commit cc4f3c18c077778da33ba3814810df712730b449 Author: RZ_MINIX\rober Date: Sun Jun 15 18:39:43 2025 -0700 Initial Windows commit with proper line endings diff --git a/.env b/.env new file mode 100644 index 0000000..33b8bea --- /dev/null +++ b/.env @@ -0,0 +1,26 @@ +DB_NAME=wellnuo +DB_USER=well_app +DB_PASSWORD=well_app_2024 +DB_HOST=192.168.68.70 +DB_PORT=5432 +MINIO_ACCESS_KEY=well_pipe +MINIO_SECRET_KEY=WellNuo_2024 +MINIO_HOST=192.168.68.70 +MINIO_PORT=9000 +DAILY_MAPS_BUCKET_NAME=daily-maps +JWT_SECRET=Well_202502110501 +OPENAI_API_KEY=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 +OPENAI_API_MODEL_ENGINE=gpt-3.5-turbo + +REDIS_PORT="6379" + +TELNYX_VOICE_URL=https://api.telnyx.com/v2/calls +#TELNYX_WEBHOOK_URL_VOICE=https://eluxnetworks.net/telnyx-webhook +TELNYX_WEBHOOK_URL_VOICE=http://eluxnetworks.net:1998/function/well-api/api +TELNYX_API_KEY=KEY0196087A75998434A30FA637CE4FDAFF_ZljGj9KBSAQL0zXx4Sb5eW +TELNYX_SENDER_ID="+16505820706" +TELNYX_SENDER_ID_ALPHA="Wellnuo" +TELNYX_CONNECTION_ID="YOUR_TELNYX_CALL_CONTROL_APP_CONNECTION_ID" # Get from Telnyx Portal +TELNYX_MESSAGING_PROFILE_ID="40019616-d6e8-4f82-bdd0-ddeb0a25d5ff" +TELNYX_CONNECTION_ID_VOICE="2671409623596009055" +TELNYX_API_BASE_URL=https://api.telnyx.com/v2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9093a84 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +* text=auto eol=lf +*.sh text eol=lf +*.py text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..6b76b4f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b223f19 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,43 @@ +FROM python:3.9-slim + +# Install system dependencies +RUN apt-get update && apt-get install -y --no-install-recommends \ + gcc \ + python3-dev \ + libgl1-mesa-glx \ + libglib2.0-0 \ + && rm -rf /var/lib/apt/lists/* + +WORKDIR /app + +# Install Python dependencies +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +# Copy and build the C extension +COPY simplified_filter_short_groups.c /app/ +COPY direct_setup.py /app/ +RUN python direct_setup.py install + +# Copy the wrapper module +COPY filter_short_groups_wrapper.py /app/ + +# Copy application code +COPY well-api.py . + +# Create directory and copy data files +RUN mkdir -p /home/app/well_web_storage +COPY well_web_files/* /home/app/well_web_storage/ +RUN mkdir -p /app/fonts +COPY fonts/* /app/fonts/ + +# Environment variables for gunicorn +ENV GUNICORN_CMD_ARGS="--log-level info --timeout 60" +ENV PYTHONUNBUFFERED=1 +ENV PYTHONDONTWRITEBYTECODE=1 + +# Expose the port for the API +EXPOSE 8080 + +# Run with gunicorn +CMD ["gunicorn", "--bind", "0.0.0.0:8080", "well-api:app"] diff --git a/__pycache__/well-api._core_filter_loop_numba-11210.py312.1.nbc b/__pycache__/well-api._core_filter_loop_numba-11210.py312.1.nbc new file mode 100644 index 0000000..d1e3adf Binary files /dev/null and b/__pycache__/well-api._core_filter_loop_numba-11210.py312.1.nbc differ diff --git a/__pycache__/well-api._core_filter_loop_numba-11210.py312.nbi b/__pycache__/well-api._core_filter_loop_numba-11210.py312.nbi new file mode 100644 index 0000000..47a053e Binary files /dev/null and b/__pycache__/well-api._core_filter_loop_numba-11210.py312.nbi differ diff --git a/build/lib.linux-x86_64-cpython-312/filter_short_groups.cpython-312-x86_64-linux-gnu.so b/build/lib.linux-x86_64-cpython-312/filter_short_groups.cpython-312-x86_64-linux-gnu.so new file mode 100644 index 0000000..687b448 Binary files /dev/null and b/build/lib.linux-x86_64-cpython-312/filter_short_groups.cpython-312-x86_64-linux-gnu.so differ diff --git a/build/temp.linux-x86_64-cpython-312/simplified_filter_short_groups.o b/build/temp.linux-x86_64-cpython-312/simplified_filter_short_groups.o new file mode 100644 index 0000000..97f1444 Binary files /dev/null and b/build/temp.linux-x86_64-cpython-312/simplified_filter_short_groups.o differ diff --git a/config-3.py b/config-3.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/config-3.py @@ -0,0 +1 @@ + diff --git a/config.py b/config.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/config.py @@ -0,0 +1 @@ + diff --git a/direct_setup.py b/direct_setup.py new file mode 100644 index 0000000..52965f8 --- /dev/null +++ b/direct_setup.py @@ -0,0 +1,15 @@ +from setuptools import setup, Extension + +# Direct extension definition with no NumPy dependencies +extension = Extension( + 'filter_short_groups', + sources=['simplified_filter_short_groups.c'], + extra_compile_args=['-O3'], # Basic optimization +) + +setup( + name='filter_short_groups', + version='1.0', + description='Optimized C implementation of filter_short_groups', + ext_modules=[extension], +) diff --git a/filter_short_groups.c b/filter_short_groups.c new file mode 100644 index 0000000..be677a2 --- /dev/null +++ b/filter_short_groups.c @@ -0,0 +1,342 @@ +#define PY_SSIZE_T_CLEAN +#include +#include +#include +#include +#include + +// We don't actually need the NumPy C API for our implementation +// since we're working directly with Python lists + +// Struct to represent a run of consecutive values +typedef struct { + int start; + int end; + double sign; + int length; +} Run; + +// Compare function for sorting runs by length, then by start index +static int compare_runs(const void *a, const void *b) { + const Run *run_a = (const Run *)a; + const Run *run_b = (const Run *)b; + + if (run_a->length != run_b->length) { + return run_a->length - run_b->length; + } + return run_a->start - run_b->start; +} + +// Function to compute the sign of a double value (-1, 0, 1) +static double sign(double x) { + if (x > 0) return 1.0; + if (x < 0) return -1.0; + return 0.0; +} + +// Core implementation of filter_short_groups +static PyObject* filter_short_groups_c(PyObject *self, PyObject *args) { + PyObject *presence_list_obj; + int filter_size; + char *device_id; + char *dates_str; + + // Parse Python arguments + if (!PyArg_ParseTuple(args, "Oiss", &presence_list_obj, &filter_size, &device_id, &dates_str)) { + return NULL; + } + + // Start timing + clock_t start_time = clock(); + + // Convert Python list to C array + Py_ssize_t n = PyObject_Length(presence_list_obj); + if (n < 0) { + PyErr_SetString(PyExc_ValueError, "Invalid input list"); + return NULL; + } + + // Early exit condition + if (n == 0 || filter_size <= 1) { + Py_INCREF(presence_list_obj); + printf("C implementation: Early exit/no processing time: %.6fs\n", + ((double)(clock() - start_time) / CLOCKS_PER_SEC)); + return presence_list_obj; + } + + // Allocate memory for our working array + double *result = (double *)malloc(n * sizeof(double)); + if (!result) { + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory"); + return NULL; + } + + // Copy data from Python list to C array + for (Py_ssize_t i = 0; i < n; i++) { + PyObject *item = PySequence_GetItem(presence_list_obj, i); + if (!item) { + free(result); + return NULL; + } + result[i] = PyFloat_AsDouble(item); + Py_DECREF(item); + if (PyErr_Occurred()) { + free(result); + return NULL; + } + } + + // Allocate memory for signs array + double *signs = (double *)malloc(n * sizeof(double)); + if (!signs) { + free(result); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for signs"); + return NULL; + } + + // Allocate memory for change indices + int *change_indices = (int *)malloc(n * sizeof(int)); + if (!change_indices) { + free(result); + free(signs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for change indices"); + return NULL; + } + + // Allocate memory for boundaries + int *boundaries = (int *)malloc((n + 1) * sizeof(int)); + if (!boundaries) { + free(result); + free(signs); + free(change_indices); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for boundaries"); + return NULL; + } + + // Allocate memory for runs + Run *runs = (Run *)malloc(n * sizeof(Run)); + if (!runs) { + free(result); + free(signs); + free(change_indices); + free(boundaries); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for runs"); + return NULL; + } + + // Simple cycle detection with hashset-like approach + // We'll use a dynamically-sized array of states for simplicity + int max_states = 100; // Initial capacity, will grow as needed + int states_count = 0; + double **previous_states = (double **)malloc(max_states * sizeof(double *)); + if (!previous_states) { + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for previous states"); + return NULL; + } + + bool cycle_detected = false; + + // Main processing loop + while (!cycle_detected) { + // Check for cycle by comparing with previous states + bool found_match = false; + for (int s = 0; s < states_count; s++) { + if (memcmp(previous_states[s], result, n * sizeof(double)) == 0) { + found_match = true; + cycle_detected = true; + break; + } + } + + if (!found_match) { + // Store current state + if (states_count >= max_states) { + // Grow the states array + max_states *= 2; + double **new_states = (double **)realloc(previous_states, max_states * sizeof(double *)); + if (!new_states) { + // Handle memory allocation failure + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to reallocate memory for previous states"); + return NULL; + } + previous_states = new_states; + } + + // Allocate memory for the new state + previous_states[states_count] = (double *)malloc(n * sizeof(double)); + if (!previous_states[states_count]) { + // Handle memory allocation failure + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for new state"); + return NULL; + } + + // Copy the current result to the new state + memcpy(previous_states[states_count], result, n * sizeof(double)); + states_count++; + + // 1. Calculate signs + for (Py_ssize_t i = 0; i < n; i++) { + signs[i] = sign(result[i]); + } + + // 2. Find indices where sign changes + int change_count = 0; + for (Py_ssize_t i = 1; i < n; i++) { + if (signs[i] != signs[i-1]) { + change_indices[change_count++] = i; + } + } + + // 3. Define boundaries of consecutive runs + boundaries[0] = 0; + for (int i = 0; i < change_count; i++) { + boundaries[i+1] = change_indices[i]; + } + boundaries[change_count+1] = n; + int boundaries_count = change_count + 2; + + // If there's only one segment, no further processing needed + if (boundaries_count <= 2) { + break; + } + + // 4. Extract run properties + int run_count = 0; + for (int i = 0; i < boundaries_count - 1; i++) { + int start = boundaries[i]; + int end = boundaries[i+1]; + int length = end - start; + double run_sign = signs[start]; + + // 5. Identify short runs + if (length > 0 && length < filter_size) { + runs[run_count].start = start; + runs[run_count].end = end; + runs[run_count].sign = run_sign; + runs[run_count].length = length; + run_count++; + } + } + + // 6. Check if any modifiable short runs were found + if (run_count == 0) { + // No short runs found, the list is stable + break; + } + + // 7. Sort the short runs: shortest first, then by start index + qsort(runs, run_count, sizeof(Run), compare_runs); + + // 8. Process the first (shortest) identified run + Run run_to_process = runs[0]; + int start = run_to_process.start; + int end = run_to_process.end; + double run_sign = run_to_process.sign; + + // Determine replacement value + double replacement_value = (run_sign == 0) ? 1.0 : 0.0; + + // 9. Apply the replacement + for (int i = start; i < end; i++) { + result[i] = replacement_value; + } + // Loop continues for the next pass + } + } + + // Create Python list for the result + PyObject *result_list = PyList_New(n); + if (!result_list) { + // Cleanup and return + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + return NULL; + } + + // Fill result list + for (Py_ssize_t i = 0; i < n; i++) { + PyObject *item = PyFloat_FromDouble(result[i]); + if (!item) { + Py_DECREF(result_list); + // Cleanup and return + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + return NULL; + } + PyList_SET_ITEM(result_list, i, item); + } + + // Print timing information + printf("filter_short_groups_c time: %.6fs\n", ((double)(clock() - start_time) / CLOCKS_PER_SEC)); + + // Cleanup + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + + return result_list; +} + +// Method definitions +static PyMethodDef FilterShortGroupsMethods[] = { + {"filter_short_groups_c", filter_short_groups_c, METH_VARARGS, + "Optimized C version to remove groups of consecutive zeros or non-zeros shorter than filter_size."}, + {NULL, NULL, 0, NULL} +}; + +// Module definition +static struct PyModuleDef filter_short_groups_module = { + PyModuleDef_HEAD_INIT, + "filter_short_groups", + "A module that provides optimized filter_short_groups function", + -1, + FilterShortGroupsMethods +}; + +// Module initialization +PyMODINIT_FUNC PyInit_filter_short_groups(void) { + return PyModule_Create(&filter_short_groups_module); +} diff --git a/filter_short_groups.cpython-312-x86_64-linux-gnu.so b/filter_short_groups.cpython-312-x86_64-linux-gnu.so new file mode 100644 index 0000000..8feb649 Binary files /dev/null and b/filter_short_groups.cpython-312-x86_64-linux-gnu.so differ diff --git a/filter_short_groups.egg-info/PKG-INFO b/filter_short_groups.egg-info/PKG-INFO new file mode 100644 index 0000000..ea0fe8b --- /dev/null +++ b/filter_short_groups.egg-info/PKG-INFO @@ -0,0 +1,5 @@ +Metadata-Version: 2.4 +Name: filter_short_groups +Version: 1.0 +Summary: Optimized C implementation of filter_short_groups +Dynamic: summary diff --git a/filter_short_groups.egg-info/SOURCES.txt b/filter_short_groups.egg-info/SOURCES.txt new file mode 100644 index 0000000..4e403ba --- /dev/null +++ b/filter_short_groups.egg-info/SOURCES.txt @@ -0,0 +1,7 @@ +direct_setup.py +setup.py +simplified_filter_short_groups.c +filter_short_groups.egg-info/PKG-INFO +filter_short_groups.egg-info/SOURCES.txt +filter_short_groups.egg-info/dependency_links.txt +filter_short_groups.egg-info/top_level.txt \ No newline at end of file diff --git a/filter_short_groups.egg-info/dependency_links.txt b/filter_short_groups.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/filter_short_groups.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/filter_short_groups.egg-info/top_level.txt b/filter_short_groups.egg-info/top_level.txt new file mode 100644 index 0000000..1159744 --- /dev/null +++ b/filter_short_groups.egg-info/top_level.txt @@ -0,0 +1 @@ +filter_short_groups diff --git a/filter_short_groups_wrapper.py b/filter_short_groups_wrapper.py new file mode 100644 index 0000000..eb6a7de --- /dev/null +++ b/filter_short_groups_wrapper.py @@ -0,0 +1,102 @@ +""" +Wrapper module for filter_short_groups implementations. +This provides a consistent interface regardless of which implementation is available. +""" +import time +import numpy as np + +# Try to import the C implementation first +try: + from filter_short_groups import filter_short_groups_c + USE_C_IMPLEMENTATION = True + print("Using optimized C implementation of filter_short_groups") +except ImportError: + USE_C_IMPLEMENTATION = False + print("C implementation not available, falling back to NumPy implementation") + +def filter_short_groups_numpy(presence_list, filter_size, device_id, dates_str): + """ + Original NumPy implementation, kept for fallback and comparison. + """ + # Start timer for benchmarking + st = time.time() + + if not presence_list or filter_size <= 1: + print(f"NumPy Optimized: Early exit/no processing time: {time.time() - st:.6f}s") + return presence_list[:] if isinstance(presence_list, list) else list(presence_list) + + result = np.array(presence_list, dtype=float) + n = len(result) + + previous_states = set() + + while True: + # Cycle detection + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + print("NumPy Optimized: Cycle detected, breaking.") + break + previous_states.add(current_state_tuple) + + # 1. Calculate the sign of each element (-1, 0, 1) + signs = np.sign(result) + + # 2. Find indices where the sign changes + change_indices = np.where(np.diff(signs) != 0)[0] + 1 + + # 3. Define the boundaries of all consecutive runs + boundaries = np.concatenate(([0], change_indices, [n])) + + # If there's only one segment, no further processing is needed. + if len(boundaries) <= 2: + break + + # 4. Vectorized extraction of run properties + run_starts = boundaries[:-1] + run_ends = boundaries[1:] + run_lengths = run_ends - run_starts + run_signs = signs[run_starts] + + # 5. Identify short runs and collect their properties + short_runs_to_process = [] + for i in range(len(run_starts)): + if run_lengths[i] > 0 and run_lengths[i] < filter_size: + short_runs_to_process.append({ + 'start': run_starts[i], + 'end': run_ends[i], + 'sign': run_signs[i], + 'length': run_lengths[i] + }) + + # 6. Check if any modifiable short runs were found + if not short_runs_to_process: + break + + # 7. Sort the short runs: shortest first, then by start index for determinism + short_runs_to_process.sort(key=lambda r: (r['length'], r['start'])) + + # 8. Process ONLY the *first* (shortest) identified run in this pass + run_to_process = short_runs_to_process[0] + start = run_to_process['start'] + end = run_to_process['end'] + run_sign = run_to_process['sign'] + + # Determine the replacement value + replacement_value = 1.0 if run_sign == 0 else 0.0 + + # 9. Apply the replacement + result[start:end] = replacement_value + + # End timer and print + print(f"filter_short_groups_numpy time: {time.time() - st:.6f}s") + + return result.tolist() + +def filter_short_groups(presence_list, filter_size, device_id, dates_str): + """ + Main entry point that automatically selects the best available implementation. + """ + if USE_C_IMPLEMENTATION: + return filter_short_groups_c(presence_list, filter_size, device_id, dates_str) + else: + return filter_short_groups_numpy(presence_list, filter_size, device_id, dates_str) diff --git a/fonts/OFL.txt b/fonts/OFL.txt new file mode 100644 index 0000000..da31af0 --- /dev/null +++ b/fonts/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/Poppins-Black.ttf b/fonts/Poppins-Black.ttf new file mode 100644 index 0000000..71c0f99 Binary files /dev/null and b/fonts/Poppins-Black.ttf differ diff --git a/fonts/Poppins-BlackItalic.ttf b/fonts/Poppins-BlackItalic.ttf new file mode 100644 index 0000000..7aeb58b Binary files /dev/null and b/fonts/Poppins-BlackItalic.ttf differ diff --git a/fonts/Poppins-Bold.ttf b/fonts/Poppins-Bold.ttf new file mode 100644 index 0000000..00559ee Binary files /dev/null and b/fonts/Poppins-Bold.ttf differ diff --git a/fonts/Poppins-BoldItalic.ttf b/fonts/Poppins-BoldItalic.ttf new file mode 100644 index 0000000..e61e8e8 Binary files /dev/null and b/fonts/Poppins-BoldItalic.ttf differ diff --git a/fonts/Poppins-ExtraBold.ttf b/fonts/Poppins-ExtraBold.ttf new file mode 100644 index 0000000..df70936 Binary files /dev/null and b/fonts/Poppins-ExtraBold.ttf differ diff --git a/fonts/Poppins-ExtraBoldItalic.ttf b/fonts/Poppins-ExtraBoldItalic.ttf new file mode 100644 index 0000000..14d2b37 Binary files /dev/null and b/fonts/Poppins-ExtraBoldItalic.ttf differ diff --git a/fonts/Poppins-ExtraLight.ttf b/fonts/Poppins-ExtraLight.ttf new file mode 100644 index 0000000..e76ec69 Binary files /dev/null and b/fonts/Poppins-ExtraLight.ttf differ diff --git a/fonts/Poppins-ExtraLightItalic.ttf b/fonts/Poppins-ExtraLightItalic.ttf new file mode 100644 index 0000000..89513d9 Binary files /dev/null and b/fonts/Poppins-ExtraLightItalic.ttf differ diff --git a/fonts/Poppins-Italic.ttf b/fonts/Poppins-Italic.ttf new file mode 100644 index 0000000..12b7b3c Binary files /dev/null and b/fonts/Poppins-Italic.ttf differ diff --git a/fonts/Poppins-Light.ttf b/fonts/Poppins-Light.ttf new file mode 100644 index 0000000..bc36bcc Binary files /dev/null and b/fonts/Poppins-Light.ttf differ diff --git a/fonts/Poppins-LightItalic.ttf b/fonts/Poppins-LightItalic.ttf new file mode 100644 index 0000000..9e70be6 Binary files /dev/null and b/fonts/Poppins-LightItalic.ttf differ diff --git a/fonts/Poppins-Medium.ttf b/fonts/Poppins-Medium.ttf new file mode 100644 index 0000000..6bcdcc2 Binary files /dev/null and b/fonts/Poppins-Medium.ttf differ diff --git a/fonts/Poppins-MediumItalic.ttf b/fonts/Poppins-MediumItalic.ttf new file mode 100644 index 0000000..be67410 Binary files /dev/null and b/fonts/Poppins-MediumItalic.ttf differ diff --git a/fonts/Poppins-Regular.ttf b/fonts/Poppins-Regular.ttf new file mode 100644 index 0000000..9f0c71b Binary files /dev/null and b/fonts/Poppins-Regular.ttf differ diff --git a/fonts/Poppins-SemiBold.ttf b/fonts/Poppins-SemiBold.ttf new file mode 100644 index 0000000..74c726e Binary files /dev/null and b/fonts/Poppins-SemiBold.ttf differ diff --git a/fonts/Poppins-SemiBoldItalic.ttf b/fonts/Poppins-SemiBoldItalic.ttf new file mode 100644 index 0000000..3e6c942 Binary files /dev/null and b/fonts/Poppins-SemiBoldItalic.ttf differ diff --git a/fonts/Poppins-Thin.ttf b/fonts/Poppins-Thin.ttf new file mode 100644 index 0000000..03e7366 Binary files /dev/null and b/fonts/Poppins-Thin.ttf differ diff --git a/fonts/Poppins-ThinItalic.ttf b/fonts/Poppins-ThinItalic.ttf new file mode 100644 index 0000000..e26db5d Binary files /dev/null and b/fonts/Poppins-ThinItalic.ttf differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..96c4b80 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +python-dotenv==1.0.0 +minio==7.1.15 +PyJWT==2.8.0 +psycopg2-binary==2.9.9 +pytz==2023.3.post1 +paho-mqtt>=1.6.1 +falcon==3.1.1 +gunicorn==21.2.0 +pillow +numpy +opencv-python +scikit-learn +openai +pandas +matplotlib +redis +requests + diff --git a/sample-alert.py b/sample-alert.py new file mode 100644 index 0000000..d9f3222 --- /dev/null +++ b/sample-alert.py @@ -0,0 +1,230 @@ +import os +import redis +import psycopg2 +from dotenv import load_dotenv +import ast +import time + +load_dotenv() + +DB_NAME = os.getenv('DB_NAME') +DB_USER = os.getenv('DB_USER') +DB_PASSWORD = os.getenv('DB_PASSWORD') +DB_HOST = os.getenv('DB_HOST') +DB_PORT = os.getenv('DB_PORT') + +# Connect to Redis (assuming it's running on localhost with default port) +r = redis.Redis(host='localhost', port=6379, db=0) + +def GetRedisString(key_name): + try: + result = r.get(key_name).decode('utf-8') + except: + result = None + return result + +def GetRedisInt(key_name): + try: + result = int(r.get(key_name).decode('utf-8')) + except: + result = None + return result + +def GetRedisFloat(key_name): + try: + result = float(r.get(key_name).decode('utf-8')) + except: + result = None + + return result + +value = GetRedisFloat('lastseen_510') +print(value) + +def get_db_connection(): + return psycopg2.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASSWORD, host=DB_HOST, port=DB_PORT) + +def GetLastPointQuery(device_id, field_name, threshold_value): + """ + Generate a SQL query to find the last point in radar_readings where the specified field + meets the threshold condition. + + Parameters: + device_id (int): The device ID to filter by + field_name (str): The field to check, e.g., "s2_max", "s28_min", etc. + threshold_value (float): The threshold value to compare against + + Returns: + str: SQL query string + """ + # Parse the field name to get base field and operation + parts = field_name.split('_') + base_field = parts[0] + operation = parts[1] if len(parts) > 1 else None + + # Define the field expression based on base_field + if base_field == 's28': + field_expr = "(s2+s3+s4+s5+s6+s7+s8)/7" + elif base_field == 'm08': + field_expr = "(m0+m1+m2+m3+m4+m5+m6+m7+m8)/9" + else: + field_expr = base_field + + # Define comparison operator based on operation + operator = ">" if operation == "max" else "<" + + # Generate the SQL query + query = f""" + SELECT "time" AS point_time, {field_expr} AS point_value FROM radar_readings WHERE device_id = {device_id} + AND {field_expr} {operator} {threshold_value} ORDER BY "time" DESC LIMIT 1; + """ + + return query + + +def GetLastDetected(device_id, field_name, threshold_value): + # Example usage: + + query = GetLastPointQuery(device_id, field_name, threshold_value) + print(query) + last_detected = None + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(query) + last_detected = cur.fetchone()[0].timestamp() + + return last_detected + +def UpdateLastSeen(new_message_dict): + print(new_message_dict) + + device_id_s = str(new_message_dict["device_id"]) + + # matches code in well-api + radar_threshold_signal = "s3_max" + radar_threshold_value = 10 + + threshold_details = GetRedisString("radar_threshold" + device_id_s) + try: + radar_threshold_list = ast.literal_eval(threshold_details) + radar_threshold_signal = radar_threshold_list[0] + radar_threshold_value = radar_threshold_list[1] + except: + # key not found so read from DB, and store to key + sql = f""" + SELECT "radar_threshold" AS threshold FROM devices WHERE device_id = {device_id_s}; + """ + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + threshold_details = cur.fetchone()[0] #cur.fetchall()# + print(threshold_details) + radar_threshold_signal = "s3_max" + radar_threshold_value = 10 + + if threshold_details != None: + + threshold_details_list = ast.literal_eval(threshold_details) + radar_threshold_signal = threshold_details_list[0] + radar_threshold_value = threshold_details_list[1] + + r.set('radar_threshold'+device_id_s, str([radar_threshold_signal, radar_threshold_value])) + + # lets determine if presence is detected + component = radar_threshold_signal.split("_")[0] + radar_val = 0 + if component == "s28": + radar_val = sum(new_message_dict['radar'][1][3:9]) / new_message_dict['radar'][1][0] + elif component[0] == "s": + component_index = ast.literal_eval(component[1]) + radar_val = new_message_dict['radar'][1][1 + component_index] / new_message_dict['radar'][1][0] + elif component[0] == "m": + component_index = ast.literal_eval(component[1]) + radar_val = new_message_dict['radar'][0][5 + component_index] / new_message_dict['radar'][0][0] + + if radar_val > radar_threshold_value: #seen now + r.set('lastseen_'+device_id_s, new_message_dict['time']) + + else: #not seen now, but lets determine when he was and add the key + last_seen = GetRedisFloat('lastseen_'+device_id_s) + if last_seen == None: + last_seen = GetLastDetected(device_id_s, radar_threshold_signal, radar_threshold_value) + r.set('lastseen_'+device_id_s, last_seen) + + +new_message_dict = {'time': 1743554317.579559, 'device_id': 499, 'radar': [[100, 100, 0, 0, 0, 2226, 2654, 425, 523, 445, 340, 436, 339, 548], [100, 0, 0, 706, 657, 547, 570, 553, 509, 499]]} + +st = time.time() +UpdateLastSeen(new_message_dict) +print(time.time()-st) + +if False: + # Simple key-value + + value = r.get('simple_key') + print(f"Simple key value: {value.decode('utf-8')}") + + # WRITING DATA TO REDIS + + # Simple key-value + r.set('simple_key', 'Hello, Redis!') + + # Setting expiration (TTL) in seconds + r.setex('expiring_key', 60, 'This will expire in 60 seconds') + + # Working with numbers + r.set('counter', 0) + r.incr('counter') # Increment by 1 + r.incrby('counter', 5) # Increment by 5 + + # Lists + r.rpush('my_list', 'item1') + r.rpush('my_list', 'item2', 'item3') # Add multiple items + + # Sets + r.sadd('my_set', 'member1', 'member2', 'member3') + + # Hashes (dictionaries) + r.hset('user:1000', mapping={ + 'username': 'john_doe', + 'email': 'john@example.com', + 'visits': 10 + }) + + # READING DATA FROM REDIS + + # Simple key-value + value = r.get("simple_key") + print(f"Simple key value: {value.decode('utf-8')}") + + # Check current counter value + counter = r.get("counter") + print(f"Counter value: {counter.decode('utf-8')}") + + # Lists + all_items = r.lrange("my_list", 0, -1) # Get all items + print("List items:", [item.decode("utf-8") for item in all_items]) + + # Sets + all_members = r.smembers("my_set") + print("Set members:", [member.decode("utf-8") for member in all_members]) + + # Check if a member exists in a set + is_member = r.sismember("my_set", "member1") + print(f"Is 'member1' in set? {is_member}") + + # Hashes + username = r.hget("user:1000", "username") + print(f"Username: {username.decode('utf-8')}") + + # Get all hash fields + user_data = r.hgetall("user:1000") + print( + "User data:", + {k.decode("utf-8"): v.decode("utf-8") for k, v in user_data.items()}, + ) + + # Check remaining TTL for expiring key (in seconds) + ttl = r.ttl("expiring_key") + print(f"Expiring key TTL: {ttl} seconds") diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..02f2cbe --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +from setuptools import setup, Extension +from setuptools.command.build_ext import build_ext +import sys + +# This class will properly handle NumPy dependencies +class BuildExt(build_ext): + def finalize_options(self): + build_ext.finalize_options(self) + # Prevent numpy from thinking it is still in its setup process + import builtins + builtins.__NUMPY_SETUP__ = False + import numpy + self.include_dirs.append(numpy.get_include()) + +setup( + name='filter_short_groups', + version='1.0', + description='Optimized C implementation of filter_short_groups', + setup_requires=['numpy'], + install_requires=['numpy'], + python_requires='>=3.6', + ext_modules=[ + Extension( + 'filter_short_groups', + sources=['filter_short_groups.c'], + extra_compile_args=['-O3', '-march=native', '-ffast-math'], # Optimization flags + ), + ], + cmdclass={'build_ext': BuildExt}, +) diff --git a/setup_well_svc_alert.sh b/setup_well_svc_alert.sh new file mode 100644 index 0000000..c461ffc --- /dev/null +++ b/setup_well_svc_alert.sh @@ -0,0 +1,154 @@ +#!/bin/bash + +# --- Configuration --- +SERVICE_NAME="well-svc-alert" +SERVICE_USER="wellsvc" # Recommended: Dedicated user +SERVICE_GROUP="wellsvc" # Recommended: Dedicated group +APP_DIR="/opt/well_service/alert" # Directory for this specific service +ENV_FILE_PATH="/etc/default/${SERVICE_NAME}" # Path for credentials file +SCRIPT_SOURCE="./well-svc-alert.py" # Source script +SERVICE_FILE_SOURCE="./well-svc-alert.service" # Source systemd unit file + +# --- Safety Check --- +if [[ $EUID -ne 0 ]]; then + echo "This script must be run as root (sudo)" + exit 1 +fi + +echo "Starting Well Service Alert Setup..." + +# --- Dependency Installation --- +echo "Updating package list..." +apt-get update + +echo "Installing Python3, Pip, PostgreSQL client dev headers, Redis server & Python clients..." +# Install system packages where possible +# build-essential & python3-dev often needed for pip installs compiling C extensions +apt-get install -y python3 python3-pip python3-dev libpq-dev \ + redis-server python3-redis python3-psycopg2 \ + build-essential + +# Verify Redis Python client install method if system package isn't preferred +# apt-get install -y python3 python3-pip python3-dev libpq-dev redis-server build-essential +# pip3 install redis psycopg2-binary + +# Ensure Redis is enabled and started (optional, Systemd `Requires` handles it for the service) +# systemctl enable redis-server.service +# systemctl start redis-server.service + +# --- Create Service User --- +echo "Checking/Creating service user '$SERVICE_USER' and group '$SERVICE_GROUP'..." +if ! getent group "$SERVICE_GROUP" > /dev/null; then + groupadd --system "$SERVICE_GROUP" + echo "Group '$SERVICE_GROUP' created." +fi +if ! id "$SERVICE_USER" > /dev/null; then + useradd --system --gid "$SERVICE_GROUP" --home "$(dirname $APP_DIR)" --no-create-home --shell /bin/false "$SERVICE_USER" + echo "System user '$SERVICE_USER' created and added to group '$SERVICE_GROUP'." +else + echo "User '$SERVICE_USER' already exists." + # Optionally add existing user to group if not already member + # usermod -a -G "$SERVICE_GROUP" "$SERVICE_USER" +fi + +# --- Create Application Directory --- +echo "Creating application directory '$APP_DIR'..." +mkdir -p "$APP_DIR" +if [ ! -d "$APP_DIR" ]; then + echo "ERROR: Failed to create directory $APP_DIR" + exit 1 +fi + +# --- Copy Application Files --- +echo "Copying service script..." +cp "$SCRIPT_SOURCE" "$APP_DIR/well-svc-alert.py" +if [ $? -ne 0 ]; then echo "ERROR: Failed to copy script."; exit 1; fi + +# --- Set Permissions --- +echo "Setting permissions for '$APP_DIR'..." +chown -R "$SERVICE_USER":"$SERVICE_GROUP" "$APP_DIR" +# Owner: rwx, Group: rx, Other: --- +chmod -R 750 "$APP_DIR" +chmod +x "$APP_DIR/well-svc-alert.py" + +# --- Create Environment File --- +echo "Creating environment file at '$ENV_FILE_PATH'..." +if [ -f "$ENV_FILE_PATH" ]; then + echo "WARN: Environment file '$ENV_FILE_PATH' already exists. Backing up to ${ENV_FILE_PATH}.bak" + cp "$ENV_FILE_PATH" "${ENV_FILE_PATH}.bak" +fi +cat > "$ENV_FILE_PATH" << EOF +# Environment variables for the ${SERVICE_NAME} service +# --- PLEASE FILL IN YOUR ACTUAL DATABASE CREDENTIALS --- +DB_NAME=your_database_name +DB_USER=your_database_user +DB_PASSWORD=your_secret_password +DB_HOST=localhost +DB_PORT=5432 + +# --- Optional Redis Configuration (Defaults are usually fine) --- +# REDIS_HOST=localhost +# REDIS_PORT=6379 +# REDIS_DB=0 +# REDIS_PASSWORD=your_redis_password_if_any +EOF +if [ $? -ne 0 ]; then echo "ERROR: Failed to create environment file."; exit 1; fi + +# --- Set Environment File Permissions --- +echo "Setting permissions for '$ENV_FILE_PATH' (readable by root and $SERVICE_GROUP only)" +chown root:"$SERVICE_GROUP" "$ENV_FILE_PATH" +chmod 640 "$ENV_FILE_PATH" # Owner(root): rw, Group(wellsvc): r, Other: --- + +# --- Install Systemd Service --- +echo "Copying Systemd service file..." +cp "$SERVICE_FILE_SOURCE" "/etc/systemd/system/${SERVICE_NAME}.service" +if [ $? -ne 0 ]; then echo "ERROR: Failed to copy systemd file."; exit 1; fi + +# --- Update Paths/User in Systemd File --- +echo "Updating configuration in /etc/systemd/system/${SERVICE_NAME}.service ..." +ESCAPED_APP_DIR=$(printf '%s\n' "$APP_DIR" | sed 's:/:\\/:g') +# Use placeholders like {{USER}}, {{GROUP}}, {{WORKDIR}}, {{EXECSTART}}, {{ENVFILE}} in the source .service file +# Or use the sed commands carefully like below: +sed -i "s/^User=.*/User=$SERVICE_USER/" "/etc/systemd/system/${SERVICE_NAME}.service" +sed -i "s/^Group=.*/Group=$SERVICE_GROUP/" "/etc/systemd/system/${SERVICE_NAME}.service" +sed -i "s:^WorkingDirectory=.*:WorkingDirectory=$ESCAPED_APP_DIR:" "/etc/systemd/system/${SERVICE_NAME}.service" +sed -i "s:^ExecStart=.*:ExecStart=/usr/bin/python3 $ESCAPED_APP_DIR/well-svc-alert.py:" "/etc/systemd/system/${SERVICE_NAME}.service" +sed -i "s:^EnvironmentFile=.*:EnvironmentFile=$ENV_FILE_PATH:" "/etc/systemd/system/${SERVICE_NAME}.service" + + +# --- Configure Systemd --- +echo "Reloading Systemd daemon..." +systemctl daemon-reload + +echo "Enabling service '$SERVICE_NAME' to start on boot..." +systemctl enable "${SERVICE_NAME}.service" + +# Don't start immediately - user needs to edit the ENV_FILE_PATH first! +# systemctl start "${SERVICE_NAME}.service" + +# --- Final Instructions --- +echo "Setup presque terminé!" +echo "" +echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" +echo "!! ACTION REQUISE : Modifiez le fichier d'environnement !!" +echo "!! avec vos informations d'identification de base de données:" +echo "!! sudo nano ${ENV_FILE_PATH}" +echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" +echo "" +echo "Après avoir modifié le fichier, démarrez le service avec :" +echo "sudo systemctl start ${SERVICE_NAME}.service" +echo "" +echo "Pour vérifier l'état du service:" +echo "sudo systemctl status ${SERVICE_NAME}.service --no-pager" +echo "" +echo "Pour consulter les journaux:" +echo "sudo journalctl -u ${SERVICE_NAME}.service -f" +echo "" +echo "Pour arrêter le service:" +echo "sudo systemctl stop ${SERVICE_NAME}.service" +echo "" +echo "Pour désactiver le démarrage automatique:" +echo "sudo systemctl disable ${SERVICE_NAME}.service" +echo "---" + +exit 0 \ No newline at end of file diff --git a/simple_setup.py b/simple_setup.py new file mode 100644 index 0000000..7d22670 --- /dev/null +++ b/simple_setup.py @@ -0,0 +1,16 @@ +from setuptools import setup, Extension + +# Simple extension definition without NumPy dependencies for C compilation +extension = Extension( + 'filter_short_groups', + sources=['filter_short_groups.c'], + extra_compile_args=['-O3'], # Just use basic optimization +) + +setup( + name='filter_short_groups', + version='1.0', + description='Optimized C implementation of filter_short_groups', + ext_modules=[extension], + install_requires=['numpy'], # Still require numpy for runtime +) diff --git a/simplified_filter_short_groups.c b/simplified_filter_short_groups.c new file mode 100644 index 0000000..be677a2 --- /dev/null +++ b/simplified_filter_short_groups.c @@ -0,0 +1,342 @@ +#define PY_SSIZE_T_CLEAN +#include +#include +#include +#include +#include + +// We don't actually need the NumPy C API for our implementation +// since we're working directly with Python lists + +// Struct to represent a run of consecutive values +typedef struct { + int start; + int end; + double sign; + int length; +} Run; + +// Compare function for sorting runs by length, then by start index +static int compare_runs(const void *a, const void *b) { + const Run *run_a = (const Run *)a; + const Run *run_b = (const Run *)b; + + if (run_a->length != run_b->length) { + return run_a->length - run_b->length; + } + return run_a->start - run_b->start; +} + +// Function to compute the sign of a double value (-1, 0, 1) +static double sign(double x) { + if (x > 0) return 1.0; + if (x < 0) return -1.0; + return 0.0; +} + +// Core implementation of filter_short_groups +static PyObject* filter_short_groups_c(PyObject *self, PyObject *args) { + PyObject *presence_list_obj; + int filter_size; + char *device_id; + char *dates_str; + + // Parse Python arguments + if (!PyArg_ParseTuple(args, "Oiss", &presence_list_obj, &filter_size, &device_id, &dates_str)) { + return NULL; + } + + // Start timing + clock_t start_time = clock(); + + // Convert Python list to C array + Py_ssize_t n = PyObject_Length(presence_list_obj); + if (n < 0) { + PyErr_SetString(PyExc_ValueError, "Invalid input list"); + return NULL; + } + + // Early exit condition + if (n == 0 || filter_size <= 1) { + Py_INCREF(presence_list_obj); + printf("C implementation: Early exit/no processing time: %.6fs\n", + ((double)(clock() - start_time) / CLOCKS_PER_SEC)); + return presence_list_obj; + } + + // Allocate memory for our working array + double *result = (double *)malloc(n * sizeof(double)); + if (!result) { + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory"); + return NULL; + } + + // Copy data from Python list to C array + for (Py_ssize_t i = 0; i < n; i++) { + PyObject *item = PySequence_GetItem(presence_list_obj, i); + if (!item) { + free(result); + return NULL; + } + result[i] = PyFloat_AsDouble(item); + Py_DECREF(item); + if (PyErr_Occurred()) { + free(result); + return NULL; + } + } + + // Allocate memory for signs array + double *signs = (double *)malloc(n * sizeof(double)); + if (!signs) { + free(result); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for signs"); + return NULL; + } + + // Allocate memory for change indices + int *change_indices = (int *)malloc(n * sizeof(int)); + if (!change_indices) { + free(result); + free(signs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for change indices"); + return NULL; + } + + // Allocate memory for boundaries + int *boundaries = (int *)malloc((n + 1) * sizeof(int)); + if (!boundaries) { + free(result); + free(signs); + free(change_indices); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for boundaries"); + return NULL; + } + + // Allocate memory for runs + Run *runs = (Run *)malloc(n * sizeof(Run)); + if (!runs) { + free(result); + free(signs); + free(change_indices); + free(boundaries); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for runs"); + return NULL; + } + + // Simple cycle detection with hashset-like approach + // We'll use a dynamically-sized array of states for simplicity + int max_states = 100; // Initial capacity, will grow as needed + int states_count = 0; + double **previous_states = (double **)malloc(max_states * sizeof(double *)); + if (!previous_states) { + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for previous states"); + return NULL; + } + + bool cycle_detected = false; + + // Main processing loop + while (!cycle_detected) { + // Check for cycle by comparing with previous states + bool found_match = false; + for (int s = 0; s < states_count; s++) { + if (memcmp(previous_states[s], result, n * sizeof(double)) == 0) { + found_match = true; + cycle_detected = true; + break; + } + } + + if (!found_match) { + // Store current state + if (states_count >= max_states) { + // Grow the states array + max_states *= 2; + double **new_states = (double **)realloc(previous_states, max_states * sizeof(double *)); + if (!new_states) { + // Handle memory allocation failure + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to reallocate memory for previous states"); + return NULL; + } + previous_states = new_states; + } + + // Allocate memory for the new state + previous_states[states_count] = (double *)malloc(n * sizeof(double)); + if (!previous_states[states_count]) { + // Handle memory allocation failure + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + PyErr_SetString(PyExc_MemoryError, "Failed to allocate memory for new state"); + return NULL; + } + + // Copy the current result to the new state + memcpy(previous_states[states_count], result, n * sizeof(double)); + states_count++; + + // 1. Calculate signs + for (Py_ssize_t i = 0; i < n; i++) { + signs[i] = sign(result[i]); + } + + // 2. Find indices where sign changes + int change_count = 0; + for (Py_ssize_t i = 1; i < n; i++) { + if (signs[i] != signs[i-1]) { + change_indices[change_count++] = i; + } + } + + // 3. Define boundaries of consecutive runs + boundaries[0] = 0; + for (int i = 0; i < change_count; i++) { + boundaries[i+1] = change_indices[i]; + } + boundaries[change_count+1] = n; + int boundaries_count = change_count + 2; + + // If there's only one segment, no further processing needed + if (boundaries_count <= 2) { + break; + } + + // 4. Extract run properties + int run_count = 0; + for (int i = 0; i < boundaries_count - 1; i++) { + int start = boundaries[i]; + int end = boundaries[i+1]; + int length = end - start; + double run_sign = signs[start]; + + // 5. Identify short runs + if (length > 0 && length < filter_size) { + runs[run_count].start = start; + runs[run_count].end = end; + runs[run_count].sign = run_sign; + runs[run_count].length = length; + run_count++; + } + } + + // 6. Check if any modifiable short runs were found + if (run_count == 0) { + // No short runs found, the list is stable + break; + } + + // 7. Sort the short runs: shortest first, then by start index + qsort(runs, run_count, sizeof(Run), compare_runs); + + // 8. Process the first (shortest) identified run + Run run_to_process = runs[0]; + int start = run_to_process.start; + int end = run_to_process.end; + double run_sign = run_to_process.sign; + + // Determine replacement value + double replacement_value = (run_sign == 0) ? 1.0 : 0.0; + + // 9. Apply the replacement + for (int i = start; i < end; i++) { + result[i] = replacement_value; + } + // Loop continues for the next pass + } + } + + // Create Python list for the result + PyObject *result_list = PyList_New(n); + if (!result_list) { + // Cleanup and return + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + return NULL; + } + + // Fill result list + for (Py_ssize_t i = 0; i < n; i++) { + PyObject *item = PyFloat_FromDouble(result[i]); + if (!item) { + Py_DECREF(result_list); + // Cleanup and return + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + return NULL; + } + PyList_SET_ITEM(result_list, i, item); + } + + // Print timing information + printf("filter_short_groups_c time: %.6fs\n", ((double)(clock() - start_time) / CLOCKS_PER_SEC)); + + // Cleanup + for (int i = 0; i < states_count; i++) { + free(previous_states[i]); + } + free(previous_states); + free(result); + free(signs); + free(change_indices); + free(boundaries); + free(runs); + + return result_list; +} + +// Method definitions +static PyMethodDef FilterShortGroupsMethods[] = { + {"filter_short_groups_c", filter_short_groups_c, METH_VARARGS, + "Optimized C version to remove groups of consecutive zeros or non-zeros shorter than filter_size."}, + {NULL, NULL, 0, NULL} +}; + +// Module definition +static struct PyModuleDef filter_short_groups_module = { + PyModuleDef_HEAD_INIT, + "filter_short_groups", + "A module that provides optimized filter_short_groups function", + -1, + FilterShortGroupsMethods +}; + +// Module initialization +PyMODINIT_FUNC PyInit_filter_short_groups(void) { + return PyModule_Create(&filter_short_groups_module); +} diff --git a/stack.yml b/stack.yml new file mode 100644 index 0000000..0cd71ac --- /dev/null +++ b/stack.yml @@ -0,0 +1,69 @@ +version: 1.0 +provider: + name: openfaas + gateway: http://192.168.68.70:8082 +functions: + well-api: + image: repo.eluxnetworks.net/well-api:latest + annotations: + com.openfaas.timeouts.read: "60s" + com.openfaas.timeouts.write: "60s" + com.openfaas.timeouts.exec: "60s" + volumes: + - /home/app/well_web_storage:/home/app/well_web_storage + labels: + com.openfaas.scale.min: 1 + com.openfaas.scale.max: 10 + com.openfaas.scale.factor: 20% + com.openfaas.scale.zero: false + # Traefik routing configuration + traefik.enable: true + traefik.docker.network: traefik-public + traefik.http.routers.well-api.rule: Host(`eluxnetworks.net`) && PathPrefix(`/function/well-api`) + traefik.http.routers.well-api.entrypoints: websecure + traefik.http.routers.well-api.tls.certresolver: letsencrypt + traefik.http.services.well-api.loadbalancer.server.port: 8080 + # Set a higher priority to ensure this rule takes precedence + traefik.http.routers.well-api.priority: 100 + environment: + read_timeout: "60s" + write_timeout: "60s" + exec_timeout: "60s" + combine_output: true + # Gunicorn-specific settings + GUNICORN_WORKERS: "2" + GUNICORN_THREADS: "4" + + DB_NAME: "wellnuo" + DB_USER: "well_app" + DB_PASSWORD: "well_app_2024" + DB_HOST: "192.168.68.70" + DB_PORT: "5432" + MINIO_ACCESS_KEY: "well_pipe" + MINIO_SECRET_KEY: "WellNuo_2024" + MINIO_HOST: "192.168.68.70" + MINIO_PORT: "9000" + DAILY_MAPS_BUCKET_NAME: "daily-maps" + JWT_SECRET: "Well_202502110501" + MASTER_ADMIN: "robster" + MASTER_PS: "rob2" + OPENAI_API_KEY: "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" + OPENAI_API_MODEL_ENGINE: "gpt-3.5-turbo" + REDIS_PORT: "6379" + TELNYX_API_KEY: "KEY0196087A75998434A30FA637CE4FDAFF_ZljGj9KBSAQL0zXx4Sb5eW" + TELNYX_API_BASE_URL: "https://api.telnyx.com/v2" + + deploy: + resources: + limits: + memory: 256Mi + requests: + memory: 128Mi + networks: + - func_functions + - traefik-public +networks: + func_functions: + external: true + traefik-public: + external: true diff --git a/test_list b/test_list new file mode 100644 index 0000000..309ca1d --- /dev/null +++ b/test_list @@ -0,0 +1,17282 @@ +[ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 15.81, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 69.43, + 100.0, + 99.38, + 17.96, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 71.14, + 99.99, + 100.0, + 94.18, + 72.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.88, + 100.0, + 100.0, + 100.0, + 98.85, + 100.0, + 100.0, + 100.0, + 100.0, + 93.29, + 19.79, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17.21, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 33.07, + 22.22, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 16.07, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 23.83, + 98.54, + 22.37, + 50.19, + 75.73, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 25.92, + 100.0, + 100.0, + 100.0, + 100.0, + 94.69, + 89.85, + 98.39, + 97.55, + 99.93, + 100.0, + 100.0, + 95.34, + 100.0, + 35.36, + 0, + 0, + 0, + 0, + 100.0, + 78.21, + 83.54, + 84.9, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 95.63, + 93.41, + 100.0, + 100.0, + 98.02, + 97.58, + 94.94, + 100.0, + 100.0, + 100.0, + 100.0, + 96.24, + 87.74, + 100.0, + 100.0, + 23.31, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 83.88, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 96.13, + 0, + 0, + 0, + 0, + 0, + 30.89, + 75.99, + 70.52, + 100.0, + 100.0, + 100.0, + 93.29, + 78.78, + 100.0, + 98.12, + 15.4, + 0, + 0, + 24.67, + 100.0, + 100.0, + 100.0, + 97.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 42.8, + 0, + 0, + 0, + 62.85, + 75.96, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 96.06, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 94.87, + 100.0, + 100.0, + 100.0, + 100.0, + 92.23, + 81.26, + 99.99, + 99.65, + 17.32, + 0, + 0, + 0, + 99.21, + 100.0, + 98.93, + 87.82, + 0, + 0, + 0, + 0, + 0, + 63.8, + 97.7, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 16.73, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 94.09, + 71.72, + 53.17, + 100.0, + 30.27, + 96.01, + 81.29, + 100.0, + 27.3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 67.25, + 65.99, + 49.95, + 46.33, + 46.15, + 75.41, + 34.12, + 82.5, + 69.84, + 72.81, + 66.83, + 48.74, + 49.68, + 63.69, + 90.44, + 67.67, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 52.41, + 92.99, + 93.66, + 44.28, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 28.94, + 100.0, + 100.0, + 100.0, + 99.3, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.96, + 100.0, + 99.77, + 19.2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100.0, + 100.0, + 65.87, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 15.56, + 0, + 16.22, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 21.62, + 26.86, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 92.65, + 100.0, + 83.51, + 71.47, + 69.83, + 47.7, + 96.42, + 52.97, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 86.63, + 0, + 0, + 0, + 65.84, + 45.19, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 25.6, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 44.15, + 100.0, + 100.0, + 63.7, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 54.8, + 59.21, + 41.14, + 100.0, + 83.76, + 20.28, + 0, + 0, + 0, + 0, + 0, + 0, + 89.25, + 35.62, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 94.25, + 29.9, + 0, + 0, + 0, + 0, + 0, + 78.65, + 82.87, + 87.73, + 73.94, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 23.81, + 97.57, + 15.59, + 0, + 0, + 93.68, + 15.96, + 0, + 0, + 0, + 0, + 0, + 0, + 23.42, + 99.57, + 18.27, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 72.95, + 100.0, + 55.51, + 64.14, + 52.23, + 0, + 16.2, + 0, + 0, + 0, + 0, + 0, + 0, + 17.84, + 99.98, + 21.47, + 0, + 0, + 0, + 0, + 15.73, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17.49, + 0, + 19.7, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17.18, + 0, + 0, + 0, + 0, + 0, + 17.24, + 15.6, + 0, + 0, + 0, + 0, + 0, + 0, + 26.73, + 93.89, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 16.01, + 19.97, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 15.63, + 29.46, + 0, + 0, + 0, + 15.08, + 23.64, + 16.79, + 16.05, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 58.81, + 56.75, + 0, + 0, + 0, + 0, + 54.89, + 59.75, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 23.29, + 98.06, + 0, + 83.29, + 33.22, + 0, + 0, + 0, + 63.23, + 50.6, + 45.47, + 39.58, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 99.94, + 19.19, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17.91, + 100.0, + 68.33, + 90.21, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 95.33, + 51.46, + 0, + 0, + 0, + 0, + 0, + 51.06, + 94.95, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 58.76, + 30.09, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 16.87, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 80.75, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100.0, + 100.0, + 70.03, + 46.27, + 80.53, + 0, + 98.98, + 17.03, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 27.07, + 100.0, + 100.0, + 98.06, + 100.0, + 47.08, + 88.85, + 100.0, + 100.0, + 47.81, + 95.62, + 0, + 90.87, + 100.0, + 100.0, + 52.29, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 38.88, + 99.7, + 18.33, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17.82, + 0, + 21.66, + 75.24, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 100.0, + 99.58, + 100.0, + 30.89, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 +] \ No newline at end of file diff --git a/test_list.json b/test_list.json new file mode 100644 index 0000000..29af653 --- /dev/null +++ b/test_list.json @@ -0,0 +1,17282 @@ +[ + 70.85, + 77.03, + 71.44, + 69.01, + 78.04, + 73.08, + 62.85, + 64.4, + 62.22, + 51.78, + 56.97, + 61.92, + 60.07, + 80.41, + 83.67, + 61.87, + 58.26, + 78.18, + 82.2, + 92.72, + 92.26, + 71.82, + 35.59, + 39.45, + 87.09, + 56.09, + 98.71, + 81.76, + 76.77, + 81.28, + 89.75, + 86.73, + 69.3, + 98.19, + 100.0, + 94.83, + 91.26, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 78.46, + 15.28, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41.41, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 90.22, + 85.87, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 62.4, + 32.2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 72.55, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.17, + 100.0, + 100.0, + 98.39, + 99.37, + 44.42, + 64.47, + 100.0, + 100.0, + 85.23, + 100.0, + 92.39, + 91.47, + 51.34, + 67.8, + 88.49, + 75.05, + 35.49, + 67.04, + 100.0, + 65.21, + 100.0, + 69.7, + 50.73, + 75.12, + 40.93, + 96.97, + 58.91, + 63.99, + 77.29, + 39.09, + 28.27, + 100.0, + 57.51, + 48.53, + 73.55, + 57.42, + 21.72, + 15.51, + 30.49, + 46.7, + 70.96, + 49.23, + 26.43, + 22.94, + 94.53, + 88.57, + 75.89, + 33.94, + 48.83, + 63.88, + 32.27, + 43.74, + 57.19, + 100.0, + 69.51, + 49.24, + 45.25, + 19.77, + 14.81, + 17.19, + 26.82, + 38.52, + 77.09, + 72.08, + 22.67, + 23.95, + 26.41, + 41.27, + 87.5, + 98.07, + 41.95, + 19.9, + 22.39, + 19.23, + 73.88, + 86.22, + 77.73, + 55.3, + 76.6, + 99.2, + 29.4, + 60.51, + 79.35, + 40.2, + 67.53, + 33.15, + 27.81, + 47.08, + 63.44, + 17.58, + 23.27, + 28.04, + 46.79, + 30.14, + 67.92, + 90.67, + 18.94, + 28.76, + 83.91, + 88.6, + 51.97, + 71.28, + 56.25, + 55.9, + 96.31, + 47.31, + 64.62, + 81.27, + 21.61, + 44.18, + 87.79, + 36.78, + 78.61, + 57.63, + 70.1, + 86.27, + 63.34, + 52.08, + 28.62, + 69.54, + 98.76, + 72.98, + 54.6, + 27.18, + 90.55, + 93.15, + 96.28, + 99.79, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.87, + 100.0, + 100.0, + 100.0, + 99.98, + 91.12, + 30.88, + 22.13, + 16.35, + 37.54, + 93.5, + 42.37, + 55.72, + 49.29, + 25.08, + 21.83, + 24.5, + 18.96, + 17.09, + 66.84, + 45.88, + 40.0, + 36.24, + 27.26, + 37.51, + 65.23, + 98.36, + 67.4, + 62.63, + 100.0, + 49.5, + 37.24, + 54.36, + 65.36, + 33.0, + 27.42, + 38.66, + 59.28, + 20.57, + 30.03, + 81.16, + 100.0, + 99.29, + 82.7, + 100.0, + 100.0, + 76.39, + 52.28, + 72.25, + 95.07, + 100.0, + 77.52, + 32.32, + 24.75, + 65.33, + 86.56, + 38.6, + 30.7, + 21.87, + 78.38, + 31.96, + 30.29, + 30.13, + 50.64, + 51.04, + 61.04, + 22.65, + 30.56, + 27.96, + 34.6, + 43.42, + 51.57, + 61.92, + 94.34, + 82.02, + 100.0, + 54.73, + 78.61, + 86.91, + 89.54, + 100.0, + 100.0, + 98.88, + 97.8, + 28.82, + 18.54, + 21.31, + 29.71, + 25.9, + 25.81, + 26.78, + 18.86, + 16.34, + 24.16, + 57.31, + 19.34, + 14.29, + 15.97, + 20.47, + 50.96, + 97.88, + 44.08, + 33.67, + 26.83, + 24.75, + 98.77, + 99.14, + 78.11, + 91.45, + 94.65, + 98.48, + 99.4, + 90.35, + 100.0, + 100.0, + 81.21, + 88.08, + 99.31, + 80.17, + 59.58, + 88.82, + 93.97, + 100.0, + 100.0, + 100.0, + 71.89, + 59.85, + 93.92, + 69.77, + 46.59, + 49.41, + 23.98, + 32.87, + 69.96, + 46.56, + 65.14, + 57.53, + 86.53, + 100.0, + 66.67, + 69.8, + 69.35, + 99.55, + 100.0, + 100.0, + 100.0, + 90.21, + 97.15, + 100.0, + 93.98, + 100.0, + 97.45, + 46.89, + 29.56, + 18.52, + 33.57, + 0, + 15.15, + 50.55, + 41.84, + 20.58, + 17.04, + 16.13, + 58.16, + 100.0, + 69.04, + 63.58, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 96.3, + 97.51, + 63.8, + 34.1, + 54.45, + 91.82, + 100.0, + 100.0, + 100.0, + 100.0, + 65.71, + 49.56, + 50.53, + 43.33, + 34.34, + 38.26, + 34.92, + 31.02, + 49.3, + 61.54, + 39.49, + 69.96, + 91.67, + 89.44, + 100.0, + 82.3, + 32.49, + 89.73, + 37.4, + 53.38, + 100.0, + 61.12, + 28.41, + 87.36, + 46.04, + 100.0, + 48.62, + 36.21, + 40.57, + 71.94, + 100.0, + 100.0, + 100.0, + 100.0, + 93.97, + 84.61, + 99.33, + 92.23, + 96.9, + 100.0, + 99.83, + 92.63, + 38.49, + 42.32, + 44.19, + 35.8, + 82.47, + 88.19, + 93.59, + 90.57, + 98.59, + 79.31, + 100.0, + 94.18, + 91.57, + 100.0, + 100.0, + 100.0, + 58.49, + 57.69, + 81.17, + 35.5, + 83.62, + 73.49, + 38.63, + 87.45, + 100.0, + 92.88, + 100.0, + 98.94, + 88.53, + 87.86, + 64.26, + 28.23, + 40.45, + 29.97, + 100.0, + 100.0, + 100.0, + 57.93, + 32.4, + 36.41, + 34.19, + 40.57, + 37.87, + 62.61, + 35.83, + 70.81, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 81.33, + 60.65, + 67.87, + 100.0, + 100.0, + 100.0, + 78.29, + 29.94, + 49.4, + 76.29, + 85.43, + 84.96, + 27.72, + 54.54, + 59.05, + 76.02, + 84.31, + 57.02, + 70.9, + 100.0, + 99.45, + 97.3, + 100.0, + 100.0, + 100.0, + 87.58, + 52.49, + 90.41, + 68.75, + 46.45, + 100.0, + 99.64, + 81.7, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.41, + 98.51, + 96.12, + 53.48, + 74.22, + 84.45, + 92.95, + 64.61, + 74.07, + 58.52, + 86.89, + 80.69, + 88.16, + 98.03, + 83.05, + 47.67, + 53.65, + 94.87, + 82.29, + 96.89, + 100.0, + 95.7, + 100.0, + 79.62, + 67.56, + 93.01, + 95.65, + 100.0, + 100.0, + 95.25, + 100.0, + 100.0, + 93.3, + 100.0, + 88.79, + 86.44, + 100.0, + 83.47, + 98.7, + 76.44, + 79.69, + 100.0, + 100.0, + 100.0, + 98.28, + 99.77, + 100.0, + 90.83, + 50.21, + 50.22, + 48.83, + 34.63, + 71.29, + 35.52, + 26.39, + 23.13, + 39.54, + 37.78, + 70.83, + 47.1, + 44.3, + 39.35, + 36.69, + 100.0, + 62.5, + 37.21, + 48.4, + 60.58, + 21.0, + 72.93, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 90.68, + 64.39, + 36.05, + 54.55, + 82.61, + 100.0, + 69.52, + 43.35, + 52.75, + 49.67, + 68.14, + 75.74, + 43.34, + 83.99, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.51, + 83.41, + 79.44, + 54.64, + 50.0, + 80.62, + 56.6, + 100.0, + 100.0, + 100.0, + 62.31, + 91.09, + 38.26, + 21.34, + 24.35, + 49.92, + 73.42, + 62.97, + 42.82, + 41.01, + 54.85, + 68.64, + 86.54, + 57.66, + 44.95, + 36.19, + 90.07, + 44.97, + 42.98, + 72.9, + 86.7, + 89.66, + 100.0, + 100.0, + 63.25, + 99.82, + 45.21, + 37.54, + 61.77, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 80.93, + 50.39, + 50.77, + 77.85, + 63.05, + 27.92, + 74.42, + 73.85, + 31.91, + 39.21, + 36.63, + 58.76, + 60.5, + 36.64, + 36.99, + 37.47, + 23.69, + 34.35, + 29.13, + 23.74, + 33.76, + 31.4, + 31.18, + 25.98, + 53.07, + 99.56, + 43.42, + 48.06, + 67.72, + 74.13, + 79.6, + 90.86, + 54.88, + 62.65, + 45.17, + 100.0, + 100.0, + 94.96, + 37.88, + 25.91, + 39.3, + 42.76, + 46.71, + 45.41, + 32.81, + 35.61, + 42.81, + 37.67, + 40.8, + 41.58, + 90.86, + 48.34, + 49.14, + 24.8, + 20.43, + 22.32, + 53.08, + 63.18, + 32.41, + 40.91, + 28.63, + 87.55, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 65.41, + 96.8, + 100.0, + 100.0, + 78.71, + 100.0, + 100.0, + 100.0, + 99.67, + 45.47, + 76.96, + 69.34, + 83.92, + 99.77, + 53.45, + 34.58, + 28.46, + 38.29, + 47.81, + 34.56, + 38.27, + 40.96, + 29.21, + 53.31, + 58.5, + 37.74, + 67.27, + 63.5, + 75.84, + 66.74, + 48.31, + 69.98, + 88.95, + 42.11, + 76.34, + 72.57, + 29.52, + 39.15, + 36.65, + 38.68, + 65.5, + 98.89, + 100.0, + 85.9, + 42.41, + 81.6, + 78.55, + 90.87, + 100.0, + 100.0, + 100.0, + 100.0, + 99.98, + 77.73, + 36.4, + 85.68, + 40.43, + 32.05, + 36.1, + 22.26, + 81.83, + 92.96, + 72.25, + 69.51, + 99.75, + 99.24, + 46.13, + 47.69, + 44.29, + 60.56, + 100.0, + 88.34, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 49.87, + 44.46, + 61.94, + 46.79, + 38.75, + 86.2, + 30.18, + 40.08, + 56.23, + 33.55, + 41.38, + 50.28, + 33.08, + 38.69, + 19.89, + 29.72, + 37.3, + 38.14, + 73.43, + 40.63, + 50.54, + 46.58, + 43.51, + 40.48, + 43.82, + 39.18, + 48.82, + 56.86, + 42.23, + 40.23, + 69.08, + 43.52, + 55.74, + 63.82, + 37.07, + 98.85, + 100.0, + 100.0, + 100.0, + 90.78, + 45.67, + 35.78, + 31.37, + 22.11, + 26.09, + 72.36, + 84.03, + 24.59, + 44.81, + 22.52, + 43.0, + 49.0, + 78.98, + 53.22, + 32.86, + 53.27, + 38.89, + 30.86, + 29.03, + 33.63, + 42.86, + 92.55, + 48.7, + 54.43, + 51.54, + 23.32, + 35.03, + 38.95, + 97.85, + 83.55, + 45.87, + 51.96, + 55.04, + 68.33, + 93.63, + 100.0, + 100.0, + 53.07, + 70.09, + 48.15, + 28.93, + 82.62, + 61.54, + 46.86, + 63.21, + 60.56, + 46.04, + 41.79, + 30.99, + 37.58, + 34.59, + 34.5, + 56.09, + 87.47, + 60.24, + 62.18, + 42.51, + 40.76, + 46.34, + 37.84, + 42.54, + 43.93, + 35.53, + 70.4, + 48.65, + 67.34, + 63.34, + 65.26, + 100.0, + 100.0, + 100.0, + 53.28, + 67.24, + 57.76, + 68.19, + 55.95, + 69.43, + 50.5, + 51.81, + 80.5, + 92.75, + 100.0, + 66.5, + 40.32, + 74.88, + 56.58, + 48.34, + 55.67, + 44.99, + 39.65, + 76.79, + 60.48, + 92.93, + 62.47, + 51.14, + 75.37, + 100.0, + 81.17, + 78.69, + 100.0, + 100.0, + 100.0, + 94.21, + 100.0, + 100.0, + 100.0, + 100.0, + 92.39, + 100.0, + 91.82, + 39.21, + 25.14, + 45.34, + 54.89, + 45.32, + 62.35, + 42.53, + 39.64, + 33.33, + 58.45, + 57.34, + 25.44, + 17.24, + 16.37, + 52.02, + 60.3, + 38.5, + 26.47, + 0, + 21.08, + 61.14, + 56.22, + 32.31, + 16.78, + 0, + 21.35, + 86.3, + 100.0, + 55.61, + 0, + 15.08, + 20.9, + 30.49, + 34.28, + 29.03, + 26.64, + 29.81, + 29.1, + 33.26, + 51.13, + 76.03, + 56.76, + 31.2, + 16.53, + 16.86, + 19.3, + 20.86, + 19.17, + 23.57, + 22.8, + 53.17, + 45.63, + 44.27, + 20.77, + 13.58, + 13.92, + 71.76, + 60.42, + 47.17, + 28.65, + 21.87, + 31.45, + 100.0, + 100.0, + 94.71, + 96.4, + 71.99, + 34.56, + 30.75, + 40.47, + 38.14, + 22.39, + 24.43, + 20.03, + 31.81, + 14.39, + 21.87, + 26.55, + 38.07, + 39.2, + 28.1, + 26.41, + 81.46, + 60.03, + 32.12, + 20.05, + 35.48, + 42.27, + 31.86, + 38.06, + 34.62, + 31.5, + 26.04, + 18.78, + 18.18, + 21.71, + 31.93, + 30.62, + 29.37, + 32.96, + 27.26, + 32.31, + 31.84, + 26.0, + 25.41, + 29.35, + 39.43, + 29.9, + 36.86, + 49.59, + 38.72, + 31.7, + 32.51, + 34.67, + 29.73, + 47.32, + 33.24, + 26.96, + 50.76, + 47.48, + 31.57, + 26.14, + 24.85, + 28.17, + 30.3, + 29.84, + 33.86, + 33.69, + 33.36, + 63.4, + 88.17, + 31.18, + 37.75, + 45.4, + 38.59, + 48.2, + 61.23, + 34.4, + 37.3, + 36.92, + 67.7, + 92.21, + 54.68, + 28.07, + 36.64, + 46.97, + 49.98, + 54.02, + 60.37, + 50.85, + 80.57, + 89.28, + 73.42, + 79.4, + 98.6, + 88.34, + 67.92, + 73.42, + 45.27, + 18.36, + 20.3, + 39.19, + 41.29, + 23.09, + 0, + 0, + 19.35, + 25.54, + 31.45, + 55.21, + 68.59, + 70.16, + 98.65, + 88.03, + 50.38, + 46.15, + 99.27, + 27.88, + 17.31, + 31.46, + 33.17, + 31.79, + 27.89, + 29.32, + 21.95, + 41.5, + 70.32, + 29.76, + 28.89, + 19.78, + 16.3, + 27.53, + 39.92, + 43.94, + 40.35, + 40.84, + 41.96, + 44.56, + 40.38, + 30.33, + 26.96, + 29.41, + 43.45, + 46.55, + 37.49, + 35.79, + 29.36, + 18.27, + 25.67, + 39.17, + 41.92, + 33.24, + 28.61, + 21.34, + 18.53, + 69.34, + 57.87, + 79.91, + 100.0, + 88.92, + 97.69, + 36.26, + 75.32, + 81.7, + 98.63, + 67.27, + 14.11, + 21.37, + 50.99, + 54.18, + 38.05, + 15.33, + 14.34, + 39.23, + 50.02, + 28.47, + 31.71, + 48.02, + 80.45, + 61.37, + 41.77, + 46.15, + 84.96, + 35.76, + 92.63, + 100.0, + 45.0, + 18.76, + 21.03, + 99.68, + 96.83, + 61.39, + 36.3, + 29.94, + 36.59, + 57.14, + 44.22, + 0, + 18.59, + 81.55, + 32.25, + 23.53, + 14.68, + 17.31, + 100.0, + 82.1, + 38.45, + 13.08, + 14.25, + 56.21, + 69.77, + 49.69, + 17.18, + 0, + 34.8, + 89.38, + 94.63, + 71.89, + 100.0, + 77.08, + 100.0, + 96.42, + 97.87, + 97.47, + 100.0, + 82.56, + 71.13, + 19.85, + 22.91, + 87.25, + 60.24, + 71.71, + 94.84, + 70.67, + 100.0, + 100.0, + 63.01, + 13.33, + 35.52, + 100.0, + 58.21, + 18.64, + 14.18, + 70.19, + 90.67, + 74.33, + 91.77, + 58.59, + 0, + 52.51, + 72.01, + 49.56, + 15.28, + 27.43, + 92.49, + 77.79, + 87.01, + 45.6, + 72.92, + 64.25, + 100.0, + 88.48, + 46.54, + 80.25, + 18.61, + 54.72, + 97.31, + 44.77, + 80.36, + 77.82, + 46.28, + 98.98, + 91.77, + 99.02, + 61.02, + 97.27, + 79.36, + 85.51, + 77.98, + 62.99, + 59.65, + 38.43, + 93.26, + 90.61, + 81.4, + 100.0, + 99.37, + 100.0, + 94.98, + 50.05, + 97.87, + 100.0, + 88.78, + 79.39, + 76.36, + 18.51, + 67.65, + 70.21, + 37.34, + 13.6, + 15.01, + 99.91, + 89.98, + 14.43, + 0, + 0, + 63.28, + 90.66, + 61.86, + 22.08, + 0, + 0, + 85.8, + 86.38, + 71.5, + 0, + 0, + 80.33, + 84.58, + 66.91, + 27.42, + 17.0, + 23.22, + 87.51, + 75.87, + 15.74, + 0, + 75.11, + 89.69, + 100.0, + 100.0, + 100.0, + 100.0, + 99.89, + 69.49, + 36.33, + 84.94, + 88.14, + 63.17, + 23.76, + 35.92, + 100.0, + 61.35, + 57.89, + 100.0, + 55.24, + 56.52, + 97.53, + 58.25, + 60.74, + 0, + 63.83, + 49.08, + 28.05, + 23.53, + 14.34, + 0, + 17.04, + 79.25, + 99.18, + 89.63, + 65.19, + 22.57, + 56.99, + 81.6, + 62.21, + 77.51, + 0, + 13.99, + 58.21, + 99.0, + 72.4, + 99.93, + 100.0, + 98.85, + 67.42, + 18.64, + 15.79, + 13.11, + 0, + 79.32, + 81.52, + 51.16, + 18.22, + 14.1, + 18.54, + 40.73, + 71.61, + 49.84, + 0, + 0, + 40.52, + 79.61, + 72.12, + 45.16, + 42.1, + 13.49, + 22.61, + 83.15, + 77.81, + 68.76, + 15.73, + 16.76, + 36.85, + 53.96, + 69.98, + 74.12, + 20.05, + 14.76, + 22.25, + 86.99, + 69.73, + 14.31, + 0, + 17.21, + 71.91, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.44, + 100.0, + 88.68, + 100.0, + 99.33, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 43.04, + 32.89, + 48.85, + 49.14, + 20.93, + 0, + 32.4, + 41.78, + 42.94, + 18.4, + 0, + 22.32, + 38.86, + 36.97, + 17.97, + 15.69, + 0, + 28.74, + 54.76, + 35.43, + 32.41, + 20.17, + 0, + 47.66, + 34.83, + 21.85, + 40.19, + 15.63, + 42.85, + 37.97, + 34.38, + 28.82, + 20.72, + 18.01, + 26.96, + 60.99, + 40.83, + 23.17, + 39.92, + 23.71, + 37.0, + 27.87, + 21.89, + 24.06, + 50.24, + 31.46, + 19.98, + 45.88, + 24.8, + 39.73, + 40.88, + 27.45, + 19.21, + 21.77, + 71.23, + 100.0, + 79.51, + 40.33, + 69.09, + 50.32, + 95.22, + 49.95, + 37.96, + 38.85, + 78.83, + 90.14, + 81.7, + 58.52, + 82.46, + 45.47, + 40.03, + 54.08, + 62.14, + 40.16, + 51.54, + 41.33, + 50.12, + 72.86, + 97.85, + 99.96, + 73.78, + 86.62, + 84.68, + 42.0, + 97.28, + 100.0, + 100.0, + 98.82, + 97.48, + 79.19, + 76.26, + 78.18, + 100.0, + 100.0, + 100.0, + 100.0, + 84.0, + 61.08, + 92.94, + 41.54, + 87.4, + 77.27, + 86.66, + 63.43, + 71.99, + 68.38, + 100.0, + 50.98, + 65.56, + 100.0, + 95.2, + 68.54, + 83.45, + 74.24, + 83.93, + 75.09, + 79.17, + 97.3, + 100.0, + 84.09, + 97.57, + 65.46, + 85.45, + 59.7, + 100.0, + 99.14, + 64.91, + 53.83, + 84.54, + 92.09, + 90.75, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 83.6, + 24.79, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 77.34, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 97.32, + 95.26, + 97.04, + 98.74, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.37, + 85.24, + 99.12, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 54.84, + 38.68, + 57.05, + 58.03, + 50.58, + 68.44, + 96.32, + 44.95, + 54.51, + 51.66, + 72.36, + 49.69, + 62.07, + 73.58, + 52.61, + 74.46, + 66.82, + 56.05, + 43.86, + 41.8, + 59.92, + 62.05, + 51.65, + 29.53, + 27.91, + 46.99, + 44.68, + 36.95, + 19.05, + 29.41, + 50.52, + 91.45, + 89.08, + 52.87, + 60.43, + 35.05, + 48.55, + 82.93, + 81.18, + 58.19, + 29.16, + 26.79, + 42.58, + 50.94, + 31.69, + 33.3, + 19.0, + 31.37, + 46.57, + 70.06, + 85.2, + 89.49, + 92.38, + 55.98, + 19.3, + 44.72, + 72.05, + 46.18, + 45.88, + 57.04, + 47.41, + 26.96, + 32.38, + 32.78, + 20.42, + 0, + 17.38, + 44.98, + 56.53, + 62.0, + 91.36, + 100.0, + 69.7, + 75.07, + 28.06, + 43.92, + 21.95, + 14.52, + 0, + 14.56, + 46.38, + 81.69, + 95.07, + 100.0, + 35.79, + 16.64, + 18.48, + 22.94, + 38.59, + 14.45, + 0, + 0, + 0, + 30.23, + 32.76, + 16.37, + 0, + 0, + 13.4, + 26.25, + 49.35, + 32.96, + 16.28, + 17.05, + 14.86, + 18.13, + 33.15, + 30.88, + 18.97, + 14.96, + 15.47, + 29.87, + 38.12, + 43.03, + 44.12, + 46.58, + 44.14, + 41.3, + 60.32, + 52.33, + 79.92, + 23.29, + 16.6, + 44.42, + 90.07, + 70.25, + 100.0, + 43.32, + 17.83, + 43.89, + 96.3, + 83.65, + 54.58, + 16.24, + 14.06, + 29.1, + 39.55, + 93.78, + 88.79, + 100.0, + 46.22, + 14.48, + 25.73, + 34.4, + 21.73, + 16.79, + 14.82, + 23.9, + 49.94, + 83.32, + 69.94, + 49.35, + 16.66, + 14.37, + 58.75, + 60.86, + 70.07, + 17.74, + 14.17, + 32.39, + 86.63, + 51.55, + 27.55, + 0, + 41.28, + 43.39, + 66.65, + 37.18, + 32.84, + 24.89, + 31.99, + 43.45, + 40.91, + 29.34, + 18.66, + 0, + 20.1, + 56.87, + 63.39, + 41.58, + 0, + 0, + 65.02, + 23.65, + 16.66, + 22.75, + 23.9, + 34.9, + 68.32, + 76.56, + 38.02, + 30.32, + 13.23, + 0, + 32.86, + 42.19, + 23.82, + 15.5, + 0, + 17.2, + 38.36, + 46.53, + 36.99, + 20.61, + 14.81, + 26.47, + 40.17, + 26.84, + 28.4, + 14.15, + 29.01, + 100.0, + 100.0, + 100.0, + 99.96, + 56.53, + 29.04, + 64.31, + 57.06, + 29.77, + 47.31, + 34.86, + 88.65, + 96.79, + 85.86, + 83.9, + 16.36, + 20.55, + 59.28, + 37.82, + 43.12, + 21.47, + 0, + 14.36, + 42.95, + 37.51, + 32.16, + 21.17, + 14.24, + 15.31, + 42.03, + 45.02, + 37.6, + 23.27, + 0, + 17.34, + 65.89, + 100.0, + 96.66, + 90.43, + 86.16, + 17.26, + 50.4, + 66.0, + 37.78, + 29.15, + 13.81, + 36.17, + 75.69, + 47.54, + 44.82, + 16.86, + 0, + 39.66, + 50.04, + 46.12, + 25.35, + 0, + 24.84, + 58.17, + 49.23, + 37.89, + 21.75, + 0, + 32.92, + 90.55, + 59.76, + 53.15, + 22.3, + 0, + 37.14, + 96.46, + 98.66, + 67.14, + 49.62, + 0, + 18.96, + 97.37, + 95.76, + 88.83, + 80.69, + 0, + 19.95, + 84.61, + 100.0, + 71.0, + 89.53, + 59.14, + 25.9, + 66.31, + 96.03, + 59.56, + 40.98, + 0, + 15.72, + 72.44, + 84.26, + 63.93, + 29.31, + 0, + 16.75, + 83.88, + 65.12, + 41.35, + 25.85, + 21.75, + 39.56, + 60.36, + 77.25, + 47.96, + 22.28, + 13.3, + 23.93, + 74.97, + 100.0, + 100.0, + 98.61, + 29.27, + 23.01, + 72.24, + 59.95, + 61.7, + 16.93, + 13.22, + 40.38, + 72.21, + 47.34, + 75.09, + 27.65, + 47.94, + 80.92, + 76.9, + 30.34, + 18.71, + 33.21, + 61.79, + 32.8, + 26.11, + 61.02, + 13.19, + 23.58, + 60.06, + 48.03, + 43.02, + 35.69, + 14.9, + 17.82, + 51.78, + 100.0, + 100.0, + 100.0, + 92.13, + 53.94, + 23.7, + 80.97, + 71.25, + 25.72, + 14.91, + 28.66, + 86.95, + 85.87, + 32.68, + 0, + 17.27, + 72.32, + 98.99, + 69.54, + 37.54, + 0, + 43.49, + 92.21, + 79.22, + 62.99, + 13.57, + 13.76, + 48.9, + 74.44, + 62.75, + 33.89, + 15.03, + 16.09, + 47.2, + 72.33, + 44.88, + 39.17, + 31.41, + 54.39, + 98.42, + 94.17, + 72.12, + 69.21, + 34.81, + 41.7, + 52.55, + 96.64, + 65.15, + 23.16, + 26.99, + 65.27, + 57.6, + 42.7, + 31.41, + 0, + 17.94, + 54.63, + 55.92, + 47.43, + 29.49, + 17.34, + 34.46, + 75.81, + 82.39, + 63.39, + 32.83, + 0, + 17.3, + 54.46, + 96.94, + 98.62, + 49.16, + 31.05, + 13.97, + 20.95, + 44.72, + 61.51, + 77.44, + 71.6, + 76.51, + 97.4, + 95.18, + 58.69, + 31.99, + 21.25, + 32.51, + 48.17, + 58.77, + 69.11, + 80.33, + 92.1, + 91.86, + 86.76, + 97.6, + 99.33, + 99.02, + 85.51, + 52.22, + 45.51, + 26.67, + 63.09, + 95.32, + 85.63, + 81.65, + 93.39, + 86.76, + 59.61, + 60.46, + 74.58, + 73.8, + 38.23, + 27.77, + 29.81, + 40.9, + 60.44, + 88.44, + 92.97, + 72.71, + 47.48, + 18.34, + 27.86, + 69.81, + 72.38, + 80.8, + 79.45, + 95.78, + 100.0, + 95.86, + 96.84, + 100.0, + 93.01, + 100.0, + 88.13, + 45.29, + 68.17, + 57.18, + 57.91, + 37.42, + 77.41, + 52.14, + 38.49, + 31.4, + 22.26, + 47.76, + 95.33, + 60.13, + 34.46, + 39.12, + 33.04, + 88.93, + 78.1, + 50.51, + 94.2, + 49.5, + 43.31, + 36.93, + 41.91, + 36.01, + 20.77, + 51.32, + 83.4, + 62.16, + 42.95, + 15.34, + 25.21, + 59.84, + 78.05, + 86.56, + 63.54, + 48.53, + 29.82, + 47.79, + 94.08, + 80.41, + 51.73, + 44.09, + 31.8, + 41.63, + 85.68, + 47.44, + 39.88, + 27.56, + 32.51, + 73.04, + 56.63, + 42.12, + 37.44, + 20.3, + 21.08, + 73.0, + 88.22, + 53.65, + 46.52, + 22.48, + 0, + 49.53, + 87.73, + 66.25, + 51.86, + 53.08, + 29.41, + 70.34, + 82.83, + 67.96, + 62.15, + 29.78, + 25.56, + 78.56, + 72.4, + 60.66, + 36.76, + 27.96, + 43.53, + 79.26, + 66.37, + 39.96, + 29.8, + 17.05, + 31.5, + 93.78, + 86.84, + 67.0, + 32.54, + 0, + 28.75, + 90.49, + 78.16, + 46.98, + 17.59, + 16.57, + 68.3, + 84.66, + 59.24, + 34.92, + 67.42, + 42.26, + 86.83, + 100.0, + 78.41, + 78.33, + 14.08, + 15.44, + 75.28, + 99.78, + 75.46, + 33.12, + 0, + 20.99, + 79.5, + 90.73, + 58.31, + 28.18, + 16.96, + 16.41, + 75.22, + 65.54, + 35.61, + 37.23, + 32.32, + 17.23, + 66.13, + 88.83, + 52.61, + 23.08, + 16.23, + 64.4, + 68.62, + 36.51, + 36.78, + 0, + 38.73, + 96.4, + 67.57, + 37.54, + 17.59, + 16.74, + 63.57, + 58.45, + 44.41, + 25.85, + 15.98, + 50.95, + 94.22, + 60.85, + 37.65, + 47.6, + 15.0, + 15.42, + 82.66, + 59.56, + 80.23, + 43.41, + 70.66, + 45.05, + 64.44, + 78.35, + 77.62, + 61.02, + 32.98, + 24.35, + 30.43, + 83.46, + 84.34, + 54.25, + 37.17, + 0, + 0, + 59.85, + 78.72, + 43.66, + 18.96, + 60.02, + 72.38, + 49.92, + 63.58, + 46.69, + 25.74, + 21.06, + 21.82, + 53.43, + 61.37, + 49.15, + 38.21, + 33.14, + 20.5, + 31.5, + 38.7, + 29.17, + 28.51, + 18.17, + 43.33, + 72.87, + 42.27, + 22.94, + 0, + 0, + 58.83, + 75.22, + 54.04, + 31.61, + 43.27, + 0, + 62.42, + 49.64, + 28.79, + 14.48, + 0, + 17.43, + 84.9, + 61.99, + 36.89, + 21.39, + 13.08, + 25.13, + 78.11, + 66.04, + 36.94, + 23.38, + 15.72, + 31.35, + 74.56, + 69.29, + 55.53, + 41.0, + 25.63, + 33.88, + 59.09, + 90.9, + 46.9, + 35.55, + 33.94, + 57.25, + 85.96, + 67.72, + 44.06, + 27.27, + 38.48, + 13.52, + 64.83, + 81.05, + 59.88, + 45.71, + 30.42, + 79.51, + 20.18, + 42.07, + 75.02, + 89.98, + 100.0, + 99.39, + 70.49, + 72.7, + 37.48, + 67.7, + 60.27, + 18.97, + 14.49, + 44.8, + 100.0, + 71.28, + 52.23, + 25.7, + 17.54, + 76.57, + 84.79, + 61.69, + 41.66, + 13.11, + 21.71, + 67.94, + 61.84, + 34.84, + 18.95, + 22.9, + 67.78, + 75.33, + 48.36, + 51.14, + 27.21, + 45.14, + 56.45, + 44.49, + 40.03, + 48.12, + 52.69, + 88.45, + 55.15, + 38.24, + 42.8, + 59.6, + 68.4, + 32.25, + 58.91, + 40.96, + 33.08, + 29.23, + 21.22, + 56.26, + 75.93, + 40.05, + 31.28, + 23.82, + 16.91, + 44.01, + 88.66, + 65.31, + 67.1, + 50.85, + 44.32, + 75.17, + 80.52, + 96.38, + 82.57, + 46.9, + 0, + 21.61, + 87.4, + 100.0, + 95.86, + 97.66, + 75.48, + 17.83, + 76.7, + 94.18, + 88.09, + 64.61, + 75.85, + 86.36, + 66.44, + 77.65, + 57.77, + 40.11, + 49.93, + 17.9, + 75.76, + 99.65, + 75.21, + 49.91, + 58.43, + 99.34, + 80.73, + 71.91, + 50.07, + 80.61, + 57.51, + 63.07, + 53.65, + 31.44, + 24.52, + 28.56, + 71.03, + 100.0, + 82.76, + 64.72, + 58.32, + 44.57, + 93.16, + 44.11, + 25.92, + 71.6, + 16.94, + 33.71, + 27.58, + 18.42, + 17.7, + 42.7, + 77.55, + 70.85, + 43.86, + 60.11, + 54.61, + 61.75, + 73.1, + 43.85, + 22.91, + 20.2, + 55.41, + 16.94, + 39.66, + 75.78, + 57.28, + 42.29, + 21.9, + 29.12, + 94.42, + 83.55, + 59.2, + 55.26, + 22.75, + 19.28, + 72.04, + 89.72, + 46.98, + 38.63, + 14.09, + 38.12, + 83.35, + 72.39, + 35.99, + 38.01, + 41.29, + 69.63, + 52.26, + 43.91, + 26.95, + 43.3, + 92.88, + 58.55, + 59.04, + 63.98, + 25.11, + 15.3, + 61.94, + 63.04, + 31.17, + 23.89, + 39.27, + 83.08, + 66.71, + 58.99, + 31.02, + 0, + 47.36, + 82.95, + 89.71, + 55.17, + 14.91, + 0, + 37.24, + 81.55, + 65.73, + 69.17, + 80.99, + 75.25, + 50.03, + 74.49, + 24.32, + 0, + 48.45, + 78.95, + 56.99, + 26.59, + 0, + 36.44, + 93.44, + 83.76, + 82.15, + 99.37, + 94.11, + 98.37, + 100.0, + 87.23, + 69.51, + 23.08, + 21.5, + 72.3, + 63.18, + 43.37, + 18.52, + 14.95, + 40.75, + 93.88, + 70.8, + 44.84, + 69.27, + 0, + 28.48, + 88.13, + 77.42, + 57.74, + 56.72, + 15.16, + 27.98, + 90.3, + 78.8, + 57.59, + 25.07, + 20.95, + 54.35, + 94.45, + 99.94, + 65.5, + 74.37, + 28.97, + 14.73, + 35.45, + 95.61, + 82.69, + 60.91, + 51.78, + 48.1, + 40.01, + 88.89, + 90.65, + 60.99, + 50.46, + 29.09, + 41.88, + 81.65, + 100.0, + 77.2, + 40.62, + 42.62, + 16.93, + 31.17, + 90.2, + 78.7, + 61.84, + 26.84, + 0, + 28.85, + 88.8, + 98.4, + 68.9, + 49.37, + 26.72, + 33.39, + 90.51, + 84.86, + 46.16, + 28.75, + 0, + 19.81, + 83.52, + 84.33, + 54.0, + 27.9, + 23.52, + 13.79, + 38.82, + 99.55, + 71.82, + 42.8, + 19.62, + 0, + 46.35, + 67.31, + 46.66, + 35.16, + 28.42, + 22.31, + 32.37, + 98.09, + 99.46, + 72.91, + 45.16, + 13.54, + 54.46, + 70.89, + 79.2, + 37.22, + 23.26, + 32.68, + 88.91, + 89.49, + 73.58, + 36.82, + 18.69, + 63.62, + 93.42, + 62.94, + 32.78, + 16.35, + 23.79, + 76.99, + 71.47, + 53.46, + 26.72, + 0, + 20.48, + 75.33, + 80.55, + 39.57, + 17.16, + 0, + 17.85, + 66.66, + 60.7, + 38.49, + 20.72, + 0, + 56.12, + 81.97, + 40.56, + 26.19, + 35.81, + 0, + 53.13, + 92.43, + 68.01, + 36.59, + 20.07, + 15.65, + 36.53, + 70.1, + 85.22, + 37.21, + 17.84, + 20.52, + 14.76, + 30.07, + 58.04, + 23.75, + 21.13, + 0, + 41.34, + 90.83, + 45.83, + 32.3, + 77.29, + 17.55, + 24.5, + 67.39, + 60.69, + 60.92, + 49.67, + 30.77, + 70.12, + 74.84, + 74.87, + 27.65, + 17.49, + 64.73, + 97.85, + 72.53, + 90.04, + 33.82, + 24.19, + 67.18, + 92.6, + 88.08, + 81.73, + 25.97, + 35.77, + 86.0, + 68.34, + 58.26, + 31.94, + 22.98, + 27.87, + 72.36, + 73.52, + 86.25, + 78.26, + 63.61, + 46.24, + 39.59, + 54.13, + 31.9, + 40.58, + 68.78, + 56.04, + 27.5, + 19.97, + 35.4, + 82.53, + 53.28, + 32.11, + 16.68, + 13.7, + 58.07, + 71.15, + 39.75, + 52.64, + 47.88, + 41.32, + 68.29, + 62.78, + 68.95, + 46.58, + 79.59, + 61.0, + 44.9, + 37.9, + 44.87, + 51.75, + 43.61, + 25.33, + 64.48, + 93.81, + 64.79, + 85.68, + 65.1, + 47.82, + 80.99, + 99.97, + 38.89, + 53.26, + 39.69, + 40.5, + 37.57, + 22.05, + 23.45, + 77.15, + 55.54, + 65.62, + 43.4, + 42.44, + 32.04, + 69.19, + 98.51, + 78.26, + 96.33, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 51.47, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 67.29, + 100.0, + 99.19, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 81.73, + 95.32, + 64.61, + 68.55, + 100.0, + 89.82, + 39.14, + 41.28, + 68.48, + 100.0, + 75.5, + 33.12, + 70.65, + 88.92, + 27.95, + 52.35, + 41.04, + 88.35, + 95.68, + 98.47, + 100.0, + 100.0, + 87.93, + 89.89, + 73.32, + 71.54, + 86.53, + 98.59, + 64.44, + 57.06, + 43.54, + 85.45, + 69.02, + 62.4, + 74.08, + 98.8, + 95.85, + 72.84, + 77.6, + 86.89, + 43.22, + 45.12, + 69.38, + 96.72, + 68.76, + 54.4, + 53.98, + 91.05, + 98.38, + 97.84, + 100.0, + 98.03, + 97.77, + 73.74, + 61.22, + 99.38, + 77.86, + 82.18, + 99.66, + 52.74, + 72.94, + 53.84, + 100.0, + 72.26, + 52.98, + 74.03, + 86.09, + 72.93, + 85.52, + 57.75, + 97.57, + 100.0, + 89.23, + 64.39, + 55.15, + 36.93, + 78.38, + 97.29, + 96.46, + 83.44, + 96.31, + 89.56, + 85.22, + 44.85, + 57.28, + 67.17, + 50.97, + 97.4, + 69.32, + 75.42, + 100.0, + 74.06, + 69.77, + 80.14, + 100.0, + 90.34, + 59.95, + 78.37, + 91.29, + 41.17, + 74.2, + 70.67, + 47.0, + 37.9, + 41.11, + 64.07, + 74.54, + 67.27, + 63.97, + 99.08, + 95.73, + 71.73, + 72.4, + 64.84, + 96.38, + 60.85, + 96.39, + 69.15, + 36.18, + 70.09, + 66.39, + 61.4, + 57.5, + 42.31, + 83.07, + 100.0, + 99.1, + 74.73, + 90.59, + 76.67, + 27.61, + 44.38, + 88.97, + 71.69, + 39.9, + 33.35, + 43.91, + 50.66, + 35.74, + 28.39, + 31.81, + 55.46, + 50.86, + 41.13, + 25.94, + 30.12, + 47.74, + 66.99, + 45.06, + 24.89, + 45.74, + 88.86, + 76.72, + 96.53, + 87.22, + 98.02, + 53.48, + 33.19, + 36.24, + 45.19, + 20.78, + 14.85, + 32.22, + 88.15, + 63.3, + 93.33, + 100.0, + 91.02, + 97.58, + 45.35, + 32.26, + 44.27, + 61.1, + 87.02, + 71.42, + 80.44, + 57.04, + 65.9, + 35.44, + 76.96, + 48.75, + 18.6, + 26.45, + 68.03, + 61.44, + 80.87, + 39.85, + 55.98, + 59.05, + 58.32, + 44.58, + 23.16, + 22.16, + 64.0, + 92.35, + 67.98, + 63.17, + 67.58, + 48.51, + 76.42, + 42.67, + 46.57, + 46.24, + 33.61, + 76.09, + 83.28, + 43.32, + 39.06, + 49.66, + 55.36, + 43.47, + 59.29, + 45.21, + 42.42, + 38.9, + 49.07, + 84.79, + 51.51, + 57.29, + 42.65, + 45.37, + 75.76, + 81.64, + 43.76, + 42.78, + 62.23, + 71.51, + 43.81, + 66.67, + 100.0, + 51.99, + 36.24, + 50.73, + 38.38, + 74.26, + 87.59, + 98.13, + 91.67, + 61.94, + 98.58, + 75.95, + 90.87, + 66.12, + 81.05, + 59.45, + 89.2, + 100.0, + 82.12, + 59.2, + 40.56, + 52.78, + 29.97, + 57.44, + 31.22, + 55.59, + 34.9, + 54.83, + 68.03, + 52.26, + 47.61, + 34.95, + 72.75, + 53.28, + 48.5, + 31.09, + 35.36, + 26.78, + 38.23, + 34.49, + 54.64, + 37.2, + 66.61, + 66.45, + 89.95, + 45.43, + 91.22, + 93.32, + 63.49, + 71.71, + 37.68, + 83.68, + 66.61, + 77.07, + 76.8, + 89.05, + 87.53, + 95.41, + 86.85, + 36.04, + 35.33, + 97.82, + 80.15, + 53.71, + 96.89, + 88.01, + 83.1, + 100.0, + 99.9, + 99.78, + 61.84, + 76.13, + 78.81, + 85.16, + 57.78, + 37.43, + 52.1, + 56.9, + 58.79, + 91.51, + 97.47, + 78.38, + 77.33, + 62.04, + 80.67, + 95.28, + 72.57, + 94.78, + 96.02, + 79.33, + 97.68, + 100.0, + 49.25, + 52.79, + 83.23, + 30.1, + 67.46, + 42.14, + 69.69, + 81.67, + 39.02, + 73.17, + 79.35, + 80.86, + 78.17, + 31.13, + 55.13, + 32.48, + 94.25, + 85.58, + 80.45, + 82.29, + 97.05, + 53.77, + 35.4, + 65.75, + 29.84, + 81.36, + 52.65, + 70.41, + 91.82, + 93.59, + 83.58, + 100.0, + 55.36, + 85.92, + 94.25, + 78.9, + 93.61, + 61.67, + 100.0, + 74.99, + 57.89, + 83.25, + 85.69, + 70.55, + 81.02, + 52.65, + 58.64, + 46.64, + 63.22, + 59.0, + 94.28, + 75.93, + 70.09, + 63.47, + 96.01, + 81.05, + 67.76, + 45.44, + 49.82, + 61.16, + 41.41, + 46.55, + 53.16, + 38.49, + 32.76, + 36.58, + 53.63, + 82.86, + 100.0, + 81.05, + 37.83, + 65.72, + 54.57, + 34.21, + 58.21, + 40.48, + 41.48, + 91.19, + 54.79, + 96.03, + 89.3, + 85.34, + 69.29, + 100.0, + 99.39, + 80.47, + 87.65, + 55.15, + 38.85, + 34.45, + 35.92, + 94.14, + 87.2, + 96.66, + 65.5, + 100.0, + 100.0, + 82.55, + 92.84, + 79.95, + 81.04, + 100.0, + 99.75, + 88.13, + 90.49, + 79.41, + 91.46, + 88.91, + 94.04, + 79.28, + 62.42, + 57.27, + 35.18, + 36.62, + 67.11, + 99.82, + 72.41, + 41.94, + 92.1, + 41.43, + 100.0, + 82.88, + 40.9, + 22.14, + 37.51, + 26.39, + 58.11, + 24.45, + 38.05, + 36.9, + 36.11, + 41.21, + 87.71, + 65.59, + 29.36, + 22.99, + 25.44, + 22.7, + 35.63, + 26.77, + 49.71, + 83.46, + 44.43, + 65.01, + 81.77, + 25.37, + 26.01, + 28.38, + 26.3, + 22.61, + 26.26, + 22.35, + 22.63, + 60.43, + 60.2, + 42.55, + 50.56, + 55.4, + 45.62, + 23.91, + 61.4, + 35.61, + 26.36, + 25.42, + 36.76, + 66.52, + 91.55, + 61.52, + 37.51, + 68.67, + 45.75, + 48.36, + 54.72, + 64.06, + 54.33, + 98.43, + 67.66, + 34.37, + 34.44, + 34.12, + 98.95, + 59.61, + 48.71, + 48.88, + 41.73, + 45.99, + 61.54, + 60.49, + 72.5, + 25.52, + 46.34, + 94.05, + 47.0, + 28.82, + 36.18, + 32.71, + 99.42, + 97.94, + 88.27, + 82.25, + 21.77, + 32.0, + 20.93, + 38.87, + 33.56, + 36.07, + 22.44, + 29.73, + 33.33, + 100.0, + 79.38, + 56.9, + 41.01, + 48.73, + 46.31, + 38.9, + 21.77, + 29.06, + 35.74, + 65.82, + 98.41, + 94.76, + 74.15, + 45.99, + 46.93, + 76.82, + 63.94, + 57.42, + 52.03, + 31.96, + 42.54, + 42.92, + 32.82, + 36.27, + 98.9, + 71.0, + 78.53, + 86.61, + 76.01, + 35.4, + 55.62, + 26.97, + 88.61, + 45.47, + 27.22, + 26.21, + 20.56, + 45.38, + 64.99, + 79.3, + 74.4, + 57.68, + 31.96, + 38.05, + 99.97, + 83.35, + 57.49, + 77.32, + 44.48, + 37.46, + 88.89, + 84.39, + 47.4, + 30.43, + 48.97, + 50.4, + 92.87, + 60.83, + 23.84, + 54.59, + 44.6, + 87.27, + 42.68, + 45.04, + 30.02, + 36.62, + 30.44, + 71.87, + 41.88, + 33.46, + 28.16, + 83.72, + 72.45, + 54.1, + 49.11, + 34.42, + 31.85, + 60.51, + 51.54, + 34.25, + 56.81, + 73.97, + 57.39, + 54.6, + 47.98, + 36.66, + 53.74, + 44.21, + 56.91, + 34.29, + 30.48, + 39.24, + 39.3, + 57.65, + 61.24, + 31.25, + 26.41, + 24.39, + 17.62, + 25.39, + 30.91, + 29.67, + 16.72, + 24.34, + 67.45, + 45.62, + 77.08, + 55.86, + 45.91, + 29.41, + 30.37, + 48.86, + 100.0, + 83.36, + 45.62, + 45.97, + 47.22, + 83.83, + 84.14, + 91.08, + 47.06, + 53.42, + 76.16, + 69.01, + 49.65, + 72.6, + 73.85, + 89.04, + 72.98, + 24.5, + 54.29, + 50.05, + 59.08, + 64.91, + 64.89, + 86.16, + 91.35, + 63.42, + 65.62, + 57.1, + 89.49, + 59.87, + 79.73, + 81.01, + 70.26, + 97.68, + 78.65, + 88.46, + 57.24, + 96.15, + 89.38, + 99.84, + 94.99, + 91.17, + 97.75, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 68.81, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 21.22, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.76, + 70.32, + 80.05, + 75.31, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 84.15, + 78.83, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.89, + 92.02, + 92.24, + 60.22, + 39.4, + 84.87, + 35.53, + 32.25, + 32.95, + 75.34, + 80.6, + 54.42, + 45.91, + 91.44, + 86.88, + 60.87, + 62.86, + 57.4, + 84.77, + 92.1, + 96.35, + 92.06, + 76.77, + 43.95, + 63.25, + 98.71, + 90.18, + 51.5, + 70.42, + 62.39, + 80.81, + 57.1, + 82.84, + 51.08, + 36.61, + 43.68, + 48.54, + 56.79, + 41.76, + 40.95, + 85.29, + 97.06, + 43.98, + 24.99, + 39.76, + 40.7, + 33.26, + 45.5, + 35.04, + 88.67, + 46.27, + 43.0, + 60.71, + 39.52, + 71.71, + 91.01, + 62.08, + 92.49, + 45.84, + 57.27, + 46.61, + 48.75, + 53.06, + 84.63, + 90.9, + 80.39, + 50.06, + 34.58, + 32.75, + 53.87, + 39.98, + 43.32, + 81.22, + 45.02, + 66.28, + 94.01, + 92.03, + 47.17, + 82.19, + 54.55, + 63.01, + 64.54, + 70.44, + 54.91, + 57.09, + 53.94, + 61.7, + 64.52, + 59.68, + 83.62, + 84.5, + 69.2, + 68.86, + 72.43, + 39.2, + 59.72, + 64.77, + 45.63, + 57.25, + 52.56, + 79.9, + 60.46, + 94.69, + 53.29, + 81.24, + 64.29, + 88.01, + 59.21, + 35.04, + 34.06, + 26.13, + 30.75, + 18.01, + 50.55, + 73.76, + 76.07, + 60.18, + 75.44, + 42.38, + 28.76, + 42.56, + 45.64, + 33.74, + 28.52, + 22.68, + 26.22, + 41.45, + 33.24, + 26.35, + 51.77, + 63.33, + 78.25, + 52.4, + 57.48, + 63.06, + 33.02, + 37.99, + 40.05, + 67.29, + 93.22, + 35.92, + 49.71, + 59.97, + 77.33, + 73.15, + 60.51, + 53.41, + 66.76, + 28.71, + 73.68, + 67.38, + 37.7, + 40.22, + 80.53, + 39.59, + 70.77, + 63.62, + 79.65, + 79.28, + 43.44, + 41.13, + 45.79, + 45.06, + 51.46, + 84.71, + 80.37, + 69.74, + 60.91, + 52.5, + 30.85, + 47.74, + 64.96, + 39.45, + 30.25, + 30.03, + 40.81, + 19.03, + 35.66, + 47.45, + 91.55, + 87.23, + 76.64, + 71.02, + 48.21, + 71.13, + 51.88, + 77.41, + 38.14, + 71.25, + 77.88, + 58.79, + 45.81, + 47.21, + 62.0, + 67.03, + 60.53, + 43.39, + 78.01, + 64.81, + 39.93, + 40.78, + 51.93, + 71.05, + 90.41, + 42.79, + 47.99, + 48.94, + 62.08, + 56.68, + 42.93, + 79.74, + 42.98, + 69.73, + 82.96, + 76.33, + 85.35, + 73.59, + 69.33, + 30.39, + 55.15, + 72.99, + 44.3, + 48.88, + 39.57, + 33.64, + 36.09, + 46.7, + 38.81, + 35.43, + 54.44, + 38.42, + 44.51, + 99.63, + 62.15, + 49.33, + 49.34, + 62.62, + 86.98, + 44.55, + 51.9, + 75.12, + 54.86, + 91.45, + 73.92, + 74.08, + 76.06, + 89.18, + 100.0, + 55.66, + 79.79, + 83.24, + 97.86, + 100.0, + 71.05, + 91.14, + 97.05, + 99.66, + 86.25, + 98.78, + 70.4, + 90.63, + 64.0, + 64.33, + 54.88, + 35.12, + 39.53, + 85.61, + 61.41, + 71.67, + 91.77, + 100.0, + 82.89, + 79.75, + 54.8, + 98.19, + 71.53, + 86.29, + 100.0, + 66.32, + 46.29, + 45.24, + 36.03, + 51.77, + 41.93, + 89.72, + 67.95, + 65.0, + 53.39, + 50.69, + 89.73, + 34.45, + 33.25, + 37.94, + 88.72, + 62.68, + 71.63, + 64.41, + 99.85, + 53.16, + 100.0, + 100.0, + 99.96, + 93.38, + 99.37, + 53.13, + 70.17, + 63.64, + 60.86, + 62.95, + 42.33, + 90.21, + 87.29, + 94.22, + 98.32, + 100.0, + 81.19, + 81.59, + 100.0, + 73.74, + 82.43, + 99.88, + 100.0, + 97.36, + 100.0, + 100.0, + 99.02, + 100.0, + 99.59, + 98.83, + 80.46, + 79.52, + 94.96, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.9, + 93.8, + 55.99, + 43.05, + 65.52, + 91.64, + 60.81, + 79.82, + 67.83, + 86.07, + 83.08, + 99.98, + 85.59, + 44.15, + 36.56, + 65.13, + 87.51, + 68.19, + 67.57, + 93.73, + 100.0, + 95.08, + 90.05, + 86.48, + 100.0, + 60.57, + 93.08, + 47.71, + 43.6, + 51.84, + 34.15, + 36.08, + 32.97, + 38.39, + 48.11, + 97.69, + 56.09, + 34.91, + 30.7, + 45.78, + 37.63, + 43.19, + 46.66, + 40.12, + 32.53, + 29.06, + 41.22, + 29.12, + 29.28, + 27.95, + 36.93, + 31.86, + 28.4, + 21.03, + 47.33, + 28.5, + 27.49, + 31.94, + 34.02, + 22.17, + 21.73, + 20.99, + 56.43, + 92.28, + 87.72, + 47.11, + 24.19, + 33.69, + 74.83, + 59.74, + 27.37, + 28.12, + 33.36, + 53.41, + 42.2, + 32.81, + 58.65, + 26.65, + 44.35, + 62.19, + 48.68, + 32.23, + 59.55, + 74.32, + 26.99, + 34.5, + 39.57, + 28.71, + 70.41, + 78.43, + 100.0, + 51.84, + 21.73, + 91.09, + 70.9, + 51.16, + 85.43, + 95.65, + 62.68, + 70.7, + 75.05, + 81.92, + 72.6, + 64.01, + 42.13, + 52.1, + 64.41, + 95.77, + 82.66, + 75.06, + 85.81, + 85.38, + 100.0, + 57.76, + 90.5, + 73.49, + 93.0, + 83.47, + 73.4, + 75.41, + 56.64, + 97.43, + 62.58, + 31.55, + 34.23, + 86.73, + 52.46, + 82.28, + 78.56, + 53.09, + 81.26, + 91.2, + 86.29, + 24.26, + 42.66, + 25.54, + 37.76, + 35.27, + 96.32, + 85.85, + 90.53, + 82.85, + 42.26, + 79.46, + 90.1, + 73.53, + 97.11, + 54.17, + 93.85, + 90.7, + 97.46, + 95.58, + 100.0, + 84.76, + 89.05, + 100.0, + 70.86, + 92.44, + 85.25, + 93.77, + 100.0, + 68.01, + 64.58, + 45.05, + 66.24, + 90.18, + 61.14, + 74.53, + 80.6, + 54.17, + 36.49, + 44.29, + 38.6, + 37.26, + 60.19, + 49.38, + 51.82, + 57.63, + 50.85, + 67.32, + 74.2, + 77.42, + 20.07, + 43.96, + 90.82, + 53.0, + 82.11, + 85.26, + 53.99, + 98.99, + 100.0, + 96.3, + 80.82, + 79.8, + 64.8, + 100.0, + 86.63, + 82.71, + 85.77, + 100.0, + 60.97, + 35.53, + 59.16, + 95.27, + 85.12, + 70.72, + 57.43, + 98.06, + 91.73, + 89.53, + 97.02, + 100.0, + 86.24, + 100.0, + 100.0, + 82.7, + 95.4, + 88.16, + 78.77, + 28.71, + 33.3, + 50.77, + 96.71, + 74.66, + 59.06, + 68.76, + 64.97, + 86.85, + 98.63, + 82.45, + 61.04, + 54.4, + 84.13, + 50.45, + 98.98, + 79.65, + 89.27, + 100.0, + 73.41, + 49.61, + 60.37, + 100.0, + 98.97, + 74.32, + 86.17, + 43.56, + 64.16, + 31.5, + 58.52, + 98.64, + 46.2, + 37.18, + 58.38, + 50.34, + 43.54, + 69.67, + 64.39, + 47.17, + 96.38, + 66.67, + 52.27, + 46.6, + 91.24, + 75.17, + 71.92, + 93.73, + 75.37, + 87.81, + 66.46, + 81.68, + 64.57, + 82.1, + 53.12, + 30.8, + 43.77, + 79.7, + 88.76, + 100.0, + 72.15, + 75.41, + 98.79, + 94.55, + 47.35, + 75.35, + 38.42, + 70.34, + 94.21, + 52.86, + 80.18, + 61.09, + 45.47, + 32.22, + 25.12, + 25.31, + 57.94, + 60.37, + 90.72, + 58.4, + 59.64, + 79.76, + 23.13, + 16.1, + 21.27, + 23.15, + 81.08, + 95.45, + 53.04, + 91.86, + 68.73, + 89.22, + 95.25, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.91, + 95.9, + 70.63, + 99.35, + 96.65, + 82.3, + 60.29, + 86.57, + 87.86, + 98.47, + 99.85, + 97.0, + 100.0, + 71.43, + 31.11, + 26.62, + 34.21, + 41.42, + 61.41, + 100.0, + 38.59, + 89.02, + 90.45, + 64.39, + 71.22, + 67.95, + 91.19, + 68.7, + 69.89, + 71.11, + 90.39, + 97.58, + 79.16, + 97.78, + 99.37, + 100.0, + 100.0, + 66.97, + 78.48, + 35.58, + 44.97, + 95.44, + 63.34, + 73.13, + 59.55, + 53.86, + 56.31, + 30.82, + 28.65, + 29.74, + 25.81, + 15.22, + 35.42, + 99.74, + 93.59, + 64.04, + 49.35, + 83.62, + 84.99, + 92.73, + 92.92, + 75.61, + 100.0, + 100.0, + 93.45, + 92.86, + 100.0, + 69.17, + 71.16, + 82.13, + 85.66, + 92.06, + 99.13, + 92.36, + 65.65, + 80.59, + 98.75, + 51.88, + 80.45, + 74.6, + 94.22, + 72.65, + 53.86, + 55.39, + 45.44, + 79.99, + 56.59, + 49.36, + 52.03, + 64.48, + 67.25, + 80.7, + 89.86, + 51.93, + 54.29, + 76.04, + 69.47, + 70.04, + 66.33, + 58.26, + 64.4, + 82.83, + 84.46, + 61.37, + 74.9, + 46.6, + 63.94, + 56.16, + 84.46, + 82.61, + 83.44, + 72.77, + 55.83, + 84.68, + 71.3, + 95.25, + 41.45, + 66.99, + 43.11, + 53.71, + 52.79, + 57.39, + 44.67, + 38.07, + 85.61, + 88.84, + 45.82, + 77.31, + 43.74, + 61.3, + 100.0, + 100.0, + 100.0, + 60.34, + 94.55, + 85.4, + 51.45, + 71.71, + 88.94, + 71.74, + 48.88, + 71.5, + 66.71, + 99.86, + 50.1, + 44.75, + 96.86, + 34.32, + 64.87, + 46.54, + 36.59, + 49.19, + 88.92, + 70.62, + 57.44, + 38.97, + 64.49, + 37.01, + 42.8, + 25.68, + 42.18, + 45.34, + 43.97, + 77.84, + 92.42, + 38.38, + 24.71, + 64.76, + 61.7, + 48.16, + 55.96, + 58.14, + 71.35, + 56.43, + 93.95, + 51.96, + 81.4, + 87.56, + 77.17, + 92.46, + 82.51, + 58.75, + 36.15, + 51.41, + 77.33, + 66.64, + 33.62, + 38.41, + 86.98, + 69.57, + 98.84, + 70.93, + 69.02, + 75.01, + 67.38, + 34.06, + 52.47, + 62.61, + 86.83, + 38.24, + 28.51, + 25.94, + 37.07, + 38.98, + 25.56, + 50.56, + 86.69, + 49.52, + 34.26, + 51.56, + 40.48, + 50.8, + 21.09, + 19.21, + 41.67, + 89.05, + 74.47, + 71.28, + 38.27, + 78.33, + 96.19, + 87.63, + 81.84, + 84.92, + 83.4, + 48.3, + 43.77, + 97.57, + 82.9, + 60.05, + 78.79, + 52.97, + 77.96, + 41.68, + 78.94, + 98.78, + 100.0, + 63.76, + 47.39, + 73.65, + 39.54, + 78.16, + 48.16, + 41.02, + 89.77, + 39.33, + 48.14, + 64.07, + 98.11, + 75.74, + 74.73, + 62.05, + 72.67, + 50.66, + 38.61, + 47.09, + 83.21, + 98.06, + 73.06, + 34.66, + 49.92, + 60.53, + 32.65, + 43.27, + 72.64, + 57.69, + 16.06, + 15.45, + 20.78, + 46.14, + 47.5, + 47.6, + 41.87, + 91.11, + 82.11, + 100.0, + 91.5, + 58.19, + 87.15, + 100.0, + 95.33, + 77.58, + 87.19, + 30.43, + 58.97, + 95.04, + 80.49, + 100.0, + 100.0, + 99.66, + 52.32, + 90.65, + 91.55, + 89.3, + 73.09, + 70.16, + 100.0, + 100.0, + 81.44, + 96.22, + 80.06, + 42.45, + 80.06, + 100.0, + 90.04, + 76.73, + 99.96, + 100.0, + 57.18, + 63.68, + 55.51, + 58.29, + 92.39, + 79.47, + 72.68, + 46.72, + 49.25, + 87.83, + 81.8, + 72.87, + 94.8, + 65.36, + 52.63, + 59.9, + 48.54, + 76.96, + 59.34, + 96.01, + 72.85, + 61.99, + 59.49, + 83.41, + 96.46, + 98.21, + 93.03, + 93.82, + 47.28, + 60.49, + 70.15, + 79.42, + 100.0, + 100.0, + 93.11, + 69.7, + 45.28, + 65.47, + 71.09, + 43.9, + 38.6, + 91.78, + 79.62, + 91.32, + 71.85, + 59.36, + 61.38, + 77.56, + 97.96, + 100.0, + 65.48, + 38.32, + 98.47, + 71.94, + 95.25, + 100.0, + 71.9, + 60.66, + 66.39, + 100.0, + 97.64, + 90.5, + 100.0, + 99.4, + 47.26, + 52.13, + 100.0, + 63.51, + 67.62, + 58.99, + 77.33, + 59.99, + 92.38, + 99.67, + 86.9, + 75.86, + 90.97, + 97.73, + 74.05, + 92.39, + 54.51, + 86.95, + 86.4, + 67.99, + 64.86, + 90.92, + 52.36, + 50.94, + 92.47, + 85.12, + 63.21, + 90.93, + 99.07, + 64.67, + 99.32, + 91.18, + 76.83, + 95.54, + 53.9, + 79.33, + 67.69, + 79.91, + 79.97, + 71.49, + 99.48, + 67.62, + 99.87, + 69.75, + 75.06, + 66.36, + 83.79, + 67.29, + 78.07, + 78.03, + 69.65, + 44.26, + 82.44, + 34.67, + 54.53, + 81.75, + 32.48, + 87.78, + 96.19, + 44.41, + 98.12, + 89.06, + 31.61, + 36.01, + 83.97, + 71.53, + 52.93, + 91.62, + 80.07, + 92.94, + 81.64, + 87.11, + 98.49, + 76.68, + 76.0, + 35.52, + 63.02, + 69.27, + 87.77, + 45.64, + 91.14, + 56.33, + 44.7, + 99.4, + 79.75, + 88.37, + 29.17, + 94.27, + 41.75, + 29.55, + 86.02, + 80.46, + 42.58, + 64.94, + 56.33, + 98.95, + 100.0, + 60.11, + 80.69, + 100.0, + 93.95, + 79.37, + 100.0, + 100.0, + 97.04, + 43.27, + 68.0, + 67.91, + 73.24, + 40.91, + 92.21, + 52.84, + 70.98, + 62.71, + 60.56, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 86.41, + 99.29, + 39.44, + 67.06, + 79.99, + 80.31, + 39.23, + 62.52, + 91.84, + 74.72, + 85.66, + 96.38, + 66.12, + 98.9, + 99.93, + 56.1, + 75.89, + 100.0, + 90.65, + 87.89, + 100.0, + 80.55, + 87.5, + 88.95, + 55.89, + 88.98, + 74.36, + 64.33, + 100.0, + 97.72, + 80.56, + 69.1, + 66.3, + 100.0, + 97.7, + 68.2, + 63.67, + 58.95, + 90.54, + 76.86, + 100.0, + 100.0, + 78.55, + 65.1, + 79.41, + 41.75, + 66.8, + 100.0, + 97.58, + 80.33, + 67.08, + 79.6, + 46.95, + 78.69, + 95.9, + 60.51, + 99.57, + 74.27, + 84.3, + 49.74, + 79.96, + 94.26, + 83.22, + 86.19, + 89.47, + 69.36, + 73.63, + 71.33, + 79.33, + 63.82, + 80.38, + 43.03, + 87.23, + 100.0, + 100.0, + 100.0, + 77.69, + 91.55, + 81.3, + 97.78, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 83.88, + 79.78, + 99.77, + 100.0, + 73.67, + 86.06, + 51.42, + 23.9, + 39.47, + 48.01, + 99.19, + 74.84, + 50.11, + 69.1, + 48.48, + 100.0, + 78.59, + 63.2, + 65.06, + 80.44, + 68.42, + 49.05, + 64.41, + 93.4, + 86.56, + 43.34, + 59.0, + 37.05, + 61.25, + 71.74, + 86.49, + 94.16, + 87.11, + 34.87, + 42.24, + 60.81, + 68.98, + 31.75, + 37.3, + 54.72, + 66.26, + 37.51, + 43.54, + 43.65, + 71.55, + 74.82, + 64.47, + 52.29, + 82.94, + 35.43, + 35.45, + 93.94, + 39.35, + 34.21, + 39.53, + 42.61, + 82.64, + 47.28, + 45.25, + 51.94, + 58.85, + 96.66, + 53.48, + 54.6, + 93.44, + 52.6, + 34.63, + 81.07, + 44.52, + 48.26, + 83.75, + 58.82, + 40.6, + 80.55, + 34.96, + 26.19, + 95.21, + 70.5, + 64.78, + 80.79, + 61.52, + 48.88, + 45.62, + 48.73, + 44.61, + 57.31, + 65.13, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 80.41, + 29.77, + 27.9, + 43.21, + 60.35, + 59.71, + 60.38, + 87.58, + 75.31, + 52.06, + 50.79, + 55.09, + 90.52, + 76.37, + 68.27, + 72.99, + 53.84, + 53.79, + 59.95, + 48.08, + 51.66, + 44.5, + 51.07, + 51.26, + 62.33, + 88.94, + 65.01, + 80.72, + 51.1, + 58.36, + 84.28, + 81.76, + 64.8, + 74.37, + 37.37, + 41.79, + 33.73, + 64.27, + 83.09, + 79.82, + 42.44, + 42.33, + 67.13, + 54.93, + 88.9, + 70.43, + 60.68, + 84.43, + 74.56, + 60.56, + 54.53, + 34.36, + 97.54, + 99.73, + 78.83, + 100.0, + 98.26, + 61.1, + 75.8, + 93.13, + 74.08, + 99.38, + 98.65, + 42.96, + 51.4, + 48.16, + 42.75, + 76.84, + 100.0, + 100.0, + 94.25, + 92.18, + 84.73, + 68.08, + 74.51, + 84.3, + 98.03, + 98.38, + 84.59, + 88.25, + 100.0, + 87.73, + 71.63, + 100.0, + 99.36, + 97.12, + 48.96, + 53.21, + 55.19, + 86.2, + 79.11, + 51.82, + 44.03, + 46.02, + 52.53, + 80.8, + 98.13, + 99.25, + 89.49, + 96.38, + 100.0, + 98.58, + 88.1, + 66.99, + 99.07, + 87.85, + 68.05, + 97.85, + 96.79, + 100.0, + 100.0, + 67.06, + 84.48, + 76.45, + 100.0, + 100.0, + 100.0, + 100.0, + 96.72, + 69.62, + 73.5, + 60.97, + 68.44, + 95.76, + 97.73, + 99.87, + 87.93, + 88.25, + 67.23, + 64.35, + 65.99, + 93.6, + 86.73, + 67.86, + 89.71, + 48.83, + 73.91, + 68.3, + 52.57, + 52.55, + 69.11, + 55.25, + 72.08, + 99.58, + 66.81, + 64.08, + 93.24, + 100.0, + 100.0, + 99.93, + 96.91, + 75.58, + 69.44, + 58.57, + 84.84, + 99.27, + 74.35, + 37.28, + 42.16, + 77.5, + 64.5, + 41.11, + 30.84, + 36.59, + 33.36, + 30.05, + 53.82, + 29.8, + 41.03, + 59.39, + 40.12, + 35.32, + 40.77, + 44.21, + 36.68, + 19.46, + 23.51, + 62.54, + 77.38, + 81.91, + 56.53, + 48.33, + 47.36, + 74.88, + 79.27, + 68.71, + 52.6, + 61.68, + 65.95, + 65.27, + 73.26, + 61.52, + 23.95, + 22.83, + 51.31, + 67.56, + 54.87, + 47.15, + 61.19, + 94.49, + 60.73, + 66.48, + 63.57, + 27.67, + 63.28, + 99.73, + 50.42, + 91.07, + 82.19, + 97.77, + 62.51, + 44.81, + 58.81, + 60.56, + 68.68, + 91.04, + 47.91, + 65.3, + 43.75, + 28.07, + 30.88, + 36.22, + 35.04, + 41.83, + 51.02, + 60.15, + 29.59, + 30.03, + 34.52, + 34.27, + 33.43, + 37.29, + 34.82, + 35.05, + 73.56, + 77.09, + 46.78, + 46.7, + 31.82, + 59.89, + 88.45, + 78.91, + 80.82, + 46.82, + 91.06, + 100.0, + 100.0, + 100.0, + 100.0, + 98.36, + 63.43, + 40.06, + 47.44, + 71.8, + 49.67, + 67.62, + 60.15, + 35.02, + 23.64, + 46.14, + 47.88, + 59.21, + 58.99, + 52.62, + 48.18, + 54.39, + 48.56, + 49.29, + 56.89, + 52.79, + 26.43, + 69.31, + 62.57, + 100.0, + 100.0, + 100.0, + 98.77, + 98.52, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 20.55, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 84.25, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 92.37, + 100.0, + 79.17, + 42.4, + 79.17, + 54.02, + 58.41, + 42.41, + 80.74, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 49.44, + 83.88, + 79.77, + 91.01, + 55.33, + 34.59, + 71.52, + 73.05, + 87.7, + 74.94, + 58.78, + 79.26, + 100.0, + 62.76, + 35.88, + 31.37, + 38.79, + 89.29, + 100.0, + 100.0, + 100.0, + 99.32, + 93.48, + 90.79, + 89.54, + 80.07, + 66.31, + 74.17, + 75.41, + 60.93, + 99.47, + 100.0, + 95.35, + 92.35, + 96.43, + 99.99, + 87.47, + 83.3, + 62.65, + 72.8, + 54.8, + 97.87, + 63.39, + 70.54, + 100.0, + 97.36, + 100.0, + 100.0, + 100.0, + 100.0, + 97.71, + 99.97, + 99.38, + 100.0, + 96.79, + 91.04, + 89.12, + 94.09, + 79.08, + 98.67, + 77.39, + 65.59, + 99.22, + 100.0, + 85.39, + 85.74, + 97.92, + 100.0, + 87.59, + 33.58, + 34.75, + 72.26, + 89.59, + 92.29, + 30.84, + 35.63, + 94.0, + 100.0, + 100.0, + 94.65, + 49.37, + 77.07, + 40.25, + 36.45, + 37.47, + 50.26, + 82.83, + 90.97, + 97.45, + 43.32, + 89.37, + 67.23, + 80.93, + 27.35, + 84.77, + 95.24, + 79.95, + 61.81, + 93.67, + 88.88, + 55.76, + 41.9, + 41.71, + 75.7, + 84.96, + 82.01, + 29.04, + 30.22, + 38.59, + 49.43, + 55.23, + 43.5, + 35.06, + 31.45, + 64.66, + 46.22, + 52.92, + 44.15, + 55.97, + 44.58, + 43.87, + 41.92, + 56.34, + 29.53, + 49.6, + 34.72, + 46.81, + 41.79, + 36.17, + 37.3, + 38.3, + 47.74, + 66.99, + 35.91, + 21.97, + 28.75, + 33.58, + 51.64, + 57.17, + 82.43, + 51.9, + 31.13, + 49.78, + 78.61, + 40.26, + 76.26, + 83.45, + 89.06, + 28.22, + 95.7, + 46.46, + 47.89, + 50.96, + 64.69, + 81.36, + 17.43, + 43.79, + 72.34, + 33.77, + 36.53, + 27.34, + 25.98, + 67.38, + 39.72, + 27.94, + 22.83, + 41.21, + 64.88, + 46.71, + 33.34, + 13.12, + 18.88, + 25.64, + 32.73, + 24.11, + 15.92, + 20.85, + 22.73, + 18.34, + 17.77, + 17.96, + 17.77, + 20.63, + 94.06, + 85.77, + 71.81, + 44.75, + 79.05, + 50.28, + 41.48, + 34.61, + 18.74, + 15.21, + 16.99, + 25.89, + 42.27, + 43.59, + 55.41, + 59.79, + 69.04, + 49.7, + 28.72, + 39.8, + 30.82, + 77.98, + 30.21, + 24.2, + 20.36, + 71.97, + 24.73, + 20.32, + 30.58, + 82.36, + 49.23, + 19.14, + 22.25, + 23.59, + 33.29, + 26.78, + 19.17, + 30.27, + 54.32, + 17.72, + 32.93, + 32.88, + 23.82, + 29.66, + 61.28, + 44.93, + 50.54, + 59.02, + 34.54, + 69.25, + 36.5, + 92.11, + 77.37, + 91.35, + 33.95, + 25.93, + 27.89, + 84.89, + 38.72, + 36.48, + 70.19, + 47.93, + 37.62, + 35.3, + 72.86, + 96.07, + 86.29, + 76.74, + 89.09, + 78.31, + 98.93, + 27.28, + 74.11, + 21.8, + 22.9, + 48.92, + 60.35, + 45.47, + 31.48, + 35.33, + 46.26, + 44.32, + 22.02, + 26.55, + 39.04, + 42.26, + 44.49, + 44.92, + 59.25, + 75.69, + 84.03, + 34.35, + 37.49, + 53.49, + 83.46, + 100.0, + 100.0, + 96.53, + 36.24, + 40.15, + 35.77, + 28.75, + 28.7, + 49.98, + 35.56, + 14.06, + 15.36, + 26.67, + 88.51, + 69.98, + 35.33, + 76.11, + 55.52, + 26.26, + 20.35, + 23.29, + 57.39, + 49.42, + 17.92, + 15.89, + 68.31, + 56.59, + 33.26, + 26.41, + 38.43, + 69.22, + 41.92, + 31.23, + 52.9, + 36.37, + 34.44, + 40.89, + 83.72, + 66.04, + 37.62, + 73.4, + 48.46, + 66.82, + 29.71, + 24.2, + 79.27, + 95.98, + 94.07, + 87.7, + 48.92, + 43.13, + 95.08, + 83.4, + 29.55, + 33.94, + 35.13, + 32.58, + 47.87, + 26.96, + 26.85, + 29.28, + 63.22, + 99.62, + 100.0, + 63.4, + 28.84, + 43.56, + 67.72, + 95.18, + 57.47, + 80.24, + 70.04, + 76.77, + 91.16, + 40.49, + 28.11, + 80.26, + 39.51, + 84.87, + 83.29, + 72.18, + 53.8, + 84.04, + 36.76, + 48.36, + 27.74, + 43.93, + 69.21, + 65.04, + 76.9, + 69.37, + 42.97, + 41.84, + 41.81, + 25.94, + 44.21, + 82.82, + 26.96, + 34.74, + 59.11, + 18.55, + 28.91, + 50.03, + 26.03, + 19.92, + 34.06, + 65.41, + 50.05, + 35.06, + 18.22, + 48.47, + 100.0, + 76.59, + 90.43, + 34.37, + 27.33, + 20.09, + 29.78, + 35.8, + 32.51, + 37.47, + 32.33, + 69.24, + 100.0, + 52.26, + 28.22, + 24.69, + 27.46, + 56.91, + 47.46, + 43.4, + 13.76, + 21.78, + 29.42, + 18.74, + 36.57, + 38.73, + 54.77, + 40.95, + 42.81, + 66.42, + 77.08, + 55.37, + 37.62, + 33.54, + 62.72, + 53.56, + 83.38, + 74.12, + 95.64, + 40.31, + 66.84, + 100.0, + 71.82, + 71.35, + 80.98, + 40.78, + 28.51, + 35.15, + 86.76, + 59.89, + 36.41, + 26.09, + 25.77, + 41.47, + 26.95, + 33.5, + 35.7, + 22.93, + 90.23, + 63.9, + 32.99, + 40.28, + 83.18, + 90.03, + 81.13, + 98.62, + 56.75, + 92.15, + 61.42, + 71.39, + 99.56, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.94, + 78.57, + 100.0, + 83.31, + 83.66, + 98.32, + 78.46, + 49.29, + 29.64, + 43.55, + 34.98, + 81.18, + 73.53, + 32.24, + 26.75, + 32.67, + 30.66, + 30.16, + 54.35, + 61.92, + 95.26, + 67.91, + 19.21, + 19.76, + 36.76, + 29.6, + 21.67, + 46.36, + 93.46, + 79.61, + 31.54, + 31.35, + 38.69, + 31.52, + 31.9, + 37.48, + 95.11, + 92.56, + 36.34, + 83.47, + 51.29, + 42.45, + 50.07, + 32.97, + 22.84, + 92.61, + 80.92, + 38.07, + 37.17, + 47.69, + 35.97, + 32.85, + 34.09, + 36.51, + 99.06, + 48.48, + 57.64, + 44.02, + 29.49, + 63.3, + 62.61, + 28.21, + 69.15, + 82.54, + 100.0, + 99.62, + 90.82, + 98.58, + 57.03, + 86.39, + 94.9, + 39.67, + 49.85, + 61.37, + 68.41, + 59.26, + 81.14, + 100.0, + 95.38, + 67.0, + 87.82, + 100.0, + 100.0, + 96.35, + 91.45, + 90.05, + 90.17, + 92.98, + 100.0, + 100.0, + 88.09, + 53.28, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 93.89, + 91.76, + 87.17, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 96.62, + 100.0, + 88.6, + 97.36, + 57.69, + 59.19, + 96.21, + 99.95, + 73.03, + 86.43, + 99.63, + 96.7, + 96.2, + 100.0, + 100.0, + 100.0, + 80.38, + 97.02, + 96.98, + 57.87, + 44.95, + 79.26, + 67.57, + 62.04, + 85.74, + 67.12, + 58.84, + 100.0, + 68.74, + 46.71, + 100.0, + 99.02, + 100.0, + 63.49, + 46.34, + 61.13, + 93.08, + 100.0, + 100.0, + 100.0, + 72.48, + 71.54, + 77.48, + 90.01, + 79.94, + 94.56, + 53.26, + 54.66, + 65.35, + 74.94, + 100.0, + 100.0, + 62.32, + 64.24, + 52.95, + 44.5, + 72.91, + 91.87, + 81.57, + 52.7, + 70.18, + 100.0, + 87.33, + 56.28, + 57.03, + 82.13, + 100.0, + 71.54, + 86.79, + 99.45, + 76.21, + 98.73, + 95.94, + 66.2, + 75.92, + 100.0, + 67.86, + 94.01, + 90.13, + 100.0, + 87.67, + 66.22, + 92.77, + 57.93, + 65.18, + 59.62, + 44.97, + 33.92, + 34.27, + 34.39, + 85.5, + 100.0, + 100.0, + 100.0, + 55.08, + 67.91, + 100.0, + 98.97, + 37.04, + 44.47, + 87.03, + 100.0, + 100.0, + 50.16, + 34.53, + 18.28, + 23.09, + 70.99, + 42.68, + 22.03, + 25.72, + 41.07, + 46.28, + 25.81, + 22.02, + 20.4, + 57.89, + 34.8, + 48.4, + 22.43, + 39.02, + 39.67, + 75.99, + 38.29, + 33.32, + 41.98, + 37.68, + 65.24, + 98.82, + 63.52, + 68.75, + 89.82, + 95.19, + 100.0, + 57.04, + 46.05, + 40.69, + 36.39, + 41.08, + 40.65, + 77.7, + 100.0, + 90.92, + 59.43, + 70.66, + 67.5, + 71.63, + 47.87, + 58.44, + 72.12, + 82.28, + 37.59, + 30.87, + 40.32, + 96.04, + 100.0, + 78.45, + 33.86, + 36.46, + 52.26, + 99.26, + 82.49, + 65.33, + 58.41, + 47.67, + 45.03, + 92.35, + 100.0, + 55.12, + 30.9, + 33.58, + 66.5, + 85.49, + 56.78, + 77.87, + 66.99, + 91.04, + 32.66, + 41.07, + 38.76, + 34.33, + 98.84, + 46.01, + 85.0, + 46.03, + 35.52, + 27.68, + 21.61, + 61.2, + 35.06, + 60.88, + 97.74, + 58.84, + 23.57, + 22.0, + 20.28, + 27.68, + 26.65, + 32.14, + 27.0, + 26.8, + 29.79, + 29.92, + 36.37, + 58.87, + 72.63, + 28.52, + 37.38, + 33.63, + 46.04, + 38.28, + 33.38, + 71.65, + 76.36, + 39.14, + 56.18, + 31.24, + 39.88, + 83.46, + 35.28, + 30.66, + 41.33, + 28.48, + 42.1, + 34.66, + 77.98, + 42.35, + 48.07, + 51.82, + 27.93, + 30.04, + 31.89, + 28.42, + 48.52, + 42.67, + 53.33, + 50.75, + 18.74, + 25.12, + 30.79, + 18.94, + 20.04, + 21.33, + 49.33, + 25.55, + 19.03, + 31.84, + 46.92, + 31.61, + 25.41, + 38.98, + 32.39, + 73.33, + 26.02, + 96.22, + 67.16, + 62.13, + 81.08, + 83.77, + 45.78, + 38.14, + 42.46, + 99.05, + 86.9, + 55.03, + 22.1, + 23.75, + 21.66, + 26.24, + 23.04, + 22.22, + 23.12, + 23.11, + 25.87, + 27.31, + 40.84, + 30.39, + 28.08, + 20.22, + 20.7, + 36.11, + 23.73, + 38.99, + 72.1, + 31.34, + 36.15, + 37.03, + 35.98, + 32.61, + 33.08, + 59.92, + 51.24, + 42.13, + 30.98, + 35.59, + 44.69, + 43.44, + 33.13, + 30.68, + 31.68, + 29.38, + 35.63, + 27.35, + 24.5, + 43.92, + 37.4, + 32.24, + 37.57, + 87.93, + 80.0, + 49.59, + 48.93, + 37.04, + 38.12, + 45.06, + 39.07, + 57.0, + 35.42, + 36.08, + 38.77, + 46.28, + 96.85, + 39.2, + 61.45, + 40.76, + 50.32, + 41.98, + 40.05, + 45.69, + 41.92, + 40.23, + 33.23, + 32.97, + 47.04, + 47.74, + 44.73, + 82.69, + 100.0, + 100.0, + 90.43, + 64.96, + 94.45, + 99.78, + 80.32, + 73.72, + 65.67, + 85.63, + 59.35, + 62.17, + 94.81, + 43.15, + 34.39, + 38.8, + 29.71, + 44.19, + 75.37, + 58.44, + 45.94, + 46.17, + 84.14, + 65.84, + 78.13, + 52.92, + 57.11, + 85.55, + 56.56, + 95.31, + 69.62, + 100.0, + 100.0, + 91.26, + 97.42, + 100.0, + 100.0, + 100.0, + 93.96, + 98.5, + 100.0, + 95.45, + 100.0, + 100.0, + 75.95, + 62.19, + 82.64, + 57.49, + 28.41, + 78.61, + 33.58, + 89.33, + 76.65, + 55.17, + 44.74, + 54.17, + 33.84, + 53.53, + 62.4, + 22.65, + 42.64, + 94.31, + 73.03, + 47.14, + 78.24, + 94.25, + 89.48, + 69.34, + 60.16, + 74.58, + 34.1, + 43.63, + 33.94, + 52.07, + 22.32, + 43.82, + 100.0, + 37.52, + 43.88, + 99.98, + 54.19, + 82.58, + 24.88, + 85.43, + 80.1, + 72.35, + 40.28, + 70.37, + 59.47, + 49.94, + 100.0, + 81.29, + 80.77, + 56.63, + 83.26, + 51.63, + 42.72, + 67.3, + 91.87, + 43.24, + 35.55, + 96.21, + 100.0, + 86.78, + 58.57, + 91.36, + 59.28, + 37.6, + 82.86, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 93.19, + 59.66, + 46.69, + 43.49, + 32.74, + 79.25, + 53.83, + 66.59, + 33.2, + 98.14, + 52.35, + 68.14, + 73.81, + 70.2, + 98.29, + 65.97, + 74.66, + 63.57, + 64.05, + 25.57, + 22.02, + 23.56, + 24.22, + 43.77, + 71.86, + 48.77, + 28.59, + 83.01, + 95.27, + 40.41, + 37.19, + 96.43, + 79.03, + 89.63, + 50.42, + 70.86, + 31.46, + 89.13, + 93.0, + 65.78, + 34.2, + 43.08, + 56.24, + 95.97, + 69.2, + 95.71, + 71.79, + 28.51, + 97.73, + 52.27, + 84.08, + 50.95, + 43.6, + 90.57, + 82.52, + 99.82, + 74.27, + 67.89, + 86.5, + 42.55, + 42.92, + 40.05, + 66.73, + 80.51, + 75.03, + 34.58, + 65.96, + 63.84, + 64.69, + 85.55, + 47.34, + 49.13, + 67.79, + 59.68, + 88.8, + 65.02, + 25.74, + 34.35, + 97.73, + 51.08, + 37.78, + 38.17, + 69.75, + 82.54, + 67.99, + 68.39, + 64.43, + 56.46, + 49.78, + 90.19, + 76.38, + 63.5, + 87.08, + 57.75, + 84.74, + 73.59, + 33.26, + 60.5, + 42.03, + 36.24, + 71.78, + 90.66, + 73.66, + 82.79, + 100.0, + 96.72, + 61.94, + 84.71, + 67.61, + 55.65, + 55.23, + 40.93, + 60.08, + 69.8, + 24.74, + 24.19, + 76.41, + 44.13, + 44.06, + 62.74, + 84.02, + 71.35, + 46.8, + 94.66, + 61.38, + 42.41, + 59.67, + 74.23, + 50.61, + 41.17, + 51.09, + 74.81, + 66.23, + 46.87, + 33.82, + 67.1, + 64.42, + 55.68, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.0, + 92.68, + 75.82, + 43.38, + 59.8, + 84.68, + 80.97, + 85.32, + 28.19, + 40.46, + 65.74, + 54.25, + 84.2, + 52.59, + 36.5, + 44.34, + 44.11, + 44.08, + 42.1, + 78.32, + 37.91, + 38.88, + 70.2, + 45.62, + 39.68, + 64.13, + 43.24, + 44.12, + 38.6, + 37.25, + 40.28, + 36.45, + 41.49, + 91.66, + 37.97, + 27.63, + 48.67, + 69.47, + 79.17, + 47.01, + 34.55, + 51.6, + 80.27, + 47.7, + 40.7, + 41.5, + 53.64, + 72.04, + 80.72, + 51.41, + 47.69, + 58.23, + 48.16, + 57.67, + 91.77, + 100.0, + 63.56, + 51.51, + 70.63, + 57.5, + 93.89, + 47.4, + 51.36, + 72.62, + 77.96, + 69.1, + 46.86, + 89.59, + 80.56, + 48.47, + 83.51, + 81.86, + 50.67, + 57.58, + 51.48, + 43.46, + 31.61, + 76.37, + 52.22, + 51.73, + 43.24, + 51.29, + 38.43, + 60.61, + 59.04, + 29.31, + 26.56, + 24.01, + 54.61, + 57.38, + 36.84, + 30.09, + 77.32, + 47.42, + 52.81, + 42.06, + 72.66, + 41.66, + 37.29, + 38.08, + 45.57, + 45.62, + 48.73, + 46.64, + 89.06, + 90.76, + 44.96, + 40.57, + 34.61, + 55.08, + 47.21, + 49.7, + 46.88, + 60.02, + 58.24, + 61.03, + 41.85, + 44.63, + 31.2, + 39.75, + 46.07, + 45.69, + 26.77, + 66.53, + 43.46, + 61.91, + 75.08, + 51.63, + 48.54, + 33.71, + 26.03, + 25.29, + 53.07, + 57.87, + 48.13, + 39.83, + 37.07, + 25.81, + 43.35, + 25.47, + 35.06, + 23.89, + 43.49, + 31.02, + 52.09, + 21.18, + 63.73, + 40.63, + 47.26, + 53.12, + 15.08, + 51.78, + 37.28, + 39.24, + 28.01, + 36.76, + 35.62, + 41.89, + 45.44, + 64.27, + 52.58, + 24.87, + 72.03, + 44.6, + 22.02, + 48.78, + 31.6, + 61.07, + 46.12, + 49.03, + 67.0, + 57.09, + 51.29, + 45.2, + 66.84, + 42.73, + 65.66, + 26.26, + 78.49, + 32.31, + 75.41, + 17.47, + 90.78, + 52.28, + 75.52, + 37.35, + 79.42, + 23.9, + 69.88, + 29.84, + 78.92, + 41.38, + 79.16, + 43.75, + 66.9, + 38.83, + 70.66, + 40.32, + 69.84, + 40.07, + 79.2, + 48.68, + 79.37, + 41.69, + 90.47, + 31.78, + 82.18, + 35.78, + 82.68, + 55.36, + 81.24, + 49.51, + 76.4, + 81.88, + 45.7, + 88.16, + 79.8, + 62.5, + 45.62, + 87.21, + 39.88, + 74.28, + 32.66, + 19.14, + 83.6, + 79.08, + 86.08, + 61.72, + 78.43, + 31.45, + 70.36, + 70.29, + 76.93, + 93.29, + 96.55, + 41.82, + 49.11, + 96.45, + 93.95, + 68.4, + 73.57, + 43.8, + 43.25, + 51.42, + 66.87, + 98.04, + 57.12, + 73.85, + 59.16, + 80.74, + 35.27, + 92.43, + 86.83, + 85.3, + 18.98, + 32.83, + 69.95, + 56.35, + 87.9, + 66.59, + 35.24, + 44.18, + 71.47, + 33.8, + 73.0, + 52.56, + 67.42, + 28.91, + 97.09, + 52.73, + 92.29, + 34.47, + 69.59, + 62.25, + 59.0, + 45.54, + 87.84, + 61.21, + 88.58, + 67.79, + 0, + 86.57, + 75.39, + 94.76, + 93.91, + 87.97, + 100.0, + 96.91, + 97.34, + 100.0, + 100.0, + 97.97, + 100.0, + 100.0, + 100.0, + 100.0, + 51.27, + 57.65, + 90.17, + 50.06, + 60.64, + 59.82, + 78.5, + 100.0, + 62.6, + 97.39, + 84.74, + 53.61, + 61.72, + 77.26, + 81.55, + 77.01, + 20.8, + 51.81, + 70.99, + 85.6, + 78.08, + 61.0, + 93.77, + 99.78, + 65.15, + 80.17, + 50.29, + 29.73, + 100.0, + 88.51, + 89.4, + 72.99, + 33.8, + 46.98, + 81.5, + 95.01, + 100.0, + 95.29, + 23.06, + 91.16, + 100.0, + 93.71, + 91.75, + 33.5, + 20.75, + 93.66, + 45.82, + 87.83, + 78.04, + 13.41, + 85.01, + 76.38, + 99.24, + 78.3, + 35.61, + 58.36, + 66.79, + 75.33, + 86.93, + 100.0, + 77.25, + 99.48, + 82.04, + 63.67, + 100.0, + 99.6, + 24.97, + 33.06, + 100.0, + 100.0, + 97.43, + 63.85, + 14.33, + 92.89, + 99.04, + 68.83, + 83.27, + 83.4, + 75.79, + 73.04, + 63.25, + 74.07, + 99.4, + 94.88, + 92.47, + 99.75, + 87.9, + 100.0, + 74.07, + 100.0, + 100.0, + 96.57, + 99.6, + 97.75, + 74.0, + 69.79, + 87.51, + 98.33, + 67.35, + 65.79, + 68.63, + 37.51, + 84.44, + 100.0, + 100.0, + 94.35, + 94.83, + 98.4, + 90.28, + 80.38, + 94.43, + 88.41, + 91.74, + 88.95, + 98.75, + 83.22, + 89.58, + 80.39, + 96.53, + 91.52, + 46.13, + 65.28, + 40.87, + 87.93, + 52.8, + 40.68, + 69.89, + 100.0, + 60.5, + 49.51, + 92.03, + 74.41, + 99.93, + 99.83, + 39.67, + 82.91, + 56.32, + 93.98, + 78.55, + 81.67, + 52.76, + 52.92, + 64.8, + 86.45, + 95.29, + 96.69, + 83.78, + 47.96, + 82.04, + 57.19, + 50.14, + 18.86, + 13.51, + 17.51, + 30.62, + 34.39, + 38.42, + 16.5, + 0, + 13.62, + 61.4, + 62.57, + 74.33, + 17.55, + 0, + 17.51, + 57.89, + 21.35, + 55.42, + 88.81, + 88.77, + 83.24, + 100.0, + 96.46, + 83.38, + 100.0, + 92.78, + 82.72, + 88.62, + 77.17, + 99.49, + 97.28, + 76.75, + 77.84, + 90.79, + 94.99, + 100.0, + 95.59, + 85.75, + 38.49, + 0, + 44.95, + 31.21, + 26.89, + 0, + 0, + 18.46, + 29.71, + 96.08, + 100.0, + 82.26, + 83.73, + 42.96, + 15.63, + 67.76, + 77.46, + 91.96, + 96.73, + 89.1, + 21.01, + 0, + 14.45, + 36.22, + 100.0, + 98.31, + 57.35, + 92.77, + 70.59, + 18.05, + 29.79, + 35.98, + 69.86, + 89.31, + 79.83, + 44.48, + 18.36, + 0, + 0, + 23.46, + 56.0, + 71.03, + 100.0, + 87.51, + 100.0, + 91.27, + 96.82, + 83.36, + 88.2, + 69.53, + 31.64, + 24.85, + 21.28, + 39.41, + 63.03, + 95.54, + 39.44, + 25.49, + 20.72, + 46.04, + 21.64, + 29.21, + 33.22, + 36.31, + 68.88, + 97.03, + 89.6, + 78.02, + 57.83, + 67.05, + 21.77, + 40.19, + 92.6, + 95.89, + 97.22, + 88.76, + 100.0, + 100.0, + 100.0, + 89.48, + 100.0, + 91.98, + 95.1, + 97.94, + 100.0, + 82.94, + 78.35, + 83.76, + 98.73, + 97.14, + 63.46, + 84.92, + 81.44, + 50.45, + 49.6, + 68.58, + 21.33, + 40.39, + 76.33, + 89.59, + 81.72, + 94.68, + 76.54, + 82.05, + 93.3, + 77.53, + 56.02, + 52.9, + 58.5, + 76.88, + 84.82, + 60.14, + 82.39, + 75.31, + 71.94, + 65.76, + 86.75, + 80.17, + 80.96, + 46.67, + 88.02, + 54.21, + 77.72, + 74.95, + 63.36, + 63.28, + 86.99, + 57.16, + 64.8, + 48.55, + 44.9, + 43.91, + 47.32, + 66.31, + 79.0, + 33.75, + 52.32, + 100.0, + 77.78, + 91.59, + 72.05, + 41.41, + 96.67, + 81.62, + 90.61, + 92.29, + 81.18, + 99.21, + 79.8, + 80.43, + 91.1, + 100.0, + 61.25, + 57.29, + 42.14, + 46.02, + 68.84, + 30.9, + 65.73, + 99.3, + 100.0, + 89.53, + 77.44, + 94.87, + 82.02, + 94.27, + 56.31, + 75.73, + 33.44, + 86.17, + 72.77, + 33.61, + 63.67, + 78.79, + 100.0, + 59.48, + 90.33, + 47.6, + 89.11, + 70.17, + 76.65, + 43.24, + 67.97, + 92.04, + 99.99, + 100.0, + 59.15, + 76.4, + 83.3, + 76.87, + 99.76, + 83.77, + 94.23, + 85.74, + 96.47, + 45.14, + 24.99, + 39.04, + 85.83, + 92.34, + 71.86, + 23.02, + 45.59, + 87.65, + 37.08, + 83.54, + 83.39, + 81.85, + 86.63, + 62.77, + 70.3, + 91.89, + 64.19, + 88.78, + 95.88, + 95.64, + 62.83, + 56.82, + 95.19, + 48.95, + 94.79, + 50.33, + 52.43, + 47.56, + 75.32, + 78.63, + 26.11, + 26.99, + 28.23, + 50.98, + 30.08, + 46.28, + 22.24, + 31.74, + 67.89, + 87.08, + 25.25, + 33.57, + 34.6, + 52.13, + 68.38, + 28.13, + 21.7, + 83.56, + 79.26, + 45.31, + 96.51, + 67.06, + 50.72, + 81.95, + 48.88, + 30.1, + 24.24, + 33.75, + 69.62, + 66.1, + 76.71, + 67.9, + 52.81, + 16.05, + 71.08, + 72.67, + 45.88, + 45.16, + 48.76, + 93.55, + 68.21, + 61.07, + 98.29, + 97.41, + 69.75, + 66.62, + 74.99, + 88.79, + 72.19, + 72.63, + 28.68, + 21.6, + 28.77, + 93.13, + 99.61, + 73.68, + 71.17, + 98.54, + 40.97, + 96.98, + 77.87, + 74.18, + 79.0, + 95.41, + 99.07, + 67.33, + 24.01, + 82.04, + 32.78, + 0, + 0, + 41.14, + 62.91, + 96.46, + 73.94, + 71.45, + 16.74, + 36.06, + 97.67, + 90.51, + 61.17, + 79.87, + 77.83, + 76.96, + 52.2, + 100.0, + 95.37, + 94.63, + 63.06, + 66.64, + 50.5, + 81.15, + 95.16, + 83.89, + 81.21, + 89.78, + 92.36, + 88.8, + 58.76, + 82.74, + 100.0, + 86.21, + 49.12, + 63.11, + 65.58, + 84.13, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.07, + 78.57, + 99.97, + 91.38, + 68.57, + 99.94, + 100.0, + 100.0, + 100.0, + 99.98, + 90.72, + 69.13, + 98.93, + 95.41, + 75.55, + 42.46, + 80.31, + 100.0, + 100.0, + 91.23, + 93.07, + 47.39, + 92.04, + 100.0, + 98.05, + 93.35, + 69.89, + 53.29, + 53.16, + 87.27, + 74.51, + 80.48, + 55.43, + 82.07, + 73.9, + 69.64, + 74.36, + 99.3, + 78.39, + 71.13, + 91.19, + 98.47, + 82.8, + 72.89, + 93.8, + 86.99, + 57.44, + 56.87, + 100.0, + 62.53, + 34.95, + 44.72, + 28.59, + 97.02, + 64.39, + 74.64, + 41.63, + 74.3, + 75.9, + 85.79, + 63.54, + 67.62, + 87.56, + 93.43, + 90.76, + 66.6, + 62.62, + 91.4, + 99.89, + 89.73, + 82.9, + 41.58, + 81.68, + 87.89, + 55.79, + 63.63, + 66.77, + 48.47, + 54.68, + 54.4, + 46.63, + 30.04, + 23.49, + 91.03, + 65.86, + 63.02, + 46.5, + 45.48, + 58.71, + 70.29, + 96.38, + 74.3, + 61.39, + 32.03, + 41.61, + 34.98, + 59.5, + 100.0, + 52.98, + 33.24, + 46.67, + 49.16, + 66.36, + 52.19, + 63.19, + 23.85, + 20.67, + 32.05, + 80.22, + 77.13, + 57.02, + 50.9, + 80.26, + 96.77, + 73.39, + 74.19, + 86.72, + 53.68, + 51.16, + 86.56, + 65.72, + 57.56, + 46.48, + 25.96, + 37.97, + 66.74, + 96.31, + 100.0, + 61.34, + 49.21, + 34.23, + 13.62, + 29.63, + 44.62, + 41.58, + 29.06, + 67.19, + 33.27, + 33.61, + 31.06, + 23.8, + 34.17, + 61.79, + 18.28, + 91.45, + 32.82, + 31.49, + 28.41, + 68.52, + 13.46, + 96.07, + 72.49, + 67.25, + 62.96, + 94.25, + 61.86, + 95.38, + 35.95, + 93.82, + 93.28, + 46.42, + 62.38, + 47.86, + 70.79, + 91.69, + 86.82, + 99.96, + 100.0, + 67.39, + 44.22, + 52.21, + 22.97, + 72.82, + 89.83, + 54.8, + 51.0, + 24.07, + 21.26, + 50.28, + 89.7, + 76.92, + 49.55, + 53.78, + 70.09, + 84.69, + 62.78, + 37.65, + 47.37, + 91.09, + 45.17, + 70.78, + 68.8, + 26.34, + 99.43, + 76.37, + 27.67, + 100.0, + 70.69, + 100.0, + 68.6, + 58.01, + 33.21, + 89.77, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 96.75, + 94.87, + 99.54, + 86.62, + 39.18, + 54.81, + 69.86, + 77.23, + 57.61, + 69.7, + 100.0, + 99.8, + 54.55, + 100.0, + 95.44, + 54.68, + 100.0, + 78.92, + 80.92, + 56.63, + 100.0, + 98.71, + 94.3, + 78.83, + 70.58, + 72.48, + 78.15, + 47.64, + 52.86, + 83.2, + 92.44, + 92.77, + 81.57, + 100.0, + 100.0, + 100.0, + 100.0, + 66.88, + 25.85, + 23.5, + 48.74, + 63.47, + 34.94, + 64.91, + 57.29, + 100.0, + 59.25, + 62.88, + 83.39, + 29.12, + 87.95, + 37.84, + 98.58, + 28.39, + 67.48, + 46.03, + 80.84, + 48.34, + 70.75, + 60.91, + 79.83, + 34.62, + 87.35, + 32.05, + 84.15, + 58.65, + 54.85, + 74.62, + 28.95, + 73.76, + 49.56, + 79.29, + 40.35, + 76.99, + 44.08, + 76.81, + 58.52, + 62.33, + 74.17, + 71.38, + 74.38, + 86.73, + 52.6, + 78.58, + 89.38, + 47.12, + 79.44, + 65.47, + 64.62, + 76.6, + 26.2, + 81.97, + 47.55, + 73.17, + 26.74, + 92.47, + 48.9, + 85.68, + 33.05, + 100.0, + 87.85, + 98.03, + 44.77, + 71.75, + 64.21, + 50.31, + 47.3, + 100.0, + 87.03, + 66.45, + 77.22, + 69.16, + 56.71, + 84.43, + 41.18, + 61.59, + 79.66, + 34.49, + 83.95, + 41.32, + 97.79, + 18.13, + 99.87, + 53.17, + 73.23, + 44.08, + 76.5, + 47.79, + 44.97, + 70.42, + 100.0, + 95.58, + 77.97, + 74.49, + 79.7, + 67.42, + 74.04, + 65.49, + 89.95, + 87.38, + 51.2, + 76.88, + 47.18, + 46.04, + 94.68, + 34.97, + 51.29, + 93.25, + 36.47, + 96.48, + 67.76, + 100.0, + 69.35, + 27.38, + 87.84, + 91.59, + 79.29, + 40.81, + 42.06, + 30.9, + 100.0, + 52.71, + 87.69, + 34.69, + 80.38, + 36.59, + 87.94, + 26.23, + 69.64, + 42.29, + 72.84, + 52.59, + 79.66, + 34.33, + 67.12, + 53.08, + 89.47, + 30.98, + 87.06, + 52.29, + 85.17, + 58.44, + 94.4, + 49.69, + 100.0, + 82.03, + 73.61, + 61.73, + 100.0, + 62.57, + 98.97, + 85.46, + 66.13, + 77.03, + 65.17, + 55.82, + 99.44, + 44.66, + 99.28, + 39.98, + 81.65, + 66.53, + 63.21, + 100.0, + 98.36, + 89.73, + 79.95, + 56.26, + 99.04, + 66.73, + 57.21, + 95.8, + 44.2, + 82.48, + 50.78, + 63.09, + 100.0, + 100.0, + 94.06, + 81.99, + 84.03, + 48.79, + 92.37, + 70.52, + 84.08, + 33.77, + 84.76, + 46.65, + 77.36, + 30.79, + 100.0, + 95.26, + 81.74, + 35.99, + 73.88, + 43.98, + 72.45, + 59.56, + 61.63, + 71.77, + 41.41, + 61.34, + 77.5, + 79.11, + 62.28, + 73.16, + 71.6, + 40.59, + 73.43, + 81.12, + 33.78, + 86.27, + 35.0, + 92.36, + 41.0, + 98.53, + 49.93, + 57.43, + 85.2, + 44.82, + 76.32, + 94.06, + 58.13, + 86.47, + 100.0, + 90.37, + 63.64, + 100.0, + 100.0, + 51.35, + 78.53, + 45.93, + 68.28, + 80.98, + 33.62, + 64.64, + 81.88, + 98.14, + 43.38, + 46.22, + 62.63, + 100.0, + 49.57, + 44.45, + 75.43, + 54.52, + 86.98, + 19.38, + 98.83, + 91.26, + 98.52, + 23.25, + 94.33, + 21.8, + 89.51, + 30.59, + 94.32, + 33.4, + 35.17, + 99.98, + 82.75, + 75.98, + 55.91, + 86.53, + 80.61, + 49.52, + 68.12, + 60.19, + 62.31, + 66.24, + 78.25, + 64.32, + 70.38, + 73.62, + 74.77, + 22.36, + 64.59, + 100.0, + 94.54, + 97.43, + 73.25, + 70.95, + 100.0, + 99.97, + 39.33, + 97.47, + 100.0, + 100.0, + 100.0, + 66.75, + 80.02, + 100.0, + 62.55, + 95.06, + 100.0, + 84.82, + 55.68, + 100.0, + 60.65, + 73.49, + 66.18, + 53.67, + 74.49, + 28.15, + 100.0, + 100.0, + 58.89, + 100.0, + 70.1, + 100.0, + 40.96, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 95.0, + 92.07, + 94.44, + 100.0, + 70.34, + 100.0, + 56.73, + 92.79, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.27, + 98.31, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 83.62, + 92.89, + 95.05, + 34.29, + 77.12, + 89.41, + 57.43, + 86.94, + 93.44, + 34.53, + 69.6, + 93.78, + 84.08, + 60.63, + 63.21, + 58.42, + 26.16, + 98.71, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 70.8, + 97.12, + 98.62, + 74.97, + 82.67, + 26.5, + 88.14, + 61.98, + 25.46, + 25.61, + 94.68, + 78.23, + 39.73, + 96.64, + 33.19, + 35.94, + 27.16, + 99.74, + 92.07, + 79.81, + 55.6, + 100.0, + 55.4, + 73.75, + 25.38, + 25.63, + 86.4, + 83.21, + 28.38, + 91.07, + 29.15, + 16.35, + 18.03, + 17.97, + 35.8, + 67.03, + 100.0, + 68.64, + 63.8, + 63.75, + 45.03, + 38.22, + 19.18, + 17.74, + 14.61, + 35.58, + 87.12, + 94.25, + 99.49, + 85.1, + 25.91, + 48.04, + 84.14, + 22.42, + 20.26, + 20.37, + 23.2, + 24.06, + 30.37, + 72.83, + 98.97, + 52.39, + 55.01, + 59.48, + 14.17, + 16.86, + 63.97, + 38.61, + 92.44, + 100.0, + 87.74, + 80.74, + 53.79, + 32.11, + 65.1, + 58.28, + 43.96, + 36.96, + 71.26, + 94.07, + 70.64, + 46.01, + 100.0, + 83.12, + 41.7, + 98.65, + 88.6, + 87.55, + 81.48, + 58.66, + 29.78, + 83.53, + 97.49, + 79.16, + 56.96, + 43.83, + 21.1, + 59.53, + 98.47, + 83.78, + 47.57, + 40.95, + 97.34, + 83.55, + 40.02, + 48.28, + 68.66, + 17.71, + 13.88, + 44.52, + 83.41, + 79.18, + 47.74, + 25.13, + 58.61, + 15.51, + 17.1, + 73.72, + 58.63, + 54.91, + 75.31, + 14.9, + 41.83, + 66.2, + 64.99, + 23.75, + 29.13, + 36.44, + 98.19, + 90.78, + 56.21, + 35.97, + 35.44, + 66.96, + 19.54, + 20.36, + 18.88, + 21.49, + 21.71, + 23.28, + 20.51, + 23.26, + 30.51, + 87.05, + 62.67, + 37.42, + 37.49, + 23.3, + 14.26, + 24.58, + 54.65, + 20.5, + 35.48, + 96.13, + 43.92, + 80.54, + 97.92, + 98.4, + 50.83, + 28.82, + 15.72, + 60.82, + 50.5, + 43.22, + 39.59, + 25.39, + 56.72, + 32.27, + 22.04, + 29.95, + 76.41, + 59.53, + 40.84, + 21.85, + 49.51, + 99.67, + 78.45, + 66.13, + 82.63, + 63.39, + 47.05, + 81.1, + 48.06, + 37.42, + 75.66, + 35.27, + 26.93, + 25.2, + 21.86, + 65.31, + 33.75, + 21.91, + 96.93, + 100.0, + 96.1, + 83.58, + 86.74, + 44.64, + 47.43, + 76.96, + 38.28, + 19.58, + 60.06, + 100.0, + 93.38, + 92.29, + 71.27, + 48.59, + 41.65, + 39.7, + 94.97, + 54.83, + 42.0, + 27.25, + 98.72, + 64.97, + 100.0, + 91.89, + 62.57, + 21.68, + 47.68, + 84.7, + 85.88, + 71.92, + 96.99, + 36.31, + 0, + 22.8, + 88.48, + 86.74, + 70.48, + 97.95, + 99.01, + 30.53, + 28.66, + 89.88, + 90.46, + 31.38, + 27.46, + 37.62, + 76.63, + 40.79, + 93.33, + 64.7, + 37.16, + 61.59, + 96.59, + 65.8, + 75.74, + 85.03, + 85.3, + 18.84, + 36.64, + 100.0, + 95.45, + 63.41, + 86.24, + 27.58, + 48.72, + 96.31, + 45.84, + 88.62, + 86.49, + 49.67, + 60.48, + 64.37, + 70.4, + 87.18, + 33.99, + 14.61, + 15.87, + 97.21, + 89.53, + 60.58, + 88.1, + 97.38, + 28.14, + 34.74, + 92.91, + 41.78, + 36.75, + 67.01, + 49.32, + 59.09, + 29.23, + 96.79, + 85.5, + 39.06, + 78.9, + 19.0, + 98.12, + 98.53, + 39.98, + 74.67, + 100.0, + 100.0, + 99.74, + 100.0, + 100.0, + 96.63, + 100.0, + 100.0, + 100.0, + 100.0, + 96.92, + 99.59, + 100.0, + 100.0, + 100.0, + 99.82, + 100.0, + 100.0, + 100.0, + 100.0, + 99.44, + 100.0, + 100.0, + 100.0, + 99.38, + 78.93, + 47.07, + 47.38, + 100.0, + 100.0, + 67.39, + 43.61, + 25.64, + 99.79, + 67.23, + 75.6, + 93.04, + 75.15, + 81.03, + 29.65, + 51.08, + 93.13, + 69.79, + 29.38, + 20.98, + 21.8, + 96.84, + 31.49, + 43.84, + 24.53, + 20.63, + 17.24, + 48.19, + 100.0, + 100.0, + 65.87, + 35.4, + 25.61, + 69.95, + 91.06, + 52.31, + 39.5, + 19.65, + 0, + 70.79, + 71.93, + 47.07, + 36.2, + 81.11, + 14.43, + 25.52, + 69.08, + 29.38, + 24.37, + 17.82, + 32.69, + 50.2, + 96.13, + 68.46, + 58.45, + 99.41, + 76.23, + 73.92, + 74.36, + 58.38, + 38.34, + 20.01, + 57.79, + 25.09, + 81.72, + 36.36, + 59.87, + 90.99, + 52.15, + 83.83, + 100.0, + 97.77, + 82.63, + 83.18, + 99.03, + 59.18, + 98.3, + 36.41, + 96.02, + 97.97, + 53.64, + 56.64, + 95.13, + 21.38, + 28.73, + 89.66, + 34.83, + 37.35, + 82.94, + 53.82, + 38.15, + 66.03, + 58.55, + 32.87, + 32.03, + 99.17, + 54.33, + 0, + 74.12, + 39.92, + 61.02, + 90.02, + 21.09, + 68.46, + 36.98, + 42.64, + 79.2, + 37.99, + 0, + 40.12, + 89.47, + 49.31, + 37.96, + 99.05, + 26.51, + 20.69, + 95.17, + 66.74, + 29.85, + 61.99, + 66.94, + 53.36, + 67.68, + 73.02, + 100.0, + 100.0, + 100.0, + 100.0, + 88.6, + 100.0, + 100.0, + 99.76, + 83.8, + 69.63, + 99.94, + 89.67, + 100.0, + 100.0, + 94.25, + 95.27, + 91.46, + 46.61, + 30.21, + 30.2, + 74.8, + 54.94, + 81.93, + 100.0, + 93.7, + 43.65, + 50.58, + 60.53, + 91.87, + 96.25, + 54.17, + 20.93, + 19.29, + 49.89, + 94.46, + 80.7, + 24.24, + 19.25, + 21.87, + 14.16, + 56.22, + 97.03, + 67.96, + 62.89, + 30.24, + 0, + 30.38, + 100.0, + 77.19, + 83.21, + 85.89, + 36.64, + 68.69, + 41.33, + 97.95, + 80.71, + 63.45, + 46.52, + 16.02, + 16.88, + 54.11, + 95.37, + 70.42, + 38.6, + 46.43, + 84.96, + 66.23, + 53.54, + 72.64, + 75.24, + 71.85, + 27.46, + 25.27, + 29.66, + 93.26, + 78.96, + 46.56, + 68.98, + 30.57, + 90.04, + 55.78, + 50.56, + 45.71, + 27.08, + 13.42, + 0, + 26.1, + 93.14, + 62.69, + 50.83, + 25.58, + 14.2, + 24.18, + 69.77, + 91.94, + 68.14, + 89.79, + 50.41, + 22.92, + 35.91, + 90.32, + 62.99, + 65.3, + 86.6, + 18.74, + 16.7, + 88.69, + 96.44, + 86.93, + 66.66, + 22.34, + 0, + 22.97, + 94.55, + 68.18, + 77.19, + 23.87, + 0, + 0, + 39.0, + 88.1, + 51.18, + 24.89, + 0, + 0, + 20.77, + 34.59, + 50.9, + 83.54, + 36.15, + 0, + 17.6, + 50.77, + 100.0, + 91.59, + 81.82, + 32.5, + 28.74, + 18.19, + 64.2, + 88.69, + 90.98, + 30.24, + 69.54, + 0, + 0, + 92.49, + 98.28, + 92.43, + 81.85, + 28.66, + 16.22, + 63.55, + 100.0, + 95.84, + 94.38, + 54.77, + 43.78, + 68.8, + 72.72, + 83.33, + 79.05, + 77.11, + 66.13, + 25.49, + 32.11, + 69.45, + 97.73, + 76.96, + 50.01, + 24.63, + 41.14, + 91.36, + 98.45, + 70.19, + 62.85, + 13.23, + 43.06, + 94.32, + 99.59, + 93.07, + 54.18, + 17.36, + 19.08, + 59.57, + 96.6, + 90.4, + 98.19, + 94.59, + 99.91, + 76.39, + 30.7, + 86.49, + 100.0, + 98.25, + 62.35, + 26.22, + 19.48, + 43.53, + 94.21, + 99.54, + 96.71, + 64.16, + 0, + 15.18, + 42.96, + 38.12, + 42.16, + 94.42, + 98.97, + 83.63, + 95.09, + 47.22, + 29.6, + 72.03, + 50.3, + 89.89, + 99.75, + 64.6, + 73.47, + 29.31, + 17.67, + 29.23, + 51.55, + 57.58, + 98.31, + 99.92, + 85.78, + 100.0, + 100.0, + 95.33, + 18.31, + 32.54, + 97.29, + 97.73, + 88.68, + 74.9, + 75.32, + 42.76, + 42.5, + 99.9, + 95.36, + 100.0, + 76.2, + 90.2, + 53.91, + 78.15, + 71.55, + 95.64, + 83.63, + 94.73, + 93.52, + 75.55, + 44.99, + 65.84, + 86.16, + 27.85, + 69.05, + 64.27, + 47.05, + 36.93, + 16.15, + 16.46, + 15.58, + 0, + 15.71, + 64.18, + 100.0, + 100.0, + 96.06, + 88.31, + 98.12, + 65.81, + 86.69, + 93.43, + 100.0, + 100.0, + 97.13, + 99.94, + 89.88, + 98.87, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 87.27, + 50.68, + 64.5, + 88.82, + 100.0, + 99.99, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 98.4, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 92.81, + 85.42, + 100.0, + 99.46, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 85.39, + 89.86, + 95.83, + 85.87, + 82.48, + 99.28, + 100.0, + 85.22, + 33.09, + 52.67, + 68.57, + 14.84, + 35.25, + 37.52, + 100.0, + 100.0, + 95.81, + 74.22, + 58.55, + 49.19, + 72.43, + 33.95, + 38.19, + 86.77, + 91.31, + 57.1, + 67.74, + 53.17, + 96.94, + 100.0, + 85.65, + 73.6, + 89.75, + 87.94, + 89.38, + 48.22, + 43.96, + 43.53, + 90.67, + 68.48, + 95.71, + 59.16, + 83.02, + 98.54, + 98.44, + 100.0, + 67.24, + 85.16, + 94.3, + 94.2, + 62.28, + 86.38, + 91.38, + 67.96, + 14.65, + 22.61, + 83.78, + 100.0, + 100.0, + 85.01, + 28.01, + 42.51, + 37.41, + 33.92, + 26.09, + 20.32, + 84.36, + 99.76, + 97.54, + 92.76, + 99.97, + 96.42, + 86.56, + 42.93, + 73.72, + 71.68, + 69.6, + 69.48, + 67.33, + 90.61, + 47.37, + 72.41, + 89.78, + 51.61, + 34.47, + 36.28, + 28.91, + 56.92, + 76.6, + 43.6, + 36.82, + 49.16, + 38.33, + 58.84, + 72.68, + 69.65, + 64.01, + 43.22, + 46.75, + 33.25, + 52.79, + 68.86, + 44.45, + 33.95, + 60.19, + 87.0, + 74.31, + 83.65, + 48.85, + 96.64, + 93.9, + 83.68, + 84.24, + 57.38, + 46.28, + 42.92, + 96.76, + 77.02, + 46.23, + 94.78, + 88.78, + 52.43, + 44.29, + 92.22, + 71.56, + 65.17, + 100.0, + 97.19, + 56.11, + 76.48, + 67.78, + 20.98, + 15.0, + 39.75, + 32.2, + 34.0, + 57.28, + 35.28, + 61.29, + 36.04, + 29.79, + 68.8, + 33.54, + 37.72, + 32.41, + 62.76, + 98.83, + 83.48, + 49.62, + 44.7, + 29.52, + 25.64, + 51.04, + 67.17, + 86.89, + 84.95, + 98.43, + 85.06, + 88.22, + 73.75, + 47.93, + 60.76, + 49.72, + 77.48, + 71.63, + 59.91, + 76.33, + 28.31, + 40.19, + 69.96, + 57.63, + 49.78, + 83.14, + 92.83, + 70.26, + 61.99, + 46.66, + 52.81, + 57.21, + 58.44, + 77.29, + 63.95, + 67.58, + 75.78, + 73.5, + 68.15, + 31.06, + 42.56, + 63.65, + 65.5, + 34.85, + 36.81, + 63.83, + 90.46, + 83.86, + 42.59, + 51.76, + 73.24, + 79.55, + 50.16, + 53.1, + 91.43, + 96.36, + 83.53, + 49.65, + 46.71, + 75.66, + 71.73, + 65.5, + 31.28, + 41.63, + 33.21, + 61.12, + 86.08, + 79.07, + 65.56, + 32.24, + 33.77, + 79.84, + 81.04, + 40.62, + 66.19, + 29.25, + 52.29, + 39.1, + 75.19, + 95.1, + 65.78, + 40.76, + 35.94, + 16.69, + 14.68, + 18.68, + 31.28, + 78.08, + 67.51, + 32.08, + 58.43, + 41.97, + 60.38, + 60.07, + 93.56, + 57.86, + 48.12, + 54.74, + 52.16, + 96.82, + 84.63, + 79.24, + 24.95, + 32.45, + 54.96, + 82.77, + 72.4, + 48.87, + 60.82, + 52.15, + 54.4, + 72.84, + 82.11, + 44.07, + 48.66, + 21.36, + 69.97, + 59.29, + 92.43, + 37.28, + 48.2, + 99.13, + 83.67, + 71.15, + 41.32, + 99.29, + 66.56, + 76.45, + 61.07, + 60.94, + 64.4, + 70.72, + 77.07, + 48.3, + 82.94, + 78.22, + 67.79, + 40.48, + 77.22, + 24.61, + 49.38, + 77.83, + 41.76, + 36.96, + 34.51, + 67.79, + 59.38, + 61.35, + 43.82, + 40.97, + 29.87, + 25.82, + 29.47, + 70.31, + 59.57, + 47.38, + 78.48, + 80.5, + 38.58, + 16.54, + 28.66, + 32.93, + 29.81, + 60.71, + 22.33, + 16.9, + 18.03, + 37.96, + 25.55, + 16.09, + 31.01, + 43.9, + 31.67, + 13.48, + 33.4, + 17.89, + 63.1, + 51.44, + 47.62, + 44.85, + 0, + 19.35, + 75.8, + 21.72, + 21.43, + 71.7, + 40.46, + 30.96, + 62.39, + 49.81, + 22.55, + 19.76, + 14.79, + 20.97, + 20.65, + 32.0, + 48.9, + 93.16, + 69.22, + 37.11, + 35.86, + 42.99, + 24.53, + 15.66, + 24.08, + 27.36, + 57.04, + 56.53, + 83.78, + 55.61, + 59.33, + 29.72, + 38.55, + 28.48, + 15.13, + 58.07, + 19.22, + 23.89, + 81.1, + 38.16, + 30.94, + 55.23, + 77.88, + 90.89, + 73.91, + 42.74, + 50.59, + 52.52, + 42.15, + 28.65, + 42.78, + 48.97, + 36.09, + 40.4, + 45.49, + 44.85, + 35.86, + 50.07, + 47.31, + 43.92, + 30.21, + 31.89, + 68.31, + 44.41, + 40.75, + 60.64, + 70.85, + 34.94, + 80.26, + 94.34, + 98.31, + 87.7, + 58.27, + 31.83, + 30.2, + 51.52, + 30.93, + 39.05, + 30.29, + 31.01, + 48.02, + 38.58, + 31.07, + 82.61, + 37.74, + 19.29, + 67.24, + 39.28, + 35.22, + 39.9, + 41.6, + 35.49, + 64.2, + 53.28, + 100.0, + 69.6, + 32.2, + 90.42, + 81.74, + 44.92, + 30.46, + 20.05, + 67.01, + 51.15, + 22.13, + 25.84, + 34.49, + 30.02, + 26.41, + 48.73, + 31.81, + 25.53, + 52.17, + 23.21, + 31.47, + 23.53, + 25.23, + 30.34, + 26.4, + 45.34, + 43.16, + 20.95, + 51.22, + 32.43, + 33.13, + 38.11, + 37.75, + 25.48, + 20.99, + 20.79, + 32.8, + 25.29, + 28.35, + 26.11, + 15.6, + 15.71, + 15.62, + 19.51, + 14.97, + 39.19, + 62.73, + 38.57, + 27.39, + 34.24, + 24.64, + 19.1, + 14.21, + 0, + 20.01, + 16.96, + 14.15, + 0, + 0, + 17.79, + 15.38, + 15.54, + 0, + 0, + 0, + 20.4, + 16.75, + 0, + 13.95, + 20.19, + 23.51, + 40.42, + 15.86, + 15.38, + 16.84, + 15.24, + 17.63, + 57.35, + 41.2, + 28.33, + 27.3, + 43.91, + 36.2, + 22.04, + 18.22, + 14.24, + 17.81, + 67.91, + 23.43, + 25.72, + 25.79, + 19.06, + 21.05, + 28.12, + 16.03, + 20.01, + 19.72, + 20.98, + 55.55, + 65.47, + 29.3, + 13.83, + 59.3, + 26.16, + 21.16, + 41.45, + 22.42, + 30.38, + 24.53, + 19.33, + 46.31, + 26.1, + 15.12, + 26.03, + 14.99, + 21.15, + 65.27, + 96.19, + 23.41, + 24.49, + 18.05, + 57.77, + 63.12, + 56.86, + 25.88, + 26.04, + 55.23, + 29.28, + 16.88, + 28.31, + 29.41, + 18.02, + 20.54, + 31.39, + 29.26, + 17.39, + 17.84, + 23.01, + 32.21, + 75.06, + 43.46, + 26.99, + 30.52, + 44.42, + 56.3, + 29.08, + 18.41, + 20.65, + 16.53, + 50.74, + 32.66, + 28.85, + 25.72, + 28.75, + 32.01, + 23.13, + 20.86, + 18.81, + 21.81, + 19.46, + 16.48, + 17.97, + 24.71, + 18.67, + 36.3, + 27.32, + 32.16, + 28.72, + 37.85, + 19.39, + 20.66, + 21.69, + 39.68, + 49.19, + 19.68, + 20.77, + 26.15, + 17.37, + 19.42, + 31.49, + 62.36, + 35.04, + 22.16, + 23.48, + 51.19, + 28.44, + 22.97, + 25.86, + 24.73, + 31.05, + 43.02, + 26.05, + 26.73, + 19.63, + 20.42, + 23.63, + 39.41, + 15.41, + 29.97, + 69.03, + 41.63, + 27.75, + 30.84, + 73.49, + 40.98, + 38.68, + 50.39, + 61.09, + 97.66, + 44.75, + 46.63, + 39.03, + 55.0, + 23.49, + 33.78, + 33.92, + 30.21, + 33.1, + 39.0, + 47.53, + 28.16, + 24.31, + 40.77, + 40.07, + 69.87, + 49.07, + 37.57, + 29.65, + 25.65, + 25.07, + 24.68, + 33.44, + 30.89, + 47.99, + 47.24, + 52.7, + 44.28, + 29.56, + 43.06, + 33.98, + 27.56, + 21.88, + 56.5, + 48.61, + 43.31, + 28.28, + 39.31, + 29.2, + 50.65, + 34.51, + 22.47, + 47.87, + 48.1, + 56.97, + 56.69, + 72.61, + 36.56, + 19.73, + 25.94, + 45.53, + 36.93, + 20.05, + 39.44, + 70.77, + 92.1, + 29.83, + 15.97, + 25.62, + 52.43, + 47.86, + 23.4, + 18.92, + 44.06, + 47.08, + 24.61, + 29.01, + 33.28, + 33.1, + 29.17, + 19.77, + 35.11, + 25.97, + 25.01, + 22.8, + 28.61, + 34.79, + 64.26, + 46.47, + 30.79, + 30.57, + 23.81, + 44.03, + 53.31, + 20.37, + 18.42, + 23.93, + 16.7, + 22.83, + 18.19, + 33.42, + 26.28, + 50.01, + 22.38, + 21.62, + 24.69, + 15.15, + 43.59, + 46.57, + 31.11, + 29.74, + 18.35, + 24.76, + 38.98, + 49.67, + 67.93, + 21.85, + 17.07, + 25.63, + 46.41, + 31.38, + 27.66, + 20.33, + 35.61, + 39.43, + 21.87, + 33.88, + 20.4, + 24.37, + 16.82, + 14.12, + 21.59, + 23.36, + 18.83, + 63.71, + 40.76, + 28.98, + 22.2, + 19.1, + 20.93, + 29.53, + 26.47, + 25.43, + 25.35, + 26.19, + 27.42, + 27.51, + 20.06, + 31.39, + 56.0, + 20.39, + 20.13, + 48.86, + 36.08, + 21.75, + 17.18, + 38.4, + 31.1, + 53.66, + 27.79, + 25.91, + 29.56, + 29.42, + 16.21, + 23.89, + 44.79, + 25.21, + 21.93, + 16.5, + 27.72, + 15.92, + 27.93, + 44.55, + 22.36, + 20.33, + 18.69, + 31.27, + 43.72, + 45.32, + 28.94, + 21.96, + 35.32, + 25.68, + 35.75, + 71.51, + 30.45, + 15.9, + 37.86, + 44.4, + 34.98, + 40.91, + 24.12, + 18.44, + 47.46, + 37.98, + 19.16, + 24.42, + 21.66, + 25.91, + 33.96, + 21.38, + 33.44, + 34.25, + 23.16, + 30.31, + 17.42, + 21.83, + 21.35, + 25.26, + 55.65, + 43.4, + 25.02, + 38.43, + 30.48, + 36.26, + 43.29, + 54.43, + 39.75, + 30.34, + 28.18, + 25.34, + 35.42, + 17.33, + 20.84, + 28.12, + 79.47, + 41.87, + 27.92, + 22.26, + 24.71, + 19.16, + 14.07, + 15.66, + 18.06, + 27.1, + 19.55, + 20.91, + 0, + 0, + 0, + 0, + 37.86, + 21.52, + 17.06, + 28.95, + 14.59, + 21.07, + 19.74, + 25.47, + 75.24, + 21.9, + 17.98, + 17.77, + 30.23, + 29.35, + 19.39, + 37.23, + 59.32, + 20.43, + 19.06, + 15.81, + 19.45, + 16.14, + 17.97, + 29.12, + 15.03, + 43.81, + 49.39, + 18.69, + 28.64, + 35.73, + 17.66, + 21.34, + 23.04, + 18.89, + 15.15, + 26.78, + 25.58, + 27.75, + 21.14, + 36.8, + 61.43, + 41.75, + 32.62, + 32.96, + 19.88, + 32.03, + 57.85, + 25.85, + 0, + 20.08, + 22.98, + 21.09, + 31.06, + 23.95, + 61.34, + 35.54, + 21.0, + 27.56, + 32.87, + 58.75, + 20.75, + 15.27, + 22.03, + 23.39, + 18.43, + 0, + 19.68, + 26.77, + 26.92, + 21.75, + 27.65, + 19.13, + 13.41, + 0, + 19.89, + 43.67, + 40.62, + 20.21, + 16.3, + 13.73, + 15.49, + 19.06, + 15.03, + 14.65, + 20.46, + 74.59, + 49.1, + 18.96, + 27.35, + 20.38, + 15.97, + 69.43, + 33.11, + 41.13, + 45.37, + 22.26, + 18.1, + 0, + 17.64, + 16.4, + 18.18, + 15.14, + 0, + 14.85, + 14.92, + 16.27, + 33.13, + 14.27, + 14.04, + 0, + 14.32, + 14.66, + 15.94, + 75.86, + 35.15, + 17.47, + 0, + 14.04, + 25.19, + 28.64, + 52.2, + 38.22, + 38.2, + 23.26, + 17.3, + 16.15, + 14.36, + 13.64, + 22.12, + 19.81, + 21.4, + 17.63, + 24.21, + 64.23, + 21.1, + 16.52, + 28.24, + 52.93, + 89.62, + 67.24, + 28.98, + 42.67, + 31.84, + 17.23, + 15.27, + 19.36, + 22.9, + 72.23, + 95.03, + 80.4, + 83.64, + 37.08, + 28.73, + 36.28, + 27.2, + 27.16, + 25.25, + 79.93, + 68.77, + 65.46, + 51.96, + 30.12, + 55.4, + 69.04, + 68.53, + 41.29, + 23.51, + 24.22, + 24.97, + 59.18, + 48.48, + 30.7, + 43.62, + 23.5, + 19.54, + 13.36, + 14.51, + 20.89, + 56.39, + 69.21, + 81.7, + 45.69, + 30.81, + 46.12, + 74.75, + 79.8, + 65.82, + 50.31, + 80.62, + 63.82, + 50.79, + 56.74, + 32.12, + 62.88, + 46.74, + 28.98, + 50.12, + 65.37, + 29.99, + 22.47, + 18.0, + 22.97, + 20.02, + 38.49, + 59.6, + 47.82, + 42.08, + 32.26, + 43.17, + 29.55, + 22.0, + 28.87, + 24.48, + 24.35, + 21.69, + 14.82, + 23.89, + 16.99, + 26.54, + 28.53, + 25.09, + 31.85, + 20.2, + 23.17, + 18.06, + 15.21, + 13.89, + 46.58, + 39.3, + 18.47, + 19.28, + 18.76, + 18.04, + 18.6, + 55.34, + 36.64, + 55.27, + 25.92, + 16.3, + 19.27, + 46.41, + 42.09, + 33.72, + 28.18, + 21.42, + 25.08, + 19.15, + 22.43, + 21.67, + 18.84, + 0, + 43.42, + 38.24, + 28.13, + 27.47, + 26.94, + 22.78, + 29.12, + 21.1, + 23.83, + 51.15, + 30.59, + 23.46, + 23.83, + 19.87, + 38.45, + 34.42, + 15.67, + 13.18, + 15.56, + 23.09, + 56.6, + 31.44, + 24.26, + 24.07, + 24.04, + 21.28, + 54.85, + 37.91, + 21.62, + 24.28, + 19.73, + 49.83, + 25.32, + 27.54, + 28.8, + 30.3, + 28.12, + 29.68, + 39.92, + 21.49, + 16.96, + 26.41, + 37.0, + 25.99, + 21.2, + 16.71, + 21.29, + 28.28, + 30.09, + 35.67, + 23.77, + 20.11, + 15.6, + 14.91, + 16.73, + 26.61, + 23.46, + 16.29, + 18.96, + 19.75, + 17.56, + 20.76, + 27.75, + 24.63, + 28.14, + 17.82, + 0, + 13.79, + 21.3, + 27.41, + 25.5, + 21.82, + 20.83, + 24.14, + 18.62, + 19.33, + 41.86, + 28.18, + 21.94, + 22.8, + 21.87, + 25.85, + 32.01, + 23.25, + 22.91, + 23.1, + 32.63, + 33.13, + 26.94, + 33.4, + 30.74, + 27.11, + 34.34, + 37.33, + 30.27, + 26.64, + 29.47, + 32.42, + 36.12, + 31.11, + 40.6, + 19.64, + 21.57, + 20.27, + 20.09, + 17.85, + 14.12, + 15.61, + 20.13, + 21.68, + 21.45, + 18.29, + 25.08, + 25.11, + 35.58, + 36.16, + 31.03, + 35.73, + 35.69, + 28.47, + 27.37, + 27.4, + 25.65, + 24.64, + 20.69, + 19.75, + 16.11, + 17.11, + 23.71, + 18.38, + 19.56, + 20.19, + 44.58, + 37.38, + 21.4, + 27.65, + 19.74, + 17.08, + 21.9, + 37.48, + 33.47, + 35.86, + 30.56, + 30.64, + 25.24, + 24.29, + 26.73, + 63.08, + 60.5, + 55.61, + 58.31, + 23.96, + 27.66, + 25.06, + 22.97, + 18.67, + 19.53, + 21.49, + 21.47, + 25.06, + 28.73, + 34.89, + 27.03, + 21.91, + 28.93, + 23.69, + 30.51, + 31.01, + 33.59, + 40.7, + 18.61, + 20.64, + 44.5, + 50.87, + 38.9, + 42.33, + 38.18, + 32.82, + 30.71, + 24.38, + 17.55, + 0, + 35.34, + 27.35, + 31.29, + 38.51, + 51.67, + 46.93, + 31.77, + 33.22, + 24.97, + 34.01, + 33.64, + 38.26, + 31.36, + 32.57, + 34.97, + 29.53, + 28.8, + 34.2, + 28.93, + 25.33, + 26.44, + 24.66, + 28.28, + 21.72, + 18.76, + 18.76, + 28.93, + 26.29, + 21.43, + 28.77, + 19.18, + 24.16, + 22.57, + 43.13, + 31.32, + 38.23, + 29.65, + 36.81, + 32.46, + 28.26, + 30.86, + 33.11, + 29.6, + 44.13, + 31.08, + 19.62, + 29.16, + 22.67, + 64.08, + 53.75, + 51.48, + 39.74, + 32.64, + 58.59, + 28.56, + 45.29, + 41.09, + 24.38, + 57.3, + 35.49, + 21.35, + 41.59, + 67.04, + 51.2, + 37.61, + 29.24, + 32.82, + 22.31, + 22.55, + 33.61, + 38.53, + 43.35, + 57.15, + 66.13, + 50.72, + 29.24, + 37.33, + 45.52, + 30.73, + 41.77, + 28.56, + 61.95, + 46.51, + 57.28, + 53.82, + 56.06, + 44.88, + 54.08, + 56.3, + 40.06, + 55.54, + 33.01, + 61.53, + 61.31, + 35.72, + 37.25, + 49.32, + 73.53, + 28.88, + 54.98, + 50.17, + 51.88, + 66.87, + 35.92, + 45.79, + 49.75, + 79.35, + 46.96, + 38.98, + 35.08, + 45.95, + 63.27, + 31.4, + 39.37, + 26.0, + 50.23, + 71.94, + 57.12, + 31.17, + 43.91, + 63.23, + 44.44, + 73.73, + 46.81, + 58.11, + 70.57, + 56.0, + 72.36, + 43.98, + 70.53, + 65.3, + 54.46, + 65.47, + 38.86, + 62.38, + 43.44, + 38.94, + 44.9, + 44.79, + 27.43, + 68.2, + 60.24, + 36.18, + 57.87, + 34.5, + 71.65, + 41.2, + 48.29, + 81.79, + 35.63, + 44.48, + 44.24, + 43.14, + 55.04, + 47.5, + 50.13, + 57.32, + 60.32, + 43.68, + 26.21, + 62.7, + 55.06, + 43.21, + 24.63, + 26.8, + 23.65, + 34.61, + 25.04, + 31.06, + 48.2, + 35.69, + 38.26, + 30.52, + 52.95, + 35.96, + 47.6, + 43.13, + 46.1, + 45.95, + 36.11, + 29.54, + 26.03, + 47.3, + 43.45, + 20.54, + 26.95, + 23.08, + 30.99, + 36.31, + 32.41, + 30.91, + 25.61, + 24.49, + 31.19, + 17.63, + 18.71, + 15.26, + 18.33, + 18.67, + 15.84, + 18.56, + 35.06, + 36.32, + 22.29, + 26.53, + 26.63, + 14.65, + 14.78, + 28.41, + 16.52, + 18.59, + 16.56, + 14.18, + 14.36, + 15.35, + 17.44, + 14.27, + 0, + 15.88, + 16.24, + 16.11, + 16.49, + 17.98, + 20.63, + 21.86, + 32.22, + 17.26, + 15.41, + 17.98, + 17.45, + 21.6, + 22.7, + 19.81, + 16.76, + 31.53, + 23.88, + 25.02, + 28.66, + 24.84, + 28.93, + 27.88, + 28.87, + 23.87, + 23.17, + 17.26, + 54.53, + 50.05, + 21.86, + 28.11, + 34.68, + 27.01, + 21.06, + 22.87, + 19.85, + 18.58, + 22.83, + 26.11, + 33.08, + 35.96, + 31.32, + 32.25, + 59.96, + 27.11, + 25.33, + 15.71, + 26.53, + 26.56, + 20.58, + 21.7, + 32.98, + 63.9, + 55.63, + 30.59, + 39.1, + 41.69, + 30.69, + 28.85, + 33.3, + 36.96, + 34.69, + 38.18, + 57.16, + 37.32, + 31.87, + 52.86, + 45.05, + 43.65, + 51.13, + 59.52, + 56.4, + 44.1, + 33.81, + 37.05, + 39.72, + 23.29, + 24.4, + 25.12, + 28.65, + 42.38, + 23.12, + 44.37, + 21.96, + 19.28, + 20.91, + 52.73, + 27.08, + 19.16, + 63.13, + 27.85, + 16.4, + 20.31, + 24.23, + 13.97, + 16.96, + 19.39, + 18.1, + 23.5, + 41.6, + 45.61, + 37.96, + 34.09, + 33.88, + 31.23, + 28.0, + 28.89, + 29.62, + 37.72, + 47.2, + 49.35, + 32.95, + 51.04, + 26.97, + 20.18, + 28.86, + 28.31, + 24.93, + 20.29, + 26.66, + 56.28, + 21.39, + 23.76, + 36.97, + 28.81, + 29.88, + 28.71, + 29.22, + 34.03, + 41.84, + 42.81, + 35.79, + 25.23, + 29.28, + 44.83, + 38.03, + 27.38, + 54.28, + 33.36, + 19.44, + 20.64, + 20.47, + 18.12, + 20.26, + 15.19, + 23.2, + 28.6, + 24.89, + 23.03, + 25.92, + 31.43, + 31.84, + 46.98, + 43.21, + 26.39, + 27.76, + 32.55, + 30.3, + 25.98, + 39.06, + 33.03, + 42.52, + 28.5, + 25.71, + 23.95, + 21.55, + 23.07, + 22.52, + 31.7, + 22.13, + 25.28, + 27.74, + 42.93, + 24.86, + 18.53, + 29.74, + 19.94, + 18.85, + 27.25, + 21.27, + 26.98, + 19.7, + 19.08, + 20.91, + 24.01, + 21.66, + 24.11, + 20.36, + 21.34, + 25.0, + 20.12, + 15.39, + 15.17, + 0, + 15.67, + 14.01, + 34.14, + 29.4, + 20.82, + 18.05, + 24.43, + 28.68, + 27.56, + 19.52, + 28.44, + 25.86, + 18.39, + 17.6, + 16.99, + 25.52, + 22.88, + 18.31, + 20.05, + 15.8, + 22.26, + 17.44, + 22.43, + 31.28, + 33.05, + 47.24, + 38.62, + 21.81, + 17.51, + 15.67, + 17.76, + 19.76, + 19.24, + 17.85, + 14.63, + 18.55, + 20.06, + 13.84, + 25.68, + 14.38, + 20.96, + 0, + 15.54, + 16.41, + 14.86, + 14.59, + 13.77, + 21.37, + 19.7, + 15.45, + 23.87, + 20.17, + 0, + 16.23, + 14.56, + 24.0, + 18.0, + 17.32, + 15.6, + 0, + 15.29, + 23.41, + 20.46, + 19.38, + 14.31, + 15.72, + 14.57, + 21.65, + 15.44, + 30.31, + 25.55, + 18.67, + 16.05, + 0, + 20.81, + 21.99, + 15.84, + 13.39, + 23.96, + 17.04, + 17.56, + 24.24, + 22.31, + 19.49, + 16.21, + 21.15, + 28.22, + 20.9, + 18.72, + 15.44, + 22.46, + 24.76, + 30.54, + 25.25, + 19.1, + 16.34, + 26.86, + 15.19, + 31.85, + 18.59, + 30.06, + 24.46, + 31.78, + 26.38, + 19.98, + 25.22, + 23.04, + 22.19, + 17.8, + 18.81, + 22.5, + 30.48, + 26.22, + 22.72, + 32.99, + 24.24, + 21.08, + 28.37, + 28.81, + 18.24, + 21.17, + 25.32, + 22.35, + 22.78, + 29.37, + 25.55, + 23.14, + 18.53, + 21.25, + 22.72, + 38.33, + 30.47, + 30.23, + 25.42, + 23.33, + 25.37, + 19.45, + 18.64, + 16.56, + 25.96, + 20.27, + 18.11, + 19.62, + 32.23, + 21.57, + 28.27, + 23.96, + 48.99, + 23.47, + 26.81, + 14.17, + 22.26, + 24.83, + 18.62, + 18.08, + 17.93, + 27.1, + 31.26, + 20.85, + 14.7, + 16.32, + 14.37, + 48.04, + 37.91, + 41.99, + 45.88, + 28.46, + 37.71, + 26.69, + 41.93, + 58.02, + 18.89, + 23.89, + 25.66, + 35.07, + 19.75, + 22.29, + 15.35, + 24.49, + 23.3, + 18.51, + 24.49, + 24.65, + 27.27, + 30.97, + 27.36, + 26.48, + 19.23, + 26.09, + 19.11, + 14.91, + 25.89, + 42.08, + 43.79, + 21.95, + 18.1, + 24.49, + 19.01, + 23.66, + 31.68, + 17.51, + 15.77, + 28.4, + 22.23, + 22.49, + 22.81, + 19.67, + 25.74, + 31.57, + 23.14, + 23.7, + 25.53, + 16.71, + 22.23, + 25.11, + 23.51, + 19.67, + 21.73, + 29.74, + 23.73, + 26.02, + 25.6, + 40.45, + 31.57, + 25.33, + 31.25, + 25.5, + 25.51, + 22.86, + 33.68, + 26.92, + 25.87, + 29.47, + 31.09, + 43.24, + 33.38, + 23.56, + 23.1, + 45.17, + 45.61, + 36.73, + 40.67, + 35.55, + 24.38, + 25.13, + 31.19, + 27.95, + 26.97, + 17.92, + 16.32, + 39.6, + 55.06, + 76.71, + 75.76, + 53.0, + 46.75, + 44.09, + 37.34, + 28.75, + 32.33, + 30.64, + 32.19, + 33.34, + 34.09, + 30.28, + 17.65, + 40.21, + 54.27, + 24.79, + 23.12, + 16.59, + 32.59, + 85.58, + 71.91, + 28.96, + 54.73, + 61.74, + 51.4, + 39.1, + 33.56, + 26.55, + 16.78, + 0, + 15.61, + 16.5, + 16.73, + 19.32, + 20.48, + 30.11, + 31.22, + 28.49, + 18.45, + 15.26, + 16.33, + 0, + 16.39, + 0, + 16.01, + 16.51, + 13.17, + 17.28, + 26.8, + 16.98, + 0, + 23.72, + 36.34, + 31.49, + 24.96, + 23.12, + 24.58, + 19.83, + 20.47, + 16.66, + 20.77, + 16.68, + 15.68, + 22.98, + 20.94, + 22.78, + 27.75, + 38.23, + 48.88, + 33.67, + 59.85, + 57.74, + 29.83, + 21.2, + 40.42, + 77.41, + 65.01, + 42.63, + 39.23, + 46.22, + 25.56, + 55.04, + 44.0, + 56.24, + 74.21, + 55.27, + 36.06, + 42.98, + 66.47, + 66.48, + 45.96, + 67.56, + 42.72, + 73.9, + 58.2, + 55.93, + 62.04, + 45.39, + 74.23, + 73.33, + 71.43, + 97.85, + 63.33, + 90.97, + 96.78, + 39.81, + 34.66, + 43.65, + 70.8, + 66.17, + 76.73, + 59.44, + 40.85, + 63.28, + 98.19, + 94.17, + 98.58, + 91.0, + 64.3, + 63.87, + 81.4, + 59.84, + 67.07, + 80.03, + 75.75, + 98.58, + 72.16, + 83.46, + 78.13, + 54.59, + 62.9, + 72.28, + 64.04, + 63.08, + 28.89, + 39.78, + 50.57, + 53.13, + 62.45, + 52.73, + 63.68, + 90.61, + 63.9, + 66.31, + 73.25, + 60.59, + 45.11, + 69.26, + 68.95, + 65.43, + 38.04, + 36.27, + 39.0, + 34.63, + 24.58, + 72.62, + 69.87, + 36.92, + 42.85, + 40.53, + 37.92, + 35.89, + 42.21, + 30.28, + 57.23, + 74.93, + 70.72, + 63.14, + 57.63, + 40.61, + 59.84, + 55.24, + 73.51, + 58.94, + 90.45, + 56.5, + 51.0, + 70.29, + 74.97, + 44.12, + 18.93, + 28.73, + 51.58, + 56.67, + 61.62, + 36.08, + 39.55, + 51.9, + 58.0, + 49.08, + 38.98, + 52.75, + 50.89, + 36.17, + 36.59, + 37.31, + 35.84, + 48.44, + 89.14, + 73.33, + 37.16, + 43.21, + 43.53, + 30.58, + 60.32, + 43.04, + 26.37, + 40.82, + 22.43, + 48.94, + 47.19, + 44.61, + 25.73, + 34.6, + 19.84, + 23.14, + 56.0, + 29.25, + 69.79, + 46.02, + 32.09, + 33.98, + 41.92, + 31.05, + 41.39, + 56.01, + 26.65, + 45.72, + 38.01, + 35.22, + 63.73, + 26.56, + 45.94, + 32.53, + 23.54, + 33.81, + 45.37, + 23.69, + 35.33, + 40.11, + 33.36, + 16.75, + 16.9, + 40.57, + 31.54, + 26.23, + 38.68, + 44.58, + 41.9, + 27.11, + 31.67, + 43.44, + 35.89, + 59.25, + 54.01, + 68.32, + 46.0, + 47.03, + 50.13, + 51.42, + 36.84, + 72.26, + 66.78, + 68.49, + 63.76, + 46.4, + 51.38, + 48.53, + 80.37, + 53.96, + 37.97, + 43.57, + 39.25, + 25.59, + 24.84, + 20.7, + 26.21, + 36.15, + 44.32, + 61.61, + 38.48, + 44.01, + 52.27, + 55.46, + 71.18, + 67.68, + 36.16, + 33.86, + 41.26, + 34.52, + 49.41, + 32.51, + 31.39, + 23.48, + 38.0, + 37.75, + 44.82, + 32.32, + 18.26, + 16.27, + 30.7, + 36.58, + 28.07, + 26.33, + 35.81, + 53.63, + 50.17, + 33.78, + 35.13, + 38.25, + 59.82, + 71.43, + 35.89, + 36.05, + 24.53, + 17.85, + 44.5, + 45.52, + 28.78, + 37.04, + 70.7, + 42.68, + 40.05, + 39.83, + 53.77, + 30.58, + 24.79, + 35.76, + 50.95, + 44.25, + 17.98, + 21.44, + 25.79, + 25.23, + 25.25, + 28.63, + 21.92, + 21.82, + 20.68, + 15.77, + 15.42, + 23.38, + 18.59, + 15.72, + 18.0, + 21.1, + 14.24, + 15.64, + 16.26, + 16.45, + 14.94, + 15.58, + 16.95, + 14.0, + 15.87, + 19.27, + 19.1, + 16.35, + 20.36, + 17.25, + 26.67, + 20.88, + 19.89, + 32.18, + 37.21, + 26.07, + 20.36, + 47.38, + 67.25, + 54.66, + 48.58, + 37.4, + 25.22, + 20.35, + 31.47, + 36.5, + 28.37, + 38.45, + 33.66, + 32.03, + 18.23, + 21.09, + 19.1, + 27.78, + 19.25, + 24.55, + 23.79, + 25.34, + 16.95, + 20.56, + 19.17, + 22.6, + 37.26, + 24.28, + 23.43, + 19.03, + 19.98, + 31.21, + 29.63, + 21.05, + 22.7, + 24.81, + 28.59, + 50.0, + 34.81, + 23.96, + 17.38, + 21.42, + 32.35, + 28.04, + 26.18, + 20.21, + 20.94, + 18.06, + 26.18, + 26.25, + 17.59, + 31.8, + 48.85, + 28.54, + 18.74, + 17.87, + 28.7, + 21.63, + 23.72, + 24.97, + 22.79, + 15.51, + 0, + 21.7, + 16.38, + 19.42, + 16.46, + 14.55, + 32.68, + 34.58, + 21.36, + 18.47, + 23.65, + 28.8, + 39.17, + 37.02, + 29.98, + 42.16, + 28.6, + 24.35, + 32.68, + 45.26, + 65.69, + 23.75, + 47.13, + 49.09, + 36.2, + 35.44, + 51.65, + 45.2, + 50.63, + 28.13, + 26.2, + 28.75, + 55.32, + 43.92, + 31.16, + 63.92, + 76.52, + 49.83, + 81.66, + 79.38, + 54.37, + 67.51, + 61.35, + 31.67, + 36.5, + 55.91, + 66.59, + 49.96, + 75.5, + 49.65, + 80.4, + 34.08, + 54.33, + 69.21, + 72.64, + 61.56, + 42.11, + 42.42, + 40.81, + 54.58, + 70.53, + 46.55, + 59.77, + 66.26, + 67.14, + 56.32, + 51.88, + 58.13, + 43.75, + 36.44, + 28.95, + 73.08, + 37.63, + 66.16, + 69.29, + 39.49, + 98.55, + 100.0, + 96.68, + 91.88, + 99.98, + 100.0, + 83.13, + 84.45, + 60.47, + 83.75, + 65.94, + 26.24, + 18.35, + 32.39, + 30.34, + 27.62, + 37.3, + 29.58, + 33.0, + 55.68, + 37.07, + 62.32, + 71.21, + 79.86, + 50.19, + 41.36, + 38.7, + 44.58, + 46.65, + 47.75, + 31.24, + 30.88, + 49.1, + 71.17, + 71.73, + 56.81, + 75.89, + 94.43, + 68.74, + 65.61, + 55.07, + 60.14, + 47.54, + 79.19, + 94.37, + 91.87, + 99.79, + 93.43, + 76.48, + 82.01, + 62.21, + 81.26, + 58.25, + 91.74, + 82.08, + 45.35, + 59.1, + 67.6, + 46.37, + 69.54, + 50.6, + 63.2, + 52.67, + 50.0, + 39.42, + 38.02, + 57.24, + 51.73, + 36.35, + 27.93, + 67.29, + 77.35, + 78.04, + 72.65, + 78.23, + 64.44, + 74.29, + 54.78, + 46.34, + 51.05, + 35.12, + 35.17, + 86.36, + 51.46, + 38.06, + 42.0, + 33.31, + 53.65, + 79.43, + 97.91, + 59.77, + 56.55, + 26.68, + 30.26, + 71.22, + 44.14, + 22.27, + 27.02, + 33.27, + 26.9, + 27.73, + 26.19, + 40.11, + 89.53, + 42.19, + 66.17, + 55.11, + 45.54, + 24.26, + 64.86, + 77.89, + 100.0, + 91.27, + 95.4, + 99.89, + 86.1, + 96.38, + 98.16, + 74.19, + 59.62, + 30.23, + 50.99, + 93.88, + 85.21, + 49.47, + 38.96, + 57.72, + 61.22, + 86.27, + 50.39, + 46.95, + 53.79, + 42.22, + 51.37, + 51.19, + 48.47, + 51.38, + 55.71, + 97.15, + 100.0, + 95.11, + 95.46, + 97.71, + 100.0, + 97.41, + 89.93, + 95.17, + 73.8, + 58.35, + 97.58, + 99.08, + 78.31, + 93.28, + 73.72, + 91.95, + 84.48, + 97.46, + 83.33, + 93.66, + 92.49, + 85.68, + 90.94, + 87.12, + 98.72, + 57.36, + 45.14, + 30.16, + 64.66, + 99.87, + 84.31, + 68.87, + 54.32, + 32.21, + 45.36, + 53.61, + 71.74, + 52.27, + 72.85, + 71.36, + 48.81, + 32.32, + 33.63, + 46.73, + 36.11, + 41.96, + 57.88, + 48.75, + 49.69, + 64.68, + 46.76, + 59.11, + 48.22, + 56.27, + 45.04, + 42.3, + 33.45, + 43.26, + 28.6, + 42.06, + 54.23, + 40.59, + 64.28, + 33.7, + 56.8, + 32.15, + 86.85, + 99.1, + 73.45, + 63.88, + 85.84, + 71.58, + 38.9, + 27.56, + 48.39, + 37.97, + 50.12, + 42.04, + 42.19, + 39.63, + 35.49, + 39.76, + 49.16, + 21.68, + 20.0, + 16.84, + 26.95, + 46.01, + 38.23, + 54.75, + 43.65, + 28.77, + 30.59, + 35.88, + 45.07, + 39.88, + 40.51, + 23.97, + 32.01, + 32.74, + 29.44, + 28.48, + 19.46, + 36.2, + 25.02, + 43.17, + 51.2, + 71.87, + 75.35, + 74.41, + 67.5, + 46.0, + 33.9, + 56.25, + 32.83, + 43.59, + 67.27, + 75.61, + 18.99, + 26.18, + 31.15, + 36.02, + 20.8, + 29.84, + 29.83, + 61.66, + 41.52, + 39.7, + 49.47, + 29.0, + 35.77, + 97.41, + 94.55, + 50.09, + 28.23, + 47.83, + 24.55, + 28.35, + 37.5, + 37.6, + 19.33, + 16.32, + 40.06, + 29.85, + 19.01, + 28.9, + 53.69, + 51.69, + 67.93, + 53.39, + 63.7, + 50.01, + 51.82, + 78.54, + 49.02, + 22.63, + 23.83, + 29.3, + 44.74, + 38.52, + 34.63, + 44.46, + 61.64, + 78.9, + 64.48, + 51.18, + 45.27, + 34.67, + 28.85, + 54.7, + 62.44, + 63.37, + 48.24, + 30.27, + 38.95, + 50.93, + 41.88, + 38.24, + 28.95, + 40.67, + 52.34, + 62.12, + 47.43, + 47.28, + 31.81, + 30.15, + 28.9, + 57.78, + 64.43, + 39.62, + 36.79, + 55.96, + 73.0, + 61.6, + 59.07, + 39.72, + 87.31, + 60.71, + 32.89, + 26.89, + 17.11, + 47.37, + 34.11, + 19.39, + 19.41, + 24.24, + 31.62, + 34.55, + 36.6, + 27.68, + 27.28, + 43.69, + 27.1, + 23.59, + 22.34, + 27.04, + 31.86, + 38.54, + 26.97, + 26.7, + 23.82, + 31.32, + 26.38, + 27.99, + 32.99, + 23.13, + 40.18, + 71.26, + 81.07, + 60.36, + 31.28, + 23.59, + 25.22, + 49.23, + 40.33, + 38.44, + 28.82, + 34.4, + 34.12, + 34.08, + 20.54, + 22.52, + 20.61, + 31.34, + 40.98, + 41.15, + 26.99, + 21.61, + 21.12, + 33.32, + 36.96, + 28.15, + 42.51, + 27.26, + 28.35, + 52.55, + 47.03, + 82.19, + 86.11, + 57.8, + 37.36, + 56.98, + 36.76, + 59.93, + 35.6, + 55.1, + 26.01, + 20.76, + 27.39, + 32.17, + 19.85, + 25.57, + 30.29, + 23.45, + 27.36, + 23.66, + 33.64, + 41.39, + 26.64, + 35.06, + 37.23, + 39.09, + 47.95, + 39.97, + 33.24, + 58.88, + 64.92, + 68.45, + 35.01, + 26.85, + 26.64, + 29.52, + 47.21, + 31.54, + 26.73, + 17.05, + 18.25, + 29.48, + 43.97, + 31.24, + 32.18, + 22.6, + 23.15, + 26.46, + 50.99, + 72.07, + 40.27, + 36.66, + 30.75, + 43.53, + 46.34, + 45.37, + 37.15, + 46.14, + 53.95, + 46.21, + 42.44, + 38.42, + 41.56, + 49.27, + 53.93, + 42.27, + 51.86, + 40.8, + 61.95, + 61.05, + 31.24, + 48.06, + 52.22, + 24.34, + 19.71, + 59.91, + 43.99, + 32.15, + 32.72, + 46.47, + 43.54, + 66.35, + 44.54, + 33.82, + 31.07, + 49.08, + 46.72, + 44.34, + 47.81, + 48.44, + 33.81, + 51.24, + 60.9, + 52.93, + 38.7, + 36.49, + 23.47, + 28.17, + 37.18, + 43.2, + 32.8, + 31.26, + 32.88, + 29.62, + 23.11, + 19.84, + 15.26, + 15.12, + 14.52, + 24.69, + 24.71, + 24.36, + 18.64, + 20.85, + 13.86, + 18.97, + 23.66, + 24.33, + 27.21, + 39.2, + 56.85, + 23.27, + 22.06, + 26.14, + 26.67, + 48.38, + 44.1, + 31.71, + 20.23, + 24.54, + 40.03, + 51.89, + 53.24, + 13.36, + 15.29, + 62.07, + 54.75, + 37.84, + 22.55, + 16.65, + 27.08, + 34.13, + 35.01, + 36.53, + 25.71, + 22.16, + 26.47, + 36.81, + 43.15, + 36.25, + 30.74, + 34.81, + 41.2, + 42.09, + 45.97, + 52.63, + 46.55, + 33.94, + 57.17, + 41.14, + 38.64, + 22.86, + 29.65, + 46.83, + 32.55, + 21.81, + 18.14, + 14.18, + 16.59, + 17.56, + 31.93, + 47.2, + 51.91, + 67.7, + 56.15, + 43.61, + 52.7, + 58.87, + 52.15, + 66.51, + 41.98, + 34.88, + 25.08, + 15.36, + 47.26, + 39.85, + 26.16, + 47.27, + 33.17, + 37.57, + 25.64, + 33.38, + 30.63, + 36.97, + 31.59, + 46.22, + 87.98, + 67.72, + 41.3, + 32.84, + 23.96, + 36.53, + 48.62, + 30.24, + 28.05, + 26.53, + 31.4, + 28.17, + 22.64, + 22.73, + 24.34, + 35.01, + 36.71, + 24.09, + 35.03, + 40.92, + 24.72, + 44.11, + 26.88, + 28.77, + 35.64, + 30.64, + 37.05, + 31.6, + 35.07, + 32.55, + 29.1, + 40.3, + 43.49, + 40.4, + 20.87, + 23.19, + 33.05, + 42.49, + 39.83, + 32.57, + 27.95, + 24.86, + 39.32, + 26.83, + 32.57, + 39.83, + 31.73, + 41.74, + 31.46, + 28.19, + 25.32, + 29.86, + 46.87, + 47.31, + 39.07, + 19.48, + 28.09, + 32.7, + 44.32, + 44.54, + 33.21, + 23.7, + 20.34, + 21.74, + 26.57, + 30.17, + 32.05, + 18.48, + 20.83, + 29.05, + 20.24, + 18.92, + 29.93, + 39.22, + 33.21, + 16.93, + 29.64, + 29.76, + 32.43, + 23.99, + 36.63, + 47.01, + 63.31, + 76.59, + 53.7, + 44.11, + 83.94, + 93.25, + 94.38, + 99.92, + 92.45, + 74.32, + 76.55, + 100.0, + 59.42, + 95.94, + 87.57, + 64.01, + 100.0, + 93.22, + 73.81, + 99.8, + 95.57, + 85.04, + 98.32, + 94.41, + 77.97, + 69.47, + 100.0, + 79.0, + 89.5, + 92.12, + 77.2, + 73.51, + 41.88, + 42.64, + 50.04, + 35.21, + 35.51, + 30.67, + 35.42, + 31.57, + 18.85, + 45.45, + 78.41, + 39.84, + 80.05, + 58.41, + 86.86, + 92.4, + 53.05, + 50.93, + 91.96, + 86.95, + 52.49, + 42.21, + 72.21, + 88.31, + 89.59, + 99.58, + 100.0, + 80.33, + 78.47, + 80.45, + 52.5, + 34.2, + 74.71, + 46.99, + 54.14, + 68.71, + 92.14, + 66.21, + 64.76, + 93.48, + 100.0, + 95.33, + 75.58, + 73.57, + 37.28, + 88.63, + 100.0, + 98.07, + 70.24, + 97.26, + 98.6, + 95.49, + 93.86, + 85.26, + 99.79, + 69.22, + 44.36, + 89.78, + 95.21, + 67.97, + 66.5, + 83.12, + 99.77, + 74.3, + 52.73, + 51.4, + 42.25, + 51.59, + 52.59, + 34.05, + 58.93, + 49.05, + 60.93, + 37.99, + 46.5, + 65.78, + 74.26, + 58.43, + 41.79, + 67.36, + 63.4, + 60.2, + 56.63, + 68.02, + 45.86, + 44.08, + 35.6, + 51.43, + 39.32, + 39.0, + 41.1, + 49.45, + 70.6, + 42.36, + 40.95, + 41.72, + 51.9, + 40.39, + 73.83, + 63.95, + 56.52, + 62.96, + 57.5, + 47.14, + 81.2, + 57.89, + 63.91, + 45.28, + 40.98, + 41.01, + 48.24, + 50.46, + 51.71, + 56.3, + 51.18, + 60.21, + 65.26, + 44.79, + 48.82, + 83.76, + 84.09, + 76.72, + 84.09, + 55.88, + 45.2, + 29.71, + 44.18, + 44.09, + 31.76, + 25.89, + 39.18, + 25.71, + 31.04, + 44.32, + 39.07, + 60.91, + 81.83, + 37.51, + 34.23, + 41.15, + 52.27, + 86.45, + 58.65, + 31.94, + 39.78, + 47.9, + 53.92, + 82.65, + 69.39, + 85.65, + 85.18, + 82.97, + 34.34, + 45.98, + 57.3, + 67.14, + 64.63, + 48.92, + 79.25, + 62.6, + 81.36, + 81.16, + 56.55, + 54.56, + 77.11, + 81.94, + 81.97, + 82.4, + 87.96, + 98.37, + 79.12, + 69.54, + 84.39, + 94.3, + 98.78, + 93.37, + 61.29, + 70.85, + 68.45, + 43.56, + 46.19, + 72.65, + 92.9, + 82.21, + 90.08, + 85.83, + 93.17, + 93.68, + 98.46, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 95.89, + 59.72, + 100.0, + 82.59, + 45.09, + 51.1, + 49.02, + 65.62, + 64.65, + 80.41, + 91.83, + 64.24, + 99.65, + 80.87, + 80.07, + 49.36, + 82.72, + 61.29, + 45.68, + 63.35, + 63.29, + 56.94, + 64.11, + 100.0, + 99.75, + 82.42, + 93.97, + 69.42, + 37.8, + 55.77, + 31.68, + 43.45, + 68.8, + 63.87, + 68.03, + 49.49, + 34.45, + 82.6, + 87.71, + 80.78, + 86.53, + 60.76, + 35.49, + 55.42, + 40.41, + 33.53, + 56.98, + 93.96, + 98.75, + 86.18, + 82.13, + 61.86, + 45.35, + 62.64, + 86.15, + 88.18, + 98.5, + 60.99, + 65.31, + 81.96, + 55.28, + 56.36, + 84.74, + 93.42, + 92.4, + 70.75, + 58.43, + 69.52, + 97.04, + 78.26, + 50.47, + 55.39, + 65.53, + 96.22, + 96.07, + 86.1, + 62.03, + 73.15, + 85.46, + 75.4, + 71.26, + 59.96, + 52.05, + 59.51, + 75.51, + 73.03, + 73.22, + 54.4, + 58.66, + 59.86, + 76.54, + 61.69, + 59.34, + 51.37, + 69.26, + 74.22, + 77.91, + 64.39, + 65.75, + 59.91, + 48.87, + 63.44, + 51.95, + 47.29, + 50.43, + 43.68, + 47.0, + 81.3, + 53.71, + 63.8, + 75.19, + 78.29, + 72.79, + 77.09, + 70.43, + 82.44, + 71.37, + 70.23, + 81.01, + 66.87, + 71.58, + 100.0, + 99.31, + 70.08, + 51.96, + 61.26, + 56.41, + 76.23, + 93.83, + 73.84, + 70.48, + 56.87, + 71.89, + 94.87, + 76.39, + 61.01, + 77.35, + 77.8, + 79.66, + 91.45, + 68.46, + 87.01, + 73.04, + 91.33, + 72.9, + 82.08, + 72.93, + 63.9, + 70.69, + 88.97, + 84.0, + 65.52, + 94.3, + 90.7, + 69.6, + 86.05, + 93.79, + 88.39, + 85.26, + 58.0, + 60.71, + 91.48, + 91.15, + 82.11, + 63.17, + 52.55, + 69.76, + 85.56, + 84.41, + 73.54, + 81.44, + 75.5, + 66.93, + 92.62, + 97.41, + 84.15, + 92.57, + 92.32, + 59.88, + 54.78, + 92.44, + 90.34, + 58.57, + 50.13, + 59.91, + 80.19, + 84.67, + 99.45, + 74.85, + 74.1, + 71.8, + 89.08, + 79.86, + 69.87, + 66.47, + 78.97, + 71.07, + 89.08, + 84.09, + 76.71, + 85.12, + 85.53, + 73.9, + 76.81, + 81.84, + 85.29, + 69.71, + 87.44, + 99.93, + 100.0, + 97.68, + 98.16, + 99.9, + 75.53, + 94.66, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 93.77, + 93.93, + 95.35, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 99.63, + 97.9, + 96.6, + 94.85, + 100.0, + 100.0, + 99.55, + 97.73, + 96.82, + 47.48, + 68.08, + 77.18, + 79.59, + 100.0, + 96.7, + 99.87, + 100.0, + 100.0, + 100.0, + 97.82, + 93.96, + 84.53, + 80.02, + 61.44, + 72.75, + 99.78, + 90.37, + 87.56, + 65.73, + 93.2, + 77.99, + 51.13, + 30.91, + 45.18, + 67.19, + 44.18, + 60.99, + 88.35, + 92.05, + 70.74, + 41.81, + 95.71, + 71.9, + 70.15, + 61.81, + 99.29, + 89.75, + 77.82, + 100.0, + 45.69, + 31.16, + 39.58, + 39.08, + 46.29, + 29.34, + 41.52, + 50.03, + 90.34, + 59.06, + 25.25, + 31.37, + 65.32, + 81.17, + 32.95, + 46.82, + 46.79, + 39.78, + 73.21, + 100.0, + 100.0, + 89.85, + 45.14, + 53.89, + 59.39, + 44.42, + 64.39, + 52.37, + 43.6, + 49.56, + 65.33, + 53.45, + 61.83, + 96.49, + 97.63, + 95.68, + 89.2, + 82.93, + 94.37, + 97.89, + 98.16, + 90.57, + 99.51, + 97.55, + 96.12, + 82.93, + 90.34, + 89.85, + 78.47, + 62.34, + 76.0, + 49.98, + 76.24, + 54.76, + 38.31, + 34.04, + 32.83, + 51.41, + 89.67, + 59.76, + 39.63, + 31.77, + 57.44, + 80.59, + 68.64, + 50.21, + 83.49, + 76.16, + 92.22, + 83.36, + 89.47, + 83.41, + 73.8, + 81.07, + 94.81, + 86.57, + 81.82, + 76.79, + 64.36, + 58.53, + 78.49, + 61.72, + 47.91, + 65.39, + 60.41, + 86.27, + 88.39, + 33.75, + 23.48, + 51.26, + 34.16, + 31.53, + 32.09, + 86.64, + 92.52, + 86.64, + 55.83, + 63.58, + 55.45, + 72.62, + 99.14, + 77.66, + 72.59, + 100.0, + 73.51, + 64.45, + 85.03, + 56.24, + 84.97, + 60.97, + 54.27, + 81.21, + 92.06, + 77.79, + 45.25, + 49.08, + 62.04, + 81.37, + 97.99, + 66.7, + 55.68, + 67.23, + 60.3, + 60.45, + 71.01, + 53.53, + 59.54, + 90.69, + 84.64, + 72.58, + 82.5, + 72.63, + 60.77, + 65.61, + 76.3, + 64.39, + 60.5, + 57.86, + 55.45, + 82.21, + 75.87, + 81.11, + 85.73, + 93.7, + 71.97, + 59.63, + 63.34, + 55.99, + 64.94, + 76.38, + 56.22, + 55.66, + 53.48, + 61.65, + 62.01, + 52.35, + 47.67, + 42.09, + 76.37, + 67.88, + 62.45, + 51.94, + 31.77, + 46.61, + 53.84, + 62.07, + 79.58, + 65.53, + 77.17, + 75.15, + 64.7, + 69.37, + 56.98, + 71.77, + 81.91, + 54.78, + 70.51, + 71.47, + 77.38, + 88.27, + 45.52, + 32.44, + 22.23, + 30.21, + 64.44, + 63.49, + 31.65, + 20.63, + 22.14, + 27.06, + 25.45, + 33.37, + 47.61, + 28.61, + 31.11, + 32.79, + 85.89, + 97.18, + 39.01, + 50.48, + 54.15, + 53.08, + 96.03, + 50.13, + 29.7, + 46.46, + 33.62, + 22.51, + 40.08, + 35.25, + 46.51, + 37.12, + 35.69, + 31.89, + 31.47, + 32.89, + 39.57, + 42.7, + 79.63, + 62.13, + 38.67, + 31.41, + 22.4, + 43.04, + 51.97, + 43.21, + 28.24, + 35.71, + 36.96, + 34.99, + 68.03, + 69.84, + 32.82, + 33.13, + 49.25, + 41.13, + 47.44, + 62.92, + 45.69, + 31.55, + 35.41, + 35.54, + 44.97, + 63.19, + 55.38, + 56.47, + 66.77, + 64.75, + 68.92, + 74.64, + 48.34, + 52.08, + 55.16, + 42.71, + 37.73, + 73.43, + 58.66, + 48.91, + 57.05, + 42.19, + 62.68, + 38.63, + 41.4, + 56.32, + 56.01, + 58.9, + 57.19, + 48.69, + 35.9, + 41.79, + 44.64, + 42.18, + 31.97, + 41.34, + 36.05, + 40.57, + 45.78, + 37.85, + 37.47, + 40.96, + 99.48, + 73.37, + 62.89, + 70.27, + 52.61, + 42.92, + 52.16, + 57.79, + 50.47, + 61.7, + 58.95, + 52.84, + 52.36, + 55.84, + 55.58, + 44.59, + 54.31, + 55.93, + 40.35, + 57.31, + 35.47, + 36.95, + 47.82, + 46.83, + 56.09, + 50.74, + 61.31, + 58.62, + 61.92, + 56.81, + 55.06, + 48.72, + 54.62, + 44.02, + 43.7, + 36.9, + 87.33, + 52.26, + 51.06, + 47.93, + 48.31, + 48.89, + 76.77, + 58.82, + 49.04, + 44.01, + 44.55, + 52.22, + 43.99, + 50.33, + 52.5, + 41.54, + 33.07, + 55.03, + 63.06, + 40.94, + 51.08, + 50.1, + 50.38, + 35.38, + 45.8, + 29.12, + 22.65, + 27.5, + 42.38, + 55.01, + 34.61, + 30.62, + 34.03, + 38.42, + 28.07, + 26.4, + 34.47, + 31.06, + 32.42, + 38.64, + 41.5, + 35.72, + 64.62, + 36.24, + 35.34, + 51.1, + 34.19, + 36.09, + 41.59, + 47.53, + 38.48, + 39.56, + 39.22, + 40.64, + 37.69, + 31.58, + 31.54, + 31.16, + 36.48, + 35.14, + 38.3, + 42.38, + 38.99, + 42.46, + 42.08, + 39.4, + 47.07, + 39.16, + 37.34, + 60.93, + 47.84, + 41.95, + 35.1, + 31.55, + 65.32, + 48.92, + 36.8, + 26.65, + 25.74, + 41.19, + 40.7, + 41.67, + 38.4, + 37.28, + 51.83, + 43.46, + 38.07, + 43.93, + 47.51, + 43.07, + 38.86, + 42.59, + 53.87, + 48.86, + 56.17, + 60.0, + 77.41, + 38.7, + 57.12, + 34.8, + 42.68, + 37.6, + 39.84, + 35.48, + 53.17, + 43.79, + 20.11, + 20.32, + 37.5, + 26.79, + 22.88, + 30.96, + 32.7, + 24.09, + 28.81, + 33.07, + 28.88, + 29.33, + 37.86, + 34.38, + 26.13, + 31.42, + 35.15, + 40.53, + 35.28, + 33.1, + 40.16, + 49.39, + 41.79, + 40.23, + 39.19, + 44.41, + 45.41, + 40.51, + 35.57, + 45.15, + 46.74, + 40.4, + 34.57, + 37.52, + 24.27, + 34.85, + 30.15, + 53.62, + 55.48, + 37.3, + 46.52, + 27.38, + 21.82, + 34.89, + 30.56, + 60.29, + 40.02, + 26.87, + 43.47, + 39.04, + 42.45, + 25.04, + 23.13, + 33.03, + 38.44, + 38.02, + 37.59, + 43.32, + 41.33, + 40.7, + 55.17, + 52.39, + 40.0, + 27.1, + 31.81, + 39.07, + 35.14, + 34.57, + 34.6, + 35.23, + 59.95, + 51.47, + 28.49, + 48.85, + 36.27, + 38.9, + 38.87, + 51.28, + 37.99, + 46.87, + 37.22, + 35.14, + 57.17, + 60.29, + 38.86, + 54.95, + 45.4, + 51.05, + 54.77, + 29.38, + 40.23, + 35.87, + 36.33, + 28.58, + 34.26, + 45.43, + 37.99, + 33.03, + 35.63, + 44.89, + 30.88, + 33.25, + 47.43, + 75.61, + 54.76, + 51.93, + 38.79, + 39.13, + 33.46, + 21.9, + 30.51, + 35.77, + 32.57, + 43.4, + 39.93, + 56.13, + 49.48, + 40.49, + 42.39, + 37.99, + 31.84, + 41.66, + 40.28, + 45.43, + 50.04, + 35.96, + 32.61, + 35.12, + 39.59, + 34.51, + 39.85, + 44.55, + 36.55, + 38.48, + 42.66, + 51.28, + 39.11, + 47.33, + 56.97, + 44.15, + 34.69, + 38.91, + 40.17, + 39.4, + 46.7, + 43.46, + 36.26, + 40.16, + 38.19, + 42.77, + 44.36, + 41.55, + 34.58, + 39.02, + 41.03, + 40.84, + 38.85, + 32.36, + 30.8, + 25.3, + 32.24, + 36.92, + 55.47, + 50.57, + 36.92, + 23.18, + 23.13, + 31.52, + 29.3, + 16.89, + 57.04, + 39.55, + 23.2, + 26.96, + 22.43, + 23.01, + 29.15, + 33.52, + 25.37, + 29.84, + 20.44, + 21.6, + 25.92, + 31.53, + 23.41, + 28.31, + 36.52, + 37.41, + 36.99, + 33.45, + 35.38, + 31.42, + 39.15, + 35.05, + 34.45, + 47.62, + 83.08, + 57.68, + 42.64, + 38.15, + 45.57, + 59.89, + 32.75, + 29.04, + 28.88, + 29.93, + 38.12, + 38.3, + 21.59, + 21.1, + 33.19, + 46.13, + 21.98, + 25.67, + 24.44, + 77.03, + 28.4, + 26.62, + 40.72, + 36.75, + 36.37, + 41.12, + 37.42, + 30.05, + 25.03, + 23.31, + 47.09, + 44.41, + 20.44, + 20.96, + 39.63, + 30.06, + 29.29, + 32.92, + 32.6, + 33.75, + 23.49, + 32.14, + 29.38, + 35.83, + 30.83, + 32.09, + 35.72, + 41.97, + 30.9, + 27.41, + 31.0, + 26.54, + 34.53, + 35.61, + 33.73, + 40.21, + 41.6, + 65.37, + 42.18, + 29.55, + 26.12, + 31.83, + 28.7, + 35.27, + 65.87, + 41.4, + 33.3, + 36.7, + 40.97, + 39.1, + 54.68, + 38.7, + 33.19, + 27.97, + 30.65, + 24.23, + 33.0, + 29.41, + 37.48, + 44.0, + 45.16, + 39.82, + 43.23, + 33.7, + 23.95, + 35.04, + 33.63, + 60.5, + 45.71, + 54.87, + 45.76, + 39.61, + 35.41, + 57.05, + 63.9, + 66.63, + 40.74, + 36.19, + 34.72, + 45.67, + 42.0, + 53.09, + 31.05, + 24.27, + 17.33, + 23.58, + 31.87, + 21.94, + 28.21, + 28.39, + 53.85, + 31.88, + 46.23, + 41.49, + 30.95, + 31.61, + 27.16, + 34.15, + 25.25, + 24.02, + 17.48, + 19.88, + 27.33, + 40.57, + 37.04, + 19.48, + 15.92, + 14.22, + 18.09, + 14.24, + 0, + 18.74, + 17.05, + 28.7, + 24.31, + 25.85, + 22.62, + 26.36, + 22.95, + 25.71, + 25.56, + 36.34, + 35.3, + 39.38, + 28.63, + 55.36, + 22.64, + 35.4, + 40.39, + 28.5, + 35.15, + 44.77, + 41.52, + 31.99, + 34.38, + 19.33, + 17.0, + 32.93, + 23.96, + 29.46, + 54.93, + 47.47, + 51.1, + 27.83, + 33.81, + 20.35, + 29.63, + 45.78, + 26.91, + 26.61, + 48.25, + 83.83, + 44.33, + 58.34, + 45.39, + 30.52, + 44.88, + 39.57, + 66.91, + 77.95, + 54.64, + 32.11, + 29.32, + 35.93, + 33.26, + 36.73, + 50.19, + 37.28, + 55.08, + 33.52, + 37.6, + 27.75, + 33.46, + 45.89, + 36.52, + 40.12, + 34.23, + 36.43, + 39.52, + 38.44, + 35.95, + 38.36, + 88.01, + 59.97, + 99.61, + 83.25, + 74.76, + 49.76, + 45.23, + 33.11, + 29.47, + 30.16, + 29.25, + 34.2, + 34.56, + 20.46, + 39.23, + 82.53, + 68.96, + 32.83, + 46.68, + 39.29, + 20.36, + 47.21, + 44.08, + 37.98, + 54.52, + 46.99, + 43.71, + 52.05, + 37.43, + 61.68, + 30.91, + 41.29, + 32.41, + 50.05, + 50.22, + 31.07, + 63.39, + 48.74, + 50.67, + 53.09, + 37.16, + 36.93, + 50.74, + 37.91, + 33.26, + 29.41, + 17.37, + 35.66, + 31.67, + 22.05, + 25.73, + 31.0, + 33.47, + 34.6, + 31.44, + 29.75, + 44.58, + 40.3, + 32.58, + 53.11, + 36.5, + 43.5, + 60.48, + 64.9, + 49.33, + 49.24, + 45.46, + 42.4, + 62.47, + 41.3, + 39.42, + 21.27, + 27.61, + 41.27, + 34.43, + 43.02, + 33.81, + 21.62, + 31.62, + 28.43, + 34.81, + 33.16, + 39.35, + 45.18, + 28.64, + 28.86, + 32.26, + 22.57, + 64.77, + 40.52, + 32.51, + 31.15, + 39.13, + 40.1, + 30.44, + 35.88, + 70.31, + 58.09, + 55.66, + 50.59, + 35.91, + 49.42, + 45.93, + 41.94, + 42.22, + 30.25, + 35.49, + 35.12, + 31.76, + 31.12, + 57.5, + 47.81, + 18.95, + 47.6, + 62.0, + 31.42, + 51.85, + 27.14, + 15.88, + 39.39, + 36.63, + 41.8, + 24.51, + 36.53, + 40.76, + 60.31, + 78.54, + 60.03, + 56.25, + 36.16, + 46.78, + 27.95, + 27.95, + 50.24, + 28.14, + 20.59, + 24.74, + 26.5, + 26.8, + 23.1, + 25.35, + 57.18, + 27.09, + 57.04, + 38.08, + 27.48, + 22.78, + 41.73, + 34.09, + 36.57, + 24.31, + 32.29, + 28.52, + 33.33, + 31.33, + 41.96, + 23.8, + 31.65, + 27.45, + 34.94, + 54.7, + 26.52, + 43.7, + 47.29, + 42.53, + 28.63, + 36.05, + 32.86, + 44.43, + 33.73, + 23.08, + 32.85, + 33.59, + 37.12, + 25.59, + 19.8, + 29.91, + 33.17, + 30.1, + 56.12, + 91.54, + 77.95, + 29.38, + 30.49, + 36.71, + 42.26, + 25.22, + 31.47, + 35.1, + 31.37, + 36.05, + 32.58, + 19.45, + 35.09, + 29.04, + 21.16, + 29.68, + 23.83, + 41.08, + 38.12, + 26.47, + 22.87, + 26.96, + 23.66, + 41.07, + 22.37, + 13.65, + 17.39, + 23.59, + 22.95, + 23.34, + 22.12, + 23.03, + 17.5, + 25.08, + 25.09, + 33.78, + 18.79, + 20.44, + 20.32, + 21.3, + 17.0, + 18.12, + 30.18, + 28.67, + 31.18, + 29.98, + 20.28, + 25.23, + 27.29, + 25.26, + 21.71, + 29.4, + 39.85, + 20.01, + 20.23, + 17.35, + 40.22, + 80.01, + 39.46, + 25.57, + 21.04, + 18.9, + 19.7, + 19.53, + 16.31, + 23.87, + 18.64, + 23.24, + 18.9, + 19.42, + 27.94, + 32.61, + 26.04, + 33.8, + 16.95, + 17.74, + 14.46, + 43.23, + 65.17, + 35.33, + 31.79, + 23.27, + 28.34, + 52.9, + 31.59, + 51.46, + 70.3, + 33.42, + 24.06, + 66.36, + 31.08, + 46.82, + 33.49, + 77.38, + 37.24, + 24.03, + 28.58, + 33.92, + 31.83, + 32.22, + 33.11, + 31.86, + 45.74, + 80.5, + 53.45, + 48.17, + 44.57, + 44.22, + 40.67, + 24.58, + 24.39, + 23.13, + 38.53, + 46.85, + 31.17, + 31.74, + 29.04, + 37.03, + 51.01, + 55.59, + 40.82, + 31.98, + 39.28, + 47.52, + 36.07, + 31.45, + 27.31, + 55.28, + 40.5, + 30.54, + 29.78, + 55.95, + 71.07, + 58.47, + 68.94, + 55.03, + 37.06, + 33.73, + 59.71, + 52.42, + 31.76, + 50.73, + 73.96, + 55.1, + 60.48, + 54.73, + 52.14, + 51.03, + 27.7, + 26.85, + 37.64, + 51.48, + 48.95, + 54.65, + 31.44, + 33.94, + 58.4, + 47.43, + 50.13, + 66.77, + 72.26, + 61.79, + 68.61, + 70.26, + 51.28, + 45.75, + 20.1, + 42.79, + 55.73, + 64.4, + 39.0, + 33.23, + 46.44, + 55.57, + 53.98, + 45.34, + 50.99, + 54.44, + 45.23, + 31.03, + 35.2, + 25.21, + 19.9, + 21.17, + 20.48, + 14.66, + 16.03, + 14.22, + 18.01, + 24.48, + 30.09, + 23.89, + 26.05, + 47.47, + 36.09, + 36.35, + 23.27, + 33.95, + 24.85, + 36.01, + 39.69, + 20.61, + 31.69, + 19.59, + 21.47, + 46.12, + 38.03, + 18.17, + 18.62, + 25.18, + 18.06, + 27.69, + 14.73, + 21.59, + 0, + 19.75, + 22.03, + 24.91, + 19.99, + 14.21, + 16.24, + 15.68, + 17.5, + 18.11, + 17.95, + 28.15, + 23.82, + 22.73, + 27.94, + 21.05, + 23.11, + 21.81, + 26.57, + 23.03, + 24.32, + 18.1, + 16.33, + 17.86, + 35.92, + 26.21, + 22.3, + 22.24, + 30.95, + 28.47, + 26.81, + 63.83, + 19.63, + 13.7, + 14.98, + 43.41, + 24.33, + 31.13, + 34.14, + 40.13, + 20.79, + 25.52, + 31.92, + 25.01, + 17.98, + 25.09, + 52.01, + 40.99, + 27.87, + 14.81, + 17.36, + 20.4, + 13.64, + 14.88, + 20.02, + 19.64, + 19.36, + 27.9, + 20.85, + 34.65, + 32.09, + 16.44, + 17.9, + 42.42, + 75.36, + 52.55, + 27.28, + 26.96, + 31.69, + 22.07, + 25.72, + 24.6, + 19.21, + 18.6, + 18.72, + 19.09, + 16.69, + 16.24, + 18.29, + 24.67, + 25.9, + 40.98, + 20.8, + 30.91, + 51.67, + 30.51, + 25.54, + 35.97, + 21.99, + 51.66, + 43.31, + 32.83, + 29.18, + 56.39, + 32.68, + 18.75, + 70.32, + 55.17, + 42.5, + 87.63, + 92.07, + 93.99, + 94.57, + 99.24, + 100.0, + 71.04, + 85.72, + 100.0, + 100.0, + 100.0, + 98.94, + 87.74, + 100.0, + 97.8, + 59.89, + 65.96, + 100.0, + 84.47, + 90.39, + 73.42, + 97.83, + 67.97, + 39.13, + 21.14, + 33.46, + 84.3, + 84.37, + 86.83, + 96.62, + 99.47, + 72.08, + 64.38, + 53.64, + 67.02, + 33.1, + 60.18, + 96.95, + 100.0, + 74.48, + 51.17, + 52.04, + 51.65, + 70.58, + 60.58, + 87.38, + 79.4, + 52.16, + 85.22, + 58.0, + 86.39, + 95.76, + 62.39, + 67.53, + 73.1, + 72.57, + 75.12, + 77.04, + 42.19, + 44.58, + 71.3, + 60.49, + 43.97, + 83.43, + 46.25, + 78.74, + 59.36, + 70.17, + 78.74, + 100.0, + 99.76, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 89.67, + 76.45, + 98.23, + 97.18, + 98.54, + 100.0, + 90.54, + 87.97, + 100.0, + 100.0, + 100.0, + 100.0, + 77.13, + 42.67, + 94.93, + 98.01, + 100.0, + 99.87, + 81.64, + 88.43, + 89.87, + 73.54, + 99.91, + 95.39, + 85.31, + 59.46, + 60.75, + 90.85, + 86.76, + 94.54, + 63.71, + 66.71, + 61.49, + 72.75, + 49.71, + 81.23, + 88.04, + 93.47, + 79.3, + 76.7, + 60.51, + 36.44, + 34.99, + 50.9, + 44.47, + 86.42, + 56.15, + 41.3, + 34.26, + 44.54, + 44.42, + 36.45, + 33.79, + 34.01, + 36.27, + 34.45, + 25.51, + 25.55, + 39.38, + 34.43, + 32.18, + 26.12, + 26.6, + 27.92, + 27.92, + 28.17, + 32.74, + 29.43, + 25.04, + 29.07, + 32.2, + 45.39, + 34.0, + 32.89, + 56.44, + 30.26, + 17.36, + 36.58, + 20.67, + 27.2, + 30.26, + 36.32, + 25.76, + 47.13, + 38.72, + 50.9, + 21.35, + 23.1, + 35.07, + 24.56, + 24.73, + 19.92, + 25.29, + 25.92, + 24.36, + 24.75, + 19.02, + 23.59, + 22.89, + 26.09, + 22.28, + 26.3, + 19.06, + 22.0, + 18.48, + 18.99, + 23.03, + 23.37, + 24.95, + 25.14, + 24.22, + 21.56, + 31.18, + 24.28, + 33.56, + 20.4, + 29.67, + 24.7, + 30.19, + 39.07, + 27.93, + 31.9, + 36.21, + 35.82, + 46.5, + 33.13, + 44.78, + 40.81, + 95.41, + 100.0, + 93.54, + 100.0, + 100.0, + 100.0, + 80.81, + 100.0, + 100.0, + 88.2, + 91.08, + 61.49, + 100.0, + 90.87, + 94.58, + 94.13, + 99.01, + 80.34, + 48.17, + 100.0, + 81.7, + 49.74, + 83.24, + 80.81, + 60.56, + 36.54, + 56.49, + 64.36, + 33.4, + 26.02, + 41.05, + 37.45, + 39.06, + 99.45, + 42.96, + 84.97, + 100.0, + 99.83, + 85.4, + 96.75, + 100.0, + 65.53, + 86.68, + 88.88, + 85.67, + 70.17, + 92.58, + 51.18, + 65.65, + 54.03, + 99.36, + 88.43, + 96.42, + 100.0, + 74.48, + 95.48, + 85.71, + 87.71, + 100.0, + 99.81, + 97.51, + 97.78, + 96.23, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 93.37, + 74.83, + 86.64, + 86.96, + 76.54, + 76.96, + 94.71, + 99.23, + 76.2, + 100.0, + 94.62, + 99.88, + 96.32, + 76.37, + 89.51, + 100.0, + 100.0, + 99.96, + 100.0, + 100.0, + 93.12, + 79.01, + 100.0, + 99.9, + 97.05, + 26.54, + 92.41, + 87.12, + 43.69, + 32.18, + 87.6, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 97.11, + 100.0, + 100.0, + 97.43, + 99.86, + 55.93, + 72.34, + 90.9, + 67.1, + 76.09, + 99.77, + 100.0, + 100.0, + 100.0, + 86.18, + 50.25, + 38.74, + 56.88, + 72.66, + 82.88, + 74.18, + 94.47, + 91.35, + 63.74, + 58.91, + 87.69, + 66.06, + 89.48, + 70.99, + 55.91, + 79.7, + 90.24, + 80.91, + 88.47, + 69.63, + 64.84, + 52.16, + 85.62, + 68.31, + 67.81, + 66.22, + 62.31, + 58.97, + 43.04, + 43.01, + 54.57, + 52.63, + 60.69, + 100.0, + 100.0, + 100.0, + 61.98, + 30.29, + 43.17, + 55.17, + 95.8, + 42.6, + 93.03, + 99.26, + 63.87, + 57.22, + 52.77, + 69.38, + 78.31, + 86.71, + 81.09, + 74.74, + 79.62, + 85.66, + 69.56, + 82.65, + 40.13, + 55.98, + 87.47, + 80.36, + 73.52, + 50.28, + 48.95, + 41.21, + 81.72, + 47.95, + 73.21, + 39.29, + 99.71, + 100.0, + 71.74, + 62.42, + 73.83, + 69.64, + 60.43, + 69.45, + 88.36, + 91.85, + 89.25, + 81.14, + 65.83, + 56.16, + 79.18, + 74.04, + 57.21, + 55.62, + 65.57, + 61.5, + 54.56, + 53.36, + 54.59, + 65.28, + 66.04, + 80.5, + 99.57, + 93.77, + 47.83, + 33.96, + 62.65, + 52.8, + 53.67, + 77.75, + 91.63, + 64.18, + 43.54, + 82.49, + 100.0, + 95.93, + 53.59, + 61.08, + 54.49, + 46.23, + 73.38, + 45.85, + 66.87, + 100.0, + 77.86, + 65.48, + 94.55, + 74.31, + 57.85, + 34.87, + 53.25, + 51.22, + 76.76, + 62.5, + 53.46, + 59.17, + 89.92, + 100.0, + 100.0, + 96.95, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 63.15, + 21.9, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 51.41, + 40.09, + 38.16, + 100.0, + 84.56, + 0, + 0, + 66.67, + 29.88, + 53.32, + 100.0, + 100.0, + 37.26, + 0, + 0, + 19.87, + 100.0, + 100.0, + 79.45, + 0, + 26.03, + 100.0, + 76.63, + 0, + 0, + 0, + 32.06, + 51.33, + 0, + 83.1, + 62.12, + 56.25, + 63.13, + 0, + 0, + 0, + 0, + 0, + 0, + 43.17, + 38.4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 27.36, + 47.83, + 17.93, + 59.22, + 0, + 0, + 28.23, + 44.57, + 0, + 0, + 0, + 0, + 0, + 13.75, + 70.03, + 0, + 0, + 28.11, + 100.0, + 100.0, + 66.27, + 90.44, + 99.24, + 99.14, + 100.0, + 100.0, + 100.0, + 30.32, + 37.67, + 0, + 0, + 0, + 0, + 50.0, + 99.21, + 99.81, + 93.69, + 97.41, + 17.12, + 0, + 0, + 0, + 50.63, + 23.76, + 0, + 55.3, + 100.0, + 92.5, + 0, + 51.87, + 100.0, + 99.84, + 99.8, + 100.0, + 90.42, + 99.72, + 17.56, + 0, + 78.21, + 81.91, + 0, + 84.97, + 90.23, + 92.42, + 90.06, + 100.0, + 89.95, + 99.04, + 97.25, + 94.4, + 100.0, + 100.0, + 100.0, + 93.12, + 79.19, + 94.05, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 77.63, + 60.16, + 100.0, + 65.5, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 39.86, + 100.0, + 88.16, + 0, + 0, + 69.61, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 80.48, + 15.25, + 0, + 0, + 0, + 0, + 76.44, + 100.0, + 100.0, + 100.0, + 52.59, + 0, + 0, + 0, + 25.47, + 100.0, + 35.04, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 62.98, + 40.15, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 67.15, + 0, + 0, + 0, + 0, + 0, + 54.17, + 0, + 32.09, + 84.34, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 96.87, + 99.02, + 13.62, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 +] \ No newline at end of file diff --git a/time_differences.csv b/time_differences.csv new file mode 100644 index 0000000..de919b2 --- /dev/null +++ b/time_differences.csv @@ -0,0 +1,10179 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-06-04T00:00:00-07:00,19.946666081746418,0,0 +1,2025-06-04T00:01:00-07:00,19.924999237060547,60.0,60000.0 +2,2025-06-04T00:02:00-07:00,19.913999176025392,60.0,60000.0 +3,2025-06-04T00:03:00-07:00,19.90999984741211,60.0,60000.0 +4,2025-06-04T00:04:00-07:00,19.90833346048991,60.0,60000.0 +5,2025-06-04T00:05:00-07:00,19.906000518798827,60.0,60000.0 +6,2025-06-04T00:06:00-07:00,19.91666539510091,60.0,60000.0 +7,2025-06-04T00:07:00-07:00,19.924999237060547,60.0,60000.0 +8,2025-06-04T00:08:00-07:00,19.921999359130858,60.0,60000.0 +9,2025-06-04T00:09:00-07:00,19.924999237060547,60.0,60000.0 +10,2025-06-04T00:10:00-07:00,19.924999237060547,60.0,60000.0 +11,2025-06-04T00:11:00-07:00,19.929999542236327,60.0,60000.0 +12,2025-06-04T00:12:00-07:00,19.919999440511067,60.0,60000.0 +13,2025-06-04T00:13:00-07:00,19.91499900817871,60.0,60000.0 +14,2025-06-04T00:14:00-07:00,19.90999984741211,60.0,60000.0 +15,2025-06-04T00:15:00-07:00,19.905000686645508,60.0,60000.0 +16,2025-06-04T00:16:00-07:00,19.90333366394043,60.0,60000.0 +17,2025-06-04T00:17:00-07:00,19.89800033569336,60.0,60000.0 +18,2025-06-04T00:18:00-07:00,19.889999389648438,60.0,60000.0 +19,2025-06-04T00:19:00-07:00,19.883333841959637,60.0,60000.0 +20,2025-06-04T00:20:00-07:00,19.884000396728517,60.0,60000.0 +21,2025-06-04T00:21:00-07:00,19.880001068115234,60.0,60000.0 +22,2025-06-04T00:22:00-07:00,19.88166681925456,60.0,60000.0 +23,2025-06-04T00:23:00-07:00,19.880001068115234,60.0,60000.0 +24,2025-06-04T00:24:00-07:00,19.886666615804035,60.0,60000.0 +25,2025-06-04T00:25:00-07:00,19.883333841959637,60.0,60000.0 +26,2025-06-04T00:26:00-07:00,19.87800064086914,60.0,60000.0 +27,2025-06-04T00:27:00-07:00,19.868332544962566,60.0,60000.0 +28,2025-06-04T00:28:00-07:00,19.85999933878581,60.0,60000.0 +29,2025-06-04T00:29:00-07:00,19.847999572753906,60.0,60000.0 +30,2025-06-04T00:30:00-07:00,19.83333460489909,60.0,60000.0 +31,2025-06-04T00:31:00-07:00,19.820000330607098,60.0,60000.0 +32,2025-06-04T00:32:00-07:00,19.812001037597657,60.0,60000.0 +33,2025-06-04T00:33:00-07:00,19.80666732788086,60.0,60000.0 +34,2025-06-04T00:34:00-07:00,19.795000076293945,60.0,60000.0 +35,2025-06-04T00:35:00-07:00,19.786000061035157,60.0,60000.0 +36,2025-06-04T00:36:00-07:00,19.781665802001953,60.0,60000.0 +37,2025-06-04T00:37:00-07:00,19.770000457763672,60.0,60000.0 +38,2025-06-04T00:38:00-07:00,19.76399917602539,60.0,60000.0 +39,2025-06-04T00:39:00-07:00,19.753332773844402,60.0,60000.0 +40,2025-06-04T00:40:00-07:00,19.746667226155598,60.0,60000.0 +41,2025-06-04T00:41:00-07:00,19.73666826883952,60.0,60000.0 +42,2025-06-04T00:42:00-07:00,19.730000305175782,60.0,60000.0 +43,2025-06-04T00:43:00-07:00,19.718334197998047,60.0,60000.0 +44,2025-06-04T00:44:00-07:00,19.71666717529297,60.0,60000.0 +45,2025-06-04T00:45:00-07:00,19.716000366210938,60.0,60000.0 +46,2025-06-04T00:46:00-07:00,19.708332697550457,60.0,60000.0 +47,2025-06-04T00:47:00-07:00,19.696666717529297,60.0,60000.0 +48,2025-06-04T00:48:00-07:00,19.687998962402343,60.0,60000.0 +49,2025-06-04T00:49:00-07:00,19.67333221435547,60.0,60000.0 +50,2025-06-04T00:50:00-07:00,19.668331782023113,60.0,60000.0 +51,2025-06-04T00:51:00-07:00,19.663999176025392,60.0,60000.0 +52,2025-06-04T00:52:00-07:00,19.65833346048991,60.0,60000.0 +53,2025-06-04T00:53:00-07:00,19.650000890096027,60.0,60000.0 +54,2025-06-04T00:54:00-07:00,19.644000244140624,60.0,60000.0 +55,2025-06-04T00:55:00-07:00,19.639999389648438,60.0,60000.0 +56,2025-06-04T00:56:00-07:00,19.630001068115234,60.0,60000.0 +57,2025-06-04T00:57:00-07:00,19.62199935913086,60.0,60000.0 +58,2025-06-04T00:58:00-07:00,19.623332977294922,60.0,60000.0 +59,2025-06-04T00:59:00-07:00,19.611666361490887,60.0,60000.0 +60,2025-06-04T01:00:00-07:00,19.60199890136719,60.0,60000.0 +61,2025-06-04T01:01:00-07:00,19.59000015258789,60.0,60000.0 +62,2025-06-04T01:02:00-07:00,19.580001831054688,60.0,60000.0 +63,2025-06-04T01:03:00-07:00,19.580001831054688,60.0,60000.0 +64,2025-06-04T01:04:00-07:00,19.57833480834961,60.0,60000.0 +65,2025-06-04T01:05:00-07:00,19.575000762939453,60.0,60000.0 +66,2025-06-04T01:06:00-07:00,19.572000122070314,60.0,60000.0 +67,2025-06-04T01:07:00-07:00,19.571667353312176,60.0,60000.0 +68,2025-06-04T01:08:00-07:00,19.560000737508137,60.0,60000.0 +69,2025-06-04T01:09:00-07:00,19.55800018310547,60.0,60000.0 +70,2025-06-04T01:10:00-07:00,19.548332850138348,60.0,60000.0 +71,2025-06-04T01:11:00-07:00,19.541667302449543,60.0,60000.0 +72,2025-06-04T01:12:00-07:00,19.540000915527344,60.0,60000.0 +73,2025-06-04T01:13:00-07:00,19.538333892822266,60.0,60000.0 +74,2025-06-04T01:14:00-07:00,19.536666870117188,60.0,60000.0 +75,2025-06-04T01:15:00-07:00,19.527999114990234,60.0,60000.0 +76,2025-06-04T01:16:00-07:00,19.526666005452473,60.0,60000.0 +77,2025-06-04T01:17:00-07:00,19.52166684468587,60.0,60000.0 +78,2025-06-04T01:18:00-07:00,19.520000457763672,60.0,60000.0 +79,2025-06-04T01:19:00-07:00,19.516666412353516,60.0,60000.0 +80,2025-06-04T01:20:00-07:00,19.509998957316082,60.0,60000.0 +81,2025-06-04T01:21:00-07:00,19.503999328613283,60.0,60000.0 +82,2025-06-04T01:22:00-07:00,19.5016663869222,60.0,60000.0 +83,2025-06-04T01:23:00-07:00,19.491668065388996,60.0,60000.0 +84,2025-06-04T01:24:00-07:00,19.48833465576172,60.0,60000.0 +85,2025-06-04T01:25:00-07:00,19.484000396728515,60.0,60000.0 +86,2025-06-04T01:26:00-07:00,19.485000610351562,60.0,60000.0 +87,2025-06-04T01:27:00-07:00,19.475000381469727,60.0,60000.0 +88,2025-06-04T01:28:00-07:00,19.46800079345703,60.0,60000.0 +89,2025-06-04T01:29:00-07:00,19.463333129882812,60.0,60000.0 +90,2025-06-04T01:30:00-07:00,19.463333129882812,60.0,60000.0 +91,2025-06-04T01:31:00-07:00,19.459999084472656,60.0,60000.0 +92,2025-06-04T01:32:00-07:00,19.458332697550457,60.0,60000.0 +93,2025-06-04T01:33:00-07:00,19.456666310628254,60.0,60000.0 +94,2025-06-04T01:34:00-07:00,19.455999755859374,60.0,60000.0 +95,2025-06-04T01:35:00-07:00,19.453333536783855,60.0,60000.0 +96,2025-06-04T01:36:00-07:00,19.448333740234375,60.0,60000.0 +97,2025-06-04T01:37:00-07:00,19.450000762939453,60.0,60000.0 +98,2025-06-04T01:38:00-07:00,19.436665852864582,60.0,60000.0 +99,2025-06-04T01:39:00-07:00,19.434999465942383,60.0,60000.0 +100,2025-06-04T01:40:00-07:00,19.431999969482423,60.0,60000.0 +101,2025-06-04T01:41:00-07:00,19.426665623982746,60.0,60000.0 +102,2025-06-04T01:42:00-07:00,19.42333221435547,60.0,60000.0 +103,2025-06-04T01:43:00-07:00,19.421998596191408,60.0,60000.0 +104,2025-06-04T01:44:00-07:00,19.42166519165039,60.0,60000.0 +105,2025-06-04T01:45:00-07:00,19.41999880472819,60.0,60000.0 +106,2025-06-04T01:46:00-07:00,19.40999984741211,60.0,60000.0 +107,2025-06-04T01:47:00-07:00,19.405000686645508,60.0,60000.0 +108,2025-06-04T01:48:00-07:00,19.405000686645508,60.0,60000.0 +109,2025-06-04T01:49:00-07:00,19.400000762939452,60.0,60000.0 +110,2025-06-04T01:50:00-07:00,19.391666412353516,60.0,60000.0 +111,2025-06-04T01:51:00-07:00,19.383333841959637,60.0,60000.0 +112,2025-06-04T01:52:00-07:00,19.373999786376952,60.0,60000.0 +113,2025-06-04T01:53:00-07:00,19.3766663869222,60.0,60000.0 +114,2025-06-04T01:54:00-07:00,19.363333384195965,60.0,60000.0 +115,2025-06-04T01:55:00-07:00,19.369998931884766,60.0,60000.0 +116,2025-06-04T01:56:00-07:00,19.363333384195965,60.0,60000.0 +117,2025-06-04T01:57:00-07:00,19.364999771118164,60.0,60000.0 +118,2025-06-04T01:58:00-07:00,19.355999755859376,60.0,60000.0 +119,2025-06-04T01:59:00-07:00,19.35333251953125,60.0,60000.0 +120,2025-06-04T02:00:00-07:00,19.34666633605957,60.0,60000.0 +121,2025-06-04T02:01:00-07:00,19.33800048828125,60.0,60000.0 +122,2025-06-04T02:02:00-07:00,19.33500099182129,60.0,60000.0 +123,2025-06-04T02:03:00-07:00,19.33714348929269,60.0,60000.0 +124,2025-06-04T02:04:00-07:00,19.336000823974608,60.0,60000.0 +125,2025-06-04T02:05:00-07:00,19.330001831054688,60.0,60000.0 +126,2025-06-04T02:06:00-07:00,19.32833480834961,60.0,60000.0 +127,2025-06-04T02:07:00-07:00,19.31999969482422,60.0,60000.0 +128,2025-06-04T02:08:00-07:00,19.310000737508137,60.0,60000.0 +129,2025-06-04T02:09:00-07:00,19.298333485921223,60.0,60000.0 +130,2025-06-04T02:10:00-07:00,19.297999572753906,60.0,60000.0 +131,2025-06-04T02:11:00-07:00,19.293333053588867,60.0,60000.0 +132,2025-06-04T02:12:00-07:00,19.288333892822266,60.0,60000.0 +133,2025-06-04T02:13:00-07:00,19.281666437784832,60.0,60000.0 +134,2025-06-04T02:14:00-07:00,19.28199996948242,60.0,60000.0 +135,2025-06-04T02:15:00-07:00,19.281666437784832,60.0,60000.0 +136,2025-06-04T02:16:00-07:00,19.268332799275715,60.0,60000.0 +137,2025-06-04T02:17:00-07:00,19.259998321533203,60.0,60000.0 +138,2025-06-04T02:18:00-07:00,19.26333236694336,60.0,60000.0 +139,2025-06-04T02:19:00-07:00,19.2566655476888,60.0,60000.0 +140,2025-06-04T02:20:00-07:00,19.25199966430664,60.0,60000.0 +141,2025-06-04T02:21:00-07:00,19.25,60.0,60000.0 +142,2025-06-04T02:22:00-07:00,19.24333381652832,60.0,60000.0 +143,2025-06-04T02:23:00-07:00,19.231999969482423,60.0,60000.0 +144,2025-06-04T02:24:00-07:00,19.23666763305664,60.0,60000.0 +145,2025-06-04T02:25:00-07:00,19.231666564941406,60.0,60000.0 +146,2025-06-04T02:26:00-07:00,19.226666768391926,60.0,60000.0 +147,2025-06-04T02:27:00-07:00,19.220001220703125,60.0,60000.0 +148,2025-06-04T02:28:00-07:00,19.21666717529297,60.0,60000.0 +149,2025-06-04T02:29:00-07:00,19.209999084472656,60.0,60000.0 +150,2025-06-04T02:30:00-07:00,19.208332697550457,60.0,60000.0 +151,2025-06-04T02:31:00-07:00,19.21500015258789,60.0,60000.0 +152,2025-06-04T02:32:00-07:00,19.22000045776367,60.0,60000.0 +153,2025-06-04T02:33:00-07:00,19.21285683768136,60.0,60000.0 +154,2025-06-04T02:34:00-07:00,19.206666310628254,60.0,60000.0 +155,2025-06-04T02:35:00-07:00,19.205999755859374,60.0,60000.0 +156,2025-06-04T02:36:00-07:00,19.196666717529297,60.0,60000.0 +157,2025-06-04T02:37:00-07:00,19.191665649414062,60.0,60000.0 +158,2025-06-04T02:38:00-07:00,19.19199905395508,60.0,60000.0 +159,2025-06-04T02:39:00-07:00,19.184999465942383,60.0,60000.0 +160,2025-06-04T02:40:00-07:00,19.181666056315105,60.0,60000.0 +161,2025-06-04T02:41:00-07:00,19.177999877929686,60.0,60000.0 +162,2025-06-04T02:42:00-07:00,19.176666259765625,60.0,60000.0 +163,2025-06-04T02:43:00-07:00,19.17166582743327,60.0,60000.0 +164,2025-06-04T02:44:00-07:00,19.16199951171875,60.0,60000.0 +165,2025-06-04T02:45:00-07:00,19.15999984741211,60.0,60000.0 +166,2025-06-04T02:46:00-07:00,19.15833346048991,60.0,60000.0 +167,2025-06-04T02:47:00-07:00,19.152001190185548,60.0,60000.0 +168,2025-06-04T02:48:00-07:00,19.15333429972331,60.0,60000.0 +169,2025-06-04T02:49:00-07:00,19.14666748046875,60.0,60000.0 +170,2025-06-04T02:50:00-07:00,19.144000244140624,60.0,60000.0 +171,2025-06-04T02:51:00-07:00,19.141666412353516,60.0,60000.0 +172,2025-06-04T02:52:00-07:00,19.133333206176758,60.0,60000.0 +173,2025-06-04T02:53:00-07:00,19.123999786376952,60.0,60000.0 +174,2025-06-04T02:54:00-07:00,19.119999567667644,60.0,60000.0 +175,2025-06-04T02:55:00-07:00,19.118332544962566,60.0,60000.0 +176,2025-06-04T02:56:00-07:00,19.117999267578124,60.0,60000.0 +177,2025-06-04T02:57:00-07:00,19.118332544962566,60.0,60000.0 +178,2025-06-04T02:58:00-07:00,19.118332544962566,60.0,60000.0 +179,2025-06-04T02:59:00-07:00,19.112000274658204,60.0,60000.0 +180,2025-06-04T03:00:00-07:00,19.111666997273762,60.0,60000.0 +181,2025-06-04T03:01:00-07:00,19.106666564941406,60.0,60000.0 +182,2025-06-04T03:02:00-07:00,19.103998565673827,60.0,60000.0 +183,2025-06-04T03:03:00-07:00,19.09833272298177,60.0,60000.0 +184,2025-06-04T03:04:00-07:00,19.094999313354492,60.0,60000.0 +185,2025-06-04T03:05:00-07:00,19.09000015258789,60.0,60000.0 +186,2025-06-04T03:06:00-07:00,19.09166653951009,60.0,60000.0 +187,2025-06-04T03:07:00-07:00,19.08666737874349,60.0,60000.0 +188,2025-06-04T03:08:00-07:00,19.080001068115234,60.0,60000.0 +189,2025-06-04T03:09:00-07:00,19.06999969482422,60.0,60000.0 +190,2025-06-04T03:10:00-07:00,19.061667760213215,60.0,60000.0 +191,2025-06-04T03:11:00-07:00,19.060000737508137,60.0,60000.0 +192,2025-06-04T03:12:00-07:00,19.05600051879883,60.0,60000.0 +193,2025-06-04T03:13:00-07:00,19.05500030517578,60.0,60000.0 +194,2025-06-04T03:14:00-07:00,19.058334350585938,60.0,60000.0 +195,2025-06-04T03:15:00-07:00,19.047999572753906,60.0,60000.0 +196,2025-06-04T03:16:00-07:00,19.045000076293945,60.0,60000.0 +197,2025-06-04T03:17:00-07:00,19.045000076293945,60.0,60000.0 +198,2025-06-04T03:18:00-07:00,19.044000244140626,60.0,60000.0 +199,2025-06-04T03:19:00-07:00,19.041667302449543,60.0,60000.0 +200,2025-06-04T03:20:00-07:00,19.031665802001953,60.0,60000.0 +201,2025-06-04T03:21:00-07:00,19.029998779296875,60.0,60000.0 +202,2025-06-04T03:22:00-07:00,19.03333282470703,60.0,60000.0 +203,2025-06-04T03:23:00-07:00,19.03499984741211,60.0,60000.0 +204,2025-06-04T03:24:00-07:00,19.033999633789062,60.0,60000.0 +205,2025-06-04T03:25:00-07:00,19.031665802001953,60.0,60000.0 +206,2025-06-04T03:26:00-07:00,19.029999415079754,60.0,60000.0 +207,2025-06-04T03:27:00-07:00,19.023999786376955,60.0,60000.0 +208,2025-06-04T03:28:00-07:00,19.01333236694336,60.0,60000.0 +209,2025-06-04T03:29:00-07:00,19.013333002726238,60.0,60000.0 +210,2025-06-04T03:30:00-07:00,19.003999328613283,60.0,60000.0 +211,2025-06-04T03:31:00-07:00,18.9983336130778,60.0,60000.0 +212,2025-06-04T03:32:00-07:00,18.9950008392334,60.0,60000.0 +213,2025-06-04T03:33:00-07:00,18.9880012512207,60.0,60000.0 +214,2025-06-04T03:34:00-07:00,18.990001678466797,60.0,60000.0 +215,2025-06-04T03:35:00-07:00,18.978333791097004,60.0,60000.0 +216,2025-06-04T03:36:00-07:00,18.979999542236328,60.0,60000.0 +217,2025-06-04T03:37:00-07:00,18.981666564941406,60.0,60000.0 +218,2025-06-04T03:38:00-07:00,18.979999542236328,60.0,60000.0 +219,2025-06-04T03:39:00-07:00,18.979999542236328,60.0,60000.0 +220,2025-06-04T03:40:00-07:00,18.976666768391926,60.0,60000.0 +221,2025-06-04T03:41:00-07:00,18.971667607625324,60.0,60000.0 +222,2025-06-04T03:42:00-07:00,18.972000885009766,60.0,60000.0 +223,2025-06-04T03:43:00-07:00,18.96666717529297,60.0,60000.0 +224,2025-06-04T03:44:00-07:00,18.96714346749442,60.0,60000.0 +225,2025-06-04T03:45:00-07:00,18.963999938964843,60.0,60000.0 +226,2025-06-04T03:46:00-07:00,18.951666514078777,60.0,60000.0 +227,2025-06-04T03:47:00-07:00,18.946666717529297,60.0,60000.0 +228,2025-06-04T03:48:00-07:00,18.948000335693358,60.0,60000.0 +229,2025-06-04T03:49:00-07:00,18.951667149861652,60.0,60000.0 +230,2025-06-04T03:50:00-07:00,18.951667149861652,60.0,60000.0 +231,2025-06-04T03:51:00-07:00,18.9359992980957,60.0,60000.0 +232,2025-06-04T03:52:00-07:00,18.934999465942383,60.0,60000.0 +233,2025-06-04T03:53:00-07:00,18.926666259765625,60.0,60000.0 +234,2025-06-04T03:54:00-07:00,18.925999450683594,60.0,60000.0 +235,2025-06-04T03:55:00-07:00,18.92166582743327,60.0,60000.0 +236,2025-06-04T03:56:00-07:00,18.91333262125651,60.0,60000.0 +237,2025-06-04T03:57:00-07:00,18.906000518798827,60.0,60000.0 +238,2025-06-04T03:58:00-07:00,18.900000890096027,60.0,60000.0 +239,2025-06-04T03:59:00-07:00,18.889999389648438,60.0,60000.0 +240,2025-06-04T04:00:00-07:00,18.885000228881836,60.0,60000.0 +241,2025-06-04T04:01:00-07:00,18.88000030517578,60.0,60000.0 +242,2025-06-04T04:02:00-07:00,18.875,60.0,60000.0 +243,2025-06-04T04:03:00-07:00,18.863333384195965,60.0,60000.0 +244,2025-06-04T04:04:00-07:00,18.862000274658204,60.0,60000.0 +245,2025-06-04T04:05:00-07:00,18.858333587646484,60.0,60000.0 +246,2025-06-04T04:06:00-07:00,18.851665496826172,60.0,60000.0 +247,2025-06-04T04:07:00-07:00,18.84000015258789,60.0,60000.0 +248,2025-06-04T04:08:00-07:00,18.84666570027669,60.0,60000.0 +249,2025-06-04T04:09:00-07:00,18.84000015258789,60.0,60000.0 +250,2025-06-04T04:10:00-07:00,18.83400115966797,60.0,60000.0 +251,2025-06-04T04:11:00-07:00,18.830001831054688,60.0,60000.0 +252,2025-06-04T04:12:00-07:00,18.83000119527181,60.0,60000.0 +253,2025-06-04T04:13:00-07:00,18.824000549316406,60.0,60000.0 +254,2025-06-04T04:14:00-07:00,18.821666717529297,60.0,60000.0 +255,2025-06-04T04:15:00-07:00,18.821666717529297,60.0,60000.0 +256,2025-06-04T04:16:00-07:00,18.81999969482422,60.0,60000.0 +257,2025-06-04T04:17:00-07:00,18.825000762939453,60.0,60000.0 +258,2025-06-04T04:18:00-07:00,18.823334376017254,60.0,60000.0 +259,2025-06-04T04:19:00-07:00,18.812001037597657,60.0,60000.0 +260,2025-06-04T04:20:00-07:00,18.808334350585938,60.0,60000.0 +261,2025-06-04T04:21:00-07:00,18.80666732788086,60.0,60000.0 +262,2025-06-04T04:22:00-07:00,18.80600051879883,60.0,60000.0 +263,2025-06-04T04:23:00-07:00,18.804000091552734,60.0,60000.0 +264,2025-06-04T04:24:00-07:00,18.799999237060547,60.0,60000.0 +265,2025-06-04T04:25:00-07:00,18.795999908447264,60.0,60000.0 +266,2025-06-04T04:26:00-07:00,18.801666259765625,60.0,60000.0 +267,2025-06-04T04:27:00-07:00,18.793333689371746,60.0,60000.0 +268,2025-06-04T04:28:00-07:00,18.793999481201173,60.0,60000.0 +269,2025-06-04T04:29:00-07:00,18.791429247174943,60.0,60000.0 +270,2025-06-04T04:30:00-07:00,18.793333689371746,60.0,60000.0 +271,2025-06-04T04:31:00-07:00,18.790000915527344,60.0,60000.0 +272,2025-06-04T04:32:00-07:00,18.791666666666668,60.0,60000.0 +273,2025-06-04T04:33:00-07:00,18.788333892822266,60.0,60000.0 +274,2025-06-04T04:34:00-07:00,18.786000061035157,60.0,60000.0 +275,2025-06-04T04:35:00-07:00,18.779999415079754,60.0,60000.0 +276,2025-06-04T04:36:00-07:00,18.779998779296875,60.0,60000.0 +277,2025-06-04T04:37:00-07:00,18.777999877929688,60.0,60000.0 +278,2025-06-04T04:38:00-07:00,18.773333231608074,60.0,60000.0 +279,2025-06-04T04:39:00-07:00,18.764999389648438,60.0,60000.0 +280,2025-06-04T04:40:00-07:00,18.757498741149902,60.0,60000.0 +281,2025-06-04T04:41:00-07:00,18.741668065388996,60.0,60000.0 +282,2025-06-04T04:42:00-07:00,18.723333994547527,60.0,60000.0 +283,2025-06-04T04:43:00-07:00,18.713999938964843,60.0,60000.0 +284,2025-06-04T04:44:00-07:00,18.713333129882812,60.0,60000.0 +285,2025-06-04T04:45:00-07:00,18.720000584920246,60.0,60000.0 +286,2025-06-04T04:46:00-07:00,18.71666653951009,60.0,60000.0 +287,2025-06-04T04:47:00-07:00,18.720001220703125,60.0,60000.0 +288,2025-06-04T04:48:00-07:00,18.709999720255535,60.0,60000.0 +289,2025-06-04T04:49:00-07:00,18.708333333333332,60.0,60000.0 +290,2025-06-04T04:50:00-07:00,18.700000762939453,60.0,60000.0 +291,2025-06-04T04:51:00-07:00,18.691665649414062,60.0,60000.0 +292,2025-06-04T04:52:00-07:00,18.695000330607098,60.0,60000.0 +293,2025-06-04T04:53:00-07:00,18.687998962402343,60.0,60000.0 +294,2025-06-04T04:54:00-07:00,18.688332239786785,60.0,60000.0 +295,2025-06-04T04:55:00-07:00,18.688332239786785,60.0,60000.0 +296,2025-06-04T04:56:00-07:00,18.681999969482423,60.0,60000.0 +297,2025-06-04T04:57:00-07:00,18.678333282470703,60.0,60000.0 +298,2025-06-04T04:58:00-07:00,18.679999669392902,60.0,60000.0 +299,2025-06-04T04:59:00-07:00,18.671998596191408,60.0,60000.0 +300,2025-06-04T05:00:00-07:00,18.66166623433431,60.0,60000.0 +301,2025-06-04T05:01:00-07:00,18.65999984741211,60.0,60000.0 +302,2025-06-04T05:02:00-07:00,18.65999984741211,60.0,60000.0 +303,2025-06-04T05:03:00-07:00,18.651667912801106,60.0,60000.0 +304,2025-06-04T05:04:00-07:00,18.650000890096027,60.0,60000.0 +305,2025-06-04T05:05:00-07:00,18.652000427246094,60.0,60000.0 +306,2025-06-04T05:06:00-07:00,18.64666684468587,60.0,60000.0 +307,2025-06-04T05:07:00-07:00,18.645000457763672,60.0,60000.0 +308,2025-06-04T05:08:00-07:00,18.644000244140624,60.0,60000.0 +309,2025-06-04T05:09:00-07:00,18.633333841959637,60.0,60000.0 +310,2025-06-04T05:10:00-07:00,18.625,60.0,60000.0 +311,2025-06-04T05:11:00-07:00,18.615999603271483,60.0,60000.0 +312,2025-06-04T05:12:00-07:00,18.616666793823242,60.0,60000.0 +313,2025-06-04T05:13:00-07:00,18.609999974568684,60.0,60000.0 +314,2025-06-04T05:14:00-07:00,18.612000274658204,60.0,60000.0 +315,2025-06-04T05:15:00-07:00,18.606665929158527,60.0,60000.0 +316,2025-06-04T05:16:00-07:00,18.601665496826172,60.0,60000.0 +317,2025-06-04T05:17:00-07:00,18.59000015258789,60.0,60000.0 +318,2025-06-04T05:18:00-07:00,18.58666737874349,60.0,60000.0 +319,2025-06-04T05:19:00-07:00,18.58666737874349,60.0,60000.0 +320,2025-06-04T05:20:00-07:00,18.58400115966797,60.0,60000.0 +321,2025-06-04T05:21:00-07:00,18.58000119527181,60.0,60000.0 +322,2025-06-04T05:22:00-07:00,18.57833480834961,60.0,60000.0 +323,2025-06-04T05:23:00-07:00,18.58200149536133,60.0,60000.0 +324,2025-06-04T05:24:00-07:00,18.57666778564453,60.0,60000.0 +325,2025-06-04T05:25:00-07:00,18.571667353312176,60.0,60000.0 +326,2025-06-04T05:26:00-07:00,18.56999969482422,60.0,60000.0 +327,2025-06-04T05:27:00-07:00,18.558334350585938,60.0,60000.0 +328,2025-06-04T05:28:00-07:00,18.55500030517578,60.0,60000.0 +329,2025-06-04T05:29:00-07:00,18.553333282470703,60.0,60000.0 +330,2025-06-04T05:30:00-07:00,18.545999908447264,60.0,60000.0 +331,2025-06-04T05:31:00-07:00,18.545000076293945,60.0,60000.0 +332,2025-06-04T05:32:00-07:00,18.545000076293945,60.0,60000.0 +333,2025-06-04T05:33:00-07:00,18.53800048828125,60.0,60000.0 +334,2025-06-04T05:34:00-07:00,18.53333282470703,60.0,60000.0 +335,2025-06-04T05:35:00-07:00,18.529998779296875,60.0,60000.0 +336,2025-06-04T05:36:00-07:00,18.529998779296875,60.0,60000.0 +337,2025-06-04T05:37:00-07:00,18.529998779296875,60.0,60000.0 +338,2025-06-04T05:38:00-07:00,18.528332392374676,60.0,60000.0 +339,2025-06-04T05:39:00-07:00,18.525999450683592,60.0,60000.0 +340,2025-06-04T05:40:00-07:00,18.514999389648438,60.0,60000.0 +341,2025-06-04T05:41:00-07:00,18.509998957316082,60.0,60000.0 +342,2025-06-04T05:42:00-07:00,18.507999420166016,60.0,60000.0 +343,2025-06-04T05:43:00-07:00,18.509998321533203,60.0,60000.0 +344,2025-06-04T05:44:00-07:00,18.509998321533203,60.0,60000.0 +345,2025-06-04T05:45:00-07:00,18.509999084472657,60.0,60000.0 +346,2025-06-04T05:46:00-07:00,18.5066655476888,60.0,60000.0 +347,2025-06-04T05:47:00-07:00,18.508331934611004,60.0,60000.0 +348,2025-06-04T05:48:00-07:00,18.5119987487793,60.0,60000.0 +349,2025-06-04T05:49:00-07:00,18.518333435058594,60.0,60000.0 +350,2025-06-04T05:50:00-07:00,18.524999618530273,60.0,60000.0 +351,2025-06-04T05:51:00-07:00,18.529998779296875,60.0,60000.0 +352,2025-06-04T05:52:00-07:00,18.529998779296875,60.0,60000.0 +353,2025-06-04T05:53:00-07:00,18.53499984741211,60.0,60000.0 +354,2025-06-04T05:54:00-07:00,18.545999908447264,60.0,60000.0 +355,2025-06-04T05:55:00-07:00,18.55500030517578,60.0,60000.0 +356,2025-06-04T05:56:00-07:00,18.570000330607098,60.0,60000.0 +357,2025-06-04T05:57:00-07:00,18.58800048828125,60.0,60000.0 +358,2025-06-04T05:58:00-07:00,18.621666590372723,60.0,60000.0 +359,2025-06-04T05:59:00-07:00,18.663333257039387,60.0,60000.0 +360,2025-06-04T06:00:00-07:00,18.692000579833984,60.0,60000.0 +361,2025-06-04T06:01:00-07:00,18.72333272298177,60.0,60000.0 +362,2025-06-04T06:02:00-07:00,18.75499979654948,60.0,60000.0 +363,2025-06-04T06:03:00-07:00,18.784000396728516,60.0,60000.0 +364,2025-06-04T06:04:00-07:00,18.803333918253582,60.0,60000.0 +365,2025-06-04T06:05:00-07:00,18.823333104451496,60.0,60000.0 +366,2025-06-04T06:06:00-07:00,18.84000015258789,60.0,60000.0 +367,2025-06-04T06:07:00-07:00,18.849999745686848,60.0,60000.0 +368,2025-06-04T06:08:00-07:00,18.864999135335285,60.0,60000.0 +369,2025-06-04T06:09:00-07:00,18.87199935913086,60.0,60000.0 +370,2025-06-04T06:10:00-07:00,18.875,60.0,60000.0 +371,2025-06-04T06:11:00-07:00,18.861666997273762,60.0,60000.0 +372,2025-06-04T06:12:00-07:00,18.85,60.0,60000.0 +373,2025-06-04T06:13:00-07:00,18.830000559488933,60.0,60000.0 +374,2025-06-04T06:14:00-07:00,18.80666669209798,60.0,60000.0 +375,2025-06-04T06:15:00-07:00,18.79199981689453,60.0,60000.0 +376,2025-06-04T06:16:00-07:00,18.771666208902996,60.0,60000.0 +377,2025-06-04T06:17:00-07:00,18.759998957316082,60.0,60000.0 +378,2025-06-04T06:18:00-07:00,18.744000244140626,60.0,60000.0 +379,2025-06-04T06:19:00-07:00,18.728333791097004,60.0,60000.0 +380,2025-06-04T06:20:00-07:00,18.720001220703125,60.0,60000.0 +381,2025-06-04T06:21:00-07:00,18.70199966430664,60.0,60000.0 +382,2025-06-04T06:22:00-07:00,18.681666056315105,60.0,60000.0 +383,2025-06-04T06:23:00-07:00,18.66428484235491,60.0,60000.0 +384,2025-06-04T06:24:00-07:00,18.64166768391927,60.0,60000.0 +385,2025-06-04T06:25:00-07:00,18.625999450683594,60.0,60000.0 +386,2025-06-04T06:26:00-07:00,18.614999771118164,60.0,60000.0 +387,2025-06-04T06:27:00-07:00,18.599999745686848,60.0,60000.0 +388,2025-06-04T06:28:00-07:00,18.582000732421875,60.0,60000.0 +389,2025-06-04T06:29:00-07:00,18.56166712443034,60.0,60000.0 +390,2025-06-04T06:30:00-07:00,18.543333689371746,60.0,60000.0 +391,2025-06-04T06:31:00-07:00,18.53800048828125,60.0,60000.0 +392,2025-06-04T06:32:00-07:00,18.529998779296875,60.0,60000.0 +393,2025-06-04T06:33:00-07:00,18.521666208902996,60.0,60000.0 +394,2025-06-04T06:34:00-07:00,18.5,60.0,60000.0 +395,2025-06-04T06:35:00-07:00,18.49333381652832,60.0,60000.0 +396,2025-06-04T06:36:00-07:00,18.483333587646484,60.0,60000.0 +397,2025-06-04T06:37:00-07:00,18.476000213623045,60.0,60000.0 +398,2025-06-04T06:38:00-07:00,18.471667607625324,60.0,60000.0 +399,2025-06-04T06:39:00-07:00,18.46500015258789,60.0,60000.0 +400,2025-06-04T06:40:00-07:00,18.455999755859374,60.0,60000.0 +401,2025-06-04T06:41:00-07:00,18.44499969482422,60.0,60000.0 +402,2025-06-04T06:42:00-07:00,18.436665852864582,60.0,60000.0 +403,2025-06-04T06:43:00-07:00,18.425999450683594,60.0,60000.0 +404,2025-06-04T06:44:00-07:00,18.42333221435547,60.0,60000.0 +405,2025-06-04T06:45:00-07:00,18.41333262125651,60.0,60000.0 +406,2025-06-04T06:46:00-07:00,18.41199951171875,60.0,60000.0 +407,2025-06-04T06:47:00-07:00,18.406667073567707,60.0,60000.0 +408,2025-06-04T06:48:00-07:00,18.3971437726702,60.0,60000.0 +409,2025-06-04T06:49:00-07:00,18.391999816894533,60.0,60000.0 +410,2025-06-04T06:50:00-07:00,18.388333002726238,60.0,60000.0 +411,2025-06-04T06:51:00-07:00,18.391667048136394,60.0,60000.0 +412,2025-06-04T06:52:00-07:00,18.39000015258789,60.0,60000.0 +413,2025-06-04T06:53:00-07:00,18.388333002726238,60.0,60000.0 +414,2025-06-04T06:54:00-07:00,18.389999389648438,60.0,60000.0 +415,2025-06-04T06:55:00-07:00,18.386000061035155,60.0,60000.0 +416,2025-06-04T06:56:00-07:00,18.383333841959637,60.0,60000.0 +417,2025-06-04T06:57:00-07:00,18.385000228881836,60.0,60000.0 +418,2025-06-04T06:58:00-07:00,18.386000061035155,60.0,60000.0 +419,2025-06-04T06:59:00-07:00,18.381667455037434,60.0,60000.0 +420,2025-06-04T07:00:00-07:00,18.375,60.0,60000.0 +421,2025-06-04T07:01:00-07:00,18.369998931884766,60.0,60000.0 +422,2025-06-04T07:02:00-07:00,18.364999771118164,60.0,60000.0 +423,2025-06-04T07:03:00-07:00,18.356666564941406,60.0,60000.0 +424,2025-06-04T07:04:00-07:00,18.360000610351562,60.0,60000.0 +425,2025-06-04T07:05:00-07:00,18.361666997273762,60.0,60000.0 +426,2025-06-04T07:06:00-07:00,18.356665929158527,60.0,60000.0 +427,2025-06-04T07:07:00-07:00,18.35199890136719,60.0,60000.0 +428,2025-06-04T07:08:00-07:00,18.348332087198894,60.0,60000.0 +429,2025-06-04T07:09:00-07:00,18.34666570027669,60.0,60000.0 +430,2025-06-04T07:10:00-07:00,18.34000015258789,60.0,60000.0 +431,2025-06-04T07:11:00-07:00,18.33333460489909,60.0,60000.0 +432,2025-06-04T07:12:00-07:00,18.33333460489909,60.0,60000.0 +433,2025-06-04T07:13:00-07:00,18.328001403808592,60.0,60000.0 +434,2025-06-04T07:14:00-07:00,18.323333740234375,60.0,60000.0 +435,2025-06-04T07:15:00-07:00,18.323333740234375,60.0,60000.0 +436,2025-06-04T07:16:00-07:00,18.323333740234375,60.0,60000.0 +437,2025-06-04T07:17:00-07:00,18.31800079345703,60.0,60000.0 +438,2025-06-04T07:18:00-07:00,18.313334147135418,60.0,60000.0 +439,2025-06-04T07:19:00-07:00,18.31000010172526,60.0,60000.0 +440,2025-06-04T07:20:00-07:00,18.3,60.0,60000.0 +441,2025-06-04T07:21:00-07:00,18.298333485921223,60.0,60000.0 +442,2025-06-04T07:22:00-07:00,18.291666666666668,60.0,60000.0 +443,2025-06-04T07:23:00-07:00,18.28199920654297,60.0,60000.0 +444,2025-06-04T07:24:00-07:00,18.28499984741211,60.0,60000.0 +445,2025-06-04T07:25:00-07:00,18.274999618530273,60.0,60000.0 +446,2025-06-04T07:26:00-07:00,18.275999450683592,60.0,60000.0 +447,2025-06-04T07:27:00-07:00,18.279998779296875,60.0,60000.0 +448,2025-06-04T07:28:00-07:00,18.276666005452473,60.0,60000.0 +449,2025-06-04T07:29:00-07:00,18.275999450683592,60.0,60000.0 +450,2025-06-04T07:30:00-07:00,18.27166684468587,60.0,60000.0 +451,2025-06-04T07:31:00-07:00,18.274998982747395,60.0,60000.0 +452,2025-06-04T07:32:00-07:00,18.27199935913086,60.0,60000.0 +453,2025-06-04T07:33:00-07:00,18.268333435058594,60.0,60000.0 +454,2025-06-04T07:34:00-07:00,18.266666412353516,60.0,60000.0 +455,2025-06-04T07:35:00-07:00,18.265999603271485,60.0,60000.0 +456,2025-06-04T07:36:00-07:00,18.258331934611004,60.0,60000.0 +457,2025-06-04T07:37:00-07:00,18.259998321533203,60.0,60000.0 +458,2025-06-04T07:38:00-07:00,18.253999328613283,60.0,60000.0 +459,2025-06-04T07:39:00-07:00,18.2516663869222,60.0,60000.0 +460,2025-06-04T07:40:00-07:00,18.246667226155598,60.0,60000.0 +461,2025-06-04T07:41:00-07:00,18.246000671386717,60.0,60000.0 +462,2025-06-04T07:42:00-07:00,18.2433344523112,60.0,60000.0 +463,2025-06-04T07:43:00-07:00,18.240001678466797,60.0,60000.0 +464,2025-06-04T07:44:00-07:00,18.23600082397461,60.0,60000.0 +465,2025-06-04T07:45:00-07:00,18.235000610351562,60.0,60000.0 +466,2025-06-04T07:46:00-07:00,18.22833315531413,60.0,60000.0 +467,2025-06-04T07:47:00-07:00,18.231999969482423,60.0,60000.0 +468,2025-06-04T07:48:00-07:00,18.223333994547527,60.0,60000.0 +469,2025-06-04T07:49:00-07:00,18.220000584920246,60.0,60000.0 +470,2025-06-04T07:50:00-07:00,18.220001220703125,60.0,60000.0 +471,2025-06-04T07:51:00-07:00,18.218334197998047,60.0,60000.0 +472,2025-06-04T07:52:00-07:00,18.21500015258789,60.0,60000.0 +473,2025-06-04T07:53:00-07:00,18.20999984741211,60.0,60000.0 +474,2025-06-04T07:54:00-07:00,18.21333376566569,60.0,60000.0 +475,2025-06-04T07:55:00-07:00,18.21500015258789,60.0,60000.0 +476,2025-06-04T07:56:00-07:00,18.209999084472656,60.0,60000.0 +477,2025-06-04T07:57:00-07:00,18.211666107177734,60.0,60000.0 +478,2025-06-04T07:58:00-07:00,18.213333129882812,60.0,60000.0 +479,2025-06-04T07:59:00-07:00,18.213999938964843,60.0,60000.0 +480,2025-06-04T08:00:00-07:00,18.21500015258789,60.0,60000.0 +481,2025-06-04T08:01:00-07:00,18.213333129882812,60.0,60000.0 +482,2025-06-04T08:02:00-07:00,18.209999084472656,60.0,60000.0 +483,2025-06-04T08:03:00-07:00,18.203333536783855,60.0,60000.0 +484,2025-06-04T08:04:00-07:00,18.204999923706055,60.0,60000.0 +485,2025-06-04T08:05:00-07:00,18.200000762939453,60.0,60000.0 +486,2025-06-04T08:06:00-07:00,18.19499969482422,60.0,60000.0 +487,2025-06-04T08:07:00-07:00,18.198333740234375,60.0,60000.0 +488,2025-06-04T08:08:00-07:00,18.202000427246094,60.0,60000.0 +489,2025-06-04T08:09:00-07:00,18.204999923706055,60.0,60000.0 +490,2025-06-04T08:10:00-07:00,18.196666717529297,60.0,60000.0 +491,2025-06-04T08:11:00-07:00,18.195999908447266,60.0,60000.0 +492,2025-06-04T08:12:00-07:00,18.19333267211914,60.0,60000.0 +493,2025-06-04T08:13:00-07:00,18.19499969482422,60.0,60000.0 +494,2025-06-04T08:14:00-07:00,18.19399948120117,60.0,60000.0 +495,2025-06-04T08:15:00-07:00,18.19333267211914,60.0,60000.0 +496,2025-06-04T08:16:00-07:00,18.19166628519694,60.0,60000.0 +497,2025-06-04T08:17:00-07:00,18.195999908447266,60.0,60000.0 +498,2025-06-04T08:18:00-07:00,18.19333267211914,60.0,60000.0 +499,2025-06-04T08:19:00-07:00,18.2000002179827,60.0,60000.0 +500,2025-06-04T08:20:00-07:00,18.196666717529297,60.0,60000.0 +501,2025-06-04T08:21:00-07:00,18.195999908447266,60.0,60000.0 +502,2025-06-04T08:22:00-07:00,18.186665852864582,60.0,60000.0 +503,2025-06-04T08:23:00-07:00,18.19166628519694,60.0,60000.0 +504,2025-06-04T08:24:00-07:00,18.195999908447266,60.0,60000.0 +505,2025-06-04T08:25:00-07:00,18.191665649414062,60.0,60000.0 +506,2025-06-04T08:26:00-07:00,18.19166628519694,60.0,60000.0 +507,2025-06-04T08:27:00-07:00,18.19199905395508,60.0,60000.0 +508,2025-06-04T08:28:00-07:00,18.186665852864582,60.0,60000.0 +509,2025-06-04T08:29:00-07:00,18.19166628519694,60.0,60000.0 +510,2025-06-04T08:30:00-07:00,18.19199905395508,60.0,60000.0 +511,2025-06-04T08:31:00-07:00,18.203333536783855,60.0,60000.0 +512,2025-06-04T08:32:00-07:00,18.206666310628254,60.0,60000.0 +513,2025-06-04T08:33:00-07:00,18.20999984741211,60.0,60000.0 +514,2025-06-04T08:34:00-07:00,18.211666107177734,60.0,60000.0 +515,2025-06-04T08:35:00-07:00,18.211666742960613,60.0,60000.0 +516,2025-06-04T08:36:00-07:00,18.216000366210938,60.0,60000.0 +517,2025-06-04T08:37:00-07:00,18.218334197998047,60.0,60000.0 +518,2025-06-04T08:38:00-07:00,18.221667607625324,60.0,60000.0 +519,2025-06-04T08:39:00-07:00,18.224000549316408,60.0,60000.0 +520,2025-06-04T08:40:00-07:00,18.229999542236328,60.0,60000.0 +521,2025-06-04T08:41:00-07:00,18.233333587646484,60.0,60000.0 +522,2025-06-04T08:42:00-07:00,18.2380012512207,60.0,60000.0 +523,2025-06-04T08:43:00-07:00,18.23833465576172,60.0,60000.0 +524,2025-06-04T08:44:00-07:00,18.25,60.0,60000.0 +525,2025-06-04T08:45:00-07:00,18.25599899291992,60.0,60000.0 +526,2025-06-04T08:46:00-07:00,18.26166534423828,60.0,60000.0 +527,2025-06-04T08:47:00-07:00,18.269999821980793,60.0,60000.0 +528,2025-06-04T08:48:00-07:00,18.272000122070313,60.0,60000.0 +529,2025-06-04T08:49:00-07:00,18.268333435058594,60.0,60000.0 +530,2025-06-04T08:50:00-07:00,18.273333231608074,60.0,60000.0 +531,2025-06-04T08:51:00-07:00,18.272000122070313,60.0,60000.0 +532,2025-06-04T08:52:00-07:00,18.273332595825195,60.0,60000.0 +533,2025-06-04T08:53:00-07:00,18.273333231608074,60.0,60000.0 +534,2025-06-04T08:54:00-07:00,18.270000457763672,60.0,60000.0 +535,2025-06-04T08:55:00-07:00,18.273333231608074,60.0,60000.0 +536,2025-06-04T08:56:00-07:00,18.270000457763672,60.0,60000.0 +537,2025-06-04T08:57:00-07:00,18.267999267578126,60.0,60000.0 +538,2025-06-04T08:58:00-07:00,18.266665776570637,60.0,60000.0 +539,2025-06-04T08:59:00-07:00,18.27166684468587,60.0,60000.0 +540,2025-06-04T09:00:00-07:00,18.272000122070313,60.0,60000.0 +541,2025-06-04T09:01:00-07:00,18.279999415079754,60.0,60000.0 +542,2025-06-04T09:02:00-07:00,18.278332392374676,60.0,60000.0 +543,2025-06-04T09:03:00-07:00,18.276000213623046,60.0,60000.0 +544,2025-06-04T09:04:00-07:00,18.281665802001953,60.0,60000.0 +545,2025-06-04T09:05:00-07:00,18.281665802001953,60.0,60000.0 +546,2025-06-04T09:06:00-07:00,18.27999954223633,60.0,60000.0 +547,2025-06-04T09:07:00-07:00,18.286666870117188,60.0,60000.0 +548,2025-06-04T09:08:00-07:00,18.28333282470703,60.0,60000.0 +549,2025-06-04T09:09:00-07:00,18.29000015258789,60.0,60000.0 +550,2025-06-04T09:10:00-07:00,18.3000005086263,60.0,60000.0 +551,2025-06-04T09:11:00-07:00,18.30666669209798,60.0,60000.0 +552,2025-06-04T09:12:00-07:00,18.316000366210936,60.0,60000.0 +553,2025-06-04T09:13:00-07:00,18.31499989827474,60.0,60000.0 +554,2025-06-04T09:14:00-07:00,18.318333943684895,60.0,60000.0 +555,2025-06-04T09:15:00-07:00,18.31999969482422,60.0,60000.0 +556,2025-06-04T09:16:00-07:00,18.316667556762695,60.0,60000.0 +557,2025-06-04T09:17:00-07:00,18.31166712443034,60.0,60000.0 +558,2025-06-04T09:18:00-07:00,18.31999969482422,60.0,60000.0 +559,2025-06-04T09:19:00-07:00,18.308334350585938,60.0,60000.0 +560,2025-06-04T09:20:00-07:00,18.30666732788086,60.0,60000.0 +561,2025-06-04T09:21:00-07:00,18.299999872843426,60.0,60000.0 +562,2025-06-04T09:22:00-07:00,18.297999572753906,60.0,60000.0 +563,2025-06-04T09:23:00-07:00,18.291667302449543,60.0,60000.0 +564,2025-06-04T09:24:00-07:00,18.288333892822266,60.0,60000.0 +565,2025-06-04T09:25:00-07:00,18.283999633789062,60.0,60000.0 +566,2025-06-04T09:26:00-07:00,18.288333892822266,60.0,60000.0 +567,2025-06-04T09:27:00-07:00,18.286666870117188,60.0,60000.0 +568,2025-06-04T09:28:00-07:00,18.2879997253418,60.0,60000.0 +569,2025-06-04T09:29:00-07:00,18.291666666666668,60.0,60000.0 +570,2025-06-04T09:30:00-07:00,18.30500030517578,60.0,60000.0 +571,2025-06-04T09:31:00-07:00,18.3140007019043,60.0,60000.0 +572,2025-06-04T09:32:00-07:00,18.31833330790202,60.0,60000.0 +573,2025-06-04T09:33:00-07:00,18.316667556762695,60.0,60000.0 +574,2025-06-04T09:34:00-07:00,18.3140007019043,60.0,60000.0 +575,2025-06-04T09:35:00-07:00,18.31333287556966,60.0,60000.0 +576,2025-06-04T09:36:00-07:00,18.315000534057617,60.0,60000.0 +577,2025-06-04T09:37:00-07:00,18.31800079345703,60.0,60000.0 +578,2025-06-04T09:38:00-07:00,18.31000010172526,60.0,60000.0 +579,2025-06-04T09:39:00-07:00,18.30500030517578,60.0,60000.0 +580,2025-06-04T09:40:00-07:00,18.301999664306642,60.0,60000.0 +581,2025-06-04T09:41:00-07:00,18.30500030517578,60.0,60000.0 +582,2025-06-04T09:42:00-07:00,18.290000915527344,60.0,60000.0 +583,2025-06-04T09:43:00-07:00,18.284000396728516,60.0,60000.0 +584,2025-06-04T09:44:00-07:00,18.273333231608074,60.0,60000.0 +585,2025-06-04T09:45:00-07:00,18.271666208902996,60.0,60000.0 +586,2025-06-04T09:46:00-07:00,18.268332799275715,60.0,60000.0 +587,2025-06-04T09:47:00-07:00,18.271666208902996,60.0,60000.0 +588,2025-06-04T09:48:00-07:00,18.28333282470703,60.0,60000.0 +589,2025-06-04T09:49:00-07:00,18.28800048828125,60.0,60000.0 +590,2025-06-04T09:50:00-07:00,18.291666666666668,60.0,60000.0 +591,2025-06-04T09:51:00-07:00,18.303333282470703,60.0,60000.0 +592,2025-06-04T09:52:00-07:00,18.320000457763673,60.0,60000.0 +593,2025-06-04T09:53:00-07:00,18.33500099182129,60.0,60000.0 +594,2025-06-04T09:54:00-07:00,18.35333251953125,60.0,60000.0 +595,2025-06-04T09:55:00-07:00,18.365999603271483,60.0,60000.0 +596,2025-06-04T09:56:00-07:00,18.366666158040363,60.0,60000.0 +597,2025-06-04T09:57:00-07:00,18.375,60.0,60000.0 +598,2025-06-04T09:58:00-07:00,18.380001068115234,60.0,60000.0 +599,2025-06-04T09:59:00-07:00,18.386666615804035,60.0,60000.0 +600,2025-06-04T10:00:00-07:00,18.378333409627277,60.0,60000.0 +601,2025-06-04T10:01:00-07:00,18.365999603271483,60.0,60000.0 +602,2025-06-04T10:02:00-07:00,18.373332977294922,60.0,60000.0 +603,2025-06-04T10:03:00-07:00,18.366666158040363,60.0,60000.0 +604,2025-06-04T10:04:00-07:00,18.35199890136719,60.0,60000.0 +605,2025-06-04T10:05:00-07:00,18.35333188374837,60.0,60000.0 +606,2025-06-04T10:06:00-07:00,18.356666564941406,60.0,60000.0 +607,2025-06-04T10:07:00-07:00,18.34599914550781,60.0,60000.0 +608,2025-06-04T10:08:00-07:00,18.34000015258789,60.0,60000.0 +609,2025-06-04T10:09:00-07:00,18.34166653951009,60.0,60000.0 +610,2025-06-04T10:10:00-07:00,18.343999481201173,60.0,60000.0 +611,2025-06-04T10:11:00-07:00,18.349998474121094,60.0,60000.0 +612,2025-06-04T10:12:00-07:00,18.360000610351562,60.0,60000.0 +613,2025-06-04T10:13:00-07:00,18.358000183105467,60.0,60000.0 +614,2025-06-04T10:14:00-07:00,18.368332544962566,60.0,60000.0 +615,2025-06-04T10:15:00-07:00,18.378334045410156,60.0,60000.0 +616,2025-06-04T10:16:00-07:00,18.380001068115234,60.0,60000.0 +617,2025-06-04T10:17:00-07:00,18.388333002726238,60.0,60000.0 +618,2025-06-04T10:18:00-07:00,18.40333429972331,60.0,60000.0 +619,2025-06-04T10:19:00-07:00,18.40400085449219,60.0,60000.0 +620,2025-06-04T10:20:00-07:00,18.41499900817871,60.0,60000.0 +621,2025-06-04T10:21:00-07:00,18.44333330790202,60.0,60000.0 +622,2025-06-04T10:22:00-07:00,18.46800003051758,60.0,60000.0 +623,2025-06-04T10:23:00-07:00,18.501665751139324,60.0,60000.0 +624,2025-06-04T10:24:00-07:00,18.528332392374676,60.0,60000.0 +625,2025-06-04T10:25:00-07:00,18.53999964396159,60.0,60000.0 +626,2025-06-04T10:26:00-07:00,18.562001037597657,60.0,60000.0 +627,2025-06-04T10:27:00-07:00,18.571666717529297,60.0,60000.0 +628,2025-06-04T10:28:00-07:00,18.594999313354492,60.0,60000.0 +629,2025-06-04T10:29:00-07:00,18.61199951171875,60.0,60000.0 +630,2025-06-04T10:30:00-07:00,18.62999979654948,60.0,60000.0 +631,2025-06-04T10:31:00-07:00,18.633333841959637,60.0,60000.0 +632,2025-06-04T10:32:00-07:00,18.63000030517578,60.0,60000.0 +633,2025-06-04T10:33:00-07:00,18.625,60.0,60000.0 +634,2025-06-04T10:34:00-07:00,18.6266663869222,60.0,60000.0 +635,2025-06-04T10:35:00-07:00,18.63600082397461,60.0,60000.0 +636,2025-06-04T10:36:00-07:00,18.63166681925456,60.0,60000.0 +637,2025-06-04T10:37:00-07:00,18.650000254313152,60.0,60000.0 +638,2025-06-04T10:38:00-07:00,18.677999114990236,60.0,60000.0 +639,2025-06-04T10:39:00-07:00,18.69499969482422,60.0,60000.0 +640,2025-06-04T10:40:00-07:00,18.708333333333332,60.0,60000.0 +641,2025-06-04T10:41:00-07:00,18.726000213623045,60.0,60000.0 +642,2025-06-04T10:42:00-07:00,18.746667226155598,60.0,60000.0 +643,2025-06-04T10:43:00-07:00,18.7566655476888,60.0,60000.0 +644,2025-06-04T10:44:00-07:00,18.772000122070313,60.0,60000.0 +645,2025-06-04T10:45:00-07:00,18.76166534423828,60.0,60000.0 +646,2025-06-04T10:46:00-07:00,18.753332773844402,60.0,60000.0 +647,2025-06-04T10:47:00-07:00,18.755999755859374,60.0,60000.0 +648,2025-06-04T10:48:00-07:00,18.7483336130778,60.0,60000.0 +649,2025-06-04T10:49:00-07:00,18.759998957316082,60.0,60000.0 +650,2025-06-04T10:50:00-07:00,18.770000457763672,60.0,60000.0 +651,2025-06-04T10:51:00-07:00,18.781666437784832,60.0,60000.0 +652,2025-06-04T10:52:00-07:00,18.796666463216145,60.0,60000.0 +653,2025-06-04T10:53:00-07:00,18.813999938964844,60.0,60000.0 +654,2025-06-04T10:54:00-07:00,18.84166653951009,60.0,60000.0 +655,2025-06-04T10:55:00-07:00,18.856666564941406,60.0,60000.0 +656,2025-06-04T10:56:00-07:00,18.85999984741211,60.0,60000.0 +657,2025-06-04T10:57:00-07:00,18.854999542236328,60.0,60000.0 +658,2025-06-04T10:58:00-07:00,18.849999109903973,60.0,60000.0 +659,2025-06-04T10:59:00-07:00,18.855999755859376,60.0,60000.0 +660,2025-06-04T11:00:00-07:00,18.849998474121094,60.0,60000.0 +661,2025-06-04T11:01:00-07:00,18.863332748413086,60.0,60000.0 +662,2025-06-04T11:02:00-07:00,18.884000396728517,60.0,60000.0 +663,2025-06-04T11:03:00-07:00,18.90833346048991,60.0,60000.0 +664,2025-06-04T11:04:00-07:00,18.91666539510091,60.0,60000.0 +665,2025-06-04T11:05:00-07:00,18.929999542236327,60.0,60000.0 +666,2025-06-04T11:06:00-07:00,18.93666648864746,60.0,60000.0 +667,2025-06-04T11:07:00-07:00,18.92333221435547,60.0,60000.0 +668,2025-06-04T11:08:00-07:00,18.927999877929686,60.0,60000.0 +669,2025-06-04T11:09:00-07:00,18.929999669392902,60.0,60000.0 +670,2025-06-04T11:10:00-07:00,18.929999033610027,60.0,60000.0 +671,2025-06-04T11:11:00-07:00,18.94199981689453,60.0,60000.0 +672,2025-06-04T11:12:00-07:00,18.941665649414062,60.0,60000.0 +673,2025-06-04T11:13:00-07:00,18.958333333333332,60.0,60000.0 +674,2025-06-04T11:14:00-07:00,18.963999938964843,60.0,60000.0 +675,2025-06-04T11:15:00-07:00,18.956666310628254,60.0,60000.0 +676,2025-06-04T11:16:00-07:00,18.9499994913737,60.0,60000.0 +677,2025-06-04T11:17:00-07:00,18.955999755859374,60.0,60000.0 +678,2025-06-04T11:18:00-07:00,18.963333129882812,60.0,60000.0 +679,2025-06-04T11:19:00-07:00,18.973333994547527,60.0,60000.0 +680,2025-06-04T11:20:00-07:00,18.982000732421874,60.0,60000.0 +681,2025-06-04T11:21:00-07:00,18.973333994547527,60.0,60000.0 +682,2025-06-04T11:22:00-07:00,18.980000178019207,60.0,60000.0 +683,2025-06-04T11:23:00-07:00,18.964000701904297,60.0,60000.0 +684,2025-06-04T11:24:00-07:00,18.963333129882812,60.0,60000.0 +685,2025-06-04T11:25:00-07:00,18.950000127156574,60.0,60000.0 +686,2025-06-04T11:26:00-07:00,18.951666514078777,60.0,60000.0 +687,2025-06-04T11:27:00-07:00,18.948000335693358,60.0,60000.0 +688,2025-06-04T11:28:00-07:00,18.946666717529297,60.0,60000.0 +689,2025-06-04T11:29:00-07:00,18.959999720255535,60.0,60000.0 +690,2025-06-04T11:30:00-07:00,18.96199951171875,60.0,60000.0 +691,2025-06-04T11:31:00-07:00,18.96666653951009,60.0,60000.0 +692,2025-06-04T11:32:00-07:00,18.971667607625324,60.0,60000.0 +693,2025-06-04T11:33:00-07:00,18.981999969482423,60.0,60000.0 +694,2025-06-04T11:34:00-07:00,18.98833465576172,60.0,60000.0 +695,2025-06-04T11:35:00-07:00,18.980000178019207,60.0,60000.0 +696,2025-06-04T11:36:00-07:00,19.00199966430664,60.0,60000.0 +697,2025-06-04T11:37:00-07:00,19.03499984741211,60.0,60000.0 +698,2025-06-04T11:38:00-07:00,19.063334147135418,60.0,60000.0 +699,2025-06-04T11:39:00-07:00,19.072000122070314,60.0,60000.0 +700,2025-06-04T11:40:00-07:00,19.07833480834961,60.0,60000.0 +701,2025-06-04T11:41:00-07:00,19.094999313354492,60.0,60000.0 +702,2025-06-04T11:42:00-07:00,19.103998565673827,60.0,60000.0 +703,2025-06-04T11:43:00-07:00,19.114999771118164,60.0,60000.0 +704,2025-06-04T11:44:00-07:00,19.113332748413086,60.0,60000.0 +705,2025-06-04T11:45:00-07:00,19.108000183105467,60.0,60000.0 +706,2025-06-04T11:46:00-07:00,19.10333251953125,60.0,60000.0 +707,2025-06-04T11:47:00-07:00,19.094999313354492,60.0,60000.0 +708,2025-06-04T11:48:00-07:00,19.10199890136719,60.0,60000.0 +709,2025-06-04T11:49:00-07:00,19.098332087198894,60.0,60000.0 +710,2025-06-04T11:50:00-07:00,19.094999313354492,60.0,60000.0 +711,2025-06-04T11:51:00-07:00,19.093999481201173,60.0,60000.0 +712,2025-06-04T11:52:00-07:00,19.093332926432293,60.0,60000.0 +713,2025-06-04T11:53:00-07:00,19.09000015258789,60.0,60000.0 +714,2025-06-04T11:54:00-07:00,19.084000396728516,60.0,60000.0 +715,2025-06-04T11:55:00-07:00,19.07666778564453,60.0,60000.0 +716,2025-06-04T11:56:00-07:00,19.075000762939453,60.0,60000.0 +717,2025-06-04T11:57:00-07:00,19.080001068115234,60.0,60000.0 +718,2025-06-04T11:58:00-07:00,19.081668217976887,60.0,60000.0 +719,2025-06-04T11:59:00-07:00,19.08666737874349,60.0,60000.0 +720,2025-06-04T12:00:00-07:00,19.08800048828125,60.0,60000.0 +721,2025-06-04T12:01:00-07:00,19.080001831054688,60.0,60000.0 +722,2025-06-04T12:02:00-07:00,19.070000330607098,60.0,60000.0 +723,2025-06-04T12:03:00-07:00,19.0760009765625,60.0,60000.0 +724,2025-06-04T12:04:00-07:00,19.09166717529297,60.0,60000.0 +725,2025-06-04T12:05:00-07:00,19.116666793823242,60.0,60000.0 +726,2025-06-04T12:06:00-07:00,19.136000061035155,60.0,60000.0 +727,2025-06-04T12:07:00-07:00,19.138333002726238,60.0,60000.0 +728,2025-06-04T12:08:00-07:00,19.137142726353236,60.0,60000.0 +729,2025-06-04T12:09:00-07:00,19.130001068115234,60.0,60000.0 +730,2025-06-04T12:10:00-07:00,19.134999593098957,60.0,60000.0 +731,2025-06-04T12:11:00-07:00,19.138333002726238,60.0,60000.0 +732,2025-06-04T12:12:00-07:00,19.14800109863281,60.0,60000.0 +733,2025-06-04T12:13:00-07:00,19.16833241780599,60.0,60000.0 +734,2025-06-04T12:14:00-07:00,19.174999237060547,60.0,60000.0 +735,2025-06-04T12:15:00-07:00,19.167999267578125,60.0,60000.0 +736,2025-06-04T12:16:00-07:00,19.16333262125651,60.0,60000.0 +737,2025-06-04T12:17:00-07:00,19.15333429972331,60.0,60000.0 +738,2025-06-04T12:18:00-07:00,19.152001190185548,60.0,60000.0 +739,2025-06-04T12:19:00-07:00,19.139999389648438,60.0,60000.0 +740,2025-06-04T12:20:00-07:00,19.138333002726238,60.0,60000.0 +741,2025-06-04T12:21:00-07:00,19.14800109863281,60.0,60000.0 +742,2025-06-04T12:22:00-07:00,19.148334503173828,60.0,60000.0 +743,2025-06-04T12:23:00-07:00,19.150000890096027,60.0,60000.0 +744,2025-06-04T12:24:00-07:00,19.144000244140624,60.0,60000.0 +745,2025-06-04T12:25:00-07:00,19.150000890096027,60.0,60000.0 +746,2025-06-04T12:26:00-07:00,19.15333429972331,60.0,60000.0 +747,2025-06-04T12:27:00-07:00,19.152001190185548,60.0,60000.0 +748,2025-06-04T12:28:00-07:00,19.15333366394043,60.0,60000.0 +749,2025-06-04T12:29:00-07:00,19.155000686645508,60.0,60000.0 +750,2025-06-04T12:30:00-07:00,19.16199951171875,60.0,60000.0 +751,2025-06-04T12:31:00-07:00,19.15833346048991,60.0,60000.0 +752,2025-06-04T12:32:00-07:00,19.15999984741211,60.0,60000.0 +753,2025-06-04T12:33:00-07:00,19.156667073567707,60.0,60000.0 +754,2025-06-04T12:34:00-07:00,19.15999984741211,60.0,60000.0 +755,2025-06-04T12:35:00-07:00,19.16333262125651,60.0,60000.0 +756,2025-06-04T12:36:00-07:00,19.169999440511067,60.0,60000.0 +757,2025-06-04T12:37:00-07:00,19.181999969482423,60.0,60000.0 +758,2025-06-04T12:38:00-07:00,19.179999669392902,60.0,60000.0 +759,2025-06-04T12:39:00-07:00,19.189998626708984,60.0,60000.0 +760,2025-06-04T12:40:00-07:00,19.2,60.0,60000.0 +761,2025-06-04T12:41:00-07:00,19.213333129882812,60.0,60000.0 +762,2025-06-04T12:42:00-07:00,19.223333994547527,60.0,60000.0 +763,2025-06-04T12:43:00-07:00,19.242000579833984,60.0,60000.0 +764,2025-06-04T12:44:00-07:00,19.24333381652832,60.0,60000.0 +765,2025-06-04T12:45:00-07:00,19.235000610351562,60.0,60000.0 +766,2025-06-04T12:46:00-07:00,19.240001678466797,60.0,60000.0 +767,2025-06-04T12:47:00-07:00,19.22857121058873,60.0,60000.0 +768,2025-06-04T12:48:00-07:00,19.223333994547527,60.0,60000.0 +769,2025-06-04T12:49:00-07:00,19.222000885009766,60.0,60000.0 +770,2025-06-04T12:50:00-07:00,19.218334197998047,60.0,60000.0 +771,2025-06-04T12:51:00-07:00,19.221667607625324,60.0,60000.0 +772,2025-06-04T12:52:00-07:00,19.226000213623045,60.0,60000.0 +773,2025-06-04T12:53:00-07:00,19.22833315531413,60.0,60000.0 +774,2025-06-04T12:54:00-07:00,19.226666768391926,60.0,60000.0 +775,2025-06-04T12:55:00-07:00,19.234000396728515,60.0,60000.0 +776,2025-06-04T12:56:00-07:00,19.246667226155598,60.0,60000.0 +777,2025-06-04T12:57:00-07:00,19.27428490774972,60.0,60000.0 +778,2025-06-04T12:58:00-07:00,19.292000579833985,60.0,60000.0 +779,2025-06-04T12:59:00-07:00,19.295000076293945,60.0,60000.0 +780,2025-06-04T13:00:00-07:00,19.30833371480306,60.0,60000.0 +781,2025-06-04T13:01:00-07:00,19.30800094604492,60.0,60000.0 +782,2025-06-04T13:02:00-07:00,19.310000737508137,60.0,60000.0 +783,2025-06-04T13:03:00-07:00,19.313334147135418,60.0,60000.0 +784,2025-06-04T13:04:00-07:00,19.30800094604492,60.0,60000.0 +785,2025-06-04T13:05:00-07:00,19.30833371480306,60.0,60000.0 +786,2025-06-04T13:06:00-07:00,19.32666778564453,60.0,60000.0 +787,2025-06-04T13:07:00-07:00,19.33400115966797,60.0,60000.0 +788,2025-06-04T13:08:00-07:00,19.343332926432293,60.0,60000.0 +789,2025-06-04T13:09:00-07:00,19.34666570027669,60.0,60000.0 +790,2025-06-04T13:10:00-07:00,19.33800048828125,60.0,60000.0 +791,2025-06-04T13:11:00-07:00,19.34166653951009,60.0,60000.0 +792,2025-06-04T13:12:00-07:00,19.344999313354492,60.0,60000.0 +793,2025-06-04T13:13:00-07:00,19.35199890136719,60.0,60000.0 +794,2025-06-04T13:14:00-07:00,19.349999109903973,60.0,60000.0 +795,2025-06-04T13:15:00-07:00,19.34000015258789,60.0,60000.0 +796,2025-06-04T13:16:00-07:00,19.33800048828125,60.0,60000.0 +797,2025-06-04T13:17:00-07:00,19.343332926432293,60.0,60000.0 +798,2025-06-04T13:18:00-07:00,19.349999109903973,60.0,60000.0 +799,2025-06-04T13:19:00-07:00,19.355999755859376,60.0,60000.0 +800,2025-06-04T13:20:00-07:00,19.3733336130778,60.0,60000.0 +801,2025-06-04T13:21:00-07:00,19.395000457763672,60.0,60000.0 +802,2025-06-04T13:22:00-07:00,19.42333221435547,60.0,60000.0 +803,2025-06-04T13:23:00-07:00,19.45,60.0,60000.0 +804,2025-06-04T13:24:00-07:00,19.468334197998047,60.0,60000.0 +805,2025-06-04T13:25:00-07:00,19.461666107177734,60.0,60000.0 +806,2025-06-04T13:26:00-07:00,19.466000366210938,60.0,60000.0 +807,2025-06-04T13:27:00-07:00,19.480000813802082,60.0,60000.0 +808,2025-06-04T13:28:00-07:00,19.48666763305664,60.0,60000.0 +809,2025-06-04T13:29:00-07:00,19.490000915527343,60.0,60000.0 +810,2025-06-04T13:30:00-07:00,19.47833315531413,60.0,60000.0 +811,2025-06-04T13:31:00-07:00,19.485000610351562,60.0,60000.0 +812,2025-06-04T13:32:00-07:00,19.5,60.0,60000.0 +813,2025-06-04T13:33:00-07:00,19.516666412353516,60.0,60000.0 +814,2025-06-04T13:34:00-07:00,19.538333257039387,60.0,60000.0 +815,2025-06-04T13:35:00-07:00,19.554000091552734,60.0,60000.0 +816,2025-06-04T13:36:00-07:00,19.58000119527181,60.0,60000.0 +817,2025-06-04T13:37:00-07:00,19.609999974568684,60.0,60000.0 +818,2025-06-04T13:38:00-07:00,19.640000915527345,60.0,60000.0 +819,2025-06-04T13:39:00-07:00,19.671666463216145,60.0,60000.0 +820,2025-06-04T13:40:00-07:00,19.72833315531413,60.0,60000.0 +821,2025-06-04T13:41:00-07:00,19.773999786376955,60.0,60000.0 +822,2025-06-04T13:42:00-07:00,19.820000966389973,60.0,60000.0 +823,2025-06-04T13:43:00-07:00,19.868332544962566,60.0,60000.0 +824,2025-06-04T13:44:00-07:00,19.895999908447266,60.0,60000.0 +825,2025-06-04T13:45:00-07:00,19.93500010172526,60.0,60000.0 +826,2025-06-04T13:46:00-07:00,19.968334197998047,60.0,60000.0 +827,2025-06-04T13:47:00-07:00,20.0,60.0,60000.0 +828,2025-06-04T13:48:00-07:00,20.023332595825195,60.0,60000.0 +829,2025-06-04T13:49:00-07:00,20.046667098999023,60.0,60000.0 +830,2025-06-04T13:50:00-07:00,20.072000885009764,60.0,60000.0 +831,2025-06-04T13:51:00-07:00,20.081668217976887,60.0,60000.0 +832,2025-06-04T13:52:00-07:00,20.08333460489909,60.0,60000.0 +833,2025-06-04T13:53:00-07:00,20.0760009765625,60.0,60000.0 +834,2025-06-04T13:54:00-07:00,20.073333740234375,60.0,60000.0 +835,2025-06-04T13:55:00-07:00,20.06999969482422,60.0,60000.0 +836,2025-06-04T13:56:00-07:00,20.074000549316406,60.0,60000.0 +837,2025-06-04T13:57:00-07:00,20.061667760213215,60.0,60000.0 +838,2025-06-04T13:58:00-07:00,20.05500030517578,60.0,60000.0 +839,2025-06-04T13:59:00-07:00,20.060000610351562,60.0,60000.0 +840,2025-06-04T14:00:00-07:00,20.073334376017254,60.0,60000.0 +841,2025-06-04T14:01:00-07:00,20.08166758219401,60.0,60000.0 +842,2025-06-04T14:02:00-07:00,20.086000823974608,60.0,60000.0 +843,2025-06-04T14:03:00-07:00,20.08500099182129,60.0,60000.0 +844,2025-06-04T14:04:00-07:00,20.08500099182129,60.0,60000.0 +845,2025-06-04T14:05:00-07:00,20.086000823974608,60.0,60000.0 +846,2025-06-04T14:06:00-07:00,20.08333460489909,60.0,60000.0 +847,2025-06-04T14:07:00-07:00,20.073333740234375,60.0,60000.0 +848,2025-06-04T14:08:00-07:00,20.066000366210936,60.0,60000.0 +849,2025-06-04T14:09:00-07:00,20.060001373291016,60.0,60000.0 +850,2025-06-04T14:10:00-07:00,20.049999872843426,60.0,60000.0 +851,2025-06-04T14:11:00-07:00,20.043333689371746,60.0,60000.0 +852,2025-06-04T14:12:00-07:00,20.03199920654297,60.0,60000.0 +853,2025-06-04T14:13:00-07:00,20.026666005452473,60.0,60000.0 +854,2025-06-04T14:14:00-07:00,20.018332799275715,60.0,60000.0 +855,2025-06-04T14:15:00-07:00,20.009998321533203,60.0,60000.0 +856,2025-06-04T14:16:00-07:00,20.0016663869222,60.0,60000.0 +857,2025-06-04T14:17:00-07:00,19.9983336130778,60.0,60000.0 +858,2025-06-04T14:18:00-07:00,20.0,60.0,60000.0 +859,2025-06-04T14:19:00-07:00,19.9933344523112,60.0,60000.0 +860,2025-06-04T14:20:00-07:00,19.9983336130778,60.0,60000.0 +861,2025-06-04T14:21:00-07:00,19.996000671386717,60.0,60000.0 +862,2025-06-04T14:22:00-07:00,19.98666826883952,60.0,60000.0 +863,2025-06-04T14:23:00-07:00,19.968334197998047,60.0,60000.0 +864,2025-06-04T14:24:00-07:00,19.963999938964843,60.0,60000.0 +865,2025-06-04T14:25:00-07:00,19.956666310628254,60.0,60000.0 +866,2025-06-04T14:26:00-07:00,19.948333104451496,60.0,60000.0 +867,2025-06-04T14:27:00-07:00,19.94399948120117,60.0,60000.0 +868,2025-06-04T14:28:00-07:00,19.939998626708984,60.0,60000.0 +869,2025-06-04T14:29:00-07:00,19.933332443237305,60.0,60000.0 +870,2025-06-04T14:30:00-07:00,19.92599868774414,60.0,60000.0 +871,2025-06-04T14:31:00-07:00,19.91499900817871,60.0,60000.0 +872,2025-06-04T14:32:00-07:00,19.906667073567707,60.0,60000.0 +873,2025-06-04T14:33:00-07:00,19.90400085449219,60.0,60000.0 +874,2025-06-04T14:34:00-07:00,19.900000890096027,60.0,60000.0 +875,2025-06-04T14:35:00-07:00,19.888333638509113,60.0,60000.0 +876,2025-06-04T14:36:00-07:00,19.889999389648438,60.0,60000.0 +877,2025-06-04T14:37:00-07:00,19.890000025431316,60.0,60000.0 +878,2025-06-04T14:38:00-07:00,19.888333002726238,60.0,60000.0 +879,2025-06-04T14:39:00-07:00,19.886000061035155,60.0,60000.0 +880,2025-06-04T14:40:00-07:00,19.878334045410156,60.0,60000.0 +881,2025-06-04T14:41:00-07:00,19.876667022705078,60.0,60000.0 +882,2025-06-04T14:42:00-07:00,19.862000274658204,60.0,60000.0 +883,2025-06-04T14:43:00-07:00,19.84666570027669,60.0,60000.0 +884,2025-06-04T14:44:00-07:00,19.83500099182129,60.0,60000.0 +885,2025-06-04T14:45:00-07:00,19.828000640869142,60.0,60000.0 +886,2025-06-04T14:46:00-07:00,19.815000534057617,60.0,60000.0 +887,2025-06-04T14:47:00-07:00,19.80500030517578,60.0,60000.0 +888,2025-06-04T14:48:00-07:00,19.799999237060547,60.0,60000.0 +889,2025-06-04T14:49:00-07:00,19.798333485921223,60.0,60000.0 +890,2025-06-04T14:50:00-07:00,19.791667302449543,60.0,60000.0 +891,2025-06-04T14:51:00-07:00,19.794000244140626,60.0,60000.0 +892,2025-06-04T14:52:00-07:00,19.799999237060547,60.0,60000.0 +893,2025-06-04T14:53:00-07:00,19.799999872843426,60.0,60000.0 +894,2025-06-04T14:54:00-07:00,19.795999908447264,60.0,60000.0 +895,2025-06-04T14:55:00-07:00,19.80666732788086,60.0,60000.0 +896,2025-06-04T14:56:00-07:00,19.816666920979817,60.0,60000.0 +897,2025-06-04T14:57:00-07:00,19.812000274658203,60.0,60000.0 +898,2025-06-04T14:58:00-07:00,19.815000534057617,60.0,60000.0 +899,2025-06-04T14:59:00-07:00,19.813334147135418,60.0,60000.0 +900,2025-06-04T15:00:00-07:00,19.81999969482422,60.0,60000.0 +901,2025-06-04T15:01:00-07:00,19.821667353312176,60.0,60000.0 +902,2025-06-04T15:02:00-07:00,19.81833330790202,60.0,60000.0 +903,2025-06-04T15:03:00-07:00,19.801999664306642,60.0,60000.0 +904,2025-06-04T15:04:00-07:00,19.795000076293945,60.0,60000.0 +905,2025-06-04T15:05:00-07:00,19.790000279744465,60.0,60000.0 +906,2025-06-04T15:06:00-07:00,19.78800048828125,60.0,60000.0 +907,2025-06-04T15:07:00-07:00,19.791667302449543,60.0,60000.0 +908,2025-06-04T15:08:00-07:00,19.788333892822266,60.0,60000.0 +909,2025-06-04T15:09:00-07:00,19.78800048828125,60.0,60000.0 +910,2025-06-04T15:10:00-07:00,19.791667302449543,60.0,60000.0 +911,2025-06-04T15:11:00-07:00,19.80833371480306,60.0,60000.0 +912,2025-06-04T15:12:00-07:00,19.818333943684895,60.0,60000.0 +913,2025-06-04T15:13:00-07:00,19.844000244140624,60.0,60000.0 +914,2025-06-04T15:14:00-07:00,19.859999974568684,60.0,60000.0 +915,2025-06-04T15:15:00-07:00,19.861666361490887,60.0,60000.0 +916,2025-06-04T15:16:00-07:00,19.860000610351562,60.0,60000.0 +917,2025-06-04T15:17:00-07:00,19.856666564941406,60.0,60000.0 +918,2025-06-04T15:18:00-07:00,19.869999567667644,60.0,60000.0 +919,2025-06-04T15:19:00-07:00,19.89000015258789,60.0,60000.0 +920,2025-06-04T15:20:00-07:00,19.90833346048991,60.0,60000.0 +921,2025-06-04T15:21:00-07:00,19.92166519165039,60.0,60000.0 +922,2025-06-04T15:22:00-07:00,19.929998779296874,60.0,60000.0 +923,2025-06-04T15:23:00-07:00,19.901667912801106,60.0,60000.0 +924,2025-06-04T15:24:00-07:00,19.87499936421712,60.0,60000.0 +925,2025-06-04T15:25:00-07:00,19.865999603271483,60.0,60000.0 +926,2025-06-04T15:26:00-07:00,19.856666564941406,60.0,60000.0 +927,2025-06-04T15:27:00-07:00,19.849999109903973,60.0,60000.0 +928,2025-06-04T15:28:00-07:00,19.84000015258789,60.0,60000.0 +929,2025-06-04T15:29:00-07:00,19.85333251953125,60.0,60000.0 +930,2025-06-04T15:30:00-07:00,19.849999745686848,60.0,60000.0 +931,2025-06-04T15:31:00-07:00,19.84599914550781,60.0,60000.0 +932,2025-06-04T15:32:00-07:00,19.84666570027669,60.0,60000.0 +933,2025-06-04T15:33:00-07:00,19.844999313354492,60.0,60000.0 +934,2025-06-04T15:34:00-07:00,19.858000183105467,60.0,60000.0 +935,2025-06-04T15:35:00-07:00,19.848332087198894,60.0,60000.0 +936,2025-06-04T15:36:00-07:00,19.85166613260905,60.0,60000.0 +937,2025-06-04T15:37:00-07:00,19.873999786376952,60.0,60000.0 +938,2025-06-04T15:38:00-07:00,19.883333841959637,60.0,60000.0 +939,2025-06-04T15:39:00-07:00,19.89833386739095,60.0,60000.0 +940,2025-06-04T15:40:00-07:00,19.902001190185548,60.0,60000.0 +941,2025-06-04T15:41:00-07:00,19.901667912801106,60.0,60000.0 +942,2025-06-04T15:42:00-07:00,19.891667048136394,60.0,60000.0 +943,2025-06-04T15:43:00-07:00,19.884000396728517,60.0,60000.0 +944,2025-06-04T15:44:00-07:00,19.888333002726238,60.0,60000.0 +945,2025-06-04T15:45:00-07:00,19.891667048136394,60.0,60000.0 +946,2025-06-04T15:46:00-07:00,19.90400085449219,60.0,60000.0 +947,2025-06-04T15:47:00-07:00,19.90333429972331,60.0,60000.0 +948,2025-06-04T15:48:00-07:00,19.900000254313152,60.0,60000.0 +949,2025-06-04T15:49:00-07:00,19.884000396728517,60.0,60000.0 +950,2025-06-04T15:50:00-07:00,19.881667455037434,60.0,60000.0 +951,2025-06-04T15:51:00-07:00,19.886666615804035,60.0,60000.0 +952,2025-06-04T15:52:00-07:00,19.882000732421876,60.0,60000.0 +953,2025-06-04T15:53:00-07:00,19.869999567667644,60.0,60000.0 +954,2025-06-04T15:54:00-07:00,19.869999476841517,60.0,60000.0 +955,2025-06-04T15:55:00-07:00,19.87199935913086,60.0,60000.0 +956,2025-06-04T15:56:00-07:00,19.871665954589844,60.0,60000.0 +957,2025-06-04T15:57:00-07:00,19.878334045410156,60.0,60000.0 +958,2025-06-04T15:58:00-07:00,19.884000396728517,60.0,60000.0 +959,2025-06-04T15:59:00-07:00,19.89666748046875,60.0,60000.0 +960,2025-06-04T16:00:00-07:00,19.92166582743327,60.0,60000.0 +961,2025-06-04T16:01:00-07:00,19.955999755859374,60.0,60000.0 +962,2025-06-04T16:02:00-07:00,19.975000381469727,60.0,60000.0 +963,2025-06-04T16:03:00-07:00,19.978334426879883,60.0,60000.0 +964,2025-06-04T16:04:00-07:00,19.974000549316408,60.0,60000.0 +965,2025-06-04T16:05:00-07:00,19.98833401997884,60.0,60000.0 +966,2025-06-04T16:06:00-07:00,19.9950008392334,60.0,60000.0 +967,2025-06-04T16:07:00-07:00,19.99800033569336,60.0,60000.0 +968,2025-06-04T16:08:00-07:00,20.003332773844402,60.0,60000.0 +969,2025-06-04T16:09:00-07:00,19.98833465576172,60.0,60000.0 +970,2025-06-04T16:10:00-07:00,19.974000549316408,60.0,60000.0 +971,2025-06-04T16:11:00-07:00,19.979999542236328,60.0,60000.0 +972,2025-06-04T16:12:00-07:00,19.990001042683918,60.0,60000.0 +973,2025-06-04T16:13:00-07:00,20.00199966430664,60.0,60000.0 +974,2025-06-04T16:14:00-07:00,20.016666412353516,60.0,60000.0 +975,2025-06-04T16:15:00-07:00,20.031666437784832,60.0,60000.0 +976,2025-06-04T16:16:00-07:00,20.043333689371746,60.0,60000.0 +977,2025-06-04T16:17:00-07:00,20.044000244140626,60.0,60000.0 +978,2025-06-04T16:18:00-07:00,20.048332850138348,60.0,60000.0 +979,2025-06-04T16:19:00-07:00,20.048333485921223,60.0,60000.0 +980,2025-06-04T16:20:00-07:00,20.045999908447264,60.0,60000.0 +981,2025-06-04T16:21:00-07:00,20.049999872843426,60.0,60000.0 +982,2025-06-04T16:22:00-07:00,20.063334147135418,60.0,60000.0 +983,2025-06-04T16:23:00-07:00,20.078000640869142,60.0,60000.0 +984,2025-06-04T16:24:00-07:00,20.08666737874349,60.0,60000.0 +985,2025-06-04T16:25:00-07:00,20.098332087198894,60.0,60000.0 +986,2025-06-04T16:26:00-07:00,20.093999481201173,60.0,60000.0 +987,2025-06-04T16:27:00-07:00,20.09000015258789,60.0,60000.0 +988,2025-06-04T16:28:00-07:00,20.07833417256673,60.0,60000.0 +989,2025-06-04T16:29:00-07:00,20.06800079345703,60.0,60000.0 +990,2025-06-04T16:30:00-07:00,20.07666778564453,60.0,60000.0 +991,2025-06-04T16:31:00-07:00,20.07833480834961,60.0,60000.0 +992,2025-06-04T16:32:00-07:00,20.080001831054688,60.0,60000.0 +993,2025-06-04T16:33:00-07:00,20.07666778564453,60.0,60000.0 +994,2025-06-04T16:34:00-07:00,20.07666778564453,60.0,60000.0 +995,2025-06-04T16:35:00-07:00,20.104000091552734,60.0,60000.0 +996,2025-06-04T16:36:00-07:00,20.123332977294922,60.0,60000.0 +997,2025-06-04T16:37:00-07:00,20.123332977294922,60.0,60000.0 +998,2025-06-04T16:38:00-07:00,20.119998931884766,60.0,60000.0 +999,2025-06-04T16:39:00-07:00,20.121665954589844,60.0,60000.0 +1000,2025-06-04T16:40:00-07:00,20.106666564941406,60.0,60000.0 +1001,2025-06-04T16:41:00-07:00,20.084000396728516,60.0,60000.0 +1002,2025-06-04T16:42:00-07:00,20.070000330607098,60.0,60000.0 +1003,2025-06-04T16:43:00-07:00,20.060000737508137,60.0,60000.0 +1004,2025-06-04T16:44:00-07:00,20.05800094604492,60.0,60000.0 +1005,2025-06-04T16:45:00-07:00,20.049999872843426,60.0,60000.0 +1006,2025-06-04T16:46:00-07:00,20.040000915527344,60.0,60000.0 +1007,2025-06-04T16:47:00-07:00,20.044000244140626,60.0,60000.0 +1008,2025-06-04T16:48:00-07:00,20.045000076293945,60.0,60000.0 +1009,2025-06-04T16:49:00-07:00,20.043333689371746,60.0,60000.0 +1010,2025-06-04T16:50:00-07:00,20.044000244140626,60.0,60000.0 +1011,2025-06-04T16:51:00-07:00,20.038333257039387,60.0,60000.0 +1012,2025-06-04T16:52:00-07:00,20.03499984741211,60.0,60000.0 +1013,2025-06-04T16:53:00-07:00,20.02666664123535,60.0,60000.0 +1014,2025-06-04T16:54:00-07:00,20.023333231608074,60.0,60000.0 +1015,2025-06-04T16:55:00-07:00,20.036666870117188,60.0,60000.0 +1016,2025-06-04T16:56:00-07:00,20.036000061035157,60.0,60000.0 +1017,2025-06-04T16:57:00-07:00,20.036666870117188,60.0,60000.0 +1018,2025-06-04T16:58:00-07:00,20.043333053588867,60.0,60000.0 +1019,2025-06-04T16:59:00-07:00,20.05800094604492,60.0,60000.0 +1020,2025-06-04T17:00:00-07:00,20.06833330790202,60.0,60000.0 +1021,2025-06-04T17:01:00-07:00,20.065000534057617,60.0,60000.0 +1022,2025-06-04T17:02:00-07:00,20.068000030517577,60.0,60000.0 +1023,2025-06-04T17:03:00-07:00,20.05500030517578,60.0,60000.0 +1024,2025-06-04T17:04:00-07:00,20.045000076293945,60.0,60000.0 +1025,2025-06-04T17:05:00-07:00,20.045999908447264,60.0,60000.0 +1026,2025-06-04T17:06:00-07:00,20.053333282470703,60.0,60000.0 +1027,2025-06-04T17:07:00-07:00,20.05500030517578,60.0,60000.0 +1028,2025-06-04T17:08:00-07:00,20.060001373291016,60.0,60000.0 +1029,2025-06-04T17:09:00-07:00,20.05500030517578,60.0,60000.0 +1030,2025-06-04T17:10:00-07:00,20.063334147135418,60.0,60000.0 +1031,2025-06-04T17:11:00-07:00,20.066000366210936,60.0,60000.0 +1032,2025-06-04T17:12:00-07:00,20.06999969482422,60.0,60000.0 +1033,2025-06-04T17:13:00-07:00,20.071666717529297,60.0,60000.0 +1034,2025-06-04T17:14:00-07:00,20.074000549316406,60.0,60000.0 +1035,2025-06-04T17:15:00-07:00,20.066667556762695,60.0,60000.0 +1036,2025-06-04T17:16:00-07:00,20.066666920979817,60.0,60000.0 +1037,2025-06-04T17:17:00-07:00,20.06999969482422,60.0,60000.0 +1038,2025-06-04T17:18:00-07:00,20.070000330607098,60.0,60000.0 +1039,2025-06-04T17:19:00-07:00,20.05833371480306,60.0,60000.0 +1040,2025-06-04T17:20:00-07:00,20.046666463216145,60.0,60000.0 +1041,2025-06-04T17:21:00-07:00,20.045999908447264,60.0,60000.0 +1042,2025-06-04T17:22:00-07:00,20.058334350585938,60.0,60000.0 +1043,2025-06-04T17:23:00-07:00,20.063334147135418,60.0,60000.0 +1044,2025-06-04T17:24:00-07:00,20.066000366210936,60.0,60000.0 +1045,2025-06-04T17:25:00-07:00,20.05666732788086,60.0,60000.0 +1046,2025-06-04T17:26:00-07:00,20.049999237060547,60.0,60000.0 +1047,2025-06-04T17:27:00-07:00,20.05600051879883,60.0,60000.0 +1048,2025-06-04T17:28:00-07:00,20.048332850138348,60.0,60000.0 +1049,2025-06-04T17:29:00-07:00,20.048332850138348,60.0,60000.0 +1050,2025-06-04T17:30:00-07:00,20.049999237060547,60.0,60000.0 +1051,2025-06-04T17:31:00-07:00,20.051666259765625,60.0,60000.0 +1052,2025-06-04T17:32:00-07:00,20.048332850138348,60.0,60000.0 +1053,2025-06-04T17:33:00-07:00,20.045999908447264,60.0,60000.0 +1054,2025-06-04T17:34:00-07:00,20.041667302449543,60.0,60000.0 +1055,2025-06-04T17:35:00-07:00,20.043333689371746,60.0,60000.0 +1056,2025-06-04T17:36:00-07:00,20.042000579833985,60.0,60000.0 +1057,2025-06-04T17:37:00-07:00,20.05500030517578,60.0,60000.0 +1058,2025-06-04T17:38:00-07:00,20.05666732788086,60.0,60000.0 +1059,2025-06-04T17:39:00-07:00,20.049999237060547,60.0,60000.0 +1060,2025-06-04T17:40:00-07:00,20.05500030517578,60.0,60000.0 +1061,2025-06-04T17:41:00-07:00,20.060001373291016,60.0,60000.0 +1062,2025-06-04T17:42:00-07:00,20.051999664306642,60.0,60000.0 +1063,2025-06-04T17:43:00-07:00,20.048332850138348,60.0,60000.0 +1064,2025-06-04T17:44:00-07:00,20.041667302449543,60.0,60000.0 +1065,2025-06-04T17:45:00-07:00,20.040000915527344,60.0,60000.0 +1066,2025-06-04T17:46:00-07:00,20.041667302449543,60.0,60000.0 +1067,2025-06-04T17:47:00-07:00,20.046666463216145,60.0,60000.0 +1068,2025-06-04T17:48:00-07:00,20.06600112915039,60.0,60000.0 +1069,2025-06-04T17:49:00-07:00,20.065000534057617,60.0,60000.0 +1070,2025-06-04T17:50:00-07:00,20.05666669209798,60.0,60000.0 +1071,2025-06-04T17:51:00-07:00,20.051999664306642,60.0,60000.0 +1072,2025-06-04T17:52:00-07:00,20.05666669209798,60.0,60000.0 +1073,2025-06-04T17:53:00-07:00,20.07166798909505,60.0,60000.0 +1074,2025-06-04T17:54:00-07:00,20.091999816894532,60.0,60000.0 +1075,2025-06-04T17:55:00-07:00,20.111666361490887,60.0,60000.0 +1076,2025-06-04T17:56:00-07:00,20.126667022705078,60.0,60000.0 +1077,2025-06-04T17:57:00-07:00,20.136000061035155,60.0,60000.0 +1078,2025-06-04T17:58:00-07:00,20.14666748046875,60.0,60000.0 +1079,2025-06-04T17:59:00-07:00,20.143333435058594,60.0,60000.0 +1080,2025-06-04T18:00:00-07:00,20.137999725341796,60.0,60000.0 +1081,2025-06-04T18:01:00-07:00,20.145000457763672,60.0,60000.0 +1082,2025-06-04T18:02:00-07:00,20.16333262125651,60.0,60000.0 +1083,2025-06-04T18:03:00-07:00,20.177999877929686,60.0,60000.0 +1084,2025-06-04T18:04:00-07:00,20.196666717529297,60.0,60000.0 +1085,2025-06-04T18:05:00-07:00,20.208333333333332,60.0,60000.0 +1086,2025-06-04T18:06:00-07:00,20.204000091552736,60.0,60000.0 +1087,2025-06-04T18:07:00-07:00,20.184999465942383,60.0,60000.0 +1088,2025-06-04T18:08:00-07:00,20.19166628519694,60.0,60000.0 +1089,2025-06-04T18:09:00-07:00,20.21800003051758,60.0,60000.0 +1090,2025-06-04T18:10:00-07:00,20.253333409627277,60.0,60000.0 +1091,2025-06-04T18:11:00-07:00,20.28333346048991,60.0,60000.0 +1092,2025-06-04T18:12:00-07:00,20.288333892822266,60.0,60000.0 +1093,2025-06-04T18:13:00-07:00,20.269998931884764,60.0,60000.0 +1094,2025-06-04T18:14:00-07:00,20.231667200724285,60.0,60000.0 +1095,2025-06-04T18:15:00-07:00,20.204999923706055,60.0,60000.0 +1096,2025-06-04T18:16:00-07:00,20.18399887084961,60.0,60000.0 +1097,2025-06-04T18:17:00-07:00,20.161666870117188,60.0,60000.0 +1098,2025-06-04T18:18:00-07:00,20.144999821980793,60.0,60000.0 +1099,2025-06-04T18:19:00-07:00,20.158000183105468,60.0,60000.0 +1100,2025-06-04T18:20:00-07:00,20.150000254313152,60.0,60000.0 +1101,2025-06-04T18:21:00-07:00,20.136666615804035,60.0,60000.0 +1102,2025-06-04T18:22:00-07:00,20.120000457763673,60.0,60000.0 +1103,2025-06-04T18:23:00-07:00,20.110000610351562,60.0,60000.0 +1104,2025-06-04T18:24:00-07:00,20.109999974568684,60.0,60000.0 +1105,2025-06-04T18:25:00-07:00,20.09000015258789,60.0,60000.0 +1106,2025-06-04T18:26:00-07:00,20.081668217976887,60.0,60000.0 +1107,2025-06-04T18:27:00-07:00,20.05500030517578,60.0,60000.0 +1108,2025-06-04T18:28:00-07:00,20.042000579833985,60.0,60000.0 +1109,2025-06-04T18:29:00-07:00,20.024999618530273,60.0,60000.0 +1110,2025-06-04T18:30:00-07:00,20.048332850138348,60.0,60000.0 +1111,2025-06-04T18:31:00-07:00,20.074000549316406,60.0,60000.0 +1112,2025-06-04T18:32:00-07:00,20.08833376566569,60.0,60000.0 +1113,2025-06-04T18:33:00-07:00,20.09666570027669,60.0,60000.0 +1114,2025-06-04T18:34:00-07:00,20.09599914550781,60.0,60000.0 +1115,2025-06-04T18:35:00-07:00,20.094999313354492,60.0,60000.0 +1116,2025-06-04T18:36:00-07:00,20.09666633605957,60.0,60000.0 +1117,2025-06-04T18:37:00-07:00,20.115999603271483,60.0,60000.0 +1118,2025-06-04T18:38:00-07:00,20.135000864664715,60.0,60000.0 +1119,2025-06-04T18:39:00-07:00,20.15166727701823,60.0,60000.0 +1120,2025-06-04T18:40:00-07:00,20.163999176025392,60.0,60000.0 +1121,2025-06-04T18:41:00-07:00,20.16666539510091,60.0,60000.0 +1122,2025-06-04T18:42:00-07:00,20.184999465942383,60.0,60000.0 +1123,2025-06-04T18:43:00-07:00,20.210000610351564,60.0,60000.0 +1124,2025-06-04T18:44:00-07:00,20.23666763305664,60.0,60000.0 +1125,2025-06-04T18:45:00-07:00,20.259999593098957,60.0,60000.0 +1126,2025-06-04T18:46:00-07:00,20.29000015258789,60.0,60000.0 +1127,2025-06-04T18:47:00-07:00,20.296666463216145,60.0,60000.0 +1128,2025-06-04T18:48:00-07:00,20.303333282470703,60.0,60000.0 +1129,2025-06-04T18:49:00-07:00,20.312001037597657,60.0,60000.0 +1130,2025-06-04T18:50:00-07:00,20.316666920979817,60.0,60000.0 +1131,2025-06-04T18:51:00-07:00,20.321666717529297,60.0,60000.0 +1132,2025-06-04T18:52:00-07:00,20.316000366210936,60.0,60000.0 +1133,2025-06-04T18:53:00-07:00,20.316666920979817,60.0,60000.0 +1134,2025-06-04T18:54:00-07:00,20.320000330607098,60.0,60000.0 +1135,2025-06-04T18:55:00-07:00,20.320000457763673,60.0,60000.0 +1136,2025-06-04T18:56:00-07:00,20.321667353312176,60.0,60000.0 +1137,2025-06-04T18:57:00-07:00,20.316666920979817,60.0,60000.0 +1138,2025-06-04T18:58:00-07:00,20.326667149861652,60.0,60000.0 +1139,2025-06-04T18:59:00-07:00,20.32400131225586,60.0,60000.0 +1140,2025-06-04T19:00:00-07:00,20.316666920979817,60.0,60000.0 +1141,2025-06-04T19:01:00-07:00,20.313334147135418,60.0,60000.0 +1142,2025-06-04T19:02:00-07:00,20.310001373291016,60.0,60000.0 +1143,2025-06-04T19:03:00-07:00,20.31833330790202,60.0,60000.0 +1144,2025-06-04T19:04:00-07:00,20.325000762939453,60.0,60000.0 +1145,2025-06-04T19:05:00-07:00,20.328000640869142,60.0,60000.0 +1146,2025-06-04T19:06:00-07:00,20.330001831054688,60.0,60000.0 +1147,2025-06-04T19:07:00-07:00,20.33166758219401,60.0,60000.0 +1148,2025-06-04T19:08:00-07:00,20.328001403808592,60.0,60000.0 +1149,2025-06-04T19:09:00-07:00,20.331668217976887,60.0,60000.0 +1150,2025-06-04T19:10:00-07:00,20.331668217976887,60.0,60000.0 +1151,2025-06-04T19:11:00-07:00,20.328001403808592,60.0,60000.0 +1152,2025-06-04T19:12:00-07:00,20.320000330607098,60.0,60000.0 +1153,2025-06-04T19:13:00-07:00,20.313334147135418,60.0,60000.0 +1154,2025-06-04T19:14:00-07:00,20.304000091552734,60.0,60000.0 +1155,2025-06-04T19:15:00-07:00,20.296666463216145,60.0,60000.0 +1156,2025-06-04T19:16:00-07:00,20.291666666666668,60.0,60000.0 +1157,2025-06-04T19:17:00-07:00,20.294000244140626,60.0,60000.0 +1158,2025-06-04T19:18:00-07:00,20.291667302449543,60.0,60000.0 +1159,2025-06-04T19:19:00-07:00,20.291667302449543,60.0,60000.0 +1160,2025-06-04T19:20:00-07:00,20.295999908447264,60.0,60000.0 +1161,2025-06-04T19:21:00-07:00,20.296666463216145,60.0,60000.0 +1162,2025-06-04T19:22:00-07:00,20.291667302449543,60.0,60000.0 +1163,2025-06-04T19:23:00-07:00,20.28800048828125,60.0,60000.0 +1164,2025-06-04T19:24:00-07:00,20.290000915527344,60.0,60000.0 +1165,2025-06-04T19:25:00-07:00,20.295000076293945,60.0,60000.0 +1166,2025-06-04T19:26:00-07:00,20.292000579833985,60.0,60000.0 +1167,2025-06-04T19:27:00-07:00,20.291666666666668,60.0,60000.0 +1168,2025-06-04T19:28:00-07:00,20.278332392374676,60.0,60000.0 +1169,2025-06-04T19:29:00-07:00,20.265999603271485,60.0,60000.0 +1170,2025-06-04T19:30:00-07:00,20.259998957316082,60.0,60000.0 +1171,2025-06-04T19:31:00-07:00,20.2483336130778,60.0,60000.0 +1172,2025-06-04T19:32:00-07:00,20.23600082397461,60.0,60000.0 +1173,2025-06-04T19:33:00-07:00,20.230000178019207,60.0,60000.0 +1174,2025-06-04T19:34:00-07:00,20.226666768391926,60.0,60000.0 +1175,2025-06-04T19:35:00-07:00,20.23600082397461,60.0,60000.0 +1176,2025-06-04T19:36:00-07:00,20.2450008392334,60.0,60000.0 +1177,2025-06-04T19:37:00-07:00,20.2483336130778,60.0,60000.0 +1178,2025-06-04T19:38:00-07:00,20.24800033569336,60.0,60000.0 +1179,2025-06-04T19:39:00-07:00,20.241668065388996,60.0,60000.0 +1180,2025-06-04T19:40:00-07:00,20.240001678466797,60.0,60000.0 +1181,2025-06-04T19:41:00-07:00,20.240001678466797,60.0,60000.0 +1182,2025-06-04T19:42:00-07:00,20.230000178019207,60.0,60000.0 +1183,2025-06-04T19:43:00-07:00,20.226666768391926,60.0,60000.0 +1184,2025-06-04T19:44:00-07:00,20.226000213623045,60.0,60000.0 +1185,2025-06-04T19:45:00-07:00,20.225000381469727,60.0,60000.0 +1186,2025-06-04T19:46:00-07:00,20.229999542236328,60.0,60000.0 +1187,2025-06-04T19:47:00-07:00,20.229999542236328,60.0,60000.0 +1188,2025-06-04T19:48:00-07:00,20.23600082397461,60.0,60000.0 +1189,2025-06-04T19:49:00-07:00,20.23833465576172,60.0,60000.0 +1190,2025-06-04T19:50:00-07:00,20.2450008392334,60.0,60000.0 +1191,2025-06-04T19:51:00-07:00,20.246000671386717,60.0,60000.0 +1192,2025-06-04T19:52:00-07:00,20.2549991607666,60.0,60000.0 +1193,2025-06-04T19:53:00-07:00,20.2549991607666,60.0,60000.0 +1194,2025-06-04T19:54:00-07:00,20.25599899291992,60.0,60000.0 +1195,2025-06-04T19:55:00-07:00,20.26166534423828,60.0,60000.0 +1196,2025-06-04T19:56:00-07:00,20.26166534423828,60.0,60000.0 +1197,2025-06-04T19:57:00-07:00,20.253999328613283,60.0,60000.0 +1198,2025-06-04T19:58:00-07:00,20.2433344523112,60.0,60000.0 +1199,2025-06-04T19:59:00-07:00,20.240001678466797,60.0,60000.0 +1200,2025-06-04T20:00:00-07:00,20.24800033569336,60.0,60000.0 +1201,2025-06-04T20:01:00-07:00,20.2483336130778,60.0,60000.0 +1202,2025-06-04T20:02:00-07:00,20.2450008392334,60.0,60000.0 +1203,2025-06-04T20:03:00-07:00,20.242001342773438,60.0,60000.0 +1204,2025-06-04T20:04:00-07:00,20.2450008392334,60.0,60000.0 +1205,2025-06-04T20:05:00-07:00,20.246667226155598,60.0,60000.0 +1206,2025-06-04T20:06:00-07:00,20.24400100708008,60.0,60000.0 +1207,2025-06-04T20:07:00-07:00,20.2433344523112,60.0,60000.0 +1208,2025-06-04T20:08:00-07:00,20.25,60.0,60000.0 +1209,2025-06-04T20:09:00-07:00,20.253999328613283,60.0,60000.0 +1210,2025-06-04T20:10:00-07:00,20.2516663869222,60.0,60000.0 +1211,2025-06-04T20:11:00-07:00,20.2516663869222,60.0,60000.0 +1212,2025-06-04T20:12:00-07:00,20.253999328613283,60.0,60000.0 +1213,2025-06-04T20:13:00-07:00,20.259998321533203,60.0,60000.0 +1214,2025-06-04T20:14:00-07:00,20.26333236694336,60.0,60000.0 +1215,2025-06-04T20:15:00-07:00,20.2619987487793,60.0,60000.0 +1216,2025-06-04T20:16:00-07:00,20.266666412353516,60.0,60000.0 +1217,2025-06-04T20:17:00-07:00,20.274999618530273,60.0,60000.0 +1218,2025-06-04T20:18:00-07:00,20.273999786376955,60.0,60000.0 +1219,2025-06-04T20:19:00-07:00,20.288333892822266,60.0,60000.0 +1220,2025-06-04T20:20:00-07:00,20.291667302449543,60.0,60000.0 +1221,2025-06-04T20:21:00-07:00,20.295999908447264,60.0,60000.0 +1222,2025-06-04T20:22:00-07:00,20.299999872843426,60.0,60000.0 +1223,2025-06-04T20:23:00-07:00,20.30666669209798,60.0,60000.0 +1224,2025-06-04T20:24:00-07:00,20.30600051879883,60.0,60000.0 +1225,2025-06-04T20:25:00-07:00,20.308334350585938,60.0,60000.0 +1226,2025-06-04T20:26:00-07:00,20.320000330607098,60.0,60000.0 +1227,2025-06-04T20:27:00-07:00,20.328000640869142,60.0,60000.0 +1228,2025-06-04T20:28:00-07:00,20.34000015258789,60.0,60000.0 +1229,2025-06-04T20:29:00-07:00,20.34833272298177,60.0,60000.0 +1230,2025-06-04T20:30:00-07:00,20.358000183105467,60.0,60000.0 +1231,2025-06-04T20:31:00-07:00,20.363333384195965,60.0,60000.0 +1232,2025-06-04T20:32:00-07:00,20.38166681925456,60.0,60000.0 +1233,2025-06-04T20:33:00-07:00,20.393333435058594,60.0,60000.0 +1234,2025-06-04T20:34:00-07:00,20.39800109863281,60.0,60000.0 +1235,2025-06-04T20:35:00-07:00,20.40999984741211,60.0,60000.0 +1236,2025-06-04T20:36:00-07:00,20.42333221435547,60.0,60000.0 +1237,2025-06-04T20:37:00-07:00,20.43000030517578,60.0,60000.0 +1238,2025-06-04T20:38:00-07:00,20.434998830159504,60.0,60000.0 +1239,2025-06-04T20:39:00-07:00,20.436665852864582,60.0,60000.0 +1240,2025-06-04T20:40:00-07:00,20.44199905395508,60.0,60000.0 +1241,2025-06-04T20:41:00-07:00,20.448333740234375,60.0,60000.0 +1242,2025-06-04T20:42:00-07:00,20.456666310628254,60.0,60000.0 +1243,2025-06-04T20:43:00-07:00,20.46199951171875,60.0,60000.0 +1244,2025-06-04T20:44:00-07:00,20.470001220703125,60.0,60000.0 +1245,2025-06-04T20:45:00-07:00,20.47833315531413,60.0,60000.0 +1246,2025-06-04T20:46:00-07:00,20.490001678466797,60.0,60000.0 +1247,2025-06-04T20:47:00-07:00,20.5,60.0,60000.0 +1248,2025-06-04T20:48:00-07:00,20.516666412353516,60.0,60000.0 +1249,2025-06-04T20:49:00-07:00,20.52999954223633,60.0,60000.0 +1250,2025-06-04T20:50:00-07:00,20.56166712443034,60.0,60000.0 +1251,2025-06-04T20:51:00-07:00,20.59666697184245,60.0,60000.0 +1252,2025-06-04T20:52:00-07:00,20.62799987792969,60.0,60000.0 +1253,2025-06-04T20:53:00-07:00,20.65166727701823,60.0,60000.0 +1254,2025-06-04T20:54:00-07:00,20.679999033610027,60.0,60000.0 +1255,2025-06-04T20:55:00-07:00,20.7,60.0,60000.0 +1256,2025-06-04T20:56:00-07:00,20.725000381469727,60.0,60000.0 +1257,2025-06-04T20:57:00-07:00,20.75666618347168,60.0,60000.0 +1258,2025-06-04T20:58:00-07:00,20.777999877929688,60.0,60000.0 +1259,2025-06-04T20:59:00-07:00,20.793333689371746,60.0,60000.0 +1260,2025-06-04T21:00:00-07:00,20.80500030517578,60.0,60000.0 +1261,2025-06-04T21:01:00-07:00,20.824000549316406,60.0,60000.0 +1262,2025-06-04T21:02:00-07:00,20.831668217976887,60.0,60000.0 +1263,2025-06-04T21:03:00-07:00,20.816668192545574,60.0,60000.0 +1264,2025-06-04T21:04:00-07:00,20.805999755859375,60.0,60000.0 +1265,2025-06-04T21:05:00-07:00,20.78333282470703,60.0,60000.0 +1266,2025-06-04T21:06:00-07:00,20.76999936785017,60.0,60000.0 +1267,2025-06-04T21:07:00-07:00,20.75599899291992,60.0,60000.0 +1268,2025-06-04T21:08:00-07:00,20.746667226155598,60.0,60000.0 +1269,2025-06-04T21:09:00-07:00,20.723333994547527,60.0,60000.0 +1270,2025-06-04T21:10:00-07:00,20.708000946044923,60.0,60000.0 +1271,2025-06-04T21:11:00-07:00,20.689999262491863,60.0,60000.0 +1272,2025-06-04T21:12:00-07:00,20.673332850138348,60.0,60000.0 +1273,2025-06-04T21:13:00-07:00,20.656000518798827,60.0,60000.0 +1274,2025-06-04T21:14:00-07:00,20.640000025431316,60.0,60000.0 +1275,2025-06-04T21:15:00-07:00,20.613333384195965,60.0,60000.0 +1276,2025-06-04T21:16:00-07:00,20.597998809814452,60.0,60000.0 +1277,2025-06-04T21:17:00-07:00,20.58666737874349,60.0,60000.0 +1278,2025-06-04T21:18:00-07:00,20.56499989827474,60.0,60000.0 +1279,2025-06-04T21:19:00-07:00,20.537998962402344,60.0,60000.0 +1280,2025-06-04T21:20:00-07:00,20.523333231608074,60.0,60000.0 +1281,2025-06-04T21:21:00-07:00,20.5016663869222,60.0,60000.0 +1282,2025-06-04T21:22:00-07:00,20.490000915527343,60.0,60000.0 +1283,2025-06-04T21:23:00-07:00,20.476666768391926,60.0,60000.0 +1284,2025-06-04T21:24:00-07:00,20.468334197998047,60.0,60000.0 +1285,2025-06-04T21:25:00-07:00,20.454999923706055,60.0,60000.0 +1286,2025-06-04T21:26:00-07:00,20.447999572753908,60.0,60000.0 +1287,2025-06-04T21:27:00-07:00,20.43833287556966,60.0,60000.0 +1288,2025-06-04T21:28:00-07:00,20.429999669392902,60.0,60000.0 +1289,2025-06-04T21:29:00-07:00,20.421998596191408,60.0,60000.0 +1290,2025-06-04T21:30:00-07:00,20.41333262125651,60.0,60000.0 +1291,2025-06-04T21:31:00-07:00,20.406667073567707,60.0,60000.0 +1292,2025-06-04T21:32:00-07:00,20.408000183105468,60.0,60000.0 +1293,2025-06-04T21:33:00-07:00,20.393334070841473,60.0,60000.0 +1294,2025-06-04T21:34:00-07:00,20.371667226155598,60.0,60000.0 +1295,2025-06-04T21:35:00-07:00,20.349998474121094,60.0,60000.0 +1296,2025-06-04T21:36:00-07:00,20.34166653951009,60.0,60000.0 +1297,2025-06-04T21:37:00-07:00,20.349998474121094,60.0,60000.0 +1298,2025-06-04T21:38:00-07:00,20.343999481201173,60.0,60000.0 +1299,2025-06-04T21:39:00-07:00,20.33833376566569,60.0,60000.0 +1300,2025-06-04T21:40:00-07:00,20.34666570027669,60.0,60000.0 +1301,2025-06-04T21:41:00-07:00,20.347998809814452,60.0,60000.0 +1302,2025-06-04T21:42:00-07:00,20.349998474121094,60.0,60000.0 +1303,2025-06-04T21:43:00-07:00,20.349999109903973,60.0,60000.0 +1304,2025-06-04T21:44:00-07:00,20.341999816894532,60.0,60000.0 +1305,2025-06-04T21:45:00-07:00,20.34000015258789,60.0,60000.0 +1306,2025-06-04T21:46:00-07:00,20.330001831054688,60.0,60000.0 +1307,2025-06-04T21:47:00-07:00,20.330001831054688,60.0,60000.0 +1308,2025-06-04T21:48:00-07:00,20.330001831054688,60.0,60000.0 +1309,2025-06-04T21:49:00-07:00,20.31999969482422,60.0,60000.0 +1310,2025-06-04T21:50:00-07:00,20.316000366210936,60.0,60000.0 +1311,2025-06-04T21:51:00-07:00,20.315001169840496,60.0,60000.0 +1312,2025-06-04T21:52:00-07:00,20.313334147135418,60.0,60000.0 +1313,2025-06-04T21:53:00-07:00,20.312001037597657,60.0,60000.0 +1314,2025-06-04T21:54:00-07:00,20.316666920979817,60.0,60000.0 +1315,2025-06-04T21:55:00-07:00,20.32166798909505,60.0,60000.0 +1316,2025-06-04T21:56:00-07:00,20.322000122070314,60.0,60000.0 +1317,2025-06-04T21:57:00-07:00,20.32833480834961,60.0,60000.0 +1318,2025-06-04T21:58:00-07:00,20.330001831054688,60.0,60000.0 +1319,2025-06-04T21:59:00-07:00,20.33400115966797,60.0,60000.0 +1320,2025-06-04T22:00:00-07:00,20.33500099182129,60.0,60000.0 +1321,2025-06-04T22:01:00-07:00,20.33666737874349,60.0,60000.0 +1322,2025-06-04T22:02:00-07:00,20.341999816894532,60.0,60000.0 +1323,2025-06-04T22:03:00-07:00,20.34000015258789,60.0,60000.0 +1324,2025-06-04T22:04:00-07:00,20.343332926432293,60.0,60000.0 +1325,2025-06-04T22:05:00-07:00,20.34599914550781,60.0,60000.0 +1326,2025-06-04T22:06:00-07:00,20.35333251953125,60.0,60000.0 +1327,2025-06-04T22:07:00-07:00,20.358333587646484,60.0,60000.0 +1328,2025-06-04T22:08:00-07:00,20.365999603271483,60.0,60000.0 +1329,2025-06-04T22:09:00-07:00,20.366666158040363,60.0,60000.0 +1330,2025-06-04T22:10:00-07:00,20.380000432332356,60.0,60000.0 +1331,2025-06-04T22:11:00-07:00,20.37800064086914,60.0,60000.0 +1332,2025-06-04T22:12:00-07:00,20.383333206176758,60.0,60000.0 +1333,2025-06-04T22:13:00-07:00,20.383333841959637,60.0,60000.0 +1334,2025-06-04T22:14:00-07:00,20.382000732421876,60.0,60000.0 +1335,2025-06-04T22:15:00-07:00,20.381667455037434,60.0,60000.0 +1336,2025-06-04T22:16:00-07:00,20.386666615804035,60.0,60000.0 +1337,2025-06-04T22:17:00-07:00,20.394000244140624,60.0,60000.0 +1338,2025-06-04T22:18:00-07:00,20.39666748046875,60.0,60000.0 +1339,2025-06-04T22:19:00-07:00,20.405000686645508,60.0,60000.0 +1340,2025-06-04T22:20:00-07:00,20.406667073567707,60.0,60000.0 +1341,2025-06-04T22:21:00-07:00,20.413999176025392,60.0,60000.0 +1342,2025-06-04T22:22:00-07:00,20.41499900817871,60.0,60000.0 +1343,2025-06-04T22:23:00-07:00,20.41666539510091,60.0,60000.0 +1344,2025-06-04T22:24:00-07:00,20.41799850463867,60.0,60000.0 +1345,2025-06-04T22:25:00-07:00,20.40999984741211,60.0,60000.0 +1346,2025-06-04T22:26:00-07:00,20.41333262125651,60.0,60000.0 +1347,2025-06-04T22:27:00-07:00,20.413999176025392,60.0,60000.0 +1348,2025-06-04T22:28:00-07:00,20.40999984741211,60.0,60000.0 +1349,2025-06-04T22:29:00-07:00,20.419999440511067,60.0,60000.0 +1350,2025-06-04T22:30:00-07:00,20.41799850463867,60.0,60000.0 +1351,2025-06-04T22:31:00-07:00,20.41666539510091,60.0,60000.0 +1352,2025-06-04T22:32:00-07:00,20.40833346048991,60.0,60000.0 +1353,2025-06-04T22:33:00-07:00,20.39800109863281,60.0,60000.0 +1354,2025-06-04T22:34:00-07:00,20.398334503173828,60.0,60000.0 +1355,2025-06-04T22:35:00-07:00,20.405000686645508,60.0,60000.0 +1356,2025-06-04T22:36:00-07:00,20.406000518798827,60.0,60000.0 +1357,2025-06-04T22:37:00-07:00,20.40333429972331,60.0,60000.0 +1358,2025-06-04T22:38:00-07:00,20.405000686645508,60.0,60000.0 +1359,2025-06-04T22:39:00-07:00,20.40999984741211,60.0,60000.0 +1360,2025-06-04T22:40:00-07:00,20.406667073567707,60.0,60000.0 +1361,2025-06-04T22:41:00-07:00,20.401667912801106,60.0,60000.0 +1362,2025-06-04T22:42:00-07:00,20.394000244140624,60.0,60000.0 +1363,2025-06-04T22:43:00-07:00,20.391666412353516,60.0,60000.0 +1364,2025-06-04T22:44:00-07:00,20.383333841959637,60.0,60000.0 +1365,2025-06-04T22:45:00-07:00,20.37800064086914,60.0,60000.0 +1366,2025-06-04T22:46:00-07:00,20.369999567667644,60.0,60000.0 +1367,2025-06-04T22:47:00-07:00,20.369998931884766,60.0,60000.0 +1368,2025-06-04T22:48:00-07:00,20.362000274658204,60.0,60000.0 +1369,2025-06-04T22:49:00-07:00,20.356666564941406,60.0,60000.0 +1370,2025-06-04T22:50:00-07:00,20.349998474121094,60.0,60000.0 +1371,2025-06-04T22:51:00-07:00,20.347998809814452,60.0,60000.0 +1372,2025-06-04T22:52:00-07:00,20.33666737874349,60.0,60000.0 +1373,2025-06-04T22:53:00-07:00,20.33666737874349,60.0,60000.0 +1374,2025-06-04T22:54:00-07:00,20.328000640869142,60.0,60000.0 +1375,2025-06-04T22:55:00-07:00,20.331430162702286,60.0,60000.0 +1376,2025-06-04T22:56:00-07:00,20.33000119527181,60.0,60000.0 +1377,2025-06-04T22:57:00-07:00,20.328001403808592,60.0,60000.0 +1378,2025-06-04T22:58:00-07:00,20.32666778564453,60.0,60000.0 +1379,2025-06-04T22:59:00-07:00,20.316667556762695,60.0,60000.0 +1380,2025-06-04T23:00:00-07:00,20.3140007019043,60.0,60000.0 +1381,2025-06-04T23:01:00-07:00,20.303333282470703,60.0,60000.0 +1382,2025-06-04T23:02:00-07:00,20.301666259765625,60.0,60000.0 +1383,2025-06-04T23:03:00-07:00,20.299999237060547,60.0,60000.0 +1384,2025-06-04T23:04:00-07:00,20.293333689371746,60.0,60000.0 +1385,2025-06-04T23:05:00-07:00,20.288333257039387,60.0,60000.0 +1386,2025-06-04T23:06:00-07:00,20.274000549316405,60.0,60000.0 +1387,2025-06-04T23:07:00-07:00,20.263333002726238,60.0,60000.0 +1388,2025-06-04T23:08:00-07:00,20.246667226155598,60.0,60000.0 +1389,2025-06-04T23:09:00-07:00,20.231999969482423,60.0,60000.0 +1390,2025-06-04T23:10:00-07:00,20.228333791097004,60.0,60000.0 +1391,2025-06-04T23:11:00-07:00,20.21666717529297,60.0,60000.0 +1392,2025-06-04T23:12:00-07:00,20.195999908447266,60.0,60000.0 +1393,2025-06-04T23:13:00-07:00,20.188332239786785,60.0,60000.0 +1394,2025-06-04T23:14:00-07:00,20.176666259765625,60.0,60000.0 +1395,2025-06-04T23:15:00-07:00,20.16599884033203,60.0,60000.0 +1396,2025-06-04T23:16:00-07:00,20.155000686645508,60.0,60000.0 +1397,2025-06-04T23:17:00-07:00,20.145000457763672,60.0,60000.0 +1398,2025-06-04T23:18:00-07:00,20.138333638509113,60.0,60000.0 +1399,2025-06-04T23:19:00-07:00,20.130001068115234,60.0,60000.0 +1400,2025-06-04T23:20:00-07:00,20.119999567667644,60.0,60000.0 +1401,2025-06-04T23:21:00-07:00,20.113332748413086,60.0,60000.0 +1402,2025-06-04T23:22:00-07:00,20.10399932861328,60.0,60000.0 +1403,2025-06-04T23:23:00-07:00,20.09666633605957,60.0,60000.0 +1404,2025-06-04T23:24:00-07:00,20.09166653951009,60.0,60000.0 +1405,2025-06-04T23:25:00-07:00,20.08400115966797,60.0,60000.0 +1406,2025-06-04T23:26:00-07:00,20.08166758219401,60.0,60000.0 +1407,2025-06-04T23:27:00-07:00,20.06833330790202,60.0,60000.0 +1408,2025-06-04T23:28:00-07:00,20.060001373291016,60.0,60000.0 +1409,2025-06-04T23:29:00-07:00,20.053333918253582,60.0,60000.0 +1410,2025-06-04T23:30:00-07:00,20.038333257039387,60.0,60000.0 +1411,2025-06-04T23:31:00-07:00,20.023999786376955,60.0,60000.0 +1412,2025-06-04T23:32:00-07:00,20.011666615804035,60.0,60000.0 +1413,2025-06-04T23:33:00-07:00,20.0,60.0,60000.0 +1414,2025-06-04T23:34:00-07:00,19.9880012512207,60.0,60000.0 +1415,2025-06-04T23:35:00-07:00,19.983333587646484,60.0,60000.0 +1416,2025-06-04T23:36:00-07:00,19.978333791097004,60.0,60000.0 +1417,2025-06-04T23:37:00-07:00,19.966000366210938,60.0,60000.0 +1418,2025-06-04T23:38:00-07:00,19.96500015258789,60.0,60000.0 +1419,2025-06-04T23:39:00-07:00,19.956666310628254,60.0,60000.0 +1420,2025-06-04T23:40:00-07:00,19.948000335693358,60.0,60000.0 +1421,2025-06-04T23:41:00-07:00,19.941665649414062,60.0,60000.0 +1422,2025-06-04T23:42:00-07:00,19.941665649414062,60.0,60000.0 +1423,2025-06-04T23:43:00-07:00,19.927999877929686,60.0,60000.0 +1424,2025-06-04T23:44:00-07:00,19.918331782023113,60.0,60000.0 +1425,2025-06-04T23:45:00-07:00,19.906666437784832,60.0,60000.0 +1426,2025-06-04T23:46:00-07:00,19.89800109863281,60.0,60000.0 +1427,2025-06-04T23:47:00-07:00,19.89666748046875,60.0,60000.0 +1428,2025-06-04T23:48:00-07:00,19.886667251586914,60.0,60000.0 +1429,2025-06-04T23:49:00-07:00,19.883999633789063,60.0,60000.0 +1430,2025-06-04T23:50:00-07:00,19.878334045410156,60.0,60000.0 +1431,2025-06-04T23:51:00-07:00,19.871665954589844,60.0,60000.0 +1432,2025-06-04T23:52:00-07:00,19.863999938964845,60.0,60000.0 +1433,2025-06-04T23:53:00-07:00,19.85333251953125,60.0,60000.0 +1434,2025-06-04T23:54:00-07:00,19.85333315531413,60.0,60000.0 +1435,2025-06-04T23:55:00-07:00,19.847998809814452,60.0,60000.0 +1436,2025-06-04T23:56:00-07:00,19.84666570027669,60.0,60000.0 +1437,2025-06-04T23:57:00-07:00,19.84000015258789,60.0,60000.0 +1438,2025-06-04T23:58:00-07:00,19.836000823974608,60.0,60000.0 +1439,2025-06-04T23:59:00-07:00,19.823333740234375,60.0,60000.0 +1440,2025-06-05T00:00:00-07:00,19.825000762939453,60.0,60000.0 +1441,2025-06-05T00:01:00-07:00,19.81999969482422,60.0,60000.0 +1442,2025-06-05T00:02:00-07:00,19.811667760213215,60.0,60000.0 +1443,2025-06-05T00:03:00-07:00,19.80666732788086,60.0,60000.0 +1444,2025-06-05T00:04:00-07:00,19.795999908447264,60.0,60000.0 +1445,2025-06-05T00:05:00-07:00,19.790000915527344,60.0,60000.0 +1446,2025-06-05T00:06:00-07:00,19.78666623433431,60.0,60000.0 +1447,2025-06-05T00:07:00-07:00,19.776666005452473,60.0,60000.0 +1448,2025-06-05T00:08:00-07:00,19.772000122070313,60.0,60000.0 +1449,2025-06-05T00:09:00-07:00,19.770000457763672,60.0,60000.0 +1450,2025-06-05T00:10:00-07:00,19.7549991607666,60.0,60000.0 +1451,2025-06-05T00:11:00-07:00,19.75,60.0,60000.0 +1452,2025-06-05T00:12:00-07:00,19.75,60.0,60000.0 +1453,2025-06-05T00:13:00-07:00,19.7433344523112,60.0,60000.0 +1454,2025-06-05T00:14:00-07:00,19.734000396728515,60.0,60000.0 +1455,2025-06-05T00:15:00-07:00,19.729999542236328,60.0,60000.0 +1456,2025-06-05T00:16:00-07:00,19.72833315531413,60.0,60000.0 +1457,2025-06-05T00:17:00-07:00,19.722000885009766,60.0,60000.0 +1458,2025-06-05T00:18:00-07:00,19.720001220703125,60.0,60000.0 +1459,2025-06-05T00:19:00-07:00,19.720000584920246,60.0,60000.0 +1460,2025-06-05T00:20:00-07:00,19.713999938964843,60.0,60000.0 +1461,2025-06-05T00:21:00-07:00,19.703333536783855,60.0,60000.0 +1462,2025-06-05T00:22:00-07:00,19.696666717529297,60.0,60000.0 +1463,2025-06-05T00:23:00-07:00,19.695999908447266,60.0,60000.0 +1464,2025-06-05T00:24:00-07:00,19.689999262491863,60.0,60000.0 +1465,2025-06-05T00:25:00-07:00,19.686665852864582,60.0,60000.0 +1466,2025-06-05T00:26:00-07:00,19.683999633789064,60.0,60000.0 +1467,2025-06-05T00:27:00-07:00,19.678333282470703,60.0,60000.0 +1468,2025-06-05T00:28:00-07:00,19.67333221435547,60.0,60000.0 +1469,2025-06-05T00:29:00-07:00,19.68000030517578,60.0,60000.0 +1470,2025-06-05T00:30:00-07:00,19.67166519165039,60.0,60000.0 +1471,2025-06-05T00:31:00-07:00,19.668331782023113,60.0,60000.0 +1472,2025-06-05T00:32:00-07:00,19.65999984741211,60.0,60000.0 +1473,2025-06-05T00:33:00-07:00,19.65333429972331,60.0,60000.0 +1474,2025-06-05T00:34:00-07:00,19.650001525878906,60.0,60000.0 +1475,2025-06-05T00:35:00-07:00,19.65400085449219,60.0,60000.0 +1476,2025-06-05T00:36:00-07:00,19.655000686645508,60.0,60000.0 +1477,2025-06-05T00:37:00-07:00,19.656667073567707,60.0,60000.0 +1478,2025-06-05T00:38:00-07:00,19.65400085449219,60.0,60000.0 +1479,2025-06-05T00:39:00-07:00,19.645714896065847,60.0,60000.0 +1480,2025-06-05T00:40:00-07:00,19.636666615804035,60.0,60000.0 +1481,2025-06-05T00:41:00-07:00,19.639999389648438,60.0,60000.0 +1482,2025-06-05T00:42:00-07:00,19.636666615804035,60.0,60000.0 +1483,2025-06-05T00:43:00-07:00,19.636667251586914,60.0,60000.0 +1484,2025-06-05T00:44:00-07:00,19.623999786376952,60.0,60000.0 +1485,2025-06-05T00:45:00-07:00,19.621666590372723,60.0,60000.0 +1486,2025-06-05T00:46:00-07:00,19.61833318074544,60.0,60000.0 +1487,2025-06-05T00:47:00-07:00,19.612000274658204,60.0,60000.0 +1488,2025-06-05T00:48:00-07:00,19.60333251953125,60.0,60000.0 +1489,2025-06-05T00:49:00-07:00,19.59666570027669,60.0,60000.0 +1490,2025-06-05T00:50:00-07:00,19.593999481201173,60.0,60000.0 +1491,2025-06-05T00:51:00-07:00,19.59666570027669,60.0,60000.0 +1492,2025-06-05T00:52:00-07:00,19.58833376566569,60.0,60000.0 +1493,2025-06-05T00:53:00-07:00,19.578001403808592,60.0,60000.0 +1494,2025-06-05T00:54:00-07:00,19.57833480834961,60.0,60000.0 +1495,2025-06-05T00:55:00-07:00,19.571667353312176,60.0,60000.0 +1496,2025-06-05T00:56:00-07:00,19.566000366210936,60.0,60000.0 +1497,2025-06-05T00:57:00-07:00,19.56166712443034,60.0,60000.0 +1498,2025-06-05T00:58:00-07:00,19.55500030517578,60.0,60000.0 +1499,2025-06-05T00:59:00-07:00,19.55,60.0,60000.0 +1500,2025-06-05T01:00:00-07:00,19.538333892822266,60.0,60000.0 +1501,2025-06-05T01:01:00-07:00,19.529999415079754,60.0,60000.0 +1502,2025-06-05T01:02:00-07:00,19.524999618530273,60.0,60000.0 +1503,2025-06-05T01:03:00-07:00,19.525999450683592,60.0,60000.0 +1504,2025-06-05T01:04:00-07:00,19.507141658238,60.0,60000.0 +1505,2025-06-05T01:05:00-07:00,19.5,60.0,60000.0 +1506,2025-06-05T01:06:00-07:00,19.496000671386717,60.0,60000.0 +1507,2025-06-05T01:07:00-07:00,19.4950008392334,60.0,60000.0 +1508,2025-06-05T01:08:00-07:00,19.496667226155598,60.0,60000.0 +1509,2025-06-05T01:09:00-07:00,19.48800048828125,60.0,60000.0 +1510,2025-06-05T01:10:00-07:00,19.480000178019207,60.0,60000.0 +1511,2025-06-05T01:11:00-07:00,19.47833315531413,60.0,60000.0 +1512,2025-06-05T01:12:00-07:00,19.480000305175782,60.0,60000.0 +1513,2025-06-05T01:13:00-07:00,19.471667607625324,60.0,60000.0 +1514,2025-06-05T01:14:00-07:00,19.47166697184245,60.0,60000.0 +1515,2025-06-05T01:15:00-07:00,19.463999938964843,60.0,60000.0 +1516,2025-06-05T01:16:00-07:00,19.46500015258789,60.0,60000.0 +1517,2025-06-05T01:17:00-07:00,19.461666107177734,60.0,60000.0 +1518,2025-06-05T01:18:00-07:00,19.454000091552736,60.0,60000.0 +1519,2025-06-05T01:19:00-07:00,19.453333536783855,60.0,60000.0 +1520,2025-06-05T01:20:00-07:00,19.450000762939453,60.0,60000.0 +1521,2025-06-05T01:21:00-07:00,19.44399948120117,60.0,60000.0 +1522,2025-06-05T01:22:00-07:00,19.433333079020183,60.0,60000.0 +1523,2025-06-05T01:23:00-07:00,19.424999237060547,60.0,60000.0 +1524,2025-06-05T01:24:00-07:00,19.421998596191408,60.0,60000.0 +1525,2025-06-05T01:25:00-07:00,19.41499900817871,60.0,60000.0 +1526,2025-06-05T01:26:00-07:00,19.40833346048991,60.0,60000.0 +1527,2025-06-05T01:27:00-07:00,19.402001190185548,60.0,60000.0 +1528,2025-06-05T01:28:00-07:00,19.40333429972331,60.0,60000.0 +1529,2025-06-05T01:29:00-07:00,19.398334503173828,60.0,60000.0 +1530,2025-06-05T01:30:00-07:00,19.39800109863281,60.0,60000.0 +1531,2025-06-05T01:31:00-07:00,19.391666412353516,60.0,60000.0 +1532,2025-06-05T01:32:00-07:00,19.389999389648438,60.0,60000.0 +1533,2025-06-05T01:33:00-07:00,19.389999389648438,60.0,60000.0 +1534,2025-06-05T01:34:00-07:00,19.383333841959637,60.0,60000.0 +1535,2025-06-05T01:35:00-07:00,19.385000228881836,60.0,60000.0 +1536,2025-06-05T01:36:00-07:00,19.38000030517578,60.0,60000.0 +1537,2025-06-05T01:37:00-07:00,19.366666158040363,60.0,60000.0 +1538,2025-06-05T01:38:00-07:00,19.363333384195965,60.0,60000.0 +1539,2025-06-05T01:39:00-07:00,19.363999938964845,60.0,60000.0 +1540,2025-06-05T01:40:00-07:00,19.35499890645345,60.0,60000.0 +1541,2025-06-05T01:41:00-07:00,19.351665496826172,60.0,60000.0 +1542,2025-06-05T01:42:00-07:00,19.35999984741211,60.0,60000.0 +1543,2025-06-05T01:43:00-07:00,19.356666564941406,60.0,60000.0 +1544,2025-06-05T01:44:00-07:00,19.351665496826172,60.0,60000.0 +1545,2025-06-05T01:45:00-07:00,19.349998474121094,60.0,60000.0 +1546,2025-06-05T01:46:00-07:00,19.34666570027669,60.0,60000.0 +1547,2025-06-05T01:47:00-07:00,19.34000015258789,60.0,60000.0 +1548,2025-06-05T01:48:00-07:00,19.343999481201173,60.0,60000.0 +1549,2025-06-05T01:49:00-07:00,19.348332087198894,60.0,60000.0 +1550,2025-06-05T01:50:00-07:00,19.343332926432293,60.0,60000.0 +1551,2025-06-05T01:51:00-07:00,19.343999481201173,60.0,60000.0 +1552,2025-06-05T01:52:00-07:00,19.34000015258789,60.0,60000.0 +1553,2025-06-05T01:53:00-07:00,19.33500099182129,60.0,60000.0 +1554,2025-06-05T01:54:00-07:00,19.33333460489909,60.0,60000.0 +1555,2025-06-05T01:55:00-07:00,19.326000213623047,60.0,60000.0 +1556,2025-06-05T01:56:00-07:00,19.33000119527181,60.0,60000.0 +1557,2025-06-05T01:57:00-07:00,19.323333740234375,60.0,60000.0 +1558,2025-06-05T01:58:00-07:00,19.3140007019043,60.0,60000.0 +1559,2025-06-05T01:59:00-07:00,19.310001373291016,60.0,60000.0 +1560,2025-06-05T02:00:00-07:00,19.30500094095866,60.0,60000.0 +1561,2025-06-05T02:01:00-07:00,19.29199981689453,60.0,60000.0 +1562,2025-06-05T02:02:00-07:00,19.28333282470703,60.0,60000.0 +1563,2025-06-05T02:03:00-07:00,19.276666005452473,60.0,60000.0 +1564,2025-06-05T02:04:00-07:00,19.275999450683592,60.0,60000.0 +1565,2025-06-05T02:05:00-07:00,19.266665776570637,60.0,60000.0 +1566,2025-06-05T02:06:00-07:00,19.2516663869222,60.0,60000.0 +1567,2025-06-05T02:07:00-07:00,19.24800033569336,60.0,60000.0 +1568,2025-06-05T02:08:00-07:00,19.2433344523112,60.0,60000.0 +1569,2025-06-05T02:09:00-07:00,19.240000406901043,60.0,60000.0 +1570,2025-06-05T02:10:00-07:00,19.23600082397461,60.0,60000.0 +1571,2025-06-05T02:11:00-07:00,19.235000610351562,60.0,60000.0 +1572,2025-06-05T02:12:00-07:00,19.231667200724285,60.0,60000.0 +1573,2025-06-05T02:13:00-07:00,19.234000396728515,60.0,60000.0 +1574,2025-06-05T02:14:00-07:00,19.230000178019207,60.0,60000.0 +1575,2025-06-05T02:15:00-07:00,19.22333335876465,60.0,60000.0 +1576,2025-06-05T02:16:00-07:00,19.224000549316408,60.0,60000.0 +1577,2025-06-05T02:17:00-07:00,19.21666653951009,60.0,60000.0 +1578,2025-06-05T02:18:00-07:00,19.21000035603841,60.0,60000.0 +1579,2025-06-05T02:19:00-07:00,19.21199951171875,60.0,60000.0 +1580,2025-06-05T02:20:00-07:00,19.209999084472656,60.0,60000.0 +1581,2025-06-05T02:21:00-07:00,19.206666310628254,60.0,60000.0 +1582,2025-06-05T02:22:00-07:00,19.198000335693358,60.0,60000.0 +1583,2025-06-05T02:23:00-07:00,19.195000330607098,60.0,60000.0 +1584,2025-06-05T02:24:00-07:00,19.184999465942383,60.0,60000.0 +1585,2025-06-05T02:25:00-07:00,19.177999877929686,60.0,60000.0 +1586,2025-06-05T02:26:00-07:00,19.176666259765625,60.0,60000.0 +1587,2025-06-05T02:27:00-07:00,19.18000030517578,60.0,60000.0 +1588,2025-06-05T02:28:00-07:00,19.175999450683594,60.0,60000.0 +1589,2025-06-05T02:29:00-07:00,19.174999237060547,60.0,60000.0 +1590,2025-06-05T02:30:00-07:00,19.16833241780599,60.0,60000.0 +1591,2025-06-05T02:31:00-07:00,19.15400085449219,60.0,60000.0 +1592,2025-06-05T02:32:00-07:00,19.155000686645508,60.0,60000.0 +1593,2025-06-05T02:33:00-07:00,19.16499900817871,60.0,60000.0 +1594,2025-06-05T02:34:00-07:00,19.16599884033203,60.0,60000.0 +1595,2025-06-05T02:35:00-07:00,19.156667073567707,60.0,60000.0 +1596,2025-06-05T02:36:00-07:00,19.151667912801106,60.0,60000.0 +1597,2025-06-05T02:37:00-07:00,19.150001525878906,60.0,60000.0 +1598,2025-06-05T02:38:00-07:00,19.143333435058594,60.0,60000.0 +1599,2025-06-05T02:39:00-07:00,19.148334503173828,60.0,60000.0 +1600,2025-06-05T02:40:00-07:00,19.14800109863281,60.0,60000.0 +1601,2025-06-05T02:41:00-07:00,19.143334070841473,60.0,60000.0 +1602,2025-06-05T02:42:00-07:00,19.141666412353516,60.0,60000.0 +1603,2025-06-05T02:43:00-07:00,19.137999725341796,60.0,60000.0 +1604,2025-06-05T02:44:00-07:00,19.135000228881836,60.0,60000.0 +1605,2025-06-05T02:45:00-07:00,19.131667455037434,60.0,60000.0 +1606,2025-06-05T02:46:00-07:00,19.12800064086914,60.0,60000.0 +1607,2025-06-05T02:47:00-07:00,19.125,60.0,60000.0 +1608,2025-06-05T02:48:00-07:00,19.125,60.0,60000.0 +1609,2025-06-05T02:49:00-07:00,19.123332977294922,60.0,60000.0 +1610,2025-06-05T02:50:00-07:00,19.12199935913086,60.0,60000.0 +1611,2025-06-05T02:51:00-07:00,19.113333384195965,60.0,60000.0 +1612,2025-06-05T02:52:00-07:00,19.101665496826172,60.0,60000.0 +1613,2025-06-05T02:53:00-07:00,19.093999481201173,60.0,60000.0 +1614,2025-06-05T02:54:00-07:00,19.09000015258789,60.0,60000.0 +1615,2025-06-05T02:55:00-07:00,19.08833376566569,60.0,60000.0 +1616,2025-06-05T02:56:00-07:00,19.086000823974608,60.0,60000.0 +1617,2025-06-05T02:57:00-07:00,19.08166758219401,60.0,60000.0 +1618,2025-06-05T02:58:00-07:00,19.07666778564453,60.0,60000.0 +1619,2025-06-05T02:59:00-07:00,19.070000457763673,60.0,60000.0 +1620,2025-06-05T03:00:00-07:00,19.06999969482422,60.0,60000.0 +1621,2025-06-05T03:01:00-07:00,19.061667760213215,60.0,60000.0 +1622,2025-06-05T03:02:00-07:00,19.0640007019043,60.0,60000.0 +1623,2025-06-05T03:03:00-07:00,19.060001373291016,60.0,60000.0 +1624,2025-06-05T03:04:00-07:00,19.060001373291016,60.0,60000.0 +1625,2025-06-05T03:05:00-07:00,19.05600051879883,60.0,60000.0 +1626,2025-06-05T03:06:00-07:00,19.053333282470703,60.0,60000.0 +1627,2025-06-05T03:07:00-07:00,19.048332850138348,60.0,60000.0 +1628,2025-06-05T03:08:00-07:00,19.054000091552734,60.0,60000.0 +1629,2025-06-05T03:09:00-07:00,19.05500030517578,60.0,60000.0 +1630,2025-06-05T03:10:00-07:00,19.05666732788086,60.0,60000.0 +1631,2025-06-05T03:11:00-07:00,19.051999664306642,60.0,60000.0 +1632,2025-06-05T03:12:00-07:00,19.046667098999023,60.0,60000.0 +1633,2025-06-05T03:13:00-07:00,19.040000279744465,60.0,60000.0 +1634,2025-06-05T03:14:00-07:00,19.027999877929688,60.0,60000.0 +1635,2025-06-05T03:15:00-07:00,19.024999618530273,60.0,60000.0 +1636,2025-06-05T03:16:00-07:00,19.020000457763672,60.0,60000.0 +1637,2025-06-05T03:17:00-07:00,19.019999694824218,60.0,60000.0 +1638,2025-06-05T03:18:00-07:00,19.014999389648438,60.0,60000.0 +1639,2025-06-05T03:19:00-07:00,19.009998321533203,60.0,60000.0 +1640,2025-06-05T03:20:00-07:00,19.01399917602539,60.0,60000.0 +1641,2025-06-05T03:21:00-07:00,19.019999821980793,60.0,60000.0 +1642,2025-06-05T03:22:00-07:00,19.023333231608074,60.0,60000.0 +1643,2025-06-05T03:23:00-07:00,19.018000030517577,60.0,60000.0 +1644,2025-06-05T03:24:00-07:00,19.01333236694336,60.0,60000.0 +1645,2025-06-05T03:25:00-07:00,19.008331934611004,60.0,60000.0 +1646,2025-06-05T03:26:00-07:00,19.0,60.0,60000.0 +1647,2025-06-05T03:27:00-07:00,19.0,60.0,60000.0 +1648,2025-06-05T03:28:00-07:00,19.0016663869222,60.0,60000.0 +1649,2025-06-05T03:29:00-07:00,18.99800033569336,60.0,60000.0 +1650,2025-06-05T03:30:00-07:00,18.990001042683918,60.0,60000.0 +1651,2025-06-05T03:31:00-07:00,18.983333587646484,60.0,60000.0 +1652,2025-06-05T03:32:00-07:00,18.984000396728515,60.0,60000.0 +1653,2025-06-05T03:33:00-07:00,18.976666768391926,60.0,60000.0 +1654,2025-06-05T03:34:00-07:00,18.970000584920246,60.0,60000.0 +1655,2025-06-05T03:35:00-07:00,18.96666717529297,60.0,60000.0 +1656,2025-06-05T03:36:00-07:00,18.966000366210938,60.0,60000.0 +1657,2025-06-05T03:37:00-07:00,18.959999084472656,60.0,60000.0 +1658,2025-06-05T03:38:00-07:00,18.951666514078777,60.0,60000.0 +1659,2025-06-05T03:39:00-07:00,18.94399948120117,60.0,60000.0 +1660,2025-06-05T03:40:00-07:00,18.936665852864582,60.0,60000.0 +1661,2025-06-05T03:41:00-07:00,18.926666259765625,60.0,60000.0 +1662,2025-06-05T03:42:00-07:00,18.91799850463867,60.0,60000.0 +1663,2025-06-05T03:43:00-07:00,18.91166623433431,60.0,60000.0 +1664,2025-06-05T03:44:00-07:00,18.901667912801106,60.0,60000.0 +1665,2025-06-05T03:45:00-07:00,18.900000762939452,60.0,60000.0 +1666,2025-06-05T03:46:00-07:00,18.901667912801106,60.0,60000.0 +1667,2025-06-05T03:47:00-07:00,18.898334503173828,60.0,60000.0 +1668,2025-06-05T03:48:00-07:00,18.89800033569336,60.0,60000.0 +1669,2025-06-05T03:49:00-07:00,18.906667073567707,60.0,60000.0 +1670,2025-06-05T03:50:00-07:00,18.901667912801106,60.0,60000.0 +1671,2025-06-05T03:51:00-07:00,18.89800109863281,60.0,60000.0 +1672,2025-06-05T03:52:00-07:00,18.893333435058594,60.0,60000.0 +1673,2025-06-05T03:53:00-07:00,18.888333638509113,60.0,60000.0 +1674,2025-06-05T03:54:00-07:00,18.88000030517578,60.0,60000.0 +1675,2025-06-05T03:55:00-07:00,18.871665954589844,60.0,60000.0 +1676,2025-06-05T03:56:00-07:00,18.86833318074544,60.0,60000.0 +1677,2025-06-05T03:57:00-07:00,18.863999938964845,60.0,60000.0 +1678,2025-06-05T03:58:00-07:00,18.863333384195965,60.0,60000.0 +1679,2025-06-05T03:59:00-07:00,18.858333587646484,60.0,60000.0 +1680,2025-06-05T04:00:00-07:00,18.85399932861328,60.0,60000.0 +1681,2025-06-05T04:01:00-07:00,18.85333251953125,60.0,60000.0 +1682,2025-06-05T04:02:00-07:00,18.84666570027669,60.0,60000.0 +1683,2025-06-05T04:03:00-07:00,18.85199890136719,60.0,60000.0 +1684,2025-06-05T04:04:00-07:00,18.844999313354492,60.0,60000.0 +1685,2025-06-05T04:05:00-07:00,18.84000015258789,60.0,60000.0 +1686,2025-06-05T04:06:00-07:00,18.830001068115234,60.0,60000.0 +1687,2025-06-05T04:07:00-07:00,18.82833480834961,60.0,60000.0 +1688,2025-06-05T04:08:00-07:00,18.82833480834961,60.0,60000.0 +1689,2025-06-05T04:09:00-07:00,18.822000122070314,60.0,60000.0 +1690,2025-06-05T04:10:00-07:00,18.816666920979817,60.0,60000.0 +1691,2025-06-05T04:11:00-07:00,18.821667353312176,60.0,60000.0 +1692,2025-06-05T04:12:00-07:00,18.818000030517577,60.0,60000.0 +1693,2025-06-05T04:13:00-07:00,18.815000534057617,60.0,60000.0 +1694,2025-06-05T04:14:00-07:00,18.815000534057617,60.0,60000.0 +1695,2025-06-05T04:15:00-07:00,18.811667760213215,60.0,60000.0 +1696,2025-06-05T04:16:00-07:00,18.80600051879883,60.0,60000.0 +1697,2025-06-05T04:17:00-07:00,18.801666259765625,60.0,60000.0 +1698,2025-06-05T04:18:00-07:00,18.796666463216145,60.0,60000.0 +1699,2025-06-05T04:19:00-07:00,18.794000244140626,60.0,60000.0 +1700,2025-06-05T04:20:00-07:00,18.793333689371746,60.0,60000.0 +1701,2025-06-05T04:21:00-07:00,18.796666463216145,60.0,60000.0 +1702,2025-06-05T04:22:00-07:00,18.79800033569336,60.0,60000.0 +1703,2025-06-05T04:23:00-07:00,18.788333892822266,60.0,60000.0 +1704,2025-06-05T04:24:00-07:00,18.781665802001953,60.0,60000.0 +1705,2025-06-05T04:25:00-07:00,18.779998779296875,60.0,60000.0 +1706,2025-06-05T04:26:00-07:00,18.778332392374676,60.0,60000.0 +1707,2025-06-05T04:27:00-07:00,18.78499984741211,60.0,60000.0 +1708,2025-06-05T04:28:00-07:00,18.78199920654297,60.0,60000.0 +1709,2025-06-05T04:29:00-07:00,18.78333282470703,60.0,60000.0 +1710,2025-06-05T04:30:00-07:00,18.790000915527344,60.0,60000.0 +1711,2025-06-05T04:31:00-07:00,18.797999572753906,60.0,60000.0 +1712,2025-06-05T04:32:00-07:00,18.796667098999023,60.0,60000.0 +1713,2025-06-05T04:33:00-07:00,18.801666259765625,60.0,60000.0 +1714,2025-06-05T04:34:00-07:00,18.802000427246092,60.0,60000.0 +1715,2025-06-05T04:35:00-07:00,18.80500030517578,60.0,60000.0 +1716,2025-06-05T04:36:00-07:00,18.810000737508137,60.0,60000.0 +1717,2025-06-05T04:37:00-07:00,18.828001403808592,60.0,60000.0 +1718,2025-06-05T04:38:00-07:00,18.863332748413086,60.0,60000.0 +1719,2025-06-05T04:39:00-07:00,18.906667073567707,60.0,60000.0 +1720,2025-06-05T04:40:00-07:00,18.955999755859374,60.0,60000.0 +1721,2025-06-05T04:41:00-07:00,18.988333384195965,60.0,60000.0 +1722,2025-06-05T04:42:00-07:00,19.024999618530273,60.0,60000.0 +1723,2025-06-05T04:43:00-07:00,19.062001037597657,60.0,60000.0 +1724,2025-06-05T04:44:00-07:00,19.08500035603841,60.0,60000.0 +1725,2025-06-05T04:45:00-07:00,19.10999933878581,60.0,60000.0 +1726,2025-06-05T04:46:00-07:00,19.133999633789063,60.0,60000.0 +1727,2025-06-05T04:47:00-07:00,19.15999984741211,60.0,60000.0 +1728,2025-06-05T04:48:00-07:00,19.174999237060547,60.0,60000.0 +1729,2025-06-05T04:49:00-07:00,19.19333267211914,60.0,60000.0 +1730,2025-06-05T04:50:00-07:00,19.2000002179827,60.0,60000.0 +1731,2025-06-05T04:51:00-07:00,19.19333267211914,60.0,60000.0 +1732,2025-06-05T04:52:00-07:00,19.17599868774414,60.0,60000.0 +1733,2025-06-05T04:53:00-07:00,19.15333366394043,60.0,60000.0 +1734,2025-06-05T04:54:00-07:00,19.12999979654948,60.0,60000.0 +1735,2025-06-05T04:55:00-07:00,19.113999938964845,60.0,60000.0 +1736,2025-06-05T04:56:00-07:00,19.08666737874349,60.0,60000.0 +1737,2025-06-05T04:57:00-07:00,19.070000330607098,60.0,60000.0 +1738,2025-06-05T04:58:00-07:00,19.046667098999023,60.0,60000.0 +1739,2025-06-05T04:59:00-07:00,19.0239990234375,60.0,60000.0 +1740,2025-06-05T05:00:00-07:00,19.0016663869222,60.0,60000.0 +1741,2025-06-05T05:01:00-07:00,18.983334223429363,60.0,60000.0 +1742,2025-06-05T05:02:00-07:00,18.9620002746582,60.0,60000.0 +1743,2025-06-05T05:03:00-07:00,18.93833287556966,60.0,60000.0 +1744,2025-06-05T05:04:00-07:00,18.91499900817871,60.0,60000.0 +1745,2025-06-05T05:05:00-07:00,18.894000244140624,60.0,60000.0 +1746,2025-06-05T05:06:00-07:00,18.8733336130778,60.0,60000.0 +1747,2025-06-05T05:07:00-07:00,18.858332951863606,60.0,60000.0 +1748,2025-06-05T05:08:00-07:00,18.843999481201173,60.0,60000.0 +1749,2025-06-05T05:09:00-07:00,18.821667353312176,60.0,60000.0 +1750,2025-06-05T05:10:00-07:00,18.80500030517578,60.0,60000.0 +1751,2025-06-05T05:11:00-07:00,18.79800033569336,60.0,60000.0 +1752,2025-06-05T05:12:00-07:00,18.791666666666668,60.0,60000.0 +1753,2025-06-05T05:13:00-07:00,18.773332595825195,60.0,60000.0 +1754,2025-06-05T05:14:00-07:00,18.755999755859374,60.0,60000.0 +1755,2025-06-05T05:15:00-07:00,18.740001042683918,60.0,60000.0 +1756,2025-06-05T05:16:00-07:00,18.718333562215168,60.0,60000.0 +1757,2025-06-05T05:17:00-07:00,18.7,60.0,60000.0 +1758,2025-06-05T05:18:00-07:00,18.68833351135254,60.0,60000.0 +1759,2025-06-05T05:19:00-07:00,18.67166519165039,60.0,60000.0 +1760,2025-06-05T05:20:00-07:00,18.65400085449219,60.0,60000.0 +1761,2025-06-05T05:21:00-07:00,18.64833386739095,60.0,60000.0 +1762,2025-06-05T05:22:00-07:00,18.641667048136394,60.0,60000.0 +1763,2025-06-05T05:23:00-07:00,18.642000579833983,60.0,60000.0 +1764,2025-06-05T05:24:00-07:00,18.633333841959637,60.0,60000.0 +1765,2025-06-05T05:25:00-07:00,18.621665954589844,60.0,60000.0 +1766,2025-06-05T05:26:00-07:00,18.613999938964845,60.0,60000.0 +1767,2025-06-05T05:27:00-07:00,18.608333587646484,60.0,60000.0 +1768,2025-06-05T05:28:00-07:00,18.594999313354492,60.0,60000.0 +1769,2025-06-05T05:29:00-07:00,18.593999481201173,60.0,60000.0 +1770,2025-06-05T05:30:00-07:00,18.59000015258789,60.0,60000.0 +1771,2025-06-05T05:31:00-07:00,18.58833376566569,60.0,60000.0 +1772,2025-06-05T05:32:00-07:00,18.58800048828125,60.0,60000.0 +1773,2025-06-05T05:33:00-07:00,18.581668217976887,60.0,60000.0 +1774,2025-06-05T05:34:00-07:00,18.57666778564453,60.0,60000.0 +1775,2025-06-05T05:35:00-07:00,18.56999969482422,60.0,60000.0 +1776,2025-06-05T05:36:00-07:00,18.563334147135418,60.0,60000.0 +1777,2025-06-05T05:37:00-07:00,18.55500030517578,60.0,60000.0 +1778,2025-06-05T05:38:00-07:00,18.554000091552734,60.0,60000.0 +1779,2025-06-05T05:39:00-07:00,18.549999872843426,60.0,60000.0 +1780,2025-06-05T05:40:00-07:00,18.538333257039387,60.0,60000.0 +1781,2025-06-05T05:41:00-07:00,18.529998779296875,60.0,60000.0 +1782,2025-06-05T05:42:00-07:00,18.528570447649276,60.0,60000.0 +1783,2025-06-05T05:43:00-07:00,18.528332392374676,60.0,60000.0 +1784,2025-06-05T05:44:00-07:00,18.52166684468587,60.0,60000.0 +1785,2025-06-05T05:45:00-07:00,18.520000457763672,60.0,60000.0 +1786,2025-06-05T05:46:00-07:00,18.52166684468587,60.0,60000.0 +1787,2025-06-05T05:47:00-07:00,18.516666412353516,60.0,60000.0 +1788,2025-06-05T05:48:00-07:00,18.51399917602539,60.0,60000.0 +1789,2025-06-05T05:49:00-07:00,18.5049991607666,60.0,60000.0 +1790,2025-06-05T05:50:00-07:00,18.4983336130778,60.0,60000.0 +1791,2025-06-05T05:51:00-07:00,18.4950008392334,60.0,60000.0 +1792,2025-06-05T05:52:00-07:00,18.485000610351562,60.0,60000.0 +1793,2025-06-05T05:53:00-07:00,18.475000381469727,60.0,60000.0 +1794,2025-06-05T05:54:00-07:00,18.472000885009766,60.0,60000.0 +1795,2025-06-05T05:55:00-07:00,18.46666717529297,60.0,60000.0 +1796,2025-06-05T05:56:00-07:00,18.46666653951009,60.0,60000.0 +1797,2025-06-05T05:57:00-07:00,18.45999984741211,60.0,60000.0 +1798,2025-06-05T05:58:00-07:00,18.463333129882812,60.0,60000.0 +1799,2025-06-05T05:59:00-07:00,18.458332697550457,60.0,60000.0 +1800,2025-06-05T06:00:00-07:00,18.457999420166015,60.0,60000.0 +1801,2025-06-05T06:01:00-07:00,18.453333536783855,60.0,60000.0 +1802,2025-06-05T06:02:00-07:00,18.451667149861652,60.0,60000.0 +1803,2025-06-05T06:03:00-07:00,18.445999908447266,60.0,60000.0 +1804,2025-06-05T06:04:00-07:00,18.446666717529297,60.0,60000.0 +1805,2025-06-05T06:05:00-07:00,18.44333267211914,60.0,60000.0 +1806,2025-06-05T06:06:00-07:00,18.4359992980957,60.0,60000.0 +1807,2025-06-05T06:07:00-07:00,18.426666259765625,60.0,60000.0 +1808,2025-06-05T06:08:00-07:00,18.41666539510091,60.0,60000.0 +1809,2025-06-05T06:09:00-07:00,18.402001190185548,60.0,60000.0 +1810,2025-06-05T06:10:00-07:00,18.40333429972331,60.0,60000.0 +1811,2025-06-05T06:11:00-07:00,18.40333429972331,60.0,60000.0 +1812,2025-06-05T06:12:00-07:00,18.400000762939452,60.0,60000.0 +1813,2025-06-05T06:13:00-07:00,18.405000686645508,60.0,60000.0 +1814,2025-06-05T06:14:00-07:00,18.40333429972331,60.0,60000.0 +1815,2025-06-05T06:15:00-07:00,18.394000244140624,60.0,60000.0 +1816,2025-06-05T06:16:00-07:00,18.390000025431316,60.0,60000.0 +1817,2025-06-05T06:17:00-07:00,18.378332773844402,60.0,60000.0 +1818,2025-06-05T06:18:00-07:00,18.36999969482422,60.0,60000.0 +1819,2025-06-05T06:19:00-07:00,18.363333384195965,60.0,60000.0 +1820,2025-06-05T06:20:00-07:00,18.368332544962566,60.0,60000.0 +1821,2025-06-05T06:21:00-07:00,18.376667022705078,60.0,60000.0 +1822,2025-06-05T06:22:00-07:00,18.37800064086914,60.0,60000.0 +1823,2025-06-05T06:23:00-07:00,18.375,60.0,60000.0 +1824,2025-06-05T06:24:00-07:00,18.371665954589844,60.0,60000.0 +1825,2025-06-05T06:25:00-07:00,18.367999267578124,60.0,60000.0 +1826,2025-06-05T06:26:00-07:00,18.368332544962566,60.0,60000.0 +1827,2025-06-05T06:27:00-07:00,18.366666158040363,60.0,60000.0 +1828,2025-06-05T06:28:00-07:00,18.363999938964845,60.0,60000.0 +1829,2025-06-05T06:29:00-07:00,18.363333384195965,60.0,60000.0 +1830,2025-06-05T06:30:00-07:00,18.360000610351562,60.0,60000.0 +1831,2025-06-05T06:31:00-07:00,18.363999938964845,60.0,60000.0 +1832,2025-06-05T06:32:00-07:00,18.354999542236328,60.0,60000.0 +1833,2025-06-05T06:33:00-07:00,18.343332926432293,60.0,60000.0 +1834,2025-06-05T06:34:00-07:00,18.33800048828125,60.0,60000.0 +1835,2025-06-05T06:35:00-07:00,18.34000015258789,60.0,60000.0 +1836,2025-06-05T06:36:00-07:00,18.343332926432293,60.0,60000.0 +1837,2025-06-05T06:37:00-07:00,18.34000015258789,60.0,60000.0 +1838,2025-06-05T06:38:00-07:00,18.34000015258789,60.0,60000.0 +1839,2025-06-05T06:39:00-07:00,18.33500035603841,60.0,60000.0 +1840,2025-06-05T06:40:00-07:00,18.33800048828125,60.0,60000.0 +1841,2025-06-05T06:41:00-07:00,18.33333396911621,60.0,60000.0 +1842,2025-06-05T06:42:00-07:00,18.330001831054688,60.0,60000.0 +1843,2025-06-05T06:43:00-07:00,18.328001403808592,60.0,60000.0 +1844,2025-06-05T06:44:00-07:00,18.32666778564453,60.0,60000.0 +1845,2025-06-05T06:45:00-07:00,18.316666920979817,60.0,60000.0 +1846,2025-06-05T06:46:00-07:00,18.322000122070314,60.0,60000.0 +1847,2025-06-05T06:47:00-07:00,18.325000762939453,60.0,60000.0 +1848,2025-06-05T06:48:00-07:00,18.330001831054688,60.0,60000.0 +1849,2025-06-05T06:49:00-07:00,18.32400131225586,60.0,60000.0 +1850,2025-06-05T06:50:00-07:00,18.308334350585938,60.0,60000.0 +1851,2025-06-05T06:51:00-07:00,18.294999440511067,60.0,60000.0 +1852,2025-06-05T06:52:00-07:00,18.28199920654297,60.0,60000.0 +1853,2025-06-05T06:53:00-07:00,18.28499984741211,60.0,60000.0 +1854,2025-06-05T06:54:00-07:00,18.274999618530273,60.0,60000.0 +1855,2025-06-05T06:55:00-07:00,18.273999786376955,60.0,60000.0 +1856,2025-06-05T06:56:00-07:00,18.26166598002116,60.0,60000.0 +1857,2025-06-05T06:57:00-07:00,18.26166534423828,60.0,60000.0 +1858,2025-06-05T06:58:00-07:00,18.257998657226562,60.0,60000.0 +1859,2025-06-05T06:59:00-07:00,18.259998321533203,60.0,60000.0 +1860,2025-06-05T07:00:00-07:00,18.259998321533203,60.0,60000.0 +1861,2025-06-05T07:01:00-07:00,18.259998321533203,60.0,60000.0 +1862,2025-06-05T07:02:00-07:00,18.2619987487793,60.0,60000.0 +1863,2025-06-05T07:03:00-07:00,18.25833257039388,60.0,60000.0 +1864,2025-06-05T07:04:00-07:00,18.253332773844402,60.0,60000.0 +1865,2025-06-05T07:05:00-07:00,18.25199966430664,60.0,60000.0 +1866,2025-06-05T07:06:00-07:00,18.2483336130778,60.0,60000.0 +1867,2025-06-05T07:07:00-07:00,18.25,60.0,60000.0 +1868,2025-06-05T07:08:00-07:00,18.24800033569336,60.0,60000.0 +1869,2025-06-05T07:09:00-07:00,18.2433344523112,60.0,60000.0 +1870,2025-06-05T07:10:00-07:00,18.2457150050572,60.0,60000.0 +1871,2025-06-05T07:11:00-07:00,18.24400100708008,60.0,60000.0 +1872,2025-06-05T07:12:00-07:00,18.246667226155598,60.0,60000.0 +1873,2025-06-05T07:13:00-07:00,18.241668065388996,60.0,60000.0 +1874,2025-06-05T07:14:00-07:00,18.234000396728515,60.0,60000.0 +1875,2025-06-05T07:15:00-07:00,18.233333587646484,60.0,60000.0 +1876,2025-06-05T07:16:00-07:00,18.225714547293528,60.0,60000.0 +1877,2025-06-05T07:17:00-07:00,18.224000549316408,60.0,60000.0 +1878,2025-06-05T07:18:00-07:00,18.220001220703125,60.0,60000.0 +1879,2025-06-05T07:19:00-07:00,18.220001220703125,60.0,60000.0 +1880,2025-06-05T07:20:00-07:00,18.213999938964843,60.0,60000.0 +1881,2025-06-05T07:21:00-07:00,18.211666107177734,60.0,60000.0 +1882,2025-06-05T07:22:00-07:00,18.208333333333332,60.0,60000.0 +1883,2025-06-05T07:23:00-07:00,18.205999755859374,60.0,60000.0 +1884,2025-06-05T07:24:00-07:00,18.208333333333332,60.0,60000.0 +1885,2025-06-05T07:25:00-07:00,18.203333536783855,60.0,60000.0 +1886,2025-06-05T07:26:00-07:00,18.20199966430664,60.0,60000.0 +1887,2025-06-05T07:27:00-07:00,18.200000127156574,60.0,60000.0 +1888,2025-06-05T07:28:00-07:00,18.200000762939453,60.0,60000.0 +1889,2025-06-05T07:29:00-07:00,18.189999389648438,60.0,60000.0 +1890,2025-06-05T07:30:00-07:00,18.189999262491863,60.0,60000.0 +1891,2025-06-05T07:31:00-07:00,18.18166669209798,60.0,60000.0 +1892,2025-06-05T07:32:00-07:00,18.177999877929686,60.0,60000.0 +1893,2025-06-05T07:33:00-07:00,18.181666056315105,60.0,60000.0 +1894,2025-06-05T07:34:00-07:00,18.18166669209798,60.0,60000.0 +1895,2025-06-05T07:35:00-07:00,18.175999450683594,60.0,60000.0 +1896,2025-06-05T07:36:00-07:00,18.176666259765625,60.0,60000.0 +1897,2025-06-05T07:37:00-07:00,18.17166519165039,60.0,60000.0 +1898,2025-06-05T07:38:00-07:00,18.171998596191408,60.0,60000.0 +1899,2025-06-05T07:39:00-07:00,18.173332850138348,60.0,60000.0 +1900,2025-06-05T07:40:00-07:00,18.17333221435547,60.0,60000.0 +1901,2025-06-05T07:41:00-07:00,18.16999880472819,60.0,60000.0 +1902,2025-06-05T07:42:00-07:00,18.16599884033203,60.0,60000.0 +1903,2025-06-05T07:43:00-07:00,18.16166623433431,60.0,60000.0 +1904,2025-06-05T07:44:00-07:00,18.16333262125651,60.0,60000.0 +1905,2025-06-05T07:45:00-07:00,18.16199951171875,60.0,60000.0 +1906,2025-06-05T07:46:00-07:00,18.15999984741211,60.0,60000.0 +1907,2025-06-05T07:47:00-07:00,18.155000686645508,60.0,60000.0 +1908,2025-06-05T07:48:00-07:00,18.15400085449219,60.0,60000.0 +1909,2025-06-05T07:49:00-07:00,18.15833346048991,60.0,60000.0 +1910,2025-06-05T07:50:00-07:00,18.15999984741211,60.0,60000.0 +1911,2025-06-05T07:51:00-07:00,18.15999984741211,60.0,60000.0 +1912,2025-06-05T07:52:00-07:00,18.16499900817871,60.0,60000.0 +1913,2025-06-05T07:53:00-07:00,18.16166623433431,60.0,60000.0 +1914,2025-06-05T07:54:00-07:00,18.15999984741211,60.0,60000.0 +1915,2025-06-05T07:55:00-07:00,18.16166623433431,60.0,60000.0 +1916,2025-06-05T07:56:00-07:00,18.16333262125651,60.0,60000.0 +1917,2025-06-05T07:57:00-07:00,18.158000183105468,60.0,60000.0 +1918,2025-06-05T07:58:00-07:00,18.15833346048991,60.0,60000.0 +1919,2025-06-05T07:59:00-07:00,18.16166623433431,60.0,60000.0 +1920,2025-06-05T08:00:00-07:00,18.156000518798827,60.0,60000.0 +1921,2025-06-05T08:01:00-07:00,18.16166623433431,60.0,60000.0 +1922,2025-06-05T08:02:00-07:00,18.16166623433431,60.0,60000.0 +1923,2025-06-05T08:03:00-07:00,18.15999984741211,60.0,60000.0 +1924,2025-06-05T08:04:00-07:00,18.16333262125651,60.0,60000.0 +1925,2025-06-05T08:05:00-07:00,18.16666539510091,60.0,60000.0 +1926,2025-06-05T08:06:00-07:00,18.16799850463867,60.0,60000.0 +1927,2025-06-05T08:07:00-07:00,18.16499900817871,60.0,60000.0 +1928,2025-06-05T08:08:00-07:00,18.168331782023113,60.0,60000.0 +1929,2025-06-05T08:09:00-07:00,18.171998596191408,60.0,60000.0 +1930,2025-06-05T08:10:00-07:00,18.176666259765625,60.0,60000.0 +1931,2025-06-05T08:11:00-07:00,18.18166669209798,60.0,60000.0 +1932,2025-06-05T08:12:00-07:00,18.1859992980957,60.0,60000.0 +1933,2025-06-05T08:13:00-07:00,18.189999262491863,60.0,60000.0 +1934,2025-06-05T08:14:00-07:00,18.198333740234375,60.0,60000.0 +1935,2025-06-05T08:15:00-07:00,18.2,60.0,60000.0 +1936,2025-06-05T08:16:00-07:00,18.203333536783855,60.0,60000.0 +1937,2025-06-05T08:17:00-07:00,18.204999923706055,60.0,60000.0 +1938,2025-06-05T08:18:00-07:00,18.204999923706055,60.0,60000.0 +1939,2025-06-05T08:19:00-07:00,18.202000427246094,60.0,60000.0 +1940,2025-06-05T08:20:00-07:00,18.209999720255535,60.0,60000.0 +1941,2025-06-05T08:21:00-07:00,18.205000559488933,60.0,60000.0 +1942,2025-06-05T08:22:00-07:00,18.207999420166015,60.0,60000.0 +1943,2025-06-05T08:23:00-07:00,18.201667149861652,60.0,60000.0 +1944,2025-06-05T08:24:00-07:00,18.204999923706055,60.0,60000.0 +1945,2025-06-05T08:25:00-07:00,18.202000427246094,60.0,60000.0 +1946,2025-06-05T08:26:00-07:00,18.200000762939453,60.0,60000.0 +1947,2025-06-05T08:27:00-07:00,18.201667149861652,60.0,60000.0 +1948,2025-06-05T08:28:00-07:00,18.205999755859374,60.0,60000.0 +1949,2025-06-05T08:29:00-07:00,18.208332697550457,60.0,60000.0 +1950,2025-06-05T08:30:00-07:00,18.206666310628254,60.0,60000.0 +1951,2025-06-05T08:31:00-07:00,18.202000427246094,60.0,60000.0 +1952,2025-06-05T08:32:00-07:00,18.201667149861652,60.0,60000.0 +1953,2025-06-05T08:33:00-07:00,18.203333536783855,60.0,60000.0 +1954,2025-06-05T08:34:00-07:00,18.204000091552736,60.0,60000.0 +1955,2025-06-05T08:35:00-07:00,18.201666514078777,60.0,60000.0 +1956,2025-06-05T08:36:00-07:00,18.201667149861652,60.0,60000.0 +1957,2025-06-05T08:37:00-07:00,18.202000427246094,60.0,60000.0 +1958,2025-06-05T08:38:00-07:00,18.200000127156574,60.0,60000.0 +1959,2025-06-05T08:39:00-07:00,18.206666310628254,60.0,60000.0 +1960,2025-06-05T08:40:00-07:00,18.216000366210938,60.0,60000.0 +1961,2025-06-05T08:41:00-07:00,18.211666742960613,60.0,60000.0 +1962,2025-06-05T08:42:00-07:00,18.211666107177734,60.0,60000.0 +1963,2025-06-05T08:43:00-07:00,18.21199951171875,60.0,60000.0 +1964,2025-06-05T08:44:00-07:00,18.220001220703125,60.0,60000.0 +1965,2025-06-05T08:45:00-07:00,18.220000584920246,60.0,60000.0 +1966,2025-06-05T08:46:00-07:00,18.216000366210938,60.0,60000.0 +1967,2025-06-05T08:47:00-07:00,18.218334197998047,60.0,60000.0 +1968,2025-06-05T08:48:00-07:00,18.211666742960613,60.0,60000.0 +1969,2025-06-05T08:49:00-07:00,18.204000091552736,60.0,60000.0 +1970,2025-06-05T08:50:00-07:00,18.203333536783855,60.0,60000.0 +1971,2025-06-05T08:51:00-07:00,18.201667149861652,60.0,60000.0 +1972,2025-06-05T08:52:00-07:00,18.198000335693358,60.0,60000.0 +1973,2025-06-05T08:53:00-07:00,18.200000762939453,60.0,60000.0 +1974,2025-06-05T08:54:00-07:00,18.196666717529297,60.0,60000.0 +1975,2025-06-05T08:55:00-07:00,18.202000427246094,60.0,60000.0 +1976,2025-06-05T08:56:00-07:00,18.200000762939453,60.0,60000.0 +1977,2025-06-05T08:57:00-07:00,18.203333536783855,60.0,60000.0 +1978,2025-06-05T08:58:00-07:00,18.203999328613282,60.0,60000.0 +1979,2025-06-05T08:59:00-07:00,18.204999923706055,60.0,60000.0 +1980,2025-06-05T09:00:00-07:00,18.203333536783855,60.0,60000.0 +1981,2025-06-05T09:01:00-07:00,18.208332697550457,60.0,60000.0 +1982,2025-06-05T09:02:00-07:00,18.213999938964843,60.0,60000.0 +1983,2025-06-05T09:03:00-07:00,18.218334197998047,60.0,60000.0 +1984,2025-06-05T09:04:00-07:00,18.220001220703125,60.0,60000.0 +1985,2025-06-05T09:05:00-07:00,18.220001220703125,60.0,60000.0 +1986,2025-06-05T09:06:00-07:00,18.22333335876465,60.0,60000.0 +1987,2025-06-05T09:07:00-07:00,18.229999542236328,60.0,60000.0 +1988,2025-06-05T09:08:00-07:00,18.230000305175782,60.0,60000.0 +1989,2025-06-05T09:09:00-07:00,18.235000610351562,60.0,60000.0 +1990,2025-06-05T09:10:00-07:00,18.23666763305664,60.0,60000.0 +1991,2025-06-05T09:11:00-07:00,18.23600082397461,60.0,60000.0 +1992,2025-06-05T09:12:00-07:00,18.23833465576172,60.0,60000.0 +1993,2025-06-05T09:13:00-07:00,18.241668065388996,60.0,60000.0 +1994,2025-06-05T09:14:00-07:00,18.24800033569336,60.0,60000.0 +1995,2025-06-05T09:15:00-07:00,18.2433344523112,60.0,60000.0 +1996,2025-06-05T09:16:00-07:00,18.240001042683918,60.0,60000.0 +1997,2025-06-05T09:17:00-07:00,18.2380012512207,60.0,60000.0 +1998,2025-06-05T09:18:00-07:00,18.233333587646484,60.0,60000.0 +1999,2025-06-05T09:19:00-07:00,18.23833465576172,60.0,60000.0 +2000,2025-06-05T09:20:00-07:00,18.240001678466797,60.0,60000.0 +2001,2025-06-05T09:21:00-07:00,18.2450008392334,60.0,60000.0 +2002,2025-06-05T09:22:00-07:00,18.25,60.0,60000.0 +2003,2025-06-05T09:23:00-07:00,18.257998657226562,60.0,60000.0 +2004,2025-06-05T09:24:00-07:00,18.259998957316082,60.0,60000.0 +2005,2025-06-05T09:25:00-07:00,18.2566655476888,60.0,60000.0 +2006,2025-06-05T09:26:00-07:00,18.25,60.0,60000.0 +2007,2025-06-05T09:27:00-07:00,18.24333381652832,60.0,60000.0 +2008,2025-06-05T09:28:00-07:00,18.23666763305664,60.0,60000.0 +2009,2025-06-05T09:29:00-07:00,18.2380012512207,60.0,60000.0 +2010,2025-06-05T09:30:00-07:00,18.2483336130778,60.0,60000.0 +2011,2025-06-05T09:31:00-07:00,18.2483336130778,60.0,60000.0 +2012,2025-06-05T09:32:00-07:00,18.24800033569336,60.0,60000.0 +2013,2025-06-05T09:33:00-07:00,18.2483336130778,60.0,60000.0 +2014,2025-06-05T09:34:00-07:00,18.240001678466797,60.0,60000.0 +2015,2025-06-05T09:35:00-07:00,18.240001678466797,60.0,60000.0 +2016,2025-06-05T09:36:00-07:00,18.231666564941406,60.0,60000.0 +2017,2025-06-05T09:37:00-07:00,18.230000178019207,60.0,60000.0 +2018,2025-06-05T09:38:00-07:00,18.224000549316408,60.0,60000.0 +2019,2025-06-05T09:39:00-07:00,18.230000178019207,60.0,60000.0 +2020,2025-06-05T09:40:00-07:00,18.226666768391926,60.0,60000.0 +2021,2025-06-05T09:41:00-07:00,18.222000885009766,60.0,60000.0 +2022,2025-06-05T09:42:00-07:00,18.220001220703125,60.0,60000.0 +2023,2025-06-05T09:43:00-07:00,18.218334197998047,60.0,60000.0 +2024,2025-06-05T09:44:00-07:00,18.220001220703125,60.0,60000.0 +2025,2025-06-05T09:45:00-07:00,18.225000381469727,60.0,60000.0 +2026,2025-06-05T09:46:00-07:00,18.22833315531413,60.0,60000.0 +2027,2025-06-05T09:47:00-07:00,18.231999969482423,60.0,60000.0 +2028,2025-06-05T09:48:00-07:00,18.246667226155598,60.0,60000.0 +2029,2025-06-05T09:49:00-07:00,18.266666412353516,60.0,60000.0 +2030,2025-06-05T09:50:00-07:00,18.281665802001953,60.0,60000.0 +2031,2025-06-05T09:51:00-07:00,18.309999847412108,60.0,60000.0 +2032,2025-06-05T09:52:00-07:00,18.321666717529297,60.0,60000.0 +2033,2025-06-05T09:53:00-07:00,18.325000762939453,60.0,60000.0 +2034,2025-06-05T09:54:00-07:00,18.33400115966797,60.0,60000.0 +2035,2025-06-05T09:55:00-07:00,18.33666737874349,60.0,60000.0 +2036,2025-06-05T09:56:00-07:00,18.343332926432293,60.0,60000.0 +2037,2025-06-05T09:57:00-07:00,18.343999481201173,60.0,60000.0 +2038,2025-06-05T09:58:00-07:00,18.344999313354492,60.0,60000.0 +2039,2025-06-05T09:59:00-07:00,18.349999745686848,60.0,60000.0 +2040,2025-06-05T10:00:00-07:00,18.362000274658204,60.0,60000.0 +2041,2025-06-05T10:01:00-07:00,18.380000432332356,60.0,60000.0 +2042,2025-06-05T10:02:00-07:00,18.39833386739095,60.0,60000.0 +2043,2025-06-05T10:03:00-07:00,18.406000518798827,60.0,60000.0 +2044,2025-06-05T10:04:00-07:00,18.400000890096027,60.0,60000.0 +2045,2025-06-05T10:05:00-07:00,18.386667887369793,60.0,60000.0 +2046,2025-06-05T10:06:00-07:00,18.386000061035155,60.0,60000.0 +2047,2025-06-05T10:07:00-07:00,18.378334045410156,60.0,60000.0 +2048,2025-06-05T10:08:00-07:00,18.380000432332356,60.0,60000.0 +2049,2025-06-05T10:09:00-07:00,18.389999389648438,60.0,60000.0 +2050,2025-06-05T10:10:00-07:00,18.39666748046875,60.0,60000.0 +2051,2025-06-05T10:11:00-07:00,18.400001525878906,60.0,60000.0 +2052,2025-06-05T10:12:00-07:00,18.39800109863281,60.0,60000.0 +2053,2025-06-05T10:13:00-07:00,18.391666412353516,60.0,60000.0 +2054,2025-06-05T10:14:00-07:00,18.389999389648438,60.0,60000.0 +2055,2025-06-05T10:15:00-07:00,18.382000732421876,60.0,60000.0 +2056,2025-06-05T10:16:00-07:00,18.383333841959637,60.0,60000.0 +2057,2025-06-05T10:17:00-07:00,18.381667455037434,60.0,60000.0 +2058,2025-06-05T10:18:00-07:00,18.38000030517578,60.0,60000.0 +2059,2025-06-05T10:19:00-07:00,18.381667455037434,60.0,60000.0 +2060,2025-06-05T10:20:00-07:00,18.383333841959637,60.0,60000.0 +2061,2025-06-05T10:21:00-07:00,18.391999816894533,60.0,60000.0 +2062,2025-06-05T10:22:00-07:00,18.401667912801106,60.0,60000.0 +2063,2025-06-05T10:23:00-07:00,18.426666259765625,60.0,60000.0 +2064,2025-06-05T10:24:00-07:00,18.44199981689453,60.0,60000.0 +2065,2025-06-05T10:25:00-07:00,18.448333104451496,60.0,60000.0 +2066,2025-06-05T10:26:00-07:00,18.44333267211914,60.0,60000.0 +2067,2025-06-05T10:27:00-07:00,18.452000427246094,60.0,60000.0 +2068,2025-06-05T10:28:00-07:00,18.458332697550457,60.0,60000.0 +2069,2025-06-05T10:29:00-07:00,18.441665649414062,60.0,60000.0 +2070,2025-06-05T10:30:00-07:00,18.42599868774414,60.0,60000.0 +2071,2025-06-05T10:31:00-07:00,18.43166669209798,60.0,60000.0 +2072,2025-06-05T10:32:00-07:00,18.44499969482422,60.0,60000.0 +2073,2025-06-05T10:33:00-07:00,18.450000762939453,60.0,60000.0 +2074,2025-06-05T10:34:00-07:00,18.46500015258789,60.0,60000.0 +2075,2025-06-05T10:35:00-07:00,18.468332926432293,60.0,60000.0 +2076,2025-06-05T10:36:00-07:00,18.479999542236328,60.0,60000.0 +2077,2025-06-05T10:37:00-07:00,18.485000610351562,60.0,60000.0 +2078,2025-06-05T10:38:00-07:00,18.481666564941406,60.0,60000.0 +2079,2025-06-05T10:39:00-07:00,18.48600082397461,60.0,60000.0 +2080,2025-06-05T10:40:00-07:00,18.491668065388996,60.0,60000.0 +2081,2025-06-05T10:41:00-07:00,18.50833257039388,60.0,60000.0 +2082,2025-06-05T10:42:00-07:00,18.518000030517577,60.0,60000.0 +2083,2025-06-05T10:43:00-07:00,18.523333231608074,60.0,60000.0 +2084,2025-06-05T10:44:00-07:00,18.529998779296875,60.0,60000.0 +2085,2025-06-05T10:45:00-07:00,18.53499984741211,60.0,60000.0 +2086,2025-06-05T10:46:00-07:00,18.53199920654297,60.0,60000.0 +2087,2025-06-05T10:47:00-07:00,18.540000915527344,60.0,60000.0 +2088,2025-06-05T10:48:00-07:00,18.53499984741211,60.0,60000.0 +2089,2025-06-05T10:49:00-07:00,18.525999450683592,60.0,60000.0 +2090,2025-06-05T10:50:00-07:00,18.516666412353516,60.0,60000.0 +2091,2025-06-05T10:51:00-07:00,18.509998321533203,60.0,60000.0 +2092,2025-06-05T10:52:00-07:00,18.51399917602539,60.0,60000.0 +2093,2025-06-05T10:53:00-07:00,18.529998779296875,60.0,60000.0 +2094,2025-06-05T10:54:00-07:00,18.53333282470703,60.0,60000.0 +2095,2025-06-05T10:55:00-07:00,18.540000915527344,60.0,60000.0 +2096,2025-06-05T10:56:00-07:00,18.540000915527344,60.0,60000.0 +2097,2025-06-05T10:57:00-07:00,18.53499984741211,60.0,60000.0 +2098,2025-06-05T10:58:00-07:00,18.53199920654297,60.0,60000.0 +2099,2025-06-05T10:59:00-07:00,18.528332392374676,60.0,60000.0 +2100,2025-06-05T11:00:00-07:00,18.529998779296875,60.0,60000.0 +2101,2025-06-05T11:01:00-07:00,18.533999633789062,60.0,60000.0 +2102,2025-06-05T11:02:00-07:00,18.541667302449543,60.0,60000.0 +2103,2025-06-05T11:03:00-07:00,18.549999237060547,60.0,60000.0 +2104,2025-06-05T11:04:00-07:00,18.554000091552734,60.0,60000.0 +2105,2025-06-05T11:05:00-07:00,18.56166712443034,60.0,60000.0 +2106,2025-06-05T11:06:00-07:00,18.58333396911621,60.0,60000.0 +2107,2025-06-05T11:07:00-07:00,18.597998809814452,60.0,60000.0 +2108,2025-06-05T11:08:00-07:00,18.611666361490887,60.0,60000.0 +2109,2025-06-05T11:09:00-07:00,18.614999771118164,60.0,60000.0 +2110,2025-06-05T11:10:00-07:00,18.626000213623048,60.0,60000.0 +2111,2025-06-05T11:11:00-07:00,18.619999567667644,60.0,60000.0 +2112,2025-06-05T11:12:00-07:00,18.614999771118164,60.0,60000.0 +2113,2025-06-05T11:13:00-07:00,18.60399932861328,60.0,60000.0 +2114,2025-06-05T11:14:00-07:00,18.606666564941406,60.0,60000.0 +2115,2025-06-05T11:15:00-07:00,18.610000610351562,60.0,60000.0 +2116,2025-06-05T11:16:00-07:00,18.61999969482422,60.0,60000.0 +2117,2025-06-05T11:17:00-07:00,18.65166664123535,60.0,60000.0 +2118,2025-06-05T11:18:00-07:00,18.683332443237305,60.0,60000.0 +2119,2025-06-05T11:19:00-07:00,18.6859992980957,60.0,60000.0 +2120,2025-06-05T11:20:00-07:00,18.69166628519694,60.0,60000.0 +2121,2025-06-05T11:21:00-07:00,18.700000127156574,60.0,60000.0 +2122,2025-06-05T11:22:00-07:00,18.698000335693358,60.0,60000.0 +2123,2025-06-05T11:23:00-07:00,18.68833287556966,60.0,60000.0 +2124,2025-06-05T11:24:00-07:00,18.69333267211914,60.0,60000.0 +2125,2025-06-05T11:25:00-07:00,18.689999389648438,60.0,60000.0 +2126,2025-06-05T11:26:00-07:00,18.6999994913737,60.0,60000.0 +2127,2025-06-05T11:27:00-07:00,18.711666742960613,60.0,60000.0 +2128,2025-06-05T11:28:00-07:00,18.71800079345703,60.0,60000.0 +2129,2025-06-05T11:29:00-07:00,18.714285714285715,60.0,60000.0 +2130,2025-06-05T11:30:00-07:00,18.723333994547527,60.0,60000.0 +2131,2025-06-05T11:31:00-07:00,18.732000732421874,60.0,60000.0 +2132,2025-06-05T11:32:00-07:00,18.7433344523112,60.0,60000.0 +2133,2025-06-05T11:33:00-07:00,18.7549991607666,60.0,60000.0 +2134,2025-06-05T11:34:00-07:00,18.77833302815755,60.0,60000.0 +2135,2025-06-05T11:35:00-07:00,18.802001190185546,60.0,60000.0 +2136,2025-06-05T11:36:00-07:00,18.811667760213215,60.0,60000.0 +2137,2025-06-05T11:37:00-07:00,18.826667149861652,60.0,60000.0 +2138,2025-06-05T11:38:00-07:00,18.84000015258789,60.0,60000.0 +2139,2025-06-05T11:39:00-07:00,18.84000015258789,60.0,60000.0 +2140,2025-06-05T11:40:00-07:00,18.844999313354492,60.0,60000.0 +2141,2025-06-05T11:41:00-07:00,18.87200012207031,60.0,60000.0 +2142,2025-06-05T11:42:00-07:00,18.911665598551433,60.0,60000.0 +2143,2025-06-05T11:43:00-07:00,18.951666514078777,60.0,60000.0 +2144,2025-06-05T11:44:00-07:00,18.977999877929687,60.0,60000.0 +2145,2025-06-05T11:45:00-07:00,18.990001678466797,60.0,60000.0 +2146,2025-06-05T11:46:00-07:00,19.0,60.0,60000.0 +2147,2025-06-05T11:47:00-07:00,19.003999328613283,60.0,60000.0 +2148,2025-06-05T11:48:00-07:00,19.0016663869222,60.0,60000.0 +2149,2025-06-05T11:49:00-07:00,18.990001678466797,60.0,60000.0 +2150,2025-06-05T11:50:00-07:00,18.992001342773438,60.0,60000.0 +2151,2025-06-05T11:51:00-07:00,18.996667226155598,60.0,60000.0 +2152,2025-06-05T11:52:00-07:00,18.996667226155598,60.0,60000.0 +2153,2025-06-05T11:53:00-07:00,18.99400100708008,60.0,60000.0 +2154,2025-06-05T11:54:00-07:00,18.996667226155598,60.0,60000.0 +2155,2025-06-05T11:55:00-07:00,19.024999618530273,60.0,60000.0 +2156,2025-06-05T11:56:00-07:00,19.04800033569336,60.0,60000.0 +2157,2025-06-05T11:57:00-07:00,19.058334350585938,60.0,60000.0 +2158,2025-06-05T11:58:00-07:00,19.071666717529297,60.0,60000.0 +2159,2025-06-05T11:59:00-07:00,19.0760009765625,60.0,60000.0 +2160,2025-06-05T12:00:00-07:00,19.09000015258789,60.0,60000.0 +2161,2025-06-05T12:01:00-07:00,19.111666361490887,60.0,60000.0 +2162,2025-06-05T12:02:00-07:00,19.113999938964845,60.0,60000.0 +2163,2025-06-05T12:03:00-07:00,19.114999771118164,60.0,60000.0 +2164,2025-06-05T12:04:00-07:00,19.10333251953125,60.0,60000.0 +2165,2025-06-05T12:05:00-07:00,19.112000274658204,60.0,60000.0 +2166,2025-06-05T12:06:00-07:00,19.121666590372723,60.0,60000.0 +2167,2025-06-05T12:07:00-07:00,19.121665954589844,60.0,60000.0 +2168,2025-06-05T12:08:00-07:00,19.144000244140624,60.0,60000.0 +2169,2025-06-05T12:09:00-07:00,19.15999984741211,60.0,60000.0 +2170,2025-06-05T12:10:00-07:00,19.15999984741211,60.0,60000.0 +2171,2025-06-05T12:11:00-07:00,19.163999176025392,60.0,60000.0 +2172,2025-06-05T12:12:00-07:00,19.16999880472819,60.0,60000.0 +2173,2025-06-05T12:13:00-07:00,19.178333282470703,60.0,60000.0 +2174,2025-06-05T12:14:00-07:00,19.184999465942383,60.0,60000.0 +2175,2025-06-05T12:15:00-07:00,19.19199905395508,60.0,60000.0 +2176,2025-06-05T12:16:00-07:00,19.184999465942383,60.0,60000.0 +2177,2025-06-05T12:17:00-07:00,19.184999465942383,60.0,60000.0 +2178,2025-06-05T12:18:00-07:00,19.19199981689453,60.0,60000.0 +2179,2025-06-05T12:19:00-07:00,19.21333376566569,60.0,60000.0 +2180,2025-06-05T12:20:00-07:00,19.236666997273762,60.0,60000.0 +2181,2025-06-05T12:21:00-07:00,19.255999755859374,60.0,60000.0 +2182,2025-06-05T12:22:00-07:00,19.26166534423828,60.0,60000.0 +2183,2025-06-05T12:23:00-07:00,19.27833302815755,60.0,60000.0 +2184,2025-06-05T12:24:00-07:00,19.302000427246092,60.0,60000.0 +2185,2025-06-05T12:25:00-07:00,19.328333536783855,60.0,60000.0 +2186,2025-06-05T12:26:00-07:00,19.366666158040363,60.0,60000.0 +2187,2025-06-05T12:27:00-07:00,19.413999938964842,60.0,60000.0 +2188,2025-06-05T12:28:00-07:00,19.459999720255535,60.0,60000.0 +2189,2025-06-05T12:29:00-07:00,19.49500020345052,60.0,60000.0 +2190,2025-06-05T12:30:00-07:00,19.527999114990234,60.0,60000.0 +2191,2025-06-05T12:31:00-07:00,19.578333536783855,60.0,60000.0 +2192,2025-06-05T12:32:00-07:00,19.6266663869222,60.0,60000.0 +2193,2025-06-05T12:33:00-07:00,19.667999267578125,60.0,60000.0 +2194,2025-06-05T12:34:00-07:00,19.701666514078777,60.0,60000.0 +2195,2025-06-05T12:35:00-07:00,19.728333791097004,60.0,60000.0 +2196,2025-06-05T12:36:00-07:00,19.74400100708008,60.0,60000.0 +2197,2025-06-05T12:37:00-07:00,19.758570534842356,60.0,60000.0 +2198,2025-06-05T12:38:00-07:00,19.77666664123535,60.0,60000.0 +2199,2025-06-05T12:39:00-07:00,19.786000061035157,60.0,60000.0 +2200,2025-06-05T12:40:00-07:00,19.78000005086263,60.0,60000.0 +2201,2025-06-05T12:41:00-07:00,19.769999821980793,60.0,60000.0 +2202,2025-06-05T12:42:00-07:00,19.75599899291992,60.0,60000.0 +2203,2025-06-05T12:43:00-07:00,19.7516663869222,60.0,60000.0 +2204,2025-06-05T12:44:00-07:00,19.7483336130778,60.0,60000.0 +2205,2025-06-05T12:45:00-07:00,19.74400100708008,60.0,60000.0 +2206,2025-06-05T12:46:00-07:00,19.74166742960612,60.0,60000.0 +2207,2025-06-05T12:47:00-07:00,19.733333587646484,60.0,60000.0 +2208,2025-06-05T12:48:00-07:00,19.731999969482423,60.0,60000.0 +2209,2025-06-05T12:49:00-07:00,19.735000610351562,60.0,60000.0 +2210,2025-06-05T12:50:00-07:00,19.726667404174805,60.0,60000.0 +2211,2025-06-05T12:51:00-07:00,19.706000518798827,60.0,60000.0 +2212,2025-06-05T12:52:00-07:00,19.681666056315105,60.0,60000.0 +2213,2025-06-05T12:53:00-07:00,19.668331782023113,60.0,60000.0 +2214,2025-06-05T12:54:00-07:00,19.66199951171875,60.0,60000.0 +2215,2025-06-05T12:55:00-07:00,19.655000686645508,60.0,60000.0 +2216,2025-06-05T12:56:00-07:00,19.65333429972331,60.0,60000.0 +2217,2025-06-05T12:57:00-07:00,19.64000015258789,60.0,60000.0 +2218,2025-06-05T12:58:00-07:00,19.630000432332356,60.0,60000.0 +2219,2025-06-05T12:59:00-07:00,19.60833231608073,60.0,60000.0 +2220,2025-06-05T13:00:00-07:00,19.600000381469727,60.0,60000.0 +2221,2025-06-05T13:01:00-07:00,19.58400115966797,60.0,60000.0 +2222,2025-06-05T13:02:00-07:00,19.573334376017254,60.0,60000.0 +2223,2025-06-05T13:03:00-07:00,19.570000330607098,60.0,60000.0 +2224,2025-06-05T13:04:00-07:00,19.580001831054688,60.0,60000.0 +2225,2025-06-05T13:05:00-07:00,19.580001831054688,60.0,60000.0 +2226,2025-06-05T13:06:00-07:00,19.56333351135254,60.0,60000.0 +2227,2025-06-05T13:07:00-07:00,19.554000091552734,60.0,60000.0 +2228,2025-06-05T13:08:00-07:00,19.545000076293945,60.0,60000.0 +2229,2025-06-05T13:09:00-07:00,19.531665802001953,60.0,60000.0 +2230,2025-06-05T13:10:00-07:00,19.52999954223633,60.0,60000.0 +2231,2025-06-05T13:11:00-07:00,19.529998779296875,60.0,60000.0 +2232,2025-06-05T13:12:00-07:00,19.520000457763672,60.0,60000.0 +2233,2025-06-05T13:13:00-07:00,19.51399917602539,60.0,60000.0 +2234,2025-06-05T13:14:00-07:00,19.509998321533203,60.0,60000.0 +2235,2025-06-05T13:15:00-07:00,19.51333236694336,60.0,60000.0 +2236,2025-06-05T13:16:00-07:00,19.52199935913086,60.0,60000.0 +2237,2025-06-05T13:17:00-07:00,19.536666870117188,60.0,60000.0 +2238,2025-06-05T13:18:00-07:00,19.549999237060547,60.0,60000.0 +2239,2025-06-05T13:19:00-07:00,19.551999664306642,60.0,60000.0 +2240,2025-06-05T13:20:00-07:00,19.546666463216145,60.0,60000.0 +2241,2025-06-05T13:21:00-07:00,19.551666259765625,60.0,60000.0 +2242,2025-06-05T13:22:00-07:00,19.551999664306642,60.0,60000.0 +2243,2025-06-05T13:23:00-07:00,19.560000737508137,60.0,60000.0 +2244,2025-06-05T13:24:00-07:00,19.575001398722332,60.0,60000.0 +2245,2025-06-05T13:25:00-07:00,19.591999816894532,60.0,60000.0 +2246,2025-06-05T13:26:00-07:00,19.599999109903973,60.0,60000.0 +2247,2025-06-05T13:27:00-07:00,19.613332748413086,60.0,60000.0 +2248,2025-06-05T13:28:00-07:00,19.619998931884766,60.0,60000.0 +2249,2025-06-05T13:29:00-07:00,19.628333409627277,60.0,60000.0 +2250,2025-06-05T13:30:00-07:00,19.633333206176758,60.0,60000.0 +2251,2025-06-05T13:31:00-07:00,19.637999725341796,60.0,60000.0 +2252,2025-06-05T13:32:00-07:00,19.633333841959637,60.0,60000.0 +2253,2025-06-05T13:33:00-07:00,19.623332977294922,60.0,60000.0 +2254,2025-06-05T13:34:00-07:00,19.626000213623048,60.0,60000.0 +2255,2025-06-05T13:35:00-07:00,19.630001068115234,60.0,60000.0 +2256,2025-06-05T13:36:00-07:00,19.636666615804035,60.0,60000.0 +2257,2025-06-05T13:37:00-07:00,19.64600067138672,60.0,60000.0 +2258,2025-06-05T13:38:00-07:00,19.64666748046875,60.0,60000.0 +2259,2025-06-05T13:39:00-07:00,19.64666748046875,60.0,60000.0 +2260,2025-06-05T13:40:00-07:00,19.648334503173828,60.0,60000.0 +2261,2025-06-05T13:41:00-07:00,19.66199951171875,60.0,60000.0 +2262,2025-06-05T13:42:00-07:00,19.66333262125651,60.0,60000.0 +2263,2025-06-05T13:43:00-07:00,19.66833241780599,60.0,60000.0 +2264,2025-06-05T13:44:00-07:00,19.66799850463867,60.0,60000.0 +2265,2025-06-05T13:45:00-07:00,19.66999880472819,60.0,60000.0 +2266,2025-06-05T13:46:00-07:00,19.668331782023113,60.0,60000.0 +2267,2025-06-05T13:47:00-07:00,19.671999359130858,60.0,60000.0 +2268,2025-06-05T13:48:00-07:00,19.68142809186663,60.0,60000.0 +2269,2025-06-05T13:49:00-07:00,19.695000330607098,60.0,60000.0 +2270,2025-06-05T13:50:00-07:00,19.700000762939453,60.0,60000.0 +2271,2025-06-05T13:51:00-07:00,19.689999262491863,60.0,60000.0 +2272,2025-06-05T13:52:00-07:00,19.678333282470703,60.0,60000.0 +2273,2025-06-05T13:53:00-07:00,19.669998168945312,60.0,60000.0 +2274,2025-06-05T13:54:00-07:00,19.67166519165039,60.0,60000.0 +2275,2025-06-05T13:55:00-07:00,19.676666259765625,60.0,60000.0 +2276,2025-06-05T13:56:00-07:00,19.675999450683594,60.0,60000.0 +2277,2025-06-05T13:57:00-07:00,19.68000030517578,60.0,60000.0 +2278,2025-06-05T13:58:00-07:00,19.68000030517578,60.0,60000.0 +2279,2025-06-05T13:59:00-07:00,19.6859992980957,60.0,60000.0 +2280,2025-06-05T14:00:00-07:00,19.698333740234375,60.0,60000.0 +2281,2025-06-05T14:01:00-07:00,19.703333536783855,60.0,60000.0 +2282,2025-06-05T14:02:00-07:00,19.70999984741211,60.0,60000.0 +2283,2025-06-05T14:03:00-07:00,19.721667607625324,60.0,60000.0 +2284,2025-06-05T14:04:00-07:00,19.72833315531413,60.0,60000.0 +2285,2025-06-05T14:05:00-07:00,19.724000549316408,60.0,60000.0 +2286,2025-06-05T14:06:00-07:00,19.723333994547527,60.0,60000.0 +2287,2025-06-05T14:07:00-07:00,19.728333791097004,60.0,60000.0 +2288,2025-06-05T14:08:00-07:00,19.742001342773438,60.0,60000.0 +2289,2025-06-05T14:09:00-07:00,19.75,60.0,60000.0 +2290,2025-06-05T14:10:00-07:00,19.7566655476888,60.0,60000.0 +2291,2025-06-05T14:11:00-07:00,19.7619987487793,60.0,60000.0 +2292,2025-06-05T14:12:00-07:00,19.76333236694336,60.0,60000.0 +2293,2025-06-05T14:13:00-07:00,19.76166534423828,60.0,60000.0 +2294,2025-06-05T14:14:00-07:00,19.76399917602539,60.0,60000.0 +2295,2025-06-05T14:15:00-07:00,19.771666208902996,60.0,60000.0 +2296,2025-06-05T14:16:00-07:00,19.78333282470703,60.0,60000.0 +2297,2025-06-05T14:17:00-07:00,19.79000015258789,60.0,60000.0 +2298,2025-06-05T14:18:00-07:00,19.801666895548504,60.0,60000.0 +2299,2025-06-05T14:19:00-07:00,19.815000534057617,60.0,60000.0 +2300,2025-06-05T14:20:00-07:00,19.82833417256673,60.0,60000.0 +2301,2025-06-05T14:21:00-07:00,19.828001403808592,60.0,60000.0 +2302,2025-06-05T14:22:00-07:00,19.821667353312176,60.0,60000.0 +2303,2025-06-05T14:23:00-07:00,19.811667760213215,60.0,60000.0 +2304,2025-06-05T14:24:00-07:00,19.80600051879883,60.0,60000.0 +2305,2025-06-05T14:25:00-07:00,19.80666732788086,60.0,60000.0 +2306,2025-06-05T14:26:00-07:00,19.80666732788086,60.0,60000.0 +2307,2025-06-05T14:27:00-07:00,19.795999908447264,60.0,60000.0 +2308,2025-06-05T14:28:00-07:00,19.796666463216145,60.0,60000.0 +2309,2025-06-05T14:29:00-07:00,19.816666920979817,60.0,60000.0 +2310,2025-06-05T14:30:00-07:00,19.83333396911621,60.0,60000.0 +2311,2025-06-05T14:31:00-07:00,19.849999109903973,60.0,60000.0 +2312,2025-06-05T14:32:00-07:00,19.864999771118164,60.0,60000.0 +2313,2025-06-05T14:33:00-07:00,19.87800064086914,60.0,60000.0 +2314,2025-06-05T14:34:00-07:00,19.893333435058594,60.0,60000.0 +2315,2025-06-05T14:35:00-07:00,19.906667073567707,60.0,60000.0 +2316,2025-06-05T14:36:00-07:00,19.919998931884766,60.0,60000.0 +2317,2025-06-05T14:37:00-07:00,19.929999669392902,60.0,60000.0 +2318,2025-06-05T14:38:00-07:00,19.924999237060547,60.0,60000.0 +2319,2025-06-05T14:39:00-07:00,19.927999877929686,60.0,60000.0 +2320,2025-06-05T14:40:00-07:00,19.90500005086263,60.0,60000.0 +2321,2025-06-05T14:41:00-07:00,19.89833386739095,60.0,60000.0 +2322,2025-06-05T14:42:00-07:00,19.908000183105468,60.0,60000.0 +2323,2025-06-05T14:43:00-07:00,19.92333221435547,60.0,60000.0 +2324,2025-06-05T14:44:00-07:00,19.94166628519694,60.0,60000.0 +2325,2025-06-05T14:45:00-07:00,19.952000427246094,60.0,60000.0 +2326,2025-06-05T14:46:00-07:00,19.96666653951009,60.0,60000.0 +2327,2025-06-05T14:47:00-07:00,19.970001220703125,60.0,60000.0 +2328,2025-06-05T14:48:00-07:00,19.974000549316408,60.0,60000.0 +2329,2025-06-05T14:49:00-07:00,19.97166697184245,60.0,60000.0 +2330,2025-06-05T14:50:00-07:00,19.968334197998047,60.0,60000.0 +2331,2025-06-05T14:51:00-07:00,19.972000885009766,60.0,60000.0 +2332,2025-06-05T14:52:00-07:00,19.978333791097004,60.0,60000.0 +2333,2025-06-05T14:53:00-07:00,19.979999542236328,60.0,60000.0 +2334,2025-06-05T14:54:00-07:00,19.9880012512207,60.0,60000.0 +2335,2025-06-05T14:55:00-07:00,19.990001678466797,60.0,60000.0 +2336,2025-06-05T14:56:00-07:00,19.985000610351562,60.0,60000.0 +2337,2025-06-05T14:57:00-07:00,19.977999877929687,60.0,60000.0 +2338,2025-06-05T14:58:00-07:00,19.97833315531413,60.0,60000.0 +2339,2025-06-05T14:59:00-07:00,19.981667200724285,60.0,60000.0 +2340,2025-06-05T15:00:00-07:00,19.98600082397461,60.0,60000.0 +2341,2025-06-05T15:01:00-07:00,19.980000178019207,60.0,60000.0 +2342,2025-06-05T15:02:00-07:00,19.981666564941406,60.0,60000.0 +2343,2025-06-05T15:03:00-07:00,19.990001042683918,60.0,60000.0 +2344,2025-06-05T15:04:00-07:00,19.9880012512207,60.0,60000.0 +2345,2025-06-05T15:05:00-07:00,19.99166742960612,60.0,60000.0 +2346,2025-06-05T15:06:00-07:00,19.990001042683918,60.0,60000.0 +2347,2025-06-05T15:07:00-07:00,19.98600082397461,60.0,60000.0 +2348,2025-06-05T15:08:00-07:00,19.981666564941406,60.0,60000.0 +2349,2025-06-05T15:09:00-07:00,19.985000610351562,60.0,60000.0 +2350,2025-06-05T15:10:00-07:00,19.981999969482423,60.0,60000.0 +2351,2025-06-05T15:11:00-07:00,19.990001042683918,60.0,60000.0 +2352,2025-06-05T15:12:00-07:00,19.98666763305664,60.0,60000.0 +2353,2025-06-05T15:13:00-07:00,19.979999542236328,60.0,60000.0 +2354,2025-06-05T15:14:00-07:00,19.984999974568684,60.0,60000.0 +2355,2025-06-05T15:15:00-07:00,19.996667226155598,60.0,60000.0 +2356,2025-06-05T15:16:00-07:00,20.0,60.0,60000.0 +2357,2025-06-05T15:17:00-07:00,20.0,60.0,60000.0 +2358,2025-06-05T15:18:00-07:00,20.0,60.0,60000.0 +2359,2025-06-05T15:19:00-07:00,20.00199966430664,60.0,60000.0 +2360,2025-06-05T15:20:00-07:00,19.9950008392334,60.0,60000.0 +2361,2025-06-05T15:21:00-07:00,20.0066655476888,60.0,60000.0 +2362,2025-06-05T15:22:00-07:00,20.00199966430664,60.0,60000.0 +2363,2025-06-05T15:23:00-07:00,20.0028566632952,60.0,60000.0 +2364,2025-06-05T15:24:00-07:00,20.009998321533203,60.0,60000.0 +2365,2025-06-05T15:25:00-07:00,20.00599899291992,60.0,60000.0 +2366,2025-06-05T15:26:00-07:00,20.01166598002116,60.0,60000.0 +2367,2025-06-05T15:27:00-07:00,20.014999389648438,60.0,60000.0 +2368,2025-06-05T15:28:00-07:00,20.0119987487793,60.0,60000.0 +2369,2025-06-05T15:29:00-07:00,20.0016663869222,60.0,60000.0 +2370,2025-06-05T15:30:00-07:00,19.9983336130778,60.0,60000.0 +2371,2025-06-05T15:31:00-07:00,19.996000671386717,60.0,60000.0 +2372,2025-06-05T15:32:00-07:00,19.9983336130778,60.0,60000.0 +2373,2025-06-05T15:33:00-07:00,20.0016663869222,60.0,60000.0 +2374,2025-06-05T15:34:00-07:00,20.0,60.0,60000.0 +2375,2025-06-05T15:35:00-07:00,20.003332773844402,60.0,60000.0 +2376,2025-06-05T15:36:00-07:00,20.01333236694336,60.0,60000.0 +2377,2025-06-05T15:37:00-07:00,20.020000457763672,60.0,60000.0 +2378,2025-06-05T15:38:00-07:00,20.019999186197918,60.0,60000.0 +2379,2025-06-05T15:39:00-07:00,20.031665802001953,60.0,60000.0 +2380,2025-06-05T15:40:00-07:00,20.03199920654297,60.0,60000.0 +2381,2025-06-05T15:41:00-07:00,20.036666870117188,60.0,60000.0 +2382,2025-06-05T15:42:00-07:00,20.03499984741211,60.0,60000.0 +2383,2025-06-05T15:43:00-07:00,20.03800048828125,60.0,60000.0 +2384,2025-06-05T15:44:00-07:00,20.036666870117188,60.0,60000.0 +2385,2025-06-05T15:45:00-07:00,20.03333282470703,60.0,60000.0 +2386,2025-06-05T15:46:00-07:00,20.028332392374676,60.0,60000.0 +2387,2025-06-05T15:47:00-07:00,20.03199920654297,60.0,60000.0 +2388,2025-06-05T15:48:00-07:00,20.023333231608074,60.0,60000.0 +2389,2025-06-05T15:49:00-07:00,20.024999618530273,60.0,60000.0 +2390,2025-06-05T15:50:00-07:00,20.02999954223633,60.0,60000.0 +2391,2025-06-05T15:51:00-07:00,20.031665802001953,60.0,60000.0 +2392,2025-06-05T15:52:00-07:00,20.03333282470703,60.0,60000.0 +2393,2025-06-05T15:53:00-07:00,20.025999450683592,60.0,60000.0 +2394,2025-06-05T15:54:00-07:00,20.029998779296875,60.0,60000.0 +2395,2025-06-05T15:55:00-07:00,20.038333892822266,60.0,60000.0 +2396,2025-06-05T15:56:00-07:00,20.044000244140626,60.0,60000.0 +2397,2025-06-05T15:57:00-07:00,20.040000915527344,60.0,60000.0 +2398,2025-06-05T15:58:00-07:00,20.046666463216145,60.0,60000.0 +2399,2025-06-05T15:59:00-07:00,20.02999954223633,60.0,60000.0 +2400,2025-06-05T16:00:00-07:00,20.019999821980793,60.0,60000.0 +2401,2025-06-05T16:01:00-07:00,20.021666208902996,60.0,60000.0 +2402,2025-06-05T16:02:00-07:00,20.027999114990234,60.0,60000.0 +2403,2025-06-05T16:03:00-07:00,20.024999618530273,60.0,60000.0 +2404,2025-06-05T16:04:00-07:00,20.031665802001953,60.0,60000.0 +2405,2025-06-05T16:05:00-07:00,20.0239990234375,60.0,60000.0 +2406,2025-06-05T16:06:00-07:00,20.01333236694336,60.0,60000.0 +2407,2025-06-05T16:07:00-07:00,20.0,60.0,60000.0 +2408,2025-06-05T16:08:00-07:00,20.0,60.0,60000.0 +2409,2025-06-05T16:09:00-07:00,19.9983336130778,60.0,60000.0 +2410,2025-06-05T16:10:00-07:00,19.9950008392334,60.0,60000.0 +2411,2025-06-05T16:11:00-07:00,20.0,60.0,60000.0 +2412,2025-06-05T16:12:00-07:00,20.003332773844402,60.0,60000.0 +2413,2025-06-05T16:13:00-07:00,20.009998957316082,60.0,60000.0 +2414,2025-06-05T16:14:00-07:00,20.023999786376955,60.0,60000.0 +2415,2025-06-05T16:15:00-07:00,20.029999415079754,60.0,60000.0 +2416,2025-06-05T16:16:00-07:00,20.026666005452473,60.0,60000.0 +2417,2025-06-05T16:17:00-07:00,20.027999114990234,60.0,60000.0 +2418,2025-06-05T16:18:00-07:00,20.029999415079754,60.0,60000.0 +2419,2025-06-05T16:19:00-07:00,20.029999415079754,60.0,60000.0 +2420,2025-06-05T16:20:00-07:00,20.025999450683592,60.0,60000.0 +2421,2025-06-05T16:21:00-07:00,20.023333231608074,60.0,60000.0 +2422,2025-06-05T16:22:00-07:00,20.015000025431316,60.0,60000.0 +2423,2025-06-05T16:23:00-07:00,20.009998321533203,60.0,60000.0 +2424,2025-06-05T16:24:00-07:00,20.008331934611004,60.0,60000.0 +2425,2025-06-05T16:25:00-07:00,20.003332773844402,60.0,60000.0 +2426,2025-06-05T16:26:00-07:00,20.00199966430664,60.0,60000.0 +2427,2025-06-05T16:27:00-07:00,20.0,60.0,60000.0 +2428,2025-06-05T16:28:00-07:00,20.0016663869222,60.0,60000.0 +2429,2025-06-05T16:29:00-07:00,19.99800033569336,60.0,60000.0 +2430,2025-06-05T16:30:00-07:00,20.009998321533203,60.0,60000.0 +2431,2025-06-05T16:31:00-07:00,20.003332773844402,60.0,60000.0 +2432,2025-06-05T16:32:00-07:00,20.0,60.0,60000.0 +2433,2025-06-05T16:33:00-07:00,19.991668065388996,60.0,60000.0 +2434,2025-06-05T16:34:00-07:00,19.991668065388996,60.0,60000.0 +2435,2025-06-05T16:35:00-07:00,19.996666590372723,60.0,60000.0 +2436,2025-06-05T16:36:00-07:00,20.0,60.0,60000.0 +2437,2025-06-05T16:37:00-07:00,20.0049991607666,60.0,60000.0 +2438,2025-06-05T16:38:00-07:00,20.009998957316082,60.0,60000.0 +2439,2025-06-05T16:39:00-07:00,20.00599899291992,60.0,60000.0 +2440,2025-06-05T16:40:00-07:00,19.9983336130778,60.0,60000.0 +2441,2025-06-05T16:41:00-07:00,19.9983336130778,60.0,60000.0 +2442,2025-06-05T16:42:00-07:00,19.984000396728515,60.0,60000.0 +2443,2025-06-05T16:43:00-07:00,19.981666564941406,60.0,60000.0 +2444,2025-06-05T16:44:00-07:00,19.980000178019207,60.0,60000.0 +2445,2025-06-05T16:45:00-07:00,19.980000305175782,60.0,60000.0 +2446,2025-06-05T16:46:00-07:00,19.985000610351562,60.0,60000.0 +2447,2025-06-05T16:47:00-07:00,19.981666564941406,60.0,60000.0 +2448,2025-06-05T16:48:00-07:00,19.981999969482423,60.0,60000.0 +2449,2025-06-05T16:49:00-07:00,19.975000381469727,60.0,60000.0 +2450,2025-06-05T16:50:00-07:00,19.97833315531413,60.0,60000.0 +2451,2025-06-05T16:51:00-07:00,19.972000885009766,60.0,60000.0 +2452,2025-06-05T16:52:00-07:00,19.979999542236328,60.0,60000.0 +2453,2025-06-05T16:53:00-07:00,19.97833315531413,60.0,60000.0 +2454,2025-06-05T16:54:00-07:00,19.977999877929687,60.0,60000.0 +2455,2025-06-05T16:55:00-07:00,19.975000381469727,60.0,60000.0 +2456,2025-06-05T16:56:00-07:00,19.973333994547527,60.0,60000.0 +2457,2025-06-05T16:57:00-07:00,19.974000549316408,60.0,60000.0 +2458,2025-06-05T16:58:00-07:00,19.975000381469727,60.0,60000.0 +2459,2025-06-05T16:59:00-07:00,19.973333994547527,60.0,60000.0 +2460,2025-06-05T17:00:00-07:00,19.972000885009766,60.0,60000.0 +2461,2025-06-05T17:01:00-07:00,19.97166697184245,60.0,60000.0 +2462,2025-06-05T17:02:00-07:00,19.971667607625324,60.0,60000.0 +2463,2025-06-05T17:03:00-07:00,19.974000549316408,60.0,60000.0 +2464,2025-06-05T17:04:00-07:00,19.975000381469727,60.0,60000.0 +2465,2025-06-05T17:05:00-07:00,19.968334197998047,60.0,60000.0 +2466,2025-06-05T17:06:00-07:00,19.974000549316408,60.0,60000.0 +2467,2025-06-05T17:07:00-07:00,19.975714547293528,60.0,60000.0 +2468,2025-06-05T17:08:00-07:00,19.971667607625324,60.0,60000.0 +2469,2025-06-05T17:09:00-07:00,19.96800079345703,60.0,60000.0 +2470,2025-06-05T17:10:00-07:00,19.96500015258789,60.0,60000.0 +2471,2025-06-05T17:11:00-07:00,19.959999084472656,60.0,60000.0 +2472,2025-06-05T17:12:00-07:00,19.959999084472656,60.0,60000.0 +2473,2025-06-05T17:13:00-07:00,19.963333129882812,60.0,60000.0 +2474,2025-06-05T17:14:00-07:00,19.956666310628254,60.0,60000.0 +2475,2025-06-05T17:15:00-07:00,19.95,60.0,60000.0 +2476,2025-06-05T17:16:00-07:00,19.948333740234375,60.0,60000.0 +2477,2025-06-05T17:17:00-07:00,19.94499969482422,60.0,60000.0 +2478,2025-06-05T17:18:00-07:00,19.939999389648438,60.0,60000.0 +2479,2025-06-05T17:19:00-07:00,19.94333267211914,60.0,60000.0 +2480,2025-06-05T17:20:00-07:00,19.936665852864582,60.0,60000.0 +2481,2025-06-05T17:21:00-07:00,19.939998626708984,60.0,60000.0 +2482,2025-06-05T17:22:00-07:00,19.94333267211914,60.0,60000.0 +2483,2025-06-05T17:23:00-07:00,19.946666717529297,60.0,60000.0 +2484,2025-06-05T17:24:00-07:00,19.955999755859374,60.0,60000.0 +2485,2025-06-05T17:25:00-07:00,19.961666107177734,60.0,60000.0 +2486,2025-06-05T17:26:00-07:00,19.96500015258789,60.0,60000.0 +2487,2025-06-05T17:27:00-07:00,19.972000885009766,60.0,60000.0 +2488,2025-06-05T17:28:00-07:00,19.97833315531413,60.0,60000.0 +2489,2025-06-05T17:29:00-07:00,19.976666768391926,60.0,60000.0 +2490,2025-06-05T17:30:00-07:00,19.974000549316408,60.0,60000.0 +2491,2025-06-05T17:31:00-07:00,19.971667607625324,60.0,60000.0 +2492,2025-06-05T17:32:00-07:00,19.971667607625324,60.0,60000.0 +2493,2025-06-05T17:33:00-07:00,19.970001220703125,60.0,60000.0 +2494,2025-06-05T17:34:00-07:00,19.973333994547527,60.0,60000.0 +2495,2025-06-05T17:35:00-07:00,19.968334197998047,60.0,60000.0 +2496,2025-06-05T17:36:00-07:00,19.96800079345703,60.0,60000.0 +2497,2025-06-05T17:37:00-07:00,19.963333129882812,60.0,60000.0 +2498,2025-06-05T17:38:00-07:00,19.968334197998047,60.0,60000.0 +2499,2025-06-05T17:39:00-07:00,19.971667607625324,60.0,60000.0 +2500,2025-06-05T17:40:00-07:00,19.963999938964843,60.0,60000.0 +2501,2025-06-05T17:41:00-07:00,19.96999994913737,60.0,60000.0 +2502,2025-06-05T17:42:00-07:00,19.963333129882812,60.0,60000.0 +2503,2025-06-05T17:43:00-07:00,19.9620002746582,60.0,60000.0 +2504,2025-06-05T17:44:00-07:00,19.958332697550457,60.0,60000.0 +2505,2025-06-05T17:45:00-07:00,19.963333129882812,60.0,60000.0 +2506,2025-06-05T17:46:00-07:00,19.963999938964843,60.0,60000.0 +2507,2025-06-05T17:47:00-07:00,19.959999084472656,60.0,60000.0 +2508,2025-06-05T17:48:00-07:00,19.954999923706055,60.0,60000.0 +2509,2025-06-05T17:49:00-07:00,19.95,60.0,60000.0 +2510,2025-06-05T17:50:00-07:00,19.946666717529297,60.0,60000.0 +2511,2025-06-05T17:51:00-07:00,19.953332901000977,60.0,60000.0 +2512,2025-06-05T17:52:00-07:00,19.957999420166015,60.0,60000.0 +2513,2025-06-05T17:53:00-07:00,19.961666742960613,60.0,60000.0 +2514,2025-06-05T17:54:00-07:00,19.963333129882812,60.0,60000.0 +2515,2025-06-05T17:55:00-07:00,19.9620002746582,60.0,60000.0 +2516,2025-06-05T17:56:00-07:00,19.959999084472656,60.0,60000.0 +2517,2025-06-05T17:57:00-07:00,19.956666310628254,60.0,60000.0 +2518,2025-06-05T17:58:00-07:00,19.96199951171875,60.0,60000.0 +2519,2025-06-05T17:59:00-07:00,19.96500015258789,60.0,60000.0 +2520,2025-06-05T18:00:00-07:00,19.970001220703125,60.0,60000.0 +2521,2025-06-05T18:01:00-07:00,19.977999877929687,60.0,60000.0 +2522,2025-06-05T18:02:00-07:00,19.970001220703125,60.0,60000.0 +2523,2025-06-05T18:03:00-07:00,19.968334197998047,60.0,60000.0 +2524,2025-06-05T18:04:00-07:00,19.966000366210938,60.0,60000.0 +2525,2025-06-05T18:05:00-07:00,19.970001220703125,60.0,60000.0 +2526,2025-06-05T18:06:00-07:00,19.975000381469727,60.0,60000.0 +2527,2025-06-05T18:07:00-07:00,19.974000549316408,60.0,60000.0 +2528,2025-06-05T18:08:00-07:00,19.975000381469727,60.0,60000.0 +2529,2025-06-05T18:09:00-07:00,19.983334223429363,60.0,60000.0 +2530,2025-06-05T18:10:00-07:00,19.9880012512207,60.0,60000.0 +2531,2025-06-05T18:11:00-07:00,19.9933344523112,60.0,60000.0 +2532,2025-06-05T18:12:00-07:00,19.9933344523112,60.0,60000.0 +2533,2025-06-05T18:13:00-07:00,19.99800033569336,60.0,60000.0 +2534,2025-06-05T18:14:00-07:00,20.0,60.0,60000.0 +2535,2025-06-05T18:15:00-07:00,20.015000025431316,60.0,60000.0 +2536,2025-06-05T18:16:00-07:00,20.017999267578126,60.0,60000.0 +2537,2025-06-05T18:17:00-07:00,20.024999618530273,60.0,60000.0 +2538,2025-06-05T18:18:00-07:00,20.026666005452473,60.0,60000.0 +2539,2025-06-05T18:19:00-07:00,20.027999114990234,60.0,60000.0 +2540,2025-06-05T18:20:00-07:00,20.031665802001953,60.0,60000.0 +2541,2025-06-05T18:21:00-07:00,20.041667302449543,60.0,60000.0 +2542,2025-06-05T18:22:00-07:00,20.044000244140626,60.0,60000.0 +2543,2025-06-05T18:23:00-07:00,20.049999237060547,60.0,60000.0 +2544,2025-06-05T18:24:00-07:00,20.046666463216145,60.0,60000.0 +2545,2025-06-05T18:25:00-07:00,20.051999664306642,60.0,60000.0 +2546,2025-06-05T18:26:00-07:00,20.06166712443034,60.0,60000.0 +2547,2025-06-05T18:27:00-07:00,20.073334376017254,60.0,60000.0 +2548,2025-06-05T18:28:00-07:00,20.09000015258789,60.0,60000.0 +2549,2025-06-05T18:29:00-07:00,20.09599914550781,60.0,60000.0 +2550,2025-06-05T18:30:00-07:00,20.099998474121094,60.0,60000.0 +2551,2025-06-05T18:31:00-07:00,20.099998474121094,60.0,60000.0 +2552,2025-06-05T18:32:00-07:00,20.091999816894532,60.0,60000.0 +2553,2025-06-05T18:33:00-07:00,20.09166653951009,60.0,60000.0 +2554,2025-06-05T18:34:00-07:00,20.09000015258789,60.0,60000.0 +2555,2025-06-05T18:35:00-07:00,20.09000015258789,60.0,60000.0 +2556,2025-06-05T18:36:00-07:00,20.09666570027669,60.0,60000.0 +2557,2025-06-05T18:37:00-07:00,20.099998474121094,60.0,60000.0 +2558,2025-06-05T18:38:00-07:00,20.110000610351562,60.0,60000.0 +2559,2025-06-05T18:39:00-07:00,20.116666158040363,60.0,60000.0 +2560,2025-06-05T18:40:00-07:00,20.126667022705078,60.0,60000.0 +2561,2025-06-05T18:41:00-07:00,20.12800064086914,60.0,60000.0 +2562,2025-06-05T18:42:00-07:00,20.130001068115234,60.0,60000.0 +2563,2025-06-05T18:43:00-07:00,20.128334045410156,60.0,60000.0 +2564,2025-06-05T18:44:00-07:00,20.12199935913086,60.0,60000.0 +2565,2025-06-05T18:45:00-07:00,20.116666158040363,60.0,60000.0 +2566,2025-06-05T18:46:00-07:00,20.113333384195965,60.0,60000.0 +2567,2025-06-05T18:47:00-07:00,20.123999786376952,60.0,60000.0 +2568,2025-06-05T18:48:00-07:00,20.128334045410156,60.0,60000.0 +2569,2025-06-05T18:49:00-07:00,20.125,60.0,60000.0 +2570,2025-06-05T18:50:00-07:00,20.118000030517578,60.0,60000.0 +2571,2025-06-05T18:51:00-07:00,20.111666997273762,60.0,60000.0 +2572,2025-06-05T18:52:00-07:00,20.104999542236328,60.0,60000.0 +2573,2025-06-05T18:53:00-07:00,20.099998474121094,60.0,60000.0 +2574,2025-06-05T18:54:00-07:00,20.104999542236328,60.0,60000.0 +2575,2025-06-05T18:55:00-07:00,20.113333384195965,60.0,60000.0 +2576,2025-06-05T18:56:00-07:00,20.12800064086914,60.0,60000.0 +2577,2025-06-05T18:57:00-07:00,20.130001068115234,60.0,60000.0 +2578,2025-06-05T18:58:00-07:00,20.136667251586914,60.0,60000.0 +2579,2025-06-05T18:59:00-07:00,20.142000579833983,60.0,60000.0 +2580,2025-06-05T19:00:00-07:00,20.150000890096027,60.0,60000.0 +2581,2025-06-05T19:01:00-07:00,20.156667073567707,60.0,60000.0 +2582,2025-06-05T19:02:00-07:00,20.16199951171875,60.0,60000.0 +2583,2025-06-05T19:03:00-07:00,20.15999984741211,60.0,60000.0 +2584,2025-06-05T19:04:00-07:00,20.16666539510091,60.0,60000.0 +2585,2025-06-05T19:05:00-07:00,20.171999359130858,60.0,60000.0 +2586,2025-06-05T19:06:00-07:00,20.178333282470703,60.0,60000.0 +2587,2025-06-05T19:07:00-07:00,20.184999465942383,60.0,60000.0 +2588,2025-06-05T19:08:00-07:00,20.189999389648438,60.0,60000.0 +2589,2025-06-05T19:09:00-07:00,20.200000762939453,60.0,60000.0 +2590,2025-06-05T19:10:00-07:00,20.200000762939453,60.0,60000.0 +2591,2025-06-05T19:11:00-07:00,20.20199966430664,60.0,60000.0 +2592,2025-06-05T19:12:00-07:00,20.208333333333332,60.0,60000.0 +2593,2025-06-05T19:13:00-07:00,20.21500015258789,60.0,60000.0 +2594,2025-06-05T19:14:00-07:00,20.226000213623045,60.0,60000.0 +2595,2025-06-05T19:15:00-07:00,20.231666564941406,60.0,60000.0 +2596,2025-06-05T19:16:00-07:00,20.23666763305664,60.0,60000.0 +2597,2025-06-05T19:17:00-07:00,20.240001678466797,60.0,60000.0 +2598,2025-06-05T19:18:00-07:00,20.240001678466797,60.0,60000.0 +2599,2025-06-05T19:19:00-07:00,20.24166742960612,60.0,60000.0 +2600,2025-06-05T19:20:00-07:00,20.25199966430664,60.0,60000.0 +2601,2025-06-05T19:21:00-07:00,20.258331934611004,60.0,60000.0 +2602,2025-06-05T19:22:00-07:00,20.26166598002116,60.0,60000.0 +2603,2025-06-05T19:23:00-07:00,20.270000457763672,60.0,60000.0 +2604,2025-06-05T19:24:00-07:00,20.279998779296875,60.0,60000.0 +2605,2025-06-05T19:25:00-07:00,20.281665802001953,60.0,60000.0 +2606,2025-06-05T19:26:00-07:00,20.28800048828125,60.0,60000.0 +2607,2025-06-05T19:27:00-07:00,20.296666463216145,60.0,60000.0 +2608,2025-06-05T19:28:00-07:00,20.299999872843426,60.0,60000.0 +2609,2025-06-05T19:29:00-07:00,20.30800094604492,60.0,60000.0 +2610,2025-06-05T19:30:00-07:00,20.30666669209798,60.0,60000.0 +2611,2025-06-05T19:31:00-07:00,20.316667556762695,60.0,60000.0 +2612,2025-06-05T19:32:00-07:00,20.328000640869142,60.0,60000.0 +2613,2025-06-05T19:33:00-07:00,20.33666737874349,60.0,60000.0 +2614,2025-06-05T19:34:00-07:00,20.34666633605957,60.0,60000.0 +2615,2025-06-05T19:35:00-07:00,20.373332977294922,60.0,60000.0 +2616,2025-06-05T19:36:00-07:00,20.39800109863281,60.0,60000.0 +2617,2025-06-05T19:37:00-07:00,20.426666259765625,60.0,60000.0 +2618,2025-06-05T19:38:00-07:00,20.508333841959637,60.0,60000.0 +2619,2025-06-05T19:39:00-07:00,21.077999114990234,60.0,60000.0 +2620,2025-06-05T19:40:00-07:00,21.451667149861652,60.0,60000.0 +2621,2025-06-05T19:41:00-07:00,21.825000127156574,60.0,60000.0 +2622,2025-06-05T19:42:00-07:00,22.092000579833986,60.0,60000.0 +2623,2025-06-05T19:43:00-07:00,22.299999872843426,60.0,60000.0 +2624,2025-06-05T19:44:00-07:00,22.459999084472656,60.0,60000.0 +2625,2025-06-05T19:45:00-07:00,22.572000122070314,60.0,60000.0 +2626,2025-06-05T19:46:00-07:00,22.65500005086263,60.0,60000.0 +2627,2025-06-05T19:47:00-07:00,22.730000178019207,60.0,60000.0 +2628,2025-06-05T19:48:00-07:00,22.777999877929688,60.0,60000.0 +2629,2025-06-05T19:49:00-07:00,22.8000005086263,60.0,60000.0 +2630,2025-06-05T19:50:00-07:00,22.815000534057617,60.0,60000.0 +2631,2025-06-05T19:51:00-07:00,22.824000549316406,60.0,60000.0 +2632,2025-06-05T19:52:00-07:00,22.813334147135418,60.0,60000.0 +2633,2025-06-05T19:53:00-07:00,22.810001373291016,60.0,60000.0 +2634,2025-06-05T19:54:00-07:00,22.80600051879883,60.0,60000.0 +2635,2025-06-05T19:55:00-07:00,22.803333282470703,60.0,60000.0 +2636,2025-06-05T19:56:00-07:00,22.788333257039387,60.0,60000.0 +2637,2025-06-05T19:57:00-07:00,22.78199996948242,60.0,60000.0 +2638,2025-06-05T19:58:00-07:00,22.764999389648438,60.0,60000.0 +2639,2025-06-05T19:59:00-07:00,22.75833257039388,60.0,60000.0 +2640,2025-06-05T20:00:00-07:00,22.7619987487793,60.0,60000.0 +2641,2025-06-05T20:01:00-07:00,22.74333381652832,60.0,60000.0 +2642,2025-06-05T20:02:00-07:00,22.730000178019207,60.0,60000.0 +2643,2025-06-05T20:03:00-07:00,22.72000045776367,60.0,60000.0 +2644,2025-06-05T20:04:00-07:00,22.698333104451496,60.0,60000.0 +2645,2025-06-05T20:05:00-07:00,22.689999262491863,60.0,60000.0 +2646,2025-06-05T20:06:00-07:00,22.6739990234375,60.0,60000.0 +2647,2025-06-05T20:07:00-07:00,22.66333262125651,60.0,60000.0 +2648,2025-06-05T20:08:00-07:00,22.656667073567707,60.0,60000.0 +2649,2025-06-05T20:09:00-07:00,22.644000244140624,60.0,60000.0 +2650,2025-06-05T20:10:00-07:00,22.62000020345052,60.0,60000.0 +2651,2025-06-05T20:11:00-07:00,22.598332087198894,60.0,60000.0 +2652,2025-06-05T20:12:00-07:00,22.59599914550781,60.0,60000.0 +2653,2025-06-05T20:13:00-07:00,22.59166653951009,60.0,60000.0 +2654,2025-06-05T20:14:00-07:00,22.58833376566569,60.0,60000.0 +2655,2025-06-05T20:15:00-07:00,22.591999816894532,60.0,60000.0 +2656,2025-06-05T20:16:00-07:00,22.59000015258789,60.0,60000.0 +2657,2025-06-05T20:17:00-07:00,22.593332926432293,60.0,60000.0 +2658,2025-06-05T20:18:00-07:00,22.605998992919922,60.0,60000.0 +2659,2025-06-05T20:19:00-07:00,22.608332951863606,60.0,60000.0 +2660,2025-06-05T20:20:00-07:00,22.613333384195965,60.0,60000.0 +2661,2025-06-05T20:21:00-07:00,22.608000183105467,60.0,60000.0 +2662,2025-06-05T20:22:00-07:00,22.599999109903973,60.0,60000.0 +2663,2025-06-05T20:23:00-07:00,22.60333251953125,60.0,60000.0 +2664,2025-06-05T20:24:00-07:00,22.605999755859376,60.0,60000.0 +2665,2025-06-05T20:25:00-07:00,22.608333587646484,60.0,60000.0 +2666,2025-06-05T20:26:00-07:00,22.610000610351562,60.0,60000.0 +2667,2025-06-05T20:27:00-07:00,22.601665496826172,60.0,60000.0 +2668,2025-06-05T20:28:00-07:00,22.599999237060548,60.0,60000.0 +2669,2025-06-05T20:29:00-07:00,22.60333251953125,60.0,60000.0 +2670,2025-06-05T20:30:00-07:00,22.60333251953125,60.0,60000.0 +2671,2025-06-05T20:31:00-07:00,22.608000183105467,60.0,60000.0 +2672,2025-06-05T20:32:00-07:00,22.60333251953125,60.0,60000.0 +2673,2025-06-05T20:33:00-07:00,22.593332926432293,60.0,60000.0 +2674,2025-06-05T20:34:00-07:00,22.586000823974608,60.0,60000.0 +2675,2025-06-05T20:35:00-07:00,22.581668217976887,60.0,60000.0 +2676,2025-06-05T20:36:00-07:00,22.581668217976887,60.0,60000.0 +2677,2025-06-05T20:37:00-07:00,22.58200149536133,60.0,60000.0 +2678,2025-06-05T20:38:00-07:00,22.57833480834961,60.0,60000.0 +2679,2025-06-05T20:39:00-07:00,22.580001831054688,60.0,60000.0 +2680,2025-06-05T20:40:00-07:00,22.572000122070314,60.0,60000.0 +2681,2025-06-05T20:41:00-07:00,22.55833371480306,60.0,60000.0 +2682,2025-06-05T20:42:00-07:00,22.541667302449543,60.0,60000.0 +2683,2025-06-05T20:43:00-07:00,22.55,60.0,60000.0 +2684,2025-06-05T20:44:00-07:00,22.560001373291016,60.0,60000.0 +2685,2025-06-05T20:45:00-07:00,22.566666920979817,60.0,60000.0 +2686,2025-06-05T20:46:00-07:00,22.574000549316406,60.0,60000.0 +2687,2025-06-05T20:47:00-07:00,22.57666778564453,60.0,60000.0 +2688,2025-06-05T20:48:00-07:00,22.57833480834961,60.0,60000.0 +2689,2025-06-05T20:49:00-07:00,22.574000549316406,60.0,60000.0 +2690,2025-06-05T20:50:00-07:00,22.566666920979817,60.0,60000.0 +2691,2025-06-05T20:51:00-07:00,22.558334350585938,60.0,60000.0 +2692,2025-06-05T20:52:00-07:00,22.562001037597657,60.0,60000.0 +2693,2025-06-05T20:53:00-07:00,22.565000534057617,60.0,60000.0 +2694,2025-06-05T20:54:00-07:00,22.565000534057617,60.0,60000.0 +2695,2025-06-05T20:55:00-07:00,22.568000030517577,60.0,60000.0 +2696,2025-06-05T20:56:00-07:00,22.581666946411133,60.0,60000.0 +2697,2025-06-05T20:57:00-07:00,22.59000015258789,60.0,60000.0 +2698,2025-06-05T20:58:00-07:00,22.599999237060548,60.0,60000.0 +2699,2025-06-05T20:59:00-07:00,22.604999542236328,60.0,60000.0 +2700,2025-06-05T21:00:00-07:00,22.613333384195965,60.0,60000.0 +2701,2025-06-05T21:01:00-07:00,22.626000213623048,60.0,60000.0 +2702,2025-06-05T21:02:00-07:00,22.631667455037434,60.0,60000.0 +2703,2025-06-05T21:03:00-07:00,22.630000432332356,60.0,60000.0 +2704,2025-06-05T21:04:00-07:00,22.62800064086914,60.0,60000.0 +2705,2025-06-05T21:05:00-07:00,22.621665954589844,60.0,60000.0 +2706,2025-06-05T21:06:00-07:00,22.6233336130778,60.0,60000.0 +2707,2025-06-05T21:07:00-07:00,22.619998931884766,60.0,60000.0 +2708,2025-06-05T21:08:00-07:00,22.613333384195965,60.0,60000.0 +2709,2025-06-05T21:09:00-07:00,22.604999542236328,60.0,60000.0 +2710,2025-06-05T21:10:00-07:00,22.599998474121094,60.0,60000.0 +2711,2025-06-05T21:11:00-07:00,22.59666570027669,60.0,60000.0 +2712,2025-06-05T21:12:00-07:00,22.59166653951009,60.0,60000.0 +2713,2025-06-05T21:13:00-07:00,22.58333460489909,60.0,60000.0 +2714,2025-06-05T21:14:00-07:00,22.578001403808592,60.0,60000.0 +2715,2025-06-05T21:15:00-07:00,22.565000534057617,60.0,60000.0 +2716,2025-06-05T21:16:00-07:00,22.561667760213215,60.0,60000.0 +2717,2025-06-05T21:17:00-07:00,22.547999572753906,60.0,60000.0 +2718,2025-06-05T21:18:00-07:00,22.548333485921223,60.0,60000.0 +2719,2025-06-05T21:19:00-07:00,22.531666437784832,60.0,60000.0 +2720,2025-06-05T21:20:00-07:00,22.527999114990234,60.0,60000.0 +2721,2025-06-05T21:21:00-07:00,22.518333435058594,60.0,60000.0 +2722,2025-06-05T21:22:00-07:00,22.508331934611004,60.0,60000.0 +2723,2025-06-05T21:23:00-07:00,22.5,60.0,60000.0 +2724,2025-06-05T21:24:00-07:00,22.490001042683918,60.0,60000.0 +2725,2025-06-05T21:25:00-07:00,22.475001017252605,60.0,60000.0 +2726,2025-06-05T21:26:00-07:00,22.46199951171875,60.0,60000.0 +2727,2025-06-05T21:27:00-07:00,22.456666310628254,60.0,60000.0 +2728,2025-06-05T21:28:00-07:00,22.44499969482422,60.0,60000.0 +2729,2025-06-05T21:29:00-07:00,22.437998962402343,60.0,60000.0 +2730,2025-06-05T21:30:00-07:00,22.428333282470703,60.0,60000.0 +2731,2025-06-05T21:31:00-07:00,22.419998168945312,60.0,60000.0 +2732,2025-06-05T21:32:00-07:00,22.40400085449219,60.0,60000.0 +2733,2025-06-05T21:33:00-07:00,22.398334503173828,60.0,60000.0 +2734,2025-06-05T21:34:00-07:00,22.386666615804035,60.0,60000.0 +2735,2025-06-05T21:35:00-07:00,22.380001068115234,60.0,60000.0 +2736,2025-06-05T21:36:00-07:00,22.3766663869222,60.0,60000.0 +2737,2025-06-05T21:37:00-07:00,22.373332977294922,60.0,60000.0 +2738,2025-06-05T21:38:00-07:00,22.369998931884766,60.0,60000.0 +2739,2025-06-05T21:39:00-07:00,22.366666158040363,60.0,60000.0 +2740,2025-06-05T21:40:00-07:00,22.35333315531413,60.0,60000.0 +2741,2025-06-05T21:41:00-07:00,22.33800048828125,60.0,60000.0 +2742,2025-06-05T21:42:00-07:00,22.323333740234375,60.0,60000.0 +2743,2025-06-05T21:43:00-07:00,22.316666920979817,60.0,60000.0 +2744,2025-06-05T21:44:00-07:00,22.322000122070314,60.0,60000.0 +2745,2025-06-05T21:45:00-07:00,22.331668217976887,60.0,60000.0 +2746,2025-06-05T21:46:00-07:00,22.34166653951009,60.0,60000.0 +2747,2025-06-05T21:47:00-07:00,22.34599914550781,60.0,60000.0 +2748,2025-06-05T21:48:00-07:00,22.34166653951009,60.0,60000.0 +2749,2025-06-05T21:49:00-07:00,22.348332087198894,60.0,60000.0 +2750,2025-06-05T21:50:00-07:00,22.35199890136719,60.0,60000.0 +2751,2025-06-05T21:51:00-07:00,22.35333251953125,60.0,60000.0 +2752,2025-06-05T21:52:00-07:00,22.359999974568684,60.0,60000.0 +2753,2025-06-05T21:53:00-07:00,22.363999938964845,60.0,60000.0 +2754,2025-06-05T21:54:00-07:00,22.369999567667644,60.0,60000.0 +2755,2025-06-05T21:55:00-07:00,22.381667455037434,60.0,60000.0 +2756,2025-06-05T21:56:00-07:00,22.391999816894533,60.0,60000.0 +2757,2025-06-05T21:57:00-07:00,22.406667073567707,60.0,60000.0 +2758,2025-06-05T21:58:00-07:00,22.42333221435547,60.0,60000.0 +2759,2025-06-05T21:59:00-07:00,22.439999262491863,60.0,60000.0 +2760,2025-06-05T22:00:00-07:00,22.462001037597656,60.0,60000.0 +2761,2025-06-05T22:01:00-07:00,22.46500078837077,60.0,60000.0 +2762,2025-06-05T22:02:00-07:00,22.44499905904134,60.0,60000.0 +2763,2025-06-05T22:03:00-07:00,22.445999145507812,60.0,60000.0 +2764,2025-06-05T22:04:00-07:00,22.466665903727215,60.0,60000.0 +2765,2025-06-05T22:05:00-07:00,22.48833465576172,60.0,60000.0 +2766,2025-06-05T22:06:00-07:00,22.50199966430664,60.0,60000.0 +2767,2025-06-05T22:07:00-07:00,22.508331934611004,60.0,60000.0 +2768,2025-06-05T22:08:00-07:00,22.51166534423828,60.0,60000.0 +2769,2025-06-05T22:09:00-07:00,22.5119987487793,60.0,60000.0 +2770,2025-06-05T22:10:00-07:00,22.514999389648438,60.0,60000.0 +2771,2025-06-05T22:11:00-07:00,22.524999618530273,60.0,60000.0 +2772,2025-06-05T22:12:00-07:00,22.53800048828125,60.0,60000.0 +2773,2025-06-05T22:13:00-07:00,22.55500030517578,60.0,60000.0 +2774,2025-06-05T22:14:00-07:00,22.561667760213215,60.0,60000.0 +2775,2025-06-05T22:15:00-07:00,22.574000549316406,60.0,60000.0 +2776,2025-06-05T22:16:00-07:00,22.580001831054688,60.0,60000.0 +2777,2025-06-05T22:17:00-07:00,22.575000762939453,60.0,60000.0 +2778,2025-06-05T22:18:00-07:00,22.574000549316406,60.0,60000.0 +2779,2025-06-05T22:19:00-07:00,22.58666737874349,60.0,60000.0 +2780,2025-06-05T22:20:00-07:00,22.593332926432293,60.0,60000.0 +2781,2025-06-05T22:21:00-07:00,22.597998809814452,60.0,60000.0 +2782,2025-06-05T22:22:00-07:00,22.60333251953125,60.0,60000.0 +2783,2025-06-05T22:23:00-07:00,22.605000178019207,60.0,60000.0 +2784,2025-06-05T22:24:00-07:00,22.597998809814452,60.0,60000.0 +2785,2025-06-05T22:25:00-07:00,22.59166653951009,60.0,60000.0 +2786,2025-06-05T22:26:00-07:00,22.601665496826172,60.0,60000.0 +2787,2025-06-05T22:27:00-07:00,22.60199966430664,60.0,60000.0 +2788,2025-06-05T22:28:00-07:00,22.60333251953125,60.0,60000.0 +2789,2025-06-05T22:29:00-07:00,22.604999542236328,60.0,60000.0 +2790,2025-06-05T22:30:00-07:00,22.610000610351562,60.0,60000.0 +2791,2025-06-05T22:31:00-07:00,22.604999542236328,60.0,60000.0 +2792,2025-06-05T22:32:00-07:00,22.60333251953125,60.0,60000.0 +2793,2025-06-05T22:33:00-07:00,22.599998474121094,60.0,60000.0 +2794,2025-06-05T22:34:00-07:00,22.59000015258789,60.0,60000.0 +2795,2025-06-05T22:35:00-07:00,22.58333460489909,60.0,60000.0 +2796,2025-06-05T22:36:00-07:00,22.5760009765625,60.0,60000.0 +2797,2025-06-05T22:37:00-07:00,22.575000762939453,60.0,60000.0 +2798,2025-06-05T22:38:00-07:00,22.566666920979817,60.0,60000.0 +2799,2025-06-05T22:39:00-07:00,22.55600051879883,60.0,60000.0 +2800,2025-06-05T22:40:00-07:00,22.548570905412948,60.0,60000.0 +2801,2025-06-05T22:41:00-07:00,22.541666666666668,60.0,60000.0 +2802,2025-06-05T22:42:00-07:00,22.52999954223633,60.0,60000.0 +2803,2025-06-05T22:43:00-07:00,22.516666412353516,60.0,60000.0 +2804,2025-06-05T22:44:00-07:00,22.51166598002116,60.0,60000.0 +2805,2025-06-05T22:45:00-07:00,22.49800033569336,60.0,60000.0 +2806,2025-06-05T22:46:00-07:00,22.485000610351562,60.0,60000.0 +2807,2025-06-05T22:47:00-07:00,22.475000381469727,60.0,60000.0 +2808,2025-06-05T22:48:00-07:00,22.46199951171875,60.0,60000.0 +2809,2025-06-05T22:49:00-07:00,22.44333267211914,60.0,60000.0 +2810,2025-06-05T22:50:00-07:00,22.433333079020183,60.0,60000.0 +2811,2025-06-05T22:51:00-07:00,22.427999114990236,60.0,60000.0 +2812,2025-06-05T22:52:00-07:00,22.418331782023113,60.0,60000.0 +2813,2025-06-05T22:53:00-07:00,22.406667073567707,60.0,60000.0 +2814,2025-06-05T22:54:00-07:00,22.400001525878906,60.0,60000.0 +2815,2025-06-05T22:55:00-07:00,22.393333435058594,60.0,60000.0 +2816,2025-06-05T22:56:00-07:00,22.386666615804035,60.0,60000.0 +2817,2025-06-05T22:57:00-07:00,22.382000732421876,60.0,60000.0 +2818,2025-06-05T22:58:00-07:00,22.371665954589844,60.0,60000.0 +2819,2025-06-05T22:59:00-07:00,22.366666793823242,60.0,60000.0 +2820,2025-06-05T23:00:00-07:00,22.361666997273762,60.0,60000.0 +2821,2025-06-05T23:01:00-07:00,22.35399932861328,60.0,60000.0 +2822,2025-06-05T23:02:00-07:00,22.351665496826172,60.0,60000.0 +2823,2025-06-05T23:03:00-07:00,22.34000015258789,60.0,60000.0 +2824,2025-06-05T23:04:00-07:00,22.3260009765625,60.0,60000.0 +2825,2025-06-05T23:05:00-07:00,22.323334376017254,60.0,60000.0 +2826,2025-06-05T23:06:00-07:00,22.316667556762695,60.0,60000.0 +2827,2025-06-05T23:07:00-07:00,22.30800018310547,60.0,60000.0 +2828,2025-06-05T23:08:00-07:00,22.299999872843426,60.0,60000.0 +2829,2025-06-05T23:09:00-07:00,22.295000076293945,60.0,60000.0 +2830,2025-06-05T23:10:00-07:00,22.28499984741211,60.0,60000.0 +2831,2025-06-05T23:11:00-07:00,22.28333282470703,60.0,60000.0 +2832,2025-06-05T23:12:00-07:00,22.276666005452473,60.0,60000.0 +2833,2025-06-05T23:13:00-07:00,22.265999603271485,60.0,60000.0 +2834,2025-06-05T23:14:00-07:00,22.259998321533203,60.0,60000.0 +2835,2025-06-05T23:15:00-07:00,22.2516663869222,60.0,60000.0 +2836,2025-06-05T23:16:00-07:00,22.246000671386717,60.0,60000.0 +2837,2025-06-05T23:17:00-07:00,22.240001042683918,60.0,60000.0 +2838,2025-06-05T23:18:00-07:00,22.23666763305664,60.0,60000.0 +2839,2025-06-05T23:19:00-07:00,22.230000305175782,60.0,60000.0 +2840,2025-06-05T23:20:00-07:00,22.225000381469727,60.0,60000.0 +2841,2025-06-05T23:21:00-07:00,22.21500015258789,60.0,60000.0 +2842,2025-06-05T23:22:00-07:00,22.21199951171875,60.0,60000.0 +2843,2025-06-05T23:23:00-07:00,22.209999084472656,60.0,60000.0 +2844,2025-06-05T23:24:00-07:00,22.204999923706055,60.0,60000.0 +2845,2025-06-05T23:25:00-07:00,22.198000335693358,60.0,60000.0 +2846,2025-06-05T23:26:00-07:00,22.201667149861652,60.0,60000.0 +2847,2025-06-05T23:27:00-07:00,22.204999923706055,60.0,60000.0 +2848,2025-06-05T23:28:00-07:00,22.202000427246094,60.0,60000.0 +2849,2025-06-05T23:29:00-07:00,22.19166628519694,60.0,60000.0 +2850,2025-06-05T23:30:00-07:00,22.184999465942383,60.0,60000.0 +2851,2025-06-05T23:31:00-07:00,22.183999633789064,60.0,60000.0 +2852,2025-06-05T23:32:00-07:00,22.181666056315105,60.0,60000.0 +2853,2025-06-05T23:33:00-07:00,22.176665623982746,60.0,60000.0 +2854,2025-06-05T23:34:00-07:00,22.169998168945312,60.0,60000.0 +2855,2025-06-05T23:35:00-07:00,22.17166582743327,60.0,60000.0 +2856,2025-06-05T23:36:00-07:00,22.16666539510091,60.0,60000.0 +2857,2025-06-05T23:37:00-07:00,22.158000183105468,60.0,60000.0 +2858,2025-06-05T23:38:00-07:00,22.14666748046875,60.0,60000.0 +2859,2025-06-05T23:39:00-07:00,22.140000025431316,60.0,60000.0 +2860,2025-06-05T23:40:00-07:00,22.13600082397461,60.0,60000.0 +2861,2025-06-05T23:41:00-07:00,22.131667455037434,60.0,60000.0 +2862,2025-06-05T23:42:00-07:00,22.11833318074544,60.0,60000.0 +2863,2025-06-05T23:43:00-07:00,22.112000274658204,60.0,60000.0 +2864,2025-06-05T23:44:00-07:00,22.10333251953125,60.0,60000.0 +2865,2025-06-05T23:45:00-07:00,22.093332926432293,60.0,60000.0 +2866,2025-06-05T23:46:00-07:00,22.08800048828125,60.0,60000.0 +2867,2025-06-05T23:47:00-07:00,22.08333396911621,60.0,60000.0 +2868,2025-06-05T23:48:00-07:00,22.073333740234375,60.0,60000.0 +2869,2025-06-05T23:49:00-07:00,22.05800094604492,60.0,60000.0 +2870,2025-06-05T23:50:00-07:00,22.05500030517578,60.0,60000.0 +2871,2025-06-05T23:51:00-07:00,22.049999237060547,60.0,60000.0 +2872,2025-06-05T23:52:00-07:00,22.047999572753906,60.0,60000.0 +2873,2025-06-05T23:53:00-07:00,22.048332850138348,60.0,60000.0 +2874,2025-06-05T23:54:00-07:00,22.043333689371746,60.0,60000.0 +2875,2025-06-05T23:55:00-07:00,22.03857203892299,60.0,60000.0 +2876,2025-06-05T23:56:00-07:00,22.0379997253418,60.0,60000.0 +2877,2025-06-05T23:57:00-07:00,22.02833302815755,60.0,60000.0 +2878,2025-06-05T23:58:00-07:00,22.018333435058594,60.0,60000.0 +2879,2025-06-05T23:59:00-07:00,22.015999603271485,60.0,60000.0 +2880,2025-06-06T00:00:00-07:00,22.014999389648438,60.0,60000.0 +2881,2025-06-06T00:01:00-07:00,22.016666412353516,60.0,60000.0 +2882,2025-06-06T00:02:00-07:00,22.0119987487793,60.0,60000.0 +2883,2025-06-06T00:03:00-07:00,22.01166598002116,60.0,60000.0 +2884,2025-06-06T00:04:00-07:00,22.003332773844402,60.0,60000.0 +2885,2025-06-06T00:05:00-07:00,22.00199966430664,60.0,60000.0 +2886,2025-06-06T00:06:00-07:00,21.9950008392334,60.0,60000.0 +2887,2025-06-06T00:07:00-07:00,21.981666564941406,60.0,60000.0 +2888,2025-06-06T00:08:00-07:00,21.977999877929687,60.0,60000.0 +2889,2025-06-06T00:09:00-07:00,21.976666768391926,60.0,60000.0 +2890,2025-06-06T00:10:00-07:00,21.973333994547527,60.0,60000.0 +2891,2025-06-06T00:11:00-07:00,21.970001220703125,60.0,60000.0 +2892,2025-06-06T00:12:00-07:00,21.970000584920246,60.0,60000.0 +2893,2025-06-06T00:13:00-07:00,21.970000584920246,60.0,60000.0 +2894,2025-06-06T00:14:00-07:00,21.9620002746582,60.0,60000.0 +2895,2025-06-06T00:15:00-07:00,21.953333536783855,60.0,60000.0 +2896,2025-06-06T00:16:00-07:00,21.951667149861652,60.0,60000.0 +2897,2025-06-06T00:17:00-07:00,21.94399948120117,60.0,60000.0 +2898,2025-06-06T00:18:00-07:00,21.946666717529297,60.0,60000.0 +2899,2025-06-06T00:19:00-07:00,21.948333740234375,60.0,60000.0 +2900,2025-06-06T00:20:00-07:00,21.945999908447266,60.0,60000.0 +2901,2025-06-06T00:21:00-07:00,21.950000762939453,60.0,60000.0 +2902,2025-06-06T00:22:00-07:00,21.948333740234375,60.0,60000.0 +2903,2025-06-06T00:23:00-07:00,21.948000335693358,60.0,60000.0 +2904,2025-06-06T00:24:00-07:00,21.946666717529297,60.0,60000.0 +2905,2025-06-06T00:25:00-07:00,21.936665852864582,60.0,60000.0 +2906,2025-06-06T00:26:00-07:00,21.931999969482423,60.0,60000.0 +2907,2025-06-06T00:27:00-07:00,21.926666259765625,60.0,60000.0 +2908,2025-06-06T00:28:00-07:00,21.92333221435547,60.0,60000.0 +2909,2025-06-06T00:29:00-07:00,21.919998168945312,60.0,60000.0 +2910,2025-06-06T00:30:00-07:00,21.91499900817871,60.0,60000.0 +2911,2025-06-06T00:31:00-07:00,21.918331782023113,60.0,60000.0 +2912,2025-06-06T00:32:00-07:00,21.90999984741211,60.0,60000.0 +2913,2025-06-06T00:33:00-07:00,21.905000686645508,60.0,60000.0 +2914,2025-06-06T00:34:00-07:00,21.895000457763672,60.0,60000.0 +2915,2025-06-06T00:35:00-07:00,21.891999816894533,60.0,60000.0 +2916,2025-06-06T00:36:00-07:00,21.89000066121419,60.0,60000.0 +2917,2025-06-06T00:37:00-07:00,21.881667455037434,60.0,60000.0 +2918,2025-06-06T00:38:00-07:00,21.87199935913086,60.0,60000.0 +2919,2025-06-06T00:39:00-07:00,21.871665954589844,60.0,60000.0 +2920,2025-06-06T00:40:00-07:00,21.858333587646484,60.0,60000.0 +2921,2025-06-06T00:41:00-07:00,21.847998809814452,60.0,60000.0 +2922,2025-06-06T00:42:00-07:00,21.84166653951009,60.0,60000.0 +2923,2025-06-06T00:43:00-07:00,21.834286825997488,60.0,60000.0 +2924,2025-06-06T00:44:00-07:00,21.83400115966797,60.0,60000.0 +2925,2025-06-06T00:45:00-07:00,21.83000119527181,60.0,60000.0 +2926,2025-06-06T00:46:00-07:00,21.821666717529297,60.0,60000.0 +2927,2025-06-06T00:47:00-07:00,21.810000737508137,60.0,60000.0 +2928,2025-06-06T00:48:00-07:00,21.812001037597657,60.0,60000.0 +2929,2025-06-06T00:49:00-07:00,21.815000534057617,60.0,60000.0 +2930,2025-06-06T00:50:00-07:00,21.810000737508137,60.0,60000.0 +2931,2025-06-06T00:51:00-07:00,21.80800094604492,60.0,60000.0 +2932,2025-06-06T00:52:00-07:00,21.801666259765625,60.0,60000.0 +2933,2025-06-06T00:53:00-07:00,21.791667302449543,60.0,60000.0 +2934,2025-06-06T00:54:00-07:00,21.786000061035157,60.0,60000.0 +2935,2025-06-06T00:55:00-07:00,21.78666623433431,60.0,60000.0 +2936,2025-06-06T00:56:00-07:00,21.786666870117188,60.0,60000.0 +2937,2025-06-06T00:57:00-07:00,21.773999786376955,60.0,60000.0 +2938,2025-06-06T00:58:00-07:00,21.770000457763672,60.0,60000.0 +2939,2025-06-06T00:59:00-07:00,21.765000025431316,60.0,60000.0 +2940,2025-06-06T01:00:00-07:00,21.75,60.0,60000.0 +2941,2025-06-06T01:01:00-07:00,21.7516663869222,60.0,60000.0 +2942,2025-06-06T01:02:00-07:00,21.7450008392334,60.0,60000.0 +2943,2025-06-06T01:03:00-07:00,21.734000396728515,60.0,60000.0 +2944,2025-06-06T01:04:00-07:00,21.731666564941406,60.0,60000.0 +2945,2025-06-06T01:05:00-07:00,21.729999542236328,60.0,60000.0 +2946,2025-06-06T01:06:00-07:00,21.729999542236328,60.0,60000.0 +2947,2025-06-06T01:07:00-07:00,21.72833315531413,60.0,60000.0 +2948,2025-06-06T01:08:00-07:00,21.723333994547527,60.0,60000.0 +2949,2025-06-06T01:09:00-07:00,21.71800079345703,60.0,60000.0 +2950,2025-06-06T01:10:00-07:00,21.71500015258789,60.0,60000.0 +2951,2025-06-06T01:11:00-07:00,21.71500015258789,60.0,60000.0 +2952,2025-06-06T01:12:00-07:00,21.716000366210938,60.0,60000.0 +2953,2025-06-06T01:13:00-07:00,21.706666310628254,60.0,60000.0 +2954,2025-06-06T01:14:00-07:00,21.698333740234375,60.0,60000.0 +2955,2025-06-06T01:15:00-07:00,21.69399948120117,60.0,60000.0 +2956,2025-06-06T01:16:00-07:00,21.691665649414062,60.0,60000.0 +2957,2025-06-06T01:17:00-07:00,21.688332239786785,60.0,60000.0 +2958,2025-06-06T01:18:00-07:00,21.683999633789064,60.0,60000.0 +2959,2025-06-06T01:19:00-07:00,21.684999465942383,60.0,60000.0 +2960,2025-06-06T01:20:00-07:00,21.686665852864582,60.0,60000.0 +2961,2025-06-06T01:21:00-07:00,21.68199920654297,60.0,60000.0 +2962,2025-06-06T01:22:00-07:00,21.676665623982746,60.0,60000.0 +2963,2025-06-06T01:23:00-07:00,21.668331782023113,60.0,60000.0 +2964,2025-06-06T01:24:00-07:00,21.66799850463867,60.0,60000.0 +2965,2025-06-06T01:25:00-07:00,21.66333262125651,60.0,60000.0 +2966,2025-06-06T01:26:00-07:00,21.65999984741211,60.0,60000.0 +2967,2025-06-06T01:27:00-07:00,21.658000183105468,60.0,60000.0 +2968,2025-06-06T01:28:00-07:00,21.656667073567707,60.0,60000.0 +2969,2025-06-06T01:29:00-07:00,21.656667073567707,60.0,60000.0 +2970,2025-06-06T01:30:00-07:00,21.650001525878906,60.0,60000.0 +2971,2025-06-06T01:31:00-07:00,21.645000457763672,60.0,60000.0 +2972,2025-06-06T01:32:00-07:00,21.648334503173828,60.0,60000.0 +2973,2025-06-06T01:33:00-07:00,21.64800109863281,60.0,60000.0 +2974,2025-06-06T01:34:00-07:00,21.635000228881836,60.0,60000.0 +2975,2025-06-06T01:35:00-07:00,21.628334045410156,60.0,60000.0 +2976,2025-06-06T01:36:00-07:00,21.616666158040363,60.0,60000.0 +2977,2025-06-06T01:37:00-07:00,21.612000274658204,60.0,60000.0 +2978,2025-06-06T01:38:00-07:00,21.599998474121094,60.0,60000.0 +2979,2025-06-06T01:39:00-07:00,21.59666570027669,60.0,60000.0 +2980,2025-06-06T01:40:00-07:00,21.593999481201173,60.0,60000.0 +2981,2025-06-06T01:41:00-07:00,21.57714353288923,60.0,60000.0 +2982,2025-06-06T01:42:00-07:00,21.570000330607098,60.0,60000.0 +2983,2025-06-06T01:43:00-07:00,21.562001037597657,60.0,60000.0 +2984,2025-06-06T01:44:00-07:00,21.571667353312176,60.0,60000.0 +2985,2025-06-06T01:45:00-07:00,21.57666778564453,60.0,60000.0 +2986,2025-06-06T01:46:00-07:00,21.56999969482422,60.0,60000.0 +2987,2025-06-06T01:47:00-07:00,21.565000534057617,60.0,60000.0 +2988,2025-06-06T01:48:00-07:00,21.553333282470703,60.0,60000.0 +2989,2025-06-06T01:49:00-07:00,21.55,60.0,60000.0 +2990,2025-06-06T01:50:00-07:00,21.551666259765625,60.0,60000.0 +2991,2025-06-06T01:51:00-07:00,21.546666463216145,60.0,60000.0 +2992,2025-06-06T01:52:00-07:00,21.542000579833985,60.0,60000.0 +2993,2025-06-06T01:53:00-07:00,21.545000076293945,60.0,60000.0 +2994,2025-06-06T01:54:00-07:00,21.545000076293945,60.0,60000.0 +2995,2025-06-06T01:55:00-07:00,21.542000579833985,60.0,60000.0 +2996,2025-06-06T01:56:00-07:00,21.540000915527344,60.0,60000.0 +2997,2025-06-06T01:57:00-07:00,21.543333689371746,60.0,60000.0 +2998,2025-06-06T01:58:00-07:00,21.544000244140626,60.0,60000.0 +2999,2025-06-06T01:59:00-07:00,21.53499984741211,60.0,60000.0 +3000,2025-06-06T02:00:00-07:00,21.526666005452473,60.0,60000.0 +3001,2025-06-06T02:01:00-07:00,21.51399917602539,60.0,60000.0 +3002,2025-06-06T02:02:00-07:00,21.5049991607666,60.0,60000.0 +3003,2025-06-06T02:03:00-07:00,21.4983336130778,60.0,60000.0 +3004,2025-06-06T02:04:00-07:00,21.5,60.0,60000.0 +3005,2025-06-06T02:05:00-07:00,21.4983336130778,60.0,60000.0 +3006,2025-06-06T02:06:00-07:00,21.48666763305664,60.0,60000.0 +3007,2025-06-06T02:07:00-07:00,21.492000579833984,60.0,60000.0 +3008,2025-06-06T02:08:00-07:00,21.5,60.0,60000.0 +3009,2025-06-06T02:09:00-07:00,21.496667226155598,60.0,60000.0 +3010,2025-06-06T02:10:00-07:00,21.484000396728515,60.0,60000.0 +3011,2025-06-06T02:11:00-07:00,21.481666564941406,60.0,60000.0 +3012,2025-06-06T02:12:00-07:00,21.470000584920246,60.0,60000.0 +3013,2025-06-06T02:13:00-07:00,21.476000213623045,60.0,60000.0 +3014,2025-06-06T02:14:00-07:00,21.463333129882812,60.0,60000.0 +3015,2025-06-06T02:15:00-07:00,21.456666310628254,60.0,60000.0 +3016,2025-06-06T02:16:00-07:00,21.455999755859374,60.0,60000.0 +3017,2025-06-06T02:17:00-07:00,21.453333536783855,60.0,60000.0 +3018,2025-06-06T02:18:00-07:00,21.448333104451496,60.0,60000.0 +3019,2025-06-06T02:19:00-07:00,21.444000244140625,60.0,60000.0 +3020,2025-06-06T02:20:00-07:00,21.436665852864582,60.0,60000.0 +3021,2025-06-06T02:21:00-07:00,21.426666895548504,60.0,60000.0 +3022,2025-06-06T02:22:00-07:00,21.41599884033203,60.0,60000.0 +3023,2025-06-06T02:23:00-07:00,21.41166623433431,60.0,60000.0 +3024,2025-06-06T02:24:00-07:00,21.41666539510091,60.0,60000.0 +3025,2025-06-06T02:25:00-07:00,21.41599884033203,60.0,60000.0 +3026,2025-06-06T02:26:00-07:00,21.40833346048991,60.0,60000.0 +3027,2025-06-06T02:27:00-07:00,21.41166623433431,60.0,60000.0 +3028,2025-06-06T02:28:00-07:00,21.40833346048991,60.0,60000.0 +3029,2025-06-06T02:29:00-07:00,21.40400085449219,60.0,60000.0 +3030,2025-06-06T02:30:00-07:00,21.400000890096027,60.0,60000.0 +3031,2025-06-06T02:31:00-07:00,21.393333435058594,60.0,60000.0 +3032,2025-06-06T02:32:00-07:00,21.387999725341796,60.0,60000.0 +3033,2025-06-06T02:33:00-07:00,21.391666412353516,60.0,60000.0 +3034,2025-06-06T02:34:00-07:00,21.38166681925456,60.0,60000.0 +3035,2025-06-06T02:35:00-07:00,21.37199935913086,60.0,60000.0 +3036,2025-06-06T02:36:00-07:00,21.368332544962566,60.0,60000.0 +3037,2025-06-06T02:37:00-07:00,21.363333384195965,60.0,60000.0 +3038,2025-06-06T02:38:00-07:00,21.35999984741211,60.0,60000.0 +3039,2025-06-06T02:39:00-07:00,21.358333587646484,60.0,60000.0 +3040,2025-06-06T02:40:00-07:00,21.356666564941406,60.0,60000.0 +3041,2025-06-06T02:41:00-07:00,21.35399932861328,60.0,60000.0 +3042,2025-06-06T02:42:00-07:00,21.348332087198894,60.0,60000.0 +3043,2025-06-06T02:43:00-07:00,21.344999313354492,60.0,60000.0 +3044,2025-06-06T02:44:00-07:00,21.343999481201173,60.0,60000.0 +3045,2025-06-06T02:45:00-07:00,21.34666570027669,60.0,60000.0 +3046,2025-06-06T02:46:00-07:00,21.34166653951009,60.0,60000.0 +3047,2025-06-06T02:47:00-07:00,21.343999481201173,60.0,60000.0 +3048,2025-06-06T02:48:00-07:00,21.343332926432293,60.0,60000.0 +3049,2025-06-06T02:49:00-07:00,21.34000015258789,60.0,60000.0 +3050,2025-06-06T02:50:00-07:00,21.33200149536133,60.0,60000.0 +3051,2025-06-06T02:51:00-07:00,21.325000762939453,60.0,60000.0 +3052,2025-06-06T02:52:00-07:00,21.323333740234375,60.0,60000.0 +3053,2025-06-06T02:53:00-07:00,21.318000030517577,60.0,60000.0 +3054,2025-06-06T02:54:00-07:00,21.311667760213215,60.0,60000.0 +3055,2025-06-06T02:55:00-07:00,21.31166712443034,60.0,60000.0 +3056,2025-06-06T02:56:00-07:00,21.310000610351562,60.0,60000.0 +3057,2025-06-06T02:57:00-07:00,21.313334147135418,60.0,60000.0 +3058,2025-06-06T02:58:00-07:00,21.30500030517578,60.0,60000.0 +3059,2025-06-06T02:59:00-07:00,21.297999572753906,60.0,60000.0 +3060,2025-06-06T03:00:00-07:00,21.296666463216145,60.0,60000.0 +3061,2025-06-06T03:01:00-07:00,21.299999237060547,60.0,60000.0 +3062,2025-06-06T03:02:00-07:00,21.297999572753906,60.0,60000.0 +3063,2025-06-06T03:03:00-07:00,21.296666463216145,60.0,60000.0 +3064,2025-06-06T03:04:00-07:00,21.28333282470703,60.0,60000.0 +3065,2025-06-06T03:05:00-07:00,21.275999450683592,60.0,60000.0 +3066,2025-06-06T03:06:00-07:00,21.273333231608074,60.0,60000.0 +3067,2025-06-06T03:07:00-07:00,21.268332799275715,60.0,60000.0 +3068,2025-06-06T03:08:00-07:00,21.26399917602539,60.0,60000.0 +3069,2025-06-06T03:09:00-07:00,21.264999389648438,60.0,60000.0 +3070,2025-06-06T03:10:00-07:00,21.26333236694336,60.0,60000.0 +3071,2025-06-06T03:11:00-07:00,21.26399917602539,60.0,60000.0 +3072,2025-06-06T03:12:00-07:00,21.264999389648438,60.0,60000.0 +3073,2025-06-06T03:13:00-07:00,21.268333435058594,60.0,60000.0 +3074,2025-06-06T03:14:00-07:00,21.270000457763672,60.0,60000.0 +3075,2025-06-06T03:15:00-07:00,21.26399917602539,60.0,60000.0 +3076,2025-06-06T03:16:00-07:00,21.2516663869222,60.0,60000.0 +3077,2025-06-06T03:17:00-07:00,21.2483336130778,60.0,60000.0 +3078,2025-06-06T03:18:00-07:00,21.246000671386717,60.0,60000.0 +3079,2025-06-06T03:19:00-07:00,21.253332773844402,60.0,60000.0 +3080,2025-06-06T03:20:00-07:00,21.259998957316082,60.0,60000.0 +3081,2025-06-06T03:21:00-07:00,21.25599899291992,60.0,60000.0 +3082,2025-06-06T03:22:00-07:00,21.2549991607666,60.0,60000.0 +3083,2025-06-06T03:23:00-07:00,21.2483336130778,60.0,60000.0 +3084,2025-06-06T03:24:00-07:00,21.2450008392334,60.0,60000.0 +3085,2025-06-06T03:25:00-07:00,21.246667226155598,60.0,60000.0 +3086,2025-06-06T03:26:00-07:00,21.241668065388996,60.0,60000.0 +3087,2025-06-06T03:27:00-07:00,21.2380012512207,60.0,60000.0 +3088,2025-06-06T03:28:00-07:00,21.24166742960612,60.0,60000.0 +3089,2025-06-06T03:29:00-07:00,21.23833465576172,60.0,60000.0 +3090,2025-06-06T03:30:00-07:00,21.231999969482423,60.0,60000.0 +3091,2025-06-06T03:31:00-07:00,21.233333587646484,60.0,60000.0 +3092,2025-06-06T03:32:00-07:00,21.240001678466797,60.0,60000.0 +3093,2025-06-06T03:33:00-07:00,21.2380012512207,60.0,60000.0 +3094,2025-06-06T03:34:00-07:00,21.235000610351562,60.0,60000.0 +3095,2025-06-06T03:35:00-07:00,21.240001678466797,60.0,60000.0 +3096,2025-06-06T03:36:00-07:00,21.242001342773438,60.0,60000.0 +3097,2025-06-06T03:37:00-07:00,21.25,60.0,60000.0 +3098,2025-06-06T03:38:00-07:00,21.26166598002116,60.0,60000.0 +3099,2025-06-06T03:39:00-07:00,21.25599899291992,60.0,60000.0 +3100,2025-06-06T03:40:00-07:00,21.2516663869222,60.0,60000.0 +3101,2025-06-06T03:41:00-07:00,21.2483336130778,60.0,60000.0 +3102,2025-06-06T03:42:00-07:00,21.242001342773438,60.0,60000.0 +3103,2025-06-06T03:43:00-07:00,21.2433344523112,60.0,60000.0 +3104,2025-06-06T03:44:00-07:00,21.2516663869222,60.0,60000.0 +3105,2025-06-06T03:45:00-07:00,21.24800033569336,60.0,60000.0 +3106,2025-06-06T03:46:00-07:00,21.241668065388996,60.0,60000.0 +3107,2025-06-06T03:47:00-07:00,21.235000610351562,60.0,60000.0 +3108,2025-06-06T03:48:00-07:00,21.231999969482423,60.0,60000.0 +3109,2025-06-06T03:49:00-07:00,21.21666653951009,60.0,60000.0 +3110,2025-06-06T03:50:00-07:00,21.209999720255535,60.0,60000.0 +3111,2025-06-06T03:51:00-07:00,21.205999755859374,60.0,60000.0 +3112,2025-06-06T03:52:00-07:00,21.19333330790202,60.0,60000.0 +3113,2025-06-06T03:53:00-07:00,21.183333079020183,60.0,60000.0 +3114,2025-06-06T03:54:00-07:00,21.18000030517578,60.0,60000.0 +3115,2025-06-06T03:55:00-07:00,21.169998168945312,60.0,60000.0 +3116,2025-06-06T03:56:00-07:00,21.15833346048991,60.0,60000.0 +3117,2025-06-06T03:57:00-07:00,21.14800109863281,60.0,60000.0 +3118,2025-06-06T03:58:00-07:00,21.138333002726238,60.0,60000.0 +3119,2025-06-06T03:59:00-07:00,21.138333002726238,60.0,60000.0 +3120,2025-06-06T04:00:00-07:00,21.13000030517578,60.0,60000.0 +3121,2025-06-06T04:01:00-07:00,21.125,60.0,60000.0 +3122,2025-06-06T04:02:00-07:00,21.126667022705078,60.0,60000.0 +3123,2025-06-06T04:03:00-07:00,21.118332544962566,60.0,60000.0 +3124,2025-06-06T04:04:00-07:00,21.112000274658204,60.0,60000.0 +3125,2025-06-06T04:05:00-07:00,21.11833318074544,60.0,60000.0 +3126,2025-06-06T04:06:00-07:00,21.116666158040363,60.0,60000.0 +3127,2025-06-06T04:07:00-07:00,21.110000610351562,60.0,60000.0 +3128,2025-06-06T04:08:00-07:00,21.104999542236328,60.0,60000.0 +3129,2025-06-06T04:09:00-07:00,21.09666570027669,60.0,60000.0 +3130,2025-06-06T04:10:00-07:00,21.09599914550781,60.0,60000.0 +3131,2025-06-06T04:11:00-07:00,21.099998474121094,60.0,60000.0 +3132,2025-06-06T04:12:00-07:00,21.099998474121094,60.0,60000.0 +3133,2025-06-06T04:13:00-07:00,21.09599914550781,60.0,60000.0 +3134,2025-06-06T04:14:00-07:00,21.094999313354492,60.0,60000.0 +3135,2025-06-06T04:15:00-07:00,21.09166653951009,60.0,60000.0 +3136,2025-06-06T04:16:00-07:00,21.091999816894532,60.0,60000.0 +3137,2025-06-06T04:17:00-07:00,21.08666737874349,60.0,60000.0 +3138,2025-06-06T04:18:00-07:00,21.08500099182129,60.0,60000.0 +3139,2025-06-06T04:19:00-07:00,21.078001403808592,60.0,60000.0 +3140,2025-06-06T04:20:00-07:00,21.06999969482422,60.0,60000.0 +3141,2025-06-06T04:21:00-07:00,21.06166712443034,60.0,60000.0 +3142,2025-06-06T04:22:00-07:00,21.05800094604492,60.0,60000.0 +3143,2025-06-06T04:23:00-07:00,21.048332850138348,60.0,60000.0 +3144,2025-06-06T04:24:00-07:00,21.043333689371746,60.0,60000.0 +3145,2025-06-06T04:25:00-07:00,21.03800048828125,60.0,60000.0 +3146,2025-06-06T04:26:00-07:00,21.031665802001953,60.0,60000.0 +3147,2025-06-06T04:27:00-07:00,21.023333231608074,60.0,60000.0 +3148,2025-06-06T04:28:00-07:00,21.0119987487793,60.0,60000.0 +3149,2025-06-06T04:29:00-07:00,21.01166534423828,60.0,60000.0 +3150,2025-06-06T04:30:00-07:00,21.008331934611004,60.0,60000.0 +3151,2025-06-06T04:31:00-07:00,21.00599899291992,60.0,60000.0 +3152,2025-06-06T04:32:00-07:00,21.009998321533203,60.0,60000.0 +3153,2025-06-06T04:33:00-07:00,21.0016663869222,60.0,60000.0 +3154,2025-06-06T04:34:00-07:00,21.0,60.0,60000.0 +3155,2025-06-06T04:35:00-07:00,20.990001678466797,60.0,60000.0 +3156,2025-06-06T04:36:00-07:00,20.98666763305664,60.0,60000.0 +3157,2025-06-06T04:37:00-07:00,20.979999542236328,60.0,60000.0 +3158,2025-06-06T04:38:00-07:00,20.976666768391926,60.0,60000.0 +3159,2025-06-06T04:39:00-07:00,20.968333562215168,60.0,60000.0 +3160,2025-06-06T04:40:00-07:00,20.96800079345703,60.0,60000.0 +3161,2025-06-06T04:41:00-07:00,20.956666946411133,60.0,60000.0 +3162,2025-06-06T04:42:00-07:00,20.954999923706055,60.0,60000.0 +3163,2025-06-06T04:43:00-07:00,20.954000091552736,60.0,60000.0 +3164,2025-06-06T04:44:00-07:00,20.948333740234375,60.0,60000.0 +3165,2025-06-06T04:45:00-07:00,20.94499969482422,60.0,60000.0 +3166,2025-06-06T04:46:00-07:00,20.937999725341797,60.0,60000.0 +3167,2025-06-06T04:47:00-07:00,20.933333079020183,60.0,60000.0 +3168,2025-06-06T04:48:00-07:00,20.928332646687824,60.0,60000.0 +3169,2025-06-06T04:49:00-07:00,20.921998596191408,60.0,60000.0 +3170,2025-06-06T04:50:00-07:00,20.92166519165039,60.0,60000.0 +3171,2025-06-06T04:51:00-07:00,20.90999984741211,60.0,60000.0 +3172,2025-06-06T04:52:00-07:00,20.90999984741211,60.0,60000.0 +3173,2025-06-06T04:53:00-07:00,20.91333262125651,60.0,60000.0 +3174,2025-06-06T04:54:00-07:00,20.90833346048991,60.0,60000.0 +3175,2025-06-06T04:55:00-07:00,20.89800033569336,60.0,60000.0 +3176,2025-06-06T04:56:00-07:00,20.891666412353516,60.0,60000.0 +3177,2025-06-06T04:57:00-07:00,20.890000025431316,60.0,60000.0 +3178,2025-06-06T04:58:00-07:00,20.891999816894533,60.0,60000.0 +3179,2025-06-06T04:59:00-07:00,20.886666615804035,60.0,60000.0 +3180,2025-06-06T05:00:00-07:00,20.891666412353516,60.0,60000.0 +3181,2025-06-06T05:01:00-07:00,20.888333002726238,60.0,60000.0 +3182,2025-06-06T05:02:00-07:00,20.889999389648438,60.0,60000.0 +3183,2025-06-06T05:03:00-07:00,20.885000228881836,60.0,60000.0 +3184,2025-06-06T05:04:00-07:00,20.888333002726238,60.0,60000.0 +3185,2025-06-06T05:05:00-07:00,20.887999725341796,60.0,60000.0 +3186,2025-06-06T05:06:00-07:00,20.87999979654948,60.0,60000.0 +3187,2025-06-06T05:07:00-07:00,20.878334045410156,60.0,60000.0 +3188,2025-06-06T05:08:00-07:00,20.87800064086914,60.0,60000.0 +3189,2025-06-06T05:09:00-07:00,20.86833318074544,60.0,60000.0 +3190,2025-06-06T05:10:00-07:00,20.863333384195965,60.0,60000.0 +3191,2025-06-06T05:11:00-07:00,20.85399932861328,60.0,60000.0 +3192,2025-06-06T05:12:00-07:00,20.843332926432293,60.0,60000.0 +3193,2025-06-06T05:13:00-07:00,20.844999313354492,60.0,60000.0 +3194,2025-06-06T05:14:00-07:00,20.855999755859376,60.0,60000.0 +3195,2025-06-06T05:15:00-07:00,20.844999313354492,60.0,60000.0 +3196,2025-06-06T05:16:00-07:00,20.843332926432293,60.0,60000.0 +3197,2025-06-06T05:17:00-07:00,20.83400115966797,60.0,60000.0 +3198,2025-06-06T05:18:00-07:00,20.82666778564453,60.0,60000.0 +3199,2025-06-06T05:19:00-07:00,20.81999969482422,60.0,60000.0 +3200,2025-06-06T05:20:00-07:00,20.81800079345703,60.0,60000.0 +3201,2025-06-06T05:21:00-07:00,20.821666717529297,60.0,60000.0 +3202,2025-06-06T05:22:00-07:00,20.813334147135418,60.0,60000.0 +3203,2025-06-06T05:23:00-07:00,20.804000091552734,60.0,60000.0 +3204,2025-06-06T05:24:00-07:00,20.801666259765625,60.0,60000.0 +3205,2025-06-06T05:25:00-07:00,20.80500030517578,60.0,60000.0 +3206,2025-06-06T05:26:00-07:00,20.792000579833985,60.0,60000.0 +3207,2025-06-06T05:27:00-07:00,20.795000076293945,60.0,60000.0 +3208,2025-06-06T05:28:00-07:00,20.796666463216145,60.0,60000.0 +3209,2025-06-06T05:29:00-07:00,20.792000579833985,60.0,60000.0 +3210,2025-06-06T05:30:00-07:00,20.786666870117188,60.0,60000.0 +3211,2025-06-06T05:31:00-07:00,20.78499921162923,60.0,60000.0 +3212,2025-06-06T05:32:00-07:00,20.775999450683592,60.0,60000.0 +3213,2025-06-06T05:33:00-07:00,20.771666208902996,60.0,60000.0 +3214,2025-06-06T05:34:00-07:00,20.76166534423828,60.0,60000.0 +3215,2025-06-06T05:35:00-07:00,20.76599884033203,60.0,60000.0 +3216,2025-06-06T05:36:00-07:00,20.758331934611004,60.0,60000.0 +3217,2025-06-06T05:37:00-07:00,20.764999389648438,60.0,60000.0 +3218,2025-06-06T05:38:00-07:00,20.7619987487793,60.0,60000.0 +3219,2025-06-06T05:39:00-07:00,20.76166534423828,60.0,60000.0 +3220,2025-06-06T05:40:00-07:00,20.758331934611004,60.0,60000.0 +3221,2025-06-06T05:41:00-07:00,20.75599899291992,60.0,60000.0 +3222,2025-06-06T05:42:00-07:00,20.746667226155598,60.0,60000.0 +3223,2025-06-06T05:43:00-07:00,20.740001042683918,60.0,60000.0 +3224,2025-06-06T05:44:00-07:00,20.73600082397461,60.0,60000.0 +3225,2025-06-06T05:45:00-07:00,20.733334223429363,60.0,60000.0 +3226,2025-06-06T05:46:00-07:00,20.728334426879883,60.0,60000.0 +3227,2025-06-06T05:47:00-07:00,20.726000213623045,60.0,60000.0 +3228,2025-06-06T05:48:00-07:00,20.733333587646484,60.0,60000.0 +3229,2025-06-06T05:49:00-07:00,20.73666763305664,60.0,60000.0 +3230,2025-06-06T05:50:00-07:00,20.730000305175782,60.0,60000.0 +3231,2025-06-06T05:51:00-07:00,20.725000381469727,60.0,60000.0 +3232,2025-06-06T05:52:00-07:00,20.723333994547527,60.0,60000.0 +3233,2025-06-06T05:53:00-07:00,20.720001220703125,60.0,60000.0 +3234,2025-06-06T05:54:00-07:00,20.71666717529297,60.0,60000.0 +3235,2025-06-06T05:55:00-07:00,20.711666107177734,60.0,60000.0 +3236,2025-06-06T05:56:00-07:00,20.707999420166015,60.0,60000.0 +3237,2025-06-06T05:57:00-07:00,20.706666310628254,60.0,60000.0 +3238,2025-06-06T05:58:00-07:00,20.701667149861652,60.0,60000.0 +3239,2025-06-06T05:59:00-07:00,20.700000762939453,60.0,60000.0 +3240,2025-06-06T06:00:00-07:00,20.69499969482422,60.0,60000.0 +3241,2025-06-06T06:01:00-07:00,20.69333267211914,60.0,60000.0 +3242,2025-06-06T06:02:00-07:00,20.691665649414062,60.0,60000.0 +3243,2025-06-06T06:03:00-07:00,20.69399948120117,60.0,60000.0 +3244,2025-06-06T06:04:00-07:00,20.69333267211914,60.0,60000.0 +3245,2025-06-06T06:05:00-07:00,20.683332443237305,60.0,60000.0 +3246,2025-06-06T06:06:00-07:00,20.677999877929686,60.0,60000.0 +3247,2025-06-06T06:07:00-07:00,20.67333221435547,60.0,60000.0 +3248,2025-06-06T06:08:00-07:00,20.66499900817871,60.0,60000.0 +3249,2025-06-06T06:09:00-07:00,20.65999984741211,60.0,60000.0 +3250,2025-06-06T06:10:00-07:00,20.655000686645508,60.0,60000.0 +3251,2025-06-06T06:11:00-07:00,20.65333429972331,60.0,60000.0 +3252,2025-06-06T06:12:00-07:00,20.650001525878906,60.0,60000.0 +3253,2025-06-06T06:13:00-07:00,20.64666684468587,60.0,60000.0 +3254,2025-06-06T06:14:00-07:00,20.650001525878906,60.0,60000.0 +3255,2025-06-06T06:15:00-07:00,20.64600067138672,60.0,60000.0 +3256,2025-06-06T06:16:00-07:00,20.639999389648438,60.0,60000.0 +3257,2025-06-06T06:17:00-07:00,20.638333002726238,60.0,60000.0 +3258,2025-06-06T06:18:00-07:00,20.64600067138672,60.0,60000.0 +3259,2025-06-06T06:19:00-07:00,20.641667048136394,60.0,60000.0 +3260,2025-06-06T06:20:00-07:00,20.643333435058594,60.0,60000.0 +3261,2025-06-06T06:21:00-07:00,20.644000244140624,60.0,60000.0 +3262,2025-06-06T06:22:00-07:00,20.641667048136394,60.0,60000.0 +3263,2025-06-06T06:23:00-07:00,20.640000025431316,60.0,60000.0 +3264,2025-06-06T06:24:00-07:00,20.631999969482422,60.0,60000.0 +3265,2025-06-06T06:25:00-07:00,20.626667022705078,60.0,60000.0 +3266,2025-06-06T06:26:00-07:00,20.623332977294922,60.0,60000.0 +3267,2025-06-06T06:27:00-07:00,20.617999267578124,60.0,60000.0 +3268,2025-06-06T06:28:00-07:00,20.613333384195965,60.0,60000.0 +3269,2025-06-06T06:29:00-07:00,20.614999771118164,60.0,60000.0 +3270,2025-06-06T06:30:00-07:00,20.613999938964845,60.0,60000.0 +3271,2025-06-06T06:31:00-07:00,20.613333384195965,60.0,60000.0 +3272,2025-06-06T06:32:00-07:00,20.616666158040363,60.0,60000.0 +3273,2025-06-06T06:33:00-07:00,20.613999938964845,60.0,60000.0 +3274,2025-06-06T06:34:00-07:00,20.609999974568684,60.0,60000.0 +3275,2025-06-06T06:35:00-07:00,20.606666564941406,60.0,60000.0 +3276,2025-06-06T06:36:00-07:00,20.612000274658204,60.0,60000.0 +3277,2025-06-06T06:37:00-07:00,20.599998474121094,60.0,60000.0 +3278,2025-06-06T06:38:00-07:00,20.599998474121094,60.0,60000.0 +3279,2025-06-06T06:39:00-07:00,20.586000823974608,60.0,60000.0 +3280,2025-06-06T06:40:00-07:00,20.58333460489909,60.0,60000.0 +3281,2025-06-06T06:41:00-07:00,20.58500099182129,60.0,60000.0 +3282,2025-06-06T06:42:00-07:00,20.586000823974608,60.0,60000.0 +3283,2025-06-06T06:43:00-07:00,20.573333740234375,60.0,60000.0 +3284,2025-06-06T06:44:00-07:00,20.573333740234375,60.0,60000.0 +3285,2025-06-06T06:45:00-07:00,20.574000549316406,60.0,60000.0 +3286,2025-06-06T06:46:00-07:00,20.573333740234375,60.0,60000.0 +3287,2025-06-06T06:47:00-07:00,20.581668217976887,60.0,60000.0 +3288,2025-06-06T06:48:00-07:00,20.5760009765625,60.0,60000.0 +3289,2025-06-06T06:49:00-07:00,20.575000762939453,60.0,60000.0 +3290,2025-06-06T06:50:00-07:00,20.56833330790202,60.0,60000.0 +3291,2025-06-06T06:51:00-07:00,20.566000366210936,60.0,60000.0 +3292,2025-06-06T06:52:00-07:00,20.563334147135418,60.0,60000.0 +3293,2025-06-06T06:53:00-07:00,20.56499989827474,60.0,60000.0 +3294,2025-06-06T06:54:00-07:00,20.562001037597657,60.0,60000.0 +3295,2025-06-06T06:55:00-07:00,20.55666732788086,60.0,60000.0 +3296,2025-06-06T06:56:00-07:00,20.553333918253582,60.0,60000.0 +3297,2025-06-06T06:57:00-07:00,20.545999908447264,60.0,60000.0 +3298,2025-06-06T06:58:00-07:00,20.549999872843426,60.0,60000.0 +3299,2025-06-06T06:59:00-07:00,20.551666259765625,60.0,60000.0 +3300,2025-06-06T07:00:00-07:00,20.547999572753906,60.0,60000.0 +3301,2025-06-06T07:01:00-07:00,20.545000076293945,60.0,60000.0 +3302,2025-06-06T07:02:00-07:00,20.540000915527344,60.0,60000.0 +3303,2025-06-06T07:03:00-07:00,20.544000244140626,60.0,60000.0 +3304,2025-06-06T07:04:00-07:00,20.548333485921223,60.0,60000.0 +3305,2025-06-06T07:05:00-07:00,20.536666870117188,60.0,60000.0 +3306,2025-06-06T07:06:00-07:00,20.536000061035157,60.0,60000.0 +3307,2025-06-06T07:07:00-07:00,20.531665802001953,60.0,60000.0 +3308,2025-06-06T07:08:00-07:00,20.526666005452473,60.0,60000.0 +3309,2025-06-06T07:09:00-07:00,20.522000122070313,60.0,60000.0 +3310,2025-06-06T07:10:00-07:00,20.523333231608074,60.0,60000.0 +3311,2025-06-06T07:11:00-07:00,20.518333435058594,60.0,60000.0 +3312,2025-06-06T07:12:00-07:00,20.525999450683592,60.0,60000.0 +3313,2025-06-06T07:13:00-07:00,20.529998779296875,60.0,60000.0 +3314,2025-06-06T07:14:00-07:00,20.529999415079754,60.0,60000.0 +3315,2025-06-06T07:15:00-07:00,20.523999786376955,60.0,60000.0 +3316,2025-06-06T07:16:00-07:00,20.514999389648438,60.0,60000.0 +3317,2025-06-06T07:17:00-07:00,20.509998957316082,60.0,60000.0 +3318,2025-06-06T07:18:00-07:00,20.51166534423828,60.0,60000.0 +3319,2025-06-06T07:19:00-07:00,20.509998321533203,60.0,60000.0 +3320,2025-06-06T07:20:00-07:00,20.51166534423828,60.0,60000.0 +3321,2025-06-06T07:21:00-07:00,20.509998321533203,60.0,60000.0 +3322,2025-06-06T07:22:00-07:00,20.5119987487793,60.0,60000.0 +3323,2025-06-06T07:23:00-07:00,20.51166534423828,60.0,60000.0 +3324,2025-06-06T07:24:00-07:00,20.51166534423828,60.0,60000.0 +3325,2025-06-06T07:25:00-07:00,20.503999328613283,60.0,60000.0 +3326,2025-06-06T07:26:00-07:00,20.5049991607666,60.0,60000.0 +3327,2025-06-06T07:27:00-07:00,20.509998321533203,60.0,60000.0 +3328,2025-06-06T07:28:00-07:00,20.5119987487793,60.0,60000.0 +3329,2025-06-06T07:29:00-07:00,20.50833257039388,60.0,60000.0 +3330,2025-06-06T07:30:00-07:00,20.520000457763672,60.0,60000.0 +3331,2025-06-06T07:31:00-07:00,20.523999786376955,60.0,60000.0 +3332,2025-06-06T07:32:00-07:00,20.528332392374676,60.0,60000.0 +3333,2025-06-06T07:33:00-07:00,20.52166684468587,60.0,60000.0 +3334,2025-06-06T07:34:00-07:00,20.51399917602539,60.0,60000.0 +3335,2025-06-06T07:35:00-07:00,20.508331934611004,60.0,60000.0 +3336,2025-06-06T07:36:00-07:00,20.503332773844402,60.0,60000.0 +3337,2025-06-06T07:37:00-07:00,20.5,60.0,60000.0 +3338,2025-06-06T07:38:00-07:00,20.4933344523112,60.0,60000.0 +3339,2025-06-06T07:39:00-07:00,20.490001042683918,60.0,60000.0 +3340,2025-06-06T07:40:00-07:00,20.481999969482423,60.0,60000.0 +3341,2025-06-06T07:41:00-07:00,20.47833315531413,60.0,60000.0 +3342,2025-06-06T07:42:00-07:00,20.480000178019207,60.0,60000.0 +3343,2025-06-06T07:43:00-07:00,20.479999542236328,60.0,60000.0 +3344,2025-06-06T07:44:00-07:00,20.483333587646484,60.0,60000.0 +3345,2025-06-06T07:45:00-07:00,20.48833465576172,60.0,60000.0 +3346,2025-06-06T07:46:00-07:00,20.492001342773438,60.0,60000.0 +3347,2025-06-06T07:47:00-07:00,20.491668065388996,60.0,60000.0 +3348,2025-06-06T07:48:00-07:00,20.4983336130778,60.0,60000.0 +3349,2025-06-06T07:49:00-07:00,20.496000671386717,60.0,60000.0 +3350,2025-06-06T07:50:00-07:00,20.4983336130778,60.0,60000.0 +3351,2025-06-06T07:51:00-07:00,20.48833465576172,60.0,60000.0 +3352,2025-06-06T07:52:00-07:00,20.48600082397461,60.0,60000.0 +3353,2025-06-06T07:53:00-07:00,20.479999542236328,60.0,60000.0 +3354,2025-06-06T07:54:00-07:00,20.475000381469727,60.0,60000.0 +3355,2025-06-06T07:55:00-07:00,20.479999542236328,60.0,60000.0 +3356,2025-06-06T07:56:00-07:00,20.47833315531413,60.0,60000.0 +3357,2025-06-06T07:57:00-07:00,20.471667607625324,60.0,60000.0 +3358,2025-06-06T07:58:00-07:00,20.472000885009766,60.0,60000.0 +3359,2025-06-06T07:59:00-07:00,20.46666717529297,60.0,60000.0 +3360,2025-06-06T08:00:00-07:00,20.46666717529297,60.0,60000.0 +3361,2025-06-06T08:01:00-07:00,20.466000366210938,60.0,60000.0 +3362,2025-06-06T08:02:00-07:00,20.459999084472656,60.0,60000.0 +3363,2025-06-06T08:03:00-07:00,20.463333129882812,60.0,60000.0 +3364,2025-06-06T08:04:00-07:00,20.46199951171875,60.0,60000.0 +3365,2025-06-06T08:05:00-07:00,20.46666717529297,60.0,60000.0 +3366,2025-06-06T08:06:00-07:00,20.470001220703125,60.0,60000.0 +3367,2025-06-06T08:07:00-07:00,20.463999938964843,60.0,60000.0 +3368,2025-06-06T08:08:00-07:00,20.468334197998047,60.0,60000.0 +3369,2025-06-06T08:09:00-07:00,20.46666717529297,60.0,60000.0 +3370,2025-06-06T08:10:00-07:00,20.46800079345703,60.0,60000.0 +3371,2025-06-06T08:11:00-07:00,20.468334197998047,60.0,60000.0 +3372,2025-06-06T08:12:00-07:00,20.46666717529297,60.0,60000.0 +3373,2025-06-06T08:13:00-07:00,20.46199951171875,60.0,60000.0 +3374,2025-06-06T08:14:00-07:00,20.46500015258789,60.0,60000.0 +3375,2025-06-06T08:15:00-07:00,20.470001220703125,60.0,60000.0 +3376,2025-06-06T08:16:00-07:00,20.46800079345703,60.0,60000.0 +3377,2025-06-06T08:17:00-07:00,20.475000381469727,60.0,60000.0 +3378,2025-06-06T08:18:00-07:00,20.475001017252605,60.0,60000.0 +3379,2025-06-06T08:19:00-07:00,20.472000885009766,60.0,60000.0 +3380,2025-06-06T08:20:00-07:00,20.471667607625324,60.0,60000.0 +3381,2025-06-06T08:21:00-07:00,20.471667607625324,60.0,60000.0 +3382,2025-06-06T08:22:00-07:00,20.470001220703125,60.0,60000.0 +3383,2025-06-06T08:23:00-07:00,20.475714547293528,60.0,60000.0 +3384,2025-06-06T08:24:00-07:00,20.471667607625324,60.0,60000.0 +3385,2025-06-06T08:25:00-07:00,20.472000122070312,60.0,60000.0 +3386,2025-06-06T08:26:00-07:00,20.473333994547527,60.0,60000.0 +3387,2025-06-06T08:27:00-07:00,20.471667607625324,60.0,60000.0 +3388,2025-06-06T08:28:00-07:00,20.47000045776367,60.0,60000.0 +3389,2025-06-06T08:29:00-07:00,20.46857234409877,60.0,60000.0 +3390,2025-06-06T08:30:00-07:00,20.463333129882812,60.0,60000.0 +3391,2025-06-06T08:31:00-07:00,20.461666107177734,60.0,60000.0 +3392,2025-06-06T08:32:00-07:00,20.454000091552736,60.0,60000.0 +3393,2025-06-06T08:33:00-07:00,20.453333536783855,60.0,60000.0 +3394,2025-06-06T08:34:00-07:00,20.451667149861652,60.0,60000.0 +3395,2025-06-06T08:35:00-07:00,20.452000427246094,60.0,60000.0 +3396,2025-06-06T08:36:00-07:00,20.453333536783855,60.0,60000.0 +3397,2025-06-06T08:37:00-07:00,20.456666310628254,60.0,60000.0 +3398,2025-06-06T08:38:00-07:00,20.459999084472656,60.0,60000.0 +3399,2025-06-06T08:39:00-07:00,20.454999923706055,60.0,60000.0 +3400,2025-06-06T08:40:00-07:00,20.453333536783855,60.0,60000.0 +3401,2025-06-06T08:41:00-07:00,20.452000427246094,60.0,60000.0 +3402,2025-06-06T08:42:00-07:00,20.448333740234375,60.0,60000.0 +3403,2025-06-06T08:43:00-07:00,20.44499969482422,60.0,60000.0 +3404,2025-06-06T08:44:00-07:00,20.450000762939453,60.0,60000.0 +3405,2025-06-06T08:45:00-07:00,20.458332697550457,60.0,60000.0 +3406,2025-06-06T08:46:00-07:00,20.454999923706055,60.0,60000.0 +3407,2025-06-06T08:47:00-07:00,20.448000335693358,60.0,60000.0 +3408,2025-06-06T08:48:00-07:00,20.451667149861652,60.0,60000.0 +3409,2025-06-06T08:49:00-07:00,20.448333740234375,60.0,60000.0 +3410,2025-06-06T08:50:00-07:00,20.44199905395508,60.0,60000.0 +3411,2025-06-06T08:51:00-07:00,20.44166628519694,60.0,60000.0 +3412,2025-06-06T08:52:00-07:00,20.441665649414062,60.0,60000.0 +3413,2025-06-06T08:53:00-07:00,20.437998962402343,60.0,60000.0 +3414,2025-06-06T08:54:00-07:00,20.429999033610027,60.0,60000.0 +3415,2025-06-06T08:55:00-07:00,20.41999880472819,60.0,60000.0 +3416,2025-06-06T08:56:00-07:00,20.429999542236327,60.0,60000.0 +3417,2025-06-06T08:57:00-07:00,20.438332239786785,60.0,60000.0 +3418,2025-06-06T08:58:00-07:00,20.44333267211914,60.0,60000.0 +3419,2025-06-06T08:59:00-07:00,20.445999145507812,60.0,60000.0 +3420,2025-06-06T09:00:00-07:00,20.44499969482422,60.0,60000.0 +3421,2025-06-06T09:01:00-07:00,20.446666081746418,60.0,60000.0 +3422,2025-06-06T09:02:00-07:00,20.450000762939453,60.0,60000.0 +3423,2025-06-06T09:03:00-07:00,20.46500015258789,60.0,60000.0 +3424,2025-06-06T09:04:00-07:00,20.47833315531413,60.0,60000.0 +3425,2025-06-06T09:05:00-07:00,20.49000015258789,60.0,60000.0 +3426,2025-06-06T09:06:00-07:00,20.509999593098957,60.0,60000.0 +3427,2025-06-06T09:07:00-07:00,20.53333282470703,60.0,60000.0 +3428,2025-06-06T09:08:00-07:00,20.55,60.0,60000.0 +3429,2025-06-06T09:09:00-07:00,20.563334147135418,60.0,60000.0 +3430,2025-06-06T09:10:00-07:00,20.57833417256673,60.0,60000.0 +3431,2025-06-06T09:11:00-07:00,20.59599914550781,60.0,60000.0 +3432,2025-06-06T09:12:00-07:00,20.60333251953125,60.0,60000.0 +3433,2025-06-06T09:13:00-07:00,20.60999933878581,60.0,60000.0 +3434,2025-06-06T09:14:00-07:00,20.618000030517578,60.0,60000.0 +3435,2025-06-06T09:15:00-07:00,20.621665954589844,60.0,60000.0 +3436,2025-06-06T09:16:00-07:00,20.633333206176758,60.0,60000.0 +3437,2025-06-06T09:17:00-07:00,20.656000518798827,60.0,60000.0 +3438,2025-06-06T09:18:00-07:00,20.681666056315105,60.0,60000.0 +3439,2025-06-06T09:19:00-07:00,20.69499969482422,60.0,60000.0 +3440,2025-06-06T09:20:00-07:00,20.704000091552736,60.0,60000.0 +3441,2025-06-06T09:21:00-07:00,20.709999720255535,60.0,60000.0 +3442,2025-06-06T09:22:00-07:00,20.72166697184245,60.0,60000.0 +3443,2025-06-06T09:23:00-07:00,20.742000579833984,60.0,60000.0 +3444,2025-06-06T09:24:00-07:00,20.76333236694336,60.0,60000.0 +3445,2025-06-06T09:25:00-07:00,20.78499984741211,60.0,60000.0 +3446,2025-06-06T09:26:00-07:00,20.78800048828125,60.0,60000.0 +3447,2025-06-06T09:27:00-07:00,20.778332392374676,60.0,60000.0 +3448,2025-06-06T09:28:00-07:00,20.78499984741211,60.0,60000.0 +3449,2025-06-06T09:29:00-07:00,20.795999908447264,60.0,60000.0 +3450,2025-06-06T09:30:00-07:00,20.778332392374676,60.0,60000.0 +3451,2025-06-06T09:31:00-07:00,20.794285365513392,60.0,60000.0 +3452,2025-06-06T09:32:00-07:00,20.8140007019043,60.0,60000.0 +3453,2025-06-06T09:33:00-07:00,20.83000119527181,60.0,60000.0 +3454,2025-06-06T09:34:00-07:00,20.82666778564453,60.0,60000.0 +3455,2025-06-06T09:35:00-07:00,20.8140007019043,60.0,60000.0 +3456,2025-06-06T09:36:00-07:00,20.826667149861652,60.0,60000.0 +3457,2025-06-06T09:37:00-07:00,20.856665929158527,60.0,60000.0 +3458,2025-06-06T09:38:00-07:00,20.87800064086914,60.0,60000.0 +3459,2025-06-06T09:39:00-07:00,20.875,60.0,60000.0 +3460,2025-06-06T09:40:00-07:00,20.89000066121419,60.0,60000.0 +3461,2025-06-06T09:41:00-07:00,20.923999786376953,60.0,60000.0 +3462,2025-06-06T09:42:00-07:00,20.953332901000977,60.0,60000.0 +3463,2025-06-06T09:43:00-07:00,20.97166697184245,60.0,60000.0 +3464,2025-06-06T09:44:00-07:00,20.984000396728515,60.0,60000.0 +3465,2025-06-06T09:45:00-07:00,20.99500020345052,60.0,60000.0 +3466,2025-06-06T09:46:00-07:00,21.0066655476888,60.0,60000.0 +3467,2025-06-06T09:47:00-07:00,21.007999420166016,60.0,60000.0 +3468,2025-06-06T09:48:00-07:00,21.014999389648438,60.0,60000.0 +3469,2025-06-06T09:49:00-07:00,21.014999389648438,60.0,60000.0 +3470,2025-06-06T09:50:00-07:00,21.022000122070313,60.0,60000.0 +3471,2025-06-06T09:51:00-07:00,21.023333231608074,60.0,60000.0 +3472,2025-06-06T09:52:00-07:00,21.016666412353516,60.0,60000.0 +3473,2025-06-06T09:53:00-07:00,21.009999084472657,60.0,60000.0 +3474,2025-06-06T09:54:00-07:00,21.0016663869222,60.0,60000.0 +3475,2025-06-06T09:55:00-07:00,20.996667226155598,60.0,60000.0 +3476,2025-06-06T09:56:00-07:00,20.990001678466797,60.0,60000.0 +3477,2025-06-06T09:57:00-07:00,20.98666763305664,60.0,60000.0 +3478,2025-06-06T09:58:00-07:00,20.981666564941406,60.0,60000.0 +3479,2025-06-06T09:59:00-07:00,20.976000213623045,60.0,60000.0 +3480,2025-06-06T10:00:00-07:00,20.973333994547527,60.0,60000.0 +3481,2025-06-06T10:01:00-07:00,20.970001220703125,60.0,60000.0 +3482,2025-06-06T10:02:00-07:00,20.970000584920246,60.0,60000.0 +3483,2025-06-06T10:03:00-07:00,20.96800003051758,60.0,60000.0 +3484,2025-06-06T10:04:00-07:00,20.96500015258789,60.0,60000.0 +3485,2025-06-06T10:05:00-07:00,20.959999084472656,60.0,60000.0 +3486,2025-06-06T10:06:00-07:00,20.955999755859374,60.0,60000.0 +3487,2025-06-06T10:07:00-07:00,20.954999923706055,60.0,60000.0 +3488,2025-06-06T10:08:00-07:00,20.953333536783855,60.0,60000.0 +3489,2025-06-06T10:09:00-07:00,20.955999755859374,60.0,60000.0 +3490,2025-06-06T10:10:00-07:00,20.954999923706055,60.0,60000.0 +3491,2025-06-06T10:11:00-07:00,20.959999084472656,60.0,60000.0 +3492,2025-06-06T10:12:00-07:00,20.96199951171875,60.0,60000.0 +3493,2025-06-06T10:13:00-07:00,20.958332697550457,60.0,60000.0 +3494,2025-06-06T10:14:00-07:00,20.963333129882812,60.0,60000.0 +3495,2025-06-06T10:15:00-07:00,20.97000045776367,60.0,60000.0 +3496,2025-06-06T10:16:00-07:00,20.970001220703125,60.0,60000.0 +3497,2025-06-06T10:17:00-07:00,20.97166697184245,60.0,60000.0 +3498,2025-06-06T10:18:00-07:00,20.977999877929687,60.0,60000.0 +3499,2025-06-06T10:19:00-07:00,20.97833315531413,60.0,60000.0 +3500,2025-06-06T10:20:00-07:00,20.96666717529297,60.0,60000.0 +3501,2025-06-06T10:21:00-07:00,20.97000045776367,60.0,60000.0 +3502,2025-06-06T10:22:00-07:00,20.963333129882812,60.0,60000.0 +3503,2025-06-06T10:23:00-07:00,20.959999720255535,60.0,60000.0 +3504,2025-06-06T10:24:00-07:00,20.954000091552736,60.0,60000.0 +3505,2025-06-06T10:25:00-07:00,20.958332697550457,60.0,60000.0 +3506,2025-06-06T10:26:00-07:00,20.951667149861652,60.0,60000.0 +3507,2025-06-06T10:27:00-07:00,20.945999908447266,60.0,60000.0 +3508,2025-06-06T10:28:00-07:00,20.948333740234375,60.0,60000.0 +3509,2025-06-06T10:29:00-07:00,20.94333330790202,60.0,60000.0 +3510,2025-06-06T10:30:00-07:00,20.94399948120117,60.0,60000.0 +3511,2025-06-06T10:31:00-07:00,20.946666717529297,60.0,60000.0 +3512,2025-06-06T10:32:00-07:00,20.94333267211914,60.0,60000.0 +3513,2025-06-06T10:33:00-07:00,20.9359992980957,60.0,60000.0 +3514,2025-06-06T10:34:00-07:00,20.933333079020183,60.0,60000.0 +3515,2025-06-06T10:35:00-07:00,20.933333079020183,60.0,60000.0 +3516,2025-06-06T10:36:00-07:00,20.933999633789064,60.0,60000.0 +3517,2025-06-06T10:37:00-07:00,20.93000030517578,60.0,60000.0 +3518,2025-06-06T10:38:00-07:00,20.924999237060547,60.0,60000.0 +3519,2025-06-06T10:39:00-07:00,20.931999969482423,60.0,60000.0 +3520,2025-06-06T10:40:00-07:00,20.93166669209798,60.0,60000.0 +3521,2025-06-06T10:41:00-07:00,20.926666259765625,60.0,60000.0 +3522,2025-06-06T10:42:00-07:00,20.927999877929686,60.0,60000.0 +3523,2025-06-06T10:43:00-07:00,20.92333221435547,60.0,60000.0 +3524,2025-06-06T10:44:00-07:00,20.929999669392902,60.0,60000.0 +3525,2025-06-06T10:45:00-07:00,20.931999969482423,60.0,60000.0 +3526,2025-06-06T10:46:00-07:00,20.934999465942383,60.0,60000.0 +3527,2025-06-06T10:47:00-07:00,20.93000030517578,60.0,60000.0 +3528,2025-06-06T10:48:00-07:00,20.929999542236327,60.0,60000.0 +3529,2025-06-06T10:49:00-07:00,20.924999237060547,60.0,60000.0 +3530,2025-06-06T10:50:00-07:00,20.928332646687824,60.0,60000.0 +3531,2025-06-06T10:51:00-07:00,20.93000030517578,60.0,60000.0 +3532,2025-06-06T10:52:00-07:00,20.93166669209798,60.0,60000.0 +3533,2025-06-06T10:53:00-07:00,20.93000030517578,60.0,60000.0 +3534,2025-06-06T10:54:00-07:00,20.931999969482423,60.0,60000.0 +3535,2025-06-06T10:55:00-07:00,20.934999465942383,60.0,60000.0 +3536,2025-06-06T10:56:00-07:00,20.933333079020183,60.0,60000.0 +3537,2025-06-06T10:57:00-07:00,20.927999877929686,60.0,60000.0 +3538,2025-06-06T10:58:00-07:00,20.929999669392902,60.0,60000.0 +3539,2025-06-06T10:59:00-07:00,20.928333282470703,60.0,60000.0 +3540,2025-06-06T11:00:00-07:00,20.919998931884766,60.0,60000.0 +3541,2025-06-06T11:01:00-07:00,20.92166519165039,60.0,60000.0 +3542,2025-06-06T11:02:00-07:00,20.91666603088379,60.0,60000.0 +3543,2025-06-06T11:03:00-07:00,20.91799850463867,60.0,60000.0 +3544,2025-06-06T11:04:00-07:00,20.91666539510091,60.0,60000.0 +3545,2025-06-06T11:05:00-07:00,20.91999880472819,60.0,60000.0 +3546,2025-06-06T11:06:00-07:00,20.921998596191408,60.0,60000.0 +3547,2025-06-06T11:07:00-07:00,20.918569837297714,60.0,60000.0 +3548,2025-06-06T11:08:00-07:00,20.928333282470703,60.0,60000.0 +3549,2025-06-06T11:09:00-07:00,20.933999633789064,60.0,60000.0 +3550,2025-06-06T11:10:00-07:00,20.938332239786785,60.0,60000.0 +3551,2025-06-06T11:11:00-07:00,20.94499969482422,60.0,60000.0 +3552,2025-06-06T11:12:00-07:00,20.939998626708984,60.0,60000.0 +3553,2025-06-06T11:13:00-07:00,20.939998626708984,60.0,60000.0 +3554,2025-06-06T11:14:00-07:00,20.936665217081707,60.0,60000.0 +3555,2025-06-06T11:15:00-07:00,20.939998626708984,60.0,60000.0 +3556,2025-06-06T11:16:00-07:00,20.945999908447266,60.0,60000.0 +3557,2025-06-06T11:17:00-07:00,20.946666717529297,60.0,60000.0 +3558,2025-06-06T11:18:00-07:00,20.9499994913737,60.0,60000.0 +3559,2025-06-06T11:19:00-07:00,20.957999420166015,60.0,60000.0 +3560,2025-06-06T11:20:00-07:00,20.954999923706055,60.0,60000.0 +3561,2025-06-06T11:21:00-07:00,20.958332697550457,60.0,60000.0 +3562,2025-06-06T11:22:00-07:00,20.963999938964843,60.0,60000.0 +3563,2025-06-06T11:23:00-07:00,20.968334197998047,60.0,60000.0 +3564,2025-06-06T11:24:00-07:00,20.973333994547527,60.0,60000.0 +3565,2025-06-06T11:25:00-07:00,20.972000885009766,60.0,60000.0 +3566,2025-06-06T11:26:00-07:00,20.980000178019207,60.0,60000.0 +3567,2025-06-06T11:27:00-07:00,20.981666564941406,60.0,60000.0 +3568,2025-06-06T11:28:00-07:00,20.981999969482423,60.0,60000.0 +3569,2025-06-06T11:29:00-07:00,20.981667200724285,60.0,60000.0 +3570,2025-06-06T11:30:00-07:00,20.983333587646484,60.0,60000.0 +3571,2025-06-06T11:31:00-07:00,20.992000579833984,60.0,60000.0 +3572,2025-06-06T11:32:00-07:00,20.996667226155598,60.0,60000.0 +3573,2025-06-06T11:33:00-07:00,21.003332773844402,60.0,60000.0 +3574,2025-06-06T11:34:00-07:00,21.009999084472657,60.0,60000.0 +3575,2025-06-06T11:35:00-07:00,21.01166534423828,60.0,60000.0 +3576,2025-06-06T11:36:00-07:00,21.009998957316082,60.0,60000.0 +3577,2025-06-06T11:37:00-07:00,21.01399917602539,60.0,60000.0 +3578,2025-06-06T11:38:00-07:00,21.01166534423828,60.0,60000.0 +3579,2025-06-06T11:39:00-07:00,21.014999389648438,60.0,60000.0 +3580,2025-06-06T11:40:00-07:00,21.007998657226562,60.0,60000.0 +3581,2025-06-06T11:41:00-07:00,20.9950008392334,60.0,60000.0 +3582,2025-06-06T11:42:00-07:00,20.981666564941406,60.0,60000.0 +3583,2025-06-06T11:43:00-07:00,20.980000305175782,60.0,60000.0 +3584,2025-06-06T11:44:00-07:00,20.97833315531413,60.0,60000.0 +3585,2025-06-06T11:45:00-07:00,20.980000178019207,60.0,60000.0 +3586,2025-06-06T11:46:00-07:00,20.981999969482423,60.0,60000.0 +3587,2025-06-06T11:47:00-07:00,20.985000610351562,60.0,60000.0 +3588,2025-06-06T11:48:00-07:00,20.979999542236328,60.0,60000.0 +3589,2025-06-06T11:49:00-07:00,20.980000305175782,60.0,60000.0 +3590,2025-06-06T11:50:00-07:00,20.983333587646484,60.0,60000.0 +3591,2025-06-06T11:51:00-07:00,20.979999542236328,60.0,60000.0 +3592,2025-06-06T11:52:00-07:00,20.982000732421874,60.0,60000.0 +3593,2025-06-06T11:53:00-07:00,20.97833315531413,60.0,60000.0 +3594,2025-06-06T11:54:00-07:00,20.976666768391926,60.0,60000.0 +3595,2025-06-06T11:55:00-07:00,20.980000305175782,60.0,60000.0 +3596,2025-06-06T11:56:00-07:00,20.97833315531413,60.0,60000.0 +3597,2025-06-06T11:57:00-07:00,20.98833465576172,60.0,60000.0 +3598,2025-06-06T11:58:00-07:00,20.992001342773438,60.0,60000.0 +3599,2025-06-06T11:59:00-07:00,20.98833401997884,60.0,60000.0 +3600,2025-06-06T12:00:00-07:00,20.98833465576172,60.0,60000.0 +3601,2025-06-06T12:01:00-07:00,20.984000396728515,60.0,60000.0 +3602,2025-06-06T12:02:00-07:00,20.97833315531413,60.0,60000.0 +3603,2025-06-06T12:03:00-07:00,20.981666564941406,60.0,60000.0 +3604,2025-06-06T12:04:00-07:00,20.980000305175782,60.0,60000.0 +3605,2025-06-06T12:05:00-07:00,20.971667607625324,60.0,60000.0 +3606,2025-06-06T12:06:00-07:00,20.973333994547527,60.0,60000.0 +3607,2025-06-06T12:07:00-07:00,20.972000885009766,60.0,60000.0 +3608,2025-06-06T12:08:00-07:00,20.985000610351562,60.0,60000.0 +3609,2025-06-06T12:09:00-07:00,20.985000610351562,60.0,60000.0 +3610,2025-06-06T12:10:00-07:00,20.984000396728515,60.0,60000.0 +3611,2025-06-06T12:11:00-07:00,20.991668065388996,60.0,60000.0 +3612,2025-06-06T12:12:00-07:00,20.991668065388996,60.0,60000.0 +3613,2025-06-06T12:13:00-07:00,20.99800033569336,60.0,60000.0 +3614,2025-06-06T12:14:00-07:00,20.9983336130778,60.0,60000.0 +3615,2025-06-06T12:15:00-07:00,21.0,60.0,60000.0 +3616,2025-06-06T12:16:00-07:00,21.003999328613283,60.0,60000.0 +3617,2025-06-06T12:17:00-07:00,21.0016663869222,60.0,60000.0 +3618,2025-06-06T12:18:00-07:00,21.0049991607666,60.0,60000.0 +3619,2025-06-06T12:19:00-07:00,21.015999603271485,60.0,60000.0 +3620,2025-06-06T12:20:00-07:00,21.01333236694336,60.0,60000.0 +3621,2025-06-06T12:21:00-07:00,21.016665776570637,60.0,60000.0 +3622,2025-06-06T12:22:00-07:00,21.009998321533203,60.0,60000.0 +3623,2025-06-06T12:23:00-07:00,21.020000457763672,60.0,60000.0 +3624,2025-06-06T12:24:00-07:00,21.018333435058594,60.0,60000.0 +3625,2025-06-06T12:25:00-07:00,21.009998957316082,60.0,60000.0 +3626,2025-06-06T12:26:00-07:00,21.0119987487793,60.0,60000.0 +3627,2025-06-06T12:27:00-07:00,21.018333435058594,60.0,60000.0 +3628,2025-06-06T12:28:00-07:00,21.016666412353516,60.0,60000.0 +3629,2025-06-06T12:29:00-07:00,21.020000457763672,60.0,60000.0 +3630,2025-06-06T12:30:00-07:00,21.018333435058594,60.0,60000.0 +3631,2025-06-06T12:31:00-07:00,21.014999389648438,60.0,60000.0 +3632,2025-06-06T12:32:00-07:00,21.009998321533203,60.0,60000.0 +3633,2025-06-06T12:33:00-07:00,21.016666412353516,60.0,60000.0 +3634,2025-06-06T12:34:00-07:00,21.01166534423828,60.0,60000.0 +3635,2025-06-06T12:35:00-07:00,21.0119987487793,60.0,60000.0 +3636,2025-06-06T12:36:00-07:00,21.020000457763672,60.0,60000.0 +3637,2025-06-06T12:37:00-07:00,21.03333282470703,60.0,60000.0 +3638,2025-06-06T12:38:00-07:00,21.03800048828125,60.0,60000.0 +3639,2025-06-06T12:39:00-07:00,21.0500005086263,60.0,60000.0 +3640,2025-06-06T12:40:00-07:00,21.066666920979817,60.0,60000.0 +3641,2025-06-06T12:41:00-07:00,21.074000549316406,60.0,60000.0 +3642,2025-06-06T12:42:00-07:00,21.075000762939453,60.0,60000.0 +3643,2025-06-06T12:43:00-07:00,21.073333104451496,60.0,60000.0 +3644,2025-06-06T12:44:00-07:00,21.072000122070314,60.0,60000.0 +3645,2025-06-06T12:45:00-07:00,21.075000762939453,60.0,60000.0 +3646,2025-06-06T12:46:00-07:00,21.070000330607098,60.0,60000.0 +3647,2025-06-06T12:47:00-07:00,21.054000091552734,60.0,60000.0 +3648,2025-06-06T12:48:00-07:00,21.051666259765625,60.0,60000.0 +3649,2025-06-06T12:49:00-07:00,21.060000737508137,60.0,60000.0 +3650,2025-06-06T12:50:00-07:00,21.074000549316406,60.0,60000.0 +3651,2025-06-06T12:51:00-07:00,21.08500099182129,60.0,60000.0 +3652,2025-06-06T12:52:00-07:00,21.08833376566569,60.0,60000.0 +3653,2025-06-06T12:53:00-07:00,21.097998809814452,60.0,60000.0 +3654,2025-06-06T12:54:00-07:00,21.10333251953125,60.0,60000.0 +3655,2025-06-06T12:55:00-07:00,21.10999933878581,60.0,60000.0 +3656,2025-06-06T12:56:00-07:00,21.113999938964845,60.0,60000.0 +3657,2025-06-06T12:57:00-07:00,21.116666158040363,60.0,60000.0 +3658,2025-06-06T12:58:00-07:00,21.118332544962566,60.0,60000.0 +3659,2025-06-06T12:59:00-07:00,21.12199935913086,60.0,60000.0 +3660,2025-06-06T13:00:00-07:00,21.106666564941406,60.0,60000.0 +3661,2025-06-06T13:01:00-07:00,21.113333384195965,60.0,60000.0 +3662,2025-06-06T13:02:00-07:00,21.119998931884766,60.0,60000.0 +3663,2025-06-06T13:03:00-07:00,21.130000432332356,60.0,60000.0 +3664,2025-06-06T13:04:00-07:00,21.130000432332356,60.0,60000.0 +3665,2025-06-06T13:05:00-07:00,21.142000579833983,60.0,60000.0 +3666,2025-06-06T13:06:00-07:00,21.148334503173828,60.0,60000.0 +3667,2025-06-06T13:07:00-07:00,21.156667073567707,60.0,60000.0 +3668,2025-06-06T13:08:00-07:00,21.158000183105468,60.0,60000.0 +3669,2025-06-06T13:09:00-07:00,21.16166623433431,60.0,60000.0 +3670,2025-06-06T13:10:00-07:00,21.15833346048991,60.0,60000.0 +3671,2025-06-06T13:11:00-07:00,21.16199951171875,60.0,60000.0 +3672,2025-06-06T13:12:00-07:00,21.16999880472819,60.0,60000.0 +3673,2025-06-06T13:13:00-07:00,21.17333221435547,60.0,60000.0 +3674,2025-06-06T13:14:00-07:00,21.177999877929686,60.0,60000.0 +3675,2025-06-06T13:15:00-07:00,21.178332646687824,60.0,60000.0 +3676,2025-06-06T13:16:00-07:00,21.174999237060547,60.0,60000.0 +3677,2025-06-06T13:17:00-07:00,21.177999877929686,60.0,60000.0 +3678,2025-06-06T13:18:00-07:00,21.18333371480306,60.0,60000.0 +3679,2025-06-06T13:19:00-07:00,21.195714133126394,60.0,60000.0 +3680,2025-06-06T13:20:00-07:00,21.175999450683594,60.0,60000.0 +3681,2025-06-06T13:21:00-07:00,21.17166582743327,60.0,60000.0 +3682,2025-06-06T13:22:00-07:00,21.17166582743327,60.0,60000.0 +3683,2025-06-06T13:23:00-07:00,21.16599884033203,60.0,60000.0 +3684,2025-06-06T13:24:00-07:00,21.16666539510091,60.0,60000.0 +3685,2025-06-06T13:25:00-07:00,21.17166519165039,60.0,60000.0 +3686,2025-06-06T13:26:00-07:00,21.169998168945312,60.0,60000.0 +3687,2025-06-06T13:27:00-07:00,21.18000030517578,60.0,60000.0 +3688,2025-06-06T13:28:00-07:00,21.17166519165039,60.0,60000.0 +3689,2025-06-06T13:29:00-07:00,21.186000061035156,60.0,60000.0 +3690,2025-06-06T13:30:00-07:00,21.18999989827474,60.0,60000.0 +3691,2025-06-06T13:31:00-07:00,21.200000127156574,60.0,60000.0 +3692,2025-06-06T13:32:00-07:00,21.21800079345703,60.0,60000.0 +3693,2025-06-06T13:33:00-07:00,21.21999994913737,60.0,60000.0 +3694,2025-06-06T13:34:00-07:00,21.228333791097004,60.0,60000.0 +3695,2025-06-06T13:35:00-07:00,21.242001342773438,60.0,60000.0 +3696,2025-06-06T13:36:00-07:00,21.246667226155598,60.0,60000.0 +3697,2025-06-06T13:37:00-07:00,21.233333587646484,60.0,60000.0 +3698,2025-06-06T13:38:00-07:00,21.234000396728515,60.0,60000.0 +3699,2025-06-06T13:39:00-07:00,21.23833465576172,60.0,60000.0 +3700,2025-06-06T13:40:00-07:00,21.23833401997884,60.0,60000.0 +3701,2025-06-06T13:41:00-07:00,21.222000885009766,60.0,60000.0 +3702,2025-06-06T13:42:00-07:00,21.221667607625324,60.0,60000.0 +3703,2025-06-06T13:43:00-07:00,21.23833465576172,60.0,60000.0 +3704,2025-06-06T13:44:00-07:00,21.242001342773438,60.0,60000.0 +3705,2025-06-06T13:45:00-07:00,21.2566655476888,60.0,60000.0 +3706,2025-06-06T13:46:00-07:00,21.246667226155598,60.0,60000.0 +3707,2025-06-06T13:47:00-07:00,21.246000671386717,60.0,60000.0 +3708,2025-06-06T13:48:00-07:00,21.2483336130778,60.0,60000.0 +3709,2025-06-06T13:49:00-07:00,21.26166598002116,60.0,60000.0 +3710,2025-06-06T13:50:00-07:00,21.270000457763672,60.0,60000.0 +3711,2025-06-06T13:51:00-07:00,21.276666005452473,60.0,60000.0 +3712,2025-06-06T13:52:00-07:00,21.286666870117188,60.0,60000.0 +3713,2025-06-06T13:53:00-07:00,21.286000061035157,60.0,60000.0 +3714,2025-06-06T13:54:00-07:00,21.288333257039387,60.0,60000.0 +3715,2025-06-06T13:55:00-07:00,21.286666870117188,60.0,60000.0 +3716,2025-06-06T13:56:00-07:00,21.29000015258789,60.0,60000.0 +3717,2025-06-06T13:57:00-07:00,21.264999389648438,60.0,60000.0 +3718,2025-06-06T13:58:00-07:00,21.258331934611004,60.0,60000.0 +3719,2025-06-06T13:59:00-07:00,21.265999603271485,60.0,60000.0 +3720,2025-06-06T14:00:00-07:00,21.273332595825195,60.0,60000.0 +3721,2025-06-06T14:01:00-07:00,21.278332392374676,60.0,60000.0 +3722,2025-06-06T14:02:00-07:00,21.273999786376955,60.0,60000.0 +3723,2025-06-06T14:03:00-07:00,21.273332595825195,60.0,60000.0 +3724,2025-06-06T14:04:00-07:00,21.253332773844402,60.0,60000.0 +3725,2025-06-06T14:05:00-07:00,21.25199966430664,60.0,60000.0 +3726,2025-06-06T14:06:00-07:00,21.25499979654948,60.0,60000.0 +3727,2025-06-06T14:07:00-07:00,21.27666664123535,60.0,60000.0 +3728,2025-06-06T14:08:00-07:00,21.284000396728516,60.0,60000.0 +3729,2025-06-06T14:09:00-07:00,21.293333689371746,60.0,60000.0 +3730,2025-06-06T14:10:00-07:00,21.290000279744465,60.0,60000.0 +3731,2025-06-06T14:11:00-07:00,21.292000579833985,60.0,60000.0 +3732,2025-06-06T14:12:00-07:00,21.295000076293945,60.0,60000.0 +3733,2025-06-06T14:13:00-07:00,21.295000076293945,60.0,60000.0 +3734,2025-06-06T14:14:00-07:00,21.297999572753906,60.0,60000.0 +3735,2025-06-06T14:15:00-07:00,21.296666463216145,60.0,60000.0 +3736,2025-06-06T14:16:00-07:00,21.293333689371746,60.0,60000.0 +3737,2025-06-06T14:17:00-07:00,21.30800094604492,60.0,60000.0 +3738,2025-06-06T14:18:00-07:00,21.320000330607098,60.0,60000.0 +3739,2025-06-06T14:19:00-07:00,21.330001831054688,60.0,60000.0 +3740,2025-06-06T14:20:00-07:00,21.33800048828125,60.0,60000.0 +3741,2025-06-06T14:21:00-07:00,21.34833272298177,60.0,60000.0 +3742,2025-06-06T14:22:00-07:00,21.349998474121094,60.0,60000.0 +3743,2025-06-06T14:23:00-07:00,21.35199966430664,60.0,60000.0 +3744,2025-06-06T14:24:00-07:00,21.356666564941406,60.0,60000.0 +3745,2025-06-06T14:25:00-07:00,21.356666564941406,60.0,60000.0 +3746,2025-06-06T14:26:00-07:00,21.35199966430664,60.0,60000.0 +3747,2025-06-06T14:27:00-07:00,21.35333251953125,60.0,60000.0 +3748,2025-06-06T14:28:00-07:00,21.366666158040363,60.0,60000.0 +3749,2025-06-06T14:29:00-07:00,21.37199935913086,60.0,60000.0 +3750,2025-06-06T14:30:00-07:00,21.381667455037434,60.0,60000.0 +3751,2025-06-06T14:31:00-07:00,21.378334045410156,60.0,60000.0 +3752,2025-06-06T14:32:00-07:00,21.37199935913086,60.0,60000.0 +3753,2025-06-06T14:33:00-07:00,21.364999771118164,60.0,60000.0 +3754,2025-06-06T14:34:00-07:00,21.371666590372723,60.0,60000.0 +3755,2025-06-06T14:35:00-07:00,21.382000732421876,60.0,60000.0 +3756,2025-06-06T14:36:00-07:00,21.378334045410156,60.0,60000.0 +3757,2025-06-06T14:37:00-07:00,21.36833318074544,60.0,60000.0 +3758,2025-06-06T14:38:00-07:00,21.35199890136719,60.0,60000.0 +3759,2025-06-06T14:39:00-07:00,21.354999542236328,60.0,60000.0 +3760,2025-06-06T14:40:00-07:00,21.364999771118164,60.0,60000.0 +3761,2025-06-06T14:41:00-07:00,21.376000213623048,60.0,60000.0 +3762,2025-06-06T14:42:00-07:00,21.378332773844402,60.0,60000.0 +3763,2025-06-06T14:43:00-07:00,21.391667048136394,60.0,60000.0 +3764,2025-06-06T14:44:00-07:00,21.389999389648438,60.0,60000.0 +3765,2025-06-06T14:45:00-07:00,21.380001068115234,60.0,60000.0 +3766,2025-06-06T14:46:00-07:00,21.393333435058594,60.0,60000.0 +3767,2025-06-06T14:47:00-07:00,21.406000518798827,60.0,60000.0 +3768,2025-06-06T14:48:00-07:00,21.41333262125651,60.0,60000.0 +3769,2025-06-06T14:49:00-07:00,21.42833201090495,60.0,60000.0 +3770,2025-06-06T14:50:00-07:00,21.437999725341797,60.0,60000.0 +3771,2025-06-06T14:51:00-07:00,21.448333740234375,60.0,60000.0 +3772,2025-06-06T14:52:00-07:00,21.446666081746418,60.0,60000.0 +3773,2025-06-06T14:53:00-07:00,21.448000335693358,60.0,60000.0 +3774,2025-06-06T14:54:00-07:00,21.451667149861652,60.0,60000.0 +3775,2025-06-06T14:55:00-07:00,21.451667149861652,60.0,60000.0 +3776,2025-06-06T14:56:00-07:00,21.448000335693358,60.0,60000.0 +3777,2025-06-06T14:57:00-07:00,21.451667149861652,60.0,60000.0 +3778,2025-06-06T14:58:00-07:00,21.451666514078777,60.0,60000.0 +3779,2025-06-06T14:59:00-07:00,21.472000885009766,60.0,60000.0 +3780,2025-06-06T15:00:00-07:00,21.473333994547527,60.0,60000.0 +3781,2025-06-06T15:01:00-07:00,21.475000381469727,60.0,60000.0 +3782,2025-06-06T15:02:00-07:00,21.46800079345703,60.0,60000.0 +3783,2025-06-06T15:03:00-07:00,21.459999084472656,60.0,60000.0 +3784,2025-06-06T15:04:00-07:00,21.46666717529297,60.0,60000.0 +3785,2025-06-06T15:05:00-07:00,21.466000366210938,60.0,60000.0 +3786,2025-06-06T15:06:00-07:00,21.46500015258789,60.0,60000.0 +3787,2025-06-06T15:07:00-07:00,21.461666742960613,60.0,60000.0 +3788,2025-06-06T15:08:00-07:00,21.459999084472656,60.0,60000.0 +3789,2025-06-06T15:09:00-07:00,21.459999084472656,60.0,60000.0 +3790,2025-06-06T15:10:00-07:00,21.450000127156574,60.0,60000.0 +3791,2025-06-06T15:11:00-07:00,21.44399948120117,60.0,60000.0 +3792,2025-06-06T15:12:00-07:00,21.456666310628254,60.0,60000.0 +3793,2025-06-06T15:13:00-07:00,21.47166697184245,60.0,60000.0 +3794,2025-06-06T15:14:00-07:00,21.482000732421874,60.0,60000.0 +3795,2025-06-06T15:15:00-07:00,21.48833465576172,60.0,60000.0 +3796,2025-06-06T15:16:00-07:00,21.5,60.0,60000.0 +3797,2025-06-06T15:17:00-07:00,21.503999328613283,60.0,60000.0 +3798,2025-06-06T15:18:00-07:00,21.5049991607666,60.0,60000.0 +3799,2025-06-06T15:19:00-07:00,21.503332773844402,60.0,60000.0 +3800,2025-06-06T15:20:00-07:00,21.507998657226562,60.0,60000.0 +3801,2025-06-06T15:21:00-07:00,21.52666664123535,60.0,60000.0 +3802,2025-06-06T15:22:00-07:00,21.551666895548504,60.0,60000.0 +3803,2025-06-06T15:23:00-07:00,21.5640007019043,60.0,60000.0 +3804,2025-06-06T15:24:00-07:00,21.558334350585938,60.0,60000.0 +3805,2025-06-06T15:25:00-07:00,21.570000966389973,60.0,60000.0 +3806,2025-06-06T15:26:00-07:00,21.5760009765625,60.0,60000.0 +3807,2025-06-06T15:27:00-07:00,21.57833480834961,60.0,60000.0 +3808,2025-06-06T15:28:00-07:00,21.5500005086263,60.0,60000.0 +3809,2025-06-06T15:29:00-07:00,21.547999572753906,60.0,60000.0 +3810,2025-06-06T15:30:00-07:00,21.551666259765625,60.0,60000.0 +3811,2025-06-06T15:31:00-07:00,21.560000737508137,60.0,60000.0 +3812,2025-06-06T15:32:00-07:00,21.558334350585938,60.0,60000.0 +3813,2025-06-06T15:33:00-07:00,21.566000366210936,60.0,60000.0 +3814,2025-06-06T15:34:00-07:00,21.581668217976887,60.0,60000.0 +3815,2025-06-06T15:35:00-07:00,21.58833376566569,60.0,60000.0 +3816,2025-06-06T15:36:00-07:00,21.586000823974608,60.0,60000.0 +3817,2025-06-06T15:37:00-07:00,21.566667556762695,60.0,60000.0 +3818,2025-06-06T15:38:00-07:00,21.548332850138348,60.0,60000.0 +3819,2025-06-06T15:39:00-07:00,21.545999908447264,60.0,60000.0 +3820,2025-06-06T15:40:00-07:00,21.558333079020183,60.0,60000.0 +3821,2025-06-06T15:41:00-07:00,21.57833480834961,60.0,60000.0 +3822,2025-06-06T15:42:00-07:00,21.59000015258789,60.0,60000.0 +3823,2025-06-06T15:43:00-07:00,21.594999313354492,60.0,60000.0 +3824,2025-06-06T15:44:00-07:00,21.606666564941406,60.0,60000.0 +3825,2025-06-06T15:45:00-07:00,21.615999603271483,60.0,60000.0 +3826,2025-06-06T15:46:00-07:00,21.628334045410156,60.0,60000.0 +3827,2025-06-06T15:47:00-07:00,21.630001068115234,60.0,60000.0 +3828,2025-06-06T15:48:00-07:00,21.62800064086914,60.0,60000.0 +3829,2025-06-06T15:49:00-07:00,21.625,60.0,60000.0 +3830,2025-06-06T15:50:00-07:00,21.619998931884766,60.0,60000.0 +3831,2025-06-06T15:51:00-07:00,21.625,60.0,60000.0 +3832,2025-06-06T15:52:00-07:00,21.638333002726238,60.0,60000.0 +3833,2025-06-06T15:53:00-07:00,21.6471437726702,60.0,60000.0 +3834,2025-06-06T15:54:00-07:00,21.65999984741211,60.0,60000.0 +3835,2025-06-06T15:55:00-07:00,21.65833346048991,60.0,60000.0 +3836,2025-06-06T15:56:00-07:00,21.65999984741211,60.0,60000.0 +3837,2025-06-06T15:57:00-07:00,21.658000183105468,60.0,60000.0 +3838,2025-06-06T15:58:00-07:00,21.655000686645508,60.0,60000.0 +3839,2025-06-06T15:59:00-07:00,21.643333435058594,60.0,60000.0 +3840,2025-06-06T16:00:00-07:00,21.650001525878906,60.0,60000.0 +3841,2025-06-06T16:01:00-07:00,21.65833346048991,60.0,60000.0 +3842,2025-06-06T16:02:00-07:00,21.66499900817871,60.0,60000.0 +3843,2025-06-06T16:03:00-07:00,21.671998596191408,60.0,60000.0 +3844,2025-06-06T16:04:00-07:00,21.669998168945312,60.0,60000.0 +3845,2025-06-06T16:05:00-07:00,21.679999669392902,60.0,60000.0 +3846,2025-06-06T16:06:00-07:00,21.687998962402343,60.0,60000.0 +3847,2025-06-06T16:07:00-07:00,21.68833287556966,60.0,60000.0 +3848,2025-06-06T16:08:00-07:00,21.684999465942383,60.0,60000.0 +3849,2025-06-06T16:09:00-07:00,21.687998962402343,60.0,60000.0 +3850,2025-06-06T16:10:00-07:00,21.688332239786785,60.0,60000.0 +3851,2025-06-06T16:11:00-07:00,21.689998626708984,60.0,60000.0 +3852,2025-06-06T16:12:00-07:00,21.69199981689453,60.0,60000.0 +3853,2025-06-06T16:13:00-07:00,21.696666717529297,60.0,60000.0 +3854,2025-06-06T16:14:00-07:00,21.69333330790202,60.0,60000.0 +3855,2025-06-06T16:15:00-07:00,21.669998168945312,60.0,60000.0 +3856,2025-06-06T16:16:00-07:00,21.676665623982746,60.0,60000.0 +3857,2025-06-06T16:17:00-07:00,21.68833287556966,60.0,60000.0 +3858,2025-06-06T16:18:00-07:00,21.707999420166015,60.0,60000.0 +3859,2025-06-06T16:19:00-07:00,21.709999084472656,60.0,60000.0 +3860,2025-06-06T16:20:00-07:00,21.71666653951009,60.0,60000.0 +3861,2025-06-06T16:21:00-07:00,21.727999877929687,60.0,60000.0 +3862,2025-06-06T16:22:00-07:00,21.725000381469727,60.0,60000.0 +3863,2025-06-06T16:23:00-07:00,21.729999542236328,60.0,60000.0 +3864,2025-06-06T16:24:00-07:00,21.729999542236328,60.0,60000.0 +3865,2025-06-06T16:25:00-07:00,21.735000610351562,60.0,60000.0 +3866,2025-06-06T16:26:00-07:00,21.741668065388996,60.0,60000.0 +3867,2025-06-06T16:27:00-07:00,21.75199966430664,60.0,60000.0 +3868,2025-06-06T16:28:00-07:00,21.7566655476888,60.0,60000.0 +3869,2025-06-06T16:29:00-07:00,21.76166534423828,60.0,60000.0 +3870,2025-06-06T16:30:00-07:00,21.765999603271485,60.0,60000.0 +3871,2025-06-06T16:31:00-07:00,21.769999821980793,60.0,60000.0 +3872,2025-06-06T16:32:00-07:00,21.774999618530273,60.0,60000.0 +3873,2025-06-06T16:33:00-07:00,21.77999954223633,60.0,60000.0 +3874,2025-06-06T16:34:00-07:00,21.786666870117188,60.0,60000.0 +3875,2025-06-06T16:35:00-07:00,21.786666870117188,60.0,60000.0 +3876,2025-06-06T16:36:00-07:00,21.775999450683592,60.0,60000.0 +3877,2025-06-06T16:37:00-07:00,21.77166684468587,60.0,60000.0 +3878,2025-06-06T16:38:00-07:00,21.779999415079754,60.0,60000.0 +3879,2025-06-06T16:39:00-07:00,21.773999786376955,60.0,60000.0 +3880,2025-06-06T16:40:00-07:00,21.779998779296875,60.0,60000.0 +3881,2025-06-06T16:41:00-07:00,21.78499984741211,60.0,60000.0 +3882,2025-06-06T16:42:00-07:00,21.790000915527344,60.0,60000.0 +3883,2025-06-06T16:43:00-07:00,21.799999872843426,60.0,60000.0 +3884,2025-06-06T16:44:00-07:00,21.81000010172526,60.0,60000.0 +3885,2025-06-06T16:45:00-07:00,21.818000030517577,60.0,60000.0 +3886,2025-06-06T16:46:00-07:00,21.810000737508137,60.0,60000.0 +3887,2025-06-06T16:47:00-07:00,21.808334350585938,60.0,60000.0 +3888,2025-06-06T16:48:00-07:00,21.81800079345703,60.0,60000.0 +3889,2025-06-06T16:49:00-07:00,21.810001373291016,60.0,60000.0 +3890,2025-06-06T16:50:00-07:00,21.815000534057617,60.0,60000.0 +3891,2025-06-06T16:51:00-07:00,21.794000244140626,60.0,60000.0 +3892,2025-06-06T16:52:00-07:00,21.76166534423828,60.0,60000.0 +3893,2025-06-06T16:53:00-07:00,21.768333435058594,60.0,60000.0 +3894,2025-06-06T16:54:00-07:00,21.775999450683592,60.0,60000.0 +3895,2025-06-06T16:55:00-07:00,21.78666623433431,60.0,60000.0 +3896,2025-06-06T16:56:00-07:00,21.80666732788086,60.0,60000.0 +3897,2025-06-06T16:57:00-07:00,21.820000457763673,60.0,60000.0 +3898,2025-06-06T16:58:00-07:00,21.83500035603841,60.0,60000.0 +3899,2025-06-06T16:59:00-07:00,21.830000559488933,60.0,60000.0 +3900,2025-06-06T17:00:00-07:00,21.81400146484375,60.0,60000.0 +3901,2025-06-06T17:01:00-07:00,21.815000534057617,60.0,60000.0 +3902,2025-06-06T17:02:00-07:00,21.80666732788086,60.0,60000.0 +3903,2025-06-06T17:03:00-07:00,21.803333282470703,60.0,60000.0 +3904,2025-06-06T17:04:00-07:00,21.80800018310547,60.0,60000.0 +3905,2025-06-06T17:05:00-07:00,21.823334376017254,60.0,60000.0 +3906,2025-06-06T17:06:00-07:00,21.825001398722332,60.0,60000.0 +3907,2025-06-06T17:07:00-07:00,21.830001831054688,60.0,60000.0 +3908,2025-06-06T17:08:00-07:00,21.820000330607098,60.0,60000.0 +3909,2025-06-06T17:09:00-07:00,21.803333282470703,60.0,60000.0 +3910,2025-06-06T17:10:00-07:00,21.810000610351562,60.0,60000.0 +3911,2025-06-06T17:11:00-07:00,21.813334147135418,60.0,60000.0 +3912,2025-06-06T17:12:00-07:00,21.816667556762695,60.0,60000.0 +3913,2025-06-06T17:13:00-07:00,21.830001068115234,60.0,60000.0 +3914,2025-06-06T17:14:00-07:00,21.82833480834961,60.0,60000.0 +3915,2025-06-06T17:15:00-07:00,21.825000762939453,60.0,60000.0 +3916,2025-06-06T17:16:00-07:00,21.802000427246092,60.0,60000.0 +3917,2025-06-06T17:17:00-07:00,21.788333257039387,60.0,60000.0 +3918,2025-06-06T17:18:00-07:00,21.773333231608074,60.0,60000.0 +3919,2025-06-06T17:19:00-07:00,21.772000122070313,60.0,60000.0 +3920,2025-06-06T17:20:00-07:00,21.774999618530273,60.0,60000.0 +3921,2025-06-06T17:21:00-07:00,21.774999618530273,60.0,60000.0 +3922,2025-06-06T17:22:00-07:00,21.779998779296875,60.0,60000.0 +3923,2025-06-06T17:23:00-07:00,21.778332392374676,60.0,60000.0 +3924,2025-06-06T17:24:00-07:00,21.7549991607666,60.0,60000.0 +3925,2025-06-06T17:25:00-07:00,21.753999328613283,60.0,60000.0 +3926,2025-06-06T17:26:00-07:00,21.76166598002116,60.0,60000.0 +3927,2025-06-06T17:27:00-07:00,21.776666005452473,60.0,60000.0 +3928,2025-06-06T17:28:00-07:00,21.783999633789062,60.0,60000.0 +3929,2025-06-06T17:29:00-07:00,21.793333689371746,60.0,60000.0 +3930,2025-06-06T17:30:00-07:00,21.803333282470703,60.0,60000.0 +3931,2025-06-06T17:31:00-07:00,21.8140007019043,60.0,60000.0 +3932,2025-06-06T17:32:00-07:00,21.844999313354492,60.0,60000.0 +3933,2025-06-06T17:33:00-07:00,21.849998474121094,60.0,60000.0 +3934,2025-06-06T17:34:00-07:00,21.855999755859376,60.0,60000.0 +3935,2025-06-06T17:35:00-07:00,21.844999313354492,60.0,60000.0 +3936,2025-06-06T17:36:00-07:00,21.83666737874349,60.0,60000.0 +3937,2025-06-06T17:37:00-07:00,21.83200149536133,60.0,60000.0 +3938,2025-06-06T17:38:00-07:00,21.81166712443034,60.0,60000.0 +3939,2025-06-06T17:39:00-07:00,21.811667760213215,60.0,60000.0 +3940,2025-06-06T17:40:00-07:00,21.81800079345703,60.0,60000.0 +3941,2025-06-06T17:41:00-07:00,21.83000119527181,60.0,60000.0 +3942,2025-06-06T17:42:00-07:00,21.843332926432293,60.0,60000.0 +3943,2025-06-06T17:43:00-07:00,21.85199966430664,60.0,60000.0 +3944,2025-06-06T17:44:00-07:00,21.861666997273762,60.0,60000.0 +3945,2025-06-06T17:45:00-07:00,21.861666997273762,60.0,60000.0 +3946,2025-06-06T17:46:00-07:00,21.873999786376952,60.0,60000.0 +3947,2025-06-06T17:47:00-07:00,21.880000432332356,60.0,60000.0 +3948,2025-06-06T17:48:00-07:00,21.90333429972331,60.0,60000.0 +3949,2025-06-06T17:49:00-07:00,21.908000183105468,60.0,60000.0 +3950,2025-06-06T17:50:00-07:00,21.91166623433431,60.0,60000.0 +3951,2025-06-06T17:51:00-07:00,21.91166623433431,60.0,60000.0 +3952,2025-06-06T17:52:00-07:00,21.90999984741211,60.0,60000.0 +3953,2025-06-06T17:53:00-07:00,21.91499900817871,60.0,60000.0 +3954,2025-06-06T17:54:00-07:00,21.91666539510091,60.0,60000.0 +3955,2025-06-06T17:55:00-07:00,21.91199951171875,60.0,60000.0 +3956,2025-06-06T17:56:00-07:00,21.90166664123535,60.0,60000.0 +3957,2025-06-06T17:57:00-07:00,21.87999979654948,60.0,60000.0 +3958,2025-06-06T17:58:00-07:00,21.862000274658204,60.0,60000.0 +3959,2025-06-06T17:59:00-07:00,21.869999567667644,60.0,60000.0 +3960,2025-06-06T18:00:00-07:00,21.871665954589844,60.0,60000.0 +3961,2025-06-06T18:01:00-07:00,21.88800048828125,60.0,60000.0 +3962,2025-06-06T18:02:00-07:00,21.89666748046875,60.0,60000.0 +3963,2025-06-06T18:03:00-07:00,21.894999821980793,60.0,60000.0 +3964,2025-06-06T18:04:00-07:00,21.891999816894533,60.0,60000.0 +3965,2025-06-06T18:05:00-07:00,21.886666615804035,60.0,60000.0 +3966,2025-06-06T18:06:00-07:00,21.86833381652832,60.0,60000.0 +3967,2025-06-06T18:07:00-07:00,21.862000274658204,60.0,60000.0 +3968,2025-06-06T18:08:00-07:00,21.866666158040363,60.0,60000.0 +3969,2025-06-06T18:09:00-07:00,21.861666997273762,60.0,60000.0 +3970,2025-06-06T18:10:00-07:00,21.867999267578124,60.0,60000.0 +3971,2025-06-06T18:11:00-07:00,21.873332977294922,60.0,60000.0 +3972,2025-06-06T18:12:00-07:00,21.875,60.0,60000.0 +3973,2025-06-06T18:13:00-07:00,21.882000732421876,60.0,60000.0 +3974,2025-06-06T18:14:00-07:00,21.891666412353516,60.0,60000.0 +3975,2025-06-06T18:15:00-07:00,21.881667455037434,60.0,60000.0 +3976,2025-06-06T18:16:00-07:00,21.882000732421876,60.0,60000.0 +3977,2025-06-06T18:17:00-07:00,21.883333841959637,60.0,60000.0 +3978,2025-06-06T18:18:00-07:00,21.90999984741211,60.0,60000.0 +3979,2025-06-06T18:19:00-07:00,21.949999237060545,60.0,60000.0 +3980,2025-06-06T18:20:00-07:00,21.980000178019207,60.0,60000.0 +3981,2025-06-06T18:21:00-07:00,22.0066655476888,60.0,60000.0 +3982,2025-06-06T18:22:00-07:00,22.00599899291992,60.0,60000.0 +3983,2025-06-06T18:23:00-07:00,22.0049991607666,60.0,60000.0 +3984,2025-06-06T18:24:00-07:00,21.9933344523112,60.0,60000.0 +3985,2025-06-06T18:25:00-07:00,21.992001342773438,60.0,60000.0 +3986,2025-06-06T18:26:00-07:00,21.99500020345052,60.0,60000.0 +3987,2025-06-06T18:27:00-07:00,21.996667226155598,60.0,60000.0 +3988,2025-06-06T18:28:00-07:00,22.00199966430664,60.0,60000.0 +3989,2025-06-06T18:29:00-07:00,22.03499984741211,60.0,60000.0 +3990,2025-06-06T18:30:00-07:00,22.071667353312176,60.0,60000.0 +3991,2025-06-06T18:31:00-07:00,22.091999816894532,60.0,60000.0 +3992,2025-06-06T18:32:00-07:00,22.116666793823242,60.0,60000.0 +3993,2025-06-06T18:33:00-07:00,22.121665954589844,60.0,60000.0 +3994,2025-06-06T18:34:00-07:00,22.117999267578124,60.0,60000.0 +3995,2025-06-06T18:35:00-07:00,22.12000020345052,60.0,60000.0 +3996,2025-06-06T18:36:00-07:00,22.126667022705078,60.0,60000.0 +3997,2025-06-06T18:37:00-07:00,22.13000030517578,60.0,60000.0 +3998,2025-06-06T18:38:00-07:00,22.128333409627277,60.0,60000.0 +3999,2025-06-06T18:39:00-07:00,22.151666005452473,60.0,60000.0 +4000,2025-06-06T18:40:00-07:00,22.181998443603515,60.0,60000.0 +4001,2025-06-06T18:41:00-07:00,22.189998626708984,60.0,60000.0 +4002,2025-06-06T18:42:00-07:00,22.184999465942383,60.0,60000.0 +4003,2025-06-06T18:43:00-07:00,22.1739990234375,60.0,60000.0 +4004,2025-06-06T18:44:00-07:00,22.16666539510091,60.0,60000.0 +4005,2025-06-06T18:45:00-07:00,22.16666539510091,60.0,60000.0 +4006,2025-06-06T18:46:00-07:00,22.16199951171875,60.0,60000.0 +4007,2025-06-06T18:47:00-07:00,22.15999984741211,60.0,60000.0 +4008,2025-06-06T18:48:00-07:00,22.156667073567707,60.0,60000.0 +4009,2025-06-06T18:49:00-07:00,22.158000183105468,60.0,60000.0 +4010,2025-06-06T18:50:00-07:00,22.15333429972331,60.0,60000.0 +4011,2025-06-06T18:51:00-07:00,22.155000686645508,60.0,60000.0 +4012,2025-06-06T18:52:00-07:00,22.156000518798827,60.0,60000.0 +4013,2025-06-06T18:53:00-07:00,22.16833241780599,60.0,60000.0 +4014,2025-06-06T18:54:00-07:00,22.16999880472819,60.0,60000.0 +4015,2025-06-06T18:55:00-07:00,22.169998931884766,60.0,60000.0 +4016,2025-06-06T18:56:00-07:00,22.15500005086263,60.0,60000.0 +4017,2025-06-06T18:57:00-07:00,22.138333638509113,60.0,60000.0 +4018,2025-06-06T18:58:00-07:00,22.136666615804035,60.0,60000.0 +4019,2025-06-06T18:59:00-07:00,22.141999816894533,60.0,60000.0 +4020,2025-06-06T19:00:00-07:00,22.145000457763672,60.0,60000.0 +4021,2025-06-06T19:01:00-07:00,22.14500109354655,60.0,60000.0 +4022,2025-06-06T19:02:00-07:00,22.12200012207031,60.0,60000.0 +4023,2025-06-06T19:03:00-07:00,22.10333315531413,60.0,60000.0 +4024,2025-06-06T19:04:00-07:00,22.08500099182129,60.0,60000.0 +4025,2025-06-06T19:05:00-07:00,22.07400131225586,60.0,60000.0 +4026,2025-06-06T19:06:00-07:00,22.066666920979817,60.0,60000.0 +4027,2025-06-06T19:07:00-07:00,22.07833480834961,60.0,60000.0 +4028,2025-06-06T19:08:00-07:00,22.08400115966797,60.0,60000.0 +4029,2025-06-06T19:09:00-07:00,22.08500099182129,60.0,60000.0 +4030,2025-06-06T19:10:00-07:00,22.098332087198894,60.0,60000.0 +4031,2025-06-06T19:11:00-07:00,22.113999938964845,60.0,60000.0 +4032,2025-06-06T19:12:00-07:00,22.135000228881836,60.0,60000.0 +4033,2025-06-06T19:13:00-07:00,22.15500005086263,60.0,60000.0 +4034,2025-06-06T19:14:00-07:00,22.17599868774414,60.0,60000.0 +4035,2025-06-06T19:15:00-07:00,22.1999994913737,60.0,60000.0 +4036,2025-06-06T19:16:00-07:00,22.203333536783855,60.0,60000.0 +4037,2025-06-06T19:17:00-07:00,22.194000244140625,60.0,60000.0 +4038,2025-06-06T19:18:00-07:00,22.196666081746418,60.0,60000.0 +4039,2025-06-06T19:19:00-07:00,22.21000035603841,60.0,60000.0 +4040,2025-06-06T19:20:00-07:00,22.216000366210938,60.0,60000.0 +4041,2025-06-06T19:21:00-07:00,22.218334197998047,60.0,60000.0 +4042,2025-06-06T19:22:00-07:00,22.231666564941406,60.0,60000.0 +4043,2025-06-06T19:23:00-07:00,22.2380012512207,60.0,60000.0 +4044,2025-06-06T19:24:00-07:00,22.2450008392334,60.0,60000.0 +4045,2025-06-06T19:25:00-07:00,22.268333435058594,60.0,60000.0 +4046,2025-06-06T19:26:00-07:00,22.259998321533203,60.0,60000.0 +4047,2025-06-06T19:27:00-07:00,22.2549991607666,60.0,60000.0 +4048,2025-06-06T19:28:00-07:00,22.258331934611004,60.0,60000.0 +4049,2025-06-06T19:29:00-07:00,22.246000671386717,60.0,60000.0 +4050,2025-06-06T19:30:00-07:00,22.2433344523112,60.0,60000.0 +4051,2025-06-06T19:31:00-07:00,22.253332773844402,60.0,60000.0 +4052,2025-06-06T19:32:00-07:00,22.265999603271485,60.0,60000.0 +4053,2025-06-06T19:33:00-07:00,22.278332392374676,60.0,60000.0 +4054,2025-06-06T19:34:00-07:00,22.28333282470703,60.0,60000.0 +4055,2025-06-06T19:35:00-07:00,22.279998779296875,60.0,60000.0 +4056,2025-06-06T19:36:00-07:00,22.279998779296875,60.0,60000.0 +4057,2025-06-06T19:37:00-07:00,22.296666463216145,60.0,60000.0 +4058,2025-06-06T19:38:00-07:00,22.312001037597657,60.0,60000.0 +4059,2025-06-06T19:39:00-07:00,22.310001373291016,60.0,60000.0 +4060,2025-06-06T19:40:00-07:00,22.31999969482422,60.0,60000.0 +4061,2025-06-06T19:41:00-07:00,22.328001403808592,60.0,60000.0 +4062,2025-06-06T19:42:00-07:00,22.331668217976887,60.0,60000.0 +4063,2025-06-06T19:43:00-07:00,22.33833376566569,60.0,60000.0 +4064,2025-06-06T19:44:00-07:00,22.336000823974608,60.0,60000.0 +4065,2025-06-06T19:45:00-07:00,22.348332087198894,60.0,60000.0 +4066,2025-06-06T19:46:00-07:00,22.360000610351562,60.0,60000.0 +4067,2025-06-06T19:47:00-07:00,22.367999267578124,60.0,60000.0 +4068,2025-06-06T19:48:00-07:00,22.371665954589844,60.0,60000.0 +4069,2025-06-06T19:49:00-07:00,22.37999979654948,60.0,60000.0 +4070,2025-06-06T19:50:00-07:00,22.394000244140624,60.0,60000.0 +4071,2025-06-06T19:51:00-07:00,22.395000457763672,60.0,60000.0 +4072,2025-06-06T19:52:00-07:00,22.401667912801106,60.0,60000.0 +4073,2025-06-06T19:53:00-07:00,22.408000183105468,60.0,60000.0 +4074,2025-06-06T19:54:00-07:00,22.40833346048991,60.0,60000.0 +4075,2025-06-06T19:55:00-07:00,22.424999237060547,60.0,60000.0 +4076,2025-06-06T19:56:00-07:00,22.44199905395508,60.0,60000.0 +4077,2025-06-06T19:57:00-07:00,22.454999923706055,60.0,60000.0 +4078,2025-06-06T19:58:00-07:00,22.468333562215168,60.0,60000.0 +4079,2025-06-06T19:59:00-07:00,22.457999420166015,60.0,60000.0 +4080,2025-06-06T20:00:00-07:00,22.46666653951009,60.0,60000.0 +4081,2025-06-06T20:01:00-07:00,22.483334223429363,60.0,60000.0 +4082,2025-06-06T20:02:00-07:00,22.4880012512207,60.0,60000.0 +4083,2025-06-06T20:03:00-07:00,22.4933344523112,60.0,60000.0 +4084,2025-06-06T20:04:00-07:00,22.4983336130778,60.0,60000.0 +4085,2025-06-06T20:05:00-07:00,22.509999084472657,60.0,60000.0 +4086,2025-06-06T20:06:00-07:00,22.51166598002116,60.0,60000.0 +4087,2025-06-06T20:07:00-07:00,22.5016663869222,60.0,60000.0 +4088,2025-06-06T20:08:00-07:00,22.49800033569336,60.0,60000.0 +4089,2025-06-06T20:09:00-07:00,22.509998957316082,60.0,60000.0 +4090,2025-06-06T20:10:00-07:00,22.508331934611004,60.0,60000.0 +4091,2025-06-06T20:11:00-07:00,22.517999267578126,60.0,60000.0 +4092,2025-06-06T20:12:00-07:00,22.535000483194988,60.0,60000.0 +4093,2025-06-06T20:13:00-07:00,22.545000076293945,60.0,60000.0 +4094,2025-06-06T20:14:00-07:00,22.545999908447264,60.0,60000.0 +4095,2025-06-06T20:15:00-07:00,22.55500030517578,60.0,60000.0 +4096,2025-06-06T20:16:00-07:00,22.553333282470703,60.0,60000.0 +4097,2025-06-06T20:17:00-07:00,22.547999572753906,60.0,60000.0 +4098,2025-06-06T20:18:00-07:00,22.529999415079754,60.0,60000.0 +4099,2025-06-06T20:19:00-07:00,22.52833302815755,60.0,60000.0 +4100,2025-06-06T20:20:00-07:00,22.529998779296875,60.0,60000.0 +4101,2025-06-06T20:21:00-07:00,22.538333892822266,60.0,60000.0 +4102,2025-06-06T20:22:00-07:00,22.548332850138348,60.0,60000.0 +4103,2025-06-06T20:23:00-07:00,22.545999908447264,60.0,60000.0 +4104,2025-06-06T20:24:00-07:00,22.55500030517578,60.0,60000.0 +4105,2025-06-06T20:25:00-07:00,22.55666732788086,60.0,60000.0 +4106,2025-06-06T20:26:00-07:00,22.545999908447264,60.0,60000.0 +4107,2025-06-06T20:27:00-07:00,22.541667302449543,60.0,60000.0 +4108,2025-06-06T20:28:00-07:00,22.540000915527344,60.0,60000.0 +4109,2025-06-06T20:29:00-07:00,22.542000579833985,60.0,60000.0 +4110,2025-06-06T20:30:00-07:00,22.548333485921223,60.0,60000.0 +4111,2025-06-06T20:31:00-07:00,22.545000076293945,60.0,60000.0 +4112,2025-06-06T20:32:00-07:00,22.523999786376955,60.0,60000.0 +4113,2025-06-06T20:33:00-07:00,22.515000025431316,60.0,60000.0 +4114,2025-06-06T20:34:00-07:00,22.503332773844402,60.0,60000.0 +4115,2025-06-06T20:35:00-07:00,22.50199966430664,60.0,60000.0 +4116,2025-06-06T20:36:00-07:00,22.5,60.0,60000.0 +4117,2025-06-06T20:37:00-07:00,22.4983336130778,60.0,60000.0 +4118,2025-06-06T20:38:00-07:00,22.503999328613283,60.0,60000.0 +4119,2025-06-06T20:39:00-07:00,22.5066655476888,60.0,60000.0 +4120,2025-06-06T20:40:00-07:00,22.5049991607666,60.0,60000.0 +4121,2025-06-06T20:41:00-07:00,22.507998657226562,60.0,60000.0 +4122,2025-06-06T20:42:00-07:00,22.503332773844402,60.0,60000.0 +4123,2025-06-06T20:43:00-07:00,22.503332773844402,60.0,60000.0 +4124,2025-06-06T20:44:00-07:00,22.50199966430664,60.0,60000.0 +4125,2025-06-06T20:45:00-07:00,22.4933344523112,60.0,60000.0 +4126,2025-06-06T20:46:00-07:00,22.4950008392334,60.0,60000.0 +4127,2025-06-06T20:47:00-07:00,22.48600082397461,60.0,60000.0 +4128,2025-06-06T20:48:00-07:00,22.48666763305664,60.0,60000.0 +4129,2025-06-06T20:49:00-07:00,22.475000381469727,60.0,60000.0 +4130,2025-06-06T20:50:00-07:00,22.477999877929687,60.0,60000.0 +4131,2025-06-06T20:51:00-07:00,22.476666768391926,60.0,60000.0 +4132,2025-06-06T20:52:00-07:00,22.48000008719308,60.0,60000.0 +4133,2025-06-06T20:53:00-07:00,22.481999969482423,60.0,60000.0 +4134,2025-06-06T20:54:00-07:00,22.483333587646484,60.0,60000.0 +4135,2025-06-06T20:55:00-07:00,22.481667200724285,60.0,60000.0 +4136,2025-06-06T20:56:00-07:00,22.482000732421874,60.0,60000.0 +4137,2025-06-06T20:57:00-07:00,22.481666564941406,60.0,60000.0 +4138,2025-06-06T20:58:00-07:00,22.481666564941406,60.0,60000.0 +4139,2025-06-06T20:59:00-07:00,22.490001678466797,60.0,60000.0 +4140,2025-06-06T21:00:00-07:00,22.491668065388996,60.0,60000.0 +4141,2025-06-06T21:01:00-07:00,22.490000406901043,60.0,60000.0 +4142,2025-06-06T21:02:00-07:00,22.478333791097004,60.0,60000.0 +4143,2025-06-06T21:03:00-07:00,22.47000045776367,60.0,60000.0 +4144,2025-06-06T21:04:00-07:00,22.46500015258789,60.0,60000.0 +4145,2025-06-06T21:05:00-07:00,22.44499969482422,60.0,60000.0 +4146,2025-06-06T21:06:00-07:00,22.43000030517578,60.0,60000.0 +4147,2025-06-06T21:07:00-07:00,22.428333282470703,60.0,60000.0 +4148,2025-06-06T21:08:00-07:00,22.418331782023113,60.0,60000.0 +4149,2025-06-06T21:09:00-07:00,22.41666539510091,60.0,60000.0 +4150,2025-06-06T21:10:00-07:00,22.40999984741211,60.0,60000.0 +4151,2025-06-06T21:11:00-07:00,22.405000686645508,60.0,60000.0 +4152,2025-06-06T21:12:00-07:00,22.406000518798827,60.0,60000.0 +4153,2025-06-06T21:13:00-07:00,22.40166727701823,60.0,60000.0 +4154,2025-06-06T21:14:00-07:00,22.393333435058594,60.0,60000.0 +4155,2025-06-06T21:15:00-07:00,22.38800048828125,60.0,60000.0 +4156,2025-06-06T21:16:00-07:00,22.381667455037434,60.0,60000.0 +4157,2025-06-06T21:17:00-07:00,22.380001068115234,60.0,60000.0 +4158,2025-06-06T21:18:00-07:00,22.37800064086914,60.0,60000.0 +4159,2025-06-06T21:19:00-07:00,22.378334045410156,60.0,60000.0 +4160,2025-06-06T21:20:00-07:00,22.371665954589844,60.0,60000.0 +4161,2025-06-06T21:21:00-07:00,22.363999938964845,60.0,60000.0 +4162,2025-06-06T21:22:00-07:00,22.358333587646484,60.0,60000.0 +4163,2025-06-06T21:23:00-07:00,22.34666633605957,60.0,60000.0 +4164,2025-06-06T21:24:00-07:00,22.3260009765625,60.0,60000.0 +4165,2025-06-06T21:25:00-07:00,22.318333943684895,60.0,60000.0 +4166,2025-06-06T21:26:00-07:00,22.32833480834961,60.0,60000.0 +4167,2025-06-06T21:27:00-07:00,22.34000015258789,60.0,60000.0 +4168,2025-06-06T21:28:00-07:00,22.35166613260905,60.0,60000.0 +4169,2025-06-06T21:29:00-07:00,22.354999542236328,60.0,60000.0 +4170,2025-06-06T21:30:00-07:00,22.355999755859376,60.0,60000.0 +4171,2025-06-06T21:31:00-07:00,22.35333251953125,60.0,60000.0 +4172,2025-06-06T21:32:00-07:00,22.363333384195965,60.0,60000.0 +4173,2025-06-06T21:33:00-07:00,22.37800064086914,60.0,60000.0 +4174,2025-06-06T21:34:00-07:00,22.380000432332356,60.0,60000.0 +4175,2025-06-06T21:35:00-07:00,22.381667455037434,60.0,60000.0 +4176,2025-06-06T21:36:00-07:00,22.375999450683594,60.0,60000.0 +4177,2025-06-06T21:37:00-07:00,22.356666564941406,60.0,60000.0 +4178,2025-06-06T21:38:00-07:00,22.356666564941406,60.0,60000.0 +4179,2025-06-06T21:39:00-07:00,22.38000030517578,60.0,60000.0 +4180,2025-06-06T21:40:00-07:00,22.40166664123535,60.0,60000.0 +4181,2025-06-06T21:41:00-07:00,22.42166519165039,60.0,60000.0 +4182,2025-06-06T21:42:00-07:00,22.437999725341797,60.0,60000.0 +4183,2025-06-06T21:43:00-07:00,22.454999923706055,60.0,60000.0 +4184,2025-06-06T21:44:00-07:00,22.471667607625324,60.0,60000.0 +4185,2025-06-06T21:45:00-07:00,22.47800064086914,60.0,60000.0 +4186,2025-06-06T21:46:00-07:00,22.49166742960612,60.0,60000.0 +4187,2025-06-06T21:47:00-07:00,22.513333002726238,60.0,60000.0 +4188,2025-06-06T21:48:00-07:00,22.522000122070313,60.0,60000.0 +4189,2025-06-06T21:49:00-07:00,22.526666005452473,60.0,60000.0 +4190,2025-06-06T21:50:00-07:00,22.536666870117188,60.0,60000.0 +4191,2025-06-06T21:51:00-07:00,22.554000091552734,60.0,60000.0 +4192,2025-06-06T21:52:00-07:00,22.55833371480306,60.0,60000.0 +4193,2025-06-06T21:53:00-07:00,22.56833330790202,60.0,60000.0 +4194,2025-06-06T21:54:00-07:00,22.58400115966797,60.0,60000.0 +4195,2025-06-06T21:55:00-07:00,22.58666737874349,60.0,60000.0 +4196,2025-06-06T21:56:00-07:00,22.59666633605957,60.0,60000.0 +4197,2025-06-06T21:57:00-07:00,22.613999938964845,60.0,60000.0 +4198,2025-06-06T21:58:00-07:00,22.621665954589844,60.0,60000.0 +4199,2025-06-06T21:59:00-07:00,22.630000432332356,60.0,60000.0 +4200,2025-06-06T22:00:00-07:00,22.634000396728517,60.0,60000.0 +4201,2025-06-06T22:01:00-07:00,22.636666615804035,60.0,60000.0 +4202,2025-06-06T22:02:00-07:00,22.639999389648438,60.0,60000.0 +4203,2025-06-06T22:03:00-07:00,22.64600067138672,60.0,60000.0 +4204,2025-06-06T22:04:00-07:00,22.655000686645508,60.0,60000.0 +4205,2025-06-06T22:05:00-07:00,22.66333262125651,60.0,60000.0 +4206,2025-06-06T22:06:00-07:00,22.66799850463867,60.0,60000.0 +4207,2025-06-06T22:07:00-07:00,22.67166519165039,60.0,60000.0 +4208,2025-06-06T22:08:00-07:00,22.66666539510091,60.0,60000.0 +4209,2025-06-06T22:09:00-07:00,22.671998596191408,60.0,60000.0 +4210,2025-06-06T22:10:00-07:00,22.681666056315105,60.0,60000.0 +4211,2025-06-06T22:11:00-07:00,22.684999465942383,60.0,60000.0 +4212,2025-06-06T22:12:00-07:00,22.69199905395508,60.0,60000.0 +4213,2025-06-06T22:13:00-07:00,22.700000127156574,60.0,60000.0 +4214,2025-06-06T22:14:00-07:00,22.704999923706055,60.0,60000.0 +4215,2025-06-06T22:15:00-07:00,22.702000427246094,60.0,60000.0 +4216,2025-06-06T22:16:00-07:00,22.69333330790202,60.0,60000.0 +4217,2025-06-06T22:17:00-07:00,22.676666259765625,60.0,60000.0 +4218,2025-06-06T22:18:00-07:00,22.675999450683594,60.0,60000.0 +4219,2025-06-06T22:19:00-07:00,22.683332443237305,60.0,60000.0 +4220,2025-06-06T22:20:00-07:00,22.69166628519694,60.0,60000.0 +4221,2025-06-06T22:21:00-07:00,22.704000091552736,60.0,60000.0 +4222,2025-06-06T22:22:00-07:00,22.71500015258789,60.0,60000.0 +4223,2025-06-06T22:23:00-07:00,22.718333562215168,60.0,60000.0 +4224,2025-06-06T22:24:00-07:00,22.72000045776367,60.0,60000.0 +4225,2025-06-06T22:25:00-07:00,22.71500015258789,60.0,60000.0 +4226,2025-06-06T22:26:00-07:00,22.706666310628254,60.0,60000.0 +4227,2025-06-06T22:27:00-07:00,22.69399948120117,60.0,60000.0 +4228,2025-06-06T22:28:00-07:00,22.681666056315105,60.0,60000.0 +4229,2025-06-06T22:29:00-07:00,22.66833241780599,60.0,60000.0 +4230,2025-06-06T22:30:00-07:00,22.658000183105468,60.0,60000.0 +4231,2025-06-06T22:31:00-07:00,22.650000890096027,60.0,60000.0 +4232,2025-06-06T22:32:00-07:00,22.638333002726238,60.0,60000.0 +4233,2025-06-06T22:33:00-07:00,22.634000396728517,60.0,60000.0 +4234,2025-06-06T22:34:00-07:00,22.61833318074544,60.0,60000.0 +4235,2025-06-06T22:35:00-07:00,22.60999933878581,60.0,60000.0 +4236,2025-06-06T22:36:00-07:00,22.597999572753906,60.0,60000.0 +4237,2025-06-06T22:37:00-07:00,22.58333460489909,60.0,60000.0 +4238,2025-06-06T22:38:00-07:00,22.575000762939453,60.0,60000.0 +4239,2025-06-06T22:39:00-07:00,22.566000366210936,60.0,60000.0 +4240,2025-06-06T22:40:00-07:00,22.55666732788086,60.0,60000.0 +4241,2025-06-06T22:41:00-07:00,22.545000076293945,60.0,60000.0 +4242,2025-06-06T22:42:00-07:00,22.53199920654297,60.0,60000.0 +4243,2025-06-06T22:43:00-07:00,22.52666664123535,60.0,60000.0 +4244,2025-06-06T22:44:00-07:00,22.516666412353516,60.0,60000.0 +4245,2025-06-06T22:45:00-07:00,22.507998657226562,60.0,60000.0 +4246,2025-06-06T22:46:00-07:00,22.5,60.0,60000.0 +4247,2025-06-06T22:47:00-07:00,22.490001042683918,60.0,60000.0 +4248,2025-06-06T22:48:00-07:00,22.474000549316408,60.0,60000.0 +4249,2025-06-06T22:49:00-07:00,22.468332926432293,60.0,60000.0 +4250,2025-06-06T22:50:00-07:00,22.461666742960613,60.0,60000.0 +4251,2025-06-06T22:51:00-07:00,22.450000762939453,60.0,60000.0 +4252,2025-06-06T22:52:00-07:00,22.433332443237305,60.0,60000.0 +4253,2025-06-06T22:53:00-07:00,22.426665623982746,60.0,60000.0 +4254,2025-06-06T22:54:00-07:00,22.41599884033203,60.0,60000.0 +4255,2025-06-06T22:55:00-07:00,22.40999984741211,60.0,60000.0 +4256,2025-06-06T22:56:00-07:00,22.393334070841473,60.0,60000.0 +4257,2025-06-06T22:57:00-07:00,22.39000015258789,60.0,60000.0 +4258,2025-06-06T22:58:00-07:00,22.3766663869222,60.0,60000.0 +4259,2025-06-06T22:59:00-07:00,22.369999567667644,60.0,60000.0 +4260,2025-06-06T23:00:00-07:00,22.367999267578124,60.0,60000.0 +4261,2025-06-06T23:01:00-07:00,22.364999771118164,60.0,60000.0 +4262,2025-06-06T23:02:00-07:00,22.364999771118164,60.0,60000.0 +4263,2025-06-06T23:03:00-07:00,22.360000610351562,60.0,60000.0 +4264,2025-06-06T23:04:00-07:00,22.358571188790457,60.0,60000.0 +4265,2025-06-06T23:05:00-07:00,22.356666564941406,60.0,60000.0 +4266,2025-06-06T23:06:00-07:00,22.349998474121094,60.0,60000.0 +4267,2025-06-06T23:07:00-07:00,22.35333251953125,60.0,60000.0 +4268,2025-06-06T23:08:00-07:00,22.351665496826172,60.0,60000.0 +4269,2025-06-06T23:09:00-07:00,22.347998809814452,60.0,60000.0 +4270,2025-06-06T23:10:00-07:00,22.344999313354492,60.0,60000.0 +4271,2025-06-06T23:11:00-07:00,22.33833376566569,60.0,60000.0 +4272,2025-06-06T23:12:00-07:00,22.33800048828125,60.0,60000.0 +4273,2025-06-06T23:13:00-07:00,22.34000015258789,60.0,60000.0 +4274,2025-06-06T23:14:00-07:00,22.34166653951009,60.0,60000.0 +4275,2025-06-06T23:15:00-07:00,22.33200149536133,60.0,60000.0 +4276,2025-06-06T23:16:00-07:00,22.325000762939453,60.0,60000.0 +4277,2025-06-06T23:17:00-07:00,22.310000737508137,60.0,60000.0 +4278,2025-06-06T23:18:00-07:00,22.302000427246092,60.0,60000.0 +4279,2025-06-06T23:19:00-07:00,22.290000915527344,60.0,60000.0 +4280,2025-06-06T23:20:00-07:00,22.28333282470703,60.0,60000.0 +4281,2025-06-06T23:21:00-07:00,22.277999114990234,60.0,60000.0 +4282,2025-06-06T23:22:00-07:00,22.276666005452473,60.0,60000.0 +4283,2025-06-06T23:23:00-07:00,22.276666005452473,60.0,60000.0 +4284,2025-06-06T23:24:00-07:00,22.270000457763672,60.0,60000.0 +4285,2025-06-06T23:25:00-07:00,22.26333236694336,60.0,60000.0 +4286,2025-06-06T23:26:00-07:00,22.2549991607666,60.0,60000.0 +4287,2025-06-06T23:27:00-07:00,22.24800033569336,60.0,60000.0 +4288,2025-06-06T23:28:00-07:00,22.233333587646484,60.0,60000.0 +4289,2025-06-06T23:29:00-07:00,22.223333994547527,60.0,60000.0 +4290,2025-06-06T23:30:00-07:00,22.209999084472656,60.0,60000.0 +4291,2025-06-06T23:31:00-07:00,22.203333536783855,60.0,60000.0 +4292,2025-06-06T23:32:00-07:00,22.19499969482422,60.0,60000.0 +4293,2025-06-06T23:33:00-07:00,22.181999969482423,60.0,60000.0 +4294,2025-06-06T23:34:00-07:00,22.174999237060547,60.0,60000.0 +4295,2025-06-06T23:35:00-07:00,22.16714150565011,60.0,60000.0 +4296,2025-06-06T23:36:00-07:00,22.163999176025392,60.0,60000.0 +4297,2025-06-06T23:37:00-07:00,22.155000686645508,60.0,60000.0 +4298,2025-06-06T23:38:00-07:00,22.150001525878906,60.0,60000.0 +4299,2025-06-06T23:39:00-07:00,22.14600067138672,60.0,60000.0 +4300,2025-06-06T23:40:00-07:00,22.14666748046875,60.0,60000.0 +4301,2025-06-06T23:41:00-07:00,22.133333206176758,60.0,60000.0 +4302,2025-06-06T23:42:00-07:00,22.134000396728517,60.0,60000.0 +4303,2025-06-06T23:43:00-07:00,22.125,60.0,60000.0 +4304,2025-06-06T23:44:00-07:00,22.111666361490887,60.0,60000.0 +4305,2025-06-06T23:45:00-07:00,22.10199890136719,60.0,60000.0 +4306,2025-06-06T23:46:00-07:00,22.093333562215168,60.0,60000.0 +4307,2025-06-06T23:47:00-07:00,22.093332926432293,60.0,60000.0 +4308,2025-06-06T23:48:00-07:00,22.086000823974608,60.0,60000.0 +4309,2025-06-06T23:49:00-07:00,22.08833376566569,60.0,60000.0 +4310,2025-06-06T23:50:00-07:00,22.08666737874349,60.0,60000.0 +4311,2025-06-06T23:51:00-07:00,22.08200149536133,60.0,60000.0 +4312,2025-06-06T23:52:00-07:00,22.073333740234375,60.0,60000.0 +4313,2025-06-06T23:53:00-07:00,22.06833330790202,60.0,60000.0 +4314,2025-06-06T23:54:00-07:00,22.062001037597657,60.0,60000.0 +4315,2025-06-06T23:55:00-07:00,22.061667760213215,60.0,60000.0 +4316,2025-06-06T23:56:00-07:00,22.05666732788086,60.0,60000.0 +4317,2025-06-06T23:57:00-07:00,22.050000762939455,60.0,60000.0 +4318,2025-06-06T23:58:00-07:00,22.043333689371746,60.0,60000.0 +4319,2025-06-06T23:59:00-07:00,22.036666870117188,60.0,60000.0 +4320,2025-06-07T00:00:00-07:00,22.0379997253418,60.0,60000.0 +4321,2025-06-07T00:01:00-07:00,22.026666005452473,60.0,60000.0 +4322,2025-06-07T00:02:00-07:00,22.026666005452473,60.0,60000.0 +4323,2025-06-07T00:03:00-07:00,22.025999450683592,60.0,60000.0 +4324,2025-06-07T00:04:00-07:00,22.016666412353516,60.0,60000.0 +4325,2025-06-07T00:05:00-07:00,22.0049991607666,60.0,60000.0 +4326,2025-06-07T00:06:00-07:00,22.0,60.0,60000.0 +4327,2025-06-07T00:07:00-07:00,21.991668065388996,60.0,60000.0 +4328,2025-06-07T00:08:00-07:00,21.98666763305664,60.0,60000.0 +4329,2025-06-07T00:09:00-07:00,21.990001678466797,60.0,60000.0 +4330,2025-06-07T00:10:00-07:00,21.980000178019207,60.0,60000.0 +4331,2025-06-07T00:11:00-07:00,21.971667607625324,60.0,60000.0 +4332,2025-06-07T00:12:00-07:00,21.972000885009766,60.0,60000.0 +4333,2025-06-07T00:13:00-07:00,21.975000381469727,60.0,60000.0 +4334,2025-06-07T00:14:00-07:00,21.976666768391926,60.0,60000.0 +4335,2025-06-07T00:15:00-07:00,21.973333994547527,60.0,60000.0 +4336,2025-06-07T00:16:00-07:00,21.970001220703125,60.0,60000.0 +4337,2025-06-07T00:17:00-07:00,21.959999720255535,60.0,60000.0 +4338,2025-06-07T00:18:00-07:00,21.961666107177734,60.0,60000.0 +4339,2025-06-07T00:19:00-07:00,21.959999084472656,60.0,60000.0 +4340,2025-06-07T00:20:00-07:00,21.954999923706055,60.0,60000.0 +4341,2025-06-07T00:21:00-07:00,21.950000127156574,60.0,60000.0 +4342,2025-06-07T00:22:00-07:00,21.937998962402343,60.0,60000.0 +4343,2025-06-07T00:23:00-07:00,21.931666056315105,60.0,60000.0 +4344,2025-06-07T00:24:00-07:00,21.929999669392902,60.0,60000.0 +4345,2025-06-07T00:25:00-07:00,21.91799850463867,60.0,60000.0 +4346,2025-06-07T00:26:00-07:00,21.906667073567707,60.0,60000.0 +4347,2025-06-07T00:27:00-07:00,21.900000254313152,60.0,60000.0 +4348,2025-06-07T00:28:00-07:00,21.886000061035155,60.0,60000.0 +4349,2025-06-07T00:29:00-07:00,21.891666412353516,60.0,60000.0 +4350,2025-06-07T00:30:00-07:00,21.888333002726238,60.0,60000.0 +4351,2025-06-07T00:31:00-07:00,21.886000061035155,60.0,60000.0 +4352,2025-06-07T00:32:00-07:00,21.88166618347168,60.0,60000.0 +4353,2025-06-07T00:33:00-07:00,21.873332977294922,60.0,60000.0 +4354,2025-06-07T00:34:00-07:00,21.867999267578124,60.0,60000.0 +4355,2025-06-07T00:35:00-07:00,21.858333587646484,60.0,60000.0 +4356,2025-06-07T00:36:00-07:00,21.860000610351562,60.0,60000.0 +4357,2025-06-07T00:37:00-07:00,21.855999755859376,60.0,60000.0 +4358,2025-06-07T00:38:00-07:00,21.843332926432293,60.0,60000.0 +4359,2025-06-07T00:39:00-07:00,21.83333460489909,60.0,60000.0 +4360,2025-06-07T00:40:00-07:00,21.828001403808592,60.0,60000.0 +4361,2025-06-07T00:41:00-07:00,21.81833330790202,60.0,60000.0 +4362,2025-06-07T00:42:00-07:00,21.818333943684895,60.0,60000.0 +4363,2025-06-07T00:43:00-07:00,21.816000366210936,60.0,60000.0 +4364,2025-06-07T00:44:00-07:00,21.811667760213215,60.0,60000.0 +4365,2025-06-07T00:45:00-07:00,21.810001373291016,60.0,60000.0 +4366,2025-06-07T00:46:00-07:00,21.80800094604492,60.0,60000.0 +4367,2025-06-07T00:47:00-07:00,21.801666895548504,60.0,60000.0 +4368,2025-06-07T00:48:00-07:00,21.803333918253582,60.0,60000.0 +4369,2025-06-07T00:49:00-07:00,21.795999908447264,60.0,60000.0 +4370,2025-06-07T00:50:00-07:00,21.788333257039387,60.0,60000.0 +4371,2025-06-07T00:51:00-07:00,21.781665802001953,60.0,60000.0 +4372,2025-06-07T00:52:00-07:00,21.773999786376955,60.0,60000.0 +4373,2025-06-07T00:53:00-07:00,21.770000457763672,60.0,60000.0 +4374,2025-06-07T00:54:00-07:00,21.764999389648438,60.0,60000.0 +4375,2025-06-07T00:55:00-07:00,21.7619987487793,60.0,60000.0 +4376,2025-06-07T00:56:00-07:00,21.76333236694336,60.0,60000.0 +4377,2025-06-07T00:57:00-07:00,21.7549991607666,60.0,60000.0 +4378,2025-06-07T00:58:00-07:00,21.75,60.0,60000.0 +4379,2025-06-07T00:59:00-07:00,21.7433344523112,60.0,60000.0 +4380,2025-06-07T01:00:00-07:00,21.7433344523112,60.0,60000.0 +4381,2025-06-07T01:01:00-07:00,21.73600082397461,60.0,60000.0 +4382,2025-06-07T01:02:00-07:00,21.73666763305664,60.0,60000.0 +4383,2025-06-07T01:03:00-07:00,21.73666763305664,60.0,60000.0 +4384,2025-06-07T01:04:00-07:00,21.731999969482423,60.0,60000.0 +4385,2025-06-07T01:05:00-07:00,21.729999542236328,60.0,60000.0 +4386,2025-06-07T01:06:00-07:00,21.72833315531413,60.0,60000.0 +4387,2025-06-07T01:07:00-07:00,21.726000213623045,60.0,60000.0 +4388,2025-06-07T01:08:00-07:00,21.725000381469727,60.0,60000.0 +4389,2025-06-07T01:09:00-07:00,21.715714590890066,60.0,60000.0 +4390,2025-06-07T01:10:00-07:00,21.70199966430664,60.0,60000.0 +4391,2025-06-07T01:11:00-07:00,21.69333267211914,60.0,60000.0 +4392,2025-06-07T01:12:00-07:00,21.696666717529297,60.0,60000.0 +4393,2025-06-07T01:13:00-07:00,21.698000335693358,60.0,60000.0 +4394,2025-06-07T01:14:00-07:00,21.69499969482422,60.0,60000.0 +4395,2025-06-07T01:15:00-07:00,21.691665649414062,60.0,60000.0 +4396,2025-06-07T01:16:00-07:00,21.689999389648438,60.0,60000.0 +4397,2025-06-07T01:17:00-07:00,21.69333267211914,60.0,60000.0 +4398,2025-06-07T01:18:00-07:00,21.688332239786785,60.0,60000.0 +4399,2025-06-07T01:19:00-07:00,21.69199905395508,60.0,60000.0 +4400,2025-06-07T01:20:00-07:00,21.68142809186663,60.0,60000.0 +4401,2025-06-07T01:21:00-07:00,21.67166519165039,60.0,60000.0 +4402,2025-06-07T01:22:00-07:00,21.66799850463867,60.0,60000.0 +4403,2025-06-07T01:23:00-07:00,21.66285651070731,60.0,60000.0 +4404,2025-06-07T01:24:00-07:00,21.66333262125651,60.0,60000.0 +4405,2025-06-07T01:25:00-07:00,21.658000183105468,60.0,60000.0 +4406,2025-06-07T01:26:00-07:00,21.650001525878906,60.0,60000.0 +4407,2025-06-07T01:27:00-07:00,21.648334503173828,60.0,60000.0 +4408,2025-06-07T01:28:00-07:00,21.642000579833983,60.0,60000.0 +4409,2025-06-07T01:29:00-07:00,21.650000254313152,60.0,60000.0 +4410,2025-06-07T01:30:00-07:00,21.66666603088379,60.0,60000.0 +4411,2025-06-07T01:31:00-07:00,21.667999267578125,60.0,60000.0 +4412,2025-06-07T01:32:00-07:00,21.676666259765625,60.0,60000.0 +4413,2025-06-07T01:33:00-07:00,21.676666259765625,60.0,60000.0 +4414,2025-06-07T01:34:00-07:00,21.6739990234375,60.0,60000.0 +4415,2025-06-07T01:35:00-07:00,21.66499900817871,60.0,60000.0 +4416,2025-06-07T01:36:00-07:00,21.65333429972331,60.0,60000.0 +4417,2025-06-07T01:37:00-07:00,21.644000244140624,60.0,60000.0 +4418,2025-06-07T01:38:00-07:00,21.64142826625279,60.0,60000.0 +4419,2025-06-07T01:39:00-07:00,21.638333002726238,60.0,60000.0 +4420,2025-06-07T01:40:00-07:00,21.62800064086914,60.0,60000.0 +4421,2025-06-07T01:41:00-07:00,21.630001068115234,60.0,60000.0 +4422,2025-06-07T01:42:00-07:00,21.625,60.0,60000.0 +4423,2025-06-07T01:43:00-07:00,21.614999771118164,60.0,60000.0 +4424,2025-06-07T01:44:00-07:00,21.60999984741211,60.0,60000.0 +4425,2025-06-07T01:45:00-07:00,21.611666997273762,60.0,60000.0 +4426,2025-06-07T01:46:00-07:00,21.614999771118164,60.0,60000.0 +4427,2025-06-07T01:47:00-07:00,21.60199890136719,60.0,60000.0 +4428,2025-06-07T01:48:00-07:00,21.59666570027669,60.0,60000.0 +4429,2025-06-07T01:49:00-07:00,21.58833376566569,60.0,60000.0 +4430,2025-06-07T01:50:00-07:00,21.58400115966797,60.0,60000.0 +4431,2025-06-07T01:51:00-07:00,21.575000762939453,60.0,60000.0 +4432,2025-06-07T01:52:00-07:00,21.570000330607098,60.0,60000.0 +4433,2025-06-07T01:53:00-07:00,21.559999847412108,60.0,60000.0 +4434,2025-06-07T01:54:00-07:00,21.551666259765625,60.0,60000.0 +4435,2025-06-07T01:55:00-07:00,21.548332850138348,60.0,60000.0 +4436,2025-06-07T01:56:00-07:00,21.54800033569336,60.0,60000.0 +4437,2025-06-07T01:57:00-07:00,21.560001373291016,60.0,60000.0 +4438,2025-06-07T01:58:00-07:00,21.55500030517578,60.0,60000.0 +4439,2025-06-07T01:59:00-07:00,21.551999664306642,60.0,60000.0 +4440,2025-06-07T02:00:00-07:00,21.545000076293945,60.0,60000.0 +4441,2025-06-07T02:01:00-07:00,21.538333892822266,60.0,60000.0 +4442,2025-06-07T02:02:00-07:00,21.540000915527344,60.0,60000.0 +4443,2025-06-07T02:03:00-07:00,21.538333892822266,60.0,60000.0 +4444,2025-06-07T02:04:00-07:00,21.541667302449543,60.0,60000.0 +4445,2025-06-07T02:05:00-07:00,21.540000915527344,60.0,60000.0 +4446,2025-06-07T02:06:00-07:00,21.538333257039387,60.0,60000.0 +4447,2025-06-07T02:07:00-07:00,21.540000279744465,60.0,60000.0 +4448,2025-06-07T02:08:00-07:00,21.5379997253418,60.0,60000.0 +4449,2025-06-07T02:09:00-07:00,21.529999415079754,60.0,60000.0 +4450,2025-06-07T02:10:00-07:00,21.521666208902996,60.0,60000.0 +4451,2025-06-07T02:11:00-07:00,21.522000122070313,60.0,60000.0 +4452,2025-06-07T02:12:00-07:00,21.518333435058594,60.0,60000.0 +4453,2025-06-07T02:13:00-07:00,21.516666412353516,60.0,60000.0 +4454,2025-06-07T02:14:00-07:00,21.51399917602539,60.0,60000.0 +4455,2025-06-07T02:15:00-07:00,21.516665776570637,60.0,60000.0 +4456,2025-06-07T02:16:00-07:00,21.520000457763672,60.0,60000.0 +4457,2025-06-07T02:17:00-07:00,21.53199920654297,60.0,60000.0 +4458,2025-06-07T02:18:00-07:00,21.526666005452473,60.0,60000.0 +4459,2025-06-07T02:19:00-07:00,21.529999415079754,60.0,60000.0 +4460,2025-06-07T02:20:00-07:00,21.529998779296875,60.0,60000.0 +4461,2025-06-07T02:21:00-07:00,21.528332392374676,60.0,60000.0 +4462,2025-06-07T02:22:00-07:00,21.519999821980793,60.0,60000.0 +4463,2025-06-07T02:23:00-07:00,21.520000457763672,60.0,60000.0 +4464,2025-06-07T02:24:00-07:00,21.518333435058594,60.0,60000.0 +4465,2025-06-07T02:25:00-07:00,21.519999821980793,60.0,60000.0 +4466,2025-06-07T02:26:00-07:00,21.522000122070313,60.0,60000.0 +4467,2025-06-07T02:27:00-07:00,21.51333236694336,60.0,60000.0 +4468,2025-06-07T02:28:00-07:00,21.51166534423828,60.0,60000.0 +4469,2025-06-07T02:29:00-07:00,21.509998321533203,60.0,60000.0 +4470,2025-06-07T02:30:00-07:00,21.5049991607666,60.0,60000.0 +4471,2025-06-07T02:31:00-07:00,21.5,60.0,60000.0 +4472,2025-06-07T02:32:00-07:00,21.496000671386717,60.0,60000.0 +4473,2025-06-07T02:33:00-07:00,21.4950008392334,60.0,60000.0 +4474,2025-06-07T02:34:00-07:00,21.490001042683918,60.0,60000.0 +4475,2025-06-07T02:35:00-07:00,21.48399963378906,60.0,60000.0 +4476,2025-06-07T02:36:00-07:00,21.480000813802082,60.0,60000.0 +4477,2025-06-07T02:37:00-07:00,21.46666717529297,60.0,60000.0 +4478,2025-06-07T02:38:00-07:00,21.452000427246094,60.0,60000.0 +4479,2025-06-07T02:39:00-07:00,21.44333330790202,60.0,60000.0 +4480,2025-06-07T02:40:00-07:00,21.424998601277668,60.0,60000.0 +4481,2025-06-07T02:41:00-07:00,21.4239990234375,60.0,60000.0 +4482,2025-06-07T02:42:00-07:00,21.41999880472819,60.0,60000.0 +4483,2025-06-07T02:43:00-07:00,21.40833346048991,60.0,60000.0 +4484,2025-06-07T02:44:00-07:00,21.40400085449219,60.0,60000.0 +4485,2025-06-07T02:45:00-07:00,21.401667912801106,60.0,60000.0 +4486,2025-06-07T02:46:00-07:00,21.398334503173828,60.0,60000.0 +4487,2025-06-07T02:47:00-07:00,21.402000427246094,60.0,60000.0 +4488,2025-06-07T02:48:00-07:00,21.390000025431316,60.0,60000.0 +4489,2025-06-07T02:49:00-07:00,21.383333841959637,60.0,60000.0 +4490,2025-06-07T02:50:00-07:00,21.378334045410156,60.0,60000.0 +4491,2025-06-07T02:51:00-07:00,21.367999267578124,60.0,60000.0 +4492,2025-06-07T02:52:00-07:00,21.366666158040363,60.0,60000.0 +4493,2025-06-07T02:53:00-07:00,21.363333384195965,60.0,60000.0 +4494,2025-06-07T02:54:00-07:00,21.37800064086914,60.0,60000.0 +4495,2025-06-07T02:55:00-07:00,21.373332977294922,60.0,60000.0 +4496,2025-06-07T02:56:00-07:00,21.376667022705078,60.0,60000.0 +4497,2025-06-07T02:57:00-07:00,21.376000213623048,60.0,60000.0 +4498,2025-06-07T02:58:00-07:00,21.361666361490887,60.0,60000.0 +4499,2025-06-07T02:59:00-07:00,21.356666564941406,60.0,60000.0 +4500,2025-06-07T03:00:00-07:00,21.347998809814452,60.0,60000.0 +4501,2025-06-07T03:01:00-07:00,21.34166653951009,60.0,60000.0 +4502,2025-06-07T03:02:00-07:00,21.33333396911621,60.0,60000.0 +4503,2025-06-07T03:03:00-07:00,21.3260009765625,60.0,60000.0 +4504,2025-06-07T03:04:00-07:00,21.31833330790202,60.0,60000.0 +4505,2025-06-07T03:05:00-07:00,21.315000534057617,60.0,60000.0 +4506,2025-06-07T03:06:00-07:00,21.301999664306642,60.0,60000.0 +4507,2025-06-07T03:07:00-07:00,21.303333282470703,60.0,60000.0 +4508,2025-06-07T03:08:00-07:00,21.310000737508137,60.0,60000.0 +4509,2025-06-07T03:09:00-07:00,21.297999572753906,60.0,60000.0 +4510,2025-06-07T03:10:00-07:00,21.299999237060547,60.0,60000.0 +4511,2025-06-07T03:11:00-07:00,21.295000076293945,60.0,60000.0 +4512,2025-06-07T03:12:00-07:00,21.286000061035157,60.0,60000.0 +4513,2025-06-07T03:13:00-07:00,21.281666437784832,60.0,60000.0 +4514,2025-06-07T03:14:00-07:00,21.268333435058594,60.0,60000.0 +4515,2025-06-07T03:15:00-07:00,21.265999603271485,60.0,60000.0 +4516,2025-06-07T03:16:00-07:00,21.26166534423828,60.0,60000.0 +4517,2025-06-07T03:17:00-07:00,21.259998321533203,60.0,60000.0 +4518,2025-06-07T03:18:00-07:00,21.259999084472657,60.0,60000.0 +4519,2025-06-07T03:19:00-07:00,21.258331934611004,60.0,60000.0 +4520,2025-06-07T03:20:00-07:00,21.2566655476888,60.0,60000.0 +4521,2025-06-07T03:21:00-07:00,21.25199966430664,60.0,60000.0 +4522,2025-06-07T03:22:00-07:00,21.25,60.0,60000.0 +4523,2025-06-07T03:23:00-07:00,21.2566655476888,60.0,60000.0 +4524,2025-06-07T03:24:00-07:00,21.25199966430664,60.0,60000.0 +4525,2025-06-07T03:25:00-07:00,21.2566655476888,60.0,60000.0 +4526,2025-06-07T03:26:00-07:00,21.258331934611004,60.0,60000.0 +4527,2025-06-07T03:27:00-07:00,21.253999328613283,60.0,60000.0 +4528,2025-06-07T03:28:00-07:00,21.2566655476888,60.0,60000.0 +4529,2025-06-07T03:29:00-07:00,21.2450008392334,60.0,60000.0 +4530,2025-06-07T03:30:00-07:00,21.246000671386717,60.0,60000.0 +4531,2025-06-07T03:31:00-07:00,21.241668065388996,60.0,60000.0 +4532,2025-06-07T03:32:00-07:00,21.240001042683918,60.0,60000.0 +4533,2025-06-07T03:33:00-07:00,21.229999542236328,60.0,60000.0 +4534,2025-06-07T03:34:00-07:00,21.218333562215168,60.0,60000.0 +4535,2025-06-07T03:35:00-07:00,21.209999720255535,60.0,60000.0 +4536,2025-06-07T03:36:00-07:00,21.209999084472656,60.0,60000.0 +4537,2025-06-07T03:37:00-07:00,21.203333536783855,60.0,60000.0 +4538,2025-06-07T03:38:00-07:00,21.203333536783855,60.0,60000.0 +4539,2025-06-07T03:39:00-07:00,21.187999725341797,60.0,60000.0 +4540,2025-06-07T03:40:00-07:00,21.196666081746418,60.0,60000.0 +4541,2025-06-07T03:41:00-07:00,21.18500010172526,60.0,60000.0 +4542,2025-06-07T03:42:00-07:00,21.187999725341797,60.0,60000.0 +4543,2025-06-07T03:43:00-07:00,21.191666920979817,60.0,60000.0 +4544,2025-06-07T03:44:00-07:00,21.18666648864746,60.0,60000.0 +4545,2025-06-07T03:45:00-07:00,21.181999969482423,60.0,60000.0 +4546,2025-06-07T03:46:00-07:00,21.178333282470703,60.0,60000.0 +4547,2025-06-07T03:47:00-07:00,21.176666259765625,60.0,60000.0 +4548,2025-06-07T03:48:00-07:00,21.171998596191408,60.0,60000.0 +4549,2025-06-07T03:49:00-07:00,21.18000030517578,60.0,60000.0 +4550,2025-06-07T03:50:00-07:00,21.17333221435547,60.0,60000.0 +4551,2025-06-07T03:51:00-07:00,21.16799850463867,60.0,60000.0 +4552,2025-06-07T03:52:00-07:00,21.16666539510091,60.0,60000.0 +4553,2025-06-07T03:53:00-07:00,21.16833241780599,60.0,60000.0 +4554,2025-06-07T03:54:00-07:00,21.171998596191408,60.0,60000.0 +4555,2025-06-07T03:55:00-07:00,21.168331782023113,60.0,60000.0 +4556,2025-06-07T03:56:00-07:00,21.16333262125651,60.0,60000.0 +4557,2025-06-07T03:57:00-07:00,21.16599884033203,60.0,60000.0 +4558,2025-06-07T03:58:00-07:00,21.156667073567707,60.0,60000.0 +4559,2025-06-07T03:59:00-07:00,21.144286019461497,60.0,60000.0 +4560,2025-06-07T04:00:00-07:00,21.134000396728517,60.0,60000.0 +4561,2025-06-07T04:01:00-07:00,21.128334045410156,60.0,60000.0 +4562,2025-06-07T04:02:00-07:00,21.128334045410156,60.0,60000.0 +4563,2025-06-07T04:03:00-07:00,21.126000213623048,60.0,60000.0 +4564,2025-06-07T04:04:00-07:00,21.123332977294922,60.0,60000.0 +4565,2025-06-07T04:05:00-07:00,21.123332977294922,60.0,60000.0 +4566,2025-06-07T04:06:00-07:00,21.125,60.0,60000.0 +4567,2025-06-07T04:07:00-07:00,21.119998931884766,60.0,60000.0 +4568,2025-06-07T04:08:00-07:00,21.118332544962566,60.0,60000.0 +4569,2025-06-07T04:09:00-07:00,21.11833318074544,60.0,60000.0 +4570,2025-06-07T04:10:00-07:00,21.117999267578124,60.0,60000.0 +4571,2025-06-07T04:11:00-07:00,21.113333384195965,60.0,60000.0 +4572,2025-06-07T04:12:00-07:00,21.108333587646484,60.0,60000.0 +4573,2025-06-07T04:13:00-07:00,21.108000183105467,60.0,60000.0 +4574,2025-06-07T04:14:00-07:00,21.104999542236328,60.0,60000.0 +4575,2025-06-07T04:15:00-07:00,21.10333251953125,60.0,60000.0 +4576,2025-06-07T04:16:00-07:00,21.099998474121094,60.0,60000.0 +4577,2025-06-07T04:17:00-07:00,21.101665496826172,60.0,60000.0 +4578,2025-06-07T04:18:00-07:00,21.106666564941406,60.0,60000.0 +4579,2025-06-07T04:19:00-07:00,21.108000183105467,60.0,60000.0 +4580,2025-06-07T04:20:00-07:00,21.1028562273298,60.0,60000.0 +4581,2025-06-07T04:21:00-07:00,21.099999109903973,60.0,60000.0 +4582,2025-06-07T04:22:00-07:00,21.10399932861328,60.0,60000.0 +4583,2025-06-07T04:23:00-07:00,21.10333251953125,60.0,60000.0 +4584,2025-06-07T04:24:00-07:00,21.094999313354492,60.0,60000.0 +4585,2025-06-07T04:25:00-07:00,21.097998809814452,60.0,60000.0 +4586,2025-06-07T04:26:00-07:00,21.104999542236328,60.0,60000.0 +4587,2025-06-07T04:27:00-07:00,21.098332087198894,60.0,60000.0 +4588,2025-06-07T04:28:00-07:00,21.097998809814452,60.0,60000.0 +4589,2025-06-07T04:29:00-07:00,21.098332087198894,60.0,60000.0 +4590,2025-06-07T04:30:00-07:00,21.099999109903973,60.0,60000.0 +4591,2025-06-07T04:31:00-07:00,21.099998474121094,60.0,60000.0 +4592,2025-06-07T04:32:00-07:00,21.09000015258789,60.0,60000.0 +4593,2025-06-07T04:33:00-07:00,21.074286324637278,60.0,60000.0 +4594,2025-06-07T04:34:00-07:00,21.072000122070314,60.0,60000.0 +4595,2025-06-07T04:35:00-07:00,21.07833480834961,60.0,60000.0 +4596,2025-06-07T04:36:00-07:00,21.071666717529297,60.0,60000.0 +4597,2025-06-07T04:37:00-07:00,21.068000030517577,60.0,60000.0 +4598,2025-06-07T04:38:00-07:00,21.06999969482422,60.0,60000.0 +4599,2025-06-07T04:39:00-07:00,21.071666717529297,60.0,60000.0 +4600,2025-06-07T04:40:00-07:00,21.06800079345703,60.0,60000.0 +4601,2025-06-07T04:41:00-07:00,21.061667760213215,60.0,60000.0 +4602,2025-06-07T04:42:00-07:00,21.065000534057617,60.0,60000.0 +4603,2025-06-07T04:43:00-07:00,21.0640007019043,60.0,60000.0 +4604,2025-06-07T04:44:00-07:00,21.063334147135418,60.0,60000.0 +4605,2025-06-07T04:45:00-07:00,21.051666259765625,60.0,60000.0 +4606,2025-06-07T04:46:00-07:00,21.049999237060547,60.0,60000.0 +4607,2025-06-07T04:47:00-07:00,21.053333282470703,60.0,60000.0 +4608,2025-06-07T04:48:00-07:00,21.05500030517578,60.0,60000.0 +4609,2025-06-07T04:49:00-07:00,21.049999237060547,60.0,60000.0 +4610,2025-06-07T04:50:00-07:00,21.048332850138348,60.0,60000.0 +4611,2025-06-07T04:51:00-07:00,21.046666463216145,60.0,60000.0 +4612,2025-06-07T04:52:00-07:00,21.04199981689453,60.0,60000.0 +4613,2025-06-07T04:53:00-07:00,21.040000279744465,60.0,60000.0 +4614,2025-06-07T04:54:00-07:00,21.029998779296875,60.0,60000.0 +4615,2025-06-07T04:55:00-07:00,21.025999450683592,60.0,60000.0 +4616,2025-06-07T04:56:00-07:00,21.02166684468587,60.0,60000.0 +4617,2025-06-07T04:57:00-07:00,21.018333435058594,60.0,60000.0 +4618,2025-06-07T04:58:00-07:00,21.018000030517577,60.0,60000.0 +4619,2025-06-07T04:59:00-07:00,21.01333236694336,60.0,60000.0 +4620,2025-06-07T05:00:00-07:00,21.014999389648438,60.0,60000.0 +4621,2025-06-07T05:01:00-07:00,21.020000457763672,60.0,60000.0 +4622,2025-06-07T05:02:00-07:00,21.014999389648438,60.0,60000.0 +4623,2025-06-07T05:03:00-07:00,21.018333435058594,60.0,60000.0 +4624,2025-06-07T05:04:00-07:00,21.01399917602539,60.0,60000.0 +4625,2025-06-07T05:05:00-07:00,21.014999389648438,60.0,60000.0 +4626,2025-06-07T05:06:00-07:00,21.0066655476888,60.0,60000.0 +4627,2025-06-07T05:07:00-07:00,21.00199966430664,60.0,60000.0 +4628,2025-06-07T05:08:00-07:00,21.0016663869222,60.0,60000.0 +4629,2025-06-07T05:09:00-07:00,21.0,60.0,60000.0 +4630,2025-06-07T05:10:00-07:00,20.99800033569336,60.0,60000.0 +4631,2025-06-07T05:11:00-07:00,20.996667226155598,60.0,60000.0 +4632,2025-06-07T05:12:00-07:00,20.9933344523112,60.0,60000.0 +4633,2025-06-07T05:13:00-07:00,20.990001678466797,60.0,60000.0 +4634,2025-06-07T05:14:00-07:00,20.991668065388996,60.0,60000.0 +4635,2025-06-07T05:15:00-07:00,20.991668065388996,60.0,60000.0 +4636,2025-06-07T05:16:00-07:00,20.9880012512207,60.0,60000.0 +4637,2025-06-07T05:17:00-07:00,20.98833465576172,60.0,60000.0 +4638,2025-06-07T05:18:00-07:00,20.98666763305664,60.0,60000.0 +4639,2025-06-07T05:19:00-07:00,20.981999969482423,60.0,60000.0 +4640,2025-06-07T05:20:00-07:00,20.97833315531413,60.0,60000.0 +4641,2025-06-07T05:21:00-07:00,20.97833315531413,60.0,60000.0 +4642,2025-06-07T05:22:00-07:00,20.984000396728515,60.0,60000.0 +4643,2025-06-07T05:23:00-07:00,20.975000381469727,60.0,60000.0 +4644,2025-06-07T05:24:00-07:00,20.981666564941406,60.0,60000.0 +4645,2025-06-07T05:25:00-07:00,20.972000885009766,60.0,60000.0 +4646,2025-06-07T05:26:00-07:00,20.968334197998047,60.0,60000.0 +4647,2025-06-07T05:27:00-07:00,20.958332697550457,60.0,60000.0 +4648,2025-06-07T05:28:00-07:00,20.961666742960613,60.0,60000.0 +4649,2025-06-07T05:29:00-07:00,20.959999084472656,60.0,60000.0 +4650,2025-06-07T05:30:00-07:00,20.96500015258789,60.0,60000.0 +4651,2025-06-07T05:31:00-07:00,20.96500015258789,60.0,60000.0 +4652,2025-06-07T05:32:00-07:00,20.96800079345703,60.0,60000.0 +4653,2025-06-07T05:33:00-07:00,20.96666653951009,60.0,60000.0 +4654,2025-06-07T05:34:00-07:00,20.958332697550457,60.0,60000.0 +4655,2025-06-07T05:35:00-07:00,20.954000091552736,60.0,60000.0 +4656,2025-06-07T05:36:00-07:00,20.958332697550457,60.0,60000.0 +4657,2025-06-07T05:37:00-07:00,20.954999923706055,60.0,60000.0 +4658,2025-06-07T05:38:00-07:00,20.954000091552736,60.0,60000.0 +4659,2025-06-07T05:39:00-07:00,20.948333740234375,60.0,60000.0 +4660,2025-06-07T05:40:00-07:00,20.948333104451496,60.0,60000.0 +4661,2025-06-07T05:41:00-07:00,20.94199981689453,60.0,60000.0 +4662,2025-06-07T05:42:00-07:00,20.936665852864582,60.0,60000.0 +4663,2025-06-07T05:43:00-07:00,20.933333079020183,60.0,60000.0 +4664,2025-06-07T05:44:00-07:00,20.937998962402343,60.0,60000.0 +4665,2025-06-07T05:45:00-07:00,20.93166669209798,60.0,60000.0 +4666,2025-06-07T05:46:00-07:00,20.93166669209798,60.0,60000.0 +4667,2025-06-07T05:47:00-07:00,20.9359992980957,60.0,60000.0 +4668,2025-06-07T05:48:00-07:00,20.933333079020183,60.0,60000.0 +4669,2025-06-07T05:49:00-07:00,20.928332646687824,60.0,60000.0 +4670,2025-06-07T05:50:00-07:00,20.925999450683594,60.0,60000.0 +4671,2025-06-07T05:51:00-07:00,20.92333221435547,60.0,60000.0 +4672,2025-06-07T05:52:00-07:00,20.918331782023113,60.0,60000.0 +4673,2025-06-07T05:53:00-07:00,20.91599884033203,60.0,60000.0 +4674,2025-06-07T05:54:00-07:00,20.91333262125651,60.0,60000.0 +4675,2025-06-07T05:55:00-07:00,20.90833346048991,60.0,60000.0 +4676,2025-06-07T05:56:00-07:00,20.906000518798827,60.0,60000.0 +4677,2025-06-07T05:57:00-07:00,20.90333429972331,60.0,60000.0 +4678,2025-06-07T05:58:00-07:00,20.889999389648438,60.0,60000.0 +4679,2025-06-07T05:59:00-07:00,20.887999725341796,60.0,60000.0 +4680,2025-06-07T06:00:00-07:00,20.889999389648438,60.0,60000.0 +4681,2025-06-07T06:01:00-07:00,20.889999389648438,60.0,60000.0 +4682,2025-06-07T06:02:00-07:00,20.891999816894533,60.0,60000.0 +4683,2025-06-07T06:03:00-07:00,20.886666615804035,60.0,60000.0 +4684,2025-06-07T06:04:00-07:00,20.880001068115234,60.0,60000.0 +4685,2025-06-07T06:05:00-07:00,20.886000061035155,60.0,60000.0 +4686,2025-06-07T06:06:00-07:00,20.883333841959637,60.0,60000.0 +4687,2025-06-07T06:07:00-07:00,20.883333841959637,60.0,60000.0 +4688,2025-06-07T06:08:00-07:00,20.880001068115234,60.0,60000.0 +4689,2025-06-07T06:09:00-07:00,20.880001068115234,60.0,60000.0 +4690,2025-06-07T06:10:00-07:00,20.8733336130778,60.0,60000.0 +4691,2025-06-07T06:11:00-07:00,20.873999786376952,60.0,60000.0 +4692,2025-06-07T06:12:00-07:00,20.871665954589844,60.0,60000.0 +4693,2025-06-07T06:13:00-07:00,20.869998931884766,60.0,60000.0 +4694,2025-06-07T06:14:00-07:00,20.867999267578124,60.0,60000.0 +4695,2025-06-07T06:15:00-07:00,20.871665954589844,60.0,60000.0 +4696,2025-06-07T06:16:00-07:00,20.8733336130778,60.0,60000.0 +4697,2025-06-07T06:17:00-07:00,20.869998931884766,60.0,60000.0 +4698,2025-06-07T06:18:00-07:00,20.865000406901043,60.0,60000.0 +4699,2025-06-07T06:19:00-07:00,20.863332748413086,60.0,60000.0 +4700,2025-06-07T06:20:00-07:00,20.85199890136719,60.0,60000.0 +4701,2025-06-07T06:21:00-07:00,20.848332087198894,60.0,60000.0 +4702,2025-06-07T06:22:00-07:00,20.849999109903973,60.0,60000.0 +4703,2025-06-07T06:23:00-07:00,20.85199890136719,60.0,60000.0 +4704,2025-06-07T06:24:00-07:00,20.844999313354492,60.0,60000.0 +4705,2025-06-07T06:25:00-07:00,20.83166758219401,60.0,60000.0 +4706,2025-06-07T06:26:00-07:00,20.830001068115234,60.0,60000.0 +4707,2025-06-07T06:27:00-07:00,20.84166653951009,60.0,60000.0 +4708,2025-06-07T06:28:00-07:00,20.84166653951009,60.0,60000.0 +4709,2025-06-07T06:29:00-07:00,20.83200149536133,60.0,60000.0 +4710,2025-06-07T06:30:00-07:00,20.825000762939453,60.0,60000.0 +4711,2025-06-07T06:31:00-07:00,20.825000127156574,60.0,60000.0 +4712,2025-06-07T06:32:00-07:00,20.82666778564453,60.0,60000.0 +4713,2025-06-07T06:33:00-07:00,20.81800079345703,60.0,60000.0 +4714,2025-06-07T06:34:00-07:00,20.811667760213215,60.0,60000.0 +4715,2025-06-07T06:35:00-07:00,20.808334350585938,60.0,60000.0 +4716,2025-06-07T06:36:00-07:00,20.812001037597657,60.0,60000.0 +4717,2025-06-07T06:37:00-07:00,20.808334350585938,60.0,60000.0 +4718,2025-06-07T06:38:00-07:00,20.80666732788086,60.0,60000.0 +4719,2025-06-07T06:39:00-07:00,20.80800094604492,60.0,60000.0 +4720,2025-06-07T06:40:00-07:00,20.801666259765625,60.0,60000.0 +4721,2025-06-07T06:41:00-07:00,20.803333282470703,60.0,60000.0 +4722,2025-06-07T06:42:00-07:00,20.804000091552734,60.0,60000.0 +4723,2025-06-07T06:43:00-07:00,20.801666895548504,60.0,60000.0 +4724,2025-06-07T06:44:00-07:00,20.795000076293945,60.0,60000.0 +4725,2025-06-07T06:45:00-07:00,20.792000579833985,60.0,60000.0 +4726,2025-06-07T06:46:00-07:00,20.791667302449543,60.0,60000.0 +4727,2025-06-07T06:47:00-07:00,20.788333892822266,60.0,60000.0 +4728,2025-06-07T06:48:00-07:00,20.790000915527344,60.0,60000.0 +4729,2025-06-07T06:49:00-07:00,20.790000915527344,60.0,60000.0 +4730,2025-06-07T06:50:00-07:00,20.78499984741211,60.0,60000.0 +4731,2025-06-07T06:51:00-07:00,20.779998779296875,60.0,60000.0 +4732,2025-06-07T06:52:00-07:00,20.774999618530273,60.0,60000.0 +4733,2025-06-07T06:53:00-07:00,20.778332392374676,60.0,60000.0 +4734,2025-06-07T06:54:00-07:00,20.773999786376955,60.0,60000.0 +4735,2025-06-07T06:55:00-07:00,20.78333282470703,60.0,60000.0 +4736,2025-06-07T06:56:00-07:00,20.788333892822266,60.0,60000.0 +4737,2025-06-07T06:57:00-07:00,20.783999633789062,60.0,60000.0 +4738,2025-06-07T06:58:00-07:00,20.778332392374676,60.0,60000.0 +4739,2025-06-07T06:59:00-07:00,20.781665802001953,60.0,60000.0 +4740,2025-06-07T07:00:00-07:00,20.779998779296875,60.0,60000.0 +4741,2025-06-07T07:01:00-07:00,20.781665802001953,60.0,60000.0 +4742,2025-06-07T07:02:00-07:00,20.781665802001953,60.0,60000.0 +4743,2025-06-07T07:03:00-07:00,20.78199920654297,60.0,60000.0 +4744,2025-06-07T07:04:00-07:00,20.776666005452473,60.0,60000.0 +4745,2025-06-07T07:05:00-07:00,20.778332392374676,60.0,60000.0 +4746,2025-06-07T07:06:00-07:00,20.772000122070313,60.0,60000.0 +4747,2025-06-07T07:07:00-07:00,20.768333435058594,60.0,60000.0 +4748,2025-06-07T07:08:00-07:00,20.773333231608074,60.0,60000.0 +4749,2025-06-07T07:09:00-07:00,20.768000030517577,60.0,60000.0 +4750,2025-06-07T07:10:00-07:00,20.77166684468587,60.0,60000.0 +4751,2025-06-07T07:11:00-07:00,20.769999821980793,60.0,60000.0 +4752,2025-06-07T07:12:00-07:00,20.768000030517577,60.0,60000.0 +4753,2025-06-07T07:13:00-07:00,20.77166684468587,60.0,60000.0 +4754,2025-06-07T07:14:00-07:00,20.768333435058594,60.0,60000.0 +4755,2025-06-07T07:15:00-07:00,20.765999603271485,60.0,60000.0 +4756,2025-06-07T07:16:00-07:00,20.7566655476888,60.0,60000.0 +4757,2025-06-07T07:17:00-07:00,20.7549991607666,60.0,60000.0 +4758,2025-06-07T07:18:00-07:00,20.753999328613283,60.0,60000.0 +4759,2025-06-07T07:19:00-07:00,20.7566655476888,60.0,60000.0 +4760,2025-06-07T07:20:00-07:00,20.768333435058594,60.0,60000.0 +4761,2025-06-07T07:21:00-07:00,20.777999114990234,60.0,60000.0 +4762,2025-06-07T07:22:00-07:00,20.776666005452473,60.0,60000.0 +4763,2025-06-07T07:23:00-07:00,20.779998779296875,60.0,60000.0 +4764,2025-06-07T07:24:00-07:00,20.773999786376955,60.0,60000.0 +4765,2025-06-07T07:25:00-07:00,20.774999618530273,60.0,60000.0 +4766,2025-06-07T07:26:00-07:00,20.77166684468587,60.0,60000.0 +4767,2025-06-07T07:27:00-07:00,20.768000030517577,60.0,60000.0 +4768,2025-06-07T07:28:00-07:00,20.764999389648438,60.0,60000.0 +4769,2025-06-07T07:29:00-07:00,20.768333435058594,60.0,60000.0 +4770,2025-06-07T07:30:00-07:00,20.76399917602539,60.0,60000.0 +4771,2025-06-07T07:31:00-07:00,20.753332773844402,60.0,60000.0 +4772,2025-06-07T07:32:00-07:00,20.7516663869222,60.0,60000.0 +4773,2025-06-07T07:33:00-07:00,20.75599899291992,60.0,60000.0 +4774,2025-06-07T07:34:00-07:00,20.7566655476888,60.0,60000.0 +4775,2025-06-07T07:35:00-07:00,20.753332773844402,60.0,60000.0 +4776,2025-06-07T07:36:00-07:00,20.75,60.0,60000.0 +4777,2025-06-07T07:37:00-07:00,20.75,60.0,60000.0 +4778,2025-06-07T07:38:00-07:00,20.7457150050572,60.0,60000.0 +4779,2025-06-07T07:39:00-07:00,20.740001678466797,60.0,60000.0 +4780,2025-06-07T07:40:00-07:00,20.733333587646484,60.0,60000.0 +4781,2025-06-07T07:41:00-07:00,20.730000178019207,60.0,60000.0 +4782,2025-06-07T07:42:00-07:00,20.734000396728515,60.0,60000.0 +4783,2025-06-07T07:43:00-07:00,20.733333587646484,60.0,60000.0 +4784,2025-06-07T07:44:00-07:00,20.730000178019207,60.0,60000.0 +4785,2025-06-07T07:45:00-07:00,20.733333587646484,60.0,60000.0 +4786,2025-06-07T07:46:00-07:00,20.727999877929687,60.0,60000.0 +4787,2025-06-07T07:47:00-07:00,20.726666768391926,60.0,60000.0 +4788,2025-06-07T07:48:00-07:00,20.729999542236328,60.0,60000.0 +4789,2025-06-07T07:49:00-07:00,20.727999877929687,60.0,60000.0 +4790,2025-06-07T07:50:00-07:00,20.726666768391926,60.0,60000.0 +4791,2025-06-07T07:51:00-07:00,20.723333994547527,60.0,60000.0 +4792,2025-06-07T07:52:00-07:00,20.724000549316408,60.0,60000.0 +4793,2025-06-07T07:53:00-07:00,20.72833315531413,60.0,60000.0 +4794,2025-06-07T07:54:00-07:00,20.72833315531413,60.0,60000.0 +4795,2025-06-07T07:55:00-07:00,20.727999877929687,60.0,60000.0 +4796,2025-06-07T07:56:00-07:00,20.723333994547527,60.0,60000.0 +4797,2025-06-07T07:57:00-07:00,20.720001220703125,60.0,60000.0 +4798,2025-06-07T07:58:00-07:00,20.726000213623045,60.0,60000.0 +4799,2025-06-07T07:59:00-07:00,20.720001220703125,60.0,60000.0 +4800,2025-06-07T08:00:00-07:00,20.71666717529297,60.0,60000.0 +4801,2025-06-07T08:01:00-07:00,20.71199951171875,60.0,60000.0 +4802,2025-06-07T08:02:00-07:00,20.71666717529297,60.0,60000.0 +4803,2025-06-07T08:03:00-07:00,20.720001220703125,60.0,60000.0 +4804,2025-06-07T08:04:00-07:00,20.722000885009766,60.0,60000.0 +4805,2025-06-07T08:05:00-07:00,20.713333129882812,60.0,60000.0 +4806,2025-06-07T08:06:00-07:00,20.71666717529297,60.0,60000.0 +4807,2025-06-07T08:07:00-07:00,20.71199951171875,60.0,60000.0 +4808,2025-06-07T08:08:00-07:00,20.709999084472656,60.0,60000.0 +4809,2025-06-07T08:09:00-07:00,20.711666107177734,60.0,60000.0 +4810,2025-06-07T08:10:00-07:00,20.709999084472656,60.0,60000.0 +4811,2025-06-07T08:11:00-07:00,20.711666107177734,60.0,60000.0 +4812,2025-06-07T08:12:00-07:00,20.703333536783855,60.0,60000.0 +4813,2025-06-07T08:13:00-07:00,20.705999755859374,60.0,60000.0 +4814,2025-06-07T08:14:00-07:00,20.703333536783855,60.0,60000.0 +4815,2025-06-07T08:15:00-07:00,20.69499969482422,60.0,60000.0 +4816,2025-06-07T08:16:00-07:00,20.695999908447266,60.0,60000.0 +4817,2025-06-07T08:17:00-07:00,20.691665649414062,60.0,60000.0 +4818,2025-06-07T08:18:00-07:00,20.68833287556966,60.0,60000.0 +4819,2025-06-07T08:19:00-07:00,20.689998626708984,60.0,60000.0 +4820,2025-06-07T08:20:00-07:00,20.688332239786785,60.0,60000.0 +4821,2025-06-07T08:21:00-07:00,20.686665852864582,60.0,60000.0 +4822,2025-06-07T08:22:00-07:00,20.683999633789064,60.0,60000.0 +4823,2025-06-07T08:23:00-07:00,20.686665852864582,60.0,60000.0 +4824,2025-06-07T08:24:00-07:00,20.686665852864582,60.0,60000.0 +4825,2025-06-07T08:25:00-07:00,20.687998962402343,60.0,60000.0 +4826,2025-06-07T08:26:00-07:00,20.689998626708984,60.0,60000.0 +4827,2025-06-07T08:27:00-07:00,20.69166628519694,60.0,60000.0 +4828,2025-06-07T08:28:00-07:00,20.69199905395508,60.0,60000.0 +4829,2025-06-07T08:29:00-07:00,20.69499969482422,60.0,60000.0 +4830,2025-06-07T08:30:00-07:00,20.696666717529297,60.0,60000.0 +4831,2025-06-07T08:31:00-07:00,20.698000335693358,60.0,60000.0 +4832,2025-06-07T08:32:00-07:00,20.696666717529297,60.0,60000.0 +4833,2025-06-07T08:33:00-07:00,20.696666717529297,60.0,60000.0 +4834,2025-06-07T08:34:00-07:00,20.69399948120117,60.0,60000.0 +4835,2025-06-07T08:35:00-07:00,20.69333267211914,60.0,60000.0 +4836,2025-06-07T08:36:00-07:00,20.69499969482422,60.0,60000.0 +4837,2025-06-07T08:37:00-07:00,20.69399948120117,60.0,60000.0 +4838,2025-06-07T08:38:00-07:00,20.698333740234375,60.0,60000.0 +4839,2025-06-07T08:39:00-07:00,20.700000127156574,60.0,60000.0 +4840,2025-06-07T08:40:00-07:00,20.7,60.0,60000.0 +4841,2025-06-07T08:41:00-07:00,20.69333267211914,60.0,60000.0 +4842,2025-06-07T08:42:00-07:00,20.689999262491863,60.0,60000.0 +4843,2025-06-07T08:43:00-07:00,20.69199905395508,60.0,60000.0 +4844,2025-06-07T08:44:00-07:00,20.691665649414062,60.0,60000.0 +4845,2025-06-07T08:45:00-07:00,20.686665852864582,60.0,60000.0 +4846,2025-06-07T08:46:00-07:00,20.6859992980957,60.0,60000.0 +4847,2025-06-07T08:47:00-07:00,20.68166669209798,60.0,60000.0 +4848,2025-06-07T08:48:00-07:00,20.679999669392902,60.0,60000.0 +4849,2025-06-07T08:49:00-07:00,20.677999877929686,60.0,60000.0 +4850,2025-06-07T08:50:00-07:00,20.674999237060547,60.0,60000.0 +4851,2025-06-07T08:51:00-07:00,20.68000030517578,60.0,60000.0 +4852,2025-06-07T08:52:00-07:00,20.681999969482423,60.0,60000.0 +4853,2025-06-07T08:53:00-07:00,20.683333079020183,60.0,60000.0 +4854,2025-06-07T08:54:00-07:00,20.683333079020183,60.0,60000.0 +4855,2025-06-07T08:55:00-07:00,20.684999465942383,60.0,60000.0 +4856,2025-06-07T08:56:00-07:00,20.683999633789064,60.0,60000.0 +4857,2025-06-07T08:57:00-07:00,20.683332443237305,60.0,60000.0 +4858,2025-06-07T08:58:00-07:00,20.684998830159504,60.0,60000.0 +4859,2025-06-07T08:59:00-07:00,20.687998962402343,60.0,60000.0 +4860,2025-06-07T09:00:00-07:00,20.689998626708984,60.0,60000.0 +4861,2025-06-07T09:01:00-07:00,20.691665649414062,60.0,60000.0 +4862,2025-06-07T09:02:00-07:00,20.687998962402343,60.0,60000.0 +4863,2025-06-07T09:03:00-07:00,20.68000030517578,60.0,60000.0 +4864,2025-06-07T09:04:00-07:00,20.674999237060547,60.0,60000.0 +4865,2025-06-07T09:05:00-07:00,20.677999877929686,60.0,60000.0 +4866,2025-06-07T09:06:00-07:00,20.67166519165039,60.0,60000.0 +4867,2025-06-07T09:07:00-07:00,20.67166519165039,60.0,60000.0 +4868,2025-06-07T09:08:00-07:00,20.669998168945312,60.0,60000.0 +4869,2025-06-07T09:09:00-07:00,20.67166582743327,60.0,60000.0 +4870,2025-06-07T09:10:00-07:00,20.67333221435547,60.0,60000.0 +4871,2025-06-07T09:11:00-07:00,20.66799850463867,60.0,60000.0 +4872,2025-06-07T09:12:00-07:00,20.665713174002512,60.0,60000.0 +4873,2025-06-07T09:13:00-07:00,20.66333262125651,60.0,60000.0 +4874,2025-06-07T09:14:00-07:00,20.671998596191408,60.0,60000.0 +4875,2025-06-07T09:15:00-07:00,20.68166669209798,60.0,60000.0 +4876,2025-06-07T09:16:00-07:00,20.69333267211914,60.0,60000.0 +4877,2025-06-07T09:17:00-07:00,20.698000335693358,60.0,60000.0 +4878,2025-06-07T09:18:00-07:00,20.701666514078777,60.0,60000.0 +4879,2025-06-07T09:19:00-07:00,20.709999720255535,60.0,60000.0 +4880,2025-06-07T09:20:00-07:00,20.700000762939453,60.0,60000.0 +4881,2025-06-07T09:21:00-07:00,20.698333740234375,60.0,60000.0 +4882,2025-06-07T09:22:00-07:00,20.696666717529297,60.0,60000.0 +4883,2025-06-07T09:23:00-07:00,20.695999908447266,60.0,60000.0 +4884,2025-06-07T09:24:00-07:00,20.686665852864582,60.0,60000.0 +4885,2025-06-07T09:25:00-07:00,20.686665852864582,60.0,60000.0 +4886,2025-06-07T09:26:00-07:00,20.6859992980957,60.0,60000.0 +4887,2025-06-07T09:27:00-07:00,20.69333267211914,60.0,60000.0 +4888,2025-06-07T09:28:00-07:00,20.69499969482422,60.0,60000.0 +4889,2025-06-07T09:29:00-07:00,20.698000335693358,60.0,60000.0 +4890,2025-06-07T09:30:00-07:00,20.689998626708984,60.0,60000.0 +4891,2025-06-07T09:31:00-07:00,20.69499969482422,60.0,60000.0 +4892,2025-06-07T09:32:00-07:00,20.687998962402343,60.0,60000.0 +4893,2025-06-07T09:33:00-07:00,20.674999237060547,60.0,60000.0 +4894,2025-06-07T09:34:00-07:00,20.674999237060547,60.0,60000.0 +4895,2025-06-07T09:35:00-07:00,20.675999450683594,60.0,60000.0 +4896,2025-06-07T09:36:00-07:00,20.65999984741211,60.0,60000.0 +4897,2025-06-07T09:37:00-07:00,20.67333221435547,60.0,60000.0 +4898,2025-06-07T09:38:00-07:00,20.679998779296874,60.0,60000.0 +4899,2025-06-07T09:39:00-07:00,20.683333079020183,60.0,60000.0 +4900,2025-06-07T09:40:00-07:00,20.689999262491863,60.0,60000.0 +4901,2025-06-07T09:41:00-07:00,20.695999908447266,60.0,60000.0 +4902,2025-06-07T09:42:00-07:00,20.701667149861652,60.0,60000.0 +4903,2025-06-07T09:43:00-07:00,20.713332494099934,60.0,60000.0 +4904,2025-06-07T09:44:00-07:00,20.73800048828125,60.0,60000.0 +4905,2025-06-07T09:45:00-07:00,20.741668065388996,60.0,60000.0 +4906,2025-06-07T09:46:00-07:00,20.731667200724285,60.0,60000.0 +4907,2025-06-07T09:47:00-07:00,20.716000366210938,60.0,60000.0 +4908,2025-06-07T09:48:00-07:00,20.71666717529297,60.0,60000.0 +4909,2025-06-07T09:49:00-07:00,20.731667200724285,60.0,60000.0 +4910,2025-06-07T09:50:00-07:00,20.742001342773438,60.0,60000.0 +4911,2025-06-07T09:51:00-07:00,20.7433344523112,60.0,60000.0 +4912,2025-06-07T09:52:00-07:00,20.7549991607666,60.0,60000.0 +4913,2025-06-07T09:53:00-07:00,20.772000122070313,60.0,60000.0 +4914,2025-06-07T09:54:00-07:00,20.78999964396159,60.0,60000.0 +4915,2025-06-07T09:55:00-07:00,20.80500030517578,60.0,60000.0 +4916,2025-06-07T09:56:00-07:00,20.80800094604492,60.0,60000.0 +4917,2025-06-07T09:57:00-07:00,20.836666742960613,60.0,60000.0 +4918,2025-06-07T09:58:00-07:00,20.865000406901043,60.0,60000.0 +4919,2025-06-07T09:59:00-07:00,20.88600082397461,60.0,60000.0 +4920,2025-06-07T10:00:00-07:00,20.90333429972331,60.0,60000.0 +4921,2025-06-07T10:01:00-07:00,20.91666603088379,60.0,60000.0 +4922,2025-06-07T10:02:00-07:00,20.931999969482423,60.0,60000.0 +4923,2025-06-07T10:03:00-07:00,20.946666717529297,60.0,60000.0 +4924,2025-06-07T10:04:00-07:00,20.94499969482422,60.0,60000.0 +4925,2025-06-07T10:05:00-07:00,20.94499905904134,60.0,60000.0 +4926,2025-06-07T10:06:00-07:00,20.95800018310547,60.0,60000.0 +4927,2025-06-07T10:07:00-07:00,20.98000144958496,60.0,60000.0 +4928,2025-06-07T10:08:00-07:00,20.9983336130778,60.0,60000.0 +4929,2025-06-07T10:09:00-07:00,20.992001342773438,60.0,60000.0 +4930,2025-06-07T10:10:00-07:00,20.9983336130778,60.0,60000.0 +4931,2025-06-07T10:11:00-07:00,21.03333282470703,60.0,60000.0 +4932,2025-06-07T10:12:00-07:00,21.06600112915039,60.0,60000.0 +4933,2025-06-07T10:13:00-07:00,21.101666768391926,60.0,60000.0 +4934,2025-06-07T10:14:00-07:00,21.136666615804035,60.0,60000.0 +4935,2025-06-07T10:15:00-07:00,21.157999420166014,60.0,60000.0 +4936,2025-06-07T10:16:00-07:00,21.178333282470703,60.0,60000.0 +4937,2025-06-07T10:17:00-07:00,21.19833246866862,60.0,60000.0 +4938,2025-06-07T10:18:00-07:00,21.22000045776367,60.0,60000.0 +4939,2025-06-07T10:19:00-07:00,21.2450008392334,60.0,60000.0 +4940,2025-06-07T10:20:00-07:00,21.26166534423828,60.0,60000.0 +4941,2025-06-07T10:21:00-07:00,21.28199996948242,60.0,60000.0 +4942,2025-06-07T10:22:00-07:00,21.295000076293945,60.0,60000.0 +4943,2025-06-07T10:23:00-07:00,21.299999872843426,60.0,60000.0 +4944,2025-06-07T10:24:00-07:00,21.31000010172526,60.0,60000.0 +4945,2025-06-07T10:25:00-07:00,21.325000762939453,60.0,60000.0 +4946,2025-06-07T10:26:00-07:00,21.313334147135418,60.0,60000.0 +4947,2025-06-07T10:27:00-07:00,21.310001373291016,60.0,60000.0 +4948,2025-06-07T10:28:00-07:00,21.316666920979817,60.0,60000.0 +4949,2025-06-07T10:29:00-07:00,21.33500099182129,60.0,60000.0 +4950,2025-06-07T10:30:00-07:00,21.33200149536133,60.0,60000.0 +4951,2025-06-07T10:31:00-07:00,21.316666920979817,60.0,60000.0 +4952,2025-06-07T10:32:00-07:00,21.32833417256673,60.0,60000.0 +4953,2025-06-07T10:33:00-07:00,21.34000015258789,60.0,60000.0 +4954,2025-06-07T10:34:00-07:00,21.33833376566569,60.0,60000.0 +4955,2025-06-07T10:35:00-07:00,21.356666564941406,60.0,60000.0 +4956,2025-06-07T10:36:00-07:00,21.362000274658204,60.0,60000.0 +4957,2025-06-07T10:37:00-07:00,21.369998931884766,60.0,60000.0 +4958,2025-06-07T10:38:00-07:00,21.368332544962566,60.0,60000.0 +4959,2025-06-07T10:39:00-07:00,21.368000030517578,60.0,60000.0 +4960,2025-06-07T10:40:00-07:00,21.383333841959637,60.0,60000.0 +4961,2025-06-07T10:41:00-07:00,21.40166727701823,60.0,60000.0 +4962,2025-06-07T10:42:00-07:00,21.4359992980957,60.0,60000.0 +4963,2025-06-07T10:43:00-07:00,21.438332239786785,60.0,60000.0 +4964,2025-06-07T10:44:00-07:00,21.43833287556966,60.0,60000.0 +4965,2025-06-07T10:45:00-07:00,21.439999389648438,60.0,60000.0 +4966,2025-06-07T10:46:00-07:00,21.429999669392902,60.0,60000.0 +4967,2025-06-07T10:47:00-07:00,21.416666666666668,60.0,60000.0 +4968,2025-06-07T10:48:00-07:00,21.431999969482423,60.0,60000.0 +4969,2025-06-07T10:49:00-07:00,21.4499994913737,60.0,60000.0 +4970,2025-06-07T10:50:00-07:00,21.46666653951009,60.0,60000.0 +4971,2025-06-07T10:51:00-07:00,21.487999725341798,60.0,60000.0 +4972,2025-06-07T10:52:00-07:00,21.518332799275715,60.0,60000.0 +4973,2025-06-07T10:53:00-07:00,21.50833257039388,60.0,60000.0 +4974,2025-06-07T10:54:00-07:00,21.50199966430664,60.0,60000.0 +4975,2025-06-07T10:55:00-07:00,21.509999593098957,60.0,60000.0 +4976,2025-06-07T10:56:00-07:00,21.520000457763672,60.0,60000.0 +4977,2025-06-07T10:57:00-07:00,21.526000213623046,60.0,60000.0 +4978,2025-06-07T10:58:00-07:00,21.526666005452473,60.0,60000.0 +4979,2025-06-07T10:59:00-07:00,21.518333435058594,60.0,60000.0 +4980,2025-06-07T11:00:00-07:00,21.517999267578126,60.0,60000.0 +4981,2025-06-07T11:01:00-07:00,21.541667302449543,60.0,60000.0 +4982,2025-06-07T11:02:00-07:00,21.55666669209798,60.0,60000.0 +4983,2025-06-07T11:03:00-07:00,21.5760009765625,60.0,60000.0 +4984,2025-06-07T11:04:00-07:00,21.58000119527181,60.0,60000.0 +4985,2025-06-07T11:05:00-07:00,21.58333460489909,60.0,60000.0 +4986,2025-06-07T11:06:00-07:00,21.58400115966797,60.0,60000.0 +4987,2025-06-07T11:07:00-07:00,21.594999313354492,60.0,60000.0 +4988,2025-06-07T11:08:00-07:00,21.599998474121094,60.0,60000.0 +4989,2025-06-07T11:09:00-07:00,21.60399932861328,60.0,60000.0 +4990,2025-06-07T11:10:00-07:00,21.608333587646484,60.0,60000.0 +4991,2025-06-07T11:11:00-07:00,21.599998474121094,60.0,60000.0 +4992,2025-06-07T11:12:00-07:00,21.593999481201173,60.0,60000.0 +4993,2025-06-07T11:13:00-07:00,21.58833376566569,60.0,60000.0 +4994,2025-06-07T11:14:00-07:00,21.58666737874349,60.0,60000.0 +4995,2025-06-07T11:15:00-07:00,21.58400115966797,60.0,60000.0 +4996,2025-06-07T11:16:00-07:00,21.57666778564453,60.0,60000.0 +4997,2025-06-07T11:17:00-07:00,21.568333943684895,60.0,60000.0 +4998,2025-06-07T11:18:00-07:00,21.562001037597657,60.0,60000.0 +4999,2025-06-07T11:19:00-07:00,21.560001373291016,60.0,60000.0 +5000,2025-06-07T11:20:00-07:00,21.55666732788086,60.0,60000.0 +5001,2025-06-07T11:21:00-07:00,21.554000091552734,60.0,60000.0 +5002,2025-06-07T11:22:00-07:00,21.548332850138348,60.0,60000.0 +5003,2025-06-07T11:23:00-07:00,21.541667302449543,60.0,60000.0 +5004,2025-06-07T11:24:00-07:00,21.53333282470703,60.0,60000.0 +5005,2025-06-07T11:25:00-07:00,21.523999786376955,60.0,60000.0 +5006,2025-06-07T11:26:00-07:00,21.519999821980793,60.0,60000.0 +5007,2025-06-07T11:27:00-07:00,21.51333236694336,60.0,60000.0 +5008,2025-06-07T11:28:00-07:00,21.507998657226562,60.0,60000.0 +5009,2025-06-07T11:29:00-07:00,21.5066655476888,60.0,60000.0 +5010,2025-06-07T11:30:00-07:00,21.5049991607666,60.0,60000.0 +5011,2025-06-07T11:31:00-07:00,21.50599899291992,60.0,60000.0 +5012,2025-06-07T11:32:00-07:00,21.5066655476888,60.0,60000.0 +5013,2025-06-07T11:33:00-07:00,21.5066655476888,60.0,60000.0 +5014,2025-06-07T11:34:00-07:00,21.50800018310547,60.0,60000.0 +5015,2025-06-07T11:35:00-07:00,21.508331934611004,60.0,60000.0 +5016,2025-06-07T11:36:00-07:00,21.5049991607666,60.0,60000.0 +5017,2025-06-07T11:37:00-07:00,21.5,60.0,60000.0 +5018,2025-06-07T11:38:00-07:00,21.490001678466797,60.0,60000.0 +5019,2025-06-07T11:39:00-07:00,21.478334426879883,60.0,60000.0 +5020,2025-06-07T11:40:00-07:00,21.484000396728515,60.0,60000.0 +5021,2025-06-07T11:41:00-07:00,21.479999542236328,60.0,60000.0 +5022,2025-06-07T11:42:00-07:00,21.47166697184245,60.0,60000.0 +5023,2025-06-07T11:43:00-07:00,21.47000045776367,60.0,60000.0 +5024,2025-06-07T11:44:00-07:00,21.46000035603841,60.0,60000.0 +5025,2025-06-07T11:45:00-07:00,21.450000127156574,60.0,60000.0 +5026,2025-06-07T11:46:00-07:00,21.448000335693358,60.0,60000.0 +5027,2025-06-07T11:47:00-07:00,21.450000127156574,60.0,60000.0 +5028,2025-06-07T11:48:00-07:00,21.451667149861652,60.0,60000.0 +5029,2025-06-07T11:49:00-07:00,21.445999908447266,60.0,60000.0 +5030,2025-06-07T11:50:00-07:00,21.446666717529297,60.0,60000.0 +5031,2025-06-07T11:51:00-07:00,21.44499969482422,60.0,60000.0 +5032,2025-06-07T11:52:00-07:00,21.444000244140625,60.0,60000.0 +5033,2025-06-07T11:53:00-07:00,21.44333267211914,60.0,60000.0 +5034,2025-06-07T11:54:00-07:00,21.441665649414062,60.0,60000.0 +5035,2025-06-07T11:55:00-07:00,21.433999633789064,60.0,60000.0 +5036,2025-06-07T11:56:00-07:00,21.434999465942383,60.0,60000.0 +5037,2025-06-07T11:57:00-07:00,21.439998626708984,60.0,60000.0 +5038,2025-06-07T11:58:00-07:00,21.439998626708984,60.0,60000.0 +5039,2025-06-07T11:59:00-07:00,21.434999465942383,60.0,60000.0 +5040,2025-06-07T12:00:00-07:00,21.438332239786785,60.0,60000.0 +5041,2025-06-07T12:01:00-07:00,21.445999908447266,60.0,60000.0 +5042,2025-06-07T12:02:00-07:00,21.441665649414062,60.0,60000.0 +5043,2025-06-07T12:03:00-07:00,21.446667353312176,60.0,60000.0 +5044,2025-06-07T12:04:00-07:00,21.439998626708984,60.0,60000.0 +5045,2025-06-07T12:05:00-07:00,21.439999262491863,60.0,60000.0 +5046,2025-06-07T12:06:00-07:00,21.450000127156574,60.0,60000.0 +5047,2025-06-07T12:07:00-07:00,21.450000762939453,60.0,60000.0 +5048,2025-06-07T12:08:00-07:00,21.454285757882253,60.0,60000.0 +5049,2025-06-07T12:09:00-07:00,21.463333129882812,60.0,60000.0 +5050,2025-06-07T12:10:00-07:00,21.466000366210938,60.0,60000.0 +5051,2025-06-07T12:11:00-07:00,21.470001220703125,60.0,60000.0 +5052,2025-06-07T12:12:00-07:00,21.470000584920246,60.0,60000.0 +5053,2025-06-07T12:13:00-07:00,21.455999755859374,60.0,60000.0 +5054,2025-06-07T12:14:00-07:00,21.450000762939453,60.0,60000.0 +5055,2025-06-07T12:15:00-07:00,21.446666717529297,60.0,60000.0 +5056,2025-06-07T12:16:00-07:00,21.437999725341797,60.0,60000.0 +5057,2025-06-07T12:17:00-07:00,21.433333079020183,60.0,60000.0 +5058,2025-06-07T12:18:00-07:00,21.42333221435547,60.0,60000.0 +5059,2025-06-07T12:19:00-07:00,21.413999176025392,60.0,60000.0 +5060,2025-06-07T12:20:00-07:00,21.405000686645508,60.0,60000.0 +5061,2025-06-07T12:21:00-07:00,21.395000457763672,60.0,60000.0 +5062,2025-06-07T12:22:00-07:00,21.389999389648438,60.0,60000.0 +5063,2025-06-07T12:23:00-07:00,21.383333841959637,60.0,60000.0 +5064,2025-06-07T12:24:00-07:00,21.38166681925456,60.0,60000.0 +5065,2025-06-07T12:25:00-07:00,21.367999267578124,60.0,60000.0 +5066,2025-06-07T12:26:00-07:00,21.356665929158527,60.0,60000.0 +5067,2025-06-07T12:27:00-07:00,21.35333251953125,60.0,60000.0 +5068,2025-06-07T12:28:00-07:00,21.358000183105467,60.0,60000.0 +5069,2025-06-07T12:29:00-07:00,21.358333587646484,60.0,60000.0 +5070,2025-06-07T12:30:00-07:00,21.35333251953125,60.0,60000.0 +5071,2025-06-07T12:31:00-07:00,21.349998474121094,60.0,60000.0 +5072,2025-06-07T12:32:00-07:00,21.349998474121094,60.0,60000.0 +5073,2025-06-07T12:33:00-07:00,21.343332926432293,60.0,60000.0 +5074,2025-06-07T12:34:00-07:00,21.343332926432293,60.0,60000.0 +5075,2025-06-07T12:35:00-07:00,21.34000015258789,60.0,60000.0 +5076,2025-06-07T12:36:00-07:00,21.34000015258789,60.0,60000.0 +5077,2025-06-07T12:37:00-07:00,21.33500099182129,60.0,60000.0 +5078,2025-06-07T12:38:00-07:00,21.33200149536133,60.0,60000.0 +5079,2025-06-07T12:39:00-07:00,21.33500099182129,60.0,60000.0 +5080,2025-06-07T12:40:00-07:00,21.33500099182129,60.0,60000.0 +5081,2025-06-07T12:41:00-07:00,21.336000823974608,60.0,60000.0 +5082,2025-06-07T12:42:00-07:00,21.344999313354492,60.0,60000.0 +5083,2025-06-07T12:43:00-07:00,21.34666570027669,60.0,60000.0 +5084,2025-06-07T12:44:00-07:00,21.34599914550781,60.0,60000.0 +5085,2025-06-07T12:45:00-07:00,21.343332926432293,60.0,60000.0 +5086,2025-06-07T12:46:00-07:00,21.331668217976887,60.0,60000.0 +5087,2025-06-07T12:47:00-07:00,21.330001831054688,60.0,60000.0 +5088,2025-06-07T12:48:00-07:00,21.330001831054688,60.0,60000.0 +5089,2025-06-07T12:49:00-07:00,21.330001831054688,60.0,60000.0 +5090,2025-06-07T12:50:00-07:00,21.33400115966797,60.0,60000.0 +5091,2025-06-07T12:51:00-07:00,21.32666778564453,60.0,60000.0 +5092,2025-06-07T12:52:00-07:00,21.330001831054688,60.0,60000.0 +5093,2025-06-07T12:53:00-07:00,21.33400115966797,60.0,60000.0 +5094,2025-06-07T12:54:00-07:00,21.33666737874349,60.0,60000.0 +5095,2025-06-07T12:55:00-07:00,21.33666737874349,60.0,60000.0 +5096,2025-06-07T12:56:00-07:00,21.35199890136719,60.0,60000.0 +5097,2025-06-07T12:57:00-07:00,21.349999109903973,60.0,60000.0 +5098,2025-06-07T12:58:00-07:00,21.348332087198894,60.0,60000.0 +5099,2025-06-07T12:59:00-07:00,21.35199890136719,60.0,60000.0 +5100,2025-06-07T13:00:00-07:00,21.356666564941406,60.0,60000.0 +5101,2025-06-07T13:01:00-07:00,21.364999771118164,60.0,60000.0 +5102,2025-06-07T13:02:00-07:00,21.37199935913086,60.0,60000.0 +5103,2025-06-07T13:03:00-07:00,21.380000432332356,60.0,60000.0 +5104,2025-06-07T13:04:00-07:00,21.393333435058594,60.0,60000.0 +5105,2025-06-07T13:05:00-07:00,21.40400085449219,60.0,60000.0 +5106,2025-06-07T13:06:00-07:00,21.40333366394043,60.0,60000.0 +5107,2025-06-07T13:07:00-07:00,21.405000686645508,60.0,60000.0 +5108,2025-06-07T13:08:00-07:00,21.413999176025392,60.0,60000.0 +5109,2025-06-07T13:09:00-07:00,21.40999984741211,60.0,60000.0 +5110,2025-06-07T13:10:00-07:00,21.413333257039387,60.0,60000.0 +5111,2025-06-07T13:11:00-07:00,21.421998596191408,60.0,60000.0 +5112,2025-06-07T13:12:00-07:00,21.42166582743327,60.0,60000.0 +5113,2025-06-07T13:13:00-07:00,21.42166519165039,60.0,60000.0 +5114,2025-06-07T13:14:00-07:00,21.4359992980957,60.0,60000.0 +5115,2025-06-07T13:15:00-07:00,21.44333267211914,60.0,60000.0 +5116,2025-06-07T13:16:00-07:00,21.439998626708984,60.0,60000.0 +5117,2025-06-07T13:17:00-07:00,21.440000152587892,60.0,60000.0 +5118,2025-06-07T13:18:00-07:00,21.43666648864746,60.0,60000.0 +5119,2025-06-07T13:19:00-07:00,21.426665623982746,60.0,60000.0 +5120,2025-06-07T13:20:00-07:00,21.4239990234375,60.0,60000.0 +5121,2025-06-07T13:21:00-07:00,21.42333221435547,60.0,60000.0 +5122,2025-06-07T13:22:00-07:00,21.41333262125651,60.0,60000.0 +5123,2025-06-07T13:23:00-07:00,21.406000518798827,60.0,60000.0 +5124,2025-06-07T13:24:00-07:00,21.398334503173828,60.0,60000.0 +5125,2025-06-07T13:25:00-07:00,21.393333435058594,60.0,60000.0 +5126,2025-06-07T13:26:00-07:00,21.38800048828125,60.0,60000.0 +5127,2025-06-07T13:27:00-07:00,21.386666615804035,60.0,60000.0 +5128,2025-06-07T13:28:00-07:00,21.381667455037434,60.0,60000.0 +5129,2025-06-07T13:29:00-07:00,21.382000732421876,60.0,60000.0 +5130,2025-06-07T13:30:00-07:00,21.385000228881836,60.0,60000.0 +5131,2025-06-07T13:31:00-07:00,21.388333638509113,60.0,60000.0 +5132,2025-06-07T13:32:00-07:00,21.389999389648438,60.0,60000.0 +5133,2025-06-07T13:33:00-07:00,21.389999389648438,60.0,60000.0 +5134,2025-06-07T13:34:00-07:00,21.393333435058594,60.0,60000.0 +5135,2025-06-07T13:35:00-07:00,21.394000244140624,60.0,60000.0 +5136,2025-06-07T13:36:00-07:00,21.398334503173828,60.0,60000.0 +5137,2025-06-07T13:37:00-07:00,21.391666412353516,60.0,60000.0 +5138,2025-06-07T13:38:00-07:00,21.384000396728517,60.0,60000.0 +5139,2025-06-07T13:39:00-07:00,21.366666158040363,60.0,60000.0 +5140,2025-06-07T13:40:00-07:00,21.354999542236328,60.0,60000.0 +5141,2025-06-07T13:41:00-07:00,21.349998474121094,60.0,60000.0 +5142,2025-06-07T13:42:00-07:00,21.356666564941406,60.0,60000.0 +5143,2025-06-07T13:43:00-07:00,21.358333587646484,60.0,60000.0 +5144,2025-06-07T13:44:00-07:00,21.365999603271483,60.0,60000.0 +5145,2025-06-07T13:45:00-07:00,21.35166613260905,60.0,60000.0 +5146,2025-06-07T13:46:00-07:00,21.325000762939453,60.0,60000.0 +5147,2025-06-07T13:47:00-07:00,21.321666717529297,60.0,60000.0 +5148,2025-06-07T13:48:00-07:00,21.33000119527181,60.0,60000.0 +5149,2025-06-07T13:49:00-07:00,21.34166653951009,60.0,60000.0 +5150,2025-06-07T13:50:00-07:00,21.35399932861328,60.0,60000.0 +5151,2025-06-07T13:51:00-07:00,21.359999974568684,60.0,60000.0 +5152,2025-06-07T13:52:00-07:00,21.358333587646484,60.0,60000.0 +5153,2025-06-07T13:53:00-07:00,21.363999938964845,60.0,60000.0 +5154,2025-06-07T13:54:00-07:00,21.363333384195965,60.0,60000.0 +5155,2025-06-07T13:55:00-07:00,21.3733336130778,60.0,60000.0 +5156,2025-06-07T13:56:00-07:00,21.388333002726238,60.0,60000.0 +5157,2025-06-07T13:57:00-07:00,21.389999389648438,60.0,60000.0 +5158,2025-06-07T13:58:00-07:00,21.391666412353516,60.0,60000.0 +5159,2025-06-07T13:59:00-07:00,21.378334045410156,60.0,60000.0 +5160,2025-06-07T14:00:00-07:00,21.37199935913086,60.0,60000.0 +5161,2025-06-07T14:01:00-07:00,21.373332977294922,60.0,60000.0 +5162,2025-06-07T14:02:00-07:00,21.381667455037434,60.0,60000.0 +5163,2025-06-07T14:03:00-07:00,21.391999816894533,60.0,60000.0 +5164,2025-06-07T14:04:00-07:00,21.39666748046875,60.0,60000.0 +5165,2025-06-07T14:05:00-07:00,21.401667912801106,60.0,60000.0 +5166,2025-06-07T14:06:00-07:00,21.406000518798827,60.0,60000.0 +5167,2025-06-07T14:07:00-07:00,21.405000686645508,60.0,60000.0 +5168,2025-06-07T14:08:00-07:00,21.393334070841473,60.0,60000.0 +5169,2025-06-07T14:09:00-07:00,21.386000061035155,60.0,60000.0 +5170,2025-06-07T14:10:00-07:00,21.386666615804035,60.0,60000.0 +5171,2025-06-07T14:11:00-07:00,21.386667251586914,60.0,60000.0 +5172,2025-06-07T14:12:00-07:00,21.386000061035155,60.0,60000.0 +5173,2025-06-07T14:13:00-07:00,21.381667455037434,60.0,60000.0 +5174,2025-06-07T14:14:00-07:00,21.375,60.0,60000.0 +5175,2025-06-07T14:15:00-07:00,21.37800064086914,60.0,60000.0 +5176,2025-06-07T14:16:00-07:00,21.378333409627277,60.0,60000.0 +5177,2025-06-07T14:17:00-07:00,21.378333409627277,60.0,60000.0 +5178,2025-06-07T14:18:00-07:00,21.373999786376952,60.0,60000.0 +5179,2025-06-07T14:19:00-07:00,21.364999771118164,60.0,60000.0 +5180,2025-06-07T14:20:00-07:00,21.364999771118164,60.0,60000.0 +5181,2025-06-07T14:21:00-07:00,21.380001068115234,60.0,60000.0 +5182,2025-06-07T14:22:00-07:00,21.380000432332356,60.0,60000.0 +5183,2025-06-07T14:23:00-07:00,21.373332977294922,60.0,60000.0 +5184,2025-06-07T14:24:00-07:00,21.37200012207031,60.0,60000.0 +5185,2025-06-07T14:25:00-07:00,21.364999771118164,60.0,60000.0 +5186,2025-06-07T14:26:00-07:00,21.364999771118164,60.0,60000.0 +5187,2025-06-07T14:27:00-07:00,21.362000274658204,60.0,60000.0 +5188,2025-06-07T14:28:00-07:00,21.36833318074544,60.0,60000.0 +5189,2025-06-07T14:29:00-07:00,21.376667022705078,60.0,60000.0 +5190,2025-06-07T14:30:00-07:00,21.386000061035155,60.0,60000.0 +5191,2025-06-07T14:31:00-07:00,21.380000432332356,60.0,60000.0 +5192,2025-06-07T14:32:00-07:00,21.386666615804035,60.0,60000.0 +5193,2025-06-07T14:33:00-07:00,21.38800048828125,60.0,60000.0 +5194,2025-06-07T14:34:00-07:00,21.391667048136394,60.0,60000.0 +5195,2025-06-07T14:35:00-07:00,21.400000890096027,60.0,60000.0 +5196,2025-06-07T14:36:00-07:00,21.400001525878906,60.0,60000.0 +5197,2025-06-07T14:37:00-07:00,21.398334503173828,60.0,60000.0 +5198,2025-06-07T14:38:00-07:00,21.39666811625163,60.0,60000.0 +5199,2025-06-07T14:39:00-07:00,21.392000579833983,60.0,60000.0 +5200,2025-06-07T14:40:00-07:00,21.40166727701823,60.0,60000.0 +5201,2025-06-07T14:41:00-07:00,21.41166623433431,60.0,60000.0 +5202,2025-06-07T14:42:00-07:00,21.419998931884766,60.0,60000.0 +5203,2025-06-07T14:43:00-07:00,21.431666056315105,60.0,60000.0 +5204,2025-06-07T14:44:00-07:00,21.423332850138348,60.0,60000.0 +5205,2025-06-07T14:45:00-07:00,21.43000030517578,60.0,60000.0 +5206,2025-06-07T14:46:00-07:00,21.434999465942383,60.0,60000.0 +5207,2025-06-07T14:47:00-07:00,21.439999262491863,60.0,60000.0 +5208,2025-06-07T14:48:00-07:00,21.437998962402343,60.0,60000.0 +5209,2025-06-07T14:49:00-07:00,21.436665852864582,60.0,60000.0 +5210,2025-06-07T14:50:00-07:00,21.439999262491863,60.0,60000.0 +5211,2025-06-07T14:51:00-07:00,21.448000335693358,60.0,60000.0 +5212,2025-06-07T14:52:00-07:00,21.451667149861652,60.0,60000.0 +5213,2025-06-07T14:53:00-07:00,21.454999287923176,60.0,60000.0 +5214,2025-06-07T14:54:00-07:00,21.448000335693358,60.0,60000.0 +5215,2025-06-07T14:55:00-07:00,21.441665649414062,60.0,60000.0 +5216,2025-06-07T14:56:00-07:00,21.44333267211914,60.0,60000.0 +5217,2025-06-07T14:57:00-07:00,21.437998962402343,60.0,60000.0 +5218,2025-06-07T14:58:00-07:00,21.439999262491863,60.0,60000.0 +5219,2025-06-07T14:59:00-07:00,21.438332239786785,60.0,60000.0 +5220,2025-06-07T15:00:00-07:00,21.425999450683594,60.0,60000.0 +5221,2025-06-07T15:01:00-07:00,21.42666498819987,60.0,60000.0 +5222,2025-06-07T15:02:00-07:00,21.431666056315105,60.0,60000.0 +5223,2025-06-07T15:03:00-07:00,21.427999877929686,60.0,60000.0 +5224,2025-06-07T15:04:00-07:00,21.419998168945312,60.0,60000.0 +5225,2025-06-07T15:05:00-07:00,21.41166623433431,60.0,60000.0 +5226,2025-06-07T15:06:00-07:00,21.40999984741211,60.0,60000.0 +5227,2025-06-07T15:07:00-07:00,21.41333262125651,60.0,60000.0 +5228,2025-06-07T15:08:00-07:00,21.41666539510091,60.0,60000.0 +5229,2025-06-07T15:09:00-07:00,21.427998352050782,60.0,60000.0 +5230,2025-06-07T15:10:00-07:00,21.433333079020183,60.0,60000.0 +5231,2025-06-07T15:11:00-07:00,21.448333740234375,60.0,60000.0 +5232,2025-06-07T15:12:00-07:00,21.46199951171875,60.0,60000.0 +5233,2025-06-07T15:13:00-07:00,21.473333994547527,60.0,60000.0 +5234,2025-06-07T15:14:00-07:00,21.458333333333332,60.0,60000.0 +5235,2025-06-07T15:15:00-07:00,21.459999084472656,60.0,60000.0 +5236,2025-06-07T15:16:00-07:00,21.463333129882812,60.0,60000.0 +5237,2025-06-07T15:17:00-07:00,21.46666717529297,60.0,60000.0 +5238,2025-06-07T15:18:00-07:00,21.46800079345703,60.0,60000.0 +5239,2025-06-07T15:19:00-07:00,21.468334197998047,60.0,60000.0 +5240,2025-06-07T15:20:00-07:00,21.471667607625324,60.0,60000.0 +5241,2025-06-07T15:21:00-07:00,21.477999877929687,60.0,60000.0 +5242,2025-06-07T15:22:00-07:00,21.48833401997884,60.0,60000.0 +5243,2025-06-07T15:23:00-07:00,21.48666763305664,60.0,60000.0 +5244,2025-06-07T15:24:00-07:00,21.49400100708008,60.0,60000.0 +5245,2025-06-07T15:25:00-07:00,21.4933344523112,60.0,60000.0 +5246,2025-06-07T15:26:00-07:00,21.496667226155598,60.0,60000.0 +5247,2025-06-07T15:27:00-07:00,21.5,60.0,60000.0 +5248,2025-06-07T15:28:00-07:00,21.5016663869222,60.0,60000.0 +5249,2025-06-07T15:29:00-07:00,21.5066655476888,60.0,60000.0 +5250,2025-06-07T15:30:00-07:00,21.496000671386717,60.0,60000.0 +5251,2025-06-07T15:31:00-07:00,21.5049991607666,60.0,60000.0 +5252,2025-06-07T15:32:00-07:00,21.5049991607666,60.0,60000.0 +5253,2025-06-07T15:33:00-07:00,21.507998657226562,60.0,60000.0 +5254,2025-06-07T15:34:00-07:00,21.516666412353516,60.0,60000.0 +5255,2025-06-07T15:35:00-07:00,21.509998321533203,60.0,60000.0 +5256,2025-06-07T15:36:00-07:00,21.516666412353516,60.0,60000.0 +5257,2025-06-07T15:37:00-07:00,21.524999618530273,60.0,60000.0 +5258,2025-06-07T15:38:00-07:00,21.521666208902996,60.0,60000.0 +5259,2025-06-07T15:39:00-07:00,21.525999450683592,60.0,60000.0 +5260,2025-06-07T15:40:00-07:00,21.518333435058594,60.0,60000.0 +5261,2025-06-07T15:41:00-07:00,21.51166598002116,60.0,60000.0 +5262,2025-06-07T15:42:00-07:00,21.50199966430664,60.0,60000.0 +5263,2025-06-07T15:43:00-07:00,21.509998957316082,60.0,60000.0 +5264,2025-06-07T15:44:00-07:00,21.516666412353516,60.0,60000.0 +5265,2025-06-07T15:45:00-07:00,21.51333236694336,60.0,60000.0 +5266,2025-06-07T15:46:00-07:00,21.523999786376955,60.0,60000.0 +5267,2025-06-07T15:47:00-07:00,21.529999415079754,60.0,60000.0 +5268,2025-06-07T15:48:00-07:00,21.538333892822266,60.0,60000.0 +5269,2025-06-07T15:49:00-07:00,21.544000244140626,60.0,60000.0 +5270,2025-06-07T15:50:00-07:00,21.541666666666668,60.0,60000.0 +5271,2025-06-07T15:51:00-07:00,21.536666870117188,60.0,60000.0 +5272,2025-06-07T15:52:00-07:00,21.542000579833985,60.0,60000.0 +5273,2025-06-07T15:53:00-07:00,21.549999237060547,60.0,60000.0 +5274,2025-06-07T15:54:00-07:00,21.55666732788086,60.0,60000.0 +5275,2025-06-07T15:55:00-07:00,21.562001037597657,60.0,60000.0 +5276,2025-06-07T15:56:00-07:00,21.558334350585938,60.0,60000.0 +5277,2025-06-07T15:57:00-07:00,21.566666920979817,60.0,60000.0 +5278,2025-06-07T15:58:00-07:00,21.56999969482422,60.0,60000.0 +5279,2025-06-07T15:59:00-07:00,21.55666732788086,60.0,60000.0 +5280,2025-06-07T16:00:00-07:00,21.55500030517578,60.0,60000.0 +5281,2025-06-07T16:01:00-07:00,21.551999664306642,60.0,60000.0 +5282,2025-06-07T16:02:00-07:00,21.55666732788086,60.0,60000.0 +5283,2025-06-07T16:03:00-07:00,21.55666732788086,60.0,60000.0 +5284,2025-06-07T16:04:00-07:00,21.55800018310547,60.0,60000.0 +5285,2025-06-07T16:05:00-07:00,21.568333943684895,60.0,60000.0 +5286,2025-06-07T16:06:00-07:00,21.57833480834961,60.0,60000.0 +5287,2025-06-07T16:07:00-07:00,21.580001831054688,60.0,60000.0 +5288,2025-06-07T16:08:00-07:00,21.55833371480306,60.0,60000.0 +5289,2025-06-07T16:09:00-07:00,21.531666437784832,60.0,60000.0 +5290,2025-06-07T16:10:00-07:00,21.5119987487793,60.0,60000.0 +5291,2025-06-07T16:11:00-07:00,21.52666664123535,60.0,60000.0 +5292,2025-06-07T16:12:00-07:00,21.560000737508137,60.0,60000.0 +5293,2025-06-07T16:13:00-07:00,21.572000122070314,60.0,60000.0 +5294,2025-06-07T16:14:00-07:00,21.586666742960613,60.0,60000.0 +5295,2025-06-07T16:15:00-07:00,21.59000015258789,60.0,60000.0 +5296,2025-06-07T16:16:00-07:00,21.591999816894532,60.0,60000.0 +5297,2025-06-07T16:17:00-07:00,21.599998474121094,60.0,60000.0 +5298,2025-06-07T16:18:00-07:00,21.599998474121094,60.0,60000.0 +5299,2025-06-07T16:19:00-07:00,21.599998474121094,60.0,60000.0 +5300,2025-06-07T16:20:00-07:00,21.606666564941406,60.0,60000.0 +5301,2025-06-07T16:21:00-07:00,21.614999135335285,60.0,60000.0 +5302,2025-06-07T16:22:00-07:00,21.615999603271483,60.0,60000.0 +5303,2025-06-07T16:23:00-07:00,21.625,60.0,60000.0 +5304,2025-06-07T16:24:00-07:00,21.631667455037434,60.0,60000.0 +5305,2025-06-07T16:25:00-07:00,21.636000061035155,60.0,60000.0 +5306,2025-06-07T16:26:00-07:00,21.639999389648438,60.0,60000.0 +5307,2025-06-07T16:27:00-07:00,21.635000228881836,60.0,60000.0 +5308,2025-06-07T16:28:00-07:00,21.632000732421876,60.0,60000.0 +5309,2025-06-07T16:29:00-07:00,21.62714331490653,60.0,60000.0 +5310,2025-06-07T16:30:00-07:00,21.621666590372723,60.0,60000.0 +5311,2025-06-07T16:31:00-07:00,21.619998931884766,60.0,60000.0 +5312,2025-06-07T16:32:00-07:00,21.610000610351562,60.0,60000.0 +5313,2025-06-07T16:33:00-07:00,21.604999542236328,60.0,60000.0 +5314,2025-06-07T16:34:00-07:00,21.608000183105467,60.0,60000.0 +5315,2025-06-07T16:35:00-07:00,21.608333587646484,60.0,60000.0 +5316,2025-06-07T16:36:00-07:00,21.611666361490887,60.0,60000.0 +5317,2025-06-07T16:37:00-07:00,21.613999938964845,60.0,60000.0 +5318,2025-06-07T16:38:00-07:00,21.626667022705078,60.0,60000.0 +5319,2025-06-07T16:39:00-07:00,21.613332748413086,60.0,60000.0 +5320,2025-06-07T16:40:00-07:00,21.605999755859376,60.0,60000.0 +5321,2025-06-07T16:41:00-07:00,21.606666564941406,60.0,60000.0 +5322,2025-06-07T16:42:00-07:00,21.614999771118164,60.0,60000.0 +5323,2025-06-07T16:43:00-07:00,21.62200012207031,60.0,60000.0 +5324,2025-06-07T16:44:00-07:00,21.630000432332356,60.0,60000.0 +5325,2025-06-07T16:45:00-07:00,21.650000254313152,60.0,60000.0 +5326,2025-06-07T16:46:00-07:00,21.66199951171875,60.0,60000.0 +5327,2025-06-07T16:47:00-07:00,21.674999237060547,60.0,60000.0 +5328,2025-06-07T16:48:00-07:00,21.686665852864582,60.0,60000.0 +5329,2025-06-07T16:49:00-07:00,21.683999633789064,60.0,60000.0 +5330,2025-06-07T16:50:00-07:00,21.691665649414062,60.0,60000.0 +5331,2025-06-07T16:51:00-07:00,21.696666717529297,60.0,60000.0 +5332,2025-06-07T16:52:00-07:00,21.705999755859374,60.0,60000.0 +5333,2025-06-07T16:53:00-07:00,21.71500015258789,60.0,60000.0 +5334,2025-06-07T16:54:00-07:00,21.723333994547527,60.0,60000.0 +5335,2025-06-07T16:55:00-07:00,21.729999542236328,60.0,60000.0 +5336,2025-06-07T16:56:00-07:00,21.73600082397461,60.0,60000.0 +5337,2025-06-07T16:57:00-07:00,21.73833465576172,60.0,60000.0 +5338,2025-06-07T16:58:00-07:00,21.7483336130778,60.0,60000.0 +5339,2025-06-07T16:59:00-07:00,21.75199966430664,60.0,60000.0 +5340,2025-06-07T17:00:00-07:00,21.76166598002116,60.0,60000.0 +5341,2025-06-07T17:01:00-07:00,21.771666208902996,60.0,60000.0 +5342,2025-06-07T17:02:00-07:00,21.775999450683592,60.0,60000.0 +5343,2025-06-07T17:03:00-07:00,21.781665802001953,60.0,60000.0 +5344,2025-06-07T17:04:00-07:00,21.788333892822266,60.0,60000.0 +5345,2025-06-07T17:05:00-07:00,21.797999572753906,60.0,60000.0 +5346,2025-06-07T17:06:00-07:00,21.795000076293945,60.0,60000.0 +5347,2025-06-07T17:07:00-07:00,21.788333892822266,60.0,60000.0 +5348,2025-06-07T17:08:00-07:00,21.78800048828125,60.0,60000.0 +5349,2025-06-07T17:09:00-07:00,21.788333892822266,60.0,60000.0 +5350,2025-06-07T17:10:00-07:00,21.793333689371746,60.0,60000.0 +5351,2025-06-07T17:11:00-07:00,21.801999664306642,60.0,60000.0 +5352,2025-06-07T17:12:00-07:00,21.80833371480306,60.0,60000.0 +5353,2025-06-07T17:13:00-07:00,21.813334782918293,60.0,60000.0 +5354,2025-06-07T17:14:00-07:00,21.810001373291016,60.0,60000.0 +5355,2025-06-07T17:15:00-07:00,21.810000737508137,60.0,60000.0 +5356,2025-06-07T17:16:00-07:00,21.813334147135418,60.0,60000.0 +5357,2025-06-07T17:17:00-07:00,21.82400131225586,60.0,60000.0 +5358,2025-06-07T17:18:00-07:00,21.82666778564453,60.0,60000.0 +5359,2025-06-07T17:19:00-07:00,21.84000015258789,60.0,60000.0 +5360,2025-06-07T17:20:00-07:00,21.841999816894532,60.0,60000.0 +5361,2025-06-07T17:21:00-07:00,21.849999745686848,60.0,60000.0 +5362,2025-06-07T17:22:00-07:00,21.85333251953125,60.0,60000.0 +5363,2025-06-07T17:23:00-07:00,21.85399932861328,60.0,60000.0 +5364,2025-06-07T17:24:00-07:00,21.854999542236328,60.0,60000.0 +5365,2025-06-07T17:25:00-07:00,21.85333251953125,60.0,60000.0 +5366,2025-06-07T17:26:00-07:00,21.843999481201173,60.0,60000.0 +5367,2025-06-07T17:27:00-07:00,21.83000119527181,60.0,60000.0 +5368,2025-06-07T17:28:00-07:00,21.84000015258789,60.0,60000.0 +5369,2025-06-07T17:29:00-07:00,21.84000015258789,60.0,60000.0 +5370,2025-06-07T17:30:00-07:00,21.83333460489909,60.0,60000.0 +5371,2025-06-07T17:31:00-07:00,21.83833376566569,60.0,60000.0 +5372,2025-06-07T17:32:00-07:00,21.84000015258789,60.0,60000.0 +5373,2025-06-07T17:33:00-07:00,21.84166653951009,60.0,60000.0 +5374,2025-06-07T17:34:00-07:00,21.825000762939453,60.0,60000.0 +5375,2025-06-07T17:35:00-07:00,21.81600112915039,60.0,60000.0 +5376,2025-06-07T17:36:00-07:00,21.813334147135418,60.0,60000.0 +5377,2025-06-07T17:37:00-07:00,21.813334147135418,60.0,60000.0 +5378,2025-06-07T17:38:00-07:00,21.816000366210936,60.0,60000.0 +5379,2025-06-07T17:39:00-07:00,21.80666732788086,60.0,60000.0 +5380,2025-06-07T17:40:00-07:00,21.799999237060547,60.0,60000.0 +5381,2025-06-07T17:41:00-07:00,21.78800048828125,60.0,60000.0 +5382,2025-06-07T17:42:00-07:00,21.795000076293945,60.0,60000.0 +5383,2025-06-07T17:43:00-07:00,21.80285699026925,60.0,60000.0 +5384,2025-06-07T17:44:00-07:00,21.804000091552734,60.0,60000.0 +5385,2025-06-07T17:45:00-07:00,21.80666669209798,60.0,60000.0 +5386,2025-06-07T17:46:00-07:00,21.81333351135254,60.0,60000.0 +5387,2025-06-07T17:47:00-07:00,21.80800018310547,60.0,60000.0 +5388,2025-06-07T17:48:00-07:00,21.810000737508137,60.0,60000.0 +5389,2025-06-07T17:49:00-07:00,21.80833371480306,60.0,60000.0 +5390,2025-06-07T17:50:00-07:00,21.796000671386718,60.0,60000.0 +5391,2025-06-07T17:51:00-07:00,21.78499984741211,60.0,60000.0 +5392,2025-06-07T17:52:00-07:00,21.78666623433431,60.0,60000.0 +5393,2025-06-07T17:53:00-07:00,21.802000427246092,60.0,60000.0 +5394,2025-06-07T17:54:00-07:00,21.83000119527181,60.0,60000.0 +5395,2025-06-07T17:55:00-07:00,21.854999542236328,60.0,60000.0 +5396,2025-06-07T17:56:00-07:00,21.879999542236327,60.0,60000.0 +5397,2025-06-07T17:57:00-07:00,21.918333053588867,60.0,60000.0 +5398,2025-06-07T17:58:00-07:00,21.950000127156574,60.0,60000.0 +5399,2025-06-07T17:59:00-07:00,21.94399948120117,60.0,60000.0 +5400,2025-06-07T18:00:00-07:00,21.948333740234375,60.0,60000.0 +5401,2025-06-07T18:01:00-07:00,21.951666514078777,60.0,60000.0 +5402,2025-06-07T18:02:00-07:00,21.974000549316408,60.0,60000.0 +5403,2025-06-07T18:03:00-07:00,21.96666717529297,60.0,60000.0 +5404,2025-06-07T18:04:00-07:00,21.954999923706055,60.0,60000.0 +5405,2025-06-07T18:05:00-07:00,21.97800064086914,60.0,60000.0 +5406,2025-06-07T18:06:00-07:00,21.9933344523112,60.0,60000.0 +5407,2025-06-07T18:07:00-07:00,22.003332773844402,60.0,60000.0 +5408,2025-06-07T18:08:00-07:00,21.992000579833984,60.0,60000.0 +5409,2025-06-07T18:09:00-07:00,21.970000584920246,60.0,60000.0 +5410,2025-06-07T18:10:00-07:00,21.96666717529297,60.0,60000.0 +5411,2025-06-07T18:11:00-07:00,21.977999877929687,60.0,60000.0 +5412,2025-06-07T18:12:00-07:00,21.963333129882812,60.0,60000.0 +5413,2025-06-07T18:13:00-07:00,21.953333536783855,60.0,60000.0 +5414,2025-06-07T18:14:00-07:00,21.958332697550457,60.0,60000.0 +5415,2025-06-07T18:15:00-07:00,21.966000366210938,60.0,60000.0 +5416,2025-06-07T18:16:00-07:00,21.951667149861652,60.0,60000.0 +5417,2025-06-07T18:17:00-07:00,21.9516658782959,60.0,60000.0 +5418,2025-06-07T18:18:00-07:00,21.982000732421874,60.0,60000.0 +5419,2025-06-07T18:19:00-07:00,22.009998957316082,60.0,60000.0 +5420,2025-06-07T18:20:00-07:00,22.018333435058594,60.0,60000.0 +5421,2025-06-07T18:21:00-07:00,22.00800018310547,60.0,60000.0 +5422,2025-06-07T18:22:00-07:00,21.98166783650716,60.0,60000.0 +5423,2025-06-07T18:23:00-07:00,21.96666717529297,60.0,60000.0 +5424,2025-06-07T18:24:00-07:00,21.959999084472656,60.0,60000.0 +5425,2025-06-07T18:25:00-07:00,21.954999923706055,60.0,60000.0 +5426,2025-06-07T18:26:00-07:00,21.963333129882812,60.0,60000.0 +5427,2025-06-07T18:27:00-07:00,21.984000396728515,60.0,60000.0 +5428,2025-06-07T18:28:00-07:00,22.0,60.0,60000.0 +5429,2025-06-07T18:29:00-07:00,22.003332773844402,60.0,60000.0 +5430,2025-06-07T18:30:00-07:00,21.992001342773438,60.0,60000.0 +5431,2025-06-07T18:31:00-07:00,21.9933344523112,60.0,60000.0 +5432,2025-06-07T18:32:00-07:00,21.990001678466797,60.0,60000.0 +5433,2025-06-07T18:33:00-07:00,21.9880012512207,60.0,60000.0 +5434,2025-06-07T18:34:00-07:00,21.98666763305664,60.0,60000.0 +5435,2025-06-07T18:35:00-07:00,21.991668065388996,60.0,60000.0 +5436,2025-06-07T18:36:00-07:00,21.996000671386717,60.0,60000.0 +5437,2025-06-07T18:37:00-07:00,21.9983336130778,60.0,60000.0 +5438,2025-06-07T18:38:00-07:00,21.983334223429363,60.0,60000.0 +5439,2025-06-07T18:39:00-07:00,21.974000549316408,60.0,60000.0 +5440,2025-06-07T18:40:00-07:00,21.97833315531413,60.0,60000.0 +5441,2025-06-07T18:41:00-07:00,21.983334223429363,60.0,60000.0 +5442,2025-06-07T18:42:00-07:00,21.9880012512207,60.0,60000.0 +5443,2025-06-07T18:43:00-07:00,21.979999542236328,60.0,60000.0 +5444,2025-06-07T18:44:00-07:00,21.979999542236328,60.0,60000.0 +5445,2025-06-07T18:45:00-07:00,21.983333587646484,60.0,60000.0 +5446,2025-06-07T18:46:00-07:00,21.974286215645925,60.0,60000.0 +5447,2025-06-07T18:47:00-07:00,21.968334197998047,60.0,60000.0 +5448,2025-06-07T18:48:00-07:00,21.95800018310547,60.0,60000.0 +5449,2025-06-07T18:49:00-07:00,21.950000127156574,60.0,60000.0 +5450,2025-06-07T18:50:00-07:00,21.939998626708984,60.0,60000.0 +5451,2025-06-07T18:51:00-07:00,21.94199905395508,60.0,60000.0 +5452,2025-06-07T18:52:00-07:00,21.939998626708984,60.0,60000.0 +5453,2025-06-07T18:53:00-07:00,21.948333104451496,60.0,60000.0 +5454,2025-06-07T18:54:00-07:00,21.955999755859374,60.0,60000.0 +5455,2025-06-07T18:55:00-07:00,21.959999084472656,60.0,60000.0 +5456,2025-06-07T18:56:00-07:00,21.951667149861652,60.0,60000.0 +5457,2025-06-07T18:57:00-07:00,21.952000427246094,60.0,60000.0 +5458,2025-06-07T18:58:00-07:00,21.951667149861652,60.0,60000.0 +5459,2025-06-07T18:59:00-07:00,21.94166628519694,60.0,60000.0 +5460,2025-06-07T19:00:00-07:00,21.93000030517578,60.0,60000.0 +5461,2025-06-07T19:01:00-07:00,21.9499994913737,60.0,60000.0 +5462,2025-06-07T19:02:00-07:00,21.968333562215168,60.0,60000.0 +5463,2025-06-07T19:03:00-07:00,21.982000732421874,60.0,60000.0 +5464,2025-06-07T19:04:00-07:00,21.9933344523112,60.0,60000.0 +5465,2025-06-07T19:05:00-07:00,22.0016663869222,60.0,60000.0 +5466,2025-06-07T19:06:00-07:00,21.99800033569336,60.0,60000.0 +5467,2025-06-07T19:07:00-07:00,22.0049991607666,60.0,60000.0 +5468,2025-06-07T19:08:00-07:00,22.01333236694336,60.0,60000.0 +5469,2025-06-07T19:09:00-07:00,22.00599899291992,60.0,60000.0 +5470,2025-06-07T19:10:00-07:00,22.003332773844402,60.0,60000.0 +5471,2025-06-07T19:11:00-07:00,22.009998321533203,60.0,60000.0 +5472,2025-06-07T19:12:00-07:00,22.007998657226562,60.0,60000.0 +5473,2025-06-07T19:13:00-07:00,22.00833257039388,60.0,60000.0 +5474,2025-06-07T19:14:00-07:00,22.009998957316082,60.0,60000.0 +5475,2025-06-07T19:15:00-07:00,22.00599899291992,60.0,60000.0 +5476,2025-06-07T19:16:00-07:00,22.01166598002116,60.0,60000.0 +5477,2025-06-07T19:17:00-07:00,22.018333435058594,60.0,60000.0 +5478,2025-06-07T19:18:00-07:00,22.023999786376955,60.0,60000.0 +5479,2025-06-07T19:19:00-07:00,22.023333231608074,60.0,60000.0 +5480,2025-06-07T19:20:00-07:00,22.024998982747395,60.0,60000.0 +5481,2025-06-07T19:21:00-07:00,22.020000457763672,60.0,60000.0 +5482,2025-06-07T19:22:00-07:00,22.018333435058594,60.0,60000.0 +5483,2025-06-07T19:23:00-07:00,22.01166598002116,60.0,60000.0 +5484,2025-06-07T19:24:00-07:00,22.00499979654948,60.0,60000.0 +5485,2025-06-07T19:25:00-07:00,22.02199935913086,60.0,60000.0 +5486,2025-06-07T19:26:00-07:00,22.026666005452473,60.0,60000.0 +5487,2025-06-07T19:27:00-07:00,22.03333282470703,60.0,60000.0 +5488,2025-06-07T19:28:00-07:00,22.023999786376955,60.0,60000.0 +5489,2025-06-07T19:29:00-07:00,22.026666005452473,60.0,60000.0 +5490,2025-06-07T19:30:00-07:00,22.03499984741211,60.0,60000.0 +5491,2025-06-07T19:31:00-07:00,22.03800048828125,60.0,60000.0 +5492,2025-06-07T19:32:00-07:00,22.038333892822266,60.0,60000.0 +5493,2025-06-07T19:33:00-07:00,22.046666463216145,60.0,60000.0 +5494,2025-06-07T19:34:00-07:00,22.066000366210936,60.0,60000.0 +5495,2025-06-07T19:35:00-07:00,22.07666778564453,60.0,60000.0 +5496,2025-06-07T19:36:00-07:00,22.073333740234375,60.0,60000.0 +5497,2025-06-07T19:37:00-07:00,22.072000122070314,60.0,60000.0 +5498,2025-06-07T19:38:00-07:00,22.071667353312176,60.0,60000.0 +5499,2025-06-07T19:39:00-07:00,22.061667760213215,60.0,60000.0 +5500,2025-06-07T19:40:00-07:00,22.049999237060547,60.0,60000.0 +5501,2025-06-07T19:41:00-07:00,22.049999237060547,60.0,60000.0 +5502,2025-06-07T19:42:00-07:00,22.048333485921223,60.0,60000.0 +5503,2025-06-07T19:43:00-07:00,22.040000915527344,60.0,60000.0 +5504,2025-06-07T19:44:00-07:00,22.05666732788086,60.0,60000.0 +5505,2025-06-07T19:45:00-07:00,22.070000330607098,60.0,60000.0 +5506,2025-06-07T19:46:00-07:00,22.08200149536133,60.0,60000.0 +5507,2025-06-07T19:47:00-07:00,22.093333562215168,60.0,60000.0 +5508,2025-06-07T19:48:00-07:00,22.113333384195965,60.0,60000.0 +5509,2025-06-07T19:49:00-07:00,22.13000030517578,60.0,60000.0 +5510,2025-06-07T19:50:00-07:00,22.141666412353516,60.0,60000.0 +5511,2025-06-07T19:51:00-07:00,22.143333435058594,60.0,60000.0 +5512,2025-06-07T19:52:00-07:00,22.14600067138672,60.0,60000.0 +5513,2025-06-07T19:53:00-07:00,22.155000686645508,60.0,60000.0 +5514,2025-06-07T19:54:00-07:00,22.16666539510091,60.0,60000.0 +5515,2025-06-07T19:55:00-07:00,22.158000183105468,60.0,60000.0 +5516,2025-06-07T19:56:00-07:00,22.156667073567707,60.0,60000.0 +5517,2025-06-07T19:57:00-07:00,22.15833346048991,60.0,60000.0 +5518,2025-06-07T19:58:00-07:00,22.152001190185548,60.0,60000.0 +5519,2025-06-07T19:59:00-07:00,22.16666603088379,60.0,60000.0 +5520,2025-06-07T20:00:00-07:00,22.19166628519694,60.0,60000.0 +5521,2025-06-07T20:01:00-07:00,22.207999420166015,60.0,60000.0 +5522,2025-06-07T20:02:00-07:00,22.21999994913737,60.0,60000.0 +5523,2025-06-07T20:03:00-07:00,22.230000178019207,60.0,60000.0 +5524,2025-06-07T20:04:00-07:00,22.240000915527343,60.0,60000.0 +5525,2025-06-07T20:05:00-07:00,22.25666681925456,60.0,60000.0 +5526,2025-06-07T20:06:00-07:00,22.268333435058594,60.0,60000.0 +5527,2025-06-07T20:07:00-07:00,22.27199935913086,60.0,60000.0 +5528,2025-06-07T20:08:00-07:00,22.268333435058594,60.0,60000.0 +5529,2025-06-07T20:09:00-07:00,22.278332392374676,60.0,60000.0 +5530,2025-06-07T20:10:00-07:00,22.279998779296875,60.0,60000.0 +5531,2025-06-07T20:11:00-07:00,22.279998779296875,60.0,60000.0 +5532,2025-06-07T20:12:00-07:00,22.278332392374676,60.0,60000.0 +5533,2025-06-07T20:13:00-07:00,22.275999450683592,60.0,60000.0 +5534,2025-06-07T20:14:00-07:00,22.278332392374676,60.0,60000.0 +5535,2025-06-07T20:15:00-07:00,22.288333257039387,60.0,60000.0 +5536,2025-06-07T20:16:00-07:00,22.313999938964844,60.0,60000.0 +5537,2025-06-07T20:17:00-07:00,22.32833417256673,60.0,60000.0 +5538,2025-06-07T20:18:00-07:00,22.33333460489909,60.0,60000.0 +5539,2025-06-07T20:19:00-07:00,22.33800048828125,60.0,60000.0 +5540,2025-06-07T20:20:00-07:00,22.35333251953125,60.0,60000.0 +5541,2025-06-07T20:21:00-07:00,22.361666361490887,60.0,60000.0 +5542,2025-06-07T20:22:00-07:00,22.360000610351562,60.0,60000.0 +5543,2025-06-07T20:23:00-07:00,22.35333251953125,60.0,60000.0 +5544,2025-06-07T20:24:00-07:00,22.354999542236328,60.0,60000.0 +5545,2025-06-07T20:25:00-07:00,22.35399932861328,60.0,60000.0 +5546,2025-06-07T20:26:00-07:00,22.358333587646484,60.0,60000.0 +5547,2025-06-07T20:27:00-07:00,22.37499936421712,60.0,60000.0 +5548,2025-06-07T20:28:00-07:00,22.380001068115234,60.0,60000.0 +5549,2025-06-07T20:29:00-07:00,22.380000432332356,60.0,60000.0 +5550,2025-06-07T20:30:00-07:00,22.364999771118164,60.0,60000.0 +5551,2025-06-07T20:31:00-07:00,22.347998809814452,60.0,60000.0 +5552,2025-06-07T20:32:00-07:00,22.34166653951009,60.0,60000.0 +5553,2025-06-07T20:33:00-07:00,22.34833272298177,60.0,60000.0 +5554,2025-06-07T20:34:00-07:00,22.373999786376952,60.0,60000.0 +5555,2025-06-07T20:35:00-07:00,22.383333841959637,60.0,60000.0 +5556,2025-06-07T20:36:00-07:00,22.391666412353516,60.0,60000.0 +5557,2025-06-07T20:37:00-07:00,22.39800109863281,60.0,60000.0 +5558,2025-06-07T20:38:00-07:00,22.400001525878906,60.0,60000.0 +5559,2025-06-07T20:39:00-07:00,22.400000890096027,60.0,60000.0 +5560,2025-06-07T20:40:00-07:00,22.39600067138672,60.0,60000.0 +5561,2025-06-07T20:41:00-07:00,22.385000228881836,60.0,60000.0 +5562,2025-06-07T20:42:00-07:00,22.380001068115234,60.0,60000.0 +5563,2025-06-07T20:43:00-07:00,22.369998931884766,60.0,60000.0 +5564,2025-06-07T20:44:00-07:00,22.368332544962566,60.0,60000.0 +5565,2025-06-07T20:45:00-07:00,22.360000610351562,60.0,60000.0 +5566,2025-06-07T20:46:00-07:00,22.35199890136719,60.0,60000.0 +5567,2025-06-07T20:47:00-07:00,22.344999313354492,60.0,60000.0 +5568,2025-06-07T20:48:00-07:00,22.33666737874349,60.0,60000.0 +5569,2025-06-07T20:49:00-07:00,22.328001403808592,60.0,60000.0 +5570,2025-06-07T20:50:00-07:00,22.318333943684895,60.0,60000.0 +5571,2025-06-07T20:51:00-07:00,22.313334147135418,60.0,60000.0 +5572,2025-06-07T20:52:00-07:00,22.312001037597657,60.0,60000.0 +5573,2025-06-07T20:53:00-07:00,22.298333485921223,60.0,60000.0 +5574,2025-06-07T20:54:00-07:00,22.295000076293945,60.0,60000.0 +5575,2025-06-07T20:55:00-07:00,22.290000915527344,60.0,60000.0 +5576,2025-06-07T20:56:00-07:00,22.286666870117188,60.0,60000.0 +5577,2025-06-07T20:57:00-07:00,22.279999415079754,60.0,60000.0 +5578,2025-06-07T20:58:00-07:00,22.273999786376955,60.0,60000.0 +5579,2025-06-07T20:59:00-07:00,22.268332799275715,60.0,60000.0 +5580,2025-06-07T21:00:00-07:00,22.258331934611004,60.0,60000.0 +5581,2025-06-07T21:01:00-07:00,22.24800033569336,60.0,60000.0 +5582,2025-06-07T21:02:00-07:00,22.241668065388996,60.0,60000.0 +5583,2025-06-07T21:03:00-07:00,22.233333587646484,60.0,60000.0 +5584,2025-06-07T21:04:00-07:00,22.226000213623045,60.0,60000.0 +5585,2025-06-07T21:05:00-07:00,22.226666768391926,60.0,60000.0 +5586,2025-06-07T21:06:00-07:00,22.218334197998047,60.0,60000.0 +5587,2025-06-07T21:07:00-07:00,22.209999084472656,60.0,60000.0 +5588,2025-06-07T21:08:00-07:00,22.204999923706055,60.0,60000.0 +5589,2025-06-07T21:09:00-07:00,22.196666717529297,60.0,60000.0 +5590,2025-06-07T21:10:00-07:00,22.19199905395508,60.0,60000.0 +5591,2025-06-07T21:11:00-07:00,22.178333282470703,60.0,60000.0 +5592,2025-06-07T21:12:00-07:00,22.17166582743327,60.0,60000.0 +5593,2025-06-07T21:13:00-07:00,22.16666603088379,60.0,60000.0 +5594,2025-06-07T21:14:00-07:00,22.163999938964842,60.0,60000.0 +5595,2025-06-07T21:15:00-07:00,22.14833386739095,60.0,60000.0 +5596,2025-06-07T21:16:00-07:00,22.145000457763672,60.0,60000.0 +5597,2025-06-07T21:17:00-07:00,22.134000396728517,60.0,60000.0 +5598,2025-06-07T21:18:00-07:00,22.126667022705078,60.0,60000.0 +5599,2025-06-07T21:19:00-07:00,22.12000020345052,60.0,60000.0 +5600,2025-06-07T21:20:00-07:00,22.09000015258789,60.0,60000.0 +5601,2025-06-07T21:21:00-07:00,22.08666737874349,60.0,60000.0 +5602,2025-06-07T21:22:00-07:00,22.07833480834961,60.0,60000.0 +5603,2025-06-07T21:23:00-07:00,22.080001068115234,60.0,60000.0 +5604,2025-06-07T21:24:00-07:00,22.073333740234375,60.0,60000.0 +5605,2025-06-07T21:25:00-07:00,22.076667149861652,60.0,60000.0 +5606,2025-06-07T21:26:00-07:00,22.08800048828125,60.0,60000.0 +5607,2025-06-07T21:27:00-07:00,22.099999745686848,60.0,60000.0 +5608,2025-06-07T21:28:00-07:00,22.113332748413086,60.0,60000.0 +5609,2025-06-07T21:29:00-07:00,22.126000213623048,60.0,60000.0 +5610,2025-06-07T21:30:00-07:00,22.128334045410156,60.0,60000.0 +5611,2025-06-07T21:31:00-07:00,22.140000025431316,60.0,60000.0 +5612,2025-06-07T21:32:00-07:00,22.144000244140624,60.0,60000.0 +5613,2025-06-07T21:33:00-07:00,22.156667073567707,60.0,60000.0 +5614,2025-06-07T21:34:00-07:00,22.16666539510091,60.0,60000.0 +5615,2025-06-07T21:35:00-07:00,22.173999786376953,60.0,60000.0 +5616,2025-06-07T21:36:00-07:00,22.183333079020183,60.0,60000.0 +5617,2025-06-07T21:37:00-07:00,22.186665852864582,60.0,60000.0 +5618,2025-06-07T21:38:00-07:00,22.187998962402343,60.0,60000.0 +5619,2025-06-07T21:39:00-07:00,22.179999033610027,60.0,60000.0 +5620,2025-06-07T21:40:00-07:00,22.178333282470703,60.0,60000.0 +5621,2025-06-07T21:41:00-07:00,22.1859992980957,60.0,60000.0 +5622,2025-06-07T21:42:00-07:00,22.19499969482422,60.0,60000.0 +5623,2025-06-07T21:43:00-07:00,22.198333740234375,60.0,60000.0 +5624,2025-06-07T21:44:00-07:00,22.20800018310547,60.0,60000.0 +5625,2025-06-07T21:45:00-07:00,22.221667607625324,60.0,60000.0 +5626,2025-06-07T21:46:00-07:00,22.235000610351562,60.0,60000.0 +5627,2025-06-07T21:47:00-07:00,22.240001678466797,60.0,60000.0 +5628,2025-06-07T21:48:00-07:00,22.246667226155598,60.0,60000.0 +5629,2025-06-07T21:49:00-07:00,22.2483336130778,60.0,60000.0 +5630,2025-06-07T21:50:00-07:00,22.2619987487793,60.0,60000.0 +5631,2025-06-07T21:51:00-07:00,22.26166534423828,60.0,60000.0 +5632,2025-06-07T21:52:00-07:00,22.264999389648438,60.0,60000.0 +5633,2025-06-07T21:53:00-07:00,22.273999786376955,60.0,60000.0 +5634,2025-06-07T21:54:00-07:00,22.276666005452473,60.0,60000.0 +5635,2025-06-07T21:55:00-07:00,22.288333892822266,60.0,60000.0 +5636,2025-06-07T21:56:00-07:00,22.290000915527344,60.0,60000.0 +5637,2025-06-07T21:57:00-07:00,22.296666463216145,60.0,60000.0 +5638,2025-06-07T21:58:00-07:00,22.30666732788086,60.0,60000.0 +5639,2025-06-07T21:59:00-07:00,22.312001037597657,60.0,60000.0 +5640,2025-06-07T22:00:00-07:00,22.320000330607098,60.0,60000.0 +5641,2025-06-07T22:01:00-07:00,22.321666717529297,60.0,60000.0 +5642,2025-06-07T22:02:00-07:00,22.328001403808592,60.0,60000.0 +5643,2025-06-07T22:03:00-07:00,22.33333460489909,60.0,60000.0 +5644,2025-06-07T22:04:00-07:00,22.33833376566569,60.0,60000.0 +5645,2025-06-07T22:05:00-07:00,22.341999816894532,60.0,60000.0 +5646,2025-06-07T22:06:00-07:00,22.33500099182129,60.0,60000.0 +5647,2025-06-07T22:07:00-07:00,22.318333943684895,60.0,60000.0 +5648,2025-06-07T22:08:00-07:00,22.310000610351562,60.0,60000.0 +5649,2025-06-07T22:09:00-07:00,22.30666732788086,60.0,60000.0 +5650,2025-06-07T22:10:00-07:00,22.30666732788086,60.0,60000.0 +5651,2025-06-07T22:11:00-07:00,22.299999237060547,60.0,60000.0 +5652,2025-06-07T22:12:00-07:00,22.298333485921223,60.0,60000.0 +5653,2025-06-07T22:13:00-07:00,22.295000076293945,60.0,60000.0 +5654,2025-06-07T22:14:00-07:00,22.28800048828125,60.0,60000.0 +5655,2025-06-07T22:15:00-07:00,22.279998779296875,60.0,60000.0 +5656,2025-06-07T22:16:00-07:00,22.281665802001953,60.0,60000.0 +5657,2025-06-07T22:17:00-07:00,22.273332595825195,60.0,60000.0 +5658,2025-06-07T22:18:00-07:00,22.266666412353516,60.0,60000.0 +5659,2025-06-07T22:19:00-07:00,22.259998957316082,60.0,60000.0 +5660,2025-06-07T22:20:00-07:00,22.25199966430664,60.0,60000.0 +5661,2025-06-07T22:21:00-07:00,22.2450008392334,60.0,60000.0 +5662,2025-06-07T22:22:00-07:00,22.233333587646484,60.0,60000.0 +5663,2025-06-07T22:23:00-07:00,22.224000549316408,60.0,60000.0 +5664,2025-06-07T22:24:00-07:00,22.220000584920246,60.0,60000.0 +5665,2025-06-07T22:25:00-07:00,22.211666742960613,60.0,60000.0 +5666,2025-06-07T22:26:00-07:00,22.207999420166015,60.0,60000.0 +5667,2025-06-07T22:27:00-07:00,22.200000127156574,60.0,60000.0 +5668,2025-06-07T22:28:00-07:00,22.191665649414062,60.0,60000.0 +5669,2025-06-07T22:29:00-07:00,22.177999877929686,60.0,60000.0 +5670,2025-06-07T22:30:00-07:00,22.16666539510091,60.0,60000.0 +5671,2025-06-07T22:31:00-07:00,22.155000686645508,60.0,60000.0 +5672,2025-06-07T22:32:00-07:00,22.14600067138672,60.0,60000.0 +5673,2025-06-07T22:33:00-07:00,22.136666615804035,60.0,60000.0 +5674,2025-06-07T22:34:00-07:00,22.12999979654948,60.0,60000.0 +5675,2025-06-07T22:35:00-07:00,22.12200012207031,60.0,60000.0 +5676,2025-06-07T22:36:00-07:00,22.108332951863606,60.0,60000.0 +5677,2025-06-07T22:37:00-07:00,22.09166653951009,60.0,60000.0 +5678,2025-06-07T22:38:00-07:00,22.080001831054688,60.0,60000.0 +5679,2025-06-07T22:39:00-07:00,22.073333740234375,60.0,60000.0 +5680,2025-06-07T22:40:00-07:00,22.065000534057617,60.0,60000.0 +5681,2025-06-07T22:41:00-07:00,22.05600051879883,60.0,60000.0 +5682,2025-06-07T22:42:00-07:00,22.049999237060547,60.0,60000.0 +5683,2025-06-07T22:43:00-07:00,22.03833262125651,60.0,60000.0 +5684,2025-06-07T22:44:00-07:00,22.03199996948242,60.0,60000.0 +5685,2025-06-07T22:45:00-07:00,22.028332392374676,60.0,60000.0 +5686,2025-06-07T22:46:00-07:00,22.024999618530273,60.0,60000.0 +5687,2025-06-07T22:47:00-07:00,22.019999694824218,60.0,60000.0 +5688,2025-06-07T22:48:00-07:00,22.01166598002116,60.0,60000.0 +5689,2025-06-07T22:49:00-07:00,22.00833257039388,60.0,60000.0 +5690,2025-06-07T22:50:00-07:00,22.0049991607666,60.0,60000.0 +5691,2025-06-07T22:51:00-07:00,21.99800033569336,60.0,60000.0 +5692,2025-06-07T22:52:00-07:00,21.990001678466797,60.0,60000.0 +5693,2025-06-07T22:53:00-07:00,21.979999542236328,60.0,60000.0 +5694,2025-06-07T22:54:00-07:00,21.980000305175782,60.0,60000.0 +5695,2025-06-07T22:55:00-07:00,21.975000381469727,60.0,60000.0 +5696,2025-06-07T22:56:00-07:00,21.96714346749442,60.0,60000.0 +5697,2025-06-07T22:57:00-07:00,21.959999084472656,60.0,60000.0 +5698,2025-06-07T22:58:00-07:00,21.954999923706055,60.0,60000.0 +5699,2025-06-07T22:59:00-07:00,21.950000762939453,60.0,60000.0 +5700,2025-06-07T23:00:00-07:00,21.94399948120117,60.0,60000.0 +5701,2025-06-07T23:01:00-07:00,21.939998626708984,60.0,60000.0 +5702,2025-06-07T23:02:00-07:00,21.94333267211914,60.0,60000.0 +5703,2025-06-07T23:03:00-07:00,21.945999908447266,60.0,60000.0 +5704,2025-06-07T23:04:00-07:00,21.938332239786785,60.0,60000.0 +5705,2025-06-07T23:05:00-07:00,21.939998626708984,60.0,60000.0 +5706,2025-06-07T23:06:00-07:00,21.947999572753908,60.0,60000.0 +5707,2025-06-07T23:07:00-07:00,21.948333740234375,60.0,60000.0 +5708,2025-06-07T23:08:00-07:00,21.948333740234375,60.0,60000.0 +5709,2025-06-07T23:09:00-07:00,21.94399948120117,60.0,60000.0 +5710,2025-06-07T23:10:00-07:00,21.94333267211914,60.0,60000.0 +5711,2025-06-07T23:11:00-07:00,21.936665852864582,60.0,60000.0 +5712,2025-06-07T23:12:00-07:00,21.933999633789064,60.0,60000.0 +5713,2025-06-07T23:13:00-07:00,21.928333282470703,60.0,60000.0 +5714,2025-06-07T23:14:00-07:00,21.919998168945312,60.0,60000.0 +5715,2025-06-07T23:15:00-07:00,21.91799850463867,60.0,60000.0 +5716,2025-06-07T23:16:00-07:00,21.92166582743327,60.0,60000.0 +5717,2025-06-07T23:17:00-07:00,21.91666539510091,60.0,60000.0 +5718,2025-06-07T23:18:00-07:00,21.91199951171875,60.0,60000.0 +5719,2025-06-07T23:19:00-07:00,21.900001525878906,60.0,60000.0 +5720,2025-06-07T23:20:00-07:00,21.89666684468587,60.0,60000.0 +5721,2025-06-07T23:21:00-07:00,21.894000244140624,60.0,60000.0 +5722,2025-06-07T23:22:00-07:00,21.89666748046875,60.0,60000.0 +5723,2025-06-07T23:23:00-07:00,21.888333002726238,60.0,60000.0 +5724,2025-06-07T23:24:00-07:00,21.891999816894533,60.0,60000.0 +5725,2025-06-07T23:25:00-07:00,21.888333002726238,60.0,60000.0 +5726,2025-06-07T23:26:00-07:00,21.878334045410156,60.0,60000.0 +5727,2025-06-07T23:27:00-07:00,21.869998931884766,60.0,60000.0 +5728,2025-06-07T23:28:00-07:00,21.866666158040363,60.0,60000.0 +5729,2025-06-07T23:29:00-07:00,21.863333384195965,60.0,60000.0 +5730,2025-06-07T23:30:00-07:00,21.85199890136719,60.0,60000.0 +5731,2025-06-07T23:31:00-07:00,21.84166653951009,60.0,60000.0 +5732,2025-06-07T23:32:00-07:00,21.83333460489909,60.0,60000.0 +5733,2025-06-07T23:33:00-07:00,21.830001831054688,60.0,60000.0 +5734,2025-06-07T23:34:00-07:00,21.820000330607098,60.0,60000.0 +5735,2025-06-07T23:35:00-07:00,21.811667760213215,60.0,60000.0 +5736,2025-06-07T23:36:00-07:00,21.813999938964844,60.0,60000.0 +5737,2025-06-07T23:37:00-07:00,21.816667556762695,60.0,60000.0 +5738,2025-06-07T23:38:00-07:00,21.81833330790202,60.0,60000.0 +5739,2025-06-07T23:39:00-07:00,21.80600051879883,60.0,60000.0 +5740,2025-06-07T23:40:00-07:00,21.80666732788086,60.0,60000.0 +5741,2025-06-07T23:41:00-07:00,21.80666669209798,60.0,60000.0 +5742,2025-06-07T23:42:00-07:00,21.801999664306642,60.0,60000.0 +5743,2025-06-07T23:43:00-07:00,21.798332850138348,60.0,60000.0 +5744,2025-06-07T23:44:00-07:00,21.791667302449543,60.0,60000.0 +5745,2025-06-07T23:45:00-07:00,21.78199920654297,60.0,60000.0 +5746,2025-06-07T23:46:00-07:00,21.776666005452473,60.0,60000.0 +5747,2025-06-07T23:47:00-07:00,21.766666412353516,60.0,60000.0 +5748,2025-06-07T23:48:00-07:00,21.76199951171875,60.0,60000.0 +5749,2025-06-07T23:49:00-07:00,21.770000457763672,60.0,60000.0 +5750,2025-06-07T23:50:00-07:00,21.764999389648438,60.0,60000.0 +5751,2025-06-07T23:51:00-07:00,21.75599899291992,60.0,60000.0 +5752,2025-06-07T23:52:00-07:00,21.759998957316082,60.0,60000.0 +5753,2025-06-07T23:53:00-07:00,21.75,60.0,60000.0 +5754,2025-06-07T23:54:00-07:00,21.742001342773438,60.0,60000.0 +5755,2025-06-07T23:55:00-07:00,21.733333587646484,60.0,60000.0 +5756,2025-06-07T23:56:00-07:00,21.731666564941406,60.0,60000.0 +5757,2025-06-07T23:57:00-07:00,21.729999542236328,60.0,60000.0 +5758,2025-06-07T23:58:00-07:00,21.725000381469727,60.0,60000.0 +5759,2025-06-07T23:59:00-07:00,21.721667607625324,60.0,60000.0 +5760,2025-06-08T00:00:00-07:00,21.71800079345703,60.0,60000.0 +5761,2025-06-08T00:01:00-07:00,16.243333737055462,60.0,60000.0 +5762,2025-06-08T00:02:00-07:00,21.713333129882812,60.0,60000.0 +5763,2025-06-08T00:03:00-07:00,21.709999084472656,60.0,60000.0 +5764,2025-06-08T00:04:00-07:00,21.703333536783855,60.0,60000.0 +5765,2025-06-08T00:05:00-07:00,21.696666717529297,60.0,60000.0 +5766,2025-06-08T00:06:00-07:00,21.69199905395508,60.0,60000.0 +5767,2025-06-08T00:07:00-07:00,21.69499969482422,60.0,60000.0 +5768,2025-06-08T00:08:00-07:00,21.691665649414062,60.0,60000.0 +5769,2025-06-08T00:09:00-07:00,21.687998962402343,60.0,60000.0 +5770,2025-06-08T00:10:00-07:00,21.686665852864582,60.0,60000.0 +5771,2025-06-08T00:11:00-07:00,21.69333267211914,60.0,60000.0 +5772,2025-06-08T00:12:00-07:00,21.6859992980957,60.0,60000.0 +5773,2025-06-08T00:13:00-07:00,21.689998626708984,60.0,60000.0 +5774,2025-06-08T00:14:00-07:00,21.686665852864582,60.0,60000.0 +5775,2025-06-08T00:15:00-07:00,21.679999542236327,60.0,60000.0 +5776,2025-06-08T00:16:00-07:00,21.684999465942383,60.0,60000.0 +5777,2025-06-08T00:17:00-07:00,21.67333221435547,60.0,60000.0 +5778,2025-06-08T00:18:00-07:00,21.669998168945312,60.0,60000.0 +5779,2025-06-08T00:19:00-07:00,21.668331782023113,60.0,60000.0 +5780,2025-06-08T00:20:00-07:00,21.66333262125651,60.0,60000.0 +5781,2025-06-08T00:21:00-07:00,21.65999984741211,60.0,60000.0 +5782,2025-06-08T00:22:00-07:00,21.65999984741211,60.0,60000.0 +5783,2025-06-08T00:23:00-07:00,21.655000686645508,60.0,60000.0 +5784,2025-06-08T00:24:00-07:00,21.650000762939452,60.0,60000.0 +5785,2025-06-08T00:25:00-07:00,21.645000457763672,60.0,60000.0 +5786,2025-06-08T00:26:00-07:00,21.636666615804035,60.0,60000.0 +5787,2025-06-08T00:27:00-07:00,21.630001068115234,60.0,60000.0 +5788,2025-06-08T00:28:00-07:00,21.630000432332356,60.0,60000.0 +5789,2025-06-08T00:29:00-07:00,21.633333841959637,60.0,60000.0 +5790,2025-06-08T00:30:00-07:00,21.625,60.0,60000.0 +5791,2025-06-08T00:31:00-07:00,21.619998931884766,60.0,60000.0 +5792,2025-06-08T00:32:00-07:00,21.610000610351562,60.0,60000.0 +5793,2025-06-08T00:33:00-07:00,21.601665496826172,60.0,60000.0 +5794,2025-06-08T00:34:00-07:00,21.59599914550781,60.0,60000.0 +5795,2025-06-08T00:35:00-07:00,21.604999542236328,60.0,60000.0 +5796,2025-06-08T00:36:00-07:00,21.599999109903973,60.0,60000.0 +5797,2025-06-08T00:37:00-07:00,21.597998809814452,60.0,60000.0 +5798,2025-06-08T00:38:00-07:00,21.601665496826172,60.0,60000.0 +5799,2025-06-08T00:39:00-07:00,21.59666570027669,60.0,60000.0 +5800,2025-06-08T00:40:00-07:00,21.58800048828125,60.0,60000.0 +5801,2025-06-08T00:41:00-07:00,21.58500099182129,60.0,60000.0 +5802,2025-06-08T00:42:00-07:00,21.58666737874349,60.0,60000.0 +5803,2025-06-08T00:43:00-07:00,21.59000015258789,60.0,60000.0 +5804,2025-06-08T00:44:00-07:00,21.58833376566569,60.0,60000.0 +5805,2025-06-08T00:45:00-07:00,21.594999313354492,60.0,60000.0 +5806,2025-06-08T00:46:00-07:00,21.605998992919922,60.0,60000.0 +5807,2025-06-08T00:47:00-07:00,21.606666564941406,60.0,60000.0 +5808,2025-06-08T00:48:00-07:00,21.604999542236328,60.0,60000.0 +5809,2025-06-08T00:49:00-07:00,21.599998474121094,60.0,60000.0 +5810,2025-06-08T00:50:00-07:00,21.58833376566569,60.0,60000.0 +5811,2025-06-08T00:51:00-07:00,21.57833480834961,60.0,60000.0 +5812,2025-06-08T00:52:00-07:00,21.580001831054688,60.0,60000.0 +5813,2025-06-08T00:53:00-07:00,21.57833480834961,60.0,60000.0 +5814,2025-06-08T00:54:00-07:00,21.581668217976887,60.0,60000.0 +5815,2025-06-08T00:55:00-07:00,21.58400115966797,60.0,60000.0 +5816,2025-06-08T00:56:00-07:00,21.58500099182129,60.0,60000.0 +5817,2025-06-08T00:57:00-07:00,21.58166758219401,60.0,60000.0 +5818,2025-06-08T00:58:00-07:00,21.5760009765625,60.0,60000.0 +5819,2025-06-08T00:59:00-07:00,21.58166758219401,60.0,60000.0 +5820,2025-06-08T01:00:00-07:00,21.57833480834961,60.0,60000.0 +5821,2025-06-08T01:01:00-07:00,21.578001403808592,60.0,60000.0 +5822,2025-06-08T01:02:00-07:00,21.580001831054688,60.0,60000.0 +5823,2025-06-08T01:03:00-07:00,21.581668217976887,60.0,60000.0 +5824,2025-06-08T01:04:00-07:00,21.570000457763673,60.0,60000.0 +5825,2025-06-08T01:05:00-07:00,21.553333282470703,60.0,60000.0 +5826,2025-06-08T01:06:00-07:00,21.541667302449543,60.0,60000.0 +5827,2025-06-08T01:07:00-07:00,21.533999633789062,60.0,60000.0 +5828,2025-06-08T01:08:00-07:00,21.516666412353516,60.0,60000.0 +5829,2025-06-08T01:09:00-07:00,21.5016663869222,60.0,60000.0 +5830,2025-06-08T01:10:00-07:00,21.492000579833984,60.0,60000.0 +5831,2025-06-08T01:11:00-07:00,21.480000813802082,60.0,60000.0 +5832,2025-06-08T01:12:00-07:00,21.461666742960613,60.0,60000.0 +5833,2025-06-08T01:13:00-07:00,21.440000152587892,60.0,60000.0 +5834,2025-06-08T01:14:00-07:00,21.408334096272785,60.0,60000.0 +5835,2025-06-08T01:15:00-07:00,21.39666684468587,60.0,60000.0 +5836,2025-06-08T01:16:00-07:00,21.386000061035155,60.0,60000.0 +5837,2025-06-08T01:17:00-07:00,21.383333841959637,60.0,60000.0 +5838,2025-06-08T01:18:00-07:00,21.36833318074544,60.0,60000.0 +5839,2025-06-08T01:19:00-07:00,21.36199951171875,60.0,60000.0 +5840,2025-06-08T01:20:00-07:00,21.361666997273762,60.0,60000.0 +5841,2025-06-08T01:21:00-07:00,21.358333587646484,60.0,60000.0 +5842,2025-06-08T01:22:00-07:00,21.35199890136719,60.0,60000.0 +5843,2025-06-08T01:23:00-07:00,21.343332926432293,60.0,60000.0 +5844,2025-06-08T01:24:00-07:00,21.331668217976887,60.0,60000.0 +5845,2025-06-08T01:25:00-07:00,21.322000122070314,60.0,60000.0 +5846,2025-06-08T01:26:00-07:00,21.31999969482422,60.0,60000.0 +5847,2025-06-08T01:27:00-07:00,21.313334147135418,60.0,60000.0 +5848,2025-06-08T01:28:00-07:00,21.304000091552734,60.0,60000.0 +5849,2025-06-08T01:29:00-07:00,21.293333689371746,60.0,60000.0 +5850,2025-06-08T01:30:00-07:00,21.290000915527344,60.0,60000.0 +5851,2025-06-08T01:31:00-07:00,21.28800048828125,60.0,60000.0 +5852,2025-06-08T01:32:00-07:00,21.28333282470703,60.0,60000.0 +5853,2025-06-08T01:33:00-07:00,21.27666664123535,60.0,60000.0 +5854,2025-06-08T01:34:00-07:00,21.28199920654297,60.0,60000.0 +5855,2025-06-08T01:35:00-07:00,21.27666664123535,60.0,60000.0 +5856,2025-06-08T01:36:00-07:00,21.268333435058594,60.0,60000.0 +5857,2025-06-08T01:37:00-07:00,21.2619987487793,60.0,60000.0 +5858,2025-06-08T01:38:00-07:00,21.25,60.0,60000.0 +5859,2025-06-08T01:39:00-07:00,21.257141658238,60.0,60000.0 +5860,2025-06-08T01:40:00-07:00,21.26399917602539,60.0,60000.0 +5861,2025-06-08T01:41:00-07:00,21.26333236694336,60.0,60000.0 +5862,2025-06-08T01:42:00-07:00,21.25,60.0,60000.0 +5863,2025-06-08T01:43:00-07:00,21.24800033569336,60.0,60000.0 +5864,2025-06-08T01:44:00-07:00,21.2450008392334,60.0,60000.0 +5865,2025-06-08T01:45:00-07:00,21.240001042683918,60.0,60000.0 +5866,2025-06-08T01:46:00-07:00,21.242001342773438,60.0,60000.0 +5867,2025-06-08T01:47:00-07:00,21.234286172049387,60.0,60000.0 +5868,2025-06-08T01:48:00-07:00,21.22833315531413,60.0,60000.0 +5869,2025-06-08T01:49:00-07:00,21.227999877929687,60.0,60000.0 +5870,2025-06-08T01:50:00-07:00,21.221667607625324,60.0,60000.0 +5871,2025-06-08T01:51:00-07:00,21.21500015258789,60.0,60000.0 +5872,2025-06-08T01:52:00-07:00,21.21199951171875,60.0,60000.0 +5873,2025-06-08T01:53:00-07:00,21.200000127156574,60.0,60000.0 +5874,2025-06-08T01:54:00-07:00,21.18833351135254,60.0,60000.0 +5875,2025-06-08T01:55:00-07:00,21.1739990234375,60.0,60000.0 +5876,2025-06-08T01:56:00-07:00,21.17166582743327,60.0,60000.0 +5877,2025-06-08T01:57:00-07:00,21.16166623433431,60.0,60000.0 +5878,2025-06-08T01:58:00-07:00,21.156000518798827,60.0,60000.0 +5879,2025-06-08T01:59:00-07:00,21.155000686645508,60.0,60000.0 +5880,2025-06-08T02:00:00-07:00,21.15333429972331,60.0,60000.0 +5881,2025-06-08T02:01:00-07:00,21.150001525878906,60.0,60000.0 +5882,2025-06-08T02:02:00-07:00,21.151667912801106,60.0,60000.0 +5883,2025-06-08T02:03:00-07:00,21.15333429972331,60.0,60000.0 +5884,2025-06-08T02:04:00-07:00,21.156000518798827,60.0,60000.0 +5885,2025-06-08T02:05:00-07:00,21.151667912801106,60.0,60000.0 +5886,2025-06-08T02:06:00-07:00,21.148334503173828,60.0,60000.0 +5887,2025-06-08T02:07:00-07:00,21.139999389648438,60.0,60000.0 +5888,2025-06-08T02:08:00-07:00,21.13166681925456,60.0,60000.0 +5889,2025-06-08T02:09:00-07:00,21.121666590372723,60.0,60000.0 +5890,2025-06-08T02:10:00-07:00,21.117999267578124,60.0,60000.0 +5891,2025-06-08T02:11:00-07:00,21.116666793823242,60.0,60000.0 +5892,2025-06-08T02:12:00-07:00,21.115000406901043,60.0,60000.0 +5893,2025-06-08T02:13:00-07:00,21.112000274658204,60.0,60000.0 +5894,2025-06-08T02:14:00-07:00,21.111666997273762,60.0,60000.0 +5895,2025-06-08T02:15:00-07:00,21.111666361490887,60.0,60000.0 +5896,2025-06-08T02:16:00-07:00,21.105999755859376,60.0,60000.0 +5897,2025-06-08T02:17:00-07:00,21.10333251953125,60.0,60000.0 +5898,2025-06-08T02:18:00-07:00,21.09833272298177,60.0,60000.0 +5899,2025-06-08T02:19:00-07:00,21.10399932861328,60.0,60000.0 +5900,2025-06-08T02:20:00-07:00,21.109999974568684,60.0,60000.0 +5901,2025-06-08T02:21:00-07:00,21.09833335876465,60.0,60000.0 +5902,2025-06-08T02:22:00-07:00,21.08333460489909,60.0,60000.0 +5903,2025-06-08T02:23:00-07:00,21.07833417256673,60.0,60000.0 +5904,2025-06-08T02:24:00-07:00,21.066666920979817,60.0,60000.0 +5905,2025-06-08T02:25:00-07:00,21.060000737508137,60.0,60000.0 +5906,2025-06-08T02:26:00-07:00,21.05800094604492,60.0,60000.0 +5907,2025-06-08T02:27:00-07:00,21.051666259765625,60.0,60000.0 +5908,2025-06-08T02:28:00-07:00,21.049999872843426,60.0,60000.0 +5909,2025-06-08T02:29:00-07:00,21.05800094604492,60.0,60000.0 +5910,2025-06-08T02:30:00-07:00,21.058334350585938,60.0,60000.0 +5911,2025-06-08T02:31:00-07:00,21.06833330790202,60.0,60000.0 +5912,2025-06-08T02:32:00-07:00,21.066000366210936,60.0,60000.0 +5913,2025-06-08T02:33:00-07:00,21.065000534057617,60.0,60000.0 +5914,2025-06-08T02:34:00-07:00,21.05833371480306,60.0,60000.0 +5915,2025-06-08T02:35:00-07:00,21.05600051879883,60.0,60000.0 +5916,2025-06-08T02:36:00-07:00,21.05666669209798,60.0,60000.0 +5917,2025-06-08T02:37:00-07:00,21.05500030517578,60.0,60000.0 +5918,2025-06-08T02:38:00-07:00,21.054000091552734,60.0,60000.0 +5919,2025-06-08T02:39:00-07:00,21.05500030517578,60.0,60000.0 +5920,2025-06-08T02:40:00-07:00,21.051666259765625,60.0,60000.0 +5921,2025-06-08T02:41:00-07:00,21.051999664306642,60.0,60000.0 +5922,2025-06-08T02:42:00-07:00,21.048333485921223,60.0,60000.0 +5923,2025-06-08T02:43:00-07:00,21.046666463216145,60.0,60000.0 +5924,2025-06-08T02:44:00-07:00,21.042000579833985,60.0,60000.0 +5925,2025-06-08T02:45:00-07:00,21.03333282470703,60.0,60000.0 +5926,2025-06-08T02:46:00-07:00,21.018333435058594,60.0,60000.0 +5927,2025-06-08T02:47:00-07:00,21.020000457763672,60.0,60000.0 +5928,2025-06-08T02:48:00-07:00,21.020000457763672,60.0,60000.0 +5929,2025-06-08T02:49:00-07:00,21.02166684468587,60.0,60000.0 +5930,2025-06-08T02:50:00-07:00,21.0119987487793,60.0,60000.0 +5931,2025-06-08T02:51:00-07:00,21.0066655476888,60.0,60000.0 +5932,2025-06-08T02:52:00-07:00,21.0049991607666,60.0,60000.0 +5933,2025-06-08T02:53:00-07:00,21.0,60.0,60000.0 +5934,2025-06-08T02:54:00-07:00,20.990000406901043,60.0,60000.0 +5935,2025-06-08T02:55:00-07:00,20.983333587646484,60.0,60000.0 +5936,2025-06-08T02:56:00-07:00,20.982000732421874,60.0,60000.0 +5937,2025-06-08T02:57:00-07:00,20.985000610351562,60.0,60000.0 +5938,2025-06-08T02:58:00-07:00,20.97833315531413,60.0,60000.0 +5939,2025-06-08T02:59:00-07:00,20.976000213623045,60.0,60000.0 +5940,2025-06-08T03:00:00-07:00,20.976666768391926,60.0,60000.0 +5941,2025-06-08T03:01:00-07:00,20.959999084472656,60.0,60000.0 +5942,2025-06-08T03:02:00-07:00,20.955999755859374,60.0,60000.0 +5943,2025-06-08T03:03:00-07:00,20.950000762939453,60.0,60000.0 +5944,2025-06-08T03:04:00-07:00,20.953333536783855,60.0,60000.0 +5945,2025-06-08T03:05:00-07:00,20.954000091552736,60.0,60000.0 +5946,2025-06-08T03:06:00-07:00,20.946666717529297,60.0,60000.0 +5947,2025-06-08T03:07:00-07:00,20.939999262491863,60.0,60000.0 +5948,2025-06-08T03:08:00-07:00,20.933999633789064,60.0,60000.0 +5949,2025-06-08T03:09:00-07:00,20.938332239786785,60.0,60000.0 +5950,2025-06-08T03:10:00-07:00,20.941665649414062,60.0,60000.0 +5951,2025-06-08T03:11:00-07:00,20.939998626708984,60.0,60000.0 +5952,2025-06-08T03:12:00-07:00,20.938332239786785,60.0,60000.0 +5953,2025-06-08T03:13:00-07:00,20.933333079020183,60.0,60000.0 +5954,2025-06-08T03:14:00-07:00,20.931999969482423,60.0,60000.0 +5955,2025-06-08T03:15:00-07:00,20.92333221435547,60.0,60000.0 +5956,2025-06-08T03:16:00-07:00,20.92333221435547,60.0,60000.0 +5957,2025-06-08T03:17:00-07:00,20.91799850463867,60.0,60000.0 +5958,2025-06-08T03:18:00-07:00,20.91166623433431,60.0,60000.0 +5959,2025-06-08T03:19:00-07:00,20.91333262125651,60.0,60000.0 +5960,2025-06-08T03:20:00-07:00,20.906000518798827,60.0,60000.0 +5961,2025-06-08T03:21:00-07:00,20.906667073567707,60.0,60000.0 +5962,2025-06-08T03:22:00-07:00,20.902858189174108,60.0,60000.0 +5963,2025-06-08T03:23:00-07:00,20.90400085449219,60.0,60000.0 +5964,2025-06-08T03:24:00-07:00,20.901667912801106,60.0,60000.0 +5965,2025-06-08T03:25:00-07:00,20.898334503173828,60.0,60000.0 +5966,2025-06-08T03:26:00-07:00,20.88800048828125,60.0,60000.0 +5967,2025-06-08T03:27:00-07:00,20.876667022705078,60.0,60000.0 +5968,2025-06-08T03:28:00-07:00,20.866666158040363,60.0,60000.0 +5969,2025-06-08T03:29:00-07:00,20.868332544962566,60.0,60000.0 +5970,2025-06-08T03:30:00-07:00,20.863999938964845,60.0,60000.0 +5971,2025-06-08T03:31:00-07:00,20.863333384195965,60.0,60000.0 +5972,2025-06-08T03:32:00-07:00,20.864999771118164,60.0,60000.0 +5973,2025-06-08T03:33:00-07:00,20.855999755859376,60.0,60000.0 +5974,2025-06-08T03:34:00-07:00,20.85166613260905,60.0,60000.0 +5975,2025-06-08T03:35:00-07:00,20.851665496826172,60.0,60000.0 +5976,2025-06-08T03:36:00-07:00,20.860000610351562,60.0,60000.0 +5977,2025-06-08T03:37:00-07:00,20.858333587646484,60.0,60000.0 +5978,2025-06-08T03:38:00-07:00,20.864999771118164,60.0,60000.0 +5979,2025-06-08T03:39:00-07:00,20.85999984741211,60.0,60000.0 +5980,2025-06-08T03:40:00-07:00,20.864999135335285,60.0,60000.0 +5981,2025-06-08T03:41:00-07:00,20.856666564941406,60.0,60000.0 +5982,2025-06-08T03:42:00-07:00,20.849998474121094,60.0,60000.0 +5983,2025-06-08T03:43:00-07:00,20.843332926432293,60.0,60000.0 +5984,2025-06-08T03:44:00-07:00,20.84000015258789,60.0,60000.0 +5985,2025-06-08T03:45:00-07:00,20.826000213623047,60.0,60000.0 +5986,2025-06-08T03:46:00-07:00,20.811667760213215,60.0,60000.0 +5987,2025-06-08T03:47:00-07:00,20.80500030517578,60.0,60000.0 +5988,2025-06-08T03:48:00-07:00,20.799999237060547,60.0,60000.0 +5989,2025-06-08T03:49:00-07:00,20.801666259765625,60.0,60000.0 +5990,2025-06-08T03:50:00-07:00,20.801666259765625,60.0,60000.0 +5991,2025-06-08T03:51:00-07:00,20.79800033569336,60.0,60000.0 +5992,2025-06-08T03:52:00-07:00,20.801666259765625,60.0,60000.0 +5993,2025-06-08T03:53:00-07:00,20.798332850138348,60.0,60000.0 +5994,2025-06-08T03:54:00-07:00,20.804000091552734,60.0,60000.0 +5995,2025-06-08T03:55:00-07:00,20.803333282470703,60.0,60000.0 +5996,2025-06-08T03:56:00-07:00,20.791666666666668,60.0,60000.0 +5997,2025-06-08T03:57:00-07:00,20.795999908447264,60.0,60000.0 +5998,2025-06-08T03:58:00-07:00,20.790000915527344,60.0,60000.0 +5999,2025-06-08T03:59:00-07:00,20.791667302449543,60.0,60000.0 +6000,2025-06-08T04:00:00-07:00,20.794000244140626,60.0,60000.0 +6001,2025-06-08T04:01:00-07:00,20.795000076293945,60.0,60000.0 +6002,2025-06-08T04:02:00-07:00,20.786666870117188,60.0,60000.0 +6003,2025-06-08T04:03:00-07:00,20.777999114990234,60.0,60000.0 +6004,2025-06-08T04:04:00-07:00,20.778332392374676,60.0,60000.0 +6005,2025-06-08T04:05:00-07:00,20.776666005452473,60.0,60000.0 +6006,2025-06-08T04:06:00-07:00,20.770000457763672,60.0,60000.0 +6007,2025-06-08T04:07:00-07:00,20.776666005452473,60.0,60000.0 +6008,2025-06-08T04:08:00-07:00,20.774999618530273,60.0,60000.0 +6009,2025-06-08T04:09:00-07:00,20.77199935913086,60.0,60000.0 +6010,2025-06-08T04:10:00-07:00,20.773333231608074,60.0,60000.0 +6011,2025-06-08T04:11:00-07:00,20.776666005452473,60.0,60000.0 +6012,2025-06-08T04:12:00-07:00,20.775999450683592,60.0,60000.0 +6013,2025-06-08T04:13:00-07:00,20.76166534423828,60.0,60000.0 +6014,2025-06-08T04:14:00-07:00,20.759998321533203,60.0,60000.0 +6015,2025-06-08T04:15:00-07:00,20.768000030517577,60.0,60000.0 +6016,2025-06-08T04:16:00-07:00,20.766666412353516,60.0,60000.0 +6017,2025-06-08T04:17:00-07:00,20.758331934611004,60.0,60000.0 +6018,2025-06-08T04:18:00-07:00,20.75599899291992,60.0,60000.0 +6019,2025-06-08T04:19:00-07:00,20.7516663869222,60.0,60000.0 +6020,2025-06-08T04:20:00-07:00,20.75,60.0,60000.0 +6021,2025-06-08T04:21:00-07:00,20.742001342773438,60.0,60000.0 +6022,2025-06-08T04:22:00-07:00,20.73666763305664,60.0,60000.0 +6023,2025-06-08T04:23:00-07:00,20.731666564941406,60.0,60000.0 +6024,2025-06-08T04:24:00-07:00,20.726000213623045,60.0,60000.0 +6025,2025-06-08T04:25:00-07:00,20.721667607625324,60.0,60000.0 +6026,2025-06-08T04:26:00-07:00,20.71500015258789,60.0,60000.0 +6027,2025-06-08T04:27:00-07:00,20.713333129882812,60.0,60000.0 +6028,2025-06-08T04:28:00-07:00,20.708333333333332,60.0,60000.0 +6029,2025-06-08T04:29:00-07:00,20.71333376566569,60.0,60000.0 +6030,2025-06-08T04:30:00-07:00,20.71500015258789,60.0,60000.0 +6031,2025-06-08T04:31:00-07:00,20.716000366210938,60.0,60000.0 +6032,2025-06-08T04:32:00-07:00,20.71666717529297,60.0,60000.0 +6033,2025-06-08T04:33:00-07:00,20.709999084472656,60.0,60000.0 +6034,2025-06-08T04:34:00-07:00,20.707999420166015,60.0,60000.0 +6035,2025-06-08T04:35:00-07:00,20.703333536783855,60.0,60000.0 +6036,2025-06-08T04:36:00-07:00,20.700000127156574,60.0,60000.0 +6037,2025-06-08T04:37:00-07:00,20.69399948120117,60.0,60000.0 +6038,2025-06-08T04:38:00-07:00,20.68500010172526,60.0,60000.0 +6039,2025-06-08T04:39:00-07:00,20.689999262491863,60.0,60000.0 +6040,2025-06-08T04:40:00-07:00,20.69199905395508,60.0,60000.0 +6041,2025-06-08T04:41:00-07:00,20.69499905904134,60.0,60000.0 +6042,2025-06-08T04:42:00-07:00,20.689999262491863,60.0,60000.0 +6043,2025-06-08T04:43:00-07:00,20.681999969482423,60.0,60000.0 +6044,2025-06-08T04:44:00-07:00,20.678333282470703,60.0,60000.0 +6045,2025-06-08T04:45:00-07:00,20.678333282470703,60.0,60000.0 +6046,2025-06-08T04:46:00-07:00,20.669998168945312,60.0,60000.0 +6047,2025-06-08T04:47:00-07:00,20.673332850138348,60.0,60000.0 +6048,2025-06-08T04:48:00-07:00,20.669998168945312,60.0,60000.0 +6049,2025-06-08T04:49:00-07:00,20.6739990234375,60.0,60000.0 +6050,2025-06-08T04:50:00-07:00,20.67166519165039,60.0,60000.0 +6051,2025-06-08T04:51:00-07:00,20.67333221435547,60.0,60000.0 +6052,2025-06-08T04:52:00-07:00,20.669998168945312,60.0,60000.0 +6053,2025-06-08T04:53:00-07:00,20.669998168945312,60.0,60000.0 +6054,2025-06-08T04:54:00-07:00,20.66666539510091,60.0,60000.0 +6055,2025-06-08T04:55:00-07:00,20.669998168945312,60.0,60000.0 +6056,2025-06-08T04:56:00-07:00,20.668331782023113,60.0,60000.0 +6057,2025-06-08T04:57:00-07:00,20.65999984741211,60.0,60000.0 +6058,2025-06-08T04:58:00-07:00,20.656000518798827,60.0,60000.0 +6059,2025-06-08T04:59:00-07:00,20.65999984741211,60.0,60000.0 +6060,2025-06-08T05:00:00-07:00,20.65999984741211,60.0,60000.0 +6061,2025-06-08T05:01:00-07:00,20.658000183105468,60.0,60000.0 +6062,2025-06-08T05:02:00-07:00,20.656667073567707,60.0,60000.0 +6063,2025-06-08T05:03:00-07:00,20.648334503173828,60.0,60000.0 +6064,2025-06-08T05:04:00-07:00,20.63600082397461,60.0,60000.0 +6065,2025-06-08T05:05:00-07:00,20.631667455037434,60.0,60000.0 +6066,2025-06-08T05:06:00-07:00,20.628333409627277,60.0,60000.0 +6067,2025-06-08T05:07:00-07:00,20.626000213623048,60.0,60000.0 +6068,2025-06-08T05:08:00-07:00,20.623332341512043,60.0,60000.0 +6069,2025-06-08T05:09:00-07:00,20.618332544962566,60.0,60000.0 +6070,2025-06-08T05:10:00-07:00,20.612000274658204,60.0,60000.0 +6071,2025-06-08T05:11:00-07:00,20.611666997273762,60.0,60000.0 +6072,2025-06-08T05:12:00-07:00,20.613333384195965,60.0,60000.0 +6073,2025-06-08T05:13:00-07:00,20.610000610351562,60.0,60000.0 +6074,2025-06-08T05:14:00-07:00,20.608333587646484,60.0,60000.0 +6075,2025-06-08T05:15:00-07:00,20.609999974568684,60.0,60000.0 +6076,2025-06-08T05:16:00-07:00,20.60399932861328,60.0,60000.0 +6077,2025-06-08T05:17:00-07:00,20.601665496826172,60.0,60000.0 +6078,2025-06-08T05:18:00-07:00,20.599998474121094,60.0,60000.0 +6079,2025-06-08T05:19:00-07:00,20.599998474121094,60.0,60000.0 +6080,2025-06-08T05:20:00-07:00,20.599998474121094,60.0,60000.0 +6081,2025-06-08T05:21:00-07:00,20.599999109903973,60.0,60000.0 +6082,2025-06-08T05:22:00-07:00,20.599998474121094,60.0,60000.0 +6083,2025-06-08T05:23:00-07:00,20.593332926432293,60.0,60000.0 +6084,2025-06-08T05:24:00-07:00,20.59000015258789,60.0,60000.0 +6085,2025-06-08T05:25:00-07:00,20.59000015258789,60.0,60000.0 +6086,2025-06-08T05:26:00-07:00,20.57833480834961,60.0,60000.0 +6087,2025-06-08T05:27:00-07:00,20.573333740234375,60.0,60000.0 +6088,2025-06-08T05:28:00-07:00,20.568000030517577,60.0,60000.0 +6089,2025-06-08T05:29:00-07:00,20.573333740234375,60.0,60000.0 +6090,2025-06-08T05:30:00-07:00,20.56999969482422,60.0,60000.0 +6091,2025-06-08T05:31:00-07:00,20.570000457763673,60.0,60000.0 +6092,2025-06-08T05:32:00-07:00,20.573333740234375,60.0,60000.0 +6093,2025-06-08T05:33:00-07:00,20.57833480834961,60.0,60000.0 +6094,2025-06-08T05:34:00-07:00,20.58200149536133,60.0,60000.0 +6095,2025-06-08T05:35:00-07:00,20.57666778564453,60.0,60000.0 +6096,2025-06-08T05:36:00-07:00,20.575000762939453,60.0,60000.0 +6097,2025-06-08T05:37:00-07:00,20.562001037597657,60.0,60000.0 +6098,2025-06-08T05:38:00-07:00,20.56166712443034,60.0,60000.0 +6099,2025-06-08T05:39:00-07:00,20.560000737508137,60.0,60000.0 +6100,2025-06-08T05:40:00-07:00,20.566000366210936,60.0,60000.0 +6101,2025-06-08T05:41:00-07:00,20.556667963663738,60.0,60000.0 +6102,2025-06-08T05:42:00-07:00,20.56333351135254,60.0,60000.0 +6103,2025-06-08T05:43:00-07:00,20.560001373291016,60.0,60000.0 +6104,2025-06-08T05:44:00-07:00,20.55500030517578,60.0,60000.0 +6105,2025-06-08T05:45:00-07:00,20.543333689371746,60.0,60000.0 +6106,2025-06-08T05:46:00-07:00,20.542000579833985,60.0,60000.0 +6107,2025-06-08T05:47:00-07:00,20.540000279744465,60.0,60000.0 +6108,2025-06-08T05:48:00-07:00,20.53714316231864,60.0,60000.0 +6109,2025-06-08T05:49:00-07:00,20.529998779296875,60.0,60000.0 +6110,2025-06-08T05:50:00-07:00,20.526666005452473,60.0,60000.0 +6111,2025-06-08T05:51:00-07:00,20.526666005452473,60.0,60000.0 +6112,2025-06-08T05:52:00-07:00,20.531665802001953,60.0,60000.0 +6113,2025-06-08T05:53:00-07:00,20.52999954223633,60.0,60000.0 +6114,2025-06-08T05:54:00-07:00,20.52166684468587,60.0,60000.0 +6115,2025-06-08T05:55:00-07:00,20.519999821980793,60.0,60000.0 +6116,2025-06-08T05:56:00-07:00,20.519999694824218,60.0,60000.0 +6117,2025-06-08T05:57:00-07:00,20.509998321533203,60.0,60000.0 +6118,2025-06-08T05:58:00-07:00,20.509999593098957,60.0,60000.0 +6119,2025-06-08T05:59:00-07:00,20.5119987487793,60.0,60000.0 +6120,2025-06-08T06:00:00-07:00,20.509998321533203,60.0,60000.0 +6121,2025-06-08T06:01:00-07:00,20.509998321533203,60.0,60000.0 +6122,2025-06-08T06:02:00-07:00,20.509999084472657,60.0,60000.0 +6123,2025-06-08T06:03:00-07:00,20.514999389648438,60.0,60000.0 +6124,2025-06-08T06:04:00-07:00,20.508331934611004,60.0,60000.0 +6125,2025-06-08T06:05:00-07:00,20.507998657226562,60.0,60000.0 +6126,2025-06-08T06:06:00-07:00,20.509998321533203,60.0,60000.0 +6127,2025-06-08T06:07:00-07:00,20.509998321533203,60.0,60000.0 +6128,2025-06-08T06:08:00-07:00,20.507999420166016,60.0,60000.0 +6129,2025-06-08T06:09:00-07:00,20.503332773844402,60.0,60000.0 +6130,2025-06-08T06:10:00-07:00,20.4983336130778,60.0,60000.0 +6131,2025-06-08T06:11:00-07:00,20.49400100708008,60.0,60000.0 +6132,2025-06-08T06:12:00-07:00,20.4933344523112,60.0,60000.0 +6133,2025-06-08T06:13:00-07:00,20.4983336130778,60.0,60000.0 +6134,2025-06-08T06:14:00-07:00,20.503999328613283,60.0,60000.0 +6135,2025-06-08T06:15:00-07:00,20.509998957316082,60.0,60000.0 +6136,2025-06-08T06:16:00-07:00,20.5016663869222,60.0,60000.0 +6137,2025-06-08T06:17:00-07:00,20.496000671386717,60.0,60000.0 +6138,2025-06-08T06:18:00-07:00,20.490001678466797,60.0,60000.0 +6139,2025-06-08T06:19:00-07:00,20.490001678466797,60.0,60000.0 +6140,2025-06-08T06:20:00-07:00,20.481999969482423,60.0,60000.0 +6141,2025-06-08T06:21:00-07:00,20.485000610351562,60.0,60000.0 +6142,2025-06-08T06:22:00-07:00,20.483333587646484,60.0,60000.0 +6143,2025-06-08T06:23:00-07:00,20.484000396728515,60.0,60000.0 +6144,2025-06-08T06:24:00-07:00,20.476666768391926,60.0,60000.0 +6145,2025-06-08T06:25:00-07:00,20.468333562215168,60.0,60000.0 +6146,2025-06-08T06:26:00-07:00,20.46800003051758,60.0,60000.0 +6147,2025-06-08T06:27:00-07:00,20.461666107177734,60.0,60000.0 +6148,2025-06-08T06:28:00-07:00,20.451667149861652,60.0,60000.0 +6149,2025-06-08T06:29:00-07:00,20.447999572753908,60.0,60000.0 +6150,2025-06-08T06:30:00-07:00,20.44499969482422,60.0,60000.0 +6151,2025-06-08T06:31:00-07:00,20.44499969482422,60.0,60000.0 +6152,2025-06-08T06:32:00-07:00,20.452000427246094,60.0,60000.0 +6153,2025-06-08T06:33:00-07:00,20.451667149861652,60.0,60000.0 +6154,2025-06-08T06:34:00-07:00,20.451667149861652,60.0,60000.0 +6155,2025-06-08T06:35:00-07:00,20.450000762939453,60.0,60000.0 +6156,2025-06-08T06:36:00-07:00,20.448333740234375,60.0,60000.0 +6157,2025-06-08T06:37:00-07:00,20.439998626708984,60.0,60000.0 +6158,2025-06-08T06:38:00-07:00,20.437998962402343,60.0,60000.0 +6159,2025-06-08T06:39:00-07:00,20.441665649414062,60.0,60000.0 +6160,2025-06-08T06:40:00-07:00,20.44333267211914,60.0,60000.0 +6161,2025-06-08T06:41:00-07:00,20.44199905395508,60.0,60000.0 +6162,2025-06-08T06:42:00-07:00,20.434999465942383,60.0,60000.0 +6163,2025-06-08T06:43:00-07:00,20.43000030517578,60.0,60000.0 +6164,2025-06-08T06:44:00-07:00,20.419998168945312,60.0,60000.0 +6165,2025-06-08T06:45:00-07:00,20.42166519165039,60.0,60000.0 +6166,2025-06-08T06:46:00-07:00,20.41333262125651,60.0,60000.0 +6167,2025-06-08T06:47:00-07:00,20.41599884033203,60.0,60000.0 +6168,2025-06-08T06:48:00-07:00,20.41999880472819,60.0,60000.0 +6169,2025-06-08T06:49:00-07:00,20.42166519165039,60.0,60000.0 +6170,2025-06-08T06:50:00-07:00,20.41799850463867,60.0,60000.0 +6171,2025-06-08T06:51:00-07:00,20.42333221435547,60.0,60000.0 +6172,2025-06-08T06:52:00-07:00,20.42333221435547,60.0,60000.0 +6173,2025-06-08T06:53:00-07:00,20.4239990234375,60.0,60000.0 +6174,2025-06-08T06:54:00-07:00,20.41666603088379,60.0,60000.0 +6175,2025-06-08T06:55:00-07:00,20.41166623433431,60.0,60000.0 +6176,2025-06-08T06:56:00-07:00,20.40999984741211,60.0,60000.0 +6177,2025-06-08T06:57:00-07:00,20.40999984741211,60.0,60000.0 +6178,2025-06-08T06:58:00-07:00,20.406667073567707,60.0,60000.0 +6179,2025-06-08T06:59:00-07:00,20.40400085449219,60.0,60000.0 +6180,2025-06-08T07:00:00-07:00,20.40999984741211,60.0,60000.0 +6181,2025-06-08T07:01:00-07:00,20.41166623433431,60.0,60000.0 +6182,2025-06-08T07:02:00-07:00,20.41199951171875,60.0,60000.0 +6183,2025-06-08T07:03:00-07:00,20.40833346048991,60.0,60000.0 +6184,2025-06-08T07:04:00-07:00,20.40999984741211,60.0,60000.0 +6185,2025-06-08T07:05:00-07:00,20.406000518798827,60.0,60000.0 +6186,2025-06-08T07:06:00-07:00,20.398334503173828,60.0,60000.0 +6187,2025-06-08T07:07:00-07:00,20.391666412353516,60.0,60000.0 +6188,2025-06-08T07:08:00-07:00,20.391999816894533,60.0,60000.0 +6189,2025-06-08T07:09:00-07:00,20.386666615804035,60.0,60000.0 +6190,2025-06-08T07:10:00-07:00,20.383333841959637,60.0,60000.0 +6191,2025-06-08T07:11:00-07:00,20.388333002726238,60.0,60000.0 +6192,2025-06-08T07:12:00-07:00,20.380001068115234,60.0,60000.0 +6193,2025-06-08T07:13:00-07:00,20.381667455037434,60.0,60000.0 +6194,2025-06-08T07:14:00-07:00,20.381667455037434,60.0,60000.0 +6195,2025-06-08T07:15:00-07:00,20.37800064086914,60.0,60000.0 +6196,2025-06-08T07:16:00-07:00,20.380001068115234,60.0,60000.0 +6197,2025-06-08T07:17:00-07:00,20.380001068115234,60.0,60000.0 +6198,2025-06-08T07:18:00-07:00,20.373999786376952,60.0,60000.0 +6199,2025-06-08T07:19:00-07:00,20.375,60.0,60000.0 +6200,2025-06-08T07:20:00-07:00,20.380001068115234,60.0,60000.0 +6201,2025-06-08T07:21:00-07:00,20.376000213623048,60.0,60000.0 +6202,2025-06-08T07:22:00-07:00,20.373332977294922,60.0,60000.0 +6203,2025-06-08T07:23:00-07:00,20.368332544962566,60.0,60000.0 +6204,2025-06-08T07:24:00-07:00,20.363999938964845,60.0,60000.0 +6205,2025-06-08T07:25:00-07:00,20.361666997273762,60.0,60000.0 +6206,2025-06-08T07:26:00-07:00,20.35333251953125,60.0,60000.0 +6207,2025-06-08T07:27:00-07:00,20.35399932861328,60.0,60000.0 +6208,2025-06-08T07:28:00-07:00,20.348332087198894,60.0,60000.0 +6209,2025-06-08T07:29:00-07:00,20.348332087198894,60.0,60000.0 +6210,2025-06-08T07:30:00-07:00,20.35399932861328,60.0,60000.0 +6211,2025-06-08T07:31:00-07:00,20.354999542236328,60.0,60000.0 +6212,2025-06-08T07:32:00-07:00,20.35166613260905,60.0,60000.0 +6213,2025-06-08T07:33:00-07:00,20.358000183105467,60.0,60000.0 +6214,2025-06-08T07:34:00-07:00,20.348332087198894,60.0,60000.0 +6215,2025-06-08T07:35:00-07:00,20.349998474121094,60.0,60000.0 +6216,2025-06-08T07:36:00-07:00,20.347998809814452,60.0,60000.0 +6217,2025-06-08T07:37:00-07:00,20.348332087198894,60.0,60000.0 +6218,2025-06-08T07:38:00-07:00,20.348332087198894,60.0,60000.0 +6219,2025-06-08T07:39:00-07:00,20.347998809814452,60.0,60000.0 +6220,2025-06-08T07:40:00-07:00,20.34666570027669,60.0,60000.0 +6221,2025-06-08T07:41:00-07:00,20.34666570027669,60.0,60000.0 +6222,2025-06-08T07:42:00-07:00,20.355999755859376,60.0,60000.0 +6223,2025-06-08T07:43:00-07:00,20.349999109903973,60.0,60000.0 +6224,2025-06-08T07:44:00-07:00,20.349998474121094,60.0,60000.0 +6225,2025-06-08T07:45:00-07:00,20.347998809814452,60.0,60000.0 +6226,2025-06-08T07:46:00-07:00,20.349998474121094,60.0,60000.0 +6227,2025-06-08T07:47:00-07:00,20.34833272298177,60.0,60000.0 +6228,2025-06-08T07:48:00-07:00,20.34599914550781,60.0,60000.0 +6229,2025-06-08T07:49:00-07:00,20.343332926432293,60.0,60000.0 +6230,2025-06-08T07:50:00-07:00,20.33666737874349,60.0,60000.0 +6231,2025-06-08T07:51:00-07:00,20.33200149536133,60.0,60000.0 +6232,2025-06-08T07:52:00-07:00,20.331668217976887,60.0,60000.0 +6233,2025-06-08T07:53:00-07:00,20.33500099182129,60.0,60000.0 +6234,2025-06-08T07:54:00-07:00,20.336000823974608,60.0,60000.0 +6235,2025-06-08T07:55:00-07:00,20.33500099182129,60.0,60000.0 +6236,2025-06-08T07:56:00-07:00,20.330001831054688,60.0,60000.0 +6237,2025-06-08T07:57:00-07:00,20.328001403808592,60.0,60000.0 +6238,2025-06-08T07:58:00-07:00,20.32666778564453,60.0,60000.0 +6239,2025-06-08T07:59:00-07:00,20.330001831054688,60.0,60000.0 +6240,2025-06-08T08:00:00-07:00,20.328001403808592,60.0,60000.0 +6241,2025-06-08T08:01:00-07:00,20.325000762939453,60.0,60000.0 +6242,2025-06-08T08:02:00-07:00,20.325000762939453,60.0,60000.0 +6243,2025-06-08T08:03:00-07:00,20.320000457763673,60.0,60000.0 +6244,2025-06-08T08:04:00-07:00,20.315000534057617,60.0,60000.0 +6245,2025-06-08T08:05:00-07:00,20.318333943684895,60.0,60000.0 +6246,2025-06-08T08:06:00-07:00,20.318000030517577,60.0,60000.0 +6247,2025-06-08T08:07:00-07:00,20.315000534057617,60.0,60000.0 +6248,2025-06-08T08:08:00-07:00,20.31999969482422,60.0,60000.0 +6249,2025-06-08T08:09:00-07:00,20.31833330790202,60.0,60000.0 +6250,2025-06-08T08:10:00-07:00,20.312001037597657,60.0,60000.0 +6251,2025-06-08T08:11:00-07:00,20.315000534057617,60.0,60000.0 +6252,2025-06-08T08:12:00-07:00,20.313334147135418,60.0,60000.0 +6253,2025-06-08T08:13:00-07:00,20.318000030517577,60.0,60000.0 +6254,2025-06-08T08:14:00-07:00,20.318333943684895,60.0,60000.0 +6255,2025-06-08T08:15:00-07:00,20.31999969482422,60.0,60000.0 +6256,2025-06-08T08:16:00-07:00,20.3140007019043,60.0,60000.0 +6257,2025-06-08T08:17:00-07:00,20.30666732788086,60.0,60000.0 +6258,2025-06-08T08:18:00-07:00,20.310000737508137,60.0,60000.0 +6259,2025-06-08T08:19:00-07:00,20.30800094604492,60.0,60000.0 +6260,2025-06-08T08:20:00-07:00,20.310001373291016,60.0,60000.0 +6261,2025-06-08T08:21:00-07:00,20.308334350585938,60.0,60000.0 +6262,2025-06-08T08:22:00-07:00,20.310000610351562,60.0,60000.0 +6263,2025-06-08T08:23:00-07:00,20.310001373291016,60.0,60000.0 +6264,2025-06-08T08:24:00-07:00,20.30666732788086,60.0,60000.0 +6265,2025-06-08T08:25:00-07:00,20.30600051879883,60.0,60000.0 +6266,2025-06-08T08:26:00-07:00,20.30500030517578,60.0,60000.0 +6267,2025-06-08T08:27:00-07:00,20.310000737508137,60.0,60000.0 +6268,2025-06-08T08:28:00-07:00,20.30800094604492,60.0,60000.0 +6269,2025-06-08T08:29:00-07:00,20.310001373291016,60.0,60000.0 +6270,2025-06-08T08:30:00-07:00,20.310001373291016,60.0,60000.0 +6271,2025-06-08T08:31:00-07:00,20.316000366210936,60.0,60000.0 +6272,2025-06-08T08:32:00-07:00,20.313334147135418,60.0,60000.0 +6273,2025-06-08T08:33:00-07:00,20.311667760213215,60.0,60000.0 +6274,2025-06-08T08:34:00-07:00,20.312000274658203,60.0,60000.0 +6275,2025-06-08T08:35:00-07:00,20.315000534057617,60.0,60000.0 +6276,2025-06-08T08:36:00-07:00,20.316666920979817,60.0,60000.0 +6277,2025-06-08T08:37:00-07:00,20.322000122070314,60.0,60000.0 +6278,2025-06-08T08:38:00-07:00,20.320000330607098,60.0,60000.0 +6279,2025-06-08T08:39:00-07:00,20.325000762939453,60.0,60000.0 +6280,2025-06-08T08:40:00-07:00,20.324000549316406,60.0,60000.0 +6281,2025-06-08T08:41:00-07:00,20.330001831054688,60.0,60000.0 +6282,2025-06-08T08:42:00-07:00,20.33500099182129,60.0,60000.0 +6283,2025-06-08T08:43:00-07:00,20.347998809814452,60.0,60000.0 +6284,2025-06-08T08:44:00-07:00,20.34166653951009,60.0,60000.0 +6285,2025-06-08T08:45:00-07:00,20.344999313354492,60.0,60000.0 +6286,2025-06-08T08:46:00-07:00,20.347998809814452,60.0,60000.0 +6287,2025-06-08T08:47:00-07:00,20.344999313354492,60.0,60000.0 +6288,2025-06-08T08:48:00-07:00,20.34000015258789,60.0,60000.0 +6289,2025-06-08T08:49:00-07:00,20.34599914550781,60.0,60000.0 +6290,2025-06-08T08:50:00-07:00,20.34666570027669,60.0,60000.0 +6291,2025-06-08T08:51:00-07:00,20.34666570027669,60.0,60000.0 +6292,2025-06-08T08:52:00-07:00,20.349998474121094,60.0,60000.0 +6293,2025-06-08T08:53:00-07:00,20.34666570027669,60.0,60000.0 +6294,2025-06-08T08:54:00-07:00,20.349998474121094,60.0,60000.0 +6295,2025-06-08T08:55:00-07:00,20.35199890136719,60.0,60000.0 +6296,2025-06-08T08:56:00-07:00,20.360000610351562,60.0,60000.0 +6297,2025-06-08T08:57:00-07:00,20.368332544962566,60.0,60000.0 +6298,2025-06-08T08:58:00-07:00,20.369998931884766,60.0,60000.0 +6299,2025-06-08T08:59:00-07:00,20.375,60.0,60000.0 +6300,2025-06-08T09:00:00-07:00,20.376667022705078,60.0,60000.0 +6301,2025-06-08T09:01:00-07:00,20.38000030517578,60.0,60000.0 +6302,2025-06-08T09:02:00-07:00,20.381667455037434,60.0,60000.0 +6303,2025-06-08T09:03:00-07:00,20.380001068115234,60.0,60000.0 +6304,2025-06-08T09:04:00-07:00,20.376000213623048,60.0,60000.0 +6305,2025-06-08T09:05:00-07:00,20.3733336130778,60.0,60000.0 +6306,2025-06-08T09:06:00-07:00,20.376667022705078,60.0,60000.0 +6307,2025-06-08T09:07:00-07:00,20.376000213623048,60.0,60000.0 +6308,2025-06-08T09:08:00-07:00,20.373332977294922,60.0,60000.0 +6309,2025-06-08T09:09:00-07:00,20.371665954589844,60.0,60000.0 +6310,2025-06-08T09:10:00-07:00,20.37800064086914,60.0,60000.0 +6311,2025-06-08T09:11:00-07:00,20.376667022705078,60.0,60000.0 +6312,2025-06-08T09:12:00-07:00,20.378333409627277,60.0,60000.0 +6313,2025-06-08T09:13:00-07:00,20.380001068115234,60.0,60000.0 +6314,2025-06-08T09:14:00-07:00,20.380001068115234,60.0,60000.0 +6315,2025-06-08T09:15:00-07:00,20.376667658487957,60.0,60000.0 +6316,2025-06-08T09:16:00-07:00,20.367999267578124,60.0,60000.0 +6317,2025-06-08T09:17:00-07:00,20.366666158040363,60.0,60000.0 +6318,2025-06-08T09:18:00-07:00,20.361666997273762,60.0,60000.0 +6319,2025-06-08T09:19:00-07:00,20.363999938964845,60.0,60000.0 +6320,2025-06-08T09:20:00-07:00,20.360000610351562,60.0,60000.0 +6321,2025-06-08T09:21:00-07:00,20.359999974568684,60.0,60000.0 +6322,2025-06-08T09:22:00-07:00,20.35999984741211,60.0,60000.0 +6323,2025-06-08T09:23:00-07:00,20.368332544962566,60.0,60000.0 +6324,2025-06-08T09:24:00-07:00,20.369998931884766,60.0,60000.0 +6325,2025-06-08T09:25:00-07:00,20.364999771118164,60.0,60000.0 +6326,2025-06-08T09:26:00-07:00,20.363999938964845,60.0,60000.0 +6327,2025-06-08T09:27:00-07:00,20.354999542236328,60.0,60000.0 +6328,2025-06-08T09:28:00-07:00,20.344999313354492,60.0,60000.0 +6329,2025-06-08T09:29:00-07:00,20.343999481201173,60.0,60000.0 +6330,2025-06-08T09:30:00-07:00,20.358332951863606,60.0,60000.0 +6331,2025-06-08T09:31:00-07:00,20.385000228881836,60.0,60000.0 +6332,2025-06-08T09:32:00-07:00,20.405999755859376,60.0,60000.0 +6333,2025-06-08T09:33:00-07:00,20.41499900817871,60.0,60000.0 +6334,2025-06-08T09:34:00-07:00,20.40833346048991,60.0,60000.0 +6335,2025-06-08T09:35:00-07:00,20.419998931884766,60.0,60000.0 +6336,2025-06-08T09:36:00-07:00,20.43999989827474,60.0,60000.0 +6337,2025-06-08T09:37:00-07:00,20.458333333333332,60.0,60000.0 +6338,2025-06-08T09:38:00-07:00,20.472000885009766,60.0,60000.0 +6339,2025-06-08T09:39:00-07:00,20.481666564941406,60.0,60000.0 +6340,2025-06-08T09:40:00-07:00,20.48666763305664,60.0,60000.0 +6341,2025-06-08T09:41:00-07:00,20.492001342773438,60.0,60000.0 +6342,2025-06-08T09:42:00-07:00,20.4933344523112,60.0,60000.0 +6343,2025-06-08T09:43:00-07:00,20.5016663869222,60.0,60000.0 +6344,2025-06-08T09:44:00-07:00,20.50599899291992,60.0,60000.0 +6345,2025-06-08T09:45:00-07:00,20.51333236694336,60.0,60000.0 +6346,2025-06-08T09:46:00-07:00,20.51333236694336,60.0,60000.0 +6347,2025-06-08T09:47:00-07:00,20.518000030517577,60.0,60000.0 +6348,2025-06-08T09:48:00-07:00,20.52833302815755,60.0,60000.0 +6349,2025-06-08T09:49:00-07:00,20.563334147135418,60.0,60000.0 +6350,2025-06-08T09:50:00-07:00,20.58000030517578,60.0,60000.0 +6351,2025-06-08T09:51:00-07:00,20.606665929158527,60.0,60000.0 +6352,2025-06-08T09:52:00-07:00,20.628333409627277,60.0,60000.0 +6353,2025-06-08T09:53:00-07:00,20.64800109863281,60.0,60000.0 +6354,2025-06-08T09:54:00-07:00,20.63166618347168,60.0,60000.0 +6355,2025-06-08T09:55:00-07:00,20.631667455037434,60.0,60000.0 +6356,2025-06-08T09:56:00-07:00,20.645999908447266,60.0,60000.0 +6357,2025-06-08T09:57:00-07:00,20.65166727701823,60.0,60000.0 +6358,2025-06-08T09:58:00-07:00,20.65833346048991,60.0,60000.0 +6359,2025-06-08T09:59:00-07:00,20.671998596191408,60.0,60000.0 +6360,2025-06-08T10:00:00-07:00,20.686665852864582,60.0,60000.0 +6361,2025-06-08T10:01:00-07:00,20.69499969482422,60.0,60000.0 +6362,2025-06-08T10:02:00-07:00,20.7,60.0,60000.0 +6363,2025-06-08T10:03:00-07:00,20.711666107177734,60.0,60000.0 +6364,2025-06-08T10:04:00-07:00,20.726667404174805,60.0,60000.0 +6365,2025-06-08T10:05:00-07:00,20.730000305175782,60.0,60000.0 +6366,2025-06-08T10:06:00-07:00,20.73666763305664,60.0,60000.0 +6367,2025-06-08T10:07:00-07:00,20.740001042683918,60.0,60000.0 +6368,2025-06-08T10:08:00-07:00,20.74800033569336,60.0,60000.0 +6369,2025-06-08T10:09:00-07:00,20.76166598002116,60.0,60000.0 +6370,2025-06-08T10:10:00-07:00,20.793333053588867,60.0,60000.0 +6371,2025-06-08T10:11:00-07:00,20.80600051879883,60.0,60000.0 +6372,2025-06-08T10:12:00-07:00,20.83500035603841,60.0,60000.0 +6373,2025-06-08T10:13:00-07:00,20.866666158040363,60.0,60000.0 +6374,2025-06-08T10:14:00-07:00,20.882000732421876,60.0,60000.0 +6375,2025-06-08T10:15:00-07:00,20.90166727701823,60.0,60000.0 +6376,2025-06-08T10:16:00-07:00,20.90999984741211,60.0,60000.0 +6377,2025-06-08T10:17:00-07:00,20.921998596191408,60.0,60000.0 +6378,2025-06-08T10:18:00-07:00,20.929999669392902,60.0,60000.0 +6379,2025-06-08T10:19:00-07:00,20.94333267211914,60.0,60000.0 +6380,2025-06-08T10:20:00-07:00,20.94399948120117,60.0,60000.0 +6381,2025-06-08T10:21:00-07:00,20.948333740234375,60.0,60000.0 +6382,2025-06-08T10:22:00-07:00,20.963333129882812,60.0,60000.0 +6383,2025-06-08T10:23:00-07:00,20.972000885009766,60.0,60000.0 +6384,2025-06-08T10:24:00-07:00,20.981667200724285,60.0,60000.0 +6385,2025-06-08T10:25:00-07:00,20.99166742960612,60.0,60000.0 +6386,2025-06-08T10:26:00-07:00,21.003999328613283,60.0,60000.0 +6387,2025-06-08T10:27:00-07:00,21.009998321533203,60.0,60000.0 +6388,2025-06-08T10:28:00-07:00,21.0049991607666,60.0,60000.0 +6389,2025-06-08T10:29:00-07:00,21.009999084472657,60.0,60000.0 +6390,2025-06-08T10:30:00-07:00,21.0066655476888,60.0,60000.0 +6391,2025-06-08T10:31:00-07:00,21.014999389648438,60.0,60000.0 +6392,2025-06-08T10:32:00-07:00,21.02833302815755,60.0,60000.0 +6393,2025-06-08T10:33:00-07:00,21.036000061035157,60.0,60000.0 +6394,2025-06-08T10:34:00-07:00,21.013333002726238,60.0,60000.0 +6395,2025-06-08T10:35:00-07:00,21.0,60.0,60000.0 +6396,2025-06-08T10:36:00-07:00,20.99800033569336,60.0,60000.0 +6397,2025-06-08T10:37:00-07:00,21.0016663869222,60.0,60000.0 +6398,2025-06-08T10:38:00-07:00,21.0016663869222,60.0,60000.0 +6399,2025-06-08T10:39:00-07:00,21.003999328613283,60.0,60000.0 +6400,2025-06-08T10:40:00-07:00,21.003332773844402,60.0,60000.0 +6401,2025-06-08T10:41:00-07:00,21.0049991607666,60.0,60000.0 +6402,2025-06-08T10:42:00-07:00,21.009998321533203,60.0,60000.0 +6403,2025-06-08T10:43:00-07:00,21.0066655476888,60.0,60000.0 +6404,2025-06-08T10:44:00-07:00,21.008331934611004,60.0,60000.0 +6405,2025-06-08T10:45:00-07:00,20.99800033569336,60.0,60000.0 +6406,2025-06-08T10:46:00-07:00,21.0016663869222,60.0,60000.0 +6407,2025-06-08T10:47:00-07:00,21.0,60.0,60000.0 +6408,2025-06-08T10:48:00-07:00,21.0,60.0,60000.0 +6409,2025-06-08T10:49:00-07:00,20.9983336130778,60.0,60000.0 +6410,2025-06-08T10:50:00-07:00,20.996667226155598,60.0,60000.0 +6411,2025-06-08T10:51:00-07:00,20.990001678466797,60.0,60000.0 +6412,2025-06-08T10:52:00-07:00,20.991668065388996,60.0,60000.0 +6413,2025-06-08T10:53:00-07:00,20.990001042683918,60.0,60000.0 +6414,2025-06-08T10:54:00-07:00,20.9880012512207,60.0,60000.0 +6415,2025-06-08T10:55:00-07:00,20.98833465576172,60.0,60000.0 +6416,2025-06-08T10:56:00-07:00,20.991668065388996,60.0,60000.0 +6417,2025-06-08T10:57:00-07:00,20.98600082397461,60.0,60000.0 +6418,2025-06-08T10:58:00-07:00,20.991668065388996,60.0,60000.0 +6419,2025-06-08T10:59:00-07:00,20.98833465576172,60.0,60000.0 +6420,2025-06-08T11:00:00-07:00,20.992001342773438,60.0,60000.0 +6421,2025-06-08T11:01:00-07:00,20.990001678466797,60.0,60000.0 +6422,2025-06-08T11:02:00-07:00,20.98833465576172,60.0,60000.0 +6423,2025-06-08T11:03:00-07:00,20.990001678466797,60.0,60000.0 +6424,2025-06-08T11:04:00-07:00,20.9933344523112,60.0,60000.0 +6425,2025-06-08T11:05:00-07:00,20.9933344523112,60.0,60000.0 +6426,2025-06-08T11:06:00-07:00,20.990001678466797,60.0,60000.0 +6427,2025-06-08T11:07:00-07:00,20.985000610351562,60.0,60000.0 +6428,2025-06-08T11:08:00-07:00,20.97833315531413,60.0,60000.0 +6429,2025-06-08T11:09:00-07:00,20.970001220703125,60.0,60000.0 +6430,2025-06-08T11:10:00-07:00,20.970001220703125,60.0,60000.0 +6431,2025-06-08T11:11:00-07:00,20.973333994547527,60.0,60000.0 +6432,2025-06-08T11:12:00-07:00,20.972000885009766,60.0,60000.0 +6433,2025-06-08T11:13:00-07:00,20.976666768391926,60.0,60000.0 +6434,2025-06-08T11:14:00-07:00,20.976666768391926,60.0,60000.0 +6435,2025-06-08T11:15:00-07:00,20.974000549316408,60.0,60000.0 +6436,2025-06-08T11:16:00-07:00,20.973333994547527,60.0,60000.0 +6437,2025-06-08T11:17:00-07:00,20.970001220703125,60.0,60000.0 +6438,2025-06-08T11:18:00-07:00,20.97000045776367,60.0,60000.0 +6439,2025-06-08T11:19:00-07:00,20.970000584920246,60.0,60000.0 +6440,2025-06-08T11:20:00-07:00,20.970000584920246,60.0,60000.0 +6441,2025-06-08T11:21:00-07:00,20.972000885009766,60.0,60000.0 +6442,2025-06-08T11:22:00-07:00,20.971667607625324,60.0,60000.0 +6443,2025-06-08T11:23:00-07:00,20.968334197998047,60.0,60000.0 +6444,2025-06-08T11:24:00-07:00,20.972000122070312,60.0,60000.0 +6445,2025-06-08T11:25:00-07:00,20.97833315531413,60.0,60000.0 +6446,2025-06-08T11:26:00-07:00,20.980000178019207,60.0,60000.0 +6447,2025-06-08T11:27:00-07:00,20.974000549316408,60.0,60000.0 +6448,2025-06-08T11:28:00-07:00,20.975000381469727,60.0,60000.0 +6449,2025-06-08T11:29:00-07:00,20.975000381469727,60.0,60000.0 +6450,2025-06-08T11:30:00-07:00,20.974000549316408,60.0,60000.0 +6451,2025-06-08T11:31:00-07:00,20.970001220703125,60.0,60000.0 +6452,2025-06-08T11:32:00-07:00,20.973333994547527,60.0,60000.0 +6453,2025-06-08T11:33:00-07:00,20.972000885009766,60.0,60000.0 +6454,2025-06-08T11:34:00-07:00,20.975000381469727,60.0,60000.0 +6455,2025-06-08T11:35:00-07:00,20.971667607625324,60.0,60000.0 +6456,2025-06-08T11:36:00-07:00,20.966667811075848,60.0,60000.0 +6457,2025-06-08T11:37:00-07:00,20.966000366210938,60.0,60000.0 +6458,2025-06-08T11:38:00-07:00,20.956666310628254,60.0,60000.0 +6459,2025-06-08T11:39:00-07:00,20.961666107177734,60.0,60000.0 +6460,2025-06-08T11:40:00-07:00,20.96199951171875,60.0,60000.0 +6461,2025-06-08T11:41:00-07:00,20.954999923706055,60.0,60000.0 +6462,2025-06-08T11:42:00-07:00,20.956666310628254,60.0,60000.0 +6463,2025-06-08T11:43:00-07:00,20.954000091552736,60.0,60000.0 +6464,2025-06-08T11:44:00-07:00,20.953333536783855,60.0,60000.0 +6465,2025-06-08T11:45:00-07:00,20.956666310628254,60.0,60000.0 +6466,2025-06-08T11:46:00-07:00,20.959999084472656,60.0,60000.0 +6467,2025-06-08T11:47:00-07:00,20.961666742960613,60.0,60000.0 +6468,2025-06-08T11:48:00-07:00,20.96500015258789,60.0,60000.0 +6469,2025-06-08T11:49:00-07:00,20.963999938964843,60.0,60000.0 +6470,2025-06-08T11:50:00-07:00,20.959999720255535,60.0,60000.0 +6471,2025-06-08T11:51:00-07:00,20.954999923706055,60.0,60000.0 +6472,2025-06-08T11:52:00-07:00,20.954000091552736,60.0,60000.0 +6473,2025-06-08T11:53:00-07:00,20.953333536783855,60.0,60000.0 +6474,2025-06-08T11:54:00-07:00,20.954999923706055,60.0,60000.0 +6475,2025-06-08T11:55:00-07:00,20.952000427246094,60.0,60000.0 +6476,2025-06-08T11:56:00-07:00,20.954999923706055,60.0,60000.0 +6477,2025-06-08T11:57:00-07:00,20.948333740234375,60.0,60000.0 +6478,2025-06-08T11:58:00-07:00,20.954000091552736,60.0,60000.0 +6479,2025-06-08T11:59:00-07:00,20.950000127156574,60.0,60000.0 +6480,2025-06-08T12:00:00-07:00,20.950000127156574,60.0,60000.0 +6481,2025-06-08T12:01:00-07:00,20.94399948120117,60.0,60000.0 +6482,2025-06-08T12:02:00-07:00,20.948333104451496,60.0,60000.0 +6483,2025-06-08T12:03:00-07:00,20.951667149861652,60.0,60000.0 +6484,2025-06-08T12:04:00-07:00,20.95199966430664,60.0,60000.0 +6485,2025-06-08T12:05:00-07:00,20.958332697550457,60.0,60000.0 +6486,2025-06-08T12:06:00-07:00,20.963333129882812,60.0,60000.0 +6487,2025-06-08T12:07:00-07:00,20.966000366210938,60.0,60000.0 +6488,2025-06-08T12:08:00-07:00,20.96666717529297,60.0,60000.0 +6489,2025-06-08T12:09:00-07:00,20.96500015258789,60.0,60000.0 +6490,2025-06-08T12:10:00-07:00,20.964000701904297,60.0,60000.0 +6491,2025-06-08T12:11:00-07:00,20.963333129882812,60.0,60000.0 +6492,2025-06-08T12:12:00-07:00,20.961666107177734,60.0,60000.0 +6493,2025-06-08T12:13:00-07:00,20.96199951171875,60.0,60000.0 +6494,2025-06-08T12:14:00-07:00,20.968334197998047,60.0,60000.0 +6495,2025-06-08T12:15:00-07:00,20.96500015258789,60.0,60000.0 +6496,2025-06-08T12:16:00-07:00,20.966000366210938,60.0,60000.0 +6497,2025-06-08T12:17:00-07:00,20.973333994547527,60.0,60000.0 +6498,2025-06-08T12:18:00-07:00,20.98833401997884,60.0,60000.0 +6499,2025-06-08T12:19:00-07:00,21.007999420166016,60.0,60000.0 +6500,2025-06-08T12:20:00-07:00,21.019999821980793,60.0,60000.0 +6501,2025-06-08T12:21:00-07:00,21.026666005452473,60.0,60000.0 +6502,2025-06-08T12:22:00-07:00,21.029998779296875,60.0,60000.0 +6503,2025-06-08T12:23:00-07:00,21.040000279744465,60.0,60000.0 +6504,2025-06-08T12:24:00-07:00,21.056666056315105,60.0,60000.0 +6505,2025-06-08T12:25:00-07:00,21.072000885009764,60.0,60000.0 +6506,2025-06-08T12:26:00-07:00,21.081668217976887,60.0,60000.0 +6507,2025-06-08T12:27:00-07:00,21.093332926432293,60.0,60000.0 +6508,2025-06-08T12:28:00-07:00,21.09000015258789,60.0,60000.0 +6509,2025-06-08T12:29:00-07:00,21.08833376566569,60.0,60000.0 +6510,2025-06-08T12:30:00-07:00,21.09499994913737,60.0,60000.0 +6511,2025-06-08T12:31:00-07:00,21.112000274658204,60.0,60000.0 +6512,2025-06-08T12:32:00-07:00,21.119999567667644,60.0,60000.0 +6513,2025-06-08T12:33:00-07:00,21.138333002726238,60.0,60000.0 +6514,2025-06-08T12:34:00-07:00,21.14800033569336,60.0,60000.0 +6515,2025-06-08T12:35:00-07:00,21.143333435058594,60.0,60000.0 +6516,2025-06-08T12:36:00-07:00,21.150001525878906,60.0,60000.0 +6517,2025-06-08T12:37:00-07:00,21.156667073567707,60.0,60000.0 +6518,2025-06-08T12:38:00-07:00,21.167999267578125,60.0,60000.0 +6519,2025-06-08T12:39:00-07:00,21.18500010172526,60.0,60000.0 +6520,2025-06-08T12:40:00-07:00,21.19499969482422,60.0,60000.0 +6521,2025-06-08T12:41:00-07:00,21.204000091552736,60.0,60000.0 +6522,2025-06-08T12:42:00-07:00,21.204999923706055,60.0,60000.0 +6523,2025-06-08T12:43:00-07:00,21.198333740234375,60.0,60000.0 +6524,2025-06-08T12:44:00-07:00,21.204000091552736,60.0,60000.0 +6525,2025-06-08T12:45:00-07:00,21.213333129882812,60.0,60000.0 +6526,2025-06-08T12:46:00-07:00,21.21666717529297,60.0,60000.0 +6527,2025-06-08T12:47:00-07:00,21.226000213623045,60.0,60000.0 +6528,2025-06-08T12:48:00-07:00,21.231667200724285,60.0,60000.0 +6529,2025-06-08T12:49:00-07:00,21.241668065388996,60.0,60000.0 +6530,2025-06-08T12:50:00-07:00,21.24800033569336,60.0,60000.0 +6531,2025-06-08T12:51:00-07:00,21.241666793823242,60.0,60000.0 +6532,2025-06-08T12:52:00-07:00,21.231667200724285,60.0,60000.0 +6533,2025-06-08T12:53:00-07:00,21.21800079345703,60.0,60000.0 +6534,2025-06-08T12:54:00-07:00,21.231667200724285,60.0,60000.0 +6535,2025-06-08T12:55:00-07:00,21.246667226155598,60.0,60000.0 +6536,2025-06-08T12:56:00-07:00,21.259999084472657,60.0,60000.0 +6537,2025-06-08T12:57:00-07:00,21.273333231608074,60.0,60000.0 +6538,2025-06-08T12:58:00-07:00,21.279998779296875,60.0,60000.0 +6539,2025-06-08T12:59:00-07:00,21.29000015258789,60.0,60000.0 +6540,2025-06-08T13:00:00-07:00,21.293333053588867,60.0,60000.0 +6541,2025-06-08T13:01:00-07:00,21.291666666666668,60.0,60000.0 +6542,2025-06-08T13:02:00-07:00,21.294000244140626,60.0,60000.0 +6543,2025-06-08T13:03:00-07:00,21.29166603088379,60.0,60000.0 +6544,2025-06-08T13:04:00-07:00,21.310000737508137,60.0,60000.0 +6545,2025-06-08T13:05:00-07:00,21.336000823974608,60.0,60000.0 +6546,2025-06-08T13:06:00-07:00,21.34666570027669,60.0,60000.0 +6547,2025-06-08T13:07:00-07:00,21.34166653951009,60.0,60000.0 +6548,2025-06-08T13:08:00-07:00,21.355998992919922,60.0,60000.0 +6549,2025-06-08T13:09:00-07:00,21.376667022705078,60.0,60000.0 +6550,2025-06-08T13:10:00-07:00,21.376667022705078,60.0,60000.0 +6551,2025-06-08T13:11:00-07:00,21.35999984741211,60.0,60000.0 +6552,2025-06-08T13:12:00-07:00,21.361666997273762,60.0,60000.0 +6553,2025-06-08T13:13:00-07:00,21.383333206176758,60.0,60000.0 +6554,2025-06-08T13:14:00-07:00,21.391999816894533,60.0,60000.0 +6555,2025-06-08T13:15:00-07:00,21.400000890096027,60.0,60000.0 +6556,2025-06-08T13:16:00-07:00,21.41999880472819,60.0,60000.0 +6557,2025-06-08T13:17:00-07:00,21.421998596191408,60.0,60000.0 +6558,2025-06-08T13:18:00-07:00,21.433333079020183,60.0,60000.0 +6559,2025-06-08T13:19:00-07:00,21.453333536783855,60.0,60000.0 +6560,2025-06-08T13:20:00-07:00,21.454000091552736,60.0,60000.0 +6561,2025-06-08T13:21:00-07:00,21.446666717529297,60.0,60000.0 +6562,2025-06-08T13:22:00-07:00,21.434998830159504,60.0,60000.0 +6563,2025-06-08T13:23:00-07:00,21.423999786376953,60.0,60000.0 +6564,2025-06-08T13:24:00-07:00,21.426665623982746,60.0,60000.0 +6565,2025-06-08T13:25:00-07:00,21.436665852864582,60.0,60000.0 +6566,2025-06-08T13:26:00-07:00,21.454000091552736,60.0,60000.0 +6567,2025-06-08T13:27:00-07:00,21.47166697184245,60.0,60000.0 +6568,2025-06-08T13:28:00-07:00,21.4950008392334,60.0,60000.0 +6569,2025-06-08T13:29:00-07:00,21.50599899291992,60.0,60000.0 +6570,2025-06-08T13:30:00-07:00,21.508331934611004,60.0,60000.0 +6571,2025-06-08T13:31:00-07:00,21.503332773844402,60.0,60000.0 +6572,2025-06-08T13:32:00-07:00,21.49800033569336,60.0,60000.0 +6573,2025-06-08T13:33:00-07:00,21.51333236694336,60.0,60000.0 +6574,2025-06-08T13:34:00-07:00,21.53333282470703,60.0,60000.0 +6575,2025-06-08T13:35:00-07:00,21.542000579833985,60.0,60000.0 +6576,2025-06-08T13:36:00-07:00,21.546667098999023,60.0,60000.0 +6577,2025-06-08T13:37:00-07:00,21.536666870117188,60.0,60000.0 +6578,2025-06-08T13:38:00-07:00,21.536000061035157,60.0,60000.0 +6579,2025-06-08T13:39:00-07:00,21.526666005452473,60.0,60000.0 +6580,2025-06-08T13:40:00-07:00,21.52166684468587,60.0,60000.0 +6581,2025-06-08T13:41:00-07:00,21.531666437784832,60.0,60000.0 +6582,2025-06-08T13:42:00-07:00,21.546000671386718,60.0,60000.0 +6583,2025-06-08T13:43:00-07:00,21.545000076293945,60.0,60000.0 +6584,2025-06-08T13:44:00-07:00,21.55500030517578,60.0,60000.0 +6585,2025-06-08T13:45:00-07:00,21.560001373291016,60.0,60000.0 +6586,2025-06-08T13:46:00-07:00,21.553333282470703,60.0,60000.0 +6587,2025-06-08T13:47:00-07:00,21.536666870117188,60.0,60000.0 +6588,2025-06-08T13:48:00-07:00,21.53199920654297,60.0,60000.0 +6589,2025-06-08T13:49:00-07:00,21.551666895548504,60.0,60000.0 +6590,2025-06-08T13:50:00-07:00,21.570000966389973,60.0,60000.0 +6591,2025-06-08T13:51:00-07:00,21.58800048828125,60.0,60000.0 +6592,2025-06-08T13:52:00-07:00,21.598332087198894,60.0,60000.0 +6593,2025-06-08T13:53:00-07:00,21.58833376566569,60.0,60000.0 +6594,2025-06-08T13:54:00-07:00,21.572000885009764,60.0,60000.0 +6595,2025-06-08T13:55:00-07:00,21.563334147135418,60.0,60000.0 +6596,2025-06-08T13:56:00-07:00,21.55833371480306,60.0,60000.0 +6597,2025-06-08T13:57:00-07:00,21.55600051879883,60.0,60000.0 +6598,2025-06-08T13:58:00-07:00,21.545714242117747,60.0,60000.0 +6599,2025-06-08T13:59:00-07:00,21.549999872843426,60.0,60000.0 +6600,2025-06-08T14:00:00-07:00,21.554000091552734,60.0,60000.0 +6601,2025-06-08T14:01:00-07:00,21.565000534057617,60.0,60000.0 +6602,2025-06-08T14:02:00-07:00,21.575001398722332,60.0,60000.0 +6603,2025-06-08T14:03:00-07:00,21.591999816894532,60.0,60000.0 +6604,2025-06-08T14:04:00-07:00,21.59166653951009,60.0,60000.0 +6605,2025-06-08T14:05:00-07:00,21.599999109903973,60.0,60000.0 +6606,2025-06-08T14:06:00-07:00,21.607999420166017,60.0,60000.0 +6607,2025-06-08T14:07:00-07:00,21.613333384195965,60.0,60000.0 +6608,2025-06-08T14:08:00-07:00,21.616666158040363,60.0,60000.0 +6609,2025-06-08T14:09:00-07:00,21.636000061035155,60.0,60000.0 +6610,2025-06-08T14:10:00-07:00,21.65333429972331,60.0,60000.0 +6611,2025-06-08T14:11:00-07:00,21.640000025431316,60.0,60000.0 +6612,2025-06-08T14:12:00-07:00,21.62800064086914,60.0,60000.0 +6613,2025-06-08T14:13:00-07:00,21.625,60.0,60000.0 +6614,2025-06-08T14:14:00-07:00,21.64000066121419,60.0,60000.0 +6615,2025-06-08T14:15:00-07:00,21.66199951171875,60.0,60000.0 +6616,2025-06-08T14:16:00-07:00,21.69166628519694,60.0,60000.0 +6617,2025-06-08T14:17:00-07:00,21.72333335876465,60.0,60000.0 +6618,2025-06-08T14:18:00-07:00,21.74400100708008,60.0,60000.0 +6619,2025-06-08T14:19:00-07:00,21.7549991607666,60.0,60000.0 +6620,2025-06-08T14:20:00-07:00,21.75666618347168,60.0,60000.0 +6621,2025-06-08T14:21:00-07:00,21.757998657226562,60.0,60000.0 +6622,2025-06-08T14:22:00-07:00,21.7549991607666,60.0,60000.0 +6623,2025-06-08T14:23:00-07:00,21.7516663869222,60.0,60000.0 +6624,2025-06-08T14:24:00-07:00,21.75599899291992,60.0,60000.0 +6625,2025-06-08T14:25:00-07:00,21.766666412353516,60.0,60000.0 +6626,2025-06-08T14:26:00-07:00,21.785000483194988,60.0,60000.0 +6627,2025-06-08T14:27:00-07:00,21.795999908447264,60.0,60000.0 +6628,2025-06-08T14:28:00-07:00,21.81166712443034,60.0,60000.0 +6629,2025-06-08T14:29:00-07:00,21.83833376566569,60.0,60000.0 +6630,2025-06-08T14:30:00-07:00,21.84599914550781,60.0,60000.0 +6631,2025-06-08T14:31:00-07:00,21.83666737874349,60.0,60000.0 +6632,2025-06-08T14:32:00-07:00,21.83333460489909,60.0,60000.0 +6633,2025-06-08T14:33:00-07:00,21.824000549316406,60.0,60000.0 +6634,2025-06-08T14:34:00-07:00,21.804999669392902,60.0,60000.0 +6635,2025-06-08T14:35:00-07:00,21.78333346048991,60.0,60000.0 +6636,2025-06-08T14:36:00-07:00,21.763999938964844,60.0,60000.0 +6637,2025-06-08T14:37:00-07:00,21.753332773844402,60.0,60000.0 +6638,2025-06-08T14:38:00-07:00,21.7450008392334,60.0,60000.0 +6639,2025-06-08T14:39:00-07:00,21.75199966430664,60.0,60000.0 +6640,2025-06-08T14:40:00-07:00,21.759998957316082,60.0,60000.0 +6641,2025-06-08T14:41:00-07:00,21.771666208902996,60.0,60000.0 +6642,2025-06-08T14:42:00-07:00,21.775999450683592,60.0,60000.0 +6643,2025-06-08T14:43:00-07:00,21.769999821980793,60.0,60000.0 +6644,2025-06-08T14:44:00-07:00,21.78000005086263,60.0,60000.0 +6645,2025-06-08T14:45:00-07:00,21.794000244140626,60.0,60000.0 +6646,2025-06-08T14:46:00-07:00,21.799999872843426,60.0,60000.0 +6647,2025-06-08T14:47:00-07:00,21.77166684468587,60.0,60000.0 +6648,2025-06-08T14:48:00-07:00,21.764999389648438,60.0,60000.0 +6649,2025-06-08T14:49:00-07:00,21.759999084472657,60.0,60000.0 +6650,2025-06-08T14:50:00-07:00,21.7566655476888,60.0,60000.0 +6651,2025-06-08T14:51:00-07:00,21.759998957316082,60.0,60000.0 +6652,2025-06-08T14:52:00-07:00,21.784000396728516,60.0,60000.0 +6653,2025-06-08T14:53:00-07:00,21.790000279744465,60.0,60000.0 +6654,2025-06-08T14:54:00-07:00,21.791667302449543,60.0,60000.0 +6655,2025-06-08T14:55:00-07:00,21.806001281738283,60.0,60000.0 +6656,2025-06-08T14:56:00-07:00,21.83000119527181,60.0,60000.0 +6657,2025-06-08T14:57:00-07:00,21.849999109903973,60.0,60000.0 +6658,2025-06-08T14:58:00-07:00,21.860000610351562,60.0,60000.0 +6659,2025-06-08T14:59:00-07:00,21.848332087198894,60.0,60000.0 +6660,2025-06-08T15:00:00-07:00,21.849998474121094,60.0,60000.0 +6661,2025-06-08T15:01:00-07:00,21.862000274658204,60.0,60000.0 +6662,2025-06-08T15:02:00-07:00,21.86833318074544,60.0,60000.0 +6663,2025-06-08T15:03:00-07:00,21.871666590372723,60.0,60000.0 +6664,2025-06-08T15:04:00-07:00,21.89000015258789,60.0,60000.0 +6665,2025-06-08T15:05:00-07:00,21.90166727701823,60.0,60000.0 +6666,2025-06-08T15:06:00-07:00,21.901667912801106,60.0,60000.0 +6667,2025-06-08T15:07:00-07:00,21.93399887084961,60.0,60000.0 +6668,2025-06-08T15:08:00-07:00,21.961666742960613,60.0,60000.0 +6669,2025-06-08T15:09:00-07:00,21.980000813802082,60.0,60000.0 +6670,2025-06-08T15:10:00-07:00,21.996000671386717,60.0,60000.0 +6671,2025-06-08T15:11:00-07:00,21.98833465576172,60.0,60000.0 +6672,2025-06-08T15:12:00-07:00,22.0066655476888,60.0,60000.0 +6673,2025-06-08T15:13:00-07:00,21.99800033569336,60.0,60000.0 +6674,2025-06-08T15:14:00-07:00,21.98833465576172,60.0,60000.0 +6675,2025-06-08T15:15:00-07:00,21.9950008392334,60.0,60000.0 +6676,2025-06-08T15:16:00-07:00,22.0,60.0,60000.0 +6677,2025-06-08T15:17:00-07:00,22.0016663869222,60.0,60000.0 +6678,2025-06-08T15:18:00-07:00,22.0066655476888,60.0,60000.0 +6679,2025-06-08T15:19:00-07:00,22.018000030517577,60.0,60000.0 +6680,2025-06-08T15:20:00-07:00,22.016666412353516,60.0,60000.0 +6681,2025-06-08T15:21:00-07:00,22.009998321533203,60.0,60000.0 +6682,2025-06-08T15:22:00-07:00,22.009998321533203,60.0,60000.0 +6683,2025-06-08T15:23:00-07:00,22.0,60.0,60000.0 +6684,2025-06-08T15:24:00-07:00,22.003332773844402,60.0,60000.0 +6685,2025-06-08T15:25:00-07:00,21.990000915527343,60.0,60000.0 +6686,2025-06-08T15:26:00-07:00,22.0,60.0,60000.0 +6687,2025-06-08T15:27:00-07:00,22.031665802001953,60.0,60000.0 +6688,2025-06-08T15:28:00-07:00,22.055999755859375,60.0,60000.0 +6689,2025-06-08T15:29:00-07:00,22.06999969482422,60.0,60000.0 +6690,2025-06-08T15:30:00-07:00,22.058333079020183,60.0,60000.0 +6691,2025-06-08T15:31:00-07:00,22.042000579833985,60.0,60000.0 +6692,2025-06-08T15:32:00-07:00,22.043333053588867,60.0,60000.0 +6693,2025-06-08T15:33:00-07:00,22.053333282470703,60.0,60000.0 +6694,2025-06-08T15:34:00-07:00,22.070000457763673,60.0,60000.0 +6695,2025-06-08T15:35:00-07:00,22.08500099182129,60.0,60000.0 +6696,2025-06-08T15:36:00-07:00,22.09833335876465,60.0,60000.0 +6697,2025-06-08T15:37:00-07:00,22.108000183105467,60.0,60000.0 +6698,2025-06-08T15:38:00-07:00,22.114999771118164,60.0,60000.0 +6699,2025-06-08T15:39:00-07:00,22.099999109903973,60.0,60000.0 +6700,2025-06-08T15:40:00-07:00,22.086000823974608,60.0,60000.0 +6701,2025-06-08T15:41:00-07:00,22.07833480834961,60.0,60000.0 +6702,2025-06-08T15:42:00-07:00,22.09000015258789,60.0,60000.0 +6703,2025-06-08T15:43:00-07:00,22.093333562215168,60.0,60000.0 +6704,2025-06-08T15:44:00-07:00,22.09000015258789,60.0,60000.0 +6705,2025-06-08T15:45:00-07:00,22.09499994913737,60.0,60000.0 +6706,2025-06-08T15:46:00-07:00,22.12500063578288,60.0,60000.0 +6707,2025-06-08T15:47:00-07:00,22.137999725341796,60.0,60000.0 +6708,2025-06-08T15:48:00-07:00,22.143333435058594,60.0,60000.0 +6709,2025-06-08T15:49:00-07:00,22.14666748046875,60.0,60000.0 +6710,2025-06-08T15:50:00-07:00,22.15199966430664,60.0,60000.0 +6711,2025-06-08T15:51:00-07:00,22.16166623433431,60.0,60000.0 +6712,2025-06-08T15:52:00-07:00,22.16833241780599,60.0,60000.0 +6713,2025-06-08T15:53:00-07:00,22.169998931884766,60.0,60000.0 +6714,2025-06-08T15:54:00-07:00,22.176666259765625,60.0,60000.0 +6715,2025-06-08T15:55:00-07:00,22.173332850138348,60.0,60000.0 +6716,2025-06-08T15:56:00-07:00,22.163999176025392,60.0,60000.0 +6717,2025-06-08T15:57:00-07:00,22.15333429972331,60.0,60000.0 +6718,2025-06-08T15:58:00-07:00,22.15999984741211,60.0,60000.0 +6719,2025-06-08T15:59:00-07:00,22.15400085449219,60.0,60000.0 +6720,2025-06-08T16:00:00-07:00,22.145000457763672,60.0,60000.0 +6721,2025-06-08T16:01:00-07:00,22.148334503173828,60.0,60000.0 +6722,2025-06-08T16:02:00-07:00,22.15400085449219,60.0,60000.0 +6723,2025-06-08T16:03:00-07:00,22.15833346048991,60.0,60000.0 +6724,2025-06-08T16:04:00-07:00,22.16166623433431,60.0,60000.0 +6725,2025-06-08T16:05:00-07:00,22.175999450683594,60.0,60000.0 +6726,2025-06-08T16:06:00-07:00,22.196666717529297,60.0,60000.0 +6727,2025-06-08T16:07:00-07:00,22.218333562215168,60.0,60000.0 +6728,2025-06-08T16:08:00-07:00,22.23600082397461,60.0,60000.0 +6729,2025-06-08T16:09:00-07:00,22.23666763305664,60.0,60000.0 +6730,2025-06-08T16:10:00-07:00,22.23833465576172,60.0,60000.0 +6731,2025-06-08T16:11:00-07:00,22.246000671386717,60.0,60000.0 +6732,2025-06-08T16:12:00-07:00,22.2516663869222,60.0,60000.0 +6733,2025-06-08T16:13:00-07:00,22.26333236694336,60.0,60000.0 +6734,2025-06-08T16:14:00-07:00,22.25599899291992,60.0,60000.0 +6735,2025-06-08T16:15:00-07:00,22.253332773844402,60.0,60000.0 +6736,2025-06-08T16:16:00-07:00,22.258331934611004,60.0,60000.0 +6737,2025-06-08T16:17:00-07:00,22.275999450683592,60.0,60000.0 +6738,2025-06-08T16:18:00-07:00,22.276666005452473,60.0,60000.0 +6739,2025-06-08T16:19:00-07:00,22.269999821980793,60.0,60000.0 +6740,2025-06-08T16:20:00-07:00,22.273999786376955,60.0,60000.0 +6741,2025-06-08T16:21:00-07:00,22.290000279744465,60.0,60000.0 +6742,2025-06-08T16:22:00-07:00,22.299999872843426,60.0,60000.0 +6743,2025-06-08T16:23:00-07:00,22.312000274658203,60.0,60000.0 +6744,2025-06-08T16:24:00-07:00,22.323334376017254,60.0,60000.0 +6745,2025-06-08T16:25:00-07:00,22.33833376566569,60.0,60000.0 +6746,2025-06-08T16:26:00-07:00,22.349999237060548,60.0,60000.0 +6747,2025-06-08T16:27:00-07:00,22.344999313354492,60.0,60000.0 +6748,2025-06-08T16:28:00-07:00,22.33666737874349,60.0,60000.0 +6749,2025-06-08T16:29:00-07:00,22.31800079345703,60.0,60000.0 +6750,2025-06-08T16:30:00-07:00,22.30500030517578,60.0,60000.0 +6751,2025-06-08T16:31:00-07:00,22.321666717529297,60.0,60000.0 +6752,2025-06-08T16:32:00-07:00,22.336000823974608,60.0,60000.0 +6753,2025-06-08T16:33:00-07:00,22.325000762939453,60.0,60000.0 +6754,2025-06-08T16:34:00-07:00,22.293333053588867,60.0,60000.0 +6755,2025-06-08T16:35:00-07:00,22.272000122070313,60.0,60000.0 +6756,2025-06-08T16:36:00-07:00,22.25,60.0,60000.0 +6757,2025-06-08T16:37:00-07:00,22.23833401997884,60.0,60000.0 +6758,2025-06-08T16:38:00-07:00,22.2380012512207,60.0,60000.0 +6759,2025-06-08T16:39:00-07:00,22.2516663869222,60.0,60000.0 +6760,2025-06-08T16:40:00-07:00,22.2549991607666,60.0,60000.0 +6761,2025-06-08T16:41:00-07:00,22.268000030517577,60.0,60000.0 +6762,2025-06-08T16:42:00-07:00,22.27166684468587,60.0,60000.0 +6763,2025-06-08T16:43:00-07:00,22.2483336130778,60.0,60000.0 +6764,2025-06-08T16:44:00-07:00,22.226000213623045,60.0,60000.0 +6765,2025-06-08T16:45:00-07:00,22.211666107177734,60.0,60000.0 +6766,2025-06-08T16:46:00-07:00,22.203333536783855,60.0,60000.0 +6767,2025-06-08T16:47:00-07:00,22.202000427246094,60.0,60000.0 +6768,2025-06-08T16:48:00-07:00,22.203333536783855,60.0,60000.0 +6769,2025-06-08T16:49:00-07:00,22.196666717529297,60.0,60000.0 +6770,2025-06-08T16:50:00-07:00,22.21666653951009,60.0,60000.0 +6771,2025-06-08T16:51:00-07:00,22.224000549316408,60.0,60000.0 +6772,2025-06-08T16:52:00-07:00,22.22833315531413,60.0,60000.0 +6773,2025-06-08T16:53:00-07:00,22.231666564941406,60.0,60000.0 +6774,2025-06-08T16:54:00-07:00,22.232000732421874,60.0,60000.0 +6775,2025-06-08T16:55:00-07:00,22.234286172049387,60.0,60000.0 +6776,2025-06-08T16:56:00-07:00,22.233333587646484,60.0,60000.0 +6777,2025-06-08T16:57:00-07:00,22.240001678466797,60.0,60000.0 +6778,2025-06-08T16:58:00-07:00,22.233334223429363,60.0,60000.0 +6779,2025-06-08T16:59:00-07:00,22.225000381469727,60.0,60000.0 +6780,2025-06-08T17:00:00-07:00,22.23600082397461,60.0,60000.0 +6781,2025-06-08T17:01:00-07:00,22.241668065388996,60.0,60000.0 +6782,2025-06-08T17:02:00-07:00,22.25833257039388,60.0,60000.0 +6783,2025-06-08T17:03:00-07:00,22.277999114990234,60.0,60000.0 +6784,2025-06-08T17:04:00-07:00,22.28499984741211,60.0,60000.0 +6785,2025-06-08T17:05:00-07:00,22.28499984741211,60.0,60000.0 +6786,2025-06-08T17:06:00-07:00,22.269999694824218,60.0,60000.0 +6787,2025-06-08T17:07:00-07:00,22.26166598002116,60.0,60000.0 +6788,2025-06-08T17:08:00-07:00,22.2566655476888,60.0,60000.0 +6789,2025-06-08T17:09:00-07:00,22.234000396728515,60.0,60000.0 +6790,2025-06-08T17:10:00-07:00,22.226666768391926,60.0,60000.0 +6791,2025-06-08T17:11:00-07:00,22.218334197998047,60.0,60000.0 +6792,2025-06-08T17:12:00-07:00,22.224000549316408,60.0,60000.0 +6793,2025-06-08T17:13:00-07:00,22.235000610351562,60.0,60000.0 +6794,2025-06-08T17:14:00-07:00,22.2450008392334,60.0,60000.0 +6795,2025-06-08T17:15:00-07:00,22.242001342773438,60.0,60000.0 +6796,2025-06-08T17:16:00-07:00,22.2433344523112,60.0,60000.0 +6797,2025-06-08T17:17:00-07:00,22.2549991607666,60.0,60000.0 +6798,2025-06-08T17:18:00-07:00,22.275999450683592,60.0,60000.0 +6799,2025-06-08T17:19:00-07:00,22.279999415079754,60.0,60000.0 +6800,2025-06-08T17:20:00-07:00,22.25666618347168,60.0,60000.0 +6801,2025-06-08T17:21:00-07:00,22.240000915527343,60.0,60000.0 +6802,2025-06-08T17:22:00-07:00,22.231666564941406,60.0,60000.0 +6803,2025-06-08T17:23:00-07:00,22.2483336130778,60.0,60000.0 +6804,2025-06-08T17:24:00-07:00,22.268000030517577,60.0,60000.0 +6805,2025-06-08T17:25:00-07:00,22.266666412353516,60.0,60000.0 +6806,2025-06-08T17:26:00-07:00,22.276666005452473,60.0,60000.0 +6807,2025-06-08T17:27:00-07:00,22.272000122070313,60.0,60000.0 +6808,2025-06-08T17:28:00-07:00,22.268333435058594,60.0,60000.0 +6809,2025-06-08T17:29:00-07:00,22.268332799275715,60.0,60000.0 +6810,2025-06-08T17:30:00-07:00,22.259998321533203,60.0,60000.0 +6811,2025-06-08T17:31:00-07:00,22.2549991607666,60.0,60000.0 +6812,2025-06-08T17:32:00-07:00,22.266665776570637,60.0,60000.0 +6813,2025-06-08T17:33:00-07:00,22.28199920654297,60.0,60000.0 +6814,2025-06-08T17:34:00-07:00,22.291666666666668,60.0,60000.0 +6815,2025-06-08T17:35:00-07:00,22.290000915527344,60.0,60000.0 +6816,2025-06-08T17:36:00-07:00,22.279998779296875,60.0,60000.0 +6817,2025-06-08T17:37:00-07:00,22.281665802001953,60.0,60000.0 +6818,2025-06-08T17:38:00-07:00,22.276666005452473,60.0,60000.0 +6819,2025-06-08T17:39:00-07:00,22.268000030517577,60.0,60000.0 +6820,2025-06-08T17:40:00-07:00,22.25,60.0,60000.0 +6821,2025-06-08T17:41:00-07:00,22.26166534423828,60.0,60000.0 +6822,2025-06-08T17:42:00-07:00,22.265999603271485,60.0,60000.0 +6823,2025-06-08T17:43:00-07:00,22.25833257039388,60.0,60000.0 +6824,2025-06-08T17:44:00-07:00,22.2566655476888,60.0,60000.0 +6825,2025-06-08T17:45:00-07:00,22.273999786376955,60.0,60000.0 +6826,2025-06-08T17:46:00-07:00,22.278332392374676,60.0,60000.0 +6827,2025-06-08T17:47:00-07:00,22.28333282470703,60.0,60000.0 +6828,2025-06-08T17:48:00-07:00,22.28800048828125,60.0,60000.0 +6829,2025-06-08T17:49:00-07:00,22.279999415079754,60.0,60000.0 +6830,2025-06-08T17:50:00-07:00,22.279998779296875,60.0,60000.0 +6831,2025-06-08T17:51:00-07:00,22.28800048828125,60.0,60000.0 +6832,2025-06-08T17:52:00-07:00,22.30666732788086,60.0,60000.0 +6833,2025-06-08T17:53:00-07:00,22.313334147135418,60.0,60000.0 +6834,2025-06-08T17:54:00-07:00,22.312001037597657,60.0,60000.0 +6835,2025-06-08T17:55:00-07:00,22.313334147135418,60.0,60000.0 +6836,2025-06-08T17:56:00-07:00,22.311667760213215,60.0,60000.0 +6837,2025-06-08T17:57:00-07:00,22.310001373291016,60.0,60000.0 +6838,2025-06-08T17:58:00-07:00,22.320000330607098,60.0,60000.0 +6839,2025-06-08T17:59:00-07:00,22.331668217976887,60.0,60000.0 +6840,2025-06-08T18:00:00-07:00,22.318000030517577,60.0,60000.0 +6841,2025-06-08T18:01:00-07:00,22.316667556762695,60.0,60000.0 +6842,2025-06-08T18:02:00-07:00,22.31833330790202,60.0,60000.0 +6843,2025-06-08T18:03:00-07:00,22.318000030517577,60.0,60000.0 +6844,2025-06-08T18:04:00-07:00,22.315000534057617,60.0,60000.0 +6845,2025-06-08T18:05:00-07:00,22.298332850138348,60.0,60000.0 +6846,2025-06-08T18:06:00-07:00,22.28199996948242,60.0,60000.0 +6847,2025-06-08T18:07:00-07:00,22.273332595825195,60.0,60000.0 +6848,2025-06-08T18:08:00-07:00,22.266666412353516,60.0,60000.0 +6849,2025-06-08T18:09:00-07:00,22.272000122070313,60.0,60000.0 +6850,2025-06-08T18:10:00-07:00,22.288333892822266,60.0,60000.0 +6851,2025-06-08T18:11:00-07:00,22.30833371480306,60.0,60000.0 +6852,2025-06-08T18:12:00-07:00,22.310001373291016,60.0,60000.0 +6853,2025-06-08T18:13:00-07:00,22.301999664306642,60.0,60000.0 +6854,2025-06-08T18:14:00-07:00,22.28999964396159,60.0,60000.0 +6855,2025-06-08T18:15:00-07:00,22.27833302815755,60.0,60000.0 +6856,2025-06-08T18:16:00-07:00,22.263999938964844,60.0,60000.0 +6857,2025-06-08T18:17:00-07:00,22.2549991607666,60.0,60000.0 +6858,2025-06-08T18:18:00-07:00,22.2549991607666,60.0,60000.0 +6859,2025-06-08T18:19:00-07:00,22.25,60.0,60000.0 +6860,2025-06-08T18:20:00-07:00,22.23833465576172,60.0,60000.0 +6861,2025-06-08T18:21:00-07:00,22.218333562215168,60.0,60000.0 +6862,2025-06-08T18:22:00-07:00,22.20999984741211,60.0,60000.0 +6863,2025-06-08T18:23:00-07:00,22.203333536783855,60.0,60000.0 +6864,2025-06-08T18:24:00-07:00,22.211666107177734,60.0,60000.0 +6865,2025-06-08T18:25:00-07:00,22.224000549316408,60.0,60000.0 +6866,2025-06-08T18:26:00-07:00,22.229999542236328,60.0,60000.0 +6867,2025-06-08T18:27:00-07:00,22.22333335876465,60.0,60000.0 +6868,2025-06-08T18:28:00-07:00,22.197999572753908,60.0,60000.0 +6869,2025-06-08T18:29:00-07:00,22.183333079020183,60.0,60000.0 +6870,2025-06-08T18:30:00-07:00,22.178571428571427,60.0,60000.0 +6871,2025-06-08T18:31:00-07:00,22.1739990234375,60.0,60000.0 +6872,2025-06-08T18:32:00-07:00,22.169998168945312,60.0,60000.0 +6873,2025-06-08T18:33:00-07:00,22.155000686645508,60.0,60000.0 +6874,2025-06-08T18:34:00-07:00,22.14800109863281,60.0,60000.0 +6875,2025-06-08T18:35:00-07:00,22.156667073567707,60.0,60000.0 +6876,2025-06-08T18:36:00-07:00,22.176665623982746,60.0,60000.0 +6877,2025-06-08T18:37:00-07:00,22.200000762939453,60.0,60000.0 +6878,2025-06-08T18:38:00-07:00,22.21999994913737,60.0,60000.0 +6879,2025-06-08T18:39:00-07:00,22.2433344523112,60.0,60000.0 +6880,2025-06-08T18:40:00-07:00,22.25199966430664,60.0,60000.0 +6881,2025-06-08T18:41:00-07:00,22.253332773844402,60.0,60000.0 +6882,2025-06-08T18:42:00-07:00,22.25,60.0,60000.0 +6883,2025-06-08T18:43:00-07:00,22.24800033569336,60.0,60000.0 +6884,2025-06-08T18:44:00-07:00,22.258331934611004,60.0,60000.0 +6885,2025-06-08T18:45:00-07:00,22.2549991607666,60.0,60000.0 +6886,2025-06-08T18:46:00-07:00,22.24800033569336,60.0,60000.0 +6887,2025-06-08T18:47:00-07:00,22.25,60.0,60000.0 +6888,2025-06-08T18:48:00-07:00,22.26166534423828,60.0,60000.0 +6889,2025-06-08T18:49:00-07:00,22.26399917602539,60.0,60000.0 +6890,2025-06-08T18:50:00-07:00,22.266666412353516,60.0,60000.0 +6891,2025-06-08T18:51:00-07:00,22.273332595825195,60.0,60000.0 +6892,2025-06-08T18:52:00-07:00,22.273999786376955,60.0,60000.0 +6893,2025-06-08T18:53:00-07:00,22.266666412353516,60.0,60000.0 +6894,2025-06-08T18:54:00-07:00,22.268333435058594,60.0,60000.0 +6895,2025-06-08T18:55:00-07:00,22.277999114990234,60.0,60000.0 +6896,2025-06-08T18:56:00-07:00,22.28333282470703,60.0,60000.0 +6897,2025-06-08T18:57:00-07:00,22.268332799275715,60.0,60000.0 +6898,2025-06-08T18:58:00-07:00,22.2380012512207,60.0,60000.0 +6899,2025-06-08T18:59:00-07:00,22.236666997273762,60.0,60000.0 +6900,2025-06-08T19:00:00-07:00,22.2483336130778,60.0,60000.0 +6901,2025-06-08T19:01:00-07:00,22.265999603271485,60.0,60000.0 +6902,2025-06-08T19:02:00-07:00,22.268333435058594,60.0,60000.0 +6903,2025-06-08T19:03:00-07:00,22.266666412353516,60.0,60000.0 +6904,2025-06-08T19:04:00-07:00,22.25599899291992,60.0,60000.0 +6905,2025-06-08T19:05:00-07:00,22.25,60.0,60000.0 +6906,2025-06-08T19:06:00-07:00,22.23833465576172,60.0,60000.0 +6907,2025-06-08T19:07:00-07:00,22.226000213623045,60.0,60000.0 +6908,2025-06-08T19:08:00-07:00,22.220001220703125,60.0,60000.0 +6909,2025-06-08T19:09:00-07:00,22.220001220703125,60.0,60000.0 +6910,2025-06-08T19:10:00-07:00,22.21800079345703,60.0,60000.0 +6911,2025-06-08T19:11:00-07:00,22.214285714285715,60.0,60000.0 +6912,2025-06-08T19:12:00-07:00,22.208333333333332,60.0,60000.0 +6913,2025-06-08T19:13:00-07:00,22.195999145507812,60.0,60000.0 +6914,2025-06-08T19:14:00-07:00,22.189998626708984,60.0,60000.0 +6915,2025-06-08T19:15:00-07:00,22.19333267211914,60.0,60000.0 +6916,2025-06-08T19:16:00-07:00,22.18000030517578,60.0,60000.0 +6917,2025-06-08T19:17:00-07:00,22.183333079020183,60.0,60000.0 +6918,2025-06-08T19:18:00-07:00,22.176666259765625,60.0,60000.0 +6919,2025-06-08T19:19:00-07:00,22.16599884033203,60.0,60000.0 +6920,2025-06-08T19:20:00-07:00,22.15833346048991,60.0,60000.0 +6921,2025-06-08T19:21:00-07:00,22.141666412353516,60.0,60000.0 +6922,2025-06-08T19:22:00-07:00,22.130001068115234,60.0,60000.0 +6923,2025-06-08T19:23:00-07:00,22.135000228881836,60.0,60000.0 +6924,2025-06-08T19:24:00-07:00,22.130000432332356,60.0,60000.0 +6925,2025-06-08T19:25:00-07:00,22.11999969482422,60.0,60000.0 +6926,2025-06-08T19:26:00-07:00,22.111666997273762,60.0,60000.0 +6927,2025-06-08T19:27:00-07:00,22.105000178019207,60.0,60000.0 +6928,2025-06-08T19:28:00-07:00,22.10199890136719,60.0,60000.0 +6929,2025-06-08T19:29:00-07:00,22.094999313354492,60.0,60000.0 +6930,2025-06-08T19:30:00-07:00,22.09000015258789,60.0,60000.0 +6931,2025-06-08T19:31:00-07:00,22.08400115966797,60.0,60000.0 +6932,2025-06-08T19:32:00-07:00,22.080001831054688,60.0,60000.0 +6933,2025-06-08T19:33:00-07:00,22.07833480834961,60.0,60000.0 +6934,2025-06-08T19:34:00-07:00,22.080001831054688,60.0,60000.0 +6935,2025-06-08T19:35:00-07:00,22.094999313354492,60.0,60000.0 +6936,2025-06-08T19:36:00-07:00,22.10333251953125,60.0,60000.0 +6937,2025-06-08T19:37:00-07:00,22.11199951171875,60.0,60000.0 +6938,2025-06-08T19:38:00-07:00,22.125,60.0,60000.0 +6939,2025-06-08T19:39:00-07:00,22.128333409627277,60.0,60000.0 +6940,2025-06-08T19:40:00-07:00,22.132000732421876,60.0,60000.0 +6941,2025-06-08T19:41:00-07:00,22.133333841959637,60.0,60000.0 +6942,2025-06-08T19:42:00-07:00,22.141666412353516,60.0,60000.0 +6943,2025-06-08T19:43:00-07:00,22.15333429972331,60.0,60000.0 +6944,2025-06-08T19:44:00-07:00,22.156000518798827,60.0,60000.0 +6945,2025-06-08T19:45:00-07:00,22.14833386739095,60.0,60000.0 +6946,2025-06-08T19:46:00-07:00,22.145000457763672,60.0,60000.0 +6947,2025-06-08T19:47:00-07:00,22.137999725341796,60.0,60000.0 +6948,2025-06-08T19:48:00-07:00,22.133333841959637,60.0,60000.0 +6949,2025-06-08T19:49:00-07:00,22.126667022705078,60.0,60000.0 +6950,2025-06-08T19:50:00-07:00,22.11999969482422,60.0,60000.0 +6951,2025-06-08T19:51:00-07:00,22.125,60.0,60000.0 +6952,2025-06-08T19:52:00-07:00,22.125,60.0,60000.0 +6953,2025-06-08T19:53:00-07:00,22.117999267578124,60.0,60000.0 +6954,2025-06-08T19:54:00-07:00,22.114999771118164,60.0,60000.0 +6955,2025-06-08T19:55:00-07:00,22.115000406901043,60.0,60000.0 +6956,2025-06-08T19:56:00-07:00,22.131999969482422,60.0,60000.0 +6957,2025-06-08T19:57:00-07:00,22.141667048136394,60.0,60000.0 +6958,2025-06-08T19:58:00-07:00,22.145714896065847,60.0,60000.0 +6959,2025-06-08T19:59:00-07:00,22.14800109863281,60.0,60000.0 +6960,2025-06-08T20:00:00-07:00,22.145000457763672,60.0,60000.0 +6961,2025-06-08T20:01:00-07:00,22.156667073567707,60.0,60000.0 +6962,2025-06-08T20:02:00-07:00,22.15400085449219,60.0,60000.0 +6963,2025-06-08T20:03:00-07:00,22.16166623433431,60.0,60000.0 +6964,2025-06-08T20:04:00-07:00,22.17166582743327,60.0,60000.0 +6965,2025-06-08T20:05:00-07:00,22.183332443237305,60.0,60000.0 +6966,2025-06-08T20:06:00-07:00,22.198333740234375,60.0,60000.0 +6967,2025-06-08T20:07:00-07:00,22.204999923706055,60.0,60000.0 +6968,2025-06-08T20:08:00-07:00,22.21666717529297,60.0,60000.0 +6969,2025-06-08T20:09:00-07:00,22.223333994547527,60.0,60000.0 +6970,2025-06-08T20:10:00-07:00,22.226667404174805,60.0,60000.0 +6971,2025-06-08T20:11:00-07:00,22.220001220703125,60.0,60000.0 +6972,2025-06-08T20:12:00-07:00,22.220000584920246,60.0,60000.0 +6973,2025-06-08T20:13:00-07:00,22.226666768391926,60.0,60000.0 +6974,2025-06-08T20:14:00-07:00,22.227999877929687,60.0,60000.0 +6975,2025-06-08T20:15:00-07:00,22.228333791097004,60.0,60000.0 +6976,2025-06-08T20:16:00-07:00,22.225000381469727,60.0,60000.0 +6977,2025-06-08T20:17:00-07:00,22.240000915527343,60.0,60000.0 +6978,2025-06-08T20:18:00-07:00,22.25833257039388,60.0,60000.0 +6979,2025-06-08T20:19:00-07:00,22.266666412353516,60.0,60000.0 +6980,2025-06-08T20:20:00-07:00,22.265999603271485,60.0,60000.0 +6981,2025-06-08T20:21:00-07:00,22.273333231608074,60.0,60000.0 +6982,2025-06-08T20:22:00-07:00,22.276666005452473,60.0,60000.0 +6983,2025-06-08T20:23:00-07:00,22.283999633789062,60.0,60000.0 +6984,2025-06-08T20:24:00-07:00,22.290000915527344,60.0,60000.0 +6985,2025-06-08T20:25:00-07:00,22.296666463216145,60.0,60000.0 +6986,2025-06-08T20:26:00-07:00,22.301999664306642,60.0,60000.0 +6987,2025-06-08T20:27:00-07:00,22.31166712443034,60.0,60000.0 +6988,2025-06-08T20:28:00-07:00,22.323333740234375,60.0,60000.0 +6989,2025-06-08T20:29:00-07:00,22.330001068115234,60.0,60000.0 +6990,2025-06-08T20:30:00-07:00,22.344999313354492,60.0,60000.0 +6991,2025-06-08T20:31:00-07:00,22.344999313354492,60.0,60000.0 +6992,2025-06-08T20:32:00-07:00,22.34000015258789,60.0,60000.0 +6993,2025-06-08T20:33:00-07:00,22.33666737874349,60.0,60000.0 +6994,2025-06-08T20:34:00-07:00,22.33333460489909,60.0,60000.0 +6995,2025-06-08T20:35:00-07:00,22.330001831054688,60.0,60000.0 +6996,2025-06-08T20:36:00-07:00,22.32833417256673,60.0,60000.0 +6997,2025-06-08T20:37:00-07:00,22.33500099182129,60.0,60000.0 +6998,2025-06-08T20:38:00-07:00,22.33200149536133,60.0,60000.0 +6999,2025-06-08T20:39:00-07:00,22.33500099182129,60.0,60000.0 +7000,2025-06-08T20:40:00-07:00,22.33333460489909,60.0,60000.0 +7001,2025-06-08T20:41:00-07:00,22.334000396728516,60.0,60000.0 +7002,2025-06-08T20:42:00-07:00,22.34000015258789,60.0,60000.0 +7003,2025-06-08T20:43:00-07:00,22.33333460489909,60.0,60000.0 +7004,2025-06-08T20:44:00-07:00,22.324000549316406,60.0,60000.0 +7005,2025-06-08T20:45:00-07:00,22.325000762939453,60.0,60000.0 +7006,2025-06-08T20:46:00-07:00,22.313334147135418,60.0,60000.0 +7007,2025-06-08T20:47:00-07:00,22.316000366210936,60.0,60000.0 +7008,2025-06-08T20:48:00-07:00,22.311667760213215,60.0,60000.0 +7009,2025-06-08T20:49:00-07:00,22.30500030517578,60.0,60000.0 +7010,2025-06-08T20:50:00-07:00,22.301999664306642,60.0,60000.0 +7011,2025-06-08T20:51:00-07:00,22.296666463216145,60.0,60000.0 +7012,2025-06-08T20:52:00-07:00,22.290000915527344,60.0,60000.0 +7013,2025-06-08T20:53:00-07:00,22.286000061035157,60.0,60000.0 +7014,2025-06-08T20:54:00-07:00,22.281665802001953,60.0,60000.0 +7015,2025-06-08T20:55:00-07:00,22.281665802001953,60.0,60000.0 +7016,2025-06-08T20:56:00-07:00,22.279998779296875,60.0,60000.0 +7017,2025-06-08T20:57:00-07:00,22.28333282470703,60.0,60000.0 +7018,2025-06-08T20:58:00-07:00,22.28499984741211,60.0,60000.0 +7019,2025-06-08T20:59:00-07:00,22.28199920654297,60.0,60000.0 +7020,2025-06-08T21:00:00-07:00,22.279998779296875,60.0,60000.0 +7021,2025-06-08T21:01:00-07:00,22.27166684468587,60.0,60000.0 +7022,2025-06-08T21:02:00-07:00,22.270000457763672,60.0,60000.0 +7023,2025-06-08T21:03:00-07:00,22.26166534423828,60.0,60000.0 +7024,2025-06-08T21:04:00-07:00,22.259998957316082,60.0,60000.0 +7025,2025-06-08T21:05:00-07:00,22.25599899291992,60.0,60000.0 +7026,2025-06-08T21:06:00-07:00,22.2549991607666,60.0,60000.0 +7027,2025-06-08T21:07:00-07:00,22.25,60.0,60000.0 +7028,2025-06-08T21:08:00-07:00,22.24800033569336,60.0,60000.0 +7029,2025-06-08T21:09:00-07:00,22.246667226155598,60.0,60000.0 +7030,2025-06-08T21:10:00-07:00,22.2433344523112,60.0,60000.0 +7031,2025-06-08T21:11:00-07:00,22.2380012512207,60.0,60000.0 +7032,2025-06-08T21:12:00-07:00,22.235000610351562,60.0,60000.0 +7033,2025-06-08T21:13:00-07:00,22.221667607625324,60.0,60000.0 +7034,2025-06-08T21:14:00-07:00,22.222000885009766,60.0,60000.0 +7035,2025-06-08T21:15:00-07:00,22.218334197998047,60.0,60000.0 +7036,2025-06-08T21:16:00-07:00,22.218333562215168,60.0,60000.0 +7037,2025-06-08T21:17:00-07:00,22.209999084472656,60.0,60000.0 +7038,2025-06-08T21:18:00-07:00,22.204999923706055,60.0,60000.0 +7039,2025-06-08T21:19:00-07:00,22.198333104451496,60.0,60000.0 +7040,2025-06-08T21:20:00-07:00,22.19199905395508,60.0,60000.0 +7041,2025-06-08T21:21:00-07:00,22.19333267211914,60.0,60000.0 +7042,2025-06-08T21:22:00-07:00,22.184999465942383,60.0,60000.0 +7043,2025-06-08T21:23:00-07:00,22.18000030517578,60.0,60000.0 +7044,2025-06-08T21:24:00-07:00,22.177999877929686,60.0,60000.0 +7045,2025-06-08T21:25:00-07:00,22.176666259765625,60.0,60000.0 +7046,2025-06-08T21:26:00-07:00,22.178333282470703,60.0,60000.0 +7047,2025-06-08T21:27:00-07:00,22.16599884033203,60.0,60000.0 +7048,2025-06-08T21:28:00-07:00,22.135000864664715,60.0,60000.0 +7049,2025-06-08T21:29:00-07:00,22.125,60.0,60000.0 +7050,2025-06-08T21:30:00-07:00,22.132000732421876,60.0,60000.0 +7051,2025-06-08T21:31:00-07:00,22.145000457763672,60.0,60000.0 +7052,2025-06-08T21:32:00-07:00,22.16166623433431,60.0,60000.0 +7053,2025-06-08T21:33:00-07:00,22.1739990234375,60.0,60000.0 +7054,2025-06-08T21:34:00-07:00,22.178333282470703,60.0,60000.0 +7055,2025-06-08T21:35:00-07:00,22.184999465942383,60.0,60000.0 +7056,2025-06-08T21:36:00-07:00,22.19399948120117,60.0,60000.0 +7057,2025-06-08T21:37:00-07:00,22.198333104451496,60.0,60000.0 +7058,2025-06-08T21:38:00-07:00,22.204999923706055,60.0,60000.0 +7059,2025-06-08T21:39:00-07:00,22.216000366210938,60.0,60000.0 +7060,2025-06-08T21:40:00-07:00,22.221667607625324,60.0,60000.0 +7061,2025-06-08T21:41:00-07:00,22.226666768391926,60.0,60000.0 +7062,2025-06-08T21:42:00-07:00,22.21800079345703,60.0,60000.0 +7063,2025-06-08T21:43:00-07:00,22.221667607625324,60.0,60000.0 +7064,2025-06-08T21:44:00-07:00,22.213333129882812,60.0,60000.0 +7065,2025-06-08T21:45:00-07:00,22.222000122070312,60.0,60000.0 +7066,2025-06-08T21:46:00-07:00,22.228333791097004,60.0,60000.0 +7067,2025-06-08T21:47:00-07:00,22.2450008392334,60.0,60000.0 +7068,2025-06-08T21:48:00-07:00,22.25,60.0,60000.0 +7069,2025-06-08T21:49:00-07:00,22.2566655476888,60.0,60000.0 +7070,2025-06-08T21:50:00-07:00,22.266666412353516,60.0,60000.0 +7071,2025-06-08T21:51:00-07:00,22.270000457763672,60.0,60000.0 +7072,2025-06-08T21:52:00-07:00,22.266666412353516,60.0,60000.0 +7073,2025-06-08T21:53:00-07:00,22.266666412353516,60.0,60000.0 +7074,2025-06-08T21:54:00-07:00,22.259999084472657,60.0,60000.0 +7075,2025-06-08T21:55:00-07:00,22.273333231608074,60.0,60000.0 +7076,2025-06-08T21:56:00-07:00,22.278332392374676,60.0,60000.0 +7077,2025-06-08T21:57:00-07:00,22.290000915527344,60.0,60000.0 +7078,2025-06-08T21:58:00-07:00,22.304999669392902,60.0,60000.0 +7079,2025-06-08T21:59:00-07:00,22.30666732788086,60.0,60000.0 +7080,2025-06-08T22:00:00-07:00,22.316000366210936,60.0,60000.0 +7081,2025-06-08T22:01:00-07:00,22.31999969482422,60.0,60000.0 +7082,2025-06-08T22:02:00-07:00,22.32666778564453,60.0,60000.0 +7083,2025-06-08T22:03:00-07:00,22.328001403808592,60.0,60000.0 +7084,2025-06-08T22:04:00-07:00,22.331668217976887,60.0,60000.0 +7085,2025-06-08T22:05:00-07:00,22.33666737874349,60.0,60000.0 +7086,2025-06-08T22:06:00-07:00,22.33800048828125,60.0,60000.0 +7087,2025-06-08T22:07:00-07:00,22.34666570027669,60.0,60000.0 +7088,2025-06-08T22:08:00-07:00,22.358332951863606,60.0,60000.0 +7089,2025-06-08T22:09:00-07:00,22.369998931884766,60.0,60000.0 +7090,2025-06-08T22:10:00-07:00,22.366666158040363,60.0,60000.0 +7091,2025-06-08T22:11:00-07:00,22.349998474121094,60.0,60000.0 +7092,2025-06-09T09:56:00-07:00,17.130001068115234,42300.0,42300000.0 +7093,2025-06-09T09:57:00-07:00,17.152000427246094,60.0,60000.0 +7094,2025-06-09T09:58:00-07:00,17.31166712443034,60.0,60000.0 +7095,2025-06-09T09:59:00-07:00,17.53999964396159,60.0,60000.0 +7096,2025-06-09T10:00:00-07:00,17.83800048828125,60.0,60000.0 +7097,2025-06-09T10:01:00-07:00,18.146666208902996,60.0,60000.0 +7098,2025-06-09T10:02:00-07:00,18.49333381652832,60.0,60000.0 +7099,2025-06-09T10:03:00-07:00,18.807999420166016,60.0,60000.0 +7100,2025-06-09T10:04:00-07:00,19.099999745686848,60.0,60000.0 +7101,2025-06-09T10:05:00-07:00,19.383333206176758,60.0,60000.0 +7102,2025-06-09T10:06:00-07:00,19.62799987792969,60.0,60000.0 +7103,2025-06-09T10:07:00-07:00,19.839999516805012,60.0,60000.0 +7104,2025-06-09T10:08:00-07:00,20.049999872843426,60.0,60000.0 +7105,2025-06-09T10:09:00-07:00,20.205999755859374,60.0,60000.0 +7106,2025-06-09T10:10:00-07:00,20.353333791097004,60.0,60000.0 +7107,2025-06-09T10:11:00-07:00,20.513333002726238,60.0,60000.0 +7108,2025-06-09T10:12:00-07:00,20.637999725341796,60.0,60000.0 +7109,2025-06-09T10:13:00-07:00,20.753334045410156,60.0,60000.0 +7110,2025-06-09T10:14:00-07:00,20.873332977294922,60.0,60000.0 +7111,2025-06-09T10:15:00-07:00,20.95999984741211,60.0,60000.0 +7112,2025-06-09T10:16:00-07:00,21.026666005452473,60.0,60000.0 +7113,2025-06-09T10:17:00-07:00,21.098333994547527,60.0,60000.0 +7114,2025-06-09T10:18:00-07:00,21.165999603271484,60.0,60000.0 +7115,2025-06-09T10:19:00-07:00,21.25499979654948,60.0,60000.0 +7116,2025-06-09T10:20:00-07:00,21.32833417256673,60.0,60000.0 +7117,2025-06-09T10:21:00-07:00,21.381999969482422,60.0,60000.0 +7118,2025-06-09T10:22:00-07:00,21.424999872843426,60.0,60000.0 +7119,2025-06-09T10:23:00-07:00,21.456666310628254,60.0,60000.0 +7120,2025-06-09T10:24:00-07:00,21.480000178019207,60.0,60000.0 +7121,2025-06-09T10:25:00-07:00,21.490000915527343,60.0,60000.0 +7122,2025-06-09T10:26:00-07:00,21.5066655476888,60.0,60000.0 +7123,2025-06-09T10:27:00-07:00,21.51333236694336,60.0,60000.0 +7124,2025-06-09T10:28:00-07:00,21.5119987487793,60.0,60000.0 +7125,2025-06-09T10:29:00-07:00,21.51166598002116,60.0,60000.0 +7126,2025-06-09T10:30:00-07:00,21.50666618347168,60.0,60000.0 +7127,2025-06-09T10:31:00-07:00,21.48800048828125,60.0,60000.0 +7128,2025-06-09T10:32:00-07:00,21.446666717529297,60.0,60000.0 +7129,2025-06-09T10:33:00-07:00,21.371667226155598,60.0,60000.0 +7130,2025-06-09T10:34:00-07:00,21.3140007019043,60.0,60000.0 +7131,2025-06-09T10:35:00-07:00,21.18166732788086,60.0,60000.0 +7132,2025-06-09T10:36:00-07:00,21.010000228881836,60.0,60000.0 +7133,2025-06-09T10:37:00-07:00,20.945999908447266,60.0,60000.0 +7134,2025-06-09T10:38:00-07:00,20.928333282470703,60.0,60000.0 +7135,2025-06-09T10:39:00-07:00,20.919998168945312,60.0,60000.0 +7136,2025-06-09T10:40:00-07:00,20.9239990234375,60.0,60000.0 +7137,2025-06-09T10:41:00-07:00,20.93666648864746,60.0,60000.0 +7138,2025-06-09T10:42:00-07:00,20.961666742960613,60.0,60000.0 +7139,2025-06-09T10:43:00-07:00,20.990000915527343,60.0,60000.0 +7140,2025-06-09T10:44:00-07:00,20.996667226155598,60.0,60000.0 +7141,2025-06-09T10:45:00-07:00,21.0,60.0,60000.0 +7142,2025-06-09T10:46:00-07:00,21.01199951171875,60.0,60000.0 +7143,2025-06-09T10:47:00-07:00,21.031665802001953,60.0,60000.0 +7144,2025-06-09T10:48:00-07:00,21.05500030517578,60.0,60000.0 +7145,2025-06-09T10:49:00-07:00,21.05600051879883,60.0,60000.0 +7146,2025-06-09T10:50:00-07:00,21.05666732788086,60.0,60000.0 +7147,2025-06-09T10:51:00-07:00,21.061667760213215,60.0,60000.0 +7148,2025-06-09T10:52:00-07:00,21.06999969482422,60.0,60000.0 +7149,2025-06-09T10:53:00-07:00,21.07833417256673,60.0,60000.0 +7150,2025-06-09T10:54:00-07:00,21.09166653951009,60.0,60000.0 +7151,2025-06-09T10:55:00-07:00,21.105998992919922,60.0,60000.0 +7152,2025-06-09T10:56:00-07:00,21.121665954589844,60.0,60000.0 +7153,2025-06-09T10:57:00-07:00,21.111666361490887,60.0,60000.0 +7154,2025-06-09T10:58:00-07:00,21.092000579833986,60.0,60000.0 +7155,2025-06-09T10:59:00-07:00,21.063334147135418,60.0,60000.0 +7156,2025-06-09T11:00:00-07:00,21.048332850138348,60.0,60000.0 +7157,2025-06-09T11:01:00-07:00,21.036000061035157,60.0,60000.0 +7158,2025-06-09T11:02:00-07:00,21.023333231608074,60.0,60000.0 +7159,2025-06-09T11:03:00-07:00,21.016666412353516,60.0,60000.0 +7160,2025-06-09T11:04:00-07:00,21.02999954223633,60.0,60000.0 +7161,2025-06-09T11:05:00-07:00,21.040000915527344,60.0,60000.0 +7162,2025-06-09T11:06:00-07:00,21.041666666666668,60.0,60000.0 +7163,2025-06-09T11:07:00-07:00,21.025999450683592,60.0,60000.0 +7164,2025-06-09T11:08:00-07:00,21.02166684468587,60.0,60000.0 +7165,2025-06-09T11:09:00-07:00,21.03666623433431,60.0,60000.0 +7166,2025-06-09T11:10:00-07:00,21.049999237060547,60.0,60000.0 +7167,2025-06-09T11:11:00-07:00,21.051666259765625,60.0,60000.0 +7168,2025-06-09T11:12:00-07:00,21.03499984741211,60.0,60000.0 +7169,2025-06-09T11:13:00-07:00,21.03800048828125,60.0,60000.0 +7170,2025-06-09T11:14:00-07:00,21.048332850138348,60.0,60000.0 +7171,2025-06-09T11:15:00-07:00,21.053333918253582,60.0,60000.0 +7172,2025-06-09T11:16:00-07:00,21.066000366210936,60.0,60000.0 +7173,2025-06-09T11:17:00-07:00,21.06499989827474,60.0,60000.0 +7174,2025-06-09T11:18:00-07:00,21.058334350585938,60.0,60000.0 +7175,2025-06-09T11:19:00-07:00,21.0640007019043,60.0,60000.0 +7176,2025-06-09T11:20:00-07:00,21.061667760213215,60.0,60000.0 +7177,2025-06-09T11:21:00-07:00,21.066666920979817,60.0,60000.0 +7178,2025-06-09T11:22:00-07:00,21.05,60.0,60000.0 +7179,2025-06-09T11:23:00-07:00,21.029999415079754,60.0,60000.0 +7180,2025-06-09T11:24:00-07:00,21.01333236694336,60.0,60000.0 +7181,2025-06-09T11:25:00-07:00,21.0119987487793,60.0,60000.0 +7182,2025-06-09T11:26:00-07:00,21.02666664123535,60.0,60000.0 +7183,2025-06-09T11:27:00-07:00,21.05166753133138,60.0,60000.0 +7184,2025-06-09T11:28:00-07:00,21.078000640869142,60.0,60000.0 +7185,2025-06-09T11:29:00-07:00,21.09833335876465,60.0,60000.0 +7186,2025-06-09T11:30:00-07:00,21.108333587646484,60.0,60000.0 +7187,2025-06-09T11:31:00-07:00,21.112000274658204,60.0,60000.0 +7188,2025-06-09T11:32:00-07:00,21.126667022705078,60.0,60000.0 +7189,2025-06-09T11:33:00-07:00,21.126667022705078,60.0,60000.0 +7190,2025-06-09T11:34:00-07:00,21.136000061035155,60.0,60000.0 +7191,2025-06-09T11:35:00-07:00,21.141666412353516,60.0,60000.0 +7192,2025-06-09T11:36:00-07:00,21.141666412353516,60.0,60000.0 +7193,2025-06-09T11:37:00-07:00,21.141999816894533,60.0,60000.0 +7194,2025-06-09T11:38:00-07:00,21.15500005086263,60.0,60000.0 +7195,2025-06-09T11:39:00-07:00,21.16666539510091,60.0,60000.0 +7196,2025-06-09T11:40:00-07:00,21.17599868774414,60.0,60000.0 +7197,2025-06-09T11:41:00-07:00,21.196666717529297,60.0,60000.0 +7198,2025-06-09T11:42:00-07:00,21.213333129882812,60.0,60000.0 +7199,2025-06-09T11:43:00-07:00,21.240000915527343,60.0,60000.0 +7200,2025-06-09T11:44:00-07:00,21.2516663869222,60.0,60000.0 +7201,2025-06-09T11:45:00-07:00,21.2549991607666,60.0,60000.0 +7202,2025-06-09T11:46:00-07:00,21.24400100708008,60.0,60000.0 +7203,2025-06-09T11:47:00-07:00,21.235000610351562,60.0,60000.0 +7204,2025-06-09T11:48:00-07:00,21.263333002726238,60.0,60000.0 +7205,2025-06-09T11:49:00-07:00,21.295999908447264,60.0,60000.0 +7206,2025-06-09T11:50:00-07:00,21.30500030517578,60.0,60000.0 +7207,2025-06-09T11:51:00-07:00,21.303333918253582,60.0,60000.0 +7208,2025-06-09T11:52:00-07:00,21.290000915527344,60.0,60000.0 +7209,2025-06-09T11:53:00-07:00,21.286666870117188,60.0,60000.0 +7210,2025-06-09T11:54:00-07:00,21.28499984741211,60.0,60000.0 +7211,2025-06-09T11:55:00-07:00,21.290000915527344,60.0,60000.0 +7212,2025-06-09T11:56:00-07:00,21.279999324253627,60.0,60000.0 +7213,2025-06-09T11:57:00-07:00,21.270000457763672,60.0,60000.0 +7214,2025-06-09T11:58:00-07:00,21.270000457763672,60.0,60000.0 +7215,2025-06-09T11:59:00-07:00,21.266665776570637,60.0,60000.0 +7216,2025-06-09T12:00:00-07:00,21.2528566632952,60.0,60000.0 +7217,2025-06-09T12:01:00-07:00,21.253999328613283,60.0,60000.0 +7218,2025-06-09T12:02:00-07:00,21.28000005086263,60.0,60000.0 +7219,2025-06-09T12:03:00-07:00,21.315000534057617,60.0,60000.0 +7220,2025-06-09T12:04:00-07:00,21.349999745686848,60.0,60000.0 +7221,2025-06-09T12:05:00-07:00,21.365999603271483,60.0,60000.0 +7222,2025-06-09T12:06:00-07:00,21.37999979654948,60.0,60000.0 +7223,2025-06-09T12:07:00-07:00,21.400000890096027,60.0,60000.0 +7224,2025-06-09T12:08:00-07:00,21.415999603271484,60.0,60000.0 +7225,2025-06-09T12:09:00-07:00,21.41166623433431,60.0,60000.0 +7226,2025-06-09T12:10:00-07:00,21.41333262125651,60.0,60000.0 +7227,2025-06-09T12:11:00-07:00,21.425999450683594,60.0,60000.0 +7228,2025-06-09T12:12:00-07:00,21.44333330790202,60.0,60000.0 +7229,2025-06-09T12:13:00-07:00,21.463333129882812,60.0,60000.0 +7230,2025-06-09T12:14:00-07:00,21.49400100708008,60.0,60000.0 +7231,2025-06-09T12:15:00-07:00,21.5,60.0,60000.0 +7232,2025-06-09T12:16:00-07:00,21.491666793823242,60.0,60000.0 +7233,2025-06-09T12:17:00-07:00,21.470001220703125,60.0,60000.0 +7234,2025-06-09T12:18:00-07:00,21.475000381469727,60.0,60000.0 +7235,2025-06-09T12:19:00-07:00,21.483333587646484,60.0,60000.0 +7236,2025-06-09T12:20:00-07:00,21.492001342773438,60.0,60000.0 +7237,2025-06-09T12:21:00-07:00,21.48500124613444,60.0,60000.0 +7238,2025-06-09T12:22:00-07:00,21.490001678466797,60.0,60000.0 +7239,2025-06-09T12:23:00-07:00,21.49400100708008,60.0,60000.0 +7240,2025-06-09T12:24:00-07:00,21.5049991607666,60.0,60000.0 +7241,2025-06-09T12:25:00-07:00,21.518333435058594,60.0,60000.0 +7242,2025-06-09T12:26:00-07:00,21.52999954223633,60.0,60000.0 +7243,2025-06-09T12:27:00-07:00,21.538333892822266,60.0,60000.0 +7244,2025-06-09T12:28:00-07:00,21.53499984741211,60.0,60000.0 +7245,2025-06-09T12:29:00-07:00,21.54000015258789,60.0,60000.0 +7246,2025-06-09T12:30:00-07:00,21.541666666666668,60.0,60000.0 +7247,2025-06-09T12:31:00-07:00,21.538333892822266,60.0,60000.0 +7248,2025-06-09T12:32:00-07:00,21.53199996948242,60.0,60000.0 +7249,2025-06-09T12:33:00-07:00,21.513333002726238,60.0,60000.0 +7250,2025-06-09T12:34:00-07:00,21.509998957316082,60.0,60000.0 +7251,2025-06-09T12:35:00-07:00,21.496000671386717,60.0,60000.0 +7252,2025-06-09T12:36:00-07:00,21.48833401997884,60.0,60000.0 +7253,2025-06-09T12:37:00-07:00,21.485000610351562,60.0,60000.0 +7254,2025-06-09T12:38:00-07:00,21.474000549316408,60.0,60000.0 +7255,2025-06-09T12:39:00-07:00,21.468333562215168,60.0,60000.0 +7256,2025-06-09T12:40:00-07:00,21.456666310628254,60.0,60000.0 +7257,2025-06-09T12:41:00-07:00,21.4359992980957,60.0,60000.0 +7258,2025-06-09T12:42:00-07:00,21.42166582743327,60.0,60000.0 +7259,2025-06-09T12:43:00-07:00,21.41333262125651,60.0,60000.0 +7260,2025-06-09T12:44:00-07:00,21.429999542236327,60.0,60000.0 +7261,2025-06-09T12:45:00-07:00,21.438332239786785,60.0,60000.0 +7262,2025-06-09T12:46:00-07:00,21.458333333333332,60.0,60000.0 +7263,2025-06-09T12:47:00-07:00,21.45999984741211,60.0,60000.0 +7264,2025-06-09T12:48:00-07:00,21.461666742960613,60.0,60000.0 +7265,2025-06-09T12:49:00-07:00,21.446666081746418,60.0,60000.0 +7266,2025-06-09T12:50:00-07:00,21.42599868774414,60.0,60000.0 +7267,2025-06-09T12:51:00-07:00,21.423332850138348,60.0,60000.0 +7268,2025-06-09T12:52:00-07:00,21.448333104451496,60.0,60000.0 +7269,2025-06-09T12:53:00-07:00,21.45,60.0,60000.0 +7270,2025-06-09T12:54:00-07:00,21.46666717529297,60.0,60000.0 +7271,2025-06-09T12:55:00-07:00,21.48166783650716,60.0,60000.0 +7272,2025-06-09T12:56:00-07:00,21.50199966430664,60.0,60000.0 +7273,2025-06-09T12:57:00-07:00,21.521666208902996,60.0,60000.0 +7274,2025-06-09T12:58:00-07:00,21.529998779296875,60.0,60000.0 +7275,2025-06-09T12:59:00-07:00,21.529998779296875,60.0,60000.0 +7276,2025-06-09T13:00:00-07:00,21.526666005452473,60.0,60000.0 +7277,2025-06-09T13:01:00-07:00,21.519999821980793,60.0,60000.0 +7278,2025-06-09T13:02:00-07:00,21.522000122070313,60.0,60000.0 +7279,2025-06-09T13:03:00-07:00,21.523333231608074,60.0,60000.0 +7280,2025-06-09T13:04:00-07:00,21.524999618530273,60.0,60000.0 +7281,2025-06-09T13:05:00-07:00,21.519999694824218,60.0,60000.0 +7282,2025-06-09T13:06:00-07:00,21.526666005452473,60.0,60000.0 +7283,2025-06-09T13:07:00-07:00,21.536665598551433,60.0,60000.0 +7284,2025-06-09T13:08:00-07:00,21.545999908447264,60.0,60000.0 +7285,2025-06-09T13:09:00-07:00,21.546666463216145,60.0,60000.0 +7286,2025-06-09T13:10:00-07:00,21.545000076293945,60.0,60000.0 +7287,2025-06-09T13:11:00-07:00,21.536666870117188,60.0,60000.0 +7288,2025-06-09T13:12:00-07:00,21.516665776570637,60.0,60000.0 +7289,2025-06-09T13:13:00-07:00,21.523332595825195,60.0,60000.0 +7290,2025-06-09T13:14:00-07:00,21.55,60.0,60000.0 +7291,2025-06-09T13:15:00-07:00,21.571666717529297,60.0,60000.0 +7292,2025-06-09T13:16:00-07:00,21.576667149861652,60.0,60000.0 +7293,2025-06-09T13:17:00-07:00,21.572000122070314,60.0,60000.0 +7294,2025-06-09T13:18:00-07:00,21.581666946411133,60.0,60000.0 +7295,2025-06-09T13:19:00-07:00,21.59166653951009,60.0,60000.0 +7296,2025-06-09T13:20:00-07:00,21.597998809814452,60.0,60000.0 +7297,2025-06-09T13:21:00-07:00,21.608332951863606,60.0,60000.0 +7298,2025-06-09T13:22:00-07:00,21.628333409627277,60.0,60000.0 +7299,2025-06-09T13:23:00-07:00,21.636000061035155,60.0,60000.0 +7300,2025-06-09T13:24:00-07:00,21.636666615804035,60.0,60000.0 +7301,2025-06-09T13:25:00-07:00,21.633333841959637,60.0,60000.0 +7302,2025-06-09T13:26:00-07:00,21.626000213623048,60.0,60000.0 +7303,2025-06-09T13:27:00-07:00,21.625,60.0,60000.0 +7304,2025-06-09T13:28:00-07:00,21.623332977294922,60.0,60000.0 +7305,2025-06-09T13:29:00-07:00,21.617999267578124,60.0,60000.0 +7306,2025-06-09T13:30:00-07:00,21.623332977294922,60.0,60000.0 +7307,2025-06-09T13:31:00-07:00,21.638333002726238,60.0,60000.0 +7308,2025-06-09T13:32:00-07:00,21.641999816894533,60.0,60000.0 +7309,2025-06-09T13:33:00-07:00,21.63571493966239,60.0,60000.0 +7310,2025-06-09T13:34:00-07:00,21.645000457763672,60.0,60000.0 +7311,2025-06-09T13:35:00-07:00,21.641999816894533,60.0,60000.0 +7312,2025-06-09T13:36:00-07:00,21.636666615804035,60.0,60000.0 +7313,2025-06-09T13:37:00-07:00,21.641666412353516,60.0,60000.0 +7314,2025-06-09T13:38:00-07:00,21.650001525878906,60.0,60000.0 +7315,2025-06-09T13:39:00-07:00,21.65999984741211,60.0,60000.0 +7316,2025-06-09T13:40:00-07:00,21.676665623982746,60.0,60000.0 +7317,2025-06-09T13:41:00-07:00,21.687998962402343,60.0,60000.0 +7318,2025-06-09T13:42:00-07:00,21.689999262491863,60.0,60000.0 +7319,2025-06-09T13:43:00-07:00,21.684999465942383,60.0,60000.0 +7320,2025-06-09T13:44:00-07:00,21.681999969482423,60.0,60000.0 +7321,2025-06-09T13:45:00-07:00,21.684999465942383,60.0,60000.0 +7322,2025-06-09T13:46:00-07:00,21.67333221435547,60.0,60000.0 +7323,2025-06-09T13:47:00-07:00,21.669998168945312,60.0,60000.0 +7324,2025-06-09T13:48:00-07:00,21.669998168945312,60.0,60000.0 +7325,2025-06-09T13:49:00-07:00,21.674999237060547,60.0,60000.0 +7326,2025-06-09T13:50:00-07:00,21.66666603088379,60.0,60000.0 +7327,2025-06-09T13:51:00-07:00,21.65999984741211,60.0,60000.0 +7328,2025-06-09T13:52:00-07:00,21.66999880472819,60.0,60000.0 +7329,2025-06-09T13:53:00-07:00,21.67166519165039,60.0,60000.0 +7330,2025-06-09T13:54:00-07:00,21.66999969482422,60.0,60000.0 +7331,2025-06-09T13:55:00-07:00,21.67333221435547,60.0,60000.0 +7332,2025-06-09T13:56:00-07:00,21.678333282470703,60.0,60000.0 +7333,2025-06-09T13:57:00-07:00,21.677999877929686,60.0,60000.0 +7334,2025-06-09T13:58:00-07:00,21.679999669392902,60.0,60000.0 +7335,2025-06-09T13:59:00-07:00,21.674999237060547,60.0,60000.0 +7336,2025-06-09T14:00:00-07:00,21.6739990234375,60.0,60000.0 +7337,2025-06-09T14:01:00-07:00,21.66833241780599,60.0,60000.0 +7338,2025-06-09T14:02:00-07:00,21.66333262125651,60.0,60000.0 +7339,2025-06-09T14:03:00-07:00,21.65999984741211,60.0,60000.0 +7340,2025-06-09T14:04:00-07:00,21.65166727701823,60.0,60000.0 +7341,2025-06-09T14:05:00-07:00,21.636666615804035,60.0,60000.0 +7342,2025-06-09T14:06:00-07:00,21.631667455037434,60.0,60000.0 +7343,2025-06-09T14:07:00-07:00,21.633333841959637,60.0,60000.0 +7344,2025-06-09T14:08:00-07:00,21.626667022705078,60.0,60000.0 +7345,2025-06-09T14:09:00-07:00,21.630001068115234,60.0,60000.0 +7346,2025-06-09T14:10:00-07:00,21.630001068115234,60.0,60000.0 +7347,2025-06-09T14:11:00-07:00,21.626667022705078,60.0,60000.0 +7348,2025-06-09T14:12:00-07:00,21.615999603271483,60.0,60000.0 +7349,2025-06-09T14:13:00-07:00,21.606666564941406,60.0,60000.0 +7350,2025-06-09T14:14:00-07:00,21.580000559488933,60.0,60000.0 +7351,2025-06-09T14:15:00-07:00,21.562001037597657,60.0,60000.0 +7352,2025-06-09T14:16:00-07:00,21.55666732788086,60.0,60000.0 +7353,2025-06-09T14:17:00-07:00,21.549999872843426,60.0,60000.0 +7354,2025-06-09T14:18:00-07:00,21.544000244140626,60.0,60000.0 +7355,2025-06-09T14:19:00-07:00,21.53499984741211,60.0,60000.0 +7356,2025-06-09T14:20:00-07:00,21.541667302449543,60.0,60000.0 +7357,2025-06-09T14:21:00-07:00,21.53800048828125,60.0,60000.0 +7358,2025-06-09T14:22:00-07:00,21.518332799275715,60.0,60000.0 +7359,2025-06-09T14:23:00-07:00,21.5016663869222,60.0,60000.0 +7360,2025-06-09T14:24:00-07:00,21.492001342773438,60.0,60000.0 +7361,2025-06-09T14:25:00-07:00,21.48666763305664,60.0,60000.0 +7362,2025-06-09T14:26:00-07:00,21.480000813802082,60.0,60000.0 +7363,2025-06-09T14:27:00-07:00,21.479999542236328,60.0,60000.0 +7364,2025-06-09T14:28:00-07:00,21.48666763305664,60.0,60000.0 +7365,2025-06-09T14:29:00-07:00,21.49166742960612,60.0,60000.0 +7366,2025-06-09T14:30:00-07:00,21.49400100708008,60.0,60000.0 +7367,2025-06-09T14:31:00-07:00,21.4933344523112,60.0,60000.0 +7368,2025-06-09T14:32:00-07:00,21.48666763305664,60.0,60000.0 +7369,2025-06-09T14:33:00-07:00,21.490001678466797,60.0,60000.0 +7370,2025-06-09T14:34:00-07:00,21.48666763305664,60.0,60000.0 +7371,2025-06-09T14:35:00-07:00,21.483333587646484,60.0,60000.0 +7372,2025-06-09T14:36:00-07:00,21.486000061035156,60.0,60000.0 +7373,2025-06-09T14:37:00-07:00,21.48833401997884,60.0,60000.0 +7374,2025-06-09T14:38:00-07:00,21.47166697184245,60.0,60000.0 +7375,2025-06-09T14:39:00-07:00,21.46800003051758,60.0,60000.0 +7376,2025-06-09T14:40:00-07:00,21.461666742960613,60.0,60000.0 +7377,2025-06-09T14:41:00-07:00,21.458332697550457,60.0,60000.0 +7378,2025-06-09T14:42:00-07:00,21.466000366210938,60.0,60000.0 +7379,2025-06-09T14:43:00-07:00,21.470000584920246,60.0,60000.0 +7380,2025-06-09T14:44:00-07:00,21.459999084472656,60.0,60000.0 +7381,2025-06-09T14:45:00-07:00,21.450000762939453,60.0,60000.0 +7382,2025-06-09T14:46:00-07:00,21.450000127156574,60.0,60000.0 +7383,2025-06-09T14:47:00-07:00,21.44499969482422,60.0,60000.0 +7384,2025-06-09T14:48:00-07:00,21.44399948120117,60.0,60000.0 +7385,2025-06-09T14:49:00-07:00,21.441665649414062,60.0,60000.0 +7386,2025-06-09T14:50:00-07:00,21.436665852864582,60.0,60000.0 +7387,2025-06-09T14:51:00-07:00,21.439999389648438,60.0,60000.0 +7388,2025-06-09T14:52:00-07:00,21.441665649414062,60.0,60000.0 +7389,2025-06-09T14:53:00-07:00,21.441665649414062,60.0,60000.0 +7390,2025-06-09T14:54:00-07:00,21.448000335693358,60.0,60000.0 +7391,2025-06-09T14:55:00-07:00,21.44333267211914,60.0,60000.0 +7392,2025-06-09T14:56:00-07:00,21.451667149861652,60.0,60000.0 +7393,2025-06-09T14:57:00-07:00,21.450000762939453,60.0,60000.0 +7394,2025-06-09T14:58:00-07:00,21.448333104451496,60.0,60000.0 +7395,2025-06-09T14:59:00-07:00,21.44333267211914,60.0,60000.0 +7396,2025-06-09T15:00:00-07:00,21.44199981689453,60.0,60000.0 +7397,2025-06-09T15:01:00-07:00,21.434999465942383,60.0,60000.0 +7398,2025-06-09T15:02:00-07:00,21.43833287556966,60.0,60000.0 +7399,2025-06-09T15:03:00-07:00,21.45,60.0,60000.0 +7400,2025-06-09T15:04:00-07:00,21.446666717529297,60.0,60000.0 +7401,2025-06-09T15:05:00-07:00,21.451666514078777,60.0,60000.0 +7402,2025-06-09T15:06:00-07:00,21.455999755859374,60.0,60000.0 +7403,2025-06-09T15:07:00-07:00,21.459999720255535,60.0,60000.0 +7404,2025-06-09T15:08:00-07:00,21.471667607625324,60.0,60000.0 +7405,2025-06-09T15:09:00-07:00,21.475000381469727,60.0,60000.0 +7406,2025-06-09T15:10:00-07:00,21.474000549316408,60.0,60000.0 +7407,2025-06-09T15:11:00-07:00,21.481667200724285,60.0,60000.0 +7408,2025-06-09T15:12:00-07:00,21.476666768391926,60.0,60000.0 +7409,2025-06-09T15:13:00-07:00,21.476000213623045,60.0,60000.0 +7410,2025-06-09T15:14:00-07:00,21.471667607625324,60.0,60000.0 +7411,2025-06-09T15:15:00-07:00,21.461666107177734,60.0,60000.0 +7412,2025-06-09T15:16:00-07:00,21.454000091552736,60.0,60000.0 +7413,2025-06-09T15:17:00-07:00,21.453333536783855,60.0,60000.0 +7414,2025-06-09T15:18:00-07:00,21.44333267211914,60.0,60000.0 +7415,2025-06-09T15:19:00-07:00,21.427999114990236,60.0,60000.0 +7416,2025-06-09T15:20:00-07:00,21.424999237060547,60.0,60000.0 +7417,2025-06-09T15:21:00-07:00,21.41833241780599,60.0,60000.0 +7418,2025-06-09T15:22:00-07:00,21.41799850463867,60.0,60000.0 +7419,2025-06-09T15:23:00-07:00,21.41833241780599,60.0,60000.0 +7420,2025-06-09T15:24:00-07:00,21.41666539510091,60.0,60000.0 +7421,2025-06-09T15:25:00-07:00,21.41199951171875,60.0,60000.0 +7422,2025-06-09T15:26:00-07:00,21.41166623433431,60.0,60000.0 +7423,2025-06-09T15:27:00-07:00,21.41499900817871,60.0,60000.0 +7424,2025-06-09T15:28:00-07:00,21.41199951171875,60.0,60000.0 +7425,2025-06-09T15:29:00-07:00,21.405000686645508,60.0,60000.0 +7426,2025-06-09T15:30:00-07:00,21.40999984741211,60.0,60000.0 +7427,2025-06-09T15:31:00-07:00,21.408000183105468,60.0,60000.0 +7428,2025-06-09T15:32:00-07:00,21.41333262125651,60.0,60000.0 +7429,2025-06-09T15:33:00-07:00,21.419998168945312,60.0,60000.0 +7430,2025-06-09T15:34:00-07:00,21.4239990234375,60.0,60000.0 +7431,2025-06-09T15:35:00-07:00,21.43000030517578,60.0,60000.0 +7432,2025-06-09T15:36:00-07:00,21.43166669209798,60.0,60000.0 +7433,2025-06-09T15:37:00-07:00,21.437998962402343,60.0,60000.0 +7434,2025-06-09T15:38:00-07:00,21.436665852864582,60.0,60000.0 +7435,2025-06-09T15:39:00-07:00,21.429999669392902,60.0,60000.0 +7436,2025-06-09T15:40:00-07:00,21.431999969482423,60.0,60000.0 +7437,2025-06-09T15:41:00-07:00,21.428333282470703,60.0,60000.0 +7438,2025-06-09T15:42:00-07:00,21.41166623433431,60.0,60000.0 +7439,2025-06-09T15:43:00-07:00,21.41199951171875,60.0,60000.0 +7440,2025-06-09T15:44:00-07:00,21.401667912801106,60.0,60000.0 +7441,2025-06-09T15:45:00-07:00,21.395000457763672,60.0,60000.0 +7442,2025-06-09T15:46:00-07:00,21.39800109863281,60.0,60000.0 +7443,2025-06-09T15:47:00-07:00,21.400000890096027,60.0,60000.0 +7444,2025-06-09T15:48:00-07:00,21.401667912801106,60.0,60000.0 +7445,2025-06-09T15:49:00-07:00,21.41199951171875,60.0,60000.0 +7446,2025-06-09T15:50:00-07:00,21.41333262125651,60.0,60000.0 +7447,2025-06-09T15:51:00-07:00,21.424999237060547,60.0,60000.0 +7448,2025-06-09T15:52:00-07:00,21.425999450683594,60.0,60000.0 +7449,2025-06-09T15:53:00-07:00,21.429999669392902,60.0,60000.0 +7450,2025-06-09T15:54:00-07:00,21.441665649414062,60.0,60000.0 +7451,2025-06-09T15:55:00-07:00,21.44399948120117,60.0,60000.0 +7452,2025-06-09T15:56:00-07:00,21.454999923706055,60.0,60000.0 +7453,2025-06-09T15:57:00-07:00,21.461666107177734,60.0,60000.0 +7454,2025-06-09T15:58:00-07:00,21.470001220703125,60.0,60000.0 +7455,2025-06-09T15:59:00-07:00,21.471667607625324,60.0,60000.0 +7456,2025-06-09T16:00:00-07:00,21.485000610351562,60.0,60000.0 +7457,2025-06-09T16:01:00-07:00,21.492001342773438,60.0,60000.0 +7458,2025-06-09T16:02:00-07:00,21.4983336130778,60.0,60000.0 +7459,2025-06-09T16:03:00-07:00,21.496666590372723,60.0,60000.0 +7460,2025-06-09T16:04:00-07:00,21.507998657226562,60.0,60000.0 +7461,2025-06-09T16:05:00-07:00,21.51166534423828,60.0,60000.0 +7462,2025-06-09T16:06:00-07:00,21.518333435058594,60.0,60000.0 +7463,2025-06-09T16:07:00-07:00,21.529998779296875,60.0,60000.0 +7464,2025-06-09T16:08:00-07:00,21.526666005452473,60.0,60000.0 +7465,2025-06-09T16:09:00-07:00,21.540000279744465,60.0,60000.0 +7466,2025-06-09T16:10:00-07:00,21.546000671386718,60.0,60000.0 +7467,2025-06-09T16:11:00-07:00,21.56499989827474,60.0,60000.0 +7468,2025-06-09T16:12:00-07:00,21.573333740234375,60.0,60000.0 +7469,2025-06-09T16:13:00-07:00,21.580001068115234,60.0,60000.0 +7470,2025-06-09T16:14:00-07:00,21.58500099182129,60.0,60000.0 +7471,2025-06-09T16:15:00-07:00,21.58333460489909,60.0,60000.0 +7472,2025-06-09T16:16:00-07:00,21.570000330607098,60.0,60000.0 +7473,2025-06-09T16:17:00-07:00,21.565000534057617,60.0,60000.0 +7474,2025-06-09T16:18:00-07:00,21.55500030517578,60.0,60000.0 +7475,2025-06-09T16:19:00-07:00,21.54000015258789,60.0,60000.0 +7476,2025-06-09T16:20:00-07:00,21.528332392374676,60.0,60000.0 +7477,2025-06-09T16:21:00-07:00,21.51333236694336,60.0,60000.0 +7478,2025-06-09T16:22:00-07:00,21.4983336130778,60.0,60000.0 +7479,2025-06-09T16:23:00-07:00,21.48600082397461,60.0,60000.0 +7480,2025-06-09T16:24:00-07:00,21.47833315531413,60.0,60000.0 +7481,2025-06-09T16:25:00-07:00,21.473333994547527,60.0,60000.0 +7482,2025-06-09T16:26:00-07:00,21.45999984741211,60.0,60000.0 +7483,2025-06-09T16:27:00-07:00,21.451667149861652,60.0,60000.0 +7484,2025-06-09T16:28:00-07:00,21.450000127156574,60.0,60000.0 +7485,2025-06-09T16:29:00-07:00,21.450000762939453,60.0,60000.0 +7486,2025-06-09T16:30:00-07:00,21.451666514078777,60.0,60000.0 +7487,2025-06-09T16:31:00-07:00,21.44499969482422,60.0,60000.0 +7488,2025-06-09T16:32:00-07:00,21.431666056315105,60.0,60000.0 +7489,2025-06-09T16:33:00-07:00,21.428333282470703,60.0,60000.0 +7490,2025-06-09T16:34:00-07:00,21.433333079020183,60.0,60000.0 +7491,2025-06-09T16:35:00-07:00,21.4359992980957,60.0,60000.0 +7492,2025-06-09T16:36:00-07:00,21.439999262491863,60.0,60000.0 +7493,2025-06-09T16:37:00-07:00,21.43833351135254,60.0,60000.0 +7494,2025-06-09T16:38:00-07:00,21.421998596191408,60.0,60000.0 +7495,2025-06-09T16:39:00-07:00,21.426666259765625,60.0,60000.0 +7496,2025-06-09T16:40:00-07:00,21.433333079020183,60.0,60000.0 +7497,2025-06-09T16:41:00-07:00,21.439998626708984,60.0,60000.0 +7498,2025-06-09T16:42:00-07:00,21.439999262491863,60.0,60000.0 +7499,2025-06-09T16:43:00-07:00,21.439999262491863,60.0,60000.0 +7500,2025-06-09T16:44:00-07:00,21.44399948120117,60.0,60000.0 +7501,2025-06-09T16:45:00-07:00,21.44333267211914,60.0,60000.0 +7502,2025-06-09T16:46:00-07:00,21.436665852864582,60.0,60000.0 +7503,2025-06-09T16:47:00-07:00,21.44199905395508,60.0,60000.0 +7504,2025-06-09T16:48:00-07:00,21.44166628519694,60.0,60000.0 +7505,2025-06-09T16:49:00-07:00,21.43166669209798,60.0,60000.0 +7506,2025-06-09T16:50:00-07:00,21.427999877929686,60.0,60000.0 +7507,2025-06-09T16:51:00-07:00,21.428333282470703,60.0,60000.0 +7508,2025-06-09T16:52:00-07:00,21.433333079020183,60.0,60000.0 +7509,2025-06-09T16:53:00-07:00,21.43000030517578,60.0,60000.0 +7510,2025-06-09T16:54:00-07:00,21.43833287556966,60.0,60000.0 +7511,2025-06-09T16:55:00-07:00,21.436665852864582,60.0,60000.0 +7512,2025-06-09T16:56:00-07:00,21.437999725341797,60.0,60000.0 +7513,2025-06-09T16:57:00-07:00,21.43166669209798,60.0,60000.0 +7514,2025-06-09T16:58:00-07:00,21.434999465942383,60.0,60000.0 +7515,2025-06-09T16:59:00-07:00,21.425999450683594,60.0,60000.0 +7516,2025-06-09T17:00:00-07:00,21.433333079020183,60.0,60000.0 +7517,2025-06-09T17:01:00-07:00,21.441665649414062,60.0,60000.0 +7518,2025-06-09T17:02:00-07:00,21.44199905395508,60.0,60000.0 +7519,2025-06-09T17:03:00-07:00,21.436665852864582,60.0,60000.0 +7520,2025-06-09T17:04:00-07:00,21.441665649414062,60.0,60000.0 +7521,2025-06-09T17:05:00-07:00,21.44199905395508,60.0,60000.0 +7522,2025-06-09T17:06:00-07:00,21.44499969482422,60.0,60000.0 +7523,2025-06-09T17:07:00-07:00,21.44499969482422,60.0,60000.0 +7524,2025-06-09T17:08:00-07:00,21.439999389648438,60.0,60000.0 +7525,2025-06-09T17:09:00-07:00,21.437141963413783,60.0,60000.0 +7526,2025-06-09T17:10:00-07:00,21.434999465942383,60.0,60000.0 +7527,2025-06-09T17:11:00-07:00,21.445999908447266,60.0,60000.0 +7528,2025-06-09T17:12:00-07:00,21.458332697550457,60.0,60000.0 +7529,2025-06-09T17:13:00-07:00,21.4499994913737,60.0,60000.0 +7530,2025-06-09T17:14:00-07:00,21.450000762939453,60.0,60000.0 +7531,2025-06-09T17:15:00-07:00,21.450000762939453,60.0,60000.0 +7532,2025-06-09T17:16:00-07:00,21.448333740234375,60.0,60000.0 +7533,2025-06-09T17:17:00-07:00,21.454000091552736,60.0,60000.0 +7534,2025-06-09T17:18:00-07:00,21.470000584920246,60.0,60000.0 +7535,2025-06-09T17:19:00-07:00,21.470001220703125,60.0,60000.0 +7536,2025-06-09T17:20:00-07:00,21.455999755859374,60.0,60000.0 +7537,2025-06-09T17:21:00-07:00,21.446666717529297,60.0,60000.0 +7538,2025-06-09T17:22:00-07:00,21.43833287556966,60.0,60000.0 +7539,2025-06-09T17:23:00-07:00,21.421998596191408,60.0,60000.0 +7540,2025-06-09T17:24:00-07:00,21.43000030517578,60.0,60000.0 +7541,2025-06-09T17:25:00-07:00,21.426666259765625,60.0,60000.0 +7542,2025-06-09T17:26:00-07:00,21.426666259765625,60.0,60000.0 +7543,2025-06-09T17:27:00-07:00,21.421998596191408,60.0,60000.0 +7544,2025-06-09T17:28:00-07:00,21.428332646687824,60.0,60000.0 +7545,2025-06-09T17:29:00-07:00,21.428332646687824,60.0,60000.0 +7546,2025-06-09T17:30:00-07:00,21.4239990234375,60.0,60000.0 +7547,2025-06-09T17:31:00-07:00,21.433333079020183,60.0,60000.0 +7548,2025-06-09T17:32:00-07:00,21.439999262491863,60.0,60000.0 +7549,2025-06-09T17:33:00-07:00,21.450000762939453,60.0,60000.0 +7550,2025-06-09T17:34:00-07:00,21.448333104451496,60.0,60000.0 +7551,2025-06-09T17:35:00-07:00,21.451667149861652,60.0,60000.0 +7552,2025-06-09T17:36:00-07:00,21.452000427246094,60.0,60000.0 +7553,2025-06-09T17:37:00-07:00,21.451429094587052,60.0,60000.0 +7554,2025-06-09T17:38:00-07:00,21.456666310628254,60.0,60000.0 +7555,2025-06-09T17:39:00-07:00,21.466000366210938,60.0,60000.0 +7556,2025-06-09T17:40:00-07:00,21.459999084472656,60.0,60000.0 +7557,2025-06-09T17:41:00-07:00,21.46500015258789,60.0,60000.0 +7558,2025-06-09T17:42:00-07:00,21.481999969482423,60.0,60000.0 +7559,2025-06-09T17:43:00-07:00,21.485000610351562,60.0,60000.0 +7560,2025-06-09T17:44:00-07:00,21.476666768391926,60.0,60000.0 +7561,2025-06-09T17:45:00-07:00,21.46199951171875,60.0,60000.0 +7562,2025-06-09T17:46:00-07:00,21.450000127156574,60.0,60000.0 +7563,2025-06-09T17:47:00-07:00,21.448333740234375,60.0,60000.0 +7564,2025-06-09T17:48:00-07:00,21.455999755859374,60.0,60000.0 +7565,2025-06-09T17:49:00-07:00,21.461666742960613,60.0,60000.0 +7566,2025-06-09T17:50:00-07:00,21.46500015258789,60.0,60000.0 +7567,2025-06-09T17:51:00-07:00,21.457999420166015,60.0,60000.0 +7568,2025-06-09T17:52:00-07:00,21.4499994913737,60.0,60000.0 +7569,2025-06-09T17:53:00-07:00,21.44333267211914,60.0,60000.0 +7570,2025-06-09T17:54:00-07:00,21.439999389648438,60.0,60000.0 +7571,2025-06-09T17:55:00-07:00,21.44166628519694,60.0,60000.0 +7572,2025-06-09T17:56:00-07:00,21.43166669209798,60.0,60000.0 +7573,2025-06-09T17:57:00-07:00,21.41199951171875,60.0,60000.0 +7574,2025-06-09T17:58:00-07:00,21.406667073567707,60.0,60000.0 +7575,2025-06-09T17:59:00-07:00,21.395000457763672,60.0,60000.0 +7576,2025-06-09T18:00:00-07:00,21.389999389648438,60.0,60000.0 +7577,2025-06-09T18:01:00-07:00,21.385000228881836,60.0,60000.0 +7578,2025-06-09T18:02:00-07:00,21.380000432332356,60.0,60000.0 +7579,2025-06-09T18:03:00-07:00,21.3760009765625,60.0,60000.0 +7580,2025-06-09T18:04:00-07:00,21.371665954589844,60.0,60000.0 +7581,2025-06-09T18:05:00-07:00,21.366666158040363,60.0,60000.0 +7582,2025-06-09T18:06:00-07:00,21.365999603271483,60.0,60000.0 +7583,2025-06-09T18:07:00-07:00,21.368332544962566,60.0,60000.0 +7584,2025-06-09T18:08:00-07:00,21.371665954589844,60.0,60000.0 +7585,2025-06-09T18:09:00-07:00,21.373999786376952,60.0,60000.0 +7586,2025-06-09T18:10:00-07:00,21.378334045410156,60.0,60000.0 +7587,2025-06-09T18:11:00-07:00,21.375,60.0,60000.0 +7588,2025-06-09T18:12:00-07:00,21.373999786376952,60.0,60000.0 +7589,2025-06-09T18:13:00-07:00,21.378334045410156,60.0,60000.0 +7590,2025-06-09T18:14:00-07:00,21.384999593098957,60.0,60000.0 +7591,2025-06-09T18:15:00-07:00,21.387999725341796,60.0,60000.0 +7592,2025-06-09T18:16:00-07:00,21.391666412353516,60.0,60000.0 +7593,2025-06-09T18:17:00-07:00,21.391666412353516,60.0,60000.0 +7594,2025-06-09T18:18:00-07:00,21.387999725341796,60.0,60000.0 +7595,2025-06-09T18:19:00-07:00,21.39666748046875,60.0,60000.0 +7596,2025-06-09T18:20:00-07:00,21.406667073567707,60.0,60000.0 +7597,2025-06-09T18:21:00-07:00,21.41599884033203,60.0,60000.0 +7598,2025-06-09T18:22:00-07:00,21.419998168945312,60.0,60000.0 +7599,2025-06-09T18:23:00-07:00,21.42166519165039,60.0,60000.0 +7600,2025-06-09T18:24:00-07:00,21.4239990234375,60.0,60000.0 +7601,2025-06-09T18:25:00-07:00,21.41333262125651,60.0,60000.0 +7602,2025-06-09T18:26:00-07:00,21.41333262125651,60.0,60000.0 +7603,2025-06-09T18:27:00-07:00,21.40999984741211,60.0,60000.0 +7604,2025-06-09T18:28:00-07:00,21.40833346048991,60.0,60000.0 +7605,2025-06-09T18:29:00-07:00,21.40999984741211,60.0,60000.0 +7606,2025-06-09T18:30:00-07:00,21.40999984741211,60.0,60000.0 +7607,2025-06-09T18:31:00-07:00,21.41199951171875,60.0,60000.0 +7608,2025-06-09T18:32:00-07:00,21.40999984741211,60.0,60000.0 +7609,2025-06-09T18:33:00-07:00,21.39833386739095,60.0,60000.0 +7610,2025-06-09T18:34:00-07:00,21.39800109863281,60.0,60000.0 +7611,2025-06-09T18:35:00-07:00,21.400001525878906,60.0,60000.0 +7612,2025-06-09T18:36:00-07:00,21.401667912801106,60.0,60000.0 +7613,2025-06-09T18:37:00-07:00,21.40400085449219,60.0,60000.0 +7614,2025-06-09T18:38:00-07:00,21.40333429972331,60.0,60000.0 +7615,2025-06-09T18:39:00-07:00,21.40999984741211,60.0,60000.0 +7616,2025-06-09T18:40:00-07:00,21.413999176025392,60.0,60000.0 +7617,2025-06-09T18:41:00-07:00,21.41999880472819,60.0,60000.0 +7618,2025-06-09T18:42:00-07:00,21.42166519165039,60.0,60000.0 +7619,2025-06-09T18:43:00-07:00,21.4239990234375,60.0,60000.0 +7620,2025-06-09T18:44:00-07:00,21.429999669392902,60.0,60000.0 +7621,2025-06-09T18:45:00-07:00,21.42166519165039,60.0,60000.0 +7622,2025-06-09T18:46:00-07:00,21.42599868774414,60.0,60000.0 +7623,2025-06-09T18:47:00-07:00,21.42166582743327,60.0,60000.0 +7624,2025-06-09T18:48:00-07:00,21.429999669392902,60.0,60000.0 +7625,2025-06-09T18:49:00-07:00,21.43000030517578,60.0,60000.0 +7626,2025-06-09T18:50:00-07:00,21.42166519165039,60.0,60000.0 +7627,2025-06-09T18:51:00-07:00,21.41666539510091,60.0,60000.0 +7628,2025-06-09T18:52:00-07:00,21.419998168945312,60.0,60000.0 +7629,2025-06-09T18:53:00-07:00,21.42333221435547,60.0,60000.0 +7630,2025-06-09T18:54:00-07:00,21.42166519165039,60.0,60000.0 +7631,2025-06-09T18:55:00-07:00,21.417999267578125,60.0,60000.0 +7632,2025-06-09T18:56:00-07:00,21.40999984741211,60.0,60000.0 +7633,2025-06-09T18:57:00-07:00,21.406667073567707,60.0,60000.0 +7634,2025-06-09T18:58:00-07:00,21.41199951171875,60.0,60000.0 +7635,2025-06-09T18:59:00-07:00,21.41499900817871,60.0,60000.0 +7636,2025-06-09T19:00:00-07:00,21.429999669392902,60.0,60000.0 +7637,2025-06-09T19:01:00-07:00,21.425999450683594,60.0,60000.0 +7638,2025-06-09T19:02:00-07:00,21.426666259765625,60.0,60000.0 +7639,2025-06-09T19:03:00-07:00,21.428333282470703,60.0,60000.0 +7640,2025-06-09T19:04:00-07:00,21.437998962402343,60.0,60000.0 +7641,2025-06-09T19:05:00-07:00,21.436665852864582,60.0,60000.0 +7642,2025-06-09T19:06:00-07:00,21.441665649414062,60.0,60000.0 +7643,2025-06-09T19:07:00-07:00,21.437998962402343,60.0,60000.0 +7644,2025-06-09T19:08:00-07:00,21.441665649414062,60.0,60000.0 +7645,2025-06-09T19:09:00-07:00,21.441665649414062,60.0,60000.0 +7646,2025-06-09T19:10:00-07:00,21.445999908447266,60.0,60000.0 +7647,2025-06-09T19:11:00-07:00,21.451667149861652,60.0,60000.0 +7648,2025-06-09T19:12:00-07:00,21.454999923706055,60.0,60000.0 +7649,2025-06-09T19:13:00-07:00,21.46199951171875,60.0,60000.0 +7650,2025-06-09T19:14:00-07:00,21.470000584920246,60.0,60000.0 +7651,2025-06-09T19:15:00-07:00,21.461666107177734,60.0,60000.0 +7652,2025-06-09T19:16:00-07:00,21.455999755859374,60.0,60000.0 +7653,2025-06-09T19:17:00-07:00,21.436665852864582,60.0,60000.0 +7654,2025-06-09T19:18:00-07:00,21.42333221435547,60.0,60000.0 +7655,2025-06-09T19:19:00-07:00,21.4239990234375,60.0,60000.0 +7656,2025-06-09T19:20:00-07:00,21.427142007010325,60.0,60000.0 +7657,2025-06-09T19:21:00-07:00,21.433333079020183,60.0,60000.0 +7658,2025-06-09T19:22:00-07:00,21.437998962402343,60.0,60000.0 +7659,2025-06-09T19:23:00-07:00,21.43166669209798,60.0,60000.0 +7660,2025-06-09T19:24:00-07:00,21.439999262491863,60.0,60000.0 +7661,2025-06-09T19:25:00-07:00,21.448000335693358,60.0,60000.0 +7662,2025-06-09T19:26:00-07:00,21.44333267211914,60.0,60000.0 +7663,2025-06-09T19:27:00-07:00,21.451666514078777,60.0,60000.0 +7664,2025-06-09T19:28:00-07:00,21.452000427246094,60.0,60000.0 +7665,2025-06-09T19:29:00-07:00,21.456666310628254,60.0,60000.0 +7666,2025-06-09T19:30:00-07:00,21.461666742960613,60.0,60000.0 +7667,2025-06-09T19:31:00-07:00,21.47000045776367,60.0,60000.0 +7668,2025-06-09T19:32:00-07:00,21.50666681925456,60.0,60000.0 +7669,2025-06-09T19:33:00-07:00,21.53000005086263,60.0,60000.0 +7670,2025-06-09T19:34:00-07:00,21.544000244140626,60.0,60000.0 +7671,2025-06-09T19:35:00-07:00,21.549999237060547,60.0,60000.0 +7672,2025-06-09T19:36:00-07:00,21.548332850138348,60.0,60000.0 +7673,2025-06-09T19:37:00-07:00,21.560001373291016,60.0,60000.0 +7674,2025-06-09T19:38:00-07:00,21.565000534057617,60.0,60000.0 +7675,2025-06-09T19:39:00-07:00,21.575000762939453,60.0,60000.0 +7676,2025-06-09T19:40:00-07:00,21.58800048828125,60.0,60000.0 +7677,2025-06-09T19:41:00-07:00,21.60333251953125,60.0,60000.0 +7678,2025-06-09T19:42:00-07:00,21.610000610351562,60.0,60000.0 +7679,2025-06-09T19:43:00-07:00,21.599999237060548,60.0,60000.0 +7680,2025-06-09T19:44:00-07:00,21.599999109903973,60.0,60000.0 +7681,2025-06-09T19:45:00-07:00,21.598332087198894,60.0,60000.0 +7682,2025-06-09T19:46:00-07:00,21.58800048828125,60.0,60000.0 +7683,2025-06-09T19:47:00-07:00,21.58666737874349,60.0,60000.0 +7684,2025-06-09T19:48:00-07:00,21.59833272298177,60.0,60000.0 +7685,2025-06-09T19:49:00-07:00,21.60199890136719,60.0,60000.0 +7686,2025-06-09T19:50:00-07:00,21.609999974568684,60.0,60000.0 +7687,2025-06-09T19:51:00-07:00,21.619999567667644,60.0,60000.0 +7688,2025-06-09T19:52:00-07:00,21.626667022705078,60.0,60000.0 +7689,2025-06-09T19:53:00-07:00,21.637999725341796,60.0,60000.0 +7690,2025-06-09T19:54:00-07:00,21.65333429972331,60.0,60000.0 +7691,2025-06-09T19:55:00-07:00,21.66999880472819,60.0,60000.0 +7692,2025-06-09T19:56:00-07:00,21.68000030517578,60.0,60000.0 +7693,2025-06-09T19:57:00-07:00,21.69333267211914,60.0,60000.0 +7694,2025-06-09T19:58:00-07:00,21.706666946411133,60.0,60000.0 +7695,2025-06-09T19:59:00-07:00,21.716000366210938,60.0,60000.0 +7696,2025-06-09T20:00:00-07:00,21.723333994547527,60.0,60000.0 +7697,2025-06-09T20:01:00-07:00,21.729999542236328,60.0,60000.0 +7698,2025-06-09T20:02:00-07:00,21.740001678466797,60.0,60000.0 +7699,2025-06-09T20:03:00-07:00,21.7433344523112,60.0,60000.0 +7700,2025-06-09T20:04:00-07:00,21.7483336130778,60.0,60000.0 +7701,2025-06-09T20:05:00-07:00,21.746000671386717,60.0,60000.0 +7702,2025-06-09T20:06:00-07:00,21.7450008392334,60.0,60000.0 +7703,2025-06-09T20:07:00-07:00,21.75,60.0,60000.0 +7704,2025-06-09T20:08:00-07:00,21.765999603271485,60.0,60000.0 +7705,2025-06-09T20:09:00-07:00,21.76333236694336,60.0,60000.0 +7706,2025-06-09T20:10:00-07:00,21.766666412353516,60.0,60000.0 +7707,2025-06-09T20:11:00-07:00,21.783998870849608,60.0,60000.0 +7708,2025-06-09T20:12:00-07:00,21.804999669392902,60.0,60000.0 +7709,2025-06-09T20:13:00-07:00,21.83166758219401,60.0,60000.0 +7710,2025-06-09T20:14:00-07:00,21.849999745686848,60.0,60000.0 +7711,2025-06-09T20:15:00-07:00,21.86833318074544,60.0,60000.0 +7712,2025-06-09T20:16:00-07:00,21.883333841959637,60.0,60000.0 +7713,2025-06-09T20:17:00-07:00,21.9,60.0,60000.0 +7714,2025-06-09T20:18:00-07:00,21.91666603088379,60.0,60000.0 +7715,2025-06-09T20:19:00-07:00,21.934999465942383,60.0,60000.0 +7716,2025-06-09T20:20:00-07:00,21.94199981689453,60.0,60000.0 +7717,2025-06-09T20:21:00-07:00,21.953332901000977,60.0,60000.0 +7718,2025-06-09T20:22:00-07:00,21.974999745686848,60.0,60000.0 +7719,2025-06-09T20:23:00-07:00,21.990000915527343,60.0,60000.0 +7720,2025-06-09T20:24:00-07:00,21.996667226155598,60.0,60000.0 +7721,2025-06-09T20:25:00-07:00,22.0049991607666,60.0,60000.0 +7722,2025-06-09T20:26:00-07:00,22.007998657226562,60.0,60000.0 +7723,2025-06-09T20:27:00-07:00,22.018332799275715,60.0,60000.0 +7724,2025-06-09T20:28:00-07:00,22.014999389648438,60.0,60000.0 +7725,2025-06-09T20:29:00-07:00,22.00599899291992,60.0,60000.0 +7726,2025-06-09T20:30:00-07:00,21.9933344523112,60.0,60000.0 +7727,2025-06-09T20:31:00-07:00,21.978333791097004,60.0,60000.0 +7728,2025-06-09T20:32:00-07:00,21.956666946411133,60.0,60000.0 +7729,2025-06-09T20:33:00-07:00,21.929999033610027,60.0,60000.0 +7730,2025-06-09T20:34:00-07:00,21.91999880472819,60.0,60000.0 +7731,2025-06-09T20:35:00-07:00,21.913999176025392,60.0,60000.0 +7732,2025-06-09T20:36:00-07:00,21.90999984741211,60.0,60000.0 +7733,2025-06-09T20:37:00-07:00,21.90833346048991,60.0,60000.0 +7734,2025-06-09T20:38:00-07:00,21.900000762939452,60.0,60000.0 +7735,2025-06-09T20:39:00-07:00,21.90333429972331,60.0,60000.0 +7736,2025-06-09T20:40:00-07:00,21.90833346048991,60.0,60000.0 +7737,2025-06-09T20:41:00-07:00,21.908000183105468,60.0,60000.0 +7738,2025-06-09T20:42:00-07:00,21.91166623433431,60.0,60000.0 +7739,2025-06-09T20:43:00-07:00,21.91333262125651,60.0,60000.0 +7740,2025-06-09T20:44:00-07:00,21.921999359130858,60.0,60000.0 +7741,2025-06-09T20:45:00-07:00,21.933333079020183,60.0,60000.0 +7742,2025-06-09T20:46:00-07:00,21.936665852864582,60.0,60000.0 +7743,2025-06-09T20:47:00-07:00,21.939999389648438,60.0,60000.0 +7744,2025-06-09T20:48:00-07:00,21.94499969482422,60.0,60000.0 +7745,2025-06-09T20:49:00-07:00,21.94499969482422,60.0,60000.0 +7746,2025-06-09T20:50:00-07:00,21.94199905395508,60.0,60000.0 +7747,2025-06-09T20:51:00-07:00,21.928332646687824,60.0,60000.0 +7748,2025-06-09T20:52:00-07:00,21.91833241780599,60.0,60000.0 +7749,2025-06-09T20:53:00-07:00,21.900000762939452,60.0,60000.0 +7750,2025-06-09T20:54:00-07:00,21.889999389648438,60.0,60000.0 +7751,2025-06-09T20:55:00-07:00,21.886666615804035,60.0,60000.0 +7752,2025-06-09T20:56:00-07:00,21.887999725341796,60.0,60000.0 +7753,2025-06-09T20:57:00-07:00,21.90333302815755,60.0,60000.0 +7754,2025-06-09T20:58:00-07:00,21.91666603088379,60.0,60000.0 +7755,2025-06-09T20:59:00-07:00,21.925999450683594,60.0,60000.0 +7756,2025-06-09T21:00:00-07:00,21.938570840018137,60.0,60000.0 +7757,2025-06-09T21:01:00-07:00,21.951667149861652,60.0,60000.0 +7758,2025-06-09T21:02:00-07:00,21.95999984741211,60.0,60000.0 +7759,2025-06-09T21:03:00-07:00,21.97166697184245,60.0,60000.0 +7760,2025-06-09T21:04:00-07:00,21.97833315531413,60.0,60000.0 +7761,2025-06-09T21:05:00-07:00,21.984000396728515,60.0,60000.0 +7762,2025-06-09T21:06:00-07:00,21.991668065388996,60.0,60000.0 +7763,2025-06-09T21:07:00-07:00,22.0016663869222,60.0,60000.0 +7764,2025-06-09T21:08:00-07:00,21.996000671386717,60.0,60000.0 +7765,2025-06-09T21:09:00-07:00,22.003332773844402,60.0,60000.0 +7766,2025-06-09T21:10:00-07:00,22.0066655476888,60.0,60000.0 +7767,2025-06-09T21:11:00-07:00,22.009999084472657,60.0,60000.0 +7768,2025-06-09T21:12:00-07:00,22.014999389648438,60.0,60000.0 +7769,2025-06-09T21:13:00-07:00,22.023332595825195,60.0,60000.0 +7770,2025-06-09T21:14:00-07:00,22.027999114990234,60.0,60000.0 +7771,2025-06-09T21:15:00-07:00,22.024999618530273,60.0,60000.0 +7772,2025-06-09T21:16:00-07:00,22.026666005452473,60.0,60000.0 +7773,2025-06-09T21:17:00-07:00,22.027999114990234,60.0,60000.0 +7774,2025-06-09T21:18:00-07:00,22.02166684468587,60.0,60000.0 +7775,2025-06-09T21:19:00-07:00,22.02166684468587,60.0,60000.0 +7776,2025-06-09T21:20:00-07:00,22.020000457763672,60.0,60000.0 +7777,2025-06-09T21:21:00-07:00,22.021666208902996,60.0,60000.0 +7778,2025-06-09T21:22:00-07:00,22.014999389648438,60.0,60000.0 +7779,2025-06-09T21:23:00-07:00,22.009999084472657,60.0,60000.0 +7780,2025-06-09T21:24:00-07:00,22.018333435058594,60.0,60000.0 +7781,2025-06-09T21:25:00-07:00,22.02833302815755,60.0,60000.0 +7782,2025-06-09T21:26:00-07:00,22.04000015258789,60.0,60000.0 +7783,2025-06-09T21:27:00-07:00,22.041667302449543,60.0,60000.0 +7784,2025-06-09T21:28:00-07:00,22.03499984741211,60.0,60000.0 +7785,2025-06-09T21:29:00-07:00,22.025999450683592,60.0,60000.0 +7786,2025-06-09T21:30:00-07:00,22.024999618530273,60.0,60000.0 +7787,2025-06-09T21:31:00-07:00,22.028332392374676,60.0,60000.0 +7788,2025-06-09T21:32:00-07:00,22.019999694824218,60.0,60000.0 +7789,2025-06-09T21:33:00-07:00,22.0016663869222,60.0,60000.0 +7790,2025-06-09T21:34:00-07:00,21.9983336130778,60.0,60000.0 +7791,2025-06-09T21:35:00-07:00,22.003999328613283,60.0,60000.0 +7792,2025-06-09T21:36:00-07:00,22.009998321533203,60.0,60000.0 +7793,2025-06-09T21:37:00-07:00,22.009998321533203,60.0,60000.0 +7794,2025-06-09T21:38:00-07:00,22.01399917602539,60.0,60000.0 +7795,2025-06-09T21:39:00-07:00,22.01333236694336,60.0,60000.0 +7796,2025-06-09T21:40:00-07:00,22.02166684468587,60.0,60000.0 +7797,2025-06-09T21:41:00-07:00,22.023999786376955,60.0,60000.0 +7798,2025-06-09T21:42:00-07:00,22.028332392374676,60.0,60000.0 +7799,2025-06-09T21:43:00-07:00,22.029998779296875,60.0,60000.0 +7800,2025-06-09T21:44:00-07:00,22.035999298095703,60.0,60000.0 +7801,2025-06-09T21:45:00-07:00,22.03333282470703,60.0,60000.0 +7802,2025-06-09T21:46:00-07:00,22.040000279744465,60.0,60000.0 +7803,2025-06-09T21:47:00-07:00,22.040000279744465,60.0,60000.0 +7804,2025-06-09T21:48:00-07:00,22.049999237060547,60.0,60000.0 +7805,2025-06-09T21:49:00-07:00,22.05500094095866,60.0,60000.0 +7806,2025-06-09T21:50:00-07:00,22.061667760213215,60.0,60000.0 +7807,2025-06-09T21:51:00-07:00,22.072000122070314,60.0,60000.0 +7808,2025-06-09T21:52:00-07:00,22.06999969482422,60.0,60000.0 +7809,2025-06-09T21:53:00-07:00,22.065000534057617,60.0,60000.0 +7810,2025-06-09T21:54:00-07:00,22.0640007019043,60.0,60000.0 +7811,2025-06-09T21:55:00-07:00,22.070000330607098,60.0,60000.0 +7812,2025-06-09T21:56:00-07:00,22.073334376017254,60.0,60000.0 +7813,2025-06-09T21:57:00-07:00,22.07400131225586,60.0,60000.0 +7814,2025-06-09T21:58:00-07:00,22.070000330607098,60.0,60000.0 +7815,2025-06-09T21:59:00-07:00,22.075000762939453,60.0,60000.0 +7816,2025-06-09T22:00:00-07:00,22.080001831054688,60.0,60000.0 +7817,2025-06-09T22:01:00-07:00,22.07833480834961,60.0,60000.0 +7818,2025-06-09T22:02:00-07:00,22.08500099182129,60.0,60000.0 +7819,2025-06-09T22:03:00-07:00,22.081668217976887,60.0,60000.0 +7820,2025-06-09T22:04:00-07:00,22.07666778564453,60.0,60000.0 +7821,2025-06-09T22:05:00-07:00,22.073333740234375,60.0,60000.0 +7822,2025-06-09T22:06:00-07:00,22.072000122070314,60.0,60000.0 +7823,2025-06-09T22:07:00-07:00,22.075000762939453,60.0,60000.0 +7824,2025-06-09T22:08:00-07:00,22.065000534057617,60.0,60000.0 +7825,2025-06-09T22:09:00-07:00,22.0640007019043,60.0,60000.0 +7826,2025-06-09T22:10:00-07:00,22.058334350585938,60.0,60000.0 +7827,2025-06-09T22:11:00-07:00,22.05666732788086,60.0,60000.0 +7828,2025-06-09T22:12:00-07:00,22.060001373291016,60.0,60000.0 +7829,2025-06-09T22:13:00-07:00,22.058334350585938,60.0,60000.0 +7830,2025-06-09T22:14:00-07:00,22.05666732788086,60.0,60000.0 +7831,2025-06-09T22:15:00-07:00,22.060001373291016,60.0,60000.0 +7832,2025-06-09T22:16:00-07:00,22.058334350585938,60.0,60000.0 +7833,2025-06-09T22:17:00-07:00,22.063334147135418,60.0,60000.0 +7834,2025-06-09T22:18:00-07:00,22.072000122070314,60.0,60000.0 +7835,2025-06-09T22:19:00-07:00,22.076667149861652,60.0,60000.0 +7836,2025-06-09T22:20:00-07:00,22.09166717529297,60.0,60000.0 +7837,2025-06-09T22:21:00-07:00,22.10399932861328,60.0,60000.0 +7838,2025-06-09T22:22:00-07:00,22.118332544962566,60.0,60000.0 +7839,2025-06-09T22:23:00-07:00,22.119999567667644,60.0,60000.0 +7840,2025-06-09T22:24:00-07:00,22.11999969482422,60.0,60000.0 +7841,2025-06-09T22:25:00-07:00,22.116666158040363,60.0,60000.0 +7842,2025-06-09T22:26:00-07:00,22.11833381652832,60.0,60000.0 +7843,2025-06-09T22:27:00-07:00,22.105998992919922,60.0,60000.0 +7844,2025-06-09T22:28:00-07:00,22.093333562215168,60.0,60000.0 +7845,2025-06-09T22:29:00-07:00,22.081668217976887,60.0,60000.0 +7846,2025-06-09T22:30:00-07:00,22.072000885009764,60.0,60000.0 +7847,2025-06-09T22:31:00-07:00,22.05833371480306,60.0,60000.0 +7848,2025-06-09T22:32:00-07:00,22.041666666666668,60.0,60000.0 +7849,2025-06-09T22:33:00-07:00,22.023999786376955,60.0,60000.0 +7850,2025-06-09T22:34:00-07:00,22.00833257039388,60.0,60000.0 +7851,2025-06-09T22:35:00-07:00,21.990000406901043,60.0,60000.0 +7852,2025-06-09T22:36:00-07:00,21.966000366210938,60.0,60000.0 +7853,2025-06-09T22:37:00-07:00,21.94166628519694,60.0,60000.0 +7854,2025-06-09T22:38:00-07:00,21.918333053588867,60.0,60000.0 +7855,2025-06-09T22:39:00-07:00,21.892000579833983,60.0,60000.0 +7856,2025-06-09T22:40:00-07:00,21.873332977294922,60.0,60000.0 +7857,2025-06-09T22:41:00-07:00,21.85333315531413,60.0,60000.0 +7858,2025-06-09T22:42:00-07:00,21.83400115966797,60.0,60000.0 +7859,2025-06-09T22:43:00-07:00,21.813334147135418,60.0,60000.0 +7860,2025-06-09T22:44:00-07:00,21.796666463216145,60.0,60000.0 +7861,2025-06-09T22:45:00-07:00,21.777999114990234,60.0,60000.0 +7862,2025-06-09T22:46:00-07:00,21.764999389648438,60.0,60000.0 +7863,2025-06-09T22:47:00-07:00,21.75,60.0,60000.0 +7864,2025-06-09T22:48:00-07:00,21.7380012512207,60.0,60000.0 +7865,2025-06-09T22:49:00-07:00,21.726666768391926,60.0,60000.0 +7866,2025-06-09T22:50:00-07:00,21.713333129882812,60.0,60000.0 +7867,2025-06-09T22:51:00-07:00,21.69399948120117,60.0,60000.0 +7868,2025-06-09T22:52:00-07:00,21.684999465942383,60.0,60000.0 +7869,2025-06-09T22:53:00-07:00,21.66666539510091,60.0,60000.0 +7870,2025-06-09T22:54:00-07:00,21.65400085449219,60.0,60000.0 +7871,2025-06-09T22:55:00-07:00,21.641667048136394,60.0,60000.0 +7872,2025-06-09T22:56:00-07:00,21.628333409627277,60.0,60000.0 +7873,2025-06-09T22:57:00-07:00,21.62199935913086,60.0,60000.0 +7874,2025-06-09T22:58:00-07:00,21.608332951863606,60.0,60000.0 +7875,2025-06-09T22:59:00-07:00,21.594999313354492,60.0,60000.0 +7876,2025-06-09T23:00:00-07:00,21.58800048828125,60.0,60000.0 +7877,2025-06-09T23:01:00-07:00,21.571666717529297,60.0,60000.0 +7878,2025-06-09T23:02:00-07:00,21.563334147135418,60.0,60000.0 +7879,2025-06-09T23:03:00-07:00,21.55600051879883,60.0,60000.0 +7880,2025-06-09T23:04:00-07:00,21.549999872843426,60.0,60000.0 +7881,2025-06-09T23:05:00-07:00,21.541666666666668,60.0,60000.0 +7882,2025-06-09T23:06:00-07:00,21.533999633789062,60.0,60000.0 +7883,2025-06-09T23:07:00-07:00,21.52833302815755,60.0,60000.0 +7884,2025-06-09T23:08:00-07:00,21.516666412353516,60.0,60000.0 +7885,2025-06-09T23:09:00-07:00,21.507998657226562,60.0,60000.0 +7886,2025-06-09T23:10:00-07:00,21.496667226155598,60.0,60000.0 +7887,2025-06-09T23:11:00-07:00,21.48666763305664,60.0,60000.0 +7888,2025-06-09T23:12:00-07:00,21.480000305175782,60.0,60000.0 +7889,2025-06-09T23:13:00-07:00,21.470001220703125,60.0,60000.0 +7890,2025-06-09T23:14:00-07:00,21.463333129882812,60.0,60000.0 +7891,2025-06-09T23:15:00-07:00,21.454000091552736,60.0,60000.0 +7892,2025-06-09T23:16:00-07:00,21.44333330790202,60.0,60000.0 +7893,2025-06-09T23:17:00-07:00,21.433333079020183,60.0,60000.0 +7894,2025-06-09T23:18:00-07:00,21.421999359130858,60.0,60000.0 +7895,2025-06-09T23:19:00-07:00,21.41666603088379,60.0,60000.0 +7896,2025-06-09T23:20:00-07:00,21.39833386739095,60.0,60000.0 +7897,2025-06-09T23:21:00-07:00,21.394000244140624,60.0,60000.0 +7898,2025-06-09T23:22:00-07:00,21.385000228881836,60.0,60000.0 +7899,2025-06-09T23:23:00-07:00,21.378333409627277,60.0,60000.0 +7900,2025-06-09T23:24:00-07:00,21.368332544962566,60.0,60000.0 +7901,2025-06-09T23:25:00-07:00,21.355999755859376,60.0,60000.0 +7902,2025-06-09T23:26:00-07:00,21.354999542236328,60.0,60000.0 +7903,2025-06-09T23:27:00-07:00,21.34166653951009,60.0,60000.0 +7904,2025-06-09T23:28:00-07:00,21.33200149536133,60.0,60000.0 +7905,2025-06-09T23:29:00-07:00,21.32666778564453,60.0,60000.0 +7906,2025-06-09T23:30:00-07:00,21.31833330790202,60.0,60000.0 +7907,2025-06-09T23:31:00-07:00,21.30800018310547,60.0,60000.0 +7908,2025-06-09T23:32:00-07:00,21.301666259765625,60.0,60000.0 +7909,2025-06-09T23:33:00-07:00,21.293333053588867,60.0,60000.0 +7910,2025-06-09T23:34:00-07:00,21.294000244140626,60.0,60000.0 +7911,2025-06-09T23:35:00-07:00,21.28333282470703,60.0,60000.0 +7912,2025-06-09T23:36:00-07:00,21.274999618530273,60.0,60000.0 +7913,2025-06-09T23:37:00-07:00,21.26199951171875,60.0,60000.0 +7914,2025-06-09T23:38:00-07:00,21.2516663869222,60.0,60000.0 +7915,2025-06-09T23:39:00-07:00,21.2483336130778,60.0,60000.0 +7916,2025-06-09T23:40:00-07:00,21.242001342773438,60.0,60000.0 +7917,2025-06-09T23:41:00-07:00,21.233333587646484,60.0,60000.0 +7918,2025-06-09T23:42:00-07:00,21.230000813802082,60.0,60000.0 +7919,2025-06-09T23:43:00-07:00,21.230000305175782,60.0,60000.0 +7920,2025-06-09T23:44:00-07:00,21.226666768391926,60.0,60000.0 +7921,2025-06-09T23:45:00-07:00,21.226666768391926,60.0,60000.0 +7922,2025-06-09T23:46:00-07:00,21.222000885009766,60.0,60000.0 +7923,2025-06-09T23:47:00-07:00,21.221667607625324,60.0,60000.0 +7924,2025-06-09T23:48:00-07:00,21.21666717529297,60.0,60000.0 +7925,2025-06-09T23:49:00-07:00,21.216000366210938,60.0,60000.0 +7926,2025-06-09T23:50:00-07:00,21.218334197998047,60.0,60000.0 +7927,2025-06-09T23:51:00-07:00,21.21666717529297,60.0,60000.0 +7928,2025-06-09T23:52:00-07:00,21.205999755859374,60.0,60000.0 +7929,2025-06-09T23:53:00-07:00,21.204999923706055,60.0,60000.0 +7930,2025-06-09T23:54:00-07:00,21.196667353312176,60.0,60000.0 +7931,2025-06-09T23:55:00-07:00,21.187999725341797,60.0,60000.0 +7932,2025-06-09T23:56:00-07:00,21.18666648864746,60.0,60000.0 +7933,2025-06-09T23:57:00-07:00,21.176666259765625,60.0,60000.0 +7934,2025-06-09T23:58:00-07:00,21.171998596191408,60.0,60000.0 +7935,2025-06-09T23:59:00-07:00,21.17166519165039,60.0,60000.0 +7936,2025-06-10T00:00:00-07:00,21.16166623433431,60.0,60000.0 +7937,2025-06-10T00:01:00-07:00,21.15999984741211,60.0,60000.0 +7938,2025-06-10T00:02:00-07:00,21.151667912801106,60.0,60000.0 +7939,2025-06-10T00:03:00-07:00,21.14833386739095,60.0,60000.0 +7940,2025-06-10T00:04:00-07:00,21.139999389648438,60.0,60000.0 +7941,2025-06-10T00:05:00-07:00,21.136666615804035,60.0,60000.0 +7942,2025-06-10T00:06:00-07:00,21.125,60.0,60000.0 +7943,2025-06-10T00:07:00-07:00,21.12199935913086,60.0,60000.0 +7944,2025-06-10T00:08:00-07:00,21.121666590372723,60.0,60000.0 +7945,2025-06-10T00:09:00-07:00,21.116666158040363,60.0,60000.0 +7946,2025-06-10T00:10:00-07:00,21.112000274658204,60.0,60000.0 +7947,2025-06-10T00:11:00-07:00,21.108332951863606,60.0,60000.0 +7948,2025-06-10T00:12:00-07:00,21.10166613260905,60.0,60000.0 +7949,2025-06-10T00:13:00-07:00,21.093999481201173,60.0,60000.0 +7950,2025-06-10T00:14:00-07:00,21.09166653951009,60.0,60000.0 +7951,2025-06-10T00:15:00-07:00,21.08333460489909,60.0,60000.0 +7952,2025-06-10T00:16:00-07:00,21.084000396728516,60.0,60000.0 +7953,2025-06-10T00:17:00-07:00,21.07833480834961,60.0,60000.0 +7954,2025-06-10T00:18:00-07:00,21.073334376017254,60.0,60000.0 +7955,2025-06-10T00:19:00-07:00,21.068000030517577,60.0,60000.0 +7956,2025-06-10T00:20:00-07:00,21.060001373291016,60.0,60000.0 +7957,2025-06-10T00:21:00-07:00,21.05714362008231,60.0,60000.0 +7958,2025-06-10T00:22:00-07:00,21.054000091552734,60.0,60000.0 +7959,2025-06-10T00:23:00-07:00,21.058334350585938,60.0,60000.0 +7960,2025-06-10T00:24:00-07:00,21.060000737508137,60.0,60000.0 +7961,2025-06-10T00:25:00-07:00,21.062001037597657,60.0,60000.0 +7962,2025-06-10T00:26:00-07:00,21.066666920979817,60.0,60000.0 +7963,2025-06-10T00:27:00-07:00,21.06999969482422,60.0,60000.0 +7964,2025-06-10T00:28:00-07:00,21.06999969482422,60.0,60000.0 +7965,2025-06-10T00:29:00-07:00,21.065000534057617,60.0,60000.0 +7966,2025-06-10T00:30:00-07:00,21.066666920979817,60.0,60000.0 +7967,2025-06-10T00:31:00-07:00,21.05600051879883,60.0,60000.0 +7968,2025-06-10T00:32:00-07:00,21.045000076293945,60.0,60000.0 +7969,2025-06-10T00:33:00-07:00,21.040000279744465,60.0,60000.0 +7970,2025-06-10T00:34:00-07:00,21.029998779296875,60.0,60000.0 +7971,2025-06-10T00:35:00-07:00,21.024999618530273,60.0,60000.0 +7972,2025-06-10T00:36:00-07:00,21.016666412353516,60.0,60000.0 +7973,2025-06-10T00:37:00-07:00,21.009999084472657,60.0,60000.0 +7974,2025-06-10T00:38:00-07:00,21.00499979654948,60.0,60000.0 +7975,2025-06-10T00:39:00-07:00,20.990001042683918,60.0,60000.0 +7976,2025-06-10T00:40:00-07:00,20.984000396728515,60.0,60000.0 +7977,2025-06-10T00:41:00-07:00,20.976666768391926,60.0,60000.0 +7978,2025-06-10T00:42:00-07:00,20.96666717529297,60.0,60000.0 +7979,2025-06-10T00:43:00-07:00,20.963999938964843,60.0,60000.0 +7980,2025-06-10T00:44:00-07:00,20.951667149861652,60.0,60000.0 +7981,2025-06-10T00:45:00-07:00,20.94499969482422,60.0,60000.0 +7982,2025-06-10T00:46:00-07:00,20.93166669209798,60.0,60000.0 +7983,2025-06-10T00:47:00-07:00,20.925999450683594,60.0,60000.0 +7984,2025-06-10T00:48:00-07:00,20.92166519165039,60.0,60000.0 +7985,2025-06-10T00:49:00-07:00,20.91333262125651,60.0,60000.0 +7986,2025-06-10T00:50:00-07:00,20.906000518798827,60.0,60000.0 +7987,2025-06-10T00:51:00-07:00,20.905000686645508,60.0,60000.0 +7988,2025-06-10T00:52:00-07:00,20.895000457763672,60.0,60000.0 +7989,2025-06-10T00:53:00-07:00,20.882000732421876,60.0,60000.0 +7990,2025-06-10T00:54:00-07:00,20.87714331490653,60.0,60000.0 +7991,2025-06-10T00:55:00-07:00,20.876667022705078,60.0,60000.0 +7992,2025-06-10T00:56:00-07:00,20.869998931884766,60.0,60000.0 +7993,2025-06-10T00:57:00-07:00,20.863333384195965,60.0,60000.0 +7994,2025-06-10T00:58:00-07:00,20.861666361490887,60.0,60000.0 +7995,2025-06-10T00:59:00-07:00,20.849999237060548,60.0,60000.0 +7996,2025-06-10T01:00:00-07:00,20.84166653951009,60.0,60000.0 +7997,2025-06-10T01:01:00-07:00,20.83166758219401,60.0,60000.0 +7998,2025-06-10T01:02:00-07:00,20.828001403808592,60.0,60000.0 +7999,2025-06-10T01:03:00-07:00,20.823333740234375,60.0,60000.0 +8000,2025-06-10T01:04:00-07:00,20.821667353312176,60.0,60000.0 +8001,2025-06-10T01:05:00-07:00,20.813334147135418,60.0,60000.0 +8002,2025-06-10T01:06:00-07:00,20.813334147135418,60.0,60000.0 +8003,2025-06-10T01:07:00-07:00,20.808334350585938,60.0,60000.0 +8004,2025-06-10T01:08:00-07:00,20.801999664306642,60.0,60000.0 +8005,2025-06-10T01:09:00-07:00,20.801666259765625,60.0,60000.0 +8006,2025-06-10T01:10:00-07:00,20.796666463216145,60.0,60000.0 +8007,2025-06-10T01:11:00-07:00,20.78800048828125,60.0,60000.0 +8008,2025-06-10T01:12:00-07:00,20.781665802001953,60.0,60000.0 +8009,2025-06-10T01:13:00-07:00,20.774999618530273,60.0,60000.0 +8010,2025-06-10T01:14:00-07:00,20.768000030517577,60.0,60000.0 +8011,2025-06-10T01:15:00-07:00,20.768333435058594,60.0,60000.0 +8012,2025-06-10T01:16:00-07:00,20.76333236694336,60.0,60000.0 +8013,2025-06-10T01:17:00-07:00,20.76399917602539,60.0,60000.0 +8014,2025-06-10T01:18:00-07:00,20.759998321533203,60.0,60000.0 +8015,2025-06-10T01:19:00-07:00,20.75666618347168,60.0,60000.0 +8016,2025-06-10T01:20:00-07:00,20.753999328613283,60.0,60000.0 +8017,2025-06-10T01:21:00-07:00,20.75,60.0,60000.0 +8018,2025-06-10T01:22:00-07:00,20.7433344523112,60.0,60000.0 +8019,2025-06-10T01:23:00-07:00,20.73600082397461,60.0,60000.0 +8020,2025-06-10T01:24:00-07:00,20.731666564941406,60.0,60000.0 +8021,2025-06-10T01:25:00-07:00,20.731666564941406,60.0,60000.0 +8022,2025-06-10T01:26:00-07:00,20.731999969482423,60.0,60000.0 +8023,2025-06-10T01:27:00-07:00,20.726666768391926,60.0,60000.0 +8024,2025-06-10T01:28:00-07:00,20.723333994547527,60.0,60000.0 +8025,2025-06-10T01:29:00-07:00,20.71800079345703,60.0,60000.0 +8026,2025-06-10T01:30:00-07:00,20.713333129882812,60.0,60000.0 +8027,2025-06-10T01:31:00-07:00,20.709999084472656,60.0,60000.0 +8028,2025-06-10T01:32:00-07:00,20.705999755859374,60.0,60000.0 +8029,2025-06-10T01:33:00-07:00,20.708332697550457,60.0,60000.0 +8030,2025-06-10T01:34:00-07:00,20.703332901000977,60.0,60000.0 +8031,2025-06-10T01:35:00-07:00,20.700000762939453,60.0,60000.0 +8032,2025-06-10T01:36:00-07:00,20.704999923706055,60.0,60000.0 +8033,2025-06-10T01:37:00-07:00,20.704999923706055,60.0,60000.0 +8034,2025-06-10T01:38:00-07:00,20.695999908447266,60.0,60000.0 +8035,2025-06-10T01:39:00-07:00,20.689998626708984,60.0,60000.0 +8036,2025-06-10T01:40:00-07:00,20.68166669209798,60.0,60000.0 +8037,2025-06-10T01:41:00-07:00,20.6739990234375,60.0,60000.0 +8038,2025-06-10T01:42:00-07:00,20.678333282470703,60.0,60000.0 +8039,2025-06-10T01:43:00-07:00,20.67166519165039,60.0,60000.0 +8040,2025-06-10T01:44:00-07:00,20.66599884033203,60.0,60000.0 +8041,2025-06-10T01:45:00-07:00,20.66285651070731,60.0,60000.0 +8042,2025-06-10T01:46:00-07:00,20.65833346048991,60.0,60000.0 +8043,2025-06-10T01:47:00-07:00,20.652001190185548,60.0,60000.0 +8044,2025-06-10T01:48:00-07:00,20.648334503173828,60.0,60000.0 +8045,2025-06-10T01:49:00-07:00,20.63999993460519,60.0,60000.0 +8046,2025-06-10T01:50:00-07:00,20.632000732421876,60.0,60000.0 +8047,2025-06-10T01:51:00-07:00,20.625,60.0,60000.0 +8048,2025-06-10T01:52:00-07:00,20.625,60.0,60000.0 +8049,2025-06-10T01:53:00-07:00,20.615999603271483,60.0,60000.0 +8050,2025-06-10T01:54:00-07:00,20.609999974568684,60.0,60000.0 +8051,2025-06-10T01:55:00-07:00,20.608333587646484,60.0,60000.0 +8052,2025-06-10T01:56:00-07:00,20.597998809814452,60.0,60000.0 +8053,2025-06-10T01:57:00-07:00,20.593332926432293,60.0,60000.0 +8054,2025-06-10T01:58:00-07:00,20.59166653951009,60.0,60000.0 +8055,2025-06-10T01:59:00-07:00,20.586000823974608,60.0,60000.0 +8056,2025-06-10T02:00:00-07:00,20.581668217976887,60.0,60000.0 +8057,2025-06-10T02:01:00-07:00,20.57666778564453,60.0,60000.0 +8058,2025-06-10T02:02:00-07:00,20.568000030517577,60.0,60000.0 +8059,2025-06-10T02:03:00-07:00,20.566666920979817,60.0,60000.0 +8060,2025-06-10T02:04:00-07:00,20.56833330790202,60.0,60000.0 +8061,2025-06-10T02:05:00-07:00,20.568000030517577,60.0,60000.0 +8062,2025-06-10T02:06:00-07:00,20.56333351135254,60.0,60000.0 +8063,2025-06-10T02:07:00-07:00,20.55666732788086,60.0,60000.0 +8064,2025-06-10T02:08:00-07:00,20.55800018310547,60.0,60000.0 +8065,2025-06-10T02:09:00-07:00,20.55666732788086,60.0,60000.0 +8066,2025-06-10T02:10:00-07:00,20.553333282470703,60.0,60000.0 +8067,2025-06-10T02:11:00-07:00,20.55,60.0,60000.0 +8068,2025-06-10T02:12:00-07:00,20.544999440511067,60.0,60000.0 +8069,2025-06-10T02:13:00-07:00,20.536666870117188,60.0,60000.0 +8070,2025-06-10T02:14:00-07:00,20.529998779296875,60.0,60000.0 +8071,2025-06-10T02:15:00-07:00,20.526666005452473,60.0,60000.0 +8072,2025-06-10T02:16:00-07:00,20.523333231608074,60.0,60000.0 +8073,2025-06-10T02:17:00-07:00,20.522000122070313,60.0,60000.0 +8074,2025-06-10T02:18:00-07:00,20.520000457763672,60.0,60000.0 +8075,2025-06-10T02:19:00-07:00,20.521666208902996,60.0,60000.0 +8076,2025-06-10T02:20:00-07:00,20.520000457763672,60.0,60000.0 +8077,2025-06-10T02:21:00-07:00,20.519999694824218,60.0,60000.0 +8078,2025-06-10T02:22:00-07:00,20.516666412353516,60.0,60000.0 +8079,2025-06-10T02:23:00-07:00,20.509998957316082,60.0,60000.0 +8080,2025-06-10T02:24:00-07:00,20.5119987487793,60.0,60000.0 +8081,2025-06-10T02:25:00-07:00,20.503332773844402,60.0,60000.0 +8082,2025-06-10T02:26:00-07:00,20.4983336130778,60.0,60000.0 +8083,2025-06-10T02:27:00-07:00,20.5,60.0,60000.0 +8084,2025-06-10T02:28:00-07:00,20.48666763305664,60.0,60000.0 +8085,2025-06-10T02:29:00-07:00,20.48666763305664,60.0,60000.0 +8086,2025-06-10T02:30:00-07:00,20.48600082397461,60.0,60000.0 +8087,2025-06-10T02:31:00-07:00,20.480000178019207,60.0,60000.0 +8088,2025-06-10T02:32:00-07:00,20.473333994547527,60.0,60000.0 +8089,2025-06-10T02:33:00-07:00,20.472000885009766,60.0,60000.0 +8090,2025-06-10T02:34:00-07:00,20.468334197998047,60.0,60000.0 +8091,2025-06-10T02:35:00-07:00,20.463333129882812,60.0,60000.0 +8092,2025-06-10T02:36:00-07:00,20.463999938964843,60.0,60000.0 +8093,2025-06-10T02:37:00-07:00,20.463333129882812,60.0,60000.0 +8094,2025-06-10T02:38:00-07:00,20.461666107177734,60.0,60000.0 +8095,2025-06-10T02:39:00-07:00,20.46199951171875,60.0,60000.0 +8096,2025-06-10T02:40:00-07:00,20.458333333333332,60.0,60000.0 +8097,2025-06-10T02:41:00-07:00,20.453333536783855,60.0,60000.0 +8098,2025-06-10T02:42:00-07:00,20.448000335693358,60.0,60000.0 +8099,2025-06-10T02:43:00-07:00,20.441665649414062,60.0,60000.0 +8100,2025-06-10T02:44:00-07:00,20.436665852864582,60.0,60000.0 +8101,2025-06-10T02:45:00-07:00,20.44199905395508,60.0,60000.0 +8102,2025-06-10T02:46:00-07:00,20.441665649414062,60.0,60000.0 +8103,2025-06-10T02:47:00-07:00,20.439999262491863,60.0,60000.0 +8104,2025-06-10T02:48:00-07:00,20.439998626708984,60.0,60000.0 +8105,2025-06-10T02:49:00-07:00,20.43166669209798,60.0,60000.0 +8106,2025-06-10T02:50:00-07:00,20.423332850138348,60.0,60000.0 +8107,2025-06-10T02:51:00-07:00,20.41799850463867,60.0,60000.0 +8108,2025-06-10T02:52:00-07:00,20.40999984741211,60.0,60000.0 +8109,2025-06-10T02:53:00-07:00,20.40833346048991,60.0,60000.0 +8110,2025-06-10T02:54:00-07:00,20.40400085449219,60.0,60000.0 +8111,2025-06-10T02:55:00-07:00,20.405000686645508,60.0,60000.0 +8112,2025-06-10T02:56:00-07:00,20.40333429972331,60.0,60000.0 +8113,2025-06-10T02:57:00-07:00,20.40400085449219,60.0,60000.0 +8114,2025-06-10T02:58:00-07:00,20.393333435058594,60.0,60000.0 +8115,2025-06-10T02:59:00-07:00,20.391667048136394,60.0,60000.0 +8116,2025-06-10T03:00:00-07:00,20.387999725341796,60.0,60000.0 +8117,2025-06-10T03:01:00-07:00,20.387142726353236,60.0,60000.0 +8118,2025-06-10T03:02:00-07:00,20.380000432332356,60.0,60000.0 +8119,2025-06-10T03:03:00-07:00,20.376000213623048,60.0,60000.0 +8120,2025-06-10T03:04:00-07:00,20.373332977294922,60.0,60000.0 +8121,2025-06-10T03:05:00-07:00,20.371665954589844,60.0,60000.0 +8122,2025-06-10T03:06:00-07:00,20.365999603271483,60.0,60000.0 +8123,2025-06-10T03:07:00-07:00,20.366666158040363,60.0,60000.0 +8124,2025-06-10T03:08:00-07:00,20.361666997273762,60.0,60000.0 +8125,2025-06-10T03:09:00-07:00,20.360000610351562,60.0,60000.0 +8126,2025-06-10T03:10:00-07:00,20.354999542236328,60.0,60000.0 +8127,2025-06-10T03:11:00-07:00,20.351665496826172,60.0,60000.0 +8128,2025-06-10T03:12:00-07:00,20.347998809814452,60.0,60000.0 +8129,2025-06-10T03:13:00-07:00,20.34000015258789,60.0,60000.0 +8130,2025-06-10T03:14:00-07:00,20.33666737874349,60.0,60000.0 +8131,2025-06-10T03:15:00-07:00,20.34000015258789,60.0,60000.0 +8132,2025-06-10T03:16:00-07:00,20.34166653951009,60.0,60000.0 +8133,2025-06-10T03:17:00-07:00,20.34166653951009,60.0,60000.0 +8134,2025-06-10T03:18:00-07:00,20.33400115966797,60.0,60000.0 +8135,2025-06-10T03:19:00-07:00,20.33333460489909,60.0,60000.0 +8136,2025-06-10T03:20:00-07:00,20.323334376017254,60.0,60000.0 +8137,2025-06-10T03:21:00-07:00,20.318000030517577,60.0,60000.0 +8138,2025-06-10T03:22:00-07:00,20.310001373291016,60.0,60000.0 +8139,2025-06-10T03:23:00-07:00,20.30714362008231,60.0,60000.0 +8140,2025-06-10T03:24:00-07:00,20.299999237060547,60.0,60000.0 +8141,2025-06-10T03:25:00-07:00,20.303333918253582,60.0,60000.0 +8142,2025-06-10T03:26:00-07:00,20.296666463216145,60.0,60000.0 +8143,2025-06-10T03:27:00-07:00,20.294000244140626,60.0,60000.0 +8144,2025-06-10T03:28:00-07:00,20.298333485921223,60.0,60000.0 +8145,2025-06-10T03:29:00-07:00,20.293333689371746,60.0,60000.0 +8146,2025-06-10T03:30:00-07:00,20.290000915527344,60.0,60000.0 +8147,2025-06-10T03:31:00-07:00,20.286666870117188,60.0,60000.0 +8148,2025-06-10T03:32:00-07:00,20.28333282470703,60.0,60000.0 +8149,2025-06-10T03:33:00-07:00,20.27999954223633,60.0,60000.0 +8150,2025-06-10T03:34:00-07:00,20.27166684468587,60.0,60000.0 +8151,2025-06-10T03:35:00-07:00,20.264999389648438,60.0,60000.0 +8152,2025-06-10T03:36:00-07:00,20.2619987487793,60.0,60000.0 +8153,2025-06-10T03:37:00-07:00,20.258331934611004,60.0,60000.0 +8154,2025-06-10T03:38:00-07:00,20.2516663869222,60.0,60000.0 +8155,2025-06-10T03:39:00-07:00,20.24800033569336,60.0,60000.0 +8156,2025-06-10T03:40:00-07:00,20.246667226155598,60.0,60000.0 +8157,2025-06-10T03:41:00-07:00,20.23833465576172,60.0,60000.0 +8158,2025-06-10T03:42:00-07:00,20.23600082397461,60.0,60000.0 +8159,2025-06-10T03:43:00-07:00,20.221667607625324,60.0,60000.0 +8160,2025-06-10T03:44:00-07:00,20.221667607625324,60.0,60000.0 +8161,2025-06-10T03:45:00-07:00,20.222000885009766,60.0,60000.0 +8162,2025-06-10T03:46:00-07:00,20.21500015258789,60.0,60000.0 +8163,2025-06-10T03:47:00-07:00,20.213333129882812,60.0,60000.0 +8164,2025-06-10T03:48:00-07:00,20.200000762939453,60.0,60000.0 +8165,2025-06-10T03:49:00-07:00,20.19399948120117,60.0,60000.0 +8166,2025-06-10T03:50:00-07:00,20.191665649414062,60.0,60000.0 +8167,2025-06-10T03:51:00-07:00,20.19499969482422,60.0,60000.0 +8168,2025-06-10T03:52:00-07:00,20.19199905395508,60.0,60000.0 +8169,2025-06-10T03:53:00-07:00,20.191665649414062,60.0,60000.0 +8170,2025-06-10T03:54:00-07:00,20.196666717529297,60.0,60000.0 +8171,2025-06-10T03:55:00-07:00,20.19399948120117,60.0,60000.0 +8172,2025-06-10T03:56:00-07:00,20.198333104451496,60.0,60000.0 +8173,2025-06-10T03:57:00-07:00,20.196666081746418,60.0,60000.0 +8174,2025-06-10T03:58:00-07:00,20.19399948120117,60.0,60000.0 +8175,2025-06-10T03:59:00-07:00,20.19499969482422,60.0,60000.0 +8176,2025-06-10T04:00:00-07:00,20.189998626708984,60.0,60000.0 +8177,2025-06-10T04:01:00-07:00,20.189999389648438,60.0,60000.0 +8178,2025-06-10T04:02:00-07:00,20.18833287556966,60.0,60000.0 +8179,2025-06-10T04:03:00-07:00,20.189998626708984,60.0,60000.0 +8180,2025-06-10T04:04:00-07:00,20.1859992980957,60.0,60000.0 +8181,2025-06-10T04:05:00-07:00,20.183333079020183,60.0,60000.0 +8182,2025-06-10T04:06:00-07:00,20.179999033610027,60.0,60000.0 +8183,2025-06-10T04:07:00-07:00,20.177999877929686,60.0,60000.0 +8184,2025-06-10T04:08:00-07:00,20.174999237060547,60.0,60000.0 +8185,2025-06-10T04:09:00-07:00,20.179999669392902,60.0,60000.0 +8186,2025-06-10T04:10:00-07:00,20.171998596191408,60.0,60000.0 +8187,2025-06-10T04:11:00-07:00,20.16666539510091,60.0,60000.0 +8188,2025-06-10T04:12:00-07:00,20.15833346048991,60.0,60000.0 +8189,2025-06-10T04:13:00-07:00,20.152001190185548,60.0,60000.0 +8190,2025-06-10T04:14:00-07:00,20.150000890096027,60.0,60000.0 +8191,2025-06-10T04:15:00-07:00,20.150000254313152,60.0,60000.0 +8192,2025-06-10T04:16:00-07:00,20.15999984741211,60.0,60000.0 +8193,2025-06-10T04:17:00-07:00,20.155000686645508,60.0,60000.0 +8194,2025-06-10T04:18:00-07:00,20.155000686645508,60.0,60000.0 +8195,2025-06-10T04:19:00-07:00,20.150000762939452,60.0,60000.0 +8196,2025-06-10T04:20:00-07:00,20.14833386739095,60.0,60000.0 +8197,2025-06-10T04:21:00-07:00,20.141667048136394,60.0,60000.0 +8198,2025-06-10T04:22:00-07:00,20.144000244140624,60.0,60000.0 +8199,2025-06-10T04:23:00-07:00,20.136666615804035,60.0,60000.0 +8200,2025-06-10T04:24:00-07:00,20.133333841959637,60.0,60000.0 +8201,2025-06-10T04:25:00-07:00,20.130001068115234,60.0,60000.0 +8202,2025-06-10T04:26:00-07:00,20.130001068115234,60.0,60000.0 +8203,2025-06-10T04:27:00-07:00,20.130001068115234,60.0,60000.0 +8204,2025-06-10T04:28:00-07:00,20.130001068115234,60.0,60000.0 +8205,2025-06-10T04:29:00-07:00,20.130001068115234,60.0,60000.0 +8206,2025-06-10T04:30:00-07:00,20.128334045410156,60.0,60000.0 +8207,2025-06-10T04:31:00-07:00,20.126000213623048,60.0,60000.0 +8208,2025-06-10T04:32:00-07:00,20.125,60.0,60000.0 +8209,2025-06-10T04:33:00-07:00,20.125,60.0,60000.0 +8210,2025-06-10T04:34:00-07:00,20.123999786376952,60.0,60000.0 +8211,2025-06-10T04:35:00-07:00,20.126667022705078,60.0,60000.0 +8212,2025-06-10T04:36:00-07:00,20.125,60.0,60000.0 +8213,2025-06-10T04:37:00-07:00,20.12800064086914,60.0,60000.0 +8214,2025-06-10T04:38:00-07:00,20.126667022705078,60.0,60000.0 +8215,2025-06-10T04:39:00-07:00,20.125,60.0,60000.0 +8216,2025-06-10T04:40:00-07:00,20.12800064086914,60.0,60000.0 +8217,2025-06-10T04:41:00-07:00,20.126667022705078,60.0,60000.0 +8218,2025-06-10T04:42:00-07:00,20.128334045410156,60.0,60000.0 +8219,2025-06-10T04:43:00-07:00,20.117999267578124,60.0,60000.0 +8220,2025-06-10T04:44:00-07:00,20.114999771118164,60.0,60000.0 +8221,2025-06-10T04:45:00-07:00,20.116666158040363,60.0,60000.0 +8222,2025-06-10T04:46:00-07:00,20.115999603271483,60.0,60000.0 +8223,2025-06-10T04:47:00-07:00,20.116666158040363,60.0,60000.0 +8224,2025-06-10T04:48:00-07:00,20.106666564941406,60.0,60000.0 +8225,2025-06-10T04:49:00-07:00,20.10199890136719,60.0,60000.0 +8226,2025-06-10T04:50:00-07:00,20.09666570027669,60.0,60000.0 +8227,2025-06-10T04:51:00-07:00,20.08666737874349,60.0,60000.0 +8228,2025-06-10T04:52:00-07:00,20.078001403808592,60.0,60000.0 +8229,2025-06-10T04:53:00-07:00,20.075000762939453,60.0,60000.0 +8230,2025-06-10T04:54:00-07:00,20.06833330790202,60.0,60000.0 +8231,2025-06-10T04:55:00-07:00,20.05800094604492,60.0,60000.0 +8232,2025-06-10T04:56:00-07:00,20.05500030517578,60.0,60000.0 +8233,2025-06-10T04:57:00-07:00,20.05666732788086,60.0,60000.0 +8234,2025-06-10T04:58:00-07:00,20.052000427246092,60.0,60000.0 +8235,2025-06-10T04:59:00-07:00,20.049999237060547,60.0,60000.0 +8236,2025-06-10T05:00:00-07:00,20.041667302449543,60.0,60000.0 +8237,2025-06-10T05:01:00-07:00,20.03800048828125,60.0,60000.0 +8238,2025-06-10T05:02:00-07:00,20.031665802001953,60.0,60000.0 +8239,2025-06-10T05:03:00-07:00,20.028570447649276,60.0,60000.0 +8240,2025-06-10T05:04:00-07:00,20.025999450683592,60.0,60000.0 +8241,2025-06-10T05:05:00-07:00,20.019999821980793,60.0,60000.0 +8242,2025-06-10T05:06:00-07:00,20.00833257039388,60.0,60000.0 +8243,2025-06-10T05:07:00-07:00,20.003999328613283,60.0,60000.0 +8244,2025-06-10T05:08:00-07:00,20.003332773844402,60.0,60000.0 +8245,2025-06-10T05:09:00-07:00,20.0016663869222,60.0,60000.0 +8246,2025-06-10T05:10:00-07:00,20.003999328613283,60.0,60000.0 +8247,2025-06-10T05:11:00-07:00,20.009998957316082,60.0,60000.0 +8248,2025-06-10T05:12:00-07:00,19.9983336130778,60.0,60000.0 +8249,2025-06-10T05:13:00-07:00,19.996000671386717,60.0,60000.0 +8250,2025-06-10T05:14:00-07:00,19.991668065388996,60.0,60000.0 +8251,2025-06-10T05:15:00-07:00,19.991668065388996,60.0,60000.0 +8252,2025-06-10T05:16:00-07:00,19.996000671386717,60.0,60000.0 +8253,2025-06-10T05:17:00-07:00,19.991668065388996,60.0,60000.0 +8254,2025-06-10T05:18:00-07:00,19.990001042683918,60.0,60000.0 +8255,2025-06-10T05:19:00-07:00,19.992000579833984,60.0,60000.0 +8256,2025-06-10T05:20:00-07:00,19.990001678466797,60.0,60000.0 +8257,2025-06-10T05:21:00-07:00,19.976666768391926,60.0,60000.0 +8258,2025-06-10T05:22:00-07:00,19.979999542236328,60.0,60000.0 +8259,2025-06-10T05:23:00-07:00,19.978333791097004,60.0,60000.0 +8260,2025-06-10T05:24:00-07:00,19.968334197998047,60.0,60000.0 +8261,2025-06-10T05:25:00-07:00,19.96800079345703,60.0,60000.0 +8262,2025-06-10T05:26:00-07:00,19.96500015258789,60.0,60000.0 +8263,2025-06-10T05:27:00-07:00,19.968334197998047,60.0,60000.0 +8264,2025-06-10T05:28:00-07:00,19.96199951171875,60.0,60000.0 +8265,2025-06-10T05:29:00-07:00,19.956666310628254,60.0,60000.0 +8266,2025-06-10T05:30:00-07:00,19.946666717529297,60.0,60000.0 +8267,2025-06-10T05:31:00-07:00,19.945999908447266,60.0,60000.0 +8268,2025-06-10T05:32:00-07:00,19.938332239786785,60.0,60000.0 +8269,2025-06-10T05:33:00-07:00,19.934999465942383,60.0,60000.0 +8270,2025-06-10T05:34:00-07:00,19.925999450683594,60.0,60000.0 +8271,2025-06-10T05:35:00-07:00,19.926666259765625,60.0,60000.0 +8272,2025-06-10T05:36:00-07:00,19.92333221435547,60.0,60000.0 +8273,2025-06-10T05:37:00-07:00,19.91599884033203,60.0,60000.0 +8274,2025-06-10T05:38:00-07:00,19.918331782023113,60.0,60000.0 +8275,2025-06-10T05:39:00-07:00,19.91666539510091,60.0,60000.0 +8276,2025-06-10T05:40:00-07:00,19.91799850463867,60.0,60000.0 +8277,2025-06-10T05:41:00-07:00,19.91499900817871,60.0,60000.0 +8278,2025-06-10T05:42:00-07:00,19.90999984741211,60.0,60000.0 +8279,2025-06-10T05:43:00-07:00,19.91599884033203,60.0,60000.0 +8280,2025-06-10T05:44:00-07:00,19.906667073567707,60.0,60000.0 +8281,2025-06-10T05:45:00-07:00,19.90999984741211,60.0,60000.0 +8282,2025-06-10T05:46:00-07:00,19.908000183105468,60.0,60000.0 +8283,2025-06-10T05:47:00-07:00,19.90333429972331,60.0,60000.0 +8284,2025-06-10T05:48:00-07:00,19.906667073567707,60.0,60000.0 +8285,2025-06-10T05:49:00-07:00,19.900000762939452,60.0,60000.0 +8286,2025-06-10T05:50:00-07:00,19.893333435058594,60.0,60000.0 +8287,2025-06-10T05:51:00-07:00,19.885000228881836,60.0,60000.0 +8288,2025-06-10T05:52:00-07:00,19.881999969482422,60.0,60000.0 +8289,2025-06-10T05:53:00-07:00,19.883333841959637,60.0,60000.0 +8290,2025-06-10T05:54:00-07:00,19.880000432332356,60.0,60000.0 +8291,2025-06-10T05:55:00-07:00,19.876000213623048,60.0,60000.0 +8292,2025-06-10T05:56:00-07:00,19.875,60.0,60000.0 +8293,2025-06-10T05:57:00-07:00,19.871665954589844,60.0,60000.0 +8294,2025-06-10T05:58:00-07:00,19.871665954589844,60.0,60000.0 +8295,2025-06-10T05:59:00-07:00,19.865999603271483,60.0,60000.0 +8296,2025-06-10T06:00:00-07:00,19.861666997273762,60.0,60000.0 +8297,2025-06-10T06:01:00-07:00,19.85333251953125,60.0,60000.0 +8298,2025-06-10T06:02:00-07:00,19.84599914550781,60.0,60000.0 +8299,2025-06-10T06:03:00-07:00,19.84000015258789,60.0,60000.0 +8300,2025-06-10T06:04:00-07:00,19.83500099182129,60.0,60000.0 +8301,2025-06-10T06:05:00-07:00,19.83400115966797,60.0,60000.0 +8302,2025-06-10T06:06:00-07:00,19.83500099182129,60.0,60000.0 +8303,2025-06-10T06:07:00-07:00,19.83333460489909,60.0,60000.0 +8304,2025-06-10T06:08:00-07:00,19.830001831054688,60.0,60000.0 +8305,2025-06-10T06:09:00-07:00,19.82833480834961,60.0,60000.0 +8306,2025-06-10T06:10:00-07:00,19.825000762939453,60.0,60000.0 +8307,2025-06-10T06:11:00-07:00,19.822000122070314,60.0,60000.0 +8308,2025-06-10T06:12:00-07:00,19.81999969482422,60.0,60000.0 +8309,2025-06-10T06:13:00-07:00,19.815000534057617,60.0,60000.0 +8310,2025-06-10T06:14:00-07:00,19.8140007019043,60.0,60000.0 +8311,2025-06-10T06:15:00-07:00,19.810000737508137,60.0,60000.0 +8312,2025-06-10T06:16:00-07:00,19.810000737508137,60.0,60000.0 +8313,2025-06-10T06:17:00-07:00,19.80800094604492,60.0,60000.0 +8314,2025-06-10T06:18:00-07:00,19.80500030517578,60.0,60000.0 +8315,2025-06-10T06:19:00-07:00,19.801666259765625,60.0,60000.0 +8316,2025-06-10T06:20:00-07:00,19.8,60.0,60000.0 +8317,2025-06-10T06:21:00-07:00,19.799999237060547,60.0,60000.0 +8318,2025-06-10T06:22:00-07:00,19.798332850138348,60.0,60000.0 +8319,2025-06-10T06:23:00-07:00,19.8,60.0,60000.0 +8320,2025-06-10T06:24:00-07:00,19.801666259765625,60.0,60000.0 +8321,2025-06-10T06:25:00-07:00,19.803333282470703,60.0,60000.0 +8322,2025-06-10T06:26:00-07:00,19.801999664306642,60.0,60000.0 +8323,2025-06-10T06:27:00-07:00,19.801666259765625,60.0,60000.0 +8324,2025-06-10T06:28:00-07:00,19.80500030517578,60.0,60000.0 +8325,2025-06-10T06:29:00-07:00,19.804000091552734,60.0,60000.0 +8326,2025-06-10T06:30:00-07:00,19.80500030517578,60.0,60000.0 +8327,2025-06-10T06:31:00-07:00,19.801666259765625,60.0,60000.0 +8328,2025-06-10T06:32:00-07:00,19.801999664306642,60.0,60000.0 +8329,2025-06-10T06:33:00-07:00,19.793333053588867,60.0,60000.0 +8330,2025-06-10T06:34:00-07:00,19.790000279744465,60.0,60000.0 +8331,2025-06-10T06:35:00-07:00,19.78800048828125,60.0,60000.0 +8332,2025-06-10T06:36:00-07:00,19.788333257039387,60.0,60000.0 +8333,2025-06-10T06:37:00-07:00,19.786666870117188,60.0,60000.0 +8334,2025-06-10T06:38:00-07:00,19.792000579833985,60.0,60000.0 +8335,2025-06-10T06:39:00-07:00,19.788333892822266,60.0,60000.0 +8336,2025-06-10T06:40:00-07:00,19.795000076293945,60.0,60000.0 +8337,2025-06-10T06:41:00-07:00,19.79000015258789,60.0,60000.0 +8338,2025-06-10T06:42:00-07:00,19.786666870117188,60.0,60000.0 +8339,2025-06-10T06:43:00-07:00,19.773333231608074,60.0,60000.0 +8340,2025-06-10T06:44:00-07:00,19.770000457763672,60.0,60000.0 +8341,2025-06-10T06:45:00-07:00,19.768333435058594,60.0,60000.0 +8342,2025-06-10T06:46:00-07:00,19.759998321533203,60.0,60000.0 +8343,2025-06-10T06:47:00-07:00,19.757998657226562,60.0,60000.0 +8344,2025-06-10T06:48:00-07:00,19.758331934611004,60.0,60000.0 +8345,2025-06-10T06:49:00-07:00,19.75666618347168,60.0,60000.0 +8346,2025-06-10T06:50:00-07:00,19.75,60.0,60000.0 +8347,2025-06-10T06:51:00-07:00,19.75,60.0,60000.0 +8348,2025-06-10T06:52:00-07:00,19.7433344523112,60.0,60000.0 +8349,2025-06-10T06:53:00-07:00,19.7380012512207,60.0,60000.0 +8350,2025-06-10T06:54:00-07:00,19.733333587646484,60.0,60000.0 +8351,2025-06-10T06:55:00-07:00,19.729999542236328,60.0,60000.0 +8352,2025-06-10T06:56:00-07:00,19.720001220703125,60.0,60000.0 +8353,2025-06-10T06:57:00-07:00,19.721667607625324,60.0,60000.0 +8354,2025-06-10T06:58:00-07:00,19.725000381469727,60.0,60000.0 +8355,2025-06-10T06:59:00-07:00,19.722000885009766,60.0,60000.0 +8356,2025-06-10T07:00:00-07:00,19.726667404174805,60.0,60000.0 +8357,2025-06-10T07:01:00-07:00,19.730000178019207,60.0,60000.0 +8358,2025-06-10T07:02:00-07:00,19.729999542236328,60.0,60000.0 +8359,2025-06-10T07:03:00-07:00,19.736666997273762,60.0,60000.0 +8360,2025-06-10T07:04:00-07:00,19.733333587646484,60.0,60000.0 +8361,2025-06-10T07:05:00-07:00,19.731999969482423,60.0,60000.0 +8362,2025-06-10T07:06:00-07:00,19.725000381469727,60.0,60000.0 +8363,2025-06-10T07:07:00-07:00,19.731666564941406,60.0,60000.0 +8364,2025-06-10T07:08:00-07:00,19.727999877929687,60.0,60000.0 +8365,2025-06-10T07:09:00-07:00,19.725000381469727,60.0,60000.0 +8366,2025-06-10T07:10:00-07:00,19.725000381469727,60.0,60000.0 +8367,2025-06-10T07:11:00-07:00,19.72000045776367,60.0,60000.0 +8368,2025-06-10T07:12:00-07:00,19.709999720255535,60.0,60000.0 +8369,2025-06-10T07:13:00-07:00,19.706666310628254,60.0,60000.0 +8370,2025-06-10T07:14:00-07:00,19.698000335693358,60.0,60000.0 +8371,2025-06-10T07:15:00-07:00,19.700000762939453,60.0,60000.0 +8372,2025-06-10T07:16:00-07:00,19.700000127156574,60.0,60000.0 +8373,2025-06-10T07:17:00-07:00,19.700000762939453,60.0,60000.0 +8374,2025-06-10T07:18:00-07:00,19.700000127156574,60.0,60000.0 +8375,2025-06-10T07:19:00-07:00,19.691665649414062,60.0,60000.0 +8376,2025-06-10T07:20:00-07:00,19.69199905395508,60.0,60000.0 +8377,2025-06-10T07:21:00-07:00,19.69285637991769,60.0,60000.0 +8378,2025-06-10T07:22:00-07:00,19.68666648864746,60.0,60000.0 +8379,2025-06-10T07:23:00-07:00,19.683999633789064,60.0,60000.0 +8380,2025-06-10T07:24:00-07:00,19.678333282470703,60.0,60000.0 +8381,2025-06-10T07:25:00-07:00,19.669998168945312,60.0,60000.0 +8382,2025-06-10T07:26:00-07:00,19.66599884033203,60.0,60000.0 +8383,2025-06-10T07:27:00-07:00,19.66166623433431,60.0,60000.0 +8384,2025-06-10T07:28:00-07:00,19.655000686645508,60.0,60000.0 +8385,2025-06-10T07:29:00-07:00,19.65400085449219,60.0,60000.0 +8386,2025-06-10T07:30:00-07:00,19.651667912801106,60.0,60000.0 +8387,2025-06-10T07:31:00-07:00,19.645000457763672,60.0,60000.0 +8388,2025-06-10T07:32:00-07:00,19.644000244140624,60.0,60000.0 +8389,2025-06-10T07:33:00-07:00,19.645000457763672,60.0,60000.0 +8390,2025-06-10T07:34:00-07:00,19.638333002726238,60.0,60000.0 +8391,2025-06-10T07:35:00-07:00,19.64600067138672,60.0,60000.0 +8392,2025-06-10T07:36:00-07:00,19.641666412353516,60.0,60000.0 +8393,2025-06-10T07:37:00-07:00,19.666666666666668,60.0,60000.0 +8394,2025-06-10T07:38:00-07:00,19.70199966430664,60.0,60000.0 +8395,2025-06-10T07:39:00-07:00,19.72333335876465,60.0,60000.0 +8396,2025-06-10T07:40:00-07:00,19.730000178019207,60.0,60000.0 +8397,2025-06-10T07:41:00-07:00,19.729999542236328,60.0,60000.0 +8398,2025-06-10T07:42:00-07:00,19.726666768391926,60.0,60000.0 +8399,2025-06-10T07:43:00-07:00,19.720000584920246,60.0,60000.0 +8400,2025-06-10T07:44:00-07:00,19.71199951171875,60.0,60000.0 +8401,2025-06-10T07:45:00-07:00,19.704999923706055,60.0,60000.0 +8402,2025-06-10T07:46:00-07:00,19.69499969482422,60.0,60000.0 +8403,2025-06-10T07:47:00-07:00,19.6859992980957,60.0,60000.0 +8404,2025-06-10T07:48:00-07:00,19.674999237060547,60.0,60000.0 +8405,2025-06-10T07:49:00-07:00,19.66166623433431,60.0,60000.0 +8406,2025-06-10T07:50:00-07:00,19.65400085449219,60.0,60000.0 +8407,2025-06-10T07:51:00-07:00,19.655000686645508,60.0,60000.0 +8408,2025-06-10T07:52:00-07:00,19.650001525878906,60.0,60000.0 +8409,2025-06-10T07:53:00-07:00,19.636000061035155,60.0,60000.0 +8410,2025-06-10T07:54:00-07:00,19.635000228881836,60.0,60000.0 +8411,2025-06-10T07:55:00-07:00,19.630000432332356,60.0,60000.0 +8412,2025-06-10T07:56:00-07:00,19.62199935913086,60.0,60000.0 +8413,2025-06-10T07:57:00-07:00,19.621666590372723,60.0,60000.0 +8414,2025-06-10T07:58:00-07:00,19.611666997273762,60.0,60000.0 +8415,2025-06-10T07:59:00-07:00,19.614999771118164,60.0,60000.0 +8416,2025-06-10T08:00:00-07:00,19.610000610351562,60.0,60000.0 +8417,2025-06-10T08:01:00-07:00,19.599999109903973,60.0,60000.0 +8418,2025-06-10T08:02:00-07:00,19.601665496826172,60.0,60000.0 +8419,2025-06-10T08:03:00-07:00,19.593999481201173,60.0,60000.0 +8420,2025-06-10T08:04:00-07:00,19.59166653951009,60.0,60000.0 +8421,2025-06-10T08:05:00-07:00,19.58833376566569,60.0,60000.0 +8422,2025-06-10T08:06:00-07:00,19.59000015258789,60.0,60000.0 +8423,2025-06-10T08:07:00-07:00,19.58833376566569,60.0,60000.0 +8424,2025-06-10T08:08:00-07:00,19.581668217976887,60.0,60000.0 +8425,2025-06-10T08:09:00-07:00,19.58400115966797,60.0,60000.0 +8426,2025-06-10T08:10:00-07:00,19.581668217976887,60.0,60000.0 +8427,2025-06-10T08:11:00-07:00,19.581668217976887,60.0,60000.0 +8428,2025-06-10T08:12:00-07:00,19.58400115966797,60.0,60000.0 +8429,2025-06-10T08:13:00-07:00,19.573334376017254,60.0,60000.0 +8430,2025-06-10T08:14:00-07:00,19.571667353312176,60.0,60000.0 +8431,2025-06-10T08:15:00-07:00,19.574000549316406,60.0,60000.0 +8432,2025-06-10T08:16:00-07:00,19.566666920979817,60.0,60000.0 +8433,2025-06-10T08:17:00-07:00,19.563334147135418,60.0,60000.0 +8434,2025-06-10T08:18:00-07:00,19.566000366210936,60.0,60000.0 +8435,2025-06-10T08:19:00-07:00,19.575000762939453,60.0,60000.0 +8436,2025-06-10T08:20:00-07:00,19.571667353312176,60.0,60000.0 +8437,2025-06-10T08:21:00-07:00,19.580001831054688,60.0,60000.0 +8438,2025-06-10T08:22:00-07:00,19.57833480834961,60.0,60000.0 +8439,2025-06-10T08:23:00-07:00,19.571666717529297,60.0,60000.0 +8440,2025-06-10T08:24:00-07:00,19.572000122070314,60.0,60000.0 +8441,2025-06-10T08:25:00-07:00,19.558334350585938,60.0,60000.0 +8442,2025-06-10T08:26:00-07:00,19.55500030517578,60.0,60000.0 +8443,2025-06-10T08:27:00-07:00,19.55800094604492,60.0,60000.0 +8444,2025-06-10T08:28:00-07:00,19.551666895548504,60.0,60000.0 +8445,2025-06-10T08:29:00-07:00,19.560000737508137,60.0,60000.0 +8446,2025-06-10T08:30:00-07:00,19.562001037597657,60.0,60000.0 +8447,2025-06-10T08:31:00-07:00,19.563334147135418,60.0,60000.0 +8448,2025-06-10T08:32:00-07:00,19.573334376017254,60.0,60000.0 +8449,2025-06-10T08:33:00-07:00,19.580001068115234,60.0,60000.0 +8450,2025-06-10T08:34:00-07:00,19.57666778564453,60.0,60000.0 +8451,2025-06-10T08:35:00-07:00,19.575000762939453,60.0,60000.0 +8452,2025-06-10T08:36:00-07:00,19.578001403808592,60.0,60000.0 +8453,2025-06-10T08:37:00-07:00,19.57666778564453,60.0,60000.0 +8454,2025-06-10T08:38:00-07:00,19.580001831054688,60.0,60000.0 +8455,2025-06-10T08:39:00-07:00,19.58200149536133,60.0,60000.0 +8456,2025-06-10T08:40:00-07:00,19.581668217976887,60.0,60000.0 +8457,2025-06-10T08:41:00-07:00,19.58333460489909,60.0,60000.0 +8458,2025-06-10T08:42:00-07:00,19.58400115966797,60.0,60000.0 +8459,2025-06-10T08:43:00-07:00,19.58666737874349,60.0,60000.0 +8460,2025-06-10T08:44:00-07:00,19.58833376566569,60.0,60000.0 +8461,2025-06-10T08:45:00-07:00,19.58800048828125,60.0,60000.0 +8462,2025-06-10T08:46:00-07:00,19.58333460489909,60.0,60000.0 +8463,2025-06-10T08:47:00-07:00,19.581668217976887,60.0,60000.0 +8464,2025-06-10T08:48:00-07:00,19.578001403808592,60.0,60000.0 +8465,2025-06-10T08:49:00-07:00,19.57857240949358,60.0,60000.0 +8466,2025-06-10T08:50:00-07:00,19.571666717529297,60.0,60000.0 +8467,2025-06-10T08:51:00-07:00,19.578001403808592,60.0,60000.0 +8468,2025-06-10T08:52:00-07:00,19.575000762939453,60.0,60000.0 +8469,2025-06-10T08:53:00-07:00,19.580001831054688,60.0,60000.0 +8470,2025-06-10T08:54:00-07:00,19.58200149536133,60.0,60000.0 +8471,2025-06-10T08:55:00-07:00,19.59000015258789,60.0,60000.0 +8472,2025-06-10T08:56:00-07:00,19.59166653951009,60.0,60000.0 +8473,2025-06-10T08:57:00-07:00,19.59599914550781,60.0,60000.0 +8474,2025-06-10T08:58:00-07:00,19.598332087198894,60.0,60000.0 +8475,2025-06-10T08:59:00-07:00,19.604999542236328,60.0,60000.0 +8476,2025-06-10T09:00:00-07:00,19.610000610351562,60.0,60000.0 +8477,2025-06-10T09:01:00-07:00,19.610000610351562,60.0,60000.0 +8478,2025-06-10T09:02:00-07:00,19.609999974568684,60.0,60000.0 +8479,2025-06-10T09:03:00-07:00,19.612000274658204,60.0,60000.0 +8480,2025-06-10T09:04:00-07:00,19.614999771118164,60.0,60000.0 +8481,2025-06-10T09:05:00-07:00,19.616666158040363,60.0,60000.0 +8482,2025-06-10T09:06:00-07:00,19.629999542236327,60.0,60000.0 +8483,2025-06-10T09:07:00-07:00,19.643333435058594,60.0,60000.0 +8484,2025-06-10T09:08:00-07:00,19.66499900817871,60.0,60000.0 +8485,2025-06-10T09:09:00-07:00,19.677999877929686,60.0,60000.0 +8486,2025-06-10T09:10:00-07:00,19.68833287556966,60.0,60000.0 +8487,2025-06-10T09:11:00-07:00,19.691665649414062,60.0,60000.0 +8488,2025-06-10T09:12:00-07:00,19.689999389648438,60.0,60000.0 +8489,2025-06-10T09:13:00-07:00,19.696666717529297,60.0,60000.0 +8490,2025-06-10T09:14:00-07:00,19.691665649414062,60.0,60000.0 +8491,2025-06-10T09:15:00-07:00,19.687998962402343,60.0,60000.0 +8492,2025-06-10T09:16:00-07:00,19.679999669392902,60.0,60000.0 +8493,2025-06-10T09:17:00-07:00,19.676666259765625,60.0,60000.0 +8494,2025-06-10T09:18:00-07:00,19.6739990234375,60.0,60000.0 +8495,2025-06-10T09:19:00-07:00,19.67333221435547,60.0,60000.0 +8496,2025-06-10T09:20:00-07:00,19.674999237060547,60.0,60000.0 +8497,2025-06-10T09:21:00-07:00,19.68000030517578,60.0,60000.0 +8498,2025-06-10T09:22:00-07:00,19.66499900817871,60.0,60000.0 +8499,2025-06-10T09:23:00-07:00,19.66166623433431,60.0,60000.0 +8500,2025-06-10T09:24:00-07:00,19.663999176025392,60.0,60000.0 +8501,2025-06-10T09:25:00-07:00,19.65333429972331,60.0,60000.0 +8502,2025-06-10T09:26:00-07:00,19.655000686645508,60.0,60000.0 +8503,2025-06-10T09:27:00-07:00,19.65999984741211,60.0,60000.0 +8504,2025-06-10T09:28:00-07:00,19.656667073567707,60.0,60000.0 +8505,2025-06-10T09:29:00-07:00,19.66333262125651,60.0,60000.0 +8506,2025-06-10T09:30:00-07:00,19.66599884033203,60.0,60000.0 +8507,2025-06-10T09:31:00-07:00,19.679999669392902,60.0,60000.0 +8508,2025-06-10T09:32:00-07:00,19.701667149861652,60.0,60000.0 +8509,2025-06-10T09:33:00-07:00,19.70999984741211,60.0,60000.0 +8510,2025-06-10T09:34:00-07:00,19.740000406901043,60.0,60000.0 +8511,2025-06-10T09:35:00-07:00,19.781666437784832,60.0,60000.0 +8512,2025-06-10T09:36:00-07:00,19.80800018310547,60.0,60000.0 +8513,2025-06-10T09:37:00-07:00,19.830000559488933,60.0,60000.0 +8514,2025-06-10T09:38:00-07:00,19.85333251953125,60.0,60000.0 +8515,2025-06-10T09:39:00-07:00,19.855999755859376,60.0,60000.0 +8516,2025-06-10T09:40:00-07:00,19.869999567667644,60.0,60000.0 +8517,2025-06-10T09:41:00-07:00,19.886666615804035,60.0,60000.0 +8518,2025-06-10T09:42:00-07:00,19.900000762939452,60.0,60000.0 +8519,2025-06-10T09:43:00-07:00,19.91166623433431,60.0,60000.0 +8520,2025-06-10T09:44:00-07:00,19.91333262125651,60.0,60000.0 +8521,2025-06-10T09:45:00-07:00,19.919998931884766,60.0,60000.0 +8522,2025-06-10T09:46:00-07:00,19.91333262125651,60.0,60000.0 +8523,2025-06-10T09:47:00-07:00,19.919999440511067,60.0,60000.0 +8524,2025-06-10T09:48:00-07:00,19.9359992980957,60.0,60000.0 +8525,2025-06-10T09:49:00-07:00,19.951666514078777,60.0,60000.0 +8526,2025-06-10T09:50:00-07:00,19.961666742960613,60.0,60000.0 +8527,2025-06-10T09:51:00-07:00,19.972000885009766,60.0,60000.0 +8528,2025-06-10T09:52:00-07:00,19.975000381469727,60.0,60000.0 +8529,2025-06-10T09:53:00-07:00,19.996666590372723,60.0,60000.0 +8530,2025-06-10T09:54:00-07:00,20.018000030517577,60.0,60000.0 +8531,2025-06-10T09:55:00-07:00,20.03499984741211,60.0,60000.0 +8532,2025-06-10T09:56:00-07:00,20.05666669209798,60.0,60000.0 +8533,2025-06-10T09:57:00-07:00,20.076000213623047,60.0,60000.0 +8534,2025-06-10T09:58:00-07:00,20.099999745686848,60.0,60000.0 +8535,2025-06-10T09:59:00-07:00,20.114999771118164,60.0,60000.0 +8536,2025-06-10T10:00:00-07:00,20.108000183105467,60.0,60000.0 +8537,2025-06-10T10:01:00-07:00,20.114999771118164,60.0,60000.0 +8538,2025-06-10T10:02:00-07:00,20.111666361490887,60.0,60000.0 +8539,2025-06-10T10:03:00-07:00,20.099998474121094,60.0,60000.0 +8540,2025-06-10T10:04:00-07:00,20.09833272298177,60.0,60000.0 +8541,2025-06-10T10:05:00-07:00,20.106667200724285,60.0,60000.0 +8542,2025-06-10T10:06:00-07:00,20.125999450683594,60.0,60000.0 +8543,2025-06-10T10:07:00-07:00,20.168333053588867,60.0,60000.0 +8544,2025-06-10T10:08:00-07:00,20.22166697184245,60.0,60000.0 +8545,2025-06-10T10:09:00-07:00,20.255999755859374,60.0,60000.0 +8546,2025-06-10T10:10:00-07:00,20.291666666666668,60.0,60000.0 +8547,2025-06-10T10:11:00-07:00,20.301666259765625,60.0,60000.0 +8548,2025-06-10T10:12:00-07:00,20.312000274658203,60.0,60000.0 +8549,2025-06-10T10:13:00-07:00,20.31833330790202,60.0,60000.0 +8550,2025-06-10T10:14:00-07:00,20.325000762939453,60.0,60000.0 +8551,2025-06-10T10:15:00-07:00,20.33200149536133,60.0,60000.0 +8552,2025-06-10T10:16:00-07:00,20.33333460489909,60.0,60000.0 +8553,2025-06-10T10:17:00-07:00,20.32666778564453,60.0,60000.0 +8554,2025-06-10T10:18:00-07:00,20.33400115966797,60.0,60000.0 +8555,2025-06-10T10:19:00-07:00,20.34000015258789,60.0,60000.0 +8556,2025-06-10T10:20:00-07:00,20.349999109903973,60.0,60000.0 +8557,2025-06-10T10:21:00-07:00,20.358000183105467,60.0,60000.0 +8558,2025-06-10T10:22:00-07:00,20.37000020345052,60.0,60000.0 +8559,2025-06-10T10:23:00-07:00,20.381667455037434,60.0,60000.0 +8560,2025-06-10T10:24:00-07:00,20.378334045410156,60.0,60000.0 +8561,2025-06-10T10:25:00-07:00,20.387999725341796,60.0,60000.0 +8562,2025-06-10T10:26:00-07:00,20.39833386739095,60.0,60000.0 +8563,2025-06-10T10:27:00-07:00,20.41499900817871,60.0,60000.0 +8564,2025-06-10T10:28:00-07:00,20.40999984741211,60.0,60000.0 +8565,2025-06-10T10:29:00-07:00,20.41499964396159,60.0,60000.0 +8566,2025-06-10T10:30:00-07:00,20.436665852864582,60.0,60000.0 +8567,2025-06-10T10:31:00-07:00,20.47000045776367,60.0,60000.0 +8568,2025-06-10T10:32:00-07:00,20.511666615804035,60.0,60000.0 +8569,2025-06-10T10:33:00-07:00,20.55000114440918,60.0,60000.0 +8570,2025-06-10T10:34:00-07:00,20.582000732421875,60.0,60000.0 +8571,2025-06-10T10:35:00-07:00,20.604999542236328,60.0,60000.0 +8572,2025-06-10T10:36:00-07:00,20.619999567667644,60.0,60000.0 +8573,2025-06-10T10:37:00-07:00,20.636000061035155,60.0,60000.0 +8574,2025-06-10T10:38:00-07:00,20.65333429972331,60.0,60000.0 +8575,2025-06-10T10:39:00-07:00,20.66166623433431,60.0,60000.0 +8576,2025-06-10T10:40:00-07:00,20.65999984741211,60.0,60000.0 +8577,2025-06-10T10:41:00-07:00,20.66333262125651,60.0,60000.0 +8578,2025-06-10T10:42:00-07:00,20.67333221435547,60.0,60000.0 +8579,2025-06-10T10:43:00-07:00,20.656000518798827,60.0,60000.0 +8580,2025-06-10T10:44:00-07:00,20.639999389648438,60.0,60000.0 +8581,2025-06-10T10:45:00-07:00,20.650000254313152,60.0,60000.0 +8582,2025-06-10T10:46:00-07:00,20.66999969482422,60.0,60000.0 +8583,2025-06-10T10:47:00-07:00,20.71500015258789,60.0,60000.0 +8584,2025-06-10T10:48:00-07:00,20.7450008392334,60.0,60000.0 +8585,2025-06-10T10:49:00-07:00,20.7619987487793,60.0,60000.0 +8586,2025-06-10T10:50:00-07:00,20.766666412353516,60.0,60000.0 +8587,2025-06-10T10:51:00-07:00,20.774999618530273,60.0,60000.0 +8588,2025-06-10T10:52:00-07:00,20.795999145507814,60.0,60000.0 +8589,2025-06-10T10:53:00-07:00,20.833333333333332,60.0,60000.0 +8590,2025-06-10T10:54:00-07:00,20.866666793823242,60.0,60000.0 +8591,2025-06-10T10:55:00-07:00,20.869998931884766,60.0,60000.0 +8592,2025-06-10T10:56:00-07:00,20.858332951863606,60.0,60000.0 +8593,2025-06-10T10:57:00-07:00,20.84166653951009,60.0,60000.0 +8594,2025-06-10T10:58:00-07:00,20.83800048828125,60.0,60000.0 +8595,2025-06-10T10:59:00-07:00,20.83333460489909,60.0,60000.0 +8596,2025-06-10T11:00:00-07:00,20.825000762939453,60.0,60000.0 +8597,2025-06-10T11:01:00-07:00,20.80600051879883,60.0,60000.0 +8598,2025-06-10T11:02:00-07:00,20.788333257039387,60.0,60000.0 +8599,2025-06-10T11:03:00-07:00,20.776666005452473,60.0,60000.0 +8600,2025-06-10T11:04:00-07:00,20.768000030517577,60.0,60000.0 +8601,2025-06-10T11:05:00-07:00,20.762856074741908,60.0,60000.0 +8602,2025-06-10T11:06:00-07:00,20.7566655476888,60.0,60000.0 +8603,2025-06-10T11:07:00-07:00,20.742001342773438,60.0,60000.0 +8604,2025-06-10T11:08:00-07:00,20.725000381469727,60.0,60000.0 +8605,2025-06-10T11:09:00-07:00,20.71666717529297,60.0,60000.0 +8606,2025-06-10T11:10:00-07:00,20.71800079345703,60.0,60000.0 +8607,2025-06-10T11:11:00-07:00,20.728333791097004,60.0,60000.0 +8608,2025-06-10T11:12:00-07:00,20.741668065388996,60.0,60000.0 +8609,2025-06-10T11:13:00-07:00,20.742001342773438,60.0,60000.0 +8610,2025-06-10T11:14:00-07:00,20.740001678466797,60.0,60000.0 +8611,2025-06-10T11:15:00-07:00,20.7433344523112,60.0,60000.0 +8612,2025-06-10T11:16:00-07:00,20.74400100708008,60.0,60000.0 +8613,2025-06-10T11:17:00-07:00,20.75,60.0,60000.0 +8614,2025-06-10T11:18:00-07:00,20.758331934611004,60.0,60000.0 +8615,2025-06-10T11:19:00-07:00,20.759998321533203,60.0,60000.0 +8616,2025-06-10T11:20:00-07:00,20.764999389648438,60.0,60000.0 +8617,2025-06-10T11:21:00-07:00,20.759998321533203,60.0,60000.0 +8618,2025-06-10T11:22:00-07:00,20.753999328613283,60.0,60000.0 +8619,2025-06-10T11:23:00-07:00,20.740001042683918,60.0,60000.0 +8620,2025-06-10T11:24:00-07:00,20.728333791097004,60.0,60000.0 +8621,2025-06-10T11:25:00-07:00,20.71199951171875,60.0,60000.0 +8622,2025-06-10T11:26:00-07:00,20.696666081746418,60.0,60000.0 +8623,2025-06-10T11:27:00-07:00,20.679999669392902,60.0,60000.0 +8624,2025-06-10T11:28:00-07:00,20.66599884033203,60.0,60000.0 +8625,2025-06-10T11:29:00-07:00,20.656667073567707,60.0,60000.0 +8626,2025-06-10T11:30:00-07:00,20.65333429972331,60.0,60000.0 +8627,2025-06-10T11:31:00-07:00,20.650000762939452,60.0,60000.0 +8628,2025-06-10T11:32:00-07:00,20.650000254313152,60.0,60000.0 +8629,2025-06-10T11:33:00-07:00,20.648334503173828,60.0,60000.0 +8630,2025-06-10T11:34:00-07:00,20.658000183105468,60.0,60000.0 +8631,2025-06-10T11:35:00-07:00,20.66999880472819,60.0,60000.0 +8632,2025-06-10T11:36:00-07:00,20.679999669392902,60.0,60000.0 +8633,2025-06-10T11:37:00-07:00,20.6859992980957,60.0,60000.0 +8634,2025-06-10T11:38:00-07:00,20.691665649414062,60.0,60000.0 +8635,2025-06-10T11:39:00-07:00,20.689999262491863,60.0,60000.0 +8636,2025-06-10T11:40:00-07:00,20.6859992980957,60.0,60000.0 +8637,2025-06-10T11:41:00-07:00,20.688332239786785,60.0,60000.0 +8638,2025-06-10T11:42:00-07:00,20.683333079020183,60.0,60000.0 +8639,2025-06-10T11:43:00-07:00,20.6859992980957,60.0,60000.0 +8640,2025-06-10T11:44:00-07:00,20.684999465942383,60.0,60000.0 +8641,2025-06-10T11:45:00-07:00,20.698333104451496,60.0,60000.0 +8642,2025-06-10T11:46:00-07:00,20.713999938964843,60.0,60000.0 +8643,2025-06-10T11:47:00-07:00,20.731667200724285,60.0,60000.0 +8644,2025-06-10T11:48:00-07:00,20.733333587646484,60.0,60000.0 +8645,2025-06-10T11:49:00-07:00,20.755999755859374,60.0,60000.0 +8646,2025-06-10T11:50:00-07:00,20.764999389648438,60.0,60000.0 +8647,2025-06-10T11:51:00-07:00,20.781665802001953,60.0,60000.0 +8648,2025-06-10T11:52:00-07:00,20.786000061035157,60.0,60000.0 +8649,2025-06-10T11:53:00-07:00,20.788333892822266,60.0,60000.0 +8650,2025-06-10T11:54:00-07:00,20.781665802001953,60.0,60000.0 +8651,2025-06-10T11:55:00-07:00,20.779998779296875,60.0,60000.0 +8652,2025-06-10T11:56:00-07:00,20.773333231608074,60.0,60000.0 +8653,2025-06-10T11:57:00-07:00,20.773333231608074,60.0,60000.0 +8654,2025-06-10T11:58:00-07:00,20.773999786376955,60.0,60000.0 +8655,2025-06-10T11:59:00-07:00,20.769999186197918,60.0,60000.0 +8656,2025-06-10T12:00:00-07:00,20.7566655476888,60.0,60000.0 +8657,2025-06-10T12:01:00-07:00,20.742001342773438,60.0,60000.0 +8658,2025-06-10T12:02:00-07:00,20.728333791097004,60.0,60000.0 +8659,2025-06-10T12:03:00-07:00,20.71999994913737,60.0,60000.0 +8660,2025-06-10T12:04:00-07:00,20.70999984741211,60.0,60000.0 +8661,2025-06-10T12:05:00-07:00,20.696667353312176,60.0,60000.0 +8662,2025-06-10T12:06:00-07:00,20.689999262491863,60.0,60000.0 +8663,2025-06-10T12:07:00-07:00,20.681999969482423,60.0,60000.0 +8664,2025-06-10T12:08:00-07:00,20.688332239786785,60.0,60000.0 +8665,2025-06-10T12:09:00-07:00,20.69166628519694,60.0,60000.0 +8666,2025-06-10T12:10:00-07:00,20.703999328613282,60.0,60000.0 +8667,2025-06-10T12:11:00-07:00,20.72333335876465,60.0,60000.0 +8668,2025-06-10T12:12:00-07:00,20.73833465576172,60.0,60000.0 +8669,2025-06-10T12:13:00-07:00,20.73600082397461,60.0,60000.0 +8670,2025-06-10T12:14:00-07:00,20.726667404174805,60.0,60000.0 +8671,2025-06-10T12:15:00-07:00,20.71666717529297,60.0,60000.0 +8672,2025-06-10T12:16:00-07:00,20.71199951171875,60.0,60000.0 +8673,2025-06-10T12:17:00-07:00,20.703333536783855,60.0,60000.0 +8674,2025-06-10T12:18:00-07:00,20.698333740234375,60.0,60000.0 +8675,2025-06-10T12:19:00-07:00,20.691665649414062,60.0,60000.0 +8676,2025-06-10T12:20:00-07:00,20.688332239786785,60.0,60000.0 +8677,2025-06-10T12:21:00-07:00,20.688332239786785,60.0,60000.0 +8678,2025-06-10T12:22:00-07:00,20.689999389648438,60.0,60000.0 +8679,2025-06-10T12:23:00-07:00,20.689998626708984,60.0,60000.0 +8680,2025-06-10T12:24:00-07:00,20.68833287556966,60.0,60000.0 +8681,2025-06-10T12:25:00-07:00,20.683333079020183,60.0,60000.0 +8682,2025-06-10T12:26:00-07:00,20.679999542236327,60.0,60000.0 +8683,2025-06-10T12:27:00-07:00,20.674999237060547,60.0,60000.0 +8684,2025-06-10T12:28:00-07:00,20.676666259765625,60.0,60000.0 +8685,2025-06-10T12:29:00-07:00,20.669998931884766,60.0,60000.0 +8686,2025-06-10T12:30:00-07:00,20.68166669209798,60.0,60000.0 +8687,2025-06-10T12:31:00-07:00,20.69333267211914,60.0,60000.0 +8688,2025-06-10T12:32:00-07:00,20.698000335693358,60.0,60000.0 +8689,2025-06-10T12:33:00-07:00,20.704999287923176,60.0,60000.0 +8690,2025-06-10T12:34:00-07:00,20.718333562215168,60.0,60000.0 +8691,2025-06-10T12:35:00-07:00,20.722000885009766,60.0,60000.0 +8692,2025-06-10T12:36:00-07:00,20.721667607625324,60.0,60000.0 +8693,2025-06-10T12:37:00-07:00,20.725000381469727,60.0,60000.0 +8694,2025-06-10T12:38:00-07:00,20.724000549316408,60.0,60000.0 +8695,2025-06-10T12:39:00-07:00,20.726666768391926,60.0,60000.0 +8696,2025-06-10T12:40:00-07:00,20.729999542236328,60.0,60000.0 +8697,2025-06-10T12:41:00-07:00,20.734000396728515,60.0,60000.0 +8698,2025-06-10T12:42:00-07:00,20.736666997273762,60.0,60000.0 +8699,2025-06-10T12:43:00-07:00,20.73833465576172,60.0,60000.0 +8700,2025-06-10T12:44:00-07:00,20.746000671386717,60.0,60000.0 +8701,2025-06-10T12:45:00-07:00,20.740001678466797,60.0,60000.0 +8702,2025-06-10T12:46:00-07:00,20.73833465576172,60.0,60000.0 +8703,2025-06-10T12:47:00-07:00,20.734000396728515,60.0,60000.0 +8704,2025-06-10T12:48:00-07:00,20.731667200724285,60.0,60000.0 +8705,2025-06-10T12:49:00-07:00,20.735000610351562,60.0,60000.0 +8706,2025-06-10T12:50:00-07:00,20.7380012512207,60.0,60000.0 +8707,2025-06-10T12:51:00-07:00,20.746667226155598,60.0,60000.0 +8708,2025-06-10T12:52:00-07:00,20.7433344523112,60.0,60000.0 +8709,2025-06-10T12:53:00-07:00,20.740000915527343,60.0,60000.0 +8710,2025-06-10T12:54:00-07:00,20.746667226155598,60.0,60000.0 +8711,2025-06-10T12:55:00-07:00,20.73833465576172,60.0,60000.0 +8712,2025-06-10T12:56:00-07:00,20.742001342773438,60.0,60000.0 +8713,2025-06-10T12:57:00-07:00,20.741668065388996,60.0,60000.0 +8714,2025-06-10T12:58:00-07:00,20.746667226155598,60.0,60000.0 +8715,2025-06-10T12:59:00-07:00,20.753999328613283,60.0,60000.0 +8716,2025-06-10T13:00:00-07:00,20.7566655476888,60.0,60000.0 +8717,2025-06-10T13:01:00-07:00,20.76166534423828,60.0,60000.0 +8718,2025-06-10T13:02:00-07:00,20.76399917602539,60.0,60000.0 +8719,2025-06-10T13:03:00-07:00,20.764999389648438,60.0,60000.0 +8720,2025-06-10T13:04:00-07:00,20.770000457763672,60.0,60000.0 +8721,2025-06-10T13:05:00-07:00,20.772000122070313,60.0,60000.0 +8722,2025-06-10T13:06:00-07:00,20.774999618530273,60.0,60000.0 +8723,2025-06-10T13:07:00-07:00,20.781665802001953,60.0,60000.0 +8724,2025-06-10T13:08:00-07:00,20.77999954223633,60.0,60000.0 +8725,2025-06-10T13:09:00-07:00,20.77166684468587,60.0,60000.0 +8726,2025-06-10T13:10:00-07:00,20.773333231608074,60.0,60000.0 +8727,2025-06-10T13:11:00-07:00,20.777999114990234,60.0,60000.0 +8728,2025-06-10T13:12:00-07:00,20.793333053588867,60.0,60000.0 +8729,2025-06-10T13:13:00-07:00,20.80666732788086,60.0,60000.0 +8730,2025-06-10T13:14:00-07:00,20.824000549316406,60.0,60000.0 +8731,2025-06-10T13:15:00-07:00,20.843332926432293,60.0,60000.0 +8732,2025-06-10T13:16:00-07:00,20.861666997273762,60.0,60000.0 +8733,2025-06-10T13:17:00-07:00,20.873999786376952,60.0,60000.0 +8734,2025-06-10T13:18:00-07:00,20.871665954589844,60.0,60000.0 +8735,2025-06-10T13:19:00-07:00,20.875,60.0,60000.0 +8736,2025-06-10T13:20:00-07:00,20.87199935913086,60.0,60000.0 +8737,2025-06-10T13:21:00-07:00,20.869998931884766,60.0,60000.0 +8738,2025-06-10T13:22:00-07:00,20.86833318074544,60.0,60000.0 +8739,2025-06-10T13:23:00-07:00,20.873999786376952,60.0,60000.0 +8740,2025-06-10T13:24:00-07:00,20.869998931884766,60.0,60000.0 +8741,2025-06-10T13:25:00-07:00,20.85166613260905,60.0,60000.0 +8742,2025-06-10T13:26:00-07:00,20.824000549316406,60.0,60000.0 +8743,2025-06-10T13:27:00-07:00,20.826667149861652,60.0,60000.0 +8744,2025-06-10T13:28:00-07:00,20.82833417256673,60.0,60000.0 +8745,2025-06-10T13:29:00-07:00,20.836000823974608,60.0,60000.0 +8746,2025-06-10T13:30:00-07:00,20.84000015258789,60.0,60000.0 +8747,2025-06-10T13:31:00-07:00,20.844999313354492,60.0,60000.0 +8748,2025-06-10T13:32:00-07:00,20.858000183105467,60.0,60000.0 +8749,2025-06-10T13:33:00-07:00,20.858333587646484,60.0,60000.0 +8750,2025-06-10T13:34:00-07:00,20.863333384195965,60.0,60000.0 +8751,2025-06-10T13:35:00-07:00,20.85600051879883,60.0,60000.0 +8752,2025-06-10T13:36:00-07:00,20.858332951863606,60.0,60000.0 +8753,2025-06-10T13:37:00-07:00,20.858333587646484,60.0,60000.0 +8754,2025-06-10T13:38:00-07:00,20.854000091552734,60.0,60000.0 +8755,2025-06-10T13:39:00-07:00,20.864999771118164,60.0,60000.0 +8756,2025-06-10T13:40:00-07:00,20.873332977294922,60.0,60000.0 +8757,2025-06-10T13:41:00-07:00,20.87799987792969,60.0,60000.0 +8758,2025-06-10T13:42:00-07:00,20.890000025431316,60.0,60000.0 +8759,2025-06-10T13:43:00-07:00,20.898334503173828,60.0,60000.0 +8760,2025-06-10T13:44:00-07:00,20.906000518798827,60.0,60000.0 +8761,2025-06-10T13:45:00-07:00,20.905000686645508,60.0,60000.0 +8762,2025-06-10T13:46:00-07:00,20.90333429972331,60.0,60000.0 +8763,2025-06-10T13:47:00-07:00,20.90400085449219,60.0,60000.0 +8764,2025-06-10T13:48:00-07:00,20.91333262125651,60.0,60000.0 +8765,2025-06-10T13:49:00-07:00,20.924999237060547,60.0,60000.0 +8766,2025-06-10T13:50:00-07:00,20.927999877929686,60.0,60000.0 +8767,2025-06-10T13:51:00-07:00,20.931666056315105,60.0,60000.0 +8768,2025-06-10T13:52:00-07:00,20.939998626708984,60.0,60000.0 +8769,2025-06-10T13:53:00-07:00,20.94399948120117,60.0,60000.0 +8770,2025-06-10T13:54:00-07:00,20.951667149861652,60.0,60000.0 +8771,2025-06-10T13:55:00-07:00,20.951667149861652,60.0,60000.0 +8772,2025-06-10T13:56:00-07:00,20.954000091552736,60.0,60000.0 +8773,2025-06-10T13:57:00-07:00,20.956666310628254,60.0,60000.0 +8774,2025-06-10T13:58:00-07:00,20.951667149861652,60.0,60000.0 +8775,2025-06-10T13:59:00-07:00,20.950000127156574,60.0,60000.0 +8776,2025-06-10T14:00:00-07:00,20.94199905395508,60.0,60000.0 +8777,2025-06-10T14:01:00-07:00,20.951666514078777,60.0,60000.0 +8778,2025-06-10T14:02:00-07:00,20.953333536783855,60.0,60000.0 +8779,2025-06-10T14:03:00-07:00,20.966000366210938,60.0,60000.0 +8780,2025-06-10T14:04:00-07:00,20.976666768391926,60.0,60000.0 +8781,2025-06-10T14:05:00-07:00,20.985000610351562,60.0,60000.0 +8782,2025-06-10T14:06:00-07:00,20.99400100708008,60.0,60000.0 +8783,2025-06-10T14:07:00-07:00,21.00000063578288,60.0,60000.0 +8784,2025-06-10T14:08:00-07:00,21.02166684468587,60.0,60000.0 +8785,2025-06-10T14:09:00-07:00,21.03199920654297,60.0,60000.0 +8786,2025-06-10T14:10:00-07:00,21.029999415079754,60.0,60000.0 +8787,2025-06-10T14:11:00-07:00,21.03333282470703,60.0,60000.0 +8788,2025-06-10T14:12:00-07:00,21.029998779296875,60.0,60000.0 +8789,2025-06-10T14:13:00-07:00,21.046667734781902,60.0,60000.0 +8790,2025-06-10T14:14:00-07:00,21.081666310628254,60.0,60000.0 +8791,2025-06-10T14:15:00-07:00,21.120000457763673,60.0,60000.0 +8792,2025-06-10T14:16:00-07:00,21.15166727701823,60.0,60000.0 +8793,2025-06-10T14:17:00-07:00,21.16666539510091,60.0,60000.0 +8794,2025-06-10T14:18:00-07:00,21.171998596191408,60.0,60000.0 +8795,2025-06-10T14:19:00-07:00,21.16333262125651,60.0,60000.0 +8796,2025-06-10T14:20:00-07:00,21.145000457763672,60.0,60000.0 +8797,2025-06-10T14:21:00-07:00,21.141999816894533,60.0,60000.0 +8798,2025-06-10T14:22:00-07:00,21.133333841959637,60.0,60000.0 +8799,2025-06-10T14:23:00-07:00,21.116666158040363,60.0,60000.0 +8800,2025-06-10T14:24:00-07:00,21.105999755859376,60.0,60000.0 +8801,2025-06-10T14:25:00-07:00,21.10333251953125,60.0,60000.0 +8802,2025-06-10T14:26:00-07:00,21.09000015258789,60.0,60000.0 +8803,2025-06-10T14:27:00-07:00,21.078001403808592,60.0,60000.0 +8804,2025-06-10T14:28:00-07:00,21.073333740234375,60.0,60000.0 +8805,2025-06-10T14:29:00-07:00,21.065000534057617,60.0,60000.0 +8806,2025-06-10T14:30:00-07:00,21.05800094604492,60.0,60000.0 +8807,2025-06-10T14:31:00-07:00,21.05833371480306,60.0,60000.0 +8808,2025-06-10T14:32:00-07:00,21.053333282470703,60.0,60000.0 +8809,2025-06-10T14:33:00-07:00,21.044000244140626,60.0,60000.0 +8810,2025-06-10T14:34:00-07:00,21.040000915527344,60.0,60000.0 +8811,2025-06-10T14:35:00-07:00,21.040000915527344,60.0,60000.0 +8812,2025-06-10T14:36:00-07:00,21.03800048828125,60.0,60000.0 +8813,2025-06-10T14:37:00-07:00,21.041666666666668,60.0,60000.0 +8814,2025-06-10T14:38:00-07:00,21.046666463216145,60.0,60000.0 +8815,2025-06-10T14:39:00-07:00,21.045999908447264,60.0,60000.0 +8816,2025-06-10T14:40:00-07:00,21.053333918253582,60.0,60000.0 +8817,2025-06-10T14:41:00-07:00,21.06166712443034,60.0,60000.0 +8818,2025-06-10T14:42:00-07:00,21.0640007019043,60.0,60000.0 +8819,2025-06-10T14:43:00-07:00,21.06833330790202,60.0,60000.0 +8820,2025-06-10T14:44:00-07:00,21.06857190813337,60.0,60000.0 +8821,2025-06-10T14:45:00-07:00,21.0640007019043,60.0,60000.0 +8822,2025-06-10T14:46:00-07:00,21.066666920979817,60.0,60000.0 +8823,2025-06-10T14:47:00-07:00,21.068333943684895,60.0,60000.0 +8824,2025-06-10T14:48:00-07:00,21.072000122070314,60.0,60000.0 +8825,2025-06-10T14:49:00-07:00,21.075000762939453,60.0,60000.0 +8826,2025-06-10T14:50:00-07:00,21.073333740234375,60.0,60000.0 +8827,2025-06-10T14:51:00-07:00,21.068000030517577,60.0,60000.0 +8828,2025-06-10T14:52:00-07:00,21.06999969482422,60.0,60000.0 +8829,2025-06-10T14:53:00-07:00,21.066666920979817,60.0,60000.0 +8830,2025-06-10T14:54:00-07:00,21.05800094604492,60.0,60000.0 +8831,2025-06-10T14:55:00-07:00,21.049999237060547,60.0,60000.0 +8832,2025-06-10T14:56:00-07:00,21.049999872843426,60.0,60000.0 +8833,2025-06-10T14:57:00-07:00,21.047999572753906,60.0,60000.0 +8834,2025-06-10T14:58:00-07:00,21.05500030517578,60.0,60000.0 +8835,2025-06-10T14:59:00-07:00,21.058334350585938,60.0,60000.0 +8836,2025-06-10T15:00:00-07:00,21.068000030517577,60.0,60000.0 +8837,2025-06-10T15:01:00-07:00,21.06833330790202,60.0,60000.0 +8838,2025-06-10T15:02:00-07:00,21.065000534057617,60.0,60000.0 +8839,2025-06-10T15:03:00-07:00,21.060001373291016,60.0,60000.0 +8840,2025-06-10T15:04:00-07:00,21.051666895548504,60.0,60000.0 +8841,2025-06-10T15:05:00-07:00,21.046666463216145,60.0,60000.0 +8842,2025-06-10T15:06:00-07:00,21.049999872843426,60.0,60000.0 +8843,2025-06-10T15:07:00-07:00,21.05,60.0,60000.0 +8844,2025-06-10T15:08:00-07:00,21.046667098999023,60.0,60000.0 +8845,2025-06-10T15:09:00-07:00,21.041666666666668,60.0,60000.0 +8846,2025-06-10T15:10:00-07:00,21.042000579833985,60.0,60000.0 +8847,2025-06-10T15:11:00-07:00,21.045000076293945,60.0,60000.0 +8848,2025-06-10T15:12:00-07:00,21.038333892822266,60.0,60000.0 +8849,2025-06-10T15:13:00-07:00,21.036000061035157,60.0,60000.0 +8850,2025-06-10T15:14:00-07:00,21.026666005452473,60.0,60000.0 +8851,2025-06-10T15:15:00-07:00,21.018333435058594,60.0,60000.0 +8852,2025-06-10T15:16:00-07:00,21.025999450683592,60.0,60000.0 +8853,2025-06-10T15:17:00-07:00,21.03333282470703,60.0,60000.0 +8854,2025-06-10T15:18:00-07:00,21.03333282470703,60.0,60000.0 +8855,2025-06-10T15:19:00-07:00,21.04000015258789,60.0,60000.0 +8856,2025-06-10T15:20:00-07:00,21.049999237060547,60.0,60000.0 +8857,2025-06-10T15:21:00-07:00,21.045000076293945,60.0,60000.0 +8858,2025-06-10T15:22:00-07:00,21.036000061035157,60.0,60000.0 +8859,2025-06-10T15:23:00-07:00,21.02142878941127,60.0,60000.0 +8860,2025-06-10T15:24:00-07:00,21.016666412353516,60.0,60000.0 +8861,2025-06-10T15:25:00-07:00,21.018000030517577,60.0,60000.0 +8862,2025-06-10T15:26:00-07:00,21.018333435058594,60.0,60000.0 +8863,2025-06-10T15:27:00-07:00,21.02166684468587,60.0,60000.0 +8864,2025-06-10T15:28:00-07:00,21.036000061035157,60.0,60000.0 +8865,2025-06-10T15:29:00-07:00,21.049999872843426,60.0,60000.0 +8866,2025-06-10T15:30:00-07:00,21.063334147135418,60.0,60000.0 +8867,2025-06-10T15:31:00-07:00,21.070000457763673,60.0,60000.0 +8868,2025-06-10T15:32:00-07:00,21.06833330790202,60.0,60000.0 +8869,2025-06-10T15:33:00-07:00,21.08000119527181,60.0,60000.0 +8870,2025-06-10T15:34:00-07:00,21.093999481201173,60.0,60000.0 +8871,2025-06-10T15:35:00-07:00,21.09000015258789,60.0,60000.0 +8872,2025-06-10T15:36:00-07:00,21.08333460489909,60.0,60000.0 +8873,2025-06-10T15:37:00-07:00,21.086000823974608,60.0,60000.0 +8874,2025-06-10T15:38:00-07:00,21.08500099182129,60.0,60000.0 +8875,2025-06-10T15:39:00-07:00,21.09166653951009,60.0,60000.0 +8876,2025-06-10T15:40:00-07:00,21.095999908447265,60.0,60000.0 +8877,2025-06-10T15:41:00-07:00,21.101665496826172,60.0,60000.0 +8878,2025-06-10T15:42:00-07:00,21.108332951863606,60.0,60000.0 +8879,2025-06-10T15:43:00-07:00,21.115999603271483,60.0,60000.0 +8880,2025-06-10T15:44:00-07:00,21.114999771118164,60.0,60000.0 +8881,2025-06-10T15:45:00-07:00,21.105000178019207,60.0,60000.0 +8882,2025-06-10T15:46:00-07:00,21.099999237060548,60.0,60000.0 +8883,2025-06-10T15:47:00-07:00,21.09000015258789,60.0,60000.0 +8884,2025-06-10T15:48:00-07:00,21.081668217976887,60.0,60000.0 +8885,2025-06-10T15:49:00-07:00,21.072000885009764,60.0,60000.0 +8886,2025-06-10T15:50:00-07:00,21.061667760213215,60.0,60000.0 +8887,2025-06-10T15:51:00-07:00,21.058334350585938,60.0,60000.0 +8888,2025-06-10T15:52:00-07:00,21.060000610351562,60.0,60000.0 +8889,2025-06-10T15:53:00-07:00,21.065000534057617,60.0,60000.0 +8890,2025-06-10T15:54:00-07:00,21.065000534057617,60.0,60000.0 +8891,2025-06-10T15:55:00-07:00,21.06999969482422,60.0,60000.0 +8892,2025-06-10T15:56:00-07:00,21.071666717529297,60.0,60000.0 +8893,2025-06-10T15:57:00-07:00,21.071666717529297,60.0,60000.0 +8894,2025-06-10T15:58:00-07:00,21.08200149536133,60.0,60000.0 +8895,2025-06-10T15:59:00-07:00,21.08666737874349,60.0,60000.0 +8896,2025-06-10T16:00:00-07:00,21.08833376566569,60.0,60000.0 +8897,2025-06-10T16:01:00-07:00,21.093999481201173,60.0,60000.0 +8898,2025-06-10T16:02:00-07:00,21.09666570027669,60.0,60000.0 +8899,2025-06-10T16:03:00-07:00,21.099999109903973,60.0,60000.0 +8900,2025-06-10T16:04:00-07:00,21.105999755859376,60.0,60000.0 +8901,2025-06-10T16:05:00-07:00,21.108333587646484,60.0,60000.0 +8902,2025-06-10T16:06:00-07:00,21.106666564941406,60.0,60000.0 +8903,2025-06-10T16:07:00-07:00,21.103998565673827,60.0,60000.0 +8904,2025-06-10T16:08:00-07:00,21.099999109903973,60.0,60000.0 +8905,2025-06-10T16:09:00-07:00,21.099999109903973,60.0,60000.0 +8906,2025-06-10T16:10:00-07:00,21.10199890136719,60.0,60000.0 +8907,2025-06-10T16:11:00-07:00,21.098332087198894,60.0,60000.0 +8908,2025-06-10T16:12:00-07:00,21.099998474121094,60.0,60000.0 +8909,2025-06-10T16:13:00-07:00,21.10199890136719,60.0,60000.0 +8910,2025-06-10T16:14:00-07:00,21.094999313354492,60.0,60000.0 +8911,2025-06-10T16:15:00-07:00,21.08666737874349,60.0,60000.0 +8912,2025-06-10T16:16:00-07:00,21.08200149536133,60.0,60000.0 +8913,2025-06-10T16:17:00-07:00,21.081668217976887,60.0,60000.0 +8914,2025-06-10T16:18:00-07:00,21.081668217976887,60.0,60000.0 +8915,2025-06-10T16:19:00-07:00,21.08800048828125,60.0,60000.0 +8916,2025-06-10T16:20:00-07:00,21.075000762939453,60.0,60000.0 +8917,2025-06-10T16:21:00-07:00,21.06833330790202,60.0,60000.0 +8918,2025-06-10T16:22:00-07:00,21.0640007019043,60.0,60000.0 +8919,2025-06-10T16:23:00-07:00,21.060001373291016,60.0,60000.0 +8920,2025-06-10T16:24:00-07:00,21.060001373291016,60.0,60000.0 +8921,2025-06-10T16:25:00-07:00,21.068000030517577,60.0,60000.0 +8922,2025-06-10T16:26:00-07:00,21.07833480834961,60.0,60000.0 +8923,2025-06-10T16:27:00-07:00,21.07666778564453,60.0,60000.0 +8924,2025-06-10T16:28:00-07:00,21.08200149536133,60.0,60000.0 +8925,2025-06-10T16:29:00-07:00,21.07666778564453,60.0,60000.0 +8926,2025-06-10T16:30:00-07:00,21.073333740234375,60.0,60000.0 +8927,2025-06-10T16:31:00-07:00,21.0760009765625,60.0,60000.0 +8928,2025-06-10T16:32:00-07:00,21.073333740234375,60.0,60000.0 +8929,2025-06-10T16:33:00-07:00,21.073333740234375,60.0,60000.0 +8930,2025-06-10T16:34:00-07:00,21.0760009765625,60.0,60000.0 +8931,2025-06-10T16:35:00-07:00,21.081668217976887,60.0,60000.0 +8932,2025-06-10T16:36:00-07:00,21.09166653951009,60.0,60000.0 +8933,2025-06-10T16:37:00-07:00,21.086000823974608,60.0,60000.0 +8934,2025-06-10T16:38:00-07:00,21.08833376566569,60.0,60000.0 +8935,2025-06-10T16:39:00-07:00,21.08666737874349,60.0,60000.0 +8936,2025-06-10T16:40:00-07:00,21.086000823974608,60.0,60000.0 +8937,2025-06-10T16:41:00-07:00,21.09166653951009,60.0,60000.0 +8938,2025-06-10T16:42:00-07:00,21.099999109903973,60.0,60000.0 +8939,2025-06-10T16:43:00-07:00,21.104999542236328,60.0,60000.0 +8940,2025-06-10T16:44:00-07:00,21.108000183105467,60.0,60000.0 +8941,2025-06-10T16:45:00-07:00,21.109999974568684,60.0,60000.0 +8942,2025-06-10T16:46:00-07:00,21.108333587646484,60.0,60000.0 +8943,2025-06-10T16:47:00-07:00,21.099998474121094,60.0,60000.0 +8944,2025-06-10T16:48:00-07:00,21.10333251953125,60.0,60000.0 +8945,2025-06-10T16:49:00-07:00,21.10333251953125,60.0,60000.0 +8946,2025-06-10T16:50:00-07:00,21.108000183105467,60.0,60000.0 +8947,2025-06-10T16:51:00-07:00,21.106666564941406,60.0,60000.0 +8948,2025-06-10T16:52:00-07:00,21.101665496826172,60.0,60000.0 +8949,2025-06-10T16:53:00-07:00,21.105999755859376,60.0,60000.0 +8950,2025-06-10T16:54:00-07:00,21.108333587646484,60.0,60000.0 +8951,2025-06-10T16:55:00-07:00,21.114999771118164,60.0,60000.0 +8952,2025-06-10T16:56:00-07:00,21.110000610351562,60.0,60000.0 +8953,2025-06-10T16:57:00-07:00,21.113333384195965,60.0,60000.0 +8954,2025-06-10T16:58:00-07:00,21.104999542236328,60.0,60000.0 +8955,2025-06-10T16:59:00-07:00,21.108000183105467,60.0,60000.0 +8956,2025-06-10T17:00:00-07:00,21.10333251953125,60.0,60000.0 +8957,2025-06-10T17:01:00-07:00,21.106666564941406,60.0,60000.0 +8958,2025-06-10T17:02:00-07:00,21.10399932861328,60.0,60000.0 +8959,2025-06-10T17:03:00-07:00,21.10333315531413,60.0,60000.0 +8960,2025-06-10T17:04:00-07:00,21.09666570027669,60.0,60000.0 +8961,2025-06-10T17:05:00-07:00,21.091999816894532,60.0,60000.0 +8962,2025-06-10T17:06:00-07:00,21.081668217976887,60.0,60000.0 +8963,2025-06-10T17:07:00-07:00,21.08166758219401,60.0,60000.0 +8964,2025-06-10T17:08:00-07:00,21.09000015258789,60.0,60000.0 +8965,2025-06-10T17:09:00-07:00,21.094999313354492,60.0,60000.0 +8966,2025-06-10T17:10:00-07:00,21.106666564941406,60.0,60000.0 +8967,2025-06-10T17:11:00-07:00,21.105999755859376,60.0,60000.0 +8968,2025-06-10T17:12:00-07:00,21.113333384195965,60.0,60000.0 +8969,2025-06-10T17:13:00-07:00,21.118332544962566,60.0,60000.0 +8970,2025-06-10T17:14:00-07:00,21.119998931884766,60.0,60000.0 +8971,2025-06-10T17:15:00-07:00,21.125,60.0,60000.0 +8972,2025-06-10T17:16:00-07:00,21.133333841959637,60.0,60000.0 +8973,2025-06-10T17:17:00-07:00,21.144000244140624,60.0,60000.0 +8974,2025-06-10T17:18:00-07:00,21.14833386739095,60.0,60000.0 +8975,2025-06-10T17:19:00-07:00,21.155000686645508,60.0,60000.0 +8976,2025-06-10T17:20:00-07:00,21.16199951171875,60.0,60000.0 +8977,2025-06-10T17:21:00-07:00,21.16666539510091,60.0,60000.0 +8978,2025-06-10T17:22:00-07:00,21.18500010172526,60.0,60000.0 +8979,2025-06-10T17:23:00-07:00,21.202000427246094,60.0,60000.0 +8980,2025-06-10T17:24:00-07:00,21.211666742960613,60.0,60000.0 +8981,2025-06-10T17:25:00-07:00,21.22833315531413,60.0,60000.0 +8982,2025-06-10T17:26:00-07:00,21.23600082397461,60.0,60000.0 +8983,2025-06-10T17:27:00-07:00,21.240001678466797,60.0,60000.0 +8984,2025-06-10T17:28:00-07:00,21.2450008392334,60.0,60000.0 +8985,2025-06-10T17:29:00-07:00,21.242001342773438,60.0,60000.0 +8986,2025-06-10T17:30:00-07:00,21.233333587646484,60.0,60000.0 +8987,2025-06-10T17:31:00-07:00,21.22166697184245,60.0,60000.0 +8988,2025-06-10T17:32:00-07:00,21.220001220703125,60.0,60000.0 +8989,2025-06-10T17:33:00-07:00,21.21500015258789,60.0,60000.0 +8990,2025-06-10T17:34:00-07:00,21.206666310628254,60.0,60000.0 +8991,2025-06-10T17:35:00-07:00,21.207999420166015,60.0,60000.0 +8992,2025-06-10T17:36:00-07:00,21.208332697550457,60.0,60000.0 +8993,2025-06-10T17:37:00-07:00,21.209999084472656,60.0,60000.0 +8994,2025-06-10T17:38:00-07:00,21.207999420166015,60.0,60000.0 +8995,2025-06-10T17:39:00-07:00,21.208332697550457,60.0,60000.0 +8996,2025-06-10T17:40:00-07:00,21.208332697550457,60.0,60000.0 +8997,2025-06-10T17:41:00-07:00,21.209999084472656,60.0,60000.0 +8998,2025-06-10T17:42:00-07:00,21.19166628519694,60.0,60000.0 +8999,2025-06-10T17:43:00-07:00,21.17333221435547,60.0,60000.0 +9000,2025-06-10T17:44:00-07:00,21.15999984741211,60.0,60000.0 +9001,2025-06-10T17:45:00-07:00,21.155000686645508,60.0,60000.0 +9002,2025-06-10T17:46:00-07:00,21.151667912801106,60.0,60000.0 +9003,2025-06-10T17:47:00-07:00,21.136000061035155,60.0,60000.0 +9004,2025-06-10T17:48:00-07:00,21.118332544962566,60.0,60000.0 +9005,2025-06-10T17:49:00-07:00,21.113333384195965,60.0,60000.0 +9006,2025-06-10T17:50:00-07:00,21.113999938964845,60.0,60000.0 +9007,2025-06-10T17:51:00-07:00,21.104999542236328,60.0,60000.0 +9008,2025-06-10T17:52:00-07:00,21.098332087198894,60.0,60000.0 +9009,2025-06-10T17:53:00-07:00,21.091999816894532,60.0,60000.0 +9010,2025-06-10T17:54:00-07:00,21.08666737874349,60.0,60000.0 +9011,2025-06-10T17:55:00-07:00,21.07833480834961,60.0,60000.0 +9012,2025-06-10T17:56:00-07:00,21.072000122070314,60.0,60000.0 +9013,2025-06-10T17:57:00-07:00,21.070000330607098,60.0,60000.0 +9014,2025-06-10T17:58:00-07:00,21.06833330790202,60.0,60000.0 +9015,2025-06-10T17:59:00-07:00,21.05800094604492,60.0,60000.0 +9016,2025-06-10T18:00:00-07:00,21.043333053588867,60.0,60000.0 +9017,2025-06-10T18:01:00-07:00,21.029999415079754,60.0,60000.0 +9018,2025-06-10T18:02:00-07:00,21.025999450683592,60.0,60000.0 +9019,2025-06-10T18:03:00-07:00,21.021666208902996,60.0,60000.0 +9020,2025-06-10T18:04:00-07:00,21.023333231608074,60.0,60000.0 +9021,2025-06-10T18:05:00-07:00,21.020000457763672,60.0,60000.0 +9022,2025-06-10T18:06:00-07:00,21.01399917602539,60.0,60000.0 +9023,2025-06-10T18:07:00-07:00,21.008331934611004,60.0,60000.0 +9024,2025-06-10T18:08:00-07:00,21.0066655476888,60.0,60000.0 +9025,2025-06-10T18:09:00-07:00,21.009998321533203,60.0,60000.0 +9026,2025-06-10T18:10:00-07:00,21.01166534423828,60.0,60000.0 +9027,2025-06-10T18:11:00-07:00,21.020000457763672,60.0,60000.0 +9028,2025-06-10T18:12:00-07:00,21.027999114990234,60.0,60000.0 +9029,2025-06-10T18:13:00-07:00,21.046667098999023,60.0,60000.0 +9030,2025-06-10T18:14:00-07:00,21.075000762939453,60.0,60000.0 +9031,2025-06-10T18:15:00-07:00,21.104000091552734,60.0,60000.0 +9032,2025-06-10T18:16:00-07:00,21.143334070841473,60.0,60000.0 +9033,2025-06-10T18:17:00-07:00,21.169999440511067,60.0,60000.0 +9034,2025-06-10T18:18:00-07:00,21.205999755859374,60.0,60000.0 +9035,2025-06-10T18:19:00-07:00,21.25499979654948,60.0,60000.0 +9036,2025-06-10T18:20:00-07:00,21.296667098999023,60.0,60000.0 +9037,2025-06-10T18:21:00-07:00,21.32400131225586,60.0,60000.0 +9038,2025-06-10T18:22:00-07:00,21.35166613260905,60.0,60000.0 +9039,2025-06-10T18:23:00-07:00,21.39666684468587,60.0,60000.0 +9040,2025-06-10T18:24:00-07:00,21.44199981689453,60.0,60000.0 +9041,2025-06-10T18:25:00-07:00,21.478333791097004,60.0,60000.0 +9042,2025-06-10T18:26:00-07:00,21.5016663869222,60.0,60000.0 +9043,2025-06-10T18:27:00-07:00,21.503999328613283,60.0,60000.0 +9044,2025-06-10T18:28:00-07:00,21.508331934611004,60.0,60000.0 +9045,2025-06-10T18:29:00-07:00,21.48833401997884,60.0,60000.0 +9046,2025-06-10T18:30:00-07:00,21.47000045776367,60.0,60000.0 +9047,2025-06-10T18:31:00-07:00,21.4516658782959,60.0,60000.0 +9048,2025-06-10T18:32:00-07:00,21.434999465942383,60.0,60000.0 +9049,2025-06-10T18:33:00-07:00,21.413999176025392,60.0,60000.0 +9050,2025-06-10T18:34:00-07:00,21.388333002726238,60.0,60000.0 +9051,2025-06-10T18:35:00-07:00,21.388333638509113,60.0,60000.0 +9052,2025-06-10T18:36:00-07:00,21.39000015258789,60.0,60000.0 +9053,2025-06-10T18:37:00-07:00,21.371666590372723,60.0,60000.0 +9054,2025-06-10T18:38:00-07:00,21.358333587646484,60.0,60000.0 +9055,2025-06-10T18:39:00-07:00,21.355999755859376,60.0,60000.0 +9056,2025-06-10T18:40:00-07:00,21.361666997273762,60.0,60000.0 +9057,2025-06-10T18:41:00-07:00,21.364285605294363,60.0,60000.0 +9058,2025-06-10T18:42:00-07:00,21.36999969482422,60.0,60000.0 +9059,2025-06-10T18:43:00-07:00,21.380000432332356,60.0,60000.0 +9060,2025-06-10T18:44:00-07:00,21.388333002726238,60.0,60000.0 +9061,2025-06-10T18:45:00-07:00,21.391999816894533,60.0,60000.0 +9062,2025-06-10T18:46:00-07:00,21.400000890096027,60.0,60000.0 +9063,2025-06-10T18:47:00-07:00,21.401667912801106,60.0,60000.0 +9064,2025-06-10T18:48:00-07:00,21.400000762939452,60.0,60000.0 +9065,2025-06-10T18:49:00-07:00,21.391667048136394,60.0,60000.0 +9066,2025-06-10T18:50:00-07:00,21.386666615804035,60.0,60000.0 +9067,2025-06-10T18:51:00-07:00,21.382000732421876,60.0,60000.0 +9068,2025-06-10T18:52:00-07:00,21.378334045410156,60.0,60000.0 +9069,2025-06-10T18:53:00-07:00,21.368332544962566,60.0,60000.0 +9070,2025-06-10T18:54:00-07:00,21.355998992919922,60.0,60000.0 +9071,2025-06-10T18:55:00-07:00,21.358333587646484,60.0,60000.0 +9072,2025-06-10T18:56:00-07:00,21.351665496826172,60.0,60000.0 +9073,2025-06-10T18:57:00-07:00,21.35199890136719,60.0,60000.0 +9074,2025-06-10T18:58:00-07:00,21.35333251953125,60.0,60000.0 +9075,2025-06-10T18:59:00-07:00,21.361666997273762,60.0,60000.0 +9076,2025-06-10T19:00:00-07:00,21.37199935913086,60.0,60000.0 +9077,2025-06-10T19:01:00-07:00,21.386666615804035,60.0,60000.0 +9078,2025-06-10T19:02:00-07:00,21.406667073567707,60.0,60000.0 +9079,2025-06-10T19:03:00-07:00,21.427999114990236,60.0,60000.0 +9080,2025-06-10T19:04:00-07:00,21.446666717529297,60.0,60000.0 +9081,2025-06-10T19:05:00-07:00,21.47166697184245,60.0,60000.0 +9082,2025-06-10T19:06:00-07:00,21.493999481201172,60.0,60000.0 +9083,2025-06-10T19:07:00-07:00,21.49166742960612,60.0,60000.0 +9084,2025-06-10T19:08:00-07:00,21.485000610351562,60.0,60000.0 +9085,2025-06-10T19:09:00-07:00,21.477999877929687,60.0,60000.0 +9086,2025-06-10T19:10:00-07:00,21.470000584920246,60.0,60000.0 +9087,2025-06-10T19:11:00-07:00,21.47166697184245,60.0,60000.0 +9088,2025-06-10T19:12:00-07:00,21.477999877929687,60.0,60000.0 +9089,2025-06-10T19:13:00-07:00,21.49166742960612,60.0,60000.0 +9090,2025-06-10T19:14:00-07:00,21.4933344523112,60.0,60000.0 +9091,2025-06-10T19:15:00-07:00,21.4983336130778,60.0,60000.0 +9092,2025-06-10T19:16:00-07:00,21.50599899291992,60.0,60000.0 +9093,2025-06-10T19:17:00-07:00,21.51166534423828,60.0,60000.0 +9094,2025-06-10T19:18:00-07:00,21.509999593098957,60.0,60000.0 +9095,2025-06-10T19:19:00-07:00,21.507998657226562,60.0,60000.0 +9096,2025-06-10T19:20:00-07:00,21.503332773844402,60.0,60000.0 +9097,2025-06-10T19:21:00-07:00,21.481667200724285,60.0,60000.0 +9098,2025-06-10T19:22:00-07:00,21.48600082397461,60.0,60000.0 +9099,2025-06-10T19:23:00-07:00,21.48833465576172,60.0,60000.0 +9100,2025-06-10T19:24:00-07:00,21.494999567667644,60.0,60000.0 +9101,2025-06-10T19:25:00-07:00,21.52199935913086,60.0,60000.0 +9102,2025-06-10T19:26:00-07:00,21.55833371480306,60.0,60000.0 +9103,2025-06-10T19:27:00-07:00,21.606666564941406,60.0,60000.0 +9104,2025-06-10T19:28:00-07:00,21.66199951171875,60.0,60000.0 +9105,2025-06-10T19:29:00-07:00,21.689999262491863,60.0,60000.0 +9106,2025-06-10T19:30:00-07:00,21.700000127156574,60.0,60000.0 +9107,2025-06-10T19:31:00-07:00,21.698000335693358,60.0,60000.0 +9108,2025-06-10T19:32:00-07:00,21.676665623982746,60.0,60000.0 +9109,2025-06-10T19:33:00-07:00,21.656667073567707,60.0,60000.0 +9110,2025-06-10T19:34:00-07:00,21.656000518798827,60.0,60000.0 +9111,2025-06-10T19:35:00-07:00,21.654286520821707,60.0,60000.0 +9112,2025-06-10T19:36:00-07:00,21.656667073567707,60.0,60000.0 +9113,2025-06-10T19:37:00-07:00,21.650001525878906,60.0,60000.0 +9114,2025-06-10T19:38:00-07:00,21.645000457763672,60.0,60000.0 +9115,2025-06-10T19:39:00-07:00,21.641667048136394,60.0,60000.0 +9116,2025-06-10T19:40:00-07:00,21.623999786376952,60.0,60000.0 +9117,2025-06-10T19:41:00-07:00,21.619998931884766,60.0,60000.0 +9118,2025-06-10T19:42:00-07:00,21.614999771118164,60.0,60000.0 +9119,2025-06-10T19:43:00-07:00,21.615999603271483,60.0,60000.0 +9120,2025-06-10T19:44:00-07:00,21.621665954589844,60.0,60000.0 +9121,2025-06-10T19:45:00-07:00,21.601665496826172,60.0,60000.0 +9122,2025-06-10T19:46:00-07:00,21.60399932861328,60.0,60000.0 +9123,2025-06-10T19:47:00-07:00,21.616666158040363,60.0,60000.0 +9124,2025-06-10T19:48:00-07:00,21.628334045410156,60.0,60000.0 +9125,2025-06-10T19:49:00-07:00,21.63800048828125,60.0,60000.0 +9126,2025-06-10T19:50:00-07:00,21.689999262491863,60.0,60000.0 +9127,2025-06-10T19:51:00-07:00,21.765000025431316,60.0,60000.0 +9128,2025-06-10T19:52:00-07:00,21.844000244140624,60.0,60000.0 +9129,2025-06-10T19:53:00-07:00,21.906667073567707,60.0,60000.0 +9130,2025-06-10T19:54:00-07:00,21.961666742960613,60.0,60000.0 +9131,2025-06-10T19:55:00-07:00,21.994000244140626,60.0,60000.0 +9132,2025-06-10T19:56:00-07:00,22.031666437784832,60.0,60000.0 +9133,2025-06-10T19:57:00-07:00,22.08166758219401,60.0,60000.0 +9134,2025-06-10T19:58:00-07:00,22.137999725341796,60.0,60000.0 +9135,2025-06-10T19:59:00-07:00,22.181666056315105,60.0,60000.0 +9136,2025-06-10T20:00:00-07:00,22.238333384195965,60.0,60000.0 +9137,2025-06-10T20:01:00-07:00,22.273999786376955,60.0,60000.0 +9138,2025-06-10T20:02:00-07:00,22.301666895548504,60.0,60000.0 +9139,2025-06-10T20:03:00-07:00,22.34666633605957,60.0,60000.0 +9140,2025-06-10T20:04:00-07:00,22.370000457763673,60.0,60000.0 +9141,2025-06-10T20:05:00-07:00,22.40500005086263,60.0,60000.0 +9142,2025-06-10T20:06:00-07:00,22.43666648864746,60.0,60000.0 +9143,2025-06-10T20:07:00-07:00,22.45800018310547,60.0,60000.0 +9144,2025-06-10T20:08:00-07:00,22.448333104451496,60.0,60000.0 +9145,2025-06-10T20:09:00-07:00,22.423332850138348,60.0,60000.0 +9146,2025-06-10T20:10:00-07:00,22.394001007080078,60.0,60000.0 +9147,2025-06-10T20:11:00-07:00,22.358333587646484,60.0,60000.0 +9148,2025-06-10T20:12:00-07:00,22.325000762939453,60.0,60000.0 +9149,2025-06-10T20:13:00-07:00,22.297999572753906,60.0,60000.0 +9150,2025-06-10T20:14:00-07:00,22.28333282470703,60.0,60000.0 +9151,2025-06-10T20:15:00-07:00,22.279998779296875,60.0,60000.0 +9152,2025-06-10T20:16:00-07:00,22.273999786376955,60.0,60000.0 +9153,2025-06-10T20:17:00-07:00,22.265000025431316,60.0,60000.0 +9154,2025-06-10T20:18:00-07:00,22.241666793823242,60.0,60000.0 +9155,2025-06-10T20:19:00-07:00,22.224000549316408,60.0,60000.0 +9156,2025-06-10T20:20:00-07:00,22.19333267211914,60.0,60000.0 +9157,2025-06-10T20:21:00-07:00,22.16666539510091,60.0,60000.0 +9158,2025-06-10T20:22:00-07:00,22.152001190185548,60.0,60000.0 +9159,2025-06-10T20:23:00-07:00,22.150000890096027,60.0,60000.0 +9160,2025-06-10T20:24:00-07:00,22.151667912801106,60.0,60000.0 +9161,2025-06-10T20:25:00-07:00,22.15,60.0,60000.0 +9162,2025-06-10T20:26:00-07:00,22.12999979654948,60.0,60000.0 +9163,2025-06-10T20:27:00-07:00,22.111666361490887,60.0,60000.0 +9164,2025-06-10T20:28:00-07:00,22.093999481201173,60.0,60000.0 +9165,2025-06-10T20:29:00-07:00,22.09000015258789,60.0,60000.0 +9166,2025-06-10T20:30:00-07:00,22.08666737874349,60.0,60000.0 +9167,2025-06-10T20:31:00-07:00,22.099999237060548,60.0,60000.0 +9168,2025-06-10T20:32:00-07:00,22.115000406901043,60.0,60000.0 +9169,2025-06-10T20:33:00-07:00,22.14666748046875,60.0,60000.0 +9170,2025-06-10T20:34:00-07:00,22.16999969482422,60.0,60000.0 +9171,2025-06-10T20:35:00-07:00,22.200000127156574,60.0,60000.0 +9172,2025-06-10T20:36:00-07:00,22.226666768391926,60.0,60000.0 +9173,2025-06-10T20:37:00-07:00,22.223333994547527,60.0,60000.0 +9174,2025-06-10T20:38:00-07:00,22.21800079345703,60.0,60000.0 +9175,2025-06-10T20:39:00-07:00,22.221667607625324,60.0,60000.0 +9176,2025-06-10T20:40:00-07:00,22.221667607625324,60.0,60000.0 +9177,2025-06-10T20:41:00-07:00,22.220001220703125,60.0,60000.0 +9178,2025-06-10T20:42:00-07:00,22.200000127156574,60.0,60000.0 +9179,2025-06-10T20:43:00-07:00,22.184999465942383,60.0,60000.0 +9180,2025-06-10T20:44:00-07:00,22.18000030517578,60.0,60000.0 +9181,2025-06-10T20:45:00-07:00,22.169999440511067,60.0,60000.0 +9182,2025-06-10T20:46:00-07:00,22.156667073567707,60.0,60000.0 +9183,2025-06-10T20:47:00-07:00,22.144000244140624,60.0,60000.0 +9184,2025-06-10T20:48:00-07:00,22.141666412353516,60.0,60000.0 +9185,2025-06-10T20:49:00-07:00,22.16333262125651,60.0,60000.0 +9186,2025-06-10T20:50:00-07:00,22.171998596191408,60.0,60000.0 +9187,2025-06-10T20:51:00-07:00,22.174999237060547,60.0,60000.0 +9188,2025-06-10T20:52:00-07:00,22.178333282470703,60.0,60000.0 +9189,2025-06-10T20:53:00-07:00,22.16799850463867,60.0,60000.0 +9190,2025-06-10T20:54:00-07:00,22.169998168945312,60.0,60000.0 +9191,2025-06-10T20:55:00-07:00,22.156667073567707,60.0,60000.0 +9192,2025-06-10T20:56:00-07:00,22.140000915527345,60.0,60000.0 +9193,2025-06-10T20:57:00-07:00,22.116666793823242,60.0,60000.0 +9194,2025-06-10T20:58:00-07:00,22.068333943684895,60.0,60000.0 +9195,2025-06-10T20:59:00-07:00,22.034000396728516,60.0,60000.0 +9196,2025-06-10T21:00:00-07:00,22.026666005452473,60.0,60000.0 +9197,2025-06-10T21:01:00-07:00,22.028332392374676,60.0,60000.0 +9198,2025-06-10T21:02:00-07:00,22.02999954223633,60.0,60000.0 +9199,2025-06-10T21:03:00-07:00,22.043333689371746,60.0,60000.0 +9200,2025-06-10T21:04:00-07:00,22.049999872843426,60.0,60000.0 +9201,2025-06-10T21:05:00-07:00,22.051999664306642,60.0,60000.0 +9202,2025-06-10T21:06:00-07:00,22.060000737508137,60.0,60000.0 +9203,2025-06-10T21:07:00-07:00,22.06166712443034,60.0,60000.0 +9204,2025-06-10T21:08:00-07:00,22.062001037597657,60.0,60000.0 +9205,2025-06-10T21:09:00-07:00,22.058334350585938,60.0,60000.0 +9206,2025-06-10T21:10:00-07:00,22.048333485921223,60.0,60000.0 +9207,2025-06-10T21:11:00-07:00,22.03800048828125,60.0,60000.0 +9208,2025-06-10T21:12:00-07:00,22.023333231608074,60.0,60000.0 +9209,2025-06-10T21:13:00-07:00,22.01166534423828,60.0,60000.0 +9210,2025-06-10T21:14:00-07:00,22.00199966430664,60.0,60000.0 +9211,2025-06-10T21:15:00-07:00,21.97333335876465,60.0,60000.0 +9212,2025-06-10T21:16:00-07:00,21.946666717529297,60.0,60000.0 +9213,2025-06-10T21:17:00-07:00,21.91800003051758,60.0,60000.0 +9214,2025-06-10T21:18:00-07:00,21.888333638509113,60.0,60000.0 +9215,2025-06-10T21:19:00-07:00,21.863332748413086,60.0,60000.0 +9216,2025-06-10T21:20:00-07:00,21.84599914550781,60.0,60000.0 +9217,2025-06-10T21:21:00-07:00,21.83166758219401,60.0,60000.0 +9218,2025-06-10T21:22:00-07:00,21.81000010172526,60.0,60000.0 +9219,2025-06-10T21:23:00-07:00,21.794001007080077,60.0,60000.0 +9220,2025-06-10T21:24:00-07:00,21.793333689371746,60.0,60000.0 +9221,2025-06-10T21:25:00-07:00,21.78333282470703,60.0,60000.0 +9222,2025-06-10T21:26:00-07:00,21.755999755859374,60.0,60000.0 +9223,2025-06-10T21:27:00-07:00,21.718333562215168,60.0,60000.0 +9224,2025-06-10T21:28:00-07:00,21.706666946411133,60.0,60000.0 +9225,2025-06-10T21:29:00-07:00,21.71199951171875,60.0,60000.0 +9226,2025-06-10T21:30:00-07:00,21.723333994547527,60.0,60000.0 +9227,2025-06-10T21:31:00-07:00,21.72833315531413,60.0,60000.0 +9228,2025-06-10T21:32:00-07:00,21.729999542236328,60.0,60000.0 +9229,2025-06-10T21:33:00-07:00,21.729999542236328,60.0,60000.0 +9230,2025-06-10T21:34:00-07:00,21.72833315531413,60.0,60000.0 +9231,2025-06-10T21:35:00-07:00,21.710000610351564,60.0,60000.0 +9232,2025-06-10T21:36:00-07:00,21.704999923706055,60.0,60000.0 +9233,2025-06-10T21:37:00-07:00,21.684998830159504,60.0,60000.0 +9234,2025-06-10T21:38:00-07:00,21.66199951171875,60.0,60000.0 +9235,2025-06-10T21:39:00-07:00,21.650001525878906,60.0,60000.0 +9236,2025-06-10T21:40:00-07:00,21.65999984741211,60.0,60000.0 +9237,2025-06-10T21:41:00-07:00,21.671998596191408,60.0,60000.0 +9238,2025-06-10T21:42:00-07:00,21.69499969482422,60.0,60000.0 +9239,2025-06-10T21:43:00-07:00,21.714999516805012,60.0,60000.0 +9240,2025-06-10T21:44:00-07:00,21.724000549316408,60.0,60000.0 +9241,2025-06-10T21:45:00-07:00,21.736666997273762,60.0,60000.0 +9242,2025-06-10T21:46:00-07:00,21.7549991607666,60.0,60000.0 +9243,2025-06-10T21:47:00-07:00,21.768000030517577,60.0,60000.0 +9244,2025-06-10T21:48:00-07:00,21.7549991607666,60.0,60000.0 +9245,2025-06-10T21:49:00-07:00,21.7483336130778,60.0,60000.0 +9246,2025-06-10T21:50:00-07:00,21.765999603271485,60.0,60000.0 +9247,2025-06-10T21:51:00-07:00,21.781666437784832,60.0,60000.0 +9248,2025-06-10T21:52:00-07:00,21.80666669209798,60.0,60000.0 +9249,2025-06-10T21:53:00-07:00,21.81800079345703,60.0,60000.0 +9250,2025-06-10T21:54:00-07:00,21.831668217976887,60.0,60000.0 +9251,2025-06-10T21:55:00-07:00,21.84166653951009,60.0,60000.0 +9252,2025-06-10T21:56:00-07:00,21.84599914550781,60.0,60000.0 +9253,2025-06-10T21:57:00-07:00,21.84166653951009,60.0,60000.0 +9254,2025-06-10T21:58:00-07:00,21.84666570027669,60.0,60000.0 +9255,2025-06-10T21:59:00-07:00,21.83833376566569,60.0,60000.0 +9256,2025-06-10T22:00:00-07:00,21.82833417256673,60.0,60000.0 +9257,2025-06-10T22:01:00-07:00,21.81166712443034,60.0,60000.0 +9258,2025-06-10T22:02:00-07:00,21.796666463216145,60.0,60000.0 +9259,2025-06-10T22:03:00-07:00,21.783999633789062,60.0,60000.0 +9260,2025-06-10T22:04:00-07:00,21.77166684468587,60.0,60000.0 +9261,2025-06-10T22:05:00-07:00,21.78999964396159,60.0,60000.0 +9262,2025-06-10T22:06:00-07:00,21.81999969482422,60.0,60000.0 +9263,2025-06-10T22:07:00-07:00,21.861666361490887,60.0,60000.0 +9264,2025-06-10T22:08:00-07:00,21.881667455037434,60.0,60000.0 +9265,2025-06-10T22:09:00-07:00,21.89000015258789,60.0,60000.0 +9266,2025-06-10T22:10:00-07:00,21.890000025431316,60.0,60000.0 +9267,2025-06-10T22:11:00-07:00,21.886667251586914,60.0,60000.0 +9268,2025-06-10T22:12:00-07:00,21.90199966430664,60.0,60000.0 +9269,2025-06-10T22:13:00-07:00,21.90333429972331,60.0,60000.0 +9270,2025-06-10T22:14:00-07:00,21.900000254313152,60.0,60000.0 +9271,2025-06-10T22:15:00-07:00,21.88800048828125,60.0,60000.0 +9272,2025-06-10T22:16:00-07:00,21.888333002726238,60.0,60000.0 +9273,2025-06-10T22:17:00-07:00,21.900000890096027,60.0,60000.0 +9274,2025-06-10T22:18:00-07:00,21.913999176025392,60.0,60000.0 +9275,2025-06-10T22:19:00-07:00,21.928332646687824,60.0,60000.0 +9276,2025-06-10T22:20:00-07:00,21.938332239786785,60.0,60000.0 +9277,2025-06-10T22:21:00-07:00,21.931999969482423,60.0,60000.0 +9278,2025-06-10T22:22:00-07:00,21.91499900817871,60.0,60000.0 +9279,2025-06-10T22:23:00-07:00,21.89666684468587,60.0,60000.0 +9280,2025-06-10T22:24:00-07:00,21.874000549316406,60.0,60000.0 +9281,2025-06-10T22:25:00-07:00,21.845000584920246,60.0,60000.0 +9282,2025-06-10T22:26:00-07:00,21.810000737508137,60.0,60000.0 +9283,2025-06-10T22:27:00-07:00,21.784000396728516,60.0,60000.0 +9284,2025-06-10T22:28:00-07:00,21.751667022705078,60.0,60000.0 +9285,2025-06-10T22:29:00-07:00,21.726666768391926,60.0,60000.0 +9286,2025-06-10T22:30:00-07:00,21.70800018310547,60.0,60000.0 +9287,2025-06-10T22:31:00-07:00,21.69166628519694,60.0,60000.0 +9288,2025-06-10T22:32:00-07:00,21.678333282470703,60.0,60000.0 +9289,2025-06-10T22:33:00-07:00,21.671998596191408,60.0,60000.0 +9290,2025-06-10T22:34:00-07:00,21.66333262125651,60.0,60000.0 +9291,2025-06-10T22:35:00-07:00,21.648334503173828,60.0,60000.0 +9292,2025-06-10T22:36:00-07:00,21.64600067138672,60.0,60000.0 +9293,2025-06-10T22:37:00-07:00,21.628333409627277,60.0,60000.0 +9294,2025-06-10T22:38:00-07:00,21.625,60.0,60000.0 +9295,2025-06-10T22:39:00-07:00,21.61999969482422,60.0,60000.0 +9296,2025-06-10T22:40:00-07:00,21.616666158040363,60.0,60000.0 +9297,2025-06-10T22:41:00-07:00,21.610000610351562,60.0,60000.0 +9298,2025-06-10T22:42:00-07:00,21.610000610351562,60.0,60000.0 +9299,2025-06-10T22:43:00-07:00,21.608332951863606,60.0,60000.0 +9300,2025-06-10T22:44:00-07:00,21.59666570027669,60.0,60000.0 +9301,2025-06-10T22:45:00-07:00,21.58400115966797,60.0,60000.0 +9302,2025-06-10T22:46:00-07:00,21.566666920979817,60.0,60000.0 +9303,2025-06-10T22:47:00-07:00,21.551666895548504,60.0,60000.0 +9304,2025-06-10T22:48:00-07:00,21.544000244140626,60.0,60000.0 +9305,2025-06-10T22:49:00-07:00,21.531666437784832,60.0,60000.0 +9306,2025-06-10T22:50:00-07:00,21.518333435058594,60.0,60000.0 +9307,2025-06-10T22:51:00-07:00,21.507998657226562,60.0,60000.0 +9308,2025-06-10T22:52:00-07:00,21.5016663869222,60.0,60000.0 +9309,2025-06-10T22:53:00-07:00,21.48833401997884,60.0,60000.0 +9310,2025-06-10T22:54:00-07:00,21.47800064086914,60.0,60000.0 +9311,2025-06-10T22:55:00-07:00,21.463333129882812,60.0,60000.0 +9312,2025-06-10T22:56:00-07:00,21.463333129882812,60.0,60000.0 +9313,2025-06-10T22:57:00-07:00,21.46500015258789,60.0,60000.0 +9314,2025-06-10T22:58:00-07:00,21.463999938964843,60.0,60000.0 +9315,2025-06-10T22:59:00-07:00,21.446666081746418,60.0,60000.0 +9316,2025-06-10T23:00:00-07:00,21.424998601277668,60.0,60000.0 +9317,2025-06-10T23:01:00-07:00,21.40400085449219,60.0,60000.0 +9318,2025-06-10T23:02:00-07:00,21.388333002726238,60.0,60000.0 +9319,2025-06-10T23:03:00-07:00,21.37000020345052,60.0,60000.0 +9320,2025-06-10T23:04:00-07:00,21.357999420166017,60.0,60000.0 +9321,2025-06-10T23:05:00-07:00,21.33833376566569,60.0,60000.0 +9322,2025-06-10T23:06:00-07:00,21.316667556762695,60.0,60000.0 +9323,2025-06-10T23:07:00-07:00,21.300000762939455,60.0,60000.0 +9324,2025-06-10T23:08:00-07:00,21.290000279744465,60.0,60000.0 +9325,2025-06-10T23:09:00-07:00,21.304999669392902,60.0,60000.0 +9326,2025-06-10T23:10:00-07:00,21.330001068115234,60.0,60000.0 +9327,2025-06-10T23:11:00-07:00,21.34833272298177,60.0,60000.0 +9328,2025-06-10T23:12:00-07:00,21.371667226155598,60.0,60000.0 +9329,2025-06-10T23:13:00-07:00,21.395999908447266,60.0,60000.0 +9330,2025-06-10T23:14:00-07:00,21.428332646687824,60.0,60000.0 +9331,2025-06-10T23:15:00-07:00,21.46000035603841,60.0,60000.0 +9332,2025-06-10T23:16:00-07:00,21.480001068115236,60.0,60000.0 +9333,2025-06-10T23:17:00-07:00,21.505000432332356,60.0,60000.0 +9334,2025-06-10T23:18:00-07:00,21.519999821980793,60.0,60000.0 +9335,2025-06-10T23:19:00-07:00,21.509999084472657,60.0,60000.0 +9336,2025-06-10T23:20:00-07:00,21.46333376566569,60.0,60000.0 +9337,2025-06-10T23:21:00-07:00,21.41333262125651,60.0,60000.0 +9338,2025-06-10T23:22:00-07:00,21.36399917602539,60.0,60000.0 +9339,2025-06-10T23:23:00-07:00,21.315000534057617,60.0,60000.0 +9340,2025-06-10T23:24:00-07:00,21.266666412353516,60.0,60000.0 +9341,2025-06-10T23:25:00-07:00,21.236000061035156,60.0,60000.0 +9342,2025-06-10T23:26:00-07:00,21.200000127156574,60.0,60000.0 +9343,2025-06-10T23:27:00-07:00,21.156666437784832,60.0,60000.0 +9344,2025-06-10T23:28:00-07:00,21.13000030517578,60.0,60000.0 +9345,2025-06-10T23:29:00-07:00,21.09666633605957,60.0,60000.0 +9346,2025-06-10T23:30:00-07:00,21.070000966389973,60.0,60000.0 +9347,2025-06-10T23:31:00-07:00,21.05600051879883,60.0,60000.0 +9348,2025-06-10T23:32:00-07:00,21.045000076293945,60.0,60000.0 +9349,2025-06-10T23:33:00-07:00,21.041667302449543,60.0,60000.0 +9350,2025-06-10T23:34:00-07:00,21.029998779296875,60.0,60000.0 +9351,2025-06-10T23:35:00-07:00,21.028332392374676,60.0,60000.0 +9352,2025-06-10T23:36:00-07:00,21.018571036202566,60.0,60000.0 +9353,2025-06-10T23:37:00-07:00,21.0119987487793,60.0,60000.0 +9354,2025-06-10T23:38:00-07:00,21.009998957316082,60.0,60000.0 +9355,2025-06-10T23:39:00-07:00,21.018332799275715,60.0,60000.0 +9356,2025-06-10T23:40:00-07:00,21.023999786376955,60.0,60000.0 +9357,2025-06-10T23:41:00-07:00,21.029999415079754,60.0,60000.0 +9358,2025-06-10T23:42:00-07:00,21.040000915527344,60.0,60000.0 +9359,2025-06-10T23:43:00-07:00,21.040000915527344,60.0,60000.0 +9360,2025-06-10T23:44:00-07:00,21.040000915527344,60.0,60000.0 +9361,2025-06-10T23:45:00-07:00,21.041667302449543,60.0,60000.0 +9362,2025-06-10T23:46:00-07:00,21.047999572753906,60.0,60000.0 +9363,2025-06-10T23:47:00-07:00,21.053333282470703,60.0,60000.0 +9364,2025-06-10T23:48:00-07:00,21.058334350585938,60.0,60000.0 +9365,2025-06-10T23:49:00-07:00,21.05800094604492,60.0,60000.0 +9366,2025-06-10T23:50:00-07:00,21.066666920979817,60.0,60000.0 +9367,2025-06-10T23:51:00-07:00,21.08333460489909,60.0,60000.0 +9368,2025-06-10T23:52:00-07:00,21.08800048828125,60.0,60000.0 +9369,2025-06-10T23:53:00-07:00,21.093332926432293,60.0,60000.0 +9370,2025-06-10T23:54:00-07:00,21.09666570027669,60.0,60000.0 +9371,2025-06-10T23:55:00-07:00,21.098332087198894,60.0,60000.0 +9372,2025-06-10T23:56:00-07:00,21.10499890645345,60.0,60000.0 +9373,2025-06-10T23:57:00-07:00,21.114999771118164,60.0,60000.0 +9374,2025-06-10T23:58:00-07:00,21.138333638509113,60.0,60000.0 +9375,2025-06-10T23:59:00-07:00,21.14800109863281,60.0,60000.0 +9376,2025-06-11T00:00:00-07:00,21.15833346048991,60.0,60000.0 +9377,2025-06-11T00:01:00-07:00,21.15999984741211,60.0,60000.0 +9378,2025-06-11T00:02:00-07:00,21.15400085449219,60.0,60000.0 +9379,2025-06-11T00:03:00-07:00,21.141666412353516,60.0,60000.0 +9380,2025-06-11T00:04:00-07:00,21.155000686645508,60.0,60000.0 +9381,2025-06-11T00:05:00-07:00,21.179999542236327,60.0,60000.0 +9382,2025-06-11T00:06:00-07:00,21.201667149861652,60.0,60000.0 +9383,2025-06-11T00:07:00-07:00,21.203333536783855,60.0,60000.0 +9384,2025-06-11T00:08:00-07:00,21.177999877929686,60.0,60000.0 +9385,2025-06-11T00:09:00-07:00,21.15999921162923,60.0,60000.0 +9386,2025-06-11T00:10:00-07:00,21.128333409627277,60.0,60000.0 +9387,2025-06-11T00:11:00-07:00,21.095999908447265,60.0,60000.0 +9388,2025-06-11T00:12:00-07:00,21.070000966389973,60.0,60000.0 +9389,2025-06-11T00:13:00-07:00,21.048333485921223,60.0,60000.0 +9390,2025-06-11T00:14:00-07:00,21.036000061035157,60.0,60000.0 +9391,2025-06-11T00:15:00-07:00,21.018333435058594,60.0,60000.0 +9392,2025-06-11T00:16:00-07:00,21.00499979654948,60.0,60000.0 +9393,2025-06-11T00:17:00-07:00,20.996000671386717,60.0,60000.0 +9394,2025-06-11T00:18:00-07:00,20.985000610351562,60.0,60000.0 +9395,2025-06-11T00:19:00-07:00,20.980000178019207,60.0,60000.0 +9396,2025-06-11T00:20:00-07:00,20.98800048828125,60.0,60000.0 +9397,2025-06-11T00:21:00-07:00,21.0049991607666,60.0,60000.0 +9398,2025-06-11T00:22:00-07:00,21.015000025431316,60.0,60000.0 +9399,2025-06-11T00:23:00-07:00,21.0379997253418,60.0,60000.0 +9400,2025-06-11T00:24:00-07:00,21.051666895548504,60.0,60000.0 +9401,2025-06-11T00:25:00-07:00,21.066666920979817,60.0,60000.0 +9402,2025-06-11T00:26:00-07:00,21.0640007019043,60.0,60000.0 +9403,2025-06-11T00:27:00-07:00,21.060000737508137,60.0,60000.0 +9404,2025-06-11T00:28:00-07:00,21.058334350585938,60.0,60000.0 +9405,2025-06-11T00:29:00-07:00,21.044000244140626,60.0,60000.0 +9406,2025-06-11T00:30:00-07:00,21.045000076293945,60.0,60000.0 +9407,2025-06-11T00:31:00-07:00,21.02833302815755,60.0,60000.0 +9408,2025-06-11T00:32:00-07:00,21.0119987487793,60.0,60000.0 +9409,2025-06-11T00:33:00-07:00,21.0016663869222,60.0,60000.0 +9410,2025-06-11T00:34:00-07:00,20.990001678466797,60.0,60000.0 +9411,2025-06-11T00:35:00-07:00,20.972000885009766,60.0,60000.0 +9412,2025-06-11T00:36:00-07:00,20.959999720255535,60.0,60000.0 +9413,2025-06-11T00:37:00-07:00,20.950000762939453,60.0,60000.0 +9414,2025-06-11T00:38:00-07:00,20.94199905395508,60.0,60000.0 +9415,2025-06-11T00:39:00-07:00,20.92999839782715,60.0,60000.0 +9416,2025-06-11T00:40:00-07:00,20.918331782023113,60.0,60000.0 +9417,2025-06-11T00:41:00-07:00,20.91599884033203,60.0,60000.0 +9418,2025-06-11T00:42:00-07:00,20.906667073567707,60.0,60000.0 +9419,2025-06-11T00:43:00-07:00,20.89000066121419,60.0,60000.0 +9420,2025-06-11T00:44:00-07:00,20.8760009765625,60.0,60000.0 +9421,2025-06-11T00:45:00-07:00,20.866666158040363,60.0,60000.0 +9422,2025-06-11T00:46:00-07:00,20.851665496826172,60.0,60000.0 +9423,2025-06-11T00:47:00-07:00,20.85399932861328,60.0,60000.0 +9424,2025-06-11T00:48:00-07:00,20.826667149861652,60.0,60000.0 +9425,2025-06-11T00:49:00-07:00,20.81833330790202,60.0,60000.0 +9426,2025-06-11T00:50:00-07:00,20.8140007019043,60.0,60000.0 +9427,2025-06-11T00:51:00-07:00,20.798332850138348,60.0,60000.0 +9428,2025-06-11T00:52:00-07:00,20.788333892822266,60.0,60000.0 +9429,2025-06-11T00:53:00-07:00,20.77999954223633,60.0,60000.0 +9430,2025-06-11T00:54:00-07:00,20.764999389648438,60.0,60000.0 +9431,2025-06-11T00:55:00-07:00,20.753332773844402,60.0,60000.0 +9432,2025-06-11T00:56:00-07:00,20.746000671386717,60.0,60000.0 +9433,2025-06-11T00:57:00-07:00,20.740001678466797,60.0,60000.0 +9434,2025-06-11T00:58:00-07:00,20.735000610351562,60.0,60000.0 +9435,2025-06-11T00:59:00-07:00,20.727999877929687,60.0,60000.0 +9436,2025-06-11T01:00:00-07:00,20.723333994547527,60.0,60000.0 +9437,2025-06-11T01:01:00-07:00,20.725000381469727,60.0,60000.0 +9438,2025-06-11T01:02:00-07:00,20.729999542236328,60.0,60000.0 +9439,2025-06-11T01:03:00-07:00,20.7450008392334,60.0,60000.0 +9440,2025-06-11T01:04:00-07:00,20.7516663869222,60.0,60000.0 +9441,2025-06-11T01:05:00-07:00,20.758331934611004,60.0,60000.0 +9442,2025-06-11T01:06:00-07:00,20.76399917602539,60.0,60000.0 +9443,2025-06-11T01:07:00-07:00,20.770000457763672,60.0,60000.0 +9444,2025-06-11T01:08:00-07:00,20.778332392374676,60.0,60000.0 +9445,2025-06-11T01:09:00-07:00,20.777999114990234,60.0,60000.0 +9446,2025-06-11T01:10:00-07:00,20.778332392374676,60.0,60000.0 +9447,2025-06-11T01:11:00-07:00,20.779998779296875,60.0,60000.0 +9448,2025-06-11T01:12:00-07:00,20.79000015258789,60.0,60000.0 +9449,2025-06-11T01:13:00-07:00,20.799999872843426,60.0,60000.0 +9450,2025-06-11T01:14:00-07:00,20.80500030517578,60.0,60000.0 +9451,2025-06-11T01:15:00-07:00,20.797999572753906,60.0,60000.0 +9452,2025-06-11T01:16:00-07:00,20.78333346048991,60.0,60000.0 +9453,2025-06-11T01:17:00-07:00,20.76833216349284,60.0,60000.0 +9454,2025-06-11T01:18:00-07:00,20.753999328613283,60.0,60000.0 +9455,2025-06-11T01:19:00-07:00,20.735000610351562,60.0,60000.0 +9456,2025-06-11T01:20:00-07:00,20.718334197998047,60.0,60000.0 +9457,2025-06-11T01:21:00-07:00,20.702000427246094,60.0,60000.0 +9458,2025-06-11T01:22:00-07:00,20.68999989827474,60.0,60000.0 +9459,2025-06-11T01:23:00-07:00,20.67333221435547,60.0,60000.0 +9460,2025-06-11T01:24:00-07:00,20.65999984741211,60.0,60000.0 +9461,2025-06-11T01:25:00-07:00,20.66166623433431,60.0,60000.0 +9462,2025-06-11T01:26:00-07:00,20.678332646687824,60.0,60000.0 +9463,2025-06-11T01:27:00-07:00,20.706000518798827,60.0,60000.0 +9464,2025-06-11T01:28:00-07:00,20.73500124613444,60.0,60000.0 +9465,2025-06-11T01:29:00-07:00,20.7549991607666,60.0,60000.0 +9466,2025-06-11T01:30:00-07:00,20.75599899291992,60.0,60000.0 +9467,2025-06-11T01:31:00-07:00,20.759998321533203,60.0,60000.0 +9468,2025-06-11T01:32:00-07:00,20.753332773844402,60.0,60000.0 +9469,2025-06-11T01:33:00-07:00,20.75,60.0,60000.0 +9470,2025-06-11T01:34:00-07:00,20.746667226155598,60.0,60000.0 +9471,2025-06-11T01:35:00-07:00,20.7450008392334,60.0,60000.0 +9472,2025-06-11T01:36:00-07:00,20.74400100708008,60.0,60000.0 +9473,2025-06-11T01:37:00-07:00,20.740001042683918,60.0,60000.0 +9474,2025-06-11T01:38:00-07:00,20.731666564941406,60.0,60000.0 +9475,2025-06-11T01:39:00-07:00,20.726000213623045,60.0,60000.0 +9476,2025-06-11T01:40:00-07:00,20.706666946411133,60.0,60000.0 +9477,2025-06-11T01:41:00-07:00,20.69333267211914,60.0,60000.0 +9478,2025-06-11T01:42:00-07:00,20.687998962402343,60.0,60000.0 +9479,2025-06-11T01:43:00-07:00,20.69166628519694,60.0,60000.0 +9480,2025-06-11T01:44:00-07:00,20.69499969482422,60.0,60000.0 +9481,2025-06-11T01:45:00-07:00,20.697999572753908,60.0,60000.0 +9482,2025-06-11T01:46:00-07:00,20.691665649414062,60.0,60000.0 +9483,2025-06-11T01:47:00-07:00,20.684999465942383,60.0,60000.0 +9484,2025-06-11T01:48:00-07:00,20.68000030517578,60.0,60000.0 +9485,2025-06-11T01:49:00-07:00,20.67333221435547,60.0,60000.0 +9486,2025-06-11T01:50:00-07:00,20.66333262125651,60.0,60000.0 +9487,2025-06-11T01:51:00-07:00,20.652000427246094,60.0,60000.0 +9488,2025-06-11T01:52:00-07:00,20.628333409627277,60.0,60000.0 +9489,2025-06-11T01:53:00-07:00,20.606666564941406,60.0,60000.0 +9490,2025-06-11T01:54:00-07:00,20.593999481201173,60.0,60000.0 +9491,2025-06-11T01:55:00-07:00,20.571667353312176,60.0,60000.0 +9492,2025-06-11T01:56:00-07:00,20.553333918253582,60.0,60000.0 +9493,2025-06-11T01:57:00-07:00,20.54199981689453,60.0,60000.0 +9494,2025-06-11T01:58:00-07:00,20.529998779296875,60.0,60000.0 +9495,2025-06-11T01:59:00-07:00,20.514999389648438,60.0,60000.0 +9496,2025-06-11T02:00:00-07:00,20.503999328613283,60.0,60000.0 +9497,2025-06-11T02:01:00-07:00,20.48833465576172,60.0,60000.0 +9498,2025-06-11T02:02:00-07:00,20.475000381469727,60.0,60000.0 +9499,2025-06-11T02:03:00-07:00,20.470000584920246,60.0,60000.0 +9500,2025-06-11T02:04:00-07:00,20.457999420166015,60.0,60000.0 +9501,2025-06-11T02:05:00-07:00,20.458332697550457,60.0,60000.0 +9502,2025-06-11T02:06:00-07:00,20.451667149861652,60.0,60000.0 +9503,2025-06-11T02:07:00-07:00,20.452000427246094,60.0,60000.0 +9504,2025-06-11T02:08:00-07:00,20.448333740234375,60.0,60000.0 +9505,2025-06-11T02:09:00-07:00,20.438332239786785,60.0,60000.0 +9506,2025-06-11T02:10:00-07:00,20.437998962402343,60.0,60000.0 +9507,2025-06-11T02:11:00-07:00,20.434999465942383,60.0,60000.0 +9508,2025-06-11T02:12:00-07:00,20.429999669392902,60.0,60000.0 +9509,2025-06-11T02:13:00-07:00,20.42599868774414,60.0,60000.0 +9510,2025-06-11T02:14:00-07:00,20.426666259765625,60.0,60000.0 +9511,2025-06-11T02:15:00-07:00,20.42166519165039,60.0,60000.0 +9512,2025-06-11T02:16:00-07:00,20.413999176025392,60.0,60000.0 +9513,2025-06-11T02:17:00-07:00,20.41333262125651,60.0,60000.0 +9514,2025-06-11T02:18:00-07:00,20.41499900817871,60.0,60000.0 +9515,2025-06-11T02:19:00-07:00,20.41799850463867,60.0,60000.0 +9516,2025-06-11T02:20:00-07:00,20.41666539510091,60.0,60000.0 +9517,2025-06-11T02:21:00-07:00,20.40999984741211,60.0,60000.0 +9518,2025-06-11T02:22:00-07:00,20.402001190185548,60.0,60000.0 +9519,2025-06-11T02:23:00-07:00,20.390000025431316,60.0,60000.0 +9520,2025-06-11T02:24:00-07:00,20.388333002726238,60.0,60000.0 +9521,2025-06-11T02:25:00-07:00,20.37799987792969,60.0,60000.0 +9522,2025-06-11T02:26:00-07:00,20.35833231608073,60.0,60000.0 +9523,2025-06-11T02:27:00-07:00,20.326667149861652,60.0,60000.0 +9524,2025-06-11T02:28:00-07:00,20.30600051879883,60.0,60000.0 +9525,2025-06-11T02:29:00-07:00,20.28000005086263,60.0,60000.0 +9526,2025-06-11T02:30:00-07:00,20.25833257039388,60.0,60000.0 +9527,2025-06-11T02:31:00-07:00,20.234000396728515,60.0,60000.0 +9528,2025-06-11T02:32:00-07:00,20.21666717529297,60.0,60000.0 +9529,2025-06-11T02:33:00-07:00,20.196666081746418,60.0,60000.0 +9530,2025-06-11T02:34:00-07:00,20.181999969482423,60.0,60000.0 +9531,2025-06-11T02:35:00-07:00,20.16833241780599,60.0,60000.0 +9532,2025-06-11T02:36:00-07:00,20.150000254313152,60.0,60000.0 +9533,2025-06-11T02:37:00-07:00,20.13800048828125,60.0,60000.0 +9534,2025-06-11T02:38:00-07:00,20.131667455037434,60.0,60000.0 +9535,2025-06-11T02:39:00-07:00,20.1233336130778,60.0,60000.0 +9536,2025-06-11T02:40:00-07:00,20.113332748413086,60.0,60000.0 +9537,2025-06-11T02:41:00-07:00,20.10166613260905,60.0,60000.0 +9538,2025-06-11T02:42:00-07:00,20.093332926432293,60.0,60000.0 +9539,2025-06-11T02:43:00-07:00,20.086000823974608,60.0,60000.0 +9540,2025-06-11T02:44:00-07:00,20.070000330607098,60.0,60000.0 +9541,2025-06-11T02:45:00-07:00,20.060000737508137,60.0,60000.0 +9542,2025-06-11T02:46:00-07:00,20.045999908447264,60.0,60000.0 +9543,2025-06-11T02:47:00-07:00,20.038333257039387,60.0,60000.0 +9544,2025-06-11T02:48:00-07:00,20.03333282470703,60.0,60000.0 +9545,2025-06-11T02:49:00-07:00,20.02199935913086,60.0,60000.0 +9546,2025-06-11T02:50:00-07:00,20.01166598002116,60.0,60000.0 +9547,2025-06-11T02:51:00-07:00,20.0066655476888,60.0,60000.0 +9548,2025-06-11T02:52:00-07:00,20.0,60.0,60000.0 +9549,2025-06-11T02:53:00-07:00,20.0,60.0,60000.0 +9550,2025-06-11T02:54:00-07:00,19.990001042683918,60.0,60000.0 +9551,2025-06-11T02:55:00-07:00,19.984000396728515,60.0,60000.0 +9552,2025-06-11T02:56:00-07:00,19.983333587646484,60.0,60000.0 +9553,2025-06-11T02:57:00-07:00,19.985000610351562,60.0,60000.0 +9554,2025-06-11T02:58:00-07:00,19.9880012512207,60.0,60000.0 +9555,2025-06-11T02:59:00-07:00,19.9950008392334,60.0,60000.0 +9556,2025-06-11T03:00:00-07:00,19.9933344523112,60.0,60000.0 +9557,2025-06-11T03:01:00-07:00,20.0,60.0,60000.0 +9558,2025-06-11T03:02:00-07:00,20.0,60.0,60000.0 +9559,2025-06-11T03:03:00-07:00,20.0049991607666,60.0,60000.0 +9560,2025-06-11T03:04:00-07:00,20.00599899291992,60.0,60000.0 +9561,2025-06-11T03:05:00-07:00,20.014999389648438,60.0,60000.0 +9562,2025-06-11T03:06:00-07:00,20.02166684468587,60.0,60000.0 +9563,2025-06-11T03:07:00-07:00,20.026666005452473,60.0,60000.0 +9564,2025-06-11T03:08:00-07:00,20.044000244140626,60.0,60000.0 +9565,2025-06-11T03:09:00-07:00,20.054999669392902,60.0,60000.0 +9566,2025-06-11T03:10:00-07:00,20.058334350585938,60.0,60000.0 +9567,2025-06-11T03:11:00-07:00,20.05600051879883,60.0,60000.0 +9568,2025-06-11T03:12:00-07:00,20.051666259765625,60.0,60000.0 +9569,2025-06-11T03:13:00-07:00,20.05500030517578,60.0,60000.0 +9570,2025-06-11T03:14:00-07:00,20.051999664306642,60.0,60000.0 +9571,2025-06-11T03:15:00-07:00,20.05666732788086,60.0,60000.0 +9572,2025-06-11T03:16:00-07:00,20.05833371480306,60.0,60000.0 +9573,2025-06-11T03:17:00-07:00,20.054000091552734,60.0,60000.0 +9574,2025-06-11T03:18:00-07:00,20.053333282470703,60.0,60000.0 +9575,2025-06-11T03:19:00-07:00,20.049999872843426,60.0,60000.0 +9576,2025-06-11T03:20:00-07:00,20.049999237060547,60.0,60000.0 +9577,2025-06-11T03:21:00-07:00,20.051666259765625,60.0,60000.0 +9578,2025-06-11T03:22:00-07:00,20.053333282470703,60.0,60000.0 +9579,2025-06-11T03:23:00-07:00,20.054000091552734,60.0,60000.0 +9580,2025-06-11T03:24:00-07:00,20.051666259765625,60.0,60000.0 +9581,2025-06-11T03:25:00-07:00,20.049999237060547,60.0,60000.0 +9582,2025-06-11T03:26:00-07:00,20.03800048828125,60.0,60000.0 +9583,2025-06-11T03:27:00-07:00,20.029999415079754,60.0,60000.0 +9584,2025-06-11T03:28:00-07:00,20.03499984741211,60.0,60000.0 +9585,2025-06-11T03:29:00-07:00,20.03800048828125,60.0,60000.0 +9586,2025-06-11T03:30:00-07:00,20.03499984741211,60.0,60000.0 +9587,2025-06-11T03:31:00-07:00,20.034285409109934,60.0,60000.0 +9588,2025-06-11T03:32:00-07:00,20.040000915527344,60.0,60000.0 +9589,2025-06-11T03:33:00-07:00,20.040000915527344,60.0,60000.0 +9590,2025-06-11T03:34:00-07:00,20.03857203892299,60.0,60000.0 +9591,2025-06-11T03:35:00-07:00,20.04000015258789,60.0,60000.0 +9592,2025-06-11T03:36:00-07:00,20.03499984741211,60.0,60000.0 +9593,2025-06-11T03:37:00-07:00,20.041667302449543,60.0,60000.0 +9594,2025-06-11T03:38:00-07:00,20.040000915527344,60.0,60000.0 +9595,2025-06-11T03:39:00-07:00,20.038333257039387,60.0,60000.0 +9596,2025-06-11T03:40:00-07:00,20.03333282470703,60.0,60000.0 +9597,2025-06-11T03:41:00-07:00,20.025999450683592,60.0,60000.0 +9598,2025-06-11T03:42:00-07:00,20.018333435058594,60.0,60000.0 +9599,2025-06-11T03:43:00-07:00,20.01166534423828,60.0,60000.0 +9600,2025-06-11T03:44:00-07:00,20.007999420166016,60.0,60000.0 +9601,2025-06-11T03:45:00-07:00,20.0049991607666,60.0,60000.0 +9602,2025-06-11T03:46:00-07:00,20.0,60.0,60000.0 +9603,2025-06-11T03:47:00-07:00,19.996000671386717,60.0,60000.0 +9604,2025-06-11T03:48:00-07:00,20.0049991607666,60.0,60000.0 +9605,2025-06-11T03:49:00-07:00,20.003332773844402,60.0,60000.0 +9606,2025-06-11T03:50:00-07:00,20.003999328613283,60.0,60000.0 +9607,2025-06-11T03:51:00-07:00,20.01166534423828,60.0,60000.0 +9608,2025-06-11T03:52:00-07:00,20.0049991607666,60.0,60000.0 +9609,2025-06-11T03:53:00-07:00,20.00199966430664,60.0,60000.0 +9610,2025-06-11T03:54:00-07:00,20.00499979654948,60.0,60000.0 +9611,2025-06-11T03:55:00-07:00,20.0016663869222,60.0,60000.0 +9612,2025-06-11T03:56:00-07:00,19.996000671386717,60.0,60000.0 +9613,2025-06-11T03:57:00-07:00,19.990001678466797,60.0,60000.0 +9614,2025-06-11T03:58:00-07:00,19.991668065388996,60.0,60000.0 +9615,2025-06-11T03:59:00-07:00,19.981999969482423,60.0,60000.0 +9616,2025-06-11T04:00:00-07:00,19.979999542236328,60.0,60000.0 +9617,2025-06-11T04:01:00-07:00,19.979999542236328,60.0,60000.0 +9618,2025-06-11T04:02:00-07:00,19.976000213623045,60.0,60000.0 +9619,2025-06-11T04:03:00-07:00,19.981666564941406,60.0,60000.0 +9620,2025-06-11T04:04:00-07:00,19.983334223429363,60.0,60000.0 +9621,2025-06-11T04:05:00-07:00,19.984000396728515,60.0,60000.0 +9622,2025-06-11T04:06:00-07:00,19.983333587646484,60.0,60000.0 +9623,2025-06-11T04:07:00-07:00,19.986666997273762,60.0,60000.0 +9624,2025-06-11T04:08:00-07:00,19.98600082397461,60.0,60000.0 +9625,2025-06-11T04:09:00-07:00,19.98833465576172,60.0,60000.0 +9626,2025-06-11T04:10:00-07:00,19.9933344523112,60.0,60000.0 +9627,2025-06-11T04:11:00-07:00,19.996000671386717,60.0,60000.0 +9628,2025-06-11T04:12:00-07:00,19.9950008392334,60.0,60000.0 +9629,2025-06-11T04:13:00-07:00,19.991668065388996,60.0,60000.0 +9630,2025-06-11T04:14:00-07:00,19.986666997273762,60.0,60000.0 +9631,2025-06-11T04:15:00-07:00,19.980000305175782,60.0,60000.0 +9632,2025-06-11T04:16:00-07:00,19.97833315531413,60.0,60000.0 +9633,2025-06-11T04:17:00-07:00,19.975000381469727,60.0,60000.0 +9634,2025-06-11T04:18:00-07:00,19.970001220703125,60.0,60000.0 +9635,2025-06-11T04:19:00-07:00,19.96666717529297,60.0,60000.0 +9636,2025-06-11T04:20:00-07:00,19.968333562215168,60.0,60000.0 +9637,2025-06-11T04:21:00-07:00,19.972000885009766,60.0,60000.0 +9638,2025-06-11T04:22:00-07:00,19.961666107177734,60.0,60000.0 +9639,2025-06-11T04:23:00-07:00,19.961666107177734,60.0,60000.0 +9640,2025-06-11T04:24:00-07:00,19.96800079345703,60.0,60000.0 +9641,2025-06-11T04:25:00-07:00,19.96500015258789,60.0,60000.0 +9642,2025-06-11T04:26:00-07:00,19.959999720255535,60.0,60000.0 +9643,2025-06-11T04:27:00-07:00,19.955999755859374,60.0,60000.0 +9644,2025-06-11T04:28:00-07:00,19.948333104451496,60.0,60000.0 +9645,2025-06-11T04:29:00-07:00,19.94333267211914,60.0,60000.0 +9646,2025-06-11T04:30:00-07:00,19.94399948120117,60.0,60000.0 +9647,2025-06-11T04:31:00-07:00,19.94499969482422,60.0,60000.0 +9648,2025-06-11T04:32:00-07:00,19.946666081746418,60.0,60000.0 +9649,2025-06-11T04:33:00-07:00,19.945999908447266,60.0,60000.0 +9650,2025-06-11T04:34:00-07:00,19.94499969482422,60.0,60000.0 +9651,2025-06-11T04:35:00-07:00,19.94333267211914,60.0,60000.0 +9652,2025-06-11T04:36:00-07:00,19.94199905395508,60.0,60000.0 +9653,2025-06-11T04:37:00-07:00,19.94499969482422,60.0,60000.0 +9654,2025-06-11T04:38:00-07:00,19.94499969482422,60.0,60000.0 +9655,2025-06-11T04:39:00-07:00,19.96199951171875,60.0,60000.0 +9656,2025-06-11T04:40:00-07:00,19.961666107177734,60.0,60000.0 +9657,2025-06-11T04:41:00-07:00,19.96500015258789,60.0,60000.0 +9658,2025-06-11T04:42:00-07:00,19.96800079345703,60.0,60000.0 +9659,2025-06-11T04:43:00-07:00,19.973333994547527,60.0,60000.0 +9660,2025-06-11T04:44:00-07:00,19.981666564941406,60.0,60000.0 +9661,2025-06-11T04:45:00-07:00,19.98600082397461,60.0,60000.0 +9662,2025-06-11T04:46:00-07:00,19.98666763305664,60.0,60000.0 +9663,2025-06-11T04:47:00-07:00,19.990001678466797,60.0,60000.0 +9664,2025-06-11T04:48:00-07:00,19.992001342773438,60.0,60000.0 +9665,2025-06-11T04:49:00-07:00,19.9983336130778,60.0,60000.0 +9666,2025-06-11T04:50:00-07:00,20.01333236694336,60.0,60000.0 +9667,2025-06-11T04:51:00-07:00,20.023999786376955,60.0,60000.0 +9668,2025-06-11T04:52:00-07:00,20.03333282470703,60.0,60000.0 +9669,2025-06-11T04:53:00-07:00,20.045000076293945,60.0,60000.0 +9670,2025-06-11T04:54:00-07:00,20.054000091552734,60.0,60000.0 +9671,2025-06-11T04:55:00-07:00,20.060000737508137,60.0,60000.0 +9672,2025-06-11T04:56:00-07:00,20.060000737508137,60.0,60000.0 +9673,2025-06-11T04:57:00-07:00,20.068000030517577,60.0,60000.0 +9674,2025-06-11T04:58:00-07:00,20.05833371480306,60.0,60000.0 +9675,2025-06-11T04:59:00-07:00,20.043333689371746,60.0,60000.0 +9676,2025-06-11T05:00:00-07:00,20.02999954223633,60.0,60000.0 +9677,2025-06-11T05:01:00-07:00,20.018332799275715,60.0,60000.0 +9678,2025-06-11T05:02:00-07:00,20.0,60.0,60000.0 +9679,2025-06-11T05:03:00-07:00,19.980000305175782,60.0,60000.0 +9680,2025-06-11T05:04:00-07:00,19.968333562215168,60.0,60000.0 +9681,2025-06-11T05:05:00-07:00,19.953333536783855,60.0,60000.0 +9682,2025-06-11T05:06:00-07:00,19.937998962402343,60.0,60000.0 +9683,2025-06-11T05:07:00-07:00,19.926665623982746,60.0,60000.0 +9684,2025-06-11T05:08:00-07:00,19.90166727701823,60.0,60000.0 +9685,2025-06-11T05:09:00-07:00,19.891999816894533,60.0,60000.0 +9686,2025-06-11T05:10:00-07:00,19.880001068115234,60.0,60000.0 +9687,2025-06-11T05:11:00-07:00,19.871665954589844,60.0,60000.0 +9688,2025-06-11T05:12:00-07:00,19.867999267578124,60.0,60000.0 +9689,2025-06-11T05:13:00-07:00,19.868332544962566,60.0,60000.0 +9690,2025-06-11T05:14:00-07:00,19.859999974568684,60.0,60000.0 +9691,2025-06-11T05:15:00-07:00,19.85399932861328,60.0,60000.0 +9692,2025-06-11T05:16:00-07:00,19.854999542236328,60.0,60000.0 +9693,2025-06-11T05:17:00-07:00,19.849998474121094,60.0,60000.0 +9694,2025-06-11T05:18:00-07:00,19.849998474121094,60.0,60000.0 +9695,2025-06-11T05:19:00-07:00,19.844999313354492,60.0,60000.0 +9696,2025-06-11T05:20:00-07:00,19.84000015258789,60.0,60000.0 +9697,2025-06-11T05:21:00-07:00,19.84000015258789,60.0,60000.0 +9698,2025-06-11T05:22:00-07:00,19.831668217976887,60.0,60000.0 +9699,2025-06-11T05:23:00-07:00,19.823333740234375,60.0,60000.0 +9700,2025-06-11T05:24:00-07:00,19.8260009765625,60.0,60000.0 +9701,2025-06-11T05:25:00-07:00,19.82666778564453,60.0,60000.0 +9702,2025-06-11T05:26:00-07:00,19.823333740234375,60.0,60000.0 +9703,2025-06-11T05:27:00-07:00,19.816000366210936,60.0,60000.0 +9704,2025-06-11T05:28:00-07:00,19.811667760213215,60.0,60000.0 +9705,2025-06-11T05:29:00-07:00,19.816666920979817,60.0,60000.0 +9706,2025-06-11T05:30:00-07:00,19.810001373291016,60.0,60000.0 +9707,2025-06-11T05:31:00-07:00,19.811667760213215,60.0,60000.0 +9708,2025-06-11T05:32:00-07:00,19.811667760213215,60.0,60000.0 +9709,2025-06-11T05:33:00-07:00,19.810001373291016,60.0,60000.0 +9710,2025-06-11T05:34:00-07:00,19.80666732788086,60.0,60000.0 +9711,2025-06-11T05:35:00-07:00,19.810000737508137,60.0,60000.0 +9712,2025-06-11T05:36:00-07:00,19.813334147135418,60.0,60000.0 +9713,2025-06-11T05:37:00-07:00,19.812001037597657,60.0,60000.0 +9714,2025-06-11T05:38:00-07:00,19.811667760213215,60.0,60000.0 +9715,2025-06-11T05:39:00-07:00,19.808334350585938,60.0,60000.0 +9716,2025-06-11T05:40:00-07:00,19.804000091552734,60.0,60000.0 +9717,2025-06-11T05:41:00-07:00,19.80500030517578,60.0,60000.0 +9718,2025-06-11T05:42:00-07:00,19.801666259765625,60.0,60000.0 +9719,2025-06-11T05:43:00-07:00,19.804000091552734,60.0,60000.0 +9720,2025-06-11T05:44:00-07:00,19.801666895548504,60.0,60000.0 +9721,2025-06-11T05:45:00-07:00,19.799999237060547,60.0,60000.0 +9722,2025-06-11T05:46:00-07:00,19.801999664306642,60.0,60000.0 +9723,2025-06-11T05:47:00-07:00,19.81166712443034,60.0,60000.0 +9724,2025-06-11T05:48:00-07:00,19.825000127156574,60.0,60000.0 +9725,2025-06-11T05:49:00-07:00,19.83800048828125,60.0,60000.0 +9726,2025-06-11T05:50:00-07:00,19.85499890645345,60.0,60000.0 +9727,2025-06-11T05:51:00-07:00,19.875,60.0,60000.0 +9728,2025-06-11T05:52:00-07:00,19.889999389648438,60.0,60000.0 +9729,2025-06-11T05:53:00-07:00,19.905000686645508,60.0,60000.0 +9730,2025-06-11T05:54:00-07:00,19.926665623982746,60.0,60000.0 +9731,2025-06-11T05:55:00-07:00,19.95,60.0,60000.0 +9732,2025-06-11T05:56:00-07:00,19.96500015258789,60.0,60000.0 +9733,2025-06-11T05:57:00-07:00,19.971667607625324,60.0,60000.0 +9734,2025-06-11T05:58:00-07:00,19.963999938964843,60.0,60000.0 +9735,2025-06-11T05:59:00-07:00,19.9499994913737,60.0,60000.0 +9736,2025-06-11T06:00:00-07:00,19.929999033610027,60.0,60000.0 +9737,2025-06-11T06:01:00-07:00,19.913999176025392,60.0,60000.0 +9738,2025-06-11T06:02:00-07:00,19.895000457763672,60.0,60000.0 +9739,2025-06-11T06:03:00-07:00,19.876667022705078,60.0,60000.0 +9740,2025-06-11T06:04:00-07:00,19.862000274658204,60.0,60000.0 +9741,2025-06-11T06:05:00-07:00,19.856666564941406,60.0,60000.0 +9742,2025-06-11T06:06:00-07:00,19.851665496826172,60.0,60000.0 +9743,2025-06-11T06:07:00-07:00,19.847998809814452,60.0,60000.0 +9744,2025-06-11T06:08:00-07:00,19.84166653951009,60.0,60000.0 +9745,2025-06-11T06:09:00-07:00,19.84166653951009,60.0,60000.0 +9746,2025-06-11T06:10:00-07:00,19.847999572753906,60.0,60000.0 +9747,2025-06-11T06:11:00-07:00,19.848332087198894,60.0,60000.0 +9748,2025-06-11T06:12:00-07:00,19.84666570027669,60.0,60000.0 +9749,2025-06-11T06:13:00-07:00,19.849999237060548,60.0,60000.0 +9750,2025-06-11T06:14:00-07:00,19.83833376566569,60.0,60000.0 +9751,2025-06-11T06:15:00-07:00,19.83333460489909,60.0,60000.0 +9752,2025-06-11T06:16:00-07:00,19.8260009765625,60.0,60000.0 +9753,2025-06-11T06:17:00-07:00,19.816666920979817,60.0,60000.0 +9754,2025-06-11T06:18:00-07:00,19.813334147135418,60.0,60000.0 +9755,2025-06-11T06:19:00-07:00,19.812000274658203,60.0,60000.0 +9756,2025-06-11T06:20:00-07:00,19.80500030517578,60.0,60000.0 +9757,2025-06-11T06:21:00-07:00,19.801666259765625,60.0,60000.0 +9758,2025-06-11T06:22:00-07:00,19.801999664306642,60.0,60000.0 +9759,2025-06-11T06:23:00-07:00,19.801666259765625,60.0,60000.0 +9760,2025-06-11T06:24:00-07:00,19.788333257039387,60.0,60000.0 +9761,2025-06-11T06:25:00-07:00,19.786000061035157,60.0,60000.0 +9762,2025-06-11T06:26:00-07:00,19.781666437784832,60.0,60000.0 +9763,2025-06-11T06:27:00-07:00,19.78000005086263,60.0,60000.0 +9764,2025-06-11T06:28:00-07:00,19.783999633789062,60.0,60000.0 +9765,2025-06-11T06:29:00-07:00,19.790000279744465,60.0,60000.0 +9766,2025-06-11T06:30:00-07:00,19.799999872843426,60.0,60000.0 +9767,2025-06-11T06:31:00-07:00,19.8,60.0,60000.0 +9768,2025-06-11T06:32:00-07:00,19.78499984741211,60.0,60000.0 +9769,2025-06-11T06:33:00-07:00,19.77166684468587,60.0,60000.0 +9770,2025-06-11T06:34:00-07:00,19.768000030517577,60.0,60000.0 +9771,2025-06-11T06:35:00-07:00,19.76333236694336,60.0,60000.0 +9772,2025-06-11T06:36:00-07:00,19.758331934611004,60.0,60000.0 +9773,2025-06-11T06:37:00-07:00,19.74800033569336,60.0,60000.0 +9774,2025-06-11T06:38:00-07:00,19.7483336130778,60.0,60000.0 +9775,2025-06-11T06:39:00-07:00,19.74166742960612,60.0,60000.0 +9776,2025-06-11T06:40:00-07:00,19.740001678466797,60.0,60000.0 +9777,2025-06-11T06:41:00-07:00,19.731666564941406,60.0,60000.0 +9778,2025-06-11T06:42:00-07:00,19.720001220703125,60.0,60000.0 +9779,2025-06-11T06:43:00-07:00,19.72000045776367,60.0,60000.0 +9780,2025-06-11T06:44:00-07:00,19.725000381469727,60.0,60000.0 +9781,2025-06-11T06:45:00-07:00,19.71500015258789,60.0,60000.0 +9782,2025-06-11T06:46:00-07:00,19.713999938964843,60.0,60000.0 +9783,2025-06-11T06:47:00-07:00,19.713333129882812,60.0,60000.0 +9784,2025-06-11T06:48:00-07:00,19.706666310628254,60.0,60000.0 +9785,2025-06-11T06:49:00-07:00,19.705999755859374,60.0,60000.0 +9786,2025-06-11T06:50:00-07:00,19.703333536783855,60.0,60000.0 +9787,2025-06-11T06:51:00-07:00,19.696666717529297,60.0,60000.0 +9788,2025-06-11T06:52:00-07:00,19.69199905395508,60.0,60000.0 +9789,2025-06-11T06:53:00-07:00,19.683333079020183,60.0,60000.0 +9790,2025-06-11T06:54:00-07:00,19.67166582743327,60.0,60000.0 +9791,2025-06-11T06:55:00-07:00,19.66599884033203,60.0,60000.0 +9792,2025-06-11T06:56:00-07:00,19.65999984741211,60.0,60000.0 +9793,2025-06-11T06:57:00-07:00,19.651667912801106,60.0,60000.0 +9794,2025-06-11T06:58:00-07:00,19.64600067138672,60.0,60000.0 +9795,2025-06-11T06:59:00-07:00,19.636666615804035,60.0,60000.0 +9796,2025-06-11T07:00:00-07:00,19.636666615804035,60.0,60000.0 +9797,2025-06-11T07:01:00-07:00,19.630000432332356,60.0,60000.0 +9798,2025-06-11T07:02:00-07:00,19.62199935913086,60.0,60000.0 +9799,2025-06-11T07:03:00-07:00,19.618332544962566,60.0,60000.0 +9800,2025-06-11T07:04:00-07:00,19.608332951863606,60.0,60000.0 +9801,2025-06-11T07:05:00-07:00,19.60199966430664,60.0,60000.0 +9802,2025-06-11T07:06:00-07:00,19.594999313354492,60.0,60000.0 +9803,2025-06-11T07:07:00-07:00,19.59000015258789,60.0,60000.0 +9804,2025-06-11T07:08:00-07:00,19.58200149536133,60.0,60000.0 +9805,2025-06-11T07:09:00-07:00,19.57833480834961,60.0,60000.0 +9806,2025-06-11T07:10:00-07:00,19.56999969482422,60.0,60000.0 +9807,2025-06-11T07:11:00-07:00,19.56800079345703,60.0,60000.0 +9808,2025-06-11T07:12:00-07:00,19.565001169840496,60.0,60000.0 +9809,2025-06-11T07:13:00-07:00,19.565000534057617,60.0,60000.0 +9810,2025-06-11T07:14:00-07:00,19.568000030517577,60.0,60000.0 +9811,2025-06-11T07:15:00-07:00,19.560000828334264,60.0,60000.0 +9812,2025-06-11T07:16:00-07:00,19.566666920979817,60.0,60000.0 +9813,2025-06-11T07:17:00-07:00,19.572000122070314,60.0,60000.0 +9814,2025-06-11T07:18:00-07:00,19.571667353312176,60.0,60000.0 +9815,2025-06-11T07:19:00-07:00,19.565000534057617,60.0,60000.0 +9816,2025-06-11T07:20:00-07:00,19.5760009765625,60.0,60000.0 +9817,2025-06-11T07:21:00-07:00,19.58000119527181,60.0,60000.0 +9818,2025-06-11T07:22:00-07:00,19.58333396911621,60.0,60000.0 +9819,2025-06-11T07:23:00-07:00,19.593999481201173,60.0,60000.0 +9820,2025-06-11T07:24:00-07:00,19.599999109903973,60.0,60000.0 +9821,2025-06-11T07:25:00-07:00,19.606666564941406,60.0,60000.0 +9822,2025-06-11T07:26:00-07:00,19.613999938964845,60.0,60000.0 +9823,2025-06-11T07:27:00-07:00,19.613333384195965,60.0,60000.0 +9824,2025-06-11T07:28:00-07:00,19.618332544962566,60.0,60000.0 +9825,2025-06-11T07:29:00-07:00,19.615999603271483,60.0,60000.0 +9826,2025-06-11T07:30:00-07:00,19.619999567667644,60.0,60000.0 +9827,2025-06-11T07:31:00-07:00,19.623332977294922,60.0,60000.0 +9828,2025-06-11T07:32:00-07:00,19.61999969482422,60.0,60000.0 +9829,2025-06-11T07:33:00-07:00,19.62500063578288,60.0,60000.0 +9830,2025-06-11T07:34:00-07:00,19.623332977294922,60.0,60000.0 +9831,2025-06-11T07:35:00-07:00,19.626000213623048,60.0,60000.0 +9832,2025-06-11T07:36:00-07:00,19.626667022705078,60.0,60000.0 +9833,2025-06-11T07:37:00-07:00,19.619999567667644,60.0,60000.0 +9834,2025-06-11T07:38:00-07:00,19.612000274658204,60.0,60000.0 +9835,2025-06-11T07:39:00-07:00,19.599999745686848,60.0,60000.0 +9836,2025-06-11T07:40:00-07:00,19.59000015258789,60.0,60000.0 +9837,2025-06-11T07:41:00-07:00,19.586000823974608,60.0,60000.0 +9838,2025-06-11T07:42:00-07:00,19.58333460489909,60.0,60000.0 +9839,2025-06-11T07:43:00-07:00,19.58666737874349,60.0,60000.0 +9840,2025-06-11T07:44:00-07:00,19.586000823974608,60.0,60000.0 +9841,2025-06-11T07:45:00-07:00,19.57666778564453,60.0,60000.0 +9842,2025-06-11T07:46:00-07:00,19.55666669209798,60.0,60000.0 +9843,2025-06-11T07:47:00-07:00,19.554000091552734,60.0,60000.0 +9844,2025-06-11T07:48:00-07:00,19.548332850138348,60.0,60000.0 +9845,2025-06-11T07:49:00-07:00,19.540000279744465,60.0,60000.0 +9846,2025-06-11T07:50:00-07:00,19.529998779296875,60.0,60000.0 +9847,2025-06-11T07:51:00-07:00,19.521666208902996,60.0,60000.0 +9848,2025-06-11T07:52:00-07:00,19.509998321533203,60.0,60000.0 +9849,2025-06-11T07:53:00-07:00,19.49800033569336,60.0,60000.0 +9850,2025-06-11T07:54:00-07:00,19.4933344523112,60.0,60000.0 +9851,2025-06-11T07:55:00-07:00,19.490001678466797,60.0,60000.0 +9852,2025-06-11T07:56:00-07:00,19.484000396728515,60.0,60000.0 +9853,2025-06-11T07:57:00-07:00,19.48833401997884,60.0,60000.0 +9854,2025-06-11T07:58:00-07:00,19.4950008392334,60.0,60000.0 +9855,2025-06-11T07:59:00-07:00,19.50199966430664,60.0,60000.0 +9856,2025-06-11T08:00:00-07:00,19.51333236694336,60.0,60000.0 +9857,2025-06-11T08:01:00-07:00,19.523332595825195,60.0,60000.0 +9858,2025-06-11T08:02:00-07:00,19.53800048828125,60.0,60000.0 +9859,2025-06-11T08:03:00-07:00,19.55666669209798,60.0,60000.0 +9860,2025-06-11T08:04:00-07:00,19.570000966389973,60.0,60000.0 +9861,2025-06-11T08:05:00-07:00,19.572000122070314,60.0,60000.0 +9862,2025-06-11T08:06:00-07:00,19.571666717529297,60.0,60000.0 +9863,2025-06-11T08:07:00-07:00,19.549999872843426,60.0,60000.0 +9864,2025-06-11T08:08:00-07:00,19.530000305175783,60.0,60000.0 +9865,2025-06-11T08:09:00-07:00,19.51166598002116,60.0,60000.0 +9866,2025-06-11T08:10:00-07:00,19.49166742960612,60.0,60000.0 +9867,2025-06-11T08:11:00-07:00,19.477999877929687,60.0,60000.0 +9868,2025-06-11T08:12:00-07:00,19.470000584920246,60.0,60000.0 +9869,2025-06-11T08:13:00-07:00,19.459999084472656,60.0,60000.0 +9870,2025-06-11T08:14:00-07:00,19.455999755859374,60.0,60000.0 +9871,2025-06-11T08:15:00-07:00,19.459999720255535,60.0,60000.0 +9872,2025-06-11T08:16:00-07:00,19.46500015258789,60.0,60000.0 +9873,2025-06-11T08:17:00-07:00,19.46666717529297,60.0,60000.0 +9874,2025-06-11T08:18:00-07:00,19.463999938964843,60.0,60000.0 +9875,2025-06-11T08:19:00-07:00,19.461666742960613,60.0,60000.0 +9876,2025-06-11T08:20:00-07:00,19.463333129882812,60.0,60000.0 +9877,2025-06-11T08:21:00-07:00,19.46800079345703,60.0,60000.0 +9878,2025-06-11T08:22:00-07:00,19.470001220703125,60.0,60000.0 +9879,2025-06-11T08:23:00-07:00,19.470001220703125,60.0,60000.0 +9880,2025-06-11T08:24:00-07:00,19.470001220703125,60.0,60000.0 +9881,2025-06-11T08:25:00-07:00,19.463333129882812,60.0,60000.0 +9882,2025-06-11T08:26:00-07:00,19.468334197998047,60.0,60000.0 +9883,2025-06-11T08:27:00-07:00,19.470001220703125,60.0,60000.0 +9884,2025-06-11T08:28:00-07:00,19.475001017252605,60.0,60000.0 +9885,2025-06-11T08:29:00-07:00,19.476666768391926,60.0,60000.0 +9886,2025-06-11T08:30:00-07:00,19.476000213623045,60.0,60000.0 +9887,2025-06-11T08:31:00-07:00,19.481667200724285,60.0,60000.0 +9888,2025-06-11T08:32:00-07:00,19.4933344523112,60.0,60000.0 +9889,2025-06-11T08:33:00-07:00,19.503999328613283,60.0,60000.0 +9890,2025-06-11T08:34:00-07:00,19.514999389648438,60.0,60000.0 +9891,2025-06-11T08:35:00-07:00,19.531666437784832,60.0,60000.0 +9892,2025-06-11T08:36:00-07:00,19.545999908447264,60.0,60000.0 +9893,2025-06-11T08:37:00-07:00,19.553333282470703,60.0,60000.0 +9894,2025-06-11T08:38:00-07:00,19.560000737508137,60.0,60000.0 +9895,2025-06-11T08:39:00-07:00,19.56999969482422,60.0,60000.0 +9896,2025-06-11T08:40:00-07:00,19.570000966389973,60.0,60000.0 +9897,2025-06-11T08:41:00-07:00,19.570000330607098,60.0,60000.0 +9898,2025-06-11T08:42:00-07:00,19.572000885009764,60.0,60000.0 +9899,2025-06-11T08:43:00-07:00,19.575000762939453,60.0,60000.0 +9900,2025-06-11T08:44:00-07:00,19.566667556762695,60.0,60000.0 +9901,2025-06-11T08:45:00-07:00,19.5640007019043,60.0,60000.0 +9902,2025-06-11T08:46:00-07:00,19.560000737508137,60.0,60000.0 +9903,2025-06-11T08:47:00-07:00,19.56000010172526,60.0,60000.0 +9904,2025-06-11T08:48:00-07:00,19.551999664306642,60.0,60000.0 +9905,2025-06-11T08:49:00-07:00,19.536666870117188,60.0,60000.0 +9906,2025-06-11T08:50:00-07:00,19.53499984741211,60.0,60000.0 +9907,2025-06-11T08:51:00-07:00,19.525999450683592,60.0,60000.0 +9908,2025-06-11T08:52:00-07:00,19.529998779296875,60.0,60000.0 +9909,2025-06-11T08:53:00-07:00,19.53666623433431,60.0,60000.0 +9910,2025-06-11T08:54:00-07:00,19.547999572753906,60.0,60000.0 +9911,2025-06-11T08:55:00-07:00,19.553333282470703,60.0,60000.0 +9912,2025-06-11T08:56:00-07:00,19.560000737508137,60.0,60000.0 +9913,2025-06-11T08:57:00-07:00,19.562000274658203,60.0,60000.0 +9914,2025-06-11T08:58:00-07:00,19.56833330790202,60.0,60000.0 +9915,2025-06-11T08:59:00-07:00,19.56666628519694,60.0,60000.0 +9916,2025-06-11T09:00:00-07:00,19.566000366210936,60.0,60000.0 +9917,2025-06-11T09:01:00-07:00,19.570000330607098,60.0,60000.0 +9918,2025-06-11T09:02:00-07:00,19.568333943684895,60.0,60000.0 +9919,2025-06-11T09:03:00-07:00,19.572000122070314,60.0,60000.0 +9920,2025-06-11T09:04:00-07:00,19.571666717529297,60.0,60000.0 +9921,2025-06-11T09:05:00-07:00,19.560000737508137,60.0,60000.0 +9922,2025-06-11T09:06:00-07:00,19.545999908447264,60.0,60000.0 +9923,2025-06-11T09:07:00-07:00,19.538333892822266,60.0,60000.0 +9924,2025-06-11T09:08:00-07:00,19.536666870117188,60.0,60000.0 +9925,2025-06-11T09:09:00-07:00,19.529998779296875,60.0,60000.0 +9926,2025-06-11T09:10:00-07:00,19.52166684468587,60.0,60000.0 +9927,2025-06-11T09:11:00-07:00,19.50666618347168,60.0,60000.0 +9928,2025-06-11T09:12:00-07:00,19.5,60.0,60000.0 +9929,2025-06-11T09:13:00-07:00,19.486666997273762,60.0,60000.0 +9930,2025-06-11T09:14:00-07:00,19.473333994547527,60.0,60000.0 +9931,2025-06-11T09:15:00-07:00,19.46800079345703,60.0,60000.0 +9932,2025-06-11T09:16:00-07:00,19.476667404174805,60.0,60000.0 +9933,2025-06-11T09:17:00-07:00,19.5049991607666,60.0,60000.0 +9934,2025-06-11T09:18:00-07:00,19.518000030517577,60.0,60000.0 +9935,2025-06-11T09:19:00-07:00,19.523333231608074,60.0,60000.0 +9936,2025-06-11T09:20:00-07:00,19.526666005452473,60.0,60000.0 +9937,2025-06-11T09:21:00-07:00,19.519999694824218,60.0,60000.0 +9938,2025-06-11T09:22:00-07:00,19.5049991607666,60.0,60000.0 +9939,2025-06-11T09:23:00-07:00,19.483333587646484,60.0,60000.0 +9940,2025-06-11T09:24:00-07:00,19.44199981689453,60.0,60000.0 +9941,2025-06-11T09:25:00-07:00,19.41499900817871,60.0,60000.0 +9942,2025-06-11T09:26:00-07:00,19.406667073567707,60.0,60000.0 +9943,2025-06-11T09:27:00-07:00,19.408000183105468,60.0,60000.0 +9944,2025-06-11T09:28:00-07:00,19.41166623433431,60.0,60000.0 +9945,2025-06-11T09:29:00-07:00,19.41999880472819,60.0,60000.0 +9946,2025-06-11T09:30:00-07:00,19.427999877929686,60.0,60000.0 +9947,2025-06-11T09:31:00-07:00,19.433333079020183,60.0,60000.0 +9948,2025-06-11T09:32:00-07:00,19.406667073567707,60.0,60000.0 +9949,2025-06-11T09:33:00-07:00,19.39000015258789,60.0,60000.0 +9950,2025-06-11T09:34:00-07:00,19.385000228881836,60.0,60000.0 +9951,2025-06-11T09:35:00-07:00,19.375,60.0,60000.0 +9952,2025-06-11T09:36:00-07:00,19.369999567667644,60.0,60000.0 +9953,2025-06-11T09:37:00-07:00,19.362000274658204,60.0,60000.0 +9954,2025-06-11T09:38:00-07:00,19.34666697184245,60.0,60000.0 +9955,2025-06-11T09:39:00-07:00,19.316666920979817,60.0,60000.0 +9956,2025-06-11T09:40:00-07:00,19.312001037597657,60.0,60000.0 +9957,2025-06-11T09:41:00-07:00,19.32833480834961,60.0,60000.0 +9958,2025-06-11T09:42:00-07:00,19.343332926432293,60.0,60000.0 +9959,2025-06-11T09:43:00-07:00,19.358000183105467,60.0,60000.0 +9960,2025-06-11T09:44:00-07:00,19.366666793823242,60.0,60000.0 +9961,2025-06-11T09:45:00-07:00,19.360000610351562,60.0,60000.0 +9962,2025-06-11T09:46:00-07:00,19.35199890136719,60.0,60000.0 +9963,2025-06-11T09:47:00-07:00,19.349998474121094,60.0,60000.0 +9964,2025-06-11T09:48:00-07:00,19.354999542236328,60.0,60000.0 +9965,2025-06-11T09:49:00-07:00,19.37799987792969,60.0,60000.0 +9966,2025-06-11T09:50:00-07:00,19.39666748046875,60.0,60000.0 +9967,2025-06-11T09:51:00-07:00,19.40999984741211,60.0,60000.0 +9968,2025-06-11T09:52:00-07:00,19.419998168945312,60.0,60000.0 +9969,2025-06-11T09:53:00-07:00,19.41499900817871,60.0,60000.0 +9970,2025-06-11T09:54:00-07:00,19.40857151576451,60.0,60000.0 +9971,2025-06-11T09:55:00-07:00,19.413999176025392,60.0,60000.0 +9972,2025-06-11T09:56:00-07:00,19.428332646687824,60.0,60000.0 +9973,2025-06-11T09:57:00-07:00,19.446666081746418,60.0,60000.0 +9974,2025-06-11T09:58:00-07:00,19.463999938964843,60.0,60000.0 +9975,2025-06-11T09:59:00-07:00,19.476667404174805,60.0,60000.0 +9976,2025-06-11T10:00:00-07:00,19.49166742960612,60.0,60000.0 +9977,2025-06-11T10:01:00-07:00,19.491668065388996,60.0,60000.0 +9978,2025-06-11T10:02:00-07:00,19.491668065388996,60.0,60000.0 +9979,2025-06-11T10:03:00-07:00,19.503332773844402,60.0,60000.0 +9980,2025-06-11T10:04:00-07:00,19.50199966430664,60.0,60000.0 +9981,2025-06-11T10:05:00-07:00,19.5,60.0,60000.0 +9982,2025-06-11T10:06:00-07:00,19.496667226155598,60.0,60000.0 +9983,2025-06-11T10:07:00-07:00,19.50599899291992,60.0,60000.0 +9984,2025-06-11T10:08:00-07:00,19.518332799275715,60.0,60000.0 +9985,2025-06-11T10:09:00-07:00,19.573333104451496,60.0,60000.0 +9986,2025-06-11T10:10:00-07:00,19.63000030517578,60.0,60000.0 +9987,2025-06-11T10:11:00-07:00,19.67166582743327,60.0,60000.0 +9988,2025-06-11T10:12:00-07:00,19.704999923706055,60.0,60000.0 +9989,2025-06-11T10:13:00-07:00,19.726000213623045,60.0,60000.0 +9990,2025-06-11T10:14:00-07:00,19.740001042683918,60.0,60000.0 +9991,2025-06-11T10:15:00-07:00,19.7516663869222,60.0,60000.0 +9992,2025-06-11T10:16:00-07:00,19.76399917602539,60.0,60000.0 +9993,2025-06-11T10:17:00-07:00,19.774999618530273,60.0,60000.0 +9994,2025-06-11T10:18:00-07:00,19.779998779296875,60.0,60000.0 +9995,2025-06-11T10:19:00-07:00,19.779998779296875,60.0,60000.0 +9996,2025-06-11T10:20:00-07:00,19.769999186197918,60.0,60000.0 +9997,2025-06-11T10:21:00-07:00,19.76333236694336,60.0,60000.0 +9998,2025-06-11T10:22:00-07:00,19.7619987487793,60.0,60000.0 +9999,2025-06-11T10:23:00-07:00,19.746666590372723,60.0,60000.0 +10000,2025-06-11T10:24:00-07:00,19.729999542236328,60.0,60000.0 +10001,2025-06-11T10:25:00-07:00,19.71800003051758,60.0,60000.0 +10002,2025-06-11T10:26:00-07:00,19.721667607625324,60.0,60000.0 +10003,2025-06-11T10:27:00-07:00,19.731666564941406,60.0,60000.0 +10004,2025-06-11T10:28:00-07:00,19.734000396728515,60.0,60000.0 +10005,2025-06-11T10:29:00-07:00,19.73666763305664,60.0,60000.0 +10006,2025-06-11T10:30:00-07:00,19.7433344523112,60.0,60000.0 +10007,2025-06-11T10:31:00-07:00,19.734000396728515,60.0,60000.0 +10008,2025-06-11T10:32:00-07:00,19.73833401997884,60.0,60000.0 +10009,2025-06-11T10:33:00-07:00,19.746667226155598,60.0,60000.0 +10010,2025-06-11T10:34:00-07:00,19.75666618347168,60.0,60000.0 +10011,2025-06-11T10:35:00-07:00,19.774998982747395,60.0,60000.0 +10012,2025-06-11T10:36:00-07:00,19.78999964396159,60.0,60000.0 +10013,2025-06-11T10:37:00-07:00,19.797999572753906,60.0,60000.0 +10014,2025-06-11T10:38:00-07:00,19.825000762939453,60.0,60000.0 +10015,2025-06-11T10:39:00-07:00,19.85999933878581,60.0,60000.0 +10016,2025-06-11T10:40:00-07:00,19.88600082397461,60.0,60000.0 +10017,2025-06-11T10:41:00-07:00,19.89833386739095,60.0,60000.0 +10018,2025-06-11T10:42:00-07:00,19.90999984741211,60.0,60000.0 +10019,2025-06-11T10:43:00-07:00,19.91799850463867,60.0,60000.0 +10020,2025-06-11T10:44:00-07:00,19.92166582743327,60.0,60000.0 +10021,2025-06-11T10:45:00-07:00,19.923332850138348,60.0,60000.0 +10022,2025-06-11T10:46:00-07:00,19.928332646687824,60.0,60000.0 +10023,2025-06-11T10:47:00-07:00,19.93199920654297,60.0,60000.0 +10024,2025-06-11T10:48:00-07:00,19.933333079020183,60.0,60000.0 +10025,2025-06-11T10:49:00-07:00,19.948333740234375,60.0,60000.0 +10026,2025-06-11T10:50:00-07:00,19.95999984741211,60.0,60000.0 +10027,2025-06-11T10:51:00-07:00,19.968334197998047,60.0,60000.0 +10028,2025-06-11T10:52:00-07:00,19.996666590372723,60.0,60000.0 +10029,2025-06-11T10:53:00-07:00,20.02999954223633,60.0,60000.0 +10030,2025-06-11T10:54:00-07:00,20.066666920979817,60.0,60000.0 +10031,2025-06-11T10:55:00-07:00,20.08833376566569,60.0,60000.0 +10032,2025-06-11T10:56:00-07:00,20.093999481201173,60.0,60000.0 +10033,2025-06-11T10:57:00-07:00,20.099998474121094,60.0,60000.0 +10034,2025-06-11T10:58:00-07:00,20.088333129882812,60.0,60000.0 +10035,2025-06-11T10:59:00-07:00,20.062000274658203,60.0,60000.0 +10036,2025-06-11T11:00:00-07:00,20.038570949009486,60.0,60000.0 +10037,2025-06-11T11:01:00-07:00,20.023333231608074,60.0,60000.0 +10038,2025-06-11T11:02:00-07:00,20.005999755859374,60.0,60000.0 +10039,2025-06-11T11:03:00-07:00,19.983334223429363,60.0,60000.0 +10040,2025-06-11T11:04:00-07:00,19.96666653951009,60.0,60000.0 +10041,2025-06-11T11:05:00-07:00,19.947999572753908,60.0,60000.0 +10042,2025-06-11T11:06:00-07:00,19.921666463216145,60.0,60000.0 +10043,2025-06-11T11:07:00-07:00,19.89833386739095,60.0,60000.0 +10044,2025-06-11T11:08:00-07:00,19.887999725341796,60.0,60000.0 +10045,2025-06-11T11:09:00-07:00,19.88166681925456,60.0,60000.0 +10046,2025-06-11T11:10:00-07:00,19.89714322771345,60.0,60000.0 +10047,2025-06-11T11:11:00-07:00,19.937999725341797,60.0,60000.0 +10048,2025-06-11T11:12:00-07:00,19.94333267211914,60.0,60000.0 +10049,2025-06-11T11:13:00-07:00,19.94333267211914,60.0,60000.0 +10050,2025-06-11T11:14:00-07:00,19.94399948120117,60.0,60000.0 +10051,2025-06-11T11:15:00-07:00,19.950000762939453,60.0,60000.0 +10052,2025-06-11T11:16:00-07:00,19.96500015258789,60.0,60000.0 +10053,2025-06-11T11:17:00-07:00,19.977999877929687,60.0,60000.0 +10054,2025-06-11T11:18:00-07:00,19.964999516805012,60.0,60000.0 +10055,2025-06-11T11:19:00-07:00,19.96500015258789,60.0,60000.0 +10056,2025-06-11T11:20:00-07:00,19.939999389648438,60.0,60000.0 +10057,2025-06-11T11:21:00-07:00,19.938332239786785,60.0,60000.0 +10058,2025-06-11T11:22:00-07:00,19.93833287556966,60.0,60000.0 +10059,2025-06-11T11:23:00-07:00,19.945999908447266,60.0,60000.0 +10060,2025-06-11T11:24:00-07:00,19.96500015258789,60.0,60000.0 +10061,2025-06-11T11:25:00-07:00,19.980000178019207,60.0,60000.0 +10062,2025-06-11T11:26:00-07:00,19.992001342773438,60.0,60000.0 +10063,2025-06-11T11:27:00-07:00,19.996667226155598,60.0,60000.0 +10064,2025-06-11T11:28:00-07:00,19.9933344523112,60.0,60000.0 +10065,2025-06-11T11:29:00-07:00,19.98750114440918,60.0,60000.0 +10066,2025-06-11T11:30:00-07:00,19.975000381469727,60.0,60000.0 +10067,2025-06-11T11:31:00-07:00,19.959999720255535,60.0,60000.0 +10068,2025-06-11T11:32:00-07:00,19.954000091552736,60.0,60000.0 +10069,2025-06-11T11:33:00-07:00,19.948333740234375,60.0,60000.0 +10070,2025-06-11T11:34:00-07:00,19.94333267211914,60.0,60000.0 +10071,2025-06-11T11:35:00-07:00,19.937998962402343,60.0,60000.0 +10072,2025-06-11T11:36:00-07:00,19.929999669392902,60.0,60000.0 +10073,2025-06-11T11:37:00-07:00,19.93000030517578,60.0,60000.0 +10074,2025-06-11T11:38:00-07:00,19.9239990234375,60.0,60000.0 +10075,2025-06-11T11:39:00-07:00,19.923332850138348,60.0,60000.0 +10076,2025-06-11T11:40:00-07:00,19.90999984741211,60.0,60000.0 +10077,2025-06-11T11:41:00-07:00,19.886000061035155,60.0,60000.0 +10078,2025-06-11T11:42:00-07:00,19.871666590372723,60.0,60000.0 +10079,2025-06-11T11:43:00-07:00,19.861666361490887,60.0,60000.0 +10080,2025-06-11T11:44:00-07:00,19.85333251953125,60.0,60000.0 +10081,2025-06-11T11:45:00-07:00,19.855999755859376,60.0,60000.0 +10082,2025-06-11T11:46:00-07:00,19.861666997273762,60.0,60000.0 +10083,2025-06-11T11:47:00-07:00,19.860000610351562,60.0,60000.0 +10084,2025-06-11T11:48:00-07:00,19.85999984741211,60.0,60000.0 +10085,2025-06-11T11:49:00-07:00,19.854999542236328,60.0,60000.0 +10086,2025-06-11T11:50:00-07:00,19.849999745686848,60.0,60000.0 +10087,2025-06-11T11:51:00-07:00,19.84000015258789,60.0,60000.0 +10088,2025-06-11T11:52:00-07:00,19.830001831054688,60.0,60000.0 +10089,2025-06-11T11:53:00-07:00,19.83166758219401,60.0,60000.0 +10090,2025-06-11T11:54:00-07:00,19.81999969482422,60.0,60000.0 +10091,2025-06-11T11:55:00-07:00,19.813334147135418,60.0,60000.0 +10092,2025-06-11T11:56:00-07:00,19.815000534057617,60.0,60000.0 +10093,2025-06-11T11:57:00-07:00,19.804000091552734,60.0,60000.0 +10094,2025-06-11T11:58:00-07:00,19.788333257039387,60.0,60000.0 +10095,2025-06-11T11:59:00-07:00,19.779999415079754,60.0,60000.0 +10096,2025-06-11T12:00:00-07:00,19.770000457763672,60.0,60000.0 +10097,2025-06-11T12:01:00-07:00,19.77166684468587,60.0,60000.0 +10098,2025-06-11T12:02:00-07:00,19.77166684468587,60.0,60000.0 +10099,2025-06-11T12:03:00-07:00,19.769999694824218,60.0,60000.0 +10100,2025-06-11T12:04:00-07:00,19.769999821980793,60.0,60000.0 +10101,2025-06-11T12:05:00-07:00,19.773333231608074,60.0,60000.0 +10102,2025-06-11T12:06:00-07:00,19.772000122070313,60.0,60000.0 +10103,2025-06-11T12:07:00-07:00,19.778332392374676,60.0,60000.0 +10104,2025-06-11T12:08:00-07:00,19.78333282470703,60.0,60000.0 +10105,2025-06-11T12:09:00-07:00,19.78800048828125,60.0,60000.0 +10106,2025-06-11T12:10:00-07:00,19.795000076293945,60.0,60000.0 +10107,2025-06-11T12:11:00-07:00,19.791667302449543,60.0,60000.0 +10108,2025-06-11T12:12:00-07:00,19.78800048828125,60.0,60000.0 +10109,2025-06-11T12:13:00-07:00,19.788333892822266,60.0,60000.0 +10110,2025-06-11T12:14:00-07:00,19.791667302449543,60.0,60000.0 +10111,2025-06-11T12:15:00-07:00,19.795999908447264,60.0,60000.0 +10112,2025-06-11T12:16:00-07:00,19.801666259765625,60.0,60000.0 +10113,2025-06-11T12:17:00-07:00,19.80500030517578,60.0,60000.0 +10114,2025-06-11T12:18:00-07:00,19.800000762939455,60.0,60000.0 +10115,2025-06-11T12:19:00-07:00,19.795000076293945,60.0,60000.0 +10116,2025-06-11T12:20:00-07:00,19.799999237060547,60.0,60000.0 +10117,2025-06-11T12:21:00-07:00,19.797999572753906,60.0,60000.0 +10118,2025-06-11T12:22:00-07:00,19.803333282470703,60.0,60000.0 +10119,2025-06-11T12:23:00-07:00,19.80833371480306,60.0,60000.0 +10120,2025-06-11T12:24:00-07:00,19.8140007019043,60.0,60000.0 +10121,2025-06-11T12:25:00-07:00,19.81857136317662,60.0,60000.0 +10122,2025-06-11T12:26:00-07:00,19.821666717529297,60.0,60000.0 +10123,2025-06-11T12:27:00-07:00,19.83200149536133,60.0,60000.0 +10124,2025-06-11T12:28:00-07:00,19.82833480834961,60.0,60000.0 +10125,2025-06-11T12:29:00-07:00,19.81833330790202,60.0,60000.0 +10126,2025-06-11T12:30:00-07:00,19.824000549316406,60.0,60000.0 +10127,2025-06-11T12:31:00-07:00,19.826667149861652,60.0,60000.0 +10128,2025-06-11T12:32:00-07:00,19.831668217976887,60.0,60000.0 +10129,2025-06-11T12:33:00-07:00,19.841999816894532,60.0,60000.0 +10130,2025-06-11T12:34:00-07:00,19.843332926432293,60.0,60000.0 +10131,2025-06-11T12:35:00-07:00,19.859999974568684,60.0,60000.0 +10132,2025-06-11T12:36:00-07:00,19.869998931884766,60.0,60000.0 +10133,2025-06-11T12:37:00-07:00,19.866666793823242,60.0,60000.0 +10134,2025-06-11T12:38:00-07:00,19.84666633605957,60.0,60000.0 +10135,2025-06-11T12:39:00-07:00,19.84000015258789,60.0,60000.0 +10136,2025-06-11T12:40:00-07:00,19.84666570027669,60.0,60000.0 +10137,2025-06-11T12:41:00-07:00,19.851665496826172,60.0,60000.0 +10138,2025-06-11T12:42:00-07:00,19.862000274658204,60.0,60000.0 +10139,2025-06-11T12:43:00-07:00,19.869998931884766,60.0,60000.0 +10140,2025-06-11T12:44:00-07:00,19.878334045410156,60.0,60000.0 +10141,2025-06-11T12:45:00-07:00,19.888333002726238,60.0,60000.0 +10142,2025-06-11T12:46:00-07:00,19.889999389648438,60.0,60000.0 +10143,2025-06-11T12:47:00-07:00,19.895000457763672,60.0,60000.0 +10144,2025-06-11T12:48:00-07:00,19.89666748046875,60.0,60000.0 +10145,2025-06-11T12:49:00-07:00,19.886000061035155,60.0,60000.0 +10146,2025-06-11T12:50:00-07:00,19.885000228881836,60.0,60000.0 +10147,2025-06-11T12:51:00-07:00,19.885000228881836,60.0,60000.0 +10148,2025-06-11T12:52:00-07:00,19.887999725341796,60.0,60000.0 +10149,2025-06-11T12:53:00-07:00,19.898334503173828,60.0,60000.0 +10150,2025-06-11T12:54:00-07:00,19.901667912801106,60.0,60000.0 +10151,2025-06-11T12:55:00-07:00,19.908000183105468,60.0,60000.0 +10152,2025-06-11T12:56:00-07:00,19.918331782023113,60.0,60000.0 +10153,2025-06-11T12:57:00-07:00,19.928333282470703,60.0,60000.0 +10154,2025-06-11T12:58:00-07:00,19.927999877929686,60.0,60000.0 +10155,2025-06-11T12:59:00-07:00,19.92333221435547,60.0,60000.0 +10156,2025-06-11T13:00:00-07:00,19.929999669392902,60.0,60000.0 +10157,2025-06-11T13:01:00-07:00,19.931999969482423,60.0,60000.0 +10158,2025-06-11T13:02:00-07:00,19.928333282470703,60.0,60000.0 +10159,2025-06-11T13:03:00-07:00,19.926666259765625,60.0,60000.0 +10160,2025-06-11T13:04:00-07:00,19.931999969482423,60.0,60000.0 +10161,2025-06-11T13:05:00-07:00,19.933333079020183,60.0,60000.0 +10162,2025-06-11T13:06:00-07:00,19.939999262491863,60.0,60000.0 +10163,2025-06-11T13:07:00-07:00,19.945999908447266,60.0,60000.0 +10164,2025-06-11T13:08:00-07:00,19.948333740234375,60.0,60000.0 +10165,2025-06-11T13:09:00-07:00,19.950000127156574,60.0,60000.0 +10166,2025-06-11T13:10:00-07:00,19.955999755859374,60.0,60000.0 +10167,2025-06-11T13:11:00-07:00,19.951667149861652,60.0,60000.0 +10168,2025-06-11T13:12:00-07:00,19.956666310628254,60.0,60000.0 +10169,2025-06-11T13:13:00-07:00,19.96199951171875,60.0,60000.0 +10170,2025-06-11T13:14:00-07:00,19.971667607625324,60.0,60000.0 +10171,2025-06-11T13:15:00-07:00,19.978333791097004,60.0,60000.0 +10172,2025-06-11T13:16:00-07:00,19.981999969482423,60.0,60000.0 +10173,2025-06-11T13:17:00-07:00,19.99166742960612,60.0,60000.0 +10174,2025-06-11T13:18:00-07:00,19.996667226155598,60.0,60000.0 +10175,2025-06-11T13:19:00-07:00,19.99800033569336,60.0,60000.0 +10176,2025-06-11T13:20:00-07:00,19.990001678466797,60.0,60000.0 +10177,2025-06-11T13:21:00-07:00,20.0,60.0,60000.0 diff --git a/time_differences_light.csv b/time_differences_light.csv new file mode 100644 index 0000000..7cd2738 --- /dev/null +++ b/time_differences_light.csv @@ -0,0 +1,11143 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-06-10T00:00:01.686999-07:00,0.0,0,0 +1,2025-06-10T00:00:12.443791-07:00,0.0,10.756792,10756.792 +2,2025-06-10T00:00:23.209007-07:00,0.0,10.765216,10765.216 +3,2025-06-10T00:00:33.974793-07:00,0.0,10.765786,10765.786 +4,2025-06-10T00:00:44.738802-07:00,0.0,10.764009,10764.009 +5,2025-06-10T00:00:55.496804-07:00,0.0,10.758002,10758.002 +6,2025-06-10T00:01:06.264571-07:00,0.0,10.767767,10767.767 +7,2025-06-10T00:01:17.016168-07:00,0.0,10.751597,10751.597 +8,2025-06-10T00:01:27.783102-07:00,0.0,10.766934,10766.934 +9,2025-06-10T00:01:38.544821-07:00,0.0,10.761719,10761.719 +10,2025-06-10T00:01:49.305033-07:00,0.0,10.760212,10760.212 +11,2025-06-10T00:02:00.066393-07:00,0.0,10.76136,10761.36 +12,2025-06-10T00:02:10.828953-07:00,0.0,10.76256,10762.56 +13,2025-06-10T00:02:21.588536-07:00,0.0,10.759583,10759.583 +14,2025-06-10T00:02:32.353760-07:00,0.0,10.765224,10765.224 +15,2025-06-10T00:02:43.111803-07:00,0.0,10.758043,10758.043 +16,2025-06-10T00:02:53.871774-07:00,0.0,10.759971,10759.971 +17,2025-06-10T00:03:04.632842-07:00,0.0,10.761068,10761.068 +18,2025-06-10T00:03:15.389373-07:00,0.0,10.756531,10756.531 +19,2025-06-10T00:03:26.148801-07:00,0.0,10.759428,10759.428 +20,2025-06-10T00:03:36.917053-07:00,0.0,10.768252,10768.252 +21,2025-06-10T00:03:47.678633-07:00,0.0,10.76158,10761.58 +22,2025-06-10T00:03:58.443867-07:00,0.0,10.765234,10765.234 +23,2025-06-10T00:04:09.204054-07:00,0.0,10.760187,10760.187 +24,2025-06-10T00:04:19.967149-07:00,0.0,10.763095,10763.095 +25,2025-06-10T00:04:30.731925-07:00,0.0,10.764776,10764.776 +26,2025-06-10T00:04:41.493657-07:00,0.0,10.761732,10761.732 +27,2025-06-10T00:04:52.259796-07:00,0.0,10.766139,10766.139 +28,2025-06-10T00:05:03.021053-07:00,0.0,10.761257,10761.257 +29,2025-06-10T00:05:13.782375-07:00,0.0,10.761322,10761.322 +30,2025-06-10T00:05:24.543804-07:00,0.0,10.761429,10761.429 +31,2025-06-10T00:05:35.311343-07:00,0.0,10.767539,10767.539 +32,2025-06-10T00:05:46.075139-07:00,0.0,10.763796,10763.796 +33,2025-06-10T00:05:56.828129-07:00,0.0,10.75299,10752.99 +34,2025-06-10T00:06:07.597802-07:00,0.0,10.769673,10769.673 +35,2025-06-10T00:06:18.364406-07:00,0.0,10.766604,10766.604 +36,2025-06-10T00:06:29.124090-07:00,0.0,10.759684,10759.684 +37,2025-06-10T00:06:39.884115-07:00,0.0,10.760025,10760.025 +38,2025-06-10T00:06:50.642114-07:00,0.0,10.757999,10757.999 +39,2025-06-10T00:07:01.409850-07:00,0.0,10.767736,10767.736 +40,2025-06-10T00:07:12.171894-07:00,0.0,10.762044,10762.044 +41,2025-06-10T00:07:22.936098-07:00,0.0,10.764204,10764.204 +42,2025-06-10T00:07:33.702377-07:00,0.0,10.766279,10766.279 +43,2025-06-10T00:07:44.464862-07:00,0.0,10.762485,10762.485 +44,2025-06-10T00:07:55.231253-07:00,0.0,10.766391,10766.391 +45,2025-06-10T00:08:05.997544-07:00,0.0,10.766291,10766.291 +46,2025-06-10T00:08:16.753806-07:00,0.0,10.756262,10756.262 +47,2025-06-10T00:08:27.523802-07:00,0.0,10.769996,10769.996 +48,2025-06-10T00:08:38.285766-07:00,0.0,10.761964,10761.964 +49,2025-06-10T00:08:49.038431-07:00,0.0,10.752665,10752.665 +50,2025-06-10T00:08:59.809144-07:00,0.0,10.770713,10770.713 +51,2025-06-10T00:09:10.560064-07:00,0.0,10.75092,10750.92 +52,2025-06-10T00:09:21.327125-07:00,0.0,10.767061,10767.061 +53,2025-06-10T00:09:32.090052-07:00,0.0,10.762927,10762.927 +54,2025-06-10T00:09:42.851796-07:00,0.0,10.761744,10761.744 +55,2025-06-10T00:09:53.611804-07:00,0.0,10.760008,10760.008 +56,2025-06-10T00:10:04.378330-07:00,0.0,10.766526,10766.526 +57,2025-06-10T00:10:15.143952-07:00,0.0,10.765622,10765.622 +58,2025-06-10T00:10:25.904983-07:00,0.0,10.761031,10761.031 +59,2025-06-10T00:10:36.663242-07:00,0.0,10.758259,10758.259 +60,2025-06-10T00:10:47.434797-07:00,0.0,10.771555,10771.555 +61,2025-06-10T00:10:58.193802-07:00,0.0,10.759005,10759.005 +62,2025-06-10T00:11:08.952807-07:00,0.0,10.759005,10759.005 +63,2025-06-10T00:11:19.722794-07:00,0.0,10.769987,10769.987 +64,2025-06-10T00:11:30.485025-07:00,0.0,10.762231,10762.231 +65,2025-06-10T00:11:41.240848-07:00,0.0,10.755823,10755.823 +66,2025-06-10T00:11:52.012031-07:00,0.0,10.771183,10771.183 +67,2025-06-10T00:12:02.768861-07:00,0.0,10.75683,10756.83 +68,2025-06-10T00:12:13.528800-07:00,0.0,10.759939,10759.939 +69,2025-06-10T00:12:24.291756-07:00,0.0,10.762956,10762.956 +70,2025-06-10T00:12:35.060847-07:00,0.0,10.769091,10769.091 +71,2025-06-10T00:12:45.823801-07:00,0.0,10.762954,10762.954 +72,2025-06-10T00:12:56.585195-07:00,0.0,10.761394,10761.394 +73,2025-06-10T00:13:07.351987-07:00,0.0,10.766792,10766.792 +74,2025-06-10T00:13:18.108783-07:00,0.0,10.756796,10756.796 +75,2025-06-10T00:13:28.870952-07:00,0.0,10.762169,10762.169 +76,2025-06-10T00:13:39.635282-07:00,0.0,10.76433,10764.33 +77,2025-06-10T00:13:50.392871-07:00,0.0,10.757589,10757.589 +78,2025-06-10T00:14:01.148808-07:00,0.0,10.755937,10755.937 +79,2025-06-10T00:14:11.905789-07:00,0.0,10.756981,10756.981 +80,2025-06-10T00:14:22.665255-07:00,0.0,10.759466,10759.466 +81,2025-06-10T00:14:33.422058-07:00,0.0,10.756803,10756.803 +82,2025-06-10T00:14:44.189804-07:00,0.0,10.767746,10767.746 +83,2025-06-10T00:14:54.945802-07:00,0.0,10.755998,10755.998 +84,2025-06-10T00:15:05.705802-07:00,0.0,10.76,10760.0 +85,2025-06-10T00:15:16.470577-07:00,0.0,10.764775,10764.775 +86,2025-06-10T00:15:27.230806-07:00,0.0,10.760229,10760.229 +87,2025-06-10T00:15:37.993066-07:00,0.0,10.76226,10762.26 +88,2025-06-10T00:15:48.748812-07:00,0.0,10.755746,10755.746 +89,2025-06-10T00:15:59.514449-07:00,0.0,10.765637,10765.637 +90,2025-06-10T00:16:10.277802-07:00,0.0,10.763353,10763.353 +91,2025-06-10T00:16:21.045026-07:00,0.0,10.767224,10767.224 +92,2025-06-10T00:16:31.808244-07:00,0.0,10.763218,10763.218 +93,2025-06-10T00:16:42.561086-07:00,0.0,10.752842,10752.842 +94,2025-06-10T00:16:53.316052-07:00,0.0,10.754966,10754.966 +95,2025-06-10T00:17:04.077808-07:00,0.0,10.761756,10761.756 +96,2025-06-10T00:17:14.844335-07:00,0.0,10.766527,10766.527 +97,2025-06-10T00:17:25.596054-07:00,0.0,10.751719,10751.719 +98,2025-06-10T00:17:36.361848-07:00,0.0,10.765794,10765.794 +99,2025-06-10T00:17:47.117497-07:00,0.0,10.755649,10755.649 +100,2025-06-10T00:17:57.879785-07:00,0.0,10.762288,10762.288 +101,2025-06-10T00:18:08.648935-07:00,0.0,10.76915,10769.15 +102,2025-06-10T00:18:19.406799-07:00,0.0,10.757864,10757.864 +103,2025-06-10T00:18:30.176747-07:00,0.0,10.769948,10769.948 +104,2025-06-10T00:18:40.935804-07:00,0.0,10.759057,10759.057 +105,2025-06-10T00:18:51.699274-07:00,0.0,10.76347,10763.47 +106,2025-06-10T00:19:02.471279-07:00,0.0,10.772005,10772.005 +107,2025-06-10T00:19:13.241048-07:00,0.0,10.769769,10769.769 +108,2025-06-10T00:19:23.995808-07:00,0.0,10.75476,10754.76 +109,2025-06-10T00:19:34.770345-07:00,0.0,10.774537,10774.537 +110,2025-06-10T00:19:45.530024-07:00,0.0,10.759679,10759.679 +111,2025-06-10T00:19:56.295049-07:00,0.0,10.765025,10765.025 +112,2025-06-10T00:20:07.067441-07:00,0.0,10.772392,10772.392 +113,2025-06-10T00:20:17.828702-07:00,0.0,10.761261,10761.261 +114,2025-06-10T00:20:28.594796-07:00,0.0,10.766094,10766.094 +115,2025-06-10T00:20:39.366812-07:00,0.0,10.772016,10772.016 +116,2025-06-10T00:20:50.129794-07:00,0.0,10.762982,10762.982 +117,2025-06-10T00:21:00.887039-07:00,0.0,10.757245,10757.245 +118,2025-06-10T00:21:11.655828-07:00,0.0,10.768789,10768.789 +119,2025-06-10T00:21:22.428101-07:00,0.0,10.772273,10772.273 +120,2025-06-10T00:21:33.186104-07:00,0.0,10.758003,10758.003 +121,2025-06-10T00:21:43.955046-07:00,0.0,10.768942,10768.942 +122,2025-06-10T00:21:54.711801-07:00,0.0,10.756755,10756.755 +123,2025-06-10T00:22:05.475556-07:00,0.0,10.763755,10763.755 +124,2025-06-10T00:22:16.232619-07:00,0.0,10.757063,10757.063 +125,2025-06-10T00:22:27.003951-07:00,0.0,10.771332,10771.332 +126,2025-06-10T00:22:37.758810-07:00,0.0,10.754859,10754.859 +127,2025-06-10T00:22:48.521027-07:00,0.0,10.762217,10762.217 +128,2025-06-10T00:22:59.286085-07:00,0.0,10.765058,10765.058 +129,2025-06-10T00:23:10.050106-07:00,0.0,10.764021,10764.021 +130,2025-06-10T00:23:20.816804-07:00,0.0,10.766698,10766.698 +131,2025-06-10T00:23:31.577288-07:00,0.0,10.760484,10760.484 +132,2025-06-10T00:23:42.336084-07:00,0.0,10.758796,10758.796 +133,2025-06-10T00:23:53.094055-07:00,0.0,10.757971,10757.971 +134,2025-06-10T00:24:03.858803-07:00,0.0,10.764748,10764.748 +135,2025-06-10T00:24:14.618456-07:00,0.0,10.759653,10759.653 +136,2025-06-10T00:24:25.382806-07:00,0.0,10.76435,10764.35 +137,2025-06-10T00:24:36.147085-07:00,0.0,10.764279,10764.279 +138,2025-06-10T00:24:46.901936-07:00,0.0,10.754851,10754.851 +139,2025-06-10T00:24:57.660792-07:00,0.0,10.758856,10758.856 +140,2025-06-10T00:25:08.422279-07:00,0.0,10.761487,10761.487 +141,2025-06-10T00:25:19.180923-07:00,0.0,10.758644,10758.644 +142,2025-06-10T00:25:29.943101-07:00,0.0,10.762178,10762.178 +143,2025-06-10T00:25:40.696062-07:00,0.0,10.752961,10752.961 +144,2025-06-10T00:25:51.457102-07:00,0.0,10.76104,10761.04 +145,2025-06-10T00:26:02.215987-07:00,0.0,10.758885,10758.885 +146,2025-06-10T00:26:12.973804-07:00,0.0,10.757817,10757.817 +147,2025-06-10T00:26:23.743674-07:00,0.0,10.76987,10769.87 +148,2025-06-10T00:26:34.505131-07:00,0.0,10.761457,10761.457 +149,2025-06-10T00:26:45.262251-07:00,0.0,10.75712,10757.12 +150,2025-06-10T00:26:56.019807-07:00,0.0,10.757556,10757.556 +151,2025-06-10T00:27:06.792163-07:00,0.0,10.772356,10772.356 +152,2025-06-10T00:27:17.551808-07:00,0.0,10.759645,10759.645 +153,2025-06-10T00:27:28.309216-07:00,0.0,10.757408,10757.408 +154,2025-06-10T00:27:39.070063-07:00,0.0,10.760847,10760.847 +155,2025-06-10T00:27:49.835167-07:00,0.0,10.765104,10765.104 +156,2025-06-10T00:28:00.594857-07:00,0.0,10.75969,10759.69 +157,2025-06-10T00:28:11.349945-07:00,0.0,10.755088,10755.088 +158,2025-06-10T00:28:22.108253-07:00,0.0,10.758308,10758.308 +159,2025-06-10T00:28:32.867298-07:00,0.0,10.759045,10759.045 +160,2025-06-10T00:28:43.625119-07:00,0.0,10.757821,10757.821 +161,2025-06-10T00:28:54.379804-07:00,0.0,10.754685,10754.685 +162,2025-06-10T00:29:05.147795-07:00,0.0,10.767991,10767.991 +163,2025-06-10T00:29:15.907217-07:00,0.0,10.759422,10759.422 +164,2025-06-10T00:29:26.662655-07:00,0.0,10.755438,10755.438 +165,2025-06-10T00:29:37.423189-07:00,0.0,10.760534,10760.534 +166,2025-06-10T00:29:48.180035-07:00,0.0,10.756846,10756.846 +167,2025-06-10T00:29:58.933862-07:00,0.0,10.753827,10753.827 +168,2025-06-10T00:30:09.691018-07:00,0.0,10.757156,10757.156 +169,2025-06-10T00:30:20.452951-07:00,0.0,10.761933,10761.933 +170,2025-06-10T00:30:31.213964-07:00,0.0,10.761013,10761.013 +171,2025-06-10T00:30:41.972213-07:00,0.0,10.758249,10758.249 +172,2025-06-10T00:30:52.733966-07:00,0.0,10.761753,10761.753 +173,2025-06-10T00:31:03.498049-07:00,0.0,10.764083,10764.083 +174,2025-06-10T00:31:14.254135-07:00,0.0,10.756086,10756.086 +175,2025-06-10T00:31:25.019804-07:00,0.0,10.765669,10765.669 +176,2025-06-10T00:31:35.773058-07:00,0.0,10.753254,10753.254 +177,2025-06-10T00:31:46.538135-07:00,0.0,10.765077,10765.077 +178,2025-06-10T00:31:57.301062-07:00,0.0,10.762927,10762.927 +179,2025-06-10T00:32:08.062037-07:00,0.0,10.760975,10760.975 +180,2025-06-10T00:32:18.812787-07:00,0.0,10.75075,10750.75 +181,2025-06-10T00:32:29.583320-07:00,0.0,10.770533,10770.533 +182,2025-06-10T00:32:40.335316-07:00,0.0,10.751996,10751.996 +183,2025-06-10T00:32:51.101804-07:00,0.0,10.766488,10766.488 +184,2025-06-10T00:33:01.860789-07:00,0.0,10.758985,10758.985 +185,2025-06-10T00:33:12.615826-07:00,0.0,10.755037,10755.037 +186,2025-06-10T00:33:23.376087-07:00,0.0,10.760261,10760.261 +187,2025-06-10T00:33:34.138845-07:00,0.0,10.762758,10762.758 +188,2025-06-10T00:33:44.894004-07:00,0.0,10.755159,10755.159 +189,2025-06-10T00:33:55.652802-07:00,0.0,10.758798,10758.798 +190,2025-06-10T00:34:06.414359-07:00,0.0,10.761557,10761.557 +191,2025-06-10T00:34:17.176119-07:00,0.0,10.76176,10761.76 +192,2025-06-10T00:34:27.930834-07:00,0.0,10.754715,10754.715 +193,2025-06-10T00:34:38.689164-07:00,0.0,10.75833,10758.33 +194,2025-06-10T00:34:49.450848-07:00,0.0,10.761684,10761.684 +195,2025-06-10T00:35:00.206092-07:00,0.0,10.755244,10755.244 +196,2025-06-10T00:35:10.974802-07:00,0.0,10.76871,10768.71 +197,2025-06-10T00:35:21.735853-07:00,0.0,10.761051,10761.051 +198,2025-06-10T00:35:32.497826-07:00,0.0,10.761973,10761.973 +199,2025-06-10T00:35:43.255148-07:00,0.0,10.757322,10757.322 +200,2025-06-10T00:35:54.019058-07:00,0.0,10.76391,10763.91 +201,2025-06-10T00:36:04.773802-07:00,0.0,10.754744,10754.744 +202,2025-06-10T00:36:15.544104-07:00,0.0,10.770302,10770.302 +203,2025-06-10T00:36:26.296104-07:00,0.0,10.752,10752.0 +204,2025-06-10T00:36:37.063100-07:00,0.0,10.766996,10766.996 +205,2025-06-10T00:36:47.818056-07:00,0.0,10.754956,10754.956 +206,2025-06-10T00:36:58.575285-07:00,0.0,10.757229,10757.229 +207,2025-06-10T00:37:09.344612-07:00,0.0,10.769327,10769.327 +208,2025-06-10T00:37:20.099803-07:00,0.0,10.755191,10755.191 +209,2025-06-10T00:37:30.857804-07:00,0.0,10.758001,10758.001 +210,2025-06-10T00:37:41.629165-07:00,0.0,10.771361,10771.361 +211,2025-06-10T00:37:52.382865-07:00,0.0,10.7537,10753.7 +212,2025-06-10T00:38:03.142785-07:00,0.0,10.75992,10759.92 +213,2025-06-10T00:38:13.917558-07:00,0.0,10.774773,10774.773 +214,2025-06-10T00:38:24.672942-07:00,0.0,10.755384,10755.384 +215,2025-06-10T00:38:35.432401-07:00,0.0,10.759459,10759.459 +216,2025-06-10T00:38:46.196037-07:00,0.0,10.763636,10763.636 +217,2025-06-10T00:38:56.952887-07:00,0.0,10.75685,10756.85 +218,2025-06-10T00:39:07.718143-07:00,0.0,10.765256,10765.256 +219,2025-06-10T00:39:18.485087-07:00,0.0,10.766944,10766.944 +220,2025-06-10T00:39:29.237802-07:00,0.0,10.752715,10752.715 +221,2025-06-10T00:39:39.998967-07:00,0.0,10.761165,10761.165 +222,2025-06-10T00:39:50.765464-07:00,0.0,10.766497,10766.497 +223,2025-06-10T00:40:01.518783-07:00,0.0,10.753319,10753.319 +224,2025-06-10T00:40:12.281061-07:00,0.0,10.762278,10762.278 +225,2025-06-10T00:40:23.050119-07:00,0.0,10.769058,10769.058 +226,2025-06-10T00:40:33.803787-07:00,0.0,10.753668,10753.668 +227,2025-06-10T00:40:44.563802-07:00,0.0,10.760015,10760.015 +228,2025-06-10T00:40:55.324837-07:00,0.0,10.761035,10761.035 +229,2025-06-10T00:41:06.085297-07:00,0.0,10.76046,10760.46 +230,2025-06-10T00:41:16.854028-07:00,0.0,10.768731,10768.731 +231,2025-06-10T00:41:27.608067-07:00,0.0,10.754039,10754.039 +232,2025-06-10T00:41:38.374092-07:00,0.0,10.766025,10766.025 +233,2025-06-10T00:41:49.129549-07:00,0.0,10.755457,10755.457 +234,2025-06-10T00:41:59.900804-07:00,0.0,10.771255,10771.255 +235,2025-06-10T00:42:10.653946-07:00,0.0,10.753142,10753.142 +236,2025-06-10T00:42:21.425002-07:00,0.0,10.771056,10771.056 +237,2025-06-10T00:42:32.178115-07:00,0.0,10.753113,10753.113 +238,2025-06-10T00:42:42.943853-07:00,0.0,10.765738,10765.738 +239,2025-06-10T00:42:53.702841-07:00,0.0,10.758988,10758.988 +240,2025-06-10T00:43:04.461101-07:00,0.0,10.75826,10758.26 +241,2025-06-10T00:43:15.230806-07:00,0.0,10.769705,10769.705 +242,2025-06-10T00:43:25.996043-07:00,0.0,10.765237,10765.237 +243,2025-06-10T00:43:36.757803-07:00,0.0,10.76176,10761.76 +244,2025-06-10T00:43:47.513087-07:00,0.0,10.755284,10755.284 +245,2025-06-10T00:43:58.274150-07:00,0.0,10.761063,10761.063 +246,2025-06-10T00:44:09.039049-07:00,0.0,10.764899,10764.899 +247,2025-06-10T00:44:19.797088-07:00,0.0,10.758039,10758.039 +248,2025-06-10T00:44:30.557115-07:00,0.0,10.760027,10760.027 +249,2025-06-10T00:44:41.326219-07:00,0.0,10.769104,10769.104 +250,2025-06-10T00:44:52.088900-07:00,0.0,10.762681,10762.681 +251,2025-06-10T00:45:02.852085-07:00,0.0,10.763185,10763.185 +252,2025-06-10T00:45:13.614989-07:00,0.0,10.762904,10762.904 +253,2025-06-10T00:45:24.373806-07:00,0.0,10.758817,10758.817 +254,2025-06-10T00:45:35.139088-07:00,0.0,10.765282,10765.282 +255,2025-06-10T00:45:45.896089-07:00,0.0,10.757001,10757.001 +256,2025-06-10T00:45:56.662058-07:00,0.0,10.765969,10765.969 +257,2025-06-10T00:46:07.421843-07:00,0.0,10.759785,10759.785 +258,2025-06-10T00:46:18.184394-07:00,0.0,10.762551,10762.551 +259,2025-06-10T00:46:28.946251-07:00,0.0,10.761857,10761.857 +260,2025-06-10T00:46:39.716078-07:00,0.0,10.769827,10769.827 +261,2025-06-10T00:46:50.472016-07:00,0.0,10.755938,10755.938 +262,2025-06-10T00:47:01.239641-07:00,0.0,10.767625,10767.625 +263,2025-06-10T00:47:11.990988-07:00,0.0,10.751347,10751.347 +264,2025-06-10T00:47:22.755995-07:00,0.0,10.765007,10765.007 +265,2025-06-10T00:47:33.524103-07:00,0.0,10.768108,10768.108 +266,2025-06-10T00:47:44.288299-07:00,0.0,10.764196,10764.196 +267,2025-06-10T00:47:55.048052-07:00,0.0,10.759753,10759.753 +268,2025-06-10T00:48:05.817160-07:00,0.0,10.769108,10769.108 +269,2025-06-10T00:48:16.567067-07:00,0.0,10.749907,10749.907 +270,2025-06-10T00:48:27.330802-07:00,0.0,10.763735,10763.735 +271,2025-06-10T00:48:38.089947-07:00,0.0,10.759145,10759.145 +272,2025-06-10T00:48:48.851802-07:00,0.0,10.761855,10761.855 +273,2025-06-10T00:48:59.609093-07:00,0.0,10.757291,10757.291 +274,2025-06-10T00:49:10.379064-07:00,0.0,10.769971,10769.971 +275,2025-06-10T00:49:21.133802-07:00,0.0,10.754738,10754.738 +276,2025-06-10T00:49:31.888807-07:00,0.0,10.755005,10755.005 +277,2025-06-10T00:49:42.653131-07:00,0.0,10.764324,10764.324 +278,2025-06-10T00:49:53.412843-07:00,0.0,10.759712,10759.712 +279,2025-06-10T00:50:04.181796-07:00,0.0,10.768953,10768.953 +280,2025-06-10T00:50:14.941317-07:00,0.0,10.759521,10759.521 +281,2025-06-10T00:50:25.698388-07:00,0.0,10.757071,10757.071 +282,2025-06-10T00:50:36.464808-07:00,0.0,10.76642,10766.42 +283,2025-06-10T00:50:47.231122-07:00,0.0,10.766314,10766.314 +284,2025-06-10T00:50:57.994849-07:00,0.0,10.763727,10763.727 +285,2025-06-10T00:51:08.746943-07:00,0.0,10.752094,10752.094 +286,2025-06-10T00:51:19.509847-07:00,0.0,10.762904,10762.904 +287,2025-06-10T00:51:30.282093-07:00,0.0,10.772246,10772.246 +288,2025-06-10T00:51:41.091942-07:00,0.0,10.809849,10809.849 +289,2025-06-10T00:51:51.847889-07:00,0.0,10.755947,10755.947 +290,2025-06-10T00:52:02.614646-07:00,0.0,10.766757,10766.757 +291,2025-06-10T00:52:13.364918-07:00,0.0,10.750272,10750.272 +292,2025-06-10T00:52:24.122279-07:00,0.0,10.757361,10757.361 +293,2025-06-10T00:52:34.880142-07:00,0.0,10.757863,10757.863 +294,2025-06-10T00:52:45.643089-07:00,0.0,10.762947,10762.947 +295,2025-06-10T00:52:56.401127-07:00,0.0,10.758038,10758.038 +296,2025-06-10T00:53:07.160610-07:00,0.0,10.759483,10759.483 +297,2025-06-10T00:53:17.919731-07:00,0.0,10.759121,10759.121 +298,2025-06-10T00:53:28.683029-07:00,0.0,10.763298,10763.298 +299,2025-06-10T00:53:39.435863-07:00,0.0,10.752834,10752.834 +300,2025-06-10T00:53:50.190883-07:00,0.0,10.75502,10755.02 +301,2025-06-10T00:54:00.952191-07:00,0.0,10.761308,10761.308 +302,2025-06-10T00:54:11.718880-07:00,0.0,10.766689,10766.689 +303,2025-06-10T00:54:22.471878-07:00,0.0,10.752998,10752.998 +304,2025-06-10T00:54:33.242088-07:00,0.0,10.77021,10770.21 +305,2025-06-10T00:54:44.000002-07:00,0.0,10.757914,10757.914 +306,2025-06-10T00:54:54.753484-07:00,0.0,10.753482,10753.482 +307,2025-06-10T00:55:05.512061-07:00,0.0,10.758577,10758.577 +308,2025-06-10T00:55:16.281335-07:00,0.0,10.769274,10769.274 +309,2025-06-10T00:55:27.041193-07:00,0.0,10.759858,10759.858 +310,2025-06-10T00:55:37.800124-07:00,0.0,10.758931,10758.931 +311,2025-06-10T00:55:48.554907-07:00,0.0,10.754783,10754.783 +312,2025-06-10T00:55:59.318882-07:00,0.0,10.763975,10763.975 +313,2025-06-10T00:56:10.074330-07:00,0.0,10.755448,10755.448 +314,2025-06-10T00:56:20.838211-07:00,0.0,10.763881,10763.881 +315,2025-06-10T00:56:31.588568-07:00,0.0,10.750357,10750.357 +316,2025-06-10T00:56:42.348994-07:00,0.0,10.760426,10760.426 +317,2025-06-10T00:56:53.112068-07:00,0.0,10.763074,10763.074 +318,2025-06-10T00:57:03.877865-07:00,0.0,10.765797,10765.797 +319,2025-06-10T00:57:14.639033-07:00,0.0,10.761168,10761.168 +320,2025-06-10T00:57:25.396877-07:00,0.0,10.757844,10757.844 +321,2025-06-10T00:57:36.160537-07:00,0.0,10.76366,10763.66 +322,2025-06-10T00:57:46.929884-07:00,0.0,10.769347,10769.347 +323,2025-06-10T00:57:57.691880-07:00,0.0,10.761996,10761.996 +324,2025-06-10T00:58:08.452265-07:00,0.0,10.760385,10760.385 +325,2025-06-10T00:58:19.220880-07:00,0.0,10.768615,10768.615 +326,2025-06-10T00:58:29.984881-07:00,0.0,10.764001,10764.001 +327,2025-06-10T00:58:40.745923-07:00,0.0,10.761042,10761.042 +328,2025-06-10T00:58:51.514277-07:00,0.0,10.768354,10768.354 +329,2025-06-10T00:59:02.269932-07:00,0.0,10.755655,10755.655 +330,2025-06-10T00:59:13.040054-07:00,0.0,10.770122,10770.122 +331,2025-06-10T00:59:23.808883-07:00,0.0,10.768829,10768.829 +332,2025-06-10T00:59:34.567878-07:00,0.0,10.758995,10758.995 +333,2025-06-10T00:59:45.331880-07:00,0.0,10.764002,10764.002 +334,2025-06-10T00:59:56.091434-07:00,0.0,10.759554,10759.554 +335,2025-06-10T01:00:06.855880-07:00,0.0,10.764446,10764.446 +336,2025-06-10T01:00:17.623137-07:00,0.0,10.767257,10767.257 +337,2025-06-10T01:00:28.394042-07:00,0.0,10.770905,10770.905 +338,2025-06-10T01:00:39.156878-07:00,0.0,10.762836,10762.836 +339,2025-06-10T01:00:49.924076-07:00,0.0,10.767198,10767.198 +340,2025-06-10T01:01:00.679734-07:00,0.0,10.755658,10755.658 +341,2025-06-10T01:01:11.439291-07:00,0.0,10.759557,10759.557 +342,2025-06-10T01:01:22.199910-07:00,0.0,10.760619,10760.619 +343,2025-06-10T01:01:32.963928-07:00,0.0,10.764018,10764.018 +344,2025-06-10T01:01:43.720037-07:00,0.0,10.756109,10756.109 +345,2025-06-10T01:01:54.484872-07:00,0.0,10.764835,10764.835 +346,2025-06-10T01:02:05.248353-07:00,0.0,10.763481,10763.481 +347,2025-06-10T01:02:16.006874-07:00,0.0,10.758521,10758.521 +348,2025-06-10T01:02:26.778189-07:00,0.0,10.771315,10771.315 +349,2025-06-10T01:02:37.534995-07:00,0.0,10.756806,10756.806 +350,2025-06-10T01:02:48.294861-07:00,0.0,10.759866,10759.866 +351,2025-06-10T01:02:59.054345-07:00,0.0,10.759484,10759.484 +352,2025-06-10T01:03:09.815861-07:00,0.0,10.761516,10761.516 +353,2025-06-10T01:03:20.575148-07:00,0.0,10.759287,10759.287 +354,2025-06-10T01:03:31.332615-07:00,0.0,10.757467,10757.467 +355,2025-06-10T01:03:42.096450-07:00,0.0,10.763835,10763.835 +356,2025-06-10T01:03:52.857321-07:00,0.0,10.760871,10760.871 +357,2025-06-10T01:04:03.623859-07:00,0.0,10.766538,10766.538 +358,2025-06-10T01:04:14.387253-07:00,0.0,10.763394,10763.394 +359,2025-06-10T01:04:25.151925-07:00,0.0,10.764672,10764.672 +360,2025-06-10T01:04:35.917019-07:00,0.0,10.765094,10765.094 +361,2025-06-10T01:04:46.683880-07:00,0.0,10.766861,10766.861 +362,2025-06-10T01:04:57.448596-07:00,0.0,10.764716,10764.716 +363,2025-06-10T01:05:08.216879-07:00,0.0,10.768283,10768.283 +364,2025-06-10T01:05:18.977049-07:00,0.0,10.76017,10760.17 +365,2025-06-10T01:05:29.741981-07:00,0.0,10.764932,10764.932 +366,2025-06-10T01:05:40.504076-07:00,0.0,10.762095,10762.095 +367,2025-06-10T01:05:51.271951-07:00,0.0,10.767875,10767.875 +368,2025-06-10T01:06:02.038244-07:00,0.0,10.766293,10766.293 +369,2025-06-10T01:06:12.800876-07:00,0.0,10.762632,10762.632 +370,2025-06-10T01:06:23.569919-07:00,0.0,10.769043,10769.043 +371,2025-06-10T01:06:34.323157-07:00,0.0,10.753238,10753.238 +372,2025-06-10T01:06:45.089872-07:00,0.0,10.766715,10766.715 +373,2025-06-10T01:06:55.849444-07:00,0.0,10.759572,10759.572 +374,2025-06-10T01:07:06.617506-07:00,0.0,10.768062,10768.062 +375,2025-06-10T01:07:17.383591-07:00,0.0,10.766085,10766.085 +376,2025-06-10T01:07:28.136908-07:00,0.0,10.753317,10753.317 +377,2025-06-10T01:07:38.902914-07:00,0.0,10.766006,10766.006 +378,2025-06-10T01:07:49.671135-07:00,0.0,10.768221,10768.221 +379,2025-06-10T01:08:00.433999-07:00,0.0,10.762864,10762.864 +380,2025-06-10T01:08:11.189882-07:00,0.0,10.755883,10755.883 +381,2025-06-10T01:08:21.954137-07:00,0.0,10.764255,10764.255 +382,2025-06-10T01:08:32.720880-07:00,0.0,10.766743,10766.743 +383,2025-06-10T01:08:43.491298-07:00,0.0,10.770418,10770.418 +384,2025-06-10T01:08:54.248211-07:00,0.0,10.756913,10756.913 +385,2025-06-10T01:09:05.007961-07:00,0.0,10.75975,10759.75 +386,2025-06-10T01:09:15.774959-07:00,0.0,10.766998,10766.998 +387,2025-06-10T01:09:26.534193-07:00,0.0,10.759234,10759.234 +388,2025-06-10T01:09:37.299296-07:00,0.0,10.765103,10765.103 +389,2025-06-10T01:09:48.068857-07:00,0.0,10.769561,10769.561 +390,2025-06-10T01:09:58.826971-07:00,0.0,10.758114,10758.114 +391,2025-06-10T01:10:09.599857-07:00,0.0,10.772886,10772.886 +392,2025-06-10T01:10:20.358882-07:00,0.0,10.759025,10759.025 +393,2025-06-10T01:10:31.128181-07:00,0.0,10.769299,10769.299 +394,2025-06-10T01:10:41.889197-07:00,0.0,10.761016,10761.016 +395,2025-06-10T01:10:52.656107-07:00,0.0,10.76691,10766.91 +396,2025-06-10T01:11:03.408999-07:00,0.0,10.752892,10752.892 +397,2025-06-10T01:11:14.181147-07:00,0.0,10.772148,10772.148 +398,2025-06-10T01:11:24.940859-07:00,0.0,10.759712,10759.712 +399,2025-06-10T01:11:35.707882-07:00,0.0,10.767023,10767.023 +400,2025-06-10T01:11:46.478430-07:00,0.0,10.770548,10770.548 +401,2025-06-10T01:11:57.229304-07:00,0.0,10.750874,10750.874 +402,2025-06-10T01:12:08.002872-07:00,0.0,10.773568,10773.568 +403,2025-06-10T01:12:18.762468-07:00,0.0,10.759596,10759.596 +404,2025-06-10T01:12:29.516449-07:00,0.0,10.753981,10753.981 +405,2025-06-10T01:12:40.272071-07:00,0.0,10.755622,10755.622 +406,2025-06-10T01:12:51.032201-07:00,0.0,10.76013,10760.13 +407,2025-06-10T01:13:01.801906-07:00,0.0,10.769705,10769.705 +408,2025-06-10T01:13:12.563468-07:00,0.0,10.761562,10761.562 +409,2025-06-10T01:13:23.323052-07:00,0.0,10.759584,10759.584 +410,2025-06-10T01:13:34.078880-07:00,0.0,10.755828,10755.828 +411,2025-06-10T01:13:44.845322-07:00,0.0,10.766442,10766.442 +412,2025-06-10T01:13:55.607039-07:00,0.0,10.761717,10761.717 +413,2025-06-10T01:14:06.364041-07:00,0.0,10.757002,10757.002 +414,2025-06-10T01:14:17.131884-07:00,0.0,10.767843,10767.843 +415,2025-06-10T01:14:27.891135-07:00,0.0,10.759251,10759.251 +416,2025-06-10T01:14:38.650252-07:00,0.0,10.759117,10759.117 +417,2025-06-10T01:14:49.419901-07:00,0.0,10.769649,10769.649 +418,2025-06-10T01:15:00.177074-07:00,0.0,10.757173,10757.173 +419,2025-06-10T01:15:10.946106-07:00,0.0,10.769032,10769.032 +420,2025-06-10T01:15:21.706872-07:00,0.0,10.760766,10760.766 +421,2025-06-10T01:15:32.477556-07:00,0.0,10.770684,10770.684 +422,2025-06-10T01:15:43.239198-07:00,0.0,10.761642,10761.642 +423,2025-06-10T01:15:54.000027-07:00,0.0,10.760829,10760.829 +424,2025-06-10T01:16:04.767058-07:00,0.0,10.767031,10767.031 +425,2025-06-10T01:16:15.532017-07:00,0.0,10.764959,10764.959 +426,2025-06-10T01:16:26.301574-07:00,0.0,10.769557,10769.557 +427,2025-06-10T01:16:37.071149-07:00,0.0,10.769575,10769.575 +428,2025-06-10T01:16:47.849175-07:00,0.0,10.778026,10778.026 +429,2025-06-10T01:16:58.638087-07:00,0.0,10.788912,10788.912 +430,2025-06-10T01:17:09.419949-07:00,0.0,10.781862,10781.862 +431,2025-06-10T01:17:20.206012-07:00,0.0,10.786063,10786.063 +432,2025-06-10T01:17:30.989025-07:00,0.0,10.783013,10783.013 +433,2025-06-10T01:17:41.764176-07:00,0.0,10.775151,10775.151 +434,2025-06-10T01:17:52.555181-07:00,0.0,10.791005,10791.005 +435,2025-06-10T01:18:03.333859-07:00,0.0,10.778678,10778.678 +436,2025-06-10T01:18:14.117285-07:00,0.0,10.783426,10783.426 +437,2025-06-10T01:18:24.898064-07:00,0.0,10.780779,10780.779 +438,2025-06-10T01:18:35.683481-07:00,0.0,10.785417,10785.417 +439,2025-06-10T01:18:46.459661-07:00,0.0,10.77618,10776.18 +440,2025-06-10T01:18:57.234092-07:00,0.0,10.774431,10774.431 +441,2025-06-10T01:19:08.003201-07:00,0.0,10.769109,10769.109 +442,2025-06-10T01:19:18.762078-07:00,0.0,10.758877,10758.877 +443,2025-06-10T01:19:29.528927-07:00,0.0,10.766849,10766.849 +444,2025-06-10T01:19:40.289857-07:00,0.0,10.76093,10760.93 +445,2025-06-10T01:19:51.052293-07:00,0.0,10.762436,10762.436 +446,2025-06-10T01:20:01.810851-07:00,0.0,10.758558,10758.558 +447,2025-06-10T01:20:12.583932-07:00,0.0,10.773081,10773.081 +448,2025-06-10T01:20:23.341700-07:00,0.0,10.757768,10757.768 +449,2025-06-10T01:20:34.099876-07:00,0.0,10.758176,10758.176 +450,2025-06-10T01:20:44.860135-07:00,0.0,10.760259,10760.259 +451,2025-06-10T01:20:55.619072-07:00,0.0,10.758937,10758.937 +452,2025-06-10T01:21:06.378559-07:00,0.0,10.759487,10759.487 +453,2025-06-10T01:21:17.133955-07:00,0.0,10.755396,10755.396 +454,2025-06-10T01:21:27.896869-07:00,0.0,10.762914,10762.914 +455,2025-06-10T01:21:38.650874-07:00,0.0,10.754005,10754.005 +456,2025-06-10T01:21:49.416947-07:00,0.0,10.766073,10766.073 +457,2025-06-10T01:22:00.170426-07:00,0.0,10.753479,10753.479 +458,2025-06-10T01:22:10.933882-07:00,0.0,10.763456,10763.456 +459,2025-06-10T01:22:21.687274-07:00,0.0,10.753392,10753.392 +460,2025-06-10T01:22:32.452195-07:00,0.0,10.764921,10764.921 +461,2025-06-10T01:22:43.211534-07:00,0.0,10.759339,10759.339 +462,2025-06-10T01:22:53.967310-07:00,0.0,10.755776,10755.776 +463,2025-06-10T01:23:04.725877-07:00,0.0,10.758567,10758.567 +464,2025-06-10T01:23:15.490878-07:00,0.0,10.765001,10765.001 +465,2025-06-10T01:23:26.252872-07:00,0.0,10.761994,10761.994 +466,2025-06-10T01:23:37.012972-07:00,0.0,10.7601,10760.1 +467,2025-06-10T01:23:47.769505-07:00,0.0,10.756533,10756.533 +468,2025-06-10T01:23:58.529878-07:00,0.0,10.760373,10760.373 +469,2025-06-10T01:24:09.295991-07:00,0.0,10.766113,10766.113 +470,2025-06-10T01:24:20.049845-07:00,0.0,10.753854,10753.854 +471,2025-06-10T01:24:30.821884-07:00,0.0,10.772039,10772.039 +472,2025-06-10T01:24:41.573305-07:00,0.0,10.751421,10751.421 +473,2025-06-10T01:24:52.344298-07:00,0.0,10.770993,10770.993 +474,2025-06-10T01:25:03.101284-07:00,0.0,10.756986,10756.986 +475,2025-06-10T01:25:13.861023-07:00,0.0,10.759739,10759.739 +476,2025-06-10T01:25:24.618883-07:00,0.0,10.75786,10757.86 +477,2025-06-10T01:25:35.388107-07:00,0.0,10.769224,10769.224 +478,2025-06-10T01:25:46.152135-07:00,0.0,10.764028,10764.028 +479,2025-06-10T01:25:56.904270-07:00,0.0,10.752135,10752.135 +480,2025-06-10T01:26:07.666882-07:00,0.0,10.762612,10762.612 +481,2025-06-10T01:26:18.435063-07:00,0.0,10.768181,10768.181 +482,2025-06-10T01:26:29.193880-07:00,0.0,10.758817,10758.817 +483,2025-06-10T01:26:39.947012-07:00,0.0,10.753132,10753.132 +484,2025-06-10T01:26:50.709923-07:00,0.0,10.762911,10762.911 +485,2025-06-10T01:27:01.475325-07:00,0.0,10.765402,10765.402 +486,2025-06-10T01:27:12.235877-07:00,0.0,10.760552,10760.552 +487,2025-06-10T01:27:22.993131-07:00,0.0,10.757254,10757.254 +488,2025-06-10T01:27:33.752985-07:00,0.0,10.759854,10759.854 +489,2025-06-10T01:27:44.508426-07:00,0.0,10.755441,10755.441 +490,2025-06-10T01:27:55.265986-07:00,0.0,10.75756,10757.56 +491,2025-06-10T01:28:06.030878-07:00,0.0,10.764892,10764.892 +492,2025-06-10T01:28:16.790103-07:00,0.0,10.759225,10759.225 +493,2025-06-10T01:28:27.550117-07:00,0.0,10.760014,10760.014 +494,2025-06-10T01:28:38.309769-07:00,0.0,10.759652,10759.652 +495,2025-06-10T01:28:49.075264-07:00,0.0,10.765495,10765.495 +496,2025-06-10T01:28:59.833872-07:00,0.0,10.758608,10758.608 +497,2025-06-10T01:29:10.587127-07:00,0.0,10.753255,10753.255 +498,2025-06-10T01:29:21.358039-07:00,0.0,10.770912,10770.912 +499,2025-06-10T01:29:32.113293-07:00,0.0,10.755254,10755.254 +500,2025-06-10T01:29:42.881120-07:00,0.0,10.767827,10767.827 +501,2025-06-10T01:29:53.642919-07:00,0.0,10.761799,10761.799 +502,2025-06-10T01:30:04.396858-07:00,0.0,10.753939,10753.939 +503,2025-06-10T01:30:15.157880-07:00,0.0,10.761022,10761.022 +504,2025-06-10T01:30:25.921191-07:00,0.0,10.763311,10763.311 +505,2025-06-10T01:30:36.681189-07:00,0.0,10.759998,10759.998 +506,2025-06-10T01:30:47.432677-07:00,0.0,10.751488,10751.488 +507,2025-06-10T01:30:58.195962-07:00,0.0,10.763285,10763.285 +508,2025-06-10T01:31:08.957718-07:00,0.0,10.761756,10761.756 +509,2025-06-10T01:31:19.714878-07:00,0.0,10.75716,10757.16 +510,2025-06-10T01:31:30.476324-07:00,0.0,10.761446,10761.446 +511,2025-06-10T01:31:41.243026-07:00,0.0,10.766702,10766.702 +512,2025-06-10T01:31:51.999927-07:00,0.0,10.756901,10756.901 +513,2025-06-10T01:32:02.766191-07:00,0.0,10.766264,10766.264 +514,2025-06-10T01:32:13.521147-07:00,0.0,10.754956,10754.956 +515,2025-06-10T01:32:24.284878-07:00,0.0,10.763731,10763.731 +516,2025-06-10T01:32:35.045576-07:00,0.0,10.760698,10760.698 +517,2025-06-10T01:32:45.798931-07:00,0.0,10.753355,10753.355 +518,2025-06-10T01:32:56.564394-07:00,0.0,10.765463,10765.463 +519,2025-06-10T01:33:07.333866-07:00,0.0,10.769472,10769.472 +520,2025-06-10T01:33:18.090858-07:00,0.0,10.756992,10756.992 +521,2025-06-10T01:33:28.847237-07:00,0.0,10.756379,10756.379 +522,2025-06-10T01:33:39.610883-07:00,0.0,10.763646,10763.646 +523,2025-06-10T01:33:50.369883-07:00,0.0,10.759,10759.0 +524,2025-06-10T01:34:01.128882-07:00,0.0,10.758999,10758.999 +525,2025-06-10T01:34:11.887601-07:00,0.0,10.758719,10758.719 +526,2025-06-10T01:34:22.656879-07:00,0.0,10.769278,10769.278 +527,2025-06-10T01:34:33.416151-07:00,0.0,10.759272,10759.272 +528,2025-06-10T01:34:44.170191-07:00,0.0,10.75404,10754.04 +529,2025-06-10T01:34:54.935581-07:00,0.0,10.76539,10765.39 +530,2025-06-10T01:35:05.694909-07:00,0.0,10.759328,10759.328 +531,2025-06-10T01:35:16.459166-07:00,0.0,10.764257,10764.257 +532,2025-06-10T01:35:27.219115-07:00,0.0,10.759949,10759.949 +533,2025-06-10T01:35:37.978992-07:00,0.0,10.759877,10759.877 +534,2025-06-10T01:35:48.736201-07:00,0.0,10.757209,10757.209 +535,2025-06-10T01:35:59.500147-07:00,0.0,10.763946,10763.946 +536,2025-06-10T01:36:10.258864-07:00,0.0,10.758717,10758.717 +537,2025-06-10T01:36:21.018180-07:00,0.0,10.759316,10759.316 +538,2025-06-10T01:36:31.779880-07:00,0.0,10.7617,10761.7 +539,2025-06-10T01:36:42.539330-07:00,0.0,10.75945,10759.45 +540,2025-06-10T01:36:53.295981-07:00,0.0,10.756651,10756.651 +541,2025-06-10T01:37:04.059129-07:00,0.0,10.763148,10763.148 +542,2025-06-10T01:37:14.815318-07:00,0.0,10.756189,10756.189 +543,2025-06-10T01:37:25.580073-07:00,0.0,10.764755,10764.755 +544,2025-06-10T01:37:36.346908-07:00,0.0,10.766835,10766.835 +545,2025-06-10T01:37:47.108178-07:00,0.0,10.76127,10761.27 +546,2025-06-10T01:37:57.867878-07:00,0.0,10.7597,10759.7 +547,2025-06-10T01:38:08.619880-07:00,0.0,10.752002,10752.002 +548,2025-06-10T01:38:19.384095-07:00,0.0,10.764215,10764.215 +549,2025-06-10T01:38:30.143411-07:00,0.0,10.759316,10759.316 +550,2025-06-10T01:38:40.902215-07:00,0.0,10.758804,10758.804 +551,2025-06-10T01:38:51.672878-07:00,0.0,10.770663,10770.663 +552,2025-06-10T01:39:02.432926-07:00,0.0,10.760048,10760.048 +553,2025-06-10T01:39:13.194220-07:00,0.0,10.761294,10761.294 +554,2025-06-10T01:39:23.960180-07:00,0.0,10.76596,10765.96 +555,2025-06-10T01:39:34.720872-07:00,0.0,10.760692,10760.692 +556,2025-06-10T01:39:45.485100-07:00,0.0,10.764228,10764.228 +557,2025-06-10T01:39:56.241638-07:00,0.0,10.756538,10756.538 +558,2025-06-10T01:40:07.001871-07:00,0.0,10.760233,10760.233 +559,2025-06-10T01:40:17.756865-07:00,0.0,10.754994,10754.994 +560,2025-06-10T01:40:28.517913-07:00,0.0,10.761048,10761.048 +561,2025-06-10T01:40:39.282911-07:00,0.0,10.764998,10764.998 +562,2025-06-10T01:40:50.044151-07:00,0.0,10.76124,10761.24 +563,2025-06-10T01:41:00.804878-07:00,0.0,10.760727,10760.727 +564,2025-06-10T01:41:11.568429-07:00,0.0,10.763551,10763.551 +565,2025-06-10T01:41:22.335020-07:00,0.0,10.766591,10766.591 +566,2025-06-10T01:41:33.097106-07:00,0.0,10.762086,10762.086 +567,2025-06-10T01:41:43.864170-07:00,0.0,10.767064,10767.064 +568,2025-06-10T01:41:54.622131-07:00,0.0,10.757961,10757.961 +569,2025-06-10T01:42:05.392878-07:00,0.0,10.770747,10770.747 +570,2025-06-10T01:42:16.155681-07:00,0.0,10.762803,10762.803 +571,2025-06-10T01:42:26.918940-07:00,0.0,10.763259,10763.259 +572,2025-06-10T01:42:37.686181-07:00,0.0,10.767241,10767.241 +573,2025-06-10T01:42:48.441909-07:00,0.0,10.755728,10755.728 +574,2025-06-10T01:42:59.211142-07:00,0.0,10.769233,10769.233 +575,2025-06-10T01:43:09.970857-07:00,0.0,10.759715,10759.715 +576,2025-06-10T01:43:20.736881-07:00,0.0,10.766024,10766.024 +577,2025-06-10T01:43:31.506199-07:00,0.0,10.769318,10769.318 +578,2025-06-10T01:43:42.262877-07:00,0.0,10.756678,10756.678 +579,2025-06-10T01:43:53.031061-07:00,0.0,10.768184,10768.184 +580,2025-06-10T01:44:03.802215-07:00,0.0,10.771154,10771.154 +581,2025-06-10T01:44:14.559878-07:00,0.0,10.757663,10757.663 +582,2025-06-10T01:44:25.328882-07:00,0.0,10.769004,10769.004 +583,2025-06-10T01:44:36.094209-07:00,0.0,10.765327,10765.327 +584,2025-06-10T01:44:46.860883-07:00,0.0,10.766674,10766.674 +585,2025-06-10T01:44:57.622058-07:00,0.0,10.761175,10761.175 +586,2025-06-10T01:45:08.391882-07:00,0.0,10.769824,10769.824 +587,2025-06-10T01:45:19.156873-07:00,0.0,10.764991,10764.991 +588,2025-06-10T01:45:29.918193-07:00,0.0,10.76132,10761.32 +589,2025-06-10T01:45:40.693861-07:00,0.0,10.775668,10775.668 +590,2025-06-10T01:45:51.450880-07:00,0.0,10.757019,10757.019 +591,2025-06-10T01:46:02.230330-07:00,0.0,10.77945,10779.45 +592,2025-06-10T01:46:12.992281-07:00,0.0,10.761951,10761.951 +593,2025-06-10T01:46:23.763488-07:00,0.0,10.771207,10771.207 +594,2025-06-10T01:46:34.528485-07:00,0.0,10.764997,10764.997 +595,2025-06-10T01:46:45.289210-07:00,0.0,10.760725,10760.725 +596,2025-06-10T01:46:56.052111-07:00,0.0,10.762901,10762.901 +597,2025-06-10T01:47:06.823954-07:00,0.0,10.771843,10771.843 +598,2025-06-10T01:47:17.581936-07:00,0.0,10.757982,10757.982 +599,2025-06-10T01:47:28.348879-07:00,0.0,10.766943,10766.943 +600,2025-06-10T01:47:39.118528-07:00,0.0,10.769649,10769.649 +601,2025-06-10T01:47:49.881929-07:00,0.0,10.763401,10763.401 +602,2025-06-10T01:48:00.638872-07:00,0.0,10.756943,10756.943 +603,2025-06-10T01:48:11.399205-07:00,0.0,10.760333,10760.333 +604,2025-06-10T01:48:22.157097-07:00,0.0,10.757892,10757.892 +605,2025-06-10T01:48:32.914086-07:00,0.0,10.756989,10756.989 +606,2025-06-10T01:48:43.683878-07:00,0.0,10.769792,10769.792 +607,2025-06-10T01:48:54.440110-07:00,0.0,10.756232,10756.232 +608,2025-06-10T01:49:05.203882-07:00,0.0,10.763772,10763.772 +609,2025-06-10T01:49:15.958875-07:00,0.0,10.754993,10754.993 +610,2025-06-10T01:49:26.723880-07:00,0.0,10.765005,10765.005 +611,2025-06-10T01:49:37.474943-07:00,0.0,10.751063,10751.063 +612,2025-06-10T01:49:48.233164-07:00,0.0,10.758221,10758.221 +613,2025-06-10T01:49:58.999879-07:00,0.0,10.766715,10766.715 +614,2025-06-10T01:50:09.760873-07:00,0.0,10.760994,10760.994 +615,2025-06-10T01:50:20.533373-07:00,0.0,10.7725,10772.5 +616,2025-06-10T01:50:31.295886-07:00,0.0,10.762513,10762.513 +617,2025-06-10T01:50:42.048132-07:00,0.0,10.752246,10752.246 +618,2025-06-10T01:50:52.822218-07:00,0.0,10.774086,10774.086 +619,2025-06-10T01:51:03.578191-07:00,0.0,10.755973,10755.973 +620,2025-06-10T01:51:14.337878-07:00,0.0,10.759687,10759.687 +621,2025-06-10T01:51:25.100875-07:00,0.0,10.762997,10762.997 +622,2025-06-10T01:51:35.769010-07:00,0.0,10.668135,10668.135 +623,2025-06-10T01:51:46.534874-07:00,0.0,10.765864,10765.864 +624,2025-06-10T01:51:57.302910-07:00,0.0,10.768036,10768.036 +625,2025-06-10T01:52:08.061127-07:00,0.0,10.758217,10758.217 +626,2025-06-10T01:52:18.819867-07:00,0.0,10.75874,10758.74 +627,2025-06-10T01:52:29.579913-07:00,0.0,10.760046,10760.046 +628,2025-06-10T01:52:40.345992-07:00,0.0,10.766079,10766.079 +629,2025-06-10T01:52:51.107551-07:00,0.0,10.761559,10761.559 +630,2025-06-10T01:53:01.859529-07:00,0.0,10.751978,10751.978 +631,2025-06-10T01:53:12.620870-07:00,0.0,10.761341,10761.341 +632,2025-06-10T01:53:23.378915-07:00,0.0,10.758045,10758.045 +633,2025-06-10T01:53:34.141159-07:00,0.0,10.762244,10762.244 +634,2025-06-10T01:53:44.906870-07:00,0.0,10.765711,10765.711 +635,2025-06-10T01:53:55.669225-07:00,0.0,10.762355,10762.355 +636,2025-06-10T01:54:06.424026-07:00,0.0,10.754801,10754.801 +637,2025-06-10T01:54:17.188382-07:00,0.0,10.764356,10764.356 +638,2025-06-10T01:54:27.944212-07:00,0.0,10.75583,10755.83 +639,2025-06-10T01:54:38.711397-07:00,0.0,10.767185,10767.185 +640,2025-06-10T01:54:49.473567-07:00,0.0,10.76217,10762.17 +641,2025-06-10T01:55:00.233293-07:00,0.0,10.759726,10759.726 +642,2025-06-10T01:55:10.994870-07:00,0.0,10.761577,10761.577 +643,2025-06-10T01:55:21.749862-07:00,0.0,10.754992,10754.992 +644,2025-06-10T01:55:32.508861-07:00,0.0,10.758999,10758.999 +645,2025-06-10T01:55:43.274934-07:00,0.0,10.766073,10766.073 +646,2025-06-10T01:55:54.029483-07:00,0.0,10.754549,10754.549 +647,2025-06-10T01:56:04.793056-07:00,0.0,10.763573,10763.573 +648,2025-06-10T01:56:15.552126-07:00,0.0,10.75907,10759.07 +649,2025-06-10T01:56:26.317118-07:00,0.0,10.764992,10764.992 +650,2025-06-10T01:56:37.078128-07:00,0.0,10.76101,10761.01 +651,2025-06-10T01:56:47.832844-07:00,0.0,10.754716,10754.716 +652,2025-06-10T01:56:58.594870-07:00,0.0,10.762026,10762.026 +653,2025-06-10T01:57:09.354488-07:00,0.0,10.759618,10759.618 +654,2025-06-10T01:57:20.115265-07:00,0.0,10.760777,10760.777 +655,2025-06-10T01:57:30.877861-07:00,0.0,10.762596,10762.596 +656,2025-06-10T01:57:41.637868-07:00,0.0,10.760007,10760.007 +657,2025-06-10T01:57:52.399436-07:00,0.0,10.761568,10761.568 +658,2025-06-10T01:58:03.159122-07:00,0.0,10.759686,10759.686 +659,2025-06-10T01:58:13.917868-07:00,0.0,10.758746,10758.746 +660,2025-06-10T01:58:24.691779-07:00,0.0,10.773911,10773.911 +661,2025-06-10T01:58:35.452214-07:00,0.0,10.760435,10760.435 +662,2025-06-10T01:58:46.211862-07:00,0.0,10.759648,10759.648 +663,2025-06-10T01:58:56.974931-07:00,0.0,10.763069,10763.069 +664,2025-06-10T01:59:07.749942-07:00,0.0,10.775011,10775.011 +665,2025-06-10T01:59:18.513847-07:00,0.0,10.763905,10763.905 +666,2025-06-10T01:59:29.278853-07:00,0.0,10.765006,10765.006 +667,2025-06-10T01:59:40.041763-07:00,0.0,10.76291,10762.91 +668,2025-06-10T01:59:50.808870-07:00,0.0,10.767107,10767.107 +669,2025-06-10T02:00:01.580452-07:00,0.0,10.771582,10771.582 +670,2025-06-10T02:00:12.339868-07:00,0.0,10.759416,10759.416 +671,2025-06-10T02:00:23.103316-07:00,0.0,10.763448,10763.448 +672,2025-06-10T02:00:33.868001-07:00,0.0,10.764685,10764.685 +673,2025-06-10T02:00:44.633519-07:00,0.0,10.765518,10765.518 +674,2025-06-10T02:00:55.390947-07:00,0.0,10.757428,10757.428 +675,2025-06-10T02:01:06.152170-07:00,0.0,10.761223,10761.223 +676,2025-06-10T02:01:16.918140-07:00,0.0,10.76597,10765.97 +677,2025-06-10T02:01:27.676869-07:00,0.0,10.758729,10758.729 +678,2025-06-10T02:01:38.436116-07:00,0.0,10.759247,10759.247 +679,2025-06-10T02:01:49.191236-07:00,0.0,10.75512,10755.12 +680,2025-06-10T02:01:59.959874-07:00,0.0,10.768638,10768.638 +681,2025-06-10T02:02:10.719046-07:00,0.0,10.759172,10759.172 +682,2025-06-10T02:02:21.474156-07:00,0.0,10.75511,10755.11 +683,2025-06-10T02:02:32.232976-07:00,0.0,10.75882,10758.82 +684,2025-06-10T02:02:42.997345-07:00,0.0,10.764369,10764.369 +685,2025-06-10T02:02:53.756892-07:00,0.0,10.759547,10759.547 +686,2025-06-10T02:03:04.513874-07:00,0.0,10.756982,10756.982 +687,2025-06-10T02:03:15.285938-07:00,0.0,10.772064,10772.064 +688,2025-06-10T02:03:26.047095-07:00,0.0,10.761157,10761.157 +689,2025-06-10T02:03:36.805177-07:00,0.0,10.758082,10758.082 +690,2025-06-10T02:03:47.561901-07:00,0.0,10.756724,10756.724 +691,2025-06-10T02:03:58.322125-07:00,0.0,10.760224,10760.224 +692,2025-06-10T02:04:09.092883-07:00,0.0,10.770758,10770.758 +693,2025-06-10T02:04:19.855137-07:00,0.0,10.762254,10762.254 +694,2025-06-10T02:04:30.610866-07:00,0.0,10.755729,10755.729 +695,2025-06-10T02:04:41.372022-07:00,0.0,10.761156,10761.156 +696,2025-06-10T02:04:52.136372-07:00,0.0,10.76435,10764.35 +697,2025-06-10T02:05:02.895129-07:00,0.0,10.758757,10758.757 +698,2025-06-10T02:05:13.655917-07:00,0.0,10.760788,10760.788 +699,2025-06-10T02:05:24.418557-07:00,0.0,10.76264,10762.64 +700,2025-06-10T02:05:35.181293-07:00,0.0,10.762736,10762.736 +701,2025-06-10T02:05:45.940870-07:00,0.0,10.759577,10759.577 +702,2025-06-10T02:05:56.708218-07:00,0.0,10.767348,10767.348 +703,2025-06-10T02:06:07.465145-07:00,0.0,10.756927,10756.927 +704,2025-06-10T02:06:18.221196-07:00,0.0,10.756051,10756.051 +705,2025-06-10T02:06:28.985861-07:00,0.0,10.764665,10764.665 +706,2025-06-10T02:06:39.752381-07:00,0.0,10.76652,10766.52 +707,2025-06-10T02:06:50.509446-07:00,0.0,10.757065,10757.065 +708,2025-06-10T02:07:01.266868-07:00,0.0,10.757422,10757.422 +709,2025-06-10T02:07:12.026942-07:00,0.0,10.760074,10760.074 +710,2025-06-10T02:07:22.792114-07:00,0.0,10.765172,10765.172 +711,2025-06-10T02:07:33.557307-07:00,0.0,10.765193,10765.193 +712,2025-06-10T02:07:44.314868-07:00,0.0,10.757561,10757.561 +713,2025-06-10T02:07:55.071561-07:00,0.0,10.756693,10756.693 +714,2025-06-10T02:08:05.836164-07:00,0.0,10.764603,10764.603 +715,2025-06-10T02:08:16.587460-07:00,0.0,10.751296,10751.296 +716,2025-06-10T02:08:27.351910-07:00,0.0,10.76445,10764.45 +717,2025-06-10T02:08:38.107867-07:00,0.0,10.755957,10755.957 +718,2025-06-10T02:08:48.868866-07:00,0.0,10.760999,10760.999 +719,2025-06-10T02:08:59.641327-07:00,0.0,10.772461,10772.461 +720,2025-06-10T02:09:10.397851-07:00,0.0,10.756524,10756.524 +721,2025-06-10T02:09:21.160599-07:00,0.0,10.762748,10762.748 +722,2025-06-10T02:09:31.918895-07:00,0.0,10.758296,10758.296 +723,2025-06-10T02:09:42.687297-07:00,0.0,10.768402,10768.402 +724,2025-06-10T02:09:53.443835-07:00,0.0,10.756538,10756.538 +725,2025-06-10T02:10:04.207868-07:00,0.0,10.764033,10764.033 +726,2025-06-10T02:10:14.961056-07:00,0.0,10.753188,10753.188 +727,2025-06-10T02:10:25.722675-07:00,0.0,10.761619,10761.619 +728,2025-06-10T02:10:36.475638-07:00,0.0,10.752963,10752.963 +729,2025-06-10T02:10:47.235956-07:00,0.0,10.760318,10760.318 +730,2025-06-10T02:10:57.993574-07:00,0.0,10.757618,10757.618 +731,2025-06-10T02:11:08.758734-07:00,0.0,10.76516,10765.16 +732,2025-06-10T02:11:19.519872-07:00,0.0,10.761138,10761.138 +733,2025-06-10T02:11:30.277127-07:00,0.0,10.757255,10757.255 +734,2025-06-10T02:11:41.034847-07:00,0.0,10.75772,10757.72 +735,2025-06-10T02:11:51.800039-07:00,0.0,10.765192,10765.192 +736,2025-06-10T02:12:02.555361-07:00,0.0,10.755322,10755.322 +737,2025-06-10T02:12:13.316858-07:00,0.0,10.761497,10761.497 +738,2025-06-10T02:12:24.085866-07:00,0.0,10.769008,10769.008 +739,2025-06-10T02:12:34.842356-07:00,0.0,10.75649,10756.49 +740,2025-06-10T02:12:45.605140-07:00,0.0,10.762784,10762.784 +741,2025-06-10T02:12:56.365868-07:00,0.0,10.760728,10760.728 +742,2025-06-10T02:13:07.135662-07:00,0.0,10.769794,10769.794 +743,2025-06-10T02:13:17.892334-07:00,0.0,10.756672,10756.672 +744,2025-06-10T02:13:28.645673-07:00,0.0,10.753339,10753.339 +745,2025-06-10T02:13:39.410169-07:00,0.0,10.764496,10764.496 +746,2025-06-10T02:13:50.164868-07:00,0.0,10.754699,10754.699 +747,2025-06-10T02:14:00.922903-07:00,0.0,10.758035,10758.035 +748,2025-06-10T02:14:11.688090-07:00,0.0,10.765187,10765.187 +749,2025-06-10T02:14:22.448911-07:00,0.0,10.760821,10760.821 +750,2025-06-10T02:14:33.204845-07:00,0.0,10.755934,10755.934 +751,2025-06-10T02:14:43.962869-07:00,0.0,10.758024,10758.024 +752,2025-06-10T02:14:54.726703-07:00,0.0,10.763834,10763.834 +753,2025-06-10T02:15:05.489011-07:00,0.0,10.762308,10762.308 +754,2025-06-10T02:15:16.246641-07:00,0.0,10.75763,10757.63 +755,2025-06-10T02:15:27.000020-07:00,0.0,10.753379,10753.379 +756,2025-06-10T02:15:37.753038-07:00,0.0,10.753018,10753.018 +757,2025-06-10T02:15:48.512186-07:00,0.0,10.759148,10759.148 +758,2025-06-10T02:15:59.271317-07:00,0.0,10.759131,10759.131 +759,2025-06-10T02:16:10.031861-07:00,0.0,10.760544,10760.544 +760,2025-06-10T02:16:20.787015-07:00,0.0,10.755154,10755.154 +761,2025-06-10T02:16:31.555439-07:00,0.0,10.768424,10768.424 +762,2025-06-10T02:16:42.309340-07:00,0.0,10.753901,10753.901 +763,2025-06-10T02:16:53.075862-07:00,0.0,10.766522,10766.522 +764,2025-06-10T02:17:03.833835-07:00,0.0,10.757973,10757.973 +765,2025-06-10T02:17:14.596179-07:00,0.0,10.762344,10762.344 +766,2025-06-10T02:17:25.356867-07:00,0.0,10.760688,10760.688 +767,2025-06-10T02:17:36.117866-07:00,0.0,10.760999,10760.999 +768,2025-06-10T02:17:46.871103-07:00,0.0,10.753237,10753.237 +769,2025-06-10T02:17:57.634405-07:00,0.0,10.763302,10763.302 +770,2025-06-10T02:18:08.388664-07:00,0.0,10.754259,10754.259 +771,2025-06-10T02:18:19.146276-07:00,0.0,10.757612,10757.612 +772,2025-06-10T02:18:29.908875-07:00,0.0,10.762599,10762.599 +773,2025-06-10T02:18:40.663091-07:00,0.0,10.754216,10754.216 +774,2025-06-10T02:18:51.428192-07:00,0.0,10.765101,10765.101 +775,2025-06-10T02:19:02.189044-07:00,0.0,10.760852,10760.852 +776,2025-06-10T02:19:12.948074-07:00,0.0,10.75903,10759.03 +777,2025-06-10T02:19:23.703865-07:00,0.0,10.755791,10755.791 +778,2025-06-10T02:19:34.466588-07:00,0.0,10.762723,10762.723 +779,2025-06-10T02:19:45.233973-07:00,0.0,10.767385,10767.385 +780,2025-06-10T02:19:55.995024-07:00,0.0,10.761051,10761.051 +781,2025-06-10T02:20:06.745860-07:00,0.0,10.750836,10750.836 +782,2025-06-10T02:20:17.511138-07:00,0.0,10.765278,10765.278 +783,2025-06-10T02:20:28.271017-07:00,0.0,10.759879,10759.879 +784,2025-06-10T02:20:39.021777-07:00,0.0,10.75076,10750.76 +785,2025-06-10T02:20:49.784868-07:00,0.0,10.763091,10763.091 +786,2025-06-10T02:21:00.535903-07:00,0.0,10.751035,10751.035 +787,2025-06-10T02:21:11.293093-07:00,0.0,10.75719,10757.19 +788,2025-06-10T02:21:22.059122-07:00,0.0,10.766029,10766.029 +789,2025-06-10T02:21:32.812847-07:00,0.0,10.753725,10753.725 +790,2025-06-10T02:21:43.569868-07:00,0.0,10.757021,10757.021 +791,2025-06-10T02:21:54.334939-07:00,0.0,10.765071,10765.071 +792,2025-06-10T02:22:05.092422-07:00,0.0,10.757483,10757.483 +793,2025-06-10T02:22:15.847864-07:00,0.0,10.755442,10755.442 +794,2025-06-10T02:22:26.614410-07:00,0.0,10.766546,10766.546 +795,2025-06-10T02:22:37.369866-07:00,0.0,10.755456,10755.456 +796,2025-06-10T02:22:48.126049-07:00,0.0,10.756183,10756.183 +797,2025-06-10T02:22:58.884199-07:00,0.0,10.75815,10758.15 +798,2025-06-10T02:23:09.645876-07:00,0.0,10.761677,10761.677 +799,2025-06-10T02:23:20.404841-07:00,0.0,10.758965,10758.965 +800,2025-06-10T02:23:31.157975-07:00,0.0,10.753134,10753.134 +801,2025-06-10T02:23:41.914338-07:00,0.0,10.756363,10756.363 +802,2025-06-10T02:23:52.674068-07:00,0.0,10.75973,10759.73 +803,2025-06-10T02:24:03.431890-07:00,0.0,10.757822,10757.822 +804,2025-06-10T02:24:14.190032-07:00,0.0,10.758142,10758.142 +805,2025-06-10T02:24:24.956033-07:00,0.0,10.766001,10766.001 +806,2025-06-10T02:24:35.714170-07:00,0.0,10.758137,10758.137 +807,2025-06-10T02:24:46.472212-07:00,0.0,10.758042,10758.042 +808,2025-06-10T02:24:57.230898-07:00,0.0,10.758686,10758.686 +809,2025-06-10T02:25:07.994916-07:00,0.0,10.764018,10764.018 +810,2025-06-10T02:25:18.754595-07:00,0.0,10.759679,10759.679 +811,2025-06-10T02:25:29.513870-07:00,0.0,10.759275,10759.275 +812,2025-06-10T02:25:40.274868-07:00,0.0,10.760998,10760.998 +813,2025-06-10T02:25:51.036860-07:00,0.0,10.761992,10761.992 +814,2025-06-10T02:26:01.793785-07:00,0.0,10.756925,10756.925 +815,2025-06-10T02:26:12.549422-07:00,0.0,10.755637,10755.637 +816,2025-06-10T02:26:23.314872-07:00,0.0,10.76545,10765.45 +817,2025-06-10T02:26:34.071870-07:00,0.0,10.756998,10756.998 +818,2025-06-10T02:26:44.837966-07:00,0.0,10.766096,10766.096 +819,2025-06-10T02:26:55.590133-07:00,0.0,10.752167,10752.167 +820,2025-06-10T02:27:06.350861-07:00,0.0,10.760728,10760.728 +821,2025-06-10T02:27:17.108117-07:00,0.0,10.757256,10757.256 +822,2025-06-10T02:27:27.878515-07:00,0.0,10.770398,10770.398 +823,2025-06-10T02:27:38.632146-07:00,0.0,10.753631,10753.631 +824,2025-06-10T02:27:49.396131-07:00,0.0,10.763985,10763.985 +825,2025-06-10T02:28:00.152179-07:00,0.0,10.756048,10756.048 +826,2025-06-10T02:28:10.909848-07:00,0.0,10.757669,10757.669 +827,2025-06-10T02:28:21.665179-07:00,0.0,10.755331,10755.331 +828,2025-06-10T02:28:32.418935-07:00,0.0,10.753756,10753.756 +829,2025-06-10T02:28:43.179110-07:00,0.0,10.760175,10760.175 +830,2025-06-10T02:28:53.944872-07:00,0.0,10.765762,10765.762 +831,2025-06-10T02:29:04.698337-07:00,0.0,10.753465,10753.465 +832,2025-06-10T02:29:15.462118-07:00,0.0,10.763781,10763.781 +833,2025-06-10T02:29:26.219357-07:00,0.0,10.757239,10757.239 +834,2025-06-10T02:29:36.978870-07:00,0.0,10.759513,10759.513 +835,2025-06-10T02:29:47.735899-07:00,0.0,10.757029,10757.029 +836,2025-06-10T02:29:58.486406-07:00,0.0,10.750507,10750.507 +837,2025-06-10T02:30:09.250552-07:00,0.0,10.764146,10764.146 +838,2025-06-10T02:30:19.999677-07:00,0.0,10.749125,10749.125 +839,2025-06-10T02:30:30.762208-07:00,0.0,10.762531,10762.531 +840,2025-06-10T02:30:41.524065-07:00,0.0,10.761857,10761.857 +841,2025-06-10T02:30:52.280861-07:00,0.0,10.756796,10756.796 +842,2025-06-10T02:31:03.039722-07:00,0.0,10.758861,10758.861 +843,2025-06-10T02:31:13.790399-07:00,0.0,10.750677,10750.677 +844,2025-06-10T02:31:24.548181-07:00,0.0,10.757782,10757.782 +845,2025-06-10T02:31:35.306012-07:00,0.0,10.757831,10757.831 +846,2025-06-10T02:31:46.064854-07:00,0.0,10.758842,10758.842 +847,2025-06-10T02:31:56.822947-07:00,0.0,10.758093,10758.093 +848,2025-06-10T02:32:07.579437-07:00,0.0,10.75649,10756.49 +849,2025-06-10T02:32:18.339027-07:00,0.0,10.75959,10759.59 +850,2025-06-10T02:32:29.098870-07:00,0.0,10.759843,10759.843 +851,2025-06-10T02:32:39.856017-07:00,0.0,10.757147,10757.147 +852,2025-06-10T02:32:50.611842-07:00,0.0,10.755825,10755.825 +853,2025-06-10T02:33:01.370390-07:00,0.0,10.758548,10758.548 +854,2025-06-10T02:33:12.134848-07:00,0.0,10.764458,10764.458 +855,2025-06-10T02:33:22.885868-07:00,0.0,10.75102,10751.02 +856,2025-06-10T02:33:33.656008-07:00,0.0,10.77014,10770.14 +857,2025-06-10T02:33:44.406900-07:00,0.0,10.750892,10750.892 +858,2025-06-10T02:33:55.169869-07:00,0.0,10.762969,10762.969 +859,2025-06-10T02:34:05.934073-07:00,0.0,10.764204,10764.204 +860,2025-06-10T02:34:16.695017-07:00,0.0,10.760944,10760.944 +861,2025-06-10T02:34:27.458792-07:00,0.0,10.763775,10763.775 +862,2025-06-10T02:34:38.208537-07:00,0.0,10.749745,10749.745 +863,2025-06-10T02:34:48.970861-07:00,0.0,10.762324,10762.324 +864,2025-06-10T02:34:59.726328-07:00,0.0,10.755467,10755.467 +865,2025-06-10T02:35:10.488896-07:00,0.0,10.762568,10762.568 +866,2025-06-10T02:35:21.248748-07:00,0.0,10.759852,10759.852 +867,2025-06-10T02:35:32.008964-07:00,0.0,10.760216,10760.216 +868,2025-06-10T02:35:42.773024-07:00,0.0,10.76406,10764.06 +869,2025-06-10T02:35:53.531102-07:00,0.0,10.758078,10758.078 +870,2025-06-10T02:36:04.294854-07:00,0.0,10.763752,10763.752 +871,2025-06-10T02:36:15.054867-07:00,0.0,10.760013,10760.013 +872,2025-06-10T02:36:25.816921-07:00,0.0,10.762054,10762.054 +873,2025-06-10T02:36:36.567113-07:00,0.0,10.750192,10750.192 +874,2025-06-10T02:36:47.334159-07:00,0.0,10.767046,10767.046 +875,2025-06-10T02:36:58.093118-07:00,0.0,10.758959,10758.959 +876,2025-06-10T02:37:08.848944-07:00,0.0,10.755826,10755.826 +877,2025-06-10T02:37:19.608379-07:00,0.0,10.759435,10759.435 +878,2025-06-10T02:37:30.366240-07:00,0.0,10.757861,10757.861 +879,2025-06-10T02:37:41.136850-07:00,0.0,10.77061,10770.61 +880,2025-06-10T02:37:51.885626-07:00,0.0,10.748776,10748.776 +881,2025-06-10T02:38:02.651867-07:00,0.0,10.766241,10766.241 +882,2025-06-10T02:38:13.406923-07:00,0.0,10.755056,10755.056 +883,2025-06-10T02:38:24.166346-07:00,0.0,10.759423,10759.423 +884,2025-06-10T02:38:34.926888-07:00,0.0,10.760542,10760.542 +885,2025-06-10T02:38:45.693105-07:00,0.0,10.766217,10766.217 +886,2025-06-10T02:38:56.452147-07:00,0.0,10.759042,10759.042 +887,2025-06-10T02:39:07.206179-07:00,0.0,10.754032,10754.032 +888,2025-06-10T02:39:17.970989-07:00,0.0,10.76481,10764.81 +889,2025-06-10T02:39:28.732114-07:00,0.0,10.761125,10761.125 +890,2025-06-10T02:39:39.490892-07:00,0.0,10.758778,10758.778 +891,2025-06-10T02:39:50.254131-07:00,0.0,10.763239,10763.239 +892,2025-06-10T02:40:01.005228-07:00,0.0,10.751097,10751.097 +893,2025-06-10T02:40:11.767870-07:00,0.0,10.762642,10762.642 +894,2025-06-10T02:40:22.536893-07:00,0.0,10.769023,10769.023 +895,2025-06-10T02:40:33.292109-07:00,0.0,10.755216,10755.216 +896,2025-06-10T02:40:44.049402-07:00,0.0,10.757293,10757.293 +897,2025-06-10T02:40:54.816856-07:00,0.0,10.767454,10767.454 +898,2025-06-10T02:41:05.575208-07:00,0.0,10.758352,10758.352 +899,2025-06-10T02:41:16.330114-07:00,0.0,10.754906,10754.906 +900,2025-06-10T02:41:27.090866-07:00,0.0,10.760752,10760.752 +901,2025-06-10T02:41:37.853101-07:00,0.0,10.762235,10762.235 +902,2025-06-10T02:41:48.602891-07:00,0.0,10.74979,10749.79 +903,2025-06-10T02:41:59.363866-07:00,0.0,10.760975,10760.975 +904,2025-06-10T02:42:10.126155-07:00,0.0,10.762289,10762.289 +905,2025-06-10T02:42:20.883097-07:00,0.0,10.756942,10756.942 +906,2025-06-10T02:42:31.645102-07:00,0.0,10.762005,10762.005 +907,2025-06-10T02:42:42.406100-07:00,0.0,10.760998,10760.998 +908,2025-06-10T02:42:53.155212-07:00,0.0,10.749112,10749.112 +909,2025-06-10T02:43:03.919923-07:00,0.0,10.764711,10764.711 +910,2025-06-10T02:43:14.675118-07:00,0.0,10.755195,10755.195 +911,2025-06-10T02:43:25.441868-07:00,0.0,10.76675,10766.75 +912,2025-06-10T02:43:36.201931-07:00,0.0,10.760063,10760.063 +913,2025-06-10T02:43:46.957040-07:00,0.0,10.755109,10755.109 +914,2025-06-10T02:43:57.710233-07:00,0.0,10.753193,10753.193 +915,2025-06-10T02:44:08.475128-07:00,0.0,10.764895,10764.895 +916,2025-06-10T02:44:19.233862-07:00,0.0,10.758734,10758.734 +917,2025-06-10T02:44:29.996404-07:00,0.0,10.762542,10762.542 +918,2025-06-10T02:44:40.750422-07:00,0.0,10.754018,10754.018 +919,2025-06-10T02:44:51.510858-07:00,0.0,10.760436,10760.436 +920,2025-06-10T02:45:02.270997-07:00,0.0,10.760139,10760.139 +921,2025-06-10T02:45:13.036422-07:00,0.0,10.765425,10765.425 +922,2025-06-10T02:45:23.799662-07:00,0.0,10.76324,10763.24 +923,2025-06-10T02:45:34.552101-07:00,0.0,10.752439,10752.439 +924,2025-06-10T02:45:45.314869-07:00,0.0,10.762768,10762.768 +925,2025-06-10T02:45:56.076038-07:00,0.0,10.761169,10761.169 +926,2025-06-10T02:46:06.833177-07:00,0.0,10.757139,10757.139 +927,2025-06-10T02:46:17.583981-07:00,0.0,10.750804,10750.804 +928,2025-06-10T02:46:28.337870-07:00,0.0,10.753889,10753.889 +929,2025-06-10T02:46:39.095901-07:00,0.0,10.758031,10758.031 +930,2025-06-10T02:46:49.859862-07:00,0.0,10.763961,10763.961 +931,2025-06-10T02:47:00.616648-07:00,0.0,10.756786,10756.786 +932,2025-06-10T02:47:11.375203-07:00,0.0,10.758555,10758.555 +933,2025-06-10T02:47:22.136851-07:00,0.0,10.761648,10761.648 +934,2025-06-10T02:47:32.892886-07:00,0.0,10.756035,10756.035 +935,2025-06-10T02:47:43.658220-07:00,0.0,10.765334,10765.334 +936,2025-06-10T02:47:54.416321-07:00,0.0,10.758101,10758.101 +937,2025-06-10T02:48:05.167874-07:00,0.0,10.751553,10751.553 +938,2025-06-10T02:48:15.927083-07:00,0.0,10.759209,10759.209 +939,2025-06-10T02:48:26.684745-07:00,0.0,10.757662,10757.662 +940,2025-06-10T02:48:37.444053-07:00,0.0,10.759308,10759.308 +941,2025-06-10T02:48:48.213644-07:00,0.0,10.769591,10769.591 +942,2025-06-10T02:48:58.963759-07:00,0.0,10.750115,10750.115 +943,2025-06-10T02:49:09.730869-07:00,0.0,10.76711,10767.11 +944,2025-06-10T02:49:20.491621-07:00,0.0,10.760752,10760.752 +945,2025-06-10T02:49:31.245187-07:00,0.0,10.753566,10753.566 +946,2025-06-10T02:49:42.009186-07:00,0.0,10.763999,10763.999 +947,2025-06-10T02:49:52.770141-07:00,0.0,10.760955,10760.955 +948,2025-06-10T02:50:03.524848-07:00,0.0,10.754707,10754.707 +949,2025-06-10T02:50:14.280461-07:00,0.0,10.755613,10755.613 +950,2025-06-10T02:50:25.039272-07:00,0.0,10.758811,10758.811 +951,2025-06-10T02:50:35.800133-07:00,0.0,10.760861,10760.861 +952,2025-06-10T02:50:46.557868-07:00,0.0,10.757735,10757.735 +953,2025-06-10T02:50:57.317007-07:00,0.0,10.759139,10759.139 +954,2025-06-10T02:51:08.072408-07:00,0.0,10.755401,10755.401 +955,2025-06-10T02:51:18.824170-07:00,0.0,10.751762,10751.762 +956,2025-06-10T02:51:29.593164-07:00,0.0,10.768994,10768.994 +957,2025-06-10T02:51:40.471482-07:00,0.0,10.878318,10878.318 +958,2025-06-10T02:51:51.231878-07:00,0.0,10.760396,10760.396 +959,2025-06-10T02:52:01.997543-07:00,0.0,10.765665,10765.665 +960,2025-06-10T02:52:12.760486-07:00,0.0,10.762943,10762.943 +961,2025-06-10T02:52:23.524816-07:00,0.0,10.76433,10764.33 +962,2025-06-10T02:52:34.286530-07:00,0.0,10.761714,10761.714 +963,2025-06-10T02:52:45.047482-07:00,0.0,10.760952,10760.952 +964,2025-06-10T02:52:55.807761-07:00,0.0,10.760279,10760.279 +965,2025-06-10T02:53:06.563722-07:00,0.0,10.755961,10755.961 +966,2025-06-10T02:53:17.324957-07:00,0.0,10.761235,10761.235 +967,2025-06-10T02:53:28.088739-07:00,0.0,10.763782,10763.782 +968,2025-06-10T02:53:38.847627-07:00,0.0,10.758888,10758.888 +969,2025-06-10T02:53:49.614763-07:00,0.0,10.767136,10767.136 +970,2025-06-10T02:54:00.375549-07:00,0.0,10.760786,10760.786 +971,2025-06-10T02:54:11.124679-07:00,0.0,10.74913,10749.13 +972,2025-06-10T02:54:21.885720-07:00,0.0,10.761041,10761.041 +973,2025-06-10T02:54:32.650782-07:00,0.0,10.765062,10765.062 +974,2025-06-10T02:54:43.405922-07:00,0.0,10.75514,10755.14 +975,2025-06-10T02:54:54.168487-07:00,0.0,10.762565,10762.565 +976,2025-06-10T02:55:04.919487-07:00,0.0,10.751,10751.0 +977,2025-06-10T02:55:15.675792-07:00,0.0,10.756305,10756.305 +978,2025-06-10T02:55:26.438833-07:00,0.0,10.763041,10763.041 +979,2025-06-10T02:55:37.193738-07:00,0.0,10.754905,10754.905 +980,2025-06-10T02:55:47.955710-07:00,0.0,10.761972,10761.972 +981,2025-06-10T02:55:58.711326-07:00,0.0,10.755616,10755.616 +982,2025-06-10T02:56:09.464725-07:00,0.0,10.753399,10753.399 +983,2025-06-10T02:56:20.222736-07:00,0.0,10.758011,10758.011 +984,2025-06-10T02:56:30.982253-07:00,0.0,10.759517,10759.517 +985,2025-06-10T02:56:41.743765-07:00,0.0,10.761512,10761.512 +986,2025-06-10T02:56:52.504528-07:00,0.0,10.760763,10760.763 +987,2025-06-10T02:57:03.262464-07:00,0.0,10.757936,10757.936 +988,2025-06-10T02:57:14.022120-07:00,0.0,10.759656,10759.656 +989,2025-06-10T02:57:24.786631-07:00,0.0,10.764511,10764.511 +990,2025-06-10T02:57:35.546746-07:00,0.0,10.760115,10760.115 +991,2025-06-10T02:57:46.303802-07:00,0.0,10.757056,10757.056 +992,2025-06-10T02:57:57.065238-07:00,0.0,10.761436,10761.436 +993,2025-06-10T02:58:07.821656-07:00,0.0,10.756418,10756.418 +994,2025-06-10T02:58:18.586667-07:00,0.0,10.765011,10765.011 +995,2025-06-10T02:58:29.340477-07:00,0.0,10.75381,10753.81 +996,2025-06-10T02:58:40.102415-07:00,0.0,10.761938,10761.938 +997,2025-06-10T02:58:50.874477-07:00,0.0,10.772062,10772.062 +998,2025-06-10T02:59:01.631535-07:00,0.0,10.757058,10757.058 +999,2025-06-10T02:59:12.392476-07:00,0.0,10.760941,10760.941 +1000,2025-06-10T02:59:23.151012-07:00,0.0,10.758536,10758.536 +1001,2025-06-10T02:59:33.913900-07:00,0.0,10.762888,10762.888 +1002,2025-06-10T02:59:44.672736-07:00,0.0,10.758836,10758.836 +1003,2025-06-10T02:59:55.430481-07:00,0.0,10.757745,10757.745 +1004,2025-06-10T03:00:06.197837-07:00,0.0,10.767356,10767.356 +1005,2025-06-10T03:00:16.947032-07:00,0.0,10.749195,10749.195 +1006,2025-06-10T03:00:27.711478-07:00,0.0,10.764446,10764.446 +1007,2025-06-10T03:00:38.470483-07:00,0.0,10.759005,10759.005 +1008,2025-06-10T03:00:49.228720-07:00,0.0,10.758237,10758.237 +1009,2025-06-10T03:00:59.985218-07:00,0.0,10.756498,10756.498 +1010,2025-06-10T03:01:10.758875-07:00,0.0,10.773657,10773.657 +1011,2025-06-10T03:01:21.517481-07:00,0.0,10.758606,10758.606 +1012,2025-06-10T03:01:32.285101-07:00,0.0,10.76762,10767.62 +1013,2025-06-10T03:01:43.038484-07:00,0.0,10.753383,10753.383 +1014,2025-06-10T03:01:53.811485-07:00,0.0,10.773001,10773.001 +1015,2025-06-10T03:02:04.567481-07:00,0.0,10.755996,10755.996 +1016,2025-06-10T03:02:15.332973-07:00,0.0,10.765492,10765.492 +1017,2025-06-10T03:02:26.091036-07:00,0.0,10.758063,10758.063 +1018,2025-06-10T03:02:36.861933-07:00,0.0,10.770897,10770.897 +1019,2025-06-10T03:02:47.620016-07:00,0.0,10.758083,10758.083 +1020,2025-06-10T03:02:58.385546-07:00,0.0,10.76553,10765.53 +1021,2025-06-10T03:03:09.149724-07:00,0.0,10.764178,10764.178 +1022,2025-06-10T03:03:19.909756-07:00,0.0,10.760032,10760.032 +1023,2025-06-10T03:03:30.670833-07:00,0.0,10.761077,10761.077 +1024,2025-06-10T03:03:41.431611-07:00,0.0,10.760778,10760.778 +1025,2025-06-10T03:03:52.193522-07:00,0.0,10.761911,10761.911 +1026,2025-06-10T03:04:02.950071-07:00,0.0,10.756549,10756.549 +1027,2025-06-10T03:04:13.716487-07:00,0.0,10.766416,10766.416 +1028,2025-06-10T03:04:24.475487-07:00,0.0,10.759,10759.0 +1029,2025-06-10T03:04:35.241481-07:00,0.0,10.765994,10765.994 +1030,2025-06-10T03:04:46.001955-07:00,0.0,10.760474,10760.474 +1031,2025-06-10T03:04:56.764733-07:00,0.0,10.762778,10762.778 +1032,2025-06-10T03:05:07.519643-07:00,0.0,10.75491,10754.91 +1033,2025-06-10T03:05:18.280456-07:00,0.0,10.760813,10760.813 +1034,2025-06-10T03:05:29.040835-07:00,0.0,10.760379,10760.379 +1035,2025-06-10T03:05:39.802484-07:00,0.0,10.761649,10761.649 +1036,2025-06-10T03:05:50.558635-07:00,0.0,10.756151,10756.151 +1037,2025-06-10T03:06:01.323481-07:00,0.0,10.764846,10764.846 +1038,2025-06-10T03:06:12.079918-07:00,0.0,10.756437,10756.437 +1039,2025-06-10T03:06:22.838169-07:00,0.0,10.758251,10758.251 +1040,2025-06-10T03:06:33.598591-07:00,0.0,10.760422,10760.422 +1041,2025-06-10T03:06:44.355633-07:00,0.0,10.757042,10757.042 +1042,2025-06-10T03:06:55.127794-07:00,0.0,10.772161,10772.161 +1043,2025-06-10T03:07:05.886599-07:00,0.0,10.758805,10758.805 +1044,2025-06-10T03:07:16.642720-07:00,0.0,10.756121,10756.121 +1045,2025-06-10T03:07:27.404482-07:00,0.0,10.761762,10761.762 +1046,2025-06-10T03:07:38.169664-07:00,0.0,10.765182,10765.182 +1047,2025-06-10T03:07:48.919288-07:00,0.0,10.749624,10749.624 +1048,2025-06-10T03:07:59.686580-07:00,0.0,10.767292,10767.292 +1049,2025-06-10T03:08:10.445730-07:00,0.0,10.75915,10759.15 +1050,2025-06-10T03:08:21.208779-07:00,0.0,10.763049,10763.049 +1051,2025-06-10T03:08:31.966485-07:00,0.0,10.757706,10757.706 +1052,2025-06-10T03:08:42.724896-07:00,0.0,10.758411,10758.411 +1053,2025-06-10T03:08:53.483507-07:00,0.0,10.758611,10758.611 +1054,2025-06-10T03:09:04.244485-07:00,0.0,10.760978,10760.978 +1055,2025-06-10T03:09:15.002637-07:00,0.0,10.758152,10758.152 +1056,2025-06-10T03:09:25.756814-07:00,0.0,10.754177,10754.177 +1057,2025-06-10T03:09:36.519727-07:00,0.0,10.762913,10762.913 +1058,2025-06-10T03:09:47.273481-07:00,0.0,10.753754,10753.754 +1059,2025-06-10T03:09:58.030483-07:00,0.0,10.757002,10757.002 +1060,2025-06-10T03:10:08.788067-07:00,0.0,10.757584,10757.584 +1061,2025-06-10T03:10:19.545590-07:00,0.0,10.757523,10757.523 +1062,2025-06-10T03:10:30.299468-07:00,0.0,10.753878,10753.878 +1063,2025-06-10T03:10:41.058485-07:00,0.0,10.759017,10759.017 +1064,2025-06-10T03:10:51.821051-07:00,0.0,10.762566,10762.566 +1065,2025-06-10T03:11:02.585980-07:00,0.0,10.764929,10764.929 +1066,2025-06-10T03:11:13.341151-07:00,0.0,10.755171,10755.171 +1067,2025-06-10T03:11:24.101488-07:00,0.0,10.760337,10760.337 +1068,2025-06-10T03:11:34.864831-07:00,0.0,10.763343,10763.343 +1069,2025-06-10T03:11:45.621825-07:00,0.0,10.756994,10756.994 +1070,2025-06-10T03:11:56.373806-07:00,0.0,10.751981,10751.981 +1071,2025-06-10T03:12:07.140609-07:00,0.0,10.766803,10766.803 +1072,2025-06-10T03:12:17.897473-07:00,0.0,10.756864,10756.864 +1073,2025-06-10T03:12:28.654007-07:00,0.0,10.756534,10756.534 +1074,2025-06-10T03:12:39.411793-07:00,0.0,10.757786,10757.786 +1075,2025-06-10T03:12:50.174580-07:00,0.0,10.762787,10762.787 +1076,2025-06-10T03:13:00.931468-07:00,0.0,10.756888,10756.888 +1077,2025-06-10T03:13:11.693873-07:00,0.0,10.762405,10762.405 +1078,2025-06-10T03:13:22.453106-07:00,0.0,10.759233,10759.233 +1079,2025-06-10T03:13:33.214464-07:00,0.0,10.761358,10761.358 +1080,2025-06-10T03:13:43.974714-07:00,0.0,10.76025,10760.25 +1081,2025-06-10T03:13:54.732477-07:00,0.0,10.757763,10757.763 +1082,2025-06-10T03:14:05.500894-07:00,0.0,10.768417,10768.417 +1083,2025-06-10T03:14:16.263478-07:00,0.0,10.762584,10762.584 +1084,2025-06-10T03:14:27.022732-07:00,0.0,10.759254,10759.254 +1085,2025-06-10T03:14:37.793006-07:00,0.0,10.770274,10770.274 +1086,2025-06-10T03:14:48.553465-07:00,0.0,10.760459,10760.459 +1087,2025-06-10T03:14:59.318483-07:00,0.0,10.765018,10765.018 +1088,2025-06-10T03:15:10.078945-07:00,0.0,10.760462,10760.462 +1089,2025-06-10T03:15:20.847767-07:00,0.0,10.768822,10768.822 +1090,2025-06-10T03:15:31.609476-07:00,0.0,10.761709,10761.709 +1091,2025-06-10T03:15:42.371964-07:00,0.0,10.762488,10762.488 +1092,2025-06-10T03:15:53.130781-07:00,0.0,10.758817,10758.817 +1093,2025-06-10T03:16:03.891586-07:00,0.0,10.760805,10760.805 +1094,2025-06-10T03:16:14.659475-07:00,0.0,10.767889,10767.889 +1095,2025-06-10T03:16:25.419286-07:00,0.0,10.759811,10759.811 +1096,2025-06-10T03:16:36.168495-07:00,0.0,10.749209,10749.209 +1097,2025-06-10T03:16:46.937604-07:00,0.0,10.769109,10769.109 +1098,2025-06-10T03:16:57.697484-07:00,0.0,10.75988,10759.88 +1099,2025-06-10T03:17:08.451725-07:00,0.0,10.754241,10754.241 +1100,2025-06-10T03:17:19.218718-07:00,0.0,10.766993,10766.993 +1101,2025-06-10T03:17:29.973675-07:00,0.0,10.754957,10754.957 +1102,2025-06-10T03:17:40.732483-07:00,0.0,10.758808,10758.808 +1103,2025-06-10T03:17:51.491477-07:00,0.0,10.758994,10758.994 +1104,2025-06-10T03:18:02.252900-07:00,0.0,10.761423,10761.423 +1105,2025-06-10T03:18:13.019469-07:00,0.0,10.766569,10766.569 +1106,2025-06-10T03:18:23.779487-07:00,0.0,10.760018,10760.018 +1107,2025-06-10T03:18:34.535390-07:00,0.0,10.755903,10755.903 +1108,2025-06-10T03:18:45.298776-07:00,0.0,10.763386,10763.386 +1109,2025-06-10T03:18:56.065116-07:00,0.0,10.76634,10766.34 +1110,2025-06-10T03:19:06.826483-07:00,0.0,10.761367,10761.367 +1111,2025-06-10T03:19:17.587477-07:00,0.0,10.760994,10760.994 +1112,2025-06-10T03:19:28.343838-07:00,0.0,10.756361,10756.361 +1113,2025-06-10T03:19:39.101711-07:00,0.0,10.757873,10757.873 +1114,2025-06-10T03:19:49.863640-07:00,0.0,10.761929,10761.929 +1115,2025-06-10T03:20:00.631589-07:00,0.0,10.767949,10767.949 +1116,2025-06-10T03:20:11.388727-07:00,0.0,10.757138,10757.138 +1117,2025-06-10T03:20:22.144581-07:00,0.0,10.755854,10755.854 +1118,2025-06-10T03:20:32.904959-07:00,0.0,10.760378,10760.378 +1119,2025-06-10T03:20:43.668160-07:00,0.0,10.763201,10763.201 +1120,2025-06-10T03:20:54.434643-07:00,0.0,10.766483,10766.483 +1121,2025-06-10T03:21:05.189728-07:00,0.0,10.755085,10755.085 +1122,2025-06-10T03:21:15.950487-07:00,0.0,10.760759,10760.759 +1123,2025-06-10T03:21:26.711456-07:00,0.0,10.760969,10760.969 +1124,2025-06-10T03:21:37.474655-07:00,0.0,10.763199,10763.199 +1125,2025-06-10T03:21:48.238453-07:00,0.0,10.763798,10763.798 +1126,2025-06-10T03:21:58.998483-07:00,0.0,10.76003,10760.03 +1127,2025-06-10T03:22:09.750483-07:00,0.0,10.752,10752.0 +1128,2025-06-10T03:22:20.514572-07:00,0.0,10.764089,10764.089 +1129,2025-06-10T03:22:31.277490-07:00,0.0,10.762918,10762.918 +1130,2025-06-10T03:22:42.031034-07:00,0.0,10.753544,10753.544 +1131,2025-06-10T03:22:52.789483-07:00,0.0,10.758449,10758.449 +1132,2025-06-10T03:23:03.549989-07:00,0.0,10.760506,10760.506 +1133,2025-06-10T03:23:14.311486-07:00,0.0,10.761497,10761.497 +1134,2025-06-10T03:23:25.067027-07:00,0.0,10.755541,10755.541 +1135,2025-06-10T03:23:35.828747-07:00,0.0,10.76172,10761.72 +1136,2025-06-10T03:23:46.590368-07:00,0.0,10.761621,10761.621 +1137,2025-06-10T03:23:57.345952-07:00,0.0,10.755584,10755.584 +1138,2025-06-10T03:24:08.109487-07:00,0.0,10.763535,10763.535 +1139,2025-06-10T03:24:18.868246-07:00,0.0,10.758759,10758.759 +1140,2025-06-10T03:24:29.624902-07:00,0.0,10.756656,10756.656 +1141,2025-06-10T03:24:40.381890-07:00,0.0,10.756988,10756.988 +1142,2025-06-10T03:24:51.138683-07:00,0.0,10.756793,10756.793 +1143,2025-06-10T03:25:01.907695-07:00,0.0,10.769012,10769.012 +1144,2025-06-10T03:25:12.657455-07:00,0.0,10.74976,10749.76 +1145,2025-06-10T03:25:23.417481-07:00,0.0,10.760026,10760.026 +1146,2025-06-10T03:25:34.176675-07:00,0.0,10.759194,10759.194 +1147,2025-06-10T03:25:44.939730-07:00,0.0,10.763055,10763.055 +1148,2025-06-10T03:25:55.692727-07:00,0.0,10.752997,10752.997 +1149,2025-06-10T03:26:06.451194-07:00,0.0,10.758467,10758.467 +1150,2025-06-10T03:26:17.209527-07:00,0.0,10.758333,10758.333 +1151,2025-06-10T03:26:27.973678-07:00,0.0,10.764151,10764.151 +1152,2025-06-10T03:26:38.735108-07:00,0.0,10.76143,10761.43 +1153,2025-06-10T03:26:49.491483-07:00,0.0,10.756375,10756.375 +1154,2025-06-10T03:27:00.251977-07:00,0.0,10.760494,10760.494 +1155,2025-06-10T03:27:11.012906-07:00,0.0,10.760929,10760.929 +1156,2025-06-10T03:27:21.767638-07:00,0.0,10.754732,10754.732 +1157,2025-06-10T03:27:32.532485-07:00,0.0,10.764847,10764.847 +1158,2025-06-10T03:27:43.291682-07:00,0.0,10.759197,10759.197 +1159,2025-06-10T03:27:54.050811-07:00,0.0,10.759129,10759.129 +1160,2025-06-10T03:28:04.805487-07:00,0.0,10.754676,10754.676 +1161,2025-06-10T03:28:15.567719-07:00,0.0,10.762232,10762.232 +1162,2025-06-10T03:28:26.326482-07:00,0.0,10.758763,10758.763 +1163,2025-06-10T03:28:37.086740-07:00,0.0,10.760258,10760.258 +1164,2025-06-10T03:28:47.854504-07:00,0.0,10.767764,10767.764 +1165,2025-06-10T03:28:58.610465-07:00,0.0,10.755961,10755.961 +1166,2025-06-10T03:29:09.370553-07:00,0.0,10.760088,10760.088 +1167,2025-06-10T03:29:20.131264-07:00,0.0,10.760711,10760.711 +1168,2025-06-10T03:29:30.890735-07:00,0.0,10.759471,10759.471 +1169,2025-06-10T03:29:41.648541-07:00,0.0,10.757806,10757.806 +1170,2025-06-10T03:29:52.412716-07:00,0.0,10.764175,10764.175 +1171,2025-06-10T03:30:03.176748-07:00,0.0,10.764032,10764.032 +1172,2025-06-10T03:30:13.931945-07:00,0.0,10.755197,10755.197 +1173,2025-06-10T03:30:24.704167-07:00,0.0,10.772222,10772.222 +1174,2025-06-10T03:30:35.460564-07:00,0.0,10.756397,10756.397 +1175,2025-06-10T03:30:46.212685-07:00,0.0,10.752121,10752.121 +1176,2025-06-10T03:30:56.969804-07:00,0.0,10.757119,10757.119 +1177,2025-06-10T03:31:07.728485-07:00,0.0,10.758681,10758.681 +1178,2025-06-10T03:31:18.496459-07:00,0.0,10.767974,10767.974 +1179,2025-06-10T03:31:29.257286-07:00,0.0,10.760827,10760.827 +1180,2025-06-10T03:31:40.013970-07:00,0.0,10.756684,10756.684 +1181,2025-06-10T03:31:50.778774-07:00,0.0,10.764804,10764.804 +1182,2025-06-10T03:32:01.546655-07:00,0.0,10.767881,10767.881 +1183,2025-06-10T03:32:12.300123-07:00,0.0,10.753468,10753.468 +1184,2025-06-10T03:32:23.064485-07:00,0.0,10.764362,10764.362 +1185,2025-06-10T03:32:33.822669-07:00,0.0,10.758184,10758.184 +1186,2025-06-10T03:32:44.593895-07:00,0.0,10.771226,10771.226 +1187,2025-06-10T03:32:55.352906-07:00,0.0,10.759011,10759.011 +1188,2025-06-10T03:33:06.112488-07:00,0.0,10.759582,10759.582 +1189,2025-06-10T03:33:16.876794-07:00,0.0,10.764306,10764.306 +1190,2025-06-10T03:33:27.641800-07:00,0.0,10.765006,10765.006 +1191,2025-06-10T03:33:38.397043-07:00,0.0,10.755243,10755.243 +1192,2025-06-10T03:33:49.163678-07:00,0.0,10.766635,10766.635 +1193,2025-06-10T03:33:59.927719-07:00,0.0,10.764041,10764.041 +1194,2025-06-10T03:34:10.687449-07:00,0.0,10.75973,10759.73 +1195,2025-06-10T03:34:21.449518-07:00,0.0,10.762069,10762.069 +1196,2025-06-10T03:34:32.214474-07:00,0.0,10.764956,10764.956 +1197,2025-06-10T03:34:42.970621-07:00,0.0,10.756147,10756.147 +1198,2025-06-10T03:34:53.739483-07:00,0.0,10.768862,10768.862 +1199,2025-06-10T03:35:04.503485-07:00,0.0,10.764002,10764.002 +1200,2025-06-10T03:35:15.268465-07:00,0.0,10.76498,10764.98 +1201,2025-06-10T03:35:26.038489-07:00,0.0,10.770024,10770.024 +1202,2025-06-10T03:35:36.797732-07:00,0.0,10.759243,10759.243 +1203,2025-06-10T03:35:47.563781-07:00,0.0,10.766049,10766.049 +1204,2025-06-10T03:35:58.323021-07:00,0.0,10.75924,10759.24 +1205,2025-06-10T03:36:09.089485-07:00,0.0,10.766464,10766.464 +1206,2025-06-10T03:36:19.857942-07:00,0.0,10.768457,10768.457 +1207,2025-06-10T03:36:30.616967-07:00,0.0,10.759025,10759.025 +1208,2025-06-10T03:36:41.375488-07:00,0.0,10.758521,10758.521 +1209,2025-06-10T03:36:52.141525-07:00,0.0,10.766037,10766.037 +1210,2025-06-10T03:37:02.901318-07:00,0.0,10.759793,10759.793 +1211,2025-06-10T03:37:13.661481-07:00,0.0,10.760163,10760.163 +1212,2025-06-10T03:37:24.427483-07:00,0.0,10.766002,10766.002 +1213,2025-06-10T03:37:35.197981-07:00,0.0,10.770498,10770.498 +1214,2025-06-10T03:37:45.952911-07:00,0.0,10.75493,10754.93 +1215,2025-06-10T03:37:56.725480-07:00,0.0,10.772569,10772.569 +1216,2025-06-10T03:38:07.488560-07:00,0.0,10.76308,10763.08 +1217,2025-06-10T03:38:18.254467-07:00,0.0,10.765907,10765.907 +1218,2025-06-10T03:38:29.016483-07:00,0.0,10.762016,10762.016 +1219,2025-06-10T03:38:39.777482-07:00,0.0,10.760999,10760.999 +1220,2025-06-10T03:38:50.540579-07:00,0.0,10.763097,10763.097 +1221,2025-06-10T03:39:01.305587-07:00,0.0,10.765008,10765.008 +1222,2025-06-10T03:39:12.067457-07:00,0.0,10.76187,10761.87 +1223,2025-06-10T03:39:22.822128-07:00,0.0,10.754671,10754.671 +1224,2025-06-10T03:39:33.585829-07:00,0.0,10.763701,10763.701 +1225,2025-06-10T03:39:44.344785-07:00,0.0,10.758956,10758.956 +1226,2025-06-10T03:39:55.107481-07:00,0.0,10.762696,10762.696 +1227,2025-06-10T03:40:05.867198-07:00,0.0,10.759717,10759.717 +1228,2025-06-10T03:40:16.639517-07:00,0.0,10.772319,10772.319 +1229,2025-06-10T03:40:27.392476-07:00,0.0,10.752959,10752.959 +1230,2025-06-10T03:40:38.158127-07:00,0.0,10.765651,10765.651 +1231,2025-06-10T03:40:48.923485-07:00,0.0,10.765358,10765.358 +1232,2025-06-10T03:40:59.684649-07:00,0.0,10.761164,10761.164 +1233,2025-06-10T03:41:10.440522-07:00,0.0,10.755873,10755.873 +1234,2025-06-10T03:41:21.201481-07:00,0.0,10.760959,10760.959 +1235,2025-06-10T03:41:31.966268-07:00,0.0,10.764787,10764.787 +1236,2025-06-10T03:41:42.732215-07:00,0.0,10.765947,10765.947 +1237,2025-06-10T03:41:53.493962-07:00,0.0,10.761747,10761.747 +1238,2025-06-10T03:42:04.248928-07:00,0.0,10.754966,10754.966 +1239,2025-06-10T03:42:15.012481-07:00,0.0,10.763553,10763.553 +1240,2025-06-10T03:42:25.773843-07:00,0.0,10.761362,10761.362 +1241,2025-06-10T03:42:36.537524-07:00,0.0,10.763681,10763.681 +1242,2025-06-10T03:42:47.301087-07:00,0.0,10.763563,10763.563 +1243,2025-06-10T03:42:58.062199-07:00,0.0,10.761112,10761.112 +1244,2025-06-10T03:43:08.819486-07:00,0.0,10.757287,10757.287 +1245,2025-06-10T03:43:19.578511-07:00,0.0,10.759025,10759.025 +1246,2025-06-10T03:43:30.345493-07:00,0.0,10.766982,10766.982 +1247,2025-06-10T03:43:41.107727-07:00,0.0,10.762234,10762.234 +1248,2025-06-10T03:43:51.869622-07:00,0.0,10.761895,10761.895 +1249,2025-06-10T03:44:02.629734-07:00,0.0,10.760112,10760.112 +1250,2025-06-10T03:44:13.385896-07:00,0.0,10.756162,10756.162 +1251,2025-06-10T03:44:24.146779-07:00,0.0,10.760883,10760.883 +1252,2025-06-10T03:44:34.906560-07:00,0.0,10.759781,10759.781 +1253,2025-06-10T03:44:45.672778-07:00,0.0,10.766218,10766.218 +1254,2025-06-10T03:44:56.423022-07:00,0.0,10.750244,10750.244 +1255,2025-06-10T03:45:07.191482-07:00,0.0,10.76846,10768.46 +1256,2025-06-10T03:45:17.943467-07:00,0.0,10.751985,10751.985 +1257,2025-06-10T03:45:28.705643-07:00,0.0,10.762176,10762.176 +1258,2025-06-10T03:45:39.466776-07:00,0.0,10.761133,10761.133 +1259,2025-06-10T03:45:50.220059-07:00,0.0,10.753283,10753.283 +1260,2025-06-10T03:46:00.981488-07:00,0.0,10.761429,10761.429 +1261,2025-06-10T03:46:11.736512-07:00,0.0,10.755024,10755.024 +1262,2025-06-10T03:46:12.782332-07:00,0.0,1.04582,1045.82 +1263,2025-06-10T03:46:22.501588-07:00,0.0,9.719256,9719.256 +1264,2025-06-10T03:46:33.262619-07:00,0.0,10.761031,10761.031 +1265,2025-06-10T03:46:44.020011-07:00,0.0,10.757392,10757.392 +1266,2025-06-10T03:46:54.780481-07:00,0.0,10.76047,10760.47 +1267,2025-06-10T03:47:05.543299-07:00,0.0,10.762818,10762.818 +1268,2025-06-10T03:47:16.297779-07:00,0.0,10.75448,10754.48 +1269,2025-06-10T03:47:27.060484-07:00,0.0,10.762705,10762.705 +1270,2025-06-10T03:47:37.819733-07:00,0.0,10.759249,10759.249 +1271,2025-06-10T03:47:48.578595-07:00,0.0,10.758862,10758.862 +1272,2025-06-10T03:47:59.338801-07:00,0.0,10.760206,10760.206 +1273,2025-06-10T03:48:10.094480-07:00,0.0,10.755679,10755.679 +1274,2025-06-10T03:48:20.851481-07:00,0.0,10.757001,10757.001 +1275,2025-06-10T03:48:31.610485-07:00,0.0,10.759004,10759.004 +1276,2025-06-10T03:48:42.369672-07:00,0.0,10.759187,10759.187 +1277,2025-06-10T03:48:53.138902-07:00,0.0,10.76923,10769.23 +1278,2025-06-10T03:49:03.895736-07:00,0.0,10.756834,10756.834 +1279,2025-06-10T03:49:14.650783-07:00,0.0,10.755047,10755.047 +1280,2025-06-10T03:49:25.408579-07:00,0.0,10.757796,10757.796 +1281,2025-06-10T03:49:36.178489-07:00,0.0,10.76991,10769.91 +1282,2025-06-10T03:49:46.930540-07:00,0.0,10.752051,10752.051 +1283,2025-06-10T03:49:57.690732-07:00,0.0,10.760192,10760.192 +1284,2025-06-10T03:50:08.457481-07:00,0.0,10.766749,10766.749 +1285,2025-06-10T03:50:19.210792-07:00,0.0,10.753311,10753.311 +1286,2025-06-10T03:50:29.978763-07:00,0.0,10.767971,10767.971 +1287,2025-06-10T03:50:40.728981-07:00,0.0,10.750218,10750.218 +1288,2025-06-10T03:50:51.490477-07:00,0.0,10.761496,10761.496 +1289,2025-06-10T03:51:02.250620-07:00,0.0,10.760143,10760.143 +1290,2025-06-10T03:51:13.006766-07:00,0.0,10.756146,10756.146 +1291,2025-06-10T03:51:23.759480-07:00,0.0,10.752714,10752.714 +1292,2025-06-10T03:51:34.525535-07:00,0.0,10.766055,10766.055 +1293,2025-06-10T03:51:44.921730-07:00,0.0,10.396195,10396.195 +1294,2025-06-10T03:51:55.684180-07:00,0.0,10.76245,10762.45 +1295,2025-06-10T03:52:06.442350-07:00,0.0,10.75817,10758.17 +1296,2025-06-10T03:52:17.200738-07:00,0.0,10.758388,10758.388 +1297,2025-06-10T03:52:27.971440-07:00,0.0,10.770702,10770.702 +1298,2025-06-10T03:52:38.730068-07:00,0.0,10.758628,10758.628 +1299,2025-06-10T03:52:49.491406-07:00,0.0,10.761338,10761.338 +1300,2025-06-10T03:53:00.255877-07:00,0.0,10.764471,10764.471 +1301,2025-06-10T03:53:11.017815-07:00,0.0,10.761938,10761.938 +1302,2025-06-10T03:53:21.785032-07:00,0.0,10.767217,10767.217 +1303,2025-06-10T03:53:32.547719-07:00,0.0,10.762687,10762.687 +1304,2025-06-10T03:53:43.307824-07:00,0.0,10.760105,10760.105 +1305,2025-06-10T03:53:54.070099-07:00,0.0,10.762275,10762.275 +1306,2025-06-10T03:54:04.829983-07:00,0.0,10.759884,10759.884 +1307,2025-06-10T03:54:15.584740-07:00,0.0,10.754757,10754.757 +1308,2025-06-10T03:54:26.343983-07:00,0.0,10.759243,10759.243 +1309,2025-06-10T03:54:37.104474-07:00,0.0,10.760491,10760.491 +1310,2025-06-10T03:54:47.867424-07:00,0.0,10.76295,10762.95 +1311,2025-06-10T03:54:58.625740-07:00,0.0,10.758316,10758.316 +1312,2025-06-10T03:55:09.393135-07:00,0.0,10.767395,10767.395 +1313,2025-06-10T03:55:20.151032-07:00,0.0,10.757897,10757.897 +1314,2025-06-10T03:55:30.914730-07:00,0.0,10.763698,10763.698 +1315,2025-06-10T03:55:41.672715-07:00,0.0,10.757985,10757.985 +1316,2025-06-10T03:55:52.429740-07:00,0.0,10.757025,10757.025 +1317,2025-06-10T03:56:03.200142-07:00,0.0,10.770402,10770.402 +1318,2025-06-10T03:56:13.949164-07:00,0.0,10.749022,10749.022 +1319,2025-06-10T03:56:24.717905-07:00,0.0,10.768741,10768.741 +1320,2025-06-10T03:56:35.466740-07:00,0.0,10.748835,10748.835 +1321,2025-06-10T03:56:46.235307-07:00,0.0,10.768567,10768.567 +1322,2025-06-10T03:56:56.984067-07:00,0.0,10.74876,10748.76 +1323,2025-06-10T03:57:07.743995-07:00,0.0,10.759928,10759.928 +1324,2025-06-10T03:57:18.501715-07:00,0.0,10.75772,10757.72 +1325,2025-06-10T03:57:29.264781-07:00,0.0,10.763066,10763.066 +1326,2025-06-10T03:57:40.028703-07:00,0.0,10.763922,10763.922 +1327,2025-06-10T03:57:50.783269-07:00,0.0,10.754566,10754.566 +1328,2025-06-10T03:58:01.542996-07:00,0.0,10.759727,10759.727 +1329,2025-06-10T03:58:12.300735-07:00,0.0,10.757739,10757.739 +1330,2025-06-10T03:58:23.057942-07:00,0.0,10.757207,10757.207 +1331,2025-06-10T03:58:33.826738-07:00,0.0,10.768796,10768.796 +1332,2025-06-10T03:58:44.585738-07:00,0.0,10.759,10759.0 +1333,2025-06-10T03:58:55.340975-07:00,0.0,10.755237,10755.237 +1334,2025-06-10T03:59:06.098736-07:00,0.0,10.757761,10757.761 +1335,2025-06-10T03:59:16.863425-07:00,0.0,10.764689,10764.689 +1336,2025-06-10T03:59:27.616268-07:00,0.0,10.752843,10752.843 +1337,2025-06-10T03:59:38.376740-07:00,0.0,10.760472,10760.472 +1338,2025-06-10T03:59:49.131481-07:00,0.0,10.754741,10754.741 +1339,2025-06-10T03:59:59.896236-07:00,0.0,10.764755,10764.755 +1340,2025-06-10T04:00:10.651287-07:00,0.0,10.755051,10755.051 +1341,2025-06-10T04:00:21.415258-07:00,0.0,10.763971,10763.971 +1342,2025-06-10T04:00:32.165882-07:00,0.0,10.750624,10750.624 +1343,2025-06-10T04:00:42.931738-07:00,0.0,10.765856,10765.856 +1344,2025-06-10T04:00:53.693078-07:00,0.0,10.76134,10761.34 +1345,2025-06-10T04:01:04.451825-07:00,0.0,10.758747,10758.747 +1346,2025-06-10T04:01:15.203741-07:00,0.0,10.751916,10751.916 +1347,2025-06-10T04:01:25.965738-07:00,0.0,10.761997,10761.997 +1348,2025-06-10T04:01:36.719726-07:00,0.0,10.753988,10753.988 +1349,2025-06-10T04:01:47.487738-07:00,0.0,10.768012,10768.012 +1350,2025-06-10T04:01:58.247830-07:00,0.0,10.760092,10760.092 +1351,2025-06-10T04:02:09.000738-07:00,0.0,10.752908,10752.908 +1352,2025-06-10T04:02:19.753927-07:00,0.0,10.753189,10753.189 +1353,2025-06-10T04:02:30.516491-07:00,0.0,10.762564,10762.564 +1354,2025-06-10T04:02:41.277110-07:00,0.0,10.760619,10760.619 +1355,2025-06-10T04:02:52.026326-07:00,0.0,10.749216,10749.216 +1356,2025-06-10T04:03:02.784902-07:00,0.0,10.758576,10758.576 +1357,2025-06-10T04:03:13.542728-07:00,0.0,10.757826,10757.826 +1358,2025-06-10T04:03:24.308732-07:00,0.0,10.766004,10766.004 +1359,2025-06-10T04:03:35.061090-07:00,0.0,10.752358,10752.358 +1360,2025-06-10T04:03:45.821008-07:00,0.0,10.759918,10759.918 +1361,2025-06-10T04:03:56.573938-07:00,0.0,10.75293,10752.93 +1362,2025-06-10T04:04:07.336161-07:00,0.0,10.762223,10762.223 +1363,2025-06-10T04:04:18.096784-07:00,0.0,10.760623,10760.623 +1364,2025-06-10T04:04:28.861059-07:00,0.0,10.764275,10764.275 +1365,2025-06-10T04:04:39.621311-07:00,0.0,10.760252,10760.252 +1366,2025-06-10T04:04:50.381740-07:00,0.0,10.760429,10760.429 +1367,2025-06-10T04:05:01.141082-07:00,0.0,10.759342,10759.342 +1368,2025-06-10T04:05:11.897970-07:00,0.0,10.756888,10756.888 +1369,2025-06-10T04:05:22.660994-07:00,0.0,10.763024,10763.024 +1370,2025-06-10T04:05:33.428312-07:00,0.0,10.767318,10767.318 +1371,2025-06-10T04:05:44.178973-07:00,0.0,10.750661,10750.661 +1372,2025-06-10T04:05:54.942175-07:00,0.0,10.763202,10763.202 +1373,2025-06-10T04:06:05.708991-07:00,0.0,10.766816,10766.816 +1374,2025-06-10T04:06:16.466921-07:00,0.0,10.75793,10757.93 +1375,2025-06-10T04:06:27.225912-07:00,0.0,10.758991,10758.991 +1376,2025-06-10T04:06:37.989738-07:00,0.0,10.763826,10763.826 +1377,2025-06-10T04:06:48.746776-07:00,0.0,10.757038,10757.038 +1378,2025-06-10T04:06:59.503736-07:00,0.0,10.75696,10756.96 +1379,2025-06-10T04:07:10.258881-07:00,0.0,10.755145,10755.145 +1380,2025-06-10T04:07:21.016765-07:00,0.0,10.757884,10757.884 +1381,2025-06-10T04:07:31.779399-07:00,0.0,10.762634,10762.634 +1382,2025-06-10T04:07:42.532903-07:00,0.0,10.753504,10753.504 +1383,2025-06-10T04:07:53.291900-07:00,0.0,10.758997,10758.997 +1384,2025-06-10T04:08:04.042787-07:00,0.0,10.750887,10750.887 +1385,2025-06-10T04:08:14.808327-07:00,0.0,10.76554,10765.54 +1386,2025-06-10T04:08:25.558027-07:00,0.0,10.7497,10749.7 +1387,2025-06-10T04:08:36.322735-07:00,0.0,10.764708,10764.708 +1388,2025-06-10T04:08:47.072769-07:00,0.0,10.750034,10750.034 +1389,2025-06-10T04:08:57.829736-07:00,0.0,10.756967,10756.967 +1390,2025-06-10T04:09:08.589740-07:00,0.0,10.760004,10760.004 +1391,2025-06-10T04:09:19.343765-07:00,0.0,10.754025,10754.025 +1392,2025-06-10T04:09:30.113725-07:00,0.0,10.76996,10769.96 +1393,2025-06-10T04:09:40.872733-07:00,0.0,10.759008,10759.008 +1394,2025-06-10T04:09:51.632652-07:00,0.0,10.759919,10759.919 +1395,2025-06-10T04:10:02.390049-07:00,0.0,10.757397,10757.397 +1396,2025-06-10T04:10:13.144783-07:00,0.0,10.754734,10754.734 +1397,2025-06-10T04:10:23.900732-07:00,0.0,10.755949,10755.949 +1398,2025-06-10T04:10:34.666740-07:00,0.0,10.766008,10766.008 +1399,2025-06-10T04:10:45.416738-07:00,0.0,10.749998,10749.998 +1400,2025-06-10T04:10:56.180948-07:00,0.0,10.76421,10764.21 +1401,2025-06-10T04:11:06.940848-07:00,0.0,10.7599,10759.9 +1402,2025-06-10T04:11:17.700971-07:00,0.0,10.760123,10760.123 +1403,2025-06-10T04:11:28.459738-07:00,0.0,10.758767,10758.767 +1404,2025-06-10T04:11:39.210777-07:00,0.0,10.751039,10751.039 +1405,2025-06-10T04:11:49.970047-07:00,0.0,10.75927,10759.27 +1406,2025-06-10T04:12:00.728994-07:00,0.0,10.758947,10758.947 +1407,2025-06-10T04:12:11.484996-07:00,0.0,10.756002,10756.002 +1408,2025-06-10T04:12:22.246977-07:00,0.0,10.761981,10761.981 +1409,2025-06-10T04:12:33.013093-07:00,0.0,10.766116,10766.116 +1410,2025-06-10T04:12:43.772078-07:00,0.0,10.758985,10758.985 +1411,2025-06-10T04:12:54.527746-07:00,0.0,10.755668,10755.668 +1412,2025-06-10T04:13:05.283141-07:00,0.0,10.755395,10755.395 +1413,2025-06-10T04:13:16.049827-07:00,0.0,10.766686,10766.686 +1414,2025-06-10T04:13:26.803283-07:00,0.0,10.753456,10753.456 +1415,2025-06-10T04:13:37.565048-07:00,0.0,10.761765,10761.765 +1416,2025-06-10T04:13:48.326725-07:00,0.0,10.761677,10761.677 +1417,2025-06-10T04:13:59.083724-07:00,0.0,10.756999,10756.999 +1418,2025-06-10T04:14:09.848249-07:00,0.0,10.764525,10764.525 +1419,2025-06-10T04:14:20.604998-07:00,0.0,10.756749,10756.749 +1420,2025-06-10T04:14:31.369740-07:00,0.0,10.764742,10764.742 +1421,2025-06-10T04:14:42.129406-07:00,0.0,10.759666,10759.666 +1422,2025-06-10T04:14:52.885055-07:00,0.0,10.755649,10755.649 +1423,2025-06-10T04:15:03.642887-07:00,0.0,10.757832,10757.832 +1424,2025-06-10T04:15:14.405724-07:00,0.0,10.762837,10762.837 +1425,2025-06-10T04:15:25.163888-07:00,0.0,10.758164,10758.164 +1426,2025-06-10T04:15:35.918972-07:00,0.0,10.755084,10755.084 +1427,2025-06-10T04:15:46.678836-07:00,0.0,10.759864,10759.864 +1428,2025-06-10T04:15:57.432088-07:00,0.0,10.753252,10753.252 +1429,2025-06-10T04:16:08.189777-07:00,0.0,10.757689,10757.689 +1430,2025-06-10T04:16:18.955916-07:00,0.0,10.766139,10766.139 +1431,2025-06-10T04:16:29.709073-07:00,0.0,10.753157,10753.157 +1432,2025-06-10T04:16:40.469922-07:00,0.0,10.760849,10760.849 +1433,2025-06-10T04:16:51.226800-07:00,0.0,10.756878,10756.878 +1434,2025-06-10T04:17:01.987733-07:00,0.0,10.760933,10760.933 +1435,2025-06-10T04:17:12.744736-07:00,0.0,10.757003,10757.003 +1436,2025-06-10T04:17:23.499979-07:00,0.0,10.755243,10755.243 +1437,2025-06-10T04:17:34.263590-07:00,0.0,10.763611,10763.611 +1438,2025-06-10T04:17:45.015574-07:00,0.0,10.751984,10751.984 +1439,2025-06-10T04:17:55.776736-07:00,0.0,10.761162,10761.162 +1440,2025-06-10T04:18:06.534773-07:00,0.0,10.758037,10758.037 +1441,2025-06-10T04:18:17.299275-07:00,0.0,10.764502,10764.502 +1442,2025-06-10T04:18:28.057740-07:00,0.0,10.758465,10758.465 +1443,2025-06-10T04:18:38.811727-07:00,0.0,10.753987,10753.987 +1444,2025-06-10T04:18:49.572846-07:00,0.0,10.761119,10761.119 +1445,2025-06-10T04:19:00.332777-07:00,0.0,10.759931,10759.931 +1446,2025-06-10T04:19:11.092238-07:00,0.0,10.759461,10759.461 +1447,2025-06-10T04:19:21.848971-07:00,0.0,10.756733,10756.733 +1448,2025-06-10T04:19:32.610957-07:00,0.0,10.761986,10761.986 +1449,2025-06-10T04:19:43.361839-07:00,0.0,10.750882,10750.882 +1450,2025-06-10T04:19:54.123850-07:00,0.0,10.762011,10762.011 +1451,2025-06-10T04:20:04.874547-07:00,0.0,10.750697,10750.697 +1452,2025-06-10T04:20:15.628145-07:00,0.0,10.753598,10753.598 +1453,2025-06-10T04:20:26.383740-07:00,0.0,10.755595,10755.595 +1454,2025-06-10T04:20:37.146015-07:00,0.0,10.762275,10762.275 +1455,2025-06-10T04:20:47.910715-07:00,0.0,10.7647,10764.7 +1456,2025-06-10T04:20:58.665532-07:00,0.0,10.754817,10754.817 +1457,2025-06-10T04:21:09.431030-07:00,0.0,10.765498,10765.498 +1458,2025-06-10T04:21:20.183727-07:00,0.0,10.752697,10752.697 +1459,2025-06-10T04:21:30.942995-07:00,0.0,10.759268,10759.268 +1460,2025-06-10T04:21:41.702053-07:00,0.0,10.759058,10759.058 +1461,2025-06-10T04:21:52.456450-07:00,0.0,10.754397,10754.397 +1462,2025-06-10T04:22:03.218710-07:00,0.0,10.76226,10762.26 +1463,2025-06-10T04:22:13.980342-07:00,0.0,10.761632,10761.632 +1464,2025-06-10T04:22:24.731730-07:00,0.0,10.751388,10751.388 +1465,2025-06-10T04:22:35.487877-07:00,0.0,10.756147,10756.147 +1466,2025-06-10T04:22:46.246258-07:00,0.0,10.758381,10758.381 +1467,2025-06-10T04:22:57.010740-07:00,0.0,10.764482,10764.482 +1468,2025-06-10T04:23:07.772994-07:00,0.0,10.762254,10762.254 +1469,2025-06-10T04:23:18.529719-07:00,0.0,10.756725,10756.725 +1470,2025-06-10T04:23:29.283783-07:00,0.0,10.754064,10754.064 +1471,2025-06-10T04:23:40.046738-07:00,0.0,10.762955,10762.955 +1472,2025-06-10T04:23:50.799740-07:00,0.0,10.753002,10753.002 +1473,2025-06-10T04:23:57.758438-07:00,0.0,6.958698,6958.698 +1474,2025-06-10T04:24:01.565171-07:00,0.0,3.806733,3806.733 +1475,2025-06-10T04:24:12.323827-07:00,0.0,10.758656,10758.656 +1476,2025-06-10T04:24:23.077734-07:00,0.0,10.753907,10753.907 +1477,2025-06-10T04:24:33.836429-07:00,0.0,10.758695,10758.695 +1478,2025-06-10T04:24:44.599726-07:00,0.0,10.763297,10763.297 +1479,2025-06-10T04:24:55.354988-07:00,0.0,10.755262,10755.262 +1480,2025-06-10T04:25:06.118254-07:00,0.0,10.763266,10763.266 +1481,2025-06-10T04:25:16.880002-07:00,0.0,10.761748,10761.748 +1482,2025-06-10T04:25:27.647736-07:00,0.0,10.767734,10767.734 +1483,2025-06-10T04:25:38.403934-07:00,0.0,10.756198,10756.198 +1484,2025-06-10T04:25:49.161790-07:00,0.0,10.757856,10757.856 +1485,2025-06-10T04:25:59.933992-07:00,0.0,10.772202,10772.202 +1486,2025-06-10T04:26:10.690736-07:00,0.0,10.756744,10756.744 +1487,2025-06-10T04:26:21.455702-07:00,0.0,10.764966,10764.966 +1488,2025-06-10T04:26:32.217768-07:00,0.0,10.762066,10762.066 +1489,2025-06-10T04:26:42.971891-07:00,0.0,10.754123,10754.123 +1490,2025-06-10T04:26:53.736737-07:00,0.0,10.764846,10764.846 +1491,2025-06-10T04:27:04.504471-07:00,0.0,10.767734,10767.734 +1492,2025-06-10T04:27:15.263263-07:00,0.0,10.758792,10758.792 +1493,2025-06-10T04:27:26.027736-07:00,0.0,10.764473,10764.473 +1494,2025-06-10T04:27:36.790031-07:00,0.0,10.762295,10762.295 +1495,2025-06-10T04:27:47.540116-07:00,0.0,10.750085,10750.085 +1496,2025-06-10T04:27:58.305738-07:00,0.0,10.765622,10765.622 +1497,2025-06-10T04:28:09.060889-07:00,0.0,10.755151,10755.151 +1498,2025-06-10T04:28:19.817937-07:00,0.0,10.757048,10757.048 +1499,2025-06-10T04:28:30.580084-07:00,0.0,10.762147,10762.147 +1500,2025-06-10T04:28:41.343205-07:00,0.0,10.763121,10763.121 +1501,2025-06-10T04:28:52.091326-07:00,0.0,10.748121,10748.121 +1502,2025-06-10T04:29:02.854713-07:00,0.0,10.763387,10763.387 +1503,2025-06-10T04:29:13.607718-07:00,0.0,10.753005,10753.005 +1504,2025-06-10T04:29:24.368024-07:00,0.0,10.760306,10760.306 +1505,2025-06-10T04:29:35.126059-07:00,0.0,10.758035,10758.035 +1506,2025-06-10T04:29:45.886890-07:00,0.0,10.760831,10760.831 +1507,2025-06-10T04:29:56.641273-07:00,0.0,10.754383,10754.383 +1508,2025-06-10T04:30:07.402740-07:00,0.0,10.761467,10761.467 +1509,2025-06-10T04:30:18.158873-07:00,0.0,10.756133,10756.133 +1510,2025-06-10T04:30:28.923143-07:00,0.0,10.76427,10764.27 +1511,2025-06-10T04:30:39.683989-07:00,0.0,10.760846,10760.846 +1512,2025-06-10T04:30:50.436737-07:00,0.0,10.752748,10752.748 +1513,2025-06-10T04:31:01.200700-07:00,0.0,10.763963,10763.963 +1514,2025-06-10T04:31:11.959018-07:00,0.0,10.758318,10758.318 +1515,2025-06-10T04:31:22.718750-07:00,0.0,10.759732,10759.732 +1516,2025-06-10T04:31:33.482710-07:00,0.0,10.76396,10763.96 +1517,2025-06-10T04:31:44.239736-07:00,0.0,10.757026,10757.026 +1518,2025-06-10T04:31:54.998994-07:00,0.0,10.759258,10759.258 +1519,2025-06-10T04:32:05.763738-07:00,0.0,10.764744,10764.744 +1520,2025-06-10T04:32:16.523735-07:00,0.0,10.759997,10759.997 +1521,2025-06-10T04:32:27.288921-07:00,0.0,10.765186,10765.186 +1522,2025-06-10T04:32:38.054740-07:00,0.0,10.765819,10765.819 +1523,2025-06-10T04:32:48.813962-07:00,0.0,10.759222,10759.222 +1524,2025-06-10T04:32:59.588004-07:00,0.0,10.774042,10774.042 +1525,2025-06-10T04:33:10.351740-07:00,0.0,10.763736,10763.736 +1526,2025-06-10T04:33:21.111932-07:00,0.0,10.760192,10760.192 +1527,2025-06-10T04:33:31.870006-07:00,0.0,10.758074,10758.074 +1528,2025-06-10T04:33:42.629022-07:00,0.0,10.759016,10759.016 +1529,2025-06-10T04:33:53.395994-07:00,0.0,10.766972,10766.972 +1530,2025-06-10T04:34:04.146736-07:00,0.0,10.750742,10750.742 +1531,2025-06-10T04:34:14.907774-07:00,0.0,10.761038,10761.038 +1532,2025-06-10T04:34:25.665734-07:00,0.0,10.75796,10757.96 +1533,2025-06-10T04:34:36.434197-07:00,0.0,10.768463,10768.463 +1534,2025-06-10T04:34:47.186732-07:00,0.0,10.752535,10752.535 +1535,2025-06-10T04:34:57.954740-07:00,0.0,10.768008,10768.008 +1536,2025-06-10T04:35:08.713438-07:00,0.0,10.758698,10758.698 +1537,2025-06-10T04:35:19.474006-07:00,0.0,10.760568,10760.568 +1538,2025-06-10T04:35:30.234940-07:00,0.0,10.760934,10760.934 +1539,2025-06-10T04:35:40.992737-07:00,0.0,10.757797,10757.797 +1540,2025-06-10T04:35:51.748733-07:00,0.0,10.755996,10755.996 +1541,2025-06-10T04:36:02.513117-07:00,0.0,10.764384,10764.384 +1542,2025-06-10T04:36:13.272744-07:00,0.0,10.759627,10759.627 +1543,2025-06-10T04:36:24.023741-07:00,0.0,10.750997,10750.997 +1544,2025-06-10T04:36:34.791955-07:00,0.0,10.768214,10768.214 +1545,2025-06-10T04:36:45.549032-07:00,0.0,10.757077,10757.077 +1546,2025-06-10T04:36:56.304789-07:00,0.0,10.755757,10755.757 +1547,2025-06-10T04:37:07.068740-07:00,0.0,10.763951,10763.951 +1548,2025-06-10T04:37:17.823192-07:00,0.0,10.754452,10754.452 +1549,2025-06-10T04:37:28.573736-07:00,0.0,10.750544,10750.544 +1550,2025-06-10T04:37:39.337090-07:00,0.0,10.763354,10763.354 +1551,2025-06-10T04:37:50.095717-07:00,0.0,10.758627,10758.627 +1552,2025-06-10T04:38:00.851969-07:00,0.0,10.756252,10756.252 +1553,2025-06-10T04:38:11.613104-07:00,0.0,10.761135,10761.135 +1554,2025-06-10T04:38:22.368731-07:00,0.0,10.755627,10755.627 +1555,2025-06-10T04:38:33.125026-07:00,0.0,10.756295,10756.295 +1556,2025-06-10T04:38:43.880301-07:00,0.0,10.755275,10755.275 +1557,2025-06-10T04:38:54.635000-07:00,0.0,10.754699,10754.699 +1558,2025-06-10T04:39:05.389738-07:00,0.0,10.754738,10754.738 +1559,2025-06-10T04:39:16.153736-07:00,0.0,10.763998,10763.998 +1560,2025-06-10T04:39:26.910894-07:00,0.0,10.757158,10757.158 +1561,2025-06-10T04:39:37.678848-07:00,0.0,10.767954,10767.954 +1562,2025-06-10T04:39:48.430723-07:00,0.0,10.751875,10751.875 +1563,2025-06-10T04:39:59.194816-07:00,0.0,10.764093,10764.093 +1564,2025-06-10T04:40:09.961017-07:00,0.0,10.766201,10766.201 +1565,2025-06-10T04:40:20.720919-07:00,0.0,10.759902,10759.902 +1566,2025-06-10T04:40:31.476731-07:00,0.0,10.755812,10755.812 +1567,2025-06-10T04:40:42.236719-07:00,0.0,10.759988,10759.988 +1568,2025-06-10T04:40:52.996021-07:00,0.0,10.759302,10759.302 +1569,2025-06-10T04:41:03.758071-07:00,0.0,10.76205,10762.05 +1570,2025-06-10T04:41:14.518038-07:00,0.0,10.759967,10759.967 +1571,2025-06-10T04:41:25.278971-07:00,0.0,10.760933,10760.933 +1572,2025-06-10T04:41:36.042826-07:00,0.0,10.763855,10763.855 +1573,2025-06-10T04:41:46.794222-07:00,0.0,10.751396,10751.396 +1574,2025-06-10T04:41:57.563763-07:00,0.0,10.769541,10769.541 +1575,2025-06-10T04:42:08.312137-07:00,0.0,10.748374,10748.374 +1576,2025-06-10T04:42:19.075736-07:00,0.0,10.763599,10763.599 +1577,2025-06-10T04:42:29.834192-07:00,0.0,10.758456,10758.456 +1578,2025-06-10T04:42:40.593236-07:00,0.0,10.759044,10759.044 +1579,2025-06-10T04:42:51.353726-07:00,0.0,10.76049,10760.49 +1580,2025-06-10T04:43:02.118291-07:00,0.0,10.764565,10764.565 +1581,2025-06-10T04:43:12.870756-07:00,0.0,10.752465,10752.465 +1582,2025-06-10T04:43:23.631914-07:00,0.0,10.761158,10761.158 +1583,2025-06-10T04:43:34.396769-07:00,0.0,10.764855,10764.855 +1584,2025-06-10T04:43:45.153740-07:00,0.0,10.756971,10756.971 +1585,2025-06-10T04:43:55.912952-07:00,0.0,10.759212,10759.212 +1586,2025-06-10T04:44:06.672197-07:00,0.0,10.759245,10759.245 +1587,2025-06-10T04:44:17.437998-07:00,0.0,10.765801,10765.801 +1588,2025-06-10T04:44:28.196920-07:00,0.0,10.758922,10758.922 +1589,2025-06-10T04:44:38.951826-07:00,0.0,10.754906,10754.906 +1590,2025-06-10T04:44:49.712057-07:00,0.0,10.760231,10760.231 +1591,2025-06-10T04:45:00.469738-07:00,0.0,10.757681,10757.681 +1592,2025-06-10T04:45:11.230896-07:00,0.0,10.761158,10761.158 +1593,2025-06-10T04:45:22.001155-07:00,0.0,10.770259,10770.259 +1594,2025-06-10T04:45:32.757213-07:00,0.0,10.756058,10756.058 +1595,2025-06-10T04:45:43.523737-07:00,0.0,10.766524,10766.524 +1596,2025-06-10T04:45:54.287777-07:00,0.0,10.76404,10764.04 +1597,2025-06-10T04:46:05.049003-07:00,0.0,10.761226,10761.226 +1598,2025-06-10T04:46:15.806735-07:00,0.0,10.757732,10757.732 +1599,2025-06-10T04:46:26.571986-07:00,0.0,10.765251,10765.251 +1600,2025-06-10T04:46:37.340199-07:00,0.0,10.768213,10768.213 +1601,2025-06-10T04:46:48.098156-07:00,0.0,10.757957,10757.957 +1602,2025-06-10T04:46:58.867736-07:00,0.0,10.76958,10769.58 +1603,2025-06-10T04:47:09.622742-07:00,0.0,10.755006,10755.006 +1604,2025-06-10T04:47:20.392789-07:00,0.0,10.770047,10770.047 +1605,2025-06-10T04:47:31.148744-07:00,0.0,10.755955,10755.955 +1606,2025-06-10T04:47:41.909234-07:00,0.0,10.76049,10760.49 +1607,2025-06-10T04:47:52.668736-07:00,0.0,10.759502,10759.502 +1608,2025-06-10T04:48:03.434567-07:00,0.0,10.765831,10765.831 +1609,2025-06-10T04:48:14.192960-07:00,0.0,10.758393,10758.393 +1610,2025-06-10T04:48:24.949740-07:00,0.0,10.75678,10756.78 +1611,2025-06-10T04:48:35.704973-07:00,0.0,10.755233,10755.233 +1612,2025-06-10T04:48:46.470047-07:00,0.0,10.765074,10765.074 +1613,2025-06-10T04:48:57.224732-07:00,0.0,10.754685,10754.685 +1614,2025-06-10T04:49:07.983769-07:00,0.0,10.759037,10759.037 +1615,2025-06-10T04:49:18.744914-07:00,0.0,10.761145,10761.145 +1616,2025-06-10T04:49:29.507875-07:00,0.0,10.762961,10762.961 +1617,2025-06-10T04:49:40.263219-07:00,0.0,10.755344,10755.344 +1618,2025-06-10T04:49:51.025730-07:00,0.0,10.762511,10762.511 +1619,2025-06-10T04:50:01.784944-07:00,0.0,10.759214,10759.214 +1620,2025-06-10T04:50:12.545758-07:00,0.0,10.760814,10760.814 +1621,2025-06-10T04:50:23.298405-07:00,0.0,10.752647,10752.647 +1622,2025-06-10T04:50:34.059744-07:00,0.0,10.761339,10761.339 +1623,2025-06-10T04:50:44.819878-07:00,0.0,10.760134,10760.134 +1624,2025-06-10T04:50:55.590211-07:00,0.0,10.770333,10770.333 +1625,2025-06-10T04:51:06.346088-07:00,0.0,10.755877,10755.877 +1626,2025-06-10T04:51:17.108916-07:00,0.0,10.762828,10762.828 +1627,2025-06-10T04:51:27.873743-07:00,0.0,10.764827,10764.827 +1628,2025-06-10T04:51:39.002262-07:00,0.0,11.128519,11128.519 +1629,2025-06-10T04:51:49.771476-07:00,0.0,10.769214,10769.214 +1630,2025-06-10T04:52:00.531225-07:00,0.0,10.759749,10759.749 +1631,2025-06-10T04:52:11.293225-07:00,0.0,10.762,10762.0 +1632,2025-06-10T04:52:22.048812-07:00,0.0,10.755587,10755.587 +1633,2025-06-10T04:52:32.812453-07:00,0.0,10.763641,10763.641 +1634,2025-06-10T04:52:43.578205-07:00,0.0,10.765752,10765.752 +1635,2025-06-10T04:52:54.333225-07:00,0.0,10.75502,10755.02 +1636,2025-06-10T04:53:05.104214-07:00,0.0,10.770989,10770.989 +1637,2025-06-10T04:53:15.864376-07:00,0.0,10.760162,10760.162 +1638,2025-06-10T04:53:26.625219-07:00,0.0,10.760843,10760.843 +1639,2025-06-10T04:53:37.390652-07:00,0.0,10.765433,10765.433 +1640,2025-06-10T04:53:48.152316-07:00,0.0,10.761664,10761.664 +1641,2025-06-10T04:53:58.922494-07:00,0.0,10.770178,10770.178 +1642,2025-06-10T04:54:09.682562-07:00,0.0,10.760068,10760.068 +1643,2025-06-10T04:54:20.455268-07:00,0.0,10.772706,10772.706 +1644,2025-06-10T04:54:31.211219-07:00,0.0,10.755951,10755.951 +1645,2025-06-10T04:54:41.976246-07:00,0.0,10.765027,10765.027 +1646,2025-06-10T04:54:52.733896-07:00,0.0,10.75765,10757.65 +1647,2025-06-10T04:55:03.489211-07:00,0.0,10.755315,10755.315 +1648,2025-06-10T04:55:14.248558-07:00,0.0,10.759347,10759.347 +1649,2025-06-10T04:55:25.017713-07:00,0.0,10.769155,10769.155 +1650,2025-06-10T04:55:35.784989-07:00,0.0,10.767276,10767.276 +1651,2025-06-10T04:55:46.546625-07:00,0.0,10.761636,10761.636 +1652,2025-06-10T04:55:57.302225-07:00,0.0,10.7556,10755.6 +1653,2025-06-10T04:56:08.065540-07:00,0.0,10.763315,10763.315 +1654,2025-06-10T04:56:18.831333-07:00,0.0,10.765793,10765.793 +1655,2025-06-10T04:56:29.589379-07:00,0.0,10.758046,10758.046 +1656,2025-06-10T04:56:40.361867-07:00,0.0,10.772488,10772.488 +1657,2025-06-10T04:56:51.125227-07:00,0.0,10.76336,10763.36 +1658,2025-06-10T04:57:01.888474-07:00,0.0,10.763247,10763.247 +1659,2025-06-10T04:57:12.641196-07:00,0.0,10.752722,10752.722 +1660,2025-06-10T04:57:23.409579-07:00,0.0,10.768383,10768.383 +1661,2025-06-10T04:57:34.178509-07:00,0.0,10.76893,10768.93 +1662,2025-06-10T04:57:44.938254-07:00,0.0,10.759745,10759.745 +1663,2025-06-10T04:57:55.705233-07:00,0.0,10.766979,10766.979 +1664,2025-06-10T04:58:06.461224-07:00,0.0,10.755991,10755.991 +1665,2025-06-10T04:58:17.228496-07:00,0.0,10.767272,10767.272 +1666,2025-06-10T04:58:27.986548-07:00,0.0,10.758052,10758.052 +1667,2025-06-10T04:58:38.748600-07:00,0.0,10.762052,10762.052 +1668,2025-06-10T04:58:49.518462-07:00,0.0,10.769862,10769.862 +1669,2025-06-10T04:59:00.274081-07:00,0.0,10.755619,10755.619 +1670,2025-06-10T04:59:11.051227-07:00,0.0,10.777146,10777.146 +1671,2025-06-10T04:59:21.843747-07:00,0.0,10.79252,10792.52 +1672,2025-06-10T04:59:32.618525-07:00,0.0,10.774778,10774.778 +1673,2025-06-10T04:59:43.392206-07:00,0.0,10.773681,10773.681 +1674,2025-06-10T04:59:54.153569-07:00,0.0,10.761363,10761.363 +1675,2025-06-10T05:00:04.922562-07:00,0.0,10.768993,10768.993 +1676,2025-06-10T05:00:15.678758-07:00,0.0,10.756196,10756.196 +1677,2025-06-10T05:00:26.440408-07:00,0.0,10.76165,10761.65 +1678,2025-06-10T05:00:37.209267-07:00,0.0,10.768859,10768.859 +1679,2025-06-10T05:00:47.965774-07:00,0.0,10.756507,10756.507 +1680,2025-06-10T05:00:58.730368-07:00,0.0,10.764594,10764.594 +1681,2025-06-10T05:01:09.487283-07:00,0.0,10.756915,10756.915 +1682,2025-06-10T05:01:20.249221-07:00,0.0,10.761938,10761.938 +1683,2025-06-10T05:01:31.020545-07:00,0.0,10.771324,10771.324 +1684,2025-06-10T05:01:41.776479-07:00,0.0,10.755934,10755.934 +1685,2025-06-10T05:01:52.546277-07:00,0.0,10.769798,10769.798 +1686,2025-06-10T05:02:03.296433-07:00,0.0,10.750156,10750.156 +1687,2025-06-10T05:02:14.061501-07:00,0.0,10.765068,10765.068 +1688,2025-06-10T05:02:24.822225-07:00,0.0,10.760724,10760.724 +1689,2025-06-10T05:02:35.590223-07:00,0.0,10.767998,10767.998 +1690,2025-06-10T05:02:46.349320-07:00,0.0,10.759097,10759.097 +1691,2025-06-10T05:02:57.113224-07:00,0.0,10.763904,10763.904 +1692,2025-06-10T05:03:07.877924-07:00,0.0,10.7647,10764.7 +1693,2025-06-10T05:03:18.643436-07:00,0.0,10.765512,10765.512 +1694,2025-06-10T05:03:29.397443-07:00,0.0,10.754007,10754.007 +1695,2025-06-10T05:03:40.162483-07:00,0.0,10.76504,10765.04 +1696,2025-06-10T05:03:50.930398-07:00,0.0,10.767915,10767.915 +1697,2025-06-10T05:04:01.686302-07:00,0.0,10.755904,10755.904 +1698,2025-06-10T05:04:12.450231-07:00,0.0,10.763929,10763.929 +1699,2025-06-10T05:04:23.220269-07:00,0.0,10.770038,10770.038 +1700,2025-06-10T05:04:33.977876-07:00,0.0,10.757607,10757.607 +1701,2025-06-10T05:04:44.735271-07:00,0.0,10.757395,10757.395 +1702,2025-06-10T05:04:55.506364-07:00,0.0,10.771093,10771.093 +1703,2025-06-10T05:05:06.262222-07:00,0.0,10.755858,10755.858 +1704,2025-06-10T05:05:17.029903-07:00,0.0,10.767681,10767.681 +1705,2025-06-10T05:05:27.794625-07:00,0.0,10.764722,10764.722 +1706,2025-06-10T05:05:38.558251-07:00,0.0,10.763626,10763.626 +1707,2025-06-10T05:05:49.329317-07:00,0.0,10.771066,10771.066 +1708,2025-06-10T05:06:00.094223-07:00,0.0,10.764906,10764.906 +1709,2025-06-10T05:06:10.857436-07:00,0.0,10.763213,10763.213 +1710,2025-06-10T05:06:21.627196-07:00,0.0,10.76976,10769.76 +1711,2025-06-10T05:06:32.393229-07:00,0.0,10.766033,10766.033 +1712,2025-06-10T05:06:43.149701-07:00,0.0,10.756472,10756.472 +1713,2025-06-10T05:06:53.917227-07:00,0.0,10.767526,10767.526 +1714,2025-06-10T05:07:04.682470-07:00,0.0,10.765243,10765.243 +1715,2025-06-10T05:07:15.439233-07:00,0.0,10.756763,10756.763 +1716,2025-06-10T05:07:26.208320-07:00,0.0,10.769087,10769.087 +1717,2025-06-10T05:07:36.967236-07:00,0.0,10.758916,10758.916 +1718,2025-06-10T05:07:47.733321-07:00,0.0,10.766085,10766.085 +1719,2025-06-10T05:07:58.497551-07:00,0.0,10.76423,10764.23 +1720,2025-06-10T05:08:09.265229-07:00,0.0,10.767678,10767.678 +1721,2025-06-10T05:08:20.030276-07:00,0.0,10.765047,10765.047 +1722,2025-06-10T05:08:30.791416-07:00,0.0,10.76114,10761.14 +1723,2025-06-10T05:08:41.555478-07:00,0.0,10.764062,10764.062 +1724,2025-06-10T05:08:52.319433-07:00,0.0,10.763955,10763.955 +1725,2025-06-10T05:09:03.080919-07:00,0.0,10.761486,10761.486 +1726,2025-06-10T05:09:13.850224-07:00,0.0,10.769305,10769.305 +1727,2025-06-10T05:09:24.612538-07:00,0.0,10.762314,10762.314 +1728,2025-06-10T05:09:35.380545-07:00,0.0,10.768007,10768.007 +1729,2025-06-10T05:09:46.138641-07:00,0.0,10.758096,10758.096 +1730,2025-06-10T05:09:56.908227-07:00,0.0,10.769586,10769.586 +1731,2025-06-10T05:10:07.671542-07:00,0.0,10.763315,10763.315 +1732,2025-06-10T05:10:18.424622-07:00,0.0,10.75308,10753.08 +1733,2025-06-10T05:10:29.186421-07:00,0.0,10.761799,10761.799 +1734,2025-06-10T05:10:39.954366-07:00,0.0,10.767945,10767.945 +1735,2025-06-10T05:10:50.723602-07:00,0.0,10.769236,10769.236 +1736,2025-06-10T05:11:01.477582-07:00,0.0,10.75398,10753.98 +1737,2025-06-10T05:11:12.241225-07:00,0.0,10.763643,10763.643 +1738,2025-06-10T05:11:23.011520-07:00,0.0,10.770295,10770.295 +1739,2025-06-10T05:11:33.765275-07:00,0.0,10.753755,10753.755 +1740,2025-06-10T05:11:44.528268-07:00,0.0,10.762993,10762.993 +1741,2025-06-10T05:11:55.289459-07:00,0.0,10.761191,10761.191 +1742,2025-06-10T05:12:06.054518-07:00,0.0,10.765059,10765.059 +1743,2025-06-10T05:12:16.811540-07:00,0.0,10.757022,10757.022 +1744,2025-06-10T05:12:27.573390-07:00,0.0,10.76185,10761.85 +1745,2025-06-10T05:12:38.338392-07:00,0.0,10.765002,10765.002 +1746,2025-06-10T05:12:49.099486-07:00,0.0,10.761094,10761.094 +1747,2025-06-10T05:12:59.856478-07:00,0.0,10.756992,10756.992 +1748,2025-06-10T05:13:10.616216-07:00,0.0,10.759738,10759.738 +1749,2025-06-10T05:13:21.379694-07:00,0.0,10.763478,10763.478 +1750,2025-06-10T05:13:32.144584-07:00,0.0,10.76489,10764.89 +1751,2025-06-10T05:13:42.903208-07:00,0.0,10.758624,10758.624 +1752,2025-06-10T05:13:53.659228-07:00,0.0,10.75602,10756.02 +1753,2025-06-10T05:14:04.430556-07:00,0.0,10.771328,10771.328 +1754,2025-06-10T05:14:15.193221-07:00,0.0,10.762665,10762.665 +1755,2025-06-10T05:14:25.952229-07:00,0.0,10.759008,10759.008 +1756,2025-06-10T05:14:36.718313-07:00,0.0,10.766084,10766.084 +1757,2025-06-10T05:14:47.477327-07:00,0.0,10.759014,10759.014 +1758,2025-06-10T05:14:58.241558-07:00,0.0,10.764231,10764.231 +1759,2025-06-10T05:15:08.996224-07:00,0.0,10.754666,10754.666 +1760,2025-06-10T05:15:19.766248-07:00,0.0,10.770024,10770.024 +1761,2025-06-10T05:15:30.528229-07:00,0.0,10.761981,10761.981 +1762,2025-06-10T05:15:41.287227-07:00,0.0,10.758998,10758.998 +1763,2025-06-10T05:15:52.050225-07:00,0.0,10.762998,10762.998 +1764,2025-06-10T05:16:02.818661-07:00,0.0,10.768436,10768.436 +1765,2025-06-10T05:16:13.571336-07:00,0.0,10.752675,10752.675 +1766,2025-06-10T05:16:24.342374-07:00,0.0,10.771038,10771.038 +1767,2025-06-10T05:16:35.102324-07:00,0.0,10.75995,10759.95 +1768,2025-06-10T05:16:45.871227-07:00,0.0,10.768903,10768.903 +1769,2025-06-10T05:16:56.628488-07:00,0.0,10.757261,10757.261 +1770,2025-06-10T05:17:07.389225-07:00,0.0,10.760737,10760.737 +1771,2025-06-10T05:17:18.158871-07:00,0.0,10.769646,10769.646 +1772,2025-06-10T05:17:28.914852-07:00,0.0,10.755981,10755.981 +1773,2025-06-10T05:17:39.684259-07:00,0.0,10.769407,10769.407 +1774,2025-06-10T05:17:50.441523-07:00,0.0,10.757264,10757.264 +1775,2025-06-10T05:18:01.210924-07:00,0.0,10.769401,10769.401 +1776,2025-06-10T05:18:11.967447-07:00,0.0,10.756523,10756.523 +1777,2025-06-10T05:18:22.734514-07:00,0.0,10.767067,10767.067 +1778,2025-06-10T05:18:33.495963-07:00,0.0,10.761449,10761.449 +1779,2025-06-10T05:18:44.260396-07:00,0.0,10.764433,10764.433 +1780,2025-06-10T05:18:55.019276-07:00,0.0,10.75888,10758.88 +1781,2025-06-10T05:19:05.780577-07:00,0.0,10.761301,10761.301 +1782,2025-06-10T05:19:16.538376-07:00,0.0,10.757799,10757.799 +1783,2025-06-10T05:19:27.299229-07:00,0.0,10.760853,10760.853 +1784,2025-06-10T05:19:38.068093-07:00,0.0,10.768864,10768.864 +1785,2025-06-10T05:19:48.817736-07:00,0.0,10.749643,10749.643 +1786,2025-06-10T05:19:59.587698-07:00,0.0,10.769962,10769.962 +1787,2025-06-10T05:20:10.343225-07:00,0.0,10.755527,10755.527 +1788,2025-06-10T05:20:21.101220-07:00,0.0,10.757995,10757.995 +1789,2025-06-10T05:20:31.861366-07:00,0.0,10.760146,10760.146 +1790,2025-06-10T05:20:42.623229-07:00,0.0,10.761863,10761.863 +1791,2025-06-10T05:20:53.378229-07:00,0.0,10.755,10755.0 +1792,2025-06-10T05:21:04.132727-07:00,0.0,10.754498,10754.498 +1793,2025-06-10T05:21:14.896221-07:00,0.0,10.763494,10763.494 +1794,2025-06-10T05:21:25.646229-07:00,0.0,10.750008,10750.008 +1795,2025-06-10T05:21:36.410634-07:00,0.0,10.764405,10764.405 +1796,2025-06-10T05:21:47.165379-07:00,0.0,10.754745,10754.745 +1797,2025-06-10T05:21:57.928479-07:00,0.0,10.7631,10763.1 +1798,2025-06-10T05:22:08.688267-07:00,0.0,10.759788,10759.788 +1799,2025-06-10T05:22:19.445537-07:00,0.0,10.75727,10757.27 +1800,2025-06-10T05:22:30.202501-07:00,0.0,10.756964,10756.964 +1801,2025-06-10T05:22:40.963407-07:00,0.0,10.760906,10760.906 +1802,2025-06-10T05:22:51.718227-07:00,0.0,10.75482,10754.82 +1803,2025-06-10T05:23:02.486545-07:00,0.0,10.768318,10768.318 +1804,2025-06-10T05:23:13.242590-07:00,0.0,10.756045,10756.045 +1805,2025-06-10T05:23:23.997304-07:00,0.0,10.754714,10754.714 +1806,2025-06-10T05:23:34.760226-07:00,0.0,10.762922,10762.922 +1807,2025-06-10T05:23:45.516228-07:00,0.0,10.756002,10756.002 +1808,2025-06-10T05:23:56.270405-07:00,0.0,10.754177,10754.177 +1809,2025-06-10T05:24:07.036225-07:00,0.0,10.76582,10765.82 +1810,2025-06-10T05:24:17.795229-07:00,0.0,10.759004,10759.004 +1811,2025-06-10T05:24:28.549981-07:00,0.0,10.754752,10754.752 +1812,2025-06-10T05:24:39.311260-07:00,0.0,10.761279,10761.279 +1813,2025-06-10T05:24:50.065601-07:00,0.0,10.754341,10754.341 +1814,2025-06-10T05:25:00.821579-07:00,0.0,10.755978,10755.978 +1815,2025-06-10T05:25:11.585936-07:00,0.0,10.764357,10764.357 +1816,2025-06-10T05:25:22.339215-07:00,0.0,10.753279,10753.279 +1817,2025-06-10T05:25:33.099490-07:00,0.0,10.760275,10760.275 +1818,2025-06-10T05:25:43.856476-07:00,0.0,10.756986,10756.986 +1819,2025-06-10T05:25:54.622228-07:00,0.0,10.765752,10765.752 +1820,2025-06-10T05:26:05.379452-07:00,0.0,10.757224,10757.224 +1821,2025-06-10T05:26:16.147788-07:00,0.0,10.768336,10768.336 +1822,2025-06-10T05:26:26.905682-07:00,0.0,10.757894,10757.894 +1823,2025-06-10T05:26:37.665463-07:00,0.0,10.759781,10759.781 +1824,2025-06-10T05:26:48.427292-07:00,0.0,10.761829,10761.829 +1825,2025-06-10T05:26:59.186263-07:00,0.0,10.758971,10758.971 +1826,2025-06-10T05:27:09.950227-07:00,0.0,10.763964,10763.964 +1827,2025-06-10T05:27:20.701548-07:00,0.0,10.751321,10751.321 +1828,2025-06-10T05:27:31.466226-07:00,0.0,10.764678,10764.678 +1829,2025-06-10T05:27:42.226414-07:00,0.0,10.760188,10760.188 +1830,2025-06-10T05:27:52.990605-07:00,0.0,10.764191,10764.191 +1831,2025-06-10T05:28:03.746874-07:00,0.0,10.756269,10756.269 +1832,2025-06-10T05:28:14.515479-07:00,0.0,10.768605,10768.605 +1833,2025-06-10T05:28:25.270261-07:00,0.0,10.754782,10754.782 +1834,2025-06-10T05:28:36.035383-07:00,0.0,10.765122,10765.122 +1835,2025-06-10T05:28:46.799254-07:00,0.0,10.763871,10763.871 +1836,2025-06-10T05:28:57.552918-07:00,0.0,10.753664,10753.664 +1837,2025-06-10T05:29:08.317472-07:00,0.0,10.764554,10764.554 +1838,2025-06-10T05:29:19.079601-07:00,0.0,10.762129,10762.129 +1839,2025-06-10T05:29:29.831232-07:00,0.0,10.751631,10751.631 +1840,2025-06-10T05:29:40.596542-07:00,0.0,10.76531,10765.31 +1841,2025-06-10T05:29:51.353143-07:00,0.0,10.756601,10756.601 +1842,2025-06-10T05:30:02.118293-07:00,0.0,10.76515,10765.15 +1843,2025-06-10T05:30:12.875225-07:00,0.0,10.756932,10756.932 +1844,2025-06-10T05:30:23.629459-07:00,0.0,10.754234,10754.234 +1845,2025-06-10T05:30:34.387227-07:00,0.0,10.757768,10757.768 +1846,2025-06-10T05:30:45.156511-07:00,0.0,10.769284,10769.284 +1847,2025-06-10T05:30:55.909630-07:00,0.0,10.753119,10753.119 +1848,2025-06-10T05:31:06.671625-07:00,0.0,10.761995,10761.995 +1849,2025-06-10T05:31:17.429225-07:00,0.0,10.7576,10757.6 +1850,2025-06-10T05:31:28.187586-07:00,0.0,10.758361,10758.361 +1851,2025-06-10T05:31:38.955362-07:00,0.0,10.767776,10767.776 +1852,2025-06-10T05:31:49.708231-07:00,0.0,10.752869,10752.869 +1853,2025-06-10T05:32:00.470666-07:00,0.0,10.762435,10762.435 +1854,2025-06-10T05:32:11.238625-07:00,0.0,10.767959,10767.959 +1855,2025-06-10T05:32:21.994681-07:00,0.0,10.756056,10756.056 +1856,2025-06-10T05:32:32.758458-07:00,0.0,10.763777,10763.777 +1857,2025-06-10T05:32:43.517765-07:00,0.0,10.759307,10759.307 +1858,2025-06-10T05:32:54.282513-07:00,0.0,10.764748,10764.748 +1859,2025-06-10T05:33:05.046229-07:00,0.0,10.763716,10763.716 +1860,2025-06-10T05:33:15.809225-07:00,0.0,10.762996,10762.996 +1861,2025-06-10T05:33:26.563227-07:00,0.0,10.754002,10754.002 +1862,2025-06-10T05:33:37.331406-07:00,0.0,10.768179,10768.179 +1863,2025-06-10T05:33:48.085950-07:00,0.0,10.754544,10754.544 +1864,2025-06-10T05:33:58.854231-07:00,0.0,10.768281,10768.281 +1865,2025-06-10T05:34:09.606264-07:00,0.0,10.752033,10752.033 +1866,2025-06-10T05:34:20.377497-07:00,0.0,10.771233,10771.233 +1867,2025-06-10T05:34:31.137905-07:00,0.0,10.760408,10760.408 +1868,2025-06-10T05:34:41.896303-07:00,0.0,10.758398,10758.398 +1869,2025-06-10T05:34:52.652371-07:00,0.0,10.756068,10756.068 +1870,2025-06-10T05:35:03.413877-07:00,0.0,10.761506,10761.506 +1871,2025-06-10T05:35:14.184388-07:00,0.0,10.770511,10770.511 +1872,2025-06-10T05:35:24.950781-07:00,0.0,10.766393,10766.393 +1873,2025-06-10T05:35:35.706499-07:00,0.0,10.755718,10755.718 +1874,2025-06-10T05:35:46.472219-07:00,0.0,10.76572,10765.72 +1875,2025-06-10T05:35:57.228225-07:00,0.0,10.756006,10756.006 +1876,2025-06-10T05:36:07.988477-07:00,0.0,10.760252,10760.252 +1877,2025-06-10T05:36:18.740366-07:00,0.0,10.751889,10751.889 +1878,2025-06-10T05:36:29.501464-07:00,0.0,10.761098,10761.098 +1879,2025-06-10T05:36:40.270225-07:00,0.0,10.768761,10768.761 +1880,2025-06-10T05:36:51.021228-07:00,0.0,10.751003,10751.003 +1881,2025-06-10T05:37:01.783490-07:00,0.0,10.762262,10762.262 +1882,2025-06-10T05:37:12.543223-07:00,0.0,10.759733,10759.733 +1883,2025-06-10T05:37:23.300226-07:00,0.0,10.757003,10757.003 +1884,2025-06-10T05:37:34.064426-07:00,0.0,10.7642,10764.2 +1885,2025-06-10T05:37:44.821462-07:00,0.0,10.757036,10757.036 +1886,2025-06-10T05:37:55.586690-07:00,0.0,10.765228,10765.228 +1887,2025-06-10T05:38:06.341645-07:00,0.0,10.754955,10754.955 +1888,2025-06-10T05:38:17.108222-07:00,0.0,10.766577,10766.577 +1889,2025-06-10T05:38:27.868838-07:00,0.0,10.760616,10760.616 +1890,2025-06-10T05:38:38.630230-07:00,0.0,10.761392,10761.392 +1891,2025-06-10T05:38:49.381356-07:00,0.0,10.751126,10751.126 +1892,2025-06-10T05:39:00.148224-07:00,0.0,10.766868,10766.868 +1893,2025-06-10T05:39:10.896227-07:00,0.0,10.748003,10748.003 +1894,2025-06-10T05:39:21.653220-07:00,0.0,10.756993,10756.993 +1895,2025-06-10T05:39:32.412726-07:00,0.0,10.759506,10759.506 +1896,2025-06-10T05:39:43.171233-07:00,0.0,10.758507,10758.507 +1897,2025-06-10T05:39:53.935218-07:00,0.0,10.763985,10763.985 +1898,2025-06-10T05:40:04.687004-07:00,0.0,10.751786,10751.786 +1899,2025-06-10T05:40:15.440688-07:00,0.0,10.753684,10753.684 +1900,2025-06-10T05:40:26.207232-07:00,0.0,10.766544,10766.544 +1901,2025-06-10T05:40:36.961680-07:00,0.0,10.754448,10754.448 +1902,2025-06-10T05:40:47.724225-07:00,0.0,10.762545,10762.545 +1903,2025-06-10T05:40:58.476234-07:00,0.0,10.752009,10752.009 +1904,2025-06-10T05:41:09.248581-07:00,0.0,10.772347,10772.347 +1905,2025-06-10T05:41:19.995625-07:00,0.0,10.747044,10747.044 +1906,2025-06-10T05:41:30.762643-07:00,0.0,10.767018,10767.018 +1907,2025-06-10T05:41:41.519315-07:00,0.0,10.756672,10756.672 +1908,2025-06-10T05:41:52.277408-07:00,0.0,10.758093,10758.093 +1909,2025-06-10T05:42:03.043824-07:00,0.0,10.766416,10766.416 +1910,2025-06-10T05:42:13.801363-07:00,0.0,10.757539,10757.539 +1911,2025-06-10T05:42:24.561474-07:00,0.0,10.760111,10760.111 +1912,2025-06-10T05:42:35.321967-07:00,0.0,10.760493,10760.493 +1913,2025-06-10T05:42:46.077594-07:00,0.0,10.755627,10755.627 +1914,2025-06-10T05:42:56.839226-07:00,0.0,10.761632,10761.632 +1915,2025-06-10T05:43:07.598231-07:00,0.0,10.759005,10759.005 +1916,2025-06-10T05:43:18.368490-07:00,0.0,10.770259,10770.259 +1917,2025-06-10T05:43:29.123299-07:00,0.0,10.754809,10754.809 +1918,2025-06-10T05:43:39.889454-07:00,0.0,10.766155,10766.155 +1919,2025-06-10T05:43:50.641226-07:00,0.0,10.751772,10751.772 +1920,2025-06-10T05:44:01.407527-07:00,0.0,10.766301,10766.301 +1921,2025-06-10T05:44:12.156864-07:00,0.0,10.749337,10749.337 +1922,2025-06-10T05:44:22.917208-07:00,0.0,10.760344,10760.344 +1923,2025-06-10T05:44:33.675325-07:00,0.0,10.758117,10758.117 +1924,2025-06-10T05:44:44.432221-07:00,0.0,10.756896,10756.896 +1925,2025-06-10T05:44:55.192270-07:00,0.0,10.760049,10760.049 +1926,2025-06-10T05:45:05.952413-07:00,0.0,10.760143,10760.143 +1927,2025-06-10T05:45:16.710232-07:00,0.0,10.757819,10757.819 +1928,2025-06-10T05:45:27.479330-07:00,0.0,10.769098,10769.098 +1929,2025-06-10T05:45:38.232828-07:00,0.0,10.753498,10753.498 +1930,2025-06-10T05:45:48.987199-07:00,0.0,10.754371,10754.371 +1931,2025-06-10T05:45:59.750573-07:00,0.0,10.763374,10763.374 +1932,2025-06-10T05:46:10.505347-07:00,0.0,10.754774,10754.774 +1933,2025-06-10T05:46:21.259486-07:00,0.0,10.754139,10754.139 +1934,2025-06-10T05:46:32.024036-07:00,0.0,10.76455,10764.55 +1935,2025-06-10T05:46:42.782567-07:00,0.0,10.758531,10758.531 +1936,2025-06-10T05:46:53.541228-07:00,0.0,10.758661,10758.661 +1937,2025-06-10T05:47:04.300411-07:00,0.0,10.759183,10759.183 +1938,2025-06-10T05:47:15.053386-07:00,0.0,10.752975,10752.975 +1939,2025-06-10T05:47:25.806469-07:00,0.0,10.753083,10753.083 +1940,2025-06-10T05:47:36.567658-07:00,0.0,10.761189,10761.189 +1941,2025-06-10T05:47:47.321504-07:00,0.0,10.753846,10753.846 +1942,2025-06-10T05:47:58.087375-07:00,0.0,10.765871,10765.871 +1943,2025-06-10T05:48:08.844221-07:00,0.0,10.756846,10756.846 +1944,2025-06-10T05:48:19.596525-07:00,0.0,10.752304,10752.304 +1945,2025-06-10T05:48:30.357624-07:00,0.0,10.761099,10761.099 +1946,2025-06-10T05:48:41.116496-07:00,0.0,10.758872,10758.872 +1947,2025-06-10T05:48:51.876276-07:00,0.0,10.75978,10759.78 +1948,2025-06-10T05:49:02.628219-07:00,0.0,10.751943,10751.943 +1949,2025-06-10T05:49:13.386229-07:00,0.0,10.75801,10758.01 +1950,2025-06-10T05:49:24.142225-07:00,0.0,10.755996,10755.996 +1951,2025-06-10T05:49:34.911507-07:00,0.0,10.769282,10769.282 +1952,2025-06-10T05:49:45.669950-07:00,0.0,10.758443,10758.443 +1953,2025-06-10T05:49:56.426225-07:00,0.0,10.756275,10756.275 +1954,2025-06-10T05:50:07.183423-07:00,0.0,10.757198,10757.198 +1955,2025-06-10T05:50:17.944465-07:00,0.0,10.761042,10761.042 +1956,2025-06-10T05:50:28.700065-07:00,0.0,10.7556,10755.6 +1957,2025-06-10T05:50:39.459229-07:00,0.0,10.759164,10759.164 +1958,2025-06-10T05:50:50.218225-07:00,0.0,10.758996,10758.996 +1959,2025-06-10T05:51:00.983736-07:00,0.0,10.765511,10765.511 +1960,2025-06-10T05:51:11.737591-07:00,0.0,10.753855,10753.855 +1961,2025-06-10T05:51:22.499229-07:00,0.0,10.761638,10761.638 +1962,2025-06-10T05:51:33.256206-07:00,0.0,10.756977,10756.977 +1963,2025-06-10T05:51:43.981338-07:00,0.0,10.725132,10725.132 +1964,2025-06-10T05:51:54.746316-07:00,0.0,10.764978,10764.978 +1965,2025-06-10T05:52:05.502937-07:00,0.0,10.756621,10756.621 +1966,2025-06-10T05:52:16.256195-07:00,0.0,10.753258,10753.258 +1967,2025-06-10T05:52:27.020935-07:00,0.0,10.76474,10764.74 +1968,2025-06-10T05:52:37.777940-07:00,0.0,10.757005,10757.005 +1969,2025-06-10T05:52:48.531972-07:00,0.0,10.754032,10754.032 +1970,2025-06-10T05:52:59.299167-07:00,0.0,10.767195,10767.195 +1971,2025-06-10T05:53:10.061199-07:00,0.0,10.762032,10762.032 +1972,2025-06-10T05:53:20.821978-07:00,0.0,10.760779,10760.779 +1973,2025-06-10T05:53:31.583183-07:00,0.0,10.761205,10761.205 +1974,2025-06-10T05:53:42.334950-07:00,0.0,10.751767,10751.767 +1975,2025-06-10T05:53:53.104929-07:00,0.0,10.769979,10769.979 +1976,2025-06-10T05:54:03.862137-07:00,0.0,10.757208,10757.208 +1977,2025-06-10T05:54:14.620274-07:00,0.0,10.758137,10758.137 +1978,2025-06-10T05:54:25.385945-07:00,0.0,10.765671,10765.671 +1979,2025-06-10T05:54:36.144947-07:00,0.0,10.759002,10759.002 +1980,2025-06-10T05:54:46.911485-07:00,0.0,10.766538,10766.538 +1981,2025-06-10T05:54:57.672201-07:00,0.0,10.760716,10760.716 +1982,2025-06-10T05:55:08.429098-07:00,0.0,10.756897,10756.897 +1983,2025-06-10T05:55:19.195937-07:00,0.0,10.766839,10766.839 +1984,2025-06-10T05:55:29.954717-07:00,0.0,10.75878,10758.78 +1985,2025-06-10T05:55:40.714270-07:00,0.0,10.759553,10759.553 +1986,2025-06-10T05:55:51.469925-07:00,0.0,10.755655,10755.655 +1987,2025-06-10T05:56:02.230921-07:00,0.0,10.760996,10760.996 +1988,2025-06-10T05:56:12.997534-07:00,0.0,10.766613,10766.613 +1989,2025-06-10T05:56:23.751497-07:00,0.0,10.753963,10753.963 +1990,2025-06-10T05:56:34.518932-07:00,0.0,10.767435,10767.435 +1991,2025-06-10T05:56:45.276939-07:00,0.0,10.758007,10758.007 +1992,2025-06-10T05:56:56.045083-07:00,0.0,10.768144,10768.144 +1993,2025-06-10T05:57:06.809576-07:00,0.0,10.764493,10764.493 +1994,2025-06-10T05:57:17.556182-07:00,0.0,10.746606,10746.606 +1995,2025-06-10T05:57:28.314935-07:00,0.0,10.758753,10758.753 +1996,2025-06-10T05:57:39.076960-07:00,0.0,10.762025,10762.025 +1997,2025-06-10T05:57:49.839272-07:00,0.0,10.762312,10762.312 +1998,2025-06-10T05:58:00.602126-07:00,0.0,10.762854,10762.854 +1999,2025-06-10T05:58:11.357182-07:00,0.0,10.755056,10755.056 +2000,2025-06-10T05:58:22.123778-07:00,0.0,10.766596,10766.596 +2001,2025-06-10T05:58:32.882343-07:00,0.0,10.758565,10758.565 +2002,2025-06-10T05:58:43.640914-07:00,0.0,10.758571,10758.571 +2003,2025-06-10T05:58:54.407939-07:00,0.0,10.767025,10767.025 +2004,2025-06-10T05:59:05.162769-07:00,0.0,10.75483,10754.83 +2005,2025-06-10T05:59:15.923960-07:00,0.0,10.761191,10761.191 +2006,2025-06-10T05:59:26.686939-07:00,0.0,10.762979,10762.979 +2007,2025-06-10T05:59:37.441235-07:00,0.0,10.754296,10754.296 +2008,2025-06-10T05:59:48.209248-07:00,0.0,10.768013,10768.013 +2009,2025-06-10T05:59:58.967585-07:00,0.0,10.758337,10758.337 +2010,2025-06-10T06:00:09.730979-07:00,0.0,10.763394,10763.394 +2011,2025-06-10T06:00:20.487939-07:00,0.0,10.75696,10756.96 +2012,2025-06-10T06:00:31.251542-07:00,0.0,10.763603,10763.603 +2013,2025-06-10T06:00:42.015171-07:00,0.0,10.763629,10763.629 +2014,2025-06-10T06:00:52.780927-07:00,0.0,10.765756,10765.756 +2015,2025-06-10T06:01:03.541223-07:00,0.0,10.760296,10760.296 +2016,2025-06-10T06:01:14.305749-07:00,0.0,10.764526,10764.526 +2017,2025-06-10T06:01:25.060062-07:00,0.0,10.754313,10754.313 +2018,2025-06-10T06:01:35.823956-07:00,0.0,10.763894,10763.894 +2019,2025-06-10T06:01:46.580675-07:00,0.0,10.756719,10756.719 +2020,2025-06-10T06:01:57.349939-07:00,0.0,10.769264,10769.264 +2021,2025-06-10T06:02:08.107939-07:00,0.0,10.758,10758.0 +2022,2025-06-10T06:02:18.863908-07:00,0.0,10.755969,10755.969 +2023,2025-06-10T06:02:29.624979-07:00,0.0,10.761071,10761.071 +2024,2025-06-10T06:02:40.389250-07:00,0.0,10.764271,10764.271 +2025,2025-06-10T06:02:51.141268-07:00,0.0,10.752018,10752.018 +2026,2025-06-10T06:03:01.907932-07:00,0.0,10.766664,10766.664 +2027,2025-06-10T06:03:12.670521-07:00,0.0,10.762589,10762.589 +2028,2025-06-10T06:03:23.425272-07:00,0.0,10.754751,10754.751 +2029,2025-06-10T06:03:34.191932-07:00,0.0,10.76666,10766.66 +2030,2025-06-10T06:03:44.945360-07:00,0.0,10.753428,10753.428 +2031,2025-06-10T06:03:55.697281-07:00,0.0,10.751921,10751.921 +2032,2025-06-10T06:04:06.455089-07:00,0.0,10.757808,10757.808 +2033,2025-06-10T06:04:17.215203-07:00,0.0,10.760114,10760.114 +2034,2025-06-10T06:04:27.978935-07:00,0.0,10.763732,10763.732 +2035,2025-06-10T06:04:38.738218-07:00,0.0,10.759283,10759.283 +2036,2025-06-10T06:04:49.488939-07:00,0.0,10.750721,10750.721 +2037,2025-06-10T06:05:00.258293-07:00,0.0,10.769354,10769.354 +2038,2025-06-10T06:05:11.011270-07:00,0.0,10.752977,10752.977 +2039,2025-06-10T06:05:21.770406-07:00,0.0,10.759136,10759.136 +2040,2025-06-10T06:05:32.538930-07:00,0.0,10.768524,10768.524 +2041,2025-06-10T06:05:43.298247-07:00,0.0,10.759317,10759.317 +2042,2025-06-10T06:05:54.053281-07:00,0.0,10.755034,10755.034 +2043,2025-06-10T06:06:04.819986-07:00,0.0,10.766705,10766.705 +2044,2025-06-10T06:06:15.588497-07:00,0.0,10.768511,10768.511 +2045,2025-06-10T06:06:26.342276-07:00,0.0,10.753779,10753.779 +2046,2025-06-10T06:06:37.095227-07:00,0.0,10.752951,10752.951 +2047,2025-06-10T06:06:47.858929-07:00,0.0,10.763702,10763.702 +2048,2025-06-10T06:06:58.617959-07:00,0.0,10.75903,10759.03 +2049,2025-06-10T06:07:09.380299-07:00,0.0,10.76234,10762.34 +2050,2025-06-10T06:07:20.137324-07:00,0.0,10.757025,10757.025 +2051,2025-06-10T06:07:30.889493-07:00,0.0,10.752169,10752.169 +2052,2025-06-10T06:07:41.657190-07:00,0.0,10.767697,10767.697 +2053,2025-06-10T06:07:52.417126-07:00,0.0,10.759936,10759.936 +2054,2025-06-10T06:08:03.172340-07:00,0.0,10.755214,10755.214 +2055,2025-06-10T06:08:13.932070-07:00,0.0,10.75973,10759.73 +2056,2025-06-10T06:08:24.698937-07:00,0.0,10.766867,10766.867 +2057,2025-06-10T06:08:35.458166-07:00,0.0,10.759229,10759.229 +2058,2025-06-10T06:08:46.220413-07:00,0.0,10.762247,10762.247 +2059,2025-06-10T06:08:56.976937-07:00,0.0,10.756524,10756.524 +2060,2025-06-10T06:09:07.740936-07:00,0.0,10.763999,10763.999 +2061,2025-06-10T06:09:18.495918-07:00,0.0,10.754982,10754.982 +2062,2025-06-10T06:09:29.259525-07:00,0.0,10.763607,10763.607 +2063,2025-06-10T06:09:40.016084-07:00,0.0,10.756559,10756.559 +2064,2025-06-10T06:09:50.780939-07:00,0.0,10.764855,10764.855 +2065,2025-06-10T06:10:01.539930-07:00,0.0,10.758991,10758.991 +2066,2025-06-10T06:10:12.303483-07:00,0.0,10.763553,10763.553 +2067,2025-06-10T06:10:23.054317-07:00,0.0,10.750834,10750.834 +2068,2025-06-10T06:10:33.817976-07:00,0.0,10.763659,10763.659 +2069,2025-06-10T06:10:44.571916-07:00,0.0,10.75394,10753.94 +2070,2025-06-10T06:10:55.326194-07:00,0.0,10.754278,10754.278 +2071,2025-06-10T06:11:06.088247-07:00,0.0,10.762053,10762.053 +2072,2025-06-10T06:11:16.849937-07:00,0.0,10.76169,10761.69 +2073,2025-06-10T06:11:27.605281-07:00,0.0,10.755344,10755.344 +2074,2025-06-10T06:11:38.371925-07:00,0.0,10.766644,10766.644 +2075,2025-06-10T06:11:49.130534-07:00,0.0,10.758609,10758.609 +2076,2025-06-10T06:11:59.888374-07:00,0.0,10.75784,10757.84 +2077,2025-06-10T06:12:10.653939-07:00,0.0,10.765565,10765.565 +2078,2025-06-10T06:12:21.414996-07:00,0.0,10.761057,10761.057 +2079,2025-06-10T06:12:32.174180-07:00,0.0,10.759184,10759.184 +2080,2025-06-10T06:12:42.929017-07:00,0.0,10.754837,10754.837 +2081,2025-06-10T06:12:53.693937-07:00,0.0,10.76492,10764.92 +2082,2025-06-10T06:13:04.455185-07:00,0.0,10.761248,10761.248 +2083,2025-06-10T06:13:15.217285-07:00,0.0,10.7621,10762.1 +2084,2025-06-10T06:13:25.977225-07:00,0.0,10.75994,10759.94 +2085,2025-06-10T06:13:36.739934-07:00,0.0,10.762709,10762.709 +2086,2025-06-10T06:13:47.502157-07:00,0.0,10.762223,10762.223 +2087,2025-06-10T06:13:58.260227-07:00,0.0,10.75807,10758.07 +2088,2025-06-10T06:14:09.025936-07:00,0.0,10.765709,10765.709 +2089,2025-06-10T06:14:19.786938-07:00,0.0,10.761002,10761.002 +2090,2025-06-10T06:14:30.542935-07:00,0.0,10.755997,10755.997 +2091,2025-06-10T06:14:41.304059-07:00,0.0,10.761124,10761.124 +2092,2025-06-10T06:14:52.066932-07:00,0.0,10.762873,10762.873 +2093,2025-06-10T06:15:02.830934-07:00,0.0,10.764002,10764.002 +2094,2025-06-10T06:15:13.598224-07:00,0.0,10.76729,10767.29 +2095,2025-06-10T06:15:24.356933-07:00,0.0,10.758709,10758.709 +2096,2025-06-10T06:15:35.123287-07:00,0.0,10.766354,10766.354 +2097,2025-06-10T06:15:45.893197-07:00,0.0,10.76991,10769.91 +2098,2025-06-10T06:15:56.646120-07:00,0.0,10.752923,10752.923 +2099,2025-06-10T06:16:07.405101-07:00,0.0,10.758981,10758.981 +2100,2025-06-10T06:16:18.175971-07:00,0.0,10.77087,10770.87 +2101,2025-06-10T06:16:28.941717-07:00,0.0,10.765746,10765.746 +2102,2025-06-10T06:16:39.703240-07:00,0.0,10.761523,10761.523 +2103,2025-06-10T06:16:50.462935-07:00,0.0,10.759695,10759.695 +2104,2025-06-10T06:17:01.216940-07:00,0.0,10.754005,10754.005 +2105,2025-06-10T06:17:11.982479-07:00,0.0,10.765539,10765.539 +2106,2025-06-10T06:17:22.742939-07:00,0.0,10.76046,10760.46 +2107,2025-06-10T06:17:33.502945-07:00,0.0,10.760006,10760.006 +2108,2025-06-10T06:17:44.271227-07:00,0.0,10.768282,10768.282 +2109,2025-06-10T06:17:55.028089-07:00,0.0,10.756862,10756.862 +2110,2025-06-10T06:18:05.795937-07:00,0.0,10.767848,10767.848 +2111,2025-06-10T06:18:16.554264-07:00,0.0,10.758327,10758.327 +2112,2025-06-10T06:18:27.317058-07:00,0.0,10.762794,10762.794 +2113,2025-06-10T06:18:38.072525-07:00,0.0,10.755467,10755.467 +2114,2025-06-10T06:18:48.835916-07:00,0.0,10.763391,10763.391 +2115,2025-06-10T06:18:59.597697-07:00,0.0,10.761781,10761.781 +2116,2025-06-10T06:19:10.363462-07:00,0.0,10.765765,10765.765 +2117,2025-06-10T06:19:21.122900-07:00,0.0,10.759438,10759.438 +2118,2025-06-10T06:19:31.889069-07:00,0.0,10.766169,10766.169 +2119,2025-06-10T06:19:42.645307-07:00,0.0,10.756238,10756.238 +2120,2025-06-10T06:19:53.408314-07:00,0.0,10.763007,10763.007 +2121,2025-06-10T06:20:04.173939-07:00,0.0,10.765625,10765.625 +2122,2025-06-10T06:20:14.932987-07:00,0.0,10.759048,10759.048 +2123,2025-06-10T06:20:25.693339-07:00,0.0,10.760352,10760.352 +2124,2025-06-10T06:20:36.449204-07:00,0.0,10.755865,10755.865 +2125,2025-06-10T06:20:47.217941-07:00,0.0,10.768737,10768.737 +2126,2025-06-10T06:20:57.974178-07:00,0.0,10.756237,10756.237 +2127,2025-06-10T06:21:08.740287-07:00,0.0,10.766109,10766.109 +2128,2025-06-10T06:21:19.499990-07:00,0.0,10.759703,10759.703 +2129,2025-06-10T06:21:30.258939-07:00,0.0,10.758949,10758.949 +2130,2025-06-10T06:21:41.025337-07:00,0.0,10.766398,10766.398 +2131,2025-06-10T06:21:51.784938-07:00,0.0,10.759601,10759.601 +2132,2025-06-10T06:22:02.539939-07:00,0.0,10.755001,10755.001 +2133,2025-06-10T06:22:13.301233-07:00,0.0,10.761294,10761.294 +2134,2025-06-10T06:22:24.061075-07:00,0.0,10.759842,10759.842 +2135,2025-06-10T06:22:34.819124-07:00,0.0,10.758049,10758.049 +2136,2025-06-10T06:22:45.587078-07:00,0.0,10.767954,10767.954 +2137,2025-06-10T06:22:56.347937-07:00,0.0,10.760859,10760.859 +2138,2025-06-10T06:23:07.109291-07:00,0.0,10.761354,10761.354 +2139,2025-06-10T06:23:17.868933-07:00,0.0,10.759642,10759.642 +2140,2025-06-10T06:23:28.627182-07:00,0.0,10.758249,10758.249 +2141,2025-06-10T06:23:39.388942-07:00,0.0,10.76176,10761.76 +2142,2025-06-10T06:23:50.148176-07:00,0.0,10.759234,10759.234 +2143,2025-06-10T06:24:00.910332-07:00,0.0,10.762156,10762.156 +2144,2025-06-10T06:24:11.669927-07:00,0.0,10.759595,10759.595 +2145,2025-06-10T06:24:22.440087-07:00,0.0,10.77016,10770.16 +2146,2025-06-10T06:24:33.201256-07:00,0.0,10.761169,10761.169 +2147,2025-06-10T06:24:43.958914-07:00,0.0,10.757658,10757.658 +2148,2025-06-10T06:24:54.713940-07:00,0.0,10.755026,10755.026 +2149,2025-06-10T06:25:05.467147-07:00,0.0,10.753207,10753.207 +2150,2025-06-10T06:25:16.228935-07:00,0.0,10.761788,10761.788 +2151,2025-06-10T06:25:26.991980-07:00,0.0,10.763045,10763.045 +2152,2025-06-10T06:25:37.756936-07:00,0.0,10.764956,10764.956 +2153,2025-06-10T06:25:48.515920-07:00,0.0,10.758984,10758.984 +2154,2025-06-10T06:25:59.279781-07:00,0.0,10.763861,10763.861 +2155,2025-06-10T06:26:10.040172-07:00,0.0,10.760391,10760.391 +2156,2025-06-10T06:26:20.798464-07:00,0.0,10.758292,10758.292 +2157,2025-06-10T06:26:31.549929-07:00,0.0,10.751465,10751.465 +2158,2025-06-10T06:26:42.321171-07:00,0.0,10.771242,10771.242 +2159,2025-06-10T06:26:53.076450-07:00,0.0,10.755279,10755.279 +2160,2025-06-10T06:27:03.839922-07:00,0.0,10.763472,10763.472 +2161,2025-06-10T06:27:14.595963-07:00,0.0,10.756041,10756.041 +2162,2025-06-10T06:27:25.355092-07:00,0.0,10.759129,10759.129 +2163,2025-06-10T06:27:36.116218-07:00,0.0,10.761126,10761.126 +2164,2025-06-10T06:27:46.880935-07:00,0.0,10.764717,10764.717 +2165,2025-06-10T06:27:57.651158-07:00,0.0,10.770223,10770.223 +2166,2025-06-10T06:28:08.408224-07:00,0.0,10.757066,10757.066 +2167,2025-06-10T06:28:19.169428-07:00,0.0,10.761204,10761.204 +2168,2025-06-10T06:28:29.935933-07:00,0.0,10.766505,10766.505 +2169,2025-06-10T06:28:40.689981-07:00,0.0,10.754048,10754.048 +2170,2025-06-10T06:28:51.452497-07:00,0.0,10.762516,10762.516 +2171,2025-06-10T06:29:02.213205-07:00,0.0,10.760708,10760.708 +2172,2025-06-10T06:29:12.981183-07:00,0.0,10.767978,10767.978 +2173,2025-06-10T06:29:23.736935-07:00,0.0,10.755752,10755.752 +2174,2025-06-10T06:29:34.495250-07:00,0.0,10.758315,10758.315 +2175,2025-06-10T06:29:45.261933-07:00,0.0,10.766683,10766.683 +2176,2025-06-10T06:29:56.018938-07:00,0.0,10.757005,10757.005 +2177,2025-06-10T06:30:06.778306-07:00,0.0,10.759368,10759.368 +2178,2025-06-10T06:30:17.534313-07:00,0.0,10.756007,10756.007 +2179,2025-06-10T06:30:28.299925-07:00,0.0,10.765612,10765.612 +2180,2025-06-10T06:30:39.055179-07:00,0.0,10.755254,10755.254 +2181,2025-06-10T06:30:49.824983-07:00,0.0,10.769804,10769.804 +2182,2025-06-10T06:31:00.581294-07:00,0.0,10.756311,10756.311 +2183,2025-06-10T06:31:11.346174-07:00,0.0,10.76488,10764.88 +2184,2025-06-10T06:31:22.102937-07:00,0.0,10.756763,10756.763 +2185,2025-06-10T06:31:32.869571-07:00,0.0,10.766634,10766.634 +2186,2025-06-10T06:31:43.620233-07:00,0.0,10.750662,10750.662 +2187,2025-06-10T06:31:54.388831-07:00,0.0,10.768598,10768.598 +2188,2025-06-10T06:32:05.140935-07:00,0.0,10.752104,10752.104 +2189,2025-06-10T06:32:15.901931-07:00,0.0,10.760996,10760.996 +2190,2025-06-10T06:32:26.661031-07:00,0.0,10.7591,10759.1 +2191,2025-06-10T06:32:37.416360-07:00,0.0,10.755329,10755.329 +2192,2025-06-10T06:32:48.177917-07:00,0.0,10.761557,10761.557 +2193,2025-06-10T06:32:58.942934-07:00,0.0,10.765017,10765.017 +2194,2025-06-10T06:33:09.709218-07:00,0.0,10.766284,10766.284 +2195,2025-06-10T06:33:20.468193-07:00,0.0,10.758975,10758.975 +2196,2025-06-10T06:33:31.232712-07:00,0.0,10.764519,10764.519 +2197,2025-06-10T06:33:41.995924-07:00,0.0,10.763212,10763.212 +2198,2025-06-10T06:33:52.745279-07:00,0.0,10.749355,10749.355 +2199,2025-06-10T06:34:03.506302-07:00,0.0,10.761023,10761.023 +2200,2025-06-10T06:34:14.269373-07:00,0.0,10.763071,10763.071 +2201,2025-06-10T06:34:25.033267-07:00,0.0,10.763894,10763.894 +2202,2025-06-10T06:34:35.791287-07:00,0.0,10.75802,10758.02 +2203,2025-06-10T06:34:46.553935-07:00,0.0,10.762648,10762.648 +2204,2025-06-10T06:34:57.309939-07:00,0.0,10.756004,10756.004 +2205,2025-06-10T06:35:08.070158-07:00,0.0,10.760219,10760.219 +2206,2025-06-10T06:35:18.836305-07:00,0.0,10.766147,10766.147 +2207,2025-06-10T06:35:29.598291-07:00,0.0,10.761986,10761.986 +2208,2025-06-10T06:35:40.356927-07:00,0.0,10.758636,10758.636 +2209,2025-06-10T06:35:51.116965-07:00,0.0,10.760038,10760.038 +2210,2025-06-10T06:36:01.878577-07:00,0.0,10.761612,10761.612 +2211,2025-06-10T06:36:12.637939-07:00,0.0,10.759362,10759.362 +2212,2025-06-10T06:36:23.392937-07:00,0.0,10.754998,10754.998 +2213,2025-06-10T06:36:34.149181-07:00,0.0,10.756244,10756.244 +2214,2025-06-10T06:36:44.913839-07:00,0.0,10.764658,10764.658 +2215,2025-06-10T06:36:55.676564-07:00,0.0,10.762725,10762.725 +2216,2025-06-10T06:37:06.433937-07:00,0.0,10.757373,10757.373 +2217,2025-06-10T06:37:17.196281-07:00,0.0,10.762344,10762.344 +2218,2025-06-10T06:37:27.948972-07:00,0.0,10.752691,10752.691 +2219,2025-06-10T06:37:38.715135-07:00,0.0,10.766163,10766.163 +2220,2025-06-10T06:37:49.474256-07:00,0.0,10.759121,10759.121 +2221,2025-06-10T06:38:00.227150-07:00,0.0,10.752894,10752.894 +2222,2025-06-10T06:38:10.996617-07:00,0.0,10.769467,10769.467 +2223,2025-06-10T06:38:21.753986-07:00,0.0,10.757369,10757.369 +2224,2025-06-10T06:38:32.512362-07:00,0.0,10.758376,10758.376 +2225,2025-06-10T06:38:43.272982-07:00,0.0,10.76062,10760.62 +2226,2025-06-10T06:38:54.036517-07:00,0.0,10.763535,10763.535 +2227,2025-06-10T06:39:04.789312-07:00,0.0,10.752795,10752.795 +2228,2025-06-10T06:39:15.552189-07:00,0.0,10.762877,10762.877 +2229,2025-06-10T06:39:26.306935-07:00,0.0,10.754746,10754.746 +2230,2025-06-10T06:39:37.071121-07:00,0.0,10.764186,10764.186 +2231,2025-06-10T06:39:47.830619-07:00,0.0,10.759498,10759.498 +2232,2025-06-10T06:39:58.593306-07:00,0.0,10.762687,10762.687 +2233,2025-06-10T06:40:09.349416-07:00,0.0,10.75611,10756.11 +2234,2025-06-10T06:40:20.112933-07:00,0.0,10.763517,10763.517 +2235,2025-06-10T06:40:30.865967-07:00,0.0,10.753034,10753.034 +2236,2025-06-10T06:40:41.632927-07:00,0.0,10.76696,10766.96 +2237,2025-06-10T06:40:52.383937-07:00,0.0,10.75101,10751.01 +2238,2025-06-10T06:41:03.153150-07:00,0.0,10.769213,10769.213 +2239,2025-06-10T06:41:13.914579-07:00,0.0,10.761429,10761.429 +2240,2025-06-10T06:41:24.666232-07:00,0.0,10.751653,10751.653 +2241,2025-06-10T06:41:35.422510-07:00,0.0,10.756278,10756.278 +2242,2025-06-10T06:41:46.190940-07:00,0.0,10.76843,10768.43 +2243,2025-06-10T06:41:56.944933-07:00,0.0,10.753993,10753.993 +2244,2025-06-10T06:42:07.708232-07:00,0.0,10.763299,10763.299 +2245,2025-06-10T06:42:18.474970-07:00,0.0,10.766738,10766.738 +2246,2025-06-10T06:42:29.227516-07:00,0.0,10.752546,10752.546 +2247,2025-06-10T06:42:39.986939-07:00,0.0,10.759423,10759.423 +2248,2025-06-10T06:42:50.745685-07:00,0.0,10.758746,10758.746 +2249,2025-06-10T06:43:01.504296-07:00,0.0,10.758611,10758.611 +2250,2025-06-10T06:43:12.266637-07:00,0.0,10.762341,10762.341 +2251,2025-06-10T06:43:23.038709-07:00,0.0,10.772072,10772.072 +2252,2025-06-10T06:43:33.796160-07:00,0.0,10.757451,10757.451 +2253,2025-06-10T06:43:44.560923-07:00,0.0,10.764763,10764.763 +2254,2025-06-10T06:43:55.323937-07:00,0.0,10.763014,10763.014 +2255,2025-06-10T06:44:06.081176-07:00,0.0,10.757239,10757.239 +2256,2025-06-10T06:44:16.843303-07:00,0.0,10.762127,10762.127 +2257,2025-06-10T06:44:27.601939-07:00,0.0,10.758636,10758.636 +2258,2025-06-10T06:44:38.373225-07:00,0.0,10.771286,10771.286 +2259,2025-06-10T06:44:49.133217-07:00,0.0,10.759992,10759.992 +2260,2025-06-10T06:44:59.886935-07:00,0.0,10.753718,10753.718 +2261,2025-06-10T06:45:10.648939-07:00,0.0,10.762004,10762.004 +2262,2025-06-10T06:45:21.408179-07:00,0.0,10.75924,10759.24 +2263,2025-06-10T06:45:32.171308-07:00,0.0,10.763129,10763.129 +2264,2025-06-10T06:45:42.938394-07:00,0.0,10.767086,10767.086 +2265,2025-06-10T06:45:53.691289-07:00,0.0,10.752895,10752.895 +2266,2025-06-10T06:46:04.446016-07:00,0.0,10.754727,10754.727 +2267,2025-06-10T06:46:15.215272-07:00,0.0,10.769256,10769.256 +2268,2025-06-10T06:46:25.970964-07:00,0.0,10.755692,10755.692 +2269,2025-06-10T06:46:36.731935-07:00,0.0,10.760971,10760.971 +2270,2025-06-10T06:46:47.486939-07:00,0.0,10.755004,10755.004 +2271,2025-06-10T06:46:58.245940-07:00,0.0,10.759001,10759.001 +2272,2025-06-10T06:47:09.011377-07:00,0.0,10.765437,10765.437 +2273,2025-06-10T06:47:19.768357-07:00,0.0,10.75698,10756.98 +2274,2025-06-10T06:47:30.530936-07:00,0.0,10.762579,10762.579 +2275,2025-06-10T06:47:41.294410-07:00,0.0,10.763474,10763.474 +2276,2025-06-10T06:47:52.055911-07:00,0.0,10.761501,10761.501 +2277,2025-06-10T06:48:02.819939-07:00,0.0,10.764028,10764.028 +2278,2025-06-10T06:48:13.585313-07:00,0.0,10.765374,10765.374 +2279,2025-06-10T06:48:24.344806-07:00,0.0,10.759493,10759.493 +2280,2025-06-10T06:48:35.109186-07:00,0.0,10.76438,10764.38 +2281,2025-06-10T06:48:45.878961-07:00,0.0,10.769775,10769.775 +2282,2025-06-10T06:48:56.637216-07:00,0.0,10.758255,10758.255 +2283,2025-06-10T06:49:07.396937-07:00,0.0,10.759721,10759.721 +2284,2025-06-10T06:49:18.166963-07:00,0.0,10.770026,10770.026 +2285,2025-06-10T06:49:28.931207-07:00,0.0,10.764244,10764.244 +2286,2025-06-10T06:49:39.697106-07:00,0.0,10.765899,10765.899 +2287,2025-06-10T06:49:50.459974-07:00,0.0,10.762868,10762.868 +2288,2025-06-10T06:50:01.228223-07:00,0.0,10.768249,10768.249 +2289,2025-06-10T06:50:11.993084-07:00,0.0,10.764861,10764.861 +2290,2025-06-10T06:50:22.755032-07:00,0.0,10.761948,10761.948 +2291,2025-06-10T06:50:33.518248-07:00,0.0,10.763216,10763.216 +2292,2025-06-10T06:50:44.275380-07:00,0.0,10.757132,10757.132 +2293,2025-06-10T06:50:55.041451-07:00,0.0,10.766071,10766.071 +2294,2025-06-10T06:51:05.800028-07:00,0.0,10.758577,10758.577 +2295,2025-06-10T06:51:16.566151-07:00,0.0,10.766123,10766.123 +2296,2025-06-10T06:51:27.328935-07:00,0.0,10.762784,10762.784 +2297,2025-06-10T06:51:38.086889-07:00,0.0,10.757954,10757.954 +2298,2025-06-10T06:51:48.850888-07:00,0.0,10.763999,10763.999 +2299,2025-06-10T06:51:59.610189-07:00,0.0,10.759301,10759.301 +2300,2025-06-10T06:52:10.368401-07:00,0.0,10.758212,10758.212 +2301,2025-06-10T06:52:21.138448-07:00,0.0,10.770047,10770.047 +2302,2025-06-10T06:52:31.892242-07:00,0.0,10.753794,10753.794 +2303,2025-06-10T06:52:42.663403-07:00,0.0,10.771161,10771.161 +2304,2025-06-10T06:52:53.419557-07:00,0.0,10.756154,10756.154 +2305,2025-06-10T06:53:04.181645-07:00,0.0,10.762088,10762.088 +2306,2025-06-10T06:53:14.948798-07:00,0.0,10.767153,10767.153 +2307,2025-06-10T06:53:25.708651-07:00,0.0,10.759853,10759.853 +2308,2025-06-10T06:53:36.470402-07:00,0.0,10.761751,10761.751 +2309,2025-06-10T06:53:47.234737-07:00,0.0,10.764335,10764.335 +2310,2025-06-10T06:53:57.989404-07:00,0.0,10.754667,10754.667 +2311,2025-06-10T06:54:08.749590-07:00,0.0,10.760186,10760.186 +2312,2025-06-10T06:54:19.506551-07:00,0.0,10.756961,10756.961 +2313,2025-06-10T06:54:30.264402-07:00,0.0,10.757851,10757.851 +2314,2025-06-10T06:54:41.029842-07:00,0.0,10.76544,10765.44 +2315,2025-06-10T06:54:51.783939-07:00,0.0,10.754097,10754.097 +2316,2025-06-10T06:55:02.543589-07:00,0.0,10.75965,10759.65 +2317,2025-06-10T06:55:13.301571-07:00,0.0,10.757982,10757.982 +2318,2025-06-10T06:55:24.063676-07:00,0.0,10.762105,10762.105 +2319,2025-06-10T06:55:34.824399-07:00,0.0,10.760723,10760.723 +2320,2025-06-10T06:55:45.583803-07:00,0.0,10.759404,10759.404 +2321,2025-06-10T06:55:56.344421-07:00,0.0,10.760618,10760.618 +2322,2025-06-10T06:56:07.098559-07:00,0.0,10.754138,10754.138 +2323,2025-06-10T06:56:17.855698-07:00,0.0,10.757139,10757.139 +2324,2025-06-10T06:56:28.609824-07:00,0.0,10.754126,10754.126 +2325,2025-06-10T06:56:39.370019-07:00,0.0,10.760195,10760.195 +2326,2025-06-10T06:56:50.130404-07:00,0.0,10.760385,10760.385 +2327,2025-06-10T06:57:00.888609-07:00,0.0,10.758205,10758.205 +2328,2025-06-10T06:57:11.655024-07:00,0.0,10.766415,10766.415 +2329,2025-06-10T06:57:22.424581-07:00,0.0,10.769557,10769.557 +2330,2025-06-10T06:57:33.183608-07:00,0.0,10.759027,10759.027 +2331,2025-06-10T06:57:43.939696-07:00,0.0,10.756088,10756.088 +2332,2025-06-10T06:57:54.711528-07:00,0.0,10.771832,10771.832 +2333,2025-06-10T06:58:05.469402-07:00,0.0,10.757874,10757.874 +2334,2025-06-10T06:58:16.228984-07:00,0.0,10.759582,10759.582 +2335,2025-06-10T06:58:26.984941-07:00,0.0,10.755957,10755.957 +2336,2025-06-10T06:58:37.744006-07:00,0.0,10.759065,10759.065 +2337,2025-06-10T06:58:48.507387-07:00,0.0,10.763381,10763.381 +2338,2025-06-10T06:58:59.262677-07:00,0.0,10.75529,10755.29 +2339,2025-06-10T06:59:10.028901-07:00,0.0,10.766224,10766.224 +2340,2025-06-10T06:59:20.792865-07:00,0.0,10.763964,10763.964 +2341,2025-06-10T06:59:31.552187-07:00,0.0,10.759322,10759.322 +2342,2025-06-10T06:59:42.308552-07:00,0.0,10.756365,10756.365 +2343,2025-06-10T06:59:53.071697-07:00,0.0,10.763145,10763.145 +2344,2025-06-10T07:00:03.824385-07:00,0.0,10.752688,10752.688 +2345,2025-06-10T07:00:14.588533-07:00,0.0,10.764148,10764.148 +2346,2025-06-10T07:00:25.344437-07:00,0.0,10.755904,10755.904 +2347,2025-06-10T07:00:36.112575-07:00,0.0,10.768138,10768.138 +2348,2025-06-10T07:00:46.870531-07:00,0.0,10.757956,10757.956 +2349,2025-06-10T07:00:57.625654-07:00,0.0,10.755123,10755.123 +2350,2025-06-10T07:01:08.384552-07:00,0.0,10.758898,10758.898 +2351,2025-06-10T07:01:19.149135-07:00,0.0,10.764583,10764.583 +2352,2025-06-10T07:01:29.900683-07:00,0.0,10.751548,10751.548 +2353,2025-06-10T07:01:40.660404-07:00,0.0,10.759721,10759.721 +2354,2025-06-10T07:01:51.418404-07:00,0.0,10.758,10758.0 +2355,2025-06-10T07:02:02.177673-07:00,0.0,10.759269,10759.269 +2356,2025-06-10T07:02:12.945634-07:00,0.0,10.767961,10767.961 +2357,2025-06-10T07:02:23.705653-07:00,0.0,10.760019,10760.019 +2358,2025-06-10T07:02:34.467402-07:00,0.0,10.761749,10761.749 +2359,2025-06-10T07:02:45.227423-07:00,0.0,10.760021,10760.021 +2360,2025-06-10T07:02:55.991557-07:00,0.0,10.764134,10764.134 +2361,2025-06-10T07:03:06.745561-07:00,0.0,10.754004,10754.004 +2362,2025-06-10T07:03:17.510641-07:00,0.0,10.76508,10765.08 +2363,2025-06-10T07:03:28.270402-07:00,0.0,10.759761,10759.761 +2364,2025-06-10T07:03:39.035849-07:00,0.0,10.765447,10765.447 +2365,2025-06-10T07:03:49.794399-07:00,0.0,10.75855,10758.55 +2366,2025-06-10T07:04:00.548860-07:00,0.0,10.754461,10754.461 +2367,2025-06-10T07:04:11.313438-07:00,0.0,10.764578,10764.578 +2368,2025-06-10T07:04:22.069734-07:00,0.0,10.756296,10756.296 +2369,2025-06-10T07:04:32.836931-07:00,0.0,10.767197,10767.197 +2370,2025-06-10T07:04:43.598403-07:00,0.0,10.761472,10761.472 +2371,2025-06-10T07:04:54.358428-07:00,0.0,10.760025,10760.025 +2372,2025-06-10T07:05:05.112702-07:00,0.0,10.754274,10754.274 +2373,2025-06-10T07:05:15.878666-07:00,0.0,10.765964,10765.964 +2374,2025-06-10T07:05:26.636702-07:00,0.0,10.758036,10758.036 +2375,2025-06-10T07:05:37.397447-07:00,0.0,10.760745,10760.745 +2376,2025-06-10T07:05:48.162639-07:00,0.0,10.765192,10765.192 +2377,2025-06-10T07:05:58.911408-07:00,0.0,10.748769,10748.769 +2378,2025-06-10T07:06:09.670404-07:00,0.0,10.758996,10758.996 +2379,2025-06-10T07:06:20.439427-07:00,0.0,10.769023,10769.023 +2380,2025-06-10T07:06:31.199213-07:00,0.0,10.759786,10759.786 +2381,2025-06-10T07:06:41.964556-07:00,0.0,10.765343,10765.343 +2382,2025-06-10T07:06:52.727374-07:00,0.0,10.762818,10762.818 +2383,2025-06-10T07:07:03.480426-07:00,0.0,10.753052,10753.052 +2384,2025-06-10T07:07:14.241658-07:00,0.0,10.761232,10761.232 +2385,2025-06-10T07:07:25.010404-07:00,0.0,10.768746,10768.746 +2386,2025-06-10T07:07:35.768586-07:00,0.0,10.758182,10758.182 +2387,2025-06-10T07:07:46.533782-07:00,0.0,10.765196,10765.196 +2388,2025-06-10T07:07:57.292895-07:00,0.0,10.759113,10759.113 +2389,2025-06-10T07:08:08.049791-07:00,0.0,10.756896,10756.896 +2390,2025-06-10T07:08:18.814922-07:00,0.0,10.765131,10765.131 +2391,2025-06-10T07:08:29.583419-07:00,0.0,10.768497,10768.497 +2392,2025-06-10T07:08:40.338404-07:00,0.0,10.754985,10754.985 +2393,2025-06-10T07:08:51.103402-07:00,0.0,10.764998,10764.998 +2394,2025-06-10T07:09:01.854404-07:00,0.0,10.751002,10751.002 +2395,2025-06-10T07:09:12.622615-07:00,0.0,10.768211,10768.211 +2396,2025-06-10T07:09:23.380444-07:00,0.0,10.757829,10757.829 +2397,2025-06-10T07:09:34.151404-07:00,0.0,10.77096,10770.96 +2398,2025-06-10T07:09:44.912692-07:00,0.0,10.761288,10761.288 +2399,2025-06-10T07:09:55.676384-07:00,0.0,10.763692,10763.692 +2400,2025-06-10T07:10:06.427449-07:00,0.0,10.751065,10751.065 +2401,2025-06-10T07:10:17.189406-07:00,0.0,10.761957,10761.957 +2402,2025-06-10T07:10:27.951629-07:00,0.0,10.762223,10762.223 +2403,2025-06-10T07:10:38.722529-07:00,0.0,10.7709,10770.9 +2404,2025-06-10T07:10:49.484652-07:00,0.0,10.762123,10762.123 +2405,2025-06-10T07:11:00.238565-07:00,0.0,10.753913,10753.913 +2406,2025-06-10T07:11:11.007399-07:00,0.0,10.768834,10768.834 +2407,2025-06-10T07:11:21.770604-07:00,0.0,10.763205,10763.205 +2408,2025-06-10T07:11:32.533697-07:00,0.0,10.763093,10763.093 +2409,2025-06-10T07:11:43.294684-07:00,0.0,10.760987,10760.987 +2410,2025-06-10T07:11:54.045849-07:00,0.0,10.751165,10751.165 +2411,2025-06-10T07:12:04.812887-07:00,0.0,10.767038,10767.038 +2412,2025-06-10T07:12:15.575537-07:00,0.0,10.76265,10762.65 +2413,2025-06-10T07:12:26.335714-07:00,0.0,10.760177,10760.177 +2414,2025-06-10T07:12:37.100402-07:00,0.0,10.764688,10764.688 +2415,2025-06-10T07:12:47.862404-07:00,0.0,10.762002,10762.002 +2416,2025-06-10T07:12:58.627750-07:00,0.0,10.765346,10765.346 +2417,2025-06-10T07:13:09.384748-07:00,0.0,10.756998,10756.998 +2418,2025-06-10T07:13:20.156419-07:00,0.0,10.771671,10771.671 +2419,2025-06-10T07:13:30.917744-07:00,0.0,10.761325,10761.325 +2420,2025-06-10T07:13:41.678562-07:00,0.0,10.760818,10760.818 +2421,2025-06-10T07:13:52.448403-07:00,0.0,10.769841,10769.841 +2422,2025-06-10T07:14:03.214181-07:00,0.0,10.765778,10765.778 +2423,2025-06-10T07:14:13.979456-07:00,0.0,10.765275,10765.275 +2424,2025-06-10T07:14:24.737704-07:00,0.0,10.758248,10758.248 +2425,2025-06-10T07:14:35.506704-07:00,0.0,10.769,10769.0 +2426,2025-06-10T07:14:46.261706-07:00,0.0,10.755002,10755.002 +2427,2025-06-10T07:14:57.020123-07:00,0.0,10.758417,10758.417 +2428,2025-06-10T07:15:07.785402-07:00,0.0,10.765279,10765.279 +2429,2025-06-10T07:15:18.545381-07:00,0.0,10.759979,10759.979 +2430,2025-06-10T07:15:29.300665-07:00,0.0,10.755284,10755.284 +2431,2025-06-10T07:15:40.064517-07:00,0.0,10.763852,10763.852 +2432,2025-06-10T07:15:50.817440-07:00,0.0,10.752923,10752.923 +2433,2025-06-10T07:16:01.584402-07:00,0.0,10.766962,10766.962 +2434,2025-06-10T07:16:12.343739-07:00,0.0,10.759337,10759.337 +2435,2025-06-10T07:16:23.098694-07:00,0.0,10.754955,10754.955 +2436,2025-06-10T07:16:33.864540-07:00,0.0,10.765846,10765.846 +2437,2025-06-10T07:16:44.624586-07:00,0.0,10.760046,10760.046 +2438,2025-06-10T07:16:55.384111-07:00,0.0,10.759525,10759.525 +2439,2025-06-10T07:17:06.143760-07:00,0.0,10.759649,10759.649 +2440,2025-06-10T07:17:16.902542-07:00,0.0,10.758782,10758.782 +2441,2025-06-10T07:17:27.659989-07:00,0.0,10.757447,10757.447 +2442,2025-06-10T07:17:38.420613-07:00,0.0,10.760624,10760.624 +2443,2025-06-10T07:17:49.181719-07:00,0.0,10.761106,10761.106 +2444,2025-06-10T07:17:59.934825-07:00,0.0,10.753106,10753.106 +2445,2025-06-10T07:18:10.696449-07:00,0.0,10.761624,10761.624 +2446,2025-06-10T07:18:21.456408-07:00,0.0,10.759959,10759.959 +2447,2025-06-10T07:18:32.214601-07:00,0.0,10.758193,10758.193 +2448,2025-06-10T07:18:42.975758-07:00,0.0,10.761157,10761.157 +2449,2025-06-10T07:18:53.734655-07:00,0.0,10.758897,10758.897 +2450,2025-06-10T07:19:04.493400-07:00,0.0,10.758745,10758.745 +2451,2025-06-10T07:19:15.258643-07:00,0.0,10.765243,10765.243 +2452,2025-06-10T07:19:26.012967-07:00,0.0,10.754324,10754.324 +2453,2025-06-10T07:19:36.770406-07:00,0.0,10.757439,10757.439 +2454,2025-06-10T07:19:47.534404-07:00,0.0,10.763998,10763.998 +2455,2025-06-10T07:19:58.287402-07:00,0.0,10.752998,10752.998 +2456,2025-06-10T07:20:09.048049-07:00,0.0,10.760647,10760.647 +2457,2025-06-10T07:20:19.803663-07:00,0.0,10.755614,10755.614 +2458,2025-06-10T07:20:30.566579-07:00,0.0,10.762916,10762.916 +2459,2025-06-10T07:20:41.318535-07:00,0.0,10.751956,10751.956 +2460,2025-06-10T07:20:52.084578-07:00,0.0,10.766043,10766.043 +2461,2025-06-10T07:21:02.844685-07:00,0.0,10.760107,10760.107 +2462,2025-06-10T07:21:13.600540-07:00,0.0,10.755855,10755.855 +2463,2025-06-10T07:21:24.353480-07:00,0.0,10.75294,10752.94 +2464,2025-06-10T07:21:35.116445-07:00,0.0,10.762965,10762.965 +2465,2025-06-10T07:21:45.868395-07:00,0.0,10.75195,10751.95 +2466,2025-06-10T07:21:56.630700-07:00,0.0,10.762305,10762.305 +2467,2025-06-10T07:22:07.396392-07:00,0.0,10.765692,10765.692 +2468,2025-06-10T07:22:18.151381-07:00,0.0,10.754989,10754.989 +2469,2025-06-10T07:22:28.910805-07:00,0.0,10.759424,10759.424 +2470,2025-06-10T07:22:39.675697-07:00,0.0,10.764892,10764.892 +2471,2025-06-10T07:22:50.429476-07:00,0.0,10.753779,10753.779 +2472,2025-06-10T07:23:01.188583-07:00,0.0,10.759107,10759.107 +2473,2025-06-10T07:23:11.946405-07:00,0.0,10.757822,10757.822 +2474,2025-06-10T07:23:22.713045-07:00,0.0,10.76664,10766.64 +2475,2025-06-10T07:23:33.477646-07:00,0.0,10.764601,10764.601 +2476,2025-06-10T07:23:44.233408-07:00,0.0,10.755762,10755.762 +2477,2025-06-10T07:23:54.993404-07:00,0.0,10.759996,10759.996 +2478,2025-06-10T07:24:05.753756-07:00,0.0,10.760352,10760.352 +2479,2025-06-10T07:24:16.510026-07:00,0.0,10.75627,10756.27 +2480,2025-06-10T07:24:27.270406-07:00,0.0,10.76038,10760.38 +2481,2025-06-10T07:24:38.034404-07:00,0.0,10.763998,10763.998 +2482,2025-06-10T07:24:48.790383-07:00,0.0,10.755979,10755.979 +2483,2025-06-10T07:24:59.547037-07:00,0.0,10.756654,10756.654 +2484,2025-06-10T07:25:10.305651-07:00,0.0,10.758614,10758.614 +2485,2025-06-10T07:25:21.069658-07:00,0.0,10.764007,10764.007 +2486,2025-06-10T07:25:31.823441-07:00,0.0,10.753783,10753.783 +2487,2025-06-10T07:25:42.584432-07:00,0.0,10.760991,10760.991 +2488,2025-06-10T07:25:53.335383-07:00,0.0,10.750951,10750.951 +2489,2025-06-10T07:26:04.095561-07:00,0.0,10.760178,10760.178 +2490,2025-06-10T07:26:14.847632-07:00,0.0,10.752071,10752.071 +2491,2025-06-10T07:26:25.610685-07:00,0.0,10.763053,10763.053 +2492,2025-06-10T07:26:36.363406-07:00,0.0,10.752721,10752.721 +2493,2025-06-10T07:26:47.128798-07:00,0.0,10.765392,10765.392 +2494,2025-06-10T07:26:57.887905-07:00,0.0,10.759107,10759.107 +2495,2025-06-10T07:27:08.646406-07:00,0.0,10.758501,10758.501 +2496,2025-06-10T07:27:19.397375-07:00,0.0,10.750969,10750.969 +2497,2025-06-10T07:27:30.165777-07:00,0.0,10.768402,10768.402 +2498,2025-06-10T07:27:40.920960-07:00,0.0,10.755183,10755.183 +2499,2025-06-10T07:27:51.676404-07:00,0.0,10.755444,10755.444 +2500,2025-06-10T07:28:02.437406-07:00,0.0,10.761002,10761.002 +2501,2025-06-10T07:28:13.195378-07:00,0.0,10.757972,10757.972 +2502,2025-06-10T07:28:23.954560-07:00,0.0,10.759182,10759.182 +2503,2025-06-10T07:28:34.719001-07:00,0.0,10.764441,10764.441 +2504,2025-06-10T07:28:45.482647-07:00,0.0,10.763646,10763.646 +2505,2025-06-10T07:28:56.235838-07:00,0.0,10.753191,10753.191 +2506,2025-06-10T07:29:07.006754-07:00,0.0,10.770916,10770.916 +2507,2025-06-10T07:29:17.765408-07:00,0.0,10.758654,10758.654 +2508,2025-06-10T07:29:28.522628-07:00,0.0,10.75722,10757.22 +2509,2025-06-10T07:29:39.282402-07:00,0.0,10.759774,10759.774 +2510,2025-06-10T07:29:50.048878-07:00,0.0,10.766476,10766.476 +2511,2025-06-10T07:30:00.812406-07:00,0.0,10.763528,10763.528 +2512,2025-06-10T07:30:01.617699-07:00,0.0,0.805293,805.293 +2513,2025-06-10T07:30:11.570696-07:00,0.0,9.952997,9952.997 +2514,2025-06-10T07:30:22.334717-07:00,0.0,10.764021,10764.021 +2515,2025-06-10T07:30:33.091663-07:00,0.0,10.756946,10756.946 +2516,2025-06-10T07:30:43.849669-07:00,0.0,10.758006,10758.006 +2517,2025-06-10T07:30:54.616404-07:00,0.0,10.766735,10766.735 +2518,2025-06-10T07:31:05.368406-07:00,0.0,10.752002,10752.002 +2519,2025-06-10T07:31:16.132662-07:00,0.0,10.764256,10764.256 +2520,2025-06-10T07:31:26.889886-07:00,0.0,10.757224,10757.224 +2521,2025-06-10T07:31:37.640687-07:00,0.0,10.750801,10750.801 +2522,2025-06-10T07:31:48.405385-07:00,0.0,10.764698,10764.698 +2523,2025-06-10T07:31:59.166426-07:00,0.0,10.761041,10761.041 +2524,2025-06-10T07:32:09.925951-07:00,0.0,10.759525,10759.525 +2525,2025-06-10T07:32:20.677453-07:00,0.0,10.751502,10751.502 +2526,2025-06-10T07:32:31.443403-07:00,0.0,10.76595,10765.95 +2527,2025-06-10T07:32:42.198654-07:00,0.0,10.755251,10755.251 +2528,2025-06-10T07:32:52.959446-07:00,0.0,10.760792,10760.792 +2529,2025-06-10T07:33:03.716837-07:00,0.0,10.757391,10757.391 +2530,2025-06-10T07:33:14.478528-07:00,0.0,10.761691,10761.691 +2531,2025-06-10T07:33:25.222827-07:00,0.0,10.744299,10744.299 +2532,2025-06-10T07:33:35.980550-07:00,0.0,10.757723,10757.723 +2533,2025-06-10T07:33:46.741406-07:00,0.0,10.760856,10760.856 +2534,2025-06-10T07:33:57.492699-07:00,0.0,10.751293,10751.293 +2535,2025-06-10T07:34:08.240602-07:00,0.0,10.747903,10747.903 +2536,2025-06-10T07:34:19.004452-07:00,0.0,10.76385,10763.85 +2537,2025-06-10T07:34:29.763830-07:00,0.0,10.759378,10759.378 +2538,2025-06-10T07:34:40.512402-07:00,0.0,10.748572,10748.572 +2539,2025-06-10T07:34:51.265404-07:00,0.0,10.753002,10753.002 +2540,2025-06-10T07:35:02.023972-07:00,0.0,10.758568,10758.568 +2541,2025-06-10T07:35:12.773894-07:00,0.0,10.749922,10749.922 +2542,2025-06-10T07:35:23.530840-07:00,0.0,10.756946,10756.946 +2543,2025-06-10T07:35:34.290772-07:00,0.0,10.759932,10759.932 +2544,2025-06-10T07:35:45.052666-07:00,0.0,10.761894,10761.894 +2545,2025-06-10T07:35:55.808397-07:00,0.0,10.755731,10755.731 +2546,2025-06-10T07:36:06.567446-07:00,0.0,10.759049,10759.049 +2547,2025-06-10T07:36:17.315192-07:00,0.0,10.747746,10747.746 +2548,2025-06-10T07:36:28.080480-07:00,0.0,10.765288,10765.288 +2549,2025-06-10T07:36:38.832630-07:00,0.0,10.75215,10752.15 +2550,2025-06-10T07:36:49.586074-07:00,0.0,10.753444,10753.444 +2551,2025-06-10T07:37:00.342390-07:00,0.0,10.756316,10756.316 +2552,2025-06-10T07:37:11.103397-07:00,0.0,10.761007,10761.007 +2553,2025-06-10T07:37:21.858483-07:00,0.0,10.755086,10755.086 +2554,2025-06-10T07:37:32.616809-07:00,0.0,10.758326,10758.326 +2555,2025-06-10T07:37:43.371392-07:00,0.0,10.754583,10754.583 +2556,2025-06-10T07:37:54.123779-07:00,0.0,10.752387,10752.387 +2557,2025-06-10T07:38:04.881383-07:00,0.0,10.757604,10757.604 +2558,2025-06-10T07:38:15.640580-07:00,0.0,10.759197,10759.197 +2559,2025-06-10T07:38:26.396779-07:00,0.0,10.756199,10756.199 +2560,2025-06-10T07:38:37.155413-07:00,0.0,10.758634,10758.634 +2561,2025-06-10T07:38:47.904550-07:00,0.0,10.749137,10749.137 +2562,2025-06-10T07:38:58.666551-07:00,0.0,10.762001,10762.001 +2563,2025-06-10T07:39:09.421546-07:00,0.0,10.754995,10754.995 +2564,2025-06-10T07:39:20.180535-07:00,0.0,10.758989,10758.989 +2565,2025-06-10T07:39:30.939735-07:00,0.0,10.7592,10759.2 +2566,2025-06-10T07:39:41.696673-07:00,0.0,10.756938,10756.938 +2567,2025-06-10T07:39:52.452395-07:00,0.0,10.755722,10755.722 +2568,2025-06-10T07:40:03.210375-07:00,0.0,10.75798,10757.98 +2569,2025-06-10T07:40:13.967399-07:00,0.0,10.757024,10757.024 +2570,2025-06-10T07:40:24.716449-07:00,0.0,10.74905,10749.05 +2571,2025-06-10T07:40:35.479678-07:00,0.0,10.763229,10763.229 +2572,2025-06-10T07:40:46.242398-07:00,0.0,10.76272,10762.72 +2573,2025-06-10T07:40:56.989687-07:00,0.0,10.747289,10747.289 +2574,2025-06-10T07:41:07.752402-07:00,0.0,10.762715,10762.715 +2575,2025-06-10T07:41:18.512956-07:00,0.0,10.760554,10760.554 +2576,2025-06-10T07:41:29.268901-07:00,0.0,10.755945,10755.945 +2577,2025-06-10T07:41:40.019826-07:00,0.0,10.750925,10750.925 +2578,2025-06-10T07:41:50.778950-07:00,0.0,10.759124,10759.124 +2579,2025-06-10T07:42:01.541700-07:00,0.0,10.76275,10762.75 +2580,2025-06-10T07:42:12.294552-07:00,0.0,10.752852,10752.852 +2581,2025-06-10T07:42:23.056722-07:00,0.0,10.76217,10762.17 +2582,2025-06-10T07:42:33.810386-07:00,0.0,10.753664,10753.664 +2583,2025-06-10T07:42:44.570404-07:00,0.0,10.760018,10760.018 +2584,2025-06-10T07:42:55.327404-07:00,0.0,10.757,10757.0 +2585,2025-06-10T07:43:06.086527-07:00,0.0,10.759123,10759.123 +2586,2025-06-10T07:43:16.851099-07:00,0.0,10.764572,10764.572 +2587,2025-06-10T07:43:27.600735-07:00,0.0,10.749636,10749.636 +2588,2025-06-10T07:43:38.359411-07:00,0.0,10.758676,10758.676 +2589,2025-06-10T07:43:49.116697-07:00,0.0,10.757286,10757.286 +2590,2025-06-10T07:43:59.883614-07:00,0.0,10.766917,10766.917 +2591,2025-06-10T07:44:10.639671-07:00,0.0,10.756057,10756.057 +2592,2025-06-10T07:44:21.395661-07:00,0.0,10.75599,10755.99 +2593,2025-06-10T07:44:32.156679-07:00,0.0,10.761018,10761.018 +2594,2025-06-10T07:44:42.906406-07:00,0.0,10.749727,10749.727 +2595,2025-06-10T07:44:53.666639-07:00,0.0,10.760233,10760.233 +2596,2025-06-10T07:45:04.424735-07:00,0.0,10.758096,10758.096 +2597,2025-06-10T07:45:15.187251-07:00,0.0,10.762516,10762.516 +2598,2025-06-10T07:45:25.948406-07:00,0.0,10.761155,10761.155 +2599,2025-06-10T07:45:36.708446-07:00,0.0,10.76004,10760.04 +2600,2025-06-10T07:45:47.470726-07:00,0.0,10.76228,10762.28 +2601,2025-06-10T07:45:58.224404-07:00,0.0,10.753678,10753.678 +2602,2025-06-10T07:46:08.992993-07:00,0.0,10.768589,10768.589 +2603,2025-06-10T07:46:19.750402-07:00,0.0,10.757409,10757.409 +2604,2025-06-10T07:46:30.511481-07:00,0.0,10.761079,10761.079 +2605,2025-06-10T07:46:41.268748-07:00,0.0,10.757267,10757.267 +2606,2025-06-10T07:46:52.025409-07:00,0.0,10.756661,10756.661 +2607,2025-06-10T07:47:02.787653-07:00,0.0,10.762244,10762.244 +2608,2025-06-10T07:47:13.551695-07:00,0.0,10.764042,10764.042 +2609,2025-06-10T07:47:24.319460-07:00,0.0,10.767765,10767.765 +2610,2025-06-10T07:47:35.083598-07:00,0.0,10.764138,10764.138 +2611,2025-06-10T07:47:45.843853-07:00,0.0,10.760255,10760.255 +2612,2025-06-10T07:47:56.602742-07:00,0.0,10.758889,10758.889 +2613,2025-06-10T07:48:07.359613-07:00,0.0,10.756871,10756.871 +2614,2025-06-10T07:48:18.120454-07:00,0.0,10.760841,10760.841 +2615,2025-06-10T07:48:28.885952-07:00,0.0,10.765498,10765.498 +2616,2025-06-10T07:48:39.643549-07:00,0.0,10.757597,10757.597 +2617,2025-06-10T07:48:50.403402-07:00,0.0,10.759853,10759.853 +2618,2025-06-10T07:49:01.165409-07:00,0.0,10.762007,10762.007 +2619,2025-06-10T07:49:11.932829-07:00,0.0,10.76742,10767.42 +2620,2025-06-10T07:49:22.687789-07:00,0.0,10.75496,10754.96 +2621,2025-06-10T07:49:33.456382-07:00,0.0,10.768593,10768.593 +2622,2025-06-10T07:49:44.216441-07:00,0.0,10.760059,10760.059 +2623,2025-06-10T07:49:54.974744-07:00,0.0,10.758303,10758.303 +2624,2025-06-10T07:50:05.734660-07:00,0.0,10.759916,10759.916 +2625,2025-06-10T07:50:16.504684-07:00,0.0,10.770024,10770.024 +2626,2025-06-10T07:50:27.265902-07:00,0.0,10.761218,10761.218 +2627,2025-06-10T07:50:38.023754-07:00,0.0,10.757852,10757.852 +2628,2025-06-10T07:50:48.776743-07:00,0.0,10.752989,10752.989 +2629,2025-06-10T07:50:59.545029-07:00,0.0,10.768286,10768.286 +2630,2025-06-10T07:51:10.301517-07:00,0.0,10.756488,10756.488 +2631,2025-06-10T07:51:21.058717-07:00,0.0,10.7572,10757.2 +2632,2025-06-10T07:51:31.825402-07:00,0.0,10.766685,10766.685 +2633,2025-06-10T07:51:42.633434-07:00,0.0,10.808032,10808.032 +2634,2025-06-10T07:51:53.390251-07:00,0.0,10.756817,10756.817 +2635,2025-06-10T07:52:04.160788-07:00,0.0,10.770537,10770.537 +2636,2025-06-10T07:52:14.918555-07:00,0.0,10.757767,10757.767 +2637,2025-06-10T07:52:25.671574-07:00,0.0,10.753019,10753.019 +2638,2025-06-10T07:52:36.432446-07:00,0.0,10.760872,10760.872 +2639,2025-06-10T07:52:47.198429-07:00,0.0,10.765983,10765.983 +2640,2025-06-10T07:52:57.956691-07:00,0.0,10.758262,10758.262 +2641,2025-06-10T07:53:08.716723-07:00,0.0,10.760032,10760.032 +2642,2025-06-10T07:53:19.479106-07:00,0.0,10.762383,10762.383 +2643,2025-06-10T07:53:30.239026-07:00,0.0,10.75992,10759.92 +2644,2025-06-10T07:53:40.993786-07:00,0.0,10.75476,10754.76 +2645,2025-06-10T07:53:51.759424-07:00,0.0,10.765638,10765.638 +2646,2025-06-10T07:54:02.524415-07:00,0.0,10.764991,10764.991 +2647,2025-06-10T07:54:13.287423-07:00,0.0,10.763008,10763.008 +2648,2025-06-10T07:54:24.051230-07:00,0.0,10.763807,10763.807 +2649,2025-06-10T07:54:34.812480-07:00,0.0,10.76125,10761.25 +2650,2025-06-10T07:54:45.588647-07:00,0.0,10.776167,10776.167 +2651,2025-06-10T07:54:56.356427-07:00,0.0,10.76778,10767.78 +2652,2025-06-10T07:55:07.118020-07:00,0.0,10.761593,10761.593 +2653,2025-06-10T07:55:17.882482-07:00,0.0,10.764462,10764.462 +2654,2025-06-10T07:55:28.657566-07:00,0.0,10.775084,10775.084 +2655,2025-06-10T07:55:39.419457-07:00,0.0,10.761891,10761.891 +2656,2025-06-10T07:55:50.194424-07:00,0.0,10.774967,10774.967 +2657,2025-06-10T07:56:00.954372-07:00,0.0,10.759948,10759.948 +2658,2025-06-10T07:56:11.720433-07:00,0.0,10.766061,10766.061 +2659,2025-06-10T07:56:22.483619-07:00,0.0,10.763186,10763.186 +2660,2025-06-10T07:56:33.248206-07:00,0.0,10.764587,10764.587 +2661,2025-06-10T07:56:44.014481-07:00,0.0,10.766275,10766.275 +2662,2025-06-10T07:56:54.783430-07:00,0.0,10.768949,10768.949 +2663,2025-06-10T07:57:05.548000-07:00,0.0,10.76457,10764.57 +2664,2025-06-10T07:57:16.307480-07:00,0.0,10.75948,10759.48 +2665,2025-06-10T07:57:27.077827-07:00,0.0,10.770347,10770.347 +2666,2025-06-10T07:57:37.839668-07:00,0.0,10.761841,10761.841 +2667,2025-06-10T07:57:48.596872-07:00,0.0,10.757204,10757.204 +2668,2025-06-10T07:57:59.360571-07:00,0.0,10.763699,10763.699 +2669,2025-06-10T07:58:10.113760-07:00,0.0,10.753189,10753.189 +2670,2025-06-10T07:58:20.881684-07:00,0.0,10.767924,10767.924 +2671,2025-06-10T07:58:31.637744-07:00,0.0,10.75606,10756.06 +2672,2025-06-10T07:58:42.395639-07:00,0.0,10.757895,10757.895 +2673,2025-06-10T07:58:53.155422-07:00,0.0,10.759783,10759.783 +2674,2025-06-10T07:59:03.922872-07:00,0.0,10.76745,10767.45 +2675,2025-06-10T07:59:14.677599-07:00,0.0,10.754727,10754.727 +2676,2025-06-10T07:59:25.438636-07:00,0.0,10.761037,10761.037 +2677,2025-06-10T07:59:36.203464-07:00,0.0,10.764828,10764.828 +2678,2025-06-10T07:59:46.954431-07:00,0.0,10.750967,10750.967 +2679,2025-06-10T07:59:57.713579-07:00,0.0,10.759148,10759.148 +2680,2025-06-10T08:00:08.473431-07:00,0.0,10.759852,10759.852 +2681,2025-06-10T08:00:19.237421-07:00,0.0,10.76399,10763.99 +2682,2025-06-10T08:00:29.989431-07:00,0.0,10.75201,10752.01 +2683,2025-06-10T08:00:40.750422-07:00,0.0,10.760991,10760.991 +2684,2025-06-10T08:00:51.502504-07:00,0.0,10.752082,10752.082 +2685,2025-06-10T08:01:02.261542-07:00,0.0,10.759038,10759.038 +2686,2025-06-10T08:01:13.010429-07:00,0.0,10.748887,10748.887 +2687,2025-06-10T08:01:23.769417-07:00,0.0,10.758988,10758.988 +2688,2025-06-10T08:01:34.517696-07:00,0.0,10.748279,10748.279 +2689,2025-06-10T08:01:45.270703-07:00,0.0,10.753007,10753.007 +2690,2025-06-10T08:01:56.033830-07:00,0.0,10.763127,10763.127 +2691,2025-06-10T08:02:06.790301-07:00,0.0,10.756471,10756.471 +2692,2025-06-10T08:02:17.537029-07:00,0.0,10.746728,10746.728 +2693,2025-06-10T08:02:28.295572-07:00,0.0,10.758543,10758.543 +2694,2025-06-10T08:02:39.038903-07:00,0.0,10.743331,10743.331 +2695,2025-06-10T08:02:49.794409-07:00,0.0,10.755506,10755.506 +2696,2025-06-10T08:03:00.547423-07:00,0.0,10.753014,10753.014 +2697,2025-06-10T08:03:11.302728-07:00,0.0,10.755305,10755.305 +2698,2025-06-10T08:03:22.061427-07:00,0.0,10.758699,10758.699 +2699,2025-06-10T08:03:32.809429-07:00,0.0,10.748002,10748.002 +2700,2025-06-10T08:03:43.572744-07:00,0.0,10.763315,10763.315 +2701,2025-06-10T08:03:54.322762-07:00,0.0,10.750018,10750.018 +2702,2025-06-10T08:04:05.079000-07:00,0.0,10.756238,10756.238 +2703,2025-06-10T08:04:15.830598-07:00,0.0,10.751598,10751.598 +2704,2025-06-10T08:04:26.583428-07:00,0.0,10.75283,10752.83 +2705,2025-06-10T08:04:37.345423-07:00,0.0,10.761995,10761.995 +2706,2025-06-10T08:04:48.099485-07:00,0.0,10.754062,10754.062 +2707,2025-06-10T08:04:58.855989-07:00,0.0,10.756504,10756.504 +2708,2025-06-10T08:05:09.611598-07:00,0.0,10.755609,10755.609 +2709,2025-06-10T08:05:20.362579-07:00,0.0,10.750981,10750.981 +2710,2025-06-10T08:05:31.124427-07:00,0.0,10.761848,10761.848 +2711,2025-06-10T08:05:41.873429-07:00,0.0,10.749002,10749.002 +2712,2025-06-10T08:05:52.637671-07:00,0.0,10.764242,10764.242 +2713,2025-06-10T08:06:03.384604-07:00,0.0,10.746933,10746.933 +2714,2025-06-10T08:06:14.146948-07:00,0.0,10.762344,10762.344 +2715,2025-06-10T08:06:24.897321-07:00,0.0,10.750373,10750.373 +2716,2025-06-10T08:06:35.657425-07:00,0.0,10.760104,10760.104 +2717,2025-06-10T08:06:46.420804-07:00,0.0,10.763379,10763.379 +2718,2025-06-10T08:06:57.175716-07:00,0.0,10.754912,10754.912 +2719,2025-06-10T08:07:07.937711-07:00,0.0,10.761995,10761.995 +2720,2025-06-10T08:07:18.689399-07:00,0.0,10.751688,10751.688 +2721,2025-06-10T08:07:29.448581-07:00,0.0,10.759182,10759.182 +2722,2025-06-10T08:07:40.210662-07:00,0.0,10.762081,10762.081 +2723,2025-06-10T08:07:50.964428-07:00,0.0,10.753766,10753.766 +2724,2025-06-10T08:08:01.721199-07:00,0.0,10.756771,10756.771 +2725,2025-06-10T08:08:12.479056-07:00,0.0,10.757857,10757.857 +2726,2025-06-10T08:08:23.229863-07:00,0.0,10.750807,10750.807 +2727,2025-06-10T08:08:33.985417-07:00,0.0,10.755554,10755.554 +2728,2025-06-10T08:08:44.740431-07:00,0.0,10.755014,10755.014 +2729,2025-06-10T08:08:55.508987-07:00,0.0,10.768556,10768.556 +2730,2025-06-10T08:09:06.262692-07:00,0.0,10.753705,10753.705 +2731,2025-06-10T08:09:17.026695-07:00,0.0,10.764003,10764.003 +2732,2025-06-10T08:09:27.783845-07:00,0.0,10.75715,10757.15 +2733,2025-06-10T08:09:38.547429-07:00,0.0,10.763584,10763.584 +2734,2025-06-10T08:09:49.298220-07:00,0.0,10.750791,10750.791 +2735,2025-06-10T08:10:00.061757-07:00,0.0,10.763537,10763.537 +2736,2025-06-10T08:10:10.819433-07:00,0.0,10.757676,10757.676 +2737,2025-06-10T08:10:21.577503-07:00,0.0,10.75807,10758.07 +2738,2025-06-10T08:10:32.329428-07:00,0.0,10.751925,10751.925 +2739,2025-06-10T08:10:43.094762-07:00,0.0,10.765334,10765.334 +2740,2025-06-10T08:10:53.852606-07:00,0.0,10.757844,10757.844 +2741,2025-06-10T08:11:04.607429-07:00,0.0,10.754823,10754.823 +2742,2025-06-10T08:11:15.365429-07:00,0.0,10.758,10758.0 +2743,2025-06-10T08:11:26.121567-07:00,0.0,10.756138,10756.138 +2744,2025-06-10T08:11:36.878992-07:00,0.0,10.757425,10757.425 +2745,2025-06-10T08:11:47.642005-07:00,0.0,10.763013,10763.013 +2746,2025-06-10T08:11:58.397435-07:00,0.0,10.75543,10755.43 +2747,2025-06-10T08:12:09.151495-07:00,0.0,10.75406,10754.06 +2748,2025-06-10T08:12:19.904476-07:00,0.0,10.752981,10752.981 +2749,2025-06-10T08:12:30.666471-07:00,0.0,10.761995,10761.995 +2750,2025-06-10T08:12:41.417716-07:00,0.0,10.751245,10751.245 +2751,2025-06-10T08:12:52.187468-07:00,0.0,10.769752,10769.752 +2752,2025-06-10T08:13:02.941629-07:00,0.0,10.754161,10754.161 +2753,2025-06-10T08:13:13.699424-07:00,0.0,10.757795,10757.795 +2754,2025-06-10T08:13:24.460723-07:00,0.0,10.761299,10761.299 +2755,2025-06-10T08:13:35.219760-07:00,0.0,10.759037,10759.037 +2756,2025-06-10T08:13:45.976642-07:00,0.0,10.756882,10756.882 +2757,2025-06-10T08:13:56.732427-07:00,0.0,10.755785,10755.785 +2758,2025-06-10T08:14:07.495631-07:00,0.0,10.763204,10763.204 +2759,2025-06-10T08:14:18.257667-07:00,0.0,10.762036,10762.036 +2760,2025-06-10T08:14:29.008472-07:00,0.0,10.750805,10750.805 +2761,2025-06-10T08:14:39.766694-07:00,0.0,10.758222,10758.222 +2762,2025-06-10T08:14:50.529415-07:00,0.0,10.762721,10762.721 +2763,2025-06-10T08:15:01.291990-07:00,0.0,10.762575,10762.575 +2764,2025-06-10T08:15:12.051750-07:00,0.0,10.75976,10759.76 +2765,2025-06-10T08:15:22.808431-07:00,0.0,10.756681,10756.681 +2766,2025-06-10T08:15:33.565649-07:00,0.0,10.757218,10757.218 +2767,2025-06-10T08:15:44.327468-07:00,0.0,10.761819,10761.819 +2768,2025-06-10T08:15:55.087997-07:00,0.0,10.760529,10760.529 +2769,2025-06-10T08:16:05.836704-07:00,0.0,10.748707,10748.707 +2770,2025-06-10T08:16:16.598554-07:00,0.0,10.76185,10761.85 +2771,2025-06-10T08:16:27.351676-07:00,0.0,10.753122,10753.122 +2772,2025-06-10T08:16:38.113427-07:00,0.0,10.761751,10761.751 +2773,2025-06-10T08:16:48.871364-07:00,0.0,10.757937,10757.937 +2774,2025-06-10T08:16:59.621172-07:00,0.0,10.749808,10749.808 +2775,2025-06-10T08:17:10.388753-07:00,0.0,10.767581,10767.581 +2776,2025-06-10T08:17:21.137441-07:00,0.0,10.748688,10748.688 +2777,2025-06-10T08:17:31.893306-07:00,0.0,10.755865,10755.865 +2778,2025-06-10T08:17:42.661595-07:00,0.0,10.768289,10768.289 +2779,2025-06-10T08:17:53.415747-07:00,0.0,10.754152,10754.152 +2780,2025-06-10T08:18:04.168557-07:00,0.0,10.75281,10752.81 +2781,2025-06-10T08:18:14.928920-07:00,0.0,10.760363,10760.363 +2782,2025-06-10T08:18:25.689914-07:00,0.0,10.760994,10760.994 +2783,2025-06-10T08:18:36.450450-07:00,0.0,10.760536,10760.536 +2784,2025-06-10T08:18:47.207919-07:00,0.0,10.757469,10757.469 +2785,2025-06-10T08:18:57.954499-07:00,0.0,10.74658,10746.58 +2786,2025-06-10T08:19:08.717665-07:00,0.0,10.763166,10763.166 +2787,2025-06-10T08:19:19.476482-07:00,0.0,10.758817,10758.817 +2788,2025-06-10T08:19:30.236460-07:00,0.0,10.759978,10759.978 +2789,2025-06-10T08:19:40.990293-07:00,0.0,10.753833,10753.833 +2790,2025-06-10T08:19:51.750742-07:00,0.0,10.760449,10760.449 +2791,2025-06-10T08:20:02.508421-07:00,0.0,10.757679,10757.679 +2792,2025-06-10T08:20:13.259431-07:00,0.0,10.75101,10751.01 +2793,2025-06-10T08:20:24.024670-07:00,0.0,10.765239,10765.239 +2794,2025-06-10T08:20:34.786918-07:00,0.0,10.762248,10762.248 +2795,2025-06-10T08:20:45.538769-07:00,0.0,10.751851,10751.851 +2796,2025-06-10T08:20:56.298792-07:00,0.0,10.760023,10760.023 +2797,2025-06-10T08:21:07.057427-07:00,0.0,10.758635,10758.635 +2798,2025-06-10T08:21:17.815463-07:00,0.0,10.758036,10758.036 +2799,2025-06-10T08:21:28.570824-07:00,0.0,10.755361,10755.361 +2800,2025-06-10T08:21:39.337424-07:00,0.0,10.7666,10766.6 +2801,2025-06-10T08:21:50.091425-07:00,0.0,10.754001,10754.001 +2802,2025-06-10T08:22:00.847299-07:00,0.0,10.755874,10755.874 +2803,2025-06-10T08:22:11.606430-07:00,0.0,10.759131,10759.131 +2804,2025-06-10T08:22:22.370906-07:00,0.0,10.764476,10764.476 +2805,2025-06-10T08:22:33.126376-07:00,0.0,10.75547,10755.47 +2806,2025-06-10T08:22:43.883429-07:00,0.0,10.757053,10757.053 +2807,2025-06-10T08:22:54.639971-07:00,0.0,10.756542,10756.542 +2808,2025-06-10T08:23:05.396453-07:00,0.0,10.756482,10756.482 +2809,2025-06-10T08:23:16.156975-07:00,0.0,10.760522,10760.522 +2810,2025-06-10T08:23:26.912798-07:00,0.0,10.755823,10755.823 +2811,2025-06-10T08:23:37.674484-07:00,0.0,10.761686,10761.686 +2812,2025-06-10T08:23:48.425408-07:00,0.0,10.750924,10750.924 +2813,2025-06-10T08:23:59.178583-07:00,0.0,10.753175,10753.175 +2814,2025-06-10T08:24:09.939909-07:00,0.0,10.761326,10761.326 +2815,2025-06-10T08:24:20.702825-07:00,0.0,10.762916,10762.916 +2816,2025-06-10T08:24:31.449758-07:00,0.0,10.746933,10746.933 +2817,2025-06-10T08:24:42.212427-07:00,0.0,10.762669,10762.669 +2818,2025-06-10T08:24:52.963398-07:00,0.0,10.750971,10750.971 +2819,2025-06-10T08:25:03.722805-07:00,0.0,10.759407,10759.407 +2820,2025-06-10T08:25:14.482824-07:00,0.0,10.760019,10760.019 +2821,2025-06-10T08:25:25.233807-07:00,0.0,10.750983,10750.983 +2822,2025-06-10T08:25:35.997431-07:00,0.0,10.763624,10763.624 +2823,2025-06-10T08:25:46.756523-07:00,0.0,10.759092,10759.092 +2824,2025-06-10T08:25:57.515421-07:00,0.0,10.758898,10758.898 +2825,2025-06-10T08:26:08.271040-07:00,0.0,10.755619,10755.619 +2826,2025-06-10T08:26:19.026762-07:00,0.0,10.755722,10755.722 +2827,2025-06-10T08:26:29.785726-07:00,0.0,10.758964,10758.964 +2828,2025-06-10T08:26:40.535559-07:00,0.0,10.749833,10749.833 +2829,2025-06-10T08:26:51.297427-07:00,0.0,10.761868,10761.868 +2830,2025-06-10T08:27:02.051680-07:00,0.0,10.754253,10754.253 +2831,2025-06-10T08:27:12.809978-07:00,0.0,10.758298,10758.298 +2832,2025-06-10T08:27:23.564605-07:00,0.0,10.754627,10754.627 +2833,2025-06-10T08:27:34.333658-07:00,0.0,10.769053,10769.053 +2834,2025-06-10T08:27:45.084415-07:00,0.0,10.750757,10750.757 +2835,2025-06-10T08:27:55.846533-07:00,0.0,10.762118,10762.118 +2836,2025-06-10T08:28:06.598706-07:00,0.0,10.752173,10752.173 +2837,2025-06-10T08:28:17.363468-07:00,0.0,10.764762,10764.762 +2838,2025-06-10T08:28:28.123418-07:00,0.0,10.75995,10759.95 +2839,2025-06-10T08:28:38.890484-07:00,0.0,10.767066,10767.066 +2840,2025-06-10T08:28:49.643712-07:00,0.0,10.753228,10753.228 +2841,2025-06-10T08:29:00.400624-07:00,0.0,10.756912,10756.912 +2842,2025-06-10T08:29:11.159728-07:00,0.0,10.759104,10759.104 +2843,2025-06-10T08:29:21.926283-07:00,0.0,10.766555,10766.555 +2844,2025-06-10T08:29:32.679199-07:00,0.0,10.752916,10752.916 +2845,2025-06-10T08:29:43.448429-07:00,0.0,10.76923,10769.23 +2846,2025-06-10T08:29:54.208426-07:00,0.0,10.759997,10759.997 +2847,2025-06-10T08:30:04.968486-07:00,0.0,10.76006,10760.06 +2848,2025-06-10T08:30:15.726722-07:00,0.0,10.758236,10758.236 +2849,2025-06-10T08:30:26.492685-07:00,0.0,10.765963,10765.963 +2850,2025-06-10T08:30:37.246427-07:00,0.0,10.753742,10753.742 +2851,2025-06-10T08:30:48.016062-07:00,0.0,10.769635,10769.635 +2852,2025-06-10T08:30:58.770557-07:00,0.0,10.754495,10754.495 +2853,2025-06-10T08:31:09.534549-07:00,0.0,10.763992,10763.992 +2854,2025-06-10T08:31:20.293688-07:00,0.0,10.759139,10759.139 +2855,2025-06-10T08:31:31.047417-07:00,0.0,10.753729,10753.729 +2856,2025-06-10T08:31:41.812781-07:00,0.0,10.765364,10765.364 +2857,2025-06-10T08:31:52.565517-07:00,0.0,10.752736,10752.736 +2858,2025-06-10T08:32:03.327408-07:00,0.0,10.761891,10761.891 +2859,2025-06-10T08:32:14.094129-07:00,0.0,10.766721,10766.721 +2860,2025-06-10T08:32:24.855340-07:00,0.0,10.761211,10761.211 +2861,2025-06-10T08:32:35.614570-07:00,0.0,10.75923,10759.23 +2862,2025-06-10T08:32:46.372402-07:00,0.0,10.757832,10757.832 +2863,2025-06-10T08:32:57.142617-07:00,0.0,10.770215,10770.215 +2864,2025-06-10T08:33:07.893973-07:00,0.0,10.751356,10751.356 +2865,2025-06-10T08:33:18.652404-07:00,0.0,10.758431,10758.431 +2866,2025-06-10T08:33:29.409679-07:00,0.0,10.757275,10757.275 +2867,2025-06-10T08:33:40.173572-07:00,0.0,10.763893,10763.893 +2868,2025-06-10T08:33:50.927464-07:00,0.0,10.753892,10753.892 +2869,2025-06-10T08:34:01.684166-07:00,0.0,10.756702,10756.702 +2870,2025-06-10T08:34:12.446726-07:00,0.0,10.76256,10762.56 +2871,2025-06-10T08:34:23.207708-07:00,0.0,10.760982,10760.982 +2872,2025-06-10T08:34:33.970444-07:00,0.0,10.762736,10762.736 +2873,2025-06-10T08:34:44.734118-07:00,0.0,10.763674,10763.674 +2874,2025-06-10T08:34:55.487427-07:00,0.0,10.753309,10753.309 +2875,2025-06-10T08:35:06.243658-07:00,0.0,10.756231,10756.231 +2876,2025-06-10T08:35:16.999584-07:00,0.0,10.755926,10755.926 +2877,2025-06-10T08:35:27.767708-07:00,0.0,10.768124,10768.124 +2878,2025-06-10T08:35:38.526600-07:00,0.0,10.758892,10758.892 +2879,2025-06-10T08:35:49.284977-07:00,0.0,10.758377,10758.377 +2880,2025-06-10T08:36:00.041728-07:00,0.0,10.756751,10756.751 +2881,2025-06-10T08:36:10.805936-07:00,0.0,10.764208,10764.208 +2882,2025-06-10T08:36:21.563817-07:00,0.0,10.757881,10757.881 +2883,2025-06-10T08:36:32.327121-07:00,0.0,10.763304,10763.304 +2884,2025-06-10T08:36:43.094580-07:00,0.0,10.767459,10767.459 +2885,2025-06-10T08:36:53.850056-07:00,0.0,10.755476,10755.476 +2886,2025-06-10T08:37:04.613786-07:00,0.0,10.76373,10763.73 +2887,2025-06-10T08:37:15.376433-07:00,0.0,10.762647,10762.647 +2888,2025-06-10T08:37:26.129910-07:00,0.0,10.753477,10753.477 +2889,2025-06-10T08:37:36.896755-07:00,0.0,10.766845,10766.845 +2890,2025-06-10T08:37:47.650710-07:00,0.0,10.753955,10753.955 +2891,2025-06-10T08:37:58.416623-07:00,0.0,10.765913,10765.913 +2892,2025-06-10T08:38:09.171677-07:00,0.0,10.755054,10755.054 +2893,2025-06-10T08:38:19.940742-07:00,0.0,10.769065,10769.065 +2894,2025-06-10T08:38:30.701581-07:00,0.0,10.760839,10760.839 +2895,2025-06-10T08:38:41.459427-07:00,0.0,10.757846,10757.846 +2896,2025-06-10T08:38:52.223636-07:00,0.0,10.764209,10764.209 +2897,2025-06-10T08:39:02.984876-07:00,0.0,10.76124,10761.24 +2898,2025-06-10T08:39:13.737434-07:00,0.0,10.752558,10752.558 +2899,2025-06-10T08:39:24.500429-07:00,0.0,10.762995,10762.995 +2900,2025-06-10T08:39:35.268428-07:00,0.0,10.767999,10767.999 +2901,2025-06-10T08:39:46.029860-07:00,0.0,10.761432,10761.432 +2902,2025-06-10T08:39:56.788431-07:00,0.0,10.758571,10758.571 +2903,2025-06-10T08:40:07.560946-07:00,0.0,10.772515,10772.515 +2904,2025-06-10T08:40:18.325435-07:00,0.0,10.764489,10764.489 +2905,2025-06-10T08:40:29.078585-07:00,0.0,10.75315,10753.15 +2906,2025-06-10T08:40:39.838674-07:00,0.0,10.760089,10760.089 +2907,2025-06-10T08:40:50.610747-07:00,0.0,10.772073,10772.073 +2908,2025-06-10T08:41:01.372014-07:00,0.0,10.761267,10761.267 +2909,2025-06-10T08:41:12.130433-07:00,0.0,10.758419,10758.419 +2910,2025-06-10T08:41:22.899471-07:00,0.0,10.769038,10769.038 +2911,2025-06-10T08:41:27.961853-07:00,2725.0,5.062382,5062.382 +2912,2025-06-10T08:41:33.651764-07:00,2733.0,5.689911,5689.911 +2913,2025-06-10T08:41:44.415504-07:00,2736.0,10.76374,10763.74 +2914,2025-06-10T08:41:55.181507-07:00,2686.0,10.766003,10766.003 +2915,2025-06-10T08:42:05.938410-07:00,2654.0,10.756903,10756.903 +2916,2025-06-10T08:42:16.702247-07:00,2704.0,10.763837,10763.837 +2917,2025-06-10T08:42:27.465555-07:00,2753.0,10.763308,10763.308 +2918,2025-06-10T08:42:38.227672-07:00,2773.0,10.762117,10762.117 +2919,2025-06-10T08:42:48.988399-07:00,2755.0,10.760727,10760.727 +2920,2025-06-10T08:42:59.749474-07:00,2753.0,10.761075,10761.075 +2921,2025-06-10T08:43:10.512427-07:00,2775.0,10.762953,10762.953 +2922,2025-06-10T08:43:21.270431-07:00,2785.0,10.758004,10758.004 +2923,2025-06-10T08:43:32.031675-07:00,2759.0,10.761244,10761.244 +2924,2025-06-10T08:43:42.796549-07:00,2771.0,10.764874,10764.874 +2925,2025-06-10T08:43:53.554681-07:00,2714.0,10.758132,10758.132 +2926,2025-06-10T08:44:04.318471-07:00,2768.0,10.76379,10763.79 +2927,2025-06-10T08:44:15.073531-07:00,2719.0,10.75506,10755.06 +2928,2025-06-10T08:44:25.836570-07:00,2709.0,10.763039,10763.039 +2929,2025-06-10T08:44:36.601431-07:00,2697.0,10.764861,10764.861 +2930,2025-06-10T08:44:47.362422-07:00,2709.0,10.760991,10760.991 +2931,2025-06-10T08:44:58.123910-07:00,2797.0,10.761488,10761.488 +2932,2025-06-10T08:45:08.887432-07:00,2701.0,10.763522,10763.522 +2933,2025-06-10T08:45:19.655617-07:00,2748.0,10.768185,10768.185 +2934,2025-06-10T08:45:30.411989-07:00,2755.0,10.756372,10756.372 +2935,2025-06-10T08:45:41.171811-07:00,2655.0,10.759822,10759.822 +2936,2025-06-10T08:45:51.933479-07:00,2761.0,10.761668,10761.668 +2937,2025-06-10T08:46:02.701066-07:00,2753.0,10.767587,10767.587 +2938,2025-06-10T08:46:13.466785-07:00,2722.0,10.765719,10765.719 +2939,2025-06-10T08:46:24.225431-07:00,2634.0,10.758646,10758.646 +2940,2025-06-10T08:46:34.988363-07:00,2655.0,10.762932,10762.932 +2941,2025-06-10T08:46:45.760433-07:00,2707.0,10.77207,10772.07 +2942,2025-06-10T08:46:56.524431-07:00,2761.0,10.763998,10763.998 +2943,2025-06-10T08:47:07.286807-07:00,2715.0,10.762376,10762.376 +2944,2025-06-10T08:47:18.049238-07:00,2813.0,10.762431,10762.431 +2945,2025-06-10T08:47:28.813544-07:00,2729.0,10.764306,10764.306 +2946,2025-06-10T08:47:39.577491-07:00,2766.0,10.763947,10763.947 +2947,2025-06-10T08:47:50.339049-07:00,2781.0,10.761558,10761.558 +2948,2025-06-10T08:48:01.107425-07:00,2742.0,10.768376,10768.376 +2949,2025-06-10T08:48:11.870655-07:00,2800.0,10.76323,10763.23 +2950,2025-06-10T08:48:22.636666-07:00,2775.0,10.766011,10766.011 +2951,2025-06-10T08:48:33.389274-07:00,2731.0,10.752608,10752.608 +2952,2025-06-10T08:48:44.156427-07:00,2795.0,10.767153,10767.153 +2953,2025-06-10T08:48:54.916431-07:00,2797.0,10.760004,10760.004 +2954,2025-06-10T08:49:05.685510-07:00,2707.0,10.769079,10769.079 +2955,2025-06-10T08:49:16.453290-07:00,2778.0,10.76778,10767.78 +2956,2025-06-10T08:49:27.220223-07:00,2773.0,10.766933,10766.933 +2957,2025-06-10T08:49:37.985796-07:00,2795.0,10.765573,10765.573 +2958,2025-06-10T08:49:48.749408-07:00,2738.0,10.763612,10763.612 +2959,2025-06-10T08:49:59.508462-07:00,2745.0,10.759054,10759.054 +2960,2025-06-10T08:50:10.275427-07:00,2689.0,10.766965,10766.965 +2961,2025-06-10T08:50:21.043429-07:00,2718.0,10.768002,10768.002 +2962,2025-06-10T08:50:31.810403-07:00,2715.0,10.766974,10766.974 +2963,2025-06-10T08:50:42.571964-07:00,2794.0,10.761561,10761.561 +2964,2025-06-10T08:50:53.328395-07:00,2758.0,10.756431,10756.431 +2965,2025-06-10T08:51:04.097624-07:00,2788.0,10.769229,10769.229 +2966,2025-06-10T08:51:14.856760-07:00,2764.0,10.759136,10759.136 +2967,2025-06-10T08:51:25.626410-07:00,2795.0,10.76965,10769.65 +2968,2025-06-10T08:51:36.370587-07:00,2791.0,10.744177,10744.177 +2969,2025-06-10T08:51:47.134123-07:00,2687.0,10.763536,10763.536 +2970,2025-06-10T08:51:57.895789-07:00,2718.0,10.761666,10761.666 +2971,2025-06-10T08:52:08.669354-07:00,2671.0,10.773565,10773.565 +2972,2025-06-10T08:52:19.432968-07:00,2688.0,10.763614,10763.614 +2973,2025-06-10T08:52:30.203086-07:00,2705.0,10.770118,10770.118 +2974,2025-06-10T08:52:40.968135-07:00,2607.0,10.765049,10765.049 +2975,2025-06-10T08:52:51.736774-07:00,2559.0,10.768639,10768.639 +2976,2025-06-10T08:53:02.508687-07:00,2621.0,10.771913,10771.913 +2977,2025-06-10T08:53:13.279804-07:00,2638.0,10.771117,10771.117 +2978,2025-06-10T08:53:24.051025-07:00,2533.0,10.771221,10771.221 +2979,2025-06-10T08:53:34.834787-07:00,2586.0,10.783762,10783.762 +2980,2025-06-10T08:53:45.617053-07:00,2618.0,10.782266,10782.266 +2981,2025-06-10T08:53:56.414153-07:00,2556.0,10.7971,10797.1 +2982,2025-06-10T08:54:07.209083-07:00,2615.0,10.79493,10794.93 +2983,2025-06-10T08:54:18.007071-07:00,2621.0,10.797988,10797.988 +2984,2025-06-10T08:54:28.823026-07:00,2639.0,10.815955,10815.955 +2985,2025-06-10T08:54:39.632785-07:00,2631.0,10.809759,10809.759 +2986,2025-06-10T08:54:50.453114-07:00,2667.0,10.820329,10820.329 +2987,2025-06-10T08:55:01.267787-07:00,2586.0,10.814673,10814.673 +2988,2025-06-10T08:55:12.094808-07:00,2531.0,10.827021,10827.021 +2989,2025-06-10T08:55:22.923783-07:00,2623.0,10.828975,10828.975 +2990,2025-06-10T08:55:33.762151-07:00,2640.0,10.838368,10838.368 +2991,2025-06-10T08:55:44.599577-07:00,2559.0,10.837426,10837.426 +2992,2025-06-10T08:55:55.437785-07:00,2682.0,10.838208,10838.208 +2993,2025-06-10T08:56:06.290772-07:00,2640.0,10.852987,10852.987 +2994,2025-06-10T08:56:17.135781-07:00,2611.0,10.845009,10845.009 +2995,2025-06-10T08:56:27.988630-07:00,2559.0,10.852849,10852.849 +2996,2025-06-10T08:56:38.833777-07:00,2608.0,10.845147,10845.147 +2997,2025-06-10T08:56:49.696820-07:00,2581.0,10.863043,10863.043 +2998,2025-06-10T08:57:00.549917-07:00,2677.0,10.853097,10853.097 +2999,2025-06-10T08:57:11.420760-07:00,2638.0,10.870843,10870.843 +3000,2025-06-10T08:57:22.269405-07:00,2688.0,10.848645,10848.645 +3001,2025-06-10T08:57:33.128827-07:00,2577.0,10.859422,10859.422 +3002,2025-06-10T08:57:43.987085-07:00,2644.0,10.858258,10858.258 +3003,2025-06-10T08:57:54.850804-07:00,2685.0,10.863719,10863.719 +3004,2025-06-10T08:58:05.700515-07:00,2509.0,10.849711,10849.711 +3005,2025-06-10T08:58:16.559467-07:00,2463.0,10.858952,10858.952 +3006,2025-06-10T08:58:27.399832-07:00,2559.0,10.840365,10840.365 +3007,2025-06-10T08:58:38.246790-07:00,2491.0,10.846958,10846.958 +3008,2025-06-10T08:58:49.093960-07:00,2399.0,10.84717,10847.17 +3009,2025-06-10T08:58:59.939340-07:00,2494.0,10.84538,10845.38 +3010,2025-06-10T08:59:10.781200-07:00,2541.0,10.84186,10841.86 +3011,2025-06-10T08:59:21.622767-07:00,2452.0,10.841567,10841.567 +3012,2025-06-10T08:59:32.471599-07:00,2463.0,10.848832,10848.832 +3013,2025-06-10T08:59:43.309904-07:00,2512.0,10.838305,10838.305 +3014,2025-06-10T08:59:54.143857-07:00,2636.0,10.833953,10833.953 +3015,2025-06-10T09:00:04.976118-07:00,2640.0,10.832261,10832.261 +3016,2025-06-10T09:00:15.807291-07:00,2704.0,10.831173,10831.173 +3017,2025-06-10T09:00:26.640094-07:00,2698.0,10.832803,10832.803 +3018,2025-06-10T09:00:37.480274-07:00,2724.0,10.84018,10840.18 +3019,2025-06-10T09:00:48.306764-07:00,2717.0,10.82649,10826.49 +3020,2025-06-10T09:00:59.136985-07:00,2642.0,10.830221,10830.221 +3021,2025-06-10T09:01:09.959954-07:00,2711.0,10.822969,10822.969 +3022,2025-06-10T09:01:20.790102-07:00,2641.0,10.830148,10830.148 +3023,2025-06-10T09:01:31.607780-07:00,2702.0,10.817678,10817.678 +3024,2025-06-10T09:01:42.436826-07:00,2718.0,10.829046,10829.046 +3025,2025-06-10T09:01:53.250785-07:00,2715.0,10.813959,10813.959 +3026,2025-06-10T09:02:04.079071-07:00,2646.0,10.828286,10828.286 +3027,2025-06-10T09:02:14.899786-07:00,2682.0,10.820715,10820.715 +3028,2025-06-10T09:02:25.720687-07:00,2709.0,10.820901,10820.901 +3029,2025-06-10T09:02:36.537137-07:00,2715.0,10.81645,10816.45 +3030,2025-06-10T09:02:47.355053-07:00,2658.0,10.817916,10817.916 +3031,2025-06-10T09:02:58.177236-07:00,2693.0,10.822183,10822.183 +3032,2025-06-10T09:03:08.992439-07:00,2666.0,10.815203,10815.203 +3033,2025-06-10T09:03:19.811781-07:00,2672.0,10.819342,10819.342 +3034,2025-06-10T09:03:30.630322-07:00,2639.0,10.818541,10818.541 +3035,2025-06-10T09:03:41.436129-07:00,2631.0,10.805807,10805.807 +3036,2025-06-10T09:03:52.244785-07:00,2641.0,10.808656,10808.656 +3037,2025-06-10T09:04:03.063009-07:00,2611.0,10.818224,10818.224 +3038,2025-06-10T09:04:13.873730-07:00,2661.0,10.810721,10810.721 +3039,2025-06-10T09:04:24.687836-07:00,2657.0,10.814106,10814.106 +3040,2025-06-10T09:04:27.715219-07:00,0.0,3.027383,3027.383 +3041,2025-06-10T09:04:35.496785-07:00,245.0,7.781566,7781.566 +3042,2025-06-10T09:04:46.303763-07:00,240.0,10.806978,10806.978 +3043,2025-06-10T09:04:57.123023-07:00,209.0,10.81926,10819.26 +3044,2025-06-10T09:05:07.925116-07:00,205.0,10.802093,10802.093 +3045,2025-06-10T09:05:18.743760-07:00,155.0,10.818644,10818.644 +3046,2025-06-10T09:05:29.544778-07:00,131.0,10.801018,10801.018 +3047,2025-06-10T09:05:40.353028-07:00,272.0,10.80825,10808.25 +3048,2025-06-10T09:05:51.166424-07:00,134.0,10.813396,10813.396 +3049,2025-06-10T09:06:01.958059-07:00,0.0,10.791635,10791.635 +3050,2025-06-10T09:06:01.972534-07:00,0.0,0.014475,14.475 +3051,2025-06-10T09:06:12.775084-07:00,0.0,10.80255,10802.55 +3052,2025-06-10T09:06:23.586893-07:00,0.0,10.811809,10811.809 +3053,2025-06-10T09:06:34.390769-07:00,0.0,10.803876,10803.876 +3054,2025-06-10T09:06:45.201783-07:00,0.0,10.811014,10811.014 +3055,2025-06-10T09:06:56.004027-07:00,0.0,10.802244,10802.244 +3056,2025-06-10T09:07:06.816125-07:00,0.0,10.812098,10812.098 +3057,2025-06-10T09:07:17.617377-07:00,0.0,10.801252,10801.252 +3058,2025-06-10T09:07:28.418033-07:00,0.0,10.800656,10800.656 +3059,2025-06-10T09:07:39.229328-07:00,0.0,10.811295,10811.295 +3060,2025-06-10T09:07:50.034919-07:00,0.0,10.805591,10805.591 +3061,2025-06-10T09:08:00.833047-07:00,0.0,10.798128,10798.128 +3062,2025-06-10T09:08:11.644006-07:00,0.0,10.810959,10810.959 +3063,2025-06-10T09:08:22.444172-07:00,0.0,10.800166,10800.166 +3064,2025-06-10T09:08:33.248760-07:00,0.0,10.804588,10804.588 +3065,2025-06-10T09:08:44.055950-07:00,0.0,10.80719,10807.19 +3066,2025-06-10T09:08:54.848782-07:00,0.0,10.792832,10792.832 +3067,2025-06-10T09:09:05.659507-07:00,0.0,10.810725,10810.725 +3068,2025-06-10T09:09:16.453762-07:00,0.0,10.794255,10794.255 +3069,2025-06-10T09:09:27.250781-07:00,0.0,10.797019,10797.019 +3070,2025-06-10T09:09:38.059565-07:00,0.0,10.808784,10808.784 +3071,2025-06-10T09:09:48.860499-07:00,0.0,10.800934,10800.934 +3072,2025-06-10T09:09:59.658703-07:00,0.0,10.798204,10798.204 +3073,2025-06-10T09:10:10.457820-07:00,0.0,10.799117,10799.117 +3074,2025-06-10T09:10:21.260064-07:00,0.0,10.802244,10802.244 +3075,2025-06-10T09:10:32.060083-07:00,0.0,10.800019,10800.019 +3076,2025-06-10T09:10:42.857935-07:00,0.0,10.797852,10797.852 +3077,2025-06-10T09:10:53.658094-07:00,0.0,10.800159,10800.159 +3078,2025-06-10T09:11:04.454666-07:00,0.0,10.796572,10796.572 +3079,2025-06-10T09:11:15.243002-07:00,0.0,10.788336,10788.336 +3080,2025-06-10T09:11:26.046781-07:00,0.0,10.803779,10803.779 +3081,2025-06-10T09:11:36.838781-07:00,0.0,10.792,10792.0 +3082,2025-06-10T09:11:47.636930-07:00,0.0,10.798149,10798.149 +3083,2025-06-10T09:11:58.440214-07:00,0.0,10.803284,10803.284 +3084,2025-06-10T09:12:09.237781-07:00,0.0,10.797567,10797.567 +3085,2025-06-10T09:12:20.034782-07:00,0.0,10.797001,10797.001 +3086,2025-06-10T09:12:30.830782-07:00,0.0,10.796,10796.0 +3087,2025-06-10T09:12:41.632778-07:00,0.0,10.801996,10801.996 +3088,2025-06-10T09:12:52.433783-07:00,0.0,10.801005,10801.005 +3089,2025-06-10T09:13:03.230762-07:00,0.0,10.796979,10796.979 +3090,2025-06-10T09:13:14.028280-07:00,0.0,10.797518,10797.518 +3091,2025-06-10T09:13:24.826775-07:00,0.0,10.798495,10798.495 +3092,2025-06-10T09:13:35.639781-07:00,0.0,10.813006,10813.006 +3093,2025-06-10T09:13:46.453098-07:00,0.0,10.813317,10813.317 +3094,2025-06-10T09:13:57.277789-07:00,0.0,10.824691,10824.691 +3095,2025-06-10T09:14:08.087783-07:00,0.0,10.809994,10809.994 +3096,2025-06-10T09:14:18.896607-07:00,0.0,10.808824,10808.824 +3097,2025-06-10T09:14:29.697066-07:00,0.0,10.800459,10800.459 +3098,2025-06-10T09:14:40.492621-07:00,0.0,10.795555,10795.555 +3099,2025-06-10T09:14:51.285924-07:00,0.0,10.793303,10793.303 +3100,2025-06-10T09:15:02.084829-07:00,0.0,10.798905,10798.905 +3101,2025-06-10T09:15:12.874803-07:00,0.0,10.789974,10789.974 +3102,2025-06-10T09:15:23.673069-07:00,0.0,10.798266,10798.266 +3103,2025-06-10T09:15:34.462008-07:00,0.0,10.788939,10788.939 +3104,2025-06-10T09:15:45.260911-07:00,0.0,10.798903,10798.903 +3105,2025-06-10T09:15:56.051771-07:00,0.0,10.79086,10790.86 +3106,2025-06-10T09:16:06.834694-07:00,0.0,10.782923,10782.923 +3107,2025-06-10T09:16:17.623765-07:00,0.0,10.789071,10789.071 +3108,2025-06-10T09:16:28.410783-07:00,0.0,10.787018,10787.018 +3109,2025-06-10T09:16:39.203783-07:00,0.0,10.793,10793.0 +3110,2025-06-10T09:16:50.000783-07:00,0.0,10.797,10797.0 +3111,2025-06-10T09:17:00.793131-07:00,0.0,10.792348,10792.348 +3112,2025-06-10T09:17:11.584189-07:00,0.0,10.791058,10791.058 +3113,2025-06-10T09:17:22.374603-07:00,0.0,10.790414,10790.414 +3114,2025-06-10T09:17:33.156927-07:00,0.0,10.782324,10782.324 +3115,2025-06-10T09:17:43.950784-07:00,0.0,10.793857,10793.857 +3116,2025-06-10T09:17:54.740410-07:00,0.0,10.789626,10789.626 +3117,2025-06-10T09:18:05.525672-07:00,0.0,10.785262,10785.262 +3118,2025-06-10T09:18:16.313781-07:00,0.0,10.788109,10788.109 +3119,2025-06-10T09:18:27.105932-07:00,0.0,10.792151,10792.151 +3120,2025-06-10T09:18:37.893944-07:00,0.0,10.788012,10788.012 +3121,2025-06-10T09:18:48.681329-07:00,0.0,10.787385,10787.385 +3122,2025-06-10T09:18:59.462839-07:00,0.0,10.78151,10781.51 +3123,2025-06-10T09:19:10.252776-07:00,0.0,10.789937,10789.937 +3124,2025-06-10T09:19:21.042283-07:00,0.0,10.789507,10789.507 +3125,2025-06-10T09:19:31.828851-07:00,0.0,10.786568,10786.568 +3126,2025-06-10T09:19:42.630179-07:00,0.0,10.801328,10801.328 +3127,2025-06-10T09:19:53.430337-07:00,0.0,10.800158,10800.158 +3128,2025-06-10T09:20:04.214465-07:00,0.0,10.784128,10784.128 +3129,2025-06-10T09:20:15.001785-07:00,0.0,10.78732,10787.32 +3130,2025-06-10T09:20:25.784453-07:00,0.0,10.782668,10782.668 +3131,2025-06-10T09:20:36.573123-07:00,0.0,10.78867,10788.67 +3132,2025-06-10T09:20:47.351788-07:00,0.0,10.778665,10778.665 +3133,2025-06-10T09:20:58.130782-07:00,0.0,10.778994,10778.994 +3134,2025-06-10T09:21:08.910301-07:00,0.0,10.779519,10779.519 +3135,2025-06-10T09:21:19.700203-07:00,0.0,10.789902,10789.902 +3136,2025-06-10T09:21:30.479783-07:00,0.0,10.77958,10779.58 +3137,2025-06-10T09:21:41.261104-07:00,0.0,10.781321,10781.321 +3138,2025-06-10T09:21:52.045817-07:00,0.0,10.784713,10784.713 +3139,2025-06-10T09:22:02.817982-07:00,0.0,10.772165,10772.165 +3140,2025-06-10T09:22:13.604108-07:00,0.0,10.786126,10786.126 +3141,2025-06-10T09:22:24.374113-07:00,0.0,10.770005,10770.005 +3142,2025-06-10T09:22:35.163828-07:00,0.0,10.789715,10789.715 +3143,2025-06-10T09:22:45.940093-07:00,0.0,10.776265,10776.265 +3144,2025-06-10T09:22:56.718970-07:00,0.0,10.778877,10778.877 +3145,2025-06-10T09:23:07.497075-07:00,0.0,10.778105,10778.105 +3146,2025-06-10T09:23:18.274760-07:00,0.0,10.777685,10777.685 +3147,2025-06-10T09:23:29.064116-07:00,0.0,10.789356,10789.356 +3148,2025-06-10T09:23:39.844085-07:00,0.0,10.779969,10779.969 +3149,2025-06-10T09:23:50.626018-07:00,0.0,10.781933,10781.933 +3150,2025-06-10T09:24:01.408029-07:00,0.0,10.782011,10782.011 +3151,2025-06-10T09:24:12.186334-07:00,0.0,10.778305,10778.305 +3152,2025-06-10T09:24:22.965129-07:00,0.0,10.778795,10778.795 +3153,2025-06-10T09:24:33.746151-07:00,0.0,10.781022,10781.022 +3154,2025-06-10T09:24:44.522288-07:00,0.0,10.776137,10776.137 +3155,2025-06-10T09:24:55.298783-07:00,0.0,10.776495,10776.495 +3156,2025-06-10T09:25:06.087102-07:00,0.0,10.788319,10788.319 +3157,2025-06-10T09:25:16.859806-07:00,0.0,10.772704,10772.704 +3158,2025-06-10T09:25:27.639785-07:00,0.0,10.779979,10779.979 +3159,2025-06-10T09:25:38.414288-07:00,0.0,10.774503,10774.503 +3160,2025-06-10T09:25:49.188182-07:00,0.0,10.773894,10773.894 +3161,2025-06-10T09:25:59.959994-07:00,0.0,10.771812,10771.812 +3162,2025-06-10T09:26:10.741783-07:00,0.0,10.781789,10781.789 +3163,2025-06-10T09:26:21.520765-07:00,0.0,10.778982,10778.982 +3164,2025-06-10T09:26:32.293978-07:00,0.0,10.773213,10773.213 +3165,2025-06-10T09:26:43.075079-07:00,0.0,10.781101,10781.101 +3166,2025-06-10T09:26:53.851123-07:00,0.0,10.776044,10776.044 +3167,2025-06-10T09:27:04.630121-07:00,0.0,10.778998,10778.998 +3168,2025-06-10T09:27:15.402075-07:00,0.0,10.771954,10771.954 +3169,2025-06-10T09:27:26.184783-07:00,0.0,10.782708,10782.708 +3170,2025-06-10T09:27:36.966114-07:00,0.0,10.781331,10781.331 +3171,2025-06-10T09:27:41.707062-07:00,2663.0,4.740948,4740.948 +3172,2025-06-10T09:27:47.739791-07:00,2559.0,6.032729,6032.729 +3173,2025-06-10T09:27:58.513297-07:00,2559.0,10.773506,10773.506 +3174,2025-06-10T09:28:09.300030-07:00,2637.0,10.786733,10786.733 +3175,2025-06-10T09:28:17.822069-07:00,881.0,8.522039,8522.039 +3176,2025-06-10T09:28:19.825441-07:00,0.0,2.003372,2003.372 +3177,2025-06-10T09:28:20.077860-07:00,0.0,0.252419,252.419 +3178,2025-06-10T09:28:30.845865-07:00,300.0,10.768005,10768.005 +3179,2025-06-10T09:28:41.630775-07:00,215.0,10.78491,10784.91 +3180,2025-06-10T09:28:52.404013-07:00,307.0,10.773238,10773.238 +3181,2025-06-10T09:29:03.173765-07:00,235.0,10.769752,10769.752 +3182,2025-06-10T09:29:13.951179-07:00,302.0,10.777414,10777.414 +3183,2025-06-10T09:29:24.734781-07:00,159.0,10.783602,10783.602 +3184,2025-06-10T09:29:35.507108-07:00,298.0,10.772327,10772.327 +3185,2025-06-10T09:29:46.286734-07:00,265.0,10.779626,10779.626 +3186,2025-06-10T09:29:57.064785-07:00,0.0,10.778051,10778.051 +3187,2025-06-10T09:30:07.830016-07:00,0.0,10.765231,10765.231 +3188,2025-06-10T09:30:18.613923-07:00,0.0,10.783907,10783.907 +3189,2025-06-10T09:30:29.387250-07:00,0.0,10.773327,10773.327 +3190,2025-06-10T09:30:40.151981-07:00,0.0,10.764731,10764.731 +3191,2025-06-10T09:30:50.925014-07:00,0.0,10.773033,10773.033 +3192,2025-06-10T09:31:01.699918-07:00,0.0,10.774904,10774.904 +3193,2025-06-10T09:31:12.471781-07:00,0.0,10.771863,10771.863 +3194,2025-06-10T09:31:23.246828-07:00,0.0,10.775047,10775.047 +3195,2025-06-10T09:31:34.022045-07:00,0.0,10.775217,10775.217 +3196,2025-06-10T09:31:44.797789-07:00,0.0,10.775744,10775.744 +3197,2025-06-10T09:31:55.571827-07:00,0.0,10.774038,10774.038 +3198,2025-06-10T09:32:06.336223-07:00,0.0,10.764396,10764.396 +3199,2025-06-10T09:32:17.107764-07:00,0.0,10.771541,10771.541 +3200,2025-06-10T09:32:27.884181-07:00,0.0,10.776417,10776.417 +3201,2025-06-10T09:32:38.657784-07:00,0.0,10.773603,10773.603 +3202,2025-06-10T09:32:49.427945-07:00,0.0,10.770161,10770.161 +3203,2025-06-10T09:33:00.205785-07:00,0.0,10.77784,10777.84 +3204,2025-06-10T09:33:10.977118-07:00,0.0,10.771333,10771.333 +3205,2025-06-10T09:33:21.758875-07:00,0.0,10.781757,10781.757 +3206,2025-06-10T09:33:32.527785-07:00,0.0,10.76891,10768.91 +3207,2025-06-10T09:33:43.302767-07:00,0.0,10.774982,10774.982 +3208,2025-06-10T09:33:54.078784-07:00,0.0,10.776017,10776.017 +3209,2025-06-10T09:34:04.844828-07:00,0.0,10.766044,10766.044 +3210,2025-06-10T09:34:15.622045-07:00,0.0,10.777217,10777.217 +3211,2025-06-10T09:34:26.398272-07:00,0.0,10.776227,10776.227 +3212,2025-06-10T09:34:37.170084-07:00,0.0,10.771812,10771.812 +3213,2025-06-10T09:34:47.944835-07:00,0.0,10.774751,10774.751 +3214,2025-06-10T09:34:58.714942-07:00,0.0,10.770107,10770.107 +3215,2025-06-10T09:35:09.483243-07:00,0.0,10.768301,10768.301 +3216,2025-06-10T09:35:20.257202-07:00,0.0,10.773959,10773.959 +3217,2025-06-10T09:35:31.034833-07:00,0.0,10.777631,10777.631 +3218,2025-06-10T09:35:41.804170-07:00,0.0,10.769337,10769.337 +3219,2025-06-10T09:35:52.579036-07:00,0.0,10.774866,10774.866 +3220,2025-06-10T09:36:03.353957-07:00,0.0,10.774921,10774.921 +3221,2025-06-10T09:36:14.125891-07:00,0.0,10.771934,10771.934 +3222,2025-06-10T09:36:24.899782-07:00,0.0,10.773891,10773.891 +3223,2025-06-10T09:36:35.662852-07:00,0.0,10.76307,10763.07 +3224,2025-06-10T09:36:46.434214-07:00,0.0,10.771362,10771.362 +3225,2025-06-10T09:36:57.215783-07:00,0.0,10.781569,10781.569 +3226,2025-06-10T09:37:07.981064-07:00,0.0,10.765281,10765.281 +3227,2025-06-10T09:37:18.745004-07:00,0.0,10.76394,10763.94 +3228,2025-06-10T09:37:29.514783-07:00,0.0,10.769779,10769.779 +3229,2025-06-10T09:37:40.287184-07:00,0.0,10.772401,10772.401 +3230,2025-06-10T09:37:51.053006-07:00,0.0,10.765822,10765.822 +3231,2025-06-10T09:38:01.819305-07:00,0.0,10.766299,10766.299 +3232,2025-06-10T09:38:12.584783-07:00,0.0,10.765478,10765.478 +3233,2025-06-10T09:38:17.569044-07:00,2699.0,4.984261,4984.261 +3234,2025-06-10T09:38:23.364004-07:00,2645.0,5.79496,5794.96 +3235,2025-06-10T09:38:34.129109-07:00,2397.0,10.765105,10765.105 +3236,2025-06-10T09:38:44.899948-07:00,2577.0,10.770839,10770.839 +3237,2025-06-10T09:38:55.672077-07:00,2352.0,10.772129,10772.129 +3238,2025-06-10T09:39:06.439798-07:00,2497.0,10.767721,10767.721 +3239,2025-06-10T09:39:17.211699-07:00,2513.0,10.771901,10771.901 +3240,2025-06-10T09:39:27.977388-07:00,2495.0,10.765689,10765.689 +3241,2025-06-10T09:39:38.756894-07:00,2553.0,10.779506,10779.506 +3242,2025-06-10T09:39:49.529056-07:00,2518.0,10.772162,10772.162 +3243,2025-06-10T09:40:00.293045-07:00,2475.0,10.763989,10763.989 +3244,2025-06-10T09:40:11.067094-07:00,2403.0,10.774049,10774.049 +3245,2025-06-10T09:40:21.835102-07:00,2470.0,10.768008,10768.008 +3246,2025-06-10T09:40:32.600129-07:00,2502.0,10.765027,10765.027 +3247,2025-06-10T09:40:43.369941-07:00,2512.0,10.769812,10769.812 +3248,2025-06-10T09:40:54.145112-07:00,2426.0,10.775171,10775.171 +3249,2025-06-10T09:41:04.917791-07:00,2559.0,10.772679,10772.679 +3250,2025-06-10T09:41:15.675781-07:00,2515.0,10.75799,10757.99 +3251,2025-06-10T09:41:26.446112-07:00,2483.0,10.770331,10770.331 +3252,2025-06-10T09:41:37.223030-07:00,2495.0,10.776918,10776.918 +3253,2025-06-10T09:41:47.989371-07:00,2545.0,10.766341,10766.341 +3254,2025-06-10T09:41:58.759776-07:00,2597.0,10.770405,10770.405 +3255,2025-06-10T09:42:09.530174-07:00,2559.0,10.770398,10770.398 +3256,2025-06-10T09:42:20.298784-07:00,2677.0,10.76861,10768.61 +3257,2025-06-10T09:42:31.061932-07:00,2630.0,10.763148,10763.148 +3258,2025-06-10T09:42:41.836127-07:00,2544.0,10.774195,10774.195 +3259,2025-06-10T09:42:50.414345-07:00,2384.0,8.578218,8578.218 +3260,2025-06-10T09:42:52.601843-07:00,2373.0,2.187498,2187.498 +3261,2025-06-10T09:43:03.370793-07:00,2609.0,10.76895,10768.95 +3262,2025-06-10T09:43:14.140891-07:00,2627.0,10.770098,10770.098 +3263,2025-06-10T09:43:24.910781-07:00,2635.0,10.76989,10769.89 +3264,2025-06-10T09:43:32.526403-07:00,2406.0,7.615622,7615.622 +3265,2025-06-10T09:43:35.682203-07:00,2367.0,3.1558,3155.8 +3266,2025-06-10T09:43:46.450319-07:00,2727.0,10.768116,10768.116 +3267,2025-06-10T09:43:57.213229-07:00,2545.0,10.76291,10762.91 +3268,2025-06-10T09:44:07.990011-07:00,2459.0,10.776782,10776.782 +3269,2025-06-10T09:44:18.750760-07:00,2437.0,10.760749,10760.749 +3270,2025-06-10T09:44:29.531135-07:00,2512.0,10.780375,10780.375 +3271,2025-06-10T09:44:40.297550-07:00,2379.0,10.766415,10766.415 +3272,2025-06-10T09:44:42.775243-07:00,2594.0,2.477693,2477.693 +3273,2025-06-10T09:44:51.073784-07:00,2657.0,8.298541,8298.541 +3274,2025-06-10T09:44:56.825116-07:00,767.0,5.751332,5751.332 +3275,2025-06-10T09:44:58.829094-07:00,0.0,2.003978,2003.978 +3276,2025-06-10T09:45:01.836008-07:00,143.0,3.006914,3006.914 +3277,2025-06-10T09:45:12.608037-07:00,249.0,10.772029,10772.029 +3278,2025-06-10T09:45:23.377786-07:00,195.0,10.769749,10769.749 +3279,2025-06-10T09:45:34.145143-07:00,140.0,10.767357,10767.357 +3280,2025-06-10T09:45:44.920809-07:00,256.0,10.775666,10775.666 +3281,2025-06-10T09:45:55.688775-07:00,266.0,10.767966,10767.966 +3282,2025-06-10T09:46:06.457422-07:00,143.0,10.768647,10768.647 +3283,2025-06-10T09:46:17.232916-07:00,218.0,10.775494,10775.494 +3284,2025-06-10T09:46:27.996301-07:00,199.0,10.763385,10763.385 +3285,2025-06-10T09:46:38.766779-07:00,0.0,10.770478,10770.478 +3286,2025-06-10T09:46:49.538781-07:00,0.0,10.772002,10772.002 +3287,2025-06-10T09:47:00.306380-07:00,0.0,10.767599,10767.599 +3288,2025-06-10T09:47:11.071785-07:00,0.0,10.765405,10765.405 +3289,2025-06-10T09:47:21.844093-07:00,0.0,10.772308,10772.308 +3290,2025-06-10T09:47:32.617881-07:00,0.0,10.773788,10773.788 +3291,2025-06-10T09:47:43.376782-07:00,0.0,10.758901,10758.901 +3292,2025-06-10T09:47:54.144942-07:00,0.0,10.76816,10768.16 +3293,2025-06-10T09:48:04.918828-07:00,0.0,10.773886,10773.886 +3294,2025-06-10T09:48:15.686066-07:00,0.0,10.767238,10767.238 +3295,2025-06-10T09:48:26.455022-07:00,0.0,10.768956,10768.956 +3296,2025-06-10T09:48:37.226976-07:00,0.0,10.771954,10771.954 +3297,2025-06-10T09:48:47.996361-07:00,0.0,10.769385,10769.385 +3298,2025-06-10T09:48:58.756772-07:00,0.0,10.760411,10760.411 +3299,2025-06-10T09:49:09.526093-07:00,0.0,10.769321,10769.321 +3300,2025-06-10T09:49:20.303776-07:00,0.0,10.777683,10777.683 +3301,2025-06-10T09:49:31.069526-07:00,0.0,10.76575,10765.75 +3302,2025-06-10T09:49:41.840774-07:00,0.0,10.771248,10771.248 +3303,2025-06-10T09:49:52.604783-07:00,0.0,10.764009,10764.009 +3304,2025-06-10T09:50:03.379762-07:00,0.0,10.774979,10774.979 +3305,2025-06-10T09:50:14.143341-07:00,0.0,10.763579,10763.579 +3306,2025-06-10T09:50:24.906811-07:00,0.0,10.76347,10763.47 +3307,2025-06-10T09:50:35.682040-07:00,0.0,10.775229,10775.229 +3308,2025-06-10T09:50:46.455068-07:00,0.0,10.773028,10773.028 +3309,2025-06-10T09:50:57.226056-07:00,0.0,10.770988,10770.988 +3310,2025-06-10T09:51:07.987030-07:00,0.0,10.760974,10760.974 +3311,2025-06-10T09:51:18.757965-07:00,0.0,10.770935,10770.935 +3312,2025-06-10T09:51:29.525041-07:00,0.0,10.767076,10767.076 +3313,2025-06-10T09:51:40.307893-07:00,0.0,10.782852,10782.852 +3314,2025-06-10T09:51:51.075723-07:00,0.0,10.76783,10767.83 +3315,2025-06-10T09:52:01.841990-07:00,0.0,10.766267,10766.267 +3316,2025-06-10T09:52:12.613956-07:00,0.0,10.771966,10771.966 +3317,2025-06-10T09:52:23.376688-07:00,0.0,10.762732,10762.732 +3318,2025-06-10T09:52:34.147917-07:00,0.0,10.771229,10771.229 +3319,2025-06-10T09:52:44.917592-07:00,0.0,10.769675,10769.675 +3320,2025-06-10T09:52:55.685780-07:00,0.0,10.768188,10768.188 +3321,2025-06-10T09:53:06.449598-07:00,0.0,10.763818,10763.818 +3322,2025-06-10T09:53:17.218854-07:00,0.0,10.769256,10769.256 +3323,2025-06-10T09:53:27.989838-07:00,0.0,10.770984,10770.984 +3324,2025-06-10T09:53:38.760543-07:00,0.0,10.770705,10770.705 +3325,2025-06-10T09:53:49.526784-07:00,0.0,10.766241,10766.241 +3326,2025-06-10T09:54:00.301543-07:00,0.0,10.774759,10774.759 +3327,2025-06-10T09:54:11.068537-07:00,0.0,10.766994,10766.994 +3328,2025-06-10T09:54:21.841782-07:00,0.0,10.773245,10773.245 +3329,2025-06-10T09:54:32.604541-07:00,0.0,10.762759,10762.759 +3330,2025-06-10T09:54:43.368778-07:00,0.0,10.764237,10764.237 +3331,2025-06-10T09:54:54.145629-07:00,0.0,10.776851,10776.851 +3332,2025-06-10T09:55:04.909621-07:00,0.0,10.763992,10763.992 +3333,2025-06-10T09:55:15.682442-07:00,0.0,10.772821,10772.821 +3334,2025-06-10T09:55:26.455278-07:00,0.0,10.772836,10772.836 +3335,2025-06-10T09:55:37.218112-07:00,0.0,10.762834,10762.834 +3336,2025-06-10T09:55:47.982531-07:00,0.0,10.764419,10764.419 +3337,2025-06-10T09:55:58.757573-07:00,0.0,10.775042,10775.042 +3338,2025-06-10T09:56:09.523540-07:00,0.0,10.765967,10765.967 +3339,2025-06-10T09:56:20.285543-07:00,0.0,10.762003,10762.003 +3340,2025-06-10T09:56:31.050541-07:00,0.0,10.764998,10764.998 +3341,2025-06-10T09:56:41.816987-07:00,0.0,10.766446,10766.446 +3342,2025-06-10T09:56:52.588727-07:00,0.0,10.77174,10771.74 +3343,2025-06-10T09:57:03.348700-07:00,0.0,10.759973,10759.973 +3344,2025-06-10T09:57:14.110736-07:00,0.0,10.762036,10762.036 +3345,2025-06-10T09:57:24.885542-07:00,0.0,10.774806,10774.806 +3346,2025-06-10T09:57:35.648813-07:00,0.0,10.763271,10763.271 +3347,2025-06-10T09:57:46.414127-07:00,0.0,10.765314,10765.314 +3348,2025-06-10T09:57:57.178802-07:00,0.0,10.764675,10764.675 +3349,2025-06-10T09:58:07.947874-07:00,0.0,10.769072,10769.072 +3350,2025-06-10T09:58:18.716527-07:00,0.0,10.768653,10768.653 +3351,2025-06-10T09:58:19.108152-07:00,2633.0,0.391625,391.625 +3352,2025-06-10T09:58:29.476598-07:00,2715.0,10.368446,10368.446 +3353,2025-06-10T09:58:31.146334-07:00,349.0,1.669736,1669.736 +3354,2025-06-10T09:58:40.247008-07:00,293.0,9.100674,9100.674 +3355,2025-06-10T09:58:51.011573-07:00,248.0,10.764565,10764.565 +3356,2025-06-10T09:59:01.771545-07:00,197.0,10.759972,10759.972 +3357,2025-06-10T09:59:12.547789-07:00,207.0,10.776244,10776.244 +3358,2025-06-10T09:59:23.311726-07:00,227.0,10.763937,10763.937 +3359,2025-06-10T09:59:34.077477-07:00,247.0,10.765751,10765.751 +3360,2025-06-10T09:59:44.840854-07:00,177.0,10.763377,10763.377 +3361,2025-06-10T09:59:55.604069-07:00,298.0,10.763215,10763.215 +3362,2025-06-10T10:00:06.374365-07:00,0.0,10.770296,10770.296 +3363,2025-06-10T10:00:17.138520-07:00,0.0,10.764155,10764.155 +3364,2025-06-10T10:00:27.910417-07:00,0.0,10.771897,10771.897 +3365,2025-06-10T10:00:38.681926-07:00,0.0,10.771509,10771.509 +3366,2025-06-10T10:00:49.444799-07:00,0.0,10.762873,10762.873 +3367,2025-06-10T10:01:00.205584-07:00,0.0,10.760785,10760.785 +3368,2025-06-10T10:01:10.973807-07:00,0.0,10.768223,10768.223 +3369,2025-06-10T10:01:21.742543-07:00,0.0,10.768736,10768.736 +3370,2025-06-10T10:01:32.505854-07:00,0.0,10.763311,10763.311 +3371,2025-06-10T10:01:43.272885-07:00,0.0,10.767031,10767.031 +3372,2025-06-10T10:01:54.043639-07:00,0.0,10.770754,10770.754 +3373,2025-06-10T10:02:04.810870-07:00,0.0,10.767231,10767.231 +3374,2025-06-10T10:02:15.568536-07:00,0.0,10.757666,10757.666 +3375,2025-06-10T10:02:26.338543-07:00,0.0,10.770007,10770.007 +3376,2025-06-10T10:02:37.101904-07:00,0.0,10.763361,10763.361 +3377,2025-06-10T10:02:47.862758-07:00,0.0,10.760854,10760.854 +3378,2025-06-10T10:02:58.630535-07:00,0.0,10.767777,10767.777 +3379,2025-06-10T10:03:09.393955-07:00,0.0,10.76342,10763.42 +3380,2025-06-10T10:03:20.152616-07:00,0.0,10.758661,10758.661 +3381,2025-06-10T10:03:30.935790-07:00,0.0,10.783174,10783.174 +3382,2025-06-10T10:03:41.722545-07:00,0.0,10.786755,10786.755 +3383,2025-06-10T10:03:52.508554-07:00,0.0,10.786009,10786.009 +3384,2025-06-10T10:04:03.272520-07:00,0.0,10.763966,10763.966 +3385,2025-06-10T10:04:14.036789-07:00,0.0,10.764269,10764.269 +3386,2025-06-10T10:04:24.807572-07:00,0.0,10.770783,10770.783 +3387,2025-06-10T10:04:35.574999-07:00,0.0,10.767427,10767.427 +3388,2025-06-10T10:04:46.343543-07:00,0.0,10.768544,10768.544 +3389,2025-06-10T10:04:57.108542-07:00,0.0,10.764999,10764.999 +3390,2025-06-10T10:05:07.868543-07:00,0.0,10.760001,10760.001 +3391,2025-06-10T10:05:18.632026-07:00,0.0,10.763483,10763.483 +3392,2025-06-10T10:05:29.406589-07:00,0.0,10.774563,10774.563 +3393,2025-06-10T10:05:40.163580-07:00,0.0,10.756991,10756.991 +3394,2025-06-10T10:05:50.927804-07:00,0.0,10.764224,10764.224 +3395,2025-06-10T10:06:01.695572-07:00,0.0,10.767768,10767.768 +3396,2025-06-10T10:06:12.460854-07:00,0.0,10.765282,10765.282 +3397,2025-06-10T10:06:23.216829-07:00,0.0,10.755975,10755.975 +3398,2025-06-10T10:06:33.982830-07:00,0.0,10.766001,10766.001 +3399,2025-06-10T10:06:44.750543-07:00,0.0,10.767713,10767.713 +3400,2025-06-10T10:06:55.519634-07:00,0.0,10.769091,10769.091 +3401,2025-06-10T10:07:06.278537-07:00,0.0,10.758903,10758.903 +3402,2025-06-10T10:07:17.044673-07:00,0.0,10.766136,10766.136 +3403,2025-06-10T10:07:27.809479-07:00,0.0,10.764806,10764.806 +3404,2025-06-10T10:07:38.574540-07:00,0.0,10.765061,10765.061 +3405,2025-06-10T10:07:49.339079-07:00,0.0,10.764539,10764.539 +3406,2025-06-10T10:08:00.097814-07:00,0.0,10.758735,10758.735 +3407,2025-06-10T10:08:10.869542-07:00,0.0,10.771728,10771.728 +3408,2025-06-10T10:08:21.634543-07:00,0.0,10.765001,10765.001 +3409,2025-06-10T10:08:32.398602-07:00,0.0,10.764059,10764.059 +3410,2025-06-10T10:08:43.161669-07:00,0.0,10.763067,10763.067 +3411,2025-06-10T10:08:53.927547-07:00,0.0,10.765878,10765.878 +3412,2025-06-10T10:09:04.693907-07:00,0.0,10.76636,10766.36 +3413,2025-06-10T10:09:15.445803-07:00,0.0,10.751896,10751.896 +3414,2025-06-10T10:09:26.217545-07:00,0.0,10.771742,10771.742 +3415,2025-06-10T10:09:36.974541-07:00,0.0,10.756996,10756.996 +3416,2025-06-10T10:09:47.746100-07:00,0.0,10.771559,10771.559 +3417,2025-06-10T10:09:58.509544-07:00,0.0,10.763444,10763.444 +3418,2025-06-10T10:10:09.277870-07:00,0.0,10.768326,10768.326 +3419,2025-06-10T10:10:20.037132-07:00,0.0,10.759262,10759.262 +3420,2025-06-10T10:10:30.814542-07:00,0.0,10.77741,10777.41 +3421,2025-06-10T10:10:41.582464-07:00,0.0,10.767922,10767.922 +3422,2025-06-10T10:10:52.351543-07:00,0.0,10.769079,10769.079 +3423,2025-06-10T10:11:03.110434-07:00,0.0,10.758891,10758.891 +3424,2025-06-10T10:11:13.880545-07:00,0.0,10.770111,10770.111 +3425,2025-06-10T10:11:24.642541-07:00,0.0,10.761996,10761.996 +3426,2025-06-10T10:11:35.405623-07:00,0.0,10.763082,10763.082 +3427,2025-06-10T10:11:46.164756-07:00,0.0,10.759133,10759.133 +3428,2025-06-10T10:11:56.935545-07:00,0.0,10.770789,10770.789 +3429,2025-06-10T10:12:07.697691-07:00,0.0,10.762146,10762.146 +3430,2025-06-10T10:12:18.460784-07:00,0.0,10.763093,10763.093 +3431,2025-06-10T10:12:29.225543-07:00,0.0,10.764759,10764.759 +3432,2025-06-10T10:12:39.994828-07:00,0.0,10.769285,10769.285 +3433,2025-06-10T10:12:50.760858-07:00,0.0,10.76603,10766.03 +3434,2025-06-10T10:13:01.531688-07:00,0.0,10.77083,10770.83 +3435,2025-06-10T10:13:12.297033-07:00,0.0,10.765345,10765.345 +3436,2025-06-10T10:13:23.059543-07:00,0.0,10.76251,10762.51 +3437,2025-06-10T10:13:33.825523-07:00,0.0,10.76598,10765.98 +3438,2025-06-10T10:13:44.590212-07:00,0.0,10.764689,10764.689 +3439,2025-06-10T10:13:55.356869-07:00,0.0,10.766657,10766.657 +3440,2025-06-10T10:14:06.116541-07:00,0.0,10.759672,10759.672 +3441,2025-06-10T10:14:16.885142-07:00,0.0,10.768601,10768.601 +3442,2025-06-10T10:14:27.651778-07:00,0.0,10.766636,10766.636 +3443,2025-06-10T10:14:38.417530-07:00,0.0,10.765752,10765.752 +3444,2025-06-10T10:14:49.180563-07:00,0.0,10.763033,10763.033 +3445,2025-06-10T10:14:59.955544-07:00,0.0,10.774981,10774.981 +3446,2025-06-10T10:15:10.713544-07:00,0.0,10.758,10758.0 +3447,2025-06-10T10:15:21.480931-07:00,0.0,10.767387,10767.387 +3448,2025-06-10T10:15:32.243626-07:00,0.0,10.762695,10762.695 +3449,2025-06-10T10:15:43.008541-07:00,0.0,10.764915,10764.915 +3450,2025-06-10T10:15:53.773778-07:00,0.0,10.765237,10765.237 +3451,2025-06-10T10:16:04.543301-07:00,0.0,10.769523,10769.523 +3452,2025-06-10T10:16:15.310506-07:00,0.0,10.767205,10767.205 +3453,2025-06-10T10:16:26.069823-07:00,0.0,10.759317,10759.317 +3454,2025-06-10T10:16:36.837536-07:00,0.0,10.767713,10767.713 +3455,2025-06-10T10:16:47.603535-07:00,0.0,10.765999,10765.999 +3456,2025-06-10T10:16:58.375582-07:00,0.0,10.772047,10772.047 +3457,2025-06-10T10:17:09.132692-07:00,0.0,10.75711,10757.11 +3458,2025-06-10T10:17:19.905092-07:00,0.0,10.7724,10772.4 +3459,2025-06-10T10:17:30.673028-07:00,0.0,10.767936,10767.936 +3460,2025-06-10T10:17:41.433772-07:00,0.0,10.760744,10760.744 +3461,2025-06-10T10:17:52.199306-07:00,0.0,10.765534,10765.534 +3462,2025-06-10T10:18:02.968619-07:00,0.0,10.769313,10769.313 +3463,2025-06-10T10:18:13.733537-07:00,0.0,10.764918,10764.918 +3464,2025-06-10T10:18:24.499912-07:00,0.0,10.766375,10766.375 +3465,2025-06-10T10:18:35.267543-07:00,0.0,10.767631,10767.631 +3466,2025-06-10T10:18:46.033786-07:00,0.0,10.766243,10766.243 +3467,2025-06-10T10:18:56.800893-07:00,0.0,10.767107,10767.107 +3468,2025-06-10T10:19:07.566541-07:00,0.0,10.765648,10765.648 +3469,2025-06-10T10:19:18.336111-07:00,0.0,10.76957,10769.57 +3470,2025-06-10T10:19:29.101839-07:00,0.0,10.765728,10765.728 +3471,2025-06-10T10:19:39.869920-07:00,0.0,10.768081,10768.081 +3472,2025-06-10T10:19:50.638177-07:00,0.0,10.768257,10768.257 +3473,2025-06-10T10:20:01.402804-07:00,0.0,10.764627,10764.627 +3474,2025-06-10T10:20:12.164545-07:00,0.0,10.761741,10761.741 +3475,2025-06-10T10:20:22.931876-07:00,0.0,10.767331,10767.331 +3476,2025-06-10T10:20:33.705522-07:00,0.0,10.773646,10773.646 +3477,2025-06-10T10:20:44.466541-07:00,0.0,10.761019,10761.019 +3478,2025-06-10T10:20:55.242941-07:00,0.0,10.7764,10776.4 +3479,2025-06-10T10:21:06.001582-07:00,0.0,10.758641,10758.641 +3480,2025-06-10T10:21:16.772898-07:00,0.0,10.771316,10771.316 +3481,2025-06-10T10:21:27.538545-07:00,0.0,10.765647,10765.647 +3482,2025-06-10T10:21:38.308543-07:00,0.0,10.769998,10769.998 +3483,2025-06-10T10:21:49.077154-07:00,0.0,10.768611,10768.611 +3484,2025-06-10T10:21:59.846543-07:00,0.0,10.769389,10769.389 +3485,2025-06-10T10:22:10.613835-07:00,0.0,10.767292,10767.292 +3486,2025-06-10T10:22:21.379735-07:00,0.0,10.7659,10765.9 +3487,2025-06-10T10:22:32.140676-07:00,0.0,10.760941,10760.941 +3488,2025-06-10T10:22:42.906808-07:00,0.0,10.766132,10766.132 +3489,2025-06-10T10:22:53.666624-07:00,0.0,10.759816,10759.816 +3490,2025-06-10T10:23:04.439780-07:00,0.0,10.773156,10773.156 +3491,2025-06-10T10:23:15.200832-07:00,0.0,10.761052,10761.052 +3492,2025-06-10T10:23:25.971823-07:00,0.0,10.770991,10770.991 +3493,2025-06-10T10:23:36.736543-07:00,0.0,10.76472,10764.72 +3494,2025-06-10T10:23:47.504882-07:00,0.0,10.768339,10768.339 +3495,2025-06-10T10:23:58.272586-07:00,0.0,10.767704,10767.704 +3496,2025-06-10T10:24:09.029539-07:00,0.0,10.756953,10756.953 +3497,2025-06-10T10:24:19.801545-07:00,0.0,10.772006,10772.006 +3498,2025-06-10T10:24:30.558530-07:00,0.0,10.756985,10756.985 +3499,2025-06-10T10:24:41.323543-07:00,0.0,10.765013,10765.013 +3500,2025-06-10T10:24:52.095617-07:00,0.0,10.772074,10772.074 +3501,2025-06-10T10:25:02.860546-07:00,0.0,10.764929,10764.929 +3502,2025-06-10T10:25:13.618539-07:00,0.0,10.757993,10757.993 +3503,2025-06-10T10:25:24.392545-07:00,0.0,10.774006,10774.006 +3504,2025-06-10T10:25:35.154544-07:00,0.0,10.761999,10761.999 +3505,2025-06-10T10:25:45.911543-07:00,0.0,10.756999,10756.999 +3506,2025-06-10T10:25:56.677727-07:00,0.0,10.766184,10766.184 +3507,2025-06-10T10:26:07.442852-07:00,0.0,10.765125,10765.125 +3508,2025-06-10T10:26:18.200827-07:00,0.0,10.757975,10757.975 +3509,2025-06-10T10:26:28.969874-07:00,0.0,10.769047,10769.047 +3510,2025-06-10T10:26:39.736542-07:00,0.0,10.766668,10766.668 +3511,2025-06-10T10:26:50.490543-07:00,0.0,10.754001,10754.001 +3512,2025-06-10T10:27:01.261209-07:00,0.0,10.770666,10770.666 +3513,2025-06-10T10:27:12.027547-07:00,0.0,10.766338,10766.338 +3514,2025-06-10T10:27:22.783809-07:00,0.0,10.756262,10756.262 +3515,2025-06-10T10:27:33.552561-07:00,0.0,10.768752,10768.752 +3516,2025-06-10T10:27:44.316800-07:00,0.0,10.764239,10764.239 +3517,2025-06-10T10:27:55.075546-07:00,0.0,10.758746,10758.746 +3518,2025-06-10T10:28:05.843803-07:00,0.0,10.768257,10768.257 +3519,2025-06-10T10:28:16.608885-07:00,0.0,10.765082,10765.082 +3520,2025-06-10T10:28:27.373543-07:00,0.0,10.764658,10764.658 +3521,2025-06-10T10:28:38.146929-07:00,0.0,10.773386,10773.386 +3522,2025-06-10T10:28:48.905588-07:00,0.0,10.758659,10758.659 +3523,2025-06-10T10:28:59.668576-07:00,0.0,10.762988,10762.988 +3524,2025-06-10T10:29:10.429541-07:00,0.0,10.760965,10760.965 +3525,2025-06-10T10:29:21.199963-07:00,0.0,10.770422,10770.422 +3526,2025-06-10T10:29:31.964594-07:00,0.0,10.764631,10764.631 +3527,2025-06-10T10:29:42.722545-07:00,0.0,10.757951,10757.951 +3528,2025-06-10T10:29:53.488834-07:00,0.0,10.766289,10766.289 +3529,2025-06-10T10:30:04.257217-07:00,0.0,10.768383,10768.383 +3530,2025-06-10T10:30:15.026856-07:00,0.0,10.769639,10769.639 +3531,2025-06-10T10:30:25.788293-07:00,0.0,10.761437,10761.437 +3532,2025-06-10T10:30:36.555696-07:00,0.0,10.767403,10767.403 +3533,2025-06-10T10:30:47.314810-07:00,0.0,10.759114,10759.114 +3534,2025-06-10T10:30:58.086696-07:00,0.0,10.771886,10771.886 +3535,2025-06-10T10:31:08.841799-07:00,0.0,10.755103,10755.103 +3536,2025-06-10T10:31:19.616380-07:00,0.0,10.774581,10774.581 +3537,2025-06-10T10:31:30.377993-07:00,0.0,10.761613,10761.613 +3538,2025-06-10T10:31:41.140543-07:00,0.0,10.76255,10762.55 +3539,2025-06-10T10:31:51.906743-07:00,0.0,10.7662,10766.2 +3540,2025-06-10T10:32:02.665891-07:00,0.0,10.759148,10759.148 +3541,2025-06-10T10:32:13.430542-07:00,0.0,10.764651,10764.651 +3542,2025-06-10T10:32:24.201823-07:00,0.0,10.771281,10771.281 +3543,2025-06-10T10:32:34.963066-07:00,0.0,10.761243,10761.243 +3544,2025-06-10T10:32:45.722539-07:00,0.0,10.759473,10759.473 +3545,2025-06-10T10:32:56.492694-07:00,0.0,10.770155,10770.155 +3546,2025-06-10T10:33:07.256000-07:00,0.0,10.763306,10763.306 +3547,2025-06-10T10:33:18.016176-07:00,0.0,10.760176,10760.176 +3548,2025-06-10T10:33:28.779544-07:00,0.0,10.763368,10763.368 +3549,2025-06-10T10:33:39.550724-07:00,0.0,10.77118,10771.18 +3550,2025-06-10T10:33:50.314545-07:00,0.0,10.763821,10763.821 +3551,2025-06-10T10:34:01.072530-07:00,0.0,10.757985,10757.985 +3552,2025-06-10T10:34:11.840839-07:00,0.0,10.768309,10768.309 +3553,2025-06-10T10:34:22.603543-07:00,0.0,10.762704,10762.704 +3554,2025-06-10T10:34:33.372523-07:00,0.0,10.76898,10768.98 +3555,2025-06-10T10:34:44.134907-07:00,0.0,10.762384,10762.384 +3556,2025-06-10T10:34:54.887874-07:00,0.0,10.752967,10752.967 +3557,2025-06-10T10:35:05.653759-07:00,0.0,10.765885,10765.885 +3558,2025-06-10T10:35:16.412692-07:00,0.0,10.758933,10758.933 +3559,2025-06-10T10:35:27.179876-07:00,0.0,10.767184,10767.184 +3560,2025-06-10T10:35:37.940543-07:00,0.0,10.760667,10760.667 +3561,2025-06-10T10:35:48.707664-07:00,0.0,10.767121,10767.121 +3562,2025-06-10T10:35:59.463541-07:00,0.0,10.755877,10755.877 +3563,2025-06-10T10:36:10.230540-07:00,0.0,10.766999,10766.999 +3564,2025-06-10T10:36:20.990650-07:00,0.0,10.76011,10760.11 +3565,2025-06-10T10:36:31.747765-07:00,0.0,10.757115,10757.115 +3566,2025-06-10T10:36:42.515856-07:00,0.0,10.768091,10768.091 +3567,2025-06-10T10:36:53.278544-07:00,0.0,10.762688,10762.688 +3568,2025-06-10T10:37:04.042806-07:00,0.0,10.764262,10764.262 +3569,2025-06-10T10:37:14.807993-07:00,0.0,10.765187,10765.187 +3570,2025-06-10T10:37:25.564961-07:00,0.0,10.756968,10756.968 +3571,2025-06-10T10:37:36.327795-07:00,0.0,10.762834,10762.834 +3572,2025-06-10T10:37:47.095666-07:00,0.0,10.767871,10767.871 +3573,2025-06-10T10:37:57.863541-07:00,0.0,10.767875,10767.875 +3574,2025-06-10T10:38:08.623543-07:00,0.0,10.760002,10760.002 +3575,2025-06-10T10:38:19.384425-07:00,0.0,10.760882,10760.882 +3576,2025-06-10T10:38:30.148975-07:00,0.0,10.76455,10764.55 +3577,2025-06-10T10:38:40.914906-07:00,0.0,10.765931,10765.931 +3578,2025-06-10T10:38:51.674541-07:00,0.0,10.759635,10759.635 +3579,2025-06-10T10:39:02.435570-07:00,0.0,10.761029,10761.029 +3580,2025-06-10T10:39:13.201774-07:00,0.0,10.766204,10766.204 +3581,2025-06-10T10:39:23.968545-07:00,0.0,10.766771,10766.771 +3582,2025-06-10T10:39:34.724544-07:00,0.0,10.755999,10755.999 +3583,2025-06-10T10:39:45.492883-07:00,0.0,10.768339,10768.339 +3584,2025-06-10T10:39:56.253705-07:00,0.0,10.760822,10760.822 +3585,2025-06-10T10:40:07.015547-07:00,0.0,10.761842,10761.842 +3586,2025-06-10T10:40:17.782782-07:00,0.0,10.767235,10767.235 +3587,2025-06-10T10:40:28.550663-07:00,0.0,10.767881,10767.881 +3588,2025-06-10T10:40:39.309791-07:00,0.0,10.759128,10759.128 +3589,2025-06-10T10:40:50.072151-07:00,0.0,10.76236,10762.36 +3590,2025-06-10T10:41:00.831135-07:00,0.0,10.758984,10758.984 +3591,2025-06-10T10:41:11.591651-07:00,0.0,10.760516,10760.516 +3592,2025-06-10T10:41:22.359952-07:00,0.0,10.768301,10768.301 +3593,2025-06-10T10:41:33.125524-07:00,0.0,10.765572,10765.572 +3594,2025-06-10T10:41:43.880545-07:00,0.0,10.755021,10755.021 +3595,2025-06-10T10:41:54.644702-07:00,0.0,10.764157,10764.157 +3596,2025-06-10T10:42:05.408683-07:00,0.0,10.763981,10763.981 +3597,2025-06-10T10:42:16.178562-07:00,0.0,10.769879,10769.879 +3598,2025-06-10T10:42:26.935702-07:00,0.0,10.75714,10757.14 +3599,2025-06-10T10:42:37.702874-07:00,0.0,10.767172,10767.172 +3600,2025-06-10T10:42:48.463808-07:00,0.0,10.760934,10760.934 +3601,2025-06-10T10:42:59.223535-07:00,0.0,10.759727,10759.727 +3602,2025-06-10T10:43:09.982546-07:00,0.0,10.759011,10759.011 +3603,2025-06-10T10:43:20.745430-07:00,0.0,10.762884,10762.884 +3604,2025-06-10T10:43:31.506927-07:00,0.0,10.761497,10761.497 +3605,2025-06-10T10:43:42.266787-07:00,0.0,10.75986,10759.86 +3606,2025-06-10T10:43:53.040290-07:00,0.0,10.773503,10773.503 +3607,2025-06-10T10:44:03.793828-07:00,0.0,10.753538,10753.538 +3608,2025-06-10T10:44:14.569352-07:00,0.0,10.775524,10775.524 +3609,2025-06-10T10:44:25.330541-07:00,0.0,10.761189,10761.189 +3610,2025-06-10T10:44:36.086813-07:00,0.0,10.756272,10756.272 +3611,2025-06-10T10:44:46.856683-07:00,0.0,10.76987,10769.87 +3612,2025-06-10T10:44:57.611262-07:00,0.0,10.754579,10754.579 +3613,2025-06-10T10:45:08.379822-07:00,0.0,10.76856,10768.56 +3614,2025-06-10T10:45:19.137531-07:00,0.0,10.757709,10757.709 +3615,2025-06-10T10:45:29.906535-07:00,0.0,10.769004,10769.004 +3616,2025-06-10T10:45:40.659541-07:00,0.0,10.753006,10753.006 +3617,2025-06-10T10:45:51.424878-07:00,0.0,10.765337,10765.337 +3618,2025-06-10T10:46:02.197700-07:00,0.0,10.772822,10772.822 +3619,2025-06-10T10:46:12.960113-07:00,0.0,10.762413,10762.413 +3620,2025-06-10T10:46:23.729684-07:00,0.0,10.769571,10769.571 +3621,2025-06-10T10:46:34.492536-07:00,0.0,10.762852,10762.852 +3622,2025-06-10T10:46:45.260463-07:00,0.0,10.767927,10767.927 +3623,2025-06-10T10:46:56.029617-07:00,0.0,10.769154,10769.154 +3624,2025-06-10T10:47:06.795545-07:00,0.0,10.765928,10765.928 +3625,2025-06-10T10:47:17.556798-07:00,0.0,10.761253,10761.253 +3626,2025-06-10T10:47:28.326545-07:00,0.0,10.769747,10769.747 +3627,2025-06-10T10:47:39.089547-07:00,0.0,10.763002,10763.002 +3628,2025-06-10T10:47:49.851807-07:00,0.0,10.76226,10762.26 +3629,2025-06-10T10:48:00.616533-07:00,0.0,10.764726,10764.726 +3630,2025-06-10T10:48:11.381540-07:00,0.0,10.765007,10765.007 +3631,2025-06-10T10:48:22.149919-07:00,0.0,10.768379,10768.379 +3632,2025-06-10T10:48:32.915772-07:00,0.0,10.765853,10765.853 +3633,2025-06-10T10:48:43.675704-07:00,0.0,10.759932,10759.932 +3634,2025-06-10T10:48:54.449714-07:00,0.0,10.77401,10774.01 +3635,2025-06-10T10:49:05.207830-07:00,0.0,10.758116,10758.116 +3636,2025-06-10T10:49:15.968549-07:00,0.0,10.760719,10760.719 +3637,2025-06-10T10:49:26.739813-07:00,0.0,10.771264,10771.264 +3638,2025-06-10T10:49:37.505786-07:00,0.0,10.765973,10765.973 +3639,2025-06-10T10:49:48.269532-07:00,0.0,10.763746,10763.746 +3640,2025-06-10T10:49:59.040192-07:00,0.0,10.77066,10770.66 +3641,2025-06-10T10:50:09.794545-07:00,0.0,10.754353,10754.353 +3642,2025-06-10T10:50:20.562778-07:00,0.0,10.768233,10768.233 +3643,2025-06-10T10:50:31.328841-07:00,0.0,10.766063,10766.063 +3644,2025-06-10T10:50:42.094798-07:00,0.0,10.765957,10765.957 +3645,2025-06-10T10:50:52.856535-07:00,0.0,10.761737,10761.737 +3646,2025-06-10T10:51:03.618762-07:00,0.0,10.762227,10762.227 +3647,2025-06-10T10:51:14.382788-07:00,0.0,10.764026,10764.026 +3648,2025-06-10T10:51:25.141893-07:00,0.0,10.759105,10759.105 +3649,2025-06-10T10:51:35.904814-07:00,0.0,10.762921,10762.921 +3650,2025-06-10T10:51:46.671071-07:00,0.0,10.766257,10766.257 +3651,2025-06-10T10:51:57.434106-07:00,0.0,10.763035,10763.035 +3652,2025-06-10T10:52:08.187812-07:00,0.0,10.753706,10753.706 +3653,2025-06-10T10:52:18.957079-07:00,0.0,10.769267,10769.267 +3654,2025-06-10T10:52:29.716098-07:00,0.0,10.759019,10759.019 +3655,2025-06-10T10:52:40.481816-07:00,0.0,10.765718,10765.718 +3656,2025-06-10T10:52:51.241273-07:00,0.0,10.759457,10759.457 +3657,2025-06-10T10:53:02.007820-07:00,0.0,10.766547,10766.547 +3658,2025-06-10T10:53:12.763878-07:00,0.0,10.756058,10756.058 +3659,2025-06-10T10:53:23.530861-07:00,0.0,10.766983,10766.983 +3660,2025-06-10T10:53:34.289669-07:00,0.0,10.758808,10758.808 +3661,2025-06-10T10:53:45.055216-07:00,0.0,10.765547,10765.547 +3662,2025-06-10T10:53:55.818367-07:00,0.0,10.763151,10763.151 +3663,2025-06-10T10:54:06.578842-07:00,0.0,10.760475,10760.475 +3664,2025-06-10T10:54:17.334254-07:00,0.0,10.755412,10755.412 +3665,2025-06-10T10:54:28.104964-07:00,0.0,10.77071,10770.71 +3666,2025-06-10T10:54:38.872816-07:00,0.0,10.767852,10767.852 +3667,2025-06-10T10:54:49.634353-07:00,0.0,10.761537,10761.537 +3668,2025-06-10T10:55:00.397824-07:00,0.0,10.763471,10763.471 +3669,2025-06-10T10:55:11.158820-07:00,0.0,10.760996,10760.996 +3670,2025-06-10T10:55:21.926164-07:00,0.0,10.767344,10767.344 +3671,2025-06-10T10:55:32.693818-07:00,0.0,10.767654,10767.654 +3672,2025-06-10T10:55:43.452001-07:00,0.0,10.758183,10758.183 +3673,2025-06-10T10:55:54.217107-07:00,0.0,10.765106,10765.106 +3674,2025-06-10T10:55:58.822417-07:00,2181.0,4.60531,4605.31 +3675,2025-06-10T10:56:00.832666-07:00,2694.0,2.010249,2010.249 +3676,2025-06-10T10:56:04.981877-07:00,2656.0,4.149211,4149.211 +3677,2025-06-10T10:56:15.740973-07:00,2777.0,10.759096,10759.096 +3678,2025-06-10T10:56:26.509479-07:00,2687.0,10.768506,10768.506 +3679,2025-06-10T10:56:37.267091-07:00,2769.0,10.757612,10757.612 +3680,2025-06-10T10:56:48.027986-07:00,2765.0,10.760895,10760.895 +3681,2025-06-10T10:56:58.793881-07:00,2763.0,10.765895,10765.895 +3682,2025-06-10T10:57:09.554568-07:00,2651.0,10.760687,10760.687 +3683,2025-06-10T10:57:20.325853-07:00,2724.0,10.771285,10771.285 +3684,2025-06-10T10:57:31.084810-07:00,2728.0,10.758957,10758.957 +3685,2025-06-10T10:57:41.843164-07:00,2684.0,10.758354,10758.354 +3686,2025-06-10T10:57:52.608281-07:00,2547.0,10.765117,10765.117 +3687,2025-06-10T10:58:03.374930-07:00,2620.0,10.766649,10766.649 +3688,2025-06-10T10:58:14.136046-07:00,2595.0,10.761116,10761.116 +3689,2025-06-10T10:58:24.902186-07:00,2620.0,10.76614,10766.14 +3690,2025-06-10T10:58:35.656158-07:00,2538.0,10.753972,10753.972 +3691,2025-06-10T10:58:46.426095-07:00,2587.0,10.769937,10769.937 +3692,2025-06-10T10:58:57.189339-07:00,2661.0,10.763244,10763.244 +3693,2025-06-10T10:59:07.953066-07:00,2695.0,10.763727,10763.727 +3694,2025-06-10T10:59:18.723082-07:00,2730.0,10.770016,10770.016 +3695,2025-06-10T10:59:29.479615-07:00,2713.0,10.756533,10756.533 +3696,2025-06-10T10:59:40.237284-07:00,2683.0,10.757669,10757.669 +3697,2025-06-10T10:59:50.998951-07:00,2675.0,10.761667,10761.667 +3698,2025-06-10T11:00:01.768931-07:00,2640.0,10.76998,10769.98 +3699,2025-06-10T11:00:12.529129-07:00,2727.0,10.760198,10760.198 +3700,2025-06-10T11:00:23.291820-07:00,2699.0,10.762691,10762.691 +3701,2025-06-10T11:00:34.055086-07:00,2671.0,10.763266,10763.266 +3702,2025-06-10T11:00:44.818105-07:00,2685.0,10.763019,10763.019 +3703,2025-06-10T11:00:55.590818-07:00,2652.0,10.772713,10772.713 +3704,2025-06-10T11:01:06.359110-07:00,2672.0,10.768292,10768.292 +3705,2025-06-10T11:01:17.126933-07:00,2617.0,10.767823,10767.823 +3706,2025-06-10T11:01:27.887820-07:00,2605.0,10.760887,10760.887 +3707,2025-06-10T11:01:29.777724-07:00,0.0,1.889904,1889.904 +3708,2025-06-10T11:01:38.656915-07:00,258.0,8.879191,8879.191 +3709,2025-06-10T11:01:49.432071-07:00,170.0,10.775156,10775.156 +3710,2025-06-10T11:02:00.193939-07:00,265.0,10.761868,10761.868 +3711,2025-06-10T11:02:10.966822-07:00,289.0,10.772883,10772.883 +3712,2025-06-10T11:02:21.739912-07:00,150.0,10.77309,10773.09 +3713,2025-06-10T11:02:32.512184-07:00,150.0,10.772272,10772.272 +3714,2025-06-10T11:02:43.276052-07:00,242.0,10.763868,10763.868 +3715,2025-06-10T11:02:54.045106-07:00,251.0,10.769054,10769.054 +3716,2025-06-10T11:03:04.087254-07:00,0.0,10.042148,10042.148 +3717,2025-06-10T11:03:04.819117-07:00,0.0,0.731863,731.863 +3718,2025-06-10T11:03:15.581816-07:00,0.0,10.762699,10762.699 +3719,2025-06-10T11:03:26.353438-07:00,0.0,10.771622,10771.622 +3720,2025-06-10T11:03:37.123816-07:00,0.0,10.770378,10770.378 +3721,2025-06-10T11:03:47.896065-07:00,0.0,10.772249,10772.249 +3722,2025-06-10T11:03:58.659808-07:00,0.0,10.763743,10763.743 +3723,2025-06-10T11:04:09.431814-07:00,0.0,10.772006,10772.006 +3724,2025-06-10T11:04:20.194229-07:00,0.0,10.762415,10762.415 +3725,2025-06-10T11:04:30.972816-07:00,0.0,10.778587,10778.587 +3726,2025-06-10T11:04:41.736112-07:00,0.0,10.763296,10763.296 +3727,2025-06-10T11:04:52.505794-07:00,0.0,10.769682,10769.682 +3728,2025-06-10T11:05:03.277528-07:00,0.0,10.771734,10771.734 +3729,2025-06-10T11:05:14.040811-07:00,0.0,10.763283,10763.283 +3730,2025-06-10T11:05:24.807043-07:00,0.0,10.766232,10766.232 +3731,2025-06-10T11:05:35.575079-07:00,0.0,10.768036,10768.036 +3732,2025-06-10T11:05:46.342811-07:00,0.0,10.767732,10767.732 +3733,2025-06-10T11:05:57.113875-07:00,0.0,10.771064,10771.064 +3734,2025-06-10T11:06:07.885822-07:00,0.0,10.771947,10771.947 +3735,2025-06-10T11:06:18.654798-07:00,0.0,10.768976,10768.976 +3736,2025-06-10T11:06:29.424867-07:00,0.0,10.770069,10770.069 +3737,2025-06-10T11:06:40.201823-07:00,0.0,10.776956,10776.956 +3738,2025-06-10T11:06:50.965091-07:00,0.0,10.763268,10763.268 +3739,2025-06-10T11:07:01.744050-07:00,0.0,10.778959,10778.959 +3740,2025-06-10T11:07:12.514407-07:00,0.0,10.770357,10770.357 +3741,2025-06-10T11:07:23.276888-07:00,0.0,10.762481,10762.481 +3742,2025-06-10T11:07:34.056268-07:00,0.0,10.77938,10779.38 +3743,2025-06-10T11:07:44.823838-07:00,0.0,10.76757,10767.57 +3744,2025-06-10T11:07:55.591816-07:00,0.0,10.767978,10767.978 +3745,2025-06-10T11:08:06.373071-07:00,0.0,10.781255,10781.255 +3746,2025-06-10T11:08:16.855438-07:00,2631.0,10.482367,10482.367 +3747,2025-06-10T11:08:17.141197-07:00,2631.0,0.285759,285.759 +3748,2025-06-10T11:08:27.914062-07:00,2633.0,10.772865,10772.865 +3749,2025-06-10T11:08:38.690028-07:00,2559.0,10.775966,10775.966 +3750,2025-06-10T11:08:49.455183-07:00,2711.0,10.765155,10765.155 +3751,2025-06-10T11:09:00.227085-07:00,2655.0,10.771902,10771.902 +3752,2025-06-10T11:09:10.998105-07:00,2727.0,10.77102,10771.02 +3753,2025-06-10T11:09:21.766816-07:00,2678.0,10.768711,10768.711 +3754,2025-06-10T11:09:32.544023-07:00,2736.0,10.777207,10777.207 +3755,2025-06-10T11:09:43.316972-07:00,2701.0,10.772949,10772.949 +3756,2025-06-10T11:09:54.085129-07:00,2734.0,10.768157,10768.157 +3757,2025-06-10T11:10:04.845183-07:00,2687.0,10.760054,10760.054 +3758,2025-06-10T11:10:15.621810-07:00,2736.0,10.776627,10776.627 +3759,2025-06-10T11:10:26.391812-07:00,2726.0,10.770002,10770.002 +3760,2025-06-10T11:10:37.155816-07:00,2679.0,10.764004,10764.004 +3761,2025-06-10T11:10:47.932806-07:00,2690.0,10.77699,10776.99 +3762,2025-06-10T11:10:58.696808-07:00,2725.0,10.764002,10764.002 +3763,2025-06-10T11:11:09.467850-07:00,2629.0,10.771042,10771.042 +3764,2025-06-10T11:11:19.309157-07:00,545.0,9.841307,9841.307 +3765,2025-06-10T11:11:20.244818-07:00,545.0,0.935661,935.661 +3766,2025-06-10T11:11:21.311895-07:00,0.0,1.067077,1067.077 +3767,2025-06-10T11:11:31.013445-07:00,221.0,9.70155,9701.55 +3768,2025-06-10T11:11:41.779454-07:00,199.0,10.766009,10766.009 +3769,2025-06-10T11:11:52.551338-07:00,152.0,10.771884,10771.884 +3770,2025-06-10T11:12:03.326795-07:00,274.0,10.775457,10775.457 +3771,2025-06-10T11:12:14.099077-07:00,278.0,10.772282,10772.282 +3772,2025-06-10T11:12:24.862213-07:00,291.0,10.763136,10763.136 +3773,2025-06-10T11:12:35.633378-07:00,229.0,10.771165,10771.165 +3774,2025-06-10T11:12:46.409646-07:00,291.0,10.776268,10776.268 +3775,2025-06-10T11:12:55.576082-07:00,0.0,9.166436,9166.436 +3776,2025-06-10T11:12:57.181970-07:00,0.0,1.605888,1605.888 +3777,2025-06-10T11:13:07.944818-07:00,0.0,10.762848,10762.848 +3778,2025-06-10T11:13:18.712619-07:00,0.0,10.767801,10767.801 +3779,2025-06-10T11:13:29.484818-07:00,0.0,10.772199,10772.199 +3780,2025-06-10T11:13:40.252157-07:00,0.0,10.767339,10767.339 +3781,2025-06-10T11:13:51.025074-07:00,0.0,10.772917,10772.917 +3782,2025-06-10T11:14:01.785104-07:00,0.0,10.76003,10760.03 +3783,2025-06-10T11:14:12.557430-07:00,0.0,10.772326,10772.326 +3784,2025-06-10T11:14:23.322818-07:00,0.0,10.765388,10765.388 +3785,2025-06-10T11:14:34.088446-07:00,0.0,10.765628,10765.628 +3786,2025-06-10T11:14:44.855820-07:00,0.0,10.767374,10767.374 +3787,2025-06-10T11:14:55.623054-07:00,0.0,10.767234,10767.234 +3788,2025-06-10T11:15:06.380975-07:00,0.0,10.757921,10757.921 +3789,2025-06-10T11:15:17.155372-07:00,0.0,10.774397,10774.397 +3790,2025-06-10T11:15:27.919801-07:00,0.0,10.764429,10764.429 +3791,2025-06-10T11:15:38.693061-07:00,0.0,10.77326,10773.26 +3792,2025-06-10T11:15:49.458820-07:00,0.0,10.765759,10765.759 +3793,2025-06-10T11:16:00.229387-07:00,0.0,10.770567,10770.567 +3794,2025-06-10T11:16:10.990140-07:00,0.0,10.760753,10760.753 +3795,2025-06-10T11:16:21.759990-07:00,0.0,10.76985,10769.85 +3796,2025-06-10T11:16:32.532406-07:00,0.0,10.772416,10772.416 +3797,2025-06-10T11:16:43.294059-07:00,0.0,10.761653,10761.653 +3798,2025-06-10T11:16:54.063051-07:00,0.0,10.768992,10768.992 +3799,2025-06-10T11:17:04.829205-07:00,0.0,10.766154,10766.154 +3800,2025-06-10T11:17:15.597898-07:00,0.0,10.768693,10768.693 +3801,2025-06-10T11:17:26.373140-07:00,0.0,10.775242,10775.242 +3802,2025-06-10T11:17:37.145131-07:00,0.0,10.771991,10771.991 +3803,2025-06-10T11:17:47.914309-07:00,0.0,10.769178,10769.178 +3804,2025-06-10T11:17:58.681803-07:00,0.0,10.767494,10767.494 +3805,2025-06-10T11:18:09.461160-07:00,0.0,10.779357,10779.357 +3806,2025-06-10T11:18:20.224063-07:00,0.0,10.762903,10762.903 +3807,2025-06-10T11:18:30.998865-07:00,0.0,10.774802,10774.802 +3808,2025-06-10T11:18:41.766197-07:00,0.0,10.767332,10767.332 +3809,2025-06-10T11:18:52.538860-07:00,0.0,10.772663,10772.663 +3810,2025-06-10T11:19:03.308562-07:00,0.0,10.769702,10769.702 +3811,2025-06-10T11:19:14.073395-07:00,0.0,10.764833,10764.833 +3812,2025-06-10T11:19:24.838085-07:00,0.0,10.76469,10764.69 +3813,2025-06-10T11:19:35.609151-07:00,0.0,10.771066,10771.066 +3814,2025-06-10T11:19:46.368818-07:00,0.0,10.759667,10759.667 +3815,2025-06-10T11:19:57.144204-07:00,0.0,10.775386,10775.386 +3816,2025-06-10T11:20:07.906115-07:00,0.0,10.761911,10761.911 +3817,2025-06-10T11:20:18.683787-07:00,0.0,10.777672,10777.672 +3818,2025-06-10T11:20:29.447243-07:00,0.0,10.763456,10763.456 +3819,2025-06-10T11:20:40.219091-07:00,0.0,10.771848,10771.848 +3820,2025-06-10T11:20:50.977181-07:00,0.0,10.75809,10758.09 +3821,2025-06-10T11:21:01.752430-07:00,0.0,10.775249,10775.249 +3822,2025-06-10T11:21:12.521062-07:00,0.0,10.768632,10768.632 +3823,2025-06-10T11:21:23.285269-07:00,0.0,10.764207,10764.207 +3824,2025-06-10T11:21:34.048218-07:00,0.0,10.762949,10762.949 +3825,2025-06-10T11:21:44.820860-07:00,0.0,10.772642,10772.642 +3826,2025-06-10T11:21:55.579132-07:00,0.0,10.758272,10758.272 +3827,2025-06-10T11:22:06.368060-07:00,0.0,10.788928,10788.928 +3828,2025-06-10T11:22:17.152820-07:00,0.0,10.78476,10784.76 +3829,2025-06-10T11:22:27.931804-07:00,0.0,10.778984,10778.984 +3830,2025-06-10T11:22:38.730351-07:00,0.0,10.798547,10798.547 +3831,2025-06-10T11:22:49.509820-07:00,0.0,10.779469,10779.469 +3832,2025-06-10T11:23:00.305820-07:00,0.0,10.796,10796.0 +3833,2025-06-10T11:23:11.093826-07:00,0.0,10.788006,10788.006 +3834,2025-06-10T11:23:21.880789-07:00,0.0,10.786963,10786.963 +3835,2025-06-10T11:23:32.676441-07:00,0.0,10.795652,10795.652 +3836,2025-06-10T11:23:43.454818-07:00,0.0,10.778377,10778.377 +3837,2025-06-10T11:23:54.240084-07:00,0.0,10.785266,10785.266 +3838,2025-06-10T11:24:05.006816-07:00,0.0,10.766732,10766.732 +3839,2025-06-10T11:24:15.773160-07:00,0.0,10.766344,10766.344 +3840,2025-06-10T11:24:26.539851-07:00,0.0,10.766691,10766.691 +3841,2025-06-10T11:24:37.305328-07:00,0.0,10.765477,10765.477 +3842,2025-06-10T11:24:48.076809-07:00,0.0,10.771481,10771.481 +3843,2025-06-10T11:24:58.841794-07:00,0.0,10.764985,10764.985 +3844,2025-06-10T11:25:09.605119-07:00,0.0,10.763325,10763.325 +3845,2025-06-10T11:25:20.370214-07:00,0.0,10.765095,10765.095 +3846,2025-06-10T11:25:31.142212-07:00,0.0,10.771998,10771.998 +3847,2025-06-10T11:25:41.913978-07:00,0.0,10.771766,10771.766 +3848,2025-06-10T11:25:52.685020-07:00,0.0,10.771042,10771.042 +3849,2025-06-10T11:26:03.453158-07:00,0.0,10.768138,10768.138 +3850,2025-06-10T11:26:14.214820-07:00,0.0,10.761662,10761.662 +3851,2025-06-10T11:26:24.983028-07:00,0.0,10.768208,10768.208 +3852,2025-06-10T11:26:35.751818-07:00,0.0,10.76879,10768.79 +3853,2025-06-10T11:26:46.516810-07:00,0.0,10.764992,10764.992 +3854,2025-06-10T11:26:57.289376-07:00,0.0,10.772566,10772.566 +3855,2025-06-10T11:27:08.049862-07:00,0.0,10.760486,10760.486 +3856,2025-06-10T11:27:18.820051-07:00,0.0,10.770189,10770.189 +3857,2025-06-10T11:27:29.590970-07:00,0.0,10.770919,10770.919 +3858,2025-06-10T11:27:40.353219-07:00,0.0,10.762249,10762.249 +3859,2025-06-10T11:27:51.122894-07:00,0.0,10.769675,10769.675 +3860,2025-06-10T11:28:01.892821-07:00,0.0,10.769927,10769.927 +3861,2025-06-10T11:28:12.655822-07:00,0.0,10.763001,10763.001 +3862,2025-06-10T11:28:23.424113-07:00,0.0,10.768291,10768.291 +3863,2025-06-10T11:28:34.190820-07:00,0.0,10.766707,10766.707 +3864,2025-06-10T11:28:44.952817-07:00,0.0,10.761997,10761.997 +3865,2025-06-10T11:28:55.717083-07:00,0.0,10.764266,10764.266 +3866,2025-06-10T11:29:06.493980-07:00,0.0,10.776897,10776.897 +3867,2025-06-10T11:29:17.258102-07:00,0.0,10.764122,10764.122 +3868,2025-06-10T11:29:28.020980-07:00,0.0,10.762878,10762.878 +3869,2025-06-10T11:29:38.794881-07:00,0.0,10.773901,10773.901 +3870,2025-06-10T11:29:49.560136-07:00,0.0,10.765255,10765.255 +3871,2025-06-10T11:30:00.325115-07:00,0.0,10.764979,10764.979 +3872,2025-06-10T11:30:11.093080-07:00,0.0,10.767965,10767.965 +3873,2025-06-10T11:30:21.854072-07:00,0.0,10.760992,10760.992 +3874,2025-06-10T11:30:32.615820-07:00,0.0,10.761748,10761.748 +3875,2025-06-10T11:30:43.390816-07:00,0.0,10.774996,10774.996 +3876,2025-06-10T11:30:54.157193-07:00,0.0,10.766377,10766.377 +3877,2025-06-10T11:31:04.922375-07:00,0.0,10.765182,10765.182 +3878,2025-06-10T11:31:15.692453-07:00,0.0,10.770078,10770.078 +3879,2025-06-10T11:31:26.463614-07:00,0.0,10.771161,10771.161 +3880,2025-06-10T11:31:37.221063-07:00,0.0,10.757449,10757.449 +3881,2025-06-10T11:31:47.987773-07:00,0.0,10.76671,10766.71 +3882,2025-06-10T11:31:58.761819-07:00,0.0,10.774046,10774.046 +3883,2025-06-10T11:32:09.534371-07:00,0.0,10.772552,10772.552 +3884,2025-06-10T11:32:20.295936-07:00,0.0,10.761565,10761.565 +3885,2025-06-10T11:32:31.066030-07:00,0.0,10.770094,10770.094 +3886,2025-06-10T11:32:41.834838-07:00,0.0,10.768808,10768.808 +3887,2025-06-10T11:32:52.601080-07:00,0.0,10.766242,10766.242 +3888,2025-06-10T11:33:03.360795-07:00,0.0,10.759715,10759.715 +3889,2025-06-10T11:33:14.127391-07:00,0.0,10.766596,10766.596 +3890,2025-06-10T11:33:24.899820-07:00,0.0,10.772429,10772.429 +3891,2025-06-10T11:33:35.661813-07:00,0.0,10.761993,10761.993 +3892,2025-06-10T11:33:46.440416-07:00,0.0,10.778603,10778.603 +3893,2025-06-10T11:33:57.204822-07:00,0.0,10.764406,10764.406 +3894,2025-06-10T11:34:07.970402-07:00,0.0,10.76558,10765.58 +3895,2025-06-10T11:34:18.739798-07:00,0.0,10.769396,10769.396 +3896,2025-06-10T11:34:29.505883-07:00,0.0,10.766085,10766.085 +3897,2025-06-10T11:34:40.281340-07:00,0.0,10.775457,10775.457 +3898,2025-06-10T11:34:51.044474-07:00,0.0,10.763134,10763.134 +3899,2025-06-10T11:35:01.809160-07:00,0.0,10.764686,10764.686 +3900,2025-06-10T11:35:12.582818-07:00,0.0,10.773658,10773.658 +3901,2025-06-10T11:35:23.346053-07:00,0.0,10.763235,10763.235 +3902,2025-06-10T11:35:34.108485-07:00,0.0,10.762432,10762.432 +3903,2025-06-10T11:35:44.881813-07:00,0.0,10.773328,10773.328 +3904,2025-06-10T11:35:55.647767-07:00,0.0,10.765954,10765.954 +3905,2025-06-10T11:36:06.419965-07:00,0.0,10.772198,10772.198 +3906,2025-06-10T11:36:17.195940-07:00,0.0,10.775975,10775.975 +3907,2025-06-10T11:36:27.965844-07:00,0.0,10.769904,10769.904 +3908,2025-06-10T11:36:38.735055-07:00,0.0,10.769211,10769.211 +3909,2025-06-10T11:36:49.501828-07:00,0.0,10.766773,10766.773 +3910,2025-06-10T11:37:00.271861-07:00,0.0,10.770033,10770.033 +3911,2025-06-10T11:37:11.037362-07:00,0.0,10.765501,10765.501 +3912,2025-06-10T11:37:21.812818-07:00,0.0,10.775456,10775.456 +3913,2025-06-10T11:37:32.583903-07:00,0.0,10.771085,10771.085 +3914,2025-06-10T11:37:43.349145-07:00,0.0,10.765242,10765.242 +3915,2025-06-10T11:37:54.118817-07:00,0.0,10.769672,10769.672 +3916,2025-06-10T11:38:04.888408-07:00,0.0,10.769591,10769.591 +3917,2025-06-10T11:38:15.661991-07:00,0.0,10.773583,10773.583 +3918,2025-06-10T11:38:26.438070-07:00,0.0,10.776079,10776.079 +3919,2025-06-10T11:38:37.201984-07:00,0.0,10.763914,10763.914 +3920,2025-06-10T11:38:47.970286-07:00,0.0,10.768302,10768.302 +3921,2025-06-10T11:38:58.742812-07:00,0.0,10.772526,10772.526 +3922,2025-06-10T11:39:09.515857-07:00,0.0,10.773045,10773.045 +3923,2025-06-10T11:39:20.281812-07:00,0.0,10.765955,10765.955 +3924,2025-06-10T11:39:31.049219-07:00,0.0,10.767407,10767.407 +3925,2025-06-10T11:39:41.827830-07:00,0.0,10.778611,10778.611 +3926,2025-06-10T11:39:52.589882-07:00,0.0,10.762052,10762.052 +3927,2025-06-10T11:40:03.366425-07:00,0.0,10.776543,10776.543 +3928,2025-06-10T11:40:14.130820-07:00,0.0,10.764395,10764.395 +3929,2025-06-10T11:40:24.902963-07:00,0.0,10.772143,10772.143 +3930,2025-06-10T11:40:35.665257-07:00,0.0,10.762294,10762.294 +3931,2025-06-10T11:40:46.438198-07:00,0.0,10.772941,10772.941 +3932,2025-06-10T11:40:57.208160-07:00,0.0,10.769962,10769.962 +3933,2025-06-10T11:41:07.981035-07:00,0.0,10.772875,10772.875 +3934,2025-06-10T11:41:18.743947-07:00,0.0,10.762912,10762.912 +3935,2025-06-10T11:41:29.512808-07:00,0.0,10.768861,10768.861 +3936,2025-06-10T11:41:40.285376-07:00,0.0,10.772568,10772.568 +3937,2025-06-10T11:41:51.052301-07:00,0.0,10.766925,10766.925 +3938,2025-06-10T11:42:01.817071-07:00,0.0,10.76477,10764.77 +3939,2025-06-10T11:42:12.597053-07:00,0.0,10.779982,10779.982 +3940,2025-06-10T11:42:23.358128-07:00,0.0,10.761075,10761.075 +3941,2025-06-10T11:42:34.137770-07:00,0.0,10.779642,10779.642 +3942,2025-06-10T11:42:44.901818-07:00,0.0,10.764048,10764.048 +3943,2025-06-10T11:42:55.664108-07:00,0.0,10.76229,10762.29 +3944,2025-06-10T11:43:06.429812-07:00,0.0,10.765704,10765.704 +3945,2025-06-10T11:43:17.203821-07:00,0.0,10.774009,10774.009 +3946,2025-06-10T11:43:27.965823-07:00,0.0,10.762002,10762.002 +3947,2025-06-10T11:43:38.733072-07:00,0.0,10.767249,10767.249 +3948,2025-06-10T11:43:49.502884-07:00,0.0,10.769812,10769.812 +3949,2025-06-10T11:44:00.269814-07:00,0.0,10.76693,10766.93 +3950,2025-06-10T11:44:11.029907-07:00,0.0,10.760093,10760.093 +3951,2025-06-10T11:44:21.801103-07:00,0.0,10.771196,10771.196 +3952,2025-06-10T11:44:32.564925-07:00,0.0,10.763822,10763.822 +3953,2025-06-10T11:44:43.331822-07:00,0.0,10.766897,10766.897 +3954,2025-06-10T11:44:54.101253-07:00,0.0,10.769431,10769.431 +3955,2025-06-10T11:45:04.858029-07:00,0.0,10.756776,10756.776 +3956,2025-06-10T11:45:15.626158-07:00,0.0,10.768129,10768.129 +3957,2025-06-10T11:45:26.399064-07:00,0.0,10.772906,10772.906 +3958,2025-06-10T11:45:37.164151-07:00,0.0,10.765087,10765.087 +3959,2025-06-10T11:45:47.932241-07:00,0.0,10.76809,10768.09 +3960,2025-06-10T11:45:58.692816-07:00,0.0,10.760575,10760.575 +3961,2025-06-10T11:46:09.466239-07:00,0.0,10.773423,10773.423 +3962,2025-06-10T11:46:20.224824-07:00,0.0,10.758585,10758.585 +3963,2025-06-10T11:46:30.994311-07:00,0.0,10.769487,10769.487 +3964,2025-06-10T11:46:41.764820-07:00,0.0,10.770509,10770.509 +3965,2025-06-10T11:46:52.524395-07:00,0.0,10.759575,10759.575 +3966,2025-06-10T11:47:03.289996-07:00,0.0,10.765601,10765.601 +3967,2025-06-10T11:47:14.061206-07:00,0.0,10.77121,10771.21 +3968,2025-06-10T11:47:24.818814-07:00,0.0,10.757608,10757.608 +3969,2025-06-10T11:47:35.591371-07:00,0.0,10.772557,10772.557 +3970,2025-06-10T11:47:46.363822-07:00,0.0,10.772451,10772.451 +3971,2025-06-10T11:47:57.130803-07:00,0.0,10.766981,10766.981 +3972,2025-06-10T11:48:07.897204-07:00,0.0,10.766401,10766.401 +3973,2025-06-10T11:48:18.666796-07:00,0.0,10.769592,10769.592 +3974,2025-06-10T11:48:29.429172-07:00,0.0,10.762376,10762.376 +3975,2025-06-10T11:48:40.197818-07:00,0.0,10.768646,10768.646 +3976,2025-06-10T11:48:50.962820-07:00,0.0,10.765002,10765.002 +3977,2025-06-10T11:49:01.738149-07:00,0.0,10.775329,10775.329 +3978,2025-06-10T11:49:12.501814-07:00,0.0,10.763665,10763.665 +3979,2025-06-10T11:49:23.278137-07:00,0.0,10.776323,10776.323 +3980,2025-06-10T11:49:34.048871-07:00,0.0,10.770734,10770.734 +3981,2025-06-10T11:49:44.814886-07:00,0.0,10.766015,10766.015 +3982,2025-06-10T11:49:55.590985-07:00,0.0,10.776099,10776.099 +3983,2025-06-10T11:50:06.357823-07:00,0.0,10.766838,10766.838 +3984,2025-06-10T11:50:17.129820-07:00,0.0,10.771997,10771.997 +3985,2025-06-10T11:50:27.901053-07:00,0.0,10.771233,10771.233 +3986,2025-06-10T11:50:38.668129-07:00,0.0,10.767076,10767.076 +3987,2025-06-10T11:50:49.437797-07:00,0.0,10.769668,10769.668 +3988,2025-06-10T11:51:00.204857-07:00,0.0,10.76706,10767.06 +3989,2025-06-10T11:51:10.971820-07:00,0.0,10.766963,10766.963 +3990,2025-06-10T11:51:21.731818-07:00,0.0,10.759998,10759.998 +3991,2025-06-10T11:51:32.501776-07:00,0.0,10.769958,10769.958 +3992,2025-06-10T11:51:43.275545-07:00,0.0,10.773769,10773.769 +3993,2025-06-10T11:51:54.046301-07:00,0.0,10.770756,10770.756 +3994,2025-06-10T11:52:04.805368-07:00,0.0,10.759067,10759.067 +3995,2025-06-10T11:52:15.571172-07:00,0.0,10.765804,10765.804 +3996,2025-06-10T11:52:26.333485-07:00,0.0,10.762313,10762.313 +3997,2025-06-10T11:52:37.100173-07:00,0.0,10.766688,10766.688 +3998,2025-06-10T11:52:47.865514-07:00,0.0,10.765341,10765.341 +3999,2025-06-10T11:52:58.623439-07:00,0.0,10.757925,10757.925 +4000,2025-06-10T11:53:09.388168-07:00,0.0,10.764729,10764.729 +4001,2025-06-10T11:53:20.157836-07:00,0.0,10.769668,10769.668 +4002,2025-06-10T11:53:30.924176-07:00,0.0,10.76634,10766.34 +4003,2025-06-10T11:53:41.695587-07:00,0.0,10.771411,10771.411 +4004,2025-06-10T11:53:52.457284-07:00,0.0,10.761697,10761.697 +4005,2025-06-10T11:54:03.223149-07:00,0.0,10.765865,10765.865 +4006,2025-06-10T11:54:13.989387-07:00,0.0,10.766238,10766.238 +4007,2025-06-10T11:54:24.756501-07:00,0.0,10.767114,10767.114 +4008,2025-06-10T11:54:35.512176-07:00,0.0,10.755675,10755.675 +4009,2025-06-10T11:54:46.281437-07:00,0.0,10.769261,10769.261 +4010,2025-06-10T11:54:57.045210-07:00,0.0,10.763773,10763.773 +4011,2025-06-10T11:55:07.814842-07:00,0.0,10.769632,10769.632 +4012,2025-06-10T11:55:18.584421-07:00,0.0,10.769579,10769.579 +4013,2025-06-10T11:55:29.347251-07:00,0.0,10.76283,10762.83 +4014,2025-06-10T11:55:40.122245-07:00,0.0,10.774994,10774.994 +4015,2025-06-10T11:55:50.889640-07:00,0.0,10.767395,10767.395 +4016,2025-06-10T11:56:01.657009-07:00,0.0,10.767369,10767.369 +4017,2025-06-10T11:56:12.416429-07:00,0.0,10.75942,10759.42 +4018,2025-06-10T11:56:23.191173-07:00,0.0,10.774744,10774.744 +4019,2025-06-10T11:56:33.957215-07:00,0.0,10.766042,10766.042 +4020,2025-06-10T11:56:44.716390-07:00,0.0,10.759175,10759.175 +4021,2025-06-10T11:56:55.481239-07:00,0.0,10.764849,10764.849 +4022,2025-06-10T11:57:06.246143-07:00,0.0,10.764904,10764.904 +4023,2025-06-10T11:57:17.015472-07:00,0.0,10.769329,10769.329 +4024,2025-06-10T11:57:27.778259-07:00,0.0,10.762787,10762.787 +4025,2025-06-10T11:57:38.544167-07:00,0.0,10.765908,10765.908 +4026,2025-06-10T11:57:49.303744-07:00,0.0,10.759577,10759.577 +4027,2025-06-10T11:58:00.072178-07:00,0.0,10.768434,10768.434 +4028,2025-06-10T11:58:10.845272-07:00,0.0,10.773094,10773.094 +4029,2025-06-10T11:58:21.606438-07:00,0.0,10.761166,10761.166 +4030,2025-06-10T11:58:32.377326-07:00,0.0,10.770888,10770.888 +4031,2025-06-10T11:58:43.156659-07:00,0.0,10.779333,10779.333 +4032,2025-06-10T11:58:53.918166-07:00,0.0,10.761507,10761.507 +4033,2025-06-10T11:59:04.686332-07:00,0.0,10.768166,10768.166 +4034,2025-06-10T11:59:15.458418-07:00,0.0,10.772086,10772.086 +4035,2025-06-10T11:59:26.227176-07:00,0.0,10.768758,10768.758 +4036,2025-06-10T11:59:36.994290-07:00,0.0,10.767114,10767.114 +4037,2025-06-10T11:59:47.770176-07:00,0.0,10.775886,10775.886 +4038,2025-06-10T11:59:58.539931-07:00,0.0,10.769755,10769.755 +4039,2025-06-10T12:00:09.305437-07:00,0.0,10.765506,10765.506 +4040,2025-06-10T12:00:20.076313-07:00,0.0,10.770876,10770.876 +4041,2025-06-10T12:00:30.850133-07:00,0.0,10.77382,10773.82 +4042,2025-06-10T12:00:41.612393-07:00,0.0,10.76226,10762.26 +4043,2025-06-10T12:00:52.388462-07:00,0.0,10.776069,10776.069 +4044,2025-06-10T12:01:03.149205-07:00,0.0,10.760743,10760.743 +4045,2025-06-10T12:01:13.922817-07:00,0.0,10.773612,10773.612 +4046,2025-06-10T12:01:24.688720-07:00,0.0,10.765903,10765.903 +4047,2025-06-10T12:01:35.448209-07:00,0.0,10.759489,10759.489 +4048,2025-06-10T12:01:46.214212-07:00,0.0,10.766003,10766.003 +4049,2025-06-10T12:01:56.978259-07:00,0.0,10.764047,10764.047 +4050,2025-06-10T12:02:07.748223-07:00,0.0,10.769964,10769.964 +4051,2025-06-10T12:02:18.520875-07:00,0.0,10.772652,10772.652 +4052,2025-06-10T12:02:29.288168-07:00,0.0,10.767293,10767.293 +4053,2025-06-10T12:02:40.053616-07:00,0.0,10.765448,10765.448 +4054,2025-06-10T12:02:50.819221-07:00,0.0,10.765605,10765.605 +4055,2025-06-10T12:03:01.585392-07:00,0.0,10.766171,10766.171 +4056,2025-06-10T12:03:12.366901-07:00,0.0,10.781509,10781.509 +4057,2025-06-10T12:03:23.124174-07:00,0.0,10.757273,10757.273 +4058,2025-06-10T12:03:33.897433-07:00,0.0,10.773259,10773.259 +4059,2025-06-10T12:03:44.671381-07:00,0.0,10.773948,10773.948 +4060,2025-06-10T12:03:55.441215-07:00,0.0,10.769834,10769.834 +4061,2025-06-10T12:04:06.206607-07:00,0.0,10.765392,10765.392 +4062,2025-06-10T12:04:16.978172-07:00,0.0,10.771565,10771.565 +4063,2025-06-10T12:04:27.746825-07:00,0.0,10.768653,10768.653 +4064,2025-06-10T12:04:38.518172-07:00,0.0,10.771347,10771.347 +4065,2025-06-10T12:04:49.284849-07:00,0.0,10.766677,10766.677 +4066,2025-06-10T12:05:00.056390-07:00,0.0,10.771541,10771.541 +4067,2025-06-10T12:05:10.824212-07:00,0.0,10.767822,10767.822 +4068,2025-06-10T12:05:21.592638-07:00,0.0,10.768426,10768.426 +4069,2025-06-10T12:05:32.361172-07:00,0.0,10.768534,10768.534 +4070,2025-06-10T12:05:43.125176-07:00,0.0,10.764004,10764.004 +4071,2025-06-10T12:05:53.899164-07:00,0.0,10.773988,10773.988 +4072,2025-06-10T12:06:04.662415-07:00,0.0,10.763251,10763.251 +4073,2025-06-10T12:06:15.424224-07:00,0.0,10.761809,10761.809 +4074,2025-06-10T12:06:26.199457-07:00,0.0,10.775233,10775.233 +4075,2025-06-10T12:06:36.966174-07:00,0.0,10.766717,10766.717 +4076,2025-06-10T12:06:47.738509-07:00,0.0,10.772335,10772.335 +4077,2025-06-10T12:06:58.504161-07:00,0.0,10.765652,10765.652 +4078,2025-06-10T12:07:09.276459-07:00,0.0,10.772298,10772.298 +4079,2025-06-10T12:07:20.041623-07:00,0.0,10.765164,10765.164 +4080,2025-06-10T12:07:30.805172-07:00,0.0,10.763549,10763.549 +4081,2025-06-10T12:07:41.577981-07:00,0.0,10.772809,10772.809 +4082,2025-06-10T12:07:52.343507-07:00,0.0,10.765526,10765.526 +4083,2025-06-10T12:08:03.110372-07:00,0.0,10.766865,10766.865 +4084,2025-06-10T12:08:13.877174-07:00,0.0,10.766802,10766.802 +4085,2025-06-10T12:08:24.651172-07:00,0.0,10.773998,10773.998 +4086,2025-06-10T12:08:35.425418-07:00,0.0,10.774246,10774.246 +4087,2025-06-10T12:08:46.193169-07:00,0.0,10.767751,10767.751 +4088,2025-06-10T12:08:56.958649-07:00,0.0,10.76548,10765.48 +4089,2025-06-10T12:09:07.731477-07:00,0.0,10.772828,10772.828 +4090,2025-06-10T12:09:18.498672-07:00,0.0,10.767195,10767.195 +4091,2025-06-10T12:09:29.264213-07:00,0.0,10.765541,10765.541 +4092,2025-06-10T12:09:40.028143-07:00,0.0,10.76393,10763.93 +4093,2025-06-10T12:09:50.798459-07:00,0.0,10.770316,10770.316 +4094,2025-06-10T12:10:01.571172-07:00,0.0,10.772713,10772.713 +4095,2025-06-10T12:10:12.335206-07:00,0.0,10.764034,10764.034 +4096,2025-06-10T12:10:23.106217-07:00,0.0,10.771011,10771.011 +4097,2025-06-10T12:10:33.875145-07:00,0.0,10.768928,10768.928 +4098,2025-06-10T12:10:44.643463-07:00,0.0,10.768318,10768.318 +4099,2025-06-10T12:10:55.411166-07:00,0.0,10.767703,10767.703 +4100,2025-06-10T12:11:06.188712-07:00,0.0,10.777546,10777.546 +4101,2025-06-10T12:11:16.954178-07:00,0.0,10.765466,10765.466 +4102,2025-06-10T12:11:27.720416-07:00,0.0,10.766238,10766.238 +4103,2025-06-10T12:11:38.484505-07:00,0.0,10.764089,10764.089 +4104,2025-06-10T12:11:49.247409-07:00,0.0,10.762904,10762.904 +4105,2025-06-10T12:12:00.012172-07:00,0.0,10.764763,10764.763 +4106,2025-06-10T12:12:10.782794-07:00,0.0,10.770622,10770.622 +4107,2025-06-10T12:12:21.547296-07:00,0.0,10.764502,10764.502 +4108,2025-06-10T12:12:32.313485-07:00,0.0,10.766189,10766.189 +4109,2025-06-10T12:12:43.077376-07:00,0.0,10.763891,10763.891 +4110,2025-06-10T12:12:53.846434-07:00,0.0,10.769058,10769.058 +4111,2025-06-10T12:13:04.614617-07:00,0.0,10.768183,10768.183 +4112,2025-06-10T12:13:15.381176-07:00,0.0,10.766559,10766.559 +4113,2025-06-10T12:13:26.148174-07:00,0.0,10.766998,10766.998 +4114,2025-06-10T12:13:36.908983-07:00,0.0,10.760809,10760.809 +4115,2025-06-10T12:13:47.673174-07:00,0.0,10.764191,10764.191 +4116,2025-06-10T12:13:58.440408-07:00,0.0,10.767234,10767.234 +4117,2025-06-10T12:14:09.210641-07:00,0.0,10.770233,10770.233 +4118,2025-06-10T12:14:19.979177-07:00,0.0,10.768536,10768.536 +4119,2025-06-10T12:14:30.744197-07:00,0.0,10.76502,10765.02 +4120,2025-06-10T12:14:41.508595-07:00,0.0,10.764398,10764.398 +4121,2025-06-10T12:14:52.273169-07:00,0.0,10.764574,10764.574 +4122,2025-06-10T12:15:03.049411-07:00,0.0,10.776242,10776.242 +4123,2025-06-10T12:15:13.817003-07:00,0.0,10.767592,10767.592 +4124,2025-06-10T12:15:24.584076-07:00,0.0,10.767073,10767.073 +4125,2025-06-10T12:15:35.351284-07:00,0.0,10.767208,10767.208 +4126,2025-06-10T12:15:46.106489-07:00,0.0,10.755205,10755.205 +4127,2025-06-10T12:15:56.880317-07:00,0.0,10.773828,10773.828 +4128,2025-06-10T12:16:07.650617-07:00,0.0,10.7703,10770.3 +4129,2025-06-10T12:16:18.415152-07:00,0.0,10.764535,10764.535 +4130,2025-06-10T12:16:29.179342-07:00,0.0,10.76419,10764.19 +4131,2025-06-10T12:16:39.941230-07:00,0.0,10.761888,10761.888 +4132,2025-06-10T12:16:50.716390-07:00,0.0,10.77516,10775.16 +4133,2025-06-10T12:17:01.477186-07:00,0.0,10.760796,10760.796 +4134,2025-06-10T12:17:12.247514-07:00,0.0,10.770328,10770.328 +4135,2025-06-10T12:17:23.017189-07:00,0.0,10.769675,10769.675 +4136,2025-06-10T12:17:33.786815-07:00,0.0,10.769626,10769.626 +4137,2025-06-10T12:17:44.552200-07:00,0.0,10.765385,10765.385 +4138,2025-06-10T12:17:55.323095-07:00,0.0,10.770895,10770.895 +4139,2025-06-10T12:18:06.088449-07:00,0.0,10.765354,10765.354 +4140,2025-06-10T12:18:16.866476-07:00,0.0,10.778027,10778.027 +4141,2025-06-10T12:18:27.634177-07:00,0.0,10.767701,10767.701 +4142,2025-06-10T12:18:38.397388-07:00,0.0,10.763211,10763.211 +4143,2025-06-10T12:18:49.166543-07:00,0.0,10.769155,10769.155 +4144,2025-06-10T12:18:59.937174-07:00,0.0,10.770631,10770.631 +4145,2025-06-10T12:19:10.709749-07:00,0.0,10.772575,10772.575 +4146,2025-06-10T12:19:21.478174-07:00,0.0,10.768425,10768.425 +4147,2025-06-10T12:19:32.247801-07:00,0.0,10.769627,10769.627 +4148,2025-06-10T12:19:43.012523-07:00,0.0,10.764722,10764.722 +4149,2025-06-10T12:19:53.782170-07:00,0.0,10.769647,10769.647 +4150,2025-06-10T12:20:04.550505-07:00,0.0,10.768335,10768.335 +4151,2025-06-10T12:20:15.312158-07:00,0.0,10.761653,10761.653 +4152,2025-06-10T12:20:26.083323-07:00,0.0,10.771165,10771.165 +4153,2025-06-10T12:20:36.857562-07:00,0.0,10.774239,10774.239 +4154,2025-06-10T12:20:47.617213-07:00,0.0,10.759651,10759.651 +4155,2025-06-10T12:20:58.393957-07:00,0.0,10.776744,10776.744 +4156,2025-06-10T12:21:09.160532-07:00,0.0,10.766575,10766.575 +4157,2025-06-10T12:21:19.917221-07:00,0.0,10.756689,10756.689 +4158,2025-06-10T12:21:30.695792-07:00,0.0,10.778571,10778.571 +4159,2025-06-10T12:21:41.460169-07:00,0.0,10.764377,10764.377 +4160,2025-06-10T12:21:52.226068-07:00,0.0,10.765899,10765.899 +4161,2025-06-10T12:22:02.984423-07:00,0.0,10.758355,10758.355 +4162,2025-06-10T12:22:13.750413-07:00,0.0,10.76599,10765.99 +4163,2025-06-10T12:22:24.518203-07:00,0.0,10.76779,10767.79 +4164,2025-06-10T12:22:35.279695-07:00,0.0,10.761492,10761.492 +4165,2025-06-10T12:22:46.050176-07:00,0.0,10.770481,10770.481 +4166,2025-06-10T12:22:56.806176-07:00,0.0,10.756,10756.0 +4167,2025-06-10T12:23:07.576473-07:00,0.0,10.770297,10770.297 +4168,2025-06-10T12:23:18.337154-07:00,0.0,10.760681,10760.681 +4169,2025-06-10T12:23:29.111201-07:00,0.0,10.774047,10774.047 +4170,2025-06-10T12:23:39.874361-07:00,0.0,10.76316,10763.16 +4171,2025-06-10T12:23:50.642313-07:00,0.0,10.767952,10767.952 +4172,2025-06-10T12:24:01.409537-07:00,0.0,10.767224,10767.224 +4173,2025-06-10T12:24:12.169221-07:00,0.0,10.759684,10759.684 +4174,2025-06-10T12:24:22.938417-07:00,0.0,10.769196,10769.196 +4175,2025-06-10T12:24:33.703914-07:00,0.0,10.765497,10765.497 +4176,2025-06-10T12:24:44.463505-07:00,0.0,10.759591,10759.591 +4177,2025-06-10T12:24:55.227236-07:00,0.0,10.763731,10763.731 +4178,2025-06-10T12:25:05.995448-07:00,0.0,10.768212,10768.212 +4179,2025-06-10T12:25:16.761857-07:00,0.0,10.766409,10766.409 +4180,2025-06-10T12:25:27.521174-07:00,0.0,10.759317,10759.317 +4181,2025-06-10T12:25:38.296465-07:00,0.0,10.775291,10775.291 +4182,2025-06-10T12:25:49.056559-07:00,0.0,10.760094,10760.094 +4183,2025-06-10T12:25:59.820172-07:00,0.0,10.763613,10763.613 +4184,2025-06-10T12:26:10.587544-07:00,0.0,10.767372,10767.372 +4185,2025-06-10T12:26:21.348297-07:00,0.0,10.760753,10760.753 +4186,2025-06-10T12:26:32.112276-07:00,0.0,10.763979,10763.979 +4187,2025-06-10T12:26:42.881268-07:00,0.0,10.768992,10768.992 +4188,2025-06-10T12:26:53.642577-07:00,0.0,10.761309,10761.309 +4189,2025-06-10T12:27:04.405326-07:00,0.0,10.762749,10762.749 +4190,2025-06-10T12:27:15.178234-07:00,0.0,10.772908,10772.908 +4191,2025-06-10T12:27:25.947180-07:00,0.0,10.768946,10768.946 +4192,2025-06-10T12:27:36.708460-07:00,0.0,10.76128,10761.28 +4193,2025-06-10T12:27:47.479106-07:00,0.0,10.770646,10770.646 +4194,2025-06-10T12:27:58.242725-07:00,0.0,10.763619,10763.619 +4195,2025-06-10T12:28:09.006212-07:00,0.0,10.763487,10763.487 +4196,2025-06-10T12:28:19.772695-07:00,0.0,10.766483,10766.483 +4197,2025-06-10T12:28:30.542178-07:00,0.0,10.769483,10769.483 +4198,2025-06-10T12:28:41.314678-07:00,0.0,10.7725,10772.5 +4199,2025-06-10T12:28:52.078492-07:00,0.0,10.763814,10763.814 +4200,2025-06-10T12:29:02.851172-07:00,0.0,10.77268,10772.68 +4201,2025-06-10T12:29:13.612553-07:00,0.0,10.761381,10761.381 +4202,2025-06-10T12:29:24.380172-07:00,0.0,10.767619,10767.619 +4203,2025-06-10T12:29:35.155492-07:00,0.0,10.77532,10775.32 +4204,2025-06-10T12:29:45.910796-07:00,0.0,10.755304,10755.304 +4205,2025-06-10T12:29:56.685415-07:00,0.0,10.774619,10774.619 +4206,2025-06-10T12:30:07.451299-07:00,0.0,10.765884,10765.884 +4207,2025-06-10T12:30:18.218393-07:00,0.0,10.767094,10767.094 +4208,2025-06-10T12:30:28.985172-07:00,0.0,10.766779,10766.779 +4209,2025-06-10T12:30:39.761924-07:00,0.0,10.776752,10776.752 +4210,2025-06-10T12:30:50.526314-07:00,0.0,10.76439,10764.39 +4211,2025-06-10T12:31:01.299672-07:00,0.0,10.773358,10773.358 +4212,2025-06-10T12:31:12.056245-07:00,0.0,10.756573,10756.573 +4213,2025-06-10T12:31:22.828381-07:00,0.0,10.772136,10772.136 +4214,2025-06-10T12:31:33.599535-07:00,0.0,10.771154,10771.154 +4215,2025-06-10T12:31:44.357426-07:00,0.0,10.757891,10757.891 +4216,2025-06-10T12:31:55.124164-07:00,0.0,10.766738,10766.738 +4217,2025-06-10T12:32:05.894182-07:00,0.0,10.770018,10770.018 +4218,2025-06-10T12:32:16.664407-07:00,0.0,10.770225,10770.225 +4219,2025-06-10T12:32:27.427763-07:00,0.0,10.763356,10763.356 +4220,2025-06-10T12:32:38.188557-07:00,0.0,10.760794,10760.794 +4221,2025-06-10T12:32:48.953176-07:00,0.0,10.764619,10764.619 +4222,2025-06-10T12:32:59.716216-07:00,0.0,10.76304,10763.04 +4223,2025-06-10T12:33:10.488172-07:00,0.0,10.771956,10771.956 +4224,2025-06-10T12:33:21.247174-07:00,0.0,10.759002,10759.002 +4225,2025-06-10T12:33:32.012144-07:00,0.0,10.76497,10764.97 +4226,2025-06-10T12:33:42.785186-07:00,0.0,10.773042,10773.042 +4227,2025-06-10T12:33:53.545422-07:00,0.0,10.760236,10760.236 +4228,2025-06-10T12:34:04.306361-07:00,0.0,10.760939,10760.939 +4229,2025-06-10T12:34:15.074775-07:00,0.0,10.768414,10768.414 +4230,2025-06-10T12:34:25.834309-07:00,0.0,10.759534,10759.534 +4231,2025-06-10T12:34:36.607164-07:00,0.0,10.772855,10772.855 +4232,2025-06-10T12:34:47.369687-07:00,0.0,10.762523,10762.523 +4233,2025-06-10T12:34:58.129169-07:00,0.0,10.759482,10759.482 +4234,2025-06-10T12:35:08.894292-07:00,0.0,10.765123,10765.123 +4235,2025-06-10T12:35:19.665155-07:00,0.0,10.770863,10770.863 +4236,2025-06-10T12:35:30.434330-07:00,0.0,10.769175,10769.175 +4237,2025-06-10T12:35:41.199464-07:00,0.0,10.765134,10765.134 +4238,2025-06-10T12:35:51.957165-07:00,0.0,10.757701,10757.701 +4239,2025-06-10T12:36:02.728426-07:00,0.0,10.771261,10771.261 +4240,2025-06-10T12:36:13.495539-07:00,0.0,10.767113,10767.113 +4241,2025-06-10T12:36:24.255185-07:00,0.0,10.759646,10759.646 +4242,2025-06-10T12:36:35.016430-07:00,0.0,10.761245,10761.245 +4243,2025-06-10T12:36:45.787079-07:00,0.0,10.770649,10770.649 +4244,2025-06-10T12:36:56.545765-07:00,0.0,10.758686,10758.686 +4245,2025-06-10T12:37:07.313320-07:00,0.0,10.767555,10767.555 +4246,2025-06-10T12:37:18.073443-07:00,0.0,10.760123,10760.123 +4247,2025-06-10T12:37:28.845176-07:00,0.0,10.771733,10771.733 +4248,2025-06-10T12:37:39.612443-07:00,0.0,10.767267,10767.267 +4249,2025-06-10T12:37:50.368241-07:00,0.0,10.755798,10755.798 +4250,2025-06-10T12:38:01.136742-07:00,0.0,10.768501,10768.501 +4251,2025-06-10T12:38:11.900507-07:00,0.0,10.763765,10763.765 +4252,2025-06-10T12:38:22.663626-07:00,0.0,10.763119,10763.119 +4253,2025-06-10T12:38:24.013088-07:00,0.0,1.349462,1349.462 +4254,2025-06-10T12:38:33.429173-07:00,0.0,9.416085,9416.085 +4255,2025-06-10T12:38:44.191453-07:00,0.0,10.76228,10762.28 +4256,2025-06-10T12:38:54.958307-07:00,0.0,10.766854,10766.854 +4257,2025-06-10T12:39:05.724809-07:00,0.0,10.766502,10766.502 +4258,2025-06-10T12:39:16.485160-07:00,0.0,10.760351,10760.351 +4259,2025-06-10T12:39:27.250176-07:00,0.0,10.765016,10765.016 +4260,2025-06-10T12:39:38.015439-07:00,0.0,10.765263,10765.263 +4261,2025-06-10T12:39:48.777400-07:00,0.0,10.761961,10761.961 +4262,2025-06-10T12:39:59.541166-07:00,0.0,10.763766,10763.766 +4263,2025-06-10T12:40:10.301026-07:00,0.0,10.75986,10759.86 +4264,2025-06-10T12:40:21.071889-07:00,0.0,10.770863,10770.863 +4265,2025-06-10T12:40:31.834176-07:00,0.0,10.762287,10762.287 +4266,2025-06-10T12:40:42.601169-07:00,0.0,10.766993,10766.993 +4267,2025-06-10T12:40:53.363176-07:00,0.0,10.762007,10762.007 +4268,2025-06-10T12:41:04.121906-07:00,0.0,10.75873,10758.73 +4269,2025-06-10T12:41:14.889801-07:00,0.0,10.767895,10767.895 +4270,2025-06-10T12:41:25.656344-07:00,0.0,10.766543,10766.543 +4271,2025-06-10T12:41:36.420176-07:00,0.0,10.763832,10763.832 +4272,2025-06-10T12:41:47.178209-07:00,0.0,10.758033,10758.033 +4273,2025-06-10T12:41:57.949174-07:00,0.0,10.770965,10770.965 +4274,2025-06-10T12:42:08.708176-07:00,0.0,10.759002,10759.002 +4275,2025-06-10T12:42:19.472509-07:00,0.0,10.764333,10764.333 +4276,2025-06-10T12:42:30.238543-07:00,0.0,10.766034,10766.034 +4277,2025-06-10T12:42:40.998380-07:00,0.0,10.759837,10759.837 +4278,2025-06-10T12:42:51.768361-07:00,0.0,10.769981,10769.981 +4279,2025-06-10T12:43:02.528471-07:00,0.0,10.76011,10760.11 +4280,2025-06-10T12:43:13.288221-07:00,0.0,10.75975,10759.75 +4281,2025-06-10T12:43:24.055169-07:00,0.0,10.766948,10766.948 +4282,2025-06-10T12:43:34.827613-07:00,0.0,10.772444,10772.444 +4283,2025-06-10T12:43:45.587206-07:00,0.0,10.759593,10759.593 +4284,2025-06-10T12:43:56.350172-07:00,0.0,10.762966,10762.966 +4285,2025-06-10T12:44:07.123534-07:00,0.0,10.773362,10773.362 +4286,2025-06-10T12:44:17.886206-07:00,0.0,10.762672,10762.672 +4287,2025-06-10T12:44:28.648176-07:00,0.0,10.76197,10761.97 +4288,2025-06-10T12:44:39.413785-07:00,0.0,10.765609,10765.609 +4289,2025-06-10T12:44:50.179146-07:00,0.0,10.765361,10765.361 +4290,2025-06-10T12:45:00.937169-07:00,0.0,10.758023,10758.023 +4291,2025-06-10T12:45:11.706487-07:00,0.0,10.769318,10769.318 +4292,2025-06-10T12:45:22.472376-07:00,0.0,10.765889,10765.889 +4293,2025-06-10T12:45:33.233155-07:00,0.0,10.760779,10760.779 +4294,2025-06-10T12:45:43.997514-07:00,0.0,10.764359,10764.359 +4295,2025-06-10T12:45:54.750492-07:00,0.0,10.752978,10752.978 +4296,2025-06-10T12:46:05.521432-07:00,0.0,10.77094,10770.94 +4297,2025-06-10T12:46:16.285591-07:00,0.0,10.764159,10764.159 +4298,2025-06-10T12:46:27.046713-07:00,0.0,10.761122,10761.122 +4299,2025-06-10T12:46:37.803174-07:00,0.0,10.756461,10756.461 +4300,2025-06-10T12:46:48.571155-07:00,0.0,10.767981,10767.981 +4301,2025-06-10T12:46:59.334456-07:00,0.0,10.763301,10763.301 +4302,2025-06-10T12:47:10.092446-07:00,0.0,10.75799,10757.99 +4303,2025-06-10T12:47:20.861173-07:00,0.0,10.768727,10768.727 +4304,2025-06-10T12:47:31.618170-07:00,0.0,10.756997,10756.997 +4305,2025-06-10T12:47:42.391243-07:00,0.0,10.773073,10773.073 +4306,2025-06-10T12:47:53.157256-07:00,0.0,10.766013,10766.013 +4307,2025-06-10T12:48:03.914922-07:00,0.0,10.757666,10757.666 +4308,2025-06-10T12:48:14.684736-07:00,0.0,10.769814,10769.814 +4309,2025-06-10T12:48:25.441435-07:00,0.0,10.756699,10756.699 +4310,2025-06-10T12:48:36.204176-07:00,0.0,10.762741,10762.741 +4311,2025-06-10T12:48:46.970438-07:00,0.0,10.766262,10766.262 +4312,2025-06-10T12:48:57.740405-07:00,0.0,10.769967,10769.967 +4313,2025-06-10T12:49:08.500174-07:00,0.0,10.759769,10759.769 +4314,2025-06-10T12:49:19.269586-07:00,0.0,10.769412,10769.412 +4315,2025-06-10T12:49:30.029171-07:00,0.0,10.759585,10759.585 +4316,2025-06-10T12:49:40.794165-07:00,0.0,10.764994,10764.994 +4317,2025-06-10T12:49:51.559470-07:00,0.0,10.765305,10765.305 +4318,2025-06-10T12:50:02.321418-07:00,0.0,10.761948,10761.948 +4319,2025-06-10T12:50:13.087326-07:00,0.0,10.765908,10765.908 +4320,2025-06-10T12:50:23.851698-07:00,0.0,10.764372,10764.372 +4321,2025-06-10T12:50:34.619166-07:00,0.0,10.767468,10767.468 +4322,2025-06-10T12:50:45.386434-07:00,0.0,10.767268,10767.268 +4323,2025-06-10T12:50:56.154524-07:00,0.0,10.76809,10768.09 +4324,2025-06-10T12:51:06.924689-07:00,0.0,10.770165,10770.165 +4325,2025-06-10T12:51:17.683172-07:00,0.0,10.758483,10758.483 +4326,2025-06-10T12:51:28.452546-07:00,0.0,10.769374,10769.374 +4327,2025-06-10T12:51:39.236196-07:00,0.0,10.78365,10783.65 +4328,2025-06-10T12:51:50.001566-07:00,0.0,10.76537,10765.37 +4329,2025-06-10T12:52:00.765212-07:00,0.0,10.763646,10763.646 +4330,2025-06-10T12:52:11.536417-07:00,0.0,10.771205,10771.205 +4331,2025-06-10T12:52:22.293399-07:00,0.0,10.756982,10756.982 +4332,2025-06-10T12:52:33.066473-07:00,0.0,10.773074,10773.074 +4333,2025-06-10T12:52:43.826208-07:00,0.0,10.759735,10759.735 +4334,2025-06-10T12:52:54.592499-07:00,0.0,10.766291,10766.291 +4335,2025-06-10T12:53:05.353417-07:00,0.0,10.760918,10760.918 +4336,2025-06-10T12:53:16.123434-07:00,0.0,10.770017,10770.017 +4337,2025-06-10T12:53:26.886168-07:00,0.0,10.762734,10762.734 +4338,2025-06-10T12:53:37.645688-07:00,0.0,10.75952,10759.52 +4339,2025-06-10T12:53:48.410189-07:00,0.0,10.764501,10764.501 +4340,2025-06-10T12:53:59.177332-07:00,0.0,10.767143,10767.143 +4341,2025-06-10T12:54:09.946211-07:00,0.0,10.768879,10768.879 +4342,2025-06-10T12:54:20.710448-07:00,0.0,10.764237,10764.237 +4343,2025-06-10T12:54:31.476586-07:00,0.0,10.766138,10766.138 +4344,2025-06-10T12:54:42.234551-07:00,0.0,10.757965,10757.965 +4345,2025-06-10T12:54:52.993242-07:00,0.0,10.758691,10758.691 +4346,2025-06-10T12:55:03.763381-07:00,0.0,10.770139,10770.139 +4347,2025-06-10T12:55:14.530213-07:00,0.0,10.766832,10766.832 +4348,2025-06-10T12:55:25.291247-07:00,0.0,10.761034,10761.034 +4349,2025-06-10T12:55:36.057207-07:00,0.0,10.76596,10765.96 +4350,2025-06-10T12:55:46.819705-07:00,0.0,10.762498,10762.498 +4351,2025-06-10T12:55:57.590256-07:00,0.0,10.770551,10770.551 +4352,2025-06-10T12:56:08.350211-07:00,0.0,10.759955,10759.955 +4353,2025-06-10T12:56:19.125211-07:00,0.0,10.775,10775.0 +4354,2025-06-10T12:56:29.880188-07:00,0.0,10.754977,10754.977 +4355,2025-06-10T12:56:40.648419-07:00,0.0,10.768231,10768.231 +4356,2025-06-10T12:56:51.414602-07:00,0.0,10.766183,10766.183 +4357,2025-06-10T12:57:02.175292-07:00,0.0,10.76069,10760.69 +4358,2025-06-10T12:57:12.937831-07:00,0.0,10.762539,10762.539 +4359,2025-06-10T12:57:23.702519-07:00,0.0,10.764688,10764.688 +4360,2025-06-10T12:57:34.462203-07:00,0.0,10.759684,10759.684 +4361,2025-06-10T12:57:45.226202-07:00,0.0,10.763999,10763.999 +4362,2025-06-10T12:57:55.991163-07:00,0.0,10.764961,10764.961 +4363,2025-06-10T12:58:06.754524-07:00,0.0,10.763361,10763.361 +4364,2025-06-10T12:58:17.518210-07:00,0.0,10.763686,10763.686 +4365,2025-06-10T12:58:28.280548-07:00,0.0,10.762338,10762.338 +4366,2025-06-10T12:58:39.046213-07:00,0.0,10.765665,10765.665 +4367,2025-06-10T12:58:49.808190-07:00,0.0,10.761977,10761.977 +4368,2025-06-10T12:59:00.568450-07:00,0.0,10.76026,10760.26 +4369,2025-06-10T12:59:11.329891-07:00,0.0,10.761441,10761.441 +4370,2025-06-10T12:59:22.094210-07:00,0.0,10.764319,10764.319 +4371,2025-06-10T12:59:32.864211-07:00,0.0,10.770001,10770.001 +4372,2025-06-10T12:59:43.619879-07:00,0.0,10.755668,10755.668 +4373,2025-06-10T12:59:54.385248-07:00,0.0,10.765369,10765.369 +4374,2025-06-10T13:00:05.153512-07:00,0.0,10.768264,10768.264 +4375,2025-06-10T13:00:15.918131-07:00,0.0,10.764619,10764.619 +4376,2025-06-10T13:00:26.677989-07:00,0.0,10.759858,10759.858 +4377,2025-06-10T13:00:37.444208-07:00,0.0,10.766219,10766.219 +4378,2025-06-10T13:00:48.217639-07:00,0.0,10.773431,10773.431 +4379,2025-06-10T13:00:58.986215-07:00,0.0,10.768576,10768.576 +4380,2025-06-10T13:01:09.743211-07:00,0.0,10.756996,10756.996 +4381,2025-06-10T13:01:20.517918-07:00,0.0,10.774707,10774.707 +4382,2025-06-10T13:01:31.282251-07:00,0.0,10.764333,10764.333 +4383,2025-06-10T13:01:42.046557-07:00,0.0,10.764306,10764.306 +4384,2025-06-10T13:01:52.813201-07:00,0.0,10.766644,10766.644 +4385,2025-06-10T13:02:03.582482-07:00,0.0,10.769281,10769.281 +4386,2025-06-10T13:02:14.353645-07:00,0.0,10.771163,10771.163 +4387,2025-06-10T13:02:25.118549-07:00,0.0,10.764904,10764.904 +4388,2025-06-10T13:02:35.877268-07:00,0.0,10.758719,10758.719 +4389,2025-06-10T13:02:46.647527-07:00,0.0,10.770259,10770.259 +4390,2025-06-10T13:02:57.412275-07:00,0.0,10.764748,10764.748 +4391,2025-06-10T13:03:08.188277-07:00,0.0,10.776002,10776.002 +4392,2025-06-10T13:03:18.950907-07:00,0.0,10.76263,10762.63 +4393,2025-06-10T13:03:29.715209-07:00,0.0,10.764302,10764.302 +4394,2025-06-10T13:03:40.484361-07:00,0.0,10.769152,10769.152 +4395,2025-06-10T13:03:51.245197-07:00,0.0,10.760836,10760.836 +4396,2025-06-10T13:04:02.005437-07:00,0.0,10.76024,10760.24 +4397,2025-06-10T13:04:12.766195-07:00,0.0,10.760758,10760.758 +4398,2025-06-10T13:04:23.530499-07:00,0.0,10.764304,10764.304 +4399,2025-06-10T13:04:34.293342-07:00,0.0,10.762843,10762.843 +4400,2025-06-10T13:04:45.063212-07:00,0.0,10.76987,10769.87 +4401,2025-06-10T13:04:55.829571-07:00,0.0,10.766359,10766.359 +4402,2025-06-10T13:05:06.593209-07:00,0.0,10.763638,10763.638 +4403,2025-06-10T13:05:17.356207-07:00,0.0,10.762998,10762.998 +4404,2025-06-10T13:05:28.116761-07:00,0.0,10.760554,10760.554 +4405,2025-06-10T13:05:38.881500-07:00,0.0,10.764739,10764.739 +4406,2025-06-10T13:05:49.650190-07:00,0.0,10.76869,10768.69 +4407,2025-06-10T13:06:00.408762-07:00,0.0,10.758572,10758.572 +4408,2025-06-10T13:06:11.170938-07:00,0.0,10.762176,10762.176 +4409,2025-06-10T13:06:21.935203-07:00,0.0,10.764265,10764.265 +4410,2025-06-10T13:06:32.699207-07:00,0.0,10.764004,10764.004 +4411,2025-06-10T13:06:43.459548-07:00,0.0,10.760341,10760.341 +4412,2025-06-10T13:06:54.224343-07:00,0.0,10.764795,10764.795 +4413,2025-06-10T13:07:04.984363-07:00,0.0,10.76002,10760.02 +4414,2025-06-10T13:07:15.753492-07:00,0.0,10.769129,10769.129 +4415,2025-06-10T13:07:26.509422-07:00,0.0,10.75593,10755.93 +4416,2025-06-10T13:07:37.277447-07:00,0.0,10.768025,10768.025 +4417,2025-06-10T13:07:48.037186-07:00,0.0,10.759739,10759.739 +4418,2025-06-10T13:07:58.806576-07:00,0.0,10.76939,10769.39 +4419,2025-06-10T13:08:09.562175-07:00,0.0,10.755599,10755.599 +4420,2025-06-10T13:08:20.320190-07:00,0.0,10.758015,10758.015 +4421,2025-06-10T13:08:31.082668-07:00,0.0,10.762478,10762.478 +4422,2025-06-10T13:08:41.852207-07:00,0.0,10.769539,10769.539 +4423,2025-06-10T13:08:52.614443-07:00,0.0,10.762236,10762.236 +4424,2025-06-10T13:09:03.376187-07:00,0.0,10.761744,10761.744 +4425,2025-06-10T13:09:14.143767-07:00,0.0,10.76758,10767.58 +4426,2025-06-10T13:09:24.906209-07:00,0.0,10.762442,10762.442 +4427,2025-06-10T13:09:35.664455-07:00,0.0,10.758246,10758.246 +4428,2025-06-10T13:09:46.439211-07:00,0.0,10.774756,10774.756 +4429,2025-06-10T13:09:57.198075-07:00,0.0,10.758864,10758.864 +4430,2025-06-10T13:10:07.968509-07:00,0.0,10.770434,10770.434 +4431,2025-06-10T13:10:18.723895-07:00,0.0,10.755386,10755.386 +4432,2025-06-10T13:10:29.494350-07:00,0.0,10.770455,10770.455 +4433,2025-06-10T13:10:40.253357-07:00,0.0,10.759007,10759.007 +4434,2025-06-10T13:10:51.022209-07:00,0.0,10.768852,10768.852 +4435,2025-06-10T13:11:01.778484-07:00,0.0,10.756275,10756.275 +4436,2025-06-10T13:11:12.544196-07:00,0.0,10.765712,10765.712 +4437,2025-06-10T13:11:23.312276-07:00,0.0,10.76808,10768.08 +4438,2025-06-10T13:11:34.081405-07:00,0.0,10.769129,10769.129 +4439,2025-06-10T13:11:44.844211-07:00,0.0,10.762806,10762.806 +4440,2025-06-10T13:11:55.606496-07:00,0.0,10.762285,10762.285 +4441,2025-06-10T13:12:06.374209-07:00,0.0,10.767713,10767.713 +4442,2025-06-10T13:12:17.135518-07:00,0.0,10.761309,10761.309 +4443,2025-06-10T13:12:27.903682-07:00,0.0,10.768164,10768.164 +4444,2025-06-10T13:12:38.664496-07:00,0.0,10.760814,10760.814 +4445,2025-06-10T13:12:49.429211-07:00,0.0,10.764715,10764.715 +4446,2025-06-10T13:13:00.192798-07:00,0.0,10.763587,10763.587 +4447,2025-06-10T13:13:10.951211-07:00,0.0,10.758413,10758.413 +4448,2025-06-10T13:13:21.718208-07:00,0.0,10.766997,10766.997 +4449,2025-06-10T13:13:32.486551-07:00,0.0,10.768343,10768.343 +4450,2025-06-10T13:13:43.262636-07:00,0.0,10.776085,10776.085 +4451,2025-06-10T13:13:54.027669-07:00,0.0,10.765033,10765.033 +4452,2025-06-10T13:14:04.787494-07:00,0.0,10.759825,10759.825 +4453,2025-06-10T13:14:15.554350-07:00,0.0,10.766856,10766.856 +4454,2025-06-10T13:14:26.319583-07:00,0.0,10.765233,10765.233 +4455,2025-06-10T13:14:37.085686-07:00,0.0,10.766103,10766.103 +4456,2025-06-10T13:14:47.847204-07:00,0.0,10.761518,10761.518 +4457,2025-06-10T13:14:58.614251-07:00,0.0,10.767047,10767.047 +4458,2025-06-10T13:15:09.373487-07:00,0.0,10.759236,10759.236 +4459,2025-06-10T13:15:16.085278-07:00,0.0,6.711791,6711.791 +4460,2025-06-10T13:15:20.138186-07:00,0.0,4.052908,4052.908 +4461,2025-06-10T13:15:30.903441-07:00,0.0,10.765255,10765.255 +4462,2025-06-10T13:15:41.666467-07:00,0.0,10.763026,10763.026 +4463,2025-06-10T13:15:52.433136-07:00,0.0,10.766669,10766.669 +4464,2025-06-10T13:16:03.198187-07:00,0.0,10.765051,10765.051 +4465,2025-06-10T13:16:13.959931-07:00,0.0,10.761744,10761.744 +4466,2025-06-10T13:16:24.718435-07:00,0.0,10.758504,10758.504 +4467,2025-06-10T13:16:35.488207-07:00,0.0,10.769772,10769.772 +4468,2025-06-10T13:16:46.254762-07:00,0.0,10.766555,10766.555 +4469,2025-06-10T13:16:57.012553-07:00,0.0,10.757791,10757.791 +4470,2025-06-10T13:17:07.776215-07:00,0.0,10.763662,10763.662 +4471,2025-06-10T13:17:18.543229-07:00,0.0,10.767014,10767.014 +4472,2025-06-10T13:17:29.306313-07:00,0.0,10.763084,10763.084 +4473,2025-06-10T13:17:40.066348-07:00,0.0,10.760035,10760.035 +4474,2025-06-10T13:17:50.835209-07:00,0.0,10.768861,10768.861 +4475,2025-06-10T13:18:01.590333-07:00,0.0,10.755124,10755.124 +4476,2025-06-10T13:18:12.359405-07:00,0.0,10.769072,10769.072 +4477,2025-06-10T13:18:23.124202-07:00,0.0,10.764797,10764.797 +4478,2025-06-10T13:18:33.889459-07:00,0.0,10.765257,10765.257 +4479,2025-06-10T13:18:44.648438-07:00,0.0,10.758979,10758.979 +4480,2025-06-10T13:18:55.413208-07:00,0.0,10.76477,10764.77 +4481,2025-06-10T13:19:06.174568-07:00,0.0,10.76136,10761.36 +4482,2025-06-10T13:19:16.939534-07:00,0.0,10.764966,10764.966 +4483,2025-06-10T13:19:27.693215-07:00,0.0,10.753681,10753.681 +4484,2025-06-10T13:19:38.462207-07:00,0.0,10.768992,10768.992 +4485,2025-06-10T13:19:49.223474-07:00,0.0,10.761267,10761.267 +4486,2025-06-10T13:19:59.990209-07:00,0.0,10.766735,10766.735 +4487,2025-06-10T13:20:10.753266-07:00,0.0,10.763057,10763.057 +4488,2025-06-10T13:20:21.517542-07:00,0.0,10.764276,10764.276 +4489,2025-06-10T13:20:32.276604-07:00,0.0,10.759062,10759.062 +4490,2025-06-10T13:20:43.040455-07:00,0.0,10.763851,10763.851 +4491,2025-06-10T13:20:53.804393-07:00,0.0,10.763938,10763.938 +4492,2025-06-10T13:21:04.574457-07:00,0.0,10.770064,10770.064 +4493,2025-06-10T13:21:15.339353-07:00,0.0,10.764896,10764.896 +4494,2025-06-10T13:21:26.100457-07:00,0.0,10.761104,10761.104 +4495,2025-06-10T13:21:36.868616-07:00,0.0,10.768159,10768.159 +4496,2025-06-10T13:21:47.627199-07:00,0.0,10.758583,10758.583 +4497,2025-06-10T13:21:58.393825-07:00,0.0,10.766626,10766.626 +4498,2025-06-10T13:22:09.167541-07:00,0.0,10.773716,10773.716 +4499,2025-06-10T13:22:19.921186-07:00,0.0,10.753645,10753.645 +4500,2025-06-10T13:22:30.683400-07:00,0.0,10.762214,10762.214 +4501,2025-06-10T13:22:37.784851-07:00,2715.0,7.101451,7101.451 +4502,2025-06-10T13:22:41.460286-07:00,2747.0,3.675435,3675.435 +4503,2025-06-10T13:22:52.219211-07:00,2671.0,10.758925,10758.925 +4504,2025-06-10T13:23:02.977180-07:00,2675.0,10.757969,10757.969 +4505,2025-06-10T13:23:13.748322-07:00,2672.0,10.771142,10771.142 +4506,2025-06-10T13:23:24.514354-07:00,2647.0,10.766032,10766.032 +4507,2025-06-10T13:23:25.925501-07:00,421.0,1.411147,1411.147 +4508,2025-06-10T13:23:35.273209-07:00,305.0,9.347708,9347.708 +4509,2025-06-10T13:23:46.042784-07:00,273.0,10.769575,10769.575 +4510,2025-06-10T13:23:56.802210-07:00,223.0,10.759426,10759.426 +4511,2025-06-10T13:24:07.558657-07:00,181.0,10.756447,10756.447 +4512,2025-06-10T13:24:12.062342-07:00,2734.0,4.503685,4503.685 +4513,2025-06-10T13:24:18.322524-07:00,2734.0,6.260182,6260.182 +4514,2025-06-10T13:24:29.089470-07:00,2714.0,10.766946,10766.946 +4515,2025-06-10T13:24:39.847239-07:00,2704.0,10.757769,10757.769 +4516,2025-06-10T13:24:50.610188-07:00,2703.0,10.762949,10762.949 +4517,2025-06-10T13:25:01.370419-07:00,2650.0,10.760231,10760.231 +4518,2025-06-10T13:25:12.133534-07:00,2715.0,10.763115,10763.115 +4519,2025-06-10T13:25:22.892207-07:00,2691.0,10.758673,10758.673 +4520,2025-06-10T13:25:33.660241-07:00,2766.0,10.768034,10768.034 +4521,2025-06-10T13:25:44.417946-07:00,2736.0,10.757705,10757.705 +4522,2025-06-10T13:25:55.182251-07:00,2663.0,10.764305,10764.305 +4523,2025-06-10T13:26:05.951453-07:00,2679.0,10.769202,10769.202 +4524,2025-06-10T13:26:16.717540-07:00,2674.0,10.766087,10766.087 +4525,2025-06-10T13:26:27.477564-07:00,2711.0,10.760024,10760.024 +4526,2025-06-10T13:26:38.240673-07:00,2721.0,10.763109,10763.109 +4527,2025-06-10T13:26:49.001779-07:00,2672.0,10.761106,10761.106 +4528,2025-06-10T13:26:59.766211-07:00,2695.0,10.764432,10764.432 +4529,2025-06-10T13:27:00.572733-07:00,2419.0,0.806522,806.522 +4530,2025-06-10T13:27:10.528450-07:00,2672.0,9.955717,9955.717 +4531,2025-06-10T13:27:21.290207-07:00,2675.0,10.761757,10761.757 +4532,2025-06-10T13:27:32.057673-07:00,2689.0,10.767466,10767.466 +4533,2025-06-10T13:27:42.813209-07:00,2677.0,10.755536,10755.536 +4534,2025-06-10T13:27:53.584553-07:00,2605.0,10.771344,10771.344 +4535,2025-06-10T13:28:04.340537-07:00,2639.0,10.755984,10755.984 +4536,2025-06-10T13:28:10.779489-07:00,2416.0,6.438952,6438.952 +4537,2025-06-10T13:28:14.786807-07:00,2629.0,4.007318,4007.318 +4538,2025-06-10T13:28:15.106204-07:00,2629.0,0.319397,319.397 +4539,2025-06-10T13:28:25.876208-07:00,2726.0,10.770004,10770.004 +4540,2025-06-10T13:28:36.638435-07:00,2672.0,10.762227,10762.227 +4541,2025-06-10T13:28:46.869624-07:00,419.0,10.231189,10231.189 +4542,2025-06-10T13:28:47.396633-07:00,419.0,0.527009,527.009 +4543,2025-06-10T13:28:48.879748-07:00,199.0,1.483115,1483.115 +4544,2025-06-10T13:28:58.162209-07:00,240.0,9.282461,9282.461 +4545,2025-06-10T13:29:08.932485-07:00,218.0,10.770276,10770.276 +4546,2025-06-10T13:29:19.693418-07:00,207.0,10.760933,10760.933 +4547,2025-06-10T13:29:30.454211-07:00,206.0,10.760793,10760.793 +4548,2025-06-10T13:29:41.225214-07:00,155.0,10.771003,10771.003 +4549,2025-06-10T13:29:51.983611-07:00,233.0,10.758397,10758.397 +4550,2025-06-10T13:30:02.749370-07:00,291.0,10.765759,10765.759 +4551,2025-06-10T13:30:13.513499-07:00,162.0,10.764129,10764.129 +4552,2025-06-10T13:30:23.187686-07:00,0.0,9.674187,9674.187 +4553,2025-06-10T13:30:24.283211-07:00,0.0,1.095525,1095.525 +4554,2025-06-10T13:30:35.046208-07:00,0.0,10.762997,10762.997 +4555,2025-06-10T13:30:45.813464-07:00,0.0,10.767256,10767.256 +4556,2025-06-10T13:30:56.571475-07:00,0.0,10.758011,10758.011 +4557,2025-06-10T13:31:07.340249-07:00,0.0,10.768774,10768.774 +4558,2025-06-10T13:31:18.105375-07:00,0.0,10.765126,10765.126 +4559,2025-06-10T13:31:28.865211-07:00,0.0,10.759836,10759.836 +4560,2025-06-10T13:31:39.637237-07:00,0.0,10.772026,10772.026 +4561,2025-06-10T13:31:50.406404-07:00,0.0,10.769167,10769.167 +4562,2025-06-10T13:32:01.160647-07:00,0.0,10.754243,10754.243 +4563,2025-06-10T13:32:11.933246-07:00,0.0,10.772599,10772.599 +4564,2025-06-10T13:32:22.697470-07:00,0.0,10.764224,10764.224 +4565,2025-06-10T13:32:33.454190-07:00,0.0,10.75672,10756.72 +4566,2025-06-10T13:32:44.213392-07:00,0.0,10.759202,10759.202 +4567,2025-06-10T13:32:54.977209-07:00,0.0,10.763817,10763.817 +4568,2025-06-10T13:33:05.746648-07:00,0.0,10.769439,10769.439 +4569,2025-06-10T13:33:16.508206-07:00,0.0,10.761558,10761.558 +4570,2025-06-10T13:33:27.269362-07:00,0.0,10.761156,10761.156 +4571,2025-06-10T13:33:38.037551-07:00,0.0,10.768189,10768.189 +4572,2025-06-10T13:33:48.798186-07:00,0.0,10.760635,10760.635 +4573,2025-06-10T13:33:59.560211-07:00,0.0,10.762025,10762.025 +4574,2025-06-10T13:34:10.318456-07:00,0.0,10.758245,10758.245 +4575,2025-06-10T13:34:21.085549-07:00,0.0,10.767093,10767.093 +4576,2025-06-10T13:34:31.848605-07:00,0.0,10.763056,10763.056 +4577,2025-06-10T13:34:42.607207-07:00,0.0,10.758602,10758.602 +4578,2025-06-10T13:34:53.368752-07:00,0.0,10.761545,10761.545 +4579,2025-06-10T13:35:04.130245-07:00,0.0,10.761493,10761.493 +4580,2025-06-10T13:35:14.891211-07:00,0.0,10.760966,10760.966 +4581,2025-06-10T13:35:25.657202-07:00,0.0,10.765991,10765.991 +4582,2025-06-10T13:35:36.417373-07:00,0.0,10.760171,10760.171 +4583,2025-06-10T13:35:47.181393-07:00,0.0,10.76402,10764.02 +4584,2025-06-10T13:35:57.944277-07:00,0.0,10.762884,10762.884 +4585,2025-06-10T13:36:08.706997-07:00,0.0,10.76272,10762.72 +4586,2025-06-10T13:36:19.473455-07:00,0.0,10.766458,10766.458 +4587,2025-06-10T13:36:30.237207-07:00,0.0,10.763752,10763.752 +4588,2025-06-10T13:36:41.000497-07:00,0.0,10.76329,10763.29 +4589,2025-06-10T13:36:51.756528-07:00,0.0,10.756031,10756.031 +4590,2025-06-10T13:37:02.516215-07:00,0.0,10.759687,10759.687 +4591,2025-06-10T13:37:13.286211-07:00,0.0,10.769996,10769.996 +4592,2025-06-10T13:37:24.043540-07:00,0.0,10.757329,10757.329 +4593,2025-06-10T13:37:34.807778-07:00,0.0,10.764238,10764.238 +4594,2025-06-10T13:37:45.579208-07:00,0.0,10.77143,10771.43 +4595,2025-06-10T13:37:56.343486-07:00,0.0,10.764278,10764.278 +4596,2025-06-10T13:38:07.104202-07:00,0.0,10.760716,10760.716 +4597,2025-06-10T13:38:17.867198-07:00,0.0,10.762996,10762.996 +4598,2025-06-10T13:38:28.622846-07:00,0.0,10.755648,10755.648 +4599,2025-06-10T13:38:39.386505-07:00,0.0,10.763659,10763.659 +4600,2025-06-10T13:38:50.162466-07:00,0.0,10.775961,10775.961 +4601,2025-06-10T13:39:00.929510-07:00,0.0,10.767044,10767.044 +4602,2025-06-10T13:39:11.692320-07:00,0.0,10.76281,10762.81 +4603,2025-06-10T13:39:22.465441-07:00,0.0,10.773121,10773.121 +4604,2025-06-10T13:39:33.233206-07:00,0.0,10.767765,10767.765 +4605,2025-06-10T13:39:43.996209-07:00,0.0,10.763003,10763.003 +4606,2025-06-10T13:39:54.770479-07:00,0.0,10.77427,10774.27 +4607,2025-06-10T13:40:05.529587-07:00,0.0,10.759108,10759.108 +4608,2025-06-10T13:40:16.299200-07:00,0.0,10.769613,10769.613 +4609,2025-06-10T13:40:27.067493-07:00,0.0,10.768293,10768.293 +4610,2025-06-10T13:40:37.837215-07:00,0.0,10.769722,10769.722 +4611,2025-06-10T13:40:48.601190-07:00,0.0,10.763975,10763.975 +4612,2025-06-10T13:40:59.369561-07:00,0.0,10.768371,10768.371 +4613,2025-06-10T13:41:10.140467-07:00,0.0,10.770906,10770.906 +4614,2025-06-10T13:41:20.905290-07:00,0.0,10.764823,10764.823 +4615,2025-06-10T13:41:31.669283-07:00,0.0,10.763993,10763.993 +4616,2025-06-10T13:41:42.434656-07:00,0.0,10.765373,10765.373 +4617,2025-06-10T13:41:53.204737-07:00,0.0,10.770081,10770.081 +4618,2025-06-10T13:42:03.974240-07:00,0.0,10.769503,10769.503 +4619,2025-06-10T13:42:14.740646-07:00,0.0,10.766406,10766.406 +4620,2025-06-10T13:42:25.501413-07:00,0.0,10.760767,10760.767 +4621,2025-06-10T13:42:36.273603-07:00,0.0,10.77219,10772.19 +4622,2025-06-10T13:42:47.040722-07:00,0.0,10.767119,10767.119 +4623,2025-06-10T13:42:57.805806-07:00,0.0,10.765084,10765.084 +4624,2025-06-10T13:43:08.575208-07:00,0.0,10.769402,10769.402 +4625,2025-06-10T13:43:19.336549-07:00,0.0,10.761341,10761.341 +4626,2025-06-10T13:43:30.109210-07:00,0.0,10.772661,10772.661 +4627,2025-06-10T13:43:40.866206-07:00,0.0,10.756996,10756.996 +4628,2025-06-10T13:43:51.639528-07:00,0.0,10.773322,10773.322 +4629,2025-06-10T13:44:02.407471-07:00,0.0,10.767943,10767.943 +4630,2025-06-10T13:44:13.174351-07:00,0.0,10.76688,10766.88 +4631,2025-06-10T13:44:23.940453-07:00,0.0,10.766102,10766.102 +4632,2025-06-10T13:44:34.704197-07:00,0.0,10.763744,10763.744 +4633,2025-06-10T13:44:45.473492-07:00,0.0,10.769295,10769.295 +4634,2025-06-10T13:44:56.233577-07:00,0.0,10.760085,10760.085 +4635,2025-06-10T13:45:06.996561-07:00,0.0,10.762984,10762.984 +4636,2025-06-10T13:45:17.768522-07:00,0.0,10.771961,10771.961 +4637,2025-06-10T13:45:28.531209-07:00,0.0,10.762687,10762.687 +4638,2025-06-10T13:45:39.299207-07:00,0.0,10.767998,10767.998 +4639,2025-06-10T13:45:50.064477-07:00,0.0,10.76527,10765.27 +4640,2025-06-10T13:46:00.831509-07:00,0.0,10.767032,10767.032 +4641,2025-06-10T13:46:11.594212-07:00,0.0,10.762703,10762.703 +4642,2025-06-10T13:46:22.357566-07:00,0.0,10.763354,10763.354 +4643,2025-06-10T13:46:33.126339-07:00,0.0,10.768773,10768.773 +4644,2025-06-10T13:46:43.893425-07:00,0.0,10.767086,10767.086 +4645,2025-06-10T13:46:54.661561-07:00,0.0,10.768136,10768.136 +4646,2025-06-10T13:47:05.429217-07:00,0.0,10.767656,10767.656 +4647,2025-06-10T13:47:16.195806-07:00,0.0,10.766589,10766.589 +4648,2025-06-10T13:47:26.962205-07:00,0.0,10.766399,10766.399 +4649,2025-06-10T13:47:37.725215-07:00,0.0,10.76301,10763.01 +4650,2025-06-10T13:47:48.499940-07:00,0.0,10.774725,10774.725 +4651,2025-06-10T13:47:59.261447-07:00,0.0,10.761507,10761.507 +4652,2025-06-10T13:48:10.032399-07:00,0.0,10.770952,10770.952 +4653,2025-06-10T13:48:20.802340-07:00,0.0,10.769941,10769.941 +4654,2025-06-10T13:48:31.562201-07:00,0.0,10.759861,10759.861 +4655,2025-06-10T13:48:42.327207-07:00,0.0,10.765006,10765.006 +4656,2025-06-10T13:48:53.093427-07:00,0.0,10.76622,10766.22 +4657,2025-06-10T13:49:03.863188-07:00,0.0,10.769761,10769.761 +4658,2025-06-10T13:49:14.631505-07:00,0.0,10.768317,10768.317 +4659,2025-06-10T13:49:25.402204-07:00,0.0,10.770699,10770.699 +4660,2025-06-10T13:49:36.169207-07:00,0.0,10.767003,10767.003 +4661,2025-06-10T13:49:46.934591-07:00,0.0,10.765384,10765.384 +4662,2025-06-10T13:49:57.704239-07:00,0.0,10.769648,10769.648 +4663,2025-06-10T13:50:08.474755-07:00,0.0,10.770516,10770.516 +4664,2025-06-10T13:50:19.234362-07:00,0.0,10.759607,10759.607 +4665,2025-06-10T13:50:30.005549-07:00,0.0,10.771187,10771.187 +4666,2025-06-10T13:50:40.776604-07:00,0.0,10.771055,10771.055 +4667,2025-06-10T13:50:51.537457-07:00,0.0,10.760853,10760.853 +4668,2025-06-10T13:51:02.311230-07:00,0.0,10.773773,10773.773 +4669,2025-06-10T13:51:13.075354-07:00,0.0,10.764124,10764.124 +4670,2025-06-10T13:51:23.852205-07:00,0.0,10.776851,10776.851 +4671,2025-06-10T13:51:34.617082-07:00,0.0,10.764877,10764.877 +4672,2025-06-10T13:51:45.440280-07:00,0.0,10.823198,10823.198 +4673,2025-06-10T13:51:56.212336-07:00,0.0,10.772056,10772.056 +4674,2025-06-10T13:52:06.981254-07:00,0.0,10.768918,10768.918 +4675,2025-06-10T13:52:17.751114-07:00,0.0,10.76986,10769.86 +4676,2025-06-10T13:52:28.516254-07:00,0.0,10.76514,10765.14 +4677,2025-06-10T13:52:39.293060-07:00,0.0,10.776806,10776.806 +4678,2025-06-10T13:52:50.061046-07:00,0.0,10.767986,10767.986 +4679,2025-06-10T13:53:00.830019-07:00,0.0,10.768973,10768.973 +4680,2025-06-10T13:53:11.594892-07:00,0.0,10.764873,10764.873 +4681,2025-06-10T13:53:22.356371-07:00,0.0,10.761479,10761.479 +4682,2025-06-10T13:53:33.135189-07:00,0.0,10.778818,10778.818 +4683,2025-06-10T13:53:43.900301-07:00,0.0,10.765112,10765.112 +4684,2025-06-10T13:53:54.660689-07:00,0.0,10.760388,10760.388 +4685,2025-06-10T13:54:05.428015-07:00,0.0,10.767326,10767.326 +4686,2025-06-10T13:54:16.200330-07:00,0.0,10.772315,10772.315 +4687,2025-06-10T13:54:26.973016-07:00,0.0,10.772686,10772.686 +4688,2025-06-10T13:54:37.736303-07:00,0.0,10.763287,10763.287 +4689,2025-06-10T13:54:48.507062-07:00,0.0,10.770759,10770.759 +4690,2025-06-10T13:54:59.269275-07:00,0.0,10.762213,10762.213 +4691,2025-06-10T13:55:10.029290-07:00,0.0,10.760015,10760.015 +4692,2025-06-10T13:55:20.798249-07:00,0.0,10.768959,10768.959 +4693,2025-06-10T13:55:31.566040-07:00,0.0,10.767791,10767.791 +4694,2025-06-10T13:55:42.332464-07:00,0.0,10.766424,10766.424 +4695,2025-06-10T13:55:53.101015-07:00,0.0,10.768551,10768.551 +4696,2025-06-10T13:56:03.866464-07:00,0.0,10.765449,10765.449 +4697,2025-06-10T13:56:14.626356-07:00,0.0,10.759892,10759.892 +4698,2025-06-10T13:56:25.402269-07:00,0.0,10.775913,10775.913 +4699,2025-06-10T13:56:36.161206-07:00,0.0,10.758937,10758.937 +4700,2025-06-10T13:56:46.929267-07:00,0.0,10.768061,10768.061 +4701,2025-06-10T13:56:57.692015-07:00,0.0,10.762748,10762.748 +4702,2025-06-10T13:57:08.457750-07:00,0.0,10.765735,10765.735 +4703,2025-06-10T13:57:19.225093-07:00,0.0,10.767343,10767.343 +4704,2025-06-10T13:57:29.986607-07:00,0.0,10.761514,10761.514 +4705,2025-06-10T13:57:40.754504-07:00,0.0,10.767897,10767.897 +4706,2025-06-10T13:57:51.526282-07:00,0.0,10.771778,10771.778 +4707,2025-06-10T13:58:02.292015-07:00,0.0,10.765733,10765.733 +4708,2025-06-10T13:58:13.056772-07:00,0.0,10.764757,10764.757 +4709,2025-06-10T13:58:23.815018-07:00,0.0,10.758246,10758.246 +4710,2025-06-10T13:58:34.594590-07:00,0.0,10.779572,10779.572 +4711,2025-06-10T13:58:45.358270-07:00,0.0,10.76368,10763.68 +4712,2025-06-10T13:58:56.121008-07:00,0.0,10.762738,10762.738 +4713,2025-06-10T13:59:06.884015-07:00,0.0,10.763007,10763.007 +4714,2025-06-10T13:59:17.659004-07:00,0.0,10.774989,10774.989 +4715,2025-06-10T13:59:28.428212-07:00,0.0,10.769208,10769.208 +4716,2025-06-10T13:59:39.195019-07:00,0.0,10.766807,10766.807 +4717,2025-06-10T13:59:49.963244-07:00,0.0,10.768225,10768.225 +4718,2025-06-10T14:00:00.725146-07:00,0.0,10.761902,10761.902 +4719,2025-06-10T14:00:11.490901-07:00,0.0,10.765755,10765.755 +4720,2025-06-10T14:00:22.263061-07:00,0.0,10.77216,10772.16 +4721,2025-06-10T14:00:33.025564-07:00,0.0,10.762503,10762.503 +4722,2025-06-10T14:00:43.794014-07:00,0.0,10.76845,10768.45 +4723,2025-06-10T14:00:54.571332-07:00,0.0,10.777318,10777.318 +4724,2025-06-10T14:01:05.338152-07:00,0.0,10.76682,10766.82 +4725,2025-06-10T14:01:16.096004-07:00,0.0,10.757852,10757.852 +4726,2025-06-10T14:01:26.872330-07:00,0.0,10.776326,10776.326 +4727,2025-06-10T14:01:37.638987-07:00,0.0,10.766657,10766.657 +4728,2025-06-10T14:01:48.402235-07:00,0.0,10.763248,10763.248 +4729,2025-06-10T14:01:59.171310-07:00,0.0,10.769075,10769.075 +4730,2025-06-10T14:02:09.936591-07:00,0.0,10.765281,10765.281 +4731,2025-06-10T14:02:20.707569-07:00,0.0,10.770978,10770.978 +4732,2025-06-10T14:02:31.473146-07:00,0.0,10.765577,10765.577 +4733,2025-06-10T14:02:42.240046-07:00,0.0,10.7669,10766.9 +4734,2025-06-10T14:02:53.009258-07:00,0.0,10.769212,10769.212 +4735,2025-06-10T14:03:03.766295-07:00,0.0,10.757037,10757.037 +4736,2025-06-10T14:03:14.536988-07:00,0.0,10.770693,10770.693 +4737,2025-06-10T14:03:25.307558-07:00,0.0,10.77057,10770.57 +4738,2025-06-10T14:03:36.072204-07:00,0.0,10.764646,10764.646 +4739,2025-06-10T14:03:46.838347-07:00,0.0,10.766143,10766.143 +4740,2025-06-10T14:03:57.614295-07:00,0.0,10.775948,10775.948 +4741,2025-06-10T14:04:08.374260-07:00,0.0,10.759965,10759.965 +4742,2025-06-10T14:04:19.143466-07:00,0.0,10.769206,10769.206 +4743,2025-06-10T14:04:29.911015-07:00,0.0,10.767549,10767.549 +4744,2025-06-10T14:04:40.677017-07:00,0.0,10.766002,10766.002 +4745,2025-06-10T14:04:51.445405-07:00,0.0,10.768388,10768.388 +4746,2025-06-10T14:05:02.215014-07:00,0.0,10.769609,10769.609 +4747,2025-06-10T14:05:12.988352-07:00,0.0,10.773338,10773.338 +4748,2025-06-10T14:05:23.750420-07:00,0.0,10.762068,10762.068 +4749,2025-06-10T14:05:34.517233-07:00,0.0,10.766813,10766.813 +4750,2025-06-10T14:05:45.286739-07:00,0.0,10.769506,10769.506 +4751,2025-06-10T14:05:56.046173-07:00,0.0,10.759434,10759.434 +4752,2025-06-10T14:06:06.813419-07:00,0.0,10.767246,10767.246 +4753,2025-06-10T14:06:17.586019-07:00,0.0,10.7726,10772.6 +4754,2025-06-10T14:06:28.355015-07:00,0.0,10.768996,10768.996 +4755,2025-06-10T14:06:39.117731-07:00,0.0,10.762716,10762.716 +4756,2025-06-10T14:06:49.887167-07:00,0.0,10.769436,10769.436 +4757,2025-06-10T14:07:00.650105-07:00,0.0,10.762938,10762.938 +4758,2025-06-10T14:07:11.417482-07:00,0.0,10.767377,10767.377 +4759,2025-06-10T14:07:22.188015-07:00,0.0,10.770533,10770.533 +4760,2025-06-10T14:07:32.967694-07:00,0.0,10.779679,10779.679 +4761,2025-06-10T14:07:43.729248-07:00,0.0,10.761554,10761.554 +4762,2025-06-10T14:07:54.498203-07:00,0.0,10.768955,10768.955 +4763,2025-06-10T14:08:05.261312-07:00,0.0,10.763109,10763.109 +4764,2025-06-10T14:08:16.027025-07:00,0.0,10.765713,10765.713 +4765,2025-06-10T14:08:26.787015-07:00,0.0,10.75999,10759.99 +4766,2025-06-10T14:08:37.552286-07:00,0.0,10.765271,10765.271 +4767,2025-06-10T14:08:48.324994-07:00,0.0,10.772708,10772.708 +4768,2025-06-10T14:08:59.084019-07:00,0.0,10.759025,10759.025 +4769,2025-06-10T14:09:09.859017-07:00,0.0,10.774998,10774.998 +4770,2025-06-10T14:09:20.617242-07:00,0.0,10.758225,10758.225 +4771,2025-06-10T14:09:31.389828-07:00,0.0,10.772586,10772.586 +4772,2025-06-10T14:09:42.159015-07:00,0.0,10.769187,10769.187 +4773,2025-06-10T14:09:52.916019-07:00,0.0,10.757004,10757.004 +4774,2025-06-10T14:10:03.687271-07:00,0.0,10.771252,10771.252 +4775,2025-06-10T14:10:14.459018-07:00,0.0,10.771747,10771.747 +4776,2025-06-10T14:10:25.229548-07:00,0.0,10.77053,10770.53 +4777,2025-06-10T14:10:35.993348-07:00,0.0,10.7638,10763.8 +4778,2025-06-10T14:10:46.762017-07:00,0.0,10.768669,10768.669 +4779,2025-06-10T14:10:57.531080-07:00,0.0,10.769063,10769.063 +4780,2025-06-10T14:11:08.290020-07:00,0.0,10.75894,10758.94 +4781,2025-06-10T14:11:19.062019-07:00,0.0,10.771999,10771.999 +4782,2025-06-10T14:11:29.822421-07:00,0.0,10.760402,10760.402 +4783,2025-06-10T14:11:40.589394-07:00,0.0,10.766973,10766.973 +4784,2025-06-10T14:11:51.362308-07:00,0.0,10.772914,10772.914 +4785,2025-06-10T14:12:02.126101-07:00,0.0,10.763793,10763.793 +4786,2025-06-10T14:12:12.895009-07:00,0.0,10.768908,10768.908 +4787,2025-06-10T14:12:23.658017-07:00,0.0,10.763008,10763.008 +4788,2025-06-10T14:12:34.426489-07:00,0.0,10.768472,10768.472 +4789,2025-06-10T14:12:45.191019-07:00,0.0,10.76453,10764.53 +4790,2025-06-10T14:12:55.956455-07:00,0.0,10.765436,10765.436 +4791,2025-06-10T14:13:06.727061-07:00,0.0,10.770606,10770.606 +4792,2025-06-10T14:13:17.497015-07:00,0.0,10.769954,10769.954 +4793,2025-06-10T14:13:28.262703-07:00,0.0,10.765688,10765.688 +4794,2025-06-10T14:13:39.033061-07:00,0.0,10.770358,10770.358 +4795,2025-06-10T14:13:49.792038-07:00,0.0,10.758977,10758.977 +4796,2025-06-10T14:14:00.558022-07:00,0.0,10.765984,10765.984 +4797,2025-06-10T14:14:11.323253-07:00,0.0,10.765231,10765.231 +4798,2025-06-10T14:14:22.096363-07:00,0.0,10.77311,10773.11 +4799,2025-06-10T14:14:32.866002-07:00,0.0,10.769639,10769.639 +4800,2025-06-10T14:14:43.634067-07:00,0.0,10.768065,10768.065 +4801,2025-06-10T14:14:54.392303-07:00,0.0,10.758236,10758.236 +4802,2025-06-10T14:15:05.155011-07:00,0.0,10.762708,10762.708 +4803,2025-06-10T14:15:15.927060-07:00,0.0,10.772049,10772.049 +4804,2025-06-10T14:15:26.687284-07:00,0.0,10.760224,10760.224 +4805,2025-06-10T14:15:37.460117-07:00,0.0,10.772833,10772.833 +4806,2025-06-10T14:15:48.219018-07:00,0.0,10.758901,10758.901 +4807,2025-06-10T14:15:58.982356-07:00,0.0,10.763338,10763.338 +4808,2025-06-10T14:16:09.755019-07:00,0.0,10.772663,10772.663 +4809,2025-06-10T14:16:20.524239-07:00,0.0,10.76922,10769.22 +4810,2025-06-10T14:16:31.287767-07:00,0.0,10.763528,10763.528 +4811,2025-06-10T14:16:42.047268-07:00,0.0,10.759501,10759.501 +4812,2025-06-10T14:16:52.818065-07:00,0.0,10.770797,10770.797 +4813,2025-06-10T14:17:03.582142-07:00,0.0,10.764077,10764.077 +4814,2025-06-10T14:17:14.343178-07:00,0.0,10.761036,10761.036 +4815,2025-06-10T14:17:25.109007-07:00,0.0,10.765829,10765.829 +4816,2025-06-10T14:17:35.877592-07:00,0.0,10.768585,10768.585 +4817,2025-06-10T14:17:46.638395-07:00,0.0,10.760803,10760.803 +4818,2025-06-10T14:17:57.401051-07:00,0.0,10.762656,10762.656 +4819,2025-06-10T14:18:08.167150-07:00,0.0,10.766099,10766.099 +4820,2025-06-10T14:18:18.928258-07:00,0.0,10.761108,10761.108 +4821,2025-06-10T14:18:29.697015-07:00,0.0,10.768757,10768.757 +4822,2025-06-10T14:18:40.461082-07:00,0.0,10.764067,10764.067 +4823,2025-06-10T14:18:51.221697-07:00,0.0,10.760615,10760.615 +4824,2025-06-10T14:19:01.992541-07:00,0.0,10.770844,10770.844 +4825,2025-06-10T14:19:12.755062-07:00,0.0,10.762521,10762.521 +4826,2025-06-10T14:19:23.519310-07:00,0.0,10.764248,10764.248 +4827,2025-06-10T14:19:34.280053-07:00,0.0,10.760743,10760.743 +4828,2025-06-10T14:19:45.056432-07:00,0.0,10.776379,10776.379 +4829,2025-06-10T14:19:55.820072-07:00,0.0,10.76364,10763.64 +4830,2025-06-10T14:20:06.578179-07:00,0.0,10.758107,10758.107 +4831,2025-06-10T14:20:17.355382-07:00,0.0,10.777203,10777.203 +4832,2025-06-10T14:20:28.120336-07:00,0.0,10.764954,10764.954 +4833,2025-06-10T14:20:38.882272-07:00,0.0,10.761936,10761.936 +4834,2025-06-10T14:20:49.649294-07:00,0.0,10.767022,10767.022 +4835,2025-06-10T14:21:00.417062-07:00,0.0,10.767768,10767.768 +4836,2025-06-10T14:21:11.182367-07:00,0.0,10.765305,10765.305 +4837,2025-06-10T14:21:21.957015-07:00,0.0,10.774648,10774.648 +4838,2025-06-10T14:21:32.722306-07:00,0.0,10.765291,10765.291 +4839,2025-06-10T14:21:43.481458-07:00,0.0,10.759152,10759.152 +4840,2025-06-10T14:21:54.246259-07:00,0.0,10.764801,10764.801 +4841,2025-06-10T14:22:05.015120-07:00,0.0,10.768861,10768.861 +4842,2025-06-10T14:22:15.781063-07:00,0.0,10.765943,10765.943 +4843,2025-06-10T14:22:26.548017-07:00,0.0,10.766954,10766.954 +4844,2025-06-10T14:22:37.307199-07:00,0.0,10.759182,10759.182 +4845,2025-06-10T14:22:48.076190-07:00,0.0,10.768991,10768.991 +4846,2025-06-10T14:22:58.839133-07:00,0.0,10.762943,10762.943 +4847,2025-06-10T14:23:09.607451-07:00,0.0,10.768318,10768.318 +4848,2025-06-10T14:23:20.366180-07:00,0.0,10.758729,10758.729 +4849,2025-06-10T14:23:31.129017-07:00,0.0,10.762837,10762.837 +4850,2025-06-10T14:23:41.901756-07:00,0.0,10.772739,10772.739 +4851,2025-06-10T14:23:52.661413-07:00,0.0,10.759657,10759.657 +4852,2025-06-10T14:24:03.424002-07:00,0.0,10.762589,10762.589 +4853,2025-06-10T14:24:14.187165-07:00,0.0,10.763163,10763.163 +4854,2025-06-10T14:24:24.956021-07:00,0.0,10.768856,10768.856 +4855,2025-06-10T14:24:35.724540-07:00,0.0,10.768519,10768.519 +4856,2025-06-10T14:24:46.498518-07:00,0.0,10.773978,10773.978 +4857,2025-06-10T14:24:57.253632-07:00,0.0,10.755114,10755.114 +4858,2025-06-10T14:25:08.025306-07:00,0.0,10.771674,10771.674 +4859,2025-06-10T14:25:18.784820-07:00,0.0,10.759514,10759.514 +4860,2025-06-10T14:25:29.545161-07:00,0.0,10.760341,10760.341 +4861,2025-06-10T14:25:40.314221-07:00,0.0,10.76906,10769.06 +4862,2025-06-10T14:25:51.073144-07:00,0.0,10.758923,10758.923 +4863,2025-06-10T14:26:01.834127-07:00,0.0,10.760983,10760.983 +4864,2025-06-10T14:26:12.599023-07:00,0.0,10.764896,10764.896 +4865,2025-06-10T14:26:23.374556-07:00,0.0,10.775533,10775.533 +4866,2025-06-10T14:26:34.160093-07:00,0.0,10.785537,10785.537 +4867,2025-06-10T14:26:44.938357-07:00,0.0,10.778264,10778.264 +4868,2025-06-10T14:26:55.732067-07:00,0.0,10.79371,10793.71 +4869,2025-06-10T14:27:06.519256-07:00,0.0,10.787189,10787.189 +4870,2025-06-10T14:27:17.307253-07:00,0.0,10.787997,10787.997 +4871,2025-06-10T14:27:28.082020-07:00,0.0,10.774767,10774.767 +4872,2025-06-10T14:27:38.870303-07:00,0.0,10.788283,10788.283 +4873,2025-06-10T14:27:49.649019-07:00,0.0,10.778716,10778.716 +4874,2025-06-10T14:28:00.431014-07:00,0.0,10.781995,10781.995 +4875,2025-06-10T14:28:11.214506-07:00,0.0,10.783492,10783.492 +4876,2025-06-10T14:28:21.999986-07:00,0.0,10.78548,10785.48 +4877,2025-06-10T14:28:32.793257-07:00,0.0,10.793271,10793.271 +4878,2025-06-10T14:28:43.553015-07:00,0.0,10.759758,10759.758 +4879,2025-06-10T14:28:54.319615-07:00,0.0,10.7666,10766.6 +4880,2025-06-10T14:29:05.080247-07:00,0.0,10.760632,10760.632 +4881,2025-06-10T14:29:15.849312-07:00,0.0,10.769065,10769.065 +4882,2025-06-10T14:29:26.606788-07:00,0.0,10.757476,10757.476 +4883,2025-06-10T14:29:37.378273-07:00,0.0,10.771485,10771.485 +4884,2025-06-10T14:29:48.137994-07:00,0.0,10.759721,10759.721 +4885,2025-06-10T14:29:58.901450-07:00,0.0,10.763456,10763.456 +4886,2025-06-10T14:30:09.659446-07:00,0.0,10.757996,10757.996 +4887,2025-06-10T14:30:20.426019-07:00,0.0,10.766573,10766.573 +4888,2025-06-10T14:30:31.197390-07:00,0.0,10.771371,10771.371 +4889,2025-06-10T14:30:41.963241-07:00,0.0,10.765851,10765.851 +4890,2025-06-10T14:30:52.727015-07:00,0.0,10.763774,10763.774 +4891,2025-06-10T14:31:03.485746-07:00,0.0,10.758731,10758.731 +4892,2025-06-10T14:31:14.256021-07:00,0.0,10.770275,10770.275 +4893,2025-06-10T14:31:25.019235-07:00,0.0,10.763214,10763.214 +4894,2025-06-10T14:31:35.785359-07:00,0.0,10.766124,10766.124 +4895,2025-06-10T14:31:46.552185-07:00,0.0,10.766826,10766.826 +4896,2025-06-10T14:31:57.314017-07:00,0.0,10.761832,10761.832 +4897,2025-06-10T14:32:08.074695-07:00,0.0,10.760678,10760.678 +4898,2025-06-10T14:32:18.841128-07:00,0.0,10.766433,10766.433 +4899,2025-06-10T14:32:29.594243-07:00,0.0,10.753115,10753.115 +4900,2025-06-10T14:32:40.357014-07:00,0.0,10.762771,10762.771 +4901,2025-06-10T14:32:49.302353-07:00,0.0,8.945339,8945.339 +4902,2025-06-10T14:32:51.124224-07:00,0.0,1.821871,1821.871 +4903,2025-06-10T14:33:01.880014-07:00,0.0,10.75579,10755.79 +4904,2025-06-10T14:33:12.646017-07:00,0.0,10.766003,10766.003 +4905,2025-06-10T14:33:23.406019-07:00,0.0,10.760002,10760.002 +4906,2025-06-10T14:33:34.169454-07:00,0.0,10.763435,10763.435 +4907,2025-06-10T14:33:44.940020-07:00,0.0,10.770566,10770.566 +4908,2025-06-10T14:33:55.701085-07:00,0.0,10.761065,10761.065 +4909,2025-06-10T14:34:06.455587-07:00,0.0,10.754502,10754.502 +4910,2025-06-10T14:34:17.218169-07:00,0.0,10.762582,10762.582 +4911,2025-06-10T14:34:27.983017-07:00,0.0,10.764848,10764.848 +4912,2025-06-10T14:34:38.749151-07:00,0.0,10.766134,10766.134 +4913,2025-06-10T14:34:49.513275-07:00,0.0,10.764124,10764.124 +4914,2025-06-10T14:35:00.277016-07:00,0.0,10.763741,10763.741 +4915,2025-06-10T14:35:11.037261-07:00,0.0,10.760245,10760.245 +4916,2025-06-10T14:35:21.803074-07:00,0.0,10.765813,10765.813 +4917,2025-06-10T14:35:32.563018-07:00,0.0,10.759944,10759.944 +4918,2025-06-10T14:35:43.338580-07:00,0.0,10.775562,10775.562 +4919,2025-06-10T14:35:54.100645-07:00,0.0,10.762065,10762.065 +4920,2025-06-10T14:36:04.869347-07:00,0.0,10.768702,10768.702 +4921,2025-06-10T14:36:15.630567-07:00,0.0,10.76122,10761.22 +4922,2025-06-10T14:36:26.394064-07:00,0.0,10.763497,10763.497 +4923,2025-06-10T14:36:37.156265-07:00,0.0,10.762201,10762.201 +4924,2025-06-10T14:36:47.929328-07:00,0.0,10.773063,10773.063 +4925,2025-06-10T14:36:58.688345-07:00,0.0,10.759017,10759.017 +4926,2025-06-10T14:37:09.453254-07:00,0.0,10.764909,10764.909 +4927,2025-06-10T14:37:20.221915-07:00,0.0,10.768661,10768.661 +4928,2025-06-10T14:37:30.997062-07:00,0.0,10.775147,10775.147 +4929,2025-06-10T14:37:41.755017-07:00,0.0,10.757955,10757.955 +4930,2025-06-10T14:37:52.515273-07:00,0.0,10.760256,10760.256 +4931,2025-06-10T14:38:03.278348-07:00,0.0,10.763075,10763.075 +4932,2025-06-10T14:38:14.047016-07:00,0.0,10.768668,10768.668 +4933,2025-06-10T14:38:24.805060-07:00,0.0,10.758044,10758.044 +4934,2025-06-10T14:38:35.566266-07:00,0.0,10.761206,10761.206 +4935,2025-06-10T14:38:46.334020-07:00,0.0,10.767754,10767.754 +4936,2025-06-10T14:38:57.093201-07:00,0.0,10.759181,10759.181 +4937,2025-06-10T14:39:07.861132-07:00,0.0,10.767931,10767.931 +4938,2025-06-10T14:39:18.625234-07:00,0.0,10.764102,10764.102 +4939,2025-06-10T14:39:29.401376-07:00,0.0,10.776142,10776.142 +4940,2025-06-10T14:39:40.161019-07:00,0.0,10.759643,10759.643 +4941,2025-06-10T14:39:50.923215-07:00,0.0,10.762196,10762.196 +4942,2025-06-10T14:40:01.697511-07:00,0.0,10.774296,10774.296 +4943,2025-06-10T14:40:12.465019-07:00,0.0,10.767508,10767.508 +4944,2025-06-10T14:40:23.235342-07:00,0.0,10.770323,10770.323 +4945,2025-06-10T14:40:33.991918-07:00,0.0,10.756576,10756.576 +4946,2025-06-10T14:40:44.762273-07:00,0.0,10.770355,10770.355 +4947,2025-06-10T14:40:55.523015-07:00,0.0,10.760742,10760.742 +4948,2025-06-10T14:41:06.291551-07:00,0.0,10.768536,10768.536 +4949,2025-06-10T14:41:17.060023-07:00,0.0,10.768472,10768.472 +4950,2025-06-10T14:41:27.825226-07:00,0.0,10.765203,10765.203 +4951,2025-06-10T14:41:38.592059-07:00,0.0,10.766833,10766.833 +4952,2025-06-10T14:41:49.362817-07:00,0.0,10.770758,10770.758 +4953,2025-06-10T14:42:00.121241-07:00,0.0,10.758424,10758.424 +4954,2025-06-10T14:42:10.888563-07:00,0.0,10.767322,10767.322 +4955,2025-06-10T14:42:21.651250-07:00,0.0,10.762687,10762.687 +4956,2025-06-10T14:42:32.421842-07:00,0.0,10.770592,10770.592 +4957,2025-06-10T14:42:43.184190-07:00,0.0,10.762348,10762.348 +4958,2025-06-10T14:42:53.955095-07:00,0.0,10.770905,10770.905 +4959,2025-06-10T14:43:04.723574-07:00,0.0,10.768479,10768.479 +4960,2025-06-10T14:43:15.483299-07:00,0.0,10.759725,10759.725 +4961,2025-06-10T14:43:26.253015-07:00,0.0,10.769716,10769.716 +4962,2025-06-10T14:43:37.018267-07:00,0.0,10.765252,10765.252 +4963,2025-06-10T14:43:47.790158-07:00,0.0,10.771891,10771.891 +4964,2025-06-10T14:43:58.547015-07:00,0.0,10.756857,10756.857 +4965,2025-06-10T14:44:09.317948-07:00,0.0,10.770933,10770.933 +4966,2025-06-10T14:44:20.088046-07:00,0.0,10.770098,10770.098 +4967,2025-06-10T14:44:30.847624-07:00,0.0,10.759578,10759.578 +4968,2025-06-10T14:44:41.618023-07:00,0.0,10.770399,10770.399 +4969,2025-06-10T14:44:52.380100-07:00,0.0,10.762077,10762.077 +4970,2025-06-10T14:45:03.151332-07:00,0.0,10.771232,10771.232 +4971,2025-06-10T14:45:13.923016-07:00,0.0,10.771684,10771.684 +4972,2025-06-10T14:45:24.688345-07:00,0.0,10.765329,10765.329 +4973,2025-06-10T14:45:35.457021-07:00,0.0,10.768676,10768.676 +4974,2025-06-10T14:45:46.213273-07:00,0.0,10.756252,10756.252 +4975,2025-06-10T14:45:56.979184-07:00,0.0,10.765911,10765.911 +4976,2025-06-10T14:46:07.752345-07:00,0.0,10.773161,10773.161 +4977,2025-06-10T14:46:18.518997-07:00,0.0,10.766652,10766.652 +4978,2025-06-10T14:46:29.280078-07:00,0.0,10.761081,10761.081 +4979,2025-06-10T14:46:40.048013-07:00,0.0,10.767935,10767.935 +4980,2025-06-10T14:46:50.813009-07:00,0.0,10.764996,10764.996 +4981,2025-06-10T14:47:01.579327-07:00,0.0,10.766318,10766.318 +4982,2025-06-10T14:47:12.344257-07:00,0.0,10.76493,10764.93 +4983,2025-06-10T14:47:23.108316-07:00,0.0,10.764059,10764.059 +4984,2025-06-10T14:47:33.873499-07:00,0.0,10.765183,10765.183 +4985,2025-06-10T14:47:44.637294-07:00,0.0,10.763795,10763.795 +4986,2025-06-10T14:47:55.402018-07:00,0.0,10.764724,10764.724 +4987,2025-06-10T14:48:06.171365-07:00,0.0,10.769347,10769.347 +4988,2025-06-10T14:48:16.932408-07:00,0.0,10.761043,10761.043 +4989,2025-06-10T14:48:27.694166-07:00,0.0,10.761758,10761.758 +4990,2025-06-10T14:48:38.451007-07:00,0.0,10.756841,10756.841 +4991,2025-06-10T14:48:49.220215-07:00,0.0,10.769208,10769.208 +4992,2025-06-10T14:48:59.984960-07:00,0.0,10.764745,10764.745 +4993,2025-06-10T14:49:10.743183-07:00,0.0,10.758223,10758.223 +4994,2025-06-10T14:49:21.512497-07:00,0.0,10.769314,10769.314 +4995,2025-06-10T14:49:32.276076-07:00,0.0,10.763579,10763.579 +4996,2025-06-10T14:49:43.034605-07:00,0.0,10.758529,10758.529 +4997,2025-06-10T14:49:53.793254-07:00,0.0,10.758649,10758.649 +4998,2025-06-10T14:50:04.555595-07:00,0.0,10.762341,10762.341 +4999,2025-06-10T14:50:15.318017-07:00,0.0,10.762422,10762.422 +5000,2025-06-10T14:50:26.081062-07:00,0.0,10.763045,10763.045 +5001,2025-06-10T14:50:36.849348-07:00,0.0,10.768286,10768.286 +5002,2025-06-10T14:50:47.614018-07:00,0.0,10.76467,10764.67 +5003,2025-06-10T14:50:58.370239-07:00,0.0,10.756221,10756.221 +5004,2025-06-10T14:51:09.142317-07:00,0.0,10.772078,10772.078 +5005,2025-06-10T14:51:19.896015-07:00,0.0,10.753698,10753.698 +5006,2025-06-10T14:51:30.665020-07:00,0.0,10.769005,10769.005 +5007,2025-06-10T14:51:41.431487-07:00,0.0,10.766467,10766.467 +5008,2025-06-10T14:51:52.200487-07:00,0.0,10.769,10769.0 +5009,2025-06-10T14:52:02.965704-07:00,0.0,10.765217,10765.217 +5010,2025-06-10T14:52:13.736145-07:00,0.0,10.770441,10770.441 +5011,2025-06-10T14:52:24.497736-07:00,0.0,10.761591,10761.591 +5012,2025-06-10T14:52:35.271487-07:00,0.0,10.773751,10773.751 +5013,2025-06-10T14:52:46.038993-07:00,0.0,10.767506,10767.506 +5014,2025-06-10T14:52:56.800682-07:00,0.0,10.761689,10761.689 +5015,2025-06-10T14:53:07.570677-07:00,0.0,10.769995,10769.995 +5016,2025-06-10T14:53:18.325797-07:00,0.0,10.75512,10755.12 +5017,2025-06-10T14:53:29.099927-07:00,0.0,10.77413,10774.13 +5018,2025-06-10T14:53:39.864708-07:00,0.0,10.764781,10764.781 +5019,2025-06-10T14:53:50.625613-07:00,0.0,10.760905,10760.905 +5020,2025-06-10T14:54:01.384848-07:00,0.0,10.759235,10759.235 +5021,2025-06-10T14:54:12.143482-07:00,0.0,10.758634,10758.634 +5022,2025-06-10T14:54:22.913820-07:00,0.0,10.770338,10770.338 +5023,2025-06-10T14:54:33.676504-07:00,0.0,10.762684,10762.684 +5024,2025-06-10T14:54:44.442487-07:00,0.0,10.765983,10765.983 +5025,2025-06-10T14:54:55.202485-07:00,0.0,10.759998,10759.998 +5026,2025-06-10T14:55:05.967873-07:00,0.0,10.765388,10765.388 +5027,2025-06-10T14:55:16.736490-07:00,0.0,10.768617,10768.617 +5028,2025-06-10T14:55:27.498697-07:00,0.0,10.762207,10762.207 +5029,2025-06-10T14:55:38.259772-07:00,0.0,10.761075,10761.075 +5030,2025-06-10T14:55:49.027487-07:00,0.0,10.767715,10767.715 +5031,2025-06-10T14:55:59.793731-07:00,0.0,10.766244,10766.244 +5032,2025-06-10T14:56:10.557867-07:00,0.0,10.764136,10764.136 +5033,2025-06-10T14:56:21.317733-07:00,0.0,10.759866,10759.866 +5034,2025-06-10T14:56:32.087769-07:00,0.0,10.770036,10770.036 +5035,2025-06-10T14:56:42.845079-07:00,0.0,10.75731,10757.31 +5036,2025-06-10T14:56:53.619490-07:00,0.0,10.774411,10774.411 +5037,2025-06-10T14:57:04.387829-07:00,0.0,10.768339,10768.339 +5038,2025-06-10T14:57:15.149862-07:00,0.0,10.762033,10762.033 +5039,2025-06-10T14:57:25.913645-07:00,0.0,10.763783,10763.783 +5040,2025-06-10T14:57:36.675870-07:00,0.0,10.762225,10762.225 +5041,2025-06-10T14:57:47.438663-07:00,0.0,10.762793,10762.793 +5042,2025-06-10T14:57:58.212389-07:00,0.0,10.773726,10773.726 +5043,2025-06-10T14:58:08.976250-07:00,0.0,10.763861,10763.861 +5044,2025-06-10T14:58:19.746746-07:00,0.0,10.770496,10770.496 +5045,2025-06-10T14:58:30.510493-07:00,0.0,10.763747,10763.747 +5046,2025-06-10T14:58:41.278746-07:00,0.0,10.768253,10768.253 +5047,2025-06-10T14:58:52.041715-07:00,0.0,10.762969,10762.969 +5048,2025-06-10T14:59:02.801482-07:00,0.0,10.759767,10759.767 +5049,2025-06-10T14:59:13.564965-07:00,0.0,10.763483,10763.483 +5050,2025-06-10T14:59:24.330562-07:00,0.0,10.765597,10765.597 +5051,2025-06-10T14:59:35.096552-07:00,0.0,10.76599,10765.99 +5052,2025-06-10T14:59:45.850489-07:00,0.0,10.753937,10753.937 +5053,2025-06-10T14:59:56.623646-07:00,0.0,10.773157,10773.157 +5054,2025-06-10T15:00:07.379485-07:00,0.0,10.755839,10755.839 +5055,2025-06-10T15:00:18.151470-07:00,0.0,10.771985,10771.985 +5056,2025-06-10T15:00:28.914853-07:00,0.0,10.763383,10763.383 +5057,2025-06-10T15:00:39.673520-07:00,0.0,10.758667,10758.667 +5058,2025-06-10T15:00:50.437485-07:00,0.0,10.763965,10763.965 +5059,2025-06-10T15:01:01.204787-07:00,0.0,10.767302,10767.302 +5060,2025-06-10T15:01:11.974532-07:00,0.0,10.769745,10769.745 +5061,2025-06-10T15:01:22.730489-07:00,0.0,10.755957,10755.957 +5062,2025-06-10T15:01:33.502571-07:00,0.0,10.772082,10772.082 +5063,2025-06-10T15:01:44.262777-07:00,0.0,10.760206,10760.206 +5064,2025-06-10T15:01:55.027486-07:00,0.0,10.764709,10764.709 +5065,2025-06-10T15:02:05.791022-07:00,0.0,10.763536,10763.536 +5066,2025-06-10T15:02:16.566633-07:00,0.0,10.775611,10775.611 +5067,2025-06-10T15:02:27.333454-07:00,0.0,10.766821,10766.821 +5068,2025-06-10T15:02:38.098558-07:00,0.0,10.765104,10765.104 +5069,2025-06-10T15:02:48.862458-07:00,0.0,10.7639,10763.9 +5070,2025-06-10T15:02:59.629798-07:00,0.0,10.76734,10767.34 +5071,2025-06-10T15:03:10.394490-07:00,0.0,10.764692,10764.692 +5072,2025-06-10T15:03:21.157491-07:00,0.0,10.763001,10763.001 +5073,2025-06-10T15:03:31.922907-07:00,0.0,10.765416,10765.416 +5074,2025-06-10T15:03:42.685813-07:00,0.0,10.762906,10762.906 +5075,2025-06-10T15:03:53.456478-07:00,0.0,10.770665,10770.665 +5076,2025-06-10T15:04:04.223103-07:00,0.0,10.766625,10766.625 +5077,2025-06-10T15:04:14.981489-07:00,0.0,10.758386,10758.386 +5078,2025-06-10T15:04:25.744726-07:00,0.0,10.763237,10763.237 +5079,2025-06-10T15:04:36.498485-07:00,0.0,10.753759,10753.759 +5080,2025-06-10T15:04:47.260999-07:00,0.0,10.762514,10762.514 +5081,2025-06-10T15:04:58.034224-07:00,0.0,10.773225,10773.225 +5082,2025-06-10T15:05:08.793487-07:00,0.0,10.759263,10759.263 +5083,2025-06-10T15:05:19.552671-07:00,0.0,10.759184,10759.184 +5084,2025-06-10T15:05:30.325631-07:00,0.0,10.77296,10772.96 +5085,2025-06-10T15:05:41.088485-07:00,0.0,10.762854,10762.854 +5086,2025-06-10T15:05:51.855923-07:00,0.0,10.767438,10767.438 +5087,2025-06-10T15:06:02.618687-07:00,0.0,10.762764,10762.764 +5088,2025-06-10T15:06:13.383732-07:00,0.0,10.765045,10765.045 +5089,2025-06-10T15:06:24.144869-07:00,0.0,10.761137,10761.137 +5090,2025-06-10T15:06:34.904644-07:00,0.0,10.759775,10759.775 +5091,2025-06-10T15:06:45.677688-07:00,0.0,10.773044,10773.044 +5092,2025-06-10T15:06:56.439302-07:00,0.0,10.761614,10761.614 +5093,2025-06-10T15:07:07.199708-07:00,0.0,10.760406,10760.406 +5094,2025-06-10T15:07:17.973730-07:00,0.0,10.774022,10774.022 +5095,2025-06-10T15:07:28.738773-07:00,0.0,10.765043,10765.043 +5096,2025-06-10T15:07:39.502734-07:00,0.0,10.763961,10763.961 +5097,2025-06-10T15:07:50.264532-07:00,0.0,10.761798,10761.798 +5098,2025-06-10T15:08:01.021717-07:00,0.0,10.757185,10757.185 +5099,2025-06-10T15:08:11.795493-07:00,0.0,10.773776,10773.776 +5100,2025-06-10T15:08:22.551847-07:00,0.0,10.756354,10756.354 +5101,2025-06-10T15:08:33.324812-07:00,0.0,10.772965,10772.965 +5102,2025-06-10T15:08:44.090788-07:00,0.0,10.765976,10765.976 +5103,2025-06-10T15:08:54.862700-07:00,0.0,10.771912,10771.912 +5104,2025-06-10T15:09:05.628260-07:00,0.0,10.76556,10765.56 +5105,2025-06-10T15:09:16.392625-07:00,0.0,10.764365,10764.365 +5106,2025-06-10T15:09:27.159564-07:00,0.0,10.766939,10766.939 +5107,2025-06-10T15:09:37.927728-07:00,0.0,10.768164,10768.164 +5108,2025-06-10T15:09:48.688462-07:00,0.0,10.760734,10760.734 +5109,2025-06-10T15:09:59.455786-07:00,0.0,10.767324,10767.324 +5110,2025-06-10T15:10:10.222009-07:00,0.0,10.766223,10766.223 +5111,2025-06-10T15:10:20.989202-07:00,0.0,10.767193,10767.193 +5112,2025-06-10T15:10:31.747682-07:00,0.0,10.75848,10758.48 +5113,2025-06-10T15:10:42.517643-07:00,0.0,10.769961,10769.961 +5114,2025-06-10T15:10:53.283696-07:00,0.0,10.766053,10766.053 +5115,2025-06-10T15:11:04.042487-07:00,0.0,10.758791,10758.791 +5116,2025-06-10T15:11:14.807837-07:00,0.0,10.76535,10765.35 +5117,2025-06-10T15:11:25.567706-07:00,0.0,10.759869,10759.869 +5118,2025-06-10T15:11:36.335645-07:00,0.0,10.767939,10767.939 +5119,2025-06-10T15:11:47.094737-07:00,0.0,10.759092,10759.092 +5120,2025-06-10T15:11:57.861742-07:00,0.0,10.767005,10767.005 +5121,2025-06-10T15:12:08.632480-07:00,0.0,10.770738,10770.738 +5122,2025-06-10T15:12:19.389776-07:00,0.0,10.757296,10757.296 +5123,2025-06-10T15:12:30.151766-07:00,0.0,10.76199,10761.99 +5124,2025-06-10T15:12:40.923487-07:00,0.0,10.771721,10771.721 +5125,2025-06-10T15:12:51.685788-07:00,0.0,10.762301,10762.301 +5126,2025-06-10T15:13:02.450524-07:00,0.0,10.764736,10764.736 +5127,2025-06-10T15:13:13.213485-07:00,0.0,10.762961,10762.961 +5128,2025-06-10T15:13:23.988144-07:00,0.0,10.774659,10774.659 +5129,2025-06-10T15:13:34.745465-07:00,0.0,10.757321,10757.321 +5130,2025-06-10T15:13:45.517776-07:00,0.0,10.772311,10772.311 +5131,2025-06-10T15:13:56.275850-07:00,0.0,10.758074,10758.074 +5132,2025-06-10T15:14:07.041895-07:00,0.0,10.766045,10766.045 +5133,2025-06-10T15:14:17.804479-07:00,0.0,10.762584,10762.584 +5134,2025-06-10T15:14:28.572241-07:00,0.0,10.767762,10767.762 +5135,2025-06-10T15:14:39.344460-07:00,0.0,10.772219,10772.219 +5136,2025-06-10T15:14:50.100485-07:00,0.0,10.756025,10756.025 +5137,2025-06-10T15:15:00.875491-07:00,0.0,10.775006,10775.006 +5138,2025-06-10T15:15:11.633627-07:00,0.0,10.758136,10758.136 +5139,2025-06-10T15:15:22.407976-07:00,0.0,10.774349,10774.349 +5140,2025-06-10T15:15:33.165209-07:00,0.0,10.757233,10757.233 +5141,2025-06-10T15:15:43.937897-07:00,0.0,10.772688,10772.688 +5142,2025-06-10T15:15:54.701630-07:00,0.0,10.763733,10763.733 +5143,2025-06-10T15:16:05.467739-07:00,0.0,10.766109,10766.109 +5144,2025-06-10T15:16:16.236931-07:00,0.0,10.769192,10769.192 +5145,2025-06-10T15:16:27.000639-07:00,0.0,10.763708,10763.708 +5146,2025-06-10T15:16:37.771647-07:00,0.0,10.771008,10771.008 +5147,2025-06-10T15:16:48.535538-07:00,0.0,10.763891,10763.891 +5148,2025-06-10T15:16:59.304733-07:00,0.0,10.769195,10769.195 +5149,2025-06-10T15:17:10.076598-07:00,0.0,10.771865,10771.865 +5150,2025-06-10T15:17:20.838496-07:00,0.0,10.761898,10761.898 +5151,2025-06-10T15:17:31.607619-07:00,0.0,10.769123,10769.123 +5152,2025-06-10T15:17:42.374485-07:00,0.0,10.766866,10766.866 +5153,2025-06-10T15:17:53.140273-07:00,0.0,10.765788,10765.788 +5154,2025-06-10T15:18:03.900473-07:00,0.0,10.7602,10760.2 +5155,2025-06-10T15:18:14.673882-07:00,0.0,10.773409,10773.409 +5156,2025-06-10T15:18:25.440903-07:00,0.0,10.767021,10767.021 +5157,2025-06-10T15:18:36.209204-07:00,0.0,10.768301,10768.301 +5158,2025-06-10T15:18:46.970783-07:00,0.0,10.761579,10761.579 +5159,2025-06-10T15:18:57.732530-07:00,0.0,10.761747,10761.747 +5160,2025-06-10T15:19:08.505903-07:00,0.0,10.773373,10773.373 +5161,2025-06-10T15:19:19.264650-07:00,0.0,10.758747,10758.747 +5162,2025-06-10T15:19:30.038832-07:00,0.0,10.774182,10774.182 +5163,2025-06-10T15:19:40.804485-07:00,0.0,10.765653,10765.653 +5164,2025-06-10T15:19:51.568040-07:00,0.0,10.763555,10763.555 +5165,2025-06-10T15:20:02.337460-07:00,0.0,10.76942,10769.42 +5166,2025-06-10T15:20:13.097485-07:00,0.0,10.760025,10760.025 +5167,2025-06-10T15:20:23.864987-07:00,0.0,10.767502,10767.502 +5168,2025-06-10T15:20:26.271050-07:00,2704.0,2.406063,2406.063 +5169,2025-06-10T15:20:34.626478-07:00,2624.0,8.355428,8355.428 +5170,2025-06-10T15:20:44.314004-07:00,1959.0,9.687526,9687.526 +5171,2025-06-10T15:20:45.386486-07:00,1959.0,1.072482,1072.482 +5172,2025-06-10T15:20:46.323943-07:00,0.0,0.937457,937.457 +5173,2025-06-10T15:20:56.155787-07:00,305.0,9.831844,9831.844 +5174,2025-06-10T15:21:06.917489-07:00,317.0,10.761702,10761.702 +5175,2025-06-10T15:21:17.689481-07:00,287.0,10.771992,10771.992 +5176,2025-06-10T15:21:28.450802-07:00,224.0,10.761321,10761.321 +5177,2025-06-10T15:21:39.217481-07:00,246.0,10.766679,10766.679 +5178,2025-06-10T15:21:49.979727-07:00,336.0,10.762246,10762.246 +5179,2025-06-10T15:21:50.489761-07:00,2726.0,0.510034,510.034 +5180,2025-06-10T15:22:00.739846-07:00,2635.0,10.250085,10250.085 +5181,2025-06-10T15:22:11.511745-07:00,2697.0,10.771899,10771.899 +5182,2025-06-10T15:22:22.270466-07:00,2714.0,10.758721,10758.721 +5183,2025-06-10T15:22:33.043500-07:00,2617.0,10.773034,10773.034 +5184,2025-06-10T15:22:43.803493-07:00,2660.0,10.759993,10759.993 +5185,2025-06-10T15:22:54.565742-07:00,2688.0,10.762249,10762.249 +5186,2025-06-10T15:23:05.327740-07:00,2726.0,10.761998,10761.998 +5187,2025-06-10T15:23:16.099488-07:00,2653.0,10.771748,10771.748 +5188,2025-06-10T15:23:26.863481-07:00,2719.0,10.763993,10763.993 +5189,2025-06-10T15:23:37.623357-07:00,2641.0,10.759876,10759.876 +5190,2025-06-10T15:23:44.963032-07:00,2730.0,7.339675,7339.675 +5191,2025-06-10T15:23:48.384816-07:00,2696.0,3.421784,3421.784 +5192,2025-06-10T15:23:59.157485-07:00,2724.0,10.772669,10772.669 +5193,2025-06-10T15:24:09.916514-07:00,2682.0,10.759029,10759.029 +5194,2025-06-10T15:24:20.685487-07:00,2693.0,10.768973,10768.973 +5195,2025-06-10T15:24:31.444483-07:00,2647.0,10.758996,10758.996 +5196,2025-06-10T15:24:42.211485-07:00,2517.0,10.767002,10767.002 +5197,2025-06-10T15:24:44.945024-07:00,943.0,2.733539,2733.539 +5198,2025-06-10T15:24:46.947756-07:00,311.0,2.002732,2002.732 +5199,2025-06-10T15:24:52.974893-07:00,301.0,6.027137,6027.137 +5200,2025-06-10T15:25:03.745469-07:00,299.0,10.770576,10770.576 +5201,2025-06-10T15:25:14.510579-07:00,194.0,10.76511,10765.11 +5202,2025-06-10T15:25:25.271485-07:00,305.0,10.760906,10760.906 +5203,2025-06-10T15:25:36.032527-07:00,304.0,10.761042,10761.042 +5204,2025-06-10T15:25:46.797702-07:00,270.0,10.765175,10765.175 +5205,2025-06-10T15:25:57.574493-07:00,305.0,10.776791,10776.791 +5206,2025-06-10T15:26:08.339579-07:00,269.0,10.765086,10765.086 +5207,2025-06-10T15:26:19.109920-07:00,304.0,10.770341,10770.341 +5208,2025-06-10T15:26:21.206915-07:00,0.0,2.096995,2096.995 +5209,2025-06-10T15:26:29.876484-07:00,0.0,8.669569,8669.569 +5210,2025-06-10T15:26:40.642563-07:00,0.0,10.766079,10766.079 +5211,2025-06-10T15:26:51.405829-07:00,0.0,10.763266,10763.266 +5212,2025-06-10T15:27:02.169671-07:00,0.0,10.763842,10763.842 +5213,2025-06-10T15:27:12.935542-07:00,0.0,10.765871,10765.871 +5214,2025-06-10T15:27:23.704489-07:00,0.0,10.768947,10768.947 +5215,2025-06-10T15:27:34.471012-07:00,0.0,10.766523,10766.523 +5216,2025-06-10T15:27:45.229501-07:00,0.0,10.758489,10758.489 +5217,2025-06-10T15:27:55.996151-07:00,0.0,10.76665,10766.65 +5218,2025-06-10T15:28:06.759489-07:00,0.0,10.763338,10763.338 +5219,2025-06-10T15:28:17.524626-07:00,0.0,10.765137,10765.137 +5220,2025-06-10T15:28:28.289552-07:00,0.0,10.764926,10764.926 +5221,2025-06-10T15:28:39.047748-07:00,0.0,10.758196,10758.196 +5222,2025-06-10T15:28:49.820485-07:00,0.0,10.772737,10772.737 +5223,2025-06-10T15:29:00.584999-07:00,0.0,10.764514,10764.514 +5224,2025-06-10T15:29:11.347493-07:00,0.0,10.762494,10762.494 +5225,2025-06-10T15:29:22.120782-07:00,0.0,10.773289,10773.289 +5226,2025-06-10T15:29:32.881661-07:00,0.0,10.760879,10760.879 +5227,2025-06-10T15:29:43.647488-07:00,0.0,10.765827,10765.827 +5228,2025-06-10T15:29:54.402720-07:00,0.0,10.755232,10755.232 +5229,2025-06-10T15:30:05.174361-07:00,0.0,10.771641,10771.641 +5230,2025-06-10T15:30:15.943483-07:00,0.0,10.769122,10769.122 +5231,2025-06-10T15:30:26.709563-07:00,0.0,10.76608,10766.08 +5232,2025-06-10T15:30:37.462766-07:00,0.0,10.753203,10753.203 +5233,2025-06-10T15:30:48.229519-07:00,0.0,10.766753,10766.753 +5234,2025-06-10T15:30:58.990630-07:00,0.0,10.761111,10761.111 +5235,2025-06-10T15:31:09.754796-07:00,0.0,10.764166,10764.166 +5236,2025-06-10T15:31:20.517721-07:00,0.0,10.762925,10762.925 +5237,2025-06-10T15:31:31.284856-07:00,0.0,10.767135,10767.135 +5238,2025-06-10T15:31:42.046587-07:00,0.0,10.761731,10761.731 +5239,2025-06-10T15:31:52.810737-07:00,0.0,10.76415,10764.15 +5240,2025-06-10T15:32:03.578466-07:00,0.0,10.767729,10767.729 +5241,2025-06-10T15:32:14.339326-07:00,0.0,10.76086,10760.86 +5242,2025-06-10T15:32:25.100846-07:00,0.0,10.76152,10761.52 +5243,2025-06-10T15:32:35.865483-07:00,0.0,10.764637,10764.637 +5244,2025-06-10T15:32:46.626516-07:00,0.0,10.761033,10761.033 +5245,2025-06-10T15:32:57.394492-07:00,0.0,10.767976,10767.976 +5246,2025-06-10T15:33:08.158668-07:00,0.0,10.764176,10764.176 +5247,2025-06-10T15:33:18.913464-07:00,0.0,10.754796,10754.796 +5248,2025-06-10T15:33:29.681008-07:00,0.0,10.767544,10767.544 +5249,2025-06-10T15:33:40.439770-07:00,0.0,10.758762,10758.762 +5250,2025-06-10T15:33:51.210889-07:00,0.0,10.771119,10771.119 +5251,2025-06-10T15:34:01.977805-07:00,0.0,10.766916,10766.916 +5252,2025-06-10T15:34:12.741486-07:00,0.0,10.763681,10763.681 +5253,2025-06-10T15:34:23.498564-07:00,0.0,10.757078,10757.078 +5254,2025-06-10T15:34:34.259800-07:00,0.0,10.761236,10761.236 +5255,2025-06-10T15:34:45.036495-07:00,0.0,10.776695,10776.695 +5256,2025-06-10T15:34:55.800488-07:00,0.0,10.763993,10763.993 +5257,2025-06-10T15:35:06.556155-07:00,0.0,10.755667,10755.667 +5258,2025-06-10T15:35:17.324538-07:00,0.0,10.768383,10768.383 +5259,2025-06-10T15:35:28.082901-07:00,0.0,10.758363,10758.363 +5260,2025-06-10T15:35:38.845477-07:00,0.0,10.762576,10762.576 +5261,2025-06-10T15:35:49.614923-07:00,0.0,10.769446,10769.446 +5262,2025-06-10T15:36:00.374490-07:00,0.0,10.759567,10759.567 +5263,2025-06-10T15:36:11.145769-07:00,0.0,10.771279,10771.279 +5264,2025-06-10T15:36:21.901779-07:00,0.0,10.75601,10756.01 +5265,2025-06-10T15:36:32.673479-07:00,0.0,10.7717,10771.7 +5266,2025-06-10T15:36:43.431489-07:00,0.0,10.75801,10758.01 +5267,2025-06-10T15:36:54.199341-07:00,0.0,10.767852,10767.852 +5268,2025-06-10T15:37:04.963200-07:00,0.0,10.763859,10763.859 +5269,2025-06-10T15:37:15.727485-07:00,0.0,10.764285,10764.285 +5270,2025-06-10T15:37:26.493949-07:00,0.0,10.766464,10766.464 +5271,2025-06-10T15:37:37.246779-07:00,0.0,10.75283,10752.83 +5272,2025-06-10T15:37:48.020687-07:00,0.0,10.773908,10773.908 +5273,2025-06-10T15:37:58.781959-07:00,0.0,10.761272,10761.272 +5274,2025-06-10T15:38:09.538578-07:00,0.0,10.756619,10756.619 +5275,2025-06-10T15:38:20.300491-07:00,0.0,10.761913,10761.913 +5276,2025-06-10T15:38:31.064478-07:00,0.0,10.763987,10763.987 +5277,2025-06-10T15:38:41.828754-07:00,0.0,10.764276,10764.276 +5278,2025-06-10T15:38:52.584465-07:00,0.0,10.755711,10755.711 +5279,2025-06-10T15:39:03.349711-07:00,0.0,10.765246,10765.246 +5280,2025-06-10T15:39:14.119993-07:00,0.0,10.770282,10770.282 +5281,2025-06-10T15:39:24.878835-07:00,0.0,10.758842,10758.842 +5282,2025-06-10T15:39:35.646484-07:00,0.0,10.767649,10767.649 +5283,2025-06-10T15:39:46.408652-07:00,0.0,10.762168,10762.168 +5284,2025-06-10T15:39:57.167768-07:00,0.0,10.759116,10759.116 +5285,2025-06-10T15:40:07.937742-07:00,0.0,10.769974,10769.974 +5286,2025-06-10T15:40:18.700464-07:00,0.0,10.762722,10762.722 +5287,2025-06-10T15:40:29.468589-07:00,0.0,10.768125,10768.125 +5288,2025-06-10T15:40:40.223711-07:00,0.0,10.755122,10755.122 +5289,2025-06-10T15:40:50.989725-07:00,0.0,10.766014,10766.014 +5290,2025-06-10T15:41:01.754785-07:00,0.0,10.76506,10765.06 +5291,2025-06-10T15:41:12.516808-07:00,0.0,10.762023,10762.023 +5292,2025-06-10T15:41:23.281489-07:00,0.0,10.764681,10764.681 +5293,2025-06-10T15:41:34.047154-07:00,0.0,10.765665,10765.665 +5294,2025-06-10T15:41:44.802940-07:00,0.0,10.755786,10755.786 +5295,2025-06-10T15:41:55.574992-07:00,0.0,10.772052,10772.052 +5296,2025-06-10T15:42:06.327489-07:00,0.0,10.752497,10752.497 +5297,2025-06-10T15:42:17.094767-07:00,0.0,10.767278,10767.278 +5298,2025-06-10T15:42:27.857760-07:00,0.0,10.762993,10762.993 +5299,2025-06-10T15:42:38.627480-07:00,0.0,10.76972,10769.72 +5300,2025-06-10T15:42:49.382155-07:00,0.0,10.754675,10754.675 +5301,2025-06-10T15:43:00.147547-07:00,0.0,10.765392,10765.392 +5302,2025-06-10T15:43:10.913540-07:00,0.0,10.765993,10765.993 +5303,2025-06-10T15:43:21.679787-07:00,0.0,10.766247,10766.247 +5304,2025-06-10T15:43:32.436768-07:00,0.0,10.756981,10756.981 +5305,2025-06-10T15:43:43.199485-07:00,0.0,10.762717,10762.717 +5306,2025-06-10T15:43:53.962489-07:00,0.0,10.763004,10763.004 +5307,2025-06-10T15:44:04.734839-07:00,0.0,10.77235,10772.35 +5308,2025-06-10T15:44:15.494286-07:00,0.0,10.759447,10759.447 +5309,2025-06-10T15:44:26.260798-07:00,0.0,10.766512,10766.512 +5310,2025-06-10T15:44:37.026481-07:00,0.0,10.765683,10765.683 +5311,2025-06-10T15:44:47.787489-07:00,0.0,10.761008,10761.008 +5312,2025-06-10T15:44:58.549489-07:00,0.0,10.762,10762.0 +5313,2025-06-10T15:45:09.305543-07:00,0.0,10.756054,10756.054 +5314,2025-06-10T15:45:20.074536-07:00,0.0,10.768993,10768.993 +5315,2025-06-10T15:45:30.837542-07:00,0.0,10.763006,10763.006 +5316,2025-06-10T15:45:41.598055-07:00,0.0,10.760513,10760.513 +5317,2025-06-10T15:45:52.354833-07:00,0.0,10.756778,10756.778 +5318,2025-06-10T15:46:03.124464-07:00,0.0,10.769631,10769.631 +5319,2025-06-10T15:46:13.880668-07:00,0.0,10.756204,10756.204 +5320,2025-06-10T15:46:24.646232-07:00,0.0,10.765564,10765.564 +5321,2025-06-10T15:46:35.407858-07:00,0.0,10.761626,10761.626 +5322,2025-06-10T15:46:46.169481-07:00,0.0,10.761623,10761.623 +5323,2025-06-10T15:46:56.933513-07:00,0.0,10.764032,10764.032 +5324,2025-06-10T15:47:07.699689-07:00,0.0,10.766176,10766.176 +5325,2025-06-10T15:47:18.458493-07:00,0.0,10.758804,10758.804 +5326,2025-06-10T15:47:29.218671-07:00,0.0,10.760178,10760.178 +5327,2025-06-10T15:47:39.983511-07:00,0.0,10.76484,10764.84 +5328,2025-06-10T15:47:50.750487-07:00,0.0,10.766976,10766.976 +5329,2025-06-10T15:48:01.511484-07:00,0.0,10.760997,10760.997 +5330,2025-06-10T15:48:12.272531-07:00,0.0,10.761047,10761.047 +5331,2025-06-10T15:48:23.036532-07:00,0.0,10.764001,10764.001 +5332,2025-06-10T15:48:33.798501-07:00,0.0,10.761969,10761.969 +5333,2025-06-10T15:48:44.559489-07:00,0.0,10.760988,10760.988 +5334,2025-06-10T15:48:55.325693-07:00,0.0,10.766204,10766.204 +5335,2025-06-10T15:49:06.091742-07:00,0.0,10.766049,10766.049 +5336,2025-06-10T15:49:16.848534-07:00,0.0,10.756792,10756.792 +5337,2025-06-10T15:49:27.615084-07:00,0.0,10.76655,10766.55 +5338,2025-06-10T15:49:38.382487-07:00,0.0,10.767403,10767.403 +5339,2025-06-10T15:49:49.147485-07:00,0.0,10.764998,10764.998 +5340,2025-06-10T15:49:59.910768-07:00,0.0,10.763283,10763.283 +5341,2025-06-10T15:50:10.676745-07:00,0.0,10.765977,10765.977 +5342,2025-06-10T15:50:21.438489-07:00,0.0,10.761744,10761.744 +5343,2025-06-10T15:50:32.208945-07:00,0.0,10.770456,10770.456 +5344,2025-06-10T15:50:42.963489-07:00,0.0,10.754544,10754.544 +5345,2025-06-10T15:50:53.734485-07:00,0.0,10.770996,10770.996 +5346,2025-06-10T15:51:04.502847-07:00,0.0,10.768362,10768.362 +5347,2025-06-10T15:51:15.268491-07:00,0.0,10.765644,10765.644 +5348,2025-06-10T15:51:26.033611-07:00,0.0,10.76512,10765.12 +5349,2025-06-10T15:51:36.799817-07:00,0.0,10.766206,10766.206 +5350,2025-06-10T15:51:47.569485-07:00,0.0,10.769668,10769.668 +5351,2025-06-10T15:51:58.336916-07:00,0.0,10.767431,10767.431 +5352,2025-06-10T15:52:09.041554-07:00,0.0,10.704638,10704.638 +5353,2025-06-10T15:52:19.808181-07:00,0.0,10.766627,10766.627 +5354,2025-06-10T15:52:30.575047-07:00,0.0,10.766866,10766.866 +5355,2025-06-10T15:52:41.346333-07:00,0.0,10.771286,10771.286 +5356,2025-06-10T15:52:52.111992-07:00,0.0,10.765659,10765.659 +5357,2025-06-10T15:53:02.875741-07:00,0.0,10.763749,10763.749 +5358,2025-06-10T15:53:13.646052-07:00,0.0,10.770311,10770.311 +5359,2025-06-10T15:53:24.412015-07:00,0.0,10.765963,10765.963 +5360,2025-06-10T15:53:35.186603-07:00,0.0,10.774588,10774.588 +5361,2025-06-10T15:53:45.945342-07:00,0.0,10.758739,10758.739 +5362,2025-06-10T15:53:56.716586-07:00,0.0,10.771244,10771.244 +5363,2025-06-10T15:54:07.474457-07:00,0.0,10.757871,10757.871 +5364,2025-06-10T15:54:18.244009-07:00,0.0,10.769552,10769.552 +5365,2025-06-10T15:54:29.011659-07:00,0.0,10.76765,10767.65 +5366,2025-06-10T15:54:39.771496-07:00,0.0,10.759837,10759.837 +5367,2025-06-10T15:54:50.541070-07:00,0.0,10.769574,10769.574 +5368,2025-06-10T15:55:01.306868-07:00,0.0,10.765798,10765.798 +5369,2025-06-10T15:55:12.076021-07:00,0.0,10.769153,10769.153 +5370,2025-06-10T15:55:22.842037-07:00,0.0,10.766016,10766.016 +5371,2025-06-10T15:55:33.612281-07:00,0.0,10.770244,10770.244 +5372,2025-06-10T15:55:44.380433-07:00,0.0,10.768152,10768.152 +5373,2025-06-10T15:55:55.159532-07:00,0.0,10.779099,10779.099 +5374,2025-06-10T15:56:05.932223-07:00,0.0,10.772691,10772.691 +5375,2025-06-10T15:56:16.701266-07:00,0.0,10.769043,10769.043 +5376,2025-06-10T15:56:27.466964-07:00,0.0,10.765698,10765.698 +5377,2025-06-10T15:56:38.231002-07:00,0.0,10.764038,10764.038 +5378,2025-06-10T15:56:48.996066-07:00,0.0,10.765064,10765.064 +5379,2025-06-10T15:56:59.761021-07:00,0.0,10.764955,10764.955 +5380,2025-06-10T15:57:10.524615-07:00,0.0,10.763594,10763.594 +5381,2025-06-10T15:57:21.291307-07:00,0.0,10.766692,10766.692 +5382,2025-06-10T15:57:32.062015-07:00,0.0,10.770708,10770.708 +5383,2025-06-10T15:57:42.831784-07:00,0.0,10.769769,10769.769 +5384,2025-06-10T15:57:53.590427-07:00,0.0,10.758643,10758.643 +5385,2025-06-10T15:58:04.361267-07:00,0.0,10.77084,10770.84 +5386,2025-06-10T15:58:15.125684-07:00,0.0,10.764417,10764.417 +5387,2025-06-10T15:58:25.879540-07:00,0.0,10.753856,10753.856 +5388,2025-06-10T15:58:36.645018-07:00,0.0,10.765478,10765.478 +5389,2025-06-10T15:58:47.409238-07:00,0.0,10.76422,10764.22 +5390,2025-06-10T15:58:58.174792-07:00,0.0,10.765554,10765.554 +5391,2025-06-10T15:59:08.929419-07:00,0.0,10.754627,10754.627 +5392,2025-06-10T15:59:19.696257-07:00,0.0,10.766838,10766.838 +5393,2025-06-10T15:59:30.455475-07:00,0.0,10.759218,10759.218 +5394,2025-06-10T15:59:41.228164-07:00,0.0,10.772689,10772.689 +5395,2025-06-10T15:59:51.987014-07:00,0.0,10.75885,10758.85 +5396,2025-06-10T16:00:02.751011-07:00,0.0,10.763997,10763.997 +5397,2025-06-10T16:00:13.513440-07:00,0.0,10.762429,10762.429 +5398,2025-06-10T16:00:24.278017-07:00,0.0,10.764577,10764.577 +5399,2025-06-10T16:00:35.046468-07:00,0.0,10.768451,10768.451 +5400,2025-06-10T16:00:45.815017-07:00,0.0,10.768549,10768.549 +5401,2025-06-10T16:00:56.580257-07:00,0.0,10.76524,10765.24 +5402,2025-06-10T16:01:07.355485-07:00,0.0,10.775228,10775.228 +5403,2025-06-10T16:01:18.119159-07:00,0.0,10.763674,10763.674 +5404,2025-06-10T16:01:28.884691-07:00,0.0,10.765532,10765.532 +5405,2025-06-10T16:01:39.649310-07:00,0.0,10.764619,10764.619 +5406,2025-06-10T16:01:50.417017-07:00,0.0,10.767707,10767.707 +5407,2025-06-10T16:02:01.180080-07:00,0.0,10.763063,10763.063 +5408,2025-06-10T16:02:11.942821-07:00,0.0,10.762741,10762.741 +5409,2025-06-10T16:02:22.706001-07:00,0.0,10.76318,10763.18 +5410,2025-06-10T16:02:33.471995-07:00,0.0,10.765994,10765.994 +5411,2025-06-10T16:02:44.237499-07:00,0.0,10.765504,10765.504 +5412,2025-06-10T16:02:55.004156-07:00,0.0,10.766657,10766.657 +5413,2025-06-10T16:03:05.773007-07:00,0.0,10.768851,10768.851 +5414,2025-06-10T16:03:16.535458-07:00,0.0,10.762451,10762.451 +5415,2025-06-10T16:03:27.297310-07:00,0.0,10.761852,10761.852 +5416,2025-06-10T16:03:38.059100-07:00,0.0,10.76179,10761.79 +5417,2025-06-10T16:03:48.826365-07:00,0.0,10.767265,10767.265 +5418,2025-06-10T16:03:59.591390-07:00,0.0,10.765025,10765.025 +5419,2025-06-10T16:04:10.352015-07:00,0.0,10.760625,10760.625 +5420,2025-06-10T16:04:21.122355-07:00,0.0,10.77034,10770.34 +5421,2025-06-10T16:04:31.880139-07:00,0.0,10.757784,10757.784 +5422,2025-06-10T16:04:42.656044-07:00,0.0,10.775905,10775.905 +5423,2025-06-10T16:04:53.412315-07:00,0.0,10.756271,10756.271 +5424,2025-06-10T16:05:04.180082-07:00,0.0,10.767767,10767.767 +5425,2025-06-10T16:05:14.942639-07:00,0.0,10.762557,10762.557 +5426,2025-06-10T16:05:25.716458-07:00,0.0,10.773819,10773.819 +5427,2025-06-10T16:05:36.472017-07:00,0.0,10.755559,10755.559 +5428,2025-06-10T16:05:47.241017-07:00,0.0,10.769,10769.0 +5429,2025-06-10T16:05:58.004270-07:00,0.0,10.763253,10763.253 +5430,2025-06-10T16:06:08.773253-07:00,0.0,10.768983,10768.983 +5431,2025-06-10T16:06:19.530161-07:00,0.0,10.756908,10756.908 +5432,2025-06-10T16:06:30.292963-07:00,0.0,10.762802,10762.802 +5433,2025-06-10T16:06:41.069156-07:00,0.0,10.776193,10776.193 +5434,2025-06-10T16:06:51.826298-07:00,0.0,10.757142,10757.142 +5435,2025-06-10T16:07:02.600021-07:00,0.0,10.773723,10773.723 +5436,2025-06-10T16:07:13.359425-07:00,0.0,10.759404,10759.404 +5437,2025-06-10T16:07:24.135661-07:00,0.0,10.776236,10776.236 +5438,2025-06-10T16:07:34.893464-07:00,0.0,10.757803,10757.803 +5439,2025-06-10T16:07:45.661323-07:00,0.0,10.767859,10767.859 +5440,2025-06-10T16:07:56.436272-07:00,0.0,10.774949,10774.949 +5441,2025-06-10T16:08:07.196015-07:00,0.0,10.759743,10759.743 +5442,2025-06-10T16:08:17.959142-07:00,0.0,10.763127,10763.127 +5443,2025-06-10T16:08:28.731039-07:00,0.0,10.771897,10771.897 +5444,2025-06-10T16:08:39.496155-07:00,0.0,10.765116,10765.116 +5445,2025-06-10T16:08:50.254017-07:00,0.0,10.757862,10757.862 +5446,2025-06-10T16:09:01.028228-07:00,0.0,10.774211,10774.211 +5447,2025-06-10T16:09:11.791256-07:00,0.0,10.763028,10763.028 +5448,2025-06-10T16:09:22.552992-07:00,0.0,10.761736,10761.736 +5449,2025-06-10T16:09:33.322762-07:00,0.0,10.76977,10769.77 +5450,2025-06-10T16:09:44.085224-07:00,0.0,10.762462,10762.462 +5451,2025-06-10T16:09:54.845272-07:00,0.0,10.760048,10760.048 +5452,2025-06-10T16:10:05.609793-07:00,0.0,10.764521,10764.521 +5453,2025-06-10T16:10:16.375277-07:00,0.0,10.765484,10765.484 +5454,2025-06-10T16:10:27.139430-07:00,0.0,10.764153,10764.153 +5455,2025-06-10T16:10:37.909943-07:00,0.0,10.770513,10770.513 +5456,2025-06-10T16:10:48.681997-07:00,0.0,10.772054,10772.054 +5457,2025-06-10T16:10:59.443156-07:00,0.0,10.761159,10761.159 +5458,2025-06-10T16:11:10.212038-07:00,0.0,10.768882,10768.882 +5459,2025-06-10T16:11:20.989007-07:00,0.0,10.776969,10776.969 +5460,2025-06-10T16:11:31.755458-07:00,0.0,10.766451,10766.451 +5461,2025-06-10T16:11:42.511299-07:00,0.0,10.755841,10755.841 +5462,2025-06-10T16:11:53.284009-07:00,0.0,10.77271,10772.71 +5463,2025-06-10T16:12:04.041346-07:00,0.0,10.757337,10757.337 +5464,2025-06-10T16:12:14.807387-07:00,0.0,10.766041,10766.041 +5465,2025-06-10T16:12:25.572184-07:00,0.0,10.764797,10764.797 +5466,2025-06-10T16:12:36.340975-07:00,0.0,10.768791,10768.791 +5467,2025-06-10T16:12:47.107010-07:00,0.0,10.766035,10766.035 +5468,2025-06-10T16:12:57.873013-07:00,0.0,10.766003,10766.003 +5469,2025-06-10T16:13:08.632607-07:00,0.0,10.759594,10759.594 +5470,2025-06-10T16:13:19.396252-07:00,0.0,10.763645,10763.645 +5471,2025-06-10T16:13:30.166786-07:00,0.0,10.770534,10770.534 +5472,2025-06-10T16:13:40.929450-07:00,0.0,10.762664,10762.664 +5473,2025-06-10T16:13:41.957364-07:00,0.0,1.027914,1027.914 +5474,2025-06-10T16:13:51.694387-07:00,0.0,9.737023,9737.023 +5475,2025-06-10T16:14:02.461187-07:00,0.0,10.7668,10766.8 +5476,2025-06-10T16:14:13.224328-07:00,0.0,10.763141,10763.141 +5477,2025-06-10T16:14:23.993017-07:00,0.0,10.768689,10768.689 +5478,2025-06-10T16:14:34.757013-07:00,0.0,10.763996,10763.996 +5479,2025-06-10T16:14:45.532263-07:00,0.0,10.77525,10775.25 +5480,2025-06-10T16:14:56.295021-07:00,0.0,10.762758,10762.758 +5481,2025-06-10T16:15:07.053542-07:00,0.0,10.758521,10758.521 +5482,2025-06-10T16:15:17.824064-07:00,0.0,10.770522,10770.522 +5483,2025-06-10T16:15:28.588008-07:00,0.0,10.763944,10763.944 +5484,2025-06-10T16:15:39.359294-07:00,0.0,10.771286,10771.286 +5485,2025-06-10T16:15:50.117412-07:00,0.0,10.758118,10758.118 +5486,2025-06-10T16:16:00.885015-07:00,0.0,10.767603,10767.603 +5487,2025-06-10T16:16:11.650908-07:00,0.0,10.765893,10765.893 +5488,2025-06-10T16:16:22.421994-07:00,0.0,10.771086,10771.086 +5489,2025-06-10T16:16:33.182082-07:00,0.0,10.760088,10760.088 +5490,2025-06-10T16:16:43.952498-07:00,0.0,10.770416,10770.416 +5491,2025-06-10T16:16:54.711052-07:00,0.0,10.758554,10758.554 +5492,2025-06-10T16:17:05.481267-07:00,0.0,10.770215,10770.215 +5493,2025-06-10T16:17:16.244384-07:00,0.0,10.763117,10763.117 +5494,2025-06-10T16:17:26.999024-07:00,0.0,10.75464,10754.64 +5495,2025-06-10T16:17:37.771013-07:00,0.0,10.771989,10771.989 +5496,2025-06-10T16:17:48.535510-07:00,0.0,10.764497,10764.497 +5497,2025-06-10T16:17:59.295361-07:00,0.0,10.759851,10759.851 +5498,2025-06-10T16:18:10.055399-07:00,0.0,10.760038,10760.038 +5499,2025-06-10T16:18:20.825112-07:00,0.0,10.769713,10769.713 +5500,2025-06-10T16:18:31.591263-07:00,0.0,10.766151,10766.151 +5501,2025-06-10T16:18:42.351017-07:00,0.0,10.759754,10759.754 +5502,2025-06-10T16:18:53.112219-07:00,0.0,10.761202,10761.202 +5503,2025-06-10T16:19:03.870677-07:00,0.0,10.758458,10758.458 +5504,2025-06-10T16:19:14.633471-07:00,0.0,10.762794,10762.794 +5505,2025-06-10T16:19:25.400090-07:00,0.0,10.766619,10766.619 +5506,2025-06-10T16:19:36.159419-07:00,0.0,10.759329,10759.329 +5507,2025-06-10T16:19:46.930015-07:00,0.0,10.770596,10770.596 +5508,2025-06-10T16:19:57.696938-07:00,0.0,10.766923,10766.923 +5509,2025-06-10T16:20:08.454010-07:00,0.0,10.757072,10757.072 +5510,2025-06-10T16:20:19.217708-07:00,0.0,10.763698,10763.698 +5511,2025-06-10T16:20:29.991999-07:00,0.0,10.774291,10774.291 +5512,2025-06-10T16:20:40.747301-07:00,0.0,10.755302,10755.302 +5513,2025-06-10T16:20:51.519015-07:00,0.0,10.771714,10771.714 +5514,2025-06-10T16:21:02.282018-07:00,0.0,10.763003,10763.003 +5515,2025-06-10T16:21:13.049525-07:00,0.0,10.767507,10767.507 +5516,2025-06-10T16:21:23.809334-07:00,0.0,10.759809,10759.809 +5517,2025-06-10T16:21:34.579093-07:00,0.0,10.769759,10769.759 +5518,2025-06-10T16:21:45.344350-07:00,0.0,10.765257,10765.257 +5519,2025-06-10T16:21:56.108811-07:00,0.0,10.764461,10764.461 +5520,2025-06-10T16:22:06.863002-07:00,0.0,10.754191,10754.191 +5521,2025-06-10T16:22:17.628017-07:00,0.0,10.765015,10765.015 +5522,2025-06-10T16:22:28.392924-07:00,0.0,10.764907,10764.907 +5523,2025-06-10T16:22:39.157022-07:00,0.0,10.764098,10764.098 +5524,2025-06-10T16:22:49.926042-07:00,0.0,10.76902,10769.02 +5525,2025-06-10T16:23:00.688309-07:00,0.0,10.762267,10762.267 +5526,2025-06-10T16:23:11.462014-07:00,0.0,10.773705,10773.705 +5527,2025-06-10T16:23:22.223268-07:00,0.0,10.761254,10761.254 +5528,2025-06-10T16:23:32.991000-07:00,0.0,10.767732,10767.732 +5529,2025-06-10T16:23:43.757271-07:00,0.0,10.766271,10766.271 +5530,2025-06-10T16:23:54.522308-07:00,0.0,10.765037,10765.037 +5531,2025-06-10T16:24:05.281402-07:00,0.0,10.759094,10759.094 +5532,2025-06-10T16:24:16.050019-07:00,0.0,10.768617,10768.617 +5533,2025-06-10T16:24:26.818507-07:00,0.0,10.768488,10768.488 +5534,2025-06-10T16:24:37.579388-07:00,0.0,10.760881,10760.881 +5535,2025-06-10T16:24:48.343109-07:00,0.0,10.763721,10763.721 +5536,2025-06-10T16:24:59.110369-07:00,0.0,10.76726,10767.26 +5537,2025-06-10T16:25:09.874219-07:00,0.0,10.76385,10763.85 +5538,2025-06-10T16:25:20.637015-07:00,0.0,10.762796,10762.796 +5539,2025-06-10T16:25:31.405057-07:00,0.0,10.768042,10768.042 +5540,2025-06-10T16:25:42.166612-07:00,0.0,10.761555,10761.555 +5541,2025-06-10T16:25:52.936018-07:00,0.0,10.769406,10769.406 +5542,2025-06-10T16:26:03.705336-07:00,0.0,10.769318,10769.318 +5543,2025-06-10T16:26:14.469635-07:00,0.0,10.764299,10764.299 +5544,2025-06-10T16:26:25.234013-07:00,0.0,10.764378,10764.378 +5545,2025-06-10T16:26:36.011588-07:00,0.0,10.777575,10777.575 +5546,2025-06-10T16:26:46.774686-07:00,0.0,10.763098,10763.098 +5547,2025-06-10T16:26:57.536062-07:00,0.0,10.761376,10761.376 +5548,2025-06-10T16:27:08.307208-07:00,0.0,10.771146,10771.146 +5549,2025-06-10T16:27:19.071079-07:00,0.0,10.763871,10763.871 +5550,2025-06-10T16:27:29.837144-07:00,0.0,10.766065,10766.065 +5551,2025-06-10T16:27:40.600367-07:00,0.0,10.763223,10763.223 +5552,2025-06-10T16:27:51.367494-07:00,0.0,10.767127,10767.127 +5553,2025-06-10T16:28:02.132346-07:00,0.0,10.764852,10764.852 +5554,2025-06-10T16:28:12.902269-07:00,0.0,10.769923,10769.923 +5555,2025-06-10T16:28:23.661017-07:00,0.0,10.758748,10758.748 +5556,2025-06-10T16:28:34.426778-07:00,0.0,10.765761,10765.761 +5557,2025-06-10T16:28:45.186421-07:00,0.0,10.759643,10759.643 +5558,2025-06-10T16:28:55.960170-07:00,0.0,10.773749,10773.749 +5559,2025-06-10T16:29:06.726554-07:00,0.0,10.766384,10766.384 +5560,2025-06-10T16:29:17.486101-07:00,0.0,10.759547,10759.547 +5561,2025-06-10T16:29:28.255156-07:00,0.0,10.769055,10769.055 +5562,2025-06-10T16:29:39.014833-07:00,0.0,10.759677,10759.677 +5563,2025-06-10T16:29:49.780093-07:00,0.0,10.76526,10765.26 +5564,2025-06-10T16:30:00.546316-07:00,0.0,10.766223,10766.223 +5565,2025-06-10T16:30:11.306390-07:00,0.0,10.760074,10760.074 +5566,2025-06-10T16:30:22.070546-07:00,0.0,10.764156,10764.156 +5567,2025-06-10T16:30:32.829062-07:00,0.0,10.758516,10758.516 +5568,2025-06-10T16:30:43.586317-07:00,0.0,10.757255,10757.255 +5569,2025-06-10T16:30:54.357311-07:00,0.0,10.770994,10770.994 +5570,2025-06-10T16:31:05.112583-07:00,0.0,10.755272,10755.272 +5571,2025-06-10T16:31:15.874015-07:00,0.0,10.761432,10761.432 +5572,2025-06-10T16:31:26.641217-07:00,0.0,10.767202,10767.202 +5573,2025-06-10T16:31:37.400590-07:00,0.0,10.759373,10759.373 +5574,2025-06-10T16:31:48.167133-07:00,0.0,10.766543,10766.543 +5575,2025-06-10T16:31:58.936296-07:00,0.0,10.769163,10769.163 +5576,2025-06-10T16:32:09.702428-07:00,0.0,10.766132,10766.132 +5577,2025-06-10T16:32:20.470160-07:00,0.0,10.767732,10767.732 +5578,2025-06-10T16:32:31.232231-07:00,0.0,10.762071,10762.071 +5579,2025-06-10T16:32:41.997019-07:00,0.0,10.764788,10764.788 +5580,2025-06-10T16:32:52.762267-07:00,0.0,10.765248,10765.248 +5581,2025-06-10T16:33:03.519133-07:00,0.0,10.756866,10756.866 +5582,2025-06-10T16:33:14.286093-07:00,0.0,10.76696,10766.96 +5583,2025-06-10T16:33:25.051173-07:00,0.0,10.76508,10765.08 +5584,2025-06-10T16:33:35.810015-07:00,0.0,10.758842,10758.842 +5585,2025-06-10T16:33:46.577402-07:00,0.0,10.767387,10767.387 +5586,2025-06-10T16:33:57.344169-07:00,0.0,10.766767,10766.767 +5587,2025-06-10T16:34:08.121167-07:00,0.0,10.776998,10776.998 +5588,2025-06-10T16:34:18.881396-07:00,0.0,10.760229,10760.229 +5589,2025-06-10T16:34:29.644253-07:00,0.0,10.762857,10762.857 +5590,2025-06-10T16:34:40.413053-07:00,0.0,10.7688,10768.8 +5591,2025-06-10T16:34:51.182240-07:00,0.0,10.769187,10769.187 +5592,2025-06-10T16:35:01.940164-07:00,0.0,10.757924,10757.924 +5593,2025-06-10T16:35:12.712367-07:00,0.0,10.772203,10772.203 +5594,2025-06-10T16:35:23.476438-07:00,0.0,10.764071,10764.071 +5595,2025-06-10T16:35:34.240007-07:00,0.0,10.763569,10763.569 +5596,2025-06-10T16:35:45.004681-07:00,0.0,10.764674,10764.674 +5597,2025-06-10T16:35:55.769013-07:00,0.0,10.764332,10764.332 +5598,2025-06-10T16:36:06.528015-07:00,0.0,10.759002,10759.002 +5599,2025-06-10T16:36:17.296010-07:00,0.0,10.767995,10767.995 +5600,2025-06-10T16:36:28.060355-07:00,0.0,10.764345,10764.345 +5601,2025-06-10T16:36:38.821748-07:00,0.0,10.761393,10761.393 +5602,2025-06-10T16:36:49.588056-07:00,0.0,10.766308,10766.308 +5603,2025-06-10T16:37:00.350334-07:00,0.0,10.762278,10762.278 +5604,2025-06-10T16:37:11.110657-07:00,0.0,10.760323,10760.323 +5605,2025-06-10T16:37:21.877050-07:00,0.0,10.766393,10766.393 +5606,2025-06-10T16:37:32.640271-07:00,0.0,10.763221,10763.221 +5607,2025-06-10T16:37:43.399604-07:00,0.0,10.759333,10759.333 +5608,2025-06-10T16:37:54.165015-07:00,0.0,10.765411,10765.411 +5609,2025-06-10T16:38:04.926314-07:00,0.0,10.761299,10761.299 +5610,2025-06-10T16:38:15.695020-07:00,0.0,10.768706,10768.706 +5611,2025-06-10T16:38:26.455280-07:00,0.0,10.76026,10760.26 +5612,2025-06-10T16:38:37.226933-07:00,0.0,10.771653,10771.653 +5613,2025-06-10T16:38:47.986386-07:00,0.0,10.759453,10759.453 +5614,2025-06-10T16:38:58.755810-07:00,0.0,10.769424,10769.424 +5615,2025-06-10T16:39:09.516058-07:00,0.0,10.760248,10760.248 +5616,2025-06-10T16:39:20.283077-07:00,0.0,10.767019,10767.019 +5617,2025-06-10T16:39:31.052008-07:00,0.0,10.768931,10768.931 +5618,2025-06-10T16:39:41.812017-07:00,0.0,10.760009,10760.009 +5619,2025-06-10T16:39:52.575561-07:00,0.0,10.763544,10763.544 +5620,2025-06-10T16:40:03.336042-07:00,0.0,10.760481,10760.481 +5621,2025-06-10T16:40:14.101015-07:00,0.0,10.764973,10764.973 +5622,2025-06-10T16:40:24.871038-07:00,0.0,10.770023,10770.023 +5623,2025-06-10T16:40:35.643014-07:00,0.0,10.771976,10771.976 +5624,2025-06-10T16:40:46.404672-07:00,0.0,10.761658,10761.658 +5625,2025-06-10T16:40:57.175051-07:00,0.0,10.770379,10770.379 +5626,2025-06-10T16:41:07.936179-07:00,0.0,10.761128,10761.128 +5627,2025-06-10T16:41:18.698270-07:00,0.0,10.762091,10762.091 +5628,2025-06-10T16:41:29.465021-07:00,0.0,10.766751,10766.751 +5629,2025-06-10T16:41:40.229846-07:00,0.0,10.764825,10764.825 +5630,2025-06-10T16:41:50.996035-07:00,0.0,10.766189,10766.189 +5631,2025-06-10T16:42:01.762000-07:00,0.0,10.765965,10765.965 +5632,2025-06-10T16:42:12.529010-07:00,0.0,10.76701,10767.01 +5633,2025-06-10T16:42:23.300108-07:00,0.0,10.771098,10771.098 +5634,2025-06-10T16:42:34.063988-07:00,0.0,10.76388,10763.88 +5635,2025-06-10T16:42:44.832068-07:00,0.0,10.76808,10768.08 +5636,2025-06-10T16:42:55.595613-07:00,0.0,10.763545,10763.545 +5637,2025-06-10T16:43:06.356110-07:00,0.0,10.760497,10760.497 +5638,2025-06-10T16:43:17.126052-07:00,0.0,10.769942,10769.942 +5639,2025-06-10T16:43:27.894265-07:00,0.0,10.768213,10768.213 +5640,2025-06-10T16:43:38.654167-07:00,0.0,10.759902,10759.902 +5641,2025-06-10T16:43:49.419513-07:00,0.0,10.765346,10765.346 +5642,2025-06-10T16:44:00.184225-07:00,0.0,10.764712,10764.712 +5643,2025-06-10T16:44:10.949266-07:00,0.0,10.765041,10765.041 +5644,2025-06-10T16:44:21.725307-07:00,0.0,10.776041,10776.041 +5645,2025-06-10T16:44:32.492010-07:00,0.0,10.766703,10766.703 +5646,2025-06-10T16:44:43.254017-07:00,0.0,10.762007,10762.007 +5647,2025-06-10T16:44:54.024458-07:00,0.0,10.770441,10770.441 +5648,2025-06-10T16:45:04.784011-07:00,0.0,10.759553,10759.553 +5649,2025-06-10T16:45:15.559606-07:00,0.0,10.775595,10775.595 +5650,2025-06-10T16:45:26.322011-07:00,0.0,10.762405,10762.405 +5651,2025-06-10T16:45:37.094674-07:00,0.0,10.772663,10772.663 +5652,2025-06-10T16:45:47.858553-07:00,0.0,10.763879,10763.879 +5653,2025-06-10T16:45:58.623212-07:00,0.0,10.764659,10764.659 +5654,2025-06-10T16:46:09.380018-07:00,0.0,10.756806,10756.806 +5655,2025-06-10T16:46:20.151062-07:00,0.0,10.771044,10771.044 +5656,2025-06-10T16:46:30.915806-07:00,0.0,10.764744,10764.744 +5657,2025-06-10T16:46:41.675009-07:00,0.0,10.759203,10759.203 +5658,2025-06-10T16:46:52.444249-07:00,0.0,10.76924,10769.24 +5659,2025-06-10T16:47:03.201503-07:00,0.0,10.757254,10757.254 +5660,2025-06-10T16:47:13.964361-07:00,0.0,10.762858,10762.858 +5661,2025-06-10T16:47:24.736050-07:00,0.0,10.771689,10771.689 +5662,2025-06-10T16:47:35.497251-07:00,0.0,10.761201,10761.201 +5663,2025-06-10T16:47:46.261252-07:00,0.0,10.764001,10764.001 +5664,2025-06-10T16:47:57.029523-07:00,0.0,10.768271,10768.271 +5665,2025-06-10T16:48:07.800279-07:00,0.0,10.770756,10770.756 +5666,2025-06-10T16:48:18.559264-07:00,0.0,10.758985,10758.985 +5667,2025-06-10T16:48:29.327058-07:00,0.0,10.767794,10767.794 +5668,2025-06-10T16:48:40.090546-07:00,0.0,10.763488,10763.488 +5669,2025-06-10T16:48:50.859050-07:00,0.0,10.768504,10768.504 +5670,2025-06-10T16:49:01.625308-07:00,0.0,10.766258,10766.258 +5671,2025-06-10T16:49:12.391328-07:00,0.0,10.76602,10766.02 +5672,2025-06-10T16:49:23.157767-07:00,0.0,10.766439,10766.439 +5673,2025-06-10T16:49:33.926355-07:00,0.0,10.768588,10768.588 +5674,2025-06-10T16:49:44.691010-07:00,0.0,10.764655,10764.655 +5675,2025-06-10T16:49:55.452256-07:00,0.0,10.761246,10761.246 +5676,2025-06-10T16:50:06.214108-07:00,0.0,10.761852,10761.852 +5677,2025-06-10T16:50:16.983389-07:00,0.0,10.769281,10769.281 +5678,2025-06-10T16:50:27.747013-07:00,0.0,10.763624,10763.624 +5679,2025-06-10T16:50:38.515269-07:00,0.0,10.768256,10768.256 +5680,2025-06-10T16:50:49.279015-07:00,0.0,10.763746,10763.746 +5681,2025-06-10T16:51:00.048011-07:00,0.0,10.768996,10768.996 +5682,2025-06-10T16:51:10.813446-07:00,0.0,10.765435,10765.435 +5683,2025-06-10T16:51:21.573228-07:00,0.0,10.759782,10759.782 +5684,2025-06-10T16:51:32.338019-07:00,0.0,10.764791,10764.791 +5685,2025-06-10T16:51:43.105326-07:00,0.0,10.767307,10767.307 +5686,2025-06-10T16:51:53.871439-07:00,0.0,10.766113,10766.113 +5687,2025-06-10T16:52:04.639013-07:00,0.0,10.767574,10767.574 +5688,2025-06-10T16:52:15.452910-07:00,0.0,10.813897,10813.897 +5689,2025-06-10T16:52:26.214624-07:00,0.0,10.761714,10761.714 +5690,2025-06-10T16:52:36.986946-07:00,0.0,10.772322,10772.322 +5691,2025-06-10T16:52:47.745612-07:00,0.0,10.758666,10758.666 +5692,2025-06-10T16:52:58.519612-07:00,0.0,10.774,10774.0 +5693,2025-06-10T16:53:09.277285-07:00,0.0,10.757673,10757.673 +5694,2025-06-10T16:53:20.039947-07:00,0.0,10.762662,10762.662 +5695,2025-06-10T16:53:30.805662-07:00,0.0,10.765715,10765.715 +5696,2025-06-10T16:53:41.573912-07:00,0.0,10.76825,10768.25 +5697,2025-06-10T16:53:52.341615-07:00,0.0,10.767703,10767.703 +5698,2025-06-10T16:54:03.111595-07:00,0.0,10.76998,10769.98 +5699,2025-06-10T16:54:13.878981-07:00,0.0,10.767386,10767.386 +5700,2025-06-10T16:54:24.643714-07:00,0.0,10.764733,10764.733 +5701,2025-06-10T16:54:24.860889-07:00,0.0,0.217175,217.175 +5702,2025-06-10T16:54:35.407652-07:00,0.0,10.546763,10546.763 +5703,2025-06-10T16:54:46.161055-07:00,0.0,10.753403,10753.403 +5704,2025-06-10T16:54:56.924766-07:00,0.0,10.763711,10763.711 +5705,2025-06-10T16:55:07.687277-07:00,0.0,10.762511,10762.511 +5706,2025-06-10T16:55:18.451593-07:00,0.0,10.764316,10764.316 +5707,2025-06-10T16:55:29.218126-07:00,0.0,10.766533,10766.533 +5708,2025-06-10T16:55:39.985764-07:00,0.0,10.767638,10767.638 +5709,2025-06-10T16:55:50.751450-07:00,0.0,10.765686,10765.686 +5710,2025-06-10T16:56:01.514616-07:00,0.0,10.763166,10763.166 +5711,2025-06-10T16:56:12.283832-07:00,0.0,10.769216,10769.216 +5712,2025-06-10T16:56:23.052401-07:00,0.0,10.768569,10768.569 +5713,2025-06-10T16:56:33.811855-07:00,0.0,10.759454,10759.454 +5714,2025-06-10T16:56:44.577616-07:00,0.0,10.765761,10765.761 +5715,2025-06-10T16:56:55.351661-07:00,0.0,10.774045,10774.045 +5716,2025-06-10T16:57:06.109619-07:00,0.0,10.757958,10757.958 +5717,2025-06-10T16:57:16.871614-07:00,0.0,10.761995,10761.995 +5718,2025-06-10T16:57:27.638430-07:00,0.0,10.766816,10766.816 +5719,2025-06-10T16:57:38.405895-07:00,0.0,10.767465,10767.465 +5720,2025-06-10T16:57:49.168041-07:00,0.0,10.762146,10762.146 +5721,2025-06-10T16:57:59.929416-07:00,0.0,10.761375,10761.375 +5722,2025-06-10T16:58:10.699624-07:00,0.0,10.770208,10770.208 +5723,2025-06-10T16:58:21.453666-07:00,0.0,10.754042,10754.042 +5724,2025-06-10T16:58:32.223452-07:00,0.0,10.769786,10769.786 +5725,2025-06-10T16:58:42.978253-07:00,0.0,10.754801,10754.801 +5726,2025-06-10T16:58:53.749595-07:00,0.0,10.771342,10771.342 +5727,2025-06-10T16:59:04.512641-07:00,0.0,10.763046,10763.046 +5728,2025-06-10T16:59:15.277803-07:00,0.0,10.765162,10765.162 +5729,2025-06-10T16:59:26.040612-07:00,0.0,10.762809,10762.809 +5730,2025-06-10T16:59:36.798614-07:00,0.0,10.758002,10758.002 +5731,2025-06-10T16:59:47.565144-07:00,0.0,10.76653,10766.53 +5732,2025-06-10T16:59:58.329840-07:00,0.0,10.764696,10764.696 +5733,2025-06-10T17:00:09.086914-07:00,0.0,10.757074,10757.074 +5734,2025-06-10T17:00:19.850669-07:00,0.0,10.763755,10763.755 +5735,2025-06-10T17:00:30.616618-07:00,0.0,10.765949,10765.949 +5736,2025-06-10T17:00:41.378618-07:00,0.0,10.762,10762.0 +5737,2025-06-10T17:00:52.135614-07:00,0.0,10.756996,10756.996 +5738,2025-06-10T17:01:02.901881-07:00,0.0,10.766267,10766.267 +5739,2025-06-10T17:01:13.664622-07:00,0.0,10.762741,10762.741 +5740,2025-06-10T17:01:24.428902-07:00,0.0,10.76428,10764.28 +5741,2025-06-10T17:01:35.195960-07:00,0.0,10.767058,10767.058 +5742,2025-06-10T17:01:45.956606-07:00,0.0,10.760646,10760.646 +5743,2025-06-10T17:01:56.725612-07:00,0.0,10.769006,10769.006 +5744,2025-06-10T17:02:07.487417-07:00,0.0,10.761805,10761.805 +5745,2025-06-10T17:02:18.245615-07:00,0.0,10.758198,10758.198 +5746,2025-06-10T17:02:29.014908-07:00,0.0,10.769293,10769.293 +5747,2025-06-10T17:02:39.776648-07:00,0.0,10.76174,10761.74 +5748,2025-06-10T17:02:50.537896-07:00,0.0,10.761248,10761.248 +5749,2025-06-10T17:03:01.296859-07:00,0.0,10.758963,10758.963 +5750,2025-06-10T17:03:12.053616-07:00,0.0,10.756757,10756.757 +5751,2025-06-10T17:03:22.822471-07:00,0.0,10.768855,10768.855 +5752,2025-06-10T17:03:33.589825-07:00,0.0,10.767354,10767.354 +5753,2025-06-10T17:03:44.345946-07:00,0.0,10.756121,10756.121 +5754,2025-06-10T17:03:55.103615-07:00,0.0,10.757669,10757.669 +5755,2025-06-10T17:04:05.871159-07:00,0.0,10.767544,10767.544 +5756,2025-06-10T17:04:16.630620-07:00,0.0,10.759461,10759.461 +5757,2025-06-10T17:04:27.394935-07:00,0.0,10.764315,10764.315 +5758,2025-06-10T17:04:38.155616-07:00,0.0,10.760681,10760.681 +5759,2025-06-10T17:04:48.917350-07:00,0.0,10.761734,10761.734 +5760,2025-06-10T17:04:59.681972-07:00,0.0,10.764622,10764.622 +5761,2025-06-10T17:05:10.434862-07:00,0.0,10.75289,10752.89 +5762,2025-06-10T17:05:21.200553-07:00,0.0,10.765691,10765.691 +5763,2025-06-10T17:05:31.967023-07:00,0.0,10.76647,10766.47 +5764,2025-06-10T17:05:42.721669-07:00,0.0,10.754646,10754.646 +5765,2025-06-10T17:05:53.489591-07:00,0.0,10.767922,10767.922 +5766,2025-06-10T17:06:04.248879-07:00,0.0,10.759288,10759.288 +5767,2025-06-10T17:06:15.015674-07:00,0.0,10.766795,10766.795 +5768,2025-06-10T17:06:25.781931-07:00,0.0,10.766257,10766.257 +5769,2025-06-10T17:06:36.545927-07:00,0.0,10.763996,10763.996 +5770,2025-06-10T17:06:47.310618-07:00,0.0,10.764691,10764.691 +5771,2025-06-10T17:06:58.067614-07:00,0.0,10.756996,10756.996 +5772,2025-06-10T17:07:08.836758-07:00,0.0,10.769144,10769.144 +5773,2025-06-10T17:07:19.595988-07:00,0.0,10.75923,10759.23 +5774,2025-06-10T17:07:30.362043-07:00,0.0,10.766055,10766.055 +5775,2025-06-10T17:07:41.124372-07:00,0.0,10.762329,10762.329 +5776,2025-06-10T17:07:51.894359-07:00,0.0,10.769987,10769.987 +5777,2025-06-10T17:08:02.652805-07:00,0.0,10.758446,10758.446 +5778,2025-06-10T17:08:13.418615-07:00,0.0,10.76581,10765.81 +5779,2025-06-10T17:08:24.175951-07:00,0.0,10.757336,10757.336 +5780,2025-06-10T17:08:34.942996-07:00,0.0,10.767045,10767.045 +5781,2025-06-10T17:08:45.700619-07:00,0.0,10.757623,10757.623 +5782,2025-06-10T17:08:56.461808-07:00,0.0,10.761189,10761.189 +5783,2025-06-10T17:09:07.226984-07:00,0.0,10.765176,10765.176 +5784,2025-06-10T17:09:17.987593-07:00,0.0,10.760609,10760.609 +5785,2025-06-10T17:09:28.759740-07:00,0.0,10.772147,10772.147 +5786,2025-06-10T17:09:39.521003-07:00,0.0,10.761263,10761.263 +5787,2025-06-10T17:09:50.279937-07:00,0.0,10.758934,10758.934 +5788,2025-06-10T17:10:01.051066-07:00,0.0,10.771129,10771.129 +5789,2025-06-10T17:10:11.805917-07:00,0.0,10.754851,10754.851 +5790,2025-06-10T17:10:22.579903-07:00,0.0,10.773986,10773.986 +5791,2025-06-10T17:10:33.338980-07:00,0.0,10.759077,10759.077 +5792,2025-06-10T17:10:44.106371-07:00,0.0,10.767391,10767.391 +5793,2025-06-10T17:10:54.868592-07:00,0.0,10.762221,10762.221 +5794,2025-06-10T17:11:05.628604-07:00,0.0,10.760012,10760.012 +5795,2025-06-10T17:11:16.394193-07:00,0.0,10.765589,10765.589 +5796,2025-06-10T17:11:27.158188-07:00,0.0,10.763995,10763.995 +5797,2025-06-10T17:11:37.918618-07:00,0.0,10.76043,10760.43 +5798,2025-06-10T17:11:48.687423-07:00,0.0,10.768805,10768.805 +5799,2025-06-10T17:11:59.448019-07:00,0.0,10.760596,10760.596 +5800,2025-06-10T17:12:10.212619-07:00,0.0,10.7646,10764.6 +5801,2025-06-10T17:12:20.977422-07:00,0.0,10.764803,10764.803 +5802,2025-06-10T17:12:31.740780-07:00,0.0,10.763358,10763.358 +5803,2025-06-10T17:12:42.511855-07:00,0.0,10.771075,10771.075 +5804,2025-06-10T17:12:53.273646-07:00,0.0,10.761791,10761.791 +5805,2025-06-10T17:13:04.042670-07:00,0.0,10.769024,10769.024 +5806,2025-06-10T17:13:14.805618-07:00,0.0,10.762948,10762.948 +5807,2025-06-10T17:13:25.559870-07:00,0.0,10.754252,10754.252 +5808,2025-06-10T17:13:36.331618-07:00,0.0,10.771748,10771.748 +5809,2025-06-10T17:13:47.090608-07:00,0.0,10.75899,10758.99 +5810,2025-06-10T17:13:57.855616-07:00,0.0,10.765008,10765.008 +5811,2025-06-10T17:14:08.620779-07:00,0.0,10.765163,10765.163 +5812,2025-06-10T17:14:19.386843-07:00,0.0,10.766064,10766.064 +5813,2025-06-10T17:14:30.156178-07:00,0.0,10.769335,10769.335 +5814,2025-06-10T17:14:40.926888-07:00,0.0,10.77071,10770.71 +5815,2025-06-10T17:14:51.690603-07:00,0.0,10.763715,10763.715 +5816,2025-06-10T17:15:02.451847-07:00,0.0,10.761244,10761.244 +5817,2025-06-10T17:15:13.216491-07:00,0.0,10.764644,10764.644 +5818,2025-06-10T17:15:23.985699-07:00,0.0,10.769208,10769.208 +5819,2025-06-10T17:15:34.744716-07:00,0.0,10.759017,10759.017 +5820,2025-06-10T17:15:45.516608-07:00,0.0,10.771892,10771.892 +5821,2025-06-10T17:15:56.282618-07:00,0.0,10.76601,10766.01 +5822,2025-06-10T17:16:07.050837-07:00,0.0,10.768219,10768.219 +5823,2025-06-10T17:16:17.818852-07:00,0.0,10.768015,10768.015 +5824,2025-06-10T17:16:28.579616-07:00,0.0,10.760764,10760.764 +5825,2025-06-10T17:16:39.350718-07:00,0.0,10.771102,10771.102 +5826,2025-06-10T17:16:50.117476-07:00,0.0,10.766758,10766.758 +5827,2025-06-10T17:17:00.874461-07:00,0.0,10.756985,10756.985 +5828,2025-06-10T17:17:11.638906-07:00,0.0,10.764445,10764.445 +5829,2025-06-10T17:17:22.405793-07:00,0.0,10.766887,10766.887 +5830,2025-06-10T17:17:33.167865-07:00,0.0,10.762072,10762.072 +5831,2025-06-10T17:17:43.936901-07:00,0.0,10.769036,10769.036 +5832,2025-06-10T17:17:54.702855-07:00,0.0,10.765954,10765.954 +5833,2025-06-10T17:18:05.461650-07:00,0.0,10.758795,10758.795 +5834,2025-06-10T17:18:16.226081-07:00,0.0,10.764431,10764.431 +5835,2025-06-10T17:18:26.987941-07:00,0.0,10.76186,10761.86 +5836,2025-06-10T17:18:37.745616-07:00,0.0,10.757675,10757.675 +5837,2025-06-10T17:18:48.509593-07:00,0.0,10.763977,10763.977 +5838,2025-06-10T17:18:59.273232-07:00,0.0,10.763639,10763.639 +5839,2025-06-10T17:19:10.042767-07:00,0.0,10.769535,10769.535 +5840,2025-06-10T17:19:20.806569-07:00,0.0,10.763802,10763.802 +5841,2025-06-10T17:19:31.571637-07:00,0.0,10.765068,10765.068 +5842,2025-06-10T17:19:42.326185-07:00,0.0,10.754548,10754.548 +5843,2025-06-10T17:19:53.095616-07:00,0.0,10.769431,10769.431 +5844,2025-06-10T17:20:03.863927-07:00,0.0,10.768311,10768.311 +5845,2025-06-10T17:20:14.628611-07:00,0.0,10.764684,10764.684 +5846,2025-06-10T17:20:25.393617-07:00,0.0,10.765006,10765.006 +5847,2025-06-10T17:20:36.162300-07:00,0.0,10.768683,10768.683 +5848,2025-06-10T17:20:46.927880-07:00,0.0,10.76558,10765.58 +5849,2025-06-10T17:20:57.683039-07:00,0.0,10.755159,10755.159 +5850,2025-06-10T17:21:08.449934-07:00,0.0,10.766895,10766.895 +5851,2025-06-10T17:21:19.214884-07:00,0.0,10.76495,10764.95 +5852,2025-06-10T17:21:29.990457-07:00,0.0,10.775573,10775.573 +5853,2025-06-10T17:21:40.755170-07:00,0.0,10.764713,10764.713 +5854,2025-06-10T17:21:51.516617-07:00,0.0,10.761447,10761.447 +5855,2025-06-10T17:22:02.287931-07:00,0.0,10.771314,10771.314 +5856,2025-06-10T17:22:13.045676-07:00,0.0,10.757745,10757.745 +5857,2025-06-10T17:22:23.811749-07:00,0.0,10.766073,10766.073 +5858,2025-06-10T17:22:34.573849-07:00,0.0,10.7621,10762.1 +5859,2025-06-10T17:22:45.334827-07:00,0.0,10.760978,10760.978 +5860,2025-06-10T17:22:56.099622-07:00,0.0,10.764795,10764.795 +5861,2025-06-10T17:23:06.857667-07:00,0.0,10.758045,10758.045 +5862,2025-06-10T17:23:17.630934-07:00,0.0,10.773267,10773.267 +5863,2025-06-10T17:23:28.389618-07:00,0.0,10.758684,10758.684 +5864,2025-06-10T17:23:39.152635-07:00,0.0,10.763017,10763.017 +5865,2025-06-10T17:23:49.924658-07:00,0.0,10.772023,10772.023 +5866,2025-06-10T17:24:00.677951-07:00,0.0,10.753293,10753.293 +5867,2025-06-10T17:24:11.447818-07:00,0.0,10.769867,10769.867 +5868,2025-06-10T17:24:22.202614-07:00,0.0,10.754796,10754.796 +5869,2025-06-10T17:24:32.974872-07:00,0.0,10.772258,10772.258 +5870,2025-06-10T17:24:43.741799-07:00,0.0,10.766927,10766.927 +5871,2025-06-10T17:24:54.508280-07:00,0.0,10.766481,10766.481 +5872,2025-06-10T17:25:05.267980-07:00,0.0,10.7597,10759.7 +5873,2025-06-10T17:25:16.029618-07:00,0.0,10.761638,10761.638 +5874,2025-06-10T17:25:26.800096-07:00,0.0,10.770478,10770.478 +5875,2025-06-10T17:25:37.566619-07:00,0.0,10.766523,10766.523 +5876,2025-06-10T17:25:48.331599-07:00,0.0,10.76498,10764.98 +5877,2025-06-10T17:25:59.088612-07:00,0.0,10.757013,10757.013 +5878,2025-06-10T17:26:09.858058-07:00,0.0,10.769446,10769.446 +5879,2025-06-10T17:26:20.615607-07:00,0.0,10.757549,10757.549 +5880,2025-06-10T17:26:31.382612-07:00,0.0,10.767005,10767.005 +5881,2025-06-10T17:26:42.152653-07:00,0.0,10.770041,10770.041 +5882,2025-06-10T17:26:52.910591-07:00,0.0,10.757938,10757.938 +5883,2025-06-10T17:27:03.672611-07:00,0.0,10.76202,10762.02 +5884,2025-06-10T17:27:14.440385-07:00,0.0,10.767774,10767.774 +5885,2025-06-10T17:27:25.211617-07:00,0.0,10.771232,10771.232 +5886,2025-06-10T17:27:35.976925-07:00,0.0,10.765308,10765.308 +5887,2025-06-10T17:27:46.737875-07:00,0.0,10.76095,10760.95 +5888,2025-06-10T17:27:57.511779-07:00,0.0,10.773904,10773.904 +5889,2025-06-10T17:28:08.276046-07:00,0.0,10.764267,10764.267 +5890,2025-06-10T17:28:19.038116-07:00,0.0,10.76207,10762.07 +5891,2025-06-10T17:28:29.790620-07:00,0.0,10.752504,10752.504 +5892,2025-06-10T17:28:40.558614-07:00,0.0,10.767994,10767.994 +5893,2025-06-10T17:28:51.317168-07:00,0.0,10.758554,10758.554 +5894,2025-06-10T17:29:02.077632-07:00,0.0,10.760464,10760.464 +5895,2025-06-10T17:29:12.844046-07:00,0.0,10.766414,10766.414 +5896,2025-06-10T17:29:23.605214-07:00,0.0,10.761168,10761.168 +5897,2025-06-10T17:29:34.371043-07:00,0.0,10.765829,10765.829 +5898,2025-06-10T17:29:45.134761-07:00,0.0,10.763718,10763.718 +5899,2025-06-10T17:29:55.901908-07:00,0.0,10.767147,10767.147 +5900,2025-06-10T17:30:06.664162-07:00,0.0,10.762254,10762.254 +5901,2025-06-10T17:30:14.347949-07:00,2039.0,7.683787,7683.787 +5902,2025-06-10T17:30:16.357927-07:00,2613.0,2.009978,2009.978 +5903,2025-06-10T17:30:17.425852-07:00,2613.0,1.067925,1067.925 +5904,2025-06-10T17:30:28.187612-07:00,2549.0,10.76176,10761.76 +5905,2025-06-10T17:30:38.962253-07:00,2672.0,10.774641,10774.641 +5906,2025-06-10T17:30:49.723781-07:00,2607.0,10.761528,10761.528 +5907,2025-06-10T17:31:00.489835-07:00,2608.0,10.766054,10766.054 +5908,2025-06-10T17:31:11.256769-07:00,2586.0,10.766934,10766.934 +5909,2025-06-10T17:31:22.020608-07:00,2646.0,10.763839,10763.839 +5910,2025-06-10T17:31:24.534291-07:00,0.0,2.513683,2513.683 +5911,2025-06-10T17:31:32.792141-07:00,0.0,8.25785,8257.85 +5912,2025-06-10T17:31:43.558620-07:00,0.0,10.766479,10766.479 +5913,2025-06-10T17:31:54.324596-07:00,0.0,10.765976,10765.976 +5914,2025-06-10T17:32:05.093985-07:00,0.0,10.769389,10769.389 +5915,2025-06-10T17:32:15.861841-07:00,0.0,10.767856,10767.856 +5916,2025-06-10T17:32:26.633326-07:00,0.0,10.771485,10771.485 +5917,2025-06-10T17:32:37.393216-07:00,0.0,10.75989,10759.89 +5918,2025-06-10T17:32:48.170992-07:00,0.0,10.777776,10777.776 +5919,2025-06-10T17:32:58.931797-07:00,0.0,10.760805,10760.805 +5920,2025-06-10T17:33:09.701835-07:00,0.0,10.770038,10770.038 +5921,2025-06-10T17:33:20.471619-07:00,0.0,10.769784,10769.784 +5922,2025-06-10T17:33:31.245665-07:00,0.0,10.774046,10774.046 +5923,2025-06-10T17:33:42.007666-07:00,0.0,10.762001,10762.001 +5924,2025-06-10T17:33:52.777905-07:00,0.0,10.770239,10770.239 +5925,2025-06-10T17:34:03.544647-07:00,0.0,10.766742,10766.742 +5926,2025-06-10T17:34:14.314711-07:00,0.0,10.770064,10770.064 +5927,2025-06-10T17:34:25.088012-07:00,0.0,10.773301,10773.301 +5928,2025-06-10T17:34:35.847613-07:00,0.0,10.759601,10759.601 +5929,2025-06-10T17:34:46.621725-07:00,0.0,10.774112,10774.112 +5930,2025-06-10T17:34:57.384811-07:00,0.0,10.763086,10763.086 +5931,2025-06-10T17:35:08.158776-07:00,0.0,10.773965,10773.965 +5932,2025-06-10T17:35:18.921125-07:00,0.0,10.762349,10762.349 +5933,2025-06-10T17:35:29.695732-07:00,0.0,10.774607,10774.607 +5934,2025-06-10T17:35:40.461877-07:00,0.0,10.766145,10766.145 +5935,2025-06-10T17:35:51.229686-07:00,0.0,10.767809,10767.809 +5936,2025-06-10T17:36:01.998744-07:00,0.0,10.769058,10769.058 +5937,2025-06-10T17:36:12.769742-07:00,0.0,10.770998,10770.998 +5938,2025-06-10T17:36:23.534703-07:00,0.0,10.764961,10764.961 +5939,2025-06-10T17:36:34.302903-07:00,0.0,10.7682,10768.2 +5940,2025-06-10T17:36:45.073972-07:00,0.0,10.771069,10771.069 +5941,2025-06-10T17:36:55.837843-07:00,0.0,10.763871,10763.871 +5942,2025-06-10T17:37:06.612614-07:00,0.0,10.774771,10774.771 +5943,2025-06-10T17:37:17.376605-07:00,0.0,10.763991,10763.991 +5944,2025-06-10T17:37:28.145883-07:00,0.0,10.769278,10769.278 +5945,2025-06-10T17:37:38.911867-07:00,0.0,10.765984,10765.984 +5946,2025-06-10T17:37:49.684956-07:00,0.0,10.773089,10773.089 +5947,2025-06-10T17:38:00.445013-07:00,0.0,10.760057,10760.057 +5948,2025-06-10T17:38:11.212622-07:00,0.0,10.767609,10767.609 +5949,2025-06-10T17:38:21.989838-07:00,0.0,10.777216,10777.216 +5950,2025-06-10T17:38:32.754038-07:00,0.0,10.7642,10764.2 +5951,2025-06-10T17:38:43.512039-07:00,0.0,10.758001,10758.001 +5952,2025-06-10T17:38:54.278862-07:00,0.0,10.766823,10766.823 +5953,2025-06-10T17:39:05.047826-07:00,0.0,10.768964,10768.964 +5954,2025-06-10T17:39:15.810614-07:00,0.0,10.762788,10762.788 +5955,2025-06-10T17:39:26.578785-07:00,0.0,10.768171,10768.171 +5956,2025-06-10T17:39:37.345616-07:00,0.0,10.766831,10766.831 +5957,2025-06-10T17:39:48.108092-07:00,0.0,10.762476,10762.476 +5958,2025-06-10T17:39:58.876960-07:00,0.0,10.768868,10768.868 +5959,2025-06-10T17:40:09.637224-07:00,0.0,10.760264,10760.264 +5960,2025-06-10T17:40:20.409061-07:00,0.0,10.771837,10771.837 +5961,2025-06-10T17:40:31.175993-07:00,0.0,10.766932,10766.932 +5962,2025-06-10T17:40:41.934042-07:00,0.0,10.758049,10758.049 +5963,2025-06-10T17:40:52.703659-07:00,0.0,10.769617,10769.617 +5964,2025-06-10T17:41:03.468896-07:00,0.0,10.765237,10765.237 +5965,2025-06-10T17:41:14.227871-07:00,0.0,10.758975,10758.975 +5966,2025-06-10T17:41:24.994460-07:00,0.0,10.766589,10766.589 +5967,2025-06-10T17:41:35.759620-07:00,0.0,10.76516,10765.16 +5968,2025-06-10T17:41:46.517616-07:00,0.0,10.757996,10757.996 +5969,2025-06-10T17:41:57.291393-07:00,0.0,10.773777,10773.777 +5970,2025-06-10T17:42:08.053401-07:00,0.0,10.762008,10762.008 +5971,2025-06-10T17:42:18.816601-07:00,0.0,10.7632,10763.2 +5972,2025-06-10T17:42:29.580949-07:00,0.0,10.764348,10764.348 +5973,2025-06-10T17:42:40.347616-07:00,0.0,10.766667,10766.667 +5974,2025-06-10T17:42:51.116608-07:00,0.0,10.768992,10768.992 +5975,2025-06-10T17:43:01.881362-07:00,0.0,10.764754,10764.754 +5976,2025-06-10T17:43:12.648880-07:00,0.0,10.767518,10767.518 +5977,2025-06-10T17:43:23.408769-07:00,0.0,10.759889,10759.889 +5978,2025-06-10T17:43:34.172656-07:00,0.0,10.763887,10763.887 +5979,2025-06-10T17:43:44.929975-07:00,0.0,10.757319,10757.319 +5980,2025-06-10T17:43:55.696893-07:00,0.0,10.766918,10766.918 +5981,2025-06-10T17:44:06.465614-07:00,0.0,10.768721,10768.721 +5982,2025-06-10T17:44:17.227648-07:00,0.0,10.762034,10762.034 +5983,2025-06-10T17:44:17.995046-07:00,0.0,0.767398,767.398 +5984,2025-06-10T17:44:27.991877-07:00,0.0,9.996831,9996.831 +5985,2025-06-10T17:44:38.755495-07:00,0.0,10.763618,10763.618 +5986,2025-06-10T17:44:49.525887-07:00,0.0,10.770392,10770.392 +5987,2025-06-10T17:45:00.286616-07:00,0.0,10.760729,10760.729 +5988,2025-06-10T17:45:11.049616-07:00,0.0,10.763,10763.0 +5989,2025-06-10T17:45:21.809298-07:00,0.0,10.759682,10759.682 +5990,2025-06-10T17:45:32.581765-07:00,0.0,10.772467,10772.467 +5991,2025-06-10T17:45:43.337618-07:00,0.0,10.755853,10755.853 +5992,2025-06-10T17:45:54.108893-07:00,0.0,10.771275,10771.275 +5993,2025-06-10T17:46:04.869624-07:00,0.0,10.760731,10760.731 +5994,2025-06-10T17:46:15.637606-07:00,0.0,10.767982,10767.982 +5995,2025-06-10T17:46:26.404542-07:00,0.0,10.766936,10766.936 +5996,2025-06-10T17:46:37.171867-07:00,0.0,10.767325,10767.325 +5997,2025-06-10T17:46:47.923656-07:00,0.0,10.751789,10751.789 +5998,2025-06-10T17:46:58.692992-07:00,0.0,10.769336,10769.336 +5999,2025-06-10T17:47:09.452620-07:00,0.0,10.759628,10759.628 +6000,2025-06-10T17:47:20.210616-07:00,0.0,10.757996,10757.996 +6001,2025-06-10T17:47:30.988588-07:00,0.0,10.777972,10777.972 +6002,2025-06-10T17:47:41.748191-07:00,0.0,10.759603,10759.603 +6003,2025-06-10T17:47:52.508616-07:00,0.0,10.760425,10760.425 +6004,2025-06-10T17:48:03.276879-07:00,0.0,10.768263,10768.263 +6005,2025-06-10T17:48:14.030929-07:00,0.0,10.75405,10754.05 +6006,2025-06-10T17:48:24.804855-07:00,0.0,10.773926,10773.926 +6007,2025-06-10T17:48:35.561635-07:00,0.0,10.75678,10756.78 +6008,2025-06-10T17:48:46.330107-07:00,0.0,10.768472,10768.472 +6009,2025-06-10T17:48:57.094619-07:00,0.0,10.764512,10764.512 +6010,2025-06-10T17:49:07.859601-07:00,0.0,10.764982,10764.982 +6011,2025-06-10T17:49:18.623900-07:00,0.0,10.764299,10764.299 +6012,2025-06-10T17:49:29.388614-07:00,0.0,10.764714,10764.714 +6013,2025-06-10T17:49:40.155618-07:00,0.0,10.767004,10767.004 +6014,2025-06-10T17:49:50.915833-07:00,0.0,10.760215,10760.215 +6015,2025-06-10T17:50:01.684092-07:00,0.0,10.768259,10768.259 +6016,2025-06-10T17:50:12.449617-07:00,0.0,10.765525,10765.525 +6017,2025-06-10T17:50:23.213970-07:00,0.0,10.764353,10764.353 +6018,2025-06-10T17:50:33.973597-07:00,0.0,10.759627,10759.627 +6019,2025-06-10T17:50:44.732844-07:00,0.0,10.759247,10759.247 +6020,2025-06-10T17:50:55.502463-07:00,0.0,10.769619,10769.619 +6021,2025-06-10T17:51:06.274620-07:00,0.0,10.772157,10772.157 +6022,2025-06-10T17:51:17.033934-07:00,0.0,10.759314,10759.314 +6023,2025-06-10T17:51:27.801875-07:00,0.0,10.767941,10767.941 +6024,2025-06-10T17:51:38.562615-07:00,0.0,10.76074,10760.74 +6025,2025-06-10T17:51:49.328769-07:00,0.0,10.766154,10766.154 +6026,2025-06-10T17:52:00.094887-07:00,0.0,10.766118,10766.118 +6027,2025-06-10T17:52:10.855202-07:00,0.0,10.760315,10760.315 +6028,2025-06-10T17:52:21.626964-07:00,0.0,10.771762,10771.762 +6029,2025-06-10T17:52:32.391372-07:00,0.0,10.764408,10764.408 +6030,2025-06-10T17:52:43.150953-07:00,0.0,10.759581,10759.581 +6031,2025-06-10T17:52:53.913991-07:00,0.0,10.763038,10763.038 +6032,2025-06-10T17:53:04.685114-07:00,0.0,10.771123,10771.123 +6033,2025-06-10T17:53:15.446128-07:00,0.0,10.761014,10761.014 +6034,2025-06-10T17:53:26.212994-07:00,0.0,10.766866,10766.866 +6035,2025-06-10T17:53:36.973736-07:00,0.0,10.760742,10760.742 +6036,2025-06-10T17:53:47.737962-07:00,0.0,10.764226,10764.226 +6037,2025-06-10T17:53:58.507994-07:00,0.0,10.770032,10770.032 +6038,2025-06-10T17:54:09.274140-07:00,0.0,10.766146,10766.146 +6039,2025-06-10T17:54:20.039954-07:00,0.0,10.765814,10765.814 +6040,2025-06-10T17:54:30.795955-07:00,0.0,10.756001,10756.001 +6041,2025-06-10T17:54:41.556247-07:00,0.0,10.760292,10760.292 +6042,2025-06-10T17:54:52.322960-07:00,0.0,10.766713,10766.713 +6043,2025-06-10T17:55:03.082162-07:00,0.0,10.759202,10759.202 +6044,2025-06-10T17:55:13.845956-07:00,0.0,10.763794,10763.794 +6045,2025-06-10T17:55:24.618079-07:00,0.0,10.772123,10772.123 +6046,2025-06-10T17:55:35.387958-07:00,0.0,10.769879,10769.879 +6047,2025-06-10T17:55:46.151983-07:00,0.0,10.764025,10764.025 +6048,2025-06-10T17:55:56.921958-07:00,0.0,10.769975,10769.975 +6049,2025-06-10T17:56:07.689060-07:00,0.0,10.767102,10767.102 +6050,2025-06-10T17:56:18.458024-07:00,0.0,10.768964,10768.964 +6051,2025-06-10T17:56:29.219043-07:00,0.0,10.761019,10761.019 +6052,2025-06-10T17:56:39.982734-07:00,0.0,10.763691,10763.691 +6053,2025-06-10T17:56:50.748273-07:00,0.0,10.765539,10765.539 +6054,2025-06-10T17:57:01.522954-07:00,0.0,10.774681,10774.681 +6055,2025-06-10T17:57:12.287647-07:00,0.0,10.764693,10764.693 +6056,2025-06-10T17:57:23.046639-07:00,0.0,10.758992,10758.992 +6057,2025-06-10T17:57:33.818186-07:00,0.0,10.771547,10771.547 +6058,2025-06-10T17:57:44.578481-07:00,0.0,10.760295,10760.295 +6059,2025-06-10T17:57:55.351183-07:00,0.0,10.772702,10772.702 +6060,2025-06-10T17:58:06.115951-07:00,0.0,10.764768,10764.768 +6061,2025-06-10T17:58:16.888396-07:00,0.0,10.772445,10772.445 +6062,2025-06-10T17:58:27.644954-07:00,0.0,10.756558,10756.558 +6063,2025-06-10T17:58:38.407073-07:00,0.0,10.762119,10762.119 +6064,2025-06-10T17:58:49.174247-07:00,0.0,10.767174,10767.174 +6065,2025-06-10T17:58:59.935961-07:00,0.0,10.761714,10761.714 +6066,2025-06-10T17:59:10.704187-07:00,0.0,10.768226,10768.226 +6067,2025-06-10T17:59:21.474096-07:00,0.0,10.769909,10769.909 +6068,2025-06-10T17:59:32.237245-07:00,0.0,10.763149,10763.149 +6069,2025-06-10T17:59:42.994486-07:00,0.0,10.757241,10757.241 +6070,2025-06-10T17:59:53.753189-07:00,0.0,10.758703,10758.703 +6071,2025-06-10T18:00:04.528157-07:00,0.0,10.774968,10774.968 +6072,2025-06-10T18:00:15.293104-07:00,0.0,10.764947,10764.947 +6073,2025-06-10T18:00:26.052941-07:00,0.0,10.759837,10759.837 +6074,2025-06-10T18:00:36.822142-07:00,0.0,10.769201,10769.201 +6075,2025-06-10T18:00:47.577075-07:00,0.0,10.754933,10754.933 +6076,2025-06-10T18:00:58.345000-07:00,0.0,10.767925,10767.925 +6077,2025-06-10T18:01:09.113940-07:00,0.0,10.76894,10768.94 +6078,2025-06-10T18:01:19.874943-07:00,0.0,10.761003,10761.003 +6079,2025-06-10T18:01:30.643121-07:00,0.0,10.768178,10768.178 +6080,2025-06-10T18:01:41.405345-07:00,0.0,10.762224,10762.224 +6081,2025-06-10T18:01:52.168103-07:00,0.0,10.762758,10762.758 +6082,2025-06-10T18:02:02.931962-07:00,0.0,10.763859,10763.859 +6083,2025-06-10T18:02:13.701011-07:00,0.0,10.769049,10769.049 +6084,2025-06-10T18:02:24.462935-07:00,0.0,10.761924,10761.924 +6085,2025-06-10T18:02:35.228962-07:00,0.0,10.766027,10766.027 +6086,2025-06-10T18:02:45.996331-07:00,0.0,10.767369,10767.369 +6087,2025-06-10T18:02:56.758960-07:00,0.0,10.762629,10762.629 +6088,2025-06-10T18:03:07.531075-07:00,0.0,10.772115,10772.115 +6089,2025-06-10T18:03:18.294302-07:00,0.0,10.763227,10763.227 +6090,2025-06-10T18:03:29.066563-07:00,0.0,10.772261,10772.261 +6091,2025-06-10T18:03:39.825546-07:00,0.0,10.758983,10758.983 +6092,2025-06-10T18:03:50.589983-07:00,0.0,10.764437,10764.437 +6093,2025-06-10T18:04:01.357156-07:00,0.0,10.767173,10767.173 +6094,2025-06-10T18:04:12.115147-07:00,0.0,10.757991,10757.991 +6095,2025-06-10T18:04:22.881956-07:00,0.0,10.766809,10766.809 +6096,2025-06-10T18:04:33.639183-07:00,0.0,10.757227,10757.227 +6097,2025-06-10T18:04:44.404231-07:00,0.0,10.765048,10765.048 +6098,2025-06-10T18:04:55.173293-07:00,0.0,10.769062,10769.062 +6099,2025-06-10T18:05:05.933174-07:00,0.0,10.759881,10759.881 +6100,2025-06-10T18:05:16.687932-07:00,112.0,10.754758,10754.758 +6101,2025-06-10T18:05:27.455366-07:00,174.0,10.767434,10767.434 +6102,2025-06-10T18:05:38.216105-07:00,192.0,10.760739,10760.739 +6103,2025-06-10T18:05:48.975177-07:00,165.0,10.759072,10759.072 +6104,2025-06-10T18:05:59.739956-07:00,218.0,10.764779,10764.779 +6105,2025-06-10T18:06:10.504516-07:00,296.0,10.76456,10764.56 +6106,2025-06-10T18:06:21.270943-07:00,293.0,10.766427,10766.427 +6107,2025-06-10T18:06:32.031440-07:00,239.0,10.760497,10760.497 +6108,2025-06-10T18:06:42.793509-07:00,231.0,10.762069,10762.069 +6109,2025-06-10T18:06:53.557961-07:00,271.0,10.764452,10764.452 +6110,2025-06-10T18:07:04.323956-07:00,174.0,10.765995,10765.995 +6111,2025-06-10T18:07:15.092752-07:00,255.0,10.768796,10768.796 +6112,2025-06-10T18:07:25.854960-07:00,163.0,10.762208,10762.208 +6113,2025-06-10T18:07:36.618208-07:00,182.0,10.763248,10763.248 +6114,2025-06-10T18:07:47.373942-07:00,231.0,10.755734,10755.734 +6115,2025-06-10T18:07:58.146463-07:00,175.0,10.772521,10772.521 +6116,2025-06-10T18:08:08.907956-07:00,227.0,10.761493,10761.493 +6117,2025-06-10T18:08:19.671555-07:00,285.0,10.763599,10763.599 +6118,2025-06-10T18:08:30.435392-07:00,278.0,10.763837,10763.837 +6119,2025-06-10T18:08:41.201289-07:00,278.0,10.765897,10765.897 +6120,2025-06-10T18:08:51.965992-07:00,213.0,10.764703,10764.703 +6121,2025-06-10T18:09:02.727537-07:00,230.0,10.761545,10761.545 +6122,2025-06-10T18:09:13.488011-07:00,240.0,10.760474,10760.474 +6123,2025-06-10T18:09:24.258166-07:00,247.0,10.770155,10770.155 +6124,2025-06-10T18:09:35.021269-07:00,289.0,10.763103,10763.103 +6125,2025-06-10T18:09:45.786276-07:00,232.0,10.765007,10765.007 +6126,2025-06-10T18:09:56.548958-07:00,272.0,10.762682,10762.682 +6127,2025-06-10T18:10:07.317176-07:00,271.0,10.768218,10768.218 +6128,2025-06-10T18:10:18.077089-07:00,296.0,10.759913,10759.913 +6129,2025-06-10T18:10:28.844950-07:00,208.0,10.767861,10767.861 +6130,2025-06-10T18:10:37.227392-07:00,0.0,8.382442,8382.442 +6131,2025-06-10T18:10:39.609995-07:00,0.0,2.382603,2382.603 +6132,2025-06-10T18:10:50.383981-07:00,0.0,10.773986,10773.986 +6133,2025-06-10T18:11:01.150434-07:00,0.0,10.766453,10766.453 +6134,2025-06-10T18:11:11.914397-07:00,0.0,10.763963,10763.963 +6135,2025-06-10T18:11:22.675960-07:00,0.0,10.761563,10761.563 +6136,2025-06-10T18:11:33.445578-07:00,0.0,10.769618,10769.618 +6137,2025-06-10T18:11:44.203941-07:00,0.0,10.758363,10758.363 +6138,2025-06-10T18:11:54.969956-07:00,0.0,10.766015,10766.015 +6139,2025-06-10T18:12:05.738766-07:00,0.0,10.76881,10768.81 +6140,2025-06-10T18:12:16.505108-07:00,0.0,10.766342,10766.342 +6141,2025-06-10T18:12:27.262952-07:00,0.0,10.757844,10757.844 +6142,2025-06-10T18:12:38.026233-07:00,0.0,10.763281,10763.281 +6143,2025-06-10T18:12:48.796271-07:00,0.0,10.770038,10770.038 +6144,2025-06-10T18:12:59.564956-07:00,0.0,10.768685,10768.685 +6145,2025-06-10T18:13:10.334283-07:00,0.0,10.769327,10769.327 +6146,2025-06-10T18:13:21.096958-07:00,0.0,10.762675,10762.675 +6147,2025-06-10T18:13:31.856958-07:00,0.0,10.76,10760.0 +6148,2025-06-10T18:13:42.625101-07:00,0.0,10.768143,10768.143 +6149,2025-06-10T18:13:53.387333-07:00,0.0,10.762232,10762.232 +6150,2025-06-10T18:14:04.153123-07:00,0.0,10.76579,10765.79 +6151,2025-06-10T18:14:14.912424-07:00,0.0,10.759301,10759.301 +6152,2025-06-10T18:14:25.681995-07:00,0.0,10.769571,10769.571 +6153,2025-06-10T18:14:36.441960-07:00,0.0,10.759965,10759.965 +6154,2025-06-10T18:14:47.205064-07:00,0.0,10.763104,10763.104 +6155,2025-06-10T18:14:57.969217-07:00,0.0,10.764153,10764.153 +6156,2025-06-10T18:15:08.735957-07:00,0.0,10.76674,10766.74 +6157,2025-06-10T18:15:19.492958-07:00,0.0,10.757001,10757.001 +6158,2025-06-10T18:15:30.267971-07:00,0.0,10.775013,10775.013 +6159,2025-06-10T18:15:41.026958-07:00,0.0,10.758987,10758.987 +6160,2025-06-10T18:15:51.792016-07:00,0.0,10.765058,10765.058 +6161,2025-06-10T18:16:02.549453-07:00,0.0,10.757437,10757.437 +6162,2025-06-10T18:16:13.309378-07:00,0.0,10.759925,10759.925 +6163,2025-06-10T18:16:24.079986-07:00,0.0,10.770608,10770.608 +6164,2025-06-10T18:16:34.850271-07:00,0.0,10.770285,10770.285 +6165,2025-06-10T18:16:45.615956-07:00,0.0,10.765685,10765.685 +6166,2025-06-10T18:16:56.377987-07:00,0.0,10.762031,10762.031 +6167,2025-06-10T18:17:07.152546-07:00,0.0,10.774559,10774.559 +6168,2025-06-10T18:17:17.907161-07:00,0.0,10.754615,10754.615 +6169,2025-06-10T18:17:28.675252-07:00,0.0,10.768091,10768.091 +6170,2025-06-10T18:17:39.447101-07:00,0.0,10.771849,10771.849 +6171,2025-06-10T18:17:50.209021-07:00,0.0,10.76192,10761.92 +6172,2025-06-10T18:18:00.975989-07:00,0.0,10.766968,10766.968 +6173,2025-06-10T18:18:11.744425-07:00,0.0,10.768436,10768.436 +6174,2025-06-10T18:18:22.503960-07:00,0.0,10.759535,10759.535 +6175,2025-06-10T18:18:33.266452-07:00,0.0,10.762492,10762.492 +6176,2025-06-10T18:18:44.039964-07:00,0.0,10.773512,10773.512 +6177,2025-06-10T18:18:54.805082-07:00,0.0,10.765118,10765.118 +6178,2025-06-10T18:19:05.563958-07:00,0.0,10.758876,10758.876 +6179,2025-06-10T18:19:16.334310-07:00,0.0,10.770352,10770.352 +6180,2025-06-10T18:19:27.099961-07:00,0.0,10.765651,10765.651 +6181,2025-06-10T18:19:37.856952-07:00,0.0,10.756991,10756.991 +6182,2025-06-10T18:19:48.619234-07:00,0.0,10.762282,10762.282 +6183,2025-06-10T18:19:59.383957-07:00,0.0,10.764723,10764.723 +6184,2025-06-10T18:20:10.148159-07:00,0.0,10.764202,10764.202 +6185,2025-06-10T18:20:20.910786-07:00,0.0,10.762627,10762.627 +6186,2025-06-10T18:20:31.675348-07:00,0.0,10.764562,10764.562 +6187,2025-06-10T18:20:42.438930-07:00,0.0,10.763582,10763.582 +6188,2025-06-10T18:20:53.200000-07:00,0.0,10.76107,10761.07 +6189,2025-06-10T18:21:03.967363-07:00,0.0,10.767363,10767.363 +6190,2025-06-10T18:21:14.735958-07:00,0.0,10.768595,10768.595 +6191,2025-06-10T18:21:25.497363-07:00,0.0,10.761405,10761.405 +6192,2025-06-10T18:21:36.255390-07:00,0.0,10.758027,10758.027 +6193,2025-06-10T18:21:47.022205-07:00,0.0,10.766815,10766.815 +6194,2025-06-10T18:21:57.785005-07:00,0.0,10.7628,10762.8 +6195,2025-06-10T18:22:08.557208-07:00,0.0,10.772203,10772.203 +6196,2025-06-10T18:22:19.324960-07:00,0.0,10.767752,10767.752 +6197,2025-06-10T18:22:30.089226-07:00,0.0,10.764266,10764.266 +6198,2025-06-10T18:22:40.853536-07:00,0.0,10.76431,10764.31 +6199,2025-06-10T18:22:51.606484-07:00,0.0,10.752948,10752.948 +6200,2025-06-10T18:23:02.370990-07:00,0.0,10.764506,10764.506 +6201,2025-06-10T18:23:13.144103-07:00,0.0,10.773113,10773.113 +6202,2025-06-10T18:23:23.902196-07:00,0.0,10.758093,10758.093 +6203,2025-06-10T18:23:34.660208-07:00,0.0,10.758012,10758.012 +6204,2025-06-10T18:23:45.426214-07:00,0.0,10.766006,10766.006 +6205,2025-06-10T18:23:56.177078-07:00,0.0,10.750864,10750.864 +6206,2025-06-10T18:24:06.946960-07:00,0.0,10.769882,10769.882 +6207,2025-06-10T18:24:17.701959-07:00,0.0,10.754999,10754.999 +6208,2025-06-10T18:24:28.461967-07:00,0.0,10.760008,10760.008 +6209,2025-06-10T18:24:39.225081-07:00,0.0,10.763114,10763.114 +6210,2025-06-10T18:24:49.990946-07:00,0.0,10.765865,10765.865 +6211,2025-06-10T18:25:00.753958-07:00,0.0,10.763012,10763.012 +6212,2025-06-10T18:25:11.516212-07:00,0.0,10.762254,10762.254 +6213,2025-06-10T18:25:22.280306-07:00,0.0,10.764094,10764.094 +6214,2025-06-10T18:25:33.037166-07:00,0.0,10.75686,10756.86 +6215,2025-06-10T18:25:43.808261-07:00,0.0,10.771095,10771.095 +6216,2025-06-10T18:25:54.567231-07:00,0.0,10.75897,10758.97 +6217,2025-06-10T18:26:05.327953-07:00,0.0,10.760722,10760.722 +6218,2025-06-10T18:26:16.094458-07:00,0.0,10.766505,10766.505 +6219,2025-06-10T18:26:26.855434-07:00,0.0,10.760976,10760.976 +6220,2025-06-10T18:26:37.617218-07:00,0.0,10.761784,10761.784 +6221,2025-06-10T18:26:48.380940-07:00,0.0,10.763722,10763.722 +6222,2025-06-10T18:26:59.144410-07:00,0.0,10.76347,10763.47 +6223,2025-06-10T18:27:09.905959-07:00,0.0,10.761549,10761.549 +6224,2025-06-10T18:27:20.659987-07:00,0.0,10.754028,10754.028 +6225,2025-06-10T18:27:31.429956-07:00,0.0,10.769969,10769.969 +6226,2025-06-10T18:27:42.186216-07:00,0.0,10.75626,10756.26 +6227,2025-06-10T18:27:52.952952-07:00,0.0,10.766736,10766.736 +6228,2025-06-10T18:28:03.712160-07:00,0.0,10.759208,10759.208 +6229,2025-06-10T18:28:14.484269-07:00,0.0,10.772109,10772.109 +6230,2025-06-10T18:28:25.241107-07:00,0.0,10.756838,10756.838 +6231,2025-06-10T18:28:36.005957-07:00,0.0,10.76485,10764.85 +6232,2025-06-10T18:28:46.772506-07:00,0.0,10.766549,10766.549 +6233,2025-06-10T18:28:57.529419-07:00,0.0,10.756913,10756.913 +6234,2025-06-10T18:29:08.296114-07:00,0.0,10.766695,10766.695 +6235,2025-06-10T18:29:19.050547-07:00,0.0,10.754433,10754.433 +6236,2025-06-10T18:29:29.822246-07:00,0.0,10.771699,10771.699 +6237,2025-06-10T18:29:40.576958-07:00,0.0,10.754712,10754.712 +6238,2025-06-10T18:29:51.346960-07:00,0.0,10.770002,10770.002 +6239,2025-06-10T18:30:02.101952-07:00,0.0,10.754992,10754.992 +6240,2025-06-10T18:30:12.873846-07:00,0.0,10.771894,10771.894 +6241,2025-06-10T18:30:23.631958-07:00,0.0,10.758112,10758.112 +6242,2025-06-10T18:30:34.390958-07:00,0.0,10.759,10759.0 +6243,2025-06-10T18:30:45.161269-07:00,0.0,10.770311,10770.311 +6244,2025-06-10T18:30:55.917958-07:00,0.0,10.756689,10756.689 +6245,2025-06-10T18:31:06.684958-07:00,0.0,10.767,10767.0 +6246,2025-06-10T18:31:17.446531-07:00,0.0,10.761573,10761.573 +6247,2025-06-10T18:31:28.209368-07:00,0.0,10.762837,10762.837 +6248,2025-06-10T18:31:38.975995-07:00,0.0,10.766627,10766.627 +6249,2025-06-10T18:31:49.740791-07:00,0.0,10.764796,10764.796 +6250,2025-06-10T18:32:00.492277-07:00,0.0,10.751486,10751.486 +6251,2025-06-10T18:32:11.258258-07:00,0.0,10.765981,10765.981 +6252,2025-06-10T18:32:22.024097-07:00,0.0,10.765839,10765.839 +6253,2025-06-10T18:32:32.776958-07:00,0.0,10.752861,10752.861 +6254,2025-06-10T18:32:43.540395-07:00,0.0,10.763437,10763.437 +6255,2025-06-10T18:32:54.303074-07:00,0.0,10.762679,10762.679 +6256,2025-06-10T18:33:05.062207-07:00,0.0,10.759133,10759.133 +6257,2025-06-10T18:33:15.827258-07:00,0.0,10.765051,10765.051 +6258,2025-06-10T18:33:26.596957-07:00,0.0,10.769699,10769.699 +6259,2025-06-10T18:33:37.359009-07:00,0.0,10.762052,10762.052 +6260,2025-06-10T18:33:48.120469-07:00,0.0,10.76146,10761.46 +6261,2025-06-10T18:33:58.887793-07:00,0.0,10.767324,10767.324 +6262,2025-06-10T18:34:09.643954-07:00,0.0,10.756161,10756.161 +6263,2025-06-10T18:34:20.409197-07:00,0.0,10.765243,10765.243 +6264,2025-06-10T18:34:31.167603-07:00,0.0,10.758406,10758.406 +6265,2025-06-10T18:34:41.936954-07:00,0.0,10.769351,10769.351 +6266,2025-06-10T18:34:52.703191-07:00,0.0,10.766237,10766.237 +6267,2025-06-10T18:35:03.456787-07:00,0.0,10.753596,10753.596 +6268,2025-06-10T18:35:14.227645-07:00,0.0,10.770858,10770.858 +6269,2025-06-10T18:35:24.987001-07:00,0.0,10.759356,10759.356 +6270,2025-06-10T18:35:35.757323-07:00,0.0,10.770322,10770.322 +6271,2025-06-10T18:35:46.519958-07:00,0.0,10.762635,10762.635 +6272,2025-06-10T18:35:57.274960-07:00,0.0,10.755002,10755.002 +6273,2025-06-10T18:36:08.049302-07:00,0.0,10.774342,10774.342 +6274,2025-06-10T18:36:18.808300-07:00,0.0,10.758998,10758.998 +6275,2025-06-10T18:36:29.570956-07:00,0.0,10.762656,10762.656 +6276,2025-06-10T18:36:40.335428-07:00,0.0,10.764472,10764.472 +6277,2025-06-10T18:36:51.106958-07:00,0.0,10.77153,10771.53 +6278,2025-06-10T18:37:01.865960-07:00,0.0,10.759002,10759.002 +6279,2025-06-10T18:37:12.634012-07:00,0.0,10.768052,10768.052 +6280,2025-06-10T18:37:23.399449-07:00,0.0,10.765437,10765.437 +6281,2025-06-10T18:37:34.160595-07:00,0.0,10.761146,10761.146 +6282,2025-06-10T18:37:44.932227-07:00,0.0,10.771632,10771.632 +6283,2025-06-10T18:37:55.693963-07:00,0.0,10.761736,10761.736 +6284,2025-06-10T18:38:06.460227-07:00,0.0,10.766264,10766.264 +6285,2025-06-10T18:38:17.226692-07:00,0.0,10.766465,10766.465 +6286,2025-06-10T18:38:27.998327-07:00,0.0,10.771635,10771.635 +6287,2025-06-10T18:38:38.766990-07:00,0.0,10.768663,10768.663 +6288,2025-06-10T18:38:49.532956-07:00,0.0,10.765966,10765.966 +6289,2025-06-10T18:39:00.294208-07:00,0.0,10.761252,10761.252 +6290,2025-06-10T18:39:11.069322-07:00,0.0,10.775114,10775.114 +6291,2025-06-10T18:39:21.829373-07:00,0.0,10.760051,10760.051 +6292,2025-06-10T18:39:32.595433-07:00,0.0,10.76606,10766.06 +6293,2025-06-10T18:39:43.371529-07:00,0.0,10.776096,10776.096 +6294,2025-06-10T18:39:54.131956-07:00,0.0,10.760427,10760.427 +6295,2025-06-10T18:40:04.895960-07:00,0.0,10.764004,10764.004 +6296,2025-06-10T18:40:15.664239-07:00,0.0,10.768279,10768.279 +6297,2025-06-10T18:40:26.435239-07:00,0.0,10.771,10771.0 +6298,2025-06-10T18:40:37.193960-07:00,0.0,10.758721,10758.721 +6299,2025-06-10T18:40:47.954558-07:00,0.0,10.760598,10760.598 +6300,2025-06-10T18:40:58.718147-07:00,0.0,10.763589,10763.589 +6301,2025-06-10T18:41:09.485271-07:00,0.0,10.767124,10767.124 +6302,2025-06-10T18:41:20.252179-07:00,0.0,10.766908,10766.908 +6303,2025-06-10T18:41:31.017421-07:00,0.0,10.765242,10765.242 +6304,2025-06-10T18:41:41.786991-07:00,0.0,10.76957,10769.57 +6305,2025-06-10T18:41:52.546546-07:00,0.0,10.759555,10759.555 +6306,2025-06-10T18:42:03.315937-07:00,0.0,10.769391,10769.391 +6307,2025-06-10T18:42:14.081955-07:00,0.0,10.766018,10766.018 +6308,2025-06-10T18:42:24.850372-07:00,0.0,10.768417,10768.417 +6309,2025-06-10T18:42:35.610952-07:00,0.0,10.76058,10760.58 +6310,2025-06-10T18:42:46.381030-07:00,0.0,10.770078,10770.078 +6311,2025-06-10T18:42:57.137301-07:00,0.0,10.756271,10756.271 +6312,2025-06-10T18:43:07.898961-07:00,0.0,10.76166,10761.66 +6313,2025-06-10T18:43:18.665002-07:00,0.0,10.766041,10766.041 +6314,2025-06-10T18:43:29.436414-07:00,0.0,10.771412,10771.412 +6315,2025-06-10T18:43:40.190013-07:00,0.0,10.753599,10753.599 +6316,2025-06-10T18:43:50.954951-07:00,0.0,10.764938,10764.938 +6317,2025-06-10T18:44:01.717820-07:00,0.0,10.762869,10762.869 +6318,2025-06-10T18:44:12.478956-07:00,0.0,10.761136,10761.136 +6319,2025-06-10T18:44:23.242010-07:00,0.0,10.763054,10763.054 +6320,2025-06-10T18:44:34.008201-07:00,0.0,10.766191,10766.191 +6321,2025-06-10T18:44:44.777306-07:00,0.0,10.769105,10769.105 +6322,2025-06-10T18:44:55.542995-07:00,0.0,10.765689,10765.689 +6323,2025-06-10T18:45:06.305004-07:00,0.0,10.762009,10762.009 +6324,2025-06-10T18:45:17.072959-07:00,0.0,10.767955,10767.955 +6325,2025-06-10T18:45:27.831930-07:00,0.0,10.758971,10758.971 +6326,2025-06-10T18:45:38.597956-07:00,0.0,10.766026,10766.026 +6327,2025-06-10T18:45:49.357297-07:00,0.0,10.759341,10759.341 +6328,2025-06-10T18:46:00.121963-07:00,0.0,10.764666,10764.666 +6329,2025-06-10T18:46:10.880953-07:00,0.0,10.75899,10758.99 +6330,2025-06-10T18:46:21.646159-07:00,0.0,10.765206,10765.206 +6331,2025-06-10T18:46:32.418960-07:00,0.0,10.772801,10772.801 +6332,2025-06-10T18:46:43.179513-07:00,0.0,10.760553,10760.553 +6333,2025-06-10T18:46:53.936007-07:00,0.0,10.756494,10756.494 +6334,2025-06-10T18:47:04.709174-07:00,0.0,10.773167,10773.167 +6335,2025-06-10T18:47:15.468964-07:00,0.0,10.75979,10759.79 +6336,2025-06-10T18:47:26.233580-07:00,0.0,10.764616,10764.616 +6337,2025-06-10T18:47:37.000960-07:00,0.0,10.76738,10767.38 +6338,2025-06-10T18:47:47.774957-07:00,0.0,10.773997,10773.997 +6339,2025-06-10T18:47:58.542533-07:00,0.0,10.767576,10767.576 +6340,2025-06-10T18:48:09.299960-07:00,0.0,10.757427,10757.427 +6341,2025-06-10T18:48:20.066207-07:00,0.0,10.766247,10766.247 +6342,2025-06-10T18:48:30.837178-07:00,0.0,10.770971,10770.971 +6343,2025-06-10T18:48:41.606644-07:00,0.0,10.769466,10769.466 +6344,2025-06-10T18:48:52.364956-07:00,0.0,10.758312,10758.312 +6345,2025-06-10T18:49:03.128554-07:00,0.0,10.763598,10763.598 +6346,2025-06-10T18:49:13.899120-07:00,0.0,10.770566,10770.566 +6347,2025-06-10T18:49:24.660982-07:00,0.0,10.761862,10761.862 +6348,2025-06-10T18:49:35.419155-07:00,0.0,10.758173,10758.173 +6349,2025-06-10T18:49:46.183950-07:00,0.0,10.764795,10764.795 +6350,2025-06-10T18:49:56.947255-07:00,0.0,10.763305,10763.305 +6351,2025-06-10T18:50:07.715298-07:00,0.0,10.768043,10768.043 +6352,2025-06-10T18:50:18.478065-07:00,0.0,10.762767,10762.767 +6353,2025-06-10T18:50:29.246041-07:00,0.0,10.767976,10767.976 +6354,2025-06-10T18:50:40.012237-07:00,0.0,10.766196,10766.196 +6355,2025-06-10T18:50:50.767958-07:00,0.0,10.755721,10755.721 +6356,2025-06-10T18:51:01.539955-07:00,0.0,10.771997,10771.997 +6357,2025-06-10T18:51:12.297600-07:00,0.0,10.757645,10757.645 +6358,2025-06-10T18:51:23.068956-07:00,0.0,10.771356,10771.356 +6359,2025-06-10T18:51:33.831986-07:00,0.0,10.76303,10763.03 +6360,2025-06-10T18:51:44.597242-07:00,0.0,10.765256,10765.256 +6361,2025-06-10T18:51:55.350949-07:00,0.0,10.753707,10753.707 +6362,2025-06-10T18:52:06.120945-07:00,0.0,10.769996,10769.996 +6363,2025-06-10T18:52:16.933268-07:00,0.0,10.812323,10812.323 +6364,2025-06-10T18:52:27.702515-07:00,0.0,10.769247,10769.247 +6365,2025-06-10T18:52:38.458393-07:00,0.0,10.755878,10755.878 +6366,2025-06-10T18:52:49.224259-07:00,0.0,10.765866,10765.866 +6367,2025-06-10T18:52:59.986056-07:00,0.0,10.761797,10761.797 +6368,2025-06-10T18:53:10.750415-07:00,0.0,10.764359,10764.359 +6369,2025-06-10T18:53:21.510268-07:00,0.0,10.759853,10759.853 +6370,2025-06-10T18:53:32.275952-07:00,0.0,10.765684,10765.684 +6371,2025-06-10T18:53:43.035605-07:00,0.0,10.759653,10759.653 +6372,2025-06-10T18:53:53.793747-07:00,0.0,10.758142,10758.142 +6373,2025-06-10T18:54:04.554254-07:00,0.0,10.760507,10760.507 +6374,2025-06-10T18:54:15.328664-07:00,0.0,10.77441,10774.41 +6375,2025-06-10T18:54:26.087268-07:00,0.0,10.758604,10758.604 +6376,2025-06-10T18:54:36.847270-07:00,0.0,10.760002,10760.002 +6377,2025-06-10T18:54:47.606263-07:00,0.0,10.758993,10758.993 +6378,2025-06-10T18:54:58.375839-07:00,0.0,10.769576,10769.576 +6379,2025-06-10T18:55:09.135268-07:00,0.0,10.759429,10759.429 +6380,2025-06-10T18:55:19.901846-07:00,0.0,10.766578,10766.578 +6381,2025-06-10T18:55:30.657538-07:00,0.0,10.755692,10755.692 +6382,2025-06-10T18:55:41.418428-07:00,0.0,10.76089,10760.89 +6383,2025-06-10T18:55:52.184268-07:00,0.0,10.76584,10765.84 +6384,2025-06-10T18:56:02.948654-07:00,0.0,10.764386,10764.386 +6385,2025-06-10T18:56:13.713581-07:00,0.0,10.764927,10764.927 +6386,2025-06-10T18:56:24.478568-07:00,0.0,10.764987,10764.987 +6387,2025-06-10T18:56:35.240316-07:00,0.0,10.761748,10761.748 +6388,2025-06-10T18:56:46.013088-07:00,0.0,10.772772,10772.772 +6389,2025-06-10T18:56:56.766243-07:00,0.0,10.753155,10753.155 +6390,2025-06-10T18:57:07.538733-07:00,0.0,10.77249,10772.49 +6391,2025-06-10T18:57:18.297886-07:00,0.0,10.759153,10759.153 +6392,2025-06-10T18:57:29.057635-07:00,0.0,10.759749,10759.749 +6393,2025-06-10T18:57:39.823922-07:00,0.0,10.766287,10766.287 +6394,2025-06-10T18:57:50.583631-07:00,0.0,10.759709,10759.709 +6395,2025-06-10T18:58:01.346272-07:00,0.0,10.762641,10762.641 +6396,2025-06-10T18:58:12.115268-07:00,0.0,10.768996,10768.996 +6397,2025-06-10T18:58:22.882493-07:00,0.0,10.767225,10767.225 +6398,2025-06-10T18:58:33.635815-07:00,0.0,10.753322,10753.322 +6399,2025-06-10T18:58:44.403274-07:00,0.0,10.767459,10767.459 +6400,2025-06-10T18:58:55.171565-07:00,0.0,10.768291,10768.291 +6401,2025-06-10T18:59:05.931375-07:00,0.0,10.75981,10759.81 +6402,2025-06-10T18:59:16.692262-07:00,0.0,10.760887,10760.887 +6403,2025-06-10T18:59:27.454270-07:00,0.0,10.762008,10762.008 +6404,2025-06-10T18:59:38.215532-07:00,0.0,10.761262,10761.262 +6405,2025-06-10T18:59:48.976103-07:00,0.0,10.760571,10760.571 +6406,2025-06-10T18:59:59.748570-07:00,0.0,10.772467,10772.467 +6407,2025-06-10T19:00:10.508317-07:00,0.0,10.759747,10759.747 +6408,2025-06-10T19:00:21.272398-07:00,0.0,10.764081,10764.081 +6409,2025-06-10T19:00:32.032272-07:00,0.0,10.759874,10759.874 +6410,2025-06-10T19:00:42.805652-07:00,0.0,10.77338,10773.38 +6411,2025-06-10T19:00:53.569311-07:00,0.0,10.763659,10763.659 +6412,2025-06-10T19:01:04.332265-07:00,0.0,10.762954,10762.954 +6413,2025-06-10T19:01:15.102599-07:00,0.0,10.770334,10770.334 +6414,2025-06-10T19:01:25.870537-07:00,0.0,10.767938,10767.938 +6415,2025-06-10T19:01:36.630268-07:00,0.0,10.759731,10759.731 +6416,2025-06-10T19:01:47.390989-07:00,0.0,10.760721,10760.721 +6417,2025-06-10T19:01:58.151598-07:00,0.0,10.760609,10760.609 +6418,2025-06-10T19:02:08.916364-07:00,0.0,10.764766,10764.766 +6419,2025-06-10T19:02:19.686480-07:00,0.0,10.770116,10770.116 +6420,2025-06-10T19:02:30.439557-07:00,0.0,10.753077,10753.077 +6421,2025-06-10T19:02:41.202385-07:00,0.0,10.762828,10762.828 +6422,2025-06-10T19:02:51.969315-07:00,0.0,10.76693,10766.93 +6423,2025-06-10T19:03:02.732597-07:00,0.0,10.763282,10763.282 +6424,2025-06-10T19:03:13.493334-07:00,0.0,10.760737,10760.737 +6425,2025-06-10T19:03:24.257498-07:00,0.0,10.764164,10764.164 +6426,2025-06-10T19:03:35.027530-07:00,0.0,10.770032,10770.032 +6427,2025-06-10T19:03:45.791465-07:00,0.0,10.763935,10763.935 +6428,2025-06-10T19:03:56.557312-07:00,0.0,10.765847,10765.847 +6429,2025-06-10T19:04:07.315817-07:00,0.0,10.758505,10758.505 +6430,2025-06-10T19:04:18.086634-07:00,0.0,10.770817,10770.817 +6431,2025-06-10T19:04:28.842259-07:00,0.0,10.755625,10755.625 +6432,2025-06-10T19:04:39.616597-07:00,0.0,10.774338,10774.338 +6433,2025-06-10T19:04:50.372274-07:00,0.0,10.755677,10755.677 +6434,2025-06-10T19:05:01.141585-07:00,0.0,10.769311,10769.311 +6435,2025-06-10T19:05:11.907767-07:00,0.0,10.766182,10766.182 +6436,2025-06-10T19:05:22.671746-07:00,0.0,10.763979,10763.979 +6437,2025-06-10T19:05:33.426250-07:00,0.0,10.754504,10754.504 +6438,2025-06-10T19:05:44.193519-07:00,0.0,10.767269,10767.269 +6439,2025-06-10T19:05:54.961319-07:00,0.0,10.7678,10767.8 +6440,2025-06-10T19:06:05.724829-07:00,0.0,10.76351,10763.51 +6441,2025-06-10T19:06:16.497263-07:00,0.0,10.772434,10772.434 +6442,2025-06-10T19:06:27.259627-07:00,0.0,10.762364,10762.364 +6443,2025-06-10T19:06:38.013536-07:00,0.0,10.753909,10753.909 +6444,2025-06-10T19:06:48.778248-07:00,0.0,10.764712,10764.712 +6445,2025-06-10T19:06:59.550552-07:00,0.0,10.772304,10772.304 +6446,2025-06-10T19:07:10.310331-07:00,0.0,10.759779,10759.779 +6447,2025-06-10T19:07:21.069489-07:00,0.0,10.759158,10759.158 +6448,2025-06-10T19:07:31.837581-07:00,0.0,10.768092,10768.092 +6449,2025-06-10T19:07:42.605272-07:00,0.0,10.767691,10767.691 +6450,2025-06-10T19:07:53.371270-07:00,0.0,10.765998,10765.998 +6451,2025-06-10T19:08:04.140313-07:00,0.0,10.769043,10769.043 +6452,2025-06-10T19:08:14.898259-07:00,0.0,10.757946,10757.946 +6453,2025-06-10T19:08:25.661296-07:00,0.0,10.763037,10763.037 +6454,2025-06-10T19:08:36.434935-07:00,0.0,10.773639,10773.639 +6455,2025-06-10T19:08:47.205265-07:00,0.0,10.77033,10770.33 +6456,2025-06-10T19:08:57.971534-07:00,0.0,10.766269,10766.269 +6457,2025-06-10T19:09:08.733272-07:00,0.0,10.761738,10761.738 +6458,2025-06-10T19:09:19.500413-07:00,0.0,10.767141,10767.141 +6459,2025-06-10T19:09:30.272281-07:00,0.0,10.771868,10771.868 +6460,2025-06-10T19:09:41.036267-07:00,0.0,10.763986,10763.986 +6461,2025-06-10T19:09:51.803262-07:00,0.0,10.766995,10766.995 +6462,2025-06-10T19:10:02.574272-07:00,0.0,10.77101,10771.01 +6463,2025-06-10T19:10:13.331418-07:00,0.0,10.757146,10757.146 +6464,2025-06-10T19:10:24.106013-07:00,0.0,10.774595,10774.595 +6465,2025-06-10T19:10:34.866618-07:00,0.0,10.760605,10760.605 +6466,2025-06-10T19:10:45.639528-07:00,0.0,10.77291,10772.91 +6467,2025-06-10T19:10:56.404560-07:00,0.0,10.765032,10765.032 +6468,2025-06-10T19:11:07.177269-07:00,0.0,10.772709,10772.709 +6469,2025-06-10T19:11:17.935270-07:00,0.0,10.758001,10758.001 +6470,2025-06-10T19:11:28.706661-07:00,0.0,10.771391,10771.391 +6471,2025-06-10T19:11:39.471006-07:00,0.0,10.764345,10764.345 +6472,2025-06-10T19:11:50.242657-07:00,0.0,10.771651,10771.651 +6473,2025-06-10T19:12:01.008658-07:00,0.0,10.766001,10766.001 +6474,2025-06-10T19:12:11.772265-07:00,0.0,10.763607,10763.607 +6475,2025-06-10T19:12:22.537665-07:00,0.0,10.7654,10765.4 +6476,2025-06-10T19:12:33.306760-07:00,0.0,10.769095,10769.095 +6477,2025-06-10T19:12:44.074378-07:00,0.0,10.767618,10767.618 +6478,2025-06-10T19:12:54.844510-07:00,0.0,10.770132,10770.132 +6479,2025-06-10T19:13:05.609272-07:00,0.0,10.764762,10764.762 +6480,2025-06-10T19:13:16.378813-07:00,0.0,10.769541,10769.541 +6481,2025-06-10T19:13:27.148512-07:00,0.0,10.769699,10769.699 +6482,2025-06-10T19:13:37.908268-07:00,0.0,10.759756,10759.756 +6483,2025-06-10T19:13:48.681860-07:00,0.0,10.773592,10773.592 +6484,2025-06-10T19:13:59.447304-07:00,0.0,10.765444,10765.444 +6485,2025-06-10T19:14:10.220978-07:00,0.0,10.773674,10773.674 +6486,2025-06-10T19:14:20.981649-07:00,0.0,10.760671,10760.671 +6487,2025-06-10T19:14:31.748308-07:00,0.0,10.766659,10766.659 +6488,2025-06-10T19:14:42.513563-07:00,0.0,10.765255,10765.255 +6489,2025-06-10T19:14:53.280418-07:00,0.0,10.766855,10766.855 +6490,2025-06-10T19:15:04.046562-07:00,0.0,10.766144,10766.144 +6491,2025-06-10T19:15:14.813570-07:00,0.0,10.767008,10767.008 +6492,2025-06-10T19:15:25.577255-07:00,0.0,10.763685,10763.685 +6493,2025-06-10T19:15:36.339479-07:00,0.0,10.762224,10762.224 +6494,2025-06-10T19:15:47.105311-07:00,0.0,10.765832,10765.832 +6495,2025-06-10T19:15:57.867420-07:00,0.0,10.762109,10762.109 +6496,2025-06-10T19:16:08.636843-07:00,0.0,10.769423,10769.423 +6497,2025-06-10T19:16:19.401789-07:00,0.0,10.764946,10764.946 +6498,2025-06-10T19:16:30.177289-07:00,0.0,10.7755,10775.5 +6499,2025-06-10T19:16:40.942595-07:00,0.0,10.765306,10765.306 +6500,2025-06-10T19:16:51.701583-07:00,0.0,10.758988,10758.988 +6501,2025-06-10T19:17:02.469268-07:00,0.0,10.767685,10767.685 +6502,2025-06-10T19:17:13.242425-07:00,0.0,10.773157,10773.157 +6503,2025-06-10T19:17:24.007255-07:00,0.0,10.76483,10764.83 +6504,2025-06-10T19:17:34.778255-07:00,0.0,10.771,10771.0 +6505,2025-06-10T19:17:45.554272-07:00,0.0,10.776017,10776.017 +6506,2025-06-10T19:17:56.329545-07:00,0.0,10.775273,10775.273 +6507,2025-06-10T19:18:07.091041-07:00,0.0,10.761496,10761.496 +6508,2025-06-10T19:18:17.866272-07:00,0.0,10.775231,10775.231 +6509,2025-06-10T19:18:28.635541-07:00,0.0,10.769269,10769.269 +6510,2025-06-10T19:18:39.392270-07:00,0.0,10.756729,10756.729 +6511,2025-06-10T19:18:50.164262-07:00,0.0,10.771992,10771.992 +6512,2025-06-10T19:19:00.927797-07:00,0.0,10.763535,10763.535 +6513,2025-06-10T19:19:11.695267-07:00,0.0,10.76747,10767.47 +6514,2025-06-10T19:19:22.465585-07:00,0.0,10.770318,10770.318 +6515,2025-06-10T19:19:33.234506-07:00,0.0,10.768921,10768.921 +6516,2025-06-10T19:19:44.001270-07:00,0.0,10.766764,10766.764 +6517,2025-06-10T19:19:54.766432-07:00,0.0,10.765162,10765.162 +6518,2025-06-10T19:20:05.531434-07:00,0.0,10.765002,10765.002 +6519,2025-06-10T19:20:16.295973-07:00,0.0,10.764539,10764.539 +6520,2025-06-10T19:20:27.063922-07:00,0.0,10.767949,10767.949 +6521,2025-06-10T19:20:37.825270-07:00,0.0,10.761348,10761.348 +6522,2025-06-10T19:20:48.590474-07:00,0.0,10.765204,10765.204 +6523,2025-06-10T19:20:59.361321-07:00,0.0,10.770847,10770.847 +6524,2025-06-10T19:21:10.131767-07:00,0.0,10.770446,10770.446 +6525,2025-06-10T19:21:20.889427-07:00,0.0,10.75766,10757.66 +6526,2025-06-10T19:21:31.651173-07:00,0.0,10.761746,10761.746 +6527,2025-06-10T19:21:42.416273-07:00,0.0,10.7651,10765.1 +6528,2025-06-10T19:21:53.187268-07:00,0.0,10.770995,10770.995 +6529,2025-06-10T19:22:03.943234-07:00,0.0,10.755966,10755.966 +6530,2025-06-10T19:22:14.711494-07:00,0.0,10.76826,10768.26 +6531,2025-06-10T19:22:25.472250-07:00,0.0,10.760756,10760.756 +6532,2025-06-10T19:22:36.244563-07:00,0.0,10.772313,10772.313 +6533,2025-06-10T19:22:47.010516-07:00,0.0,10.765953,10765.953 +6534,2025-06-10T19:22:57.771268-07:00,0.0,10.760752,10760.752 +6535,2025-06-10T19:23:08.530545-07:00,0.0,10.759277,10759.277 +6536,2025-06-10T19:23:19.298763-07:00,0.0,10.768218,10768.218 +6537,2025-06-10T19:23:30.066004-07:00,0.0,10.767241,10767.241 +6538,2025-06-10T19:23:40.817440-07:00,0.0,10.751436,10751.436 +6539,2025-06-10T19:23:51.581859-07:00,0.0,10.764419,10764.419 +6540,2025-06-10T19:24:02.353269-07:00,0.0,10.77141,10771.41 +6541,2025-06-10T19:24:13.119263-07:00,0.0,10.765994,10765.994 +6542,2025-06-10T19:24:23.877580-07:00,0.0,10.758317,10758.317 +6543,2025-06-10T19:24:34.647424-07:00,0.0,10.769844,10769.844 +6544,2025-06-10T19:24:45.418523-07:00,0.0,10.771099,10771.099 +6545,2025-06-10T19:24:56.183270-07:00,0.0,10.764747,10764.747 +6546,2025-06-10T19:25:06.939629-07:00,0.0,10.756359,10756.359 +6547,2025-06-10T19:25:17.713162-07:00,0.0,10.773533,10773.533 +6548,2025-06-10T19:25:28.474610-07:00,0.0,10.761448,10761.448 +6549,2025-06-10T19:25:39.240496-07:00,0.0,10.765886,10765.886 +6550,2025-06-10T19:25:50.001911-07:00,0.0,10.761415,10761.415 +6551,2025-06-10T19:26:00.770270-07:00,0.0,10.768359,10768.359 +6552,2025-06-10T19:26:11.540268-07:00,0.0,10.769998,10769.998 +6553,2025-06-10T19:26:22.300412-07:00,0.0,10.760144,10760.144 +6554,2025-06-10T19:26:33.067505-07:00,0.0,10.767093,10767.093 +6555,2025-06-10T19:26:43.833325-07:00,0.0,10.76582,10765.82 +6556,2025-06-10T19:26:54.595253-07:00,0.0,10.761928,10761.928 +6557,2025-06-10T19:27:05.356273-07:00,0.0,10.76102,10761.02 +6558,2025-06-10T19:27:16.119268-07:00,0.0,10.762995,10762.995 +6559,2025-06-10T19:27:26.885137-07:00,0.0,10.765869,10765.869 +6560,2025-06-10T19:27:37.656348-07:00,0.0,10.771211,10771.211 +6561,2025-06-10T19:27:48.411448-07:00,0.0,10.7551,10755.1 +6562,2025-06-10T19:27:59.180540-07:00,0.0,10.769092,10769.092 +6563,2025-06-10T19:28:09.945563-07:00,0.0,10.765023,10765.023 +6564,2025-06-10T19:28:20.709270-07:00,0.0,10.763707,10763.707 +6565,2025-06-10T19:28:31.479695-07:00,0.0,10.770425,10770.425 +6566,2025-06-10T19:28:42.246357-07:00,0.0,10.766662,10766.662 +6567,2025-06-10T19:28:53.009271-07:00,0.0,10.762914,10762.914 +6568,2025-06-10T19:29:03.776819-07:00,0.0,10.767548,10767.548 +6569,2025-06-10T19:29:14.550258-07:00,0.0,10.773439,10773.439 +6570,2025-06-10T19:29:25.317496-07:00,0.0,10.767238,10767.238 +6571,2025-06-10T19:29:36.082798-07:00,0.0,10.765302,10765.302 +6572,2025-06-10T19:29:46.847468-07:00,0.0,10.76467,10764.67 +6573,2025-06-10T19:29:57.623567-07:00,0.0,10.776099,10776.099 +6574,2025-06-10T19:30:08.388264-07:00,0.0,10.764697,10764.697 +6575,2025-06-10T19:30:19.147269-07:00,0.0,10.759005,10759.005 +6576,2025-06-10T19:30:29.919701-07:00,0.0,10.772432,10772.432 +6577,2025-06-10T19:30:40.683404-07:00,0.0,10.763703,10763.703 +6578,2025-06-10T19:30:51.444639-07:00,0.0,10.761235,10761.235 +6579,2025-06-10T19:31:02.213591-07:00,0.0,10.768952,10768.952 +6580,2025-06-10T19:31:12.982936-07:00,0.0,10.769345,10769.345 +6581,2025-06-10T19:31:23.744391-07:00,0.0,10.761455,10761.455 +6582,2025-06-10T19:31:34.514615-07:00,0.0,10.770224,10770.224 +6583,2025-06-10T19:31:45.278649-07:00,0.0,10.764034,10764.034 +6584,2025-06-10T19:31:56.044583-07:00,0.0,10.765934,10765.934 +6585,2025-06-10T19:32:06.813268-07:00,0.0,10.768685,10768.685 +6586,2025-06-10T19:32:17.572309-07:00,0.0,10.759041,10759.041 +6587,2025-06-10T19:32:28.346609-07:00,0.0,10.7743,10774.3 +6588,2025-06-10T19:32:39.103609-07:00,0.0,10.757,10757.0 +6589,2025-06-10T19:32:49.874255-07:00,0.0,10.770646,10770.646 +6590,2025-06-10T19:33:00.637547-07:00,0.0,10.763292,10763.292 +6591,2025-06-10T19:33:11.408271-07:00,0.0,10.770724,10770.724 +6592,2025-06-10T19:33:22.170256-07:00,0.0,10.761985,10761.985 +6593,2025-06-10T19:33:32.934603-07:00,0.0,10.764347,10764.347 +6594,2025-06-10T19:33:43.703415-07:00,0.0,10.768812,10768.812 +6595,2025-06-10T19:33:54.469276-07:00,0.0,10.765861,10765.861 +6596,2025-06-10T19:34:05.231591-07:00,0.0,10.762315,10762.315 +6597,2025-06-10T19:34:15.997268-07:00,0.0,10.765677,10765.677 +6598,2025-06-10T19:34:26.764272-07:00,0.0,10.767004,10767.004 +6599,2025-06-10T19:34:37.529741-07:00,0.0,10.765469,10765.469 +6600,2025-06-10T19:34:48.287523-07:00,0.0,10.757782,10757.782 +6601,2025-06-10T19:34:59.057269-07:00,0.0,10.769746,10769.746 +6602,2025-06-10T19:35:09.823843-07:00,0.0,10.766574,10766.574 +6603,2025-06-10T19:35:20.586268-07:00,0.0,10.762425,10762.425 +6604,2025-06-10T19:35:31.357774-07:00,0.0,10.771506,10771.506 +6605,2025-06-10T19:35:42.120761-07:00,0.0,10.762987,10762.987 +6606,2025-06-10T19:35:52.881830-07:00,0.0,10.761069,10761.069 +6607,2025-06-10T19:36:03.645686-07:00,0.0,10.763856,10763.856 +6608,2025-06-10T19:36:14.411564-07:00,0.0,10.765878,10765.878 +6609,2025-06-10T19:36:25.176249-07:00,0.0,10.764685,10764.685 +6610,2025-06-10T19:36:35.941418-07:00,0.0,10.765169,10765.169 +6611,2025-06-10T19:36:46.704612-07:00,0.0,10.763194,10763.194 +6612,2025-06-10T19:36:57.471257-07:00,0.0,10.766645,10766.645 +6613,2025-06-10T19:37:08.229272-07:00,0.0,10.758015,10758.015 +6614,2025-06-10T19:37:18.996862-07:00,0.0,10.76759,10767.59 +6615,2025-06-10T19:37:29.755417-07:00,0.0,10.758555,10758.555 +6616,2025-06-10T19:37:40.517301-07:00,0.0,10.761884,10761.884 +6617,2025-06-10T19:37:51.289480-07:00,0.0,10.772179,10772.179 +6618,2025-06-10T19:38:02.040528-07:00,0.0,10.751048,10751.048 +6619,2025-06-10T19:38:12.802335-07:00,0.0,10.761807,10761.807 +6620,2025-06-10T19:38:23.564259-07:00,0.0,10.761924,10761.924 +6621,2025-06-10T19:38:34.338599-07:00,0.0,10.77434,10774.34 +6622,2025-06-10T19:38:45.090473-07:00,0.0,10.751874,10751.874 +6623,2025-06-10T19:38:55.862430-07:00,0.0,10.771957,10771.957 +6624,2025-06-10T19:39:06.621271-07:00,0.0,10.758841,10758.841 +6625,2025-06-10T19:39:17.386685-07:00,0.0,10.765414,10765.414 +6626,2025-06-10T19:39:28.145919-07:00,0.0,10.759234,10759.234 +6627,2025-06-10T19:39:38.911313-07:00,0.0,10.765394,10765.394 +6628,2025-06-10T19:39:49.685453-07:00,0.0,10.77414,10774.14 +6629,2025-06-10T19:40:00.443502-07:00,0.0,10.758049,10758.049 +6630,2025-06-10T19:40:11.210298-07:00,0.0,10.766796,10766.796 +6631,2025-06-10T19:40:21.973735-07:00,0.0,10.763437,10763.437 +6632,2025-06-10T19:40:32.742519-07:00,0.0,10.768784,10768.784 +6633,2025-06-10T19:40:43.504295-07:00,0.0,10.761776,10761.776 +6634,2025-06-10T19:40:54.274354-07:00,0.0,10.770059,10770.059 +6635,2025-06-10T19:41:05.028271-07:00,0.0,10.753917,10753.917 +6636,2025-06-10T19:41:15.792531-07:00,0.0,10.76426,10764.26 +6637,2025-06-10T19:41:26.557596-07:00,0.0,10.765065,10765.065 +6638,2025-06-10T19:41:37.330385-07:00,0.0,10.772789,10772.789 +6639,2025-06-10T19:41:48.084310-07:00,0.0,10.753925,10753.925 +6640,2025-06-10T19:41:58.854183-07:00,0.0,10.769873,10769.873 +6641,2025-06-10T19:42:09.612302-07:00,0.0,10.758119,10758.119 +6642,2025-06-10T19:42:20.377262-07:00,0.0,10.76496,10764.96 +6643,2025-06-10T19:42:31.142632-07:00,0.0,10.76537,10765.37 +6644,2025-06-10T19:42:41.909664-07:00,0.0,10.767032,10767.032 +6645,2025-06-10T19:42:52.671267-07:00,0.0,10.761603,10761.603 +6646,2025-06-10T19:43:03.434554-07:00,0.0,10.763287,10763.287 +6647,2025-06-10T19:43:14.201258-07:00,0.0,10.766704,10766.704 +6648,2025-06-10T19:43:24.960268-07:00,0.0,10.75901,10759.01 +6649,2025-06-10T19:43:35.723270-07:00,0.0,10.763002,10763.002 +6650,2025-06-10T19:43:46.492751-07:00,0.0,10.769481,10769.481 +6651,2025-06-10T19:43:57.258809-07:00,0.0,10.766058,10766.058 +6652,2025-06-10T19:44:08.029601-07:00,0.0,10.770792,10770.792 +6653,2025-06-10T19:44:18.791247-07:00,0.0,10.761646,10761.646 +6654,2025-06-10T19:44:29.555270-07:00,0.0,10.764023,10764.023 +6655,2025-06-10T19:44:40.314560-07:00,0.0,10.75929,10759.29 +6656,2025-06-10T19:44:51.080803-07:00,0.0,10.766243,10766.243 +6657,2025-06-10T19:45:01.851253-07:00,0.0,10.77045,10770.45 +6658,2025-06-10T19:45:12.607313-07:00,0.0,10.75606,10756.06 +6659,2025-06-10T19:45:23.381272-07:00,0.0,10.773959,10773.959 +6660,2025-06-10T19:45:34.138425-07:00,0.0,10.757153,10757.153 +6661,2025-06-10T19:45:44.910244-07:00,0.0,10.771819,10771.819 +6662,2025-06-10T19:45:55.670332-07:00,0.0,10.760088,10760.088 +6663,2025-06-10T19:46:06.436271-07:00,0.0,10.765939,10765.939 +6664,2025-06-10T19:46:17.206610-07:00,0.0,10.770339,10770.339 +6665,2025-06-10T19:46:27.974268-07:00,0.0,10.767658,10767.658 +6666,2025-06-10T19:46:38.734269-07:00,0.0,10.760001,10760.001 +6667,2025-06-10T19:46:49.502580-07:00,0.0,10.768311,10768.311 +6668,2025-06-10T19:47:00.260597-07:00,0.0,10.758017,10758.017 +6669,2025-06-10T19:47:11.034529-07:00,0.0,10.773932,10773.932 +6670,2025-06-10T19:47:21.800636-07:00,0.0,10.766107,10766.107 +6671,2025-06-10T19:47:32.560598-07:00,0.0,10.759962,10759.962 +6672,2025-06-10T19:47:43.327286-07:00,0.0,10.766688,10766.688 +6673,2025-06-10T19:47:54.100722-07:00,0.0,10.773436,10773.436 +6674,2025-06-10T19:48:04.860251-07:00,0.0,10.759529,10759.529 +6675,2025-06-10T19:48:15.615268-07:00,0.0,10.755017,10755.017 +6676,2025-06-10T19:48:26.374274-07:00,0.0,10.759006,10759.006 +6677,2025-06-10T19:48:37.134558-07:00,0.0,10.760284,10760.284 +6678,2025-06-10T19:48:47.894288-07:00,0.0,10.75973,10759.73 +6679,2025-06-10T19:48:58.665268-07:00,0.0,10.77098,10770.98 +6680,2025-06-10T19:49:09.426049-07:00,0.0,10.760781,10760.781 +6681,2025-06-10T19:49:20.195470-07:00,0.0,10.769421,10769.421 +6682,2025-06-10T19:49:30.959256-07:00,0.0,10.763786,10763.786 +6683,2025-06-10T19:49:41.727549-07:00,0.0,10.768293,10768.293 +6684,2025-06-10T19:49:52.490243-07:00,0.0,10.762694,10762.694 +6685,2025-06-10T19:50:03.250958-07:00,0.0,10.760715,10760.715 +6686,2025-06-10T19:50:14.013781-07:00,0.0,10.762823,10762.823 +6687,2025-06-10T19:50:24.786526-07:00,0.0,10.772745,10772.745 +6688,2025-06-10T19:50:35.543273-07:00,0.0,10.756747,10756.747 +6689,2025-06-10T19:50:46.316601-07:00,0.0,10.773328,10773.328 +6690,2025-06-10T19:50:57.079271-07:00,0.0,10.76267,10762.67 +6691,2025-06-10T19:51:07.840365-07:00,0.0,10.761094,10761.094 +6692,2025-06-10T19:51:18.602960-07:00,0.0,10.762595,10762.595 +6693,2025-06-10T19:51:29.371265-07:00,0.0,10.768305,10768.305 +6694,2025-06-10T19:51:40.130510-07:00,0.0,10.759245,10759.245 +6695,2025-06-10T19:51:50.894588-07:00,0.0,10.764078,10764.078 +6696,2025-06-10T19:52:01.666709-07:00,0.0,10.772121,10772.121 +6697,2025-06-10T19:52:12.384444-07:00,0.0,10.717735,10717.735 +6698,2025-06-10T19:52:23.150887-07:00,0.0,10.766443,10766.443 +6699,2025-06-10T19:52:33.913821-07:00,0.0,10.762934,10762.934 +6700,2025-06-10T19:52:43.580254-07:00,0.0,9.666433,9666.433 +6701,2025-06-10T19:52:44.687715-07:00,0.0,1.107461,1107.461 +6702,2025-06-10T19:52:55.444648-07:00,0.0,10.756933,10756.933 +6703,2025-06-10T19:53:06.211446-07:00,0.0,10.766798,10766.798 +6704,2025-06-10T19:53:16.976598-07:00,0.0,10.765152,10765.152 +6705,2025-06-10T19:53:27.752355-07:00,0.0,10.775757,10775.757 +6706,2025-06-10T19:53:38.521729-07:00,0.0,10.769374,10769.374 +6707,2025-06-10T19:53:49.276599-07:00,0.0,10.75487,10754.87 +6708,2025-06-10T19:54:00.051847-07:00,0.0,10.775248,10775.248 +6709,2025-06-10T19:54:10.817681-07:00,0.0,10.765834,10765.834 +6710,2025-06-10T19:54:21.586013-07:00,0.0,10.768332,10768.332 +6711,2025-06-10T19:54:32.346840-07:00,0.0,10.760827,10760.827 +6712,2025-06-10T19:54:43.111569-07:00,0.0,10.764729,10764.729 +6713,2025-06-10T19:54:53.873110-07:00,0.0,10.761541,10761.541 +6714,2025-06-10T19:55:04.639707-07:00,0.0,10.766597,10766.597 +6715,2025-06-10T19:55:15.403442-07:00,0.0,10.763735,10763.735 +6716,2025-06-10T19:55:26.177706-07:00,0.0,10.774264,10774.264 +6717,2025-06-10T19:55:36.941281-07:00,0.0,10.763575,10763.575 +6718,2025-06-10T19:55:47.702447-07:00,0.0,10.761166,10761.166 +6719,2025-06-10T19:55:58.463448-07:00,0.0,10.761001,10761.001 +6720,2025-06-10T19:56:09.240118-07:00,0.0,10.77667,10776.67 +6721,2025-06-10T19:56:20.007685-07:00,0.0,10.767567,10767.567 +6722,2025-06-10T19:56:30.767347-07:00,0.0,10.759662,10759.662 +6723,2025-06-10T19:56:41.533892-07:00,0.0,10.766545,10766.545 +6724,2025-06-10T19:56:52.291732-07:00,0.0,10.75784,10757.84 +6725,2025-06-10T19:57:03.062707-07:00,0.0,10.770975,10770.975 +6726,2025-06-10T19:57:13.824449-07:00,0.0,10.761742,10761.742 +6727,2025-06-10T19:57:24.584442-07:00,0.0,10.759993,10759.993 +6728,2025-06-10T19:57:35.349723-07:00,0.0,10.765281,10765.281 +6729,2025-06-10T19:57:46.110602-07:00,0.0,10.760879,10760.879 +6730,2025-06-10T19:57:56.882699-07:00,0.0,10.772097,10772.097 +6731,2025-06-10T19:58:07.644859-07:00,0.0,10.76216,10762.16 +6732,2025-06-10T19:58:18.414421-07:00,0.0,10.769562,10769.562 +6733,2025-06-10T19:58:29.185691-07:00,0.0,10.77127,10771.27 +6734,2025-06-10T19:58:39.950668-07:00,0.0,10.764977,10764.977 +6735,2025-06-10T19:58:50.710033-07:00,0.0,10.759365,10759.365 +6736,2025-06-10T19:59:01.483444-07:00,0.0,10.773411,10773.411 +6737,2025-06-10T19:59:12.238813-07:00,0.0,10.755369,10755.369 +6738,2025-06-10T19:59:23.003448-07:00,0.0,10.764635,10764.635 +6739,2025-06-10T19:59:33.765422-07:00,0.0,10.761974,10761.974 +6740,2025-06-10T19:59:44.542199-07:00,0.0,10.776777,10776.777 +6741,2025-06-10T19:59:55.309550-07:00,0.0,10.767351,10767.351 +6742,2025-06-10T20:00:06.069870-07:00,0.0,10.76032,10760.32 +6743,2025-06-10T20:00:16.840664-07:00,0.0,10.770794,10770.794 +6744,2025-06-10T20:00:27.601442-07:00,0.0,10.760778,10760.778 +6745,2025-06-10T20:00:38.368444-07:00,0.0,10.767002,10767.002 +6746,2025-06-10T20:00:49.135744-07:00,0.0,10.7673,10767.3 +6747,2025-06-10T20:00:59.899834-07:00,0.0,10.76409,10764.09 +6748,2025-06-10T20:01:10.666786-07:00,0.0,10.766952,10766.952 +6749,2025-06-10T20:01:21.424993-07:00,0.0,10.758207,10758.207 +6750,2025-06-10T20:01:32.193446-07:00,0.0,10.768453,10768.453 +6751,2025-06-10T20:01:42.953685-07:00,0.0,10.760239,10760.239 +6752,2025-06-10T20:01:53.722878-07:00,0.0,10.769193,10769.193 +6753,2025-06-10T20:02:04.479151-07:00,0.0,10.756273,10756.273 +6754,2025-06-10T20:02:15.251431-07:00,0.0,10.77228,10772.28 +6755,2025-06-10T20:02:26.011738-07:00,0.0,10.760307,10760.307 +6756,2025-06-10T20:02:36.772633-07:00,0.0,10.760895,10760.895 +6757,2025-06-10T20:02:47.537461-07:00,0.0,10.764828,10764.828 +6758,2025-06-10T20:02:58.300448-07:00,0.0,10.762987,10762.987 +6759,2025-06-10T20:03:09.069451-07:00,0.0,10.769003,10769.003 +6760,2025-06-10T20:03:19.827450-07:00,0.0,10.757999,10757.999 +6761,2025-06-10T20:03:30.593643-07:00,0.0,10.766193,10766.193 +6762,2025-06-10T20:03:41.358438-07:00,0.0,10.764795,10764.795 +6763,2025-06-10T20:03:52.120442-07:00,0.0,10.762004,10762.004 +6764,2025-06-10T20:04:02.879444-07:00,0.0,10.759002,10759.002 +6765,2025-06-10T20:04:13.647590-07:00,0.0,10.768146,10768.146 +6766,2025-06-10T20:04:24.402863-07:00,0.0,10.755273,10755.273 +6767,2025-06-10T20:04:35.174436-07:00,0.0,10.771573,10771.573 +6768,2025-06-10T20:04:45.934364-07:00,0.0,10.759928,10759.928 +6769,2025-06-10T20:04:56.704444-07:00,0.0,10.77008,10770.08 +6770,2025-06-10T20:05:07.459697-07:00,0.0,10.755253,10755.253 +6771,2025-06-10T20:05:18.231067-07:00,0.0,10.77137,10771.37 +6772,2025-06-10T20:05:29.003642-07:00,0.0,10.772575,10772.575 +6773,2025-06-10T20:05:39.792436-07:00,0.0,10.788794,10788.794 +6774,2025-06-10T20:05:50.561202-07:00,0.0,10.768766,10768.766 +6775,2025-06-10T20:06:01.321448-07:00,0.0,10.760246,10760.246 +6776,2025-06-10T20:06:12.087598-07:00,0.0,10.76615,10766.15 +6777,2025-06-10T20:06:22.847437-07:00,0.0,10.759839,10759.839 +6778,2025-06-10T20:06:33.606884-07:00,0.0,10.759447,10759.447 +6779,2025-06-10T20:06:44.372779-07:00,0.0,10.765895,10765.895 +6780,2025-06-10T20:06:55.135628-07:00,0.0,10.762849,10762.849 +6781,2025-06-10T20:07:05.902571-07:00,0.0,10.766943,10766.943 +6782,2025-06-10T20:07:16.663759-07:00,0.0,10.761188,10761.188 +6783,2025-06-10T20:07:27.425493-07:00,0.0,10.761734,10761.734 +6784,2025-06-10T20:07:38.195702-07:00,0.0,10.770209,10770.209 +6785,2025-06-10T20:07:48.966425-07:00,0.0,10.770723,10770.723 +6786,2025-06-10T20:07:59.729457-07:00,0.0,10.763032,10763.032 +6787,2025-06-10T20:08:10.497434-07:00,0.0,10.767977,10767.977 +6788,2025-06-10T20:08:21.261762-07:00,0.0,10.764328,10764.328 +6789,2025-06-10T20:08:32.024437-07:00,0.0,10.762675,10762.675 +6790,2025-06-10T20:08:42.791469-07:00,0.0,10.767032,10767.032 +6791,2025-06-10T20:08:53.559755-07:00,0.0,10.768286,10768.286 +6792,2025-06-10T20:09:04.328704-07:00,0.0,10.768949,10768.949 +6793,2025-06-10T20:09:15.093699-07:00,0.0,10.764995,10764.995 +6794,2025-06-10T20:09:25.858704-07:00,0.0,10.765005,10765.005 +6795,2025-06-10T20:09:36.621441-07:00,0.0,10.762737,10762.737 +6796,2025-06-10T20:09:47.389093-07:00,0.0,10.767652,10767.652 +6797,2025-06-10T20:09:58.159442-07:00,0.0,10.770349,10770.349 +6798,2025-06-10T20:10:08.917440-07:00,0.0,10.757998,10757.998 +6799,2025-06-10T20:10:19.684738-07:00,0.0,10.767298,10767.298 +6800,2025-06-10T20:10:30.449754-07:00,0.0,10.765016,10765.016 +6801,2025-06-10T20:10:41.221472-07:00,0.0,10.771718,10771.718 +6802,2025-06-10T20:10:51.989450-07:00,0.0,10.767978,10767.978 +6803,2025-06-10T20:11:02.749446-07:00,0.0,10.759996,10759.996 +6804,2025-06-10T20:11:13.522191-07:00,0.0,10.772745,10772.745 +6805,2025-06-10T20:11:24.281806-07:00,0.0,10.759615,10759.615 +6806,2025-06-10T20:11:35.046434-07:00,0.0,10.764628,10764.628 +6807,2025-06-10T20:11:45.822070-07:00,0.0,10.775636,10775.636 +6808,2025-06-10T20:11:56.577632-07:00,0.0,10.755562,10755.562 +6809,2025-06-10T20:12:07.350852-07:00,0.0,10.77322,10773.22 +6810,2025-06-10T20:12:18.122896-07:00,0.0,10.772044,10772.044 +6811,2025-06-10T20:12:28.886665-07:00,0.0,10.763769,10763.769 +6812,2025-06-10T20:12:39.645448-07:00,0.0,10.758783,10758.783 +6813,2025-06-10T20:12:50.418460-07:00,0.0,10.773012,10773.012 +6814,2025-06-10T20:13:01.179665-07:00,0.0,10.761205,10761.205 +6815,2025-06-10T20:13:11.941605-07:00,0.0,10.76194,10761.94 +6816,2025-06-10T20:13:22.711123-07:00,0.0,10.769518,10769.518 +6817,2025-06-10T20:13:33.471450-07:00,0.0,10.760327,10760.327 +6818,2025-06-10T20:13:44.235763-07:00,0.0,10.764313,10764.313 +6819,2025-06-10T20:13:55.005590-07:00,0.0,10.769827,10769.827 +6820,2025-06-10T20:14:05.774436-07:00,0.0,10.768846,10768.846 +6821,2025-06-10T20:14:16.542118-07:00,0.0,10.767682,10767.682 +6822,2025-06-10T20:14:27.305913-07:00,0.0,10.763795,10763.795 +6823,2025-06-10T20:14:38.071494-07:00,0.0,10.765581,10765.581 +6824,2025-06-10T20:14:48.834829-07:00,0.0,10.763335,10763.335 +6825,2025-06-10T20:14:59.590757-07:00,0.0,10.755928,10755.928 +6826,2025-06-10T20:15:10.357444-07:00,0.0,10.766687,10766.687 +6827,2025-06-10T20:15:21.119684-07:00,0.0,10.76224,10762.24 +6828,2025-06-10T20:15:31.888890-07:00,0.0,10.769206,10769.206 +6829,2025-06-10T20:15:42.649174-07:00,0.0,10.760284,10760.284 +6830,2025-06-10T20:15:53.413922-07:00,0.0,10.764748,10764.748 +6831,2025-06-10T20:16:04.169827-07:00,0.0,10.755905,10755.905 +6832,2025-06-10T20:16:14.934446-07:00,0.0,10.764619,10764.619 +6833,2025-06-10T20:16:25.693648-07:00,0.0,10.759202,10759.202 +6834,2025-06-10T20:16:36.460438-07:00,0.0,10.76679,10766.79 +6835,2025-06-10T20:16:47.232079-07:00,0.0,10.771641,10771.641 +6836,2025-06-10T20:16:57.987450-07:00,0.0,10.755371,10755.371 +6837,2025-06-10T20:17:08.749436-07:00,0.0,10.761986,10761.986 +6838,2025-06-10T20:17:19.520769-07:00,0.0,10.771333,10771.333 +6839,2025-06-10T20:17:30.274587-07:00,0.0,10.753818,10753.818 +6840,2025-06-10T20:17:41.045510-07:00,0.0,10.770923,10770.923 +6841,2025-06-10T20:17:51.797445-07:00,0.0,10.751935,10751.935 +6842,2025-06-10T20:18:02.564915-07:00,0.0,10.76747,10767.47 +6843,2025-06-10T20:18:13.331041-07:00,0.0,10.766126,10766.126 +6844,2025-06-10T20:18:24.094560-07:00,0.0,10.763519,10763.519 +6845,2025-06-10T20:18:34.855745-07:00,0.0,10.761185,10761.185 +6846,2025-06-10T20:18:45.610422-07:00,0.0,10.754677,10754.677 +6847,2025-06-10T20:18:56.379421-07:00,0.0,10.768999,10768.999 +6848,2025-06-10T20:19:07.136707-07:00,0.0,10.757286,10757.286 +6849,2025-06-10T20:19:17.897909-07:00,0.0,10.761202,10761.202 +6850,2025-06-10T20:19:28.660449-07:00,0.0,10.76254,10762.54 +6851,2025-06-10T20:19:39.427057-07:00,0.0,10.766608,10766.608 +6852,2025-06-10T20:19:50.187991-07:00,0.0,10.760934,10760.934 +6853,2025-06-10T20:20:00.945446-07:00,0.0,10.757455,10757.455 +6854,2025-06-10T20:20:11.707445-07:00,0.0,10.761999,10761.999 +6855,2025-06-10T20:20:22.465443-07:00,0.0,10.757998,10757.998 +6856,2025-06-10T20:20:33.231054-07:00,0.0,10.765611,10765.611 +6857,2025-06-10T20:20:43.986843-07:00,0.0,10.755789,10755.789 +6858,2025-06-10T20:20:54.755703-07:00,0.0,10.76886,10768.86 +6859,2025-06-10T20:21:05.524777-07:00,0.0,10.769074,10769.074 +6860,2025-06-10T20:21:16.281923-07:00,0.0,10.757146,10757.146 +6861,2025-06-10T20:21:27.051677-07:00,0.0,10.769754,10769.754 +6862,2025-06-10T20:21:37.807622-07:00,0.0,10.755945,10755.945 +6863,2025-06-10T20:21:48.579798-07:00,0.0,10.772176,10772.176 +6864,2025-06-10T20:21:59.339599-07:00,0.0,10.759801,10759.801 +6865,2025-06-10T20:22:10.105561-07:00,0.0,10.765962,10765.962 +6866,2025-06-10T20:22:20.861512-07:00,0.0,10.755951,10755.951 +6867,2025-06-10T20:22:31.632449-07:00,0.0,10.770937,10770.937 +6868,2025-06-10T20:22:42.392436-07:00,0.0,10.759987,10759.987 +6869,2025-06-10T20:22:53.159532-07:00,0.0,10.767096,10767.096 +6870,2025-06-10T20:23:03.916796-07:00,0.0,10.757264,10757.264 +6871,2025-06-10T20:23:14.689446-07:00,0.0,10.77265,10772.65 +6872,2025-06-10T20:23:25.456755-07:00,0.0,10.767309,10767.309 +6873,2025-06-10T20:23:36.212625-07:00,0.0,10.75587,10755.87 +6874,2025-06-10T20:23:46.980430-07:00,0.0,10.767805,10767.805 +6875,2025-06-10T20:23:57.749732-07:00,0.0,10.769302,10769.302 +6876,2025-06-10T20:24:08.516641-07:00,0.0,10.766909,10766.909 +6877,2025-06-10T20:24:19.277447-07:00,0.0,10.760806,10760.806 +6878,2025-06-10T20:24:30.042770-07:00,0.0,10.765323,10765.323 +6879,2025-06-10T20:24:40.797625-07:00,0.0,10.754855,10754.855 +6880,2025-06-10T20:24:51.563633-07:00,0.0,10.766008,10766.008 +6881,2025-06-10T20:25:02.331012-07:00,0.0,10.767379,10767.379 +6882,2025-06-10T20:25:13.084690-07:00,0.0,10.753678,10753.678 +6883,2025-06-10T20:25:23.859704-07:00,0.0,10.775014,10775.014 +6884,2025-06-10T20:25:34.618444-07:00,0.0,10.75874,10758.74 +6885,2025-06-10T20:25:45.379002-07:00,0.0,10.760558,10760.558 +6886,2025-06-10T20:25:56.144611-07:00,0.0,10.765609,10765.609 +6887,2025-06-10T20:26:06.905684-07:00,0.0,10.761073,10761.073 +6888,2025-06-10T20:26:17.676790-07:00,0.0,10.771106,10771.106 +6889,2025-06-10T20:26:28.436365-07:00,0.0,10.759575,10759.575 +6890,2025-06-10T20:26:39.193446-07:00,0.0,10.757081,10757.081 +6891,2025-06-10T20:26:49.954937-07:00,0.0,10.761491,10761.491 +6892,2025-06-10T20:27:00.723596-07:00,0.0,10.768659,10768.659 +6893,2025-06-10T20:27:11.485702-07:00,0.0,10.762106,10762.106 +6894,2025-06-10T20:27:22.249442-07:00,0.0,10.76374,10763.74 +6895,2025-06-10T20:27:33.010000-07:00,0.0,10.760558,10760.558 +6896,2025-06-10T20:27:43.773684-07:00,0.0,10.763684,10763.684 +6897,2025-06-10T20:27:54.539439-07:00,0.0,10.765755,10765.755 +6898,2025-06-10T20:28:05.306771-07:00,0.0,10.767332,10767.332 +6899,2025-06-10T20:28:16.074638-07:00,0.0,10.767867,10767.867 +6900,2025-06-10T20:28:26.834501-07:00,0.0,10.759863,10759.863 +6901,2025-06-10T20:28:37.607818-07:00,0.0,10.773317,10773.317 +6902,2025-06-10T20:28:44.963714-07:00,2688.0,7.355896,7355.896 +6903,2025-06-10T20:28:48.372424-07:00,2731.0,3.40871,3408.71 +6904,2025-06-10T20:28:59.133656-07:00,2718.0,10.761232,10761.232 +6905,2025-06-10T20:29:09.908777-07:00,2733.0,10.775121,10775.121 +6906,2025-06-10T20:29:20.670008-07:00,2672.0,10.761231,10761.231 +6907,2025-06-10T20:29:31.438064-07:00,2767.0,10.768056,10768.056 +6908,2025-06-10T20:29:42.204483-07:00,2765.0,10.766419,10766.419 +6909,2025-06-10T20:29:52.961688-07:00,2775.0,10.757205,10757.205 +6910,2025-06-10T20:30:03.727462-07:00,2710.0,10.765774,10765.774 +6911,2025-06-10T20:30:14.489873-07:00,2734.0,10.762411,10762.411 +6912,2025-06-10T20:30:25.250645-07:00,2682.0,10.760772,10760.772 +6913,2025-06-10T20:30:35.305113-07:00,438.0,10.054468,10054.468 +6914,2025-06-10T20:30:36.025440-07:00,438.0,0.720327,720.327 +6915,2025-06-10T20:30:37.312916-07:00,162.0,1.287476,1287.476 +6916,2025-06-10T20:30:46.781471-07:00,195.0,9.468555,9468.555 +6917,2025-06-10T20:30:57.544028-07:00,269.0,10.762557,10762.557 +6918,2025-06-10T20:31:08.305755-07:00,199.0,10.761727,10761.727 +6919,2025-06-10T20:31:19.076771-07:00,263.0,10.771016,10771.016 +6920,2025-06-10T20:31:29.841442-07:00,224.0,10.764671,10764.671 +6921,2025-06-10T20:31:40.600888-07:00,295.0,10.759446,10759.446 +6922,2025-06-10T20:31:51.375782-07:00,274.0,10.774894,10774.894 +6923,2025-06-10T20:32:02.136652-07:00,222.0,10.76087,10760.87 +6924,2025-06-10T20:32:12.897557-07:00,303.0,10.760905,10760.905 +6925,2025-06-10T20:32:23.660069-07:00,251.0,10.762512,10762.512 +6926,2025-06-10T20:32:34.427446-07:00,0.0,10.767377,10767.377 +6927,2025-06-10T20:32:45.188432-07:00,0.0,10.760986,10760.986 +6928,2025-06-10T20:32:55.953041-07:00,0.0,10.764609,10764.609 +6929,2025-06-10T20:33:06.706917-07:00,0.0,10.753876,10753.876 +6930,2025-06-10T20:33:17.473444-07:00,0.0,10.766527,10766.527 +6931,2025-06-10T20:33:28.236517-07:00,0.0,10.763073,10763.073 +6932,2025-06-10T20:33:38.997851-07:00,0.0,10.761334,10761.334 +6933,2025-06-10T20:33:49.763436-07:00,0.0,10.765585,10765.585 +6934,2025-06-10T20:34:00.523675-07:00,0.0,10.760239,10760.239 +6935,2025-06-10T20:34:11.289103-07:00,0.0,10.765428,10765.428 +6936,2025-06-10T20:34:22.044714-07:00,0.0,10.755611,10755.611 +6937,2025-06-10T20:34:32.809920-07:00,0.0,10.765206,10765.206 +6938,2025-06-10T20:34:43.574431-07:00,0.0,10.764511,10764.511 +6939,2025-06-10T20:34:54.334927-07:00,0.0,10.760496,10760.496 +6940,2025-06-10T20:35:05.100813-07:00,0.0,10.765886,10765.886 +6941,2025-06-10T20:35:15.871442-07:00,0.0,10.770629,10770.629 +6942,2025-06-10T20:35:26.634941-07:00,0.0,10.763499,10763.499 +6943,2025-06-10T20:35:37.394472-07:00,0.0,10.759531,10759.531 +6944,2025-06-10T20:35:48.156425-07:00,0.0,10.761953,10761.953 +6945,2025-06-10T20:35:58.917240-07:00,0.0,10.760815,10760.815 +6946,2025-06-10T20:36:09.684451-07:00,0.0,10.767211,10767.211 +6947,2025-06-10T20:36:20.447442-07:00,0.0,10.762991,10762.991 +6948,2025-06-10T20:36:31.211575-07:00,0.0,10.764133,10764.133 +6949,2025-06-10T20:36:41.971937-07:00,0.0,10.760362,10760.362 +6950,2025-06-10T20:36:52.733446-07:00,0.0,10.761509,10761.509 +6951,2025-06-10T20:37:03.492697-07:00,0.0,10.759251,10759.251 +6952,2025-06-10T20:37:14.263077-07:00,0.0,10.77038,10770.38 +6953,2025-06-10T20:37:25.023444-07:00,0.0,10.760367,10760.367 +6954,2025-06-10T20:37:35.783611-07:00,0.0,10.760167,10760.167 +6955,2025-06-10T20:37:46.549436-07:00,0.0,10.765825,10765.825 +6956,2025-06-10T20:37:57.308788-07:00,0.0,10.759352,10759.352 +6957,2025-06-10T20:38:08.075436-07:00,0.0,10.766648,10766.648 +6958,2025-06-10T20:38:18.844868-07:00,0.0,10.769432,10769.432 +6959,2025-06-10T20:38:29.601199-07:00,0.0,10.756331,10756.331 +6960,2025-06-10T20:38:40.368442-07:00,0.0,10.767243,10767.243 +6961,2025-06-10T20:38:51.130592-07:00,0.0,10.76215,10762.15 +6962,2025-06-10T20:39:01.902849-07:00,0.0,10.772257,10772.257 +6963,2025-06-10T20:39:12.666562-07:00,0.0,10.763713,10763.713 +6964,2025-06-10T20:39:23.428480-07:00,0.0,10.761918,10761.918 +6965,2025-06-10T20:39:34.186873-07:00,0.0,10.758393,10758.393 +6966,2025-06-10T20:39:44.950442-07:00,0.0,10.763569,10763.569 +6967,2025-06-10T20:39:55.705444-07:00,0.0,10.755002,10755.002 +6968,2025-06-10T20:40:06.467688-07:00,0.0,10.762244,10762.244 +6969,2025-06-10T20:40:17.232089-07:00,0.0,10.764401,10764.401 +6970,2025-06-10T20:40:27.995607-07:00,0.0,10.763518,10763.518 +6971,2025-06-10T20:40:38.763449-07:00,0.0,10.767842,10767.842 +6972,2025-06-10T20:40:49.528759-07:00,0.0,10.76531,10765.31 +6973,2025-06-10T20:41:00.283558-07:00,0.0,10.754799,10754.799 +6974,2025-06-10T20:41:11.044647-07:00,0.0,10.761089,10761.089 +6975,2025-06-10T20:41:21.815480-07:00,0.0,10.770833,10770.833 +6976,2025-06-10T20:41:32.574922-07:00,0.0,10.759442,10759.442 +6977,2025-06-10T20:41:43.335448-07:00,0.0,10.760526,10760.526 +6978,2025-06-10T20:41:54.105494-07:00,0.0,10.770046,10770.046 +6979,2025-06-10T20:42:04.861741-07:00,0.0,10.756247,10756.247 +6980,2025-06-10T20:42:15.631442-07:00,0.0,10.769701,10769.701 +6981,2025-06-10T20:42:26.392419-07:00,0.0,10.760977,10760.977 +6982,2025-06-10T20:42:37.156703-07:00,0.0,10.764284,10764.284 +6983,2025-06-10T20:42:47.920219-07:00,0.0,10.763516,10763.516 +6984,2025-06-10T20:42:58.685483-07:00,0.0,10.765264,10765.264 +6985,2025-06-10T20:43:09.454979-07:00,0.0,10.769496,10769.496 +6986,2025-06-10T20:43:20.220445-07:00,0.0,10.765466,10765.466 +6987,2025-06-10T20:43:30.977103-07:00,0.0,10.756658,10756.658 +6988,2025-06-10T20:43:41.739436-07:00,0.0,10.762333,10762.333 +6989,2025-06-10T20:43:52.503361-07:00,0.0,10.763925,10763.925 +6990,2025-06-10T20:44:03.273657-07:00,0.0,10.770296,10770.296 +6991,2025-06-10T20:44:14.032957-07:00,0.0,10.7593,10759.3 +6992,2025-06-10T20:44:24.795596-07:00,0.0,10.762639,10762.639 +6993,2025-06-10T20:44:35.559950-07:00,0.0,10.764354,10764.354 +6994,2025-06-10T20:44:46.329596-07:00,0.0,10.769646,10769.646 +6995,2025-06-10T20:44:57.088565-07:00,0.0,10.758969,10758.969 +6996,2025-06-10T20:45:07.855630-07:00,0.0,10.767065,10767.065 +6997,2025-06-10T20:45:18.620463-07:00,0.0,10.764833,10764.833 +6998,2025-06-10T20:45:29.388449-07:00,0.0,10.767986,10767.986 +6999,2025-06-10T20:45:40.156443-07:00,0.0,10.767994,10767.994 +7000,2025-06-10T20:45:50.922125-07:00,0.0,10.765682,10765.682 +7001,2025-06-10T20:46:01.683806-07:00,0.0,10.761681,10761.681 +7002,2025-06-10T20:46:12.446545-07:00,0.0,10.762739,10762.739 +7003,2025-06-10T20:46:23.208453-07:00,0.0,10.761908,10761.908 +7004,2025-06-10T20:46:33.978471-07:00,0.0,10.770018,10770.018 +7005,2025-06-10T20:46:44.745046-07:00,0.0,10.766575,10766.575 +7006,2025-06-10T20:46:55.513246-07:00,0.0,10.7682,10768.2 +7007,2025-06-10T20:47:06.275762-07:00,0.0,10.762516,10762.516 +7008,2025-06-10T20:47:17.041686-07:00,0.0,10.765924,10765.924 +7009,2025-06-10T20:47:27.803482-07:00,0.0,10.761796,10761.796 +7010,2025-06-10T20:47:38.567881-07:00,0.0,10.764399,10764.399 +7011,2025-06-10T20:47:49.333444-07:00,0.0,10.765563,10765.563 +7012,2025-06-10T20:48:00.090679-07:00,0.0,10.757235,10757.235 +7013,2025-06-10T20:48:10.861822-07:00,0.0,10.771143,10771.143 +7014,2025-06-10T20:48:21.619698-07:00,0.0,10.757876,10757.876 +7015,2025-06-10T20:48:32.391491-07:00,0.0,10.771793,10771.793 +7016,2025-06-10T20:48:43.147779-07:00,0.0,10.756288,10756.288 +7017,2025-06-10T20:48:53.912439-07:00,0.0,10.76466,10764.66 +7018,2025-06-10T20:49:04.674483-07:00,0.0,10.762044,10762.044 +7019,2025-06-10T20:49:15.428593-07:00,0.0,10.75411,10754.11 +7020,2025-06-10T20:49:26.201834-07:00,0.0,10.773241,10773.241 +7021,2025-06-10T20:49:36.956445-07:00,0.0,10.754611,10754.611 +7022,2025-06-10T20:49:47.727486-07:00,0.0,10.771041,10771.041 +7023,2025-06-10T20:49:58.484829-07:00,0.0,10.757343,10757.343 +7024,2025-06-10T20:50:09.256589-07:00,0.0,10.77176,10771.76 +7025,2025-06-10T20:50:20.020445-07:00,0.0,10.763856,10763.856 +7026,2025-06-10T20:50:30.788302-07:00,0.0,10.767857,10767.857 +7027,2025-06-10T20:50:41.551722-07:00,0.0,10.76342,10763.42 +7028,2025-06-10T20:50:52.315332-07:00,0.0,10.76361,10763.61 +7029,2025-06-10T20:51:03.074770-07:00,0.0,10.759438,10759.438 +7030,2025-06-10T20:51:13.841437-07:00,0.0,10.766667,10766.667 +7031,2025-06-10T20:51:24.602503-07:00,0.0,10.761066,10761.066 +7032,2025-06-10T20:51:35.366105-07:00,0.0,10.763602,10763.602 +7033,2025-06-10T20:51:46.133921-07:00,0.0,10.767816,10767.816 +7034,2025-06-10T20:51:56.901422-07:00,0.0,10.767501,10767.501 +7035,2025-06-10T20:52:07.669108-07:00,0.0,10.767686,10767.686 +7036,2025-06-10T20:52:18.391095-07:00,0.0,10.721987,10721.987 +7037,2025-06-10T20:52:29.156336-07:00,0.0,10.765241,10765.241 +7038,2025-06-10T20:52:39.916369-07:00,0.0,10.760033,10760.033 +7039,2025-06-10T20:52:50.678529-07:00,0.0,10.76216,10762.16 +7040,2025-06-10T20:53:01.440288-07:00,0.0,10.761759,10761.759 +7041,2025-06-10T20:53:12.211429-07:00,0.0,10.771141,10771.141 +7042,2025-06-10T20:53:22.975387-07:00,0.0,10.763958,10763.958 +7043,2025-06-10T20:53:33.736085-07:00,0.0,10.760698,10760.698 +7044,2025-06-10T20:53:44.502640-07:00,0.0,10.766555,10766.555 +7045,2025-06-10T20:53:55.273114-07:00,0.0,10.770474,10770.474 +7046,2025-06-10T20:54:06.038118-07:00,0.0,10.765004,10765.004 +7047,2025-06-10T20:54:16.804435-07:00,0.0,10.766317,10766.317 +7048,2025-06-10T20:54:27.570363-07:00,0.0,10.765928,10765.928 +7049,2025-06-10T20:54:38.333138-07:00,0.0,10.762775,10762.775 +7050,2025-06-10T20:54:49.108449-07:00,0.0,10.775311,10775.311 +7051,2025-06-10T20:54:59.865265-07:00,0.0,10.756816,10756.816 +7052,2025-06-10T20:55:10.627160-07:00,0.0,10.761895,10761.895 +7053,2025-06-10T20:55:21.397179-07:00,0.0,10.770019,10770.019 +7054,2025-06-10T20:55:32.157840-07:00,0.0,10.760661,10760.661 +7055,2025-06-10T20:55:42.926453-07:00,0.0,10.768613,10768.613 +7056,2025-06-10T20:55:53.692492-07:00,0.0,10.766039,10766.039 +7057,2025-06-10T20:56:04.454118-07:00,0.0,10.761626,10761.626 +7058,2025-06-10T20:56:15.223361-07:00,0.0,10.769243,10769.243 +7059,2025-06-10T20:56:25.988360-07:00,0.0,10.764999,10764.999 +7060,2025-06-10T20:56:36.753114-07:00,0.0,10.764754,10764.754 +7061,2025-06-10T20:56:47.522588-07:00,0.0,10.769474,10769.474 +7062,2025-06-10T20:56:58.293122-07:00,0.0,10.770534,10770.534 +7063,2025-06-10T20:57:09.062209-07:00,0.0,10.769087,10769.087 +7064,2025-06-10T20:57:19.822714-07:00,0.0,10.760505,10760.505 +7065,2025-06-10T20:57:30.587104-07:00,0.0,10.76439,10764.39 +7066,2025-06-10T20:57:41.362204-07:00,0.0,10.7751,10775.1 +7067,2025-06-10T20:57:52.122557-07:00,0.0,10.760353,10760.353 +7068,2025-06-10T20:58:02.885116-07:00,0.0,10.762559,10762.559 +7069,2025-06-10T20:58:13.656481-07:00,0.0,10.771365,10771.365 +7070,2025-06-10T20:58:24.413376-07:00,0.0,10.756895,10756.895 +7071,2025-06-10T20:58:35.181339-07:00,0.0,10.767963,10767.963 +7072,2025-06-10T20:58:45.944112-07:00,0.0,10.762773,10762.773 +7073,2025-06-10T20:58:56.708819-07:00,0.0,10.764707,10764.707 +7074,2025-06-10T20:59:07.477227-07:00,0.0,10.768408,10768.408 +7075,2025-06-10T20:59:18.236093-07:00,0.0,10.758866,10758.866 +7076,2025-06-10T20:59:29.000429-07:00,0.0,10.764336,10764.336 +7077,2025-06-10T20:59:39.761112-07:00,0.0,10.760683,10760.683 +7078,2025-06-10T20:59:50.525509-07:00,0.0,10.764397,10764.397 +7079,2025-06-10T21:00:01.285112-07:00,0.0,10.759603,10759.603 +7080,2025-06-10T21:00:12.052550-07:00,0.0,10.767438,10767.438 +7081,2025-06-10T21:00:22.816414-07:00,0.0,10.763864,10763.864 +7082,2025-06-10T21:00:33.572109-07:00,0.0,10.755695,10755.695 +7083,2025-06-10T21:00:44.337464-07:00,0.0,10.765355,10765.355 +7084,2025-06-10T21:00:55.096114-07:00,0.0,10.75865,10758.65 +7085,2025-06-10T21:01:05.861112-07:00,0.0,10.764998,10764.998 +7086,2025-06-10T21:01:16.613460-07:00,0.0,10.752348,10752.348 +7087,2025-06-10T21:01:27.378389-07:00,0.0,10.764929,10764.929 +7088,2025-06-10T21:01:38.135454-07:00,0.0,10.757065,10757.065 +7089,2025-06-10T21:01:48.900093-07:00,0.0,10.764639,10764.639 +7090,2025-06-10T21:01:59.666424-07:00,0.0,10.766331,10766.331 +7091,2025-06-10T21:02:10.424401-07:00,0.0,10.757977,10757.977 +7092,2025-06-10T21:02:21.192362-07:00,0.0,10.767961,10767.961 +7093,2025-06-10T21:02:31.957542-07:00,0.0,10.76518,10765.18 +7094,2025-06-10T21:02:42.722556-07:00,0.0,10.765014,10765.014 +7095,2025-06-10T21:02:53.484390-07:00,0.0,10.761834,10761.834 +7096,2025-06-10T21:03:04.249269-07:00,0.0,10.764879,10764.879 +7097,2025-06-10T21:03:15.001133-07:00,0.0,10.751864,10751.864 +7098,2025-06-10T21:03:25.772116-07:00,0.0,10.770983,10770.983 +7099,2025-06-10T21:03:36.533116-07:00,0.0,10.761,10761.0 +7100,2025-06-10T21:03:47.295198-07:00,0.0,10.762082,10762.082 +7101,2025-06-10T21:03:58.060873-07:00,0.0,10.765675,10765.675 +7102,2025-06-10T21:04:08.819216-07:00,0.0,10.758343,10758.343 +7103,2025-06-10T21:04:19.578295-07:00,0.0,10.759079,10759.079 +7104,2025-06-10T21:04:30.341698-07:00,0.0,10.763403,10763.403 +7105,2025-06-10T21:04:41.104105-07:00,0.0,10.762407,10762.407 +7106,2025-06-10T21:04:51.868114-07:00,0.0,10.764009,10764.009 +7107,2025-06-10T21:05:02.629267-07:00,0.0,10.761153,10761.153 +7108,2025-06-10T21:05:13.385543-07:00,0.0,10.756276,10756.276 +7109,2025-06-10T21:05:24.153510-07:00,0.0,10.767967,10767.967 +7110,2025-06-10T21:05:34.912161-07:00,0.0,10.758651,10758.651 +7111,2025-06-10T21:05:45.668111-07:00,0.0,10.75595,10755.95 +7112,2025-06-10T21:05:56.429783-07:00,0.0,10.761672,10761.672 +7113,2025-06-10T21:06:07.191200-07:00,0.0,10.761417,10761.417 +7114,2025-06-10T21:06:17.958716-07:00,0.0,10.767516,10767.516 +7115,2025-06-10T21:06:28.722231-07:00,0.0,10.763515,10763.515 +7116,2025-06-10T21:06:39.492241-07:00,0.0,10.77001,10770.01 +7117,2025-06-10T21:06:50.253929-07:00,0.0,10.761688,10761.688 +7118,2025-06-10T21:07:01.013411-07:00,0.0,10.759482,10759.482 +7119,2025-06-10T21:07:11.781112-07:00,0.0,10.767701,10767.701 +7120,2025-06-10T21:07:22.540102-07:00,0.0,10.75899,10758.99 +7121,2025-06-10T21:07:33.310947-07:00,0.0,10.770845,10770.845 +7122,2025-06-10T21:07:44.073719-07:00,0.0,10.762772,10762.772 +7123,2025-06-10T21:07:54.832099-07:00,0.0,10.75838,10758.38 +7124,2025-06-10T21:08:05.600414-07:00,0.0,10.768315,10768.315 +7125,2025-06-10T21:08:16.359474-07:00,0.0,10.75906,10759.06 +7126,2025-06-10T21:08:27.126093-07:00,0.0,10.766619,10766.619 +7127,2025-06-10T21:08:37.889112-07:00,0.0,10.763019,10763.019 +7128,2025-06-10T21:08:48.644091-07:00,0.0,10.754979,10754.979 +7129,2025-06-10T21:08:59.402509-07:00,0.0,10.758418,10758.418 +7130,2025-06-10T21:09:10.168308-07:00,0.0,10.765799,10765.799 +7131,2025-06-10T21:09:20.928194-07:00,0.0,10.759886,10759.886 +7132,2025-06-10T21:09:31.681102-07:00,0.0,10.752908,10752.908 +7133,2025-06-10T21:09:42.445703-07:00,0.0,10.764601,10764.601 +7134,2025-06-10T21:09:53.206164-07:00,0.0,10.760461,10760.461 +7135,2025-06-10T21:10:03.969586-07:00,0.0,10.763422,10763.422 +7136,2025-06-10T21:10:14.737431-07:00,0.0,10.767845,10767.845 +7137,2025-06-10T21:10:25.498203-07:00,0.0,10.760772,10760.772 +7138,2025-06-10T21:10:36.252116-07:00,0.0,10.753913,10753.913 +7139,2025-06-10T21:10:47.025410-07:00,0.0,10.773294,10773.294 +7140,2025-06-10T21:10:57.788124-07:00,0.0,10.762714,10762.714 +7141,2025-06-10T21:11:08.549268-07:00,0.0,10.761144,10761.144 +7142,2025-06-10T21:11:19.307433-07:00,0.0,10.758165,10758.165 +7143,2025-06-10T21:11:30.067112-07:00,0.0,10.759679,10759.679 +7144,2025-06-10T21:11:40.836238-07:00,0.0,10.769126,10769.126 +7145,2025-06-10T21:11:51.591244-07:00,0.0,10.755006,10755.006 +7146,2025-06-10T21:12:02.358156-07:00,0.0,10.766912,10766.912 +7147,2025-06-10T21:12:13.117861-07:00,0.0,10.759705,10759.705 +7148,2025-06-10T21:12:23.879379-07:00,0.0,10.761518,10761.518 +7149,2025-06-10T21:12:34.638108-07:00,0.0,10.758729,10758.729 +7150,2025-06-10T21:12:45.406523-07:00,0.0,10.768415,10768.415 +7151,2025-06-10T21:12:56.171423-07:00,0.0,10.7649,10764.9 +7152,2025-06-10T21:13:06.924367-07:00,0.0,10.752944,10752.944 +7153,2025-06-10T21:13:17.687395-07:00,0.0,10.763028,10763.028 +7154,2025-06-10T21:13:28.454406-07:00,0.0,10.767011,10767.011 +7155,2025-06-10T21:13:39.211116-07:00,0.0,10.75671,10756.71 +7156,2025-06-10T21:13:49.973114-07:00,0.0,10.761998,10761.998 +7157,2025-06-10T21:14:00.738109-07:00,0.0,10.764995,10764.995 +7158,2025-06-10T21:14:11.494691-07:00,0.0,10.756582,10756.582 +7159,2025-06-10T21:14:22.257702-07:00,0.0,10.763011,10763.011 +7160,2025-06-10T21:14:33.024099-07:00,0.0,10.766397,10766.397 +7161,2025-06-10T21:14:43.776675-07:00,0.0,10.752576,10752.576 +7162,2025-06-10T21:14:54.542468-07:00,0.0,10.765793,10765.793 +7163,2025-06-10T21:15:05.304108-07:00,0.0,10.76164,10761.64 +7164,2025-06-10T21:15:16.059112-07:00,0.0,10.755004,10755.004 +7165,2025-06-10T21:15:26.817097-07:00,0.0,10.757985,10757.985 +7166,2025-06-10T21:15:37.579447-07:00,0.0,10.76235,10762.35 +7167,2025-06-10T21:15:48.341466-07:00,0.0,10.762019,10762.019 +7168,2025-06-10T21:15:59.097405-07:00,0.0,10.755939,10755.939 +7169,2025-06-10T21:16:09.859112-07:00,0.0,10.761707,10761.707 +7170,2025-06-10T21:16:20.628660-07:00,0.0,10.769548,10769.548 +7171,2025-06-10T21:16:31.384110-07:00,0.0,10.75545,10755.45 +7172,2025-06-10T21:16:41.341033-07:00,2463.0,9.956923,9956.923 +7173,2025-06-10T21:16:42.144351-07:00,2463.0,0.803318,803.318 +7174,2025-06-10T21:16:43.341486-07:00,2737.0,1.197135,1197.135 +7175,2025-06-10T21:16:52.897157-07:00,2718.0,9.555671,9555.671 +7176,2025-06-10T21:17:03.663664-07:00,2719.0,10.766507,10766.507 +7177,2025-06-10T21:17:14.426439-07:00,2704.0,10.762775,10762.775 +7178,2025-06-10T21:17:25.180120-07:00,2721.0,10.753681,10753.681 +7179,2025-06-10T21:17:35.940181-07:00,2636.0,10.760061,10760.061 +7180,2025-06-10T21:17:46.704447-07:00,2663.0,10.764266,10764.266 +7181,2025-06-10T21:17:57.464253-07:00,2651.0,10.759806,10759.806 +7182,2025-06-10T21:18:08.233116-07:00,2643.0,10.768863,10768.863 +7183,2025-06-10T21:18:18.993444-07:00,2651.0,10.760328,10760.328 +7184,2025-06-10T21:18:25.639092-07:00,48.0,6.645648,6645.648 +7185,2025-06-10T21:18:29.748386-07:00,0.0,4.109294,4109.294 +7186,2025-06-10T21:18:40.518106-07:00,0.0,10.76972,10769.72 +7187,2025-06-10T21:18:51.273116-07:00,0.0,10.75501,10755.01 +7188,2025-06-10T21:19:02.047401-07:00,0.0,10.774285,10774.285 +7189,2025-06-10T21:19:12.805762-07:00,0.0,10.758361,10758.361 +7190,2025-06-10T21:19:23.566336-07:00,0.0,10.760574,10760.574 +7191,2025-06-10T21:19:34.336121-07:00,0.0,10.769785,10769.785 +7192,2025-06-10T21:19:45.087762-07:00,0.0,10.751641,10751.641 +7193,2025-06-10T21:19:55.852473-07:00,0.0,10.764711,10764.711 +7194,2025-06-10T21:20:06.618359-07:00,0.0,10.765886,10765.886 +7195,2025-06-10T21:20:17.378677-07:00,0.0,10.760318,10760.318 +7196,2025-06-10T21:20:28.139362-07:00,0.0,10.760685,10760.685 +7197,2025-06-10T21:20:38.892165-07:00,0.0,10.752803,10752.803 +7198,2025-06-10T21:20:49.651116-07:00,0.0,10.758951,10758.951 +7199,2025-06-10T21:21:00.415354-07:00,0.0,10.764238,10764.238 +7200,2025-06-10T21:21:11.173671-07:00,0.0,10.758317,10758.317 +7201,2025-06-10T21:21:21.933586-07:00,0.0,10.759915,10759.915 +7202,2025-06-10T21:21:32.687305-07:00,0.0,10.753719,10753.719 +7203,2025-06-10T21:21:43.448366-07:00,0.0,10.761061,10761.061 +7204,2025-06-10T21:21:54.209504-07:00,0.0,10.761138,10761.138 +7205,2025-06-10T21:22:04.971309-07:00,0.0,10.761805,10761.805 +7206,2025-06-10T21:22:15.725116-07:00,0.0,10.753807,10753.807 +7207,2025-06-10T21:22:26.492171-07:00,0.0,10.767055,10767.055 +7208,2025-06-10T21:22:37.247114-07:00,0.0,10.754943,10754.943 +7209,2025-06-10T21:22:48.013433-07:00,0.0,10.766319,10766.319 +7210,2025-06-10T21:22:58.772951-07:00,0.0,10.759518,10759.518 +7211,2025-06-10T21:23:09.536116-07:00,0.0,10.763165,10763.165 +7212,2025-06-10T21:23:20.288487-07:00,0.0,10.752371,10752.371 +7213,2025-06-10T21:23:31.050757-07:00,0.0,10.76227,10762.27 +7214,2025-06-10T21:23:41.810110-07:00,0.0,10.759353,10759.353 +7215,2025-06-10T21:23:52.579086-07:00,0.0,10.768976,10768.976 +7216,2025-06-10T21:24:03.334089-07:00,0.0,10.755003,10755.003 +7217,2025-06-10T21:24:14.102667-07:00,0.0,10.768578,10768.578 +7218,2025-06-10T21:24:24.868720-07:00,0.0,10.766053,10766.053 +7219,2025-06-10T21:24:35.628400-07:00,0.0,10.75968,10759.68 +7220,2025-06-10T21:24:46.397263-07:00,0.0,10.768863,10768.863 +7221,2025-06-10T21:24:57.154607-07:00,0.0,10.757344,10757.344 +7222,2025-06-10T21:25:07.926248-07:00,0.0,10.771641,10771.641 +7223,2025-06-10T21:25:18.691687-07:00,0.0,10.765439,10765.439 +7224,2025-06-10T21:25:29.452114-07:00,209.0,10.760427,10760.427 +7225,2025-06-10T21:25:40.207116-07:00,235.0,10.755002,10755.002 +7226,2025-06-10T21:25:50.973458-07:00,149.0,10.766342,10766.342 +7227,2025-06-10T21:26:01.739146-07:00,288.0,10.765688,10765.688 +7228,2025-06-10T21:26:12.501118-07:00,243.0,10.761972,10761.972 +7229,2025-06-10T21:26:23.259298-07:00,211.0,10.75818,10758.18 +7230,2025-06-10T21:26:34.035365-07:00,304.0,10.776067,10776.067 +7231,2025-06-10T21:26:44.795116-07:00,232.0,10.759751,10759.751 +7232,2025-06-10T21:26:55.550112-07:00,0.0,10.754996,10754.996 +7233,2025-06-10T21:27:06.317229-07:00,0.0,10.767117,10767.117 +7234,2025-06-10T21:27:17.077346-07:00,0.0,10.760117,10760.117 +7235,2025-06-10T21:27:27.847111-07:00,0.0,10.769765,10769.765 +7236,2025-06-10T21:27:38.606482-07:00,0.0,10.759371,10759.371 +7237,2025-06-10T21:27:49.381137-07:00,0.0,10.774655,10774.655 +7238,2025-06-10T21:28:00.141153-07:00,0.0,10.760016,10760.016 +7239,2025-06-10T21:28:10.906253-07:00,0.0,10.7651,10765.1 +7240,2025-06-10T21:28:21.667114-07:00,0.0,10.760861,10760.861 +7241,2025-06-10T21:28:32.427257-07:00,0.0,10.760143,10760.143 +7242,2025-06-10T21:28:43.193384-07:00,0.0,10.766127,10766.127 +7243,2025-06-10T21:28:53.963406-07:00,0.0,10.770022,10770.022 +7244,2025-06-10T21:29:04.723108-07:00,0.0,10.759702,10759.702 +7245,2025-06-10T21:29:15.479166-07:00,0.0,10.756058,10756.058 +7246,2025-06-10T21:29:26.251112-07:00,0.0,10.771946,10771.946 +7247,2025-06-10T21:29:37.013280-07:00,0.0,10.762168,10762.168 +7248,2025-06-10T21:29:47.775302-07:00,0.0,10.762022,10762.022 +7249,2025-06-10T21:29:58.539449-07:00,0.0,10.764147,10764.147 +7250,2025-06-10T21:30:09.299600-07:00,0.0,10.760151,10760.151 +7251,2025-06-10T21:30:20.064112-07:00,0.0,10.764512,10764.512 +7252,2025-06-10T21:30:30.823009-07:00,0.0,10.758897,10758.897 +7253,2025-06-10T21:30:41.593398-07:00,0.0,10.770389,10770.389 +7254,2025-06-10T21:30:52.356619-07:00,0.0,10.763221,10763.221 +7255,2025-06-10T21:31:03.122359-07:00,0.0,10.76574,10765.74 +7256,2025-06-10T21:31:13.882497-07:00,0.0,10.760138,10760.138 +7257,2025-06-10T21:31:24.643235-07:00,0.0,10.760738,10760.738 +7258,2025-06-10T21:31:35.406399-07:00,0.0,10.763164,10763.164 +7259,2025-06-10T21:31:46.174141-07:00,0.0,10.767742,10767.742 +7260,2025-06-10T21:31:56.941326-07:00,0.0,10.767185,10767.185 +7261,2025-06-10T21:32:07.706093-07:00,0.0,10.764767,10764.767 +7262,2025-06-10T21:32:18.465499-07:00,0.0,10.759406,10759.406 +7263,2025-06-10T21:32:29.235179-07:00,0.0,10.76968,10769.68 +7264,2025-06-10T21:32:39.996403-07:00,0.0,10.761224,10761.224 +7265,2025-06-10T21:32:50.766294-07:00,0.0,10.769891,10769.891 +7266,2025-06-10T21:33:01.526372-07:00,0.0,10.760078,10760.078 +7267,2025-06-10T21:33:12.284112-07:00,0.0,10.75774,10757.74 +7268,2025-06-10T21:33:23.042392-07:00,0.0,10.75828,10758.28 +7269,2025-06-10T21:33:33.803751-07:00,0.0,10.761359,10761.359 +7270,2025-06-10T21:33:44.573163-07:00,0.0,10.769412,10769.412 +7271,2025-06-10T21:33:55.336512-07:00,0.0,10.763349,10763.349 +7272,2025-06-10T21:34:06.104114-07:00,0.0,10.767602,10767.602 +7273,2025-06-10T21:34:16.865186-07:00,0.0,10.761072,10761.072 +7274,2025-06-10T21:34:27.626095-07:00,0.0,10.760909,10760.909 +7275,2025-06-10T21:34:38.390596-07:00,0.0,10.764501,10764.501 +7276,2025-06-10T21:34:49.166395-07:00,0.0,10.775799,10775.799 +7277,2025-06-10T21:34:59.921686-07:00,0.0,10.755291,10755.291 +7278,2025-06-10T21:35:10.689263-07:00,0.0,10.767577,10767.577 +7279,2025-06-10T21:35:21.452112-07:00,0.0,10.762849,10762.849 +7280,2025-06-10T21:35:32.222592-07:00,0.0,10.77048,10770.48 +7281,2025-06-10T21:35:42.983427-07:00,0.0,10.760835,10760.835 +7282,2025-06-10T21:35:53.747373-07:00,0.0,10.763946,10763.946 +7283,2025-06-10T21:36:04.510387-07:00,0.0,10.763014,10763.014 +7284,2025-06-10T21:36:15.274494-07:00,0.0,10.764107,10764.107 +7285,2025-06-10T21:36:26.040114-07:00,0.0,10.76562,10765.62 +7286,2025-06-10T21:36:36.804369-07:00,0.0,10.764255,10764.255 +7287,2025-06-10T21:36:47.560550-07:00,0.0,10.756181,10756.181 +7288,2025-06-10T21:36:58.328468-07:00,0.0,10.767918,10767.918 +7289,2025-06-10T21:37:09.082409-07:00,0.0,10.753941,10753.941 +7290,2025-06-10T21:37:19.846117-07:00,0.0,10.763708,10763.708 +7291,2025-06-10T21:37:30.606491-07:00,0.0,10.760374,10760.374 +7292,2025-06-10T21:37:41.372122-07:00,0.0,10.765631,10765.631 +7293,2025-06-10T21:37:52.135112-07:00,0.0,10.76299,10762.99 +7294,2025-06-10T21:38:02.896548-07:00,0.0,10.761436,10761.436 +7295,2025-06-10T21:38:13.655461-07:00,0.0,10.758913,10758.913 +7296,2025-06-10T21:38:24.427111-07:00,0.0,10.77165,10771.65 +7297,2025-06-10T21:38:35.185138-07:00,0.0,10.758027,10758.027 +7298,2025-06-10T21:38:45.952313-07:00,0.0,10.767175,10767.175 +7299,2025-06-10T21:38:56.720114-07:00,0.0,10.767801,10767.801 +7300,2025-06-10T21:39:07.480121-07:00,0.0,10.760007,10760.007 +7301,2025-06-10T21:39:18.240361-07:00,0.0,10.76024,10760.24 +7302,2025-06-10T21:39:29.013265-07:00,0.0,10.772904,10772.904 +7303,2025-06-10T21:39:39.774435-07:00,0.0,10.76117,10761.17 +7304,2025-06-10T21:39:50.541104-07:00,0.0,10.766669,10766.669 +7305,2025-06-10T21:40:01.303929-07:00,0.0,10.762825,10762.825 +7306,2025-06-10T21:40:12.055242-07:00,0.0,10.751313,10751.313 +7307,2025-06-10T21:40:22.827468-07:00,0.0,10.772226,10772.226 +7308,2025-06-10T21:40:33.590158-07:00,0.0,10.76269,10762.69 +7309,2025-06-10T21:40:44.353180-07:00,0.0,10.763022,10763.022 +7310,2025-06-10T21:40:55.107156-07:00,0.0,10.753976,10753.976 +7311,2025-06-10T21:41:05.871732-07:00,0.0,10.764576,10764.576 +7312,2025-06-10T21:41:16.641114-07:00,0.0,10.769382,10769.382 +7313,2025-06-10T21:41:27.399488-07:00,0.0,10.758374,10758.374 +7314,2025-06-10T21:41:38.164482-07:00,0.0,10.764994,10764.994 +7315,2025-06-10T21:41:48.931340-07:00,0.0,10.766858,10766.858 +7316,2025-06-10T21:41:59.689835-07:00,0.0,10.758495,10758.495 +7317,2025-06-10T21:42:10.458105-07:00,0.0,10.76827,10768.27 +7318,2025-06-10T21:42:21.219117-07:00,0.0,10.761012,10761.012 +7319,2025-06-10T21:42:31.987112-07:00,0.0,10.767995,10767.995 +7320,2025-06-10T21:42:42.750133-07:00,0.0,10.763021,10763.021 +7321,2025-06-10T21:42:53.511445-07:00,0.0,10.761312,10761.312 +7322,2025-06-10T21:43:04.270253-07:00,0.0,10.758808,10758.808 +7323,2025-06-10T21:43:15.037151-07:00,0.0,10.766898,10766.898 +7324,2025-06-10T21:43:25.794443-07:00,0.0,10.757292,10757.292 +7325,2025-06-10T21:43:36.557709-07:00,0.0,10.763266,10763.266 +7326,2025-06-10T21:43:47.318302-07:00,0.0,10.760593,10760.593 +7327,2025-06-10T21:43:58.090406-07:00,0.0,10.772104,10772.104 +7328,2025-06-10T21:44:08.853099-07:00,0.0,10.762693,10762.693 +7329,2025-06-10T21:44:19.612634-07:00,0.0,10.759535,10759.535 +7330,2025-06-10T21:44:30.377154-07:00,0.0,10.76452,10764.52 +7331,2025-06-10T21:44:41.141366-07:00,0.0,10.764212,10764.212 +7332,2025-06-10T21:44:51.897115-07:00,0.0,10.755749,10755.749 +7333,2025-06-10T21:45:02.663353-07:00,0.0,10.766238,10766.238 +7334,2025-06-10T21:45:13.434926-07:00,0.0,10.771573,10771.573 +7335,2025-06-10T21:45:24.194460-07:00,0.0,10.759534,10759.534 +7336,2025-06-10T21:45:34.954864-07:00,0.0,10.760404,10760.404 +7337,2025-06-10T21:45:45.724604-07:00,0.0,10.76974,10769.74 +7338,2025-06-10T21:45:56.488114-07:00,0.0,10.76351,10763.51 +7339,2025-06-10T21:46:07.254501-07:00,0.0,10.766387,10766.387 +7340,2025-06-10T21:46:18.017366-07:00,0.0,10.762865,10762.865 +7341,2025-06-10T21:46:28.774768-07:00,0.0,10.757402,10757.402 +7342,2025-06-10T21:46:39.546087-07:00,0.0,10.771319,10771.319 +7343,2025-06-10T21:46:50.301473-07:00,0.0,10.755386,10755.386 +7344,2025-06-10T21:47:01.071116-07:00,0.0,10.769643,10769.643 +7345,2025-06-10T21:47:11.830596-07:00,0.0,10.75948,10759.48 +7346,2025-06-10T21:47:22.590112-07:00,0.0,10.759516,10759.516 +7347,2025-06-10T21:47:33.349502-07:00,0.0,10.75939,10759.39 +7348,2025-06-10T21:47:44.109942-07:00,0.0,10.76044,10760.44 +7349,2025-06-10T21:47:54.872411-07:00,0.0,10.762469,10762.469 +7350,2025-06-10T21:48:05.637318-07:00,0.0,10.764907,10764.907 +7351,2025-06-10T21:48:16.409370-07:00,0.0,10.772052,10772.052 +7352,2025-06-10T21:48:27.164093-07:00,0.0,10.754723,10754.723 +7353,2025-06-10T21:48:37.939000-07:00,0.0,10.774907,10774.907 +7354,2025-06-10T21:48:48.697513-07:00,0.0,10.758513,10758.513 +7355,2025-06-10T21:48:59.455677-07:00,0.0,10.758164,10758.164 +7356,2025-06-10T21:49:10.224773-07:00,0.0,10.769096,10769.096 +7357,2025-06-10T21:49:20.985712-07:00,0.0,10.760939,10760.939 +7358,2025-06-10T21:49:31.757104-07:00,0.0,10.771392,10771.392 +7359,2025-06-10T21:49:42.509351-07:00,0.0,10.752247,10752.247 +7360,2025-06-10T21:49:53.283229-07:00,0.0,10.773878,10773.878 +7361,2025-06-10T21:50:04.036683-07:00,0.0,10.753454,10753.454 +7362,2025-06-10T21:50:14.799114-07:00,0.0,10.762431,10762.431 +7363,2025-06-10T21:50:25.558097-07:00,0.0,10.758983,10758.983 +7364,2025-06-10T21:50:36.320657-07:00,0.0,10.76256,10762.56 +7365,2025-06-10T21:50:47.084380-07:00,0.0,10.763723,10763.723 +7366,2025-06-10T21:50:57.847134-07:00,0.0,10.762754,10762.754 +7367,2025-06-10T21:51:08.609349-07:00,0.0,10.762215,10762.215 +7368,2025-06-10T21:51:19.378176-07:00,0.0,10.768827,10768.827 +7369,2025-06-10T21:51:30.138366-07:00,0.0,10.76019,10760.19 +7370,2025-06-10T21:51:40.895113-07:00,0.0,10.756747,10756.747 +7371,2025-06-10T21:51:51.660445-07:00,0.0,10.765332,10765.332 +7372,2025-06-10T21:52:02.423067-07:00,0.0,10.762622,10762.622 +7373,2025-06-10T21:52:13.224633-07:00,0.0,10.801566,10801.566 +7374,2025-06-10T21:52:23.989516-07:00,0.0,10.764883,10764.883 +7375,2025-06-10T21:52:34.756514-07:00,0.0,10.766998,10766.998 +7376,2025-06-10T21:52:45.514720-07:00,0.0,10.758206,10758.206 +7377,2025-06-10T21:52:56.281904-07:00,0.0,10.767184,10767.184 +7378,2025-06-10T21:53:07.043045-07:00,0.0,10.761141,10761.141 +7379,2025-06-10T21:53:17.813708-07:00,0.0,10.770663,10770.663 +7380,2025-06-10T21:53:28.584026-07:00,0.0,10.770318,10770.318 +7381,2025-06-10T21:53:39.340971-07:00,0.0,10.756945,10756.945 +7382,2025-06-10T21:53:50.109722-07:00,0.0,10.768751,10768.751 +7383,2025-06-10T21:54:00.875842-07:00,0.0,10.76612,10766.12 +7384,2025-06-10T21:54:11.631858-07:00,0.0,10.756016,10756.016 +7385,2025-06-10T21:54:22.397475-07:00,0.0,10.765617,10765.617 +7386,2025-06-10T21:54:33.157656-07:00,0.0,10.760181,10760.181 +7387,2025-06-10T21:54:43.927810-07:00,0.0,10.770154,10770.154 +7388,2025-06-10T21:54:54.685845-07:00,0.0,10.758035,10758.035 +7389,2025-06-10T21:55:05.450483-07:00,0.0,10.764638,10764.638 +7390,2025-06-10T21:55:16.212521-07:00,0.0,10.762038,10762.038 +7391,2025-06-10T21:55:26.976636-07:00,0.0,10.764115,10764.115 +7392,2025-06-10T21:55:37.740730-07:00,0.0,10.764094,10764.094 +7393,2025-06-10T21:55:48.498453-07:00,0.0,10.757723,10757.723 +7394,2025-06-10T21:55:59.267645-07:00,0.0,10.769192,10769.192 +7395,2025-06-10T21:56:10.031229-07:00,0.0,10.763584,10763.584 +7396,2025-06-10T21:56:20.793719-07:00,0.0,10.76249,10762.49 +7397,2025-06-10T21:56:31.558808-07:00,0.0,10.765089,10765.089 +7398,2025-06-10T21:56:42.323881-07:00,0.0,10.765073,10765.073 +7399,2025-06-10T21:56:53.084766-07:00,0.0,10.760885,10760.885 +7400,2025-06-10T21:57:03.850097-07:00,0.0,10.765331,10765.331 +7401,2025-06-10T21:57:14.607851-07:00,0.0,10.757754,10757.754 +7402,2025-06-10T21:57:25.368704-07:00,0.0,10.760853,10760.853 +7403,2025-06-10T21:57:36.127484-07:00,0.0,10.75878,10758.78 +7404,2025-06-10T21:57:46.894737-07:00,0.0,10.767253,10767.253 +7405,2025-06-10T21:57:57.659526-07:00,0.0,10.764789,10764.789 +7406,2025-06-10T21:58:08.415599-07:00,0.0,10.756073,10756.073 +7407,2025-06-10T21:58:19.179507-07:00,0.0,10.763908,10763.908 +7408,2025-06-10T21:58:29.944471-07:00,0.0,10.764964,10764.964 +7409,2025-06-10T21:58:40.709463-07:00,0.0,10.764992,10764.992 +7410,2025-06-10T21:58:51.467732-07:00,0.0,10.758269,10758.269 +7411,2025-06-10T21:59:02.239683-07:00,0.0,10.771951,10771.951 +7412,2025-06-10T21:59:12.997478-07:00,0.0,10.757795,10757.795 +7413,2025-06-10T21:59:23.756471-07:00,0.0,10.758993,10758.993 +7414,2025-06-10T21:59:34.523425-07:00,0.0,10.766954,10766.954 +7415,2025-06-10T21:59:45.283865-07:00,0.0,10.76044,10760.44 +7416,2025-06-10T21:59:56.042487-07:00,0.0,10.758622,10758.622 +7417,2025-06-10T22:00:06.804469-07:00,0.0,10.761982,10761.982 +7418,2025-06-10T22:00:17.564881-07:00,0.0,10.760412,10760.412 +7419,2025-06-10T22:00:28.326723-07:00,0.0,10.761842,10761.842 +7420,2025-06-10T22:00:39.088473-07:00,0.0,10.76175,10761.75 +7421,2025-06-10T22:00:49.855741-07:00,0.0,10.767268,10767.268 +7422,2025-06-10T22:01:00.620839-07:00,0.0,10.765098,10765.098 +7423,2025-06-10T22:01:11.381389-07:00,0.0,10.76055,10760.55 +7424,2025-06-10T22:01:22.148968-07:00,0.0,10.767579,10767.579 +7425,2025-06-10T22:01:32.907010-07:00,0.0,10.758042,10758.042 +7426,2025-06-10T22:01:43.675847-07:00,0.0,10.768837,10768.837 +7427,2025-06-10T22:01:54.435245-07:00,0.0,10.759398,10759.398 +7428,2025-06-10T22:02:05.195512-07:00,0.0,10.760267,10760.267 +7429,2025-06-10T22:02:15.952960-07:00,0.0,10.757448,10757.448 +7430,2025-06-10T22:02:26.720477-07:00,0.0,10.767517,10767.517 +7431,2025-06-10T22:02:37.480848-07:00,0.0,10.760371,10760.371 +7432,2025-06-10T22:02:48.240307-07:00,0.0,10.759459,10759.459 +7433,2025-06-10T22:02:59.003482-07:00,0.0,10.763175,10763.175 +7434,2025-06-10T22:03:09.767597-07:00,0.0,10.764115,10764.115 +7435,2025-06-10T22:03:20.535709-07:00,0.0,10.768112,10768.112 +7436,2025-06-10T22:03:31.296760-07:00,0.0,10.761051,10761.051 +7437,2025-06-10T22:03:42.053470-07:00,0.0,10.75671,10756.71 +7438,2025-06-10T22:03:52.810364-07:00,0.0,10.756894,10756.894 +7439,2025-06-10T22:04:03.574867-07:00,0.0,10.764503,10764.503 +7440,2025-06-10T22:04:14.330992-07:00,0.0,10.756125,10756.125 +7441,2025-06-10T22:04:25.100477-07:00,0.0,10.769485,10769.485 +7442,2025-06-10T22:04:35.859717-07:00,0.0,10.75924,10759.24 +7443,2025-06-10T22:04:46.619156-07:00,0.0,10.759439,10759.439 +7444,2025-06-10T22:04:57.387689-07:00,0.0,10.768533,10768.533 +7445,2025-06-10T22:05:08.143052-07:00,0.0,10.755363,10755.363 +7446,2025-06-10T22:05:18.907531-07:00,0.0,10.764479,10764.479 +7447,2025-06-10T22:05:29.667908-07:00,0.0,10.760377,10760.377 +7448,2025-06-10T22:05:40.437810-07:00,0.0,10.769902,10769.902 +7449,2025-06-10T22:05:51.201467-07:00,0.0,10.763657,10763.657 +7450,2025-06-10T22:06:01.966888-07:00,0.0,10.765421,10765.421 +7451,2025-06-10T22:06:12.731787-07:00,0.0,10.764899,10764.899 +7452,2025-06-10T22:06:23.495519-07:00,0.0,10.763732,10763.732 +7453,2025-06-10T22:06:34.256768-07:00,0.0,10.761249,10761.249 +7454,2025-06-10T22:06:45.022617-07:00,0.0,10.765849,10765.849 +7455,2025-06-10T22:06:55.790549-07:00,0.0,10.767932,10767.932 +7456,2025-06-10T22:07:06.555831-07:00,0.0,10.765282,10765.282 +7457,2025-06-10T22:07:17.323572-07:00,0.0,10.767741,10767.741 +7458,2025-06-10T22:07:28.086728-07:00,0.0,10.763156,10763.156 +7459,2025-06-10T22:07:38.841744-07:00,0.0,10.755016,10755.016 +7460,2025-06-10T22:07:49.603479-07:00,0.0,10.761735,10761.735 +7461,2025-06-10T22:08:00.367534-07:00,0.0,10.764055,10764.055 +7462,2025-06-10T22:08:11.138740-07:00,0.0,10.771206,10771.206 +7463,2025-06-10T22:08:21.897798-07:00,0.0,10.759058,10759.058 +7464,2025-06-10T22:08:32.663577-07:00,0.0,10.765779,10765.779 +7465,2025-06-10T22:08:43.431808-07:00,0.0,10.768231,10768.231 +7466,2025-06-10T22:08:54.194683-07:00,0.0,10.762875,10762.875 +7467,2025-06-10T22:09:04.958486-07:00,0.0,10.763803,10763.803 +7468,2025-06-10T22:09:15.725796-07:00,0.0,10.76731,10767.31 +7469,2025-06-10T22:09:26.490626-07:00,0.0,10.76483,10764.83 +7470,2025-06-10T22:09:37.254481-07:00,0.0,10.763855,10763.855 +7471,2025-06-10T22:09:48.016769-07:00,0.0,10.762288,10762.288 +7472,2025-06-10T22:09:58.779479-07:00,0.0,10.76271,10762.71 +7473,2025-06-10T22:10:09.546470-07:00,0.0,10.766991,10766.991 +7474,2025-06-10T22:10:20.307666-07:00,0.0,10.761196,10761.196 +7475,2025-06-10T22:10:31.072999-07:00,0.0,10.765333,10765.333 +7476,2025-06-10T22:10:41.834728-07:00,0.0,10.761729,10761.729 +7477,2025-06-10T22:10:52.601517-07:00,0.0,10.766789,10766.789 +7478,2025-06-10T22:11:03.359887-07:00,0.0,10.75837,10758.37 +7479,2025-06-10T22:11:14.118735-07:00,0.0,10.758848,10758.848 +7480,2025-06-10T22:11:24.881973-07:00,0.0,10.763238,10763.238 +7481,2025-06-10T22:11:35.644650-07:00,0.0,10.762677,10762.677 +7482,2025-06-10T22:11:46.400805-07:00,0.0,10.756155,10756.155 +7483,2025-06-10T22:11:57.171515-07:00,0.0,10.77071,10770.71 +7484,2025-06-10T22:12:07.927567-07:00,0.0,10.756052,10756.052 +7485,2025-06-10T22:12:18.690124-07:00,0.0,10.762557,10762.557 +7486,2025-06-10T22:12:29.454460-07:00,0.0,10.764336,10764.336 +7487,2025-06-10T22:12:40.216477-07:00,0.0,10.762017,10762.017 +7488,2025-06-10T22:12:50.980713-07:00,0.0,10.764236,10764.236 +7489,2025-06-10T22:13:01.747771-07:00,0.0,10.767058,10767.058 +7490,2025-06-10T22:13:12.500488-07:00,0.0,10.752717,10752.717 +7491,2025-06-10T22:13:23.270479-07:00,0.0,10.769991,10769.991 +7492,2025-06-10T22:13:34.031030-07:00,0.0,10.760551,10760.551 +7493,2025-06-10T22:13:44.791475-07:00,0.0,10.760445,10760.445 +7494,2025-06-10T22:13:55.561512-07:00,0.0,10.770037,10770.037 +7495,2025-06-10T22:14:06.317716-07:00,0.0,10.756204,10756.204 +7496,2025-06-10T22:14:17.082232-07:00,0.0,10.764516,10764.516 +7497,2025-06-10T22:14:27.843698-07:00,0.0,10.761466,10761.466 +7498,2025-06-10T22:14:38.605469-07:00,0.0,10.761771,10761.771 +7499,2025-06-10T22:14:49.371068-07:00,0.0,10.765599,10765.599 +7500,2025-06-10T22:15:00.133711-07:00,0.0,10.762643,10762.643 +7501,2025-06-10T22:15:10.893478-07:00,0.0,10.759767,10759.767 +7502,2025-06-10T22:15:21.665787-07:00,0.0,10.772309,10772.309 +7503,2025-06-10T22:15:32.432726-07:00,0.0,10.766939,10766.939 +7504,2025-06-10T22:15:43.222711-07:00,0.0,10.789985,10789.985 +7505,2025-06-10T22:15:54.004477-07:00,0.0,10.781766,10781.766 +7506,2025-06-10T22:16:04.782468-07:00,0.0,10.777991,10777.991 +7507,2025-06-10T22:16:15.560066-07:00,0.0,10.777598,10777.598 +7508,2025-06-10T22:16:26.321634-07:00,0.0,10.761568,10761.568 +7509,2025-06-10T22:16:37.088716-07:00,0.0,10.767082,10767.082 +7510,2025-06-10T22:16:47.843475-07:00,0.0,10.754759,10754.759 +7511,2025-06-10T22:16:58.616597-07:00,0.0,10.773122,10773.122 +7512,2025-06-10T22:17:09.374473-07:00,0.0,10.757876,10757.876 +7513,2025-06-10T22:17:20.143734-07:00,0.0,10.769261,10769.261 +7514,2025-06-10T22:17:30.901993-07:00,0.0,10.758259,10758.259 +7515,2025-06-10T22:17:41.667477-07:00,0.0,10.765484,10765.484 +7516,2025-06-10T22:17:52.438405-07:00,0.0,10.770928,10770.928 +7517,2025-06-10T22:18:03.201851-07:00,0.0,10.763446,10763.446 +7518,2025-06-10T22:18:13.963046-07:00,0.0,10.761195,10761.195 +7519,2025-06-10T22:18:24.730517-07:00,0.0,10.767471,10767.471 +7520,2025-06-10T22:18:35.485750-07:00,0.0,10.755233,10755.233 +7521,2025-06-10T22:18:46.255506-07:00,0.0,10.769756,10769.756 +7522,2025-06-10T22:18:57.021479-07:00,0.0,10.765973,10765.973 +7523,2025-06-10T22:19:07.788005-07:00,0.0,10.766526,10766.526 +7524,2025-06-10T22:19:18.542763-07:00,0.0,10.754758,10754.758 +7525,2025-06-10T22:19:29.306731-07:00,0.0,10.763968,10763.968 +7526,2025-06-10T22:19:40.071544-07:00,0.0,10.764813,10764.813 +7527,2025-06-10T22:19:50.833728-07:00,0.0,10.762184,10762.184 +7528,2025-06-10T22:20:01.597636-07:00,0.0,10.763908,10763.908 +7529,2025-06-10T22:20:12.369015-07:00,0.0,10.771379,10771.379 +7530,2025-06-10T22:20:23.137483-07:00,0.0,10.768468,10768.468 +7531,2025-06-10T22:20:33.905871-07:00,0.0,10.768388,10768.388 +7532,2025-06-10T22:20:44.663733-07:00,0.0,10.757862,10757.862 +7533,2025-06-10T22:20:55.439810-07:00,0.0,10.776077,10776.077 +7534,2025-06-10T22:21:06.199739-07:00,0.0,10.759929,10759.929 +7535,2025-06-10T22:21:16.961947-07:00,0.0,10.762208,10762.208 +7536,2025-06-10T22:21:27.729595-07:00,0.0,10.767648,10767.648 +7537,2025-06-10T22:21:38.499792-07:00,0.0,10.770197,10770.197 +7538,2025-06-10T22:21:49.262478-07:00,0.0,10.762686,10762.686 +7539,2025-06-10T22:22:00.027465-07:00,0.0,10.764987,10764.987 +7540,2025-06-10T22:22:06.544761-07:00,2287.0,6.517296,6517.296 +7541,2025-06-10T22:22:08.549007-07:00,2688.0,2.004246,2004.246 +7542,2025-06-10T22:22:10.785475-07:00,2699.0,2.236468,2236.468 +7543,2025-06-10T22:22:21.556020-07:00,2795.0,10.770545,10770.545 +7544,2025-06-10T22:22:32.315474-07:00,2736.0,10.759454,10759.454 +7545,2025-06-10T22:22:43.088603-07:00,2727.0,10.773129,10773.129 +7546,2025-06-10T22:22:53.845712-07:00,2702.0,10.757109,10757.109 +7547,2025-06-10T22:23:04.615475-07:00,2727.0,10.769763,10769.763 +7548,2025-06-10T22:23:15.378469-07:00,2773.0,10.762994,10762.994 +7549,2025-06-10T22:23:26.144924-07:00,2750.0,10.766455,10766.455 +7550,2025-06-10T22:23:36.909657-07:00,2757.0,10.764733,10764.733 +7551,2025-06-10T22:23:47.674498-07:00,2771.0,10.764841,10764.841 +7552,2025-06-10T22:23:58.439829-07:00,2731.0,10.765331,10765.331 +7553,2025-06-10T22:24:09.195654-07:00,2719.0,10.755825,10755.825 +7554,2025-06-10T22:24:19.966701-07:00,2757.0,10.771047,10771.047 +7555,2025-06-10T22:24:30.723055-07:00,2738.0,10.756354,10756.354 +7556,2025-06-10T22:24:41.492633-07:00,2775.0,10.769578,10769.578 +7557,2025-06-10T22:24:52.253481-07:00,2774.0,10.760848,10760.848 +7558,2025-06-10T22:25:03.007478-07:00,2773.0,10.753997,10753.997 +7559,2025-06-10T22:25:13.776591-07:00,2701.0,10.769113,10769.113 +7560,2025-06-10T22:25:24.544514-07:00,2699.0,10.767923,10767.923 +7561,2025-06-10T22:25:35.303478-07:00,2718.0,10.758964,10758.964 +7562,2025-06-10T22:25:46.063090-07:00,2725.0,10.759612,10759.612 +7563,2025-06-10T22:25:56.830758-07:00,2757.0,10.767668,10767.668 +7564,2025-06-10T22:26:07.604869-07:00,2741.0,10.774111,10774.111 +7565,2025-06-10T22:26:18.367454-07:00,2753.0,10.762585,10762.585 +7566,2025-06-10T22:26:29.126479-07:00,2679.0,10.759025,10759.025 +7567,2025-06-10T22:26:39.902483-07:00,2739.0,10.776004,10776.004 +7568,2025-06-10T22:26:50.662846-07:00,2743.0,10.760363,10760.363 +7569,2025-06-10T22:27:01.431472-07:00,2742.0,10.768626,10768.626 +7570,2025-06-10T22:27:12.206679-07:00,2635.0,10.775207,10775.207 +7571,2025-06-10T22:27:22.960475-07:00,2686.0,10.753796,10753.796 +7572,2025-06-10T22:27:33.725701-07:00,2727.0,10.765226,10765.226 +7573,2025-06-10T22:27:44.490339-07:00,2693.0,10.764638,10764.638 +7574,2025-06-10T22:27:55.255764-07:00,2740.0,10.765425,10765.425 +7575,2025-06-10T22:28:06.027308-07:00,2667.0,10.771544,10771.544 +7576,2025-06-10T22:28:16.790753-07:00,2715.0,10.763445,10763.445 +7577,2025-06-10T22:28:27.565448-07:00,2747.0,10.774695,10774.695 +7578,2025-06-10T22:28:38.331916-07:00,2700.0,10.766468,10766.468 +7579,2025-06-10T22:28:49.095790-07:00,2746.0,10.763874,10763.874 +7580,2025-06-10T22:28:57.724874-07:00,1812.0,8.629084,8629.084 +7581,2025-06-10T22:28:59.736158-07:00,304.0,2.011284,2011.284 +7582,2025-06-10T22:28:59.874060-07:00,304.0,0.137902,137.902 +7583,2025-06-10T22:29:10.643526-07:00,252.0,10.769466,10769.466 +7584,2025-06-10T22:29:21.413708-07:00,171.0,10.770182,10770.182 +7585,2025-06-10T22:29:32.174241-07:00,285.0,10.760533,10760.533 +7586,2025-06-10T22:29:42.942844-07:00,174.0,10.768603,10768.603 +7587,2025-06-10T22:29:53.714969-07:00,283.0,10.772125,10772.125 +7588,2025-06-10T22:30:04.474093-07:00,272.0,10.759124,10759.124 +7589,2025-06-10T22:30:15.238820-07:00,291.0,10.764727,10764.727 +7590,2025-06-10T22:30:26.008711-07:00,272.0,10.769891,10769.891 +7591,2025-06-10T22:30:34.025919-07:00,0.0,8.017208,8017.208 +7592,2025-06-10T22:30:36.775880-07:00,0.0,2.749961,2749.961 +7593,2025-06-10T22:30:47.547598-07:00,0.0,10.771718,10771.718 +7594,2025-06-10T22:30:58.303548-07:00,0.0,10.75595,10755.95 +7595,2025-06-10T22:31:09.066001-07:00,0.0,10.762453,10762.453 +7596,2025-06-10T22:31:19.833510-07:00,0.0,10.767509,10767.509 +7597,2025-06-10T22:31:30.597031-07:00,0.0,10.763521,10763.521 +7598,2025-06-10T22:31:41.359817-07:00,0.0,10.762786,10762.786 +7599,2025-06-10T22:31:52.120026-07:00,0.0,10.760209,10760.209 +7600,2025-06-10T22:32:02.883788-07:00,0.0,10.763762,10763.762 +7601,2025-06-10T22:32:13.646619-07:00,0.0,10.762831,10762.831 +7602,2025-06-10T22:32:24.413477-07:00,0.0,10.766858,10766.858 +7603,2025-06-10T22:32:35.177693-07:00,0.0,10.764216,10764.216 +7604,2025-06-10T22:32:45.940244-07:00,0.0,10.762551,10762.551 +7605,2025-06-10T22:32:56.703874-07:00,0.0,10.76363,10763.63 +7606,2025-06-10T22:33:07.465992-07:00,0.0,10.762118,10762.118 +7607,2025-06-10T22:33:18.224452-07:00,0.0,10.75846,10758.46 +7608,2025-06-10T22:33:28.991061-07:00,0.0,10.766609,10766.609 +7609,2025-06-10T22:33:39.747660-07:00,0.0,10.756599,10756.599 +7610,2025-06-10T22:33:50.515886-07:00,0.0,10.768226,10768.226 +7611,2025-06-10T22:34:01.277398-07:00,0.0,10.761512,10761.512 +7612,2025-06-10T22:34:12.043594-07:00,0.0,10.766196,10766.196 +7613,2025-06-10T22:34:22.809543-07:00,0.0,10.765949,10765.949 +7614,2025-06-10T22:34:33.563458-07:00,0.0,10.753915,10753.915 +7615,2025-06-10T22:34:44.332577-07:00,0.0,10.769119,10769.119 +7616,2025-06-10T22:34:55.096477-07:00,0.0,10.7639,10763.9 +7617,2025-06-10T22:35:05.858470-07:00,0.0,10.761993,10761.993 +7618,2025-06-10T22:35:16.617740-07:00,0.0,10.75927,10759.27 +7619,2025-06-10T22:35:27.386701-07:00,0.0,10.768961,10768.961 +7620,2025-06-10T22:35:38.152777-07:00,0.0,10.766076,10766.076 +7621,2025-06-10T22:35:48.915774-07:00,0.0,10.762997,10762.997 +7622,2025-06-10T22:35:59.673477-07:00,0.0,10.757703,10757.703 +7623,2025-06-10T22:36:10.442472-07:00,0.0,10.768995,10768.995 +7624,2025-06-10T22:36:21.209841-07:00,0.0,10.767369,10767.369 +7625,2025-06-10T22:36:31.979622-07:00,0.0,10.769781,10769.781 +7626,2025-06-10T22:36:42.741641-07:00,0.0,10.762019,10762.019 +7627,2025-06-10T22:36:53.505111-07:00,0.0,10.76347,10763.47 +7628,2025-06-10T22:37:04.274477-07:00,0.0,10.769366,10769.366 +7629,2025-06-10T22:37:15.033736-07:00,0.0,10.759259,10759.259 +7630,2025-06-10T22:37:25.799662-07:00,0.0,10.765926,10765.926 +7631,2025-06-10T22:37:36.566726-07:00,0.0,10.767064,10767.064 +7632,2025-06-10T22:37:47.325515-07:00,0.0,10.758789,10758.789 +7633,2025-06-10T22:37:58.090808-07:00,0.0,10.765293,10765.293 +7634,2025-06-10T22:38:08.859475-07:00,0.0,10.768667,10768.667 +7635,2025-06-10T22:38:19.624062-07:00,0.0,10.764587,10764.587 +7636,2025-06-10T22:38:30.380475-07:00,0.0,10.756413,10756.413 +7637,2025-06-10T22:38:41.144821-07:00,0.0,10.764346,10764.346 +7638,2025-06-10T22:38:51.914709-07:00,0.0,10.769888,10769.888 +7639,2025-06-10T22:39:02.679571-07:00,0.0,10.764862,10764.862 +7640,2025-06-10T22:39:13.443475-07:00,0.0,10.763904,10763.904 +7641,2025-06-10T22:39:24.202527-07:00,0.0,10.759052,10759.052 +7642,2025-06-10T22:39:34.974521-07:00,0.0,10.771994,10771.994 +7643,2025-06-10T22:39:45.735856-07:00,0.0,10.761335,10761.335 +7644,2025-06-10T22:39:56.504478-07:00,0.0,10.768622,10768.622 +7645,2025-06-10T22:40:07.272790-07:00,0.0,10.768312,10768.312 +7646,2025-06-10T22:40:18.036460-07:00,0.0,10.76367,10763.67 +7647,2025-06-10T22:40:28.802727-07:00,0.0,10.766267,10766.267 +7648,2025-06-10T22:40:39.575350-07:00,0.0,10.772623,10772.623 +7649,2025-06-10T22:40:50.335475-07:00,0.0,10.760125,10760.125 +7650,2025-06-10T22:41:01.101622-07:00,0.0,10.766147,10766.147 +7651,2025-06-10T22:41:11.862764-07:00,0.0,10.761142,10761.142 +7652,2025-06-10T22:41:22.630475-07:00,0.0,10.767711,10767.711 +7653,2025-06-10T22:41:33.404255-07:00,0.0,10.77378,10773.78 +7654,2025-06-10T22:41:44.161921-07:00,0.0,10.757666,10757.666 +7655,2025-06-10T22:41:54.922512-07:00,0.0,10.760591,10760.591 +7656,2025-06-10T22:42:05.692675-07:00,0.0,10.770163,10770.163 +7657,2025-06-10T22:42:16.456737-07:00,0.0,10.764062,10764.062 +7658,2025-06-10T22:42:27.225697-07:00,0.0,10.76896,10768.96 +7659,2025-06-10T22:42:37.990477-07:00,0.0,10.76478,10764.78 +7660,2025-06-10T22:42:48.753062-07:00,0.0,10.762585,10762.585 +7661,2025-06-10T22:42:59.517667-07:00,0.0,10.764605,10764.605 +7662,2025-06-10T22:43:10.289009-07:00,0.0,10.771342,10771.342 +7663,2025-06-10T22:43:21.051625-07:00,0.0,10.762616,10762.616 +7664,2025-06-10T22:43:31.822654-07:00,0.0,10.771029,10771.029 +7665,2025-06-10T22:43:42.581586-07:00,0.0,10.758932,10758.932 +7666,2025-06-10T22:43:53.349773-07:00,0.0,10.768187,10768.187 +7667,2025-06-10T22:44:04.122561-07:00,0.0,10.772788,10772.788 +7668,2025-06-10T22:44:14.882798-07:00,0.0,10.760237,10760.237 +7669,2025-06-10T22:44:25.652480-07:00,0.0,10.769682,10769.682 +7670,2025-06-10T22:44:36.417526-07:00,0.0,10.765046,10765.046 +7671,2025-06-10T22:44:47.183843-07:00,0.0,10.766317,10766.317 +7672,2025-06-10T22:44:57.947915-07:00,0.0,10.764072,10764.072 +7673,2025-06-10T22:45:08.721117-07:00,0.0,10.773202,10773.202 +7674,2025-06-10T22:45:19.482711-07:00,0.0,10.761594,10761.594 +7675,2025-06-10T22:45:30.249708-07:00,0.0,10.766997,10766.997 +7676,2025-06-10T22:45:41.012575-07:00,0.0,10.762867,10762.867 +7677,2025-06-10T22:45:51.773847-07:00,0.0,10.761272,10761.272 +7678,2025-06-10T22:46:02.534472-07:00,0.0,10.760625,10760.625 +7679,2025-06-10T22:46:13.301506-07:00,0.0,10.767034,10767.034 +7680,2025-06-10T22:46:24.073687-07:00,0.0,10.772181,10772.181 +7681,2025-06-10T22:46:34.839708-07:00,0.0,10.766021,10766.021 +7682,2025-06-10T22:46:45.592475-07:00,0.0,10.752767,10752.767 +7683,2025-06-10T22:46:56.368988-07:00,0.0,10.776513,10776.513 +7684,2025-06-10T22:47:07.127465-07:00,0.0,10.758477,10758.477 +7685,2025-06-10T22:47:17.886165-07:00,0.0,10.7587,10758.7 +7686,2025-06-10T22:47:28.652715-07:00,0.0,10.76655,10766.55 +7687,2025-06-10T22:47:39.415522-07:00,0.0,10.762807,10762.807 +7688,2025-06-10T22:47:50.178470-07:00,0.0,10.762948,10762.948 +7689,2025-06-10T22:48:00.948061-07:00,0.0,10.769591,10769.591 +7690,2025-06-10T22:48:11.703874-07:00,0.0,10.755813,10755.813 +7691,2025-06-10T22:48:22.467551-07:00,0.0,10.763677,10763.677 +7692,2025-06-10T22:48:33.235526-07:00,0.0,10.767975,10767.975 +7693,2025-06-10T22:48:43.994088-07:00,0.0,10.758562,10758.562 +7694,2025-06-10T22:48:54.759475-07:00,0.0,10.765387,10765.387 +7695,2025-06-10T22:49:05.524469-07:00,0.0,10.764994,10764.994 +7696,2025-06-10T22:49:16.294572-07:00,0.0,10.770103,10770.103 +7697,2025-06-10T22:49:27.049483-07:00,0.0,10.754911,10754.911 +7698,2025-06-10T22:49:37.814729-07:00,0.0,10.765246,10765.246 +7699,2025-06-10T22:49:48.586458-07:00,0.0,10.771729,10771.729 +7700,2025-06-10T22:49:59.342698-07:00,0.0,10.75624,10756.24 +7701,2025-06-10T22:50:10.118263-07:00,0.0,10.775565,10775.565 +7702,2025-06-10T22:50:20.880807-07:00,0.0,10.762544,10762.544 +7703,2025-06-10T22:50:31.645472-07:00,0.0,10.764665,10764.665 +7704,2025-06-10T22:50:42.408550-07:00,0.0,10.763078,10763.078 +7705,2025-06-10T22:50:53.176620-07:00,0.0,10.76807,10768.07 +7706,2025-06-10T22:51:03.946785-07:00,0.0,10.770165,10770.165 +7707,2025-06-10T22:51:14.712974-07:00,0.0,10.766189,10766.189 +7708,2025-06-10T22:51:25.470989-07:00,0.0,10.758015,10758.015 +7709,2025-06-10T22:51:36.232580-07:00,0.0,10.761591,10761.591 +7710,2025-06-10T22:51:46.998505-07:00,0.0,10.765925,10765.925 +7711,2025-06-10T22:51:57.762616-07:00,0.0,10.764111,10764.111 +7712,2025-06-10T22:52:08.526162-07:00,0.0,10.763546,10763.546 +7713,2025-06-10T22:52:19.293097-07:00,0.0,10.766935,10766.935 +7714,2025-06-10T22:52:30.062166-07:00,0.0,10.769069,10769.069 +7715,2025-06-10T22:52:40.818167-07:00,0.0,10.756001,10756.001 +7716,2025-06-10T22:52:51.590320-07:00,0.0,10.772153,10772.153 +7717,2025-06-10T22:53:02.352304-07:00,0.0,10.761984,10761.984 +7718,2025-06-10T22:53:13.112301-07:00,0.0,10.759997,10759.997 +7719,2025-06-10T22:53:23.874162-07:00,0.0,10.761861,10761.861 +7720,2025-06-10T22:53:34.643502-07:00,0.0,10.76934,10769.34 +7721,2025-06-10T22:53:45.400383-07:00,0.0,10.756881,10756.881 +7722,2025-06-10T22:53:56.165283-07:00,0.0,10.7649,10764.9 +7723,2025-06-10T22:54:06.934449-07:00,0.0,10.769166,10769.166 +7724,2025-06-10T22:54:17.697195-07:00,0.0,10.762746,10762.746 +7725,2025-06-10T22:54:28.463143-07:00,0.0,10.765948,10765.948 +7726,2025-06-10T22:54:39.230817-07:00,0.0,10.767674,10767.674 +7727,2025-06-10T22:54:49.991144-07:00,0.0,10.760327,10760.327 +7728,2025-06-10T22:55:00.750731-07:00,0.0,10.759587,10759.587 +7729,2025-06-10T22:55:11.516896-07:00,0.0,10.766165,10766.165 +7730,2025-06-10T22:55:22.279330-07:00,0.0,10.762434,10762.434 +7731,2025-06-10T22:55:33.038142-07:00,0.0,10.758812,10758.812 +7732,2025-06-10T22:55:43.809977-07:00,0.0,10.771835,10771.835 +7733,2025-06-10T22:55:54.570562-07:00,0.0,10.760585,10760.585 +7734,2025-06-10T22:56:05.322405-07:00,0.0,10.751843,10751.843 +7735,2025-06-10T22:56:16.087154-07:00,0.0,10.764749,10764.749 +7736,2025-06-10T22:56:26.860695-07:00,0.0,10.773541,10773.541 +7737,2025-06-10T22:56:37.623160-07:00,0.0,10.762465,10762.465 +7738,2025-06-10T22:56:48.382144-07:00,0.0,10.758984,10758.984 +7739,2025-06-10T22:56:59.145851-07:00,0.0,10.763707,10763.707 +7740,2025-06-10T22:57:09.911483-07:00,0.0,10.765632,10765.632 +7741,2025-06-10T22:57:20.679317-07:00,0.0,10.767834,10767.834 +7742,2025-06-10T22:57:31.432438-07:00,0.0,10.753121,10753.121 +7743,2025-06-10T22:57:42.195506-07:00,0.0,10.763068,10763.068 +7744,2025-06-10T22:57:52.962158-07:00,0.0,10.766652,10766.652 +7745,2025-06-10T22:58:03.726195-07:00,0.0,10.764037,10764.037 +7746,2025-06-10T22:58:14.489513-07:00,0.0,10.763318,10763.318 +7747,2025-06-10T22:58:25.250731-07:00,0.0,10.761218,10761.218 +7748,2025-06-10T22:58:36.013159-07:00,0.0,10.762428,10762.428 +7749,2025-06-10T22:58:46.767165-07:00,0.0,10.754006,10754.006 +7750,2025-06-10T22:58:57.532441-07:00,0.0,10.765276,10765.276 +7751,2025-06-10T22:59:08.291351-07:00,0.0,10.75891,10758.91 +7752,2025-06-10T22:59:19.046156-07:00,0.0,10.754805,10754.805 +7753,2025-06-10T22:59:29.805362-07:00,0.0,10.759206,10759.206 +7754,2025-06-10T22:59:40.574688-07:00,0.0,10.769326,10769.326 +7755,2025-06-10T22:59:51.331705-07:00,0.0,10.757017,10757.017 +7756,2025-06-10T23:00:02.101415-07:00,0.0,10.76971,10769.71 +7757,2025-06-10T23:00:12.856643-07:00,0.0,10.755228,10755.228 +7758,2025-06-10T23:00:23.620459-07:00,0.0,10.763816,10763.816 +7759,2025-06-10T23:00:34.382320-07:00,0.0,10.761861,10761.861 +7760,2025-06-10T23:00:45.148306-07:00,0.0,10.765986,10765.986 +7761,2025-06-10T23:00:55.902052-07:00,0.0,10.753746,10753.746 +7762,2025-06-10T23:01:06.665497-07:00,0.0,10.763445,10763.445 +7763,2025-06-10T23:01:17.432161-07:00,0.0,10.766664,10766.664 +7764,2025-06-10T23:01:28.187194-07:00,0.0,10.755033,10755.033 +7765,2025-06-10T23:01:38.953686-07:00,0.0,10.766492,10766.492 +7766,2025-06-10T23:01:49.714158-07:00,0.0,10.760472,10760.472 +7767,2025-06-10T23:02:00.472497-07:00,0.0,10.758339,10758.339 +7768,2025-06-10T23:02:11.228211-07:00,0.0,10.755714,10755.714 +7769,2025-06-10T23:02:21.996475-07:00,0.0,10.768264,10768.264 +7770,2025-06-10T23:02:32.755492-07:00,0.0,10.759017,10759.017 +7771,2025-06-10T23:02:43.509166-07:00,0.0,10.753674,10753.674 +7772,2025-06-10T23:02:54.276148-07:00,0.0,10.766982,10766.982 +7773,2025-06-10T23:03:05.038441-07:00,0.0,10.762293,10762.293 +7774,2025-06-10T23:03:15.798601-07:00,0.0,10.76016,10760.16 +7775,2025-06-10T23:03:26.551404-07:00,0.0,10.752803,10752.803 +7776,2025-06-10T23:03:37.315162-07:00,0.0,10.763758,10763.758 +7777,2025-06-10T23:03:48.077710-07:00,0.0,10.762548,10762.548 +7778,2025-06-10T23:03:58.836514-07:00,0.0,10.758804,10758.804 +7779,2025-06-10T23:04:09.603407-07:00,0.0,10.766893,10766.893 +7780,2025-06-10T23:04:20.360156-07:00,0.0,10.756749,10756.749 +7781,2025-06-10T23:04:31.120491-07:00,0.0,10.760335,10760.335 +7782,2025-06-10T23:04:41.878343-07:00,0.0,10.757852,10757.852 +7783,2025-06-10T23:04:52.644166-07:00,0.0,10.765823,10765.823 +7784,2025-06-10T23:05:03.398360-07:00,0.0,10.754194,10754.194 +7785,2025-06-10T23:05:14.162427-07:00,0.0,10.764067,10764.067 +7786,2025-06-10T23:05:24.917573-07:00,0.0,10.755146,10755.146 +7787,2025-06-10T23:05:35.684454-07:00,0.0,10.766881,10766.881 +7788,2025-06-10T23:05:46.440340-07:00,0.0,10.755886,10755.886 +7789,2025-06-10T23:05:57.204396-07:00,0.0,10.764056,10764.056 +7790,2025-06-10T23:06:07.969162-07:00,0.0,10.764766,10764.766 +7791,2025-06-10T23:06:18.735377-07:00,0.0,10.766215,10766.215 +7792,2025-06-10T23:06:29.493358-07:00,0.0,10.757981,10757.981 +7793,2025-06-10T23:06:40.256125-07:00,0.0,10.762767,10762.767 +7794,2025-06-10T23:06:51.019168-07:00,0.0,10.763043,10763.043 +7795,2025-06-10T23:07:01.777199-07:00,0.0,10.758031,10758.031 +7796,2025-06-10T23:07:12.541454-07:00,0.0,10.764255,10764.255 +7797,2025-06-10T23:07:23.303675-07:00,0.0,10.762221,10762.221 +7798,2025-06-10T23:07:34.069669-07:00,0.0,10.765994,10765.994 +7799,2025-06-10T23:07:44.832461-07:00,0.0,10.762792,10762.792 +7800,2025-06-10T23:07:55.594818-07:00,0.0,10.762357,10762.357 +7801,2025-06-10T23:08:06.356303-07:00,0.0,10.761485,10761.485 +7802,2025-06-10T23:08:17.116458-07:00,0.0,10.760155,10760.155 +7803,2025-06-10T23:08:27.889352-07:00,0.0,10.772894,10772.894 +7804,2025-06-10T23:08:38.646162-07:00,0.0,10.75681,10756.81 +7805,2025-06-10T23:08:49.405403-07:00,0.0,10.759241,10759.241 +7806,2025-06-10T23:09:00.165400-07:00,0.0,10.759997,10759.997 +7807,2025-06-10T23:09:10.931840-07:00,0.0,10.76644,10766.44 +7808,2025-06-10T23:09:21.689157-07:00,0.0,10.757317,10757.317 +7809,2025-06-10T23:09:32.452151-07:00,0.0,10.762994,10762.994 +7810,2025-06-10T23:09:43.217490-07:00,0.0,10.765339,10765.339 +7811,2025-06-10T23:09:53.979510-07:00,0.0,10.76202,10762.02 +7812,2025-06-10T23:10:04.748154-07:00,0.0,10.768644,10768.644 +7813,2025-06-10T23:10:15.516444-07:00,0.0,10.76829,10768.29 +7814,2025-06-10T23:10:26.283150-07:00,0.0,10.766706,10766.706 +7815,2025-06-10T23:10:37.041159-07:00,0.0,10.758009,10758.009 +7816,2025-06-10T23:10:47.810495-07:00,0.0,10.769336,10769.336 +7817,2025-06-10T23:10:58.566143-07:00,0.0,10.755648,10755.648 +7818,2025-06-10T23:11:09.337160-07:00,0.0,10.771017,10771.017 +7819,2025-06-10T23:11:20.101481-07:00,0.0,10.764321,10764.321 +7820,2025-06-10T23:11:30.856541-07:00,0.0,10.75506,10755.06 +7821,2025-06-10T23:11:41.626162-07:00,0.0,10.769621,10769.621 +7822,2025-06-10T23:11:52.389206-07:00,0.0,10.763044,10763.044 +7823,2025-06-10T23:12:03.148436-07:00,0.0,10.75923,10759.23 +7824,2025-06-10T23:12:13.901318-07:00,0.0,10.752882,10752.882 +7825,2025-06-10T23:12:24.669237-07:00,0.0,10.767919,10767.919 +7826,2025-06-10T23:12:35.429382-07:00,0.0,10.760145,10760.145 +7827,2025-06-10T23:12:46.185427-07:00,0.0,10.756045,10756.045 +7828,2025-06-10T23:12:56.956166-07:00,0.0,10.770739,10770.739 +7829,2025-06-10T23:13:07.716164-07:00,0.0,10.759998,10759.998 +7830,2025-06-10T23:13:18.478730-07:00,0.0,10.762566,10762.566 +7831,2025-06-10T23:13:29.230516-07:00,0.0,10.751786,10751.786 +7832,2025-06-10T23:13:39.997161-07:00,0.0,10.766645,10766.645 +7833,2025-06-10T23:13:50.753307-07:00,0.0,10.756146,10756.146 +7834,2025-06-10T23:14:01.515403-07:00,0.0,10.762096,10762.096 +7835,2025-06-10T23:14:12.279516-07:00,0.0,10.764113,10764.113 +7836,2025-06-10T23:14:23.032221-07:00,0.0,10.752705,10752.705 +7837,2025-06-10T23:14:33.799291-07:00,0.0,10.76707,10767.07 +7838,2025-06-10T23:14:44.560255-07:00,0.0,10.760964,10760.964 +7839,2025-06-10T23:14:55.314790-07:00,0.0,10.754535,10754.535 +7840,2025-06-10T23:15:06.071342-07:00,0.0,10.756552,10756.552 +7841,2025-06-10T23:15:16.841162-07:00,0.0,10.76982,10769.82 +7842,2025-06-10T23:15:27.595155-07:00,0.0,10.753993,10753.993 +7843,2025-06-10T23:15:38.363909-07:00,0.0,10.768754,10768.754 +7844,2025-06-10T23:15:49.128156-07:00,0.0,10.764247,10764.247 +7845,2025-06-10T23:15:59.887145-07:00,0.0,10.758989,10758.989 +7846,2025-06-10T23:16:10.644508-07:00,0.0,10.757363,10757.363 +7847,2025-06-10T23:16:21.398525-07:00,0.0,10.754017,10754.017 +7848,2025-06-10T23:16:32.167502-07:00,0.0,10.768977,10768.977 +7849,2025-06-10T23:16:42.927155-07:00,0.0,10.759653,10759.653 +7850,2025-06-10T23:16:53.696175-07:00,0.0,10.76902,10769.02 +7851,2025-06-10T23:17:04.474759-07:00,0.0,10.778584,10778.584 +7852,2025-06-10T23:17:15.258433-07:00,0.0,10.783674,10783.674 +7853,2025-06-10T23:17:26.046050-07:00,0.0,10.787617,10787.617 +7854,2025-06-10T23:17:36.801111-07:00,0.0,10.755061,10755.061 +7855,2025-06-10T23:17:47.566193-07:00,0.0,10.765082,10765.082 +7856,2025-06-10T23:17:58.321785-07:00,0.0,10.755592,10755.592 +7857,2025-06-10T23:18:09.080477-07:00,0.0,10.758692,10758.692 +7858,2025-06-10T23:18:19.838152-07:00,0.0,10.757675,10757.675 +7859,2025-06-10T23:18:30.594163-07:00,0.0,10.756011,10756.011 +7860,2025-06-10T23:18:41.362192-07:00,0.0,10.768029,10768.029 +7861,2025-06-10T23:18:52.120180-07:00,0.0,10.757988,10757.988 +7862,2025-06-10T23:19:02.878074-07:00,0.0,10.757894,10757.894 +7863,2025-06-10T23:19:13.639378-07:00,0.0,10.761304,10761.304 +7864,2025-06-10T23:19:24.397160-07:00,0.0,10.757782,10757.782 +7865,2025-06-10T23:19:35.166502-07:00,0.0,10.769342,10769.342 +7866,2025-06-10T23:19:45.924300-07:00,0.0,10.757798,10757.798 +7867,2025-06-10T23:19:56.685164-07:00,0.0,10.760864,10760.864 +7868,2025-06-10T23:20:07.450329-07:00,0.0,10.765165,10765.165 +7869,2025-06-10T23:20:18.212824-07:00,0.0,10.762495,10762.495 +7870,2025-06-10T23:20:28.976381-07:00,0.0,10.763557,10763.557 +7871,2025-06-10T23:20:39.734163-07:00,0.0,10.757782,10757.782 +7872,2025-06-10T23:20:50.505766-07:00,0.0,10.771603,10771.603 +7873,2025-06-10T23:21:01.270154-07:00,0.0,10.764388,10764.388 +7874,2025-06-10T23:21:12.035158-07:00,0.0,10.765004,10765.004 +7875,2025-06-10T23:21:22.799360-07:00,0.0,10.764202,10764.202 +7876,2025-06-10T23:21:33.566383-07:00,0.0,10.767023,10767.023 +7877,2025-06-10T23:21:44.330315-07:00,0.0,10.763932,10763.932 +7878,2025-06-10T23:21:55.096477-07:00,0.0,10.766162,10766.162 +7879,2025-06-10T23:22:05.853137-07:00,0.0,10.75666,10756.66 +7880,2025-06-10T23:22:16.622156-07:00,0.0,10.769019,10769.019 +7881,2025-06-10T23:22:27.390418-07:00,0.0,10.768262,10768.262 +7882,2025-06-10T23:22:38.154208-07:00,0.0,10.76379,10763.79 +7883,2025-06-10T23:22:48.910387-07:00,0.0,10.756179,10756.179 +7884,2025-06-10T23:22:59.670207-07:00,0.0,10.75982,10759.82 +7885,2025-06-10T23:23:10.432477-07:00,0.0,10.76227,10762.27 +7886,2025-06-10T23:23:21.202163-07:00,0.0,10.769686,10769.686 +7887,2025-06-10T23:23:31.960504-07:00,0.0,10.758341,10758.341 +7888,2025-06-10T23:23:42.716154-07:00,0.0,10.75565,10755.65 +7889,2025-06-10T23:23:53.484392-07:00,0.0,10.768238,10768.238 +7890,2025-06-10T23:24:04.238613-07:00,0.0,10.754221,10754.221 +7891,2025-06-10T23:24:15.006312-07:00,0.0,10.767699,10767.699 +7892,2025-06-10T23:24:25.767746-07:00,0.0,10.761434,10761.434 +7893,2025-06-10T23:24:36.538364-07:00,0.0,10.770618,10770.618 +7894,2025-06-10T23:24:47.304561-07:00,0.0,10.766197,10766.197 +7895,2025-06-10T23:24:58.059504-07:00,0.0,10.754943,10754.943 +7896,2025-06-10T23:25:08.828554-07:00,0.0,10.76905,10769.05 +7897,2025-06-10T23:25:19.586160-07:00,0.0,10.757606,10757.606 +7898,2025-06-10T23:25:30.355692-07:00,0.0,10.769532,10769.532 +7899,2025-06-10T23:25:41.115165-07:00,0.0,10.759473,10759.473 +7900,2025-06-10T23:25:51.880162-07:00,0.0,10.764997,10764.997 +7901,2025-06-10T23:26:02.638160-07:00,0.0,10.757998,10757.998 +7902,2025-06-10T23:26:13.408506-07:00,0.0,10.770346,10770.346 +7903,2025-06-10T23:26:24.165159-07:00,0.0,10.756653,10756.653 +7904,2025-06-10T23:26:34.936427-07:00,0.0,10.771268,10771.268 +7905,2025-06-10T23:26:45.696472-07:00,0.0,10.760045,10760.045 +7906,2025-06-10T23:26:56.455473-07:00,0.0,10.759001,10759.001 +7907,2025-06-10T23:27:07.221150-07:00,0.0,10.765677,10765.677 +7908,2025-06-10T23:27:17.988422-07:00,0.0,10.767272,10767.272 +7909,2025-06-10T23:27:28.744923-07:00,0.0,10.756501,10756.501 +7910,2025-06-10T23:27:39.506301-07:00,0.0,10.761378,10761.378 +7911,2025-06-10T23:27:50.270164-07:00,0.0,10.763863,10763.863 +7912,2025-06-10T23:28:01.038156-07:00,0.0,10.767992,10767.992 +7913,2025-06-10T23:28:11.797164-07:00,0.0,10.759008,10759.008 +7914,2025-06-10T23:28:22.558164-07:00,0.0,10.761,10761.0 +7915,2025-06-10T23:28:33.327984-07:00,0.0,10.76982,10769.82 +7916,2025-06-10T23:28:44.080818-07:00,0.0,10.752834,10752.834 +7917,2025-06-10T23:28:54.848210-07:00,0.0,10.767392,10767.392 +7918,2025-06-10T23:29:05.615299-07:00,0.0,10.767089,10767.089 +7919,2025-06-10T23:29:16.372497-07:00,0.0,10.757198,10757.198 +7920,2025-06-10T23:29:27.133390-07:00,0.0,10.760893,10760.893 +7921,2025-06-10T23:29:37.893161-07:00,0.0,10.759771,10759.771 +7922,2025-06-10T23:29:48.654351-07:00,0.0,10.76119,10761.19 +7923,2025-06-10T23:29:59.416760-07:00,0.0,10.762409,10762.409 +7924,2025-06-10T23:30:10.181910-07:00,0.0,10.76515,10765.15 +7925,2025-06-10T23:30:20.945358-07:00,0.0,10.763448,10763.448 +7926,2025-06-10T23:30:31.704462-07:00,0.0,10.759104,10759.104 +7927,2025-06-10T23:30:42.472676-07:00,0.0,10.768214,10768.214 +7928,2025-06-10T23:30:53.224167-07:00,0.0,10.751491,10751.491 +7929,2025-06-10T23:31:03.988292-07:00,0.0,10.764125,10764.125 +7930,2025-06-10T23:31:14.755493-07:00,0.0,10.767201,10767.201 +7931,2025-06-10T23:31:25.517153-07:00,0.0,10.76166,10761.66 +7932,2025-06-10T23:31:36.279154-07:00,0.0,10.762001,10762.001 +7933,2025-06-10T23:31:47.031178-07:00,0.0,10.752024,10752.024 +7934,2025-06-10T23:31:57.801423-07:00,0.0,10.770245,10770.245 +7935,2025-06-10T23:32:08.556160-07:00,0.0,10.754737,10754.737 +7936,2025-06-10T23:32:19.314162-07:00,0.0,10.758002,10758.002 +7937,2025-06-10T23:32:30.076312-07:00,0.0,10.76215,10762.15 +7938,2025-06-10T23:32:40.834659-07:00,0.0,10.758347,10758.347 +7939,2025-06-10T23:32:51.590618-07:00,0.0,10.755959,10755.959 +7940,2025-06-10T23:33:02.358162-07:00,0.0,10.767544,10767.544 +7941,2025-06-10T23:33:13.120784-07:00,0.0,10.762622,10762.622 +7942,2025-06-10T23:33:23.882369-07:00,0.0,10.761585,10761.585 +7943,2025-06-10T23:33:34.639181-07:00,0.0,10.756812,10756.812 +7944,2025-06-10T23:33:45.398162-07:00,0.0,10.758981,10758.981 +7945,2025-06-10T23:33:56.166458-07:00,0.0,10.768296,10768.296 +7946,2025-06-10T23:34:06.929444-07:00,0.0,10.762986,10762.986 +7947,2025-06-10T23:34:17.679164-07:00,0.0,10.74972,10749.72 +7948,2025-06-10T23:34:28.441192-07:00,0.0,10.762028,10762.028 +7949,2025-06-10T23:34:39.211430-07:00,0.0,10.770238,10770.238 +7950,2025-06-10T23:34:49.969164-07:00,0.0,10.757734,10757.734 +7951,2025-06-10T23:35:00.732301-07:00,0.0,10.763137,10763.137 +7952,2025-06-10T23:35:11.489164-07:00,0.0,10.756863,10756.863 +7953,2025-06-10T23:35:22.249017-07:00,0.0,10.759853,10759.853 +7954,2025-06-10T23:35:33.010673-07:00,0.0,10.761656,10761.656 +7955,2025-06-10T23:35:43.767407-07:00,0.0,10.756734,10756.734 +7956,2025-06-10T23:35:54.532167-07:00,0.0,10.76476,10764.76 +7957,2025-06-10T23:36:05.292789-07:00,0.0,10.760622,10760.622 +7958,2025-06-10T23:36:16.045532-07:00,0.0,10.752743,10752.743 +7959,2025-06-10T23:36:26.813158-07:00,0.0,10.767626,10767.626 +7960,2025-06-10T23:36:37.568161-07:00,0.0,10.755003,10755.003 +7961,2025-06-10T23:36:48.333854-07:00,0.0,10.765693,10765.693 +7962,2025-06-10T23:36:59.096460-07:00,0.0,10.762606,10762.606 +7963,2025-06-10T23:37:09.857280-07:00,0.0,10.76082,10760.82 +7964,2025-06-10T23:37:20.613147-07:00,0.0,10.755867,10755.867 +7965,2025-06-10T23:37:31.379502-07:00,0.0,10.766355,10766.355 +7966,2025-06-10T23:37:42.138956-07:00,0.0,10.759454,10759.454 +7967,2025-06-10T23:37:52.898149-07:00,0.0,10.759193,10759.193 +7968,2025-06-10T23:38:03.663337-07:00,0.0,10.765188,10765.188 +7969,2025-06-10T23:38:14.427564-07:00,0.0,10.764227,10764.227 +7970,2025-06-10T23:38:25.187405-07:00,0.0,10.759841,10759.841 +7971,2025-06-10T23:38:35.948160-07:00,0.0,10.760755,10760.755 +7972,2025-06-10T23:38:46.710537-07:00,0.0,10.762377,10762.377 +7973,2025-06-10T23:38:57.466477-07:00,0.0,10.75594,10755.94 +7974,2025-06-10T23:39:08.230133-07:00,0.0,10.763656,10763.656 +7975,2025-06-10T23:39:18.991213-07:00,0.0,10.76108,10761.08 +7976,2025-06-10T23:39:29.755210-07:00,0.0,10.763997,10763.997 +7977,2025-06-10T23:39:40.521235-07:00,0.0,10.766025,10766.025 +7978,2025-06-10T23:39:51.281388-07:00,0.0,10.760153,10760.153 +7979,2025-06-10T23:40:02.051570-07:00,0.0,10.770182,10770.182 +7980,2025-06-10T23:40:12.813164-07:00,0.0,10.761594,10761.594 +7981,2025-06-10T23:40:23.569404-07:00,0.0,10.75624,10756.24 +7982,2025-06-10T23:40:34.336342-07:00,0.0,10.766938,10766.938 +7983,2025-06-10T23:40:45.099443-07:00,0.0,10.763101,10763.101 +7984,2025-06-10T23:40:55.857229-07:00,0.0,10.757786,10757.786 +7985,2025-06-10T23:41:06.617164-07:00,0.0,10.759935,10759.935 +7986,2025-06-10T23:41:17.385464-07:00,0.0,10.7683,10768.3 +7987,2025-06-10T23:41:28.149242-07:00,0.0,10.763778,10763.778 +7988,2025-06-10T23:41:38.913163-07:00,0.0,10.763921,10763.921 +7989,2025-06-10T23:41:49.665145-07:00,0.0,10.751982,10751.982 +7990,2025-06-10T23:42:00.434747-07:00,0.0,10.769602,10769.602 +7991,2025-06-10T23:42:11.195164-07:00,0.0,10.760417,10760.417 +7992,2025-06-10T23:42:21.959413-07:00,0.0,10.764249,10764.249 +7993,2025-06-10T23:42:32.711160-07:00,0.0,10.751747,10751.747 +7994,2025-06-10T23:42:43.479497-07:00,0.0,10.768337,10768.337 +7995,2025-06-10T23:42:54.235290-07:00,0.0,10.755793,10755.793 +7996,2025-06-10T23:43:04.994759-07:00,0.0,10.759469,10759.469 +7997,2025-06-10T23:43:15.753207-07:00,0.0,10.758448,10758.448 +7998,2025-06-10T23:43:26.508225-07:00,0.0,10.755018,10755.018 +7999,2025-06-10T23:43:37.264070-07:00,0.0,10.755845,10755.845 +8000,2025-06-10T23:43:48.023740-07:00,0.0,10.75967,10759.67 +8001,2025-06-10T23:43:58.778141-07:00,0.0,10.754401,10754.401 +8002,2025-06-10T23:44:09.538403-07:00,0.0,10.760262,10760.262 +8003,2025-06-10T23:44:20.292163-07:00,0.0,10.75376,10753.76 +8004,2025-06-10T23:44:31.054493-07:00,0.0,10.76233,10762.33 +8005,2025-06-10T23:44:41.810177-07:00,0.0,10.755684,10755.684 +8006,2025-06-10T23:44:52.575401-07:00,0.0,10.765224,10765.224 +8007,2025-06-10T23:45:03.339141-07:00,0.0,10.76374,10763.74 +8008,2025-06-10T23:45:14.099302-07:00,0.0,10.760161,10760.161 +8009,2025-06-10T23:45:24.848892-07:00,0.0,10.74959,10749.59 +8010,2025-06-10T23:45:35.615151-07:00,0.0,10.766259,10766.259 +8011,2025-06-10T23:45:46.370164-07:00,0.0,10.755013,10755.013 +8012,2025-06-10T23:45:57.133225-07:00,0.0,10.763061,10763.061 +8013,2025-06-10T23:46:07.887477-07:00,0.0,10.754252,10754.252 +8014,2025-06-10T23:46:18.644305-07:00,0.0,10.756828,10756.828 +8015,2025-06-10T23:46:29.404139-07:00,0.0,10.759834,10759.834 +8016,2025-06-10T23:46:40.165164-07:00,0.0,10.761025,10761.025 +8017,2025-06-10T23:46:50.925864-07:00,0.0,10.7607,10760.7 +8018,2025-06-10T23:47:01.688493-07:00,0.0,10.762629,10762.629 +8019,2025-06-10T23:47:12.455589-07:00,0.0,10.767096,10767.096 +8020,2025-06-10T23:47:23.215183-07:00,0.0,10.759594,10759.594 +8021,2025-06-10T23:47:33.976416-07:00,0.0,10.761233,10761.233 +8022,2025-06-10T23:47:44.738333-07:00,0.0,10.761917,10761.917 +8023,2025-06-10T23:47:55.501157-07:00,0.0,10.762824,10762.824 +8024,2025-06-10T23:48:06.264308-07:00,0.0,10.763151,10763.151 +8025,2025-06-10T23:48:17.021440-07:00,0.0,10.757132,10757.132 +8026,2025-06-10T23:48:27.783157-07:00,0.0,10.761717,10761.717 +8027,2025-06-10T23:48:38.538418-07:00,0.0,10.755261,10755.261 +8028,2025-06-10T23:48:49.305141-07:00,0.0,10.766723,10766.723 +8029,2025-06-10T23:49:00.060502-07:00,0.0,10.755361,10755.361 +8030,2025-06-10T23:49:10.829164-07:00,0.0,10.768662,10768.662 +8031,2025-06-10T23:49:21.587162-07:00,0.0,10.757998,10757.998 +8032,2025-06-10T23:49:32.355669-07:00,0.0,10.768507,10768.507 +8033,2025-06-10T23:49:43.110578-07:00,0.0,10.754909,10754.909 +8034,2025-06-10T23:49:53.870178-07:00,0.0,10.7596,10759.6 +8035,2025-06-10T23:50:04.628314-07:00,0.0,10.758136,10758.136 +8036,2025-06-10T23:50:15.398493-07:00,0.0,10.770179,10770.179 +8037,2025-06-10T23:50:26.149446-07:00,0.0,10.750953,10750.953 +8038,2025-06-10T23:50:36.908154-07:00,0.0,10.758708,10758.708 +8039,2025-06-10T23:50:47.672164-07:00,0.0,10.76401,10764.01 +8040,2025-06-10T23:50:58.438977-07:00,0.0,10.766813,10766.813 +8041,2025-06-10T23:51:09.199164-07:00,0.0,10.760187,10760.187 +8042,2025-06-10T23:51:19.964155-07:00,0.0,10.764991,10764.991 +8043,2025-06-10T23:51:30.732475-07:00,0.0,10.76832,10768.32 +8044,2025-06-10T23:51:41.482492-07:00,0.0,10.750017,10750.017 +8045,2025-06-10T23:51:52.245154-07:00,0.0,10.762662,10762.662 +8046,2025-06-10T23:52:03.010155-07:00,0.0,10.765001,10765.001 +8047,2025-06-10T23:52:13.784388-07:00,0.0,10.774233,10774.233 +8048,2025-06-10T23:52:24.548390-07:00,0.0,10.764002,10764.002 +8049,2025-06-10T23:52:35.304332-07:00,0.0,10.755942,10755.942 +8050,2025-06-10T23:52:46.072134-07:00,0.0,10.767802,10767.802 +8051,2025-06-10T23:52:56.832355-07:00,0.0,10.760221,10760.221 +8052,2025-06-10T23:53:07.591087-07:00,0.0,10.758732,10758.732 +8053,2025-06-10T23:53:18.356015-07:00,0.0,10.764928,10764.928 +8054,2025-06-10T23:53:29.123017-07:00,0.0,10.767002,10767.002 +8055,2025-06-10T23:53:39.881534-07:00,0.0,10.758517,10758.517 +8056,2025-06-10T23:53:50.649029-07:00,0.0,10.767495,10767.495 +8057,2025-06-10T23:54:01.404597-07:00,0.0,10.755568,10755.568 +8058,2025-06-10T23:54:12.162090-07:00,0.0,10.757493,10757.493 +8059,2025-06-10T23:54:12.325204-07:00,0.0,0.163114,163.114 +8060,2025-06-10T23:54:22.931296-07:00,0.0,10.606092,10606.092 +8061,2025-06-10T23:54:33.688009-07:00,0.0,10.756713,10756.713 +8062,2025-06-10T23:54:44.450040-07:00,0.0,10.762031,10762.031 +8063,2025-06-10T23:54:55.209823-07:00,0.0,10.759783,10759.783 +8064,2025-06-10T23:55:05.973569-07:00,0.0,10.763746,10763.746 +8065,2025-06-10T23:55:16.739579-07:00,0.0,10.76601,10766.01 +8066,2025-06-10T23:55:27.499287-07:00,0.0,10.759708,10759.708 +8067,2025-06-10T23:55:38.259308-07:00,0.0,10.760021,10760.021 +8068,2025-06-10T23:55:49.015019-07:00,0.0,10.755711,10755.711 +8069,2025-06-10T23:55:59.775040-07:00,0.0,10.760021,10760.021 +8070,2025-06-10T23:56:10.541244-07:00,0.0,10.766204,10766.204 +8071,2025-06-10T23:56:21.303233-07:00,0.0,10.761989,10761.989 +8072,2025-06-10T23:56:32.063986-07:00,0.0,10.760753,10760.753 +8073,2025-06-10T23:56:42.825211-07:00,0.0,10.761225,10761.225 +8074,2025-06-10T23:56:53.591468-07:00,0.0,10.766257,10766.257 +8075,2025-06-10T23:57:04.351040-07:00,0.0,10.759572,10759.572 +8076,2025-06-10T23:57:15.113038-07:00,0.0,10.761998,10761.998 +8077,2025-06-10T23:57:25.884658-07:00,0.0,10.77162,10771.62 +8078,2025-06-10T23:57:36.643467-07:00,0.0,10.758809,10758.809 +8079,2025-06-10T23:57:47.414036-07:00,0.0,10.770569,10770.569 +8080,2025-06-10T23:57:58.177312-07:00,0.0,10.763276,10763.276 +8081,2025-06-10T23:58:08.935681-07:00,0.0,10.758369,10758.369 +8082,2025-06-10T23:58:19.702038-07:00,0.0,10.766357,10766.357 +8083,2025-06-10T23:58:30.469496-07:00,0.0,10.767458,10767.458 +8084,2025-06-10T23:58:41.233430-07:00,0.0,10.763934,10763.934 +8085,2025-06-10T23:58:51.998416-07:00,0.0,10.764986,10764.986 +8086,2025-06-10T23:59:02.763188-07:00,0.0,10.764772,10764.772 +8087,2025-06-10T23:59:13.517767-07:00,0.0,10.754579,10754.579 +8088,2025-06-10T23:59:24.283036-07:00,0.0,10.765269,10765.269 +8089,2025-06-10T23:59:35.044349-07:00,0.0,10.761313,10761.313 +8090,2025-06-10T23:59:45.809955-07:00,0.0,10.765606,10765.606 +8091,2025-06-10T23:59:56.570636-07:00,0.0,10.760681,10760.681 +8092,2025-06-11T00:00:07.336034-07:00,0.0,10.765398,10765.398 +8093,2025-06-11T00:00:18.093251-07:00,0.0,10.757217,10757.217 +8094,2025-06-11T00:00:28.858557-07:00,0.0,10.765306,10765.306 +8095,2025-06-11T00:00:39.619073-07:00,0.0,10.760516,10760.516 +8096,2025-06-11T00:00:50.390294-07:00,0.0,10.771221,10771.221 +8097,2025-06-11T00:01:01.154310-07:00,0.0,10.764016,10764.016 +8098,2025-06-11T00:01:11.911382-07:00,0.0,10.757072,10757.072 +8099,2025-06-11T00:01:22.669874-07:00,0.0,10.758492,10758.492 +8100,2025-06-11T00:01:33.441609-07:00,0.0,10.771735,10771.735 +8101,2025-06-11T00:01:44.204021-07:00,0.0,10.762412,10762.412 +8102,2025-06-11T00:01:54.962198-07:00,0.0,10.758177,10758.177 +8103,2025-06-11T00:02:05.727616-07:00,0.0,10.765418,10765.418 +8104,2025-06-11T00:02:16.497378-07:00,0.0,10.769762,10769.762 +8105,2025-06-11T00:02:27.256384-07:00,0.0,10.759006,10759.006 +8106,2025-06-11T00:02:38.027248-07:00,0.0,10.770864,10770.864 +8107,2025-06-11T00:02:48.782566-07:00,0.0,10.755318,10755.318 +8108,2025-06-11T00:02:59.553253-07:00,0.0,10.770687,10770.687 +8109,2025-06-11T00:03:10.309254-07:00,0.0,10.756001,10756.001 +8110,2025-06-11T00:03:21.075378-07:00,0.0,10.766124,10766.124 +8111,2025-06-11T00:03:31.839420-07:00,0.0,10.764042,10764.042 +8112,2025-06-11T00:03:42.597100-07:00,0.0,10.75768,10757.68 +8113,2025-06-11T00:03:53.361038-07:00,0.0,10.763938,10763.938 +8114,2025-06-11T00:04:04.129102-07:00,0.0,10.768064,10768.064 +8115,2025-06-11T00:04:14.890038-07:00,0.0,10.760936,10760.936 +8116,2025-06-11T00:04:25.651030-07:00,0.0,10.760992,10760.992 +8117,2025-06-11T00:04:36.416408-07:00,0.0,10.765378,10765.378 +8118,2025-06-11T00:04:47.177324-07:00,0.0,10.760916,10760.916 +8119,2025-06-11T00:04:57.931154-07:00,0.0,10.75383,10753.83 +8120,2025-06-11T00:05:08.700459-07:00,0.0,10.769305,10769.305 +8121,2025-06-11T00:05:19.461380-07:00,0.0,10.760921,10760.921 +8122,2025-06-11T00:05:30.217087-07:00,0.0,10.755707,10755.707 +8123,2025-06-11T00:05:40.985889-07:00,0.0,10.768802,10768.802 +8124,2025-06-11T00:05:51.743039-07:00,0.0,10.75715,10757.15 +8125,2025-06-11T00:06:02.507457-07:00,0.0,10.764418,10764.418 +8126,2025-06-11T00:06:13.267033-07:00,0.0,10.759576,10759.576 +8127,2025-06-11T00:06:24.024301-07:00,0.0,10.757268,10757.268 +8128,2025-06-11T00:06:34.788073-07:00,0.0,10.763772,10763.772 +8129,2025-06-11T00:06:45.553546-07:00,0.0,10.765473,10765.473 +8130,2025-06-11T00:06:56.304075-07:00,0.0,10.750529,10750.529 +8131,2025-06-11T00:07:07.072038-07:00,0.0,10.767963,10767.963 +8132,2025-06-11T00:07:17.834329-07:00,0.0,10.762291,10762.291 +8133,2025-06-11T00:07:28.596456-07:00,0.0,10.762127,10762.127 +8134,2025-06-11T00:07:39.356037-07:00,0.0,10.759581,10759.581 +8135,2025-06-11T00:07:50.105042-07:00,0.0,10.749005,10749.005 +8136,2025-06-11T00:08:00.869142-07:00,0.0,10.7641,10764.1 +8137,2025-06-11T00:08:11.628328-07:00,0.0,10.759186,10759.186 +8138,2025-06-11T00:08:22.385191-07:00,0.0,10.756863,10756.863 +8139,2025-06-11T00:08:33.142258-07:00,0.0,10.757067,10757.067 +8140,2025-06-11T00:08:43.907022-07:00,0.0,10.764764,10764.764 +8141,2025-06-11T00:08:54.664942-07:00,0.0,10.75792,10757.92 +8142,2025-06-11T00:09:05.425416-07:00,0.0,10.760474,10760.474 +8143,2025-06-11T00:09:16.185038-07:00,0.0,10.759622,10759.622 +8144,2025-06-11T00:09:26.943031-07:00,0.0,10.757993,10757.993 +8145,2025-06-11T00:09:37.711335-07:00,0.0,10.768304,10768.304 +8146,2025-06-11T00:09:48.475015-07:00,0.0,10.76368,10763.68 +8147,2025-06-11T00:09:59.233658-07:00,0.0,10.758643,10758.643 +8148,2025-06-11T00:10:09.996281-07:00,0.0,10.762623,10762.623 +8149,2025-06-11T00:10:20.755335-07:00,0.0,10.759054,10759.054 +8150,2025-06-11T00:10:31.516150-07:00,0.0,10.760815,10760.815 +8151,2025-06-11T00:10:42.275038-07:00,0.0,10.758888,10758.888 +8152,2025-06-11T00:10:53.031033-07:00,0.0,10.755995,10755.995 +8153,2025-06-11T00:11:03.799289-07:00,0.0,10.768256,10768.256 +8154,2025-06-11T00:11:14.556238-07:00,0.0,10.756949,10756.949 +8155,2025-06-11T00:11:25.327036-07:00,0.0,10.770798,10770.798 +8156,2025-06-11T00:11:36.086130-07:00,0.0,10.759094,10759.094 +8157,2025-06-11T00:11:46.846573-07:00,0.0,10.760443,10760.443 +8158,2025-06-11T00:11:57.604272-07:00,0.0,10.757699,10757.699 +8159,2025-06-11T00:12:08.363042-07:00,0.0,10.75877,10758.77 +8160,2025-06-11T00:12:19.134378-07:00,0.0,10.771336,10771.336 +8161,2025-06-11T00:12:29.894015-07:00,0.0,10.759637,10759.637 +8162,2025-06-11T00:12:40.655478-07:00,0.0,10.761463,10761.463 +8163,2025-06-11T00:12:51.414103-07:00,0.0,10.758625,10758.625 +8164,2025-06-11T00:13:02.184686-07:00,0.0,10.770583,10770.583 +8165,2025-06-11T00:13:12.937104-07:00,0.0,10.752418,10752.418 +8166,2025-06-11T00:13:23.702010-07:00,0.0,10.764906,10764.906 +8167,2025-06-11T00:13:34.468336-07:00,0.0,10.766326,10766.326 +8168,2025-06-11T00:13:45.231042-07:00,0.0,10.762706,10762.706 +8169,2025-06-11T00:13:55.988202-07:00,0.0,10.75716,10757.16 +8170,2025-06-11T00:14:06.745239-07:00,0.0,10.757037,10757.037 +8171,2025-06-11T00:14:17.511371-07:00,0.0,10.766132,10766.132 +8172,2025-06-11T00:14:28.274528-07:00,0.0,10.763157,10763.157 +8173,2025-06-11T00:14:39.027234-07:00,0.0,10.752706,10752.706 +8174,2025-06-11T00:14:49.786328-07:00,0.0,10.759094,10759.094 +8175,2025-06-11T00:15:00.551948-07:00,0.0,10.76562,10765.62 +8176,2025-06-11T00:15:11.317281-07:00,0.0,10.765333,10765.333 +8177,2025-06-11T00:15:22.077291-07:00,0.0,10.76001,10760.01 +8178,2025-06-11T00:15:32.838038-07:00,0.0,10.760747,10760.747 +8179,2025-06-11T00:15:43.596290-07:00,0.0,10.758252,10758.252 +8180,2025-06-11T00:15:54.363038-07:00,0.0,10.766748,10766.748 +8181,2025-06-11T00:16:05.117262-07:00,0.0,10.754224,10754.224 +8182,2025-06-11T00:16:15.877516-07:00,0.0,10.760254,10760.254 +8183,2025-06-11T00:16:26.639378-07:00,0.0,10.761862,10761.862 +8184,2025-06-11T00:16:37.403265-07:00,0.0,10.763887,10763.887 +8185,2025-06-11T00:16:48.162015-07:00,0.0,10.75875,10758.75 +8186,2025-06-11T00:16:58.919037-07:00,0.0,10.757022,10757.022 +8187,2025-06-11T00:17:09.686759-07:00,0.0,10.767722,10767.722 +8188,2025-06-11T00:17:20.444369-07:00,0.0,10.75761,10757.61 +8189,2025-06-11T00:17:31.203228-07:00,0.0,10.758859,10758.859 +8190,2025-06-11T00:17:41.956291-07:00,0.0,10.753063,10753.063 +8191,2025-06-11T00:17:52.717077-07:00,0.0,10.760786,10760.786 +8192,2025-06-11T00:18:03.475305-07:00,0.0,10.758228,10758.228 +8193,2025-06-11T00:18:14.233231-07:00,0.0,10.757926,10757.926 +8194,2025-06-11T00:18:24.998076-07:00,0.0,10.764845,10764.845 +8195,2025-06-11T00:18:35.753286-07:00,0.0,10.75521,10755.21 +8196,2025-06-11T00:18:46.510809-07:00,0.0,10.757523,10757.523 +8197,2025-06-11T00:18:57.270709-07:00,0.0,10.7599,10759.9 +8198,2025-06-11T00:19:08.029041-07:00,0.0,10.758332,10758.332 +8199,2025-06-11T00:19:18.796065-07:00,0.0,10.767024,10767.024 +8200,2025-06-11T00:19:29.550056-07:00,0.0,10.753991,10753.991 +8201,2025-06-11T00:19:40.313191-07:00,0.0,10.763135,10763.135 +8202,2025-06-11T00:19:51.078030-07:00,0.0,10.764839,10764.839 +8203,2025-06-11T00:20:01.837036-07:00,0.0,10.759006,10759.006 +8204,2025-06-11T00:20:12.603826-07:00,0.0,10.76679,10766.79 +8205,2025-06-11T00:20:23.356351-07:00,0.0,10.752525,10752.525 +8206,2025-06-11T00:20:34.116043-07:00,0.0,10.759692,10759.692 +8207,2025-06-11T00:20:44.887069-07:00,0.0,10.771026,10771.026 +8208,2025-06-11T00:20:55.644294-07:00,0.0,10.757225,10757.225 +8209,2025-06-11T00:21:06.400353-07:00,0.0,10.756059,10756.059 +8210,2025-06-11T00:21:17.163478-07:00,0.0,10.763125,10763.125 +8211,2025-06-11T00:21:27.925033-07:00,0.0,10.761555,10761.555 +8212,2025-06-11T00:21:38.691468-07:00,0.0,10.766435,10766.435 +8213,2025-06-11T00:21:49.446039-07:00,0.0,10.754571,10754.571 +8214,2025-06-11T00:22:00.210618-07:00,0.0,10.764579,10764.579 +8215,2025-06-11T00:22:10.981359-07:00,0.0,10.770741,10770.741 +8216,2025-06-11T00:22:21.766036-07:00,0.0,10.784677,10784.677 +8217,2025-06-11T00:22:32.537494-07:00,0.0,10.771458,10771.458 +8218,2025-06-11T00:22:43.322507-07:00,0.0,10.785013,10785.013 +8219,2025-06-11T00:22:54.104036-07:00,0.0,10.781529,10781.529 +8220,2025-06-11T00:23:04.864036-07:00,0.0,10.76,10760.0 +8221,2025-06-11T00:23:15.617747-07:00,0.0,10.753711,10753.711 +8222,2025-06-11T00:23:26.381102-07:00,0.0,10.763355,10763.355 +8223,2025-06-11T00:23:37.151040-07:00,0.0,10.769938,10769.938 +8224,2025-06-11T00:23:47.910151-07:00,0.0,10.759111,10759.111 +8225,2025-06-11T00:23:58.677173-07:00,0.0,10.767022,10767.022 +8226,2025-06-11T00:24:09.433500-07:00,0.0,10.756327,10756.327 +8227,2025-06-11T00:24:20.199295-07:00,0.0,10.765795,10765.795 +8228,2025-06-11T00:24:30.973600-07:00,0.0,10.774305,10774.305 +8229,2025-06-11T00:24:41.733037-07:00,0.0,10.759437,10759.437 +8230,2025-06-11T00:24:52.487373-07:00,0.0,10.754336,10754.336 +8231,2025-06-11T00:25:03.251862-07:00,0.0,10.764489,10764.489 +8232,2025-06-11T00:25:14.019176-07:00,0.0,10.767314,10767.314 +8233,2025-06-11T00:25:24.770188-07:00,0.0,10.751012,10751.012 +8234,2025-06-11T00:25:35.526267-07:00,0.0,10.756079,10756.079 +8235,2025-06-11T00:25:46.294378-07:00,0.0,10.768111,10768.111 +8236,2025-06-11T00:25:57.047471-07:00,0.0,10.753093,10753.093 +8237,2025-06-11T00:26:07.809038-07:00,0.0,10.761567,10761.567 +8238,2025-06-11T00:26:18.563015-07:00,0.0,10.753977,10753.977 +8239,2025-06-11T00:26:29.321229-07:00,0.0,10.758214,10758.214 +8240,2025-06-11T00:26:40.080543-07:00,0.0,10.759314,10759.314 +8241,2025-06-11T00:26:50.836371-07:00,0.0,10.755828,10755.828 +8242,2025-06-11T00:27:01.590074-07:00,0.0,10.753703,10753.703 +8243,2025-06-11T00:27:12.350226-07:00,0.0,10.760152,10760.152 +8244,2025-06-11T00:27:23.108036-07:00,0.0,10.75781,10757.81 +8245,2025-06-11T00:27:33.870807-07:00,0.0,10.762771,10762.771 +8246,2025-06-11T00:27:44.621380-07:00,0.0,10.750573,10750.573 +8247,2025-06-11T00:27:55.380355-07:00,0.0,10.758975,10758.975 +8248,2025-06-11T00:28:06.139047-07:00,0.0,10.758692,10758.692 +8249,2025-06-11T00:28:16.899382-07:00,0.0,10.760335,10760.335 +8250,2025-06-11T00:28:27.661336-07:00,0.0,10.761954,10761.954 +8251,2025-06-11T00:28:38.422569-07:00,0.0,10.761233,10761.233 +8252,2025-06-11T00:28:49.181054-07:00,0.0,10.758485,10758.485 +8253,2025-06-11T00:28:59.939017-07:00,0.0,10.757963,10757.963 +8254,2025-06-11T00:29:10.699036-07:00,0.0,10.760019,10760.019 +8255,2025-06-11T00:29:21.457373-07:00,0.0,10.758337,10758.337 +8256,2025-06-11T00:29:32.215095-07:00,0.0,10.757722,10757.722 +8257,2025-06-11T00:29:42.976043-07:00,0.0,10.760948,10760.948 +8258,2025-06-11T00:29:53.733038-07:00,0.0,10.756995,10756.995 +8259,2025-06-11T00:30:04.493659-07:00,0.0,10.760621,10760.621 +8260,2025-06-11T00:30:15.252371-07:00,0.0,10.758712,10758.712 +8261,2025-06-11T00:30:26.015713-07:00,0.0,10.763342,10763.342 +8262,2025-06-11T00:30:36.779515-07:00,0.0,10.763802,10763.802 +8263,2025-06-11T00:30:47.534579-07:00,0.0,10.755064,10755.064 +8264,2025-06-11T00:30:58.294686-07:00,0.0,10.760107,10760.107 +8265,2025-06-11T00:31:09.047718-07:00,0.0,10.753032,10753.032 +8266,2025-06-11T00:31:19.806038-07:00,0.0,10.75832,10758.32 +8267,2025-06-11T00:31:30.566111-07:00,0.0,10.760073,10760.073 +8268,2025-06-11T00:31:41.326204-07:00,0.0,10.760093,10760.093 +8269,2025-06-11T00:31:52.080425-07:00,0.0,10.754221,10754.221 +8270,2025-06-11T00:32:02.835042-07:00,0.0,10.754617,10754.617 +8271,2025-06-11T00:32:13.591037-07:00,0.0,10.755995,10755.995 +8272,2025-06-11T00:32:24.349260-07:00,0.0,10.758223,10758.223 +8273,2025-06-11T00:32:35.114633-07:00,0.0,10.765373,10765.373 +8274,2025-06-11T00:32:45.874915-07:00,0.0,10.760282,10760.282 +8275,2025-06-11T00:32:56.627607-07:00,0.0,10.752692,10752.692 +8276,2025-06-11T00:33:07.390034-07:00,0.0,10.762427,10762.427 +8277,2025-06-11T00:33:18.149246-07:00,0.0,10.759212,10759.212 +8278,2025-06-11T00:33:28.909380-07:00,0.0,10.760134,10760.134 +8279,2025-06-11T00:33:39.669261-07:00,0.0,10.759881,10759.881 +8280,2025-06-11T00:33:50.422290-07:00,0.0,10.753029,10753.029 +8281,2025-06-11T00:34:01.186039-07:00,0.0,10.763749,10763.749 +8282,2025-06-11T00:34:11.938038-07:00,0.0,10.751999,10751.999 +8283,2025-06-11T00:34:22.705443-07:00,0.0,10.767405,10767.405 +8284,2025-06-11T00:34:33.458349-07:00,0.0,10.752906,10752.906 +8285,2025-06-11T00:34:44.220277-07:00,0.0,10.761928,10761.928 +8286,2025-06-11T00:34:54.978075-07:00,0.0,10.757798,10757.798 +8287,2025-06-11T00:35:05.737215-07:00,0.0,10.75914,10759.14 +8288,2025-06-11T00:35:16.497193-07:00,0.0,10.759978,10759.978 +8289,2025-06-11T00:35:27.260126-07:00,0.0,10.762933,10762.933 +8290,2025-06-11T00:35:38.017277-07:00,0.0,10.757151,10757.151 +8291,2025-06-11T00:35:48.774209-07:00,0.0,10.756932,10756.932 +8292,2025-06-11T00:35:59.530283-07:00,0.0,10.756074,10756.074 +8293,2025-06-11T00:36:10.289472-07:00,0.0,10.759189,10759.189 +8294,2025-06-11T00:36:21.055042-07:00,0.0,10.76557,10765.57 +8295,2025-06-11T00:36:31.806041-07:00,0.0,10.750999,10750.999 +8296,2025-06-11T00:36:42.570475-07:00,0.0,10.764434,10764.434 +8297,2025-06-11T00:36:53.322334-07:00,0.0,10.751859,10751.859 +8298,2025-06-11T00:37:04.081290-07:00,0.0,10.758956,10758.956 +8299,2025-06-11T00:37:14.847033-07:00,0.0,10.765743,10765.743 +8300,2025-06-11T00:37:25.603277-07:00,0.0,10.756244,10756.244 +8301,2025-06-11T00:37:36.358636-07:00,0.0,10.755359,10755.359 +8302,2025-06-11T00:37:47.114580-07:00,0.0,10.755944,10755.944 +8303,2025-06-11T00:37:57.866671-07:00,0.0,10.752091,10752.091 +8304,2025-06-11T00:38:08.626046-07:00,0.0,10.759375,10759.375 +8305,2025-06-11T00:38:19.386038-07:00,0.0,10.759992,10759.992 +8306,2025-06-11T00:38:30.144057-07:00,0.0,10.758019,10758.019 +8307,2025-06-11T00:38:40.901329-07:00,0.0,10.757272,10757.272 +8308,2025-06-11T00:38:51.660296-07:00,0.0,10.758967,10758.967 +8309,2025-06-11T00:39:02.421179-07:00,0.0,10.760883,10760.883 +8310,2025-06-11T00:39:13.178390-07:00,0.0,10.757211,10757.211 +8311,2025-06-11T00:39:23.940882-07:00,0.0,10.762492,10762.492 +8312,2025-06-11T00:39:34.698441-07:00,0.0,10.757559,10757.559 +8313,2025-06-11T00:39:45.454275-07:00,0.0,10.755834,10755.834 +8314,2025-06-11T00:39:56.215036-07:00,0.0,10.760761,10760.761 +8315,2025-06-11T00:40:06.975412-07:00,0.0,10.760376,10760.376 +8316,2025-06-11T00:40:17.741079-07:00,0.0,10.765667,10765.667 +8317,2025-06-11T00:40:28.503040-07:00,0.0,10.761961,10761.961 +8318,2025-06-11T00:40:39.266864-07:00,0.0,10.763824,10763.824 +8319,2025-06-11T00:40:50.021025-07:00,0.0,10.754161,10754.161 +8320,2025-06-11T00:41:00.784452-07:00,0.0,10.763427,10763.427 +8321,2025-06-11T00:41:11.542028-07:00,0.0,10.757576,10757.576 +8322,2025-06-11T00:41:22.301742-07:00,0.0,10.759714,10759.714 +8323,2025-06-11T00:41:33.054437-07:00,0.0,10.752695,10752.695 +8324,2025-06-11T00:41:43.820334-07:00,0.0,10.765897,10765.897 +8325,2025-06-11T00:41:54.579046-07:00,0.0,10.758712,10758.712 +8326,2025-06-11T00:42:05.333084-07:00,0.0,10.754038,10754.038 +8327,2025-06-11T00:42:16.093048-07:00,0.0,10.759964,10759.964 +8328,2025-06-11T00:42:26.858823-07:00,0.0,10.765775,10765.775 +8329,2025-06-11T00:42:37.614507-07:00,0.0,10.755684,10755.684 +8330,2025-06-11T00:42:48.364505-07:00,0.0,10.749998,10749.998 +8331,2025-06-11T00:42:59.124672-07:00,0.0,10.760167,10760.167 +8332,2025-06-11T00:43:09.879036-07:00,0.0,10.754364,10754.364 +8333,2025-06-11T00:43:20.641064-07:00,0.0,10.762028,10762.028 +8334,2025-06-11T00:43:31.395693-07:00,0.0,10.754629,10754.629 +8335,2025-06-11T00:43:42.164093-07:00,0.0,10.7684,10768.4 +8336,2025-06-11T00:43:52.917707-07:00,0.0,10.753614,10753.614 +8337,2025-06-11T00:44:03.675010-07:00,0.0,10.757303,10757.303 +8338,2025-06-11T00:44:14.436836-07:00,0.0,10.761826,10761.826 +8339,2025-06-11T00:44:25.195545-07:00,0.0,10.758709,10758.709 +8340,2025-06-11T00:44:35.957570-07:00,0.0,10.762025,10762.025 +8341,2025-06-11T00:44:46.720038-07:00,0.0,10.762468,10762.468 +8342,2025-06-11T00:44:57.478977-07:00,0.0,10.758939,10758.939 +8343,2025-06-11T00:45:08.230349-07:00,0.0,10.751372,10751.372 +8344,2025-06-11T00:45:18.989178-07:00,0.0,10.758829,10758.829 +8345,2025-06-11T00:45:29.748514-07:00,0.0,10.759336,10759.336 +8346,2025-06-11T00:45:40.513036-07:00,0.0,10.764522,10764.522 +8347,2025-06-11T00:45:51.269166-07:00,0.0,10.75613,10756.13 +8348,2025-06-11T00:46:02.028417-07:00,0.0,10.759251,10759.251 +8349,2025-06-11T00:46:12.788041-07:00,0.0,10.759624,10759.624 +8350,2025-06-11T00:46:23.545038-07:00,0.0,10.756997,10756.997 +8351,2025-06-11T00:46:34.304073-07:00,0.0,10.759035,10759.035 +8352,2025-06-11T00:46:45.067347-07:00,0.0,10.763274,10763.274 +8353,2025-06-11T00:46:55.819316-07:00,0.0,10.751969,10751.969 +8354,2025-06-11T00:47:06.575044-07:00,0.0,10.755728,10755.728 +8355,2025-06-11T00:47:17.336077-07:00,0.0,10.761033,10761.033 +8356,2025-06-11T00:47:28.091353-07:00,0.0,10.755276,10755.276 +8357,2025-06-11T00:47:38.850085-07:00,0.0,10.758732,10758.732 +8358,2025-06-11T00:47:49.614094-07:00,0.0,10.764009,10764.009 +8359,2025-06-11T00:48:00.376007-07:00,0.0,10.761913,10761.913 +8360,2025-06-11T00:48:11.132280-07:00,0.0,10.756273,10756.273 +8361,2025-06-11T00:48:21.886256-07:00,0.0,10.753976,10753.976 +8362,2025-06-11T00:48:32.652009-07:00,0.0,10.765753,10765.753 +8363,2025-06-11T00:48:43.404042-07:00,0.0,10.752033,10752.033 +8364,2025-06-11T00:48:54.168353-07:00,0.0,10.764311,10764.311 +8365,2025-06-11T00:49:04.920036-07:00,0.0,10.751683,10751.683 +8366,2025-06-11T00:49:15.681543-07:00,0.0,10.761507,10761.507 +8367,2025-06-11T00:49:26.440771-07:00,0.0,10.759228,10759.228 +8368,2025-06-11T00:49:37.192390-07:00,0.0,10.751619,10751.619 +8369,2025-06-11T00:49:47.950043-07:00,0.0,10.757653,10757.653 +8370,2025-06-11T00:49:58.710040-07:00,0.0,10.759997,10759.997 +8371,2025-06-11T00:50:09.465794-07:00,0.0,10.755754,10755.754 +8372,2025-06-11T00:50:20.224325-07:00,0.0,10.758531,10758.531 +8373,2025-06-11T00:50:30.980785-07:00,0.0,10.75646,10756.46 +8374,2025-06-11T00:50:41.738036-07:00,0.0,10.757251,10757.251 +8375,2025-06-11T00:50:52.504040-07:00,0.0,10.766004,10766.004 +8376,2025-06-11T00:51:03.255533-07:00,0.0,10.751493,10751.493 +8377,2025-06-11T00:51:14.012338-07:00,0.0,10.756805,10756.805 +8378,2025-06-11T00:51:24.767837-07:00,0.0,10.755499,10755.499 +8379,2025-06-11T00:51:35.528294-07:00,0.0,10.760457,10760.457 +8380,2025-06-11T00:51:46.287349-07:00,0.0,10.759055,10759.055 +8381,2025-06-11T00:51:57.043038-07:00,0.0,10.755689,10755.689 +8382,2025-06-11T00:52:07.806318-07:00,0.0,10.76328,10763.28 +8383,2025-06-11T00:52:18.580545-07:00,0.0,10.774227,10774.227 +8384,2025-06-11T00:52:29.343256-07:00,0.0,10.762711,10762.711 +8385,2025-06-11T00:52:40.094504-07:00,0.0,10.751248,10751.248 +8386,2025-06-11T00:52:50.851252-07:00,0.0,10.756748,10756.748 +8387,2025-06-11T00:53:01.609254-07:00,0.0,10.758002,10758.002 +8388,2025-06-11T00:53:12.360596-07:00,0.0,10.751342,10751.342 +8389,2025-06-11T00:53:23.121712-07:00,0.0,10.761116,10761.116 +8390,2025-06-11T00:53:33.883384-07:00,0.0,10.761672,10761.672 +8391,2025-06-11T00:53:44.652596-07:00,0.0,10.769212,10769.212 +8392,2025-06-11T00:53:55.408567-07:00,0.0,10.755971,10755.971 +8393,2025-06-11T00:54:06.174548-07:00,0.0,10.765981,10765.981 +8394,2025-06-11T00:54:16.934247-07:00,0.0,10.759699,10759.699 +8395,2025-06-11T00:54:27.691498-07:00,0.0,10.757251,10757.251 +8396,2025-06-11T00:54:38.442409-07:00,0.0,10.750911,10750.911 +8397,2025-06-11T00:54:49.210938-07:00,0.0,10.768529,10768.529 +8398,2025-06-11T00:54:59.958295-07:00,0.0,10.747357,10747.357 +8399,2025-06-11T00:55:10.722508-07:00,0.0,10.764213,10764.213 +8400,2025-06-11T00:55:21.483306-07:00,0.0,10.760798,10760.798 +8401,2025-06-11T00:55:32.236206-07:00,0.0,10.7529,10752.9 +8402,2025-06-11T00:55:42.989804-07:00,0.0,10.753598,10753.598 +8403,2025-06-11T00:55:53.749579-07:00,0.0,10.759775,10759.775 +8404,2025-06-11T00:56:04.502251-07:00,0.0,10.752672,10752.672 +8405,2025-06-11T00:56:15.266331-07:00,0.0,10.76408,10764.08 +8406,2025-06-11T00:56:26.027247-07:00,0.0,10.760916,10760.916 +8407,2025-06-11T00:56:36.784891-07:00,0.0,10.757644,10757.644 +8408,2025-06-11T00:56:47.532716-07:00,0.0,10.747825,10747.825 +8409,2025-06-11T00:56:58.287511-07:00,0.0,10.754795,10754.795 +8410,2025-06-11T00:57:09.045506-07:00,0.0,10.757995,10757.995 +8411,2025-06-11T00:57:19.810295-07:00,0.0,10.764789,10764.789 +8412,2025-06-11T00:57:30.559475-07:00,0.0,10.74918,10749.18 +8413,2025-06-11T00:57:41.316795-07:00,0.0,10.75732,10757.32 +8414,2025-06-11T00:57:52.070286-07:00,0.0,10.753491,10753.491 +8415,2025-06-11T00:58:02.827253-07:00,0.0,10.756967,10756.967 +8416,2025-06-11T00:58:13.583506-07:00,0.0,10.756253,10756.253 +8417,2025-06-11T00:58:24.340246-07:00,0.0,10.75674,10756.74 +8418,2025-06-11T00:58:35.095258-07:00,0.0,10.755012,10755.012 +8419,2025-06-11T00:58:45.858850-07:00,0.0,10.763592,10763.592 +8420,2025-06-11T00:58:56.609594-07:00,0.0,10.750744,10750.744 +8421,2025-06-11T00:59:07.373264-07:00,0.0,10.76367,10763.67 +8422,2025-06-11T00:59:18.137555-07:00,0.0,10.764291,10764.291 +8423,2025-06-11T00:59:28.885518-07:00,0.0,10.747963,10747.963 +8424,2025-06-11T00:59:39.640088-07:00,0.0,10.75457,10754.57 +8425,2025-06-11T00:59:50.394547-07:00,0.0,10.754459,10754.459 +8426,2025-06-11T01:00:01.157527-07:00,0.0,10.76298,10762.98 +8427,2025-06-11T01:00:11.910491-07:00,0.0,10.752964,10752.964 +8428,2025-06-11T01:00:22.664565-07:00,0.0,10.754074,10754.074 +8429,2025-06-11T01:00:33.427036-07:00,0.0,10.762471,10762.471 +8430,2025-06-11T01:00:44.176761-07:00,0.0,10.749725,10749.725 +8431,2025-06-11T01:00:54.953010-07:00,0.0,10.776249,10776.249 +8432,2025-06-11T01:01:05.728539-07:00,0.0,10.775529,10775.529 +8433,2025-06-11T01:01:16.512249-07:00,0.0,10.78371,10783.71 +8434,2025-06-11T01:01:27.294261-07:00,0.0,10.782012,10782.012 +8435,2025-06-11T01:01:38.067677-07:00,0.0,10.773416,10773.416 +8436,2025-06-11T01:01:48.848523-07:00,0.0,10.780846,10780.846 +8437,2025-06-11T01:01:59.638867-07:00,0.0,10.790344,10790.344 +8438,2025-06-11T01:02:10.415899-07:00,0.0,10.777032,10777.032 +8439,2025-06-11T01:02:21.191253-07:00,0.0,10.775354,10775.354 +8440,2025-06-11T01:02:31.980572-07:00,0.0,10.789319,10789.319 +8441,2025-06-11T01:02:42.745254-07:00,0.0,10.764682,10764.682 +8442,2025-06-11T01:02:53.511158-07:00,0.0,10.765904,10765.904 +8443,2025-06-11T01:03:04.272256-07:00,0.0,10.761098,10761.098 +8444,2025-06-11T01:03:15.031649-07:00,0.0,10.759393,10759.393 +8445,2025-06-11T01:03:25.794252-07:00,0.0,10.762603,10762.603 +8446,2025-06-11T01:03:36.554547-07:00,0.0,10.760295,10760.295 +8447,2025-06-11T01:03:47.315659-07:00,0.0,10.761112,10761.112 +8448,2025-06-11T01:03:58.071260-07:00,0.0,10.755601,10755.601 +8449,2025-06-11T01:04:08.838248-07:00,0.0,10.766988,10766.988 +8450,2025-06-11T01:04:19.599545-07:00,0.0,10.761297,10761.297 +8451,2025-06-11T01:04:30.363654-07:00,0.0,10.764109,10764.109 +8452,2025-06-11T01:04:41.122248-07:00,0.0,10.758594,10758.594 +8453,2025-06-11T01:04:51.883292-07:00,0.0,10.761044,10761.044 +8454,2025-06-11T01:05:02.638521-07:00,0.0,10.755229,10755.229 +8455,2025-06-11T01:05:13.403518-07:00,0.0,10.764997,10764.997 +8456,2025-06-11T01:05:24.169500-07:00,0.0,10.765982,10765.982 +8457,2025-06-11T01:05:34.929554-07:00,0.0,10.760054,10760.054 +8458,2025-06-11T01:05:45.686551-07:00,0.0,10.756997,10756.997 +8459,2025-06-11T01:05:56.438527-07:00,0.0,10.751976,10751.976 +8460,2025-06-11T01:06:07.197255-07:00,0.0,10.758728,10758.728 +8461,2025-06-11T01:06:17.959438-07:00,0.0,10.762183,10762.183 +8462,2025-06-11T01:06:28.721098-07:00,0.0,10.76166,10761.66 +8463,2025-06-11T01:06:39.476157-07:00,0.0,10.755059,10755.059 +8464,2025-06-11T01:06:50.238250-07:00,0.0,10.762093,10762.093 +8465,2025-06-11T01:07:00.994246-07:00,0.0,10.755996,10755.996 +8466,2025-06-11T01:07:11.754287-07:00,0.0,10.760041,10760.041 +8467,2025-06-11T01:07:22.516515-07:00,0.0,10.762228,10762.228 +8468,2025-06-11T01:07:33.281315-07:00,0.0,10.7648,10764.8 +8469,2025-06-11T01:07:44.034451-07:00,0.0,10.753136,10753.136 +8470,2025-06-11T01:07:54.798492-07:00,0.0,10.764041,10764.041 +8471,2025-06-11T01:08:05.555209-07:00,0.0,10.756717,10756.717 +8472,2025-06-11T01:08:16.320401-07:00,0.0,10.765192,10765.192 +8473,2025-06-11T01:08:27.074460-07:00,0.0,10.754059,10754.059 +8474,2025-06-11T01:08:37.843602-07:00,0.0,10.769142,10769.142 +8475,2025-06-11T01:08:48.600789-07:00,0.0,10.757187,10757.187 +8476,2025-06-11T01:08:59.356297-07:00,0.0,10.755508,10755.508 +8477,2025-06-11T01:09:10.108340-07:00,0.0,10.752043,10752.043 +8478,2025-06-11T01:09:20.867491-07:00,0.0,10.759151,10759.151 +8479,2025-06-11T01:09:31.639089-07:00,0.0,10.771598,10771.598 +8480,2025-06-11T01:09:42.395769-07:00,0.0,10.75668,10756.68 +8481,2025-06-11T01:09:53.155695-07:00,0.0,10.759926,10759.926 +8482,2025-06-11T01:10:03.917235-07:00,0.0,10.76154,10761.54 +8483,2025-06-11T01:10:14.671517-07:00,0.0,10.754282,10754.282 +8484,2025-06-11T01:10:25.424304-07:00,0.0,10.752787,10752.787 +8485,2025-06-11T01:10:36.190256-07:00,0.0,10.765952,10765.952 +8486,2025-06-11T01:10:46.940504-07:00,0.0,10.750248,10750.248 +8487,2025-06-11T01:10:57.706254-07:00,0.0,10.76575,10765.75 +8488,2025-06-11T01:11:08.462255-07:00,0.0,10.756001,10756.001 +8489,2025-06-11T01:11:19.223557-07:00,0.0,10.761302,10761.302 +8490,2025-06-11T01:11:29.980532-07:00,0.0,10.756975,10756.975 +8491,2025-06-11T01:11:40.749318-07:00,0.0,10.768786,10768.786 +8492,2025-06-11T01:11:51.505572-07:00,0.0,10.756254,10756.254 +8493,2025-06-11T01:12:02.262728-07:00,0.0,10.757156,10757.156 +8494,2025-06-11T01:12:13.021264-07:00,0.0,10.758536,10758.536 +8495,2025-06-11T01:12:23.774254-07:00,0.0,10.75299,10752.99 +8496,2025-06-11T01:12:34.526254-07:00,0.0,10.752,10752.0 +8497,2025-06-11T01:12:45.281350-07:00,0.0,10.755096,10755.096 +8498,2025-06-11T01:12:56.041390-07:00,0.0,10.76004,10760.04 +8499,2025-06-11T01:13:06.808689-07:00,0.0,10.767299,10767.299 +8500,2025-06-11T01:13:17.561822-07:00,0.0,10.753133,10753.133 +8501,2025-06-11T01:13:28.321394-07:00,0.0,10.759572,10759.572 +8502,2025-06-11T01:13:39.081256-07:00,0.0,10.759862,10759.862 +8503,2025-06-11T01:13:49.841592-07:00,0.0,10.760336,10760.336 +8504,2025-06-11T01:14:00.597485-07:00,0.0,10.755893,10755.893 +8505,2025-06-11T01:14:11.366923-07:00,0.0,10.769438,10769.438 +8506,2025-06-11T01:14:22.123248-07:00,0.0,10.756325,10756.325 +8507,2025-06-11T01:14:32.883199-07:00,0.0,10.759951,10759.951 +8508,2025-06-11T01:14:43.638642-07:00,0.0,10.755443,10755.443 +8509,2025-06-11T01:14:54.392628-07:00,0.0,10.753986,10753.986 +8510,2025-06-11T01:15:05.152266-07:00,0.0,10.759638,10759.638 +8511,2025-06-11T01:15:15.915258-07:00,0.0,10.762992,10762.992 +8512,2025-06-11T01:15:26.669294-07:00,0.0,10.754036,10754.036 +8513,2025-06-11T01:15:37.433244-07:00,0.0,10.76395,10763.95 +8514,2025-06-11T01:15:48.184376-07:00,0.0,10.751132,10751.132 +8515,2025-06-11T01:15:58.946309-07:00,0.0,10.761933,10761.933 +8516,2025-06-11T01:16:09.699551-07:00,0.0,10.753242,10753.242 +8517,2025-06-11T01:16:20.464775-07:00,0.0,10.765224,10765.224 +8518,2025-06-11T01:16:31.226629-07:00,0.0,10.761854,10761.854 +8519,2025-06-11T01:16:41.988254-07:00,0.0,10.761625,10761.625 +8520,2025-06-11T01:16:52.740299-07:00,0.0,10.752045,10752.045 +8521,2025-06-11T01:17:03.509502-07:00,0.0,10.769203,10769.203 +8522,2025-06-11T01:17:14.269519-07:00,0.0,10.760017,10760.017 +8523,2025-06-11T01:17:25.030247-07:00,0.0,10.760728,10760.728 +8524,2025-06-11T01:17:35.787237-07:00,0.0,10.75699,10756.99 +8525,2025-06-11T01:17:46.548349-07:00,0.0,10.761112,10761.112 +8526,2025-06-11T01:17:57.306654-07:00,0.0,10.758305,10758.305 +8527,2025-06-11T01:18:08.063257-07:00,0.0,10.756603,10756.603 +8528,2025-06-11T01:18:18.812478-07:00,0.0,10.749221,10749.221 +8529,2025-06-11T01:18:29.578240-07:00,0.0,10.765762,10765.762 +8530,2025-06-11T01:18:40.327245-07:00,0.0,10.749005,10749.005 +8531,2025-06-11T01:18:51.091555-07:00,0.0,10.76431,10764.31 +8532,2025-06-11T01:19:01.846917-07:00,0.0,10.755362,10755.362 +8533,2025-06-11T01:19:12.609276-07:00,0.0,10.762359,10762.359 +8534,2025-06-11T01:19:23.364256-07:00,0.0,10.75498,10754.98 +8535,2025-06-11T01:19:34.125288-07:00,0.0,10.761032,10761.032 +8536,2025-06-11T01:19:44.893465-07:00,0.0,10.768177,10768.177 +8537,2025-06-11T01:19:55.645585-07:00,0.0,10.75212,10752.12 +8538,2025-06-11T01:20:06.400253-07:00,0.0,10.754668,10754.668 +8539,2025-06-11T01:20:17.163291-07:00,0.0,10.763038,10763.038 +8540,2025-06-11T01:20:27.925778-07:00,0.0,10.762487,10762.487 +8541,2025-06-11T01:20:38.681258-07:00,0.0,10.75548,10755.48 +8542,2025-06-11T01:20:49.440307-07:00,0.0,10.759049,10759.049 +8543,2025-06-11T01:21:00.194466-07:00,0.0,10.754159,10754.159 +8544,2025-06-11T01:21:10.951902-07:00,0.0,10.757436,10757.436 +8545,2025-06-11T01:21:21.707930-07:00,0.0,10.756028,10756.028 +8546,2025-06-11T01:21:32.467928-07:00,0.0,10.759998,10759.998 +8547,2025-06-11T01:21:43.230444-07:00,0.0,10.762516,10762.516 +8548,2025-06-11T01:21:53.986136-07:00,0.0,10.755692,10755.692 +8549,2025-06-11T01:22:04.736563-07:00,0.0,10.750427,10750.427 +8550,2025-06-11T01:22:15.495298-07:00,0.0,10.758735,10758.735 +8551,2025-06-11T01:22:26.255497-07:00,0.0,10.760199,10760.199 +8552,2025-06-11T01:22:37.017422-07:00,0.0,10.761925,10761.925 +8553,2025-06-11T01:22:47.776417-07:00,0.0,10.758995,10758.995 +8554,2025-06-11T01:22:58.536556-07:00,0.0,10.760139,10760.139 +8555,2025-06-11T01:23:06.825744-07:00,0.0,8.289188,8289.188 +8556,2025-06-11T01:23:09.289842-07:00,0.0,2.464098,2464.098 +8557,2025-06-11T01:23:20.046618-07:00,0.0,10.756776,10756.776 +8558,2025-06-11T01:23:30.810536-07:00,0.0,10.763918,10763.918 +8559,2025-06-11T01:23:41.565253-07:00,0.0,10.754717,10754.717 +8560,2025-06-11T01:23:52.318261-07:00,0.0,10.753008,10753.008 +8561,2025-06-11T01:24:03.083501-07:00,0.0,10.76524,10765.24 +8562,2025-06-11T01:24:13.838403-07:00,0.0,10.754902,10754.902 +8563,2025-06-11T01:24:24.599757-07:00,0.0,10.761354,10761.354 +8564,2025-06-11T01:24:35.357253-07:00,0.0,10.757496,10757.496 +8565,2025-06-11T01:24:46.116254-07:00,0.0,10.759001,10759.001 +8566,2025-06-11T01:24:56.864483-07:00,0.0,10.748229,10748.229 +8567,2025-06-11T01:25:07.627896-07:00,0.0,10.763413,10763.413 +8568,2025-06-11T01:25:18.388468-07:00,0.0,10.760572,10760.572 +8569,2025-06-11T01:25:29.139403-07:00,0.0,10.750935,10750.935 +8570,2025-06-11T01:25:39.899294-07:00,0.0,10.759891,10759.891 +8571,2025-06-11T01:25:50.664832-07:00,0.0,10.765538,10765.538 +8572,2025-06-11T01:26:01.421395-07:00,0.0,10.756563,10756.563 +8573,2025-06-11T01:26:12.176407-07:00,0.0,10.755012,10755.012 +8574,2025-06-11T01:26:22.929443-07:00,0.0,10.753036,10753.036 +8575,2025-06-11T01:26:33.698768-07:00,0.0,10.769325,10769.325 +8576,2025-06-11T01:26:44.459874-07:00,0.0,10.761106,10761.106 +8577,2025-06-11T01:26:55.214246-07:00,0.0,10.754372,10754.372 +8578,2025-06-11T01:27:05.972250-07:00,0.0,10.758004,10758.004 +8579,2025-06-11T01:27:16.715512-07:00,0.0,10.743262,10743.262 +8580,2025-06-11T01:27:27.476407-07:00,0.0,10.760895,10760.895 +8581,2025-06-11T01:27:38.238166-07:00,0.0,10.761759,10761.759 +8582,2025-06-11T01:27:48.991545-07:00,0.0,10.753379,10753.379 +8583,2025-06-11T01:27:59.750258-07:00,0.0,10.758713,10758.713 +8584,2025-06-11T01:28:10.511249-07:00,0.0,10.760991,10760.991 +8585,2025-06-11T01:28:21.263246-07:00,0.0,10.751997,10751.997 +8586,2025-06-11T01:28:32.029901-07:00,0.0,10.766655,10766.655 +8587,2025-06-11T01:28:42.786019-07:00,0.0,10.756118,10756.118 +8588,2025-06-11T01:28:53.540370-07:00,0.0,10.754351,10754.351 +8589,2025-06-11T01:29:04.297497-07:00,0.0,10.757127,10757.127 +8590,2025-06-11T01:29:15.057254-07:00,0.0,10.759757,10759.757 +8591,2025-06-11T01:29:25.818602-07:00,0.0,10.761348,10761.348 +8592,2025-06-11T01:29:36.571543-07:00,0.0,10.752941,10752.941 +8593,2025-06-11T01:29:47.328307-07:00,0.0,10.756764,10756.764 +8594,2025-06-11T01:29:58.083248-07:00,0.0,10.754941,10754.941 +8595,2025-06-11T01:30:08.843240-07:00,0.0,10.759992,10759.992 +8596,2025-06-11T01:30:19.602515-07:00,0.0,10.759275,10759.275 +8597,2025-06-11T01:30:30.357532-07:00,0.0,10.755017,10755.017 +8598,2025-06-11T01:30:41.114631-07:00,0.0,10.757099,10757.099 +8599,2025-06-11T01:30:51.879585-07:00,0.0,10.764954,10764.954 +8600,2025-06-11T01:31:02.631258-07:00,0.0,10.751673,10751.673 +8601,2025-06-11T01:31:13.392376-07:00,0.0,10.761118,10761.118 +8602,2025-06-11T01:31:24.149795-07:00,0.0,10.757419,10757.419 +8603,2025-06-11T01:31:34.905349-07:00,0.0,10.755554,10755.554 +8604,2025-06-11T01:31:45.664250-07:00,0.0,10.758901,10758.901 +8605,2025-06-11T01:31:56.416848-07:00,0.0,10.752598,10752.598 +8606,2025-06-11T01:32:07.179245-07:00,0.0,10.762397,10762.397 +8607,2025-06-11T01:32:17.959727-07:00,0.0,10.780482,10780.482 +8608,2025-06-11T01:32:28.737565-07:00,0.0,10.777838,10777.838 +8609,2025-06-11T01:32:39.509253-07:00,0.0,10.771688,10771.688 +8610,2025-06-11T01:32:50.294659-07:00,0.0,10.785406,10785.406 +8611,2025-06-11T01:33:01.067231-07:00,0.0,10.772572,10772.572 +8612,2025-06-11T01:33:11.844255-07:00,0.0,10.777024,10777.024 +8613,2025-06-11T01:33:22.617299-07:00,0.0,10.773044,10773.044 +8614,2025-06-11T01:33:33.388585-07:00,0.0,10.771286,10771.286 +8615,2025-06-11T01:33:44.169589-07:00,0.0,10.781004,10781.004 +8616,2025-06-11T01:33:54.950254-07:00,0.0,10.780665,10780.665 +8617,2025-06-11T01:34:05.717791-07:00,0.0,10.767537,10767.537 +8618,2025-06-11T01:34:16.474575-07:00,0.0,10.756784,10756.784 +8619,2025-06-11T01:34:27.231583-07:00,0.0,10.757008,10757.008 +8620,2025-06-11T01:34:37.989505-07:00,0.0,10.757922,10757.922 +8621,2025-06-11T01:34:48.749217-07:00,0.0,10.759712,10759.712 +8622,2025-06-11T01:34:59.499859-07:00,0.0,10.750642,10750.642 +8623,2025-06-11T01:35:00.546938-07:00,0.0,1.047079,1047.079 +8624,2025-06-11T01:35:10.256961-07:00,0.0,9.710023,9710.023 +8625,2025-06-11T01:35:21.019351-07:00,0.0,10.76239,10762.39 +8626,2025-06-11T01:35:31.780257-07:00,0.0,10.760906,10760.906 +8627,2025-06-11T01:35:42.538754-07:00,0.0,10.758497,10758.497 +8628,2025-06-11T01:35:53.297252-07:00,0.0,10.758498,10758.498 +8629,2025-06-11T01:36:04.056220-07:00,0.0,10.758968,10758.968 +8630,2025-06-11T01:36:14.810660-07:00,0.0,10.75444,10754.44 +8631,2025-06-11T01:36:25.575254-07:00,0.0,10.764594,10764.594 +8632,2025-06-11T01:36:36.328419-07:00,0.0,10.753165,10753.165 +8633,2025-06-11T01:36:47.090497-07:00,0.0,10.762078,10762.078 +8634,2025-06-11T01:36:57.847550-07:00,0.0,10.757053,10757.053 +8635,2025-06-11T01:37:08.604258-07:00,0.0,10.756708,10756.708 +8636,2025-06-11T01:37:19.358254-07:00,0.0,10.753996,10753.996 +8637,2025-06-11T01:37:30.112550-07:00,0.0,10.754296,10754.296 +8638,2025-06-11T01:37:40.866411-07:00,0.0,10.753861,10753.861 +8639,2025-06-11T01:37:51.628631-07:00,0.0,10.76222,10762.22 +8640,2025-06-11T01:38:02.389632-07:00,0.0,10.761001,10761.001 +8641,2025-06-11T01:38:13.149604-07:00,0.0,10.759972,10759.972 +8642,2025-06-11T01:38:23.906431-07:00,0.0,10.756827,10756.827 +8643,2025-06-11T01:38:34.660454-07:00,0.0,10.754023,10754.023 +8644,2025-06-11T01:38:45.412523-07:00,0.0,10.752069,10752.069 +8645,2025-06-11T01:38:56.174441-07:00,0.0,10.761918,10761.918 +8646,2025-06-11T01:39:06.925523-07:00,0.0,10.751082,10751.082 +8647,2025-06-11T01:39:17.686091-07:00,0.0,10.760568,10760.568 +8648,2025-06-11T01:39:28.447253-07:00,0.0,10.761162,10761.162 +8649,2025-06-11T01:39:39.200297-07:00,0.0,10.753044,10753.044 +8650,2025-06-11T01:39:49.959594-07:00,0.0,10.759297,10759.297 +8651,2025-06-11T01:40:00.706437-07:00,0.0,10.746843,10746.843 +8652,2025-06-11T01:40:11.465573-07:00,0.0,10.759136,10759.136 +8653,2025-06-11T01:40:22.224263-07:00,0.0,10.75869,10758.69 +8654,2025-06-11T01:40:32.981489-07:00,0.0,10.757226,10757.226 +8655,2025-06-11T01:40:43.739252-07:00,0.0,10.757763,10757.763 +8656,2025-06-11T01:40:54.497556-07:00,0.0,10.758304,10758.304 +8657,2025-06-11T01:41:05.249569-07:00,0.0,10.752013,10752.013 +8658,2025-06-11T01:41:16.007303-07:00,0.0,10.757734,10757.734 +8659,2025-06-11T01:41:26.771247-07:00,0.0,10.763944,10763.944 +8660,2025-06-11T01:41:37.525501-07:00,0.0,10.754254,10754.254 +8661,2025-06-11T01:41:48.279319-07:00,0.0,10.753818,10753.818 +8662,2025-06-11T01:41:59.033196-07:00,0.0,10.753877,10753.877 +8663,2025-06-11T01:42:09.788713-07:00,0.0,10.755517,10755.517 +8664,2025-06-11T01:42:20.553041-07:00,0.0,10.764328,10764.328 +8665,2025-06-11T01:42:31.303431-07:00,0.0,10.75039,10750.39 +8666,2025-06-11T01:42:42.056491-07:00,0.0,10.75306,10753.06 +8667,2025-06-11T01:42:52.817440-07:00,0.0,10.760949,10760.949 +8668,2025-06-11T01:43:03.571126-07:00,0.0,10.753686,10753.686 +8669,2025-06-11T01:43:14.329888-07:00,0.0,10.758762,10758.762 +8670,2025-06-11T01:43:25.090253-07:00,0.0,10.760365,10760.365 +8671,2025-06-11T01:43:35.847244-07:00,0.0,10.756991,10756.991 +8672,2025-06-11T01:43:46.602522-07:00,0.0,10.755278,10755.278 +8673,2025-06-11T01:43:57.354397-07:00,0.0,10.751875,10751.875 +8674,2025-06-11T01:44:08.115277-07:00,0.0,10.76088,10760.88 +8675,2025-06-11T01:44:18.869541-07:00,0.0,10.754264,10754.264 +8676,2025-06-11T01:44:29.630257-07:00,0.0,10.760716,10760.716 +8677,2025-06-11T01:44:40.388428-07:00,0.0,10.758171,10758.171 +8678,2025-06-11T01:44:51.147245-07:00,0.0,10.758817,10758.817 +8679,2025-06-11T01:45:01.901701-07:00,0.0,10.754456,10754.456 +8680,2025-06-11T01:45:12.662244-07:00,0.0,10.760543,10760.543 +8681,2025-06-11T01:45:23.422304-07:00,0.0,10.76006,10760.06 +8682,2025-06-11T01:45:34.172340-07:00,0.0,10.750036,10750.036 +8683,2025-06-11T01:45:44.928254-07:00,0.0,10.755914,10755.914 +8684,2025-06-11T01:45:55.691768-07:00,0.0,10.763514,10763.514 +8685,2025-06-11T01:46:06.444645-07:00,0.0,10.752877,10752.877 +8686,2025-06-11T01:46:17.207278-07:00,0.0,10.762633,10762.633 +8687,2025-06-11T01:46:27.964253-07:00,0.0,10.756975,10756.975 +8688,2025-06-11T01:46:38.727303-07:00,0.0,10.76305,10763.05 +8689,2025-06-11T01:46:49.480551-07:00,0.0,10.753248,10753.248 +8690,2025-06-11T01:47:00.237484-07:00,0.0,10.756933,10756.933 +8691,2025-06-11T01:47:10.997299-07:00,0.0,10.759815,10759.815 +8692,2025-06-11T01:47:21.756402-07:00,0.0,10.759103,10759.103 +8693,2025-06-11T01:47:32.521986-07:00,0.0,10.765584,10765.584 +8694,2025-06-11T01:47:43.274402-07:00,0.0,10.752416,10752.416 +8695,2025-06-11T01:47:54.024784-07:00,0.0,10.750382,10750.382 +8696,2025-06-11T01:48:04.782314-07:00,0.0,10.75753,10757.53 +8697,2025-06-11T01:48:15.545467-07:00,0.0,10.763153,10763.153 +8698,2025-06-11T01:48:26.300886-07:00,0.0,10.755419,10755.419 +8699,2025-06-11T01:48:37.056852-07:00,0.0,10.755966,10755.966 +8700,2025-06-11T01:48:47.810545-07:00,0.0,10.753693,10753.693 +8701,2025-06-11T01:48:58.568522-07:00,0.0,10.757977,10757.977 +8702,2025-06-11T01:49:09.329972-07:00,0.0,10.76145,10761.45 +8703,2025-06-11T01:49:20.087263-07:00,0.0,10.757291,10757.291 +8704,2025-06-11T01:49:30.834466-07:00,0.0,10.747203,10747.203 +8705,2025-06-11T01:49:41.590214-07:00,0.0,10.755748,10755.748 +8706,2025-06-11T01:49:52.348567-07:00,0.0,10.758353,10758.353 +8707,2025-06-11T01:50:03.099759-07:00,0.0,10.751192,10751.192 +8708,2025-06-11T01:50:13.856372-07:00,0.0,10.756613,10756.613 +8709,2025-06-11T01:50:24.608360-07:00,0.0,10.751988,10751.988 +8710,2025-06-11T01:50:35.373254-07:00,0.0,10.764894,10764.894 +8711,2025-06-11T01:50:46.129295-07:00,0.0,10.756041,10756.041 +8712,2025-06-11T01:50:56.878300-07:00,0.0,10.749005,10749.005 +8713,2025-06-11T01:51:07.637235-07:00,0.0,10.758935,10758.935 +8714,2025-06-11T01:51:18.393285-07:00,0.0,10.75605,10756.05 +8715,2025-06-11T01:51:29.152255-07:00,0.0,10.75897,10758.97 +8716,2025-06-11T01:51:39.907008-07:00,0.0,10.754753,10754.753 +8717,2025-06-11T01:51:50.670266-07:00,0.0,10.763258,10763.258 +8718,2025-06-11T01:52:01.416252-07:00,0.0,10.745986,10745.986 +8719,2025-06-11T01:52:12.187242-07:00,0.0,10.77099,10770.99 +8720,2025-06-11T01:52:22.941355-07:00,0.0,10.754113,10754.113 +8721,2025-06-11T01:52:33.699907-07:00,0.0,10.758552,10758.552 +8722,2025-06-11T01:52:44.453712-07:00,0.0,10.753805,10753.805 +8723,2025-06-11T01:52:55.207742-07:00,0.0,10.75403,10754.03 +8724,2025-06-11T01:53:05.960945-07:00,0.0,10.753203,10753.203 +8725,2025-06-11T01:53:16.718102-07:00,0.0,10.757157,10757.157 +8726,2025-06-11T01:53:27.461899-07:00,0.0,10.743797,10743.797 +8727,2025-06-11T01:53:38.220036-07:00,0.0,10.758137,10758.137 +8728,2025-06-11T01:53:48.980687-07:00,0.0,10.760651,10760.651 +8729,2025-06-11T01:53:59.729711-07:00,0.0,10.749024,10749.024 +8730,2025-06-11T01:54:10.487709-07:00,0.0,10.757998,10757.998 +8731,2025-06-11T01:54:21.244707-07:00,0.0,10.756998,10756.998 +8732,2025-06-11T01:54:31.998678-07:00,0.0,10.753971,10753.971 +8733,2025-06-11T01:54:42.747707-07:00,0.0,10.749029,10749.029 +8734,2025-06-11T01:54:53.503252-07:00,0.0,10.755545,10755.545 +8735,2025-06-11T01:55:04.257431-07:00,0.0,10.754179,10754.179 +8736,2025-06-11T01:55:15.019704-07:00,0.0,10.762273,10762.273 +8737,2025-06-11T01:55:25.771709-07:00,0.0,10.752005,10752.005 +8738,2025-06-11T01:55:36.529708-07:00,0.0,10.757999,10757.999 +8739,2025-06-11T01:55:47.286748-07:00,0.0,10.75704,10757.04 +8740,2025-06-11T01:55:58.041059-07:00,0.0,10.754311,10754.311 +8741,2025-06-11T01:56:08.796386-07:00,0.0,10.755327,10755.327 +8742,2025-06-11T01:56:19.551709-07:00,0.0,10.755323,10755.323 +8743,2025-06-11T01:56:30.314712-07:00,0.0,10.763003,10763.003 +8744,2025-06-11T01:56:41.064027-07:00,0.0,10.749315,10749.315 +8745,2025-06-11T01:56:51.822812-07:00,0.0,10.758785,10758.785 +8746,2025-06-11T01:57:02.588243-07:00,0.0,10.765431,10765.431 +8747,2025-06-11T01:57:13.344863-07:00,0.0,10.75662,10756.62 +8748,2025-06-11T01:57:24.094819-07:00,0.0,10.749956,10749.956 +8749,2025-06-11T01:57:34.853044-07:00,0.0,10.758225,10758.225 +8750,2025-06-11T01:57:45.612109-07:00,0.0,10.759065,10759.065 +8751,2025-06-11T01:57:56.372994-07:00,0.0,10.760885,10760.885 +8752,2025-06-11T01:58:07.126709-07:00,0.0,10.753715,10753.715 +8753,2025-06-11T01:58:17.886197-07:00,0.0,10.759488,10759.488 +8754,2025-06-11T01:58:28.650776-07:00,0.0,10.764579,10764.579 +8755,2025-06-11T01:58:39.401898-07:00,0.0,10.751122,10751.122 +8756,2025-06-11T01:58:50.159978-07:00,0.0,10.75808,10758.08 +8757,2025-06-11T01:59:00.927972-07:00,0.0,10.767994,10767.994 +8758,2025-06-11T01:59:11.674970-07:00,0.0,10.746998,10746.998 +8759,2025-06-11T01:59:22.433708-07:00,0.0,10.758738,10758.738 +8760,2025-06-11T01:59:33.186695-07:00,0.0,10.752987,10752.987 +8761,2025-06-11T01:59:43.947750-07:00,0.0,10.761055,10761.055 +8762,2025-06-11T01:59:54.706903-07:00,0.0,10.759153,10759.153 +8763,2025-06-11T02:00:05.453375-07:00,0.0,10.746472,10746.472 +8764,2025-06-11T02:00:16.214711-07:00,0.0,10.761336,10761.336 +8765,2025-06-11T02:00:26.971954-07:00,0.0,10.757243,10757.243 +8766,2025-06-11T02:00:37.725707-07:00,0.0,10.753753,10753.753 +8767,2025-06-11T02:00:48.475883-07:00,0.0,10.750176,10750.176 +8768,2025-06-11T02:00:59.231489-07:00,0.0,10.755606,10755.606 +8769,2025-06-11T02:01:09.992141-07:00,0.0,10.760652,10760.652 +8770,2025-06-11T02:01:20.748713-07:00,0.0,10.756572,10756.572 +8771,2025-06-11T02:01:31.513936-07:00,0.0,10.765223,10765.223 +8772,2025-06-11T02:01:42.265774-07:00,0.0,10.751838,10751.838 +8773,2025-06-11T02:01:53.026990-07:00,0.0,10.761216,10761.216 +8774,2025-06-11T02:02:03.779177-07:00,0.0,10.752187,10752.187 +8775,2025-06-11T02:02:14.527716-07:00,0.0,10.748539,10748.539 +8776,2025-06-11T02:02:25.288777-07:00,0.0,10.761061,10761.061 +8777,2025-06-11T02:02:36.040709-07:00,0.0,10.751932,10751.932 +8778,2025-06-11T02:02:46.796742-07:00,0.0,10.756033,10756.033 +8779,2025-06-11T02:02:57.548707-07:00,0.0,10.751965,10751.965 +8780,2025-06-11T02:03:08.312057-07:00,0.0,10.76335,10763.35 +8781,2025-06-11T02:03:19.061020-07:00,0.0,10.748963,10748.963 +8782,2025-06-11T02:03:29.814374-07:00,0.0,10.753354,10753.354 +8783,2025-06-11T02:03:40.574709-07:00,0.0,10.760335,10760.335 +8784,2025-06-11T02:03:51.331037-07:00,0.0,10.756328,10756.328 +8785,2025-06-11T02:04:02.085688-07:00,0.0,10.754651,10754.651 +8786,2025-06-11T02:04:12.834707-07:00,0.0,10.749019,10749.019 +8787,2025-06-11T02:04:23.597283-07:00,0.0,10.762576,10762.576 +8788,2025-06-11T02:04:34.345996-07:00,0.0,10.748713,10748.713 +8789,2025-06-11T02:04:45.102709-07:00,0.0,10.756713,10756.713 +8790,2025-06-11T02:04:55.865277-07:00,0.0,10.762568,10762.568 +8791,2025-06-11T02:05:06.616709-07:00,0.0,10.751432,10751.432 +8792,2025-06-11T02:05:17.376857-07:00,0.0,10.760148,10760.148 +8793,2025-06-11T02:05:28.130057-07:00,0.0,10.7532,10753.2 +8794,2025-06-11T02:05:38.889199-07:00,0.0,10.759142,10759.142 +8795,2025-06-11T02:05:49.643711-07:00,0.0,10.754512,10754.512 +8796,2025-06-11T02:06:00.402133-07:00,0.0,10.758422,10758.422 +8797,2025-06-11T02:06:11.156708-07:00,0.0,10.754575,10754.575 +8798,2025-06-11T02:06:21.907709-07:00,0.0,10.751001,10751.001 +8799,2025-06-11T02:06:32.672294-07:00,0.0,10.764585,10764.585 +8800,2025-06-11T02:06:43.420027-07:00,0.0,10.747733,10747.733 +8801,2025-06-11T02:06:54.186753-07:00,0.0,10.766726,10766.726 +8802,2025-06-11T02:07:04.935709-07:00,0.0,10.748956,10748.956 +8803,2025-06-11T02:07:15.696700-07:00,0.0,10.760991,10760.991 +8804,2025-06-11T02:07:26.457645-07:00,0.0,10.760945,10760.945 +8805,2025-06-11T02:07:37.215414-07:00,0.0,10.757769,10757.769 +8806,2025-06-11T02:07:47.978684-07:00,0.0,10.76327,10763.27 +8807,2025-06-11T02:07:58.730704-07:00,0.0,10.75202,10752.02 +8808,2025-06-11T02:08:09.489750-07:00,0.0,10.759046,10759.046 +8809,2025-06-11T02:08:20.249785-07:00,0.0,10.760035,10760.035 +8810,2025-06-11T02:08:31.004933-07:00,0.0,10.755148,10755.148 +8811,2025-06-11T02:08:41.760449-07:00,0.0,10.755516,10755.516 +8812,2025-06-11T02:08:52.520857-07:00,0.0,10.760408,10760.408 +8813,2025-06-11T02:09:03.279346-07:00,0.0,10.758489,10758.489 +8814,2025-06-11T02:09:14.035947-07:00,0.0,10.756601,10756.601 +8815,2025-06-11T02:09:24.790899-07:00,0.0,10.754952,10754.952 +8816,2025-06-11T02:09:35.555187-07:00,0.0,10.764288,10764.288 +8817,2025-06-11T02:09:46.305713-07:00,0.0,10.750526,10750.526 +8818,2025-06-11T02:09:57.063449-07:00,0.0,10.757736,10757.736 +8819,2025-06-11T02:10:07.815967-07:00,0.0,10.752518,10752.518 +8820,2025-06-11T02:10:18.571731-07:00,0.0,10.755764,10755.764 +8821,2025-06-11T02:10:29.322640-07:00,0.0,10.750909,10750.909 +8822,2025-06-11T02:10:40.074253-07:00,0.0,10.751613,10751.613 +8823,2025-06-11T02:10:50.829750-07:00,0.0,10.755497,10755.497 +8824,2025-06-11T02:11:01.592693-07:00,0.0,10.762943,10762.943 +8825,2025-06-11T02:11:12.348853-07:00,0.0,10.75616,10756.16 +8826,2025-06-11T02:11:23.104707-07:00,0.0,10.755854,10755.854 +8827,2025-06-11T02:11:33.867219-07:00,0.0,10.762512,10762.512 +8828,2025-06-11T02:11:44.615897-07:00,0.0,10.748678,10748.678 +8829,2025-06-11T02:11:55.382900-07:00,0.0,10.767003,10767.003 +8830,2025-06-11T02:12:06.141944-07:00,0.0,10.759044,10759.044 +8831,2025-06-11T02:12:16.899733-07:00,0.0,10.757789,10757.789 +8832,2025-06-11T02:12:27.655983-07:00,0.0,10.75625,10756.25 +8833,2025-06-11T02:12:38.414701-07:00,0.0,10.758718,10758.718 +8834,2025-06-11T02:12:49.176959-07:00,0.0,10.762258,10762.258 +8835,2025-06-11T02:12:59.932965-07:00,0.0,10.756006,10756.006 +8836,2025-06-11T02:13:10.691547-07:00,0.0,10.758582,10758.582 +8837,2025-06-11T02:13:21.443048-07:00,0.0,10.751501,10751.501 +8838,2025-06-11T02:13:32.203379-07:00,0.0,10.760331,10760.331 +8839,2025-06-11T02:13:42.965692-07:00,0.0,10.762313,10762.313 +8840,2025-06-11T02:13:53.724858-07:00,0.0,10.759166,10759.166 +8841,2025-06-11T02:14:04.478770-07:00,0.0,10.753912,10753.912 +8842,2025-06-11T02:14:15.234049-07:00,0.0,10.755279,10755.279 +8843,2025-06-11T02:14:25.996711-07:00,0.0,10.762662,10762.662 +8844,2025-06-11T02:14:36.753707-07:00,0.0,10.756996,10756.996 +8845,2025-06-11T02:14:47.513569-07:00,0.0,10.759862,10759.862 +8846,2025-06-11T02:14:58.273758-07:00,0.0,10.760189,10760.189 +8847,2025-06-11T02:15:09.032066-07:00,0.0,10.758308,10758.308 +8848,2025-06-11T02:15:19.781089-07:00,0.0,10.749023,10749.023 +8849,2025-06-11T02:15:30.539343-07:00,0.0,10.758254,10758.254 +8850,2025-06-11T02:15:41.297789-07:00,0.0,10.758446,10758.446 +8851,2025-06-11T02:15:52.055899-07:00,0.0,10.75811,10758.11 +8852,2025-06-11T02:16:02.820856-07:00,0.0,10.764957,10764.957 +8853,2025-06-11T02:16:13.574746-07:00,0.0,10.75389,10753.89 +8854,2025-06-11T02:16:24.333107-07:00,0.0,10.758361,10758.361 +8855,2025-06-11T02:16:35.099974-07:00,0.0,10.766867,10766.867 +8856,2025-06-11T02:16:45.854969-07:00,0.0,10.754995,10754.995 +8857,2025-06-11T02:16:56.613042-07:00,0.0,10.758073,10758.073 +8858,2025-06-11T02:17:07.366064-07:00,0.0,10.753022,10753.022 +8859,2025-06-11T02:17:18.128956-07:00,0.0,10.762892,10762.892 +8860,2025-06-11T02:17:28.885707-07:00,0.0,10.756751,10756.751 +8861,2025-06-11T02:17:39.649022-07:00,0.0,10.763315,10763.315 +8862,2025-06-11T02:17:50.403699-07:00,0.0,10.754677,10754.677 +8863,2025-06-11T02:18:01.168030-07:00,0.0,10.764331,10764.331 +8864,2025-06-11T02:18:11.920709-07:00,0.0,10.752679,10752.679 +8865,2025-06-11T02:18:22.679951-07:00,0.0,10.759242,10759.242 +8866,2025-06-11T02:18:33.434681-07:00,0.0,10.75473,10754.73 +8867,2025-06-11T02:18:44.197837-07:00,0.0,10.763156,10763.156 +8868,2025-06-11T02:18:54.952158-07:00,0.0,10.754321,10754.321 +8869,2025-06-11T02:19:05.713809-07:00,0.0,10.761651,10761.651 +8870,2025-06-11T02:19:16.469953-07:00,0.0,10.756144,10756.144 +8871,2025-06-11T02:19:27.236709-07:00,0.0,10.766756,10766.756 +8872,2025-06-11T02:19:37.987709-07:00,0.0,10.751,10751.0 +8873,2025-06-11T02:19:48.756909-07:00,0.0,10.7692,10769.2 +8874,2025-06-11T02:19:59.516799-07:00,0.0,10.75989,10759.89 +8875,2025-06-11T02:20:10.267409-07:00,0.0,10.75061,10750.61 +8876,2025-06-11T02:20:21.026229-07:00,0.0,10.75882,10758.82 +8877,2025-06-11T02:20:31.794684-07:00,0.0,10.768455,10768.455 +8878,2025-06-11T02:20:42.548709-07:00,0.0,10.754025,10754.025 +8879,2025-06-11T02:20:53.312008-07:00,0.0,10.763299,10763.299 +8880,2025-06-11T02:21:04.065968-07:00,0.0,10.75396,10753.96 +8881,2025-06-11T02:21:14.831711-07:00,0.0,10.765743,10765.743 +8882,2025-06-11T02:21:25.585711-07:00,0.0,10.754,10754.0 +8883,2025-06-11T02:21:36.350260-07:00,0.0,10.764549,10764.549 +8884,2025-06-11T02:21:47.102001-07:00,0.0,10.751741,10751.741 +8885,2025-06-11T02:21:57.868740-07:00,0.0,10.766739,10766.739 +8886,2025-06-11T02:22:08.626712-07:00,0.0,10.757972,10757.972 +8887,2025-06-11T02:22:19.382961-07:00,0.0,10.756249,10756.249 +8888,2025-06-11T02:22:30.141718-07:00,0.0,10.758757,10758.757 +8889,2025-06-11T02:22:40.898752-07:00,0.0,10.757034,10757.034 +8890,2025-06-11T02:22:51.662745-07:00,0.0,10.763993,10763.993 +8891,2025-06-11T02:23:02.419855-07:00,0.0,10.75711,10757.11 +8892,2025-06-11T02:23:13.186229-07:00,0.0,10.766374,10766.374 +8893,2025-06-11T02:23:23.949711-07:00,0.0,10.763482,10763.482 +8894,2025-06-11T02:23:34.700700-07:00,0.0,10.750989,10750.989 +8895,2025-06-11T02:23:45.469971-07:00,0.0,10.769271,10769.271 +8896,2025-06-11T02:23:56.224689-07:00,0.0,10.754718,10754.718 +8897,2025-06-11T02:24:06.990707-07:00,0.0,10.766018,10766.018 +8898,2025-06-11T02:24:17.746711-07:00,0.0,10.756004,10756.004 +8899,2025-06-11T02:24:28.506711-07:00,0.0,10.76,10760.0 +8900,2025-06-11T02:24:39.265721-07:00,0.0,10.75901,10759.01 +8901,2025-06-11T02:24:50.027007-07:00,0.0,10.761286,10761.286 +8902,2025-06-11T02:25:00.772182-07:00,0.0,10.745175,10745.175 +8903,2025-06-11T02:25:11.538712-07:00,0.0,10.76653,10766.53 +8904,2025-06-11T02:25:22.292049-07:00,0.0,10.753337,10753.337 +8905,2025-06-11T02:25:33.043942-07:00,0.0,10.751893,10751.893 +8906,2025-06-11T02:25:43.805315-07:00,0.0,10.761373,10761.373 +8907,2025-06-11T02:25:54.564999-07:00,0.0,10.759684,10759.684 +8908,2025-06-11T02:26:05.315970-07:00,0.0,10.750971,10750.971 +8909,2025-06-11T02:26:16.080707-07:00,0.0,10.764737,10764.737 +8910,2025-06-11T02:26:26.835709-07:00,0.0,10.755002,10755.002 +8911,2025-06-11T02:26:37.595539-07:00,0.0,10.75983,10759.83 +8912,2025-06-11T02:26:48.353872-07:00,0.0,10.758333,10758.333 +8913,2025-06-11T02:26:59.113962-07:00,0.0,10.76009,10760.09 +8914,2025-06-11T02:27:09.872707-07:00,0.0,10.758745,10758.745 +8915,2025-06-11T02:27:20.628711-07:00,0.0,10.756004,10756.004 +8916,2025-06-11T02:27:31.384979-07:00,0.0,10.756268,10756.268 +8917,2025-06-11T02:27:42.132755-07:00,0.0,10.747776,10747.776 +8918,2025-06-11T02:27:52.892709-07:00,0.0,10.759954,10759.954 +8919,2025-06-11T02:28:03.654334-07:00,0.0,10.761625,10761.625 +8920,2025-06-11T02:28:14.409702-07:00,0.0,10.755368,10755.368 +8921,2025-06-11T02:28:25.161764-07:00,0.0,10.752062,10752.062 +8922,2025-06-11T02:28:35.922320-07:00,0.0,10.760556,10760.556 +8923,2025-06-11T02:28:46.686900-07:00,0.0,10.76458,10764.58 +8924,2025-06-11T02:28:57.444933-07:00,0.0,10.758033,10758.033 +8925,2025-06-11T02:29:08.203370-07:00,0.0,10.758437,10758.437 +8926,2025-06-11T02:29:18.965105-07:00,0.0,10.761735,10761.735 +8927,2025-06-11T02:29:29.725708-07:00,0.0,10.760603,10760.603 +8928,2025-06-11T02:29:40.472756-07:00,0.0,10.747048,10747.048 +8929,2025-06-11T02:29:51.233709-07:00,0.0,10.760953,10760.953 +8930,2025-06-11T02:30:01.990709-07:00,0.0,10.757,10757.0 +8931,2025-06-11T02:30:12.747684-07:00,0.0,10.756975,10756.975 +8932,2025-06-11T02:30:23.502410-07:00,0.0,10.754726,10754.726 +8933,2025-06-11T02:30:34.263059-07:00,0.0,10.760649,10760.649 +8934,2025-06-11T02:30:45.026711-07:00,0.0,10.763652,10763.652 +8935,2025-06-11T02:30:55.780949-07:00,0.0,10.754238,10754.238 +8936,2025-06-11T02:31:06.539879-07:00,0.0,10.75893,10758.93 +8937,2025-06-11T02:31:17.292250-07:00,0.0,10.752371,10752.371 +8938,2025-06-11T02:31:28.045233-07:00,0.0,10.752983,10752.983 +8939,2025-06-11T02:31:38.804979-07:00,0.0,10.759746,10759.746 +8940,2025-06-11T02:31:49.550756-07:00,0.0,10.745777,10745.777 +8941,2025-06-11T02:32:00.311958-07:00,0.0,10.761202,10761.202 +8942,2025-06-11T02:32:11.063703-07:00,0.0,10.751745,10751.745 +8943,2025-06-11T02:32:21.817707-07:00,0.0,10.754004,10754.004 +8944,2025-06-11T02:32:32.577628-07:00,0.0,10.759921,10759.921 +8945,2025-06-11T02:32:43.329010-07:00,0.0,10.751382,10751.382 +8946,2025-06-11T02:32:54.089979-07:00,0.0,10.760969,10760.969 +8947,2025-06-11T02:33:04.843694-07:00,0.0,10.753715,10753.715 +8948,2025-06-11T02:33:15.602995-07:00,0.0,10.759301,10759.301 +8949,2025-06-11T02:33:26.365831-07:00,0.0,10.762836,10762.836 +8950,2025-06-11T02:33:37.115988-07:00,0.0,10.750157,10750.157 +8951,2025-06-11T02:33:47.866044-07:00,0.0,10.750056,10750.056 +8952,2025-06-11T02:33:58.621752-07:00,0.0,10.755708,10755.708 +8953,2025-06-11T02:34:09.377966-07:00,0.0,10.756214,10756.214 +8954,2025-06-11T02:34:20.140693-07:00,0.0,10.762727,10762.727 +8955,2025-06-11T02:34:30.898695-07:00,0.0,10.758002,10758.002 +8956,2025-06-11T02:34:41.649027-07:00,0.0,10.750332,10750.332 +8957,2025-06-11T02:34:52.412112-07:00,0.0,10.763085,10763.085 +8958,2025-06-11T02:35:03.160063-07:00,0.0,10.747951,10747.951 +8959,2025-06-11T02:35:13.919956-07:00,0.0,10.759893,10759.893 +8960,2025-06-11T02:35:24.679704-07:00,0.0,10.759748,10759.748 +8961,2025-06-11T02:35:35.429273-07:00,0.0,10.749569,10749.569 +8962,2025-06-11T02:35:46.190581-07:00,0.0,10.761308,10761.308 +8963,2025-06-11T02:35:56.951828-07:00,0.0,10.761247,10761.247 +8964,2025-06-11T02:36:07.713711-07:00,0.0,10.761883,10761.883 +8965,2025-06-11T02:36:18.476739-07:00,0.0,10.763028,10763.028 +8966,2025-06-11T02:36:29.237007-07:00,0.0,10.760268,10760.268 +8967,2025-06-11T02:36:39.998112-07:00,0.0,10.761105,10761.105 +8968,2025-06-11T02:36:50.751878-07:00,0.0,10.753766,10753.766 +8969,2025-06-11T02:37:01.509919-07:00,0.0,10.758041,10758.041 +8970,2025-06-11T02:37:12.265959-07:00,0.0,10.75604,10756.04 +8971,2025-06-11T02:37:23.027970-07:00,0.0,10.762011,10762.011 +8972,2025-06-11T02:37:33.779453-07:00,0.0,10.751483,10751.483 +8973,2025-06-11T02:37:44.545760-07:00,0.0,10.766307,10766.307 +8974,2025-06-11T02:37:55.301801-07:00,0.0,10.756041,10756.041 +8975,2025-06-11T02:38:06.057709-07:00,0.0,10.755908,10755.908 +8976,2025-06-11T02:38:16.811831-07:00,0.0,10.754122,10754.122 +8977,2025-06-11T02:38:27.575339-07:00,0.0,10.763508,10763.508 +8978,2025-06-11T02:38:38.337954-07:00,0.0,10.762615,10762.615 +8979,2025-06-11T02:38:49.091000-07:00,0.0,10.753046,10753.046 +8980,2025-06-11T02:38:59.851749-07:00,0.0,10.760749,10760.749 +8981,2025-06-11T02:39:10.608272-07:00,0.0,10.756523,10756.523 +8982,2025-06-11T02:39:21.366353-07:00,0.0,10.758081,10758.081 +8983,2025-06-11T02:39:32.126709-07:00,0.0,10.760356,10760.356 +8984,2025-06-11T02:39:42.881702-07:00,0.0,10.754993,10754.993 +8985,2025-06-11T02:39:53.629894-07:00,0.0,10.748192,10748.192 +8986,2025-06-11T02:40:04.385762-07:00,0.0,10.755868,10755.868 +8987,2025-06-11T02:40:15.145307-07:00,0.0,10.759545,10759.545 +8988,2025-06-11T02:40:25.903105-07:00,0.0,10.757798,10757.798 +8989,2025-06-11T02:40:36.664709-07:00,0.0,10.761604,10761.604 +8990,2025-06-11T02:40:47.419569-07:00,0.0,10.75486,10754.86 +8991,2025-06-11T02:40:58.179745-07:00,0.0,10.760176,10760.176 +8992,2025-06-11T02:41:08.932461-07:00,0.0,10.752716,10752.716 +8993,2025-06-11T02:41:19.685252-07:00,0.0,10.752791,10752.791 +8994,2025-06-11T02:41:30.445719-07:00,0.0,10.760467,10760.467 +8995,2025-06-11T02:41:41.201711-07:00,0.0,10.755992,10755.992 +8996,2025-06-11T02:41:51.961942-07:00,0.0,10.760231,10760.231 +8997,2025-06-11T02:42:02.720558-07:00,0.0,10.758616,10758.616 +8998,2025-06-11T02:42:13.476002-07:00,0.0,10.755444,10755.444 +8999,2025-06-11T02:42:24.226401-07:00,0.0,10.750399,10750.399 +9000,2025-06-11T02:42:34.978702-07:00,0.0,10.752301,10752.301 +9001,2025-06-11T02:42:45.731289-07:00,0.0,10.752587,10752.587 +9002,2025-06-11T02:42:56.492711-07:00,0.0,10.761422,10761.422 +9003,2025-06-11T02:43:07.241073-07:00,0.0,10.748362,10748.362 +9004,2025-06-11T02:43:17.997709-07:00,0.0,10.756636,10756.636 +9005,2025-06-11T02:43:28.762040-07:00,0.0,10.764331,10764.331 +9006,2025-06-11T02:43:39.511293-07:00,0.0,10.749253,10749.253 +9007,2025-06-11T02:43:50.273709-07:00,0.0,10.762416,10762.416 +9008,2025-06-11T02:44:01.030783-07:00,0.0,10.757074,10757.074 +9009,2025-06-11T02:44:11.785945-07:00,0.0,10.755162,10755.162 +9010,2025-06-11T02:44:22.536740-07:00,0.0,10.750795,10750.795 +9011,2025-06-11T02:44:33.292241-07:00,0.0,10.755501,10755.501 +9012,2025-06-11T02:44:44.052287-07:00,0.0,10.760046,10760.046 +9013,2025-06-11T02:44:54.814038-07:00,0.0,10.761751,10761.751 +9014,2025-06-11T02:45:05.574711-07:00,0.0,10.760673,10760.673 +9015,2025-06-11T02:45:16.330073-07:00,0.0,10.755362,10755.362 +9016,2025-06-11T02:45:27.092760-07:00,0.0,10.762687,10762.687 +9017,2025-06-11T02:45:37.844709-07:00,0.0,10.751949,10751.949 +9018,2025-06-11T02:45:48.607678-07:00,0.0,10.762969,10762.969 +9019,2025-06-11T02:45:59.353954-07:00,0.0,10.746276,10746.276 +9020,2025-06-11T02:46:10.110711-07:00,0.0,10.756757,10756.757 +9021,2025-06-11T02:46:20.866701-07:00,0.0,10.75599,10755.99 +9022,2025-06-11T02:46:31.629393-07:00,0.0,10.762692,10762.692 +9023,2025-06-11T02:46:42.385697-07:00,0.0,10.756304,10756.304 +9024,2025-06-11T02:46:53.143179-07:00,0.0,10.757482,10757.482 +9025,2025-06-11T02:47:03.901852-07:00,0.0,10.758673,10758.673 +9026,2025-06-11T02:47:14.658000-07:00,0.0,10.756148,10756.148 +9027,2025-06-11T02:47:25.415000-07:00,0.0,10.757,10757.0 +9028,2025-06-11T02:47:36.167822-07:00,0.0,10.752822,10752.822 +9029,2025-06-11T02:47:37.242630-07:00,0.0,1.074808,1074.808 +9030,2025-06-11T02:47:46.932095-07:00,0.0,9.689465,9689.465 +9031,2025-06-11T02:47:57.690707-07:00,0.0,10.758612,10758.612 +9032,2025-06-11T02:48:08.459142-07:00,0.0,10.768435,10768.435 +9033,2025-06-11T02:48:19.219544-07:00,0.0,10.760402,10760.402 +9034,2025-06-11T02:48:29.976709-07:00,0.0,10.757165,10757.165 +9035,2025-06-11T02:48:40.736704-07:00,0.0,10.759995,10759.995 +9036,2025-06-11T02:48:50.357838-07:00,0.0,9.621134,9621.134 +9037,2025-06-11T02:48:51.489799-07:00,0.0,1.131961,1131.961 +9038,2025-06-11T02:49:02.251880-07:00,0.0,10.762081,10762.081 +9039,2025-06-11T02:49:13.013701-07:00,0.0,10.761821,10761.821 +9040,2025-06-11T02:49:23.764709-07:00,0.0,10.751008,10751.008 +9041,2025-06-11T02:49:34.532000-07:00,0.0,10.767291,10767.291 +9042,2025-06-11T02:49:45.289960-07:00,0.0,10.75796,10757.96 +9043,2025-06-11T02:49:56.045075-07:00,0.0,10.755115,10755.115 +9044,2025-06-11T02:50:06.805086-07:00,0.0,10.760011,10760.011 +9045,2025-06-11T02:50:17.569850-07:00,0.0,10.764764,10764.764 +9046,2025-06-11T02:50:28.320723-07:00,0.0,10.750873,10750.873 +9047,2025-06-11T02:50:39.078306-07:00,0.0,10.757583,10757.583 +9048,2025-06-11T02:50:49.839709-07:00,0.0,10.761403,10761.403 +9049,2025-06-11T02:51:00.600703-07:00,0.0,10.760994,10760.994 +9050,2025-06-11T02:51:11.351930-07:00,0.0,10.751227,10751.227 +9051,2025-06-11T02:51:22.112707-07:00,0.0,10.760777,10760.777 +9052,2025-06-11T02:51:32.876055-07:00,0.0,10.763348,10763.348 +9053,2025-06-11T02:51:43.627072-07:00,0.0,10.751017,10751.017 +9054,2025-06-11T02:51:54.391713-07:00,0.0,10.764641,10764.641 +9055,2025-06-11T02:52:05.141709-07:00,0.0,10.749996,10749.996 +9056,2025-06-11T02:52:15.861155-07:00,0.0,10.719446,10719.446 +9057,2025-06-11T02:52:26.617442-07:00,0.0,10.756287,10756.287 +9058,2025-06-11T02:52:37.383404-07:00,0.0,10.765962,10765.962 +9059,2025-06-11T02:52:48.136086-07:00,0.0,10.752682,10752.682 +9060,2025-06-11T02:52:58.893839-07:00,0.0,10.757753,10757.753 +9061,2025-06-11T02:53:09.650354-07:00,0.0,10.756515,10756.515 +9062,2025-06-11T02:53:20.406457-07:00,0.0,10.756103,10756.103 +9063,2025-06-11T02:53:31.163631-07:00,0.0,10.757174,10757.174 +9064,2025-06-11T02:53:41.921113-07:00,0.0,10.757482,10757.482 +9065,2025-06-11T02:53:52.674330-07:00,0.0,10.753217,10753.217 +9066,2025-06-11T02:54:03.428580-07:00,0.0,10.75425,10754.25 +9067,2025-06-11T02:54:14.187136-07:00,0.0,10.758556,10758.556 +9068,2025-06-11T02:54:24.937406-07:00,0.0,10.75027,10750.27 +9069,2025-06-11T02:54:35.697424-07:00,0.0,10.760018,10760.018 +9070,2025-06-11T02:54:46.461515-07:00,0.0,10.764091,10764.091 +9071,2025-06-11T02:54:57.212217-07:00,0.0,10.750702,10750.702 +9072,2025-06-11T02:55:07.967294-07:00,0.0,10.755077,10755.077 +9073,2025-06-11T02:55:18.724086-07:00,0.0,10.756792,10756.792 +9074,2025-06-11T02:55:29.489479-07:00,0.0,10.765393,10765.393 +9075,2025-06-11T02:55:40.238575-07:00,0.0,10.749096,10749.096 +9076,2025-06-11T02:55:50.996100-07:00,0.0,10.757525,10757.525 +9077,2025-06-11T02:56:01.748797-07:00,0.0,10.752697,10752.697 +9078,2025-06-11T02:56:12.503107-07:00,0.0,10.75431,10754.31 +9079,2025-06-11T02:56:23.260174-07:00,0.0,10.757067,10757.067 +9080,2025-06-11T02:56:34.016204-07:00,0.0,10.75603,10756.03 +9081,2025-06-11T02:56:44.764307-07:00,0.0,10.748103,10748.103 +9082,2025-06-11T02:56:55.523111-07:00,0.0,10.758804,10758.804 +9083,2025-06-11T02:57:06.275156-07:00,0.0,10.752045,10752.045 +9084,2025-06-11T02:57:17.030565-07:00,0.0,10.755409,10755.409 +9085,2025-06-11T02:57:27.787302-07:00,0.0,10.756737,10756.737 +9086,2025-06-11T02:57:38.540541-07:00,0.0,10.753239,10753.239 +9087,2025-06-11T02:57:49.289111-07:00,0.0,10.74857,10748.57 +9088,2025-06-11T02:58:00.049228-07:00,0.0,10.760117,10760.117 +9089,2025-06-11T02:58:10.809588-07:00,0.0,10.76036,10760.36 +9090,2025-06-11T02:58:21.567925-07:00,0.0,10.758337,10758.337 +9091,2025-06-11T02:58:32.321098-07:00,0.0,10.753173,10753.173 +9092,2025-06-11T02:58:43.069192-07:00,0.0,10.748094,10748.094 +9093,2025-06-11T02:58:53.832152-07:00,0.0,10.76296,10762.96 +9094,2025-06-11T02:59:04.583999-07:00,0.0,10.751847,10751.847 +9095,2025-06-11T02:59:15.341483-07:00,0.0,10.757484,10757.484 +9096,2025-06-11T02:59:26.107567-07:00,0.0,10.766084,10766.084 +9097,2025-06-11T02:59:36.856624-07:00,0.0,10.749057,10749.057 +9098,2025-06-11T02:59:47.619107-07:00,0.0,10.762483,10762.483 +9099,2025-06-11T02:59:58.376614-07:00,0.0,10.757507,10757.507 +9100,2025-06-11T03:00:09.124444-07:00,0.0,10.74783,10747.83 +9101,2025-06-11T03:00:19.884444-07:00,0.0,10.76,10760.0 +9102,2025-06-11T03:00:30.642249-07:00,0.0,10.757805,10757.805 +9103,2025-06-11T03:00:41.389111-07:00,0.0,10.746862,10746.862 +9104,2025-06-11T03:00:52.147700-07:00,0.0,10.758589,10758.589 +9105,2025-06-11T03:01:02.902108-07:00,0.0,10.754408,10754.408 +9106,2025-06-11T03:01:13.660194-07:00,0.0,10.758086,10758.086 +9107,2025-06-11T03:01:24.417392-07:00,0.0,10.757198,10757.198 +9108,2025-06-11T03:01:35.166916-07:00,0.0,10.749524,10749.524 +9109,2025-06-11T03:01:45.926109-07:00,0.0,10.759193,10759.193 +9110,2025-06-11T03:01:56.687109-07:00,0.0,10.761,10761.0 +9111,2025-06-11T03:02:07.437108-07:00,0.0,10.749999,10749.999 +9112,2025-06-11T03:02:18.198856-07:00,0.0,10.761748,10761.748 +9113,2025-06-11T03:02:28.953505-07:00,0.0,10.754649,10754.649 +9114,2025-06-11T03:02:39.702685-07:00,0.0,10.74918,10749.18 +9115,2025-06-11T03:02:50.452523-07:00,0.0,10.749838,10749.838 +9116,2025-06-11T03:03:01.217628-07:00,0.0,10.765105,10765.105 +9117,2025-06-11T03:03:11.963177-07:00,0.0,10.745549,10745.549 +9118,2025-06-11T03:03:22.720171-07:00,0.0,10.756994,10756.994 +9119,2025-06-11T03:03:33.477680-07:00,0.0,10.757509,10757.509 +9120,2025-06-11T03:03:44.234422-07:00,0.0,10.756742,10756.742 +9121,2025-06-11T03:03:54.997111-07:00,0.0,10.762689,10762.689 +9122,2025-06-11T03:04:05.754107-07:00,0.0,10.756996,10756.996 +9123,2025-06-11T03:04:16.516908-07:00,0.0,10.762801,10762.801 +9124,2025-06-11T03:04:27.270162-07:00,0.0,10.753254,10753.254 +9125,2025-06-11T03:04:38.032526-07:00,0.0,10.762364,10762.364 +9126,2025-06-11T03:04:48.782417-07:00,0.0,10.749891,10749.891 +9127,2025-06-11T03:04:59.540184-07:00,0.0,10.757767,10757.767 +9128,2025-06-11T03:05:10.306162-07:00,0.0,10.765978,10765.978 +9129,2025-06-11T03:05:21.061185-07:00,0.0,10.755023,10755.023 +9130,2025-06-11T03:05:31.818350-07:00,0.0,10.757165,10757.165 +9131,2025-06-11T03:05:42.575105-07:00,0.0,10.756755,10756.755 +9132,2025-06-11T03:05:53.331112-07:00,0.0,10.756007,10756.007 +9133,2025-06-11T03:06:04.093108-07:00,0.0,10.761996,10761.996 +9134,2025-06-11T03:06:14.850124-07:00,0.0,10.757016,10757.016 +9135,2025-06-11T03:06:25.604639-07:00,0.0,10.754515,10754.515 +9136,2025-06-11T03:06:36.356097-07:00,0.0,10.751458,10751.458 +9137,2025-06-11T03:06:47.109453-07:00,0.0,10.753356,10753.356 +9138,2025-06-11T03:06:57.868374-07:00,0.0,10.758921,10758.921 +9139,2025-06-11T03:07:08.618427-07:00,0.0,10.750053,10750.053 +9140,2025-06-11T03:07:19.381114-07:00,0.0,10.762687,10762.687 +9141,2025-06-11T03:07:30.135645-07:00,0.0,10.754531,10754.531 +9142,2025-06-11T03:07:40.892439-07:00,0.0,10.756794,10756.794 +9143,2025-06-11T03:07:51.647113-07:00,0.0,10.754674,10754.674 +9144,2025-06-11T03:08:02.407080-07:00,0.0,10.759967,10759.967 +9145,2025-06-11T03:08:13.160156-07:00,0.0,10.753076,10753.076 +9146,2025-06-11T03:08:23.928034-07:00,0.0,10.767878,10767.878 +9147,2025-06-11T03:08:34.681688-07:00,0.0,10.753654,10753.654 +9148,2025-06-11T03:08:45.441553-07:00,0.0,10.759865,10759.865 +9149,2025-06-11T03:08:56.197367-07:00,0.0,10.755814,10755.814 +9150,2025-06-11T03:09:06.946108-07:00,0.0,10.748741,10748.741 +9151,2025-06-11T03:09:17.706104-07:00,0.0,10.759996,10759.996 +9152,2025-06-11T03:09:28.461176-07:00,0.0,10.755072,10755.072 +9153,2025-06-11T03:09:39.222664-07:00,0.0,10.761488,10761.488 +9154,2025-06-11T03:09:49.980362-07:00,0.0,10.757698,10757.698 +9155,2025-06-11T03:10:00.733375-07:00,0.0,10.753013,10753.013 +9156,2025-06-11T03:10:11.491095-07:00,0.0,10.75772,10757.72 +9157,2025-06-11T03:10:22.253228-07:00,0.0,10.762133,10762.133 +9158,2025-06-11T03:10:33.005243-07:00,0.0,10.752015,10752.015 +9159,2025-06-11T03:10:43.765959-07:00,0.0,10.760716,10760.716 +9160,2025-06-11T03:10:54.514435-07:00,0.0,10.748476,10748.476 +9161,2025-06-11T03:11:05.272476-07:00,0.0,10.758041,10758.041 +9162,2025-06-11T03:11:16.033109-07:00,0.0,10.760633,10760.633 +9163,2025-06-11T03:11:26.795141-07:00,0.0,10.762032,10762.032 +9164,2025-06-11T03:11:37.555197-07:00,0.0,10.760056,10760.056 +9165,2025-06-11T03:11:48.306350-07:00,0.0,10.751153,10751.153 +9166,2025-06-11T03:11:59.066109-07:00,0.0,10.759759,10759.759 +9167,2025-06-11T03:12:09.816590-07:00,0.0,10.750481,10750.481 +9168,2025-06-11T03:12:20.583803-07:00,0.0,10.767213,10767.213 +9169,2025-06-11T03:12:31.342513-07:00,0.0,10.75871,10758.71 +9170,2025-06-11T03:12:42.101115-07:00,0.0,10.758602,10758.602 +9171,2025-06-11T03:12:52.854154-07:00,0.0,10.753039,10753.039 +9172,2025-06-11T03:13:03.610092-07:00,0.0,10.755938,10755.938 +9173,2025-06-11T03:13:14.363109-07:00,0.0,10.753017,10753.017 +9174,2025-06-11T03:13:25.118151-07:00,0.0,10.755042,10755.042 +9175,2025-06-11T03:13:35.877401-07:00,0.0,10.75925,10759.25 +9176,2025-06-11T03:13:46.629364-07:00,0.0,10.751963,10751.963 +9177,2025-06-11T03:13:57.380599-07:00,0.0,10.751235,10751.235 +9178,2025-06-11T03:14:08.134950-07:00,0.0,10.754351,10754.351 +9179,2025-06-11T03:14:18.889090-07:00,0.0,10.75414,10754.14 +9180,2025-06-11T03:14:29.643094-07:00,0.0,10.754004,10754.004 +9181,2025-06-11T03:14:40.401101-07:00,0.0,10.758007,10758.007 +9182,2025-06-11T03:14:51.157377-07:00,0.0,10.756276,10756.276 +9183,2025-06-11T03:15:01.912198-07:00,0.0,10.754821,10754.821 +9184,2025-06-11T03:15:12.669427-07:00,0.0,10.757229,10757.229 +9185,2025-06-11T03:15:23.422106-07:00,0.0,10.752679,10752.679 +9186,2025-06-11T03:15:34.170275-07:00,0.0,10.748169,10748.169 +9187,2025-06-11T03:15:44.924109-07:00,0.0,10.753834,10753.834 +9188,2025-06-11T03:15:55.680495-07:00,0.0,10.756386,10756.386 +9189,2025-06-11T03:16:06.429108-07:00,0.0,10.748613,10748.613 +9190,2025-06-11T03:16:17.190230-07:00,0.0,10.761122,10761.122 +9191,2025-06-11T03:16:27.941395-07:00,0.0,10.751165,10751.165 +9192,2025-06-11T03:16:38.692661-07:00,0.0,10.751266,10751.266 +9193,2025-06-11T03:16:49.441335-07:00,0.0,10.748674,10748.674 +9194,2025-06-11T03:17:00.200110-07:00,0.0,10.758775,10758.775 +9195,2025-06-11T03:17:10.955106-07:00,0.0,10.754996,10754.996 +9196,2025-06-11T03:17:21.715257-07:00,0.0,10.760151,10760.151 +9197,2025-06-11T03:17:32.461354-07:00,0.0,10.746097,10746.097 +9198,2025-06-11T03:17:43.217099-07:00,0.0,10.755745,10755.745 +9199,2025-06-11T03:17:53.976273-07:00,0.0,10.759174,10759.174 +9200,2025-06-11T03:18:04.732021-07:00,0.0,10.755748,10755.748 +9201,2025-06-11T03:18:15.480731-07:00,0.0,10.74871,10748.71 +9202,2025-06-11T03:18:26.240441-07:00,0.0,10.75971,10759.71 +9203,2025-06-11T03:18:36.983378-07:00,0.0,10.742937,10742.937 +9204,2025-06-11T03:18:47.738531-07:00,0.0,10.755153,10755.153 +9205,2025-06-11T03:18:58.496706-07:00,0.0,10.758175,10758.175 +9206,2025-06-11T03:19:09.248442-07:00,0.0,10.751736,10751.736 +9207,2025-06-11T03:19:20.000477-07:00,0.0,10.752035,10752.035 +9208,2025-06-11T03:19:30.754409-07:00,0.0,10.753932,10753.932 +9209,2025-06-11T03:19:41.515363-07:00,0.0,10.760954,10760.954 +9210,2025-06-11T03:19:52.271108-07:00,0.0,10.755745,10755.745 +9211,2025-06-11T03:20:03.026086-07:00,0.0,10.754978,10754.978 +9212,2025-06-11T03:20:13.781263-07:00,0.0,10.755177,10755.177 +9213,2025-06-11T03:20:24.542438-07:00,0.0,10.761175,10761.175 +9214,2025-06-11T03:20:35.299481-07:00,0.0,10.757043,10757.043 +9215,2025-06-11T03:20:46.048543-07:00,0.0,10.749062,10749.062 +9216,2025-06-11T03:20:56.806365-07:00,0.0,10.757822,10757.822 +9217,2025-06-11T03:21:07.560808-07:00,0.0,10.754443,10754.443 +9218,2025-06-11T03:21:18.318088-07:00,0.0,10.75728,10757.28 +9219,2025-06-11T03:21:29.075153-07:00,0.0,10.757065,10757.065 +9220,2025-06-11T03:21:39.831369-07:00,0.0,10.756216,10756.216 +9221,2025-06-11T03:21:50.586260-07:00,0.0,10.754891,10754.891 +9222,2025-06-11T03:22:01.339140-07:00,0.0,10.75288,10752.88 +9223,2025-06-11T03:22:12.093862-07:00,0.0,10.754722,10754.722 +9224,2025-06-11T03:22:22.845149-07:00,0.0,10.751287,10751.287 +9225,2025-06-11T03:22:33.604088-07:00,0.0,10.758939,10758.939 +9226,2025-06-11T03:22:44.356111-07:00,0.0,10.752023,10752.023 +9227,2025-06-11T03:22:55.108251-07:00,0.0,10.75214,10752.14 +9228,2025-06-11T03:23:05.863428-07:00,0.0,10.755177,10755.177 +9229,2025-06-11T03:23:16.619457-07:00,0.0,10.756029,10756.029 +9230,2025-06-11T03:23:27.383254-07:00,0.0,10.763797,10763.797 +9231,2025-06-11T03:23:38.142145-07:00,0.0,10.758891,10758.891 +9232,2025-06-11T03:23:48.894295-07:00,0.0,10.75215,10752.15 +9233,2025-06-11T03:23:59.654440-07:00,0.0,10.760145,10760.145 +9234,2025-06-11T03:24:10.405453-07:00,0.0,10.751013,10751.013 +9235,2025-06-11T03:24:21.162339-07:00,0.0,10.756886,10756.886 +9236,2025-06-11T03:24:31.920309-07:00,0.0,10.75797,10757.97 +9237,2025-06-11T03:24:42.674108-07:00,0.0,10.753799,10753.799 +9238,2025-06-11T03:24:53.430096-07:00,0.0,10.755988,10755.988 +9239,2025-06-11T03:25:04.185988-07:00,0.0,10.755892,10755.892 +9240,2025-06-11T03:25:14.938457-07:00,0.0,10.752469,10752.469 +9241,2025-06-11T03:25:25.693489-07:00,0.0,10.755032,10755.032 +9242,2025-06-11T03:25:36.458106-07:00,0.0,10.764617,10764.617 +9243,2025-06-11T03:25:47.205517-07:00,0.0,10.747411,10747.411 +9244,2025-06-11T03:25:57.959111-07:00,0.0,10.753594,10753.594 +9245,2025-06-11T03:26:08.716975-07:00,0.0,10.757864,10757.864 +9246,2025-06-11T03:26:19.475686-07:00,0.0,10.758711,10758.711 +9247,2025-06-11T03:26:30.226447-07:00,0.0,10.750761,10750.761 +9248,2025-06-11T03:26:40.979109-07:00,0.0,10.752662,10752.662 +9249,2025-06-11T03:26:51.741113-07:00,0.0,10.762004,10762.004 +9250,2025-06-11T03:27:02.492305-07:00,0.0,10.751192,10751.192 +9251,2025-06-11T03:27:13.247210-07:00,0.0,10.754905,10754.905 +9252,2025-06-11T03:27:24.009693-07:00,0.0,10.762483,10762.483 +9253,2025-06-11T03:27:34.756856-07:00,0.0,10.747163,10747.163 +9254,2025-06-11T03:27:45.514910-07:00,0.0,10.758054,10758.054 +9255,2025-06-11T03:27:56.275503-07:00,0.0,10.760593,10760.593 +9256,2025-06-11T03:28:07.031428-07:00,0.0,10.755925,10755.925 +9257,2025-06-11T03:28:17.781112-07:00,0.0,10.749684,10749.684 +9258,2025-06-11T03:28:28.541254-07:00,0.0,10.760142,10760.142 +9259,2025-06-11T03:28:39.293495-07:00,0.0,10.752241,10752.241 +9260,2025-06-11T03:28:50.051664-07:00,0.0,10.758169,10758.169 +9261,2025-06-11T03:29:00.807113-07:00,0.0,10.755449,10755.449 +9262,2025-06-11T03:29:11.558109-07:00,0.0,10.750996,10750.996 +9263,2025-06-11T03:29:22.312105-07:00,0.0,10.753996,10753.996 +9264,2025-06-11T03:29:33.071080-07:00,0.0,10.758975,10758.975 +9265,2025-06-11T03:29:43.826422-07:00,0.0,10.755342,10755.342 +9266,2025-06-11T03:29:54.582428-07:00,0.0,10.756006,10756.006 +9267,2025-06-11T03:30:05.334437-07:00,0.0,10.752009,10752.009 +9268,2025-06-11T03:30:16.089511-07:00,0.0,10.755074,10755.074 +9269,2025-06-11T03:30:26.835481-07:00,0.0,10.74597,10745.97 +9270,2025-06-11T03:30:37.594118-07:00,0.0,10.758637,10758.637 +9271,2025-06-11T03:30:48.355090-07:00,0.0,10.760972,10760.972 +9272,2025-06-11T03:30:59.107099-07:00,0.0,10.752009,10752.009 +9273,2025-06-11T03:31:09.862152-07:00,0.0,10.755053,10755.053 +9274,2025-06-11T03:31:20.619389-07:00,0.0,10.757237,10757.237 +9275,2025-06-11T03:31:31.373114-07:00,0.0,10.753725,10753.725 +9276,2025-06-11T03:31:42.130154-07:00,0.0,10.75704,10757.04 +9277,2025-06-11T03:31:52.891095-07:00,0.0,10.760941,10760.941 +9278,2025-06-11T03:32:03.648086-07:00,0.0,10.756991,10756.991 +9279,2025-06-11T03:32:14.402893-07:00,0.0,10.754807,10754.807 +9280,2025-06-11T03:32:25.154398-07:00,0.0,10.751505,10751.505 +9281,2025-06-11T03:32:35.911449-07:00,0.0,10.757051,10757.051 +9282,2025-06-11T03:32:46.663217-07:00,0.0,10.751768,10751.768 +9283,2025-06-11T03:32:57.421197-07:00,0.0,10.75798,10757.98 +9284,2025-06-11T03:33:08.168117-07:00,0.0,10.74692,10746.92 +9285,2025-06-11T03:33:18.923140-07:00,0.0,10.755023,10755.023 +9286,2025-06-11T03:33:29.679601-07:00,0.0,10.756461,10756.461 +9287,2025-06-11T03:33:40.442390-07:00,0.0,10.762789,10762.789 +9288,2025-06-11T03:33:51.199103-07:00,0.0,10.756713,10756.713 +9289,2025-06-11T03:34:01.954080-07:00,0.0,10.754977,10754.977 +9290,2025-06-11T03:34:12.703107-07:00,0.0,10.749027,10749.027 +9291,2025-06-11T03:34:23.455111-07:00,0.0,10.752004,10752.004 +9292,2025-06-11T03:34:34.212346-07:00,0.0,10.757235,10757.235 +9293,2025-06-11T03:34:44.972084-07:00,0.0,10.759738,10759.738 +9294,2025-06-11T03:34:55.723434-07:00,0.0,10.75135,10751.35 +9295,2025-06-11T03:35:06.481708-07:00,0.0,10.758274,10758.274 +9296,2025-06-11T03:35:17.232986-07:00,0.0,10.751278,10751.278 +9297,2025-06-11T03:35:27.983111-07:00,0.0,10.750125,10750.125 +9298,2025-06-11T03:35:38.737116-07:00,0.0,10.754005,10754.005 +9299,2025-06-11T03:35:49.494258-07:00,0.0,10.757142,10757.142 +9300,2025-06-11T03:36:00.254509-07:00,0.0,10.760251,10760.251 +9301,2025-06-11T03:36:11.000638-07:00,0.0,10.746129,10746.129 +9302,2025-06-11T03:36:21.759693-07:00,0.0,10.759055,10759.055 +9303,2025-06-11T03:36:32.519932-07:00,0.0,10.760239,10760.239 +9304,2025-06-11T03:36:43.266104-07:00,0.0,10.746172,10746.172 +9305,2025-06-11T03:36:54.031104-07:00,0.0,10.765,10765.0 +9306,2025-06-11T03:37:04.783101-07:00,0.0,10.751997,10751.997 +9307,2025-06-11T03:37:15.534107-07:00,0.0,10.751006,10751.006 +9308,2025-06-11T03:37:26.287107-07:00,0.0,10.753,10753.0 +9309,2025-06-11T03:37:37.047855-07:00,0.0,10.760748,10760.748 +9310,2025-06-11T03:37:47.806111-07:00,0.0,10.758256,10758.256 +9311,2025-06-11T03:37:58.560410-07:00,0.0,10.754299,10754.299 +9312,2025-06-11T03:38:09.317144-07:00,0.0,10.756734,10756.734 +9313,2025-06-11T03:38:20.069260-07:00,0.0,10.752116,10752.116 +9314,2025-06-11T03:38:30.822211-07:00,0.0,10.752951,10752.951 +9315,2025-06-11T03:38:41.584398-07:00,0.0,10.762187,10762.187 +9316,2025-06-11T03:38:52.330410-07:00,0.0,10.746012,10746.012 +9317,2025-06-11T03:39:03.093097-07:00,0.0,10.762687,10762.687 +9318,2025-06-11T03:39:13.844110-07:00,0.0,10.751013,10751.013 +9319,2025-06-11T03:39:24.604202-07:00,0.0,10.760092,10760.092 +9320,2025-06-11T03:39:35.354509-07:00,0.0,10.750307,10750.307 +9321,2025-06-11T03:39:46.112128-07:00,0.0,10.757619,10757.619 +9322,2025-06-11T03:39:56.873361-07:00,0.0,10.761233,10761.233 +9323,2025-06-11T03:40:07.630659-07:00,0.0,10.757298,10757.298 +9324,2025-06-11T03:40:18.387086-07:00,0.0,10.756427,10756.427 +9325,2025-06-11T03:40:29.138101-07:00,0.0,10.751015,10751.015 +9326,2025-06-11T03:40:39.899553-07:00,0.0,10.761452,10761.452 +9327,2025-06-11T03:40:50.654002-07:00,0.0,10.754449,10754.449 +9328,2025-06-11T03:41:01.406395-07:00,0.0,10.752393,10752.393 +9329,2025-06-11T03:41:12.167363-07:00,0.0,10.760968,10760.968 +9330,2025-06-11T03:41:22.914156-07:00,0.0,10.746793,10746.793 +9331,2025-06-11T03:41:33.675548-07:00,0.0,10.761392,10761.392 +9332,2025-06-11T03:41:44.425111-07:00,0.0,10.749563,10749.563 +9333,2025-06-11T03:41:55.191115-07:00,0.0,10.766004,10766.004 +9334,2025-06-11T03:42:05.936959-07:00,0.0,10.745844,10745.844 +9335,2025-06-11T03:42:16.690371-07:00,0.0,10.753412,10753.412 +9336,2025-06-11T03:42:27.453288-07:00,0.0,10.762917,10762.917 +9337,2025-06-11T03:42:38.206193-07:00,0.0,10.752905,10752.905 +9338,2025-06-11T03:42:48.953092-07:00,0.0,10.746899,10746.899 +9339,2025-06-11T03:42:59.710116-07:00,0.0,10.757024,10757.024 +9340,2025-06-11T03:43:10.470130-07:00,0.0,10.760014,10760.014 +9341,2025-06-11T03:43:21.228409-07:00,0.0,10.758279,10758.279 +9342,2025-06-11T03:43:31.974523-07:00,0.0,10.746114,10746.114 +9343,2025-06-11T03:43:42.738520-07:00,0.0,10.763997,10763.997 +9344,2025-06-11T03:43:53.492111-07:00,0.0,10.753591,10753.591 +9345,2025-06-11T03:44:04.246111-07:00,0.0,10.754,10754.0 +9346,2025-06-11T03:44:15.000342-07:00,0.0,10.754231,10754.231 +9347,2025-06-11T03:44:25.758221-07:00,0.0,10.757879,10757.879 +9348,2025-06-11T03:44:36.509639-07:00,0.0,10.751418,10751.418 +9349,2025-06-11T03:44:47.272636-07:00,0.0,10.762997,10762.997 +9350,2025-06-11T03:44:58.029113-07:00,0.0,10.756477,10756.477 +9351,2025-06-11T03:45:08.786110-07:00,0.0,10.756997,10756.997 +9352,2025-06-11T03:45:19.538924-07:00,0.0,10.752814,10752.814 +9353,2025-06-11T03:45:30.294410-07:00,0.0,10.755486,10755.486 +9354,2025-06-11T03:45:41.044418-07:00,0.0,10.750008,10750.008 +9355,2025-06-11T03:45:51.807144-07:00,0.0,10.762726,10762.726 +9356,2025-06-11T03:46:02.557332-07:00,0.0,10.750188,10750.188 +9357,2025-06-11T03:46:13.316442-07:00,0.0,10.75911,10759.11 +9358,2025-06-11T03:46:24.072104-07:00,0.0,10.755662,10755.662 +9359,2025-06-11T03:46:34.820111-07:00,0.0,10.748007,10748.007 +9360,2025-06-11T03:46:45.578108-07:00,0.0,10.757997,10757.997 +9361,2025-06-11T03:46:56.332589-07:00,0.0,10.754481,10754.481 +9362,2025-06-11T03:47:07.087568-07:00,0.0,10.754979,10754.979 +9363,2025-06-11T03:47:17.843188-07:00,0.0,10.75562,10755.62 +9364,2025-06-11T03:47:28.601140-07:00,0.0,10.757952,10757.952 +9365,2025-06-11T03:47:39.356110-07:00,0.0,10.75497,10754.97 +9366,2025-06-11T03:47:50.105273-07:00,0.0,10.749163,10749.163 +9367,2025-06-11T03:48:00.866144-07:00,0.0,10.760871,10760.871 +9368,2025-06-11T03:48:11.647816-07:00,0.0,10.781672,10781.672 +9369,2025-06-11T03:48:22.428501-07:00,0.0,10.780685,10780.685 +9370,2025-06-11T03:48:33.204375-07:00,0.0,10.775874,10775.874 +9371,2025-06-11T03:48:43.979259-07:00,0.0,10.774884,10774.884 +9372,2025-06-11T03:48:54.747101-07:00,0.0,10.767842,10767.842 +9373,2025-06-11T03:49:05.524753-07:00,0.0,10.777652,10777.652 +9374,2025-06-11T03:49:16.284592-07:00,0.0,10.759839,10759.839 +9375,2025-06-11T03:49:27.043103-07:00,0.0,10.758511,10758.511 +9376,2025-06-11T03:49:37.797122-07:00,0.0,10.754019,10754.019 +9377,2025-06-11T03:49:48.553158-07:00,0.0,10.756036,10756.036 +9378,2025-06-11T03:49:59.306455-07:00,0.0,10.753297,10753.297 +9379,2025-06-11T03:50:10.054497-07:00,0.0,10.748042,10748.042 +9380,2025-06-11T03:50:20.811357-07:00,0.0,10.75686,10756.86 +9381,2025-06-11T03:50:31.563107-07:00,0.0,10.75175,10751.75 +9382,2025-06-11T03:50:42.319109-07:00,0.0,10.756002,10756.002 +9383,2025-06-11T03:50:53.073111-07:00,0.0,10.754002,10754.002 +9384,2025-06-11T03:51:03.821313-07:00,0.0,10.748202,10748.202 +9385,2025-06-11T03:51:14.571110-07:00,0.0,10.749797,10749.797 +9386,2025-06-11T03:51:25.329107-07:00,0.0,10.757997,10757.997 +9387,2025-06-11T03:51:36.080186-07:00,0.0,10.751079,10751.079 +9388,2025-06-11T03:51:46.828544-07:00,0.0,10.748358,10748.358 +9389,2025-06-11T03:51:57.586616-07:00,0.0,10.758072,10758.072 +9390,2025-06-11T03:52:08.337424-07:00,0.0,10.750808,10750.808 +9391,2025-06-11T03:52:19.183332-07:00,0.0,10.845908,10845.908 +9392,2025-06-11T03:52:29.931325-07:00,0.0,10.747993,10747.993 +9393,2025-06-11T03:52:40.684053-07:00,0.0,10.752728,10752.728 +9394,2025-06-11T03:52:51.447046-07:00,0.0,10.762993,10762.993 +9395,2025-06-11T03:53:02.196032-07:00,0.0,10.748986,10748.986 +9396,2025-06-11T03:53:12.954009-07:00,0.0,10.757977,10757.977 +9397,2025-06-11T03:53:23.712016-07:00,0.0,10.758007,10758.007 +9398,2025-06-11T03:53:34.465429-07:00,0.0,10.753413,10753.413 +9399,2025-06-11T03:53:45.233006-07:00,0.0,10.767577,10767.577 +9400,2025-06-11T03:53:55.987304-07:00,0.0,10.754298,10754.298 +9401,2025-06-11T03:54:06.746502-07:00,0.0,10.759198,10759.198 +9402,2025-06-11T03:54:17.509018-07:00,0.0,10.762516,10762.516 +9403,2025-06-11T03:54:28.265271-07:00,0.0,10.756253,10756.253 +9404,2025-06-11T03:54:39.028054-07:00,0.0,10.762783,10762.783 +9405,2025-06-11T03:54:49.782707-07:00,0.0,10.754653,10754.653 +9406,2025-06-11T03:55:00.546161-07:00,0.0,10.763454,10763.454 +9407,2025-06-11T03:55:11.302247-07:00,0.0,10.756086,10756.086 +9408,2025-06-11T03:55:22.053181-07:00,0.0,10.750934,10750.934 +9409,2025-06-11T03:55:32.812990-07:00,0.0,10.759809,10759.809 +9410,2025-06-11T03:55:43.571973-07:00,0.0,10.758983,10758.983 +9411,2025-06-11T03:55:54.326309-07:00,0.0,10.754336,10754.336 +9412,2025-06-11T03:56:05.095565-07:00,0.0,10.769256,10769.256 +9413,2025-06-11T03:56:15.847335-07:00,0.0,10.75177,10751.77 +9414,2025-06-11T03:56:26.602308-07:00,0.0,10.754973,10754.973 +9415,2025-06-11T03:56:37.362226-07:00,0.0,10.759918,10759.918 +9416,2025-06-11T03:56:48.124205-07:00,0.0,10.761979,10761.979 +9417,2025-06-11T03:56:58.872246-07:00,0.0,10.748041,10748.041 +9418,2025-06-11T03:57:09.631169-07:00,0.0,10.758923,10758.923 +9419,2025-06-11T03:57:20.381053-07:00,0.0,10.749884,10749.884 +9420,2025-06-11T03:57:31.146262-07:00,0.0,10.765209,10765.209 +9421,2025-06-11T03:57:41.899221-07:00,0.0,10.752959,10752.959 +9422,2025-06-11T03:57:52.660812-07:00,0.0,10.761591,10761.591 +9423,2025-06-11T03:58:03.413215-07:00,0.0,10.752403,10752.403 +9424,2025-06-11T03:58:14.166016-07:00,0.0,10.752801,10752.801 +9425,2025-06-11T03:58:24.927014-07:00,0.0,10.760998,10760.998 +9426,2025-06-11T03:58:35.679208-07:00,0.0,10.752194,10752.194 +9427,2025-06-11T03:58:46.430741-07:00,0.0,10.751533,10751.533 +9428,2025-06-11T03:58:57.190332-07:00,0.0,10.759591,10759.591 +9429,2025-06-11T03:59:07.944015-07:00,0.0,10.753683,10753.683 +9430,2025-06-11T03:59:18.691996-07:00,0.0,10.747981,10747.981 +9431,2025-06-11T03:59:29.455147-07:00,0.0,10.763151,10763.151 +9432,2025-06-11T03:59:40.210015-07:00,0.0,10.754868,10754.868 +9433,2025-06-11T03:59:50.960016-07:00,0.0,10.750001,10750.001 +9434,2025-06-11T04:00:01.723541-07:00,0.0,10.763525,10763.525 +9435,2025-06-11T04:00:12.475270-07:00,0.0,10.751729,10751.729 +9436,2025-06-11T04:00:23.234132-07:00,0.0,10.758862,10758.862 +9437,2025-06-11T04:00:33.996387-07:00,0.0,10.762255,10762.255 +9438,2025-06-11T04:00:44.750013-07:00,0.0,10.753626,10753.626 +9439,2025-06-11T04:00:55.506351-07:00,0.0,10.756338,10756.338 +9440,2025-06-11T04:01:06.265525-07:00,0.0,10.759174,10759.174 +9441,2025-06-11T04:01:17.015304-07:00,0.0,10.749779,10749.779 +9442,2025-06-11T04:01:27.772063-07:00,0.0,10.756759,10756.759 +9443,2025-06-11T04:01:38.531016-07:00,0.0,10.758953,10758.953 +9444,2025-06-11T04:01:49.279273-07:00,0.0,10.748257,10748.257 +9445,2025-06-11T04:02:00.042012-07:00,0.0,10.762739,10762.739 +9446,2025-06-11T04:02:10.801362-07:00,0.0,10.75935,10759.35 +9447,2025-06-11T04:02:21.552556-07:00,0.0,10.751194,10751.194 +9448,2025-06-11T04:02:32.314165-07:00,0.0,10.761609,10761.609 +9449,2025-06-11T04:02:43.067175-07:00,0.0,10.75301,10753.01 +9450,2025-06-11T04:02:53.820267-07:00,0.0,10.753092,10753.092 +9451,2025-06-11T04:03:04.587483-07:00,0.0,10.767216,10767.216 +9452,2025-06-11T04:03:15.339409-07:00,0.0,10.751926,10751.926 +9453,2025-06-11T04:03:26.095435-07:00,0.0,10.756026,10756.026 +9454,2025-06-11T04:03:36.846013-07:00,0.0,10.750578,10750.578 +9455,2025-06-11T04:03:47.606441-07:00,0.0,10.760428,10760.428 +9456,2025-06-11T04:03:58.364097-07:00,0.0,10.757656,10757.656 +9457,2025-06-11T04:04:09.116077-07:00,0.0,10.75198,10751.98 +9458,2025-06-11T04:04:19.882898-07:00,0.0,10.766821,10766.821 +9459,2025-06-11T04:04:30.631892-07:00,0.0,10.748994,10748.994 +9460,2025-06-11T04:04:41.391019-07:00,0.0,10.759127,10759.127 +9461,2025-06-11T04:04:52.139143-07:00,0.0,10.748124,10748.124 +9462,2025-06-11T04:05:02.891995-07:00,0.0,10.752852,10752.852 +9463,2025-06-11T04:05:13.649011-07:00,0.0,10.757016,10757.016 +9464,2025-06-11T04:05:24.407281-07:00,0.0,10.75827,10758.27 +9465,2025-06-11T04:05:35.159342-07:00,0.0,10.752061,10752.061 +9466,2025-06-11T04:05:45.913244-07:00,0.0,10.753902,10753.902 +9467,2025-06-11T04:05:56.674275-07:00,0.0,10.761031,10761.031 +9468,2025-06-11T04:06:07.427283-07:00,0.0,10.753008,10753.008 +9469,2025-06-11T04:06:18.173990-07:00,0.0,10.746707,10746.707 +9470,2025-06-11T04:06:28.935293-07:00,0.0,10.761303,10761.303 +9471,2025-06-11T04:06:39.694723-07:00,0.0,10.75943,10759.43 +9472,2025-06-11T04:06:50.444263-07:00,0.0,10.74954,10749.54 +9473,2025-06-11T04:07:01.202395-07:00,0.0,10.758132,10758.132 +9474,2025-06-11T04:07:11.951327-07:00,0.0,10.748932,10748.932 +9475,2025-06-11T04:07:22.704569-07:00,0.0,10.753242,10753.242 +9476,2025-06-11T04:07:33.458768-07:00,0.0,10.754199,10754.199 +9477,2025-06-11T04:07:44.220011-07:00,0.0,10.761243,10761.243 +9478,2025-06-11T04:07:54.978209-07:00,0.0,10.758198,10758.198 +9479,2025-06-11T04:08:05.726636-07:00,0.0,10.748427,10748.427 +9480,2025-06-11T04:08:16.475924-07:00,0.0,10.749288,10749.288 +9481,2025-06-11T04:08:27.231295-07:00,0.0,10.755371,10755.371 +9482,2025-06-11T04:08:37.983064-07:00,0.0,10.751769,10751.769 +9483,2025-06-11T04:08:48.731013-07:00,0.0,10.747949,10747.949 +9484,2025-06-11T04:08:59.485014-07:00,0.0,10.754001,10754.001 +9485,2025-06-11T04:09:10.238153-07:00,0.0,10.753139,10753.139 +9486,2025-06-11T04:09:20.996645-07:00,0.0,10.758492,10758.492 +9487,2025-06-11T04:09:31.749247-07:00,0.0,10.752602,10752.602 +9488,2025-06-11T04:09:42.500013-07:00,0.0,10.750766,10750.766 +9489,2025-06-11T04:09:53.245345-07:00,0.0,10.745332,10745.332 +9490,2025-06-11T04:10:03.997993-07:00,0.0,10.752648,10752.648 +9491,2025-06-11T04:10:14.747523-07:00,0.0,10.74953,10749.53 +9492,2025-06-11T04:10:25.504312-07:00,0.0,10.756789,10756.789 +9493,2025-06-11T04:10:36.253291-07:00,0.0,10.748979,10748.979 +9494,2025-06-11T04:10:47.015005-07:00,0.0,10.761714,10761.714 +9495,2025-06-11T04:10:57.766008-07:00,0.0,10.751003,10751.003 +9496,2025-06-11T04:11:08.519006-07:00,0.0,10.752998,10752.998 +9497,2025-06-11T04:11:19.273598-07:00,0.0,10.754592,10754.592 +9498,2025-06-11T04:11:30.025728-07:00,0.0,10.75213,10752.13 +9499,2025-06-11T04:11:40.778059-07:00,0.0,10.752331,10752.331 +9500,2025-06-11T04:11:51.533296-07:00,0.0,10.755237,10755.237 +9501,2025-06-11T04:12:02.293012-07:00,0.0,10.759716,10759.716 +9502,2025-06-11T04:12:13.040304-07:00,0.0,10.747292,10747.292 +9503,2025-06-11T04:12:23.793016-07:00,0.0,10.752712,10752.712 +9504,2025-06-11T04:12:34.544345-07:00,0.0,10.751329,10751.329 +9505,2025-06-11T04:12:45.302016-07:00,0.0,10.757671,10757.671 +9506,2025-06-11T04:12:56.061055-07:00,0.0,10.759039,10759.039 +9507,2025-06-11T04:13:06.813012-07:00,0.0,10.751957,10751.957 +9508,2025-06-11T04:13:17.562018-07:00,0.0,10.749006,10749.006 +9509,2025-06-11T04:13:28.327497-07:00,0.0,10.765479,10765.479 +9510,2025-06-11T04:13:39.073914-07:00,0.0,10.746417,10746.417 +9511,2025-06-11T04:13:49.832020-07:00,0.0,10.758106,10758.106 +9512,2025-06-11T04:14:00.592171-07:00,0.0,10.760151,10760.151 +9513,2025-06-11T04:14:11.340093-07:00,0.0,10.747922,10747.922 +9514,2025-06-11T04:14:22.098203-07:00,0.0,10.75811,10758.11 +9515,2025-06-11T04:14:32.851622-07:00,0.0,10.753419,10753.419 +9516,2025-06-11T04:14:43.610059-07:00,0.0,10.758437,10758.437 +9517,2025-06-11T04:14:54.368261-07:00,0.0,10.758202,10758.202 +9518,2025-06-11T04:15:05.125360-07:00,0.0,10.757099,10757.099 +9519,2025-06-11T04:15:15.880081-07:00,0.0,10.754721,10754.721 +9520,2025-06-11T04:15:26.631018-07:00,0.0,10.750937,10750.937 +9521,2025-06-11T04:15:37.388847-07:00,0.0,10.757829,10757.829 +9522,2025-06-11T04:15:48.143219-07:00,0.0,10.754372,10754.372 +9523,2025-06-11T04:15:58.909132-07:00,0.0,10.765913,10765.913 +9524,2025-06-11T04:16:09.661004-07:00,0.0,10.751872,10751.872 +9525,2025-06-11T04:16:20.416008-07:00,0.0,10.755004,10755.004 +9526,2025-06-11T04:16:31.173199-07:00,0.0,10.757191,10757.191 +9527,2025-06-11T04:16:41.926582-07:00,0.0,10.753383,10753.383 +9528,2025-06-11T04:16:52.678603-07:00,0.0,10.752021,10752.021 +9529,2025-06-11T04:17:03.442017-07:00,0.0,10.763414,10763.414 +9530,2025-06-11T04:17:14.197016-07:00,0.0,10.754999,10754.999 +9531,2025-06-11T04:17:24.959173-07:00,0.0,10.762157,10762.157 +9532,2025-06-11T04:17:35.715027-07:00,0.0,10.755854,10755.854 +9533,2025-06-11T04:17:46.478545-07:00,0.0,10.763518,10763.518 +9534,2025-06-11T04:17:57.239015-07:00,0.0,10.76047,10760.47 +9535,2025-06-11T04:18:07.990016-07:00,0.0,10.751001,10751.001 +9536,2025-06-11T04:18:18.753366-07:00,0.0,10.76335,10763.35 +9537,2025-06-11T04:18:29.501734-07:00,0.0,10.748368,10748.368 +9538,2025-06-11T04:18:40.266111-07:00,0.0,10.764377,10764.377 +9539,2025-06-11T04:18:51.018161-07:00,0.0,10.75205,10752.05 +9540,2025-06-11T04:19:01.776315-07:00,0.0,10.758154,10758.154 +9541,2025-06-11T04:19:12.536329-07:00,0.0,10.760014,10760.014 +9542,2025-06-11T04:19:23.291012-07:00,0.0,10.754683,10754.683 +9543,2025-06-11T04:19:34.038998-07:00,0.0,10.747986,10747.986 +9544,2025-06-11T04:19:44.803480-07:00,0.0,10.764482,10764.482 +9545,2025-06-11T04:19:55.556556-07:00,0.0,10.753076,10753.076 +9546,2025-06-11T04:20:06.311003-07:00,0.0,10.754447,10754.447 +9547,2025-06-11T04:20:17.071259-07:00,0.0,10.760256,10760.256 +9548,2025-06-11T04:20:27.831065-07:00,0.0,10.759806,10759.806 +9549,2025-06-11T04:20:38.588356-07:00,0.0,10.757291,10757.291 +9550,2025-06-11T04:20:49.346410-07:00,0.0,10.758054,10758.054 +9551,2025-06-11T04:21:00.090266-07:00,0.0,10.743856,10743.856 +9552,2025-06-11T04:21:10.852013-07:00,0.0,10.761747,10761.747 +9553,2025-06-11T04:21:21.609097-07:00,0.0,10.757084,10757.084 +9554,2025-06-11T04:21:32.367250-07:00,0.0,10.758153,10758.153 +9555,2025-06-11T04:21:43.125100-07:00,0.0,10.75785,10757.85 +9556,2025-06-11T04:21:53.872392-07:00,0.0,10.747292,10747.292 +9557,2025-06-11T04:22:04.632547-07:00,0.0,10.760155,10760.155 +9558,2025-06-11T04:22:15.392275-07:00,0.0,10.759728,10759.728 +9559,2025-06-11T04:22:26.145143-07:00,0.0,10.752868,10752.868 +9560,2025-06-11T04:22:36.902050-07:00,0.0,10.756907,10756.907 +9561,2025-06-11T04:22:47.650296-07:00,0.0,10.748246,10748.246 +9562,2025-06-11T04:22:58.414308-07:00,0.0,10.764012,10764.012 +9563,2025-06-11T04:23:09.165018-07:00,0.0,10.75071,10750.71 +9564,2025-06-11T04:23:19.923168-07:00,0.0,10.75815,10758.15 +9565,2025-06-11T04:23:30.685014-07:00,0.0,10.761846,10761.846 +9566,2025-06-11T04:23:41.442055-07:00,0.0,10.757041,10757.041 +9567,2025-06-11T04:23:52.205444-07:00,0.0,10.763389,10763.389 +9568,2025-06-11T04:24:02.957657-07:00,0.0,10.752213,10752.213 +9569,2025-06-11T04:24:13.716306-07:00,0.0,10.758649,10758.649 +9570,2025-06-11T04:24:24.472169-07:00,0.0,10.755863,10755.863 +9571,2025-06-11T04:24:35.225014-07:00,0.0,10.752845,10752.845 +9572,2025-06-11T04:24:45.314210-07:00,0.0,10.089196,10089.196 +9573,2025-06-11T04:24:45.989296-07:00,0.0,0.675086,675.086 +9574,2025-06-11T04:24:56.744104-07:00,0.0,10.754808,10754.808 +9575,2025-06-11T04:25:07.492163-07:00,0.0,10.748059,10748.059 +9576,2025-06-11T04:25:18.255134-07:00,0.0,10.762971,10762.971 +9577,2025-06-11T04:25:29.014006-07:00,0.0,10.758872,10758.872 +9578,2025-06-11T04:25:39.774704-07:00,0.0,10.760698,10760.698 +9579,2025-06-11T04:25:50.531005-07:00,0.0,10.756301,10756.301 +9580,2025-06-11T04:26:01.286354-07:00,0.0,10.755349,10755.349 +9581,2025-06-11T04:26:12.041316-07:00,0.0,10.754962,10754.962 +9582,2025-06-11T04:26:22.792019-07:00,0.0,10.750703,10750.703 +9583,2025-06-11T04:26:33.556439-07:00,0.0,10.76442,10764.42 +9584,2025-06-11T04:26:44.309055-07:00,0.0,10.752616,10752.616 +9585,2025-06-11T04:26:55.069209-07:00,0.0,10.760154,10760.154 +9586,2025-06-11T04:27:05.834277-07:00,0.0,10.765068,10765.068 +9587,2025-06-11T04:27:16.587129-07:00,0.0,10.752852,10752.852 +9588,2025-06-11T04:27:27.341130-07:00,0.0,10.754001,10754.001 +9589,2025-06-11T04:27:38.096014-07:00,0.0,10.754884,10754.884 +9590,2025-06-11T04:27:48.856234-07:00,0.0,10.76022,10760.22 +9591,2025-06-11T04:27:59.621213-07:00,0.0,10.764979,10764.979 +9592,2025-06-11T04:28:10.380013-07:00,0.0,10.7588,10758.8 +9593,2025-06-11T04:28:21.128257-07:00,0.0,10.748244,10748.244 +9594,2025-06-11T04:28:31.888148-07:00,0.0,10.759891,10759.891 +9595,2025-06-11T04:28:42.650575-07:00,0.0,10.762427,10762.427 +9596,2025-06-11T04:28:53.404305-07:00,0.0,10.75373,10753.73 +9597,2025-06-11T04:29:04.169014-07:00,0.0,10.764709,10764.709 +9598,2025-06-11T04:29:14.925005-07:00,0.0,10.755991,10755.991 +9599,2025-06-11T04:29:25.683353-07:00,0.0,10.758348,10758.348 +9600,2025-06-11T04:29:36.449679-07:00,0.0,10.766326,10766.326 +9601,2025-06-11T04:29:47.206004-07:00,0.0,10.756325,10756.325 +9602,2025-06-11T04:29:57.963008-07:00,0.0,10.757004,10757.004 +9603,2025-06-11T04:30:08.713013-07:00,0.0,10.750005,10750.005 +9604,2025-06-11T04:30:19.472681-07:00,0.0,10.759668,10759.668 +9605,2025-06-11T04:30:30.239277-07:00,0.0,10.766596,10766.596 +9606,2025-06-11T04:30:40.991006-07:00,0.0,10.751729,10751.729 +9607,2025-06-11T04:30:51.753016-07:00,0.0,10.76201,10762.01 +9608,2025-06-11T04:31:02.524035-07:00,0.0,10.771019,10771.019 +9609,2025-06-11T04:31:13.289011-07:00,0.0,10.764976,10764.976 +9610,2025-06-11T04:31:24.045245-07:00,0.0,10.756234,10756.234 +9611,2025-06-11T04:31:34.814308-07:00,0.0,10.769063,10769.063 +9612,2025-06-11T04:31:45.577018-07:00,0.0,10.76271,10762.71 +9613,2025-06-11T04:31:56.331047-07:00,0.0,10.754029,10754.029 +9614,2025-06-11T04:32:07.094008-07:00,0.0,10.762961,10762.961 +9615,2025-06-11T04:32:17.860268-07:00,0.0,10.76626,10766.26 +9616,2025-06-11T04:32:28.621234-07:00,0.0,10.760966,10760.966 +9617,2025-06-11T04:32:39.385216-07:00,0.0,10.763982,10763.982 +9618,2025-06-11T04:32:50.158246-07:00,0.0,10.77303,10773.03 +9619,2025-06-11T04:33:00.918013-07:00,0.0,10.759767,10759.767 +9620,2025-06-11T04:33:11.674004-07:00,0.0,10.755991,10755.991 +9621,2025-06-11T04:33:22.444564-07:00,0.0,10.77056,10770.56 +9622,2025-06-11T04:33:33.195021-07:00,0.0,10.750457,10750.457 +9623,2025-06-11T04:33:43.960156-07:00,0.0,10.765135,10765.135 +9624,2025-06-11T04:33:54.714015-07:00,0.0,10.753859,10753.859 +9625,2025-06-11T04:34:05.481324-07:00,0.0,10.767309,10767.309 +9626,2025-06-11T04:34:16.237325-07:00,0.0,10.756001,10756.001 +9627,2025-06-11T04:34:26.994016-07:00,0.0,10.756691,10756.691 +9628,2025-06-11T04:34:37.762013-07:00,0.0,10.767997,10767.997 +9629,2025-06-11T04:34:48.523176-07:00,0.0,10.761163,10761.163 +9630,2025-06-11T04:34:59.278260-07:00,0.0,10.755084,10755.084 +9631,2025-06-11T04:35:10.045011-07:00,0.0,10.766751,10766.751 +9632,2025-06-11T04:35:20.800161-07:00,0.0,10.75515,10755.15 +9633,2025-06-11T04:35:31.555016-07:00,0.0,10.754855,10754.855 +9634,2025-06-11T04:35:42.315659-07:00,0.0,10.760643,10760.643 +9635,2025-06-11T04:35:53.080168-07:00,0.0,10.764509,10764.509 +9636,2025-06-11T04:36:03.834993-07:00,0.0,10.754825,10754.825 +9637,2025-06-11T04:36:14.602235-07:00,0.0,10.767242,10767.242 +9638,2025-06-11T04:36:25.363324-07:00,0.0,10.761089,10761.089 +9639,2025-06-11T04:36:36.128060-07:00,0.0,10.764736,10764.736 +9640,2025-06-11T04:36:46.876325-07:00,0.0,10.748265,10748.265 +9641,2025-06-11T04:36:57.644061-07:00,0.0,10.767736,10767.736 +9642,2025-06-11T04:37:08.407343-07:00,0.0,10.763282,10763.282 +9643,2025-06-11T04:37:19.162273-07:00,0.0,10.75493,10754.93 +9644,2025-06-11T04:37:29.930168-07:00,0.0,10.767895,10767.895 +9645,2025-06-11T04:37:40.688016-07:00,0.0,10.757848,10757.848 +9646,2025-06-11T04:37:51.446530-07:00,0.0,10.758514,10758.514 +9647,2025-06-11T04:38:02.212234-07:00,0.0,10.765704,10765.704 +9648,2025-06-11T04:38:12.976014-07:00,0.0,10.76378,10763.78 +9649,2025-06-11T04:38:23.734371-07:00,0.0,10.758357,10758.357 +9650,2025-06-11T04:38:34.497285-07:00,0.0,10.762914,10762.914 +9651,2025-06-11T04:38:45.255014-07:00,0.0,10.757729,10757.729 +9652,2025-06-11T04:38:56.010988-07:00,0.0,10.755974,10755.974 +9653,2025-06-11T04:39:06.780381-07:00,0.0,10.769393,10769.393 +9654,2025-06-11T04:39:17.539354-07:00,0.0,10.758973,10758.973 +9655,2025-06-11T04:39:28.298179-07:00,0.0,10.758825,10758.825 +9656,2025-06-11T04:39:39.060890-07:00,0.0,10.762711,10762.711 +9657,2025-06-11T04:39:49.827564-07:00,0.0,10.766674,10766.674 +9658,2025-06-11T04:40:00.594189-07:00,0.0,10.766625,10766.625 +9659,2025-06-11T04:40:11.354175-07:00,0.0,10.759986,10759.986 +9660,2025-06-11T04:40:22.106268-07:00,0.0,10.752093,10752.093 +9661,2025-06-11T04:40:32.868264-07:00,0.0,10.761996,10761.996 +9662,2025-06-11T04:40:43.634021-07:00,0.0,10.765757,10765.757 +9663,2025-06-11T04:40:54.395075-07:00,0.0,10.761054,10761.054 +9664,2025-06-11T04:41:05.152204-07:00,0.0,10.757129,10757.129 +9665,2025-06-11T04:41:15.912354-07:00,0.0,10.76015,10760.15 +9666,2025-06-11T04:41:26.674153-07:00,0.0,10.761799,10761.799 +9667,2025-06-11T04:41:37.444152-07:00,0.0,10.769999,10769.999 +9668,2025-06-11T04:41:48.202980-07:00,0.0,10.758828,10758.828 +9669,2025-06-11T04:41:58.959458-07:00,0.0,10.756478,10756.478 +9670,2025-06-11T04:42:09.720054-07:00,0.0,10.760596,10760.596 +9671,2025-06-11T04:42:20.482006-07:00,0.0,10.761952,10761.952 +9672,2025-06-11T04:42:31.234182-07:00,0.0,10.752176,10752.176 +9673,2025-06-11T04:42:41.999305-07:00,0.0,10.765123,10765.123 +9674,2025-06-11T04:42:52.764014-07:00,0.0,10.764709,10764.709 +9675,2025-06-11T04:43:03.516325-07:00,0.0,10.752311,10752.311 +9676,2025-06-11T04:43:14.281251-07:00,0.0,10.764926,10764.926 +9677,2025-06-11T04:43:25.038324-07:00,0.0,10.757073,10757.073 +9678,2025-06-11T04:43:35.797470-07:00,0.0,10.759146,10759.146 +9679,2025-06-11T04:43:46.562300-07:00,0.0,10.76483,10764.83 +9680,2025-06-11T04:43:57.322708-07:00,0.0,10.760408,10760.408 +9681,2025-06-11T04:44:08.087137-07:00,0.0,10.764429,10764.429 +9682,2025-06-11T04:44:18.847991-07:00,0.0,10.760854,10760.854 +9683,2025-06-11T04:44:29.610059-07:00,0.0,10.762068,10762.068 +9684,2025-06-11T04:44:40.372842-07:00,0.0,10.762783,10762.783 +9685,2025-06-11T04:44:51.128449-07:00,0.0,10.755607,10755.607 +9686,2025-06-11T04:45:01.890006-07:00,0.0,10.761557,10761.557 +9687,2025-06-11T04:45:12.654458-07:00,0.0,10.764452,10764.452 +9688,2025-06-11T04:45:23.414949-07:00,0.0,10.760491,10760.491 +9689,2025-06-11T04:45:34.181018-07:00,0.0,10.766069,10766.069 +9690,2025-06-11T04:45:44.936002-07:00,0.0,10.754984,10754.984 +9691,2025-06-11T04:45:55.707933-07:00,0.0,10.771931,10771.931 +9692,2025-06-11T04:46:06.460354-07:00,0.0,10.752421,10752.421 +9693,2025-06-11T04:46:17.230020-07:00,0.0,10.769666,10769.666 +9694,2025-06-11T04:46:27.986016-07:00,0.0,10.755996,10755.996 +9695,2025-06-11T04:46:38.756288-07:00,0.0,10.770272,10770.272 +9696,2025-06-11T04:46:49.513061-07:00,0.0,10.756773,10756.773 +9697,2025-06-11T04:47:00.281252-07:00,0.0,10.768191,10768.191 +9698,2025-06-11T04:47:11.042985-07:00,0.0,10.761733,10761.733 +9699,2025-06-11T04:47:21.799217-07:00,0.0,10.756232,10756.232 +9700,2025-06-11T04:47:32.567019-07:00,0.0,10.767802,10767.802 +9701,2025-06-11T04:47:43.330244-07:00,0.0,10.763225,10763.225 +9702,2025-06-11T04:47:54.092559-07:00,0.0,10.762315,10762.315 +9703,2025-06-11T04:48:04.852015-07:00,0.0,10.759456,10759.456 +9704,2025-06-11T04:48:15.621244-07:00,0.0,10.769229,10769.229 +9705,2025-06-11T04:48:26.376671-07:00,0.0,10.755427,10755.427 +9706,2025-06-11T04:48:37.141504-07:00,0.0,10.764833,10764.833 +9707,2025-06-11T04:48:47.907325-07:00,0.0,10.765821,10765.821 +9708,2025-06-11T04:48:58.670182-07:00,0.0,10.762857,10762.857 +9709,2025-06-11T04:49:09.435173-07:00,0.0,10.764991,10764.991 +9710,2025-06-11T04:49:20.201105-07:00,0.0,10.765932,10765.932 +9711,2025-06-11T04:49:30.971327-07:00,0.0,10.770222,10770.222 +9712,2025-06-11T04:49:41.730680-07:00,0.0,10.759353,10759.353 +9713,2025-06-11T04:49:52.492175-07:00,0.0,10.761495,10761.495 +9714,2025-06-11T04:50:03.247994-07:00,0.0,10.755819,10755.819 +9715,2025-06-11T04:50:14.007525-07:00,0.0,10.759531,10759.531 +9716,2025-06-11T04:50:24.776011-07:00,0.0,10.768486,10768.486 +9717,2025-06-11T04:50:35.537018-07:00,0.0,10.761007,10761.007 +9718,2025-06-11T04:50:46.303059-07:00,0.0,10.766041,10766.041 +9719,2025-06-11T04:50:57.062101-07:00,0.0,10.759042,10759.042 +9720,2025-06-11T04:51:07.826017-07:00,0.0,10.763916,10763.916 +9721,2025-06-11T04:51:18.579985-07:00,0.0,10.753968,10753.968 +9722,2025-06-11T04:51:29.346142-07:00,0.0,10.766157,10766.157 +9723,2025-06-11T04:51:40.111437-07:00,0.0,10.765295,10765.295 +9724,2025-06-11T04:51:50.874012-07:00,0.0,10.762575,10762.575 +9725,2025-06-11T04:52:01.639008-07:00,0.0,10.764996,10764.996 +9726,2025-06-11T04:52:12.361500-07:00,0.0,10.722492,10722.492 +9727,2025-06-11T04:52:23.121124-07:00,0.0,10.759624,10759.624 +9728,2025-06-11T04:52:33.873104-07:00,0.0,10.75198,10751.98 +9729,2025-06-11T04:52:44.638825-07:00,0.0,10.765721,10765.721 +9730,2025-06-11T04:52:55.391460-07:00,0.0,10.752635,10752.635 +9731,2025-06-11T04:53:06.157416-07:00,0.0,10.765956,10765.956 +9732,2025-06-11T04:53:16.921118-07:00,0.0,10.763702,10763.702 +9733,2025-06-11T04:53:27.683569-07:00,0.0,10.762451,10762.451 +9734,2025-06-11T04:53:38.444142-07:00,0.0,10.760573,10760.573 +9735,2025-06-11T04:53:49.208325-07:00,0.0,10.764183,10764.183 +9736,2025-06-11T04:53:59.958721-07:00,0.0,10.750396,10750.396 +9737,2025-06-11T04:54:10.718410-07:00,0.0,10.759689,10759.689 +9738,2025-06-11T04:54:21.481400-07:00,0.0,10.76299,10762.99 +9739,2025-06-11T04:54:32.240120-07:00,0.0,10.75872,10758.72 +9740,2025-06-11T04:54:42.994389-07:00,0.0,10.754269,10754.269 +9741,2025-06-11T04:54:53.758163-07:00,0.0,10.763774,10763.774 +9742,2025-06-11T04:55:04.513254-07:00,0.0,10.755091,10755.091 +9743,2025-06-11T04:55:15.273087-07:00,0.0,10.759833,10759.833 +9744,2025-06-11T04:55:26.034126-07:00,0.0,10.761039,10761.039 +9745,2025-06-11T04:55:36.801122-07:00,0.0,10.766996,10766.996 +9746,2025-06-11T04:55:47.554039-07:00,0.0,10.752917,10752.917 +9747,2025-06-11T04:55:58.312430-07:00,0.0,10.758391,10758.391 +9748,2025-06-11T04:56:09.072120-07:00,0.0,10.75969,10759.69 +9749,2025-06-11T04:56:19.833378-07:00,0.0,10.761258,10761.258 +9750,2025-06-11T04:56:30.586118-07:00,0.0,10.75274,10752.74 +9751,2025-06-11T04:56:41.352930-07:00,0.0,10.766812,10766.812 +9752,2025-06-11T04:56:52.114681-07:00,0.0,10.761751,10761.751 +9753,2025-06-11T04:57:02.869124-07:00,0.0,10.754443,10754.443 +9754,2025-06-11T04:57:13.628120-07:00,0.0,10.758996,10758.996 +9755,2025-06-11T04:57:24.386431-07:00,0.0,10.758311,10758.311 +9756,2025-06-11T04:57:35.146493-07:00,0.0,10.760062,10760.062 +9757,2025-06-11T04:57:45.912120-07:00,0.0,10.765627,10765.627 +9758,2025-06-11T04:57:56.673118-07:00,0.0,10.760998,10760.998 +9759,2025-06-11T04:58:07.429388-07:00,0.0,10.75627,10756.27 +9760,2025-06-11T04:58:18.190772-07:00,0.0,10.761384,10761.384 +9761,2025-06-11T04:58:28.952148-07:00,0.0,10.761376,10761.376 +9762,2025-06-11T04:58:39.719112-07:00,0.0,10.766964,10766.964 +9763,2025-06-11T04:58:50.483709-07:00,0.0,10.764597,10764.597 +9764,2025-06-11T04:59:01.243149-07:00,0.0,10.75944,10759.44 +9765,2025-06-11T04:59:12.002272-07:00,0.0,10.759123,10759.123 +9766,2025-06-11T04:59:22.752175-07:00,0.0,10.749903,10749.903 +9767,2025-06-11T04:59:33.520608-07:00,0.0,10.768433,10768.433 +9768,2025-06-11T04:59:44.275987-07:00,0.0,10.755379,10755.379 +9769,2025-06-11T04:59:55.040602-07:00,0.0,10.764615,10764.615 +9770,2025-06-11T05:00:05.797826-07:00,0.0,10.757224,10757.224 +9771,2025-06-11T05:00:16.558431-07:00,0.0,10.760605,10760.605 +9772,2025-06-11T05:00:27.322415-07:00,0.0,10.763984,10763.984 +9773,2025-06-11T05:00:38.073283-07:00,0.0,10.750868,10750.868 +9774,2025-06-11T05:00:48.829099-07:00,0.0,10.755816,10755.816 +9775,2025-06-11T05:00:59.592276-07:00,0.0,10.763177,10763.177 +9776,2025-06-11T05:01:10.351622-07:00,0.0,10.759346,10759.346 +9777,2025-06-11T05:01:21.113562-07:00,0.0,10.76194,10761.94 +9778,2025-06-11T05:01:31.867179-07:00,0.0,10.753617,10753.617 +9779,2025-06-11T05:01:42.626342-07:00,0.0,10.759163,10759.163 +9780,2025-06-11T05:01:53.390651-07:00,0.0,10.764309,10764.309 +9781,2025-06-11T05:02:04.143055-07:00,0.0,10.752404,10752.404 +9782,2025-06-11T05:02:14.908129-07:00,0.0,10.765074,10765.074 +9783,2025-06-11T05:02:25.667120-07:00,0.0,10.758991,10758.991 +9784,2025-06-11T05:02:36.437482-07:00,0.0,10.770362,10770.362 +9785,2025-06-11T05:02:47.185904-07:00,0.0,10.748422,10748.422 +9786,2025-06-11T05:02:57.944535-07:00,0.0,10.758631,10758.631 +9787,2025-06-11T05:03:08.705485-07:00,0.0,10.76095,10760.95 +9788,2025-06-11T05:03:19.470112-07:00,0.0,10.764627,10764.627 +9789,2025-06-11T05:03:30.233494-07:00,0.0,10.763382,10763.382 +9790,2025-06-11T05:03:40.997120-07:00,0.0,10.763626,10763.626 +9791,2025-06-11T05:03:51.749118-07:00,0.0,10.751998,10751.998 +9792,2025-06-11T05:04:02.509252-07:00,0.0,10.760134,10760.134 +9793,2025-06-11T05:04:13.269539-07:00,0.0,10.760287,10760.287 +9794,2025-06-11T05:04:24.027758-07:00,0.0,10.758219,10758.219 +9795,2025-06-11T05:04:34.788126-07:00,0.0,10.760368,10760.368 +9796,2025-06-11T05:04:45.535139-07:00,0.0,10.747013,10747.013 +9797,2025-06-11T05:04:56.294740-07:00,0.0,10.759601,10759.601 +9798,2025-06-11T05:05:07.058320-07:00,0.0,10.76358,10763.58 +9799,2025-06-11T05:05:17.815368-07:00,0.0,10.757048,10757.048 +9800,2025-06-11T05:05:28.570368-07:00,0.0,10.755,10755.0 +9801,2025-06-11T05:05:39.330104-07:00,0.0,10.759736,10759.736 +9802,2025-06-11T05:05:50.082284-07:00,0.0,10.75218,10752.18 +9803,2025-06-11T05:06:00.832107-07:00,0.0,10.749823,10749.823 +9804,2025-06-11T05:06:11.591353-07:00,0.0,10.759246,10759.246 +9805,2025-06-11T05:06:22.356719-07:00,0.0,10.765366,10765.366 +9806,2025-06-11T05:06:33.103544-07:00,0.0,10.746825,10746.825 +9807,2025-06-11T05:06:43.868697-07:00,0.0,10.765153,10765.153 +9808,2025-06-11T05:06:54.630108-07:00,0.0,10.761411,10761.411 +9809,2025-06-11T05:07:05.384137-07:00,0.0,10.754029,10754.029 +9810,2025-06-11T05:07:06.101406-07:00,0.0,0.717269,717.269 +9811,2025-06-11T05:07:16.139708-07:00,0.0,10.038302,10038.302 +9812,2025-06-11T05:07:26.897272-07:00,0.0,10.757564,10757.564 +9813,2025-06-11T05:07:37.661123-07:00,0.0,10.763851,10763.851 +9814,2025-06-11T05:07:48.414237-07:00,0.0,10.753114,10753.114 +9815,2025-06-11T05:07:59.172118-07:00,0.0,10.757881,10757.881 +9816,2025-06-11T05:08:09.936678-07:00,0.0,10.76456,10764.56 +9817,2025-06-11T05:08:20.687516-07:00,0.0,10.750838,10750.838 +9818,2025-06-11T05:08:31.447381-07:00,0.0,10.759865,10759.865 +9819,2025-06-11T05:08:42.195504-07:00,0.0,10.748123,10748.123 +9820,2025-06-11T05:08:52.954118-07:00,0.0,10.758614,10758.614 +9821,2025-06-11T05:09:03.715489-07:00,0.0,10.761371,10761.371 +9822,2025-06-11T05:09:14.470692-07:00,0.0,10.755203,10755.203 +9823,2025-06-11T05:09:25.228195-07:00,0.0,10.757503,10757.503 +9824,2025-06-11T05:09:35.987431-07:00,0.0,10.759236,10759.236 +9825,2025-06-11T05:09:46.744124-07:00,0.0,10.756693,10756.693 +9826,2025-06-11T05:09:57.499269-07:00,0.0,10.755145,10755.145 +9827,2025-06-11T05:10:08.266472-07:00,0.0,10.767203,10767.203 +9828,2025-06-11T05:10:19.028466-07:00,0.0,10.761994,10761.994 +9829,2025-06-11T05:10:29.784108-07:00,0.0,10.755642,10755.642 +9830,2025-06-11T05:10:40.538122-07:00,0.0,10.754014,10754.014 +9831,2025-06-11T05:10:51.297495-07:00,0.0,10.759373,10759.373 +9832,2025-06-11T05:11:02.052351-07:00,0.0,10.754856,10754.856 +9833,2025-06-11T05:11:12.820122-07:00,0.0,10.767771,10767.771 +9834,2025-06-11T05:11:23.574278-07:00,0.0,10.754156,10754.156 +9835,2025-06-11T05:11:34.333312-07:00,0.0,10.759034,10759.034 +9836,2025-06-11T05:11:45.096543-07:00,0.0,10.763231,10763.231 +9837,2025-06-11T05:11:55.863755-07:00,0.0,10.767212,10767.212 +9838,2025-06-11T05:12:06.615309-07:00,0.0,10.751554,10751.554 +9839,2025-06-11T05:12:17.373158-07:00,0.0,10.757849,10757.849 +9840,2025-06-11T05:12:28.137435-07:00,0.0,10.764277,10764.277 +9841,2025-06-11T05:12:38.896118-07:00,0.0,10.758683,10758.683 +9842,2025-06-11T05:12:49.647122-07:00,0.0,10.751004,10751.004 +9843,2025-06-11T05:13:00.412122-07:00,0.0,10.765,10765.0 +9844,2025-06-11T05:13:11.157599-07:00,0.0,10.745477,10745.477 +9845,2025-06-11T05:13:21.923451-07:00,0.0,10.765852,10765.852 +9846,2025-06-11T05:13:32.681462-07:00,0.0,10.758011,10758.011 +9847,2025-06-11T05:13:43.438485-07:00,0.0,10.757023,10757.023 +9848,2025-06-11T05:13:54.193358-07:00,0.0,10.754873,10754.873 +9849,2025-06-11T05:14:04.953161-07:00,0.0,10.759803,10759.803 +9850,2025-06-11T05:14:15.708552-07:00,0.0,10.755391,10755.391 +9851,2025-06-11T05:14:26.464493-07:00,0.0,10.755941,10755.941 +9852,2025-06-11T05:14:37.223172-07:00,0.0,10.758679,10758.679 +9853,2025-06-11T05:14:47.988122-07:00,0.0,10.76495,10764.95 +9854,2025-06-11T05:14:58.738400-07:00,0.0,10.750278,10750.278 +9855,2025-06-11T05:15:09.493112-07:00,0.0,10.754712,10754.712 +9856,2025-06-11T05:15:20.256458-07:00,0.0,10.763346,10763.346 +9857,2025-06-11T05:15:31.017953-07:00,0.0,10.761495,10761.495 +9858,2025-06-11T05:15:41.773667-07:00,0.0,10.755714,10755.714 +9859,2025-06-11T05:15:52.533175-07:00,0.0,10.759508,10759.508 +9860,2025-06-11T05:16:03.285546-07:00,0.0,10.752371,10752.371 +9861,2025-06-11T05:16:14.050118-07:00,0.0,10.764572,10764.572 +9862,2025-06-11T05:16:24.802120-07:00,0.0,10.752002,10752.002 +9863,2025-06-11T05:16:35.566120-07:00,0.0,10.764,10764.0 +9864,2025-06-11T05:16:46.321161-07:00,0.0,10.755041,10755.041 +9865,2025-06-11T05:16:57.084252-07:00,0.0,10.763091,10763.091 +9866,2025-06-11T05:17:07.844126-07:00,0.0,10.759874,10759.874 +9867,2025-06-11T05:17:18.602091-07:00,0.0,10.757965,10757.965 +9868,2025-06-11T05:17:29.355195-07:00,0.0,10.753104,10753.104 +9869,2025-06-11T05:17:40.116564-07:00,0.0,10.761369,10761.369 +9870,2025-06-11T05:17:50.879173-07:00,0.0,10.762609,10762.609 +9871,2025-06-11T05:18:01.636566-07:00,0.0,10.757393,10757.393 +9872,2025-06-11T05:18:12.392122-07:00,0.0,10.755556,10755.556 +9873,2025-06-11T05:18:23.149376-07:00,0.0,10.757254,10757.254 +9874,2025-06-11T05:18:33.910246-07:00,0.0,10.76087,10760.87 +9875,2025-06-11T05:18:44.669477-07:00,0.0,10.759231,10759.231 +9876,2025-06-11T05:18:55.423305-07:00,0.0,10.753828,10753.828 +9877,2025-06-11T05:19:06.191120-07:00,0.0,10.767815,10767.815 +9878,2025-06-11T05:19:16.945310-07:00,0.0,10.75419,10754.19 +9879,2025-06-11T05:19:27.706402-07:00,0.0,10.761092,10761.092 +9880,2025-06-11T05:19:38.463120-07:00,0.0,10.756718,10756.718 +9881,2025-06-11T05:19:49.230364-07:00,0.0,10.767244,10767.244 +9882,2025-06-11T05:19:59.995842-07:00,0.0,10.765478,10765.478 +9883,2025-06-11T05:20:10.744431-07:00,0.0,10.748589,10748.589 +9884,2025-06-11T05:20:21.503689-07:00,0.0,10.759258,10759.258 +9885,2025-06-11T05:20:32.264419-07:00,0.0,10.76073,10760.73 +9886,2025-06-11T05:20:43.030160-07:00,0.0,10.765741,10765.741 +9887,2025-06-11T05:20:53.794351-07:00,0.0,10.764191,10764.191 +9888,2025-06-11T05:21:04.548122-07:00,0.0,10.753771,10753.771 +9889,2025-06-11T05:21:15.310339-07:00,0.0,10.762217,10762.217 +9890,2025-06-11T05:21:26.070118-07:00,0.0,10.759779,10759.779 +9891,2025-06-11T05:21:36.839521-07:00,0.0,10.769403,10769.403 +9892,2025-06-11T05:21:47.590783-07:00,0.0,10.751262,10751.262 +9893,2025-06-11T05:21:58.355119-07:00,0.0,10.764336,10764.336 +9894,2025-06-11T05:22:09.115417-07:00,0.0,10.760298,10760.298 +9895,2025-06-11T05:22:19.879394-07:00,0.0,10.763977,10763.977 +9896,2025-06-11T05:22:30.633122-07:00,0.0,10.753728,10753.728 +9897,2025-06-11T05:22:41.393123-07:00,0.0,10.760001,10760.001 +9898,2025-06-11T05:22:52.152112-07:00,0.0,10.758989,10758.989 +9899,2025-06-11T05:23:02.910235-07:00,0.0,10.758123,10758.123 +9900,2025-06-11T05:23:13.668020-07:00,0.0,10.757785,10757.785 +9901,2025-06-11T05:23:24.432351-07:00,0.0,10.764331,10764.331 +9902,2025-06-11T05:23:35.189120-07:00,0.0,10.756769,10756.769 +9903,2025-06-11T05:23:45.944122-07:00,0.0,10.755002,10755.002 +9904,2025-06-11T05:23:56.703436-07:00,0.0,10.759314,10759.314 +9905,2025-06-11T05:24:07.461122-07:00,0.0,10.757686,10757.686 +9906,2025-06-11T05:24:18.224336-07:00,0.0,10.763214,10763.214 +9907,2025-06-11T05:24:28.983365-07:00,0.0,10.759029,10759.029 +9908,2025-06-11T05:24:39.748377-07:00,0.0,10.765012,10765.012 +9909,2025-06-11T05:24:50.508806-07:00,0.0,10.760429,10760.429 +9910,2025-06-11T05:25:01.266124-07:00,0.0,10.757318,10757.318 +9911,2025-06-11T05:25:12.023124-07:00,0.0,10.757,10757.0 +9912,2025-06-11T05:25:22.780548-07:00,0.0,10.757424,10757.424 +9913,2025-06-11T05:25:33.546121-07:00,0.0,10.765573,10765.573 +9914,2025-06-11T05:25:44.297348-07:00,0.0,10.751227,10751.227 +9915,2025-06-11T05:25:55.057659-07:00,0.0,10.760311,10760.311 +9916,2025-06-11T05:26:05.815167-07:00,0.0,10.757508,10757.508 +9917,2025-06-11T05:26:16.585199-07:00,0.0,10.770032,10770.032 +9918,2025-06-11T05:26:27.340464-07:00,0.0,10.755265,10755.265 +9919,2025-06-11T05:26:38.096772-07:00,0.0,10.756308,10756.308 +9920,2025-06-11T05:26:48.858101-07:00,0.0,10.761329,10761.329 +9921,2025-06-11T05:26:59.611451-07:00,0.0,10.75335,10753.35 +9922,2025-06-11T05:27:10.371396-07:00,0.0,10.759945,10759.945 +9923,2025-06-11T05:27:21.131167-07:00,0.0,10.759771,10759.771 +9924,2025-06-11T05:27:31.885394-07:00,0.0,10.754227,10754.227 +9925,2025-06-11T05:27:42.647627-07:00,0.0,10.762233,10762.233 +9926,2025-06-11T05:27:53.408515-07:00,0.0,10.760888,10760.888 +9927,2025-06-11T05:28:04.171224-07:00,0.0,10.762709,10762.709 +9928,2025-06-11T05:28:14.938120-07:00,0.0,10.766896,10766.896 +9929,2025-06-11T05:28:25.694557-07:00,0.0,10.756437,10756.437 +9930,2025-06-11T05:28:36.459376-07:00,0.0,10.764819,10764.819 +9931,2025-06-11T05:28:47.216123-07:00,0.0,10.756747,10756.747 +9932,2025-06-11T05:28:57.976624-07:00,0.0,10.760501,10760.501 +9933,2025-06-11T05:29:08.739120-07:00,0.0,10.762496,10762.496 +9934,2025-06-11T05:29:19.493577-07:00,0.0,10.754457,10754.457 +9935,2025-06-11T05:29:30.253196-07:00,0.0,10.759619,10759.619 +9936,2025-06-11T05:29:41.014126-07:00,0.0,10.76093,10760.93 +9937,2025-06-11T05:29:51.770121-07:00,0.0,10.755995,10755.995 +9938,2025-06-11T05:30:02.529574-07:00,0.0,10.759453,10759.453 +9939,2025-06-11T05:30:13.297190-07:00,0.0,10.767616,10767.616 +9940,2025-06-11T05:30:24.054441-07:00,0.0,10.757251,10757.251 +9941,2025-06-11T05:30:34.807165-07:00,0.0,10.752724,10752.724 +9942,2025-06-11T05:30:45.573314-07:00,0.0,10.766149,10766.149 +9943,2025-06-11T05:30:56.331378-07:00,0.0,10.758064,10758.064 +9944,2025-06-11T05:31:07.086433-07:00,0.0,10.755055,10755.055 +9945,2025-06-11T05:31:17.851120-07:00,0.0,10.764687,10764.687 +9946,2025-06-11T05:31:28.602160-07:00,0.0,10.75104,10751.04 +9947,2025-06-11T05:31:39.367376-07:00,0.0,10.765216,10765.216 +9948,2025-06-11T05:31:50.122464-07:00,0.0,10.755088,10755.088 +9949,2025-06-11T05:32:00.880180-07:00,0.0,10.757716,10757.716 +9950,2025-06-11T05:32:11.645113-07:00,0.0,10.764933,10764.933 +9951,2025-06-11T05:32:22.396204-07:00,0.0,10.751091,10751.091 +9952,2025-06-11T05:32:33.161369-07:00,0.0,10.765165,10765.165 +9953,2025-06-11T05:32:43.928108-07:00,0.0,10.766739,10766.739 +9954,2025-06-11T05:32:54.688121-07:00,0.0,10.760013,10760.013 +9955,2025-06-11T05:33:05.448410-07:00,0.0,10.760289,10760.289 +9956,2025-06-11T05:33:16.202431-07:00,0.0,10.754021,10754.021 +9957,2025-06-11T05:33:26.966438-07:00,0.0,10.764007,10764.007 +9958,2025-06-11T05:33:37.732364-07:00,0.0,10.765926,10765.926 +9959,2025-06-11T05:33:48.487345-07:00,0.0,10.754981,10754.981 +9960,2025-06-11T05:33:59.246382-07:00,0.0,10.759037,10759.037 +9961,2025-06-11T05:34:10.014364-07:00,0.0,10.767982,10767.982 +9962,2025-06-11T05:34:20.770118-07:00,0.0,10.755754,10755.754 +9963,2025-06-11T05:34:31.525114-07:00,0.0,10.754996,10754.996 +9964,2025-06-11T05:34:42.291680-07:00,0.0,10.766566,10766.566 +9965,2025-06-11T05:34:53.053120-07:00,0.0,10.76144,10761.44 +9966,2025-06-11T05:35:03.813100-07:00,0.0,10.75998,10759.98 +9967,2025-06-11T05:35:14.572355-07:00,0.0,10.759255,10759.255 +9968,2025-06-11T05:35:25.333439-07:00,0.0,10.761084,10761.084 +9969,2025-06-11T05:35:36.098147-07:00,0.0,10.764708,10764.708 +9970,2025-06-11T05:35:46.859114-07:00,0.0,10.760967,10760.967 +9971,2025-06-11T05:35:57.617156-07:00,0.0,10.758042,10758.042 +9972,2025-06-11T05:36:08.385469-07:00,0.0,10.768313,10768.313 +9973,2025-06-11T05:36:19.147125-07:00,0.0,10.761656,10761.656 +9974,2025-06-11T05:36:29.915656-07:00,0.0,10.768531,10768.531 +9975,2025-06-11T05:36:40.679743-07:00,0.0,10.764087,10764.087 +9976,2025-06-11T05:36:51.438409-07:00,0.0,10.758666,10758.666 +9977,2025-06-11T05:37:02.192171-07:00,0.0,10.753762,10753.762 +9978,2025-06-11T05:37:12.956150-07:00,0.0,10.763979,10763.979 +9979,2025-06-11T05:37:23.719120-07:00,0.0,10.76297,10762.97 +9980,2025-06-11T05:37:34.481116-07:00,0.0,10.761996,10761.996 +9981,2025-06-11T05:37:45.237119-07:00,0.0,10.756003,10756.003 +9982,2025-06-11T05:37:55.995171-07:00,0.0,10.758052,10758.052 +9983,2025-06-11T05:38:06.757806-07:00,0.0,10.762635,10762.635 +9984,2025-06-11T05:38:17.520270-07:00,0.0,10.762464,10762.464 +9985,2025-06-11T05:38:28.277352-07:00,0.0,10.757082,10757.082 +9986,2025-06-11T05:38:39.050416-07:00,0.0,10.773064,10773.064 +9987,2025-06-11T05:38:49.803666-07:00,0.0,10.75325,10753.25 +9988,2025-06-11T05:39:00.564380-07:00,0.0,10.760714,10760.714 +9989,2025-06-11T05:39:11.326112-07:00,0.0,10.761732,10761.732 +9990,2025-06-11T05:39:22.082125-07:00,0.0,10.756013,10756.013 +9991,2025-06-11T05:39:32.843812-07:00,0.0,10.761687,10761.687 +9992,2025-06-11T05:39:43.612109-07:00,0.0,10.768297,10768.297 +9993,2025-06-11T05:39:54.367122-07:00,0.0,10.755013,10755.013 +9994,2025-06-11T05:40:05.122798-07:00,0.0,10.755676,10755.676 +9995,2025-06-11T05:40:15.886381-07:00,0.0,10.763583,10763.583 +9996,2025-06-11T05:40:26.651378-07:00,0.0,10.764997,10764.997 +9997,2025-06-11T05:40:37.411111-07:00,0.0,10.759733,10759.733 +9998,2025-06-11T05:40:48.171375-07:00,0.0,10.760264,10760.264 +9999,2025-06-11T05:40:58.930805-07:00,0.0,10.75943,10759.43 +10000,2025-06-11T05:41:09.695117-07:00,0.0,10.764312,10764.312 +10001,2025-06-11T05:41:20.455120-07:00,0.0,10.760003,10760.003 +10002,2025-06-11T05:41:31.223291-07:00,0.0,10.768171,10768.171 +10003,2025-06-11T05:41:41.988357-07:00,0.0,10.765066,10765.066 +10004,2025-06-11T05:41:52.750110-07:00,0.0,10.761753,10761.753 +10005,2025-06-11T05:42:03.505784-07:00,0.0,10.755674,10755.674 +10006,2025-06-11T05:42:14.263617-07:00,0.0,10.757833,10757.833 +10007,2025-06-11T05:42:25.034781-07:00,0.0,10.771164,10771.164 +10008,2025-06-11T05:42:35.790225-07:00,0.0,10.755444,10755.444 +10009,2025-06-11T05:42:46.564113-07:00,0.0,10.773888,10773.888 +10010,2025-06-11T05:42:57.322120-07:00,0.0,10.758007,10758.007 +10011,2025-06-11T05:43:08.091417-07:00,0.0,10.769297,10769.297 +10012,2025-06-11T05:43:18.851284-07:00,0.0,10.759867,10759.867 +10013,2025-06-11T05:43:29.619120-07:00,0.0,10.767836,10767.836 +10014,2025-06-11T05:43:40.382301-07:00,0.0,10.763181,10763.181 +10015,2025-06-11T05:43:51.144460-07:00,0.0,10.762159,10762.159 +10016,2025-06-11T05:44:01.909381-07:00,0.0,10.764921,10764.921 +10017,2025-06-11T05:44:12.675125-07:00,0.0,10.765744,10765.744 +10018,2025-06-11T05:44:23.433908-07:00,0.0,10.758783,10758.783 +10019,2025-06-11T05:44:34.203153-07:00,0.0,10.769245,10769.245 +10020,2025-06-11T05:44:44.964109-07:00,0.0,10.760956,10760.956 +10021,2025-06-11T05:44:55.726750-07:00,0.0,10.762641,10762.641 +10022,2025-06-11T05:45:06.483451-07:00,0.0,10.756701,10756.701 +10023,2025-06-11T05:45:17.249123-07:00,0.0,10.765672,10765.672 +10024,2025-06-11T05:45:28.014119-07:00,0.0,10.764996,10764.996 +10025,2025-06-11T05:45:38.768268-07:00,0.0,10.754149,10754.149 +10026,2025-06-11T05:45:49.527535-07:00,0.0,10.759267,10759.267 +10027,2025-06-11T05:46:00.300205-07:00,0.0,10.77267,10772.67 +10028,2025-06-11T05:46:11.059161-07:00,0.0,10.758956,10758.956 +10029,2025-06-11T05:46:21.814435-07:00,0.0,10.755274,10755.274 +10030,2025-06-11T05:46:32.578158-07:00,0.0,10.763723,10763.723 +10031,2025-06-11T05:46:43.346351-07:00,0.0,10.768193,10768.193 +10032,2025-06-11T05:46:54.108717-07:00,0.0,10.762366,10762.366 +10033,2025-06-11T05:47:04.860394-07:00,0.0,10.751677,10751.677 +10034,2025-06-11T05:47:15.627259-07:00,0.0,10.766865,10766.865 +10035,2025-06-11T05:47:26.386447-07:00,0.0,10.759188,10759.188 +10036,2025-06-11T05:47:37.144202-07:00,0.0,10.757755,10757.755 +10037,2025-06-11T05:47:47.910120-07:00,0.0,10.765918,10765.918 +10038,2025-06-11T05:47:58.665275-07:00,0.0,10.755155,10755.155 +10039,2025-06-11T05:48:09.423345-07:00,0.0,10.75807,10758.07 +10040,2025-06-11T05:48:20.182173-07:00,0.0,10.758828,10758.828 +10041,2025-06-11T05:48:30.932116-07:00,0.0,10.749943,10749.943 +10042,2025-06-11T05:48:41.700625-07:00,0.0,10.768509,10768.509 +10043,2025-06-11T05:48:52.451453-07:00,0.0,10.750828,10750.828 +10044,2025-06-11T05:49:03.217101-07:00,0.0,10.765648,10765.648 +10045,2025-06-11T05:49:13.974497-07:00,0.0,10.757396,10757.396 +10046,2025-06-11T05:49:24.736384-07:00,0.0,10.761887,10761.887 +10047,2025-06-11T05:49:35.490293-07:00,0.0,10.753909,10753.909 +10048,2025-06-11T05:49:46.249533-07:00,0.0,10.75924,10759.24 +10049,2025-06-11T05:49:57.010118-07:00,0.0,10.760585,10760.585 +10050,2025-06-11T05:50:07.768106-07:00,0.0,10.757988,10757.988 +10051,2025-06-11T05:50:18.533498-07:00,0.0,10.765392,10765.392 +10052,2025-06-11T05:50:29.297309-07:00,0.0,10.763811,10763.811 +10053,2025-06-11T05:50:40.057367-07:00,0.0,10.760058,10760.058 +10054,2025-06-11T05:50:50.814472-07:00,0.0,10.757105,10757.105 +10055,2025-06-11T05:51:01.579164-07:00,0.0,10.764692,10764.692 +10056,2025-06-11T05:51:12.335112-07:00,0.0,10.755948,10755.948 +10057,2025-06-11T05:51:23.102120-07:00,0.0,10.767008,10767.008 +10058,2025-06-11T05:51:33.864567-07:00,0.0,10.762447,10762.447 +10059,2025-06-11T05:51:44.618283-07:00,0.0,10.753716,10753.716 +10060,2025-06-11T05:51:55.385415-07:00,0.0,10.767132,10767.132 +10061,2025-06-11T05:52:06.149209-07:00,0.0,10.763794,10763.794 +10062,2025-06-11T05:52:16.967533-07:00,0.0,10.818324,10818.324 +10063,2025-06-11T05:52:27.729424-07:00,0.0,10.761891,10761.891 +10064,2025-06-11T05:52:38.489205-07:00,0.0,10.759781,10759.781 +10065,2025-06-11T05:52:49.243358-07:00,0.0,10.754153,10754.153 +10066,2025-06-11T05:53:00.006750-07:00,0.0,10.763392,10763.392 +10067,2025-06-11T05:53:10.765744-07:00,0.0,10.758994,10758.994 +10068,2025-06-11T05:53:21.531492-07:00,0.0,10.765748,10765.748 +10069,2025-06-11T05:53:32.291207-07:00,0.0,10.759715,10759.715 +10070,2025-06-11T05:53:43.045482-07:00,0.0,10.754275,10754.275 +10071,2025-06-11T05:53:53.810744-07:00,0.0,10.765262,10765.262 +10072,2025-06-11T05:54:04.560184-07:00,0.0,10.74944,10749.44 +10073,2025-06-11T05:54:15.317359-07:00,0.0,10.757175,10757.175 +10074,2025-06-11T05:54:26.078448-07:00,0.0,10.761089,10761.089 +10075,2025-06-11T05:54:36.836547-07:00,0.0,10.758099,10758.099 +10076,2025-06-11T05:54:47.596607-07:00,0.0,10.76006,10760.06 +10077,2025-06-11T05:54:58.358540-07:00,0.0,10.761933,10761.933 +10078,2025-06-11T05:55:09.117354-07:00,0.0,10.758814,10758.814 +10079,2025-06-11T05:55:19.873375-07:00,0.0,10.756021,10756.021 +10080,2025-06-11T05:55:30.629774-07:00,0.0,10.756399,10756.399 +10081,2025-06-11T05:55:41.387255-07:00,0.0,10.757481,10757.481 +10082,2025-06-11T05:55:52.149199-07:00,0.0,10.761944,10761.944 +10083,2025-06-11T05:56:02.907642-07:00,0.0,10.758443,10758.443 +10084,2025-06-11T05:56:13.668327-07:00,0.0,10.760685,10760.685 +10085,2025-06-11T05:56:24.422488-07:00,0.0,10.754161,10754.161 +10086,2025-06-11T05:56:35.181986-07:00,0.0,10.759498,10759.498 +10087,2025-06-11T05:56:45.946196-07:00,0.0,10.76421,10764.21 +10088,2025-06-11T05:56:56.700207-07:00,0.0,10.754011,10754.011 +10089,2025-06-11T05:57:07.460067-07:00,0.0,10.75986,10759.86 +10090,2025-06-11T05:57:18.211504-07:00,0.0,10.751437,10751.437 +10091,2025-06-11T05:57:28.973312-07:00,0.0,10.761808,10761.808 +10092,2025-06-11T05:57:39.726508-07:00,0.0,10.753196,10753.196 +10093,2025-06-11T05:57:50.488205-07:00,0.0,10.761697,10761.697 +10094,2025-06-11T05:58:01.252478-07:00,0.0,10.764273,10764.273 +10095,2025-06-11T05:58:12.004130-07:00,0.0,10.751652,10751.652 +10096,2025-06-11T05:58:22.764516-07:00,0.0,10.760386,10760.386 +10097,2025-06-11T05:58:33.533612-07:00,0.0,10.769096,10769.096 +10098,2025-06-11T05:58:44.285555-07:00,0.0,10.751943,10751.943 +10099,2025-06-11T05:58:55.049488-07:00,0.0,10.763933,10763.933 +10100,2025-06-11T05:59:05.815450-07:00,0.0,10.765962,10765.962 +10101,2025-06-11T05:59:16.574198-07:00,0.0,10.758748,10758.748 +10102,2025-06-11T05:59:27.333064-07:00,0.0,10.758866,10758.866 +10103,2025-06-11T05:59:38.093832-07:00,0.0,10.760768,10760.768 +10104,2025-06-11T05:59:48.857327-07:00,0.0,10.763495,10763.495 +10105,2025-06-11T05:59:59.614207-07:00,0.0,10.75688,10756.88 +10106,2025-06-11T06:00:10.372783-07:00,0.0,10.758576,10758.576 +10107,2025-06-11T06:00:21.136199-07:00,0.0,10.763416,10763.416 +10108,2025-06-11T06:00:31.889199-07:00,0.0,10.753,10753.0 +10109,2025-06-11T06:00:42.654202-07:00,0.0,10.765003,10765.003 +10110,2025-06-11T06:00:53.413193-07:00,0.0,10.758991,10758.991 +10111,2025-06-11T06:01:04.174917-07:00,0.0,10.761724,10761.724 +10112,2025-06-11T06:01:14.936225-07:00,0.0,10.761308,10761.308 +10113,2025-06-11T06:01:25.691206-07:00,0.0,10.754981,10754.981 +10114,2025-06-11T06:01:36.454465-07:00,0.0,10.763259,10763.259 +10115,2025-06-11T06:01:47.213500-07:00,0.0,10.759035,10759.035 +10116,2025-06-11T06:01:57.972267-07:00,0.0,10.758767,10758.767 +10117,2025-06-11T06:02:08.726547-07:00,0.0,10.75428,10754.28 +10118,2025-06-11T06:02:19.486209-07:00,0.0,10.759662,10759.662 +10119,2025-06-11T06:02:30.241516-07:00,0.0,10.755307,10755.307 +10120,2025-06-11T06:02:41.006161-07:00,0.0,10.764645,10764.645 +10121,2025-06-11T06:02:51.754660-07:00,0.0,10.748499,10748.499 +10122,2025-06-11T06:03:02.508535-07:00,0.0,10.753875,10753.875 +10123,2025-06-11T06:03:13.269452-07:00,0.0,10.760917,10760.917 +10124,2025-06-11T06:03:24.028207-07:00,0.0,10.758755,10758.755 +10125,2025-06-11T06:03:34.784373-07:00,0.0,10.756166,10756.166 +10126,2025-06-11T06:03:45.543750-07:00,0.0,10.759377,10759.377 +10127,2025-06-11T06:03:56.302201-07:00,0.0,10.758451,10758.451 +10128,2025-06-11T06:04:07.055205-07:00,0.0,10.753004,10753.004 +10129,2025-06-11T06:04:17.818736-07:00,0.0,10.763531,10763.531 +10130,2025-06-11T06:04:28.570203-07:00,0.0,10.751467,10751.467 +10131,2025-06-11T06:04:39.328516-07:00,0.0,10.758313,10758.313 +10132,2025-06-11T06:04:50.087740-07:00,0.0,10.759224,10759.224 +10133,2025-06-11T06:05:00.844417-07:00,0.0,10.756677,10756.677 +10134,2025-06-11T06:05:11.600403-07:00,0.0,10.755986,10755.986 +10135,2025-06-11T06:05:22.352205-07:00,0.0,10.751802,10751.802 +10136,2025-06-11T06:05:33.111217-07:00,0.0,10.759012,10759.012 +10137,2025-06-11T06:05:43.866488-07:00,0.0,10.755271,10755.271 +10138,2025-06-11T06:05:54.617446-07:00,0.0,10.750958,10750.958 +10139,2025-06-11T06:06:05.380341-07:00,0.0,10.762895,10762.895 +10140,2025-06-11T06:06:16.130207-07:00,0.0,10.749866,10749.866 +10141,2025-06-11T06:06:26.889440-07:00,0.0,10.759233,10759.233 +10142,2025-06-11T06:06:37.646203-07:00,0.0,10.756763,10756.763 +10143,2025-06-11T06:06:48.401010-07:00,0.0,10.754807,10754.807 +10144,2025-06-11T06:06:59.150277-07:00,0.0,10.749267,10749.267 +10145,2025-06-11T06:07:09.915658-07:00,0.0,10.765381,10765.381 +10146,2025-06-11T06:07:20.668208-07:00,0.0,10.75255,10752.55 +10147,2025-06-11T06:07:31.415256-07:00,0.0,10.747048,10747.048 +10148,2025-06-11T06:07:42.170374-07:00,0.0,10.755118,10755.118 +10149,2025-06-11T06:07:52.933255-07:00,0.0,10.762881,10762.881 +10150,2025-06-11T06:08:03.682531-07:00,0.0,10.749276,10749.276 +10151,2025-06-11T06:08:14.447205-07:00,0.0,10.764674,10764.674 +10152,2025-06-11T06:08:25.201712-07:00,0.0,10.754507,10754.507 +10153,2025-06-11T06:08:35.962203-07:00,0.0,10.760491,10760.491 +10154,2025-06-11T06:08:46.721200-07:00,0.0,10.758997,10758.997 +10155,2025-06-11T06:08:57.481566-07:00,0.0,10.760366,10760.366 +10156,2025-06-11T06:09:08.243255-07:00,0.0,10.761689,10761.689 +10157,2025-06-11T06:09:19.001185-07:00,0.0,10.75793,10757.93 +10158,2025-06-11T06:09:29.758450-07:00,0.0,10.757265,10757.265 +10159,2025-06-11T06:09:40.521793-07:00,0.0,10.763343,10763.343 +10160,2025-06-11T06:09:51.279781-07:00,0.0,10.757988,10757.988 +10161,2025-06-11T06:10:02.038203-07:00,0.0,10.758422,10758.422 +10162,2025-06-11T06:10:12.799359-07:00,0.0,10.761156,10761.156 +10163,2025-06-11T06:10:23.556478-07:00,0.0,10.757119,10757.119 +10164,2025-06-11T06:10:34.315359-07:00,0.0,10.758881,10758.881 +10165,2025-06-11T06:10:45.076371-07:00,0.0,10.761012,10761.012 +10166,2025-06-11T06:10:55.828200-07:00,0.0,10.751829,10751.829 +10167,2025-06-11T06:11:06.593187-07:00,0.0,10.764987,10764.987 +10168,2025-06-11T06:11:17.352616-07:00,0.0,10.759429,10759.429 +10169,2025-06-11T06:11:28.109531-07:00,0.0,10.756915,10756.915 +10170,2025-06-11T06:11:38.860457-07:00,0.0,10.750926,10750.926 +10171,2025-06-11T06:11:49.627205-07:00,0.0,10.766748,10766.748 +10172,2025-06-11T06:12:00.381311-07:00,0.0,10.754106,10754.106 +10173,2025-06-11T06:12:11.136457-07:00,0.0,10.755146,10755.146 +10174,2025-06-11T06:12:21.900629-07:00,0.0,10.764172,10764.172 +10175,2025-06-11T06:12:32.654366-07:00,0.0,10.753737,10753.737 +10176,2025-06-11T06:12:43.419495-07:00,0.0,10.765129,10765.129 +10177,2025-06-11T06:12:54.174205-07:00,0.0,10.75471,10754.71 +10178,2025-06-11T06:13:04.936515-07:00,0.0,10.76231,10762.31 +10179,2025-06-11T06:13:15.696204-07:00,0.0,10.759689,10759.689 +10180,2025-06-11T06:13:26.450203-07:00,0.0,10.753999,10753.999 +10181,2025-06-11T06:13:37.212207-07:00,0.0,10.762004,10762.004 +10182,2025-06-11T06:13:47.971198-07:00,0.0,10.758991,10758.991 +10183,2025-06-11T06:13:58.732618-07:00,0.0,10.76142,10761.42 +10184,2025-06-11T06:14:09.490248-07:00,0.0,10.75763,10757.63 +10185,2025-06-11T06:14:20.253203-07:00,0.0,10.762955,10762.955 +10186,2025-06-11T06:14:31.013373-07:00,0.0,10.76017,10760.17 +10187,2025-06-11T06:14:41.765158-07:00,0.0,10.751785,10751.785 +10188,2025-06-11T06:14:52.528205-07:00,0.0,10.763047,10763.047 +10189,2025-06-11T06:15:03.287184-07:00,0.0,10.758979,10758.979 +10190,2025-06-11T06:15:14.045207-07:00,0.0,10.758023,10758.023 +10191,2025-06-11T06:15:24.800465-07:00,0.0,10.755258,10755.258 +10192,2025-06-11T06:15:35.561031-07:00,0.0,10.760566,10760.566 +10193,2025-06-11T06:15:46.320601-07:00,0.0,10.75957,10759.57 +10194,2025-06-11T06:15:57.078620-07:00,0.0,10.758019,10758.019 +10195,2025-06-11T06:16:07.844258-07:00,0.0,10.765638,10765.638 +10196,2025-06-11T06:16:18.600529-07:00,0.0,10.756271,10756.271 +10197,2025-06-11T06:16:29.354471-07:00,0.0,10.753942,10753.942 +10198,2025-06-11T06:16:40.115201-07:00,0.0,10.76073,10760.73 +10199,2025-06-11T06:16:50.880400-07:00,0.0,10.765199,10765.199 +10200,2025-06-11T06:17:01.633913-07:00,0.0,10.753513,10753.513 +10201,2025-06-11T06:17:12.391489-07:00,0.0,10.757576,10757.576 +10202,2025-06-11T06:17:23.147494-07:00,0.0,10.756005,10756.005 +10203,2025-06-11T06:17:33.905414-07:00,0.0,10.75792,10757.92 +10204,2025-06-11T06:17:44.669194-07:00,0.0,10.76378,10763.78 +10205,2025-06-11T06:17:55.438515-07:00,0.0,10.769321,10769.321 +10206,2025-06-11T06:18:06.195460-07:00,0.0,10.756945,10756.945 +10207,2025-06-11T06:18:16.952439-07:00,0.0,10.756979,10756.979 +10208,2025-06-11T06:18:27.717205-07:00,0.0,10.764766,10764.766 +10209,2025-06-11T06:18:38.477789-07:00,0.0,10.760584,10760.584 +10210,2025-06-11T06:18:49.237557-07:00,0.0,10.759768,10759.768 +10211,2025-06-11T06:18:59.991347-07:00,0.0,10.75379,10753.79 +10212,2025-06-11T06:19:10.756205-07:00,0.0,10.764858,10764.858 +10213,2025-06-11T06:19:21.514874-07:00,0.0,10.758669,10758.669 +10214,2025-06-11T06:19:32.282209-07:00,0.0,10.767335,10767.335 +10215,2025-06-11T06:19:43.043204-07:00,0.0,10.760995,10760.995 +10216,2025-06-11T06:19:53.802252-07:00,0.0,10.759048,10759.048 +10217,2025-06-11T06:20:04.563698-07:00,0.0,10.761446,10761.446 +10218,2025-06-11T06:20:15.321405-07:00,0.0,10.757707,10757.707 +10219,2025-06-11T06:20:26.073438-07:00,0.0,10.752033,10752.033 +10220,2025-06-11T06:20:36.837457-07:00,0.0,10.764019,10764.019 +10221,2025-06-11T06:20:47.598871-07:00,0.0,10.761414,10761.414 +10222,2025-06-11T06:20:58.347652-07:00,0.0,10.748781,10748.781 +10223,2025-06-11T06:21:09.111447-07:00,0.0,10.763795,10763.795 +10224,2025-06-11T06:21:19.874200-07:00,0.0,10.762753,10762.753 +10225,2025-06-11T06:21:30.631207-07:00,0.0,10.757007,10757.007 +10226,2025-06-11T06:21:41.384349-07:00,0.0,10.753142,10753.142 +10227,2025-06-11T06:21:52.141465-07:00,0.0,10.757116,10757.116 +10228,2025-06-11T06:22:02.909449-07:00,0.0,10.767984,10767.984 +10229,2025-06-11T06:22:13.664353-07:00,0.0,10.754904,10754.904 +10230,2025-06-11T06:22:24.427504-07:00,0.0,10.763151,10763.151 +10231,2025-06-11T06:22:35.182559-07:00,0.0,10.755055,10755.055 +10232,2025-06-11T06:22:45.944207-07:00,0.0,10.761648,10761.648 +10233,2025-06-11T06:22:56.704205-07:00,0.0,10.759998,10759.998 +10234,2025-06-11T06:23:07.456204-07:00,0.0,10.751999,10751.999 +10235,2025-06-11T06:23:18.219070-07:00,0.0,10.762866,10762.866 +10236,2025-06-11T06:23:28.991427-07:00,0.0,10.772357,10772.357 +10237,2025-06-11T06:23:35.583047-07:00,0.0,6.59162,6591.62 +10238,2025-06-11T06:23:39.752450-07:00,0.0,4.169403,4169.403 +10239,2025-06-11T06:23:50.504210-07:00,0.0,10.75176,10751.76 +10240,2025-06-11T06:24:01.273145-07:00,0.0,10.768935,10768.935 +10241,2025-06-11T06:24:12.029790-07:00,0.0,10.756645,10756.645 +10242,2025-06-11T06:24:22.791252-07:00,0.0,10.761462,10761.462 +10243,2025-06-11T06:24:33.550182-07:00,0.0,10.75893,10758.93 +10244,2025-06-11T06:24:44.313703-07:00,0.0,10.763521,10763.521 +10245,2025-06-11T06:24:55.069587-07:00,0.0,10.755884,10755.884 +10246,2025-06-11T06:25:05.823370-07:00,0.0,10.753783,10753.783 +10247,2025-06-11T06:25:16.583445-07:00,0.0,10.760075,10760.075 +10248,2025-06-11T06:25:27.344251-07:00,0.0,10.760806,10760.806 +10249,2025-06-11T06:25:38.095767-07:00,0.0,10.751516,10751.516 +10250,2025-06-11T06:25:48.854433-07:00,0.0,10.758666,10758.666 +10251,2025-06-11T06:25:59.614844-07:00,0.0,10.760411,10760.411 +10252,2025-06-11T06:26:10.370844-07:00,0.0,10.756,10756.0 +10253,2025-06-11T06:26:21.130425-07:00,0.0,10.759581,10759.581 +10254,2025-06-11T06:26:31.891462-07:00,0.0,10.761037,10761.037 +10255,2025-06-11T06:26:42.648961-07:00,0.0,10.757499,10757.499 +10256,2025-06-11T06:26:53.408464-07:00,0.0,10.759503,10759.503 +10257,2025-06-11T06:27:04.171204-07:00,0.0,10.76274,10762.74 +10258,2025-06-11T06:27:14.933473-07:00,0.0,10.762269,10762.269 +10259,2025-06-11T06:27:25.691235-07:00,0.0,10.757762,10757.762 +10260,2025-06-11T06:27:36.451202-07:00,0.0,10.759967,10759.967 +10261,2025-06-11T06:27:47.210228-07:00,0.0,10.759026,10759.026 +10262,2025-06-11T06:27:57.975455-07:00,0.0,10.765227,10765.227 +10263,2025-06-11T06:28:08.732529-07:00,0.0,10.757074,10757.074 +10264,2025-06-11T06:28:19.496262-07:00,0.0,10.763733,10763.733 +10265,2025-06-11T06:28:30.265294-07:00,0.0,10.769032,10769.032 +10266,2025-06-11T06:28:41.018392-07:00,0.0,10.753098,10753.098 +10267,2025-06-11T06:28:51.789255-07:00,0.0,10.770863,10770.863 +10268,2025-06-11T06:29:02.548209-07:00,0.0,10.758954,10758.954 +10269,2025-06-11T06:29:13.319540-07:00,0.0,10.771331,10771.331 +10270,2025-06-11T06:29:24.083577-07:00,0.0,10.764037,10764.037 +10271,2025-06-11T06:29:34.840596-07:00,0.0,10.757019,10757.019 +10272,2025-06-11T06:29:45.610549-07:00,0.0,10.769953,10769.953 +10273,2025-06-11T06:29:56.365305-07:00,0.0,10.754756,10754.756 +10274,2025-06-11T06:30:07.132204-07:00,0.0,10.766899,10766.899 +10275,2025-06-11T06:30:17.895211-07:00,0.0,10.763007,10763.007 +10276,2025-06-11T06:30:28.656839-07:00,0.0,10.761628,10761.628 +10277,2025-06-11T06:30:39.416557-07:00,0.0,10.759718,10759.718 +10278,2025-06-11T06:30:50.192964-07:00,0.0,10.776407,10776.407 +10279,2025-06-11T06:31:00.951207-07:00,0.0,10.758243,10758.243 +10280,2025-06-11T06:31:11.715425-07:00,0.0,10.764218,10764.218 +10281,2025-06-11T06:31:22.473420-07:00,0.0,10.757995,10757.995 +10282,2025-06-11T06:31:33.245584-07:00,0.0,10.772164,10772.164 +10283,2025-06-11T06:31:44.004608-07:00,0.0,10.759024,10759.024 +10284,2025-06-11T06:31:54.762201-07:00,0.0,10.757593,10757.593 +10285,2025-06-11T06:32:05.530551-07:00,0.0,10.76835,10768.35 +10286,2025-06-11T06:32:16.292312-07:00,0.0,10.761761,10761.761 +10287,2025-06-11T06:32:27.055204-07:00,0.0,10.762892,10762.892 +10288,2025-06-11T06:32:37.811199-07:00,0.0,10.755995,10755.995 +10289,2025-06-11T06:32:48.583545-07:00,0.0,10.772346,10772.346 +10290,2025-06-11T06:32:59.347421-07:00,0.0,10.763876,10763.876 +10291,2025-06-11T06:33:10.112962-07:00,0.0,10.765541,10765.541 +10292,2025-06-11T06:33:20.869544-07:00,0.0,10.756582,10756.582 +10293,2025-06-11T06:33:31.628213-07:00,0.0,10.758669,10758.669 +10294,2025-06-11T06:33:42.389452-07:00,0.0,10.761239,10761.239 +10295,2025-06-11T06:33:53.153203-07:00,0.0,10.763751,10763.751 +10296,2025-06-11T06:34:03.919189-07:00,0.0,10.765986,10765.986 +10297,2025-06-11T06:34:14.683215-07:00,0.0,10.764026,10764.026 +10298,2025-06-11T06:34:25.448980-07:00,0.0,10.765765,10765.765 +10299,2025-06-11T06:34:36.208491-07:00,0.0,10.759511,10759.511 +10300,2025-06-11T06:34:46.962195-07:00,0.0,10.753704,10753.704 +10301,2025-06-11T06:34:57.721207-07:00,0.0,10.759012,10759.012 +10302,2025-06-11T06:35:08.484198-07:00,0.0,10.762991,10762.991 +10303,2025-06-11T06:35:19.246208-07:00,0.0,10.76201,10762.01 +10304,2025-06-11T06:35:29.998504-07:00,0.0,10.752296,10752.296 +10305,2025-06-11T06:35:40.759204-07:00,0.0,10.7607,10760.7 +10306,2025-06-11T06:35:51.517354-07:00,0.0,10.75815,10758.15 +10307,2025-06-11T06:36:02.277250-07:00,0.0,10.759896,10759.896 +10308,2025-06-11T06:36:13.040534-07:00,0.0,10.763284,10763.284 +10309,2025-06-11T06:36:23.797208-07:00,0.0,10.756674,10756.674 +10310,2025-06-11T06:36:34.563185-07:00,0.0,10.765977,10765.977 +10311,2025-06-11T06:36:45.318197-07:00,0.0,10.755012,10755.012 +10312,2025-06-11T06:36:56.086661-07:00,0.0,10.768464,10768.464 +10313,2025-06-11T06:37:06.837504-07:00,0.0,10.750843,10750.843 +10314,2025-06-11T06:37:17.607204-07:00,0.0,10.7697,10769.7 +10315,2025-06-11T06:37:28.366310-07:00,0.0,10.759106,10759.106 +10316,2025-06-11T06:37:39.127756-07:00,0.0,10.761446,10761.446 +10317,2025-06-11T06:37:49.887212-07:00,0.0,10.759456,10759.456 +10318,2025-06-11T06:38:00.642209-07:00,0.0,10.754997,10754.997 +10319,2025-06-11T06:38:11.407204-07:00,0.0,10.764995,10764.995 +10320,2025-06-11T06:38:22.168394-07:00,0.0,10.76119,10761.19 +10321,2025-06-11T06:38:32.925898-07:00,0.0,10.757504,10757.504 +10322,2025-06-11T06:38:43.678211-07:00,0.0,10.752313,10752.313 +10323,2025-06-11T06:38:54.432278-07:00,0.0,10.754067,10754.067 +10324,2025-06-11T06:39:05.193188-07:00,0.0,10.76091,10760.91 +10325,2025-06-11T06:39:15.958490-07:00,0.0,10.765302,10765.302 +10326,2025-06-11T06:39:26.726207-07:00,0.0,10.767717,10767.717 +10327,2025-06-11T06:39:37.488203-07:00,0.0,10.761996,10761.996 +10328,2025-06-11T06:39:48.247962-07:00,0.0,10.759759,10759.759 +10329,2025-06-11T06:39:59.015461-07:00,0.0,10.767499,10767.499 +10330,2025-06-11T06:40:09.782286-07:00,0.0,10.766825,10766.825 +10331,2025-06-11T06:40:20.545490-07:00,0.0,10.763204,10763.204 +10332,2025-06-11T06:40:31.298495-07:00,0.0,10.753005,10753.005 +10333,2025-06-11T06:40:42.059212-07:00,0.0,10.760717,10760.717 +10334,2025-06-11T06:40:52.823455-07:00,0.0,10.764243,10764.243 +10335,2025-06-11T06:41:03.583813-07:00,0.0,10.760358,10760.358 +10336,2025-06-11T06:41:14.348945-07:00,0.0,10.765132,10765.132 +10337,2025-06-11T06:41:25.107487-07:00,0.0,10.758542,10758.542 +10338,2025-06-11T06:41:35.872337-07:00,0.0,10.76485,10764.85 +10339,2025-06-11T06:41:46.630793-07:00,0.0,10.758456,10758.456 +10340,2025-06-11T06:41:57.391360-07:00,0.0,10.760567,10760.567 +10341,2025-06-11T06:42:08.150207-07:00,0.0,10.758847,10758.847 +10342,2025-06-11T06:42:18.908411-07:00,0.0,10.758204,10758.204 +10343,2025-06-11T06:42:29.675685-07:00,0.0,10.767274,10767.274 +10344,2025-06-11T06:42:40.427532-07:00,0.0,10.751847,10751.847 +10345,2025-06-11T06:42:51.200207-07:00,0.0,10.772675,10772.675 +10346,2025-06-11T06:43:01.953203-07:00,0.0,10.752996,10752.996 +10347,2025-06-11T06:43:12.723457-07:00,0.0,10.770254,10770.254 +10348,2025-06-11T06:43:23.481414-07:00,0.0,10.757957,10757.957 +10349,2025-06-11T06:43:34.240206-07:00,0.0,10.758792,10758.792 +10350,2025-06-11T06:43:45.006218-07:00,0.0,10.766012,10766.012 +10351,2025-06-11T06:43:55.765642-07:00,0.0,10.759424,10759.424 +10352,2025-06-11T06:44:06.528206-07:00,0.0,10.762564,10762.564 +10353,2025-06-11T06:44:17.283204-07:00,0.0,10.754998,10754.998 +10354,2025-06-11T06:44:28.047523-07:00,0.0,10.764319,10764.319 +10355,2025-06-11T06:44:38.800496-07:00,0.0,10.752973,10752.973 +10356,2025-06-11T06:44:49.558295-07:00,0.0,10.757799,10757.799 +10357,2025-06-11T06:45:00.325361-07:00,0.0,10.767066,10767.066 +10358,2025-06-11T06:45:11.082207-07:00,0.0,10.756846,10756.846 +10359,2025-06-11T06:45:21.841461-07:00,0.0,10.759254,10759.254 +10360,2025-06-11T06:45:32.611929-07:00,0.0,10.770468,10770.468 +10361,2025-06-11T06:45:43.370205-07:00,0.0,10.758276,10758.276 +10362,2025-06-11T06:45:54.137430-07:00,0.0,10.767225,10767.225 +10363,2025-06-11T06:46:04.886453-07:00,0.0,10.749023,10749.023 +10364,2025-06-11T06:46:15.656476-07:00,0.0,10.770023,10770.023 +10365,2025-06-11T06:46:26.413197-07:00,0.0,10.756721,10756.721 +10366,2025-06-11T06:46:37.171203-07:00,0.0,10.758006,10758.006 +10367,2025-06-11T06:46:47.934544-07:00,0.0,10.763341,10763.341 +10368,2025-06-11T06:46:58.693205-07:00,0.0,10.758661,10758.661 +10369,2025-06-11T06:47:09.454386-07:00,0.0,10.761181,10761.181 +10370,2025-06-11T06:47:20.210555-07:00,0.0,10.756169,10756.169 +10371,2025-06-11T06:47:30.969473-07:00,0.0,10.758918,10758.918 +10372,2025-06-11T06:47:41.728208-07:00,0.0,10.758735,10758.735 +10373,2025-06-11T06:47:52.491363-07:00,0.0,10.763155,10763.155 +10374,2025-06-11T06:48:03.257381-07:00,0.0,10.766018,10766.018 +10375,2025-06-11T06:48:14.022487-07:00,0.0,10.765106,10765.106 +10376,2025-06-11T06:48:24.777505-07:00,0.0,10.755018,10755.018 +10377,2025-06-11T06:48:35.539182-07:00,0.0,10.761677,10761.677 +10378,2025-06-11T06:48:46.291199-07:00,0.0,10.752017,10752.017 +10379,2025-06-11T06:48:57.055750-07:00,0.0,10.764551,10764.551 +10380,2025-06-11T06:49:07.817705-07:00,0.0,10.761955,10761.955 +10381,2025-06-11T06:49:18.573035-07:00,0.0,10.75533,10755.33 +10382,2025-06-11T06:49:29.327430-07:00,0.0,10.754395,10754.395 +10383,2025-06-11T06:49:40.093051-07:00,0.0,10.765621,10765.621 +10384,2025-06-11T06:49:50.848112-07:00,0.0,10.755061,10755.061 +10385,2025-06-11T06:50:01.612616-07:00,0.0,10.764504,10764.504 +10386,2025-06-11T06:50:12.365420-07:00,0.0,10.752804,10752.804 +10387,2025-06-11T06:50:23.124207-07:00,0.0,10.758787,10758.787 +10388,2025-06-11T06:50:33.881696-07:00,0.0,10.757489,10757.489 +10389,2025-06-11T06:50:44.637401-07:00,0.0,10.755705,10755.705 +10390,2025-06-11T06:50:55.404475-07:00,0.0,10.767074,10767.074 +10391,2025-06-11T06:51:06.158246-07:00,0.0,10.753771,10753.771 +10392,2025-06-11T06:51:16.932285-07:00,0.0,10.774039,10774.039 +10393,2025-06-11T06:51:27.692067-07:00,0.0,10.759782,10759.782 +10394,2025-06-11T06:51:38.444327-07:00,0.0,10.75226,10752.26 +10395,2025-06-11T06:51:49.207201-07:00,0.0,10.762874,10762.874 +10396,2025-06-11T06:51:59.973705-07:00,0.0,10.766504,10766.504 +10397,2025-06-11T06:52:10.700774-07:00,0.0,10.727069,10727.069 +10398,2025-06-11T06:52:21.460975-07:00,0.0,10.760201,10760.201 +10399,2025-06-11T06:52:32.216672-07:00,0.0,10.755697,10755.697 +10400,2025-06-11T06:52:42.977871-07:00,0.0,10.761199,10761.199 +10401,2025-06-11T06:52:53.733007-07:00,0.0,10.755136,10755.136 +10402,2025-06-11T06:53:04.495621-07:00,0.0,10.762614,10762.614 +10403,2025-06-11T06:53:15.261186-07:00,0.0,10.765565,10765.565 +10404,2025-06-11T06:53:26.018000-07:00,0.0,10.756814,10756.814 +10405,2025-06-11T06:53:36.773898-07:00,0.0,10.755898,10755.898 +10406,2025-06-11T06:53:47.532629-07:00,0.0,10.758731,10758.731 +10407,2025-06-11T06:53:58.298197-07:00,0.0,10.765568,10765.568 +10408,2025-06-11T06:54:09.050629-07:00,0.0,10.752432,10752.432 +10409,2025-06-11T06:54:19.807947-07:00,0.0,10.757318,10757.318 +10410,2025-06-11T06:54:30.574131-07:00,0.0,10.766184,10766.184 +10411,2025-06-11T06:54:41.322717-07:00,0.0,10.748586,10748.586 +10412,2025-06-11T06:54:52.086653-07:00,0.0,10.763936,10763.936 +10413,2025-06-11T06:55:02.845113-07:00,0.0,10.75846,10758.46 +10414,2025-06-11T06:55:13.597872-07:00,0.0,10.752759,10752.759 +10415,2025-06-11T06:55:24.365631-07:00,0.0,10.767759,10767.759 +10416,2025-06-11T06:55:35.123839-07:00,0.0,10.758208,10758.208 +10417,2025-06-11T06:55:45.883612-07:00,0.0,10.759773,10759.773 +10418,2025-06-11T06:55:56.631627-07:00,0.0,10.748015,10748.015 +10419,2025-06-11T06:56:07.400283-07:00,0.0,10.768656,10768.656 +10420,2025-06-11T06:56:18.153609-07:00,0.0,10.753326,10753.326 +10421,2025-06-11T06:56:28.921641-07:00,0.0,10.768032,10768.032 +10422,2025-06-11T06:56:39.679466-07:00,0.0,10.757825,10757.825 +10423,2025-06-11T06:56:50.434971-07:00,0.0,10.755505,10755.505 +10424,2025-06-11T06:57:01.200614-07:00,0.0,10.765643,10765.643 +10425,2025-06-11T06:57:11.960629-07:00,0.0,10.760015,10760.015 +10426,2025-06-11T06:57:22.722619-07:00,0.0,10.76199,10761.99 +10427,2025-06-11T06:57:33.487146-07:00,0.0,10.764527,10764.527 +10428,2025-06-11T06:57:44.252627-07:00,0.0,10.765481,10765.481 +10429,2025-06-11T06:57:55.007684-07:00,0.0,10.755057,10755.057 +10430,2025-06-11T06:58:05.769944-07:00,0.0,10.76226,10762.26 +10431,2025-06-11T06:58:16.536884-07:00,0.0,10.76694,10766.94 +10432,2025-06-11T06:58:27.297884-07:00,0.0,10.761,10761.0 +10433,2025-06-11T06:58:38.050896-07:00,0.0,10.753012,10753.012 +10434,2025-06-11T06:58:48.822916-07:00,0.0,10.77202,10772.02 +10435,2025-06-11T06:58:59.572270-07:00,0.0,10.749354,10749.354 +10436,2025-06-11T06:59:10.336725-07:00,0.0,10.764455,10764.455 +10437,2025-06-11T06:59:21.094818-07:00,0.0,10.758093,10758.093 +10438,2025-06-11T06:59:31.858744-07:00,0.0,10.763926,10763.926 +10439,2025-06-11T06:59:42.618630-07:00,0.0,10.759886,10759.886 +10440,2025-06-11T06:59:53.378895-07:00,0.0,10.760265,10760.265 +10441,2025-06-11T07:00:04.143569-07:00,0.0,10.764674,10764.674 +10442,2025-06-11T07:00:14.896496-07:00,0.0,10.752927,10752.927 +10443,2025-06-11T07:00:25.659631-07:00,0.0,10.763135,10763.135 +10444,2025-06-11T07:00:36.418633-07:00,0.0,10.759002,10759.002 +10445,2025-06-11T07:00:47.179662-07:00,0.0,10.761029,10761.029 +10446,2025-06-11T07:00:57.935961-07:00,0.0,10.756299,10756.299 +10447,2025-06-11T07:01:08.695861-07:00,0.0,10.7599,10759.9 +10448,2025-06-11T07:01:19.460809-07:00,0.0,10.764948,10764.948 +10449,2025-06-11T07:01:30.214631-07:00,0.0,10.753822,10753.822 +10450,2025-06-11T07:01:40.977930-07:00,0.0,10.763299,10763.299 +10451,2025-06-11T07:01:51.736139-07:00,0.0,10.758209,10758.209 +10452,2025-06-11T07:02:02.498670-07:00,0.0,10.762531,10762.531 +10453,2025-06-11T07:02:13.267960-07:00,0.0,10.76929,10769.29 +10454,2025-06-11T07:02:24.030631-07:00,0.0,10.762671,10762.671 +10455,2025-06-11T07:02:34.791628-07:00,0.0,10.760997,10760.997 +10456,2025-06-11T07:02:45.549198-07:00,0.0,10.75757,10757.57 +10457,2025-06-11T07:02:56.314209-07:00,0.0,10.765011,10765.011 +10458,2025-06-11T07:03:07.066742-07:00,0.0,10.752533,10752.533 +10459,2025-06-11T07:03:17.829628-07:00,0.0,10.762886,10762.886 +10460,2025-06-11T07:03:28.588631-07:00,0.0,10.759003,10759.003 +10461,2025-06-11T07:03:39.348791-07:00,0.0,10.76016,10760.16 +10462,2025-06-11T07:03:50.104265-07:00,0.0,10.755474,10755.474 +10463,2025-06-11T07:04:00.865626-07:00,0.0,10.761361,10761.361 +10464,2025-06-11T07:04:11.615043-07:00,0.0,10.749417,10749.417 +10465,2025-06-11T07:04:22.381627-07:00,0.0,10.766584,10766.584 +10466,2025-06-11T07:04:33.132606-07:00,0.0,10.750979,10750.979 +10467,2025-06-11T07:04:43.892849-07:00,0.0,10.760243,10760.243 +10468,2025-06-11T07:04:54.650243-07:00,0.0,10.757394,10757.394 +10469,2025-06-11T07:05:05.415724-07:00,0.0,10.765481,10765.481 +10470,2025-06-11T07:05:16.181080-07:00,0.0,10.765356,10765.356 +10471,2025-06-11T07:05:26.938897-07:00,0.0,10.757817,10757.817 +10472,2025-06-11T07:05:37.693704-07:00,0.0,10.754807,10754.807 +10473,2025-06-11T07:05:48.458847-07:00,0.0,10.765143,10765.143 +10474,2025-06-11T07:05:59.221627-07:00,0.0,10.76278,10762.78 +10475,2025-06-11T07:06:09.993800-07:00,0.0,10.772173,10772.173 +10476,2025-06-11T07:06:20.752755-07:00,0.0,10.758955,10758.955 +10477,2025-06-11T07:06:31.505751-07:00,0.0,10.752996,10752.996 +10478,2025-06-11T07:06:42.270214-07:00,0.0,10.764463,10764.463 +10479,2025-06-11T07:06:53.030675-07:00,0.0,10.760461,10760.461 +10480,2025-06-11T07:07:03.788602-07:00,0.0,10.757927,10757.927 +10481,2025-06-11T07:07:14.548631-07:00,0.0,10.760029,10760.029 +10482,2025-06-11T07:07:25.316926-07:00,0.0,10.768295,10768.295 +10483,2025-06-11T07:07:36.084630-07:00,0.0,10.767704,10767.704 +10484,2025-06-11T07:07:46.842874-07:00,0.0,10.758244,10758.244 +10485,2025-06-11T07:07:57.603671-07:00,0.0,10.760797,10760.797 +10486,2025-06-11T07:08:08.363959-07:00,0.0,10.760288,10760.288 +10487,2025-06-11T07:08:19.121885-07:00,0.0,10.757926,10757.926 +10488,2025-06-11T07:08:29.872627-07:00,0.0,10.750742,10750.742 +10489,2025-06-11T07:08:40.637631-07:00,0.0,10.765004,10765.004 +10490,2025-06-11T07:08:51.395339-07:00,0.0,10.757708,10757.708 +10491,2025-06-11T07:09:02.152803-07:00,0.0,10.757464,10757.464 +10492,2025-06-11T07:09:12.907043-07:00,0.0,10.75424,10754.24 +10493,2025-06-11T07:09:23.675891-07:00,0.0,10.768848,10768.848 +10494,2025-06-11T07:09:34.434806-07:00,0.0,10.758915,10758.915 +10495,2025-06-11T07:09:45.189761-07:00,0.0,10.754955,10754.955 +10496,2025-06-11T07:09:55.953474-07:00,0.0,10.763713,10763.713 +10497,2025-06-11T07:10:06.707237-07:00,0.0,10.753763,10753.763 +10498,2025-06-11T07:10:17.465631-07:00,0.0,10.758394,10758.394 +10499,2025-06-11T07:10:28.225876-07:00,0.0,10.760245,10760.245 +10500,2025-06-11T07:10:38.987571-07:00,0.0,10.761695,10761.695 +10501,2025-06-11T07:10:49.743698-07:00,0.0,10.756127,10756.127 +10502,2025-06-11T07:11:00.503955-07:00,0.0,10.760257,10760.257 +10503,2025-06-11T07:11:11.266677-07:00,0.0,10.762722,10762.722 +10504,2025-06-11T07:11:22.021217-07:00,0.0,10.75454,10754.54 +10505,2025-06-11T07:11:32.780875-07:00,0.0,10.759658,10759.658 +10506,2025-06-11T07:11:43.539849-07:00,0.0,10.758974,10758.974 +10507,2025-06-11T07:11:54.305630-07:00,0.0,10.765781,10765.781 +10508,2025-06-11T07:12:05.059600-07:00,0.0,10.75397,10753.97 +10509,2025-06-11T07:12:15.821075-07:00,0.0,10.761475,10761.475 +10510,2025-06-11T07:12:26.579309-07:00,0.0,10.758234,10758.234 +10511,2025-06-11T07:12:37.332890-07:00,0.0,10.753581,10753.581 +10512,2025-06-11T07:12:48.100942-07:00,0.0,10.768052,10768.052 +10513,2025-06-11T07:12:58.855925-07:00,0.0,10.754983,10754.983 +10514,2025-06-11T07:13:09.611162-07:00,0.0,10.755237,10755.237 +10515,2025-06-11T07:13:20.377613-07:00,0.0,10.766451,10766.451 +10516,2025-06-11T07:13:31.141625-07:00,0.0,10.764012,10764.012 +10517,2025-06-11T07:13:41.901928-07:00,0.0,10.760303,10760.303 +10518,2025-06-11T07:13:52.656950-07:00,0.0,10.755022,10755.022 +10519,2025-06-11T07:14:03.423608-07:00,0.0,10.766658,10766.658 +10520,2025-06-11T07:14:14.177900-07:00,0.0,10.754292,10754.292 +10521,2025-06-11T07:14:24.945940-07:00,0.0,10.76804,10768.04 +10522,2025-06-11T07:14:35.702610-07:00,0.0,10.75667,10756.67 +10523,2025-06-11T07:14:46.468627-07:00,0.0,10.766017,10766.017 +10524,2025-06-11T07:14:57.218627-07:00,0.0,10.75,10750.0 +10525,2025-06-11T07:15:07.984964-07:00,0.0,10.766337,10766.337 +10526,2025-06-11T07:15:18.745735-07:00,0.0,10.760771,10760.771 +10527,2025-06-11T07:15:29.509695-07:00,0.0,10.76396,10763.96 +10528,2025-06-11T07:15:40.269545-07:00,0.0,10.75985,10759.85 +10529,2025-06-11T07:15:51.034684-07:00,0.0,10.765139,10765.139 +10530,2025-06-11T07:16:01.793239-07:00,0.0,10.758555,10758.555 +10531,2025-06-11T07:16:12.566621-07:00,0.0,10.773382,10773.382 +10532,2025-06-11T07:16:23.325150-07:00,0.0,10.758529,10758.529 +10533,2025-06-11T07:16:34.081242-07:00,0.0,10.756092,10756.092 +10534,2025-06-11T07:16:44.853632-07:00,0.0,10.77239,10772.39 +10535,2025-06-11T07:16:55.614895-07:00,0.0,10.761263,10761.263 +10536,2025-06-11T07:17:06.369909-07:00,0.0,10.755014,10755.014 +10537,2025-06-11T07:17:17.141627-07:00,0.0,10.771718,10771.718 +10538,2025-06-11T07:17:27.907102-07:00,0.0,10.765475,10765.475 +10539,2025-06-11T07:17:38.662117-07:00,0.0,10.755015,10755.015 +10540,2025-06-11T07:17:49.423629-07:00,0.0,10.761512,10761.512 +10541,2025-06-11T07:18:00.198552-07:00,0.0,10.774923,10774.923 +10542,2025-06-11T07:18:10.957170-07:00,0.0,10.758618,10758.618 +10543,2025-06-11T07:18:21.712631-07:00,0.0,10.755461,10755.461 +10544,2025-06-11T07:18:32.478660-07:00,0.0,10.766029,10766.029 +10545,2025-06-11T07:18:43.232629-07:00,0.0,10.753969,10753.969 +10546,2025-06-11T07:18:53.995833-07:00,0.0,10.763204,10763.204 +10547,2025-06-11T07:19:04.766688-07:00,0.0,10.770855,10770.855 +10548,2025-06-11T07:19:15.524626-07:00,0.0,10.757938,10757.938 +10549,2025-06-11T07:19:26.290947-07:00,0.0,10.766321,10766.321 +10550,2025-06-11T07:19:37.046818-07:00,0.0,10.755871,10755.871 +10551,2025-06-11T07:19:47.808783-07:00,0.0,10.761965,10761.965 +10552,2025-06-11T07:19:58.564627-07:00,0.0,10.755844,10755.844 +10553,2025-06-11T07:20:09.329629-07:00,0.0,10.765002,10765.002 +10554,2025-06-11T07:20:20.089050-07:00,0.0,10.759421,10759.421 +10555,2025-06-11T07:20:30.851807-07:00,0.0,10.762757,10762.757 +10556,2025-06-11T07:20:41.617929-07:00,0.0,10.766122,10766.122 +10557,2025-06-11T07:20:52.382677-07:00,0.0,10.764748,10764.748 +10558,2025-06-11T07:21:03.133610-07:00,0.0,10.750933,10750.933 +10559,2025-06-11T07:21:13.902794-07:00,0.0,10.769184,10769.184 +10560,2025-06-11T07:21:24.669994-07:00,0.0,10.7672,10767.2 +10561,2025-06-11T07:21:35.431094-07:00,0.0,10.7611,10761.1 +10562,2025-06-11T07:21:46.194627-07:00,0.0,10.763533,10763.533 +10563,2025-06-11T07:21:56.955805-07:00,0.0,10.761178,10761.178 +10564,2025-06-11T07:22:07.714170-07:00,0.0,10.758365,10758.365 +10565,2025-06-11T07:22:18.475661-07:00,0.0,10.761491,10761.491 +10566,2025-06-11T07:22:29.241631-07:00,0.0,10.76597,10765.97 +10567,2025-06-11T07:22:40.007938-07:00,0.0,10.766307,10766.307 +10568,2025-06-11T07:22:50.764929-07:00,0.0,10.756991,10756.991 +10569,2025-06-11T07:23:01.534622-07:00,0.0,10.769693,10769.693 +10570,2025-06-11T07:23:12.289948-07:00,0.0,10.755326,10755.326 +10571,2025-06-11T07:23:23.059055-07:00,0.0,10.769107,10769.107 +10572,2025-06-11T07:23:33.820605-07:00,0.0,10.76155,10761.55 +10573,2025-06-11T07:23:44.586630-07:00,0.0,10.766025,10766.025 +10574,2025-06-11T07:23:55.364738-07:00,0.0,10.778108,10778.108 +10575,2025-06-11T07:24:06.151636-07:00,0.0,10.786898,10786.898 +10576,2025-06-11T07:24:16.934783-07:00,0.0,10.783147,10783.147 +10577,2025-06-11T07:24:27.710622-07:00,0.0,10.775839,10775.839 +10578,2025-06-11T07:24:38.497621-07:00,0.0,10.786999,10786.999 +10579,2025-06-11T07:24:49.284265-07:00,0.0,10.786644,10786.644 +10580,2025-06-11T07:25:00.066659-07:00,0.0,10.782394,10782.394 +10581,2025-06-11T07:25:10.849440-07:00,0.0,10.782781,10782.781 +10582,2025-06-11T07:25:21.629438-07:00,0.0,10.779998,10779.998 +10583,2025-06-11T07:25:32.411627-07:00,0.0,10.782189,10782.189 +10584,2025-06-11T07:25:43.193629-07:00,0.0,10.782002,10782.002 +10585,2025-06-11T07:25:53.971087-07:00,0.0,10.777458,10777.458 +10586,2025-06-11T07:26:04.754919-07:00,0.0,10.783832,10783.832 +10587,2025-06-11T07:26:15.543119-07:00,0.0,10.7882,10788.2 +10588,2025-06-11T07:26:26.309875-07:00,0.0,10.766756,10766.756 +10589,2025-06-11T07:26:37.069678-07:00,0.0,10.759803,10759.803 +10590,2025-06-11T07:26:47.835758-07:00,0.0,10.76608,10766.08 +10591,2025-06-11T07:26:58.601747-07:00,0.0,10.765989,10765.989 +10592,2025-06-11T07:27:09.371967-07:00,0.0,10.77022,10770.22 +10593,2025-06-11T07:27:20.136621-07:00,0.0,10.764654,10764.654 +10594,2025-06-11T07:27:30.908000-07:00,0.0,10.771379,10771.379 +10595,2025-06-11T07:27:41.674969-07:00,0.0,10.766969,10766.969 +10596,2025-06-11T07:27:52.438635-07:00,0.0,10.763666,10763.666 +10597,2025-06-11T07:28:03.201992-07:00,0.0,10.763357,10763.357 +10598,2025-06-11T07:28:13.963074-07:00,0.0,10.761082,10761.082 +10599,2025-06-11T07:28:24.720830-07:00,0.0,10.757756,10757.756 +10600,2025-06-11T07:28:35.484600-07:00,0.0,10.76377,10763.77 +10601,2025-06-11T07:28:46.258182-07:00,0.0,10.773582,10773.582 +10602,2025-06-11T07:28:57.015040-07:00,0.0,10.756858,10756.858 +10603,2025-06-11T07:29:07.779855-07:00,0.0,10.764815,10764.815 +10604,2025-06-11T07:29:18.543021-07:00,0.0,10.763166,10763.166 +10605,2025-06-11T07:29:29.308632-07:00,0.0,10.765611,10765.611 +10606,2025-06-11T07:29:40.074631-07:00,0.0,10.765999,10765.999 +10607,2025-06-11T07:29:50.846578-07:00,0.0,10.771947,10771.947 +10608,2025-06-11T07:30:01.605875-07:00,0.0,10.759297,10759.297 +10609,2025-06-11T07:30:12.376898-07:00,0.0,10.771023,10771.023 +10610,2025-06-11T07:30:23.134977-07:00,0.0,10.758079,10758.079 +10611,2025-06-11T07:30:33.897247-07:00,0.0,10.76227,10762.27 +10612,2025-06-11T07:30:44.671627-07:00,0.0,10.77438,10774.38 +10613,2025-06-11T07:30:55.432885-07:00,0.0,10.761258,10761.258 +10614,2025-06-11T07:31:06.194375-07:00,0.0,10.76149,10761.49 +10615,2025-06-11T07:31:16.957653-07:00,0.0,10.763278,10763.278 +10616,2025-06-11T07:31:27.732168-07:00,0.0,10.774515,10774.515 +10617,2025-06-11T07:31:38.487627-07:00,0.0,10.755459,10755.459 +10618,2025-06-11T07:31:49.257665-07:00,0.0,10.770038,10770.038 +10619,2025-06-11T07:32:00.022253-07:00,0.0,10.764588,10764.588 +10620,2025-06-11T07:32:10.781023-07:00,0.0,10.75877,10758.77 +10621,2025-06-11T07:32:21.543778-07:00,0.0,10.762755,10762.755 +10622,2025-06-11T07:32:32.313964-07:00,0.0,10.770186,10770.186 +10623,2025-06-11T07:32:43.074605-07:00,0.0,10.760641,10760.641 +10624,2025-06-11T07:32:53.842627-07:00,0.0,10.768022,10768.022 +10625,2025-06-11T07:33:04.606356-07:00,0.0,10.763729,10763.729 +10626,2025-06-11T07:33:15.373105-07:00,0.0,10.766749,10766.749 +10627,2025-06-11T07:33:26.125767-07:00,0.0,10.752662,10752.662 +10628,2025-06-11T07:33:36.897815-07:00,0.0,10.772048,10772.048 +10629,2025-06-11T07:33:47.655995-07:00,0.0,10.75818,10758.18 +10630,2025-06-11T07:33:58.419630-07:00,0.0,10.763635,10763.635 +10631,2025-06-11T07:34:09.187125-07:00,0.0,10.767495,10767.495 +10632,2025-06-11T07:34:19.952040-07:00,0.0,10.764915,10764.915 +10633,2025-06-11T07:34:30.713633-07:00,0.0,10.761593,10761.593 +10634,2025-06-11T07:34:41.466625-07:00,0.0,10.752992,10752.992 +10635,2025-06-11T07:34:52.236828-07:00,0.0,10.770203,10770.203 +10636,2025-06-11T07:35:02.999903-07:00,0.0,10.763075,10763.075 +10637,2025-06-11T07:35:13.761682-07:00,0.0,10.761779,10761.779 +10638,2025-06-11T07:35:24.532940-07:00,0.0,10.771258,10771.258 +10639,2025-06-11T07:35:35.296927-07:00,0.0,10.763987,10763.987 +10640,2025-06-11T07:35:46.052667-07:00,0.0,10.75574,10755.74 +10641,2025-06-11T07:35:56.822668-07:00,0.0,10.770001,10770.001 +10642,2025-06-11T07:36:07.577925-07:00,0.0,10.755257,10755.257 +10643,2025-06-11T07:36:18.348946-07:00,0.0,10.771021,10771.021 +10644,2025-06-11T07:36:29.103622-07:00,0.0,10.754676,10754.676 +10645,2025-06-11T07:36:39.873172-07:00,0.0,10.76955,10769.55 +10646,2025-06-11T07:36:50.628851-07:00,0.0,10.755679,10755.679 +10647,2025-06-11T07:37:01.389629-07:00,0.0,10.760778,10760.778 +10648,2025-06-11T07:37:12.155851-07:00,0.0,10.766222,10766.222 +10649,2025-06-11T07:37:22.909891-07:00,0.0,10.75404,10754.04 +10650,2025-06-11T07:37:33.665908-07:00,0.0,10.756017,10756.017 +10651,2025-06-11T07:37:44.431870-07:00,0.0,10.765962,10765.962 +10652,2025-06-11T07:37:55.189621-07:00,0.0,10.757751,10757.751 +10653,2025-06-11T07:38:05.943429-07:00,0.0,10.753808,10753.808 +10654,2025-06-11T07:38:16.710193-07:00,0.0,10.766764,10766.764 +10655,2025-06-11T07:38:27.462185-07:00,0.0,10.751992,10751.992 +10656,2025-06-11T07:38:38.223760-07:00,0.0,10.761575,10761.575 +10657,2025-06-11T07:38:48.988856-07:00,0.0,10.765096,10765.096 +10658,2025-06-11T07:38:59.744024-07:00,0.0,10.755168,10755.168 +10659,2025-06-11T07:39:10.496944-07:00,0.0,10.75292,10752.92 +10660,2025-06-11T07:39:21.263894-07:00,0.0,10.76695,10766.95 +10661,2025-06-11T07:39:32.020918-07:00,0.0,10.757024,10757.024 +10662,2025-06-11T07:39:42.786999-07:00,0.0,10.766081,10766.081 +10663,2025-06-11T07:39:53.543089-07:00,0.0,10.75609,10756.09 +10664,2025-06-11T07:40:04.305617-07:00,0.0,10.762528,10762.528 +10665,2025-06-11T07:40:15.058629-07:00,0.0,10.753012,10753.012 +10666,2025-06-11T07:40:25.821789-07:00,0.0,10.76316,10763.16 +10667,2025-06-11T07:40:36.582954-07:00,0.0,10.761165,10761.165 +10668,2025-06-11T07:40:47.348944-07:00,0.0,10.76599,10765.99 +10669,2025-06-11T07:40:58.111631-07:00,0.0,10.762687,10762.687 +10670,2025-06-11T07:41:08.873593-07:00,0.0,10.761962,10761.962 +10671,2025-06-11T07:41:19.631127-07:00,0.0,10.757534,10757.534 +10672,2025-06-11T07:41:30.386811-07:00,0.0,10.755684,10755.684 +10673,2025-06-11T07:41:41.144663-07:00,0.0,10.757852,10757.852 +10674,2025-06-11T07:41:51.896876-07:00,0.0,10.752213,10752.213 +10675,2025-06-11T07:42:02.658230-07:00,0.0,10.761354,10761.354 +10676,2025-06-11T07:42:13.413917-07:00,0.0,10.755687,10755.687 +10677,2025-06-11T07:42:24.178893-07:00,0.0,10.764976,10764.976 +10678,2025-06-11T07:42:34.933872-07:00,0.0,10.754979,10754.979 +10679,2025-06-11T07:42:45.704995-07:00,0.0,10.771123,10771.123 +10680,2025-06-11T07:42:56.460126-07:00,0.0,10.755131,10755.131 +10681,2025-06-11T07:43:07.211969-07:00,0.0,10.751843,10751.843 +10682,2025-06-11T07:43:17.976629-07:00,0.0,10.76466,10764.66 +10683,2025-06-11T07:43:28.729891-07:00,0.0,10.753262,10753.262 +10684,2025-06-11T07:43:39.488948-07:00,0.0,10.759057,10759.057 +10685,2025-06-11T07:43:50.247960-07:00,0.0,10.759012,10759.012 +10686,2025-06-11T07:44:01.006046-07:00,0.0,10.758086,10758.086 +10687,2025-06-11T07:44:11.760627-07:00,0.0,10.754581,10754.581 +10688,2025-06-11T07:44:22.527344-07:00,0.0,10.766717,10766.717 +10689,2025-06-11T07:44:33.286226-07:00,0.0,10.758882,10758.882 +10690,2025-06-11T07:44:44.044074-07:00,0.0,10.757848,10757.848 +10691,2025-06-11T07:44:54.797994-07:00,0.0,10.75392,10753.92 +10692,2025-06-11T07:45:05.562948-07:00,0.0,10.764954,10764.954 +10693,2025-06-11T07:45:16.322552-07:00,0.0,10.759604,10759.604 +10694,2025-06-11T07:45:27.081914-07:00,0.0,10.759362,10759.362 +10695,2025-06-11T07:45:37.830172-07:00,0.0,10.748258,10748.258 +10696,2025-06-11T07:45:48.593606-07:00,0.0,10.763434,10763.434 +10697,2025-06-11T07:45:59.356631-07:00,0.0,10.763025,10763.025 +10698,2025-06-11T07:46:10.108847-07:00,0.0,10.752216,10752.216 +10699,2025-06-11T07:46:20.866893-07:00,0.0,10.758046,10758.046 +10700,2025-06-11T07:46:31.628009-07:00,0.0,10.761116,10761.116 +10701,2025-06-11T07:46:42.391606-07:00,0.0,10.763597,10763.597 +10702,2025-06-11T07:46:53.148621-07:00,0.0,10.757015,10757.015 +10703,2025-06-11T07:47:03.911884-07:00,0.0,10.763263,10763.263 +10704,2025-06-11T07:47:14.666954-07:00,0.0,10.75507,10755.07 +10705,2025-06-11T07:47:25.419627-07:00,0.0,10.752673,10752.673 +10706,2025-06-11T07:47:36.183692-07:00,0.0,10.764065,10764.065 +10707,2025-06-11T07:47:46.934653-07:00,0.0,10.750961,10750.961 +10708,2025-06-11T07:47:57.698576-07:00,0.0,10.763923,10763.923 +10709,2025-06-11T07:48:08.459780-07:00,0.0,10.761204,10761.204 +10710,2025-06-11T07:48:19.209947-07:00,0.0,10.750167,10750.167 +10711,2025-06-11T07:48:29.975620-07:00,0.0,10.765673,10765.673 +10712,2025-06-11T07:48:40.730611-07:00,0.0,10.754991,10754.991 +10713,2025-06-11T07:48:51.487531-07:00,0.0,10.75692,10756.92 +10714,2025-06-11T07:49:02.246799-07:00,0.0,10.759268,10759.268 +10715,2025-06-11T07:49:13.008627-07:00,0.0,10.761828,10761.828 +10716,2025-06-11T07:49:23.769633-07:00,0.0,10.761006,10761.006 +10717,2025-06-11T07:49:34.518870-07:00,0.0,10.749237,10749.237 +10718,2025-06-11T07:49:45.283600-07:00,0.0,10.76473,10764.73 +10719,2025-06-11T07:49:56.037119-07:00,0.0,10.753519,10753.519 +10720,2025-06-11T07:50:06.802879-07:00,0.0,10.76576,10765.76 +10721,2025-06-11T07:50:17.553627-07:00,0.0,10.750748,10750.748 +10722,2025-06-11T07:50:28.320390-07:00,0.0,10.766763,10766.763 +10723,2025-06-11T07:50:39.075855-07:00,0.0,10.755465,10755.465 +10724,2025-06-11T07:50:49.838852-07:00,0.0,10.762997,10762.997 +10725,2025-06-11T07:51:00.588617-07:00,0.0,10.749765,10749.765 +10726,2025-06-11T07:51:11.347631-07:00,0.0,10.759014,10759.014 +10727,2025-06-11T07:51:22.105868-07:00,0.0,10.758237,10758.237 +10728,2025-06-11T07:51:32.868364-07:00,0.0,10.762496,10762.496 +10729,2025-06-11T07:51:43.621759-07:00,0.0,10.753395,10753.395 +10730,2025-06-11T07:51:54.376631-07:00,0.0,10.754872,10754.872 +10731,2025-06-11T07:52:05.132676-07:00,0.0,10.756045,10756.045 +10732,2025-06-11T07:52:15.896644-07:00,0.0,10.763968,10763.968 +10733,2025-06-11T07:52:26.657921-07:00,0.0,10.761277,10761.277 +10734,2025-06-11T07:52:37.417788-07:00,0.0,10.759867,10759.867 +10735,2025-06-11T07:52:48.182875-07:00,0.0,10.765087,10765.087 +10736,2025-06-11T07:52:58.943879-07:00,0.0,10.761004,10761.004 +10737,2025-06-11T07:53:09.696197-07:00,0.0,10.752318,10752.318 +10738,2025-06-11T07:53:20.464886-07:00,0.0,10.768689,10768.689 +10739,2025-06-11T07:53:31.220894-07:00,0.0,10.756008,10756.008 +10740,2025-06-11T07:53:41.971643-07:00,0.0,10.750749,10750.749 +10741,2025-06-11T07:53:52.738702-07:00,0.0,10.767059,10767.059 +10742,2025-06-11T07:54:03.489900-07:00,0.0,10.751198,10751.198 +10743,2025-06-11T07:54:14.244724-07:00,0.0,10.754824,10754.824 +10744,2025-06-11T07:54:25.007645-07:00,0.0,10.762921,10762.921 +10745,2025-06-11T07:54:35.758624-07:00,0.0,10.750979,10750.979 +10746,2025-06-11T07:54:46.524674-07:00,0.0,10.76605,10766.05 +10747,2025-06-11T07:54:57.278980-07:00,0.0,10.754306,10754.306 +10748,2025-06-11T07:55:08.038229-07:00,0.0,10.759249,10759.249 +10749,2025-06-11T07:55:18.792920-07:00,0.0,10.754691,10754.691 +10750,2025-06-11T07:55:29.555645-07:00,0.0,10.762725,10762.725 +10751,2025-06-11T07:55:40.309803-07:00,0.0,10.754158,10754.158 +10752,2025-06-11T07:55:51.066886-07:00,0.0,10.757083,10757.083 +10753,2025-06-11T07:56:01.823184-07:00,0.0,10.756298,10756.298 +10754,2025-06-11T07:56:12.582645-07:00,0.0,10.759461,10759.461 +10755,2025-06-11T07:56:23.338650-07:00,0.0,10.756005,10756.005 +10756,2025-06-11T07:56:34.091641-07:00,0.0,10.752991,10752.991 +10757,2025-06-11T07:56:44.849643-07:00,0.0,10.758002,10758.002 +10758,2025-06-11T07:56:55.610934-07:00,0.0,10.761291,10761.291 +10759,2025-06-11T07:57:06.369750-07:00,0.0,10.758816,10758.816 +10760,2025-06-11T07:57:17.124746-07:00,0.0,10.754996,10754.996 +10761,2025-06-11T07:57:27.881006-07:00,0.0,10.75626,10756.26 +10762,2025-06-11T07:57:38.633731-07:00,0.0,10.752725,10752.725 +10763,2025-06-11T07:57:49.398956-07:00,0.0,10.765225,10765.225 +10764,2025-06-11T07:58:00.151956-07:00,0.0,10.753,10753.0 +10765,2025-06-11T07:58:10.906656-07:00,0.0,10.7547,10754.7 +10766,2025-06-11T07:58:21.668646-07:00,0.0,10.76199,10761.99 +10767,2025-06-11T07:58:32.433672-07:00,0.0,10.765026,10765.026 +10768,2025-06-11T07:58:43.196953-07:00,0.0,10.763281,10763.281 +10769,2025-06-11T07:58:53.950633-07:00,0.0,10.75368,10753.68 +10770,2025-06-11T07:59:04.712647-07:00,0.0,10.762014,10762.014 +10771,2025-06-11T07:59:15.470649-07:00,0.0,10.758002,10758.002 +10772,2025-06-11T07:59:26.240796-07:00,0.0,10.770147,10770.147 +10773,2025-06-11T07:59:37.006794-07:00,0.0,10.765998,10765.998 +10774,2025-06-11T07:59:47.765639-07:00,0.0,10.758845,10758.845 +10775,2025-06-11T07:59:58.530122-07:00,0.0,10.764483,10764.483 +10776,2025-06-11T08:00:09.292912-07:00,0.0,10.76279,10762.79 +10777,2025-06-11T08:00:20.061680-07:00,0.0,10.768768,10768.768 +10778,2025-06-11T08:00:30.817960-07:00,0.0,10.75628,10756.28 +10779,2025-06-11T08:00:41.586638-07:00,0.0,10.768678,10768.678 +10780,2025-06-11T08:00:52.349643-07:00,0.0,10.763005,10763.005 +10781,2025-06-11T08:01:03.109229-07:00,0.0,10.759586,10759.586 +10782,2025-06-11T08:01:13.869975-07:00,0.0,10.760746,10760.746 +10783,2025-06-11T08:01:24.635647-07:00,0.0,10.765672,10765.672 +10784,2025-06-11T08:01:35.404794-07:00,0.0,10.769147,10769.147 +10785,2025-06-11T08:01:46.167647-07:00,0.0,10.762853,10762.853 +10786,2025-06-11T08:01:56.925710-07:00,0.0,10.758063,10758.063 +10787,2025-06-11T08:02:07.694643-07:00,0.0,10.768933,10768.933 +10788,2025-06-11T08:02:18.452676-07:00,0.0,10.758033,10758.033 +10789,2025-06-11T08:02:29.213749-07:00,0.0,10.761073,10761.073 +10790,2025-06-11T08:02:39.976630-07:00,0.0,10.762881,10762.881 +10791,2025-06-11T08:02:50.726675-07:00,0.0,10.750045,10750.045 +10792,2025-06-11T08:03:01.488772-07:00,0.0,10.762097,10762.097 +10793,2025-06-11T08:03:12.252798-07:00,0.0,10.764026,10764.026 +10794,2025-06-11T08:03:23.006643-07:00,0.0,10.753845,10753.845 +10795,2025-06-11T08:03:33.766626-07:00,0.0,10.759983,10759.983 +10796,2025-06-11T08:03:44.519682-07:00,0.0,10.753056,10753.056 +10797,2025-06-11T08:03:55.278941-07:00,0.0,10.759259,10759.259 +10798,2025-06-11T08:04:06.047688-07:00,0.0,10.768747,10768.747 +10799,2025-06-11T08:04:16.797695-07:00,0.0,10.750007,10750.007 +10800,2025-06-11T08:04:27.566690-07:00,0.0,10.768995,10768.995 +10801,2025-06-11T08:04:38.322848-07:00,0.0,10.756158,10756.158 +10802,2025-06-11T08:04:49.072958-07:00,0.0,10.75011,10750.11 +10803,2025-06-11T08:04:59.834637-07:00,0.0,10.761679,10761.679 +10804,2025-06-11T08:05:10.598641-07:00,0.0,10.764004,10764.004 +10805,2025-06-11T08:05:21.357645-07:00,0.0,10.759004,10759.004 +10806,2025-06-11T08:05:32.111003-07:00,0.0,10.753358,10753.358 +10807,2025-06-11T08:05:42.871076-07:00,0.0,10.760073,10760.073 +10808,2025-06-11T08:05:53.634648-07:00,0.0,10.763572,10763.572 +10809,2025-06-11T08:06:04.387192-07:00,0.0,10.752544,10752.544 +10810,2025-06-11T08:06:05.406842-07:00,0.0,1.01965,1019.65 +10811,2025-06-11T08:06:15.142641-07:00,0.0,9.735799,9735.799 +10812,2025-06-11T08:06:25.907025-07:00,0.0,10.764384,10764.384 +10813,2025-06-11T08:06:36.660899-07:00,0.0,10.753874,10753.874 +10814,2025-06-11T08:06:47.420692-07:00,0.0,10.759793,10759.793 +10815,2025-06-11T08:06:58.181820-07:00,0.0,10.761128,10761.128 +10816,2025-06-11T08:07:08.936645-07:00,0.0,10.754825,10754.825 +10817,2025-06-11T08:07:19.691427-07:00,0.0,10.754782,10754.782 +10818,2025-06-11T08:07:30.456696-07:00,0.0,10.765269,10765.269 +10819,2025-06-11T08:07:41.209668-07:00,0.0,10.752972,10752.972 +10820,2025-06-11T08:07:51.966888-07:00,0.0,10.75722,10757.22 +10821,2025-06-11T08:08:02.724643-07:00,0.0,10.757755,10757.755 +10822,2025-06-11T08:08:13.482030-07:00,0.0,10.757387,10757.387 +10823,2025-06-11T08:08:24.244904-07:00,0.0,10.762874,10762.874 +10824,2025-06-11T08:08:35.002643-07:00,0.0,10.757739,10757.739 +10825,2025-06-11T08:08:45.758647-07:00,0.0,10.756004,10756.004 +10826,2025-06-11T08:08:56.517934-07:00,0.0,10.759287,10759.287 +10827,2025-06-11T08:09:07.272972-07:00,0.0,10.755038,10755.038 +10828,2025-06-11T08:09:18.032102-07:00,0.0,10.75913,10759.13 +10829,2025-06-11T08:09:28.790647-07:00,0.0,10.758545,10758.545 +10830,2025-06-11T08:09:39.548636-07:00,0.0,10.757989,10757.989 +10831,2025-06-11T08:09:50.298817-07:00,0.0,10.750181,10750.181 +10832,2025-06-11T08:10:01.054757-07:00,0.0,10.75594,10755.94 +10833,2025-06-11T08:10:11.812406-07:00,0.0,10.757649,10757.649 +10834,2025-06-11T08:10:22.578645-07:00,0.0,10.766239,10766.239 +10835,2025-06-11T08:10:33.337629-07:00,0.0,10.758984,10758.984 +10836,2025-06-11T08:10:44.093000-07:00,0.0,10.755371,10755.371 +10837,2025-06-11T08:10:54.856896-07:00,0.0,10.763896,10763.896 +10838,2025-06-11T08:11:05.617790-07:00,0.0,10.760894,10760.894 +10839,2025-06-11T08:11:16.370630-07:00,0.0,10.75284,10752.84 +10840,2025-06-11T08:11:27.134645-07:00,0.0,10.764015,10764.015 +10841,2025-06-11T08:11:37.900177-07:00,0.0,10.765532,10765.532 +10842,2025-06-11T08:11:48.663624-07:00,0.0,10.763447,10763.447 +10843,2025-06-11T08:11:59.416658-07:00,0.0,10.753034,10753.034 +10844,2025-06-11T08:12:10.173645-07:00,0.0,10.756987,10756.987 +10845,2025-06-11T08:12:20.936220-07:00,0.0,10.762575,10762.575 +10846,2025-06-11T08:12:31.703662-07:00,0.0,10.767442,10767.442 +10847,2025-06-11T08:12:42.456647-07:00,0.0,10.752985,10752.985 +10848,2025-06-11T08:12:53.222642-07:00,0.0,10.765995,10765.995 +10849,2025-06-11T08:13:03.974673-07:00,0.0,10.752031,10752.031 +10850,2025-06-11T08:13:14.740871-07:00,0.0,10.766198,10766.198 +10851,2025-06-11T08:13:25.498637-07:00,0.0,10.757766,10757.766 +10852,2025-06-11T08:13:36.256855-07:00,0.0,10.758218,10758.218 +10853,2025-06-11T08:13:47.016643-07:00,0.0,10.759788,10759.788 +10854,2025-06-11T08:13:57.778497-07:00,0.0,10.761854,10761.854 +10855,2025-06-11T08:14:08.527976-07:00,0.0,10.749479,10749.479 +10856,2025-06-11T08:14:19.286630-07:00,0.0,10.758654,10758.654 +10857,2025-06-11T08:14:30.046647-07:00,0.0,10.760017,10760.017 +10858,2025-06-11T08:14:40.805714-07:00,0.0,10.759067,10759.067 +10859,2025-06-11T08:14:51.560935-07:00,0.0,10.755221,10755.221 +10860,2025-06-11T08:15:02.328983-07:00,0.0,10.768048,10768.048 +10861,2025-06-11T08:15:13.092643-07:00,0.0,10.76366,10763.66 +10862,2025-06-11T08:15:23.849643-07:00,0.0,10.757,10757.0 +10863,2025-06-11T08:15:34.612325-07:00,0.0,10.762682,10762.682 +10864,2025-06-11T08:15:45.366645-07:00,0.0,10.75432,10754.32 +10865,2025-06-11T08:15:56.128634-07:00,0.0,10.761989,10761.989 +10866,2025-06-11T08:16:06.888915-07:00,0.0,10.760281,10760.281 +10867,2025-06-11T08:16:17.643783-07:00,0.0,10.754868,10754.868 +10868,2025-06-11T08:16:28.413646-07:00,0.0,10.769863,10769.863 +10869,2025-06-11T08:16:39.167645-07:00,0.0,10.753999,10753.999 +10870,2025-06-11T08:16:49.931643-07:00,0.0,10.763998,10763.998 +10871,2025-06-11T08:17:00.696993-07:00,0.0,10.76535,10765.35 +10872,2025-06-11T08:17:11.449758-07:00,0.0,10.752765,10752.765 +10873,2025-06-11T08:17:22.222640-07:00,0.0,10.772882,10772.882 +10874,2025-06-11T08:17:32.984006-07:00,0.0,10.761366,10761.366 +10875,2025-06-11T08:17:43.745646-07:00,0.0,10.76164,10761.64 +10876,2025-06-11T08:17:54.498834-07:00,0.0,10.753188,10753.188 +10877,2025-06-11T08:18:05.269648-07:00,0.0,10.770814,10770.814 +10878,2025-06-11T08:18:16.031138-07:00,0.0,10.76149,10761.49 +10879,2025-06-11T08:18:26.781987-07:00,0.0,10.750849,10750.849 +10880,2025-06-11T08:18:37.541975-07:00,0.0,10.759988,10759.988 +10881,2025-06-11T08:18:48.297925-07:00,0.0,10.75595,10755.95 +10882,2025-06-11T08:18:59.064956-07:00,0.0,10.767031,10767.031 +10883,2025-06-11T08:19:09.814401-07:00,0.0,10.749445,10749.445 +10884,2025-06-11T08:19:20.578647-07:00,0.0,10.764246,10764.246 +10885,2025-06-11T08:19:31.337646-07:00,0.0,10.758999,10758.999 +10886,2025-06-11T08:19:42.094120-07:00,0.0,10.756474,10756.474 +10887,2025-06-11T08:19:52.850646-07:00,0.0,10.756526,10756.526 +10888,2025-06-11T08:20:03.600830-07:00,0.0,10.750184,10750.184 +10889,2025-06-11T08:20:14.362147-07:00,0.0,10.761317,10761.317 +10890,2025-06-11T08:20:25.121032-07:00,0.0,10.758885,10758.885 +10891,2025-06-11T08:20:35.883905-07:00,0.0,10.762873,10762.873 +10892,2025-06-11T08:20:46.639065-07:00,0.0,10.75516,10755.16 +10893,2025-06-11T08:20:57.393687-07:00,0.0,10.754622,10754.622 +10894,2025-06-11T08:21:08.149868-07:00,0.0,10.756181,10756.181 +10895,2025-06-11T08:21:18.916622-07:00,0.0,10.766754,10766.754 +10896,2025-06-11T08:21:29.669643-07:00,0.0,10.753021,10753.021 +10897,2025-06-11T08:21:40.432694-07:00,0.0,10.763051,10763.051 +10898,2025-06-11T08:21:51.187857-07:00,0.0,10.755163,10755.163 +10899,2025-06-11T08:22:01.941976-07:00,0.0,10.754119,10754.119 +10900,2025-06-11T08:22:12.701675-07:00,0.0,10.759699,10759.699 +10901,2025-06-11T08:22:23.468978-07:00,0.0,10.767303,10767.303 +10902,2025-06-11T08:22:34.225743-07:00,0.0,10.756765,10756.765 +10903,2025-06-11T08:22:44.988635-07:00,0.0,10.762892,10762.892 +10904,2025-06-11T08:22:55.736745-07:00,0.0,10.74811,10748.11 +10905,2025-06-11T08:23:06.500645-07:00,0.0,10.7639,10763.9 +10906,2025-06-11T08:23:17.254643-07:00,0.0,10.753998,10753.998 +10907,2025-06-11T08:23:28.014345-07:00,0.0,10.759702,10759.702 +10908,2025-06-11T08:23:38.776997-07:00,0.0,10.762652,10762.652 +10909,2025-06-11T08:23:49.540930-07:00,0.0,10.763933,10763.933 +10910,2025-06-11T08:24:00.293678-07:00,0.0,10.752748,10752.748 +10911,2025-06-11T08:24:11.053686-07:00,0.0,10.760008,10760.008 +10912,2025-06-11T08:24:21.806945-07:00,0.0,10.753259,10753.259 +10913,2025-06-11T08:24:32.574790-07:00,0.0,10.767845,10767.845 +10914,2025-06-11T08:24:43.334723-07:00,0.0,10.759933,10759.933 +10915,2025-06-11T08:24:54.094674-07:00,0.0,10.759951,10759.951 +10916,2025-06-11T08:25:04.848894-07:00,0.0,10.75422,10754.22 +10917,2025-06-11T08:25:15.612642-07:00,0.0,10.763748,10763.748 +10918,2025-06-11T08:25:26.362719-07:00,0.0,10.750077,10750.077 +10919,2025-06-11T08:25:37.123646-07:00,0.0,10.760927,10760.927 +10920,2025-06-11T08:25:47.884852-07:00,0.0,10.761206,10761.206 +10921,2025-06-11T08:25:58.641932-07:00,0.0,10.75708,10757.08 +10922,2025-06-11T08:26:09.396658-07:00,0.0,10.754726,10754.726 +10923,2025-06-11T08:26:20.160891-07:00,0.0,10.764233,10764.233 +10924,2025-06-11T08:26:30.922645-07:00,0.0,10.761754,10761.754 +10925,2025-06-11T08:26:41.679874-07:00,0.0,10.757229,10757.229 +10926,2025-06-11T08:26:52.441997-07:00,0.0,10.762123,10762.123 +10927,2025-06-11T08:27:03.197627-07:00,0.0,10.75563,10755.63 +10928,2025-06-11T08:27:13.961753-07:00,0.0,10.764126,10764.126 +10929,2025-06-11T08:27:24.715680-07:00,0.0,10.753927,10753.927 +10930,2025-06-11T08:27:35.478892-07:00,0.0,10.763212,10763.212 +10931,2025-06-11T08:27:46.232644-07:00,0.0,10.753752,10753.752 +10932,2025-06-11T08:27:56.987674-07:00,0.0,10.75503,10755.03 +10933,2025-06-11T08:28:07.747640-07:00,0.0,10.759966,10759.966 +10934,2025-06-11T08:28:18.506032-07:00,0.0,10.758392,10758.392 +10935,2025-06-11T08:28:29.269057-07:00,0.0,10.763025,10763.025 +10936,2025-06-11T08:28:40.031214-07:00,0.0,10.762157,10762.157 +10937,2025-06-11T08:28:50.789694-07:00,0.0,10.75848,10758.48 +10938,2025-06-11T08:29:01.553662-07:00,0.0,10.763968,10763.968 +10939,2025-06-11T08:29:12.314791-07:00,0.0,10.761129,10761.129 +10940,2025-06-11T08:29:23.072349-07:00,0.0,10.757558,10757.558 +10941,2025-06-11T08:29:33.829694-07:00,0.0,10.757345,10757.345 +10942,2025-06-11T08:29:44.592654-07:00,0.0,10.76296,10762.96 +10943,2025-06-11T08:29:55.360797-07:00,0.0,10.768143,10768.143 +10944,2025-06-11T08:30:06.114864-07:00,0.0,10.754067,10754.067 +10945,2025-06-11T08:30:16.887719-07:00,0.0,10.772855,10772.855 +10946,2025-06-11T08:30:27.642924-07:00,0.0,10.755205,10755.205 +10947,2025-06-11T08:30:38.403643-07:00,0.0,10.760719,10760.719 +10948,2025-06-11T08:30:49.171645-07:00,0.0,10.768002,10768.002 +10949,2025-06-11T08:30:59.926861-07:00,0.0,10.755216,10755.216 +10950,2025-06-11T08:31:10.687878-07:00,0.0,10.761017,10761.017 +10951,2025-06-11T08:31:21.450669-07:00,0.0,10.762791,10762.791 +10952,2025-06-11T08:31:32.208900-07:00,0.0,10.758231,10758.231 +10953,2025-06-11T08:31:42.976780-07:00,0.0,10.76788,10767.88 +10954,2025-06-11T08:31:53.734956-07:00,0.0,10.758176,10758.176 +10955,2025-06-11T08:32:04.497647-07:00,0.0,10.762691,10762.691 +10956,2025-06-11T08:32:15.260630-07:00,0.0,10.762983,10762.983 +10957,2025-06-11T08:32:26.025303-07:00,0.0,10.764673,10764.673 +10958,2025-06-11T08:32:36.780065-07:00,0.0,10.754762,10754.762 +10959,2025-06-11T08:32:47.545646-07:00,0.0,10.765581,10765.581 +10960,2025-06-11T08:32:58.306061-07:00,0.0,10.760415,10760.415 +10961,2025-06-11T08:33:09.065935-07:00,0.0,10.759874,10759.874 +10962,2025-06-11T08:33:19.829972-07:00,0.0,10.764037,10764.037 +10963,2025-06-11T08:33:30.591643-07:00,0.0,10.761671,10761.671 +10964,2025-06-11T08:33:41.349782-07:00,0.0,10.758139,10758.139 +10965,2025-06-11T08:33:52.113720-07:00,0.0,10.763938,10763.938 +10966,2025-06-11T08:34:02.871629-07:00,0.0,10.757909,10757.909 +10967,2025-06-11T08:34:13.629650-07:00,0.0,10.758021,10758.021 +10968,2025-06-11T08:34:24.393919-07:00,0.0,10.764269,10764.269 +10969,2025-06-11T08:34:35.155752-07:00,0.0,10.761833,10761.833 +10970,2025-06-11T08:34:45.915143-07:00,0.0,10.759391,10759.391 +10971,2025-06-11T08:34:56.678677-07:00,0.0,10.763534,10763.534 +10972,2025-06-11T08:35:07.428842-07:00,0.0,10.750165,10750.165 +10973,2025-06-11T08:35:18.199286-07:00,0.0,10.770444,10770.444 +10974,2025-06-11T08:35:28.953006-07:00,0.0,10.75372,10753.72 +10975,2025-06-11T08:35:39.720642-07:00,0.0,10.767636,10767.636 +10976,2025-06-11T08:35:50.484964-07:00,0.0,10.764322,10764.322 +10977,2025-06-11T08:36:01.241694-07:00,0.0,10.75673,10756.73 +10978,2025-06-11T08:36:11.999632-07:00,0.0,10.757938,10757.938 +10979,2025-06-11T08:36:22.763637-07:00,0.0,10.764005,10764.005 +10980,2025-06-11T08:36:33.519622-07:00,0.0,10.755985,10755.985 +10981,2025-06-11T08:36:44.277794-07:00,0.0,10.758172,10758.172 +10982,2025-06-11T08:36:55.037700-07:00,0.0,10.759906,10759.906 +10983,2025-06-11T08:37:05.802648-07:00,0.0,10.764948,10764.948 +10984,2025-06-11T08:37:16.554806-07:00,0.0,10.752158,10752.158 +10985,2025-06-11T08:37:27.316914-07:00,0.0,10.762108,10762.108 +10986,2025-06-11T08:37:38.072803-07:00,0.0,10.755889,10755.889 +10987,2025-06-11T08:37:48.832686-07:00,0.0,10.759883,10759.883 +10988,2025-06-11T08:37:59.594645-07:00,0.0,10.761959,10761.959 +10989,2025-06-11T08:38:10.357478-07:00,0.0,10.762833,10762.833 +10990,2025-06-11T08:38:21.105975-07:00,0.0,10.748497,10748.497 +10991,2025-06-11T08:38:31.874700-07:00,0.0,10.768725,10768.725 +10992,2025-06-11T08:38:42.622640-07:00,0.0,10.74794,10747.94 +10993,2025-06-11T08:38:53.390076-07:00,0.0,10.767436,10767.436 +10994,2025-06-11T08:39:04.146197-07:00,0.0,10.756121,10756.121 +10995,2025-06-11T08:39:14.896987-07:00,0.0,10.75079,10750.79 +10996,2025-06-11T08:39:25.659913-07:00,0.0,10.762926,10762.926 +10997,2025-06-11T08:39:36.417622-07:00,0.0,10.757709,10757.709 +10998,2025-06-11T08:39:47.182863-07:00,0.0,10.765241,10765.241 +10999,2025-06-11T08:39:57.938370-07:00,0.0,10.755507,10755.507 +11000,2025-06-11T08:40:08.696036-07:00,0.0,10.757666,10757.666 +11001,2025-06-11T08:40:19.453649-07:00,0.0,10.757613,10757.613 +11002,2025-06-11T08:40:30.212074-07:00,0.0,10.758425,10758.425 +11003,2025-06-11T08:40:40.975718-07:00,0.0,10.763644,10763.644 +11004,2025-06-11T08:40:51.738654-07:00,0.0,10.762936,10762.936 +11005,2025-06-11T08:41:02.491607-07:00,0.0,10.752953,10752.953 +11006,2025-06-11T08:41:13.258784-07:00,0.0,10.767177,10767.177 +11007,2025-06-11T08:41:24.022161-07:00,0.0,10.763377,10763.377 +11008,2025-06-11T08:41:34.779041-07:00,0.0,10.75688,10756.88 +11009,2025-06-11T08:41:45.539773-07:00,0.0,10.760732,10760.732 +11010,2025-06-11T08:41:56.292759-07:00,0.0,10.752986,10752.986 +11011,2025-06-11T08:42:07.057033-07:00,0.0,10.764274,10764.274 +11012,2025-06-11T08:42:17.817917-07:00,0.0,10.760884,10760.884 +11013,2025-06-11T08:42:28.578635-07:00,0.0,10.760718,10760.718 +11014,2025-06-11T08:42:39.335768-07:00,0.0,10.757133,10757.133 +11015,2025-06-11T08:42:50.094857-07:00,0.0,10.759089,10759.089 +11016,2025-06-11T08:43:00.860296-07:00,0.0,10.765439,10765.439 +11017,2025-06-11T08:43:11.618908-07:00,0.0,10.758612,10758.612 +11018,2025-06-11T08:43:22.375654-07:00,0.0,10.756746,10756.746 +11019,2025-06-11T08:43:33.132261-07:00,0.0,10.756607,10756.607 +11020,2025-06-11T08:43:43.890666-07:00,0.0,10.758405,10758.405 +11021,2025-06-11T08:43:54.658617-07:00,0.0,10.767951,10767.951 +11022,2025-06-11T08:44:05.416884-07:00,0.0,10.758267,10758.267 +11023,2025-06-11T08:44:16.167698-07:00,0.0,10.750814,10750.814 +11024,2025-06-11T08:44:26.925643-07:00,0.0,10.757945,10757.945 +11025,2025-06-11T08:44:37.686773-07:00,0.0,10.76113,10761.13 +11026,2025-06-11T08:44:48.440972-07:00,0.0,10.754199,10754.199 +11027,2025-06-11T08:44:59.203638-07:00,0.0,10.762666,10762.666 +11028,2025-06-11T08:45:09.958618-07:00,0.0,10.75498,10754.98 +11029,2025-06-11T08:45:20.712234-07:00,0.0,10.753616,10753.616 +11030,2025-06-11T08:45:31.476237-07:00,0.0,10.764003,10764.003 +11031,2025-06-11T08:45:42.224874-07:00,0.0,10.748637,10748.637 +11032,2025-06-11T08:45:52.984647-07:00,0.0,10.759773,10759.773 +11033,2025-06-11T08:46:03.742770-07:00,0.0,10.758123,10758.123 +11034,2025-06-11T08:46:14.502854-07:00,0.0,10.760084,10760.084 +11035,2025-06-11T08:46:25.266520-07:00,0.0,10.763666,10763.666 +11036,2025-06-11T08:46:36.020759-07:00,0.0,10.754239,10754.239 +11037,2025-06-11T08:46:46.772059-07:00,0.0,10.7513,10751.3 +11038,2025-06-11T08:46:57.533651-07:00,0.0,10.761592,10761.592 +11039,2025-06-11T08:47:08.291980-07:00,0.0,10.758329,10758.329 +11040,2025-06-11T08:47:19.051991-07:00,0.0,10.760011,10760.011 +11041,2025-06-11T08:47:29.809878-07:00,0.0,10.757887,10757.887 +11042,2025-06-11T08:47:40.570902-07:00,0.0,10.761024,10761.024 +11043,2025-06-11T08:47:51.327734-07:00,0.0,10.756832,10756.832 +11044,2025-06-11T08:48:02.084645-07:00,0.0,10.756911,10756.911 +11045,2025-06-11T08:48:12.842945-07:00,0.0,10.7583,10758.3 +11046,2025-06-11T08:48:23.610754-07:00,0.0,10.767809,10767.809 +11047,2025-06-11T08:48:34.362696-07:00,0.0,10.751942,10751.942 +11048,2025-06-11T08:48:45.128637-07:00,0.0,10.765941,10765.941 +11049,2025-06-11T08:48:55.883987-07:00,0.0,10.75535,10755.35 +11050,2025-06-11T08:49:06.638905-07:00,0.0,10.754918,10754.918 +11051,2025-06-11T08:49:17.398904-07:00,0.0,10.759999,10759.999 +11052,2025-06-11T08:49:28.160696-07:00,0.0,10.761792,10761.792 +11053,2025-06-11T08:49:38.930502-07:00,0.0,10.769806,10769.806 +11054,2025-06-11T08:49:49.693251-07:00,0.0,10.762749,10762.749 +11055,2025-06-11T08:50:00.450612-07:00,0.0,10.757361,10757.361 +11056,2025-06-11T08:50:11.202870-07:00,0.0,10.752258,10752.258 +11057,2025-06-11T08:50:21.971074-07:00,0.0,10.768204,10768.204 +11058,2025-06-11T08:50:32.725930-07:00,0.0,10.754856,10754.856 +11059,2025-06-11T08:50:43.483633-07:00,0.0,10.757703,10757.703 +11060,2025-06-11T08:50:54.249846-07:00,0.0,10.766213,10766.213 +11061,2025-06-11T08:51:05.008114-07:00,0.0,10.758268,10758.268 +11062,2025-06-11T08:51:15.762593-07:00,0.0,10.754479,10754.479 +11063,2025-06-11T08:51:26.529404-07:00,0.0,10.766811,10766.811 +11064,2025-06-11T08:51:37.285747-07:00,0.0,10.756343,10756.343 +11065,2025-06-11T08:51:48.045820-07:00,0.0,10.760073,10760.073 +11066,2025-06-11T08:51:58.806978-07:00,0.0,10.761158,10761.158 +11067,2025-06-11T08:52:09.567939-07:00,0.0,10.760961,10760.961 +11068,2025-06-11T08:52:20.349338-07:00,0.0,10.781399,10781.399 +11069,2025-06-11T08:52:31.104319-07:00,0.0,10.754981,10754.981 +11070,2025-06-11T08:52:41.861734-07:00,0.0,10.757415,10757.415 +11071,2025-06-11T08:52:52.612602-07:00,0.0,10.750868,10750.868 +11072,2025-06-11T08:53:03.378006-07:00,0.0,10.765404,10765.404 +11073,2025-06-11T08:53:14.136318-07:00,0.0,10.758312,10758.312 +11074,2025-06-11T08:53:24.901467-07:00,0.0,10.765149,10765.149 +11075,2025-06-11T08:53:35.655350-07:00,0.0,10.753883,10753.883 +11076,2025-06-11T08:53:46.413572-07:00,0.0,10.758222,10758.222 +11077,2025-06-11T08:53:57.176365-07:00,0.0,10.762793,10762.793 +11078,2025-06-11T08:54:07.942532-07:00,0.0,10.766167,10766.167 +11079,2025-06-11T08:54:18.705569-07:00,0.0,10.763037,10763.037 +11080,2025-06-11T08:54:29.467336-07:00,0.0,10.761767,10761.767 +11081,2025-06-11T08:54:40.218868-07:00,0.0,10.751532,10751.532 +11082,2025-06-11T08:54:50.982320-07:00,0.0,10.763452,10763.452 +11083,2025-06-11T08:55:01.741907-07:00,0.0,10.759587,10759.587 +11084,2025-06-11T08:55:12.504566-07:00,0.0,10.762659,10762.659 +11085,2025-06-11T08:55:23.261485-07:00,0.0,10.756919,10756.919 +11086,2025-06-11T08:55:34.022297-07:00,0.0,10.760812,10760.812 +11087,2025-06-11T08:55:44.776351-07:00,0.0,10.754054,10754.054 +11088,2025-06-11T08:55:55.546651-07:00,0.0,10.7703,10770.3 +11089,2025-06-11T08:56:06.302465-07:00,0.0,10.755814,10755.814 +11090,2025-06-11T08:56:17.063555-07:00,0.0,10.76109,10761.09 +11091,2025-06-11T08:56:27.834614-07:00,0.0,10.771059,10771.059 +11092,2025-06-11T08:56:38.593320-07:00,0.0,10.758706,10758.706 +11093,2025-06-11T08:56:49.347789-07:00,0.0,10.754469,10754.469 +11094,2025-06-11T08:57:00.109994-07:00,0.0,10.762205,10762.205 +11095,2025-06-11T08:57:10.872822-07:00,0.0,10.762828,10762.828 +11096,2025-06-11T08:57:21.634880-07:00,0.0,10.762058,10762.058 +11097,2025-06-11T08:57:32.390583-07:00,0.0,10.755703,10755.703 +11098,2025-06-11T08:57:43.142440-07:00,0.0,10.751857,10751.857 +11099,2025-06-11T08:57:53.908664-07:00,0.0,10.766224,10766.224 +11100,2025-06-11T08:58:04.662074-07:00,0.0,10.75341,10753.41 +11101,2025-06-11T08:58:15.421320-07:00,0.0,10.759246,10759.246 +11102,2025-06-11T08:58:26.173715-07:00,0.0,10.752395,10752.395 +11103,2025-06-11T08:58:36.933297-07:00,0.0,10.759582,10759.582 +11104,2025-06-11T08:58:47.695312-07:00,0.0,10.762015,10762.015 +11105,2025-06-11T08:58:58.453628-07:00,0.0,10.758316,10758.316 +11106,2025-06-11T08:59:09.209206-07:00,0.0,10.755578,10755.578 +11107,2025-06-11T08:59:19.969369-07:00,0.0,10.760163,10760.163 +11108,2025-06-11T08:59:30.724320-07:00,0.0,10.754951,10754.951 +11109,2025-06-11T08:59:41.481469-07:00,0.0,10.757149,10757.149 +11110,2025-06-11T08:59:52.245865-07:00,0.0,10.764396,10764.396 +11111,2025-06-11T09:00:02.995599-07:00,0.0,10.749734,10749.734 +11112,2025-06-11T09:00:13.752549-07:00,0.0,10.75695,10756.95 +11113,2025-06-11T09:00:24.510320-07:00,0.0,10.757771,10757.771 +11114,2025-06-11T09:00:35.271304-07:00,0.0,10.760984,10760.984 +11115,2025-06-11T09:00:46.034620-07:00,0.0,10.763316,10763.316 +11116,2025-06-11T09:00:56.790675-07:00,0.0,10.756055,10756.055 +11117,2025-06-11T09:01:07.551318-07:00,0.0,10.760643,10760.643 +11118,2025-06-11T09:01:18.303296-07:00,0.0,10.751978,10751.978 +11119,2025-06-11T09:01:29.068379-07:00,0.0,10.765083,10765.083 +11120,2025-06-11T09:01:39.822628-07:00,0.0,10.754249,10754.249 +11121,2025-06-11T09:01:50.585313-07:00,0.0,10.762685,10762.685 +11122,2025-06-11T09:02:01.339308-07:00,0.0,10.753995,10753.995 +11123,2025-06-11T09:02:12.094610-07:00,0.0,10.755302,10755.302 +11124,2025-06-11T09:02:22.847562-07:00,0.0,10.752952,10752.952 +11125,2025-06-11T09:02:33.612903-07:00,0.0,10.765341,10765.341 +11126,2025-06-11T09:02:44.368960-07:00,0.0,10.756057,10756.057 +11127,2025-06-11T09:02:55.130931-07:00,0.0,10.761971,10761.971 +11128,2025-06-11T09:03:05.882520-07:00,0.0,10.751589,10751.589 +11129,2025-06-11T09:03:16.636316-07:00,0.0,10.753796,10753.796 +11130,2025-06-11T09:03:27.396350-07:00,0.0,10.760034,10760.034 +11131,2025-06-11T09:03:38.155697-07:00,0.0,10.759347,10759.347 +11132,2025-06-11T09:03:48.913597-07:00,0.0,10.7579,10757.9 +11133,2025-06-11T09:03:59.671429-07:00,0.0,10.757832,10757.832 +11134,2025-06-11T09:04:10.428559-07:00,0.0,10.75713,10757.13 +11135,2025-06-11T09:04:21.181993-07:00,0.0,10.753434,10753.434 +11136,2025-06-11T09:04:31.940233-07:00,0.0,10.75824,10758.24 +11137,2025-06-11T09:04:42.697744-07:00,0.0,10.757511,10757.511 +11138,2025-06-11T09:04:53.455036-07:00,0.0,10.757292,10757.292 +11139,2025-06-11T09:05:04.210549-07:00,0.0,10.755513,10755.513 +11140,2025-06-11T09:05:14.975825-07:00,0.0,10.765276,10765.276 +11141,2025-06-11T09:05:25.734595-07:00,0.0,10.75877,10758.77 diff --git a/time_differences_light_510.csv b/time_differences_light_510.csv new file mode 100644 index 0000000..fa75fb5 --- /dev/null +++ b/time_differences_light_510.csv @@ -0,0 +1,39572 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-03-07T00:00:06.677824-08:00,1699.0,0,0 +1,2025-03-07T00:00:17.507460-08:00,1718.0,10.829636,10829.636 +2,2025-03-07T00:00:28.330820-08:00,1710.0,10.82336,10823.36 +3,2025-03-07T00:00:39.161725-08:00,1697.0,10.830905,10830.905 +4,2025-03-07T00:00:49.982685-08:00,1723.0,10.82096,10820.96 +5,2025-03-07T00:01:00.815958-08:00,1633.0,10.833273,10833.273 +6,2025-03-07T00:01:11.635480-08:00,1718.0,10.819522,10819.522 +7,2025-03-07T00:01:22.463513-08:00,1715.0,10.828033,10828.033 +8,2025-03-07T00:01:33.286556-08:00,1721.0,10.823043,10823.043 +9,2025-03-07T00:01:44.118814-08:00,1632.0,10.832258,10832.258 +10,2025-03-07T00:01:54.949714-08:00,1637.0,10.8309,10830.9 +11,2025-03-07T00:02:05.778729-08:00,1673.0,10.829015,10829.015 +12,2025-03-07T00:02:16.598666-08:00,1638.0,10.819937,10819.937 +13,2025-03-07T00:02:27.430949-08:00,1665.0,10.832283,10832.283 +14,2025-03-07T00:02:38.261540-08:00,1721.0,10.830591,10830.591 +15,2025-03-07T00:02:49.090717-08:00,1633.0,10.829177,10829.177 +16,2025-03-07T00:02:59.924526-08:00,1662.0,10.833809,10833.809 +17,2025-03-07T00:03:10.742752-08:00,1674.0,10.818226,10818.226 +18,2025-03-07T00:03:21.575472-08:00,1674.0,10.83272,10832.72 +19,2025-03-07T00:03:32.391513-08:00,1695.0,10.816041,10816.041 +20,2025-03-07T00:03:43.222531-08:00,1682.0,10.831018,10831.018 +21,2025-03-07T00:03:54.047477-08:00,1638.0,10.824946,10824.946 +22,2025-03-07T00:04:04.862826-08:00,1725.0,10.815349,10815.349 +23,2025-03-07T00:04:15.689721-08:00,1648.0,10.826895,10826.895 +24,2025-03-07T00:04:26.514916-08:00,1715.0,10.825195,10825.195 +25,2025-03-07T00:04:37.345477-08:00,1710.0,10.830561,10830.561 +26,2025-03-07T00:04:48.173880-08:00,1648.0,10.828403,10828.403 +27,2025-03-07T00:04:58.999477-08:00,1685.0,10.825597,10825.597 +28,2025-03-07T00:05:09.828432-08:00,1693.0,10.828955,10828.955 +29,2025-03-07T00:05:20.656504-08:00,1703.0,10.828072,10828.072 +30,2025-03-07T00:05:31.537275-08:00,1665.0,10.880771,10880.771 +31,2025-03-07T00:05:42.360711-08:00,1675.0,10.823436,10823.436 +32,2025-03-07T00:05:53.198511-08:00,1643.0,10.8378,10837.8 +33,2025-03-07T00:06:04.019728-08:00,1696.0,10.821217,10821.217 +34,2025-03-07T00:06:14.849283-08:00,1654.0,10.829555,10829.555 +35,2025-03-07T00:06:25.688298-08:00,1713.0,10.839015,10839.015 +36,2025-03-07T00:06:36.520244-08:00,1722.0,10.831946,10831.946 +37,2025-03-07T00:06:47.346266-08:00,1656.0,10.826022,10826.022 +38,2025-03-07T00:06:58.172587-08:00,1717.0,10.826321,10826.321 +39,2025-03-07T00:07:09.004284-08:00,1642.0,10.831697,10831.697 +40,2025-03-07T00:07:19.838608-08:00,1664.0,10.834324,10834.324 +41,2025-03-07T00:07:30.678529-08:00,1707.0,10.839921,10839.921 +42,2025-03-07T00:07:41.510648-08:00,1715.0,10.832119,10832.119 +43,2025-03-07T00:07:52.331735-08:00,1682.0,10.821087,10821.087 +44,2025-03-07T00:08:03.162610-08:00,1703.0,10.830875,10830.875 +45,2025-03-07T00:08:13.989278-08:00,1719.0,10.826668,10826.668 +46,2025-03-07T00:08:24.826289-08:00,1665.0,10.837011,10837.011 +47,2025-03-07T00:08:35.656548-08:00,1637.0,10.830259,10830.259 +48,2025-03-07T00:08:46.478673-08:00,1659.0,10.822125,10822.125 +49,2025-03-07T00:08:57.315616-08:00,1675.0,10.836943,10836.943 +50,2025-03-07T00:09:08.137292-08:00,1675.0,10.821676,10821.676 +51,2025-03-07T00:09:18.972601-08:00,1706.0,10.835309,10835.309 +52,2025-03-07T00:09:29.804264-08:00,1675.0,10.831663,10831.663 +53,2025-03-07T00:09:40.625287-08:00,1669.0,10.821023,10821.023 +54,2025-03-07T00:09:51.457282-08:00,1648.0,10.831995,10831.995 +55,2025-03-07T00:10:02.280111-08:00,1702.0,10.822829,10822.829 +56,2025-03-07T00:10:13.111643-08:00,1639.0,10.831532,10831.532 +57,2025-03-07T00:10:23.935288-08:00,1713.0,10.823645,10823.645 +58,2025-03-07T00:10:34.773274-08:00,1711.0,10.837986,10837.986 +59,2025-03-07T00:10:45.598284-08:00,1717.0,10.82501,10825.01 +60,2025-03-07T00:10:56.425630-08:00,1680.0,10.827346,10827.346 +61,2025-03-07T00:11:07.246354-08:00,1697.0,10.820724,10820.724 +62,2025-03-07T00:11:18.077562-08:00,1718.0,10.831208,10831.208 +63,2025-03-07T00:11:28.903403-08:00,1695.0,10.825841,10825.841 +64,2025-03-07T00:11:39.735606-08:00,1664.0,10.832203,10832.203 +65,2025-03-07T00:11:50.559286-08:00,1680.0,10.82368,10823.68 +66,2025-03-07T00:12:01.387772-08:00,1712.0,10.828486,10828.486 +67,2025-03-07T00:12:12.212361-08:00,1670.0,10.824589,10824.589 +68,2025-03-07T00:12:23.038282-08:00,1713.0,10.825921,10825.921 +69,2025-03-07T00:12:33.871504-08:00,1691.0,10.833222,10833.222 +70,2025-03-07T00:12:44.698462-08:00,1671.0,10.826958,10826.958 +71,2025-03-07T00:12:55.523586-08:00,1678.0,10.825124,10825.124 +72,2025-03-07T00:13:06.360209-08:00,1715.0,10.836623,10836.623 +73,2025-03-07T00:13:17.179284-08:00,1649.0,10.819075,10819.075 +74,2025-03-07T00:13:28.012949-08:00,1699.0,10.833665,10833.665 +75,2025-03-07T00:13:38.845289-08:00,1692.0,10.83234,10832.34 +76,2025-03-07T00:13:49.676892-08:00,1716.0,10.831603,10831.603 +77,2025-03-07T00:14:00.506919-08:00,1695.0,10.830027,10830.027 +78,2025-03-07T00:14:11.334844-08:00,1679.0,10.827925,10827.925 +79,2025-03-07T00:14:22.153890-08:00,1652.0,10.819046,10819.046 +80,2025-03-07T00:14:32.984320-08:00,1667.0,10.83043,10830.43 +81,2025-03-07T00:14:43.813287-08:00,1719.0,10.828967,10828.967 +82,2025-03-07T00:14:54.640289-08:00,1715.0,10.827002,10827.002 +83,2025-03-07T00:15:05.468686-08:00,1713.0,10.828397,10828.397 +84,2025-03-07T00:15:16.300333-08:00,1636.0,10.831647,10831.647 +85,2025-03-07T00:15:27.129434-08:00,1710.0,10.829101,10829.101 +86,2025-03-07T00:15:37.955283-08:00,1646.0,10.825849,10825.849 +87,2025-03-07T00:15:48.785283-08:00,1669.0,10.83,10830.0 +88,2025-03-07T00:15:59.610915-08:00,1721.0,10.825632,10825.632 +89,2025-03-07T00:16:10.442428-08:00,1717.0,10.831513,10831.513 +90,2025-03-07T00:16:21.268277-08:00,1699.0,10.825849,10825.849 +91,2025-03-07T00:16:32.094637-08:00,1718.0,10.82636,10826.36 +92,2025-03-07T00:16:42.925808-08:00,1718.0,10.831171,10831.171 +93,2025-03-07T00:16:53.759343-08:00,1675.0,10.833535,10833.535 +94,2025-03-07T00:17:04.583279-08:00,1658.0,10.823936,10823.936 +95,2025-03-07T00:17:15.415355-08:00,1671.0,10.832076,10832.076 +96,2025-03-07T00:17:26.246306-08:00,1719.0,10.830951,10830.951 +97,2025-03-07T00:17:37.068802-08:00,1664.0,10.822496,10822.496 +98,2025-03-07T00:17:47.893251-08:00,1638.0,10.824449,10824.449 +99,2025-03-07T00:17:58.719937-08:00,1674.0,10.826686,10826.686 +100,2025-03-07T00:18:07.049556-08:00,1719.0,8.329619,8329.619 +101,2025-03-07T00:18:09.555286-08:00,1723.0,2.50573,2505.73 +102,2025-03-07T00:18:20.377622-08:00,1648.0,10.822336,10822.336 +103,2025-03-07T00:18:31.203325-08:00,1678.0,10.825703,10825.703 +104,2025-03-07T00:18:42.040938-08:00,1675.0,10.837613,10837.613 +105,2025-03-07T00:18:52.869413-08:00,1638.0,10.828475,10828.475 +106,2025-03-07T00:19:03.692713-08:00,1719.0,10.8233,10823.3 +107,2025-03-07T00:19:14.522571-08:00,1722.0,10.829858,10829.858 +108,2025-03-07T00:19:25.351193-08:00,1673.0,10.828622,10828.622 +109,2025-03-07T00:19:36.187860-08:00,1719.0,10.836667,10836.667 +110,2025-03-07T00:19:47.009775-08:00,1648.0,10.821915,10821.915 +111,2025-03-07T00:19:57.842286-08:00,1712.0,10.832511,10832.511 +112,2025-03-07T00:20:08.667521-08:00,1690.0,10.825235,10825.235 +113,2025-03-07T00:20:19.503285-08:00,1717.0,10.835764,10835.764 +114,2025-03-07T00:20:30.325051-08:00,1702.0,10.821766,10821.766 +115,2025-03-07T00:20:41.156526-08:00,1723.0,10.831475,10831.475 +116,2025-03-07T00:20:51.986694-08:00,1717.0,10.830168,10830.168 +117,2025-03-07T00:21:02.818865-08:00,1669.0,10.832171,10832.171 +118,2025-03-07T00:21:13.635556-08:00,1680.0,10.816691,10816.691 +119,2025-03-07T00:21:24.459314-08:00,1663.0,10.823758,10823.758 +120,2025-03-07T00:21:35.292011-08:00,1621.0,10.832697,10832.697 +121,2025-03-07T00:21:46.111514-08:00,1721.0,10.819503,10819.503 +122,2025-03-07T00:21:56.950548-08:00,1720.0,10.839034,10839.034 +123,2025-03-07T00:22:07.777727-08:00,1712.0,10.827179,10827.179 +124,2025-03-07T00:22:18.607689-08:00,1638.0,10.829962,10829.962 +125,2025-03-07T00:22:29.438432-08:00,1693.0,10.830743,10830.743 +126,2025-03-07T00:22:40.258459-08:00,1709.0,10.820027,10820.027 +127,2025-03-07T00:22:51.091343-08:00,1662.0,10.832884,10832.884 +128,2025-03-07T00:23:01.917289-08:00,1630.0,10.825946,10825.946 +129,2025-03-07T00:23:12.741853-08:00,1684.0,10.824564,10824.564 +130,2025-03-07T00:23:23.564141-08:00,1719.0,10.822288,10822.288 +131,2025-03-07T00:23:34.403620-08:00,1681.0,10.839479,10839.479 +132,2025-03-07T00:23:45.221285-08:00,1719.0,10.817665,10817.665 +133,2025-03-07T00:23:56.046628-08:00,1663.0,10.825343,10825.343 +134,2025-03-07T00:24:06.879289-08:00,1719.0,10.832661,10832.661 +135,2025-03-07T00:24:17.694602-08:00,1627.0,10.815313,10815.313 +136,2025-03-07T00:24:28.526732-08:00,1661.0,10.83213,10832.13 +137,2025-03-07T00:24:39.341426-08:00,1712.0,10.814694,10814.694 +138,2025-03-07T00:24:50.166273-08:00,1699.0,10.824847,10824.847 +139,2025-03-07T00:25:00.991496-08:00,1721.0,10.825223,10825.223 +140,2025-03-07T00:25:11.818716-08:00,1694.0,10.82722,10827.22 +141,2025-03-07T00:25:22.649266-08:00,1712.0,10.83055,10830.55 +142,2025-03-07T00:25:33.476110-08:00,1637.0,10.826844,10826.844 +143,2025-03-07T00:25:44.295287-08:00,1718.0,10.819177,10819.177 +144,2025-03-07T00:25:55.115289-08:00,1680.0,10.820002,10820.002 +145,2025-03-07T00:26:05.944169-08:00,1648.0,10.82888,10828.88 +146,2025-03-07T00:26:16.778258-08:00,1637.0,10.834089,10834.089 +147,2025-03-07T00:26:27.596605-08:00,1705.0,10.818347,10818.347 +148,2025-03-07T00:26:38.428360-08:00,1636.0,10.831755,10831.755 +149,2025-03-07T00:26:49.252803-08:00,1715.0,10.824443,10824.443 +150,2025-03-07T00:27:00.085585-08:00,1712.0,10.832782,10832.782 +151,2025-03-07T00:27:10.910492-08:00,1680.0,10.824907,10824.907 +152,2025-03-07T00:27:21.742529-08:00,1719.0,10.832037,10832.037 +153,2025-03-07T00:27:32.563262-08:00,1715.0,10.820733,10820.733 +154,2025-03-07T00:27:43.388338-08:00,1677.0,10.825076,10825.076 +155,2025-03-07T00:27:54.214438-08:00,1675.0,10.8261,10826.1 +156,2025-03-07T00:28:05.048528-08:00,1689.0,10.83409,10834.09 +157,2025-03-07T00:28:15.868516-08:00,1712.0,10.819988,10819.988 +158,2025-03-07T00:28:26.699299-08:00,1655.0,10.830783,10830.783 +159,2025-03-07T00:28:37.519278-08:00,1631.0,10.819979,10819.979 +160,2025-03-07T00:28:48.341416-08:00,1665.0,10.822138,10822.138 +161,2025-03-07T00:28:59.175616-08:00,1686.0,10.8342,10834.2 +162,2025-03-07T00:29:09.996532-08:00,1712.0,10.820916,10820.916 +163,2025-03-07T00:29:20.827615-08:00,1644.0,10.831083,10831.083 +164,2025-03-07T00:29:31.644503-08:00,1718.0,10.816888,10816.888 +165,2025-03-07T00:29:42.464935-08:00,1667.0,10.820432,10820.432 +166,2025-03-07T00:29:53.285445-08:00,1673.0,10.82051,10820.51 +167,2025-03-07T00:30:04.108286-08:00,1707.0,10.822841,10822.841 +168,2025-03-07T00:30:14.932591-08:00,1623.0,10.824305,10824.305 +169,2025-03-07T00:30:25.751288-08:00,1663.0,10.818697,10818.697 +170,2025-03-07T00:30:36.577527-08:00,1722.0,10.826239,10826.239 +171,2025-03-07T00:30:47.393615-08:00,1712.0,10.816088,10816.088 +172,2025-03-07T00:30:58.217360-08:00,1723.0,10.823745,10823.745 +173,2025-03-07T00:31:09.043696-08:00,1647.0,10.826336,10826.336 +174,2025-03-07T00:31:19.863349-08:00,1717.0,10.819653,10819.653 +175,2025-03-07T00:31:30.691827-08:00,1675.0,10.828478,10828.478 +176,2025-03-07T00:31:41.516643-08:00,1687.0,10.824816,10824.816 +177,2025-03-07T00:31:52.347454-08:00,1719.0,10.830811,10830.811 +178,2025-03-07T00:32:03.173318-08:00,1721.0,10.825864,10825.864 +179,2025-03-07T00:32:14.005289-08:00,1641.0,10.831971,10831.971 +180,2025-03-07T00:32:24.831595-08:00,1678.0,10.826306,10826.306 +181,2025-03-07T00:32:35.656535-08:00,1719.0,10.82494,10824.94 +182,2025-03-07T00:32:46.489494-08:00,1711.0,10.832959,10832.959 +183,2025-03-07T00:32:57.318283-08:00,1719.0,10.828789,10828.789 +184,2025-03-07T00:33:08.141503-08:00,1712.0,10.82322,10823.22 +185,2025-03-07T00:33:18.962288-08:00,1717.0,10.820785,10820.785 +186,2025-03-07T00:33:29.798845-08:00,1685.0,10.836557,10836.557 +187,2025-03-07T00:33:40.629285-08:00,1644.0,10.83044,10830.44 +188,2025-03-07T00:33:51.456317-08:00,1721.0,10.827032,10827.032 +189,2025-03-07T00:34:02.277325-08:00,1659.0,10.821008,10821.008 +190,2025-03-07T00:34:13.108548-08:00,1722.0,10.831223,10831.223 +191,2025-03-07T00:34:23.936411-08:00,1698.0,10.827863,10827.863 +192,2025-03-07T00:34:34.772401-08:00,1715.0,10.83599,10835.99 +193,2025-03-07T00:34:45.592287-08:00,1707.0,10.819886,10819.886 +194,2025-03-07T00:34:56.415278-08:00,1642.0,10.822991,10822.991 +195,2025-03-07T00:35:07.244620-08:00,1687.0,10.829342,10829.342 +196,2025-03-07T00:35:18.075315-08:00,1671.0,10.830695,10830.695 +197,2025-03-07T00:35:28.902351-08:00,1686.0,10.827036,10827.036 +198,2025-03-07T00:35:39.728858-08:00,1712.0,10.826507,10826.507 +199,2025-03-07T00:35:50.550038-08:00,1711.0,10.82118,10821.18 +200,2025-03-07T00:36:01.375430-08:00,1714.0,10.825392,10825.392 +201,2025-03-07T00:36:12.202821-08:00,1688.0,10.827391,10827.391 +202,2025-03-07T00:36:23.025308-08:00,1632.0,10.822487,10822.487 +203,2025-03-07T00:36:33.852289-08:00,1633.0,10.826981,10826.981 +204,2025-03-07T00:36:44.686510-08:00,1697.0,10.834221,10834.221 +205,2025-03-07T00:36:55.504525-08:00,1718.0,10.818015,10818.015 +206,2025-03-07T00:37:06.323558-08:00,1718.0,10.819033,10819.033 +207,2025-03-07T00:37:17.150285-08:00,1715.0,10.826727,10826.727 +208,2025-03-07T00:37:27.984649-08:00,1718.0,10.834364,10834.364 +209,2025-03-07T00:37:38.800291-08:00,1650.0,10.815642,10815.642 +210,2025-03-07T00:37:49.629521-08:00,1713.0,10.82923,10829.23 +211,2025-03-07T00:38:00.454419-08:00,1680.0,10.824898,10824.898 +212,2025-03-07T00:38:11.283283-08:00,1715.0,10.828864,10828.864 +213,2025-03-07T00:38:22.117421-08:00,1680.0,10.834138,10834.138 +214,2025-03-07T00:38:32.946262-08:00,1677.0,10.828841,10828.841 +215,2025-03-07T00:38:43.771345-08:00,1718.0,10.825083,10825.083 +216,2025-03-07T00:38:54.596508-08:00,1714.0,10.825163,10825.163 +217,2025-03-07T00:39:05.423850-08:00,1631.0,10.827342,10827.342 +218,2025-03-07T00:39:16.243048-08:00,1702.0,10.819198,10819.198 +219,2025-03-07T00:39:27.069896-08:00,1722.0,10.826848,10826.848 +220,2025-03-07T00:39:37.901567-08:00,1712.0,10.831671,10831.671 +221,2025-03-07T00:39:48.727772-08:00,1715.0,10.826205,10826.205 +222,2025-03-07T00:39:59.555295-08:00,1700.0,10.827523,10827.523 +223,2025-03-07T00:40:10.391755-08:00,1679.0,10.83646,10836.46 +224,2025-03-07T00:40:21.221591-08:00,1713.0,10.829836,10829.836 +225,2025-03-07T00:40:32.042179-08:00,1709.0,10.820588,10820.588 +226,2025-03-07T00:40:42.869289-08:00,1659.0,10.82711,10827.11 +227,2025-03-07T00:40:53.691427-08:00,1723.0,10.822138,10822.138 +228,2025-03-07T00:41:04.526281-08:00,1694.0,10.834854,10834.854 +229,2025-03-07T00:41:15.346282-08:00,1719.0,10.820001,10820.001 +230,2025-03-07T00:41:26.179934-08:00,1665.0,10.833652,10833.652 +231,2025-03-07T00:41:36.992752-08:00,1719.0,10.812818,10812.818 +232,2025-03-07T00:41:47.820400-08:00,1718.0,10.827648,10827.648 +233,2025-03-07T00:41:58.639289-08:00,1714.0,10.818889,10818.889 +234,2025-03-07T00:42:09.469284-08:00,1678.0,10.829995,10829.995 +235,2025-03-07T00:42:20.291630-08:00,1709.0,10.822346,10822.346 +236,2025-03-07T00:42:31.111289-08:00,1674.0,10.819659,10819.659 +237,2025-03-07T00:42:41.942595-08:00,1708.0,10.831306,10831.306 +238,2025-03-07T00:42:52.764368-08:00,1705.0,10.821773,10821.773 +239,2025-03-07T00:43:03.583277-08:00,1679.0,10.818909,10818.909 +240,2025-03-07T00:43:14.404606-08:00,1721.0,10.821329,10821.329 +241,2025-03-07T00:43:25.227765-08:00,1686.0,10.823159,10823.159 +242,2025-03-07T00:43:36.045393-08:00,1699.0,10.817628,10817.628 +243,2025-03-07T00:43:46.865872-08:00,1636.0,10.820479,10820.479 +244,2025-03-07T00:43:57.688731-08:00,1718.0,10.822859,10822.859 +245,2025-03-07T00:44:08.506281-08:00,1715.0,10.81755,10817.55 +246,2025-03-07T00:44:19.333343-08:00,1648.0,10.827062,10827.062 +247,2025-03-07T00:44:30.149274-08:00,1674.0,10.815931,10815.931 +248,2025-03-07T00:44:40.973285-08:00,1663.0,10.824011,10824.011 +249,2025-03-07T00:44:51.798286-08:00,1635.0,10.825001,10825.001 +250,2025-03-07T00:45:02.616416-08:00,1648.0,10.81813,10818.13 +251,2025-03-07T00:45:13.440207-08:00,1707.0,10.823791,10823.791 +252,2025-03-07T00:45:24.261342-08:00,1679.0,10.821135,10821.135 +253,2025-03-07T00:45:35.087282-08:00,1722.0,10.82594,10825.94 +254,2025-03-07T00:45:45.913759-08:00,1718.0,10.826477,10826.477 +255,2025-03-07T00:45:56.739624-08:00,1647.0,10.825865,10825.865 +256,2025-03-07T00:46:07.565832-08:00,1664.0,10.826208,10826.208 +257,2025-03-07T00:46:18.385419-08:00,1650.0,10.819587,10819.587 +258,2025-03-07T00:46:29.203280-08:00,1643.0,10.817861,10817.861 +259,2025-03-07T00:46:40.025626-08:00,1719.0,10.822346,10822.346 +260,2025-03-07T00:46:50.852328-08:00,1714.0,10.826702,10826.702 +261,2025-03-07T00:47:01.668521-08:00,1642.0,10.816193,10816.193 +262,2025-03-07T00:47:12.485618-08:00,1722.0,10.817097,10817.097 +263,2025-03-07T00:47:23.302267-08:00,1722.0,10.816649,10816.649 +264,2025-03-07T00:47:34.126284-08:00,1667.0,10.824017,10824.017 +265,2025-03-07T00:47:44.960284-08:00,1719.0,10.834,10834.0 +266,2025-03-07T00:47:55.775284-08:00,1675.0,10.815,10815.0 +267,2025-03-07T00:48:06.600886-08:00,1673.0,10.825602,10825.602 +268,2025-03-07T00:48:17.429266-08:00,1719.0,10.82838,10828.38 +269,2025-03-07T00:48:28.246389-08:00,1712.0,10.817123,10817.123 +270,2025-03-07T00:48:39.066813-08:00,1722.0,10.820424,10820.424 +271,2025-03-07T00:48:49.880292-08:00,1693.0,10.813479,10813.479 +272,2025-03-07T00:49:00.707815-08:00,1712.0,10.827523,10827.523 +273,2025-03-07T00:49:11.516279-08:00,1690.0,10.808464,10808.464 +274,2025-03-07T00:49:22.340686-08:00,1717.0,10.824407,10824.407 +275,2025-03-07T00:49:33.156268-08:00,1697.0,10.815582,10815.582 +276,2025-03-07T00:49:43.977756-08:00,1680.0,10.821488,10821.488 +277,2025-03-07T00:49:54.794630-08:00,1679.0,10.816874,10816.874 +278,2025-03-07T00:50:05.613410-08:00,1628.0,10.81878,10818.78 +279,2025-03-07T00:50:16.434646-08:00,1718.0,10.821236,10821.236 +280,2025-03-07T00:50:27.263750-08:00,1699.0,10.829104,10829.104 +281,2025-03-07T00:50:38.084273-08:00,1699.0,10.820523,10820.523 +282,2025-03-07T00:50:48.906292-08:00,1681.0,10.822019,10822.019 +283,2025-03-07T00:50:59.733273-08:00,1682.0,10.826981,10826.981 +284,2025-03-07T00:51:10.545473-08:00,1699.0,10.8122,10812.2 +285,2025-03-07T00:51:21.364710-08:00,1721.0,10.819237,10819.237 +286,2025-03-07T00:51:32.193278-08:00,1657.0,10.828568,10828.568 +287,2025-03-07T00:51:43.006338-08:00,1719.0,10.81306,10813.06 +288,2025-03-07T00:51:53.827463-08:00,1626.0,10.821125,10821.125 +289,2025-03-07T00:52:04.652866-08:00,1716.0,10.825403,10825.403 +290,2025-03-07T00:52:15.477424-08:00,1633.0,10.824558,10824.558 +291,2025-03-07T00:52:26.299343-08:00,1722.0,10.821919,10821.919 +292,2025-03-07T00:52:37.119288-08:00,1698.0,10.819945,10819.945 +293,2025-03-07T00:52:47.947618-08:00,1691.0,10.82833,10828.33 +294,2025-03-07T00:52:58.770601-08:00,1721.0,10.822983,10822.983 +295,2025-03-07T00:53:09.588288-08:00,1718.0,10.817687,10817.687 +296,2025-03-07T00:53:20.422551-08:00,1722.0,10.834263,10834.263 +297,2025-03-07T00:53:31.243591-08:00,1677.0,10.82104,10821.04 +298,2025-03-07T00:53:42.063162-08:00,1675.0,10.819571,10819.571 +299,2025-03-07T00:53:52.892256-08:00,1709.0,10.829094,10829.094 +300,2025-03-07T00:54:03.706439-08:00,1724.0,10.814183,10814.183 +301,2025-03-07T00:54:14.537687-08:00,1633.0,10.831248,10831.248 +302,2025-03-07T00:54:25.357597-08:00,1699.0,10.81991,10819.91 +303,2025-03-07T00:54:36.178313-08:00,1699.0,10.820716,10820.716 +304,2025-03-07T00:54:47.005436-08:00,1703.0,10.827123,10827.123 +305,2025-03-07T00:54:57.826286-08:00,1643.0,10.82085,10820.85 +306,2025-03-07T00:55:08.650791-08:00,1675.0,10.824505,10824.505 +307,2025-03-07T00:55:19.469490-08:00,1702.0,10.818699,10818.699 +308,2025-03-07T00:55:30.291277-08:00,1711.0,10.821787,10821.787 +309,2025-03-07T00:55:41.112576-08:00,1699.0,10.821299,10821.299 +310,2025-03-07T00:55:51.941594-08:00,1675.0,10.829018,10829.018 +311,2025-03-07T00:56:02.762716-08:00,1677.0,10.821122,10821.122 +312,2025-03-07T00:56:13.590429-08:00,1703.0,10.827713,10827.713 +313,2025-03-07T00:56:24.408764-08:00,1724.0,10.818335,10818.335 +314,2025-03-07T00:56:35.225816-08:00,1679.0,10.817052,10817.052 +315,2025-03-07T00:56:46.055270-08:00,1712.0,10.829454,10829.454 +316,2025-03-07T00:56:56.870278-08:00,1665.0,10.815008,10815.008 +317,2025-03-07T00:57:07.698763-08:00,1723.0,10.828485,10828.485 +318,2025-03-07T00:57:18.519285-08:00,1675.0,10.820522,10820.522 +319,2025-03-07T00:57:29.347640-08:00,1679.0,10.828355,10828.355 +320,2025-03-07T00:57:40.172295-08:00,1663.0,10.824655,10824.655 +321,2025-03-07T00:57:50.994288-08:00,1675.0,10.821993,10821.993 +322,2025-03-07T00:58:01.805774-08:00,1683.0,10.811486,10811.486 +323,2025-03-07T00:58:12.629510-08:00,1687.0,10.823736,10823.736 +324,2025-03-07T00:58:23.451266-08:00,1702.0,10.821756,10821.756 +325,2025-03-07T00:58:34.277573-08:00,1721.0,10.826307,10826.307 +326,2025-03-07T00:58:45.092011-08:00,1664.0,10.814438,10814.438 +327,2025-03-07T00:58:55.917520-08:00,1667.0,10.825509,10825.509 +328,2025-03-07T00:59:06.734933-08:00,1691.0,10.817413,10817.413 +329,2025-03-07T00:59:17.553375-08:00,1712.0,10.818442,10818.442 +330,2025-03-07T00:59:28.369240-08:00,1712.0,10.815865,10815.865 +331,2025-03-07T00:59:39.195866-08:00,1648.0,10.826626,10826.626 +332,2025-03-07T00:59:50.015725-08:00,1723.0,10.819859,10819.859 +333,2025-03-07T01:00:00.831715-08:00,1703.0,10.81599,10815.99 +334,2025-03-07T01:00:11.644671-08:00,1729.0,10.812956,10812.956 +335,2025-03-07T01:00:22.466894-08:00,1742.0,10.822223,10822.223 +336,2025-03-07T01:00:33.280408-08:00,1767.0,10.813514,10813.514 +337,2025-03-07T01:00:44.097283-08:00,1757.0,10.816875,10816.875 +338,2025-03-07T01:00:54.918376-08:00,1788.0,10.821093,10821.093 +339,2025-03-07T01:01:05.732346-08:00,1745.0,10.81397,10813.97 +340,2025-03-07T01:01:16.549279-08:00,1719.0,10.816933,10816.933 +341,2025-03-07T01:01:27.362276-08:00,1757.0,10.812997,10812.997 +342,2025-03-07T01:01:38.183586-08:00,1787.0,10.82131,10821.31 +343,2025-03-07T01:01:49.004283-08:00,1763.0,10.820697,10820.697 +344,2025-03-07T01:01:59.823264-08:00,1774.0,10.818981,10818.981 +345,2025-03-07T01:02:10.654182-08:00,1790.0,10.830918,10830.918 +346,2025-03-07T01:02:21.469119-08:00,1760.0,10.814937,10814.937 +347,2025-03-07T01:02:32.294904-08:00,1706.0,10.825785,10825.785 +348,2025-03-07T01:02:43.115835-08:00,1775.0,10.820931,10820.931 +349,2025-03-07T01:02:53.944528-08:00,1771.0,10.828693,10828.693 +350,2025-03-07T01:03:01.401573-08:00,1757.0,7.457045,7457.045 +351,2025-03-07T01:03:04.762659-08:00,1791.0,3.361086,3361.086 +352,2025-03-07T01:03:15.575595-08:00,1720.0,10.812936,10812.936 +353,2025-03-07T01:03:26.396591-08:00,1752.0,10.820996,10820.996 +354,2025-03-07T01:03:37.213285-08:00,1735.0,10.816694,10816.694 +355,2025-03-07T01:03:48.034529-08:00,1792.0,10.821244,10821.244 +356,2025-03-07T01:03:58.847529-08:00,1790.0,10.813,10813.0 +357,2025-03-07T01:04:09.666418-08:00,1763.0,10.818889,10818.889 +358,2025-03-07T01:04:20.486616-08:00,1731.0,10.820198,10820.198 +359,2025-03-07T01:04:31.316544-08:00,1792.0,10.829928,10829.928 +360,2025-03-07T01:04:42.128585-08:00,1694.0,10.812041,10812.041 +361,2025-03-07T01:04:52.956269-08:00,1732.0,10.827684,10827.684 +362,2025-03-07T01:05:03.769829-08:00,1746.0,10.81356,10813.56 +363,2025-03-07T01:05:14.590785-08:00,1750.0,10.820956,10820.956 +364,2025-03-07T01:05:25.417304-08:00,1783.0,10.826519,10826.519 +365,2025-03-07T01:05:36.221922-08:00,1761.0,10.804618,10804.618 +366,2025-03-07T01:05:47.033073-08:00,1739.0,10.811151,10811.151 +367,2025-03-07T01:05:57.850141-08:00,1747.0,10.817068,10817.068 +368,2025-03-07T01:06:08.669427-08:00,1747.0,10.819286,10819.286 +369,2025-03-07T01:06:19.495067-08:00,1754.0,10.82564,10825.64 +370,2025-03-07T01:06:30.304816-08:00,1712.0,10.809749,10809.749 +371,2025-03-07T01:06:41.122095-08:00,1707.0,10.817279,10817.279 +372,2025-03-07T01:06:51.945090-08:00,1759.0,10.822995,10822.995 +373,2025-03-07T01:07:02.751347-08:00,1792.0,10.806257,10806.257 +374,2025-03-07T01:07:13.567836-08:00,1790.0,10.816489,10816.489 +375,2025-03-07T01:07:24.387161-08:00,1703.0,10.819325,10819.325 +376,2025-03-07T01:07:35.206647-08:00,1789.0,10.819486,10819.486 +377,2025-03-07T01:07:46.013889-08:00,1734.0,10.807242,10807.242 +378,2025-03-07T01:07:56.828843-08:00,1757.0,10.814954,10814.954 +379,2025-03-07T01:08:07.648855-08:00,1778.0,10.820012,10820.012 +380,2025-03-07T01:08:18.456183-08:00,1749.0,10.807328,10807.328 +381,2025-03-07T01:08:29.270855-08:00,1744.0,10.814672,10814.672 +382,2025-03-07T01:08:40.081098-08:00,1786.0,10.810243,10810.243 +383,2025-03-07T01:08:50.897078-08:00,1703.0,10.81598,10815.98 +384,2025-03-07T01:09:01.715544-08:00,1785.0,10.818466,10818.466 +385,2025-03-07T01:09:12.540195-08:00,1785.0,10.824651,10824.651 +386,2025-03-07T01:09:23.363342-08:00,1729.0,10.823147,10823.147 +387,2025-03-07T01:09:34.173667-08:00,1735.0,10.810325,10810.325 +388,2025-03-07T01:09:44.992082-08:00,1765.0,10.818415,10818.415 +389,2025-03-07T01:09:55.807216-08:00,1771.0,10.815134,10815.134 +390,2025-03-07T01:10:06.621276-08:00,1732.0,10.81406,10814.06 +391,2025-03-07T01:10:17.450945-08:00,1791.0,10.829669,10829.669 +392,2025-03-07T01:10:28.261152-08:00,1779.0,10.810207,10810.207 +393,2025-03-07T01:10:39.081977-08:00,1787.0,10.820825,10820.825 +394,2025-03-07T01:10:49.891065-08:00,1743.0,10.809088,10809.088 +395,2025-03-07T01:11:00.709945-08:00,1750.0,10.81888,10818.88 +396,2025-03-07T01:11:11.525835-08:00,1711.0,10.81589,10815.89 +397,2025-03-07T01:11:22.348840-08:00,1790.0,10.823005,10823.005 +398,2025-03-07T01:11:33.168125-08:00,1745.0,10.819285,10819.285 +399,2025-03-07T01:11:43.981851-08:00,1739.0,10.813726,10813.726 +400,2025-03-07T01:11:54.795819-08:00,1747.0,10.813968,10813.968 +401,2025-03-07T01:12:05.611053-08:00,1789.0,10.815234,10815.234 +402,2025-03-07T01:12:16.424268-08:00,1745.0,10.813215,10813.215 +403,2025-03-07T01:12:27.232505-08:00,1700.0,10.808237,10808.237 +404,2025-03-07T01:12:38.049845-08:00,1779.0,10.81734,10817.34 +405,2025-03-07T01:12:48.858200-08:00,1747.0,10.808355,10808.355 +406,2025-03-07T01:12:59.659845-08:00,1777.0,10.801645,10801.645 +407,2025-03-07T01:13:10.475150-08:00,1712.0,10.815305,10815.305 +408,2025-03-07T01:13:21.290107-08:00,1714.0,10.814957,10814.957 +409,2025-03-07T01:13:32.097074-08:00,1709.0,10.806967,10806.967 +410,2025-03-07T01:13:42.920183-08:00,1786.0,10.823109,10823.109 +411,2025-03-07T01:13:53.727458-08:00,1725.0,10.807275,10807.275 +412,2025-03-07T01:14:04.548842-08:00,1717.0,10.821384,10821.384 +413,2025-03-07T01:14:15.360842-08:00,1786.0,10.812,10812.0 +414,2025-03-07T01:14:26.170413-08:00,1745.0,10.809571,10809.571 +415,2025-03-07T01:14:36.983293-08:00,1723.0,10.81288,10812.88 +416,2025-03-07T01:14:47.796889-08:00,1732.0,10.813596,10813.596 +417,2025-03-07T01:14:58.606257-08:00,1776.0,10.809368,10809.368 +418,2025-03-07T01:15:09.424097-08:00,1682.0,10.81784,10817.84 +419,2025-03-07T01:15:20.234194-08:00,1703.0,10.810097,10810.097 +420,2025-03-07T01:15:31.042977-08:00,1776.0,10.808783,10808.783 +421,2025-03-07T01:15:41.852131-08:00,1779.0,10.809154,10809.154 +422,2025-03-07T01:15:52.667132-08:00,1739.0,10.815001,10815.001 +423,2025-03-07T01:16:03.487103-08:00,1712.0,10.819971,10819.971 +424,2025-03-07T01:16:14.303907-08:00,1738.0,10.816804,10816.804 +425,2025-03-07T01:16:25.122226-08:00,1697.0,10.818319,10818.319 +426,2025-03-07T01:16:35.932072-08:00,1654.0,10.809846,10809.846 +427,2025-03-07T01:16:46.745142-08:00,1712.0,10.81307,10813.07 +428,2025-03-07T01:16:57.560844-08:00,1659.0,10.815702,10815.702 +429,2025-03-07T01:17:08.369160-08:00,1638.0,10.808316,10808.316 +430,2025-03-07T01:17:19.189701-08:00,1648.0,10.820541,10820.541 +431,2025-03-07T01:17:30.004991-08:00,1687.0,10.81529,10815.29 +432,2025-03-07T01:17:40.818830-08:00,1722.0,10.813839,10813.839 +433,2025-03-07T01:17:51.632839-08:00,1714.0,10.814009,10814.009 +434,2025-03-07T01:18:02.446165-08:00,1680.0,10.813326,10813.326 +435,2025-03-07T01:18:13.250908-08:00,1730.0,10.804743,10804.743 +436,2025-03-07T01:18:24.072061-08:00,1655.0,10.821153,10821.153 +437,2025-03-07T01:18:34.886821-08:00,1634.0,10.81476,10814.76 +438,2025-03-07T01:18:45.695895-08:00,1691.0,10.809074,10809.074 +439,2025-03-07T01:18:56.504043-08:00,1717.0,10.808148,10808.148 +440,2025-03-07T01:19:07.324845-08:00,1659.0,10.820802,10820.802 +441,2025-03-07T01:19:18.132821-08:00,1724.0,10.807976,10807.976 +442,2025-03-07T01:19:28.952834-08:00,1655.0,10.820013,10820.013 +443,2025-03-07T01:19:39.770060-08:00,1728.0,10.817226,10817.226 +444,2025-03-07T01:19:50.581435-08:00,1695.0,10.811375,10811.375 +445,2025-03-07T01:20:01.392276-08:00,1718.0,10.810841,10810.841 +446,2025-03-07T01:20:12.201834-08:00,1680.0,10.809558,10809.558 +447,2025-03-07T01:20:23.014879-08:00,1641.0,10.813045,10813.045 +448,2025-03-07T01:20:33.829115-08:00,1682.0,10.814236,10814.236 +449,2025-03-07T01:20:44.646676-08:00,1715.0,10.817561,10817.561 +450,2025-03-07T01:20:55.453922-08:00,1662.0,10.807246,10807.246 +451,2025-03-07T01:21:06.263183-08:00,1727.0,10.809261,10809.261 +452,2025-03-07T01:21:17.072159-08:00,1697.0,10.808976,10808.976 +453,2025-03-07T01:21:27.888123-08:00,1665.0,10.815964,10815.964 +454,2025-03-07T01:21:38.699834-08:00,1717.0,10.811711,10811.711 +455,2025-03-07T01:21:49.515829-08:00,1700.0,10.815995,10815.995 +456,2025-03-07T01:22:00.325194-08:00,1709.0,10.809365,10809.365 +457,2025-03-07T01:22:11.139896-08:00,1703.0,10.814702,10814.702 +458,2025-03-07T01:22:21.950842-08:00,1653.0,10.810946,10810.946 +459,2025-03-07T01:22:32.765449-08:00,1687.0,10.814607,10814.607 +460,2025-03-07T01:22:43.583738-08:00,1636.0,10.818289,10818.289 +461,2025-03-07T01:22:54.392220-08:00,1729.0,10.808482,10808.482 +462,2025-03-07T01:23:05.208161-08:00,1721.0,10.815941,10815.941 +463,2025-03-07T01:23:16.021973-08:00,1723.0,10.813812,10813.812 +464,2025-03-07T01:23:26.842034-08:00,1648.0,10.820061,10820.061 +465,2025-03-07T01:23:37.658476-08:00,1728.0,10.816442,10816.442 +466,2025-03-07T01:23:48.466891-08:00,1726.0,10.808415,10808.415 +467,2025-03-07T01:23:59.288895-08:00,1682.0,10.822004,10822.004 +468,2025-03-07T01:24:10.096832-08:00,1660.0,10.807937,10807.937 +469,2025-03-07T01:24:20.910314-08:00,1655.0,10.813482,10813.482 +470,2025-03-07T01:24:31.730196-08:00,1687.0,10.819882,10819.882 +471,2025-03-07T01:24:42.543088-08:00,1713.0,10.812892,10812.892 +472,2025-03-07T01:24:53.358821-08:00,1729.0,10.815733,10815.733 +473,2025-03-07T01:25:04.174844-08:00,1728.0,10.816023,10816.023 +474,2025-03-07T01:25:14.997838-08:00,1712.0,10.822994,10822.994 +475,2025-03-07T01:25:25.811160-08:00,1686.0,10.813322,10813.322 +476,2025-03-07T01:25:36.618017-08:00,1655.0,10.806857,10806.857 +477,2025-03-07T01:25:47.426788-08:00,1684.0,10.808771,10808.771 +478,2025-03-07T01:25:58.241851-08:00,1681.0,10.815063,10815.063 +479,2025-03-07T01:26:09.044990-08:00,1730.0,10.803139,10803.139 +480,2025-03-07T01:26:19.859177-08:00,1731.0,10.814187,10814.187 +481,2025-03-07T01:26:30.676866-08:00,1722.0,10.817689,10817.689 +482,2025-03-07T01:26:41.489901-08:00,1730.0,10.813035,10813.035 +483,2025-03-07T01:26:52.308829-08:00,1727.0,10.818928,10818.928 +484,2025-03-07T01:27:03.123370-08:00,1717.0,10.814541,10814.541 +485,2025-03-07T01:27:13.945082-08:00,1732.0,10.821712,10821.712 +486,2025-03-07T01:27:24.751906-08:00,1719.0,10.806824,10806.824 +487,2025-03-07T01:27:35.569843-08:00,1723.0,10.817937,10817.937 +488,2025-03-07T01:27:46.372811-08:00,1696.0,10.802968,10802.968 +489,2025-03-07T01:27:57.192161-08:00,1709.0,10.81935,10819.35 +490,2025-03-07T01:28:08.002113-08:00,1713.0,10.809952,10809.952 +491,2025-03-07T01:28:18.816976-08:00,1728.0,10.814863,10814.863 +492,2025-03-07T01:28:29.629085-08:00,1715.0,10.812109,10812.109 +493,2025-03-07T01:28:40.436838-08:00,1682.0,10.807753,10807.753 +494,2025-03-07T01:28:51.255341-08:00,1691.0,10.818503,10818.503 +495,2025-03-07T01:29:02.067839-08:00,1675.0,10.812498,10812.498 +496,2025-03-07T01:29:12.885124-08:00,1730.0,10.817285,10817.285 +497,2025-03-07T01:29:23.690821-08:00,1728.0,10.805697,10805.697 +498,2025-03-07T01:29:34.507950-08:00,1677.0,10.817129,10817.129 +499,2025-03-07T01:29:45.327142-08:00,1689.0,10.819192,10819.192 +500,2025-03-07T01:29:56.142011-08:00,1677.0,10.814869,10814.869 +501,2025-03-07T01:30:06.955830-08:00,1643.0,10.813819,10813.819 +502,2025-03-07T01:30:17.767075-08:00,1728.0,10.811245,10811.245 +503,2025-03-07T01:30:28.579884-08:00,1705.0,10.812809,10812.809 +504,2025-03-07T01:30:39.382883-08:00,1687.0,10.802999,10802.999 +505,2025-03-07T01:30:50.199000-08:00,1716.0,10.816117,10816.117 +506,2025-03-07T01:31:01.007847-08:00,1723.0,10.808847,10808.847 +507,2025-03-07T01:31:11.820160-08:00,1726.0,10.812313,10812.313 +508,2025-03-07T01:31:22.626065-08:00,1727.0,10.805905,10805.905 +509,2025-03-07T01:31:33.437982-08:00,1648.0,10.811917,10811.917 +510,2025-03-07T01:31:44.248844-08:00,1641.0,10.810862,10810.862 +511,2025-03-07T01:31:55.056887-08:00,1667.0,10.808043,10808.043 +512,2025-03-07T01:32:05.867076-08:00,1659.0,10.810189,10810.189 +513,2025-03-07T01:32:16.682843-08:00,1685.0,10.815767,10815.767 +514,2025-03-07T01:32:27.497825-08:00,1730.0,10.814982,10814.982 +515,2025-03-07T01:32:38.311079-08:00,1717.0,10.813254,10813.254 +516,2025-03-07T01:32:49.112843-08:00,1655.0,10.801764,10801.764 +517,2025-03-07T01:32:59.920851-08:00,1732.0,10.808008,10808.008 +518,2025-03-07T01:33:10.731875-08:00,1664.0,10.811024,10811.024 +519,2025-03-07T01:33:21.548318-08:00,1731.0,10.816443,10816.443 +520,2025-03-07T01:33:32.360959-08:00,1694.0,10.812641,10812.641 +521,2025-03-07T01:33:43.171150-08:00,1722.0,10.810191,10810.191 +522,2025-03-07T01:33:53.977815-08:00,1648.0,10.806665,10806.665 +523,2025-03-07T01:34:04.789837-08:00,1731.0,10.812022,10812.022 +524,2025-03-07T01:34:15.591828-08:00,1711.0,10.801991,10801.991 +525,2025-03-07T01:34:26.413083-08:00,1680.0,10.821255,10821.255 +526,2025-03-07T01:34:37.227183-08:00,1681.0,10.8141,10814.1 +527,2025-03-07T01:34:48.039070-08:00,1729.0,10.811887,10811.887 +528,2025-03-07T01:34:58.855346-08:00,1666.0,10.816276,10816.276 +529,2025-03-07T01:35:09.669898-08:00,1636.0,10.814552,10814.552 +530,2025-03-07T01:35:20.484624-08:00,1676.0,10.814726,10814.726 +531,2025-03-07T01:35:31.293227-08:00,1717.0,10.808603,10808.603 +532,2025-03-07T01:35:42.113843-08:00,1735.0,10.820616,10820.616 +533,2025-03-07T01:35:52.925992-08:00,1735.0,10.812149,10812.149 +534,2025-03-07T01:36:03.743565-08:00,1689.0,10.817573,10817.573 +535,2025-03-07T01:36:14.553385-08:00,1644.0,10.80982,10809.82 +536,2025-03-07T01:36:25.367323-08:00,1686.0,10.813938,10813.938 +537,2025-03-07T01:36:36.180838-08:00,1663.0,10.813515,10813.515 +538,2025-03-07T01:36:46.991840-08:00,1719.0,10.811002,10811.002 +539,2025-03-07T01:36:57.801837-08:00,1637.0,10.809997,10809.997 +540,2025-03-07T01:37:08.618177-08:00,1687.0,10.81634,10816.34 +541,2025-03-07T01:37:19.430114-08:00,1728.0,10.811937,10811.937 +542,2025-03-07T01:37:30.248216-08:00,1654.0,10.818102,10818.102 +543,2025-03-07T01:37:41.057815-08:00,1687.0,10.809599,10809.599 +544,2025-03-07T01:37:51.878841-08:00,1725.0,10.821026,10821.026 +545,2025-03-07T01:38:02.688163-08:00,1668.0,10.809322,10809.322 +546,2025-03-07T01:38:13.503835-08:00,1718.0,10.815672,10815.672 +547,2025-03-07T01:38:24.324065-08:00,1687.0,10.82023,10820.23 +548,2025-03-07T01:38:35.126816-08:00,1686.0,10.802751,10802.751 +549,2025-03-07T01:38:45.946741-08:00,1639.0,10.819925,10819.925 +550,2025-03-07T01:38:56.750548-08:00,1712.0,10.803807,10803.807 +551,2025-03-07T01:39:07.571835-08:00,1728.0,10.821287,10821.287 +552,2025-03-07T01:39:18.385291-08:00,1680.0,10.813456,10813.456 +553,2025-03-07T01:39:29.204877-08:00,1684.0,10.819586,10819.586 +554,2025-03-07T01:39:40.013794-08:00,1715.0,10.808917,10808.917 +555,2025-03-07T01:39:50.824150-08:00,1721.0,10.810356,10810.356 +556,2025-03-07T01:40:01.640655-08:00,1734.0,10.816505,10816.505 +557,2025-03-07T01:40:12.450844-08:00,1658.0,10.810189,10810.189 +558,2025-03-07T01:40:23.264874-08:00,1731.0,10.81403,10814.03 +559,2025-03-07T01:40:34.076968-08:00,1722.0,10.812094,10812.094 +560,2025-03-07T01:40:44.884775-08:00,1680.0,10.807807,10807.807 +561,2025-03-07T01:40:55.698189-08:00,1734.0,10.813414,10813.414 +562,2025-03-07T01:41:06.506090-08:00,1708.0,10.807901,10807.901 +563,2025-03-07T01:41:17.313057-08:00,1686.0,10.806967,10806.967 +564,2025-03-07T01:41:28.114833-08:00,1725.0,10.801776,10801.776 +565,2025-03-07T01:41:38.930840-08:00,1735.0,10.816007,10816.007 +566,2025-03-07T01:41:49.739068-08:00,1730.0,10.808228,10808.228 +567,2025-03-07T01:42:00.543013-08:00,1727.0,10.803945,10803.945 +568,2025-03-07T01:42:11.344832-08:00,1682.0,10.801819,10801.819 +569,2025-03-07T01:42:22.162643-08:00,1730.0,10.817811,10817.811 +570,2025-03-07T01:42:32.969272-08:00,1677.0,10.806629,10806.629 +571,2025-03-07T01:42:43.775413-08:00,1715.0,10.806141,10806.141 +572,2025-03-07T01:42:54.587211-08:00,1732.0,10.811798,10811.798 +573,2025-03-07T01:43:05.395842-08:00,1713.0,10.808631,10808.631 +574,2025-03-07T01:43:16.199899-08:00,1685.0,10.804057,10804.057 +575,2025-03-07T01:43:27.019828-08:00,1678.0,10.819929,10819.929 +576,2025-03-07T01:43:37.830315-08:00,1690.0,10.810487,10810.487 +577,2025-03-07T01:43:48.639991-08:00,1730.0,10.809676,10809.676 +578,2025-03-07T01:43:59.457936-08:00,1675.0,10.817945,10817.945 +579,2025-03-07T01:44:10.261316-08:00,1712.0,10.80338,10803.38 +580,2025-03-07T01:44:21.075087-08:00,1732.0,10.813771,10813.771 +581,2025-03-07T01:44:31.884061-08:00,1687.0,10.808974,10808.974 +582,2025-03-07T01:44:42.687842-08:00,1721.0,10.803781,10803.781 +583,2025-03-07T01:44:53.496821-08:00,1726.0,10.808979,10808.979 +584,2025-03-07T01:45:04.309854-08:00,1728.0,10.813033,10813.033 +585,2025-03-07T01:45:15.122286-08:00,1730.0,10.812432,10812.432 +586,2025-03-07T01:45:25.932530-08:00,1647.0,10.810244,10810.244 +587,2025-03-07T01:45:36.742816-08:00,1731.0,10.810286,10810.286 +588,2025-03-07T01:45:47.550064-08:00,1717.0,10.807248,10807.248 +589,2025-03-07T01:45:58.361832-08:00,1631.0,10.811768,10811.768 +590,2025-03-07T01:46:09.161952-08:00,1680.0,10.80012,10800.12 +591,2025-03-07T01:46:19.977078-08:00,1728.0,10.815126,10815.126 +592,2025-03-07T01:46:30.778906-08:00,1647.0,10.801828,10801.828 +593,2025-03-07T01:46:41.587688-08:00,1690.0,10.808782,10808.782 +594,2025-03-07T01:46:52.395984-08:00,1712.0,10.808296,10808.296 +595,2025-03-07T01:47:03.207364-08:00,1729.0,10.81138,10811.38 +596,2025-03-07T01:47:14.024304-08:00,1733.0,10.81694,10816.94 +597,2025-03-07T01:47:24.830107-08:00,1670.0,10.805803,10805.803 +598,2025-03-07T01:47:35.631847-08:00,1677.0,10.80174,10801.74 +599,2025-03-07T01:47:46.447953-08:00,1655.0,10.816106,10816.106 +600,2025-03-07T01:47:57.249126-08:00,1715.0,10.801173,10801.173 +601,2025-03-07T01:48:08.057185-08:00,1663.0,10.808059,10808.059 +602,2025-03-07T01:48:18.873838-08:00,1697.0,10.816653,10816.653 +603,2025-03-07T01:48:29.676882-08:00,1737.0,10.803044,10803.044 +604,2025-03-07T01:48:40.486833-08:00,1739.0,10.809951,10809.951 +605,2025-03-07T01:48:51.303144-08:00,1735.0,10.816311,10816.311 +606,2025-03-07T01:49:02.116069-08:00,1694.0,10.812925,10812.925 +607,2025-03-07T01:49:12.925835-08:00,1681.0,10.809766,10809.766 +608,2025-03-07T01:49:23.728821-08:00,1651.0,10.802986,10802.986 +609,2025-03-07T01:49:34.533881-08:00,1701.0,10.80506,10805.06 +610,2025-03-07T01:49:45.340230-08:00,1734.0,10.806349,10806.349 +611,2025-03-07T01:49:56.146892-08:00,1649.0,10.806662,10806.662 +612,2025-03-07T01:50:06.958890-08:00,1728.0,10.811998,10811.998 +613,2025-03-07T01:50:17.767710-08:00,1722.0,10.80882,10808.82 +614,2025-03-07T01:50:28.581836-08:00,1647.0,10.814126,10814.126 +615,2025-03-07T01:50:39.397812-08:00,1645.0,10.815976,10815.976 +616,2025-03-07T01:50:50.205844-08:00,1711.0,10.808032,10808.032 +617,2025-03-07T01:51:01.012918-08:00,1725.0,10.807074,10807.074 +618,2025-03-07T01:51:11.834521-08:00,1727.0,10.821603,10821.603 +619,2025-03-07T01:51:22.643165-08:00,1695.0,10.808644,10808.644 +620,2025-03-07T01:51:33.447940-08:00,1685.0,10.804775,10804.775 +621,2025-03-07T01:51:44.254989-08:00,1661.0,10.807049,10807.049 +622,2025-03-07T01:51:55.065836-08:00,1691.0,10.810847,10810.847 +623,2025-03-07T01:52:05.867844-08:00,1682.0,10.802008,10802.008 +624,2025-03-07T01:52:16.672226-08:00,1680.0,10.804382,10804.382 +625,2025-03-07T01:52:27.481847-08:00,1712.0,10.809621,10809.621 +626,2025-03-07T01:52:38.289854-08:00,1645.0,10.808007,10808.007 +627,2025-03-07T01:52:49.103822-08:00,1715.0,10.813968,10813.968 +628,2025-03-07T01:52:59.911337-08:00,1712.0,10.807515,10807.515 +629,2025-03-07T01:53:10.727458-08:00,1717.0,10.816121,10816.121 +630,2025-03-07T01:53:21.534418-08:00,1730.0,10.80696,10806.96 +631,2025-03-07T01:53:32.351144-08:00,1691.0,10.816726,10816.726 +632,2025-03-07T01:53:43.160085-08:00,1730.0,10.808941,10808.941 +633,2025-03-07T01:53:53.963817-08:00,1651.0,10.803732,10803.732 +634,2025-03-07T01:54:04.780315-08:00,1727.0,10.816498,10816.498 +635,2025-03-07T01:54:15.587109-08:00,1691.0,10.806794,10806.794 +636,2025-03-07T01:54:26.391692-08:00,1728.0,10.804583,10804.583 +637,2025-03-07T01:54:37.203161-08:00,1730.0,10.811469,10811.469 +638,2025-03-07T01:54:48.014177-08:00,1683.0,10.811016,10811.016 +639,2025-03-07T01:54:58.821830-08:00,1688.0,10.807653,10807.653 +640,2025-03-07T01:55:09.628333-08:00,1681.0,10.806503,10806.503 +641,2025-03-07T01:55:20.440899-08:00,1646.0,10.812566,10812.566 +642,2025-03-07T01:55:31.260259-08:00,1719.0,10.81936,10819.36 +643,2025-03-07T01:55:42.064839-08:00,1697.0,10.80458,10804.58 +644,2025-03-07T01:55:52.880141-08:00,1685.0,10.815302,10815.302 +645,2025-03-07T01:56:03.692130-08:00,1732.0,10.811989,10811.989 +646,2025-03-07T01:56:14.505707-08:00,1711.0,10.813577,10813.577 +647,2025-03-07T01:56:25.311838-08:00,1689.0,10.806131,10806.131 +648,2025-03-07T01:56:36.125838-08:00,1661.0,10.814,10814.0 +649,2025-03-07T01:56:46.936918-08:00,1694.0,10.81108,10811.08 +650,2025-03-07T01:56:57.750227-08:00,1712.0,10.813309,10813.309 +651,2025-03-07T01:57:08.560980-08:00,1630.0,10.810753,10810.753 +652,2025-03-07T01:57:19.380185-08:00,1680.0,10.819205,10819.205 +653,2025-03-07T01:57:30.193326-08:00,1646.0,10.813141,10813.141 +654,2025-03-07T01:57:41.003226-08:00,1714.0,10.8099,10809.9 +655,2025-03-07T01:57:51.818875-08:00,1713.0,10.815649,10815.649 +656,2025-03-07T01:58:02.617157-08:00,1727.0,10.798282,10798.282 +657,2025-03-07T01:58:13.424464-08:00,1728.0,10.807307,10807.307 +658,2025-03-07T01:58:24.241074-08:00,1641.0,10.81661,10816.61 +659,2025-03-07T01:58:35.041904-08:00,1728.0,10.80083,10800.83 +660,2025-03-07T01:58:45.856898-08:00,1712.0,10.814994,10814.994 +661,2025-03-07T01:58:56.660179-08:00,1728.0,10.803281,10803.281 +662,2025-03-07T01:59:07.475121-08:00,1634.0,10.814942,10814.942 +663,2025-03-07T01:59:18.281114-08:00,1650.0,10.805993,10805.993 +664,2025-03-07T01:59:29.094089-08:00,1649.0,10.812975,10812.975 +665,2025-03-07T01:59:39.908066-08:00,1665.0,10.813977,10813.977 +666,2025-03-07T01:59:50.711631-08:00,1635.0,10.803565,10803.565 +667,2025-03-07T02:00:01.519171-08:00,1712.0,10.80754,10807.54 +668,2025-03-07T02:00:12.339066-08:00,1707.0,10.819895,10819.895 +669,2025-03-07T02:00:23.145837-08:00,1730.0,10.806771,10806.771 +670,2025-03-07T02:00:33.963924-08:00,1719.0,10.818087,10818.087 +671,2025-03-07T02:00:44.774328-08:00,1689.0,10.810404,10810.404 +672,2025-03-07T02:00:55.587825-08:00,1686.0,10.813497,10813.497 +673,2025-03-07T02:01:06.407838-08:00,1719.0,10.820013,10820.013 +674,2025-03-07T02:01:17.216044-08:00,1731.0,10.808206,10808.206 +675,2025-03-07T02:01:28.024971-08:00,1670.0,10.808927,10808.927 +676,2025-03-07T02:01:38.838142-08:00,1663.0,10.813171,10813.171 +677,2025-03-07T02:01:49.655048-08:00,1712.0,10.816906,10816.906 +678,2025-03-07T02:02:00.462111-08:00,1730.0,10.807063,10807.063 +679,2025-03-07T02:02:11.278822-08:00,1692.0,10.816711,10816.711 +680,2025-03-07T02:02:22.088106-08:00,1723.0,10.809284,10809.284 +681,2025-03-07T02:02:32.896818-08:00,1729.0,10.808712,10808.712 +682,2025-03-07T02:02:43.711116-08:00,1733.0,10.814298,10814.298 +683,2025-03-07T02:02:54.522367-08:00,1727.0,10.811251,10811.251 +684,2025-03-07T02:03:05.324881-08:00,1694.0,10.802514,10802.514 +685,2025-03-07T02:03:16.141057-08:00,1733.0,10.816176,10816.176 +686,2025-03-07T02:03:26.945839-08:00,1689.0,10.804782,10804.782 +687,2025-03-07T02:03:37.757094-08:00,1659.0,10.811255,10811.255 +688,2025-03-07T02:03:48.570839-08:00,1725.0,10.813745,10813.745 +689,2025-03-07T02:03:59.386152-08:00,1729.0,10.815313,10815.313 +690,2025-03-07T02:04:10.200853-08:00,1690.0,10.814701,10814.701 +691,2025-03-07T02:04:21.004005-08:00,1717.0,10.803152,10803.152 +692,2025-03-07T02:04:31.812964-08:00,1733.0,10.808959,10808.959 +693,2025-03-07T02:04:42.624948-08:00,1671.0,10.811984,10811.984 +694,2025-03-07T02:04:53.442868-08:00,1730.0,10.81792,10817.92 +695,2025-03-07T02:05:04.238838-08:00,1712.0,10.79597,10795.97 +696,2025-03-07T02:05:15.048283-08:00,1732.0,10.809445,10809.445 +697,2025-03-07T02:05:25.852834-08:00,1722.0,10.804551,10804.551 +698,2025-03-07T02:05:36.725279-08:00,1693.0,10.872445,10872.445 +699,2025-03-07T02:05:47.537706-08:00,1639.0,10.812427,10812.427 +700,2025-03-07T02:05:58.353770-08:00,1712.0,10.816064,10816.064 +701,2025-03-07T02:06:09.160617-08:00,1707.0,10.806847,10806.847 +702,2025-03-07T02:06:19.981012-08:00,1701.0,10.820395,10820.395 +703,2025-03-07T02:06:30.795807-08:00,1684.0,10.814795,10814.795 +704,2025-03-07T02:06:41.605622-08:00,1731.0,10.809815,10809.815 +705,2025-03-07T02:06:52.418852-08:00,1712.0,10.81323,10813.23 +706,2025-03-07T02:07:03.233606-08:00,1732.0,10.814754,10814.754 +707,2025-03-07T02:07:14.035617-08:00,1648.0,10.802011,10802.011 +708,2025-03-07T02:07:24.846721-08:00,1680.0,10.811104,10811.104 +709,2025-03-07T02:07:35.665070-08:00,1703.0,10.818349,10818.349 +710,2025-03-07T02:07:46.473085-08:00,1689.0,10.808015,10808.015 +711,2025-03-07T02:07:57.280677-08:00,1681.0,10.807592,10807.592 +712,2025-03-07T02:08:08.086615-08:00,1726.0,10.805938,10805.938 +713,2025-03-07T02:08:18.897620-08:00,1732.0,10.811005,10811.005 +714,2025-03-07T02:08:29.709870-08:00,1712.0,10.81225,10812.25 +715,2025-03-07T02:08:40.518809-08:00,1713.0,10.808939,10808.939 +716,2025-03-07T02:08:51.328841-08:00,1650.0,10.810032,10810.032 +717,2025-03-07T02:09:02.143909-08:00,1658.0,10.815068,10815.068 +718,2025-03-07T02:09:12.949521-08:00,1648.0,10.805612,10805.612 +719,2025-03-07T02:09:23.767886-08:00,1648.0,10.818365,10818.365 +720,2025-03-07T02:09:34.572363-08:00,1661.0,10.804477,10804.477 +721,2025-03-07T02:09:45.389612-08:00,1669.0,10.817249,10817.249 +722,2025-03-07T02:09:56.200420-08:00,1723.0,10.810808,10810.808 +723,2025-03-07T02:10:07.003766-08:00,1648.0,10.803346,10803.346 +724,2025-03-07T02:10:17.808140-08:00,1711.0,10.804374,10804.374 +725,2025-03-07T02:10:28.620065-08:00,1715.0,10.811925,10811.925 +726,2025-03-07T02:10:39.429627-08:00,1731.0,10.809562,10809.562 +727,2025-03-07T02:10:50.238869-08:00,1734.0,10.809242,10809.242 +728,2025-03-07T02:11:01.054614-08:00,1727.0,10.815745,10815.745 +729,2025-03-07T02:11:11.863603-08:00,1725.0,10.808989,10808.989 +730,2025-03-07T02:11:22.670759-08:00,1693.0,10.807156,10807.156 +731,2025-03-07T02:11:33.475074-08:00,1731.0,10.804315,10804.315 +732,2025-03-07T02:11:44.289935-08:00,1676.0,10.814861,10814.861 +733,2025-03-07T02:11:55.099984-08:00,1687.0,10.810049,10810.049 +734,2025-03-07T02:12:05.909188-08:00,1694.0,10.809204,10809.204 +735,2025-03-07T02:12:16.722881-08:00,1666.0,10.813693,10813.693 +736,2025-03-07T02:12:27.529819-08:00,1696.0,10.806938,10806.938 +737,2025-03-07T02:12:38.352088-08:00,1648.0,10.822269,10822.269 +738,2025-03-07T02:12:49.156190-08:00,1729.0,10.804102,10804.102 +739,2025-03-07T02:12:59.969688-08:00,1684.0,10.813498,10813.498 +740,2025-03-07T02:13:10.773634-08:00,1691.0,10.803946,10803.946 +741,2025-03-07T02:13:21.582628-08:00,1710.0,10.808994,10808.994 +742,2025-03-07T02:13:32.396766-08:00,1732.0,10.814138,10814.138 +743,2025-03-07T02:13:43.204603-08:00,1693.0,10.807837,10807.837 +744,2025-03-07T02:13:54.008752-08:00,1733.0,10.804149,10804.149 +745,2025-03-07T02:14:04.820778-08:00,1648.0,10.812026,10812.026 +746,2025-03-07T02:14:15.634403-08:00,1662.0,10.813625,10813.625 +747,2025-03-07T02:14:26.447667-08:00,1689.0,10.813264,10813.264 +748,2025-03-07T02:14:37.256071-08:00,1711.0,10.808404,10808.404 +749,2025-03-07T02:14:48.057605-08:00,1666.0,10.801534,10801.534 +750,2025-03-07T02:14:58.868976-08:00,1670.0,10.811371,10811.371 +751,2025-03-07T02:15:09.677298-08:00,1686.0,10.808322,10808.322 +752,2025-03-07T02:15:20.490121-08:00,1732.0,10.812823,10812.823 +753,2025-03-07T02:15:31.293747-08:00,1702.0,10.803626,10803.626 +754,2025-03-07T02:15:42.100777-08:00,1711.0,10.80703,10807.03 +755,2025-03-07T02:15:52.914000-08:00,1730.0,10.813223,10813.223 +756,2025-03-07T02:16:03.709823-08:00,1723.0,10.795823,10795.823 +757,2025-03-07T02:16:14.517324-08:00,1684.0,10.807501,10807.501 +758,2025-03-07T02:16:25.316953-08:00,1734.0,10.799629,10799.629 +759,2025-03-07T02:16:36.127977-08:00,1697.0,10.811024,10811.024 +760,2025-03-07T02:16:46.930945-08:00,1730.0,10.802968,10802.968 +761,2025-03-07T02:16:57.734061-08:00,1690.0,10.803116,10803.116 +762,2025-03-07T02:17:08.545909-08:00,1681.0,10.811848,10811.848 +763,2025-03-07T02:17:19.347649-08:00,1699.0,10.80174,10801.74 +764,2025-03-07T02:17:30.154597-08:00,1700.0,10.806948,10806.948 +765,2025-03-07T02:17:40.958054-08:00,1689.0,10.803457,10803.457 +766,2025-03-07T02:17:51.765660-08:00,1735.0,10.807606,10807.606 +767,2025-03-07T02:18:02.575095-08:00,1700.0,10.809435,10809.435 +768,2025-03-07T02:18:13.383621-08:00,1639.0,10.808526,10808.526 +769,2025-03-07T02:18:24.192606-08:00,1666.0,10.808985,10808.985 +770,2025-03-07T02:18:34.992854-08:00,1721.0,10.800248,10800.248 +771,2025-03-07T02:18:45.793621-08:00,1678.0,10.800767,10800.767 +772,2025-03-07T02:18:56.597889-08:00,1666.0,10.804268,10804.268 +773,2025-03-07T02:19:07.414608-08:00,1645.0,10.816719,10816.719 +774,2025-03-07T02:19:18.213101-08:00,1691.0,10.798493,10798.493 +775,2025-03-07T02:19:29.023659-08:00,1728.0,10.810558,10810.558 +776,2025-03-07T02:19:39.831131-08:00,1655.0,10.807472,10807.472 +777,2025-03-07T02:19:50.638070-08:00,1637.0,10.806939,10806.939 +778,2025-03-07T02:20:01.439914-08:00,1725.0,10.801844,10801.844 +779,2025-03-07T02:20:12.244046-08:00,1687.0,10.804132,10804.132 +780,2025-03-07T02:20:23.052674-08:00,1725.0,10.808628,10808.628 +781,2025-03-07T02:20:33.867244-08:00,1733.0,10.81457,10814.57 +782,2025-03-07T02:20:44.665418-08:00,1703.0,10.798174,10798.174 +783,2025-03-07T02:20:55.474627-08:00,1663.0,10.809209,10809.209 +784,2025-03-07T02:21:06.280630-08:00,1717.0,10.806003,10806.003 +785,2025-03-07T02:21:17.087927-08:00,1727.0,10.807297,10807.297 +786,2025-03-07T02:21:27.893616-08:00,1726.0,10.805689,10805.689 +787,2025-03-07T02:21:38.694612-08:00,1712.0,10.800996,10800.996 +788,2025-03-07T02:21:49.507929-08:00,1690.0,10.813317,10813.317 +789,2025-03-07T02:22:00.301821-08:00,1659.0,10.793892,10793.892 +790,2025-03-07T02:22:11.119610-08:00,1704.0,10.817789,10817.789 +791,2025-03-07T02:22:21.922115-08:00,1721.0,10.802505,10802.505 +792,2025-03-07T02:22:32.737309-08:00,1697.0,10.815194,10815.194 +793,2025-03-07T02:22:43.541496-08:00,1648.0,10.804187,10804.187 +794,2025-03-07T02:22:54.344249-08:00,1732.0,10.802753,10802.753 +795,2025-03-07T02:23:05.159925-08:00,1690.0,10.815676,10815.676 +796,2025-03-07T02:23:15.962620-08:00,1687.0,10.802695,10802.695 +797,2025-03-07T02:23:26.770144-08:00,1693.0,10.807524,10807.524 +798,2025-03-07T02:23:37.563987-08:00,1733.0,10.793843,10793.843 +799,2025-03-07T02:23:48.370056-08:00,1648.0,10.806069,10806.069 +800,2025-03-07T02:23:59.163938-08:00,1731.0,10.793882,10793.882 +801,2025-03-07T02:24:09.973771-08:00,1673.0,10.809833,10809.833 +802,2025-03-07T02:24:20.772972-08:00,1730.0,10.799201,10799.201 +803,2025-03-07T02:24:31.567611-08:00,1664.0,10.794639,10794.639 +804,2025-03-07T02:24:42.382944-08:00,1706.0,10.815333,10815.333 +805,2025-03-07T02:24:53.190980-08:00,1702.0,10.808036,10808.036 +806,2025-03-07T02:25:03.984602-08:00,1687.0,10.793622,10793.622 +807,2025-03-07T02:25:14.799210-08:00,1711.0,10.814608,10814.608 +808,2025-03-07T02:25:25.601171-08:00,1693.0,10.801961,10801.961 +809,2025-03-07T02:25:36.405968-08:00,1727.0,10.804797,10804.797 +810,2025-03-07T02:25:47.200987-08:00,1727.0,10.795019,10795.019 +811,2025-03-07T02:25:58.006715-08:00,1654.0,10.805728,10805.728 +812,2025-03-07T02:26:08.806986-08:00,1731.0,10.800271,10800.271 +813,2025-03-07T02:26:19.267077-08:00,1701.0,10.460091,10460.091 +814,2025-03-07T02:26:19.601765-08:00,1701.0,0.334688,334.688 +815,2025-03-07T02:26:30.404841-08:00,1735.0,10.803076,10803.076 +816,2025-03-07T02:26:41.197617-08:00,1735.0,10.792776,10792.776 +817,2025-03-07T02:26:52.005209-08:00,1734.0,10.807592,10807.592 +818,2025-03-07T02:27:02.810610-08:00,1739.0,10.805401,10805.401 +819,2025-03-07T02:27:13.615670-08:00,1693.0,10.80506,10805.06 +820,2025-03-07T02:27:24.412533-08:00,1735.0,10.796863,10796.863 +821,2025-03-07T02:27:35.218627-08:00,1735.0,10.806094,10806.094 +822,2025-03-07T02:27:46.021613-08:00,1684.0,10.802986,10802.986 +823,2025-03-07T02:27:56.823612-08:00,1637.0,10.801999,10801.999 +824,2025-03-07T02:28:07.633765-08:00,1735.0,10.810153,10810.153 +825,2025-03-07T02:28:18.432613-08:00,1725.0,10.798848,10798.848 +826,2025-03-07T02:28:29.240662-08:00,1699.0,10.808049,10808.049 +827,2025-03-07T02:28:40.051210-08:00,1669.0,10.810548,10810.548 +828,2025-03-07T02:28:50.857590-08:00,1671.0,10.80638,10806.38 +829,2025-03-07T02:29:01.656938-08:00,1701.0,10.799348,10799.348 +830,2025-03-07T02:29:12.471244-08:00,1691.0,10.814306,10814.306 +831,2025-03-07T02:29:23.275944-08:00,1723.0,10.8047,10804.7 +832,2025-03-07T02:29:34.076913-08:00,1682.0,10.800969,10800.969 +833,2025-03-07T02:29:44.879772-08:00,1651.0,10.802859,10802.859 +834,2025-03-07T02:29:55.688834-08:00,1671.0,10.809062,10809.062 +835,2025-03-07T02:30:06.488626-08:00,1705.0,10.799792,10799.792 +836,2025-03-07T02:30:17.289945-08:00,1677.0,10.801319,10801.319 +837,2025-03-07T02:30:28.093623-08:00,1693.0,10.803678,10803.678 +838,2025-03-07T02:30:38.901428-08:00,1643.0,10.807805,10807.805 +839,2025-03-07T02:30:49.711747-08:00,1660.0,10.810319,10810.319 +840,2025-03-07T02:31:00.520085-08:00,1697.0,10.808338,10808.338 +841,2025-03-07T02:31:11.322611-08:00,1737.0,10.802526,10802.526 +842,2025-03-07T02:31:22.132867-08:00,1690.0,10.810256,10810.256 +843,2025-03-07T02:31:32.940648-08:00,1643.0,10.807781,10807.781 +844,2025-03-07T02:31:43.750316-08:00,1645.0,10.809668,10809.668 +845,2025-03-07T02:31:54.558120-08:00,1685.0,10.807804,10807.804 +846,2025-03-07T02:32:05.359729-08:00,1707.0,10.801609,10801.609 +847,2025-03-07T02:32:16.160625-08:00,1739.0,10.800896,10800.896 +848,2025-03-07T02:32:26.969972-08:00,1690.0,10.809347,10809.347 +849,2025-03-07T02:32:37.768339-08:00,1631.0,10.798367,10798.367 +850,2025-03-07T02:32:48.577938-08:00,1653.0,10.809599,10809.599 +851,2025-03-07T02:32:59.386386-08:00,1727.0,10.808448,10808.448 +852,2025-03-07T02:33:10.186944-08:00,1709.0,10.800558,10800.558 +853,2025-03-07T02:33:20.996993-08:00,1726.0,10.810049,10810.049 +854,2025-03-07T02:33:31.806692-08:00,1637.0,10.809699,10809.699 +855,2025-03-07T02:33:42.611670-08:00,1738.0,10.804978,10804.978 +856,2025-03-07T02:33:53.411623-08:00,1700.0,10.799953,10799.953 +857,2025-03-07T02:34:04.218725-08:00,1706.0,10.807102,10807.102 +858,2025-03-07T02:34:15.029137-08:00,1716.0,10.810412,10810.412 +859,2025-03-07T02:34:25.833682-08:00,1660.0,10.804545,10804.545 +860,2025-03-07T02:34:36.641612-08:00,1737.0,10.80793,10807.93 +861,2025-03-07T02:34:47.452637-08:00,1683.0,10.811025,10811.025 +862,2025-03-07T02:34:58.258842-08:00,1726.0,10.806205,10806.205 +863,2025-03-07T02:35:09.069686-08:00,1648.0,10.810844,10810.844 +864,2025-03-07T02:35:19.861938-08:00,1723.0,10.792252,10792.252 +865,2025-03-07T02:35:30.664851-08:00,1737.0,10.802913,10802.913 +866,2025-03-07T02:35:41.466615-08:00,1648.0,10.801764,10801.764 +867,2025-03-07T02:35:52.271617-08:00,1693.0,10.805002,10805.002 +868,2025-03-07T02:36:03.087886-08:00,1734.0,10.816269,10816.269 +869,2025-03-07T02:36:13.891185-08:00,1683.0,10.803299,10803.299 +870,2025-03-07T02:36:24.704903-08:00,1739.0,10.813718,10813.718 +871,2025-03-07T02:36:35.507620-08:00,1709.0,10.802717,10802.717 +872,2025-03-07T02:36:46.312025-08:00,1697.0,10.804405,10804.405 +873,2025-03-07T02:36:57.115838-08:00,1727.0,10.803813,10803.813 +874,2025-03-07T02:37:07.918287-08:00,1660.0,10.802449,10802.449 +875,2025-03-07T02:37:18.732865-08:00,1731.0,10.814578,10814.578 +876,2025-03-07T02:37:29.536853-08:00,1707.0,10.803988,10803.988 +877,2025-03-07T02:37:40.338609-08:00,1730.0,10.801756,10801.756 +878,2025-03-07T02:37:51.148760-08:00,1648.0,10.810151,10810.151 +879,2025-03-07T02:38:01.950966-08:00,1730.0,10.802206,10802.206 +880,2025-03-07T02:38:12.758907-08:00,1695.0,10.807941,10807.941 +881,2025-03-07T02:38:23.563622-08:00,1658.0,10.804715,10804.715 +882,2025-03-07T02:38:34.378655-08:00,1725.0,10.815033,10815.033 +883,2025-03-07T02:38:45.173966-08:00,1699.0,10.795311,10795.311 +884,2025-03-07T02:38:55.979773-08:00,1733.0,10.805807,10805.807 +885,2025-03-07T02:39:06.793604-08:00,1698.0,10.813831,10813.831 +886,2025-03-07T02:39:17.592229-08:00,1715.0,10.798625,10798.625 +887,2025-03-07T02:39:28.393611-08:00,1729.0,10.801382,10801.382 +888,2025-03-07T02:39:39.203540-08:00,1714.0,10.809929,10809.929 +889,2025-03-07T02:39:50.006788-08:00,1676.0,10.803248,10803.248 +890,2025-03-07T02:40:00.815183-08:00,1649.0,10.808395,10808.395 +891,2025-03-07T02:40:11.612408-08:00,1697.0,10.797225,10797.225 +892,2025-03-07T02:40:22.410722-08:00,1734.0,10.798314,10798.314 +893,2025-03-07T02:40:33.213831-08:00,1735.0,10.803109,10803.109 +894,2025-03-07T02:40:44.025079-08:00,1709.0,10.811248,10811.248 +895,2025-03-07T02:40:54.829993-08:00,1725.0,10.804914,10804.914 +896,2025-03-07T02:41:05.632413-08:00,1705.0,10.80242,10802.42 +897,2025-03-07T02:41:16.438684-08:00,1735.0,10.806271,10806.271 +898,2025-03-07T02:41:27.232954-08:00,1705.0,10.79427,10794.27 +899,2025-03-07T02:41:38.037744-08:00,1694.0,10.80479,10804.79 +900,2025-03-07T02:41:48.836821-08:00,1738.0,10.799077,10799.077 +901,2025-03-07T02:41:59.645393-08:00,1692.0,10.808572,10808.572 +902,2025-03-07T02:42:10.444780-08:00,1737.0,10.799387,10799.387 +903,2025-03-07T02:42:21.248852-08:00,1651.0,10.804072,10804.072 +904,2025-03-07T02:42:32.046077-08:00,1697.0,10.797225,10797.225 +905,2025-03-07T02:42:42.843626-08:00,1735.0,10.797549,10797.549 +906,2025-03-07T02:42:53.645619-08:00,1693.0,10.801993,10801.993 +907,2025-03-07T02:43:04.441777-08:00,1718.0,10.796158,10796.158 +908,2025-03-07T02:43:15.253623-08:00,1654.0,10.811846,10811.846 +909,2025-03-07T02:43:26.054618-08:00,1735.0,10.800995,10800.995 +910,2025-03-07T02:43:36.857989-08:00,1735.0,10.803371,10803.371 +911,2025-03-07T02:43:47.651844-08:00,1678.0,10.793855,10793.855 +912,2025-03-07T02:43:58.461130-08:00,1694.0,10.809286,10809.286 +913,2025-03-07T02:44:09.256793-08:00,1728.0,10.795663,10795.663 +914,2025-03-07T02:44:20.060593-08:00,1734.0,10.8038,10803.8 +915,2025-03-07T02:44:30.869670-08:00,1734.0,10.809077,10809.077 +916,2025-03-07T02:44:41.661628-08:00,1719.0,10.791958,10791.958 +917,2025-03-07T02:44:52.463857-08:00,1685.0,10.802229,10802.229 +918,2025-03-07T02:45:03.262895-08:00,1699.0,10.799038,10799.038 +919,2025-03-07T02:45:14.066628-08:00,1698.0,10.803733,10803.733 +920,2025-03-07T02:45:24.874764-08:00,1735.0,10.808136,10808.136 +921,2025-03-07T02:45:35.672624-08:00,1702.0,10.79786,10797.86 +922,2025-03-07T02:45:46.463894-08:00,1705.0,10.79127,10791.27 +923,2025-03-07T02:45:57.267519-08:00,1734.0,10.803625,10803.625 +924,2025-03-07T02:46:08.064296-08:00,1653.0,10.796777,10796.777 +925,2025-03-07T02:46:18.862609-08:00,1693.0,10.798313,10798.313 +926,2025-03-07T02:46:29.663619-08:00,1699.0,10.80101,10801.01 +927,2025-03-07T02:46:40.465622-08:00,1710.0,10.802003,10802.003 +928,2025-03-07T02:46:51.266619-08:00,1695.0,10.800997,10800.997 +929,2025-03-07T02:47:02.070766-08:00,1727.0,10.804147,10804.147 +930,2025-03-07T02:47:12.880848-08:00,1668.0,10.810082,10810.082 +931,2025-03-07T02:47:23.682613-08:00,1732.0,10.801765,10801.765 +932,2025-03-07T02:47:34.473800-08:00,1665.0,10.791187,10791.187 +933,2025-03-07T02:47:45.280618-08:00,1681.0,10.806818,10806.818 +934,2025-03-07T02:47:56.078823-08:00,1730.0,10.798205,10798.205 +935,2025-03-07T02:48:06.875228-08:00,1654.0,10.796405,10796.405 +936,2025-03-07T02:48:17.677604-08:00,1694.0,10.802376,10802.376 +937,2025-03-07T02:48:28.472972-08:00,1675.0,10.795368,10795.368 +938,2025-03-07T02:48:39.271924-08:00,1681.0,10.798952,10798.952 +939,2025-03-07T02:48:50.069944-08:00,1734.0,10.79802,10798.02 +940,2025-03-07T02:49:00.868092-08:00,1731.0,10.798148,10798.148 +941,2025-03-07T02:49:11.669617-08:00,1654.0,10.801525,10801.525 +942,2025-03-07T02:49:22.478137-08:00,1735.0,10.80852,10808.52 +943,2025-03-07T02:49:33.281158-08:00,1720.0,10.803021,10803.021 +944,2025-03-07T02:49:44.079663-08:00,1680.0,10.798505,10798.505 +945,2025-03-07T02:49:54.882606-08:00,1654.0,10.802943,10802.943 +946,2025-03-07T02:50:05.679617-08:00,1713.0,10.797011,10797.011 +947,2025-03-07T02:50:16.477842-08:00,1695.0,10.798225,10798.225 +948,2025-03-07T02:50:27.274621-08:00,1737.0,10.796779,10796.779 +949,2025-03-07T02:50:38.076618-08:00,1705.0,10.801997,10801.997 +950,2025-03-07T02:50:48.877883-08:00,1691.0,10.801265,10801.265 +951,2025-03-07T02:50:59.680620-08:00,1659.0,10.802737,10802.737 +952,2025-03-07T02:51:10.478622-08:00,1715.0,10.798002,10798.002 +953,2025-03-07T02:51:21.292069-08:00,1731.0,10.813447,10813.447 +954,2025-03-07T02:51:32.089612-08:00,1689.0,10.797543,10797.543 +955,2025-03-07T02:51:42.888612-08:00,1711.0,10.799,10799.0 +956,2025-03-07T02:51:53.684958-08:00,1677.0,10.796346,10796.346 +957,2025-03-07T02:52:04.486871-08:00,1692.0,10.801913,10801.913 +958,2025-03-07T02:52:15.292130-08:00,1728.0,10.805259,10805.259 +959,2025-03-07T02:52:26.101601-08:00,1737.0,10.809471,10809.471 +960,2025-03-07T02:52:36.897507-08:00,1658.0,10.795906,10795.906 +961,2025-03-07T02:52:47.708655-08:00,1648.0,10.811148,10811.148 +962,2025-03-07T02:52:58.510681-08:00,1651.0,10.802026,10802.026 +963,2025-03-07T02:53:09.325741-08:00,1707.0,10.81506,10815.06 +964,2025-03-07T02:53:20.122806-08:00,1727.0,10.797065,10797.065 +965,2025-03-07T02:53:30.934323-08:00,1691.0,10.811517,10811.517 +966,2025-03-07T02:53:41.728280-08:00,1718.0,10.793957,10793.957 +967,2025-03-07T02:53:52.537605-08:00,1728.0,10.809325,10809.325 +968,2025-03-07T02:54:03.336113-08:00,1712.0,10.798508,10798.508 +969,2025-03-07T02:54:14.132669-08:00,1729.0,10.796556,10796.556 +970,2025-03-07T02:54:24.941600-08:00,1691.0,10.808931,10808.931 +971,2025-03-07T02:54:35.739627-08:00,1708.0,10.798027,10798.027 +972,2025-03-07T02:54:46.544868-08:00,1698.0,10.805241,10805.241 +973,2025-03-07T02:54:57.345627-08:00,1734.0,10.800759,10800.759 +974,2025-03-07T02:55:08.142134-08:00,1699.0,10.796507,10796.507 +975,2025-03-07T02:55:18.944899-08:00,1713.0,10.802765,10802.765 +976,2025-03-07T02:55:29.744042-08:00,1740.0,10.799143,10799.143 +977,2025-03-07T02:55:40.546916-08:00,1648.0,10.802874,10802.874 +978,2025-03-07T02:55:51.351570-08:00,1729.0,10.804654,10804.654 +979,2025-03-07T02:56:02.152172-08:00,1717.0,10.800602,10800.602 +980,2025-03-07T02:56:12.965085-08:00,1695.0,10.812913,10812.913 +981,2025-03-07T02:56:23.764831-08:00,1727.0,10.799746,10799.746 +982,2025-03-07T02:56:34.570946-08:00,1697.0,10.806115,10806.115 +983,2025-03-07T02:56:45.363671-08:00,1733.0,10.792725,10792.725 +984,2025-03-07T02:56:56.166575-08:00,1733.0,10.802904,10802.904 +985,2025-03-07T02:57:06.971678-08:00,1734.0,10.805103,10805.103 +986,2025-03-07T02:57:17.772596-08:00,1713.0,10.800918,10800.918 +987,2025-03-07T02:57:28.576130-08:00,1653.0,10.803534,10803.534 +988,2025-03-07T02:57:39.378775-08:00,1738.0,10.802645,10802.645 +989,2025-03-07T02:57:50.183318-08:00,1734.0,10.804543,10804.543 +990,2025-03-07T02:58:00.980616-08:00,1699.0,10.797298,10797.298 +991,2025-03-07T02:58:11.782647-08:00,1725.0,10.802031,10802.031 +992,2025-03-07T02:58:22.591930-08:00,1738.0,10.809283,10809.283 +993,2025-03-07T02:58:33.393034-08:00,1740.0,10.801104,10801.104 +994,2025-03-07T02:58:44.198253-08:00,1680.0,10.805219,10805.219 +995,2025-03-07T02:58:54.995684-08:00,1740.0,10.797431,10797.431 +996,2025-03-07T02:59:05.799083-08:00,1669.0,10.803399,10803.399 +997,2025-03-07T02:59:16.601933-08:00,1648.0,10.80285,10802.85 +998,2025-03-07T02:59:27.404755-08:00,1707.0,10.802822,10802.822 +999,2025-03-07T02:59:38.199658-08:00,1683.0,10.794903,10794.903 +1000,2025-03-07T02:59:49.000924-08:00,1694.0,10.801266,10801.266 +1001,2025-03-07T02:59:59.802682-08:00,1738.0,10.801758,10801.758 +1002,2025-03-07T03:00:10.608844-08:00,1672.0,10.806162,10806.162 +1003,2025-03-07T03:00:21.404605-08:00,1658.0,10.795761,10795.761 +1004,2025-03-07T03:00:32.214626-08:00,1735.0,10.810021,10810.021 +1005,2025-03-07T03:00:43.007800-08:00,1735.0,10.793174,10793.174 +1006,2025-03-07T03:00:53.811677-08:00,1729.0,10.803877,10803.877 +1007,2025-03-07T03:01:04.619042-08:00,1734.0,10.807365,10807.365 +1008,2025-03-07T03:01:15.410627-08:00,1651.0,10.791585,10791.585 +1009,2025-03-07T03:01:26.213804-08:00,1715.0,10.803177,10803.177 +1010,2025-03-07T03:01:37.016822-08:00,1734.0,10.803018,10803.018 +1011,2025-03-07T03:01:47.814940-08:00,1735.0,10.798118,10798.118 +1012,2025-03-07T03:01:58.612330-08:00,1696.0,10.79739,10797.39 +1013,2025-03-07T03:02:09.419045-08:00,1693.0,10.806715,10806.715 +1014,2025-03-07T03:02:20.218892-08:00,1648.0,10.799847,10799.847 +1015,2025-03-07T03:02:31.011611-08:00,1685.0,10.792719,10792.719 +1016,2025-03-07T03:02:41.813651-08:00,1741.0,10.80204,10802.04 +1017,2025-03-07T03:02:52.622050-08:00,1699.0,10.808399,10808.399 +1018,2025-03-07T03:03:03.426170-08:00,1721.0,10.80412,10804.12 +1019,2025-03-07T03:03:14.223601-08:00,1712.0,10.797431,10797.431 +1020,2025-03-07T03:03:25.021825-08:00,1733.0,10.798224,10798.224 +1021,2025-03-07T03:03:35.819616-08:00,1727.0,10.797791,10797.791 +1022,2025-03-07T03:03:46.624028-08:00,1653.0,10.804412,10804.412 +1023,2025-03-07T03:03:57.427623-08:00,1739.0,10.803595,10803.595 +1024,2025-03-07T03:04:08.233767-08:00,1735.0,10.806144,10806.144 +1025,2025-03-07T03:04:19.037870-08:00,1689.0,10.804103,10804.103 +1026,2025-03-07T03:04:29.832768-08:00,1696.0,10.794898,10794.898 +1027,2025-03-07T03:04:40.644652-08:00,1717.0,10.811884,10811.884 +1028,2025-03-07T03:04:51.440849-08:00,1738.0,10.796197,10796.197 +1029,2025-03-07T03:05:02.249611-08:00,1678.0,10.808762,10808.762 +1030,2025-03-07T03:05:13.047619-08:00,1680.0,10.798008,10798.008 +1031,2025-03-07T03:05:23.856607-08:00,1662.0,10.808988,10808.988 +1032,2025-03-07T03:05:34.607997-08:00,1718.0,10.75139,10751.39 +1033,2025-03-07T03:05:45.412848-08:00,1675.0,10.804851,10804.851 +1034,2025-03-07T03:05:56.218303-08:00,1712.0,10.805455,10805.455 +1035,2025-03-07T03:06:07.024502-08:00,1700.0,10.806199,10806.199 +1036,2025-03-07T03:06:17.821837-08:00,1642.0,10.797335,10797.335 +1037,2025-03-07T03:06:28.621858-08:00,1712.0,10.800021,10800.021 +1038,2025-03-07T03:06:39.424008-08:00,1687.0,10.80215,10802.15 +1039,2025-03-07T03:06:50.222854-08:00,1686.0,10.798846,10798.846 +1040,2025-03-07T03:07:01.028851-08:00,1651.0,10.805997,10805.997 +1041,2025-03-07T03:07:11.831846-08:00,1663.0,10.802995,10802.995 +1042,2025-03-07T03:07:22.631082-08:00,1712.0,10.799236,10799.236 +1043,2025-03-07T03:07:33.431834-08:00,1661.0,10.800752,10800.752 +1044,2025-03-07T03:07:44.238901-08:00,1735.0,10.807067,10807.067 +1045,2025-03-07T03:07:55.043212-08:00,1697.0,10.804311,10804.311 +1046,2025-03-07T03:08:05.848923-08:00,1725.0,10.805711,10805.711 +1047,2025-03-07T03:08:16.647840-08:00,1741.0,10.798917,10798.917 +1048,2025-03-07T03:08:27.446859-08:00,1665.0,10.799019,10799.019 +1049,2025-03-07T03:08:38.243862-08:00,1729.0,10.797003,10797.003 +1050,2025-03-07T03:08:49.052095-08:00,1648.0,10.808233,10808.233 +1051,2025-03-07T03:08:59.849214-08:00,1698.0,10.797119,10797.119 +1052,2025-03-07T03:09:10.663978-08:00,1731.0,10.814764,10814.764 +1053,2025-03-07T03:09:21.460109-08:00,1712.0,10.796131,10796.131 +1054,2025-03-07T03:09:32.265989-08:00,1710.0,10.80588,10805.88 +1055,2025-03-07T03:09:43.063106-08:00,1683.0,10.797117,10797.117 +1056,2025-03-07T03:09:53.868166-08:00,1740.0,10.80506,10805.06 +1057,2025-03-07T03:10:04.673852-08:00,1671.0,10.805686,10805.686 +1058,2025-03-07T03:10:15.472391-08:00,1741.0,10.798539,10798.539 +1059,2025-03-07T03:10:26.275996-08:00,1715.0,10.803605,10803.605 +1060,2025-03-07T03:10:37.084111-08:00,1742.0,10.808115,10808.115 +1061,2025-03-07T03:10:47.886081-08:00,1699.0,10.80197,10801.97 +1062,2025-03-07T03:10:58.683057-08:00,1678.0,10.796976,10796.976 +1063,2025-03-07T03:11:07.002136-08:00,1676.0,8.319079,8319.079 +1064,2025-03-07T03:11:09.489867-08:00,1684.0,2.487731,2487.731 +1065,2025-03-07T03:11:20.298391-08:00,1680.0,10.808524,10808.524 +1066,2025-03-07T03:11:31.099210-08:00,1664.0,10.800819,10800.819 +1067,2025-03-07T03:11:41.911855-08:00,1737.0,10.812645,10812.645 +1068,2025-03-07T03:11:52.712109-08:00,1741.0,10.800254,10800.254 +1069,2025-03-07T03:12:03.515162-08:00,1648.0,10.803053,10803.053 +1070,2025-03-07T03:12:14.315113-08:00,1653.0,10.799951,10799.951 +1071,2025-03-07T03:12:25.116899-08:00,1728.0,10.801786,10801.786 +1072,2025-03-07T03:12:35.916860-08:00,1699.0,10.799961,10799.961 +1073,2025-03-07T03:12:46.727898-08:00,1681.0,10.811038,10811.038 +1074,2025-03-07T03:12:57.517231-08:00,1716.0,10.789333,10789.333 +1075,2025-03-07T03:13:08.319161-08:00,1715.0,10.80193,10801.93 +1076,2025-03-07T03:13:19.118221-08:00,1727.0,10.79906,10799.06 +1077,2025-03-07T03:13:29.918185-08:00,1646.0,10.799964,10799.964 +1078,2025-03-07T03:13:40.722494-08:00,1736.0,10.804309,10804.309 +1079,2025-03-07T03:13:51.526386-08:00,1703.0,10.803892,10803.892 +1080,2025-03-07T03:14:02.317063-08:00,1743.0,10.790677,10790.677 +1081,2025-03-07T03:14:13.120844-08:00,1726.0,10.803781,10803.781 +1082,2025-03-07T03:14:23.919857-08:00,1673.0,10.799013,10799.013 +1083,2025-03-07T03:14:34.724925-08:00,1707.0,10.805068,10805.068 +1084,2025-03-07T03:14:45.532907-08:00,1739.0,10.807982,10807.982 +1085,2025-03-07T03:14:56.335842-08:00,1735.0,10.802935,10802.935 +1086,2025-03-07T03:15:07.131911-08:00,1680.0,10.796069,10796.069 +1087,2025-03-07T03:15:17.936837-08:00,1686.0,10.804926,10804.926 +1088,2025-03-07T03:15:28.737978-08:00,1695.0,10.801141,10801.141 +1089,2025-03-07T03:15:39.534051-08:00,1664.0,10.796073,10796.073 +1090,2025-03-07T03:15:50.335844-08:00,1663.0,10.801793,10801.793 +1091,2025-03-07T03:16:01.141848-08:00,1733.0,10.806004,10806.004 +1092,2025-03-07T03:16:11.940852-08:00,1719.0,10.799004,10799.004 +1093,2025-03-07T03:16:22.739715-08:00,1722.0,10.798863,10798.863 +1094,2025-03-07T03:16:33.537161-08:00,1735.0,10.797446,10797.446 +1095,2025-03-07T03:16:44.344855-08:00,1685.0,10.807694,10807.694 +1096,2025-03-07T03:16:55.137937-08:00,1659.0,10.793082,10793.082 +1097,2025-03-07T03:17:05.946842-08:00,1673.0,10.808905,10808.905 +1098,2025-03-07T03:17:16.737616-08:00,1711.0,10.790774,10790.774 +1099,2025-03-07T03:17:27.543214-08:00,1643.0,10.805598,10805.598 +1100,2025-03-07T03:17:38.346172-08:00,1653.0,10.802958,10802.958 +1101,2025-03-07T03:17:49.140905-08:00,1691.0,10.794733,10794.733 +1102,2025-03-07T03:17:59.948883-08:00,1695.0,10.807978,10807.978 +1103,2025-03-07T03:18:10.742113-08:00,1693.0,10.79323,10793.23 +1104,2025-03-07T03:18:21.542852-08:00,1737.0,10.800739,10800.739 +1105,2025-03-07T03:18:32.349837-08:00,1722.0,10.806985,10806.985 +1106,2025-03-07T03:18:43.151236-08:00,1669.0,10.801399,10801.399 +1107,2025-03-07T03:18:53.949845-08:00,1731.0,10.798609,10798.609 +1108,2025-03-07T03:19:04.758926-08:00,1686.0,10.809081,10809.081 +1109,2025-03-07T03:19:15.566275-08:00,1703.0,10.807349,10807.349 +1110,2025-03-07T03:19:25.361717-08:00,1680.0,9.795442,9795.442 +1111,2025-03-07T03:19:26.363949-08:00,1726.0,1.002232,1002.232 +1112,2025-03-07T03:19:37.163853-08:00,1723.0,10.799904,10799.904 +1113,2025-03-07T03:19:47.971612-08:00,1731.0,10.807759,10807.759 +1114,2025-03-07T03:19:58.775851-08:00,1691.0,10.804239,10804.239 +1115,2025-03-07T03:20:09.572856-08:00,1740.0,10.797005,10797.005 +1116,2025-03-07T03:20:20.382099-08:00,1682.0,10.809243,10809.243 +1117,2025-03-07T03:20:31.174007-08:00,1711.0,10.791908,10791.908 +1118,2025-03-07T03:20:41.982854-08:00,1731.0,10.808847,10808.847 +1119,2025-03-07T03:20:52.777860-08:00,1653.0,10.795006,10795.006 +1120,2025-03-07T03:21:03.576857-08:00,1735.0,10.798997,10798.997 +1121,2025-03-07T03:21:14.377864-08:00,1733.0,10.801007,10801.007 +1122,2025-03-07T03:21:25.183847-08:00,1667.0,10.805983,10805.983 +1123,2025-03-07T03:21:35.971441-08:00,1740.0,10.787594,10787.594 +1124,2025-03-07T03:21:46.768354-08:00,1738.0,10.796913,10796.913 +1125,2025-03-07T03:21:57.573741-08:00,1715.0,10.805387,10805.387 +1126,2025-03-07T03:22:08.369842-08:00,1739.0,10.796101,10796.101 +1127,2025-03-07T03:22:19.172047-08:00,1724.0,10.802205,10802.205 +1128,2025-03-07T03:22:29.978095-08:00,1701.0,10.806048,10806.048 +1129,2025-03-07T03:22:40.780018-08:00,1675.0,10.801923,10801.923 +1130,2025-03-07T03:22:51.584116-08:00,1726.0,10.804098,10804.098 +1131,2025-03-07T03:23:02.379843-08:00,1685.0,10.795727,10795.727 +1132,2025-03-07T03:23:13.189854-08:00,1742.0,10.810011,10810.011 +1133,2025-03-07T03:23:23.982086-08:00,1710.0,10.792232,10792.232 +1134,2025-03-07T03:23:34.788864-08:00,1744.0,10.806778,10806.778 +1135,2025-03-07T03:23:45.581848-08:00,1680.0,10.792984,10792.984 +1136,2025-03-07T03:23:56.384147-08:00,1731.0,10.802299,10802.299 +1137,2025-03-07T03:24:07.193857-08:00,1707.0,10.80971,10809.71 +1138,2025-03-07T03:24:17.990831-08:00,1691.0,10.796974,10796.974 +1139,2025-03-07T03:24:28.798172-08:00,1737.0,10.807341,10807.341 +1140,2025-03-07T03:24:39.602852-08:00,1692.0,10.80468,10804.68 +1141,2025-03-07T03:24:50.403860-08:00,1648.0,10.801008,10801.008 +1142,2025-03-07T03:25:01.201858-08:00,1696.0,10.797998,10797.998 +1143,2025-03-07T03:25:12.006966-08:00,1667.0,10.805108,10805.108 +1144,2025-03-07T03:25:22.808120-08:00,1681.0,10.801154,10801.154 +1145,2025-03-07T03:25:33.620861-08:00,1712.0,10.812741,10812.741 +1146,2025-03-07T03:25:44.428859-08:00,1657.0,10.807998,10807.998 +1147,2025-03-07T03:25:55.231532-08:00,1694.0,10.802673,10802.673 +1148,2025-03-07T03:26:06.034978-08:00,1690.0,10.803446,10803.446 +1149,2025-03-07T03:26:16.840004-08:00,1660.0,10.805026,10805.026 +1150,2025-03-07T03:26:27.643083-08:00,1653.0,10.803079,10803.079 +1151,2025-03-07T03:26:38.438844-08:00,1737.0,10.795761,10795.761 +1152,2025-03-07T03:26:49.243848-08:00,1712.0,10.805004,10805.004 +1153,2025-03-07T03:27:00.041990-08:00,1731.0,10.798142,10798.142 +1154,2025-03-07T03:27:10.843864-08:00,1725.0,10.801874,10801.874 +1155,2025-03-07T03:27:21.648267-08:00,1698.0,10.804403,10804.403 +1156,2025-03-07T03:27:32.460076-08:00,1728.0,10.811809,10811.809 +1157,2025-03-07T03:27:43.257863-08:00,1679.0,10.797787,10797.787 +1158,2025-03-07T03:27:54.068849-08:00,1712.0,10.810986,10810.986 +1159,2025-03-07T03:28:04.878905-08:00,1738.0,10.810056,10810.056 +1160,2025-03-07T03:28:15.677869-08:00,1643.0,10.798964,10798.964 +1161,2025-03-07T03:28:26.490876-08:00,1706.0,10.813007,10813.007 +1162,2025-03-07T03:28:37.293433-08:00,1697.0,10.802557,10802.557 +1163,2025-03-07T03:28:48.099166-08:00,1733.0,10.805733,10805.733 +1164,2025-03-07T03:28:58.900144-08:00,1675.0,10.800978,10800.978 +1165,2025-03-07T03:29:09.704015-08:00,1728.0,10.803871,10803.871 +1166,2025-03-07T03:29:20.501214-08:00,1653.0,10.797199,10797.199 +1167,2025-03-07T03:29:31.302935-08:00,1740.0,10.801721,10801.721 +1168,2025-03-07T03:29:42.107166-08:00,1737.0,10.804231,10804.231 +1169,2025-03-07T03:29:52.910408-08:00,1715.0,10.803242,10803.242 +1170,2025-03-07T03:30:03.706900-08:00,1695.0,10.796492,10796.492 +1171,2025-03-07T03:30:14.511097-08:00,1740.0,10.804197,10804.197 +1172,2025-03-07T03:30:25.314842-08:00,1703.0,10.803745,10803.745 +1173,2025-03-07T03:30:36.125942-08:00,1651.0,10.8111,10811.1 +1174,2025-03-07T03:30:46.925860-08:00,1668.0,10.799918,10799.918 +1175,2025-03-07T03:30:57.732116-08:00,1722.0,10.806256,10806.256 +1176,2025-03-07T03:31:08.524282-08:00,1683.0,10.792166,10792.166 +1177,2025-03-07T03:31:19.325858-08:00,1741.0,10.801576,10801.576 +1178,2025-03-07T03:31:30.131848-08:00,1696.0,10.80599,10805.99 +1179,2025-03-07T03:31:40.937123-08:00,1713.0,10.805275,10805.275 +1180,2025-03-07T03:31:51.736948-08:00,1741.0,10.799825,10799.825 +1181,2025-03-07T03:32:02.541945-08:00,1664.0,10.804997,10804.997 +1182,2025-03-07T03:32:13.344864-08:00,1728.0,10.802919,10802.919 +1183,2025-03-07T03:32:24.139862-08:00,1694.0,10.794998,10794.998 +1184,2025-03-07T03:32:34.949325-08:00,1695.0,10.809463,10809.463 +1185,2025-03-07T03:32:45.749990-08:00,1734.0,10.800665,10800.665 +1186,2025-03-07T03:32:56.550111-08:00,1703.0,10.800121,10800.121 +1187,2025-03-07T03:33:07.354870-08:00,1709.0,10.804759,10804.759 +1188,2025-03-07T03:33:18.154982-08:00,1684.0,10.800112,10800.112 +1189,2025-03-07T03:33:28.951142-08:00,1742.0,10.79616,10796.16 +1190,2025-03-07T03:33:39.750997-08:00,1703.0,10.799855,10799.855 +1191,2025-03-07T03:33:50.561080-08:00,1693.0,10.810083,10810.083 +1192,2025-03-07T03:34:01.350099-08:00,1711.0,10.789019,10789.019 +1193,2025-03-07T03:34:12.150298-08:00,1727.0,10.800199,10800.199 +1194,2025-03-07T03:34:22.953166-08:00,1697.0,10.802868,10802.868 +1195,2025-03-07T03:34:33.757235-08:00,1680.0,10.804069,10804.069 +1196,2025-03-07T03:34:44.556170-08:00,1722.0,10.798935,10798.935 +1197,2025-03-07T03:34:55.364282-08:00,1711.0,10.808112,10808.112 +1198,2025-03-07T03:35:06.166412-08:00,1702.0,10.80213,10802.13 +1199,2025-03-07T03:35:16.975255-08:00,1723.0,10.808843,10808.843 +1200,2025-03-07T03:35:27.774197-08:00,1699.0,10.798942,10798.942 +1201,2025-03-07T03:35:38.582438-08:00,1727.0,10.808241,10808.241 +1202,2025-03-07T03:35:49.385876-08:00,1651.0,10.803438,10803.438 +1203,2025-03-07T03:36:00.189173-08:00,1670.0,10.803297,10803.297 +1204,2025-03-07T03:36:10.996116-08:00,1708.0,10.806943,10806.943 +1205,2025-03-07T03:36:21.805860-08:00,1717.0,10.809744,10809.744 +1206,2025-03-07T03:36:32.611125-08:00,1651.0,10.805265,10805.265 +1207,2025-03-07T03:36:43.412984-08:00,1672.0,10.801859,10801.859 +1208,2025-03-07T03:36:54.216849-08:00,1669.0,10.803865,10803.865 +1209,2025-03-07T03:37:05.008207-08:00,1697.0,10.791358,10791.358 +1210,2025-03-07T03:37:15.815988-08:00,1680.0,10.807781,10807.781 +1211,2025-03-07T03:37:26.619725-08:00,1650.0,10.803737,10803.737 +1212,2025-03-07T03:37:37.430856-08:00,1743.0,10.811131,10811.131 +1213,2025-03-07T03:37:48.230080-08:00,1693.0,10.799224,10799.224 +1214,2025-03-07T03:37:59.029088-08:00,1685.0,10.799008,10799.008 +1215,2025-03-07T03:38:09.834858-08:00,1726.0,10.80577,10805.77 +1216,2025-03-07T03:38:20.636515-08:00,1728.0,10.801657,10801.657 +1217,2025-03-07T03:38:31.435201-08:00,1706.0,10.798686,10798.686 +1218,2025-03-07T03:38:42.239030-08:00,1694.0,10.803829,10803.829 +1219,2025-03-07T03:38:53.041151-08:00,1719.0,10.802121,10802.121 +1220,2025-03-07T03:39:03.848981-08:00,1730.0,10.80783,10807.83 +1221,2025-03-07T03:39:14.649164-08:00,1703.0,10.800183,10800.183 +1222,2025-03-07T03:39:25.447114-08:00,1680.0,10.79795,10797.95 +1223,2025-03-07T03:39:36.253250-08:00,1680.0,10.806136,10806.136 +1224,2025-03-07T03:39:47.047682-08:00,1673.0,10.794432,10794.432 +1225,2025-03-07T03:39:57.849759-08:00,1669.0,10.802077,10802.077 +1226,2025-03-07T03:40:08.641854-08:00,1695.0,10.792095,10792.095 +1227,2025-03-07T03:40:19.438840-08:00,1664.0,10.796986,10796.986 +1228,2025-03-07T03:40:30.236856-08:00,1663.0,10.798016,10798.016 +1229,2025-03-07T03:40:41.050081-08:00,1714.0,10.813225,10813.225 +1230,2025-03-07T03:40:51.845123-08:00,1727.0,10.795042,10795.042 +1231,2025-03-07T03:41:02.652839-08:00,1680.0,10.807716,10807.716 +1232,2025-03-07T03:41:13.445044-08:00,1741.0,10.792205,10792.205 +1233,2025-03-07T03:41:24.252840-08:00,1692.0,10.807796,10807.796 +1234,2025-03-07T03:41:35.058060-08:00,1743.0,10.80522,10805.22 +1235,2025-03-07T03:41:45.866040-08:00,1712.0,10.80798,10807.98 +1236,2025-03-07T03:41:56.665042-08:00,1727.0,10.799002,10799.002 +1237,2025-03-07T03:42:07.466495-08:00,1644.0,10.801453,10801.453 +1238,2025-03-07T03:42:18.274117-08:00,1677.0,10.807622,10807.622 +1239,2025-03-07T03:42:29.073111-08:00,1666.0,10.798994,10798.994 +1240,2025-03-07T03:42:39.882955-08:00,1689.0,10.809844,10809.844 +1241,2025-03-07T03:42:50.684917-08:00,1728.0,10.801962,10801.962 +1242,2025-03-07T03:43:01.483904-08:00,1701.0,10.798987,10798.987 +1243,2025-03-07T03:43:12.270026-08:00,1744.0,10.786122,10786.122 +1244,2025-03-07T03:43:23.072235-08:00,1735.0,10.802209,10802.209 +1245,2025-03-07T03:43:33.869275-08:00,1698.0,10.79704,10797.04 +1246,2025-03-07T03:43:44.674344-08:00,1717.0,10.805069,10805.069 +1247,2025-03-07T03:43:55.475237-08:00,1680.0,10.800893,10800.893 +1248,2025-03-07T03:44:06.265858-08:00,1668.0,10.790621,10790.621 +1249,2025-03-07T03:44:17.071164-08:00,1738.0,10.805306,10805.306 +1250,2025-03-07T03:44:27.867848-08:00,1736.0,10.796684,10796.684 +1251,2025-03-07T03:44:38.673853-08:00,1730.0,10.806005,10806.005 +1252,2025-03-07T03:44:49.473860-08:00,1734.0,10.800007,10800.007 +1253,2025-03-07T03:45:00.273988-08:00,1693.0,10.800128,10800.128 +1254,2025-03-07T03:45:11.071849-08:00,1733.0,10.797861,10797.861 +1255,2025-03-07T03:45:21.886258-08:00,1662.0,10.814409,10814.409 +1256,2025-03-07T03:45:32.682894-08:00,1693.0,10.796636,10796.636 +1257,2025-03-07T03:45:43.484059-08:00,1674.0,10.801165,10801.165 +1258,2025-03-07T03:45:54.290079-08:00,1710.0,10.80602,10806.02 +1259,2025-03-07T03:46:05.091861-08:00,1743.0,10.801782,10801.782 +1260,2025-03-07T03:46:15.890130-08:00,1691.0,10.798269,10798.269 +1261,2025-03-07T03:46:26.682957-08:00,1739.0,10.792827,10792.827 +1262,2025-03-07T03:46:37.488683-08:00,1728.0,10.805726,10805.726 +1263,2025-03-07T03:46:48.280387-08:00,1743.0,10.791704,10791.704 +1264,2025-03-07T03:46:59.078252-08:00,1697.0,10.797865,10797.865 +1265,2025-03-07T03:47:09.879835-08:00,1741.0,10.801583,10801.583 +1266,2025-03-07T03:47:20.679238-08:00,1719.0,10.799403,10799.403 +1267,2025-03-07T03:47:31.478162-08:00,1737.0,10.798924,10798.924 +1268,2025-03-07T03:47:42.282935-08:00,1707.0,10.804773,10804.773 +1269,2025-03-07T03:47:53.078895-08:00,1728.0,10.79596,10795.96 +1270,2025-03-07T03:48:03.877916-08:00,1743.0,10.799021,10799.021 +1271,2025-03-07T03:48:14.685979-08:00,1694.0,10.808063,10808.063 +1272,2025-03-07T03:48:25.484833-08:00,1742.0,10.798854,10798.854 +1273,2025-03-07T03:48:36.282925-08:00,1743.0,10.798092,10798.092 +1274,2025-03-07T03:48:47.087862-08:00,1723.0,10.804937,10804.937 +1275,2025-03-07T03:48:57.883844-08:00,1651.0,10.795982,10795.982 +1276,2025-03-07T03:49:08.686069-08:00,1738.0,10.802225,10802.225 +1277,2025-03-07T03:49:19.480917-08:00,1669.0,10.794848,10794.848 +1278,2025-03-07T03:49:30.288569-08:00,1711.0,10.807652,10807.652 +1279,2025-03-07T03:49:41.085349-08:00,1704.0,10.79678,10796.78 +1280,2025-03-07T03:49:51.883729-08:00,1675.0,10.79838,10798.38 +1281,2025-03-07T03:50:02.685181-08:00,1680.0,10.801452,10801.452 +1282,2025-03-07T03:50:13.490329-08:00,1744.0,10.805148,10805.148 +1283,2025-03-07T03:50:24.280657-08:00,1744.0,10.790328,10790.328 +1284,2025-03-07T03:50:35.090446-08:00,1743.0,10.809789,10809.789 +1285,2025-03-07T03:50:45.887152-08:00,1709.0,10.796706,10796.706 +1286,2025-03-07T03:50:56.690838-08:00,1691.0,10.803686,10803.686 +1287,2025-03-07T03:51:07.489913-08:00,1743.0,10.799075,10799.075 +1288,2025-03-07T03:51:18.287848-08:00,1682.0,10.797935,10797.935 +1289,2025-03-07T03:51:29.089373-08:00,1744.0,10.801525,10801.525 +1290,2025-03-07T03:51:39.893100-08:00,1734.0,10.803727,10803.727 +1291,2025-03-07T03:51:50.691079-08:00,1687.0,10.797979,10797.979 +1292,2025-03-07T03:52:01.488846-08:00,1744.0,10.797767,10797.767 +1293,2025-03-07T03:52:12.292661-08:00,1710.0,10.803815,10803.815 +1294,2025-03-07T03:52:23.088873-08:00,1680.0,10.796212,10796.212 +1295,2025-03-07T03:52:33.899166-08:00,1695.0,10.810293,10810.293 +1296,2025-03-07T03:52:44.692863-08:00,1716.0,10.793697,10793.697 +1297,2025-03-07T03:52:55.498910-08:00,1718.0,10.806047,10806.047 +1298,2025-03-07T03:53:06.296279-08:00,1703.0,10.797369,10797.369 +1299,2025-03-07T03:53:17.104193-08:00,1743.0,10.807914,10807.914 +1300,2025-03-07T03:53:27.894257-08:00,1712.0,10.790064,10790.064 +1301,2025-03-07T03:53:38.694744-08:00,1732.0,10.800487,10800.487 +1302,2025-03-07T03:53:49.492151-08:00,1744.0,10.797407,10797.407 +1303,2025-03-07T03:54:00.297864-08:00,1734.0,10.805713,10805.713 +1304,2025-03-07T03:54:11.098893-08:00,1743.0,10.801029,10801.029 +1305,2025-03-07T03:54:21.887858-08:00,1731.0,10.788965,10788.965 +1306,2025-03-07T03:54:32.691841-08:00,1658.0,10.803983,10803.983 +1307,2025-03-07T03:54:43.491706-08:00,1700.0,10.799865,10799.865 +1308,2025-03-07T03:54:54.282977-08:00,1739.0,10.791271,10791.271 +1309,2025-03-07T03:55:05.084994-08:00,1738.0,10.802017,10802.017 +1310,2025-03-07T03:55:15.885417-08:00,1742.0,10.800423,10800.423 +1311,2025-03-07T03:55:26.683648-08:00,1743.0,10.798231,10798.231 +1312,2025-03-07T03:55:37.483386-08:00,1712.0,10.799738,10799.738 +1313,2025-03-07T03:55:48.293106-08:00,1705.0,10.80972,10809.72 +1314,2025-03-07T03:55:59.092183-08:00,1710.0,10.799077,10799.077 +1315,2025-03-07T03:56:09.901867-08:00,1729.0,10.809684,10809.684 +1316,2025-03-07T03:56:20.704915-08:00,1694.0,10.803048,10803.048 +1317,2025-03-07T03:56:31.497417-08:00,1695.0,10.792502,10792.502 +1318,2025-03-07T03:56:42.310161-08:00,1659.0,10.812744,10812.744 +1319,2025-03-07T03:56:53.109160-08:00,1728.0,10.798999,10798.999 +1320,2025-03-07T03:57:03.913348-08:00,1689.0,10.804188,10804.188 +1321,2025-03-07T03:57:14.714853-08:00,1654.0,10.801505,10801.505 +1322,2025-03-07T03:57:25.525860-08:00,1718.0,10.811007,10811.007 +1323,2025-03-07T03:57:36.327998-08:00,1683.0,10.802138,10802.138 +1324,2025-03-07T03:57:47.131170-08:00,1732.0,10.803172,10803.172 +1325,2025-03-07T03:57:57.928417-08:00,1650.0,10.797247,10797.247 +1326,2025-03-07T03:58:08.733337-08:00,1739.0,10.80492,10804.92 +1327,2025-03-07T03:58:19.529274-08:00,1649.0,10.795937,10795.937 +1328,2025-03-07T03:58:30.339130-08:00,1737.0,10.809856,10809.856 +1329,2025-03-07T03:58:41.136937-08:00,1699.0,10.797807,10797.807 +1330,2025-03-07T03:58:51.936971-08:00,1713.0,10.800034,10800.034 +1331,2025-03-07T03:59:02.748090-08:00,1655.0,10.811119,10811.119 +1332,2025-03-07T03:59:24.337851-08:00,1740.0,21.589761,21589.761 +1333,2025-03-07T03:59:35.137051-08:00,1696.0,10.7992,10799.2 +1334,2025-03-07T03:59:45.937848-08:00,1739.0,10.800797,10800.797 +1335,2025-03-07T03:59:56.743863-08:00,1670.0,10.806015,10806.015 +1336,2025-03-07T04:00:07.538853-08:00,1683.0,10.79499,10794.99 +1337,2025-03-07T04:00:18.343857-08:00,1743.0,10.805004,10805.004 +1338,2025-03-07T04:00:29.144882-08:00,1733.0,10.801025,10801.025 +1339,2025-03-07T04:00:39.943997-08:00,1743.0,10.799115,10799.115 +1340,2025-03-07T04:00:50.741855-08:00,1740.0,10.797858,10797.858 +1341,2025-03-07T04:01:01.549862-08:00,1712.0,10.808007,10808.007 +1342,2025-03-07T04:01:12.348427-08:00,1714.0,10.798565,10798.565 +1343,2025-03-07T04:01:23.150906-08:00,1739.0,10.802479,10802.479 +1344,2025-03-07T04:01:33.954810-08:00,1727.0,10.803904,10803.904 +1345,2025-03-07T04:01:44.757130-08:00,1703.0,10.80232,10802.32 +1346,2025-03-07T04:01:55.555245-08:00,1739.0,10.798115,10798.115 +1347,2025-03-07T04:02:06.354561-08:00,1707.0,10.799316,10799.316 +1348,2025-03-07T04:02:17.157373-08:00,1660.0,10.802812,10802.812 +1349,2025-03-07T04:02:27.959212-08:00,1706.0,10.801839,10801.839 +1350,2025-03-07T04:02:37.417434-08:00,1741.0,9.458222,9458.222 +1351,2025-03-07T04:02:38.772199-08:00,1683.0,1.354765,1354.765 +1352,2025-03-07T04:02:49.566120-08:00,1728.0,10.793921,10793.921 +1353,2025-03-07T04:03:00.375292-08:00,1712.0,10.809172,10809.172 +1354,2025-03-07T04:03:11.177868-08:00,1729.0,10.802576,10802.576 +1355,2025-03-07T04:03:21.973376-08:00,1743.0,10.795508,10795.508 +1356,2025-03-07T04:03:32.773672-08:00,1741.0,10.800296,10800.296 +1357,2025-03-07T04:03:43.571067-08:00,1682.0,10.797395,10797.395 +1358,2025-03-07T04:03:54.370858-08:00,1709.0,10.799791,10799.791 +1359,2025-03-07T04:04:05.168851-08:00,1697.0,10.797993,10797.993 +1360,2025-03-07T04:04:15.969963-08:00,1713.0,10.801112,10801.112 +1361,2025-03-07T04:04:26.771481-08:00,1731.0,10.801518,10801.518 +1362,2025-03-07T04:04:37.579239-08:00,1736.0,10.807758,10807.758 +1363,2025-03-07T04:04:48.382862-08:00,1740.0,10.803623,10803.623 +1364,2025-03-07T04:04:59.181858-08:00,1686.0,10.798996,10798.996 +1365,2025-03-07T04:05:09.986054-08:00,1699.0,10.804196,10804.196 +1366,2025-03-07T04:05:20.784863-08:00,1721.0,10.798809,10798.809 +1367,2025-03-07T04:05:31.662462-08:00,1711.0,10.877599,10877.599 +1368,2025-03-07T04:05:42.461679-08:00,1679.0,10.799217,10799.217 +1369,2025-03-07T04:05:53.266461-08:00,1680.0,10.804782,10804.782 +1370,2025-03-07T04:06:04.068582-08:00,1680.0,10.802121,10802.121 +1371,2025-03-07T04:06:14.878453-08:00,1723.0,10.809871,10809.871 +1372,2025-03-07T04:06:25.675442-08:00,1718.0,10.796989,10796.989 +1373,2025-03-07T04:06:36.482528-08:00,1733.0,10.807086,10807.086 +1374,2025-03-07T04:06:47.289411-08:00,1679.0,10.806883,10806.883 +1375,2025-03-07T04:06:58.094451-08:00,1742.0,10.80504,10805.04 +1376,2025-03-07T04:07:08.898446-08:00,1693.0,10.803995,10803.995 +1377,2025-03-07T04:07:19.703970-08:00,1641.0,10.805524,10805.524 +1378,2025-03-07T04:07:30.507446-08:00,1649.0,10.803476,10803.476 +1379,2025-03-07T04:07:41.299709-08:00,1701.0,10.792263,10792.263 +1380,2025-03-07T04:07:52.107562-08:00,1692.0,10.807853,10807.853 +1381,2025-03-07T04:08:02.911436-08:00,1743.0,10.803874,10803.874 +1382,2025-03-07T04:08:13.709937-08:00,1669.0,10.798501,10798.501 +1383,2025-03-07T04:08:24.519269-08:00,1703.0,10.809332,10809.332 +1384,2025-03-07T04:08:35.315456-08:00,1735.0,10.796187,10796.187 +1385,2025-03-07T04:08:46.124764-08:00,1743.0,10.809308,10809.308 +1386,2025-03-07T04:08:56.933462-08:00,1690.0,10.808698,10808.698 +1387,2025-03-07T04:09:07.731642-08:00,1741.0,10.79818,10798.18 +1388,2025-03-07T04:09:18.540448-08:00,1712.0,10.808806,10808.806 +1389,2025-03-07T04:09:29.343454-08:00,1744.0,10.803006,10803.006 +1390,2025-03-07T04:09:40.151444-08:00,1648.0,10.80799,10807.99 +1391,2025-03-07T04:09:50.950510-08:00,1657.0,10.799066,10799.066 +1392,2025-03-07T04:10:01.756456-08:00,1670.0,10.805946,10805.946 +1393,2025-03-07T04:10:12.561666-08:00,1722.0,10.80521,10805.21 +1394,2025-03-07T04:10:23.360685-08:00,1727.0,10.799019,10799.019 +1395,2025-03-07T04:10:34.166507-08:00,1731.0,10.805822,10805.822 +1396,2025-03-07T04:10:44.975733-08:00,1700.0,10.809226,10809.226 +1397,2025-03-07T04:10:55.774436-08:00,1744.0,10.798703,10798.703 +1398,2025-03-07T04:11:06.585510-08:00,1651.0,10.811074,10811.074 +1399,2025-03-07T04:11:17.381441-08:00,1741.0,10.795931,10795.931 +1400,2025-03-07T04:11:28.185460-08:00,1654.0,10.804019,10804.019 +1401,2025-03-07T04:11:38.982933-08:00,1649.0,10.797473,10797.473 +1402,2025-03-07T04:11:49.785128-08:00,1743.0,10.802195,10802.195 +1403,2025-03-07T04:12:00.580439-08:00,1733.0,10.795311,10795.311 +1404,2025-03-07T04:12:11.385440-08:00,1646.0,10.805001,10805.001 +1405,2025-03-07T04:12:22.190594-08:00,1740.0,10.805154,10805.154 +1406,2025-03-07T04:12:32.995198-08:00,1696.0,10.804604,10804.604 +1407,2025-03-07T04:12:43.791974-08:00,1659.0,10.796776,10796.776 +1408,2025-03-07T04:12:54.594442-08:00,1729.0,10.802468,10802.468 +1409,2025-03-07T04:13:05.392452-08:00,1725.0,10.79801,10798.01 +1410,2025-03-07T04:13:16.196908-08:00,1739.0,10.804456,10804.456 +1411,2025-03-07T04:13:26.998438-08:00,1680.0,10.80153,10801.53 +1412,2025-03-07T04:13:37.801507-08:00,1735.0,10.803069,10803.069 +1413,2025-03-07T04:13:48.608440-08:00,1712.0,10.806933,10806.933 +1414,2025-03-07T04:13:59.403884-08:00,1738.0,10.795444,10795.444 +1415,2025-03-07T04:14:10.206607-08:00,1729.0,10.802723,10802.723 +1416,2025-03-07T04:14:21.009804-08:00,1737.0,10.803197,10803.197 +1417,2025-03-07T04:14:31.808427-08:00,1729.0,10.798623,10798.623 +1418,2025-03-07T04:14:42.604376-08:00,1648.0,10.795949,10795.949 +1419,2025-03-07T04:14:53.408055-08:00,1691.0,10.803679,10803.679 +1420,2025-03-07T04:15:04.211346-08:00,1734.0,10.803291,10803.291 +1421,2025-03-07T04:15:15.008912-08:00,1742.0,10.797566,10797.566 +1422,2025-03-07T04:15:25.818373-08:00,1679.0,10.809461,10809.461 +1423,2025-03-07T04:15:36.622783-08:00,1738.0,10.80441,10804.41 +1424,2025-03-07T04:15:47.425877-08:00,1735.0,10.803094,10803.094 +1425,2025-03-07T04:15:58.227807-08:00,1687.0,10.80193,10801.93 +1426,2025-03-07T04:16:09.019502-08:00,1703.0,10.791695,10791.695 +1427,2025-03-07T04:16:19.817503-08:00,1707.0,10.798001,10798.001 +1428,2025-03-07T04:16:30.620457-08:00,1685.0,10.802954,10802.954 +1429,2025-03-07T04:16:41.425708-08:00,1653.0,10.805251,10805.251 +1430,2025-03-07T04:16:52.214514-08:00,1655.0,10.788806,10788.806 +1431,2025-03-07T04:17:03.018500-08:00,1741.0,10.803986,10803.986 +1432,2025-03-07T04:17:13.816515-08:00,1719.0,10.798015,10798.015 +1433,2025-03-07T04:17:24.610044-08:00,1705.0,10.793529,10793.529 +1434,2025-03-07T04:17:35.411793-08:00,1739.0,10.801749,10801.749 +1435,2025-03-07T04:17:46.215821-08:00,1738.0,10.804028,10804.028 +1436,2025-03-07T04:17:57.007522-08:00,1711.0,10.791701,10791.701 +1437,2025-03-07T04:18:07.815834-08:00,1742.0,10.808312,10808.312 +1438,2025-03-07T04:18:18.607749-08:00,1697.0,10.791915,10791.915 +1439,2025-03-07T04:18:29.405436-08:00,1735.0,10.797687,10797.687 +1440,2025-03-07T04:18:40.208496-08:00,1733.0,10.80306,10803.06 +1441,2025-03-07T04:18:51.003444-08:00,1737.0,10.794948,10794.948 +1442,2025-03-07T04:19:01.801397-08:00,1730.0,10.797953,10797.953 +1443,2025-03-07T04:19:12.602450-08:00,1682.0,10.801053,10801.053 +1444,2025-03-07T04:19:23.398779-08:00,1650.0,10.796329,10796.329 +1445,2025-03-07T04:19:34.207759-08:00,1728.0,10.80898,10808.98 +1446,2025-03-07T04:19:45.005895-08:00,1743.0,10.798136,10798.136 +1447,2025-03-07T04:19:55.814488-08:00,1695.0,10.808593,10808.593 +1448,2025-03-07T04:20:06.612835-08:00,1695.0,10.798347,10798.347 +1449,2025-03-07T04:20:17.409868-08:00,1719.0,10.797033,10797.033 +1450,2025-03-07T04:20:28.214243-08:00,1742.0,10.804375,10804.375 +1451,2025-03-07T04:20:39.022669-08:00,1737.0,10.808426,10808.426 +1452,2025-03-07T04:20:49.813775-08:00,1740.0,10.791106,10791.106 +1453,2025-03-07T04:21:00.622750-08:00,1703.0,10.808975,10808.975 +1454,2025-03-07T04:21:11.426296-08:00,1712.0,10.803546,10803.546 +1455,2025-03-07T04:21:22.224108-08:00,1739.0,10.797812,10797.812 +1456,2025-03-07T04:21:33.030731-08:00,1712.0,10.806623,10806.623 +1457,2025-03-07T04:21:43.823604-08:00,1674.0,10.792873,10792.873 +1458,2025-03-07T04:21:54.628515-08:00,1675.0,10.804911,10804.911 +1459,2025-03-07T04:22:05.425440-08:00,1694.0,10.796925,10796.925 +1460,2025-03-07T04:22:16.222982-08:00,1707.0,10.797542,10797.542 +1461,2025-03-07T04:22:27.025457-08:00,1719.0,10.802475,10802.475 +1462,2025-03-07T04:22:37.826452-08:00,1741.0,10.800995,10800.995 +1463,2025-03-07T04:22:48.622447-08:00,1657.0,10.795995,10795.995 +1464,2025-03-07T04:22:59.423462-08:00,1658.0,10.801015,10801.015 +1465,2025-03-07T04:23:10.227682-08:00,1732.0,10.80422,10804.22 +1466,2025-03-07T04:23:21.024463-08:00,1741.0,10.796781,10796.781 +1467,2025-03-07T04:23:31.830664-08:00,1729.0,10.806201,10806.201 +1468,2025-03-07T04:23:42.631250-08:00,1649.0,10.800586,10800.586 +1469,2025-03-07T04:23:53.429789-08:00,1681.0,10.798539,10798.539 +1470,2025-03-07T04:24:04.225779-08:00,1715.0,10.79599,10795.99 +1471,2025-03-07T04:24:15.024290-08:00,1685.0,10.798511,10798.511 +1472,2025-03-07T04:24:25.817016-08:00,1659.0,10.792726,10792.726 +1473,2025-03-07T04:24:36.616446-08:00,1697.0,10.79943,10799.43 +1474,2025-03-07T04:24:47.424429-08:00,1653.0,10.807983,10807.983 +1475,2025-03-07T04:24:58.224450-08:00,1722.0,10.800021,10800.021 +1476,2025-03-07T04:25:09.025455-08:00,1718.0,10.801005,10801.005 +1477,2025-03-07T04:25:19.817444-08:00,1730.0,10.791989,10791.989 +1478,2025-03-07T04:25:30.625442-08:00,1726.0,10.807998,10807.998 +1479,2025-03-07T04:25:41.428698-08:00,1707.0,10.803256,10803.256 +1480,2025-03-07T04:25:52.220638-08:00,1735.0,10.79194,10791.94 +1481,2025-03-07T04:26:03.028435-08:00,1738.0,10.807797,10807.797 +1482,2025-03-07T04:26:13.826649-08:00,1695.0,10.798214,10798.214 +1483,2025-03-07T04:26:24.625450-08:00,1739.0,10.798801,10798.801 +1484,2025-03-07T04:26:35.426257-08:00,1731.0,10.800807,10800.807 +1485,2025-03-07T04:26:46.225748-08:00,1740.0,10.799491,10799.491 +1486,2025-03-07T04:26:57.034976-08:00,1739.0,10.809228,10809.228 +1487,2025-03-07T04:26:57.034976-08:00,1739.0,0.0,0.0 +1488,2025-03-07T04:27:07.832035-08:00,1669.0,10.797059,10797.059 +1489,2025-03-07T04:27:18.641866-08:00,1680.0,10.809831,10809.831 +1490,2025-03-07T04:27:29.438888-08:00,1690.0,10.797022,10797.022 +1491,2025-03-07T04:27:40.243218-08:00,1737.0,10.80433,10804.33 +1492,2025-03-07T04:27:51.052466-08:00,1703.0,10.809248,10809.248 +1493,2025-03-07T04:28:01.848843-08:00,1724.0,10.796377,10796.377 +1494,2025-03-07T04:28:12.653648-08:00,1725.0,10.804805,10804.805 +1495,2025-03-07T04:28:23.450423-08:00,1740.0,10.796775,10796.775 +1496,2025-03-07T04:28:34.254052-08:00,1650.0,10.803629,10803.629 +1497,2025-03-07T04:28:45.056350-08:00,1698.0,10.802298,10802.298 +1498,2025-03-07T04:28:55.862779-08:00,1730.0,10.806429,10806.429 +1499,2025-03-07T04:29:06.663440-08:00,1712.0,10.800661,10800.661 +1500,2025-03-07T04:29:17.468115-08:00,1703.0,10.804675,10804.675 +1501,2025-03-07T04:29:28.269791-08:00,1655.0,10.801676,10801.676 +1502,2025-03-07T04:29:39.075747-08:00,1712.0,10.805956,10805.956 +1503,2025-03-07T04:29:49.880838-08:00,1741.0,10.805091,10805.091 +1504,2025-03-07T04:30:00.680394-08:00,1737.0,10.799556,10799.556 +1505,2025-03-07T04:30:11.493450-08:00,1735.0,10.813056,10813.056 +1506,2025-03-07T04:30:22.288907-08:00,1679.0,10.795457,10795.457 +1507,2025-03-07T04:30:33.089898-08:00,1719.0,10.800991,10800.991 +1508,2025-03-07T04:30:43.892570-08:00,1650.0,10.802672,10802.672 +1509,2025-03-07T04:30:54.691921-08:00,1733.0,10.799351,10799.351 +1510,2025-03-07T04:31:05.503791-08:00,1733.0,10.81187,10811.87 +1511,2025-03-07T04:31:16.308950-08:00,1731.0,10.805159,10805.159 +1512,2025-03-07T04:31:27.107051-08:00,1711.0,10.798101,10798.101 +1513,2025-03-07T04:31:37.914598-08:00,1707.0,10.807547,10807.547 +1514,2025-03-07T04:31:48.716875-08:00,1689.0,10.802277,10802.277 +1515,2025-03-07T04:31:59.525907-08:00,1712.0,10.809032,10809.032 +1516,2025-03-07T04:32:10.323776-08:00,1739.0,10.797869,10797.869 +1517,2025-03-07T04:32:21.128694-08:00,1711.0,10.804918,10804.918 +1518,2025-03-07T04:32:27.931117-08:00,1697.0,6.802423,6802.423 +1519,2025-03-07T04:32:31.931016-08:00,1697.0,3.999899,3999.899 +1520,2025-03-07T04:32:42.729431-08:00,1690.0,10.798415,10798.415 +1521,2025-03-07T04:32:53.537717-08:00,1678.0,10.808286,10808.286 +1522,2025-03-07T04:33:04.334878-08:00,1739.0,10.797161,10797.161 +1523,2025-03-07T04:33:15.143779-08:00,1704.0,10.808901,10808.901 +1524,2025-03-07T04:33:25.948383-08:00,1718.0,10.804604,10804.604 +1525,2025-03-07T04:33:36.747762-08:00,1706.0,10.799379,10799.379 +1526,2025-03-07T04:33:47.549942-08:00,1653.0,10.80218,10802.18 +1527,2025-03-07T04:33:58.358045-08:00,1733.0,10.808103,10808.103 +1528,2025-03-07T04:34:09.154976-08:00,1706.0,10.796931,10796.931 +1529,2025-03-07T04:34:19.959424-08:00,1651.0,10.804448,10804.448 +1530,2025-03-07T04:34:30.768349-08:00,1738.0,10.808925,10808.925 +1531,2025-03-07T04:34:41.569635-08:00,1712.0,10.801286,10801.286 +1532,2025-03-07T04:34:52.374927-08:00,1713.0,10.805292,10805.292 +1533,2025-03-07T04:35:03.172122-08:00,1669.0,10.797195,10797.195 +1534,2025-03-07T04:35:13.986899-08:00,1673.0,10.814777,10814.777 +1535,2025-03-07T04:35:24.782830-08:00,1695.0,10.795931,10795.931 +1536,2025-03-07T04:35:35.592791-08:00,1737.0,10.809961,10809.961 +1537,2025-03-07T04:35:46.401592-08:00,1737.0,10.808801,10808.801 +1538,2025-03-07T04:35:57.198817-08:00,1738.0,10.797225,10797.225 +1539,2025-03-07T04:36:07.998811-08:00,1670.0,10.799994,10799.994 +1540,2025-03-07T04:36:18.799399-08:00,1697.0,10.800588,10800.588 +1541,2025-03-07T04:36:29.602997-08:00,1654.0,10.803598,10803.598 +1542,2025-03-07T04:36:40.400088-08:00,1656.0,10.797091,10797.091 +1543,2025-03-07T04:36:51.199493-08:00,1733.0,10.799405,10799.405 +1544,2025-03-07T04:37:01.990466-08:00,1735.0,10.790973,10790.973 +1545,2025-03-07T04:37:12.794177-08:00,1739.0,10.803711,10803.711 +1546,2025-03-07T04:37:23.596692-08:00,1725.0,10.802515,10802.515 +1547,2025-03-07T04:37:34.400684-08:00,1691.0,10.803992,10803.992 +1548,2025-03-07T04:37:45.207458-08:00,1726.0,10.806774,10806.774 +1549,2025-03-07T04:37:56.006520-08:00,1658.0,10.799062,10799.062 +1550,2025-03-07T04:38:06.804456-08:00,1729.0,10.797936,10797.936 +1551,2025-03-07T04:38:17.607437-08:00,1725.0,10.802981,10802.981 +1552,2025-03-07T04:38:28.410457-08:00,1703.0,10.80302,10803.02 +1553,2025-03-07T04:38:39.208451-08:00,1733.0,10.797994,10797.994 +1554,2025-03-07T04:38:50.016454-08:00,1699.0,10.808003,10808.003 +1555,2025-03-07T04:39:00.821449-08:00,1716.0,10.804995,10804.995 +1556,2025-03-07T04:39:11.625440-08:00,1734.0,10.803991,10803.991 +1557,2025-03-07T04:39:22.425954-08:00,1701.0,10.800514,10800.514 +1558,2025-03-07T04:39:33.236439-08:00,1731.0,10.810485,10810.485 +1559,2025-03-07T04:39:44.042453-08:00,1680.0,10.806014,10806.014 +1560,2025-03-07T04:39:54.848599-08:00,1723.0,10.806146,10806.146 +1561,2025-03-07T04:40:05.656506-08:00,1690.0,10.807907,10807.907 +1562,2025-03-07T04:40:16.465652-08:00,1731.0,10.809146,10809.146 +1563,2025-03-07T04:40:27.276045-08:00,1671.0,10.810393,10810.393 +1564,2025-03-07T04:40:38.085498-08:00,1671.0,10.809453,10809.453 +1565,2025-03-07T04:40:48.881831-08:00,1712.0,10.796333,10796.333 +1566,2025-03-07T04:40:59.698462-08:00,1737.0,10.816631,10816.631 +1567,2025-03-07T04:41:10.494980-08:00,1679.0,10.796518,10796.518 +1568,2025-03-07T04:41:21.297778-08:00,1663.0,10.802798,10802.798 +1569,2025-03-07T04:41:32.105456-08:00,1729.0,10.807678,10807.678 +1570,2025-03-07T04:41:42.909730-08:00,1709.0,10.804274,10804.274 +1571,2025-03-07T04:41:53.712462-08:00,1665.0,10.802732,10802.732 +1572,2025-03-07T04:42:04.526585-08:00,1733.0,10.814123,10814.123 +1573,2025-03-07T04:42:15.325807-08:00,1733.0,10.799222,10799.222 +1574,2025-03-07T04:42:26.138441-08:00,1721.0,10.812634,10812.634 +1575,2025-03-07T04:42:36.947450-08:00,1723.0,10.809009,10809.009 +1576,2025-03-07T04:42:47.756553-08:00,1711.0,10.809103,10809.103 +1577,2025-03-07T04:42:58.569053-08:00,1734.0,10.8125,10812.5 +1578,2025-03-07T04:43:09.370931-08:00,1719.0,10.801878,10801.878 +1579,2025-03-07T04:43:20.180300-08:00,1650.0,10.809369,10809.369 +1580,2025-03-07T04:43:30.983719-08:00,1729.0,10.803419,10803.419 +1581,2025-03-07T04:43:41.798834-08:00,1641.0,10.815115,10815.115 +1582,2025-03-07T04:43:52.596453-08:00,1679.0,10.797619,10797.619 +1583,2025-03-07T04:44:03.411601-08:00,1652.0,10.815148,10815.148 +1584,2025-03-07T04:44:14.216051-08:00,1731.0,10.80445,10804.45 +1585,2025-03-07T04:44:25.017466-08:00,1658.0,10.801415,10801.415 +1586,2025-03-07T04:44:35.833665-08:00,1683.0,10.816199,10816.199 +1587,2025-03-07T04:44:46.633698-08:00,1725.0,10.800033,10800.033 +1588,2025-03-07T04:44:57.435464-08:00,1659.0,10.801766,10801.766 +1589,2025-03-07T04:45:08.243445-08:00,1690.0,10.807981,10807.981 +1590,2025-03-07T04:45:19.051678-08:00,1648.0,10.808233,10808.233 +1591,2025-03-07T04:45:29.854451-08:00,1677.0,10.802773,10802.773 +1592,2025-03-07T04:45:40.661456-08:00,1735.0,10.807005,10807.005 +1593,2025-03-07T04:45:51.472263-08:00,1706.0,10.810807,10810.807 +1594,2025-03-07T04:46:02.270500-08:00,1732.0,10.798237,10798.237 +1595,2025-03-07T04:46:13.082789-08:00,1659.0,10.812289,10812.289 +1596,2025-03-07T04:46:23.890146-08:00,1733.0,10.807357,10807.357 +1597,2025-03-07T04:46:34.693051-08:00,1712.0,10.802905,10802.905 +1598,2025-03-07T04:46:45.497849-08:00,1735.0,10.804798,10804.798 +1599,2025-03-07T04:46:56.304956-08:00,1705.0,10.807107,10807.107 +1600,2025-03-07T04:47:07.111457-08:00,1658.0,10.806501,10806.501 +1601,2025-03-07T04:47:17.920440-08:00,1712.0,10.808983,10808.983 +1602,2025-03-07T04:47:28.725741-08:00,1652.0,10.805301,10805.301 +1603,2025-03-07T04:47:39.533714-08:00,1728.0,10.807973,10807.973 +1604,2025-03-07T04:47:50.334456-08:00,1679.0,10.800742,10800.742 +1605,2025-03-07T04:48:01.138436-08:00,1674.0,10.80398,10803.98 +1606,2025-03-07T04:48:11.947706-08:00,1718.0,10.80927,10809.27 +1607,2025-03-07T04:48:22.768025-08:00,1671.0,10.820319,10820.319 +1608,2025-03-07T04:48:33.572585-08:00,1710.0,10.80456,10804.56 +1609,2025-03-07T04:48:44.381719-08:00,1690.0,10.809134,10809.134 +1610,2025-03-07T04:48:55.194721-08:00,1651.0,10.813002,10813.002 +1611,2025-03-07T04:49:06.004625-08:00,1712.0,10.809904,10809.904 +1612,2025-03-07T04:49:16.819456-08:00,1695.0,10.814831,10814.831 +1613,2025-03-07T04:49:27.623451-08:00,1680.0,10.803995,10803.995 +1614,2025-03-07T04:49:38.442115-08:00,1681.0,10.818664,10818.664 +1615,2025-03-07T04:49:49.249860-08:00,1642.0,10.807745,10807.745 +1616,2025-03-07T04:50:00.060901-08:00,1733.0,10.811041,10811.041 +1617,2025-03-07T04:50:10.863635-08:00,1702.0,10.802734,10802.734 +1618,2025-03-07T04:50:21.673281-08:00,1663.0,10.809646,10809.646 +1619,2025-03-07T04:50:32.485652-08:00,1656.0,10.812371,10812.371 +1620,2025-03-07T04:50:43.290444-08:00,1721.0,10.804792,10804.792 +1621,2025-03-07T04:50:54.104458-08:00,1696.0,10.814014,10814.014 +1622,2025-03-07T04:51:04.906450-08:00,1727.0,10.801992,10801.992 +1623,2025-03-07T04:51:15.723567-08:00,1697.0,10.817117,10817.117 +1624,2025-03-07T04:51:26.532764-08:00,1712.0,10.809197,10809.197 +1625,2025-03-07T04:51:37.336239-08:00,1691.0,10.803475,10803.475 +1626,2025-03-07T04:51:48.139679-08:00,1680.0,10.80344,10803.44 +1627,2025-03-07T04:51:58.946762-08:00,1687.0,10.807083,10807.083 +1628,2025-03-07T04:52:09.743760-08:00,1726.0,10.796998,10796.998 +1629,2025-03-07T04:52:20.553812-08:00,1699.0,10.810052,10810.052 +1630,2025-03-07T04:52:31.354864-08:00,1719.0,10.801052,10801.052 +1631,2025-03-07T04:52:42.160807-08:00,1726.0,10.805943,10805.943 +1632,2025-03-07T04:52:52.971459-08:00,1648.0,10.810652,10810.652 +1633,2025-03-07T04:53:03.771933-08:00,1730.0,10.800474,10800.474 +1634,2025-03-07T04:53:14.582708-08:00,1710.0,10.810775,10810.775 +1635,2025-03-07T04:53:25.383888-08:00,1685.0,10.80118,10801.18 +1636,2025-03-07T04:53:36.183464-08:00,1679.0,10.799576,10799.576 +1637,2025-03-07T04:53:46.997999-08:00,1689.0,10.814535,10814.535 +1638,2025-03-07T04:53:57.799454-08:00,1680.0,10.801455,10801.455 +1639,2025-03-07T04:54:08.606452-08:00,1727.0,10.806998,10806.998 +1640,2025-03-07T04:54:19.413709-08:00,1722.0,10.807257,10807.257 +1641,2025-03-07T04:54:30.222458-08:00,1680.0,10.808749,10808.749 +1642,2025-03-07T04:54:41.032451-08:00,1648.0,10.809993,10809.993 +1643,2025-03-07T04:54:51.841048-08:00,1698.0,10.808597,10808.597 +1644,2025-03-07T04:55:02.649807-08:00,1731.0,10.808759,10808.759 +1645,2025-03-07T04:55:13.454818-08:00,1729.0,10.805011,10805.011 +1646,2025-03-07T04:55:24.262788-08:00,1734.0,10.80797,10807.97 +1647,2025-03-07T04:55:35.065725-08:00,1733.0,10.802937,10802.937 +1648,2025-03-07T04:55:45.878702-08:00,1685.0,10.812977,10812.977 +1649,2025-03-07T04:55:56.688691-08:00,1681.0,10.809989,10809.989 +1650,2025-03-07T04:56:07.492486-08:00,1731.0,10.803795,10803.795 +1651,2025-03-07T04:56:18.305685-08:00,1648.0,10.813199,10813.199 +1652,2025-03-07T04:56:29.114658-08:00,1733.0,10.808973,10808.973 +1653,2025-03-07T04:56:39.924774-08:00,1693.0,10.810116,10810.116 +1654,2025-03-07T04:56:50.724498-08:00,1729.0,10.799724,10799.724 +1655,2025-03-07T04:57:01.533738-08:00,1699.0,10.80924,10809.24 +1656,2025-03-07T04:57:12.339648-08:00,1695.0,10.80591,10805.91 +1657,2025-03-07T04:57:23.154826-08:00,1682.0,10.815178,10815.178 +1658,2025-03-07T04:57:33.967894-08:00,1731.0,10.813068,10813.068 +1659,2025-03-07T04:57:44.772729-08:00,1661.0,10.804835,10804.835 +1660,2025-03-07T04:57:55.575456-08:00,1647.0,10.802727,10802.727 +1661,2025-03-07T04:58:06.389455-08:00,1734.0,10.813999,10813.999 +1662,2025-03-07T04:58:17.204019-08:00,1710.0,10.814564,10814.564 +1663,2025-03-07T04:58:28.013015-08:00,1733.0,10.808996,10808.996 +1664,2025-03-07T04:58:38.829462-08:00,1719.0,10.816447,10816.447 +1665,2025-03-07T04:58:49.638296-08:00,1734.0,10.808834,10808.834 +1666,2025-03-07T04:59:00.452506-08:00,1695.0,10.81421,10814.21 +1667,2025-03-07T04:59:11.261450-08:00,1729.0,10.808944,10808.944 +1668,2025-03-07T04:59:22.075083-08:00,1689.0,10.813633,10813.633 +1669,2025-03-07T04:59:32.885801-08:00,1712.0,10.810718,10810.718 +1670,2025-03-07T04:59:43.694462-08:00,1709.0,10.808661,10808.661 +1671,2025-03-07T04:59:54.506518-08:00,1731.0,10.812056,10812.056 +1672,2025-03-07T05:00:05.322453-08:00,1732.0,10.815935,10815.935 +1673,2025-03-07T05:00:16.120539-08:00,1728.0,10.798086,10798.086 +1674,2025-03-07T05:00:26.935437-08:00,1683.0,10.814898,10814.898 +1675,2025-03-07T05:00:37.745537-08:00,1648.0,10.8101,10810.1 +1676,2025-03-07T05:00:48.553209-08:00,1717.0,10.807672,10807.672 +1677,2025-03-07T05:00:59.361779-08:00,1727.0,10.80857,10808.57 +1678,2025-03-07T05:01:10.179950-08:00,1691.0,10.818171,10818.171 +1679,2025-03-07T05:01:20.981447-08:00,1680.0,10.801497,10801.497 +1680,2025-03-07T05:01:31.792700-08:00,1661.0,10.811253,10811.253 +1681,2025-03-07T05:01:42.591456-08:00,1685.0,10.798756,10798.756 +1682,2025-03-07T05:01:53.406456-08:00,1683.0,10.815,10815.0 +1683,2025-03-07T05:02:04.213745-08:00,1723.0,10.807289,10807.289 +1684,2025-03-07T05:02:15.020768-08:00,1643.0,10.807023,10807.023 +1685,2025-03-07T05:02:25.827705-08:00,1684.0,10.806937,10806.937 +1686,2025-03-07T05:02:36.645870-08:00,1718.0,10.818165,10818.165 +1687,2025-03-07T05:02:47.460436-08:00,1638.0,10.814566,10814.566 +1688,2025-03-07T05:02:58.267441-08:00,1645.0,10.807005,10807.005 +1689,2025-03-07T05:03:09.078461-08:00,1706.0,10.81102,10811.02 +1690,2025-03-07T05:03:19.892456-08:00,1674.0,10.813995,10813.995 +1691,2025-03-07T05:03:30.708748-08:00,1729.0,10.816292,10816.292 +1692,2025-03-07T05:03:41.515047-08:00,1713.0,10.806299,10806.299 +1693,2025-03-07T05:03:52.322838-08:00,1701.0,10.807791,10807.791 +1694,2025-03-07T05:04:03.136436-08:00,1734.0,10.813598,10813.598 +1695,2025-03-07T05:04:13.941504-08:00,1687.0,10.805068,10805.068 +1696,2025-03-07T05:04:24.754670-08:00,1681.0,10.813166,10813.166 +1697,2025-03-07T05:04:35.560678-08:00,1713.0,10.806008,10806.008 +1698,2025-03-07T05:04:46.374930-08:00,1731.0,10.814252,10814.252 +1699,2025-03-07T05:04:57.191876-08:00,1731.0,10.816946,10816.946 +1700,2025-03-07T05:05:08.002462-08:00,1731.0,10.810586,10810.586 +1701,2025-03-07T05:05:18.807442-08:00,1726.0,10.80498,10804.98 +1702,2025-03-07T05:05:29.612460-08:00,1645.0,10.805018,10805.018 +1703,2025-03-07T05:05:40.426725-08:00,1730.0,10.814265,10814.265 +1704,2025-03-07T05:05:51.234604-08:00,1723.0,10.807879,10807.879 +1705,2025-03-07T05:06:02.045628-08:00,1710.0,10.811024,10811.024 +1706,2025-03-07T05:06:12.858833-08:00,1714.0,10.813205,10813.205 +1707,2025-03-07T05:06:23.668910-08:00,1691.0,10.810077,10810.077 +1708,2025-03-07T05:06:34.478096-08:00,1698.0,10.809186,10809.186 +1709,2025-03-07T05:06:45.280911-08:00,1715.0,10.802815,10802.815 +1710,2025-03-07T05:06:56.090421-08:00,1668.0,10.80951,10809.51 +1711,2025-03-07T05:07:06.906599-08:00,1729.0,10.816178,10816.178 +1712,2025-03-07T05:07:17.718576-08:00,1663.0,10.811977,10811.977 +1713,2025-03-07T05:07:28.533847-08:00,1693.0,10.815271,10815.271 +1714,2025-03-07T05:07:39.347982-08:00,1722.0,10.814135,10814.135 +1715,2025-03-07T05:07:50.152560-08:00,1715.0,10.804578,10804.578 +1716,2025-03-07T05:08:00.964595-08:00,1728.0,10.812035,10812.035 +1717,2025-03-07T05:08:11.779073-08:00,1731.0,10.814478,10814.478 +1718,2025-03-07T05:08:22.584785-08:00,1718.0,10.805712,10805.712 +1719,2025-03-07T05:08:33.399812-08:00,1714.0,10.815027,10815.027 +1720,2025-03-07T05:08:44.213288-08:00,1714.0,10.813476,10813.476 +1721,2025-03-07T05:08:55.032601-08:00,1689.0,10.819313,10819.313 +1722,2025-03-07T05:09:05.842697-08:00,1714.0,10.810096,10810.096 +1723,2025-03-07T05:09:16.651932-08:00,1709.0,10.809235,10809.235 +1724,2025-03-07T05:09:27.456028-08:00,1727.0,10.804096,10804.096 +1725,2025-03-07T05:09:38.268581-08:00,1730.0,10.812553,10812.553 +1726,2025-03-07T05:09:49.079650-08:00,1685.0,10.811069,10811.069 +1727,2025-03-07T05:09:59.888474-08:00,1679.0,10.808824,10808.824 +1728,2025-03-07T05:10:10.702631-08:00,1637.0,10.814157,10814.157 +1729,2025-03-07T05:10:21.516925-08:00,1667.0,10.814294,10814.294 +1730,2025-03-07T05:10:32.336095-08:00,1712.0,10.81917,10819.17 +1731,2025-03-07T05:10:43.144830-08:00,1689.0,10.808735,10808.735 +1732,2025-03-07T05:10:53.970913-08:00,1661.0,10.826083,10826.083 +1733,2025-03-07T05:11:04.785796-08:00,1723.0,10.814883,10814.883 +1734,2025-03-07T05:11:15.590573-08:00,1680.0,10.804777,10804.777 +1735,2025-03-07T05:11:26.402574-08:00,1721.0,10.812001,10812.001 +1736,2025-03-07T05:11:48.033941-08:00,1683.0,21.631367,21631.367 +1737,2025-03-07T05:11:58.842700-08:00,1651.0,10.808759,10808.759 +1738,2025-03-07T05:12:09.657866-08:00,1711.0,10.815166,10815.166 +1739,2025-03-07T05:12:20.466734-08:00,1729.0,10.808868,10808.868 +1740,2025-03-07T05:12:31.282252-08:00,1651.0,10.815518,10815.518 +1741,2025-03-07T05:12:42.090960-08:00,1690.0,10.808708,10808.708 +1742,2025-03-07T05:12:52.899934-08:00,1686.0,10.808974,10808.974 +1743,2025-03-07T05:13:03.717599-08:00,1730.0,10.817665,10817.665 +1744,2025-03-07T05:13:14.526588-08:00,1729.0,10.808989,10808.989 +1745,2025-03-07T05:13:25.348738-08:00,1677.0,10.82215,10822.15 +1746,2025-03-07T05:13:36.157837-08:00,1683.0,10.809099,10809.099 +1747,2025-03-07T05:13:46.967757-08:00,1731.0,10.80992,10809.92 +1748,2025-03-07T05:13:57.771114-08:00,1721.0,10.803357,10803.357 +1749,2025-03-07T05:14:08.589579-08:00,1649.0,10.818465,10818.465 +1750,2025-03-07T05:14:19.393599-08:00,1694.0,10.80402,10804.02 +1751,2025-03-07T05:14:30.209592-08:00,1697.0,10.815993,10815.993 +1752,2025-03-07T05:14:41.029720-08:00,1714.0,10.820128,10820.128 +1753,2025-03-07T05:14:51.838888-08:00,1680.0,10.809168,10809.168 +1754,2025-03-07T05:15:02.648572-08:00,1723.0,10.809684,10809.684 +1755,2025-03-07T05:15:13.471577-08:00,1727.0,10.823005,10823.005 +1756,2025-03-07T05:15:24.288818-08:00,1643.0,10.817241,10817.241 +1757,2025-03-07T05:15:35.103901-08:00,1675.0,10.815083,10815.083 +1758,2025-03-07T05:15:45.915799-08:00,1723.0,10.811898,10811.898 +1759,2025-03-07T05:15:56.732627-08:00,1714.0,10.816828,10816.828 +1760,2025-03-07T05:16:07.535626-08:00,1730.0,10.802999,10802.999 +1761,2025-03-07T05:16:18.355737-08:00,1725.0,10.820111,10820.111 +1762,2025-03-07T05:16:29.172182-08:00,1655.0,10.816445,10816.445 +1763,2025-03-07T05:16:39.977026-08:00,1726.0,10.804844,10804.844 +1764,2025-03-07T05:16:50.785845-08:00,1728.0,10.808819,10808.819 +1765,2025-03-07T05:17:01.607915-08:00,1730.0,10.82207,10822.07 +1766,2025-03-07T05:17:12.419595-08:00,1714.0,10.81168,10811.68 +1767,2025-03-07T05:17:23.226152-08:00,1677.0,10.806557,10806.557 +1768,2025-03-07T05:17:34.040795-08:00,1728.0,10.814643,10814.643 +1769,2025-03-07T05:17:44.862592-08:00,1645.0,10.821797,10821.797 +1770,2025-03-07T05:17:55.680583-08:00,1727.0,10.817991,10817.991 +1771,2025-03-07T05:18:06.489571-08:00,1682.0,10.808988,10808.988 +1772,2025-03-07T05:18:17.306952-08:00,1728.0,10.817381,10817.381 +1773,2025-03-07T05:18:28.113868-08:00,1648.0,10.806916,10806.916 +1774,2025-03-07T05:18:38.932644-08:00,1730.0,10.818776,10818.776 +1775,2025-03-07T05:18:49.738659-08:00,1718.0,10.806015,10806.015 +1776,2025-03-07T05:19:00.544601-08:00,1630.0,10.805942,10805.942 +1777,2025-03-07T05:19:11.357034-08:00,1680.0,10.812433,10812.433 +1778,2025-03-07T05:19:22.170241-08:00,1644.0,10.813207,10813.207 +1779,2025-03-07T05:19:32.980113-08:00,1733.0,10.809872,10809.872 +1780,2025-03-07T05:19:43.788998-08:00,1731.0,10.808885,10808.885 +1781,2025-03-07T05:19:54.597597-08:00,1645.0,10.808599,10808.599 +1782,2025-03-07T05:20:05.405826-08:00,1723.0,10.808229,10808.229 +1783,2025-03-07T05:20:16.219574-08:00,1693.0,10.813748,10813.748 +1784,2025-03-07T05:20:27.024634-08:00,1679.0,10.80506,10805.06 +1785,2025-03-07T05:20:37.838592-08:00,1702.0,10.813958,10813.958 +1786,2025-03-07T05:20:48.640951-08:00,1722.0,10.802359,10802.359 +1787,2025-03-07T05:20:59.457928-08:00,1680.0,10.816977,10816.977 +1788,2025-03-07T05:21:10.258870-08:00,1710.0,10.800942,10800.942 +1789,2025-03-07T05:21:21.075601-08:00,1719.0,10.816731,10816.731 +1790,2025-03-07T05:21:31.886819-08:00,1693.0,10.811218,10811.218 +1791,2025-03-07T05:21:42.691730-08:00,1726.0,10.804911,10804.911 +1792,2025-03-07T05:21:53.496599-08:00,1649.0,10.804869,10804.869 +1793,2025-03-07T05:22:04.306633-08:00,1718.0,10.810034,10810.034 +1794,2025-03-07T05:22:15.119849-08:00,1633.0,10.813216,10813.216 +1795,2025-03-07T05:22:25.932925-08:00,1685.0,10.813076,10813.076 +1796,2025-03-07T05:22:36.735869-08:00,1651.0,10.802944,10802.944 +1797,2025-03-07T05:22:47.558648-08:00,1715.0,10.822779,10822.779 +1798,2025-03-07T05:22:58.370597-08:00,1639.0,10.811949,10811.949 +1799,2025-03-07T05:23:09.175825-08:00,1715.0,10.805228,10805.228 +1800,2025-03-07T05:23:19.996423-08:00,1709.0,10.820598,10820.598 +1801,2025-03-07T05:23:30.799337-08:00,1706.0,10.802914,10802.914 +1802,2025-03-07T05:23:41.604186-08:00,1711.0,10.804849,10804.849 +1803,2025-03-07T05:23:52.417073-08:00,1703.0,10.812887,10812.887 +1804,2025-03-07T05:24:03.223886-08:00,1679.0,10.806813,10806.813 +1805,2025-03-07T05:24:14.035598-08:00,1729.0,10.811712,10811.712 +1806,2025-03-07T05:24:24.837729-08:00,1677.0,10.802131,10802.131 +1807,2025-03-07T05:24:35.652826-08:00,1649.0,10.815097,10815.097 +1808,2025-03-07T05:24:46.461579-08:00,1696.0,10.808753,10808.753 +1809,2025-03-07T05:24:57.266897-08:00,1723.0,10.805318,10805.318 +1810,2025-03-07T05:25:08.070594-08:00,1659.0,10.803697,10803.697 +1811,2025-03-07T05:25:18.875585-08:00,1642.0,10.804991,10804.991 +1812,2025-03-07T05:25:29.691831-08:00,1633.0,10.816246,10816.246 +1813,2025-03-07T05:25:40.506595-08:00,1693.0,10.814764,10814.764 +1814,2025-03-07T05:25:51.319105-08:00,1727.0,10.81251,10812.51 +1815,2025-03-07T05:25:58.057776-08:00,1690.0,6.738671,6738.671 +1816,2025-03-07T05:26:02.131577-08:00,1727.0,4.073801,4073.801 +1817,2025-03-07T05:26:12.934588-08:00,1682.0,10.803011,10803.011 +1818,2025-03-07T05:26:23.749845-08:00,1713.0,10.815257,10815.257 +1819,2025-03-07T05:26:34.562962-08:00,1727.0,10.813117,10813.117 +1820,2025-03-07T05:26:45.373980-08:00,1646.0,10.811018,10811.018 +1821,2025-03-07T05:26:56.177597-08:00,1655.0,10.803617,10803.617 +1822,2025-03-07T05:27:06.985153-08:00,1712.0,10.807556,10807.556 +1823,2025-03-07T05:27:17.798578-08:00,1715.0,10.813425,10813.425 +1824,2025-03-07T05:27:28.602598-08:00,1694.0,10.80402,10804.02 +1825,2025-03-07T05:27:39.416202-08:00,1728.0,10.813604,10813.604 +1826,2025-03-07T05:27:50.225157-08:00,1641.0,10.808955,10808.955 +1827,2025-03-07T05:28:01.022593-08:00,1682.0,10.797436,10797.436 +1828,2025-03-07T05:28:11.829749-08:00,1685.0,10.807156,10807.156 +1829,2025-03-07T05:28:22.640735-08:00,1647.0,10.810986,10810.986 +1830,2025-03-07T05:28:33.445913-08:00,1695.0,10.805178,10805.178 +1831,2025-03-07T05:28:44.255092-08:00,1669.0,10.809179,10809.179 +1832,2025-03-07T05:28:55.065662-08:00,1727.0,10.81057,10810.57 +1833,2025-03-07T05:29:05.863067-08:00,1724.0,10.797405,10797.405 +1834,2025-03-07T05:29:16.676859-08:00,1693.0,10.813792,10813.792 +1835,2025-03-07T05:29:27.478749-08:00,1707.0,10.80189,10801.89 +1836,2025-03-07T05:29:38.294599-08:00,1653.0,10.81585,10815.85 +1837,2025-03-07T05:29:49.102846-08:00,1719.0,10.808247,10808.247 +1838,2025-03-07T05:29:59.905818-08:00,1703.0,10.802972,10802.972 +1839,2025-03-07T05:30:10.715650-08:00,1717.0,10.809832,10809.832 +1840,2025-03-07T05:30:21.525593-08:00,1653.0,10.809943,10809.943 +1841,2025-03-07T05:30:32.336897-08:00,1730.0,10.811304,10811.304 +1842,2025-03-07T05:30:43.151052-08:00,1730.0,10.814155,10814.155 +1843,2025-03-07T05:30:53.961848-08:00,1643.0,10.810796,10810.796 +1844,2025-03-07T05:31:04.771191-08:00,1680.0,10.809343,10809.343 +1845,2025-03-07T05:31:15.579726-08:00,1693.0,10.808535,10808.535 +1846,2025-03-07T05:31:26.394070-08:00,1643.0,10.814344,10814.344 +1847,2025-03-07T05:31:37.203327-08:00,1731.0,10.809257,10809.257 +1848,2025-03-07T05:31:48.022574-08:00,1729.0,10.819247,10819.247 +1849,2025-03-07T05:31:58.832590-08:00,1632.0,10.810016,10810.016 +1850,2025-03-07T05:32:09.638596-08:00,1733.0,10.806006,10806.006 +1851,2025-03-07T05:32:20.448723-08:00,1722.0,10.810127,10810.127 +1852,2025-03-07T05:32:31.265589-08:00,1731.0,10.816866,10816.866 +1853,2025-03-07T05:32:42.068723-08:00,1728.0,10.803134,10803.134 +1854,2025-03-07T05:32:52.883376-08:00,1641.0,10.814653,10814.653 +1855,2025-03-07T05:33:03.691705-08:00,1685.0,10.808329,10808.329 +1856,2025-03-07T05:33:14.502350-08:00,1643.0,10.810645,10810.645 +1857,2025-03-07T05:33:25.312548-08:00,1681.0,10.810198,10810.198 +1858,2025-03-07T05:33:36.118835-08:00,1680.0,10.806287,10806.287 +1859,2025-03-07T05:33:46.932593-08:00,1724.0,10.813758,10813.758 +1860,2025-03-07T05:33:57.741644-08:00,1676.0,10.809051,10809.051 +1861,2025-03-07T05:34:08.558471-08:00,1731.0,10.816827,10816.827 +1862,2025-03-07T05:34:19.360925-08:00,1723.0,10.802454,10802.454 +1863,2025-03-07T05:34:30.176998-08:00,1690.0,10.816073,10816.073 +1864,2025-03-07T05:34:40.979884-08:00,1730.0,10.802886,10802.886 +1865,2025-03-07T05:34:51.792769-08:00,1728.0,10.812885,10812.885 +1866,2025-03-07T05:35:02.607627-08:00,1697.0,10.814858,10814.858 +1867,2025-03-07T05:35:13.417079-08:00,1731.0,10.809452,10809.452 +1868,2025-03-07T05:35:24.231687-08:00,1655.0,10.814608,10814.608 +1869,2025-03-07T05:35:35.033856-08:00,1711.0,10.802169,10802.169 +1870,2025-03-07T05:35:45.842934-08:00,1728.0,10.809078,10809.078 +1871,2025-03-07T05:35:56.658576-08:00,1722.0,10.815642,10815.642 +1872,2025-03-07T05:36:07.463590-08:00,1670.0,10.805014,10805.014 +1873,2025-03-07T05:36:18.280574-08:00,1726.0,10.816984,10816.984 +1874,2025-03-07T05:36:29.089632-08:00,1649.0,10.809058,10809.058 +1875,2025-03-07T05:36:39.900065-08:00,1701.0,10.810433,10810.433 +1876,2025-03-07T05:36:50.708918-08:00,1719.0,10.808853,10808.853 +1877,2025-03-07T05:37:01.529587-08:00,1709.0,10.820669,10820.669 +1878,2025-03-07T05:37:12.333733-08:00,1719.0,10.804146,10804.146 +1879,2025-03-07T05:37:23.146820-08:00,1682.0,10.813087,10813.087 +1880,2025-03-07T05:37:33.961847-08:00,1640.0,10.815027,10815.027 +1881,2025-03-07T05:37:44.782504-08:00,1701.0,10.820657,10820.657 +1882,2025-03-07T05:37:55.589485-08:00,1715.0,10.806981,10806.981 +1883,2025-03-07T05:38:06.392576-08:00,1729.0,10.803091,10803.091 +1884,2025-03-07T05:38:17.200922-08:00,1728.0,10.808346,10808.346 +1885,2025-03-07T05:38:28.018822-08:00,1697.0,10.8179,10817.9 +1886,2025-03-07T05:38:38.822875-08:00,1643.0,10.804053,10804.053 +1887,2025-03-07T05:38:49.639401-08:00,1662.0,10.816526,10816.526 +1888,2025-03-07T05:39:00.451901-08:00,1700.0,10.8125,10812.5 +1889,2025-03-07T05:39:11.261916-08:00,1655.0,10.810015,10810.015 +1890,2025-03-07T05:39:22.067932-08:00,1716.0,10.806016,10806.016 +1891,2025-03-07T05:39:32.873715-08:00,1689.0,10.805783,10805.783 +1892,2025-03-07T05:39:43.688740-08:00,1654.0,10.815025,10815.025 +1893,2025-03-07T05:39:54.490857-08:00,1701.0,10.802117,10802.117 +1894,2025-03-07T05:40:05.303590-08:00,1645.0,10.812733,10812.733 +1895,2025-03-07T05:40:16.117911-08:00,1715.0,10.814321,10814.321 +1896,2025-03-07T05:40:26.922032-08:00,1714.0,10.804121,10804.121 +1897,2025-03-07T05:40:37.731879-08:00,1687.0,10.809847,10809.847 +1898,2025-03-07T05:40:48.534886-08:00,1685.0,10.803007,10803.007 +1899,2025-03-07T05:40:59.348875-08:00,1677.0,10.813989,10813.989 +1900,2025-03-07T05:41:10.152610-08:00,1699.0,10.803735,10803.735 +1901,2025-03-07T05:41:20.966594-08:00,1683.0,10.813984,10813.984 +1902,2025-03-07T05:41:31.778588-08:00,1682.0,10.811994,10811.994 +1903,2025-03-07T05:41:42.589907-08:00,1728.0,10.811319,10811.319 +1904,2025-03-07T05:41:53.395800-08:00,1728.0,10.805893,10805.893 +1905,2025-03-07T05:42:04.211096-08:00,1645.0,10.815296,10815.296 +1906,2025-03-07T05:42:15.023830-08:00,1658.0,10.812734,10812.734 +1907,2025-03-07T05:42:25.827912-08:00,1680.0,10.804082,10804.082 +1908,2025-03-07T05:42:36.637589-08:00,1648.0,10.809677,10809.677 +1909,2025-03-07T05:42:47.439574-08:00,1717.0,10.801985,10801.985 +1910,2025-03-07T05:42:58.250593-08:00,1680.0,10.811019,10811.019 +1911,2025-03-07T05:43:09.069129-08:00,1725.0,10.818536,10818.536 +1912,2025-03-07T05:43:19.882807-08:00,1727.0,10.813678,10813.678 +1913,2025-03-07T05:43:30.688932-08:00,1649.0,10.806125,10806.125 +1914,2025-03-07T05:43:41.495016-08:00,1644.0,10.806084,10806.084 +1915,2025-03-07T05:43:52.297795-08:00,1711.0,10.802779,10802.779 +1916,2025-03-07T05:44:03.102934-08:00,1728.0,10.805139,10805.139 +1917,2025-03-07T05:44:13.919599-08:00,1699.0,10.816665,10816.665 +1918,2025-03-07T05:44:24.720595-08:00,1728.0,10.800996,10800.996 +1919,2025-03-07T05:44:35.536595-08:00,1680.0,10.816,10816.0 +1920,2025-03-07T05:44:46.345592-08:00,1681.0,10.808997,10808.997 +1921,2025-03-07T05:44:57.158267-08:00,1647.0,10.812675,10812.675 +1922,2025-03-07T05:45:07.955797-08:00,1665.0,10.79753,10797.53 +1923,2025-03-07T05:45:18.776966-08:00,1687.0,10.821169,10821.169 +1924,2025-03-07T05:45:29.584630-08:00,1630.0,10.807664,10807.664 +1925,2025-03-07T05:45:40.397801-08:00,1727.0,10.813171,10813.171 +1926,2025-03-07T05:45:51.200850-08:00,1712.0,10.803049,10803.049 +1927,2025-03-07T05:46:02.007598-08:00,1682.0,10.806748,10806.748 +1928,2025-03-07T05:46:12.815221-08:00,1698.0,10.807623,10807.623 +1929,2025-03-07T05:46:23.623584-08:00,1646.0,10.808363,10808.363 +1930,2025-03-07T05:46:34.438879-08:00,1715.0,10.815295,10815.295 +1931,2025-03-07T05:46:45.236932-08:00,1718.0,10.798053,10798.053 +1932,2025-03-07T05:46:56.041147-08:00,1725.0,10.804215,10804.215 +1933,2025-03-07T05:47:06.844805-08:00,1728.0,10.803658,10803.658 +1934,2025-03-07T05:47:17.658768-08:00,1706.0,10.813963,10813.963 +1935,2025-03-07T05:47:28.456812-08:00,1639.0,10.798044,10798.044 +1936,2025-03-07T05:47:39.265770-08:00,1706.0,10.808958,10808.958 +1937,2025-03-07T05:47:50.067638-08:00,1684.0,10.801868,10801.868 +1938,2025-03-07T05:48:00.876945-08:00,1683.0,10.809307,10809.307 +1939,2025-03-07T05:48:11.686907-08:00,1703.0,10.809962,10809.962 +1940,2025-03-07T05:48:22.502856-08:00,1651.0,10.815949,10815.949 +1941,2025-03-07T05:48:33.308594-08:00,1714.0,10.805738,10805.738 +1942,2025-03-07T05:48:44.119584-08:00,1708.0,10.81099,10810.99 +1943,2025-03-07T05:48:54.925734-08:00,1710.0,10.80615,10806.15 +1944,2025-03-07T05:49:05.737949-08:00,1675.0,10.812215,10812.215 +1945,2025-03-07T05:49:16.546809-08:00,1698.0,10.80886,10808.86 +1946,2025-03-07T05:49:27.355643-08:00,1633.0,10.808834,10808.834 +1947,2025-03-07T05:49:38.153073-08:00,1706.0,10.79743,10797.43 +1948,2025-03-07T05:49:48.961739-08:00,1653.0,10.808666,10808.666 +1949,2025-03-07T05:49:59.780899-08:00,1670.0,10.81916,10819.16 +1950,2025-03-07T05:50:10.584643-08:00,1676.0,10.803744,10803.744 +1951,2025-03-07T05:50:21.388134-08:00,1680.0,10.803491,10803.491 +1952,2025-03-07T05:50:32.190602-08:00,1723.0,10.802468,10802.468 +1953,2025-03-07T05:50:43.000200-08:00,1726.0,10.809598,10809.598 +1954,2025-03-07T05:50:53.818717-08:00,1702.0,10.818517,10818.517 +1955,2025-03-07T05:51:04.624901-08:00,1697.0,10.806184,10806.184 +1956,2025-03-07T05:51:15.433865-08:00,1639.0,10.808964,10808.964 +1957,2025-03-07T05:51:26.245593-08:00,1671.0,10.811728,10811.728 +1958,2025-03-07T05:51:37.055591-08:00,1653.0,10.809998,10809.998 +1959,2025-03-07T05:51:47.852576-08:00,1651.0,10.796985,10796.985 +1960,2025-03-07T05:51:58.662590-08:00,1712.0,10.810014,10810.014 +1961,2025-03-07T05:52:09.464598-08:00,1694.0,10.802008,10802.008 +1962,2025-03-07T05:52:20.270784-08:00,1721.0,10.806186,10806.186 +1963,2025-03-07T05:52:31.080137-08:00,1727.0,10.809353,10809.353 +1964,2025-03-07T05:52:41.888748-08:00,1730.0,10.808611,10808.611 +1965,2025-03-07T05:52:52.692033-08:00,1728.0,10.803285,10803.285 +1966,2025-03-07T05:53:03.505936-08:00,1726.0,10.813903,10813.903 +1967,2025-03-07T05:53:14.314131-08:00,1689.0,10.808195,10808.195 +1968,2025-03-07T05:53:25.123140-08:00,1714.0,10.809009,10809.009 +1969,2025-03-07T05:53:35.931979-08:00,1655.0,10.808839,10808.839 +1970,2025-03-07T05:53:46.747798-08:00,1699.0,10.815819,10815.819 +1971,2025-03-07T05:53:57.557576-08:00,1718.0,10.809778,10809.778 +1972,2025-03-07T05:54:08.359595-08:00,1670.0,10.802019,10802.019 +1973,2025-03-07T05:54:19.176648-08:00,1728.0,10.817053,10817.053 +1974,2025-03-07T05:54:29.984926-08:00,1715.0,10.808278,10808.278 +1975,2025-03-07T05:54:40.792912-08:00,1689.0,10.807986,10807.986 +1976,2025-03-07T05:54:51.602085-08:00,1728.0,10.809173,10809.173 +1977,2025-03-07T05:55:02.409741-08:00,1635.0,10.807656,10807.656 +1978,2025-03-07T05:55:13.225907-08:00,1700.0,10.816166,10816.166 +1979,2025-03-07T05:55:24.032810-08:00,1696.0,10.806903,10806.903 +1980,2025-03-07T05:55:34.841853-08:00,1691.0,10.809043,10809.043 +1981,2025-03-07T05:55:45.652593-08:00,1725.0,10.81074,10810.74 +1982,2025-03-07T05:55:56.466796-08:00,1721.0,10.814203,10814.203 +1983,2025-03-07T05:56:07.269513-08:00,1693.0,10.802717,10802.717 +1984,2025-03-07T05:56:18.078259-08:00,1727.0,10.808746,10808.746 +1985,2025-03-07T05:56:28.886960-08:00,1715.0,10.808701,10808.701 +1986,2025-03-07T05:56:39.706593-08:00,1649.0,10.819633,10819.633 +1987,2025-03-07T05:56:50.510598-08:00,1722.0,10.804005,10804.005 +1988,2025-03-07T05:57:01.313589-08:00,1711.0,10.802991,10802.991 +1989,2025-03-07T05:57:12.124577-08:00,1711.0,10.810988,10810.988 +1990,2025-03-07T05:57:22.931821-08:00,1713.0,10.807244,10807.244 +1991,2025-03-07T05:57:33.751949-08:00,1712.0,10.820128,10820.128 +1992,2025-03-07T05:57:44.551887-08:00,1635.0,10.799938,10799.938 +1993,2025-03-07T05:57:55.365791-08:00,1722.0,10.813904,10813.904 +1994,2025-03-07T05:58:06.167991-08:00,1664.0,10.8022,10802.2 +1995,2025-03-07T05:58:16.984874-08:00,1723.0,10.816883,10816.883 +1996,2025-03-07T05:58:27.786710-08:00,1721.0,10.801836,10801.836 +1997,2025-03-07T05:58:38.593597-08:00,1680.0,10.806887,10806.887 +1998,2025-03-07T05:58:49.399577-08:00,1715.0,10.80598,10805.98 +1999,2025-03-07T05:59:00.217818-08:00,1682.0,10.818241,10818.241 +2000,2025-03-07T05:59:11.019585-08:00,1680.0,10.801767,10801.767 +2001,2025-03-07T05:59:21.837740-08:00,1693.0,10.818155,10818.155 +2002,2025-03-07T05:59:32.649724-08:00,1647.0,10.811984,10811.984 +2003,2025-03-07T05:59:43.462438-08:00,1729.0,10.812714,10812.714 +2004,2025-03-07T05:59:54.274593-08:00,1706.0,10.812155,10812.155 +2005,2025-03-07T06:00:05.090764-08:00,1679.0,10.816171,10816.171 +2006,2025-03-07T06:00:15.899545-08:00,1729.0,10.808781,10808.781 +2007,2025-03-07T06:00:26.717581-08:00,1728.0,10.818036,10818.036 +2008,2025-03-07T06:00:37.523587-08:00,1728.0,10.806006,10806.006 +2009,2025-03-07T06:00:48.341593-08:00,1680.0,10.818006,10818.006 +2010,2025-03-07T06:00:59.154593-08:00,1700.0,10.813,10813.0 +2011,2025-03-07T06:01:09.967211-08:00,1723.0,10.812618,10812.618 +2012,2025-03-07T06:01:20.774926-08:00,1723.0,10.807715,10807.715 +2013,2025-03-07T06:01:31.584981-08:00,1677.0,10.810055,10810.055 +2014,2025-03-07T06:01:42.400597-08:00,1677.0,10.815616,10815.616 +2015,2025-03-07T06:01:53.209142-08:00,1729.0,10.808545,10808.545 +2016,2025-03-07T06:02:04.012685-08:00,1680.0,10.803543,10803.543 +2017,2025-03-07T06:02:14.824750-08:00,1675.0,10.812065,10812.065 +2018,2025-03-07T06:02:25.625591-08:00,1723.0,10.800841,10800.841 +2019,2025-03-07T06:02:36.444936-08:00,1681.0,10.819345,10819.345 +2020,2025-03-07T06:02:47.248229-08:00,1712.0,10.803293,10803.293 +2021,2025-03-07T06:02:58.059916-08:00,1726.0,10.811687,10811.687 +2022,2025-03-07T06:03:08.864980-08:00,1679.0,10.805064,10805.064 +2023,2025-03-07T06:03:19.674599-08:00,1727.0,10.809619,10809.619 +2024,2025-03-07T06:03:30.476144-08:00,1683.0,10.801545,10801.545 +2025,2025-03-07T06:03:41.291593-08:00,1683.0,10.815449,10815.449 +2026,2025-03-07T06:03:52.093600-08:00,1667.0,10.802007,10802.007 +2027,2025-03-07T06:04:02.902574-08:00,1680.0,10.808974,10808.974 +2028,2025-03-07T06:04:13.719642-08:00,1681.0,10.817068,10817.068 +2029,2025-03-07T06:04:24.520841-08:00,1712.0,10.801199,10801.199 +2030,2025-03-07T06:04:35.334966-08:00,1700.0,10.814125,10814.125 +2031,2025-03-07T06:04:46.147152-08:00,1678.0,10.812186,10812.186 +2032,2025-03-07T06:04:56.952712-08:00,1643.0,10.80556,10805.56 +2033,2025-03-07T06:05:07.766588-08:00,1728.0,10.813876,10813.876 +2034,2025-03-07T06:05:18.570591-08:00,1722.0,10.804003,10804.003 +2035,2025-03-07T06:05:29.382087-08:00,1658.0,10.811496,10811.496 +2036,2025-03-07T06:05:40.212081-08:00,1664.0,10.829994,10829.994 +2037,2025-03-07T06:05:51.016123-08:00,1728.0,10.804042,10804.042 +2038,2025-03-07T06:06:01.830839-08:00,1677.0,10.814716,10814.716 +2039,2025-03-07T06:06:12.642225-08:00,1725.0,10.811386,10811.386 +2040,2025-03-07T06:06:23.455289-08:00,1680.0,10.813064,10813.064 +2041,2025-03-07T06:06:34.265462-08:00,1681.0,10.810173,10810.173 +2042,2025-03-07T06:06:45.085384-08:00,1705.0,10.819922,10819.922 +2043,2025-03-07T06:06:55.899436-08:00,1726.0,10.814052,10814.052 +2044,2025-03-07T06:07:06.709325-08:00,1725.0,10.809889,10809.889 +2045,2025-03-07T06:07:17.517064-08:00,1691.0,10.807739,10807.739 +2046,2025-03-07T06:07:28.329306-08:00,1681.0,10.812242,10812.242 +2047,2025-03-07T06:07:39.150332-08:00,1730.0,10.821026,10821.026 +2048,2025-03-07T06:07:49.954082-08:00,1718.0,10.80375,10803.75 +2049,2025-03-07T06:08:00.771340-08:00,1648.0,10.817258,10817.258 +2050,2025-03-07T06:08:11.584368-08:00,1679.0,10.813028,10813.028 +2051,2025-03-07T06:08:22.397083-08:00,1715.0,10.812715,10812.715 +2052,2025-03-07T06:08:33.208300-08:00,1711.0,10.811217,10811.217 +2053,2025-03-07T06:08:44.024081-08:00,1664.0,10.815781,10815.781 +2054,2025-03-07T06:08:54.837383-08:00,1729.0,10.813302,10813.302 +2055,2025-03-07T06:09:05.657364-08:00,1642.0,10.819981,10819.981 +2056,2025-03-07T06:09:16.465115-08:00,1710.0,10.807751,10807.751 +2057,2025-03-07T06:09:27.287034-08:00,1710.0,10.821919,10821.919 +2058,2025-03-07T06:09:38.102554-08:00,1713.0,10.81552,10815.52 +2059,2025-03-07T06:09:48.921488-08:00,1650.0,10.818934,10818.934 +2060,2025-03-07T06:09:59.732234-08:00,1709.0,10.810746,10810.746 +2061,2025-03-07T06:10:10.544291-08:00,1722.0,10.812057,10812.057 +2062,2025-03-07T06:10:21.353797-08:00,1686.0,10.809506,10809.506 +2063,2025-03-07T06:10:32.172545-08:00,1713.0,10.818748,10818.748 +2064,2025-03-07T06:10:42.990070-08:00,1690.0,10.817525,10817.525 +2065,2025-03-07T06:10:53.799695-08:00,1683.0,10.809625,10809.625 +2066,2025-03-07T06:11:04.613091-08:00,1711.0,10.813396,10813.396 +2067,2025-03-07T06:11:15.423614-08:00,1666.0,10.810523,10810.523 +2068,2025-03-07T06:11:26.235956-08:00,1705.0,10.812342,10812.342 +2069,2025-03-07T06:11:37.052086-08:00,1727.0,10.81613,10816.13 +2070,2025-03-07T06:11:47.858289-08:00,1728.0,10.806203,10806.203 +2071,2025-03-07T06:11:58.677835-08:00,1681.0,10.819546,10819.546 +2072,2025-03-07T06:12:09.488453-08:00,1725.0,10.810618,10810.618 +2073,2025-03-07T06:12:20.307509-08:00,1698.0,10.819056,10819.056 +2074,2025-03-07T06:12:31.125975-08:00,1645.0,10.818466,10818.466 +2075,2025-03-07T06:12:39.431319-08:00,1678.0,8.305344,8305.344 +2076,2025-03-07T06:12:41.934098-08:00,1729.0,2.502779,2502.779 +2077,2025-03-07T06:12:52.748074-08:00,1685.0,10.813976,10813.976 +2078,2025-03-07T06:13:03.558113-08:00,1634.0,10.810039,10810.039 +2079,2025-03-07T06:13:14.378417-08:00,1662.0,10.820304,10820.304 +2080,2025-03-07T06:13:25.192315-08:00,1644.0,10.813898,10813.898 +2081,2025-03-07T06:13:36.013078-08:00,1676.0,10.820763,10820.763 +2082,2025-03-07T06:13:46.820309-08:00,1678.0,10.807231,10807.231 +2083,2025-03-07T06:13:57.639364-08:00,1726.0,10.819055,10819.055 +2084,2025-03-07T06:14:08.450391-08:00,1724.0,10.811027,10811.027 +2085,2025-03-07T06:14:19.261264-08:00,1716.0,10.810873,10810.873 +2086,2025-03-07T06:14:30.061129-08:00,1681.0,10.799865,10799.865 +2087,2025-03-07T06:14:40.871311-08:00,1691.0,10.810182,10810.182 +2088,2025-03-07T06:14:51.679086-08:00,1638.0,10.807775,10807.775 +2089,2025-03-07T06:15:02.484064-08:00,1681.0,10.804978,10804.978 +2090,2025-03-07T06:15:13.304071-08:00,1726.0,10.820007,10820.007 +2091,2025-03-07T06:15:24.114429-08:00,1707.0,10.810358,10810.358 +2092,2025-03-07T06:15:34.917347-08:00,1713.0,10.802918,10802.918 +2093,2025-03-07T06:15:45.722217-08:00,1675.0,10.80487,10804.87 +2094,2025-03-07T06:15:56.533086-08:00,1671.0,10.810869,10810.869 +2095,2025-03-07T06:16:07.340078-08:00,1680.0,10.806992,10806.992 +2096,2025-03-07T06:16:18.151390-08:00,1715.0,10.811312,10811.312 +2097,2025-03-07T06:16:28.961135-08:00,1728.0,10.809745,10809.745 +2098,2025-03-07T06:16:39.765087-08:00,1685.0,10.803952,10803.952 +2099,2025-03-07T06:16:50.579123-08:00,1700.0,10.814036,10814.036 +2100,2025-03-07T06:17:01.383077-08:00,1730.0,10.803954,10803.954 +2101,2025-03-07T06:17:12.193672-08:00,1694.0,10.810595,10810.595 +2102,2025-03-07T06:17:23.006448-08:00,1687.0,10.812776,10812.776 +2103,2025-03-07T06:17:33.811086-08:00,1648.0,10.804638,10804.638 +2104,2025-03-07T06:17:44.625078-08:00,1682.0,10.813992,10813.992 +2105,2025-03-07T06:17:55.434084-08:00,1728.0,10.809006,10809.006 +2106,2025-03-07T06:18:06.243342-08:00,1683.0,10.809258,10809.258 +2107,2025-03-07T06:18:17.056281-08:00,1647.0,10.812939,10812.939 +2108,2025-03-07T06:18:27.867878-08:00,1687.0,10.811597,10811.597 +2109,2025-03-07T06:18:38.680453-08:00,1719.0,10.812575,10812.575 +2110,2025-03-07T06:18:49.496086-08:00,1685.0,10.815633,10815.633 +2111,2025-03-07T06:19:00.312156-08:00,1711.0,10.81607,10816.07 +2112,2025-03-07T06:19:11.130635-08:00,1726.0,10.818479,10818.479 +2113,2025-03-07T06:19:21.938632-08:00,1690.0,10.807997,10807.997 +2114,2025-03-07T06:19:32.760348-08:00,1729.0,10.821716,10821.716 +2115,2025-03-07T06:19:43.574085-08:00,1717.0,10.813737,10813.737 +2116,2025-03-07T06:19:54.383373-08:00,1731.0,10.809288,10809.288 +2117,2025-03-07T06:20:05.193078-08:00,1727.0,10.809705,10809.705 +2118,2025-03-07T06:20:16.007374-08:00,1649.0,10.814296,10814.296 +2119,2025-03-07T06:20:26.816413-08:00,1651.0,10.809039,10809.039 +2120,2025-03-07T06:20:37.627655-08:00,1681.0,10.811242,10811.242 +2121,2025-03-07T06:20:48.443325-08:00,1659.0,10.81567,10815.67 +2122,2025-03-07T06:20:59.254323-08:00,1636.0,10.810998,10810.998 +2123,2025-03-07T06:21:10.063299-08:00,1726.0,10.808976,10808.976 +2124,2025-03-07T06:21:20.882968-08:00,1729.0,10.819669,10819.669 +2125,2025-03-07T06:21:31.700525-08:00,1649.0,10.817557,10817.557 +2126,2025-03-07T06:21:42.509275-08:00,1729.0,10.80875,10808.75 +2127,2025-03-07T06:21:53.322072-08:00,1711.0,10.812797,10812.797 +2128,2025-03-07T06:22:04.141648-08:00,1709.0,10.819576,10819.576 +2129,2025-03-07T06:22:14.958403-08:00,1681.0,10.816755,10816.755 +2130,2025-03-07T06:22:25.761333-08:00,1635.0,10.80293,10802.93 +2131,2025-03-07T06:22:36.578079-08:00,1685.0,10.816746,10816.746 +2132,2025-03-07T06:22:47.394060-08:00,1705.0,10.815981,10815.981 +2133,2025-03-07T06:22:58.197109-08:00,1645.0,10.803049,10803.049 +2134,2025-03-07T06:23:09.012518-08:00,1699.0,10.815409,10815.409 +2135,2025-03-07T06:23:19.826758-08:00,1728.0,10.81424,10814.24 +2136,2025-03-07T06:23:30.637089-08:00,1711.0,10.810331,10810.331 +2137,2025-03-07T06:23:41.445369-08:00,1665.0,10.80828,10808.28 +2138,2025-03-07T06:23:52.263088-08:00,1727.0,10.817719,10817.719 +2139,2025-03-07T06:24:03.074492-08:00,1733.0,10.811404,10811.404 +2140,2025-03-07T06:24:13.883627-08:00,1734.0,10.809135,10809.135 +2141,2025-03-07T06:24:24.693412-08:00,1649.0,10.809785,10809.785 +2142,2025-03-07T06:24:35.514076-08:00,1686.0,10.820664,10820.664 +2143,2025-03-07T06:24:46.321080-08:00,1683.0,10.807004,10807.004 +2144,2025-03-07T06:24:57.143358-08:00,1649.0,10.822278,10822.278 +2145,2025-03-07T06:25:07.949474-08:00,1731.0,10.806116,10806.116 +2146,2025-03-07T06:25:18.766347-08:00,1649.0,10.816873,10816.873 +2147,2025-03-07T06:25:29.578064-08:00,1679.0,10.811717,10811.717 +2148,2025-03-07T06:25:40.395307-08:00,1724.0,10.817243,10817.243 +2149,2025-03-07T06:25:51.206080-08:00,1733.0,10.810773,10810.773 +2150,2025-03-07T06:26:02.018398-08:00,1711.0,10.812318,10812.318 +2151,2025-03-07T06:26:12.833614-08:00,1693.0,10.815216,10815.216 +2152,2025-03-07T06:26:23.634213-08:00,1723.0,10.800599,10800.599 +2153,2025-03-07T06:26:34.453080-08:00,1710.0,10.818867,10818.867 +2154,2025-03-07T06:26:45.266071-08:00,1731.0,10.812991,10812.991 +2155,2025-03-07T06:26:56.069245-08:00,1703.0,10.803174,10803.174 +2156,2025-03-07T06:27:06.891448-08:00,1658.0,10.822203,10822.203 +2157,2025-03-07T06:27:17.705063-08:00,1693.0,10.813615,10813.615 +2158,2025-03-07T06:27:28.521080-08:00,1669.0,10.816017,10816.017 +2159,2025-03-07T06:27:39.340128-08:00,1723.0,10.819048,10819.048 +2160,2025-03-07T06:27:50.149803-08:00,1662.0,10.809675,10809.675 +2161,2025-03-07T06:28:00.963894-08:00,1718.0,10.814091,10814.091 +2162,2025-03-07T06:28:11.783082-08:00,1703.0,10.819188,10819.188 +2163,2025-03-07T06:28:22.593475-08:00,1654.0,10.810393,10810.393 +2164,2025-03-07T06:28:33.409273-08:00,1744.0,10.815798,10815.798 +2165,2025-03-07T06:28:44.233198-08:00,1744.0,10.823925,10823.925 +2166,2025-03-07T06:28:55.045143-08:00,1744.0,10.811945,10811.945 +2167,2025-03-07T06:29:05.858143-08:00,1696.0,10.813,10813.0 +2168,2025-03-07T06:29:16.665071-08:00,1665.0,10.806928,10806.928 +2169,2025-03-07T06:29:27.484534-08:00,1661.0,10.819463,10819.463 +2170,2025-03-07T06:29:38.296204-08:00,1694.0,10.81167,10811.67 +2171,2025-03-07T06:29:49.111188-08:00,1712.0,10.814984,10814.984 +2172,2025-03-07T06:29:59.929569-08:00,1740.0,10.818381,10818.381 +2173,2025-03-07T06:30:10.738175-08:00,1744.0,10.808606,10808.606 +2174,2025-03-07T06:30:21.545078-08:00,1695.0,10.806903,10806.903 +2175,2025-03-07T06:30:32.368046-08:00,1658.0,10.822968,10822.968 +2176,2025-03-07T06:30:43.187078-08:00,1648.0,10.819032,10819.032 +2177,2025-03-07T06:30:54.001081-08:00,1702.0,10.814003,10814.003 +2178,2025-03-07T06:31:04.814644-08:00,1737.0,10.813563,10813.563 +2179,2025-03-07T06:31:15.628672-08:00,1744.0,10.814028,10814.028 +2180,2025-03-07T06:31:26.443084-08:00,1743.0,10.814412,10814.412 +2181,2025-03-07T06:31:37.249076-08:00,1713.0,10.805992,10805.992 +2182,2025-03-07T06:31:48.071059-08:00,1743.0,10.821983,10821.983 +2183,2025-03-07T06:31:58.886403-08:00,1719.0,10.815344,10815.344 +2184,2025-03-07T06:32:09.695421-08:00,1664.0,10.809018,10809.018 +2185,2025-03-07T06:32:20.499081-08:00,1700.0,10.80366,10803.66 +2186,2025-03-07T06:32:31.313089-08:00,1677.0,10.814008,10814.008 +2187,2025-03-07T06:32:42.139431-08:00,1746.0,10.826342,10826.342 +2188,2025-03-07T06:32:52.941125-08:00,1705.0,10.801694,10801.694 +2189,2025-03-07T06:33:03.764399-08:00,1746.0,10.823274,10823.274 +2190,2025-03-07T06:33:14.571232-08:00,1675.0,10.806833,10806.833 +2191,2025-03-07T06:33:25.381462-08:00,1751.0,10.81023,10810.23 +2192,2025-03-07T06:33:36.198080-08:00,1747.0,10.816618,10816.618 +2193,2025-03-07T06:33:47.012119-08:00,1686.0,10.814039,10814.039 +2194,2025-03-07T06:33:57.825813-08:00,1749.0,10.813694,10813.694 +2195,2025-03-07T06:34:08.636135-08:00,1668.0,10.810322,10810.322 +2196,2025-03-07T06:34:19.447413-08:00,1748.0,10.811278,10811.278 +2197,2025-03-07T06:34:30.257304-08:00,1686.0,10.809891,10809.891 +2198,2025-03-07T06:34:41.077240-08:00,1753.0,10.819936,10819.936 +2199,2025-03-07T06:34:51.886826-08:00,1713.0,10.809586,10809.586 +2200,2025-03-07T06:35:02.701199-08:00,1744.0,10.814373,10814.373 +2201,2025-03-07T06:35:13.515076-08:00,1755.0,10.813877,10813.877 +2202,2025-03-07T06:35:24.319680-08:00,1685.0,10.804604,10804.604 +2203,2025-03-07T06:35:35.135403-08:00,1757.0,10.815723,10815.723 +2204,2025-03-07T06:35:45.942460-08:00,1757.0,10.807057,10807.057 +2205,2025-03-07T06:35:56.763679-08:00,1723.0,10.821219,10821.219 +2206,2025-03-07T06:36:07.572429-08:00,1723.0,10.80875,10808.75 +2207,2025-03-07T06:36:18.382494-08:00,1705.0,10.810065,10810.065 +2208,2025-03-07T06:36:29.201119-08:00,1680.0,10.818625,10818.625 +2209,2025-03-07T06:36:40.011076-08:00,1741.0,10.809957,10809.957 +2210,2025-03-07T06:36:50.813342-08:00,1701.0,10.802266,10802.266 +2211,2025-03-07T06:37:01.623103-08:00,1709.0,10.809761,10809.761 +2212,2025-03-07T06:37:12.438374-08:00,1753.0,10.815271,10815.271 +2213,2025-03-07T06:37:23.257074-08:00,1731.0,10.8187,10818.7 +2214,2025-03-07T06:37:34.066080-08:00,1705.0,10.809006,10809.006 +2215,2025-03-07T06:37:44.872081-08:00,1759.0,10.806001,10806.001 +2216,2025-03-07T06:37:55.685079-08:00,1747.0,10.812998,10812.998 +2217,2025-03-07T06:38:06.489345-08:00,1759.0,10.804266,10804.266 +2218,2025-03-07T06:38:17.304573-08:00,1719.0,10.815228,10815.228 +2219,2025-03-07T06:38:28.118208-08:00,1764.0,10.813635,10813.635 +2220,2025-03-07T06:38:38.928686-08:00,1759.0,10.810478,10810.478 +2221,2025-03-07T06:38:49.741082-08:00,1762.0,10.812396,10812.396 +2222,2025-03-07T06:38:56.368208-08:00,1717.0,6.627126,6627.126 +2223,2025-03-07T06:39:00.556088-08:00,1681.0,4.18788,4187.88 +2224,2025-03-07T06:39:11.366076-08:00,1739.0,10.809988,10809.988 +2225,2025-03-07T06:39:22.179683-08:00,1745.0,10.813607,10813.607 +2226,2025-03-07T06:39:32.999312-08:00,1725.0,10.819629,10819.629 +2227,2025-03-07T06:39:43.808079-08:00,1727.0,10.808767,10808.767 +2228,2025-03-07T06:39:54.627560-08:00,1754.0,10.819481,10819.481 +2229,2025-03-07T06:40:05.437371-08:00,1771.0,10.809811,10809.811 +2230,2025-03-07T06:40:16.256675-08:00,1723.0,10.819304,10819.304 +2231,2025-03-07T06:40:27.068072-08:00,1691.0,10.811397,10811.397 +2232,2025-03-07T06:40:37.886110-08:00,1728.0,10.818038,10818.038 +2233,2025-03-07T06:40:48.694322-08:00,1694.0,10.808212,10808.212 +2234,2025-03-07T06:40:59.517352-08:00,1732.0,10.82303,10823.03 +2235,2025-03-07T06:41:10.324135-08:00,1741.0,10.806783,10806.783 +2236,2025-03-07T06:41:21.148079-08:00,1689.0,10.823944,10823.944 +2237,2025-03-07T06:41:31.966531-08:00,1715.0,10.818452,10818.452 +2238,2025-03-07T06:41:42.781299-08:00,1761.0,10.814768,10814.768 +2239,2025-03-07T06:41:53.599275-08:00,1701.0,10.817976,10817.976 +2240,2025-03-07T06:42:04.423292-08:00,1773.0,10.824017,10824.017 +2241,2025-03-07T06:42:15.242099-08:00,1775.0,10.818807,10818.807 +2242,2025-03-07T06:42:26.055231-08:00,1717.0,10.813132,10813.132 +2243,2025-03-07T06:42:36.871070-08:00,1758.0,10.815839,10815.839 +2244,2025-03-07T06:42:47.695427-08:00,1774.0,10.824357,10824.357 +2245,2025-03-07T06:42:58.514444-08:00,1743.0,10.819017,10819.017 +2246,2025-03-07T06:43:09.327315-08:00,1667.0,10.812871,10812.871 +2247,2025-03-07T06:43:20.154316-08:00,1756.0,10.827001,10827.001 +2248,2025-03-07T06:43:30.969060-08:00,1733.0,10.814744,10814.744 +2249,2025-03-07T06:43:41.788081-08:00,1744.0,10.819021,10819.021 +2250,2025-03-07T06:43:52.599086-08:00,1741.0,10.811005,10811.005 +2251,2025-03-07T06:44:03.429351-08:00,1749.0,10.830265,10830.265 +2252,2025-03-07T06:44:14.244122-08:00,1744.0,10.814771,10814.771 +2253,2025-03-07T06:44:25.069305-08:00,1728.0,10.825183,10825.183 +2254,2025-03-07T06:44:35.891120-08:00,1711.0,10.821815,10821.815 +2255,2025-03-07T06:44:46.701086-08:00,1777.0,10.809966,10809.966 +2256,2025-03-07T06:44:57.521117-08:00,1753.0,10.820031,10820.031 +2257,2025-03-07T06:45:08.332081-08:00,1763.0,10.810964,10810.964 +2258,2025-03-07T06:45:19.148489-08:00,1687.0,10.816408,10816.408 +2259,2025-03-07T06:45:29.973388-08:00,1733.0,10.824899,10824.899 +2260,2025-03-07T06:45:40.794082-08:00,1781.0,10.820694,10820.694 +2261,2025-03-07T06:45:51.617137-08:00,1747.0,10.823055,10823.055 +2262,2025-03-07T06:46:02.430061-08:00,1757.0,10.812924,10812.924 +2263,2025-03-07T06:46:13.252219-08:00,1788.0,10.822158,10822.158 +2264,2025-03-07T06:46:24.065457-08:00,1775.0,10.813238,10813.238 +2265,2025-03-07T06:46:34.875581-08:00,1778.0,10.810124,10810.124 +2266,2025-03-07T06:46:45.694575-08:00,1778.0,10.818994,10818.994 +2267,2025-03-07T06:46:56.508109-08:00,1725.0,10.813534,10813.534 +2268,2025-03-07T06:47:07.313133-08:00,1791.0,10.805024,10805.024 +2269,2025-03-07T06:47:18.132853-08:00,1692.0,10.81972,10819.72 +2270,2025-03-07T06:47:28.942421-08:00,1751.0,10.809568,10809.568 +2271,2025-03-07T06:47:39.749635-08:00,1770.0,10.807214,10807.214 +2272,2025-03-07T06:47:50.559255-08:00,1783.0,10.80962,10809.62 +2273,2025-03-07T06:48:01.373086-08:00,1702.0,10.813831,10813.831 +2274,2025-03-07T06:48:12.193286-08:00,1792.0,10.8202,10820.2 +2275,2025-03-07T06:48:22.996064-08:00,1783.0,10.802778,10802.778 +2276,2025-03-07T06:48:33.814423-08:00,1793.0,10.818359,10818.359 +2277,2025-03-07T06:48:44.631703-08:00,1797.0,10.81728,10817.28 +2278,2025-03-07T06:48:55.440465-08:00,1727.0,10.808762,10808.762 +2279,2025-03-07T06:49:06.257085-08:00,1750.0,10.81662,10816.62 +2280,2025-03-07T06:49:17.065076-08:00,1746.0,10.807991,10807.991 +2281,2025-03-07T06:49:27.876413-08:00,1755.0,10.811337,10811.337 +2282,2025-03-07T06:49:38.690453-08:00,1762.0,10.81404,10814.04 +2283,2025-03-07T06:49:49.497222-08:00,1791.0,10.806769,10806.769 +2284,2025-03-07T06:50:00.316384-08:00,1763.0,10.819162,10819.162 +2285,2025-03-07T06:50:11.118079-08:00,1758.0,10.801695,10801.695 +2286,2025-03-07T06:50:21.931079-08:00,1790.0,10.813,10813.0 +2287,2025-03-07T06:50:32.745436-08:00,1723.0,10.814357,10814.357 +2288,2025-03-07T06:50:43.551370-08:00,1797.0,10.805934,10805.934 +2289,2025-03-07T06:50:54.370080-08:00,1753.0,10.81871,10818.71 +2290,2025-03-07T06:51:05.183381-08:00,1806.0,10.813301,10813.301 +2291,2025-03-07T06:51:15.996318-08:00,1788.0,10.812937,10812.937 +2292,2025-03-07T06:51:26.801369-08:00,1805.0,10.805051,10805.051 +2293,2025-03-07T06:51:37.610267-08:00,1786.0,10.808898,10808.898 +2294,2025-03-07T06:51:48.426324-08:00,1808.0,10.816057,10816.057 +2295,2025-03-07T06:51:59.236270-08:00,1758.0,10.809946,10809.946 +2296,2025-03-07T06:52:10.045312-08:00,1811.0,10.809042,10809.042 +2297,2025-03-07T06:52:20.852073-08:00,1812.0,10.806761,10806.761 +2298,2025-03-07T06:52:31.655367-08:00,1758.0,10.803294,10803.294 +2299,2025-03-07T06:52:42.463074-08:00,1811.0,10.807707,10807.707 +2300,2025-03-07T06:52:53.284236-08:00,1771.0,10.821162,10821.162 +2301,2025-03-07T06:53:04.089264-08:00,1810.0,10.805028,10805.028 +2302,2025-03-07T06:53:14.907438-08:00,1808.0,10.818174,10818.174 +2303,2025-03-07T06:53:25.707067-08:00,1727.0,10.799629,10799.629 +2304,2025-03-07T06:53:36.531084-08:00,1767.0,10.824017,10824.017 +2305,2025-03-07T06:53:47.335059-08:00,1747.0,10.803975,10803.975 +2306,2025-03-07T06:53:58.159130-08:00,1776.0,10.824071,10824.071 +2307,2025-03-07T06:54:08.968659-08:00,1762.0,10.809529,10809.529 +2308,2025-03-07T06:54:19.785505-08:00,1792.0,10.816846,10816.846 +2309,2025-03-07T06:54:30.599746-08:00,1807.0,10.814241,10814.241 +2310,2025-03-07T06:54:41.414081-08:00,1819.0,10.814335,10814.335 +2311,2025-03-07T06:54:52.226881-08:00,1814.0,10.8128,10812.8 +2312,2025-03-07T06:55:03.044075-08:00,1822.0,10.817194,10817.194 +2313,2025-03-07T06:55:13.857433-08:00,1766.0,10.813358,10813.358 +2314,2025-03-07T06:55:24.661340-08:00,1776.0,10.803907,10803.907 +2315,2025-03-07T06:55:35.478302-08:00,1780.0,10.816962,10816.962 +2316,2025-03-07T06:55:46.291339-08:00,1815.0,10.813037,10813.037 +2317,2025-03-07T06:55:57.112088-08:00,1814.0,10.820749,10820.749 +2318,2025-03-07T06:56:07.920392-08:00,1806.0,10.808304,10808.304 +2319,2025-03-07T06:56:18.728350-08:00,1742.0,10.807958,10807.958 +2320,2025-03-07T06:56:29.540043-08:00,1794.0,10.811693,10811.693 +2321,2025-03-07T06:56:40.353579-08:00,1767.0,10.813536,10813.536 +2322,2025-03-07T06:56:51.172712-08:00,1827.0,10.819133,10819.133 +2323,2025-03-07T06:57:01.988129-08:00,1796.0,10.815417,10815.417 +2324,2025-03-07T06:57:12.801129-08:00,1807.0,10.813,10813.0 +2325,2025-03-07T06:57:23.615075-08:00,1808.0,10.813946,10813.946 +2326,2025-03-07T06:57:34.431810-08:00,1833.0,10.816735,10816.735 +2327,2025-03-07T06:57:45.241390-08:00,1783.0,10.80958,10809.58 +2328,2025-03-07T06:57:56.047744-08:00,1837.0,10.806354,10806.354 +2329,2025-03-07T06:58:06.864160-08:00,1762.0,10.816416,10816.416 +2330,2025-03-07T06:58:17.685063-08:00,1790.0,10.820903,10820.903 +2331,2025-03-07T06:58:28.494237-08:00,1795.0,10.809174,10809.174 +2332,2025-03-07T06:58:39.308394-08:00,1792.0,10.814157,10814.157 +2333,2025-03-07T06:58:50.118717-08:00,1840.0,10.810323,10810.323 +2334,2025-03-07T06:59:00.938064-08:00,1751.0,10.819347,10819.347 +2335,2025-03-07T06:59:11.742576-08:00,1829.0,10.804512,10804.512 +2336,2025-03-07T06:59:22.554081-08:00,1840.0,10.811505,10811.505 +2337,2025-03-07T06:59:33.368173-08:00,1793.0,10.814092,10814.092 +2338,2025-03-07T06:59:44.180402-08:00,1831.0,10.812229,10812.229 +2339,2025-03-07T06:59:54.988222-08:00,1787.0,10.80782,10807.82 +2340,2025-03-07T07:00:05.798439-08:00,1845.0,10.810217,10810.217 +2341,2025-03-07T07:00:16.606321-08:00,1755.0,10.807882,10807.882 +2342,2025-03-07T07:00:27.427329-08:00,1808.0,10.821008,10821.008 +2343,2025-03-07T07:00:38.236069-08:00,1760.0,10.80874,10808.74 +2344,2025-03-07T07:00:49.051403-08:00,1778.0,10.815334,10815.334 +2345,2025-03-07T07:00:59.851390-08:00,1843.0,10.799987,10799.987 +2346,2025-03-07T07:01:10.673087-08:00,1845.0,10.821697,10821.697 +2347,2025-03-07T07:01:21.476461-08:00,1853.0,10.803374,10803.374 +2348,2025-03-07T07:01:32.286135-08:00,1854.0,10.809674,10809.674 +2349,2025-03-07T07:01:43.095137-08:00,1847.0,10.809002,10809.002 +2350,2025-03-07T07:01:53.915615-08:00,1843.0,10.820478,10820.478 +2351,2025-03-07T07:02:04.712122-08:00,1829.0,10.796507,10796.507 +2352,2025-03-07T07:02:15.533472-08:00,1839.0,10.82135,10821.35 +2353,2025-03-07T07:02:26.340501-08:00,1809.0,10.807029,10807.029 +2354,2025-03-07T07:02:37.153192-08:00,1856.0,10.812691,10812.691 +2355,2025-03-07T07:02:47.971064-08:00,1808.0,10.817872,10817.872 +2356,2025-03-07T07:02:58.779117-08:00,1807.0,10.808053,10808.053 +2357,2025-03-07T07:03:09.601362-08:00,1775.0,10.822245,10822.245 +2358,2025-03-07T07:03:20.408465-08:00,1791.0,10.807103,10807.103 +2359,2025-03-07T07:03:31.224249-08:00,1861.0,10.815784,10815.784 +2360,2025-03-07T07:03:42.042258-08:00,1835.0,10.818009,10818.009 +2361,2025-03-07T07:03:52.848534-08:00,1845.0,10.806276,10806.276 +2362,2025-03-07T07:04:03.663074-08:00,1803.0,10.81454,10814.54 +2363,2025-03-07T07:04:14.471205-08:00,1778.0,10.808131,10808.131 +2364,2025-03-07T07:04:25.288137-08:00,1866.0,10.816932,10816.932 +2365,2025-03-07T07:04:36.102080-08:00,1830.0,10.813943,10813.943 +2366,2025-03-07T07:04:46.910338-08:00,1856.0,10.808258,10808.258 +2367,2025-03-07T07:04:57.724906-08:00,1817.0,10.814568,10814.568 +2368,2025-03-07T07:05:08.545072-08:00,1847.0,10.820166,10820.166 +2369,2025-03-07T07:05:19.354089-08:00,1868.0,10.809017,10809.017 +2370,2025-03-07T07:05:30.168076-08:00,1826.0,10.813987,10813.987 +2371,2025-03-07T07:05:41.021951-08:00,1845.0,10.853875,10853.875 +2372,2025-03-07T07:05:51.841258-08:00,1831.0,10.819307,10819.307 +2373,2025-03-07T07:06:02.646022-08:00,1785.0,10.804764,10804.764 +2374,2025-03-07T07:06:13.461889-08:00,1846.0,10.815867,10815.867 +2375,2025-03-07T07:06:24.275042-08:00,1843.0,10.813153,10813.153 +2376,2025-03-07T07:06:35.090937-08:00,1831.0,10.815895,10815.895 +2377,2025-03-07T07:06:45.912217-08:00,1875.0,10.82128,10821.28 +2378,2025-03-07T07:06:56.717935-08:00,1781.0,10.805718,10805.718 +2379,2025-03-07T07:07:07.530620-08:00,1875.0,10.812685,10812.685 +2380,2025-03-07T07:07:18.343122-08:00,1867.0,10.812502,10812.502 +2381,2025-03-07T07:07:29.150888-08:00,1878.0,10.807766,10807.766 +2382,2025-03-07T07:07:39.954894-08:00,1879.0,10.804006,10804.006 +2383,2025-03-07T07:07:50.771476-08:00,1878.0,10.816582,10816.582 +2384,2025-03-07T07:08:01.584178-08:00,1797.0,10.812702,10812.702 +2385,2025-03-07T07:08:12.390890-08:00,1807.0,10.806712,10806.712 +2386,2025-03-07T07:08:23.202240-08:00,1885.0,10.81135,10811.35 +2387,2025-03-07T07:08:34.021937-08:00,1839.0,10.819697,10819.697 +2388,2025-03-07T07:08:44.826881-08:00,1881.0,10.804944,10804.944 +2389,2025-03-07T07:08:55.641137-08:00,1903.0,10.814256,10814.256 +2390,2025-03-07T07:09:06.445108-08:00,1908.0,10.803971,10803.971 +2391,2025-03-07T07:09:17.260147-08:00,1875.0,10.815039,10815.039 +2392,2025-03-07T07:09:28.082011-08:00,1833.0,10.821864,10821.864 +2393,2025-03-07T07:09:38.899014-08:00,1925.0,10.817003,10817.003 +2394,2025-03-07T07:09:49.714063-08:00,1935.0,10.815049,10815.049 +2395,2025-03-07T07:10:00.527127-08:00,1877.0,10.813064,10813.064 +2396,2025-03-07T07:10:11.337978-08:00,1944.0,10.810851,10810.851 +2397,2025-03-07T07:10:22.152885-08:00,1978.0,10.814907,10814.907 +2398,2025-03-07T07:10:32.974164-08:00,1922.0,10.821279,10821.279 +2399,2025-03-07T07:10:43.786537-08:00,1911.0,10.812373,10812.373 +2400,2025-03-07T07:10:54.604887-08:00,1954.0,10.81835,10818.35 +2401,2025-03-07T07:11:05.416247-08:00,1954.0,10.81136,10811.36 +2402,2025-03-07T07:11:16.223883-08:00,1969.0,10.807636,10807.636 +2403,2025-03-07T07:11:27.047201-08:00,2009.0,10.823318,10823.318 +2404,2025-03-07T07:11:37.851384-08:00,2032.0,10.804183,10804.183 +2405,2025-03-07T07:11:48.658153-08:00,1954.0,10.806769,10806.769 +2406,2025-03-07T07:11:59.472886-08:00,1970.0,10.814733,10814.733 +2407,2025-03-07T07:12:10.282891-08:00,2037.0,10.810005,10810.005 +2408,2025-03-07T07:12:21.093997-08:00,2065.0,10.811106,10811.106 +2409,2025-03-07T07:12:31.911361-08:00,2047.0,10.817364,10817.364 +2410,2025-03-07T07:12:42.713652-08:00,2077.0,10.802291,10802.291 +2411,2025-03-07T07:12:53.528539-08:00,2061.0,10.814887,10814.887 +2412,2025-03-07T07:13:04.337044-08:00,2043.0,10.808505,10808.505 +2413,2025-03-07T07:13:15.155303-08:00,2071.0,10.818259,10818.259 +2414,2025-03-07T07:13:25.965589-08:00,2101.0,10.810286,10810.286 +2415,2025-03-07T07:13:36.776101-08:00,2109.0,10.810512,10810.512 +2416,2025-03-07T07:13:47.585493-08:00,2064.0,10.809392,10809.392 +2417,2025-03-07T07:13:58.401970-08:00,2116.0,10.816477,10816.477 +2418,2025-03-07T07:14:09.215332-08:00,2082.0,10.813362,10813.362 +2419,2025-03-07T07:14:20.023894-08:00,2128.0,10.808562,10808.562 +2420,2025-03-07T07:14:30.831883-08:00,2047.0,10.807989,10807.989 +2421,2025-03-07T07:14:41.645890-08:00,2121.0,10.814007,10814.007 +2422,2025-03-07T07:14:52.462195-08:00,2131.0,10.816305,10816.305 +2423,2025-03-07T07:15:03.271519-08:00,2129.0,10.809324,10809.324 +2424,2025-03-07T07:15:14.079893-08:00,2100.0,10.808374,10808.374 +2425,2025-03-07T07:15:24.894144-08:00,2150.0,10.814251,10814.251 +2426,2025-03-07T07:15:35.713891-08:00,2128.0,10.819747,10819.747 +2427,2025-03-07T07:15:46.520099-08:00,2149.0,10.806208,10806.208 +2428,2025-03-07T07:15:57.340250-08:00,2111.0,10.820151,10820.151 +2429,2025-03-07T07:16:08.147899-08:00,2119.0,10.807649,10807.649 +2430,2025-03-07T07:16:18.967886-08:00,2134.0,10.819987,10819.987 +2431,2025-03-07T07:16:29.777124-08:00,2123.0,10.809238,10809.238 +2432,2025-03-07T07:16:40.596454-08:00,2135.0,10.81933,10819.33 +2433,2025-03-07T07:16:51.407312-08:00,2183.0,10.810858,10810.858 +2434,2025-03-07T07:17:02.214036-08:00,2192.0,10.806724,10806.724 +2435,2025-03-07T07:17:13.025965-08:00,2156.0,10.811929,10811.929 +2436,2025-03-07T07:17:23.832889-08:00,2159.0,10.806924,10806.924 +2437,2025-03-07T07:17:34.641381-08:00,2161.0,10.808492,10808.492 +2438,2025-03-07T07:17:45.455348-08:00,2239.0,10.813967,10813.967 +2439,2025-03-07T07:17:56.269209-08:00,2234.0,10.813861,10813.861 +2440,2025-03-07T07:18:07.080211-08:00,2247.0,10.811002,10811.002 +2441,2025-03-07T07:18:17.899255-08:00,2267.0,10.819044,10819.044 +2442,2025-03-07T07:18:28.709230-08:00,2259.0,10.809975,10809.975 +2443,2025-03-07T07:18:39.523024-08:00,2299.0,10.813794,10813.794 +2444,2025-03-07T07:18:50.339212-08:00,2301.0,10.816188,10816.188 +2445,2025-03-07T07:19:01.155888-08:00,2284.0,10.816676,10816.676 +2446,2025-03-07T07:19:11.974882-08:00,2270.0,10.818994,10818.994 +2447,2025-03-07T07:19:22.794404-08:00,2277.0,10.819522,10819.522 +2448,2025-03-07T07:19:33.616178-08:00,2330.0,10.821774,10821.774 +2449,2025-03-07T07:19:44.423886-08:00,2282.0,10.807708,10807.708 +2450,2025-03-07T07:19:55.231887-08:00,2322.0,10.808001,10808.001 +2451,2025-03-07T07:20:06.046888-08:00,2335.0,10.815001,10815.001 +2452,2025-03-07T07:20:16.855302-08:00,2339.0,10.808414,10808.414 +2453,2025-03-07T07:20:27.680025-08:00,2338.0,10.824723,10824.723 +2454,2025-03-07T07:20:38.492865-08:00,2331.0,10.81284,10812.84 +2455,2025-03-07T07:20:49.317389-08:00,2346.0,10.824524,10824.524 +2456,2025-03-07T07:21:00.133094-08:00,2359.0,10.815705,10815.705 +2457,2025-03-07T07:21:10.955230-08:00,2345.0,10.822136,10822.136 +2458,2025-03-07T07:21:21.767296-08:00,2341.0,10.812066,10812.066 +2459,2025-03-07T07:21:32.587191-08:00,2317.0,10.819895,10819.895 +2460,2025-03-07T07:21:43.399208-08:00,2347.0,10.812017,10812.017 +2461,2025-03-07T07:21:54.223134-08:00,2384.0,10.823926,10823.926 +2462,2025-03-07T07:22:05.034891-08:00,2395.0,10.811757,10811.757 +2463,2025-03-07T07:22:15.857169-08:00,2401.0,10.822278,10822.278 +2464,2025-03-07T07:22:26.674206-08:00,2403.0,10.817037,10817.037 +2465,2025-03-07T07:22:37.498947-08:00,2418.0,10.824741,10824.741 +2466,2025-03-07T07:22:48.317168-08:00,2422.0,10.818221,10818.221 +2467,2025-03-07T07:22:59.136996-08:00,2407.0,10.819828,10819.828 +2468,2025-03-07T07:23:09.953119-08:00,2434.0,10.816123,10816.123 +2469,2025-03-07T07:23:20.773891-08:00,2385.0,10.820772,10820.772 +2470,2025-03-07T07:23:31.594942-08:00,2447.0,10.821051,10821.051 +2471,2025-03-07T07:23:42.404039-08:00,2435.0,10.809097,10809.097 +2472,2025-03-07T07:23:53.230942-08:00,2435.0,10.826903,10826.903 +2473,2025-03-07T07:24:04.050215-08:00,2417.0,10.819273,10819.273 +2474,2025-03-07T07:24:14.864887-08:00,2434.0,10.814672,10814.672 +2475,2025-03-07T07:24:25.680147-08:00,2438.0,10.81526,10815.26 +2476,2025-03-07T07:24:36.494950-08:00,2474.0,10.814803,10814.803 +2477,2025-03-07T07:24:47.315897-08:00,2475.0,10.820947,10820.947 +2478,2025-03-07T07:24:58.128888-08:00,2476.0,10.812991,10812.991 +2479,2025-03-07T07:25:08.946023-08:00,2438.0,10.817135,10817.135 +2480,2025-03-07T07:25:19.763556-08:00,2437.0,10.817533,10817.533 +2481,2025-03-07T07:25:30.578220-08:00,2451.0,10.814664,10814.664 +2482,2025-03-07T07:25:41.384872-08:00,2413.0,10.806652,10806.652 +2483,2025-03-07T07:25:52.201178-08:00,2480.0,10.816306,10816.306 +2484,2025-03-07T07:26:03.025808-08:00,2447.0,10.82463,10824.63 +2485,2025-03-07T07:26:13.843893-08:00,2453.0,10.818085,10818.085 +2486,2025-03-07T07:26:24.657959-08:00,2480.0,10.814066,10814.066 +2487,2025-03-07T07:26:35.470125-08:00,2473.0,10.812166,10812.166 +2488,2025-03-07T07:26:46.294603-08:00,2462.0,10.824478,10824.478 +2489,2025-03-07T07:26:57.112368-08:00,2517.0,10.817765,10817.765 +2490,2025-03-07T07:27:07.925894-08:00,2498.0,10.813526,10813.526 +2491,2025-03-07T07:27:18.744891-08:00,2512.0,10.818997,10818.997 +2492,2025-03-07T07:27:29.563207-08:00,2531.0,10.818316,10818.316 +2493,2025-03-07T07:27:40.380899-08:00,2538.0,10.817692,10817.692 +2494,2025-03-07T07:27:51.201041-08:00,2520.0,10.820142,10820.142 +2495,2025-03-07T07:28:02.024236-08:00,2532.0,10.823195,10823.195 +2496,2025-03-07T07:28:12.836887-08:00,2494.0,10.812651,10812.651 +2497,2025-03-07T07:28:23.651889-08:00,2519.0,10.815002,10815.002 +2498,2025-03-07T07:28:34.476654-08:00,2528.0,10.824765,10824.765 +2499,2025-03-07T07:28:45.294094-08:00,2517.0,10.81744,10817.44 +2500,2025-03-07T07:28:56.096447-08:00,2481.0,10.802353,10802.353 +2501,2025-03-07T07:29:06.916119-08:00,2493.0,10.819672,10819.672 +2502,2025-03-07T07:29:17.731871-08:00,2416.0,10.815752,10815.752 +2503,2025-03-07T07:29:28.546151-08:00,2467.0,10.81428,10814.28 +2504,2025-03-07T07:29:39.366041-08:00,2383.0,10.81989,10819.89 +2505,2025-03-07T07:29:50.185927-08:00,2393.0,10.819886,10819.886 +2506,2025-03-07T07:30:01.001548-08:00,2384.0,10.815621,10815.621 +2507,2025-03-07T07:30:11.817650-08:00,2414.0,10.816102,10816.102 +2508,2025-03-07T07:30:22.636111-08:00,2399.0,10.818461,10818.461 +2509,2025-03-07T07:30:33.447116-08:00,2416.0,10.811005,10811.005 +2510,2025-03-07T07:30:44.267369-08:00,2384.0,10.820253,10820.253 +2511,2025-03-07T07:30:55.087336-08:00,2397.0,10.819967,10819.967 +2512,2025-03-07T07:31:05.911892-08:00,2352.0,10.824556,10824.556 +2513,2025-03-07T07:31:16.731193-08:00,2327.0,10.819301,10819.301 +2514,2025-03-07T07:31:27.542805-08:00,2349.0,10.811612,10811.612 +2515,2025-03-07T07:31:38.367886-08:00,2352.0,10.825081,10825.081 +2516,2025-03-07T07:31:49.184938-08:00,2352.0,10.817052,10817.052 +2517,2025-03-07T07:31:59.996959-08:00,2362.0,10.812021,10812.021 +2518,2025-03-07T07:32:10.820892-08:00,2351.0,10.823933,10823.933 +2519,2025-03-07T07:32:21.637882-08:00,2353.0,10.81699,10816.99 +2520,2025-03-07T07:32:32.444870-08:00,2373.0,10.806988,10806.988 +2521,2025-03-07T07:32:43.272157-08:00,2368.0,10.827287,10827.287 +2522,2025-03-07T07:32:54.082934-08:00,2379.0,10.810777,10810.777 +2523,2025-03-07T07:33:04.897959-08:00,2402.0,10.815025,10815.025 +2524,2025-03-07T07:33:15.725210-08:00,2389.0,10.827251,10827.251 +2525,2025-03-07T07:33:26.538222-08:00,2384.0,10.813012,10813.012 +2526,2025-03-07T07:33:37.353057-08:00,2415.0,10.814835,10814.835 +2527,2025-03-07T07:33:48.165271-08:00,2375.0,10.812214,10812.214 +2528,2025-03-07T07:33:58.986909-08:00,2369.0,10.821638,10821.638 +2529,2025-03-07T07:34:09.803141-08:00,2423.0,10.816232,10816.232 +2530,2025-03-07T07:34:20.621967-08:00,2378.0,10.818826,10818.826 +2531,2025-03-07T07:34:31.441892-08:00,2430.0,10.819925,10819.925 +2532,2025-03-07T07:34:42.256191-08:00,2416.0,10.814299,10814.299 +2533,2025-03-07T07:34:53.061366-08:00,2431.0,10.805175,10805.175 +2534,2025-03-07T07:35:03.874289-08:00,2391.0,10.812923,10812.923 +2535,2025-03-07T07:35:14.695024-08:00,2431.0,10.820735,10820.735 +2536,2025-03-07T07:35:25.515968-08:00,2386.0,10.820944,10820.944 +2537,2025-03-07T07:35:36.336404-08:00,2385.0,10.820436,10820.436 +2538,2025-03-07T07:35:47.157259-08:00,2431.0,10.820855,10820.855 +2539,2025-03-07T07:35:57.972936-08:00,2443.0,10.815677,10815.677 +2540,2025-03-07T07:36:08.785220-08:00,2406.0,10.812284,10812.284 +2541,2025-03-07T07:36:19.610890-08:00,2416.0,10.82567,10825.67 +2542,2025-03-07T07:36:30.421894-08:00,2378.0,10.811004,10811.004 +2543,2025-03-07T07:36:41.236933-08:00,2455.0,10.815039,10815.039 +2544,2025-03-07T07:36:52.056207-08:00,2453.0,10.819274,10819.274 +2545,2025-03-07T07:37:02.873940-08:00,2476.0,10.817733,10817.733 +2546,2025-03-07T07:37:13.685889-08:00,2432.0,10.811949,10811.949 +2547,2025-03-07T07:37:24.510359-08:00,2480.0,10.82447,10824.47 +2548,2025-03-07T07:37:35.324891-08:00,2477.0,10.814532,10814.532 +2549,2025-03-07T07:37:46.135118-08:00,2478.0,10.810227,10810.227 +2550,2025-03-07T07:37:56.942881-08:00,2525.0,10.807763,10807.763 +2551,2025-03-07T07:38:07.763930-08:00,2484.0,10.821049,10821.049 +2552,2025-03-07T07:38:18.573906-08:00,2543.0,10.809976,10809.976 +2553,2025-03-07T07:38:29.387987-08:00,2495.0,10.814081,10814.081 +2554,2025-03-07T07:38:40.213102-08:00,2517.0,10.825115,10825.115 +2555,2025-03-07T07:38:51.033867-08:00,2559.0,10.820765,10820.765 +2556,2025-03-07T07:39:01.848014-08:00,2559.0,10.814147,10814.147 +2557,2025-03-07T07:39:12.674053-08:00,2542.0,10.826039,10826.039 +2558,2025-03-07T07:39:23.489888-08:00,2526.0,10.815835,10815.835 +2559,2025-03-07T07:39:34.310895-08:00,2582.0,10.821007,10821.007 +2560,2025-03-07T07:39:45.130889-08:00,2602.0,10.819994,10819.994 +2561,2025-03-07T07:39:55.944883-08:00,2611.0,10.813994,10813.994 +2562,2025-03-07T07:40:06.771017-08:00,2622.0,10.826134,10826.134 +2563,2025-03-07T07:40:17.585872-08:00,2629.0,10.814855,10814.855 +2564,2025-03-07T07:40:28.410404-08:00,2608.0,10.824532,10824.532 +2565,2025-03-07T07:40:39.224530-08:00,2655.0,10.814126,10814.126 +2566,2025-03-07T07:40:50.050885-08:00,2671.0,10.826355,10826.355 +2567,2025-03-07T07:41:00.865156-08:00,2655.0,10.814271,10814.271 +2568,2025-03-07T07:41:11.693937-08:00,2669.0,10.828781,10828.781 +2569,2025-03-07T07:41:22.507893-08:00,2662.0,10.813956,10813.956 +2570,2025-03-07T07:41:33.334870-08:00,2710.0,10.826977,10826.977 +2571,2025-03-07T07:41:44.158980-08:00,2714.0,10.82411,10824.11 +2572,2025-03-07T07:41:54.973979-08:00,2701.0,10.814999,10814.999 +2573,2025-03-07T07:42:05.800306-08:00,2752.0,10.826327,10826.327 +2574,2025-03-07T07:42:16.620891-08:00,2704.0,10.820585,10820.585 +2575,2025-03-07T07:42:27.446888-08:00,2771.0,10.825997,10825.997 +2576,2025-03-07T07:42:38.267105-08:00,2791.0,10.820217,10820.217 +2577,2025-03-07T07:42:49.092887-08:00,2800.0,10.825782,10825.782 +2578,2025-03-07T07:42:59.913405-08:00,2794.0,10.820518,10820.518 +2579,2025-03-07T07:43:10.736212-08:00,2831.0,10.822807,10822.807 +2580,2025-03-07T07:43:21.563940-08:00,2807.0,10.827728,10827.728 +2581,2025-03-07T07:43:32.386147-08:00,2867.0,10.822207,10822.207 +2582,2025-03-07T07:43:43.214881-08:00,2887.0,10.828734,10828.734 +2583,2025-03-07T07:43:54.035669-08:00,2842.0,10.820788,10820.788 +2584,2025-03-07T07:44:04.857145-08:00,2890.0,10.821476,10821.476 +2585,2025-03-07T07:44:15.678885-08:00,2927.0,10.82174,10821.74 +2586,2025-03-07T07:44:26.506173-08:00,2909.0,10.827288,10827.288 +2587,2025-03-07T07:44:37.332882-08:00,2949.0,10.826709,10826.709 +2588,2025-03-07T07:44:48.145866-08:00,2956.0,10.812984,10812.984 +2589,2025-03-07T07:44:58.977933-08:00,2956.0,10.832067,10832.067 +2590,2025-03-07T07:45:09.797037-08:00,2907.0,10.819104,10819.104 +2591,2025-03-07T07:45:20.629896-08:00,2941.0,10.832859,10832.859 +2592,2025-03-07T07:45:31.451182-08:00,2955.0,10.821286,10821.286 +2593,2025-03-07T07:45:42.287476-08:00,2995.0,10.836294,10836.294 +2594,2025-03-07T07:45:53.102281-08:00,2978.0,10.814805,10814.805 +2595,2025-03-07T07:46:03.932500-08:00,3011.0,10.830219,10830.219 +2596,2025-03-07T07:46:14.757930-08:00,3007.0,10.82543,10825.43 +2597,2025-03-07T07:46:25.574890-08:00,3021.0,10.81696,10816.96 +2598,2025-03-07T07:46:36.400210-08:00,3012.0,10.82532,10825.32 +2599,2025-03-07T07:46:47.226966-08:00,3039.0,10.826756,10826.756 +2600,2025-03-07T07:46:58.045892-08:00,3017.0,10.818926,10818.926 +2601,2025-03-07T07:47:08.871887-08:00,3031.0,10.825995,10825.995 +2602,2025-03-07T07:47:19.699887-08:00,3012.0,10.828,10828.0 +2603,2025-03-07T07:47:30.524201-08:00,3021.0,10.824314,10824.314 +2604,2025-03-07T07:47:41.344037-08:00,3087.0,10.819836,10819.836 +2605,2025-03-07T07:47:52.160952-08:00,3094.0,10.816915,10816.915 +2606,2025-03-07T07:48:02.991957-08:00,3071.0,10.831005,10831.005 +2607,2025-03-07T07:48:13.816110-08:00,3088.0,10.824153,10824.153 +2608,2025-03-07T07:48:24.644893-08:00,3120.0,10.828783,10828.783 +2609,2025-03-07T07:48:35.458181-08:00,3131.0,10.813288,10813.288 +2610,2025-03-07T07:48:46.277146-08:00,3089.0,10.818965,10818.965 +2611,2025-03-07T07:48:57.106886-08:00,3120.0,10.82974,10829.74 +2612,2025-03-07T07:49:07.920189-08:00,3117.0,10.813303,10813.303 +2613,2025-03-07T07:49:18.737873-08:00,3106.0,10.817684,10817.684 +2614,2025-03-07T07:49:29.565096-08:00,3177.0,10.827223,10827.223 +2615,2025-03-07T07:49:40.378893-08:00,3174.0,10.813797,10813.797 +2616,2025-03-07T07:49:51.199879-08:00,3198.0,10.820986,10820.986 +2617,2025-03-07T07:50:02.022162-08:00,3167.0,10.822283,10822.283 +2618,2025-03-07T07:50:12.841893-08:00,3184.0,10.819731,10819.731 +2619,2025-03-07T07:50:23.661093-08:00,3178.0,10.8192,10819.2 +2620,2025-03-07T07:50:34.477603-08:00,3168.0,10.81651,10816.51 +2621,2025-03-07T07:50:44.050631-08:00,3214.0,9.573028,9573.028 +2622,2025-03-07T07:50:45.302419-08:00,3202.0,1.251788,1251.788 +2623,2025-03-07T07:50:56.109886-08:00,3202.0,10.807467,10807.467 +2624,2025-03-07T07:51:06.931077-08:00,3167.0,10.821191,10821.191 +2625,2025-03-07T07:51:17.751291-08:00,3202.0,10.820214,10820.214 +2626,2025-03-07T07:51:28.570883-08:00,3136.0,10.819592,10819.592 +2627,2025-03-07T07:51:39.395082-08:00,3199.0,10.824199,10824.199 +2628,2025-03-07T07:51:50.217961-08:00,3191.0,10.822879,10822.879 +2629,2025-03-07T07:52:01.053853-08:00,3140.0,10.835892,10835.892 +2630,2025-03-07T07:52:11.874139-08:00,3183.0,10.820286,10820.286 +2631,2025-03-07T07:52:22.701892-08:00,3157.0,10.827753,10827.753 +2632,2025-03-07T07:52:33.528732-08:00,3189.0,10.82684,10826.84 +2633,2025-03-07T07:52:44.344163-08:00,3184.0,10.815431,10815.431 +2634,2025-03-07T07:52:55.169499-08:00,3198.0,10.825336,10825.336 +2635,2025-03-07T07:53:05.995336-08:00,3204.0,10.825837,10825.837 +2636,2025-03-07T07:53:16.809894-08:00,3169.0,10.814558,10814.558 +2637,2025-03-07T07:53:27.637470-08:00,3223.0,10.827576,10827.576 +2638,2025-03-07T07:53:38.462441-08:00,3233.0,10.824971,10824.971 +2639,2025-03-07T07:53:49.282879-08:00,3206.0,10.820438,10820.438 +2640,2025-03-07T07:54:00.108903-08:00,3215.0,10.826024,10826.024 +2641,2025-03-07T07:54:10.934887-08:00,3250.0,10.825984,10825.984 +2642,2025-03-07T07:54:21.754748-08:00,3261.0,10.819861,10819.861 +2643,2025-03-07T07:54:32.583870-08:00,3285.0,10.829122,10829.122 +2644,2025-03-07T07:54:43.406925-08:00,3281.0,10.823055,10823.055 +2645,2025-03-07T07:54:54.225097-08:00,3281.0,10.818172,10818.172 +2646,2025-03-07T07:55:05.052940-08:00,3255.0,10.827843,10827.843 +2647,2025-03-07T07:55:15.878195-08:00,3301.0,10.825255,10825.255 +2648,2025-03-07T07:55:26.698189-08:00,3290.0,10.819994,10819.994 +2649,2025-03-07T07:55:37.519559-08:00,3260.0,10.82137,10821.37 +2650,2025-03-07T07:55:48.339199-08:00,3317.0,10.81964,10819.64 +2651,2025-03-07T07:55:59.161305-08:00,3331.0,10.822106,10822.106 +2652,2025-03-07T07:56:09.993171-08:00,3335.0,10.831866,10831.866 +2653,2025-03-07T07:56:20.812885-08:00,3339.0,10.819714,10819.714 +2654,2025-03-07T07:56:31.637870-08:00,3311.0,10.824985,10824.985 +2655,2025-03-07T07:56:42.459052-08:00,3332.0,10.821182,10821.182 +2656,2025-03-07T07:56:53.273134-08:00,3335.0,10.814082,10814.082 +2657,2025-03-07T07:57:04.093282-08:00,3307.0,10.820148,10820.148 +2658,2025-03-07T07:57:14.914371-08:00,3319.0,10.821089,10821.089 +2659,2025-03-07T07:57:25.729970-08:00,3295.0,10.815599,10815.599 +2660,2025-03-07T07:57:36.556611-08:00,3315.0,10.826641,10826.641 +2661,2025-03-07T07:57:47.375337-08:00,3344.0,10.818726,10818.726 +2662,2025-03-07T07:57:58.198891-08:00,3345.0,10.823554,10823.554 +2663,2025-03-07T07:58:09.014877-08:00,3279.0,10.815986,10815.986 +2664,2025-03-07T07:58:19.836357-08:00,3351.0,10.82148,10821.48 +2665,2025-03-07T07:58:30.652131-08:00,3343.0,10.815774,10815.774 +2666,2025-03-07T07:58:41.476105-08:00,3351.0,10.823974,10823.974 +2667,2025-03-07T07:58:52.291881-08:00,3344.0,10.815776,10815.776 +2668,2025-03-07T07:59:03.116874-08:00,3359.0,10.824993,10824.993 +2669,2025-03-07T07:59:13.936992-08:00,3344.0,10.820118,10820.118 +2670,2025-03-07T07:59:24.758361-08:00,3344.0,10.821369,10821.369 +2671,2025-03-07T07:59:35.582887-08:00,3362.0,10.824526,10824.526 +2672,2025-03-07T07:59:46.418415-08:00,3310.0,10.835528,10835.528 +2673,2025-03-07T07:59:57.234218-08:00,3362.0,10.815803,10815.803 +2674,2025-03-07T08:00:08.058141-08:00,3367.0,10.823923,10823.923 +2675,2025-03-07T08:00:18.879012-08:00,3367.0,10.820871,10820.871 +2676,2025-03-07T08:00:29.698114-08:00,3331.0,10.819102,10819.102 +2677,2025-03-07T08:00:40.519133-08:00,3346.0,10.821019,10821.019 +2678,2025-03-07T08:00:51.346197-08:00,3326.0,10.827064,10827.064 +2679,2025-03-07T08:01:02.170965-08:00,3349.0,10.824768,10824.768 +2680,2025-03-07T08:01:12.998614-08:00,3373.0,10.827649,10827.649 +2681,2025-03-07T08:01:23.816392-08:00,3362.0,10.817778,10817.778 +2682,2025-03-07T08:01:34.647929-08:00,3331.0,10.831537,10831.537 +2683,2025-03-07T08:01:45.468166-08:00,3342.0,10.820237,10820.237 +2684,2025-03-07T08:01:56.290119-08:00,3364.0,10.821953,10821.953 +2685,2025-03-07T08:02:07.110270-08:00,3376.0,10.820151,10820.151 +2686,2025-03-07T08:02:17.934206-08:00,3376.0,10.823936,10823.936 +2687,2025-03-07T08:02:28.751874-08:00,3373.0,10.817668,10817.668 +2688,2025-03-07T08:02:39.577929-08:00,3357.0,10.826055,10826.055 +2689,2025-03-07T08:02:50.401129-08:00,3327.0,10.8232,10823.2 +2690,2025-03-07T08:03:01.226880-08:00,3326.0,10.825751,10825.751 +2691,2025-03-07T08:03:12.053888-08:00,3367.0,10.827008,10827.008 +2692,2025-03-07T08:03:22.873889-08:00,3381.0,10.820001,10820.001 +2693,2025-03-07T08:03:33.692719-08:00,3354.0,10.81883,10818.83 +2694,2025-03-07T08:03:44.513892-08:00,3377.0,10.821173,10821.173 +2695,2025-03-07T08:03:55.337087-08:00,3383.0,10.823195,10823.195 +2696,2025-03-07T08:04:06.155741-08:00,3376.0,10.818654,10818.654 +2697,2025-03-07T08:04:16.975139-08:00,3332.0,10.819398,10819.398 +2698,2025-03-07T08:04:27.803169-08:00,3387.0,10.82803,10828.03 +2699,2025-03-07T08:04:38.622706-08:00,3388.0,10.819537,10819.537 +2700,2025-03-07T08:04:49.438893-08:00,3376.0,10.816187,10816.187 +2701,2025-03-07T08:05:00.257891-08:00,3389.0,10.818998,10818.998 +2702,2025-03-07T08:05:11.072510-08:00,3367.0,10.814619,10814.619 +2703,2025-03-07T08:05:21.895281-08:00,3363.0,10.822771,10822.771 +2704,2025-03-07T08:05:32.709787-08:00,3376.0,10.814506,10814.506 +2705,2025-03-07T08:05:43.528614-08:00,3382.0,10.818827,10818.827 +2706,2025-03-07T08:05:54.350958-08:00,3330.0,10.822344,10822.344 +2707,2025-03-07T08:06:05.170070-08:00,3374.0,10.819112,10819.112 +2708,2025-03-07T08:06:15.983764-08:00,3390.0,10.813694,10813.694 +2709,2025-03-07T08:06:26.809041-08:00,3389.0,10.825277,10825.277 +2710,2025-03-07T08:06:37.620266-08:00,3391.0,10.811225,10811.225 +2711,2025-03-07T08:06:48.437778-08:00,3343.0,10.817512,10817.512 +2712,2025-03-07T08:06:59.256743-08:00,3393.0,10.818965,10818.965 +2713,2025-03-07T08:07:10.073007-08:00,3371.0,10.816264,10816.264 +2714,2025-03-07T08:07:20.900830-08:00,3390.0,10.827823,10827.823 +2715,2025-03-07T08:07:31.721807-08:00,3394.0,10.820977,10820.977 +2716,2025-03-07T08:07:42.537368-08:00,3397.0,10.815561,10815.561 +2717,2025-03-07T08:07:53.357766-08:00,3397.0,10.820398,10820.398 +2718,2025-03-07T08:08:04.181809-08:00,3370.0,10.824043,10824.043 +2719,2025-03-07T08:08:15.004095-08:00,3375.0,10.822286,10822.286 +2720,2025-03-07T08:08:25.822741-08:00,3395.0,10.818646,10818.646 +2721,2025-03-07T08:08:36.654352-08:00,3394.0,10.831611,10831.611 +2722,2025-03-07T08:08:47.474746-08:00,3393.0,10.820394,10820.394 +2723,2025-03-07T08:08:58.291149-08:00,3391.0,10.816403,10816.403 +2724,2025-03-07T08:09:09.122017-08:00,3387.0,10.830868,10830.868 +2725,2025-03-07T08:09:19.933081-08:00,3334.0,10.811064,10811.064 +2726,2025-03-07T08:09:30.752762-08:00,3383.0,10.819681,10819.681 +2727,2025-03-07T08:09:41.583028-08:00,3374.0,10.830266,10830.266 +2728,2025-03-07T08:09:52.398766-08:00,3326.0,10.815738,10815.738 +2729,2025-03-07T08:10:03.222008-08:00,3370.0,10.823242,10823.242 +2730,2025-03-07T08:10:14.038062-08:00,3355.0,10.816054,10816.054 +2731,2025-03-07T08:10:24.867760-08:00,3372.0,10.829698,10829.698 +2732,2025-03-07T08:10:35.690027-08:00,3373.0,10.822267,10822.267 +2733,2025-03-07T08:10:46.511017-08:00,3375.0,10.82099,10820.99 +2734,2025-03-07T08:10:57.332695-08:00,3347.0,10.821678,10821.678 +2735,2025-03-07T08:11:08.150472-08:00,3367.0,10.817777,10817.777 +2736,2025-03-07T08:11:18.969920-08:00,3329.0,10.819448,10819.448 +2737,2025-03-07T08:11:29.787743-08:00,3357.0,10.817823,10817.823 +2738,2025-03-07T08:11:40.605905-08:00,3348.0,10.818162,10818.162 +2739,2025-03-07T08:11:51.433765-08:00,3367.0,10.82786,10827.86 +2740,2025-03-07T08:12:02.248513-08:00,3315.0,10.814748,10814.748 +2741,2025-03-07T08:12:13.062763-08:00,3328.0,10.81425,10814.25 +2742,2025-03-07T08:12:23.890759-08:00,3372.0,10.827996,10827.996 +2743,2025-03-07T08:12:34.702762-08:00,3376.0,10.812003,10812.003 +2744,2025-03-07T08:12:45.528040-08:00,3372.0,10.825278,10825.278 +2745,2025-03-07T08:12:56.354897-08:00,3376.0,10.826857,10826.857 +2746,2025-03-07T08:13:07.176749-08:00,3347.0,10.821852,10821.852 +2747,2025-03-07T08:13:17.993891-08:00,3361.0,10.817142,10817.142 +2748,2025-03-07T08:13:28.810812-08:00,3357.0,10.816921,10816.921 +2749,2025-03-07T08:13:39.629902-08:00,3390.0,10.81909,10819.09 +2750,2025-03-07T08:13:50.454512-08:00,3362.0,10.82461,10824.61 +2751,2025-03-07T08:14:01.264105-08:00,3399.0,10.809593,10809.593 +2752,2025-03-07T08:14:12.090766-08:00,3383.0,10.826661,10826.661 +2753,2025-03-07T08:14:22.906820-08:00,3378.0,10.816054,10816.054 +2754,2025-03-07T08:14:33.734768-08:00,3381.0,10.827948,10827.948 +2755,2025-03-07T08:14:44.550932-08:00,3381.0,10.816164,10816.164 +2756,2025-03-07T08:14:55.372761-08:00,3387.0,10.821829,10821.829 +2757,2025-03-07T08:15:06.187099-08:00,3408.0,10.814338,10814.338 +2758,2025-03-07T08:15:17.014413-08:00,3408.0,10.827314,10827.314 +2759,2025-03-07T08:15:27.839532-08:00,3392.0,10.825119,10825.119 +2760,2025-03-07T08:15:38.655023-08:00,3378.0,10.815491,10815.491 +2761,2025-03-07T08:15:49.478014-08:00,3369.0,10.822991,10822.991 +2762,2025-03-07T08:16:00.311074-08:00,3349.0,10.83306,10833.06 +2763,2025-03-07T08:16:11.130764-08:00,3357.0,10.81969,10819.69 +2764,2025-03-07T08:16:21.952809-08:00,3371.0,10.822045,10822.045 +2765,2025-03-07T08:16:32.784745-08:00,3373.0,10.831936,10831.936 +2766,2025-03-07T08:16:43.598760-08:00,3359.0,10.814015,10814.015 +2767,2025-03-07T08:16:54.430811-08:00,3375.0,10.832051,10832.051 +2768,2025-03-07T08:17:05.250808-08:00,3345.0,10.819997,10819.997 +2769,2025-03-07T08:17:16.065020-08:00,3355.0,10.814212,10814.212 +2770,2025-03-07T08:17:26.898827-08:00,3361.0,10.833807,10833.807 +2771,2025-03-07T08:17:37.720910-08:00,3344.0,10.822083,10822.083 +2772,2025-03-07T08:17:48.546035-08:00,3356.0,10.825125,10825.125 +2773,2025-03-07T08:17:59.374743-08:00,3329.0,10.828708,10828.708 +2774,2025-03-07T08:18:10.208787-08:00,3287.0,10.834044,10834.044 +2775,2025-03-07T08:18:21.026820-08:00,3329.0,10.818033,10818.033 +2776,2025-03-07T08:18:31.858278-08:00,3317.0,10.831458,10831.458 +2777,2025-03-07T08:18:42.681767-08:00,3309.0,10.823489,10823.489 +2778,2025-03-07T08:18:53.517138-08:00,3280.0,10.835371,10835.371 +2779,2025-03-07T08:19:04.353875-08:00,3329.0,10.836737,10836.737 +2780,2025-03-07T08:19:15.186524-08:00,3310.0,10.832649,10832.649 +2781,2025-03-07T08:19:26.016817-08:00,3284.0,10.830293,10830.293 +2782,2025-03-07T08:19:36.849766-08:00,3295.0,10.832949,10832.949 +2783,2025-03-07T08:19:47.682072-08:00,3248.0,10.832306,10832.306 +2784,2025-03-07T08:19:58.513140-08:00,3289.0,10.831068,10831.068 +2785,2025-03-07T08:20:09.348837-08:00,3249.0,10.835697,10835.697 +2786,2025-03-07T08:20:20.182762-08:00,3202.0,10.833925,10833.925 +2787,2025-03-07T08:20:31.020765-08:00,3249.0,10.838003,10838.003 +2788,2025-03-07T08:20:41.856373-08:00,3235.0,10.835608,10835.608 +2789,2025-03-07T08:20:52.683764-08:00,3220.0,10.827391,10827.391 +2790,2025-03-07T08:21:03.519831-08:00,3226.0,10.836067,10836.067 +2791,2025-03-07T08:21:14.363847-08:00,3204.0,10.844016,10844.016 +2792,2025-03-07T08:21:25.190678-08:00,3191.0,10.826831,10826.831 +2793,2025-03-07T08:21:36.023226-08:00,3178.0,10.832548,10832.548 +2794,2025-03-07T08:21:46.865898-08:00,3122.0,10.842672,10842.672 +2795,2025-03-07T08:21:57.701313-08:00,3149.0,10.835415,10835.415 +2796,2025-03-07T08:22:08.539019-08:00,3098.0,10.837706,10837.706 +2797,2025-03-07T08:22:19.372579-08:00,3118.0,10.83356,10833.56 +2798,2025-03-07T08:22:30.199089-08:00,3117.0,10.82651,10826.51 +2799,2025-03-07T08:22:41.037166-08:00,3103.0,10.838077,10838.077 +2800,2025-03-07T08:22:51.877077-08:00,3058.0,10.839911,10839.911 +2801,2025-03-07T08:23:02.707118-08:00,3023.0,10.830041,10830.041 +2802,2025-03-07T08:23:13.540765-08:00,3056.0,10.833647,10833.647 +2803,2025-03-07T08:23:24.366340-08:00,3045.0,10.825575,10825.575 +2804,2025-03-07T08:23:35.203821-08:00,3011.0,10.837481,10837.481 +2805,2025-03-07T08:23:46.038083-08:00,3019.0,10.834262,10834.262 +2806,2025-03-07T08:23:56.873154-08:00,3031.0,10.835071,10835.071 +2807,2025-03-07T08:24:07.703070-08:00,3025.0,10.829916,10829.916 +2808,2025-03-07T08:24:18.544246-08:00,3042.0,10.841176,10841.176 +2809,2025-03-07T08:24:29.373743-08:00,3036.0,10.829497,10829.497 +2810,2025-03-07T08:24:40.217006-08:00,3033.0,10.843263,10843.263 +2811,2025-03-07T08:24:51.042366-08:00,3021.0,10.82536,10825.36 +2812,2025-03-07T08:25:01.877762-08:00,2991.0,10.835396,10835.396 +2813,2025-03-07T08:25:12.711050-08:00,3030.0,10.833288,10833.288 +2814,2025-03-07T08:25:23.544766-08:00,3025.0,10.833716,10833.716 +2815,2025-03-07T08:25:34.377082-08:00,3022.0,10.832316,10832.316 +2816,2025-03-07T08:25:45.214724-08:00,3043.0,10.837642,10837.642 +2817,2025-03-07T08:25:56.050767-08:00,3056.0,10.836043,10836.043 +2818,2025-03-07T08:26:06.887011-08:00,3051.0,10.836244,10836.244 +2819,2025-03-07T08:26:17.725527-08:00,3053.0,10.838516,10838.516 +2820,2025-03-07T08:26:28.559943-08:00,3071.0,10.834416,10834.416 +2821,2025-03-07T08:26:39.400107-08:00,3056.0,10.840164,10840.164 +2822,2025-03-07T08:26:50.233896-08:00,3029.0,10.833789,10833.789 +2823,2025-03-07T08:27:01.057767-08:00,3051.0,10.823871,10823.871 +2824,2025-03-07T08:27:11.896899-08:00,3046.0,10.839132,10839.132 +2825,2025-03-07T08:27:22.738881-08:00,3061.0,10.841982,10841.982 +2826,2025-03-07T08:27:33.572049-08:00,3102.0,10.833168,10833.168 +2827,2025-03-07T08:27:44.413030-08:00,3115.0,10.840981,10840.981 +2828,2025-03-07T08:27:55.250997-08:00,3082.0,10.837967,10837.967 +2829,2025-03-07T08:28:06.086026-08:00,3109.0,10.835029,10835.029 +2830,2025-03-07T08:28:16.915811-08:00,3116.0,10.829785,10829.785 +2831,2025-03-07T08:28:27.745160-08:00,3120.0,10.829349,10829.349 +2832,2025-03-07T08:28:38.585066-08:00,3085.0,10.839906,10839.906 +2833,2025-03-07T08:28:49.420021-08:00,3111.0,10.834955,10834.955 +2834,2025-03-07T08:29:00.247778-08:00,3059.0,10.827757,10827.757 +2835,2025-03-07T08:29:11.090428-08:00,3069.0,10.84265,10842.65 +2836,2025-03-07T08:29:21.914192-08:00,3113.0,10.823764,10823.764 +2837,2025-03-07T08:29:32.750277-08:00,3058.0,10.836085,10836.085 +2838,2025-03-07T08:29:43.592864-08:00,3120.0,10.842587,10842.587 +2839,2025-03-07T08:29:54.427760-08:00,3111.0,10.834896,10834.896 +2840,2025-03-07T08:30:05.270353-08:00,3121.0,10.842593,10842.593 +2841,2025-03-07T08:30:16.103763-08:00,3082.0,10.83341,10833.41 +2842,2025-03-07T08:30:26.938130-08:00,3082.0,10.834367,10834.367 +2843,2025-03-07T08:30:37.777307-08:00,3087.0,10.839177,10839.177 +2844,2025-03-07T08:30:48.620757-08:00,3071.0,10.84345,10843.45 +2845,2025-03-07T08:30:59.450745-08:00,3085.0,10.829988,10829.988 +2846,2025-03-07T08:31:10.290354-08:00,3125.0,10.839609,10839.609 +2847,2025-03-07T08:31:21.125762-08:00,3093.0,10.835408,10835.408 +2848,2025-03-07T08:31:31.965155-08:00,3139.0,10.839393,10839.393 +2849,2025-03-07T08:31:42.792072-08:00,3135.0,10.826917,10826.917 +2850,2025-03-07T08:31:53.621307-08:00,3092.0,10.829235,10829.235 +2851,2025-03-07T08:32:04.462107-08:00,3123.0,10.8408,10840.8 +2852,2025-03-07T08:32:15.291808-08:00,3146.0,10.829701,10829.701 +2853,2025-03-07T08:32:26.123140-08:00,3115.0,10.831332,10831.332 +2854,2025-03-07T08:32:36.961549-08:00,3100.0,10.838409,10838.409 +2855,2025-03-07T08:32:47.796794-08:00,3095.0,10.835245,10835.245 +2856,2025-03-07T08:32:58.633095-08:00,3103.0,10.836301,10836.301 +2857,2025-03-07T08:33:09.467001-08:00,3119.0,10.833906,10833.906 +2858,2025-03-07T08:33:20.304158-08:00,3089.0,10.837157,10837.157 +2859,2025-03-07T08:33:31.138015-08:00,3091.0,10.833857,10833.857 +2860,2025-03-07T08:33:41.971948-08:00,3087.0,10.833933,10833.933 +2861,2025-03-07T08:33:52.812023-08:00,3091.0,10.840075,10840.075 +2862,2025-03-07T08:34:03.642814-08:00,3067.0,10.830791,10830.791 +2863,2025-03-07T08:34:14.486127-08:00,3071.0,10.843313,10843.313 +2864,2025-03-07T08:34:25.326119-08:00,3071.0,10.839992,10839.992 +2865,2025-03-07T08:34:36.154991-08:00,3061.0,10.828872,10828.872 +2866,2025-03-07T08:34:46.998762-08:00,3006.0,10.843771,10843.771 +2867,2025-03-07T08:34:57.835767-08:00,3050.0,10.837005,10837.005 +2868,2025-03-07T08:35:08.671319-08:00,3045.0,10.835552,10835.552 +2869,2025-03-07T08:35:19.511809-08:00,3024.0,10.84049,10840.49 +2870,2025-03-07T08:35:30.345736-08:00,2999.0,10.833927,10833.927 +2871,2025-03-07T08:35:41.181117-08:00,3007.0,10.835381,10835.381 +2872,2025-03-07T08:35:52.012798-08:00,3009.0,10.831681,10831.681 +2873,2025-03-07T08:36:02.837953-08:00,2979.0,10.825155,10825.155 +2874,2025-03-07T08:36:13.680788-08:00,2945.0,10.842835,10842.835 +2875,2025-03-07T08:36:24.524066-08:00,2993.0,10.843278,10843.278 +2876,2025-03-07T08:36:35.355357-08:00,2974.0,10.831291,10831.291 +2877,2025-03-07T08:36:46.192764-08:00,2929.0,10.837407,10837.407 +2878,2025-03-07T08:36:57.028766-08:00,2929.0,10.836002,10836.002 +2879,2025-03-07T08:37:07.866852-08:00,2901.0,10.838086,10838.086 +2880,2025-03-07T08:37:18.694107-08:00,2928.0,10.827255,10827.255 +2881,2025-03-07T08:37:29.543070-08:00,2910.0,10.848963,10848.963 +2882,2025-03-07T08:37:40.381243-08:00,2912.0,10.838173,10838.173 +2883,2025-03-07T08:37:51.217760-08:00,2914.0,10.836517,10836.517 +2884,2025-03-07T08:38:02.049234-08:00,2894.0,10.831474,10831.474 +2885,2025-03-07T08:38:12.887030-08:00,2897.0,10.837796,10837.796 +2886,2025-03-07T08:38:23.718284-08:00,2883.0,10.831254,10831.254 +2887,2025-03-07T08:38:34.561999-08:00,2839.0,10.843715,10843.715 +2888,2025-03-07T08:38:45.398775-08:00,2802.0,10.836776,10836.776 +2889,2025-03-07T08:38:56.236765-08:00,2832.0,10.83799,10837.99 +2890,2025-03-07T08:39:07.070121-08:00,2787.0,10.833356,10833.356 +2891,2025-03-07T08:39:17.912432-08:00,2737.0,10.842311,10842.311 +2892,2025-03-07T08:39:28.745758-08:00,2768.0,10.833326,10833.326 +2893,2025-03-07T08:39:39.580068-08:00,2715.0,10.83431,10834.31 +2894,2025-03-07T08:39:50.415008-08:00,2672.0,10.83494,10834.94 +2895,2025-03-07T08:40:01.258017-08:00,2723.0,10.843009,10843.009 +2896,2025-03-07T08:40:12.097875-08:00,2704.0,10.839858,10839.858 +2897,2025-03-07T08:40:22.930933-08:00,2688.0,10.833058,10833.058 +2898,2025-03-07T08:40:33.767136-08:00,2651.0,10.836203,10836.203 +2899,2025-03-07T08:40:44.611904-08:00,2662.0,10.844768,10844.768 +2900,2025-03-07T08:40:55.454258-08:00,2643.0,10.842354,10842.354 +2901,2025-03-07T08:41:06.281262-08:00,2559.0,10.827004,10827.004 +2902,2025-03-07T08:41:17.124769-08:00,2591.0,10.843507,10843.507 +2903,2025-03-07T08:41:27.967614-08:00,2559.0,10.842845,10842.845 +2904,2025-03-07T08:41:38.804006-08:00,2613.0,10.836392,10836.392 +2905,2025-03-07T08:41:49.648550-08:00,2601.0,10.844544,10844.544 +2906,2025-03-07T08:42:00.474809-08:00,2559.0,10.826259,10826.259 +2907,2025-03-07T08:42:11.311765-08:00,2582.0,10.836956,10836.956 +2908,2025-03-07T08:42:22.151946-08:00,2559.0,10.840181,10840.181 +2909,2025-03-07T08:42:32.985794-08:00,2544.0,10.833848,10833.848 +2910,2025-03-07T08:42:43.822769-08:00,2504.0,10.836975,10836.975 +2911,2025-03-07T08:42:54.665842-08:00,2518.0,10.843073,10843.073 +2912,2025-03-07T08:43:05.500796-08:00,2481.0,10.834954,10834.954 +2913,2025-03-07T08:43:16.340764-08:00,2516.0,10.839968,10839.968 +2914,2025-03-07T08:43:27.178814-08:00,2510.0,10.83805,10838.05 +2915,2025-03-07T08:43:38.012936-08:00,2523.0,10.834122,10834.122 +2916,2025-03-07T08:43:48.853988-08:00,2521.0,10.841052,10841.052 +2917,2025-03-07T08:43:59.697007-08:00,2516.0,10.843019,10843.019 +2918,2025-03-07T08:44:10.527764-08:00,2498.0,10.830757,10830.757 +2919,2025-03-07T08:44:21.370798-08:00,2538.0,10.843034,10843.034 +2920,2025-03-07T08:44:32.211998-08:00,2531.0,10.8412,10841.2 +2921,2025-03-07T08:44:43.046147-08:00,2526.0,10.834149,10834.149 +2922,2025-03-07T08:44:53.884042-08:00,2559.0,10.837895,10837.895 +2923,2025-03-07T08:45:04.729764-08:00,2551.0,10.845722,10845.722 +2924,2025-03-07T08:45:15.562132-08:00,2559.0,10.832368,10832.368 +2925,2025-03-07T08:45:26.399751-08:00,2499.0,10.837619,10837.619 +2926,2025-03-07T08:45:37.236768-08:00,2522.0,10.837017,10837.017 +2927,2025-03-07T08:45:48.071093-08:00,2513.0,10.834325,10834.325 +2928,2025-03-07T08:45:58.897391-08:00,2534.0,10.826298,10826.298 +2929,2025-03-07T08:46:09.739049-08:00,2519.0,10.841658,10841.658 +2930,2025-03-07T08:46:20.576785-08:00,2510.0,10.837736,10837.736 +2931,2025-03-07T08:46:31.408766-08:00,2509.0,10.831981,10831.981 +2932,2025-03-07T08:46:42.240356-08:00,2480.0,10.83159,10831.59 +2933,2025-03-07T08:46:53.082807-08:00,2439.0,10.842451,10842.451 +2934,2025-03-07T08:47:03.923131-08:00,2448.0,10.840324,10840.324 +2935,2025-03-07T08:47:14.758340-08:00,2396.0,10.835209,10835.209 +2936,2025-03-07T08:47:25.588756-08:00,2441.0,10.830416,10830.416 +2937,2025-03-07T08:47:36.420766-08:00,2432.0,10.83201,10832.01 +2938,2025-03-07T08:47:47.258396-08:00,2377.0,10.83763,10837.63 +2939,2025-03-07T08:47:58.088885-08:00,2363.0,10.830489,10830.489 +2940,2025-03-07T08:48:08.930000-08:00,2416.0,10.841115,10841.115 +2941,2025-03-07T08:48:19.768664-08:00,2422.0,10.838664,10838.664 +2942,2025-03-07T08:48:30.602760-08:00,2402.0,10.834096,10834.096 +2943,2025-03-07T08:48:41.444016-08:00,2385.0,10.841256,10841.256 +2944,2025-03-07T08:48:52.277806-08:00,2429.0,10.83379,10833.79 +2945,2025-03-07T08:49:03.117750-08:00,2430.0,10.839944,10839.944 +2946,2025-03-07T08:49:13.953979-08:00,2396.0,10.836229,10836.229 +2947,2025-03-07T08:49:24.796064-08:00,2449.0,10.842085,10842.085 +2948,2025-03-07T08:49:35.626913-08:00,2431.0,10.830849,10830.849 +2949,2025-03-07T08:49:46.458943-08:00,2407.0,10.83203,10832.03 +2950,2025-03-07T08:49:57.285969-08:00,2474.0,10.827026,10827.026 +2951,2025-03-07T08:50:08.123940-08:00,2425.0,10.837971,10837.971 +2952,2025-03-07T08:50:18.953002-08:00,2405.0,10.829062,10829.062 +2953,2025-03-07T08:50:29.784970-08:00,2448.0,10.831968,10831.968 +2954,2025-03-07T08:50:40.619045-08:00,2438.0,10.834075,10834.075 +2955,2025-03-07T08:50:51.450762-08:00,2471.0,10.831717,10831.717 +2956,2025-03-07T08:51:02.281731-08:00,2448.0,10.830969,10830.969 +2957,2025-03-07T08:51:13.110160-08:00,2448.0,10.828429,10828.429 +2958,2025-03-07T08:51:23.944521-08:00,2411.0,10.834361,10834.361 +2959,2025-03-07T08:51:34.777485-08:00,2407.0,10.832964,10832.964 +2960,2025-03-07T08:51:45.618969-08:00,2429.0,10.841484,10841.484 +2961,2025-03-07T08:51:56.450637-08:00,2429.0,10.831668,10831.668 +2962,2025-03-07T08:52:07.284901-08:00,2423.0,10.834264,10834.264 +2963,2025-03-07T08:52:18.110063-08:00,2424.0,10.825162,10825.162 +2964,2025-03-07T08:52:28.950761-08:00,2340.0,10.840698,10840.698 +2965,2025-03-07T08:52:39.778928-08:00,2416.0,10.828167,10828.167 +2966,2025-03-07T08:52:50.608005-08:00,2419.0,10.829077,10829.077 +2967,2025-03-07T08:53:01.450775-08:00,2419.0,10.84277,10842.77 +2968,2025-03-07T08:53:12.285101-08:00,2417.0,10.834326,10834.326 +2969,2025-03-07T08:53:23.116765-08:00,2414.0,10.831664,10831.664 +2970,2025-03-07T08:53:33.954262-08:00,2368.0,10.837497,10837.497 +2971,2025-03-07T08:53:44.779049-08:00,2389.0,10.824787,10824.787 +2972,2025-03-07T08:53:55.605905-08:00,2422.0,10.826856,10826.856 +2973,2025-03-07T08:54:06.430756-08:00,2430.0,10.824851,10824.851 +2974,2025-03-07T08:54:17.266350-08:00,2391.0,10.835594,10835.594 +2975,2025-03-07T08:54:28.094992-08:00,2365.0,10.828642,10828.642 +2976,2025-03-07T08:54:38.927765-08:00,2416.0,10.832773,10832.773 +2977,2025-03-07T08:54:49.758840-08:00,2367.0,10.831075,10831.075 +2978,2025-03-07T08:55:00.580077-08:00,2389.0,10.821237,10821.237 +2979,2025-03-07T08:55:11.421367-08:00,2373.0,10.84129,10841.29 +2980,2025-03-07T08:55:22.253103-08:00,2386.0,10.831736,10831.736 +2981,2025-03-07T08:55:33.078945-08:00,2381.0,10.825842,10825.842 +2982,2025-03-07T08:55:43.917068-08:00,2353.0,10.838123,10838.123 +2983,2025-03-07T08:55:54.742037-08:00,2343.0,10.824969,10824.969 +2984,2025-03-07T08:56:05.572768-08:00,2299.0,10.830731,10830.731 +2985,2025-03-07T08:56:16.401071-08:00,2369.0,10.828303,10828.303 +2986,2025-03-07T08:56:27.239751-08:00,2339.0,10.83868,10838.68 +2987,2025-03-07T08:56:38.066139-08:00,2353.0,10.826388,10826.388 +2988,2025-03-07T08:56:48.898092-08:00,2320.0,10.831953,10831.953 +2989,2025-03-07T08:56:59.725992-08:00,2307.0,10.8279,10827.9 +2990,2025-03-07T08:57:10.557839-08:00,2275.0,10.831847,10831.847 +2991,2025-03-07T08:57:21.391064-08:00,2301.0,10.833225,10833.225 +2992,2025-03-07T08:57:32.223756-08:00,2320.0,10.832692,10832.692 +2993,2025-03-07T08:57:43.055023-08:00,2291.0,10.831267,10831.267 +2994,2025-03-07T08:57:53.886050-08:00,2331.0,10.831027,10831.027 +2995,2025-03-07T08:58:04.717844-08:00,2256.0,10.831794,10831.794 +2996,2025-03-07T08:58:15.549444-08:00,2326.0,10.8316,10831.6 +2997,2025-03-07T08:58:26.371765-08:00,2313.0,10.822321,10822.321 +2998,2025-03-07T08:58:37.213752-08:00,2333.0,10.841987,10841.987 +2999,2025-03-07T08:58:48.037743-08:00,2288.0,10.823991,10823.991 +3000,2025-03-07T08:58:58.881989-08:00,2277.0,10.844246,10844.246 +3001,2025-03-07T08:59:09.708257-08:00,2345.0,10.826268,10826.268 +3002,2025-03-07T08:59:20.541769-08:00,2341.0,10.833512,10833.512 +3003,2025-03-07T08:59:31.382772-08:00,2354.0,10.841003,10841.003 +3004,2025-03-07T08:59:42.215097-08:00,2320.0,10.832325,10832.325 +3005,2025-03-07T08:59:53.040397-08:00,2355.0,10.8253,10825.3 +3006,2025-03-07T09:00:03.880047-08:00,2354.0,10.83965,10839.65 +3007,2025-03-07T09:00:14.709764-08:00,2352.0,10.829717,10829.717 +3008,2025-03-07T09:00:25.547103-08:00,2350.0,10.837339,10837.339 +3009,2025-03-07T09:00:36.385034-08:00,2352.0,10.837931,10837.931 +3010,2025-03-07T09:00:47.218952-08:00,2320.0,10.833918,10833.918 +3011,2025-03-07T09:00:58.048830-08:00,2303.0,10.829878,10829.878 +3012,2025-03-07T09:01:08.880024-08:00,2335.0,10.831194,10831.194 +3013,2025-03-07T09:01:19.711339-08:00,2289.0,10.831315,10831.315 +3014,2025-03-07T09:01:30.543772-08:00,2288.0,10.832433,10832.433 +3015,2025-03-07T09:01:41.386825-08:00,2287.0,10.843053,10843.053 +3016,2025-03-07T09:01:52.217242-08:00,2287.0,10.830417,10830.417 +3017,2025-03-07T09:02:03.049286-08:00,2291.0,10.832044,10832.044 +3018,2025-03-07T09:02:13.882082-08:00,2237.0,10.832796,10832.796 +3019,2025-03-07T09:02:24.714755-08:00,2271.0,10.832673,10832.673 +3020,2025-03-07T09:02:35.555782-08:00,2265.0,10.841027,10841.027 +3021,2025-03-07T09:02:46.389017-08:00,2224.0,10.833235,10833.235 +3022,2025-03-07T09:02:57.221764-08:00,2255.0,10.832747,10832.747 +3023,2025-03-07T09:03:08.052052-08:00,2192.0,10.830288,10830.288 +3024,2025-03-07T09:03:18.882759-08:00,2246.0,10.830707,10830.707 +3025,2025-03-07T09:03:29.727804-08:00,2246.0,10.845045,10845.045 +3026,2025-03-07T09:03:40.563087-08:00,2241.0,10.835283,10835.283 +3027,2025-03-07T09:03:51.400000-08:00,2185.0,10.836913,10836.913 +3028,2025-03-07T09:04:02.233018-08:00,2167.0,10.833018,10833.018 +3029,2025-03-07T09:04:13.064202-08:00,2231.0,10.831184,10831.184 +3030,2025-03-07T09:04:23.890061-08:00,2210.0,10.825859,10825.859 +3031,2025-03-07T09:04:34.716756-08:00,2246.0,10.826695,10826.695 +3032,2025-03-07T09:04:45.549765-08:00,2161.0,10.833009,10833.009 +3033,2025-03-07T09:04:56.385722-08:00,2241.0,10.835957,10835.957 +3034,2025-03-07T09:05:07.219045-08:00,2247.0,10.833323,10833.323 +3035,2025-03-07T09:05:18.055043-08:00,2190.0,10.835998,10835.998 +3036,2025-03-07T09:05:28.882755-08:00,2221.0,10.827712,10827.712 +3037,2025-03-07T09:05:39.742267-08:00,2215.0,10.859512,10859.512 +3038,2025-03-07T09:05:50.575467-08:00,2167.0,10.8332,10833.2 +3039,2025-03-07T09:06:01.405270-08:00,2251.0,10.829803,10829.803 +3040,2025-03-07T09:06:12.248750-08:00,2207.0,10.84348,10843.48 +3041,2025-03-07T09:06:23.080305-08:00,2236.0,10.831555,10831.555 +3042,2025-03-07T09:06:33.916267-08:00,2192.0,10.835962,10835.962 +3043,2025-03-07T09:06:44.743388-08:00,2207.0,10.827121,10827.121 +3044,2025-03-07T09:06:55.577496-08:00,2210.0,10.834108,10834.108 +3045,2025-03-07T09:07:06.420928-08:00,2173.0,10.843432,10843.432 +3046,2025-03-07T09:07:17.251268-08:00,2215.0,10.83034,10830.34 +3047,2025-03-07T09:07:28.082515-08:00,2215.0,10.831247,10831.247 +3048,2025-03-07T09:07:38.914139-08:00,2191.0,10.831624,10831.624 +3049,2025-03-07T09:07:49.746270-08:00,2213.0,10.832131,10832.131 +3050,2025-03-07T09:08:00.577714-08:00,2148.0,10.831444,10831.444 +3051,2025-03-07T09:08:11.418259-08:00,2177.0,10.840545,10840.545 +3052,2025-03-07T09:08:22.251530-08:00,2224.0,10.833271,10833.271 +3053,2025-03-07T09:08:33.088064-08:00,2180.0,10.836534,10836.534 +3054,2025-03-07T09:08:43.924597-08:00,2219.0,10.836533,10836.533 +3055,2025-03-07T09:08:54.758173-08:00,2167.0,10.833576,10833.576 +3056,2025-03-07T09:09:05.590270-08:00,2193.0,10.832097,10832.097 +3057,2025-03-07T09:09:16.426426-08:00,2192.0,10.836156,10836.156 +3058,2025-03-07T09:09:27.255514-08:00,2158.0,10.829088,10829.088 +3059,2025-03-07T09:09:38.098268-08:00,2190.0,10.842754,10842.754 +3060,2025-03-07T09:09:48.933348-08:00,2148.0,10.83508,10835.08 +3061,2025-03-07T09:09:59.764243-08:00,2151.0,10.830895,10830.895 +3062,2025-03-07T09:10:10.613514-08:00,2103.0,10.849271,10849.271 +3063,2025-03-07T09:10:21.446024-08:00,2107.0,10.83251,10832.51 +3064,2025-03-07T09:10:32.277448-08:00,2175.0,10.831424,10831.424 +3065,2025-03-07T09:10:43.112295-08:00,2114.0,10.834847,10834.847 +3066,2025-03-07T09:10:53.952619-08:00,2135.0,10.840324,10840.324 +3067,2025-03-07T09:11:04.795141-08:00,2163.0,10.842522,10842.522 +3068,2025-03-07T09:11:15.628267-08:00,2176.0,10.833126,10833.126 +3069,2025-03-07T09:11:26.466166-08:00,2171.0,10.837899,10837.899 +3070,2025-03-07T09:11:37.295267-08:00,2123.0,10.829101,10829.101 +3071,2025-03-07T09:11:48.134261-08:00,2128.0,10.838994,10838.994 +3072,2025-03-07T09:11:58.970585-08:00,2189.0,10.836324,10836.324 +3073,2025-03-07T09:12:09.815266-08:00,2190.0,10.844681,10844.681 +3074,2025-03-07T09:12:20.652324-08:00,2120.0,10.837058,10837.058 +3075,2025-03-07T09:12:31.493520-08:00,2159.0,10.841196,10841.196 +3076,2025-03-07T09:12:42.327305-08:00,2192.0,10.833785,10833.785 +3077,2025-03-07T09:12:53.158434-08:00,2195.0,10.831129,10831.129 +3078,2025-03-07T09:13:03.990360-08:00,2144.0,10.831926,10831.926 +3079,2025-03-07T09:13:14.828403-08:00,2119.0,10.838043,10838.043 +3080,2025-03-07T09:13:25.665273-08:00,2177.0,10.83687,10836.87 +3081,2025-03-07T09:13:36.502744-08:00,2146.0,10.837471,10837.471 +3082,2025-03-07T09:13:47.338258-08:00,2202.0,10.835514,10835.514 +3083,2025-03-07T09:13:58.172590-08:00,2176.0,10.834332,10834.332 +3084,2025-03-07T09:14:09.002362-08:00,2203.0,10.829772,10829.772 +3085,2025-03-07T09:14:19.836660-08:00,2214.0,10.834298,10834.298 +3086,2025-03-07T09:14:30.668293-08:00,2224.0,10.831633,10831.633 +3087,2025-03-07T09:14:41.499088-08:00,2155.0,10.830795,10830.795 +3088,2025-03-07T09:14:52.342613-08:00,2170.0,10.843525,10843.525 +3089,2025-03-07T09:15:03.174243-08:00,2222.0,10.83163,10831.63 +3090,2025-03-07T09:15:14.012268-08:00,2234.0,10.838025,10838.025 +3091,2025-03-07T09:15:24.845589-08:00,2188.0,10.833321,10833.321 +3092,2025-03-07T09:15:35.690590-08:00,2226.0,10.845001,10845.001 +3093,2025-03-07T09:15:46.528270-08:00,2240.0,10.83768,10837.68 +3094,2025-03-07T09:15:57.368346-08:00,2235.0,10.840076,10840.076 +3095,2025-03-07T09:16:08.208529-08:00,2160.0,10.840183,10840.183 +3096,2025-03-07T09:16:19.040235-08:00,2191.0,10.831706,10831.706 +3097,2025-03-07T09:16:29.873432-08:00,2227.0,10.833197,10833.197 +3098,2025-03-07T09:16:40.717313-08:00,2230.0,10.843881,10843.881 +3099,2025-03-07T09:16:51.555265-08:00,2213.0,10.837952,10837.952 +3100,2025-03-07T09:17:02.389902-08:00,2160.0,10.834637,10834.637 +3101,2025-03-07T09:17:13.234287-08:00,2217.0,10.844385,10844.385 +3102,2025-03-07T09:17:24.077269-08:00,2192.0,10.842982,10842.982 +3103,2025-03-07T09:17:34.910515-08:00,2224.0,10.833246,10833.246 +3104,2025-03-07T09:17:45.750613-08:00,2224.0,10.840098,10840.098 +3105,2025-03-07T09:17:56.582401-08:00,2227.0,10.831788,10831.788 +3106,2025-03-07T09:18:07.426266-08:00,2185.0,10.843865,10843.865 +3107,2025-03-07T09:18:18.257522-08:00,2223.0,10.831256,10831.256 +3108,2025-03-07T09:18:29.095267-08:00,2225.0,10.837745,10837.745 +3109,2025-03-07T09:18:39.933762-08:00,2235.0,10.838495,10838.495 +3110,2025-03-07T09:18:50.768585-08:00,2233.0,10.834823,10834.823 +3111,2025-03-07T09:19:01.608268-08:00,2204.0,10.839683,10839.683 +3112,2025-03-07T09:19:12.439946-08:00,2234.0,10.831678,10831.678 +3113,2025-03-07T09:19:23.282659-08:00,2167.0,10.842713,10842.713 +3114,2025-03-07T09:19:34.115267-08:00,2199.0,10.832608,10832.608 +3115,2025-03-07T09:19:44.946906-08:00,2217.0,10.831639,10831.639 +3116,2025-03-07T09:19:55.791449-08:00,2240.0,10.844543,10844.543 +3117,2025-03-07T09:20:06.630387-08:00,2151.0,10.838938,10838.938 +3118,2025-03-07T09:20:17.465046-08:00,2247.0,10.834659,10834.659 +3119,2025-03-07T09:20:28.291905-08:00,2246.0,10.826859,10826.859 +3120,2025-03-07T09:20:39.130544-08:00,2258.0,10.838639,10838.639 +3121,2025-03-07T09:20:49.966607-08:00,2229.0,10.836063,10836.063 +3122,2025-03-07T09:21:00.803366-08:00,2222.0,10.836759,10836.759 +3123,2025-03-07T09:21:11.634713-08:00,2198.0,10.831347,10831.347 +3124,2025-03-07T09:21:22.475002-08:00,2197.0,10.840289,10840.289 +3125,2025-03-07T09:21:30.873954-08:00,2266.0,8.398952,8398.952 +3126,2025-03-07T09:21:33.310927-08:00,2250.0,2.436973,2436.973 +3127,2025-03-07T09:21:44.141607-08:00,2269.0,10.83068,10830.68 +3128,2025-03-07T09:21:54.981429-08:00,2255.0,10.839822,10839.822 +3129,2025-03-07T09:22:05.827398-08:00,2267.0,10.845969,10845.969 +3130,2025-03-07T09:22:16.665405-08:00,2273.0,10.838007,10838.007 +3131,2025-03-07T09:22:27.499488-08:00,2283.0,10.834083,10834.083 +3132,2025-03-07T09:22:38.342317-08:00,2239.0,10.842829,10842.829 +3133,2025-03-07T09:22:49.175070-08:00,2273.0,10.832753,10832.753 +3134,2025-03-07T09:23:00.007723-08:00,2256.0,10.832653,10832.653 +3135,2025-03-07T09:23:10.846262-08:00,2275.0,10.838539,10838.539 +3136,2025-03-07T09:23:21.680870-08:00,2278.0,10.834608,10834.608 +3137,2025-03-07T09:23:32.513245-08:00,2268.0,10.832375,10832.375 +3138,2025-03-07T09:23:43.342271-08:00,2315.0,10.829026,10829.026 +3139,2025-03-07T09:23:54.173230-08:00,2257.0,10.830959,10830.959 +3140,2025-03-07T09:24:05.010270-08:00,2317.0,10.83704,10837.04 +3141,2025-03-07T09:24:15.840881-08:00,2333.0,10.830611,10830.611 +3142,2025-03-07T09:24:26.682264-08:00,2292.0,10.841383,10841.383 +3143,2025-03-07T09:24:37.516268-08:00,2320.0,10.834004,10834.004 +3144,2025-03-07T09:24:48.348533-08:00,2323.0,10.832265,10832.265 +3145,2025-03-07T09:24:59.181582-08:00,2266.0,10.833049,10833.049 +3146,2025-03-07T09:25:10.011872-08:00,2329.0,10.83029,10830.29 +3147,2025-03-07T09:25:20.845268-08:00,2302.0,10.833396,10833.396 +3148,2025-03-07T09:25:31.681524-08:00,2320.0,10.836256,10836.256 +3149,2025-03-07T09:25:42.506500-08:00,2335.0,10.824976,10824.976 +3150,2025-03-07T09:25:53.330645-08:00,2320.0,10.824145,10824.145 +3151,2025-03-07T09:26:04.162263-08:00,2333.0,10.831618,10831.618 +3152,2025-03-07T09:26:15.000494-08:00,2323.0,10.838231,10838.231 +3153,2025-03-07T09:26:25.832352-08:00,2320.0,10.831858,10831.858 +3154,2025-03-07T09:26:36.664503-08:00,2334.0,10.832151,10832.151 +3155,2025-03-07T09:26:47.496701-08:00,2331.0,10.832198,10832.198 +3156,2025-03-07T09:26:58.326578-08:00,2325.0,10.829877,10829.877 +3157,2025-03-07T09:27:09.148318-08:00,2325.0,10.82174,10821.74 +3158,2025-03-07T09:27:19.974618-08:00,2293.0,10.8263,10826.3 +3159,2025-03-07T09:27:30.807239-08:00,2320.0,10.832621,10832.621 +3160,2025-03-07T09:27:41.638780-08:00,2343.0,10.831541,10831.541 +3161,2025-03-07T09:27:52.474558-08:00,2346.0,10.835778,10835.778 +3162,2025-03-07T09:28:03.306463-08:00,2279.0,10.831905,10831.905 +3163,2025-03-07T09:28:14.140315-08:00,2307.0,10.833852,10833.852 +3164,2025-03-07T09:28:24.971264-08:00,2352.0,10.830949,10830.949 +3165,2025-03-07T09:28:35.801266-08:00,2360.0,10.830002,10830.002 +3166,2025-03-07T09:28:46.634928-08:00,2348.0,10.833662,10833.662 +3167,2025-03-07T09:28:57.467548-08:00,2315.0,10.83262,10832.62 +3168,2025-03-07T09:29:08.285254-08:00,2292.0,10.817706,10817.706 +3169,2025-03-07T09:29:19.119256-08:00,2323.0,10.834002,10834.002 +3170,2025-03-07T09:29:29.950296-08:00,2384.0,10.83104,10831.04 +3171,2025-03-07T09:29:40.780625-08:00,2342.0,10.830329,10830.329 +3172,2025-03-07T09:29:51.619861-08:00,2392.0,10.839236,10839.236 +3173,2025-03-07T09:30:02.453241-08:00,2390.0,10.83338,10833.38 +3174,2025-03-07T09:30:13.288109-08:00,2402.0,10.834868,10834.868 +3175,2025-03-07T09:30:24.119622-08:00,2352.0,10.831513,10831.513 +3176,2025-03-07T09:30:34.951268-08:00,2408.0,10.831646,10831.646 +3177,2025-03-07T09:30:45.783343-08:00,2407.0,10.832075,10832.075 +3178,2025-03-07T09:30:56.614420-08:00,2434.0,10.831077,10831.077 +3179,2025-03-07T09:31:07.446534-08:00,2378.0,10.832114,10832.114 +3180,2025-03-07T09:31:18.276261-08:00,2449.0,10.829727,10829.727 +3181,2025-03-07T09:31:29.099060-08:00,2387.0,10.822799,10822.799 +3182,2025-03-07T09:31:39.934263-08:00,2462.0,10.835203,10835.203 +3183,2025-03-07T09:31:50.771516-08:00,2482.0,10.837253,10837.253 +3184,2025-03-07T09:32:01.599344-08:00,2462.0,10.827828,10827.828 +3185,2025-03-07T09:32:12.440273-08:00,2497.0,10.840929,10840.929 +3186,2025-03-07T09:32:23.268850-08:00,2470.0,10.828577,10828.577 +3187,2025-03-07T09:32:34.107265-08:00,2467.0,10.838415,10838.415 +3188,2025-03-07T09:32:44.934580-08:00,2531.0,10.827315,10827.315 +3189,2025-03-07T09:32:55.766342-08:00,2483.0,10.831762,10831.762 +3190,2025-03-07T09:33:06.596611-08:00,2531.0,10.830269,10830.269 +3191,2025-03-07T09:33:17.427466-08:00,2507.0,10.830855,10830.855 +3192,2025-03-07T09:33:28.254572-08:00,2559.0,10.827106,10827.106 +3193,2025-03-07T09:33:39.079304-08:00,2523.0,10.824732,10824.732 +3194,2025-03-07T09:33:49.911720-08:00,2534.0,10.832416,10832.416 +3195,2025-03-07T09:34:00.739245-08:00,2444.0,10.827525,10827.525 +3196,2025-03-07T09:34:11.574320-08:00,2511.0,10.835075,10835.075 +3197,2025-03-07T09:34:22.415683-08:00,2609.0,10.841363,10841.363 +3198,2025-03-07T09:34:33.239241-08:00,2559.0,10.823558,10823.558 +3199,2025-03-07T09:34:44.073597-08:00,2590.0,10.834356,10834.356 +3200,2025-03-07T09:34:54.901491-08:00,2581.0,10.827894,10827.894 +3201,2025-03-07T09:35:05.744814-08:00,2593.0,10.843323,10843.323 +3202,2025-03-07T09:35:16.572310-08:00,2611.0,10.827496,10827.496 +3203,2025-03-07T09:35:27.408267-08:00,2591.0,10.835957,10835.957 +3204,2025-03-07T09:35:38.245798-08:00,2602.0,10.837531,10837.531 +3205,2025-03-07T09:35:49.070470-08:00,2620.0,10.824672,10824.672 +3206,2025-03-07T09:35:59.903554-08:00,2622.0,10.833084,10833.084 +3207,2025-03-07T09:36:10.730261-08:00,2670.0,10.826707,10826.707 +3208,2025-03-07T09:36:21.567609-08:00,2650.0,10.837348,10837.348 +3209,2025-03-07T09:36:32.395243-08:00,2668.0,10.827634,10827.634 +3210,2025-03-07T09:36:43.229281-08:00,2655.0,10.834038,10834.038 +3211,2025-03-07T09:36:54.055263-08:00,2605.0,10.825982,10825.982 +3212,2025-03-07T09:37:04.891402-08:00,2617.0,10.836139,10836.139 +3213,2025-03-07T09:37:15.725264-08:00,2635.0,10.833862,10833.862 +3214,2025-03-07T09:37:26.556330-08:00,2678.0,10.831066,10831.066 +3215,2025-03-07T09:37:37.399458-08:00,2682.0,10.843128,10843.128 +3216,2025-03-07T09:37:48.231693-08:00,2665.0,10.832235,10832.235 +3217,2025-03-07T09:37:59.075314-08:00,2621.0,10.843621,10843.621 +3218,2025-03-07T09:38:09.904462-08:00,2686.0,10.829148,10829.148 +3219,2025-03-07T09:38:20.736264-08:00,2659.0,10.831802,10831.802 +3220,2025-03-07T09:38:31.570407-08:00,2673.0,10.834143,10834.143 +3221,2025-03-07T09:38:42.391408-08:00,2673.0,10.821001,10821.001 +3222,2025-03-07T09:38:53.227655-08:00,2677.0,10.836247,10836.247 +3223,2025-03-07T09:39:04.064696-08:00,2657.0,10.837041,10837.041 +3224,2025-03-07T09:39:14.893476-08:00,2684.0,10.82878,10828.78 +3225,2025-03-07T09:39:25.728585-08:00,2608.0,10.835109,10835.109 +3226,2025-03-07T09:39:36.560300-08:00,2681.0,10.831715,10831.715 +3227,2025-03-07T09:39:47.393701-08:00,2677.0,10.833401,10833.401 +3228,2025-03-07T09:39:58.223260-08:00,2645.0,10.829559,10829.559 +3229,2025-03-07T09:40:09.054270-08:00,2676.0,10.83101,10831.01 +3230,2025-03-07T09:40:19.886330-08:00,2678.0,10.83206,10832.06 +3231,2025-03-07T09:40:30.711844-08:00,2611.0,10.825514,10825.514 +3232,2025-03-07T09:40:41.538775-08:00,2677.0,10.826931,10826.931 +3233,2025-03-07T09:40:52.377389-08:00,2674.0,10.838614,10838.614 +3234,2025-03-07T09:41:03.214611-08:00,2672.0,10.837222,10837.222 +3235,2025-03-07T09:41:14.040270-08:00,2641.0,10.825659,10825.659 +3236,2025-03-07T09:41:24.876382-08:00,2608.0,10.836112,10836.112 +3237,2025-03-07T09:41:35.707532-08:00,2641.0,10.83115,10831.15 +3238,2025-03-07T09:41:46.543328-08:00,2672.0,10.835796,10835.796 +3239,2025-03-07T09:41:57.367405-08:00,2611.0,10.824077,10824.077 +3240,2025-03-07T09:42:08.203631-08:00,2671.0,10.836226,10836.226 +3241,2025-03-07T09:42:19.034374-08:00,2656.0,10.830743,10830.743 +3242,2025-03-07T09:42:29.855269-08:00,2625.0,10.820895,10820.895 +3243,2025-03-07T09:42:40.690932-08:00,2618.0,10.835663,10835.663 +3244,2025-03-07T09:42:51.521483-08:00,2645.0,10.830551,10830.551 +3245,2025-03-07T09:43:02.352104-08:00,2643.0,10.830621,10830.621 +3246,2025-03-07T09:43:13.184457-08:00,2666.0,10.832353,10832.353 +3247,2025-03-07T09:43:24.015536-08:00,2653.0,10.831079,10831.079 +3248,2025-03-07T09:43:34.846268-08:00,2613.0,10.830732,10830.732 +3249,2025-03-07T09:43:45.683638-08:00,2586.0,10.83737,10837.37 +3250,2025-03-07T09:43:56.515412-08:00,2637.0,10.831774,10831.774 +3251,2025-03-07T09:44:07.353268-08:00,2618.0,10.837856,10837.856 +3252,2025-03-07T09:44:18.184796-08:00,2610.0,10.831528,10831.528 +3253,2025-03-07T09:44:29.029039-08:00,2624.0,10.844243,10844.243 +3254,2025-03-07T09:44:39.864264-08:00,2640.0,10.835225,10835.225 +3255,2025-03-07T09:44:50.704498-08:00,2609.0,10.840234,10840.234 +3256,2025-03-07T09:45:01.540264-08:00,2624.0,10.835766,10835.766 +3257,2025-03-07T09:45:12.379268-08:00,2646.0,10.839004,10839.004 +3258,2025-03-07T09:45:23.209462-08:00,2656.0,10.830194,10830.194 +3259,2025-03-07T09:45:34.053305-08:00,2653.0,10.843843,10843.843 +3260,2025-03-07T09:45:44.892199-08:00,2624.0,10.838894,10838.894 +3261,2025-03-07T09:45:55.722531-08:00,2640.0,10.830332,10830.332 +3262,2025-03-07T09:46:06.558445-08:00,2642.0,10.835914,10835.914 +3263,2025-03-07T09:46:17.403296-08:00,2598.0,10.844851,10844.851 +3264,2025-03-07T09:46:28.233585-08:00,2646.0,10.830289,10830.289 +3265,2025-03-07T09:46:39.065502-08:00,2621.0,10.831917,10831.917 +3266,2025-03-07T09:46:49.905392-08:00,2640.0,10.83989,10839.89 +3267,2025-03-07T09:47:00.751897-08:00,2621.0,10.846505,10846.505 +3268,2025-03-07T09:47:11.596334-08:00,2559.0,10.844437,10844.437 +3269,2025-03-07T09:47:22.440259-08:00,2629.0,10.843925,10843.925 +3270,2025-03-07T09:47:33.279245-08:00,2608.0,10.838986,10838.986 +3271,2025-03-07T09:47:44.125272-08:00,2640.0,10.846027,10846.027 +3272,2025-03-07T09:47:54.967566-08:00,2640.0,10.842294,10842.294 +3273,2025-03-07T09:48:05.809699-08:00,2626.0,10.842133,10842.133 +3274,2025-03-07T09:48:16.646261-08:00,2640.0,10.836562,10836.562 +3275,2025-03-07T09:48:27.495380-08:00,2583.0,10.849119,10849.119 +3276,2025-03-07T09:48:38.341620-08:00,2619.0,10.84624,10846.24 +3277,2025-03-07T09:48:49.183287-08:00,2599.0,10.841667,10841.667 +3278,2025-03-07T09:49:00.032940-08:00,2626.0,10.849653,10849.653 +3279,2025-03-07T09:49:10.869402-08:00,2589.0,10.836462,10836.462 +3280,2025-03-07T09:49:21.712587-08:00,2620.0,10.843185,10843.185 +3281,2025-03-07T09:49:32.559509-08:00,2617.0,10.846922,10846.922 +3282,2025-03-07T09:49:43.398345-08:00,2607.0,10.838836,10838.836 +3283,2025-03-07T09:49:54.244263-08:00,2594.0,10.845918,10845.918 +3284,2025-03-07T09:50:05.084259-08:00,2625.0,10.839996,10839.996 +3285,2025-03-07T09:50:15.929219-08:00,2589.0,10.84496,10844.96 +3286,2025-03-07T09:50:26.768992-08:00,2593.0,10.839773,10839.773 +3287,2025-03-07T09:50:37.613268-08:00,2559.0,10.844276,10844.276 +3288,2025-03-07T09:50:48.455557-08:00,2624.0,10.842289,10842.289 +3289,2025-03-07T09:50:59.293572-08:00,2545.0,10.838015,10838.015 +3290,2025-03-07T09:51:10.130714-08:00,2596.0,10.837142,10837.142 +3291,2025-03-07T09:51:20.976345-08:00,2599.0,10.845631,10845.631 +3292,2025-03-07T09:51:31.819390-08:00,2559.0,10.843045,10843.045 +3293,2025-03-07T09:51:42.662280-08:00,2587.0,10.84289,10842.89 +3294,2025-03-07T09:51:53.503701-08:00,2592.0,10.841421,10841.421 +3295,2025-03-07T09:52:04.354262-08:00,2609.0,10.850561,10850.561 +3296,2025-03-07T09:52:15.195324-08:00,2559.0,10.841062,10841.062 +3297,2025-03-07T09:52:26.032348-08:00,2596.0,10.837024,10837.024 +3298,2025-03-07T09:52:36.877850-08:00,2531.0,10.845502,10845.502 +3299,2025-03-07T09:52:47.712370-08:00,2547.0,10.83452,10834.52 +3300,2025-03-07T09:52:58.556395-08:00,2544.0,10.844025,10844.025 +3301,2025-03-07T09:53:09.397365-08:00,2559.0,10.84097,10840.97 +3302,2025-03-07T09:53:20.237829-08:00,2559.0,10.840464,10840.464 +3303,2025-03-07T09:53:31.074247-08:00,2605.0,10.836418,10836.418 +3304,2025-03-07T09:53:41.917518-08:00,2554.0,10.843271,10843.271 +3305,2025-03-07T09:53:52.768268-08:00,2559.0,10.85075,10850.75 +3306,2025-03-07T09:54:03.609566-08:00,2602.0,10.841298,10841.298 +3307,2025-03-07T09:54:14.442258-08:00,2535.0,10.832692,10832.692 +3308,2025-03-07T09:54:25.284570-08:00,2556.0,10.842312,10842.312 +3309,2025-03-07T09:54:36.128969-08:00,2549.0,10.844399,10844.399 +3310,2025-03-07T09:54:46.960514-08:00,2593.0,10.831545,10831.545 +3311,2025-03-07T09:54:57.801458-08:00,2559.0,10.840944,10840.944 +3312,2025-03-07T09:55:08.646262-08:00,2588.0,10.844804,10844.804 +3313,2025-03-07T09:55:19.494415-08:00,2597.0,10.848153,10848.153 +3314,2025-03-07T09:55:30.333314-08:00,2531.0,10.838899,10838.899 +3315,2025-03-07T09:55:41.175503-08:00,2559.0,10.842189,10842.189 +3316,2025-03-07T09:55:52.013070-08:00,2541.0,10.837567,10837.567 +3317,2025-03-07T09:56:02.864126-08:00,2592.0,10.851056,10851.056 +3318,2025-03-07T09:56:13.697499-08:00,2590.0,10.833373,10833.373 +3319,2025-03-07T09:56:24.542257-08:00,2545.0,10.844758,10844.758 +3320,2025-03-07T09:56:35.391266-08:00,2550.0,10.849009,10849.009 +3321,2025-03-07T09:56:46.231336-08:00,2519.0,10.84007,10840.07 +3322,2025-03-07T09:56:57.084320-08:00,2554.0,10.852984,10852.984 +3323,2025-03-07T09:57:07.926141-08:00,2583.0,10.841821,10841.821 +3324,2025-03-07T09:57:18.764263-08:00,2559.0,10.838122,10838.122 +3325,2025-03-07T09:57:29.607270-08:00,2523.0,10.843007,10843.007 +3326,2025-03-07T09:57:40.451400-08:00,2512.0,10.84413,10844.13 +3327,2025-03-07T09:57:51.301389-08:00,2582.0,10.849989,10849.989 +3328,2025-03-07T09:58:02.147001-08:00,2559.0,10.845612,10845.612 +3329,2025-03-07T09:58:12.991259-08:00,2581.0,10.844258,10844.258 +3330,2025-03-07T09:58:23.834269-08:00,2554.0,10.84301,10843.01 +3331,2025-03-07T09:58:34.686315-08:00,2544.0,10.852046,10852.046 +3332,2025-03-07T09:58:45.531529-08:00,2503.0,10.845214,10845.214 +3333,2025-03-07T09:58:56.374310-08:00,2559.0,10.842781,10842.781 +3334,2025-03-07T09:59:07.219311-08:00,2555.0,10.845001,10845.001 +3335,2025-03-07T09:59:18.060257-08:00,2559.0,10.840946,10840.946 +3336,2025-03-07T09:59:28.904255-08:00,2559.0,10.843998,10843.998 +3337,2025-03-07T09:59:39.746755-08:00,2490.0,10.8425,10842.5 +3338,2025-03-07T09:59:50.590172-08:00,2559.0,10.843417,10843.417 +3339,2025-03-07T10:00:01.443763-08:00,2521.0,10.853591,10853.591 +3340,2025-03-07T10:00:12.286256-08:00,2559.0,10.842493,10842.493 +3341,2025-03-07T10:00:23.135257-08:00,2528.0,10.849001,10849.001 +3342,2025-03-07T10:00:33.975302-08:00,2559.0,10.840045,10840.045 +3343,2025-03-07T10:00:44.826266-08:00,2538.0,10.850964,10850.964 +3344,2025-03-07T10:00:55.674587-08:00,2526.0,10.848321,10848.321 +3345,2025-03-07T10:01:06.519798-08:00,2544.0,10.845211,10845.211 +3346,2025-03-07T10:01:17.361256-08:00,2530.0,10.841458,10841.458 +3347,2025-03-07T10:01:28.208521-08:00,2551.0,10.847265,10847.265 +3348,2025-03-07T10:01:39.053594-08:00,2491.0,10.845073,10845.073 +3349,2025-03-07T10:01:49.898457-08:00,2525.0,10.844863,10844.863 +3350,2025-03-07T10:02:00.740520-08:00,2543.0,10.842063,10842.063 +3351,2025-03-07T10:02:11.589261-08:00,2540.0,10.848741,10848.741 +3352,2025-03-07T10:02:22.441254-08:00,2514.0,10.851993,10851.993 +3353,2025-03-07T10:02:33.287241-08:00,2543.0,10.845987,10845.987 +3354,2025-03-07T10:02:44.127269-08:00,2527.0,10.840028,10840.028 +3355,2025-03-07T10:02:54.978302-08:00,2543.0,10.851033,10851.033 +3356,2025-03-07T10:03:05.817594-08:00,2525.0,10.839292,10839.292 +3357,2025-03-07T10:03:16.658501-08:00,2496.0,10.840907,10840.907 +3358,2025-03-07T10:03:27.503267-08:00,2513.0,10.844766,10844.766 +3359,2025-03-07T10:03:38.355505-08:00,2521.0,10.852238,10852.238 +3360,2025-03-07T10:03:49.194397-08:00,2512.0,10.838892,10838.892 +3361,2025-03-07T10:04:00.047407-08:00,2541.0,10.85301,10853.01 +3362,2025-03-07T10:04:10.893026-08:00,2495.0,10.845619,10845.619 +3363,2025-03-07T10:04:21.740263-08:00,2515.0,10.847237,10847.237 +3364,2025-03-07T10:04:32.575538-08:00,2487.0,10.835275,10835.275 +3365,2025-03-07T10:04:43.426265-08:00,2512.0,10.850727,10850.727 +3366,2025-03-07T10:04:54.265549-08:00,2530.0,10.839284,10839.284 +3367,2025-03-07T10:05:05.112822-08:00,2496.0,10.847273,10847.273 +3368,2025-03-07T10:05:15.955378-08:00,2517.0,10.842556,10842.556 +3369,2025-03-07T10:05:26.799363-08:00,2468.0,10.843985,10843.985 +3370,2025-03-07T10:05:37.627082-08:00,2526.0,10.827719,10827.719 +3371,2025-03-07T10:05:48.470967-08:00,2487.0,10.843885,10843.885 +3372,2025-03-07T10:05:59.326388-08:00,2512.0,10.855421,10855.421 +3373,2025-03-07T10:06:10.168300-08:00,2485.0,10.841912,10841.912 +3374,2025-03-07T10:06:21.008764-08:00,2498.0,10.840464,10840.464 +3375,2025-03-07T10:06:31.847968-08:00,2449.0,10.839204,10839.204 +3376,2025-03-07T10:06:42.696770-08:00,2517.0,10.848802,10848.802 +3377,2025-03-07T10:06:53.544374-08:00,2515.0,10.847604,10847.604 +3378,2025-03-07T10:07:04.388091-08:00,2513.0,10.843717,10843.717 +3379,2025-03-07T10:07:15.232769-08:00,2512.0,10.844678,10844.678 +3380,2025-03-07T10:07:26.087822-08:00,2463.0,10.855053,10855.053 +3381,2025-03-07T10:07:36.925765-08:00,2505.0,10.837943,10837.943 +3382,2025-03-07T10:07:47.778053-08:00,2512.0,10.852288,10852.288 +3383,2025-03-07T10:07:58.624083-08:00,2498.0,10.84603,10846.03 +3384,2025-03-07T10:08:09.465929-08:00,2507.0,10.841846,10841.846 +3385,2025-03-07T10:08:20.314765-08:00,2435.0,10.848836,10848.836 +3386,2025-03-07T10:08:31.159822-08:00,2481.0,10.845057,10845.057 +3387,2025-03-07T10:08:42.009766-08:00,2475.0,10.849944,10849.944 +3388,2025-03-07T10:08:52.849055-08:00,2492.0,10.839289,10839.289 +3389,2025-03-07T10:09:03.702767-08:00,2495.0,10.853712,10853.712 +3390,2025-03-07T10:09:14.553774-08:00,2479.0,10.851007,10851.007 +3391,2025-03-07T10:09:25.402045-08:00,2463.0,10.848271,10848.271 +3392,2025-03-07T10:09:36.243931-08:00,2491.0,10.841886,10841.886 +3393,2025-03-07T10:09:47.091760-08:00,2500.0,10.847829,10847.829 +3394,2025-03-07T10:09:57.931012-08:00,2497.0,10.839252,10839.252 +3395,2025-03-07T10:10:08.770894-08:00,2497.0,10.839882,10839.882 +3396,2025-03-07T10:10:19.623301-08:00,2496.0,10.852407,10852.407 +3397,2025-03-07T10:10:30.453230-08:00,2437.0,10.829929,10829.929 +3398,2025-03-07T10:10:41.293770-08:00,2458.0,10.84054,10840.54 +3399,2025-03-07T10:10:52.134330-08:00,2455.0,10.84056,10840.56 +3400,2025-03-07T10:11:02.979796-08:00,2459.0,10.845466,10845.466 +3401,2025-03-07T10:11:13.814828-08:00,2480.0,10.835032,10835.032 +3402,2025-03-07T10:11:24.646119-08:00,2464.0,10.831291,10831.291 +3403,2025-03-07T10:11:35.495091-08:00,2451.0,10.848972,10848.972 +3404,2025-03-07T10:11:46.331827-08:00,2453.0,10.836736,10836.736 +3405,2025-03-07T10:11:57.172013-08:00,2439.0,10.840186,10840.186 +3406,2025-03-07T10:12:08.014943-08:00,2427.0,10.84293,10842.93 +3407,2025-03-07T10:12:18.853910-08:00,2433.0,10.838967,10838.967 +3408,2025-03-07T10:12:29.699014-08:00,2401.0,10.845104,10845.104 +3409,2025-03-07T10:12:40.535202-08:00,2465.0,10.836188,10836.188 +3410,2025-03-07T10:12:51.377104-08:00,2445.0,10.841902,10841.902 +3411,2025-03-07T10:13:02.221255-08:00,2455.0,10.844151,10844.151 +3412,2025-03-07T10:13:13.051013-08:00,2403.0,10.829758,10829.758 +3413,2025-03-07T10:13:23.894106-08:00,2459.0,10.843093,10843.093 +3414,2025-03-07T10:13:34.727770-08:00,2469.0,10.833664,10833.664 +3415,2025-03-07T10:13:45.567835-08:00,2448.0,10.840065,10840.065 +3416,2025-03-07T10:13:56.410890-08:00,2466.0,10.843055,10843.055 +3417,2025-03-07T10:14:07.254510-08:00,2465.0,10.84362,10843.62 +3418,2025-03-07T10:14:18.090975-08:00,2416.0,10.836465,10836.465 +3419,2025-03-07T10:14:28.926919-08:00,2435.0,10.835944,10835.944 +3420,2025-03-07T10:14:39.769217-08:00,2399.0,10.842298,10842.298 +3421,2025-03-07T10:14:50.614104-08:00,2450.0,10.844887,10844.887 +3422,2025-03-07T10:15:01.451001-08:00,2416.0,10.836897,10836.897 +3423,2025-03-07T10:15:12.300945-08:00,2433.0,10.849944,10849.944 +3424,2025-03-07T10:15:23.141880-08:00,2403.0,10.840935,10840.935 +3425,2025-03-07T10:15:33.976770-08:00,2451.0,10.83489,10834.89 +3426,2025-03-07T10:15:44.813272-08:00,2451.0,10.836502,10836.502 +3427,2025-03-07T10:15:55.659917-08:00,2419.0,10.846645,10846.645 +3428,2025-03-07T10:16:06.494810-08:00,2381.0,10.834893,10834.893 +3429,2025-03-07T10:16:17.332593-08:00,2447.0,10.837783,10837.783 +3430,2025-03-07T10:16:28.167804-08:00,2415.0,10.835211,10835.211 +3431,2025-03-07T10:16:39.012218-08:00,2414.0,10.844414,10844.414 +3432,2025-03-07T10:16:49.844008-08:00,2442.0,10.83179,10831.79 +3433,2025-03-07T10:17:00.685752-08:00,2375.0,10.841744,10841.744 +3434,2025-03-07T10:17:11.531088-08:00,2432.0,10.845336,10845.336 +3435,2025-03-07T10:17:22.377722-08:00,2406.0,10.846634,10846.634 +3436,2025-03-07T10:17:33.214746-08:00,2429.0,10.837024,10837.024 +3437,2025-03-07T10:17:44.056175-08:00,2434.0,10.841429,10841.429 +3438,2025-03-07T10:17:54.902205-08:00,2435.0,10.84603,10846.03 +3439,2025-03-07T10:18:05.736768-08:00,2416.0,10.834563,10834.563 +3440,2025-03-07T10:18:16.575995-08:00,2402.0,10.839227,10839.227 +3441,2025-03-07T10:18:27.419088-08:00,2395.0,10.843093,10843.093 +3442,2025-03-07T10:18:38.252813-08:00,2409.0,10.833725,10833.725 +3443,2025-03-07T10:18:49.094624-08:00,2386.0,10.841811,10841.811 +3444,2025-03-07T10:18:59.927149-08:00,2382.0,10.832525,10832.525 +3445,2025-03-07T10:19:10.769766-08:00,2422.0,10.842617,10842.617 +3446,2025-03-07T10:19:21.604762-08:00,2399.0,10.834996,10834.996 +3447,2025-03-07T10:19:32.433372-08:00,2411.0,10.82861,10828.61 +3448,2025-03-07T10:19:43.276816-08:00,2415.0,10.843444,10843.444 +3449,2025-03-07T10:19:54.107096-08:00,2407.0,10.83028,10830.28 +3450,2025-03-07T10:20:04.942309-08:00,2345.0,10.835213,10835.213 +3451,2025-03-07T10:20:15.786765-08:00,2415.0,10.844456,10844.456 +3452,2025-03-07T10:20:26.622473-08:00,2351.0,10.835708,10835.708 +3453,2025-03-07T10:20:37.459346-08:00,2338.0,10.836873,10836.873 +3454,2025-03-07T10:20:48.300785-08:00,2374.0,10.841439,10841.439 +3455,2025-03-07T10:20:59.143066-08:00,2383.0,10.842281,10842.281 +3456,2025-03-07T10:21:09.986875-08:00,2384.0,10.843809,10843.809 +3457,2025-03-07T10:21:20.830112-08:00,2393.0,10.843237,10843.237 +3458,2025-03-07T10:21:31.673256-08:00,2400.0,10.843144,10843.144 +3459,2025-03-07T10:21:42.514765-08:00,2398.0,10.841509,10841.509 +3460,2025-03-07T10:21:53.358982-08:00,2387.0,10.844217,10844.217 +3461,2025-03-07T10:22:04.202419-08:00,2385.0,10.843437,10843.437 +3462,2025-03-07T10:22:15.045104-08:00,2349.0,10.842685,10842.685 +3463,2025-03-07T10:22:25.875939-08:00,2375.0,10.830835,10830.835 +3464,2025-03-07T10:22:36.723950-08:00,2380.0,10.848011,10848.011 +3465,2025-03-07T10:22:47.574751-08:00,2338.0,10.850801,10850.801 +3466,2025-03-07T10:22:58.418832-08:00,2385.0,10.844081,10844.081 +3467,2025-03-07T10:23:09.259467-08:00,2363.0,10.840635,10840.635 +3468,2025-03-07T10:23:20.092824-08:00,2350.0,10.833357,10833.357 +3469,2025-03-07T10:23:30.945744-08:00,2319.0,10.85292,10852.92 +3470,2025-03-07T10:23:41.789767-08:00,2372.0,10.844023,10844.023 +3471,2025-03-07T10:23:52.623019-08:00,2312.0,10.833252,10833.252 +3472,2025-03-07T10:24:03.469753-08:00,2341.0,10.846734,10846.734 +3473,2025-03-07T10:24:14.307044-08:00,2357.0,10.837291,10837.291 +3474,2025-03-07T10:24:25.151090-08:00,2324.0,10.844046,10844.046 +3475,2025-03-07T10:24:35.996228-08:00,2314.0,10.845138,10845.138 +3476,2025-03-07T10:24:46.840843-08:00,2352.0,10.844615,10844.615 +3477,2025-03-07T10:24:57.679886-08:00,2288.0,10.839043,10839.043 +3478,2025-03-07T10:25:08.522807-08:00,2323.0,10.842921,10842.921 +3479,2025-03-07T10:25:15.315741-08:00,2288.0,6.792934,6792.934 +3480,2025-03-07T10:25:19.364120-08:00,2333.0,4.048379,4048.379 +3481,2025-03-07T10:25:30.207813-08:00,2362.0,10.843693,10843.693 +3482,2025-03-07T10:25:41.040771-08:00,2341.0,10.832958,10832.958 +3483,2025-03-07T10:25:51.882822-08:00,2289.0,10.842051,10842.051 +3484,2025-03-07T10:26:02.727096-08:00,2354.0,10.844274,10844.274 +3485,2025-03-07T10:26:13.565769-08:00,2346.0,10.838673,10838.673 +3486,2025-03-07T10:26:24.408230-08:00,2334.0,10.842461,10842.461 +3487,2025-03-07T10:26:35.246057-08:00,2290.0,10.837827,10837.827 +3488,2025-03-07T10:26:46.075882-08:00,2350.0,10.829825,10829.825 +3489,2025-03-07T10:26:56.924044-08:00,2351.0,10.848162,10848.162 +3490,2025-03-07T10:27:07.758051-08:00,2297.0,10.834007,10834.007 +3491,2025-03-07T10:27:18.599496-08:00,2338.0,10.841445,10841.445 +3492,2025-03-07T10:27:29.439765-08:00,2256.0,10.840269,10840.269 +3493,2025-03-07T10:27:40.287761-08:00,2310.0,10.847996,10847.996 +3494,2025-03-07T10:27:51.124382-08:00,2306.0,10.836621,10836.621 +3495,2025-03-07T10:28:01.966986-08:00,2331.0,10.842604,10842.604 +3496,2025-03-07T10:28:12.810849-08:00,2262.0,10.843863,10843.863 +3497,2025-03-07T10:28:23.653769-08:00,2290.0,10.84292,10842.92 +3498,2025-03-07T10:28:34.496086-08:00,2283.0,10.842317,10842.317 +3499,2025-03-07T10:28:45.350523-08:00,2323.0,10.854437,10854.437 +3500,2025-03-07T10:28:56.180018-08:00,2286.0,10.829495,10829.495 +3501,2025-03-07T10:29:07.016655-08:00,2262.0,10.836637,10836.637 +3502,2025-03-07T10:29:17.862156-08:00,2293.0,10.845501,10845.501 +3503,2025-03-07T10:29:28.699104-08:00,2267.0,10.836948,10836.948 +3504,2025-03-07T10:29:39.533906-08:00,2262.0,10.834802,10834.802 +3505,2025-03-07T10:29:50.377104-08:00,2299.0,10.843198,10843.198 +3506,2025-03-07T10:30:01.222025-08:00,2240.0,10.844921,10844.921 +3507,2025-03-07T10:30:12.050767-08:00,2286.0,10.828742,10828.742 +3508,2025-03-07T10:30:22.892772-08:00,2305.0,10.842005,10842.005 +3509,2025-03-07T10:30:33.737057-08:00,2272.0,10.844285,10844.285 +3510,2025-03-07T10:30:44.578953-08:00,2303.0,10.841896,10841.896 +3511,2025-03-07T10:30:55.410942-08:00,2227.0,10.831989,10831.989 +3512,2025-03-07T10:31:06.250121-08:00,2297.0,10.839179,10839.179 +3513,2025-03-07T10:31:17.095521-08:00,2289.0,10.8454,10845.4 +3514,2025-03-07T10:31:38.773768-08:00,2283.0,21.678247,21678.247 +3515,2025-03-07T10:31:49.614159-08:00,2254.0,10.840391,10840.391 +3516,2025-03-07T10:32:00.447019-08:00,2283.0,10.83286,10832.86 +3517,2025-03-07T10:32:11.291770-08:00,2284.0,10.844751,10844.751 +3518,2025-03-07T10:32:22.134112-08:00,2187.0,10.842342,10842.342 +3519,2025-03-07T10:32:32.972746-08:00,2195.0,10.838634,10838.634 +3520,2025-03-07T10:32:43.807075-08:00,2233.0,10.834329,10834.329 +3521,2025-03-07T10:32:54.646769-08:00,2275.0,10.839694,10839.694 +3522,2025-03-07T10:33:05.494071-08:00,2263.0,10.847302,10847.302 +3523,2025-03-07T10:33:16.325011-08:00,2261.0,10.83094,10830.94 +3524,2025-03-07T10:33:27.172756-08:00,2256.0,10.847745,10847.745 +3525,2025-03-07T10:33:38.012222-08:00,2231.0,10.839466,10839.466 +3526,2025-03-07T10:33:48.845373-08:00,2230.0,10.833151,10833.151 +3527,2025-03-07T10:33:59.680001-08:00,2249.0,10.834628,10834.628 +3528,2025-03-07T10:34:10.528769-08:00,2259.0,10.848768,10848.768 +3529,2025-03-07T10:34:21.362812-08:00,2193.0,10.834043,10834.043 +3530,2025-03-07T10:34:32.209812-08:00,2256.0,10.847,10847.0 +3531,2025-03-07T10:34:43.048889-08:00,2183.0,10.839077,10839.077 +3532,2025-03-07T10:34:53.891117-08:00,2252.0,10.842228,10842.228 +3533,2025-03-07T10:35:04.740484-08:00,2228.0,10.849367,10849.367 +3534,2025-03-07T10:35:15.578003-08:00,2247.0,10.837519,10837.519 +3535,2025-03-07T10:35:26.419921-08:00,2249.0,10.841918,10841.918 +3536,2025-03-07T10:35:37.249312-08:00,2219.0,10.829391,10829.391 +3537,2025-03-07T10:35:48.088293-08:00,2175.0,10.838981,10838.981 +3538,2025-03-07T10:35:58.926773-08:00,2240.0,10.83848,10838.48 +3539,2025-03-07T10:36:09.768893-08:00,2219.0,10.84212,10842.12 +3540,2025-03-07T10:36:20.598846-08:00,2235.0,10.829953,10829.953 +3541,2025-03-07T10:36:31.432139-08:00,2203.0,10.833293,10833.293 +3542,2025-03-07T10:36:42.263976-08:00,2225.0,10.831837,10831.837 +3543,2025-03-07T10:36:53.105818-08:00,2214.0,10.841842,10841.842 +3544,2025-03-07T10:37:03.950566-08:00,2219.0,10.844748,10844.748 +3545,2025-03-07T10:37:14.783221-08:00,2192.0,10.832655,10832.655 +3546,2025-03-07T10:37:25.626769-08:00,2183.0,10.843548,10843.548 +3547,2025-03-07T10:37:36.466763-08:00,2225.0,10.839994,10839.994 +3548,2025-03-07T10:37:47.301218-08:00,2224.0,10.834455,10834.455 +3549,2025-03-07T10:37:58.140352-08:00,2160.0,10.839134,10839.134 +3550,2025-03-07T10:38:08.981907-08:00,2219.0,10.841555,10841.555 +3551,2025-03-07T10:38:19.827234-08:00,2215.0,10.845327,10845.327 +3552,2025-03-07T10:38:30.662371-08:00,2163.0,10.835137,10835.137 +3553,2025-03-07T10:38:41.501812-08:00,2214.0,10.839441,10839.441 +3554,2025-03-07T10:38:52.336029-08:00,2174.0,10.834217,10834.217 +3555,2025-03-07T10:39:03.167125-08:00,2163.0,10.831096,10831.096 +3556,2025-03-07T10:39:14.000814-08:00,2131.0,10.833689,10833.689 +3557,2025-03-07T10:39:24.846163-08:00,2157.0,10.845349,10845.349 +3558,2025-03-07T10:39:35.679766-08:00,2198.0,10.833603,10833.603 +3559,2025-03-07T10:39:46.512767-08:00,2143.0,10.833001,10833.001 +3560,2025-03-07T10:39:57.352083-08:00,2129.0,10.839316,10839.316 +3561,2025-03-07T10:40:08.193206-08:00,2139.0,10.841123,10841.123 +3562,2025-03-07T10:40:19.033763-08:00,2192.0,10.840557,10840.557 +3563,2025-03-07T10:40:29.879012-08:00,2160.0,10.845249,10845.249 +3564,2025-03-07T10:40:40.705769-08:00,2160.0,10.826757,10826.757 +3565,2025-03-07T10:40:51.542759-08:00,2187.0,10.83699,10836.99 +3566,2025-03-07T10:41:02.384747-08:00,2185.0,10.841988,10841.988 +3567,2025-03-07T10:41:13.217808-08:00,2160.0,10.833061,10833.061 +3568,2025-03-07T10:41:24.046069-08:00,2181.0,10.828261,10828.261 +3569,2025-03-07T10:41:34.889215-08:00,2131.0,10.843146,10843.146 +3570,2025-03-07T10:41:45.718991-08:00,2180.0,10.829776,10829.776 +3571,2025-03-07T10:41:56.555770-08:00,2170.0,10.836779,10836.779 +3572,2025-03-07T10:42:07.394546-08:00,2159.0,10.838776,10838.776 +3573,2025-03-07T10:42:18.239748-08:00,2160.0,10.845202,10845.202 +3574,2025-03-07T10:42:29.074239-08:00,2161.0,10.834491,10834.491 +3575,2025-03-07T10:42:39.917083-08:00,2135.0,10.842844,10842.844 +3576,2025-03-07T10:42:50.745759-08:00,2160.0,10.828676,10828.676 +3577,2025-03-07T10:43:01.591037-08:00,2164.0,10.845278,10845.278 +3578,2025-03-07T10:43:12.422231-08:00,2161.0,10.831194,10831.194 +3579,2025-03-07T10:43:23.261764-08:00,2115.0,10.839533,10839.533 +3580,2025-03-07T10:43:34.099117-08:00,2160.0,10.837353,10837.353 +3581,2025-03-07T10:43:44.925996-08:00,2091.0,10.826879,10826.879 +3582,2025-03-07T10:43:55.760760-08:00,2128.0,10.834764,10834.764 +3583,2025-03-07T10:44:06.600331-08:00,2112.0,10.839571,10839.571 +3584,2025-03-07T10:44:17.437086-08:00,2147.0,10.836755,10836.755 +3585,2025-03-07T10:44:28.269758-08:00,2143.0,10.832672,10832.672 +3586,2025-03-07T10:44:39.111051-08:00,2143.0,10.841293,10841.293 +3587,2025-03-07T10:44:49.938757-08:00,2129.0,10.827706,10827.706 +3588,2025-03-07T10:45:00.768903-08:00,2079.0,10.830146,10830.146 +3589,2025-03-07T10:45:11.606073-08:00,2143.0,10.83717,10837.17 +3590,2025-03-07T10:45:22.437761-08:00,2118.0,10.831688,10831.688 +3591,2025-03-07T10:45:33.274037-08:00,2128.0,10.836276,10836.276 +3592,2025-03-07T10:45:44.124390-08:00,2123.0,10.850353,10850.353 +3593,2025-03-07T10:45:54.955769-08:00,2097.0,10.831379,10831.379 +3594,2025-03-07T10:46:05.799769-08:00,2083.0,10.844,10844.0 +3595,2025-03-07T10:46:16.627149-08:00,2099.0,10.82738,10827.38 +3596,2025-03-07T10:46:27.458934-08:00,2090.0,10.831785,10831.785 +3597,2025-03-07T10:46:38.294237-08:00,2134.0,10.835303,10835.303 +3598,2025-03-07T10:46:49.125926-08:00,2067.0,10.831689,10831.689 +3599,2025-03-07T10:46:59.958355-08:00,2107.0,10.832429,10832.429 +3600,2025-03-07T10:47:10.800408-08:00,2097.0,10.842053,10842.053 +3601,2025-03-07T10:47:21.632053-08:00,2133.0,10.831645,10831.645 +3602,2025-03-07T10:47:32.464004-08:00,2129.0,10.831951,10831.951 +3603,2025-03-07T10:47:43.291771-08:00,2117.0,10.827767,10827.767 +3604,2025-03-07T10:47:54.122352-08:00,2129.0,10.830581,10830.581 +3605,2025-03-07T10:48:04.961355-08:00,2114.0,10.839003,10839.003 +3606,2025-03-07T10:48:15.790810-08:00,2091.0,10.829455,10829.455 +3607,2025-03-07T10:48:26.634411-08:00,2064.0,10.843601,10843.601 +3608,2025-03-07T10:48:37.470765-08:00,2069.0,10.836354,10836.354 +3609,2025-03-07T10:48:48.306749-08:00,2030.0,10.835984,10835.984 +3610,2025-03-07T10:48:59.129762-08:00,2123.0,10.823013,10823.013 +3611,2025-03-07T10:49:07.390043-08:00,2118.0,8.260281,8260.281 +3612,2025-03-07T10:49:09.966425-08:00,2080.0,2.576382,2576.382 +3613,2025-03-07T10:49:20.805220-08:00,2095.0,10.838795,10838.795 +3614,2025-03-07T10:49:31.630746-08:00,2100.0,10.825526,10825.526 +3615,2025-03-07T10:49:42.465046-08:00,2117.0,10.8343,10834.3 +3616,2025-03-07T10:49:53.299565-08:00,2064.0,10.834519,10834.519 +3617,2025-03-07T10:50:04.125069-08:00,2113.0,10.825504,10825.504 +3618,2025-03-07T10:50:14.952755-08:00,2113.0,10.827686,10827.686 +3619,2025-03-07T10:50:25.788781-08:00,2112.0,10.836026,10836.026 +3620,2025-03-07T10:50:36.621559-08:00,2091.0,10.832778,10832.778 +3621,2025-03-07T10:50:47.447416-08:00,2090.0,10.825857,10825.857 +3622,2025-03-07T10:50:58.273860-08:00,2047.0,10.826444,10826.444 +3623,2025-03-07T10:51:09.109769-08:00,2022.0,10.835909,10835.909 +3624,2025-03-07T10:51:19.952354-08:00,2080.0,10.842585,10842.585 +3625,2025-03-07T10:51:30.773184-08:00,2078.0,10.82083,10820.83 +3626,2025-03-07T10:51:41.605369-08:00,2103.0,10.832185,10832.185 +3627,2025-03-07T10:51:52.447362-08:00,2035.0,10.841993,10841.993 +3628,2025-03-07T10:52:03.278045-08:00,2095.0,10.830683,10830.683 +3629,2025-03-07T10:52:14.111803-08:00,2095.0,10.833758,10833.758 +3630,2025-03-07T10:52:24.949769-08:00,2033.0,10.837966,10837.966 +3631,2025-03-07T10:52:35.789054-08:00,2096.0,10.839285,10839.285 +3632,2025-03-07T10:52:46.629130-08:00,2085.0,10.840076,10840.076 +3633,2025-03-07T10:52:57.460892-08:00,2002.0,10.831762,10831.762 +3634,2025-03-07T10:53:08.292074-08:00,2093.0,10.831182,10831.182 +3635,2025-03-07T10:53:19.131202-08:00,2096.0,10.839128,10839.128 +3636,2025-03-07T10:53:29.967742-08:00,2091.0,10.83654,10836.54 +3637,2025-03-07T10:53:40.807050-08:00,2045.0,10.839308,10839.308 +3638,2025-03-07T10:53:51.630991-08:00,2058.0,10.823941,10823.941 +3639,2025-03-07T10:54:02.470050-08:00,2089.0,10.839059,10839.059 +3640,2025-03-07T10:54:13.300761-08:00,2096.0,10.830711,10830.711 +3641,2025-03-07T10:54:24.141765-08:00,2046.0,10.841004,10841.004 +3642,2025-03-07T10:54:34.981114-08:00,2014.0,10.839349,10839.349 +3643,2025-03-07T10:54:45.811991-08:00,2039.0,10.830877,10830.877 +3644,2025-03-07T10:54:56.647090-08:00,2059.0,10.835099,10835.099 +3645,2025-03-07T10:55:07.481867-08:00,2096.0,10.834777,10834.777 +3646,2025-03-07T10:55:18.312758-08:00,2086.0,10.830891,10830.891 +3647,2025-03-07T10:55:29.151464-08:00,2047.0,10.838706,10838.706 +3648,2025-03-07T10:55:39.980766-08:00,2070.0,10.829302,10829.302 +3649,2025-03-07T10:55:50.825519-08:00,2021.0,10.844753,10844.753 +3650,2025-03-07T10:56:01.663946-08:00,2058.0,10.838427,10838.427 +3651,2025-03-07T10:56:12.500015-08:00,2089.0,10.836069,10836.069 +3652,2025-03-07T10:56:23.333049-08:00,2079.0,10.833034,10833.034 +3653,2025-03-07T10:56:34.164334-08:00,2039.0,10.831285,10831.285 +3654,2025-03-07T10:56:45.005998-08:00,2065.0,10.841664,10841.664 +3655,2025-03-07T10:56:55.848758-08:00,2047.0,10.84276,10842.76 +3656,2025-03-07T10:57:06.680174-08:00,2087.0,10.831416,10831.416 +3657,2025-03-07T10:57:17.522959-08:00,2085.0,10.842785,10842.785 +3658,2025-03-07T10:57:28.359015-08:00,2084.0,10.836056,10836.056 +3659,2025-03-07T10:57:39.196463-08:00,2079.0,10.837448,10837.448 +3660,2025-03-07T10:57:50.032240-08:00,2085.0,10.835777,10835.777 +3661,2025-03-07T10:58:00.874909-08:00,2086.0,10.842669,10842.669 +3662,2025-03-07T10:58:11.716764-08:00,2079.0,10.841855,10841.855 +3663,2025-03-07T10:58:22.548942-08:00,2075.0,10.832178,10832.178 +3664,2025-03-07T10:58:33.387025-08:00,2083.0,10.838083,10838.083 +3665,2025-03-07T10:58:44.235764-08:00,2078.0,10.848739,10848.739 +3666,2025-03-07T10:58:55.070110-08:00,2064.0,10.834346,10834.346 +3667,2025-03-07T10:59:05.911763-08:00,2011.0,10.841653,10841.653 +3668,2025-03-07T10:59:16.748768-08:00,1999.0,10.837005,10837.005 +3669,2025-03-07T10:59:27.584028-08:00,2031.0,10.83526,10835.26 +3670,2025-03-07T10:59:38.434951-08:00,2057.0,10.850923,10850.923 +3671,2025-03-07T10:59:49.271480-08:00,2080.0,10.836529,10836.529 +3672,2025-03-07T11:00:00.113822-08:00,2075.0,10.842342,10842.342 +3673,2025-03-07T11:00:10.957789-08:00,2064.0,10.843967,10843.967 +3674,2025-03-07T11:00:21.793969-08:00,2072.0,10.83618,10836.18 +3675,2025-03-07T11:00:32.624986-08:00,2078.0,10.831017,10831.017 +3676,2025-03-07T11:00:43.465366-08:00,2054.0,10.84038,10840.38 +3677,2025-03-07T11:00:54.306969-08:00,2075.0,10.841603,10841.603 +3678,2025-03-07T11:01:05.150769-08:00,2047.0,10.8438,10843.8 +3679,2025-03-07T11:01:15.993772-08:00,2058.0,10.843003,10843.003 +3680,2025-03-07T11:01:26.839096-08:00,1982.0,10.845324,10845.324 +3681,2025-03-07T11:01:37.679801-08:00,2073.0,10.840705,10840.705 +3682,2025-03-07T11:01:48.511018-08:00,2023.0,10.831217,10831.217 +3683,2025-03-07T11:01:59.355198-08:00,2039.0,10.84418,10844.18 +3684,2025-03-07T11:02:10.199053-08:00,2064.0,10.843855,10843.855 +3685,2025-03-07T11:02:21.038007-08:00,2038.0,10.838954,10838.954 +3686,2025-03-07T11:02:31.878865-08:00,2069.0,10.840858,10840.858 +3687,2025-03-07T11:02:42.715773-08:00,2032.0,10.836908,10836.908 +3688,2025-03-07T11:02:53.558357-08:00,2033.0,10.842584,10842.584 +3689,2025-03-07T11:03:04.400763-08:00,2054.0,10.842406,10842.406 +3690,2025-03-07T11:03:15.241763-08:00,2071.0,10.841,10841.0 +3691,2025-03-07T11:03:26.076346-08:00,2069.0,10.834583,10834.583 +3692,2025-03-07T11:03:36.915898-08:00,2064.0,10.839552,10839.552 +3693,2025-03-07T11:03:47.752739-08:00,1997.0,10.836841,10836.841 +3694,2025-03-07T11:03:58.595552-08:00,2017.0,10.842813,10842.813 +3695,2025-03-07T11:04:09.437018-08:00,1989.0,10.841466,10841.466 +3696,2025-03-07T11:04:20.275768-08:00,2027.0,10.83875,10838.75 +3697,2025-03-07T11:04:31.113224-08:00,2000.0,10.837456,10837.456 +3698,2025-03-07T11:04:41.957145-08:00,2074.0,10.843921,10843.921 +3699,2025-03-07T11:04:52.794628-08:00,2063.0,10.837483,10837.483 +3700,2025-03-07T11:05:03.629821-08:00,2071.0,10.835193,10835.193 +3701,2025-03-07T11:05:14.468075-08:00,2064.0,10.838254,10838.254 +3702,2025-03-07T11:05:25.304899-08:00,2069.0,10.836824,10836.824 +3703,2025-03-07T11:05:36.193904-08:00,2031.0,10.889005,10889.005 +3704,2025-03-07T11:05:47.028790-08:00,2062.0,10.834886,10834.886 +3705,2025-03-07T11:05:57.864677-08:00,2034.0,10.835887,10835.887 +3706,2025-03-07T11:06:08.700025-08:00,2023.0,10.835348,10835.348 +3707,2025-03-07T11:06:19.537566-08:00,2047.0,10.837541,10837.541 +3708,2025-03-07T11:06:30.380651-08:00,2065.0,10.843085,10843.085 +3709,2025-03-07T11:06:41.214660-08:00,1999.0,10.834009,10834.009 +3710,2025-03-07T11:06:52.055070-08:00,2047.0,10.84041,10840.41 +3711,2025-03-07T11:07:02.900788-08:00,2013.0,10.845718,10845.718 +3712,2025-03-07T11:07:13.731766-08:00,2032.0,10.830978,10830.978 +3713,2025-03-07T11:07:24.573707-08:00,2066.0,10.841941,10841.941 +3714,2025-03-07T11:07:35.407440-08:00,2034.0,10.833733,10833.733 +3715,2025-03-07T11:07:46.237649-08:00,2000.0,10.830209,10830.209 +3716,2025-03-07T11:07:57.075676-08:00,1987.0,10.838027,10838.027 +3717,2025-03-07T11:08:07.914771-08:00,1997.0,10.839095,10839.095 +3718,2025-03-07T11:08:18.760647-08:00,2046.0,10.845876,10845.876 +3719,2025-03-07T11:08:29.602021-08:00,2027.0,10.841374,10841.374 +3720,2025-03-07T11:08:40.442077-08:00,2036.0,10.840056,10840.056 +3721,2025-03-07T11:08:51.282651-08:00,2064.0,10.840574,10840.574 +3722,2025-03-07T11:09:02.119884-08:00,2021.0,10.837233,10837.233 +3723,2025-03-07T11:09:12.960460-08:00,2064.0,10.840576,10840.576 +3724,2025-03-07T11:09:23.792652-08:00,2000.0,10.832192,10832.192 +3725,2025-03-07T11:09:34.634714-08:00,2047.0,10.842062,10842.062 +3726,2025-03-07T11:09:45.467921-08:00,2015.0,10.833207,10833.207 +3727,2025-03-07T11:09:56.305969-08:00,1968.0,10.838048,10838.048 +3728,2025-03-07T11:10:07.129967-08:00,2029.0,10.823998,10823.998 +3729,2025-03-07T11:10:17.966628-08:00,2021.0,10.836661,10836.661 +3730,2025-03-07T11:10:28.795046-08:00,2047.0,10.828418,10828.418 +3731,2025-03-07T11:10:39.634460-08:00,2042.0,10.839414,10839.414 +3732,2025-03-07T11:10:50.477650-08:00,2043.0,10.84319,10843.19 +3733,2025-03-07T11:11:01.314878-08:00,1984.0,10.837228,10837.228 +3734,2025-03-07T11:11:12.143073-08:00,2017.0,10.828195,10828.195 +3735,2025-03-07T11:11:22.988645-08:00,2031.0,10.845572,10845.572 +3736,2025-03-07T11:11:33.829700-08:00,2003.0,10.841055,10841.055 +3737,2025-03-07T11:11:44.673834-08:00,2047.0,10.844134,10844.134 +3738,2025-03-07T11:11:55.504652-08:00,2003.0,10.830818,10830.818 +3739,2025-03-07T11:12:06.336647-08:00,1989.0,10.831995,10831.995 +3740,2025-03-07T11:12:17.179972-08:00,2042.0,10.843325,10843.325 +3741,2025-03-07T11:12:28.011885-08:00,2057.0,10.831913,10831.913 +3742,2025-03-07T11:12:38.854701-08:00,2014.0,10.842816,10842.816 +3743,2025-03-07T11:12:49.691970-08:00,2054.0,10.837269,10837.269 +3744,2025-03-07T11:13:00.518884-08:00,1983.0,10.826914,10826.914 +3745,2025-03-07T11:13:11.355915-08:00,2060.0,10.837031,10837.031 +3746,2025-03-07T11:13:22.192727-08:00,2054.0,10.836812,10836.812 +3747,2025-03-07T11:13:33.035784-08:00,2005.0,10.843057,10843.057 +3748,2025-03-07T11:13:43.863151-08:00,2025.0,10.827367,10827.367 +3749,2025-03-07T11:13:54.698699-08:00,2058.0,10.835548,10835.548 +3750,2025-03-07T11:14:05.528845-08:00,2010.0,10.830146,10830.146 +3751,2025-03-07T11:14:16.362816-08:00,2035.0,10.833971,10833.971 +3752,2025-03-07T11:14:27.208651-08:00,2059.0,10.845835,10845.835 +3753,2025-03-07T11:14:38.049369-08:00,2055.0,10.840718,10840.718 +3754,2025-03-07T11:14:48.881191-08:00,2046.0,10.831822,10831.822 +3755,2025-03-07T11:14:59.719134-08:00,1994.0,10.837943,10837.943 +3756,2025-03-07T11:15:10.552743-08:00,2058.0,10.833609,10833.609 +3757,2025-03-07T11:15:21.386672-08:00,2003.0,10.833929,10833.929 +3758,2025-03-07T11:15:32.216955-08:00,2058.0,10.830283,10830.283 +3759,2025-03-07T11:15:43.050005-08:00,2032.0,10.83305,10833.05 +3760,2025-03-07T11:15:53.881876-08:00,2056.0,10.831871,10831.871 +3761,2025-03-07T11:16:04.713988-08:00,2000.0,10.832112,10832.112 +3762,2025-03-07T11:16:15.555694-08:00,1991.0,10.841706,10841.706 +3763,2025-03-07T11:16:26.386137-08:00,2055.0,10.830443,10830.443 +3764,2025-03-07T11:16:37.226853-08:00,2057.0,10.840716,10840.716 +3765,2025-03-07T11:16:48.052775-08:00,2047.0,10.825922,10825.922 +3766,2025-03-07T11:16:58.895704-08:00,2035.0,10.842929,10842.929 +3767,2025-03-07T11:17:09.727699-08:00,2055.0,10.831995,10831.995 +3768,2025-03-07T11:17:20.569773-08:00,2041.0,10.842074,10842.074 +3769,2025-03-07T11:17:31.402673-08:00,2047.0,10.8329,10832.9 +3770,2025-03-07T11:17:42.245264-08:00,1968.0,10.842591,10842.591 +3771,2025-03-07T11:17:53.086695-08:00,2021.0,10.841431,10841.431 +3772,2025-03-07T11:18:03.915255-08:00,2054.0,10.82856,10828.56 +3773,2025-03-07T11:18:14.763833-08:00,2047.0,10.848578,10848.578 +3774,2025-03-07T11:18:25.593940-08:00,1968.0,10.830107,10830.107 +3775,2025-03-07T11:18:36.438056-08:00,1968.0,10.844116,10844.116 +3776,2025-03-07T11:18:47.273914-08:00,2047.0,10.835858,10835.858 +3777,2025-03-07T11:18:58.122240-08:00,1962.0,10.848326,10848.326 +3778,2025-03-07T11:19:08.956724-08:00,1985.0,10.834484,10834.484 +3779,2025-03-07T11:19:19.789974-08:00,1968.0,10.83325,10833.25 +3780,2025-03-07T11:19:30.631258-08:00,2018.0,10.841284,10841.284 +3781,2025-03-07T11:19:41.463702-08:00,2000.0,10.832444,10832.444 +3782,2025-03-07T11:19:52.311973-08:00,2019.0,10.848271,10848.271 +3783,2025-03-07T11:20:03.141862-08:00,2043.0,10.829889,10829.889 +3784,2025-03-07T11:20:13.989694-08:00,2043.0,10.847832,10847.832 +3785,2025-03-07T11:20:24.821656-08:00,2003.0,10.831962,10831.962 +3786,2025-03-07T11:20:35.667035-08:00,2037.0,10.845379,10845.379 +3787,2025-03-07T11:20:46.502905-08:00,2005.0,10.83587,10835.87 +3788,2025-03-07T11:20:57.348655-08:00,2014.0,10.84575,10845.75 +3789,2025-03-07T11:21:08.180971-08:00,1996.0,10.832316,10832.316 +3790,2025-03-07T11:21:19.026356-08:00,2043.0,10.845385,10845.385 +3791,2025-03-07T11:21:29.857654-08:00,2044.0,10.831298,10831.298 +3792,2025-03-07T11:21:40.702645-08:00,1979.0,10.844991,10844.991 +3793,2025-03-07T11:21:51.535702-08:00,2038.0,10.833057,10833.057 +3794,2025-03-07T11:22:02.377989-08:00,2041.0,10.842287,10842.287 +3795,2025-03-07T11:22:13.209663-08:00,2034.0,10.831674,10831.674 +3796,2025-03-07T11:22:24.045131-08:00,2042.0,10.835468,10835.468 +3797,2025-03-07T11:22:34.881699-08:00,2041.0,10.836568,10836.568 +3798,2025-03-07T11:22:45.725655-08:00,2026.0,10.843956,10843.956 +3799,2025-03-07T11:22:56.557689-08:00,1989.0,10.832034,10832.034 +3800,2025-03-07T11:23:07.395651-08:00,2041.0,10.837962,10837.962 +3801,2025-03-07T11:23:18.232867-08:00,2000.0,10.837216,10837.216 +3802,2025-03-07T11:23:29.076518-08:00,2037.0,10.843651,10843.651 +3803,2025-03-07T11:23:39.916653-08:00,1968.0,10.840135,10840.135 +3804,2025-03-07T11:23:50.761905-08:00,2000.0,10.845252,10845.252 +3805,2025-03-07T11:24:01.592986-08:00,1951.0,10.831081,10831.081 +3806,2025-03-07T11:24:12.440212-08:00,1998.0,10.847226,10847.226 +3807,2025-03-07T11:24:23.279994-08:00,2001.0,10.839782,10839.782 +3808,2025-03-07T11:24:34.122026-08:00,2039.0,10.842032,10842.032 +3809,2025-03-07T11:24:44.959996-08:00,2016.0,10.83797,10837.97 +3810,2025-03-07T11:24:55.797892-08:00,2022.0,10.837896,10837.896 +3811,2025-03-07T11:25:06.638655-08:00,2032.0,10.840763,10840.763 +3812,2025-03-07T11:25:17.478693-08:00,2042.0,10.840038,10840.038 +3813,2025-03-07T11:25:28.322935-08:00,1978.0,10.844242,10844.242 +3814,2025-03-07T11:25:39.162040-08:00,1980.0,10.839105,10839.105 +3815,2025-03-07T11:25:50.001972-08:00,2042.0,10.839932,10839.932 +3816,2025-03-07T11:26:00.845651-08:00,2039.0,10.843679,10843.679 +3817,2025-03-07T11:26:11.682864-08:00,1986.0,10.837213,10837.213 +3818,2025-03-07T11:26:22.529793-08:00,1999.0,10.846929,10846.929 +3819,2025-03-07T11:26:33.367881-08:00,2014.0,10.838088,10838.088 +3820,2025-03-07T11:26:44.211700-08:00,1980.0,10.843819,10843.819 +3821,2025-03-07T11:26:55.051078-08:00,1985.0,10.839378,10839.378 +3822,2025-03-07T11:27:05.890431-08:00,1991.0,10.839353,10839.353 +3823,2025-03-07T11:27:16.719912-08:00,1991.0,10.829481,10829.481 +3824,2025-03-07T11:27:27.552654-08:00,2034.0,10.832742,10832.742 +3825,2025-03-07T11:27:38.387918-08:00,2042.0,10.835264,10835.264 +3826,2025-03-07T11:27:49.226521-08:00,1970.0,10.838603,10838.603 +3827,2025-03-07T11:28:00.073626-08:00,1961.0,10.847105,10847.105 +3828,2025-03-07T11:28:10.910133-08:00,2039.0,10.836507,10836.507 +3829,2025-03-07T11:28:21.745824-08:00,1969.0,10.835691,10835.691 +3830,2025-03-07T11:28:32.581633-08:00,2000.0,10.835809,10835.809 +3831,2025-03-07T11:28:43.418843-08:00,2001.0,10.83721,10837.21 +3832,2025-03-07T11:28:54.254952-08:00,2003.0,10.836109,10836.109 +3833,2025-03-07T11:29:05.101932-08:00,2001.0,10.84698,10846.98 +3834,2025-03-07T11:29:15.936276-08:00,1963.0,10.834344,10834.344 +3835,2025-03-07T11:29:26.773044-08:00,2005.0,10.836768,10836.768 +3836,2025-03-07T11:29:37.615416-08:00,2000.0,10.842372,10842.372 +3837,2025-03-07T11:29:48.445751-08:00,2000.0,10.830335,10830.335 +3838,2025-03-07T11:29:59.291651-08:00,2038.0,10.8459,10845.9 +3839,2025-03-07T11:30:10.122690-08:00,1984.0,10.831039,10831.039 +3840,2025-03-07T11:30:20.972976-08:00,1968.0,10.850286,10850.286 +3841,2025-03-07T11:30:31.809961-08:00,1957.0,10.836985,10836.985 +3842,2025-03-07T11:30:42.639893-08:00,1998.0,10.829932,10829.932 +3843,2025-03-07T11:30:53.477653-08:00,2039.0,10.83776,10837.76 +3844,2025-03-07T11:31:04.309216-08:00,2000.0,10.831563,10831.563 +3845,2025-03-07T11:31:15.140646-08:00,2001.0,10.83143,10831.43 +3846,2025-03-07T11:31:25.979949-08:00,1955.0,10.839303,10839.303 +3847,2025-03-07T11:31:36.827705-08:00,2032.0,10.847756,10847.756 +3848,2025-03-07T11:31:47.658648-08:00,2026.0,10.830943,10830.943 +3849,2025-03-07T11:31:58.507653-08:00,2001.0,10.849005,10849.005 +3850,2025-03-07T11:32:09.342897-08:00,1997.0,10.835244,10835.244 +3851,2025-03-07T11:32:20.193789-08:00,1975.0,10.850892,10850.892 +3852,2025-03-07T11:32:31.025936-08:00,2002.0,10.832147,10832.147 +3853,2025-03-07T11:32:41.866701-08:00,2037.0,10.840765,10840.765 +3854,2025-03-07T11:32:52.712969-08:00,2035.0,10.846268,10846.268 +3855,2025-03-07T11:33:03.551174-08:00,1959.0,10.838205,10838.205 +3856,2025-03-07T11:33:14.386645-08:00,2035.0,10.835471,10835.471 +3857,2025-03-07T11:33:25.227649-08:00,2026.0,10.841004,10841.004 +3858,2025-03-07T11:33:36.060258-08:00,2020.0,10.832609,10832.609 +3859,2025-03-07T11:33:46.894873-08:00,1949.0,10.834615,10834.615 +3860,2025-03-07T11:33:57.730907-08:00,1965.0,10.836034,10836.034 +3861,2025-03-07T11:34:08.565629-08:00,1977.0,10.834722,10834.722 +3862,2025-03-07T11:34:19.407849-08:00,1994.0,10.84222,10842.22 +3863,2025-03-07T11:34:30.241649-08:00,2032.0,10.8338,10833.8 +3864,2025-03-07T11:34:41.081904-08:00,1995.0,10.840255,10840.255 +3865,2025-03-07T11:34:51.910844-08:00,1990.0,10.82894,10828.94 +3866,2025-03-07T11:35:02.754996-08:00,1983.0,10.844152,10844.152 +3867,2025-03-07T11:35:13.602114-08:00,2032.0,10.847118,10847.118 +3868,2025-03-07T11:35:24.440647-08:00,2010.0,10.838533,10838.533 +3869,2025-03-07T11:35:35.273654-08:00,2028.0,10.833007,10833.007 +3870,2025-03-07T11:35:46.108994-08:00,2032.0,10.83534,10835.34 +3871,2025-03-07T11:35:56.948843-08:00,2000.0,10.839849,10839.849 +3872,2025-03-07T11:36:07.780298-08:00,1954.0,10.831455,10831.455 +3873,2025-03-07T11:36:18.618915-08:00,1968.0,10.838617,10838.617 +3874,2025-03-07T11:36:29.449906-08:00,2016.0,10.830991,10830.991 +3875,2025-03-07T11:36:40.286657-08:00,1974.0,10.836751,10836.751 +3876,2025-03-07T11:36:42.988354-08:00,2021.0,2.701697,2701.697 +3877,2025-03-07T11:36:51.129007-08:00,2033.0,8.140653,8140.653 +3878,2025-03-07T11:37:01.968870-08:00,2030.0,10.839863,10839.863 +3879,2025-03-07T11:37:12.805024-08:00,2021.0,10.836154,10836.154 +3880,2025-03-07T11:37:23.650854-08:00,2009.0,10.84583,10845.83 +3881,2025-03-07T11:37:34.480902-08:00,1984.0,10.830048,10830.048 +3882,2025-03-07T11:37:45.323646-08:00,2029.0,10.842744,10842.744 +3883,2025-03-07T11:37:56.158988-08:00,1970.0,10.835342,10835.342 +3884,2025-03-07T11:38:06.997904-08:00,2032.0,10.838916,10838.916 +3885,2025-03-07T11:38:17.844634-08:00,2010.0,10.84673,10846.73 +3886,2025-03-07T11:38:28.683023-08:00,1984.0,10.838389,10838.389 +3887,2025-03-07T11:38:39.515219-08:00,2032.0,10.832196,10832.196 +3888,2025-03-07T11:38:50.349623-08:00,1953.0,10.834404,10834.404 +3889,2025-03-07T11:39:01.193645-08:00,1987.0,10.844022,10844.022 +3890,2025-03-07T11:39:12.033627-08:00,1998.0,10.839982,10839.982 +3891,2025-03-07T11:39:22.864815-08:00,1951.0,10.831188,10831.188 +3892,2025-03-07T11:39:33.699760-08:00,1962.0,10.834945,10834.945 +3893,2025-03-07T11:39:44.537644-08:00,2028.0,10.837884,10837.884 +3894,2025-03-07T11:39:55.372652-08:00,2032.0,10.835008,10835.008 +3895,2025-03-07T11:40:06.215659-08:00,2021.0,10.843007,10843.007 +3896,2025-03-07T11:40:17.058401-08:00,2000.0,10.842742,10842.742 +3897,2025-03-07T11:40:27.895656-08:00,1999.0,10.837255,10837.255 +3898,2025-03-07T11:40:38.723091-08:00,1939.0,10.827435,10827.435 +3899,2025-03-07T11:40:49.552710-08:00,2031.0,10.829619,10829.619 +3900,2025-03-07T11:41:00.389907-08:00,1988.0,10.837197,10837.197 +3901,2025-03-07T11:41:11.226700-08:00,1950.0,10.836793,10836.793 +3902,2025-03-07T11:41:22.064869-08:00,1969.0,10.838169,10838.169 +3903,2025-03-07T11:41:32.910853-08:00,1999.0,10.845984,10845.984 +3904,2025-03-07T11:41:43.746133-08:00,2006.0,10.83528,10835.28 +3905,2025-03-07T11:41:54.577649-08:00,1991.0,10.831516,10831.516 +3906,2025-03-07T11:42:05.408875-08:00,2031.0,10.831226,10831.226 +3907,2025-03-07T11:42:16.246713-08:00,2027.0,10.837838,10837.838 +3908,2025-03-07T11:42:27.085655-08:00,1972.0,10.838942,10838.942 +3909,2025-03-07T11:42:37.914935-08:00,1991.0,10.82928,10829.28 +3910,2025-03-07T11:42:48.750955-08:00,1987.0,10.83602,10836.02 +3911,2025-03-07T11:42:59.592647-08:00,2030.0,10.841692,10841.692 +3912,2025-03-07T11:43:10.428870-08:00,1958.0,10.836223,10836.223 +3913,2025-03-07T11:43:21.259858-08:00,1999.0,10.830988,10830.988 +3914,2025-03-07T11:43:32.097824-08:00,1979.0,10.837966,10837.966 +3915,2025-03-07T11:43:42.931712-08:00,2030.0,10.833888,10833.888 +3916,2025-03-07T11:43:53.767655-08:00,1947.0,10.835943,10835.943 +3917,2025-03-07T11:44:04.608648-08:00,1959.0,10.840993,10840.993 +3918,2025-03-07T11:44:15.433197-08:00,1974.0,10.824549,10824.549 +3919,2025-03-07T11:44:26.267650-08:00,2000.0,10.834453,10834.453 +3920,2025-03-07T11:44:37.104721-08:00,2017.0,10.837071,10837.071 +3921,2025-03-07T11:44:47.940716-08:00,2002.0,10.835995,10835.995 +3922,2025-03-07T11:44:58.776651-08:00,1945.0,10.835935,10835.935 +3923,2025-03-07T11:45:09.607656-08:00,1984.0,10.831005,10831.005 +3924,2025-03-07T11:45:20.441026-08:00,1971.0,10.83337,10833.37 +3925,2025-03-07T11:45:31.274617-08:00,2028.0,10.833591,10833.591 +3926,2025-03-07T11:45:42.105647-08:00,1967.0,10.83103,10831.03 +3927,2025-03-07T11:45:52.931612-08:00,2022.0,10.825965,10825.965 +3928,2025-03-07T11:46:03.770006-08:00,2021.0,10.838394,10838.394 +3929,2025-03-07T11:46:14.600003-08:00,2029.0,10.829997,10829.997 +3930,2025-03-07T11:46:25.437758-08:00,1947.0,10.837755,10837.755 +3931,2025-03-07T11:46:36.274020-08:00,2025.0,10.836262,10836.262 +3932,2025-03-07T11:46:47.096953-08:00,2030.0,10.822933,10822.933 +3933,2025-03-07T11:46:57.929636-08:00,2027.0,10.832683,10832.683 +3934,2025-03-07T11:47:08.757455-08:00,1965.0,10.827819,10827.819 +3935,2025-03-07T11:47:19.589789-08:00,1985.0,10.832334,10832.334 +3936,2025-03-07T11:47:30.410857-08:00,2025.0,10.821068,10821.068 +3937,2025-03-07T11:47:41.243690-08:00,1968.0,10.832833,10832.833 +3938,2025-03-07T11:47:52.080412-08:00,2026.0,10.836722,10836.722 +3939,2025-03-07T11:48:02.910633-08:00,1986.0,10.830221,10830.221 +3940,2025-03-07T11:48:13.744986-08:00,2019.0,10.834353,10834.353 +3941,2025-03-07T11:48:24.568089-08:00,2026.0,10.823103,10823.103 +3942,2025-03-07T11:48:35.409648-08:00,2000.0,10.841559,10841.559 +3943,2025-03-07T11:48:46.231794-08:00,1966.0,10.822146,10822.146 +3944,2025-03-07T11:48:57.060659-08:00,2027.0,10.828865,10828.865 +3945,2025-03-07T11:49:07.897698-08:00,1984.0,10.837039,10837.039 +3946,2025-03-07T11:49:18.723651-08:00,1947.0,10.825953,10825.953 +3947,2025-03-07T11:49:29.547655-08:00,2018.0,10.824004,10824.004 +3948,2025-03-07T11:49:40.369957-08:00,1973.0,10.822302,10822.302 +3949,2025-03-07T11:49:51.205899-08:00,2019.0,10.835942,10835.942 +3950,2025-03-07T11:50:02.038691-08:00,1985.0,10.832792,10832.792 +3951,2025-03-07T11:50:12.863650-08:00,1946.0,10.824959,10824.959 +3952,2025-03-07T11:50:23.696652-08:00,2014.0,10.833002,10833.002 +3953,2025-03-07T11:50:34.522802-08:00,1988.0,10.82615,10826.15 +3954,2025-03-07T11:50:45.359941-08:00,2021.0,10.837139,10837.139 +3955,2025-03-07T11:50:56.191963-08:00,2018.0,10.832022,10832.022 +3956,2025-03-07T11:51:07.021422-08:00,1997.0,10.829459,10829.459 +3957,2025-03-07T11:51:17.843820-08:00,1993.0,10.822398,10822.398 +3958,2025-03-07T11:51:28.675216-08:00,1966.0,10.831396,10831.396 +3959,2025-03-07T11:51:39.511709-08:00,2020.0,10.836493,10836.493 +3960,2025-03-07T11:51:50.341648-08:00,1979.0,10.829939,10829.939 +3961,2025-03-07T11:52:01.164675-08:00,2000.0,10.823027,10823.027 +3962,2025-03-07T11:52:11.996841-08:00,2021.0,10.832166,10832.166 +3963,2025-03-07T11:52:22.827028-08:00,1995.0,10.830187,10830.187 +3964,2025-03-07T11:52:33.652651-08:00,2001.0,10.825623,10825.623 +3965,2025-03-07T11:52:44.484957-08:00,1983.0,10.832306,10832.306 +3966,2025-03-07T11:52:55.305641-08:00,1943.0,10.820684,10820.684 +3967,2025-03-07T11:53:06.137776-08:00,1981.0,10.832135,10832.135 +3968,2025-03-07T11:53:16.961709-08:00,1966.0,10.823933,10823.933 +3969,2025-03-07T11:53:27.796885-08:00,1927.0,10.835176,10835.176 +3970,2025-03-07T11:53:38.625757-08:00,1979.0,10.828872,10828.872 +3971,2025-03-07T11:53:49.458555-08:00,1999.0,10.832798,10832.798 +3972,2025-03-07T11:54:00.295495-08:00,1984.0,10.83694,10836.94 +3973,2025-03-07T11:54:11.134850-08:00,2000.0,10.839355,10839.355 +3974,2025-03-07T11:54:21.955711-08:00,2021.0,10.820861,10820.861 +3975,2025-03-07T11:54:32.791719-08:00,2019.0,10.836008,10836.008 +3976,2025-03-07T11:54:43.630209-08:00,2010.0,10.83849,10838.49 +3977,2025-03-07T11:54:54.454898-08:00,2003.0,10.824689,10824.689 +3978,2025-03-07T11:55:05.292772-08:00,2015.0,10.837874,10837.874 +3979,2025-03-07T11:55:16.118650-08:00,2021.0,10.825878,10825.878 +3980,2025-03-07T11:55:26.952199-08:00,2016.0,10.833549,10833.549 +3981,2025-03-07T11:55:37.790981-08:00,2007.0,10.838782,10838.782 +3982,2025-03-07T11:55:48.619647-08:00,1981.0,10.828666,10828.666 +3983,2025-03-07T11:55:59.446806-08:00,2017.0,10.827159,10827.159 +3984,2025-03-07T11:56:10.287792-08:00,1973.0,10.840986,10840.986 +3985,2025-03-07T11:56:21.109638-08:00,1968.0,10.821846,10821.846 +3986,2025-03-07T11:56:31.937747-08:00,2016.0,10.828109,10828.109 +3987,2025-03-07T11:56:42.773952-08:00,1975.0,10.836205,10836.205 +3988,2025-03-07T11:56:53.599156-08:00,2000.0,10.825204,10825.204 +3989,2025-03-07T11:57:04.430990-08:00,1941.0,10.831834,10831.834 +3990,2025-03-07T11:57:15.268653-08:00,1936.0,10.837663,10837.663 +3991,2025-03-07T11:57:26.102186-08:00,1968.0,10.833533,10833.533 +3992,2025-03-07T11:57:36.931986-08:00,1980.0,10.8298,10829.8 +3993,2025-03-07T11:57:47.761634-08:00,1979.0,10.829648,10829.648 +3994,2025-03-07T11:57:58.594132-08:00,2010.0,10.832498,10832.498 +3995,2025-03-07T11:58:09.413846-08:00,1927.0,10.819714,10819.714 +3996,2025-03-07T11:58:20.252974-08:00,2004.0,10.839128,10839.128 +3997,2025-03-07T11:58:31.078876-08:00,2014.0,10.825902,10825.902 +3998,2025-03-07T11:58:41.916645-08:00,1975.0,10.837769,10837.769 +3999,2025-03-07T11:58:52.738653-08:00,2001.0,10.822008,10822.008 +4000,2025-03-07T11:59:03.568521-08:00,1982.0,10.829868,10829.868 +4001,2025-03-07T11:59:14.407656-08:00,1951.0,10.839135,10839.135 +4002,2025-03-07T11:59:25.237257-08:00,2003.0,10.829601,10829.601 +4003,2025-03-07T11:59:36.067653-08:00,1987.0,10.830396,10830.396 +4004,2025-03-07T11:59:46.901657-08:00,1957.0,10.834004,10834.004 +4005,2025-03-07T11:59:57.730689-08:00,1977.0,10.829032,10829.032 +4006,2025-03-07T12:00:08.567649-08:00,1947.0,10.83696,10836.96 +4007,2025-03-07T12:00:19.396560-08:00,2013.0,10.828911,10828.911 +4008,2025-03-07T12:00:30.221704-08:00,1972.0,10.825144,10825.144 +4009,2025-03-07T12:00:41.054974-08:00,1977.0,10.83327,10833.27 +4010,2025-03-07T12:00:51.879649-08:00,2016.0,10.824675,10824.675 +4011,2025-03-07T12:01:02.708635-08:00,1971.0,10.828986,10828.986 +4012,2025-03-07T12:01:13.543125-08:00,2014.0,10.83449,10834.49 +4013,2025-03-07T12:01:24.380798-08:00,1955.0,10.837673,10837.673 +4014,2025-03-07T12:01:35.210652-08:00,2002.0,10.829854,10829.854 +4015,2025-03-07T12:01:46.044828-08:00,2015.0,10.834176,10834.176 +4016,2025-03-07T12:01:56.870655-08:00,2000.0,10.825827,10825.827 +4017,2025-03-07T12:02:07.699972-08:00,2005.0,10.829317,10829.317 +4018,2025-03-07T12:02:18.532807-08:00,1984.0,10.832835,10832.835 +4019,2025-03-07T12:02:29.364653-08:00,1979.0,10.831846,10831.846 +4020,2025-03-07T12:02:40.200000-08:00,1943.0,10.835347,10835.347 +4021,2025-03-07T12:02:51.022929-08:00,2000.0,10.822929,10822.929 +4022,2025-03-07T12:03:01.855430-08:00,1972.0,10.832501,10832.501 +4023,2025-03-07T12:03:12.692780-08:00,2009.0,10.83735,10837.35 +4024,2025-03-07T12:03:23.517627-08:00,1994.0,10.824847,10824.847 +4025,2025-03-07T12:03:34.349654-08:00,2000.0,10.832027,10832.027 +4026,2025-03-07T12:03:45.184905-08:00,1958.0,10.835251,10835.251 +4027,2025-03-07T12:03:56.008982-08:00,1995.0,10.824077,10824.077 +4028,2025-03-07T12:04:06.840016-08:00,1984.0,10.831034,10831.034 +4029,2025-03-07T12:04:17.670628-08:00,1963.0,10.830612,10830.612 +4030,2025-03-07T12:04:28.506656-08:00,2010.0,10.836028,10836.028 +4031,2025-03-07T12:04:39.330655-08:00,1947.0,10.823999,10823.999 +4032,2025-03-07T12:04:50.166662-08:00,1975.0,10.836007,10836.007 +4033,2025-03-07T12:05:00.998046-08:00,1936.0,10.831384,10831.384 +4034,2025-03-07T12:05:11.823779-08:00,2011.0,10.825733,10825.733 +4035,2025-03-07T12:05:22.660951-08:00,1968.0,10.837172,10837.172 +4036,2025-03-07T12:05:33.526584-08:00,1998.0,10.865633,10865.633 +4037,2025-03-07T12:05:44.351887-08:00,1984.0,10.825303,10825.303 +4038,2025-03-07T12:05:55.181585-08:00,2002.0,10.829698,10829.698 +4039,2025-03-07T12:06:06.012898-08:00,2011.0,10.831313,10831.313 +4040,2025-03-07T12:06:16.853919-08:00,2000.0,10.841021,10841.021 +4041,2025-03-07T12:06:27.684091-08:00,2007.0,10.830172,10830.172 +4042,2025-03-07T12:06:38.515714-08:00,1985.0,10.831623,10831.623 +4043,2025-03-07T12:06:49.342781-08:00,2011.0,10.827067,10827.067 +4044,2025-03-07T12:07:00.168914-08:00,2007.0,10.826133,10826.133 +4045,2025-03-07T12:07:10.991590-08:00,1999.0,10.822676,10822.676 +4046,2025-03-07T12:07:21.825096-08:00,2003.0,10.833506,10833.506 +4047,2025-03-07T12:07:32.650863-08:00,2003.0,10.825767,10825.767 +4048,2025-03-07T12:07:43.485085-08:00,1987.0,10.834222,10834.222 +4049,2025-03-07T12:07:54.315589-08:00,1997.0,10.830504,10830.504 +4050,2025-03-07T12:08:05.138569-08:00,1970.0,10.82298,10822.98 +4051,2025-03-07T12:08:15.966844-08:00,1987.0,10.828275,10828.275 +4052,2025-03-07T12:08:26.794907-08:00,2005.0,10.828063,10828.063 +4053,2025-03-07T12:08:37.619595-08:00,2001.0,10.824688,10824.688 +4054,2025-03-07T12:08:48.456451-08:00,1968.0,10.836856,10836.856 +4055,2025-03-07T12:08:59.282590-08:00,1936.0,10.826139,10826.139 +4056,2025-03-07T12:09:10.108038-08:00,2006.0,10.825448,10825.448 +4057,2025-03-07T12:09:20.935855-08:00,1942.0,10.827817,10827.817 +4058,2025-03-07T12:09:31.769433-08:00,1974.0,10.833578,10833.578 +4059,2025-03-07T12:09:42.596591-08:00,1973.0,10.827158,10827.158 +4060,2025-03-07T12:09:53.435944-08:00,1953.0,10.839353,10839.353 +4061,2025-03-07T12:10:04.261337-08:00,1950.0,10.825393,10825.393 +4062,2025-03-07T12:10:15.081580-08:00,1997.0,10.820243,10820.243 +4063,2025-03-07T12:10:25.914574-08:00,1978.0,10.832994,10832.994 +4064,2025-03-07T12:10:36.745084-08:00,1949.0,10.83051,10830.51 +4065,2025-03-07T12:10:47.577567-08:00,1917.0,10.832483,10832.483 +4066,2025-03-07T12:10:58.396773-08:00,2000.0,10.819206,10819.206 +4067,2025-03-07T12:11:09.231828-08:00,2002.0,10.835055,10835.055 +4068,2025-03-07T12:11:20.065923-08:00,1999.0,10.834095,10834.095 +4069,2025-03-07T12:11:30.893868-08:00,1936.0,10.827945,10827.945 +4070,2025-03-07T12:11:41.724239-08:00,2006.0,10.830371,10830.371 +4071,2025-03-07T12:11:52.561587-08:00,1983.0,10.837348,10837.348 +4072,2025-03-07T12:12:03.388719-08:00,1992.0,10.827132,10827.132 +4073,2025-03-07T12:12:14.225037-08:00,1950.0,10.836318,10836.318 +4074,2025-03-07T12:12:25.056976-08:00,2003.0,10.831939,10831.939 +4075,2025-03-07T12:12:35.888406-08:00,1965.0,10.83143,10831.43 +4076,2025-03-07T12:12:46.717728-08:00,1915.0,10.829322,10829.322 +4077,2025-03-07T12:12:57.551905-08:00,1983.0,10.834177,10834.177 +4078,2025-03-07T12:13:08.382588-08:00,1946.0,10.830683,10830.683 +4079,2025-03-07T12:13:19.215233-08:00,2000.0,10.832645,10832.645 +4080,2025-03-07T12:13:30.045587-08:00,1968.0,10.830354,10830.354 +4081,2025-03-07T12:13:40.876590-08:00,1941.0,10.831003,10831.003 +4082,2025-03-07T12:13:51.710616-08:00,1990.0,10.834026,10834.026 +4083,2025-03-07T12:14:02.552653-08:00,1918.0,10.842037,10842.037 +4084,2025-03-07T12:14:13.386635-08:00,1975.0,10.833982,10833.982 +4085,2025-03-07T12:14:24.221565-08:00,2003.0,10.83493,10834.93 +4086,2025-03-07T12:14:35.053845-08:00,1932.0,10.83228,10832.28 +4087,2025-03-07T12:14:45.881970-08:00,1946.0,10.828125,10828.125 +4088,2025-03-07T12:14:56.721807-08:00,1950.0,10.839837,10839.837 +4089,2025-03-07T12:15:07.557164-08:00,1939.0,10.835357,10835.357 +4090,2025-03-07T12:15:18.378390-08:00,1943.0,10.821226,10821.226 +4091,2025-03-07T12:15:29.214590-08:00,1958.0,10.8362,10836.2 +4092,2025-03-07T12:15:40.051621-08:00,1998.0,10.837031,10837.031 +4093,2025-03-07T12:15:50.887088-08:00,1985.0,10.835467,10835.467 +4094,2025-03-07T12:16:01.728040-08:00,2000.0,10.840952,10840.952 +4095,2025-03-07T12:16:12.557580-08:00,1971.0,10.82954,10829.54 +4096,2025-03-07T12:16:23.394590-08:00,1927.0,10.83701,10837.01 +4097,2025-03-07T12:16:34.234056-08:00,2000.0,10.839466,10839.466 +4098,2025-03-07T12:16:45.070579-08:00,1963.0,10.836523,10836.523 +4099,2025-03-07T12:16:55.906832-08:00,2000.0,10.836253,10836.253 +4100,2025-03-07T12:17:06.740100-08:00,1921.0,10.833268,10833.268 +4101,2025-03-07T12:17:17.578567-08:00,1959.0,10.838467,10838.467 +4102,2025-03-07T12:17:28.410791-08:00,1985.0,10.832224,10832.224 +4103,2025-03-07T12:17:39.232991-08:00,1977.0,10.8222,10822.2 +4104,2025-03-07T12:17:50.077283-08:00,1981.0,10.844292,10844.292 +4105,2025-03-07T12:18:00.909300-08:00,1951.0,10.832017,10832.017 +4106,2025-03-07T12:18:11.734590-08:00,1995.0,10.82529,10825.29 +4107,2025-03-07T12:18:22.572888-08:00,2000.0,10.838298,10838.298 +4108,2025-03-07T12:18:33.413037-08:00,1974.0,10.840149,10840.149 +4109,2025-03-07T12:18:44.247603-08:00,2000.0,10.834566,10834.566 +4110,2025-03-07T12:18:55.079853-08:00,1973.0,10.83225,10832.25 +4111,2025-03-07T12:19:05.908582-08:00,1975.0,10.828729,10828.729 +4112,2025-03-07T12:19:16.743923-08:00,2000.0,10.835341,10835.341 +4113,2025-03-07T12:19:27.572730-08:00,2000.0,10.828807,10828.807 +4114,2025-03-07T12:19:38.415179-08:00,2000.0,10.842449,10842.449 +4115,2025-03-07T12:19:49.242627-08:00,1999.0,10.827448,10827.448 +4116,2025-03-07T12:20:00.080204-08:00,1967.0,10.837577,10837.577 +4117,2025-03-07T12:20:10.908934-08:00,1991.0,10.82873,10828.73 +4118,2025-03-07T12:20:21.746591-08:00,1923.0,10.837657,10837.657 +4119,2025-03-07T12:20:32.575878-08:00,1945.0,10.829287,10829.287 +4120,2025-03-07T12:20:43.406809-08:00,1963.0,10.830931,10830.931 +4121,2025-03-07T12:20:54.253712-08:00,1955.0,10.846903,10846.903 +4122,2025-03-07T12:21:05.082776-08:00,1949.0,10.829064,10829.064 +4123,2025-03-07T12:21:15.924793-08:00,1997.0,10.842017,10842.017 +4124,2025-03-07T12:21:26.755689-08:00,1945.0,10.830896,10830.896 +4125,2025-03-07T12:21:37.589079-08:00,1994.0,10.83339,10833.39 +4126,2025-03-07T12:21:48.418620-08:00,1919.0,10.829541,10829.541 +4127,2025-03-07T12:21:59.251921-08:00,1996.0,10.833301,10833.301 +4128,2025-03-07T12:22:10.078574-08:00,1997.0,10.826653,10826.653 +4129,2025-03-07T12:22:20.921595-08:00,1955.0,10.843021,10843.021 +4130,2025-03-07T12:22:31.763867-08:00,1983.0,10.842272,10842.272 +4131,2025-03-07T12:22:42.590568-08:00,1907.0,10.826701,10826.701 +4132,2025-03-07T12:22:53.431603-08:00,1955.0,10.841035,10841.035 +4133,2025-03-07T12:23:04.265632-08:00,1983.0,10.834029,10834.029 +4134,2025-03-07T12:23:15.106566-08:00,1983.0,10.840934,10840.934 +4135,2025-03-07T12:23:25.945681-08:00,1995.0,10.839115,10839.115 +4136,2025-03-07T12:23:36.783673-08:00,1943.0,10.837992,10837.992 +4137,2025-03-07T12:23:47.624567-08:00,1926.0,10.840894,10840.894 +4138,2025-03-07T12:23:58.462828-08:00,1994.0,10.838261,10838.261 +4139,2025-03-07T12:24:09.308831-08:00,1987.0,10.846003,10846.003 +4140,2025-03-07T12:24:20.133734-08:00,1995.0,10.824903,10824.903 +4141,2025-03-07T12:24:30.976587-08:00,1990.0,10.842853,10842.853 +4142,2025-03-07T12:24:41.821436-08:00,1963.0,10.844849,10844.849 +4143,2025-03-07T12:24:52.668828-08:00,1957.0,10.847392,10847.392 +4144,2025-03-07T12:25:03.515552-08:00,1950.0,10.846724,10846.724 +4145,2025-03-07T12:25:14.355302-08:00,1996.0,10.83975,10839.75 +4146,2025-03-07T12:25:25.199580-08:00,1911.0,10.844278,10844.278 +4147,2025-03-07T12:25:36.033912-08:00,1981.0,10.834332,10834.332 +4148,2025-03-07T12:25:46.880988-08:00,1994.0,10.847076,10847.076 +4149,2025-03-07T12:25:57.721580-08:00,1955.0,10.840592,10840.592 +4150,2025-03-07T12:26:08.575735-08:00,1910.0,10.854155,10854.155 +4151,2025-03-07T12:26:19.406713-08:00,1939.0,10.830978,10830.978 +4152,2025-03-07T12:26:30.260174-08:00,1975.0,10.853461,10853.461 +4153,2025-03-07T12:26:41.104310-08:00,1910.0,10.844136,10844.136 +4154,2025-03-07T12:26:51.950825-08:00,1964.0,10.846515,10846.515 +4155,2025-03-07T12:27:02.788565-08:00,1905.0,10.83774,10837.74 +4156,2025-03-07T12:27:13.621888-08:00,1971.0,10.833323,10833.323 +4157,2025-03-07T12:27:24.472903-08:00,1989.0,10.851015,10851.015 +4158,2025-03-07T12:27:35.315583-08:00,1951.0,10.84268,10842.68 +4159,2025-03-07T12:27:46.161582-08:00,1984.0,10.845999,10845.999 +4160,2025-03-07T12:27:57.006775-08:00,1948.0,10.845193,10845.193 +4161,2025-03-07T12:28:07.849203-08:00,1985.0,10.842428,10842.428 +4162,2025-03-07T12:28:18.697878-08:00,1994.0,10.848675,10848.675 +4163,2025-03-07T12:28:29.541805-08:00,1978.0,10.843927,10843.927 +4164,2025-03-07T12:28:40.384581-08:00,1915.0,10.842776,10842.776 +4165,2025-03-07T12:28:51.221590-08:00,1958.0,10.837009,10837.009 +4166,2025-03-07T12:29:02.070600-08:00,1958.0,10.84901,10849.01 +4167,2025-03-07T12:29:12.918898-08:00,1955.0,10.848298,10848.298 +4168,2025-03-07T12:29:23.763637-08:00,1939.0,10.844739,10844.739 +4169,2025-03-07T12:29:34.605885-08:00,1984.0,10.842248,10842.248 +4170,2025-03-07T12:29:45.448830-08:00,1968.0,10.842945,10842.945 +4171,2025-03-07T12:29:56.291942-08:00,1971.0,10.843112,10843.112 +4172,2025-03-07T12:30:07.129865-08:00,1959.0,10.837923,10837.923 +4173,2025-03-07T12:30:17.972104-08:00,1995.0,10.842239,10842.239 +4174,2025-03-07T12:30:28.826589-08:00,1963.0,10.854485,10854.485 +4175,2025-03-07T12:30:39.666849-08:00,1988.0,10.84026,10840.26 +4176,2025-03-07T12:30:50.506992-08:00,1911.0,10.840143,10840.143 +4177,2025-03-07T12:31:01.354057-08:00,1993.0,10.847065,10847.065 +4178,2025-03-07T12:31:12.197614-08:00,1982.0,10.843557,10843.557 +4179,2025-03-07T12:31:23.035623-08:00,1954.0,10.838009,10838.009 +4180,2025-03-07T12:31:33.875311-08:00,1936.0,10.839688,10839.688 +4181,2025-03-07T12:31:44.709585-08:00,1920.0,10.834274,10834.274 +4182,2025-03-07T12:31:55.559590-08:00,1966.0,10.850005,10850.005 +4183,2025-03-07T12:32:06.405630-08:00,1988.0,10.84604,10846.04 +4184,2025-03-07T12:32:17.249860-08:00,1990.0,10.84423,10844.23 +4185,2025-03-07T12:32:28.083031-08:00,1903.0,10.833171,10833.171 +4186,2025-03-07T12:32:38.926585-08:00,1941.0,10.843554,10843.554 +4187,2025-03-07T12:32:49.769589-08:00,1959.0,10.843004,10843.004 +4188,2025-03-07T12:33:00.612912-08:00,1949.0,10.843323,10843.323 +4189,2025-03-07T12:33:11.443587-08:00,1981.0,10.830675,10830.675 +4190,2025-03-07T12:33:22.292869-08:00,1969.0,10.849282,10849.282 +4191,2025-03-07T12:33:33.138718-08:00,1986.0,10.845849,10845.849 +4192,2025-03-07T12:33:43.971890-08:00,1911.0,10.833172,10833.172 +4193,2025-03-07T12:33:54.814777-08:00,1959.0,10.842887,10842.887 +4194,2025-03-07T12:34:05.658879-08:00,1981.0,10.844102,10844.102 +4195,2025-03-07T12:34:16.491178-08:00,1987.0,10.832299,10832.299 +4196,2025-03-07T12:34:27.342052-08:00,1987.0,10.850874,10850.874 +4197,2025-03-07T12:34:38.182589-08:00,1937.0,10.840537,10840.537 +4198,2025-03-07T12:34:49.016575-08:00,1990.0,10.833986,10833.986 +4199,2025-03-07T12:34:59.850879-08:00,1924.0,10.834304,10834.304 +4200,2025-03-07T12:35:10.695654-08:00,1943.0,10.844775,10844.775 +4201,2025-03-07T12:35:21.538275-08:00,1900.0,10.842621,10842.621 +4202,2025-03-07T12:35:32.381592-08:00,1986.0,10.843317,10843.317 +4203,2025-03-07T12:35:43.236593-08:00,1979.0,10.855001,10855.001 +4204,2025-03-07T12:35:54.078972-08:00,1987.0,10.842379,10842.379 +4205,2025-03-07T12:36:04.917059-08:00,1986.0,10.838087,10838.087 +4206,2025-03-07T12:36:15.760578-08:00,1948.0,10.843519,10843.519 +4207,2025-03-07T12:36:26.607832-08:00,1976.0,10.847254,10847.254 +4208,2025-03-07T12:36:37.446634-08:00,1986.0,10.838802,10838.802 +4209,2025-03-07T12:36:48.290765-08:00,1947.0,10.844131,10844.131 +4210,2025-03-07T12:36:59.128650-08:00,1986.0,10.837885,10837.885 +4211,2025-03-07T12:37:09.966677-08:00,1938.0,10.838027,10838.027 +4212,2025-03-07T12:37:20.802566-08:00,1907.0,10.835889,10835.889 +4213,2025-03-07T12:37:31.628826-08:00,1917.0,10.82626,10826.26 +4214,2025-03-07T12:37:42.471586-08:00,1989.0,10.84276,10842.76 +4215,2025-03-07T12:37:53.302729-08:00,1954.0,10.831143,10831.143 +4216,2025-03-07T12:38:04.140082-08:00,1911.0,10.837353,10837.353 +4217,2025-03-07T12:38:14.978644-08:00,1968.0,10.838562,10838.562 +4218,2025-03-07T12:38:25.820601-08:00,1983.0,10.841957,10841.957 +4219,2025-03-07T12:38:36.664588-08:00,1986.0,10.843987,10843.987 +4220,2025-03-07T12:38:47.495643-08:00,1988.0,10.831055,10831.055 +4221,2025-03-07T12:38:58.338840-08:00,1968.0,10.843197,10843.197 +4222,2025-03-07T12:39:09.181568-08:00,1974.0,10.842728,10842.728 +4223,2025-03-07T12:39:20.021592-08:00,1966.0,10.840024,10840.024 +4224,2025-03-07T12:39:30.863530-08:00,1987.0,10.841938,10841.938 +4225,2025-03-07T12:39:41.692637-08:00,1919.0,10.829107,10829.107 +4226,2025-03-07T12:39:52.524586-08:00,1937.0,10.831949,10831.949 +4227,2025-03-07T12:40:03.366131-08:00,1961.0,10.841545,10841.545 +4228,2025-03-07T12:40:14.210624-08:00,1951.0,10.844493,10844.493 +4229,2025-03-07T12:40:25.042595-08:00,1986.0,10.831971,10831.971 +4230,2025-03-07T12:40:35.886909-08:00,1957.0,10.844314,10844.314 +4231,2025-03-07T12:40:46.718582-08:00,1923.0,10.831673,10831.673 +4232,2025-03-07T12:40:57.549590-08:00,1950.0,10.831008,10831.008 +4233,2025-03-07T12:41:08.388905-08:00,1984.0,10.839315,10839.315 +4234,2025-03-07T12:41:19.218783-08:00,1893.0,10.829878,10829.878 +4235,2025-03-07T12:41:30.055974-08:00,1985.0,10.837191,10837.191 +4236,2025-03-07T12:41:40.883423-08:00,1984.0,10.827449,10827.449 +4237,2025-03-07T12:41:51.717853-08:00,1983.0,10.83443,10834.43 +4238,2025-03-07T12:42:02.558902-08:00,1985.0,10.841049,10841.049 +4239,2025-03-07T12:42:13.385113-08:00,1939.0,10.826211,10826.211 +4240,2025-03-07T12:42:24.231652-08:00,1932.0,10.846539,10846.539 +4241,2025-03-07T12:42:35.062585-08:00,1985.0,10.830933,10830.933 +4242,2025-03-07T12:42:45.906589-08:00,1943.0,10.844004,10844.004 +4243,2025-03-07T12:42:56.744859-08:00,1956.0,10.83827,10838.27 +4244,2025-03-07T12:43:07.587939-08:00,1917.0,10.84308,10843.08 +4245,2025-03-07T12:43:18.431055-08:00,1911.0,10.843116,10843.116 +4246,2025-03-07T12:43:29.268584-08:00,1967.0,10.837529,10837.529 +4247,2025-03-07T12:43:40.105016-08:00,1935.0,10.836432,10836.432 +4248,2025-03-07T12:43:50.942576-08:00,1978.0,10.83756,10837.56 +4249,2025-03-07T12:44:01.786752-08:00,1985.0,10.844176,10844.176 +4250,2025-03-07T12:44:12.634485-08:00,1985.0,10.847733,10847.733 +4251,2025-03-07T12:44:23.471780-08:00,1898.0,10.837295,10837.295 +4252,2025-03-07T12:44:34.302589-08:00,1983.0,10.830809,10830.809 +4253,2025-03-07T12:44:45.140992-08:00,1985.0,10.838403,10838.403 +4254,2025-03-07T12:44:55.984982-08:00,1984.0,10.84399,10843.99 +4255,2025-03-07T12:45:06.822591-08:00,1984.0,10.837609,10837.609 +4256,2025-03-07T12:45:17.668563-08:00,1982.0,10.845972,10845.972 +4257,2025-03-07T12:45:28.512659-08:00,1968.0,10.844096,10844.096 +4258,2025-03-07T12:45:39.352473-08:00,1915.0,10.839814,10839.814 +4259,2025-03-07T12:45:50.190641-08:00,1902.0,10.838168,10838.168 +4260,2025-03-07T12:46:01.031584-08:00,1945.0,10.840943,10840.943 +4261,2025-03-07T12:46:11.863402-08:00,1941.0,10.831818,10831.818 +4262,2025-03-07T12:46:22.708862-08:00,1906.0,10.84546,10845.46 +4263,2025-03-07T12:46:33.558753-08:00,1936.0,10.849891,10849.891 +4264,2025-03-07T12:46:44.398585-08:00,1904.0,10.839832,10839.832 +4265,2025-03-07T12:46:55.234222-08:00,1985.0,10.835637,10835.637 +4266,2025-03-07T12:47:06.076999-08:00,1986.0,10.842777,10842.777 +4267,2025-03-07T12:47:16.917584-08:00,1926.0,10.840585,10840.585 +4268,2025-03-07T12:47:27.765191-08:00,1951.0,10.847607,10847.607 +4269,2025-03-07T12:47:38.597868-08:00,1905.0,10.832677,10832.677 +4270,2025-03-07T12:47:49.442836-08:00,1967.0,10.844968,10844.968 +4271,2025-03-07T12:48:00.279646-08:00,1981.0,10.83681,10836.81 +4272,2025-03-07T12:48:11.128021-08:00,1963.0,10.848375,10848.375 +4273,2025-03-07T12:48:21.965975-08:00,1935.0,10.837954,10837.954 +4274,2025-03-07T12:48:32.810813-08:00,1962.0,10.844838,10844.838 +4275,2025-03-07T12:48:43.654786-08:00,1971.0,10.843973,10843.973 +4276,2025-03-07T12:48:54.498921-08:00,1981.0,10.844135,10844.135 +4277,2025-03-07T12:49:05.341722-08:00,1971.0,10.842801,10842.801 +4278,2025-03-07T12:49:16.184907-08:00,1963.0,10.843185,10843.185 +4279,2025-03-07T12:49:27.015642-08:00,1936.0,10.830735,10830.735 +4280,2025-03-07T12:49:37.857590-08:00,1936.0,10.841948,10841.948 +4281,2025-03-07T12:49:48.692890-08:00,1977.0,10.8353,10835.3 +4282,2025-03-07T12:49:59.531585-08:00,1955.0,10.838695,10838.695 +4283,2025-03-07T12:50:10.376096-08:00,1975.0,10.844511,10844.511 +4284,2025-03-07T12:50:21.216590-08:00,1967.0,10.840494,10840.494 +4285,2025-03-07T12:50:32.058873-08:00,1961.0,10.842283,10842.283 +4286,2025-03-07T12:50:42.902804-08:00,1967.0,10.843931,10843.931 +4287,2025-03-07T12:50:53.744830-08:00,1969.0,10.842026,10842.026 +4288,2025-03-07T12:51:04.576603-08:00,1968.0,10.831773,10831.773 +4289,2025-03-07T12:51:15.428536-08:00,1971.0,10.851933,10851.933 +4290,2025-03-07T12:51:26.262623-08:00,1947.0,10.834087,10834.087 +4291,2025-03-07T12:51:37.105858-08:00,1904.0,10.843235,10843.235 +4292,2025-03-07T12:51:47.953567-08:00,1983.0,10.847709,10847.709 +4293,2025-03-07T12:51:58.791996-08:00,1915.0,10.838429,10838.429 +4294,2025-03-07T12:52:09.639261-08:00,1905.0,10.847265,10847.265 +4295,2025-03-07T12:52:20.477795-08:00,1943.0,10.838534,10838.534 +4296,2025-03-07T12:52:31.325770-08:00,1975.0,10.847975,10847.975 +4297,2025-03-07T12:52:42.161826-08:00,1941.0,10.836056,10836.056 +4298,2025-03-07T12:52:53.001627-08:00,1936.0,10.839801,10839.801 +4299,2025-03-07T12:53:03.850567-08:00,1936.0,10.84894,10848.94 +4300,2025-03-07T12:53:14.687844-08:00,1941.0,10.837277,10837.277 +4301,2025-03-07T12:53:25.536587-08:00,1927.0,10.848743,10848.743 +4302,2025-03-07T12:53:36.367915-08:00,1979.0,10.831328,10831.328 +4303,2025-03-07T12:53:47.205581-08:00,1984.0,10.837666,10837.666 +4304,2025-03-07T12:53:58.042600-08:00,1934.0,10.837019,10837.019 +4305,2025-03-07T12:54:08.886588-08:00,1979.0,10.843988,10843.988 +4306,2025-03-07T12:54:19.720580-08:00,1930.0,10.833992,10833.992 +4307,2025-03-07T12:54:30.560836-08:00,1942.0,10.840256,10840.256 +4308,2025-03-07T12:54:41.397951-08:00,1953.0,10.837115,10837.115 +4309,2025-03-07T12:54:52.230586-08:00,1955.0,10.832635,10832.635 +4310,2025-03-07T12:55:03.061887-08:00,1904.0,10.831301,10831.301 +4311,2025-03-07T12:55:13.896845-08:00,1939.0,10.834958,10834.958 +4312,2025-03-07T12:55:24.729894-08:00,1975.0,10.833049,10833.049 +4313,2025-03-07T12:55:35.578980-08:00,1980.0,10.849086,10849.086 +4314,2025-03-07T12:55:46.416587-08:00,1967.0,10.837607,10837.607 +4315,2025-03-07T12:55:57.250587-08:00,1982.0,10.834,10834.0 +4316,2025-03-07T12:56:08.095590-08:00,1964.0,10.845003,10845.003 +4317,2025-03-07T12:56:18.940855-08:00,1936.0,10.845265,10845.265 +4318,2025-03-07T12:56:29.777801-08:00,1919.0,10.836946,10836.946 +4319,2025-03-07T12:56:40.610831-08:00,1958.0,10.83303,10833.03 +4320,2025-03-07T12:56:51.458982-08:00,1942.0,10.848151,10848.151 +4321,2025-03-07T12:57:02.293583-08:00,1984.0,10.834601,10834.601 +4322,2025-03-07T12:57:13.133589-08:00,1970.0,10.840006,10840.006 +4323,2025-03-07T12:57:23.971586-08:00,1945.0,10.837997,10837.997 +4324,2025-03-07T12:57:34.810303-08:00,1961.0,10.838717,10838.717 +4325,2025-03-07T12:57:45.649577-08:00,1931.0,10.839274,10839.274 +4326,2025-03-07T12:57:56.490593-08:00,1927.0,10.841016,10841.016 +4327,2025-03-07T12:58:07.325140-08:00,1942.0,10.834547,10834.547 +4328,2025-03-07T12:58:18.155691-08:00,1984.0,10.830551,10830.551 +4329,2025-03-07T12:58:28.996590-08:00,1983.0,10.840899,10840.899 +4330,2025-03-07T12:58:39.829823-08:00,1983.0,10.833233,10833.233 +4331,2025-03-07T12:58:50.665587-08:00,1975.0,10.835764,10835.764 +4332,2025-03-07T12:59:01.515215-08:00,1942.0,10.849628,10849.628 +4333,2025-03-07T12:59:12.346580-08:00,1945.0,10.831365,10831.365 +4334,2025-03-07T12:59:23.181588-08:00,1936.0,10.835008,10835.008 +4335,2025-03-07T12:59:34.019830-08:00,1966.0,10.838242,10838.242 +4336,2025-03-07T12:59:44.868888-08:00,1955.0,10.849058,10849.058 +4337,2025-03-07T12:59:55.709624-08:00,1979.0,10.840736,10840.736 +4338,2025-03-07T13:00:06.543726-08:00,1983.0,10.834102,10834.102 +4339,2025-03-07T13:00:17.386925-08:00,1979.0,10.843199,10843.199 +4340,2025-03-07T13:00:28.221583-08:00,1979.0,10.834658,10834.658 +4341,2025-03-07T13:00:39.055643-08:00,1962.0,10.83406,10834.06 +4342,2025-03-07T13:00:49.891874-08:00,1904.0,10.836231,10836.231 +4343,2025-03-07T13:01:00.736972-08:00,1921.0,10.845098,10845.098 +4344,2025-03-07T13:01:11.580585-08:00,1984.0,10.843613,10843.613 +4345,2025-03-07T13:01:22.425801-08:00,1979.0,10.845216,10845.216 +4346,2025-03-07T13:01:33.261133-08:00,1936.0,10.835332,10835.332 +4347,2025-03-07T13:01:44.108828-08:00,1936.0,10.847695,10847.695 +4348,2025-03-07T13:01:54.945793-08:00,1968.0,10.836965,10836.965 +4349,2025-03-07T13:02:05.789590-08:00,1958.0,10.843797,10843.797 +4350,2025-03-07T13:02:16.632830-08:00,1931.0,10.84324,10843.24 +4351,2025-03-07T13:02:27.479888-08:00,1973.0,10.847058,10847.058 +4352,2025-03-07T13:02:38.322640-08:00,1978.0,10.842752,10842.752 +4353,2025-03-07T13:02:49.164852-08:00,1943.0,10.842212,10842.212 +4354,2025-03-07T13:03:00.009587-08:00,1939.0,10.844735,10844.735 +4355,2025-03-07T13:03:10.857759-08:00,1985.0,10.848172,10848.172 +4356,2025-03-07T13:03:21.700788-08:00,1983.0,10.843029,10843.029 +4357,2025-03-07T13:03:32.550405-08:00,1937.0,10.849617,10849.617 +4358,2025-03-07T13:03:43.392586-08:00,1974.0,10.842181,10842.181 +4359,2025-03-07T13:03:54.235817-08:00,1983.0,10.843231,10843.231 +4360,2025-03-07T13:04:05.074593-08:00,1983.0,10.838776,10838.776 +4361,2025-03-07T13:04:15.911619-08:00,1971.0,10.837026,10837.026 +4362,2025-03-07T13:04:26.748878-08:00,1973.0,10.837259,10837.259 +4363,2025-03-07T13:04:37.591828-08:00,1951.0,10.84295,10842.95 +4364,2025-03-07T13:04:48.435996-08:00,1934.0,10.844168,10844.168 +4365,2025-03-07T13:04:59.284253-08:00,1961.0,10.848257,10848.257 +4366,2025-03-07T13:05:10.127808-08:00,1920.0,10.843555,10843.555 +4367,2025-03-07T13:05:20.966424-08:00,1984.0,10.838616,10838.616 +4368,2025-03-07T13:05:31.816592-08:00,1978.0,10.850168,10850.168 +4369,2025-03-07T13:05:42.475140-08:00,1937.0,10.658548,10658.548 +4370,2025-03-07T13:05:53.327124-08:00,1919.0,10.851984,10851.984 +4371,2025-03-07T13:06:04.161898-08:00,1979.0,10.834774,10834.774 +4372,2025-03-07T13:06:15.013807-08:00,1975.0,10.851909,10851.909 +4373,2025-03-07T13:06:25.853799-08:00,1913.0,10.839992,10839.992 +4374,2025-03-07T13:06:36.709067-08:00,1929.0,10.855268,10855.268 +4375,2025-03-07T13:06:47.555456-08:00,1903.0,10.846389,10846.389 +4376,2025-03-07T13:06:58.398608-08:00,1936.0,10.843152,10843.152 +4377,2025-03-07T13:07:09.241803-08:00,1919.0,10.843195,10843.195 +4378,2025-03-07T13:07:20.083806-08:00,1943.0,10.842003,10842.003 +4379,2025-03-07T13:07:30.928808-08:00,1968.0,10.845002,10845.002 +4380,2025-03-07T13:07:41.774027-08:00,1983.0,10.845219,10845.219 +4381,2025-03-07T13:07:52.622144-08:00,1970.0,10.848117,10848.117 +4382,2025-03-07T13:08:03.461839-08:00,1939.0,10.839695,10839.695 +4383,2025-03-07T13:08:14.301802-08:00,1936.0,10.839963,10839.963 +4384,2025-03-07T13:08:25.139072-08:00,1981.0,10.83727,10837.27 +4385,2025-03-07T13:08:35.987727-08:00,1904.0,10.848655,10848.655 +4386,2025-03-07T13:08:46.826803-08:00,1972.0,10.839076,10839.076 +4387,2025-03-07T13:08:57.669808-08:00,1983.0,10.843005,10843.005 +4388,2025-03-07T13:09:08.507115-08:00,1940.0,10.837307,10837.307 +4389,2025-03-07T13:09:19.348842-08:00,1983.0,10.841727,10841.727 +4390,2025-03-07T13:09:30.192048-08:00,1962.0,10.843206,10843.206 +4391,2025-03-07T13:09:41.043519-08:00,1939.0,10.851471,10851.471 +4392,2025-03-07T13:09:51.878150-08:00,1968.0,10.834631,10834.631 +4393,2025-03-07T13:10:02.729426-08:00,1964.0,10.851276,10851.276 +4394,2025-03-07T13:10:13.567799-08:00,1939.0,10.838373,10838.373 +4395,2025-03-07T13:10:24.414644-08:00,1937.0,10.846845,10846.845 +4396,2025-03-07T13:10:35.258843-08:00,1949.0,10.844199,10844.199 +4397,2025-03-07T13:10:46.103066-08:00,1934.0,10.844223,10844.223 +4398,2025-03-07T13:10:56.938852-08:00,1927.0,10.835786,10835.786 +4399,2025-03-07T13:11:07.786806-08:00,1978.0,10.847954,10847.954 +4400,2025-03-07T13:11:18.626808-08:00,1982.0,10.840002,10840.002 +4401,2025-03-07T13:11:29.473807-08:00,1958.0,10.846999,10846.999 +4402,2025-03-07T13:11:40.309960-08:00,1935.0,10.836153,10836.153 +4403,2025-03-07T13:11:51.156850-08:00,1903.0,10.84689,10846.89 +4404,2025-03-07T13:12:02.006331-08:00,1970.0,10.849481,10849.481 +4405,2025-03-07T13:12:12.849781-08:00,1986.0,10.84345,10843.45 +4406,2025-03-07T13:12:23.702052-08:00,1914.0,10.852271,10852.271 +4407,2025-03-07T13:12:34.552837-08:00,1984.0,10.850785,10850.785 +4408,2025-03-07T13:12:45.397213-08:00,1970.0,10.844376,10844.376 +4409,2025-03-07T13:12:56.245097-08:00,1980.0,10.847884,10847.884 +4410,2025-03-07T13:13:07.090888-08:00,1983.0,10.845791,10845.791 +4411,2025-03-07T13:13:17.931857-08:00,1904.0,10.840969,10840.969 +4412,2025-03-07T13:13:28.774805-08:00,1963.0,10.842948,10842.948 +4413,2025-03-07T13:13:39.618410-08:00,1947.0,10.843605,10843.605 +4414,2025-03-07T13:13:50.460414-08:00,1974.0,10.842004,10842.004 +4415,2025-03-07T13:14:01.309806-08:00,1933.0,10.849392,10849.392 +4416,2025-03-07T13:14:12.158856-08:00,1975.0,10.84905,10849.05 +4417,2025-03-07T13:14:23.001807-08:00,1942.0,10.842951,10842.951 +4418,2025-03-07T13:14:33.843856-08:00,1907.0,10.842049,10842.049 +4419,2025-03-07T13:14:44.683073-08:00,1903.0,10.839217,10839.217 +4420,2025-03-07T13:14:55.524046-08:00,1973.0,10.840973,10840.973 +4421,2025-03-07T13:15:06.369793-08:00,1983.0,10.845747,10845.747 +4422,2025-03-07T13:15:17.206665-08:00,1970.0,10.836872,10836.872 +4423,2025-03-07T13:15:28.061134-08:00,1968.0,10.854469,10854.469 +4424,2025-03-07T13:15:38.896794-08:00,1971.0,10.83566,10835.66 +4425,2025-03-07T13:15:49.741028-08:00,1958.0,10.844234,10844.234 +4426,2025-03-07T13:16:00.588807-08:00,1919.0,10.847779,10847.779 +4427,2025-03-07T13:16:11.427803-08:00,1974.0,10.838996,10838.996 +4428,2025-03-07T13:16:22.269570-08:00,1953.0,10.841767,10841.767 +4429,2025-03-07T13:16:33.118298-08:00,1975.0,10.848728,10848.728 +4430,2025-03-07T13:16:43.961797-08:00,1935.0,10.843499,10843.499 +4431,2025-03-07T13:16:54.802871-08:00,1982.0,10.841074,10841.074 +4432,2025-03-07T13:17:05.648434-08:00,1975.0,10.845563,10845.563 +4433,2025-03-07T13:17:16.478799-08:00,1983.0,10.830365,10830.365 +4434,2025-03-07T13:17:27.320808-08:00,1895.0,10.842009,10842.009 +4435,2025-03-07T13:17:38.167064-08:00,1980.0,10.846256,10846.256 +4436,2025-03-07T13:17:49.018805-08:00,1986.0,10.851741,10851.741 +4437,2025-03-07T13:17:49.018805-08:00,1986.0,0.0,0.0 +4438,2025-03-07T13:17:59.862369-08:00,1917.0,10.843564,10843.564 +4439,2025-03-07T13:18:10.700678-08:00,1985.0,10.838309,10838.309 +4440,2025-03-07T13:18:21.549853-08:00,1985.0,10.849175,10849.175 +4441,2025-03-07T13:18:32.392781-08:00,1983.0,10.842928,10842.928 +4442,2025-03-07T13:18:43.248124-08:00,1967.0,10.855343,10855.343 +4443,2025-03-07T13:18:54.090165-08:00,1923.0,10.842041,10842.041 +4444,2025-03-07T13:19:04.945181-08:00,1950.0,10.855016,10855.016 +4445,2025-03-07T13:19:15.781797-08:00,1971.0,10.836616,10836.616 +4446,2025-03-07T13:19:26.632628-08:00,1949.0,10.850831,10850.831 +4447,2025-03-07T13:19:37.485068-08:00,1903.0,10.85244,10852.44 +4448,2025-03-07T13:19:48.325805-08:00,1983.0,10.840737,10840.737 +4449,2025-03-07T13:19:59.160408-08:00,1971.0,10.834603,10834.603 +4450,2025-03-07T13:20:10.006565-08:00,1951.0,10.846157,10846.157 +4451,2025-03-07T13:20:20.846448-08:00,1897.0,10.839883,10839.883 +4452,2025-03-07T13:20:31.699950-08:00,1946.0,10.853502,10853.502 +4453,2025-03-07T13:20:42.544903-08:00,1988.0,10.844953,10844.953 +4454,2025-03-07T13:20:53.387251-08:00,1925.0,10.842348,10842.348 +4455,2025-03-07T13:21:04.230343-08:00,1935.0,10.843092,10843.092 +4456,2025-03-07T13:21:15.062185-08:00,1937.0,10.831842,10831.842 +4457,2025-03-07T13:21:25.905262-08:00,1984.0,10.843077,10843.077 +4458,2025-03-07T13:21:36.741458-08:00,1983.0,10.836196,10836.196 +4459,2025-03-07T13:21:47.592117-08:00,1894.0,10.850659,10850.659 +4460,2025-03-07T13:21:58.428070-08:00,1979.0,10.835953,10835.953 +4461,2025-03-07T13:22:09.277172-08:00,1914.0,10.849102,10849.102 +4462,2025-03-07T13:22:20.125874-08:00,1894.0,10.848702,10848.702 +4463,2025-03-07T13:22:30.971542-08:00,1898.0,10.845668,10845.668 +4464,2025-03-07T13:22:41.817793-08:00,1959.0,10.846251,10846.251 +4465,2025-03-07T13:22:52.655944-08:00,1974.0,10.838151,10838.151 +4466,2025-03-07T13:23:03.505044-08:00,1959.0,10.8491,10849.1 +4467,2025-03-07T13:23:14.353871-08:00,1957.0,10.848827,10848.827 +4468,2025-03-07T13:23:25.201875-08:00,1917.0,10.848004,10848.004 +4469,2025-03-07T13:23:36.045179-08:00,1988.0,10.843304,10843.304 +4470,2025-03-07T13:23:46.882911-08:00,1984.0,10.837732,10837.732 +4471,2025-03-07T13:23:57.727977-08:00,1981.0,10.845066,10845.066 +4472,2025-03-07T13:24:08.563383-08:00,1954.0,10.835406,10835.406 +4473,2025-03-07T13:24:19.417199-08:00,1974.0,10.853816,10853.816 +4474,2025-03-07T13:24:30.253049-08:00,1905.0,10.83585,10835.85 +4475,2025-03-07T13:24:41.102827-08:00,1984.0,10.849778,10849.778 +4476,2025-03-07T13:24:51.949383-08:00,1964.0,10.846556,10846.556 +4477,2025-03-07T13:25:02.793789-08:00,1987.0,10.844406,10844.406 +4478,2025-03-07T13:25:13.641843-08:00,1975.0,10.848054,10848.054 +4479,2025-03-07T13:25:24.483090-08:00,1951.0,10.841247,10841.247 +4480,2025-03-07T13:25:35.325806-08:00,1920.0,10.842716,10842.716 +4481,2025-03-07T13:25:46.165177-08:00,1907.0,10.839371,10839.371 +4482,2025-03-07T13:25:57.012802-08:00,1985.0,10.847625,10847.625 +4483,2025-03-07T13:26:07.861404-08:00,1926.0,10.848602,10848.602 +4484,2025-03-07T13:26:18.707942-08:00,1904.0,10.846538,10846.538 +4485,2025-03-07T13:26:29.543806-08:00,1983.0,10.835864,10835.864 +4486,2025-03-07T13:26:40.387804-08:00,1927.0,10.843998,10843.998 +4487,2025-03-07T13:26:51.220583-08:00,1891.0,10.832779,10832.779 +4488,2025-03-07T13:27:02.069394-08:00,1979.0,10.848811,10848.811 +4489,2025-03-07T13:27:12.909793-08:00,1943.0,10.840399,10840.399 +4490,2025-03-07T13:27:23.752805-08:00,1987.0,10.843012,10843.012 +4491,2025-03-07T13:27:34.598983-08:00,1977.0,10.846178,10846.178 +4492,2025-03-07T13:27:45.436907-08:00,1915.0,10.837924,10837.924 +4493,2025-03-07T13:27:56.278734-08:00,1988.0,10.841827,10841.827 +4494,2025-03-07T13:28:07.122978-08:00,1930.0,10.844244,10844.244 +4495,2025-03-07T13:28:17.964785-08:00,1982.0,10.841807,10841.807 +4496,2025-03-07T13:28:28.805195-08:00,1910.0,10.84041,10840.41 +4497,2025-03-07T13:28:39.639802-08:00,1958.0,10.834607,10834.607 +4498,2025-03-07T13:28:50.489797-08:00,1975.0,10.849995,10849.995 +4499,2025-03-07T13:29:01.326218-08:00,1907.0,10.836421,10836.421 +4500,2025-03-07T13:29:12.165807-08:00,1946.0,10.839589,10839.589 +4501,2025-03-07T13:29:23.011802-08:00,1982.0,10.845995,10845.995 +4502,2025-03-07T13:29:33.857000-08:00,1911.0,10.845198,10845.198 +4503,2025-03-07T13:29:44.697327-08:00,1962.0,10.840327,10840.327 +4504,2025-03-07T13:29:55.543119-08:00,1952.0,10.845792,10845.792 +4505,2025-03-07T13:30:06.374889-08:00,1914.0,10.83177,10831.77 +4506,2025-03-07T13:30:17.221781-08:00,1950.0,10.846892,10846.892 +4507,2025-03-07T13:30:28.064962-08:00,1971.0,10.843181,10843.181 +4508,2025-03-07T13:30:38.902403-08:00,1963.0,10.837441,10837.441 +4509,2025-03-07T13:30:49.744676-08:00,1951.0,10.842273,10842.273 +4510,2025-03-07T13:31:00.582806-08:00,1986.0,10.83813,10838.13 +4511,2025-03-07T13:31:11.416630-08:00,1985.0,10.833824,10833.824 +4512,2025-03-07T13:31:22.253890-08:00,1915.0,10.83726,10837.26 +4513,2025-03-07T13:31:33.090786-08:00,1983.0,10.836896,10836.896 +4514,2025-03-07T13:31:43.938124-08:00,1963.0,10.847338,10847.338 +4515,2025-03-07T13:31:54.769950-08:00,1988.0,10.831826,10831.826 +4516,2025-03-07T13:32:05.612852-08:00,1988.0,10.842902,10842.902 +4517,2025-03-07T13:32:16.452805-08:00,1906.0,10.839953,10839.953 +4518,2025-03-07T13:32:27.294082-08:00,1979.0,10.841277,10841.277 +4519,2025-03-07T13:32:38.127929-08:00,1985.0,10.833847,10833.847 +4520,2025-03-07T13:32:48.963622-08:00,1974.0,10.835693,10835.693 +4521,2025-03-07T13:32:59.800880-08:00,1984.0,10.837258,10837.258 +4522,2025-03-07T13:33:10.649970-08:00,1936.0,10.84909,10849.09 +4523,2025-03-07T13:33:21.481083-08:00,1978.0,10.831113,10831.113 +4524,2025-03-07T13:33:32.324173-08:00,1936.0,10.84309,10843.09 +4525,2025-03-07T13:33:43.161796-08:00,1915.0,10.837623,10837.623 +4526,2025-03-07T13:33:53.994690-08:00,1902.0,10.832894,10832.894 +4527,2025-03-07T13:34:04.838294-08:00,1931.0,10.843604,10843.604 +4528,2025-03-07T13:34:15.680049-08:00,1983.0,10.841755,10841.755 +4529,2025-03-07T13:34:26.517839-08:00,1949.0,10.83779,10837.79 +4530,2025-03-07T13:34:37.359884-08:00,1945.0,10.842045,10842.045 +4531,2025-03-07T13:34:48.193063-08:00,1941.0,10.833179,10833.179 +4532,2025-03-07T13:34:59.036442-08:00,1924.0,10.843379,10843.379 +4533,2025-03-07T13:35:09.887136-08:00,1906.0,10.850694,10850.694 +4534,2025-03-07T13:35:20.721171-08:00,1984.0,10.834035,10834.035 +4535,2025-03-07T13:35:31.558803-08:00,1942.0,10.837632,10837.632 +4536,2025-03-07T13:35:42.408037-08:00,1986.0,10.849234,10849.234 +4537,2025-03-07T13:35:53.238802-08:00,1978.0,10.830765,10830.765 +4538,2025-03-07T13:36:04.079133-08:00,1967.0,10.840331,10840.331 +4539,2025-03-07T13:36:14.920138-08:00,1958.0,10.841005,10841.005 +4540,2025-03-07T13:36:25.763912-08:00,1989.0,10.843774,10843.774 +4541,2025-03-07T13:36:36.602148-08:00,1986.0,10.838236,10838.236 +4542,2025-03-07T13:36:47.454152-08:00,1901.0,10.852004,10852.004 +4543,2025-03-07T13:36:58.290802-08:00,1957.0,10.83665,10836.65 +4544,2025-03-07T13:37:09.139960-08:00,1921.0,10.849158,10849.158 +4545,2025-03-07T13:37:19.982807-08:00,1923.0,10.842847,10842.847 +4546,2025-03-07T13:37:30.815588-08:00,1985.0,10.832781,10832.781 +4547,2025-03-07T13:37:41.665461-08:00,1984.0,10.849873,10849.873 +4548,2025-03-07T13:37:52.500801-08:00,1988.0,10.83534,10835.34 +4549,2025-03-07T13:38:03.345052-08:00,1956.0,10.844251,10844.251 +4550,2025-03-07T13:38:14.181821-08:00,1945.0,10.836769,10836.769 +4551,2025-03-07T13:38:25.017848-08:00,1943.0,10.836027,10836.027 +4552,2025-03-07T13:38:35.861853-08:00,1894.0,10.844005,10844.005 +4553,2025-03-07T13:38:46.701059-08:00,1967.0,10.839206,10839.206 +4554,2025-03-07T13:38:57.537653-08:00,1975.0,10.836594,10836.594 +4555,2025-03-07T13:39:08.376800-08:00,1984.0,10.839147,10839.147 +4556,2025-03-07T13:39:19.223820-08:00,1911.0,10.84702,10847.02 +4557,2025-03-07T13:39:30.066439-08:00,1973.0,10.842619,10842.619 +4558,2025-03-07T13:39:40.898802-08:00,1989.0,10.832363,10832.363 +4559,2025-03-07T13:39:51.736804-08:00,1963.0,10.838002,10838.002 +4560,2025-03-07T13:40:02.583782-08:00,1990.0,10.846978,10846.978 +4561,2025-03-07T13:40:13.422601-08:00,1967.0,10.838819,10838.819 +4562,2025-03-07T13:40:24.259800-08:00,1959.0,10.837199,10837.199 +4563,2025-03-07T13:40:35.099810-08:00,1921.0,10.84001,10840.01 +4564,2025-03-07T13:40:45.942290-08:00,1927.0,10.84248,10842.48 +4565,2025-03-07T13:40:56.778967-08:00,1967.0,10.836677,10836.677 +4566,2025-03-07T13:41:07.610092-08:00,1984.0,10.831125,10831.125 +4567,2025-03-07T13:41:18.453087-08:00,1983.0,10.842995,10842.995 +4568,2025-03-07T13:41:29.296257-08:00,1973.0,10.84317,10843.17 +4569,2025-03-07T13:41:40.136945-08:00,1931.0,10.840688,10840.688 +4570,2025-03-07T13:41:50.975869-08:00,1978.0,10.838924,10838.924 +4571,2025-03-07T13:42:01.813003-08:00,1949.0,10.837134,10837.134 +4572,2025-03-07T13:42:12.651802-08:00,1935.0,10.838799,10838.799 +4573,2025-03-07T13:42:23.487801-08:00,1909.0,10.835999,10835.999 +4574,2025-03-07T13:42:34.321332-08:00,1951.0,10.833531,10833.531 +4575,2025-03-07T13:42:45.156794-08:00,1947.0,10.835462,10835.462 +4576,2025-03-07T13:42:55.987052-08:00,1936.0,10.830258,10830.258 +4577,2025-03-07T13:43:06.826124-08:00,1971.0,10.839072,10839.072 +4578,2025-03-07T13:43:17.659083-08:00,1986.0,10.832959,10832.959 +4579,2025-03-07T13:43:28.490856-08:00,1986.0,10.831773,10831.773 +4580,2025-03-07T13:43:39.332806-08:00,1923.0,10.84195,10841.95 +4581,2025-03-07T13:43:50.170324-08:00,1984.0,10.837518,10837.518 +4582,2025-03-07T13:44:01.001774-08:00,1989.0,10.83145,10831.45 +4583,2025-03-07T13:44:11.844807-08:00,1895.0,10.843033,10843.033 +4584,2025-03-07T13:44:22.678134-08:00,1931.0,10.833327,10833.327 +4585,2025-03-07T13:44:33.524058-08:00,1968.0,10.845924,10845.924 +4586,2025-03-07T13:44:44.357807-08:00,1934.0,10.833749,10833.749 +4587,2025-03-07T13:44:55.199084-08:00,1918.0,10.841277,10841.277 +4588,2025-03-07T13:45:06.044142-08:00,1978.0,10.845058,10845.058 +4589,2025-03-07T13:45:16.882805-08:00,1974.0,10.838663,10838.663 +4590,2025-03-07T13:45:27.719805-08:00,1910.0,10.837,10837.0 +4591,2025-03-07T13:45:38.561054-08:00,1905.0,10.841249,10841.249 +4592,2025-03-07T13:45:49.394140-08:00,1991.0,10.833086,10833.086 +4593,2025-03-07T13:46:00.236797-08:00,1973.0,10.842657,10842.657 +4594,2025-03-07T13:46:11.075803-08:00,1990.0,10.839006,10839.006 +4595,2025-03-07T13:46:21.930062-08:00,1989.0,10.854259,10854.259 +4596,2025-03-07T13:46:32.765811-08:00,1965.0,10.835749,10835.749 +4597,2025-03-07T13:46:43.607993-08:00,1947.0,10.842182,10842.182 +4598,2025-03-07T13:46:54.452803-08:00,1941.0,10.84481,10844.81 +4599,2025-03-07T13:47:05.295789-08:00,1982.0,10.842986,10842.986 +4600,2025-03-07T13:47:16.132022-08:00,1938.0,10.836233,10836.233 +4601,2025-03-07T13:47:26.970803-08:00,1979.0,10.838781,10838.781 +4602,2025-03-07T13:47:37.812811-08:00,1962.0,10.842008,10842.008 +4603,2025-03-07T13:47:48.652300-08:00,1939.0,10.839489,10839.489 +4604,2025-03-07T13:47:59.499835-08:00,1973.0,10.847535,10847.535 +4605,2025-03-07T13:48:10.332807-08:00,1957.0,10.832972,10832.972 +4606,2025-03-07T13:48:21.175799-08:00,1979.0,10.842992,10842.992 +4607,2025-03-07T13:48:32.006848-08:00,1952.0,10.831049,10831.049 +4608,2025-03-07T13:48:42.848805-08:00,1968.0,10.841957,10841.957 +4609,2025-03-07T13:48:53.687804-08:00,1987.0,10.838999,10838.999 +4610,2025-03-07T13:49:04.531246-08:00,1945.0,10.843442,10843.442 +4611,2025-03-07T13:49:15.366212-08:00,1904.0,10.834966,10834.966 +4612,2025-03-07T13:49:26.205808-08:00,1951.0,10.839596,10839.596 +4613,2025-03-07T13:49:37.049355-08:00,1973.0,10.843547,10843.547 +4614,2025-03-07T13:49:47.885091-08:00,1958.0,10.835736,10835.736 +4615,2025-03-07T13:49:58.722797-08:00,1936.0,10.837706,10837.706 +4616,2025-03-07T13:50:09.569816-08:00,1983.0,10.847019,10847.019 +4617,2025-03-07T13:50:20.410491-08:00,1953.0,10.840675,10840.675 +4618,2025-03-07T13:50:31.251796-08:00,1989.0,10.841305,10841.305 +4619,2025-03-07T13:50:42.098841-08:00,1975.0,10.847045,10847.045 +4620,2025-03-07T13:50:52.941879-08:00,1946.0,10.843038,10843.038 +4621,2025-03-07T13:51:03.785788-08:00,1942.0,10.843909,10843.909 +4622,2025-03-07T13:51:14.624148-08:00,1907.0,10.83836,10838.36 +4623,2025-03-07T13:51:25.474113-08:00,1966.0,10.849965,10849.965 +4624,2025-03-07T13:51:36.316493-08:00,1986.0,10.84238,10842.38 +4625,2025-03-07T13:51:47.154808-08:00,1991.0,10.838315,10838.315 +4626,2025-03-07T13:51:57.993131-08:00,1936.0,10.838323,10838.323 +4627,2025-03-07T13:52:08.845653-08:00,1968.0,10.852522,10852.522 +4628,2025-03-07T13:52:19.686965-08:00,1987.0,10.841312,10841.312 +4629,2025-03-07T13:52:30.541033-08:00,1910.0,10.854068,10854.068 +4630,2025-03-07T13:52:41.385794-08:00,1990.0,10.844761,10844.761 +4631,2025-03-07T13:52:52.231246-08:00,1991.0,10.845452,10845.452 +4632,2025-03-07T13:53:03.076943-08:00,1974.0,10.845697,10845.697 +4633,2025-03-07T13:53:13.934044-08:00,1936.0,10.857101,10857.101 +4634,2025-03-07T13:53:24.777109-08:00,1987.0,10.843065,10843.065 +4635,2025-03-07T13:53:35.626072-08:00,1987.0,10.848963,10848.963 +4636,2025-03-07T13:53:46.481119-08:00,1926.0,10.855047,10855.047 +4637,2025-03-07T13:53:57.320805-08:00,1904.0,10.839686,10839.686 +4638,2025-03-07T13:54:08.168028-08:00,1994.0,10.847223,10847.223 +4639,2025-03-07T13:54:19.019803-08:00,1911.0,10.851775,10851.775 +4640,2025-03-07T13:54:29.863393-08:00,1990.0,10.84359,10843.59 +4641,2025-03-07T13:54:40.710695-08:00,1991.0,10.847302,10847.302 +4642,2025-03-07T13:54:51.560509-08:00,1969.0,10.849814,10849.814 +4643,2025-03-07T13:55:02.400781-08:00,1994.0,10.840272,10840.272 +4644,2025-03-07T13:55:13.246995-08:00,1951.0,10.846214,10846.214 +4645,2025-03-07T13:55:24.099803-08:00,1947.0,10.852808,10852.808 +4646,2025-03-07T13:55:34.944809-08:00,1983.0,10.845006,10845.006 +4647,2025-03-07T13:55:45.788156-08:00,1938.0,10.843347,10843.347 +4648,2025-03-07T13:55:56.642144-08:00,1949.0,10.853988,10853.988 +4649,2025-03-07T13:56:07.490367-08:00,1985.0,10.848223,10848.223 +4650,2025-03-07T13:56:18.345148-08:00,1987.0,10.854781,10854.781 +4651,2025-03-07T13:56:29.182862-08:00,1969.0,10.837714,10837.714 +4652,2025-03-07T13:56:40.025800-08:00,1986.0,10.842938,10842.938 +4653,2025-03-07T13:56:50.867178-08:00,1967.0,10.841378,10841.378 +4654,2025-03-07T13:57:01.718119-08:00,1975.0,10.850941,10850.941 +4655,2025-03-07T13:57:12.559806-08:00,1974.0,10.841687,10841.687 +4656,2025-03-07T13:57:23.404803-08:00,1991.0,10.844997,10844.997 +4657,2025-03-07T13:57:34.251784-08:00,1957.0,10.846981,10846.981 +4658,2025-03-07T13:57:45.093798-08:00,1937.0,10.842014,10842.014 +4659,2025-03-07T13:57:55.944959-08:00,1966.0,10.851161,10851.161 +4660,2025-03-07T13:58:06.784763-08:00,1975.0,10.839804,10839.804 +4661,2025-03-07T13:58:17.624780-08:00,1981.0,10.840017,10840.017 +4662,2025-03-07T13:58:28.462906-08:00,1930.0,10.838126,10838.126 +4663,2025-03-07T13:58:39.300521-08:00,1979.0,10.837615,10837.615 +4664,2025-03-07T13:58:50.140494-08:00,1954.0,10.839973,10839.973 +4665,2025-03-07T13:59:00.983868-08:00,1931.0,10.843374,10843.374 +4666,2025-03-07T13:59:11.825807-08:00,1991.0,10.841939,10841.939 +4667,2025-03-07T13:59:22.660852-08:00,1923.0,10.835045,10835.045 +4668,2025-03-07T13:59:33.515538-08:00,1936.0,10.854686,10854.686 +4669,2025-03-07T13:59:44.356064-08:00,1940.0,10.840526,10840.526 +4670,2025-03-07T13:59:55.201028-08:00,1936.0,10.844964,10844.964 +4671,2025-03-07T14:00:06.054799-08:00,1975.0,10.853771,10853.771 +4672,2025-03-07T14:00:16.906033-08:00,1983.0,10.851234,10851.234 +4673,2025-03-07T14:00:27.743053-08:00,1986.0,10.83702,10837.02 +4674,2025-03-07T14:00:38.583848-08:00,1986.0,10.840795,10840.795 +4675,2025-03-07T14:00:49.430797-08:00,1987.0,10.846949,10846.949 +4676,2025-03-07T14:01:00.270815-08:00,1942.0,10.840018,10840.018 +4677,2025-03-07T14:01:11.120060-08:00,1951.0,10.849245,10849.245 +4678,2025-03-07T14:01:21.964118-08:00,1969.0,10.844058,10844.058 +4679,2025-03-07T14:01:32.806124-08:00,1994.0,10.842006,10842.006 +4680,2025-03-07T14:01:43.648803-08:00,1919.0,10.842679,10842.679 +4681,2025-03-07T14:01:54.502171-08:00,1988.0,10.853368,10853.368 +4682,2025-03-07T14:02:05.346211-08:00,1990.0,10.84404,10844.04 +4683,2025-03-07T14:02:16.202365-08:00,1917.0,10.856154,10856.154 +4684,2025-03-07T14:02:27.050142-08:00,1993.0,10.847777,10847.777 +4685,2025-03-07T14:02:37.892926-08:00,1913.0,10.842784,10842.784 +4686,2025-03-07T14:02:48.733943-08:00,1919.0,10.841017,10841.017 +4687,2025-03-07T14:02:59.565942-08:00,1996.0,10.831999,10831.999 +4688,2025-03-07T14:03:10.418360-08:00,1989.0,10.852418,10852.418 +4689,2025-03-07T14:03:21.260995-08:00,1946.0,10.842635,10842.635 +4690,2025-03-07T14:03:32.114502-08:00,1963.0,10.853507,10853.507 +4691,2025-03-07T14:03:42.951023-08:00,1955.0,10.836521,10836.521 +4692,2025-03-07T14:03:42.951023-08:00,1955.0,0.0,0.0 +4693,2025-03-07T14:03:53.804920-08:00,1917.0,10.853897,10853.897 +4694,2025-03-07T14:04:04.650804-08:00,1995.0,10.845884,10845.884 +4695,2025-03-07T14:04:15.492180-08:00,1995.0,10.841376,10841.376 +4696,2025-03-07T14:04:26.341182-08:00,1953.0,10.849002,10849.002 +4697,2025-03-07T14:04:37.184807-08:00,1938.0,10.843625,10843.625 +4698,2025-03-07T14:04:48.027927-08:00,1990.0,10.84312,10843.12 +4699,2025-03-07T14:04:58.870897-08:00,1989.0,10.84297,10842.97 +4700,2025-03-07T14:05:09.715469-08:00,1949.0,10.844572,10844.572 +4701,2025-03-07T14:05:20.559568-08:00,1915.0,10.844099,10844.099 +4702,2025-03-07T14:05:31.406855-08:00,1926.0,10.847287,10847.287 +4703,2025-03-07T14:05:42.477311-08:00,1929.0,11.070456,11070.456 +4704,2025-03-07T14:05:53.318503-08:00,1979.0,10.841192,10841.192 +4705,2025-03-07T14:06:04.159196-08:00,1968.0,10.840693,10840.693 +4706,2025-03-07T14:06:15.005670-08:00,1968.0,10.846474,10846.474 +4707,2025-03-07T14:06:25.849706-08:00,1991.0,10.844036,10844.036 +4708,2025-03-07T14:06:36.688338-08:00,1989.0,10.838632,10838.632 +4709,2025-03-07T14:06:47.541528-08:00,1968.0,10.85319,10853.19 +4710,2025-03-07T14:06:58.388327-08:00,1988.0,10.846799,10846.799 +4711,2025-03-07T14:07:09.232268-08:00,1954.0,10.843941,10843.941 +4712,2025-03-07T14:07:20.075593-08:00,1979.0,10.843325,10843.325 +4713,2025-03-07T14:07:30.918615-08:00,1958.0,10.843022,10843.022 +4714,2025-03-07T14:07:41.768276-08:00,1999.0,10.849661,10849.661 +4715,2025-03-07T14:07:52.615595-08:00,1996.0,10.847319,10847.319 +4716,2025-03-07T14:08:03.461496-08:00,1909.0,10.845901,10845.901 +4717,2025-03-07T14:08:14.301584-08:00,1917.0,10.840088,10840.088 +4718,2025-03-07T14:08:25.140542-08:00,1950.0,10.838958,10838.958 +4719,2025-03-07T14:08:35.990327-08:00,1931.0,10.849785,10849.785 +4720,2025-03-07T14:08:46.834268-08:00,1936.0,10.843941,10843.941 +4721,2025-03-07T14:08:57.671495-08:00,1980.0,10.837227,10837.227 +4722,2025-03-07T14:09:08.512993-08:00,1943.0,10.841498,10841.498 +4723,2025-03-07T14:09:19.364358-08:00,1962.0,10.851365,10851.365 +4724,2025-03-07T14:09:30.216389-08:00,1996.0,10.852031,10852.031 +4725,2025-03-07T14:09:41.059273-08:00,1998.0,10.842884,10842.884 +4726,2025-03-07T14:09:51.897428-08:00,1998.0,10.838155,10838.155 +4727,2025-03-07T14:10:02.746597-08:00,1914.0,10.849169,10849.169 +4728,2025-03-07T14:10:13.594010-08:00,1997.0,10.847413,10847.413 +4729,2025-03-07T14:10:24.439266-08:00,1997.0,10.845256,10845.256 +4730,2025-03-07T14:10:35.283331-08:00,1995.0,10.844065,10844.065 +4731,2025-03-07T14:10:46.129259-08:00,1988.0,10.845928,10845.928 +4732,2025-03-07T14:10:56.973282-08:00,1955.0,10.844023,10844.023 +4733,2025-03-07T14:11:07.815928-08:00,1953.0,10.842646,10842.646 +4734,2025-03-07T14:11:18.661322-08:00,1969.0,10.845394,10845.394 +4735,2025-03-07T14:11:29.497421-08:00,1959.0,10.836099,10836.099 +4736,2025-03-07T14:11:40.337674-08:00,1917.0,10.840253,10840.253 +4737,2025-03-07T14:11:51.187660-08:00,1999.0,10.849986,10849.986 +4738,2025-03-07T14:12:02.025358-08:00,1926.0,10.837698,10837.698 +4739,2025-03-07T14:12:12.863605-08:00,1968.0,10.838247,10838.247 +4740,2025-03-07T14:12:23.716503-08:00,1962.0,10.852898,10852.898 +4741,2025-03-07T14:12:34.556396-08:00,1945.0,10.839893,10839.893 +4742,2025-03-07T14:12:45.405607-08:00,1999.0,10.849211,10849.211 +4743,2025-03-07T14:12:56.258013-08:00,1999.0,10.852406,10852.406 +4744,2025-03-07T14:13:07.090274-08:00,1991.0,10.832261,10832.261 +4745,2025-03-07T14:13:17.938245-08:00,1904.0,10.847971,10847.971 +4746,2025-03-07T14:13:28.764466-08:00,1988.0,10.826221,10826.221 +4747,2025-03-07T14:13:39.609405-08:00,2000.0,10.844939,10844.939 +4748,2025-03-07T14:13:50.437689-08:00,1925.0,10.828284,10828.284 +4749,2025-03-07T14:14:01.282662-08:00,1963.0,10.844973,10844.973 +4750,2025-03-07T14:14:12.121426-08:00,1949.0,10.838764,10838.764 +4751,2025-03-07T14:14:22.968426-08:00,1991.0,10.847,10847.0 +4752,2025-03-07T14:14:33.807282-08:00,1964.0,10.838856,10838.856 +4753,2025-03-07T14:14:44.640282-08:00,2000.0,10.833,10833.0 +4754,2025-03-07T14:14:55.481593-08:00,1956.0,10.841311,10841.311 +4755,2025-03-07T14:15:06.328274-08:00,1967.0,10.846681,10846.681 +4756,2025-03-07T14:15:17.173304-08:00,1991.0,10.84503,10845.03 +4757,2025-03-07T14:15:28.007317-08:00,1999.0,10.834013,10834.013 +4758,2025-03-07T14:15:38.852410-08:00,1999.0,10.845093,10845.093 +4759,2025-03-07T14:15:49.682617-08:00,1983.0,10.830207,10830.207 +4760,2025-03-07T14:16:00.535602-08:00,1959.0,10.852985,10852.985 +4761,2025-03-07T14:16:11.377088-08:00,1994.0,10.841486,10841.486 +4762,2025-03-07T14:16:22.217270-08:00,1923.0,10.840182,10840.182 +4763,2025-03-07T14:16:33.058253-08:00,1915.0,10.840983,10840.983 +4764,2025-03-07T14:16:43.900561-08:00,1980.0,10.842308,10842.308 +4765,2025-03-07T14:16:54.731272-08:00,1952.0,10.830711,10830.711 +4766,2025-03-07T14:17:05.576530-08:00,1998.0,10.845258,10845.258 +4767,2025-03-07T14:17:16.411700-08:00,2000.0,10.83517,10835.17 +4768,2025-03-07T14:17:27.256110-08:00,1905.0,10.84441,10844.41 +4769,2025-03-07T14:17:38.097760-08:00,1959.0,10.84165,10841.65 +4770,2025-03-07T14:17:48.938267-08:00,1989.0,10.840507,10840.507 +4771,2025-03-07T14:17:59.780278-08:00,1997.0,10.842011,10842.011 +4772,2025-03-07T14:18:10.622835-08:00,1927.0,10.842557,10842.557 +4773,2025-03-07T14:18:21.458276-08:00,1987.0,10.835441,10835.441 +4774,2025-03-07T14:18:32.293613-08:00,2000.0,10.835337,10835.337 +4775,2025-03-07T14:18:43.135588-08:00,1919.0,10.841975,10841.975 +4776,2025-03-07T14:18:53.972324-08:00,1996.0,10.836736,10836.736 +4777,2025-03-07T14:19:04.818396-08:00,1979.0,10.846072,10846.072 +4778,2025-03-07T14:19:15.660283-08:00,1997.0,10.841887,10841.887 +4779,2025-03-07T14:19:26.501859-08:00,1997.0,10.841576,10841.576 +4780,2025-03-07T14:19:37.341630-08:00,2000.0,10.839771,10839.771 +4781,2025-03-07T14:19:48.178255-08:00,1983.0,10.836625,10836.625 +4782,2025-03-07T14:19:59.024194-08:00,1933.0,10.845939,10845.939 +4783,2025-03-07T14:20:09.868773-08:00,1939.0,10.844579,10844.579 +4784,2025-03-07T14:20:20.711273-08:00,1953.0,10.8425,10842.5 +4785,2025-03-07T14:20:31.561483-08:00,1986.0,10.85021,10850.21 +4786,2025-03-07T14:20:42.405377-08:00,1963.0,10.843894,10843.894 +4787,2025-03-07T14:20:53.247422-08:00,1959.0,10.842045,10842.045 +4788,2025-03-07T14:21:04.092607-08:00,1987.0,10.845185,10845.185 +4789,2025-03-07T14:21:14.931277-08:00,1904.0,10.83867,10838.67 +4790,2025-03-07T14:21:25.775512-08:00,1983.0,10.844235,10844.235 +4791,2025-03-07T14:21:36.629358-08:00,1984.0,10.853846,10853.846 +4792,2025-03-07T14:21:47.475512-08:00,1905.0,10.846154,10846.154 +4793,2025-03-07T14:21:58.310088-08:00,1993.0,10.834576,10834.576 +4794,2025-03-07T14:22:09.148276-08:00,1945.0,10.838188,10838.188 +4795,2025-03-07T14:22:19.997268-08:00,2000.0,10.848992,10848.992 +4796,2025-03-07T14:22:30.839584-08:00,1946.0,10.842316,10842.316 +4797,2025-03-07T14:22:41.672305-08:00,2000.0,10.832721,10832.721 +4798,2025-03-07T14:22:52.514512-08:00,1935.0,10.842207,10842.207 +4799,2025-03-07T14:23:03.353515-08:00,1955.0,10.839003,10839.003 +4800,2025-03-07T14:23:14.188998-08:00,1953.0,10.835483,10835.483 +4801,2025-03-07T14:23:25.042278-08:00,1961.0,10.85328,10853.28 +4802,2025-03-07T14:23:35.884271-08:00,2000.0,10.841993,10841.993 +4803,2025-03-07T14:23:46.722277-08:00,1989.0,10.838006,10838.006 +4804,2025-03-07T14:23:57.566710-08:00,1922.0,10.844433,10844.433 +4805,2025-03-07T14:24:08.405607-08:00,1932.0,10.838897,10838.897 +4806,2025-03-07T14:24:19.248270-08:00,2000.0,10.842663,10842.663 +4807,2025-03-07T14:24:30.086524-08:00,1962.0,10.838254,10838.254 +4808,2025-03-07T14:24:40.923109-08:00,1998.0,10.836585,10836.585 +4809,2025-03-07T14:24:51.763329-08:00,1963.0,10.84022,10840.22 +4810,2025-03-07T14:25:02.604468-08:00,2000.0,10.841139,10841.139 +4811,2025-03-07T14:25:13.452259-08:00,1999.0,10.847791,10847.791 +4812,2025-03-07T14:25:24.290540-08:00,1987.0,10.838281,10838.281 +4813,2025-03-07T14:25:35.133243-08:00,1984.0,10.842703,10842.703 +4814,2025-03-07T14:25:45.968278-08:00,1991.0,10.835035,10835.035 +4815,2025-03-07T14:25:56.814619-08:00,2000.0,10.846341,10846.341 +4816,2025-03-07T14:26:07.650647-08:00,1952.0,10.836028,10836.028 +4817,2025-03-07T14:26:18.494408-08:00,1974.0,10.843761,10843.761 +4818,2025-03-07T14:26:29.330270-08:00,1946.0,10.835862,10835.862 +4819,2025-03-07T14:26:40.157333-08:00,1967.0,10.827063,10827.063 +4820,2025-03-07T14:26:50.995545-08:00,1968.0,10.838212,10838.212 +4821,2025-03-07T14:27:01.844278-08:00,1947.0,10.848733,10848.733 +4822,2025-03-07T14:27:12.680887-08:00,1998.0,10.836609,10836.609 +4823,2025-03-07T14:27:23.518509-08:00,1968.0,10.837622,10837.622 +4824,2025-03-07T14:27:34.361306-08:00,1989.0,10.842797,10842.797 +4825,2025-03-07T14:27:45.205427-08:00,1999.0,10.844121,10844.121 +4826,2025-03-07T14:27:56.041690-08:00,1999.0,10.836263,10836.263 +4827,2025-03-07T14:28:06.882516-08:00,1967.0,10.840826,10840.826 +4828,2025-03-07T14:28:17.727257-08:00,2000.0,10.844741,10844.741 +4829,2025-03-07T14:28:28.566801-08:00,2000.0,10.839544,10839.544 +4830,2025-03-07T14:28:39.414794-08:00,1974.0,10.847993,10847.993 +4831,2025-03-07T14:28:39.414794-08:00,1974.0,0.0,0.0 +4832,2025-03-07T14:28:50.255333-08:00,1964.0,10.840539,10840.539 +4833,2025-03-07T14:29:01.099528-08:00,2000.0,10.844195,10844.195 +4834,2025-03-07T14:29:11.942401-08:00,1999.0,10.842873,10842.873 +4835,2025-03-07T14:29:22.782409-08:00,1966.0,10.840008,10840.008 +4836,2025-03-07T14:29:33.632900-08:00,2000.0,10.850491,10850.491 +4837,2025-03-07T14:29:44.468454-08:00,1935.0,10.835554,10835.554 +4838,2025-03-07T14:29:55.315768-08:00,1929.0,10.847314,10847.314 +4839,2025-03-07T14:30:06.158698-08:00,1971.0,10.84293,10842.93 +4840,2025-03-07T14:30:16.993276-08:00,1941.0,10.834578,10834.578 +4841,2025-03-07T14:30:27.828272-08:00,1964.0,10.834996,10834.996 +4842,2025-03-07T14:30:38.673409-08:00,1999.0,10.845137,10845.137 +4843,2025-03-07T14:30:49.518609-08:00,1989.0,10.8452,10845.2 +4844,2025-03-07T14:31:00.352320-08:00,1928.0,10.833711,10833.711 +4845,2025-03-07T14:31:11.196278-08:00,1921.0,10.843958,10843.958 +4846,2025-03-07T14:31:22.039594-08:00,1936.0,10.843316,10843.316 +4847,2025-03-07T14:31:30.242492-08:00,1945.0,8.202898,8202.898 +4848,2025-03-07T14:31:32.871253-08:00,1919.0,2.628761,2628.761 +4849,2025-03-07T14:31:43.708773-08:00,1983.0,10.83752,10837.52 +4850,2025-03-07T14:31:54.554313-08:00,1995.0,10.84554,10845.54 +4851,2025-03-07T14:32:05.393702-08:00,1988.0,10.839389,10839.389 +4852,2025-03-07T14:32:16.241430-08:00,1922.0,10.847728,10847.728 +4853,2025-03-07T14:32:27.079271-08:00,1961.0,10.837841,10837.841 +4854,2025-03-07T14:32:37.919216-08:00,1962.0,10.839945,10839.945 +4855,2025-03-07T14:32:48.766122-08:00,1968.0,10.846906,10846.906 +4856,2025-03-07T14:32:59.603269-08:00,1939.0,10.837147,10837.147 +4857,2025-03-07T14:33:10.446550-08:00,1979.0,10.843281,10843.281 +4858,2025-03-07T14:33:21.278582-08:00,1922.0,10.832032,10832.032 +4859,2025-03-07T14:33:32.120445-08:00,2000.0,10.841863,10841.863 +4860,2025-03-07T14:33:42.964684-08:00,1921.0,10.844239,10844.239 +4861,2025-03-07T14:33:53.802336-08:00,1991.0,10.837652,10837.652 +4862,2025-03-07T14:34:04.639118-08:00,1985.0,10.836782,10836.782 +4863,2025-03-07T14:34:15.482286-08:00,2000.0,10.843168,10843.168 +4864,2025-03-07T14:34:26.329272-08:00,1982.0,10.846986,10846.986 +4865,2025-03-07T14:34:37.166425-08:00,2000.0,10.837153,10837.153 +4866,2025-03-07T14:34:48.015821-08:00,1970.0,10.849396,10849.396 +4867,2025-03-07T14:34:58.851364-08:00,1991.0,10.835543,10835.543 +4868,2025-03-07T14:35:09.696429-08:00,1995.0,10.845065,10845.065 +4869,2025-03-07T14:35:20.536770-08:00,2002.0,10.840341,10840.341 +4870,2025-03-07T14:35:31.384615-08:00,1947.0,10.847845,10847.845 +4871,2025-03-07T14:35:42.225147-08:00,1999.0,10.840532,10840.532 +4872,2025-03-07T14:35:53.069273-08:00,2001.0,10.844126,10844.126 +4873,2025-03-07T14:36:03.909275-08:00,1999.0,10.840002,10840.002 +4874,2025-03-07T14:36:14.755522-08:00,1932.0,10.846247,10846.247 +4875,2025-03-07T14:36:25.600458-08:00,1974.0,10.844936,10844.936 +4876,2025-03-07T14:36:36.453230-08:00,2000.0,10.852772,10852.772 +4877,2025-03-07T14:36:47.289276-08:00,1942.0,10.836046,10836.046 +4878,2025-03-07T14:36:58.136333-08:00,1954.0,10.847057,10847.057 +4879,2025-03-07T14:37:08.979779-08:00,1959.0,10.843446,10843.446 +4880,2025-03-07T14:37:19.820997-08:00,1947.0,10.841218,10841.218 +4881,2025-03-07T14:37:30.656274-08:00,2000.0,10.835277,10835.277 +4882,2025-03-07T14:37:41.504266-08:00,1921.0,10.847992,10847.992 +4883,2025-03-07T14:37:52.344308-08:00,1959.0,10.840042,10840.042 +4884,2025-03-07T14:38:03.182727-08:00,1969.0,10.838419,10838.419 +4885,2025-03-07T14:38:14.030476-08:00,2000.0,10.847749,10847.749 +4886,2025-03-07T14:38:24.876615-08:00,1953.0,10.846139,10846.139 +4887,2025-03-07T14:38:35.719521-08:00,1955.0,10.842906,10842.906 +4888,2025-03-07T14:38:46.565542-08:00,2000.0,10.846021,10846.021 +4889,2025-03-07T14:38:57.414634-08:00,2000.0,10.849092,10849.092 +4890,2025-03-07T14:39:08.253259-08:00,2002.0,10.838625,10838.625 +4891,2025-03-07T14:39:19.096270-08:00,1978.0,10.843011,10843.011 +4892,2025-03-07T14:39:29.934900-08:00,1990.0,10.83863,10838.63 +4893,2025-03-07T14:39:40.775627-08:00,1953.0,10.840727,10840.727 +4894,2025-03-07T14:39:51.614400-08:00,2000.0,10.838773,10838.773 +4895,2025-03-07T14:40:02.457645-08:00,1929.0,10.843245,10843.245 +4896,2025-03-07T14:40:13.300682-08:00,1950.0,10.843037,10843.037 +4897,2025-03-07T14:40:24.152475-08:00,1962.0,10.851793,10851.793 +4898,2025-03-07T14:40:34.987597-08:00,1981.0,10.835122,10835.122 +4899,2025-03-07T14:40:45.832359-08:00,1935.0,10.844762,10844.762 +4900,2025-03-07T14:40:56.679485-08:00,2002.0,10.847126,10847.126 +4901,2025-03-07T14:41:07.516273-08:00,2000.0,10.836788,10836.788 +4902,2025-03-07T14:41:18.358573-08:00,1997.0,10.8423,10842.3 +4903,2025-03-07T14:41:29.200524-08:00,1959.0,10.841951,10841.951 +4904,2025-03-07T14:41:40.034327-08:00,1929.0,10.833803,10833.803 +4905,2025-03-07T14:41:50.873554-08:00,1968.0,10.839227,10839.227 +4906,2025-03-07T14:42:01.714269-08:00,1985.0,10.840715,10840.715 +4907,2025-03-07T14:42:12.556272-08:00,1964.0,10.842003,10842.003 +4908,2025-03-07T14:42:23.395274-08:00,1971.0,10.839002,10839.002 +4909,2025-03-07T14:42:34.236746-08:00,2000.0,10.841472,10841.472 +4910,2025-03-07T14:42:45.081766-08:00,1957.0,10.84502,10845.02 +4911,2025-03-07T14:42:55.923274-08:00,1968.0,10.841508,10841.508 +4912,2025-03-07T14:43:06.762609-08:00,1919.0,10.839335,10839.335 +4913,2025-03-07T14:43:17.608659-08:00,2001.0,10.84605,10846.05 +4914,2025-03-07T14:43:28.450507-08:00,2000.0,10.841848,10841.848 +4915,2025-03-07T14:43:39.297861-08:00,1972.0,10.847354,10847.354 +4916,2025-03-07T14:43:50.146699-08:00,1993.0,10.848838,10848.838 +4917,2025-03-07T14:44:00.982492-08:00,1926.0,10.835793,10835.793 +4918,2025-03-07T14:44:11.826107-08:00,2000.0,10.843615,10843.615 +4919,2025-03-07T14:44:22.672732-08:00,1982.0,10.846625,10846.625 +4920,2025-03-07T14:44:33.511373-08:00,1931.0,10.838641,10838.641 +4921,2025-03-07T14:44:44.359478-08:00,1935.0,10.848105,10848.105 +4922,2025-03-07T14:44:55.202593-08:00,1968.0,10.843115,10843.115 +4923,2025-03-07T14:45:06.045439-08:00,1921.0,10.842846,10842.846 +4924,2025-03-07T14:45:16.888924-08:00,1949.0,10.843485,10843.485 +4925,2025-03-07T14:45:27.731325-08:00,2000.0,10.842401,10842.401 +4926,2025-03-07T14:45:38.563702-08:00,1993.0,10.832377,10832.377 +4927,2025-03-07T14:45:49.404273-08:00,1950.0,10.840571,10840.571 +4928,2025-03-07T14:46:00.249272-08:00,1996.0,10.844999,10844.999 +4929,2025-03-07T14:46:11.087540-08:00,2002.0,10.838268,10838.268 +4930,2025-03-07T14:46:21.930582-08:00,1968.0,10.843042,10843.042 +4931,2025-03-07T14:46:32.778565-08:00,1934.0,10.847983,10847.983 +4932,2025-03-07T14:46:43.621541-08:00,1937.0,10.842976,10842.976 +4933,2025-03-07T14:46:54.465522-08:00,1973.0,10.843981,10843.981 +4934,2025-03-07T14:47:05.303272-08:00,1987.0,10.83775,10837.75 +4935,2025-03-07T14:47:16.158269-08:00,1995.0,10.854997,10854.997 +4936,2025-03-07T14:47:26.996317-08:00,1959.0,10.838048,10838.048 +4937,2025-03-07T14:47:37.833572-08:00,2000.0,10.837255,10837.255 +4938,2025-03-07T14:47:48.665365-08:00,1983.0,10.831793,10831.793 +4939,2025-03-07T14:47:59.506275-08:00,2003.0,10.84091,10840.91 +4940,2025-03-07T14:48:10.343272-08:00,1985.0,10.836997,10836.997 +4941,2025-03-07T14:48:21.188272-08:00,1968.0,10.845,10845.0 +4942,2025-03-07T14:48:32.026660-08:00,1999.0,10.838388,10838.388 +4943,2025-03-07T14:48:42.873486-08:00,1923.0,10.846826,10846.826 +4944,2025-03-07T14:48:53.716247-08:00,1968.0,10.842761,10842.761 +4945,2025-03-07T14:49:04.565475-08:00,1987.0,10.849228,10849.228 +4946,2025-03-07T14:49:15.408338-08:00,2002.0,10.842863,10842.863 +4947,2025-03-07T14:49:26.257674-08:00,1968.0,10.849336,10849.336 +4948,2025-03-07T14:49:37.095414-08:00,1966.0,10.83774,10837.74 +4949,2025-03-07T14:49:47.946528-08:00,1997.0,10.851114,10851.114 +4950,2025-03-07T14:49:58.782271-08:00,1998.0,10.835743,10835.743 +4951,2025-03-07T14:50:09.627327-08:00,2003.0,10.845056,10845.056 +4952,2025-03-07T14:50:20.473563-08:00,1984.0,10.846236,10846.236 +4953,2025-03-07T14:50:31.317805-08:00,2003.0,10.844242,10844.242 +4954,2025-03-07T14:50:42.165265-08:00,1998.0,10.84746,10847.46 +4955,2025-03-07T14:50:53.003457-08:00,2000.0,10.838192,10838.192 +4956,2025-03-07T14:51:03.856394-08:00,2003.0,10.852937,10852.937 +4957,2025-03-07T14:51:14.695241-08:00,2000.0,10.838847,10838.847 +4958,2025-03-07T14:51:25.543419-08:00,1997.0,10.848178,10848.178 +4959,2025-03-07T14:51:36.395097-08:00,1983.0,10.851678,10851.678 +4960,2025-03-07T14:51:47.233280-08:00,2000.0,10.838183,10838.183 +4961,2025-03-07T14:51:58.082268-08:00,2000.0,10.848988,10848.988 +4962,2025-03-07T14:52:08.927281-08:00,1985.0,10.845013,10845.013 +4963,2025-03-07T14:52:19.767613-08:00,1991.0,10.840332,10840.332 +4964,2025-03-07T14:52:30.600265-08:00,2000.0,10.832652,10832.652 +4965,2025-03-07T14:52:41.444629-08:00,1955.0,10.844364,10844.364 +4966,2025-03-07T14:52:52.287602-08:00,2002.0,10.842973,10842.973 +4967,2025-03-07T14:53:03.130090-08:00,1998.0,10.842488,10842.488 +4968,2025-03-07T14:53:13.972272-08:00,1997.0,10.842182,10842.182 +4969,2025-03-07T14:53:24.821529-08:00,2002.0,10.849257,10849.257 +4970,2025-03-07T14:53:35.671272-08:00,1956.0,10.849743,10849.743 +4971,2025-03-07T14:53:46.509282-08:00,1997.0,10.83801,10838.01 +4972,2025-03-07T14:53:57.358480-08:00,1966.0,10.849198,10849.198 +4973,2025-03-07T14:54:08.201317-08:00,1950.0,10.842837,10842.837 +4974,2025-03-07T14:54:19.044274-08:00,1999.0,10.842957,10842.957 +4975,2025-03-07T14:54:29.886904-08:00,1970.0,10.84263,10842.63 +4976,2025-03-07T14:54:40.725757-08:00,1997.0,10.838853,10838.853 +4977,2025-03-07T14:54:51.571105-08:00,1983.0,10.845348,10845.348 +4978,2025-03-07T14:55:02.412320-08:00,2000.0,10.841215,10841.215 +4979,2025-03-07T14:55:13.260271-08:00,1991.0,10.847951,10847.951 +4980,2025-03-07T14:55:24.097427-08:00,1910.0,10.837156,10837.156 +4981,2025-03-07T14:55:34.942609-08:00,1994.0,10.845182,10845.182 +4982,2025-03-07T14:55:45.799564-08:00,1948.0,10.856955,10856.955 +4983,2025-03-07T14:55:56.632530-08:00,1953.0,10.832966,10832.966 +4984,2025-03-07T14:56:07.480278-08:00,1914.0,10.847748,10847.748 +4985,2025-03-07T14:56:18.329255-08:00,1999.0,10.848977,10848.977 +4986,2025-03-07T14:56:29.172613-08:00,1950.0,10.843358,10843.358 +4987,2025-03-07T14:56:40.015989-08:00,1982.0,10.843376,10843.376 +4988,2025-03-07T14:56:50.853496-08:00,1967.0,10.837507,10837.507 +4989,2025-03-07T14:57:01.701269-08:00,1965.0,10.847773,10847.773 +4990,2025-03-07T14:57:12.555503-08:00,1935.0,10.854234,10854.234 +4991,2025-03-07T14:57:23.398466-08:00,1969.0,10.842963,10842.963 +4992,2025-03-07T14:57:34.238603-08:00,2003.0,10.840137,10840.137 +4993,2025-03-07T14:57:45.085428-08:00,2000.0,10.846825,10846.825 +4994,2025-03-07T14:57:55.926272-08:00,1951.0,10.840844,10840.844 +4995,2025-03-07T14:58:06.773662-08:00,1923.0,10.84739,10847.39 +4996,2025-03-07T14:58:17.620971-08:00,1945.0,10.847309,10847.309 +4997,2025-03-07T14:58:28.469821-08:00,1973.0,10.84885,10848.85 +4998,2025-03-07T14:58:39.317440-08:00,1949.0,10.847619,10847.619 +4999,2025-03-07T14:58:50.161460-08:00,1972.0,10.84402,10844.02 +5000,2025-03-07T14:59:01.005384-08:00,2006.0,10.843924,10843.924 +5001,2025-03-07T14:59:11.852274-08:00,1999.0,10.84689,10846.89 +5002,2025-03-07T14:59:22.705602-08:00,2003.0,10.853328,10853.328 +5003,2025-03-07T14:59:33.545401-08:00,1994.0,10.839799,10839.799 +5004,2025-03-07T14:59:44.394580-08:00,1959.0,10.849179,10849.179 +5005,2025-03-07T14:59:55.238321-08:00,1988.0,10.843741,10843.741 +5006,2025-03-07T15:00:06.095574-08:00,1921.0,10.857253,10857.253 +5007,2025-03-07T15:00:16.940265-08:00,1978.0,10.844691,10844.691 +5008,2025-03-07T15:00:18.333918-08:00,1988.0,1.393653,1393.653 +5009,2025-03-07T15:00:38.632766-08:00,1997.0,20.298848,20298.848 +5010,2025-03-07T15:00:49.471846-08:00,1987.0,10.83908,10839.08 +5011,2025-03-07T15:01:00.324100-08:00,1917.0,10.852254,10852.254 +5012,2025-03-07T15:01:11.177299-08:00,1915.0,10.853199,10853.199 +5013,2025-03-07T15:01:22.025260-08:00,1991.0,10.847961,10847.961 +5014,2025-03-07T15:01:32.866245-08:00,2003.0,10.840985,10840.985 +5015,2025-03-07T15:01:43.723374-08:00,2007.0,10.857129,10857.129 +5016,2025-03-07T15:01:54.562484-08:00,1957.0,10.83911,10839.11 +5017,2025-03-07T15:02:05.407357-08:00,1965.0,10.844873,10844.873 +5018,2025-03-07T15:02:16.251613-08:00,1935.0,10.844256,10844.256 +5019,2025-03-07T15:02:27.097630-08:00,1993.0,10.846017,10846.017 +5020,2025-03-07T15:02:37.950312-08:00,1941.0,10.852682,10852.682 +5021,2025-03-07T15:02:48.800329-08:00,1982.0,10.850017,10850.017 +5022,2025-03-07T15:02:59.643395-08:00,1921.0,10.843066,10843.066 +5023,2025-03-07T15:03:10.483168-08:00,1968.0,10.839773,10839.773 +5024,2025-03-07T15:03:21.330485-08:00,1986.0,10.847317,10847.317 +5025,2025-03-07T15:03:32.176252-08:00,1967.0,10.845767,10845.767 +5026,2025-03-07T15:03:43.024430-08:00,1983.0,10.848178,10848.178 +5027,2025-03-07T15:03:53.868275-08:00,1935.0,10.843845,10843.845 +5028,2025-03-07T15:04:04.724497-08:00,1955.0,10.856222,10856.222 +5029,2025-03-07T15:04:15.570280-08:00,1994.0,10.845783,10845.783 +5030,2025-03-07T15:04:26.423401-08:00,1949.0,10.853121,10853.121 +5031,2025-03-07T15:04:37.272275-08:00,2006.0,10.848874,10848.874 +5032,2025-03-07T15:04:48.114560-08:00,2003.0,10.842285,10842.285 +5033,2025-03-07T15:04:58.969594-08:00,1948.0,10.855034,10855.034 +5034,2025-03-07T15:05:09.806281-08:00,2003.0,10.836687,10836.687 +5035,2025-03-07T15:05:20.649881-08:00,1998.0,10.8436,10843.6 +5036,2025-03-07T15:05:31.498523-08:00,2005.0,10.848642,10848.642 +5037,2025-03-07T15:05:42.427379-08:00,1970.0,10.928856,10928.856 +5038,2025-03-07T15:05:53.277749-08:00,1967.0,10.85037,10850.37 +5039,2025-03-07T15:06:04.123743-08:00,2002.0,10.845994,10845.994 +5040,2025-03-07T15:06:14.962947-08:00,1946.0,10.839204,10839.204 +5041,2025-03-07T15:06:25.811939-08:00,2004.0,10.848992,10848.992 +5042,2025-03-07T15:06:36.648329-08:00,2000.0,10.83639,10836.39 +5043,2025-03-07T15:06:47.496486-08:00,2002.0,10.848157,10848.157 +5044,2025-03-07T15:06:58.346377-08:00,2002.0,10.849891,10849.891 +5045,2025-03-07T15:07:09.182996-08:00,1971.0,10.836619,10836.619 +5046,2025-03-07T15:07:20.036939-08:00,1983.0,10.853943,10853.943 +5047,2025-03-07T15:07:30.880323-08:00,1982.0,10.843384,10843.384 +5048,2025-03-07T15:07:41.718232-08:00,1958.0,10.837909,10837.909 +5049,2025-03-07T15:07:52.560946-08:00,1985.0,10.842714,10842.714 +5050,2025-03-07T15:08:03.403926-08:00,2004.0,10.84298,10842.98 +5051,2025-03-07T15:08:14.259936-08:00,1947.0,10.85601,10856.01 +5052,2025-03-07T15:08:25.095944-08:00,1923.0,10.836008,10836.008 +5053,2025-03-07T15:08:35.949208-08:00,1981.0,10.853264,10853.264 +5054,2025-03-07T15:08:46.789257-08:00,1996.0,10.840049,10840.049 +5055,2025-03-07T15:08:57.629948-08:00,2005.0,10.840691,10840.691 +5056,2025-03-07T15:09:08.474042-08:00,1943.0,10.844094,10844.094 +5057,2025-03-07T15:09:19.330107-08:00,1987.0,10.856065,10856.065 +5058,2025-03-07T15:09:30.173393-08:00,2006.0,10.843286,10843.286 +5059,2025-03-07T15:09:41.025374-08:00,1951.0,10.851981,10851.981 +5060,2025-03-07T15:09:51.875565-08:00,2001.0,10.850191,10850.191 +5061,2025-03-07T15:10:02.713922-08:00,1987.0,10.838357,10838.357 +5062,2025-03-07T15:10:13.567573-08:00,1998.0,10.853651,10853.651 +5063,2025-03-07T15:10:24.414255-08:00,1994.0,10.846682,10846.682 +5064,2025-03-07T15:10:35.253002-08:00,1993.0,10.838747,10838.747 +5065,2025-03-07T15:10:46.099201-08:00,1948.0,10.846199,10846.199 +5066,2025-03-07T15:10:56.945567-08:00,2001.0,10.846366,10846.366 +5067,2025-03-07T15:11:07.790336-08:00,1989.0,10.844769,10844.769 +5068,2025-03-07T15:11:18.636943-08:00,1957.0,10.846607,10846.607 +5069,2025-03-07T15:11:29.478995-08:00,1983.0,10.842052,10842.052 +5070,2025-03-07T15:11:40.335939-08:00,1949.0,10.856944,10856.944 +5071,2025-03-07T15:11:51.170409-08:00,2007.0,10.83447,10834.47 +5072,2025-03-07T15:12:02.027257-08:00,1968.0,10.856848,10856.848 +5073,2025-03-07T15:12:12.875306-08:00,1939.0,10.848049,10848.049 +5074,2025-03-07T15:12:23.711943-08:00,1968.0,10.836637,10836.637 +5075,2025-03-07T15:12:34.560939-08:00,1966.0,10.848996,10848.996 +5076,2025-03-07T15:12:45.397950-08:00,1968.0,10.837011,10837.011 +5077,2025-03-07T15:12:56.248275-08:00,1961.0,10.850325,10850.325 +5078,2025-03-07T15:13:07.092274-08:00,1938.0,10.843999,10843.999 +5079,2025-03-07T15:13:17.933160-08:00,2003.0,10.840886,10840.886 +5080,2025-03-07T15:13:28.771218-08:00,2007.0,10.838058,10838.058 +5081,2025-03-07T15:13:39.620949-08:00,2005.0,10.849731,10849.731 +5082,2025-03-07T15:13:50.464283-08:00,1925.0,10.843334,10843.334 +5083,2025-03-07T15:14:01.318764-08:00,1929.0,10.854481,10854.481 +5084,2025-03-07T15:14:12.167030-08:00,1942.0,10.848266,10848.266 +5085,2025-03-07T15:14:23.008263-08:00,1942.0,10.841233,10841.233 +5086,2025-03-07T15:14:33.849943-08:00,1968.0,10.84168,10841.68 +5087,2025-03-07T15:14:44.695944-08:00,1972.0,10.846001,10846.001 +5088,2025-03-07T15:14:55.545142-08:00,2003.0,10.849198,10849.198 +5089,2025-03-07T15:15:06.391280-08:00,2006.0,10.846138,10846.138 +5090,2025-03-07T15:15:17.248779-08:00,1968.0,10.857499,10857.499 +5091,2025-03-07T15:15:28.090994-08:00,1973.0,10.842215,10842.215 +5092,2025-03-07T15:15:38.934201-08:00,2003.0,10.843207,10843.207 +5093,2025-03-07T15:15:49.781938-08:00,1963.0,10.847737,10847.737 +5094,2025-03-07T15:16:00.627466-08:00,2006.0,10.845528,10845.528 +5095,2025-03-07T15:16:11.469225-08:00,1974.0,10.841759,10841.759 +5096,2025-03-07T15:16:22.311944-08:00,1945.0,10.842719,10842.719 +5097,2025-03-07T15:16:33.161203-08:00,1947.0,10.849259,10849.259 +5098,2025-03-07T15:16:43.997941-08:00,2005.0,10.836738,10836.738 +5099,2025-03-07T15:16:54.854421-08:00,1999.0,10.85648,10856.48 +5100,2025-03-07T15:17:05.690471-08:00,1977.0,10.83605,10836.05 +5101,2025-03-07T15:17:16.545244-08:00,1991.0,10.854773,10854.773 +5102,2025-03-07T15:17:27.388393-08:00,1967.0,10.843149,10843.149 +5103,2025-03-07T15:17:38.237951-08:00,2005.0,10.849558,10849.558 +5104,2025-03-07T15:17:49.090185-08:00,2001.0,10.852234,10852.234 +5105,2025-03-07T15:17:59.935086-08:00,1921.0,10.844901,10844.901 +5106,2025-03-07T15:18:10.778648-08:00,1927.0,10.843562,10843.562 +5107,2025-03-07T15:18:21.622839-08:00,2000.0,10.844191,10844.191 +5108,2025-03-07T15:18:32.473988-08:00,1962.0,10.851149,10851.149 +5109,2025-03-07T15:18:43.324587-08:00,1969.0,10.850599,10850.599 +5110,2025-03-07T15:18:54.172945-08:00,2005.0,10.848358,10848.358 +5111,2025-03-07T15:19:05.019939-08:00,1964.0,10.846994,10846.994 +5112,2025-03-07T15:19:15.858981-08:00,1954.0,10.839042,10839.042 +5113,2025-03-07T15:19:26.708502-08:00,1958.0,10.849521,10849.521 +5114,2025-03-07T15:19:37.562002-08:00,1930.0,10.8535,10853.5 +5115,2025-03-07T15:19:48.404247-08:00,1926.0,10.842245,10842.245 +5116,2025-03-07T15:19:59.241947-08:00,1968.0,10.8377,10837.7 +5117,2025-03-07T15:20:10.084942-08:00,1969.0,10.842995,10842.995 +5118,2025-03-07T15:20:20.922290-08:00,1978.0,10.837348,10837.348 +5119,2025-03-07T15:20:31.761247-08:00,1967.0,10.838957,10838.957 +5120,2025-03-07T15:20:42.603172-08:00,2005.0,10.841925,10841.925 +5121,2025-03-07T15:20:53.457998-08:00,2003.0,10.854826,10854.826 +5122,2025-03-07T15:21:04.291952-08:00,1922.0,10.833954,10833.954 +5123,2025-03-07T15:21:15.138397-08:00,2003.0,10.846445,10846.445 +5124,2025-03-07T15:21:25.976944-08:00,1987.0,10.838547,10838.547 +5125,2025-03-07T15:21:36.823393-08:00,1966.0,10.846449,10846.449 +5126,2025-03-07T15:21:47.670634-08:00,2006.0,10.847241,10847.241 +5127,2025-03-07T15:21:58.516332-08:00,2001.0,10.845698,10845.698 +5128,2025-03-07T15:22:09.364378-08:00,1987.0,10.848046,10848.046 +5129,2025-03-07T15:22:20.196945-08:00,1936.0,10.832567,10832.567 +5130,2025-03-07T15:22:31.046069-08:00,2005.0,10.849124,10849.124 +5131,2025-03-07T15:22:41.901080-08:00,1984.0,10.855011,10855.011 +5132,2025-03-07T15:22:52.741139-08:00,1968.0,10.840059,10840.059 +5133,2025-03-07T15:23:03.594950-08:00,1999.0,10.853811,10853.811 +5134,2025-03-07T15:23:14.441948-08:00,1931.0,10.846998,10846.998 +5135,2025-03-07T15:23:25.285257-08:00,1956.0,10.843309,10843.309 +5136,2025-03-07T15:23:36.134128-08:00,1997.0,10.848871,10848.871 +5137,2025-03-07T15:23:46.987355-08:00,1968.0,10.853227,10853.227 +5138,2025-03-07T15:23:57.841000-08:00,1953.0,10.853645,10853.645 +5139,2025-03-07T15:24:08.681232-08:00,1986.0,10.840232,10840.232 +5140,2025-03-07T15:24:19.527948-08:00,1922.0,10.846716,10846.716 +5141,2025-03-07T15:24:30.369363-08:00,1971.0,10.841415,10841.415 +5142,2025-03-07T15:24:41.220908-08:00,1968.0,10.851545,10851.545 +5143,2025-03-07T15:24:52.053197-08:00,1947.0,10.832289,10832.289 +5144,2025-03-07T15:25:02.897926-08:00,1931.0,10.844729,10844.729 +5145,2025-03-07T15:25:13.744932-08:00,1917.0,10.847006,10847.006 +5146,2025-03-07T15:25:24.591221-08:00,1981.0,10.846289,10846.289 +5147,2025-03-07T15:25:35.422926-08:00,1957.0,10.831705,10831.705 +5148,2025-03-07T15:25:46.270945-08:00,2004.0,10.848019,10848.019 +5149,2025-03-07T15:25:57.105344-08:00,1997.0,10.834399,10834.399 +5150,2025-03-07T15:26:06.218928-08:00,1965.0,9.113584,9113.584 +5151,2025-03-07T15:26:07.958331-08:00,1987.0,1.739403,1739.403 +5152,2025-03-07T15:26:18.795937-08:00,1993.0,10.837606,10837.606 +5153,2025-03-07T15:26:29.637946-08:00,2002.0,10.842009,10842.009 +5154,2025-03-07T15:26:40.487194-08:00,1915.0,10.849248,10849.248 +5155,2025-03-07T15:26:51.327946-08:00,1998.0,10.840752,10840.752 +5156,2025-03-07T15:27:02.180953-08:00,1964.0,10.853007,10853.007 +5157,2025-03-07T15:27:13.017535-08:00,2005.0,10.836582,10836.582 +5158,2025-03-07T15:27:23.861650-08:00,1975.0,10.844115,10844.115 +5159,2025-03-07T15:27:34.703951-08:00,2003.0,10.842301,10842.301 +5160,2025-03-07T15:27:45.546588-08:00,1987.0,10.842637,10842.637 +5161,2025-03-07T15:27:56.395796-08:00,1954.0,10.849208,10849.208 +5162,2025-03-07T15:28:07.238955-08:00,2003.0,10.843159,10843.159 +5163,2025-03-07T15:28:18.074145-08:00,1968.0,10.83519,10835.19 +5164,2025-03-07T15:28:28.914944-08:00,1942.0,10.840799,10840.799 +5165,2025-03-07T15:28:39.762307-08:00,2003.0,10.847363,10847.363 +5166,2025-03-07T15:28:50.611376-08:00,1995.0,10.849069,10849.069 +5167,2025-03-07T15:29:01.458288-08:00,1970.0,10.846912,10846.912 +5168,2025-03-07T15:29:12.292635-08:00,2002.0,10.834347,10834.347 +5169,2025-03-07T15:29:23.146008-08:00,2002.0,10.853373,10853.373 +5170,2025-03-07T15:29:33.992425-08:00,2000.0,10.846417,10846.417 +5171,2025-03-07T15:29:44.843320-08:00,2000.0,10.850895,10850.895 +5172,2025-03-07T15:29:55.693286-08:00,1955.0,10.849966,10849.966 +5173,2025-03-07T15:30:06.542284-08:00,1959.0,10.848998,10848.998 +5174,2025-03-07T15:30:17.389092-08:00,2003.0,10.846808,10846.808 +5175,2025-03-07T15:30:28.239973-08:00,2001.0,10.850881,10850.881 +5176,2025-03-07T15:30:39.089948-08:00,1998.0,10.849975,10849.975 +5177,2025-03-07T15:30:49.931175-08:00,2002.0,10.841227,10841.227 +5178,2025-03-07T15:31:00.775945-08:00,1999.0,10.84477,10844.77 +5179,2025-03-07T15:31:11.628089-08:00,2005.0,10.852144,10852.144 +5180,2025-03-07T15:31:22.476249-08:00,1998.0,10.84816,10848.16 +5181,2025-03-07T15:31:33.319631-08:00,2007.0,10.843382,10843.382 +5182,2025-03-07T15:31:44.173114-08:00,2003.0,10.853483,10853.483 +5183,2025-03-07T15:31:55.015989-08:00,2000.0,10.842875,10842.875 +5184,2025-03-07T15:32:05.867339-08:00,1975.0,10.85135,10851.35 +5185,2025-03-07T15:32:16.717057-08:00,1926.0,10.849718,10849.718 +5186,2025-03-07T15:32:27.558294-08:00,1990.0,10.841237,10841.237 +5187,2025-03-07T15:32:38.401964-08:00,1979.0,10.84367,10843.67 +5188,2025-03-07T15:32:49.253961-08:00,2005.0,10.851997,10851.997 +5189,2025-03-07T15:33:00.097328-08:00,1997.0,10.843367,10843.367 +5190,2025-03-07T15:33:10.945949-08:00,1974.0,10.848621,10848.621 +5191,2025-03-07T15:33:21.791885-08:00,1934.0,10.845936,10845.936 +5192,2025-03-07T15:33:32.636987-08:00,1968.0,10.845102,10845.102 +5193,2025-03-07T15:33:43.491198-08:00,1925.0,10.854211,10854.211 +5194,2025-03-07T15:33:54.333294-08:00,2005.0,10.842096,10842.096 +5195,2025-03-07T15:34:05.174949-08:00,2000.0,10.841655,10841.655 +5196,2025-03-07T15:34:16.024940-08:00,1958.0,10.849991,10849.991 +5197,2025-03-07T15:34:26.877943-08:00,1995.0,10.853003,10853.003 +5198,2025-03-07T15:34:37.720550-08:00,1941.0,10.842607,10842.607 +5199,2025-03-07T15:34:48.563251-08:00,1969.0,10.842701,10842.701 +5200,2025-03-07T15:34:59.419313-08:00,1935.0,10.856062,10856.062 +5201,2025-03-07T15:35:10.262405-08:00,1969.0,10.843092,10843.092 +5202,2025-03-07T15:35:21.118829-08:00,2005.0,10.856424,10856.424 +5203,2025-03-07T15:35:31.957947-08:00,2002.0,10.839118,10839.118 +5204,2025-03-07T15:35:42.815598-08:00,2007.0,10.857651,10857.651 +5205,2025-03-07T15:35:53.669210-08:00,1968.0,10.853612,10853.612 +5206,2025-03-07T15:36:04.520984-08:00,1989.0,10.851774,10851.774 +5207,2025-03-07T15:36:15.370083-08:00,1949.0,10.849099,10849.099 +5208,2025-03-07T15:36:26.230966-08:00,2006.0,10.860883,10860.883 +5209,2025-03-07T15:36:37.086932-08:00,1999.0,10.855966,10855.966 +5210,2025-03-07T15:36:47.947926-08:00,1937.0,10.860994,10860.994 +5211,2025-03-07T15:36:58.800944-08:00,2000.0,10.853018,10853.018 +5212,2025-03-07T15:37:09.657169-08:00,1967.0,10.856225,10856.225 +5213,2025-03-07T15:37:20.508946-08:00,2004.0,10.851777,10851.777 +5214,2025-03-07T15:37:31.363183-08:00,1925.0,10.854237,10854.237 +5215,2025-03-07T15:37:42.209946-08:00,2001.0,10.846763,10846.763 +5216,2025-03-07T15:37:53.066168-08:00,1968.0,10.856222,10856.222 +5217,2025-03-07T15:38:03.909944-08:00,1994.0,10.843776,10843.776 +5218,2025-03-07T15:38:14.763944-08:00,1975.0,10.854,10854.0 +5219,2025-03-07T15:38:25.617949-08:00,1921.0,10.854005,10854.005 +5220,2025-03-07T15:38:36.462950-08:00,1973.0,10.845001,10845.001 +5221,2025-03-07T15:38:47.308247-08:00,1968.0,10.845297,10845.297 +5222,2025-03-07T15:38:58.163247-08:00,2005.0,10.855,10855.0 +5223,2025-03-07T15:39:09.015396-08:00,1999.0,10.852149,10852.149 +5224,2025-03-07T15:39:19.856294-08:00,1968.0,10.840898,10840.898 +5225,2025-03-07T15:39:30.710978-08:00,1975.0,10.854684,10854.684 +5226,2025-03-07T15:39:41.555950-08:00,1991.0,10.844972,10844.972 +5227,2025-03-07T15:39:52.415211-08:00,2000.0,10.859261,10859.261 +5228,2025-03-07T15:40:03.264034-08:00,1925.0,10.848823,10848.823 +5229,2025-03-07T15:40:14.119940-08:00,1934.0,10.855906,10855.906 +5230,2025-03-07T15:40:24.972949-08:00,1962.0,10.853009,10853.009 +5231,2025-03-07T15:40:35.828275-08:00,1968.0,10.855326,10855.326 +5232,2025-03-07T15:40:46.672957-08:00,1983.0,10.844682,10844.682 +5233,2025-03-07T15:40:57.525020-08:00,1952.0,10.852063,10852.063 +5234,2025-03-07T15:41:08.370278-08:00,1936.0,10.845258,10845.258 +5235,2025-03-07T15:41:19.225389-08:00,1968.0,10.855111,10855.111 +5236,2025-03-07T15:41:30.075410-08:00,1930.0,10.850021,10850.021 +5237,2025-03-07T15:41:40.928017-08:00,1996.0,10.852607,10852.607 +5238,2025-03-07T15:41:51.775851-08:00,1962.0,10.847834,10847.834 +5239,2025-03-07T15:42:02.629780-08:00,1991.0,10.853929,10853.929 +5240,2025-03-07T15:42:13.490060-08:00,1977.0,10.86028,10860.28 +5241,2025-03-07T15:42:24.344266-08:00,1942.0,10.854206,10854.206 +5242,2025-03-07T15:42:35.202392-08:00,2004.0,10.858126,10858.126 +5243,2025-03-07T15:42:46.051195-08:00,1959.0,10.848803,10848.803 +5244,2025-03-07T15:42:56.896939-08:00,1997.0,10.845744,10845.744 +5245,2025-03-07T15:43:07.756065-08:00,1967.0,10.859126,10859.126 +5246,2025-03-07T15:43:18.605082-08:00,1938.0,10.849017,10849.017 +5247,2025-03-07T15:43:29.459945-08:00,1995.0,10.854863,10854.863 +5248,2025-03-07T15:43:40.302950-08:00,1989.0,10.843005,10843.005 +5249,2025-03-07T15:43:51.158941-08:00,1968.0,10.855991,10855.991 +5250,2025-03-07T15:44:02.016153-08:00,2000.0,10.857212,10857.212 +5251,2025-03-07T15:44:12.865944-08:00,1982.0,10.849791,10849.791 +5252,2025-03-07T15:44:23.719219-08:00,1939.0,10.853275,10853.275 +5253,2025-03-07T15:44:34.575943-08:00,1947.0,10.856724,10856.724 +5254,2025-03-07T15:44:45.423253-08:00,1936.0,10.84731,10847.31 +5255,2025-03-07T15:44:56.262114-08:00,1977.0,10.838861,10838.861 +5256,2025-03-07T15:45:07.110591-08:00,2007.0,10.848477,10848.477 +5257,2025-03-07T15:45:17.957383-08:00,2000.0,10.846792,10846.792 +5258,2025-03-07T15:45:28.802948-08:00,1949.0,10.845565,10845.565 +5259,2025-03-07T15:45:39.651276-08:00,1951.0,10.848328,10848.328 +5260,2025-03-07T15:45:50.505947-08:00,1983.0,10.854671,10854.671 +5261,2025-03-07T15:46:01.348435-08:00,2006.0,10.842488,10842.488 +5262,2025-03-07T15:46:12.197246-08:00,1984.0,10.848811,10848.811 +5263,2025-03-07T15:46:23.041062-08:00,2001.0,10.843816,10843.816 +5264,2025-03-07T15:46:33.889229-08:00,1950.0,10.848167,10848.167 +5265,2025-03-07T15:46:44.720006-08:00,1961.0,10.830777,10830.777 +5266,2025-03-07T15:46:55.562640-08:00,1969.0,10.842634,10842.634 +5267,2025-03-07T15:47:06.403249-08:00,1987.0,10.840609,10840.609 +5268,2025-03-07T15:47:17.238939-08:00,1985.0,10.83569,10835.69 +5269,2025-03-07T15:47:28.091185-08:00,2005.0,10.852246,10852.246 +5270,2025-03-07T15:47:38.935947-08:00,1999.0,10.844762,10844.762 +5271,2025-03-07T15:47:49.773290-08:00,1953.0,10.837343,10837.343 +5272,2025-03-07T15:48:00.622518-08:00,1959.0,10.849228,10849.228 +5273,2025-03-07T15:48:11.463944-08:00,2002.0,10.841426,10841.426 +5274,2025-03-07T15:48:22.307336-08:00,1936.0,10.843392,10843.392 +5275,2025-03-07T15:48:33.158070-08:00,2010.0,10.850734,10850.734 +5276,2025-03-07T15:48:43.995732-08:00,1937.0,10.837662,10837.662 +5277,2025-03-07T15:48:54.850318-08:00,1975.0,10.854586,10854.586 +5278,2025-03-07T15:49:05.686926-08:00,1981.0,10.836608,10836.608 +5279,2025-03-07T15:49:16.535962-08:00,1968.0,10.849036,10849.036 +5280,2025-03-07T15:49:27.378950-08:00,1961.0,10.842988,10842.988 +5281,2025-03-07T15:49:38.227257-08:00,1973.0,10.848307,10848.307 +5282,2025-03-07T15:49:49.065919-08:00,1985.0,10.838662,10838.662 +5283,2025-03-07T15:49:59.906921-08:00,1985.0,10.841002,10841.002 +5284,2025-03-07T15:50:10.748945-08:00,2018.0,10.842024,10842.024 +5285,2025-03-07T15:50:21.592949-08:00,2000.0,10.844004,10844.004 +5286,2025-03-07T15:50:32.435261-08:00,1971.0,10.842312,10842.312 +5287,2025-03-07T15:50:43.272937-08:00,1997.0,10.837676,10837.676 +5288,2025-03-07T15:50:54.117984-08:00,1985.0,10.845047,10845.047 +5289,2025-03-07T15:51:04.955561-08:00,2017.0,10.837577,10837.577 +5290,2025-03-07T15:51:15.809136-08:00,2019.0,10.853575,10853.575 +5291,2025-03-07T15:51:26.647944-08:00,2017.0,10.838808,10838.808 +5292,2025-03-07T15:51:37.500939-08:00,1967.0,10.852995,10852.995 +5293,2025-03-07T15:51:48.344926-08:00,1997.0,10.843987,10843.987 +5294,2025-03-07T15:51:59.193221-08:00,1947.0,10.848295,10848.295 +5295,2025-03-07T15:52:10.036143-08:00,1986.0,10.842922,10842.922 +5296,2025-03-07T15:52:20.886949-08:00,2009.0,10.850806,10850.806 +5297,2025-03-07T15:52:31.734237-08:00,2010.0,10.847288,10847.288 +5298,2025-03-07T15:52:42.572433-08:00,1975.0,10.838196,10838.196 +5299,2025-03-07T15:52:53.419251-08:00,1949.0,10.846818,10846.818 +5300,2025-03-07T15:53:04.275197-08:00,1936.0,10.855946,10855.946 +5301,2025-03-07T15:53:15.122951-08:00,1985.0,10.847754,10847.754 +5302,2025-03-07T15:53:25.966191-08:00,2000.0,10.84324,10843.24 +5303,2025-03-07T15:53:36.821043-08:00,1963.0,10.854852,10854.852 +5304,2025-03-07T15:53:47.669280-08:00,1979.0,10.848237,10848.237 +5305,2025-03-07T15:53:58.518635-08:00,2001.0,10.849355,10849.355 +5306,2025-03-07T15:54:09.358942-08:00,2017.0,10.840307,10840.307 +5307,2025-03-07T15:54:20.216941-08:00,1967.0,10.857999,10857.999 +5308,2025-03-07T15:54:31.062943-08:00,1937.0,10.846002,10846.002 +5309,2025-03-07T15:54:41.903991-08:00,1991.0,10.841048,10841.048 +5310,2025-03-07T15:54:52.749176-08:00,1981.0,10.845185,10845.185 +5311,2025-03-07T15:55:03.601231-08:00,2021.0,10.852055,10852.055 +5312,2025-03-07T15:55:14.455164-08:00,1981.0,10.853933,10853.933 +5313,2025-03-07T15:55:25.300052-08:00,1957.0,10.844888,10844.888 +5314,2025-03-07T15:55:36.152255-08:00,2022.0,10.852203,10852.203 +5315,2025-03-07T15:55:46.989943-08:00,1998.0,10.837688,10837.688 +5316,2025-03-07T15:55:57.844200-08:00,2022.0,10.854257,10854.257 +5317,2025-03-07T15:56:08.687230-08:00,1969.0,10.84303,10843.03 +5318,2025-03-07T15:56:19.529303-08:00,2015.0,10.842073,10842.073 +5319,2025-03-07T15:56:30.363033-08:00,1932.0,10.83373,10833.73 +5320,2025-03-07T15:56:41.204004-08:00,2005.0,10.840971,10840.971 +5321,2025-03-07T15:56:52.047552-08:00,1990.0,10.843548,10843.548 +5322,2025-03-07T15:57:02.892118-08:00,1934.0,10.844566,10844.566 +5323,2025-03-07T15:57:13.744552-08:00,1979.0,10.852434,10852.434 +5324,2025-03-07T15:57:24.582954-08:00,1999.0,10.838402,10838.402 +5325,2025-03-07T15:57:35.427948-08:00,2005.0,10.844994,10844.994 +5326,2025-03-07T15:57:46.280054-08:00,1953.0,10.852106,10852.106 +5327,2025-03-07T15:57:57.125949-08:00,1964.0,10.845895,10845.895 +5328,2025-03-07T15:58:07.970368-08:00,1983.0,10.844419,10844.419 +5329,2025-03-07T15:58:18.810236-08:00,1978.0,10.839868,10839.868 +5330,2025-03-07T15:58:29.655455-08:00,2023.0,10.845219,10845.219 +5331,2025-03-07T15:58:40.508065-08:00,1979.0,10.85261,10852.61 +5332,2025-03-07T15:58:51.351945-08:00,1959.0,10.84388,10843.88 +5333,2025-03-07T15:59:02.187495-08:00,1951.0,10.83555,10835.55 +5334,2025-03-07T15:59:13.037674-08:00,2023.0,10.850179,10850.179 +5335,2025-03-07T15:59:23.875943-08:00,2026.0,10.838269,10838.269 +5336,2025-03-07T15:59:34.717949-08:00,2003.0,10.842006,10842.006 +5337,2025-03-07T15:59:45.560290-08:00,2019.0,10.842341,10842.341 +5338,2025-03-07T15:59:56.403484-08:00,1979.0,10.843194,10843.194 +5339,2025-03-07T16:00:07.251944-08:00,1933.0,10.84846,10848.46 +5340,2025-03-07T16:00:18.089943-08:00,1983.0,10.837999,10837.999 +5341,2025-03-07T16:00:28.933243-08:00,1961.0,10.8433,10843.3 +5342,2025-03-07T16:00:39.771338-08:00,2016.0,10.838095,10838.095 +5343,2025-03-07T16:00:50.616181-08:00,1999.0,10.844843,10844.843 +5344,2025-03-07T16:01:01.458846-08:00,1945.0,10.842665,10842.665 +5345,2025-03-07T16:01:12.294316-08:00,2000.0,10.83547,10835.47 +5346,2025-03-07T16:01:23.148253-08:00,1989.0,10.853937,10853.937 +5347,2025-03-07T16:01:33.990647-08:00,2022.0,10.842394,10842.394 +5348,2025-03-07T16:01:44.831383-08:00,1993.0,10.840736,10840.736 +5349,2025-03-07T16:01:55.683079-08:00,1951.0,10.851696,10851.696 +5350,2025-03-07T16:02:06.531158-08:00,1986.0,10.848079,10848.079 +5351,2025-03-07T16:02:17.374942-08:00,2022.0,10.843784,10843.784 +5352,2025-03-07T16:02:28.225146-08:00,2022.0,10.850204,10850.204 +5353,2025-03-07T16:02:39.070290-08:00,2031.0,10.845144,10845.144 +5354,2025-03-07T16:02:49.916102-08:00,1997.0,10.845812,10845.812 +5355,2025-03-07T16:03:00.764937-08:00,1984.0,10.848835,10848.835 +5356,2025-03-07T16:03:11.612232-08:00,2019.0,10.847295,10847.295 +5357,2025-03-07T16:03:22.468087-08:00,1998.0,10.855855,10855.855 +5358,2025-03-07T16:03:33.310926-08:00,2011.0,10.842839,10842.839 +5359,2025-03-07T16:03:44.166941-08:00,2025.0,10.856015,10856.015 +5360,2025-03-07T16:03:55.013428-08:00,2014.0,10.846487,10846.487 +5361,2025-03-07T16:04:05.861229-08:00,2002.0,10.847801,10847.801 +5362,2025-03-07T16:04:16.711273-08:00,1949.0,10.850044,10850.044 +5363,2025-03-07T16:04:27.555947-08:00,1935.0,10.844674,10844.674 +5364,2025-03-07T16:04:38.397936-08:00,1991.0,10.841989,10841.989 +5365,2025-03-07T16:04:49.245189-08:00,1968.0,10.847253,10847.253 +5366,2025-03-07T16:05:00.084968-08:00,1984.0,10.839779,10839.779 +5367,2025-03-07T16:05:10.926518-08:00,2023.0,10.84155,10841.55 +5368,2025-03-07T16:05:21.771941-08:00,1949.0,10.845423,10845.423 +5369,2025-03-07T16:05:32.624163-08:00,1981.0,10.852222,10852.222 +5370,2025-03-07T16:05:43.465521-08:00,1985.0,10.841358,10841.358 +5371,2025-03-07T16:05:54.312671-08:00,2025.0,10.84715,10847.15 +5372,2025-03-07T16:06:05.162812-08:00,1974.0,10.850141,10850.141 +5373,2025-03-07T16:06:16.010589-08:00,1990.0,10.847777,10847.777 +5374,2025-03-07T16:06:26.853037-08:00,2023.0,10.842448,10842.448 +5375,2025-03-07T16:06:37.697518-08:00,1998.0,10.844481,10844.481 +5376,2025-03-07T16:06:48.552731-08:00,2015.0,10.855213,10855.213 +5377,2025-03-07T16:06:59.398514-08:00,2015.0,10.845783,10845.783 +5378,2025-03-07T16:07:10.246765-08:00,2021.0,10.848251,10848.251 +5379,2025-03-07T16:07:21.093589-08:00,1969.0,10.846824,10846.824 +5380,2025-03-07T16:07:31.941527-08:00,2007.0,10.847938,10847.938 +5381,2025-03-07T16:07:42.794861-08:00,2002.0,10.853334,10853.334 +5382,2025-03-07T16:07:53.633769-08:00,2015.0,10.838908,10838.908 +5383,2025-03-07T16:08:04.481564-08:00,1982.0,10.847795,10847.795 +5384,2025-03-07T16:08:15.330871-08:00,1967.0,10.849307,10849.307 +5385,2025-03-07T16:08:26.173793-08:00,2017.0,10.842922,10842.922 +5386,2025-03-07T16:08:37.022534-08:00,2016.0,10.848741,10848.741 +5387,2025-03-07T16:08:47.878651-08:00,2014.0,10.856117,10856.117 +5388,2025-03-07T16:08:58.726090-08:00,1951.0,10.847439,10847.439 +5389,2025-03-07T16:09:09.574876-08:00,1966.0,10.848786,10848.786 +5390,2025-03-07T16:09:20.423796-08:00,1922.0,10.84892,10848.92 +5391,2025-03-07T16:09:31.272951-08:00,1951.0,10.849155,10849.155 +5392,2025-03-07T16:09:42.119506-08:00,1968.0,10.846555,10846.555 +5393,2025-03-07T16:09:52.964766-08:00,1972.0,10.84526,10845.26 +5394,2025-03-07T16:10:03.817518-08:00,1936.0,10.852752,10852.752 +5395,2025-03-07T16:10:14.654530-08:00,2007.0,10.837012,10837.012 +5396,2025-03-07T16:10:25.498265-08:00,1999.0,10.843735,10843.735 +5397,2025-03-07T16:10:36.350811-08:00,1971.0,10.852546,10852.546 +5398,2025-03-07T16:10:47.191514-08:00,1970.0,10.840703,10840.703 +5399,2025-03-07T16:10:58.039605-08:00,1966.0,10.848091,10848.091 +5400,2025-03-07T16:11:08.877149-08:00,2000.0,10.837544,10837.544 +5401,2025-03-07T16:11:19.725861-08:00,1956.0,10.848712,10848.712 +5402,2025-03-07T16:11:30.573386-08:00,1971.0,10.847525,10847.525 +5403,2025-03-07T16:11:41.422665-08:00,2002.0,10.849279,10849.279 +5404,2025-03-07T16:11:52.271909-08:00,2000.0,10.849244,10849.244 +5405,2025-03-07T16:12:03.127639-08:00,2003.0,10.85573,10855.73 +5406,2025-03-07T16:12:13.972577-08:00,1913.0,10.844938,10844.938 +5407,2025-03-07T16:12:24.824790-08:00,2000.0,10.852213,10852.213 +5408,2025-03-07T16:12:35.667581-08:00,1999.0,10.842791,10842.791 +5409,2025-03-07T16:12:46.529182-08:00,1983.0,10.861601,10861.601 +5410,2025-03-07T16:12:57.371726-08:00,1991.0,10.842544,10842.544 +5411,2025-03-07T16:13:08.220529-08:00,2000.0,10.848803,10848.803 +5412,2025-03-07T16:13:19.071867-08:00,1957.0,10.851338,10851.338 +5413,2025-03-07T16:13:29.923877-08:00,1991.0,10.85201,10852.01 +5414,2025-03-07T16:13:40.783787-08:00,1936.0,10.85991,10859.91 +5415,2025-03-07T16:13:51.629877-08:00,1986.0,10.84609,10846.09 +5416,2025-03-07T16:14:02.483111-08:00,1947.0,10.853234,10853.234 +5417,2025-03-07T16:14:13.329569-08:00,2001.0,10.846458,10846.458 +5418,2025-03-07T16:14:24.182884-08:00,2000.0,10.853315,10853.315 +5419,2025-03-07T16:14:35.032523-08:00,2000.0,10.849639,10849.639 +5420,2025-03-07T16:14:45.875527-08:00,1973.0,10.843004,10843.004 +5421,2025-03-07T16:14:56.730564-08:00,2000.0,10.855037,10855.037 +5422,2025-03-07T16:15:07.578771-08:00,1919.0,10.848207,10848.207 +5423,2025-03-07T16:15:18.431734-08:00,1975.0,10.852963,10852.963 +5424,2025-03-07T16:15:29.280648-08:00,1947.0,10.848914,10848.914 +5425,2025-03-07T16:15:40.126021-08:00,1996.0,10.845373,10845.373 +5426,2025-03-07T16:15:50.974787-08:00,1998.0,10.848766,10848.766 +5427,2025-03-07T16:16:01.823786-08:00,1938.0,10.848999,10848.999 +5428,2025-03-07T16:16:12.676527-08:00,1970.0,10.852741,10852.741 +5429,2025-03-07T16:16:23.526583-08:00,1920.0,10.850056,10850.056 +5430,2025-03-07T16:16:34.374528-08:00,1994.0,10.847945,10847.945 +5431,2025-03-07T16:16:45.216524-08:00,1972.0,10.841996,10841.996 +5432,2025-03-07T16:16:56.067330-08:00,1981.0,10.850806,10850.806 +5433,2025-03-07T16:17:06.909845-08:00,1923.0,10.842515,10842.515 +5434,2025-03-07T16:17:17.758948-08:00,1987.0,10.849103,10849.103 +5435,2025-03-07T16:17:28.606717-08:00,1978.0,10.847769,10847.769 +5436,2025-03-07T16:17:39.459731-08:00,1981.0,10.853014,10853.014 +5437,2025-03-07T16:17:50.303765-08:00,1978.0,10.844034,10844.034 +5438,2025-03-07T16:18:01.147533-08:00,1949.0,10.843768,10843.768 +5439,2025-03-07T16:18:11.997514-08:00,1905.0,10.849981,10849.981 +5440,2025-03-07T16:18:22.848861-08:00,1990.0,10.851347,10851.347 +5441,2025-03-07T16:18:33.698891-08:00,1913.0,10.85003,10850.03 +5442,2025-03-07T16:18:44.549504-08:00,1948.0,10.850613,10850.613 +5443,2025-03-07T16:18:55.397123-08:00,1988.0,10.847619,10847.619 +5444,2025-03-07T16:19:06.245505-08:00,1967.0,10.848382,10848.382 +5445,2025-03-07T16:19:17.093575-08:00,1935.0,10.84807,10848.07 +5446,2025-03-07T16:19:27.943749-08:00,1952.0,10.850174,10850.174 +5447,2025-03-07T16:19:38.791518-08:00,1986.0,10.847769,10847.769 +5448,2025-03-07T16:19:49.630528-08:00,1978.0,10.83901,10839.01 +5449,2025-03-07T16:20:00.489671-08:00,1977.0,10.859143,10859.143 +5450,2025-03-07T16:20:11.333696-08:00,1979.0,10.844025,10844.025 +5451,2025-03-07T16:20:22.184798-08:00,1950.0,10.851102,10851.102 +5452,2025-03-07T16:20:33.029581-08:00,1982.0,10.844783,10844.783 +5453,2025-03-07T16:20:43.882525-08:00,1981.0,10.852944,10852.944 +5454,2025-03-07T16:20:54.725539-08:00,1936.0,10.843014,10843.014 +5455,2025-03-07T16:21:05.577526-08:00,1938.0,10.851987,10851.987 +5456,2025-03-07T16:21:16.422531-08:00,1890.0,10.845005,10845.005 +5457,2025-03-07T16:21:27.270142-08:00,1967.0,10.847611,10847.611 +5458,2025-03-07T16:21:38.122664-08:00,1971.0,10.852522,10852.522 +5459,2025-03-07T16:21:48.972140-08:00,1962.0,10.849476,10849.476 +5460,2025-03-07T16:21:59.815828-08:00,1950.0,10.843688,10843.688 +5461,2025-03-07T16:22:10.670522-08:00,1978.0,10.854694,10854.694 +5462,2025-03-07T16:22:21.519799-08:00,1955.0,10.849277,10849.277 +5463,2025-03-07T16:22:32.368517-08:00,1937.0,10.848718,10848.718 +5464,2025-03-07T16:22:43.220522-08:00,1980.0,10.852005,10852.005 +5465,2025-03-07T16:22:54.068571-08:00,1976.0,10.848049,10848.049 +5466,2025-03-07T16:23:04.911669-08:00,1974.0,10.843098,10843.098 +5467,2025-03-07T16:23:15.751110-08:00,1965.0,10.839441,10839.441 +5468,2025-03-07T16:23:26.601808-08:00,1903.0,10.850698,10850.698 +5469,2025-03-07T16:23:37.447559-08:00,1939.0,10.845751,10845.751 +5470,2025-03-07T16:23:48.297662-08:00,1934.0,10.850103,10850.103 +5471,2025-03-07T16:23:59.141779-08:00,1966.0,10.844117,10844.117 +5472,2025-03-07T16:24:09.979826-08:00,1953.0,10.838047,10838.047 +5473,2025-03-07T16:24:20.831806-08:00,1963.0,10.85198,10851.98 +5474,2025-03-07T16:24:31.681182-08:00,1883.0,10.849376,10849.376 +5475,2025-03-07T16:24:42.526526-08:00,1923.0,10.845344,10845.344 +5476,2025-03-07T16:24:53.362778-08:00,1935.0,10.836252,10836.252 +5477,2025-03-07T16:25:04.215521-08:00,1971.0,10.852743,10852.743 +5478,2025-03-07T16:25:15.066579-08:00,1922.0,10.851058,10851.058 +5479,2025-03-07T16:25:25.903774-08:00,1953.0,10.837195,10837.195 +5480,2025-03-07T16:25:36.746802-08:00,1946.0,10.843028,10843.028 +5481,2025-03-07T16:25:47.594643-08:00,1971.0,10.847841,10847.841 +5482,2025-03-07T16:25:58.436769-08:00,1908.0,10.842126,10842.126 +5483,2025-03-07T16:26:07.937852-08:00,1958.0,9.501083,9501.083 +5484,2025-03-07T16:26:09.279867-08:00,1889.0,1.342015,1342.015 +5485,2025-03-07T16:26:20.116510-08:00,1963.0,10.836643,10836.643 +5486,2025-03-07T16:26:30.966523-08:00,1965.0,10.850013,10850.013 +5487,2025-03-07T16:26:41.804528-08:00,1870.0,10.838005,10838.005 +5488,2025-03-07T16:26:52.653518-08:00,1903.0,10.84899,10848.99 +5489,2025-03-07T16:27:03.495832-08:00,1933.0,10.842314,10842.314 +5490,2025-03-07T16:27:14.339000-08:00,1957.0,10.843168,10843.168 +5491,2025-03-07T16:27:25.188517-08:00,1930.0,10.849517,10849.517 +5492,2025-03-07T16:27:36.027215-08:00,1936.0,10.838698,10838.698 +5493,2025-03-07T16:27:46.879738-08:00,1967.0,10.852523,10852.523 +5494,2025-03-07T16:27:57.722884-08:00,1933.0,10.843146,10843.146 +5495,2025-03-07T16:28:08.572899-08:00,1893.0,10.850015,10850.015 +5496,2025-03-07T16:28:19.420592-08:00,1967.0,10.847693,10847.693 +5497,2025-03-07T16:28:30.272401-08:00,1920.0,10.851809,10851.809 +5498,2025-03-07T16:28:41.115528-08:00,1954.0,10.843127,10843.127 +5499,2025-03-07T16:28:51.961217-08:00,1904.0,10.845689,10845.689 +5500,2025-03-07T16:29:02.809691-08:00,1963.0,10.848474,10848.474 +5501,2025-03-07T16:29:13.657526-08:00,1882.0,10.847835,10847.835 +5502,2025-03-07T16:29:24.508530-08:00,1915.0,10.851004,10851.004 +5503,2025-03-07T16:29:35.344932-08:00,1904.0,10.836402,10836.402 +5504,2025-03-07T16:29:46.188524-08:00,1913.0,10.843592,10843.592 +5505,2025-03-07T16:29:57.032834-08:00,1866.0,10.84431,10844.31 +5506,2025-03-07T16:30:07.879906-08:00,1897.0,10.847072,10847.072 +5507,2025-03-07T16:30:18.722466-08:00,1910.0,10.84256,10842.56 +5508,2025-03-07T16:30:29.566571-08:00,1915.0,10.844105,10844.105 +5509,2025-03-07T16:30:40.412524-08:00,1938.0,10.845953,10845.953 +5510,2025-03-07T16:30:51.254746-08:00,1919.0,10.842222,10842.222 +5511,2025-03-07T16:31:02.096750-08:00,1947.0,10.842004,10842.004 +5512,2025-03-07T16:31:12.946411-08:00,1955.0,10.849661,10849.661 +5513,2025-03-07T16:31:23.784520-08:00,1872.0,10.838109,10838.109 +5514,2025-03-07T16:31:34.635554-08:00,1909.0,10.851034,10851.034 +5515,2025-03-07T16:31:45.479518-08:00,1942.0,10.843964,10843.964 +5516,2025-03-07T16:31:56.316869-08:00,1885.0,10.837351,10837.351 +5517,2025-03-07T16:32:07.160648-08:00,1934.0,10.843779,10843.779 +5518,2025-03-07T16:32:18.008501-08:00,1873.0,10.847853,10847.853 +5519,2025-03-07T16:32:28.846532-08:00,1949.0,10.838031,10838.031 +5520,2025-03-07T16:32:39.696522-08:00,1907.0,10.84999,10849.99 +5521,2025-03-07T16:32:50.537713-08:00,1908.0,10.841191,10841.191 +5522,2025-03-07T16:33:01.382847-08:00,1951.0,10.845134,10845.134 +5523,2025-03-07T16:33:12.239912-08:00,1952.0,10.857065,10857.065 +5524,2025-03-07T16:33:23.084046-08:00,1920.0,10.844134,10844.134 +5525,2025-03-07T16:33:33.929491-08:00,1902.0,10.845445,10845.445 +5526,2025-03-07T16:33:44.776520-08:00,1904.0,10.847029,10847.029 +5527,2025-03-07T16:33:55.612908-08:00,1888.0,10.836388,10836.388 +5528,2025-03-07T16:34:06.471778-08:00,1933.0,10.85887,10858.87 +5529,2025-03-07T16:34:17.318817-08:00,1946.0,10.847039,10847.039 +5530,2025-03-07T16:34:28.166518-08:00,1915.0,10.847701,10847.701 +5531,2025-03-07T16:34:39.008525-08:00,1901.0,10.842007,10842.007 +5532,2025-03-07T16:34:49.861535-08:00,1943.0,10.85301,10853.01 +5533,2025-03-07T16:35:00.700528-08:00,1921.0,10.838993,10838.993 +5534,2025-03-07T16:35:11.554787-08:00,1856.0,10.854259,10854.259 +5535,2025-03-07T16:35:22.392985-08:00,1921.0,10.838198,10838.198 +5536,2025-03-07T16:35:33.242205-08:00,1933.0,10.84922,10849.22 +5537,2025-03-07T16:35:44.080513-08:00,1936.0,10.838308,10838.308 +5538,2025-03-07T16:35:54.921529-08:00,1900.0,10.841016,10841.016 +5539,2025-03-07T16:36:05.771526-08:00,1924.0,10.849997,10849.997 +5540,2025-03-07T16:36:16.615064-08:00,1910.0,10.843538,10843.538 +5541,2025-03-07T16:36:27.462368-08:00,1911.0,10.847304,10847.304 +5542,2025-03-07T16:36:38.312658-08:00,1936.0,10.85029,10850.29 +5543,2025-03-07T16:36:49.142531-08:00,1894.0,10.829873,10829.873 +5544,2025-03-07T16:36:59.986520-08:00,1925.0,10.843989,10843.989 +5545,2025-03-07T16:37:10.834926-08:00,1879.0,10.848406,10848.406 +5546,2025-03-07T16:37:21.677578-08:00,1851.0,10.842652,10842.652 +5547,2025-03-07T16:37:32.520744-08:00,1870.0,10.843166,10843.166 +5548,2025-03-07T16:37:43.364528-08:00,1883.0,10.843784,10843.784 +5549,2025-03-07T16:37:54.202492-08:00,1858.0,10.837964,10837.964 +5550,2025-03-07T16:38:05.043522-08:00,1861.0,10.84103,10841.03 +5551,2025-03-07T16:38:15.889520-08:00,1919.0,10.845998,10845.998 +5552,2025-03-07T16:38:26.739658-08:00,1926.0,10.850138,10850.138 +5553,2025-03-07T16:38:37.578532-08:00,1925.0,10.838874,10838.874 +5554,2025-03-07T16:38:48.426857-08:00,1922.0,10.848325,10848.325 +5555,2025-03-07T16:38:59.272172-08:00,1921.0,10.845315,10845.315 +5556,2025-03-07T16:39:10.115523-08:00,1922.0,10.843351,10843.351 +5557,2025-03-07T16:39:20.958749-08:00,1925.0,10.843226,10843.226 +5558,2025-03-07T16:39:31.805529-08:00,1924.0,10.84678,10846.78 +5559,2025-03-07T16:39:42.660764-08:00,1899.0,10.855235,10855.235 +5560,2025-03-07T16:39:53.504876-08:00,1878.0,10.844112,10844.112 +5561,2025-03-07T16:40:04.341522-08:00,1843.0,10.836646,10836.646 +5562,2025-03-07T16:40:15.195525-08:00,1921.0,10.854003,10854.003 +5563,2025-03-07T16:40:26.039527-08:00,1904.0,10.844002,10844.002 +5564,2025-03-07T16:40:36.887497-08:00,1842.0,10.84797,10847.97 +5565,2025-03-07T16:40:47.740580-08:00,1895.0,10.853083,10853.083 +5566,2025-03-07T16:40:58.585049-08:00,1922.0,10.844469,10844.469 +5567,2025-03-07T16:41:09.438796-08:00,1913.0,10.853747,10853.747 +5568,2025-03-07T16:41:20.289529-08:00,1895.0,10.850733,10850.733 +5569,2025-03-07T16:41:31.135854-08:00,1893.0,10.846325,10846.325 +5570,2025-03-07T16:41:41.987441-08:00,1839.0,10.851587,10851.587 +5571,2025-03-07T16:41:52.829845-08:00,1876.0,10.842404,10842.404 +5572,2025-03-07T16:42:03.678074-08:00,1898.0,10.848229,10848.229 +5573,2025-03-07T16:42:14.520420-08:00,1903.0,10.842346,10842.346 +5574,2025-03-07T16:42:25.368521-08:00,1823.0,10.848101,10848.101 +5575,2025-03-07T16:42:36.213854-08:00,1841.0,10.845333,10845.333 +5576,2025-03-07T16:42:47.067452-08:00,1825.0,10.853598,10853.598 +5577,2025-03-07T16:42:57.910523-08:00,1839.0,10.843071,10843.071 +5578,2025-03-07T16:43:08.759528-08:00,1895.0,10.849005,10849.005 +5579,2025-03-07T16:43:19.603667-08:00,1837.0,10.844139,10844.139 +5580,2025-03-07T16:43:30.453523-08:00,1866.0,10.849856,10849.856 +5581,2025-03-07T16:43:41.306000-08:00,1857.0,10.852477,10852.477 +5582,2025-03-07T16:43:52.150055-08:00,1859.0,10.844055,10844.055 +5583,2025-03-07T16:44:02.992140-08:00,1903.0,10.842085,10842.085 +5584,2025-03-07T16:44:13.835530-08:00,1891.0,10.84339,10843.39 +5585,2025-03-07T16:44:24.679751-08:00,1902.0,10.844221,10844.221 +5586,2025-03-07T16:44:35.521965-08:00,1905.0,10.842214,10842.214 +5587,2025-03-07T16:44:46.369941-08:00,1826.0,10.847976,10847.976 +5588,2025-03-07T16:44:57.212951-08:00,1904.0,10.84301,10843.01 +5589,2025-03-07T16:45:08.065538-08:00,1883.0,10.852587,10852.587 +5590,2025-03-07T16:45:18.905524-08:00,1875.0,10.839986,10839.986 +5591,2025-03-07T16:45:29.757528-08:00,1819.0,10.852004,10852.004 +5592,2025-03-07T16:45:40.594800-08:00,1842.0,10.837272,10837.272 +5593,2025-03-07T16:45:51.438877-08:00,1894.0,10.844077,10844.077 +5594,2025-03-07T16:46:02.290833-08:00,1902.0,10.851956,10851.956 +5595,2025-03-07T16:46:13.133515-08:00,1900.0,10.842682,10842.682 +5596,2025-03-07T16:46:23.980895-08:00,1871.0,10.84738,10847.38 +5597,2025-03-07T16:46:34.814558-08:00,1872.0,10.833663,10833.663 +5598,2025-03-07T16:46:45.662291-08:00,1813.0,10.847733,10847.733 +5599,2025-03-07T16:46:56.506506-08:00,1811.0,10.844215,10844.215 +5600,2025-03-07T16:47:07.345524-08:00,1872.0,10.839018,10839.018 +5601,2025-03-07T16:47:18.194913-08:00,1810.0,10.849389,10849.389 +5602,2025-03-07T16:47:29.039528-08:00,1834.0,10.844615,10844.615 +5603,2025-03-07T16:47:39.882810-08:00,1872.0,10.843282,10843.282 +5604,2025-03-07T16:47:50.725573-08:00,1877.0,10.842763,10842.763 +5605,2025-03-07T16:48:01.558715-08:00,1878.0,10.833142,10833.142 +5606,2025-03-07T16:48:12.406740-08:00,1845.0,10.848025,10848.025 +5607,2025-03-07T16:48:23.243634-08:00,1888.0,10.836894,10836.894 +5608,2025-03-07T16:48:34.081571-08:00,1846.0,10.837937,10837.937 +5609,2025-03-07T16:48:44.934652-08:00,1826.0,10.853081,10853.081 +5610,2025-03-07T16:48:55.773768-08:00,1840.0,10.839116,10839.116 +5611,2025-03-07T16:49:06.618003-08:00,1808.0,10.844235,10844.235 +5612,2025-03-07T16:49:17.454675-08:00,1872.0,10.836672,10836.672 +5613,2025-03-07T16:49:28.296521-08:00,1851.0,10.841846,10841.846 +5614,2025-03-07T16:49:39.134112-08:00,1847.0,10.837591,10837.591 +5615,2025-03-07T16:49:49.976808-08:00,1881.0,10.842696,10842.696 +5616,2025-03-07T16:50:00.811708-08:00,1881.0,10.8349,10834.9 +5617,2025-03-07T16:50:11.648791-08:00,1781.0,10.837083,10837.083 +5618,2025-03-07T16:50:22.489946-08:00,1847.0,10.841155,10841.155 +5619,2025-03-07T16:50:33.325667-08:00,1879.0,10.835721,10835.721 +5620,2025-03-07T16:50:44.158045-08:00,1879.0,10.832378,10832.378 +5621,2025-03-07T16:50:55.001296-08:00,1858.0,10.843251,10843.251 +5622,2025-03-07T16:51:05.845522-08:00,1839.0,10.844226,10844.226 +5623,2025-03-07T16:51:16.680523-08:00,1875.0,10.835001,10835.001 +5624,2025-03-07T16:51:27.527527-08:00,1872.0,10.847004,10847.004 +5625,2025-03-07T16:51:38.369398-08:00,1798.0,10.841871,10841.871 +5626,2025-03-07T16:51:49.207867-08:00,1812.0,10.838469,10838.469 +5627,2025-03-07T16:52:00.042704-08:00,1840.0,10.834837,10834.837 +5628,2025-03-07T16:52:10.892160-08:00,1826.0,10.849456,10849.456 +5629,2025-03-07T16:52:21.728517-08:00,1818.0,10.836357,10836.357 +5630,2025-03-07T16:52:32.577955-08:00,1830.0,10.849438,10849.438 +5631,2025-03-07T16:52:43.419518-08:00,1872.0,10.841563,10841.563 +5632,2025-03-07T16:52:54.258576-08:00,1826.0,10.839058,10839.058 +5633,2025-03-07T16:53:05.103135-08:00,1813.0,10.844559,10844.559 +5634,2025-03-07T16:53:15.935520-08:00,1831.0,10.832385,10832.385 +5635,2025-03-07T16:53:26.781619-08:00,1857.0,10.846099,10846.099 +5636,2025-03-07T16:53:37.624842-08:00,1859.0,10.843223,10843.223 +5637,2025-03-07T16:53:48.462501-08:00,1776.0,10.837659,10837.659 +5638,2025-03-07T16:53:59.306162-08:00,1795.0,10.843661,10843.661 +5639,2025-03-07T16:54:10.154520-08:00,1847.0,10.848358,10848.358 +5640,2025-03-07T16:54:20.991568-08:00,1825.0,10.837048,10837.048 +5641,2025-03-07T16:54:31.835153-08:00,1865.0,10.843585,10843.585 +5642,2025-03-07T16:54:42.667793-08:00,1803.0,10.83264,10832.64 +5643,2025-03-07T16:54:53.510603-08:00,1811.0,10.84281,10842.81 +5644,2025-03-07T16:55:04.354535-08:00,1861.0,10.843932,10843.932 +5645,2025-03-07T16:55:15.184506-08:00,1858.0,10.829971,10829.971 +5646,2025-03-07T16:55:26.032520-08:00,1847.0,10.848014,10848.014 +5647,2025-03-07T16:55:36.871798-08:00,1794.0,10.839278,10839.278 +5648,2025-03-07T16:55:47.717791-08:00,1775.0,10.845993,10845.993 +5649,2025-03-07T16:55:58.563178-08:00,1851.0,10.845387,10845.387 +5650,2025-03-07T16:56:09.400678-08:00,1809.0,10.8375,10837.5 +5651,2025-03-07T16:56:20.246219-08:00,1811.0,10.845541,10845.541 +5652,2025-03-07T16:56:31.087323-08:00,1805.0,10.841104,10841.104 +5653,2025-03-07T16:56:41.940706-08:00,1855.0,10.853383,10853.383 +5654,2025-03-07T16:56:52.776529-08:00,1771.0,10.835823,10835.823 +5655,2025-03-07T16:57:03.616665-08:00,1811.0,10.840136,10840.136 +5656,2025-03-07T16:57:14.463003-08:00,1850.0,10.846338,10846.338 +5657,2025-03-07T16:57:25.310082-08:00,1817.0,10.847079,10847.079 +5658,2025-03-07T16:57:36.156891-08:00,1833.0,10.846809,10846.809 +5659,2025-03-07T16:57:46.993543-08:00,1763.0,10.836652,10836.652 +5660,2025-03-07T16:57:57.833632-08:00,1840.0,10.840089,10840.089 +5661,2025-03-07T16:58:08.675975-08:00,1762.0,10.842343,10842.343 +5662,2025-03-07T16:58:19.528645-08:00,1849.0,10.85267,10852.67 +5663,2025-03-07T16:58:30.369518-08:00,1766.0,10.840873,10840.873 +5664,2025-03-07T16:58:41.208528-08:00,1847.0,10.83901,10839.01 +5665,2025-03-07T16:58:52.047531-08:00,1806.0,10.839003,10839.003 +5666,2025-03-07T16:59:02.888035-08:00,1842.0,10.840504,10840.504 +5667,2025-03-07T16:59:13.740045-08:00,1795.0,10.85201,10852.01 +5668,2025-03-07T16:59:24.581194-08:00,1840.0,10.841149,10841.149 +5669,2025-03-07T16:59:35.434989-08:00,1818.0,10.853795,10853.795 +5670,2025-03-07T16:59:46.278650-08:00,1840.0,10.843661,10843.661 +5671,2025-03-07T16:59:57.123861-08:00,1811.0,10.845211,10845.211 +5672,2025-03-07T17:00:07.965055-08:00,1771.0,10.841194,10841.194 +5673,2025-03-07T17:00:18.803518-08:00,1829.0,10.838463,10838.463 +5674,2025-03-07T17:00:29.646667-08:00,1815.0,10.843149,10843.149 +5675,2025-03-07T17:00:40.482865-08:00,1838.0,10.836198,10836.198 +5676,2025-03-07T17:00:51.331611-08:00,1825.0,10.848746,10848.746 +5677,2025-03-07T17:01:02.175514-08:00,1840.0,10.843903,10843.903 +5678,2025-03-07T17:01:13.017523-08:00,1827.0,10.842009,10842.009 +5679,2025-03-07T17:01:23.855938-08:00,1791.0,10.838415,10838.415 +5680,2025-03-07T17:01:34.704736-08:00,1779.0,10.848798,10848.798 +5681,2025-03-07T17:01:45.548524-08:00,1823.0,10.843788,10843.788 +5682,2025-03-07T17:01:56.393708-08:00,1833.0,10.845184,10845.184 +5683,2025-03-07T17:02:07.235654-08:00,1805.0,10.841946,10841.946 +5684,2025-03-07T17:02:18.077507-08:00,1787.0,10.841853,10841.853 +5685,2025-03-07T17:02:28.920833-08:00,1767.0,10.843326,10843.326 +5686,2025-03-07T17:02:39.758521-08:00,1784.0,10.837688,10837.688 +5687,2025-03-07T17:02:50.610751-08:00,1797.0,10.85223,10852.23 +5688,2025-03-07T17:03:01.454528-08:00,1785.0,10.843777,10843.777 +5689,2025-03-07T17:03:12.293331-08:00,1764.0,10.838803,10838.803 +5690,2025-03-07T17:03:23.135529-08:00,1730.0,10.842198,10842.198 +5691,2025-03-07T17:03:33.979917-08:00,1803.0,10.844388,10844.388 +5692,2025-03-07T17:03:44.825771-08:00,1813.0,10.845854,10845.854 +5693,2025-03-07T17:03:55.667522-08:00,1746.0,10.841751,10841.751 +5694,2025-03-07T17:04:06.514863-08:00,1793.0,10.847341,10847.341 +5695,2025-03-07T17:04:17.353522-08:00,1818.0,10.838659,10838.659 +5696,2025-03-07T17:04:28.195826-08:00,1811.0,10.842304,10842.304 +5697,2025-03-07T17:04:39.047928-08:00,1775.0,10.852102,10852.102 +5698,2025-03-07T17:04:49.890869-08:00,1786.0,10.842941,10842.941 +5699,2025-03-07T17:05:00.734624-08:00,1733.0,10.843755,10843.755 +5700,2025-03-07T17:05:11.577791-08:00,1757.0,10.843167,10843.167 +5701,2025-03-07T17:05:22.418527-08:00,1812.0,10.840736,10840.736 +5702,2025-03-07T17:05:33.273251-08:00,1757.0,10.854724,10854.724 +5703,2025-03-07T17:05:44.111202-08:00,1807.0,10.837951,10837.951 +5704,2025-03-07T17:05:54.951927-08:00,1773.0,10.840725,10840.725 +5705,2025-03-07T17:06:05.790198-08:00,1725.0,10.838271,10838.271 +5706,2025-03-07T17:06:16.644882-08:00,1744.0,10.854684,10854.684 +5707,2025-03-07T17:06:27.481306-08:00,1811.0,10.836424,10836.424 +5708,2025-03-07T17:06:38.336315-08:00,1765.0,10.855009,10855.009 +5709,2025-03-07T17:06:49.172885-08:00,1802.0,10.83657,10836.57 +5710,2025-03-07T17:07:00.011116-08:00,1729.0,10.838231,10838.231 +5711,2025-03-07T17:07:10.853203-08:00,1731.0,10.842087,10842.087 +5712,2025-03-07T17:07:21.686950-08:00,1808.0,10.833747,10833.747 +5713,2025-03-07T17:07:32.533882-08:00,1796.0,10.846932,10846.932 +5714,2025-03-07T17:07:43.370274-08:00,1799.0,10.836392,10836.392 +5715,2025-03-07T17:07:54.220888-08:00,1728.0,10.850614,10850.614 +5716,2025-03-07T17:08:05.064371-08:00,1802.0,10.843483,10843.483 +5717,2025-03-07T17:08:15.909911-08:00,1742.0,10.84554,10845.54 +5718,2025-03-07T17:08:26.766406-08:00,1790.0,10.856495,10856.495 +5719,2025-03-07T17:08:37.607939-08:00,1805.0,10.841533,10841.533 +5720,2025-03-07T17:08:48.447865-08:00,1803.0,10.839926,10839.926 +5721,2025-03-07T17:08:59.296142-08:00,1776.0,10.848277,10848.277 +5722,2025-03-07T17:09:10.142186-08:00,1759.0,10.846044,10846.044 +5723,2025-03-07T17:09:20.981947-08:00,1750.0,10.839761,10839.761 +5724,2025-03-07T17:09:31.831884-08:00,1768.0,10.849937,10849.937 +5725,2025-03-07T17:09:42.666881-08:00,1756.0,10.834997,10834.997 +5726,2025-03-07T17:09:53.511415-08:00,1730.0,10.844534,10844.534 +5727,2025-03-07T17:10:04.360160-08:00,1765.0,10.848745,10848.745 +5728,2025-03-07T17:10:15.209050-08:00,1799.0,10.84889,10848.89 +5729,2025-03-07T17:10:26.050883-08:00,1772.0,10.841833,10841.833 +5730,2025-03-07T17:10:36.888920-08:00,1755.0,10.838037,10838.037 +5731,2025-03-07T17:10:47.734119-08:00,1759.0,10.845199,10845.199 +5732,2025-03-07T17:10:58.581253-08:00,1796.0,10.847134,10847.134 +5733,2025-03-07T17:11:09.428047-08:00,1788.0,10.846794,10846.794 +5734,2025-03-07T17:11:20.279085-08:00,1792.0,10.851038,10851.038 +5735,2025-03-07T17:11:31.122778-08:00,1744.0,10.843693,10843.693 +5736,2025-03-07T17:11:41.965880-08:00,1754.0,10.843102,10843.102 +5737,2025-03-07T17:11:52.813117-08:00,1750.0,10.847237,10847.237 +5738,2025-03-07T17:12:03.651162-08:00,1786.0,10.838045,10838.045 +5739,2025-03-07T17:12:14.505709-08:00,1755.0,10.854547,10854.547 +5740,2025-03-07T17:12:25.346126-08:00,1739.0,10.840417,10840.417 +5741,2025-03-07T17:12:36.193025-08:00,1756.0,10.846899,10846.899 +5742,2025-03-07T17:12:47.034888-08:00,1762.0,10.841863,10841.863 +5743,2025-03-07T17:12:57.880150-08:00,1793.0,10.845262,10845.262 +5744,2025-03-07T17:13:08.729194-08:00,1792.0,10.849044,10849.044 +5745,2025-03-07T17:13:19.564886-08:00,1744.0,10.835692,10835.692 +5746,2025-03-07T17:13:30.412003-08:00,1745.0,10.847117,10847.117 +5747,2025-03-07T17:13:41.261296-08:00,1693.0,10.849293,10849.293 +5748,2025-03-07T17:13:52.099132-08:00,1744.0,10.837836,10837.836 +5749,2025-03-07T17:14:02.947139-08:00,1790.0,10.848007,10848.007 +5750,2025-03-07T17:14:13.788888-08:00,1775.0,10.841749,10841.749 +5751,2025-03-07T17:14:24.622033-08:00,1791.0,10.833145,10833.145 +5752,2025-03-07T17:14:35.465610-08:00,1741.0,10.843577,10843.577 +5753,2025-03-07T17:14:46.301884-08:00,1727.0,10.836274,10836.274 +5754,2025-03-07T17:14:57.147882-08:00,1728.0,10.845998,10845.998 +5755,2025-03-07T17:15:07.991931-08:00,1787.0,10.844049,10844.049 +5756,2025-03-07T17:15:18.827849-08:00,1780.0,10.835918,10835.918 +5757,2025-03-07T17:15:29.675943-08:00,1788.0,10.848094,10848.094 +5758,2025-03-07T17:15:40.512888-08:00,1765.0,10.836945,10836.945 +5759,2025-03-07T17:15:51.364967-08:00,1767.0,10.852079,10852.079 +5760,2025-03-07T17:16:02.209881-08:00,1789.0,10.844914,10844.914 +5761,2025-03-07T17:16:13.048281-08:00,1709.0,10.8384,10838.4 +5762,2025-03-07T17:16:23.888302-08:00,1744.0,10.840021,10840.021 +5763,2025-03-07T17:16:34.729127-08:00,1785.0,10.840825,10840.825 +5764,2025-03-07T17:16:45.566256-08:00,1785.0,10.837129,10837.129 +5765,2025-03-07T17:16:56.403138-08:00,1701.0,10.836882,10836.882 +5766,2025-03-07T17:17:07.246861-08:00,1765.0,10.843723,10843.723 +5767,2025-03-07T17:17:18.090470-08:00,1765.0,10.843609,10843.609 +5768,2025-03-07T17:17:28.922202-08:00,1715.0,10.831732,10831.732 +5769,2025-03-07T17:17:39.759086-08:00,1731.0,10.836884,10836.884 +5770,2025-03-07T17:17:50.602194-08:00,1705.0,10.843108,10843.108 +5771,2025-03-07T17:18:01.450457-08:00,1714.0,10.848263,10848.263 +5772,2025-03-07T17:18:12.295204-08:00,1731.0,10.844747,10844.747 +5773,2025-03-07T17:18:23.139120-08:00,1782.0,10.843916,10843.916 +5774,2025-03-07T17:18:33.983037-08:00,1727.0,10.843917,10843.917 +5775,2025-03-07T17:18:44.834041-08:00,1754.0,10.851004,10851.004 +5776,2025-03-07T17:18:55.673345-08:00,1738.0,10.839304,10839.304 +5777,2025-03-07T17:19:06.520374-08:00,1741.0,10.847029,10847.029 +5778,2025-03-07T17:19:17.357282-08:00,1725.0,10.836908,10836.908 +5779,2025-03-07T17:19:28.200876-08:00,1708.0,10.843594,10843.594 +5780,2025-03-07T17:19:39.044186-08:00,1757.0,10.84331,10843.31 +5781,2025-03-07T17:19:49.881596-08:00,1777.0,10.83741,10837.41 +5782,2025-03-07T17:20:00.728884-08:00,1749.0,10.847288,10847.288 +5783,2025-03-07T17:20:11.572936-08:00,1709.0,10.844052,10844.052 +5784,2025-03-07T17:20:22.409145-08:00,1766.0,10.836209,10836.209 +5785,2025-03-07T17:20:33.255202-08:00,1777.0,10.846057,10846.057 +5786,2025-03-07T17:20:44.097046-08:00,1776.0,10.841844,10841.844 +5787,2025-03-07T17:20:54.944884-08:00,1725.0,10.847838,10847.838 +5788,2025-03-07T17:21:05.778882-08:00,1713.0,10.833998,10833.998 +5789,2025-03-07T17:21:16.628373-08:00,1726.0,10.849491,10849.491 +5790,2025-03-07T17:21:27.469598-08:00,1712.0,10.841225,10841.225 +5791,2025-03-07T17:21:38.301882-08:00,1734.0,10.832284,10832.284 +5792,2025-03-07T17:21:49.144136-08:00,1711.0,10.842254,10842.254 +5793,2025-03-07T17:21:59.976310-08:00,1731.0,10.832174,10832.174 +5794,2025-03-07T17:22:10.822121-08:00,1775.0,10.845811,10845.811 +5795,2025-03-07T17:22:21.669306-08:00,1734.0,10.847185,10847.185 +5796,2025-03-07T17:22:32.504890-08:00,1737.0,10.835584,10835.584 +5797,2025-03-07T17:22:43.349747-08:00,1680.0,10.844857,10844.857 +5798,2025-03-07T17:22:54.200920-08:00,1719.0,10.851173,10851.173 +5799,2025-03-07T17:23:05.040890-08:00,1695.0,10.83997,10839.97 +5800,2025-03-07T17:23:15.878471-08:00,1743.0,10.837581,10837.581 +5801,2025-03-07T17:23:26.722465-08:00,1773.0,10.843994,10843.994 +5802,2025-03-07T17:23:37.563020-08:00,1775.0,10.840555,10840.555 +5803,2025-03-07T17:23:48.405270-08:00,1690.0,10.84225,10842.25 +5804,2025-03-07T17:23:59.249882-08:00,1762.0,10.844612,10844.612 +5805,2025-03-07T17:24:10.091322-08:00,1771.0,10.84144,10841.44 +5806,2025-03-07T17:24:20.927111-08:00,1727.0,10.835789,10835.789 +5807,2025-03-07T17:24:31.767933-08:00,1730.0,10.840822,10840.822 +5808,2025-03-07T17:24:42.617925-08:00,1770.0,10.849992,10849.992 +5809,2025-03-07T17:24:53.453265-08:00,1770.0,10.83534,10835.34 +5810,2025-03-07T17:25:04.304008-08:00,1773.0,10.850743,10850.743 +5811,2025-03-07T17:25:15.147129-08:00,1717.0,10.843121,10843.121 +5812,2025-03-07T17:25:25.983886-08:00,1717.0,10.836757,10836.757 +5813,2025-03-07T17:25:36.828196-08:00,1733.0,10.84431,10844.31 +5814,2025-03-07T17:25:47.677514-08:00,1773.0,10.849318,10849.318 +5815,2025-03-07T17:25:58.510884-08:00,1771.0,10.83337,10833.37 +5816,2025-03-07T17:26:09.362176-08:00,1771.0,10.851292,10851.292 +5817,2025-03-07T17:26:20.204884-08:00,1733.0,10.842708,10842.708 +5818,2025-03-07T17:26:31.044190-08:00,1743.0,10.839306,10839.306 +5819,2025-03-07T17:26:41.885936-08:00,1695.0,10.841746,10841.746 +5820,2025-03-07T17:26:52.722877-08:00,1712.0,10.836941,10836.941 +5821,2025-03-07T17:27:03.561214-08:00,1765.0,10.838337,10838.337 +5822,2025-03-07T17:27:14.403253-08:00,1757.0,10.842039,10842.039 +5823,2025-03-07T17:27:25.249020-08:00,1709.0,10.845767,10845.767 +5824,2025-03-07T17:27:36.088128-08:00,1738.0,10.839108,10839.108 +5825,2025-03-07T17:27:46.921206-08:00,1759.0,10.833078,10833.078 +5826,2025-03-07T17:27:57.764931-08:00,1698.0,10.843725,10843.725 +5827,2025-03-07T17:28:08.601240-08:00,1750.0,10.836309,10836.309 +5828,2025-03-07T17:28:19.439276-08:00,1755.0,10.838036,10838.036 +5829,2025-03-07T17:28:30.289029-08:00,1718.0,10.849753,10849.753 +5830,2025-03-07T17:28:41.129880-08:00,1749.0,10.840851,10840.851 +5831,2025-03-07T17:28:51.981881-08:00,1763.0,10.852001,10852.001 +5832,2025-03-07T17:29:02.818082-08:00,1770.0,10.836201,10836.201 +5833,2025-03-07T17:29:13.665889-08:00,1769.0,10.847807,10847.807 +5834,2025-03-07T17:29:24.509225-08:00,1737.0,10.843336,10843.336 +5835,2025-03-07T17:29:35.352972-08:00,1680.0,10.843747,10843.747 +5836,2025-03-07T17:29:46.193116-08:00,1713.0,10.840144,10840.144 +5837,2025-03-07T17:29:57.038863-08:00,1731.0,10.845747,10845.747 +5838,2025-03-07T17:30:07.888107-08:00,1681.0,10.849244,10849.244 +5839,2025-03-07T17:30:18.735572-08:00,1743.0,10.847465,10847.465 +5840,2025-03-07T17:30:29.576930-08:00,1744.0,10.841358,10841.358 +5841,2025-03-07T17:30:40.416887-08:00,1715.0,10.839957,10839.957 +5842,2025-03-07T17:30:51.263884-08:00,1711.0,10.846997,10846.997 +5843,2025-03-07T17:31:02.104113-08:00,1741.0,10.840229,10840.229 +5844,2025-03-07T17:31:12.939219-08:00,1744.0,10.835106,10835.106 +5845,2025-03-07T17:31:23.778210-08:00,1759.0,10.838991,10838.991 +5846,2025-03-07T17:31:34.627582-08:00,1766.0,10.849372,10849.372 +5847,2025-03-07T17:31:45.470457-08:00,1743.0,10.842875,10842.875 +5848,2025-03-07T17:31:56.324227-08:00,1762.0,10.85377,10853.77 +5849,2025-03-07T17:32:07.158052-08:00,1714.0,10.833825,10833.825 +5850,2025-03-07T17:32:18.002857-08:00,1762.0,10.844805,10844.805 +5851,2025-03-07T17:32:28.840886-08:00,1731.0,10.838029,10838.029 +5852,2025-03-07T17:32:39.685151-08:00,1762.0,10.844265,10844.265 +5853,2025-03-07T17:32:50.524034-08:00,1712.0,10.838883,10838.883 +5854,2025-03-07T17:33:01.367883-08:00,1744.0,10.843849,10843.849 +5855,2025-03-07T17:33:12.209151-08:00,1760.0,10.841268,10841.268 +5856,2025-03-07T17:33:23.058150-08:00,1753.0,10.848999,10848.999 +5857,2025-03-07T17:33:33.891887-08:00,1757.0,10.833737,10833.737 +5858,2025-03-07T17:33:44.738321-08:00,1680.0,10.846434,10846.434 +5859,2025-03-07T17:33:55.569879-08:00,1744.0,10.831558,10831.558 +5860,2025-03-07T17:34:06.411692-08:00,1735.0,10.841813,10841.813 +5861,2025-03-07T17:34:17.249939-08:00,1677.0,10.838247,10838.247 +5862,2025-03-07T17:34:28.081240-08:00,1679.0,10.831301,10831.301 +5863,2025-03-07T17:34:38.916021-08:00,1742.0,10.834781,10834.781 +5864,2025-03-07T17:34:49.756097-08:00,1754.0,10.840076,10840.076 +5865,2025-03-07T17:35:00.598025-08:00,1712.0,10.841928,10841.928 +5866,2025-03-07T17:35:11.433186-08:00,1717.0,10.835161,10835.161 +5867,2025-03-07T17:35:22.270237-08:00,1709.0,10.837051,10837.051 +5868,2025-03-07T17:35:33.117092-08:00,1675.0,10.846855,10846.855 +5869,2025-03-07T17:35:43.966079-08:00,1747.0,10.848987,10848.987 +5870,2025-03-07T17:35:54.803572-08:00,1671.0,10.837493,10837.493 +5871,2025-03-07T17:36:05.646143-08:00,1755.0,10.842571,10842.571 +5872,2025-03-07T17:36:16.479888-08:00,1682.0,10.833745,10833.745 +5873,2025-03-07T17:36:27.323184-08:00,1704.0,10.843296,10843.296 +5874,2025-03-07T17:36:38.160966-08:00,1706.0,10.837782,10837.782 +5875,2025-03-07T17:36:49.001288-08:00,1741.0,10.840322,10840.322 +5876,2025-03-07T17:36:59.850893-08:00,1715.0,10.849605,10849.605 +5877,2025-03-07T17:37:10.687871-08:00,1754.0,10.836978,10836.978 +5878,2025-03-07T17:37:21.525115-08:00,1675.0,10.837244,10837.244 +5879,2025-03-07T17:37:32.369125-08:00,1744.0,10.84401,10844.01 +5880,2025-03-07T17:37:43.210029-08:00,1710.0,10.840904,10840.904 +5881,2025-03-07T17:37:54.055176-08:00,1679.0,10.845147,10845.147 +5882,2025-03-07T17:38:04.897636-08:00,1746.0,10.84246,10842.46 +5883,2025-03-07T17:38:15.743175-08:00,1733.0,10.845539,10845.539 +5884,2025-03-07T17:38:26.574134-08:00,1744.0,10.830959,10830.959 +5885,2025-03-07T17:38:37.417205-08:00,1678.0,10.843071,10843.071 +5886,2025-03-07T17:38:48.257088-08:00,1729.0,10.839883,10839.883 +5887,2025-03-07T17:38:59.088881-08:00,1749.0,10.831793,10831.793 +5888,2025-03-07T17:39:09.933154-08:00,1694.0,10.844273,10844.273 +5889,2025-03-07T17:39:20.773133-08:00,1744.0,10.839979,10839.979 +5890,2025-03-07T17:39:31.618883-08:00,1711.0,10.84575,10845.75 +5891,2025-03-07T17:39:42.458090-08:00,1679.0,10.839207,10839.207 +5892,2025-03-07T17:39:53.307287-08:00,1737.0,10.849197,10849.197 +5893,2025-03-07T17:40:04.144880-08:00,1730.0,10.837593,10837.593 +5894,2025-03-07T17:40:14.987779-08:00,1693.0,10.842899,10842.899 +5895,2025-03-07T17:40:25.834918-08:00,1746.0,10.847139,10847.139 +5896,2025-03-07T17:40:36.681891-08:00,1734.0,10.846973,10846.973 +5897,2025-03-07T17:40:47.515517-08:00,1740.0,10.833626,10833.626 +5898,2025-03-07T17:40:58.363933-08:00,1665.0,10.848416,10848.416 +5899,2025-03-07T17:41:09.202887-08:00,1701.0,10.838954,10838.954 +5900,2025-03-07T17:41:20.051116-08:00,1745.0,10.848229,10848.229 +5901,2025-03-07T17:41:30.899044-08:00,1705.0,10.847928,10847.928 +5902,2025-03-07T17:41:41.739223-08:00,1733.0,10.840179,10840.179 +5903,2025-03-07T17:41:52.579196-08:00,1727.0,10.839973,10839.973 +5904,2025-03-07T17:42:03.430391-08:00,1699.0,10.851195,10851.195 +5905,2025-03-07T17:42:14.276031-08:00,1739.0,10.84564,10845.64 +5906,2025-03-07T17:42:25.116888-08:00,1743.0,10.840857,10840.857 +5907,2025-03-07T17:42:35.953935-08:00,1726.0,10.837047,10837.047 +5908,2025-03-07T17:42:46.790965-08:00,1731.0,10.83703,10837.03 +5909,2025-03-07T17:42:57.640376-08:00,1693.0,10.849411,10849.411 +5910,2025-03-07T17:43:08.482299-08:00,1744.0,10.841923,10841.923 +5911,2025-03-07T17:43:19.320595-08:00,1712.0,10.838296,10838.296 +5912,2025-03-07T17:43:30.159200-08:00,1743.0,10.838605,10838.605 +5913,2025-03-07T17:43:40.995890-08:00,1678.0,10.83669,10836.69 +5914,2025-03-07T17:43:51.850034-08:00,1701.0,10.854144,10854.144 +5915,2025-03-07T17:44:02.686066-08:00,1727.0,10.836032,10836.032 +5916,2025-03-07T17:44:13.539929-08:00,1670.0,10.853863,10853.863 +5917,2025-03-07T17:44:24.382959-08:00,1655.0,10.84303,10843.03 +5918,2025-03-07T17:44:35.227295-08:00,1693.0,10.844336,10844.336 +5919,2025-03-07T17:44:46.075372-08:00,1663.0,10.848077,10848.077 +5920,2025-03-07T17:44:56.918971-08:00,1687.0,10.843599,10843.599 +5921,2025-03-07T17:45:07.762866-08:00,1737.0,10.843895,10843.895 +5922,2025-03-07T17:45:18.605028-08:00,1734.0,10.842162,10842.162 +5923,2025-03-07T17:45:29.445020-08:00,1682.0,10.839992,10839.992 +5924,2025-03-07T17:45:40.299075-08:00,1712.0,10.854055,10854.055 +5925,2025-03-07T17:45:51.140192-08:00,1713.0,10.841117,10841.117 +5926,2025-03-07T17:46:01.982170-08:00,1728.0,10.841978,10841.978 +5927,2025-03-07T17:46:12.819953-08:00,1727.0,10.837783,10837.783 +5928,2025-03-07T17:46:23.658225-08:00,1690.0,10.838272,10838.272 +5929,2025-03-07T17:46:34.508374-08:00,1735.0,10.850149,10850.149 +5930,2025-03-07T17:46:45.344948-08:00,1655.0,10.836574,10836.574 +5931,2025-03-07T17:46:56.186273-08:00,1723.0,10.841325,10841.325 +5932,2025-03-07T17:47:07.025946-08:00,1639.0,10.839673,10839.673 +5933,2025-03-07T17:47:17.873446-08:00,1694.0,10.8475,10847.5 +5934,2025-03-07T17:47:28.716924-08:00,1695.0,10.843478,10843.478 +5935,2025-03-07T17:47:39.555141-08:00,1688.0,10.838217,10838.217 +5936,2025-03-07T17:47:50.397171-08:00,1725.0,10.84203,10842.03 +5937,2025-03-07T17:48:01.241357-08:00,1738.0,10.844186,10844.186 +5938,2025-03-07T17:48:12.088139-08:00,1721.0,10.846782,10846.782 +5939,2025-03-07T17:48:22.929939-08:00,1664.0,10.8418,10841.8 +5940,2025-03-07T17:48:33.769887-08:00,1729.0,10.839948,10839.948 +5941,2025-03-07T17:48:44.613232-08:00,1731.0,10.843345,10843.345 +5942,2025-03-07T17:48:55.456190-08:00,1706.0,10.842958,10842.958 +5943,2025-03-07T17:49:06.299889-08:00,1728.0,10.843699,10843.699 +5944,2025-03-07T17:49:17.142884-08:00,1728.0,10.842995,10842.995 +5945,2025-03-07T17:49:27.985536-08:00,1648.0,10.842652,10842.652 +5946,2025-03-07T17:49:38.832313-08:00,1728.0,10.846777,10846.777 +5947,2025-03-07T17:49:49.669624-08:00,1735.0,10.837311,10837.311 +5948,2025-03-07T17:50:00.513885-08:00,1733.0,10.844261,10844.261 +5949,2025-03-07T17:50:11.349148-08:00,1731.0,10.835263,10835.263 +5950,2025-03-07T17:50:22.194194-08:00,1689.0,10.845046,10845.046 +5951,2025-03-07T17:50:33.033088-08:00,1682.0,10.838894,10838.894 +5952,2025-03-07T17:50:43.873872-08:00,1734.0,10.840784,10840.784 +5953,2025-03-07T17:50:54.724186-08:00,1719.0,10.850314,10850.314 +5954,2025-03-07T17:51:05.563504-08:00,1728.0,10.839318,10839.318 +5955,2025-03-07T17:51:16.404026-08:00,1680.0,10.840522,10840.522 +5956,2025-03-07T17:51:27.251354-08:00,1733.0,10.847328,10847.328 +5957,2025-03-07T17:51:38.090865-08:00,1729.0,10.839511,10839.511 +5958,2025-03-07T17:51:48.923166-08:00,1732.0,10.832301,10832.301 +5959,2025-03-07T17:51:59.765173-08:00,1712.0,10.842007,10842.007 +5960,2025-03-07T17:52:10.603890-08:00,1699.0,10.838717,10838.717 +5961,2025-03-07T17:52:21.438416-08:00,1710.0,10.834526,10834.526 +5962,2025-03-07T17:52:32.277877-08:00,1729.0,10.839461,10839.461 +5963,2025-03-07T17:52:43.120087-08:00,1706.0,10.84221,10842.21 +5964,2025-03-07T17:52:53.965891-08:00,1729.0,10.845804,10845.804 +5965,2025-03-07T17:53:04.811932-08:00,1663.0,10.846041,10846.041 +5966,2025-03-07T17:53:15.650923-08:00,1733.0,10.838991,10838.991 +5967,2025-03-07T17:53:26.499946-08:00,1693.0,10.849023,10849.023 +5968,2025-03-07T17:53:37.336708-08:00,1647.0,10.836762,10836.762 +5969,2025-03-07T17:53:48.179271-08:00,1700.0,10.842563,10842.563 +5970,2025-03-07T17:53:59.016939-08:00,1731.0,10.837668,10837.668 +5971,2025-03-07T17:54:09.850115-08:00,1683.0,10.833176,10833.176 +5972,2025-03-07T17:54:20.692053-08:00,1678.0,10.841938,10841.938 +5973,2025-03-07T17:54:31.525890-08:00,1712.0,10.833837,10833.837 +5974,2025-03-07T17:54:42.372123-08:00,1653.0,10.846233,10846.233 +5975,2025-03-07T17:54:53.199349-08:00,1653.0,10.827226,10827.226 +5976,2025-03-07T17:55:04.045238-08:00,1721.0,10.845889,10845.889 +5977,2025-03-07T17:55:14.883201-08:00,1732.0,10.837963,10837.963 +5978,2025-03-07T17:55:25.716945-08:00,1719.0,10.833744,10833.744 +5979,2025-03-07T17:55:36.561350-08:00,1651.0,10.844405,10844.405 +5980,2025-03-07T17:55:47.401878-08:00,1731.0,10.840528,10840.528 +5981,2025-03-07T17:55:58.239886-08:00,1729.0,10.838008,10838.008 +5982,2025-03-07T17:56:09.083225-08:00,1685.0,10.843339,10843.339 +5983,2025-03-07T17:56:19.925849-08:00,1696.0,10.842624,10842.624 +5984,2025-03-07T17:56:30.762872-08:00,1730.0,10.837023,10837.023 +5985,2025-03-07T17:56:41.607207-08:00,1675.0,10.844335,10844.335 +5986,2025-03-07T17:56:52.449938-08:00,1695.0,10.842731,10842.731 +5987,2025-03-07T17:57:03.297419-08:00,1727.0,10.847481,10847.481 +5988,2025-03-07T17:57:14.133725-08:00,1728.0,10.836306,10836.306 +5989,2025-03-07T17:57:24.976969-08:00,1679.0,10.843244,10843.244 +5990,2025-03-07T17:57:35.823910-08:00,1727.0,10.846941,10846.941 +5991,2025-03-07T17:57:46.672170-08:00,1705.0,10.84826,10848.26 +5992,2025-03-07T17:57:57.519129-08:00,1703.0,10.846959,10846.959 +5993,2025-03-07T17:58:08.365951-08:00,1695.0,10.846822,10846.822 +5994,2025-03-07T17:58:19.207153-08:00,1727.0,10.841202,10841.202 +5995,2025-03-07T17:58:30.055014-08:00,1727.0,10.847861,10847.861 +5996,2025-03-07T17:58:40.902858-08:00,1683.0,10.847844,10847.844 +5997,2025-03-07T17:58:51.741063-08:00,1721.0,10.838205,10838.205 +5998,2025-03-07T17:59:02.590648-08:00,1711.0,10.849585,10849.585 +5999,2025-03-07T17:59:13.440141-08:00,1706.0,10.849493,10849.493 +6000,2025-03-07T17:59:24.279884-08:00,1710.0,10.839743,10839.743 +6001,2025-03-07T17:59:35.125130-08:00,1642.0,10.845246,10845.246 +6002,2025-03-07T17:59:45.962941-08:00,1645.0,10.837811,10837.811 +6003,2025-03-07T17:59:56.802912-08:00,1641.0,10.839971,10839.971 +6004,2025-03-07T18:00:07.640869-08:00,1709.0,10.837957,10837.957 +6005,2025-03-07T18:00:18.474140-08:00,1682.0,10.833271,10833.271 +6006,2025-03-07T18:00:29.314903-08:00,1677.0,10.840763,10840.763 +6007,2025-03-07T18:00:40.162944-08:00,1698.0,10.848041,10848.041 +6008,2025-03-07T18:00:51.003941-08:00,1722.0,10.840997,10840.997 +6009,2025-03-07T18:01:01.846582-08:00,1701.0,10.842641,10842.641 +6010,2025-03-07T18:01:12.683879-08:00,1683.0,10.837297,10837.297 +6011,2025-03-07T18:01:23.526886-08:00,1680.0,10.843007,10843.007 +6012,2025-03-07T18:01:34.372884-08:00,1684.0,10.845998,10845.998 +6013,2025-03-07T18:01:45.214890-08:00,1725.0,10.842006,10842.006 +6014,2025-03-07T18:01:56.062359-08:00,1721.0,10.847469,10847.469 +6015,2025-03-07T18:02:06.896990-08:00,1708.0,10.834631,10834.631 +6016,2025-03-07T18:02:17.737973-08:00,1706.0,10.840983,10840.983 +6017,2025-03-07T18:02:28.585173-08:00,1665.0,10.8472,10847.2 +6018,2025-03-07T18:02:39.423215-08:00,1670.0,10.838042,10838.042 +6019,2025-03-07T18:02:50.260882-08:00,1665.0,10.837667,10837.667 +6020,2025-03-07T18:03:01.097004-08:00,1675.0,10.836122,10836.122 +6021,2025-03-07T18:03:11.941152-08:00,1717.0,10.844148,10844.148 +6022,2025-03-07T18:03:22.783929-08:00,1696.0,10.842777,10842.777 +6023,2025-03-07T18:03:33.621884-08:00,1648.0,10.837955,10837.955 +6024,2025-03-07T18:03:44.464887-08:00,1717.0,10.843003,10843.003 +6025,2025-03-07T18:03:55.301093-08:00,1723.0,10.836206,10836.206 +6026,2025-03-07T18:04:06.144877-08:00,1630.0,10.843784,10843.784 +6027,2025-03-07T18:04:16.987718-08:00,1671.0,10.842841,10842.841 +6028,2025-03-07T18:04:27.831880-08:00,1646.0,10.844162,10844.162 +6029,2025-03-07T18:04:38.669366-08:00,1679.0,10.837486,10837.486 +6030,2025-03-07T18:04:49.505868-08:00,1674.0,10.836502,10836.502 +6031,2025-03-07T18:05:00.348888-08:00,1716.0,10.84302,10843.02 +6032,2025-03-07T18:05:11.192261-08:00,1676.0,10.843373,10843.373 +6033,2025-03-07T18:05:22.028881-08:00,1690.0,10.83662,10836.62 +6034,2025-03-07T18:05:32.873862-08:00,1671.0,10.844981,10844.981 +6035,2025-03-07T18:05:43.745622-08:00,1633.0,10.87176,10871.76 +6036,2025-03-07T18:05:54.580209-08:00,1686.0,10.834587,10834.587 +6037,2025-03-07T18:06:05.424691-08:00,1714.0,10.844482,10844.482 +6038,2025-03-07T18:06:16.271880-08:00,1625.0,10.847189,10847.189 +6039,2025-03-07T18:06:27.108607-08:00,1713.0,10.836727,10836.727 +6040,2025-03-07T18:06:37.952112-08:00,1647.0,10.843505,10843.505 +6041,2025-03-07T18:06:48.790858-08:00,1648.0,10.838746,10838.746 +6042,2025-03-07T18:06:59.638909-08:00,1710.0,10.848051,10848.051 +6043,2025-03-07T18:07:10.479621-08:00,1713.0,10.840712,10840.712 +6044,2025-03-07T18:07:21.319851-08:00,1714.0,10.84023,10840.23 +6045,2025-03-07T18:07:32.168003-08:00,1658.0,10.848152,10848.152 +6046,2025-03-07T18:07:43.013896-08:00,1713.0,10.845893,10845.893 +6047,2025-03-07T18:07:53.865803-08:00,1653.0,10.851907,10851.907 +6048,2025-03-07T18:08:04.699624-08:00,1713.0,10.833821,10833.821 +6049,2025-03-07T18:08:15.549849-08:00,1712.0,10.850225,10850.225 +6050,2025-03-07T18:08:26.379612-08:00,1711.0,10.829763,10829.763 +6051,2025-03-07T18:08:37.221894-08:00,1679.0,10.842282,10842.282 +6052,2025-03-07T18:08:48.056741-08:00,1714.0,10.834847,10834.847 +6053,2025-03-07T18:08:58.901978-08:00,1617.0,10.845237,10845.237 +6054,2025-03-07T18:09:09.745546-08:00,1669.0,10.843568,10843.568 +6055,2025-03-07T18:09:20.587737-08:00,1712.0,10.842191,10842.191 +6056,2025-03-07T18:09:31.425629-08:00,1671.0,10.837892,10837.892 +6057,2025-03-07T18:09:42.263965-08:00,1663.0,10.838336,10838.336 +6058,2025-03-07T18:09:53.103611-08:00,1674.0,10.839646,10839.646 +6059,2025-03-07T18:10:03.952861-08:00,1651.0,10.84925,10849.25 +6060,2025-03-07T18:10:14.791624-08:00,1713.0,10.838763,10838.763 +6061,2025-03-07T18:10:25.631967-08:00,1709.0,10.840343,10840.343 +6062,2025-03-07T18:10:36.478661-08:00,1638.0,10.846694,10846.694 +6063,2025-03-07T18:10:47.322947-08:00,1679.0,10.844286,10844.286 +6064,2025-03-07T18:10:58.175902-08:00,1623.0,10.852955,10852.955 +6065,2025-03-07T18:11:09.014204-08:00,1698.0,10.838302,10838.302 +6066,2025-03-07T18:11:19.862214-08:00,1705.0,10.84801,10848.01 +6067,2025-03-07T18:11:30.702675-08:00,1713.0,10.840461,10840.461 +6068,2025-03-07T18:11:41.542615-08:00,1689.0,10.83994,10839.94 +6069,2025-03-07T18:11:52.389614-08:00,1712.0,10.846999,10846.999 +6070,2025-03-07T18:12:03.233599-08:00,1712.0,10.843985,10843.985 +6071,2025-03-07T18:12:14.076176-08:00,1711.0,10.842577,10842.577 +6072,2025-03-07T18:12:24.926804-08:00,1695.0,10.850628,10850.628 +6073,2025-03-07T18:12:35.768620-08:00,1680.0,10.841816,10841.816 +6074,2025-03-07T18:12:46.607583-08:00,1674.0,10.838963,10838.963 +6075,2025-03-07T18:12:57.458618-08:00,1669.0,10.851035,10851.035 +6076,2025-03-07T18:13:08.298376-08:00,1698.0,10.839758,10839.758 +6077,2025-03-07T18:13:19.133682-08:00,1678.0,10.835306,10835.306 +6078,2025-03-07T18:13:29.978748-08:00,1690.0,10.845066,10845.066 +6079,2025-03-07T18:13:40.822620-08:00,1679.0,10.843872,10843.872 +6080,2025-03-07T18:13:51.669805-08:00,1700.0,10.847185,10847.185 +6081,2025-03-07T18:14:02.514581-08:00,1679.0,10.844776,10844.776 +6082,2025-03-07T18:14:13.364671-08:00,1680.0,10.85009,10850.09 +6083,2025-03-07T18:14:24.217671-08:00,1701.0,10.853,10853.0 +6084,2025-03-07T18:14:35.071160-08:00,1666.0,10.853489,10853.489 +6085,2025-03-07T18:14:45.913667-08:00,1694.0,10.842507,10842.507 +6086,2025-03-07T18:14:56.765796-08:00,1697.0,10.852129,10852.129 +6087,2025-03-07T18:15:07.607652-08:00,1680.0,10.841856,10841.856 +6088,2025-03-07T18:15:18.456939-08:00,1705.0,10.849287,10849.287 +6089,2025-03-07T18:15:29.304999-08:00,1631.0,10.84806,10848.06 +6090,2025-03-07T18:15:40.158500-08:00,1667.0,10.853501,10853.501 +6091,2025-03-07T18:15:51.006556-08:00,1687.0,10.848056,10848.056 +6092,2025-03-07T18:16:01.840001-08:00,1680.0,10.833445,10833.445 +6093,2025-03-07T18:16:12.684860-08:00,1711.0,10.844859,10844.859 +6094,2025-03-07T18:16:23.520773-08:00,1649.0,10.835913,10835.913 +6095,2025-03-07T18:16:34.367825-08:00,1678.0,10.847052,10847.052 +6096,2025-03-07T18:16:45.211803-08:00,1709.0,10.843978,10843.978 +6097,2025-03-07T18:16:56.047448-08:00,1690.0,10.835645,10835.645 +6098,2025-03-07T18:17:06.897911-08:00,1694.0,10.850463,10850.463 +6099,2025-03-07T18:17:17.743881-08:00,1711.0,10.84597,10845.97 +6100,2025-03-07T18:17:28.589617-08:00,1685.0,10.845736,10845.736 +6101,2025-03-07T18:17:39.428614-08:00,1702.0,10.838997,10838.997 +6102,2025-03-07T18:17:50.273621-08:00,1695.0,10.845007,10845.007 +6103,2025-03-07T18:18:01.125949-08:00,1711.0,10.852328,10852.328 +6104,2025-03-07T18:18:11.967108-08:00,1679.0,10.841159,10841.159 +6105,2025-03-07T18:18:22.817997-08:00,1686.0,10.850889,10850.889 +6106,2025-03-07T18:18:33.659623-08:00,1698.0,10.841626,10841.626 +6107,2025-03-07T18:18:44.509933-08:00,1707.0,10.85031,10850.31 +6108,2025-03-07T18:18:55.350615-08:00,1712.0,10.840682,10840.682 +6109,2025-03-07T18:19:06.195946-08:00,1698.0,10.845331,10845.331 +6110,2025-03-07T18:19:17.047054-08:00,1654.0,10.851108,10851.108 +6111,2025-03-07T18:19:27.903019-08:00,1699.0,10.855965,10855.965 +6112,2025-03-07T18:19:38.746532-08:00,1663.0,10.843513,10843.513 +6113,2025-03-07T18:19:49.590616-08:00,1665.0,10.844084,10844.084 +6114,2025-03-07T18:20:00.436618-08:00,1691.0,10.846002,10846.002 +6115,2025-03-07T18:20:11.282621-08:00,1648.0,10.846003,10846.003 +6116,2025-03-07T18:20:22.130684-08:00,1619.0,10.848063,10848.063 +6117,2025-03-07T18:20:32.968665-08:00,1702.0,10.837981,10837.981 +6118,2025-03-07T18:20:43.816924-08:00,1625.0,10.848259,10848.259 +6119,2025-03-07T18:20:54.671191-08:00,1703.0,10.854267,10854.267 +6120,2025-03-07T18:21:05.522287-08:00,1697.0,10.851096,10851.096 +6121,2025-03-07T18:21:16.369760-08:00,1618.0,10.847473,10847.473 +6122,2025-03-07T18:21:27.212862-08:00,1640.0,10.843102,10843.102 +6123,2025-03-07T18:21:38.061599-08:00,1710.0,10.848737,10848.737 +6124,2025-03-07T18:21:48.904475-08:00,1622.0,10.842876,10842.876 +6125,2025-03-07T18:21:59.746618-08:00,1616.0,10.842143,10842.143 +6126,2025-03-07T18:22:10.581616-08:00,1682.0,10.834998,10834.998 +6127,2025-03-07T18:22:21.428885-08:00,1655.0,10.847269,10847.269 +6128,2025-03-07T18:22:32.276624-08:00,1677.0,10.847739,10847.739 +6129,2025-03-07T18:22:43.130998-08:00,1649.0,10.854374,10854.374 +6130,2025-03-07T18:22:53.979949-08:00,1680.0,10.848951,10848.951 +6131,2025-03-07T18:23:04.828728-08:00,1709.0,10.848779,10848.779 +6132,2025-03-07T18:23:15.671657-08:00,1659.0,10.842929,10842.929 +6133,2025-03-07T18:23:26.519812-08:00,1707.0,10.848155,10848.155 +6134,2025-03-07T18:23:37.357863-08:00,1667.0,10.838051,10838.051 +6135,2025-03-07T18:23:48.201345-08:00,1665.0,10.843482,10843.482 +6136,2025-03-07T18:23:59.043622-08:00,1657.0,10.842277,10842.277 +6137,2025-03-07T18:24:09.893675-08:00,1673.0,10.850053,10850.053 +6138,2025-03-07T18:24:20.739853-08:00,1647.0,10.846178,10846.178 +6139,2025-03-07T18:24:31.587603-08:00,1708.0,10.84775,10847.75 +6140,2025-03-07T18:24:42.438798-08:00,1674.0,10.851195,10851.195 +6141,2025-03-07T18:24:53.274944-08:00,1667.0,10.836146,10836.146 +6142,2025-03-07T18:25:04.121799-08:00,1703.0,10.846855,10846.855 +6143,2025-03-07T18:25:14.962825-08:00,1711.0,10.841026,10841.026 +6144,2025-03-07T18:25:25.801845-08:00,1617.0,10.83902,10839.02 +6145,2025-03-07T18:25:36.647959-08:00,1703.0,10.846114,10846.114 +6146,2025-03-07T18:25:47.498010-08:00,1673.0,10.850051,10850.051 +6147,2025-03-07T18:25:58.352747-08:00,1693.0,10.854737,10854.737 +6148,2025-03-07T18:26:09.200224-08:00,1675.0,10.847477,10847.477 +6149,2025-03-07T18:26:20.043209-08:00,1712.0,10.842985,10842.985 +6150,2025-03-07T18:26:30.887706-08:00,1703.0,10.844497,10844.497 +6151,2025-03-07T18:26:41.729877-08:00,1685.0,10.842171,10842.171 +6152,2025-03-07T18:26:52.573395-08:00,1632.0,10.843518,10843.518 +6153,2025-03-07T18:27:03.423183-08:00,1618.0,10.849788,10849.788 +6154,2025-03-07T18:27:14.266616-08:00,1686.0,10.843433,10843.433 +6155,2025-03-07T18:27:25.111615-08:00,1697.0,10.844999,10844.999 +6156,2025-03-07T18:27:35.962612-08:00,1707.0,10.850997,10850.997 +6157,2025-03-07T18:27:46.810861-08:00,1705.0,10.848249,10848.249 +6158,2025-03-07T18:27:57.654236-08:00,1689.0,10.843375,10843.375 +6159,2025-03-07T18:28:08.493654-08:00,1711.0,10.839418,10839.418 +6160,2025-03-07T18:28:19.339616-08:00,1664.0,10.845962,10845.962 +6161,2025-03-07T18:28:30.177939-08:00,1621.0,10.838323,10838.323 +6162,2025-03-07T18:28:41.027619-08:00,1661.0,10.84968,10849.68 +6163,2025-03-07T18:28:51.868878-08:00,1665.0,10.841259,10841.259 +6164,2025-03-07T18:29:02.712772-08:00,1703.0,10.843894,10843.894 +6165,2025-03-07T18:29:13.565676-08:00,1699.0,10.852904,10852.904 +6166,2025-03-07T18:29:24.411725-08:00,1709.0,10.846049,10846.049 +6167,2025-03-07T18:29:35.260300-08:00,1709.0,10.848575,10848.575 +6168,2025-03-07T18:29:46.109928-08:00,1708.0,10.849628,10849.628 +6169,2025-03-07T18:29:56.962623-08:00,1669.0,10.852695,10852.695 +6170,2025-03-07T18:30:07.806196-08:00,1679.0,10.843573,10843.573 +6171,2025-03-07T18:30:18.654281-08:00,1710.0,10.848085,10848.085 +6172,2025-03-07T18:30:29.506407-08:00,1706.0,10.852126,10852.126 +6173,2025-03-07T18:30:51.198778-08:00,1712.0,21.692371,21692.371 +6174,2025-03-07T18:31:02.044612-08:00,1709.0,10.845834,10845.834 +6175,2025-03-07T18:31:12.894771-08:00,1657.0,10.850159,10850.159 +6176,2025-03-07T18:31:23.736876-08:00,1645.0,10.842105,10842.105 +6177,2025-03-07T18:31:34.591633-08:00,1687.0,10.854757,10854.757 +6178,2025-03-07T18:31:45.443758-08:00,1681.0,10.852125,10852.125 +6179,2025-03-07T18:31:56.288161-08:00,1711.0,10.844403,10844.403 +6180,2025-03-07T18:32:07.147982-08:00,1648.0,10.859821,10859.821 +6181,2025-03-07T18:32:17.991053-08:00,1663.0,10.843071,10843.071 +6182,2025-03-07T18:32:28.843900-08:00,1669.0,10.852847,10852.847 +6183,2025-03-07T18:32:39.688715-08:00,1712.0,10.844815,10844.815 +6184,2025-03-07T18:32:50.536729-08:00,1680.0,10.848014,10848.014 +6185,2025-03-07T18:33:01.396624-08:00,1630.0,10.859895,10859.895 +6186,2025-03-07T18:33:12.247618-08:00,1675.0,10.850994,10850.994 +6187,2025-03-07T18:33:23.093643-08:00,1680.0,10.846025,10846.025 +6188,2025-03-07T18:33:33.939012-08:00,1710.0,10.845369,10845.369 +6189,2025-03-07T18:33:44.786624-08:00,1710.0,10.847612,10847.612 +6190,2025-03-07T18:33:55.636607-08:00,1617.0,10.849983,10849.983 +6191,2025-03-07T18:34:06.485737-08:00,1684.0,10.84913,10849.13 +6192,2025-03-07T18:34:17.345897-08:00,1710.0,10.86016,10860.16 +6193,2025-03-07T18:34:28.185919-08:00,1702.0,10.840022,10840.022 +6194,2025-03-07T18:34:39.043627-08:00,1683.0,10.857708,10857.708 +6195,2025-03-07T18:34:49.881671-08:00,1678.0,10.838044,10838.044 +6196,2025-03-07T18:35:00.735390-08:00,1703.0,10.853719,10853.719 +6197,2025-03-07T18:35:11.582681-08:00,1620.0,10.847291,10847.291 +6198,2025-03-07T18:35:22.425894-08:00,1679.0,10.843213,10843.213 +6199,2025-03-07T18:35:33.268657-08:00,1655.0,10.842763,10842.763 +6200,2025-03-07T18:35:44.117195-08:00,1646.0,10.848538,10848.538 +6201,2025-03-07T18:35:54.966891-08:00,1693.0,10.849696,10849.696 +6202,2025-03-07T18:36:05.805314-08:00,1709.0,10.838423,10838.423 +6203,2025-03-07T18:36:16.654927-08:00,1648.0,10.849613,10849.613 +6204,2025-03-07T18:36:27.489618-08:00,1712.0,10.834691,10834.691 +6205,2025-03-07T18:36:38.337599-08:00,1667.0,10.847981,10847.981 +6206,2025-03-07T18:36:49.183663-08:00,1690.0,10.846064,10846.064 +6207,2025-03-07T18:37:00.035619-08:00,1710.0,10.851956,10851.956 +6208,2025-03-07T18:37:10.880675-08:00,1620.0,10.845056,10845.056 +6209,2025-03-07T18:37:21.717854-08:00,1699.0,10.837179,10837.179 +6210,2025-03-07T18:37:32.573268-08:00,1712.0,10.855414,10855.414 +6211,2025-03-07T18:37:43.414771-08:00,1710.0,10.841503,10841.503 +6212,2025-03-07T18:37:54.252625-08:00,1616.0,10.837854,10837.854 +6213,2025-03-07T18:38:05.106616-08:00,1675.0,10.853991,10853.991 +6214,2025-03-07T18:38:15.950022-08:00,1649.0,10.843406,10843.406 +6215,2025-03-07T18:38:26.790794-08:00,1710.0,10.840772,10840.772 +6216,2025-03-07T18:38:37.643618-08:00,1712.0,10.852824,10852.824 +6217,2025-03-07T18:38:48.490105-08:00,1621.0,10.846487,10846.487 +6218,2025-03-07T18:38:59.339858-08:00,1705.0,10.849753,10849.753 +6219,2025-03-07T18:39:10.186662-08:00,1697.0,10.846804,10846.804 +6220,2025-03-07T18:39:21.026698-08:00,1657.0,10.840036,10840.036 +6221,2025-03-07T18:39:31.873992-08:00,1709.0,10.847294,10847.294 +6222,2025-03-07T18:39:42.723410-08:00,1612.0,10.849418,10849.418 +6223,2025-03-07T18:39:53.560928-08:00,1651.0,10.837518,10837.518 +6224,2025-03-07T18:40:04.416178-08:00,1712.0,10.85525,10855.25 +6225,2025-03-07T18:40:15.257614-08:00,1681.0,10.841436,10841.436 +6226,2025-03-07T18:40:26.096430-08:00,1697.0,10.838816,10838.816 +6227,2025-03-07T18:40:36.945583-08:00,1705.0,10.849153,10849.153 +6228,2025-03-07T18:40:47.786680-08:00,1687.0,10.841097,10841.097 +6229,2025-03-07T18:40:58.624621-08:00,1701.0,10.837941,10837.941 +6230,2025-03-07T18:41:09.468677-08:00,1704.0,10.844056,10844.056 +6231,2025-03-07T18:41:20.315922-08:00,1630.0,10.847245,10847.245 +6232,2025-03-07T18:41:31.161043-08:00,1696.0,10.845121,10845.121 +6233,2025-03-07T18:41:42.000766-08:00,1680.0,10.839723,10839.723 +6234,2025-03-07T18:41:52.840669-08:00,1616.0,10.839903,10839.903 +6235,2025-03-07T18:42:03.678721-08:00,1711.0,10.838052,10838.052 +6236,2025-03-07T18:42:14.522797-08:00,1663.0,10.844076,10844.076 +6237,2025-03-07T18:42:25.370177-08:00,1651.0,10.84738,10847.38 +6238,2025-03-07T18:42:36.206621-08:00,1709.0,10.836444,10836.444 +6239,2025-03-07T18:42:47.056622-08:00,1623.0,10.850001,10850.001 +6240,2025-03-07T18:42:57.909632-08:00,1667.0,10.85301,10853.01 +6241,2025-03-07T18:43:08.744599-08:00,1712.0,10.834967,10834.967 +6242,2025-03-07T18:43:19.591597-08:00,1698.0,10.846998,10846.998 +6243,2025-03-07T18:43:30.435354-08:00,1701.0,10.843757,10843.757 +6244,2025-03-07T18:43:41.277943-08:00,1695.0,10.842589,10842.589 +6245,2025-03-07T18:43:52.120858-08:00,1680.0,10.842915,10842.915 +6246,2025-03-07T18:44:02.967785-08:00,1695.0,10.846927,10846.927 +6247,2025-03-07T18:44:13.815612-08:00,1698.0,10.847827,10847.827 +6248,2025-03-07T18:44:24.655349-08:00,1663.0,10.839737,10839.737 +6249,2025-03-07T18:44:35.496846-08:00,1712.0,10.841497,10841.497 +6250,2025-03-07T18:44:46.330722-08:00,1649.0,10.833876,10833.876 +6251,2025-03-07T18:44:57.173845-08:00,1681.0,10.843123,10843.123 +6252,2025-03-07T18:45:08.019628-08:00,1710.0,10.845783,10845.783 +6253,2025-03-07T18:45:18.852319-08:00,1646.0,10.832691,10832.691 +6254,2025-03-07T18:45:29.695667-08:00,1690.0,10.843348,10843.348 +6255,2025-03-07T18:45:40.538820-08:00,1648.0,10.843153,10843.153 +6256,2025-03-07T18:45:51.378218-08:00,1663.0,10.839398,10839.398 +6257,2025-03-07T18:46:02.221196-08:00,1623.0,10.842978,10842.978 +6258,2025-03-07T18:46:13.068646-08:00,1699.0,10.84745,10847.45 +6259,2025-03-07T18:46:23.913618-08:00,1616.0,10.844972,10844.972 +6260,2025-03-07T18:46:34.744955-08:00,1638.0,10.831337,10831.337 +6261,2025-03-07T18:46:45.598212-08:00,1692.0,10.853257,10853.257 +6262,2025-03-07T18:46:56.431606-08:00,1655.0,10.833394,10833.394 +6263,2025-03-07T18:47:07.272622-08:00,1707.0,10.841016,10841.016 +6264,2025-03-07T18:47:18.115848-08:00,1661.0,10.843226,10843.226 +6265,2025-03-07T18:47:28.954924-08:00,1621.0,10.839076,10839.076 +6266,2025-03-07T18:47:39.793614-08:00,1690.0,10.83869,10838.69 +6267,2025-03-07T18:47:50.633966-08:00,1623.0,10.840352,10840.352 +6268,2025-03-07T18:48:01.475989-08:00,1667.0,10.842023,10842.023 +6269,2025-03-07T18:48:12.319867-08:00,1697.0,10.843878,10843.878 +6270,2025-03-07T18:48:23.169609-08:00,1707.0,10.849742,10849.742 +6271,2025-03-07T18:48:34.011616-08:00,1651.0,10.842007,10842.007 +6272,2025-03-07T18:48:44.855001-08:00,1676.0,10.843385,10843.385 +6273,2025-03-07T18:48:55.697827-08:00,1712.0,10.842826,10842.826 +6274,2025-03-07T18:49:06.542806-08:00,1709.0,10.844979,10844.979 +6275,2025-03-07T18:49:17.380816-08:00,1654.0,10.83801,10838.01 +6276,2025-03-07T18:49:28.227621-08:00,1712.0,10.846805,10846.805 +6277,2025-03-07T18:49:39.068957-08:00,1709.0,10.841336,10841.336 +6278,2025-03-07T18:49:49.907989-08:00,1686.0,10.839032,10839.032 +6279,2025-03-07T18:50:00.749585-08:00,1663.0,10.841596,10841.596 +6280,2025-03-07T18:50:11.582620-08:00,1689.0,10.833035,10833.035 +6281,2025-03-07T18:50:22.430841-08:00,1653.0,10.848221,10848.221 +6282,2025-03-07T18:50:33.264599-08:00,1621.0,10.833758,10833.758 +6283,2025-03-07T18:50:44.112185-08:00,1698.0,10.847586,10847.586 +6284,2025-03-07T18:50:54.955656-08:00,1616.0,10.843471,10843.471 +6285,2025-03-07T18:51:05.787171-08:00,1710.0,10.831515,10831.515 +6286,2025-03-07T18:51:16.624624-08:00,1663.0,10.837453,10837.453 +6287,2025-03-07T18:51:27.472619-08:00,1681.0,10.847995,10847.995 +6288,2025-03-07T18:51:38.305878-08:00,1647.0,10.833259,10833.259 +6289,2025-03-07T18:51:49.138696-08:00,1710.0,10.832818,10832.818 +6290,2025-03-07T18:51:59.985619-08:00,1703.0,10.846923,10846.923 +6291,2025-03-07T18:52:10.828798-08:00,1707.0,10.843179,10843.179 +6292,2025-03-07T18:52:21.669141-08:00,1695.0,10.840343,10840.343 +6293,2025-03-07T18:52:32.513618-08:00,1680.0,10.844477,10844.477 +6294,2025-03-07T18:52:43.351678-08:00,1655.0,10.83806,10838.06 +6295,2025-03-07T18:52:54.197668-08:00,1707.0,10.84599,10845.99 +6296,2025-03-07T18:53:05.045299-08:00,1694.0,10.847631,10847.631 +6297,2025-03-07T18:53:15.881909-08:00,1707.0,10.83661,10836.61 +6298,2025-03-07T18:53:26.719864-08:00,1665.0,10.837955,10837.955 +6299,2025-03-07T18:53:37.555053-08:00,1710.0,10.835189,10835.189 +6300,2025-03-07T18:53:48.393812-08:00,1706.0,10.838759,10838.759 +6301,2025-03-07T18:53:59.238617-08:00,1664.0,10.844805,10844.805 +6302,2025-03-07T18:54:10.079619-08:00,1664.0,10.841002,10841.002 +6303,2025-03-07T18:54:20.916939-08:00,1629.0,10.83732,10837.32 +6304,2025-03-07T18:54:31.767075-08:00,1664.0,10.850136,10850.136 +6305,2025-03-07T18:54:42.600622-08:00,1623.0,10.833547,10833.547 +6306,2025-03-07T18:54:53.441838-08:00,1703.0,10.841216,10841.216 +6307,2025-03-07T18:55:04.284927-08:00,1667.0,10.843089,10843.089 +6308,2025-03-07T18:55:15.113623-08:00,1680.0,10.828696,10828.696 +6309,2025-03-07T18:55:25.959989-08:00,1712.0,10.846366,10846.366 +6310,2025-03-07T18:55:36.797922-08:00,1670.0,10.837933,10837.933 +6311,2025-03-07T18:55:47.634745-08:00,1670.0,10.836823,10836.823 +6312,2025-03-07T18:55:58.484182-08:00,1708.0,10.849437,10849.437 +6313,2025-03-07T18:56:09.323616-08:00,1663.0,10.839434,10839.434 +6314,2025-03-07T18:56:20.156467-08:00,1684.0,10.832851,10832.851 +6315,2025-03-07T18:56:30.996074-08:00,1673.0,10.839607,10839.607 +6316,2025-03-07T18:56:41.837596-08:00,1680.0,10.841522,10841.522 +6317,2025-03-07T18:56:52.670712-08:00,1700.0,10.833116,10833.116 +6318,2025-03-07T18:57:03.516640-08:00,1669.0,10.845928,10845.928 +6319,2025-03-07T18:57:14.361619-08:00,1680.0,10.844979,10844.979 +6320,2025-03-07T18:57:25.204940-08:00,1639.0,10.843321,10843.321 +6321,2025-03-07T18:57:36.042044-08:00,1692.0,10.837104,10837.104 +6322,2025-03-07T18:57:46.891600-08:00,1687.0,10.849556,10849.556 +6323,2025-03-07T18:57:57.728861-08:00,1712.0,10.837261,10837.261 +6324,2025-03-07T18:58:08.579599-08:00,1653.0,10.850738,10850.738 +6325,2025-03-07T18:58:19.420624-08:00,1693.0,10.841025,10841.025 +6326,2025-03-07T18:58:30.257812-08:00,1710.0,10.837188,10837.188 +6327,2025-03-07T18:58:41.104821-08:00,1697.0,10.847009,10847.009 +6328,2025-03-07T18:58:51.938770-08:00,1712.0,10.833949,10833.949 +6329,2025-03-07T18:59:02.781920-08:00,1677.0,10.84315,10843.15 +6330,2025-03-07T18:59:13.623919-08:00,1701.0,10.841999,10841.999 +6331,2025-03-07T18:59:24.466844-08:00,1653.0,10.842925,10842.925 +6332,2025-03-07T18:59:35.304621-08:00,1710.0,10.837777,10837.777 +6333,2025-03-07T18:59:46.149890-08:00,1711.0,10.845269,10845.269 +6334,2025-03-07T18:59:56.985036-08:00,1691.0,10.835146,10835.146 +6335,2025-03-07T19:00:07.830769-08:00,1679.0,10.845733,10845.733 +6336,2025-03-07T19:00:18.677621-08:00,1651.0,10.846852,10846.852 +6337,2025-03-07T19:00:29.509980-08:00,1693.0,10.832359,10832.359 +6338,2025-03-07T19:00:40.353614-08:00,1617.0,10.843634,10843.634 +6339,2025-03-07T19:00:51.185398-08:00,1617.0,10.831784,10831.784 +6340,2025-03-07T19:01:02.021949-08:00,1615.0,10.836551,10836.551 +6341,2025-03-07T19:01:12.863839-08:00,1683.0,10.84189,10841.89 +6342,2025-03-07T19:01:23.707668-08:00,1639.0,10.843829,10843.829 +6343,2025-03-07T19:01:34.546867-08:00,1638.0,10.839199,10839.199 +6344,2025-03-07T19:01:45.380509-08:00,1654.0,10.833642,10833.642 +6345,2025-03-07T19:01:56.229805-08:00,1659.0,10.849296,10849.296 +6346,2025-03-07T19:02:07.067860-08:00,1712.0,10.838055,10838.055 +6347,2025-03-07T19:02:17.908747-08:00,1712.0,10.840887,10840.887 +6348,2025-03-07T19:02:28.751951-08:00,1650.0,10.843204,10843.204 +6349,2025-03-07T19:02:39.597652-08:00,1654.0,10.845701,10845.701 +6350,2025-03-07T19:02:50.443623-08:00,1699.0,10.845971,10845.971 +6351,2025-03-07T19:03:01.283931-08:00,1661.0,10.840308,10840.308 +6352,2025-03-07T19:03:12.127257-08:00,1639.0,10.843326,10843.326 +6353,2025-03-07T19:03:22.968521-08:00,1638.0,10.841264,10841.264 +6354,2025-03-07T19:03:33.811863-08:00,1698.0,10.843342,10843.342 +6355,2025-03-07T19:03:44.644825-08:00,1621.0,10.832962,10832.962 +6356,2025-03-07T19:03:55.487910-08:00,1669.0,10.843085,10843.085 +6357,2025-03-07T19:04:06.332344-08:00,1711.0,10.844434,10844.434 +6358,2025-03-07T19:04:17.173755-08:00,1645.0,10.841411,10841.411 +6359,2025-03-07T19:04:28.017136-08:00,1692.0,10.843381,10843.381 +6360,2025-03-07T19:04:38.856304-08:00,1693.0,10.839168,10839.168 +6361,2025-03-07T19:04:49.703734-08:00,1630.0,10.84743,10847.43 +6362,2025-03-07T19:05:00.544618-08:00,1661.0,10.840884,10840.884 +6363,2025-03-07T19:05:11.388620-08:00,1682.0,10.844002,10844.002 +6364,2025-03-07T19:05:22.222960-08:00,1683.0,10.83434,10834.34 +6365,2025-03-07T19:05:33.058599-08:00,1696.0,10.835639,10835.639 +6366,2025-03-07T19:05:43.919668-08:00,1662.0,10.861069,10861.069 +6367,2025-03-07T19:05:54.751440-08:00,1610.0,10.831772,10831.772 +6368,2025-03-07T19:06:05.594037-08:00,1643.0,10.842597,10842.597 +6369,2025-03-07T19:06:16.439597-08:00,1701.0,10.84556,10845.56 +6370,2025-03-07T19:06:27.279551-08:00,1708.0,10.839954,10839.954 +6371,2025-03-07T19:06:38.122559-08:00,1686.0,10.843008,10843.008 +6372,2025-03-07T19:06:48.966930-08:00,1671.0,10.844371,10844.371 +6373,2025-03-07T19:06:59.806552-08:00,1701.0,10.839622,10839.622 +6374,2025-03-07T19:07:10.653112-08:00,1663.0,10.84656,10846.56 +6375,2025-03-07T19:07:21.499621-08:00,1622.0,10.846509,10846.509 +6376,2025-03-07T19:07:32.337897-08:00,1689.0,10.838276,10838.276 +6377,2025-03-07T19:07:43.176471-08:00,1646.0,10.838574,10838.574 +6378,2025-03-07T19:07:54.025284-08:00,1639.0,10.848813,10848.813 +6379,2025-03-07T19:08:04.857561-08:00,1664.0,10.832277,10832.277 +6380,2025-03-07T19:08:15.700133-08:00,1667.0,10.842572,10842.572 +6381,2025-03-07T19:08:26.545598-08:00,1712.0,10.845465,10845.465 +6382,2025-03-07T19:08:37.382846-08:00,1619.0,10.837248,10837.248 +6383,2025-03-07T19:08:48.230646-08:00,1710.0,10.8478,10847.8 +6384,2025-03-07T19:08:59.066786-08:00,1666.0,10.83614,10836.14 +6385,2025-03-07T19:09:09.897554-08:00,1680.0,10.830768,10830.768 +6386,2025-03-07T19:09:20.745549-08:00,1644.0,10.847995,10847.995 +6387,2025-03-07T19:09:31.584665-08:00,1681.0,10.839116,10839.116 +6388,2025-03-07T19:09:42.416558-08:00,1627.0,10.831893,10831.893 +6389,2025-03-07T19:09:53.263555-08:00,1648.0,10.846997,10846.997 +6390,2025-03-07T19:10:04.095922-08:00,1712.0,10.832367,10832.367 +6391,2025-03-07T19:10:14.946883-08:00,1687.0,10.850961,10850.961 +6392,2025-03-07T19:10:25.783958-08:00,1701.0,10.837075,10837.075 +6393,2025-03-07T19:10:36.625690-08:00,1689.0,10.841732,10841.732 +6394,2025-03-07T19:10:47.462667-08:00,1669.0,10.836977,10836.977 +6395,2025-03-07T19:10:58.307875-08:00,1683.0,10.845208,10845.208 +6396,2025-03-07T19:11:09.150535-08:00,1707.0,10.84266,10842.66 +6397,2025-03-07T19:11:19.987804-08:00,1685.0,10.837269,10837.269 +6398,2025-03-07T19:11:30.824614-08:00,1622.0,10.83681,10836.81 +6399,2025-03-07T19:11:41.672823-08:00,1644.0,10.848209,10848.209 +6400,2025-03-07T19:11:52.501558-08:00,1711.0,10.828735,10828.735 +6401,2025-03-07T19:12:03.347180-08:00,1707.0,10.845622,10845.622 +6402,2025-03-07T19:12:14.186871-08:00,1705.0,10.839691,10839.691 +6403,2025-03-07T19:12:25.015558-08:00,1712.0,10.828687,10828.687 +6404,2025-03-07T19:12:35.861561-08:00,1712.0,10.846003,10846.003 +6405,2025-03-07T19:12:46.704546-08:00,1678.0,10.842985,10842.985 +6406,2025-03-07T19:12:57.537556-08:00,1698.0,10.83301,10833.01 +6407,2025-03-07T19:13:08.369707-08:00,1663.0,10.832151,10832.151 +6408,2025-03-07T19:13:19.204584-08:00,1712.0,10.834877,10834.877 +6409,2025-03-07T19:13:30.039555-08:00,1681.0,10.834971,10834.971 +6410,2025-03-07T19:13:40.878169-08:00,1680.0,10.838614,10838.614 +6411,2025-03-07T19:13:51.711554-08:00,1711.0,10.833385,10833.385 +6412,2025-03-07T19:14:02.548557-08:00,1648.0,10.837003,10837.003 +6413,2025-03-07T19:14:13.391798-08:00,1711.0,10.843241,10843.241 +6414,2025-03-07T19:14:24.223687-08:00,1712.0,10.831889,10831.889 +6415,2025-03-07T19:14:35.069835-08:00,1664.0,10.846148,10846.148 +6416,2025-03-07T19:14:45.904127-08:00,1653.0,10.834292,10834.292 +6417,2025-03-07T19:14:56.747280-08:00,1684.0,10.843153,10843.153 +6418,2025-03-07T19:15:07.589557-08:00,1632.0,10.842277,10842.277 +6419,2025-03-07T19:15:18.432587-08:00,1712.0,10.84303,10843.03 +6420,2025-03-07T19:15:29.263884-08:00,1712.0,10.831297,10831.297 +6421,2025-03-07T19:15:40.109599-08:00,1711.0,10.845715,10845.715 +6422,2025-03-07T19:15:50.941198-08:00,1665.0,10.831599,10831.599 +6423,2025-03-07T19:16:01.777731-08:00,1711.0,10.836533,10836.533 +6424,2025-03-07T19:16:12.621591-08:00,1655.0,10.84386,10843.86 +6425,2025-03-07T19:16:23.467189-08:00,1629.0,10.845598,10845.598 +6426,2025-03-07T19:16:34.299559-08:00,1675.0,10.83237,10832.37 +6427,2025-03-07T19:16:45.143913-08:00,1687.0,10.844354,10844.354 +6428,2025-03-07T19:16:55.972266-08:00,1662.0,10.828353,10828.353 +6429,2025-03-07T19:17:06.818527-08:00,1699.0,10.846261,10846.261 +6430,2025-03-07T19:17:17.649298-08:00,1679.0,10.830771,10830.771 +6431,2025-03-07T19:17:28.493775-08:00,1686.0,10.844477,10844.477 +6432,2025-03-07T19:17:39.331531-08:00,1693.0,10.837756,10837.756 +6433,2025-03-07T19:17:50.168858-08:00,1679.0,10.837327,10837.327 +6434,2025-03-07T19:18:01.013004-08:00,1711.0,10.844146,10844.146 +6435,2025-03-07T19:18:11.853687-08:00,1681.0,10.840683,10840.683 +6436,2025-03-07T19:18:22.686901-08:00,1685.0,10.833214,10833.214 +6437,2025-03-07T19:18:33.516769-08:00,1607.0,10.829868,10829.868 +6438,2025-03-07T19:18:44.356553-08:00,1653.0,10.839784,10839.784 +6439,2025-03-07T19:18:55.202689-08:00,1648.0,10.846136,10846.136 +6440,2025-03-07T19:19:06.032522-08:00,1639.0,10.829833,10829.833 +6441,2025-03-07T19:19:16.877554-08:00,1633.0,10.845032,10845.032 +6442,2025-03-07T19:19:27.705741-08:00,1661.0,10.828187,10828.187 +6443,2025-03-07T19:19:38.549765-08:00,1645.0,10.844024,10844.024 +6444,2025-03-07T19:19:49.380553-08:00,1699.0,10.830788,10830.788 +6445,2025-03-07T19:20:00.229606-08:00,1701.0,10.849053,10849.053 +6446,2025-03-07T19:20:11.059838-08:00,1661.0,10.830232,10830.232 +6447,2025-03-07T19:20:21.904034-08:00,1705.0,10.844196,10844.196 +6448,2025-03-07T19:20:32.740147-08:00,1648.0,10.836113,10836.113 +6449,2025-03-07T19:20:43.588611-08:00,1637.0,10.848464,10848.464 +6450,2025-03-07T19:20:54.415717-08:00,1619.0,10.827106,10827.106 +6451,2025-03-07T19:21:05.252552-08:00,1712.0,10.836835,10836.835 +6452,2025-03-07T19:21:16.090927-08:00,1659.0,10.838375,10838.375 +6453,2025-03-07T19:21:26.926545-08:00,1692.0,10.835618,10835.618 +6454,2025-03-07T19:21:37.765558-08:00,1677.0,10.839013,10839.013 +6455,2025-03-07T19:21:48.603147-08:00,1675.0,10.837589,10837.589 +6456,2025-03-07T19:21:59.439986-08:00,1707.0,10.836839,10836.839 +6457,2025-03-07T19:22:10.285707-08:00,1709.0,10.845721,10845.721 +6458,2025-03-07T19:22:21.120891-08:00,1687.0,10.835184,10835.184 +6459,2025-03-07T19:22:31.951554-08:00,1712.0,10.830663,10830.663 +6460,2025-03-07T19:22:42.790871-08:00,1697.0,10.839317,10839.317 +6461,2025-03-07T19:22:53.637856-08:00,1709.0,10.846985,10846.985 +6462,2025-03-07T19:23:04.474661-08:00,1678.0,10.836805,10836.805 +6463,2025-03-07T19:23:15.311564-08:00,1678.0,10.836903,10836.903 +6464,2025-03-07T19:23:26.144397-08:00,1682.0,10.832833,10832.833 +6465,2025-03-07T19:23:36.986769-08:00,1659.0,10.842372,10842.372 +6466,2025-03-07T19:23:47.824638-08:00,1679.0,10.837869,10837.869 +6467,2025-03-07T19:23:58.660762-08:00,1700.0,10.836124,10836.124 +6468,2025-03-07T19:24:09.489790-08:00,1711.0,10.829028,10829.028 +6469,2025-03-07T19:24:20.334558-08:00,1705.0,10.844768,10844.768 +6470,2025-03-07T19:24:31.165122-08:00,1655.0,10.830564,10830.564 +6471,2025-03-07T19:24:42.007913-08:00,1676.0,10.842791,10842.791 +6472,2025-03-07T19:24:52.843877-08:00,1712.0,10.835964,10835.964 +6473,2025-03-07T19:25:03.680831-08:00,1616.0,10.836954,10836.954 +6474,2025-03-07T19:25:14.517564-08:00,1690.0,10.836733,10836.733 +6475,2025-03-07T19:25:25.365132-08:00,1665.0,10.847568,10847.568 +6476,2025-03-07T19:25:36.205194-08:00,1699.0,10.840062,10840.062 +6477,2025-03-07T19:25:47.043407-08:00,1658.0,10.838213,10838.213 +6478,2025-03-07T19:25:57.885241-08:00,1712.0,10.841834,10841.834 +6479,2025-03-07T19:26:08.732591-08:00,1687.0,10.84735,10847.35 +6480,2025-03-07T19:26:19.577885-08:00,1712.0,10.845294,10845.294 +6481,2025-03-07T19:26:30.421788-08:00,1680.0,10.843903,10843.903 +6482,2025-03-07T19:26:41.263813-08:00,1683.0,10.842025,10842.025 +6483,2025-03-07T19:26:52.092558-08:00,1709.0,10.828745,10828.745 +6484,2025-03-07T19:27:02.935649-08:00,1701.0,10.843091,10843.091 +6485,2025-03-07T19:27:13.779877-08:00,1711.0,10.844228,10844.228 +6486,2025-03-07T19:27:24.619689-08:00,1631.0,10.839812,10839.812 +6487,2025-03-07T19:27:35.454877-08:00,1703.0,10.835188,10835.188 +6488,2025-03-07T19:27:46.300608-08:00,1709.0,10.845731,10845.731 +6489,2025-03-07T19:27:57.154557-08:00,1707.0,10.853949,10853.949 +6490,2025-03-07T19:28:07.996825-08:00,1658.0,10.842268,10842.268 +6491,2025-03-07T19:28:18.840192-08:00,1643.0,10.843367,10843.367 +6492,2025-03-07T19:28:29.682808-08:00,1679.0,10.842616,10842.616 +6493,2025-03-07T19:28:40.518750-08:00,1648.0,10.835942,10835.942 +6494,2025-03-07T19:28:51.368887-08:00,1671.0,10.850137,10850.137 +6495,2025-03-07T19:29:02.206720-08:00,1623.0,10.837833,10837.833 +6496,2025-03-07T19:29:13.055560-08:00,1681.0,10.84884,10848.84 +6497,2025-03-07T19:29:23.899771-08:00,1667.0,10.844211,10844.211 +6498,2025-03-07T19:29:34.730694-08:00,1661.0,10.830923,10830.923 +6499,2025-03-07T19:29:45.575557-08:00,1699.0,10.844863,10844.863 +6500,2025-03-07T19:29:56.417808-08:00,1653.0,10.842251,10842.251 +6501,2025-03-07T19:30:07.263840-08:00,1702.0,10.846032,10846.032 +6502,2025-03-07T19:30:18.104978-08:00,1711.0,10.841138,10841.138 +6503,2025-03-07T19:30:28.945738-08:00,1651.0,10.84076,10840.76 +6504,2025-03-07T19:30:39.793554-08:00,1642.0,10.847816,10847.816 +6505,2025-03-07T19:30:50.643555-08:00,1694.0,10.850001,10850.001 +6506,2025-03-07T19:31:01.486941-08:00,1690.0,10.843386,10843.386 +6507,2025-03-07T19:31:12.339192-08:00,1699.0,10.852251,10852.251 +6508,2025-03-07T19:31:23.177841-08:00,1651.0,10.838649,10838.649 +6509,2025-03-07T19:31:34.026410-08:00,1710.0,10.848569,10848.569 +6510,2025-03-07T19:31:44.876553-08:00,1626.0,10.850143,10850.143 +6511,2025-03-07T19:31:55.718558-08:00,1711.0,10.842005,10842.005 +6512,2025-03-07T19:32:06.559862-08:00,1627.0,10.841304,10841.304 +6513,2025-03-07T19:32:17.399897-08:00,1679.0,10.840035,10840.035 +6514,2025-03-07T19:32:39.087633-08:00,1623.0,21.687736,21687.736 +6515,2025-03-07T19:32:49.929877-08:00,1714.0,10.842244,10842.244 +6516,2025-03-07T19:33:11.616832-08:00,1685.0,21.686955,21686.955 +6517,2025-03-07T19:33:22.450544-08:00,1660.0,10.833712,10833.712 +6518,2025-03-07T19:33:33.299213-08:00,1649.0,10.848669,10848.669 +6519,2025-03-07T19:33:44.143854-08:00,1712.0,10.844641,10844.641 +6520,2025-03-07T19:33:54.981870-08:00,1712.0,10.838016,10838.016 +6521,2025-03-07T19:34:05.833924-08:00,1693.0,10.852054,10852.054 +6522,2025-03-07T19:34:16.668672-08:00,1645.0,10.834748,10834.748 +6523,2025-03-07T19:34:27.516111-08:00,1711.0,10.847439,10847.439 +6524,2025-03-07T19:34:38.359613-08:00,1698.0,10.843502,10843.502 +6525,2025-03-07T19:34:49.203551-08:00,1671.0,10.843938,10843.938 +6526,2025-03-07T19:35:00.044943-08:00,1701.0,10.841392,10841.392 +6527,2025-03-07T19:35:10.887543-08:00,1618.0,10.8426,10842.6 +6528,2025-03-07T19:35:21.733692-08:00,1709.0,10.846149,10846.149 +6529,2025-03-07T19:35:32.575871-08:00,1711.0,10.842179,10842.179 +6530,2025-03-07T19:35:43.418739-08:00,1680.0,10.842868,10842.868 +6531,2025-03-07T19:35:54.266784-08:00,1677.0,10.848045,10848.045 +6532,2025-03-07T19:36:05.100937-08:00,1711.0,10.834153,10834.153 +6533,2025-03-07T19:36:15.942807-08:00,1630.0,10.84187,10841.87 +6534,2025-03-07T19:36:26.776558-08:00,1691.0,10.833751,10833.751 +6535,2025-03-07T19:36:37.621546-08:00,1697.0,10.844988,10844.988 +6536,2025-03-07T19:36:48.469535-08:00,1637.0,10.847989,10847.989 +6537,2025-03-07T19:36:59.312805-08:00,1693.0,10.84327,10843.27 +6538,2025-03-07T19:37:10.159132-08:00,1684.0,10.846327,10846.327 +6539,2025-03-07T19:37:21.005601-08:00,1695.0,10.846469,10846.469 +6540,2025-03-07T19:37:31.849033-08:00,1683.0,10.843432,10843.432 +6541,2025-03-07T19:37:42.689938-08:00,1709.0,10.840905,10840.905 +6542,2025-03-07T19:37:53.547132-08:00,1696.0,10.857194,10857.194 +6543,2025-03-07T19:38:04.384821-08:00,1695.0,10.837689,10837.689 +6544,2025-03-07T19:38:15.233483-08:00,1712.0,10.848662,10848.662 +6545,2025-03-07T19:38:26.073794-08:00,1693.0,10.840311,10840.311 +6546,2025-03-07T19:38:36.919688-08:00,1713.0,10.845894,10845.894 +6547,2025-03-07T19:38:47.763536-08:00,1616.0,10.843848,10843.848 +6548,2025-03-07T19:38:58.608317-08:00,1712.0,10.844781,10844.781 +6549,2025-03-07T19:39:09.459755-08:00,1665.0,10.851438,10851.438 +6550,2025-03-07T19:39:20.295560-08:00,1648.0,10.835805,10835.805 +6551,2025-03-07T19:39:31.134893-08:00,1711.0,10.839333,10839.333 +6552,2025-03-07T19:39:41.977667-08:00,1702.0,10.842774,10842.774 +6553,2025-03-07T19:39:52.821531-08:00,1661.0,10.843864,10843.864 +6554,2025-03-07T19:40:03.665543-08:00,1702.0,10.844012,10844.012 +6555,2025-03-07T19:40:14.506558-08:00,1629.0,10.841015,10841.015 +6556,2025-03-07T19:40:25.349556-08:00,1623.0,10.842998,10842.998 +6557,2025-03-07T19:40:36.193012-08:00,1635.0,10.843456,10843.456 +6558,2025-03-07T19:40:47.037635-08:00,1664.0,10.844623,10844.623 +6559,2025-03-07T19:40:57.878773-08:00,1700.0,10.841138,10841.138 +6560,2025-03-07T19:41:08.719559-08:00,1628.0,10.840786,10840.786 +6561,2025-03-07T19:41:19.552180-08:00,1658.0,10.832621,10832.621 +6562,2025-03-07T19:41:30.396377-08:00,1681.0,10.844197,10844.197 +6563,2025-03-07T19:41:41.240707-08:00,1695.0,10.84433,10844.33 +6564,2025-03-07T19:41:52.084615-08:00,1663.0,10.843908,10843.908 +6565,2025-03-07T19:42:02.927127-08:00,1697.0,10.842512,10842.512 +6566,2025-03-07T19:42:13.762557-08:00,1661.0,10.83543,10835.43 +6567,2025-03-07T19:42:24.604559-08:00,1664.0,10.842002,10842.002 +6568,2025-03-07T19:42:35.455173-08:00,1617.0,10.850614,10850.614 +6569,2025-03-07T19:42:46.295057-08:00,1665.0,10.839884,10839.884 +6570,2025-03-07T19:42:57.141186-08:00,1651.0,10.846129,10846.129 +6571,2025-03-07T19:43:07.971557-08:00,1712.0,10.830371,10830.371 +6572,2025-03-07T19:43:18.818559-08:00,1655.0,10.847002,10847.002 +6573,2025-03-07T19:43:29.658845-08:00,1693.0,10.840286,10840.286 +6574,2025-03-07T19:43:40.503042-08:00,1651.0,10.844197,10844.197 +6575,2025-03-07T19:43:51.338941-08:00,1663.0,10.835899,10835.899 +6576,2025-03-07T19:44:02.179165-08:00,1651.0,10.840224,10840.224 +6577,2025-03-07T19:44:13.025089-08:00,1679.0,10.845924,10845.924 +6578,2025-03-07T19:44:23.853558-08:00,1709.0,10.828469,10828.469 +6579,2025-03-07T19:44:34.696556-08:00,1708.0,10.842998,10842.998 +6580,2025-03-07T19:44:45.534338-08:00,1637.0,10.837782,10837.782 +6581,2025-03-07T19:44:56.372022-08:00,1705.0,10.837684,10837.684 +6582,2025-03-07T19:45:07.214710-08:00,1649.0,10.842688,10842.688 +6583,2025-03-07T19:45:18.062540-08:00,1691.0,10.84783,10847.83 +6584,2025-03-07T19:45:28.897855-08:00,1695.0,10.835315,10835.315 +6585,2025-03-07T19:45:39.753875-08:00,1701.0,10.85602,10856.02 +6586,2025-03-07T19:45:50.595132-08:00,1661.0,10.841257,10841.257 +6587,2025-03-07T19:46:01.436553-08:00,1711.0,10.841421,10841.421 +6588,2025-03-07T19:46:12.284330-08:00,1626.0,10.847777,10847.777 +6589,2025-03-07T19:46:23.128842-08:00,1690.0,10.844512,10844.512 +6590,2025-03-07T19:46:33.972652-08:00,1639.0,10.84381,10843.81 +6591,2025-03-07T19:46:44.817558-08:00,1653.0,10.844906,10844.906 +6592,2025-03-07T19:46:55.656771-08:00,1710.0,10.839213,10839.213 +6593,2025-03-07T19:47:06.499914-08:00,1654.0,10.843143,10843.143 +6594,2025-03-07T19:47:17.342516-08:00,1661.0,10.842602,10842.602 +6595,2025-03-07T19:47:28.185556-08:00,1621.0,10.84304,10843.04 +6596,2025-03-07T19:47:39.032535-08:00,1697.0,10.846979,10846.979 +6597,2025-03-07T19:47:49.872588-08:00,1703.0,10.840053,10840.053 +6598,2025-03-07T19:48:00.714887-08:00,1636.0,10.842299,10842.299 +6599,2025-03-07T19:48:11.548551-08:00,1694.0,10.833664,10833.664 +6600,2025-03-07T19:48:22.390985-08:00,1712.0,10.842434,10842.434 +6601,2025-03-07T19:48:33.232820-08:00,1695.0,10.841835,10841.835 +6602,2025-03-07T19:48:44.075317-08:00,1687.0,10.842497,10842.497 +6603,2025-03-07T19:48:54.920559-08:00,1666.0,10.845242,10845.242 +6604,2025-03-07T19:49:05.763559-08:00,1616.0,10.843,10843.0 +6605,2025-03-07T19:49:16.608038-08:00,1657.0,10.844479,10844.479 +6606,2025-03-07T19:49:27.448831-08:00,1674.0,10.840793,10840.793 +6607,2025-03-07T19:49:38.293600-08:00,1669.0,10.844769,10844.769 +6608,2025-03-07T19:49:49.128563-08:00,1661.0,10.834963,10834.963 +6609,2025-03-07T19:49:59.973005-08:00,1711.0,10.844442,10844.442 +6610,2025-03-07T19:50:10.821354-08:00,1649.0,10.848349,10848.349 +6611,2025-03-07T19:50:21.670140-08:00,1707.0,10.848786,10848.786 +6612,2025-03-07T19:50:32.516361-08:00,1708.0,10.846221,10846.221 +6613,2025-03-07T19:50:43.353751-08:00,1664.0,10.83739,10837.39 +6614,2025-03-07T19:50:54.193445-08:00,1666.0,10.839694,10839.694 +6615,2025-03-07T19:51:05.036885-08:00,1703.0,10.84344,10843.44 +6616,2025-03-07T19:51:15.881603-08:00,1651.0,10.844718,10844.718 +6617,2025-03-07T19:51:26.722797-08:00,1659.0,10.841194,10841.194 +6618,2025-03-07T19:51:37.566597-08:00,1669.0,10.8438,10843.8 +6619,2025-03-07T19:51:48.399797-08:00,1680.0,10.8332,10833.2 +6620,2025-03-07T19:51:59.239790-08:00,1707.0,10.839993,10839.993 +6621,2025-03-07T19:52:10.085019-08:00,1664.0,10.845229,10845.229 +6622,2025-03-07T19:52:20.925745-08:00,1663.0,10.840726,10840.726 +6623,2025-03-07T19:52:31.778818-08:00,1658.0,10.853073,10853.073 +6624,2025-03-07T19:52:42.624884-08:00,1698.0,10.846066,10846.066 +6625,2025-03-07T19:52:53.469647-08:00,1634.0,10.844763,10844.763 +6626,2025-03-07T19:53:04.323609-08:00,1710.0,10.853962,10853.962 +6627,2025-03-07T19:53:15.166608-08:00,1619.0,10.842999,10842.999 +6628,2025-03-07T19:53:26.021279-08:00,1677.0,10.854671,10854.671 +6629,2025-03-07T19:53:36.867877-08:00,1683.0,10.846598,10846.598 +6630,2025-03-07T19:53:47.706359-08:00,1615.0,10.838482,10838.482 +6631,2025-03-07T19:53:58.561094-08:00,1651.0,10.854735,10854.735 +6632,2025-03-07T19:54:09.407816-08:00,1615.0,10.846722,10846.722 +6633,2025-03-07T19:54:20.257376-08:00,1647.0,10.84956,10849.56 +6634,2025-03-07T19:54:31.112045-08:00,1639.0,10.854669,10854.669 +6635,2025-03-07T19:54:41.955556-08:00,1703.0,10.843511,10843.511 +6636,2025-03-07T19:54:52.798556-08:00,1680.0,10.843,10843.0 +6637,2025-03-07T19:55:03.641697-08:00,1712.0,10.843141,10843.141 +6638,2025-03-07T19:55:14.482862-08:00,1622.0,10.841165,10841.165 +6639,2025-03-07T19:55:25.327722-08:00,1699.0,10.84486,10844.86 +6640,2025-03-07T19:55:36.176204-08:00,1663.0,10.848482,10848.482 +6641,2025-03-07T19:55:47.020558-08:00,1685.0,10.844354,10844.354 +6642,2025-03-07T19:55:57.868617-08:00,1685.0,10.848059,10848.059 +6643,2025-03-07T19:56:08.711965-08:00,1648.0,10.843348,10843.348 +6644,2025-03-07T19:56:19.555556-08:00,1610.0,10.843591,10843.591 +6645,2025-03-07T19:56:30.395558-08:00,1643.0,10.840002,10840.002 +6646,2025-03-07T19:56:41.241553-08:00,1705.0,10.845995,10845.995 +6647,2025-03-07T19:56:52.084558-08:00,1709.0,10.843005,10843.005 +6648,2025-03-07T19:57:02.937535-08:00,1629.0,10.852977,10852.977 +6649,2025-03-07T19:57:13.781864-08:00,1712.0,10.844329,10844.329 +6650,2025-03-07T19:57:24.624992-08:00,1710.0,10.843128,10843.128 +6651,2025-03-07T19:57:35.466877-08:00,1678.0,10.841885,10841.885 +6652,2025-03-07T19:57:46.311855-08:00,1711.0,10.844978,10844.978 +6653,2025-03-07T19:57:57.165841-08:00,1701.0,10.853986,10853.986 +6654,2025-03-07T19:58:08.009099-08:00,1664.0,10.843258,10843.258 +6655,2025-03-07T19:58:18.855174-08:00,1702.0,10.846075,10846.075 +6656,2025-03-07T19:58:29.699669-08:00,1710.0,10.844495,10844.495 +6657,2025-03-07T19:58:40.547558-08:00,1680.0,10.847889,10847.889 +6658,2025-03-07T19:58:51.390543-08:00,1653.0,10.842985,10842.985 +6659,2025-03-07T19:59:02.234558-08:00,1663.0,10.844015,10844.015 +6660,2025-03-07T19:59:13.079236-08:00,1690.0,10.844678,10844.678 +6661,2025-03-07T19:59:23.931875-08:00,1646.0,10.852639,10852.639 +6662,2025-03-07T19:59:34.774595-08:00,1695.0,10.84272,10842.72 +6663,2025-03-07T19:59:45.618557-08:00,1647.0,10.843962,10843.962 +6664,2025-03-07T19:59:56.465557-08:00,1706.0,10.847,10847.0 +6665,2025-03-07T20:00:07.314610-08:00,1679.0,10.849053,10849.053 +6666,2025-03-07T20:00:18.165033-08:00,1659.0,10.850423,10850.423 +6667,2025-03-07T20:00:29.001798-08:00,1631.0,10.836765,10836.765 +6668,2025-03-07T20:00:39.856378-08:00,1642.0,10.85458,10854.58 +6669,2025-03-07T20:00:50.704558-08:00,1686.0,10.84818,10848.18 +6670,2025-03-07T20:01:01.553782-08:00,1629.0,10.849224,10849.224 +6671,2025-03-07T20:01:12.396558-08:00,1663.0,10.842776,10842.776 +6672,2025-03-07T20:01:23.240551-08:00,1674.0,10.843993,10843.993 +6673,2025-03-07T20:01:34.084146-08:00,1647.0,10.843595,10843.595 +6674,2025-03-07T20:01:44.937180-08:00,1679.0,10.853034,10853.034 +6675,2025-03-07T20:01:55.780602-08:00,1645.0,10.843422,10843.422 +6676,2025-03-07T20:02:06.628261-08:00,1623.0,10.847659,10847.659 +6677,2025-03-07T20:02:17.468561-08:00,1635.0,10.8403,10840.3 +6678,2025-03-07T20:02:28.321561-08:00,1703.0,10.853,10853.0 +6679,2025-03-07T20:02:39.171875-08:00,1623.0,10.850314,10850.314 +6680,2025-03-07T20:02:50.015935-08:00,1653.0,10.84406,10844.06 +6681,2025-03-07T20:03:00.863768-08:00,1665.0,10.847833,10847.833 +6682,2025-03-07T20:03:11.702553-08:00,1617.0,10.838785,10838.785 +6683,2025-03-07T20:03:22.542220-08:00,1702.0,10.839667,10839.667 +6684,2025-03-07T20:03:33.387677-08:00,1712.0,10.845457,10845.457 +6685,2025-03-07T20:03:44.235875-08:00,1631.0,10.848198,10848.198 +6686,2025-03-07T20:03:55.084531-08:00,1698.0,10.848656,10848.656 +6687,2025-03-07T20:04:05.932583-08:00,1648.0,10.848052,10848.052 +6688,2025-03-07T20:04:16.775874-08:00,1655.0,10.843291,10843.291 +6689,2025-03-07T20:04:27.620718-08:00,1663.0,10.844844,10844.844 +6690,2025-03-07T20:04:38.462862-08:00,1654.0,10.842144,10842.144 +6691,2025-03-07T20:04:49.310833-08:00,1658.0,10.847971,10847.971 +6692,2025-03-07T20:05:00.152615-08:00,1671.0,10.841782,10841.782 +6693,2025-03-07T20:05:11.002783-08:00,1683.0,10.850168,10850.168 +6694,2025-03-07T20:05:21.839564-08:00,1708.0,10.836781,10836.781 +6695,2025-03-07T20:05:32.686539-08:00,1668.0,10.846975,10846.975 +6696,2025-03-07T20:05:43.532543-08:00,1690.0,10.846004,10846.004 +6697,2025-03-07T20:05:54.385516-08:00,1654.0,10.852973,10852.973 +6698,2025-03-07T20:06:05.230551-08:00,1671.0,10.845035,10845.035 +6699,2025-03-07T20:06:16.074204-08:00,1709.0,10.843653,10843.653 +6700,2025-03-07T20:06:26.927207-08:00,1680.0,10.853003,10853.003 +6701,2025-03-07T20:06:37.771264-08:00,1662.0,10.844057,10844.057 +6702,2025-03-07T20:06:48.614453-08:00,1650.0,10.843189,10843.189 +6703,2025-03-07T20:06:59.468622-08:00,1631.0,10.854169,10854.169 +6704,2025-03-07T20:07:10.311486-08:00,1711.0,10.842864,10842.864 +6705,2025-03-07T20:07:21.150255-08:00,1702.0,10.838769,10838.769 +6706,2025-03-07T20:07:32.008216-08:00,1685.0,10.857961,10857.961 +6707,2025-03-07T20:07:42.850269-08:00,1697.0,10.842053,10842.053 +6708,2025-03-07T20:07:53.694213-08:00,1711.0,10.843944,10843.944 +6709,2025-03-07T20:08:04.537761-08:00,1658.0,10.843548,10843.548 +6710,2025-03-07T20:08:15.382422-08:00,1711.0,10.844661,10844.661 +6711,2025-03-07T20:08:26.225293-08:00,1705.0,10.842871,10842.871 +6712,2025-03-07T20:08:37.068348-08:00,1658.0,10.843055,10843.055 +6713,2025-03-07T20:08:47.911206-08:00,1707.0,10.842858,10842.858 +6714,2025-03-07T20:08:58.748516-08:00,1678.0,10.83731,10837.31 +6715,2025-03-07T20:09:09.598189-08:00,1631.0,10.849673,10849.673 +6716,2025-03-07T20:09:20.439674-08:00,1681.0,10.841485,10841.485 +6717,2025-03-07T20:09:31.283214-08:00,1677.0,10.84354,10843.54 +6718,2025-03-07T20:09:42.124545-08:00,1661.0,10.841331,10841.331 +6719,2025-03-07T20:09:52.974786-08:00,1616.0,10.850241,10850.241 +6720,2025-03-07T20:10:03.816356-08:00,1711.0,10.84157,10841.57 +6721,2025-03-07T20:10:14.656207-08:00,1695.0,10.839851,10839.851 +6722,2025-03-07T20:10:25.499425-08:00,1682.0,10.843218,10843.218 +6723,2025-03-07T20:10:36.343310-08:00,1712.0,10.843885,10843.885 +6724,2025-03-07T20:10:47.197503-08:00,1680.0,10.854193,10854.193 +6725,2025-03-07T20:10:58.039265-08:00,1687.0,10.841762,10841.762 +6726,2025-03-07T20:11:08.890212-08:00,1661.0,10.850947,10850.947 +6727,2025-03-07T20:11:19.737273-08:00,1663.0,10.847061,10847.061 +6728,2025-03-07T20:11:30.586213-08:00,1625.0,10.84894,10848.94 +6729,2025-03-07T20:11:41.436246-08:00,1654.0,10.850033,10850.033 +6730,2025-03-07T20:11:52.277764-08:00,1680.0,10.841518,10841.518 +6731,2025-03-07T20:12:03.124388-08:00,1637.0,10.846624,10846.624 +6732,2025-03-07T20:12:13.975368-08:00,1631.0,10.85098,10850.98 +6733,2025-03-07T20:12:24.819206-08:00,1693.0,10.843838,10843.838 +6734,2025-03-07T20:12:35.668212-08:00,1661.0,10.849006,10849.006 +6735,2025-03-07T20:12:46.507687-08:00,1697.0,10.839475,10839.475 +6736,2025-03-07T20:12:57.347001-08:00,1680.0,10.839314,10839.314 +6737,2025-03-07T20:13:08.189943-08:00,1653.0,10.842942,10842.942 +6738,2025-03-07T20:13:19.044206-08:00,1692.0,10.854263,10854.263 +6739,2025-03-07T20:13:29.896452-08:00,1635.0,10.852246,10852.246 +6740,2025-03-07T20:13:40.749214-08:00,1658.0,10.852762,10852.762 +6741,2025-03-07T20:13:51.601210-08:00,1687.0,10.851996,10851.996 +6742,2025-03-07T20:14:02.452007-08:00,1667.0,10.850797,10850.797 +6743,2025-03-07T20:14:13.300759-08:00,1672.0,10.848752,10848.752 +6744,2025-03-07T20:14:24.150214-08:00,1680.0,10.849455,10849.455 +6745,2025-03-07T20:14:35.001221-08:00,1653.0,10.851007,10851.007 +6746,2025-03-07T20:14:45.857896-08:00,1702.0,10.856675,10856.675 +6747,2025-03-07T20:14:56.712217-08:00,1686.0,10.854321,10854.321 +6748,2025-03-07T20:15:07.568219-08:00,1680.0,10.856002,10856.002 +6749,2025-03-07T20:15:18.411470-08:00,1707.0,10.843251,10843.251 +6750,2025-03-07T20:15:29.264518-08:00,1629.0,10.853048,10853.048 +6751,2025-03-07T20:15:40.107541-08:00,1695.0,10.843023,10843.023 +6752,2025-03-07T20:15:50.962464-08:00,1616.0,10.854923,10854.923 +6753,2025-03-07T20:16:01.812219-08:00,1663.0,10.849755,10849.755 +6754,2025-03-07T20:16:12.659573-08:00,1710.0,10.847354,10847.354 +6755,2025-03-07T20:16:23.506361-08:00,1627.0,10.846788,10846.788 +6756,2025-03-07T20:16:34.362603-08:00,1621.0,10.856242,10856.242 +6757,2025-03-07T20:16:45.201530-08:00,1677.0,10.838927,10838.927 +6758,2025-03-07T20:16:56.054299-08:00,1626.0,10.852769,10852.769 +6759,2025-03-07T20:17:06.911643-08:00,1707.0,10.857344,10857.344 +6760,2025-03-07T20:17:17.753334-08:00,1669.0,10.841691,10841.691 +6761,2025-03-07T20:17:28.605157-08:00,1674.0,10.851823,10851.823 +6762,2025-03-07T20:17:39.452403-08:00,1648.0,10.847246,10847.246 +6763,2025-03-07T20:17:50.292217-08:00,1665.0,10.839814,10839.814 +6764,2025-03-07T20:18:01.150441-08:00,1648.0,10.858224,10858.224 +6765,2025-03-07T20:18:11.992862-08:00,1614.0,10.842421,10842.421 +6766,2025-03-07T20:18:22.845468-08:00,1659.0,10.852606,10852.606 +6767,2025-03-07T20:18:33.688565-08:00,1702.0,10.843097,10843.097 +6768,2025-03-07T20:18:44.539220-08:00,1707.0,10.850655,10850.655 +6769,2025-03-07T20:18:55.375206-08:00,1638.0,10.835986,10835.986 +6770,2025-03-07T20:19:06.220455-08:00,1696.0,10.845249,10845.249 +6771,2025-03-07T20:19:17.073518-08:00,1689.0,10.853063,10853.063 +6772,2025-03-07T20:19:27.919554-08:00,1686.0,10.846036,10846.036 +6773,2025-03-07T20:19:38.768296-08:00,1693.0,10.848742,10848.742 +6774,2025-03-07T20:19:49.612692-08:00,1691.0,10.844396,10844.396 +6775,2025-03-07T20:20:00.465373-08:00,1706.0,10.852681,10852.681 +6776,2025-03-07T20:20:11.322192-08:00,1614.0,10.856819,10856.819 +6777,2025-03-07T20:20:22.166587-08:00,1667.0,10.844395,10844.395 +6778,2025-03-07T20:20:33.006383-08:00,1709.0,10.839796,10839.796 +6779,2025-03-07T20:20:43.861473-08:00,1680.0,10.85509,10855.09 +6780,2025-03-07T20:20:54.695559-08:00,1685.0,10.834086,10834.086 +6781,2025-03-07T20:21:05.547547-08:00,1631.0,10.851988,10851.988 +6782,2025-03-07T20:21:16.391898-08:00,1664.0,10.844351,10844.351 +6783,2025-03-07T20:21:27.235216-08:00,1694.0,10.843318,10843.318 +6784,2025-03-07T20:21:38.086370-08:00,1693.0,10.851154,10851.154 +6785,2025-03-07T20:21:48.926824-08:00,1666.0,10.840454,10840.454 +6786,2025-03-07T20:21:59.775752-08:00,1659.0,10.848928,10848.928 +6787,2025-03-07T20:22:10.626575-08:00,1673.0,10.850823,10850.823 +6788,2025-03-07T20:22:21.474063-08:00,1686.0,10.847488,10847.488 +6789,2025-03-07T20:22:32.327693-08:00,1667.0,10.85363,10853.63 +6790,2025-03-07T20:22:43.170438-08:00,1623.0,10.842745,10842.745 +6791,2025-03-07T20:22:54.013338-08:00,1710.0,10.8429,10842.9 +6792,2025-03-07T20:23:04.866475-08:00,1647.0,10.853137,10853.137 +6793,2025-03-07T20:23:15.710204-08:00,1629.0,10.843729,10843.729 +6794,2025-03-07T20:23:26.553817-08:00,1636.0,10.843613,10843.613 +6795,2025-03-07T20:23:37.398262-08:00,1643.0,10.844445,10844.445 +6796,2025-03-07T20:23:48.242416-08:00,1695.0,10.844154,10844.154 +6797,2025-03-07T20:23:59.089415-08:00,1707.0,10.846999,10846.999 +6798,2025-03-07T20:24:09.935242-08:00,1690.0,10.845827,10845.827 +6799,2025-03-07T20:24:20.777478-08:00,1710.0,10.842236,10842.236 +6800,2025-03-07T20:24:31.625277-08:00,1695.0,10.847799,10847.799 +6801,2025-03-07T20:24:42.479110-08:00,1673.0,10.853833,10853.833 +6802,2025-03-07T20:24:53.318433-08:00,1659.0,10.839323,10839.323 +6803,2025-03-07T20:25:04.166606-08:00,1705.0,10.848173,10848.173 +6804,2025-03-07T20:25:15.018415-08:00,1659.0,10.851809,10851.809 +6805,2025-03-07T20:25:25.863219-08:00,1703.0,10.844804,10844.804 +6806,2025-03-07T20:25:36.706486-08:00,1664.0,10.843267,10843.267 +6807,2025-03-07T20:25:47.560562-08:00,1662.0,10.854076,10854.076 +6808,2025-03-07T20:25:58.404699-08:00,1696.0,10.844137,10844.137 +6809,2025-03-07T20:26:09.247217-08:00,1627.0,10.842518,10842.518 +6810,2025-03-07T20:26:20.101615-08:00,1701.0,10.854398,10854.398 +6811,2025-03-07T20:26:30.944219-08:00,1663.0,10.842604,10842.604 +6812,2025-03-07T20:26:41.790738-08:00,1708.0,10.846519,10846.519 +6813,2025-03-07T20:26:52.641437-08:00,1667.0,10.850699,10850.699 +6814,2025-03-07T20:27:03.484665-08:00,1667.0,10.843228,10843.228 +6815,2025-03-07T20:27:14.340202-08:00,1693.0,10.855537,10855.537 +6816,2025-03-07T20:27:25.183371-08:00,1653.0,10.843169,10843.169 +6817,2025-03-07T20:27:36.036282-08:00,1652.0,10.852911,10852.911 +6818,2025-03-07T20:27:46.880207-08:00,1703.0,10.843925,10843.925 +6819,2025-03-07T20:27:57.735215-08:00,1702.0,10.855008,10855.008 +6820,2025-03-07T20:28:08.588445-08:00,1622.0,10.85323,10853.23 +6821,2025-03-07T20:28:19.431219-08:00,1665.0,10.842774,10842.774 +6822,2025-03-07T20:28:30.287264-08:00,1706.0,10.856045,10856.045 +6823,2025-03-07T20:28:41.139808-08:00,1691.0,10.852544,10852.544 +6824,2025-03-07T20:28:51.994405-08:00,1663.0,10.854597,10854.597 +6825,2025-03-07T20:29:02.837772-08:00,1705.0,10.843367,10843.367 +6826,2025-03-07T20:29:13.692538-08:00,1673.0,10.854766,10854.766 +6827,2025-03-07T20:29:24.537582-08:00,1667.0,10.845044,10845.044 +6828,2025-03-07T20:29:35.390323-08:00,1707.0,10.852741,10852.741 +6829,2025-03-07T20:29:46.237474-08:00,1647.0,10.847151,10847.151 +6830,2025-03-07T20:29:57.076578-08:00,1703.0,10.839104,10839.104 +6831,2025-03-07T20:30:07.921091-08:00,1666.0,10.844513,10844.513 +6832,2025-03-07T20:30:18.775391-08:00,1680.0,10.8543,10854.3 +6833,2025-03-07T20:30:29.618150-08:00,1678.0,10.842759,10842.759 +6834,2025-03-07T20:30:40.471924-08:00,1705.0,10.853774,10853.774 +6835,2025-03-07T20:30:51.315225-08:00,1709.0,10.843301,10843.301 +6836,2025-03-07T20:31:02.159217-08:00,1687.0,10.843992,10843.992 +6837,2025-03-07T20:31:13.011261-08:00,1700.0,10.852044,10852.044 +6838,2025-03-07T20:31:23.856216-08:00,1613.0,10.844955,10844.955 +6839,2025-03-07T20:31:34.706266-08:00,1663.0,10.85005,10850.05 +6840,2025-03-07T20:31:45.547591-08:00,1653.0,10.841325,10841.325 +6841,2025-03-07T20:31:56.396777-08:00,1703.0,10.849186,10849.186 +6842,2025-03-07T20:32:07.240169-08:00,1664.0,10.843392,10843.392 +6843,2025-03-07T20:32:18.083253-08:00,1707.0,10.843084,10843.084 +6844,2025-03-07T20:32:28.925230-08:00,1638.0,10.841977,10841.977 +6845,2025-03-07T20:32:39.764189-08:00,1661.0,10.838959,10838.959 +6846,2025-03-07T20:32:50.611266-08:00,1693.0,10.847077,10847.077 +6847,2025-03-07T20:33:01.454206-08:00,1708.0,10.84294,10842.94 +6848,2025-03-07T20:33:12.298967-08:00,1685.0,10.844761,10844.761 +6849,2025-03-07T20:33:23.140875-08:00,1664.0,10.841908,10841.908 +6850,2025-03-07T20:33:33.993529-08:00,1626.0,10.852654,10852.654 +6851,2025-03-07T20:33:44.839522-08:00,1645.0,10.845993,10845.993 +6852,2025-03-07T20:33:55.683208-08:00,1629.0,10.843686,10843.686 +6853,2025-03-07T20:34:06.527222-08:00,1648.0,10.844014,10844.014 +6854,2025-03-07T20:34:17.368862-08:00,1620.0,10.84164,10841.64 +6855,2025-03-07T20:34:28.209022-08:00,1696.0,10.84016,10840.16 +6856,2025-03-07T20:34:39.054100-08:00,1675.0,10.845078,10845.078 +6857,2025-03-07T20:34:49.898399-08:00,1694.0,10.844299,10844.299 +6858,2025-03-07T20:35:00.735288-08:00,1697.0,10.836889,10836.889 +6859,2025-03-07T20:35:11.577832-08:00,1707.0,10.842544,10842.544 +6860,2025-03-07T20:35:22.427261-08:00,1710.0,10.849429,10849.429 +6861,2025-03-07T20:35:33.270187-08:00,1669.0,10.842926,10842.926 +6862,2025-03-07T20:35:44.113289-08:00,1695.0,10.843102,10843.102 +6863,2025-03-07T20:35:54.958135-08:00,1675.0,10.844846,10844.846 +6864,2025-03-07T20:36:05.804545-08:00,1616.0,10.84641,10846.41 +6865,2025-03-07T20:36:16.653390-08:00,1631.0,10.848845,10848.845 +6866,2025-03-07T20:36:27.495239-08:00,1705.0,10.841849,10841.849 +6867,2025-03-07T20:36:38.344235-08:00,1698.0,10.848996,10848.996 +6868,2025-03-07T20:36:49.194297-08:00,1709.0,10.850062,10850.062 +6869,2025-03-07T20:37:00.031362-08:00,1618.0,10.837065,10837.065 +6870,2025-03-07T20:37:10.882408-08:00,1655.0,10.851046,10851.046 +6871,2025-03-07T20:37:21.734490-08:00,1706.0,10.852082,10852.082 +6872,2025-03-07T20:37:32.589520-08:00,1691.0,10.85503,10855.03 +6873,2025-03-07T20:37:43.429202-08:00,1699.0,10.839682,10839.682 +6874,2025-03-07T20:37:54.274219-08:00,1653.0,10.845017,10845.017 +6875,2025-03-07T20:38:05.119371-08:00,1631.0,10.845152,10845.152 +6876,2025-03-07T20:38:15.971103-08:00,1616.0,10.851732,10851.732 +6877,2025-03-07T20:38:26.808481-08:00,1633.0,10.837378,10837.378 +6878,2025-03-07T20:38:37.653200-08:00,1619.0,10.844719,10844.719 +6879,2025-03-07T20:38:48.489439-08:00,1665.0,10.836239,10836.239 +6880,2025-03-07T20:38:59.338217-08:00,1655.0,10.848778,10848.778 +6881,2025-03-07T20:39:10.189450-08:00,1610.0,10.851233,10851.233 +6882,2025-03-07T20:39:21.030479-08:00,1693.0,10.841029,10841.029 +6883,2025-03-07T20:39:31.875251-08:00,1671.0,10.844772,10844.772 +6884,2025-03-07T20:39:42.717226-08:00,1659.0,10.841975,10841.975 +6885,2025-03-07T20:39:53.564801-08:00,1667.0,10.847575,10847.575 +6886,2025-03-07T20:40:04.404751-08:00,1679.0,10.83995,10839.95 +6887,2025-03-07T20:40:15.258218-08:00,1711.0,10.853467,10853.467 +6888,2025-03-07T20:40:26.096398-08:00,1703.0,10.83818,10838.18 +6889,2025-03-07T20:40:36.942211-08:00,1662.0,10.845813,10845.813 +6890,2025-03-07T20:40:47.789316-08:00,1667.0,10.847105,10847.105 +6891,2025-03-07T20:40:58.631219-08:00,1647.0,10.841903,10841.903 +6892,2025-03-07T20:41:09.486899-08:00,1674.0,10.85568,10855.68 +6893,2025-03-07T20:41:20.330513-08:00,1661.0,10.843614,10843.614 +6894,2025-03-07T20:41:31.182527-08:00,1647.0,10.852014,10852.014 +6895,2025-03-07T20:41:42.032658-08:00,1682.0,10.850131,10850.131 +6896,2025-03-07T20:41:52.874530-08:00,1695.0,10.841872,10841.872 +6897,2025-03-07T20:42:03.727470-08:00,1682.0,10.85294,10852.94 +6898,2025-03-07T20:42:14.576241-08:00,1699.0,10.848771,10848.771 +6899,2025-03-07T20:42:25.425460-08:00,1691.0,10.849219,10849.219 +6900,2025-03-07T20:42:36.277665-08:00,1663.0,10.852205,10852.205 +6901,2025-03-07T20:42:47.127798-08:00,1685.0,10.850133,10850.133 +6902,2025-03-07T20:42:57.979551-08:00,1683.0,10.851753,10851.753 +6903,2025-03-07T20:43:08.827798-08:00,1667.0,10.848247,10848.247 +6904,2025-03-07T20:43:19.673533-08:00,1616.0,10.845735,10845.735 +6905,2025-03-07T20:43:30.518347-08:00,1706.0,10.844814,10844.814 +6906,2025-03-07T20:43:41.355206-08:00,1708.0,10.836859,10836.859 +6907,2025-03-07T20:43:52.211460-08:00,1693.0,10.856254,10856.254 +6908,2025-03-07T20:44:03.057207-08:00,1693.0,10.845747,10845.747 +6909,2025-03-07T20:44:13.901488-08:00,1661.0,10.844281,10844.281 +6910,2025-03-07T20:44:24.753778-08:00,1669.0,10.85229,10852.29 +6911,2025-03-07T20:44:35.605555-08:00,1674.0,10.851777,10851.777 +6912,2025-03-07T20:44:46.456281-08:00,1664.0,10.850726,10850.726 +6913,2025-03-07T20:44:57.298251-08:00,1705.0,10.84197,10841.97 +6914,2025-03-07T20:45:08.143533-08:00,1693.0,10.845282,10845.282 +6915,2025-03-07T20:45:18.989955-08:00,1705.0,10.846422,10846.422 +6916,2025-03-07T20:45:29.837120-08:00,1674.0,10.847165,10847.165 +6917,2025-03-07T20:45:40.686518-08:00,1629.0,10.849398,10849.398 +6918,2025-03-07T20:45:51.536748-08:00,1637.0,10.85023,10850.23 +6919,2025-03-07T20:46:02.380233-08:00,1682.0,10.843485,10843.485 +6920,2025-03-07T20:46:13.230212-08:00,1633.0,10.849979,10849.979 +6921,2025-03-07T20:46:24.077188-08:00,1695.0,10.846976,10846.976 +6922,2025-03-07T20:46:34.934736-08:00,1702.0,10.857548,10857.548 +6923,2025-03-07T20:46:45.784265-08:00,1705.0,10.849529,10849.529 +6924,2025-03-07T20:46:56.630759-08:00,1667.0,10.846494,10846.494 +6925,2025-03-07T20:47:07.477187-08:00,1695.0,10.846428,10846.428 +6926,2025-03-07T20:47:18.322385-08:00,1605.0,10.845198,10845.198 +6927,2025-03-07T20:47:29.164894-08:00,1641.0,10.842509,10842.509 +6928,2025-03-07T20:47:40.006410-08:00,1655.0,10.841516,10841.516 +6929,2025-03-07T20:47:50.851452-08:00,1671.0,10.845042,10845.042 +6930,2025-03-07T20:48:01.694423-08:00,1645.0,10.842971,10842.971 +6931,2025-03-07T20:48:12.548240-08:00,1617.0,10.853817,10853.817 +6932,2025-03-07T20:48:23.397477-08:00,1666.0,10.849237,10849.237 +6933,2025-03-07T20:48:34.239638-08:00,1664.0,10.842161,10842.161 +6934,2025-03-07T20:48:45.096411-08:00,1616.0,10.856773,10856.773 +6935,2025-03-07T20:48:55.941437-08:00,1616.0,10.845026,10845.026 +6936,2025-03-07T20:49:06.787210-08:00,1687.0,10.845773,10845.773 +6937,2025-03-07T20:49:17.633446-08:00,1666.0,10.846236,10846.236 +6938,2025-03-07T20:49:28.490215-08:00,1613.0,10.856769,10856.769 +6939,2025-03-07T20:49:39.333475-08:00,1706.0,10.84326,10843.26 +6940,2025-03-07T20:49:50.173677-08:00,1665.0,10.840202,10840.202 +6941,2025-03-07T20:50:01.027261-08:00,1649.0,10.853584,10853.584 +6942,2025-03-07T20:50:11.879366-08:00,1686.0,10.852105,10852.105 +6943,2025-03-07T20:50:22.727352-08:00,1679.0,10.847986,10847.986 +6944,2025-03-07T20:50:33.576436-08:00,1706.0,10.849084,10849.084 +6945,2025-03-07T20:50:44.425217-08:00,1703.0,10.848781,10848.781 +6946,2025-03-07T20:51:06.120110-08:00,1664.0,21.694893,21694.893 +6947,2025-03-07T20:51:16.971309-08:00,1695.0,10.851199,10851.199 +6948,2025-03-07T20:51:27.833530-08:00,1687.0,10.862221,10862.221 +6949,2025-03-07T20:51:38.671539-08:00,1705.0,10.838009,10838.009 +6950,2025-03-07T20:51:49.523064-08:00,1678.0,10.851525,10851.525 +6951,2025-03-07T20:52:00.370221-08:00,1665.0,10.847157,10847.157 +6952,2025-03-07T20:52:11.218215-08:00,1701.0,10.847994,10847.994 +6953,2025-03-07T20:52:22.062470-08:00,1707.0,10.844255,10844.255 +6954,2025-03-07T20:52:32.914194-08:00,1684.0,10.851724,10851.724 +6955,2025-03-07T20:52:43.764603-08:00,1631.0,10.850409,10850.409 +6956,2025-03-07T20:52:54.613210-08:00,1699.0,10.848607,10848.607 +6957,2025-03-07T20:53:05.461747-08:00,1682.0,10.848537,10848.537 +6958,2025-03-07T20:53:16.316518-08:00,1646.0,10.854771,10854.771 +6959,2025-03-07T20:53:27.158514-08:00,1701.0,10.841996,10841.996 +6960,2025-03-07T20:53:38.001570-08:00,1703.0,10.843056,10843.056 +6961,2025-03-07T20:53:48.853518-08:00,1707.0,10.851948,10851.948 +6962,2025-03-07T20:53:59.705932-08:00,1698.0,10.852414,10852.414 +6963,2025-03-07T20:54:10.551588-08:00,1707.0,10.845656,10845.656 +6964,2025-03-07T20:54:21.407280-08:00,1673.0,10.855692,10855.692 +6965,2025-03-07T20:54:32.247611-08:00,1647.0,10.840331,10840.331 +6966,2025-03-07T20:54:43.099486-08:00,1664.0,10.851875,10851.875 +6967,2025-03-07T20:54:53.951532-08:00,1707.0,10.852046,10852.046 +6968,2025-03-07T20:55:04.801594-08:00,1622.0,10.850062,10850.062 +6969,2025-03-07T20:55:15.644216-08:00,1705.0,10.842622,10842.622 +6970,2025-03-07T20:55:26.489437-08:00,1685.0,10.845221,10845.221 +6971,2025-03-07T20:55:37.336216-08:00,1703.0,10.846779,10846.779 +6972,2025-03-07T20:55:48.184443-08:00,1613.0,10.848227,10848.227 +6973,2025-03-07T20:55:59.038219-08:00,1675.0,10.853776,10853.776 +6974,2025-03-07T20:56:09.881520-08:00,1701.0,10.843301,10843.301 +6975,2025-03-07T20:56:20.738549-08:00,1699.0,10.857029,10857.029 +6976,2025-03-07T20:56:31.581265-08:00,1627.0,10.842716,10842.716 +6977,2025-03-07T20:56:42.437375-08:00,1697.0,10.85611,10856.11 +6978,2025-03-07T20:56:53.279142-08:00,1705.0,10.841767,10841.767 +6979,2025-03-07T20:57:04.133211-08:00,1694.0,10.854069,10854.069 +6980,2025-03-07T20:57:14.976566-08:00,1699.0,10.843355,10843.355 +6981,2025-03-07T20:57:25.820300-08:00,1647.0,10.843734,10843.734 +6982,2025-03-07T20:57:36.675403-08:00,1699.0,10.855103,10855.103 +6983,2025-03-07T20:57:47.527985-08:00,1616.0,10.852582,10852.582 +6984,2025-03-07T20:57:58.376482-08:00,1649.0,10.848497,10848.497 +6985,2025-03-07T20:58:09.231512-08:00,1642.0,10.85503,10855.03 +6986,2025-03-07T20:58:20.069269-08:00,1667.0,10.837757,10837.757 +6987,2025-03-07T20:58:30.922208-08:00,1670.0,10.852939,10852.939 +6988,2025-03-07T20:58:41.765502-08:00,1643.0,10.843294,10843.294 +6989,2025-03-07T20:58:52.622365-08:00,1693.0,10.856863,10856.863 +6990,2025-03-07T20:59:03.464253-08:00,1694.0,10.841888,10841.888 +6991,2025-03-07T20:59:14.320446-08:00,1673.0,10.856193,10856.193 +6992,2025-03-07T20:59:25.171368-08:00,1615.0,10.850922,10850.922 +6993,2025-03-07T20:59:36.023353-08:00,1691.0,10.851985,10851.985 +6994,2025-03-07T20:59:46.869557-08:00,1703.0,10.846204,10846.204 +6995,2025-03-07T20:59:57.718927-08:00,1659.0,10.84937,10849.37 +6996,2025-03-07T21:00:08.568261-08:00,1678.0,10.849334,10849.334 +6997,2025-03-07T21:00:19.415446-08:00,1662.0,10.847185,10847.185 +6998,2025-03-07T21:00:30.270214-08:00,1664.0,10.854768,10854.768 +6999,2025-03-07T21:00:41.121202-08:00,1616.0,10.850988,10850.988 +7000,2025-03-07T21:00:51.973216-08:00,1703.0,10.852014,10852.014 +7001,2025-03-07T21:01:02.828227-08:00,1687.0,10.855011,10855.011 +7002,2025-03-07T21:01:13.678500-08:00,1680.0,10.850273,10850.273 +7003,2025-03-07T21:01:24.536569-08:00,1665.0,10.858069,10858.069 +7004,2025-03-07T21:01:35.378728-08:00,1699.0,10.842159,10842.159 +7005,2025-03-07T21:01:46.236959-08:00,1667.0,10.858231,10858.231 +7006,2025-03-07T21:01:57.078617-08:00,1706.0,10.841658,10841.658 +7007,2025-03-07T21:02:07.933957-08:00,1691.0,10.85534,10855.34 +7008,2025-03-07T21:02:18.792686-08:00,1702.0,10.858729,10858.729 +7009,2025-03-07T21:02:29.646545-08:00,1699.0,10.853859,10853.859 +7010,2025-03-07T21:02:40.496887-08:00,1637.0,10.850342,10850.342 +7011,2025-03-07T21:02:51.346498-08:00,1659.0,10.849611,10849.611 +7012,2025-03-07T21:03:02.197467-08:00,1696.0,10.850969,10850.969 +7013,2025-03-07T21:03:13.048305-08:00,1663.0,10.850838,10850.838 +7014,2025-03-07T21:03:23.903752-08:00,1683.0,10.855447,10855.447 +7015,2025-03-07T21:03:34.766274-08:00,1619.0,10.862522,10862.522 +7016,2025-03-07T21:03:45.611326-08:00,1696.0,10.845052,10845.052 +7017,2025-03-07T21:03:56.467223-08:00,1702.0,10.855897,10855.897 +7018,2025-03-07T21:04:07.314463-08:00,1648.0,10.84724,10847.24 +7019,2025-03-07T21:04:18.163183-08:00,1617.0,10.84872,10848.72 +7020,2025-03-07T21:04:29.030199-08:00,1706.0,10.867016,10867.016 +7021,2025-03-07T21:04:39.884085-08:00,1671.0,10.853886,10853.886 +7022,2025-03-07T21:04:50.739803-08:00,1707.0,10.855718,10855.718 +7023,2025-03-07T21:05:01.596732-08:00,1655.0,10.856929,10856.929 +7024,2025-03-07T21:05:12.452532-08:00,1694.0,10.8558,10855.8 +7025,2025-03-07T21:05:23.302455-08:00,1697.0,10.849923,10849.923 +7026,2025-03-07T21:05:34.202490-08:00,1658.0,10.900035,10900.035 +7027,2025-03-07T21:05:45.044712-08:00,1619.0,10.842222,10842.222 +7028,2025-03-07T21:05:55.906464-08:00,1689.0,10.861752,10861.752 +7029,2025-03-07T21:06:06.758464-08:00,1613.0,10.852,10852.0 +7030,2025-03-07T21:06:17.607685-08:00,1701.0,10.849221,10849.221 +7031,2025-03-07T21:06:28.461610-08:00,1691.0,10.853925,10853.925 +7032,2025-03-07T21:06:39.316482-08:00,1703.0,10.854872,10854.872 +7033,2025-03-07T21:06:50.177605-08:00,1698.0,10.861123,10861.123 +7034,2025-03-07T21:07:01.026690-08:00,1616.0,10.849085,10849.085 +7035,2025-03-07T21:07:11.880469-08:00,1666.0,10.853779,10853.779 +7036,2025-03-07T21:07:22.746255-08:00,1709.0,10.865786,10865.786 +7037,2025-03-07T21:07:33.590545-08:00,1617.0,10.84429,10844.29 +7038,2025-03-07T21:07:44.441473-08:00,1689.0,10.850928,10850.928 +7039,2025-03-07T21:07:55.286987-08:00,1648.0,10.845514,10845.514 +7040,2025-03-07T21:08:06.131474-08:00,1641.0,10.844487,10844.487 +7041,2025-03-07T21:08:16.982479-08:00,1685.0,10.851005,10851.005 +7042,2025-03-07T21:08:27.839476-08:00,1703.0,10.856997,10856.997 +7043,2025-03-07T21:08:38.691531-08:00,1698.0,10.852055,10852.055 +7044,2025-03-07T21:08:49.548476-08:00,1694.0,10.856945,10856.945 +7045,2025-03-07T21:09:00.390848-08:00,1650.0,10.842372,10842.372 +7046,2025-03-07T21:09:11.246793-08:00,1615.0,10.855945,10855.945 +7047,2025-03-07T21:09:22.099801-08:00,1664.0,10.853008,10853.008 +7048,2025-03-07T21:09:32.943757-08:00,1663.0,10.843956,10843.956 +7049,2025-03-07T21:09:43.798291-08:00,1657.0,10.854534,10854.534 +7050,2025-03-07T21:09:54.652520-08:00,1708.0,10.854229,10854.229 +7051,2025-03-07T21:10:05.495964-08:00,1703.0,10.843444,10843.444 +7052,2025-03-07T21:10:16.340688-08:00,1707.0,10.844724,10844.724 +7053,2025-03-07T21:10:27.194370-08:00,1619.0,10.853682,10853.682 +7054,2025-03-07T21:10:38.047472-08:00,1621.0,10.853102,10853.102 +7055,2025-03-07T21:10:48.897112-08:00,1702.0,10.84964,10849.64 +7056,2025-03-07T21:10:59.745466-08:00,1659.0,10.848354,10848.354 +7057,2025-03-07T21:11:10.599636-08:00,1621.0,10.85417,10854.17 +7058,2025-03-07T21:11:21.452542-08:00,1687.0,10.852906,10852.906 +7059,2025-03-07T21:11:32.291805-08:00,1617.0,10.839263,10839.263 +7060,2025-03-07T21:11:43.152968-08:00,1684.0,10.861163,10861.163 +7061,2025-03-07T21:11:53.998471-08:00,1616.0,10.845503,10845.503 +7062,2025-03-07T21:12:04.858289-08:00,1661.0,10.859818,10859.818 +7063,2025-03-07T21:12:15.702470-08:00,1661.0,10.844181,10844.181 +7064,2025-03-07T21:12:26.559952-08:00,1709.0,10.857482,10857.482 +7065,2025-03-07T21:12:37.412470-08:00,1707.0,10.852518,10852.518 +7066,2025-03-07T21:12:48.257865-08:00,1637.0,10.845395,10845.395 +7067,2025-03-07T21:12:59.111198-08:00,1653.0,10.853333,10853.333 +7068,2025-03-07T21:13:09.970461-08:00,1648.0,10.859263,10859.263 +7069,2025-03-07T21:13:20.819474-08:00,1679.0,10.849013,10849.013 +7070,2025-03-07T21:13:31.661719-08:00,1705.0,10.842245,10842.245 +7071,2025-03-07T21:13:42.515752-08:00,1694.0,10.854033,10854.033 +7072,2025-03-07T21:13:53.370481-08:00,1629.0,10.854729,10854.729 +7073,2025-03-07T21:14:04.214899-08:00,1707.0,10.844418,10844.418 +7074,2025-03-07T21:14:15.068857-08:00,1707.0,10.853958,10853.958 +7075,2025-03-07T21:14:25.911686-08:00,1706.0,10.842829,10842.829 +7076,2025-03-07T21:14:36.766515-08:00,1706.0,10.854829,10854.829 +7077,2025-03-07T21:14:47.608619-08:00,1698.0,10.842104,10842.104 +7078,2025-03-07T21:14:58.462592-08:00,1681.0,10.853973,10853.973 +7079,2025-03-07T21:15:09.318474-08:00,1709.0,10.855882,10855.882 +7080,2025-03-07T21:15:20.167480-08:00,1630.0,10.849006,10849.006 +7081,2025-03-07T21:15:31.007789-08:00,1665.0,10.840309,10840.309 +7082,2025-03-07T21:15:41.859143-08:00,1628.0,10.851354,10851.354 +7083,2025-03-07T21:15:52.703780-08:00,1665.0,10.844637,10844.637 +7084,2025-03-07T21:16:03.542453-08:00,1701.0,10.838673,10838.673 +7085,2025-03-07T21:16:14.395033-08:00,1711.0,10.85258,10852.58 +7086,2025-03-07T21:16:25.242471-08:00,1709.0,10.847438,10847.438 +7087,2025-03-07T21:16:36.090634-08:00,1657.0,10.848163,10848.163 +7088,2025-03-07T21:16:46.930803-08:00,1641.0,10.840169,10840.169 +7089,2025-03-07T21:16:57.772743-08:00,1647.0,10.84194,10841.94 +7090,2025-03-07T21:17:08.624556-08:00,1710.0,10.851813,10851.813 +7091,2025-03-07T21:17:19.469836-08:00,1669.0,10.84528,10845.28 +7092,2025-03-07T21:17:30.327471-08:00,1710.0,10.857635,10857.635 +7093,2025-03-07T21:17:41.173839-08:00,1609.0,10.846368,10846.368 +7094,2025-03-07T21:17:52.022410-08:00,1671.0,10.848571,10848.571 +7095,2025-03-07T21:18:02.864979-08:00,1666.0,10.842569,10842.569 +7096,2025-03-07T21:18:13.710743-08:00,1706.0,10.845764,10845.764 +7097,2025-03-07T21:18:24.562031-08:00,1706.0,10.851288,10851.288 +7098,2025-03-07T21:18:35.416727-08:00,1646.0,10.854696,10854.696 +7099,2025-03-07T21:18:46.260631-08:00,1670.0,10.843904,10843.904 +7100,2025-03-07T21:18:57.101698-08:00,1658.0,10.841067,10841.067 +7101,2025-03-07T21:19:07.950477-08:00,1706.0,10.848779,10848.779 +7102,2025-03-07T21:19:18.789778-08:00,1679.0,10.839301,10839.301 +7103,2025-03-07T21:19:29.635621-08:00,1706.0,10.845843,10845.843 +7104,2025-03-07T21:19:40.482451-08:00,1710.0,10.84683,10846.83 +7105,2025-03-07T21:19:51.335472-08:00,1703.0,10.853021,10853.021 +7106,2025-03-07T21:20:02.180525-08:00,1630.0,10.845053,10845.053 +7107,2025-03-07T21:20:13.037658-08:00,1696.0,10.857133,10857.133 +7108,2025-03-07T21:20:23.881526-08:00,1709.0,10.843868,10843.868 +7109,2025-03-07T21:20:34.727217-08:00,1622.0,10.845691,10845.691 +7110,2025-03-07T21:20:45.579865-08:00,1630.0,10.852648,10852.648 +7111,2025-03-07T21:20:56.424788-08:00,1632.0,10.844923,10844.923 +7112,2025-03-07T21:21:07.270505-08:00,1709.0,10.845717,10845.717 +7113,2025-03-07T21:21:18.129312-08:00,1707.0,10.858807,10858.807 +7114,2025-03-07T21:21:28.973521-08:00,1707.0,10.844209,10844.209 +7115,2025-03-07T21:21:39.825472-08:00,1680.0,10.851951,10851.951 +7116,2025-03-07T21:21:50.671533-08:00,1707.0,10.846061,10846.061 +7117,2025-03-07T21:22:01.514462-08:00,1710.0,10.842929,10842.929 +7118,2025-03-07T21:22:12.371035-08:00,1707.0,10.856573,10856.573 +7119,2025-03-07T21:22:23.221615-08:00,1711.0,10.85058,10850.58 +7120,2025-03-07T21:22:34.071875-08:00,1616.0,10.85026,10850.26 +7121,2025-03-07T21:22:44.911523-08:00,1706.0,10.839648,10839.648 +7122,2025-03-07T21:22:55.765720-08:00,1685.0,10.854197,10854.197 +7123,2025-03-07T21:23:06.609474-08:00,1622.0,10.843754,10843.754 +7124,2025-03-07T21:23:17.450477-08:00,1707.0,10.841003,10841.003 +7125,2025-03-07T21:23:28.306472-08:00,1711.0,10.855995,10855.995 +7126,2025-03-07T21:23:39.154815-08:00,1706.0,10.848343,10848.343 +7127,2025-03-07T21:23:49.991333-08:00,1663.0,10.836518,10836.518 +7128,2025-03-07T21:24:00.846032-08:00,1631.0,10.854699,10854.699 +7129,2025-03-07T21:24:11.684719-08:00,1636.0,10.838687,10838.687 +7130,2025-03-07T21:24:22.532474-08:00,1649.0,10.847755,10847.755 +7131,2025-03-07T21:24:33.375537-08:00,1639.0,10.843063,10843.063 +7132,2025-03-07T21:24:44.231477-08:00,1707.0,10.85594,10855.94 +7133,2025-03-07T21:24:55.072932-08:00,1686.0,10.841455,10841.455 +7134,2025-03-07T21:25:05.916656-08:00,1700.0,10.843724,10843.724 +7135,2025-03-07T21:25:16.769544-08:00,1680.0,10.852888,10852.888 +7136,2025-03-07T21:25:27.612471-08:00,1687.0,10.842927,10842.927 +7137,2025-03-07T21:25:38.468930-08:00,1619.0,10.856459,10856.459 +7138,2025-03-07T21:25:49.311474-08:00,1712.0,10.842544,10842.544 +7139,2025-03-07T21:26:00.155536-08:00,1680.0,10.844062,10844.062 +7140,2025-03-07T21:26:11.008588-08:00,1657.0,10.853052,10853.052 +7141,2025-03-07T21:26:21.851268-08:00,1706.0,10.84268,10842.68 +7142,2025-03-07T21:26:32.692443-08:00,1701.0,10.841175,10841.175 +7143,2025-03-07T21:26:43.547475-08:00,1638.0,10.855032,10855.032 +7144,2025-03-07T21:26:54.381802-08:00,1648.0,10.834327,10834.327 +7145,2025-03-07T21:27:05.224852-08:00,1671.0,10.84305,10843.05 +7146,2025-03-07T21:27:16.079069-08:00,1708.0,10.854217,10854.217 +7147,2025-03-07T21:27:26.911598-08:00,1711.0,10.832529,10832.529 +7148,2025-03-07T21:27:37.764521-08:00,1692.0,10.852923,10852.923 +7149,2025-03-07T21:27:48.606588-08:00,1655.0,10.842067,10842.067 +7150,2025-03-07T21:27:59.457434-08:00,1711.0,10.850846,10850.846 +7151,2025-03-07T21:28:10.294275-08:00,1687.0,10.836841,10836.841 +7152,2025-03-07T21:28:21.148980-08:00,1668.0,10.854705,10854.705 +7153,2025-03-07T21:28:31.991472-08:00,1663.0,10.842492,10842.492 +7154,2025-03-07T21:28:42.844475-08:00,1665.0,10.853003,10853.003 +7155,2025-03-07T21:28:53.694748-08:00,1685.0,10.850273,10850.273 +7156,2025-03-07T21:29:04.543476-08:00,1711.0,10.848728,10848.728 +7157,2025-03-07T21:29:15.389470-08:00,1708.0,10.845994,10845.994 +7158,2025-03-07T21:29:26.233835-08:00,1634.0,10.844365,10844.365 +7159,2025-03-07T21:29:37.084837-08:00,1629.0,10.851002,10851.002 +7160,2025-03-07T21:29:47.928501-08:00,1654.0,10.843664,10843.664 +7161,2025-03-07T21:29:58.767646-08:00,1683.0,10.839145,10839.145 +7162,2025-03-07T21:30:09.612789-08:00,1707.0,10.845143,10845.143 +7163,2025-03-07T21:30:20.456788-08:00,1709.0,10.843999,10843.999 +7164,2025-03-07T21:30:31.299828-08:00,1691.0,10.84304,10843.04 +7165,2025-03-07T21:30:42.141474-08:00,1671.0,10.841646,10841.646 +7166,2025-03-07T21:30:52.991825-08:00,1649.0,10.850351,10850.351 +7167,2025-03-07T21:31:03.828477-08:00,1711.0,10.836652,10836.652 +7168,2025-03-07T21:31:14.671803-08:00,1621.0,10.843326,10843.326 +7169,2025-03-07T21:31:25.515515-08:00,1627.0,10.843712,10843.712 +7170,2025-03-07T21:31:36.372128-08:00,1710.0,10.856613,10856.613 +7171,2025-03-07T21:31:47.214468-08:00,1667.0,10.84234,10842.34 +7172,2025-03-07T21:31:58.056687-08:00,1711.0,10.842219,10842.219 +7173,2025-03-07T21:32:08.900794-08:00,1693.0,10.844107,10844.107 +7174,2025-03-07T21:32:19.738471-08:00,1707.0,10.837677,10837.677 +7175,2025-03-07T21:32:30.574609-08:00,1623.0,10.836138,10836.138 +7176,2025-03-07T21:32:41.417715-08:00,1632.0,10.843106,10843.106 +7177,2025-03-07T21:32:52.261694-08:00,1707.0,10.843979,10843.979 +7178,2025-03-07T21:33:03.101742-08:00,1680.0,10.840048,10840.048 +7179,2025-03-07T21:33:13.946451-08:00,1703.0,10.844709,10844.709 +7180,2025-03-07T21:33:24.791081-08:00,1623.0,10.84463,10844.63 +7181,2025-03-07T21:33:35.643641-08:00,1649.0,10.85256,10852.56 +7182,2025-03-07T21:33:46.487145-08:00,1665.0,10.843504,10843.504 +7183,2025-03-07T21:33:57.330862-08:00,1700.0,10.843717,10843.717 +7184,2025-03-07T21:34:08.179470-08:00,1703.0,10.848608,10848.608 +7185,2025-03-07T21:34:19.039448-08:00,1650.0,10.859978,10859.978 +7186,2025-03-07T21:34:29.883772-08:00,1708.0,10.844324,10844.324 +7187,2025-03-07T21:34:40.735453-08:00,1619.0,10.851681,10851.681 +7188,2025-03-07T21:34:51.585472-08:00,1664.0,10.850019,10850.019 +7189,2025-03-07T21:35:02.424471-08:00,1657.0,10.838999,10838.999 +7190,2025-03-07T21:35:13.279469-08:00,1707.0,10.854998,10854.998 +7191,2025-03-07T21:35:24.125623-08:00,1696.0,10.846154,10846.154 +7192,2025-03-07T21:35:34.975763-08:00,1667.0,10.85014,10850.14 +7193,2025-03-07T21:35:45.824009-08:00,1691.0,10.848246,10848.246 +7194,2025-03-07T21:35:56.672508-08:00,1695.0,10.848499,10848.499 +7195,2025-03-07T21:36:07.514599-08:00,1711.0,10.842091,10842.091 +7196,2025-03-07T21:36:18.370455-08:00,1621.0,10.855856,10855.856 +7197,2025-03-07T21:36:29.214529-08:00,1666.0,10.844074,10844.074 +7198,2025-03-07T21:36:40.062790-08:00,1654.0,10.848261,10848.261 +7199,2025-03-07T21:36:50.912705-08:00,1618.0,10.849915,10849.915 +7200,2025-03-07T21:37:01.764474-08:00,1701.0,10.851769,10851.769 +7201,2025-03-07T21:37:12.609735-08:00,1648.0,10.845261,10845.261 +7202,2025-03-07T21:37:23.451764-08:00,1653.0,10.842029,10842.029 +7203,2025-03-07T21:37:34.304474-08:00,1707.0,10.85271,10852.71 +7204,2025-03-07T21:37:45.143822-08:00,1648.0,10.839348,10839.348 +7205,2025-03-07T21:37:55.993479-08:00,1617.0,10.849657,10849.657 +7206,2025-03-07T21:38:06.840884-08:00,1691.0,10.847405,10847.405 +7207,2025-03-07T21:38:17.688730-08:00,1706.0,10.847846,10847.846 +7208,2025-03-07T21:38:28.535865-08:00,1661.0,10.847135,10847.135 +7209,2025-03-07T21:38:39.383421-08:00,1709.0,10.847556,10847.556 +7210,2025-03-07T21:38:50.236716-08:00,1666.0,10.853295,10853.295 +7211,2025-03-07T21:39:01.084599-08:00,1655.0,10.847883,10847.883 +7212,2025-03-07T21:39:11.928050-08:00,1662.0,10.843451,10843.451 +7213,2025-03-07T21:39:22.773483-08:00,1647.0,10.845433,10845.433 +7214,2025-03-07T21:39:33.621726-08:00,1694.0,10.848243,10848.243 +7215,2025-03-07T21:39:44.479515-08:00,1619.0,10.857789,10857.789 +7216,2025-03-07T21:39:55.327412-08:00,1693.0,10.847897,10847.897 +7217,2025-03-07T21:40:06.179163-08:00,1648.0,10.851751,10851.751 +7218,2025-03-07T21:40:17.033053-08:00,1635.0,10.85389,10853.89 +7219,2025-03-07T21:40:27.876475-08:00,1649.0,10.843422,10843.422 +7220,2025-03-07T21:40:38.724466-08:00,1634.0,10.847991,10847.991 +7221,2025-03-07T21:40:49.583474-08:00,1634.0,10.859008,10859.008 +7222,2025-03-07T21:41:00.432659-08:00,1657.0,10.849185,10849.185 +7223,2025-03-07T21:41:11.270595-08:00,1627.0,10.837936,10837.936 +7224,2025-03-07T21:41:22.116022-08:00,1663.0,10.845427,10845.427 +7225,2025-03-07T21:41:32.973576-08:00,1710.0,10.857554,10857.554 +7226,2025-03-07T21:41:43.814309-08:00,1682.0,10.840733,10840.733 +7227,2025-03-07T21:41:54.668521-08:00,1691.0,10.854212,10854.212 +7228,2025-03-07T21:42:05.525004-08:00,1705.0,10.856483,10856.483 +7229,2025-03-07T21:42:16.376738-08:00,1623.0,10.851734,10851.734 +7230,2025-03-07T21:42:27.231529-08:00,1623.0,10.854791,10854.791 +7231,2025-03-07T21:42:38.081612-08:00,1631.0,10.850083,10850.083 +7232,2025-03-07T21:42:48.928467-08:00,1647.0,10.846855,10846.855 +7233,2025-03-07T21:42:59.788725-08:00,1657.0,10.860258,10860.258 +7234,2025-03-07T21:43:10.630955-08:00,1674.0,10.84223,10842.23 +7235,2025-03-07T21:43:21.481022-08:00,1647.0,10.850067,10850.067 +7236,2025-03-07T21:43:32.328198-08:00,1658.0,10.847176,10847.176 +7237,2025-03-07T21:43:43.183052-08:00,1617.0,10.854854,10854.854 +7238,2025-03-07T21:43:54.030682-08:00,1618.0,10.84763,10847.63 +7239,2025-03-07T21:44:04.874610-08:00,1707.0,10.843928,10843.928 +7240,2025-03-07T21:44:15.728095-08:00,1705.0,10.853485,10853.485 +7241,2025-03-07T21:44:26.575475-08:00,1654.0,10.84738,10847.38 +7242,2025-03-07T21:44:37.430386-08:00,1615.0,10.854911,10854.911 +7243,2025-03-07T21:44:48.276597-08:00,1648.0,10.846211,10846.211 +7244,2025-03-07T21:44:59.133513-08:00,1666.0,10.856916,10856.916 +7245,2025-03-07T21:45:09.981470-08:00,1661.0,10.847957,10847.957 +7246,2025-03-07T21:45:20.828453-08:00,1651.0,10.846983,10846.983 +7247,2025-03-07T21:45:31.679612-08:00,1690.0,10.851159,10851.159 +7248,2025-03-07T21:45:42.518793-08:00,1664.0,10.839181,10839.181 +7249,2025-03-07T21:45:53.368456-08:00,1697.0,10.849663,10849.663 +7250,2025-03-07T21:46:04.215778-08:00,1629.0,10.847322,10847.322 +7251,2025-03-07T21:46:15.064643-08:00,1665.0,10.848865,10848.865 +7252,2025-03-07T21:46:25.906545-08:00,1664.0,10.841902,10841.902 +7253,2025-03-07T21:46:36.758831-08:00,1691.0,10.852286,10852.286 +7254,2025-03-07T21:46:47.610774-08:00,1644.0,10.851943,10851.943 +7255,2025-03-07T21:46:58.461502-08:00,1709.0,10.850728,10850.728 +7256,2025-03-07T21:47:09.307852-08:00,1711.0,10.84635,10846.35 +7257,2025-03-07T21:47:20.163474-08:00,1706.0,10.855622,10855.622 +7258,2025-03-07T21:47:31.008746-08:00,1620.0,10.845272,10845.272 +7259,2025-03-07T21:47:41.860614-08:00,1643.0,10.851868,10851.868 +7260,2025-03-07T21:47:52.703476-08:00,1669.0,10.842862,10842.862 +7261,2025-03-07T21:48:03.545694-08:00,1701.0,10.842218,10842.218 +7262,2025-03-07T21:48:14.398515-08:00,1696.0,10.852821,10852.821 +7263,2025-03-07T21:48:25.248818-08:00,1710.0,10.850303,10850.303 +7264,2025-03-07T21:48:36.095483-08:00,1686.0,10.846665,10846.665 +7265,2025-03-07T21:48:46.948626-08:00,1670.0,10.853143,10853.143 +7266,2025-03-07T21:48:57.794805-08:00,1631.0,10.846179,10846.179 +7267,2025-03-07T21:49:08.646955-08:00,1698.0,10.85215,10852.15 +7268,2025-03-07T21:49:19.491577-08:00,1682.0,10.844622,10844.622 +7269,2025-03-07T21:49:30.338109-08:00,1662.0,10.846532,10846.532 +7270,2025-03-07T21:49:41.185072-08:00,1686.0,10.846963,10846.963 +7271,2025-03-07T21:49:52.038015-08:00,1639.0,10.852943,10852.943 +7272,2025-03-07T21:50:02.875638-08:00,1680.0,10.837623,10837.623 +7273,2025-03-07T21:50:13.732032-08:00,1651.0,10.856394,10856.394 +7274,2025-03-07T21:50:24.574932-08:00,1642.0,10.8429,10842.9 +7275,2025-03-07T21:50:35.424744-08:00,1623.0,10.849812,10849.812 +7276,2025-03-07T21:50:46.272471-08:00,1710.0,10.847727,10847.727 +7277,2025-03-07T21:50:57.117737-08:00,1693.0,10.845266,10845.266 +7278,2025-03-07T21:51:07.965475-08:00,1698.0,10.847738,10847.738 +7279,2025-03-07T21:51:18.812719-08:00,1709.0,10.847244,10847.244 +7280,2025-03-07T21:51:29.662555-08:00,1646.0,10.849836,10849.836 +7281,2025-03-07T21:51:40.517709-08:00,1680.0,10.855154,10855.154 +7282,2025-03-07T21:51:51.365776-08:00,1650.0,10.848067,10848.067 +7283,2025-03-07T21:52:02.206605-08:00,1667.0,10.840829,10840.829 +7284,2025-03-07T21:52:13.057713-08:00,1683.0,10.851108,10851.108 +7285,2025-03-07T21:52:23.911161-08:00,1700.0,10.853448,10853.448 +7286,2025-03-07T21:52:34.765471-08:00,1611.0,10.85431,10854.31 +7287,2025-03-07T21:52:45.604117-08:00,1691.0,10.838646,10838.646 +7288,2025-03-07T21:52:56.450210-08:00,1637.0,10.846093,10846.093 +7289,2025-03-07T21:53:07.295773-08:00,1703.0,10.845563,10845.563 +7290,2025-03-07T21:53:18.144640-08:00,1711.0,10.848867,10848.867 +7291,2025-03-07T21:53:28.991479-08:00,1666.0,10.846839,10846.839 +7292,2025-03-07T21:53:39.835666-08:00,1701.0,10.844187,10844.187 +7293,2025-03-07T21:53:50.684470-08:00,1710.0,10.848804,10848.804 +7294,2025-03-07T21:54:01.532601-08:00,1710.0,10.848131,10848.131 +7295,2025-03-07T21:54:12.369801-08:00,1607.0,10.8372,10837.2 +7296,2025-03-07T21:54:23.213754-08:00,1664.0,10.843953,10843.953 +7297,2025-03-07T21:54:34.062565-08:00,1699.0,10.848811,10848.811 +7298,2025-03-07T21:54:44.912337-08:00,1712.0,10.849772,10849.772 +7299,2025-03-07T21:54:55.761452-08:00,1712.0,10.849115,10849.115 +7300,2025-03-07T21:55:06.613739-08:00,1649.0,10.852287,10852.287 +7301,2025-03-07T21:55:17.453805-08:00,1698.0,10.840066,10840.066 +7302,2025-03-07T21:55:28.313695-08:00,1703.0,10.85989,10859.89 +7303,2025-03-07T21:55:39.151817-08:00,1645.0,10.838122,10838.122 +7304,2025-03-07T21:55:49.996475-08:00,1683.0,10.844658,10844.658 +7305,2025-03-07T21:56:00.846472-08:00,1695.0,10.849997,10849.997 +7306,2025-03-07T21:56:11.698916-08:00,1678.0,10.852444,10852.444 +7307,2025-03-07T21:56:22.544471-08:00,1663.0,10.845555,10845.555 +7308,2025-03-07T21:56:33.398002-08:00,1654.0,10.853531,10853.531 +7309,2025-03-07T21:56:44.238481-08:00,1616.0,10.840479,10840.479 +7310,2025-03-07T21:56:55.086137-08:00,1694.0,10.847656,10847.656 +7311,2025-03-07T21:57:05.929509-08:00,1699.0,10.843372,10843.372 +7312,2025-03-07T21:57:16.776475-08:00,1709.0,10.846966,10846.966 +7313,2025-03-07T21:57:27.625888-08:00,1693.0,10.849413,10849.413 +7314,2025-03-07T21:57:38.469815-08:00,1710.0,10.843927,10843.927 +7315,2025-03-07T21:57:49.312897-08:00,1708.0,10.843082,10843.082 +7316,2025-03-07T21:58:00.155747-08:00,1694.0,10.84285,10842.85 +7317,2025-03-07T21:58:10.993591-08:00,1683.0,10.837844,10837.844 +7318,2025-03-07T21:58:21.840463-08:00,1671.0,10.846872,10846.872 +7319,2025-03-07T21:58:32.682709-08:00,1657.0,10.842246,10842.246 +7320,2025-03-07T21:58:43.537623-08:00,1687.0,10.854914,10854.914 +7321,2025-03-07T21:58:54.381746-08:00,1703.0,10.844123,10844.123 +7322,2025-03-07T21:59:05.226647-08:00,1709.0,10.844901,10844.901 +7323,2025-03-07T21:59:16.069594-08:00,1705.0,10.842947,10842.947 +7324,2025-03-07T21:59:26.902386-08:00,1710.0,10.832792,10832.792 +7325,2025-03-07T21:59:37.745758-08:00,1643.0,10.843372,10843.372 +7326,2025-03-07T21:59:48.588664-08:00,1706.0,10.842906,10842.906 +7327,2025-03-07T21:59:59.425471-08:00,1633.0,10.836807,10836.807 +7328,2025-03-07T22:00:10.269619-08:00,1703.0,10.844148,10844.148 +7329,2025-03-07T22:00:21.116454-08:00,1706.0,10.846835,10846.835 +7330,2025-03-07T22:00:31.960269-08:00,1621.0,10.843815,10843.815 +7331,2025-03-07T22:00:42.802467-08:00,1698.0,10.842198,10842.198 +7332,2025-03-07T22:00:53.653251-08:00,1695.0,10.850784,10850.784 +7333,2025-03-07T22:01:04.488754-08:00,1706.0,10.835503,10835.503 +7334,2025-03-07T22:01:15.337499-08:00,1710.0,10.848745,10848.745 +7335,2025-03-07T22:01:26.187245-08:00,1648.0,10.849746,10849.746 +7336,2025-03-07T22:01:37.027475-08:00,1651.0,10.84023,10840.23 +7337,2025-03-07T22:01:47.869455-08:00,1652.0,10.84198,10841.98 +7338,2025-03-07T22:01:58.716479-08:00,1615.0,10.847024,10847.024 +7339,2025-03-07T22:02:09.556861-08:00,1626.0,10.840382,10840.382 +7340,2025-03-07T22:02:20.402852-08:00,1685.0,10.845991,10845.991 +7341,2025-03-07T22:02:31.244466-08:00,1663.0,10.841614,10841.614 +7342,2025-03-07T22:02:42.087722-08:00,1627.0,10.843256,10843.256 +7343,2025-03-07T22:02:52.926288-08:00,1655.0,10.838566,10838.566 +7344,2025-03-07T22:03:03.768470-08:00,1707.0,10.842182,10842.182 +7345,2025-03-07T22:03:14.603565-08:00,1705.0,10.835095,10835.095 +7346,2025-03-07T22:03:25.451465-08:00,1633.0,10.8479,10847.9 +7347,2025-03-07T22:03:36.292019-08:00,1707.0,10.840554,10840.554 +7348,2025-03-07T22:03:47.134681-08:00,1683.0,10.842662,10842.662 +7349,2025-03-07T22:03:57.982855-08:00,1709.0,10.848174,10848.174 +7350,2025-03-07T22:04:08.816792-08:00,1634.0,10.833937,10833.937 +7351,2025-03-07T22:04:19.652472-08:00,1671.0,10.83568,10835.68 +7352,2025-03-07T22:04:30.494712-08:00,1660.0,10.84224,10842.24 +7353,2025-03-07T22:04:41.334813-08:00,1682.0,10.840101,10840.101 +7354,2025-03-07T22:04:52.177476-08:00,1700.0,10.842663,10842.663 +7355,2025-03-07T22:05:03.020090-08:00,1696.0,10.842614,10842.614 +7356,2025-03-07T22:05:13.862472-08:00,1693.0,10.842382,10842.382 +7357,2025-03-07T22:05:24.700490-08:00,1651.0,10.838018,10838.018 +7358,2025-03-07T22:05:35.608811-08:00,1689.0,10.908321,10908.321 +7359,2025-03-07T22:05:46.451072-08:00,1707.0,10.842261,10842.261 +7360,2025-03-07T22:05:57.294338-08:00,1707.0,10.843266,10843.266 +7361,2025-03-07T22:06:08.136348-08:00,1702.0,10.84201,10842.01 +7362,2025-03-07T22:06:18.969872-08:00,1706.0,10.833524,10833.524 +7363,2025-03-07T22:06:29.816038-08:00,1699.0,10.846166,10846.166 +7364,2025-03-07T22:06:40.649342-08:00,1708.0,10.833304,10833.304 +7365,2025-03-07T22:06:51.486913-08:00,1639.0,10.837571,10837.571 +7366,2025-03-07T22:07:02.330281-08:00,1687.0,10.843368,10843.368 +7367,2025-03-07T22:07:13.179496-08:00,1683.0,10.849215,10849.215 +7368,2025-03-07T22:07:24.011337-08:00,1627.0,10.831841,10831.841 +7369,2025-03-07T22:07:34.853491-08:00,1638.0,10.842154,10842.154 +7370,2025-03-07T22:07:45.700644-08:00,1667.0,10.847153,10847.153 +7371,2025-03-07T22:07:56.546508-08:00,1659.0,10.845864,10845.864 +7372,2025-03-07T22:08:07.377593-08:00,1667.0,10.831085,10831.085 +7373,2025-03-07T22:08:18.220944-08:00,1711.0,10.843351,10843.351 +7374,2025-03-07T22:08:29.064363-08:00,1648.0,10.843419,10843.419 +7375,2025-03-07T22:08:39.905339-08:00,1687.0,10.840976,10840.976 +7376,2025-03-07T22:08:50.737349-08:00,1648.0,10.83201,10832.01 +7377,2025-03-07T22:09:01.576921-08:00,1635.0,10.839572,10839.572 +7378,2025-03-07T22:09:12.424385-08:00,1703.0,10.847464,10847.464 +7379,2025-03-07T22:09:23.269453-08:00,1701.0,10.845068,10845.068 +7380,2025-03-07T22:09:34.110380-08:00,1652.0,10.840927,10840.927 +7381,2025-03-07T22:09:44.943619-08:00,1658.0,10.833239,10833.239 +7382,2025-03-07T22:09:55.785348-08:00,1696.0,10.841729,10841.729 +7383,2025-03-07T22:10:06.627419-08:00,1667.0,10.842071,10842.071 +7384,2025-03-07T22:10:17.465451-08:00,1675.0,10.838032,10838.032 +7385,2025-03-07T22:10:28.303441-08:00,1699.0,10.83799,10837.99 +7386,2025-03-07T22:10:39.140447-08:00,1655.0,10.837006,10837.006 +7387,2025-03-07T22:10:49.978687-08:00,1644.0,10.83824,10838.24 +7388,2025-03-07T22:11:00.815347-08:00,1703.0,10.83666,10836.66 +7389,2025-03-07T22:11:11.651321-08:00,1661.0,10.835974,10835.974 +7390,2025-03-07T22:11:22.493339-08:00,1711.0,10.842018,10842.018 +7391,2025-03-07T22:11:33.335053-08:00,1649.0,10.841714,10841.714 +7392,2025-03-07T22:11:44.167495-08:00,1695.0,10.832442,10832.442 +7393,2025-03-07T22:11:55.001704-08:00,1697.0,10.834209,10834.209 +7394,2025-03-07T22:12:05.843918-08:00,1658.0,10.842214,10842.214 +7395,2025-03-07T22:12:16.677500-08:00,1711.0,10.833582,10833.582 +7396,2025-03-07T22:12:27.517350-08:00,1698.0,10.83985,10839.85 +7397,2025-03-07T22:12:38.352741-08:00,1616.0,10.835391,10835.391 +7398,2025-03-07T22:12:49.190344-08:00,1712.0,10.837603,10837.603 +7399,2025-03-07T22:13:00.023947-08:00,1710.0,10.833603,10833.603 +7400,2025-03-07T22:13:10.870215-08:00,1648.0,10.846268,10846.268 +7401,2025-03-07T22:13:21.712343-08:00,1671.0,10.842128,10842.128 +7402,2025-03-07T22:13:32.550323-08:00,1615.0,10.83798,10837.98 +7403,2025-03-07T22:13:43.396350-08:00,1711.0,10.846027,10846.027 +7404,2025-03-07T22:13:54.237646-08:00,1709.0,10.841296,10841.296 +7405,2025-03-07T22:14:05.086613-08:00,1685.0,10.848967,10848.967 +7406,2025-03-07T22:14:15.929346-08:00,1663.0,10.842733,10842.733 +7407,2025-03-07T22:14:26.760855-08:00,1646.0,10.831509,10831.509 +7408,2025-03-07T22:14:37.604333-08:00,1648.0,10.843478,10843.478 +7409,2025-03-07T22:14:48.443325-08:00,1665.0,10.838992,10838.992 +7410,2025-03-07T22:14:59.289344-08:00,1666.0,10.846019,10846.019 +7411,2025-03-07T22:15:10.129350-08:00,1607.0,10.840006,10840.006 +7412,2025-03-07T22:15:20.963654-08:00,1623.0,10.834304,10834.304 +7413,2025-03-07T22:15:31.803340-08:00,1648.0,10.839686,10839.686 +7414,2025-03-07T22:15:42.651310-08:00,1693.0,10.84797,10847.97 +7415,2025-03-07T22:15:53.488410-08:00,1683.0,10.8371,10837.1 +7416,2025-03-07T22:16:04.336789-08:00,1701.0,10.848379,10848.379 +7417,2025-03-07T22:16:15.178348-08:00,1677.0,10.841559,10841.559 +7418,2025-03-07T22:16:26.014351-08:00,1695.0,10.836003,10836.003 +7419,2025-03-07T22:16:36.859665-08:00,1659.0,10.845314,10845.314 +7420,2025-03-07T22:16:47.690606-08:00,1683.0,10.830941,10830.941 +7421,2025-03-07T22:16:58.537528-08:00,1696.0,10.846922,10846.922 +7422,2025-03-07T22:17:09.380350-08:00,1710.0,10.842822,10842.822 +7423,2025-03-07T22:17:20.218621-08:00,1680.0,10.838271,10838.271 +7424,2025-03-07T22:17:31.056555-08:00,1691.0,10.837934,10837.934 +7425,2025-03-07T22:17:41.906546-08:00,1648.0,10.849991,10849.991 +7426,2025-03-07T22:17:52.740602-08:00,1710.0,10.834056,10834.056 +7427,2025-03-07T22:18:03.582665-08:00,1712.0,10.842063,10842.063 +7428,2025-03-07T22:18:14.425335-08:00,1680.0,10.84267,10842.67 +7429,2025-03-07T22:18:25.258101-08:00,1635.0,10.832766,10832.766 +7430,2025-03-07T22:18:36.101979-08:00,1677.0,10.843878,10843.878 +7431,2025-03-07T22:18:46.945397-08:00,1685.0,10.843418,10843.418 +7432,2025-03-07T22:18:57.787348-08:00,1706.0,10.841951,10841.951 +7433,2025-03-07T22:19:08.630338-08:00,1706.0,10.84299,10842.99 +7434,2025-03-07T22:19:19.478562-08:00,1697.0,10.848224,10848.224 +7435,2025-03-07T22:19:30.321820-08:00,1662.0,10.843258,10843.258 +7436,2025-03-07T22:19:41.165937-08:00,1663.0,10.844117,10844.117 +7437,2025-03-07T22:19:51.997557-08:00,1710.0,10.83162,10831.62 +7438,2025-03-07T22:20:02.846392-08:00,1645.0,10.848835,10848.835 +7439,2025-03-07T22:20:13.694666-08:00,1705.0,10.848274,10848.274 +7440,2025-03-07T22:20:24.544360-08:00,1712.0,10.849694,10849.694 +7441,2025-03-07T22:20:35.393600-08:00,1712.0,10.84924,10849.24 +7442,2025-03-07T22:20:46.241711-08:00,1616.0,10.848111,10848.111 +7443,2025-03-07T22:20:57.075342-08:00,1677.0,10.833631,10833.631 +7444,2025-03-07T22:21:07.926590-08:00,1655.0,10.851248,10851.248 +7445,2025-03-07T22:21:18.772492-08:00,1613.0,10.845902,10845.902 +7446,2025-03-07T22:21:21.369487-08:00,1682.0,2.596995,2596.995 +7447,2025-03-07T22:21:29.618937-08:00,1691.0,8.24945,8249.45 +7448,2025-03-07T22:21:40.462380-08:00,1712.0,10.843443,10843.443 +7449,2025-03-07T22:21:51.310342-08:00,1702.0,10.847962,10847.962 +7450,2025-03-07T22:22:02.152344-08:00,1710.0,10.842002,10842.002 +7451,2025-03-07T22:22:12.997337-08:00,1648.0,10.844993,10844.993 +7452,2025-03-07T22:22:23.844772-08:00,1710.0,10.847435,10847.435 +7453,2025-03-07T22:22:34.688677-08:00,1647.0,10.843905,10843.905 +7454,2025-03-07T22:22:45.542220-08:00,1711.0,10.853543,10853.543 +7455,2025-03-07T22:22:56.381574-08:00,1712.0,10.839354,10839.354 +7456,2025-03-07T22:23:07.229816-08:00,1671.0,10.848242,10848.242 +7457,2025-03-07T22:23:18.082523-08:00,1661.0,10.852707,10852.707 +7458,2025-03-07T22:23:28.932326-08:00,1703.0,10.849803,10849.803 +7459,2025-03-07T22:23:39.769677-08:00,1674.0,10.837351,10837.351 +7460,2025-03-07T22:23:50.624902-08:00,1705.0,10.855225,10855.225 +7461,2025-03-07T22:24:01.461348-08:00,1643.0,10.836446,10836.446 +7462,2025-03-07T22:24:12.306787-08:00,1660.0,10.845439,10845.439 +7463,2025-03-07T22:24:23.154353-08:00,1705.0,10.847566,10847.566 +7464,2025-03-07T22:24:33.991200-08:00,1632.0,10.836847,10836.847 +7465,2025-03-07T22:24:44.828888-08:00,1675.0,10.837688,10837.688 +7466,2025-03-07T22:24:55.681346-08:00,1710.0,10.852458,10852.458 +7467,2025-03-07T22:25:06.520572-08:00,1650.0,10.839226,10839.226 +7468,2025-03-07T22:25:17.368343-08:00,1692.0,10.847771,10847.771 +7469,2025-03-07T22:25:28.223752-08:00,1708.0,10.855409,10855.409 +7470,2025-03-07T22:25:39.072815-08:00,1681.0,10.849063,10849.063 +7471,2025-03-07T22:25:49.911635-08:00,1670.0,10.83882,10838.82 +7472,2025-03-07T22:26:00.757351-08:00,1696.0,10.845716,10845.716 +7473,2025-03-07T22:26:11.609435-08:00,1646.0,10.852084,10852.084 +7474,2025-03-07T22:26:22.444704-08:00,1680.0,10.835269,10835.269 +7475,2025-03-07T22:26:33.289778-08:00,1649.0,10.845074,10845.074 +7476,2025-03-07T22:26:44.136933-08:00,1696.0,10.847155,10847.155 +7477,2025-03-07T22:26:54.978343-08:00,1663.0,10.84141,10841.41 +7478,2025-03-07T22:27:05.827699-08:00,1664.0,10.849356,10849.356 +7479,2025-03-07T22:27:16.677348-08:00,1698.0,10.849649,10849.649 +7480,2025-03-07T22:27:27.518563-08:00,1667.0,10.841215,10841.215 +7481,2025-03-07T22:27:38.362665-08:00,1651.0,10.844102,10844.102 +7482,2025-03-07T22:27:49.206383-08:00,1669.0,10.843718,10843.718 +7483,2025-03-07T22:28:00.042810-08:00,1636.0,10.836427,10836.427 +7484,2025-03-07T22:28:10.888357-08:00,1654.0,10.845547,10845.547 +7485,2025-03-07T22:28:21.734091-08:00,1710.0,10.845734,10845.734 +7486,2025-03-07T22:28:32.585675-08:00,1669.0,10.851584,10851.584 +7487,2025-03-07T22:28:43.422902-08:00,1664.0,10.837227,10837.227 +7488,2025-03-07T22:28:54.265343-08:00,1619.0,10.842441,10842.441 +7489,2025-03-07T22:29:05.114347-08:00,1712.0,10.849004,10849.004 +7490,2025-03-07T22:29:15.951675-08:00,1670.0,10.837328,10837.328 +7491,2025-03-07T22:29:26.794391-08:00,1694.0,10.842716,10842.716 +7492,2025-03-07T22:29:37.636842-08:00,1712.0,10.842451,10842.451 +7493,2025-03-07T22:29:48.469656-08:00,1634.0,10.832814,10832.814 +7494,2025-03-07T22:29:59.319954-08:00,1638.0,10.850298,10850.298 +7495,2025-03-07T22:30:10.152609-08:00,1705.0,10.832655,10832.655 +7496,2025-03-07T22:30:20.997394-08:00,1681.0,10.844785,10844.785 +7497,2025-03-07T22:30:31.840353-08:00,1611.0,10.842959,10842.959 +7498,2025-03-07T22:30:42.692489-08:00,1645.0,10.852136,10852.136 +7499,2025-03-07T22:30:53.538931-08:00,1678.0,10.846442,10846.442 +7500,2025-03-07T22:31:04.384375-08:00,1687.0,10.845444,10845.444 +7501,2025-03-07T22:31:15.225451-08:00,1622.0,10.841076,10841.076 +7502,2025-03-07T22:31:26.064393-08:00,1641.0,10.838942,10838.942 +7503,2025-03-07T22:31:36.914734-08:00,1654.0,10.850341,10850.341 +7504,2025-03-07T22:31:47.761819-08:00,1680.0,10.847085,10847.085 +7505,2025-03-07T22:31:58.609005-08:00,1695.0,10.847186,10847.186 +7506,2025-03-07T22:32:09.451925-08:00,1669.0,10.84292,10842.92 +7507,2025-03-07T22:32:20.295342-08:00,1701.0,10.843417,10843.417 +7508,2025-03-07T22:32:31.138339-08:00,1693.0,10.842997,10842.997 +7509,2025-03-07T22:32:41.977011-08:00,1699.0,10.838672,10838.672 +7510,2025-03-07T22:32:52.830255-08:00,1653.0,10.853244,10853.244 +7511,2025-03-07T22:33:03.672418-08:00,1683.0,10.842163,10842.163 +7512,2025-03-07T22:33:14.517336-08:00,1706.0,10.844918,10844.918 +7513,2025-03-07T22:33:25.354696-08:00,1696.0,10.83736,10837.36 +7514,2025-03-07T22:33:36.209693-08:00,1708.0,10.854997,10854.997 +7515,2025-03-07T22:33:47.054866-08:00,1706.0,10.845173,10845.173 +7516,2025-03-07T22:33:57.904175-08:00,1663.0,10.849309,10849.309 +7517,2025-03-07T22:34:08.749685-08:00,1648.0,10.84551,10845.51 +7518,2025-03-07T22:34:19.587494-08:00,1645.0,10.837809,10837.809 +7519,2025-03-07T22:34:30.434350-08:00,1675.0,10.846856,10846.856 +7520,2025-03-07T22:34:41.285493-08:00,1662.0,10.851143,10851.143 +7521,2025-03-07T22:34:52.124762-08:00,1616.0,10.839269,10839.269 +7522,2025-03-07T22:35:02.965452-08:00,1663.0,10.84069,10840.69 +7523,2025-03-07T22:35:13.814325-08:00,1711.0,10.848873,10848.873 +7524,2025-03-07T22:35:24.661346-08:00,1689.0,10.847021,10847.021 +7525,2025-03-07T22:35:35.504762-08:00,1662.0,10.843416,10843.416 +7526,2025-03-07T22:35:46.343524-08:00,1707.0,10.838762,10838.762 +7527,2025-03-07T22:35:57.197547-08:00,1708.0,10.854023,10854.023 +7528,2025-03-07T22:36:08.032336-08:00,1648.0,10.834789,10834.789 +7529,2025-03-07T22:36:29.721772-08:00,1673.0,21.689436,21689.436 +7530,2025-03-07T22:36:40.562522-08:00,1709.0,10.84075,10840.75 +7531,2025-03-07T22:36:51.406340-08:00,1654.0,10.843818,10843.818 +7532,2025-03-07T22:37:02.246583-08:00,1689.0,10.840243,10840.243 +7533,2025-03-07T22:37:13.088431-08:00,1657.0,10.841848,10841.848 +7534,2025-03-07T22:37:23.923018-08:00,1706.0,10.834587,10834.587 +7535,2025-03-07T22:37:34.757703-08:00,1664.0,10.834685,10834.685 +7536,2025-03-07T22:37:45.599667-08:00,1710.0,10.841964,10841.964 +7537,2025-03-07T22:37:56.449843-08:00,1710.0,10.850176,10850.176 +7538,2025-03-07T22:38:07.290347-08:00,1680.0,10.840504,10840.504 +7539,2025-03-07T22:38:18.129327-08:00,1671.0,10.83898,10838.98 +7540,2025-03-07T22:38:28.971632-08:00,1680.0,10.842305,10842.305 +7541,2025-03-07T22:38:39.809315-08:00,1694.0,10.837683,10837.683 +7542,2025-03-07T22:38:50.655594-08:00,1611.0,10.846279,10846.279 +7543,2025-03-07T22:39:01.497343-08:00,1672.0,10.841749,10841.749 +7544,2025-03-07T22:39:12.338447-08:00,1706.0,10.841104,10841.104 +7545,2025-03-07T22:39:23.175862-08:00,1707.0,10.837415,10837.415 +7546,2025-03-07T22:39:34.014400-08:00,1663.0,10.838538,10838.538 +7547,2025-03-07T22:39:44.858598-08:00,1696.0,10.844198,10844.198 +7548,2025-03-07T22:39:55.704672-08:00,1683.0,10.846074,10846.074 +7549,2025-03-07T22:40:06.542538-08:00,1648.0,10.837866,10837.866 +7550,2025-03-07T22:40:17.374571-08:00,1669.0,10.832033,10832.033 +7551,2025-03-07T22:40:28.218397-08:00,1673.0,10.843826,10843.826 +7552,2025-03-07T22:40:39.054524-08:00,1666.0,10.836127,10836.127 +7553,2025-03-07T22:40:49.886347-08:00,1706.0,10.831823,10831.823 +7554,2025-03-07T22:41:00.719384-08:00,1666.0,10.833037,10833.037 +7555,2025-03-07T22:41:11.560889-08:00,1707.0,10.841505,10841.505 +7556,2025-03-07T22:41:22.391350-08:00,1664.0,10.830461,10830.461 +7557,2025-03-07T22:41:33.236675-08:00,1666.0,10.845325,10845.325 +7558,2025-03-07T22:41:44.067343-08:00,1690.0,10.830668,10830.668 +7559,2025-03-07T22:41:54.904472-08:00,1623.0,10.837129,10837.129 +7560,2025-03-07T22:42:05.748605-08:00,1614.0,10.844133,10844.133 +7561,2025-03-07T22:42:16.579346-08:00,1644.0,10.830741,10830.741 +7562,2025-03-07T22:42:27.423343-08:00,1651.0,10.843997,10843.997 +7563,2025-03-07T22:42:38.261737-08:00,1693.0,10.838394,10838.394 +7564,2025-03-07T22:42:49.091685-08:00,1709.0,10.829948,10829.948 +7565,2025-03-07T22:42:59.936341-08:00,1639.0,10.844656,10844.656 +7566,2025-03-07T22:43:10.772490-08:00,1676.0,10.836149,10836.149 +7567,2025-03-07T22:43:21.621037-08:00,1621.0,10.848547,10848.547 +7568,2025-03-07T22:43:32.452348-08:00,1632.0,10.831311,10831.311 +7569,2025-03-07T22:43:43.291335-08:00,1698.0,10.838987,10838.987 +7570,2025-03-07T22:43:54.117340-08:00,1661.0,10.826005,10826.005 +7571,2025-03-07T22:44:15.796831-08:00,1643.0,21.679491,21679.491 +7572,2025-03-07T22:44:26.630345-08:00,1634.0,10.833514,10833.514 +7573,2025-03-07T22:44:37.471343-08:00,1696.0,10.840998,10840.998 +7574,2025-03-07T22:44:48.308936-08:00,1665.0,10.837593,10837.593 +7575,2025-03-07T22:44:59.147340-08:00,1627.0,10.838404,10838.404 +7576,2025-03-07T22:45:09.980724-08:00,1690.0,10.833384,10833.384 +7577,2025-03-07T22:45:20.811394-08:00,1656.0,10.83067,10830.67 +7578,2025-03-07T22:45:31.642336-08:00,1709.0,10.830942,10830.942 +7579,2025-03-07T22:45:42.485393-08:00,1677.0,10.843057,10843.057 +7580,2025-03-07T22:45:53.318347-08:00,1711.0,10.832954,10832.954 +7581,2025-03-07T22:46:04.153630-08:00,1712.0,10.835283,10835.283 +7582,2025-03-07T22:46:14.985697-08:00,1677.0,10.832067,10832.067 +7583,2025-03-07T22:46:25.830336-08:00,1697.0,10.844639,10844.639 +7584,2025-03-07T22:46:36.660349-08:00,1639.0,10.830013,10830.013 +7585,2025-03-07T22:46:47.502752-08:00,1707.0,10.842403,10842.403 +7586,2025-03-07T22:46:58.328508-08:00,1657.0,10.825756,10825.756 +7587,2025-03-07T22:47:09.167691-08:00,1712.0,10.839183,10839.183 +7588,2025-03-07T22:47:19.998749-08:00,1685.0,10.831058,10831.058 +7589,2025-03-07T22:47:30.832350-08:00,1675.0,10.833601,10833.601 +7590,2025-03-07T22:47:41.668726-08:00,1619.0,10.836376,10836.376 +7591,2025-03-07T22:47:52.503616-08:00,1671.0,10.83489,10834.89 +7592,2025-03-07T22:48:03.332656-08:00,1702.0,10.82904,10829.04 +7593,2025-03-07T22:48:14.168558-08:00,1699.0,10.835902,10835.902 +7594,2025-03-07T22:48:25.013258-08:00,1685.0,10.8447,10844.7 +7595,2025-03-07T22:48:35.843653-08:00,1687.0,10.830395,10830.395 +7596,2025-03-07T22:48:46.681343-08:00,1695.0,10.83769,10837.69 +7597,2025-03-07T22:48:57.519371-08:00,1692.0,10.838028,10838.028 +7598,2025-03-07T22:49:08.357529-08:00,1711.0,10.838158,10838.158 +7599,2025-03-07T22:49:19.180621-08:00,1707.0,10.823092,10823.092 +7600,2025-03-07T22:49:30.015687-08:00,1670.0,10.835066,10835.066 +7601,2025-03-07T22:49:40.856385-08:00,1626.0,10.840698,10840.698 +7602,2025-03-07T22:49:51.694587-08:00,1711.0,10.838202,10838.202 +7603,2025-03-07T22:50:02.536566-08:00,1708.0,10.841979,10841.979 +7604,2025-03-07T22:50:13.364343-08:00,1699.0,10.827777,10827.777 +7605,2025-03-07T22:50:24.202123-08:00,1635.0,10.83778,10837.78 +7606,2025-03-07T22:50:35.038679-08:00,1688.0,10.836556,10836.556 +7607,2025-03-07T22:50:45.873427-08:00,1703.0,10.834748,10834.748 +7608,2025-03-07T22:50:56.713575-08:00,1667.0,10.840148,10840.148 +7609,2025-03-07T22:51:07.551808-08:00,1711.0,10.838233,10838.233 +7610,2025-03-07T22:51:18.381321-08:00,1692.0,10.829513,10829.513 +7611,2025-03-07T22:51:29.217556-08:00,1705.0,10.836235,10836.235 +7612,2025-03-07T22:51:40.057635-08:00,1695.0,10.840079,10840.079 +7613,2025-03-07T22:51:50.898695-08:00,1689.0,10.84106,10841.06 +7614,2025-03-07T22:52:01.738399-08:00,1642.0,10.839704,10839.704 +7615,2025-03-07T22:52:12.574612-08:00,1644.0,10.836213,10836.213 +7616,2025-03-07T22:52:23.411636-08:00,1680.0,10.837024,10837.024 +7617,2025-03-07T22:52:34.250420-08:00,1707.0,10.838784,10838.784 +7618,2025-03-07T22:52:45.082683-08:00,1713.0,10.832263,10832.263 +7619,2025-03-07T22:52:55.924342-08:00,1665.0,10.841659,10841.659 +7620,2025-03-07T22:53:06.746784-08:00,1643.0,10.822442,10822.442 +7621,2025-03-07T22:53:17.581575-08:00,1679.0,10.834791,10834.791 +7622,2025-03-07T22:53:28.422075-08:00,1713.0,10.8405,10840.5 +7623,2025-03-07T22:53:39.268394-08:00,1630.0,10.846319,10846.319 +7624,2025-03-07T22:53:50.100633-08:00,1632.0,10.832239,10832.239 +7625,2025-03-07T22:54:00.932552-08:00,1709.0,10.831919,10831.919 +7626,2025-03-07T22:54:11.770439-08:00,1664.0,10.837887,10837.887 +7627,2025-03-07T22:54:22.605571-08:00,1682.0,10.835132,10835.132 +7628,2025-03-07T22:54:33.438325-08:00,1686.0,10.832754,10832.754 +7629,2025-03-07T22:54:44.277094-08:00,1662.0,10.838769,10838.769 +7630,2025-03-07T22:54:55.111451-08:00,1699.0,10.834357,10834.357 +7631,2025-03-07T22:55:05.953300-08:00,1659.0,10.841849,10841.849 +7632,2025-03-07T22:55:16.781353-08:00,1682.0,10.828053,10828.053 +7633,2025-03-07T22:55:27.629853-08:00,1671.0,10.8485,10848.5 +7634,2025-03-07T22:55:38.456855-08:00,1682.0,10.827002,10827.002 +7635,2025-03-07T22:55:49.301059-08:00,1680.0,10.844204,10844.204 +7636,2025-03-07T22:56:00.128467-08:00,1689.0,10.827408,10827.408 +7637,2025-03-07T22:56:10.970901-08:00,1712.0,10.842434,10842.434 +7638,2025-03-07T22:56:21.800342-08:00,1712.0,10.829441,10829.441 +7639,2025-03-07T22:56:32.642342-08:00,1687.0,10.842,10842.0 +7640,2025-03-07T22:56:43.474650-08:00,1624.0,10.832308,10832.308 +7641,2025-03-07T22:56:54.315333-08:00,1685.0,10.840683,10840.683 +7642,2025-03-07T22:57:05.149338-08:00,1701.0,10.834005,10834.005 +7643,2025-03-07T22:57:15.982842-08:00,1677.0,10.833504,10833.504 +7644,2025-03-07T22:57:26.815566-08:00,1653.0,10.832724,10832.724 +7645,2025-03-07T22:57:37.658342-08:00,1707.0,10.842776,10842.776 +7646,2025-03-07T22:57:48.496086-08:00,1622.0,10.837744,10837.744 +7647,2025-03-07T22:57:59.327584-08:00,1709.0,10.831498,10831.498 +7648,2025-03-07T22:58:10.168345-08:00,1669.0,10.840761,10840.761 +7649,2025-03-07T22:58:20.995346-08:00,1657.0,10.827001,10827.001 +7650,2025-03-07T22:58:31.833347-08:00,1663.0,10.838001,10838.001 +7651,2025-03-07T22:58:42.668648-08:00,1713.0,10.835301,10835.301 +7652,2025-03-07T22:58:53.500816-08:00,1713.0,10.832168,10832.168 +7653,2025-03-07T22:59:04.340346-08:00,1705.0,10.83953,10839.53 +7654,2025-03-07T22:59:15.176955-08:00,1713.0,10.836609,10836.609 +7655,2025-03-07T22:59:26.020392-08:00,1707.0,10.843437,10843.437 +7656,2025-03-07T22:59:36.864594-08:00,1713.0,10.844202,10844.202 +7657,2025-03-07T22:59:47.695634-08:00,1651.0,10.83104,10831.04 +7658,2025-03-07T22:59:58.536410-08:00,1703.0,10.840776,10840.776 +7659,2025-03-07T23:00:09.369375-08:00,1683.0,10.832965,10832.965 +7660,2025-03-07T23:00:20.208307-08:00,1706.0,10.838932,10838.932 +7661,2025-03-07T23:00:31.054500-08:00,1702.0,10.846193,10846.193 +7662,2025-03-07T23:00:41.887895-08:00,1712.0,10.833395,10833.395 +7663,2025-03-07T23:00:52.726348-08:00,1679.0,10.838453,10838.453 +7664,2025-03-07T23:01:03.553459-08:00,1670.0,10.827111,10827.111 +7665,2025-03-07T23:01:14.396349-08:00,1703.0,10.84289,10842.89 +7666,2025-03-07T23:01:25.225917-08:00,1661.0,10.829568,10829.568 +7667,2025-03-07T23:01:36.059344-08:00,1636.0,10.833427,10833.427 +7668,2025-03-07T23:01:46.895347-08:00,1710.0,10.836003,10836.003 +7669,2025-03-07T23:01:57.731458-08:00,1710.0,10.836111,10836.111 +7670,2025-03-07T23:02:08.564346-08:00,1662.0,10.832888,10832.888 +7671,2025-03-07T23:02:19.399617-08:00,1637.0,10.835271,10835.271 +7672,2025-03-07T23:02:30.233504-08:00,1711.0,10.833887,10833.887 +7673,2025-03-07T23:02:41.064484-08:00,1700.0,10.83098,10830.98 +7674,2025-03-07T23:02:51.897772-08:00,1648.0,10.833288,10833.288 +7675,2025-03-07T23:03:02.722922-08:00,1676.0,10.82515,10825.15 +7676,2025-03-07T23:03:13.559344-08:00,1648.0,10.836422,10836.422 +7677,2025-03-07T23:03:24.397346-08:00,1667.0,10.838002,10838.002 +7678,2025-03-07T23:03:35.226675-08:00,1697.0,10.829329,10829.329 +7679,2025-03-07T23:03:46.062745-08:00,1711.0,10.83607,10836.07 +7680,2025-03-07T23:03:56.892726-08:00,1681.0,10.829981,10829.981 +7681,2025-03-07T23:04:07.722345-08:00,1696.0,10.829619,10829.619 +7682,2025-03-07T23:04:18.545712-08:00,1712.0,10.823367,10823.367 +7683,2025-03-07T23:04:29.386472-08:00,1712.0,10.84076,10840.76 +7684,2025-03-07T23:04:40.208856-08:00,1665.0,10.822384,10822.384 +7685,2025-03-07T23:04:51.040340-08:00,1712.0,10.831484,10831.484 +7686,2025-03-07T23:05:01.871380-08:00,1633.0,10.83104,10831.04 +7687,2025-03-07T23:05:12.703363-08:00,1627.0,10.831983,10831.983 +7688,2025-03-07T23:05:23.535351-08:00,1661.0,10.831988,10831.988 +7689,2025-03-07T23:05:34.406687-08:00,1616.0,10.871336,10871.336 +7690,2025-03-07T23:05:45.236969-08:00,1713.0,10.830282,10830.282 +7691,2025-03-07T23:05:56.065533-08:00,1617.0,10.828564,10828.564 +7692,2025-03-07T23:06:06.885970-08:00,1689.0,10.820437,10820.437 +7693,2025-03-07T23:06:17.721036-08:00,1713.0,10.835066,10835.066 +7694,2025-03-07T23:06:28.549119-08:00,1619.0,10.828083,10828.083 +7695,2025-03-07T23:06:39.378792-08:00,1695.0,10.829673,10829.673 +7696,2025-03-07T23:06:50.211182-08:00,1667.0,10.83239,10832.39 +7697,2025-03-07T23:07:01.043410-08:00,1712.0,10.832228,10832.228 +7698,2025-03-07T23:07:11.877087-08:00,1648.0,10.833677,10833.677 +7699,2025-03-07T23:07:22.703493-08:00,1712.0,10.826406,10826.406 +7700,2025-03-07T23:07:33.536956-08:00,1655.0,10.833463,10833.463 +7701,2025-03-07T23:07:44.370557-08:00,1667.0,10.833601,10833.601 +7702,2025-03-07T23:07:55.199970-08:00,1624.0,10.829413,10829.413 +7703,2025-03-07T23:08:06.025972-08:00,1712.0,10.826002,10826.002 +7704,2025-03-07T23:08:16.859259-08:00,1697.0,10.833287,10833.287 +7705,2025-03-07T23:08:27.685978-08:00,1717.0,10.826719,10826.719 +7706,2025-03-07T23:08:38.515951-08:00,1701.0,10.829973,10829.973 +7707,2025-03-07T23:08:49.348979-08:00,1689.0,10.833028,10833.028 +7708,2025-03-07T23:09:00.173910-08:00,1712.0,10.824931,10824.931 +7709,2025-03-07T23:09:11.005834-08:00,1714.0,10.831924,10831.924 +7710,2025-03-07T23:09:21.844333-08:00,1654.0,10.838499,10838.499 +7711,2025-03-07T23:09:32.673968-08:00,1711.0,10.829635,10829.635 +7712,2025-03-07T23:09:43.492330-08:00,1674.0,10.818362,10818.362 +7713,2025-03-07T23:09:54.328980-08:00,1710.0,10.83665,10836.65 +7714,2025-03-07T23:10:05.160446-08:00,1647.0,10.831466,10831.466 +7715,2025-03-07T23:10:15.990445-08:00,1674.0,10.829999,10829.999 +7716,2025-03-07T23:10:26.816173-08:00,1627.0,10.825728,10825.728 +7717,2025-03-07T23:10:37.644963-08:00,1648.0,10.82879,10828.79 +7718,2025-03-07T23:10:48.479365-08:00,1712.0,10.834402,10834.402 +7719,2025-03-07T23:10:59.310965-08:00,1671.0,10.8316,10831.6 +7720,2025-03-07T23:11:10.135256-08:00,1709.0,10.824291,10824.291 +7721,2025-03-07T23:11:20.975155-08:00,1714.0,10.839899,10839.899 +7722,2025-03-07T23:11:31.799310-08:00,1712.0,10.824155,10824.155 +7723,2025-03-07T23:11:42.627952-08:00,1680.0,10.828642,10828.642 +7724,2025-03-07T23:11:53.457975-08:00,1712.0,10.830023,10830.023 +7725,2025-03-07T23:12:04.290094-08:00,1616.0,10.832119,10832.119 +7726,2025-03-07T23:12:15.117963-08:00,1671.0,10.827869,10827.869 +7727,2025-03-07T23:12:25.954969-08:00,1690.0,10.837006,10837.006 +7728,2025-03-07T23:12:36.780974-08:00,1707.0,10.826005,10826.005 +7729,2025-03-07T23:12:47.612511-08:00,1715.0,10.831537,10831.537 +7730,2025-03-07T23:12:58.432979-08:00,1715.0,10.820468,10820.468 +7731,2025-03-07T23:13:09.265134-08:00,1617.0,10.832155,10832.155 +7732,2025-03-07T23:13:20.096335-08:00,1707.0,10.831201,10831.201 +7733,2025-03-07T23:13:30.929320-08:00,1648.0,10.832985,10832.985 +7734,2025-03-07T23:13:41.758978-08:00,1655.0,10.829658,10829.658 +7735,2025-03-07T23:13:52.596828-08:00,1643.0,10.83785,10837.85 +7736,2025-03-07T23:14:03.420956-08:00,1689.0,10.824128,10824.128 +7737,2025-03-07T23:14:14.248522-08:00,1666.0,10.827566,10827.566 +7738,2025-03-07T23:14:25.076006-08:00,1711.0,10.827484,10827.484 +7739,2025-03-07T23:14:35.918226-08:00,1668.0,10.84222,10842.22 +7740,2025-03-07T23:14:46.747983-08:00,1684.0,10.829757,10829.757 +7741,2025-03-07T23:14:57.576500-08:00,1641.0,10.828517,10828.517 +7742,2025-03-07T23:15:08.406088-08:00,1712.0,10.829588,10829.588 +7743,2025-03-07T23:15:19.233978-08:00,1719.0,10.82789,10827.89 +7744,2025-03-07T23:15:30.049963-08:00,1708.0,10.815985,10815.985 +7745,2025-03-07T23:15:40.879265-08:00,1666.0,10.829302,10829.302 +7746,2025-03-07T23:15:51.709982-08:00,1721.0,10.830717,10830.717 +7747,2025-03-07T23:16:02.537085-08:00,1675.0,10.827103,10827.103 +7748,2025-03-07T23:16:13.359213-08:00,1718.0,10.822128,10822.128 +7749,2025-03-07T23:16:24.188052-08:00,1619.0,10.828839,10828.839 +7750,2025-03-07T23:16:35.021083-08:00,1669.0,10.833031,10833.031 +7751,2025-03-07T23:16:45.859305-08:00,1707.0,10.838222,10838.222 +7752,2025-03-07T23:16:56.690314-08:00,1671.0,10.831009,10831.009 +7753,2025-03-07T23:17:07.514324-08:00,1701.0,10.82401,10824.01 +7754,2025-03-07T23:17:18.353168-08:00,1679.0,10.838844,10838.844 +7755,2025-03-07T23:17:29.177377-08:00,1661.0,10.824209,10824.209 +7756,2025-03-07T23:17:40.016879-08:00,1619.0,10.839502,10839.502 +7757,2025-03-07T23:17:50.837227-08:00,1664.0,10.820348,10820.348 +7758,2025-03-07T23:18:01.669014-08:00,1705.0,10.831787,10831.787 +7759,2025-03-07T23:18:12.500962-08:00,1707.0,10.831948,10831.948 +7760,2025-03-07T23:18:23.331992-08:00,1667.0,10.83103,10831.03 +7761,2025-03-07T23:18:34.163208-08:00,1677.0,10.831216,10831.216 +7762,2025-03-07T23:18:44.996355-08:00,1715.0,10.833147,10833.147 +7763,2025-03-07T23:18:55.823071-08:00,1684.0,10.826716,10826.716 +7764,2025-03-07T23:19:06.648923-08:00,1674.0,10.825852,10825.852 +7765,2025-03-07T23:19:17.477175-08:00,1695.0,10.828252,10828.252 +7766,2025-03-07T23:19:28.306570-08:00,1712.0,10.829395,10829.395 +7767,2025-03-07T23:19:39.137340-08:00,1678.0,10.83077,10830.77 +7768,2025-03-07T23:19:49.961111-08:00,1721.0,10.823771,10823.771 +7769,2025-03-07T23:20:00.791159-08:00,1714.0,10.830048,10830.048 +7770,2025-03-07T23:20:11.622590-08:00,1633.0,10.831431,10831.431 +7771,2025-03-07T23:20:22.457964-08:00,1699.0,10.835374,10835.374 +7772,2025-03-07T23:20:33.282581-08:00,1717.0,10.824617,10824.617 +7773,2025-03-07T23:20:44.117471-08:00,1697.0,10.83489,10834.89 +7774,2025-03-07T23:20:54.952969-08:00,1706.0,10.835498,10835.498 +7775,2025-03-07T23:21:05.786054-08:00,1708.0,10.833085,10833.085 +7776,2025-03-07T23:21:16.617156-08:00,1674.0,10.831102,10831.102 +7777,2025-03-07T23:21:27.444200-08:00,1645.0,10.827044,10827.044 +7778,2025-03-07T23:21:38.273977-08:00,1680.0,10.829777,10829.777 +7779,2025-03-07T23:21:49.112316-08:00,1647.0,10.838339,10838.339 +7780,2025-03-07T23:21:59.938979-08:00,1620.0,10.826663,10826.663 +7781,2025-03-07T23:22:10.776316-08:00,1641.0,10.837337,10837.337 +7782,2025-03-07T23:22:21.593979-08:00,1695.0,10.817663,10817.663 +7783,2025-03-07T23:22:32.429514-08:00,1627.0,10.835535,10835.535 +7784,2025-03-07T23:22:43.258969-08:00,1633.0,10.829455,10829.455 +7785,2025-03-07T23:22:54.081244-08:00,1712.0,10.822275,10822.275 +7786,2025-03-07T23:23:04.911980-08:00,1716.0,10.830736,10830.736 +7787,2025-03-07T23:23:26.570130-08:00,1681.0,21.65815,21658.15 +7788,2025-03-07T23:23:37.399228-08:00,1689.0,10.829098,10829.098 +7789,2025-03-07T23:23:59.065172-08:00,1702.0,21.665944,21665.944 +7790,2025-03-07T23:24:09.889988-08:00,1621.0,10.824816,10824.816 +7791,2025-03-07T23:24:20.717924-08:00,1646.0,10.827936,10827.936 +7792,2025-03-07T23:24:31.536980-08:00,1682.0,10.819056,10819.056 +7793,2025-03-07T23:24:42.371287-08:00,1691.0,10.834307,10834.307 +7794,2025-03-07T23:24:53.194157-08:00,1646.0,10.82287,10822.87 +7795,2025-03-07T23:25:04.023200-08:00,1719.0,10.829043,10829.043 +7796,2025-03-07T23:25:14.846965-08:00,1675.0,10.823765,10823.765 +7797,2025-03-07T23:25:25.685146-08:00,1707.0,10.838181,10838.181 +7798,2025-03-07T23:25:36.507111-08:00,1675.0,10.821965,10821.965 +7799,2025-03-07T23:25:47.332211-08:00,1631.0,10.8251,10825.1 +7800,2025-03-07T23:25:58.164149-08:00,1664.0,10.831938,10831.938 +7801,2025-03-07T23:26:08.982034-08:00,1689.0,10.817885,10817.885 +7802,2025-03-07T23:26:19.814231-08:00,1621.0,10.832197,10832.197 +7803,2025-03-07T23:26:30.635430-08:00,1693.0,10.821199,10821.199 +7804,2025-03-07T23:26:41.462002-08:00,1717.0,10.826572,10826.572 +7805,2025-03-07T23:26:52.282032-08:00,1637.0,10.82003,10820.03 +7806,2025-03-07T23:27:03.107080-08:00,1717.0,10.825048,10825.048 +7807,2025-03-07T23:27:13.936979-08:00,1645.0,10.829899,10829.899 +7808,2025-03-07T23:27:24.755234-08:00,1698.0,10.818255,10818.255 +7809,2025-03-07T23:27:35.579390-08:00,1719.0,10.824156,10824.156 +7810,2025-03-07T23:27:46.402226-08:00,1712.0,10.822836,10822.836 +7811,2025-03-07T23:27:57.226974-08:00,1723.0,10.824748,10824.748 +7812,2025-03-07T23:28:08.044232-08:00,1679.0,10.817258,10817.258 +7813,2025-03-07T23:28:18.873034-08:00,1696.0,10.828802,10828.802 +7814,2025-03-07T23:28:29.700310-08:00,1724.0,10.827276,10827.276 +7815,2025-03-07T23:28:40.516371-08:00,1671.0,10.816061,10816.061 +7816,2025-03-07T23:28:51.343035-08:00,1648.0,10.826664,10826.664 +7817,2025-03-07T23:29:02.161248-08:00,1707.0,10.818213,10818.213 +7818,2025-03-07T23:29:12.979322-08:00,1677.0,10.818074,10818.074 +7819,2025-03-07T23:29:23.795499-08:00,1680.0,10.816177,10816.177 +7820,2025-03-07T23:29:34.620784-08:00,1712.0,10.825285,10825.285 +7821,2025-03-07T23:29:45.431467-08:00,1648.0,10.810683,10810.683 +7822,2025-03-07T23:29:56.252238-08:00,1709.0,10.820771,10820.771 +7823,2025-03-07T23:30:07.072021-08:00,1703.0,10.819783,10819.783 +7824,2025-03-07T23:30:17.895341-08:00,1641.0,10.82332,10823.32 +7825,2025-03-07T23:30:28.717196-08:00,1680.0,10.821855,10821.855 +7826,2025-03-07T23:30:39.530960-08:00,1673.0,10.813764,10813.764 +7827,2025-03-07T23:30:50.346974-08:00,1683.0,10.816014,10816.014 +7828,2025-03-07T23:31:01.176281-08:00,1671.0,10.829307,10829.307 +7829,2025-03-07T23:31:11.998094-08:00,1717.0,10.821813,10821.813 +7830,2025-03-07T23:31:22.812808-08:00,1695.0,10.814714,10814.714 +7831,2025-03-07T23:31:33.637956-08:00,1655.0,10.825148,10825.148 +7832,2025-03-07T23:31:44.460026-08:00,1744.0,10.82207,10822.07 +7833,2025-03-07T23:31:55.279444-08:00,1744.0,10.819418,10819.418 +7834,2025-03-07T23:32:06.109975-08:00,1693.0,10.830531,10830.531 +7835,2025-03-07T23:32:16.927937-08:00,1695.0,10.817962,10817.962 +7836,2025-03-07T23:32:27.759996-08:00,1719.0,10.832059,10832.059 +7837,2025-03-07T23:32:38.571022-08:00,1723.0,10.811026,10811.026 +7838,2025-03-07T23:32:49.403982-08:00,1679.0,10.83296,10832.96 +7839,2025-03-07T23:33:00.212975-08:00,1703.0,10.808993,10808.993 +7840,2025-03-07T23:33:11.037972-08:00,1723.0,10.824997,10824.997 +7841,2025-03-07T23:33:21.859984-08:00,1667.0,10.822012,10822.012 +7842,2025-03-07T23:33:32.668539-08:00,1678.0,10.808555,10808.555 +7843,2025-03-07T23:33:43.491858-08:00,1726.0,10.823319,10823.319 +7844,2025-03-07T23:33:54.304300-08:00,1679.0,10.812442,10812.442 +7845,2025-03-07T23:34:05.127314-08:00,1643.0,10.823014,10823.014 +7846,2025-03-07T23:34:15.947245-08:00,1646.0,10.819931,10819.931 +7847,2025-03-07T23:34:26.765050-08:00,1659.0,10.817805,10817.805 +7848,2025-03-07T23:34:37.585308-08:00,1633.0,10.820258,10820.258 +7849,2025-03-07T23:34:48.410209-08:00,1723.0,10.824901,10824.901 +7850,2025-03-07T23:34:59.219967-08:00,1647.0,10.809758,10809.758 +7851,2025-03-07T23:35:10.041281-08:00,1651.0,10.821314,10821.314 +7852,2025-03-07T23:35:20.861031-08:00,1727.0,10.81975,10819.75 +7853,2025-03-07T23:35:31.678977-08:00,1680.0,10.817946,10817.946 +7854,2025-03-07T23:35:42.495419-08:00,1706.0,10.816442,10816.442 +7855,2025-03-07T23:35:53.310520-08:00,1710.0,10.815101,10815.101 +7856,2025-03-07T23:36:04.130951-08:00,1664.0,10.820431,10820.431 +7857,2025-03-07T23:36:14.951120-08:00,1726.0,10.820169,10820.169 +7858,2025-03-07T23:36:25.772147-08:00,1693.0,10.821027,10821.027 +7859,2025-03-07T23:36:36.585958-08:00,1715.0,10.813811,10813.811 +7860,2025-03-07T23:36:47.401223-08:00,1685.0,10.815265,10815.265 +7861,2025-03-07T23:36:58.215509-08:00,1694.0,10.814286,10814.286 +7862,2025-03-07T23:37:09.035554-08:00,1712.0,10.820045,10820.045 +7863,2025-03-07T23:37:19.849045-08:00,1722.0,10.813491,10813.491 +7864,2025-03-07T23:37:30.676018-08:00,1716.0,10.826973,10826.973 +7865,2025-03-07T23:37:41.492450-08:00,1701.0,10.816432,10816.432 +7866,2025-03-07T23:37:52.310979-08:00,1651.0,10.818529,10818.529 +7867,2025-03-07T23:38:03.126219-08:00,1710.0,10.81524,10815.24 +7868,2025-03-07T23:38:13.945247-08:00,1680.0,10.819028,10819.028 +7869,2025-03-07T23:38:24.772340-08:00,1722.0,10.827093,10827.093 +7870,2025-03-07T23:38:35.586974-08:00,1726.0,10.814634,10814.634 +7871,2025-03-07T23:38:46.407267-08:00,1680.0,10.820293,10820.293 +7872,2025-03-07T23:38:57.225967-08:00,1697.0,10.8187,10818.7 +7873,2025-03-07T23:39:08.048974-08:00,1665.0,10.823007,10823.007 +7874,2025-03-07T23:39:18.868972-08:00,1648.0,10.819998,10819.998 +7875,2025-03-07T23:39:29.682968-08:00,1694.0,10.813996,10813.996 +7876,2025-03-07T23:39:40.496975-08:00,1649.0,10.814007,10814.007 +7877,2025-03-07T23:39:51.323246-08:00,1715.0,10.826271,10826.271 +7878,2025-03-07T23:40:02.139283-08:00,1642.0,10.816037,10816.037 +7879,2025-03-07T23:40:12.952183-08:00,1701.0,10.8129,10812.9 +7880,2025-03-07T23:40:23.762019-08:00,1725.0,10.809836,10809.836 +7881,2025-03-07T23:40:34.578225-08:00,1714.0,10.816206,10816.206 +7882,2025-03-07T23:40:45.401960-08:00,1680.0,10.823735,10823.735 +7883,2025-03-07T23:40:56.218231-08:00,1686.0,10.816271,10816.271 +7884,2025-03-07T23:41:07.036207-08:00,1694.0,10.817976,10817.976 +7885,2025-03-07T23:41:17.845031-08:00,1679.0,10.808824,10808.824 +7886,2025-03-07T23:41:28.655158-08:00,1669.0,10.810127,10810.127 +7887,2025-03-07T23:41:39.485962-08:00,1709.0,10.830804,10830.804 +7888,2025-03-07T23:41:50.301217-08:00,1648.0,10.815255,10815.255 +7889,2025-03-07T23:42:01.123216-08:00,1639.0,10.821999,10821.999 +7890,2025-03-07T23:42:11.948268-08:00,1678.0,10.825052,10825.052 +7891,2025-03-07T23:42:22.773979-08:00,1711.0,10.825711,10825.711 +7892,2025-03-07T23:42:33.595023-08:00,1728.0,10.821044,10821.044 +7893,2025-03-07T23:42:44.409977-08:00,1725.0,10.814954,10814.954 +7894,2025-03-07T23:42:55.231960-08:00,1642.0,10.821983,10821.983 +7895,2025-03-07T23:43:06.050495-08:00,1635.0,10.818535,10818.535 +7896,2025-03-07T23:43:16.870478-08:00,1712.0,10.819983,10819.983 +7897,2025-03-07T23:43:27.689971-08:00,1727.0,10.819493,10819.493 +7898,2025-03-07T23:43:38.511257-08:00,1727.0,10.821286,10821.286 +7899,2025-03-07T23:43:49.326984-08:00,1715.0,10.815727,10815.727 +7900,2025-03-07T23:44:00.145953-08:00,1677.0,10.818969,10818.969 +7901,2025-03-07T23:44:10.967281-08:00,1725.0,10.821328,10821.328 +7902,2025-03-07T23:44:21.786971-08:00,1707.0,10.81969,10819.69 +7903,2025-03-07T23:44:32.616972-08:00,1647.0,10.830001,10830.001 +7904,2025-03-07T23:44:43.439969-08:00,1680.0,10.822997,10822.997 +7905,2025-03-07T23:44:54.260978-08:00,1649.0,10.821009,10821.009 +7906,2025-03-07T23:45:05.071973-08:00,1680.0,10.810995,10810.995 +7907,2025-03-07T23:45:15.899087-08:00,1721.0,10.827114,10827.114 +7908,2025-03-07T23:45:26.716161-08:00,1680.0,10.817074,10817.074 +7909,2025-03-07T23:45:37.529973-08:00,1628.0,10.813812,10813.812 +7910,2025-03-07T23:45:48.349074-08:00,1725.0,10.819101,10819.101 +7911,2025-03-07T23:45:59.171963-08:00,1645.0,10.822889,10822.889 +7912,2025-03-07T23:46:09.988973-08:00,1693.0,10.81701,10817.01 +7913,2025-03-07T23:46:20.801973-08:00,1687.0,10.813,10813.0 +7914,2025-03-07T23:46:31.625012-08:00,1719.0,10.823039,10823.039 +7915,2025-03-07T23:46:42.440960-08:00,1728.0,10.815948,10815.948 +7916,2025-03-07T23:46:53.265151-08:00,1728.0,10.824191,10824.191 +7917,2025-03-07T23:47:04.075942-08:00,1685.0,10.810791,10810.791 +7918,2025-03-07T23:47:14.890154-08:00,1635.0,10.814212,10814.212 +7919,2025-03-07T23:47:25.700959-08:00,1675.0,10.810805,10810.805 +7920,2025-03-07T23:47:36.516207-08:00,1728.0,10.815248,10815.248 +7921,2025-03-07T23:47:47.333416-08:00,1711.0,10.817209,10817.209 +7922,2025-03-07T23:47:58.142293-08:00,1728.0,10.808877,10808.877 +7923,2025-03-07T23:48:08.958974-08:00,1657.0,10.816681,10816.681 +7924,2025-03-07T23:48:19.771179-08:00,1680.0,10.812205,10812.205 +7925,2025-03-07T23:48:30.589607-08:00,1728.0,10.818428,10818.428 +7926,2025-03-07T23:48:41.395963-08:00,1728.0,10.806356,10806.356 +7927,2025-03-07T23:48:52.203963-08:00,1695.0,10.808,10808.0 +7928,2025-03-07T23:49:03.030992-08:00,1695.0,10.827029,10827.029 +7929,2025-03-07T23:49:13.840246-08:00,1695.0,10.809254,10809.254 +7930,2025-03-07T23:49:24.655192-08:00,1725.0,10.814946,10814.946 +7931,2025-03-07T23:49:35.469014-08:00,1669.0,10.813822,10813.822 +7932,2025-03-07T23:49:46.296110-08:00,1728.0,10.827096,10827.096 +7933,2025-03-07T23:49:57.110973-08:00,1637.0,10.814863,10814.863 +7934,2025-03-07T23:50:07.929008-08:00,1712.0,10.818035,10818.035 +7935,2025-03-07T23:50:18.738557-08:00,1631.0,10.809549,10809.549 +7936,2025-03-07T23:50:29.556219-08:00,1689.0,10.817662,10817.662 +7937,2025-03-07T23:50:40.379975-08:00,1674.0,10.823756,10823.756 +7938,2025-03-07T23:50:51.198838-08:00,1711.0,10.818863,10818.863 +7939,2025-03-07T23:51:02.016178-08:00,1616.0,10.81734,10817.34 +7940,2025-03-07T23:51:12.833985-08:00,1665.0,10.817807,10817.807 +7941,2025-03-07T23:51:23.655979-08:00,1671.0,10.821994,10821.994 +7942,2025-03-07T23:51:34.476969-08:00,1637.0,10.82099,10820.99 +7943,2025-03-07T23:51:45.298970-08:00,1653.0,10.822001,10822.001 +7944,2025-03-07T23:51:56.112970-08:00,1725.0,10.814,10814.0 +7945,2025-03-07T23:52:06.933314-08:00,1715.0,10.820344,10820.344 +7946,2025-03-07T23:52:17.747211-08:00,1717.0,10.813897,10813.897 +7947,2025-03-07T23:52:28.560208-08:00,1725.0,10.812997,10812.997 +7948,2025-03-07T23:52:39.381009-08:00,1633.0,10.820801,10820.801 +7949,2025-03-07T23:52:50.203438-08:00,1698.0,10.822429,10822.429 +7950,2025-03-07T23:53:01.023124-08:00,1711.0,10.819686,10819.686 +7951,2025-03-07T23:53:11.831956-08:00,1685.0,10.808832,10808.832 +7952,2025-03-07T23:53:22.661462-08:00,1706.0,10.829506,10829.506 +7953,2025-03-07T23:53:33.477171-08:00,1668.0,10.815709,10815.709 +7954,2025-03-07T23:53:44.291162-08:00,1728.0,10.813991,10813.991 +7955,2025-03-07T23:53:55.110752-08:00,1631.0,10.81959,10819.59 +7956,2025-03-07T23:54:05.927149-08:00,1649.0,10.816397,10816.397 +7957,2025-03-07T23:54:16.741155-08:00,1728.0,10.814006,10814.006 +7958,2025-03-07T23:54:27.552329-08:00,1716.0,10.811174,10811.174 +7959,2025-03-07T23:54:38.367386-08:00,1729.0,10.815057,10815.057 +7960,2025-03-07T23:54:49.185049-08:00,1686.0,10.817663,10817.663 +7961,2025-03-07T23:54:59.994978-08:00,1690.0,10.809929,10809.929 +7962,2025-03-07T23:55:10.815196-08:00,1710.0,10.820218,10820.218 +7963,2025-03-07T23:55:21.633019-08:00,1678.0,10.817823,10817.823 +7964,2025-03-07T23:55:32.451287-08:00,1688.0,10.818268,10818.268 +7965,2025-03-07T23:55:43.258490-08:00,1703.0,10.807203,10807.203 +7966,2025-03-07T23:55:54.073229-08:00,1697.0,10.814739,10814.739 +7967,2025-03-07T23:56:04.891023-08:00,1713.0,10.817794,10817.794 +7968,2025-03-07T23:56:15.706469-08:00,1642.0,10.815446,10815.446 +7969,2025-03-07T23:56:26.523978-08:00,1709.0,10.817509,10817.509 +7970,2025-03-07T23:56:37.344968-08:00,1682.0,10.82099,10820.99 +7971,2025-03-07T23:56:48.163952-08:00,1712.0,10.818984,10818.984 +7972,2025-03-07T23:56:58.975328-08:00,1728.0,10.811376,10811.376 +7973,2025-03-07T23:57:09.792972-08:00,1729.0,10.817644,10817.644 +7974,2025-03-07T23:57:20.607182-08:00,1728.0,10.81421,10814.21 +7975,2025-03-07T23:57:31.428043-08:00,1641.0,10.820861,10820.861 +7976,2025-03-07T23:57:42.243123-08:00,1730.0,10.81508,10815.08 +7977,2025-03-07T23:57:53.056359-08:00,1661.0,10.813236,10813.236 +7978,2025-03-07T23:58:03.860965-08:00,1729.0,10.804606,10804.606 +7979,2025-03-07T23:58:14.684101-08:00,1729.0,10.823136,10823.136 +7980,2025-03-07T23:58:25.490980-08:00,1649.0,10.806879,10806.879 +7981,2025-03-07T23:58:36.298627-08:00,1681.0,10.807647,10807.647 +7982,2025-03-07T23:58:47.120161-08:00,1648.0,10.821534,10821.534 +7983,2025-03-07T23:58:57.928471-08:00,1681.0,10.80831,10808.31 +7984,2025-03-07T23:59:08.742131-08:00,1642.0,10.81366,10813.66 +7985,2025-03-07T23:59:19.567875-08:00,1648.0,10.825744,10825.744 +7986,2025-03-07T23:59:30.382339-08:00,1663.0,10.814464,10814.464 +7987,2025-03-07T23:59:41.202208-08:00,1690.0,10.819869,10819.869 +7988,2025-03-07T23:59:52.011975-08:00,1715.0,10.809767,10809.767 +7989,2025-03-08T00:00:02.834506-08:00,1726.0,10.822531,10822.531 +7990,2025-03-08T00:00:13.647976-08:00,1724.0,10.81347,10813.47 +7991,2025-03-08T00:00:24.456141-08:00,1703.0,10.808165,10808.165 +7992,2025-03-08T00:00:35.269192-08:00,1663.0,10.813051,10813.051 +7993,2025-03-08T00:00:46.087057-08:00,1646.0,10.817865,10817.865 +7994,2025-03-08T00:00:56.900312-08:00,1723.0,10.813255,10813.255 +7995,2025-03-08T00:01:07.710276-08:00,1668.0,10.809964,10809.964 +7996,2025-03-08T00:01:18.530014-08:00,1705.0,10.819738,10819.738 +7997,2025-03-08T00:01:29.347973-08:00,1679.0,10.817959,10817.959 +7998,2025-03-08T00:01:40.170276-08:00,1645.0,10.822303,10822.303 +7999,2025-03-08T00:01:50.984184-08:00,1728.0,10.813908,10813.908 +8000,2025-03-08T00:02:01.797197-08:00,1682.0,10.813013,10813.013 +8001,2025-03-08T00:02:12.621561-08:00,1731.0,10.824364,10824.364 +8002,2025-03-08T00:02:23.436250-08:00,1696.0,10.814689,10814.689 +8003,2025-03-08T00:02:34.255123-08:00,1731.0,10.818873,10818.873 +8004,2025-03-08T00:02:45.064984-08:00,1712.0,10.809861,10809.861 +8005,2025-03-08T00:02:55.877968-08:00,1718.0,10.812984,10812.984 +8006,2025-03-08T00:03:06.694474-08:00,1680.0,10.816506,10816.506 +8007,2025-03-08T00:03:17.508300-08:00,1673.0,10.813826,10813.826 +8008,2025-03-08T00:03:28.325034-08:00,1719.0,10.816734,10816.734 +8009,2025-03-08T00:03:39.138198-08:00,1680.0,10.813164,10813.164 +8010,2025-03-08T00:03:49.951979-08:00,1647.0,10.813781,10813.781 +8011,2025-03-08T00:04:00.766279-08:00,1720.0,10.8143,10814.3 +8012,2025-03-08T00:04:11.589116-08:00,1656.0,10.822837,10822.837 +8013,2025-03-08T00:04:22.402978-08:00,1731.0,10.813862,10813.862 +8014,2025-03-08T00:04:33.221505-08:00,1728.0,10.818527,10818.527 +8015,2025-03-08T00:04:44.031054-08:00,1721.0,10.809549,10809.549 +8016,2025-03-08T00:04:54.857045-08:00,1645.0,10.825991,10825.991 +8017,2025-03-08T00:05:05.666216-08:00,1721.0,10.809171,10809.171 +8018,2025-03-08T00:05:16.481213-08:00,1639.0,10.814997,10814.997 +8019,2025-03-08T00:05:27.300990-08:00,1719.0,10.819777,10819.777 +8020,2025-03-08T00:05:38.087932-08:00,1695.0,10.786942,10786.942 +8021,2025-03-08T00:05:48.913888-08:00,1655.0,10.825956,10825.956 +8022,2025-03-08T00:05:59.721069-08:00,1666.0,10.807181,10807.181 +8023,2025-03-08T00:06:10.548091-08:00,1725.0,10.827022,10827.022 +8024,2025-03-08T00:06:21.350888-08:00,1729.0,10.802797,10802.797 +8025,2025-03-08T00:06:32.170115-08:00,1681.0,10.819227,10819.227 +8026,2025-03-08T00:06:42.986087-08:00,1724.0,10.815972,10815.972 +8027,2025-03-08T00:06:53.799761-08:00,1643.0,10.813674,10813.674 +8028,2025-03-08T00:07:04.609216-08:00,1723.0,10.809455,10809.455 +8029,2025-03-08T00:07:15.428887-08:00,1713.0,10.819671,10819.671 +8030,2025-03-08T00:07:26.238882-08:00,1706.0,10.809995,10809.995 +8031,2025-03-08T00:07:37.053112-08:00,1706.0,10.81423,10814.23 +8032,2025-03-08T00:07:47.875325-08:00,1712.0,10.822213,10822.213 +8033,2025-03-08T00:07:58.693035-08:00,1727.0,10.81771,10817.71 +8034,2025-03-08T00:08:09.503115-08:00,1680.0,10.81008,10810.08 +8035,2025-03-08T00:08:20.322284-08:00,1731.0,10.819169,10819.169 +8036,2025-03-08T00:08:31.137940-08:00,1636.0,10.815656,10815.656 +8037,2025-03-08T00:08:41.954875-08:00,1659.0,10.816935,10816.935 +8038,2025-03-08T00:08:52.768881-08:00,1723.0,10.814006,10814.006 +8039,2025-03-08T00:09:03.587446-08:00,1711.0,10.818565,10818.565 +8040,2025-03-08T00:09:14.407147-08:00,1680.0,10.819701,10819.701 +8041,2025-03-08T00:09:25.221888-08:00,1731.0,10.814741,10814.741 +8042,2025-03-08T00:09:36.037169-08:00,1719.0,10.815281,10815.281 +8043,2025-03-08T00:09:46.854215-08:00,1665.0,10.817046,10817.046 +8044,2025-03-08T00:09:57.667287-08:00,1653.0,10.813072,10813.072 +8045,2025-03-08T00:10:08.486944-08:00,1697.0,10.819657,10819.657 +8046,2025-03-08T00:10:19.302216-08:00,1648.0,10.815272,10815.272 +8047,2025-03-08T00:10:30.111309-08:00,1700.0,10.809093,10809.093 +8048,2025-03-08T00:10:40.925214-08:00,1712.0,10.813905,10813.905 +8049,2025-03-08T00:10:51.740313-08:00,1727.0,10.815099,10815.099 +8050,2025-03-08T00:11:02.561119-08:00,1728.0,10.820806,10820.806 +8051,2025-03-08T00:11:13.374745-08:00,1709.0,10.813626,10813.626 +8052,2025-03-08T00:11:24.190394-08:00,1648.0,10.815649,10815.649 +8053,2025-03-08T00:11:35.000207-08:00,1707.0,10.809813,10809.813 +8054,2025-03-08T00:11:45.808890-08:00,1729.0,10.808683,10808.683 +8055,2025-03-08T00:11:56.615873-08:00,1731.0,10.806983,10806.983 +8056,2025-03-08T00:12:07.437885-08:00,1716.0,10.822012,10822.012 +8057,2025-03-08T00:12:18.251515-08:00,1731.0,10.81363,10813.63 +8058,2025-03-08T00:12:29.060350-08:00,1725.0,10.808835,10808.835 +8059,2025-03-08T00:12:39.867269-08:00,1695.0,10.806919,10806.919 +8060,2025-03-08T00:12:50.673882-08:00,1643.0,10.806613,10806.613 +8061,2025-03-08T00:13:01.483536-08:00,1699.0,10.809654,10809.654 +8062,2025-03-08T00:13:12.293884-08:00,1643.0,10.810348,10810.348 +8063,2025-03-08T00:13:23.104239-08:00,1731.0,10.810355,10810.355 +8064,2025-03-08T00:13:33.919016-08:00,1734.0,10.814777,10814.777 +8065,2025-03-08T00:13:44.729599-08:00,1648.0,10.810583,10810.583 +8066,2025-03-08T00:13:55.545206-08:00,1652.0,10.815607,10815.607 +8067,2025-03-08T00:14:06.350883-08:00,1674.0,10.805677,10805.677 +8068,2025-03-08T00:14:17.161903-08:00,1731.0,10.81102,10811.02 +8069,2025-03-08T00:14:27.966088-08:00,1691.0,10.804185,10804.185 +8070,2025-03-08T00:14:38.778923-08:00,1712.0,10.812835,10812.835 +8071,2025-03-08T00:14:49.594191-08:00,1651.0,10.815268,10815.268 +8072,2025-03-08T00:15:00.404210-08:00,1689.0,10.810019,10810.019 +8073,2025-03-08T00:15:11.211953-08:00,1726.0,10.807743,10807.743 +8074,2025-03-08T00:15:22.021876-08:00,1648.0,10.809923,10809.923 +8075,2025-03-08T00:15:32.840946-08:00,1642.0,10.81907,10819.07 +8076,2025-03-08T00:15:43.655112-08:00,1659.0,10.814166,10814.166 +8077,2025-03-08T00:15:54.458103-08:00,1683.0,10.802991,10802.991 +8078,2025-03-08T00:16:05.280472-08:00,1708.0,10.822369,10822.369 +8079,2025-03-08T00:16:16.084168-08:00,1734.0,10.803696,10803.696 +8080,2025-03-08T00:16:26.903890-08:00,1651.0,10.819722,10819.722 +8081,2025-03-08T00:16:37.710107-08:00,1722.0,10.806217,10806.217 +8082,2025-03-08T00:16:48.528870-08:00,1733.0,10.818763,10818.763 +8083,2025-03-08T00:16:59.340695-08:00,1687.0,10.811825,10811.825 +8084,2025-03-08T00:17:10.155151-08:00,1670.0,10.814456,10814.456 +8085,2025-03-08T00:17:20.969878-08:00,1730.0,10.814727,10814.727 +8086,2025-03-08T00:17:31.778926-08:00,1727.0,10.809048,10809.048 +8087,2025-03-08T00:17:42.596408-08:00,1731.0,10.817482,10817.482 +8088,2025-03-08T00:17:53.414900-08:00,1731.0,10.818492,10818.492 +8089,2025-03-08T00:18:04.229890-08:00,1731.0,10.81499,10814.99 +8090,2025-03-08T00:18:15.037884-08:00,1728.0,10.807994,10807.994 +8091,2025-03-08T00:18:25.858885-08:00,1670.0,10.821001,10821.001 +8092,2025-03-08T00:18:36.673833-08:00,1691.0,10.814948,10814.948 +8093,2025-03-08T00:18:47.488152-08:00,1725.0,10.814319,10814.319 +8094,2025-03-08T00:18:58.292144-08:00,1719.0,10.803992,10803.992 +8095,2025-03-08T00:19:09.107016-08:00,1727.0,10.814872,10814.872 +8096,2025-03-08T00:19:19.914889-08:00,1714.0,10.807873,10807.873 +8097,2025-03-08T00:19:30.732884-08:00,1711.0,10.817995,10817.995 +8098,2025-03-08T00:19:41.551089-08:00,1645.0,10.818205,10818.205 +8099,2025-03-08T00:19:52.364031-08:00,1698.0,10.812942,10812.942 +8100,2025-03-08T00:20:03.171918-08:00,1728.0,10.807887,10807.887 +8101,2025-03-08T00:20:13.986883-08:00,1682.0,10.814965,10814.965 +8102,2025-03-08T00:20:24.802226-08:00,1731.0,10.815343,10815.343 +8103,2025-03-08T00:20:35.623234-08:00,1723.0,10.821008,10821.008 +8104,2025-03-08T00:20:46.426033-08:00,1706.0,10.802799,10802.799 +8105,2025-03-08T00:20:57.242884-08:00,1661.0,10.816851,10816.851 +8106,2025-03-08T00:21:08.056131-08:00,1733.0,10.813247,10813.247 +8107,2025-03-08T00:21:18.869980-08:00,1730.0,10.813849,10813.849 +8108,2025-03-08T00:21:29.676059-08:00,1683.0,10.806079,10806.079 +8109,2025-03-08T00:21:40.489084-08:00,1659.0,10.813025,10813.025 +8110,2025-03-08T00:21:51.310245-08:00,1731.0,10.821161,10821.161 +8111,2025-03-08T00:22:02.116883-08:00,1678.0,10.806638,10806.638 +8112,2025-03-08T00:22:12.926093-08:00,1680.0,10.80921,10809.21 +8113,2025-03-08T00:22:23.733888-08:00,1731.0,10.807795,10807.795 +8114,2025-03-08T00:22:34.534886-08:00,1729.0,10.800998,10800.998 +8115,2025-03-08T00:22:45.339881-08:00,1651.0,10.804995,10804.995 +8116,2025-03-08T00:22:56.154844-08:00,1689.0,10.814963,10814.963 +8117,2025-03-08T00:23:06.959733-08:00,1699.0,10.804889,10804.889 +8118,2025-03-08T00:23:17.764317-08:00,1661.0,10.804584,10804.584 +8119,2025-03-08T00:23:28.578249-08:00,1649.0,10.813932,10813.932 +8120,2025-03-08T00:23:39.390342-08:00,1680.0,10.812093,10812.093 +8121,2025-03-08T00:23:50.206128-08:00,1721.0,10.815786,10815.786 +8122,2025-03-08T00:24:01.015197-08:00,1730.0,10.809069,10809.069 +8123,2025-03-08T00:24:11.824089-08:00,1729.0,10.808892,10808.892 +8124,2025-03-08T00:24:22.637153-08:00,1676.0,10.813064,10813.064 +8125,2025-03-08T00:24:33.459104-08:00,1650.0,10.821951,10821.951 +8126,2025-03-08T00:24:44.269112-08:00,1734.0,10.810008,10810.008 +8127,2025-03-08T00:24:55.083106-08:00,1735.0,10.813994,10813.994 +8128,2025-03-08T00:25:05.894228-08:00,1696.0,10.811122,10811.122 +8129,2025-03-08T00:25:16.714269-08:00,1715.0,10.820041,10820.041 +8130,2025-03-08T00:25:27.517891-08:00,1723.0,10.803622,10803.622 +8131,2025-03-08T00:25:38.327892-08:00,1734.0,10.810001,10810.001 +8132,2025-03-08T00:25:49.139887-08:00,1700.0,10.811995,10811.995 +8133,2025-03-08T00:25:59.951627-08:00,1703.0,10.81174,10811.74 +8134,2025-03-08T00:26:10.763085-08:00,1717.0,10.811458,10811.458 +8135,2025-03-08T00:26:21.574550-08:00,1689.0,10.811465,10811.465 +8136,2025-03-08T00:26:32.391201-08:00,1733.0,10.816651,10816.651 +8137,2025-03-08T00:26:43.196865-08:00,1734.0,10.805664,10805.664 +8138,2025-03-08T00:26:54.018866-08:00,1727.0,10.822001,10822.001 +8139,2025-03-08T00:27:04.824883-08:00,1732.0,10.806017,10806.017 +8140,2025-03-08T00:27:15.643623-08:00,1729.0,10.81874,10818.74 +8141,2025-03-08T00:27:26.451246-08:00,1698.0,10.807623,10807.623 +8142,2025-03-08T00:27:37.253281-08:00,1731.0,10.802035,10802.035 +8143,2025-03-08T00:27:48.062590-08:00,1728.0,10.809309,10809.309 +8144,2025-03-08T00:27:58.879300-08:00,1730.0,10.81671,10816.71 +8145,2025-03-08T00:28:09.686879-08:00,1722.0,10.807579,10807.579 +8146,2025-03-08T00:28:20.494881-08:00,1695.0,10.808002,10808.002 +8147,2025-03-08T00:28:31.303886-08:00,1693.0,10.809005,10809.005 +8148,2025-03-08T00:28:42.110185-08:00,1638.0,10.806299,10806.299 +8149,2025-03-08T00:28:52.926240-08:00,1731.0,10.816055,10816.055 +8150,2025-03-08T00:29:03.736148-08:00,1725.0,10.809908,10809.908 +8151,2025-03-08T00:29:14.552014-08:00,1681.0,10.815866,10815.866 +8152,2025-03-08T00:29:25.355082-08:00,1737.0,10.803068,10803.068 +8153,2025-03-08T00:29:36.170143-08:00,1715.0,10.815061,10815.061 +8154,2025-03-08T00:29:46.971889-08:00,1715.0,10.801746,10801.746 +8155,2025-03-08T00:29:57.787877-08:00,1694.0,10.815988,10815.988 +8156,2025-03-08T00:30:08.597220-08:00,1682.0,10.809343,10809.343 +8157,2025-03-08T00:30:19.406013-08:00,1719.0,10.808793,10808.793 +8158,2025-03-08T00:30:30.218149-08:00,1723.0,10.812136,10812.136 +8159,2025-03-08T00:30:41.029590-08:00,1655.0,10.811441,10811.441 +8160,2025-03-08T00:30:51.832877-08:00,1650.0,10.803287,10803.287 +8161,2025-03-08T00:31:02.642220-08:00,1729.0,10.809343,10809.343 +8162,2025-03-08T00:31:13.448107-08:00,1737.0,10.805887,10805.887 +8163,2025-03-08T00:31:24.261937-08:00,1728.0,10.81383,10813.83 +8164,2025-03-08T00:31:35.080152-08:00,1667.0,10.818215,10818.215 +8165,2025-03-08T00:31:45.886087-08:00,1707.0,10.805935,10805.935 +8166,2025-03-08T00:31:56.696943-08:00,1655.0,10.810856,10810.856 +8167,2025-03-08T00:32:07.516442-08:00,1649.0,10.819499,10819.499 +8168,2025-03-08T00:32:18.319866-08:00,1686.0,10.803424,10803.424 +8169,2025-03-08T00:32:29.139740-08:00,1729.0,10.819874,10819.874 +8170,2025-03-08T00:32:39.946241-08:00,1696.0,10.806501,10806.501 +8171,2025-03-08T00:32:50.765445-08:00,1669.0,10.819204,10819.204 +8172,2025-03-08T00:33:01.573881-08:00,1722.0,10.808436,10808.436 +8173,2025-03-08T00:33:12.382873-08:00,1728.0,10.808992,10808.992 +8174,2025-03-08T00:33:23.197887-08:00,1723.0,10.815014,10815.014 +8175,2025-03-08T00:33:34.010177-08:00,1703.0,10.81229,10812.29 +8176,2025-03-08T00:33:44.821193-08:00,1648.0,10.811016,10811.016 +8177,2025-03-08T00:33:55.635090-08:00,1725.0,10.813897,10813.897 +8178,2025-03-08T00:34:06.438362-08:00,1712.0,10.803272,10803.272 +8179,2025-03-08T00:34:17.245859-08:00,1671.0,10.807497,10807.497 +8180,2025-03-08T00:34:28.061887-08:00,1689.0,10.816028,10816.028 +8181,2025-03-08T00:34:38.866959-08:00,1696.0,10.805072,10805.072 +8182,2025-03-08T00:34:49.675038-08:00,1691.0,10.808079,10808.079 +8183,2025-03-08T00:35:00.488654-08:00,1727.0,10.813616,10813.616 +8184,2025-03-08T00:35:11.304878-08:00,1693.0,10.816224,10816.224 +8185,2025-03-08T00:35:22.113648-08:00,1690.0,10.80877,10808.77 +8186,2025-03-08T00:35:32.921862-08:00,1728.0,10.808214,10808.214 +8187,2025-03-08T00:35:43.731989-08:00,1680.0,10.810127,10810.127 +8188,2025-03-08T00:35:54.545222-08:00,1653.0,10.813233,10813.233 +8189,2025-03-08T00:36:05.354960-08:00,1649.0,10.809738,10809.738 +8190,2025-03-08T00:36:16.158879-08:00,1733.0,10.803919,10803.919 +8191,2025-03-08T00:36:26.972195-08:00,1717.0,10.813316,10813.316 +8192,2025-03-08T00:36:37.788064-08:00,1695.0,10.815869,10815.869 +8193,2025-03-08T00:36:48.602079-08:00,1730.0,10.814015,10814.015 +8194,2025-03-08T00:36:59.410877-08:00,1728.0,10.808798,10808.798 +8195,2025-03-08T00:37:10.223024-08:00,1735.0,10.812147,10812.147 +8196,2025-03-08T00:37:21.025045-08:00,1713.0,10.802021,10802.021 +8197,2025-03-08T00:37:31.832363-08:00,1695.0,10.807318,10807.318 +8198,2025-03-08T00:37:42.651458-08:00,1639.0,10.819095,10819.095 +8199,2025-03-08T00:37:53.459278-08:00,1655.0,10.80782,10807.82 +8200,2025-03-08T00:38:04.270973-08:00,1711.0,10.811695,10811.695 +8201,2025-03-08T00:38:15.078879-08:00,1694.0,10.807906,10807.906 +8202,2025-03-08T00:38:25.882120-08:00,1734.0,10.803241,10803.241 +8203,2025-03-08T00:38:36.690970-08:00,1674.0,10.80885,10808.85 +8204,2025-03-08T00:38:47.494871-08:00,1671.0,10.803901,10803.901 +8205,2025-03-08T00:38:58.298962-08:00,1731.0,10.804091,10804.091 +8206,2025-03-08T00:39:09.106124-08:00,1668.0,10.807162,10807.162 +8207,2025-03-08T00:39:19.914923-08:00,1650.0,10.808799,10808.799 +8208,2025-03-08T00:39:30.719878-08:00,1739.0,10.804955,10804.955 +8209,2025-03-08T00:39:41.523421-08:00,1738.0,10.803543,10803.543 +8210,2025-03-08T00:39:52.338696-08:00,1683.0,10.815275,10815.275 +8211,2025-03-08T00:40:03.148082-08:00,1690.0,10.809386,10809.386 +8212,2025-03-08T00:40:13.956866-08:00,1737.0,10.808784,10808.784 +8213,2025-03-08T00:40:24.765019-08:00,1695.0,10.808153,10808.153 +8214,2025-03-08T00:40:35.573103-08:00,1737.0,10.808084,10808.084 +8215,2025-03-08T00:40:46.376883-08:00,1712.0,10.80378,10803.78 +8216,2025-03-08T00:40:57.185878-08:00,1733.0,10.808995,10808.995 +8217,2025-03-08T00:41:07.989879-08:00,1687.0,10.804001,10804.001 +8218,2025-03-08T00:41:18.811130-08:00,1741.0,10.821251,10821.251 +8219,2025-03-08T00:41:29.617187-08:00,1793.0,10.806057,10806.057 +8220,2025-03-08T00:41:40.417720-08:00,1784.0,10.800533,10800.533 +8221,2025-03-08T00:41:51.226206-08:00,1773.0,10.808486,10808.486 +8222,2025-03-08T00:42:02.027496-08:00,1766.0,10.80129,10801.29 +8223,2025-03-08T00:42:12.833170-08:00,1727.0,10.805674,10805.674 +8224,2025-03-08T00:42:23.640952-08:00,1777.0,10.807782,10807.782 +8225,2025-03-08T00:42:34.443239-08:00,1802.0,10.802287,10802.287 +8226,2025-03-08T00:42:45.253134-08:00,1797.0,10.809895,10809.895 +8227,2025-03-08T00:42:56.063879-08:00,1703.0,10.810745,10810.745 +8228,2025-03-08T00:43:06.869961-08:00,1791.0,10.806082,10806.082 +8229,2025-03-08T00:43:17.679173-08:00,1789.0,10.809212,10809.212 +8230,2025-03-08T00:43:28.488107-08:00,1763.0,10.808934,10808.934 +8231,2025-03-08T00:43:39.303999-08:00,1711.0,10.815892,10815.892 +8232,2025-03-08T00:43:50.110150-08:00,1757.0,10.806151,10806.151 +8233,2025-03-08T00:44:00.916162-08:00,1793.0,10.806012,10806.012 +8234,2025-03-08T00:44:11.731872-08:00,1792.0,10.81571,10815.71 +8235,2025-03-08T00:44:22.539202-08:00,1776.0,10.80733,10807.33 +8236,2025-03-08T00:44:33.350071-08:00,1776.0,10.810869,10810.869 +8237,2025-03-08T00:44:44.156861-08:00,1799.0,10.80679,10806.79 +8238,2025-03-08T00:44:54.960867-08:00,1763.0,10.804006,10804.006 +8239,2025-03-08T00:45:05.767005-08:00,1781.0,10.806138,10806.138 +8240,2025-03-08T00:45:16.577036-08:00,1765.0,10.810031,10810.031 +8241,2025-03-08T00:45:27.388761-08:00,1757.0,10.811725,10811.725 +8242,2025-03-08T00:45:38.192322-08:00,1755.0,10.803561,10803.561 +8243,2025-03-08T00:45:49.013003-08:00,1741.0,10.820681,10820.681 +8244,2025-03-08T00:45:59.819883-08:00,1765.0,10.80688,10806.88 +8245,2025-03-08T00:46:10.625075-08:00,1762.0,10.805192,10805.192 +8246,2025-03-08T00:46:21.431921-08:00,1710.0,10.806846,10806.846 +8247,2025-03-08T00:46:32.235109-08:00,1790.0,10.803188,10803.188 +8248,2025-03-08T00:46:43.037934-08:00,1715.0,10.802825,10802.825 +8249,2025-03-08T00:46:53.859663-08:00,1771.0,10.821729,10821.729 +8250,2025-03-08T00:47:04.662020-08:00,1785.0,10.802357,10802.357 +8251,2025-03-08T00:47:15.472752-08:00,1789.0,10.810732,10810.732 +8252,2025-03-08T00:47:26.288218-08:00,1777.0,10.815466,10815.466 +8253,2025-03-08T00:47:37.095038-08:00,1746.0,10.80682,10806.82 +8254,2025-03-08T00:47:47.900159-08:00,1796.0,10.805121,10805.121 +8255,2025-03-08T00:47:58.708884-08:00,1793.0,10.808725,10808.725 +8256,2025-03-08T00:48:09.512281-08:00,1781.0,10.803397,10803.397 +8257,2025-03-08T00:48:20.320883-08:00,1744.0,10.808602,10808.602 +8258,2025-03-08T00:48:31.127956-08:00,1765.0,10.807073,10807.073 +8259,2025-03-08T00:48:41.934049-08:00,1776.0,10.806093,10806.093 +8260,2025-03-08T00:48:52.746923-08:00,1746.0,10.812874,10812.874 +8261,2025-03-08T00:49:03.562391-08:00,1744.0,10.815468,10815.468 +8262,2025-03-08T00:49:14.370935-08:00,1748.0,10.808544,10808.544 +8263,2025-03-08T00:49:25.175164-08:00,1705.0,10.804229,10804.229 +8264,2025-03-08T00:49:35.984889-08:00,1776.0,10.809725,10809.725 +8265,2025-03-08T00:49:46.793880-08:00,1791.0,10.808991,10808.991 +8266,2025-03-08T00:49:57.605124-08:00,1767.0,10.811244,10811.244 +8267,2025-03-08T00:50:08.415882-08:00,1701.0,10.810758,10810.758 +8268,2025-03-08T00:50:19.229426-08:00,1785.0,10.813544,10813.544 +8269,2025-03-08T00:50:30.039244-08:00,1711.0,10.809818,10809.818 +8270,2025-03-08T00:50:40.858881-08:00,1753.0,10.819637,10819.637 +8271,2025-03-08T00:50:51.664872-08:00,1793.0,10.805991,10805.991 +8272,2025-03-08T00:51:02.477134-08:00,1748.0,10.812262,10812.262 +8273,2025-03-08T00:51:13.275072-08:00,1746.0,10.797938,10797.938 +8274,2025-03-08T00:51:24.089879-08:00,1791.0,10.814807,10814.807 +8275,2025-03-08T00:51:34.898881-08:00,1746.0,10.809002,10809.002 +8276,2025-03-08T00:51:45.715179-08:00,1744.0,10.816298,10816.298 +8277,2025-03-08T00:51:56.528253-08:00,1788.0,10.813074,10813.074 +8278,2025-03-08T00:52:07.332880-08:00,1756.0,10.804627,10804.627 +8279,2025-03-08T00:52:18.146906-08:00,1775.0,10.814026,10814.026 +8280,2025-03-08T00:52:28.949861-08:00,1699.0,10.802955,10802.955 +8281,2025-03-08T00:52:39.766873-08:00,1775.0,10.817012,10817.012 +8282,2025-03-08T00:52:50.584114-08:00,1756.0,10.817241,10817.241 +8283,2025-03-08T00:53:01.386475-08:00,1762.0,10.802361,10802.361 +8284,2025-03-08T00:53:12.197205-08:00,1761.0,10.81073,10810.73 +8285,2025-03-08T00:53:23.004887-08:00,1777.0,10.807682,10807.682 +8286,2025-03-08T00:53:33.824376-08:00,1755.0,10.819489,10819.489 +8287,2025-03-08T00:53:44.622936-08:00,1717.0,10.79856,10798.56 +8288,2025-03-08T00:53:55.427191-08:00,1791.0,10.804255,10804.255 +8289,2025-03-08T00:54:06.241009-08:00,1789.0,10.813818,10813.818 +8290,2025-03-08T00:54:17.042890-08:00,1694.0,10.801881,10801.881 +8291,2025-03-08T00:54:27.852878-08:00,1781.0,10.809988,10809.988 +8292,2025-03-08T00:54:38.655931-08:00,1783.0,10.803053,10803.053 +8293,2025-03-08T00:54:49.466098-08:00,1785.0,10.810167,10810.167 +8294,2025-03-08T00:55:00.289370-08:00,1744.0,10.823272,10823.272 +8295,2025-03-08T00:55:11.097891-08:00,1787.0,10.808521,10808.521 +8296,2025-03-08T00:55:21.915975-08:00,1776.0,10.818084,10818.084 +8297,2025-03-08T00:55:32.731715-08:00,1778.0,10.81574,10815.74 +8298,2025-03-08T00:55:43.546193-08:00,1693.0,10.814478,10814.478 +8299,2025-03-08T00:55:54.353879-08:00,1738.0,10.807686,10807.686 +8300,2025-03-08T00:56:05.173878-08:00,1790.0,10.819999,10819.999 +8301,2025-03-08T00:56:15.985016-08:00,1742.0,10.811138,10811.138 +8302,2025-03-08T00:56:26.792083-08:00,1771.0,10.807067,10807.067 +8303,2025-03-08T00:56:37.600635-08:00,1787.0,10.808552,10808.552 +8304,2025-03-08T00:56:48.409230-08:00,1706.0,10.808595,10808.595 +8305,2025-03-08T00:56:59.220234-08:00,1773.0,10.811004,10811.004 +8306,2025-03-08T00:57:10.035013-08:00,1775.0,10.814779,10814.779 +8307,2025-03-08T00:57:20.848941-08:00,1749.0,10.813928,10813.928 +8308,2025-03-08T00:57:31.662113-08:00,1783.0,10.813172,10813.172 +8309,2025-03-08T00:57:42.474220-08:00,1714.0,10.812107,10812.107 +8310,2025-03-08T00:57:53.292975-08:00,1789.0,10.818755,10818.755 +8311,2025-03-08T00:58:04.100026-08:00,1787.0,10.807051,10807.051 +8312,2025-03-08T00:58:14.921883-08:00,1767.0,10.821857,10821.857 +8313,2025-03-08T00:58:25.731886-08:00,1701.0,10.810003,10810.003 +8314,2025-03-08T00:58:36.539432-08:00,1718.0,10.807546,10807.546 +8315,2025-03-08T00:58:47.355400-08:00,1787.0,10.815968,10815.968 +8316,2025-03-08T00:58:58.157933-08:00,1767.0,10.802533,10802.533 +8317,2025-03-08T00:59:08.973256-08:00,1743.0,10.815323,10815.323 +8318,2025-03-08T00:59:19.781100-08:00,1751.0,10.807844,10807.844 +8319,2025-03-08T00:59:30.596885-08:00,1744.0,10.815785,10815.785 +8320,2025-03-08T00:59:41.412240-08:00,1755.0,10.815355,10815.355 +8321,2025-03-08T00:59:52.230889-08:00,1739.0,10.818649,10818.649 +8322,2025-03-08T01:00:03.039964-08:00,1747.0,10.809075,10809.075 +8323,2025-03-08T01:00:13.857696-08:00,1765.0,10.817732,10817.732 +8324,2025-03-08T01:00:24.663189-08:00,1741.0,10.805493,10805.493 +8325,2025-03-08T01:00:35.488267-08:00,1699.0,10.825078,10825.078 +8326,2025-03-08T01:00:46.306969-08:00,1697.0,10.818702,10818.702 +8327,2025-03-08T01:00:57.124881-08:00,1763.0,10.817912,10817.912 +8328,2025-03-08T01:01:07.933112-08:00,1705.0,10.808231,10808.231 +8329,2025-03-08T01:01:18.747443-08:00,1783.0,10.814331,10814.331 +8330,2025-03-08T01:01:29.567880-08:00,1713.0,10.820437,10820.437 +8331,2025-03-08T01:01:40.388216-08:00,1782.0,10.820336,10820.336 +8332,2025-03-08T01:01:51.196928-08:00,1745.0,10.808712,10808.712 +8333,2025-03-08T01:02:02.019210-08:00,1787.0,10.822282,10822.282 +8334,2025-03-08T01:02:12.838876-08:00,1782.0,10.819666,10819.666 +8335,2025-03-08T01:02:23.648888-08:00,1750.0,10.810012,10810.012 +8336,2025-03-08T01:02:34.468300-08:00,1719.0,10.819412,10819.412 +8337,2025-03-08T01:02:45.287028-08:00,1755.0,10.818728,10818.728 +8338,2025-03-08T01:02:56.100874-08:00,1783.0,10.813846,10813.846 +8339,2025-03-08T01:03:06.911940-08:00,1786.0,10.811066,10811.066 +8340,2025-03-08T01:03:17.720879-08:00,1694.0,10.808939,10808.939 +8341,2025-03-08T01:03:28.538158-08:00,1761.0,10.817279,10817.279 +8342,2025-03-08T01:03:39.350220-08:00,1759.0,10.812062,10812.062 +8343,2025-03-08T01:03:50.165128-08:00,1787.0,10.814908,10814.908 +8344,2025-03-08T01:04:00.975890-08:00,1783.0,10.810762,10810.762 +8345,2025-03-08T01:04:11.791888-08:00,1712.0,10.815998,10815.998 +8346,2025-03-08T01:04:22.602466-08:00,1783.0,10.810578,10810.578 +8347,2025-03-08T01:04:33.407343-08:00,1722.0,10.804877,10804.877 +8348,2025-03-08T01:04:44.227866-08:00,1782.0,10.820523,10820.523 +8349,2025-03-08T01:04:55.042885-08:00,1779.0,10.815019,10815.019 +8350,2025-03-08T01:05:05.856140-08:00,1734.0,10.813255,10813.255 +8351,2025-03-08T01:05:16.670862-08:00,1776.0,10.814722,10814.722 +8352,2025-03-08T01:05:27.477656-08:00,1787.0,10.806794,10806.794 +8353,2025-03-08T01:05:38.263790-08:00,1755.0,10.786134,10786.134 +8354,2025-03-08T01:05:49.082891-08:00,1779.0,10.819101,10819.101 +8355,2025-03-08T01:05:59.888706-08:00,1783.0,10.805815,10805.815 +8356,2025-03-08T01:06:10.713953-08:00,1759.0,10.825247,10825.247 +8357,2025-03-08T01:06:21.523821-08:00,1787.0,10.809868,10809.868 +8358,2025-03-08T01:06:32.336688-08:00,1774.0,10.812867,10812.867 +8359,2025-03-08T01:06:43.149737-08:00,1698.0,10.813049,10813.049 +8360,2025-03-08T01:06:53.960488-08:00,1781.0,10.810751,10810.751 +8361,2025-03-08T01:07:04.769705-08:00,1690.0,10.809217,10809.217 +8362,2025-03-08T01:07:15.585684-08:00,1727.0,10.815979,10815.979 +8363,2025-03-08T01:07:26.393690-08:00,1738.0,10.808006,10808.006 +8364,2025-03-08T01:07:37.205223-08:00,1783.0,10.811533,10811.533 +8365,2025-03-08T01:07:48.020664-08:00,1782.0,10.815441,10815.441 +8366,2025-03-08T01:07:58.846111-08:00,1721.0,10.825447,10825.447 +8367,2025-03-08T01:08:09.656663-08:00,1709.0,10.810552,10810.552 +8368,2025-03-08T01:08:20.466006-08:00,1741.0,10.809343,10809.343 +8369,2025-03-08T01:08:31.274821-08:00,1766.0,10.808815,10808.815 +8370,2025-03-08T01:08:42.096865-08:00,1726.0,10.822044,10822.044 +8371,2025-03-08T01:08:52.910949-08:00,1743.0,10.814084,10814.084 +8372,2025-03-08T01:09:03.727680-08:00,1771.0,10.816731,10816.731 +8373,2025-03-08T01:09:14.545795-08:00,1787.0,10.818115,10818.115 +8374,2025-03-08T01:09:25.352806-08:00,1783.0,10.807011,10807.011 +8375,2025-03-08T01:09:36.174987-08:00,1791.0,10.822181,10822.181 +8376,2025-03-08T01:09:46.995736-08:00,1692.0,10.820749,10820.749 +8377,2025-03-08T01:09:57.802773-08:00,1697.0,10.807037,10807.037 +8378,2025-03-08T01:10:08.617662-08:00,1759.0,10.814889,10814.889 +8379,2025-03-08T01:10:19.439584-08:00,1739.0,10.821922,10821.922 +8380,2025-03-08T01:10:30.249126-08:00,1783.0,10.809542,10809.542 +8381,2025-03-08T01:10:41.068022-08:00,1755.0,10.818896,10818.896 +8382,2025-03-08T01:10:51.888185-08:00,1755.0,10.820163,10820.163 +8383,2025-03-08T01:11:02.705235-08:00,1783.0,10.81705,10817.05 +8384,2025-03-08T01:11:13.517681-08:00,1790.0,10.812446,10812.446 +8385,2025-03-08T01:11:24.343910-08:00,1691.0,10.826229,10826.229 +8386,2025-03-08T01:11:35.154831-08:00,1776.0,10.810921,10810.921 +8387,2025-03-08T01:11:45.974040-08:00,1728.0,10.819209,10819.209 +8388,2025-03-08T01:11:56.790690-08:00,1773.0,10.81665,10816.65 +8389,2025-03-08T01:12:07.602570-08:00,1762.0,10.81188,10811.88 +8390,2025-03-08T01:12:18.422109-08:00,1695.0,10.819539,10819.539 +8391,2025-03-08T01:12:29.234057-08:00,1701.0,10.811948,10811.948 +8392,2025-03-08T01:12:40.056737-08:00,1726.0,10.82268,10822.68 +8393,2025-03-08T01:12:50.866684-08:00,1781.0,10.809947,10809.947 +8394,2025-03-08T01:13:01.688040-08:00,1710.0,10.821356,10821.356 +8395,2025-03-08T01:13:12.501022-08:00,1789.0,10.812982,10812.982 +8396,2025-03-08T01:13:23.320681-08:00,1776.0,10.819659,10819.659 +8397,2025-03-08T01:13:34.142062-08:00,1765.0,10.821381,10821.381 +8398,2025-03-08T01:13:44.954018-08:00,1790.0,10.811956,10811.956 +8399,2025-03-08T01:13:55.768094-08:00,1781.0,10.814076,10814.076 +8400,2025-03-08T01:14:06.587122-08:00,1693.0,10.819028,10819.028 +8401,2025-03-08T01:14:17.412690-08:00,1778.0,10.825568,10825.568 +8402,2025-03-08T01:14:28.228209-08:00,1776.0,10.815519,10815.519 +8403,2025-03-08T01:14:39.051734-08:00,1743.0,10.823525,10823.525 +8404,2025-03-08T01:14:49.866860-08:00,1747.0,10.815126,10815.126 +8405,2025-03-08T01:15:00.682211-08:00,1748.0,10.815351,10815.351 +8406,2025-03-08T01:15:11.503262-08:00,1779.0,10.821051,10821.051 +8407,2025-03-08T01:15:22.317902-08:00,1733.0,10.81464,10814.64 +8408,2025-03-08T01:15:33.131712-08:00,1782.0,10.81381,10813.81 +8409,2025-03-08T01:15:43.953034-08:00,1743.0,10.821322,10821.322 +8410,2025-03-08T01:15:54.761685-08:00,1718.0,10.808651,10808.651 +8411,2025-03-08T01:16:05.581683-08:00,1717.0,10.819998,10819.998 +8412,2025-03-08T01:16:16.391681-08:00,1770.0,10.809998,10809.998 +8413,2025-03-08T01:16:27.208944-08:00,1749.0,10.817263,10817.263 +8414,2025-03-08T01:16:38.033763-08:00,1699.0,10.824819,10824.819 +8415,2025-03-08T01:16:48.838833-08:00,1691.0,10.80507,10805.07 +8416,2025-03-08T01:16:59.653727-08:00,1779.0,10.814894,10814.894 +8417,2025-03-08T01:17:10.481015-08:00,1773.0,10.827288,10827.288 +8418,2025-03-08T01:17:21.289684-08:00,1781.0,10.808669,10808.669 +8419,2025-03-08T01:17:32.111448-08:00,1712.0,10.821764,10821.764 +8420,2025-03-08T01:17:42.925679-08:00,1780.0,10.814231,10814.231 +8421,2025-03-08T01:17:53.743004-08:00,1744.0,10.817325,10817.325 +8422,2025-03-08T01:18:04.558230-08:00,1775.0,10.815226,10815.226 +8423,2025-03-08T01:18:15.380347-08:00,1727.0,10.822117,10822.117 +8424,2025-03-08T01:18:26.190976-08:00,1779.0,10.810629,10810.629 +8425,2025-03-08T01:18:37.005174-08:00,1691.0,10.814198,10814.198 +8426,2025-03-08T01:18:47.822668-08:00,1727.0,10.817494,10817.494 +8427,2025-03-08T01:18:58.637690-08:00,1783.0,10.815022,10815.022 +8428,2025-03-08T01:19:09.454685-08:00,1776.0,10.816995,10816.995 +8429,2025-03-08T01:19:20.269032-08:00,1739.0,10.814347,10814.347 +8430,2025-03-08T01:19:31.087683-08:00,1717.0,10.818651,10818.651 +8431,2025-03-08T01:19:41.899214-08:00,1744.0,10.811531,10811.531 +8432,2025-03-08T01:19:52.713673-08:00,1777.0,10.814459,10814.459 +8433,2025-03-08T01:20:03.529190-08:00,1779.0,10.815517,10815.517 +8434,2025-03-08T01:20:14.338943-08:00,1697.0,10.809753,10809.753 +8435,2025-03-08T01:20:25.156685-08:00,1783.0,10.817742,10817.742 +8436,2025-03-08T01:20:35.958997-08:00,1777.0,10.802312,10802.312 +8437,2025-03-08T01:20:46.779679-08:00,1759.0,10.820682,10820.682 +8438,2025-03-08T01:20:57.585685-08:00,1745.0,10.806006,10806.006 +8439,2025-03-08T01:21:08.394991-08:00,1771.0,10.809306,10809.306 +8440,2025-03-08T01:21:19.207140-08:00,1734.0,10.812149,10812.149 +8441,2025-03-08T01:21:30.019685-08:00,1744.0,10.812545,10812.545 +8442,2025-03-08T01:21:40.838138-08:00,1767.0,10.818453,10818.453 +8443,2025-03-08T01:21:51.649688-08:00,1778.0,10.81155,10811.55 +8444,2025-03-08T01:22:02.465121-08:00,1782.0,10.815433,10815.433 +8445,2025-03-08T01:22:13.280976-08:00,1767.0,10.815855,10815.855 +8446,2025-03-08T01:22:24.088687-08:00,1783.0,10.807711,10807.711 +8447,2025-03-08T01:22:34.904089-08:00,1728.0,10.815402,10815.402 +8448,2025-03-08T01:22:45.724834-08:00,1780.0,10.820745,10820.745 +8449,2025-03-08T01:22:56.539212-08:00,1777.0,10.814378,10814.378 +8450,2025-03-08T01:23:07.356923-08:00,1780.0,10.817711,10817.711 +8451,2025-03-08T01:23:18.164666-08:00,1715.0,10.807743,10807.743 +8452,2025-03-08T01:23:28.987732-08:00,1738.0,10.823066,10823.066 +8453,2025-03-08T01:23:39.806028-08:00,1782.0,10.818296,10818.296 +8454,2025-03-08T01:23:50.616718-08:00,1776.0,10.81069,10810.69 +8455,2025-03-08T01:24:01.435797-08:00,1785.0,10.819079,10819.079 +8456,2025-03-08T01:24:12.252685-08:00,1785.0,10.816888,10816.888 +8457,2025-03-08T01:24:23.066683-08:00,1788.0,10.813998,10813.998 +8458,2025-03-08T01:24:33.882831-08:00,1791.0,10.816148,10816.148 +8459,2025-03-08T01:24:44.698907-08:00,1744.0,10.816076,10816.076 +8460,2025-03-08T01:24:55.503688-08:00,1776.0,10.804781,10804.781 +8461,2025-03-08T01:25:06.316689-08:00,1741.0,10.813001,10813.001 +8462,2025-03-08T01:25:17.123734-08:00,1776.0,10.807045,10807.045 +8463,2025-03-08T01:25:27.938881-08:00,1783.0,10.815147,10815.147 +8464,2025-03-08T01:25:38.750689-08:00,1726.0,10.811808,10811.808 +8465,2025-03-08T01:25:49.557688-08:00,1767.0,10.806999,10806.999 +8466,2025-03-08T01:26:00.369848-08:00,1753.0,10.81216,10812.16 +8467,2025-03-08T01:26:11.179869-08:00,1761.0,10.810021,10810.021 +8468,2025-03-08T01:26:21.994824-08:00,1787.0,10.814955,10814.955 +8469,2025-03-08T01:26:32.797853-08:00,1702.0,10.803029,10803.029 +8470,2025-03-08T01:26:43.612138-08:00,1781.0,10.814285,10814.285 +8471,2025-03-08T01:26:54.429662-08:00,1779.0,10.817524,10817.524 +8472,2025-03-08T01:27:05.240081-08:00,1761.0,10.810419,10810.419 +8473,2025-03-08T01:27:16.057903-08:00,1727.0,10.817822,10817.822 +8474,2025-03-08T01:27:26.871169-08:00,1735.0,10.813266,10813.266 +8475,2025-03-08T01:27:37.683553-08:00,1709.0,10.812384,10812.384 +8476,2025-03-08T01:27:48.490668-08:00,1770.0,10.807115,10807.115 +8477,2025-03-08T01:27:59.311382-08:00,1776.0,10.820714,10820.714 +8478,2025-03-08T01:28:10.119741-08:00,1757.0,10.808359,10808.359 +8479,2025-03-08T01:28:20.939604-08:00,1741.0,10.819863,10819.863 +8480,2025-03-08T01:28:31.753271-08:00,1783.0,10.813667,10813.667 +8481,2025-03-08T01:28:42.572234-08:00,1743.0,10.818963,10818.963 +8482,2025-03-08T01:28:53.376684-08:00,1768.0,10.80445,10804.45 +8483,2025-03-08T01:29:04.198688-08:00,1781.0,10.822004,10822.004 +8484,2025-03-08T01:29:15.018834-08:00,1732.0,10.820146,10820.146 +8485,2025-03-08T01:29:25.826791-08:00,1773.0,10.807957,10807.957 +8486,2025-03-08T01:29:36.650679-08:00,1741.0,10.823888,10823.888 +8487,2025-03-08T01:29:47.460810-08:00,1733.0,10.810131,10810.131 +8488,2025-03-08T01:29:58.281048-08:00,1775.0,10.820238,10820.238 +8489,2025-03-08T01:30:09.089687-08:00,1744.0,10.808639,10808.639 +8490,2025-03-08T01:30:19.909673-08:00,1695.0,10.819986,10819.986 +8491,2025-03-08T01:30:30.731159-08:00,1738.0,10.821486,10821.486 +8492,2025-03-08T01:30:41.539946-08:00,1727.0,10.808787,10808.787 +8493,2025-03-08T01:30:52.358685-08:00,1719.0,10.818739,10818.739 +8494,2025-03-08T01:31:03.168809-08:00,1705.0,10.810124,10810.124 +8495,2025-03-08T01:31:13.986666-08:00,1757.0,10.817857,10817.857 +8496,2025-03-08T01:31:24.801989-08:00,1743.0,10.815323,10815.323 +8497,2025-03-08T01:31:35.615882-08:00,1733.0,10.813893,10813.893 +8498,2025-03-08T01:31:46.428865-08:00,1730.0,10.812983,10812.983 +8499,2025-03-08T01:31:57.240685-08:00,1695.0,10.81182,10811.82 +8500,2025-03-08T01:32:08.044687-08:00,1765.0,10.804002,10804.002 +8501,2025-03-08T01:32:18.855688-08:00,1706.0,10.811001,10811.001 +8502,2025-03-08T01:32:29.669756-08:00,1774.0,10.814068,10814.068 +8503,2025-03-08T01:32:40.481058-08:00,1741.0,10.811302,10811.302 +8504,2025-03-08T01:32:51.292694-08:00,1713.0,10.811636,10811.636 +8505,2025-03-08T01:33:02.100968-08:00,1773.0,10.808274,10808.274 +8506,2025-03-08T01:33:12.915033-08:00,1731.0,10.814065,10814.065 +8507,2025-03-08T01:33:23.731959-08:00,1766.0,10.816926,10816.926 +8508,2025-03-08T01:33:34.552281-08:00,1779.0,10.820322,10820.322 +8509,2025-03-08T01:33:45.361807-08:00,1783.0,10.809526,10809.526 +8510,2025-03-08T01:33:56.180689-08:00,1682.0,10.818882,10818.882 +8511,2025-03-08T01:34:07.001398-08:00,1693.0,10.820709,10820.709 +8512,2025-03-08T01:34:17.821721-08:00,1749.0,10.820323,10820.323 +8513,2025-03-08T01:34:28.635794-08:00,1779.0,10.814073,10814.073 +8514,2025-03-08T01:34:39.446850-08:00,1738.0,10.811056,10811.056 +8515,2025-03-08T01:34:50.267058-08:00,1767.0,10.820208,10820.208 +8516,2025-03-08T01:35:01.074881-08:00,1739.0,10.807823,10807.823 +8517,2025-03-08T01:35:11.900008-08:00,1725.0,10.825127,10825.127 +8518,2025-03-08T01:35:22.719943-08:00,1762.0,10.819935,10819.935 +8519,2025-03-08T01:35:33.530337-08:00,1776.0,10.810394,10810.394 +8520,2025-03-08T01:35:44.348931-08:00,1786.0,10.818594,10818.594 +8521,2025-03-08T01:35:55.170244-08:00,1777.0,10.821313,10821.313 +8522,2025-03-08T01:36:05.984684-08:00,1759.0,10.81444,10814.44 +8523,2025-03-08T01:36:16.798000-08:00,1783.0,10.813316,10813.316 +8524,2025-03-08T01:36:27.619793-08:00,1711.0,10.821793,10821.793 +8525,2025-03-08T01:36:38.428900-08:00,1747.0,10.809107,10809.107 +8526,2025-03-08T01:36:49.243687-08:00,1779.0,10.814787,10814.787 +8527,2025-03-08T01:37:00.065551-08:00,1762.0,10.821864,10821.864 +8528,2025-03-08T01:37:10.868220-08:00,1717.0,10.802669,10802.669 +8529,2025-03-08T01:37:21.690964-08:00,1782.0,10.822744,10822.744 +8530,2025-03-08T01:37:32.497914-08:00,1785.0,10.80695,10806.95 +8531,2025-03-08T01:37:43.308683-08:00,1782.0,10.810769,10810.769 +8532,2025-03-08T01:37:54.133194-08:00,1702.0,10.824511,10824.511 +8533,2025-03-08T01:38:04.946683-08:00,1743.0,10.813489,10813.489 +8534,2025-03-08T01:38:15.771783-08:00,1779.0,10.8251,10825.1 +8535,2025-03-08T01:38:26.587483-08:00,1703.0,10.8157,10815.7 +8536,2025-03-08T01:38:37.405688-08:00,1771.0,10.818205,10818.205 +8537,2025-03-08T01:38:48.215733-08:00,1766.0,10.810045,10810.045 +8538,2025-03-08T01:38:59.035684-08:00,1703.0,10.819951,10819.951 +8539,2025-03-08T01:39:09.863679-08:00,1792.0,10.827995,10827.995 +8540,2025-03-08T01:39:20.673951-08:00,1735.0,10.810272,10810.272 +8541,2025-03-08T01:39:31.491928-08:00,1745.0,10.817977,10817.977 +8542,2025-03-08T01:39:42.305991-08:00,1790.0,10.814063,10814.063 +8543,2025-03-08T01:39:53.122943-08:00,1745.0,10.816952,10816.952 +8544,2025-03-08T01:40:03.931825-08:00,1774.0,10.808882,10808.882 +8545,2025-03-08T01:40:14.745670-08:00,1690.0,10.813845,10813.845 +8546,2025-03-08T01:40:25.563672-08:00,1765.0,10.818002,10818.002 +8547,2025-03-08T01:40:36.375299-08:00,1702.0,10.811627,10811.627 +8548,2025-03-08T01:40:47.191367-08:00,1776.0,10.816068,10816.068 +8549,2025-03-08T01:40:58.010715-08:00,1710.0,10.819348,10819.348 +8550,2025-03-08T01:41:08.824932-08:00,1783.0,10.814217,10814.217 +8551,2025-03-08T01:41:19.644083-08:00,1788.0,10.819151,10819.151 +8552,2025-03-08T01:41:30.455989-08:00,1696.0,10.811906,10811.906 +8553,2025-03-08T01:41:41.280683-08:00,1766.0,10.824694,10824.694 +8554,2025-03-08T01:41:52.089683-08:00,1784.0,10.809,10809.0 +8555,2025-03-08T01:42:02.909385-08:00,1789.0,10.819702,10819.702 +8556,2025-03-08T01:42:13.711659-08:00,1741.0,10.802274,10802.274 +8557,2025-03-08T01:42:24.526969-08:00,1736.0,10.81531,10815.31 +8558,2025-03-08T01:42:35.341725-08:00,1765.0,10.814756,10814.756 +8559,2025-03-08T01:42:46.145673-08:00,1734.0,10.803948,10803.948 +8560,2025-03-08T01:42:56.959006-08:00,1783.0,10.813333,10813.333 +8561,2025-03-08T01:43:07.774186-08:00,1791.0,10.81518,10815.18 +8562,2025-03-08T01:43:18.576673-08:00,1708.0,10.802487,10802.487 +8563,2025-03-08T01:43:29.390205-08:00,1791.0,10.813532,10813.532 +8564,2025-03-08T01:43:40.205713-08:00,1712.0,10.815508,10815.508 +8565,2025-03-08T01:43:51.021678-08:00,1721.0,10.815965,10815.965 +8566,2025-03-08T01:44:01.834689-08:00,1748.0,10.813011,10813.011 +8567,2025-03-08T01:44:12.656977-08:00,1706.0,10.822288,10822.288 +8568,2025-03-08T01:44:23.469177-08:00,1763.0,10.8122,10812.2 +8569,2025-03-08T01:44:34.280679-08:00,1712.0,10.811502,10811.502 +8570,2025-03-08T01:44:45.093667-08:00,1749.0,10.812988,10812.988 +8571,2025-03-08T01:44:55.907977-08:00,1787.0,10.81431,10814.31 +8572,2025-03-08T01:45:06.716068-08:00,1783.0,10.808091,10808.091 +8573,2025-03-08T01:45:17.533022-08:00,1747.0,10.816954,10816.954 +8574,2025-03-08T01:45:28.336689-08:00,1731.0,10.803667,10803.667 +8575,2025-03-08T01:45:39.152858-08:00,1790.0,10.816169,10816.169 +8576,2025-03-08T01:45:49.967805-08:00,1772.0,10.814947,10814.947 +8577,2025-03-08T01:46:00.775272-08:00,1765.0,10.807467,10807.467 +8578,2025-03-08T01:46:11.590967-08:00,1790.0,10.815695,10815.695 +8579,2025-03-08T01:46:22.404735-08:00,1789.0,10.813768,10813.768 +8580,2025-03-08T01:46:33.219668-08:00,1749.0,10.814933,10814.933 +8581,2025-03-08T01:46:44.026666-08:00,1695.0,10.806998,10806.998 +8582,2025-03-08T01:46:54.830674-08:00,1744.0,10.804008,10804.008 +8583,2025-03-08T01:47:05.653686-08:00,1703.0,10.823012,10823.012 +8584,2025-03-08T01:47:16.462280-08:00,1775.0,10.808594,10808.594 +8585,2025-03-08T01:47:27.275271-08:00,1791.0,10.812991,10812.991 +8586,2025-03-08T01:47:38.083685-08:00,1786.0,10.808414,10808.414 +8587,2025-03-08T01:47:48.897774-08:00,1746.0,10.814089,10814.089 +8588,2025-03-08T01:47:59.700728-08:00,1709.0,10.802954,10802.954 +8589,2025-03-08T01:48:10.520044-08:00,1787.0,10.819316,10819.316 +8590,2025-03-08T01:48:21.341321-08:00,1791.0,10.821277,10821.277 +8591,2025-03-08T01:48:32.147692-08:00,1782.0,10.806371,10806.371 +8592,2025-03-08T01:48:42.971687-08:00,1792.0,10.823995,10823.995 +8593,2025-03-08T01:48:53.780680-08:00,1709.0,10.808993,10808.993 +8594,2025-03-08T01:49:04.597441-08:00,1747.0,10.816761,10816.761 +8595,2025-03-08T01:49:15.409112-08:00,1728.0,10.811671,10811.671 +8596,2025-03-08T01:49:26.219481-08:00,1714.0,10.810369,10810.369 +8597,2025-03-08T01:49:37.027693-08:00,1780.0,10.808212,10808.212 +8598,2025-03-08T01:49:47.846993-08:00,1790.0,10.8193,10819.3 +8599,2025-03-08T01:49:58.651686-08:00,1716.0,10.804693,10804.693 +8600,2025-03-08T01:50:09.466403-08:00,1702.0,10.814717,10814.717 +8601,2025-03-08T01:50:20.282204-08:00,1792.0,10.815801,10815.801 +8602,2025-03-08T01:50:31.095944-08:00,1710.0,10.81374,10813.74 +8603,2025-03-08T01:50:41.905688-08:00,1750.0,10.809744,10809.744 +8604,2025-03-08T01:50:52.725138-08:00,1778.0,10.81945,10819.45 +8605,2025-03-08T01:51:03.538812-08:00,1786.0,10.813674,10813.674 +8606,2025-03-08T01:51:14.347800-08:00,1709.0,10.808988,10808.988 +8607,2025-03-08T01:51:25.164693-08:00,1717.0,10.816893,10816.893 +8608,2025-03-08T01:51:35.979015-08:00,1787.0,10.814322,10814.322 +8609,2025-03-08T01:51:46.789904-08:00,1787.0,10.810889,10810.889 +8610,2025-03-08T01:51:57.594735-08:00,1707.0,10.804831,10804.831 +8611,2025-03-08T01:52:08.409018-08:00,1759.0,10.814283,10814.283 +8612,2025-03-08T01:52:19.221055-08:00,1728.0,10.812037,10812.037 +8613,2025-03-08T01:52:30.041681-08:00,1779.0,10.820626,10820.626 +8614,2025-03-08T01:52:40.842939-08:00,1695.0,10.801258,10801.258 +8615,2025-03-08T01:52:51.657878-08:00,1773.0,10.814939,10814.939 +8616,2025-03-08T01:53:02.460684-08:00,1785.0,10.802806,10802.806 +8617,2025-03-08T01:53:13.276045-08:00,1786.0,10.815361,10815.361 +8618,2025-03-08T01:53:24.084015-08:00,1671.0,10.80797,10807.97 +8619,2025-03-08T01:53:34.893357-08:00,1733.0,10.809342,10809.342 +8620,2025-03-08T01:53:45.704707-08:00,1709.0,10.81135,10811.35 +8621,2025-03-08T01:53:56.511819-08:00,1647.0,10.807112,10807.112 +8622,2025-03-08T01:54:07.332378-08:00,1645.0,10.820559,10820.559 +8623,2025-03-08T01:54:18.136634-08:00,1642.0,10.804256,10804.256 +8624,2025-03-08T01:54:28.943912-08:00,1678.0,10.807278,10807.278 +8625,2025-03-08T01:54:39.759146-08:00,1670.0,10.815234,10815.234 +8626,2025-03-08T01:54:50.571002-08:00,1707.0,10.811856,10811.856 +8627,2025-03-08T01:55:01.386685-08:00,1642.0,10.815683,10815.683 +8628,2025-03-08T01:55:12.204822-08:00,1648.0,10.818137,10818.137 +8629,2025-03-08T01:55:23.026111-08:00,1681.0,10.821289,10821.289 +8630,2025-03-08T01:55:33.828993-08:00,1681.0,10.802882,10802.882 +8631,2025-03-08T01:55:44.638236-08:00,1715.0,10.809243,10809.243 +8632,2025-03-08T01:55:55.450688-08:00,1691.0,10.812452,10812.452 +8633,2025-03-08T01:56:06.253687-08:00,1692.0,10.802999,10802.999 +8634,2025-03-08T01:56:17.069677-08:00,1633.0,10.81599,10815.99 +8635,2025-03-08T01:56:27.882724-08:00,1708.0,10.813047,10813.047 +8636,2025-03-08T01:56:38.687735-08:00,1697.0,10.805011,10805.011 +8637,2025-03-08T01:56:49.506683-08:00,1648.0,10.818948,10818.948 +8638,2025-03-08T01:57:00.311016-08:00,1664.0,10.804333,10804.333 +8639,2025-03-08T01:57:11.129689-08:00,1734.0,10.818673,10818.673 +8640,2025-03-08T01:57:21.931681-08:00,1726.0,10.801992,10801.992 +8641,2025-03-08T01:57:32.747856-08:00,1699.0,10.816175,10816.175 +8642,2025-03-08T01:57:43.551861-08:00,1686.0,10.804005,10804.005 +8643,2025-03-08T01:57:54.364380-08:00,1718.0,10.812519,10812.519 +8644,2025-03-08T01:58:05.180662-08:00,1717.0,10.816282,10816.282 +8645,2025-03-08T01:58:15.995911-08:00,1647.0,10.815249,10815.249 +8646,2025-03-08T01:58:26.814688-08:00,1731.0,10.818777,10818.777 +8647,2025-03-08T01:58:37.623868-08:00,1699.0,10.80918,10809.18 +8648,2025-03-08T01:58:48.439038-08:00,1725.0,10.81517,10815.17 +8649,2025-03-08T01:58:59.248273-08:00,1680.0,10.809235,10809.235 +8650,2025-03-08T01:59:10.062687-08:00,1645.0,10.814414,10814.414 +8651,2025-03-08T01:59:20.878888-08:00,1695.0,10.816201,10816.201 +8652,2025-03-08T01:59:31.701242-08:00,1697.0,10.822354,10822.354 +8653,2025-03-08T01:59:42.502959-08:00,1717.0,10.801717,10801.717 +8654,2025-03-08T01:59:53.318691-08:00,1689.0,10.815732,10815.732 +8655,2025-03-08T02:00:04.129684-08:00,1663.0,10.810993,10810.993 +8656,2025-03-08T02:00:14.944662-08:00,1699.0,10.814978,10814.978 +8657,2025-03-08T02:00:25.762113-08:00,1712.0,10.817451,10817.451 +8658,2025-03-08T02:00:36.579243-08:00,1719.0,10.81713,10817.13 +8659,2025-03-08T02:00:47.395218-08:00,1674.0,10.815975,10815.975 +8660,2025-03-08T02:00:58.212690-08:00,1693.0,10.817472,10817.472 +8661,2025-03-08T02:01:09.033970-08:00,1691.0,10.82128,10821.28 +8662,2025-03-08T02:01:19.848486-08:00,1711.0,10.814516,10814.516 +8663,2025-03-08T02:01:30.669335-08:00,1697.0,10.820849,10820.849 +8664,2025-03-08T02:01:41.476861-08:00,1682.0,10.807526,10807.526 +8665,2025-03-08T02:01:52.302919-08:00,1680.0,10.826058,10826.058 +8666,2025-03-08T02:02:03.121666-08:00,1687.0,10.818747,10818.747 +8667,2025-03-08T02:02:13.937884-08:00,1709.0,10.816218,10816.218 +8668,2025-03-08T02:02:24.746727-08:00,1674.0,10.808843,10808.843 +8669,2025-03-08T02:02:35.563633-08:00,1715.0,10.816906,10816.906 +8670,2025-03-08T02:02:46.381748-08:00,1733.0,10.818115,10818.115 +8671,2025-03-08T02:02:57.195689-08:00,1651.0,10.813941,10813.941 +8672,2025-03-08T02:03:08.017504-08:00,1678.0,10.821815,10821.815 +8673,2025-03-08T02:03:18.825008-08:00,1729.0,10.807504,10807.504 +8674,2025-03-08T02:03:29.635030-08:00,1730.0,10.810022,10810.022 +8675,2025-03-08T02:03:40.454683-08:00,1653.0,10.819653,10819.653 +8676,2025-03-08T02:03:51.263930-08:00,1707.0,10.809247,10809.247 +8677,2025-03-08T02:04:02.076744-08:00,1685.0,10.812814,10812.814 +8678,2025-03-08T02:04:12.894175-08:00,1691.0,10.817431,10817.431 +8679,2025-03-08T02:04:23.711232-08:00,1700.0,10.817057,10817.057 +8680,2025-03-08T02:04:34.529677-08:00,1728.0,10.818445,10818.445 +8681,2025-03-08T02:04:45.342739-08:00,1723.0,10.813062,10813.062 +8682,2025-03-08T02:04:56.160888-08:00,1696.0,10.818149,10818.149 +8683,2025-03-08T02:05:06.967022-08:00,1696.0,10.806134,10806.134 +8684,2025-03-08T02:05:17.783107-08:00,1641.0,10.816085,10816.085 +8685,2025-03-08T02:05:28.590811-08:00,1713.0,10.807704,10807.704 +8686,2025-03-08T02:05:39.470705-08:00,1712.0,10.879894,10879.894 +8687,2025-03-08T02:05:50.284694-08:00,1734.0,10.813989,10813.989 +8688,2025-03-08T02:06:01.100304-08:00,1728.0,10.81561,10815.61 +8689,2025-03-08T02:06:11.900837-08:00,1733.0,10.800533,10800.533 +8690,2025-03-08T02:06:22.719823-08:00,1707.0,10.818986,10818.986 +8691,2025-03-08T02:06:33.532808-08:00,1727.0,10.812985,10812.985 +8692,2025-03-08T02:06:44.337938-08:00,1648.0,10.80513,10805.13 +8693,2025-03-08T02:06:55.149149-08:00,1649.0,10.811211,10811.211 +8694,2025-03-08T02:07:05.966700-08:00,1705.0,10.817551,10817.551 +8695,2025-03-08T02:07:16.792696-08:00,1727.0,10.825996,10825.996 +8696,2025-03-08T02:07:27.605947-08:00,1669.0,10.813251,10813.251 +8697,2025-03-08T02:07:38.421847-08:00,1697.0,10.8159,10815.9 +8698,2025-03-08T02:07:49.240029-08:00,1701.0,10.818182,10818.182 +8699,2025-03-08T02:08:00.051096-08:00,1723.0,10.811067,10811.067 +8700,2025-03-08T02:08:10.871703-08:00,1724.0,10.820607,10820.607 +8701,2025-03-08T02:08:21.688764-08:00,1729.0,10.817061,10817.061 +8702,2025-03-08T02:08:32.499208-08:00,1708.0,10.810444,10810.444 +8703,2025-03-08T02:08:43.309294-08:00,1635.0,10.810086,10810.086 +8704,2025-03-08T02:08:54.118060-08:00,1729.0,10.808766,10808.766 +8705,2025-03-08T02:09:04.927707-08:00,1711.0,10.809647,10809.647 +8706,2025-03-08T02:09:15.744724-08:00,1731.0,10.817017,10817.017 +8707,2025-03-08T02:09:26.553747-08:00,1671.0,10.809023,10809.023 +8708,2025-03-08T02:09:37.360927-08:00,1728.0,10.80718,10807.18 +8709,2025-03-08T02:09:48.173086-08:00,1729.0,10.812159,10812.159 +8710,2025-03-08T02:09:58.989754-08:00,1708.0,10.816668,10816.668 +8711,2025-03-08T02:10:09.793033-08:00,1728.0,10.803279,10803.279 +8712,2025-03-08T02:10:20.601702-08:00,1669.0,10.808669,10808.669 +8713,2025-03-08T02:10:31.410952-08:00,1727.0,10.80925,10809.25 +8714,2025-03-08T02:10:42.218694-08:00,1658.0,10.807742,10807.742 +8715,2025-03-08T02:10:53.027833-08:00,1674.0,10.809139,10809.139 +8716,2025-03-08T02:11:03.832842-08:00,1643.0,10.805009,10805.009 +8717,2025-03-08T02:11:14.650511-08:00,1685.0,10.817669,10817.669 +8718,2025-03-08T02:11:25.449939-08:00,1684.0,10.799428,10799.428 +8719,2025-03-08T02:11:36.259978-08:00,1729.0,10.810039,10810.039 +8720,2025-03-08T02:11:47.073054-08:00,1722.0,10.813076,10813.076 +8721,2025-03-08T02:11:57.882880-08:00,1680.0,10.809826,10809.826 +8722,2025-03-08T02:12:08.690931-08:00,1730.0,10.808051,10808.051 +8723,2025-03-08T02:12:19.503928-08:00,1671.0,10.812997,10812.997 +8724,2025-03-08T02:12:30.306112-08:00,1731.0,10.802184,10802.184 +8725,2025-03-08T02:12:41.122701-08:00,1728.0,10.816589,10816.589 +8726,2025-03-08T02:12:51.928077-08:00,1730.0,10.805376,10805.376 +8727,2025-03-08T02:13:02.746086-08:00,1728.0,10.818009,10818.009 +8728,2025-03-08T02:13:13.545336-08:00,1711.0,10.79925,10799.25 +8729,2025-03-08T02:13:24.354181-08:00,1729.0,10.808845,10808.845 +8730,2025-03-08T02:13:35.171702-08:00,1725.0,10.817521,10817.521 +8731,2025-03-08T02:13:45.972694-08:00,1701.0,10.800992,10800.992 +8732,2025-03-08T02:13:56.782688-08:00,1702.0,10.809994,10809.994 +8733,2025-03-08T02:14:07.592696-08:00,1703.0,10.810008,10810.008 +8734,2025-03-08T02:14:18.403910-08:00,1667.0,10.811214,10811.214 +8735,2025-03-08T02:14:29.216982-08:00,1731.0,10.813072,10813.072 +8736,2025-03-08T02:14:40.027012-08:00,1687.0,10.81003,10810.03 +8737,2025-03-08T02:14:50.842894-08:00,1695.0,10.815882,10815.882 +8738,2025-03-08T02:15:01.653921-08:00,1712.0,10.811027,10811.027 +8739,2025-03-08T02:15:12.459703-08:00,1732.0,10.805782,10805.782 +8740,2025-03-08T02:15:23.272895-08:00,1728.0,10.813192,10813.192 +8741,2025-03-08T02:15:34.077703-08:00,1702.0,10.804808,10804.808 +8742,2025-03-08T02:15:44.886854-08:00,1712.0,10.809151,10809.151 +8743,2025-03-08T02:15:55.696324-08:00,1678.0,10.80947,10809.47 +8744,2025-03-08T02:16:06.503021-08:00,1712.0,10.806697,10806.697 +8745,2025-03-08T02:16:17.312145-08:00,1648.0,10.809124,10809.124 +8746,2025-03-08T02:16:28.112833-08:00,1725.0,10.800688,10800.688 +8747,2025-03-08T02:16:38.921700-08:00,1694.0,10.808867,10808.867 +8748,2025-03-08T02:17:00.541965-08:00,1661.0,21.620265,21620.265 +8749,2025-03-08T02:17:11.349698-08:00,1681.0,10.807733,10807.733 +8750,2025-03-08T02:17:22.156698-08:00,1667.0,10.807,10807.0 +8751,2025-03-08T02:17:32.970479-08:00,1696.0,10.813781,10813.781 +8752,2025-03-08T02:17:43.772359-08:00,1725.0,10.80188,10801.88 +8753,2025-03-08T02:17:54.581861-08:00,1730.0,10.809502,10809.502 +8754,2025-03-08T02:18:05.393694-08:00,1683.0,10.811833,10811.833 +8755,2025-03-08T02:18:16.200957-08:00,1690.0,10.807263,10807.263 +8756,2025-03-08T02:18:27.013943-08:00,1669.0,10.812986,10812.986 +8757,2025-03-08T02:18:37.818909-08:00,1727.0,10.804966,10804.966 +8758,2025-03-08T02:18:48.624681-08:00,1683.0,10.805772,10805.772 +8759,2025-03-08T02:18:59.432748-08:00,1729.0,10.808067,10808.067 +8760,2025-03-08T02:19:10.249984-08:00,1648.0,10.817236,10817.236 +8761,2025-03-08T02:19:21.056004-08:00,1664.0,10.80602,10806.02 +8762,2025-03-08T02:19:31.856845-08:00,1733.0,10.800841,10800.841 +8763,2025-03-08T02:19:42.664059-08:00,1689.0,10.807214,10807.214 +8764,2025-03-08T02:19:53.469020-08:00,1711.0,10.804961,10804.961 +8765,2025-03-08T02:20:04.279755-08:00,1689.0,10.810735,10810.735 +8766,2025-03-08T02:20:15.092082-08:00,1703.0,10.812327,10812.327 +8767,2025-03-08T02:20:25.903702-08:00,1670.0,10.81162,10811.62 +8768,2025-03-08T02:20:36.710694-08:00,1726.0,10.806992,10806.992 +8769,2025-03-08T02:20:47.522695-08:00,1698.0,10.812001,10812.001 +8770,2025-03-08T02:20:58.334747-08:00,1727.0,10.812052,10812.052 +8771,2025-03-08T02:21:09.140964-08:00,1696.0,10.806217,10806.217 +8772,2025-03-08T02:21:19.951896-08:00,1636.0,10.810932,10810.932 +8773,2025-03-08T02:21:30.760768-08:00,1638.0,10.808872,10808.872 +8774,2025-03-08T02:21:39.783869-08:00,1691.0,9.023101,9023.101 +8775,2025-03-08T02:21:41.565699-08:00,1733.0,1.78183,1781.83 +8776,2025-03-08T02:21:52.373156-08:00,1728.0,10.807457,10807.457 +8777,2025-03-08T02:22:03.176826-08:00,1670.0,10.80367,10803.67 +8778,2025-03-08T02:22:13.983825-08:00,1735.0,10.806999,10806.999 +8779,2025-03-08T02:22:24.798682-08:00,1687.0,10.814857,10814.857 +8780,2025-03-08T02:22:35.604959-08:00,1714.0,10.806277,10806.277 +8781,2025-03-08T02:22:46.406704-08:00,1650.0,10.801745,10801.745 +8782,2025-03-08T02:22:57.215616-08:00,1648.0,10.808912,10808.912 +8783,2025-03-08T02:23:08.024818-08:00,1726.0,10.809202,10809.202 +8784,2025-03-08T02:23:18.836851-08:00,1711.0,10.812033,10812.033 +8785,2025-03-08T02:23:29.649932-08:00,1691.0,10.813081,10813.081 +8786,2025-03-08T02:23:40.452311-08:00,1680.0,10.802379,10802.379 +8787,2025-03-08T02:23:51.262704-08:00,1731.0,10.810393,10810.393 +8788,2025-03-08T02:24:02.072936-08:00,1712.0,10.810232,10810.232 +8789,2025-03-08T02:24:12.886694-08:00,1637.0,10.813758,10813.758 +8790,2025-03-08T02:24:23.684713-08:00,1707.0,10.798019,10798.019 +8791,2025-03-08T02:24:34.503021-08:00,1697.0,10.818308,10818.308 +8792,2025-03-08T02:24:45.306021-08:00,1731.0,10.803,10803.0 +8793,2025-03-08T02:24:56.120768-08:00,1723.0,10.814747,10814.747 +8794,2025-03-08T02:25:06.918035-08:00,1712.0,10.797267,10797.267 +8795,2025-03-08T02:25:17.726753-08:00,1664.0,10.808718,10808.718 +8796,2025-03-08T02:25:28.540914-08:00,1703.0,10.814161,10814.161 +8797,2025-03-08T02:25:39.348700-08:00,1735.0,10.807786,10807.786 +8798,2025-03-08T02:25:50.157940-08:00,1703.0,10.80924,10809.24 +8799,2025-03-08T02:26:00.964696-08:00,1733.0,10.806756,10806.756 +8800,2025-03-08T02:26:11.769692-08:00,1731.0,10.804996,10804.996 +8801,2025-03-08T02:26:22.585045-08:00,1714.0,10.815353,10815.353 +8802,2025-03-08T02:26:33.389969-08:00,1729.0,10.804924,10804.924 +8803,2025-03-08T02:26:44.203976-08:00,1648.0,10.814007,10814.007 +8804,2025-03-08T02:26:55.002015-08:00,1683.0,10.798039,10798.039 +8805,2025-03-08T02:27:05.815968-08:00,1690.0,10.813953,10813.953 +8806,2025-03-08T02:27:16.617280-08:00,1706.0,10.801312,10801.312 +8807,2025-03-08T02:27:27.427897-08:00,1683.0,10.810617,10810.617 +8808,2025-03-08T02:27:38.235699-08:00,1731.0,10.807802,10807.802 +8809,2025-03-08T02:27:49.040693-08:00,1697.0,10.804994,10804.994 +8810,2025-03-08T02:27:59.842954-08:00,1682.0,10.802261,10802.261 +8811,2025-03-08T02:28:10.645684-08:00,1736.0,10.80273,10802.73 +8812,2025-03-08T02:28:21.449693-08:00,1728.0,10.804009,10804.009 +8813,2025-03-08T02:28:32.258681-08:00,1729.0,10.808988,10808.988 +8814,2025-03-08T02:28:43.061899-08:00,1719.0,10.803218,10803.218 +8815,2025-03-08T02:28:53.864703-08:00,1730.0,10.802804,10802.804 +8816,2025-03-08T02:29:04.684767-08:00,1712.0,10.820064,10820.064 +8817,2025-03-08T02:29:15.485721-08:00,1677.0,10.800954,10800.954 +8818,2025-03-08T02:29:26.303575-08:00,1735.0,10.817854,10817.854 +8819,2025-03-08T02:29:37.101968-08:00,1735.0,10.798393,10798.393 +8820,2025-03-08T02:29:47.915803-08:00,1733.0,10.813835,10813.835 +8821,2025-03-08T02:29:58.716899-08:00,1642.0,10.801096,10801.096 +8822,2025-03-08T02:30:09.528564-08:00,1703.0,10.811665,10811.665 +8823,2025-03-08T02:30:20.333681-08:00,1691.0,10.805117,10805.117 +8824,2025-03-08T02:30:31.134350-08:00,1695.0,10.800669,10800.669 +8825,2025-03-08T02:30:41.941688-08:00,1734.0,10.807338,10807.338 +8826,2025-03-08T02:30:52.752182-08:00,1731.0,10.810494,10810.494 +8827,2025-03-08T02:31:03.562092-08:00,1667.0,10.80991,10809.91 +8828,2025-03-08T02:31:14.364682-08:00,1651.0,10.80259,10802.59 +8829,2025-03-08T02:31:25.178704-08:00,1683.0,10.814022,10814.022 +8830,2025-03-08T02:31:35.988987-08:00,1724.0,10.810283,10810.283 +8831,2025-03-08T02:31:46.798273-08:00,1701.0,10.809286,10809.286 +8832,2025-03-08T02:31:57.605696-08:00,1663.0,10.807423,10807.423 +8833,2025-03-08T02:32:08.409728-08:00,1675.0,10.804032,10804.032 +8834,2025-03-08T02:32:19.223692-08:00,1699.0,10.813964,10813.964 +8835,2025-03-08T02:32:30.027939-08:00,1722.0,10.804247,10804.247 +8836,2025-03-08T02:32:40.838694-08:00,1729.0,10.810755,10810.755 +8837,2025-03-08T02:32:51.637703-08:00,1721.0,10.799009,10799.009 +8838,2025-03-08T02:33:02.438842-08:00,1735.0,10.801139,10801.139 +8839,2025-03-08T02:33:13.251693-08:00,1737.0,10.812851,10812.851 +8840,2025-03-08T02:33:24.054706-08:00,1699.0,10.803013,10803.013 +8841,2025-03-08T02:33:34.858686-08:00,1686.0,10.80398,10803.98 +8842,2025-03-08T02:33:45.666670-08:00,1677.0,10.807984,10807.984 +8843,2025-03-08T02:33:56.475598-08:00,1733.0,10.808928,10808.928 +8844,2025-03-08T02:34:07.270703-08:00,1680.0,10.795105,10795.105 +8845,2025-03-08T02:34:18.082812-08:00,1733.0,10.812109,10812.109 +8846,2025-03-08T02:34:28.886501-08:00,1711.0,10.803689,10803.689 +8847,2025-03-08T02:34:39.681743-08:00,1732.0,10.795242,10795.242 +8848,2025-03-08T02:34:50.499442-08:00,1733.0,10.817699,10817.699 +8849,2025-03-08T02:35:01.296965-08:00,1729.0,10.797523,10797.523 +8850,2025-03-08T02:35:12.106087-08:00,1659.0,10.809122,10809.122 +8851,2025-03-08T02:35:22.907053-08:00,1727.0,10.800966,10800.966 +8852,2025-03-08T02:35:33.710519-08:00,1685.0,10.803466,10803.466 +8853,2025-03-08T02:35:44.514113-08:00,1712.0,10.803594,10803.594 +8854,2025-03-08T02:35:55.321124-08:00,1649.0,10.807011,10807.011 +8855,2025-03-08T02:36:06.128695-08:00,1701.0,10.807571,10807.571 +8856,2025-03-08T02:36:16.934104-08:00,1711.0,10.805409,10805.409 +8857,2025-03-08T02:36:27.737283-08:00,1711.0,10.803179,10803.179 +8858,2025-03-08T02:36:38.533918-08:00,1721.0,10.796635,10796.635 +8859,2025-03-08T02:36:49.340686-08:00,1734.0,10.806768,10806.768 +8860,2025-03-08T02:37:00.149696-08:00,1726.0,10.80901,10809.01 +8861,2025-03-08T02:37:10.958952-08:00,1731.0,10.809256,10809.256 +8862,2025-03-08T02:37:21.762706-08:00,1639.0,10.803754,10803.754 +8863,2025-03-08T02:37:32.574696-08:00,1683.0,10.81199,10811.99 +8864,2025-03-08T02:37:43.389918-08:00,1712.0,10.815222,10815.222 +8865,2025-03-08T02:37:54.187944-08:00,1712.0,10.798026,10798.026 +8866,2025-03-08T02:38:04.996551-08:00,1734.0,10.808607,10808.607 +8867,2025-03-08T02:38:15.801727-08:00,1651.0,10.805176,10805.176 +8868,2025-03-08T02:38:26.603860-08:00,1684.0,10.802133,10802.133 +8869,2025-03-08T02:38:37.405753-08:00,1727.0,10.801893,10801.893 +8870,2025-03-08T02:38:48.207749-08:00,1733.0,10.801996,10801.996 +8871,2025-03-08T02:38:59.012768-08:00,1702.0,10.805019,10805.019 +8872,2025-03-08T02:39:09.826973-08:00,1675.0,10.814205,10814.205 +8873,2025-03-08T02:39:20.624446-08:00,1680.0,10.797473,10797.473 +8874,2025-03-08T02:39:31.441355-08:00,1673.0,10.816909,10816.909 +8875,2025-03-08T02:39:42.243399-08:00,1715.0,10.802044,10802.044 +8876,2025-03-08T02:39:53.053690-08:00,1731.0,10.810291,10810.291 +8877,2025-03-08T02:40:03.856693-08:00,1689.0,10.803003,10803.003 +8878,2025-03-08T02:40:14.665704-08:00,1689.0,10.809011,10809.011 +8879,2025-03-08T02:40:25.468700-08:00,1694.0,10.802996,10802.996 +8880,2025-03-08T02:40:36.275915-08:00,1733.0,10.807215,10807.215 +8881,2025-03-08T02:40:47.080703-08:00,1701.0,10.804788,10804.788 +8882,2025-03-08T02:40:57.881695-08:00,1721.0,10.800992,10800.992 +8883,2025-03-08T02:41:08.681931-08:00,1654.0,10.800236,10800.236 +8884,2025-03-08T02:41:19.479697-08:00,1690.0,10.797766,10797.766 +8885,2025-03-08T02:41:30.282703-08:00,1734.0,10.803006,10803.006 +8886,2025-03-08T02:41:41.087953-08:00,1654.0,10.80525,10805.25 +8887,2025-03-08T02:41:51.895081-08:00,1647.0,10.807128,10807.128 +8888,2025-03-08T02:42:02.710015-08:00,1657.0,10.814934,10814.934 +8889,2025-03-08T02:42:13.517699-08:00,1709.0,10.807684,10807.684 +8890,2025-03-08T02:42:24.327700-08:00,1716.0,10.810001,10810.001 +8891,2025-03-08T02:42:35.130017-08:00,1691.0,10.802317,10802.317 +8892,2025-03-08T02:42:45.940228-08:00,1729.0,10.810211,10810.211 +8893,2025-03-08T02:42:56.736910-08:00,1717.0,10.796682,10796.682 +8894,2025-03-08T02:43:07.546122-08:00,1657.0,10.809212,10809.212 +8895,2025-03-08T02:43:18.354274-08:00,1687.0,10.808152,10808.152 +8896,2025-03-08T02:43:29.151424-08:00,1735.0,10.79715,10797.15 +8897,2025-03-08T02:43:39.959030-08:00,1722.0,10.807606,10807.606 +8898,2025-03-08T02:43:50.764012-08:00,1726.0,10.804982,10804.982 +8899,2025-03-08T02:44:01.563575-08:00,1682.0,10.799563,10799.563 +8900,2025-03-08T02:44:12.365583-08:00,1641.0,10.802008,10802.008 +8901,2025-03-08T02:44:23.173292-08:00,1702.0,10.807709,10807.709 +8902,2025-03-08T02:44:33.976973-08:00,1670.0,10.803681,10803.681 +8903,2025-03-08T02:44:44.783939-08:00,1648.0,10.806966,10806.966 +8904,2025-03-08T02:44:55.590407-08:00,1732.0,10.806468,10806.468 +8905,2025-03-08T02:45:06.386013-08:00,1733.0,10.795606,10795.606 +8906,2025-03-08T02:45:17.190151-08:00,1647.0,10.804138,10804.138 +8907,2025-03-08T02:45:28.004690-08:00,1677.0,10.814539,10814.539 +8908,2025-03-08T02:45:38.811814-08:00,1730.0,10.807124,10807.124 +8909,2025-03-08T02:45:49.610941-08:00,1738.0,10.799127,10799.127 +8910,2025-03-08T02:46:00.425698-08:00,1725.0,10.814757,10814.757 +8911,2025-03-08T02:46:11.226949-08:00,1723.0,10.801251,10801.251 +8912,2025-03-08T02:46:22.037845-08:00,1714.0,10.810896,10810.896 +8913,2025-03-08T02:46:32.847681-08:00,1730.0,10.809836,10809.836 +8914,2025-03-08T02:46:43.656744-08:00,1648.0,10.809063,10809.063 +8915,2025-03-08T02:46:54.464261-08:00,1721.0,10.807517,10807.517 +8916,2025-03-08T02:47:05.263206-08:00,1732.0,10.798945,10798.945 +8917,2025-03-08T02:47:16.071313-08:00,1648.0,10.808107,10808.107 +8918,2025-03-08T02:47:26.876259-08:00,1667.0,10.804946,10804.946 +8919,2025-03-08T02:47:37.686496-08:00,1733.0,10.810237,10810.237 +8920,2025-03-08T02:47:48.488030-08:00,1651.0,10.801534,10801.534 +8921,2025-03-08T02:47:59.307959-08:00,1690.0,10.819929,10819.929 +8922,2025-03-08T02:48:10.115696-08:00,1691.0,10.807737,10807.737 +8923,2025-03-08T02:48:20.919943-08:00,1706.0,10.804247,10804.247 +8924,2025-03-08T02:48:31.720792-08:00,1692.0,10.800849,10800.849 +8925,2025-03-08T02:48:42.530695-08:00,1639.0,10.809903,10809.903 +8926,2025-03-08T02:48:53.344699-08:00,1719.0,10.814004,10814.004 +8927,2025-03-08T02:49:04.149725-08:00,1730.0,10.805026,10805.026 +8928,2025-03-08T02:49:14.950681-08:00,1701.0,10.800956,10800.956 +8929,2025-03-08T02:49:25.763817-08:00,1691.0,10.813136,10813.136 +8930,2025-03-08T02:49:36.565043-08:00,1730.0,10.801226,10801.226 +8931,2025-03-08T02:49:47.368663-08:00,1686.0,10.80362,10803.62 +8932,2025-03-08T02:49:58.186119-08:00,1655.0,10.817456,10817.456 +8933,2025-03-08T02:50:08.986748-08:00,1729.0,10.800629,10800.629 +8934,2025-03-08T02:50:19.796699-08:00,1654.0,10.809951,10809.951 +8935,2025-03-08T02:50:30.604688-08:00,1723.0,10.807989,10807.989 +8936,2025-03-08T02:50:41.402703-08:00,1707.0,10.798015,10798.015 +8937,2025-03-08T02:50:52.210704-08:00,1648.0,10.808001,10808.001 +8938,2025-03-08T02:51:03.014947-08:00,1667.0,10.804243,10804.243 +8939,2025-03-08T02:51:13.817704-08:00,1731.0,10.802757,10802.757 +8940,2025-03-08T02:51:24.621920-08:00,1691.0,10.804216,10804.216 +8941,2025-03-08T02:51:35.434700-08:00,1683.0,10.81278,10812.78 +8942,2025-03-08T02:51:46.243832-08:00,1725.0,10.809132,10809.132 +8943,2025-03-08T02:51:57.057605-08:00,1711.0,10.813773,10813.773 +8944,2025-03-08T02:52:07.854906-08:00,1702.0,10.797301,10797.301 +8945,2025-03-08T02:52:18.658811-08:00,1683.0,10.803905,10803.905 +8946,2025-03-08T02:52:29.468497-08:00,1697.0,10.809686,10809.686 +8947,2025-03-08T02:52:40.261702-08:00,1687.0,10.793205,10793.205 +8948,2025-03-08T02:52:51.068056-08:00,1680.0,10.806354,10806.354 +8949,2025-03-08T02:53:01.882023-08:00,1687.0,10.813967,10813.967 +8950,2025-03-08T02:53:12.682917-08:00,1735.0,10.800894,10800.894 +8951,2025-03-08T02:53:23.491181-08:00,1698.0,10.808264,10808.264 +8952,2025-03-08T02:53:34.305035-08:00,1678.0,10.813854,10813.854 +8953,2025-03-08T02:53:45.113679-08:00,1739.0,10.808644,10808.644 +8954,2025-03-08T02:53:55.923927-08:00,1666.0,10.810248,10810.248 +8955,2025-03-08T02:54:06.732790-08:00,1733.0,10.808863,10808.863 +8956,2025-03-08T02:54:17.525785-08:00,1664.0,10.792995,10792.995 +8957,2025-03-08T02:54:28.339105-08:00,1712.0,10.81332,10813.32 +8958,2025-03-08T02:54:39.149066-08:00,1654.0,10.809961,10809.961 +8959,2025-03-08T02:54:49.952222-08:00,1697.0,10.803156,10803.156 +8960,2025-03-08T02:55:00.766084-08:00,1635.0,10.813862,10813.862 +8961,2025-03-08T02:55:11.563162-08:00,1737.0,10.797078,10797.078 +8962,2025-03-08T02:55:22.371874-08:00,1734.0,10.808712,10808.712 +8963,2025-03-08T02:55:33.183047-08:00,1735.0,10.811173,10811.173 +8964,2025-03-08T02:55:43.983721-08:00,1648.0,10.800674,10800.674 +8965,2025-03-08T02:55:54.785992-08:00,1734.0,10.802271,10802.271 +8966,2025-03-08T02:56:05.593159-08:00,1731.0,10.807167,10807.167 +8967,2025-03-08T02:56:16.400697-08:00,1726.0,10.807538,10807.538 +8968,2025-03-08T02:56:27.208214-08:00,1702.0,10.807517,10807.517 +8969,2025-03-08T02:56:38.010921-08:00,1669.0,10.802707,10802.707 +8970,2025-03-08T02:56:48.816702-08:00,1722.0,10.805781,10805.781 +8971,2025-03-08T02:56:59.609233-08:00,1731.0,10.792531,10792.531 +8972,2025-03-08T02:57:10.416085-08:00,1703.0,10.806852,10806.852 +8973,2025-03-08T02:57:21.220234-08:00,1725.0,10.804149,10804.149 +8974,2025-03-08T02:57:32.026530-08:00,1731.0,10.806296,10806.296 +8975,2025-03-08T02:57:42.841936-08:00,1711.0,10.815406,10815.406 +8976,2025-03-08T02:57:53.636070-08:00,1681.0,10.794134,10794.134 +8977,2025-03-08T02:58:04.447172-08:00,1731.0,10.811102,10811.102 +8978,2025-03-08T02:58:15.246260-08:00,1691.0,10.799088,10799.088 +8979,2025-03-08T02:58:26.046695-08:00,1701.0,10.800435,10800.435 +8980,2025-03-08T02:58:36.849190-08:00,1693.0,10.802495,10802.495 +8981,2025-03-08T02:58:47.662700-08:00,1677.0,10.81351,10813.51 +8982,2025-03-08T02:58:58.461707-08:00,1735.0,10.799007,10799.007 +8983,2025-03-08T02:59:09.257704-08:00,1689.0,10.795997,10795.997 +8984,2025-03-08T02:59:20.063089-08:00,1654.0,10.805385,10805.385 +8985,2025-03-08T02:59:22.809160-08:00,1717.0,2.746071,2746.071 +8986,2025-03-08T02:59:30.864692-08:00,1727.0,8.055532,8055.532 +8987,2025-03-08T02:59:41.669927-08:00,1724.0,10.805235,10805.235 +8988,2025-03-08T02:59:52.476751-08:00,1735.0,10.806824,10806.824 +8989,2025-03-08T03:00:03.286760-08:00,1734.0,10.810009,10810.009 +8990,2025-03-08T03:00:14.099692-08:00,1652.0,10.812932,10812.932 +8991,2025-03-08T03:00:24.898834-08:00,1732.0,10.799142,10799.142 +8992,2025-03-08T03:00:35.707696-08:00,1736.0,10.808862,10808.862 +8993,2025-03-08T03:00:46.514870-08:00,1648.0,10.807174,10807.174 +8994,2025-03-08T03:00:57.305901-08:00,1680.0,10.791031,10791.031 +8995,2025-03-08T03:01:08.123749-08:00,1685.0,10.817848,10817.848 +8996,2025-03-08T03:01:18.925697-08:00,1707.0,10.801948,10801.948 +8997,2025-03-08T03:01:29.735970-08:00,1739.0,10.810273,10810.273 +8998,2025-03-08T03:01:40.531775-08:00,1715.0,10.795805,10795.805 +8999,2025-03-08T03:01:51.336223-08:00,1667.0,10.804448,10804.448 +9000,2025-03-08T03:02:02.144004-08:00,1665.0,10.807781,10807.781 +9001,2025-03-08T03:02:12.953999-08:00,1682.0,10.809995,10809.995 +9002,2025-03-08T03:02:23.764271-08:00,1694.0,10.810272,10810.272 +9003,2025-03-08T03:02:34.567012-08:00,1680.0,10.802741,10802.741 +9004,2025-03-08T03:02:45.369560-08:00,1719.0,10.802548,10802.548 +9005,2025-03-08T03:02:56.171885-08:00,1731.0,10.802325,10802.325 +9006,2025-03-08T03:03:06.980257-08:00,1706.0,10.808372,10808.372 +9007,2025-03-08T03:03:17.784797-08:00,1690.0,10.80454,10804.54 +9008,2025-03-08T03:03:28.589286-08:00,1676.0,10.804489,10804.489 +9009,2025-03-08T03:03:39.403694-08:00,1653.0,10.814408,10814.408 +9010,2025-03-08T03:03:50.199922-08:00,1661.0,10.796228,10796.228 +9011,2025-03-08T03:04:01.006177-08:00,1712.0,10.806255,10806.255 +9012,2025-03-08T03:04:11.816842-08:00,1683.0,10.810665,10810.665 +9013,2025-03-08T03:04:22.623678-08:00,1669.0,10.806836,10806.836 +9014,2025-03-08T03:04:33.419830-08:00,1736.0,10.796152,10796.152 +9015,2025-03-08T03:04:44.222699-08:00,1723.0,10.802869,10802.869 +9016,2025-03-08T03:04:55.024890-08:00,1737.0,10.802191,10802.191 +9017,2025-03-08T03:05:05.829705-08:00,1698.0,10.804815,10804.815 +9018,2025-03-08T03:05:16.633707-08:00,1711.0,10.804002,10804.002 +9019,2025-03-08T03:05:27.442700-08:00,1709.0,10.808993,10808.993 +9020,2025-03-08T03:05:38.275445-08:00,1698.0,10.832745,10832.745 +9021,2025-03-08T03:05:49.084451-08:00,1734.0,10.809006,10809.006 +9022,2025-03-08T03:05:59.883453-08:00,1741.0,10.799002,10799.002 +9023,2025-03-08T03:06:10.688946-08:00,1717.0,10.805493,10805.493 +9024,2025-03-08T03:06:21.496501-08:00,1726.0,10.807555,10807.555 +9025,2025-03-08T03:06:32.301435-08:00,1695.0,10.804934,10804.934 +9026,2025-03-08T03:06:43.113333-08:00,1735.0,10.811898,10811.898 +9027,2025-03-08T03:06:53.924035-08:00,1721.0,10.810702,10810.702 +9028,2025-03-08T03:07:04.724741-08:00,1655.0,10.800706,10800.706 +9029,2025-03-08T03:07:15.529495-08:00,1652.0,10.804754,10804.754 +9030,2025-03-08T03:07:26.341411-08:00,1717.0,10.811916,10811.916 +9031,2025-03-08T03:07:37.139841-08:00,1699.0,10.79843,10798.43 +9032,2025-03-08T03:07:47.940741-08:00,1726.0,10.8009,10800.9 +9033,2025-03-08T03:07:58.747085-08:00,1681.0,10.806344,10806.344 +9034,2025-03-08T03:08:09.559439-08:00,1666.0,10.812354,10812.354 +9035,2025-03-08T03:08:20.365449-08:00,1665.0,10.80601,10806.01 +9036,2025-03-08T03:08:31.169617-08:00,1737.0,10.804168,10804.168 +9037,2025-03-08T03:08:41.977444-08:00,1677.0,10.807827,10807.827 +9038,2025-03-08T03:08:52.779445-08:00,1710.0,10.802001,10802.001 +9039,2025-03-08T03:09:03.590485-08:00,1698.0,10.81104,10811.04 +9040,2025-03-08T03:09:14.395492-08:00,1741.0,10.805007,10805.007 +9041,2025-03-08T03:09:25.192166-08:00,1675.0,10.796674,10796.674 +9042,2025-03-08T03:09:35.994376-08:00,1725.0,10.80221,10802.21 +9043,2025-03-08T03:09:46.802572-08:00,1734.0,10.808196,10808.196 +9044,2025-03-08T03:09:57.611447-08:00,1661.0,10.808875,10808.875 +9045,2025-03-08T03:10:08.415437-08:00,1725.0,10.80399,10803.99 +9046,2025-03-08T03:10:19.225678-08:00,1695.0,10.810241,10810.241 +9047,2025-03-08T03:10:30.032744-08:00,1718.0,10.807066,10807.066 +9048,2025-03-08T03:10:40.836445-08:00,1650.0,10.803701,10803.701 +9049,2025-03-08T03:10:51.640763-08:00,1687.0,10.804318,10804.318 +9050,2025-03-08T03:11:02.447755-08:00,1726.0,10.806992,10806.992 +9051,2025-03-08T03:11:13.252755-08:00,1636.0,10.805,10805.0 +9052,2025-03-08T03:11:24.060759-08:00,1721.0,10.808004,10808.004 +9053,2025-03-08T03:11:34.864715-08:00,1738.0,10.803956,10803.956 +9054,2025-03-08T03:11:45.666859-08:00,1742.0,10.802144,10802.144 +9055,2025-03-08T03:11:56.474604-08:00,1700.0,10.807745,10807.745 +9056,2025-03-08T03:12:07.280894-08:00,1682.0,10.80629,10806.29 +9057,2025-03-08T03:12:18.077608-08:00,1691.0,10.796714,10796.714 +9058,2025-03-08T03:12:28.879868-08:00,1652.0,10.80226,10802.26 +9059,2025-03-08T03:12:39.689655-08:00,1702.0,10.809787,10809.787 +9060,2025-03-08T03:12:50.488140-08:00,1733.0,10.798485,10798.485 +9061,2025-03-08T03:13:01.295454-08:00,1734.0,10.807314,10807.314 +9062,2025-03-08T03:13:12.093729-08:00,1712.0,10.798275,10798.275 +9063,2025-03-08T03:13:22.896757-08:00,1648.0,10.803028,10803.028 +9064,2025-03-08T03:13:33.709723-08:00,1730.0,10.812966,10812.966 +9065,2025-03-08T03:13:44.509438-08:00,1715.0,10.799715,10799.715 +9066,2025-03-08T03:13:55.311539-08:00,1730.0,10.802101,10802.101 +9067,2025-03-08T03:14:06.115668-08:00,1682.0,10.804129,10804.129 +9068,2025-03-08T03:14:16.912935-08:00,1741.0,10.797267,10797.267 +9069,2025-03-08T03:14:27.708755-08:00,1686.0,10.79582,10795.82 +9070,2025-03-08T03:14:38.513696-08:00,1726.0,10.804941,10804.941 +9071,2025-03-08T03:14:49.318124-08:00,1737.0,10.804428,10804.428 +9072,2025-03-08T03:15:00.112437-08:00,1729.0,10.794313,10794.313 +9073,2025-03-08T03:15:10.910651-08:00,1649.0,10.798214,10798.214 +9074,2025-03-08T03:15:21.721679-08:00,1717.0,10.811028,10811.028 +9075,2025-03-08T03:15:32.525206-08:00,1719.0,10.803527,10803.527 +9076,2025-03-08T03:15:43.327755-08:00,1712.0,10.802549,10802.549 +9077,2025-03-08T03:15:54.131010-08:00,1691.0,10.803255,10803.255 +9078,2025-03-08T03:16:04.934112-08:00,1715.0,10.803102,10803.102 +9079,2025-03-08T03:16:15.731765-08:00,1662.0,10.797653,10797.653 +9080,2025-03-08T03:16:26.540177-08:00,1723.0,10.808412,10808.412 +9081,2025-03-08T03:16:37.337851-08:00,1648.0,10.797674,10797.674 +9082,2025-03-08T03:16:48.141667-08:00,1695.0,10.803816,10803.816 +9083,2025-03-08T03:16:58.944607-08:00,1730.0,10.80294,10802.94 +9084,2025-03-08T03:17:09.753322-08:00,1729.0,10.808715,10808.715 +9085,2025-03-08T03:17:20.546453-08:00,1733.0,10.793131,10793.131 +9086,2025-03-08T03:17:31.355440-08:00,1665.0,10.808987,10808.987 +9087,2025-03-08T03:17:42.157502-08:00,1714.0,10.802062,10802.062 +9088,2025-03-08T03:17:52.961451-08:00,1738.0,10.803949,10803.949 +9089,2025-03-08T03:18:03.765477-08:00,1728.0,10.804026,10804.026 +9090,2025-03-08T03:18:14.565445-08:00,1690.0,10.799968,10799.968 +9091,2025-03-08T03:18:25.372565-08:00,1686.0,10.80712,10807.12 +9092,2025-03-08T03:18:36.167429-08:00,1713.0,10.794864,10794.864 +9093,2025-03-08T03:18:46.976943-08:00,1739.0,10.809514,10809.514 +9094,2025-03-08T03:18:57.779770-08:00,1703.0,10.802827,10802.827 +9095,2025-03-08T03:19:08.582560-08:00,1731.0,10.80279,10802.79 +9096,2025-03-08T03:19:19.393056-08:00,1689.0,10.810496,10810.496 +9097,2025-03-08T03:19:30.200729-08:00,1660.0,10.807673,10807.673 +9098,2025-03-08T03:19:40.995608-08:00,1674.0,10.794879,10794.879 +9099,2025-03-08T03:19:51.788712-08:00,1739.0,10.793104,10793.104 +9100,2025-03-08T03:20:02.593443-08:00,1731.0,10.804731,10804.731 +9101,2025-03-08T03:20:13.404693-08:00,1686.0,10.81125,10811.25 +9102,2025-03-08T03:20:24.195835-08:00,1733.0,10.791142,10791.142 +9103,2025-03-08T03:20:35.003451-08:00,1693.0,10.807616,10807.616 +9104,2025-03-08T03:20:45.808430-08:00,1633.0,10.804979,10804.979 +9105,2025-03-08T03:20:56.617769-08:00,1722.0,10.809339,10809.339 +9106,2025-03-08T03:21:07.413582-08:00,1682.0,10.795813,10795.813 +9107,2025-03-08T03:21:18.223610-08:00,1695.0,10.810028,10810.028 +9108,2025-03-08T03:21:29.015677-08:00,1735.0,10.792067,10792.067 +9109,2025-03-08T03:21:39.821450-08:00,1711.0,10.805773,10805.773 +9110,2025-03-08T03:21:50.621449-08:00,1650.0,10.799999,10799.999 +9111,2025-03-08T03:22:01.424726-08:00,1734.0,10.803277,10803.277 +9112,2025-03-08T03:22:12.231451-08:00,1664.0,10.806725,10806.725 +9113,2025-03-08T03:22:23.038453-08:00,1662.0,10.807002,10807.002 +9114,2025-03-08T03:22:33.835743-08:00,1690.0,10.79729,10797.29 +9115,2025-03-08T03:22:44.640732-08:00,1739.0,10.804989,10804.989 +9116,2025-03-08T03:22:55.447451-08:00,1669.0,10.806719,10806.719 +9117,2025-03-08T03:23:06.245459-08:00,1668.0,10.798008,10798.008 +9118,2025-03-08T03:23:17.053453-08:00,1634.0,10.807994,10807.994 +9119,2025-03-08T03:23:27.847577-08:00,1733.0,10.794124,10794.124 +9120,2025-03-08T03:23:38.657683-08:00,1689.0,10.810106,10810.106 +9121,2025-03-08T03:23:49.458461-08:00,1683.0,10.800778,10800.778 +9122,2025-03-08T03:24:00.263476-08:00,1739.0,10.805015,10805.015 +9123,2025-03-08T03:24:11.065746-08:00,1706.0,10.80227,10802.27 +9124,2025-03-08T03:24:21.879453-08:00,1737.0,10.813707,10813.707 +9125,2025-03-08T03:24:32.681522-08:00,1731.0,10.802069,10802.069 +9126,2025-03-08T03:24:43.486443-08:00,1739.0,10.804921,10804.921 +9127,2025-03-08T03:24:54.289487-08:00,1685.0,10.803044,10803.044 +9128,2025-03-08T03:25:05.097872-08:00,1735.0,10.808385,10808.385 +9129,2025-03-08T03:25:15.908323-08:00,1649.0,10.810451,10810.451 +9130,2025-03-08T03:25:26.711026-08:00,1718.0,10.802703,10802.703 +9131,2025-03-08T03:25:37.514641-08:00,1735.0,10.803615,10803.615 +9132,2025-03-08T03:25:48.314702-08:00,1728.0,10.800061,10800.061 +9133,2025-03-08T03:25:59.120005-08:00,1727.0,10.805303,10805.303 +9134,2025-03-08T03:26:09.924631-08:00,1690.0,10.804626,10804.626 +9135,2025-03-08T03:26:20.726774-08:00,1731.0,10.802143,10802.143 +9136,2025-03-08T03:26:31.531001-08:00,1734.0,10.804227,10804.227 +9137,2025-03-08T03:26:42.330957-08:00,1738.0,10.799956,10799.956 +9138,2025-03-08T03:26:53.136762-08:00,1719.0,10.805805,10805.805 +9139,2025-03-08T03:27:03.940005-08:00,1699.0,10.803243,10803.243 +9140,2025-03-08T03:27:14.744278-08:00,1739.0,10.804273,10804.273 +9141,2025-03-08T03:27:25.546745-08:00,1677.0,10.802467,10802.467 +9142,2025-03-08T03:27:36.343281-08:00,1715.0,10.796536,10796.536 +9143,2025-03-08T03:27:47.152778-08:00,1664.0,10.809497,10809.497 +9144,2025-03-08T03:27:57.955679-08:00,1718.0,10.802901,10802.901 +9145,2025-03-08T03:28:08.759010-08:00,1710.0,10.803331,10803.331 +9146,2025-03-08T03:28:19.569068-08:00,1739.0,10.810058,10810.058 +9147,2025-03-08T03:28:30.366808-08:00,1727.0,10.79774,10797.74 +9148,2025-03-08T03:28:41.163928-08:00,1680.0,10.79712,10797.12 +9149,2025-03-08T03:28:51.972762-08:00,1697.0,10.808834,10808.834 +9150,2025-03-08T03:29:02.768199-08:00,1739.0,10.795437,10795.437 +9151,2025-03-08T03:29:13.568724-08:00,1727.0,10.800525,10800.525 +9152,2025-03-08T03:29:24.378759-08:00,1650.0,10.810035,10810.035 +9153,2025-03-08T03:29:35.173759-08:00,1690.0,10.795,10795.0 +9154,2025-03-08T03:29:45.971434-08:00,1639.0,10.797675,10797.675 +9155,2025-03-08T03:29:56.770447-08:00,1690.0,10.799013,10799.013 +9156,2025-03-08T03:30:07.582847-08:00,1735.0,10.8124,10812.4 +9157,2025-03-08T03:30:18.382429-08:00,1708.0,10.799582,10799.582 +9158,2025-03-08T03:30:29.183441-08:00,1718.0,10.801012,10801.012 +9159,2025-03-08T03:30:39.984683-08:00,1654.0,10.801242,10801.242 +9160,2025-03-08T03:30:50.787519-08:00,1649.0,10.802836,10802.836 +9161,2025-03-08T03:31:01.596449-08:00,1707.0,10.80893,10808.93 +9162,2025-03-08T03:31:12.385455-08:00,1680.0,10.789006,10789.006 +9163,2025-03-08T03:31:23.196457-08:00,1703.0,10.811002,10811.002 +9164,2025-03-08T03:31:33.990684-08:00,1691.0,10.794227,10794.227 +9165,2025-03-08T03:31:44.796583-08:00,1697.0,10.805899,10805.899 +9166,2025-03-08T03:31:55.595454-08:00,1738.0,10.798871,10798.871 +9167,2025-03-08T03:32:06.402838-08:00,1664.0,10.807384,10807.384 +9168,2025-03-08T03:32:17.200147-08:00,1733.0,10.797309,10797.309 +9169,2025-03-08T03:32:28.010441-08:00,1646.0,10.810294,10810.294 +9170,2025-03-08T03:32:38.807453-08:00,1647.0,10.797012,10797.012 +9171,2025-03-08T03:32:49.618600-08:00,1725.0,10.811147,10811.147 +9172,2025-03-08T03:33:00.419506-08:00,1727.0,10.800906,10800.906 +9173,2025-03-08T03:33:11.224000-08:00,1722.0,10.804494,10804.494 +9174,2025-03-08T03:33:22.031450-08:00,1701.0,10.80745,10807.45 +9175,2025-03-08T03:33:32.825432-08:00,1675.0,10.793982,10793.982 +9176,2025-03-08T03:33:43.632661-08:00,1691.0,10.807229,10807.229 +9177,2025-03-08T03:33:54.429439-08:00,1722.0,10.796778,10796.778 +9178,2025-03-08T03:34:05.236434-08:00,1712.0,10.806995,10806.995 +9179,2025-03-08T03:34:16.038337-08:00,1725.0,10.801903,10801.903 +9180,2025-03-08T03:34:26.840505-08:00,1739.0,10.802168,10802.168 +9181,2025-03-08T03:34:37.644566-08:00,1683.0,10.804061,10804.061 +9182,2025-03-08T03:34:48.458661-08:00,1735.0,10.814095,10814.095 +9183,2025-03-08T03:34:59.255488-08:00,1698.0,10.796827,10796.827 +9184,2025-03-08T03:35:10.068686-08:00,1708.0,10.813198,10813.198 +9185,2025-03-08T03:35:20.873714-08:00,1687.0,10.805028,10805.028 +9186,2025-03-08T03:35:31.676447-08:00,1734.0,10.802733,10802.733 +9187,2025-03-08T03:35:42.479430-08:00,1727.0,10.802983,10802.983 +9188,2025-03-08T03:35:53.292728-08:00,1680.0,10.813298,10813.298 +9189,2025-03-08T03:36:04.098075-08:00,1699.0,10.805347,10805.347 +9190,2025-03-08T03:36:14.896510-08:00,1723.0,10.798435,10798.435 +9191,2025-03-08T03:36:25.705411-08:00,1683.0,10.808901,10808.901 +9192,2025-03-08T03:36:36.514720-08:00,1739.0,10.809309,10809.309 +9193,2025-03-08T03:36:47.316770-08:00,1707.0,10.80205,10802.05 +9194,2025-03-08T03:36:58.126784-08:00,1708.0,10.810014,10810.014 +9195,2025-03-08T03:37:08.929999-08:00,1728.0,10.803215,10803.215 +9196,2025-03-08T03:37:19.732941-08:00,1695.0,10.802942,10802.942 +9197,2025-03-08T03:37:30.541424-08:00,1741.0,10.808483,10808.483 +9198,2025-03-08T03:37:41.337138-08:00,1649.0,10.795714,10795.714 +9199,2025-03-08T03:37:52.142525-08:00,1682.0,10.805387,10805.387 +9200,2025-03-08T03:38:02.945992-08:00,1647.0,10.803467,10803.467 +9201,2025-03-08T03:38:13.749500-08:00,1697.0,10.803508,10803.508 +9202,2025-03-08T03:38:24.553394-08:00,1679.0,10.803894,10803.894 +9203,2025-03-08T03:38:35.351807-08:00,1651.0,10.798413,10798.413 +9204,2025-03-08T03:38:46.161927-08:00,1667.0,10.81012,10810.12 +9205,2025-03-08T03:38:56.966437-08:00,1738.0,10.80451,10804.51 +9206,2025-03-08T03:39:07.764784-08:00,1664.0,10.798347,10798.347 +9207,2025-03-08T03:39:18.578434-08:00,1718.0,10.81365,10813.65 +9208,2025-03-08T03:39:29.378444-08:00,1713.0,10.80001,10800.01 +9209,2025-03-08T03:39:40.186589-08:00,1648.0,10.808145,10808.145 +9210,2025-03-08T03:39:50.990449-08:00,1687.0,10.80386,10803.86 +9211,2025-03-08T03:40:01.794449-08:00,1734.0,10.804,10804.0 +9212,2025-03-08T03:40:12.591581-08:00,1735.0,10.797132,10797.132 +9213,2025-03-08T03:40:23.388440-08:00,1682.0,10.796859,10796.859 +9214,2025-03-08T03:40:34.190828-08:00,1739.0,10.802388,10802.388 +9215,2025-03-08T03:40:44.999457-08:00,1651.0,10.808629,10808.629 +9216,2025-03-08T03:40:55.794332-08:00,1728.0,10.794875,10794.875 +9217,2025-03-08T03:41:06.600657-08:00,1728.0,10.806325,10806.325 +9218,2025-03-08T03:41:17.400897-08:00,1741.0,10.80024,10800.24 +9219,2025-03-08T03:41:28.201999-08:00,1738.0,10.801102,10801.102 +9220,2025-03-08T03:41:39.006459-08:00,1646.0,10.80446,10804.46 +9221,2025-03-08T03:41:49.807755-08:00,1739.0,10.801296,10801.296 +9222,2025-03-08T03:42:00.611728-08:00,1697.0,10.803973,10803.973 +9223,2025-03-08T03:42:11.405497-08:00,1719.0,10.793769,10793.769 +9224,2025-03-08T03:42:22.212614-08:00,1680.0,10.807117,10807.117 +9225,2025-03-08T03:42:33.005430-08:00,1734.0,10.792816,10792.816 +9226,2025-03-08T03:42:43.808475-08:00,1727.0,10.803045,10803.045 +9227,2025-03-08T03:42:54.613176-08:00,1735.0,10.804701,10804.701 +9228,2025-03-08T03:43:05.409435-08:00,1741.0,10.796259,10796.259 +9229,2025-03-08T03:43:16.211672-08:00,1664.0,10.802237,10802.237 +9230,2025-03-08T03:43:27.007456-08:00,1730.0,10.795784,10795.784 +9231,2025-03-08T03:43:37.816441-08:00,1712.0,10.808985,10808.985 +9232,2025-03-08T03:43:48.616684-08:00,1741.0,10.800243,10800.243 +9233,2025-03-08T03:43:59.415563-08:00,1737.0,10.798879,10798.879 +9234,2025-03-08T03:44:10.205830-08:00,1653.0,10.790267,10790.267 +9235,2025-03-08T03:44:21.003710-08:00,1648.0,10.79788,10797.88 +9236,2025-03-08T03:44:31.806730-08:00,1721.0,10.80302,10803.02 +9237,2025-03-08T03:44:42.604452-08:00,1645.0,10.797722,10797.722 +9238,2025-03-08T03:44:53.401786-08:00,1737.0,10.797334,10797.334 +9239,2025-03-08T03:45:04.193451-08:00,1708.0,10.791665,10791.665 +9240,2025-03-08T03:45:14.992440-08:00,1705.0,10.798989,10798.989 +9241,2025-03-08T03:45:25.800703-08:00,1695.0,10.808263,10808.263 +9242,2025-03-08T03:45:36.601533-08:00,1682.0,10.80083,10800.83 +9243,2025-03-08T03:45:47.402445-08:00,1683.0,10.800912,10800.912 +9244,2025-03-08T03:45:58.209707-08:00,1669.0,10.807262,10807.262 +9245,2025-03-08T03:46:09.010585-08:00,1666.0,10.800878,10800.878 +9246,2025-03-08T03:46:19.811932-08:00,1740.0,10.801347,10801.347 +9247,2025-03-08T03:46:30.621617-08:00,1680.0,10.809685,10809.685 +9248,2025-03-08T03:46:41.422452-08:00,1691.0,10.800835,10800.835 +9249,2025-03-08T03:46:52.226420-08:00,1693.0,10.803968,10803.968 +9250,2025-03-08T03:47:03.027433-08:00,1735.0,10.801013,10801.013 +9251,2025-03-08T03:47:13.838488-08:00,1695.0,10.811055,10811.055 +9252,2025-03-08T03:47:24.642683-08:00,1665.0,10.804195,10804.195 +9253,2025-03-08T03:47:35.440571-08:00,1659.0,10.797888,10797.888 +9254,2025-03-08T03:47:46.242424-08:00,1733.0,10.801853,10801.853 +9255,2025-03-08T03:47:57.049449-08:00,1681.0,10.807025,10807.025 +9256,2025-03-08T03:48:07.844435-08:00,1734.0,10.794986,10794.986 +9257,2025-03-08T03:48:18.642577-08:00,1690.0,10.798142,10798.142 +9258,2025-03-08T03:48:29.445439-08:00,1657.0,10.802862,10802.862 +9259,2025-03-08T03:48:40.247455-08:00,1671.0,10.802016,10802.016 +9260,2025-03-08T03:48:51.045509-08:00,1717.0,10.798054,10798.054 +9261,2025-03-08T03:49:01.843496-08:00,1683.0,10.797987,10797.987 +9262,2025-03-08T03:49:12.646755-08:00,1716.0,10.803259,10803.259 +9263,2025-03-08T03:49:23.455134-08:00,1705.0,10.808379,10808.379 +9264,2025-03-08T03:49:34.254912-08:00,1680.0,10.799778,10799.778 +9265,2025-03-08T03:49:45.057448-08:00,1670.0,10.802536,10802.536 +9266,2025-03-08T03:49:55.860737-08:00,1648.0,10.803289,10803.289 +9267,2025-03-08T03:50:06.656891-08:00,1663.0,10.796154,10796.154 +9268,2025-03-08T03:50:17.470708-08:00,1663.0,10.813817,10813.817 +9269,2025-03-08T03:50:28.271452-08:00,1739.0,10.800744,10800.744 +9270,2025-03-08T03:50:39.073075-08:00,1728.0,10.801623,10801.623 +9271,2025-03-08T03:50:49.869755-08:00,1727.0,10.79668,10796.68 +9272,2025-03-08T03:51:00.672757-08:00,1727.0,10.803002,10803.002 +9273,2025-03-08T03:51:11.476765-08:00,1666.0,10.804008,10804.008 +9274,2025-03-08T03:51:22.281030-08:00,1688.0,10.804265,10804.265 +9275,2025-03-08T03:51:33.084005-08:00,1699.0,10.802975,10802.975 +9276,2025-03-08T03:51:43.891832-08:00,1719.0,10.807827,10807.827 +9277,2025-03-08T03:51:54.685715-08:00,1693.0,10.793883,10793.883 +9278,2025-03-08T03:52:05.486751-08:00,1654.0,10.801036,10801.036 +9279,2025-03-08T03:52:16.294207-08:00,1685.0,10.807456,10807.456 +9280,2025-03-08T03:52:27.094205-08:00,1707.0,10.799998,10799.998 +9281,2025-03-08T03:52:37.893634-08:00,1643.0,10.799429,10799.429 +9282,2025-03-08T03:52:48.702744-08:00,1662.0,10.80911,10809.11 +9283,2025-03-08T03:52:59.510718-08:00,1739.0,10.807974,10807.974 +9284,2025-03-08T03:53:10.312359-08:00,1738.0,10.801641,10801.641 +9285,2025-03-08T03:53:21.107565-08:00,1727.0,10.795206,10795.206 +9286,2025-03-08T03:53:31.907694-08:00,1712.0,10.800129,10800.129 +9287,2025-03-08T03:53:42.717998-08:00,1727.0,10.810304,10810.304 +9288,2025-03-08T03:53:53.520078-08:00,1674.0,10.80208,10802.08 +9289,2025-03-08T03:54:04.311450-08:00,1676.0,10.791372,10791.372 +9290,2025-03-08T03:54:15.120504-08:00,1735.0,10.809054,10809.054 +9291,2025-03-08T03:54:25.925659-08:00,1702.0,10.805155,10805.155 +9292,2025-03-08T03:54:36.721497-08:00,1648.0,10.795838,10795.838 +9293,2025-03-08T03:54:47.525504-08:00,1729.0,10.804007,10804.007 +9294,2025-03-08T03:54:58.334585-08:00,1697.0,10.809081,10809.081 +9295,2025-03-08T03:55:09.132451-08:00,1728.0,10.797866,10797.866 +9296,2025-03-08T03:55:19.940446-08:00,1733.0,10.807995,10807.995 +9297,2025-03-08T03:55:30.743501-08:00,1728.0,10.803055,10803.055 +9298,2025-03-08T03:55:41.552360-08:00,1673.0,10.808859,10808.859 +9299,2025-03-08T03:55:52.345641-08:00,1686.0,10.793281,10793.281 +9300,2025-03-08T03:56:03.147432-08:00,1701.0,10.801791,10801.791 +9301,2025-03-08T03:56:13.957893-08:00,1680.0,10.810461,10810.461 +9302,2025-03-08T03:56:24.765744-08:00,1709.0,10.807851,10807.851 +9303,2025-03-08T03:56:35.570744-08:00,1737.0,10.805,10805.0 +9304,2025-03-08T03:56:46.370784-08:00,1648.0,10.80004,10800.04 +9305,2025-03-08T03:56:57.170494-08:00,1709.0,10.79971,10799.71 +9306,2025-03-08T03:57:07.979631-08:00,1723.0,10.809137,10809.137 +9307,2025-03-08T03:57:18.772997-08:00,1680.0,10.793366,10793.366 +9308,2025-03-08T03:57:29.574441-08:00,1737.0,10.801444,10801.444 +9309,2025-03-08T03:57:40.384493-08:00,1733.0,10.810052,10810.052 +9310,2025-03-08T03:57:51.187456-08:00,1734.0,10.802963,10802.963 +9311,2025-03-08T03:58:01.983447-08:00,1691.0,10.795991,10795.991 +9312,2025-03-08T03:58:12.794453-08:00,1648.0,10.811006,10811.006 +9313,2025-03-08T03:58:23.596479-08:00,1680.0,10.802026,10802.026 +9314,2025-03-08T03:58:34.396451-08:00,1699.0,10.799972,10799.972 +9315,2025-03-08T03:58:45.202883-08:00,1715.0,10.806432,10806.432 +9316,2025-03-08T03:58:56.005456-08:00,1733.0,10.802573,10802.573 +9317,2025-03-08T03:59:06.816303-08:00,1707.0,10.810847,10810.847 +9318,2025-03-08T03:59:17.602645-08:00,1680.0,10.786342,10786.342 +9319,2025-03-08T03:59:28.405580-08:00,1653.0,10.802935,10802.935 +9320,2025-03-08T03:59:39.209477-08:00,1650.0,10.803897,10803.897 +9321,2025-03-08T03:59:50.012742-08:00,1728.0,10.803265,10803.265 +9322,2025-03-08T04:00:00.804457-08:00,1690.0,10.791715,10791.715 +9323,2025-03-08T04:00:11.608123-08:00,1722.0,10.803666,10803.666 +9324,2025-03-08T04:00:22.404452-08:00,1738.0,10.796329,10796.329 +9325,2025-03-08T04:00:33.213489-08:00,1733.0,10.809037,10809.037 +9326,2025-03-08T04:00:44.006444-08:00,1686.0,10.792955,10792.955 +9327,2025-03-08T04:00:54.813824-08:00,1680.0,10.80738,10807.38 +9328,2025-03-08T04:01:05.605984-08:00,1718.0,10.79216,10792.16 +9329,2025-03-08T04:01:16.415816-08:00,1714.0,10.809832,10809.832 +9330,2025-03-08T04:01:27.211792-08:00,1673.0,10.795976,10795.976 +9331,2025-03-08T04:01:38.011054-08:00,1729.0,10.799262,10799.262 +9332,2025-03-08T04:01:48.802451-08:00,1721.0,10.791397,10791.397 +9333,2025-03-08T04:01:59.610010-08:00,1721.0,10.807559,10807.559 +9334,2025-03-08T04:02:10.403761-08:00,1734.0,10.793751,10793.751 +9335,2025-03-08T04:02:21.211499-08:00,1713.0,10.807738,10807.738 +9336,2025-03-08T04:02:32.010508-08:00,1728.0,10.799009,10799.009 +9337,2025-03-08T04:02:42.808512-08:00,1697.0,10.798004,10798.004 +9338,2025-03-08T04:02:53.609786-08:00,1727.0,10.801274,10801.274 +9339,2025-03-08T04:03:04.409495-08:00,1721.0,10.799709,10799.709 +9340,2025-03-08T04:03:15.209575-08:00,1647.0,10.80008,10800.08 +9341,2025-03-08T04:03:26.002565-08:00,1722.0,10.79299,10792.99 +9342,2025-03-08T04:03:36.814310-08:00,1681.0,10.811745,10811.745 +9343,2025-03-08T04:03:47.606798-08:00,1738.0,10.792488,10792.488 +9344,2025-03-08T04:03:58.412973-08:00,1735.0,10.806175,10806.175 +9345,2025-03-08T04:04:09.207839-08:00,1731.0,10.794866,10794.866 +9346,2025-03-08T04:04:20.007784-08:00,1669.0,10.799945,10799.945 +9347,2025-03-08T04:04:30.810011-08:00,1682.0,10.802227,10802.227 +9348,2025-03-08T04:04:41.609498-08:00,1738.0,10.799487,10799.487 +9349,2025-03-08T04:04:52.401504-08:00,1735.0,10.792006,10792.006 +9350,2025-03-08T04:05:03.197442-08:00,1707.0,10.795938,10795.938 +9351,2025-03-08T04:05:13.995680-08:00,1679.0,10.798238,10798.238 +9352,2025-03-08T04:05:24.802875-08:00,1738.0,10.807195,10807.195 +9353,2025-03-08T04:05:35.603378-08:00,1664.0,10.800503,10800.503 +9354,2025-03-08T04:05:46.397053-08:00,1724.0,10.793675,10793.675 +9355,2025-03-08T04:05:57.193803-08:00,1683.0,10.79675,10796.75 +9356,2025-03-08T04:06:07.988173-08:00,1715.0,10.79437,10794.37 +9357,2025-03-08T04:06:18.792756-08:00,1687.0,10.804583,10804.583 +9358,2025-03-08T04:06:29.596128-08:00,1730.0,10.803372,10803.372 +9359,2025-03-08T04:06:40.393067-08:00,1723.0,10.796939,10796.939 +9360,2025-03-08T04:06:51.188072-08:00,1735.0,10.795005,10795.005 +9361,2025-03-08T04:07:01.993072-08:00,1728.0,10.805,10805.0 +9362,2025-03-08T04:07:12.792056-08:00,1735.0,10.798984,10798.984 +9363,2025-03-08T04:07:23.590066-08:00,1727.0,10.79801,10798.01 +9364,2025-03-08T04:07:34.392263-08:00,1721.0,10.802197,10802.197 +9365,2025-03-08T04:07:45.191555-08:00,1680.0,10.799292,10799.292 +9366,2025-03-08T04:07:55.985399-08:00,1682.0,10.793844,10793.844 +9367,2025-03-08T04:08:06.793207-08:00,1647.0,10.807808,10807.808 +9368,2025-03-08T04:08:17.597316-08:00,1737.0,10.804109,10804.109 +9369,2025-03-08T04:08:28.398342-08:00,1690.0,10.801026,10801.026 +9370,2025-03-08T04:08:39.191118-08:00,1728.0,10.792776,10792.776 +9371,2025-03-08T04:08:50.000405-08:00,1671.0,10.809287,10809.287 +9372,2025-03-08T04:09:00.802401-08:00,1714.0,10.801996,10801.996 +9373,2025-03-08T04:09:11.607207-08:00,1673.0,10.804806,10804.806 +9374,2025-03-08T04:09:22.405305-08:00,1651.0,10.798098,10798.098 +9375,2025-03-08T04:09:33.208386-08:00,1651.0,10.803081,10803.081 +9376,2025-03-08T04:09:44.011573-08:00,1648.0,10.803187,10803.187 +9377,2025-03-08T04:09:54.824065-08:00,1682.0,10.812492,10812.492 +9378,2025-03-08T04:10:05.623451-08:00,1674.0,10.799386,10799.386 +9379,2025-03-08T04:10:16.419390-08:00,1733.0,10.795939,10795.939 +9380,2025-03-08T04:10:27.229415-08:00,1694.0,10.810025,10810.025 +9381,2025-03-08T04:10:38.026348-08:00,1680.0,10.796933,10796.933 +9382,2025-03-08T04:10:48.834479-08:00,1670.0,10.808131,10808.131 +9383,2025-03-08T04:10:59.644078-08:00,1694.0,10.809599,10809.599 +9384,2025-03-08T04:11:10.442646-08:00,1731.0,10.798568,10798.568 +9385,2025-03-08T04:11:21.240356-08:00,1732.0,10.79771,10797.71 +9386,2025-03-08T04:11:32.044229-08:00,1689.0,10.803873,10803.873 +9387,2025-03-08T04:11:42.846760-08:00,1663.0,10.802531,10802.531 +9388,2025-03-08T04:11:53.644131-08:00,1665.0,10.797371,10797.371 +9389,2025-03-08T04:12:04.448738-08:00,1646.0,10.804607,10804.607 +9390,2025-03-08T04:12:15.245293-08:00,1714.0,10.796555,10796.555 +9391,2025-03-08T04:12:26.043066-08:00,1733.0,10.797773,10797.773 +9392,2025-03-08T04:12:36.856386-08:00,1673.0,10.81332,10813.32 +9393,2025-03-08T04:12:47.660812-08:00,1685.0,10.804426,10804.426 +9394,2025-03-08T04:12:58.464318-08:00,1735.0,10.803506,10803.506 +9395,2025-03-08T04:13:09.261092-08:00,1730.0,10.796774,10796.774 +9396,2025-03-08T04:13:20.065068-08:00,1733.0,10.803976,10803.976 +9397,2025-03-08T04:13:30.874473-08:00,1662.0,10.809405,10809.405 +9398,2025-03-08T04:13:41.671067-08:00,1735.0,10.796594,10796.594 +9399,2025-03-08T04:13:52.477240-08:00,1710.0,10.806173,10806.173 +9400,2025-03-08T04:14:03.277271-08:00,1735.0,10.800031,10800.031 +9401,2025-03-08T04:14:14.087685-08:00,1690.0,10.810414,10810.414 +9402,2025-03-08T04:14:24.883253-08:00,1711.0,10.795568,10795.568 +9403,2025-03-08T04:14:35.695372-08:00,1691.0,10.812119,10812.119 +9404,2025-03-08T04:14:46.497522-08:00,1689.0,10.80215,10802.15 +9405,2025-03-08T04:14:57.302368-08:00,1729.0,10.804846,10804.846 +9406,2025-03-08T04:15:08.108847-08:00,1659.0,10.806479,10806.479 +9407,2025-03-08T04:15:18.911626-08:00,1655.0,10.802779,10802.779 +9408,2025-03-08T04:15:29.709453-08:00,1691.0,10.797827,10797.827 +9409,2025-03-08T04:15:40.517387-08:00,1702.0,10.807934,10807.934 +9410,2025-03-08T04:15:51.315743-08:00,1712.0,10.798356,10798.356 +9411,2025-03-08T04:16:02.123583-08:00,1701.0,10.80784,10807.84 +9412,2025-03-08T04:16:12.935327-08:00,1648.0,10.811744,10811.744 +9413,2025-03-08T04:16:23.727452-08:00,1713.0,10.792125,10792.125 +9414,2025-03-08T04:16:34.535190-08:00,1731.0,10.807738,10807.738 +9415,2025-03-08T04:16:45.339424-08:00,1639.0,10.804234,10804.234 +9416,2025-03-08T04:16:56.148503-08:00,1703.0,10.809079,10809.079 +9417,2025-03-08T04:17:06.945415-08:00,1731.0,10.796912,10796.912 +9418,2025-03-08T04:17:17.752459-08:00,1733.0,10.807044,10807.044 +9419,2025-03-08T04:17:28.562077-08:00,1711.0,10.809618,10809.618 +9420,2025-03-08T04:17:39.359655-08:00,1664.0,10.797578,10797.578 +9421,2025-03-08T04:17:50.165071-08:00,1685.0,10.805416,10805.416 +9422,2025-03-08T04:18:00.967553-08:00,1712.0,10.802482,10802.482 +9423,2025-03-08T04:18:11.775245-08:00,1685.0,10.807692,10807.692 +9424,2025-03-08T04:18:22.576399-08:00,1648.0,10.801154,10801.154 +9425,2025-03-08T04:18:33.390104-08:00,1724.0,10.813705,10813.705 +9426,2025-03-08T04:18:44.186168-08:00,1681.0,10.796064,10796.064 +9427,2025-03-08T04:18:54.995308-08:00,1663.0,10.80914,10809.14 +9428,2025-03-08T04:19:05.794062-08:00,1733.0,10.798754,10798.754 +9429,2025-03-08T04:19:16.600280-08:00,1721.0,10.806218,10806.218 +9430,2025-03-08T04:19:27.405283-08:00,1652.0,10.805003,10805.003 +9431,2025-03-08T04:19:38.218292-08:00,1732.0,10.813009,10813.009 +9432,2025-03-08T04:19:49.016383-08:00,1686.0,10.798091,10798.091 +9433,2025-03-08T04:19:59.820066-08:00,1717.0,10.803683,10803.683 +9434,2025-03-08T04:20:10.629586-08:00,1690.0,10.80952,10809.52 +9435,2025-03-08T04:20:21.424056-08:00,1675.0,10.79447,10794.47 +9436,2025-03-08T04:20:32.235072-08:00,1731.0,10.811016,10811.016 +9437,2025-03-08T04:20:43.039063-08:00,1679.0,10.803991,10803.991 +9438,2025-03-08T04:20:53.841069-08:00,1731.0,10.802006,10802.006 +9439,2025-03-08T04:21:04.647066-08:00,1680.0,10.805997,10805.997 +9440,2025-03-08T04:21:15.447061-08:00,1712.0,10.799995,10799.995 +9441,2025-03-08T04:21:26.256285-08:00,1680.0,10.809224,10809.224 +9442,2025-03-08T04:21:37.050061-08:00,1712.0,10.793776,10793.776 +9443,2025-03-08T04:21:47.863046-08:00,1718.0,10.812985,10812.985 +9444,2025-03-08T04:21:58.666329-08:00,1675.0,10.803283,10803.283 +9445,2025-03-08T04:22:09.473060-08:00,1732.0,10.806731,10806.731 +9446,2025-03-08T04:22:20.268236-08:00,1733.0,10.795176,10795.176 +9447,2025-03-08T04:22:31.072546-08:00,1729.0,10.80431,10804.31 +9448,2025-03-08T04:22:41.882151-08:00,1719.0,10.809605,10809.605 +9449,2025-03-08T04:22:52.683119-08:00,1712.0,10.800968,10800.968 +9450,2025-03-08T04:23:03.480338-08:00,1730.0,10.797219,10797.219 +9451,2025-03-08T04:23:14.289295-08:00,1716.0,10.808957,10808.957 +9452,2025-03-08T04:23:25.088050-08:00,1686.0,10.798755,10798.755 +9453,2025-03-08T04:23:35.893189-08:00,1699.0,10.805139,10805.139 +9454,2025-03-08T04:23:46.690196-08:00,1651.0,10.797007,10797.007 +9455,2025-03-08T04:23:57.491068-08:00,1635.0,10.800872,10800.872 +9456,2025-03-08T04:24:08.296049-08:00,1646.0,10.804981,10804.981 +9457,2025-03-08T04:24:19.094065-08:00,1649.0,10.798016,10798.016 +9458,2025-03-08T04:24:29.895285-08:00,1726.0,10.80122,10801.22 +9459,2025-03-08T04:24:40.694322-08:00,1638.0,10.799037,10799.037 +9460,2025-03-08T04:24:51.497376-08:00,1731.0,10.803054,10803.054 +9461,2025-03-08T04:25:02.311064-08:00,1721.0,10.813688,10813.688 +9462,2025-03-08T04:25:13.112272-08:00,1667.0,10.801208,10801.208 +9463,2025-03-08T04:25:23.913075-08:00,1718.0,10.800803,10800.803 +9464,2025-03-08T04:25:34.721145-08:00,1683.0,10.80807,10808.07 +9465,2025-03-08T04:25:45.520057-08:00,1697.0,10.798912,10798.912 +9466,2025-03-08T04:25:56.335062-08:00,1729.0,10.815005,10815.005 +9467,2025-03-08T04:26:07.130324-08:00,1729.0,10.795262,10795.262 +9468,2025-03-08T04:26:17.946034-08:00,1665.0,10.81571,10815.71 +9469,2025-03-08T04:26:28.745391-08:00,1685.0,10.799357,10799.357 +9470,2025-03-08T04:26:39.556562-08:00,1731.0,10.811171,10811.171 +9471,2025-03-08T04:26:50.355217-08:00,1719.0,10.798655,10798.655 +9472,2025-03-08T04:27:01.165107-08:00,1729.0,10.80989,10809.89 +9473,2025-03-08T04:27:11.967040-08:00,1670.0,10.801933,10801.933 +9474,2025-03-08T04:27:22.770407-08:00,1728.0,10.803367,10803.367 +9475,2025-03-08T04:27:33.582344-08:00,1707.0,10.811937,10811.937 +9476,2025-03-08T04:27:44.389382-08:00,1648.0,10.807038,10807.038 +9477,2025-03-08T04:27:55.193452-08:00,1731.0,10.80407,10804.07 +9478,2025-03-08T04:28:05.998758-08:00,1718.0,10.805306,10805.306 +9479,2025-03-08T04:28:16.806703-08:00,1732.0,10.807945,10807.945 +9480,2025-03-08T04:28:27.610074-08:00,1732.0,10.803371,10803.371 +9481,2025-03-08T04:28:38.422341-08:00,1635.0,10.812267,10812.267 +9482,2025-03-08T04:28:49.221067-08:00,1642.0,10.798726,10798.726 +9483,2025-03-08T04:29:00.030723-08:00,1729.0,10.809656,10809.656 +9484,2025-03-08T04:29:10.824207-08:00,1697.0,10.793484,10793.484 +9485,2025-03-08T04:29:21.632350-08:00,1728.0,10.808143,10808.143 +9486,2025-03-08T04:29:32.439060-08:00,1725.0,10.80671,10806.71 +9487,2025-03-08T04:29:43.242114-08:00,1666.0,10.803054,10803.054 +9488,2025-03-08T04:29:54.040464-08:00,1673.0,10.79835,10798.35 +9489,2025-03-08T04:30:04.849058-08:00,1645.0,10.808594,10808.594 +9490,2025-03-08T04:30:15.652359-08:00,1701.0,10.803301,10803.301 +9491,2025-03-08T04:30:26.456059-08:00,1645.0,10.8037,10803.7 +9492,2025-03-08T04:30:37.254200-08:00,1732.0,10.798141,10798.141 +9493,2025-03-08T04:30:48.056378-08:00,1724.0,10.802178,10802.178 +9494,2025-03-08T04:30:58.859327-08:00,1731.0,10.802949,10802.949 +9495,2025-03-08T04:31:09.663415-08:00,1713.0,10.804088,10804.088 +9496,2025-03-08T04:31:20.466122-08:00,1721.0,10.802707,10802.707 +9497,2025-03-08T04:31:31.275197-08:00,1702.0,10.809075,10809.075 +9498,2025-03-08T04:31:42.074070-08:00,1722.0,10.798873,10798.873 +9499,2025-03-08T04:31:52.877066-08:00,1723.0,10.802996,10802.996 +9500,2025-03-08T04:32:03.677378-08:00,1681.0,10.800312,10800.312 +9501,2025-03-08T04:32:14.472417-08:00,1729.0,10.795039,10795.039 +9502,2025-03-08T04:32:25.283074-08:00,1661.0,10.810657,10810.657 +9503,2025-03-08T04:32:36.078845-08:00,1685.0,10.795771,10795.771 +9504,2025-03-08T04:32:46.879329-08:00,1706.0,10.800484,10800.484 +9505,2025-03-08T04:32:57.692330-08:00,1712.0,10.813001,10813.001 +9506,2025-03-08T04:33:08.498070-08:00,1645.0,10.80574,10805.74 +9507,2025-03-08T04:33:19.296388-08:00,1681.0,10.798318,10798.318 +9508,2025-03-08T04:33:30.100284-08:00,1689.0,10.803896,10803.896 +9509,2025-03-08T04:33:40.906419-08:00,1677.0,10.806135,10806.135 +9510,2025-03-08T04:33:51.710066-08:00,1727.0,10.803647,10803.647 +9511,2025-03-08T04:34:02.521067-08:00,1695.0,10.811001,10811.001 +9512,2025-03-08T04:34:13.321291-08:00,1685.0,10.800224,10800.224 +9513,2025-03-08T04:34:24.128067-08:00,1715.0,10.806776,10806.776 +9514,2025-03-08T04:34:34.936065-08:00,1729.0,10.807998,10807.998 +9515,2025-03-08T04:34:45.739140-08:00,1639.0,10.803075,10803.075 +9516,2025-03-08T04:34:56.540588-08:00,1706.0,10.801448,10801.448 +9517,2025-03-08T04:35:07.351066-08:00,1702.0,10.810478,10810.478 +9518,2025-03-08T04:35:18.155053-08:00,1689.0,10.803987,10803.987 +9519,2025-03-08T04:35:28.953220-08:00,1731.0,10.798167,10798.167 +9520,2025-03-08T04:35:39.763122-08:00,1664.0,10.809902,10809.902 +9521,2025-03-08T04:35:50.571625-08:00,1730.0,10.808503,10808.503 +9522,2025-03-08T04:36:01.380058-08:00,1690.0,10.808433,10808.433 +9523,2025-03-08T04:36:12.180068-08:00,1725.0,10.80001,10800.01 +9524,2025-03-08T04:36:22.987062-08:00,1693.0,10.806994,10806.994 +9525,2025-03-08T04:36:33.796800-08:00,1729.0,10.809738,10809.738 +9526,2025-03-08T04:36:44.603873-08:00,1682.0,10.807073,10807.073 +9527,2025-03-08T04:36:55.417343-08:00,1649.0,10.81347,10813.47 +9528,2025-03-08T04:37:06.223057-08:00,1636.0,10.805714,10805.714 +9529,2025-03-08T04:37:17.027047-08:00,1731.0,10.80399,10803.99 +9530,2025-03-08T04:37:27.830753-08:00,1730.0,10.803706,10803.706 +9531,2025-03-08T04:37:38.629208-08:00,1663.0,10.798455,10798.455 +9532,2025-03-08T04:37:49.430399-08:00,1729.0,10.801191,10801.191 +9533,2025-03-08T04:38:00.238326-08:00,1729.0,10.807927,10807.927 +9534,2025-03-08T04:38:11.044278-08:00,1721.0,10.805952,10805.952 +9535,2025-03-08T04:38:21.846206-08:00,1677.0,10.801928,10801.928 +9536,2025-03-08T04:38:32.650121-08:00,1665.0,10.803915,10803.915 +9537,2025-03-08T04:38:43.447075-08:00,1661.0,10.796954,10796.954 +9538,2025-03-08T04:38:54.256412-08:00,1703.0,10.809337,10809.337 +9539,2025-03-08T04:39:05.064297-08:00,1730.0,10.807885,10807.885 +9540,2025-03-08T04:39:15.863066-08:00,1702.0,10.798769,10798.769 +9541,2025-03-08T04:39:37.469164-08:00,1659.0,21.606098,21606.098 +9542,2025-03-08T04:39:48.283049-08:00,1649.0,10.813885,10813.885 +9543,2025-03-08T04:39:59.091044-08:00,1717.0,10.807995,10807.995 +9544,2025-03-08T04:40:09.895275-08:00,1694.0,10.804231,10804.231 +9545,2025-03-08T04:40:20.698072-08:00,1711.0,10.802797,10802.797 +9546,2025-03-08T04:40:31.507061-08:00,1723.0,10.808989,10808.989 +9547,2025-03-08T04:40:42.317482-08:00,1680.0,10.810421,10810.421 +9548,2025-03-08T04:40:53.113346-08:00,1730.0,10.795864,10795.864 +9549,2025-03-08T04:41:03.925113-08:00,1728.0,10.811767,10811.767 +9550,2025-03-08T04:41:14.731577-08:00,1647.0,10.806464,10806.464 +9551,2025-03-08T04:41:25.546201-08:00,1661.0,10.814624,10814.624 +9552,2025-03-08T04:41:36.344194-08:00,1727.0,10.797993,10797.993 +9553,2025-03-08T04:41:47.144386-08:00,1721.0,10.800192,10800.192 +9554,2025-03-08T04:41:57.958453-08:00,1709.0,10.814067,10814.067 +9555,2025-03-08T04:42:08.760214-08:00,1653.0,10.801761,10801.761 +9556,2025-03-08T04:42:19.569120-08:00,1671.0,10.808906,10808.906 +9557,2025-03-08T04:42:30.381296-08:00,1687.0,10.812176,10812.176 +9558,2025-03-08T04:42:41.198074-08:00,1643.0,10.816778,10816.778 +9559,2025-03-08T04:42:52.007050-08:00,1716.0,10.808976,10808.976 +9560,2025-03-08T04:43:02.817173-08:00,1648.0,10.810123,10810.123 +9561,2025-03-08T04:43:13.626708-08:00,1725.0,10.809535,10809.535 +9562,2025-03-08T04:43:24.437064-08:00,1730.0,10.810356,10810.356 +9563,2025-03-08T04:43:35.237074-08:00,1728.0,10.80001,10800.01 +9564,2025-03-08T04:43:46.050133-08:00,1677.0,10.813059,10813.059 +9565,2025-03-08T04:43:56.855073-08:00,1685.0,10.80494,10804.94 +9566,2025-03-08T04:44:07.668218-08:00,1722.0,10.813145,10813.145 +9567,2025-03-08T04:44:18.474045-08:00,1673.0,10.805827,10805.827 +9568,2025-03-08T04:44:29.277197-08:00,1709.0,10.803152,10803.152 +9569,2025-03-08T04:44:40.091098-08:00,1731.0,10.813901,10813.901 +9570,2025-03-08T04:44:50.888068-08:00,1728.0,10.79697,10796.97 +9571,2025-03-08T04:45:01.698115-08:00,1721.0,10.810047,10810.047 +9572,2025-03-08T04:45:12.506211-08:00,1729.0,10.808096,10808.096 +9573,2025-03-08T04:45:23.313341-08:00,1631.0,10.80713,10807.13 +9574,2025-03-08T04:45:34.114028-08:00,1707.0,10.800687,10800.687 +9575,2025-03-08T04:45:44.925326-08:00,1680.0,10.811298,10811.298 +9576,2025-03-08T04:45:55.721833-08:00,1694.0,10.796507,10796.507 +9577,2025-03-08T04:46:06.523740-08:00,1724.0,10.801907,10801.907 +9578,2025-03-08T04:46:17.336674-08:00,1712.0,10.812934,10812.934 +9579,2025-03-08T04:46:28.130165-08:00,1642.0,10.793491,10793.491 +9580,2025-03-08T04:46:38.944435-08:00,1681.0,10.81427,10814.27 +9581,2025-03-08T04:46:49.741401-08:00,1714.0,10.796966,10796.966 +9582,2025-03-08T04:47:00.551405-08:00,1669.0,10.810004,10810.004 +9583,2025-03-08T04:47:11.361070-08:00,1654.0,10.809665,10809.665 +9584,2025-03-08T04:47:22.164123-08:00,1648.0,10.803053,10803.053 +9585,2025-03-08T04:47:32.966049-08:00,1726.0,10.801926,10801.926 +9586,2025-03-08T04:47:43.774105-08:00,1683.0,10.808056,10808.056 +9587,2025-03-08T04:47:54.590066-08:00,1697.0,10.815961,10815.961 +9588,2025-03-08T04:48:05.393058-08:00,1723.0,10.802992,10802.992 +9589,2025-03-08T04:48:16.196062-08:00,1723.0,10.803004,10803.004 +9590,2025-03-08T04:48:27.002065-08:00,1654.0,10.806003,10806.003 +9591,2025-03-08T04:48:37.804054-08:00,1711.0,10.801989,10801.989 +9592,2025-03-08T04:48:48.615186-08:00,1677.0,10.811132,10811.132 +9593,2025-03-08T04:48:59.416101-08:00,1681.0,10.800915,10800.915 +9594,2025-03-08T04:49:10.223358-08:00,1685.0,10.807257,10807.257 +9595,2025-03-08T04:49:21.033649-08:00,1666.0,10.810291,10810.291 +9596,2025-03-08T04:49:31.830481-08:00,1702.0,10.796832,10796.832 +9597,2025-03-08T04:49:42.639545-08:00,1680.0,10.809064,10809.064 +9598,2025-03-08T04:49:53.448731-08:00,1726.0,10.809186,10809.186 +9599,2025-03-08T04:50:04.245809-08:00,1730.0,10.797078,10797.078 +9600,2025-03-08T04:50:15.047913-08:00,1637.0,10.802104,10802.104 +9601,2025-03-08T04:50:25.858378-08:00,1682.0,10.810465,10810.465 +9602,2025-03-08T04:50:36.650130-08:00,1728.0,10.791752,10791.752 +9603,2025-03-08T04:50:47.454184-08:00,1713.0,10.804054,10804.054 +9604,2025-03-08T04:50:58.263247-08:00,1680.0,10.809063,10809.063 +9605,2025-03-08T04:51:09.065870-08:00,1644.0,10.802623,10802.623 +9606,2025-03-08T04:51:19.875615-08:00,1721.0,10.809745,10809.745 +9607,2025-03-08T04:51:30.690302-08:00,1731.0,10.814687,10814.687 +9608,2025-03-08T04:51:41.487374-08:00,1652.0,10.797072,10797.072 +9609,2025-03-08T04:51:52.298106-08:00,1717.0,10.810732,10810.732 +9610,2025-03-08T04:52:03.118045-08:00,1678.0,10.819939,10819.939 +9611,2025-03-08T04:52:13.924322-08:00,1694.0,10.806277,10806.277 +9612,2025-03-08T04:52:24.739172-08:00,1680.0,10.81485,10814.85 +9613,2025-03-08T04:52:35.548359-08:00,1727.0,10.809187,10809.187 +9614,2025-03-08T04:52:46.358405-08:00,1709.0,10.810046,10810.046 +9615,2025-03-08T04:52:57.154369-08:00,1730.0,10.795964,10795.964 +9616,2025-03-08T04:53:07.964399-08:00,1728.0,10.81003,10810.03 +9617,2025-03-08T04:53:18.780420-08:00,1689.0,10.816021,10816.021 +9618,2025-03-08T04:53:29.581065-08:00,1646.0,10.800645,10800.645 +9619,2025-03-08T04:53:40.387060-08:00,1723.0,10.805995,10805.995 +9620,2025-03-08T04:53:51.195055-08:00,1715.0,10.807995,10807.995 +9621,2025-03-08T04:54:02.011185-08:00,1713.0,10.81613,10816.13 +9622,2025-03-08T04:54:12.812294-08:00,1644.0,10.801109,10801.109 +9623,2025-03-08T04:54:23.628402-08:00,1682.0,10.816108,10816.108 +9624,2025-03-08T04:54:34.443123-08:00,1729.0,10.814721,10814.721 +9625,2025-03-08T04:54:45.245421-08:00,1712.0,10.802298,10802.298 +9626,2025-03-08T04:54:56.061066-08:00,1708.0,10.815645,10815.645 +9627,2025-03-08T04:54:57.123703-08:00,1708.0,1.062637,1062.637 +9628,2025-03-08T04:55:06.870050-08:00,1729.0,9.746347,9746.347 +9629,2025-03-08T04:55:17.682041-08:00,1726.0,10.811991,10811.991 +9630,2025-03-08T04:55:28.491353-08:00,1670.0,10.809312,10809.312 +9631,2025-03-08T04:55:39.302656-08:00,1710.0,10.811303,10811.303 +9632,2025-03-08T04:55:50.116315-08:00,1695.0,10.813659,10813.659 +9633,2025-03-08T04:56:00.919458-08:00,1630.0,10.803143,10803.143 +9634,2025-03-08T04:56:11.734244-08:00,1723.0,10.814786,10814.786 +9635,2025-03-08T04:56:22.537061-08:00,1643.0,10.802817,10802.817 +9636,2025-03-08T04:56:33.352043-08:00,1725.0,10.814982,10814.982 +9637,2025-03-08T04:56:44.159065-08:00,1728.0,10.807022,10807.022 +9638,2025-03-08T04:56:54.971252-08:00,1631.0,10.812187,10812.187 +9639,2025-03-08T04:57:05.774370-08:00,1719.0,10.803118,10803.118 +9640,2025-03-08T04:57:16.592431-08:00,1697.0,10.818061,10818.061 +9641,2025-03-08T04:57:27.402062-08:00,1675.0,10.809631,10809.631 +9642,2025-03-08T04:57:38.212066-08:00,1730.0,10.810004,10810.004 +9643,2025-03-08T04:57:49.018725-08:00,1637.0,10.806659,10806.659 +9644,2025-03-08T04:57:59.828808-08:00,1719.0,10.810083,10810.083 +9645,2025-03-08T04:58:10.643064-08:00,1729.0,10.814256,10814.256 +9646,2025-03-08T04:58:21.453010-08:00,1726.0,10.809946,10809.946 +9647,2025-03-08T04:58:32.257077-08:00,1711.0,10.804067,10804.067 +9648,2025-03-08T04:58:43.065646-08:00,1719.0,10.808569,10808.569 +9649,2025-03-08T04:58:53.875014-08:00,1725.0,10.809368,10809.368 +9650,2025-03-08T04:59:04.679067-08:00,1691.0,10.804053,10804.053 +9651,2025-03-08T04:59:15.482389-08:00,1633.0,10.803322,10803.322 +9652,2025-03-08T04:59:26.290065-08:00,1675.0,10.807676,10807.676 +9653,2025-03-08T04:59:37.099326-08:00,1680.0,10.809261,10809.261 +9654,2025-03-08T04:59:47.916765-08:00,1691.0,10.817439,10817.439 +9655,2025-03-08T04:59:58.727274-08:00,1711.0,10.810509,10810.509 +9656,2025-03-08T05:00:09.529111-08:00,1727.0,10.801837,10801.837 +9657,2025-03-08T05:00:20.339727-08:00,1694.0,10.810616,10810.616 +9658,2025-03-08T05:00:31.155454-08:00,1671.0,10.815727,10815.727 +9659,2025-03-08T05:00:41.964059-08:00,1683.0,10.808605,10808.605 +9660,2025-03-08T05:00:52.778297-08:00,1730.0,10.814238,10814.238 +9661,2025-03-08T05:01:03.590049-08:00,1690.0,10.811752,10811.752 +9662,2025-03-08T05:01:14.396360-08:00,1682.0,10.806311,10806.311 +9663,2025-03-08T05:01:25.205068-08:00,1724.0,10.808708,10808.708 +9664,2025-03-08T05:01:36.020425-08:00,1730.0,10.815357,10815.357 +9665,2025-03-08T05:01:46.829399-08:00,1727.0,10.808974,10808.974 +9666,2025-03-08T05:01:57.636323-08:00,1712.0,10.806924,10806.924 +9667,2025-03-08T05:02:08.436092-08:00,1701.0,10.799769,10799.769 +9668,2025-03-08T05:02:19.251061-08:00,1695.0,10.814969,10814.969 +9669,2025-03-08T05:02:30.053063-08:00,1645.0,10.802002,10802.002 +9670,2025-03-08T05:02:40.850320-08:00,1662.0,10.797257,10797.257 +9671,2025-03-08T05:02:51.670433-08:00,1699.0,10.820113,10820.113 +9672,2025-03-08T05:03:02.480066-08:00,1727.0,10.809633,10809.633 +9673,2025-03-08T05:03:13.283072-08:00,1678.0,10.803006,10803.006 +9674,2025-03-08T05:03:24.100356-08:00,1712.0,10.817284,10817.284 +9675,2025-03-08T05:03:34.905401-08:00,1664.0,10.805045,10805.045 +9676,2025-03-08T05:03:45.706813-08:00,1686.0,10.801412,10801.412 +9677,2025-03-08T05:03:56.522578-08:00,1731.0,10.815765,10815.765 +9678,2025-03-08T05:04:07.332064-08:00,1694.0,10.809486,10809.486 +9679,2025-03-08T05:04:18.132051-08:00,1728.0,10.799987,10799.987 +9680,2025-03-08T05:04:28.941067-08:00,1729.0,10.809016,10809.016 +9681,2025-03-08T05:04:39.749050-08:00,1646.0,10.807983,10807.983 +9682,2025-03-08T05:04:50.570434-08:00,1633.0,10.821384,10821.384 +9683,2025-03-08T05:05:01.378817-08:00,1683.0,10.808383,10808.383 +9684,2025-03-08T05:05:12.188413-08:00,1659.0,10.809596,10809.596 +9685,2025-03-08T05:05:22.996453-08:00,1723.0,10.80804,10808.04 +9686,2025-03-08T05:05:33.803050-08:00,1727.0,10.806597,10806.597 +9687,2025-03-08T05:05:44.610236-08:00,1682.0,10.807186,10807.186 +9688,2025-03-08T05:05:55.419480-08:00,1712.0,10.809244,10809.244 +9689,2025-03-08T05:06:06.228167-08:00,1641.0,10.808687,10808.687 +9690,2025-03-08T05:06:17.041144-08:00,1725.0,10.812977,10812.977 +9691,2025-03-08T05:06:27.843309-08:00,1726.0,10.802165,10802.165 +9692,2025-03-08T05:06:38.651157-08:00,1682.0,10.807848,10807.848 +9693,2025-03-08T05:06:49.459561-08:00,1727.0,10.808404,10808.404 +9694,2025-03-08T05:07:00.268375-08:00,1719.0,10.808814,10808.814 +9695,2025-03-08T05:07:11.076683-08:00,1674.0,10.808308,10808.308 +9696,2025-03-08T05:07:21.878580-08:00,1644.0,10.801897,10801.897 +9697,2025-03-08T05:07:32.688531-08:00,1687.0,10.809951,10809.951 +9698,2025-03-08T05:07:43.497960-08:00,1674.0,10.809429,10809.429 +9699,2025-03-08T05:07:54.294451-08:00,1724.0,10.796491,10796.491 +9700,2025-03-08T05:08:05.104512-08:00,1634.0,10.810061,10810.061 +9701,2025-03-08T05:08:15.914673-08:00,1717.0,10.810161,10810.161 +9702,2025-03-08T05:08:26.715911-08:00,1713.0,10.801238,10801.238 +9703,2025-03-08T05:08:37.525151-08:00,1723.0,10.80924,10809.24 +9704,2025-03-08T05:08:48.330356-08:00,1729.0,10.805205,10805.205 +9705,2025-03-08T05:08:59.142161-08:00,1722.0,10.811805,10811.805 +9706,2025-03-08T05:09:09.958214-08:00,1727.0,10.816053,10816.053 +9707,2025-03-08T05:09:20.771287-08:00,1685.0,10.813073,10813.073 +9708,2025-03-08T05:09:31.576464-08:00,1670.0,10.805177,10805.177 +9709,2025-03-08T05:09:42.386493-08:00,1681.0,10.810029,10810.029 +9710,2025-03-08T05:09:53.204431-08:00,1690.0,10.817938,10817.938 +9711,2025-03-08T05:10:04.008252-08:00,1683.0,10.803821,10803.821 +9712,2025-03-08T05:10:14.817434-08:00,1642.0,10.809182,10809.182 +9713,2025-03-08T05:10:25.621161-08:00,1725.0,10.803727,10803.727 +9714,2025-03-08T05:10:36.426767-08:00,1671.0,10.805606,10805.606 +9715,2025-03-08T05:10:47.239316-08:00,1677.0,10.812549,10812.549 +9716,2025-03-08T05:10:58.059456-08:00,1683.0,10.82014,10820.14 +9717,2025-03-08T05:11:07.774757-08:00,1653.0,9.715301,9715.301 +9718,2025-03-08T05:11:08.866417-08:00,1651.0,1.09166,1091.66 +9719,2025-03-08T05:11:19.675379-08:00,1717.0,10.808962,10808.962 +9720,2025-03-08T05:11:30.484161-08:00,1685.0,10.808782,10808.782 +9721,2025-03-08T05:11:41.295153-08:00,1728.0,10.810992,10810.992 +9722,2025-03-08T05:11:52.109275-08:00,1728.0,10.814122,10814.122 +9723,2025-03-08T05:12:02.911496-08:00,1650.0,10.802221,10802.221 +9724,2025-03-08T05:12:13.715521-08:00,1691.0,10.804025,10804.025 +9725,2025-03-08T05:12:24.524908-08:00,1732.0,10.809387,10809.387 +9726,2025-03-08T05:12:35.338523-08:00,1728.0,10.813615,10813.615 +9727,2025-03-08T05:12:46.142370-08:00,1691.0,10.803847,10803.847 +9728,2025-03-08T05:12:56.957155-08:00,1733.0,10.814785,10814.785 +9729,2025-03-08T05:13:07.764161-08:00,1730.0,10.807006,10807.006 +9730,2025-03-08T05:13:18.568223-08:00,1675.0,10.804062,10804.062 +9731,2025-03-08T05:13:29.382162-08:00,1694.0,10.813939,10813.939 +9732,2025-03-08T05:13:40.195314-08:00,1718.0,10.813152,10813.152 +9733,2025-03-08T05:13:51.001665-08:00,1709.0,10.806351,10806.351 +9734,2025-03-08T05:14:01.810484-08:00,1727.0,10.808819,10808.819 +9735,2025-03-08T05:14:12.620040-08:00,1639.0,10.809556,10809.556 +9736,2025-03-08T05:14:23.427167-08:00,1729.0,10.807127,10807.127 +9737,2025-03-08T05:14:34.233151-08:00,1728.0,10.805984,10805.984 +9738,2025-03-08T05:14:45.034415-08:00,1719.0,10.801264,10801.264 +9739,2025-03-08T05:14:55.846156-08:00,1648.0,10.811741,10811.741 +9740,2025-03-08T05:15:06.664316-08:00,1711.0,10.81816,10818.16 +9741,2025-03-08T05:15:17.474190-08:00,1726.0,10.809874,10809.874 +9742,2025-03-08T05:15:28.282740-08:00,1671.0,10.80855,10808.55 +9743,2025-03-08T05:15:39.087963-08:00,1727.0,10.805223,10805.223 +9744,2025-03-08T05:15:49.900773-08:00,1671.0,10.81281,10812.81 +9745,2025-03-08T05:16:00.710021-08:00,1729.0,10.809248,10809.248 +9746,2025-03-08T05:16:11.518172-08:00,1673.0,10.808151,10808.151 +9747,2025-03-08T05:16:22.326145-08:00,1703.0,10.807973,10807.973 +9748,2025-03-08T05:16:33.129365-08:00,1726.0,10.80322,10803.22 +9749,2025-03-08T05:16:43.932165-08:00,1725.0,10.8028,10802.8 +9750,2025-03-08T05:16:54.742156-08:00,1681.0,10.809991,10809.991 +9751,2025-03-08T05:17:05.541157-08:00,1633.0,10.799001,10799.001 +9752,2025-03-08T05:17:16.349480-08:00,1697.0,10.808323,10808.323 +9753,2025-03-08T05:17:27.145160-08:00,1730.0,10.79568,10795.68 +9754,2025-03-08T05:17:37.955157-08:00,1686.0,10.809997,10809.997 +9755,2025-03-08T05:17:48.765136-08:00,1685.0,10.809979,10809.979 +9756,2025-03-08T05:17:59.574287-08:00,1729.0,10.809151,10809.151 +9757,2025-03-08T05:18:10.383690-08:00,1660.0,10.809403,10809.403 +9758,2025-03-08T05:18:21.190524-08:00,1700.0,10.806834,10806.834 +9759,2025-03-08T05:18:31.996149-08:00,1727.0,10.805625,10805.625 +9760,2025-03-08T05:18:42.796514-08:00,1726.0,10.800365,10800.365 +9761,2025-03-08T05:18:53.609060-08:00,1726.0,10.812546,10812.546 +9762,2025-03-08T05:19:04.407987-08:00,1723.0,10.798927,10798.927 +9763,2025-03-08T05:19:15.214696-08:00,1731.0,10.806709,10806.709 +9764,2025-03-08T05:19:26.018317-08:00,1726.0,10.803621,10803.621 +9765,2025-03-08T05:19:36.831506-08:00,1728.0,10.813189,10813.189 +9766,2025-03-08T05:19:47.635276-08:00,1726.0,10.80377,10803.77 +9767,2025-03-08T05:19:58.441657-08:00,1653.0,10.806381,10806.381 +9768,2025-03-08T05:20:09.249167-08:00,1701.0,10.80751,10807.51 +9769,2025-03-08T05:20:20.056167-08:00,1722.0,10.807,10807.0 +9770,2025-03-08T05:20:30.871296-08:00,1644.0,10.815129,10815.129 +9771,2025-03-08T05:20:41.674200-08:00,1724.0,10.802904,10802.904 +9772,2025-03-08T05:20:52.483246-08:00,1680.0,10.809046,10809.046 +9773,2025-03-08T05:21:03.292478-08:00,1699.0,10.809232,10809.232 +9774,2025-03-08T05:21:14.100703-08:00,1712.0,10.808225,10808.225 +9775,2025-03-08T05:21:24.910354-08:00,1701.0,10.809651,10809.651 +9776,2025-03-08T05:21:35.721149-08:00,1658.0,10.810795,10810.795 +9777,2025-03-08T05:21:46.534412-08:00,1730.0,10.813263,10813.263 +9778,2025-03-08T05:21:57.338265-08:00,1709.0,10.803853,10803.853 +9779,2025-03-08T05:22:08.157420-08:00,1731.0,10.819155,10819.155 +9780,2025-03-08T05:22:18.960541-08:00,1716.0,10.803121,10803.121 +9781,2025-03-08T05:22:29.775481-08:00,1729.0,10.81494,10814.94 +9782,2025-03-08T05:22:40.573481-08:00,1721.0,10.798,10798.0 +9783,2025-03-08T05:22:51.383010-08:00,1663.0,10.809529,10809.529 +9784,2025-03-08T05:23:02.197261-08:00,1681.0,10.814251,10814.251 +9785,2025-03-08T05:23:13.004337-08:00,1667.0,10.807076,10807.076 +9786,2025-03-08T05:23:23.814390-08:00,1728.0,10.810053,10810.053 +9787,2025-03-08T05:23:34.615160-08:00,1730.0,10.80077,10800.77 +9788,2025-03-08T05:23:45.416157-08:00,1695.0,10.800997,10800.997 +9789,2025-03-08T05:23:56.224463-08:00,1680.0,10.808306,10808.306 +9790,2025-03-08T05:24:07.042418-08:00,1712.0,10.817955,10817.955 +9791,2025-03-08T05:24:17.842184-08:00,1682.0,10.799766,10799.766 +9792,2025-03-08T05:24:28.651094-08:00,1664.0,10.80891,10808.91 +9793,2025-03-08T05:24:39.459724-08:00,1726.0,10.80863,10808.63 +9794,2025-03-08T05:24:50.259791-08:00,1689.0,10.800067,10800.067 +9795,2025-03-08T05:25:01.076170-08:00,1691.0,10.816379,10816.379 +9796,2025-03-08T05:25:11.875465-08:00,1695.0,10.799295,10799.295 +9797,2025-03-08T05:25:22.680174-08:00,1648.0,10.804709,10804.709 +9798,2025-03-08T05:25:33.488200-08:00,1700.0,10.808026,10808.026 +9799,2025-03-08T05:25:44.296566-08:00,1653.0,10.808366,10808.366 +9800,2025-03-08T05:25:55.096214-08:00,1728.0,10.799648,10799.648 +9801,2025-03-08T05:26:05.897442-08:00,1708.0,10.801228,10801.228 +9802,2025-03-08T05:26:16.701780-08:00,1714.0,10.804338,10804.338 +9803,2025-03-08T05:26:27.505374-08:00,1663.0,10.803594,10803.594 +9804,2025-03-08T05:26:38.319156-08:00,1697.0,10.813782,10813.782 +9805,2025-03-08T05:26:49.117167-08:00,1723.0,10.798011,10798.011 +9806,2025-03-08T05:26:59.926297-08:00,1689.0,10.80913,10809.13 +9807,2025-03-08T05:27:10.728151-08:00,1681.0,10.801854,10801.854 +9808,2025-03-08T05:27:21.527390-08:00,1707.0,10.799239,10799.239 +9809,2025-03-08T05:27:32.342633-08:00,1638.0,10.815243,10815.243 +9810,2025-03-08T05:27:43.137157-08:00,1727.0,10.794524,10794.524 +9811,2025-03-08T05:27:53.940414-08:00,1680.0,10.803257,10803.257 +9812,2025-03-08T05:28:04.751129-08:00,1648.0,10.810715,10810.715 +9813,2025-03-08T05:28:15.550162-08:00,1710.0,10.799033,10799.033 +9814,2025-03-08T05:28:26.357158-08:00,1734.0,10.806996,10806.996 +9815,2025-03-08T05:28:37.161153-08:00,1691.0,10.803995,10803.995 +9816,2025-03-08T05:28:47.970291-08:00,1725.0,10.809138,10809.138 +9817,2025-03-08T05:28:58.779135-08:00,1712.0,10.808844,10808.844 +9818,2025-03-08T05:29:09.587361-08:00,1680.0,10.808226,10808.226 +9819,2025-03-08T05:29:20.390640-08:00,1718.0,10.803279,10803.279 +9820,2025-03-08T05:29:31.195218-08:00,1729.0,10.804578,10804.578 +9821,2025-03-08T05:29:41.991908-08:00,1687.0,10.79669,10796.69 +9822,2025-03-08T05:29:52.801184-08:00,1699.0,10.809276,10809.276 +9823,2025-03-08T05:30:03.603767-08:00,1690.0,10.802583,10802.583 +9824,2025-03-08T05:30:14.401380-08:00,1654.0,10.797613,10797.613 +9825,2025-03-08T05:30:25.217311-08:00,1729.0,10.815931,10815.931 +9826,2025-03-08T05:30:36.017736-08:00,1722.0,10.800425,10800.425 +9827,2025-03-08T05:30:46.818551-08:00,1728.0,10.800815,10800.815 +9828,2025-03-08T05:30:57.626475-08:00,1718.0,10.807924,10807.924 +9829,2025-03-08T05:31:08.435710-08:00,1683.0,10.809235,10809.235 +9830,2025-03-08T05:31:19.235385-08:00,1686.0,10.799675,10799.675 +9831,2025-03-08T05:31:30.035842-08:00,1648.0,10.800457,10800.457 +9832,2025-03-08T05:31:40.846167-08:00,1648.0,10.810325,10810.325 +9833,2025-03-08T05:31:51.643690-08:00,1661.0,10.797523,10797.523 +9834,2025-03-08T05:32:02.452212-08:00,1712.0,10.808522,10808.522 +9835,2025-03-08T05:32:13.266438-08:00,1731.0,10.814226,10814.226 +9836,2025-03-08T05:32:24.064165-08:00,1681.0,10.797727,10797.727 +9837,2025-03-08T05:32:34.878205-08:00,1711.0,10.81404,10814.04 +9838,2025-03-08T05:32:45.681402-08:00,1680.0,10.803197,10803.197 +9839,2025-03-08T05:32:56.489149-08:00,1721.0,10.807747,10807.747 +9840,2025-03-08T05:33:07.292153-08:00,1683.0,10.803004,10803.004 +9841,2025-03-08T05:33:18.105400-08:00,1731.0,10.813247,10813.247 +9842,2025-03-08T05:33:28.910163-08:00,1733.0,10.804763,10804.763 +9843,2025-03-08T05:33:39.708352-08:00,1648.0,10.798189,10798.189 +9844,2025-03-08T05:33:50.523182-08:00,1697.0,10.81483,10814.83 +9845,2025-03-08T05:34:01.322347-08:00,1684.0,10.799165,10799.165 +9846,2025-03-08T05:34:12.124156-08:00,1733.0,10.801809,10801.809 +9847,2025-03-08T05:34:22.938494-08:00,1657.0,10.814338,10814.338 +9848,2025-03-08T05:34:33.753619-08:00,1681.0,10.815125,10815.125 +9849,2025-03-08T05:34:44.554163-08:00,1731.0,10.800544,10800.544 +9850,2025-03-08T05:34:55.366385-08:00,1703.0,10.812222,10812.222 +9851,2025-03-08T05:35:06.174932-08:00,1680.0,10.808547,10808.547 +9852,2025-03-08T05:35:16.984404-08:00,1721.0,10.809472,10809.472 +9853,2025-03-08T05:35:27.787284-08:00,1711.0,10.80288,10802.88 +9854,2025-03-08T05:35:38.590157-08:00,1732.0,10.802873,10802.873 +9855,2025-03-08T05:35:49.396166-08:00,1728.0,10.806009,10806.009 +9856,2025-03-08T05:36:00.192354-08:00,1649.0,10.796188,10796.188 +9857,2025-03-08T05:36:11.000162-08:00,1694.0,10.807808,10807.808 +9858,2025-03-08T05:36:21.800295-08:00,1726.0,10.800133,10800.133 +9859,2025-03-08T05:36:32.612400-08:00,1732.0,10.812105,10812.105 +9860,2025-03-08T05:36:43.406157-08:00,1675.0,10.793757,10793.757 +9861,2025-03-08T05:36:54.205238-08:00,1682.0,10.799081,10799.081 +9862,2025-03-08T05:37:05.006171-08:00,1730.0,10.800933,10800.933 +9863,2025-03-08T05:37:15.814162-08:00,1677.0,10.807991,10807.991 +9864,2025-03-08T05:37:26.618228-08:00,1697.0,10.804066,10804.066 +9865,2025-03-08T05:37:37.420165-08:00,1693.0,10.801937,10801.937 +9866,2025-03-08T05:37:48.226144-08:00,1731.0,10.805979,10805.979 +9867,2025-03-08T05:37:59.039153-08:00,1721.0,10.813009,10813.009 +9868,2025-03-08T05:38:09.848194-08:00,1649.0,10.809041,10809.041 +9869,2025-03-08T05:38:20.651291-08:00,1648.0,10.803097,10803.097 +9870,2025-03-08T05:38:31.453243-08:00,1693.0,10.801952,10801.952 +9871,2025-03-08T05:38:42.252157-08:00,1726.0,10.798914,10798.914 +9872,2025-03-08T05:38:53.061206-08:00,1697.0,10.809049,10809.049 +9873,2025-03-08T05:39:03.870365-08:00,1724.0,10.809159,10809.159 +9874,2025-03-08T05:39:14.674588-08:00,1724.0,10.804223,10804.223 +9875,2025-03-08T05:39:25.476099-08:00,1693.0,10.801511,10801.511 +9876,2025-03-08T05:39:36.287471-08:00,1730.0,10.811372,10811.372 +9877,2025-03-08T05:39:47.092838-08:00,1681.0,10.805367,10805.367 +9878,2025-03-08T05:39:57.899163-08:00,1728.0,10.806325,10806.325 +9879,2025-03-08T05:40:08.702607-08:00,1681.0,10.803444,10803.444 +9880,2025-03-08T05:40:19.498729-08:00,1686.0,10.796122,10796.122 +9881,2025-03-08T05:40:30.308473-08:00,1657.0,10.809744,10809.744 +9882,2025-03-08T05:40:41.122160-08:00,1701.0,10.813687,10813.687 +9883,2025-03-08T05:40:51.931155-08:00,1716.0,10.808995,10808.995 +9884,2025-03-08T05:41:02.723426-08:00,1731.0,10.792271,10792.271 +9885,2025-03-08T05:41:13.533164-08:00,1707.0,10.809738,10809.738 +9886,2025-03-08T05:41:24.328169-08:00,1718.0,10.795005,10795.005 +9887,2025-03-08T05:41:35.138162-08:00,1689.0,10.809993,10809.993 +9888,2025-03-08T05:41:45.938302-08:00,1655.0,10.80014,10800.14 +9889,2025-03-08T05:41:56.745161-08:00,1734.0,10.806859,10806.859 +9890,2025-03-08T05:42:07.554156-08:00,1701.0,10.808995,10808.995 +9891,2025-03-08T05:42:18.362684-08:00,1681.0,10.808528,10808.528 +9892,2025-03-08T05:42:29.160130-08:00,1707.0,10.797446,10797.446 +9893,2025-03-08T05:42:39.966206-08:00,1730.0,10.806076,10806.076 +9894,2025-03-08T05:42:50.780155-08:00,1687.0,10.813949,10813.949 +9895,2025-03-08T05:43:01.581319-08:00,1715.0,10.801164,10801.164 +9896,2025-03-08T05:43:12.384154-08:00,1647.0,10.802835,10802.835 +9897,2025-03-08T05:43:23.201508-08:00,1697.0,10.817354,10817.354 +9898,2025-03-08T05:43:34.007359-08:00,1669.0,10.805851,10805.851 +9899,2025-03-08T05:43:44.807163-08:00,1697.0,10.799804,10799.804 +9900,2025-03-08T05:43:55.612820-08:00,1677.0,10.805657,10805.657 +9901,2025-03-08T05:44:06.417504-08:00,1650.0,10.804684,10804.684 +9902,2025-03-08T05:44:17.214237-08:00,1707.0,10.796733,10796.733 +9903,2025-03-08T05:44:28.025481-08:00,1712.0,10.811244,10811.244 +9904,2025-03-08T05:44:38.828766-08:00,1712.0,10.803285,10803.285 +9905,2025-03-08T05:44:49.627097-08:00,1733.0,10.798331,10798.331 +9906,2025-03-08T05:45:00.440510-08:00,1675.0,10.813413,10813.413 +9907,2025-03-08T05:45:11.239463-08:00,1732.0,10.798953,10798.953 +9908,2025-03-08T05:45:22.045833-08:00,1657.0,10.80637,10806.37 +9909,2025-03-08T05:45:32.851574-08:00,1718.0,10.805741,10805.741 +9910,2025-03-08T05:45:43.665928-08:00,1681.0,10.814354,10814.354 +9911,2025-03-08T05:45:54.469161-08:00,1707.0,10.803233,10803.233 +9912,2025-03-08T05:46:05.273400-08:00,1731.0,10.804239,10804.239 +9913,2025-03-08T05:46:16.075167-08:00,1664.0,10.801767,10801.767 +9914,2025-03-08T05:46:26.879151-08:00,1722.0,10.803984,10803.984 +9915,2025-03-08T05:46:37.684163-08:00,1727.0,10.805012,10805.012 +9916,2025-03-08T05:46:48.483148-08:00,1712.0,10.798985,10798.985 +9917,2025-03-08T05:46:59.297376-08:00,1733.0,10.814228,10814.228 +9918,2025-03-08T05:47:10.103150-08:00,1730.0,10.805774,10805.774 +9919,2025-03-08T05:47:20.911017-08:00,1690.0,10.807867,10807.867 +9920,2025-03-08T05:47:31.716400-08:00,1697.0,10.805383,10805.383 +9921,2025-03-08T05:47:42.516716-08:00,1647.0,10.800316,10800.316 +9922,2025-03-08T05:47:53.314407-08:00,1701.0,10.797691,10797.691 +9923,2025-03-08T05:48:04.123165-08:00,1683.0,10.808758,10808.758 +9924,2025-03-08T05:48:14.929145-08:00,1693.0,10.80598,10805.98 +9925,2025-03-08T05:48:25.733163-08:00,1731.0,10.804018,10804.018 +9926,2025-03-08T05:48:36.542465-08:00,1647.0,10.809302,10809.302 +9927,2025-03-08T05:48:47.349978-08:00,1714.0,10.807513,10807.513 +9928,2025-03-08T05:48:58.157553-08:00,1673.0,10.807575,10807.575 +9929,2025-03-08T05:49:08.967567-08:00,1716.0,10.810014,10810.014 +9930,2025-03-08T05:49:19.764740-08:00,1713.0,10.797173,10797.173 +9931,2025-03-08T05:49:30.580266-08:00,1733.0,10.815526,10815.526 +9932,2025-03-08T05:49:41.382167-08:00,1731.0,10.801901,10801.901 +9933,2025-03-08T05:49:52.180500-08:00,1727.0,10.798333,10798.333 +9934,2025-03-08T05:50:02.989710-08:00,1646.0,10.80921,10809.21 +9935,2025-03-08T05:50:13.791658-08:00,1699.0,10.801948,10801.948 +9936,2025-03-08T05:50:24.601777-08:00,1649.0,10.810119,10810.119 +9937,2025-03-08T05:50:35.405397-08:00,1689.0,10.80362,10803.62 +9938,2025-03-08T05:50:46.210446-08:00,1706.0,10.805049,10805.049 +9939,2025-03-08T05:50:57.008163-08:00,1733.0,10.797717,10797.717 +9940,2025-03-08T05:51:07.815336-08:00,1735.0,10.807173,10807.173 +9941,2025-03-08T05:51:18.620518-08:00,1648.0,10.805182,10805.182 +9942,2025-03-08T05:51:29.415161-08:00,1731.0,10.794643,10794.643 +9943,2025-03-08T05:51:40.214547-08:00,1687.0,10.799386,10799.386 +9944,2025-03-08T05:51:51.021770-08:00,1734.0,10.807223,10807.223 +9945,2025-03-08T05:52:01.819488-08:00,1675.0,10.797718,10797.718 +9946,2025-03-08T05:52:12.624215-08:00,1660.0,10.804727,10804.727 +9947,2025-03-08T05:52:23.422483-08:00,1736.0,10.798268,10798.268 +9948,2025-03-08T05:52:34.214613-08:00,1667.0,10.79213,10792.13 +9949,2025-03-08T05:52:45.021570-08:00,1647.0,10.806957,10806.957 +9950,2025-03-08T05:52:55.822221-08:00,1717.0,10.800651,10800.651 +9951,2025-03-08T05:53:06.628465-08:00,1695.0,10.806244,10806.244 +9952,2025-03-08T05:53:17.432179-08:00,1675.0,10.803714,10803.714 +9953,2025-03-08T05:53:28.239892-08:00,1659.0,10.807713,10807.713 +9954,2025-03-08T05:53:39.039237-08:00,1644.0,10.799345,10799.345 +9955,2025-03-08T05:53:49.841687-08:00,1685.0,10.80245,10802.45 +9956,2025-03-08T05:54:00.652508-08:00,1674.0,10.810821,10810.821 +9957,2025-03-08T05:54:11.446994-08:00,1735.0,10.794486,10794.486 +9958,2025-03-08T05:54:22.252595-08:00,1733.0,10.805601,10805.601 +9959,2025-03-08T05:54:33.061429-08:00,1727.0,10.808834,10808.834 +9960,2025-03-08T05:54:43.861489-08:00,1679.0,10.80006,10800.06 +9961,2025-03-08T05:54:52.892937-08:00,1733.0,9.031448,9031.448 +9962,2025-03-08T05:54:54.667027-08:00,1693.0,1.77409,1774.09 +9963,2025-03-08T05:55:05.459573-08:00,1661.0,10.792546,10792.546 +9964,2025-03-08T05:55:16.262170-08:00,1674.0,10.802597,10802.597 +9965,2025-03-08T05:55:27.062403-08:00,1637.0,10.800233,10800.233 +9966,2025-03-08T05:55:37.870151-08:00,1675.0,10.807748,10807.748 +9967,2025-03-08T05:55:48.670894-08:00,1728.0,10.800743,10800.743 +9968,2025-03-08T05:55:59.470226-08:00,1649.0,10.799332,10799.332 +9969,2025-03-08T05:56:10.274430-08:00,1695.0,10.804204,10804.204 +9970,2025-03-08T05:56:21.073155-08:00,1734.0,10.798725,10798.725 +9971,2025-03-08T05:56:31.879161-08:00,1706.0,10.806006,10806.006 +9972,2025-03-08T05:56:42.685159-08:00,1733.0,10.805998,10805.998 +9973,2025-03-08T05:56:53.485406-08:00,1640.0,10.800247,10800.247 +9974,2025-03-08T05:57:04.300703-08:00,1723.0,10.815297,10815.297 +9975,2025-03-08T05:57:15.100212-08:00,1681.0,10.799509,10799.509 +9976,2025-03-08T05:57:25.902420-08:00,1678.0,10.802208,10802.208 +9977,2025-03-08T05:57:36.703210-08:00,1733.0,10.80079,10800.79 +9978,2025-03-08T05:57:47.500156-08:00,1731.0,10.796946,10796.946 +9979,2025-03-08T05:57:58.293167-08:00,1691.0,10.793011,10793.011 +9980,2025-03-08T05:58:09.093167-08:00,1719.0,10.8,10800.0 +9981,2025-03-08T05:58:19.901278-08:00,1677.0,10.808111,10808.111 +9982,2025-03-08T05:58:30.699388-08:00,1698.0,10.79811,10798.11 +9983,2025-03-08T05:58:41.502164-08:00,1711.0,10.802776,10802.776 +9984,2025-03-08T05:58:52.311153-08:00,1707.0,10.808989,10808.989 +9985,2025-03-08T05:59:03.115653-08:00,1699.0,10.8045,10804.5 +9986,2025-03-08T05:59:13.916799-08:00,1731.0,10.801146,10801.146 +9987,2025-03-08T05:59:24.718230-08:00,1711.0,10.801431,10801.431 +9988,2025-03-08T05:59:35.524168-08:00,1685.0,10.805938,10805.938 +9989,2025-03-08T05:59:46.329488-08:00,1693.0,10.80532,10805.32 +9990,2025-03-08T05:59:57.129298-08:00,1707.0,10.79981,10799.81 +9991,2025-03-08T06:00:07.935399-08:00,1669.0,10.806101,10806.101 +9992,2025-03-08T06:00:18.748136-08:00,1675.0,10.812737,10812.737 +9993,2025-03-08T06:00:29.550858-08:00,1652.0,10.802722,10802.722 +9994,2025-03-08T06:00:40.355155-08:00,1727.0,10.804297,10804.297 +9995,2025-03-08T06:00:51.154285-08:00,1637.0,10.79913,10799.13 +9996,2025-03-08T06:01:01.960161-08:00,1711.0,10.805876,10805.876 +9997,2025-03-08T06:01:12.755154-08:00,1700.0,10.794993,10794.993 +9998,2025-03-08T06:01:23.562364-08:00,1734.0,10.80721,10807.21 +9999,2025-03-08T06:01:34.358149-08:00,1650.0,10.795785,10795.785 +10000,2025-03-08T06:01:45.163312-08:00,1733.0,10.805163,10805.163 +10001,2025-03-08T06:01:55.968191-08:00,1702.0,10.804879,10804.879 +10002,2025-03-08T06:02:06.768161-08:00,1680.0,10.79997,10799.97 +10003,2025-03-08T06:02:17.573479-08:00,1670.0,10.805318,10805.318 +10004,2025-03-08T06:02:28.386310-08:00,1694.0,10.812831,10812.831 +10005,2025-03-08T06:02:39.181389-08:00,1734.0,10.795079,10795.079 +10006,2025-03-08T06:02:49.993436-08:00,1725.0,10.812047,10812.047 +10007,2025-03-08T06:03:00.798151-08:00,1730.0,10.804715,10804.715 +10008,2025-03-08T06:03:11.598141-08:00,1648.0,10.79999,10799.99 +10009,2025-03-08T06:03:22.400319-08:00,1697.0,10.802178,10802.178 +10010,2025-03-08T06:03:33.205311-08:00,1657.0,10.804992,10804.992 +10011,2025-03-08T06:03:44.015399-08:00,1665.0,10.810088,10810.088 +10012,2025-03-08T06:03:54.811165-08:00,1738.0,10.795766,10795.766 +10013,2025-03-08T06:04:05.618161-08:00,1682.0,10.806996,10806.996 +10014,2025-03-08T06:04:16.418159-08:00,1683.0,10.799998,10799.998 +10015,2025-03-08T06:04:27.218486-08:00,1735.0,10.800327,10800.327 +10016,2025-03-08T06:04:38.020299-08:00,1662.0,10.801813,10801.813 +10017,2025-03-08T06:04:48.817403-08:00,1690.0,10.797104,10797.104 +10018,2025-03-08T06:04:59.622508-08:00,1690.0,10.805105,10805.105 +10019,2025-03-08T06:05:10.415167-08:00,1690.0,10.792659,10792.659 +10020,2025-03-08T06:05:21.228188-08:00,1737.0,10.813021,10813.021 +10021,2025-03-08T06:05:32.025154-08:00,1707.0,10.796966,10796.966 +10022,2025-03-08T06:05:42.870817-08:00,1643.0,10.845663,10845.663 +10023,2025-03-08T06:05:53.680016-08:00,1729.0,10.809199,10809.199 +10024,2025-03-08T06:06:04.485049-08:00,1709.0,10.805033,10805.033 +10025,2025-03-08T06:06:15.276912-08:00,1702.0,10.791863,10791.863 +10026,2025-03-08T06:06:26.085755-08:00,1711.0,10.808843,10808.843 +10027,2025-03-08T06:06:36.882394-08:00,1678.0,10.796639,10796.639 +10028,2025-03-08T06:06:47.688911-08:00,1696.0,10.806517,10806.517 +10029,2025-03-08T06:06:58.499128-08:00,1718.0,10.810217,10810.217 +10030,2025-03-08T06:07:09.298902-08:00,1669.0,10.799774,10799.774 +10031,2025-03-08T06:07:20.108903-08:00,1664.0,10.810001,10810.001 +10032,2025-03-08T06:07:30.904907-08:00,1725.0,10.796004,10796.004 +10033,2025-03-08T06:07:41.709377-08:00,1693.0,10.80447,10804.47 +10034,2025-03-08T06:07:52.509953-08:00,1734.0,10.800576,10800.576 +10035,2025-03-08T06:08:03.312885-08:00,1722.0,10.802932,10802.932 +10036,2025-03-08T06:08:14.112163-08:00,1730.0,10.799278,10799.278 +10037,2025-03-08T06:08:24.922129-08:00,1727.0,10.809966,10809.966 +10038,2025-03-08T06:08:35.727150-08:00,1735.0,10.805021,10805.021 +10039,2025-03-08T06:08:46.529901-08:00,1728.0,10.802751,10802.751 +10040,2025-03-08T06:08:57.329895-08:00,1680.0,10.799994,10799.994 +10041,2025-03-08T06:09:08.129215-08:00,1637.0,10.79932,10799.32 +10042,2025-03-08T06:09:18.932139-08:00,1667.0,10.802924,10802.924 +10043,2025-03-08T06:09:29.735030-08:00,1728.0,10.802891,10802.891 +10044,2025-03-08T06:09:40.525199-08:00,1651.0,10.790169,10790.169 +10045,2025-03-08T06:09:51.327622-08:00,1653.0,10.802423,10802.423 +10046,2025-03-08T06:10:02.133937-08:00,1663.0,10.806315,10806.315 +10047,2025-03-08T06:10:12.933634-08:00,1661.0,10.799697,10799.697 +10048,2025-03-08T06:10:23.733467-08:00,1662.0,10.799833,10799.833 +10049,2025-03-08T06:10:34.539193-08:00,1663.0,10.805726,10805.726 +10050,2025-03-08T06:10:45.346056-08:00,1725.0,10.806863,10806.863 +10051,2025-03-08T06:10:56.150529-08:00,1664.0,10.804473,10804.473 +10052,2025-03-08T06:11:06.948198-08:00,1729.0,10.797669,10797.669 +10053,2025-03-08T06:11:17.758468-08:00,1717.0,10.81027,10810.27 +10054,2025-03-08T06:11:28.555580-08:00,1712.0,10.797112,10797.112 +10055,2025-03-08T06:11:39.363246-08:00,1737.0,10.807666,10807.666 +10056,2025-03-08T06:11:50.171058-08:00,1722.0,10.807812,10807.812 +10057,2025-03-08T06:12:00.970248-08:00,1727.0,10.79919,10799.19 +10058,2025-03-08T06:12:11.772917-08:00,1727.0,10.802669,10802.669 +10059,2025-03-08T06:12:22.572187-08:00,1725.0,10.79927,10799.27 +10060,2025-03-08T06:12:33.368545-08:00,1723.0,10.796358,10796.358 +10061,2025-03-08T06:12:44.180125-08:00,1721.0,10.81158,10811.58 +10062,2025-03-08T06:12:54.986910-08:00,1719.0,10.806785,10806.785 +10063,2025-03-08T06:13:05.782496-08:00,1734.0,10.795586,10795.586 +10064,2025-03-08T06:13:16.586149-08:00,1731.0,10.803653,10803.653 +10065,2025-03-08T06:13:27.395261-08:00,1733.0,10.809112,10809.112 +10066,2025-03-08T06:13:38.199905-08:00,1735.0,10.804644,10804.644 +10067,2025-03-08T06:13:49.003189-08:00,1655.0,10.803284,10803.284 +10068,2025-03-08T06:13:59.810059-08:00,1738.0,10.80687,10806.87 +10069,2025-03-08T06:14:10.609259-08:00,1639.0,10.7992,10799.2 +10070,2025-03-08T06:14:21.418891-08:00,1666.0,10.809632,10809.632 +10071,2025-03-08T06:14:32.217862-08:00,1698.0,10.798971,10798.971 +10072,2025-03-08T06:14:43.023908-08:00,1674.0,10.806046,10806.046 +10073,2025-03-08T06:14:53.825301-08:00,1733.0,10.801393,10801.393 +10074,2025-03-08T06:15:04.629904-08:00,1663.0,10.804603,10804.603 +10075,2025-03-08T06:15:15.440289-08:00,1726.0,10.810385,10810.385 +10076,2025-03-08T06:15:26.237150-08:00,1723.0,10.796861,10796.861 +10077,2025-03-08T06:15:37.050256-08:00,1717.0,10.813106,10813.106 +10078,2025-03-08T06:15:47.853964-08:00,1735.0,10.803708,10803.708 +10079,2025-03-08T06:15:58.663230-08:00,1680.0,10.809266,10809.266 +10080,2025-03-08T06:16:09.467899-08:00,1735.0,10.804669,10804.669 +10081,2025-03-08T06:16:20.274455-08:00,1709.0,10.806556,10806.556 +10082,2025-03-08T06:16:31.080146-08:00,1648.0,10.805691,10805.691 +10083,2025-03-08T06:16:41.881907-08:00,1723.0,10.801761,10801.761 +10084,2025-03-08T06:16:52.693907-08:00,1718.0,10.812,10812.0 +10085,2025-03-08T06:17:03.495301-08:00,1721.0,10.801394,10801.394 +10086,2025-03-08T06:17:14.305333-08:00,1691.0,10.810032,10810.032 +10087,2025-03-08T06:17:25.116213-08:00,1729.0,10.81088,10810.88 +10088,2025-03-08T06:17:35.917228-08:00,1726.0,10.801015,10801.015 +10089,2025-03-08T06:17:46.720192-08:00,1729.0,10.802964,10802.964 +10090,2025-03-08T06:17:57.529442-08:00,1685.0,10.80925,10809.25 +10091,2025-03-08T06:18:08.341892-08:00,1727.0,10.81245,10812.45 +10092,2025-03-08T06:18:19.146949-08:00,1718.0,10.805057,10805.057 +10093,2025-03-08T06:18:29.947246-08:00,1670.0,10.800297,10800.297 +10094,2025-03-08T06:18:40.753082-08:00,1731.0,10.805836,10805.836 +10095,2025-03-08T06:18:51.556907-08:00,1722.0,10.803825,10803.825 +10096,2025-03-08T06:19:02.362374-08:00,1637.0,10.805467,10805.467 +10097,2025-03-08T06:19:13.157432-08:00,1683.0,10.795058,10795.058 +10098,2025-03-08T06:19:23.955246-08:00,1647.0,10.797814,10797.814 +10099,2025-03-08T06:19:34.752240-08:00,1691.0,10.796994,10796.994 +10100,2025-03-08T06:19:45.563279-08:00,1685.0,10.811039,10811.039 +10101,2025-03-08T06:19:56.359200-08:00,1741.0,10.795921,10795.921 +10102,2025-03-08T06:20:07.171821-08:00,1658.0,10.812621,10812.621 +10103,2025-03-08T06:20:17.967217-08:00,1651.0,10.795396,10795.396 +10104,2025-03-08T06:20:28.765238-08:00,1731.0,10.798021,10798.021 +10105,2025-03-08T06:20:39.578173-08:00,1741.0,10.812935,10812.935 +10106,2025-03-08T06:20:50.380365-08:00,1738.0,10.802192,10802.192 +10107,2025-03-08T06:21:01.188910-08:00,1738.0,10.808545,10808.545 +10108,2025-03-08T06:21:11.987485-08:00,1697.0,10.798575,10798.575 +10109,2025-03-08T06:21:22.792978-08:00,1701.0,10.805493,10805.493 +10110,2025-03-08T06:21:33.604892-08:00,1669.0,10.811914,10811.914 +10111,2025-03-08T06:21:44.404043-08:00,1679.0,10.799151,10799.151 +10112,2025-03-08T06:21:55.212473-08:00,1725.0,10.80843,10808.43 +10113,2025-03-08T06:22:06.012902-08:00,1741.0,10.800429,10800.429 +10114,2025-03-08T06:22:16.818906-08:00,1739.0,10.806004,10806.004 +10115,2025-03-08T06:22:27.626907-08:00,1738.0,10.808001,10808.001 +10116,2025-03-08T06:22:38.435139-08:00,1685.0,10.808232,10808.232 +10117,2025-03-08T06:22:49.251904-08:00,1698.0,10.816765,10816.765 +10118,2025-03-08T06:23:00.050979-08:00,1669.0,10.799075,10799.075 +10119,2025-03-08T06:23:10.861781-08:00,1703.0,10.810802,10810.802 +10120,2025-03-08T06:23:21.671465-08:00,1680.0,10.809684,10809.684 +10121,2025-03-08T06:23:32.471195-08:00,1735.0,10.79973,10799.73 +10122,2025-03-08T06:23:43.279297-08:00,1663.0,10.808102,10808.102 +10123,2025-03-08T06:23:54.092313-08:00,1727.0,10.813016,10813.016 +10124,2025-03-08T06:24:04.901403-08:00,1653.0,10.80909,10809.09 +10125,2025-03-08T06:24:15.709161-08:00,1719.0,10.807758,10807.758 +10126,2025-03-08T06:24:26.514911-08:00,1744.0,10.80575,10805.75 +10127,2025-03-08T06:24:37.323901-08:00,1721.0,10.80899,10808.99 +10128,2025-03-08T06:24:48.127126-08:00,1744.0,10.803225,10803.225 +10129,2025-03-08T06:24:58.941990-08:00,1743.0,10.814864,10814.864 +10130,2025-03-08T06:25:09.750423-08:00,1712.0,10.808433,10808.433 +10131,2025-03-08T06:25:20.563211-08:00,1731.0,10.812788,10812.788 +10132,2025-03-08T06:25:31.369514-08:00,1742.0,10.806303,10806.303 +10133,2025-03-08T06:25:42.167238-08:00,1691.0,10.797724,10797.724 +10134,2025-03-08T06:25:52.978297-08:00,1730.0,10.811059,10811.059 +10135,2025-03-08T06:26:03.785141-08:00,1745.0,10.806844,10806.844 +10136,2025-03-08T06:26:14.595133-08:00,1717.0,10.809992,10809.992 +10137,2025-03-08T06:26:25.402895-08:00,1744.0,10.807762,10807.762 +10138,2025-03-08T06:26:36.212063-08:00,1707.0,10.809168,10809.168 +10139,2025-03-08T06:26:47.031294-08:00,1744.0,10.819231,10819.231 +10140,2025-03-08T06:26:57.844516-08:00,1673.0,10.813222,10813.222 +10141,2025-03-08T06:27:08.649528-08:00,1660.0,10.805012,10805.012 +10142,2025-03-08T06:27:19.459911-08:00,1707.0,10.810383,10810.383 +10143,2025-03-08T06:27:30.266011-08:00,1712.0,10.8061,10806.1 +10144,2025-03-08T06:27:41.077118-08:00,1691.0,10.811107,10811.107 +10145,2025-03-08T06:27:51.882034-08:00,1745.0,10.804916,10804.916 +10146,2025-03-08T06:28:02.694905-08:00,1731.0,10.812871,10812.871 +10147,2025-03-08T06:28:13.506160-08:00,1747.0,10.811255,10811.255 +10148,2025-03-08T06:28:24.312956-08:00,1682.0,10.806796,10806.796 +10149,2025-03-08T06:28:35.121184-08:00,1719.0,10.808228,10808.228 +10150,2025-03-08T06:28:45.936275-08:00,1664.0,10.815091,10815.091 +10151,2025-03-08T06:28:56.752911-08:00,1744.0,10.816636,10816.636 +10152,2025-03-08T06:29:07.560030-08:00,1746.0,10.807119,10807.119 +10153,2025-03-08T06:29:18.381209-08:00,1671.0,10.821179,10821.179 +10154,2025-03-08T06:29:29.186489-08:00,1664.0,10.80528,10805.28 +10155,2025-03-08T06:29:39.998242-08:00,1749.0,10.811753,10811.753 +10156,2025-03-08T06:29:50.816132-08:00,1727.0,10.81789,10817.89 +10157,2025-03-08T06:30:01.626940-08:00,1744.0,10.810808,10810.808 +10158,2025-03-08T06:30:12.434949-08:00,1743.0,10.808009,10808.009 +10159,2025-03-08T06:30:23.246952-08:00,1712.0,10.812003,10812.003 +10160,2025-03-08T06:30:34.049910-08:00,1718.0,10.802958,10802.958 +10161,2025-03-08T06:30:44.864197-08:00,1691.0,10.814287,10814.287 +10162,2025-03-08T06:30:55.686095-08:00,1731.0,10.821898,10821.898 +10163,2025-03-08T06:31:06.491905-08:00,1755.0,10.80581,10805.81 +10164,2025-03-08T06:31:17.307906-08:00,1751.0,10.816001,10816.001 +10165,2025-03-08T06:31:28.119784-08:00,1749.0,10.811878,10811.878 +10166,2025-03-08T06:31:38.942909-08:00,1714.0,10.823125,10823.125 +10167,2025-03-08T06:31:49.753246-08:00,1719.0,10.810337,10810.337 +10168,2025-03-08T06:32:00.571154-08:00,1699.0,10.817908,10817.908 +10169,2025-03-08T06:32:11.369911-08:00,1753.0,10.798757,10798.757 +10170,2025-03-08T06:32:22.187640-08:00,1713.0,10.817729,10817.729 +10171,2025-03-08T06:32:32.998193-08:00,1711.0,10.810553,10810.553 +10172,2025-03-08T06:32:43.807885-08:00,1728.0,10.809692,10809.692 +10173,2025-03-08T06:32:54.617090-08:00,1668.0,10.809205,10809.205 +10174,2025-03-08T06:33:05.426242-08:00,1677.0,10.809152,10809.152 +10175,2025-03-08T06:33:16.235910-08:00,1695.0,10.809668,10809.668 +10176,2025-03-08T06:33:27.052957-08:00,1744.0,10.817047,10817.047 +10177,2025-03-08T06:33:37.855898-08:00,1715.0,10.802941,10802.941 +10178,2025-03-08T06:33:48.668176-08:00,1683.0,10.812278,10812.278 +10179,2025-03-08T06:33:59.482285-08:00,1758.0,10.814109,10814.109 +10180,2025-03-08T06:34:10.302119-08:00,1754.0,10.819834,10819.834 +10181,2025-03-08T06:34:21.109898-08:00,1729.0,10.807779,10807.779 +10182,2025-03-08T06:34:31.925639-08:00,1714.0,10.815741,10815.741 +10183,2025-03-08T06:34:42.739215-08:00,1758.0,10.813576,10813.576 +10184,2025-03-08T06:34:53.562071-08:00,1760.0,10.822856,10822.856 +10185,2025-03-08T06:35:04.362115-08:00,1755.0,10.800044,10800.044 +10186,2025-03-08T06:35:15.166219-08:00,1715.0,10.804104,10804.104 +10187,2025-03-08T06:35:25.987102-08:00,1715.0,10.820883,10820.883 +10188,2025-03-08T06:35:36.794384-08:00,1677.0,10.807282,10807.282 +10189,2025-03-08T06:35:47.607163-08:00,1746.0,10.812779,10812.779 +10190,2025-03-08T06:35:58.420915-08:00,1764.0,10.813752,10813.752 +10191,2025-03-08T06:36:09.235048-08:00,1754.0,10.814133,10814.133 +10192,2025-03-08T06:36:20.043159-08:00,1759.0,10.808111,10808.111 +10193,2025-03-08T06:36:30.867428-08:00,1714.0,10.824269,10824.269 +10194,2025-03-08T06:36:41.673885-08:00,1761.0,10.806457,10806.457 +10195,2025-03-08T06:36:52.491045-08:00,1707.0,10.81716,10817.16 +10196,2025-03-08T06:37:03.302949-08:00,1763.0,10.811904,10811.904 +10197,2025-03-08T06:37:14.111336-08:00,1754.0,10.808387,10808.387 +10198,2025-03-08T06:37:24.927911-08:00,1713.0,10.816575,10816.575 +10199,2025-03-08T06:37:35.741587-08:00,1712.0,10.813676,10813.676 +10200,2025-03-08T06:37:46.555197-08:00,1766.0,10.81361,10813.61 +10201,2025-03-08T06:37:57.369927-08:00,1703.0,10.81473,10814.73 +10202,2025-03-08T06:38:08.177051-08:00,1712.0,10.807124,10807.124 +10203,2025-03-08T06:38:18.987884-08:00,1770.0,10.810833,10810.833 +10204,2025-03-08T06:38:29.807343-08:00,1755.0,10.819459,10819.459 +10205,2025-03-08T06:38:40.619303-08:00,1717.0,10.81196,10811.96 +10206,2025-03-08T06:38:51.438988-08:00,1694.0,10.819685,10819.685 +10207,2025-03-08T06:39:02.247039-08:00,1743.0,10.808051,10808.051 +10208,2025-03-08T06:39:13.057134-08:00,1770.0,10.810095,10810.095 +10209,2025-03-08T06:39:23.875493-08:00,1764.0,10.818359,10818.359 +10210,2025-03-08T06:39:34.698911-08:00,1774.0,10.823418,10823.418 +10211,2025-03-08T06:39:45.509896-08:00,1701.0,10.810985,10810.985 +10212,2025-03-08T06:39:56.325142-08:00,1734.0,10.815246,10815.246 +10213,2025-03-08T06:40:07.134960-08:00,1758.0,10.809818,10809.818 +10214,2025-03-08T06:40:17.943240-08:00,1746.0,10.80828,10808.28 +10215,2025-03-08T06:40:28.764225-08:00,1755.0,10.820985,10820.985 +10216,2025-03-08T06:40:39.573540-08:00,1765.0,10.809315,10809.315 +10217,2025-03-08T06:40:50.392184-08:00,1686.0,10.818644,10818.644 +10218,2025-03-08T06:41:01.202918-08:00,1691.0,10.810734,10810.734 +10219,2025-03-08T06:41:12.027387-08:00,1690.0,10.824469,10824.469 +10220,2025-03-08T06:41:22.837906-08:00,1777.0,10.810519,10810.519 +10221,2025-03-08T06:41:33.650884-08:00,1693.0,10.812978,10812.978 +10222,2025-03-08T06:41:44.472669-08:00,1745.0,10.821785,10821.785 +10223,2025-03-08T06:41:55.293911-08:00,1729.0,10.821242,10821.242 +10224,2025-03-08T06:42:06.112089-08:00,1759.0,10.818178,10818.178 +10225,2025-03-08T06:42:16.916107-08:00,1711.0,10.804018,10804.018 +10226,2025-03-08T06:42:27.728040-08:00,1766.0,10.811933,10811.933 +10227,2025-03-08T06:42:38.544163-08:00,1739.0,10.816123,10816.123 +10228,2025-03-08T06:42:49.357183-08:00,1779.0,10.81302,10813.02 +10229,2025-03-08T06:43:00.177954-08:00,1728.0,10.820771,10820.771 +10230,2025-03-08T06:43:10.988909-08:00,1699.0,10.810955,10810.955 +10231,2025-03-08T06:43:21.805315-08:00,1781.0,10.816406,10816.406 +10232,2025-03-08T06:43:32.622459-08:00,1765.0,10.817144,10817.144 +10233,2025-03-08T06:43:43.439909-08:00,1744.0,10.81745,10817.45 +10234,2025-03-08T06:43:54.248211-08:00,1744.0,10.808302,10808.302 +10235,2025-03-08T06:44:05.068845-08:00,1722.0,10.820634,10820.634 +10236,2025-03-08T06:44:15.882037-08:00,1733.0,10.813192,10813.192 +10237,2025-03-08T06:44:26.700891-08:00,1778.0,10.818854,10818.854 +10238,2025-03-08T06:44:37.516128-08:00,1734.0,10.815237,10815.237 +10239,2025-03-08T06:44:48.326317-08:00,1699.0,10.810189,10810.189 +10240,2025-03-08T06:44:59.137228-08:00,1785.0,10.810911,10810.911 +10241,2025-03-08T06:45:09.955913-08:00,1702.0,10.818685,10818.685 +10242,2025-03-08T06:45:20.766178-08:00,1762.0,10.810265,10810.265 +10243,2025-03-08T06:45:31.586179-08:00,1775.0,10.820001,10820.001 +10244,2025-03-08T06:45:42.395081-08:00,1785.0,10.808902,10808.902 +10245,2025-03-08T06:45:53.213025-08:00,1712.0,10.817944,10817.944 +10246,2025-03-08T06:46:04.019236-08:00,1751.0,10.806211,10806.211 +10247,2025-03-08T06:46:14.833980-08:00,1789.0,10.814744,10814.744 +10248,2025-03-08T06:46:25.646911-08:00,1789.0,10.812931,10812.931 +10249,2025-03-08T06:46:36.450905-08:00,1745.0,10.803994,10803.994 +10250,2025-03-08T06:46:47.273211-08:00,1747.0,10.822306,10822.306 +10251,2025-03-08T06:46:58.084957-08:00,1745.0,10.811746,10811.746 +10252,2025-03-08T06:47:08.899232-08:00,1783.0,10.814275,10814.275 +10253,2025-03-08T06:47:19.712138-08:00,1776.0,10.812906,10812.906 +10254,2025-03-08T06:47:30.531211-08:00,1747.0,10.819073,10819.073 +10255,2025-03-08T06:47:41.355316-08:00,1726.0,10.824105,10824.105 +10256,2025-03-08T06:47:52.163911-08:00,1744.0,10.808595,10808.595 +10257,2025-03-08T06:48:02.983709-08:00,1734.0,10.819798,10819.798 +10258,2025-03-08T06:48:13.806861-08:00,1793.0,10.823152,10823.152 +10259,2025-03-08T06:48:24.620100-08:00,1794.0,10.813239,10813.239 +10260,2025-03-08T06:48:35.433156-08:00,1707.0,10.813056,10813.056 +10261,2025-03-08T06:48:46.260848-08:00,1767.0,10.827692,10827.692 +10262,2025-03-08T06:48:57.070213-08:00,1792.0,10.809365,10809.365 +10263,2025-03-08T06:49:07.891925-08:00,1794.0,10.821712,10821.712 +10264,2025-03-08T06:49:18.700937-08:00,1776.0,10.809012,10809.012 +10265,2025-03-08T06:49:29.522274-08:00,1759.0,10.821337,10821.337 +10266,2025-03-08T06:49:40.337365-08:00,1800.0,10.815091,10815.091 +10267,2025-03-08T06:49:51.148379-08:00,1764.0,10.811014,10811.014 +10268,2025-03-08T06:50:01.956301-08:00,1795.0,10.807922,10807.922 +10269,2025-03-08T06:50:12.777911-08:00,1773.0,10.82161,10821.61 +10270,2025-03-08T06:50:23.594278-08:00,1797.0,10.816367,10816.367 +10271,2025-03-08T06:50:34.406952-08:00,1776.0,10.812674,10812.674 +10272,2025-03-08T06:50:45.214052-08:00,1712.0,10.8071,10807.1 +10273,2025-03-08T06:50:56.024487-08:00,1765.0,10.810435,10810.435 +10274,2025-03-08T06:51:06.844132-08:00,1792.0,10.819645,10819.645 +10275,2025-03-08T06:51:17.654118-08:00,1767.0,10.809986,10809.986 +10276,2025-03-08T06:51:28.469165-08:00,1713.0,10.815047,10815.047 +10277,2025-03-08T06:51:39.282912-08:00,1803.0,10.813747,10813.747 +10278,2025-03-08T06:51:50.101971-08:00,1773.0,10.819059,10819.059 +10279,2025-03-08T06:52:00.916036-08:00,1761.0,10.814065,10814.065 +10280,2025-03-08T06:52:11.729230-08:00,1761.0,10.813194,10813.194 +10281,2025-03-08T06:52:22.541493-08:00,1805.0,10.812263,10812.263 +10282,2025-03-08T06:52:33.352132-08:00,1797.0,10.810639,10810.639 +10283,2025-03-08T06:52:44.166035-08:00,1794.0,10.813903,10813.903 +10284,2025-03-08T06:52:54.982911-08:00,1803.0,10.816876,10816.876 +10285,2025-03-08T06:53:05.807906-08:00,1762.0,10.824995,10824.995 +10286,2025-03-08T06:53:16.621228-08:00,1801.0,10.813322,10813.322 +10287,2025-03-08T06:53:27.439910-08:00,1751.0,10.818682,10818.682 +10288,2025-03-08T06:53:38.249119-08:00,1719.0,10.809209,10809.209 +10289,2025-03-08T06:53:49.076211-08:00,1755.0,10.827092,10827.092 +10290,2025-03-08T06:53:59.888886-08:00,1745.0,10.812675,10812.675 +10291,2025-03-08T06:54:10.705908-08:00,1771.0,10.817022,10817.022 +10292,2025-03-08T06:54:21.519494-08:00,1808.0,10.813586,10813.586 +10293,2025-03-08T06:54:32.341911-08:00,1807.0,10.822417,10822.417 +10294,2025-03-08T06:54:43.155897-08:00,1808.0,10.813986,10813.986 +10295,2025-03-08T06:54:53.966100-08:00,1808.0,10.810203,10810.203 +10296,2025-03-08T06:55:04.789310-08:00,1792.0,10.82321,10823.21 +10297,2025-03-08T06:55:15.605321-08:00,1786.0,10.816011,10816.011 +10298,2025-03-08T06:55:26.417913-08:00,1808.0,10.812592,10812.592 +10299,2025-03-08T06:55:37.237110-08:00,1731.0,10.819197,10819.197 +10300,2025-03-08T06:55:48.058059-08:00,1808.0,10.820949,10820.949 +10301,2025-03-08T06:55:58.876908-08:00,1782.0,10.818849,10818.849 +10302,2025-03-08T06:56:09.688963-08:00,1795.0,10.812055,10812.055 +10303,2025-03-08T06:56:20.507762-08:00,1811.0,10.818799,10818.799 +10304,2025-03-08T06:56:31.327912-08:00,1814.0,10.82015,10820.15 +10305,2025-03-08T06:56:42.142036-08:00,1767.0,10.814124,10814.124 +10306,2025-03-08T06:56:52.953156-08:00,1818.0,10.81112,10811.12 +10307,2025-03-08T06:57:03.769238-08:00,1799.0,10.816082,10816.082 +10308,2025-03-08T06:57:14.585299-08:00,1776.0,10.816061,10816.061 +10309,2025-03-08T06:57:25.398989-08:00,1794.0,10.81369,10813.69 +10310,2025-03-08T06:57:36.220912-08:00,1818.0,10.821923,10821.923 +10311,2025-03-08T06:57:47.041176-08:00,1803.0,10.820264,10820.264 +10312,2025-03-08T06:57:57.863907-08:00,1815.0,10.822731,10822.731 +10313,2025-03-08T06:58:08.673914-08:00,1815.0,10.810007,10810.007 +10314,2025-03-08T06:58:19.497570-08:00,1749.0,10.823656,10823.656 +10315,2025-03-08T06:58:30.304735-08:00,1783.0,10.807165,10807.165 +10316,2025-03-08T06:58:41.122930-08:00,1811.0,10.818195,10818.195 +10317,2025-03-08T06:58:51.945151-08:00,1790.0,10.822221,10822.221 +10318,2025-03-08T06:59:02.764184-08:00,1821.0,10.819033,10819.033 +10319,2025-03-08T06:59:13.585488-08:00,1808.0,10.821304,10821.304 +10320,2025-03-08T06:59:24.398920-08:00,1818.0,10.813432,10813.432 +10321,2025-03-08T06:59:35.218037-08:00,1783.0,10.819117,10819.117 +10322,2025-03-08T06:59:46.039904-08:00,1823.0,10.821867,10821.867 +10323,2025-03-08T06:59:56.858036-08:00,1744.0,10.818132,10818.132 +10324,2025-03-08T07:00:07.685170-08:00,1791.0,10.827134,10827.134 +10325,2025-03-08T07:00:18.504972-08:00,1819.0,10.819802,10819.802 +10326,2025-03-08T07:00:29.325910-08:00,1744.0,10.820938,10820.938 +10327,2025-03-08T07:00:40.140073-08:00,1821.0,10.814163,10814.163 +10328,2025-03-08T07:00:50.967062-08:00,1790.0,10.826989,10826.989 +10329,2025-03-08T07:01:01.785954-08:00,1744.0,10.818892,10818.892 +10330,2025-03-08T07:01:12.602956-08:00,1755.0,10.817002,10817.002 +10331,2025-03-08T07:01:23.424904-08:00,1743.0,10.821948,10821.948 +10332,2025-03-08T07:01:34.248906-08:00,1822.0,10.824002,10824.002 +10333,2025-03-08T07:01:45.070265-08:00,1825.0,10.821359,10821.359 +10334,2025-03-08T07:01:55.897193-08:00,1831.0,10.826928,10826.928 +10335,2025-03-08T07:02:06.715907-08:00,1799.0,10.818714,10818.714 +10336,2025-03-08T07:02:17.530727-08:00,1787.0,10.81482,10814.82 +10337,2025-03-08T07:02:28.350913-08:00,1819.0,10.820186,10820.186 +10338,2025-03-08T07:02:39.170897-08:00,1781.0,10.819984,10819.984 +10339,2025-03-08T07:02:49.992224-08:00,1825.0,10.821327,10821.327 +10340,2025-03-08T07:03:00.816912-08:00,1778.0,10.824688,10824.688 +10341,2025-03-08T07:03:11.635903-08:00,1761.0,10.818991,10818.991 +10342,2025-03-08T07:03:22.455345-08:00,1779.0,10.819442,10819.442 +10343,2025-03-08T07:03:33.264539-08:00,1810.0,10.809194,10809.194 +10344,2025-03-08T07:03:44.080968-08:00,1789.0,10.816429,10816.429 +10345,2025-03-08T07:03:54.895132-08:00,1767.0,10.814164,10814.164 +10346,2025-03-08T07:04:05.705108-08:00,1807.0,10.809976,10809.976 +10347,2025-03-08T07:04:16.514676-08:00,1814.0,10.809568,10809.568 +10348,2025-03-08T07:04:27.336181-08:00,1829.0,10.821505,10821.505 +10349,2025-03-08T07:04:38.148897-08:00,1817.0,10.812716,10812.716 +10350,2025-03-08T07:04:48.964888-08:00,1840.0,10.815991,10815.991 +10351,2025-03-08T07:04:59.779183-08:00,1789.0,10.814295,10814.295 +10352,2025-03-08T07:05:10.590230-08:00,1798.0,10.811047,10811.047 +10353,2025-03-08T07:05:21.403248-08:00,1793.0,10.813018,10813.018 +10354,2025-03-08T07:05:32.226907-08:00,1840.0,10.823659,10823.659 +10355,2025-03-08T07:05:43.072395-08:00,1833.0,10.845488,10845.488 +10356,2025-03-08T07:05:53.881270-08:00,1818.0,10.808875,10808.875 +10357,2025-03-08T07:06:04.706667-08:00,1843.0,10.825397,10825.397 +10358,2025-03-08T07:06:15.516974-08:00,1766.0,10.810307,10810.307 +10359,2025-03-08T07:06:26.330329-08:00,1827.0,10.813355,10813.355 +10360,2025-03-08T07:06:37.143505-08:00,1829.0,10.813176,10813.176 +10361,2025-03-08T07:06:47.955212-08:00,1843.0,10.811707,10811.707 +10362,2025-03-08T07:06:58.763141-08:00,1807.0,10.807929,10807.929 +10363,2025-03-08T07:07:09.579055-08:00,1853.0,10.815914,10815.914 +10364,2025-03-08T07:07:20.390985-08:00,1805.0,10.81193,10811.93 +10365,2025-03-08T07:07:31.217311-08:00,1777.0,10.826326,10826.326 +10366,2025-03-08T07:07:42.028325-08:00,1827.0,10.811014,10811.014 +10367,2025-03-08T07:07:52.846980-08:00,1863.0,10.818655,10818.655 +10368,2025-03-08T07:08:03.662203-08:00,1886.0,10.815223,10815.223 +10369,2025-03-08T07:08:14.470989-08:00,1841.0,10.808786,10808.786 +10370,2025-03-08T07:08:25.287274-08:00,1893.0,10.816285,10816.285 +10371,2025-03-08T07:08:36.107045-08:00,1861.0,10.819771,10819.771 +10372,2025-03-08T07:08:46.915983-08:00,1925.0,10.808938,10808.938 +10373,2025-03-08T07:08:57.743147-08:00,1922.0,10.827164,10827.164 +10374,2025-03-08T07:09:08.546270-08:00,1890.0,10.803123,10803.123 +10375,2025-03-08T07:09:19.365340-08:00,1907.0,10.81907,10819.07 +10376,2025-03-08T07:09:30.175211-08:00,1962.0,10.809871,10809.871 +10377,2025-03-08T07:09:40.982989-08:00,1925.0,10.807778,10807.778 +10378,2025-03-08T07:09:51.804347-08:00,1903.0,10.821358,10821.358 +10379,2025-03-08T07:10:02.618184-08:00,1949.0,10.813837,10813.837 +10380,2025-03-08T07:10:13.432993-08:00,1942.0,10.814809,10814.809 +10381,2025-03-08T07:10:24.247983-08:00,2000.0,10.81499,10814.99 +10382,2025-03-08T07:10:35.066980-08:00,2006.0,10.818997,10818.997 +10383,2025-03-08T07:10:45.878483-08:00,1959.0,10.811503,10811.503 +10384,2025-03-08T07:10:56.699047-08:00,1991.0,10.820564,10820.564 +10385,2025-03-08T07:11:07.519983-08:00,1959.0,10.820936,10820.936 +10386,2025-03-08T07:11:18.331537-08:00,1967.0,10.811554,10811.554 +10387,2025-03-08T07:11:29.148309-08:00,1991.0,10.816772,10816.772 +10388,2025-03-08T07:11:39.960992-08:00,1999.0,10.812683,10812.683 +10389,2025-03-08T07:11:50.770985-08:00,2034.0,10.809993,10809.993 +10390,2025-03-08T07:12:01.586030-08:00,2035.0,10.815045,10815.045 +10391,2025-03-08T07:12:12.401377-08:00,2075.0,10.815347,10815.347 +10392,2025-03-08T07:12:23.220316-08:00,2081.0,10.818939,10818.939 +10393,2025-03-08T07:12:34.028232-08:00,2007.0,10.807916,10807.916 +10394,2025-03-08T07:12:44.838086-08:00,2042.0,10.809854,10809.854 +10395,2025-03-08T07:12:55.660191-08:00,2089.0,10.822105,10822.105 +10396,2025-03-08T07:13:06.470352-08:00,2111.0,10.810161,10810.161 +10397,2025-03-08T07:13:17.284059-08:00,2042.0,10.813707,10813.707 +10398,2025-03-08T07:13:28.096202-08:00,2083.0,10.812143,10812.143 +10399,2025-03-08T07:13:38.910023-08:00,2112.0,10.813821,10813.821 +10400,2025-03-08T07:13:49.723965-08:00,2128.0,10.813942,10813.942 +10401,2025-03-08T07:14:00.532975-08:00,2079.0,10.80901,10809.01 +10402,2025-03-08T07:14:11.350962-08:00,2122.0,10.817987,10817.987 +10403,2025-03-08T07:14:22.163985-08:00,2138.0,10.813023,10813.023 +10404,2025-03-08T07:14:32.972967-08:00,2115.0,10.808982,10808.982 +10405,2025-03-08T07:14:43.786965-08:00,2146.0,10.813998,10813.998 +10406,2025-03-08T07:14:54.602184-08:00,2126.0,10.815219,10815.219 +10407,2025-03-08T07:15:05.406994-08:00,2112.0,10.80481,10804.81 +10408,2025-03-08T07:15:16.220724-08:00,2112.0,10.81373,10813.73 +10409,2025-03-08T07:15:27.029379-08:00,2189.0,10.808655,10808.655 +10410,2025-03-08T07:15:37.845987-08:00,2192.0,10.816608,10816.608 +10411,2025-03-08T07:15:48.657959-08:00,2188.0,10.811972,10811.972 +10412,2025-03-08T07:15:59.472212-08:00,2229.0,10.814253,10814.253 +10413,2025-03-08T07:16:10.285332-08:00,2259.0,10.81312,10813.12 +10414,2025-03-08T07:16:21.097335-08:00,2233.0,10.812003,10812.003 +10415,2025-03-08T07:16:31.913979-08:00,2228.0,10.816644,10816.644 +10416,2025-03-08T07:16:42.731981-08:00,2257.0,10.818002,10818.002 +10417,2025-03-08T07:16:53.544885-08:00,2321.0,10.812904,10812.904 +10418,2025-03-08T07:17:04.342340-08:00,2340.0,10.797455,10797.455 +10419,2025-03-08T07:17:15.152732-08:00,2346.0,10.810392,10810.392 +10420,2025-03-08T07:17:25.968060-08:00,2357.0,10.815328,10815.328 +10421,2025-03-08T07:17:36.781007-08:00,2362.0,10.812947,10812.947 +10422,2025-03-08T07:17:47.586075-08:00,2320.0,10.805068,10805.068 +10423,2025-03-08T07:17:58.405968-08:00,2302.0,10.819893,10819.893 +10424,2025-03-08T07:18:09.216375-08:00,2340.0,10.810407,10810.407 +10425,2025-03-08T07:18:20.023893-08:00,2352.0,10.807518,10807.518 +10426,2025-03-08T07:18:30.834446-08:00,2325.0,10.810553,10810.553 +10427,2025-03-08T07:18:41.643991-08:00,2303.0,10.809545,10809.545 +10428,2025-03-08T07:18:52.452249-08:00,2329.0,10.808258,10808.258 +10429,2025-03-08T07:19:03.275965-08:00,2313.0,10.823716,10823.716 +10430,2025-03-08T07:19:14.087245-08:00,2259.0,10.81128,10811.28 +10431,2025-03-08T07:19:24.906321-08:00,2235.0,10.819076,10819.076 +10432,2025-03-08T07:19:35.721991-08:00,2304.0,10.81567,10815.67 +10433,2025-03-08T07:19:46.536128-08:00,2291.0,10.814137,10814.137 +10434,2025-03-08T07:19:57.343713-08:00,2258.0,10.807585,10807.585 +10435,2025-03-08T07:20:08.152176-08:00,2301.0,10.808463,10808.463 +10436,2025-03-08T07:20:18.969327-08:00,2254.0,10.817151,10817.151 +10437,2025-03-08T07:20:29.782181-08:00,2305.0,10.812854,10812.854 +10438,2025-03-08T07:20:40.600978-08:00,2319.0,10.818797,10818.797 +10439,2025-03-08T07:20:51.419984-08:00,2241.0,10.819006,10819.006 +10440,2025-03-08T07:21:02.242986-08:00,2243.0,10.823002,10823.002 +10441,2025-03-08T07:21:13.058989-08:00,2275.0,10.816003,10816.003 +10442,2025-03-08T07:21:23.876964-08:00,2287.0,10.817975,10817.975 +10443,2025-03-08T07:21:34.690342-08:00,2269.0,10.813378,10813.378 +10444,2025-03-08T07:21:45.508126-08:00,2290.0,10.817784,10817.784 +10445,2025-03-08T07:21:56.328987-08:00,2368.0,10.820861,10820.861 +10446,2025-03-08T07:22:07.138232-08:00,2351.0,10.809245,10809.245 +10447,2025-03-08T07:22:17.952174-08:00,2341.0,10.813942,10813.942 +10448,2025-03-08T07:22:28.768993-08:00,2418.0,10.816819,10816.819 +10449,2025-03-08T07:22:39.587162-08:00,2405.0,10.818169,10818.169 +10450,2025-03-08T07:22:50.402983-08:00,2450.0,10.815821,10815.821 +10451,2025-03-08T07:23:01.215302-08:00,2453.0,10.812319,10812.319 +10452,2025-03-08T07:23:12.032316-08:00,2471.0,10.817014,10817.014 +10453,2025-03-08T07:23:22.842408-08:00,2462.0,10.810092,10810.092 +10454,2025-03-08T07:23:33.661572-08:00,2463.0,10.819164,10819.164 +10455,2025-03-08T07:23:44.482159-08:00,2487.0,10.820587,10820.587 +10456,2025-03-08T07:23:55.297993-08:00,2478.0,10.815834,10815.834 +10457,2025-03-08T07:24:06.110085-08:00,2485.0,10.812092,10812.092 +10458,2025-03-08T07:24:16.929978-08:00,2421.0,10.819893,10819.893 +10459,2025-03-08T07:24:27.741029-08:00,2433.0,10.811051,10811.051 +10460,2025-03-08T07:24:38.555258-08:00,2455.0,10.814229,10814.229 +10461,2025-03-08T07:24:49.364969-08:00,2435.0,10.809711,10809.711 +10462,2025-03-08T07:25:00.188211-08:00,2481.0,10.823242,10823.242 +10463,2025-03-08T07:25:11.003231-08:00,2477.0,10.81502,10815.02 +10464,2025-03-08T07:25:21.818548-08:00,2454.0,10.815317,10815.317 +10465,2025-03-08T07:25:32.633990-08:00,2424.0,10.815442,10815.442 +10466,2025-03-08T07:25:43.446980-08:00,2426.0,10.81299,10812.99 +10467,2025-03-08T07:25:54.263983-08:00,2461.0,10.817003,10817.003 +10468,2025-03-08T07:26:05.077991-08:00,2457.0,10.814008,10814.008 +10469,2025-03-08T07:26:15.887304-08:00,2442.0,10.809313,10809.313 +10470,2025-03-08T07:26:26.701040-08:00,2450.0,10.813736,10813.736 +10471,2025-03-08T07:26:37.515211-08:00,2430.0,10.814171,10814.171 +10472,2025-03-08T07:26:48.331374-08:00,2421.0,10.816163,10816.163 +10473,2025-03-08T07:26:59.151507-08:00,2459.0,10.820133,10820.133 +10474,2025-03-08T07:27:09.973272-08:00,2460.0,10.821765,10821.765 +10475,2025-03-08T07:27:20.782652-08:00,2463.0,10.80938,10809.38 +10476,2025-03-08T07:27:31.594046-08:00,2397.0,10.811394,10811.394 +10477,2025-03-08T07:27:42.414373-08:00,2414.0,10.820327,10820.327 +10478,2025-03-08T07:27:49.721651-08:00,2421.0,7.307278,7307.278 +10479,2025-03-08T07:27:53.229982-08:00,2462.0,3.508331,3508.331 +10480,2025-03-08T07:28:04.049984-08:00,2435.0,10.820002,10820.002 +10481,2025-03-08T07:28:14.870973-08:00,2397.0,10.820989,10820.989 +10482,2025-03-08T07:28:25.692890-08:00,2384.0,10.821917,10821.917 +10483,2025-03-08T07:28:36.504979-08:00,2422.0,10.812089,10812.089 +10484,2025-03-08T07:28:47.314228-08:00,2414.0,10.809249,10809.249 +10485,2025-03-08T07:28:58.135421-08:00,2377.0,10.821193,10821.193 +10486,2025-03-08T07:29:08.955989-08:00,2431.0,10.820568,10820.568 +10487,2025-03-08T07:29:19.770339-08:00,2404.0,10.81435,10814.35 +10488,2025-03-08T07:29:30.595442-08:00,2412.0,10.825103,10825.103 +10489,2025-03-08T07:29:41.404331-08:00,2416.0,10.808889,10808.889 +10490,2025-03-08T07:29:52.224206-08:00,2381.0,10.819875,10819.875 +10491,2025-03-08T07:30:03.038166-08:00,2393.0,10.81396,10813.96 +10492,2025-03-08T07:30:13.865437-08:00,2335.0,10.827271,10827.271 +10493,2025-03-08T07:30:24.680052-08:00,2331.0,10.814615,10814.615 +10494,2025-03-08T07:30:35.489212-08:00,2390.0,10.80916,10809.16 +10495,2025-03-08T07:30:46.297982-08:00,2343.0,10.80877,10808.77 +10496,2025-03-08T07:30:57.116988-08:00,2386.0,10.819006,10819.006 +10497,2025-03-08T07:31:07.933340-08:00,2395.0,10.816352,10816.352 +10498,2025-03-08T07:31:18.753201-08:00,2394.0,10.819861,10819.861 +10499,2025-03-08T07:31:29.571262-08:00,2391.0,10.818061,10818.061 +10500,2025-03-08T07:31:40.394246-08:00,2367.0,10.822984,10822.984 +10501,2025-03-08T07:31:51.215908-08:00,2378.0,10.821662,10821.662 +10502,2025-03-08T07:32:02.028984-08:00,2335.0,10.813076,10813.076 +10503,2025-03-08T07:32:12.835978-08:00,2375.0,10.806994,10806.994 +10504,2025-03-08T07:32:23.649118-08:00,2383.0,10.81314,10813.14 +10505,2025-03-08T07:32:34.461400-08:00,2405.0,10.812282,10812.282 +10506,2025-03-08T07:32:45.283272-08:00,2381.0,10.821872,10821.872 +10507,2025-03-08T07:32:56.096036-08:00,2411.0,10.812764,10812.764 +10508,2025-03-08T07:33:06.909226-08:00,2389.0,10.81319,10813.19 +10509,2025-03-08T07:33:17.729680-08:00,2389.0,10.820454,10820.454 +10510,2025-03-08T07:33:28.538130-08:00,2423.0,10.80845,10808.45 +10511,2025-03-08T07:33:39.351464-08:00,2448.0,10.813334,10813.334 +10512,2025-03-08T07:33:50.157969-08:00,2435.0,10.806505,10806.505 +10513,2025-03-08T07:34:00.970045-08:00,2445.0,10.812076,10812.076 +10514,2025-03-08T07:34:11.774235-08:00,2431.0,10.80419,10804.19 +10515,2025-03-08T07:34:22.596446-08:00,2394.0,10.822211,10822.211 +10516,2025-03-08T07:34:33.405343-08:00,2459.0,10.808897,10808.897 +10517,2025-03-08T07:34:44.213986-08:00,2425.0,10.808643,10808.643 +10518,2025-03-08T07:34:55.029985-08:00,2479.0,10.815999,10815.999 +10519,2025-03-08T07:35:05.844114-08:00,2411.0,10.814129,10814.129 +10520,2025-03-08T07:35:16.653466-08:00,2431.0,10.809352,10809.352 +10521,2025-03-08T07:35:27.474503-08:00,2506.0,10.821037,10821.037 +10522,2025-03-08T07:35:38.294242-08:00,2511.0,10.819739,10819.739 +10523,2025-03-08T07:35:49.114252-08:00,2480.0,10.82001,10820.01 +10524,2025-03-08T07:35:59.923908-08:00,2519.0,10.809656,10809.656 +10525,2025-03-08T07:36:10.741985-08:00,2480.0,10.818077,10818.077 +10526,2025-03-08T07:36:21.559051-08:00,2526.0,10.817066,10817.066 +10527,2025-03-08T07:36:32.382725-08:00,2470.0,10.823674,10823.674 +10528,2025-03-08T07:36:43.192331-08:00,2509.0,10.809606,10809.606 +10529,2025-03-08T07:36:54.007077-08:00,2527.0,10.814746,10814.746 +10530,2025-03-08T07:37:04.828126-08:00,2538.0,10.821049,10821.049 +10531,2025-03-08T07:37:15.650086-08:00,2545.0,10.82196,10821.96 +10532,2025-03-08T07:37:26.458671-08:00,2512.0,10.808585,10808.585 +10533,2025-03-08T07:37:37.270991-08:00,2559.0,10.81232,10812.32 +10534,2025-03-08T07:37:48.086967-08:00,2597.0,10.815976,10815.976 +10535,2025-03-08T07:37:58.904985-08:00,2607.0,10.818018,10818.018 +10536,2025-03-08T07:38:09.709492-08:00,2620.0,10.804507,10804.507 +10537,2025-03-08T07:38:20.524931-08:00,2618.0,10.815439,10815.439 +10538,2025-03-08T07:38:31.327643-08:00,2646.0,10.802712,10802.712 +10539,2025-03-08T07:38:42.136360-08:00,2606.0,10.808717,10808.717 +10540,2025-03-08T07:38:52.961041-08:00,2655.0,10.824681,10824.681 +10541,2025-03-08T07:39:03.777010-08:00,2678.0,10.815969,10815.969 +10542,2025-03-08T07:39:14.581986-08:00,2713.0,10.804976,10804.976 +10543,2025-03-08T07:39:25.402045-08:00,2719.0,10.820059,10820.059 +10544,2025-03-08T07:39:36.204580-08:00,2715.0,10.802535,10802.535 +10545,2025-03-08T07:39:47.026302-08:00,2718.0,10.821722,10821.722 +10546,2025-03-08T07:39:57.839988-08:00,2718.0,10.813686,10813.686 +10547,2025-03-08T07:40:08.647962-08:00,2743.0,10.807974,10807.974 +10548,2025-03-08T07:40:19.459327-08:00,2747.0,10.811365,10811.365 +10549,2025-03-08T07:40:30.278994-08:00,2758.0,10.819667,10819.667 +10550,2025-03-08T07:40:41.088216-08:00,2770.0,10.809222,10809.222 +10551,2025-03-08T07:40:51.907316-08:00,2713.0,10.8191,10819.1 +10552,2025-03-08T07:41:02.716988-08:00,2733.0,10.809672,10809.672 +10553,2025-03-08T07:41:13.527486-08:00,2711.0,10.810498,10810.498 +10554,2025-03-08T07:41:24.335158-08:00,2695.0,10.807672,10807.672 +10555,2025-03-08T07:41:35.143988-08:00,2753.0,10.80883,10808.83 +10556,2025-03-08T07:41:45.954261-08:00,2687.0,10.810273,10810.273 +10557,2025-03-08T07:41:56.766984-08:00,2690.0,10.812723,10812.723 +10558,2025-03-08T07:42:07.569252-08:00,2716.0,10.802268,10802.268 +10559,2025-03-08T07:42:18.370961-08:00,2736.0,10.801709,10801.709 +10560,2025-03-08T07:42:29.183388-08:00,2767.0,10.812427,10812.427 +10561,2025-03-08T07:42:39.992317-08:00,2718.0,10.808929,10808.929 +10562,2025-03-08T07:42:50.806187-08:00,2774.0,10.81387,10813.87 +10563,2025-03-08T07:43:01.619380-08:00,2807.0,10.813193,10813.193 +10564,2025-03-08T07:43:12.427989-08:00,2811.0,10.808609,10808.609 +10565,2025-03-08T07:43:23.245318-08:00,2791.0,10.817329,10817.329 +10566,2025-03-08T07:43:34.055287-08:00,2831.0,10.809969,10809.969 +10567,2025-03-08T07:43:44.854301-08:00,2838.0,10.799014,10799.014 +10568,2025-03-08T07:43:55.664980-08:00,2896.0,10.810679,10810.679 +10569,2025-03-08T07:44:06.481333-08:00,2907.0,10.816353,10816.353 +10570,2025-03-08T07:44:17.288461-08:00,2880.0,10.807128,10807.128 +10571,2025-03-08T07:44:28.092294-08:00,2935.0,10.803833,10803.833 +10572,2025-03-08T07:44:38.903355-08:00,2928.0,10.811061,10811.061 +10573,2025-03-08T07:44:49.716157-08:00,2945.0,10.812802,10812.802 +10574,2025-03-08T07:45:00.531255-08:00,2960.0,10.815098,10815.098 +10575,2025-03-08T07:45:11.346040-08:00,2965.0,10.814785,10814.785 +10576,2025-03-08T07:45:22.146045-08:00,2961.0,10.800005,10800.005 +10577,2025-03-08T07:45:32.962249-08:00,2959.0,10.816204,10816.204 +10578,2025-03-08T07:45:43.777985-08:00,2987.0,10.815736,10815.736 +10579,2025-03-08T07:45:54.585269-08:00,2991.0,10.807284,10807.284 +10580,2025-03-08T07:46:05.395226-08:00,2997.0,10.809957,10809.957 +10581,2025-03-08T07:46:16.218022-08:00,3003.0,10.822796,10822.796 +10582,2025-03-08T07:46:27.036274-08:00,2979.0,10.818252,10818.252 +10583,2025-03-08T07:46:37.845043-08:00,3024.0,10.808769,10808.769 +10584,2025-03-08T07:46:48.658967-08:00,3001.0,10.813924,10813.924 +10585,2025-03-08T07:46:59.476984-08:00,3047.0,10.818017,10818.017 +10586,2025-03-08T07:47:10.289261-08:00,3056.0,10.812277,10812.277 +10587,2025-03-08T07:47:21.103288-08:00,3069.0,10.814027,10814.027 +10588,2025-03-08T07:47:31.912989-08:00,3049.0,10.809701,10809.701 +10589,2025-03-08T07:47:42.732976-08:00,3088.0,10.819987,10819.987 +10590,2025-03-08T07:47:53.548047-08:00,3090.0,10.815071,10815.071 +10591,2025-03-08T07:48:04.357002-08:00,3104.0,10.808955,10808.955 +10592,2025-03-08T07:48:15.169415-08:00,3126.0,10.812413,10812.413 +10593,2025-03-08T07:48:25.990991-08:00,3139.0,10.821576,10821.576 +10594,2025-03-08T07:48:36.802984-08:00,3164.0,10.811993,10811.993 +10595,2025-03-08T07:48:47.611026-08:00,3154.0,10.808042,10808.042 +10596,2025-03-08T07:48:58.418101-08:00,3186.0,10.807075,10807.075 +10597,2025-03-08T07:49:09.231441-08:00,3173.0,10.81334,10813.34 +10598,2025-03-08T07:49:20.043106-08:00,3196.0,10.811665,10811.665 +10599,2025-03-08T07:49:30.867306-08:00,3169.0,10.8242,10824.2 +10600,2025-03-08T07:49:41.675990-08:00,3218.0,10.808684,10808.684 +10601,2025-03-08T07:49:52.500294-08:00,3223.0,10.824304,10824.304 +10602,2025-03-08T07:50:03.306342-08:00,3199.0,10.806048,10806.048 +10603,2025-03-08T07:50:14.132108-08:00,3191.0,10.825766,10825.766 +10604,2025-03-08T07:50:24.947450-08:00,3216.0,10.815342,10815.342 +10605,2025-03-08T07:50:35.762254-08:00,3207.0,10.814804,10814.804 +10606,2025-03-08T07:50:46.579980-08:00,3206.0,10.817726,10817.726 +10607,2025-03-08T07:50:57.407032-08:00,3159.0,10.827052,10827.052 +10608,2025-03-08T07:51:08.217370-08:00,3197.0,10.810338,10810.338 +10609,2025-03-08T07:51:19.037045-08:00,3143.0,10.819675,10819.675 +10610,2025-03-08T07:51:29.858400-08:00,3199.0,10.821355,10821.355 +10611,2025-03-08T07:51:40.679220-08:00,3136.0,10.82082,10820.82 +10612,2025-03-08T07:51:51.504980-08:00,3190.0,10.82576,10825.76 +10613,2025-03-08T07:52:02.317237-08:00,3199.0,10.812257,10812.257 +10614,2025-03-08T07:52:13.138839-08:00,3162.0,10.821602,10821.602 +10615,2025-03-08T07:52:23.964245-08:00,3184.0,10.825406,10825.406 +10616,2025-03-08T07:52:34.780531-08:00,3202.0,10.816286,10816.286 +10617,2025-03-08T07:52:45.602733-08:00,3218.0,10.822202,10822.202 +10618,2025-03-08T07:52:56.427204-08:00,3249.0,10.824471,10824.471 +10619,2025-03-08T07:53:07.252433-08:00,3217.0,10.825229,10825.229 +10620,2025-03-08T07:53:18.071579-08:00,3267.0,10.819146,10819.146 +10621,2025-03-08T07:53:28.898992-08:00,3249.0,10.827413,10827.413 +10622,2025-03-08T07:53:39.709402-08:00,3258.0,10.81041,10810.41 +10623,2025-03-08T07:53:50.541239-08:00,3293.0,10.831837,10831.837 +10624,2025-03-08T07:54:01.360829-08:00,3319.0,10.81959,10819.59 +10625,2025-03-08T07:54:12.185319-08:00,3325.0,10.82449,10824.49 +10626,2025-03-08T07:54:23.000294-08:00,3329.0,10.814975,10814.975 +10627,2025-03-08T07:54:33.820453-08:00,3328.0,10.820159,10820.159 +10628,2025-03-08T07:54:44.644605-08:00,3316.0,10.824152,10824.152 +10629,2025-03-08T07:54:55.463246-08:00,3331.0,10.818641,10818.641 +10630,2025-03-08T07:55:06.287856-08:00,3362.0,10.82461,10824.61 +10631,2025-03-08T07:55:17.105592-08:00,3358.0,10.817736,10817.736 +10632,2025-03-08T07:55:27.922396-08:00,3371.0,10.816804,10816.804 +10633,2025-03-08T07:55:38.741983-08:00,3326.0,10.819587,10819.587 +10634,2025-03-08T07:55:49.557010-08:00,3344.0,10.815027,10815.027 +10635,2025-03-08T07:56:00.390238-08:00,3343.0,10.833228,10833.228 +10636,2025-03-08T07:56:11.215206-08:00,3344.0,10.824968,10824.968 +10637,2025-03-08T07:56:22.030362-08:00,3379.0,10.815156,10815.156 +10638,2025-03-08T07:56:32.862242-08:00,3361.0,10.83188,10831.88 +10639,2025-03-08T07:56:43.683222-08:00,3375.0,10.82098,10820.98 +10640,2025-03-08T07:56:54.513989-08:00,3378.0,10.830767,10830.767 +10641,2025-03-08T07:57:05.330410-08:00,3387.0,10.816421,10816.421 +10642,2025-03-08T07:57:16.151472-08:00,3390.0,10.821062,10821.062 +10643,2025-03-08T07:57:26.964538-08:00,3367.0,10.813066,10813.066 +10644,2025-03-08T07:57:37.788981-08:00,3390.0,10.824443,10824.443 +10645,2025-03-08T07:57:48.604564-08:00,3370.0,10.815583,10815.583 +10646,2025-03-08T07:57:59.426041-08:00,3392.0,10.821477,10821.477 +10647,2025-03-08T07:58:10.243222-08:00,3375.0,10.817181,10817.181 +10648,2025-03-08T07:58:21.065528-08:00,3361.0,10.822306,10822.306 +10649,2025-03-08T07:58:31.884988-08:00,3395.0,10.81946,10819.46 +10650,2025-03-08T07:58:42.706986-08:00,3365.0,10.821998,10821.998 +10651,2025-03-08T07:58:53.520197-08:00,3388.0,10.813211,10813.211 +10652,2025-03-08T07:59:04.334581-08:00,3376.0,10.814384,10814.384 +10653,2025-03-08T07:59:15.161500-08:00,3394.0,10.826919,10826.919 +10654,2025-03-08T07:59:25.975235-08:00,3403.0,10.813735,10813.735 +10655,2025-03-08T07:59:36.795521-08:00,3394.0,10.820286,10820.286 +10656,2025-03-08T07:59:47.617045-08:00,3371.0,10.821524,10821.524 +10657,2025-03-08T07:59:58.435476-08:00,3407.0,10.818431,10818.431 +10658,2025-03-08T08:00:09.265128-08:00,3350.0,10.829652,10829.652 +10659,2025-03-08T08:00:20.081973-08:00,3379.0,10.816845,10816.845 +10660,2025-03-08T08:00:30.909534-08:00,3277.0,10.827561,10827.561 +10661,2025-03-08T08:00:41.728039-08:00,3408.0,10.818505,10818.505 +10662,2025-03-08T08:00:52.555980-08:00,3362.0,10.827941,10827.941 +10663,2025-03-08T08:01:03.377509-08:00,3353.0,10.821529,10821.529 +10664,2025-03-08T08:01:14.198228-08:00,3398.0,10.820719,10820.719 +10665,2025-03-08T08:01:25.028753-08:00,3413.0,10.830525,10830.525 +10666,2025-03-08T08:01:35.854001-08:00,3386.0,10.825248,10825.248 +10667,2025-03-08T08:01:46.672988-08:00,3409.0,10.818987,10818.987 +10668,2025-03-08T08:01:57.505268-08:00,3385.0,10.83228,10832.28 +10669,2025-03-08T08:02:08.326676-08:00,3377.0,10.821408,10821.408 +10670,2025-03-08T08:02:19.149271-08:00,3387.0,10.822595,10822.595 +10671,2025-03-08T08:02:29.966146-08:00,3404.0,10.816875,10816.875 +10672,2025-03-08T08:02:40.786978-08:00,3383.0,10.820832,10820.832 +10673,2025-03-08T08:02:51.601985-08:00,3405.0,10.815007,10815.007 +10674,2025-03-08T08:03:02.427990-08:00,3419.0,10.826005,10826.005 +10675,2025-03-08T08:03:13.249290-08:00,3425.0,10.8213,10821.3 +10676,2025-03-08T08:03:24.069981-08:00,3408.0,10.820691,10820.691 +10677,2025-03-08T08:03:34.895990-08:00,3418.0,10.826009,10826.009 +10678,2025-03-08T08:03:45.715088-08:00,3425.0,10.819098,10819.098 +10679,2025-03-08T08:03:56.536740-08:00,3376.0,10.821652,10821.652 +10680,2025-03-08T08:04:07.350991-08:00,3430.0,10.814251,10814.251 +10681,2025-03-08T08:04:18.181019-08:00,3409.0,10.830028,10830.028 +10682,2025-03-08T08:04:29.001386-08:00,3371.0,10.820367,10820.367 +10683,2025-03-08T08:04:39.830209-08:00,3407.0,10.828823,10828.823 +10684,2025-03-08T08:04:50.654319-08:00,3413.0,10.82411,10824.11 +10685,2025-03-08T08:05:01.473100-08:00,3418.0,10.818781,10818.781 +10686,2025-03-08T08:05:12.289390-08:00,3401.0,10.81629,10816.29 +10687,2025-03-08T08:05:23.123265-08:00,3415.0,10.833875,10833.875 +10688,2025-03-08T08:05:33.941985-08:00,3422.0,10.81872,10818.72 +10689,2025-03-08T08:05:44.745834-08:00,3411.0,10.803849,10803.849 +10690,2025-03-08T08:05:55.567847-08:00,3407.0,10.822013,10822.013 +10691,2025-03-08T08:06:06.391950-08:00,3427.0,10.824103,10824.103 +10692,2025-03-08T08:06:17.216105-08:00,3425.0,10.824155,10824.155 +10693,2025-03-08T08:06:28.039847-08:00,3415.0,10.823742,10823.742 +10694,2025-03-08T08:06:38.865951-08:00,3396.0,10.826104,10826.104 +10695,2025-03-08T08:06:49.683227-08:00,3406.0,10.817276,10817.276 +10696,2025-03-08T08:07:00.509833-08:00,3425.0,10.826606,10826.606 +10697,2025-03-08T08:07:11.333175-08:00,3421.0,10.823342,10823.342 +10698,2025-03-08T08:07:22.152059-08:00,3437.0,10.818884,10818.884 +10699,2025-03-08T08:07:32.966824-08:00,3370.0,10.814765,10814.765 +10700,2025-03-08T08:07:43.787025-08:00,3439.0,10.820201,10820.201 +10701,2025-03-08T08:07:54.607361-08:00,3414.0,10.820336,10820.336 +10702,2025-03-08T08:08:05.439094-08:00,3437.0,10.831733,10831.733 +10703,2025-03-08T08:08:16.254633-08:00,3430.0,10.815539,10815.539 +10704,2025-03-08T08:08:27.084980-08:00,3438.0,10.830347,10830.347 +10705,2025-03-08T08:08:37.911388-08:00,3410.0,10.826408,10826.408 +10706,2025-03-08T08:08:48.733371-08:00,3378.0,10.821983,10821.983 +10707,2025-03-08T08:08:59.552021-08:00,3408.0,10.81865,10818.65 +10708,2025-03-08T08:09:10.383240-08:00,3415.0,10.831219,10831.219 +10709,2025-03-08T08:09:21.203999-08:00,3417.0,10.820759,10820.759 +10710,2025-03-08T08:09:32.023940-08:00,3376.0,10.819941,10819.941 +10711,2025-03-08T08:09:42.845200-08:00,3395.0,10.82126,10821.26 +10712,2025-03-08T08:09:53.670385-08:00,3401.0,10.825185,10825.185 +10713,2025-03-08T08:10:04.502853-08:00,3407.0,10.832468,10832.468 +10714,2025-03-08T08:10:15.327834-08:00,3382.0,10.824981,10824.981 +10715,2025-03-08T08:10:26.154401-08:00,3399.0,10.826567,10826.567 +10716,2025-03-08T08:10:36.978090-08:00,3342.0,10.823689,10823.689 +10717,2025-03-08T08:10:47.799893-08:00,3343.0,10.821803,10821.803 +10718,2025-03-08T08:10:58.630846-08:00,3350.0,10.830953,10830.953 +10719,2025-03-08T08:11:09.450978-08:00,3369.0,10.820132,10820.132 +10720,2025-03-08T08:11:20.272154-08:00,3379.0,10.821176,10821.176 +10721,2025-03-08T08:11:31.104847-08:00,3367.0,10.832693,10832.693 +10722,2025-03-08T08:11:41.925148-08:00,3377.0,10.820301,10820.301 +10723,2025-03-08T08:11:52.755236-08:00,3319.0,10.830088,10830.088 +10724,2025-03-08T08:12:03.573159-08:00,3361.0,10.817923,10817.923 +10725,2025-03-08T08:12:14.409680-08:00,3355.0,10.836521,10836.521 +10726,2025-03-08T08:12:25.228835-08:00,3345.0,10.819155,10819.155 +10727,2025-03-08T08:12:36.050167-08:00,3340.0,10.821332,10821.332 +10728,2025-03-08T08:12:46.876924-08:00,3349.0,10.826757,10826.757 +10729,2025-03-08T08:12:57.701216-08:00,3366.0,10.824292,10824.292 +10730,2025-03-08T08:13:08.538069-08:00,3334.0,10.836853,10836.853 +10731,2025-03-08T08:13:19.367231-08:00,3349.0,10.829162,10829.162 +10732,2025-03-08T08:13:30.185899-08:00,3381.0,10.818668,10818.668 +10733,2025-03-08T08:13:41.014779-08:00,3323.0,10.82888,10828.88 +10734,2025-03-08T08:13:51.834986-08:00,3377.0,10.820207,10820.207 +10735,2025-03-08T08:14:02.654842-08:00,3390.0,10.819856,10819.856 +10736,2025-03-08T08:14:13.480390-08:00,3389.0,10.825548,10825.548 +10737,2025-03-08T08:14:24.308931-08:00,3354.0,10.828541,10828.541 +10738,2025-03-08T08:14:35.141214-08:00,3372.0,10.832283,10832.283 +10739,2025-03-08T08:14:45.962842-08:00,3399.0,10.821628,10821.628 +10740,2025-03-08T08:14:56.788026-08:00,3376.0,10.825184,10825.184 +10741,2025-03-08T08:15:07.608996-08:00,3392.0,10.82097,10820.97 +10742,2025-03-08T08:15:18.432823-08:00,3361.0,10.823827,10823.827 +10743,2025-03-08T08:15:29.261197-08:00,3397.0,10.828374,10828.374 +10744,2025-03-08T08:15:40.086131-08:00,3402.0,10.824934,10824.934 +10745,2025-03-08T08:15:50.917159-08:00,3360.0,10.831028,10831.028 +10746,2025-03-08T08:16:01.743844-08:00,3392.0,10.826685,10826.685 +10747,2025-03-08T08:16:12.559838-08:00,3402.0,10.815994,10815.994 +10748,2025-03-08T08:16:23.390850-08:00,3358.0,10.831012,10831.012 +10749,2025-03-08T08:16:34.222891-08:00,3403.0,10.832041,10832.041 +10750,2025-03-08T08:16:45.049123-08:00,3402.0,10.826232,10826.232 +10751,2025-03-08T08:16:55.870323-08:00,3375.0,10.8212,10821.2 +10752,2025-03-08T08:17:06.700142-08:00,3403.0,10.829819,10829.819 +10753,2025-03-08T08:17:17.521122-08:00,3404.0,10.82098,10820.98 +10754,2025-03-08T08:17:28.344631-08:00,3375.0,10.823509,10823.509 +10755,2025-03-08T08:17:39.166846-08:00,3399.0,10.822215,10822.215 +10756,2025-03-08T08:17:49.995823-08:00,3394.0,10.828977,10828.977 +10757,2025-03-08T08:18:00.822173-08:00,3381.0,10.82635,10826.35 +10758,2025-03-08T08:18:11.649574-08:00,3393.0,10.827401,10827.401 +10759,2025-03-08T08:18:22.481898-08:00,3395.0,10.832324,10832.324 +10760,2025-03-08T08:18:33.310121-08:00,3342.0,10.828223,10828.223 +10761,2025-03-08T08:18:44.135152-08:00,3327.0,10.825031,10825.031 +10762,2025-03-08T08:18:54.952984-08:00,3376.0,10.817832,10817.832 +10763,2025-03-08T08:19:05.785207-08:00,3375.0,10.832223,10832.223 +10764,2025-03-08T08:19:16.607094-08:00,3328.0,10.821887,10821.887 +10765,2025-03-08T08:19:27.427346-08:00,3344.0,10.820252,10820.252 +10766,2025-03-08T08:19:38.254143-08:00,3286.0,10.826797,10826.797 +10767,2025-03-08T08:19:49.084929-08:00,3328.0,10.830786,10830.786 +10768,2025-03-08T08:19:59.910199-08:00,3312.0,10.82527,10825.27 +10769,2025-03-08T08:20:10.741845-08:00,3249.0,10.831646,10831.646 +10770,2025-03-08T08:20:21.572868-08:00,3264.0,10.831023,10831.023 +10771,2025-03-08T08:20:32.396991-08:00,3278.0,10.824123,10824.123 +10772,2025-03-08T08:20:43.226247-08:00,3247.0,10.829256,10829.256 +10773,2025-03-08T08:20:54.052840-08:00,3240.0,10.826593,10826.593 +10774,2025-03-08T08:21:04.891103-08:00,3238.0,10.838263,10838.263 +10775,2025-03-08T08:21:15.712391-08:00,3193.0,10.821288,10821.288 +10776,2025-03-08T08:21:26.543181-08:00,3213.0,10.83079,10830.79 +10777,2025-03-08T08:21:37.370942-08:00,3189.0,10.827761,10827.761 +10778,2025-03-08T08:21:48.206827-08:00,3152.0,10.835885,10835.885 +10779,2025-03-08T08:21:59.030920-08:00,3152.0,10.824093,10824.093 +10780,2025-03-08T08:22:09.858438-08:00,3165.0,10.827518,10827.518 +10781,2025-03-08T08:22:20.694835-08:00,3152.0,10.836397,10836.397 +10782,2025-03-08T08:22:31.527845-08:00,3142.0,10.83301,10833.01 +10783,2025-03-08T08:22:42.351891-08:00,3110.0,10.824046,10824.046 +10784,2025-03-08T08:22:53.185290-08:00,3120.0,10.833399,10833.399 +10785,2025-03-08T08:23:04.011288-08:00,3070.0,10.825998,10825.998 +10786,2025-03-08T08:23:14.832399-08:00,3097.0,10.821111,10821.111 +10787,2025-03-08T08:23:25.659130-08:00,3088.0,10.826731,10826.731 +10788,2025-03-08T08:23:36.484334-08:00,3056.0,10.825204,10825.204 +10789,2025-03-08T08:23:47.306840-08:00,3070.0,10.822506,10822.506 +10790,2025-03-08T08:23:58.135218-08:00,3054.0,10.828378,10828.378 +10791,2025-03-08T08:24:08.960974-08:00,3056.0,10.825756,10825.756 +10792,2025-03-08T08:24:19.792494-08:00,3011.0,10.83152,10831.52 +10793,2025-03-08T08:24:30.621890-08:00,3054.0,10.829396,10829.396 +10794,2025-03-08T08:24:41.449034-08:00,3051.0,10.827144,10827.144 +10795,2025-03-08T08:24:52.270958-08:00,3027.0,10.821924,10821.924 +10796,2025-03-08T08:25:03.090819-08:00,3031.0,10.819861,10819.861 +10797,2025-03-08T08:25:13.918167-08:00,3020.0,10.827348,10827.348 +10798,2025-03-08T08:25:24.748845-08:00,3019.0,10.830678,10830.678 +10799,2025-03-08T08:25:35.576685-08:00,3071.0,10.82784,10827.84 +10800,2025-03-08T08:25:46.405088-08:00,3071.0,10.828403,10828.403 +10801,2025-03-08T08:25:57.236131-08:00,3035.0,10.831043,10831.043 +10802,2025-03-08T08:26:08.069018-08:00,3056.0,10.832887,10832.887 +10803,2025-03-08T08:26:18.894271-08:00,3060.0,10.825253,10825.253 +10804,2025-03-08T08:26:29.726837-08:00,3089.0,10.832566,10832.566 +10805,2025-03-08T08:26:40.558999-08:00,3071.0,10.832162,10832.162 +10806,2025-03-08T08:26:51.398168-08:00,3030.0,10.839169,10839.169 +10807,2025-03-08T08:27:02.222850-08:00,3071.0,10.824682,10824.682 +10808,2025-03-08T08:27:13.053850-08:00,3033.0,10.831,10831.0 +10809,2025-03-08T08:27:23.873469-08:00,3071.0,10.819619,10819.619 +10810,2025-03-08T08:27:34.706209-08:00,3067.0,10.83274,10832.74 +10811,2025-03-08T08:27:45.531958-08:00,3030.0,10.825749,10825.749 +10812,2025-03-08T08:27:56.364978-08:00,3034.0,10.83302,10833.02 +10813,2025-03-08T08:28:07.189841-08:00,3003.0,10.824863,10824.863 +10814,2025-03-08T08:28:18.020076-08:00,3062.0,10.830235,10830.235 +10815,2025-03-08T08:28:28.857335-08:00,3056.0,10.837259,10837.259 +10816,2025-03-08T08:28:39.683677-08:00,3047.0,10.826342,10826.342 +10817,2025-03-08T08:28:50.510824-08:00,3023.0,10.827147,10827.147 +10818,2025-03-08T08:29:01.345415-08:00,3046.0,10.834591,10834.591 +10819,2025-03-08T08:29:12.175842-08:00,3056.0,10.830427,10830.427 +10820,2025-03-08T08:29:23.010296-08:00,3029.0,10.834454,10834.454 +10821,2025-03-08T08:29:33.827823-08:00,3007.0,10.817527,10817.527 +10822,2025-03-08T08:29:44.655009-08:00,2999.0,10.827186,10827.186 +10823,2025-03-08T08:29:55.485842-08:00,2983.0,10.830833,10830.833 +10824,2025-03-08T08:30:06.324290-08:00,3044.0,10.838448,10838.448 +10825,2025-03-08T08:30:17.144044-08:00,3026.0,10.819754,10819.754 +10826,2025-03-08T08:30:27.980152-08:00,2997.0,10.836108,10836.108 +10827,2025-03-08T08:30:38.806830-08:00,3006.0,10.826678,10826.678 +10828,2025-03-08T08:30:49.633415-08:00,2943.0,10.826585,10826.585 +10829,2025-03-08T08:31:00.469842-08:00,2932.0,10.836427,10836.427 +10830,2025-03-08T08:31:11.304837-08:00,2970.0,10.834995,10834.995 +10831,2025-03-08T08:31:22.126896-08:00,2959.0,10.822059,10822.059 +10832,2025-03-08T08:31:32.960452-08:00,2935.0,10.833556,10833.556 +10833,2025-03-08T08:31:43.789839-08:00,2931.0,10.829387,10829.387 +10834,2025-03-08T08:31:54.617845-08:00,2918.0,10.828006,10828.006 +10835,2025-03-08T08:32:05.442828-08:00,2902.0,10.824983,10824.983 +10836,2025-03-08T08:32:16.284089-08:00,2898.0,10.841261,10841.261 +10837,2025-03-08T08:32:27.112996-08:00,2900.0,10.828907,10828.907 +10838,2025-03-08T08:32:37.937844-08:00,2896.0,10.824848,10824.848 +10839,2025-03-08T08:32:48.776959-08:00,2896.0,10.839115,10839.115 +10840,2025-03-08T08:32:59.600848-08:00,2861.0,10.823889,10823.889 +10841,2025-03-08T08:33:10.439996-08:00,2858.0,10.839148,10839.148 +10842,2025-03-08T08:33:21.274841-08:00,2891.0,10.834845,10834.845 +10843,2025-03-08T08:33:32.105846-08:00,2893.0,10.831005,10831.005 +10844,2025-03-08T08:33:42.928834-08:00,2890.0,10.822988,10822.988 +10845,2025-03-08T08:33:53.761394-08:00,2891.0,10.83256,10832.56 +10846,2025-03-08T08:34:04.590984-08:00,2890.0,10.82959,10829.59 +10847,2025-03-08T08:34:15.419007-08:00,2832.0,10.828023,10828.023 +10848,2025-03-08T08:34:26.250068-08:00,2883.0,10.831061,10831.061 +10849,2025-03-08T08:34:37.086853-08:00,2832.0,10.836785,10836.785 +10850,2025-03-08T08:34:47.914821-08:00,2869.0,10.827968,10827.968 +10851,2025-03-08T08:34:58.745844-08:00,2859.0,10.831023,10831.023 +10852,2025-03-08T08:35:09.576234-08:00,2870.0,10.83039,10830.39 +10853,2025-03-08T08:35:20.409910-08:00,2849.0,10.833676,10833.676 +10854,2025-03-08T08:35:31.244187-08:00,2864.0,10.834277,10834.277 +10855,2025-03-08T08:35:42.081836-08:00,2853.0,10.837649,10837.649 +10856,2025-03-08T08:35:52.916225-08:00,2839.0,10.834389,10834.389 +10857,2025-03-08T08:36:03.748327-08:00,2833.0,10.832102,10832.102 +10858,2025-03-08T08:36:14.572843-08:00,2801.0,10.824516,10824.516 +10859,2025-03-08T08:36:25.404400-08:00,2846.0,10.831557,10831.557 +10860,2025-03-08T08:36:36.246815-08:00,2823.0,10.842415,10842.415 +10861,2025-03-08T08:36:47.080845-08:00,2850.0,10.83403,10834.03 +10862,2025-03-08T08:36:57.910020-08:00,2794.0,10.829175,10829.175 +10863,2025-03-08T08:37:08.741841-08:00,2845.0,10.831821,10831.821 +10864,2025-03-08T08:37:19.567068-08:00,2817.0,10.825227,10825.227 +10865,2025-03-08T08:37:30.405842-08:00,2825.0,10.838774,10838.774 +10866,2025-03-08T08:37:41.240128-08:00,2823.0,10.834286,10834.286 +10867,2025-03-08T08:37:52.068992-08:00,2806.0,10.828864,10828.864 +10868,2025-03-08T08:38:02.901183-08:00,2800.0,10.832191,10832.191 +10869,2025-03-08T08:38:13.721843-08:00,2752.0,10.82066,10820.66 +10870,2025-03-08T08:38:24.553212-08:00,2768.0,10.831369,10831.369 +10871,2025-03-08T08:38:35.391831-08:00,2710.0,10.838619,10838.619 +10872,2025-03-08T08:38:46.222960-08:00,2753.0,10.831129,10831.129 +10873,2025-03-08T08:38:57.052892-08:00,2717.0,10.829932,10829.932 +10874,2025-03-08T08:39:07.883917-08:00,2695.0,10.831025,10831.025 +10875,2025-03-08T08:39:18.713868-08:00,2692.0,10.829951,10829.951 +10876,2025-03-08T08:39:29.537263-08:00,2697.0,10.823395,10823.395 +10877,2025-03-08T08:39:40.368841-08:00,2679.0,10.831578,10831.578 +10878,2025-03-08T08:39:51.195841-08:00,2619.0,10.827,10827.0 +10879,2025-03-08T08:40:02.028880-08:00,2627.0,10.833039,10833.039 +10880,2025-03-08T08:40:12.854222-08:00,2615.0,10.825342,10825.342 +10881,2025-03-08T08:40:23.690165-08:00,2626.0,10.835943,10835.943 +10882,2025-03-08T08:40:34.521842-08:00,2586.0,10.831677,10831.677 +10883,2025-03-08T08:40:45.343943-08:00,2614.0,10.822101,10822.101 +10884,2025-03-08T08:40:56.185667-08:00,2552.0,10.841724,10841.724 +10885,2025-03-08T08:41:07.013594-08:00,2598.0,10.827927,10827.927 +10886,2025-03-08T08:41:17.843514-08:00,2590.0,10.82992,10829.92 +10887,2025-03-08T08:41:28.677010-08:00,2517.0,10.833496,10833.496 +10888,2025-03-08T08:41:39.523185-08:00,2522.0,10.846175,10846.175 +10889,2025-03-08T08:41:50.346233-08:00,2559.0,10.823048,10823.048 +10890,2025-03-08T08:42:01.176197-08:00,2559.0,10.829964,10829.964 +10891,2025-03-08T08:42:12.007844-08:00,2531.0,10.831647,10831.647 +10892,2025-03-08T08:42:22.852832-08:00,2546.0,10.844988,10844.988 +10893,2025-03-08T08:42:33.683866-08:00,2547.0,10.831034,10831.034 +10894,2025-03-08T08:42:44.519834-08:00,2531.0,10.835968,10835.968 +10895,2025-03-08T08:42:55.359246-08:00,2550.0,10.839412,10839.412 +10896,2025-03-08T08:43:06.188842-08:00,2519.0,10.829596,10829.596 +10897,2025-03-08T08:43:17.020847-08:00,2497.0,10.832005,10832.005 +10898,2025-03-08T08:43:27.844903-08:00,2554.0,10.824056,10824.056 +10899,2025-03-08T08:43:38.676419-08:00,2497.0,10.831516,10831.516 +10900,2025-03-08T08:43:49.510832-08:00,2510.0,10.834413,10834.413 +10901,2025-03-08T08:44:00.342039-08:00,2559.0,10.831207,10831.207 +10902,2025-03-08T08:44:11.175165-08:00,2558.0,10.833126,10833.126 +10903,2025-03-08T08:44:22.011977-08:00,2519.0,10.836812,10836.812 +10904,2025-03-08T08:44:32.839324-08:00,2555.0,10.827347,10827.347 +10905,2025-03-08T08:44:43.674082-08:00,2545.0,10.834758,10834.758 +10906,2025-03-08T08:44:54.518070-08:00,2559.0,10.843988,10843.988 +10907,2025-03-08T08:45:05.350223-08:00,2583.0,10.832153,10832.153 +10908,2025-03-08T08:45:16.180840-08:00,2545.0,10.830617,10830.617 +10909,2025-03-08T08:45:27.024012-08:00,2559.0,10.843172,10843.172 +10910,2025-03-08T08:45:37.853834-08:00,2559.0,10.829822,10829.822 +10911,2025-03-08T08:45:48.680819-08:00,2491.0,10.826985,10826.985 +10912,2025-03-08T08:45:59.521134-08:00,2547.0,10.840315,10840.315 +10913,2025-03-08T08:46:10.350571-08:00,2529.0,10.829437,10829.437 +10914,2025-03-08T08:46:21.182202-08:00,2493.0,10.831631,10831.631 +10915,2025-03-08T08:46:32.012970-08:00,2512.0,10.830768,10830.768 +10916,2025-03-08T08:46:42.847842-08:00,2494.0,10.834872,10834.872 +10917,2025-03-08T08:46:53.684104-08:00,2448.0,10.836262,10836.262 +10918,2025-03-08T08:47:04.515847-08:00,2479.0,10.831743,10831.743 +10919,2025-03-08T08:47:15.342725-08:00,2434.0,10.826878,10826.878 +10920,2025-03-08T08:47:26.171833-08:00,2415.0,10.829108,10829.108 +10921,2025-03-08T08:47:36.999953-08:00,2416.0,10.82812,10828.12 +10922,2025-03-08T08:47:47.831216-08:00,2394.0,10.831263,10831.263 +10923,2025-03-08T08:47:58.668190-08:00,2409.0,10.836974,10836.974 +10924,2025-03-08T08:48:09.499842-08:00,2394.0,10.831652,10831.652 +10925,2025-03-08T08:48:20.340831-08:00,2370.0,10.840989,10840.989 +10926,2025-03-08T08:48:31.170283-08:00,2379.0,10.829452,10829.452 +10927,2025-03-08T08:48:42.000835-08:00,2394.0,10.830552,10830.552 +10928,2025-03-08T08:48:52.838243-08:00,2400.0,10.837408,10837.408 +10929,2025-03-08T08:49:03.663949-08:00,2416.0,10.825706,10825.706 +10930,2025-03-08T08:49:14.494377-08:00,2416.0,10.830428,10830.428 +10931,2025-03-08T08:49:25.334280-08:00,2415.0,10.839903,10839.903 +10932,2025-03-08T08:49:36.166849-08:00,2358.0,10.832569,10832.569 +10933,2025-03-08T08:49:46.998128-08:00,2371.0,10.831279,10831.279 +10934,2025-03-08T08:49:57.826074-08:00,2397.0,10.827946,10827.946 +10935,2025-03-08T08:50:08.659154-08:00,2402.0,10.83308,10833.08 +10936,2025-03-08T08:50:19.498846-08:00,2395.0,10.839692,10839.692 +10937,2025-03-08T08:50:27.156796-08:00,2379.0,7.65795,7657.95 +10938,2025-03-08T08:50:30.330889-08:00,2384.0,3.174093,3174.093 +10939,2025-03-08T08:50:41.165784-08:00,2345.0,10.834895,10834.895 +10940,2025-03-08T08:50:51.996829-08:00,2369.0,10.831045,10831.045 +10941,2025-03-08T08:51:02.835928-08:00,2365.0,10.839099,10839.099 +10942,2025-03-08T08:51:13.662839-08:00,2279.0,10.826911,10826.911 +10943,2025-03-08T08:51:24.504864-08:00,2315.0,10.842025,10842.025 +10944,2025-03-08T08:51:35.337641-08:00,2352.0,10.832777,10832.777 +10945,2025-03-08T08:51:46.174976-08:00,2335.0,10.837335,10837.335 +10946,2025-03-08T08:51:57.010841-08:00,2370.0,10.835865,10835.865 +10947,2025-03-08T08:52:07.842281-08:00,2331.0,10.83144,10831.44 +10948,2025-03-08T08:52:18.668276-08:00,2351.0,10.825995,10825.995 +10949,2025-03-08T08:52:29.506649-08:00,2320.0,10.838373,10838.373 +10950,2025-03-08T08:52:40.346836-08:00,2313.0,10.840187,10840.187 +10951,2025-03-08T08:52:51.170150-08:00,2339.0,10.823314,10823.314 +10952,2025-03-08T08:53:01.997107-08:00,2358.0,10.826957,10826.957 +10953,2025-03-08T08:53:12.833291-08:00,2352.0,10.836184,10836.184 +10954,2025-03-08T08:53:23.664078-08:00,2299.0,10.830787,10830.787 +10955,2025-03-08T08:53:34.492833-08:00,2375.0,10.828755,10828.755 +10956,2025-03-08T08:53:45.330189-08:00,2364.0,10.837356,10837.356 +10957,2025-03-08T08:53:56.161116-08:00,2352.0,10.830927,10830.927 +10958,2025-03-08T08:54:06.992117-08:00,2350.0,10.831001,10831.001 +10959,2025-03-08T08:54:17.830535-08:00,2304.0,10.838418,10838.418 +10960,2025-03-08T08:54:28.651259-08:00,2313.0,10.820724,10820.724 +10961,2025-03-08T08:54:39.480050-08:00,2277.0,10.828791,10828.791 +10962,2025-03-08T08:54:50.314295-08:00,2339.0,10.834245,10834.245 +10963,2025-03-08T08:55:01.136843-08:00,2337.0,10.822548,10822.548 +10964,2025-03-08T08:55:11.970158-08:00,2326.0,10.833315,10833.315 +10965,2025-03-08T08:55:22.808849-08:00,2263.0,10.838691,10838.691 +10966,2025-03-08T08:55:33.633303-08:00,2287.0,10.824454,10824.454 +10967,2025-03-08T08:55:44.467039-08:00,2305.0,10.833736,10833.736 +10968,2025-03-08T08:55:55.304849-08:00,2261.0,10.83781,10837.81 +10969,2025-03-08T08:56:06.129882-08:00,2291.0,10.825033,10825.033 +10970,2025-03-08T08:56:16.961840-08:00,2308.0,10.831958,10831.958 +10971,2025-03-08T08:56:27.792373-08:00,2322.0,10.830533,10830.533 +10972,2025-03-08T08:56:38.614023-08:00,2324.0,10.82165,10821.65 +10973,2025-03-08T08:56:49.455173-08:00,2268.0,10.84115,10841.15 +10974,2025-03-08T08:57:00.277849-08:00,2331.0,10.822676,10822.676 +10975,2025-03-08T08:57:11.115184-08:00,2330.0,10.837335,10837.335 +10976,2025-03-08T08:57:21.952843-08:00,2274.0,10.837659,10837.659 +10977,2025-03-08T08:57:32.782987-08:00,2313.0,10.830144,10830.144 +10978,2025-03-08T08:57:43.621800-08:00,2290.0,10.838813,10838.813 +10979,2025-03-08T08:57:54.451185-08:00,2368.0,10.829385,10829.385 +10980,2025-03-08T08:58:05.291269-08:00,2338.0,10.840084,10840.084 +10981,2025-03-08T08:58:16.118546-08:00,2336.0,10.827277,10827.277 +10982,2025-03-08T08:58:26.957845-08:00,2341.0,10.839299,10839.299 +10983,2025-03-08T08:58:37.788464-08:00,2368.0,10.830619,10830.619 +10984,2025-03-08T08:58:48.619278-08:00,2362.0,10.830814,10830.814 +10985,2025-03-08T08:58:59.455165-08:00,2353.0,10.835887,10835.887 +10986,2025-03-08T08:59:10.286088-08:00,2305.0,10.830923,10830.923 +10987,2025-03-08T08:59:21.123833-08:00,2279.0,10.837745,10837.745 +10988,2025-03-08T08:59:31.955308-08:00,2267.0,10.831475,10831.475 +10989,2025-03-08T08:59:42.793840-08:00,2273.0,10.838532,10838.532 +10990,2025-03-08T08:59:53.630403-08:00,2297.0,10.836563,10836.563 +10991,2025-03-08T09:00:04.460042-08:00,2285.0,10.829639,10829.639 +10992,2025-03-08T09:00:15.295245-08:00,2237.0,10.835203,10835.203 +10993,2025-03-08T09:00:26.131227-08:00,2245.0,10.835982,10835.982 +10994,2025-03-08T09:00:36.962921-08:00,2261.0,10.831694,10831.694 +10995,2025-03-08T09:00:47.799128-08:00,2257.0,10.836207,10836.207 +10996,2025-03-08T09:00:58.643839-08:00,2183.0,10.844711,10844.711 +10997,2025-03-08T09:01:09.474842-08:00,2205.0,10.831003,10831.003 +10998,2025-03-08T09:01:20.307017-08:00,2207.0,10.832175,10832.175 +10999,2025-03-08T09:01:31.138845-08:00,2224.0,10.831828,10831.828 +11000,2025-03-08T09:01:41.979844-08:00,2233.0,10.840999,10840.999 +11001,2025-03-08T09:01:52.813593-08:00,2173.0,10.833749,10833.749 +11002,2025-03-08T09:02:03.653112-08:00,2166.0,10.839519,10839.519 +11003,2025-03-08T09:02:14.489356-08:00,2191.0,10.836244,10836.244 +11004,2025-03-08T09:02:25.321424-08:00,2165.0,10.832068,10832.068 +11005,2025-03-08T09:02:36.163014-08:00,2211.0,10.84159,10841.59 +11006,2025-03-08T09:02:46.993237-08:00,2197.0,10.830223,10830.223 +11007,2025-03-08T09:02:57.823354-08:00,2207.0,10.830117,10830.117 +11008,2025-03-08T09:03:08.657450-08:00,2161.0,10.834096,10834.096 +11009,2025-03-08T09:03:19.490161-08:00,2128.0,10.832711,10832.711 +11010,2025-03-08T09:03:30.327842-08:00,2160.0,10.837681,10837.681 +11011,2025-03-08T09:03:41.160585-08:00,2121.0,10.832743,10832.743 +11012,2025-03-08T09:03:51.993844-08:00,2176.0,10.833259,10833.259 +11013,2025-03-08T09:04:02.823842-08:00,2195.0,10.829998,10829.998 +11014,2025-03-08T09:04:13.661229-08:00,2192.0,10.837387,10837.387 +11015,2025-03-08T09:04:24.494098-08:00,2193.0,10.832869,10832.869 +11016,2025-03-08T09:04:35.335211-08:00,2192.0,10.841113,10841.113 +11017,2025-03-08T09:04:46.161988-08:00,2130.0,10.826777,10826.777 +11018,2025-03-08T09:04:56.993849-08:00,2192.0,10.831861,10831.861 +11019,2025-03-08T09:05:07.822951-08:00,2143.0,10.829102,10829.102 +11020,2025-03-08T09:05:18.660859-08:00,2190.0,10.837908,10837.908 +11021,2025-03-08T09:05:29.492928-08:00,2190.0,10.832069,10832.069 +11022,2025-03-08T09:05:40.355467-08:00,2138.0,10.862539,10862.539 +11023,2025-03-08T09:05:51.192917-08:00,2187.0,10.83745,10837.45 +11024,2025-03-08T09:06:02.026255-08:00,2181.0,10.833338,10833.338 +11025,2025-03-08T09:06:12.858782-08:00,2145.0,10.832527,10832.527 +11026,2025-03-08T09:06:23.691704-08:00,2121.0,10.832922,10832.922 +11027,2025-03-08T09:06:34.524788-08:00,2149.0,10.833084,10833.084 +11028,2025-03-08T09:06:45.358523-08:00,2096.0,10.833735,10833.735 +11029,2025-03-08T09:06:56.190320-08:00,2094.0,10.831797,10831.797 +11030,2025-03-08T09:07:07.021324-08:00,2144.0,10.831004,10831.004 +11031,2025-03-08T09:07:17.857776-08:00,2176.0,10.836452,10836.452 +11032,2025-03-08T09:07:28.678830-08:00,2163.0,10.821054,10821.054 +11033,2025-03-08T09:07:39.515933-08:00,2138.0,10.837103,10837.103 +11034,2025-03-08T09:07:50.347763-08:00,2133.0,10.83183,10831.83 +11035,2025-03-08T09:08:01.174782-08:00,2138.0,10.827019,10827.019 +11036,2025-03-08T09:08:12.011780-08:00,2178.0,10.836998,10836.998 +11037,2025-03-08T09:08:22.848073-08:00,2094.0,10.836293,10836.293 +11038,2025-03-08T09:08:33.678759-08:00,2109.0,10.830686,10830.686 +11039,2025-03-08T09:08:44.515807-08:00,2127.0,10.837048,10837.048 +11040,2025-03-08T09:08:55.343781-08:00,2139.0,10.827974,10827.974 +11041,2025-03-08T09:09:06.186100-08:00,2142.0,10.842319,10842.319 +11042,2025-03-08T09:09:17.011115-08:00,2155.0,10.825015,10825.015 +11043,2025-03-08T09:09:27.849964-08:00,2105.0,10.838849,10838.849 +11044,2025-03-08T09:09:38.682051-08:00,2155.0,10.832087,10832.087 +11045,2025-03-08T09:09:49.517359-08:00,2074.0,10.835308,10835.308 +11046,2025-03-08T09:10:00.346044-08:00,2082.0,10.828685,10828.685 +11047,2025-03-08T09:10:11.178094-08:00,2142.0,10.83205,10832.05 +11048,2025-03-08T09:10:22.014786-08:00,2081.0,10.836692,10836.692 +11049,2025-03-08T09:10:32.854325-08:00,2142.0,10.839539,10839.539 +11050,2025-03-08T09:10:43.689137-08:00,2133.0,10.834812,10834.812 +11051,2025-03-08T09:10:54.516781-08:00,2128.0,10.827644,10827.644 +11052,2025-03-08T09:11:05.342133-08:00,2127.0,10.825352,10825.352 +11053,2025-03-08T09:11:16.189223-08:00,2096.0,10.84709,10847.09 +11054,2025-03-08T09:11:27.022799-08:00,2099.0,10.833576,10833.576 +11055,2025-03-08T09:11:37.852777-08:00,2140.0,10.829978,10829.978 +11056,2025-03-08T09:11:48.684833-08:00,2129.0,10.832056,10832.056 +11057,2025-03-08T09:11:59.506785-08:00,2063.0,10.821952,10821.952 +11058,2025-03-08T09:12:10.346304-08:00,2097.0,10.839519,10839.519 +11059,2025-03-08T09:12:21.182402-08:00,2099.0,10.836098,10836.098 +11060,2025-03-08T09:12:32.006782-08:00,2146.0,10.82438,10824.38 +11061,2025-03-08T09:12:42.839086-08:00,2111.0,10.832304,10832.304 +11062,2025-03-08T09:12:53.673786-08:00,2153.0,10.8347,10834.7 +11063,2025-03-08T09:13:04.513787-08:00,2151.0,10.840001,10840.001 +11064,2025-03-08T09:13:15.345558-08:00,2153.0,10.831771,10831.771 +11065,2025-03-08T09:13:26.182970-08:00,2112.0,10.837412,10837.412 +11066,2025-03-08T09:13:37.014788-08:00,2154.0,10.831818,10831.818 +11067,2025-03-08T09:13:47.845134-08:00,2119.0,10.830346,10830.346 +11068,2025-03-08T09:13:58.683135-08:00,2096.0,10.838001,10838.001 +11069,2025-03-08T09:14:09.509782-08:00,2138.0,10.826647,10826.647 +11070,2025-03-08T09:14:20.345774-08:00,2104.0,10.835992,10835.992 +11071,2025-03-08T09:14:31.185103-08:00,2158.0,10.839329,10839.329 +11072,2025-03-08T09:14:42.015780-08:00,2163.0,10.830677,10830.677 +11073,2025-03-08T09:14:52.847851-08:00,2147.0,10.832071,10832.071 +11074,2025-03-08T09:15:03.685246-08:00,2187.0,10.837395,10837.395 +11075,2025-03-08T09:15:14.523841-08:00,2160.0,10.838595,10838.595 +11076,2025-03-08T09:15:25.361788-08:00,2143.0,10.837947,10837.947 +11077,2025-03-08T09:15:36.198190-08:00,2190.0,10.836402,10836.402 +11078,2025-03-08T09:15:47.033009-08:00,2139.0,10.834819,10834.819 +11079,2025-03-08T09:15:57.866123-08:00,2199.0,10.833114,10833.114 +11080,2025-03-08T09:16:08.696770-08:00,2167.0,10.830647,10830.647 +11081,2025-03-08T09:16:19.528795-08:00,2205.0,10.832025,10832.025 +11082,2025-03-08T09:16:30.373359-08:00,2195.0,10.844564,10844.564 +11083,2025-03-08T09:16:41.198034-08:00,2209.0,10.824675,10824.675 +11084,2025-03-08T09:16:52.037127-08:00,2167.0,10.839093,10839.093 +11085,2025-03-08T09:17:02.866782-08:00,2151.0,10.829655,10829.655 +11086,2025-03-08T09:17:13.699923-08:00,2194.0,10.833141,10833.141 +11087,2025-03-08T09:17:24.530242-08:00,2160.0,10.830319,10830.319 +11088,2025-03-08T09:17:46.201100-08:00,2160.0,21.670858,21670.858 +11089,2025-03-08T09:17:57.035038-08:00,2214.0,10.833938,10833.938 +11090,2025-03-08T09:18:07.871879-08:00,2218.0,10.836841,10836.841 +11091,2025-03-08T09:18:18.707895-08:00,2219.0,10.836016,10836.016 +11092,2025-03-08T09:18:29.550073-08:00,2198.0,10.842178,10842.178 +11093,2025-03-08T09:18:40.383909-08:00,2223.0,10.833836,10833.836 +11094,2025-03-08T09:18:51.218985-08:00,2218.0,10.835076,10835.076 +11095,2025-03-08T09:19:02.050782-08:00,2223.0,10.831797,10831.797 +11096,2025-03-08T09:19:12.894001-08:00,2225.0,10.843219,10843.219 +11097,2025-03-08T09:19:23.724972-08:00,2213.0,10.830971,10830.971 +11098,2025-03-08T09:19:34.565152-08:00,2203.0,10.84018,10840.18 +11099,2025-03-08T09:19:45.406780-08:00,2206.0,10.841628,10841.628 +11100,2025-03-08T09:19:56.243855-08:00,2195.0,10.837075,10837.075 +11101,2025-03-08T09:20:07.077098-08:00,2231.0,10.833243,10833.243 +11102,2025-03-08T09:20:17.916831-08:00,2165.0,10.839733,10839.733 +11103,2025-03-08T09:20:28.751306-08:00,2155.0,10.834475,10834.475 +11104,2025-03-08T09:20:39.589088-08:00,2177.0,10.837782,10837.782 +11105,2025-03-08T09:20:50.425617-08:00,2224.0,10.836529,10836.529 +11106,2025-03-08T09:21:01.260782-08:00,2206.0,10.835165,10835.165 +11107,2025-03-08T09:21:12.094094-08:00,2199.0,10.833312,10833.312 +11108,2025-03-08T09:21:22.937221-08:00,2195.0,10.843127,10843.127 +11109,2025-03-08T09:21:33.779360-08:00,2158.0,10.842139,10842.139 +11110,2025-03-08T09:21:44.611828-08:00,2205.0,10.832468,10832.468 +11111,2025-03-08T09:21:55.456068-08:00,2195.0,10.84424,10844.24 +11112,2025-03-08T09:22:06.298943-08:00,2217.0,10.842875,10842.875 +11113,2025-03-08T09:22:17.127787-08:00,2171.0,10.828844,10828.844 +11114,2025-03-08T09:22:27.967173-08:00,2176.0,10.839386,10839.386 +11115,2025-03-08T09:22:38.809194-08:00,2215.0,10.842021,10842.021 +11116,2025-03-08T09:22:49.636785-08:00,2192.0,10.827591,10827.591 +11117,2025-03-08T09:23:00.473186-08:00,2263.0,10.836401,10836.401 +11118,2025-03-08T09:23:11.310099-08:00,2254.0,10.836913,10836.913 +11119,2025-03-08T09:23:22.147779-08:00,2265.0,10.83768,10837.68 +11120,2025-03-08T09:23:32.990763-08:00,2246.0,10.842984,10842.984 +11121,2025-03-08T09:23:43.830371-08:00,2283.0,10.839608,10839.608 +11122,2025-03-08T09:23:54.666777-08:00,2295.0,10.836406,10836.406 +11123,2025-03-08T09:24:05.503924-08:00,2262.0,10.837147,10837.147 +11124,2025-03-08T09:24:16.338728-08:00,2290.0,10.834804,10834.804 +11125,2025-03-08T09:24:27.170004-08:00,2276.0,10.831276,10831.276 +11126,2025-03-08T09:24:38.000117-08:00,2299.0,10.830113,10830.113 +11127,2025-03-08T09:24:48.838852-08:00,2305.0,10.838735,10838.735 +11128,2025-03-08T09:24:59.667115-08:00,2327.0,10.828263,10828.263 +11129,2025-03-08T09:25:10.498020-08:00,2331.0,10.830905,10830.905 +11130,2025-03-08T09:25:21.342763-08:00,2307.0,10.844743,10844.743 +11131,2025-03-08T09:25:32.174113-08:00,2274.0,10.83135,10831.35 +11132,2025-03-08T09:25:43.017233-08:00,2325.0,10.84312,10843.12 +11133,2025-03-08T09:25:53.848811-08:00,2338.0,10.831578,10831.578 +11134,2025-03-08T09:26:04.686848-08:00,2307.0,10.838037,10838.037 +11135,2025-03-08T09:26:15.524786-08:00,2305.0,10.837938,10837.938 +11136,2025-03-08T09:26:26.361782-08:00,2336.0,10.836996,10836.996 +11137,2025-03-08T09:26:37.211838-08:00,2343.0,10.850056,10850.056 +11138,2025-03-08T09:26:48.054294-08:00,2346.0,10.842456,10842.456 +11139,2025-03-08T09:26:58.886964-08:00,2347.0,10.83267,10832.67 +11140,2025-03-08T09:27:09.728866-08:00,2315.0,10.841902,10841.902 +11141,2025-03-08T09:27:20.567507-08:00,2352.0,10.838641,10838.641 +11142,2025-03-08T09:27:31.396760-08:00,2352.0,10.829253,10829.253 +11143,2025-03-08T09:27:42.234786-08:00,2351.0,10.838026,10838.026 +11144,2025-03-08T09:27:53.078105-08:00,2278.0,10.843319,10843.319 +11145,2025-03-08T09:28:03.920716-08:00,2358.0,10.842611,10842.611 +11146,2025-03-08T09:28:14.751785-08:00,2349.0,10.831069,10831.069 +11147,2025-03-08T09:28:25.578921-08:00,2341.0,10.827136,10827.136 +11148,2025-03-08T09:28:36.410780-08:00,2294.0,10.831859,10831.859 +11149,2025-03-08T09:28:47.253800-08:00,2294.0,10.84302,10843.02 +11150,2025-03-08T09:28:58.094123-08:00,2371.0,10.840323,10840.323 +11151,2025-03-08T09:29:08.921908-08:00,2349.0,10.827785,10827.785 +11152,2025-03-08T09:29:19.765428-08:00,2367.0,10.84352,10843.52 +11153,2025-03-08T09:29:30.592791-08:00,2349.0,10.827363,10827.363 +11154,2025-03-08T09:29:41.427856-08:00,2363.0,10.835065,10835.065 +11155,2025-03-08T09:29:52.260831-08:00,2389.0,10.832975,10832.975 +11156,2025-03-08T09:30:03.090765-08:00,2339.0,10.829934,10829.934 +11157,2025-03-08T09:30:13.936113-08:00,2384.0,10.845348,10845.348 +11158,2025-03-08T09:30:24.778875-08:00,2417.0,10.842762,10842.762 +11159,2025-03-08T09:30:35.609785-08:00,2405.0,10.83091,10830.91 +11160,2025-03-08T09:30:46.452927-08:00,2411.0,10.843142,10843.142 +11161,2025-03-08T09:30:57.283821-08:00,2455.0,10.830894,10830.894 +11162,2025-03-08T09:31:08.123021-08:00,2458.0,10.8392,10839.2 +11163,2025-03-08T09:31:18.960374-08:00,2406.0,10.837353,10837.353 +11164,2025-03-08T09:31:29.798983-08:00,2479.0,10.838609,10838.609 +11165,2025-03-08T09:31:40.641912-08:00,2427.0,10.842929,10842.929 +11166,2025-03-08T09:31:51.472966-08:00,2434.0,10.831054,10831.054 +11167,2025-03-08T09:32:02.316142-08:00,2511.0,10.843176,10843.176 +11168,2025-03-08T09:32:13.157817-08:00,2525.0,10.841675,10841.675 +11169,2025-03-08T09:32:23.996099-08:00,2539.0,10.838282,10838.282 +11170,2025-03-08T09:32:34.825643-08:00,2491.0,10.829544,10829.544 +11171,2025-03-08T09:32:45.668781-08:00,2527.0,10.843138,10843.138 +11172,2025-03-08T09:32:56.496978-08:00,2546.0,10.828197,10828.197 +11173,2025-03-08T09:33:07.345294-08:00,2559.0,10.848316,10848.316 +11174,2025-03-08T09:33:18.181761-08:00,2554.0,10.836467,10836.467 +11175,2025-03-08T09:33:29.021785-08:00,2580.0,10.840024,10840.024 +11176,2025-03-08T09:33:39.851413-08:00,2559.0,10.829628,10829.628 +11177,2025-03-08T09:33:50.688754-08:00,2593.0,10.837341,10837.341 +11178,2025-03-08T09:34:01.535941-08:00,2594.0,10.847187,10847.187 +11179,2025-03-08T09:34:12.365716-08:00,2559.0,10.829775,10829.775 +11180,2025-03-08T09:34:23.208373-08:00,2608.0,10.842657,10842.657 +11181,2025-03-08T09:34:34.047084-08:00,2603.0,10.838711,10838.711 +11182,2025-03-08T09:34:44.876173-08:00,2597.0,10.829089,10829.089 +11183,2025-03-08T09:34:55.713768-08:00,2559.0,10.837595,10837.595 +11184,2025-03-08T09:35:06.544088-08:00,2591.0,10.83032,10830.32 +11185,2025-03-08T09:35:17.371790-08:00,2605.0,10.827702,10827.702 +11186,2025-03-08T09:35:28.214783-08:00,2623.0,10.842993,10842.993 +11187,2025-03-08T09:35:39.047086-08:00,2641.0,10.832303,10832.303 +11188,2025-03-08T09:35:49.888209-08:00,2623.0,10.841123,10841.123 +11189,2025-03-08T09:36:00.720782-08:00,2611.0,10.832573,10832.573 +11190,2025-03-08T09:36:11.548781-08:00,2663.0,10.827999,10827.999 +11191,2025-03-08T09:36:22.385198-08:00,2653.0,10.836417,10836.417 +11192,2025-03-08T09:36:33.219290-08:00,2618.0,10.834092,10834.092 +11193,2025-03-08T09:36:44.053770-08:00,2672.0,10.83448,10834.48 +11194,2025-03-08T09:36:54.888094-08:00,2640.0,10.834324,10834.324 +11195,2025-03-08T09:37:05.729425-08:00,2643.0,10.841331,10841.331 +11196,2025-03-08T09:37:16.568199-08:00,2671.0,10.838774,10838.774 +11197,2025-03-08T09:37:27.401368-08:00,2676.0,10.833169,10833.169 +11198,2025-03-08T09:37:38.241339-08:00,2670.0,10.839971,10839.971 +11199,2025-03-08T09:37:49.083258-08:00,2679.0,10.841919,10841.919 +11200,2025-03-08T09:37:59.916784-08:00,2683.0,10.833526,10833.526 +11201,2025-03-08T09:38:10.747821-08:00,2672.0,10.831037,10831.037 +11202,2025-03-08T09:38:21.586827-08:00,2681.0,10.839006,10839.006 +11203,2025-03-08T09:38:32.422321-08:00,2677.0,10.835494,10835.494 +11204,2025-03-08T09:38:43.259779-08:00,2659.0,10.837458,10837.458 +11205,2025-03-08T09:38:54.091828-08:00,2679.0,10.832049,10832.049 +11206,2025-03-08T09:39:04.934772-08:00,2673.0,10.842944,10842.944 +11207,2025-03-08T09:39:15.767202-08:00,2625.0,10.83243,10832.43 +11208,2025-03-08T09:39:26.598848-08:00,2679.0,10.831646,10831.646 +11209,2025-03-08T09:39:37.434998-08:00,2657.0,10.83615,10836.15 +11210,2025-03-08T09:39:48.273955-08:00,2672.0,10.838957,10838.957 +11211,2025-03-08T09:39:59.106193-08:00,2640.0,10.832238,10832.238 +11212,2025-03-08T09:40:09.938774-08:00,2642.0,10.832581,10832.581 +11213,2025-03-08T09:40:20.784847-08:00,2640.0,10.846073,10846.073 +11214,2025-03-08T09:40:31.619119-08:00,2673.0,10.834272,10834.272 +11215,2025-03-08T09:40:42.460619-08:00,2677.0,10.8415,10841.5 +11216,2025-03-08T09:40:53.290939-08:00,2637.0,10.83032,10830.32 +11217,2025-03-08T09:41:04.134988-08:00,2645.0,10.844049,10844.049 +11218,2025-03-08T09:41:14.966262-08:00,2674.0,10.831274,10831.274 +11219,2025-03-08T09:41:25.805023-08:00,2672.0,10.838761,10838.761 +11220,2025-03-08T09:41:36.654216-08:00,2669.0,10.849193,10849.193 +11221,2025-03-08T09:41:47.484819-08:00,2667.0,10.830603,10830.603 +11222,2025-03-08T09:41:58.325777-08:00,2661.0,10.840958,10840.958 +11223,2025-03-08T09:42:09.166582-08:00,2649.0,10.840805,10840.805 +11224,2025-03-08T09:42:20.008785-08:00,2635.0,10.842203,10842.203 +11225,2025-03-08T09:42:30.845819-08:00,2666.0,10.837034,10837.034 +11226,2025-03-08T09:42:41.686508-08:00,2627.0,10.840689,10840.689 +11227,2025-03-08T09:42:52.527069-08:00,2624.0,10.840561,10840.561 +11228,2025-03-08T09:43:03.364047-08:00,2646.0,10.836978,10836.978 +11229,2025-03-08T09:43:14.205045-08:00,2652.0,10.840998,10840.998 +11230,2025-03-08T09:43:25.050021-08:00,2631.0,10.844976,10844.976 +11231,2025-03-08T09:43:35.887084-08:00,2654.0,10.837063,10837.063 +11232,2025-03-08T09:43:46.725868-08:00,2617.0,10.838784,10838.784 +11233,2025-03-08T09:43:57.562776-08:00,2655.0,10.836908,10836.908 +11234,2025-03-08T09:44:08.387686-08:00,2651.0,10.82491,10824.91 +11235,2025-03-08T09:44:19.225030-08:00,2614.0,10.837344,10837.344 +11236,2025-03-08T09:44:30.067915-08:00,2612.0,10.842885,10842.885 +11237,2025-03-08T09:44:40.905098-08:00,2645.0,10.837183,10837.183 +11238,2025-03-08T09:44:51.748393-08:00,2609.0,10.843295,10843.295 +11239,2025-03-08T09:45:02.586782-08:00,2641.0,10.838389,10838.389 +11240,2025-03-08T09:45:13.426385-08:00,2619.0,10.839603,10839.603 +11241,2025-03-08T09:45:24.265009-08:00,2646.0,10.838624,10838.624 +11242,2025-03-08T09:45:35.105776-08:00,2581.0,10.840767,10840.767 +11243,2025-03-08T09:45:45.952864-08:00,2559.0,10.847088,10847.088 +11244,2025-03-08T09:45:56.792204-08:00,2620.0,10.83934,10839.34 +11245,2025-03-08T09:46:07.631014-08:00,2635.0,10.83881,10838.81 +11246,2025-03-08T09:46:18.470762-08:00,2625.0,10.839748,10839.748 +11247,2025-03-08T09:46:29.302129-08:00,2603.0,10.831367,10831.367 +11248,2025-03-08T09:46:40.136801-08:00,2640.0,10.834672,10834.672 +11249,2025-03-08T09:46:50.983759-08:00,2598.0,10.846958,10846.958 +11250,2025-03-08T09:47:01.819778-08:00,2608.0,10.836019,10836.019 +11251,2025-03-08T09:47:12.663121-08:00,2598.0,10.843343,10843.343 +11252,2025-03-08T09:47:23.500855-08:00,2602.0,10.837734,10837.734 +11253,2025-03-08T09:47:34.346794-08:00,2635.0,10.845939,10845.939 +11254,2025-03-08T09:47:45.176964-08:00,2638.0,10.83017,10830.17 +11255,2025-03-08T09:47:56.026074-08:00,2559.0,10.84911,10849.11 +11256,2025-03-08T09:48:06.865931-08:00,2623.0,10.839857,10839.857 +11257,2025-03-08T09:48:17.704823-08:00,2605.0,10.838892,10838.892 +11258,2025-03-08T09:48:28.537838-08:00,2559.0,10.833015,10833.015 +11259,2025-03-08T09:48:39.385023-08:00,2593.0,10.847185,10847.185 +11260,2025-03-08T09:48:50.215036-08:00,2599.0,10.830013,10830.013 +11261,2025-03-08T09:49:01.063146-08:00,2623.0,10.84811,10848.11 +11262,2025-03-08T09:49:11.897786-08:00,2559.0,10.83464,10834.64 +11263,2025-03-08T09:49:22.734782-08:00,2586.0,10.836996,10836.996 +11264,2025-03-08T09:49:33.562428-08:00,2599.0,10.827646,10827.646 +11265,2025-03-08T09:49:44.408824-08:00,2594.0,10.846396,10846.396 +11266,2025-03-08T09:49:55.241891-08:00,2559.0,10.833067,10833.067 +11267,2025-03-08T09:50:06.084627-08:00,2547.0,10.842736,10842.736 +11268,2025-03-08T09:50:16.928037-08:00,2542.0,10.84341,10843.41 +11269,2025-03-08T09:50:27.765040-08:00,2610.0,10.837003,10837.003 +11270,2025-03-08T09:50:38.607777-08:00,2611.0,10.842737,10842.737 +11271,2025-03-08T09:50:49.445117-08:00,2559.0,10.83734,10837.34 +11272,2025-03-08T09:51:00.296123-08:00,2608.0,10.851006,10851.006 +11273,2025-03-08T09:51:11.129925-08:00,2555.0,10.833802,10833.802 +11274,2025-03-08T09:51:21.970832-08:00,2611.0,10.840907,10840.907 +11275,2025-03-08T09:51:32.813318-08:00,2607.0,10.842486,10842.486 +11276,2025-03-08T09:51:43.660307-08:00,2559.0,10.846989,10846.989 +11277,2025-03-08T09:51:54.503786-08:00,2591.0,10.843479,10843.479 +11278,2025-03-08T09:52:05.347782-08:00,2559.0,10.843996,10843.996 +11279,2025-03-08T09:52:16.187786-08:00,2559.0,10.840004,10840.004 +11280,2025-03-08T09:52:27.034234-08:00,2597.0,10.846448,10846.448 +11281,2025-03-08T09:52:37.875827-08:00,2593.0,10.841593,10841.593 +11282,2025-03-08T09:52:48.708819-08:00,2603.0,10.832992,10832.992 +11283,2025-03-08T09:52:59.545330-08:00,2606.0,10.836511,10836.511 +11284,2025-03-08T09:53:10.386983-08:00,2559.0,10.841653,10841.653 +11285,2025-03-08T09:53:21.219913-08:00,2531.0,10.83293,10832.93 +11286,2025-03-08T09:53:32.053596-08:00,2534.0,10.833683,10833.683 +11287,2025-03-08T09:53:42.886045-08:00,2583.0,10.832449,10832.449 +11288,2025-03-08T09:53:53.722107-08:00,2540.0,10.836062,10836.062 +11289,2025-03-08T09:54:04.554934-08:00,2546.0,10.832827,10832.827 +11290,2025-03-08T09:54:15.398169-08:00,2592.0,10.843235,10843.235 +11291,2025-03-08T09:54:26.233945-08:00,2559.0,10.835776,10835.776 +11292,2025-03-08T09:54:37.069882-08:00,2529.0,10.835937,10835.937 +11293,2025-03-08T09:54:47.896852-08:00,2559.0,10.82697,10826.97 +11294,2025-03-08T09:54:58.728935-08:00,2554.0,10.832083,10832.083 +11295,2025-03-08T09:55:09.563831-08:00,2582.0,10.834896,10834.896 +11296,2025-03-08T09:55:20.405360-08:00,2557.0,10.841529,10841.529 +11297,2025-03-08T09:55:31.234867-08:00,2559.0,10.829507,10829.507 +11298,2025-03-08T09:55:42.072325-08:00,2559.0,10.837458,10837.458 +11299,2025-03-08T09:55:52.904235-08:00,2582.0,10.83191,10831.91 +11300,2025-03-08T09:56:03.734759-08:00,2554.0,10.830524,10830.524 +11301,2025-03-08T09:56:14.568092-08:00,2559.0,10.833333,10833.333 +11302,2025-03-08T09:56:25.412351-08:00,2582.0,10.844259,10844.259 +11303,2025-03-08T09:56:36.243780-08:00,2559.0,10.831429,10831.429 +11304,2025-03-08T09:56:47.074777-08:00,2559.0,10.830997,10830.997 +11305,2025-03-08T09:56:57.902247-08:00,2515.0,10.82747,10827.47 +11306,2025-03-08T09:57:08.735115-08:00,2531.0,10.832868,10832.868 +11307,2025-03-08T09:57:19.579827-08:00,2559.0,10.844712,10844.712 +11308,2025-03-08T09:57:30.412788-08:00,2559.0,10.832961,10832.961 +11309,2025-03-08T09:57:41.248098-08:00,2559.0,10.83531,10835.31 +11310,2025-03-08T09:57:52.086777-08:00,2559.0,10.838679,10838.679 +11311,2025-03-08T09:58:02.930911-08:00,2559.0,10.844134,10844.134 +11312,2025-03-08T09:58:13.765195-08:00,2493.0,10.834284,10834.284 +11313,2025-03-08T09:58:24.605823-08:00,2544.0,10.840628,10840.628 +11314,2025-03-08T09:58:35.450758-08:00,2501.0,10.844935,10844.935 +11315,2025-03-08T09:58:46.284928-08:00,2506.0,10.83417,10834.17 +11316,2025-03-08T09:58:57.123003-08:00,2556.0,10.838075,10838.075 +11317,2025-03-08T09:59:07.961923-08:00,2496.0,10.83892,10838.92 +11318,2025-03-08T09:59:18.815006-08:00,2559.0,10.853083,10853.083 +11319,2025-03-08T09:59:29.650888-08:00,2558.0,10.835882,10835.882 +11320,2025-03-08T09:59:40.483966-08:00,2544.0,10.833078,10833.078 +11321,2025-03-08T09:59:51.320931-08:00,2553.0,10.836965,10836.965 +11322,2025-03-08T10:00:02.160770-08:00,2557.0,10.839839,10839.839 +11323,2025-03-08T10:00:12.995774-08:00,2517.0,10.835004,10835.004 +11324,2025-03-08T10:00:23.834787-08:00,2490.0,10.839013,10839.013 +11325,2025-03-08T10:00:34.681776-08:00,2525.0,10.846989,10846.989 +11326,2025-03-08T10:00:45.515735-08:00,2506.0,10.833959,10833.959 +11327,2025-03-08T10:00:56.356984-08:00,2493.0,10.841249,10841.249 +11328,2025-03-08T10:01:07.196602-08:00,2551.0,10.839618,10839.618 +11329,2025-03-08T10:01:18.033029-08:00,2511.0,10.836427,10836.427 +11330,2025-03-08T10:01:28.881393-08:00,2544.0,10.848364,10848.364 +11331,2025-03-08T10:01:39.719832-08:00,2535.0,10.838439,10838.439 +11332,2025-03-08T10:01:50.564785-08:00,2544.0,10.844953,10844.953 +11333,2025-03-08T10:02:01.406601-08:00,2544.0,10.841816,10841.816 +11334,2025-03-08T10:02:12.253154-08:00,2481.0,10.846553,10846.553 +11335,2025-03-08T10:02:23.091138-08:00,2543.0,10.837984,10837.984 +11336,2025-03-08T10:02:33.939787-08:00,2495.0,10.848649,10848.649 +11337,2025-03-08T10:02:44.778105-08:00,2528.0,10.838318,10838.318 +11338,2025-03-08T10:02:55.626029-08:00,2519.0,10.847924,10847.924 +11339,2025-03-08T10:03:06.463800-08:00,2543.0,10.837771,10837.771 +11340,2025-03-08T10:03:17.306787-08:00,2541.0,10.842987,10842.987 +11341,2025-03-08T10:03:28.150838-08:00,2490.0,10.844051,10844.051 +11342,2025-03-08T10:03:38.995920-08:00,2519.0,10.845082,10845.082 +11343,2025-03-08T10:03:49.829919-08:00,2497.0,10.833999,10833.999 +11344,2025-03-08T10:04:00.671794-08:00,2540.0,10.841875,10841.875 +11345,2025-03-08T10:04:11.509809-08:00,2497.0,10.838015,10838.015 +11346,2025-03-08T10:04:22.353351-08:00,2531.0,10.843542,10843.542 +11347,2025-03-08T10:04:33.194759-08:00,2509.0,10.841408,10841.408 +11348,2025-03-08T10:04:44.029785-08:00,2507.0,10.835026,10835.026 +11349,2025-03-08T10:04:54.871460-08:00,2521.0,10.841675,10841.675 +11350,2025-03-08T10:05:05.708813-08:00,2464.0,10.837353,10837.353 +11351,2025-03-08T10:05:16.545840-08:00,2500.0,10.837027,10837.027 +11352,2025-03-08T10:05:27.394355-08:00,2499.0,10.848515,10848.515 +11353,2025-03-08T10:05:38.268906-08:00,2512.0,10.874551,10874.551 +11354,2025-03-08T10:05:49.105936-08:00,2473.0,10.83703,10837.03 +11355,2025-03-08T10:05:59.948921-08:00,2484.0,10.842985,10842.985 +11356,2025-03-08T10:06:10.785936-08:00,2516.0,10.837015,10837.015 +11357,2025-03-08T10:06:21.624875-08:00,2453.0,10.838939,10838.939 +11358,2025-03-08T10:06:32.460464-08:00,2494.0,10.835589,10835.589 +11359,2025-03-08T10:06:43.298279-08:00,2510.0,10.837815,10837.815 +11360,2025-03-08T10:06:54.147059-08:00,2512.0,10.84878,10848.78 +11361,2025-03-08T10:07:04.981944-08:00,2445.0,10.834885,10834.885 +11362,2025-03-08T10:07:15.827935-08:00,2448.0,10.845991,10845.991 +11363,2025-03-08T10:07:26.671688-08:00,2486.0,10.843753,10843.753 +11364,2025-03-08T10:07:37.503549-08:00,2511.0,10.831861,10831.861 +11365,2025-03-08T10:07:48.344120-08:00,2482.0,10.840571,10840.571 +11366,2025-03-08T10:07:59.186108-08:00,2418.0,10.841988,10841.988 +11367,2025-03-08T10:08:10.025041-08:00,2469.0,10.838933,10838.933 +11368,2025-03-08T10:08:20.868346-08:00,2434.0,10.843305,10843.305 +11369,2025-03-08T10:08:31.719938-08:00,2480.0,10.851592,10851.592 +11370,2025-03-08T10:08:42.554116-08:00,2483.0,10.834178,10834.178 +11371,2025-03-08T10:08:53.397942-08:00,2495.0,10.843826,10843.826 +11372,2025-03-08T10:09:04.242330-08:00,2490.0,10.844388,10844.388 +11373,2025-03-08T10:09:15.076947-08:00,2471.0,10.834617,10834.617 +11374,2025-03-08T10:09:25.922943-08:00,2490.0,10.845996,10845.996 +11375,2025-03-08T10:09:36.760945-08:00,2484.0,10.838002,10838.002 +11376,2025-03-08T10:09:47.595936-08:00,2457.0,10.834991,10834.991 +11377,2025-03-08T10:09:58.434181-08:00,2419.0,10.838245,10838.245 +11378,2025-03-08T10:10:09.281207-08:00,2448.0,10.847026,10847.026 +11379,2025-03-08T10:10:20.118203-08:00,2459.0,10.836996,10836.996 +11380,2025-03-08T10:10:30.953083-08:00,2483.0,10.83488,10834.88 +11381,2025-03-08T10:10:41.802039-08:00,2426.0,10.848956,10848.956 +11382,2025-03-08T10:10:52.637996-08:00,2465.0,10.835957,10835.957 +11383,2025-03-08T10:11:03.484196-08:00,2480.0,10.8462,10846.2 +11384,2025-03-08T10:11:14.322920-08:00,2470.0,10.838724,10838.724 +11385,2025-03-08T10:11:25.161913-08:00,2471.0,10.838993,10838.993 +11386,2025-03-08T10:11:36.000302-08:00,2416.0,10.838389,10838.389 +11387,2025-03-08T10:11:46.849221-08:00,2447.0,10.848919,10848.919 +11388,2025-03-08T10:11:57.683948-08:00,2405.0,10.834727,10834.727 +11389,2025-03-08T10:12:08.535170-08:00,2475.0,10.851222,10851.222 +11390,2025-03-08T10:12:19.371033-08:00,2451.0,10.835863,10835.863 +11391,2025-03-08T10:12:30.214747-08:00,2400.0,10.843714,10843.714 +11392,2025-03-08T10:12:41.045938-08:00,2415.0,10.831191,10831.191 +11393,2025-03-08T10:12:51.878194-08:00,2474.0,10.832256,10832.256 +11394,2025-03-08T10:13:02.713445-08:00,2416.0,10.835251,10835.251 +11395,2025-03-08T10:13:13.561105-08:00,2434.0,10.84766,10847.66 +11396,2025-03-08T10:13:24.392997-08:00,2464.0,10.831892,10831.892 +11397,2025-03-08T10:13:35.232925-08:00,2448.0,10.839928,10839.928 +11398,2025-03-08T10:13:46.075938-08:00,2429.0,10.843013,10843.013 +11399,2025-03-08T10:13:56.920583-08:00,2407.0,10.844645,10844.645 +11400,2025-03-08T10:14:07.753216-08:00,2389.0,10.832633,10832.633 +11401,2025-03-08T10:14:18.592915-08:00,2448.0,10.839699,10839.699 +11402,2025-03-08T10:14:29.436076-08:00,2457.0,10.843161,10843.161 +11403,2025-03-08T10:14:40.270218-08:00,2433.0,10.834142,10834.142 +11404,2025-03-08T10:14:51.106939-08:00,2379.0,10.836721,10836.721 +11405,2025-03-08T10:15:01.943941-08:00,2443.0,10.837002,10837.002 +11406,2025-03-08T10:15:12.777056-08:00,2414.0,10.833115,10833.115 +11407,2025-03-08T10:15:23.614659-08:00,2385.0,10.837603,10837.603 +11408,2025-03-08T10:15:34.459222-08:00,2399.0,10.844563,10844.563 +11409,2025-03-08T10:15:45.294563-08:00,2410.0,10.835341,10835.341 +11410,2025-03-08T10:15:56.142372-08:00,2446.0,10.847809,10847.809 +11411,2025-03-08T10:16:06.989942-08:00,2400.0,10.84757,10847.57 +11412,2025-03-08T10:16:17.827185-08:00,2422.0,10.837243,10837.243 +11413,2025-03-08T10:16:28.672554-08:00,2437.0,10.845369,10845.369 +11414,2025-03-08T10:16:39.512158-08:00,2419.0,10.839604,10839.604 +11415,2025-03-08T10:16:50.359205-08:00,2391.0,10.847047,10847.047 +11416,2025-03-08T10:17:01.198073-08:00,2436.0,10.838868,10838.868 +11417,2025-03-08T10:17:12.032056-08:00,2432.0,10.833983,10833.983 +11418,2025-03-08T10:17:22.869937-08:00,2415.0,10.837881,10837.881 +11419,2025-03-08T10:17:33.701919-08:00,2399.0,10.831982,10831.982 +11420,2025-03-08T10:17:44.550196-08:00,2384.0,10.848277,10848.277 +11421,2025-03-08T10:17:55.387101-08:00,2430.0,10.836905,10836.905 +11422,2025-03-08T10:18:06.231942-08:00,2422.0,10.844841,10844.841 +11423,2025-03-08T10:18:17.079356-08:00,2387.0,10.847414,10847.414 +11424,2025-03-08T10:18:27.923326-08:00,2398.0,10.84397,10843.97 +11425,2025-03-08T10:18:38.767005-08:00,2416.0,10.843679,10843.679 +11426,2025-03-08T10:18:49.600580-08:00,2394.0,10.833575,10833.575 +11427,2025-03-08T10:19:00.447925-08:00,2383.0,10.847345,10847.345 +11428,2025-03-08T10:19:11.290199-08:00,2352.0,10.842274,10842.274 +11429,2025-03-08T10:19:22.135921-08:00,2371.0,10.845722,10845.722 +11430,2025-03-08T10:19:32.981199-08:00,2374.0,10.845278,10845.278 +11431,2025-03-08T10:19:43.815939-08:00,2355.0,10.83474,10834.74 +11432,2025-03-08T10:19:54.656313-08:00,2407.0,10.840374,10840.374 +11433,2025-03-08T10:20:05.504538-08:00,2386.0,10.848225,10848.225 +11434,2025-03-08T10:20:16.342937-08:00,2400.0,10.838399,10838.399 +11435,2025-03-08T10:20:27.188941-08:00,2397.0,10.846004,10846.004 +11436,2025-03-08T10:20:38.029239-08:00,2370.0,10.840298,10840.298 +11437,2025-03-08T10:20:48.867922-08:00,2402.0,10.838683,10838.683 +11438,2025-03-08T10:20:59.712535-08:00,2363.0,10.844613,10844.613 +11439,2025-03-08T10:21:10.551128-08:00,2315.0,10.838593,10838.593 +11440,2025-03-08T10:21:21.388269-08:00,2387.0,10.837141,10837.141 +11441,2025-03-08T10:21:32.232264-08:00,2352.0,10.843995,10843.995 +11442,2025-03-08T10:21:43.070136-08:00,2353.0,10.837872,10837.872 +11443,2025-03-08T10:21:53.909089-08:00,2372.0,10.838953,10838.953 +11444,2025-03-08T10:22:04.752194-08:00,2325.0,10.843105,10843.105 +11445,2025-03-08T10:22:15.599032-08:00,2363.0,10.846838,10846.838 +11446,2025-03-08T10:22:26.437444-08:00,2384.0,10.838412,10838.412 +11447,2025-03-08T10:22:37.278147-08:00,2341.0,10.840703,10840.703 +11448,2025-03-08T10:22:48.115433-08:00,2385.0,10.837286,10837.286 +11449,2025-03-08T10:22:58.957473-08:00,2337.0,10.84204,10842.04 +11450,2025-03-08T10:23:09.799934-08:00,2371.0,10.842461,10842.461 +11451,2025-03-08T10:23:20.650250-08:00,2379.0,10.850316,10850.316 +11452,2025-03-08T10:23:31.482952-08:00,2378.0,10.832702,10832.702 +11453,2025-03-08T10:23:42.329229-08:00,2331.0,10.846277,10846.277 +11454,2025-03-08T10:23:53.172982-08:00,2369.0,10.843753,10843.753 +11455,2025-03-08T10:24:04.016303-08:00,2304.0,10.843321,10843.321 +11456,2025-03-08T10:24:14.868218-08:00,2359.0,10.851915,10851.915 +11457,2025-03-08T10:24:25.703737-08:00,2362.0,10.835519,10835.519 +11458,2025-03-08T10:24:36.542706-08:00,2367.0,10.838969,10838.969 +11459,2025-03-08T10:24:47.385188-08:00,2299.0,10.842482,10842.482 +11460,2025-03-08T10:24:58.226185-08:00,2325.0,10.840997,10840.997 +11461,2025-03-08T10:25:09.066936-08:00,2352.0,10.840751,10840.751 +11462,2025-03-08T10:25:19.917230-08:00,2302.0,10.850294,10850.294 +11463,2025-03-08T10:25:30.758016-08:00,2320.0,10.840786,10840.786 +11464,2025-03-08T10:25:41.597196-08:00,2331.0,10.83918,10839.18 +11465,2025-03-08T10:25:52.432988-08:00,2287.0,10.835792,10835.792 +11466,2025-03-08T10:26:03.277184-08:00,2288.0,10.844196,10844.196 +11467,2025-03-08T10:26:14.124169-08:00,2349.0,10.846985,10846.985 +11468,2025-03-08T10:26:24.964936-08:00,2274.0,10.840767,10840.767 +11469,2025-03-08T10:26:35.804942-08:00,2325.0,10.840006,10840.006 +11470,2025-03-08T10:26:46.654952-08:00,2346.0,10.85001,10850.01 +11471,2025-03-08T10:26:57.491083-08:00,2270.0,10.836131,10836.131 +11472,2025-03-08T10:27:08.336159-08:00,2321.0,10.845076,10845.076 +11473,2025-03-08T10:27:19.180941-08:00,2302.0,10.844782,10844.782 +11474,2025-03-08T10:27:30.026761-08:00,2315.0,10.84582,10845.82 +11475,2025-03-08T10:27:40.865275-08:00,2331.0,10.838514,10838.514 +11476,2025-03-08T10:27:51.711915-08:00,2329.0,10.84664,10846.64 +11477,2025-03-08T10:28:02.548361-08:00,2319.0,10.836446,10836.446 +11478,2025-03-08T10:28:13.387952-08:00,2277.0,10.839591,10839.591 +11479,2025-03-08T10:28:24.224975-08:00,2298.0,10.837023,10837.023 +11480,2025-03-08T10:28:35.070185-08:00,2291.0,10.84521,10845.21 +11481,2025-03-08T10:28:45.915940-08:00,2318.0,10.845755,10845.755 +11482,2025-03-08T10:28:56.753981-08:00,2275.0,10.838041,10838.041 +11483,2025-03-08T10:29:07.595165-08:00,2306.0,10.841184,10841.184 +11484,2025-03-08T10:29:18.438970-08:00,2239.0,10.843805,10843.805 +11485,2025-03-08T10:29:29.272939-08:00,2285.0,10.833969,10833.969 +11486,2025-03-08T10:29:40.121931-08:00,2274.0,10.848992,10848.992 +11487,2025-03-08T10:29:50.954142-08:00,2274.0,10.832211,10832.211 +11488,2025-03-08T10:30:01.795944-08:00,2303.0,10.841802,10841.802 +11489,2025-03-08T10:30:12.632323-08:00,2254.0,10.836379,10836.379 +11490,2025-03-08T10:30:23.462008-08:00,2242.0,10.829685,10829.685 +11491,2025-03-08T10:30:34.305937-08:00,2229.0,10.843929,10843.929 +11492,2025-03-08T10:30:45.147253-08:00,2250.0,10.841316,10841.316 +11493,2025-03-08T10:30:55.993268-08:00,2257.0,10.846015,10846.015 +11494,2025-03-08T10:31:06.831359-08:00,2222.0,10.838091,10838.091 +11495,2025-03-08T10:31:17.669525-08:00,2288.0,10.838166,10838.166 +11496,2025-03-08T10:31:27.133410-08:00,2240.0,9.463885,9463.885 +11497,2025-03-08T10:31:28.513763-08:00,2255.0,1.380353,1380.353 +11498,2025-03-08T10:31:39.356185-08:00,2225.0,10.842422,10842.422 +11499,2025-03-08T10:31:50.193932-08:00,2279.0,10.837747,10837.747 +11500,2025-03-08T10:32:01.025955-08:00,2231.0,10.832023,10832.023 +11501,2025-03-08T10:32:11.868431-08:00,2272.0,10.842476,10842.476 +11502,2025-03-08T10:32:22.707295-08:00,2237.0,10.838864,10838.864 +11503,2025-03-08T10:32:33.549965-08:00,2251.0,10.84267,10842.67 +11504,2025-03-08T10:32:44.390937-08:00,2270.0,10.840972,10840.972 +11505,2025-03-08T10:32:55.227914-08:00,2241.0,10.836977,10836.977 +11506,2025-03-08T10:33:06.065936-08:00,2261.0,10.838022,10838.022 +11507,2025-03-08T10:33:16.902945-08:00,2234.0,10.837009,10837.009 +11508,2025-03-08T10:33:27.737248-08:00,2249.0,10.834303,10834.303 +11509,2025-03-08T10:33:38.573939-08:00,2233.0,10.836691,10836.691 +11510,2025-03-08T10:33:49.413137-08:00,2251.0,10.839198,10839.198 +11511,2025-03-08T10:34:00.257539-08:00,2230.0,10.844402,10844.402 +11512,2025-03-08T10:34:11.090080-08:00,2185.0,10.832541,10832.541 +11513,2025-03-08T10:34:21.923227-08:00,2225.0,10.833147,10833.147 +11514,2025-03-08T10:34:32.765450-08:00,2244.0,10.842223,10842.223 +11515,2025-03-08T10:34:43.602162-08:00,2240.0,10.836712,10836.712 +11516,2025-03-08T10:34:54.440910-08:00,2224.0,10.838748,10838.748 +11517,2025-03-08T10:35:05.284638-08:00,2247.0,10.843728,10843.728 +11518,2025-03-08T10:35:16.114934-08:00,2240.0,10.830296,10830.296 +11519,2025-03-08T10:35:26.954189-08:00,2178.0,10.839255,10839.255 +11520,2025-03-08T10:35:37.787976-08:00,2210.0,10.833787,10833.787 +11521,2025-03-08T10:35:48.632968-08:00,2209.0,10.844992,10844.992 +11522,2025-03-08T10:35:59.466164-08:00,2233.0,10.833196,10833.196 +11523,2025-03-08T10:36:10.307474-08:00,2192.0,10.84131,10841.31 +11524,2025-03-08T10:36:21.146939-08:00,2183.0,10.839465,10839.465 +11525,2025-03-08T10:36:31.989943-08:00,2164.0,10.843004,10843.004 +11526,2025-03-08T10:36:42.826576-08:00,2198.0,10.836633,10836.633 +11527,2025-03-08T10:36:53.657941-08:00,2189.0,10.831365,10831.365 +11528,2025-03-08T10:37:04.501942-08:00,2210.0,10.844001,10844.001 +11529,2025-03-08T10:37:15.338393-08:00,2195.0,10.836451,10836.451 +11530,2025-03-08T10:37:26.165167-08:00,2189.0,10.826774,10826.774 +11531,2025-03-08T10:37:37.002945-08:00,2150.0,10.837778,10837.778 +11532,2025-03-08T10:37:47.850248-08:00,2188.0,10.847303,10847.303 +11533,2025-03-08T10:37:58.693292-08:00,2144.0,10.843044,10843.044 +11534,2025-03-08T10:38:09.525986-08:00,2132.0,10.832694,10832.694 +11535,2025-03-08T10:38:20.369366-08:00,2206.0,10.84338,10843.38 +11536,2025-03-08T10:38:31.210581-08:00,2206.0,10.841215,10841.215 +11537,2025-03-08T10:38:42.047941-08:00,2164.0,10.83736,10837.36 +11538,2025-03-08T10:38:52.892186-08:00,2163.0,10.844245,10844.245 +11539,2025-03-08T10:39:03.727295-08:00,2178.0,10.835109,10835.109 +11540,2025-03-08T10:39:14.572988-08:00,2166.0,10.845693,10845.693 +11541,2025-03-08T10:39:25.406680-08:00,2153.0,10.833692,10833.692 +11542,2025-03-08T10:39:36.246900-08:00,2115.0,10.84022,10840.22 +11543,2025-03-08T10:39:47.076939-08:00,2191.0,10.830039,10830.039 +11544,2025-03-08T10:39:57.908943-08:00,2149.0,10.832004,10832.004 +11545,2025-03-08T10:40:08.741402-08:00,2139.0,10.832459,10832.459 +11546,2025-03-08T10:40:19.584019-08:00,2142.0,10.842617,10842.617 +11547,2025-03-08T10:40:30.416994-08:00,2169.0,10.832975,10832.975 +11548,2025-03-08T10:40:41.254936-08:00,2112.0,10.837942,10837.942 +11549,2025-03-08T10:40:52.086915-08:00,2117.0,10.831979,10831.979 +11550,2025-03-08T10:41:02.923524-08:00,2143.0,10.836609,10836.609 +11551,2025-03-08T10:41:13.756201-08:00,2176.0,10.832677,10832.677 +11552,2025-03-08T10:41:24.586979-08:00,2109.0,10.830778,10830.778 +11553,2025-03-08T10:41:35.419985-08:00,2096.0,10.833006,10833.006 +11554,2025-03-08T10:41:46.261940-08:00,2124.0,10.841955,10841.955 +11555,2025-03-08T10:41:57.102089-08:00,2167.0,10.840149,10840.149 +11556,2025-03-08T10:42:07.935970-08:00,2140.0,10.833881,10833.881 +11557,2025-03-08T10:42:18.769107-08:00,2128.0,10.833137,10833.137 +11558,2025-03-08T10:42:29.612122-08:00,2161.0,10.843015,10843.015 +11559,2025-03-08T10:42:40.442495-08:00,2160.0,10.830373,10830.373 +11560,2025-03-08T10:42:51.273988-08:00,2112.0,10.831493,10831.493 +11561,2025-03-08T10:43:02.107291-08:00,2160.0,10.833303,10833.303 +11562,2025-03-08T10:43:12.938943-08:00,2082.0,10.831652,10831.652 +11563,2025-03-08T10:43:23.782303-08:00,2158.0,10.84336,10843.36 +11564,2025-03-08T10:43:34.611967-08:00,2127.0,10.829664,10829.664 +11565,2025-03-08T10:43:45.458005-08:00,2155.0,10.846038,10846.038 +11566,2025-03-08T10:43:56.289239-08:00,2107.0,10.831234,10831.234 +11567,2025-03-08T10:44:07.130976-08:00,2096.0,10.841737,10841.737 +11568,2025-03-08T10:44:17.974240-08:00,2117.0,10.843264,10843.264 +11569,2025-03-08T10:44:28.817503-08:00,2145.0,10.843263,10843.263 +11570,2025-03-08T10:44:39.654238-08:00,2101.0,10.836735,10836.735 +11571,2025-03-08T10:44:50.497937-08:00,2126.0,10.843699,10843.699 +11572,2025-03-08T10:45:01.334952-08:00,2086.0,10.837015,10837.015 +11573,2025-03-08T10:45:12.175229-08:00,2139.0,10.840277,10840.277 +11574,2025-03-08T10:45:23.009112-08:00,2139.0,10.833883,10833.883 +11575,2025-03-08T10:45:33.853314-08:00,2095.0,10.844202,10844.202 +11576,2025-03-08T10:45:44.682042-08:00,2130.0,10.828728,10828.728 +11577,2025-03-08T10:45:55.519029-08:00,2125.0,10.836987,10836.987 +11578,2025-03-08T10:46:06.346721-08:00,2133.0,10.827692,10827.692 +11579,2025-03-08T10:46:17.179389-08:00,2135.0,10.832668,10832.668 +11580,2025-03-08T10:46:28.015991-08:00,2064.0,10.836602,10836.602 +11581,2025-03-08T10:46:38.853100-08:00,2096.0,10.837109,10837.109 +11582,2025-03-08T10:46:49.697015-08:00,2117.0,10.843915,10843.915 +11583,2025-03-08T10:47:00.529939-08:00,2105.0,10.832924,10832.924 +11584,2025-03-08T10:47:11.372936-08:00,2102.0,10.842997,10842.997 +11585,2025-03-08T10:47:22.203961-08:00,2063.0,10.831025,10831.025 +11586,2025-03-08T10:47:33.046915-08:00,2069.0,10.842954,10842.954 +11587,2025-03-08T10:47:43.879287-08:00,2122.0,10.832372,10832.372 +11588,2025-03-08T10:47:54.714987-08:00,2081.0,10.8357,10835.7 +11589,2025-03-08T10:48:05.553529-08:00,2111.0,10.838542,10838.542 +11590,2025-03-08T10:48:16.384273-08:00,2064.0,10.830744,10830.744 +11591,2025-03-08T10:48:27.228987-08:00,2095.0,10.844714,10844.714 +11592,2025-03-08T10:48:38.060203-08:00,2086.0,10.831216,10831.216 +11593,2025-03-08T10:48:48.903585-08:00,2104.0,10.843382,10843.382 +11594,2025-03-08T10:48:59.733605-08:00,2037.0,10.83002,10830.02 +11595,2025-03-08T10:49:10.565083-08:00,2100.0,10.831478,10831.478 +11596,2025-03-08T10:49:21.402905-08:00,2102.0,10.837822,10837.822 +11597,2025-03-08T10:49:32.240932-08:00,2029.0,10.838027,10838.027 +11598,2025-03-08T10:49:43.084201-08:00,2101.0,10.843269,10843.269 +11599,2025-03-08T10:49:53.927084-08:00,2096.0,10.842883,10842.883 +11600,2025-03-08T10:50:04.758945-08:00,2090.0,10.831861,10831.861 +11601,2025-03-08T10:50:15.601226-08:00,2100.0,10.842281,10842.281 +11602,2025-03-08T10:50:26.442378-08:00,2010.0,10.841152,10841.152 +11603,2025-03-08T10:50:37.277025-08:00,2082.0,10.834647,10834.647 +11604,2025-03-08T10:50:48.115147-08:00,2091.0,10.838122,10838.122 +11605,2025-03-08T10:50:58.962060-08:00,2013.0,10.846913,10846.913 +11606,2025-03-08T10:51:09.806911-08:00,2047.0,10.844851,10844.851 +11607,2025-03-08T10:51:20.638932-08:00,2006.0,10.832021,10832.021 +11608,2025-03-08T10:51:31.482942-08:00,2011.0,10.84401,10844.01 +11609,2025-03-08T10:51:42.316212-08:00,2098.0,10.83327,10833.27 +11610,2025-03-08T10:51:53.155970-08:00,2092.0,10.839758,10839.758 +11611,2025-03-08T10:52:03.999028-08:00,1999.0,10.843058,10843.058 +11612,2025-03-08T10:52:14.831091-08:00,2029.0,10.832063,10832.063 +11613,2025-03-08T10:52:25.672823-08:00,2001.0,10.841732,10841.732 +11614,2025-03-08T10:52:36.515086-08:00,2096.0,10.842263,10842.263 +11615,2025-03-08T10:52:47.347926-08:00,2011.0,10.83284,10832.84 +11616,2025-03-08T10:52:58.190271-08:00,2047.0,10.842345,10842.345 +11617,2025-03-08T10:53:09.035982-08:00,2025.0,10.845711,10845.711 +11618,2025-03-08T10:53:19.877202-08:00,2030.0,10.84122,10841.22 +11619,2025-03-08T10:53:30.720944-08:00,2093.0,10.843742,10843.742 +11620,2025-03-08T10:53:41.564121-08:00,2082.0,10.843177,10843.177 +11621,2025-03-08T10:53:52.399971-08:00,2015.0,10.83585,10835.85 +11622,2025-03-08T10:54:03.239065-08:00,2043.0,10.839094,10839.094 +11623,2025-03-08T10:54:14.081345-08:00,2091.0,10.84228,10842.28 +11624,2025-03-08T10:54:24.925290-08:00,2080.0,10.843945,10843.945 +11625,2025-03-08T10:54:35.767968-08:00,2081.0,10.842678,10842.678 +11626,2025-03-08T10:54:46.610934-08:00,2071.0,10.842966,10842.966 +11627,2025-03-08T10:54:57.454269-08:00,2054.0,10.843335,10843.335 +11628,2025-03-08T10:55:08.291522-08:00,2069.0,10.837253,10837.253 +11629,2025-03-08T10:55:19.132070-08:00,2033.0,10.840548,10840.548 +11630,2025-03-08T10:55:29.970936-08:00,2047.0,10.838866,10838.866 +11631,2025-03-08T10:55:40.815194-08:00,2023.0,10.844258,10844.258 +11632,2025-03-08T10:55:51.664064-08:00,2029.0,10.84887,10848.87 +11633,2025-03-08T10:56:02.501672-08:00,2010.0,10.837608,10837.608 +11634,2025-03-08T10:56:13.345936-08:00,2002.0,10.844264,10844.264 +11635,2025-03-08T10:56:24.187944-08:00,2031.0,10.842008,10842.008 +11636,2025-03-08T10:56:35.029231-08:00,1981.0,10.841287,10841.287 +11637,2025-03-08T10:56:45.875261-08:00,2067.0,10.84603,10846.03 +11638,2025-03-08T10:56:56.714155-08:00,2031.0,10.838894,10838.894 +11639,2025-03-08T10:57:07.559938-08:00,1994.0,10.845783,10845.783 +11640,2025-03-08T10:57:18.402092-08:00,2042.0,10.842154,10842.154 +11641,2025-03-08T10:57:29.244487-08:00,2062.0,10.842395,10842.395 +11642,2025-03-08T10:57:40.088334-08:00,2063.0,10.843847,10843.847 +11643,2025-03-08T10:57:50.932921-08:00,2061.0,10.844587,10844.587 +11644,2025-03-08T10:58:01.776083-08:00,2025.0,10.843162,10843.162 +11645,2025-03-08T10:58:12.616736-08:00,1969.0,10.840653,10840.653 +11646,2025-03-08T10:58:23.461360-08:00,2055.0,10.844624,10844.624 +11647,2025-03-08T10:58:34.298340-08:00,2014.0,10.83698,10836.98 +11648,2025-03-08T10:58:45.139197-08:00,2036.0,10.840857,10840.857 +11649,2025-03-08T10:58:55.985142-08:00,2065.0,10.845945,10845.945 +11650,2025-03-08T10:59:06.824106-08:00,2065.0,10.838964,10838.964 +11651,2025-03-08T10:59:17.655451-08:00,2034.0,10.831345,10831.345 +11652,2025-03-08T10:59:28.497295-08:00,2006.0,10.841844,10841.844 +11653,2025-03-08T10:59:39.329133-08:00,1955.0,10.831838,10831.838 +11654,2025-03-08T10:59:50.170932-08:00,1968.0,10.841799,10841.799 +11655,2025-03-08T11:00:01.013941-08:00,2030.0,10.843009,10843.009 +11656,2025-03-08T11:00:11.846138-08:00,2064.0,10.832197,10832.197 +11657,2025-03-08T11:00:22.689972-08:00,2061.0,10.843834,10843.834 +11658,2025-03-08T11:00:33.531131-08:00,2015.0,10.841159,10841.159 +11659,2025-03-08T11:00:44.365566-08:00,2035.0,10.834435,10834.435 +11660,2025-03-08T11:00:55.210127-08:00,2015.0,10.844561,10844.561 +11661,2025-03-08T11:01:06.041697-08:00,2020.0,10.83157,10831.57 +11662,2025-03-08T11:01:16.882473-08:00,2064.0,10.840776,10840.776 +11663,2025-03-08T11:01:27.726281-08:00,1987.0,10.843808,10843.808 +11664,2025-03-08T11:01:38.569192-08:00,1991.0,10.842911,10842.911 +11665,2025-03-08T11:01:49.423043-08:00,2065.0,10.853851,10853.851 +11666,2025-03-08T11:02:00.266292-08:00,2042.0,10.843249,10843.249 +11667,2025-03-08T11:02:11.110246-08:00,2070.0,10.843954,10843.954 +11668,2025-03-08T11:02:21.952258-08:00,2000.0,10.842012,10842.012 +11669,2025-03-08T11:02:32.793942-08:00,2067.0,10.841684,10841.684 +11670,2025-03-08T11:02:43.637943-08:00,2064.0,10.844001,10844.001 +11671,2025-03-08T11:02:54.470269-08:00,2018.0,10.832326,10832.326 +11672,2025-03-08T11:03:05.308930-08:00,2058.0,10.838661,10838.661 +11673,2025-03-08T11:03:16.157943-08:00,2030.0,10.849013,10849.013 +11674,2025-03-08T11:03:26.995269-08:00,1998.0,10.837326,10837.326 +11675,2025-03-08T11:03:37.831517-08:00,2018.0,10.836248,10836.248 +11676,2025-03-08T11:03:48.673920-08:00,2025.0,10.842403,10842.403 +11677,2025-03-08T11:03:59.519927-08:00,1984.0,10.846007,10846.007 +11678,2025-03-08T11:04:10.364945-08:00,2070.0,10.845018,10845.018 +11679,2025-03-08T11:04:21.202197-08:00,2067.0,10.837252,10837.252 +11680,2025-03-08T11:04:32.035143-08:00,2039.0,10.832946,10832.946 +11681,2025-03-08T11:04:42.879268-08:00,2064.0,10.844125,10844.125 +11682,2025-03-08T11:04:53.711271-08:00,1970.0,10.832003,10832.003 +11683,2025-03-08T11:05:04.553929-08:00,2011.0,10.842658,10842.658 +11684,2025-03-08T11:05:15.386261-08:00,2064.0,10.832332,10832.332 +11685,2025-03-08T11:05:26.238937-08:00,2031.0,10.852676,10852.676 +11686,2025-03-08T11:05:37.085100-08:00,2069.0,10.846163,10846.163 +11687,2025-03-08T11:05:47.923460-08:00,2066.0,10.83836,10838.36 +11688,2025-03-08T11:05:58.761729-08:00,2043.0,10.838269,10838.269 +11689,2025-03-08T11:06:09.603793-08:00,2055.0,10.842064,10842.064 +11690,2025-03-08T11:06:20.442454-08:00,2023.0,10.838661,10838.661 +11691,2025-03-08T11:06:31.278433-08:00,2034.0,10.835979,10835.979 +11692,2025-03-08T11:06:42.116476-08:00,2063.0,10.838043,10838.043 +11693,2025-03-08T11:06:52.948433-08:00,2064.0,10.831957,10831.957 +11694,2025-03-08T11:07:03.788795-08:00,2047.0,10.840362,10840.362 +11695,2025-03-08T11:07:14.628927-08:00,2021.0,10.840132,10840.132 +11696,2025-03-08T11:07:25.461518-08:00,2041.0,10.832591,10832.591 +11697,2025-03-08T11:07:36.292762-08:00,2058.0,10.831244,10831.244 +11698,2025-03-08T11:07:47.132793-08:00,2015.0,10.840031,10840.031 +11699,2025-03-08T11:07:57.967455-08:00,2022.0,10.834662,10834.662 +11700,2025-03-08T11:08:08.807218-08:00,2066.0,10.839763,10839.763 +11701,2025-03-08T11:08:19.640995-08:00,2055.0,10.833777,10833.777 +11702,2025-03-08T11:08:30.473607-08:00,2036.0,10.832612,10832.612 +11703,2025-03-08T11:08:41.315707-08:00,2064.0,10.8421,10842.1 +11704,2025-03-08T11:08:52.157835-08:00,1984.0,10.842128,10842.128 +11705,2025-03-08T11:09:03.001715-08:00,2047.0,10.84388,10843.88 +11706,2025-03-08T11:09:13.851538-08:00,1991.0,10.849823,10849.823 +11707,2025-03-08T11:09:24.689452-08:00,2046.0,10.837914,10837.914 +11708,2025-03-08T11:09:35.532805-08:00,2032.0,10.843353,10843.353 +11709,2025-03-08T11:09:46.383713-08:00,1983.0,10.850908,10850.908 +11710,2025-03-08T11:09:57.230947-08:00,2055.0,10.847234,10847.234 +11711,2025-03-08T11:10:08.075482-08:00,2020.0,10.844535,10844.535 +11712,2025-03-08T11:10:18.915433-08:00,2035.0,10.839951,10839.951 +11713,2025-03-08T11:10:29.758697-08:00,2055.0,10.843264,10843.264 +11714,2025-03-08T11:10:40.603720-08:00,1970.0,10.845023,10845.023 +11715,2025-03-08T11:10:51.444574-08:00,2054.0,10.840854,10840.854 +11716,2025-03-08T11:11:02.285804-08:00,1973.0,10.84123,10841.23 +11717,2025-03-08T11:11:13.131826-08:00,1996.0,10.846022,10846.022 +11718,2025-03-08T11:11:23.975858-08:00,2010.0,10.844032,10844.032 +11719,2025-03-08T11:11:34.805456-08:00,1971.0,10.829598,10829.598 +11720,2025-03-08T11:11:45.648459-08:00,1984.0,10.843003,10843.003 +11721,2025-03-08T11:11:56.482074-08:00,2047.0,10.833615,10833.615 +11722,2025-03-08T11:12:07.322665-08:00,2047.0,10.840591,10840.591 +11723,2025-03-08T11:12:18.167523-08:00,2014.0,10.844858,10844.858 +11724,2025-03-08T11:12:29.011179-08:00,2035.0,10.843656,10843.656 +11725,2025-03-08T11:12:39.854816-08:00,2043.0,10.843637,10843.637 +11726,2025-03-08T11:12:50.694225-08:00,1972.0,10.839409,10839.409 +11727,2025-03-08T11:13:01.523453-08:00,2046.0,10.829228,10829.228 +11728,2025-03-08T11:13:12.366685-08:00,2009.0,10.843232,10843.232 +11729,2025-03-08T11:13:23.203511-08:00,2035.0,10.836826,10836.826 +11730,2025-03-08T11:13:34.040466-08:00,2047.0,10.836955,10836.955 +11731,2025-03-08T11:13:44.889835-08:00,2047.0,10.849369,10849.369 +11732,2025-03-08T11:13:55.732536-08:00,2011.0,10.842701,10842.701 +11733,2025-03-08T11:14:06.574881-08:00,2055.0,10.842345,10842.345 +11734,2025-03-08T11:14:17.416456-08:00,2047.0,10.841575,10841.575 +11735,2025-03-08T11:14:28.262608-08:00,1988.0,10.846152,10846.152 +11736,2025-03-08T11:14:39.095730-08:00,1979.0,10.833122,10833.122 +11737,2025-03-08T11:14:49.939638-08:00,1998.0,10.843908,10843.908 +11738,2025-03-08T11:15:00.772734-08:00,2017.0,10.833096,10833.096 +11739,2025-03-08T11:15:11.611735-08:00,2053.0,10.839001,10839.001 +11740,2025-03-08T11:15:22.453953-08:00,1982.0,10.842218,10842.218 +11741,2025-03-08T11:15:33.294731-08:00,2063.0,10.840778,10840.778 +11742,2025-03-08T11:15:44.135698-08:00,1967.0,10.840967,10840.967 +11743,2025-03-08T11:15:54.983714-08:00,2001.0,10.848016,10848.016 +11744,2025-03-08T11:16:05.827766-08:00,2011.0,10.844052,10844.052 +11745,2025-03-08T11:16:16.670823-08:00,2011.0,10.843057,10843.057 +11746,2025-03-08T11:16:27.508646-08:00,1985.0,10.837823,10837.823 +11747,2025-03-08T11:16:38.343797-08:00,2046.0,10.835151,10835.151 +11748,2025-03-08T11:16:49.198901-08:00,1979.0,10.855104,10855.104 +11749,2025-03-08T11:17:00.035449-08:00,1980.0,10.836548,10836.548 +11750,2025-03-08T11:17:10.867757-08:00,2011.0,10.832308,10832.308 +11751,2025-03-08T11:17:21.703727-08:00,1981.0,10.83597,10835.97 +11752,2025-03-08T11:17:32.548582-08:00,2007.0,10.844855,10844.855 +11753,2025-03-08T11:17:43.383456-08:00,2025.0,10.834874,10834.874 +11754,2025-03-08T11:17:54.222824-08:00,2009.0,10.839368,10839.368 +11755,2025-03-08T11:18:05.068173-08:00,2058.0,10.845349,10845.349 +11756,2025-03-08T11:18:15.899449-08:00,2007.0,10.831276,10831.276 +11757,2025-03-08T11:18:26.740457-08:00,2055.0,10.841008,10841.008 +11758,2025-03-08T11:18:37.580256-08:00,1958.0,10.839799,10839.799 +11759,2025-03-08T11:18:48.420433-08:00,2047.0,10.840177,10840.177 +11760,2025-03-08T11:18:59.249791-08:00,2054.0,10.829358,10829.358 +11761,2025-03-08T11:19:10.092762-08:00,2044.0,10.842971,10842.971 +11762,2025-03-08T11:19:20.932455-08:00,2015.0,10.839693,10839.693 +11763,2025-03-08T11:19:31.769777-08:00,2047.0,10.837322,10837.322 +11764,2025-03-08T11:19:42.609893-08:00,2041.0,10.840116,10840.116 +11765,2025-03-08T11:19:53.451609-08:00,2043.0,10.841716,10841.716 +11766,2025-03-08T11:20:04.284701-08:00,2041.0,10.833092,10833.092 +11767,2025-03-08T11:20:25.968992-08:00,2005.0,21.684291,21684.291 +11768,2025-03-08T11:20:36.800506-08:00,2047.0,10.831514,10831.514 +11769,2025-03-08T11:20:47.639588-08:00,2045.0,10.839082,10839.082 +11770,2025-03-08T11:20:58.473461-08:00,2020.0,10.833873,10833.873 +11771,2025-03-08T11:21:09.319451-08:00,1968.0,10.84599,10845.99 +11772,2025-03-08T11:21:20.161509-08:00,2034.0,10.842058,10842.058 +11773,2025-03-08T11:21:30.997992-08:00,2045.0,10.836483,10836.483 +11774,2025-03-08T11:21:41.837181-08:00,2047.0,10.839189,10839.189 +11775,2025-03-08T11:21:52.677437-08:00,2045.0,10.840256,10840.256 +11776,2025-03-08T11:22:03.528433-08:00,1951.0,10.850996,10850.996 +11777,2025-03-08T11:22:14.371589-08:00,2044.0,10.843156,10843.156 +11778,2025-03-08T11:22:25.210044-08:00,2032.0,10.838455,10838.455 +11779,2025-03-08T11:22:36.053528-08:00,2040.0,10.843484,10843.484 +11780,2025-03-08T11:22:46.895931-08:00,2018.0,10.842403,10842.403 +11781,2025-03-08T11:22:57.735764-08:00,2013.0,10.839833,10839.833 +11782,2025-03-08T11:23:08.583067-08:00,2045.0,10.847303,10847.303 +11783,2025-03-08T11:23:19.424456-08:00,2042.0,10.841389,10841.389 +11784,2025-03-08T11:23:30.264067-08:00,1999.0,10.839611,10839.611 +11785,2025-03-08T11:23:41.111589-08:00,2005.0,10.847522,10847.522 +11786,2025-03-08T11:23:51.949568-08:00,1968.0,10.837979,10837.979 +11787,2025-03-08T11:24:02.804053-08:00,2032.0,10.854485,10854.485 +11788,2025-03-08T11:24:13.643478-08:00,1987.0,10.839425,10839.425 +11789,2025-03-08T11:24:24.483856-08:00,2022.0,10.840378,10840.378 +11790,2025-03-08T11:24:35.334174-08:00,1974.0,10.850318,10850.318 +11791,2025-03-08T11:24:46.168320-08:00,2032.0,10.834146,10834.146 +11792,2025-03-08T11:24:57.017456-08:00,2037.0,10.849136,10849.136 +11793,2025-03-08T11:25:07.862686-08:00,2032.0,10.84523,10845.23 +11794,2025-03-08T11:25:18.699437-08:00,2032.0,10.836751,10836.751 +11795,2025-03-08T11:25:29.538820-08:00,1993.0,10.839383,10839.383 +11796,2025-03-08T11:25:40.385612-08:00,1994.0,10.846792,10846.792 +11797,2025-03-08T11:25:51.225491-08:00,1962.0,10.839879,10839.879 +11798,2025-03-08T11:26:02.072845-08:00,1963.0,10.847354,10847.354 +11799,2025-03-08T11:26:12.914760-08:00,2014.0,10.841915,10841.915 +11800,2025-03-08T11:26:23.756271-08:00,1996.0,10.841511,10841.511 +11801,2025-03-08T11:26:34.587758-08:00,1979.0,10.831487,10831.487 +11802,2025-03-08T11:26:45.431459-08:00,2001.0,10.843701,10843.701 +11803,2025-03-08T11:26:56.273033-08:00,1996.0,10.841574,10841.574 +11804,2025-03-08T11:27:07.116449-08:00,2000.0,10.843416,10843.416 +11805,2025-03-08T11:27:17.950496-08:00,1994.0,10.834047,10834.047 +11806,2025-03-08T11:27:28.793460-08:00,1983.0,10.842964,10842.964 +11807,2025-03-08T11:27:39.632582-08:00,2035.0,10.839122,10839.122 +11808,2025-03-08T11:27:50.478458-08:00,1971.0,10.845876,10845.876 +11809,2025-03-08T11:28:01.312502-08:00,1998.0,10.834044,10834.044 +11810,2025-03-08T11:28:12.149486-08:00,2032.0,10.836984,10836.984 +11811,2025-03-08T11:28:22.996483-08:00,2002.0,10.846997,10846.997 +11812,2025-03-08T11:28:33.833441-08:00,2033.0,10.836958,10836.958 +11813,2025-03-08T11:28:44.673490-08:00,2039.0,10.840049,10840.049 +11814,2025-03-08T11:28:55.517713-08:00,2021.0,10.844223,10844.223 +11815,2025-03-08T11:29:06.357609-08:00,2017.0,10.839896,10839.896 +11816,2025-03-08T11:29:17.190691-08:00,1954.0,10.833082,10833.082 +11817,2025-03-08T11:29:28.028791-08:00,1961.0,10.8381,10838.1 +11818,2025-03-08T11:29:38.876743-08:00,1955.0,10.847952,10847.952 +11819,2025-03-08T11:29:49.711455-08:00,2032.0,10.834712,10834.712 +11820,2025-03-08T11:30:00.551795-08:00,2009.0,10.84034,10840.34 +11821,2025-03-08T11:30:11.393342-08:00,1997.0,10.841547,10841.547 +11822,2025-03-08T11:30:22.236448-08:00,2035.0,10.843106,10843.106 +11823,2025-03-08T11:30:33.079939-08:00,2039.0,10.843491,10843.491 +11824,2025-03-08T11:30:43.915725-08:00,2000.0,10.835786,10835.786 +11825,2025-03-08T11:30:54.754494-08:00,1990.0,10.838769,10838.769 +11826,2025-03-08T11:31:05.594693-08:00,2038.0,10.840199,10840.199 +11827,2025-03-08T11:31:16.429762-08:00,2017.0,10.835069,10835.069 +11828,2025-03-08T11:31:27.267715-08:00,2042.0,10.837953,10837.953 +11829,2025-03-08T11:31:38.101766-08:00,2032.0,10.834051,10834.051 +11830,2025-03-08T11:31:48.947101-08:00,2038.0,10.845335,10845.335 +11831,2025-03-08T11:31:59.785967-08:00,1971.0,10.838866,10838.866 +11832,2025-03-08T11:32:10.623532-08:00,2038.0,10.837565,10837.565 +11833,2025-03-08T11:32:21.458052-08:00,1994.0,10.83452,10834.52 +11834,2025-03-08T11:32:32.298608-08:00,2038.0,10.840556,10840.556 +11835,2025-03-08T11:32:43.136423-08:00,1995.0,10.837815,10837.815 +11836,2025-03-08T11:32:53.979637-08:00,2027.0,10.843214,10843.214 +11837,2025-03-08T11:33:04.822464-08:00,2035.0,10.842827,10842.827 +11838,2025-03-08T11:33:15.658565-08:00,1989.0,10.836101,10836.101 +11839,2025-03-08T11:33:26.494849-08:00,2031.0,10.836284,10836.284 +11840,2025-03-08T11:33:37.333315-08:00,2009.0,10.838466,10838.466 +11841,2025-03-08T11:33:48.171672-08:00,2038.0,10.838357,10838.357 +11842,2025-03-08T11:33:59.008719-08:00,2005.0,10.837047,10837.047 +11843,2025-03-08T11:34:09.852462-08:00,2035.0,10.843743,10843.743 +11844,2025-03-08T11:34:20.689180-08:00,2034.0,10.836718,10836.718 +11845,2025-03-08T11:34:31.531458-08:00,1999.0,10.842278,10842.278 +11846,2025-03-08T11:34:42.369455-08:00,2033.0,10.837997,10837.997 +11847,2025-03-08T11:34:53.207592-08:00,2006.0,10.838137,10838.137 +11848,2025-03-08T11:35:04.046464-08:00,2030.0,10.838872,10838.872 +11849,2025-03-08T11:35:14.885457-08:00,2033.0,10.838993,10838.993 +11850,2025-03-08T11:35:25.729708-08:00,2015.0,10.844251,10844.251 +11851,2025-03-08T11:35:36.573777-08:00,1946.0,10.844069,10844.069 +11852,2025-03-08T11:35:47.410709-08:00,2015.0,10.836932,10836.932 +11853,2025-03-08T11:35:58.259131-08:00,2033.0,10.848422,10848.422 +11854,2025-03-08T11:36:09.091856-08:00,1984.0,10.832725,10832.725 +11855,2025-03-08T11:36:19.941530-08:00,2027.0,10.849674,10849.674 +11856,2025-03-08T11:36:30.776455-08:00,2027.0,10.834925,10834.925 +11857,2025-03-08T11:36:41.619458-08:00,1999.0,10.843003,10843.003 +11858,2025-03-08T11:36:52.452013-08:00,2032.0,10.832555,10832.555 +11859,2025-03-08T11:37:03.290433-08:00,2029.0,10.83842,10838.42 +11860,2025-03-08T11:37:14.127463-08:00,1959.0,10.83703,10837.03 +11861,2025-03-08T11:37:24.957018-08:00,1991.0,10.829555,10829.555 +11862,2025-03-08T11:37:35.801670-08:00,2025.0,10.844652,10844.652 +11863,2025-03-08T11:37:46.643454-08:00,2033.0,10.841784,10841.784 +11864,2025-03-08T11:37:57.486708-08:00,2029.0,10.843254,10843.254 +11865,2025-03-08T11:38:08.325866-08:00,2020.0,10.839158,10839.158 +11866,2025-03-08T11:38:19.161456-08:00,2030.0,10.83559,10835.59 +11867,2025-03-08T11:38:29.995033-08:00,1997.0,10.833577,10833.577 +11868,2025-03-08T11:38:40.830486-08:00,2023.0,10.835453,10835.453 +11869,2025-03-08T11:38:51.669459-08:00,2032.0,10.838973,10838.973 +11870,2025-03-08T11:39:02.510932-08:00,1998.0,10.841473,10841.473 +11871,2025-03-08T11:39:13.342498-08:00,1959.0,10.831566,10831.566 +11872,2025-03-08T11:39:24.185457-08:00,2022.0,10.842959,10842.959 +11873,2025-03-08T11:39:35.018777-08:00,2013.0,10.83332,10833.32 +11874,2025-03-08T11:39:45.861764-08:00,2019.0,10.842987,10842.987 +11875,2025-03-08T11:39:56.689455-08:00,2031.0,10.827691,10827.691 +11876,2025-03-08T11:40:07.533509-08:00,1997.0,10.844054,10844.054 +11877,2025-03-08T11:40:18.370487-08:00,2020.0,10.836978,10836.978 +11878,2025-03-08T11:40:29.197464-08:00,2032.0,10.826977,10826.977 +11879,2025-03-08T11:40:40.033277-08:00,2003.0,10.835813,10835.813 +11880,2025-03-08T11:40:50.870685-08:00,1965.0,10.837408,10837.408 +11881,2025-03-08T11:41:01.712599-08:00,2031.0,10.841914,10841.914 +11882,2025-03-08T11:41:12.553710-08:00,1985.0,10.841111,10841.111 +11883,2025-03-08T11:41:23.390431-08:00,2018.0,10.836721,10836.721 +11884,2025-03-08T11:41:34.226785-08:00,1999.0,10.836354,10836.354 +11885,2025-03-08T11:41:45.064107-08:00,2029.0,10.837322,10837.322 +11886,2025-03-08T11:41:55.906461-08:00,2017.0,10.842354,10842.354 +11887,2025-03-08T11:42:06.748459-08:00,2030.0,10.841998,10841.998 +11888,2025-03-08T11:42:17.582081-08:00,1973.0,10.833622,10833.622 +11889,2025-03-08T11:42:28.428822-08:00,1999.0,10.846741,10846.741 +11890,2025-03-08T11:42:39.267464-08:00,2026.0,10.838642,10838.642 +11891,2025-03-08T11:42:50.104453-08:00,2032.0,10.836989,10836.989 +11892,2025-03-08T11:43:00.941739-08:00,2027.0,10.837286,10837.286 +11893,2025-03-08T11:43:11.788314-08:00,1984.0,10.846575,10846.575 +11894,2025-03-08T11:43:22.632480-08:00,2031.0,10.844166,10844.166 +11895,2025-03-08T11:43:33.470437-08:00,1937.0,10.837957,10837.957 +11896,2025-03-08T11:43:44.302480-08:00,2010.0,10.832043,10832.043 +11897,2025-03-08T11:43:55.140445-08:00,2020.0,10.837965,10837.965 +11898,2025-03-08T11:44:05.982666-08:00,2031.0,10.842221,10842.221 +11899,2025-03-08T11:44:16.821911-08:00,2030.0,10.839245,10839.245 +11900,2025-03-08T11:44:27.651448-08:00,2019.0,10.829537,10829.537 +11901,2025-03-08T11:44:38.488596-08:00,1951.0,10.837148,10837.148 +11902,2025-03-08T11:44:49.332735-08:00,2031.0,10.844139,10844.139 +11903,2025-03-08T11:45:00.163797-08:00,2027.0,10.831062,10831.062 +11904,2025-03-08T11:45:11.005730-08:00,1985.0,10.841933,10841.933 +11905,2025-03-08T11:45:21.845687-08:00,1938.0,10.839957,10839.957 +11906,2025-03-08T11:45:32.694449-08:00,1991.0,10.848762,10848.762 +11907,2025-03-08T11:45:43.534684-08:00,1982.0,10.840235,10840.235 +11908,2025-03-08T11:45:54.364461-08:00,2013.0,10.829777,10829.777 +11909,2025-03-08T11:46:05.212822-08:00,2013.0,10.848361,10848.361 +11910,2025-03-08T11:46:16.041073-08:00,1996.0,10.828251,10828.251 +11911,2025-03-08T11:46:26.878789-08:00,2017.0,10.837716,10837.716 +11912,2025-03-08T11:46:37.711449-08:00,2026.0,10.83266,10832.66 +11913,2025-03-08T11:46:48.559654-08:00,1979.0,10.848205,10848.205 +11914,2025-03-08T11:46:59.392458-08:00,2023.0,10.832804,10832.804 +11915,2025-03-08T11:47:10.231014-08:00,1945.0,10.838556,10838.556 +11916,2025-03-08T11:47:21.066454-08:00,1963.0,10.83544,10835.44 +11917,2025-03-08T11:47:31.905532-08:00,2022.0,10.839078,10839.078 +11918,2025-03-08T11:47:42.736456-08:00,1999.0,10.830924,10830.924 +11919,2025-03-08T11:47:53.579526-08:00,1987.0,10.84307,10843.07 +11920,2025-03-08T11:48:04.417836-08:00,2006.0,10.83831,10838.31 +11921,2025-03-08T11:48:15.244450-08:00,1989.0,10.826614,10826.614 +11922,2025-03-08T11:48:26.090610-08:00,1949.0,10.84616,10846.16 +11923,2025-03-08T11:48:36.923083-08:00,1920.0,10.832473,10832.473 +11924,2025-03-08T11:48:47.756609-08:00,2019.0,10.833526,10833.526 +11925,2025-03-08T11:48:58.593456-08:00,2015.0,10.836847,10836.847 +11926,2025-03-08T11:49:09.430089-08:00,2000.0,10.836633,10836.633 +11927,2025-03-08T11:49:20.273805-08:00,1985.0,10.843716,10843.716 +11928,2025-03-08T11:49:31.101001-08:00,2011.0,10.827196,10827.196 +11929,2025-03-08T11:49:41.935698-08:00,1937.0,10.834697,10834.697 +11930,2025-03-08T11:49:52.778433-08:00,2009.0,10.842735,10842.735 +11931,2025-03-08T11:50:03.606438-08:00,2023.0,10.828005,10828.005 +11932,2025-03-08T11:50:14.449778-08:00,2005.0,10.84334,10843.34 +11933,2025-03-08T11:50:25.292684-08:00,1977.0,10.842906,10842.906 +11934,2025-03-08T11:50:36.127462-08:00,1939.0,10.834778,10834.778 +11935,2025-03-08T11:50:46.973940-08:00,2013.0,10.846478,10846.478 +11936,2025-03-08T11:50:57.803454-08:00,2006.0,10.829514,10829.514 +11937,2025-03-08T11:51:08.646758-08:00,1981.0,10.843304,10843.304 +11938,2025-03-08T11:51:19.483570-08:00,1989.0,10.836812,10836.812 +11939,2025-03-08T11:51:30.321650-08:00,1968.0,10.83808,10838.08 +11940,2025-03-08T11:51:41.160460-08:00,1964.0,10.83881,10838.81 +11941,2025-03-08T11:51:51.994892-08:00,2025.0,10.834432,10834.432 +11942,2025-03-08T11:52:02.828781-08:00,2021.0,10.833889,10833.889 +11943,2025-03-08T11:52:13.660450-08:00,1968.0,10.831669,10831.669 +11944,2025-03-08T11:52:24.509560-08:00,1933.0,10.84911,10849.11 +11945,2025-03-08T11:52:35.336510-08:00,2013.0,10.82695,10826.95 +11946,2025-03-08T11:52:46.181972-08:00,1994.0,10.845462,10845.462 +11947,2025-03-08T11:52:57.015693-08:00,1967.0,10.833721,10833.721 +11948,2025-03-08T11:53:07.846460-08:00,2019.0,10.830767,10830.767 +11949,2025-03-08T11:53:18.684437-08:00,1979.0,10.837977,10837.977 +11950,2025-03-08T11:53:29.521406-08:00,1949.0,10.836969,10836.969 +11951,2025-03-08T11:53:40.353512-08:00,1977.0,10.832106,10832.106 +11952,2025-03-08T11:53:51.192043-08:00,2000.0,10.838531,10838.531 +11953,2025-03-08T11:54:02.028646-08:00,1993.0,10.836603,10836.603 +11954,2025-03-08T11:54:12.860459-08:00,1947.0,10.831813,10831.813 +11955,2025-03-08T11:54:23.695735-08:00,2000.0,10.835276,10835.276 +11956,2025-03-08T11:54:34.522693-08:00,2002.0,10.826958,10826.958 +11957,2025-03-08T11:54:45.363775-08:00,1925.0,10.841082,10841.082 +11958,2025-03-08T11:54:56.197450-08:00,1987.0,10.833675,10833.675 +11959,2025-03-08T11:55:07.034706-08:00,2019.0,10.837256,10837.256 +11960,2025-03-08T11:55:17.874506-08:00,1936.0,10.8398,10839.8 +11961,2025-03-08T11:55:28.699553-08:00,2015.0,10.825047,10825.047 +11962,2025-03-08T11:55:39.537691-08:00,1933.0,10.838138,10838.138 +11963,2025-03-08T11:55:50.380960-08:00,2014.0,10.843269,10843.269 +11964,2025-03-08T11:56:01.220592-08:00,2000.0,10.839632,10839.632 +11965,2025-03-08T11:56:12.059694-08:00,1982.0,10.839102,10839.102 +11966,2025-03-08T11:56:22.895713-08:00,2019.0,10.836019,10836.019 +11967,2025-03-08T11:56:33.730433-08:00,2015.0,10.83472,10834.72 +11968,2025-03-08T11:56:44.567453-08:00,1975.0,10.83702,10837.02 +11969,2025-03-08T11:56:55.417615-08:00,2013.0,10.850162,10850.162 +11970,2025-03-08T11:57:06.252925-08:00,1950.0,10.83531,10835.31 +11971,2025-03-08T11:57:17.095708-08:00,1994.0,10.842783,10842.783 +11972,2025-03-08T11:57:27.931458-08:00,1984.0,10.83575,10835.75 +11973,2025-03-08T11:57:38.770786-08:00,2005.0,10.839328,10839.328 +11974,2025-03-08T11:57:49.614768-08:00,1930.0,10.843982,10843.982 +11975,2025-03-08T11:58:00.446458-08:00,1971.0,10.83169,10831.69 +11976,2025-03-08T11:58:11.277341-08:00,1975.0,10.830883,10830.883 +11977,2025-03-08T11:58:22.114147-08:00,1984.0,10.836806,10836.806 +11978,2025-03-08T11:58:32.951435-08:00,1953.0,10.837288,10837.288 +11979,2025-03-08T11:58:43.790597-08:00,1989.0,10.839162,10839.162 +11980,2025-03-08T11:58:54.622460-08:00,2007.0,10.831863,10831.863 +11981,2025-03-08T11:59:05.460497-08:00,1929.0,10.838037,10838.037 +11982,2025-03-08T11:59:16.295783-08:00,1988.0,10.835286,10835.286 +11983,2025-03-08T11:59:27.130461-08:00,1963.0,10.834678,10834.678 +11984,2025-03-08T11:59:37.970747-08:00,1997.0,10.840286,10840.286 +11985,2025-03-08T11:59:48.803483-08:00,1967.0,10.832736,10832.736 +11986,2025-03-08T11:59:59.639455-08:00,1959.0,10.835972,10835.972 +11987,2025-03-08T12:00:10.471642-08:00,1961.0,10.832187,10832.187 +11988,2025-03-08T12:00:21.308868-08:00,1931.0,10.837226,10837.226 +11989,2025-03-08T12:00:32.152458-08:00,2000.0,10.84359,10843.59 +11990,2025-03-08T12:00:42.978929-08:00,2002.0,10.826471,10826.471 +11991,2025-03-08T12:00:53.810484-08:00,1963.0,10.831555,10831.555 +11992,2025-03-08T12:01:04.647704-08:00,1984.0,10.83722,10837.22 +11993,2025-03-08T12:01:15.479449-08:00,1978.0,10.831745,10831.745 +11994,2025-03-08T12:01:26.318462-08:00,2000.0,10.839013,10839.013 +11995,2025-03-08T12:01:37.154980-08:00,1931.0,10.836518,10836.518 +11996,2025-03-08T12:01:48.001679-08:00,1978.0,10.846699,10846.699 +11997,2025-03-08T12:01:58.832454-08:00,2000.0,10.830775,10830.775 +11998,2025-03-08T12:02:09.665916-08:00,2011.0,10.833462,10833.462 +11999,2025-03-08T12:02:20.503698-08:00,1952.0,10.837782,10837.782 +12000,2025-03-08T12:02:31.336675-08:00,2008.0,10.832977,10832.977 +12001,2025-03-08T12:02:42.162674-08:00,2012.0,10.825999,10825.999 +12002,2025-03-08T12:02:53.004443-08:00,1984.0,10.841769,10841.769 +12003,2025-03-08T12:03:14.666456-08:00,1929.0,21.662013,21662.013 +12004,2025-03-08T12:03:25.500846-08:00,2002.0,10.83439,10834.39 +12005,2025-03-08T12:03:36.337496-08:00,1967.0,10.83665,10836.65 +12006,2025-03-08T12:03:47.173460-08:00,2012.0,10.835964,10835.964 +12007,2025-03-08T12:03:58.012803-08:00,1979.0,10.839343,10839.343 +12008,2025-03-08T12:04:08.844498-08:00,2014.0,10.831695,10831.695 +12009,2025-03-08T12:04:19.676725-08:00,2015.0,10.832227,10832.227 +12010,2025-03-08T12:04:30.512734-08:00,1975.0,10.836009,10836.009 +12011,2025-03-08T12:04:41.360454-08:00,1950.0,10.84772,10847.72 +12012,2025-03-08T12:04:52.192651-08:00,1971.0,10.832197,10832.197 +12013,2025-03-08T12:05:03.036504-08:00,2003.0,10.843853,10843.853 +12014,2025-03-08T12:05:13.880581-08:00,1922.0,10.844077,10844.077 +12015,2025-03-08T12:05:24.718709-08:00,1984.0,10.838128,10838.128 +12016,2025-03-08T12:05:35.554639-08:00,1970.0,10.83593,10835.93 +12017,2025-03-08T12:05:46.400414-08:00,2007.0,10.845775,10845.775 +12018,2025-03-08T12:05:57.236471-08:00,2001.0,10.836057,10836.057 +12019,2025-03-08T12:06:08.082562-08:00,2002.0,10.846091,10846.091 +12020,2025-03-08T12:06:18.915635-08:00,1970.0,10.833073,10833.073 +12021,2025-03-08T12:06:29.757322-08:00,1963.0,10.841687,10841.687 +12022,2025-03-08T12:06:40.585575-08:00,2005.0,10.828253,10828.253 +12023,2025-03-08T12:06:51.431677-08:00,2005.0,10.846102,10846.102 +12024,2025-03-08T12:07:02.264318-08:00,2006.0,10.832641,10832.641 +12025,2025-03-08T12:07:13.096960-08:00,2002.0,10.832642,10832.642 +12026,2025-03-08T12:07:23.940290-08:00,1989.0,10.84333,10843.33 +12027,2025-03-08T12:07:34.778322-08:00,1983.0,10.838032,10838.032 +12028,2025-03-08T12:07:45.614268-08:00,1957.0,10.835946,10835.946 +12029,2025-03-08T12:07:56.446356-08:00,1979.0,10.832088,10832.088 +12030,2025-03-08T12:08:07.276341-08:00,2003.0,10.829985,10829.985 +12031,2025-03-08T12:08:18.109886-08:00,1927.0,10.833545,10833.545 +12032,2025-03-08T12:08:28.951490-08:00,1985.0,10.841604,10841.604 +12033,2025-03-08T12:08:39.784471-08:00,1981.0,10.832981,10832.981 +12034,2025-03-08T12:08:50.616360-08:00,1935.0,10.831889,10831.889 +12035,2025-03-08T12:09:01.447539-08:00,1981.0,10.831179,10831.179 +12036,2025-03-08T12:09:12.291435-08:00,1978.0,10.843896,10843.896 +12037,2025-03-08T12:09:23.118292-08:00,2000.0,10.826857,10826.857 +12038,2025-03-08T12:09:33.953304-08:00,1941.0,10.835012,10835.012 +12039,2025-03-08T12:09:44.793190-08:00,2003.0,10.839886,10839.886 +12040,2025-03-08T12:09:55.634327-08:00,1936.0,10.841137,10841.137 +12041,2025-03-08T12:10:06.472514-08:00,1945.0,10.838187,10838.187 +12042,2025-03-08T12:10:17.305159-08:00,2003.0,10.832645,10832.645 +12043,2025-03-08T12:10:28.134321-08:00,2000.0,10.829162,10829.162 +12044,2025-03-08T12:10:38.967666-08:00,2007.0,10.833345,10833.345 +12045,2025-03-08T12:10:49.803324-08:00,1995.0,10.835658,10835.658 +12046,2025-03-08T12:11:00.638598-08:00,2006.0,10.835274,10835.274 +12047,2025-03-08T12:11:11.463639-08:00,1963.0,10.825041,10825.041 +12048,2025-03-08T12:11:22.302315-08:00,1919.0,10.838676,10838.676 +12049,2025-03-08T12:11:33.138349-08:00,2005.0,10.836034,10836.034 +12050,2025-03-08T12:11:43.968682-08:00,1975.0,10.830333,10830.333 +12051,2025-03-08T12:11:54.796524-08:00,2007.0,10.827842,10827.842 +12052,2025-03-08T12:12:05.628552-08:00,1982.0,10.832028,10832.028 +12053,2025-03-08T12:12:16.468390-08:00,1959.0,10.839838,10839.838 +12054,2025-03-08T12:12:27.303171-08:00,1993.0,10.834781,10834.781 +12055,2025-03-08T12:12:38.137331-08:00,2000.0,10.83416,10834.16 +12056,2025-03-08T12:12:48.981671-08:00,1943.0,10.84434,10844.34 +12057,2025-03-08T12:12:59.810321-08:00,1954.0,10.82865,10828.65 +12058,2025-03-08T12:13:10.647569-08:00,1979.0,10.837248,10837.248 +12059,2025-03-08T12:13:21.496313-08:00,1997.0,10.848744,10848.744 +12060,2025-03-08T12:13:32.327993-08:00,1968.0,10.83168,10831.68 +12061,2025-03-08T12:13:43.169316-08:00,1994.0,10.841323,10841.323 +12062,2025-03-08T12:13:54.012442-08:00,1994.0,10.843126,10843.126 +12063,2025-03-08T12:14:04.845404-08:00,1984.0,10.832962,10832.962 +12064,2025-03-08T12:14:15.692690-08:00,1889.0,10.847286,10847.286 +12065,2025-03-08T12:14:26.535297-08:00,1997.0,10.842607,10842.607 +12066,2025-03-08T12:14:37.367323-08:00,1982.0,10.832026,10832.026 +12067,2025-03-08T12:14:48.210847-08:00,1940.0,10.843524,10843.524 +12068,2025-03-08T12:14:59.041396-08:00,1969.0,10.830549,10830.549 +12069,2025-03-08T12:15:09.881380-08:00,1979.0,10.839984,10839.984 +12070,2025-03-08T12:15:20.717760-08:00,1956.0,10.83638,10836.38 +12071,2025-03-08T12:15:31.544548-08:00,1997.0,10.826788,10826.788 +12072,2025-03-08T12:15:42.387508-08:00,1994.0,10.84296,10842.96 +12073,2025-03-08T12:15:53.227557-08:00,1958.0,10.840049,10840.049 +12074,2025-03-08T12:16:04.066575-08:00,1999.0,10.839018,10839.018 +12075,2025-03-08T12:16:14.893296-08:00,2000.0,10.826721,10826.721 +12076,2025-03-08T12:16:25.724318-08:00,1987.0,10.831022,10831.022 +12077,2025-03-08T12:16:36.561326-08:00,1963.0,10.837008,10837.008 +12078,2025-03-08T12:16:47.392920-08:00,1965.0,10.831594,10831.594 +12079,2025-03-08T12:16:58.236318-08:00,1989.0,10.843398,10843.398 +12080,2025-03-08T12:17:09.066721-08:00,1999.0,10.830403,10830.403 +12081,2025-03-08T12:17:19.894443-08:00,1999.0,10.827722,10827.722 +12082,2025-03-08T12:17:30.733321-08:00,1905.0,10.838878,10838.878 +12083,2025-03-08T12:17:41.574740-08:00,2000.0,10.841419,10841.419 +12084,2025-03-08T12:17:52.413318-08:00,1984.0,10.838578,10838.578 +12085,2025-03-08T12:18:03.254296-08:00,2000.0,10.840978,10840.978 +12086,2025-03-08T12:18:14.083666-08:00,1952.0,10.82937,10829.37 +12087,2025-03-08T12:18:24.923321-08:00,1939.0,10.839655,10839.655 +12088,2025-03-08T12:18:35.755588-08:00,1999.0,10.832267,10832.267 +12089,2025-03-08T12:18:46.590364-08:00,1947.0,10.834776,10834.776 +12090,2025-03-08T12:18:57.431323-08:00,1991.0,10.840959,10840.959 +12091,2025-03-08T12:19:08.275635-08:00,1954.0,10.844312,10844.312 +12092,2025-03-08T12:19:19.107324-08:00,1936.0,10.831689,10831.689 +12093,2025-03-08T12:19:29.943323-08:00,1917.0,10.835999,10835.999 +12094,2025-03-08T12:19:40.784317-08:00,1957.0,10.840994,10840.994 +12095,2025-03-08T12:19:51.624491-08:00,1996.0,10.840174,10840.174 +12096,2025-03-08T12:20:02.467735-08:00,1961.0,10.843244,10843.244 +12097,2025-03-08T12:20:13.308937-08:00,1991.0,10.841202,10841.202 +12098,2025-03-08T12:20:24.142660-08:00,2000.0,10.833723,10833.723 +12099,2025-03-08T12:20:34.986432-08:00,1995.0,10.843772,10843.772 +12100,2025-03-08T12:20:45.813321-08:00,1986.0,10.826889,10826.889 +12101,2025-03-08T12:20:56.655453-08:00,1942.0,10.842132,10842.132 +12102,2025-03-08T12:21:07.490371-08:00,1907.0,10.834918,10834.918 +12103,2025-03-08T12:21:18.330385-08:00,1949.0,10.840014,10840.014 +12104,2025-03-08T12:21:29.164855-08:00,1968.0,10.83447,10834.47 +12105,2025-03-08T12:21:40.009950-08:00,1957.0,10.845095,10845.095 +12106,2025-03-08T12:21:50.851319-08:00,1959.0,10.841369,10841.369 +12107,2025-03-08T12:22:01.695316-08:00,1994.0,10.843997,10843.997 +12108,2025-03-08T12:22:12.537650-08:00,1936.0,10.842334,10842.334 +12109,2025-03-08T12:22:23.376284-08:00,1994.0,10.838634,10838.634 +12110,2025-03-08T12:22:34.213621-08:00,1913.0,10.837337,10837.337 +12111,2025-03-08T12:22:45.056379-08:00,1951.0,10.842758,10842.758 +12112,2025-03-08T12:22:55.891611-08:00,1977.0,10.835232,10835.232 +12113,2025-03-08T12:23:04.746063-08:00,1948.0,8.854452,8854.452 +12114,2025-03-08T12:23:06.720323-08:00,1984.0,1.97426,1974.26 +12115,2025-03-08T12:23:17.556865-08:00,1947.0,10.836542,10836.542 +12116,2025-03-08T12:23:28.393385-08:00,1993.0,10.83652,10836.52 +12117,2025-03-08T12:23:39.242474-08:00,1902.0,10.849089,10849.089 +12118,2025-03-08T12:23:50.077373-08:00,1993.0,10.834899,10834.899 +12119,2025-03-08T12:24:00.922699-08:00,1940.0,10.845326,10845.326 +12120,2025-03-08T12:24:11.766878-08:00,1986.0,10.844179,10844.179 +12121,2025-03-08T12:24:22.599313-08:00,1942.0,10.832435,10832.435 +12122,2025-03-08T12:24:33.437781-08:00,1949.0,10.838468,10838.468 +12123,2025-03-08T12:24:44.285911-08:00,1947.0,10.84813,10848.13 +12124,2025-03-08T12:24:55.124311-08:00,1949.0,10.8384,10838.4 +12125,2025-03-08T12:25:05.966521-08:00,1945.0,10.84221,10842.21 +12126,2025-03-08T12:25:16.803119-08:00,1927.0,10.836598,10836.598 +12127,2025-03-08T12:25:27.644382-08:00,1937.0,10.841263,10841.263 +12128,2025-03-08T12:25:38.484530-08:00,1984.0,10.840148,10840.148 +12129,2025-03-08T12:25:49.316823-08:00,1963.0,10.832293,10832.293 +12130,2025-03-08T12:26:00.151365-08:00,1974.0,10.834542,10834.542 +12131,2025-03-08T12:26:10.995321-08:00,1975.0,10.843956,10843.956 +12132,2025-03-08T12:26:21.833387-08:00,1991.0,10.838066,10838.066 +12133,2025-03-08T12:26:32.682660-08:00,1917.0,10.849273,10849.273 +12134,2025-03-08T12:26:43.513593-08:00,1993.0,10.830933,10830.933 +12135,2025-03-08T12:26:54.346355-08:00,1982.0,10.832762,10832.762 +12136,2025-03-08T12:27:05.188597-08:00,1979.0,10.842242,10842.242 +12137,2025-03-08T12:27:16.026326-08:00,1911.0,10.837729,10837.729 +12138,2025-03-08T12:27:26.867375-08:00,1924.0,10.841049,10841.049 +12139,2025-03-08T12:27:37.706631-08:00,1950.0,10.839256,10839.256 +12140,2025-03-08T12:27:48.544486-08:00,1990.0,10.837855,10837.855 +12141,2025-03-08T12:27:59.376642-08:00,1909.0,10.832156,10832.156 +12142,2025-03-08T12:28:10.213870-08:00,1951.0,10.837228,10837.228 +12143,2025-03-08T12:28:21.045320-08:00,1985.0,10.83145,10831.45 +12144,2025-03-08T12:28:31.886320-08:00,1983.0,10.841,10841.0 +12145,2025-03-08T12:28:42.718980-08:00,1959.0,10.83266,10832.66 +12146,2025-03-08T12:28:53.559353-08:00,1973.0,10.840373,10840.373 +12147,2025-03-08T12:29:04.392908-08:00,1921.0,10.833555,10833.555 +12148,2025-03-08T12:29:15.233841-08:00,1999.0,10.840933,10840.933 +12149,2025-03-08T12:29:26.082689-08:00,1997.0,10.848848,10848.848 +12150,2025-03-08T12:29:36.913325-08:00,1994.0,10.830636,10830.636 +12151,2025-03-08T12:29:47.755682-08:00,1937.0,10.842357,10842.357 +12152,2025-03-08T12:29:58.598847-08:00,1985.0,10.843165,10843.165 +12153,2025-03-08T12:30:09.428317-08:00,1914.0,10.82947,10829.47 +12154,2025-03-08T12:30:20.269324-08:00,1930.0,10.841007,10841.007 +12155,2025-03-08T12:30:31.110673-08:00,1991.0,10.841349,10841.349 +12156,2025-03-08T12:30:41.942472-08:00,1936.0,10.831799,10831.799 +12157,2025-03-08T12:30:52.775381-08:00,1947.0,10.832909,10832.909 +12158,2025-03-08T12:31:03.609839-08:00,1945.0,10.834458,10834.458 +12159,2025-03-08T12:31:14.443316-08:00,1986.0,10.833477,10833.477 +12160,2025-03-08T12:31:25.281249-08:00,1989.0,10.837933,10837.933 +12161,2025-03-08T12:31:36.113371-08:00,1989.0,10.832122,10832.122 +12162,2025-03-08T12:31:46.949869-08:00,1957.0,10.836498,10836.498 +12163,2025-03-08T12:31:57.780321-08:00,1981.0,10.830452,10830.452 +12164,2025-03-08T12:32:08.613402-08:00,1950.0,10.833081,10833.081 +12165,2025-03-08T12:32:19.439322-08:00,1968.0,10.82592,10825.92 +12166,2025-03-08T12:32:30.277326-08:00,1987.0,10.838004,10838.004 +12167,2025-03-08T12:32:41.115350-08:00,1996.0,10.838024,10838.024 +12168,2025-03-08T12:32:51.959367-08:00,1994.0,10.844017,10844.017 +12169,2025-03-08T12:33:02.784591-08:00,1952.0,10.825224,10825.224 +12170,2025-03-08T12:33:13.109083-08:00,1993.0,10.324492,10324.492 +12171,2025-03-08T12:33:13.622727-08:00,1993.0,0.513644,513.644 +12172,2025-03-08T12:33:24.464662-08:00,1927.0,10.841935,10841.935 +12173,2025-03-08T12:33:35.294433-08:00,1936.0,10.829771,10829.771 +12174,2025-03-08T12:33:46.139747-08:00,1969.0,10.845314,10845.314 +12175,2025-03-08T12:33:56.970551-08:00,1950.0,10.830804,10830.804 +12176,2025-03-08T12:34:07.803496-08:00,1974.0,10.832945,10832.945 +12177,2025-03-08T12:34:18.638443-08:00,1952.0,10.834947,10834.947 +12178,2025-03-08T12:34:29.473640-08:00,1959.0,10.835197,10835.197 +12179,2025-03-08T12:34:40.309636-08:00,1929.0,10.835996,10835.996 +12180,2025-03-08T12:34:51.145292-08:00,1965.0,10.835656,10835.656 +12181,2025-03-08T12:35:01.977647-08:00,1939.0,10.832355,10832.355 +12182,2025-03-08T12:35:12.816650-08:00,1935.0,10.839003,10839.003 +12183,2025-03-08T12:35:23.652353-08:00,1935.0,10.835703,10835.703 +12184,2025-03-08T12:35:34.494309-08:00,1985.0,10.841956,10841.956 +12185,2025-03-08T12:35:45.328837-08:00,1915.0,10.834528,10834.528 +12186,2025-03-08T12:35:56.170313-08:00,1981.0,10.841476,10841.476 +12187,2025-03-08T12:36:07.009326-08:00,1904.0,10.839013,10839.013 +12188,2025-03-08T12:36:17.850365-08:00,1944.0,10.841039,10841.039 +12189,2025-03-08T12:36:28.689795-08:00,1930.0,10.83943,10839.43 +12190,2025-03-08T12:36:39.522328-08:00,1927.0,10.832533,10832.533 +12191,2025-03-08T12:36:50.359249-08:00,1917.0,10.836921,10836.921 +12192,2025-03-08T12:37:01.205590-08:00,1970.0,10.846341,10846.341 +12193,2025-03-08T12:37:12.036321-08:00,1971.0,10.830731,10830.731 +12194,2025-03-08T12:37:22.874428-08:00,1969.0,10.838107,10838.107 +12195,2025-03-08T12:37:33.710296-08:00,1951.0,10.835868,10835.868 +12196,2025-03-08T12:37:44.545499-08:00,1967.0,10.835203,10835.203 +12197,2025-03-08T12:37:55.382091-08:00,1995.0,10.836592,10836.592 +12198,2025-03-08T12:38:06.216302-08:00,1943.0,10.834211,10834.211 +12199,2025-03-08T12:38:17.051658-08:00,1962.0,10.835356,10835.356 +12200,2025-03-08T12:38:27.893584-08:00,1990.0,10.841926,10841.926 +12201,2025-03-08T12:38:38.725316-08:00,1970.0,10.831732,10831.732 +12202,2025-03-08T12:38:49.567326-08:00,1972.0,10.84201,10842.01 +12203,2025-03-08T12:39:00.404574-08:00,1952.0,10.837248,10837.248 +12204,2025-03-08T12:39:11.242731-08:00,1993.0,10.838157,10838.157 +12205,2025-03-08T12:39:22.081466-08:00,1993.0,10.838735,10838.735 +12206,2025-03-08T12:39:32.918707-08:00,1963.0,10.837241,10837.241 +12207,2025-03-08T12:39:43.760611-08:00,1962.0,10.841904,10841.904 +12208,2025-03-08T12:39:54.594447-08:00,1986.0,10.833836,10833.836 +12209,2025-03-08T12:40:05.424940-08:00,1968.0,10.830493,10830.493 +12210,2025-03-08T12:40:16.264322-08:00,1942.0,10.839382,10839.382 +12211,2025-03-08T12:40:27.089854-08:00,1968.0,10.825532,10825.532 +12212,2025-03-08T12:40:37.930531-08:00,1989.0,10.840677,10840.677 +12213,2025-03-08T12:40:48.769526-08:00,1914.0,10.838995,10838.995 +12214,2025-03-08T12:40:59.594709-08:00,1957.0,10.825183,10825.183 +12215,2025-03-08T12:41:10.426558-08:00,1984.0,10.831849,10831.849 +12216,2025-03-08T12:41:21.264556-08:00,1918.0,10.837998,10837.998 +12217,2025-03-08T12:41:32.104370-08:00,1979.0,10.839814,10839.814 +12218,2025-03-08T12:41:42.933053-08:00,1979.0,10.828683,10828.683 +12219,2025-03-08T12:41:53.770190-08:00,1991.0,10.837137,10837.137 +12220,2025-03-08T12:42:04.603588-08:00,1965.0,10.833398,10833.398 +12221,2025-03-08T12:42:15.429639-08:00,1990.0,10.826051,10826.051 +12222,2025-03-08T12:42:26.265321-08:00,1983.0,10.835682,10835.682 +12223,2025-03-08T12:42:37.105455-08:00,1953.0,10.840134,10840.134 +12224,2025-03-08T12:42:47.941897-08:00,1955.0,10.836442,10836.442 +12225,2025-03-08T12:42:58.778382-08:00,1983.0,10.836485,10836.485 +12226,2025-03-08T12:43:09.605473-08:00,1905.0,10.827091,10827.091 +12227,2025-03-08T12:43:20.440752-08:00,1994.0,10.835279,10835.279 +12228,2025-03-08T12:43:31.267494-08:00,1990.0,10.826742,10826.742 +12229,2025-03-08T12:43:42.103946-08:00,1923.0,10.836452,10836.452 +12230,2025-03-08T12:43:52.946317-08:00,1912.0,10.842371,10842.371 +12231,2025-03-08T12:44:03.776547-08:00,1994.0,10.83023,10830.23 +12232,2025-03-08T12:44:14.615635-08:00,1982.0,10.839088,10839.088 +12233,2025-03-08T12:44:25.459323-08:00,1963.0,10.843688,10843.688 +12234,2025-03-08T12:44:36.290854-08:00,1947.0,10.831531,10831.531 +12235,2025-03-08T12:44:47.129087-08:00,1972.0,10.838233,10838.233 +12236,2025-03-08T12:44:57.971317-08:00,1935.0,10.84223,10842.23 +12237,2025-03-08T12:45:08.804278-08:00,1970.0,10.832961,10832.961 +12238,2025-03-08T12:45:19.636511-08:00,1952.0,10.832233,10832.233 +12239,2025-03-08T12:45:30.456671-08:00,1993.0,10.82016,10820.16 +12240,2025-03-08T12:45:41.298666-08:00,1991.0,10.841995,10841.995 +12241,2025-03-08T12:45:52.128369-08:00,1981.0,10.829703,10829.703 +12242,2025-03-08T12:46:02.960052-08:00,1967.0,10.831683,10831.683 +12243,2025-03-08T12:46:13.796319-08:00,1989.0,10.836267,10836.267 +12244,2025-03-08T12:46:24.631433-08:00,1981.0,10.835114,10835.114 +12245,2025-03-08T12:46:35.463838-08:00,1917.0,10.832405,10832.405 +12246,2025-03-08T12:46:46.301315-08:00,1990.0,10.837477,10837.477 +12247,2025-03-08T12:46:57.131727-08:00,1983.0,10.830412,10830.412 +12248,2025-03-08T12:47:07.965449-08:00,1983.0,10.833722,10833.722 +12249,2025-03-08T12:47:18.801593-08:00,1977.0,10.836144,10836.144 +12250,2025-03-08T12:47:29.640638-08:00,1979.0,10.839045,10839.045 +12251,2025-03-08T12:47:40.471402-08:00,1963.0,10.830764,10830.764 +12252,2025-03-08T12:47:51.302649-08:00,1939.0,10.831247,10831.247 +12253,2025-03-08T12:48:02.139566-08:00,1985.0,10.836917,10836.917 +12254,2025-03-08T12:48:12.973316-08:00,1953.0,10.83375,10833.75 +12255,2025-03-08T12:48:23.804296-08:00,1973.0,10.83098,10830.98 +12256,2025-03-08T12:48:34.640330-08:00,1919.0,10.836034,10836.034 +12257,2025-03-08T12:48:45.477888-08:00,1955.0,10.837558,10837.558 +12258,2025-03-08T12:48:56.315532-08:00,1957.0,10.837644,10837.644 +12259,2025-03-08T12:49:07.159317-08:00,1970.0,10.843785,10843.785 +12260,2025-03-08T12:49:17.991885-08:00,1907.0,10.832568,10832.568 +12261,2025-03-08T12:49:28.822290-08:00,1919.0,10.830405,10830.405 +12262,2025-03-08T12:49:39.652466-08:00,1970.0,10.830176,10830.176 +12263,2025-03-08T12:49:50.492446-08:00,1993.0,10.83998,10839.98 +12264,2025-03-08T12:50:01.318326-08:00,1995.0,10.82588,10825.88 +12265,2025-03-08T12:50:12.157967-08:00,1908.0,10.839641,10839.641 +12266,2025-03-08T12:50:22.991318-08:00,1989.0,10.833351,10833.351 +12267,2025-03-08T12:50:33.823382-08:00,1955.0,10.832064,10832.064 +12268,2025-03-08T12:50:44.654958-08:00,1915.0,10.831576,10831.576 +12269,2025-03-08T12:50:55.487552-08:00,1953.0,10.832594,10832.594 +12270,2025-03-08T12:51:06.324603-08:00,1919.0,10.837051,10837.051 +12271,2025-03-08T12:51:17.155328-08:00,1982.0,10.830725,10830.725 +12272,2025-03-08T12:51:27.993324-08:00,1983.0,10.837996,10837.996 +12273,2025-03-08T12:51:38.826392-08:00,1990.0,10.833068,10833.068 +12274,2025-03-08T12:51:49.661430-08:00,1983.0,10.835038,10835.038 +12275,2025-03-08T12:52:00.495710-08:00,1949.0,10.83428,10834.28 +12276,2025-03-08T12:52:11.319314-08:00,1982.0,10.823604,10823.604 +12277,2025-03-08T12:52:22.158768-08:00,1909.0,10.839454,10839.454 +12278,2025-03-08T12:52:32.995453-08:00,1938.0,10.836685,10836.685 +12279,2025-03-08T12:52:43.828517-08:00,1989.0,10.833064,10833.064 +12280,2025-03-08T12:52:54.670668-08:00,1989.0,10.842151,10842.151 +12281,2025-03-08T12:53:05.494558-08:00,1966.0,10.82389,10823.89 +12282,2025-03-08T12:53:16.334309-08:00,1929.0,10.839751,10839.751 +12283,2025-03-08T12:53:27.167358-08:00,1989.0,10.833049,10833.049 +12284,2025-03-08T12:53:38.003377-08:00,1968.0,10.836019,10836.019 +12285,2025-03-08T12:53:48.834185-08:00,1910.0,10.830808,10830.808 +12286,2025-03-08T12:53:59.672313-08:00,1952.0,10.838128,10838.128 +12287,2025-03-08T12:54:10.503322-08:00,1944.0,10.831009,10831.009 +12288,2025-03-08T12:54:21.343479-08:00,1979.0,10.840157,10840.157 +12289,2025-03-08T12:54:32.179468-08:00,1962.0,10.835989,10835.989 +12290,2025-03-08T12:54:43.015439-08:00,1968.0,10.835971,10835.971 +12291,2025-03-08T12:54:53.851878-08:00,1951.0,10.836439,10836.439 +12292,2025-03-08T12:55:04.688312-08:00,1968.0,10.836434,10836.434 +12293,2025-03-08T12:55:15.515687-08:00,1985.0,10.827375,10827.375 +12294,2025-03-08T12:55:26.343317-08:00,1957.0,10.82763,10827.63 +12295,2025-03-08T12:55:37.181642-08:00,1951.0,10.838325,10838.325 +12296,2025-03-08T12:55:48.011539-08:00,1967.0,10.829897,10829.897 +12297,2025-03-08T12:55:58.839321-08:00,1969.0,10.827782,10827.782 +12298,2025-03-08T12:56:09.675413-08:00,1909.0,10.836092,10836.092 +12299,2025-03-08T12:56:20.514347-08:00,1915.0,10.838934,10838.934 +12300,2025-03-08T12:56:31.343581-08:00,1978.0,10.829234,10829.234 +12301,2025-03-08T12:56:42.180308-08:00,1911.0,10.836727,10836.727 +12302,2025-03-08T12:56:53.018379-08:00,1975.0,10.838071,10838.071 +12303,2025-03-08T12:57:03.853612-08:00,1946.0,10.835233,10835.233 +12304,2025-03-08T12:57:14.688319-08:00,1990.0,10.834707,10834.707 +12305,2025-03-08T12:57:25.531549-08:00,1909.0,10.84323,10843.23 +12306,2025-03-08T12:57:36.368621-08:00,1951.0,10.837072,10837.072 +12307,2025-03-08T12:57:47.200315-08:00,1975.0,10.831694,10831.694 +12308,2025-03-08T12:57:58.048321-08:00,1946.0,10.848006,10848.006 +12309,2025-03-08T12:58:08.876443-08:00,1907.0,10.828122,10828.122 +12310,2025-03-08T12:58:19.713795-08:00,1986.0,10.837352,10837.352 +12311,2025-03-08T12:58:30.544734-08:00,1974.0,10.830939,10830.939 +12312,2025-03-08T12:58:41.371318-08:00,1989.0,10.826584,10826.584 +12313,2025-03-08T12:58:52.207439-08:00,1990.0,10.836121,10836.121 +12314,2025-03-08T12:59:03.040337-08:00,1948.0,10.832898,10832.898 +12315,2025-03-08T12:59:13.874333-08:00,1982.0,10.833996,10833.996 +12316,2025-03-08T12:59:24.704627-08:00,1991.0,10.830294,10830.294 +12317,2025-03-08T12:59:35.536321-08:00,1931.0,10.831694,10831.694 +12318,2025-03-08T12:59:46.373323-08:00,1981.0,10.837002,10837.002 +12319,2025-03-08T12:59:57.215963-08:00,1981.0,10.84264,10842.64 +12320,2025-03-08T13:00:08.051321-08:00,1958.0,10.835358,10835.358 +12321,2025-03-08T13:00:18.891515-08:00,1907.0,10.840194,10840.194 +12322,2025-03-08T13:00:29.714491-08:00,1955.0,10.822976,10822.976 +12323,2025-03-08T13:00:40.547318-08:00,1927.0,10.832827,10832.827 +12324,2025-03-08T13:00:51.376322-08:00,1984.0,10.829004,10829.004 +12325,2025-03-08T13:01:02.210897-08:00,1922.0,10.834575,10834.575 +12326,2025-03-08T13:01:13.045806-08:00,1975.0,10.834909,10834.909 +12327,2025-03-08T13:01:23.881507-08:00,1994.0,10.835701,10835.701 +12328,2025-03-08T13:01:34.714763-08:00,1953.0,10.833256,10833.256 +12329,2025-03-08T13:01:45.551370-08:00,1963.0,10.836607,10836.607 +12330,2025-03-08T13:01:56.387474-08:00,1989.0,10.836104,10836.104 +12331,2025-03-08T13:02:07.224602-08:00,1904.0,10.837128,10837.128 +12332,2025-03-08T13:02:18.053769-08:00,1937.0,10.829167,10829.167 +12333,2025-03-08T13:02:28.894957-08:00,1979.0,10.841188,10841.188 +12334,2025-03-08T13:02:39.731668-08:00,1907.0,10.836711,10836.711 +12335,2025-03-08T13:02:50.562892-08:00,1947.0,10.831224,10831.224 +12336,2025-03-08T13:03:01.395660-08:00,1936.0,10.832768,10832.768 +12337,2025-03-08T13:03:12.232476-08:00,1918.0,10.836816,10836.816 +12338,2025-03-08T13:03:23.063323-08:00,1969.0,10.830847,10830.847 +12339,2025-03-08T13:03:33.895913-08:00,1923.0,10.83259,10832.59 +12340,2025-03-08T13:03:44.733319-08:00,1910.0,10.837406,10837.406 +12341,2025-03-08T13:03:55.565606-08:00,1989.0,10.832287,10832.287 +12342,2025-03-08T13:04:06.393324-08:00,1953.0,10.827718,10827.718 +12343,2025-03-08T13:04:17.234316-08:00,1933.0,10.840992,10840.992 +12344,2025-03-08T13:04:28.066051-08:00,1915.0,10.831735,10831.735 +12345,2025-03-08T13:04:38.901342-08:00,1903.0,10.835291,10835.291 +12346,2025-03-08T13:04:49.735584-08:00,1946.0,10.834242,10834.242 +12347,2025-03-08T13:05:00.571456-08:00,1951.0,10.835872,10835.872 +12348,2025-03-08T13:05:11.402501-08:00,1904.0,10.831045,10831.045 +12349,2025-03-08T13:05:22.240579-08:00,1946.0,10.838078,10838.078 +12350,2025-03-08T13:05:33.072525-08:00,1984.0,10.831946,10831.946 +12351,2025-03-08T13:05:43.975097-08:00,1950.0,10.902572,10902.572 +12352,2025-03-08T13:05:54.808152-08:00,1984.0,10.833055,10833.055 +12353,2025-03-08T13:06:05.644355-08:00,1995.0,10.836203,10836.203 +12354,2025-03-08T13:06:16.487059-08:00,1993.0,10.842704,10842.704 +12355,2025-03-08T13:06:27.313505-08:00,1936.0,10.826446,10826.446 +12356,2025-03-08T13:06:38.150877-08:00,1970.0,10.837372,10837.372 +12357,2025-03-08T13:06:48.992469-08:00,1936.0,10.841592,10841.592 +12358,2025-03-08T13:06:59.830795-08:00,1989.0,10.838326,10838.326 +12359,2025-03-08T13:07:10.660922-08:00,1909.0,10.830127,10830.127 +12360,2025-03-08T13:07:21.493431-08:00,1949.0,10.832509,10832.509 +12361,2025-03-08T13:07:32.337024-08:00,1905.0,10.843593,10843.593 +12362,2025-03-08T13:07:43.169887-08:00,1959.0,10.832863,10832.863 +12363,2025-03-08T13:07:54.012397-08:00,1898.0,10.84251,10842.51 +12364,2025-03-08T13:08:04.842871-08:00,1946.0,10.830474,10830.474 +12365,2025-03-08T13:08:15.676880-08:00,1914.0,10.834009,10834.009 +12366,2025-03-08T13:08:26.514622-08:00,1952.0,10.837742,10837.742 +12367,2025-03-08T13:08:37.340289-08:00,1903.0,10.825667,10825.667 +12368,2025-03-08T13:08:48.183709-08:00,1904.0,10.84342,10843.42 +12369,2025-03-08T13:08:59.018878-08:00,1987.0,10.835169,10835.169 +12370,2025-03-08T13:09:09.851382-08:00,1939.0,10.832504,10832.504 +12371,2025-03-08T13:09:20.683119-08:00,1933.0,10.831737,10831.737 +12372,2025-03-08T13:09:31.523204-08:00,1933.0,10.840085,10840.085 +12373,2025-03-08T13:09:42.352876-08:00,1990.0,10.829672,10829.672 +12374,2025-03-08T13:09:53.194917-08:00,1986.0,10.842041,10842.041 +12375,2025-03-08T13:10:04.021110-08:00,1981.0,10.826193,10826.193 +12376,2025-03-08T13:10:14.858260-08:00,1939.0,10.83715,10837.15 +12377,2025-03-08T13:10:25.700991-08:00,1990.0,10.842731,10842.731 +12378,2025-03-08T13:10:36.538082-08:00,1970.0,10.837091,10837.091 +12379,2025-03-08T13:10:47.367165-08:00,1979.0,10.829083,10829.083 +12380,2025-03-08T13:10:58.201203-08:00,1931.0,10.834038,10834.038 +12381,2025-03-08T13:11:09.034193-08:00,1922.0,10.83299,10832.99 +12382,2025-03-08T13:11:19.877718-08:00,1915.0,10.843525,10843.525 +12383,2025-03-08T13:11:30.699933-08:00,1983.0,10.822215,10822.215 +12384,2025-03-08T13:11:41.540866-08:00,1926.0,10.840933,10840.933 +12385,2025-03-08T13:11:52.361870-08:00,1990.0,10.821004,10821.004 +12386,2025-03-08T13:12:03.194678-08:00,1979.0,10.832808,10832.808 +12387,2025-03-08T13:12:14.025057-08:00,1970.0,10.830379,10830.379 +12388,2025-03-08T13:12:24.850790-08:00,1903.0,10.825733,10825.733 +12389,2025-03-08T13:12:35.682248-08:00,1966.0,10.831458,10831.458 +12390,2025-03-08T13:12:46.519890-08:00,1929.0,10.837642,10837.642 +12391,2025-03-08T13:12:57.350931-08:00,1940.0,10.831041,10831.041 +12392,2025-03-08T13:13:08.185314-08:00,1995.0,10.834383,10834.383 +12393,2025-03-08T13:13:19.027420-08:00,1949.0,10.842106,10842.106 +12394,2025-03-08T13:13:29.858872-08:00,1990.0,10.831452,10831.452 +12395,2025-03-08T13:13:40.691054-08:00,1906.0,10.832182,10832.182 +12396,2025-03-08T13:13:51.516130-08:00,1987.0,10.825076,10825.076 +12397,2025-03-08T13:14:02.341754-08:00,1996.0,10.825624,10825.624 +12398,2025-03-08T13:14:13.178209-08:00,1990.0,10.836455,10836.455 +12399,2025-03-08T13:14:24.005859-08:00,1909.0,10.82765,10827.65 +12400,2025-03-08T13:14:34.838104-08:00,1937.0,10.832245,10832.245 +12401,2025-03-08T13:14:45.673874-08:00,1940.0,10.83577,10835.77 +12402,2025-03-08T13:14:56.501029-08:00,1930.0,10.827155,10827.155 +12403,2025-03-08T13:15:07.323880-08:00,1983.0,10.822851,10822.851 +12404,2025-03-08T13:15:18.157015-08:00,1978.0,10.833135,10833.135 +12405,2025-03-08T13:15:28.990178-08:00,1936.0,10.833163,10833.163 +12406,2025-03-08T13:15:39.820441-08:00,1991.0,10.830263,10830.263 +12407,2025-03-08T13:15:50.664016-08:00,1923.0,10.843575,10843.575 +12408,2025-03-08T13:16:01.491165-08:00,1984.0,10.827149,10827.149 +12409,2025-03-08T13:16:12.327921-08:00,1941.0,10.836756,10836.756 +12410,2025-03-08T13:16:23.149223-08:00,1967.0,10.821302,10821.302 +12411,2025-03-08T13:16:33.991416-08:00,1910.0,10.842193,10842.193 +12412,2025-03-08T13:16:44.817121-08:00,1919.0,10.825705,10825.705 +12413,2025-03-08T13:16:55.650229-08:00,1995.0,10.833108,10833.108 +12414,2025-03-08T13:17:06.486874-08:00,1995.0,10.836645,10836.645 +12415,2025-03-08T13:17:17.317249-08:00,1961.0,10.830375,10830.375 +12416,2025-03-08T13:17:28.144310-08:00,1945.0,10.827061,10827.061 +12417,2025-03-08T13:17:38.981877-08:00,1921.0,10.837567,10837.567 +12418,2025-03-08T13:17:49.823190-08:00,1919.0,10.841313,10841.313 +12419,2025-03-08T13:18:00.656028-08:00,1949.0,10.832838,10832.838 +12420,2025-03-08T13:18:11.488190-08:00,1911.0,10.832162,10832.162 +12421,2025-03-08T13:18:22.313868-08:00,1990.0,10.825678,10825.678 +12422,2025-03-08T13:18:33.149857-08:00,1984.0,10.835989,10835.989 +12423,2025-03-08T13:18:43.986174-08:00,1923.0,10.836317,10836.317 +12424,2025-03-08T13:18:54.823275-08:00,1984.0,10.837101,10837.101 +12425,2025-03-08T13:19:05.657160-08:00,1970.0,10.833885,10833.885 +12426,2025-03-08T13:19:16.490019-08:00,1941.0,10.832859,10832.859 +12427,2025-03-08T13:19:27.330124-08:00,1920.0,10.840105,10840.105 +12428,2025-03-08T13:19:38.162219-08:00,1971.0,10.832095,10832.095 +12429,2025-03-08T13:19:48.996064-08:00,1994.0,10.833845,10833.845 +12430,2025-03-08T13:19:59.833858-08:00,1922.0,10.837794,10837.794 +12431,2025-03-08T13:20:10.663087-08:00,1922.0,10.829229,10829.229 +12432,2025-03-08T13:20:21.499410-08:00,1959.0,10.836323,10836.323 +12433,2025-03-08T13:20:32.328984-08:00,1993.0,10.829574,10829.574 +12434,2025-03-08T13:20:43.160877-08:00,1951.0,10.831893,10831.893 +12435,2025-03-08T13:20:54.004319-08:00,1987.0,10.843442,10843.442 +12436,2025-03-08T13:21:04.841381-08:00,1990.0,10.837062,10837.062 +12437,2025-03-08T13:21:15.670872-08:00,1938.0,10.829491,10829.491 +12438,2025-03-08T13:21:26.512129-08:00,1980.0,10.841257,10841.257 +12439,2025-03-08T13:21:37.356226-08:00,1946.0,10.844097,10844.097 +12440,2025-03-08T13:21:48.183855-08:00,1950.0,10.827629,10827.629 +12441,2025-03-08T13:21:59.021645-08:00,1934.0,10.83779,10837.79 +12442,2025-03-08T13:22:09.842166-08:00,1974.0,10.820521,10820.521 +12443,2025-03-08T13:22:20.680872-08:00,1993.0,10.838706,10838.706 +12444,2025-03-08T13:22:31.515049-08:00,1930.0,10.834177,10834.177 +12445,2025-03-08T13:22:42.356123-08:00,1939.0,10.841074,10841.074 +12446,2025-03-08T13:22:53.198128-08:00,1942.0,10.842005,10842.005 +12447,2025-03-08T13:23:04.028067-08:00,1983.0,10.829939,10829.939 +12448,2025-03-08T13:23:14.866142-08:00,1985.0,10.838075,10838.075 +12449,2025-03-08T13:23:25.708965-08:00,1981.0,10.842823,10842.823 +12450,2025-03-08T13:23:36.543084-08:00,1968.0,10.834119,10834.119 +12451,2025-03-08T13:23:47.373278-08:00,1994.0,10.830194,10830.194 +12452,2025-03-08T13:23:58.214288-08:00,1991.0,10.84101,10841.01 +12453,2025-03-08T13:24:09.045874-08:00,1920.0,10.831586,10831.586 +12454,2025-03-08T13:24:19.886044-08:00,1934.0,10.84017,10840.17 +12455,2025-03-08T13:24:30.724414-08:00,1953.0,10.83837,10838.37 +12456,2025-03-08T13:24:41.562180-08:00,1995.0,10.837766,10837.766 +12457,2025-03-08T13:24:52.383312-08:00,1961.0,10.821132,10821.132 +12458,2025-03-08T13:25:03.216120-08:00,1917.0,10.832808,10832.808 +12459,2025-03-08T13:25:14.059874-08:00,1987.0,10.843754,10843.754 +12460,2025-03-08T13:25:24.892180-08:00,1963.0,10.832306,10832.306 +12461,2025-03-08T13:25:35.725157-08:00,1966.0,10.832977,10832.977 +12462,2025-03-08T13:25:46.566978-08:00,1954.0,10.841821,10841.821 +12463,2025-03-08T13:25:57.397416-08:00,1922.0,10.830438,10830.438 +12464,2025-03-08T13:26:08.233935-08:00,1994.0,10.836519,10836.519 +12465,2025-03-08T13:26:19.071880-08:00,1995.0,10.837945,10837.945 +12466,2025-03-08T13:26:29.905046-08:00,1971.0,10.833166,10833.166 +12467,2025-03-08T13:26:40.739389-08:00,1940.0,10.834343,10834.343 +12468,2025-03-08T13:26:51.584932-08:00,1987.0,10.845543,10845.543 +12469,2025-03-08T13:27:02.410872-08:00,1991.0,10.82594,10825.94 +12470,2025-03-08T13:27:13.254882-08:00,1978.0,10.84401,10844.01 +12471,2025-03-08T13:27:24.083460-08:00,1991.0,10.828578,10828.578 +12472,2025-03-08T13:27:34.925355-08:00,1963.0,10.841895,10841.895 +12473,2025-03-08T13:27:45.761146-08:00,1968.0,10.835791,10835.791 +12474,2025-03-08T13:27:56.589099-08:00,1939.0,10.827953,10827.953 +12475,2025-03-08T13:28:07.423962-08:00,1913.0,10.834863,10834.863 +12476,2025-03-08T13:28:18.256178-08:00,1985.0,10.832216,10832.216 +12477,2025-03-08T13:28:29.100036-08:00,1947.0,10.843858,10843.858 +12478,2025-03-08T13:28:39.926182-08:00,1994.0,10.826146,10826.146 +12479,2025-03-08T13:28:50.763606-08:00,1914.0,10.837424,10837.424 +12480,2025-03-08T13:29:01.604873-08:00,1947.0,10.841267,10841.267 +12481,2025-03-08T13:29:12.445863-08:00,1950.0,10.84099,10840.99 +12482,2025-03-08T13:29:23.280176-08:00,1967.0,10.834313,10834.313 +12483,2025-03-08T13:29:34.114877-08:00,1966.0,10.834701,10834.701 +12484,2025-03-08T13:29:44.950045-08:00,1918.0,10.835168,10835.168 +12485,2025-03-08T13:29:55.786349-08:00,1941.0,10.836304,10836.304 +12486,2025-03-08T13:30:06.628049-08:00,1930.0,10.8417,10841.7 +12487,2025-03-08T13:30:17.469434-08:00,1910.0,10.841385,10841.385 +12488,2025-03-08T13:30:28.309997-08:00,1975.0,10.840563,10840.563 +12489,2025-03-08T13:30:39.148038-08:00,1940.0,10.838041,10838.041 +12490,2025-03-08T13:30:49.991862-08:00,1994.0,10.843824,10843.824 +12491,2025-03-08T13:31:00.833885-08:00,1993.0,10.842023,10842.023 +12492,2025-03-08T13:31:11.672465-08:00,1937.0,10.83858,10838.58 +12493,2025-03-08T13:31:22.504874-08:00,1979.0,10.832409,10832.409 +12494,2025-03-08T13:31:33.351062-08:00,1967.0,10.846188,10846.188 +12495,2025-03-08T13:31:44.188348-08:00,1999.0,10.837286,10837.286 +12496,2025-03-08T13:31:55.019314-08:00,1983.0,10.830966,10830.966 +12497,2025-03-08T13:32:05.857880-08:00,1997.0,10.838566,10838.566 +12498,2025-03-08T13:32:16.702178-08:00,1983.0,10.844298,10844.298 +12499,2025-03-08T13:32:27.531937-08:00,1994.0,10.829759,10829.759 +12500,2025-03-08T13:32:38.371021-08:00,1969.0,10.839084,10839.084 +12501,2025-03-08T13:32:49.203143-08:00,1987.0,10.832122,10832.122 +12502,2025-03-08T13:33:00.034990-08:00,1968.0,10.831847,10831.847 +12503,2025-03-08T13:33:10.878874-08:00,1994.0,10.843884,10843.884 +12504,2025-03-08T13:33:21.709167-08:00,1979.0,10.830293,10830.293 +12505,2025-03-08T13:33:32.555868-08:00,1973.0,10.846701,10846.701 +12506,2025-03-08T13:33:43.390267-08:00,1941.0,10.834399,10834.399 +12507,2025-03-08T13:33:54.231230-08:00,1995.0,10.840963,10840.963 +12508,2025-03-08T13:34:05.065855-08:00,1954.0,10.834625,10834.625 +12509,2025-03-08T13:34:15.908136-08:00,1923.0,10.842281,10842.281 +12510,2025-03-08T13:34:26.746213-08:00,1904.0,10.838077,10838.077 +12511,2025-03-08T13:34:37.583996-08:00,1977.0,10.837783,10837.783 +12512,2025-03-08T13:34:48.426051-08:00,1916.0,10.842055,10842.055 +12513,2025-03-08T13:34:59.269148-08:00,1971.0,10.843097,10843.097 +12514,2025-03-08T13:35:10.100905-08:00,1941.0,10.831757,10831.757 +12515,2025-03-08T13:35:20.946871-08:00,1904.0,10.845966,10845.966 +12516,2025-03-08T13:35:31.787342-08:00,1953.0,10.840471,10840.471 +12517,2025-03-08T13:35:42.633872-08:00,1917.0,10.84653,10846.53 +12518,2025-03-08T13:35:53.468129-08:00,1991.0,10.834257,10834.257 +12519,2025-03-08T13:36:04.309845-08:00,1995.0,10.841716,10841.716 +12520,2025-03-08T13:36:15.153878-08:00,1923.0,10.844033,10844.033 +12521,2025-03-08T13:36:25.997288-08:00,1943.0,10.84341,10843.41 +12522,2025-03-08T13:36:36.835912-08:00,1921.0,10.838624,10838.624 +12523,2025-03-08T13:36:47.676872-08:00,1954.0,10.84096,10840.96 +12524,2025-03-08T13:36:58.512481-08:00,1919.0,10.835609,10835.609 +12525,2025-03-08T13:37:09.362280-08:00,1969.0,10.849799,10849.799 +12526,2025-03-08T13:37:20.192873-08:00,1993.0,10.830593,10830.593 +12527,2025-03-08T13:37:31.036861-08:00,1918.0,10.843988,10843.988 +12528,2025-03-08T13:37:41.875025-08:00,1950.0,10.838164,10838.164 +12529,2025-03-08T13:37:52.724284-08:00,1965.0,10.849259,10849.259 +12530,2025-03-08T13:38:03.554851-08:00,1983.0,10.830567,10830.567 +12531,2025-03-08T13:38:14.401876-08:00,1989.0,10.847025,10847.025 +12532,2025-03-08T13:38:25.231937-08:00,1982.0,10.830061,10830.061 +12533,2025-03-08T13:38:36.068108-08:00,1995.0,10.836171,10836.171 +12534,2025-03-08T13:38:46.912933-08:00,1936.0,10.844825,10844.825 +12535,2025-03-08T13:38:57.758875-08:00,1954.0,10.845942,10845.942 +12536,2025-03-08T13:39:08.592040-08:00,1909.0,10.833165,10833.165 +12537,2025-03-08T13:39:19.440284-08:00,1967.0,10.848244,10848.244 +12538,2025-03-08T13:39:30.279880-08:00,1910.0,10.839596,10839.596 +12539,2025-03-08T13:39:41.122205-08:00,1951.0,10.842325,10842.325 +12540,2025-03-08T13:39:51.960861-08:00,1993.0,10.838656,10838.656 +12541,2025-03-08T13:40:02.793879-08:00,1939.0,10.833018,10833.018 +12542,2025-03-08T13:40:13.639878-08:00,1950.0,10.845999,10845.999 +12543,2025-03-08T13:40:24.479205-08:00,1936.0,10.839327,10839.327 +12544,2025-03-08T13:40:35.316952-08:00,1995.0,10.837747,10837.747 +12545,2025-03-08T13:40:46.157108-08:00,1969.0,10.840156,10840.156 +12546,2025-03-08T13:40:57.001226-08:00,1935.0,10.844118,10844.118 +12547,2025-03-08T13:41:07.854643-08:00,1903.0,10.853417,10853.417 +12548,2025-03-08T13:41:18.695731-08:00,1920.0,10.841088,10841.088 +12549,2025-03-08T13:41:29.529947-08:00,1919.0,10.834216,10834.216 +12550,2025-03-08T13:41:40.372013-08:00,1965.0,10.842066,10842.066 +12551,2025-03-08T13:41:51.215186-08:00,1930.0,10.843173,10843.173 +12552,2025-03-08T13:42:02.059167-08:00,1959.0,10.843981,10843.981 +12553,2025-03-08T13:42:12.891877-08:00,1987.0,10.83271,10832.71 +12554,2025-03-08T13:42:23.729127-08:00,1936.0,10.83725,10837.25 +12555,2025-03-08T13:42:34.571846-08:00,1991.0,10.842719,10842.719 +12556,2025-03-08T13:42:45.413873-08:00,1993.0,10.842027,10842.027 +12557,2025-03-08T13:43:07.099949-08:00,1991.0,21.686076,21686.076 +12558,2025-03-08T13:43:17.925864-08:00,1935.0,10.825915,10825.915 +12559,2025-03-08T13:43:28.771117-08:00,1936.0,10.845253,10845.253 +12560,2025-03-08T13:43:39.613340-08:00,1964.0,10.842223,10842.223 +12561,2025-03-08T13:43:50.453715-08:00,1986.0,10.840375,10840.375 +12562,2025-03-08T13:44:01.286024-08:00,1981.0,10.832309,10832.309 +12563,2025-03-08T13:44:12.130878-08:00,1987.0,10.844854,10844.854 +12564,2025-03-08T13:44:22.972482-08:00,1982.0,10.841604,10841.604 +12565,2025-03-08T13:44:33.805913-08:00,1993.0,10.833431,10833.431 +12566,2025-03-08T13:44:44.650313-08:00,1957.0,10.8444,10844.4 +12567,2025-03-08T13:44:55.493119-08:00,1917.0,10.842806,10842.806 +12568,2025-03-08T13:45:06.335808-08:00,1997.0,10.842689,10842.689 +12569,2025-03-08T13:45:17.165161-08:00,1969.0,10.829353,10829.353 +12570,2025-03-08T13:45:28.010962-08:00,1983.0,10.845801,10845.801 +12571,2025-03-08T13:45:38.851182-08:00,1967.0,10.84022,10840.22 +12572,2025-03-08T13:45:49.688873-08:00,1990.0,10.837691,10837.691 +12573,2025-03-08T13:46:00.524268-08:00,1966.0,10.835395,10835.395 +12574,2025-03-08T13:46:11.360308-08:00,1963.0,10.83604,10836.04 +12575,2025-03-08T13:46:22.208094-08:00,1968.0,10.847786,10847.786 +12576,2025-03-08T13:46:33.044855-08:00,1968.0,10.836761,10836.761 +12577,2025-03-08T13:46:43.883129-08:00,1987.0,10.838274,10838.274 +12578,2025-03-08T13:46:54.730191-08:00,1942.0,10.847062,10847.062 +12579,2025-03-08T13:47:05.568878-08:00,1960.0,10.838687,10838.687 +12580,2025-03-08T13:47:16.408546-08:00,1990.0,10.839668,10839.668 +12581,2025-03-08T13:47:27.250270-08:00,1917.0,10.841724,10841.724 +12582,2025-03-08T13:47:38.099584-08:00,1957.0,10.849314,10849.314 +12583,2025-03-08T13:47:48.934690-08:00,1939.0,10.835106,10835.106 +12584,2025-03-08T13:47:59.777878-08:00,1907.0,10.843188,10843.188 +12585,2025-03-08T13:48:10.616878-08:00,1904.0,10.839,10839.0 +12586,2025-03-08T13:48:21.459253-08:00,1993.0,10.842375,10842.375 +12587,2025-03-08T13:48:32.292207-08:00,1987.0,10.832954,10832.954 +12588,2025-03-08T13:48:43.140903-08:00,1911.0,10.848696,10848.696 +12589,2025-03-08T13:48:53.983178-08:00,1951.0,10.842275,10842.275 +12590,2025-03-08T13:49:04.828149-08:00,1998.0,10.844971,10844.971 +12591,2025-03-08T13:49:15.669878-08:00,1913.0,10.841729,10841.729 +12592,2025-03-08T13:49:26.506874-08:00,1979.0,10.836996,10836.996 +12593,2025-03-08T13:49:37.344277-08:00,1968.0,10.837403,10837.403 +12594,2025-03-08T13:49:48.186019-08:00,1985.0,10.841742,10841.742 +12595,2025-03-08T13:49:59.029881-08:00,1983.0,10.843862,10843.862 +12596,2025-03-08T13:50:09.867936-08:00,1971.0,10.838055,10838.055 +12597,2025-03-08T13:50:20.712354-08:00,1948.0,10.844418,10844.418 +12598,2025-03-08T13:50:31.547867-08:00,1990.0,10.835513,10835.513 +12599,2025-03-08T13:50:42.398184-08:00,1995.0,10.850317,10850.317 +12600,2025-03-08T13:50:53.234878-08:00,1919.0,10.836694,10836.694 +12601,2025-03-08T13:51:04.074213-08:00,1955.0,10.839335,10839.335 +12602,2025-03-08T13:51:14.910117-08:00,1991.0,10.835904,10835.904 +12603,2025-03-08T13:51:25.751869-08:00,1965.0,10.841752,10841.752 +12604,2025-03-08T13:51:36.600413-08:00,1996.0,10.848544,10848.544 +12605,2025-03-08T13:51:47.438955-08:00,1939.0,10.838542,10838.542 +12606,2025-03-08T13:51:58.279872-08:00,1981.0,10.840917,10840.917 +12607,2025-03-08T13:52:09.121272-08:00,1936.0,10.8414,10841.4 +12608,2025-03-08T13:52:19.952485-08:00,1981.0,10.831213,10831.213 +12609,2025-03-08T13:52:30.795871-08:00,1952.0,10.843386,10843.386 +12610,2025-03-08T13:52:41.630112-08:00,1926.0,10.834241,10834.241 +12611,2025-03-08T13:52:52.473855-08:00,1962.0,10.843743,10843.743 +12612,2025-03-08T13:53:03.316997-08:00,1995.0,10.843142,10843.142 +12613,2025-03-08T13:53:14.155873-08:00,1997.0,10.838876,10838.876 +12614,2025-03-08T13:53:24.993925-08:00,1987.0,10.838052,10838.052 +12615,2025-03-08T13:53:35.840998-08:00,1984.0,10.847073,10847.073 +12616,2025-03-08T13:53:46.685330-08:00,1957.0,10.844332,10844.332 +12617,2025-03-08T13:53:57.523209-08:00,1953.0,10.837879,10837.879 +12618,2025-03-08T13:54:08.371076-08:00,1983.0,10.847867,10847.867 +12619,2025-03-08T13:54:19.214275-08:00,1979.0,10.843199,10843.199 +12620,2025-03-08T13:54:30.044873-08:00,1968.0,10.830598,10830.598 +12621,2025-03-08T13:54:40.891884-08:00,1927.0,10.847011,10847.011 +12622,2025-03-08T13:54:51.735940-08:00,1993.0,10.844056,10844.056 +12623,2025-03-08T13:55:02.579065-08:00,1970.0,10.843125,10843.125 +12624,2025-03-08T13:55:13.419002-08:00,1911.0,10.839937,10839.937 +12625,2025-03-08T13:55:24.263878-08:00,1954.0,10.844876,10844.876 +12626,2025-03-08T13:55:35.113027-08:00,1995.0,10.849149,10849.149 +12627,2025-03-08T13:55:45.948867-08:00,1943.0,10.83584,10835.84 +12628,2025-03-08T13:55:56.796642-08:00,1953.0,10.847775,10847.775 +12629,2025-03-08T13:56:07.638476-08:00,1941.0,10.841834,10841.834 +12630,2025-03-08T13:56:18.477063-08:00,1948.0,10.838587,10838.587 +12631,2025-03-08T13:56:29.323862-08:00,1984.0,10.846799,10846.799 +12632,2025-03-08T13:56:40.151870-08:00,1994.0,10.828008,10828.008 +12633,2025-03-08T13:56:51.000069-08:00,1987.0,10.848199,10848.199 +12634,2025-03-08T13:57:01.834010-08:00,1994.0,10.833941,10833.941 +12635,2025-03-08T13:57:12.680957-08:00,1958.0,10.846947,10846.947 +12636,2025-03-08T13:57:23.519588-08:00,1950.0,10.838631,10838.631 +12637,2025-03-08T13:57:34.357876-08:00,1969.0,10.838288,10838.288 +12638,2025-03-08T13:57:45.189128-08:00,1994.0,10.831252,10831.252 +12639,2025-03-08T13:57:56.030354-08:00,1983.0,10.841226,10841.226 +12640,2025-03-08T13:58:06.867877-08:00,2000.0,10.837523,10837.523 +12641,2025-03-08T13:58:17.713010-08:00,1955.0,10.845133,10845.133 +12642,2025-03-08T13:58:28.559204-08:00,1997.0,10.846194,10846.194 +12643,2025-03-08T13:58:39.391176-08:00,1968.0,10.831972,10831.972 +12644,2025-03-08T13:58:50.235953-08:00,1956.0,10.844777,10844.777 +12645,2025-03-08T13:59:01.077925-08:00,1946.0,10.841972,10841.972 +12646,2025-03-08T13:59:11.917176-08:00,1997.0,10.839251,10839.251 +12647,2025-03-08T13:59:22.758254-08:00,1945.0,10.841078,10841.078 +12648,2025-03-08T13:59:33.605083-08:00,1989.0,10.846829,10846.829 +12649,2025-03-08T13:59:44.438157-08:00,1952.0,10.833074,10833.074 +12650,2025-03-08T13:59:55.286205-08:00,1991.0,10.848048,10848.048 +12651,2025-03-08T14:00:06.124864-08:00,1967.0,10.838659,10838.659 +12652,2025-03-08T14:00:16.961878-08:00,1988.0,10.837014,10837.014 +12653,2025-03-08T14:00:27.799904-08:00,1995.0,10.838026,10838.026 +12654,2025-03-08T14:00:38.645191-08:00,1991.0,10.845287,10845.287 +12655,2025-03-08T14:00:49.486934-08:00,1954.0,10.841743,10841.743 +12656,2025-03-08T14:01:00.319121-08:00,1948.0,10.832187,10832.187 +12657,2025-03-08T14:01:11.160062-08:00,1942.0,10.840941,10840.941 +12658,2025-03-08T14:01:21.993872-08:00,1958.0,10.83381,10833.81 +12659,2025-03-08T14:01:32.841867-08:00,1994.0,10.847995,10847.995 +12660,2025-03-08T14:01:43.683878-08:00,1921.0,10.842011,10842.011 +12661,2025-03-08T14:01:54.523296-08:00,1920.0,10.839418,10839.418 +12662,2025-03-08T14:02:05.356884-08:00,1904.0,10.833588,10833.588 +12663,2025-03-08T14:02:16.205108-08:00,1999.0,10.848224,10848.224 +12664,2025-03-08T14:02:27.047205-08:00,1987.0,10.842097,10842.097 +12665,2025-03-08T14:02:37.893823-08:00,1919.0,10.846618,10846.618 +12666,2025-03-08T14:02:48.727852-08:00,1997.0,10.834029,10834.029 +12667,2025-03-08T14:02:59.564864-08:00,1926.0,10.837012,10837.012 +12668,2025-03-08T14:03:10.406461-08:00,1990.0,10.841597,10841.597 +12669,2025-03-08T14:03:21.259225-08:00,1949.0,10.852764,10852.764 +12670,2025-03-08T14:03:32.096129-08:00,1998.0,10.836904,10836.904 +12671,2025-03-08T14:03:42.941871-08:00,1995.0,10.845742,10845.742 +12672,2025-03-08T14:03:53.786151-08:00,1958.0,10.84428,10844.28 +12673,2025-03-08T14:04:04.623174-08:00,1981.0,10.837023,10837.023 +12674,2025-03-08T14:04:15.461878-08:00,1974.0,10.838704,10838.704 +12675,2025-03-08T14:04:26.304002-08:00,1963.0,10.842124,10842.124 +12676,2025-03-08T14:04:37.150019-08:00,1955.0,10.846017,10846.017 +12677,2025-03-08T14:04:47.994469-08:00,2000.0,10.84445,10844.45 +12678,2025-03-08T14:04:58.838922-08:00,1986.0,10.844453,10844.453 +12679,2025-03-08T14:05:09.685117-08:00,1981.0,10.846195,10846.195 +12680,2025-03-08T14:05:20.518874-08:00,1978.0,10.833757,10833.757 +12681,2025-03-08T14:05:31.362325-08:00,2000.0,10.843451,10843.451 +12682,2025-03-08T14:05:42.067412-08:00,1963.0,10.705087,10705.087 +12683,2025-03-08T14:05:52.904415-08:00,1965.0,10.837003,10837.003 +12684,2025-03-08T14:06:03.737642-08:00,1984.0,10.833227,10833.227 +12685,2025-03-08T14:06:14.578455-08:00,1941.0,10.840813,10840.813 +12686,2025-03-08T14:06:25.410642-08:00,1949.0,10.832187,10832.187 +12687,2025-03-08T14:06:36.243690-08:00,2000.0,10.833048,10833.048 +12688,2025-03-08T14:06:47.081285-08:00,1956.0,10.837595,10837.595 +12689,2025-03-08T14:06:57.919430-08:00,1959.0,10.838145,10838.145 +12690,2025-03-08T14:07:08.755426-08:00,1985.0,10.835996,10835.996 +12691,2025-03-08T14:07:19.598510-08:00,1993.0,10.843084,10843.084 +12692,2025-03-08T14:07:30.442427-08:00,1919.0,10.843917,10843.917 +12693,2025-03-08T14:07:41.280001-08:00,1953.0,10.837574,10837.574 +12694,2025-03-08T14:07:52.122689-08:00,1954.0,10.842688,10842.688 +12695,2025-03-08T14:08:02.966404-08:00,1966.0,10.843715,10843.715 +12696,2025-03-08T14:08:13.815423-08:00,1929.0,10.849019,10849.019 +12697,2025-03-08T14:08:24.656404-08:00,1994.0,10.840981,10840.981 +12698,2025-03-08T14:08:35.493725-08:00,1958.0,10.837321,10837.321 +12699,2025-03-08T14:08:46.336866-08:00,1991.0,10.843141,10843.141 +12700,2025-03-08T14:08:57.180667-08:00,2000.0,10.843801,10843.801 +12701,2025-03-08T14:09:08.018414-08:00,1968.0,10.837747,10837.747 +12702,2025-03-08T14:09:18.865744-08:00,1965.0,10.84733,10847.33 +12703,2025-03-08T14:09:29.698457-08:00,1941.0,10.832713,10832.713 +12704,2025-03-08T14:09:40.537427-08:00,1985.0,10.83897,10838.97 +12705,2025-03-08T14:09:51.386003-08:00,1957.0,10.848576,10848.576 +12706,2025-03-08T14:10:02.227809-08:00,1996.0,10.841806,10841.806 +12707,2025-03-08T14:10:13.070530-08:00,1904.0,10.842721,10842.721 +12708,2025-03-08T14:10:23.915069-08:00,1998.0,10.844539,10844.539 +12709,2025-03-08T14:10:34.746659-08:00,1953.0,10.83159,10831.59 +12710,2025-03-08T14:10:45.599808-08:00,1999.0,10.853149,10853.149 +12711,2025-03-08T14:10:56.431415-08:00,1942.0,10.831607,10831.607 +12712,2025-03-08T14:11:07.269421-08:00,1932.0,10.838006,10838.006 +12713,2025-03-08T14:11:18.110729-08:00,2000.0,10.841308,10841.308 +12714,2025-03-08T14:11:28.946420-08:00,1941.0,10.835691,10835.691 +12715,2025-03-08T14:11:39.780653-08:00,1989.0,10.834233,10834.233 +12716,2025-03-08T14:11:50.631533-08:00,1987.0,10.85088,10850.88 +12717,2025-03-08T14:12:01.467700-08:00,1947.0,10.836167,10836.167 +12718,2025-03-08T14:12:12.297410-08:00,1923.0,10.82971,10829.71 +12719,2025-03-08T14:12:23.140648-08:00,1962.0,10.843238,10843.238 +12720,2025-03-08T14:12:33.973916-08:00,1955.0,10.833268,10833.268 +12721,2025-03-08T14:12:44.816650-08:00,1991.0,10.842734,10842.734 +12722,2025-03-08T14:12:55.649779-08:00,1907.0,10.833129,10833.129 +12723,2025-03-08T14:13:06.492566-08:00,1937.0,10.842787,10842.787 +12724,2025-03-08T14:13:17.334418-08:00,1998.0,10.841852,10841.852 +12725,2025-03-08T14:13:28.173427-08:00,1961.0,10.839009,10839.009 +12726,2025-03-08T14:13:39.025693-08:00,1925.0,10.852266,10852.266 +12727,2025-03-08T14:13:49.864762-08:00,1919.0,10.839069,10839.069 +12728,2025-03-08T14:14:00.703576-08:00,2000.0,10.838814,10838.814 +12729,2025-03-08T14:14:11.549427-08:00,1991.0,10.845851,10845.851 +12730,2025-03-08T14:14:22.393754-08:00,1975.0,10.844327,10844.327 +12731,2025-03-08T14:14:33.231386-08:00,1980.0,10.837632,10837.632 +12732,2025-03-08T14:14:44.076421-08:00,1997.0,10.845035,10845.035 +12733,2025-03-08T14:14:54.913460-08:00,2000.0,10.837039,10837.039 +12734,2025-03-08T14:15:05.750423-08:00,1970.0,10.836963,10836.963 +12735,2025-03-08T14:15:16.593997-08:00,1958.0,10.843574,10843.574 +12736,2025-03-08T14:15:27.426426-08:00,1927.0,10.832429,10832.429 +12737,2025-03-08T14:15:38.260838-08:00,1925.0,10.834412,10834.412 +12738,2025-03-08T14:15:49.104768-08:00,1978.0,10.84393,10843.93 +12739,2025-03-08T14:15:59.936417-08:00,1995.0,10.831649,10831.649 +12740,2025-03-08T14:16:10.779424-08:00,1994.0,10.843007,10843.007 +12741,2025-03-08T14:16:21.611823-08:00,2001.0,10.832399,10832.399 +12742,2025-03-08T14:16:32.449434-08:00,1967.0,10.837611,10837.611 +12743,2025-03-08T14:16:43.291472-08:00,1951.0,10.842038,10842.038 +12744,2025-03-08T14:16:54.129554-08:00,1907.0,10.838082,10838.082 +12745,2025-03-08T14:17:04.974423-08:00,1909.0,10.844869,10844.869 +12746,2025-03-08T14:17:15.815701-08:00,1983.0,10.841278,10841.278 +12747,2025-03-08T14:17:26.657419-08:00,1983.0,10.841718,10841.718 +12748,2025-03-08T14:17:37.510739-08:00,1990.0,10.85332,10853.32 +12749,2025-03-08T14:17:48.356904-08:00,2001.0,10.846165,10846.165 +12750,2025-03-08T14:17:59.188425-08:00,1950.0,10.831521,10831.521 +12751,2025-03-08T14:18:10.031427-08:00,2005.0,10.843002,10843.002 +12752,2025-03-08T14:18:20.873733-08:00,1977.0,10.842306,10842.306 +12753,2025-03-08T14:18:31.711798-08:00,1955.0,10.838065,10838.065 +12754,2025-03-08T14:18:42.550489-08:00,1999.0,10.838691,10838.691 +12755,2025-03-08T14:18:53.386703-08:00,1961.0,10.836214,10836.214 +12756,2025-03-08T14:19:04.233048-08:00,1956.0,10.846345,10846.345 +12757,2025-03-08T14:19:15.072423-08:00,1963.0,10.839375,10839.375 +12758,2025-03-08T14:19:25.909694-08:00,1932.0,10.837271,10837.271 +12759,2025-03-08T14:19:36.750621-08:00,2000.0,10.840927,10840.927 +12760,2025-03-08T14:19:47.595830-08:00,1969.0,10.845209,10845.209 +12761,2025-03-08T14:19:58.435677-08:00,1993.0,10.839847,10839.847 +12762,2025-03-08T14:20:09.281427-08:00,1949.0,10.84575,10845.75 +12763,2025-03-08T14:20:20.115729-08:00,1952.0,10.834302,10834.302 +12764,2025-03-08T14:20:30.955599-08:00,2000.0,10.83987,10839.87 +12765,2025-03-08T14:20:41.801469-08:00,1991.0,10.84587,10845.87 +12766,2025-03-08T14:20:52.637483-08:00,1949.0,10.836014,10836.014 +12767,2025-03-08T14:21:03.475003-08:00,1999.0,10.83752,10837.52 +12768,2025-03-08T14:21:14.308474-08:00,1999.0,10.833471,10833.471 +12769,2025-03-08T14:21:25.155648-08:00,1990.0,10.847174,10847.174 +12770,2025-03-08T14:21:35.986937-08:00,1992.0,10.831289,10831.289 +12771,2025-03-08T14:21:46.830586-08:00,1920.0,10.843649,10843.649 +12772,2025-03-08T14:21:57.668669-08:00,1928.0,10.838083,10838.083 +12773,2025-03-08T14:22:08.506941-08:00,2001.0,10.838272,10838.272 +12774,2025-03-08T14:22:19.346427-08:00,1923.0,10.839486,10839.486 +12775,2025-03-08T14:22:30.195728-08:00,1919.0,10.849301,10849.301 +12776,2025-03-08T14:22:41.034420-08:00,1936.0,10.838692,10838.692 +12777,2025-03-08T14:22:51.868811-08:00,1933.0,10.834391,10834.391 +12778,2025-03-08T14:23:02.715464-08:00,1965.0,10.846653,10846.653 +12779,2025-03-08T14:23:13.542423-08:00,1906.0,10.826959,10826.959 +12780,2025-03-08T14:23:24.394643-08:00,1920.0,10.85222,10852.22 +12781,2025-03-08T14:23:35.234661-08:00,2000.0,10.840018,10840.018 +12782,2025-03-08T14:23:46.069422-08:00,1953.0,10.834761,10834.761 +12783,2025-03-08T14:23:56.907470-08:00,2000.0,10.838048,10838.048 +12784,2025-03-08T14:24:07.746155-08:00,2000.0,10.838685,10838.685 +12785,2025-03-08T14:24:18.587404-08:00,1982.0,10.841249,10841.249 +12786,2025-03-08T14:24:29.426644-08:00,1939.0,10.83924,10839.24 +12787,2025-03-08T14:24:40.274648-08:00,1986.0,10.848004,10848.004 +12788,2025-03-08T14:24:51.113309-08:00,2000.0,10.838661,10838.661 +12789,2025-03-08T14:25:01.949424-08:00,2000.0,10.836115,10836.115 +12790,2025-03-08T14:25:12.797458-08:00,1929.0,10.848034,10848.034 +12791,2025-03-08T14:25:23.629764-08:00,1981.0,10.832306,10832.306 +12792,2025-03-08T14:25:34.476580-08:00,1967.0,10.846816,10846.816 +12793,2025-03-08T14:25:45.317659-08:00,1996.0,10.841079,10841.079 +12794,2025-03-08T14:25:56.154654-08:00,1982.0,10.836995,10836.995 +12795,2025-03-08T14:26:07.002791-08:00,2003.0,10.848137,10848.137 +12796,2025-03-08T14:26:17.836401-08:00,1936.0,10.83361,10833.61 +12797,2025-03-08T14:26:28.684261-08:00,2001.0,10.84786,10847.86 +12798,2025-03-08T14:26:39.523675-08:00,1993.0,10.839414,10839.414 +12799,2025-03-08T14:26:50.354474-08:00,1962.0,10.830799,10830.799 +12800,2025-03-08T14:27:01.202476-08:00,1959.0,10.848002,10848.002 +12801,2025-03-08T14:27:12.038063-08:00,1924.0,10.835587,10835.587 +12802,2025-03-08T14:27:22.881748-08:00,1938.0,10.843685,10843.685 +12803,2025-03-08T14:27:33.723669-08:00,1962.0,10.841921,10841.921 +12804,2025-03-08T14:27:44.573748-08:00,2000.0,10.850079,10850.079 +12805,2025-03-08T14:27:55.414404-08:00,1993.0,10.840656,10840.656 +12806,2025-03-08T14:28:06.250420-08:00,2001.0,10.836016,10836.016 +12807,2025-03-08T14:28:17.091207-08:00,1951.0,10.840787,10840.787 +12808,2025-03-08T14:28:27.928427-08:00,1957.0,10.83722,10837.22 +12809,2025-03-08T14:28:38.772683-08:00,2000.0,10.844256,10844.256 +12810,2025-03-08T14:28:49.601306-08:00,1954.0,10.828623,10828.623 +12811,2025-03-08T14:29:00.443560-08:00,1993.0,10.842254,10842.254 +12812,2025-03-08T14:29:11.278610-08:00,1997.0,10.83505,10835.05 +12813,2025-03-08T14:29:22.121793-08:00,2000.0,10.843183,10843.183 +12814,2025-03-08T14:29:32.962548-08:00,1968.0,10.840755,10840.755 +12815,2025-03-08T14:29:43.796931-08:00,1979.0,10.834383,10834.383 +12816,2025-03-08T14:29:54.639959-08:00,1933.0,10.843028,10843.028 +12817,2025-03-08T14:30:05.477658-08:00,1974.0,10.837699,10837.699 +12818,2025-03-08T14:30:16.320424-08:00,1993.0,10.842766,10842.766 +12819,2025-03-08T14:30:27.169419-08:00,1998.0,10.848995,10848.995 +12820,2025-03-08T14:30:38.007430-08:00,1947.0,10.838011,10838.011 +12821,2025-03-08T14:30:48.854696-08:00,1949.0,10.847266,10847.266 +12822,2025-03-08T14:30:59.693793-08:00,1952.0,10.839097,10839.097 +12823,2025-03-08T14:31:10.529924-08:00,1924.0,10.836131,10836.131 +12824,2025-03-08T14:31:21.378464-08:00,2001.0,10.84854,10848.54 +12825,2025-03-08T14:31:32.216016-08:00,1995.0,10.837552,10837.552 +12826,2025-03-08T14:31:43.057426-08:00,1991.0,10.84141,10841.41 +12827,2025-03-08T14:31:53.899837-08:00,1989.0,10.842411,10842.411 +12828,2025-03-08T14:32:04.746432-08:00,1952.0,10.846595,10846.595 +12829,2025-03-08T14:32:15.581768-08:00,1975.0,10.835336,10835.336 +12830,2025-03-08T14:32:26.420528-08:00,2003.0,10.83876,10838.76 +12831,2025-03-08T14:32:37.262420-08:00,1919.0,10.841892,10841.892 +12832,2025-03-08T14:32:48.112028-08:00,1950.0,10.849608,10849.608 +12833,2025-03-08T14:32:58.949211-08:00,1971.0,10.837183,10837.183 +12834,2025-03-08T14:33:09.793472-08:00,1953.0,10.844261,10844.261 +12835,2025-03-08T14:33:20.630425-08:00,2003.0,10.836953,10836.953 +12836,2025-03-08T14:33:31.478420-08:00,1955.0,10.847995,10847.995 +12837,2025-03-08T14:33:42.322754-08:00,1969.0,10.844334,10844.334 +12838,2025-03-08T14:33:53.159656-08:00,2000.0,10.836902,10836.902 +12839,2025-03-08T14:34:04.007041-08:00,1987.0,10.847385,10847.385 +12840,2025-03-08T14:34:14.857501-08:00,2000.0,10.85046,10850.46 +12841,2025-03-08T14:34:25.694940-08:00,1952.0,10.837439,10837.439 +12842,2025-03-08T14:34:36.538380-08:00,1996.0,10.84344,10843.44 +12843,2025-03-08T14:34:47.385756-08:00,1922.0,10.847376,10847.376 +12844,2025-03-08T14:34:58.232421-08:00,1941.0,10.846665,10846.665 +12845,2025-03-08T14:35:09.072426-08:00,1922.0,10.840005,10840.005 +12846,2025-03-08T14:35:19.921425-08:00,1966.0,10.848999,10848.999 +12847,2025-03-08T14:35:30.759454-08:00,1927.0,10.838029,10838.029 +12848,2025-03-08T14:35:41.596683-08:00,2000.0,10.837229,10837.229 +12849,2025-03-08T14:35:52.443629-08:00,1989.0,10.846946,10846.946 +12850,2025-03-08T14:36:03.281706-08:00,1971.0,10.838077,10838.077 +12851,2025-03-08T14:36:14.126441-08:00,1987.0,10.844735,10844.735 +12852,2025-03-08T14:36:24.967405-08:00,1966.0,10.840964,10840.964 +12853,2025-03-08T14:36:35.810650-08:00,1993.0,10.843245,10843.245 +12854,2025-03-08T14:36:46.650474-08:00,2000.0,10.839824,10839.824 +12855,2025-03-08T14:36:57.496766-08:00,2001.0,10.846292,10846.292 +12856,2025-03-08T14:37:08.336715-08:00,1949.0,10.839949,10839.949 +12857,2025-03-08T14:37:19.186470-08:00,1968.0,10.849755,10849.755 +12858,2025-03-08T14:37:30.032417-08:00,1907.0,10.845947,10845.947 +12859,2025-03-08T14:37:40.881481-08:00,2001.0,10.849064,10849.064 +12860,2025-03-08T14:37:51.729815-08:00,2002.0,10.848334,10848.334 +12861,2025-03-08T14:38:02.573312-08:00,1951.0,10.843497,10843.497 +12862,2025-03-08T14:38:13.410667-08:00,1998.0,10.837355,10837.355 +12863,2025-03-08T14:38:24.264421-08:00,1937.0,10.853754,10853.754 +12864,2025-03-08T14:38:35.108654-08:00,1957.0,10.844233,10844.233 +12865,2025-03-08T14:38:45.949423-08:00,1979.0,10.840769,10840.769 +12866,2025-03-08T14:38:56.793760-08:00,1923.0,10.844337,10844.337 +12867,2025-03-08T14:39:07.637458-08:00,1983.0,10.843698,10843.698 +12868,2025-03-08T14:39:18.486404-08:00,1911.0,10.848946,10848.946 +12869,2025-03-08T14:39:29.323425-08:00,1927.0,10.837021,10837.021 +12870,2025-03-08T14:39:40.173453-08:00,1965.0,10.850028,10850.028 +12871,2025-03-08T14:39:51.020794-08:00,1986.0,10.847341,10847.341 +12872,2025-03-08T14:40:01.848416-08:00,1981.0,10.827622,10827.622 +12873,2025-03-08T14:40:12.691417-08:00,1942.0,10.843001,10843.001 +12874,2025-03-08T14:40:23.534573-08:00,1975.0,10.843156,10843.156 +12875,2025-03-08T14:40:34.376744-08:00,2001.0,10.842171,10842.171 +12876,2025-03-08T14:40:45.225467-08:00,2000.0,10.848723,10848.723 +12877,2025-03-08T14:40:56.067433-08:00,2000.0,10.841966,10841.966 +12878,2025-03-08T14:41:06.916421-08:00,1983.0,10.848988,10848.988 +12879,2025-03-08T14:41:17.761427-08:00,1990.0,10.845006,10845.006 +12880,2025-03-08T14:41:28.608812-08:00,1958.0,10.847385,10847.385 +12881,2025-03-08T14:41:39.447418-08:00,1951.0,10.838606,10838.606 +12882,2025-03-08T14:41:50.291950-08:00,1999.0,10.844532,10844.532 +12883,2025-03-08T14:42:01.136572-08:00,1979.0,10.844622,10844.622 +12884,2025-03-08T14:42:11.977666-08:00,1971.0,10.841094,10841.094 +12885,2025-03-08T14:42:22.813458-08:00,1955.0,10.835792,10835.792 +12886,2025-03-08T14:42:33.661406-08:00,1966.0,10.847948,10847.948 +12887,2025-03-08T14:42:44.507434-08:00,2001.0,10.846028,10846.028 +12888,2025-03-08T14:42:55.341760-08:00,1962.0,10.834326,10834.326 +12889,2025-03-08T14:43:06.186260-08:00,2000.0,10.8445,10844.5 +12890,2025-03-08T14:43:17.027422-08:00,1968.0,10.841162,10841.162 +12891,2025-03-08T14:43:27.869456-08:00,1958.0,10.842034,10842.034 +12892,2025-03-08T14:43:38.714001-08:00,2000.0,10.844545,10844.545 +12893,2025-03-08T14:43:49.564669-08:00,1917.0,10.850668,10850.668 +12894,2025-03-08T14:44:00.412733-08:00,1962.0,10.848064,10848.064 +12895,2025-03-08T14:44:11.256601-08:00,1997.0,10.843868,10843.868 +12896,2025-03-08T14:44:22.099418-08:00,1956.0,10.842817,10842.817 +12897,2025-03-08T14:44:32.948459-08:00,1963.0,10.849041,10849.041 +12898,2025-03-08T14:44:43.797687-08:00,1999.0,10.849228,10849.228 +12899,2025-03-08T14:44:54.637829-08:00,2000.0,10.840142,10840.142 +12900,2025-03-08T14:45:05.482249-08:00,1998.0,10.84442,10844.42 +12901,2025-03-08T14:45:16.325423-08:00,1991.0,10.843174,10843.174 +12902,2025-03-08T14:45:27.176679-08:00,1920.0,10.851256,10851.256 +12903,2025-03-08T14:45:38.023188-08:00,2001.0,10.846509,10846.509 +12904,2025-03-08T14:45:48.867466-08:00,1991.0,10.844278,10844.278 +12905,2025-03-08T14:45:59.711724-08:00,2000.0,10.844258,10844.258 +12906,2025-03-08T14:46:10.563258-08:00,1973.0,10.851534,10851.534 +12907,2025-03-08T14:46:21.401664-08:00,2000.0,10.838406,10838.406 +12908,2025-03-08T14:46:32.251421-08:00,1929.0,10.849757,10849.757 +12909,2025-03-08T14:46:43.104405-08:00,2002.0,10.852984,10852.984 +12910,2025-03-08T14:46:53.947460-08:00,1959.0,10.843055,10843.055 +12911,2025-03-08T14:47:04.789727-08:00,2005.0,10.842267,10842.267 +12912,2025-03-08T14:47:15.634354-08:00,1934.0,10.844627,10844.627 +12913,2025-03-08T14:47:26.469468-08:00,1954.0,10.835114,10835.114 +12914,2025-03-08T14:47:37.319655-08:00,1963.0,10.850187,10850.187 +12915,2025-03-08T14:47:48.164051-08:00,1984.0,10.844396,10844.396 +12916,2025-03-08T14:47:59.002745-08:00,1963.0,10.838694,10838.694 +12917,2025-03-08T14:48:09.849553-08:00,1951.0,10.846808,10846.808 +12918,2025-03-08T14:48:20.692560-08:00,2000.0,10.843007,10843.007 +12919,2025-03-08T14:48:31.535429-08:00,1951.0,10.842869,10842.869 +12920,2025-03-08T14:48:42.372699-08:00,1990.0,10.83727,10837.27 +12921,2025-03-08T14:48:53.211023-08:00,1986.0,10.838324,10838.324 +12922,2025-03-08T14:49:04.053686-08:00,1978.0,10.842663,10842.663 +12923,2025-03-08T14:49:14.885832-08:00,1961.0,10.832146,10832.146 +12924,2025-03-08T14:49:25.729546-08:00,1983.0,10.843714,10843.714 +12925,2025-03-08T14:49:36.565615-08:00,1963.0,10.836069,10836.069 +12926,2025-03-08T14:49:47.410727-08:00,1964.0,10.845112,10845.112 +12927,2025-03-08T14:49:58.252747-08:00,1950.0,10.84202,10842.02 +12928,2025-03-08T14:50:09.097420-08:00,1988.0,10.844673,10844.673 +12929,2025-03-08T14:50:19.933417-08:00,2000.0,10.835997,10835.997 +12930,2025-03-08T14:50:30.777525-08:00,2000.0,10.844108,10844.108 +12931,2025-03-08T14:50:41.617951-08:00,1957.0,10.840426,10840.426 +12932,2025-03-08T14:50:52.461651-08:00,2001.0,10.8437,10843.7 +12933,2025-03-08T14:51:03.301605-08:00,2006.0,10.839954,10839.954 +12934,2025-03-08T14:51:14.136120-08:00,1955.0,10.834515,10834.515 +12935,2025-03-08T14:51:24.986795-08:00,2000.0,10.850675,10850.675 +12936,2025-03-08T14:51:35.828926-08:00,1935.0,10.842131,10842.131 +12937,2025-03-08T14:51:46.666427-08:00,1936.0,10.837501,10837.501 +12938,2025-03-08T14:51:57.509569-08:00,2005.0,10.843142,10843.142 +12939,2025-03-08T14:52:08.358555-08:00,2003.0,10.848986,10848.986 +12940,2025-03-08T14:52:19.207727-08:00,1995.0,10.849172,10849.172 +12941,2025-03-08T14:52:30.043271-08:00,1995.0,10.835544,10835.544 +12942,2025-03-08T14:52:40.892425-08:00,1952.0,10.849154,10849.154 +12943,2025-03-08T14:52:51.731276-08:00,1965.0,10.838851,10838.851 +12944,2025-03-08T14:53:02.567961-08:00,2003.0,10.836685,10836.685 +12945,2025-03-08T14:53:13.410426-08:00,2002.0,10.842465,10842.465 +12946,2025-03-08T14:53:24.254587-08:00,2009.0,10.844161,10844.161 +12947,2025-03-08T14:53:35.091564-08:00,1977.0,10.836977,10836.977 +12948,2025-03-08T14:53:45.935238-08:00,1919.0,10.843674,10843.674 +12949,2025-03-08T14:53:56.777690-08:00,1927.0,10.842452,10842.452 +12950,2025-03-08T14:54:07.626421-08:00,1955.0,10.848731,10848.731 +12951,2025-03-08T14:54:18.466412-08:00,1991.0,10.839991,10839.991 +12952,2025-03-08T14:54:29.297659-08:00,2003.0,10.831247,10831.247 +12953,2025-03-08T14:54:40.141419-08:00,1937.0,10.84376,10843.76 +12954,2025-03-08T14:54:50.994824-08:00,1925.0,10.853405,10853.405 +12955,2025-03-08T14:55:01.831363-08:00,1971.0,10.836539,10836.539 +12956,2025-03-08T14:55:12.669746-08:00,1973.0,10.838383,10838.383 +12957,2025-03-08T14:55:23.517455-08:00,1997.0,10.847709,10847.709 +12958,2025-03-08T14:55:34.359419-08:00,1963.0,10.841964,10841.964 +12959,2025-03-08T14:55:45.196710-08:00,1927.0,10.837291,10837.291 +12960,2025-03-08T14:55:56.034319-08:00,1965.0,10.837609,10837.609 +12961,2025-03-08T14:56:06.887426-08:00,1997.0,10.853107,10853.107 +12962,2025-03-08T14:56:17.721237-08:00,1979.0,10.833811,10833.811 +12963,2025-03-08T14:56:28.575618-08:00,1966.0,10.854381,10854.381 +12964,2025-03-08T14:56:39.413686-08:00,1973.0,10.838068,10838.068 +12965,2025-03-08T14:56:50.261715-08:00,1935.0,10.848029,10848.029 +12966,2025-03-08T14:57:01.108126-08:00,2000.0,10.846411,10846.411 +12967,2025-03-08T14:57:11.958612-08:00,1958.0,10.850486,10850.486 +12968,2025-03-08T14:57:22.800663-08:00,1923.0,10.842051,10842.051 +12969,2025-03-08T14:57:33.640470-08:00,2001.0,10.839807,10839.807 +12970,2025-03-08T14:57:44.494975-08:00,1981.0,10.854505,10854.505 +12971,2025-03-08T14:57:55.333699-08:00,2003.0,10.838724,10838.724 +12972,2025-03-08T14:58:06.174419-08:00,1966.0,10.84072,10840.72 +12973,2025-03-08T14:58:17.017647-08:00,1981.0,10.843228,10843.228 +12974,2025-03-08T14:58:27.856617-08:00,1922.0,10.83897,10838.97 +12975,2025-03-08T14:58:38.692579-08:00,1923.0,10.835962,10835.962 +12976,2025-03-08T14:58:49.539424-08:00,1953.0,10.846845,10846.845 +12977,2025-03-08T14:59:00.374621-08:00,1910.0,10.835197,10835.197 +12978,2025-03-08T14:59:11.216698-08:00,1957.0,10.842077,10842.077 +12979,2025-03-08T14:59:22.053601-08:00,1936.0,10.836903,10836.903 +12980,2025-03-08T14:59:32.895405-08:00,1997.0,10.841804,10841.804 +12981,2025-03-08T14:59:43.739660-08:00,2000.0,10.844255,10844.255 +12982,2025-03-08T14:59:54.589480-08:00,1937.0,10.84982,10849.82 +12983,2025-03-08T15:00:05.431635-08:00,1968.0,10.842155,10842.155 +12984,2025-03-08T15:00:16.284849-08:00,1983.0,10.853214,10853.214 +12985,2025-03-08T15:00:27.120425-08:00,1935.0,10.835576,10835.576 +12986,2025-03-08T15:00:37.973412-08:00,2006.0,10.852987,10852.987 +12987,2025-03-08T15:00:48.828612-08:00,1952.0,10.8552,10855.2 +12988,2025-03-08T15:00:59.676641-08:00,1995.0,10.848029,10848.029 +12989,2025-03-08T15:01:10.518818-08:00,1968.0,10.842177,10842.177 +12990,2025-03-08T15:01:21.361967-08:00,2002.0,10.843149,10843.149 +12991,2025-03-08T15:01:32.214327-08:00,1952.0,10.85236,10852.36 +12992,2025-03-08T15:01:43.053423-08:00,1991.0,10.839096,10839.096 +12993,2025-03-08T15:01:53.901427-08:00,1938.0,10.848004,10848.004 +12994,2025-03-08T15:02:04.749725-08:00,1986.0,10.848298,10848.298 +12995,2025-03-08T15:02:15.590729-08:00,1934.0,10.841004,10841.004 +12996,2025-03-08T15:02:26.431473-08:00,2001.0,10.840744,10840.744 +12997,2025-03-08T15:02:37.273413-08:00,1984.0,10.84194,10841.94 +12998,2025-03-08T15:02:48.125367-08:00,1949.0,10.851954,10851.954 +12999,2025-03-08T15:02:58.972424-08:00,1951.0,10.847057,10847.057 +13000,2025-03-08T15:03:09.815428-08:00,1979.0,10.843004,10843.004 +13001,2025-03-08T15:03:20.669499-08:00,1910.0,10.854071,10854.071 +13002,2025-03-08T15:03:31.514343-08:00,1997.0,10.844844,10844.844 +13003,2025-03-08T15:03:42.359557-08:00,1981.0,10.845214,10845.214 +13004,2025-03-08T15:03:53.204671-08:00,1957.0,10.845114,10845.114 +13005,2025-03-08T15:04:04.048425-08:00,1978.0,10.843754,10843.754 +13006,2025-03-08T15:04:14.903429-08:00,2000.0,10.855004,10855.004 +13007,2025-03-08T15:04:25.744754-08:00,1966.0,10.841325,10841.325 +13008,2025-03-08T15:04:36.588665-08:00,2001.0,10.843911,10843.911 +13009,2025-03-08T15:04:47.437649-08:00,1926.0,10.848984,10848.984 +13010,2025-03-08T15:04:58.280417-08:00,1920.0,10.842768,10842.768 +13011,2025-03-08T15:05:09.125940-08:00,1999.0,10.845523,10845.523 +13012,2025-03-08T15:05:19.978427-08:00,1926.0,10.852487,10852.487 +13013,2025-03-08T15:05:30.817416-08:00,1938.0,10.838989,10838.989 +13014,2025-03-08T15:05:41.854265-08:00,2001.0,11.036849,11036.849 +13015,2025-03-08T15:05:52.698014-08:00,1975.0,10.843749,10843.749 +13016,2025-03-08T15:06:03.544741-08:00,2002.0,10.846727,10846.727 +13017,2025-03-08T15:06:14.396221-08:00,2000.0,10.85148,10851.48 +13018,2025-03-08T15:06:25.238899-08:00,1968.0,10.842678,10842.678 +13019,2025-03-08T15:06:36.080393-08:00,1949.0,10.841494,10841.494 +13020,2025-03-08T15:06:46.937062-08:00,2000.0,10.856669,10856.669 +13021,2025-03-08T15:06:57.779283-08:00,1985.0,10.842221,10842.221 +13022,2025-03-08T15:07:08.621804-08:00,1975.0,10.842521,10842.521 +13023,2025-03-08T15:07:19.471005-08:00,2001.0,10.849201,10849.201 +13024,2025-03-08T15:07:30.324956-08:00,1918.0,10.853951,10853.951 +13025,2025-03-08T15:07:41.162338-08:00,2001.0,10.837382,10837.382 +13026,2025-03-08T15:07:52.013873-08:00,1962.0,10.851535,10851.535 +13027,2025-03-08T15:08:02.870152-08:00,1950.0,10.856279,10856.279 +13028,2025-03-08T15:08:13.716043-08:00,1955.0,10.845891,10845.891 +13029,2025-03-08T15:08:24.559997-08:00,1926.0,10.843954,10843.954 +13030,2025-03-08T15:08:35.402148-08:00,1970.0,10.842151,10842.151 +13031,2025-03-08T15:08:46.254987-08:00,1925.0,10.852839,10852.839 +13032,2025-03-08T15:08:57.104763-08:00,1966.0,10.849776,10849.776 +13033,2025-03-08T15:09:07.959004-08:00,1921.0,10.854241,10854.241 +13034,2025-03-08T15:09:18.801992-08:00,1962.0,10.842988,10842.988 +13035,2025-03-08T15:09:29.650312-08:00,1931.0,10.84832,10848.32 +13036,2025-03-08T15:09:40.497192-08:00,1997.0,10.84688,10846.88 +13037,2025-03-08T15:09:51.349083-08:00,1975.0,10.851891,10851.891 +13038,2025-03-08T15:10:02.201811-08:00,1922.0,10.852728,10852.728 +13039,2025-03-08T15:10:13.046008-08:00,1933.0,10.844197,10844.197 +13040,2025-03-08T15:10:23.888769-08:00,2000.0,10.842761,10842.761 +13041,2025-03-08T15:10:34.744012-08:00,1927.0,10.855243,10855.243 +13042,2025-03-08T15:10:45.586138-08:00,1966.0,10.842126,10842.126 +13043,2025-03-08T15:10:56.436033-08:00,1999.0,10.849895,10849.895 +13044,2025-03-08T15:11:07.293204-08:00,2001.0,10.857171,10857.171 +13045,2025-03-08T15:11:18.138988-08:00,1967.0,10.845784,10845.784 +13046,2025-03-08T15:11:28.992971-08:00,1955.0,10.853983,10853.983 +13047,2025-03-08T15:11:39.841097-08:00,1931.0,10.848126,10848.126 +13048,2025-03-08T15:11:50.687764-08:00,1998.0,10.846667,10846.667 +13049,2025-03-08T15:12:01.539033-08:00,2000.0,10.851269,10851.269 +13050,2025-03-08T15:12:12.392763-08:00,1955.0,10.85373,10853.73 +13051,2025-03-08T15:12:23.243421-08:00,1980.0,10.850658,10850.658 +13052,2025-03-08T15:12:34.103200-08:00,1969.0,10.859779,10859.779 +13053,2025-03-08T15:12:44.953760-08:00,1943.0,10.85056,10850.56 +13054,2025-03-08T15:12:55.806966-08:00,1971.0,10.853206,10853.206 +13055,2025-03-08T15:13:06.652933-08:00,1962.0,10.845967,10845.967 +13056,2025-03-08T15:13:17.498764-08:00,2000.0,10.845831,10845.831 +13057,2025-03-08T15:13:28.352810-08:00,1935.0,10.854046,10854.046 +13058,2025-03-08T15:13:39.193861-08:00,1933.0,10.841051,10841.051 +13059,2025-03-08T15:13:50.041918-08:00,1995.0,10.848057,10848.057 +13060,2025-03-08T15:14:00.888764-08:00,2002.0,10.846846,10846.846 +13061,2025-03-08T15:14:11.742896-08:00,1972.0,10.854132,10854.132 +13062,2025-03-08T15:14:22.583862-08:00,2003.0,10.840966,10840.966 +13063,2025-03-08T15:14:33.422323-08:00,1959.0,10.838461,10838.461 +13064,2025-03-08T15:14:44.268706-08:00,1931.0,10.846383,10846.383 +13065,2025-03-08T15:14:55.121761-08:00,2001.0,10.853055,10853.055 +13066,2025-03-08T15:15:05.966995-08:00,1995.0,10.845234,10845.234 +13067,2025-03-08T15:15:16.809801-08:00,1973.0,10.842806,10842.806 +13068,2025-03-08T15:15:27.664427-08:00,1975.0,10.854626,10854.626 +13069,2025-03-08T15:15:38.508821-08:00,1964.0,10.844394,10844.394 +13070,2025-03-08T15:15:49.365759-08:00,1961.0,10.856938,10856.938 +13071,2025-03-08T15:16:00.216768-08:00,2001.0,10.851009,10851.009 +13072,2025-03-08T15:16:11.056872-08:00,1993.0,10.840104,10840.104 +13073,2025-03-08T15:16:21.912081-08:00,1953.0,10.855209,10855.209 +13074,2025-03-08T15:16:32.758362-08:00,1999.0,10.846281,10846.281 +13075,2025-03-08T15:16:43.608803-08:00,1995.0,10.850441,10850.441 +13076,2025-03-08T15:16:54.457429-08:00,1970.0,10.848626,10848.626 +13077,2025-03-08T15:17:05.306822-08:00,2002.0,10.849393,10849.393 +13078,2025-03-08T15:17:16.154149-08:00,1933.0,10.847327,10847.327 +13079,2025-03-08T15:17:27.005303-08:00,1993.0,10.851154,10851.154 +13080,2025-03-08T15:17:37.852019-08:00,1957.0,10.846716,10846.716 +13081,2025-03-08T15:17:48.702174-08:00,1981.0,10.850155,10850.155 +13082,2025-03-08T15:17:59.560105-08:00,2000.0,10.857931,10857.931 +13083,2025-03-08T15:18:10.411120-08:00,1999.0,10.851015,10851.015 +13084,2025-03-08T15:18:21.258062-08:00,1945.0,10.846942,10846.942 +13085,2025-03-08T15:18:32.100745-08:00,1968.0,10.842683,10842.683 +13086,2025-03-08T15:18:42.953761-08:00,2001.0,10.853016,10853.016 +13087,2025-03-08T15:18:53.803815-08:00,1983.0,10.850054,10850.054 +13088,2025-03-08T15:19:04.651760-08:00,1953.0,10.847945,10847.945 +13089,2025-03-08T15:19:15.501786-08:00,2000.0,10.850026,10850.026 +13090,2025-03-08T15:19:26.345960-08:00,1959.0,10.844174,10844.174 +13091,2025-03-08T15:19:37.189031-08:00,2000.0,10.843071,10843.071 +13092,2025-03-08T15:19:48.047017-08:00,1965.0,10.857986,10857.986 +13093,2025-03-08T15:19:58.892109-08:00,1965.0,10.845092,10845.092 +13094,2025-03-08T15:20:09.739760-08:00,2001.0,10.847651,10847.651 +13095,2025-03-08T15:20:20.590081-08:00,1943.0,10.850321,10850.321 +13096,2025-03-08T15:20:31.442909-08:00,1922.0,10.852828,10852.828 +13097,2025-03-08T15:20:42.287018-08:00,1984.0,10.844109,10844.109 +13098,2025-03-08T15:20:53.141756-08:00,1950.0,10.854738,10854.738 +13099,2025-03-08T15:21:03.992641-08:00,2000.0,10.850885,10850.885 +13100,2025-03-08T15:21:14.835393-08:00,1986.0,10.842752,10842.752 +13101,2025-03-08T15:21:25.681806-08:00,2000.0,10.846413,10846.413 +13102,2025-03-08T15:21:36.525758-08:00,2000.0,10.843952,10843.952 +13103,2025-03-08T15:21:47.368763-08:00,2005.0,10.843005,10843.005 +13104,2025-03-08T15:21:58.212762-08:00,2007.0,10.843999,10843.999 +13105,2025-03-08T15:22:09.054997-08:00,1950.0,10.842235,10842.235 +13106,2025-03-08T15:22:19.909519-08:00,1937.0,10.854522,10854.522 +13107,2025-03-08T15:22:30.747759-08:00,1950.0,10.83824,10838.24 +13108,2025-03-08T15:22:41.601040-08:00,1978.0,10.853281,10853.281 +13109,2025-03-08T15:22:52.448765-08:00,1966.0,10.847725,10847.725 +13110,2025-03-08T15:23:03.292737-08:00,1967.0,10.843972,10843.972 +13111,2025-03-08T15:23:14.140172-08:00,1971.0,10.847435,10847.435 +13112,2025-03-08T15:23:24.986003-08:00,1966.0,10.845831,10845.831 +13113,2025-03-08T15:23:35.841434-08:00,1941.0,10.855431,10855.431 +13114,2025-03-08T15:23:46.679769-08:00,1956.0,10.838335,10838.335 +13115,2025-03-08T15:23:57.533764-08:00,1987.0,10.853995,10853.995 +13116,2025-03-08T15:24:08.379756-08:00,1936.0,10.845992,10845.992 +13117,2025-03-08T15:24:19.226996-08:00,1963.0,10.84724,10847.24 +13118,2025-03-08T15:24:30.077754-08:00,1963.0,10.850758,10850.758 +13119,2025-03-08T15:24:40.924766-08:00,2000.0,10.847012,10847.012 +13120,2025-03-08T15:24:51.783003-08:00,1927.0,10.858237,10858.237 +13121,2025-03-08T15:25:02.623083-08:00,1965.0,10.84008,10840.08 +13122,2025-03-08T15:25:13.481904-08:00,1993.0,10.858821,10858.821 +13123,2025-03-08T15:25:24.322046-08:00,1977.0,10.840142,10840.142 +13124,2025-03-08T15:25:35.181064-08:00,2000.0,10.859018,10859.018 +13125,2025-03-08T15:25:46.030803-08:00,1922.0,10.849739,10849.739 +13126,2025-03-08T15:25:56.877763-08:00,1965.0,10.84696,10846.96 +13127,2025-03-08T15:26:07.726754-08:00,1931.0,10.848991,10848.991 +13128,2025-03-08T15:26:18.582953-08:00,1968.0,10.856199,10856.199 +13129,2025-03-08T15:26:29.432900-08:00,1958.0,10.849947,10849.947 +13130,2025-03-08T15:26:40.280404-08:00,1973.0,10.847504,10847.504 +13131,2025-03-08T15:26:51.135939-08:00,2000.0,10.855535,10855.535 +13132,2025-03-08T15:27:01.978804-08:00,1958.0,10.842865,10842.865 +13133,2025-03-08T15:27:12.832093-08:00,1959.0,10.853289,10853.289 +13134,2025-03-08T15:27:23.682095-08:00,1925.0,10.850002,10850.002 +13135,2025-03-08T15:27:34.529323-08:00,1927.0,10.847228,10847.228 +13136,2025-03-08T15:27:45.375996-08:00,1999.0,10.846673,10846.673 +13137,2025-03-08T15:27:56.222737-08:00,1966.0,10.846741,10846.741 +13138,2025-03-08T15:28:07.075396-08:00,1921.0,10.852659,10852.659 +13139,2025-03-08T15:28:17.914760-08:00,1993.0,10.839364,10839.364 +13140,2025-03-08T15:28:28.773829-08:00,1985.0,10.859069,10859.069 +13141,2025-03-08T15:28:39.621762-08:00,1957.0,10.847933,10847.933 +13142,2025-03-08T15:28:50.465062-08:00,1985.0,10.8433,10843.3 +13143,2025-03-08T15:29:01.317169-08:00,1990.0,10.852107,10852.107 +13144,2025-03-08T15:29:12.162795-08:00,1926.0,10.845626,10845.626 +13145,2025-03-08T15:29:23.001763-08:00,1995.0,10.838968,10838.968 +13146,2025-03-08T15:29:33.859737-08:00,2000.0,10.857974,10857.974 +13147,2025-03-08T15:29:44.702767-08:00,1925.0,10.84303,10843.03 +13148,2025-03-08T15:29:55.536726-08:00,1983.0,10.833959,10833.959 +13149,2025-03-08T15:30:06.385815-08:00,1966.0,10.849089,10849.089 +13150,2025-03-08T15:30:17.232018-08:00,2002.0,10.846203,10846.203 +13151,2025-03-08T15:30:28.085822-08:00,1909.0,10.853804,10853.804 +13152,2025-03-08T15:30:38.928754-08:00,1936.0,10.842932,10842.932 +13153,2025-03-08T15:30:49.780734-08:00,1953.0,10.85198,10851.98 +13154,2025-03-08T15:31:00.628763-08:00,2000.0,10.848029,10848.029 +13155,2025-03-08T15:31:11.470024-08:00,1926.0,10.841261,10841.261 +13156,2025-03-08T15:31:22.321318-08:00,2000.0,10.851294,10851.294 +13157,2025-03-08T15:31:33.179052-08:00,1963.0,10.857734,10857.734 +13158,2025-03-08T15:31:44.022799-08:00,1956.0,10.843747,10843.747 +13159,2025-03-08T15:31:54.872091-08:00,1952.0,10.849292,10849.292 +13160,2025-03-08T15:32:05.719759-08:00,1998.0,10.847668,10847.668 +13161,2025-03-08T15:32:16.564463-08:00,1934.0,10.844704,10844.704 +13162,2025-03-08T15:32:27.417766-08:00,1938.0,10.853303,10853.303 +13163,2025-03-08T15:32:38.261319-08:00,1916.0,10.843553,10843.553 +13164,2025-03-08T15:32:49.103617-08:00,1968.0,10.842298,10842.298 +13165,2025-03-08T15:32:59.946045-08:00,1997.0,10.842428,10842.428 +13166,2025-03-08T15:33:10.796760-08:00,1997.0,10.850715,10850.715 +13167,2025-03-08T15:33:21.644136-08:00,1991.0,10.847376,10847.376 +13168,2025-03-08T15:33:32.494763-08:00,2001.0,10.850627,10850.627 +13169,2025-03-08T15:33:43.341014-08:00,2000.0,10.846251,10846.251 +13170,2025-03-08T15:33:54.190027-08:00,1981.0,10.849013,10849.013 +13171,2025-03-08T15:34:05.047827-08:00,1962.0,10.8578,10857.8 +13172,2025-03-08T15:34:15.897068-08:00,1957.0,10.849241,10849.241 +13173,2025-03-08T15:34:26.747064-08:00,2001.0,10.849996,10849.996 +13174,2025-03-08T15:34:37.603381-08:00,1968.0,10.856317,10856.317 +13175,2025-03-08T15:34:48.447789-08:00,1999.0,10.844408,10844.408 +13176,2025-03-08T15:34:59.289763-08:00,2002.0,10.841974,10841.974 +13177,2025-03-08T15:35:10.145755-08:00,1968.0,10.855992,10855.992 +13178,2025-03-08T15:35:20.989763-08:00,1921.0,10.844008,10844.008 +13179,2025-03-08T15:35:31.842772-08:00,1984.0,10.853009,10853.009 +13180,2025-03-08T15:35:42.698764-08:00,1957.0,10.855992,10855.992 +13181,2025-03-08T15:35:53.551758-08:00,1914.0,10.852994,10852.994 +13182,2025-03-08T15:36:04.395078-08:00,1940.0,10.84332,10843.32 +13183,2025-03-08T15:36:15.243415-08:00,2000.0,10.848337,10848.337 +13184,2025-03-08T15:36:26.091143-08:00,1988.0,10.847728,10847.728 +13185,2025-03-08T15:36:36.945842-08:00,2000.0,10.854699,10854.699 +13186,2025-03-08T15:36:47.800547-08:00,1954.0,10.854705,10854.705 +13187,2025-03-08T15:36:58.655242-08:00,1911.0,10.854695,10854.695 +13188,2025-03-08T15:37:09.508574-08:00,1998.0,10.853332,10853.332 +13189,2025-03-08T15:37:20.352752-08:00,1941.0,10.844178,10844.178 +13190,2025-03-08T15:37:31.206147-08:00,1984.0,10.853395,10853.395 +13191,2025-03-08T15:37:42.061765-08:00,1957.0,10.855618,10855.618 +13192,2025-03-08T15:37:52.915755-08:00,1938.0,10.85399,10853.99 +13193,2025-03-08T15:38:03.768735-08:00,1936.0,10.85298,10852.98 +13194,2025-03-08T15:38:14.625760-08:00,1967.0,10.857025,10857.025 +13195,2025-03-08T15:38:25.468966-08:00,1927.0,10.843206,10843.206 +13196,2025-03-08T15:38:36.322763-08:00,1983.0,10.853797,10853.797 +13197,2025-03-08T15:38:47.176013-08:00,1956.0,10.85325,10853.25 +13198,2025-03-08T15:38:58.019911-08:00,1933.0,10.843898,10843.898 +13199,2025-03-08T15:39:08.874912-08:00,2000.0,10.855001,10855.001 +13200,2025-03-08T15:39:19.718070-08:00,1969.0,10.843158,10843.158 +13201,2025-03-08T15:39:30.572103-08:00,1958.0,10.854033,10854.033 +13202,2025-03-08T15:39:41.433070-08:00,1949.0,10.860967,10860.967 +13203,2025-03-08T15:39:52.271849-08:00,1911.0,10.838779,10838.779 +13204,2025-03-08T15:40:03.122945-08:00,1927.0,10.851096,10851.096 +13205,2025-03-08T15:40:13.967835-08:00,1950.0,10.84489,10844.89 +13206,2025-03-08T15:40:24.821234-08:00,1995.0,10.853399,10853.399 +13207,2025-03-08T15:40:35.677758-08:00,1998.0,10.856524,10856.524 +13208,2025-03-08T15:40:46.531913-08:00,1959.0,10.854155,10854.155 +13209,2025-03-08T15:40:57.382764-08:00,1959.0,10.850851,10850.851 +13210,2025-03-08T15:41:08.239838-08:00,1995.0,10.857074,10857.074 +13211,2025-03-08T15:41:19.083301-08:00,1913.0,10.843463,10843.463 +13212,2025-03-08T15:41:29.936763-08:00,2001.0,10.853462,10853.462 +13213,2025-03-08T15:41:40.791626-08:00,1984.0,10.854863,10854.863 +13214,2025-03-08T15:41:51.641445-08:00,1998.0,10.849819,10849.819 +13215,2025-03-08T15:42:02.476034-08:00,1979.0,10.834589,10834.589 +13216,2025-03-08T15:42:13.332374-08:00,1961.0,10.85634,10856.34 +13217,2025-03-08T15:42:24.186031-08:00,1962.0,10.853657,10853.657 +13218,2025-03-08T15:42:35.043022-08:00,1986.0,10.856991,10856.991 +13219,2025-03-08T15:42:45.895852-08:00,1941.0,10.85283,10852.83 +13220,2025-03-08T15:42:56.747992-08:00,2000.0,10.85214,10852.14 +13221,2025-03-08T15:43:07.592754-08:00,1920.0,10.844762,10844.762 +13222,2025-03-08T15:43:18.445969-08:00,1916.0,10.853215,10853.215 +13223,2025-03-08T15:43:29.290762-08:00,1915.0,10.844793,10844.793 +13224,2025-03-08T15:43:40.145755-08:00,1954.0,10.854993,10854.993 +13225,2025-03-08T15:43:50.988764-08:00,1999.0,10.843009,10843.009 +13226,2025-03-08T15:44:01.833358-08:00,1942.0,10.844594,10844.594 +13227,2025-03-08T15:44:12.687052-08:00,1991.0,10.853694,10853.694 +13228,2025-03-08T15:44:23.533150-08:00,1989.0,10.846098,10846.098 +13229,2025-03-08T15:44:34.385805-08:00,1927.0,10.852655,10852.655 +13230,2025-03-08T15:44:45.242115-08:00,1968.0,10.85631,10856.31 +13231,2025-03-08T15:44:56.092140-08:00,1991.0,10.850025,10850.025 +13232,2025-03-08T15:45:04.443838-08:00,1983.0,8.351698,8351.698 +13233,2025-03-08T15:45:06.942760-08:00,1951.0,2.498922,2498.922 +13234,2025-03-08T15:45:17.798754-08:00,1997.0,10.855994,10855.994 +13235,2025-03-08T15:45:28.643757-08:00,2000.0,10.845003,10845.003 +13236,2025-03-08T15:45:39.491748-08:00,1966.0,10.847991,10847.991 +13237,2025-03-08T15:45:50.342758-08:00,1929.0,10.85101,10851.01 +13238,2025-03-08T15:46:01.196762-08:00,1984.0,10.854004,10854.004 +13239,2025-03-08T15:46:12.052008-08:00,1919.0,10.855246,10855.246 +13240,2025-03-08T15:46:22.904966-08:00,1978.0,10.852958,10852.958 +13241,2025-03-08T15:46:33.761958-08:00,1961.0,10.856992,10856.992 +13242,2025-03-08T15:46:44.614817-08:00,1966.0,10.852859,10852.859 +13243,2025-03-08T15:46:55.459080-08:00,1967.0,10.844263,10844.263 +13244,2025-03-08T15:47:06.316061-08:00,1915.0,10.856981,10856.981 +13245,2025-03-08T15:47:17.166607-08:00,1927.0,10.850546,10850.546 +13246,2025-03-08T15:47:28.020764-08:00,1977.0,10.854157,10854.157 +13247,2025-03-08T15:47:38.869120-08:00,1996.0,10.848356,10848.356 +13248,2025-03-08T15:47:49.721026-08:00,1979.0,10.851906,10851.906 +13249,2025-03-08T15:48:00.573790-08:00,2000.0,10.852764,10852.764 +13250,2025-03-08T15:48:11.423904-08:00,1947.0,10.850114,10850.114 +13251,2025-03-08T15:48:22.268752-08:00,1987.0,10.844848,10844.848 +13252,2025-03-08T15:48:33.118803-08:00,1963.0,10.850051,10850.051 +13253,2025-03-08T15:48:43.966766-08:00,1999.0,10.847963,10847.963 +13254,2025-03-08T15:48:54.815759-08:00,2002.0,10.848993,10848.993 +13255,2025-03-08T15:49:05.667767-08:00,1958.0,10.852008,10852.008 +13256,2025-03-08T15:49:16.521763-08:00,1999.0,10.853996,10853.996 +13257,2025-03-08T15:49:27.365341-08:00,1953.0,10.843578,10843.578 +13258,2025-03-08T15:49:38.224761-08:00,1923.0,10.85942,10859.42 +13259,2025-03-08T15:49:49.073097-08:00,1990.0,10.848336,10848.336 +13260,2025-03-08T15:49:59.927117-08:00,2001.0,10.85402,10854.02 +13261,2025-03-08T15:50:10.781775-08:00,1918.0,10.854658,10854.658 +13262,2025-03-08T15:50:21.638068-08:00,1995.0,10.856293,10856.293 +13263,2025-03-08T15:50:32.490089-08:00,1937.0,10.852021,10852.021 +13264,2025-03-08T15:50:43.345198-08:00,1935.0,10.855109,10855.109 +13265,2025-03-08T15:50:54.195080-08:00,1961.0,10.849882,10849.882 +13266,2025-03-08T15:51:05.057017-08:00,1983.0,10.861937,10861.937 +13267,2025-03-08T15:51:15.911064-08:00,1999.0,10.854047,10854.047 +13268,2025-03-08T15:51:26.763022-08:00,1985.0,10.851958,10851.958 +13269,2025-03-08T15:51:37.605805-08:00,1945.0,10.842783,10842.783 +13270,2025-03-08T15:51:48.464930-08:00,1947.0,10.859125,10859.125 +13271,2025-03-08T15:51:59.309765-08:00,1991.0,10.844835,10844.835 +13272,2025-03-08T15:52:10.167195-08:00,1999.0,10.85743,10857.43 +13273,2025-03-08T15:52:21.022970-08:00,1955.0,10.855775,10855.775 +13274,2025-03-08T15:52:31.879210-08:00,1957.0,10.85624,10856.24 +13275,2025-03-08T15:52:42.731686-08:00,1971.0,10.852476,10852.476 +13276,2025-03-08T15:52:53.594284-08:00,1920.0,10.862598,10862.598 +13277,2025-03-08T15:53:04.443920-08:00,1953.0,10.849636,10849.636 +13278,2025-03-08T15:53:15.302220-08:00,1999.0,10.8583,10858.3 +13279,2025-03-08T15:53:26.151981-08:00,1996.0,10.849761,10849.761 +13280,2025-03-08T15:53:36.999136-08:00,1977.0,10.847155,10847.155 +13281,2025-03-08T15:53:47.858905-08:00,1995.0,10.859769,10859.769 +13282,2025-03-08T15:53:58.710079-08:00,1947.0,10.851174,10851.174 +13283,2025-03-08T15:54:09.556853-08:00,1994.0,10.846774,10846.774 +13284,2025-03-08T15:54:20.411759-08:00,1926.0,10.854906,10854.906 +13285,2025-03-08T15:54:31.266762-08:00,1991.0,10.855003,10855.003 +13286,2025-03-08T15:54:52.963912-08:00,1954.0,21.69715,21697.15 +13287,2025-03-08T15:55:03.807819-08:00,1951.0,10.843907,10843.907 +13288,2025-03-08T15:55:14.649378-08:00,1953.0,10.841559,10841.559 +13289,2025-03-08T15:55:25.504003-08:00,1947.0,10.854625,10854.625 +13290,2025-03-08T15:55:36.359134-08:00,1964.0,10.855131,10855.131 +13291,2025-03-08T15:55:47.214018-08:00,1920.0,10.854884,10854.884 +13292,2025-03-08T15:55:58.066892-08:00,1917.0,10.852874,10852.874 +13293,2025-03-08T15:56:08.909756-08:00,1973.0,10.842864,10842.864 +13294,2025-03-08T15:56:19.765891-08:00,1952.0,10.856135,10856.135 +13295,2025-03-08T15:56:30.619814-08:00,1998.0,10.853923,10853.923 +13296,2025-03-08T15:56:41.463758-08:00,1930.0,10.843944,10843.944 +13297,2025-03-08T15:56:52.317902-08:00,1917.0,10.854144,10854.144 +13298,2025-03-08T15:57:03.172931-08:00,1950.0,10.855029,10855.029 +13299,2025-03-08T15:57:14.016893-08:00,1997.0,10.843962,10843.962 +13300,2025-03-08T15:57:24.881888-08:00,1998.0,10.864995,10864.995 +13301,2025-03-08T15:57:35.730984-08:00,1961.0,10.849096,10849.096 +13302,2025-03-08T15:57:46.583836-08:00,1958.0,10.852852,10852.852 +13303,2025-03-08T15:57:57.435745-08:00,1982.0,10.851909,10851.909 +13304,2025-03-08T15:58:08.297760-08:00,1985.0,10.862015,10862.015 +13305,2025-03-08T15:58:19.142821-08:00,1999.0,10.845061,10845.061 +13306,2025-03-08T15:58:29.998014-08:00,1978.0,10.855193,10855.193 +13307,2025-03-08T15:58:40.843951-08:00,1964.0,10.845937,10845.937 +13308,2025-03-08T15:58:51.693333-08:00,1904.0,10.849382,10849.382 +13309,2025-03-08T15:59:02.547114-08:00,1907.0,10.853781,10853.781 +13310,2025-03-08T15:59:13.408270-08:00,1957.0,10.861156,10861.156 +13311,2025-03-08T15:59:24.255103-08:00,1998.0,10.846833,10846.833 +13312,2025-03-08T15:59:35.111080-08:00,1967.0,10.855977,10855.977 +13313,2025-03-08T15:59:45.963351-08:00,1958.0,10.852271,10852.271 +13314,2025-03-08T15:59:56.820041-08:00,1935.0,10.85669,10856.69 +13315,2025-03-08T16:00:07.670149-08:00,1998.0,10.850108,10850.108 +13316,2025-03-08T16:00:18.519788-08:00,1942.0,10.849639,10849.639 +13317,2025-03-08T16:00:29.363901-08:00,1964.0,10.844113,10844.113 +13318,2025-03-08T16:00:40.215755-08:00,1969.0,10.851854,10851.854 +13319,2025-03-08T16:00:51.072746-08:00,1959.0,10.856991,10856.991 +13320,2025-03-08T16:01:01.927002-08:00,1983.0,10.854256,10854.256 +13321,2025-03-08T16:01:12.774951-08:00,1969.0,10.847949,10847.949 +13322,2025-03-08T16:01:23.635798-08:00,1999.0,10.860847,10860.847 +13323,2025-03-08T16:01:34.477101-08:00,1999.0,10.841303,10841.303 +13324,2025-03-08T16:01:45.331479-08:00,1966.0,10.854378,10854.378 +13325,2025-03-08T16:01:56.180984-08:00,1966.0,10.849505,10849.505 +13326,2025-03-08T16:02:07.034147-08:00,1946.0,10.853163,10853.163 +13327,2025-03-08T16:02:17.882887-08:00,1931.0,10.84874,10848.74 +13328,2025-03-08T16:02:28.726719-08:00,1927.0,10.843832,10843.832 +13329,2025-03-08T16:02:39.574093-08:00,1914.0,10.847374,10847.374 +13330,2025-03-08T16:02:50.418589-08:00,1936.0,10.844496,10844.496 +13331,2025-03-08T16:03:01.272260-08:00,1981.0,10.853671,10853.671 +13332,2025-03-08T16:03:12.117427-08:00,1949.0,10.845167,10845.167 +13333,2025-03-08T16:03:22.959908-08:00,1959.0,10.842481,10842.481 +13334,2025-03-08T16:03:33.811023-08:00,1943.0,10.851115,10851.115 +13335,2025-03-08T16:03:44.656897-08:00,1904.0,10.845874,10845.874 +13336,2025-03-08T16:03:55.504241-08:00,1942.0,10.847344,10847.344 +13337,2025-03-08T16:04:06.354007-08:00,1935.0,10.849766,10849.766 +13338,2025-03-08T16:04:17.207758-08:00,1967.0,10.853751,10853.751 +13339,2025-03-08T16:04:28.056767-08:00,1951.0,10.849009,10849.009 +13340,2025-03-08T16:04:38.904763-08:00,1958.0,10.847996,10847.996 +13341,2025-03-08T16:04:49.764107-08:00,1995.0,10.859344,10859.344 +13342,2025-03-08T16:05:00.612767-08:00,1957.0,10.84866,10848.66 +13343,2025-03-08T16:05:11.463081-08:00,1959.0,10.850314,10850.314 +13344,2025-03-08T16:05:22.311333-08:00,1921.0,10.848252,10848.252 +13345,2025-03-08T16:05:33.167002-08:00,1952.0,10.855669,10855.669 +13346,2025-03-08T16:05:44.014523-08:00,1913.0,10.847521,10847.521 +13347,2025-03-08T16:05:54.871506-08:00,1955.0,10.856983,10856.983 +13348,2025-03-08T16:06:05.718388-08:00,1989.0,10.846882,10846.882 +13349,2025-03-08T16:06:16.572445-08:00,1958.0,10.854057,10854.057 +13350,2025-03-08T16:06:27.421657-08:00,1990.0,10.849212,10849.212 +13351,2025-03-08T16:06:38.272835-08:00,1913.0,10.851178,10851.178 +13352,2025-03-08T16:06:49.128725-08:00,1926.0,10.85589,10855.89 +13353,2025-03-08T16:06:59.979747-08:00,1982.0,10.851022,10851.022 +13354,2025-03-08T16:07:10.827630-08:00,1919.0,10.847883,10847.883 +13355,2025-03-08T16:07:21.676322-08:00,1995.0,10.848692,10848.692 +13356,2025-03-08T16:07:32.514316-08:00,1943.0,10.837994,10837.994 +13357,2025-03-08T16:07:43.363589-08:00,1933.0,10.849273,10849.273 +13358,2025-03-08T16:07:54.207663-08:00,1917.0,10.844074,10844.074 +13359,2025-03-08T16:08:05.056155-08:00,1995.0,10.848492,10848.492 +13360,2025-03-08T16:08:15.905547-08:00,1985.0,10.849392,10849.392 +13361,2025-03-08T16:08:26.754388-08:00,1948.0,10.848841,10848.841 +13362,2025-03-08T16:08:37.612859-08:00,1991.0,10.858471,10858.471 +13363,2025-03-08T16:08:48.462442-08:00,1942.0,10.849583,10849.583 +13364,2025-03-08T16:08:59.309574-08:00,1951.0,10.847132,10847.132 +13365,2025-03-08T16:09:10.164334-08:00,1999.0,10.85476,10854.76 +13366,2025-03-08T16:09:21.019403-08:00,1904.0,10.855069,10855.069 +13367,2025-03-08T16:09:31.862579-08:00,1954.0,10.843176,10843.176 +13368,2025-03-08T16:09:42.711589-08:00,1965.0,10.84901,10849.01 +13369,2025-03-08T16:09:53.560491-08:00,1994.0,10.848902,10848.902 +13370,2025-03-08T16:10:04.414378-08:00,1937.0,10.853887,10853.887 +13371,2025-03-08T16:10:15.274789-08:00,1994.0,10.860411,10860.411 +13372,2025-03-08T16:10:26.118714-08:00,1990.0,10.843925,10843.925 +13373,2025-03-08T16:10:36.983779-08:00,1903.0,10.865065,10865.065 +13374,2025-03-08T16:10:47.826848-08:00,1943.0,10.843069,10843.069 +13375,2025-03-08T16:10:58.692500-08:00,1920.0,10.865652,10865.652 +13376,2025-03-08T16:11:09.540694-08:00,1933.0,10.848194,10848.194 +13377,2025-03-08T16:11:20.387649-08:00,1986.0,10.846955,10846.955 +13378,2025-03-08T16:11:31.230322-08:00,1981.0,10.842673,10842.673 +13379,2025-03-08T16:11:42.079546-08:00,1987.0,10.849224,10849.224 +13380,2025-03-08T16:11:52.920379-08:00,1935.0,10.840833,10840.833 +13381,2025-03-08T16:12:03.769575-08:00,1982.0,10.849196,10849.196 +13382,2025-03-08T16:12:14.623534-08:00,1957.0,10.853959,10853.959 +13383,2025-03-08T16:12:25.467630-08:00,1953.0,10.844096,10844.096 +13384,2025-03-08T16:12:36.314656-08:00,1939.0,10.847026,10847.026 +13385,2025-03-08T16:12:47.168323-08:00,1927.0,10.853667,10853.667 +13386,2025-03-08T16:12:58.011596-08:00,1941.0,10.843273,10843.273 +13387,2025-03-08T16:13:08.866406-08:00,1890.0,10.85481,10854.81 +13388,2025-03-08T16:13:19.704723-08:00,1966.0,10.838317,10838.317 +13389,2025-03-08T16:13:30.557335-08:00,1954.0,10.852612,10852.612 +13390,2025-03-08T16:13:41.407360-08:00,1936.0,10.850025,10850.025 +13391,2025-03-08T16:13:52.254742-08:00,1911.0,10.847382,10847.382 +13392,2025-03-08T16:14:03.105683-08:00,1921.0,10.850941,10850.941 +13393,2025-03-08T16:14:13.964888-08:00,1985.0,10.859205,10859.205 +13394,2025-03-08T16:14:24.809487-08:00,1982.0,10.844599,10844.599 +13395,2025-03-08T16:14:35.662374-08:00,1915.0,10.852887,10852.887 +13396,2025-03-08T16:14:46.499330-08:00,1984.0,10.836956,10836.956 +13397,2025-03-08T16:14:57.353305-08:00,1891.0,10.853975,10853.975 +13398,2025-03-08T16:15:08.198644-08:00,1961.0,10.845339,10845.339 +13399,2025-03-08T16:15:19.044310-08:00,1906.0,10.845666,10845.666 +13400,2025-03-08T16:15:29.888650-08:00,1968.0,10.84434,10844.34 +13401,2025-03-08T16:15:40.739397-08:00,1983.0,10.850747,10850.747 +13402,2025-03-08T16:15:51.589630-08:00,1907.0,10.850233,10850.233 +13403,2025-03-08T16:16:02.435397-08:00,1968.0,10.845767,10845.767 +13404,2025-03-08T16:16:13.273880-08:00,1903.0,10.838483,10838.483 +13405,2025-03-08T16:16:24.122682-08:00,1978.0,10.848802,10848.802 +13406,2025-03-08T16:16:34.972011-08:00,1991.0,10.849329,10849.329 +13407,2025-03-08T16:16:45.813905-08:00,1952.0,10.841894,10841.894 +13408,2025-03-08T16:16:56.662299-08:00,1987.0,10.848394,10848.394 +13409,2025-03-08T16:17:07.506420-08:00,1985.0,10.844121,10844.121 +13410,2025-03-08T16:17:18.352305-08:00,1968.0,10.845885,10845.885 +13411,2025-03-08T16:17:29.208590-08:00,1983.0,10.856285,10856.285 +13412,2025-03-08T16:17:40.051326-08:00,1968.0,10.842736,10842.736 +13413,2025-03-08T16:17:50.890787-08:00,1914.0,10.839461,10839.461 +13414,2025-03-08T16:18:01.745663-08:00,1890.0,10.854876,10854.876 +13415,2025-03-08T16:18:12.593348-08:00,1953.0,10.847685,10847.685 +13416,2025-03-08T16:18:23.439327-08:00,1958.0,10.845979,10845.979 +13417,2025-03-08T16:18:34.278571-08:00,1966.0,10.839244,10839.244 +13418,2025-03-08T16:18:45.133939-08:00,1973.0,10.855368,10855.368 +13419,2025-03-08T16:18:55.975918-08:00,1923.0,10.841979,10841.979 +13420,2025-03-08T16:19:06.820659-08:00,1977.0,10.844741,10844.741 +13421,2025-03-08T16:19:17.661865-08:00,1934.0,10.841206,10841.206 +13422,2025-03-08T16:19:28.508507-08:00,1936.0,10.846642,10846.642 +13423,2025-03-08T16:19:39.354752-08:00,1934.0,10.846245,10846.245 +13424,2025-03-08T16:19:50.198358-08:00,1937.0,10.843606,10843.606 +13425,2025-03-08T16:20:01.041211-08:00,1978.0,10.842853,10842.853 +13426,2025-03-08T16:20:11.889367-08:00,1923.0,10.848156,10848.156 +13427,2025-03-08T16:20:22.733328-08:00,1971.0,10.843961,10843.961 +13428,2025-03-08T16:20:33.586518-08:00,1906.0,10.85319,10853.19 +13429,2025-03-08T16:20:44.425327-08:00,1973.0,10.838809,10838.809 +13430,2025-03-08T16:20:55.278395-08:00,1975.0,10.853068,10853.068 +13431,2025-03-08T16:21:06.116102-08:00,1892.0,10.837707,10837.707 +13432,2025-03-08T16:21:16.953564-08:00,1948.0,10.837462,10837.462 +13433,2025-03-08T16:21:27.796812-08:00,1929.0,10.843248,10843.248 +13434,2025-03-08T16:21:38.644517-08:00,1907.0,10.847705,10847.705 +13435,2025-03-08T16:21:49.495455-08:00,1935.0,10.850938,10850.938 +13436,2025-03-08T16:22:00.337690-08:00,1954.0,10.842235,10842.235 +13437,2025-03-08T16:22:11.175558-08:00,1968.0,10.837868,10837.868 +13438,2025-03-08T16:22:22.030536-08:00,1931.0,10.854978,10854.978 +13439,2025-03-08T16:22:32.861185-08:00,1965.0,10.830649,10830.649 +13440,2025-03-08T16:22:43.715647-08:00,1959.0,10.854462,10854.462 +13441,2025-03-08T16:22:54.558217-08:00,1931.0,10.84257,10842.57 +13442,2025-03-08T16:23:05.396381-08:00,1933.0,10.838164,10838.164 +13443,2025-03-08T16:23:16.244567-08:00,1931.0,10.848186,10848.186 +13444,2025-03-08T16:23:27.088315-08:00,1873.0,10.843748,10843.748 +13445,2025-03-08T16:23:37.930661-08:00,1918.0,10.842346,10842.346 +13446,2025-03-08T16:23:48.779467-08:00,1889.0,10.848806,10848.806 +13447,2025-03-08T16:23:59.610484-08:00,1965.0,10.831017,10831.017 +13448,2025-03-08T16:24:10.458802-08:00,1943.0,10.848318,10848.318 +13449,2025-03-08T16:24:21.292408-08:00,1892.0,10.833606,10833.606 +13450,2025-03-08T16:24:42.995381-08:00,1967.0,21.702973,21702.973 +13451,2025-03-08T16:24:53.838471-08:00,1920.0,10.84309,10843.09 +13452,2025-03-08T16:25:04.686592-08:00,1959.0,10.848121,10848.121 +13453,2025-03-08T16:25:15.530332-08:00,1967.0,10.84374,10843.74 +13454,2025-03-08T16:25:26.368125-08:00,1913.0,10.837793,10837.793 +13455,2025-03-08T16:25:37.215377-08:00,1963.0,10.847252,10847.252 +13456,2025-03-08T16:25:48.060453-08:00,1965.0,10.845076,10845.076 +13457,2025-03-08T16:25:58.896692-08:00,1904.0,10.836239,10836.239 +13458,2025-03-08T16:26:09.739454-08:00,1945.0,10.842762,10842.762 +13459,2025-03-08T16:26:20.582565-08:00,1870.0,10.843111,10843.111 +13460,2025-03-08T16:26:31.426318-08:00,1911.0,10.843753,10843.753 +13461,2025-03-08T16:26:42.269767-08:00,1947.0,10.843449,10843.449 +13462,2025-03-08T16:26:53.117335-08:00,1887.0,10.847568,10847.568 +13463,2025-03-08T16:27:03.956259-08:00,1901.0,10.838924,10838.924 +13464,2025-03-08T16:27:14.794384-08:00,1921.0,10.838125,10838.125 +13465,2025-03-08T16:27:25.634376-08:00,1962.0,10.839992,10839.992 +13466,2025-03-08T16:27:36.472405-08:00,1957.0,10.838029,10838.029 +13467,2025-03-08T16:27:47.322311-08:00,1925.0,10.849906,10849.906 +13468,2025-03-08T16:27:58.169527-08:00,1936.0,10.847216,10847.216 +13469,2025-03-08T16:28:09.008327-08:00,1904.0,10.8388,10838.8 +13470,2025-03-08T16:28:19.849572-08:00,1922.0,10.841245,10841.245 +13471,2025-03-08T16:28:30.689705-08:00,1953.0,10.840133,10840.133 +13472,2025-03-08T16:28:41.530411-08:00,1909.0,10.840706,10840.706 +13473,2025-03-08T16:28:52.370329-08:00,1894.0,10.839918,10839.918 +13474,2025-03-08T16:29:03.211708-08:00,1943.0,10.841379,10841.379 +13475,2025-03-08T16:29:14.054783-08:00,1858.0,10.843075,10843.075 +13476,2025-03-08T16:29:24.892472-08:00,1951.0,10.837689,10837.689 +13477,2025-03-08T16:29:35.728572-08:00,1894.0,10.8361,10836.1 +13478,2025-03-08T16:29:46.573680-08:00,1907.0,10.845108,10845.108 +13479,2025-03-08T16:29:57.416015-08:00,1904.0,10.842335,10842.335 +13480,2025-03-08T16:30:08.262407-08:00,1859.0,10.846392,10846.392 +13481,2025-03-08T16:30:19.103808-08:00,1943.0,10.841401,10841.401 +13482,2025-03-08T16:30:29.945794-08:00,1927.0,10.841986,10841.986 +13483,2025-03-08T16:30:40.782510-08:00,1950.0,10.836716,10836.716 +13484,2025-03-08T16:31:02.468331-08:00,1907.0,21.685821,21685.821 +13485,2025-03-08T16:31:13.317332-08:00,1946.0,10.849001,10849.001 +13486,2025-03-08T16:31:24.161122-08:00,1895.0,10.84379,10843.79 +13487,2025-03-08T16:31:35.004628-08:00,1937.0,10.843506,10843.506 +13488,2025-03-08T16:31:45.835398-08:00,1945.0,10.83077,10830.77 +13489,2025-03-08T16:31:56.672919-08:00,1919.0,10.837521,10837.521 +13490,2025-03-08T16:32:07.516321-08:00,1934.0,10.843402,10843.402 +13491,2025-03-08T16:32:18.351309-08:00,1859.0,10.834988,10834.988 +13492,2025-03-08T16:32:29.191488-08:00,1872.0,10.840179,10840.179 +13493,2025-03-08T16:32:40.034855-08:00,1901.0,10.843367,10843.367 +13494,2025-03-08T16:32:50.869756-08:00,1925.0,10.834901,10834.901 +13495,2025-03-08T16:33:01.709315-08:00,1929.0,10.839559,10839.559 +13496,2025-03-08T16:33:12.556962-08:00,1907.0,10.847647,10847.647 +13497,2025-03-08T16:33:23.400516-08:00,1939.0,10.843554,10843.554 +13498,2025-03-08T16:33:34.230480-08:00,1937.0,10.829964,10829.964 +13499,2025-03-08T16:33:45.076953-08:00,1938.0,10.846473,10846.473 +13500,2025-03-08T16:33:55.917663-08:00,1903.0,10.84071,10840.71 +13501,2025-03-08T16:34:06.761504-08:00,1925.0,10.843841,10843.841 +13502,2025-03-08T16:34:17.593291-08:00,1909.0,10.831787,10831.787 +13503,2025-03-08T16:34:28.438906-08:00,1925.0,10.845615,10845.615 +13504,2025-03-08T16:34:39.285168-08:00,1854.0,10.846262,10846.262 +13505,2025-03-08T16:34:50.133160-08:00,1935.0,10.847992,10847.992 +13506,2025-03-08T16:35:00.972300-08:00,1911.0,10.83914,10839.14 +13507,2025-03-08T16:35:11.819560-08:00,1932.0,10.84726,10847.26 +13508,2025-03-08T16:35:22.662901-08:00,1922.0,10.843341,10843.341 +13509,2025-03-08T16:35:33.506831-08:00,1847.0,10.84393,10843.93 +13510,2025-03-08T16:35:44.348374-08:00,1924.0,10.841543,10841.543 +13511,2025-03-08T16:35:55.193840-08:00,1916.0,10.845466,10845.466 +13512,2025-03-08T16:36:06.040334-08:00,1870.0,10.846494,10846.494 +13513,2025-03-08T16:36:16.886454-08:00,1884.0,10.84612,10846.12 +13514,2025-03-08T16:36:27.728337-08:00,1923.0,10.841883,10841.883 +13515,2025-03-08T16:36:38.570131-08:00,1920.0,10.841794,10841.794 +13516,2025-03-08T16:36:49.419325-08:00,1862.0,10.849194,10849.194 +13517,2025-03-08T16:37:00.259328-08:00,1914.0,10.840003,10840.003 +13518,2025-03-08T16:37:11.100379-08:00,1921.0,10.841051,10841.051 +13519,2025-03-08T16:37:21.943536-08:00,1863.0,10.843157,10843.157 +13520,2025-03-08T16:37:32.787330-08:00,1866.0,10.843794,10843.794 +13521,2025-03-08T16:37:43.623716-08:00,1839.0,10.836386,10836.386 +13522,2025-03-08T16:37:54.465735-08:00,1914.0,10.842019,10842.019 +13523,2025-03-08T16:38:05.308804-08:00,1882.0,10.843069,10843.069 +13524,2025-03-08T16:38:16.160326-08:00,1901.0,10.851522,10851.522 +13525,2025-03-08T16:38:27.001309-08:00,1878.0,10.840983,10840.983 +13526,2025-03-08T16:38:37.850531-08:00,1849.0,10.849222,10849.222 +13527,2025-03-08T16:38:48.689459-08:00,1867.0,10.838928,10838.928 +13528,2025-03-08T16:38:59.535630-08:00,1851.0,10.846171,10846.171 +13529,2025-03-08T16:39:10.369379-08:00,1914.0,10.833749,10833.749 +13530,2025-03-08T16:39:21.216433-08:00,1875.0,10.847054,10847.054 +13531,2025-03-08T16:39:32.061245-08:00,1872.0,10.844812,10844.812 +13532,2025-03-08T16:39:42.897836-08:00,1830.0,10.836591,10836.591 +13533,2025-03-08T16:39:53.735328-08:00,1911.0,10.837492,10837.492 +13534,2025-03-08T16:40:04.577398-08:00,1850.0,10.84207,10842.07 +13535,2025-03-08T16:40:15.420378-08:00,1870.0,10.84298,10842.98 +13536,2025-03-08T16:40:26.264854-08:00,1825.0,10.844476,10844.476 +13537,2025-03-08T16:40:37.107412-08:00,1873.0,10.842558,10842.558 +13538,2025-03-08T16:40:47.945473-08:00,1866.0,10.838061,10838.061 +13539,2025-03-08T16:40:58.794334-08:00,1911.0,10.848861,10848.861 +13540,2025-03-08T16:41:09.631325-08:00,1857.0,10.836991,10836.991 +13541,2025-03-08T16:41:20.477328-08:00,1822.0,10.846003,10846.003 +13542,2025-03-08T16:41:31.317465-08:00,1884.0,10.840137,10840.137 +13543,2025-03-08T16:41:42.151657-08:00,1905.0,10.834192,10834.192 +13544,2025-03-08T16:41:52.998394-08:00,1904.0,10.846737,10846.737 +13545,2025-03-08T16:42:03.845029-08:00,1863.0,10.846635,10846.635 +13546,2025-03-08T16:42:14.680093-08:00,1883.0,10.835064,10835.064 +13547,2025-03-08T16:42:25.522480-08:00,1897.0,10.842387,10842.387 +13548,2025-03-08T16:42:36.371817-08:00,1826.0,10.849337,10849.337 +13549,2025-03-08T16:42:47.216318-08:00,1861.0,10.844501,10844.501 +13550,2025-03-08T16:42:58.060299-08:00,1904.0,10.843981,10843.981 +13551,2025-03-08T16:43:08.899385-08:00,1901.0,10.839086,10839.086 +13552,2025-03-08T16:43:19.751543-08:00,1863.0,10.852158,10852.158 +13553,2025-03-08T16:43:30.586905-08:00,1857.0,10.835362,10835.362 +13554,2025-03-08T16:43:41.440638-08:00,1891.0,10.853733,10853.733 +13555,2025-03-08T16:43:52.277035-08:00,1885.0,10.836397,10836.397 +13556,2025-03-08T16:44:03.120311-08:00,1899.0,10.843276,10843.276 +13557,2025-03-08T16:44:13.964649-08:00,1854.0,10.844338,10844.338 +13558,2025-03-08T16:44:24.812611-08:00,1853.0,10.847962,10847.962 +13559,2025-03-08T16:44:35.648752-08:00,1839.0,10.836141,10836.141 +13560,2025-03-08T16:44:46.501604-08:00,1891.0,10.852852,10852.852 +13561,2025-03-08T16:44:57.344309-08:00,1876.0,10.842705,10842.705 +13562,2025-03-08T16:45:08.188335-08:00,1849.0,10.844026,10844.026 +13563,2025-03-08T16:45:19.021434-08:00,1851.0,10.833099,10833.099 +13564,2025-03-08T16:45:29.864663-08:00,1891.0,10.843229,10843.229 +13565,2025-03-08T16:45:40.701486-08:00,1822.0,10.836823,10836.823 +13566,2025-03-08T16:45:51.535844-08:00,1811.0,10.834358,10834.358 +13567,2025-03-08T16:46:02.376563-08:00,1878.0,10.840719,10840.719 +13568,2025-03-08T16:46:13.214332-08:00,1872.0,10.837769,10837.769 +13569,2025-03-08T16:46:24.055706-08:00,1811.0,10.841374,10841.374 +13570,2025-03-08T16:46:34.901634-08:00,1799.0,10.845928,10845.928 +13571,2025-03-08T16:46:45.745330-08:00,1871.0,10.843696,10843.696 +13572,2025-03-08T16:46:56.583334-08:00,1885.0,10.838004,10838.004 +13573,2025-03-08T16:47:07.428835-08:00,1791.0,10.845501,10845.501 +13574,2025-03-08T16:47:18.272856-08:00,1872.0,10.844021,10844.021 +13575,2025-03-08T16:47:29.118465-08:00,1851.0,10.845609,10845.609 +13576,2025-03-08T16:47:39.965314-08:00,1876.0,10.846849,10846.849 +13577,2025-03-08T16:47:50.812326-08:00,1802.0,10.847012,10847.012 +13578,2025-03-08T16:48:01.653556-08:00,1878.0,10.84123,10841.23 +13579,2025-03-08T16:48:12.506333-08:00,1826.0,10.852777,10852.777 +13580,2025-03-08T16:48:23.352726-08:00,1846.0,10.846393,10846.393 +13581,2025-03-08T16:48:34.200725-08:00,1823.0,10.847999,10847.999 +13582,2025-03-08T16:48:45.039562-08:00,1830.0,10.838837,10838.837 +13583,2025-03-08T16:48:55.895332-08:00,1847.0,10.85577,10855.77 +13584,2025-03-08T16:49:06.745278-08:00,1872.0,10.849946,10849.946 +13585,2025-03-08T16:49:17.592335-08:00,1781.0,10.847057,10847.057 +13586,2025-03-08T16:49:28.435687-08:00,1830.0,10.843352,10843.352 +13587,2025-03-08T16:49:39.282592-08:00,1872.0,10.846905,10846.905 +13588,2025-03-08T16:49:50.133093-08:00,1869.0,10.850501,10850.501 +13589,2025-03-08T16:50:00.971332-08:00,1871.0,10.838239,10838.239 +13590,2025-03-08T16:50:11.818328-08:00,1860.0,10.846996,10846.996 +13591,2025-03-08T16:50:22.662384-08:00,1802.0,10.844056,10844.056 +13592,2025-03-08T16:50:33.505638-08:00,1809.0,10.843254,10843.254 +13593,2025-03-08T16:50:44.358901-08:00,1802.0,10.853263,10853.263 +13594,2025-03-08T16:50:55.202542-08:00,1782.0,10.843641,10843.641 +13595,2025-03-08T16:51:06.057980-08:00,1808.0,10.855438,10855.438 +13596,2025-03-08T16:51:16.900526-08:00,1840.0,10.842546,10842.546 +13597,2025-03-08T16:51:27.743315-08:00,1825.0,10.842789,10842.789 +13598,2025-03-08T16:51:38.586673-08:00,1865.0,10.843358,10843.358 +13599,2025-03-08T16:51:49.428935-08:00,1854.0,10.842262,10842.262 +13600,2025-03-08T16:52:00.278935-08:00,1856.0,10.85,10850.0 +13601,2025-03-08T16:52:11.121331-08:00,1821.0,10.842396,10842.396 +13602,2025-03-08T16:52:21.964328-08:00,1819.0,10.842997,10842.997 +13603,2025-03-08T16:52:32.812328-08:00,1847.0,10.848,10848.0 +13604,2025-03-08T16:52:43.657815-08:00,1791.0,10.845487,10845.487 +13605,2025-03-08T16:52:54.510649-08:00,1854.0,10.852834,10852.834 +13606,2025-03-08T16:53:05.355534-08:00,1856.0,10.844885,10844.885 +13607,2025-03-08T16:53:16.214600-08:00,1772.0,10.859066,10859.066 +13608,2025-03-08T16:53:27.058307-08:00,1787.0,10.843707,10843.707 +13609,2025-03-08T16:53:37.899463-08:00,1850.0,10.841156,10841.156 +13610,2025-03-08T16:53:48.744367-08:00,1808.0,10.844904,10844.904 +13611,2025-03-08T16:53:59.598329-08:00,1763.0,10.853962,10853.962 +13612,2025-03-08T16:54:10.447390-08:00,1840.0,10.849061,10849.061 +13613,2025-03-08T16:54:21.290323-08:00,1771.0,10.842933,10842.933 +13614,2025-03-08T16:54:32.151159-08:00,1749.0,10.860836,10860.836 +13615,2025-03-08T16:54:42.993712-08:00,1805.0,10.842553,10842.553 +13616,2025-03-08T16:54:53.846514-08:00,1839.0,10.852802,10852.802 +13617,2025-03-08T16:55:04.695329-08:00,1850.0,10.848815,10848.815 +13618,2025-03-08T16:55:15.549643-08:00,1846.0,10.854314,10854.314 +13619,2025-03-08T16:55:26.399523-08:00,1839.0,10.84988,10849.88 +13620,2025-03-08T16:55:37.253652-08:00,1834.0,10.854129,10854.129 +13621,2025-03-08T16:55:48.097414-08:00,1776.0,10.843762,10843.762 +13622,2025-03-08T16:55:58.945375-08:00,1840.0,10.847961,10847.961 +13623,2025-03-08T16:56:09.795334-08:00,1843.0,10.849959,10849.959 +13624,2025-03-08T16:56:20.641758-08:00,1803.0,10.846424,10846.424 +13625,2025-03-08T16:56:31.493027-08:00,1808.0,10.851269,10851.269 +13626,2025-03-08T16:56:42.347119-08:00,1794.0,10.854092,10854.092 +13627,2025-03-08T16:56:53.191327-08:00,1840.0,10.844208,10844.208 +13628,2025-03-08T16:57:04.032702-08:00,1825.0,10.841375,10841.375 +13629,2025-03-08T16:57:14.881508-08:00,1777.0,10.848806,10848.806 +13630,2025-03-08T16:57:25.730634-08:00,1838.0,10.849126,10849.126 +13631,2025-03-08T16:57:36.573537-08:00,1835.0,10.842903,10842.903 +13632,2025-03-08T16:57:47.422061-08:00,1837.0,10.848524,10848.524 +13633,2025-03-08T16:57:58.264328-08:00,1833.0,10.842267,10842.267 +13634,2025-03-08T16:58:09.109332-08:00,1792.0,10.845004,10845.004 +13635,2025-03-08T16:58:19.967330-08:00,1793.0,10.857998,10857.998 +13636,2025-03-08T16:58:30.816580-08:00,1821.0,10.84925,10849.25 +13637,2025-03-08T16:58:41.667370-08:00,1834.0,10.85079,10850.79 +13638,2025-03-08T16:58:52.516332-08:00,1749.0,10.848962,10848.962 +13639,2025-03-08T16:59:03.356634-08:00,1795.0,10.840302,10840.302 +13640,2025-03-08T16:59:14.200942-08:00,1818.0,10.844308,10844.308 +13641,2025-03-08T16:59:25.057663-08:00,1794.0,10.856721,10856.721 +13642,2025-03-08T16:59:35.904475-08:00,1781.0,10.846812,10846.812 +13643,2025-03-08T16:59:46.754404-08:00,1741.0,10.849929,10849.929 +13644,2025-03-08T16:59:57.599307-08:00,1778.0,10.844903,10844.903 +13645,2025-03-08T17:00:08.445081-08:00,1825.0,10.845774,10845.774 +13646,2025-03-08T17:00:19.300325-08:00,1781.0,10.855244,10855.244 +13647,2025-03-08T17:00:30.148677-08:00,1814.0,10.848352,10848.352 +13648,2025-03-08T17:00:40.992096-08:00,1809.0,10.843419,10843.419 +13649,2025-03-08T17:00:51.844755-08:00,1827.0,10.852659,10852.659 +13650,2025-03-08T17:01:02.683467-08:00,1780.0,10.838712,10838.712 +13651,2025-03-08T17:01:13.523330-08:00,1766.0,10.839863,10839.863 +13652,2025-03-08T17:01:24.376201-08:00,1771.0,10.852871,10852.871 +13653,2025-03-08T17:01:35.219647-08:00,1810.0,10.843446,10843.446 +13654,2025-03-08T17:01:46.058567-08:00,1744.0,10.83892,10838.92 +13655,2025-03-08T17:01:56.904327-08:00,1719.0,10.84576,10845.76 +13656,2025-03-08T17:02:07.746326-08:00,1816.0,10.841999,10841.999 +13657,2025-03-08T17:02:18.590585-08:00,1775.0,10.844259,10844.259 +13658,2025-03-08T17:02:29.445677-08:00,1765.0,10.855092,10855.092 +13659,2025-03-08T17:02:40.287815-08:00,1743.0,10.842138,10842.138 +13660,2025-03-08T17:02:51.138380-08:00,1776.0,10.850565,10850.565 +13661,2025-03-08T17:03:01.987451-08:00,1781.0,10.849071,10849.071 +13662,2025-03-08T17:03:12.833380-08:00,1813.0,10.845929,10845.929 +13663,2025-03-08T17:03:23.679371-08:00,1732.0,10.845991,10845.991 +13664,2025-03-08T17:03:34.532599-08:00,1730.0,10.853228,10853.228 +13665,2025-03-08T17:03:45.375548-08:00,1798.0,10.842949,10842.949 +13666,2025-03-08T17:03:56.232644-08:00,1808.0,10.857096,10857.096 +13667,2025-03-08T17:04:07.076634-08:00,1759.0,10.84399,10843.99 +13668,2025-03-08T17:04:17.920857-08:00,1808.0,10.844223,10844.223 +13669,2025-03-08T17:04:28.767477-08:00,1788.0,10.84662,10846.62 +13670,2025-03-08T17:04:39.613723-08:00,1724.0,10.846246,10846.246 +13671,2025-03-08T17:04:50.451675-08:00,1744.0,10.837952,10837.952 +13672,2025-03-08T17:05:01.305649-08:00,1809.0,10.853974,10853.974 +13673,2025-03-08T17:05:12.149097-08:00,1807.0,10.843448,10843.448 +13674,2025-03-08T17:05:23.009935-08:00,1785.0,10.860838,10860.838 +13675,2025-03-08T17:05:33.856079-08:00,1711.0,10.846144,10846.144 +13676,2025-03-08T17:05:44.707108-08:00,1765.0,10.851029,10851.029 +13677,2025-03-08T17:05:55.558633-08:00,1777.0,10.851525,10851.525 +13678,2025-03-08T17:06:06.412855-08:00,1794.0,10.854222,10854.222 +13679,2025-03-08T17:06:17.251302-08:00,1794.0,10.838447,10838.447 +13680,2025-03-08T17:06:28.110013-08:00,1726.0,10.858711,10858.711 +13681,2025-03-08T17:06:38.953307-08:00,1806.0,10.843294,10843.294 +13682,2025-03-08T17:06:49.807454-08:00,1747.0,10.854147,10854.147 +13683,2025-03-08T17:07:00.646298-08:00,1805.0,10.838844,10838.844 +13684,2025-03-08T17:07:11.492658-08:00,1750.0,10.84636,10846.36 +13685,2025-03-08T17:07:22.343463-08:00,1803.0,10.850805,10850.805 +13686,2025-03-08T17:07:33.185968-08:00,1777.0,10.842505,10842.505 +13687,2025-03-08T17:07:44.025472-08:00,1798.0,10.839504,10839.504 +13688,2025-03-08T17:07:54.869589-08:00,1753.0,10.844117,10844.117 +13689,2025-03-08T17:08:05.721673-08:00,1757.0,10.852084,10852.084 +13690,2025-03-08T17:08:16.565918-08:00,1793.0,10.844245,10844.245 +13691,2025-03-08T17:08:27.412274-08:00,1771.0,10.846356,10846.356 +13692,2025-03-08T17:08:38.273280-08:00,1762.0,10.861006,10861.006 +13693,2025-03-08T17:08:49.115350-08:00,1746.0,10.84207,10842.07 +13694,2025-03-08T17:08:59.964662-08:00,1715.0,10.849312,10849.312 +13695,2025-03-08T17:09:10.813364-08:00,1792.0,10.848702,10848.702 +13696,2025-03-08T17:09:21.661513-08:00,1776.0,10.848149,10848.149 +13697,2025-03-08T17:09:32.503538-08:00,1766.0,10.842025,10842.025 +13698,2025-03-08T17:09:43.345357-08:00,1794.0,10.841819,10841.819 +13699,2025-03-08T17:09:54.195307-08:00,1793.0,10.84995,10849.95 +13700,2025-03-08T17:10:05.052653-08:00,1746.0,10.857346,10857.346 +13701,2025-03-08T17:10:15.896306-08:00,1709.0,10.843653,10843.653 +13702,2025-03-08T17:10:26.749307-08:00,1791.0,10.853001,10853.001 +13703,2025-03-08T17:10:37.588308-08:00,1744.0,10.839001,10839.001 +13704,2025-03-08T17:10:48.431738-08:00,1779.0,10.84343,10843.43 +13705,2025-03-08T17:10:59.284400-08:00,1707.0,10.852662,10852.662 +13706,2025-03-08T17:11:10.133846-08:00,1791.0,10.849446,10849.446 +13707,2025-03-08T17:11:20.982536-08:00,1771.0,10.84869,10848.69 +13708,2025-03-08T17:11:31.823442-08:00,1787.0,10.840906,10840.906 +13709,2025-03-08T17:11:42.669515-08:00,1745.0,10.846073,10846.073 +13710,2025-03-08T17:12:04.367308-08:00,1776.0,21.697793,21697.793 +13711,2025-03-08T17:12:15.213645-08:00,1786.0,10.846337,10846.337 +13712,2025-03-08T17:12:26.063761-08:00,1723.0,10.850116,10850.116 +13713,2025-03-08T17:12:36.908415-08:00,1707.0,10.844654,10844.654 +13714,2025-03-08T17:12:47.756922-08:00,1703.0,10.848507,10848.507 +13715,2025-03-08T17:12:58.605280-08:00,1771.0,10.848358,10848.358 +13716,2025-03-08T17:13:09.453310-08:00,1761.0,10.84803,10848.03 +13717,2025-03-08T17:13:20.291641-08:00,1781.0,10.838331,10838.331 +13718,2025-03-08T17:13:31.145248-08:00,1749.0,10.853607,10853.607 +13719,2025-03-08T17:13:41.994124-08:00,1782.0,10.848876,10848.876 +13720,2025-03-08T17:13:52.840302-08:00,1719.0,10.846178,10846.178 +13721,2025-03-08T17:14:03.690603-08:00,1776.0,10.850301,10850.301 +13722,2025-03-08T17:14:14.540726-08:00,1781.0,10.850123,10850.123 +13723,2025-03-08T17:14:25.387306-08:00,1766.0,10.84658,10846.58 +13724,2025-03-08T17:14:36.230440-08:00,1744.0,10.843134,10843.134 +13725,2025-03-08T17:14:47.082298-08:00,1756.0,10.851858,10851.858 +13726,2025-03-08T17:14:57.924190-08:00,1781.0,10.841892,10841.892 +13727,2025-03-08T17:15:08.775351-08:00,1776.0,10.851161,10851.161 +13728,2025-03-08T17:15:19.622571-08:00,1772.0,10.84722,10847.22 +13729,2025-03-08T17:15:30.469309-08:00,1780.0,10.846738,10846.738 +13730,2025-03-08T17:15:41.326480-08:00,1782.0,10.857171,10857.171 +13731,2025-03-08T17:15:52.173345-08:00,1732.0,10.846865,10846.865 +13732,2025-03-08T17:16:03.026435-08:00,1755.0,10.85309,10853.09 +13733,2025-03-08T17:16:13.880438-08:00,1722.0,10.854003,10854.003 +13734,2025-03-08T17:16:24.724789-08:00,1743.0,10.844351,10844.351 +13735,2025-03-08T17:16:35.577669-08:00,1747.0,10.85288,10852.88 +13736,2025-03-08T17:16:46.427730-08:00,1751.0,10.850061,10850.061 +13737,2025-03-08T17:16:57.267427-08:00,1714.0,10.839697,10839.697 +13738,2025-03-08T17:17:08.115370-08:00,1744.0,10.847943,10847.943 +13739,2025-03-08T17:17:18.956543-08:00,1725.0,10.841173,10841.173 +13740,2025-03-08T17:17:29.804612-08:00,1727.0,10.848069,10848.069 +13741,2025-03-08T17:17:40.654310-08:00,1763.0,10.849698,10849.698 +13742,2025-03-08T17:17:51.506494-08:00,1760.0,10.852184,10852.184 +13743,2025-03-08T17:18:02.354616-08:00,1717.0,10.848122,10848.122 +13744,2025-03-08T17:18:13.203441-08:00,1722.0,10.848825,10848.825 +13745,2025-03-08T17:18:24.045308-08:00,1713.0,10.841867,10841.867 +13746,2025-03-08T17:18:34.906808-08:00,1771.0,10.8615,10861.5 +13747,2025-03-08T17:18:45.748565-08:00,1779.0,10.841757,10841.757 +13748,2025-03-08T17:18:56.592445-08:00,1749.0,10.84388,10843.88 +13749,2025-03-08T17:19:07.434882-08:00,1731.0,10.842437,10842.437 +13750,2025-03-08T17:19:18.283393-08:00,1757.0,10.848511,10848.511 +13751,2025-03-08T17:19:29.126586-08:00,1719.0,10.843193,10843.193 +13752,2025-03-08T17:19:39.974305-08:00,1734.0,10.847719,10847.719 +13753,2025-03-08T17:19:50.812302-08:00,1770.0,10.837997,10837.997 +13754,2025-03-08T17:20:01.650573-08:00,1705.0,10.838271,10838.271 +13755,2025-03-08T17:20:12.499391-08:00,1771.0,10.848818,10848.818 +13756,2025-03-08T17:20:23.339298-08:00,1740.0,10.839907,10839.907 +13757,2025-03-08T17:20:34.186309-08:00,1775.0,10.847011,10847.011 +13758,2025-03-08T17:20:45.033560-08:00,1772.0,10.847251,10847.251 +13759,2025-03-08T17:20:55.877637-08:00,1741.0,10.844077,10844.077 +13760,2025-03-08T17:21:06.720145-08:00,1767.0,10.842508,10842.508 +13761,2025-03-08T17:21:17.569362-08:00,1764.0,10.849217,10849.217 +13762,2025-03-08T17:21:28.411303-08:00,1775.0,10.841941,10841.941 +13763,2025-03-08T17:21:39.255303-08:00,1774.0,10.844,10844.0 +13764,2025-03-08T17:21:50.098492-08:00,1751.0,10.843189,10843.189 +13765,2025-03-08T17:22:00.934867-08:00,1773.0,10.836375,10836.375 +13766,2025-03-08T17:22:11.786307-08:00,1713.0,10.85144,10851.44 +13767,2025-03-08T17:22:22.632531-08:00,1695.0,10.846224,10846.224 +13768,2025-03-08T17:22:33.471354-08:00,1733.0,10.838823,10838.823 +13769,2025-03-08T17:22:44.319537-08:00,1711.0,10.848183,10848.183 +13770,2025-03-08T17:22:55.160542-08:00,1773.0,10.841005,10841.005 +13771,2025-03-08T17:23:06.000349-08:00,1691.0,10.839807,10839.807 +13772,2025-03-08T17:23:16.847296-08:00,1723.0,10.846947,10846.947 +13773,2025-03-08T17:23:27.698340-08:00,1680.0,10.851044,10851.044 +13774,2025-03-08T17:23:38.547010-08:00,1680.0,10.84867,10848.67 +13775,2025-03-08T17:23:49.384054-08:00,1766.0,10.837044,10837.044 +13776,2025-03-08T17:24:00.227571-08:00,1765.0,10.843517,10843.517 +13777,2025-03-08T17:24:11.073361-08:00,1745.0,10.84579,10845.79 +13778,2025-03-08T17:24:21.918315-08:00,1727.0,10.844954,10844.954 +13779,2025-03-08T17:24:32.761621-08:00,1771.0,10.843306,10843.306 +13780,2025-03-08T17:24:43.604902-08:00,1776.0,10.843281,10843.281 +13781,2025-03-08T17:24:54.454465-08:00,1774.0,10.849563,10849.563 +13782,2025-03-08T17:25:05.302306-08:00,1769.0,10.847841,10847.841 +13783,2025-03-08T17:25:16.146303-08:00,1769.0,10.843997,10843.997 +13784,2025-03-08T17:25:26.987403-08:00,1740.0,10.8411,10841.1 +13785,2025-03-08T17:25:37.826897-08:00,1735.0,10.839494,10839.494 +13786,2025-03-08T17:25:48.673331-08:00,1723.0,10.846434,10846.434 +13787,2025-03-08T17:25:59.517309-08:00,1769.0,10.843978,10843.978 +13788,2025-03-08T17:26:10.360309-08:00,1725.0,10.843,10843.0 +13789,2025-03-08T17:26:21.204641-08:00,1722.0,10.844332,10844.332 +13790,2025-03-08T17:26:42.897447-08:00,1685.0,21.692806,21692.806 +13791,2025-03-08T17:26:53.739441-08:00,1725.0,10.841994,10841.994 +13792,2025-03-08T17:27:04.587714-08:00,1755.0,10.848273,10848.273 +13793,2025-03-08T17:27:15.441413-08:00,1680.0,10.853699,10853.699 +13794,2025-03-08T17:27:26.274606-08:00,1743.0,10.833193,10833.193 +13795,2025-03-08T17:27:37.128625-08:00,1755.0,10.854019,10854.019 +13796,2025-03-08T17:27:47.971958-08:00,1765.0,10.843333,10843.333 +13797,2025-03-08T17:27:58.814544-08:00,1724.0,10.842586,10842.586 +13798,2025-03-08T17:28:09.658295-08:00,1725.0,10.843751,10843.751 +13799,2025-03-08T17:28:20.501627-08:00,1715.0,10.843332,10843.332 +13800,2025-03-08T17:28:31.343723-08:00,1767.0,10.842096,10842.096 +13801,2025-03-08T17:28:42.186398-08:00,1763.0,10.842675,10842.675 +13802,2025-03-08T17:28:53.037533-08:00,1765.0,10.851135,10851.135 +13803,2025-03-08T17:29:03.879285-08:00,1757.0,10.841752,10841.752 +13804,2025-03-08T17:29:14.718119-08:00,1719.0,10.838834,10838.834 +13805,2025-03-08T17:29:25.553486-08:00,1680.0,10.835367,10835.367 +13806,2025-03-08T17:29:36.399307-08:00,1666.0,10.845821,10845.821 +13807,2025-03-08T17:29:47.234548-08:00,1697.0,10.835241,10835.241 +13808,2025-03-08T17:29:58.083168-08:00,1687.0,10.84862,10848.62 +13809,2025-03-08T17:30:08.919221-08:00,1735.0,10.836053,10836.053 +13810,2025-03-08T17:30:19.768298-08:00,1751.0,10.849077,10849.077 +13811,2025-03-08T17:30:30.606300-08:00,1760.0,10.838002,10838.002 +13812,2025-03-08T17:30:41.452662-08:00,1726.0,10.846362,10846.362 +13813,2025-03-08T17:30:52.297924-08:00,1744.0,10.845262,10845.262 +13814,2025-03-08T17:31:03.148331-08:00,1710.0,10.850407,10850.407 +13815,2025-03-08T17:31:13.985548-08:00,1750.0,10.837217,10837.217 +13816,2025-03-08T17:31:24.835379-08:00,1744.0,10.849831,10849.831 +13817,2025-03-08T17:31:35.676644-08:00,1751.0,10.841265,10841.265 +13818,2025-03-08T17:31:46.519684-08:00,1758.0,10.84304,10843.04 +13819,2025-03-08T17:31:57.357307-08:00,1726.0,10.837623,10837.623 +13820,2025-03-08T17:32:08.196367-08:00,1719.0,10.83906,10839.06 +13821,2025-03-08T17:32:19.047287-08:00,1761.0,10.85092,10850.92 +13822,2025-03-08T17:32:29.891605-08:00,1683.0,10.844318,10844.318 +13823,2025-03-08T17:32:40.734355-08:00,1757.0,10.84275,10842.75 +13824,2025-03-08T17:32:51.576529-08:00,1739.0,10.842174,10842.174 +13825,2025-03-08T17:33:02.415579-08:00,1760.0,10.83905,10839.05 +13826,2025-03-08T17:33:13.266624-08:00,1680.0,10.851045,10851.045 +13827,2025-03-08T17:33:24.113220-08:00,1761.0,10.846596,10846.596 +13828,2025-03-08T17:33:34.951580-08:00,1749.0,10.83836,10838.36 +13829,2025-03-08T17:33:45.791309-08:00,1761.0,10.839729,10839.729 +13830,2025-03-08T17:33:56.638302-08:00,1727.0,10.846993,10846.993 +13831,2025-03-08T17:34:07.476702-08:00,1728.0,10.8384,10838.4 +13832,2025-03-08T17:34:18.320279-08:00,1714.0,10.843577,10843.577 +13833,2025-03-08T17:34:29.165307-08:00,1680.0,10.845028,10845.028 +13834,2025-03-08T17:34:40.009553-08:00,1758.0,10.844246,10844.246 +13835,2025-03-08T17:34:50.851653-08:00,1707.0,10.8421,10842.1 +13836,2025-03-08T17:35:01.696376-08:00,1749.0,10.844723,10844.723 +13837,2025-03-08T17:35:12.537303-08:00,1746.0,10.840927,10840.927 +13838,2025-03-08T17:35:23.380363-08:00,1748.0,10.84306,10843.06 +13839,2025-03-08T17:35:34.223301-08:00,1670.0,10.842938,10842.938 +13840,2025-03-08T17:35:45.067628-08:00,1753.0,10.844327,10844.327 +13841,2025-03-08T17:35:55.914586-08:00,1709.0,10.846958,10846.958 +13842,2025-03-08T17:36:06.754306-08:00,1758.0,10.83972,10839.72 +13843,2025-03-08T17:36:17.603543-08:00,1666.0,10.849237,10849.237 +13844,2025-03-08T17:36:28.441182-08:00,1711.0,10.837639,10837.639 +13845,2025-03-08T17:36:39.288402-08:00,1709.0,10.84722,10847.22 +13846,2025-03-08T17:36:50.131459-08:00,1753.0,10.843057,10843.057 +13847,2025-03-08T17:37:00.969335-08:00,1687.0,10.837876,10837.876 +13848,2025-03-08T17:37:22.654647-08:00,1709.0,21.685312,21685.312 +13849,2025-03-08T17:37:33.507589-08:00,1742.0,10.852942,10852.942 +13850,2025-03-08T17:37:44.348291-08:00,1709.0,10.840702,10840.702 +13851,2025-03-08T17:37:55.197606-08:00,1711.0,10.849315,10849.315 +13852,2025-03-08T17:38:06.045302-08:00,1741.0,10.847696,10847.696 +13853,2025-03-08T17:38:16.885915-08:00,1711.0,10.840613,10840.613 +13854,2025-03-08T17:38:27.732757-08:00,1742.0,10.846842,10846.842 +13855,2025-03-08T17:38:38.569431-08:00,1747.0,10.836674,10836.674 +13856,2025-03-08T17:38:49.415544-08:00,1703.0,10.846113,10846.113 +13857,2025-03-08T17:39:00.260309-08:00,1739.0,10.844765,10844.765 +13858,2025-03-08T17:39:11.108303-08:00,1744.0,10.847994,10847.994 +13859,2025-03-08T17:39:21.946378-08:00,1700.0,10.838075,10838.075 +13860,2025-03-08T17:39:32.783554-08:00,1691.0,10.837176,10837.176 +13861,2025-03-08T17:39:43.625437-08:00,1728.0,10.841883,10841.883 +13862,2025-03-08T17:39:54.464454-08:00,1731.0,10.839017,10839.017 +13863,2025-03-08T17:40:05.313662-08:00,1747.0,10.849208,10849.208 +13864,2025-03-08T17:40:16.146551-08:00,1749.0,10.832889,10832.889 +13865,2025-03-08T17:40:26.988562-08:00,1711.0,10.842011,10842.011 +13866,2025-03-08T17:40:37.832565-08:00,1733.0,10.844003,10844.003 +13867,2025-03-08T17:40:48.674358-08:00,1699.0,10.841793,10841.793 +13868,2025-03-08T17:40:59.512300-08:00,1691.0,10.837942,10837.942 +13869,2025-03-08T17:41:10.356162-08:00,1697.0,10.843862,10843.862 +13870,2025-03-08T17:41:21.202713-08:00,1728.0,10.846551,10846.551 +13871,2025-03-08T17:41:32.046185-08:00,1687.0,10.843472,10843.472 +13872,2025-03-08T17:41:42.889300-08:00,1710.0,10.843115,10843.115 +13873,2025-03-08T17:41:53.727578-08:00,1746.0,10.838278,10838.278 +13874,2025-03-08T17:42:04.575573-08:00,1743.0,10.847995,10847.995 +13875,2025-03-08T17:42:15.418728-08:00,1734.0,10.843155,10843.155 +13876,2025-03-08T17:42:26.251306-08:00,1741.0,10.832578,10832.578 +13877,2025-03-08T17:42:37.094550-08:00,1679.0,10.843244,10843.244 +13878,2025-03-08T17:42:47.943593-08:00,1717.0,10.849043,10849.043 +13879,2025-03-08T17:42:58.781645-08:00,1746.0,10.838052,10838.052 +13880,2025-03-08T17:43:09.623524-08:00,1657.0,10.841879,10841.879 +13881,2025-03-08T17:43:20.465359-08:00,1743.0,10.841835,10841.835 +13882,2025-03-08T17:43:31.309499-08:00,1713.0,10.84414,10844.14 +13883,2025-03-08T17:43:42.147667-08:00,1744.0,10.838168,10838.168 +13884,2025-03-08T17:43:52.979302-08:00,1706.0,10.831635,10831.635 +13885,2025-03-08T17:44:03.824515-08:00,1672.0,10.845213,10845.213 +13886,2025-03-08T17:44:14.672673-08:00,1663.0,10.848158,10848.158 +13887,2025-03-08T17:44:25.514571-08:00,1735.0,10.841898,10841.898 +13888,2025-03-08T17:44:36.349455-08:00,1686.0,10.834884,10834.884 +13889,2025-03-08T17:44:47.193562-08:00,1741.0,10.844107,10844.107 +13890,2025-03-08T17:44:58.029702-08:00,1730.0,10.83614,10836.14 +13891,2025-03-08T17:45:08.874525-08:00,1694.0,10.844823,10844.823 +13892,2025-03-08T17:45:19.717298-08:00,1741.0,10.842773,10842.773 +13893,2025-03-08T17:45:30.566411-08:00,1693.0,10.849113,10849.113 +13894,2025-03-08T17:45:41.399788-08:00,1743.0,10.833377,10833.377 +13895,2025-03-08T17:45:52.247377-08:00,1697.0,10.847589,10847.589 +13896,2025-03-08T17:46:03.089506-08:00,1739.0,10.842129,10842.129 +13897,2025-03-08T17:46:13.934303-08:00,1680.0,10.844797,10844.797 +13898,2025-03-08T17:46:24.771435-08:00,1659.0,10.837132,10837.132 +13899,2025-03-08T17:46:35.619595-08:00,1705.0,10.84816,10848.16 +13900,2025-03-08T17:46:46.469832-08:00,1698.0,10.850237,10850.237 +13901,2025-03-08T17:46:57.312371-08:00,1675.0,10.842539,10842.539 +13902,2025-03-08T17:47:08.160355-08:00,1743.0,10.847984,10847.984 +13903,2025-03-08T17:47:18.997543-08:00,1658.0,10.837188,10837.188 +13904,2025-03-08T17:47:29.846643-08:00,1730.0,10.8491,10849.1 +13905,2025-03-08T17:47:40.680431-08:00,1671.0,10.833788,10833.788 +13906,2025-03-08T17:47:51.531585-08:00,1722.0,10.851154,10851.154 +13907,2025-03-08T17:48:02.373306-08:00,1739.0,10.841721,10841.721 +13908,2025-03-08T17:48:13.219499-08:00,1698.0,10.846193,10846.193 +13909,2025-03-08T17:48:24.061946-08:00,1738.0,10.842447,10842.447 +13910,2025-03-08T17:48:34.910315-08:00,1728.0,10.848369,10848.369 +13911,2025-03-08T17:48:45.748283-08:00,1738.0,10.837968,10837.968 +13912,2025-03-08T17:48:56.598396-08:00,1735.0,10.850113,10850.113 +13913,2025-03-08T17:49:07.434630-08:00,1735.0,10.836234,10836.234 +13914,2025-03-08T17:49:18.287635-08:00,1683.0,10.853005,10853.005 +13915,2025-03-08T17:49:29.127517-08:00,1717.0,10.839882,10839.882 +13916,2025-03-08T17:49:39.964585-08:00,1683.0,10.837068,10837.068 +13917,2025-03-08T17:49:50.806486-08:00,1734.0,10.841901,10841.901 +13918,2025-03-08T17:50:01.646612-08:00,1732.0,10.840126,10840.126 +13919,2025-03-08T17:50:12.488298-08:00,1696.0,10.841686,10841.686 +13920,2025-03-08T17:50:23.331541-08:00,1702.0,10.843243,10843.243 +13921,2025-03-08T17:50:34.173591-08:00,1669.0,10.84205,10842.05 +13922,2025-03-08T17:50:45.013649-08:00,1699.0,10.840058,10840.058 +13923,2025-03-08T17:50:55.849361-08:00,1686.0,10.835712,10835.712 +13924,2025-03-08T17:51:06.696298-08:00,1691.0,10.846937,10846.937 +13925,2025-03-08T17:51:17.538298-08:00,1648.0,10.842,10842.0 +13926,2025-03-08T17:51:28.382881-08:00,1731.0,10.844583,10844.583 +13927,2025-03-08T17:51:39.220678-08:00,1675.0,10.837797,10837.797 +13928,2025-03-08T17:51:50.064459-08:00,1641.0,10.843781,10843.781 +13929,2025-03-08T17:52:00.902843-08:00,1727.0,10.838384,10838.384 +13930,2025-03-08T17:52:11.733298-08:00,1641.0,10.830455,10830.455 +13931,2025-03-08T17:52:22.573304-08:00,1715.0,10.840006,10840.006 +13932,2025-03-08T17:52:33.418285-08:00,1691.0,10.844981,10844.981 +13933,2025-03-08T17:52:44.258089-08:00,1653.0,10.839804,10839.804 +13934,2025-03-08T17:52:55.095307-08:00,1709.0,10.837218,10837.218 +13935,2025-03-08T17:53:05.936303-08:00,1680.0,10.840996,10840.996 +13936,2025-03-08T17:53:16.774571-08:00,1679.0,10.838268,10838.268 +13937,2025-03-08T17:53:25.882473-08:00,1730.0,9.107902,9107.902 +13938,2025-03-08T17:53:27.605307-08:00,1694.0,1.722834,1722.834 +13939,2025-03-08T17:53:38.454652-08:00,1712.0,10.849345,10849.345 +13940,2025-03-08T17:53:49.287623-08:00,1731.0,10.832971,10832.971 +13941,2025-03-08T17:54:00.128347-08:00,1680.0,10.840724,10840.724 +13942,2025-03-08T17:54:10.980807-08:00,1724.0,10.85246,10852.46 +13943,2025-03-08T17:54:21.811800-08:00,1726.0,10.830993,10830.993 +13944,2025-03-08T17:54:32.653670-08:00,1657.0,10.84187,10841.87 +13945,2025-03-08T17:54:43.491304-08:00,1717.0,10.837634,10837.634 +13946,2025-03-08T17:54:54.333308-08:00,1675.0,10.842004,10842.004 +13947,2025-03-08T17:55:05.181309-08:00,1683.0,10.848001,10848.001 +13948,2025-03-08T17:55:16.026386-08:00,1707.0,10.845077,10845.077 +13949,2025-03-08T17:55:26.876604-08:00,1712.0,10.850218,10850.218 +13950,2025-03-08T17:55:37.714348-08:00,1724.0,10.837744,10837.744 +13951,2025-03-08T17:55:48.555772-08:00,1728.0,10.841424,10841.424 +13952,2025-03-08T17:55:59.393653-08:00,1702.0,10.837881,10837.881 +13953,2025-03-08T17:56:10.232307-08:00,1711.0,10.838654,10838.654 +13954,2025-03-08T17:56:21.078305-08:00,1727.0,10.845998,10845.998 +13955,2025-03-08T17:56:31.916307-08:00,1677.0,10.838002,10838.002 +13956,2025-03-08T17:56:42.763259-08:00,1726.0,10.846952,10846.952 +13957,2025-03-08T17:56:53.607626-08:00,1658.0,10.844367,10844.367 +13958,2025-03-08T17:57:04.441046-08:00,1627.0,10.83342,10833.42 +13959,2025-03-08T17:57:15.283532-08:00,1686.0,10.842486,10842.486 +13960,2025-03-08T17:57:26.125979-08:00,1726.0,10.842447,10842.447 +13961,2025-03-08T17:57:36.968752-08:00,1712.0,10.842773,10842.773 +13962,2025-03-08T17:57:47.811292-08:00,1705.0,10.84254,10842.54 +13963,2025-03-08T17:57:58.644340-08:00,1721.0,10.833048,10833.048 +13964,2025-03-08T17:58:09.486639-08:00,1629.0,10.842299,10842.299 +13965,2025-03-08T17:58:20.329348-08:00,1662.0,10.842709,10842.709 +13966,2025-03-08T17:58:31.168539-08:00,1707.0,10.839191,10839.191 +13967,2025-03-08T17:58:42.015306-08:00,1664.0,10.846767,10846.767 +13968,2025-03-08T17:58:52.859725-08:00,1712.0,10.844419,10844.419 +13969,2025-03-08T17:59:03.697427-08:00,1672.0,10.837702,10837.702 +13970,2025-03-08T17:59:14.527305-08:00,1690.0,10.829878,10829.878 +13971,2025-03-08T17:59:25.365635-08:00,1674.0,10.83833,10838.33 +13972,2025-03-08T17:59:36.209382-08:00,1681.0,10.843747,10843.747 +13973,2025-03-08T17:59:47.059295-08:00,1674.0,10.849913,10849.913 +13974,2025-03-08T17:59:57.898301-08:00,1679.0,10.839006,10839.006 +13975,2025-03-08T18:00:08.750304-08:00,1675.0,10.852003,10852.003 +13976,2025-03-08T18:00:19.592913-08:00,1706.0,10.842609,10842.609 +13977,2025-03-08T18:00:30.436154-08:00,1638.0,10.843241,10843.241 +13978,2025-03-08T18:00:41.290809-08:00,1718.0,10.854655,10854.655 +13979,2025-03-08T18:00:52.133339-08:00,1712.0,10.84253,10842.53 +13980,2025-03-08T18:01:02.974307-08:00,1631.0,10.840968,10840.968 +13981,2025-03-08T18:01:13.814912-08:00,1681.0,10.840605,10840.605 +13982,2025-03-08T18:01:24.652943-08:00,1718.0,10.838031,10838.031 +13983,2025-03-08T18:01:35.492308-08:00,1717.0,10.839365,10839.365 +13984,2025-03-08T18:01:46.336357-08:00,1648.0,10.844049,10844.049 +13985,2025-03-08T18:01:57.178672-08:00,1637.0,10.842315,10842.315 +13986,2025-03-08T18:02:08.013422-08:00,1719.0,10.83475,10834.75 +13987,2025-03-08T18:02:18.856418-08:00,1681.0,10.842996,10842.996 +13988,2025-03-08T18:02:29.694535-08:00,1689.0,10.838117,10838.117 +13989,2025-03-08T18:02:40.541603-08:00,1669.0,10.847068,10847.068 +13990,2025-03-08T18:02:51.378303-08:00,1713.0,10.8367,10836.7 +13991,2025-03-08T18:03:02.217663-08:00,1719.0,10.83936,10839.36 +13992,2025-03-08T18:03:13.064478-08:00,1631.0,10.846815,10846.815 +13993,2025-03-08T18:03:23.903305-08:00,1659.0,10.838827,10838.827 +13994,2025-03-08T18:03:34.753305-08:00,1708.0,10.85,10850.0 +13995,2025-03-08T18:03:45.590303-08:00,1669.0,10.836998,10836.998 +13996,2025-03-08T18:03:56.427703-08:00,1715.0,10.8374,10837.4 +13997,2025-03-08T18:04:07.276594-08:00,1658.0,10.848891,10848.891 +13998,2025-03-08T18:04:18.114764-08:00,1675.0,10.83817,10838.17 +13999,2025-03-08T18:04:28.956281-08:00,1637.0,10.841517,10841.517 +14000,2025-03-08T18:04:39.804434-08:00,1716.0,10.848153,10848.153 +14001,2025-03-08T18:04:50.647643-08:00,1675.0,10.843209,10843.209 +14002,2025-03-08T18:05:01.490025-08:00,1648.0,10.842382,10842.382 +14003,2025-03-08T18:05:12.328623-08:00,1627.0,10.838598,10838.598 +14004,2025-03-08T18:05:23.177308-08:00,1698.0,10.848685,10848.685 +14005,2025-03-08T18:05:34.023565-08:00,1643.0,10.846257,10846.257 +14006,2025-03-08T18:05:44.933599-08:00,1684.0,10.910034,10910.034 +14007,2025-03-08T18:05:55.782138-08:00,1712.0,10.848539,10848.539 +14008,2025-03-08T18:06:06.618516-08:00,1714.0,10.836378,10836.378 +14009,2025-03-08T18:06:17.467296-08:00,1712.0,10.84878,10848.78 +14010,2025-03-08T18:06:28.314274-08:00,1653.0,10.846978,10846.978 +14011,2025-03-08T18:06:39.152607-08:00,1712.0,10.838333,10838.333 +14012,2025-03-08T18:06:49.994342-08:00,1695.0,10.841735,10841.735 +14013,2025-03-08T18:07:00.833543-08:00,1713.0,10.839201,10839.201 +14014,2025-03-08T18:07:11.675540-08:00,1659.0,10.841997,10841.997 +14015,2025-03-08T18:07:22.529302-08:00,1659.0,10.853762,10853.762 +14016,2025-03-08T18:07:33.372827-08:00,1702.0,10.843525,10843.525 +14017,2025-03-08T18:07:44.212296-08:00,1695.0,10.839469,10839.469 +14018,2025-03-08T18:07:55.060295-08:00,1689.0,10.847999,10847.999 +14019,2025-03-08T18:08:05.903291-08:00,1667.0,10.842996,10842.996 +14020,2025-03-08T18:08:16.741910-08:00,1669.0,10.838619,10838.619 +14021,2025-03-08T18:08:27.577353-08:00,1703.0,10.835443,10835.443 +14022,2025-03-08T18:08:38.422299-08:00,1707.0,10.844946,10844.946 +14023,2025-03-08T18:08:49.262295-08:00,1634.0,10.839996,10839.996 +14024,2025-03-08T18:09:00.102419-08:00,1667.0,10.840124,10840.124 +14025,2025-03-08T18:09:10.950731-08:00,1712.0,10.848312,10848.312 +14026,2025-03-08T18:09:21.793372-08:00,1699.0,10.842641,10842.641 +14027,2025-03-08T18:09:32.631972-08:00,1653.0,10.8386,10838.6 +14028,2025-03-08T18:09:43.479840-08:00,1682.0,10.847868,10847.868 +14029,2025-03-08T18:09:54.317297-08:00,1707.0,10.837457,10837.457 +14030,2025-03-08T18:10:05.160306-08:00,1697.0,10.843009,10843.009 +14031,2025-03-08T18:10:15.998472-08:00,1636.0,10.838166,10838.166 +14032,2025-03-08T18:10:26.841036-08:00,1664.0,10.842564,10842.564 +14033,2025-03-08T18:10:37.683752-08:00,1665.0,10.842716,10842.716 +14034,2025-03-08T18:10:48.525527-08:00,1707.0,10.841775,10841.775 +14035,2025-03-08T18:10:59.358627-08:00,1638.0,10.8331,10833.1 +14036,2025-03-08T18:11:10.200587-08:00,1651.0,10.84196,10841.96 +14037,2025-03-08T18:11:21.032427-08:00,1665.0,10.83184,10831.84 +14038,2025-03-08T18:11:31.881276-08:00,1653.0,10.848849,10848.849 +14039,2025-03-08T18:11:42.714147-08:00,1698.0,10.832871,10832.871 +14040,2025-03-08T18:11:53.559295-08:00,1687.0,10.845148,10845.148 +14041,2025-03-08T18:12:04.395979-08:00,1693.0,10.836684,10836.684 +14042,2025-03-08T18:12:15.238623-08:00,1610.0,10.842644,10842.644 +14043,2025-03-08T18:12:26.073296-08:00,1630.0,10.834673,10834.673 +14044,2025-03-08T18:12:36.924082-08:00,1681.0,10.850786,10850.786 +14045,2025-03-08T18:12:47.764453-08:00,1708.0,10.840371,10840.371 +14046,2025-03-08T18:12:58.605525-08:00,1655.0,10.841072,10841.072 +14047,2025-03-08T18:13:09.443347-08:00,1642.0,10.837822,10837.822 +14048,2025-03-08T18:13:20.284769-08:00,1703.0,10.841422,10841.422 +14049,2025-03-08T18:13:31.122665-08:00,1695.0,10.837896,10837.896 +14050,2025-03-08T18:13:41.975621-08:00,1661.0,10.852956,10852.956 +14051,2025-03-08T18:13:52.815573-08:00,1709.0,10.839952,10839.952 +14052,2025-03-08T18:14:03.651275-08:00,1710.0,10.835702,10835.702 +14053,2025-03-08T18:14:14.494884-08:00,1712.0,10.843609,10843.609 +14054,2025-03-08T18:14:25.337347-08:00,1628.0,10.842463,10842.463 +14055,2025-03-08T18:14:36.170301-08:00,1674.0,10.832954,10832.954 +14056,2025-03-08T18:14:47.007599-08:00,1711.0,10.837298,10837.298 +14057,2025-03-08T18:14:57.849644-08:00,1618.0,10.842045,10842.045 +14058,2025-03-08T18:15:08.689385-08:00,1710.0,10.839741,10839.741 +14059,2025-03-08T18:15:19.519295-08:00,1624.0,10.82991,10829.91 +14060,2025-03-08T18:15:30.362408-08:00,1677.0,10.843113,10843.113 +14061,2025-03-08T18:15:41.205153-08:00,1709.0,10.842745,10842.745 +14062,2025-03-08T18:15:52.042648-08:00,1705.0,10.837495,10837.495 +14063,2025-03-08T18:16:02.885270-08:00,1709.0,10.842622,10842.622 +14064,2025-03-08T18:16:13.734429-08:00,1673.0,10.849159,10849.159 +14065,2025-03-08T18:16:24.573573-08:00,1706.0,10.839144,10839.144 +14066,2025-03-08T18:16:35.420429-08:00,1709.0,10.846856,10846.856 +14067,2025-03-08T18:16:46.255739-08:00,1702.0,10.83531,10835.31 +14068,2025-03-08T18:16:57.096568-08:00,1681.0,10.840829,10840.829 +14069,2025-03-08T18:17:07.937548-08:00,1651.0,10.84098,10840.98 +14070,2025-03-08T18:17:18.775642-08:00,1663.0,10.838094,10838.094 +14071,2025-03-08T18:17:29.605725-08:00,1668.0,10.830083,10830.083 +14072,2025-03-08T18:17:40.453854-08:00,1665.0,10.848129,10848.129 +14073,2025-03-08T18:17:51.300453-08:00,1695.0,10.846599,10846.599 +14074,2025-03-08T18:18:02.142294-08:00,1655.0,10.841841,10841.841 +14075,2025-03-08T18:18:12.987293-08:00,1680.0,10.844999,10844.999 +14076,2025-03-08T18:18:23.826578-08:00,1662.0,10.839285,10839.285 +14077,2025-03-08T18:18:34.673427-08:00,1703.0,10.846849,10846.849 +14078,2025-03-08T18:18:45.506293-08:00,1630.0,10.832866,10832.866 +14079,2025-03-08T18:18:56.352437-08:00,1659.0,10.846144,10846.144 +14080,2025-03-08T18:19:07.192022-08:00,1659.0,10.839585,10839.585 +14081,2025-03-08T18:19:18.032284-08:00,1622.0,10.840262,10840.262 +14082,2025-03-08T18:19:28.865286-08:00,1703.0,10.833002,10833.002 +14083,2025-03-08T18:19:39.707840-08:00,1680.0,10.842554,10842.554 +14084,2025-03-08T18:19:50.541564-08:00,1620.0,10.833724,10833.724 +14085,2025-03-08T18:20:01.392301-08:00,1644.0,10.850737,10850.737 +14086,2025-03-08T18:20:12.232513-08:00,1697.0,10.840212,10840.212 +14087,2025-03-08T18:20:23.077753-08:00,1649.0,10.84524,10845.24 +14088,2025-03-08T18:20:33.924603-08:00,1701.0,10.84685,10846.85 +14089,2025-03-08T18:20:44.762297-08:00,1622.0,10.837694,10837.694 +14090,2025-03-08T18:20:55.606302-08:00,1631.0,10.844005,10844.005 +14091,2025-03-08T18:21:06.441628-08:00,1667.0,10.835326,10835.326 +14092,2025-03-08T18:21:17.285663-08:00,1696.0,10.844035,10844.035 +14093,2025-03-08T18:21:28.133597-08:00,1705.0,10.847934,10847.934 +14094,2025-03-08T18:21:38.965275-08:00,1657.0,10.831678,10831.678 +14095,2025-03-08T18:21:49.808618-08:00,1648.0,10.843343,10843.343 +14096,2025-03-08T18:22:00.651890-08:00,1651.0,10.843272,10843.272 +14097,2025-03-08T18:22:11.504968-08:00,1702.0,10.853078,10853.078 +14098,2025-03-08T18:22:22.343691-08:00,1621.0,10.838723,10838.723 +14099,2025-03-08T18:22:33.179498-08:00,1697.0,10.835807,10835.807 +14100,2025-03-08T18:22:44.029439-08:00,1663.0,10.849941,10849.941 +14101,2025-03-08T18:22:54.867388-08:00,1667.0,10.837949,10837.949 +14102,2025-03-08T18:22:56.050076-08:00,1667.0,1.182688,1182.688 +14103,2025-03-08T18:23:05.710301-08:00,1639.0,9.660225,9660.225 +14104,2025-03-08T18:23:16.552640-08:00,1664.0,10.842339,10842.339 +14105,2025-03-08T18:23:27.391754-08:00,1645.0,10.839114,10839.114 +14106,2025-03-08T18:23:38.234421-08:00,1647.0,10.842667,10842.667 +14107,2025-03-08T18:23:49.070564-08:00,1643.0,10.836143,10836.143 +14108,2025-03-08T18:23:59.924488-08:00,1692.0,10.853924,10853.924 +14109,2025-03-08T18:24:10.767350-08:00,1702.0,10.842862,10842.862 +14110,2025-03-08T18:24:21.604708-08:00,1671.0,10.837358,10837.358 +14111,2025-03-08T18:24:32.448734-08:00,1693.0,10.844026,10844.026 +14112,2025-03-08T18:24:43.286540-08:00,1675.0,10.837806,10837.806 +14113,2025-03-08T18:24:54.124623-08:00,1705.0,10.838083,10838.083 +14114,2025-03-08T18:25:04.965354-08:00,1623.0,10.840731,10840.731 +14115,2025-03-08T18:25:15.804617-08:00,1703.0,10.839263,10839.263 +14116,2025-03-08T18:25:26.643438-08:00,1661.0,10.838821,10838.821 +14117,2025-03-08T18:25:37.482558-08:00,1638.0,10.83912,10839.12 +14118,2025-03-08T18:25:48.324517-08:00,1670.0,10.841959,10841.959 +14119,2025-03-08T18:25:59.163331-08:00,1603.0,10.838814,10838.814 +14120,2025-03-08T18:26:09.991298-08:00,1616.0,10.827967,10827.967 +14121,2025-03-08T18:26:20.837299-08:00,1676.0,10.846001,10846.001 +14122,2025-03-08T18:26:31.672436-08:00,1695.0,10.835137,10835.137 +14123,2025-03-08T18:26:42.509598-08:00,1701.0,10.837162,10837.162 +14124,2025-03-08T18:26:53.346301-08:00,1703.0,10.836703,10836.703 +14125,2025-03-08T18:27:04.191296-08:00,1694.0,10.844995,10844.995 +14126,2025-03-08T18:27:15.028922-08:00,1642.0,10.837626,10837.626 +14127,2025-03-08T18:27:25.864613-08:00,1675.0,10.835691,10835.691 +14128,2025-03-08T18:27:36.707436-08:00,1657.0,10.842823,10842.823 +14129,2025-03-08T18:27:47.550393-08:00,1659.0,10.842957,10842.957 +14130,2025-03-08T18:27:58.382697-08:00,1651.0,10.832304,10832.304 +14131,2025-03-08T18:28:09.231618-08:00,1689.0,10.848921,10848.921 +14132,2025-03-08T18:28:20.069540-08:00,1663.0,10.837922,10837.922 +14133,2025-03-08T18:28:30.914885-08:00,1650.0,10.845345,10845.345 +14134,2025-03-08T18:28:41.752610-08:00,1687.0,10.837725,10837.725 +14135,2025-03-08T18:28:52.596524-08:00,1673.0,10.843914,10843.914 +14136,2025-03-08T18:29:03.436377-08:00,1670.0,10.839853,10839.853 +14137,2025-03-08T18:29:14.281448-08:00,1701.0,10.845071,10845.071 +14138,2025-03-08T18:29:25.127627-08:00,1670.0,10.846179,10846.179 +14139,2025-03-08T18:29:35.970471-08:00,1670.0,10.842844,10842.844 +14140,2025-03-08T18:29:46.807615-08:00,1706.0,10.837144,10837.144 +14141,2025-03-08T18:29:57.646627-08:00,1689.0,10.839012,10839.012 +14142,2025-03-08T18:30:08.489262-08:00,1703.0,10.842635,10842.635 +14143,2025-03-08T18:30:19.329282-08:00,1669.0,10.84002,10840.02 +14144,2025-03-08T18:30:30.161349-08:00,1675.0,10.832067,10832.067 +14145,2025-03-08T18:30:41.014305-08:00,1639.0,10.852956,10852.956 +14146,2025-03-08T18:30:51.849575-08:00,1680.0,10.83527,10835.27 +14147,2025-03-08T18:31:02.693288-08:00,1691.0,10.843713,10843.713 +14148,2025-03-08T18:31:13.536548-08:00,1690.0,10.84326,10843.26 +14149,2025-03-08T18:31:24.378638-08:00,1696.0,10.84209,10842.09 +14150,2025-03-08T18:31:35.211446-08:00,1705.0,10.832808,10832.808 +14151,2025-03-08T18:31:46.048620-08:00,1702.0,10.837174,10837.174 +14152,2025-03-08T18:31:56.891519-08:00,1623.0,10.842899,10842.899 +14153,2025-03-08T18:32:07.728987-08:00,1628.0,10.837468,10837.468 +14154,2025-03-08T18:32:18.567516-08:00,1681.0,10.838529,10838.529 +14155,2025-03-08T18:32:29.411290-08:00,1705.0,10.843774,10843.774 +14156,2025-03-08T18:32:40.245668-08:00,1664.0,10.834378,10834.378 +14157,2025-03-08T18:32:51.079442-08:00,1653.0,10.833774,10833.774 +14158,2025-03-08T18:33:01.927295-08:00,1655.0,10.847853,10847.853 +14159,2025-03-08T18:33:12.760458-08:00,1667.0,10.833163,10833.163 +14160,2025-03-08T18:33:23.602549-08:00,1652.0,10.842091,10842.091 +14161,2025-03-08T18:33:34.439606-08:00,1695.0,10.837057,10837.057 +14162,2025-03-08T18:33:45.290307-08:00,1616.0,10.850701,10850.701 +14163,2025-03-08T18:33:56.134717-08:00,1616.0,10.84441,10844.41 +14164,2025-03-08T18:34:06.973290-08:00,1661.0,10.838573,10838.573 +14165,2025-03-08T18:34:17.817288-08:00,1663.0,10.843998,10843.998 +14166,2025-03-08T18:34:28.653335-08:00,1706.0,10.836047,10836.047 +14167,2025-03-08T18:34:39.504141-08:00,1664.0,10.850806,10850.806 +14168,2025-03-08T18:34:50.339731-08:00,1659.0,10.83559,10835.59 +14169,2025-03-08T18:35:01.184300-08:00,1680.0,10.844569,10844.569 +14170,2025-03-08T18:35:12.026542-08:00,1648.0,10.842242,10842.242 +14171,2025-03-08T18:35:22.877407-08:00,1658.0,10.850865,10850.865 +14172,2025-03-08T18:35:33.711182-08:00,1699.0,10.833775,10833.775 +14173,2025-03-08T18:35:44.550483-08:00,1701.0,10.839301,10839.301 +14174,2025-03-08T18:35:55.398435-08:00,1686.0,10.847952,10847.952 +14175,2025-03-08T18:36:06.241675-08:00,1655.0,10.84324,10843.24 +14176,2025-03-08T18:36:17.079352-08:00,1709.0,10.837677,10837.677 +14177,2025-03-08T18:36:27.918305-08:00,1695.0,10.838953,10838.953 +14178,2025-03-08T18:36:38.756555-08:00,1705.0,10.83825,10838.25 +14179,2025-03-08T18:36:49.609372-08:00,1625.0,10.852817,10852.817 +14180,2025-03-08T18:37:00.453789-08:00,1598.0,10.844417,10844.417 +14181,2025-03-08T18:37:11.289296-08:00,1693.0,10.835507,10835.507 +14182,2025-03-08T18:37:22.133297-08:00,1680.0,10.844001,10844.001 +14183,2025-03-08T18:37:32.977536-08:00,1665.0,10.844239,10844.239 +14184,2025-03-08T18:37:43.814788-08:00,1703.0,10.837252,10837.252 +14185,2025-03-08T18:37:54.663978-08:00,1709.0,10.84919,10849.19 +14186,2025-03-08T18:38:05.501309-08:00,1663.0,10.837331,10837.331 +14187,2025-03-08T18:38:16.334753-08:00,1694.0,10.833444,10833.444 +14188,2025-03-08T18:38:27.180291-08:00,1625.0,10.845538,10845.538 +14189,2025-03-08T18:38:38.028294-08:00,1665.0,10.848003,10848.003 +14190,2025-03-08T18:38:48.864512-08:00,1648.0,10.836218,10836.218 +14191,2025-03-08T18:38:59.704392-08:00,1708.0,10.83988,10839.88 +14192,2025-03-08T18:39:10.544817-08:00,1649.0,10.840425,10840.425 +14193,2025-03-08T18:39:21.390298-08:00,1666.0,10.845481,10845.481 +14194,2025-03-08T18:39:32.227449-08:00,1699.0,10.837151,10837.151 +14195,2025-03-08T18:39:43.070636-08:00,1703.0,10.843187,10843.187 +14196,2025-03-08T18:39:53.909540-08:00,1642.0,10.838904,10838.904 +14197,2025-03-08T18:40:04.749435-08:00,1681.0,10.839895,10839.895 +14198,2025-03-08T18:40:15.590547-08:00,1708.0,10.841112,10841.112 +14199,2025-03-08T18:40:26.425395-08:00,1617.0,10.834848,10834.848 +14200,2025-03-08T18:40:37.259442-08:00,1648.0,10.834047,10834.047 +14201,2025-03-08T18:40:48.100524-08:00,1663.0,10.841082,10841.082 +14202,2025-03-08T18:40:58.944924-08:00,1616.0,10.8444,10844.4 +14203,2025-03-08T18:41:09.780299-08:00,1663.0,10.835375,10835.375 +14204,2025-03-08T18:41:20.622298-08:00,1667.0,10.841999,10841.999 +14205,2025-03-08T18:41:31.466295-08:00,1655.0,10.843997,10843.997 +14206,2025-03-08T18:41:42.308279-08:00,1664.0,10.841984,10841.984 +14207,2025-03-08T18:41:53.145603-08:00,1689.0,10.837324,10837.324 +14208,2025-03-08T18:42:03.984508-08:00,1652.0,10.838905,10838.905 +14209,2025-03-08T18:42:14.824112-08:00,1621.0,10.839604,10839.604 +14210,2025-03-08T18:42:25.659296-08:00,1706.0,10.835184,10835.184 +14211,2025-03-08T18:42:36.492302-08:00,1689.0,10.833006,10833.006 +14212,2025-03-08T18:42:47.342795-08:00,1665.0,10.850493,10850.493 +14213,2025-03-08T18:42:58.188599-08:00,1705.0,10.845804,10845.804 +14214,2025-03-08T18:43:09.032814-08:00,1707.0,10.844215,10844.215 +14215,2025-03-08T18:43:19.873451-08:00,1648.0,10.840637,10840.637 +14216,2025-03-08T18:43:30.710623-08:00,1705.0,10.837172,10837.172 +14217,2025-03-08T18:43:41.551815-08:00,1649.0,10.841192,10841.192 +14218,2025-03-08T18:43:52.388297-08:00,1631.0,10.836482,10836.482 +14219,2025-03-08T18:44:03.236334-08:00,1666.0,10.848037,10848.037 +14220,2025-03-08T18:44:14.076709-08:00,1635.0,10.840375,10840.375 +14221,2025-03-08T18:44:24.918435-08:00,1634.0,10.841726,10841.726 +14222,2025-03-08T18:44:35.758535-08:00,1638.0,10.8401,10840.1 +14223,2025-03-08T18:44:46.604295-08:00,1695.0,10.84576,10845.76 +14224,2025-03-08T18:44:57.441790-08:00,1698.0,10.837495,10837.495 +14225,2025-03-08T18:45:08.284798-08:00,1703.0,10.843008,10843.008 +14226,2025-03-08T18:45:19.136392-08:00,1611.0,10.851594,10851.594 +14227,2025-03-08T18:45:29.980539-08:00,1626.0,10.844147,10844.147 +14228,2025-03-08T18:45:40.823501-08:00,1706.0,10.842962,10842.962 +14229,2025-03-08T18:45:51.666547-08:00,1623.0,10.843046,10843.046 +14230,2025-03-08T18:46:02.498530-08:00,1673.0,10.831983,10831.983 +14231,2025-03-08T18:46:13.349343-08:00,1706.0,10.850813,10850.813 +14232,2025-03-08T18:46:24.186563-08:00,1679.0,10.83722,10837.22 +14233,2025-03-08T18:46:35.027615-08:00,1641.0,10.841052,10841.052 +14234,2025-03-08T18:46:45.860302-08:00,1649.0,10.832687,10832.687 +14235,2025-03-08T18:46:56.703298-08:00,1663.0,10.842996,10842.996 +14236,2025-03-08T18:47:07.535638-08:00,1647.0,10.83234,10832.34 +14237,2025-03-08T18:47:18.381908-08:00,1681.0,10.84627,10846.27 +14238,2025-03-08T18:47:29.224398-08:00,1681.0,10.84249,10842.49 +14239,2025-03-08T18:47:40.060295-08:00,1705.0,10.835897,10835.897 +14240,2025-03-08T18:47:50.896286-08:00,1619.0,10.835991,10835.991 +14241,2025-03-08T18:48:01.739296-08:00,1701.0,10.84301,10843.01 +14242,2025-03-08T18:48:12.577855-08:00,1648.0,10.838559,10838.559 +14243,2025-03-08T18:48:23.412644-08:00,1707.0,10.834789,10834.789 +14244,2025-03-08T18:48:34.254301-08:00,1709.0,10.841657,10841.657 +14245,2025-03-08T18:48:45.091678-08:00,1707.0,10.837377,10837.377 +14246,2025-03-08T18:48:55.932680-08:00,1659.0,10.841002,10841.002 +14247,2025-03-08T18:49:06.769289-08:00,1707.0,10.836609,10836.609 +14248,2025-03-08T18:49:17.611716-08:00,1699.0,10.842427,10842.427 +14249,2025-03-08T18:49:28.462302-08:00,1669.0,10.850586,10850.586 +14250,2025-03-08T18:49:39.292836-08:00,1680.0,10.830534,10830.534 +14251,2025-03-08T18:49:50.131343-08:00,1614.0,10.838507,10838.507 +14252,2025-03-08T18:50:00.968304-08:00,1705.0,10.836961,10836.961 +14253,2025-03-08T18:50:11.806916-08:00,1663.0,10.838612,10838.612 +14254,2025-03-08T18:50:22.649296-08:00,1622.0,10.84238,10842.38 +14255,2025-03-08T18:50:33.491278-08:00,1708.0,10.841982,10841.982 +14256,2025-03-08T18:50:44.327654-08:00,1691.0,10.836376,10836.376 +14257,2025-03-08T18:50:55.161336-08:00,1692.0,10.833682,10833.682 +14258,2025-03-08T18:51:05.993530-08:00,1697.0,10.832194,10832.194 +14259,2025-03-08T18:51:16.836862-08:00,1654.0,10.843332,10843.332 +14260,2025-03-08T18:51:27.678517-08:00,1692.0,10.841655,10841.655 +14261,2025-03-08T18:51:38.516290-08:00,1707.0,10.837773,10837.773 +14262,2025-03-08T18:51:49.357302-08:00,1698.0,10.841012,10841.012 +14263,2025-03-08T18:52:00.196586-08:00,1708.0,10.839284,10839.284 +14264,2025-03-08T18:52:11.027346-08:00,1697.0,10.83076,10830.76 +14265,2025-03-08T18:52:21.872520-08:00,1708.0,10.845174,10845.174 +14266,2025-03-08T18:52:32.710140-08:00,1685.0,10.83762,10837.62 +14267,2025-03-08T18:52:43.551517-08:00,1702.0,10.841377,10841.377 +14268,2025-03-08T18:52:54.389297-08:00,1701.0,10.83778,10837.78 +14269,2025-03-08T18:53:05.223332-08:00,1707.0,10.834035,10834.035 +14270,2025-03-08T18:53:16.063599-08:00,1671.0,10.840267,10840.267 +14271,2025-03-08T18:53:26.902316-08:00,1616.0,10.838717,10838.717 +14272,2025-03-08T18:53:37.733684-08:00,1678.0,10.831368,10831.368 +14273,2025-03-08T18:53:48.575508-08:00,1644.0,10.841824,10841.824 +14274,2025-03-08T18:53:59.408276-08:00,1655.0,10.832768,10832.768 +14275,2025-03-08T18:54:10.244595-08:00,1615.0,10.836319,10836.319 +14276,2025-03-08T18:54:21.083366-08:00,1648.0,10.838771,10838.771 +14277,2025-03-08T18:54:31.921348-08:00,1706.0,10.837982,10837.982 +14278,2025-03-08T18:54:42.750671-08:00,1680.0,10.829323,10829.323 +14279,2025-03-08T18:54:53.594299-08:00,1690.0,10.843628,10843.628 +14280,2025-03-08T18:55:04.437293-08:00,1706.0,10.842994,10842.994 +14281,2025-03-08T18:55:15.277160-08:00,1691.0,10.839867,10839.867 +14282,2025-03-08T18:55:26.120929-08:00,1680.0,10.843769,10843.769 +14283,2025-03-08T18:55:36.949427-08:00,1696.0,10.828498,10828.498 +14284,2025-03-08T18:55:47.794305-08:00,1654.0,10.844878,10844.878 +14285,2025-03-08T18:55:58.632644-08:00,1706.0,10.838339,10838.339 +14286,2025-03-08T18:56:09.474380-08:00,1649.0,10.841736,10841.736 +14287,2025-03-08T18:56:20.317486-08:00,1695.0,10.843106,10843.106 +14288,2025-03-08T18:56:31.155347-08:00,1663.0,10.837861,10837.861 +14289,2025-03-08T18:56:41.991342-08:00,1692.0,10.835995,10835.995 +14290,2025-03-08T18:56:52.831501-08:00,1693.0,10.840159,10840.159 +14291,2025-03-08T18:57:03.666652-08:00,1668.0,10.835151,10835.151 +14292,2025-03-08T18:57:14.496293-08:00,1703.0,10.829641,10829.641 +14293,2025-03-08T18:57:25.335352-08:00,1662.0,10.839059,10839.059 +14294,2025-03-08T18:57:36.173583-08:00,1682.0,10.838231,10838.231 +14295,2025-03-08T18:57:47.007626-08:00,1707.0,10.834043,10834.043 +14296,2025-03-08T18:57:57.838227-08:00,1665.0,10.830601,10830.601 +14297,2025-03-08T18:58:08.679607-08:00,1605.0,10.84138,10841.38 +14298,2025-03-08T18:58:19.503651-08:00,1698.0,10.824044,10824.044 +14299,2025-03-08T18:58:30.350382-08:00,1662.0,10.846731,10846.731 +14300,2025-03-08T18:58:41.176301-08:00,1665.0,10.825919,10825.919 +14301,2025-03-08T18:58:52.012870-08:00,1681.0,10.836569,10836.569 +14302,2025-03-08T18:59:02.857103-08:00,1662.0,10.844233,10844.233 +14303,2025-03-08T18:59:13.692300-08:00,1681.0,10.835197,10835.197 +14304,2025-03-08T18:59:24.532298-08:00,1654.0,10.839998,10839.998 +14305,2025-03-08T18:59:35.363029-08:00,1683.0,10.830731,10830.731 +14306,2025-03-08T18:59:46.199545-08:00,1689.0,10.836516,10836.516 +14307,2025-03-08T18:59:57.027100-08:00,1681.0,10.827555,10827.555 +14308,2025-03-08T19:00:07.858296-08:00,1627.0,10.831196,10831.196 +14309,2025-03-08T19:00:18.701509-08:00,1687.0,10.843213,10843.213 +14310,2025-03-08T19:00:29.533618-08:00,1619.0,10.832109,10832.109 +14311,2025-03-08T19:00:40.369300-08:00,1687.0,10.835682,10835.682 +14312,2025-03-08T19:00:51.212801-08:00,1648.0,10.843501,10843.501 +14313,2025-03-08T19:01:02.044817-08:00,1698.0,10.832016,10832.016 +14314,2025-03-08T19:01:12.893301-08:00,1709.0,10.848484,10848.484 +14315,2025-03-08T19:01:23.733290-08:00,1649.0,10.839989,10839.989 +14316,2025-03-08T19:01:34.570403-08:00,1708.0,10.837113,10837.113 +14317,2025-03-08T19:01:45.417627-08:00,1682.0,10.847224,10847.224 +14318,2025-03-08T19:01:56.261336-08:00,1643.0,10.843709,10843.709 +14319,2025-03-08T19:02:07.109583-08:00,1671.0,10.848247,10848.247 +14320,2025-03-08T19:02:17.947299-08:00,1620.0,10.837716,10837.716 +14321,2025-03-08T19:02:28.785260-08:00,1707.0,10.837961,10837.961 +14322,2025-03-08T19:02:39.632838-08:00,1658.0,10.847578,10847.578 +14323,2025-03-08T19:02:50.470295-08:00,1707.0,10.837457,10837.457 +14324,2025-03-08T19:03:01.309118-08:00,1707.0,10.838823,10838.823 +14325,2025-03-08T19:03:12.146619-08:00,1639.0,10.837501,10837.501 +14326,2025-03-08T19:03:22.993431-08:00,1709.0,10.846812,10846.812 +14327,2025-03-08T19:03:33.823407-08:00,1706.0,10.829976,10829.976 +14328,2025-03-08T19:03:44.667760-08:00,1694.0,10.844353,10844.353 +14329,2025-03-08T19:03:55.510857-08:00,1646.0,10.843097,10843.097 +14330,2025-03-08T19:04:06.352299-08:00,1651.0,10.841442,10841.442 +14331,2025-03-08T19:04:17.182562-08:00,1699.0,10.830263,10830.263 +14332,2025-03-08T19:04:28.018640-08:00,1648.0,10.836078,10836.078 +14333,2025-03-08T19:04:38.861291-08:00,1614.0,10.842651,10842.651 +14334,2025-03-08T19:04:49.694081-08:00,1665.0,10.83279,10832.79 +14335,2025-03-08T19:05:00.536441-08:00,1648.0,10.84236,10842.36 +14336,2025-03-08T19:05:11.359418-08:00,1706.0,10.822977,10822.977 +14337,2025-03-08T19:05:22.198945-08:00,1664.0,10.839527,10839.527 +14338,2025-03-08T19:05:33.036296-08:00,1674.0,10.837351,10837.351 +14339,2025-03-08T19:05:43.896414-08:00,1627.0,10.860118,10860.118 +14340,2025-03-08T19:05:54.729343-08:00,1680.0,10.832929,10832.929 +14341,2025-03-08T19:06:05.566410-08:00,1709.0,10.837067,10837.067 +14342,2025-03-08T19:06:16.412469-08:00,1710.0,10.846059,10846.059 +14343,2025-03-08T19:06:27.257409-08:00,1626.0,10.84494,10844.94 +14344,2025-03-08T19:06:38.101653-08:00,1665.0,10.844244,10844.244 +14345,2025-03-08T19:06:48.939975-08:00,1645.0,10.838322,10838.322 +14346,2025-03-08T19:06:59.781389-08:00,1703.0,10.841414,10841.414 +14347,2025-03-08T19:07:10.625412-08:00,1618.0,10.844023,10844.023 +14348,2025-03-08T19:07:21.467567-08:00,1702.0,10.842155,10842.155 +14349,2025-03-08T19:07:32.305463-08:00,1683.0,10.837896,10837.896 +14350,2025-03-08T19:07:43.141641-08:00,1709.0,10.836178,10836.178 +14351,2025-03-08T19:07:53.987408-08:00,1622.0,10.845767,10845.767 +14352,2025-03-08T19:08:04.823761-08:00,1679.0,10.836353,10836.353 +14353,2025-03-08T19:08:15.663673-08:00,1641.0,10.839912,10839.912 +14354,2025-03-08T19:08:26.508461-08:00,1707.0,10.844788,10844.788 +14355,2025-03-08T19:08:37.353842-08:00,1625.0,10.845381,10845.381 +14356,2025-03-08T19:08:48.190541-08:00,1707.0,10.836699,10836.699 +14357,2025-03-08T19:08:59.036323-08:00,1697.0,10.845782,10845.782 +14358,2025-03-08T19:09:09.872404-08:00,1626.0,10.836081,10836.081 +14359,2025-03-08T19:09:20.713459-08:00,1614.0,10.841055,10841.055 +14360,2025-03-08T19:09:31.552950-08:00,1703.0,10.839491,10839.491 +14361,2025-03-08T19:09:42.389409-08:00,1698.0,10.836459,10836.459 +14362,2025-03-08T19:09:53.229786-08:00,1709.0,10.840377,10840.377 +14363,2025-03-08T19:10:04.072795-08:00,1710.0,10.843009,10843.009 +14364,2025-03-08T19:10:14.922709-08:00,1663.0,10.849914,10849.914 +14365,2025-03-08T19:10:25.759426-08:00,1706.0,10.836717,10836.717 +14366,2025-03-08T19:10:36.605525-08:00,1697.0,10.846099,10846.099 +14367,2025-03-08T19:10:47.446408-08:00,1627.0,10.840883,10840.883 +14368,2025-03-08T19:10:58.278445-08:00,1708.0,10.832037,10832.037 +14369,2025-03-08T19:11:09.121407-08:00,1648.0,10.842962,10842.962 +14370,2025-03-08T19:11:19.969487-08:00,1706.0,10.84808,10848.08 +14371,2025-03-08T19:11:30.812639-08:00,1653.0,10.843152,10843.152 +14372,2025-03-08T19:11:41.652087-08:00,1659.0,10.839448,10839.448 +14373,2025-03-08T19:11:52.485404-08:00,1692.0,10.833317,10833.317 +14374,2025-03-08T19:12:03.322637-08:00,1650.0,10.837233,10837.233 +14375,2025-03-08T19:12:14.163802-08:00,1705.0,10.841165,10841.165 +14376,2025-03-08T19:12:25.000600-08:00,1658.0,10.836798,10836.798 +14377,2025-03-08T19:12:35.827987-08:00,1621.0,10.827387,10827.387 +14378,2025-03-08T19:12:46.660640-08:00,1636.0,10.832653,10832.653 +14379,2025-03-08T19:12:57.495391-08:00,1707.0,10.834751,10834.751 +14380,2025-03-08T19:13:08.339704-08:00,1649.0,10.844313,10844.313 +14381,2025-03-08T19:13:19.176520-08:00,1680.0,10.836816,10836.816 +14382,2025-03-08T19:13:30.018565-08:00,1639.0,10.842045,10842.045 +14383,2025-03-08T19:13:40.858806-08:00,1653.0,10.840241,10840.241 +14384,2025-03-08T19:13:51.706874-08:00,1651.0,10.848068,10848.068 +14385,2025-03-08T19:14:02.535487-08:00,1619.0,10.828613,10828.613 +14386,2025-03-08T19:14:13.370404-08:00,1617.0,10.834917,10834.917 +14387,2025-03-08T19:14:24.218958-08:00,1701.0,10.848554,10848.554 +14388,2025-03-08T19:14:35.055545-08:00,1668.0,10.836587,10836.587 +14389,2025-03-08T19:14:45.900469-08:00,1666.0,10.844924,10844.924 +14390,2025-03-08T19:14:56.736208-08:00,1610.0,10.835739,10835.739 +14391,2025-03-08T19:15:07.573052-08:00,1686.0,10.836844,10836.844 +14392,2025-03-08T19:15:18.412613-08:00,1635.0,10.839561,10839.561 +14393,2025-03-08T19:15:29.243684-08:00,1702.0,10.831071,10831.071 +14394,2025-03-08T19:15:40.091590-08:00,1653.0,10.847906,10847.906 +14395,2025-03-08T19:15:50.919805-08:00,1637.0,10.828215,10828.215 +14396,2025-03-08T19:16:01.760780-08:00,1701.0,10.840975,10840.975 +14397,2025-03-08T19:16:12.597454-08:00,1682.0,10.836674,10836.674 +14398,2025-03-08T19:16:23.430675-08:00,1659.0,10.833221,10833.221 +14399,2025-03-08T19:16:34.273417-08:00,1620.0,10.842742,10842.742 +14400,2025-03-08T19:16:45.110451-08:00,1630.0,10.837034,10837.034 +14401,2025-03-08T19:16:55.943714-08:00,1659.0,10.833263,10833.263 +14402,2025-03-08T19:17:06.780362-08:00,1708.0,10.836648,10836.648 +14403,2025-03-08T19:17:17.615698-08:00,1632.0,10.835336,10835.336 +14404,2025-03-08T19:17:28.460404-08:00,1676.0,10.844706,10844.706 +14405,2025-03-08T19:17:39.298469-08:00,1671.0,10.838065,10838.065 +14406,2025-03-08T19:17:50.128770-08:00,1699.0,10.830301,10830.301 +14407,2025-03-08T19:18:00.967533-08:00,1663.0,10.838763,10838.763 +14408,2025-03-08T19:18:11.811298-08:00,1680.0,10.843765,10843.765 +14409,2025-03-08T19:18:22.645620-08:00,1696.0,10.834322,10834.322 +14410,2025-03-08T19:18:33.473393-08:00,1707.0,10.827773,10827.773 +14411,2025-03-08T19:18:44.303458-08:00,1699.0,10.830065,10830.065 +14412,2025-03-08T19:18:55.141412-08:00,1675.0,10.837954,10837.954 +14413,2025-03-08T19:19:05.974735-08:00,1651.0,10.833323,10833.323 +14414,2025-03-08T19:19:16.822468-08:00,1667.0,10.847733,10847.733 +14415,2025-03-08T19:19:27.644496-08:00,1701.0,10.822028,10822.028 +14416,2025-03-08T19:19:38.485960-08:00,1623.0,10.841464,10841.464 +14417,2025-03-08T19:19:49.317955-08:00,1695.0,10.831995,10831.995 +14418,2025-03-08T19:20:00.149690-08:00,1705.0,10.831735,10831.735 +14419,2025-03-08T19:20:10.992831-08:00,1616.0,10.843141,10843.141 +14420,2025-03-08T19:20:21.829406-08:00,1707.0,10.836575,10836.575 +14421,2025-03-08T19:20:32.661459-08:00,1622.0,10.832053,10832.053 +14422,2025-03-08T19:20:43.505745-08:00,1664.0,10.844286,10844.286 +14423,2025-03-08T19:20:54.343403-08:00,1703.0,10.837658,10837.658 +14424,2025-03-08T19:21:05.185454-08:00,1680.0,10.842051,10842.051 +14425,2025-03-08T19:21:16.017498-08:00,1646.0,10.832044,10832.044 +14426,2025-03-08T19:21:26.860409-08:00,1623.0,10.842911,10842.911 +14427,2025-03-08T19:21:37.702639-08:00,1710.0,10.84223,10842.23 +14428,2025-03-08T19:21:48.541407-08:00,1708.0,10.838768,10838.768 +14429,2025-03-08T19:21:59.372451-08:00,1709.0,10.831044,10831.044 +14430,2025-03-08T19:22:10.203612-08:00,1653.0,10.831161,10831.161 +14431,2025-03-08T19:22:21.041196-08:00,1649.0,10.837584,10837.584 +14432,2025-03-08T19:22:31.884466-08:00,1650.0,10.84327,10843.27 +14433,2025-03-08T19:22:42.721666-08:00,1648.0,10.8372,10837.2 +14434,2025-03-08T19:22:53.555252-08:00,1619.0,10.833586,10833.586 +14435,2025-03-08T19:23:04.399276-08:00,1707.0,10.844024,10844.024 +14436,2025-03-08T19:23:15.233563-08:00,1683.0,10.834287,10834.287 +14437,2025-03-08T19:23:26.071692-08:00,1625.0,10.838129,10838.129 +14438,2025-03-08T19:23:36.910646-08:00,1697.0,10.838954,10838.954 +14439,2025-03-08T19:23:47.745409-08:00,1609.0,10.834763,10834.763 +14440,2025-03-08T19:23:58.590433-08:00,1707.0,10.845024,10845.024 +14441,2025-03-08T19:24:09.427763-08:00,1659.0,10.83733,10837.33 +14442,2025-03-08T19:24:20.273507-08:00,1674.0,10.845744,10845.744 +14443,2025-03-08T19:24:31.106628-08:00,1651.0,10.833121,10833.121 +14444,2025-03-08T19:24:41.945853-08:00,1709.0,10.839225,10839.225 +14445,2025-03-08T19:24:52.783692-08:00,1663.0,10.837839,10837.839 +14446,2025-03-08T19:25:03.625454-08:00,1693.0,10.841762,10841.762 +14447,2025-03-08T19:25:14.468699-08:00,1707.0,10.843245,10843.245 +14448,2025-03-08T19:25:25.313085-08:00,1637.0,10.844386,10844.386 +14449,2025-03-08T19:25:36.156652-08:00,1691.0,10.843567,10843.567 +14450,2025-03-08T19:25:46.985617-08:00,1709.0,10.828965,10828.965 +14451,2025-03-08T19:25:57.824043-08:00,1615.0,10.838426,10838.426 +14452,2025-03-08T19:26:08.654798-08:00,1692.0,10.830755,10830.755 +14453,2025-03-08T19:26:19.498414-08:00,1693.0,10.843616,10843.616 +14454,2025-03-08T19:26:30.337379-08:00,1661.0,10.838965,10838.965 +14455,2025-03-08T19:26:41.182463-08:00,1707.0,10.845084,10845.084 +14456,2025-03-08T19:26:52.019400-08:00,1705.0,10.836937,10836.937 +14457,2025-03-08T19:27:02.859876-08:00,1663.0,10.840476,10840.476 +14458,2025-03-08T19:27:13.693271-08:00,1621.0,10.833395,10833.395 +14459,2025-03-08T19:27:24.536661-08:00,1628.0,10.84339,10843.39 +14460,2025-03-08T19:27:35.380465-08:00,1706.0,10.843804,10843.804 +14461,2025-03-08T19:27:46.216751-08:00,1696.0,10.836286,10836.286 +14462,2025-03-08T19:27:57.048648-08:00,1701.0,10.831897,10831.897 +14463,2025-03-08T19:28:07.883813-08:00,1705.0,10.835165,10835.165 +14464,2025-03-08T19:28:18.725326-08:00,1702.0,10.841513,10841.513 +14465,2025-03-08T19:28:29.560389-08:00,1703.0,10.835063,10835.063 +14466,2025-03-08T19:28:40.386445-08:00,1705.0,10.826056,10826.056 +14467,2025-03-08T19:28:51.231411-08:00,1648.0,10.844966,10844.966 +14468,2025-03-08T19:29:02.074735-08:00,1682.0,10.843324,10843.324 +14469,2025-03-08T19:29:12.915741-08:00,1664.0,10.841006,10841.006 +14470,2025-03-08T19:29:23.752629-08:00,1658.0,10.836888,10836.888 +14471,2025-03-08T19:29:34.594408-08:00,1661.0,10.841779,10841.779 +14472,2025-03-08T19:29:45.436637-08:00,1617.0,10.842229,10842.229 +14473,2025-03-08T19:29:56.287410-08:00,1616.0,10.850773,10850.773 +14474,2025-03-08T19:30:07.121939-08:00,1706.0,10.834529,10834.529 +14475,2025-03-08T19:30:17.968641-08:00,1705.0,10.846702,10846.702 +14476,2025-03-08T19:30:28.804410-08:00,1702.0,10.835769,10835.769 +14477,2025-03-08T19:30:39.649733-08:00,1673.0,10.845323,10845.323 +14478,2025-03-08T19:30:50.486714-08:00,1625.0,10.836981,10836.981 +14479,2025-03-08T19:31:01.322536-08:00,1702.0,10.835822,10835.822 +14480,2025-03-08T19:31:12.161412-08:00,1706.0,10.838876,10838.876 +14481,2025-03-08T19:31:23.003732-08:00,1618.0,10.84232,10842.32 +14482,2025-03-08T19:31:33.839615-08:00,1674.0,10.835883,10835.883 +14483,2025-03-08T19:31:44.680406-08:00,1702.0,10.840791,10840.791 +14484,2025-03-08T19:31:55.509901-08:00,1649.0,10.829495,10829.495 +14485,2025-03-08T19:32:06.355406-08:00,1670.0,10.845505,10845.505 +14486,2025-03-08T19:32:17.185422-08:00,1707.0,10.830016,10830.016 +14487,2025-03-08T19:32:28.022435-08:00,1657.0,10.837013,10837.013 +14488,2025-03-08T19:32:38.859398-08:00,1707.0,10.836963,10836.963 +14489,2025-03-08T19:32:49.698417-08:00,1616.0,10.839019,10839.019 +14490,2025-03-08T19:33:00.540814-08:00,1655.0,10.842397,10842.397 +14491,2025-03-08T19:33:11.381448-08:00,1663.0,10.840634,10840.634 +14492,2025-03-08T19:33:22.219555-08:00,1616.0,10.838107,10838.107 +14493,2025-03-08T19:33:33.063387-08:00,1707.0,10.843832,10843.832 +14494,2025-03-08T19:33:43.902160-08:00,1706.0,10.838773,10838.773 +14495,2025-03-08T19:33:54.740659-08:00,1630.0,10.838499,10838.499 +14496,2025-03-08T19:34:05.586415-08:00,1707.0,10.845756,10845.756 +14497,2025-03-08T19:34:16.424747-08:00,1706.0,10.838332,10838.332 +14498,2025-03-08T19:34:27.253989-08:00,1693.0,10.829242,10829.242 +14499,2025-03-08T19:34:38.092417-08:00,1647.0,10.838428,10838.428 +14500,2025-03-08T19:34:48.933949-08:00,1701.0,10.841532,10841.532 +14501,2025-03-08T19:34:59.771431-08:00,1633.0,10.837482,10837.482 +14502,2025-03-08T19:35:10.613660-08:00,1631.0,10.842229,10842.229 +14503,2025-03-08T19:35:21.458396-08:00,1635.0,10.844736,10844.736 +14504,2025-03-08T19:35:32.303727-08:00,1676.0,10.845331,10845.331 +14505,2025-03-08T19:35:43.134612-08:00,1699.0,10.830885,10830.885 +14506,2025-03-08T19:35:53.977414-08:00,1661.0,10.842802,10842.802 +14507,2025-03-08T19:36:04.812959-08:00,1629.0,10.835545,10835.545 +14508,2025-03-08T19:36:15.660266-08:00,1670.0,10.847307,10847.307 +14509,2025-03-08T19:36:26.500641-08:00,1648.0,10.840375,10840.375 +14510,2025-03-08T19:36:37.344413-08:00,1703.0,10.843772,10843.772 +14511,2025-03-08T19:36:48.189870-08:00,1663.0,10.845457,10845.457 +14512,2025-03-08T19:36:59.025460-08:00,1698.0,10.83559,10835.59 +14513,2025-03-08T19:37:09.874722-08:00,1695.0,10.849262,10849.262 +14514,2025-03-08T19:37:20.706404-08:00,1629.0,10.831682,10831.682 +14515,2025-03-08T19:37:31.552551-08:00,1623.0,10.846147,10846.147 +14516,2025-03-08T19:37:42.403425-08:00,1707.0,10.850874,10850.874 +14517,2025-03-08T19:37:53.241747-08:00,1654.0,10.838322,10838.322 +14518,2025-03-08T19:38:04.083638-08:00,1623.0,10.841891,10841.891 +14519,2025-03-08T19:38:14.926635-08:00,1664.0,10.842997,10842.997 +14520,2025-03-08T19:38:25.764358-08:00,1659.0,10.837723,10837.723 +14521,2025-03-08T19:38:36.604405-08:00,1661.0,10.840047,10840.047 +14522,2025-03-08T19:38:47.440413-08:00,1648.0,10.836008,10836.008 +14523,2025-03-08T19:38:58.279979-08:00,1621.0,10.839566,10839.566 +14524,2025-03-08T19:39:09.127451-08:00,1615.0,10.847472,10847.472 +14525,2025-03-08T19:39:19.955570-08:00,1694.0,10.828119,10828.119 +14526,2025-03-08T19:39:30.798576-08:00,1648.0,10.843006,10843.006 +14527,2025-03-08T19:39:41.637912-08:00,1693.0,10.839336,10839.336 +14528,2025-03-08T19:39:52.486404-08:00,1639.0,10.848492,10848.492 +14529,2025-03-08T19:40:03.323391-08:00,1673.0,10.836987,10836.987 +14530,2025-03-08T19:40:14.169412-08:00,1648.0,10.846021,10846.021 +14531,2025-03-08T19:40:25.010681-08:00,1706.0,10.841269,10841.269 +14532,2025-03-08T19:40:35.859885-08:00,1658.0,10.849204,10849.204 +14533,2025-03-08T19:40:46.690412-08:00,1670.0,10.830527,10830.527 +14534,2025-03-08T19:40:57.545402-08:00,1666.0,10.85499,10854.99 +14535,2025-03-08T19:41:08.381851-08:00,1697.0,10.836449,10836.449 +14536,2025-03-08T19:41:19.232759-08:00,1621.0,10.850908,10850.908 +14537,2025-03-08T19:41:30.073636-08:00,1701.0,10.840877,10840.877 +14538,2025-03-08T19:41:40.917598-08:00,1654.0,10.843962,10843.962 +14539,2025-03-08T19:41:51.756473-08:00,1664.0,10.838875,10838.875 +14540,2025-03-08T19:42:02.598962-08:00,1663.0,10.842489,10842.489 +14541,2025-03-08T19:42:13.437565-08:00,1615.0,10.838603,10838.603 +14542,2025-03-08T19:42:24.283531-08:00,1703.0,10.845966,10845.966 +14543,2025-03-08T19:42:35.128819-08:00,1697.0,10.845288,10845.288 +14544,2025-03-08T19:42:45.961728-08:00,1694.0,10.832909,10832.909 +14545,2025-03-08T19:42:56.801526-08:00,1699.0,10.839798,10839.798 +14546,2025-03-08T19:43:07.641826-08:00,1658.0,10.8403,10840.3 +14547,2025-03-08T19:43:18.488996-08:00,1701.0,10.84717,10847.17 +14548,2025-03-08T19:43:29.325921-08:00,1658.0,10.836925,10836.925 +14549,2025-03-08T19:43:40.168403-08:00,1705.0,10.842482,10842.482 +14550,2025-03-08T19:43:51.003675-08:00,1694.0,10.835272,10835.272 +14551,2025-03-08T19:44:01.849827-08:00,1676.0,10.846152,10846.152 +14552,2025-03-08T19:44:12.690260-08:00,1661.0,10.840433,10840.433 +14553,2025-03-08T19:44:23.529521-08:00,1695.0,10.839261,10839.261 +14554,2025-03-08T19:44:34.368416-08:00,1663.0,10.838895,10838.895 +14555,2025-03-08T19:44:45.210960-08:00,1703.0,10.842544,10842.544 +14556,2025-03-08T19:44:56.054518-08:00,1665.0,10.843558,10843.558 +14557,2025-03-08T19:45:06.896996-08:00,1702.0,10.842478,10842.478 +14558,2025-03-08T19:45:17.734481-08:00,1627.0,10.837485,10837.485 +14559,2025-03-08T19:45:28.565413-08:00,1694.0,10.830932,10830.932 +14560,2025-03-08T19:45:39.409658-08:00,1651.0,10.844245,10844.245 +14561,2025-03-08T19:45:50.244684-08:00,1616.0,10.835026,10835.026 +14562,2025-03-08T19:46:01.081967-08:00,1654.0,10.837283,10837.283 +14563,2025-03-08T19:46:11.934453-08:00,1615.0,10.852486,10852.486 +14564,2025-03-08T19:46:22.772078-08:00,1696.0,10.837625,10837.625 +14565,2025-03-08T19:46:33.618674-08:00,1639.0,10.846596,10846.596 +14566,2025-03-08T19:46:44.463644-08:00,1622.0,10.84497,10844.97 +14567,2025-03-08T19:46:55.300412-08:00,1686.0,10.836768,10836.768 +14568,2025-03-08T19:47:06.145458-08:00,1648.0,10.845046,10845.046 +14569,2025-03-08T19:47:16.985547-08:00,1669.0,10.840089,10840.089 +14570,2025-03-08T19:47:27.829459-08:00,1616.0,10.843912,10843.912 +14571,2025-03-08T19:47:38.673763-08:00,1707.0,10.844304,10844.304 +14572,2025-03-08T19:47:49.512413-08:00,1663.0,10.83865,10838.65 +14573,2025-03-08T19:48:00.359681-08:00,1705.0,10.847268,10847.268 +14574,2025-03-08T19:48:11.197724-08:00,1699.0,10.838043,10838.043 +14575,2025-03-08T19:48:22.044524-08:00,1703.0,10.8468,10846.8 +14576,2025-03-08T19:48:32.892918-08:00,1701.0,10.848394,10848.394 +14577,2025-03-08T19:48:43.723418-08:00,1665.0,10.8305,10830.5 +14578,2025-03-08T19:48:54.570903-08:00,1659.0,10.847485,10847.485 +14579,2025-03-08T19:49:05.405759-08:00,1703.0,10.834856,10834.856 +14580,2025-03-08T19:49:16.254443-08:00,1707.0,10.848684,10848.684 +14581,2025-03-08T19:49:27.097413-08:00,1638.0,10.84297,10842.97 +14582,2025-03-08T19:49:37.939720-08:00,1665.0,10.842307,10842.307 +14583,2025-03-08T19:49:48.783694-08:00,1706.0,10.843974,10843.974 +14584,2025-03-08T19:49:59.633505-08:00,1653.0,10.849811,10849.811 +14585,2025-03-08T19:50:10.473408-08:00,1703.0,10.839903,10839.903 +14586,2025-03-08T19:50:21.313409-08:00,1707.0,10.840001,10840.001 +14587,2025-03-08T19:50:32.157414-08:00,1617.0,10.844005,10844.005 +14588,2025-03-08T19:50:42.998757-08:00,1703.0,10.841343,10841.343 +14589,2025-03-08T19:50:53.841496-08:00,1644.0,10.842739,10842.739 +14590,2025-03-08T19:51:04.687574-08:00,1703.0,10.846078,10846.078 +14591,2025-03-08T19:51:15.534631-08:00,1706.0,10.847057,10847.057 +14592,2025-03-08T19:51:26.384453-08:00,1706.0,10.849822,10849.822 +14593,2025-03-08T19:51:37.215659-08:00,1705.0,10.831206,10831.206 +14594,2025-03-08T19:51:48.062410-08:00,1702.0,10.846751,10846.751 +14595,2025-03-08T19:51:58.899555-08:00,1664.0,10.837145,10837.145 +14596,2025-03-08T19:52:09.741465-08:00,1631.0,10.84191,10841.91 +14597,2025-03-08T19:52:20.586698-08:00,1695.0,10.845233,10845.233 +14598,2025-03-08T19:52:31.428436-08:00,1655.0,10.841738,10841.738 +14599,2025-03-08T19:52:42.283510-08:00,1635.0,10.855074,10855.074 +14600,2025-03-08T19:52:53.125409-08:00,1664.0,10.841899,10841.899 +14601,2025-03-08T19:53:03.967393-08:00,1628.0,10.841984,10841.984 +14602,2025-03-08T19:53:14.804925-08:00,1705.0,10.837532,10837.532 +14603,2025-03-08T19:53:25.645132-08:00,1705.0,10.840207,10840.207 +14604,2025-03-08T19:53:36.483412-08:00,1701.0,10.83828,10838.28 +14605,2025-03-08T19:53:47.326420-08:00,1616.0,10.843008,10843.008 +14606,2025-03-08T19:53:58.174709-08:00,1665.0,10.848289,10848.289 +14607,2025-03-08T19:54:09.010413-08:00,1697.0,10.835704,10835.704 +14608,2025-03-08T19:54:19.856712-08:00,1703.0,10.846299,10846.299 +14609,2025-03-08T19:54:30.700414-08:00,1679.0,10.843702,10843.702 +14610,2025-03-08T19:54:41.546797-08:00,1680.0,10.846383,10846.383 +14611,2025-03-08T19:54:52.389778-08:00,1652.0,10.842981,10842.981 +14612,2025-03-08T19:55:03.229385-08:00,1702.0,10.839607,10839.607 +14613,2025-03-08T19:55:14.071408-08:00,1701.0,10.842023,10842.023 +14614,2025-03-08T19:55:24.908968-08:00,1707.0,10.83756,10837.56 +14615,2025-03-08T19:55:35.752461-08:00,1605.0,10.843493,10843.493 +14616,2025-03-08T19:55:46.601411-08:00,1611.0,10.84895,10848.95 +14617,2025-03-08T19:55:57.448412-08:00,1701.0,10.847001,10847.001 +14618,2025-03-08T19:56:08.293407-08:00,1707.0,10.844995,10844.995 +14619,2025-03-08T19:56:19.137896-08:00,1655.0,10.844489,10844.489 +14620,2025-03-08T19:56:29.987804-08:00,1613.0,10.849908,10849.908 +14621,2025-03-08T19:56:40.827434-08:00,1703.0,10.83963,10839.63 +14622,2025-03-08T19:56:51.668684-08:00,1650.0,10.84125,10841.25 +14623,2025-03-08T19:57:02.507404-08:00,1680.0,10.83872,10838.72 +14624,2025-03-08T19:57:13.350960-08:00,1673.0,10.843556,10843.556 +14625,2025-03-08T19:57:24.195453-08:00,1617.0,10.844493,10844.493 +14626,2025-03-08T19:57:35.036718-08:00,1680.0,10.841265,10841.265 +14627,2025-03-08T19:57:45.873673-08:00,1669.0,10.836955,10836.955 +14628,2025-03-08T19:57:56.724004-08:00,1665.0,10.850331,10850.331 +14629,2025-03-08T19:58:07.559404-08:00,1705.0,10.8354,10835.4 +14630,2025-03-08T19:58:18.398462-08:00,1655.0,10.839058,10839.058 +14631,2025-03-08T19:58:29.241412-08:00,1648.0,10.84295,10842.95 +14632,2025-03-08T19:58:40.083696-08:00,1639.0,10.842284,10842.284 +14633,2025-03-08T19:58:50.923723-08:00,1689.0,10.840027,10840.027 +14634,2025-03-08T19:59:01.763414-08:00,1682.0,10.839691,10839.691 +14635,2025-03-08T19:59:12.608589-08:00,1667.0,10.845175,10845.175 +14636,2025-03-08T19:59:23.458046-08:00,1705.0,10.849457,10849.457 +14637,2025-03-08T19:59:34.298235-08:00,1690.0,10.840189,10840.189 +14638,2025-03-08T19:59:45.134401-08:00,1657.0,10.836166,10836.166 +14639,2025-03-08T19:59:55.972413-08:00,1703.0,10.838012,10838.012 +14640,2025-03-08T20:00:06.817700-08:00,1702.0,10.845287,10845.287 +14641,2025-03-08T20:00:17.655412-08:00,1634.0,10.837712,10837.712 +14642,2025-03-08T20:00:28.491640-08:00,1658.0,10.836228,10836.228 +14643,2025-03-08T20:00:39.335755-08:00,1692.0,10.844115,10844.115 +14644,2025-03-08T20:00:50.185455-08:00,1644.0,10.8497,10849.7 +14645,2025-03-08T20:01:01.027600-08:00,1666.0,10.842145,10842.145 +14646,2025-03-08T20:01:11.867416-08:00,1632.0,10.839816,10839.816 +14647,2025-03-08T20:01:22.710406-08:00,1703.0,10.84299,10842.99 +14648,2025-03-08T20:01:33.557403-08:00,1707.0,10.846997,10846.997 +14649,2025-03-08T20:01:44.403720-08:00,1658.0,10.846317,10846.317 +14650,2025-03-08T20:01:55.248688-08:00,1616.0,10.844968,10844.968 +14651,2025-03-08T20:02:06.086398-08:00,1701.0,10.83771,10837.71 +14652,2025-03-08T20:02:16.928691-08:00,1636.0,10.842293,10842.293 +14653,2025-03-08T20:02:27.766441-08:00,1689.0,10.83775,10837.75 +14654,2025-03-08T20:02:38.606403-08:00,1675.0,10.839962,10839.962 +14655,2025-03-08T20:02:49.445654-08:00,1695.0,10.839251,10839.251 +14656,2025-03-08T20:03:00.284661-08:00,1706.0,10.839007,10839.007 +14657,2025-03-08T20:03:11.133564-08:00,1686.0,10.848903,10848.903 +14658,2025-03-08T20:03:21.976413-08:00,1693.0,10.842849,10842.849 +14659,2025-03-08T20:03:32.828653-08:00,1655.0,10.85224,10852.24 +14660,2025-03-08T20:03:43.667377-08:00,1659.0,10.838724,10838.724 +14661,2025-03-08T20:03:54.518698-08:00,1695.0,10.851321,10851.321 +14662,2025-03-08T20:04:05.355357-08:00,1668.0,10.836659,10836.659 +14663,2025-03-08T20:04:16.196414-08:00,1664.0,10.841057,10841.057 +14664,2025-03-08T20:04:27.039404-08:00,1639.0,10.84299,10842.99 +14665,2025-03-08T20:04:37.883604-08:00,1671.0,10.8442,10844.2 +14666,2025-03-08T20:04:48.726714-08:00,1659.0,10.84311,10843.11 +14667,2025-03-08T20:05:10.415627-08:00,1683.0,21.688913,21688.913 +14668,2025-03-08T20:05:21.261499-08:00,1696.0,10.845872,10845.872 +14669,2025-03-08T20:05:32.098776-08:00,1693.0,10.837277,10837.277 +14670,2025-03-08T20:05:42.997629-08:00,1616.0,10.898853,10898.853 +14671,2025-03-08T20:05:53.835464-08:00,1644.0,10.837835,10837.835 +14672,2025-03-08T20:06:04.689123-08:00,1701.0,10.853659,10853.659 +14673,2025-03-08T20:06:15.536121-08:00,1675.0,10.846998,10846.998 +14674,2025-03-08T20:06:26.377122-08:00,1680.0,10.841001,10841.001 +14675,2025-03-08T20:06:37.228119-08:00,1618.0,10.850997,10850.997 +14676,2025-03-08T20:06:48.075419-08:00,1664.0,10.8473,10847.3 +14677,2025-03-08T20:06:58.919170-08:00,1709.0,10.843751,10843.751 +14678,2025-03-08T20:07:09.761329-08:00,1702.0,10.842159,10842.159 +14679,2025-03-08T20:07:20.600273-08:00,1701.0,10.838944,10838.944 +14680,2025-03-08T20:07:31.446531-08:00,1679.0,10.846258,10846.258 +14681,2025-03-08T20:07:42.297299-08:00,1663.0,10.850768,10850.768 +14682,2025-03-08T20:07:53.154598-08:00,1682.0,10.857299,10857.299 +14683,2025-03-08T20:08:04.005093-08:00,1706.0,10.850495,10850.495 +14684,2025-03-08T20:08:14.847349-08:00,1670.0,10.842256,10842.256 +14685,2025-03-08T20:08:25.698264-08:00,1674.0,10.850915,10850.915 +14686,2025-03-08T20:08:36.548112-08:00,1661.0,10.849848,10849.848 +14687,2025-03-08T20:08:47.395249-08:00,1677.0,10.847137,10847.137 +14688,2025-03-08T20:08:58.234120-08:00,1663.0,10.838871,10838.871 +14689,2025-03-08T20:09:09.081455-08:00,1614.0,10.847335,10847.335 +14690,2025-03-08T20:09:19.931477-08:00,1618.0,10.850022,10850.022 +14691,2025-03-08T20:09:30.775101-08:00,1698.0,10.843624,10843.624 +14692,2025-03-08T20:09:41.622119-08:00,1697.0,10.847018,10847.018 +14693,2025-03-08T20:09:52.466503-08:00,1704.0,10.844384,10844.384 +14694,2025-03-08T20:10:03.310424-08:00,1675.0,10.843921,10843.921 +14695,2025-03-08T20:10:14.157109-08:00,1693.0,10.846685,10846.685 +14696,2025-03-08T20:10:24.999117-08:00,1697.0,10.842008,10842.008 +14697,2025-03-08T20:10:35.848116-08:00,1698.0,10.848999,10848.999 +14698,2025-03-08T20:10:46.694473-08:00,1701.0,10.846357,10846.357 +14699,2025-03-08T20:10:57.545116-08:00,1629.0,10.850643,10850.643 +14700,2025-03-08T20:11:08.388125-08:00,1705.0,10.843009,10843.009 +14701,2025-03-08T20:11:19.231392-08:00,1709.0,10.843267,10843.267 +14702,2025-03-08T20:11:30.075264-08:00,1702.0,10.843872,10843.872 +14703,2025-03-08T20:11:40.923364-08:00,1686.0,10.8481,10848.1 +14704,2025-03-08T20:11:51.763171-08:00,1616.0,10.839807,10839.807 +14705,2025-03-08T20:12:02.600328-08:00,1703.0,10.837157,10837.157 +14706,2025-03-08T20:12:13.441116-08:00,1683.0,10.840788,10840.788 +14707,2025-03-08T20:12:24.285122-08:00,1691.0,10.844006,10844.006 +14708,2025-03-08T20:12:35.132118-08:00,1623.0,10.846996,10846.996 +14709,2025-03-08T20:12:45.975122-08:00,1610.0,10.843004,10843.004 +14710,2025-03-08T20:12:56.816440-08:00,1661.0,10.841318,10841.318 +14711,2025-03-08T20:13:07.670146-08:00,1663.0,10.853706,10853.706 +14712,2025-03-08T20:13:18.505341-08:00,1681.0,10.835195,10835.195 +14713,2025-03-08T20:13:29.361174-08:00,1700.0,10.855833,10855.833 +14714,2025-03-08T20:13:40.210322-08:00,1687.0,10.849148,10849.148 +14715,2025-03-08T20:13:51.059171-08:00,1651.0,10.848849,10848.849 +14716,2025-03-08T20:14:01.903392-08:00,1703.0,10.844221,10844.221 +14717,2025-03-08T20:14:12.751886-08:00,1635.0,10.848494,10848.494 +14718,2025-03-08T20:14:23.600400-08:00,1664.0,10.848514,10848.514 +14719,2025-03-08T20:14:34.443112-08:00,1681.0,10.842712,10842.712 +14720,2025-03-08T20:14:45.296116-08:00,1707.0,10.853004,10853.004 +14721,2025-03-08T20:14:56.140356-08:00,1702.0,10.84424,10844.24 +14722,2025-03-08T20:15:06.990358-08:00,1691.0,10.850002,10850.002 +14723,2025-03-08T20:15:17.837118-08:00,1661.0,10.84676,10846.76 +14724,2025-03-08T20:15:28.665108-08:00,1655.0,10.82799,10827.99 +14725,2025-03-08T20:15:39.513337-08:00,1693.0,10.848229,10848.229 +14726,2025-03-08T20:15:50.362469-08:00,1703.0,10.849132,10849.132 +14727,2025-03-08T20:16:01.199729-08:00,1685.0,10.83726,10837.26 +14728,2025-03-08T20:16:12.054842-08:00,1683.0,10.855113,10855.113 +14729,2025-03-08T20:16:22.891117-08:00,1683.0,10.836275,10836.275 +14730,2025-03-08T20:16:33.743091-08:00,1613.0,10.851974,10851.974 +14731,2025-03-08T20:16:44.583118-08:00,1685.0,10.840027,10840.027 +14732,2025-03-08T20:16:55.420825-08:00,1643.0,10.837707,10837.707 +14733,2025-03-08T20:17:06.268422-08:00,1711.0,10.847597,10847.597 +14734,2025-03-08T20:17:17.100417-08:00,1710.0,10.831995,10831.995 +14735,2025-03-08T20:17:27.955426-08:00,1691.0,10.855009,10855.009 +14736,2025-03-08T20:17:38.798500-08:00,1697.0,10.843074,10843.074 +14737,2025-03-08T20:17:49.629957-08:00,1669.0,10.831457,10831.457 +14738,2025-03-08T20:18:00.486612-08:00,1639.0,10.856655,10856.655 +14739,2025-03-08T20:18:11.326337-08:00,1676.0,10.839725,10839.725 +14740,2025-03-08T20:18:22.171376-08:00,1667.0,10.845039,10845.039 +14741,2025-03-08T20:18:33.019121-08:00,1641.0,10.847745,10847.745 +14742,2025-03-08T20:18:43.866378-08:00,1702.0,10.847257,10847.257 +14743,2025-03-08T20:18:54.705808-08:00,1633.0,10.83943,10839.43 +14744,2025-03-08T20:19:05.554483-08:00,1701.0,10.848675,10848.675 +14745,2025-03-08T20:19:16.400108-08:00,1706.0,10.845625,10845.625 +14746,2025-03-08T20:19:27.240111-08:00,1633.0,10.840003,10840.003 +14747,2025-03-08T20:19:38.083457-08:00,1660.0,10.843346,10843.346 +14748,2025-03-08T20:19:48.933386-08:00,1687.0,10.849929,10849.929 +14749,2025-03-08T20:19:59.768120-08:00,1707.0,10.834734,10834.734 +14750,2025-03-08T20:20:10.622116-08:00,1661.0,10.853996,10853.996 +14751,2025-03-08T20:20:21.462161-08:00,1666.0,10.840045,10840.045 +14752,2025-03-08T20:20:32.309729-08:00,1684.0,10.847568,10847.568 +14753,2025-03-08T20:20:43.148800-08:00,1691.0,10.839071,10839.071 +14754,2025-03-08T20:20:53.996262-08:00,1647.0,10.847462,10847.462 +14755,2025-03-08T20:21:04.840165-08:00,1605.0,10.843903,10843.903 +14756,2025-03-08T20:21:15.681459-08:00,1703.0,10.841294,10841.294 +14757,2025-03-08T20:21:26.528430-08:00,1662.0,10.846971,10846.971 +14758,2025-03-08T20:21:37.368810-08:00,1671.0,10.84038,10840.38 +14759,2025-03-08T20:21:48.212676-08:00,1675.0,10.843866,10843.866 +14760,2025-03-08T20:21:59.055120-08:00,1655.0,10.842444,10842.444 +14761,2025-03-08T20:22:09.895798-08:00,1677.0,10.840678,10840.678 +14762,2025-03-08T20:22:20.735957-08:00,1638.0,10.840159,10840.159 +14763,2025-03-08T20:22:31.578451-08:00,1703.0,10.842494,10842.494 +14764,2025-03-08T20:22:42.422232-08:00,1683.0,10.843781,10843.781 +14765,2025-03-08T20:22:53.261451-08:00,1687.0,10.839219,10839.219 +14766,2025-03-08T20:23:04.098329-08:00,1707.0,10.836878,10836.878 +14767,2025-03-08T20:23:14.945951-08:00,1709.0,10.847622,10847.622 +14768,2025-03-08T20:23:25.777114-08:00,1648.0,10.831163,10831.163 +14769,2025-03-08T20:23:36.618517-08:00,1697.0,10.841403,10841.403 +14770,2025-03-08T20:23:47.451120-08:00,1625.0,10.832603,10832.603 +14771,2025-03-08T20:23:58.295389-08:00,1639.0,10.844269,10844.269 +14772,2025-03-08T20:24:09.130406-08:00,1653.0,10.835017,10835.017 +14773,2025-03-08T20:24:19.971179-08:00,1701.0,10.840773,10840.773 +14774,2025-03-08T20:24:30.818091-08:00,1653.0,10.846912,10846.912 +14775,2025-03-08T20:24:41.665115-08:00,1675.0,10.847024,10847.024 +14776,2025-03-08T20:24:52.508374-08:00,1709.0,10.843259,10843.259 +14777,2025-03-08T20:25:03.353443-08:00,1707.0,10.845069,10845.069 +14778,2025-03-08T20:25:14.195420-08:00,1695.0,10.841977,10841.977 +14779,2025-03-08T20:25:25.028377-08:00,1706.0,10.832957,10832.957 +14780,2025-03-08T20:25:35.877188-08:00,1607.0,10.848811,10848.811 +14781,2025-03-08T20:25:46.715586-08:00,1706.0,10.838398,10838.398 +14782,2025-03-08T20:25:57.555424-08:00,1646.0,10.839838,10839.838 +14783,2025-03-08T20:26:08.388383-08:00,1610.0,10.832959,10832.959 +14784,2025-03-08T20:26:19.234474-08:00,1678.0,10.846091,10846.091 +14785,2025-03-08T20:26:30.064420-08:00,1617.0,10.829946,10829.946 +14786,2025-03-08T20:26:40.903123-08:00,1636.0,10.838703,10838.703 +14787,2025-03-08T20:26:51.746140-08:00,1702.0,10.843017,10843.017 +14788,2025-03-08T20:27:02.570122-08:00,1699.0,10.823982,10823.982 +14789,2025-03-08T20:27:13.408253-08:00,1703.0,10.838131,10838.131 +14790,2025-03-08T20:27:24.239547-08:00,1642.0,10.831294,10831.294 +14791,2025-03-08T20:27:35.078479-08:00,1693.0,10.838932,10838.932 +14792,2025-03-08T20:27:45.904100-08:00,1629.0,10.825621,10825.621 +14793,2025-03-08T20:27:56.738175-08:00,1706.0,10.834075,10834.075 +14794,2025-03-08T20:28:07.575439-08:00,1625.0,10.837264,10837.264 +14795,2025-03-08T20:28:18.415149-08:00,1705.0,10.83971,10839.71 +14796,2025-03-08T20:28:29.253717-08:00,1697.0,10.838568,10838.568 +14797,2025-03-08T20:28:40.085695-08:00,1652.0,10.831978,10831.978 +14798,2025-03-08T20:28:50.929444-08:00,1689.0,10.843749,10843.749 +14799,2025-03-08T20:29:01.768342-08:00,1706.0,10.838898,10838.898 +14800,2025-03-08T20:29:12.608121-08:00,1606.0,10.839779,10839.779 +14801,2025-03-08T20:29:23.440242-08:00,1627.0,10.832121,10832.121 +14802,2025-03-08T20:29:34.273824-08:00,1706.0,10.833582,10833.582 +14803,2025-03-08T20:29:45.103648-08:00,1675.0,10.829824,10829.824 +14804,2025-03-08T20:29:55.942123-08:00,1686.0,10.838475,10838.475 +14805,2025-03-08T20:30:06.778367-08:00,1632.0,10.836244,10836.244 +14806,2025-03-08T20:30:17.610165-08:00,1619.0,10.831798,10831.798 +14807,2025-03-08T20:30:28.449123-08:00,1643.0,10.838958,10838.958 +14808,2025-03-08T20:30:39.296221-08:00,1694.0,10.847098,10847.098 +14809,2025-03-08T20:30:50.129138-08:00,1665.0,10.832917,10832.917 +14810,2025-03-08T20:31:00.968643-08:00,1699.0,10.839505,10839.505 +14811,2025-03-08T20:31:11.814834-08:00,1635.0,10.846191,10846.191 +14812,2025-03-08T20:31:22.655371-08:00,1666.0,10.840537,10840.537 +14813,2025-03-08T20:31:33.490149-08:00,1700.0,10.834778,10834.778 +14814,2025-03-08T20:31:44.327179-08:00,1687.0,10.83703,10837.03 +14815,2025-03-08T20:31:55.170157-08:00,1702.0,10.842978,10842.978 +14816,2025-03-08T20:32:06.002118-08:00,1631.0,10.831961,10831.961 +14817,2025-03-08T20:32:16.840512-08:00,1632.0,10.838394,10838.394 +14818,2025-03-08T20:32:27.667435-08:00,1706.0,10.826923,10826.923 +14819,2025-03-08T20:32:38.509116-08:00,1693.0,10.841681,10841.681 +14820,2025-03-08T20:32:49.350113-08:00,1707.0,10.840997,10840.997 +14821,2025-03-08T20:33:00.188518-08:00,1657.0,10.838405,10838.405 +14822,2025-03-08T20:33:11.030949-08:00,1662.0,10.842431,10842.431 +14823,2025-03-08T20:33:21.875117-08:00,1702.0,10.844168,10844.168 +14824,2025-03-08T20:33:32.718430-08:00,1616.0,10.843313,10843.313 +14825,2025-03-08T20:33:43.549404-08:00,1707.0,10.830974,10830.974 +14826,2025-03-08T20:33:54.390411-08:00,1693.0,10.841007,10841.007 +14827,2025-03-08T20:34:05.225557-08:00,1705.0,10.835146,10835.146 +14828,2025-03-08T20:34:16.067420-08:00,1645.0,10.841863,10841.863 +14829,2025-03-08T20:34:26.908833-08:00,1627.0,10.841413,10841.413 +14830,2025-03-08T20:34:37.751117-08:00,1674.0,10.842284,10842.284 +14831,2025-03-08T20:34:48.597337-08:00,1659.0,10.84622,10846.22 +14832,2025-03-08T20:34:59.440120-08:00,1680.0,10.842783,10842.783 +14833,2025-03-08T20:35:10.281457-08:00,1664.0,10.841337,10841.337 +14834,2025-03-08T20:35:21.125342-08:00,1670.0,10.843885,10843.885 +14835,2025-03-08T20:35:31.964317-08:00,1687.0,10.838975,10838.975 +14836,2025-03-08T20:35:42.806181-08:00,1707.0,10.841864,10841.864 +14837,2025-03-08T20:35:53.651155-08:00,1698.0,10.844974,10844.974 +14838,2025-03-08T20:36:04.500593-08:00,1692.0,10.849438,10849.438 +14839,2025-03-08T20:36:15.341282-08:00,1654.0,10.840689,10840.689 +14840,2025-03-08T20:36:26.180112-08:00,1695.0,10.83883,10838.83 +14841,2025-03-08T20:36:37.024171-08:00,1659.0,10.844059,10844.059 +14842,2025-03-08T20:36:47.860038-08:00,1705.0,10.835867,10835.867 +14843,2025-03-08T20:36:58.708298-08:00,1685.0,10.84826,10848.26 +14844,2025-03-08T20:37:09.552113-08:00,1663.0,10.843815,10843.815 +14845,2025-03-08T20:37:20.384476-08:00,1657.0,10.832363,10832.363 +14846,2025-03-08T20:37:31.225211-08:00,1707.0,10.840735,10840.735 +14847,2025-03-08T20:37:42.063108-08:00,1668.0,10.837897,10837.897 +14848,2025-03-08T20:37:52.906364-08:00,1616.0,10.843256,10843.256 +14849,2025-03-08T20:38:03.750435-08:00,1691.0,10.844071,10844.071 +14850,2025-03-08T20:38:14.581114-08:00,1659.0,10.830679,10830.679 +14851,2025-03-08T20:38:25.419234-08:00,1650.0,10.83812,10838.12 +14852,2025-03-08T20:38:36.259434-08:00,1679.0,10.8402,10840.2 +14853,2025-03-08T20:38:47.103254-08:00,1707.0,10.84382,10843.82 +14854,2025-03-08T20:38:57.941399-08:00,1685.0,10.838145,10838.145 +14855,2025-03-08T20:39:08.781123-08:00,1670.0,10.839724,10839.724 +14856,2025-03-08T20:39:19.612284-08:00,1665.0,10.831161,10831.161 +14857,2025-03-08T20:39:30.461195-08:00,1696.0,10.848911,10848.911 +14858,2025-03-08T20:39:41.300420-08:00,1643.0,10.839225,10839.225 +14859,2025-03-08T20:39:52.136107-08:00,1696.0,10.835687,10835.687 +14860,2025-03-08T20:40:02.984122-08:00,1653.0,10.848015,10848.015 +14861,2025-03-08T20:40:13.822666-08:00,1707.0,10.838544,10838.544 +14862,2025-03-08T20:40:24.658463-08:00,1680.0,10.835797,10835.797 +14863,2025-03-08T20:40:35.496776-08:00,1692.0,10.838313,10838.313 +14864,2025-03-08T20:40:46.335373-08:00,1679.0,10.838597,10838.597 +14865,2025-03-08T20:40:57.170522-08:00,1685.0,10.835149,10835.149 +14866,2025-03-08T20:41:08.008238-08:00,1649.0,10.837716,10837.716 +14867,2025-03-08T20:41:18.854099-08:00,1696.0,10.845861,10845.861 +14868,2025-03-08T20:41:29.684564-08:00,1685.0,10.830465,10830.465 +14869,2025-03-08T20:41:40.516245-08:00,1655.0,10.831681,10831.681 +14870,2025-03-08T20:41:51.365244-08:00,1709.0,10.848999,10848.999 +14871,2025-03-08T20:42:02.199428-08:00,1702.0,10.834184,10834.184 +14872,2025-03-08T20:42:13.039107-08:00,1651.0,10.839679,10839.679 +14873,2025-03-08T20:42:23.877350-08:00,1626.0,10.838243,10838.243 +14874,2025-03-08T20:42:34.720405-08:00,1707.0,10.843055,10843.055 +14875,2025-03-08T20:42:45.566381-08:00,1697.0,10.845976,10845.976 +14876,2025-03-08T20:42:56.405505-08:00,1706.0,10.839124,10839.124 +14877,2025-03-08T20:43:07.244316-08:00,1638.0,10.838811,10838.811 +14878,2025-03-08T20:43:18.087120-08:00,1681.0,10.842804,10842.804 +14879,2025-03-08T20:43:28.917295-08:00,1707.0,10.830175,10830.175 +14880,2025-03-08T20:43:39.758355-08:00,1693.0,10.84106,10841.06 +14881,2025-03-08T20:43:50.603181-08:00,1681.0,10.844826,10844.826 +14882,2025-03-08T20:44:01.442377-08:00,1647.0,10.839196,10839.196 +14883,2025-03-08T20:44:12.288426-08:00,1616.0,10.846049,10846.049 +14884,2025-03-08T20:44:23.124747-08:00,1701.0,10.836321,10836.321 +14885,2025-03-08T20:44:33.976294-08:00,1663.0,10.851547,10851.547 +14886,2025-03-08T20:44:44.821369-08:00,1637.0,10.845075,10845.075 +14887,2025-03-08T20:44:55.669124-08:00,1700.0,10.847755,10847.755 +14888,2025-03-08T20:45:06.506396-08:00,1684.0,10.837272,10837.272 +14889,2025-03-08T20:45:17.359430-08:00,1639.0,10.853034,10853.034 +14890,2025-03-08T20:45:28.195346-08:00,1661.0,10.835916,10835.916 +14891,2025-03-08T20:45:39.034677-08:00,1695.0,10.839331,10839.331 +14892,2025-03-08T20:45:49.872164-08:00,1654.0,10.837487,10837.487 +14893,2025-03-08T20:46:00.716101-08:00,1701.0,10.843937,10843.937 +14894,2025-03-08T20:46:11.551116-08:00,1626.0,10.835015,10835.015 +14895,2025-03-08T20:46:22.396444-08:00,1697.0,10.845328,10845.328 +14896,2025-03-08T20:46:33.234194-08:00,1692.0,10.83775,10837.75 +14897,2025-03-08T20:46:44.088119-08:00,1622.0,10.853925,10853.925 +14898,2025-03-08T20:46:54.933120-08:00,1687.0,10.845001,10845.001 +14899,2025-03-08T20:47:05.774120-08:00,1687.0,10.841,10841.0 +14900,2025-03-08T20:47:16.616314-08:00,1641.0,10.842194,10842.194 +14901,2025-03-08T20:47:27.454662-08:00,1618.0,10.838348,10838.348 +14902,2025-03-08T20:47:38.297367-08:00,1699.0,10.842705,10842.705 +14903,2025-03-08T20:47:49.135306-08:00,1675.0,10.837939,10837.939 +14904,2025-03-08T20:47:59.982194-08:00,1654.0,10.846888,10846.888 +14905,2025-03-08T20:48:10.823124-08:00,1702.0,10.84093,10840.93 +14906,2025-03-08T20:48:32.502175-08:00,1689.0,21.679051,21679.051 +14907,2025-03-08T20:48:43.357332-08:00,1626.0,10.855157,10855.157 +14908,2025-03-08T20:48:54.197559-08:00,1677.0,10.840227,10840.227 +14909,2025-03-08T20:49:05.042447-08:00,1679.0,10.844888,10844.888 +14910,2025-03-08T20:49:15.897501-08:00,1614.0,10.855054,10855.054 +14911,2025-03-08T20:49:26.736602-08:00,1642.0,10.839101,10839.101 +14912,2025-03-08T20:49:37.573448-08:00,1680.0,10.836846,10836.846 +14913,2025-03-08T20:49:48.425495-08:00,1625.0,10.852047,10852.047 +14914,2025-03-08T20:49:59.258262-08:00,1707.0,10.832767,10832.767 +14915,2025-03-08T20:50:10.104448-08:00,1653.0,10.846186,10846.186 +14916,2025-03-08T20:50:20.948287-08:00,1665.0,10.843839,10843.839 +14917,2025-03-08T20:50:31.794146-08:00,1701.0,10.845859,10845.859 +14918,2025-03-08T20:50:42.637691-08:00,1681.0,10.843545,10843.545 +14919,2025-03-08T20:50:53.490804-08:00,1666.0,10.853113,10853.113 +14920,2025-03-08T20:51:04.334271-08:00,1691.0,10.843467,10843.467 +14921,2025-03-08T20:51:15.171411-08:00,1703.0,10.83714,10837.14 +14922,2025-03-08T20:51:26.014463-08:00,1707.0,10.843052,10843.052 +14923,2025-03-08T20:51:36.863071-08:00,1680.0,10.848608,10848.608 +14924,2025-03-08T20:51:47.705116-08:00,1685.0,10.842045,10842.045 +14925,2025-03-08T20:51:58.546990-08:00,1606.0,10.841874,10841.874 +14926,2025-03-08T20:52:09.398102-08:00,1631.0,10.851112,10851.112 +14927,2025-03-08T20:52:20.241348-08:00,1702.0,10.843246,10843.246 +14928,2025-03-08T20:52:31.084657-08:00,1621.0,10.843309,10843.309 +14929,2025-03-08T20:52:41.924417-08:00,1703.0,10.83976,10839.76 +14930,2025-03-08T20:52:52.770372-08:00,1699.0,10.845955,10845.955 +14931,2025-03-08T20:53:03.607705-08:00,1706.0,10.837333,10837.333 +14932,2025-03-08T20:53:14.446436-08:00,1616.0,10.838731,10838.731 +14933,2025-03-08T20:53:25.286098-08:00,1698.0,10.839662,10839.662 +14934,2025-03-08T20:53:36.138355-08:00,1682.0,10.852257,10852.257 +14935,2025-03-08T20:53:46.979319-08:00,1698.0,10.840964,10840.964 +14936,2025-03-08T20:53:57.816354-08:00,1701.0,10.837035,10837.035 +14937,2025-03-08T20:54:08.666684-08:00,1680.0,10.85033,10850.33 +14938,2025-03-08T20:54:19.503350-08:00,1696.0,10.836666,10836.666 +14939,2025-03-08T20:54:30.347253-08:00,1676.0,10.843903,10843.903 +14940,2025-03-08T20:54:41.190747-08:00,1680.0,10.843494,10843.494 +14941,2025-03-08T20:54:52.028386-08:00,1699.0,10.837639,10837.639 +14942,2025-03-08T20:55:02.881102-08:00,1616.0,10.852716,10852.716 +14943,2025-03-08T20:55:13.729321-08:00,1654.0,10.848219,10848.219 +14944,2025-03-08T20:55:24.579118-08:00,1616.0,10.849797,10849.797 +14945,2025-03-08T20:55:35.416117-08:00,1690.0,10.836999,10836.999 +14946,2025-03-08T20:55:46.267194-08:00,1634.0,10.851077,10851.077 +14947,2025-03-08T20:55:57.112705-08:00,1641.0,10.845511,10845.511 +14948,2025-03-08T20:56:07.948553-08:00,1695.0,10.835848,10835.848 +14949,2025-03-08T20:56:18.796337-08:00,1617.0,10.847784,10847.784 +14950,2025-03-08T20:56:29.631506-08:00,1686.0,10.835169,10835.169 +14951,2025-03-08T20:56:40.474704-08:00,1683.0,10.843198,10843.198 +14952,2025-03-08T20:56:51.330184-08:00,1662.0,10.85548,10855.48 +14953,2025-03-08T20:57:02.172114-08:00,1693.0,10.84193,10841.93 +14954,2025-03-08T20:57:13.005118-08:00,1657.0,10.833004,10833.004 +14955,2025-03-08T20:57:23.853776-08:00,1603.0,10.848658,10848.658 +14956,2025-03-08T20:57:34.696794-08:00,1680.0,10.843018,10843.018 +14957,2025-03-08T20:57:45.532380-08:00,1697.0,10.835586,10835.586 +14958,2025-03-08T20:57:56.382893-08:00,1701.0,10.850513,10850.513 +14959,2025-03-08T20:58:07.220713-08:00,1627.0,10.83782,10837.82 +14960,2025-03-08T20:58:18.074123-08:00,1654.0,10.85341,10853.41 +14961,2025-03-08T20:58:28.925597-08:00,1691.0,10.851474,10851.474 +14962,2025-03-08T20:58:39.756118-08:00,1659.0,10.830521,10830.521 +14963,2025-03-08T20:58:50.598230-08:00,1629.0,10.842112,10842.112 +14964,2025-03-08T20:59:01.441246-08:00,1615.0,10.843016,10843.016 +14965,2025-03-08T20:59:12.291402-08:00,1703.0,10.850156,10850.156 +14966,2025-03-08T20:59:23.129122-08:00,1702.0,10.83772,10837.72 +14967,2025-03-08T20:59:33.975095-08:00,1631.0,10.845973,10845.973 +14968,2025-03-08T20:59:44.813201-08:00,1706.0,10.838106,10838.106 +14969,2025-03-08T20:59:55.649186-08:00,1661.0,10.835985,10835.985 +14970,2025-03-08T21:00:06.478097-08:00,1703.0,10.828911,10828.911 +14971,2025-03-08T21:00:17.325115-08:00,1654.0,10.847018,10847.018 +14972,2025-03-08T21:00:28.158163-08:00,1659.0,10.833048,10833.048 +14973,2025-03-08T21:00:38.997390-08:00,1663.0,10.839227,10839.227 +14974,2025-03-08T21:00:49.839787-08:00,1647.0,10.842397,10842.397 +14975,2025-03-08T21:01:00.681428-08:00,1702.0,10.841641,10841.641 +14976,2025-03-08T21:01:11.518112-08:00,1669.0,10.836684,10836.684 +14977,2025-03-08T21:01:22.361116-08:00,1665.0,10.843004,10843.004 +14978,2025-03-08T21:01:33.200107-08:00,1648.0,10.838991,10838.991 +14979,2025-03-08T21:01:44.047420-08:00,1654.0,10.847313,10847.313 +14980,2025-03-08T21:01:54.881859-08:00,1707.0,10.834439,10834.439 +14981,2025-03-08T21:02:05.729072-08:00,1670.0,10.847213,10847.213 +14982,2025-03-08T21:02:16.573339-08:00,1703.0,10.844267,10844.267 +14983,2025-03-08T21:02:27.420667-08:00,1648.0,10.847328,10847.328 +14984,2025-03-08T21:02:38.251248-08:00,1663.0,10.830581,10830.581 +14985,2025-03-08T21:02:49.101331-08:00,1682.0,10.850083,10850.083 +14986,2025-03-08T21:02:59.938266-08:00,1676.0,10.836935,10836.935 +14987,2025-03-08T21:03:10.780551-08:00,1615.0,10.842285,10842.285 +14988,2025-03-08T21:03:21.618451-08:00,1686.0,10.8379,10837.9 +14989,2025-03-08T21:03:32.468221-08:00,1679.0,10.84977,10849.77 +14990,2025-03-08T21:03:43.310122-08:00,1701.0,10.841901,10841.901 +14991,2025-03-08T21:03:54.149523-08:00,1700.0,10.839401,10839.401 +14992,2025-03-08T21:04:04.991162-08:00,1703.0,10.841639,10841.639 +14993,2025-03-08T21:04:15.829122-08:00,1616.0,10.83796,10837.96 +14994,2025-03-08T21:04:26.667169-08:00,1697.0,10.838047,10838.047 +14995,2025-03-08T21:04:37.510343-08:00,1707.0,10.843174,10843.174 +14996,2025-03-08T21:04:48.352175-08:00,1667.0,10.841832,10841.832 +14997,2025-03-08T21:04:59.190122-08:00,1655.0,10.837947,10837.947 +14998,2025-03-08T21:05:10.033699-08:00,1630.0,10.843577,10843.577 +14999,2025-03-08T21:05:20.875729-08:00,1703.0,10.84203,10842.03 +15000,2025-03-08T21:05:31.724115-08:00,1625.0,10.848386,10848.386 +15001,2025-03-08T21:05:42.589165-08:00,1695.0,10.86505,10865.05 +15002,2025-03-08T21:05:53.432175-08:00,1664.0,10.84301,10843.01 +15003,2025-03-08T21:06:04.271679-08:00,1675.0,10.839504,10839.504 +15004,2025-03-08T21:06:15.120218-08:00,1702.0,10.848539,10848.539 +15005,2025-03-08T21:06:25.956055-08:00,1680.0,10.835837,10835.837 +15006,2025-03-08T21:06:36.805253-08:00,1694.0,10.849198,10849.198 +15007,2025-03-08T21:06:47.646820-08:00,1694.0,10.841567,10841.567 +15008,2025-03-08T21:06:58.493414-08:00,1664.0,10.846594,10846.594 +15009,2025-03-08T21:07:09.340916-08:00,1703.0,10.847502,10847.502 +15010,2025-03-08T21:07:20.186918-08:00,1621.0,10.846002,10846.002 +15011,2025-03-08T21:07:31.027957-08:00,1667.0,10.841039,10841.039 +15012,2025-03-08T21:07:41.872171-08:00,1686.0,10.844214,10844.214 +15013,2025-03-08T21:07:52.718236-08:00,1621.0,10.846065,10846.065 +15014,2025-03-08T21:08:03.567345-08:00,1702.0,10.849109,10849.109 +15015,2025-03-08T21:08:14.416196-08:00,1708.0,10.848851,10848.851 +15016,2025-03-08T21:08:25.260916-08:00,1680.0,10.84472,10844.72 +15017,2025-03-08T21:08:36.096337-08:00,1705.0,10.835421,10835.421 +15018,2025-03-08T21:08:46.941374-08:00,1629.0,10.845037,10845.037 +15019,2025-03-08T21:08:57.782560-08:00,1666.0,10.841186,10841.186 +15020,2025-03-08T21:09:08.626400-08:00,1617.0,10.84384,10843.84 +15021,2025-03-08T21:09:19.469049-08:00,1647.0,10.842649,10842.649 +15022,2025-03-08T21:09:30.317175-08:00,1627.0,10.848126,10848.126 +15023,2025-03-08T21:09:41.147957-08:00,1707.0,10.830782,10830.782 +15024,2025-03-08T21:09:51.991951-08:00,1649.0,10.843994,10843.994 +15025,2025-03-08T21:10:02.830923-08:00,1701.0,10.838972,10838.972 +15026,2025-03-08T21:10:13.660914-08:00,1698.0,10.829991,10829.991 +15027,2025-03-08T21:10:24.502225-08:00,1707.0,10.841311,10841.311 +15028,2025-03-08T21:10:35.350114-08:00,1631.0,10.847889,10847.889 +15029,2025-03-08T21:10:46.184521-08:00,1701.0,10.834407,10834.407 +15030,2025-03-08T21:10:57.023073-08:00,1620.0,10.838552,10838.552 +15031,2025-03-08T21:11:07.861923-08:00,1661.0,10.83885,10838.85 +15032,2025-03-08T21:11:16.753957-08:00,1680.0,8.892034,8892.034 +15033,2025-03-08T21:11:18.697792-08:00,1703.0,1.943835,1943.835 +15034,2025-03-08T21:11:29.536914-08:00,1702.0,10.839122,10839.122 +15035,2025-03-08T21:11:40.376164-08:00,1667.0,10.83925,10839.25 +15036,2025-03-08T21:11:51.220922-08:00,1701.0,10.844758,10844.758 +15037,2025-03-08T21:12:02.066116-08:00,1702.0,10.845194,10845.194 +15038,2025-03-08T21:12:12.896969-08:00,1689.0,10.830853,10830.853 +15039,2025-03-08T21:12:23.740165-08:00,1690.0,10.843196,10843.196 +15040,2025-03-08T21:12:34.589116-08:00,1707.0,10.848951,10848.951 +15041,2025-03-08T21:12:45.430914-08:00,1699.0,10.841798,10841.798 +15042,2025-03-08T21:12:56.268915-08:00,1662.0,10.838001,10838.001 +15043,2025-03-08T21:13:07.118276-08:00,1609.0,10.849361,10849.361 +15044,2025-03-08T21:13:17.949921-08:00,1647.0,10.831645,10831.645 +15045,2025-03-08T21:13:28.797220-08:00,1661.0,10.847299,10847.299 +15046,2025-03-08T21:13:39.640959-08:00,1693.0,10.843739,10843.739 +15047,2025-03-08T21:13:50.483021-08:00,1631.0,10.842062,10842.062 +15048,2025-03-08T21:14:01.324165-08:00,1705.0,10.841144,10841.144 +15049,2025-03-08T21:14:12.158522-08:00,1686.0,10.834357,10834.357 +15050,2025-03-08T21:14:23.012606-08:00,1707.0,10.854084,10854.084 +15051,2025-03-08T21:14:33.850897-08:00,1703.0,10.838291,10838.291 +15052,2025-03-08T21:14:44.688134-08:00,1710.0,10.837237,10837.237 +15053,2025-03-08T21:14:55.519269-08:00,1645.0,10.831135,10831.135 +15054,2025-03-08T21:15:06.359534-08:00,1683.0,10.840265,10840.265 +15055,2025-03-08T21:15:17.203394-08:00,1705.0,10.84386,10843.86 +15056,2025-03-08T21:15:28.038241-08:00,1625.0,10.834847,10834.847 +15057,2025-03-08T21:15:38.879891-08:00,1703.0,10.84165,10841.65 +15058,2025-03-08T21:15:49.731919-08:00,1696.0,10.852028,10852.028 +15059,2025-03-08T21:16:00.572919-08:00,1669.0,10.841,10841.0 +15060,2025-03-08T21:16:11.410218-08:00,1674.0,10.837299,10837.299 +15061,2025-03-08T21:16:22.253029-08:00,1643.0,10.842811,10842.811 +15062,2025-03-08T21:16:33.094370-08:00,1688.0,10.841341,10841.341 +15063,2025-03-08T21:16:43.928255-08:00,1623.0,10.833885,10833.885 +15064,2025-03-08T21:16:54.778250-08:00,1634.0,10.849995,10849.995 +15065,2025-03-08T21:17:05.612916-08:00,1624.0,10.834666,10834.666 +15066,2025-03-08T21:17:16.457918-08:00,1705.0,10.845002,10845.002 +15067,2025-03-08T21:17:27.301919-08:00,1638.0,10.844001,10844.001 +15068,2025-03-08T21:17:38.139108-08:00,1611.0,10.837189,10837.189 +15069,2025-03-08T21:17:48.985224-08:00,1664.0,10.846116,10846.116 +15070,2025-03-08T21:17:59.830909-08:00,1665.0,10.845685,10845.685 +15071,2025-03-08T21:18:10.668216-08:00,1670.0,10.837307,10837.307 +15072,2025-03-08T21:18:21.511226-08:00,1710.0,10.84301,10843.01 +15073,2025-03-08T21:18:32.345912-08:00,1693.0,10.834686,10834.686 +15074,2025-03-08T21:18:43.187241-08:00,1699.0,10.841329,10841.329 +15075,2025-03-08T21:18:54.029020-08:00,1707.0,10.841779,10841.779 +15076,2025-03-08T21:19:04.861947-08:00,1671.0,10.832927,10832.927 +15077,2025-03-08T21:19:15.697939-08:00,1648.0,10.835992,10835.992 +15078,2025-03-08T21:19:26.540925-08:00,1698.0,10.842986,10842.986 +15079,2025-03-08T21:19:37.382665-08:00,1647.0,10.84174,10841.74 +15080,2025-03-08T21:19:48.210166-08:00,1697.0,10.827501,10827.501 +15081,2025-03-08T21:19:59.048536-08:00,1650.0,10.83837,10838.37 +15082,2025-03-08T21:20:09.895257-08:00,1707.0,10.846721,10846.721 +15083,2025-03-08T21:20:20.739172-08:00,1707.0,10.843915,10843.915 +15084,2025-03-08T21:20:31.581265-08:00,1632.0,10.842093,10842.093 +15085,2025-03-08T21:20:42.419034-08:00,1655.0,10.837769,10837.769 +15086,2025-03-08T21:20:53.267190-08:00,1671.0,10.848156,10848.156 +15087,2025-03-08T21:21:04.108887-08:00,1617.0,10.841697,10841.697 +15088,2025-03-08T21:21:14.943910-08:00,1655.0,10.835023,10835.023 +15089,2025-03-08T21:21:25.797185-08:00,1696.0,10.853275,10853.275 +15090,2025-03-08T21:21:36.641103-08:00,1705.0,10.843918,10843.918 +15091,2025-03-08T21:21:47.484706-08:00,1709.0,10.843603,10843.603 +15092,2025-03-08T21:21:58.321259-08:00,1711.0,10.836553,10836.553 +15093,2025-03-08T21:22:09.163365-08:00,1679.0,10.842106,10842.106 +15094,2025-03-08T21:22:20.005385-08:00,1700.0,10.84202,10842.02 +15095,2025-03-08T21:22:30.856198-08:00,1650.0,10.850813,10850.813 +15096,2025-03-08T21:22:41.688370-08:00,1637.0,10.832172,10832.172 +15097,2025-03-08T21:22:52.534960-08:00,1662.0,10.84659,10846.59 +15098,2025-03-08T21:23:03.386145-08:00,1711.0,10.851185,10851.185 +15099,2025-03-08T21:23:14.232923-08:00,1681.0,10.846778,10846.778 +15100,2025-03-08T21:23:25.076972-08:00,1677.0,10.844049,10844.049 +15101,2025-03-08T21:23:35.919086-08:00,1663.0,10.842114,10842.114 +15102,2025-03-08T21:23:46.771532-08:00,1662.0,10.852446,10852.446 +15103,2025-03-08T21:23:57.610984-08:00,1708.0,10.839452,10839.452 +15104,2025-03-08T21:24:08.454259-08:00,1628.0,10.843275,10843.275 +15105,2025-03-08T21:24:19.299155-08:00,1655.0,10.844896,10844.896 +15106,2025-03-08T21:24:30.141914-08:00,1708.0,10.842759,10842.759 +15107,2025-03-08T21:24:40.988916-08:00,1623.0,10.847002,10847.002 +15108,2025-03-08T21:24:51.832907-08:00,1667.0,10.843991,10843.991 +15109,2025-03-08T21:25:02.684051-08:00,1680.0,10.851144,10851.144 +15110,2025-03-08T21:25:13.527645-08:00,1670.0,10.843594,10843.594 +15111,2025-03-08T21:25:24.376390-08:00,1655.0,10.848745,10848.745 +15112,2025-03-08T21:25:35.218967-08:00,1708.0,10.842577,10842.577 +15113,2025-03-08T21:25:46.071991-08:00,1662.0,10.853024,10853.024 +15114,2025-03-08T21:25:56.915044-08:00,1623.0,10.843053,10843.053 +15115,2025-03-08T21:26:07.758261-08:00,1683.0,10.843217,10843.217 +15116,2025-03-08T21:26:18.606249-08:00,1619.0,10.847988,10847.988 +15117,2025-03-08T21:26:29.444036-08:00,1659.0,10.837787,10837.787 +15118,2025-03-08T21:26:40.298777-08:00,1705.0,10.854741,10854.741 +15119,2025-03-08T21:26:51.144915-08:00,1648.0,10.846138,10846.138 +15120,2025-03-08T21:27:01.985899-08:00,1693.0,10.840984,10840.984 +15121,2025-03-08T21:27:12.834179-08:00,1686.0,10.84828,10848.28 +15122,2025-03-08T21:27:23.671318-08:00,1664.0,10.837139,10837.139 +15123,2025-03-08T21:27:34.525595-08:00,1623.0,10.854277,10854.277 +15124,2025-03-08T21:27:45.357162-08:00,1677.0,10.831567,10831.567 +15125,2025-03-08T21:27:56.204263-08:00,1710.0,10.847101,10847.101 +15126,2025-03-08T21:28:07.049489-08:00,1647.0,10.845226,10845.226 +15127,2025-03-08T21:28:17.890241-08:00,1666.0,10.840752,10840.752 +15128,2025-03-08T21:28:28.734002-08:00,1694.0,10.843761,10843.761 +15129,2025-03-08T21:28:39.572535-08:00,1653.0,10.838533,10838.533 +15130,2025-03-08T21:28:50.411925-08:00,1622.0,10.83939,10839.39 +15131,2025-03-08T21:29:01.257246-08:00,1694.0,10.845321,10845.321 +15132,2025-03-08T21:29:12.099937-08:00,1708.0,10.842691,10842.691 +15133,2025-03-08T21:29:22.934397-08:00,1697.0,10.83446,10834.46 +15134,2025-03-08T21:29:33.766303-08:00,1682.0,10.831906,10831.906 +15135,2025-03-08T21:29:44.608916-08:00,1696.0,10.842613,10842.613 +15136,2025-03-08T21:29:55.455924-08:00,1699.0,10.847008,10847.008 +15137,2025-03-08T21:30:06.295286-08:00,1664.0,10.839362,10839.362 +15138,2025-03-08T21:30:17.143970-08:00,1707.0,10.848684,10848.684 +15139,2025-03-08T21:30:27.980952-08:00,1654.0,10.836982,10836.982 +15140,2025-03-08T21:30:38.827916-08:00,1667.0,10.846964,10846.964 +15141,2025-03-08T21:30:49.680514-08:00,1708.0,10.852598,10852.598 +15142,2025-03-08T21:31:00.519317-08:00,1707.0,10.838803,10838.803 +15143,2025-03-08T21:31:11.353266-08:00,1701.0,10.833949,10833.949 +15144,2025-03-08T21:31:22.202110-08:00,1699.0,10.848844,10848.844 +15145,2025-03-08T21:31:33.039965-08:00,1640.0,10.837855,10837.855 +15146,2025-03-08T21:31:43.877912-08:00,1559.0,10.837947,10837.947 +15147,2025-03-08T21:31:54.715222-08:00,1709.0,10.83731,10837.31 +15148,2025-03-08T21:32:05.556201-08:00,1711.0,10.840979,10840.979 +15149,2025-03-08T21:32:16.402080-08:00,1690.0,10.845879,10845.879 +15150,2025-03-08T21:32:27.237183-08:00,1669.0,10.835103,10835.103 +15151,2025-03-08T21:32:38.075918-08:00,1702.0,10.838735,10838.735 +15152,2025-03-08T21:32:48.921897-08:00,1611.0,10.845979,10845.979 +15153,2025-03-08T21:32:59.772144-08:00,1667.0,10.850247,10850.247 +15154,2025-03-08T21:33:10.611922-08:00,1709.0,10.839778,10839.778 +15155,2025-03-08T21:33:21.454920-08:00,1711.0,10.842998,10842.998 +15156,2025-03-08T21:33:32.297037-08:00,1663.0,10.842117,10842.117 +15157,2025-03-08T21:33:43.144195-08:00,1695.0,10.847158,10847.158 +15158,2025-03-08T21:33:53.988320-08:00,1643.0,10.844125,10844.125 +15159,2025-03-08T21:34:04.821401-08:00,1629.0,10.833081,10833.081 +15160,2025-03-08T21:34:15.665162-08:00,1663.0,10.843761,10843.761 +15161,2025-03-08T21:34:26.505907-08:00,1677.0,10.840745,10840.745 +15162,2025-03-08T21:34:37.350891-08:00,1631.0,10.844984,10844.984 +15163,2025-03-08T21:34:48.198920-08:00,1707.0,10.848029,10848.029 +15164,2025-03-08T21:34:59.034962-08:00,1711.0,10.836042,10836.042 +15165,2025-03-08T21:35:09.877923-08:00,1665.0,10.842961,10842.961 +15166,2025-03-08T21:35:20.720547-08:00,1677.0,10.842624,10842.624 +15167,2025-03-08T21:35:31.564910-08:00,1622.0,10.844363,10844.363 +15168,2025-03-08T21:35:42.408799-08:00,1671.0,10.843889,10843.889 +15169,2025-03-08T21:35:53.249991-08:00,1651.0,10.841192,10841.192 +15170,2025-03-08T21:36:04.098041-08:00,1638.0,10.84805,10848.05 +15171,2025-03-08T21:36:14.938922-08:00,1682.0,10.840881,10840.881 +15172,2025-03-08T21:36:25.779197-08:00,1706.0,10.840275,10840.275 +15173,2025-03-08T21:36:36.629020-08:00,1645.0,10.849823,10849.823 +15174,2025-03-08T21:36:47.469911-08:00,1682.0,10.840891,10840.891 +15175,2025-03-08T21:36:58.315919-08:00,1629.0,10.846008,10846.008 +15176,2025-03-08T21:37:09.158228-08:00,1678.0,10.842309,10842.309 +15177,2025-03-08T21:37:19.997191-08:00,1709.0,10.838963,10838.963 +15178,2025-03-08T21:37:30.845356-08:00,1617.0,10.848165,10848.165 +15179,2025-03-08T21:37:41.686156-08:00,1655.0,10.8408,10840.8 +15180,2025-03-08T21:37:52.519929-08:00,1607.0,10.833773,10833.773 +15181,2025-03-08T21:38:03.363852-08:00,1699.0,10.843923,10843.923 +15182,2025-03-08T21:38:14.197078-08:00,1666.0,10.833226,10833.226 +15183,2025-03-08T21:38:25.038505-08:00,1685.0,10.841427,10841.427 +15184,2025-03-08T21:38:35.885030-08:00,1699.0,10.846525,10846.525 +15185,2025-03-08T21:38:46.717755-08:00,1712.0,10.832725,10832.725 +15186,2025-03-08T21:38:57.559916-08:00,1712.0,10.842161,10842.161 +15187,2025-03-08T21:39:08.403920-08:00,1651.0,10.844004,10844.004 +15188,2025-03-08T21:39:19.248311-08:00,1668.0,10.844391,10844.391 +15189,2025-03-08T21:39:30.090335-08:00,1699.0,10.842024,10842.024 +15190,2025-03-08T21:39:40.923168-08:00,1695.0,10.832833,10832.833 +15191,2025-03-08T21:39:51.777286-08:00,1695.0,10.854118,10854.118 +15192,2025-03-08T21:40:02.608927-08:00,1677.0,10.831641,10831.641 +15193,2025-03-08T21:40:13.450971-08:00,1680.0,10.842044,10842.044 +15194,2025-03-08T21:40:24.294197-08:00,1709.0,10.843226,10843.226 +15195,2025-03-08T21:40:35.136914-08:00,1662.0,10.842717,10842.717 +15196,2025-03-08T21:40:45.980674-08:00,1687.0,10.84376,10843.76 +15197,2025-03-08T21:40:56.828813-08:00,1665.0,10.848139,10848.139 +15198,2025-03-08T21:41:07.660131-08:00,1665.0,10.831318,10831.318 +15199,2025-03-08T21:41:18.502496-08:00,1694.0,10.842365,10842.365 +15200,2025-03-08T21:41:29.347241-08:00,1663.0,10.844745,10844.745 +15201,2025-03-08T21:41:40.185919-08:00,1650.0,10.838678,10838.678 +15202,2025-03-08T21:41:51.032914-08:00,1677.0,10.846995,10846.995 +15203,2025-03-08T21:42:01.882897-08:00,1711.0,10.849983,10849.983 +15204,2025-03-08T21:42:12.725987-08:00,1647.0,10.84309,10843.09 +15205,2025-03-08T21:42:23.578920-08:00,1677.0,10.852933,10852.933 +15206,2025-03-08T21:42:34.419457-08:00,1709.0,10.840537,10840.537 +15207,2025-03-08T21:42:45.264954-08:00,1659.0,10.845497,10845.497 +15208,2025-03-08T21:42:56.106345-08:00,1670.0,10.841391,10841.391 +15209,2025-03-08T21:43:06.953918-08:00,1707.0,10.847573,10847.573 +15210,2025-03-08T21:43:17.810918-08:00,1661.0,10.857,10857.0 +15211,2025-03-08T21:43:28.650730-08:00,1630.0,10.839812,10839.812 +15212,2025-03-08T21:43:39.504105-08:00,1663.0,10.853375,10853.375 +15213,2025-03-08T21:43:50.353171-08:00,1687.0,10.849066,10849.066 +15214,2025-03-08T21:44:01.201170-08:00,1665.0,10.847999,10847.999 +15215,2025-03-08T21:44:12.045172-08:00,1701.0,10.844002,10844.002 +15216,2025-03-08T21:44:22.888904-08:00,1685.0,10.843732,10843.732 +15217,2025-03-08T21:44:33.731924-08:00,1662.0,10.84302,10843.02 +15218,2025-03-08T21:44:44.576532-08:00,1654.0,10.844608,10844.608 +15219,2025-03-08T21:44:55.417956-08:00,1682.0,10.841424,10841.424 +15220,2025-03-08T21:45:06.261493-08:00,1619.0,10.843537,10843.537 +15221,2025-03-08T21:45:17.114916-08:00,1662.0,10.853423,10853.423 +15222,2025-03-08T21:45:27.962145-08:00,1686.0,10.847229,10847.229 +15223,2025-03-08T21:45:38.803161-08:00,1616.0,10.841016,10841.016 +15224,2025-03-08T21:45:49.644452-08:00,1685.0,10.841291,10841.291 +15225,2025-03-08T21:46:00.491917-08:00,1619.0,10.847465,10847.465 +15226,2025-03-08T21:46:11.331894-08:00,1665.0,10.839977,10839.977 +15227,2025-03-08T21:46:22.174918-08:00,1658.0,10.843024,10843.024 +15228,2025-03-08T21:46:33.022045-08:00,1617.0,10.847127,10847.127 +15229,2025-03-08T21:46:43.865040-08:00,1680.0,10.842995,10842.995 +15230,2025-03-08T21:46:54.706389-08:00,1711.0,10.841349,10841.349 +15231,2025-03-08T21:47:05.547425-08:00,1667.0,10.841036,10841.036 +15232,2025-03-08T21:47:16.391041-08:00,1699.0,10.843616,10843.616 +15233,2025-03-08T21:47:27.238167-08:00,1701.0,10.847126,10847.126 +15234,2025-03-08T21:47:38.086267-08:00,1701.0,10.8481,10848.1 +15235,2025-03-08T21:47:48.929155-08:00,1709.0,10.842888,10842.888 +15236,2025-03-08T21:47:59.770917-08:00,1702.0,10.841762,10841.762 +15237,2025-03-08T21:48:10.626926-08:00,1626.0,10.856009,10856.009 +15238,2025-03-08T21:48:21.471063-08:00,1633.0,10.844137,10844.137 +15239,2025-03-08T21:48:32.312226-08:00,1707.0,10.841163,10841.163 +15240,2025-03-08T21:48:43.158419-08:00,1661.0,10.846193,10846.193 +15241,2025-03-08T21:48:54.000930-08:00,1690.0,10.842511,10842.511 +15242,2025-03-08T21:49:04.844920-08:00,1699.0,10.84399,10843.99 +15243,2025-03-08T21:49:15.687473-08:00,1648.0,10.842553,10842.553 +15244,2025-03-08T21:49:26.530149-08:00,1682.0,10.842676,10842.676 +15245,2025-03-08T21:49:37.371915-08:00,1634.0,10.841766,10841.766 +15246,2025-03-08T21:49:48.215145-08:00,1709.0,10.84323,10843.23 +15247,2025-03-08T21:49:59.058261-08:00,1680.0,10.843116,10843.116 +15248,2025-03-08T21:50:09.912332-08:00,1645.0,10.854071,10854.071 +15249,2025-03-08T21:50:20.745969-08:00,1695.0,10.833637,10833.637 +15250,2025-03-08T21:50:31.599321-08:00,1677.0,10.853352,10853.352 +15251,2025-03-08T21:50:42.442167-08:00,1611.0,10.842846,10842.846 +15252,2025-03-08T21:50:53.286861-08:00,1691.0,10.844694,10844.694 +15253,2025-03-08T21:51:04.129167-08:00,1650.0,10.842306,10842.306 +15254,2025-03-08T21:51:14.973160-08:00,1619.0,10.843993,10843.993 +15255,2025-03-08T21:51:25.802302-08:00,1689.0,10.829142,10829.142 +15256,2025-03-08T21:51:36.646922-08:00,1655.0,10.84462,10844.62 +15257,2025-03-08T21:51:47.497061-08:00,1615.0,10.850139,10850.139 +15258,2025-03-08T21:51:58.336013-08:00,1669.0,10.838952,10838.952 +15259,2025-03-08T21:52:09.183278-08:00,1705.0,10.847265,10847.265 +15260,2025-03-08T21:52:20.019915-08:00,1712.0,10.836637,10836.637 +15261,2025-03-08T21:52:30.862670-08:00,1643.0,10.842755,10842.755 +15262,2025-03-08T21:52:41.711201-08:00,1712.0,10.848531,10848.531 +15263,2025-03-08T21:52:52.552963-08:00,1701.0,10.841762,10841.762 +15264,2025-03-08T21:53:03.396179-08:00,1658.0,10.843216,10843.216 +15265,2025-03-08T21:53:14.234925-08:00,1702.0,10.838746,10838.746 +15266,2025-03-08T21:53:25.083842-08:00,1694.0,10.848917,10848.917 +15267,2025-03-08T21:53:35.920082-08:00,1615.0,10.83624,10836.24 +15268,2025-03-08T21:53:46.763160-08:00,1706.0,10.843078,10843.078 +15269,2025-03-08T21:53:57.595982-08:00,1709.0,10.832822,10832.822 +15270,2025-03-08T21:54:08.438100-08:00,1657.0,10.842118,10842.118 +15271,2025-03-08T21:54:19.271159-08:00,1621.0,10.833059,10833.059 +15272,2025-03-08T21:54:30.112913-08:00,1652.0,10.841754,10841.754 +15273,2025-03-08T21:54:40.946084-08:00,1653.0,10.833171,10833.171 +15274,2025-03-08T21:54:51.785950-08:00,1655.0,10.839866,10839.866 +15275,2025-03-08T21:55:02.618774-08:00,1707.0,10.832824,10832.824 +15276,2025-03-08T21:55:13.454136-08:00,1627.0,10.835362,10835.362 +15277,2025-03-08T21:55:24.294911-08:00,1635.0,10.840775,10840.775 +15278,2025-03-08T21:55:35.139259-08:00,1679.0,10.844348,10844.348 +15279,2025-03-08T21:55:45.969070-08:00,1663.0,10.829811,10829.811 +15280,2025-03-08T21:55:56.814064-08:00,1682.0,10.844994,10844.994 +15281,2025-03-08T21:56:07.656158-08:00,1712.0,10.842094,10842.094 +15282,2025-03-08T21:56:18.487356-08:00,1701.0,10.831198,10831.198 +15283,2025-03-08T21:56:29.329920-08:00,1671.0,10.842564,10842.564 +15284,2025-03-08T21:56:40.171905-08:00,1711.0,10.841985,10841.985 +15285,2025-03-08T21:56:51.005257-08:00,1701.0,10.833352,10833.352 +15286,2025-03-08T21:57:01.846943-08:00,1709.0,10.841686,10841.686 +15287,2025-03-08T21:57:12.680078-08:00,1611.0,10.833135,10833.135 +15288,2025-03-08T21:57:23.523334-08:00,1701.0,10.843256,10843.256 +15289,2025-03-08T21:57:34.354920-08:00,1712.0,10.831586,10831.586 +15290,2025-03-08T21:57:45.197105-08:00,1653.0,10.842185,10842.185 +15291,2025-03-08T21:57:56.019137-08:00,1712.0,10.822032,10822.032 +15292,2025-03-08T21:58:06.855054-08:00,1625.0,10.835917,10835.917 +15293,2025-03-08T21:58:17.693531-08:00,1698.0,10.838477,10838.477 +15294,2025-03-08T21:58:28.525918-08:00,1675.0,10.832387,10832.387 +15295,2025-03-08T21:58:39.354922-08:00,1703.0,10.829004,10829.004 +15296,2025-03-08T21:58:50.188290-08:00,1708.0,10.833368,10833.368 +15297,2025-03-08T21:59:01.019973-08:00,1641.0,10.831683,10831.683 +15298,2025-03-08T21:59:11.863040-08:00,1701.0,10.843067,10843.067 +15299,2025-03-08T21:59:22.689915-08:00,1631.0,10.826875,10826.875 +15300,2025-03-08T21:59:33.526148-08:00,1685.0,10.836233,10836.233 +15301,2025-03-08T21:59:44.360366-08:00,1620.0,10.834218,10834.218 +15302,2025-03-08T21:59:55.189921-08:00,1710.0,10.829555,10829.555 +15303,2025-03-08T22:00:06.022259-08:00,1669.0,10.832338,10832.338 +15304,2025-03-08T22:00:16.863916-08:00,1667.0,10.841657,10841.657 +15305,2025-03-08T22:00:27.695055-08:00,1712.0,10.831139,10831.139 +15306,2025-03-08T22:00:38.539423-08:00,1681.0,10.844368,10844.368 +15307,2025-03-08T22:00:49.370910-08:00,1712.0,10.831487,10831.487 +15308,2025-03-08T22:01:00.201999-08:00,1618.0,10.831089,10831.089 +15309,2025-03-08T22:01:11.045370-08:00,1678.0,10.843371,10843.371 +15310,2025-03-08T22:01:21.872621-08:00,1712.0,10.827251,10827.251 +15311,2025-03-08T22:01:32.715021-08:00,1646.0,10.8424,10842.4 +15312,2025-03-08T22:01:43.541247-08:00,1698.0,10.826226,10826.226 +15313,2025-03-08T22:01:54.374208-08:00,1703.0,10.832961,10832.961 +15314,2025-03-08T22:02:05.216940-08:00,1695.0,10.842732,10842.732 +15315,2025-03-08T22:02:16.047160-08:00,1646.0,10.83022,10830.22 +15316,2025-03-08T22:02:26.882123-08:00,1661.0,10.834963,10834.963 +15317,2025-03-08T22:02:37.722041-08:00,1681.0,10.839918,10839.918 +15318,2025-03-08T22:02:48.555604-08:00,1664.0,10.833563,10833.563 +15319,2025-03-08T22:02:59.386479-08:00,1699.0,10.830875,10830.875 +15320,2025-03-08T22:03:10.216966-08:00,1649.0,10.830487,10830.487 +15321,2025-03-08T22:03:21.048247-08:00,1647.0,10.831281,10831.281 +15322,2025-03-08T22:03:31.881255-08:00,1655.0,10.833008,10833.008 +15323,2025-03-08T22:03:42.713327-08:00,1638.0,10.832072,10832.072 +15324,2025-03-08T22:03:53.556442-08:00,1710.0,10.843115,10843.115 +15325,2025-03-08T22:04:04.387910-08:00,1697.0,10.831468,10831.468 +15326,2025-03-08T22:04:15.230920-08:00,1710.0,10.84301,10843.01 +15327,2025-03-08T22:04:26.063160-08:00,1669.0,10.83224,10832.24 +15328,2025-03-08T22:04:36.906015-08:00,1663.0,10.842855,10842.855 +15329,2025-03-08T22:04:47.737280-08:00,1707.0,10.831265,10831.265 +15330,2025-03-08T22:04:58.568177-08:00,1710.0,10.830897,10830.897 +15331,2025-03-08T22:05:09.401062-08:00,1669.0,10.832885,10832.885 +15332,2025-03-08T22:05:20.231960-08:00,1711.0,10.830898,10830.898 +15333,2025-03-08T22:05:31.074920-08:00,1651.0,10.84296,10842.96 +15334,2025-03-08T22:05:41.864912-08:00,1661.0,10.789992,10789.992 +15335,2025-03-08T22:05:52.696070-08:00,1693.0,10.831158,10831.158 +15336,2025-03-08T22:06:03.531057-08:00,1697.0,10.834987,10834.987 +15337,2025-03-08T22:06:14.373452-08:00,1691.0,10.842395,10842.395 +15338,2025-03-08T22:06:25.204075-08:00,1657.0,10.830623,10830.623 +15339,2025-03-08T22:06:36.036552-08:00,1706.0,10.832477,10832.477 +15340,2025-03-08T22:06:46.867130-08:00,1702.0,10.830578,10830.578 +15341,2025-03-08T22:06:57.700075-08:00,1693.0,10.832945,10832.945 +15342,2025-03-08T22:07:08.536108-08:00,1664.0,10.836033,10836.033 +15343,2025-03-08T22:07:19.374073-08:00,1712.0,10.837965,10837.965 +15344,2025-03-08T22:07:30.205398-08:00,1648.0,10.831325,10831.325 +15345,2025-03-08T22:07:41.032321-08:00,1657.0,10.826923,10826.923 +15346,2025-03-08T22:07:51.870081-08:00,1711.0,10.83776,10837.76 +15347,2025-03-08T22:08:02.701251-08:00,1687.0,10.83117,10831.17 +15348,2025-03-08T22:08:13.544229-08:00,1711.0,10.842978,10842.978 +15349,2025-03-08T22:08:24.381851-08:00,1712.0,10.837622,10837.622 +15350,2025-03-08T22:08:35.212347-08:00,1635.0,10.830496,10830.496 +15351,2025-03-08T22:08:46.049684-08:00,1703.0,10.837337,10837.337 +15352,2025-03-08T22:08:56.884304-08:00,1647.0,10.83462,10834.62 +15353,2025-03-08T22:09:07.720069-08:00,1695.0,10.835765,10835.765 +15354,2025-03-08T22:09:18.550465-08:00,1710.0,10.830396,10830.396 +15355,2025-03-08T22:09:29.388476-08:00,1691.0,10.838011,10838.011 +15356,2025-03-08T22:09:40.209686-08:00,1702.0,10.82121,10821.21 +15357,2025-03-08T22:09:51.038078-08:00,1667.0,10.828392,10828.392 +15358,2025-03-08T22:10:01.879054-08:00,1621.0,10.840976,10840.976 +15359,2025-03-08T22:10:12.705046-08:00,1712.0,10.825992,10825.992 +15360,2025-03-08T22:10:23.541420-08:00,1665.0,10.836374,10836.374 +15361,2025-03-08T22:10:34.363593-08:00,1630.0,10.822173,10822.173 +15362,2025-03-08T22:10:45.200079-08:00,1667.0,10.836486,10836.486 +15363,2025-03-08T22:10:56.032408-08:00,1616.0,10.832329,10832.329 +15364,2025-03-08T22:11:06.874876-08:00,1675.0,10.842468,10842.468 +15365,2025-03-08T22:11:17.708294-08:00,1669.0,10.833418,10833.418 +15366,2025-03-08T22:11:28.529961-08:00,1696.0,10.821667,10821.667 +15367,2025-03-08T22:11:39.371150-08:00,1712.0,10.841189,10841.189 +15368,2025-03-08T22:11:50.208312-08:00,1685.0,10.837162,10837.162 +15369,2025-03-08T22:12:01.033266-08:00,1677.0,10.824954,10824.954 +15370,2025-03-08T22:12:11.866334-08:00,1680.0,10.833068,10833.068 +15371,2025-03-08T22:12:22.696440-08:00,1687.0,10.830106,10830.106 +15372,2025-03-08T22:12:33.539197-08:00,1705.0,10.842757,10842.757 +15373,2025-03-08T22:12:44.375902-08:00,1689.0,10.836705,10836.705 +15374,2025-03-08T22:12:55.201329-08:00,1661.0,10.825427,10825.427 +15375,2025-03-08T22:13:06.031121-08:00,1646.0,10.829792,10829.792 +15376,2025-03-08T22:13:16.863578-08:00,1712.0,10.832457,10832.457 +15377,2025-03-08T22:13:27.698086-08:00,1710.0,10.834508,10834.508 +15378,2025-03-08T22:13:38.529763-08:00,1678.0,10.831677,10831.677 +15379,2025-03-08T22:13:49.367076-08:00,1613.0,10.837313,10837.313 +15380,2025-03-08T22:14:00.199089-08:00,1621.0,10.832013,10832.013 +15381,2025-03-08T22:14:11.028108-08:00,1712.0,10.829019,10829.019 +15382,2025-03-08T22:14:21.863252-08:00,1699.0,10.835144,10835.144 +15383,2025-03-08T22:14:32.692076-08:00,1681.0,10.828824,10828.824 +15384,2025-03-08T22:14:43.530117-08:00,1651.0,10.838041,10838.041 +15385,2025-03-08T22:14:54.364287-08:00,1703.0,10.83417,10834.17 +15386,2025-03-08T22:15:05.194642-08:00,1710.0,10.830355,10830.355 +15387,2025-03-08T22:15:16.020326-08:00,1681.0,10.825684,10825.684 +15388,2025-03-08T22:15:26.858075-08:00,1648.0,10.837749,10837.749 +15389,2025-03-08T22:15:37.685151-08:00,1665.0,10.827076,10827.076 +15390,2025-03-08T22:15:48.521501-08:00,1693.0,10.83635,10836.35 +15391,2025-03-08T22:15:59.353228-08:00,1696.0,10.831727,10831.727 +15392,2025-03-08T22:16:10.185074-08:00,1681.0,10.831846,10831.846 +15393,2025-03-08T22:16:21.019073-08:00,1662.0,10.833999,10833.999 +15394,2025-03-08T22:16:31.848682-08:00,1635.0,10.829609,10829.609 +15395,2025-03-08T22:16:42.687125-08:00,1711.0,10.838443,10838.443 +15396,2025-03-08T22:16:53.519561-08:00,1689.0,10.832436,10832.436 +15397,2025-03-08T22:17:04.350384-08:00,1648.0,10.830823,10830.823 +15398,2025-03-08T22:17:15.181079-08:00,1678.0,10.830695,10830.695 +15399,2025-03-08T22:17:26.019351-08:00,1712.0,10.838272,10838.272 +15400,2025-03-08T22:17:36.846129-08:00,1655.0,10.826778,10826.778 +15401,2025-03-08T22:17:47.682474-08:00,1702.0,10.836345,10836.345 +15402,2025-03-08T22:17:58.508068-08:00,1627.0,10.825594,10825.594 +15403,2025-03-08T22:18:09.342277-08:00,1703.0,10.834209,10834.209 +15404,2025-03-08T22:18:20.176505-08:00,1663.0,10.834228,10834.228 +15405,2025-03-08T22:18:30.998460-08:00,1655.0,10.821955,10821.955 +15406,2025-03-08T22:18:41.827694-08:00,1642.0,10.829234,10829.234 +15407,2025-03-08T22:18:52.669078-08:00,1707.0,10.841384,10841.384 +15408,2025-03-08T22:19:03.498676-08:00,1707.0,10.829598,10829.598 +15409,2025-03-08T22:19:14.340180-08:00,1709.0,10.841504,10841.504 +15410,2025-03-08T22:19:25.166506-08:00,1707.0,10.826326,10826.326 +15411,2025-03-08T22:19:35.993364-08:00,1678.0,10.826858,10826.858 +15412,2025-03-08T22:19:46.830077-08:00,1709.0,10.836713,10836.713 +15413,2025-03-08T22:19:57.652216-08:00,1680.0,10.822139,10822.139 +15414,2025-03-08T22:20:08.483420-08:00,1674.0,10.831204,10831.204 +15415,2025-03-08T22:20:19.321732-08:00,1712.0,10.838312,10838.312 +15416,2025-03-08T22:20:30.157291-08:00,1712.0,10.835559,10835.559 +15417,2025-03-08T22:20:40.990342-08:00,1634.0,10.833051,10833.051 +15418,2025-03-08T22:20:51.820081-08:00,1677.0,10.829739,10829.739 +15419,2025-03-08T22:21:02.654582-08:00,1711.0,10.834501,10834.501 +15420,2025-03-08T22:21:13.483200-08:00,1695.0,10.828618,10828.618 +15421,2025-03-08T22:21:24.317308-08:00,1664.0,10.834108,10834.108 +15422,2025-03-08T22:21:27.059686-08:00,1711.0,2.742378,2742.378 +15423,2025-03-08T22:21:35.148201-08:00,1635.0,8.088515,8088.515 +15424,2025-03-08T22:21:45.984215-08:00,1712.0,10.836014,10836.014 +15425,2025-03-08T22:21:56.811823-08:00,1712.0,10.827608,10827.608 +15426,2025-03-08T22:22:07.649078-08:00,1642.0,10.837255,10837.255 +15427,2025-03-08T22:22:18.487056-08:00,1695.0,10.837978,10837.978 +15428,2025-03-08T22:22:29.313065-08:00,1651.0,10.826009,10826.009 +15429,2025-03-08T22:22:40.150082-08:00,1712.0,10.837017,10837.017 +15430,2025-03-08T22:22:50.985600-08:00,1712.0,10.835518,10835.518 +15431,2025-03-08T22:23:01.822290-08:00,1695.0,10.83669,10836.69 +15432,2025-03-08T22:23:12.656265-08:00,1650.0,10.833975,10833.975 +15433,2025-03-08T22:23:23.489744-08:00,1706.0,10.833479,10833.479 +15434,2025-03-08T22:23:34.327069-08:00,1641.0,10.837325,10837.325 +15435,2025-03-08T22:23:45.152398-08:00,1706.0,10.825329,10825.329 +15436,2025-03-08T22:23:55.993207-08:00,1712.0,10.840809,10840.809 +15437,2025-03-08T22:24:06.826886-08:00,1696.0,10.833679,10833.679 +15438,2025-03-08T22:24:17.659130-08:00,1712.0,10.832244,10832.244 +15439,2025-03-08T22:24:28.495075-08:00,1680.0,10.835945,10835.945 +15440,2025-03-08T22:24:39.339408-08:00,1682.0,10.844333,10844.333 +15441,2025-03-08T22:24:50.171218-08:00,1691.0,10.83181,10831.81 +15442,2025-03-08T22:25:01.007196-08:00,1696.0,10.835978,10835.978 +15443,2025-03-08T22:25:11.841662-08:00,1661.0,10.834466,10834.466 +15444,2025-03-08T22:25:22.678408-08:00,1651.0,10.836746,10836.746 +15445,2025-03-08T22:25:33.511330-08:00,1682.0,10.832922,10832.922 +15446,2025-03-08T22:25:44.349547-08:00,1702.0,10.838217,10838.217 +15447,2025-03-08T22:25:55.173303-08:00,1695.0,10.823756,10823.756 +15448,2025-03-08T22:26:06.010345-08:00,1679.0,10.837042,10837.042 +15449,2025-03-08T22:26:16.842079-08:00,1693.0,10.831734,10831.734 +15450,2025-03-08T22:26:27.674997-08:00,1681.0,10.832918,10832.918 +15451,2025-03-08T22:26:38.508071-08:00,1633.0,10.833074,10833.074 +15452,2025-03-08T22:26:49.343078-08:00,1690.0,10.835007,10835.007 +15453,2025-03-08T22:27:00.189331-08:00,1697.0,10.846253,10846.253 +15454,2025-03-08T22:27:11.024114-08:00,1641.0,10.834783,10834.783 +15455,2025-03-08T22:27:21.855410-08:00,1665.0,10.831296,10831.296 +15456,2025-03-08T22:27:32.695513-08:00,1712.0,10.840103,10840.103 +15457,2025-03-08T22:27:43.532269-08:00,1663.0,10.836756,10836.756 +15458,2025-03-08T22:27:54.361079-08:00,1702.0,10.82881,10828.81 +15459,2025-03-08T22:28:05.198051-08:00,1647.0,10.836972,10836.972 +15460,2025-03-08T22:28:16.035170-08:00,1712.0,10.837119,10837.119 +15461,2025-03-08T22:28:26.865528-08:00,1663.0,10.830358,10830.358 +15462,2025-03-08T22:28:37.693083-08:00,1639.0,10.827555,10827.555 +15463,2025-03-08T22:28:48.534298-08:00,1655.0,10.841215,10841.215 +15464,2025-03-08T22:28:59.362126-08:00,1664.0,10.827828,10827.828 +15465,2025-03-08T22:29:10.195260-08:00,1686.0,10.833134,10833.134 +15466,2025-03-08T22:29:21.026648-08:00,1712.0,10.831388,10831.388 +15467,2025-03-08T22:29:31.857416-08:00,1712.0,10.830768,10830.768 +15468,2025-03-08T22:29:42.684800-08:00,1664.0,10.827384,10827.384 +15469,2025-03-08T22:29:53.516073-08:00,1708.0,10.831273,10831.273 +15470,2025-03-08T22:30:04.348708-08:00,1625.0,10.832635,10832.635 +15471,2025-03-08T22:30:15.170079-08:00,1706.0,10.821371,10821.371 +15472,2025-03-08T22:30:25.994368-08:00,1616.0,10.824289,10824.289 +15473,2025-03-08T22:30:36.830259-08:00,1712.0,10.835891,10835.891 +15474,2025-03-08T22:30:47.668365-08:00,1629.0,10.838106,10838.106 +15475,2025-03-08T22:30:58.506329-08:00,1614.0,10.837964,10837.964 +15476,2025-03-08T22:31:09.343071-08:00,1687.0,10.836742,10836.742 +15477,2025-03-08T22:31:20.185078-08:00,1711.0,10.842007,10842.007 +15478,2025-03-08T22:31:31.015336-08:00,1661.0,10.830258,10830.258 +15479,2025-03-08T22:31:41.856074-08:00,1695.0,10.840738,10840.738 +15480,2025-03-08T22:31:52.693077-08:00,1701.0,10.837003,10837.003 +15481,2025-03-08T22:32:03.524468-08:00,1701.0,10.831391,10831.391 +15482,2025-03-08T22:32:14.370079-08:00,1674.0,10.845611,10845.611 +15483,2025-03-08T22:32:25.210704-08:00,1711.0,10.840625,10840.625 +15484,2025-03-08T22:32:36.043181-08:00,1627.0,10.832477,10832.477 +15485,2025-03-08T22:32:46.869136-08:00,1709.0,10.825955,10825.955 +15486,2025-03-08T22:32:57.709342-08:00,1631.0,10.840206,10840.206 +15487,2025-03-08T22:33:08.544381-08:00,1712.0,10.835039,10835.039 +15488,2025-03-08T22:33:19.381075-08:00,1637.0,10.836694,10836.694 +15489,2025-03-08T22:33:30.219376-08:00,1686.0,10.838301,10838.301 +15490,2025-03-08T22:33:41.055313-08:00,1705.0,10.835937,10835.937 +15491,2025-03-08T22:33:51.900306-08:00,1703.0,10.844993,10844.993 +15492,2025-03-08T22:34:02.733379-08:00,1685.0,10.833073,10833.073 +15493,2025-03-08T22:34:13.561069-08:00,1680.0,10.82769,10827.69 +15494,2025-03-08T22:34:24.395325-08:00,1708.0,10.834256,10834.256 +15495,2025-03-08T22:34:35.230077-08:00,1621.0,10.834752,10834.752 +15496,2025-03-08T22:34:46.070255-08:00,1712.0,10.840178,10840.178 +15497,2025-03-08T22:34:56.912340-08:00,1705.0,10.842085,10842.085 +15498,2025-03-08T22:35:07.742077-08:00,1632.0,10.829737,10829.737 +15499,2025-03-08T22:35:18.585052-08:00,1693.0,10.842975,10842.975 +15500,2025-03-08T22:35:29.420422-08:00,1617.0,10.83537,10835.37 +15501,2025-03-08T22:35:40.263517-08:00,1668.0,10.843095,10843.095 +15502,2025-03-08T22:35:51.099074-08:00,1680.0,10.835557,10835.557 +15503,2025-03-08T22:36:01.926119-08:00,1693.0,10.827045,10827.045 +15504,2025-03-08T22:36:12.767331-08:00,1665.0,10.841212,10841.212 +15505,2025-03-08T22:36:23.611054-08:00,1709.0,10.843723,10843.723 +15506,2025-03-08T22:36:34.444418-08:00,1647.0,10.833364,10833.364 +15507,2025-03-08T22:36:45.282063-08:00,1712.0,10.837645,10837.645 +15508,2025-03-08T22:36:56.123076-08:00,1659.0,10.841013,10841.013 +15509,2025-03-08T22:37:06.961427-08:00,1622.0,10.838351,10838.351 +15510,2025-03-08T22:37:17.805074-08:00,1668.0,10.843647,10843.647 +15511,2025-03-08T22:37:28.630074-08:00,1706.0,10.825,10825.0 +15512,2025-03-08T22:37:39.467348-08:00,1710.0,10.837274,10837.274 +15513,2025-03-08T22:37:50.311299-08:00,1699.0,10.843951,10843.951 +15514,2025-03-08T22:38:01.149314-08:00,1711.0,10.838015,10838.015 +15515,2025-03-08T22:38:11.979337-08:00,1712.0,10.830023,10830.023 +15516,2025-03-08T22:38:22.815127-08:00,1651.0,10.83579,10835.79 +15517,2025-03-08T22:38:33.647062-08:00,1697.0,10.831935,10831.935 +15518,2025-03-08T22:38:44.492436-08:00,1643.0,10.845374,10845.374 +15519,2025-03-08T22:38:55.324068-08:00,1681.0,10.831632,10831.632 +15520,2025-03-08T22:39:06.163316-08:00,1682.0,10.839248,10839.248 +15521,2025-03-08T22:39:17.000504-08:00,1695.0,10.837188,10837.188 +15522,2025-03-08T22:39:27.839077-08:00,1699.0,10.838573,10838.573 +15523,2025-03-08T22:39:38.685131-08:00,1703.0,10.846054,10846.054 +15524,2025-03-08T22:39:49.517328-08:00,1631.0,10.832197,10832.197 +15525,2025-03-08T22:40:00.359543-08:00,1655.0,10.842215,10842.215 +15526,2025-03-08T22:40:11.202074-08:00,1710.0,10.842531,10842.531 +15527,2025-03-08T22:40:22.036405-08:00,1637.0,10.834331,10834.331 +15528,2025-03-08T22:40:32.866048-08:00,1683.0,10.829643,10829.643 +15529,2025-03-08T22:40:43.704055-08:00,1627.0,10.838007,10838.007 +15530,2025-03-08T22:40:54.537158-08:00,1711.0,10.833103,10833.103 +15531,2025-03-08T22:41:05.369319-08:00,1665.0,10.832161,10832.161 +15532,2025-03-08T22:41:16.210209-08:00,1708.0,10.84089,10840.89 +15533,2025-03-08T22:41:27.046895-08:00,1682.0,10.836686,10836.686 +15534,2025-03-08T22:41:37.879071-08:00,1702.0,10.832176,10832.176 +15535,2025-03-08T22:41:48.722063-08:00,1655.0,10.842992,10842.992 +15536,2025-03-08T22:41:59.560406-08:00,1629.0,10.838343,10838.343 +15537,2025-03-08T22:42:10.396074-08:00,1642.0,10.835668,10835.668 +15538,2025-03-08T22:42:21.229373-08:00,1669.0,10.833299,10833.299 +15539,2025-03-08T22:42:32.060283-08:00,1627.0,10.83091,10830.91 +15540,2025-03-08T22:42:42.901062-08:00,1712.0,10.840779,10840.779 +15541,2025-03-08T22:42:53.730201-08:00,1613.0,10.829139,10829.139 +15542,2025-03-08T22:43:04.570074-08:00,1703.0,10.839873,10839.873 +15543,2025-03-08T22:43:15.410144-08:00,1706.0,10.84007,10840.07 +15544,2025-03-08T22:43:26.249091-08:00,1706.0,10.838947,10838.947 +15545,2025-03-08T22:43:37.094219-08:00,1635.0,10.845128,10845.128 +15546,2025-03-08T22:43:47.927073-08:00,1697.0,10.832854,10832.854 +15547,2025-03-08T22:43:58.766128-08:00,1709.0,10.839055,10839.055 +15548,2025-03-08T22:44:09.603143-08:00,1677.0,10.837015,10837.015 +15549,2025-03-08T22:44:20.447547-08:00,1679.0,10.844404,10844.404 +15550,2025-03-08T22:44:31.289085-08:00,1621.0,10.841538,10841.538 +15551,2025-03-08T22:44:42.120366-08:00,1691.0,10.831281,10831.281 +15552,2025-03-08T22:44:52.962063-08:00,1625.0,10.841697,10841.697 +15553,2025-03-08T22:45:03.798454-08:00,1616.0,10.836391,10836.391 +15554,2025-03-08T22:45:14.639536-08:00,1693.0,10.841082,10841.082 +15555,2025-03-08T22:45:25.485377-08:00,1659.0,10.845841,10845.841 +15556,2025-03-08T22:45:36.316089-08:00,1617.0,10.830712,10830.712 +15557,2025-03-08T22:45:47.161398-08:00,1690.0,10.845309,10845.309 +15558,2025-03-08T22:45:58.007595-08:00,1701.0,10.846197,10846.197 +15559,2025-03-08T22:46:08.847331-08:00,1691.0,10.839736,10839.736 +15560,2025-03-08T22:46:19.685282-08:00,1675.0,10.837951,10837.951 +15561,2025-03-08T22:46:30.525354-08:00,1665.0,10.840072,10840.072 +15562,2025-03-08T22:46:41.362124-08:00,1682.0,10.83677,10836.77 +15563,2025-03-08T22:46:52.204398-08:00,1662.0,10.842274,10842.274 +15564,2025-03-08T22:47:03.043059-08:00,1665.0,10.838661,10838.661 +15565,2025-03-08T22:47:13.880400-08:00,1701.0,10.837341,10837.341 +15566,2025-03-08T22:47:24.717079-08:00,1710.0,10.836679,10836.679 +15567,2025-03-08T22:47:35.560260-08:00,1680.0,10.843181,10843.181 +15568,2025-03-08T22:47:46.403841-08:00,1712.0,10.843581,10843.581 +15569,2025-03-08T22:47:57.240110-08:00,1687.0,10.836269,10836.269 +15570,2025-03-08T22:48:08.084084-08:00,1619.0,10.843974,10843.974 +15571,2025-03-08T22:48:18.915355-08:00,1618.0,10.831271,10831.271 +15572,2025-03-08T22:48:29.754220-08:00,1653.0,10.838865,10838.865 +15573,2025-03-08T22:48:40.599130-08:00,1654.0,10.84491,10844.91 +15574,2025-03-08T22:48:51.433072-08:00,1680.0,10.833942,10833.942 +15575,2025-03-08T22:49:02.276398-08:00,1636.0,10.843326,10843.326 +15576,2025-03-08T22:49:13.108078-08:00,1691.0,10.83168,10831.68 +15577,2025-03-08T22:49:23.954079-08:00,1653.0,10.846001,10846.001 +15578,2025-03-08T22:49:34.790563-08:00,1671.0,10.836484,10836.484 +15579,2025-03-08T22:49:45.624316-08:00,1665.0,10.833753,10833.753 +15580,2025-03-08T22:49:56.473078-08:00,1710.0,10.848762,10848.762 +15581,2025-03-08T22:50:07.311406-08:00,1651.0,10.838328,10838.328 +15582,2025-03-08T22:50:18.143110-08:00,1685.0,10.831704,10831.704 +15583,2025-03-08T22:50:28.981078-08:00,1641.0,10.837968,10837.968 +15584,2025-03-08T22:50:39.806935-08:00,1678.0,10.825857,10825.857 +15585,2025-03-08T22:50:50.648073-08:00,1690.0,10.841138,10841.138 +15586,2025-03-08T22:51:01.478222-08:00,1657.0,10.830149,10830.149 +15587,2025-03-08T22:51:12.324434-08:00,1663.0,10.846212,10846.212 +15588,2025-03-08T22:51:23.161754-08:00,1695.0,10.83732,10837.32 +15589,2025-03-08T22:51:33.995115-08:00,1663.0,10.833361,10833.361 +15590,2025-03-08T22:51:44.838997-08:00,1664.0,10.843882,10843.882 +15591,2025-03-08T22:51:55.673081-08:00,1663.0,10.834084,10834.084 +15592,2025-03-08T22:52:06.512339-08:00,1675.0,10.839258,10839.258 +15593,2025-03-08T22:52:17.356086-08:00,1709.0,10.843747,10843.747 +15594,2025-03-08T22:52:28.194149-08:00,1651.0,10.838063,10838.063 +15595,2025-03-08T22:52:39.030069-08:00,1707.0,10.83592,10835.92 +15596,2025-03-08T22:52:49.867408-08:00,1695.0,10.837339,10837.339 +15597,2025-03-08T22:53:00.709174-08:00,1686.0,10.841766,10841.766 +15598,2025-03-08T22:53:11.545075-08:00,1698.0,10.835901,10835.901 +15599,2025-03-08T22:53:22.385066-08:00,1709.0,10.839991,10839.991 +15600,2025-03-08T22:53:33.215339-08:00,1668.0,10.830273,10830.273 +15601,2025-03-08T22:53:44.059124-08:00,1658.0,10.843785,10843.785 +15602,2025-03-08T22:53:54.903316-08:00,1707.0,10.844192,10844.192 +15603,2025-03-08T22:54:05.734937-08:00,1710.0,10.831621,10831.621 +15604,2025-03-08T22:54:16.578266-08:00,1687.0,10.843329,10843.329 +15605,2025-03-08T22:54:27.410321-08:00,1627.0,10.832055,10832.055 +15606,2025-03-08T22:54:38.240406-08:00,1663.0,10.830085,10830.085 +15607,2025-03-08T22:54:49.072344-08:00,1710.0,10.831938,10831.938 +15608,2025-03-08T22:54:59.904707-08:00,1676.0,10.832363,10832.363 +15609,2025-03-08T22:55:10.743070-08:00,1690.0,10.838363,10838.363 +15610,2025-03-08T22:55:21.575081-08:00,1664.0,10.832011,10832.011 +15611,2025-03-08T22:55:32.408153-08:00,1708.0,10.833072,10833.072 +15612,2025-03-08T22:55:43.249069-08:00,1699.0,10.840916,10840.916 +15613,2025-03-08T22:55:54.087408-08:00,1679.0,10.838339,10838.339 +15614,2025-03-08T22:56:04.918079-08:00,1637.0,10.830671,10830.671 +15615,2025-03-08T22:56:15.758075-08:00,1647.0,10.839996,10839.996 +15616,2025-03-08T22:56:26.593379-08:00,1675.0,10.835304,10835.304 +15617,2025-03-08T22:56:37.418262-08:00,1659.0,10.824883,10824.883 +15618,2025-03-08T22:56:48.263200-08:00,1650.0,10.844938,10844.938 +15619,2025-03-08T22:56:59.093074-08:00,1705.0,10.829874,10829.874 +15620,2025-03-08T22:57:09.919213-08:00,1706.0,10.826139,10826.139 +15621,2025-03-08T22:57:20.761641-08:00,1706.0,10.842428,10842.428 +15622,2025-03-08T22:57:31.593063-08:00,1683.0,10.831422,10831.422 +15623,2025-03-08T22:57:42.426396-08:00,1697.0,10.833333,10833.333 +15624,2025-03-08T22:57:53.267325-08:00,1679.0,10.840929,10840.929 +15625,2025-03-08T22:58:04.101052-08:00,1701.0,10.833727,10833.727 +15626,2025-03-08T22:58:14.944085-08:00,1635.0,10.843033,10843.033 +15627,2025-03-08T22:58:25.783451-08:00,1677.0,10.839366,10839.366 +15628,2025-03-08T22:58:36.630224-08:00,1711.0,10.846773,10846.773 +15629,2025-03-08T22:58:47.463621-08:00,1648.0,10.833397,10833.397 +15630,2025-03-08T22:58:58.303270-08:00,1707.0,10.839649,10839.649 +15631,2025-03-08T22:59:09.144075-08:00,1644.0,10.840805,10840.805 +15632,2025-03-08T22:59:19.991078-08:00,1706.0,10.847003,10847.003 +15633,2025-03-08T22:59:30.828068-08:00,1707.0,10.83699,10836.99 +15634,2025-03-08T22:59:41.660441-08:00,1655.0,10.832373,10832.373 +15635,2025-03-08T22:59:52.509279-08:00,1685.0,10.848838,10848.838 +15636,2025-03-08T23:00:03.345062-08:00,1667.0,10.835783,10835.783 +15637,2025-03-08T23:00:14.186951-08:00,1661.0,10.841889,10841.889 +15638,2025-03-08T23:00:25.027114-08:00,1649.0,10.840163,10840.163 +15639,2025-03-08T23:00:35.866310-08:00,1703.0,10.839196,10839.196 +15640,2025-03-08T23:00:46.703141-08:00,1712.0,10.836831,10836.831 +15641,2025-03-08T23:00:57.542381-08:00,1615.0,10.83924,10839.24 +15642,2025-03-08T23:01:08.373546-08:00,1663.0,10.831165,10831.165 +15643,2025-03-08T23:01:19.215080-08:00,1698.0,10.841534,10841.534 +15644,2025-03-08T23:01:30.050918-08:00,1690.0,10.835838,10835.838 +15645,2025-03-08T23:01:40.893064-08:00,1648.0,10.842146,10842.146 +15646,2025-03-08T23:01:51.734074-08:00,1709.0,10.84101,10841.01 +15647,2025-03-08T23:02:02.564119-08:00,1690.0,10.830045,10830.045 +15648,2025-03-08T23:02:13.399336-08:00,1658.0,10.835217,10835.217 +15649,2025-03-08T23:02:24.245072-08:00,1696.0,10.845736,10845.736 +15650,2025-03-08T23:02:35.081344-08:00,1681.0,10.836272,10836.272 +15651,2025-03-08T23:02:45.926075-08:00,1693.0,10.844731,10844.731 +15652,2025-03-08T23:02:56.773353-08:00,1667.0,10.847278,10847.278 +15653,2025-03-08T23:03:07.611068-08:00,1709.0,10.837715,10837.715 +15654,2025-03-08T23:03:18.444347-08:00,1633.0,10.833279,10833.279 +15655,2025-03-08T23:03:29.287074-08:00,1640.0,10.842727,10842.727 +15656,2025-03-08T23:03:40.123391-08:00,1711.0,10.836317,10836.317 +15657,2025-03-08T23:03:50.972472-08:00,1703.0,10.849081,10849.081 +15658,2025-03-08T23:04:01.809565-08:00,1693.0,10.837093,10837.093 +15659,2025-03-08T23:04:12.652300-08:00,1661.0,10.842735,10842.735 +15660,2025-03-08T23:04:23.491078-08:00,1669.0,10.838778,10838.778 +15661,2025-03-08T23:04:34.324161-08:00,1659.0,10.833083,10833.083 +15662,2025-03-08T23:04:45.171170-08:00,1668.0,10.847009,10847.009 +15663,2025-03-08T23:04:56.003009-08:00,1705.0,10.831839,10831.839 +15664,2025-03-08T23:05:06.841196-08:00,1619.0,10.838187,10838.187 +15665,2025-03-08T23:05:17.677127-08:00,1661.0,10.835931,10835.931 +15666,2025-03-08T23:05:28.515078-08:00,1696.0,10.837951,10837.951 +15667,2025-03-08T23:05:39.428237-08:00,1699.0,10.913159,10913.159 +15668,2025-03-08T23:05:50.267589-08:00,1707.0,10.839352,10839.352 +15669,2025-03-08T23:06:01.103238-08:00,1648.0,10.835649,10835.649 +15670,2025-03-08T23:06:11.951345-08:00,1680.0,10.848107,10848.107 +15671,2025-03-08T23:06:22.788593-08:00,1709.0,10.837248,10837.248 +15672,2025-03-08T23:06:33.626295-08:00,1664.0,10.837702,10837.702 +15673,2025-03-08T23:06:44.470475-08:00,1661.0,10.84418,10844.18 +15674,2025-03-08T23:06:55.306901-08:00,1631.0,10.836426,10836.426 +15675,2025-03-08T23:07:06.138319-08:00,1647.0,10.831418,10831.418 +15676,2025-03-08T23:07:16.984375-08:00,1694.0,10.846056,10846.056 +15677,2025-03-08T23:07:27.814573-08:00,1699.0,10.830198,10830.198 +15678,2025-03-08T23:07:38.656406-08:00,1707.0,10.841833,10841.833 +15679,2025-03-08T23:07:49.482243-08:00,1706.0,10.825837,10825.837 +15680,2025-03-08T23:08:00.326259-08:00,1693.0,10.844016,10844.016 +15681,2025-03-08T23:08:11.160242-08:00,1703.0,10.833983,10833.983 +15682,2025-03-08T23:08:21.994465-08:00,1619.0,10.834223,10834.223 +15683,2025-03-08T23:08:32.843659-08:00,1679.0,10.849194,10849.194 +15684,2025-03-08T23:08:43.670241-08:00,1695.0,10.826582,10826.582 +15685,2025-03-08T23:08:54.518250-08:00,1662.0,10.848009,10848.009 +15686,2025-03-08T23:09:05.353240-08:00,1664.0,10.83499,10834.99 +15687,2025-03-08T23:09:16.187448-08:00,1691.0,10.834208,10834.208 +15688,2025-03-08T23:09:27.031705-08:00,1696.0,10.844257,10844.257 +15689,2025-03-08T23:09:37.879366-08:00,1661.0,10.847661,10847.661 +15690,2025-03-08T23:09:48.715623-08:00,1707.0,10.836257,10836.257 +15691,2025-03-08T23:09:59.556242-08:00,1705.0,10.840619,10840.619 +15692,2025-03-08T23:10:10.392241-08:00,1613.0,10.835999,10835.999 +15693,2025-03-08T23:10:21.229282-08:00,1695.0,10.837041,10837.041 +15694,2025-03-08T23:10:32.077567-08:00,1629.0,10.848285,10848.285 +15695,2025-03-08T23:10:42.912248-08:00,1707.0,10.834681,10834.681 +15696,2025-03-08T23:10:53.744056-08:00,1709.0,10.831808,10831.808 +15697,2025-03-08T23:11:04.585509-08:00,1659.0,10.841453,10841.453 +15698,2025-03-08T23:11:15.422259-08:00,1690.0,10.83675,10836.75 +15699,2025-03-08T23:11:26.266241-08:00,1702.0,10.843982,10843.982 +15700,2025-03-08T23:11:37.102411-08:00,1707.0,10.83617,10836.17 +15701,2025-03-08T23:11:47.935505-08:00,1674.0,10.833094,10833.094 +15702,2025-03-08T23:11:58.777348-08:00,1652.0,10.841843,10841.843 +15703,2025-03-08T23:12:09.614432-08:00,1669.0,10.837084,10837.084 +15704,2025-03-08T23:12:20.455248-08:00,1653.0,10.840816,10840.816 +15705,2025-03-08T23:12:31.288532-08:00,1678.0,10.833284,10833.284 +15706,2025-03-08T23:12:42.126851-08:00,1661.0,10.838319,10838.319 +15707,2025-03-08T23:12:52.965238-08:00,1670.0,10.838387,10838.387 +15708,2025-03-08T23:13:03.814223-08:00,1644.0,10.848985,10848.985 +15709,2025-03-08T23:13:14.655295-08:00,1630.0,10.841072,10841.072 +15710,2025-03-08T23:13:25.487626-08:00,1676.0,10.832331,10832.331 +15711,2025-03-08T23:13:36.338231-08:00,1673.0,10.850605,10850.605 +15712,2025-03-08T23:13:47.172402-08:00,1658.0,10.834171,10834.171 +15713,2025-03-08T23:13:58.005482-08:00,1634.0,10.83308,10833.08 +15714,2025-03-08T23:14:08.848374-08:00,1659.0,10.842892,10842.892 +15715,2025-03-08T23:14:19.687587-08:00,1709.0,10.839213,10839.213 +15716,2025-03-08T23:14:30.523647-08:00,1615.0,10.83606,10836.06 +15717,2025-03-08T23:14:41.360235-08:00,1711.0,10.836588,10836.588 +15718,2025-03-08T23:14:52.197498-08:00,1622.0,10.837263,10837.263 +15719,2025-03-08T23:15:03.040223-08:00,1616.0,10.842725,10842.725 +15720,2025-03-08T23:15:13.873220-08:00,1706.0,10.832997,10832.997 +15721,2025-03-08T23:15:24.707379-08:00,1648.0,10.834159,10834.159 +15722,2025-03-08T23:15:35.555249-08:00,1663.0,10.84787,10847.87 +15723,2025-03-08T23:15:46.385754-08:00,1699.0,10.830505,10830.505 +15724,2025-03-08T23:15:57.232245-08:00,1698.0,10.846491,10846.491 +15725,2025-03-08T23:16:08.062693-08:00,1663.0,10.830448,10830.448 +15726,2025-03-08T23:16:18.892543-08:00,1674.0,10.82985,10829.85 +15727,2025-03-08T23:16:29.741241-08:00,1673.0,10.848698,10848.698 +15728,2025-03-08T23:16:40.579498-08:00,1620.0,10.838257,10838.257 +15729,2025-03-08T23:16:51.410224-08:00,1686.0,10.830726,10830.726 +15730,2025-03-08T23:17:02.256470-08:00,1663.0,10.846246,10846.246 +15731,2025-03-08T23:17:13.089383-08:00,1696.0,10.832913,10832.913 +15732,2025-03-08T23:17:23.921335-08:00,1707.0,10.831952,10831.952 +15733,2025-03-08T23:17:34.767268-08:00,1707.0,10.845933,10845.933 +15734,2025-03-08T23:17:45.596587-08:00,1700.0,10.829319,10829.319 +15735,2025-03-08T23:17:56.439161-08:00,1709.0,10.842574,10842.574 +15736,2025-03-08T23:18:07.272475-08:00,1689.0,10.833314,10833.314 +15737,2025-03-08T23:18:18.113283-08:00,1651.0,10.840808,10840.808 +15738,2025-03-08T23:18:28.956846-08:00,1648.0,10.843563,10843.563 +15739,2025-03-08T23:18:39.798241-08:00,1707.0,10.841395,10841.395 +15740,2025-03-08T23:18:50.626400-08:00,1707.0,10.828159,10828.159 +15741,2025-03-08T23:19:01.466512-08:00,1658.0,10.840112,10840.112 +15742,2025-03-08T23:19:12.305448-08:00,1701.0,10.838936,10838.936 +15743,2025-03-08T23:19:23.136245-08:00,1647.0,10.830797,10830.797 +15744,2025-03-08T23:19:33.977143-08:00,1697.0,10.840898,10840.898 +15745,2025-03-08T23:19:44.813299-08:00,1707.0,10.836156,10836.156 +15746,2025-03-08T23:19:55.651300-08:00,1669.0,10.838001,10838.001 +15747,2025-03-08T23:20:06.491511-08:00,1710.0,10.840211,10840.211 +15748,2025-03-08T23:20:17.327058-08:00,1679.0,10.835547,10835.547 +15749,2025-03-08T23:20:28.159246-08:00,1663.0,10.832188,10832.188 +15750,2025-03-08T23:20:39.006555-08:00,1709.0,10.847309,10847.309 +15751,2025-03-08T23:20:49.850287-08:00,1706.0,10.843732,10843.732 +15752,2025-03-08T23:21:00.688239-08:00,1673.0,10.837952,10837.952 +15753,2025-03-08T23:21:11.530302-08:00,1663.0,10.842063,10842.063 +15754,2025-03-08T23:21:22.367799-08:00,1687.0,10.837497,10837.497 +15755,2025-03-08T23:21:33.199224-08:00,1651.0,10.831425,10831.425 +15756,2025-03-08T23:21:44.038246-08:00,1693.0,10.839022,10839.022 +15757,2025-03-08T23:21:54.876293-08:00,1618.0,10.838047,10838.047 +15758,2025-03-08T23:22:05.706565-08:00,1661.0,10.830272,10830.272 +15759,2025-03-08T23:22:16.550628-08:00,1682.0,10.844063,10844.063 +15760,2025-03-08T23:22:27.390302-08:00,1655.0,10.839674,10839.674 +15761,2025-03-08T23:22:38.217484-08:00,1711.0,10.827182,10827.182 +15762,2025-03-08T23:22:49.055519-08:00,1708.0,10.838035,10838.035 +15763,2025-03-08T23:22:59.886393-08:00,1697.0,10.830874,10830.874 +15764,2025-03-08T23:23:10.731248-08:00,1710.0,10.844855,10844.855 +15765,2025-03-08T23:23:21.568185-08:00,1615.0,10.836937,10836.937 +15766,2025-03-08T23:23:32.400342-08:00,1662.0,10.832157,10832.157 +15767,2025-03-08T23:23:43.238244-08:00,1683.0,10.837902,10837.902 +15768,2025-03-08T23:23:54.070427-08:00,1670.0,10.832183,10832.183 +15769,2025-03-08T23:24:04.912546-08:00,1619.0,10.842119,10842.119 +15770,2025-03-08T23:24:15.755450-08:00,1694.0,10.842904,10842.904 +15771,2025-03-08T23:24:26.587530-08:00,1671.0,10.83208,10832.08 +15772,2025-03-08T23:24:37.432245-08:00,1705.0,10.844715,10844.715 +15773,2025-03-08T23:24:48.268224-08:00,1623.0,10.835979,10835.979 +15774,2025-03-08T23:24:59.114237-08:00,1697.0,10.846013,10846.013 +15775,2025-03-08T23:25:09.954729-08:00,1649.0,10.840492,10840.492 +15776,2025-03-08T23:25:20.790244-08:00,1697.0,10.835515,10835.515 +15777,2025-03-08T23:25:31.632236-08:00,1711.0,10.841992,10841.992 +15778,2025-03-08T23:25:42.472550-08:00,1695.0,10.840314,10840.314 +15779,2025-03-08T23:25:53.320412-08:00,1663.0,10.847862,10847.862 +15780,2025-03-08T23:26:04.161223-08:00,1705.0,10.840811,10840.811 +15781,2025-03-08T23:26:15.002292-08:00,1622.0,10.841069,10841.069 +15782,2025-03-08T23:26:25.841529-08:00,1697.0,10.839237,10839.237 +15783,2025-03-08T23:26:36.684546-08:00,1661.0,10.843017,10843.017 +15784,2025-03-08T23:26:47.524241-08:00,1647.0,10.839695,10839.695 +15785,2025-03-08T23:26:58.362561-08:00,1687.0,10.83832,10838.32 +15786,2025-03-08T23:27:09.205560-08:00,1671.0,10.842999,10842.999 +15787,2025-03-08T23:27:20.048456-08:00,1637.0,10.842896,10842.896 +15788,2025-03-08T23:27:30.895474-08:00,1664.0,10.847018,10847.018 +15789,2025-03-08T23:27:41.734239-08:00,1621.0,10.838765,10838.765 +15790,2025-03-08T23:27:52.583391-08:00,1707.0,10.849152,10849.152 +15791,2025-03-08T23:28:03.425532-08:00,1663.0,10.842141,10842.141 +15792,2025-03-08T23:28:14.261363-08:00,1707.0,10.835831,10835.831 +15793,2025-03-08T23:28:25.111513-08:00,1706.0,10.85015,10850.15 +15794,2025-03-08T23:28:35.949591-08:00,1677.0,10.838078,10838.078 +15795,2025-03-08T23:28:46.794571-08:00,1662.0,10.84498,10844.98 +15796,2025-03-08T23:28:57.635485-08:00,1703.0,10.840914,10840.914 +15797,2025-03-08T23:29:08.473374-08:00,1680.0,10.837889,10837.889 +15798,2025-03-08T23:29:19.312248-08:00,1695.0,10.838874,10838.874 +15799,2025-03-08T23:29:30.149828-08:00,1609.0,10.83758,10837.58 +15800,2025-03-08T23:29:40.991218-08:00,1707.0,10.84139,10841.39 +15801,2025-03-08T23:29:51.833242-08:00,1663.0,10.842024,10842.024 +15802,2025-03-08T23:30:02.678716-08:00,1680.0,10.845474,10845.474 +15803,2025-03-08T23:30:13.518071-08:00,1691.0,10.839355,10839.355 +15804,2025-03-08T23:30:24.363237-08:00,1657.0,10.845166,10845.166 +15805,2025-03-08T23:30:35.206239-08:00,1701.0,10.843002,10843.002 +15806,2025-03-08T23:30:46.050706-08:00,1705.0,10.844467,10844.467 +15807,2025-03-08T23:30:56.892587-08:00,1664.0,10.841881,10841.881 +15808,2025-03-08T23:31:07.735288-08:00,1695.0,10.842701,10842.701 +15809,2025-03-08T23:31:18.578223-08:00,1683.0,10.842935,10842.935 +15810,2025-03-08T23:31:29.415820-08:00,1629.0,10.837597,10837.597 +15811,2025-03-08T23:31:40.262223-08:00,1686.0,10.846403,10846.403 +15812,2025-03-08T23:31:51.112833-08:00,1709.0,10.85061,10850.61 +15813,2025-03-08T23:32:01.950527-08:00,1706.0,10.837694,10837.694 +15814,2025-03-08T23:32:12.793638-08:00,1692.0,10.843111,10843.111 +15815,2025-03-08T23:32:23.646240-08:00,1703.0,10.852602,10852.602 +15816,2025-03-08T23:32:34.482874-08:00,1661.0,10.836634,10836.634 +15817,2025-03-08T23:32:45.335620-08:00,1644.0,10.852746,10852.746 +15818,2025-03-08T23:32:56.178359-08:00,1680.0,10.842739,10842.739 +15819,2025-03-08T23:33:07.020244-08:00,1708.0,10.841885,10841.885 +15820,2025-03-08T23:33:17.871766-08:00,1633.0,10.851522,10851.522 +15821,2025-03-08T23:33:28.709822-08:00,1698.0,10.838056,10838.056 +15822,2025-03-08T23:33:39.559416-08:00,1669.0,10.849594,10849.594 +15823,2025-03-08T23:33:50.403424-08:00,1667.0,10.844008,10844.008 +15824,2025-03-08T23:34:01.248370-08:00,1676.0,10.844946,10844.946 +15825,2025-03-08T23:34:12.090784-08:00,1705.0,10.842414,10842.414 +15826,2025-03-08T23:34:22.930495-08:00,1635.0,10.839711,10839.711 +15827,2025-03-08T23:34:33.773558-08:00,1679.0,10.843063,10843.063 +15828,2025-03-08T23:34:44.620631-08:00,1705.0,10.847073,10847.073 +15829,2025-03-08T23:34:55.464241-08:00,1625.0,10.84361,10843.61 +15830,2025-03-08T23:35:06.311767-08:00,1649.0,10.847526,10847.526 +15831,2025-03-08T23:35:17.151544-08:00,1694.0,10.839777,10839.777 +15832,2025-03-08T23:35:27.999452-08:00,1665.0,10.847908,10847.908 +15833,2025-03-08T23:35:38.847620-08:00,1667.0,10.848168,10848.168 +15834,2025-03-08T23:35:49.693543-08:00,1616.0,10.845923,10845.923 +15835,2025-03-08T23:36:00.537313-08:00,1671.0,10.84377,10843.77 +15836,2025-03-08T23:36:11.386808-08:00,1664.0,10.849495,10849.495 +15837,2025-03-08T23:36:22.220575-08:00,1618.0,10.833767,10833.767 +15838,2025-03-08T23:36:33.070210-08:00,1679.0,10.849635,10849.635 +15839,2025-03-08T23:36:43.909361-08:00,1710.0,10.839151,10839.151 +15840,2025-03-08T23:36:54.751393-08:00,1663.0,10.842032,10842.032 +15841,2025-03-08T23:37:05.598463-08:00,1669.0,10.84707,10847.07 +15842,2025-03-08T23:37:16.446638-08:00,1711.0,10.848175,10848.175 +15843,2025-03-08T23:37:27.282260-08:00,1711.0,10.835622,10835.622 +15844,2025-03-08T23:37:38.122244-08:00,1619.0,10.839984,10839.984 +15845,2025-03-08T23:37:48.967221-08:00,1694.0,10.844977,10844.977 +15846,2025-03-08T23:37:59.808554-08:00,1695.0,10.841333,10841.333 +15847,2025-03-08T23:38:10.650559-08:00,1709.0,10.842005,10842.005 +15848,2025-03-08T23:38:21.493528-08:00,1698.0,10.842969,10842.969 +15849,2025-03-08T23:38:32.337243-08:00,1708.0,10.843715,10843.715 +15850,2025-03-08T23:38:43.176735-08:00,1681.0,10.839492,10839.492 +15851,2025-03-08T23:38:54.010246-08:00,1663.0,10.833511,10833.511 +15852,2025-03-08T23:39:04.852490-08:00,1696.0,10.842244,10842.244 +15853,2025-03-08T23:39:15.688495-08:00,1709.0,10.836005,10836.005 +15854,2025-03-08T23:39:26.524239-08:00,1699.0,10.835744,10835.744 +15855,2025-03-08T23:39:37.370233-08:00,1694.0,10.845994,10845.994 +15856,2025-03-08T23:39:48.202572-08:00,1675.0,10.832339,10832.339 +15857,2025-03-08T23:39:59.042245-08:00,1669.0,10.839673,10839.673 +15858,2025-03-08T23:40:09.890244-08:00,1706.0,10.847999,10847.999 +15859,2025-03-08T23:40:20.729245-08:00,1694.0,10.839001,10839.001 +15860,2025-03-08T23:40:31.578287-08:00,1697.0,10.849042,10849.042 +15861,2025-03-08T23:40:42.421552-08:00,1680.0,10.843265,10843.265 +15862,2025-03-08T23:40:53.252573-08:00,1685.0,10.831021,10831.021 +15863,2025-03-08T23:41:04.100338-08:00,1707.0,10.847765,10847.765 +15864,2025-03-08T23:41:14.938680-08:00,1700.0,10.838342,10838.342 +15865,2025-03-08T23:41:25.774215-08:00,1710.0,10.835535,10835.535 +15866,2025-03-08T23:41:36.605244-08:00,1710.0,10.831029,10831.029 +15867,2025-03-08T23:41:47.432456-08:00,1697.0,10.827212,10827.212 +15868,2025-03-08T23:41:58.269615-08:00,1681.0,10.837159,10837.159 +15869,2025-03-08T23:42:09.110573-08:00,1686.0,10.840958,10840.958 +15870,2025-03-08T23:42:19.935554-08:00,1707.0,10.824981,10824.981 +15871,2025-03-08T23:42:30.772462-08:00,1681.0,10.836908,10836.908 +15872,2025-03-08T23:42:41.614495-08:00,1664.0,10.842033,10842.033 +15873,2025-03-08T23:42:52.458275-08:00,1672.0,10.84378,10843.78 +15874,2025-03-08T23:43:03.288834-08:00,1637.0,10.830559,10830.559 +15875,2025-03-08T23:43:14.134711-08:00,1711.0,10.845877,10845.877 +15876,2025-03-08T23:43:24.971214-08:00,1703.0,10.836503,10836.503 +15877,2025-03-08T23:43:35.813377-08:00,1709.0,10.842163,10842.163 +15878,2025-03-08T23:43:46.660688-08:00,1679.0,10.847311,10847.311 +15879,2025-03-08T23:43:57.493585-08:00,1658.0,10.832897,10832.897 +15880,2025-03-08T23:44:08.338292-08:00,1682.0,10.844707,10844.707 +15881,2025-03-08T23:44:19.170355-08:00,1712.0,10.832063,10832.063 +15882,2025-03-08T23:44:30.000678-08:00,1655.0,10.830323,10830.323 +15883,2025-03-08T23:44:40.841491-08:00,1712.0,10.840813,10840.813 +15884,2025-03-08T23:44:51.676554-08:00,1647.0,10.835063,10835.063 +15885,2025-03-08T23:45:02.515581-08:00,1662.0,10.839027,10839.027 +15886,2025-03-08T23:45:13.361543-08:00,1698.0,10.845962,10845.962 +15887,2025-03-08T23:45:24.198562-08:00,1696.0,10.837019,10837.019 +15888,2025-03-08T23:45:35.043248-08:00,1657.0,10.844686,10844.686 +15889,2025-03-08T23:45:45.879037-08:00,1710.0,10.835789,10835.789 +15890,2025-03-08T23:45:56.710260-08:00,1710.0,10.831223,10831.223 +15891,2025-03-08T23:46:07.553942-08:00,1665.0,10.843682,10843.682 +15892,2025-03-08T23:46:18.384269-08:00,1712.0,10.830327,10830.327 +15893,2025-03-08T23:46:29.217831-08:00,1711.0,10.833562,10833.562 +15894,2025-03-08T23:46:40.055457-08:00,1654.0,10.837626,10837.626 +15895,2025-03-08T23:46:50.892244-08:00,1633.0,10.836787,10836.787 +15896,2025-03-08T23:47:01.723247-08:00,1711.0,10.831003,10831.003 +15897,2025-03-08T23:47:12.557281-08:00,1703.0,10.834034,10834.034 +15898,2025-03-08T23:47:23.388235-08:00,1678.0,10.830954,10830.954 +15899,2025-03-08T23:47:34.224860-08:00,1663.0,10.836625,10836.625 +15900,2025-03-08T23:47:45.060240-08:00,1632.0,10.83538,10835.38 +15901,2025-03-08T23:47:55.895244-08:00,1667.0,10.835004,10835.004 +15902,2025-03-08T23:48:06.727292-08:00,1685.0,10.832048,10832.048 +15903,2025-03-08T23:48:17.557830-08:00,1687.0,10.830538,10830.538 +15904,2025-03-08T23:48:28.400541-08:00,1670.0,10.842711,10842.711 +15905,2025-03-08T23:48:39.235232-08:00,1619.0,10.834691,10834.691 +15906,2025-03-08T23:48:50.070290-08:00,1698.0,10.835058,10835.058 +15907,2025-03-08T23:49:00.913392-08:00,1698.0,10.843102,10843.102 +15908,2025-03-08T23:49:11.752581-08:00,1702.0,10.839189,10839.189 +15909,2025-03-08T23:49:22.583230-08:00,1701.0,10.830649,10830.649 +15910,2025-03-08T23:49:33.425563-08:00,1677.0,10.842333,10842.333 +15911,2025-03-08T23:49:44.258255-08:00,1648.0,10.832692,10832.692 +15912,2025-03-08T23:49:55.088511-08:00,1669.0,10.830256,10830.256 +15913,2025-03-08T23:50:05.926248-08:00,1669.0,10.837737,10837.737 +15914,2025-03-08T23:50:16.763286-08:00,1713.0,10.837038,10837.038 +15915,2025-03-08T23:50:27.595611-08:00,1657.0,10.832325,10832.325 +15916,2025-03-08T23:50:38.438695-08:00,1619.0,10.843084,10843.084 +15917,2025-03-08T23:50:49.267434-08:00,1709.0,10.828739,10828.739 +15918,2025-03-08T23:51:00.107304-08:00,1614.0,10.83987,10839.87 +15919,2025-03-08T23:51:10.945280-08:00,1643.0,10.837976,10837.976 +15920,2025-03-08T23:51:21.778239-08:00,1645.0,10.832959,10832.959 +15921,2025-03-08T23:51:32.608575-08:00,1680.0,10.830336,10830.336 +15922,2025-03-08T23:51:43.445241-08:00,1682.0,10.836666,10836.666 +15923,2025-03-08T23:51:54.280244-08:00,1650.0,10.835003,10835.003 +15924,2025-03-08T23:52:05.104249-08:00,1619.0,10.824005,10824.005 +15925,2025-03-08T23:52:15.947239-08:00,1706.0,10.84299,10842.99 +15926,2025-03-08T23:52:26.784563-08:00,1701.0,10.837324,10837.324 +15927,2025-03-08T23:52:37.614240-08:00,1653.0,10.829677,10829.677 +15928,2025-03-08T23:52:48.459456-08:00,1663.0,10.845216,10845.216 +15929,2025-03-08T23:52:59.285404-08:00,1690.0,10.825948,10825.948 +15930,2025-03-08T23:53:10.129426-08:00,1706.0,10.844022,10844.022 +15931,2025-03-08T23:53:20.958698-08:00,1670.0,10.829272,10829.272 +15932,2025-03-08T23:53:31.790241-08:00,1629.0,10.831543,10831.543 +15933,2025-03-08T23:53:42.618386-08:00,1664.0,10.828145,10828.145 +15934,2025-03-08T23:53:53.455364-08:00,1678.0,10.836978,10836.978 +15935,2025-03-08T23:54:04.289254-08:00,1680.0,10.83389,10833.89 +15936,2025-03-08T23:54:15.118518-08:00,1611.0,10.829264,10829.264 +15937,2025-03-08T23:54:25.951219-08:00,1679.0,10.832701,10832.701 +15938,2025-03-08T23:54:36.792246-08:00,1701.0,10.841027,10841.027 +15939,2025-03-08T23:54:47.623534-08:00,1703.0,10.831288,10831.288 +15940,2025-03-08T23:54:58.456290-08:00,1712.0,10.832756,10832.756 +15941,2025-03-08T23:55:09.288314-08:00,1678.0,10.832024,10832.024 +15942,2025-03-08T23:55:20.123239-08:00,1659.0,10.834925,10834.925 +15943,2025-03-08T23:55:30.963283-08:00,1712.0,10.840044,10840.044 +15944,2025-03-08T23:55:41.798504-08:00,1658.0,10.835221,10835.221 +15945,2025-03-08T23:55:52.626488-08:00,1633.0,10.827984,10827.984 +15946,2025-03-08T23:56:03.458196-08:00,1699.0,10.831708,10831.708 +15947,2025-03-08T23:56:14.295230-08:00,1654.0,10.837034,10837.034 +15948,2025-03-08T23:56:25.127315-08:00,1663.0,10.832085,10832.085 +15949,2025-03-08T23:56:35.966003-08:00,1641.0,10.838688,10838.688 +15950,2025-03-08T23:56:46.796376-08:00,1695.0,10.830373,10830.373 +15951,2025-03-08T23:56:57.622648-08:00,1666.0,10.826272,10826.272 +15952,2025-03-08T23:57:08.458362-08:00,1703.0,10.835714,10835.714 +15953,2025-03-08T23:57:19.287664-08:00,1667.0,10.829302,10829.302 +15954,2025-03-08T23:57:30.123237-08:00,1712.0,10.835573,10835.573 +15955,2025-03-08T23:57:40.951518-08:00,1678.0,10.828281,10828.281 +15956,2025-03-08T23:57:51.785499-08:00,1673.0,10.833981,10833.981 +15957,2025-03-08T23:58:02.617242-08:00,1686.0,10.831743,10831.743 +15958,2025-03-08T23:58:13.449370-08:00,1717.0,10.832128,10832.128 +15959,2025-03-08T23:58:24.285404-08:00,1712.0,10.836034,10836.034 +15960,2025-03-08T23:58:35.113353-08:00,1685.0,10.827949,10827.949 +15961,2025-03-08T23:58:45.944250-08:00,1712.0,10.830897,10830.897 +15962,2025-03-08T23:58:56.776552-08:00,1697.0,10.832302,10832.302 +15963,2025-03-08T23:59:07.616376-08:00,1691.0,10.839824,10839.824 +15964,2025-03-08T23:59:18.449353-08:00,1616.0,10.832977,10832.977 +15965,2025-03-08T23:59:29.278465-08:00,1696.0,10.829112,10829.112 +15966,2025-03-08T23:59:40.115242-08:00,1706.0,10.836777,10836.777 +15967,2025-03-08T23:59:50.959394-08:00,1659.0,10.844152,10844.152 +15968,2025-03-09T00:00:01.796244-08:00,1648.0,10.83685,10836.85 +15969,2025-03-09T00:00:12.630240-08:00,1712.0,10.833996,10833.996 +15970,2025-03-09T00:00:23.454595-08:00,1702.0,10.824355,10824.355 +15971,2025-03-09T00:00:34.292240-08:00,1630.0,10.837645,10837.645 +15972,2025-03-09T00:00:45.117546-08:00,1681.0,10.825306,10825.306 +15973,2025-03-09T00:00:55.951087-08:00,1670.0,10.833541,10833.541 +15974,2025-03-09T00:01:06.781594-08:00,1712.0,10.830507,10830.507 +15975,2025-03-09T00:01:17.610228-08:00,1662.0,10.828634,10828.634 +15976,2025-03-09T00:01:28.443334-08:00,1712.0,10.833106,10833.106 +15977,2025-03-09T00:01:39.277293-08:00,1690.0,10.833959,10833.959 +15978,2025-03-09T00:01:50.107240-08:00,1687.0,10.829947,10829.947 +15979,2025-03-09T00:02:00.945393-08:00,1707.0,10.838153,10838.153 +15980,2025-03-09T00:02:11.779746-08:00,1630.0,10.834353,10834.353 +15981,2025-03-09T00:02:22.602872-08:00,1677.0,10.823126,10823.126 +15982,2025-03-09T00:02:33.434219-08:00,1662.0,10.831347,10831.347 +15983,2025-03-09T00:02:44.267717-08:00,1686.0,10.833498,10833.498 +15984,2025-03-09T00:02:55.093245-08:00,1679.0,10.825528,10825.528 +15985,2025-03-09T00:03:05.925315-08:00,1717.0,10.83207,10832.07 +15986,2025-03-09T00:03:16.757649-08:00,1713.0,10.832334,10832.334 +15987,2025-03-09T00:03:27.588347-08:00,1700.0,10.830698,10830.698 +15988,2025-03-09T00:03:38.431214-08:00,1631.0,10.842867,10842.867 +15989,2025-03-09T00:03:49.261239-08:00,1703.0,10.830025,10830.025 +15990,2025-03-09T00:04:00.087505-08:00,1679.0,10.826266,10826.266 +15991,2025-03-09T00:04:10.913469-08:00,1687.0,10.825964,10825.964 +15992,2025-03-09T00:04:21.742081-08:00,1687.0,10.828612,10828.612 +15993,2025-03-09T00:04:32.573242-08:00,1677.0,10.831161,10831.161 +15994,2025-03-09T00:04:43.403531-08:00,1717.0,10.830289,10830.289 +15995,2025-03-09T00:04:54.236212-08:00,1713.0,10.832681,10832.681 +15996,2025-03-09T00:05:05.062515-08:00,1712.0,10.826303,10826.303 +15997,2025-03-09T00:05:15.893477-08:00,1660.0,10.830962,10830.962 +15998,2025-03-09T00:05:26.719492-08:00,1661.0,10.826015,10826.015 +15999,2025-03-09T00:05:37.550534-08:00,1716.0,10.831042,10831.042 +16000,2025-03-09T00:05:48.422902-08:00,1715.0,10.872368,10872.368 +16001,2025-03-09T00:05:59.254403-08:00,1667.0,10.831501,10831.501 +16002,2025-03-09T00:06:10.079463-08:00,1699.0,10.82506,10825.06 +16003,2025-03-09T00:06:20.911454-08:00,1668.0,10.831991,10831.991 +16004,2025-03-09T00:06:31.738678-08:00,1702.0,10.827224,10827.224 +16005,2025-03-09T00:06:42.576436-08:00,1717.0,10.837758,10837.758 +16006,2025-03-09T00:06:53.395705-08:00,1713.0,10.819269,10819.269 +16007,2025-03-09T00:07:04.233583-08:00,1713.0,10.837878,10837.878 +16008,2025-03-09T00:07:15.054404-08:00,1711.0,10.820821,10820.821 +16009,2025-03-09T00:07:25.889385-08:00,1635.0,10.834981,10834.981 +16010,2025-03-09T00:07:36.711594-08:00,1680.0,10.822209,10822.209 +16011,2025-03-09T00:07:47.543860-08:00,1626.0,10.832266,10832.266 +16012,2025-03-09T00:07:58.369629-08:00,1668.0,10.825769,10825.769 +16013,2025-03-09T00:08:09.200398-08:00,1694.0,10.830769,10830.769 +16014,2025-03-09T00:08:20.026650-08:00,1649.0,10.826252,10826.252 +16015,2025-03-09T00:08:30.859454-08:00,1709.0,10.832804,10832.804 +16016,2025-03-09T00:08:41.681735-08:00,1690.0,10.822281,10822.281 +16017,2025-03-09T00:08:52.509403-08:00,1713.0,10.827668,10827.668 +16018,2025-03-09T00:09:03.338391-08:00,1667.0,10.828988,10828.988 +16019,2025-03-09T00:09:14.171293-08:00,1681.0,10.832902,10832.902 +16020,2025-03-09T00:09:24.996430-08:00,1717.0,10.825137,10825.137 +16021,2025-03-09T00:09:35.825397-08:00,1631.0,10.828967,10828.967 +16022,2025-03-09T00:09:46.659410-08:00,1713.0,10.834013,10834.013 +16023,2025-03-09T00:09:57.488589-08:00,1648.0,10.829179,10829.179 +16024,2025-03-09T00:10:08.321646-08:00,1700.0,10.833057,10833.057 +16025,2025-03-09T00:10:19.147383-08:00,1717.0,10.825737,10825.737 +16026,2025-03-09T00:10:29.978407-08:00,1714.0,10.831024,10831.024 +16027,2025-03-09T00:10:40.815725-08:00,1655.0,10.837318,10837.318 +16028,2025-03-09T00:10:51.644651-08:00,1651.0,10.828926,10828.926 +16029,2025-03-09T00:11:02.472770-08:00,1713.0,10.828119,10828.119 +16030,2025-03-09T00:11:13.300614-08:00,1677.0,10.827844,10827.844 +16031,2025-03-09T00:11:24.131803-08:00,1631.0,10.831189,10831.189 +16032,2025-03-09T00:11:34.959678-08:00,1672.0,10.827875,10827.875 +16033,2025-03-09T00:11:45.800818-08:00,1618.0,10.84114,10841.14 +16034,2025-03-09T00:11:56.623391-08:00,1715.0,10.822573,10822.573 +16035,2025-03-09T00:12:07.457626-08:00,1717.0,10.834235,10834.235 +16036,2025-03-09T00:12:18.276407-08:00,1680.0,10.818781,10818.781 +16037,2025-03-09T00:12:29.107511-08:00,1679.0,10.831104,10831.104 +16038,2025-03-09T00:12:39.929397-08:00,1680.0,10.821886,10821.886 +16039,2025-03-09T00:12:50.758894-08:00,1712.0,10.829497,10829.497 +16040,2025-03-09T00:13:01.580775-08:00,1713.0,10.821881,10821.881 +16041,2025-03-09T00:13:12.416405-08:00,1648.0,10.83563,10835.63 +16042,2025-03-09T00:13:23.245634-08:00,1709.0,10.829229,10829.229 +16043,2025-03-09T00:13:34.073206-08:00,1618.0,10.827572,10827.572 +16044,2025-03-09T00:13:44.899764-08:00,1631.0,10.826558,10826.558 +16045,2025-03-09T00:13:55.731374-08:00,1711.0,10.83161,10831.61 +16046,2025-03-09T00:14:06.557867-08:00,1648.0,10.826493,10826.493 +16047,2025-03-09T00:14:17.378142-08:00,1685.0,10.820275,10820.275 +16048,2025-03-09T00:14:28.214831-08:00,1718.0,10.836689,10836.689 +16049,2025-03-09T00:14:39.029402-08:00,1712.0,10.814571,10814.571 +16050,2025-03-09T00:14:49.855671-08:00,1719.0,10.826269,10826.269 +16051,2025-03-09T00:15:00.680507-08:00,1695.0,10.824836,10824.836 +16052,2025-03-09T00:15:11.507251-08:00,1721.0,10.826744,10826.744 +16053,2025-03-09T00:15:22.333643-08:00,1687.0,10.826392,10826.392 +16054,2025-03-09T00:15:33.166522-08:00,1674.0,10.832879,10832.879 +16055,2025-03-09T00:15:43.987734-08:00,1718.0,10.821212,10821.212 +16056,2025-03-09T00:15:54.813402-08:00,1719.0,10.825668,10825.668 +16057,2025-03-09T00:16:05.639911-08:00,1714.0,10.826509,10826.509 +16058,2025-03-09T00:16:16.474599-08:00,1648.0,10.834688,10834.688 +16059,2025-03-09T00:16:27.289760-08:00,1669.0,10.815161,10815.161 +16060,2025-03-09T00:16:38.115589-08:00,1633.0,10.825829,10825.829 +16061,2025-03-09T00:16:48.943708-08:00,1713.0,10.828119,10828.119 +16062,2025-03-09T00:16:59.773559-08:00,1633.0,10.829851,10829.851 +16063,2025-03-09T00:17:10.597372-08:00,1718.0,10.823813,10823.813 +16064,2025-03-09T00:17:21.430610-08:00,1690.0,10.833238,10833.238 +16065,2025-03-09T00:17:32.252648-08:00,1714.0,10.822038,10822.038 +16066,2025-03-09T00:17:43.077639-08:00,1712.0,10.824991,10824.991 +16067,2025-03-09T00:17:53.909549-08:00,1631.0,10.83191,10831.91 +16068,2025-03-09T00:18:04.730406-08:00,1618.0,10.820857,10820.857 +16069,2025-03-09T00:18:15.558450-08:00,1718.0,10.828044,10828.044 +16070,2025-03-09T00:18:26.376376-08:00,1657.0,10.817926,10817.926 +16071,2025-03-09T00:18:37.207057-08:00,1622.0,10.830681,10830.681 +16072,2025-03-09T00:18:48.027450-08:00,1626.0,10.820393,10820.393 +16073,2025-03-09T00:18:58.847434-08:00,1714.0,10.819984,10819.984 +16074,2025-03-09T00:19:09.673401-08:00,1654.0,10.825967,10825.967 +16075,2025-03-09T00:19:20.501706-08:00,1702.0,10.828305,10828.305 +16076,2025-03-09T00:19:31.316530-08:00,1673.0,10.814824,10814.824 +16077,2025-03-09T00:19:42.141408-08:00,1666.0,10.824878,10824.878 +16078,2025-03-09T00:19:52.972485-08:00,1680.0,10.831077,10831.077 +16079,2025-03-09T00:20:03.791382-08:00,1713.0,10.818897,10818.897 +16080,2025-03-09T00:20:14.619874-08:00,1622.0,10.828492,10828.492 +16081,2025-03-09T00:20:25.444660-08:00,1709.0,10.824786,10824.786 +16082,2025-03-09T00:20:36.266523-08:00,1718.0,10.821863,10821.863 +16083,2025-03-09T00:20:47.085805-08:00,1641.0,10.819282,10819.282 +16084,2025-03-09T00:20:57.905408-08:00,1663.0,10.819603,10819.603 +16085,2025-03-09T00:21:08.725467-08:00,1715.0,10.820059,10820.059 +16086,2025-03-09T00:21:19.547765-08:00,1646.0,10.822298,10822.298 +16087,2025-03-09T00:21:30.375402-08:00,1712.0,10.827637,10827.637 +16088,2025-03-09T00:21:41.197710-08:00,1633.0,10.822308,10822.308 +16089,2025-03-09T00:21:52.010745-08:00,1678.0,10.813035,10813.035 +16090,2025-03-09T00:22:02.832395-08:00,1722.0,10.82165,10821.65 +16091,2025-03-09T00:22:13.648277-08:00,1723.0,10.815882,10815.882 +16092,2025-03-09T00:22:24.476019-08:00,1712.0,10.827742,10827.742 +16093,2025-03-09T00:22:35.289406-08:00,1675.0,10.813387,10813.387 +16094,2025-03-09T00:22:46.120954-08:00,1664.0,10.831548,10831.548 +16095,2025-03-09T00:22:56.940894-08:00,1719.0,10.81994,10819.94 +16096,2025-03-09T00:23:07.760406-08:00,1631.0,10.819512,10819.512 +16097,2025-03-09T00:23:18.580748-08:00,1680.0,10.820342,10820.342 +16098,2025-03-09T00:23:29.397400-08:00,1635.0,10.816652,10816.652 +16099,2025-03-09T00:23:40.219617-08:00,1723.0,10.822217,10822.217 +16100,2025-03-09T00:23:51.042816-08:00,1664.0,10.823199,10823.199 +16101,2025-03-09T00:24:01.857706-08:00,1684.0,10.81489,10814.89 +16102,2025-03-09T00:24:12.675404-08:00,1709.0,10.817698,10817.698 +16103,2025-03-09T00:24:23.493455-08:00,1699.0,10.818051,10818.051 +16104,2025-03-09T00:24:34.316761-08:00,1677.0,10.823306,10823.306 +16105,2025-03-09T00:24:45.146604-08:00,1680.0,10.829843,10829.843 +16106,2025-03-09T00:24:55.960720-08:00,1722.0,10.814116,10814.116 +16107,2025-03-09T00:25:06.786646-08:00,1724.0,10.825926,10825.926 +16108,2025-03-09T00:25:17.604396-08:00,1626.0,10.81775,10817.75 +16109,2025-03-09T00:25:28.425676-08:00,1722.0,10.82128,10821.28 +16110,2025-03-09T00:25:39.240783-08:00,1709.0,10.815107,10815.107 +16111,2025-03-09T00:25:50.061395-08:00,1662.0,10.820612,10820.612 +16112,2025-03-09T00:26:00.886724-08:00,1648.0,10.825329,10825.329 +16113,2025-03-09T00:26:11.703658-08:00,1722.0,10.816934,10816.934 +16114,2025-03-09T00:26:22.525403-08:00,1647.0,10.821745,10821.745 +16115,2025-03-09T00:26:33.331390-08:00,1690.0,10.805987,10805.987 +16116,2025-03-09T00:26:44.159100-08:00,1722.0,10.82771,10827.71 +16117,2025-03-09T00:26:54.976487-08:00,1680.0,10.817387,10817.387 +16118,2025-03-09T00:27:16.600402-08:00,1721.0,21.623915,21623.915 +16119,2025-03-09T00:27:27.423402-08:00,1648.0,10.823,10823.0 +16120,2025-03-09T00:27:38.230778-08:00,1696.0,10.807376,10807.376 +16121,2025-03-09T00:27:49.050385-08:00,1717.0,10.819607,10819.607 +16122,2025-03-09T00:27:59.860555-08:00,1707.0,10.81017,10810.17 +16123,2025-03-09T00:28:10.681145-08:00,1698.0,10.82059,10820.59 +16124,2025-03-09T00:28:21.494612-08:00,1665.0,10.813467,10813.467 +16125,2025-03-09T00:28:32.308404-08:00,1691.0,10.813792,10813.792 +16126,2025-03-09T00:28:43.123418-08:00,1659.0,10.815014,10815.014 +16127,2025-03-09T00:28:53.944774-08:00,1679.0,10.821356,10821.356 +16128,2025-03-09T00:29:04.761409-08:00,1710.0,10.816635,10816.635 +16129,2025-03-09T00:29:15.586398-08:00,1706.0,10.824989,10824.989 +16130,2025-03-09T00:29:26.404743-08:00,1721.0,10.818345,10818.345 +16131,2025-03-09T00:29:37.219655-08:00,1631.0,10.814912,10814.912 +16132,2025-03-09T00:29:48.033479-08:00,1670.0,10.813824,10813.824 +16133,2025-03-09T00:29:58.846400-08:00,1680.0,10.812921,10812.921 +16134,2025-03-09T00:30:09.671880-08:00,1679.0,10.82548,10825.48 +16135,2025-03-09T00:30:20.494547-08:00,1674.0,10.822667,10822.667 +16136,2025-03-09T00:30:31.311400-08:00,1664.0,10.816853,10816.853 +16137,2025-03-09T00:30:42.139910-08:00,1664.0,10.82851,10828.51 +16138,2025-03-09T00:30:52.946410-08:00,1721.0,10.8065,10806.5 +16139,2025-03-09T00:31:03.766381-08:00,1719.0,10.819971,10819.971 +16140,2025-03-09T00:31:14.586669-08:00,1697.0,10.820288,10820.288 +16141,2025-03-09T00:31:25.404393-08:00,1680.0,10.817724,10817.724 +16142,2025-03-09T00:31:36.221603-08:00,1649.0,10.81721,10817.21 +16143,2025-03-09T00:31:47.040465-08:00,1681.0,10.818862,10818.862 +16144,2025-03-09T00:31:57.865408-08:00,1719.0,10.824943,10824.943 +16145,2025-03-09T00:32:08.681461-08:00,1723.0,10.816053,10816.053 +16146,2025-03-09T00:32:19.494636-08:00,1708.0,10.813175,10813.175 +16147,2025-03-09T00:32:30.317672-08:00,1678.0,10.823036,10823.036 +16148,2025-03-09T00:32:41.138180-08:00,1725.0,10.820508,10820.508 +16149,2025-03-09T00:32:51.952392-08:00,1675.0,10.814212,10814.212 +16150,2025-03-09T00:33:13.587961-08:00,1721.0,21.635569,21635.569 +16151,2025-03-09T00:33:24.399404-08:00,1659.0,10.811443,10811.443 +16152,2025-03-09T00:33:35.216394-08:00,1724.0,10.81699,10816.99 +16153,2025-03-09T00:33:46.037866-08:00,1655.0,10.821472,10821.472 +16154,2025-03-09T00:33:56.858401-08:00,1680.0,10.820535,10820.535 +16155,2025-03-09T00:34:07.677555-08:00,1626.0,10.819154,10819.154 +16156,2025-03-09T00:34:18.497204-08:00,1669.0,10.819649,10819.649 +16157,2025-03-09T00:34:29.307968-08:00,1719.0,10.810764,10810.764 +16158,2025-03-09T00:34:40.126686-08:00,1660.0,10.818718,10818.718 +16159,2025-03-09T00:34:50.944629-08:00,1712.0,10.817943,10817.943 +16160,2025-03-09T00:35:01.760029-08:00,1722.0,10.8154,10815.4 +16161,2025-03-09T00:35:12.586936-08:00,1671.0,10.826907,10826.907 +16162,2025-03-09T00:35:23.400473-08:00,1641.0,10.813537,10813.537 +16163,2025-03-09T00:35:34.211858-08:00,1722.0,10.811385,10811.385 +16164,2025-03-09T00:35:45.027824-08:00,1681.0,10.815966,10815.966 +16165,2025-03-09T00:35:55.835758-08:00,1649.0,10.807934,10807.934 +16166,2025-03-09T00:36:06.649552-08:00,1719.0,10.813794,10813.794 +16167,2025-03-09T00:36:17.479483-08:00,1655.0,10.829931,10829.931 +16168,2025-03-09T00:36:28.294720-08:00,1666.0,10.815237,10815.237 +16169,2025-03-09T00:36:39.105691-08:00,1715.0,10.810971,10810.971 +16170,2025-03-09T00:36:49.925459-08:00,1646.0,10.819768,10819.768 +16171,2025-03-09T00:37:00.744473-08:00,1692.0,10.819014,10819.014 +16172,2025-03-09T00:37:11.561663-08:00,1685.0,10.81719,10817.19 +16173,2025-03-09T00:37:22.382832-08:00,1633.0,10.821169,10821.169 +16174,2025-03-09T00:37:33.206565-08:00,1725.0,10.823733,10823.733 +16175,2025-03-09T00:37:44.022020-08:00,1725.0,10.815455,10815.455 +16176,2025-03-09T00:37:54.842407-08:00,1687.0,10.820387,10820.387 +16177,2025-03-09T00:38:05.667824-08:00,1718.0,10.825417,10825.417 +16178,2025-03-09T00:38:16.478653-08:00,1666.0,10.810829,10810.829 +16179,2025-03-09T00:38:27.297406-08:00,1680.0,10.818753,10818.753 +16180,2025-03-09T00:38:38.116413-08:00,1693.0,10.819007,10819.007 +16181,2025-03-09T00:38:48.944692-08:00,1680.0,10.828279,10828.279 +16182,2025-03-09T00:38:59.759405-08:00,1626.0,10.814713,10814.713 +16183,2025-03-09T00:39:10.573398-08:00,1679.0,10.813993,10813.993 +16184,2025-03-09T00:39:21.392403-08:00,1680.0,10.819005,10819.005 +16185,2025-03-09T00:39:32.214413-08:00,1723.0,10.82201,10822.01 +16186,2025-03-09T00:39:43.028745-08:00,1683.0,10.814332,10814.332 +16187,2025-03-09T00:39:53.847525-08:00,1654.0,10.81878,10818.78 +16188,2025-03-09T00:40:04.657550-08:00,1631.0,10.810025,10810.025 +16189,2025-03-09T00:40:15.482014-08:00,1636.0,10.824464,10824.464 +16190,2025-03-09T00:40:26.297386-08:00,1653.0,10.815372,10815.372 +16191,2025-03-09T00:40:37.113878-08:00,1687.0,10.816492,10816.492 +16192,2025-03-09T00:40:47.938918-08:00,1685.0,10.82504,10825.04 +16193,2025-03-09T00:40:58.753394-08:00,1712.0,10.814476,10814.476 +16194,2025-03-09T00:41:09.568576-08:00,1712.0,10.815182,10815.182 +16195,2025-03-09T00:41:20.390356-08:00,1709.0,10.82178,10821.78 +16196,2025-03-09T00:41:31.215458-08:00,1644.0,10.825102,10825.102 +16197,2025-03-09T00:41:42.029643-08:00,1728.0,10.814185,10814.185 +16198,2025-03-09T00:41:52.841629-08:00,1672.0,10.811986,10811.986 +16199,2025-03-09T00:42:03.669631-08:00,1655.0,10.828002,10828.002 +16200,2025-03-09T00:42:14.478671-08:00,1671.0,10.80904,10809.04 +16201,2025-03-09T00:42:25.297398-08:00,1725.0,10.818727,10818.727 +16202,2025-03-09T00:42:36.115948-08:00,1693.0,10.81855,10818.55 +16203,2025-03-09T00:42:46.938619-08:00,1681.0,10.822671,10822.671 +16204,2025-03-09T00:42:57.759392-08:00,1707.0,10.820773,10820.773 +16205,2025-03-09T00:43:08.579729-08:00,1624.0,10.820337,10820.337 +16206,2025-03-09T00:43:19.388829-08:00,1686.0,10.8091,10809.1 +16207,2025-03-09T00:43:30.208402-08:00,1655.0,10.819573,10819.573 +16208,2025-03-09T00:43:41.029458-08:00,1644.0,10.821056,10821.056 +16209,2025-03-09T00:43:51.848825-08:00,1712.0,10.819367,10819.367 +16210,2025-03-09T00:44:02.666402-08:00,1642.0,10.817577,10817.577 +16211,2025-03-09T00:44:13.491447-08:00,1664.0,10.825045,10825.045 +16212,2025-03-09T00:44:24.306910-08:00,1637.0,10.815463,10815.463 +16213,2025-03-09T00:44:35.125407-08:00,1679.0,10.818497,10818.497 +16214,2025-03-09T00:44:45.941389-08:00,1728.0,10.815982,10815.982 +16215,2025-03-09T00:44:56.760826-08:00,1645.0,10.819437,10819.437 +16216,2025-03-09T00:45:07.570760-08:00,1654.0,10.809934,10809.934 +16217,2025-03-09T00:45:18.386397-08:00,1729.0,10.815637,10815.637 +16218,2025-03-09T00:45:29.198615-08:00,1715.0,10.812218,10812.218 +16219,2025-03-09T00:45:40.020685-08:00,1681.0,10.82207,10822.07 +16220,2025-03-09T00:45:50.828982-08:00,1730.0,10.808297,10808.297 +16221,2025-03-09T00:46:01.638664-08:00,1684.0,10.809682,10809.682 +16222,2025-03-09T00:46:12.459737-08:00,1725.0,10.821073,10821.073 +16223,2025-03-09T00:46:23.269403-08:00,1669.0,10.809666,10809.666 +16224,2025-03-09T00:46:34.088436-08:00,1698.0,10.819033,10819.033 +16225,2025-03-09T00:46:44.908884-08:00,1724.0,10.820448,10820.448 +16226,2025-03-09T00:46:55.716459-08:00,1687.0,10.807575,10807.575 +16227,2025-03-09T00:47:06.531721-08:00,1650.0,10.815262,10815.262 +16228,2025-03-09T00:47:17.352538-08:00,1698.0,10.820817,10820.817 +16229,2025-03-09T00:47:28.165724-08:00,1727.0,10.813186,10813.186 +16230,2025-03-09T00:47:38.980809-08:00,1665.0,10.815085,10815.085 +16231,2025-03-09T00:47:49.786478-08:00,1728.0,10.805669,10805.669 +16232,2025-03-09T00:48:00.603516-08:00,1707.0,10.817038,10817.038 +16233,2025-03-09T00:48:11.412462-08:00,1691.0,10.808946,10808.946 +16234,2025-03-09T00:48:22.229934-08:00,1647.0,10.817472,10817.472 +16235,2025-03-09T00:48:33.043875-08:00,1697.0,10.813941,10813.941 +16236,2025-03-09T00:48:43.851388-08:00,1657.0,10.807513,10807.513 +16237,2025-03-09T00:48:54.674705-08:00,1675.0,10.823317,10823.317 +16238,2025-03-09T00:49:05.487662-08:00,1647.0,10.812957,10812.957 +16239,2025-03-09T00:49:16.305031-08:00,1694.0,10.817369,10817.369 +16240,2025-03-09T00:49:27.122260-08:00,1665.0,10.817229,10817.229 +16241,2025-03-09T00:49:37.930392-08:00,1716.0,10.808132,10808.132 +16242,2025-03-09T00:49:48.746458-08:00,1633.0,10.816066,10816.066 +16243,2025-03-09T00:49:59.560997-08:00,1712.0,10.814539,10814.539 +16244,2025-03-09T00:50:10.379397-08:00,1713.0,10.8184,10818.4 +16245,2025-03-09T00:50:21.204749-08:00,1682.0,10.825352,10825.352 +16246,2025-03-09T00:50:32.022349-08:00,1665.0,10.8176,10817.6 +16247,2025-03-09T00:50:42.829674-08:00,1723.0,10.807325,10807.325 +16248,2025-03-09T00:50:53.651523-08:00,1726.0,10.821849,10821.849 +16249,2025-03-09T00:51:04.465381-08:00,1701.0,10.813858,10813.858 +16250,2025-03-09T00:51:15.279769-08:00,1719.0,10.814388,10814.388 +16251,2025-03-09T00:51:26.099677-08:00,1681.0,10.819908,10819.908 +16252,2025-03-09T00:51:36.915652-08:00,1710.0,10.815975,10815.975 +16253,2025-03-09T00:51:47.729510-08:00,1669.0,10.813858,10813.858 +16254,2025-03-09T00:51:58.546408-08:00,1711.0,10.816898,10816.898 +16255,2025-03-09T00:52:09.358689-08:00,1713.0,10.812281,10812.281 +16256,2025-03-09T00:52:20.177706-08:00,1648.0,10.819017,10819.017 +16257,2025-03-09T00:52:30.998769-08:00,1663.0,10.821063,10821.063 +16258,2025-03-09T00:52:41.815783-08:00,1695.0,10.817014,10817.014 +16259,2025-03-09T00:52:52.629112-08:00,1718.0,10.813329,10813.329 +16260,2025-03-09T00:53:03.432837-08:00,1701.0,10.803725,10803.725 +16261,2025-03-09T00:53:14.247727-08:00,1729.0,10.81489,10814.89 +16262,2025-03-09T00:53:25.061402-08:00,1676.0,10.813675,10813.675 +16263,2025-03-09T00:53:35.877463-08:00,1647.0,10.816061,10816.061 +16264,2025-03-09T00:53:46.697783-08:00,1698.0,10.82032,10820.32 +16265,2025-03-09T00:53:57.512601-08:00,1657.0,10.814818,10814.818 +16266,2025-03-09T00:54:08.331404-08:00,1682.0,10.818803,10818.803 +16267,2025-03-09T00:54:19.146293-08:00,1703.0,10.814889,10814.889 +16268,2025-03-09T00:54:29.962288-08:00,1725.0,10.815995,10815.995 +16269,2025-03-09T00:54:40.775393-08:00,1680.0,10.813105,10813.105 +16270,2025-03-09T00:54:51.595751-08:00,1719.0,10.820358,10820.358 +16271,2025-03-09T00:55:02.415981-08:00,1728.0,10.82023,10820.23 +16272,2025-03-09T00:55:13.242874-08:00,1683.0,10.826893,10826.893 +16273,2025-03-09T00:55:24.051539-08:00,1725.0,10.808665,10808.665 +16274,2025-03-09T00:55:34.863536-08:00,1711.0,10.811997,10811.997 +16275,2025-03-09T00:55:45.681286-08:00,1725.0,10.81775,10817.75 +16276,2025-03-09T00:55:56.501458-08:00,1681.0,10.820172,10820.172 +16277,2025-03-09T00:56:07.315398-08:00,1712.0,10.81394,10813.94 +16278,2025-03-09T00:56:18.137694-08:00,1671.0,10.822296,10822.296 +16279,2025-03-09T00:56:28.951404-08:00,1681.0,10.81371,10813.71 +16280,2025-03-09T00:56:39.776697-08:00,1697.0,10.825293,10825.293 +16281,2025-03-09T00:56:50.591380-08:00,1701.0,10.814683,10814.683 +16282,2025-03-09T00:57:01.415407-08:00,1704.0,10.824027,10824.027 +16283,2025-03-09T00:57:12.225648-08:00,1726.0,10.810241,10810.241 +16284,2025-03-09T00:57:23.043852-08:00,1728.0,10.818204,10818.204 +16285,2025-03-09T00:57:33.873386-08:00,1680.0,10.829534,10829.534 +16286,2025-03-09T00:57:44.687397-08:00,1725.0,10.814011,10814.011 +16287,2025-03-09T00:57:55.498500-08:00,1680.0,10.811103,10811.103 +16288,2025-03-09T00:58:06.324734-08:00,1675.0,10.826234,10826.234 +16289,2025-03-09T00:58:17.132241-08:00,1721.0,10.807507,10807.507 +16290,2025-03-09T00:58:27.957397-08:00,1715.0,10.825156,10825.156 +16291,2025-03-09T00:58:38.776962-08:00,1707.0,10.819565,10819.565 +16292,2025-03-09T00:58:49.593888-08:00,1692.0,10.816926,10816.926 +16293,2025-03-09T00:59:00.420403-08:00,1712.0,10.826515,10826.515 +16294,2025-03-09T00:59:11.228405-08:00,1725.0,10.808002,10808.002 +16295,2025-03-09T00:59:22.054657-08:00,1709.0,10.826252,10826.252 +16296,2025-03-09T00:59:32.874403-08:00,1701.0,10.819746,10819.746 +16297,2025-03-09T00:59:43.694451-08:00,1727.0,10.820048,10820.048 +16298,2025-03-09T00:59:54.514508-08:00,1725.0,10.820057,10820.057 +16299,2025-03-09T01:00:05.327727-08:00,1724.0,10.813219,10813.219 +16300,2025-03-09T01:00:16.148401-08:00,1697.0,10.820674,10820.674 +16301,2025-03-09T01:00:26.980743-08:00,1680.0,10.832342,10832.342 +16302,2025-03-09T01:00:37.792334-08:00,1722.0,10.811591,10811.591 +16303,2025-03-09T01:00:48.620493-08:00,1684.0,10.828159,10828.159 +16304,2025-03-09T01:00:59.441745-08:00,1726.0,10.821252,10821.252 +16305,2025-03-09T01:01:10.264458-08:00,1719.0,10.822713,10822.713 +16306,2025-03-09T01:01:21.083433-08:00,1662.0,10.818975,10818.975 +16307,2025-03-09T01:01:31.910398-08:00,1652.0,10.826965,10826.965 +16308,2025-03-09T01:01:42.733402-08:00,1680.0,10.823004,10823.004 +16309,2025-03-09T01:01:53.551064-08:00,1727.0,10.817662,10817.662 +16310,2025-03-09T01:02:04.371749-08:00,1723.0,10.820685,10820.685 +16311,2025-03-09T01:02:15.194449-08:00,1712.0,10.8227,10822.7 +16312,2025-03-09T01:02:26.004741-08:00,1653.0,10.810292,10810.292 +16313,2025-03-09T01:02:36.826812-08:00,1648.0,10.822071,10822.071 +16314,2025-03-09T01:02:47.643398-08:00,1717.0,10.816586,10816.586 +16315,2025-03-09T01:02:58.461392-08:00,1712.0,10.817994,10817.994 +16316,2025-03-09T01:03:09.284800-08:00,1716.0,10.823408,10823.408 +16317,2025-03-09T01:03:20.101406-08:00,1655.0,10.816606,10816.606 +16318,2025-03-09T01:03:30.926733-08:00,1721.0,10.825327,10825.327 +16319,2025-03-09T01:03:41.735992-08:00,1654.0,10.809259,10809.259 +16320,2025-03-09T01:03:52.554400-08:00,1719.0,10.818408,10818.408 +16321,2025-03-09T01:04:03.371383-08:00,1725.0,10.816983,10816.983 +16322,2025-03-09T01:04:14.190463-08:00,1683.0,10.81908,10819.08 +16323,2025-03-09T01:04:25.006039-08:00,1685.0,10.815576,10815.576 +16324,2025-03-09T01:04:35.815993-08:00,1725.0,10.809954,10809.954 +16325,2025-03-09T01:04:46.630621-08:00,1643.0,10.814628,10814.628 +16326,2025-03-09T01:04:57.459757-08:00,1662.0,10.829136,10829.136 +16327,2025-03-09T01:05:08.276008-08:00,1724.0,10.816251,10816.251 +16328,2025-03-09T01:05:19.097619-08:00,1712.0,10.821611,10821.611 +16329,2025-03-09T01:05:29.909400-08:00,1711.0,10.811781,10811.781 +16330,2025-03-09T01:05:40.737320-08:00,1707.0,10.82792,10827.92 +16331,2025-03-09T01:05:51.562711-08:00,1680.0,10.825391,10825.391 +16332,2025-03-09T01:06:02.376264-08:00,1673.0,10.813553,10813.553 +16333,2025-03-09T01:06:13.193263-08:00,1635.0,10.816999,10816.999 +16334,2025-03-09T01:06:24.004793-08:00,1691.0,10.81153,10811.53 +16335,2025-03-09T01:06:34.821958-08:00,1679.0,10.817165,10817.165 +16336,2025-03-09T01:06:45.637709-08:00,1631.0,10.815751,10815.751 +16337,2025-03-09T01:06:56.464770-08:00,1723.0,10.827061,10827.061 +16338,2025-03-09T01:07:07.278750-08:00,1723.0,10.81398,10813.98 +16339,2025-03-09T01:07:18.092721-08:00,1697.0,10.813971,10813.971 +16340,2025-03-09T01:07:28.903872-08:00,1721.0,10.811151,10811.151 +16341,2025-03-09T01:07:39.717436-08:00,1709.0,10.813564,10813.564 +16342,2025-03-09T01:07:50.536721-08:00,1701.0,10.819285,10819.285 +16343,2025-03-09T01:08:01.352717-08:00,1647.0,10.815996,10815.996 +16344,2025-03-09T01:08:12.163711-08:00,1715.0,10.810994,10810.994 +16345,2025-03-09T01:08:22.985085-08:00,1701.0,10.821374,10821.374 +16346,2025-03-09T01:08:33.806708-08:00,1712.0,10.821623,10821.623 +16347,2025-03-09T01:08:44.615723-08:00,1681.0,10.809015,10809.015 +16348,2025-03-09T01:08:55.430285-08:00,1695.0,10.814562,10814.562 +16349,2025-03-09T01:09:06.251207-08:00,1647.0,10.820922,10820.922 +16350,2025-03-09T01:09:17.063973-08:00,1668.0,10.812766,10812.766 +16351,2025-03-09T01:09:27.886978-08:00,1682.0,10.823005,10823.005 +16352,2025-03-09T01:09:38.707238-08:00,1712.0,10.82026,10820.26 +16353,2025-03-09T01:09:49.524945-08:00,1680.0,10.817707,10817.707 +16354,2025-03-09T01:10:00.345948-08:00,1639.0,10.821003,10821.003 +16355,2025-03-09T01:10:11.173216-08:00,1680.0,10.827268,10827.268 +16356,2025-03-09T01:10:21.997723-08:00,1723.0,10.824507,10824.507 +16357,2025-03-09T01:10:32.824039-08:00,1714.0,10.826316,10826.316 +16358,2025-03-09T01:10:43.640144-08:00,1638.0,10.816105,10816.105 +16359,2025-03-09T01:10:54.461705-08:00,1677.0,10.821561,10821.561 +16360,2025-03-09T01:11:05.287973-08:00,1679.0,10.826268,10826.268 +16361,2025-03-09T01:11:16.112718-08:00,1708.0,10.824745,10824.745 +16362,2025-03-09T01:11:26.932985-08:00,1713.0,10.820267,10820.267 +16363,2025-03-09T01:11:37.753151-08:00,1680.0,10.820166,10820.166 +16364,2025-03-09T01:11:48.570864-08:00,1680.0,10.817713,10817.713 +16365,2025-03-09T01:11:59.391854-08:00,1669.0,10.82099,10820.99 +16366,2025-03-09T01:12:10.214353-08:00,1663.0,10.822499,10822.499 +16367,2025-03-09T01:12:21.034727-08:00,1638.0,10.820374,10820.374 +16368,2025-03-09T01:12:31.855717-08:00,1687.0,10.82099,10820.99 +16369,2025-03-09T01:12:42.674154-08:00,1633.0,10.818437,10818.437 +16370,2025-03-09T01:12:53.495729-08:00,1719.0,10.821575,10821.575 +16371,2025-03-09T01:13:04.318029-08:00,1722.0,10.8223,10822.3 +16372,2025-03-09T01:13:15.135919-08:00,1686.0,10.81789,10817.89 +16373,2025-03-09T01:13:25.956725-08:00,1698.0,10.820806,10820.806 +16374,2025-03-09T01:13:36.777774-08:00,1664.0,10.821049,10821.049 +16375,2025-03-09T01:13:47.598064-08:00,1643.0,10.82029,10820.29 +16376,2025-03-09T01:13:58.427721-08:00,1705.0,10.829657,10829.657 +16377,2025-03-09T01:14:09.250600-08:00,1723.0,10.822879,10822.879 +16378,2025-03-09T01:14:20.063759-08:00,1648.0,10.813159,10813.159 +16379,2025-03-09T01:14:30.889787-08:00,1710.0,10.826028,10826.028 +16380,2025-03-09T01:14:41.710402-08:00,1687.0,10.820615,10820.615 +16381,2025-03-09T01:14:52.536721-08:00,1711.0,10.826319,10826.319 +16382,2025-03-09T01:15:03.355704-08:00,1623.0,10.818983,10818.983 +16383,2025-03-09T01:15:14.190706-08:00,1719.0,10.835002,10835.002 +16384,2025-03-09T01:15:25.004282-08:00,1712.0,10.813576,10813.576 +16385,2025-03-09T01:15:35.831220-08:00,1670.0,10.826938,10826.938 +16386,2025-03-09T01:15:46.655058-08:00,1719.0,10.823838,10823.838 +16387,2025-03-09T01:15:57.487012-08:00,1627.0,10.831954,10831.954 +16388,2025-03-09T01:16:08.305727-08:00,1722.0,10.818715,10818.715 +16389,2025-03-09T01:16:19.122931-08:00,1661.0,10.817204,10817.204 +16390,2025-03-09T01:16:29.955994-08:00,1687.0,10.833063,10833.063 +16391,2025-03-09T01:16:40.774731-08:00,1719.0,10.818737,10818.737 +16392,2025-03-09T01:16:51.598807-08:00,1621.0,10.824076,10824.076 +16393,2025-03-09T01:17:02.421056-08:00,1721.0,10.822249,10822.249 +16394,2025-03-09T01:17:13.239953-08:00,1637.0,10.818897,10818.897 +16395,2025-03-09T01:17:24.068074-08:00,1724.0,10.828121,10828.121 +16396,2025-03-09T01:17:34.881712-08:00,1655.0,10.813638,10813.638 +16397,2025-03-09T01:17:45.698721-08:00,1682.0,10.817009,10817.009 +16398,2025-03-09T01:17:56.521748-08:00,1633.0,10.823027,10823.027 +16399,2025-03-09T01:18:07.347286-08:00,1661.0,10.825538,10825.538 +16400,2025-03-09T01:18:18.170023-08:00,1675.0,10.822737,10822.737 +16401,2025-03-09T01:18:29.000868-08:00,1703.0,10.830845,10830.845 +16402,2025-03-09T01:18:39.815114-08:00,1725.0,10.814246,10814.246 +16403,2025-03-09T01:18:50.640725-08:00,1703.0,10.825611,10825.611 +16404,2025-03-09T01:19:01.457055-08:00,1681.0,10.81633,10816.33 +16405,2025-03-09T01:19:12.283716-08:00,1712.0,10.826661,10826.661 +16406,2025-03-09T01:19:23.110011-08:00,1638.0,10.826295,10826.295 +16407,2025-03-09T01:19:33.937924-08:00,1661.0,10.827913,10827.913 +16408,2025-03-09T01:19:44.762055-08:00,1714.0,10.824131,10824.131 +16409,2025-03-09T01:19:55.595715-08:00,1661.0,10.83366,10833.66 +16410,2025-03-09T01:20:06.423335-08:00,1670.0,10.82762,10827.62 +16411,2025-03-09T01:20:17.244717-08:00,1647.0,10.821382,10821.382 +16412,2025-03-09T01:20:28.064772-08:00,1712.0,10.820055,10820.055 +16413,2025-03-09T01:20:38.895060-08:00,1632.0,10.830288,10830.288 +16414,2025-03-09T01:20:49.711934-08:00,1717.0,10.816874,10816.874 +16415,2025-03-09T01:21:00.533727-08:00,1648.0,10.821793,10821.793 +16416,2025-03-09T01:21:11.368746-08:00,1635.0,10.835019,10835.019 +16417,2025-03-09T01:21:22.189981-08:00,1695.0,10.821235,10821.235 +16418,2025-03-09T01:21:33.013062-08:00,1715.0,10.823081,10823.081 +16419,2025-03-09T01:21:43.840714-08:00,1712.0,10.827652,10827.652 +16420,2025-03-09T01:21:54.671977-08:00,1680.0,10.831263,10831.263 +16421,2025-03-09T01:22:05.492594-08:00,1670.0,10.820617,10820.617 +16422,2025-03-09T01:22:16.327029-08:00,1697.0,10.834435,10834.435 +16423,2025-03-09T01:22:27.155741-08:00,1648.0,10.828712,10828.712 +16424,2025-03-09T01:22:37.979998-08:00,1725.0,10.824257,10824.257 +16425,2025-03-09T01:22:48.807883-08:00,1702.0,10.827885,10827.885 +16426,2025-03-09T01:22:59.638060-08:00,1703.0,10.830177,10830.177 +16427,2025-03-09T01:23:10.458787-08:00,1684.0,10.820727,10820.727 +16428,2025-03-09T01:23:21.280859-08:00,1721.0,10.822072,10822.072 +16429,2025-03-09T01:23:32.111917-08:00,1669.0,10.831058,10831.058 +16430,2025-03-09T01:23:42.933964-08:00,1721.0,10.822047,10822.047 +16431,2025-03-09T01:23:53.757064-08:00,1638.0,10.8231,10823.1 +16432,2025-03-09T01:24:04.583704-08:00,1676.0,10.82664,10826.64 +16433,2025-03-09T01:24:15.415302-08:00,1679.0,10.831598,10831.598 +16434,2025-03-09T01:24:26.236953-08:00,1696.0,10.821651,10821.651 +16435,2025-03-09T01:24:37.067925-08:00,1678.0,10.830972,10830.972 +16436,2025-03-09T01:24:38.092861-08:00,1719.0,1.024936,1024.936 +16437,2025-03-09T01:24:47.889712-08:00,1695.0,9.796851,9796.851 +16438,2025-03-09T01:24:58.721768-08:00,1635.0,10.832056,10832.056 +16439,2025-03-09T01:25:09.540777-08:00,1639.0,10.819009,10819.009 +16440,2025-03-09T01:25:20.363723-08:00,1719.0,10.822946,10822.946 +16441,2025-03-09T01:25:31.198734-08:00,1643.0,10.835011,10835.011 +16442,2025-03-09T01:25:42.023746-08:00,1651.0,10.825012,10825.012 +16443,2025-03-09T01:25:52.845161-08:00,1712.0,10.821415,10821.415 +16444,2025-03-09T01:26:03.672946-08:00,1715.0,10.827785,10827.785 +16445,2025-03-09T01:26:14.498144-08:00,1675.0,10.825198,10825.198 +16446,2025-03-09T01:26:25.314235-08:00,1634.0,10.816091,10816.091 +16447,2025-03-09T01:26:36.135717-08:00,1714.0,10.821482,10821.482 +16448,2025-03-09T01:26:46.957471-08:00,1636.0,10.821754,10821.754 +16449,2025-03-09T01:26:57.783917-08:00,1719.0,10.826446,10826.446 +16450,2025-03-09T01:27:08.609717-08:00,1719.0,10.8258,10825.8 +16451,2025-03-09T01:27:19.431022-08:00,1677.0,10.821305,10821.305 +16452,2025-03-09T01:27:30.251767-08:00,1632.0,10.820745,10820.745 +16453,2025-03-09T01:27:41.082851-08:00,1675.0,10.831084,10831.084 +16454,2025-03-09T01:27:51.902915-08:00,1711.0,10.820064,10820.064 +16455,2025-03-09T01:28:02.733850-08:00,1685.0,10.830935,10830.935 +16456,2025-03-09T01:28:13.558068-08:00,1648.0,10.824218,10824.218 +16457,2025-03-09T01:28:24.376730-08:00,1715.0,10.818662,10818.662 +16458,2025-03-09T01:28:35.208981-08:00,1705.0,10.832251,10832.251 +16459,2025-03-09T01:28:46.032066-08:00,1702.0,10.823085,10823.085 +16460,2025-03-09T01:28:56.859769-08:00,1677.0,10.827703,10827.703 +16461,2025-03-09T01:29:07.690717-08:00,1654.0,10.830948,10830.948 +16462,2025-03-09T01:29:18.513819-08:00,1679.0,10.823102,10823.102 +16463,2025-03-09T01:29:29.342690-08:00,1678.0,10.828871,10828.871 +16464,2025-03-09T01:29:40.175205-08:00,1677.0,10.832515,10832.515 +16465,2025-03-09T01:29:51.006727-08:00,1717.0,10.831522,10831.522 +16466,2025-03-09T01:30:01.827776-08:00,1716.0,10.821049,10821.049 +16467,2025-03-09T01:30:12.660031-08:00,1698.0,10.832255,10832.255 +16468,2025-03-09T01:30:23.485715-08:00,1681.0,10.825684,10825.684 +16469,2025-03-09T01:30:34.311920-08:00,1633.0,10.826205,10826.205 +16470,2025-03-09T01:30:45.132334-08:00,1712.0,10.820414,10820.414 +16471,2025-03-09T01:30:55.965712-08:00,1715.0,10.833378,10833.378 +16472,2025-03-09T01:31:06.784043-08:00,1718.0,10.818331,10818.331 +16473,2025-03-09T01:31:17.615317-08:00,1670.0,10.831274,10831.274 +16474,2025-03-09T01:31:28.435875-08:00,1652.0,10.820558,10820.558 +16475,2025-03-09T01:31:39.268264-08:00,1707.0,10.832389,10832.389 +16476,2025-03-09T01:31:50.081994-08:00,1669.0,10.81373,10813.73 +16477,2025-03-09T01:32:00.900716-08:00,1631.0,10.818722,10818.722 +16478,2025-03-09T01:32:11.735296-08:00,1687.0,10.83458,10834.58 +16479,2025-03-09T01:32:22.559854-08:00,1623.0,10.824558,10824.558 +16480,2025-03-09T01:32:33.381179-08:00,1668.0,10.821325,10821.325 +16481,2025-03-09T01:32:44.203263-08:00,1635.0,10.822084,10822.084 +16482,2025-03-09T01:32:55.026242-08:00,1775.0,10.822979,10822.979 +16483,2025-03-09T01:33:05.853062-08:00,1782.0,10.82682,10826.82 +16484,2025-03-09T01:33:16.673167-08:00,1776.0,10.820105,10820.105 +16485,2025-03-09T01:33:27.504663-08:00,1763.0,10.831496,10831.496 +16486,2025-03-09T01:33:38.336701-08:00,1783.0,10.832038,10832.038 +16487,2025-03-09T01:33:49.162296-08:00,1790.0,10.825595,10825.595 +16488,2025-03-09T01:33:59.989729-08:00,1785.0,10.827433,10827.433 +16489,2025-03-09T01:34:10.813968-08:00,1774.0,10.824239,10824.239 +16490,2025-03-09T01:34:21.638755-08:00,1732.0,10.824787,10824.787 +16491,2025-03-09T01:34:32.471755-08:00,1744.0,10.833,10833.0 +16492,2025-03-09T01:34:43.293183-08:00,1719.0,10.821428,10821.428 +16493,2025-03-09T01:34:54.113862-08:00,1787.0,10.820679,10820.679 +16494,2025-03-09T01:35:04.938962-08:00,1719.0,10.8251,10825.1 +16495,2025-03-09T01:35:15.766405-08:00,1775.0,10.827443,10827.443 +16496,2025-03-09T01:35:26.596430-08:00,1783.0,10.830025,10830.025 +16497,2025-03-09T01:35:37.416723-08:00,1743.0,10.820293,10820.293 +16498,2025-03-09T01:35:48.248894-08:00,1787.0,10.832171,10832.171 +16499,2025-03-09T01:35:59.074003-08:00,1715.0,10.825109,10825.109 +16500,2025-03-09T01:36:09.896715-08:00,1777.0,10.822712,10822.712 +16501,2025-03-09T01:36:20.720029-08:00,1711.0,10.823314,10823.314 +16502,2025-03-09T01:36:31.543765-08:00,1787.0,10.823736,10823.736 +16503,2025-03-09T01:36:42.366736-08:00,1741.0,10.822971,10822.971 +16504,2025-03-09T01:36:53.190727-08:00,1707.0,10.823991,10823.991 +16505,2025-03-09T01:37:04.024281-08:00,1790.0,10.833554,10833.554 +16506,2025-03-09T01:37:14.844954-08:00,1791.0,10.820673,10820.673 +16507,2025-03-09T01:37:25.674495-08:00,1718.0,10.829541,10829.541 +16508,2025-03-09T01:37:36.494304-08:00,1712.0,10.819809,10819.809 +16509,2025-03-09T01:37:47.316284-08:00,1789.0,10.82198,10821.98 +16510,2025-03-09T01:37:58.136001-08:00,1705.0,10.819717,10819.717 +16511,2025-03-09T01:38:08.958328-08:00,1730.0,10.822327,10822.327 +16512,2025-03-09T01:38:19.789023-08:00,1739.0,10.830695,10830.695 +16513,2025-03-09T01:38:30.612035-08:00,1745.0,10.823012,10823.012 +16514,2025-03-09T01:38:41.441867-08:00,1740.0,10.829832,10829.832 +16515,2025-03-09T01:38:52.262766-08:00,1758.0,10.820899,10820.899 +16516,2025-03-09T01:39:03.093048-08:00,1738.0,10.830282,10830.282 +16517,2025-03-09T01:39:13.919721-08:00,1745.0,10.826673,10826.673 +16518,2025-03-09T01:39:24.745728-08:00,1712.0,10.826007,10826.007 +16519,2025-03-09T01:39:35.563719-08:00,1790.0,10.817991,10817.991 +16520,2025-03-09T01:39:46.395793-08:00,1788.0,10.832074,10832.074 +16521,2025-03-09T01:39:57.218726-08:00,1776.0,10.822933,10822.933 +16522,2025-03-09T01:40:08.049060-08:00,1789.0,10.830334,10830.334 +16523,2025-03-09T01:40:18.872009-08:00,1719.0,10.822949,10822.949 +16524,2025-03-09T01:40:29.695121-08:00,1743.0,10.823112,10823.112 +16525,2025-03-09T01:40:40.515724-08:00,1765.0,10.820603,10820.603 +16526,2025-03-09T01:40:51.335614-08:00,1695.0,10.81989,10819.89 +16527,2025-03-09T01:41:02.167974-08:00,1759.0,10.83236,10832.36 +16528,2025-03-09T01:41:12.987726-08:00,1776.0,10.819752,10819.752 +16529,2025-03-09T01:41:34.639511-08:00,1790.0,21.651785,21651.785 +16530,2025-03-09T01:41:45.468858-08:00,1708.0,10.829347,10829.347 +16531,2025-03-09T01:41:56.297945-08:00,1783.0,10.829087,10829.087 +16532,2025-03-09T01:42:07.134343-08:00,1777.0,10.836398,10836.398 +16533,2025-03-09T01:42:17.966040-08:00,1757.0,10.831697,10831.697 +16534,2025-03-09T01:42:28.791112-08:00,1789.0,10.825072,10825.072 +16535,2025-03-09T01:42:39.622116-08:00,1783.0,10.831004,10831.004 +16536,2025-03-09T01:42:50.444130-08:00,1786.0,10.822014,10822.014 +16537,2025-03-09T01:43:01.275226-08:00,1774.0,10.831096,10831.096 +16538,2025-03-09T01:43:12.091717-08:00,1750.0,10.816491,10816.491 +16539,2025-03-09T01:43:22.927782-08:00,1779.0,10.836065,10836.065 +16540,2025-03-09T01:43:33.754701-08:00,1745.0,10.826919,10826.919 +16541,2025-03-09T01:43:44.579805-08:00,1776.0,10.825104,10825.104 +16542,2025-03-09T01:43:55.405715-08:00,1776.0,10.82591,10825.91 +16543,2025-03-09T01:44:06.232072-08:00,1781.0,10.826357,10826.357 +16544,2025-03-09T01:44:17.062961-08:00,1777.0,10.830889,10830.889 +16545,2025-03-09T01:44:27.883649-08:00,1782.0,10.820688,10820.688 +16546,2025-03-09T01:44:38.699981-08:00,1742.0,10.816332,10816.332 +16547,2025-03-09T01:44:49.525008-08:00,1785.0,10.825027,10825.027 +16548,2025-03-09T01:45:00.350614-08:00,1775.0,10.825606,10825.606 +16549,2025-03-09T01:45:11.168713-08:00,1701.0,10.818099,10818.099 +16550,2025-03-09T01:45:21.990705-08:00,1701.0,10.821992,10821.992 +16551,2025-03-09T01:45:32.818721-08:00,1725.0,10.828016,10828.016 +16552,2025-03-09T01:45:43.636719-08:00,1754.0,10.817998,10817.998 +16553,2025-03-09T01:45:54.453790-08:00,1727.0,10.817071,10817.071 +16554,2025-03-09T01:46:05.267548-08:00,1782.0,10.813758,10813.758 +16555,2025-03-09T01:46:16.093717-08:00,1703.0,10.826169,10826.169 +16556,2025-03-09T01:46:26.908717-08:00,1776.0,10.815,10815.0 +16557,2025-03-09T01:46:37.716918-08:00,1701.0,10.808201,10808.201 +16558,2025-03-09T01:46:48.536328-08:00,1786.0,10.81941,10819.41 +16559,2025-03-09T01:46:59.357711-08:00,1728.0,10.821383,10821.383 +16560,2025-03-09T01:47:10.165853-08:00,1728.0,10.808142,10808.142 +16561,2025-03-09T01:47:20.992468-08:00,1710.0,10.826615,10826.615 +16562,2025-03-09T01:47:31.806079-08:00,1773.0,10.813611,10813.611 +16563,2025-03-09T01:47:42.623006-08:00,1741.0,10.816927,10816.927 +16564,2025-03-09T01:47:53.437715-08:00,1788.0,10.814709,10814.709 +16565,2025-03-09T01:48:04.259247-08:00,1787.0,10.821532,10821.532 +16566,2025-03-09T01:48:15.076989-08:00,1712.0,10.817742,10817.742 +16567,2025-03-09T01:48:25.886087-08:00,1739.0,10.809098,10809.098 +16568,2025-03-09T01:48:36.710721-08:00,1754.0,10.824634,10824.634 +16569,2025-03-09T01:48:47.526024-08:00,1786.0,10.815303,10815.303 +16570,2025-03-09T01:48:58.336060-08:00,1751.0,10.810036,10810.036 +16571,2025-03-09T01:49:09.154711-08:00,1775.0,10.818651,10818.651 +16572,2025-03-09T01:49:19.965784-08:00,1782.0,10.811073,10811.073 +16573,2025-03-09T01:49:30.785389-08:00,1779.0,10.819605,10819.605 +16574,2025-03-09T01:49:41.593004-08:00,1783.0,10.807615,10807.615 +16575,2025-03-09T01:49:52.408804-08:00,1744.0,10.8158,10815.8 +16576,2025-03-09T01:50:03.232711-08:00,1699.0,10.823907,10823.907 +16577,2025-03-09T01:50:14.040714-08:00,1783.0,10.808003,10808.003 +16578,2025-03-09T01:50:24.858603-08:00,1728.0,10.817889,10817.889 +16579,2025-03-09T01:50:35.669705-08:00,1695.0,10.811102,10811.102 +16580,2025-03-09T01:50:46.488723-08:00,1779.0,10.819018,10819.018 +16581,2025-03-09T01:50:57.302718-08:00,1703.0,10.813995,10813.995 +16582,2025-03-09T01:51:08.123068-08:00,1738.0,10.82035,10820.35 +16583,2025-03-09T01:51:18.942702-08:00,1683.0,10.819634,10819.634 +16584,2025-03-09T01:51:29.751949-08:00,1719.0,10.809247,10809.247 +16585,2025-03-09T01:51:40.566963-08:00,1731.0,10.815014,10815.014 +16586,2025-03-09T01:51:51.392056-08:00,1730.0,10.825093,10825.093 +16587,2025-03-09T01:52:02.208079-08:00,1726.0,10.816023,10816.023 +16588,2025-03-09T01:52:13.015770-08:00,1732.0,10.807691,10807.691 +16589,2025-03-09T01:52:23.841309-08:00,1734.0,10.825539,10825.539 +16590,2025-03-09T01:52:34.651015-08:00,1695.0,10.809706,10809.706 +16591,2025-03-09T01:52:45.465790-08:00,1737.0,10.814775,10814.775 +16592,2025-03-09T01:52:56.274705-08:00,1730.0,10.808915,10808.915 +16593,2025-03-09T01:53:07.096705-08:00,1722.0,10.822,10822.0 +16594,2025-03-09T01:53:17.915702-08:00,1648.0,10.818997,10818.997 +16595,2025-03-09T01:53:28.726090-08:00,1731.0,10.810388,10810.388 +16596,2025-03-09T01:53:39.534876-08:00,1734.0,10.808786,10808.786 +16597,2025-03-09T01:53:50.347717-08:00,1683.0,10.812841,10812.841 +16598,2025-03-09T01:54:01.166754-08:00,1734.0,10.819037,10819.037 +16599,2025-03-09T01:54:11.982838-08:00,1737.0,10.816084,10816.084 +16600,2025-03-09T01:54:22.802714-08:00,1722.0,10.819876,10819.876 +16601,2025-03-09T01:54:33.621831-08:00,1712.0,10.819117,10819.117 +16602,2025-03-09T01:54:44.445199-08:00,1738.0,10.823368,10823.368 +16603,2025-03-09T01:54:55.254861-08:00,1681.0,10.809662,10809.662 +16604,2025-03-09T01:55:06.079711-08:00,1693.0,10.82485,10824.85 +16605,2025-03-09T01:55:16.892717-08:00,1731.0,10.813006,10813.006 +16606,2025-03-09T01:55:27.712926-08:00,1638.0,10.820209,10820.209 +16607,2025-03-09T01:55:38.531900-08:00,1635.0,10.818974,10818.974 +16608,2025-03-09T01:55:49.348706-08:00,1684.0,10.816806,10816.806 +16609,2025-03-09T01:56:00.168027-08:00,1717.0,10.819321,10819.321 +16610,2025-03-09T01:56:10.990101-08:00,1686.0,10.822074,10822.074 +16611,2025-03-09T01:56:21.804982-08:00,1734.0,10.814881,10814.881 +16612,2025-03-09T01:56:32.617931-08:00,1723.0,10.812949,10812.949 +16613,2025-03-09T01:56:43.434716-08:00,1687.0,10.816785,10816.785 +16614,2025-03-09T01:56:54.262718-08:00,1700.0,10.828002,10828.002 +16615,2025-03-09T01:57:05.075702-08:00,1724.0,10.812984,10812.984 +16616,2025-03-09T01:57:15.894615-08:00,1698.0,10.818913,10818.913 +16617,2025-03-09T01:57:26.702866-08:00,1732.0,10.808251,10808.251 +16618,2025-03-09T01:57:37.518721-08:00,1722.0,10.815855,10815.855 +16619,2025-03-09T01:57:48.339805-08:00,1729.0,10.821084,10821.084 +16620,2025-03-09T01:57:59.154627-08:00,1685.0,10.814822,10814.822 +16621,2025-03-09T01:58:09.968064-08:00,1675.0,10.813437,10813.437 +16622,2025-03-09T01:58:20.788899-08:00,1652.0,10.820835,10820.835 +16623,2025-03-09T01:58:31.604999-08:00,1728.0,10.8161,10816.1 +16624,2025-03-09T01:58:42.417152-08:00,1648.0,10.812153,10812.153 +16625,2025-03-09T01:58:53.235720-08:00,1709.0,10.818568,10818.568 +16626,2025-03-09T01:59:04.061941-08:00,1703.0,10.826221,10826.221 +16627,2025-03-09T01:59:14.866710-08:00,1675.0,10.804769,10804.769 +16628,2025-03-09T01:59:25.675825-08:00,1686.0,10.809115,10809.115 +16629,2025-03-09T01:59:36.493170-08:00,1695.0,10.817345,10817.345 +16630,2025-03-09T01:59:47.317723-08:00,1734.0,10.824553,10824.553 +16631,2025-03-09T01:59:58.132725-08:00,1663.0,10.815002,10815.002 +16632,2025-03-09T03:00:08.947076-07:00,1643.0,10.814351,10814.351 +16633,2025-03-09T03:00:19.756292-07:00,1713.0,10.809216,10809.216 +16634,2025-03-09T03:00:30.574965-07:00,1710.0,10.818673,10818.673 +16635,2025-03-09T03:00:41.393704-07:00,1694.0,10.818739,10818.739 +16636,2025-03-09T03:00:52.217015-07:00,1699.0,10.823311,10823.311 +16637,2025-03-09T03:01:03.023161-07:00,1733.0,10.806146,10806.146 +16638,2025-03-09T03:01:13.833723-07:00,1698.0,10.810562,10810.562 +16639,2025-03-09T03:01:24.648716-07:00,1729.0,10.814993,10814.993 +16640,2025-03-09T03:01:35.468705-07:00,1728.0,10.819989,10819.989 +16641,2025-03-09T03:01:46.283056-07:00,1738.0,10.814351,10814.351 +16642,2025-03-09T03:01:57.093068-07:00,1737.0,10.810012,10810.012 +16643,2025-03-09T03:02:07.908104-07:00,1664.0,10.815036,10815.036 +16644,2025-03-09T03:02:18.720837-07:00,1699.0,10.812733,10812.733 +16645,2025-03-09T03:02:29.524716-07:00,1679.0,10.803879,10803.879 +16646,2025-03-09T03:02:40.340882-07:00,1715.0,10.816166,10816.166 +16647,2025-03-09T03:02:51.161048-07:00,1697.0,10.820166,10820.166 +16648,2025-03-09T03:03:01.976707-07:00,1698.0,10.815659,10815.659 +16649,2025-03-09T03:03:12.791679-07:00,1691.0,10.814972,10814.972 +16650,2025-03-09T03:03:23.603950-07:00,1737.0,10.812271,10812.271 +16651,2025-03-09T03:03:34.419039-07:00,1717.0,10.815089,10815.089 +16652,2025-03-09T03:03:45.235904-07:00,1638.0,10.816865,10816.865 +16653,2025-03-09T03:03:56.053727-07:00,1713.0,10.817823,10817.823 +16654,2025-03-09T03:04:06.862723-07:00,1671.0,10.808996,10808.996 +16655,2025-03-09T03:04:17.683917-07:00,1735.0,10.821194,10821.194 +16656,2025-03-09T03:04:28.498006-07:00,1691.0,10.814089,10814.089 +16657,2025-03-09T03:04:39.308573-07:00,1720.0,10.810567,10810.567 +16658,2025-03-09T03:04:50.121963-07:00,1726.0,10.81339,10813.39 +16659,2025-03-09T03:05:00.930773-07:00,1735.0,10.80881,10808.81 +16660,2025-03-09T03:05:11.738709-07:00,1658.0,10.807936,10807.936 +16661,2025-03-09T03:05:22.558838-07:00,1738.0,10.820129,10820.129 +16662,2025-03-09T03:05:33.370086-07:00,1679.0,10.811248,10811.248 +16663,2025-03-09T03:05:44.218208-07:00,1641.0,10.848122,10848.122 +16664,2025-03-09T03:05:55.037427-07:00,1723.0,10.819219,10819.219 +16665,2025-03-09T03:06:05.858571-07:00,1731.0,10.821144,10821.144 +16666,2025-03-09T03:06:16.669714-07:00,1729.0,10.811143,10811.143 +16667,2025-03-09T03:06:27.491483-07:00,1722.0,10.821769,10821.769 +16668,2025-03-09T03:06:38.308059-07:00,1669.0,10.816576,10816.576 +16669,2025-03-09T03:06:49.129573-07:00,1657.0,10.821514,10821.514 +16670,2025-03-09T03:06:59.943448-07:00,1734.0,10.813875,10813.875 +16671,2025-03-09T03:07:10.764387-07:00,1697.0,10.820939,10820.939 +16672,2025-03-09T03:07:21.572774-07:00,1723.0,10.808387,10808.387 +16673,2025-03-09T03:07:32.386661-07:00,1711.0,10.813887,10813.887 +16674,2025-03-09T03:07:43.205220-07:00,1712.0,10.818559,10818.559 +16675,2025-03-09T03:07:54.018426-07:00,1723.0,10.813206,10813.206 +16676,2025-03-09T03:08:04.825522-07:00,1715.0,10.807096,10807.096 +16677,2025-03-09T03:08:15.641400-07:00,1653.0,10.815878,10815.878 +16678,2025-03-09T03:08:26.465019-07:00,1731.0,10.823619,10823.619 +16679,2025-03-09T03:08:37.274235-07:00,1659.0,10.809216,10809.216 +16680,2025-03-09T03:08:48.084301-07:00,1729.0,10.810066,10810.066 +16681,2025-03-09T03:08:58.915339-07:00,1685.0,10.831038,10831.038 +16682,2025-03-09T03:09:09.722955-07:00,1738.0,10.807616,10807.616 +16683,2025-03-09T03:09:20.535240-07:00,1722.0,10.812285,10812.285 +16684,2025-03-09T03:09:31.349632-07:00,1651.0,10.814392,10814.392 +16685,2025-03-09T03:09:42.168874-07:00,1734.0,10.819242,10819.242 +16686,2025-03-09T03:09:52.988652-07:00,1648.0,10.819778,10819.778 +16687,2025-03-09T03:10:03.803385-07:00,1693.0,10.814733,10814.733 +16688,2025-03-09T03:10:14.619290-07:00,1731.0,10.815905,10815.905 +16689,2025-03-09T03:10:25.447658-07:00,1693.0,10.828368,10828.368 +16690,2025-03-09T03:10:36.260368-07:00,1722.0,10.81271,10812.71 +16691,2025-03-09T03:10:47.079513-07:00,1711.0,10.819145,10819.145 +16692,2025-03-09T03:10:57.900850-07:00,1654.0,10.821337,10821.337 +16693,2025-03-09T03:11:08.712450-07:00,1739.0,10.8116,10811.6 +16694,2025-03-09T03:11:19.539371-07:00,1712.0,10.826921,10826.921 +16695,2025-03-09T03:11:30.351337-07:00,1663.0,10.811966,10811.966 +16696,2025-03-09T03:11:41.176238-07:00,1682.0,10.824901,10824.901 +16697,2025-03-09T03:11:51.999312-07:00,1730.0,10.823074,10823.074 +16698,2025-03-09T03:12:02.818629-07:00,1681.0,10.819317,10819.317 +16699,2025-03-09T03:12:13.636231-07:00,1699.0,10.817602,10817.602 +16700,2025-03-09T03:12:24.452217-07:00,1664.0,10.815986,10815.986 +16701,2025-03-09T03:12:35.276484-07:00,1699.0,10.824267,10824.267 +16702,2025-03-09T03:12:46.098235-07:00,1725.0,10.821751,10821.751 +16703,2025-03-09T03:12:56.913336-07:00,1730.0,10.815101,10815.101 +16704,2025-03-09T03:13:07.732232-07:00,1680.0,10.818896,10818.896 +16705,2025-03-09T03:13:18.559363-07:00,1729.0,10.827131,10827.131 +16706,2025-03-09T03:13:29.377236-07:00,1699.0,10.817873,10817.873 +16707,2025-03-09T03:13:40.193854-07:00,1696.0,10.816618,10816.618 +16708,2025-03-09T03:13:51.009525-07:00,1731.0,10.815671,10815.671 +16709,2025-03-09T03:14:01.839269-07:00,1680.0,10.829744,10829.744 +16710,2025-03-09T03:14:12.665462-07:00,1717.0,10.826193,10826.193 +16711,2025-03-09T03:14:23.486232-07:00,1733.0,10.82077,10820.77 +16712,2025-03-09T03:14:34.306529-07:00,1731.0,10.820297,10820.297 +16713,2025-03-09T03:14:45.122079-07:00,1734.0,10.81555,10815.55 +16714,2025-03-09T03:14:55.940471-07:00,1731.0,10.818392,10818.392 +16715,2025-03-09T03:15:06.763232-07:00,1713.0,10.822761,10822.761 +16716,2025-03-09T03:15:17.588161-07:00,1724.0,10.824929,10824.929 +16717,2025-03-09T03:15:28.397282-07:00,1739.0,10.809121,10809.121 +16718,2025-03-09T03:15:39.211568-07:00,1733.0,10.814286,10814.286 +16719,2025-03-09T03:15:50.032502-07:00,1730.0,10.820934,10820.934 +16720,2025-03-09T03:16:00.850806-07:00,1735.0,10.818304,10818.304 +16721,2025-03-09T03:16:11.678224-07:00,1731.0,10.827418,10827.418 +16722,2025-03-09T03:16:22.487451-07:00,1655.0,10.809227,10809.227 +16723,2025-03-09T03:16:33.303478-07:00,1655.0,10.816027,10816.027 +16724,2025-03-09T03:16:44.122540-07:00,1734.0,10.819062,10819.062 +16725,2025-03-09T03:16:54.937236-07:00,1696.0,10.814696,10814.696 +16726,2025-03-09T03:17:05.753302-07:00,1649.0,10.816066,10816.066 +16727,2025-03-09T03:17:16.566222-07:00,1681.0,10.81292,10812.92 +16728,2025-03-09T03:17:27.384540-07:00,1660.0,10.818318,10818.318 +16729,2025-03-09T03:17:38.201340-07:00,1733.0,10.8168,10816.8 +16730,2025-03-09T03:17:49.020215-07:00,1733.0,10.818875,10818.875 +16731,2025-03-09T03:17:59.841585-07:00,1734.0,10.82137,10821.37 +16732,2025-03-09T03:18:10.651523-07:00,1691.0,10.809938,10809.938 +16733,2025-03-09T03:18:21.466226-07:00,1735.0,10.814703,10814.703 +16734,2025-03-09T03:18:32.275485-07:00,1727.0,10.809259,10809.259 +16735,2025-03-09T03:18:43.093459-07:00,1741.0,10.817974,10817.974 +16736,2025-03-09T03:18:53.897428-07:00,1680.0,10.803969,10803.969 +16737,2025-03-09T03:19:04.710559-07:00,1739.0,10.813131,10813.131 +16738,2025-03-09T03:19:15.526365-07:00,1650.0,10.815806,10815.806 +16739,2025-03-09T03:19:26.336286-07:00,1699.0,10.809921,10809.921 +16740,2025-03-09T03:19:37.147234-07:00,1712.0,10.810948,10810.948 +16741,2025-03-09T03:19:47.965445-07:00,1725.0,10.818211,10818.211 +16742,2025-03-09T03:19:58.785643-07:00,1679.0,10.820198,10820.198 +16743,2025-03-09T03:20:09.599474-07:00,1648.0,10.813831,10813.831 +16744,2025-03-09T03:20:20.414728-07:00,1683.0,10.815254,10815.254 +16745,2025-03-09T03:20:31.224374-07:00,1712.0,10.809646,10809.646 +16746,2025-03-09T03:20:42.044550-07:00,1729.0,10.820176,10820.176 +16747,2025-03-09T03:20:52.849135-07:00,1685.0,10.804585,10804.585 +16748,2025-03-09T03:21:03.657236-07:00,1717.0,10.808101,10808.101 +16749,2025-03-09T03:21:14.475414-07:00,1680.0,10.818178,10818.178 +16750,2025-03-09T03:21:25.286480-07:00,1733.0,10.811066,10811.066 +16751,2025-03-09T03:21:36.108861-07:00,1707.0,10.822381,10822.381 +16752,2025-03-09T03:21:46.922644-07:00,1687.0,10.813783,10813.783 +16753,2025-03-09T03:21:57.741235-07:00,1739.0,10.818591,10818.591 +16754,2025-03-09T03:22:08.562273-07:00,1731.0,10.821038,10821.038 +16755,2025-03-09T03:22:19.376181-07:00,1728.0,10.813908,10813.908 +16756,2025-03-09T03:22:30.191237-07:00,1732.0,10.815056,10815.056 +16757,2025-03-09T03:22:41.000391-07:00,1728.0,10.809154,10809.154 +16758,2025-03-09T03:22:51.818299-07:00,1731.0,10.817908,10817.908 +16759,2025-03-09T03:23:02.629878-07:00,1727.0,10.811579,10811.579 +16760,2025-03-09T03:23:13.449577-07:00,1683.0,10.819699,10819.699 +16761,2025-03-09T03:23:24.260486-07:00,1719.0,10.810909,10810.909 +16762,2025-03-09T03:23:35.078241-07:00,1707.0,10.817755,10817.755 +16763,2025-03-09T03:23:45.899441-07:00,1679.0,10.8212,10821.2 +16764,2025-03-09T03:23:56.711528-07:00,1680.0,10.812087,10812.087 +16765,2025-03-09T03:24:07.534235-07:00,1658.0,10.822707,10822.707 +16766,2025-03-09T03:24:18.348219-07:00,1681.0,10.813984,10813.984 +16767,2025-03-09T03:24:29.158335-07:00,1649.0,10.810116,10810.116 +16768,2025-03-09T03:24:39.974194-07:00,1712.0,10.815859,10815.859 +16769,2025-03-09T03:24:50.793707-07:00,1712.0,10.819513,10819.513 +16770,2025-03-09T03:25:01.602550-07:00,1731.0,10.808843,10808.843 +16771,2025-03-09T03:25:12.419451-07:00,1666.0,10.816901,10816.901 +16772,2025-03-09T03:25:23.236540-07:00,1723.0,10.817089,10817.089 +16773,2025-03-09T03:25:34.058344-07:00,1647.0,10.821804,10821.804 +16774,2025-03-09T03:25:44.877237-07:00,1647.0,10.818893,10818.893 +16775,2025-03-09T03:25:55.692818-07:00,1729.0,10.815581,10815.581 +16776,2025-03-09T03:26:06.519237-07:00,1667.0,10.826419,10826.419 +16777,2025-03-09T03:26:17.341291-07:00,1679.0,10.822054,10822.054 +16778,2025-03-09T03:26:28.159569-07:00,1729.0,10.818278,10818.278 +16779,2025-03-09T03:26:38.980242-07:00,1694.0,10.820673,10820.673 +16780,2025-03-09T03:26:49.801302-07:00,1679.0,10.82106,10821.06 +16781,2025-03-09T03:27:00.620784-07:00,1729.0,10.819482,10819.482 +16782,2025-03-09T03:27:11.439828-07:00,1723.0,10.819044,10819.044 +16783,2025-03-09T03:27:22.252356-07:00,1691.0,10.812528,10812.528 +16784,2025-03-09T03:27:33.069268-07:00,1680.0,10.816912,10816.912 +16785,2025-03-09T03:27:43.874220-07:00,1698.0,10.804952,10804.952 +16786,2025-03-09T03:27:54.695298-07:00,1691.0,10.821078,10821.078 +16787,2025-03-09T03:28:05.508250-07:00,1722.0,10.812952,10812.952 +16788,2025-03-09T03:28:16.329238-07:00,1730.0,10.820988,10820.988 +16789,2025-03-09T03:28:27.144741-07:00,1729.0,10.815503,10815.503 +16790,2025-03-09T03:28:37.969599-07:00,1729.0,10.824858,10824.858 +16791,2025-03-09T03:28:48.784227-07:00,1699.0,10.814628,10814.628 +16792,2025-03-09T03:28:59.599444-07:00,1715.0,10.815217,10815.217 +16793,2025-03-09T03:29:10.418847-07:00,1653.0,10.819403,10819.403 +16794,2025-03-09T03:29:21.238477-07:00,1701.0,10.81963,10819.63 +16795,2025-03-09T03:29:32.065825-07:00,1712.0,10.827348,10827.348 +16796,2025-03-09T03:29:42.882344-07:00,1715.0,10.816519,10816.519 +16797,2025-03-09T03:29:53.688285-07:00,1714.0,10.805941,10805.941 +16798,2025-03-09T03:30:04.510494-07:00,1711.0,10.822209,10822.209 +16799,2025-03-09T03:30:15.331518-07:00,1686.0,10.821024,10821.024 +16800,2025-03-09T03:30:26.150234-07:00,1707.0,10.818716,10818.716 +16801,2025-03-09T03:30:36.966234-07:00,1645.0,10.816,10816.0 +16802,2025-03-09T03:30:47.772225-07:00,1719.0,10.805991,10805.991 +16803,2025-03-09T03:30:58.592888-07:00,1710.0,10.820663,10820.663 +16804,2025-03-09T03:31:09.409861-07:00,1733.0,10.816973,10816.973 +16805,2025-03-09T03:31:20.225101-07:00,1662.0,10.81524,10815.24 +16806,2025-03-09T03:31:31.037635-07:00,1651.0,10.812534,10812.534 +16807,2025-03-09T03:31:41.863876-07:00,1733.0,10.826241,10826.241 +16808,2025-03-09T03:31:52.675232-07:00,1711.0,10.811356,10811.356 +16809,2025-03-09T03:32:03.488278-07:00,1696.0,10.813046,10813.046 +16810,2025-03-09T03:32:14.303238-07:00,1727.0,10.81496,10814.96 +16811,2025-03-09T03:32:25.127550-07:00,1730.0,10.824312,10824.312 +16812,2025-03-09T03:32:35.947481-07:00,1711.0,10.819931,10819.931 +16813,2025-03-09T03:32:46.757436-07:00,1691.0,10.809955,10809.955 +16814,2025-03-09T03:32:57.578102-07:00,1733.0,10.820666,10820.666 +16815,2025-03-09T03:33:08.393707-07:00,1684.0,10.815605,10815.605 +16816,2025-03-09T03:33:19.196774-07:00,1703.0,10.803067,10803.067 +16817,2025-03-09T03:33:30.016230-07:00,1637.0,10.819456,10819.456 +16818,2025-03-09T03:33:40.841475-07:00,1671.0,10.825245,10825.245 +16819,2025-03-09T03:33:51.656559-07:00,1691.0,10.815084,10815.084 +16820,2025-03-09T03:34:02.477229-07:00,1686.0,10.82067,10820.67 +16821,2025-03-09T03:34:13.292224-07:00,1655.0,10.814995,10814.995 +16822,2025-03-09T03:34:24.109295-07:00,1729.0,10.817071,10817.071 +16823,2025-03-09T03:34:34.921489-07:00,1724.0,10.812194,10812.194 +16824,2025-03-09T03:34:45.742236-07:00,1664.0,10.820747,10820.747 +16825,2025-03-09T03:34:56.562345-07:00,1712.0,10.820109,10820.109 +16826,2025-03-09T03:35:07.384198-07:00,1729.0,10.821853,10821.853 +16827,2025-03-09T03:35:18.198230-07:00,1683.0,10.814032,10814.032 +16828,2025-03-09T03:35:29.017226-07:00,1681.0,10.818996,10818.996 +16829,2025-03-09T03:35:39.836337-07:00,1714.0,10.819111,10819.111 +16830,2025-03-09T03:35:50.657229-07:00,1721.0,10.820892,10820.892 +16831,2025-03-09T03:36:01.467510-07:00,1734.0,10.810281,10810.281 +16832,2025-03-09T03:36:12.291483-07:00,1726.0,10.823973,10823.973 +16833,2025-03-09T03:36:23.103514-07:00,1638.0,10.812031,10812.031 +16834,2025-03-09T03:36:33.917569-07:00,1721.0,10.814055,10814.055 +16835,2025-03-09T03:36:44.724360-07:00,1725.0,10.806791,10806.791 +16836,2025-03-09T03:36:55.542230-07:00,1684.0,10.81787,10817.87 +16837,2025-03-09T03:37:06.365703-07:00,1712.0,10.823473,10823.473 +16838,2025-03-09T03:37:17.179685-07:00,1694.0,10.813982,10813.982 +16839,2025-03-09T03:37:27.997480-07:00,1681.0,10.817795,10817.795 +16840,2025-03-09T03:37:38.823311-07:00,1730.0,10.825831,10825.831 +16841,2025-03-09T03:37:49.635548-07:00,1683.0,10.812237,10812.237 +16842,2025-03-09T03:38:00.446795-07:00,1715.0,10.811247,10811.247 +16843,2025-03-09T03:38:11.267463-07:00,1685.0,10.820668,10820.668 +16844,2025-03-09T03:38:22.075280-07:00,1705.0,10.807817,10807.817 +16845,2025-03-09T03:38:32.890232-07:00,1706.0,10.814952,10814.952 +16846,2025-03-09T03:38:43.704954-07:00,1690.0,10.814722,10814.722 +16847,2025-03-09T03:38:54.525226-07:00,1715.0,10.820272,10820.272 +16848,2025-03-09T03:39:05.341226-07:00,1659.0,10.816,10816.0 +16849,2025-03-09T03:39:16.153721-07:00,1648.0,10.812495,10812.495 +16850,2025-03-09T03:39:26.969725-07:00,1661.0,10.816004,10816.004 +16851,2025-03-09T03:39:37.778283-07:00,1731.0,10.808558,10808.558 +16852,2025-03-09T03:39:48.587743-07:00,1696.0,10.80946,10809.46 +16853,2025-03-09T03:39:59.392439-07:00,1714.0,10.804696,10804.696 +16854,2025-03-09T03:40:10.209467-07:00,1723.0,10.817028,10817.028 +16855,2025-03-09T03:40:21.018827-07:00,1734.0,10.80936,10809.36 +16856,2025-03-09T03:40:31.829405-07:00,1685.0,10.810578,10810.578 +16857,2025-03-09T03:40:42.655437-07:00,1731.0,10.826032,10826.032 +16858,2025-03-09T03:40:53.460427-07:00,1735.0,10.80499,10804.99 +16859,2025-03-09T03:41:04.280314-07:00,1714.0,10.819887,10819.887 +16860,2025-03-09T03:41:15.092229-07:00,1711.0,10.811915,10811.915 +16861,2025-03-09T03:41:25.906521-07:00,1648.0,10.814292,10814.292 +16862,2025-03-09T03:41:36.721547-07:00,1645.0,10.815026,10815.026 +16863,2025-03-09T03:41:47.530450-07:00,1725.0,10.808903,10808.903 +16864,2025-03-09T03:41:58.345786-07:00,1699.0,10.815336,10815.336 +16865,2025-03-09T03:42:09.154086-07:00,1715.0,10.8083,10808.3 +16866,2025-03-09T03:42:19.964474-07:00,1671.0,10.810388,10810.388 +16867,2025-03-09T03:42:30.772540-07:00,1650.0,10.808066,10808.066 +16868,2025-03-09T03:42:41.587289-07:00,1734.0,10.814749,10814.749 +16869,2025-03-09T03:42:52.397306-07:00,1680.0,10.810017,10810.017 +16870,2025-03-09T03:43:03.215235-07:00,1690.0,10.817929,10817.929 +16871,2025-03-09T03:43:14.031659-07:00,1716.0,10.816424,10816.424 +16872,2025-03-09T03:43:24.845751-07:00,1648.0,10.814092,10814.092 +16873,2025-03-09T03:43:35.656218-07:00,1696.0,10.810467,10810.467 +16874,2025-03-09T03:43:46.470544-07:00,1729.0,10.814326,10814.326 +16875,2025-03-09T03:43:57.273269-07:00,1699.0,10.802725,10802.725 +16876,2025-03-09T03:44:08.088542-07:00,1667.0,10.815273,10815.273 +16877,2025-03-09T03:44:18.890211-07:00,1655.0,10.801669,10801.669 +16878,2025-03-09T03:44:29.711559-07:00,1733.0,10.821348,10821.348 +16879,2025-03-09T03:44:40.514946-07:00,1635.0,10.803387,10803.387 +16880,2025-03-09T03:44:51.329282-07:00,1730.0,10.814336,10814.336 +16881,2025-03-09T03:45:02.143569-07:00,1731.0,10.814287,10814.287 +16882,2025-03-09T03:45:12.951612-07:00,1694.0,10.808043,10808.043 +16883,2025-03-09T03:45:23.765502-07:00,1712.0,10.81389,10813.89 +16884,2025-03-09T03:45:34.581098-07:00,1721.0,10.815596,10815.596 +16885,2025-03-09T03:45:45.397225-07:00,1646.0,10.816127,10816.127 +16886,2025-03-09T03:45:56.205279-07:00,1728.0,10.808054,10808.054 +16887,2025-03-09T03:46:07.019487-07:00,1664.0,10.814208,10814.208 +16888,2025-03-09T03:46:17.840277-07:00,1689.0,10.82079,10820.79 +16889,2025-03-09T03:46:28.656709-07:00,1712.0,10.816432,10816.432 +16890,2025-03-09T03:46:39.465294-07:00,1731.0,10.808585,10808.585 +16891,2025-03-09T03:46:50.273302-07:00,1649.0,10.808008,10808.008 +16892,2025-03-09T03:47:01.094512-07:00,1699.0,10.82121,10821.21 +16893,2025-03-09T03:47:11.901220-07:00,1712.0,10.806708,10806.708 +16894,2025-03-09T03:47:22.722819-07:00,1683.0,10.821599,10821.599 +16895,2025-03-09T03:47:33.524824-07:00,1731.0,10.802005,10802.005 +16896,2025-03-09T03:47:44.335510-07:00,1725.0,10.810686,10810.686 +16897,2025-03-09T03:47:55.154230-07:00,1683.0,10.81872,10818.72 +16898,2025-03-09T03:48:05.961278-07:00,1686.0,10.807048,10807.048 +16899,2025-03-09T03:48:16.765281-07:00,1640.0,10.804003,10804.003 +16900,2025-03-09T03:48:27.582255-07:00,1685.0,10.816974,10816.974 +16901,2025-03-09T03:48:38.397581-07:00,1731.0,10.815326,10815.326 +16902,2025-03-09T03:48:49.206344-07:00,1664.0,10.808763,10808.763 +16903,2025-03-09T03:49:00.006818-07:00,1679.0,10.800474,10800.474 +16904,2025-03-09T03:49:10.820308-07:00,1711.0,10.81349,10813.49 +16905,2025-03-09T03:49:21.630639-07:00,1713.0,10.810331,10810.331 +16906,2025-03-09T03:49:32.446594-07:00,1693.0,10.815955,10815.955 +16907,2025-03-09T03:49:43.251218-07:00,1730.0,10.804624,10804.624 +16908,2025-03-09T03:49:54.065506-07:00,1728.0,10.814288,10814.288 +16909,2025-03-09T03:50:04.884239-07:00,1701.0,10.818733,10818.733 +16910,2025-03-09T03:50:15.701225-07:00,1669.0,10.816986,10816.986 +16911,2025-03-09T03:50:26.514222-07:00,1735.0,10.812997,10812.997 +16912,2025-03-09T03:50:37.329955-07:00,1724.0,10.815733,10815.733 +16913,2025-03-09T03:50:48.133671-07:00,1683.0,10.803716,10803.716 +16914,2025-03-09T03:50:58.948223-07:00,1677.0,10.814552,10814.552 +16915,2025-03-09T03:51:09.750670-07:00,1654.0,10.802447,10802.447 +16916,2025-03-09T03:51:20.560336-07:00,1731.0,10.809666,10809.666 +16917,2025-03-09T03:51:31.376219-07:00,1691.0,10.815883,10815.883 +16918,2025-03-09T03:51:42.188619-07:00,1735.0,10.8124,10812.4 +16919,2025-03-09T03:51:53.005034-07:00,1646.0,10.816415,10816.415 +16920,2025-03-09T03:52:03.806412-07:00,1728.0,10.801378,10801.378 +16921,2025-03-09T03:52:14.612559-07:00,1677.0,10.806147,10806.147 +16922,2025-03-09T03:52:25.424958-07:00,1707.0,10.812399,10812.399 +16923,2025-03-09T03:52:36.235469-07:00,1648.0,10.810511,10810.511 +16924,2025-03-09T03:52:47.038579-07:00,1730.0,10.80311,10803.11 +16925,2025-03-09T03:52:57.850271-07:00,1735.0,10.811692,10811.692 +16926,2025-03-09T03:53:08.667236-07:00,1732.0,10.816965,10816.965 +16927,2025-03-09T03:53:19.482014-07:00,1648.0,10.814778,10814.778 +16928,2025-03-09T03:53:30.286786-07:00,1692.0,10.804772,10804.772 +16929,2025-03-09T03:53:41.100005-07:00,1697.0,10.813219,10813.219 +16930,2025-03-09T03:53:51.907226-07:00,1733.0,10.807221,10807.221 +16931,2025-03-09T03:54:02.722522-07:00,1714.0,10.815296,10815.296 +16932,2025-03-09T03:54:13.532358-07:00,1730.0,10.809836,10809.836 +16933,2025-03-09T03:54:24.330227-07:00,1710.0,10.797869,10797.869 +16934,2025-03-09T03:54:35.143231-07:00,1711.0,10.813004,10813.004 +16935,2025-03-09T03:54:45.951434-07:00,1666.0,10.808203,10808.203 +16936,2025-03-09T03:54:56.761120-07:00,1653.0,10.809686,10809.686 +16937,2025-03-09T03:55:07.568811-07:00,1694.0,10.807691,10807.691 +16938,2025-03-09T03:55:18.375137-07:00,1727.0,10.806326,10806.326 +16939,2025-03-09T03:55:29.187230-07:00,1691.0,10.812093,10812.093 +16940,2025-03-09T03:55:39.997265-07:00,1712.0,10.810035,10810.035 +16941,2025-03-09T03:55:50.817311-07:00,1687.0,10.820046,10820.046 +16942,2025-03-09T03:56:01.634583-07:00,1712.0,10.817272,10817.272 +16943,2025-03-09T03:56:12.435554-07:00,1721.0,10.800971,10800.971 +16944,2025-03-09T03:56:23.251293-07:00,1659.0,10.815739,10815.739 +16945,2025-03-09T03:56:34.060482-07:00,1711.0,10.809189,10809.189 +16946,2025-03-09T03:56:44.881220-07:00,1735.0,10.820738,10820.738 +16947,2025-03-09T03:56:55.687215-07:00,1724.0,10.805995,10805.995 +16948,2025-03-09T03:57:06.497450-07:00,1729.0,10.810235,10810.235 +16949,2025-03-09T03:57:17.318243-07:00,1648.0,10.820793,10820.793 +16950,2025-03-09T03:57:28.121569-07:00,1725.0,10.803326,10803.326 +16951,2025-03-09T03:57:38.942213-07:00,1649.0,10.820644,10820.644 +16952,2025-03-09T03:57:49.746262-07:00,1732.0,10.804049,10804.049 +16953,2025-03-09T03:58:00.555228-07:00,1701.0,10.808966,10808.966 +16954,2025-03-09T03:58:11.357495-07:00,1690.0,10.802267,10802.267 +16955,2025-03-09T03:58:22.161214-07:00,1673.0,10.803719,10803.719 +16956,2025-03-09T03:58:32.969783-07:00,1686.0,10.808569,10808.569 +16957,2025-03-09T03:58:43.777457-07:00,1721.0,10.807674,10807.674 +16958,2025-03-09T03:58:54.587044-07:00,1695.0,10.809587,10809.587 +16959,2025-03-09T03:59:05.402590-07:00,1729.0,10.815546,10815.546 +16960,2025-03-09T03:59:16.208366-07:00,1718.0,10.805776,10805.776 +16961,2025-03-09T03:59:27.016234-07:00,1648.0,10.807868,10807.868 +16962,2025-03-09T03:59:37.829449-07:00,1732.0,10.813215,10813.215 +16963,2025-03-09T03:59:48.636220-07:00,1727.0,10.806771,10806.771 +16964,2025-03-09T03:59:59.453368-07:00,1734.0,10.817148,10817.148 +16965,2025-03-09T04:00:10.267496-07:00,1725.0,10.814128,10814.128 +16966,2025-03-09T04:00:21.076527-07:00,1737.0,10.809031,10809.031 +16967,2025-03-09T04:00:31.889650-07:00,1689.0,10.813123,10813.123 +16968,2025-03-09T04:00:42.691569-07:00,1729.0,10.801919,10801.919 +16969,2025-03-09T04:00:53.509233-07:00,1738.0,10.817664,10817.664 +16970,2025-03-09T04:01:04.323413-07:00,1738.0,10.81418,10814.18 +16971,2025-03-09T04:01:15.142642-07:00,1694.0,10.819229,10819.229 +16972,2025-03-09T04:01:25.952239-07:00,1677.0,10.809597,10809.597 +16973,2025-03-09T04:01:36.758183-07:00,1701.0,10.805944,10805.944 +16974,2025-03-09T04:01:47.569219-07:00,1648.0,10.811036,10811.036 +16975,2025-03-09T04:01:58.373347-07:00,1729.0,10.804128,10804.128 +16976,2025-03-09T04:02:09.183213-07:00,1687.0,10.809866,10809.866 +16977,2025-03-09T04:02:19.992474-07:00,1702.0,10.809261,10809.261 +16978,2025-03-09T04:02:30.807236-07:00,1645.0,10.814762,10814.762 +16979,2025-03-09T04:02:41.617522-07:00,1684.0,10.810286,10810.286 +16980,2025-03-09T04:02:52.430285-07:00,1735.0,10.812763,10812.763 +16981,2025-03-09T04:03:03.244546-07:00,1738.0,10.814261,10814.261 +16982,2025-03-09T04:03:14.057233-07:00,1655.0,10.812687,10812.687 +16983,2025-03-09T04:03:24.872583-07:00,1730.0,10.81535,10815.35 +16984,2025-03-09T04:03:35.688418-07:00,1664.0,10.815835,10815.835 +16985,2025-03-09T04:03:46.498302-07:00,1683.0,10.809884,10809.884 +16986,2025-03-09T04:03:57.317550-07:00,1727.0,10.819248,10819.248 +16987,2025-03-09T04:04:08.133261-07:00,1728.0,10.815711,10815.711 +16988,2025-03-09T04:04:18.948973-07:00,1738.0,10.815712,10815.712 +16989,2025-03-09T04:04:29.761238-07:00,1691.0,10.812265,10812.265 +16990,2025-03-09T04:04:40.561297-07:00,1731.0,10.800059,10800.059 +16991,2025-03-09T04:04:51.371358-07:00,1735.0,10.810061,10810.061 +16992,2025-03-09T04:05:02.192414-07:00,1728.0,10.821056,10821.056 +16993,2025-03-09T04:05:12.997469-07:00,1723.0,10.805055,10805.055 +16994,2025-03-09T04:05:23.806512-07:00,1649.0,10.809043,10809.043 +16995,2025-03-09T04:05:34.627984-07:00,1675.0,10.821472,10821.472 +16996,2025-03-09T04:05:45.471889-07:00,1725.0,10.843905,10843.905 +16997,2025-03-09T04:05:56.279026-07:00,1733.0,10.807137,10807.137 +16998,2025-03-09T04:06:07.089836-07:00,1735.0,10.81081,10810.81 +16999,2025-03-09T04:06:17.908067-07:00,1665.0,10.818231,10818.231 +17000,2025-03-09T04:06:28.719424-07:00,1684.0,10.811357,10811.357 +17001,2025-03-09T04:06:39.533883-07:00,1731.0,10.814459,10814.459 +17002,2025-03-09T04:06:50.343842-07:00,1712.0,10.809959,10809.959 +17003,2025-03-09T04:07:01.158835-07:00,1722.0,10.814993,10814.993 +17004,2025-03-09T04:07:11.976880-07:00,1731.0,10.818045,10818.045 +17005,2025-03-09T04:07:22.788366-07:00,1687.0,10.811486,10811.486 +17006,2025-03-09T04:07:33.603078-07:00,1637.0,10.814712,10814.712 +17007,2025-03-09T04:07:44.414833-07:00,1680.0,10.811755,10811.755 +17008,2025-03-09T04:07:55.218842-07:00,1712.0,10.804009,10804.009 +17009,2025-03-09T04:08:06.039824-07:00,1669.0,10.820982,10820.982 +17010,2025-03-09T04:08:16.849301-07:00,1683.0,10.809477,10809.477 +17011,2025-03-09T04:08:27.659284-07:00,1663.0,10.809983,10809.983 +17012,2025-03-09T04:08:38.473878-07:00,1734.0,10.814594,10814.594 +17013,2025-03-09T04:08:49.292458-07:00,1738.0,10.81858,10818.58 +17014,2025-03-09T04:09:00.100833-07:00,1730.0,10.808375,10808.375 +17015,2025-03-09T04:09:10.918835-07:00,1729.0,10.818002,10818.002 +17016,2025-03-09T04:09:21.731132-07:00,1715.0,10.812297,10812.297 +17017,2025-03-09T04:09:32.539261-07:00,1735.0,10.808129,10808.129 +17018,2025-03-09T04:09:43.348084-07:00,1699.0,10.808823,10808.823 +17019,2025-03-09T04:09:54.154035-07:00,1728.0,10.805951,10805.951 +17020,2025-03-09T04:10:04.966886-07:00,1737.0,10.812851,10812.851 +17021,2025-03-09T04:10:15.772844-07:00,1687.0,10.805958,10805.958 +17022,2025-03-09T04:10:26.591823-07:00,1712.0,10.818979,10818.979 +17023,2025-03-09T04:10:37.393006-07:00,1694.0,10.801183,10801.183 +17024,2025-03-09T04:10:48.214164-07:00,1689.0,10.821158,10821.158 +17025,2025-03-09T04:10:59.022840-07:00,1684.0,10.808676,10808.676 +17026,2025-03-09T04:11:09.831830-07:00,1683.0,10.80899,10808.99 +17027,2025-03-09T04:11:20.647833-07:00,1693.0,10.816003,10816.003 +17028,2025-03-09T04:11:31.450828-07:00,1733.0,10.802995,10802.995 +17029,2025-03-09T04:11:42.271813-07:00,1730.0,10.820985,10820.985 +17030,2025-03-09T04:11:53.080157-07:00,1685.0,10.808344,10808.344 +17031,2025-03-09T04:12:03.892103-07:00,1703.0,10.811946,10811.946 +17032,2025-03-09T04:12:14.692121-07:00,1687.0,10.800018,10800.018 +17033,2025-03-09T04:12:25.501385-07:00,1735.0,10.809264,10809.264 +17034,2025-03-09T04:12:36.314044-07:00,1696.0,10.812659,10812.659 +17035,2025-03-09T04:12:47.129835-07:00,1717.0,10.815791,10815.791 +17036,2025-03-09T04:12:57.935841-07:00,1677.0,10.806006,10806.006 +17037,2025-03-09T04:13:08.759001-07:00,1712.0,10.82316,10823.16 +17038,2025-03-09T04:13:19.566200-07:00,1699.0,10.807199,10807.199 +17039,2025-03-09T04:13:30.382827-07:00,1735.0,10.816627,10816.627 +17040,2025-03-09T04:13:41.200855-07:00,1663.0,10.818028,10818.028 +17041,2025-03-09T04:13:52.012290-07:00,1709.0,10.811435,10811.435 +17042,2025-03-09T04:14:02.816853-07:00,1733.0,10.804563,10804.563 +17043,2025-03-09T04:14:13.625355-07:00,1724.0,10.808502,10808.502 +17044,2025-03-09T04:14:24.435840-07:00,1651.0,10.810485,10810.485 +17045,2025-03-09T04:14:35.254283-07:00,1695.0,10.818443,10818.443 +17046,2025-03-09T04:14:46.067835-07:00,1738.0,10.813552,10813.552 +17047,2025-03-09T04:14:56.873139-07:00,1681.0,10.805304,10805.304 +17048,2025-03-09T04:15:07.687044-07:00,1694.0,10.813905,10813.905 +17049,2025-03-09T04:15:18.501100-07:00,1727.0,10.814056,10814.056 +17050,2025-03-09T04:15:29.310961-07:00,1639.0,10.809861,10809.861 +17051,2025-03-09T04:15:40.112503-07:00,1712.0,10.801542,10801.542 +17052,2025-03-09T04:15:50.929694-07:00,1695.0,10.817191,10817.191 +17053,2025-03-09T04:16:01.738054-07:00,1729.0,10.80836,10808.36 +17054,2025-03-09T04:16:12.546833-07:00,1732.0,10.808779,10808.779 +17055,2025-03-09T04:16:23.360731-07:00,1730.0,10.813898,10813.898 +17056,2025-03-09T04:16:34.174977-07:00,1697.0,10.814246,10814.246 +17057,2025-03-09T04:16:44.979146-07:00,1737.0,10.804169,10804.169 +17058,2025-03-09T04:16:55.786840-07:00,1734.0,10.807694,10807.694 +17059,2025-03-09T04:17:06.594832-07:00,1700.0,10.807992,10807.992 +17060,2025-03-09T04:17:17.412133-07:00,1706.0,10.817301,10817.301 +17061,2025-03-09T04:17:28.221936-07:00,1729.0,10.809803,10809.803 +17062,2025-03-09T04:17:39.036883-07:00,1683.0,10.814947,10814.947 +17063,2025-03-09T04:17:49.843120-07:00,1679.0,10.806237,10806.237 +17064,2025-03-09T04:18:00.646133-07:00,1696.0,10.803013,10803.013 +17065,2025-03-09T04:18:11.462081-07:00,1731.0,10.815948,10815.948 +17066,2025-03-09T04:18:22.276880-07:00,1707.0,10.814799,10814.799 +17067,2025-03-09T04:18:33.089074-07:00,1712.0,10.812194,10812.194 +17068,2025-03-09T04:18:43.900044-07:00,1679.0,10.81097,10810.97 +17069,2025-03-09T04:18:54.708524-07:00,1715.0,10.80848,10808.48 +17070,2025-03-09T04:19:05.520301-07:00,1691.0,10.811777,10811.777 +17071,2025-03-09T04:19:16.326164-07:00,1712.0,10.805863,10805.863 +17072,2025-03-09T04:19:27.134503-07:00,1728.0,10.808339,10808.339 +17073,2025-03-09T04:19:37.941446-07:00,1697.0,10.806943,10806.943 +17074,2025-03-09T04:19:48.754882-07:00,1707.0,10.813436,10813.436 +17075,2025-03-09T04:19:59.569835-07:00,1739.0,10.814953,10814.953 +17076,2025-03-09T04:20:10.383262-07:00,1665.0,10.813427,10813.427 +17077,2025-03-09T04:20:21.198899-07:00,1712.0,10.815637,10815.637 +17078,2025-03-09T04:20:32.009433-07:00,1639.0,10.810534,10810.534 +17079,2025-03-09T04:20:42.821833-07:00,1680.0,10.8124,10812.4 +17080,2025-03-09T04:20:53.635975-07:00,1653.0,10.814142,10814.142 +17081,2025-03-09T04:21:04.451226-07:00,1738.0,10.815251,10815.251 +17082,2025-03-09T04:21:15.263398-07:00,1730.0,10.812172,10812.172 +17083,2025-03-09T04:21:26.074920-07:00,1700.0,10.811522,10811.522 +17084,2025-03-09T04:21:36.886458-07:00,1692.0,10.811538,10811.538 +17085,2025-03-09T04:21:47.702822-07:00,1697.0,10.816364,10816.364 +17086,2025-03-09T04:21:58.521178-07:00,1713.0,10.818356,10818.356 +17087,2025-03-09T04:22:09.328211-07:00,1680.0,10.807033,10807.033 +17088,2025-03-09T04:22:20.142340-07:00,1653.0,10.814129,10814.129 +17089,2025-03-09T04:22:30.954829-07:00,1730.0,10.812489,10812.489 +17090,2025-03-09T04:22:41.777025-07:00,1691.0,10.822196,10822.196 +17091,2025-03-09T04:22:52.597237-07:00,1683.0,10.820212,10820.212 +17092,2025-03-09T04:23:03.409901-07:00,1685.0,10.812664,10812.664 +17093,2025-03-09T04:23:14.222510-07:00,1680.0,10.812609,10812.609 +17094,2025-03-09T04:23:25.041582-07:00,1735.0,10.819072,10819.072 +17095,2025-03-09T04:23:35.855447-07:00,1738.0,10.813865,10813.865 +17096,2025-03-09T04:23:46.670838-07:00,1728.0,10.815391,10815.391 +17097,2025-03-09T04:23:57.482833-07:00,1727.0,10.811995,10811.995 +17098,2025-03-09T04:24:08.297841-07:00,1686.0,10.815008,10815.008 +17099,2025-03-09T04:24:19.109823-07:00,1687.0,10.811982,10811.982 +17100,2025-03-09T04:24:29.930829-07:00,1727.0,10.821006,10821.006 +17101,2025-03-09T04:24:40.736633-07:00,1734.0,10.805804,10805.804 +17102,2025-03-09T04:24:51.554048-07:00,1718.0,10.817415,10817.415 +17103,2025-03-09T04:25:02.367833-07:00,1654.0,10.813785,10813.785 +17104,2025-03-09T04:25:13.182495-07:00,1661.0,10.814662,10814.662 +17105,2025-03-09T04:25:23.991261-07:00,1701.0,10.808766,10808.766 +17106,2025-03-09T04:25:34.812056-07:00,1643.0,10.820795,10820.795 +17107,2025-03-09T04:25:45.624824-07:00,1720.0,10.812768,10812.768 +17108,2025-03-09T04:25:56.441190-07:00,1735.0,10.816366,10816.366 +17109,2025-03-09T04:26:07.256900-07:00,1669.0,10.81571,10815.71 +17110,2025-03-09T04:26:18.068835-07:00,1688.0,10.811935,10811.935 +17111,2025-03-09T04:26:28.879824-07:00,1739.0,10.810989,10810.989 +17112,2025-03-09T04:26:39.698717-07:00,1680.0,10.818893,10818.893 +17113,2025-03-09T04:26:50.514540-07:00,1726.0,10.815823,10815.823 +17114,2025-03-09T04:27:01.329433-07:00,1653.0,10.814893,10814.893 +17115,2025-03-09T04:27:12.135869-07:00,1631.0,10.806436,10806.436 +17116,2025-03-09T04:27:22.946860-07:00,1713.0,10.810991,10810.991 +17117,2025-03-09T04:27:33.762823-07:00,1662.0,10.815963,10815.963 +17118,2025-03-09T04:27:44.582140-07:00,1650.0,10.819317,10819.317 +17119,2025-03-09T04:27:55.385809-07:00,1694.0,10.803669,10803.669 +17120,2025-03-09T04:28:06.204832-07:00,1717.0,10.819023,10819.023 +17121,2025-03-09T04:28:17.013837-07:00,1680.0,10.809005,10809.005 +17122,2025-03-09T04:28:27.818826-07:00,1686.0,10.804989,10804.989 +17123,2025-03-09T04:28:38.632163-07:00,1721.0,10.813337,10813.337 +17124,2025-03-09T04:28:49.452821-07:00,1729.0,10.820658,10820.658 +17125,2025-03-09T04:29:00.257409-07:00,1723.0,10.804588,10804.588 +17126,2025-03-09T04:29:11.070140-07:00,1718.0,10.812731,10812.731 +17127,2025-03-09T04:29:21.890055-07:00,1649.0,10.819915,10819.915 +17128,2025-03-09T04:29:32.694823-07:00,1695.0,10.804768,10804.768 +17129,2025-03-09T04:29:43.507824-07:00,1727.0,10.813001,10813.001 +17130,2025-03-09T04:29:54.322499-07:00,1726.0,10.814675,10814.675 +17131,2025-03-09T04:30:05.133963-07:00,1735.0,10.811464,10811.464 +17132,2025-03-09T04:30:15.942971-07:00,1734.0,10.809008,10809.008 +17133,2025-03-09T04:30:26.756835-07:00,1711.0,10.813864,10813.864 +17134,2025-03-09T04:30:37.571827-07:00,1691.0,10.814992,10814.992 +17135,2025-03-09T04:30:48.390764-07:00,1698.0,10.818937,10818.937 +17136,2025-03-09T04:30:59.194445-07:00,1696.0,10.803681,10803.681 +17137,2025-03-09T04:31:10.000138-07:00,1724.0,10.805693,10805.693 +17138,2025-03-09T04:31:20.810301-07:00,1734.0,10.810163,10810.163 +17139,2025-03-09T04:31:31.619826-07:00,1738.0,10.809525,10809.525 +17140,2025-03-09T04:31:42.434885-07:00,1737.0,10.815059,10815.059 +17141,2025-03-09T04:31:53.239831-07:00,1691.0,10.804946,10804.946 +17142,2025-03-09T04:32:04.053817-07:00,1735.0,10.813986,10813.986 +17143,2025-03-09T04:32:14.869818-07:00,1735.0,10.816001,10816.001 +17144,2025-03-09T04:32:25.678149-07:00,1719.0,10.808331,10808.331 +17145,2025-03-09T04:32:36.488577-07:00,1712.0,10.810428,10810.428 +17146,2025-03-09T04:32:47.298992-07:00,1731.0,10.810415,10810.415 +17147,2025-03-09T04:32:58.116962-07:00,1739.0,10.81797,10817.97 +17148,2025-03-09T04:33:08.920358-07:00,1697.0,10.803396,10803.396 +17149,2025-03-09T04:33:19.741404-07:00,1729.0,10.821046,10821.046 +17150,2025-03-09T04:33:30.549870-07:00,1675.0,10.808466,10808.466 +17151,2025-03-09T04:33:41.348140-07:00,1713.0,10.79827,10798.27 +17152,2025-03-09T04:33:52.161149-07:00,1687.0,10.813009,10813.009 +17153,2025-03-09T04:34:02.977209-07:00,1702.0,10.81606,10816.06 +17154,2025-03-09T04:34:13.784985-07:00,1653.0,10.807776,10807.776 +17155,2025-03-09T04:34:24.588914-07:00,1641.0,10.803929,10803.929 +17156,2025-03-09T04:34:35.406726-07:00,1707.0,10.817812,10817.812 +17157,2025-03-09T04:34:46.216884-07:00,1694.0,10.810158,10810.158 +17158,2025-03-09T04:34:57.033167-07:00,1687.0,10.816283,10816.283 +17159,2025-03-09T04:35:07.840889-07:00,1701.0,10.807722,10807.722 +17160,2025-03-09T04:35:18.654827-07:00,1734.0,10.813938,10813.938 +17161,2025-03-09T04:35:29.467053-07:00,1691.0,10.812226,10812.226 +17162,2025-03-09T04:35:40.275833-07:00,1681.0,10.80878,10808.78 +17163,2025-03-09T04:35:51.093165-07:00,1737.0,10.817332,10817.332 +17164,2025-03-09T04:36:01.900177-07:00,1658.0,10.807012,10807.012 +17165,2025-03-09T04:36:12.707835-07:00,1695.0,10.807658,10807.658 +17166,2025-03-09T04:36:23.519063-07:00,1724.0,10.811228,10811.228 +17167,2025-03-09T04:36:34.323882-07:00,1673.0,10.804819,10804.819 +17168,2025-03-09T04:36:45.143083-07:00,1679.0,10.819201,10819.201 +17169,2025-03-09T04:36:55.953827-07:00,1735.0,10.810744,10810.744 +17170,2025-03-09T04:37:06.762587-07:00,1721.0,10.80876,10808.76 +17171,2025-03-09T04:37:17.582894-07:00,1735.0,10.820307,10820.307 +17172,2025-03-09T04:37:28.385843-07:00,1701.0,10.802949,10802.949 +17173,2025-03-09T04:37:39.195207-07:00,1693.0,10.809364,10809.364 +17174,2025-03-09T04:37:50.009826-07:00,1722.0,10.814619,10814.619 +17175,2025-03-09T04:38:00.812028-07:00,1737.0,10.802202,10802.202 +17176,2025-03-09T04:38:11.621883-07:00,1728.0,10.809855,10809.855 +17177,2025-03-09T04:38:22.430951-07:00,1653.0,10.809068,10809.068 +17178,2025-03-09T04:38:33.246563-07:00,1709.0,10.815612,10815.612 +17179,2025-03-09T04:38:44.060831-07:00,1737.0,10.814268,10814.268 +17180,2025-03-09T04:38:54.868829-07:00,1733.0,10.807998,10807.998 +17181,2025-03-09T04:39:05.687825-07:00,1683.0,10.818996,10818.996 +17182,2025-03-09T04:39:16.494827-07:00,1710.0,10.807002,10807.002 +17183,2025-03-09T04:39:27.307249-07:00,1735.0,10.812422,10812.422 +17184,2025-03-09T04:39:38.123042-07:00,1686.0,10.815793,10815.793 +17185,2025-03-09T04:39:48.930024-07:00,1659.0,10.806982,10806.982 +17186,2025-03-09T04:39:59.738830-07:00,1731.0,10.808806,10808.806 +17187,2025-03-09T04:40:10.549833-07:00,1686.0,10.811003,10811.003 +17188,2025-03-09T04:40:21.363823-07:00,1731.0,10.81399,10813.99 +17189,2025-03-09T04:40:32.180182-07:00,1712.0,10.816359,10816.359 +17190,2025-03-09T04:40:42.993177-07:00,1725.0,10.812995,10812.995 +17191,2025-03-09T04:40:53.797434-07:00,1648.0,10.804257,10804.257 +17192,2025-03-09T04:41:04.611065-07:00,1699.0,10.813631,10813.631 +17193,2025-03-09T04:41:15.419072-07:00,1739.0,10.808007,10808.007 +17194,2025-03-09T04:41:26.234822-07:00,1722.0,10.81575,10815.75 +17195,2025-03-09T04:41:37.043823-07:00,1684.0,10.809001,10809.001 +17196,2025-03-09T04:41:47.863921-07:00,1740.0,10.820098,10820.098 +17197,2025-03-09T04:41:58.678148-07:00,1737.0,10.814227,10814.227 +17198,2025-03-09T04:42:09.487318-07:00,1739.0,10.80917,10809.17 +17199,2025-03-09T04:42:20.290103-07:00,1733.0,10.802785,10802.785 +17200,2025-03-09T04:42:31.110817-07:00,1735.0,10.820714,10820.714 +17201,2025-03-09T04:42:41.916094-07:00,1715.0,10.805277,10805.277 +17202,2025-03-09T04:42:52.723982-07:00,1661.0,10.807888,10807.888 +17203,2025-03-09T04:43:03.532157-07:00,1712.0,10.808175,10808.175 +17204,2025-03-09T04:43:14.352184-07:00,1659.0,10.820027,10820.027 +17205,2025-03-09T04:43:25.156834-07:00,1739.0,10.80465,10804.65 +17206,2025-03-09T04:43:35.969971-07:00,1694.0,10.813137,10813.137 +17207,2025-03-09T04:43:46.783072-07:00,1711.0,10.813101,10813.101 +17208,2025-03-09T04:43:57.584043-07:00,1726.0,10.800971,10800.971 +17209,2025-03-09T04:44:08.392823-07:00,1719.0,10.80878,10808.78 +17210,2025-03-09T04:44:19.206160-07:00,1677.0,10.813337,10813.337 +17211,2025-03-09T04:44:30.011138-07:00,1703.0,10.804978,10804.978 +17212,2025-03-09T04:44:40.824828-07:00,1648.0,10.81369,10813.69 +17213,2025-03-09T04:44:51.623168-07:00,1734.0,10.79834,10798.34 +17214,2025-03-09T04:45:02.436882-07:00,1734.0,10.813714,10813.714 +17215,2025-03-09T04:45:13.239064-07:00,1709.0,10.802182,10802.182 +17216,2025-03-09T04:45:24.048829-07:00,1693.0,10.809765,10809.765 +17217,2025-03-09T04:45:34.852908-07:00,1675.0,10.804079,10804.079 +17218,2025-03-09T04:45:45.673135-07:00,1674.0,10.820227,10820.227 +17219,2025-03-09T04:45:56.476125-07:00,1705.0,10.80299,10802.99 +17220,2025-03-09T04:46:07.289927-07:00,1734.0,10.813802,10813.802 +17221,2025-03-09T04:46:18.098887-07:00,1701.0,10.80896,10808.96 +17222,2025-03-09T04:46:28.911172-07:00,1687.0,10.812285,10812.285 +17223,2025-03-09T04:46:39.718975-07:00,1684.0,10.807803,10807.803 +17224,2025-03-09T04:46:50.521832-07:00,1675.0,10.802857,10802.857 +17225,2025-03-09T04:47:01.336130-07:00,1693.0,10.814298,10814.298 +17226,2025-03-09T04:47:12.145002-07:00,1682.0,10.808872,10808.872 +17227,2025-03-09T04:47:22.965827-07:00,1727.0,10.820825,10820.825 +17228,2025-03-09T04:47:33.769369-07:00,1737.0,10.803542,10803.542 +17229,2025-03-09T04:47:44.586847-07:00,1742.0,10.817478,10817.478 +17230,2025-03-09T04:47:55.393826-07:00,1710.0,10.806979,10806.979 +17231,2025-03-09T04:48:06.202033-07:00,1735.0,10.808207,10808.207 +17232,2025-03-09T04:48:17.010453-07:00,1643.0,10.80842,10808.42 +17233,2025-03-09T04:48:27.811881-07:00,1734.0,10.801428,10801.428 +17234,2025-03-09T04:48:38.611640-07:00,1737.0,10.799759,10799.759 +17235,2025-03-09T04:48:49.415067-07:00,1685.0,10.803427,10803.427 +17236,2025-03-09T04:49:00.226827-07:00,1650.0,10.81176,10811.76 +17237,2025-03-09T04:49:11.035930-07:00,1735.0,10.809103,10809.103 +17238,2025-03-09T04:49:21.847169-07:00,1734.0,10.811239,10811.239 +17239,2025-03-09T04:49:32.655397-07:00,1691.0,10.808228,10808.228 +17240,2025-03-09T04:49:43.464196-07:00,1728.0,10.808799,10808.799 +17241,2025-03-09T04:49:54.274158-07:00,1703.0,10.809962,10809.962 +17242,2025-03-09T04:50:05.071879-07:00,1663.0,10.797721,10797.721 +17243,2025-03-09T04:50:15.884315-07:00,1712.0,10.812436,10812.436 +17244,2025-03-09T04:50:26.694929-07:00,1655.0,10.810614,10810.614 +17245,2025-03-09T04:50:37.507881-07:00,1675.0,10.812952,10812.952 +17246,2025-03-09T04:50:48.307886-07:00,1723.0,10.800005,10800.005 +17247,2025-03-09T04:50:59.118046-07:00,1717.0,10.81016,10810.16 +17248,2025-03-09T04:51:09.921832-07:00,1735.0,10.803786,10803.786 +17249,2025-03-09T04:51:20.733420-07:00,1654.0,10.811588,10811.588 +17250,2025-03-09T04:51:31.542369-07:00,1649.0,10.808949,10808.949 +17251,2025-03-09T04:51:42.348319-07:00,1694.0,10.80595,10805.95 +17252,2025-03-09T04:51:53.154842-07:00,1735.0,10.806523,10806.523 +17253,2025-03-09T04:52:03.952477-07:00,1734.0,10.797635,10797.635 +17254,2025-03-09T04:52:14.755188-07:00,1735.0,10.802711,10802.711 +17255,2025-03-09T04:52:25.565177-07:00,1690.0,10.809989,10809.989 +17256,2025-03-09T04:52:36.366378-07:00,1738.0,10.801201,10801.201 +17257,2025-03-09T04:52:47.182083-07:00,1712.0,10.815705,10815.705 +17258,2025-03-09T04:52:57.987834-07:00,1691.0,10.805751,10805.751 +17259,2025-03-09T04:53:08.789827-07:00,1671.0,10.801993,10801.993 +17260,2025-03-09T04:53:19.594195-07:00,1719.0,10.804368,10804.368 +17261,2025-03-09T04:53:30.400897-07:00,1694.0,10.806702,10806.702 +17262,2025-03-09T04:53:41.210822-07:00,1729.0,10.809925,10809.925 +17263,2025-03-09T04:53:52.014126-07:00,1678.0,10.803304,10803.304 +17264,2025-03-09T04:54:02.820958-07:00,1727.0,10.806832,10806.832 +17265,2025-03-09T04:54:13.627827-07:00,1731.0,10.806869,10806.869 +17266,2025-03-09T04:54:24.437025-07:00,1693.0,10.809198,10809.198 +17267,2025-03-09T04:54:35.238292-07:00,1717.0,10.801267,10801.267 +17268,2025-03-09T04:54:46.042841-07:00,1650.0,10.804549,10804.549 +17269,2025-03-09T04:54:56.851466-07:00,1734.0,10.808625,10808.625 +17270,2025-03-09T04:55:07.664899-07:00,1687.0,10.813433,10813.433 +17271,2025-03-09T04:55:18.469240-07:00,1721.0,10.804341,10804.341 +17272,2025-03-09T04:55:29.277005-07:00,1694.0,10.807765,10807.765 +17273,2025-03-09T04:55:40.085834-07:00,1712.0,10.808829,10808.829 +17274,2025-03-09T04:55:50.895888-07:00,1694.0,10.810054,10810.054 +17275,2025-03-09T04:56:01.700260-07:00,1662.0,10.804372,10804.372 +17276,2025-03-09T04:56:12.511833-07:00,1727.0,10.811573,10811.573 +17277,2025-03-09T04:56:23.321822-07:00,1687.0,10.809989,10809.989 +17278,2025-03-09T04:56:34.127149-07:00,1650.0,10.805327,10805.327 +17279,2025-03-09T04:56:44.934559-07:00,1673.0,10.80741,10807.41 +17280,2025-03-09T04:56:55.742100-07:00,1703.0,10.807541,10807.541 +17281,2025-03-09T04:57:06.546779-07:00,1658.0,10.804679,10804.679 +17282,2025-03-09T04:57:17.351173-07:00,1734.0,10.804394,10804.394 +17283,2025-03-09T04:57:28.159151-07:00,1686.0,10.807978,10807.978 +17284,2025-03-09T04:57:38.962994-07:00,1681.0,10.803843,10803.843 +17285,2025-03-09T04:57:49.772389-07:00,1715.0,10.809395,10809.395 +17286,2025-03-09T04:58:00.570163-07:00,1712.0,10.797774,10797.774 +17287,2025-03-09T04:58:11.388875-07:00,1730.0,10.818712,10818.712 +17288,2025-03-09T04:58:22.187829-07:00,1734.0,10.798954,10798.954 +17289,2025-03-09T04:58:32.996217-07:00,1653.0,10.808388,10808.388 +17290,2025-03-09T04:58:43.803976-07:00,1738.0,10.807759,10807.759 +17291,2025-03-09T04:58:54.606828-07:00,1733.0,10.802852,10802.852 +17292,2025-03-09T04:59:05.421829-07:00,1654.0,10.815001,10815.001 +17293,2025-03-09T04:59:16.220835-07:00,1709.0,10.799006,10799.006 +17294,2025-03-09T04:59:27.034269-07:00,1722.0,10.813434,10813.434 +17295,2025-03-09T04:59:37.838769-07:00,1699.0,10.8045,10804.5 +17296,2025-03-09T04:59:48.646360-07:00,1731.0,10.807591,10807.591 +17297,2025-03-09T04:59:59.446451-07:00,1664.0,10.800091,10800.091 +17298,2025-03-09T05:00:10.265848-07:00,1725.0,10.819397,10819.397 +17299,2025-03-09T05:00:21.067834-07:00,1651.0,10.801986,10801.986 +17300,2025-03-09T05:00:31.882056-07:00,1735.0,10.814222,10814.222 +17301,2025-03-09T05:00:42.679841-07:00,1738.0,10.797785,10797.785 +17302,2025-03-09T05:00:53.484990-07:00,1663.0,10.805149,10805.149 +17303,2025-03-09T05:01:04.287887-07:00,1731.0,10.802897,10802.897 +17304,2025-03-09T05:01:15.089890-07:00,1698.0,10.802003,10802.003 +17305,2025-03-09T05:01:25.904822-07:00,1731.0,10.814932,10814.932 +17306,2025-03-09T05:01:36.707957-07:00,1691.0,10.803135,10803.135 +17307,2025-03-09T05:01:47.513115-07:00,1680.0,10.805158,10805.158 +17308,2025-03-09T05:01:58.322080-07:00,1677.0,10.808965,10808.965 +17309,2025-03-09T05:02:09.122828-07:00,1739.0,10.800748,10800.748 +17310,2025-03-09T05:02:19.927108-07:00,1733.0,10.80428,10804.28 +17311,2025-03-09T05:02:30.739962-07:00,1712.0,10.812854,10812.854 +17312,2025-03-09T05:02:41.544778-07:00,1735.0,10.804816,10804.816 +17313,2025-03-09T05:02:52.360177-07:00,1691.0,10.815399,10815.399 +17314,2025-03-09T05:03:03.164197-07:00,1670.0,10.80402,10804.02 +17315,2025-03-09T05:03:13.968131-07:00,1738.0,10.803934,10803.934 +17316,2025-03-09T05:03:24.771340-07:00,1691.0,10.803209,10803.209 +17317,2025-03-09T05:03:35.575156-07:00,1694.0,10.803816,10803.816 +17318,2025-03-09T05:03:46.389895-07:00,1738.0,10.814739,10814.739 +17319,2025-03-09T05:03:57.196832-07:00,1712.0,10.806937,10806.937 +17320,2025-03-09T05:04:07.994836-07:00,1687.0,10.798004,10798.004 +17321,2025-03-09T05:04:18.804837-07:00,1711.0,10.810001,10810.001 +17322,2025-03-09T05:04:29.612828-07:00,1706.0,10.807991,10807.991 +17323,2025-03-09T05:04:40.417513-07:00,1728.0,10.804685,10804.685 +17324,2025-03-09T05:04:51.230073-07:00,1701.0,10.81256,10812.56 +17325,2025-03-09T05:05:02.031940-07:00,1733.0,10.801867,10801.867 +17326,2025-03-09T05:05:12.843351-07:00,1699.0,10.811411,10811.411 +17327,2025-03-09T05:05:23.646391-07:00,1695.0,10.80304,10803.04 +17328,2025-03-09T05:05:34.454841-07:00,1731.0,10.80845,10808.45 +17329,2025-03-09T05:05:45.173531-07:00,1663.0,10.71869,10718.69 +17330,2025-03-09T05:05:55.973918-07:00,1667.0,10.800387,10800.387 +17331,2025-03-09T05:06:06.781260-07:00,1725.0,10.807342,10807.342 +17332,2025-03-09T05:06:17.575178-07:00,1687.0,10.793918,10793.918 +17333,2025-03-09T05:06:28.381311-07:00,1712.0,10.806133,10806.133 +17334,2025-03-09T05:06:39.181929-07:00,1740.0,10.800618,10800.618 +17335,2025-03-09T05:06:49.991279-07:00,1739.0,10.80935,10809.35 +17336,2025-03-09T05:07:00.804705-07:00,1726.0,10.813426,10813.426 +17337,2025-03-09T05:07:11.610223-07:00,1731.0,10.805518,10805.518 +17338,2025-03-09T05:07:22.417951-07:00,1712.0,10.807728,10807.728 +17339,2025-03-09T05:07:33.215226-07:00,1653.0,10.797275,10797.275 +17340,2025-03-09T05:07:44.023947-07:00,1650.0,10.808721,10808.721 +17341,2025-03-09T05:07:54.826938-07:00,1734.0,10.802991,10802.991 +17342,2025-03-09T05:08:05.640939-07:00,1738.0,10.814001,10814.001 +17343,2025-03-09T05:08:16.435180-07:00,1721.0,10.794241,10794.241 +17344,2025-03-09T05:08:27.252954-07:00,1714.0,10.817774,10817.774 +17345,2025-03-09T05:08:38.057947-07:00,1739.0,10.804993,10804.993 +17346,2025-03-09T05:08:48.849429-07:00,1650.0,10.791482,10791.482 +17347,2025-03-09T05:08:59.661738-07:00,1694.0,10.812309,10812.309 +17348,2025-03-09T05:09:10.461933-07:00,1741.0,10.800195,10800.195 +17349,2025-03-09T05:09:21.265164-07:00,1651.0,10.803231,10803.231 +17350,2025-03-09T05:09:32.083103-07:00,1707.0,10.817939,10817.939 +17351,2025-03-09T05:09:42.882930-07:00,1682.0,10.799827,10799.827 +17352,2025-03-09T05:09:53.696458-07:00,1732.0,10.813528,10813.528 +17353,2025-03-09T05:10:04.498384-07:00,1741.0,10.801926,10801.926 +17354,2025-03-09T05:10:15.303380-07:00,1715.0,10.804996,10804.996 +17355,2025-03-09T05:10:26.112740-07:00,1739.0,10.80936,10809.36 +17356,2025-03-09T05:10:36.917304-07:00,1737.0,10.804564,10804.564 +17357,2025-03-09T05:10:47.726765-07:00,1729.0,10.809461,10809.461 +17358,2025-03-09T05:10:58.539940-07:00,1715.0,10.813175,10813.175 +17359,2025-03-09T05:11:09.342930-07:00,1741.0,10.80299,10802.99 +17360,2025-03-09T05:11:20.151569-07:00,1680.0,10.808639,10808.639 +17361,2025-03-09T05:11:30.955938-07:00,1651.0,10.804369,10804.369 +17362,2025-03-09T05:11:41.761940-07:00,1694.0,10.806002,10806.002 +17363,2025-03-09T05:11:52.571936-07:00,1719.0,10.809996,10809.996 +17364,2025-03-09T05:12:03.387627-07:00,1644.0,10.815691,10815.691 +17365,2025-03-09T05:12:14.189287-07:00,1740.0,10.80166,10801.66 +17366,2025-03-09T05:12:24.994256-07:00,1693.0,10.804969,10804.969 +17367,2025-03-09T05:12:35.804237-07:00,1727.0,10.809981,10809.981 +17368,2025-03-09T05:12:46.615968-07:00,1654.0,10.811731,10811.731 +17369,2025-03-09T05:12:57.431172-07:00,1687.0,10.815204,10815.204 +17370,2025-03-09T05:13:08.235183-07:00,1651.0,10.804011,10804.011 +17371,2025-03-09T05:13:19.048926-07:00,1697.0,10.813743,10813.743 +17372,2025-03-09T05:13:29.848182-07:00,1707.0,10.799256,10799.256 +17373,2025-03-09T05:13:40.664214-07:00,1727.0,10.816032,10816.032 +17374,2025-03-09T05:13:51.477264-07:00,1710.0,10.81305,10813.05 +17375,2025-03-09T05:14:02.282455-07:00,1730.0,10.805191,10805.191 +17376,2025-03-09T05:14:13.084746-07:00,1731.0,10.802291,10802.291 +17377,2025-03-09T05:14:23.895213-07:00,1741.0,10.810467,10810.467 +17378,2025-03-09T05:14:34.697130-07:00,1739.0,10.801917,10801.917 +17379,2025-03-09T05:14:45.500526-07:00,1740.0,10.803396,10803.396 +17380,2025-03-09T05:14:56.307932-07:00,1683.0,10.807406,10807.406 +17381,2025-03-09T05:15:07.111070-07:00,1699.0,10.803138,10803.138 +17382,2025-03-09T05:15:17.922931-07:00,1651.0,10.811861,10811.861 +17383,2025-03-09T05:15:28.725073-07:00,1737.0,10.802142,10802.142 +17384,2025-03-09T05:15:39.542931-07:00,1654.0,10.817858,10817.858 +17385,2025-03-09T05:15:50.347933-07:00,1691.0,10.805002,10805.002 +17386,2025-03-09T05:16:01.148969-07:00,1727.0,10.801036,10801.036 +17387,2025-03-09T05:16:11.954932-07:00,1716.0,10.805963,10805.963 +17388,2025-03-09T05:16:22.761927-07:00,1677.0,10.806995,10806.995 +17389,2025-03-09T05:16:33.563922-07:00,1728.0,10.801995,10801.995 +17390,2025-03-09T05:16:44.368932-07:00,1678.0,10.80501,10805.01 +17391,2025-03-09T05:16:55.173307-07:00,1735.0,10.804375,10804.375 +17392,2025-03-09T05:17:05.972922-07:00,1737.0,10.799615,10799.615 +17393,2025-03-09T05:17:16.775070-07:00,1697.0,10.802148,10802.148 +17394,2025-03-09T05:17:27.583044-07:00,1712.0,10.807974,10807.974 +17395,2025-03-09T05:17:38.385160-07:00,1735.0,10.802116,10802.116 +17396,2025-03-09T05:17:49.182911-07:00,1693.0,10.797751,10797.751 +17397,2025-03-09T05:17:59.986215-07:00,1699.0,10.803304,10803.304 +17398,2025-03-09T05:18:10.784214-07:00,1740.0,10.797999,10797.999 +17399,2025-03-09T05:18:21.593930-07:00,1739.0,10.809716,10809.716 +17400,2025-03-09T05:18:32.389931-07:00,1743.0,10.796001,10796.001 +17401,2025-03-09T05:18:43.199921-07:00,1655.0,10.80999,10809.99 +17402,2025-03-09T05:18:54.002946-07:00,1680.0,10.803025,10803.025 +17403,2025-03-09T05:19:04.811256-07:00,1723.0,10.80831,10808.31 +17404,2025-03-09T05:19:15.613928-07:00,1735.0,10.802672,10802.672 +17405,2025-03-09T05:19:26.413084-07:00,1728.0,10.799156,10799.156 +17406,2025-03-09T05:19:37.214928-07:00,1743.0,10.801844,10801.844 +17407,2025-03-09T05:19:48.025979-07:00,1697.0,10.811051,10811.051 +17408,2025-03-09T05:19:58.817932-07:00,1741.0,10.791953,10791.953 +17409,2025-03-09T05:20:09.613928-07:00,1655.0,10.795996,10795.996 +17410,2025-03-09T05:20:20.413155-07:00,1728.0,10.799227,10799.227 +17411,2025-03-09T05:20:31.214140-07:00,1694.0,10.800985,10800.985 +17412,2025-03-09T05:20:42.011934-07:00,1713.0,10.797794,10797.794 +17413,2025-03-09T05:20:52.823174-07:00,1691.0,10.81124,10811.24 +17414,2025-03-09T05:21:03.626233-07:00,1691.0,10.803059,10803.059 +17415,2025-03-09T05:21:14.430934-07:00,1710.0,10.804701,10804.701 +17416,2025-03-09T05:21:25.225184-07:00,1739.0,10.79425,10794.25 +17417,2025-03-09T05:21:36.029174-07:00,1728.0,10.80399,10803.99 +17418,2025-03-09T05:21:46.828934-07:00,1713.0,10.79976,10799.76 +17419,2025-03-09T05:21:57.633211-07:00,1715.0,10.804277,10804.277 +17420,2025-03-09T05:22:08.433946-07:00,1738.0,10.800735,10800.735 +17421,2025-03-09T05:22:19.245204-07:00,1648.0,10.811258,10811.258 +17422,2025-03-09T05:22:30.044954-07:00,1718.0,10.79975,10799.75 +17423,2025-03-09T05:22:40.855230-07:00,1738.0,10.810276,10810.276 +17424,2025-03-09T05:22:51.660066-07:00,1647.0,10.804836,10804.836 +17425,2025-03-09T05:23:02.462004-07:00,1718.0,10.801938,10801.938 +17426,2025-03-09T05:23:13.271178-07:00,1642.0,10.809174,10809.174 +17427,2025-03-09T05:23:24.070519-07:00,1681.0,10.799341,10799.341 +17428,2025-03-09T05:23:34.871986-07:00,1734.0,10.801467,10801.467 +17429,2025-03-09T05:23:45.675008-07:00,1717.0,10.803022,10803.022 +17430,2025-03-09T05:23:56.467080-07:00,1728.0,10.792072,10792.072 +17431,2025-03-09T05:24:07.276158-07:00,1742.0,10.809078,10809.078 +17432,2025-03-09T05:24:18.071242-07:00,1739.0,10.795084,10795.084 +17433,2025-03-09T05:24:28.877330-07:00,1735.0,10.806088,10806.088 +17434,2025-03-09T05:24:39.675285-07:00,1728.0,10.797955,10797.955 +17435,2025-03-09T05:24:50.485953-07:00,1680.0,10.810668,10810.668 +17436,2025-03-09T05:25:01.286954-07:00,1715.0,10.801001,10801.001 +17437,2025-03-09T05:25:12.086661-07:00,1680.0,10.799707,10799.707 +17438,2025-03-09T05:25:22.889702-07:00,1653.0,10.803041,10803.041 +17439,2025-03-09T05:25:33.685299-07:00,1735.0,10.795597,10795.597 +17440,2025-03-09T05:25:44.489283-07:00,1721.0,10.803984,10803.984 +17441,2025-03-09T05:25:55.287936-07:00,1743.0,10.798653,10798.653 +17442,2025-03-09T05:26:06.096730-07:00,1694.0,10.808794,10808.794 +17443,2025-03-09T05:26:16.894215-07:00,1718.0,10.797485,10797.485 +17444,2025-03-09T05:26:27.694980-07:00,1723.0,10.800765,10800.765 +17445,2025-03-09T05:26:38.496932-07:00,1723.0,10.801952,10801.952 +17446,2025-03-09T05:26:49.298987-07:00,1726.0,10.802055,10802.055 +17447,2025-03-09T05:27:00.098159-07:00,1735.0,10.799172,10799.172 +17448,2025-03-09T05:27:10.896159-07:00,1681.0,10.798,10798.0 +17449,2025-03-09T05:27:21.703924-07:00,1730.0,10.807765,10807.765 +17450,2025-03-09T05:27:32.509073-07:00,1664.0,10.805149,10805.149 +17451,2025-03-09T05:27:43.307928-07:00,1720.0,10.798855,10798.855 +17452,2025-03-09T05:27:54.111130-07:00,1680.0,10.803202,10803.202 +17453,2025-03-09T05:28:04.911938-07:00,1736.0,10.800808,10800.808 +17454,2025-03-09T05:28:15.716928-07:00,1722.0,10.80499,10804.99 +17455,2025-03-09T05:28:26.520949-07:00,1722.0,10.804021,10804.021 +17456,2025-03-09T05:28:37.319278-07:00,1724.0,10.798329,10798.329 +17457,2025-03-09T05:28:48.122938-07:00,1730.0,10.80366,10803.66 +17458,2025-03-09T05:28:58.927938-07:00,1695.0,10.805,10805.0 +17459,2025-03-09T05:29:09.726938-07:00,1653.0,10.799,10799.0 +17460,2025-03-09T05:29:20.524937-07:00,1734.0,10.797999,10797.999 +17461,2025-03-09T05:29:31.329196-07:00,1697.0,10.804259,10804.259 +17462,2025-03-09T05:29:42.132053-07:00,1694.0,10.802857,10802.857 +17463,2025-03-09T05:29:52.936939-07:00,1722.0,10.804886,10804.886 +17464,2025-03-09T05:30:03.741932-07:00,1645.0,10.804993,10804.993 +17465,2025-03-09T05:30:14.546932-07:00,1697.0,10.805,10805.0 +17466,2025-03-09T05:30:25.341948-07:00,1647.0,10.795016,10795.016 +17467,2025-03-09T05:30:36.149189-07:00,1727.0,10.807241,10807.241 +17468,2025-03-09T05:30:46.947932-07:00,1720.0,10.798743,10798.743 +17469,2025-03-09T05:30:57.749945-07:00,1714.0,10.802013,10802.013 +17470,2025-03-09T05:31:08.547277-07:00,1739.0,10.797332,10797.332 +17471,2025-03-09T05:31:19.350935-07:00,1664.0,10.803658,10803.658 +17472,2025-03-09T05:31:30.153963-07:00,1679.0,10.803028,10803.028 +17473,2025-03-09T05:31:40.956081-07:00,1739.0,10.802118,10802.118 +17474,2025-03-09T05:31:51.765349-07:00,1724.0,10.809268,10809.268 +17475,2025-03-09T05:32:02.565258-07:00,1670.0,10.799909,10799.909 +17476,2025-03-09T05:32:13.361251-07:00,1695.0,10.795993,10795.993 +17477,2025-03-09T05:32:24.171950-07:00,1702.0,10.810699,10810.699 +17478,2025-03-09T05:32:34.973497-07:00,1651.0,10.801547,10801.547 +17479,2025-03-09T05:32:45.766575-07:00,1736.0,10.793078,10793.078 +17480,2025-03-09T05:32:56.568355-07:00,1683.0,10.80178,10801.78 +17481,2025-03-09T05:33:07.371064-07:00,1711.0,10.802709,10802.709 +17482,2025-03-09T05:33:18.175254-07:00,1731.0,10.80419,10804.19 +17483,2025-03-09T05:33:28.971219-07:00,1687.0,10.795965,10795.965 +17484,2025-03-09T05:33:39.775006-07:00,1734.0,10.803787,10803.787 +17485,2025-03-09T05:33:50.587238-07:00,1691.0,10.812232,10812.232 +17486,2025-03-09T05:34:01.387578-07:00,1727.0,10.80034,10800.34 +17487,2025-03-09T05:34:12.190489-07:00,1729.0,10.802911,10802.911 +17488,2025-03-09T05:34:22.999221-07:00,1741.0,10.808732,10808.732 +17489,2025-03-09T05:34:33.799511-07:00,1676.0,10.80029,10800.29 +17490,2025-03-09T05:34:44.601918-07:00,1733.0,10.802407,10802.407 +17491,2025-03-09T05:34:55.398139-07:00,1666.0,10.796221,10796.221 +17492,2025-03-09T05:35:06.207862-07:00,1691.0,10.809723,10809.723 +17493,2025-03-09T05:35:17.011398-07:00,1653.0,10.803536,10803.536 +17494,2025-03-09T05:35:27.814215-07:00,1741.0,10.802817,10802.817 +17495,2025-03-09T05:35:38.613313-07:00,1743.0,10.799098,10799.098 +17496,2025-03-09T05:35:49.415928-07:00,1679.0,10.802615,10802.615 +17497,2025-03-09T05:36:00.225693-07:00,1723.0,10.809765,10809.765 +17498,2025-03-09T05:36:11.020940-07:00,1691.0,10.795247,10795.247 +17499,2025-03-09T05:36:21.825050-07:00,1743.0,10.80411,10804.11 +17500,2025-03-09T05:36:32.621930-07:00,1733.0,10.79688,10796.88 +17501,2025-03-09T05:36:43.425943-07:00,1682.0,10.804013,10804.013 +17502,2025-03-09T05:36:54.225944-07:00,1734.0,10.800001,10800.001 +17503,2025-03-09T05:37:05.026930-07:00,1712.0,10.800986,10800.986 +17504,2025-03-09T05:37:15.823074-07:00,1734.0,10.796144,10796.144 +17505,2025-03-09T05:37:26.624937-07:00,1701.0,10.801863,10801.863 +17506,2025-03-09T05:37:37.427251-07:00,1740.0,10.802314,10802.314 +17507,2025-03-09T05:37:48.228948-07:00,1712.0,10.801697,10801.697 +17508,2025-03-09T05:37:59.026344-07:00,1703.0,10.797396,10797.396 +17509,2025-03-09T05:38:09.830955-07:00,1725.0,10.804611,10804.611 +17510,2025-03-09T05:38:20.627936-07:00,1689.0,10.796981,10796.981 +17511,2025-03-09T05:38:31.418639-07:00,1734.0,10.790703,10790.703 +17512,2025-03-09T05:38:42.218046-07:00,1701.0,10.799407,10799.407 +17513,2025-03-09T05:38:53.013935-07:00,1696.0,10.795889,10795.889 +17514,2025-03-09T05:39:03.813030-07:00,1741.0,10.799095,10799.095 +17515,2025-03-09T05:39:14.609084-07:00,1739.0,10.796054,10796.054 +17516,2025-03-09T05:39:25.411932-07:00,1667.0,10.802848,10802.848 +17517,2025-03-09T05:39:36.197262-07:00,1735.0,10.78533,10785.33 +17518,2025-03-09T05:39:47.002947-07:00,1723.0,10.805685,10805.685 +17519,2025-03-09T05:39:57.788137-07:00,1713.0,10.78519,10785.19 +17520,2025-03-09T05:40:08.597912-07:00,1740.0,10.809775,10809.775 +17521,2025-03-09T05:40:19.394838-07:00,1717.0,10.796926,10796.926 +17522,2025-03-09T05:40:30.189934-07:00,1735.0,10.795096,10795.096 +17523,2025-03-09T05:40:40.997171-07:00,1699.0,10.807237,10807.237 +17524,2025-03-09T05:40:51.797938-07:00,1703.0,10.800767,10800.767 +17525,2025-03-09T05:41:02.591455-07:00,1726.0,10.793517,10793.517 +17526,2025-03-09T05:41:13.389979-07:00,1739.0,10.798524,10798.524 +17527,2025-03-09T05:41:24.193252-07:00,1743.0,10.803273,10803.273 +17528,2025-03-09T05:41:34.991938-07:00,1703.0,10.798686,10798.686 +17529,2025-03-09T05:41:45.787301-07:00,1739.0,10.795363,10795.363 +17530,2025-03-09T05:41:56.584487-07:00,1739.0,10.797186,10797.186 +17531,2025-03-09T05:42:07.368928-07:00,1699.0,10.784441,10784.441 +17532,2025-03-09T05:42:18.174177-07:00,1739.0,10.805249,10805.249 +17533,2025-03-09T05:42:28.970938-07:00,1703.0,10.796761,10796.761 +17534,2025-03-09T05:42:39.771130-07:00,1741.0,10.800192,10800.192 +17535,2025-03-09T05:42:50.573932-07:00,1742.0,10.802802,10802.802 +17536,2025-03-09T05:43:01.369171-07:00,1731.0,10.795239,10795.239 +17537,2025-03-09T05:43:12.167191-07:00,1695.0,10.79802,10798.02 +17538,2025-03-09T05:43:22.973183-07:00,1662.0,10.805992,10805.992 +17539,2025-03-09T05:43:33.771146-07:00,1741.0,10.797963,10797.963 +17540,2025-03-09T05:43:44.565813-07:00,1693.0,10.794667,10794.667 +17541,2025-03-09T05:43:55.365334-07:00,1664.0,10.799521,10799.521 +17542,2025-03-09T05:44:06.154448-07:00,1737.0,10.789114,10789.114 +17543,2025-03-09T05:44:16.953938-07:00,1680.0,10.79949,10799.49 +17544,2025-03-09T05:44:27.756936-07:00,1703.0,10.802998,10802.998 +17545,2025-03-09T05:44:38.559944-07:00,1687.0,10.803008,10803.008 +17546,2025-03-09T05:44:49.357933-07:00,1677.0,10.797989,10797.989 +17547,2025-03-09T05:45:00.159177-07:00,1682.0,10.801244,10801.244 +17548,2025-03-09T05:45:10.952947-07:00,1661.0,10.79377,10793.77 +17549,2025-03-09T05:45:21.751734-07:00,1651.0,10.798787,10798.787 +17550,2025-03-09T05:45:32.549122-07:00,1691.0,10.797388,10797.388 +17551,2025-03-09T05:45:43.343658-07:00,1661.0,10.794536,10794.536 +17552,2025-03-09T05:45:54.145023-07:00,1718.0,10.801365,10801.365 +17553,2025-03-09T05:46:04.942102-07:00,1736.0,10.797079,10797.079 +17554,2025-03-09T05:46:15.743990-07:00,1650.0,10.801888,10801.888 +17555,2025-03-09T05:46:26.541130-07:00,1728.0,10.79714,10797.14 +17556,2025-03-09T05:46:37.344990-07:00,1741.0,10.80386,10803.86 +17557,2025-03-09T05:46:48.141234-07:00,1735.0,10.796244,10796.244 +17558,2025-03-09T05:46:58.939999-07:00,1657.0,10.798765,10798.765 +17559,2025-03-09T05:47:09.737219-07:00,1729.0,10.79722,10797.22 +17560,2025-03-09T05:47:20.541369-07:00,1738.0,10.80415,10804.15 +17561,2025-03-09T05:47:31.338365-07:00,1713.0,10.796996,10796.996 +17562,2025-03-09T05:47:42.138154-07:00,1699.0,10.799789,10799.789 +17563,2025-03-09T05:47:52.940293-07:00,1658.0,10.802139,10802.139 +17564,2025-03-09T05:48:03.729933-07:00,1728.0,10.78964,10789.64 +17565,2025-03-09T05:48:14.542056-07:00,1735.0,10.812123,10812.123 +17566,2025-03-09T05:48:25.343618-07:00,1741.0,10.801562,10801.562 +17567,2025-03-09T05:48:36.139563-07:00,1658.0,10.795945,10795.945 +17568,2025-03-09T05:48:46.932973-07:00,1679.0,10.79341,10793.41 +17569,2025-03-09T05:48:57.739124-07:00,1655.0,10.806151,10806.151 +17570,2025-03-09T05:49:08.537999-07:00,1689.0,10.798875,10798.875 +17571,2025-03-09T05:49:19.337211-07:00,1699.0,10.799212,10799.212 +17572,2025-03-09T05:49:30.135295-07:00,1651.0,10.798084,10798.084 +17573,2025-03-09T05:49:40.933299-07:00,1738.0,10.798004,10798.004 +17574,2025-03-09T05:49:51.734994-07:00,1739.0,10.801695,10801.695 +17575,2025-03-09T05:50:02.534369-07:00,1718.0,10.799375,10799.375 +17576,2025-03-09T05:50:13.332541-07:00,1699.0,10.798172,10798.172 +17577,2025-03-09T05:50:24.129501-07:00,1741.0,10.79696,10796.96 +17578,2025-03-09T05:50:34.926195-07:00,1689.0,10.796694,10796.694 +17579,2025-03-09T05:50:45.728969-07:00,1739.0,10.802774,10802.774 +17580,2025-03-09T05:50:56.522999-07:00,1713.0,10.79403,10794.03 +17581,2025-03-09T05:51:07.322156-07:00,1739.0,10.799157,10799.157 +17582,2025-03-09T05:51:18.121951-07:00,1681.0,10.799795,10799.795 +17583,2025-03-09T05:51:28.927185-07:00,1741.0,10.805234,10805.234 +17584,2025-03-09T05:51:39.718934-07:00,1687.0,10.791749,10791.749 +17585,2025-03-09T05:51:50.521931-07:00,1735.0,10.802997,10802.997 +17586,2025-03-09T05:52:01.328989-07:00,1739.0,10.807058,10807.058 +17587,2025-03-09T05:52:12.133496-07:00,1716.0,10.804507,10804.507 +17588,2025-03-09T05:52:22.930181-07:00,1723.0,10.796685,10796.685 +17589,2025-03-09T05:52:33.723219-07:00,1686.0,10.793038,10793.038 +17590,2025-03-09T05:52:44.531546-07:00,1713.0,10.808327,10808.327 +17591,2025-03-09T05:52:55.334256-07:00,1671.0,10.80271,10802.71 +17592,2025-03-09T05:53:06.133262-07:00,1735.0,10.799006,10799.006 +17593,2025-03-09T05:53:16.934336-07:00,1719.0,10.801074,10801.074 +17594,2025-03-09T05:53:27.733437-07:00,1701.0,10.799101,10799.101 +17595,2025-03-09T05:53:38.537067-07:00,1683.0,10.80363,10803.63 +17596,2025-03-09T05:53:49.333984-07:00,1679.0,10.796917,10796.917 +17597,2025-03-09T05:54:00.139987-07:00,1654.0,10.806003,10806.003 +17598,2025-03-09T05:54:10.941075-07:00,1675.0,10.801088,10801.088 +17599,2025-03-09T05:54:21.738938-07:00,1684.0,10.797863,10797.863 +17600,2025-03-09T05:54:32.535610-07:00,1737.0,10.796672,10796.672 +17601,2025-03-09T05:54:43.340938-07:00,1728.0,10.805328,10805.328 +17602,2025-03-09T05:54:54.141101-07:00,1682.0,10.800163,10800.163 +17603,2025-03-09T05:55:04.934942-07:00,1678.0,10.793841,10793.841 +17604,2025-03-09T05:55:15.742163-07:00,1735.0,10.807221,10807.221 +17605,2025-03-09T05:55:26.541166-07:00,1654.0,10.799003,10799.003 +17606,2025-03-09T05:55:37.334936-07:00,1706.0,10.79377,10793.77 +17607,2025-03-09T05:55:48.140649-07:00,1735.0,10.805713,10805.713 +17608,2025-03-09T05:55:58.934268-07:00,1729.0,10.793619,10793.619 +17609,2025-03-09T05:56:09.742312-07:00,1729.0,10.808044,10808.044 +17610,2025-03-09T05:56:20.534310-07:00,1662.0,10.791998,10791.998 +17611,2025-03-09T05:56:31.335811-07:00,1699.0,10.801501,10801.501 +17612,2025-03-09T05:56:42.137170-07:00,1737.0,10.801359,10801.359 +17613,2025-03-09T05:56:52.939140-07:00,1680.0,10.80197,10801.97 +17614,2025-03-09T05:57:03.743531-07:00,1651.0,10.804391,10804.391 +17615,2025-03-09T05:57:14.537790-07:00,1730.0,10.794259,10794.259 +17616,2025-03-09T05:57:25.337948-07:00,1678.0,10.800158,10800.158 +17617,2025-03-09T05:57:36.148002-07:00,1731.0,10.810054,10810.054 +17618,2025-03-09T05:57:46.950943-07:00,1647.0,10.802941,10802.941 +17619,2025-03-09T05:57:57.752642-07:00,1737.0,10.801699,10801.699 +17620,2025-03-09T05:58:08.555096-07:00,1733.0,10.802454,10802.454 +17621,2025-03-09T05:58:19.366946-07:00,1680.0,10.81185,10811.85 +17622,2025-03-09T05:58:30.163344-07:00,1722.0,10.796398,10796.398 +17623,2025-03-09T05:58:40.977309-07:00,1697.0,10.813965,10813.965 +17624,2025-03-09T05:58:51.779038-07:00,1650.0,10.801729,10801.729 +17625,2025-03-09T05:59:02.587262-07:00,1690.0,10.808224,10808.224 +17626,2025-03-09T05:59:13.391489-07:00,1738.0,10.804227,10804.227 +17627,2025-03-09T05:59:24.201289-07:00,1730.0,10.8098,10809.8 +17628,2025-03-09T05:59:34.999239-07:00,1714.0,10.79795,10797.95 +17629,2025-03-09T05:59:45.809403-07:00,1737.0,10.810164,10810.164 +17630,2025-03-09T05:59:56.605242-07:00,1731.0,10.795839,10795.839 +17631,2025-03-09T06:00:07.407252-07:00,1737.0,10.80201,10802.01 +17632,2025-03-09T06:00:18.202293-07:00,1648.0,10.795041,10795.041 +17633,2025-03-09T06:00:29.010010-07:00,1737.0,10.807717,10807.717 +17634,2025-03-09T06:00:39.802940-07:00,1643.0,10.79293,10792.93 +17635,2025-03-09T06:00:50.609168-07:00,1736.0,10.806228,10806.228 +17636,2025-03-09T06:01:01.413262-07:00,1738.0,10.804094,10804.094 +17637,2025-03-09T06:01:12.215988-07:00,1664.0,10.802726,10802.726 +17638,2025-03-09T06:01:23.014232-07:00,1735.0,10.798244,10798.244 +17639,2025-03-09T06:01:33.823936-07:00,1706.0,10.809704,10809.704 +17640,2025-03-09T06:01:44.634241-07:00,1678.0,10.810305,10810.305 +17641,2025-03-09T06:01:55.435760-07:00,1680.0,10.801519,10801.519 +17642,2025-03-09T06:02:06.252210-07:00,1699.0,10.81645,10816.45 +17643,2025-03-09T06:02:17.054118-07:00,1728.0,10.801908,10801.908 +17644,2025-03-09T06:02:27.861945-07:00,1693.0,10.807827,10807.827 +17645,2025-03-09T06:02:38.668932-07:00,1691.0,10.806987,10806.987 +17646,2025-03-09T06:02:49.476938-07:00,1712.0,10.808006,10808.006 +17647,2025-03-09T06:03:00.279164-07:00,1735.0,10.802226,10802.226 +17648,2025-03-09T06:03:11.083938-07:00,1734.0,10.804774,10804.774 +17649,2025-03-09T06:03:21.890090-07:00,1735.0,10.806152,10806.152 +17650,2025-03-09T06:03:32.692932-07:00,1737.0,10.802842,10802.842 +17651,2025-03-09T06:03:43.491174-07:00,1711.0,10.798242,10798.242 +17652,2025-03-09T06:03:54.302062-07:00,1731.0,10.810888,10810.888 +17653,2025-03-09T06:04:05.109212-07:00,1733.0,10.80715,10807.15 +17654,2025-03-09T06:04:15.918013-07:00,1713.0,10.808801,10808.801 +17655,2025-03-09T06:04:26.726446-07:00,1730.0,10.808433,10808.433 +17656,2025-03-09T06:04:37.528925-07:00,1646.0,10.802479,10802.479 +17657,2025-03-09T06:04:48.339972-07:00,1730.0,10.811047,10811.047 +17658,2025-03-09T06:04:59.143269-07:00,1735.0,10.803297,10803.297 +17659,2025-03-09T06:05:09.947683-07:00,1723.0,10.804414,10804.414 +17660,2025-03-09T06:05:20.749376-07:00,1728.0,10.801693,10801.693 +17661,2025-03-09T06:05:31.568936-07:00,1705.0,10.81956,10819.56 +17662,2025-03-09T06:05:42.458924-07:00,1714.0,10.889988,10889.988 +17663,2025-03-09T06:05:53.262708-07:00,1687.0,10.803784,10803.784 +17664,2025-03-09T06:06:04.069680-07:00,1659.0,10.806972,10806.972 +17665,2025-03-09T06:06:14.868631-07:00,1685.0,10.798951,10798.951 +17666,2025-03-09T06:06:25.671000-07:00,1738.0,10.802369,10802.369 +17667,2025-03-09T06:06:36.480577-07:00,1715.0,10.809577,10809.577 +17668,2025-03-09T06:06:47.285573-07:00,1735.0,10.804996,10804.996 +17669,2025-03-09T06:06:58.088572-07:00,1734.0,10.802999,10802.999 +17670,2025-03-09T06:07:08.894857-07:00,1726.0,10.806285,10806.285 +17671,2025-03-09T06:07:19.699855-07:00,1661.0,10.804998,10804.998 +17672,2025-03-09T06:07:30.502626-07:00,1712.0,10.802771,10802.771 +17673,2025-03-09T06:07:41.318803-07:00,1642.0,10.816177,10816.177 +17674,2025-03-09T06:07:52.115575-07:00,1667.0,10.796772,10796.772 +17675,2025-03-09T06:08:02.924563-07:00,1685.0,10.808988,10808.988 +17676,2025-03-09T06:08:13.734580-07:00,1652.0,10.810017,10810.017 +17677,2025-03-09T06:08:24.540778-07:00,1693.0,10.806198,10806.198 +17678,2025-03-09T06:08:35.343547-07:00,1693.0,10.802769,10802.769 +17679,2025-03-09T06:08:46.147567-07:00,1681.0,10.80402,10804.02 +17680,2025-03-09T06:08:56.951635-07:00,1733.0,10.804068,10804.068 +17681,2025-03-09T06:09:07.767658-07:00,1650.0,10.816023,10816.023 +17682,2025-03-09T06:09:18.567839-07:00,1718.0,10.800181,10800.181 +17683,2025-03-09T06:09:29.374664-07:00,1737.0,10.806825,10806.825 +17684,2025-03-09T06:09:40.181720-07:00,1680.0,10.807056,10807.056 +17685,2025-03-09T06:09:50.980935-07:00,1735.0,10.799215,10799.215 +17686,2025-03-09T06:10:01.780895-07:00,1679.0,10.79996,10799.96 +17687,2025-03-09T06:10:12.583922-07:00,1721.0,10.803027,10803.027 +17688,2025-03-09T06:10:23.395631-07:00,1717.0,10.811709,10811.709 +17689,2025-03-09T06:10:34.200242-07:00,1727.0,10.804611,10804.611 +17690,2025-03-09T06:10:44.995082-07:00,1730.0,10.79484,10794.84 +17691,2025-03-09T06:10:55.798702-07:00,1731.0,10.80362,10803.62 +17692,2025-03-09T06:11:06.590825-07:00,1734.0,10.792123,10792.123 +17693,2025-03-09T06:11:17.393755-07:00,1664.0,10.80293,10802.93 +17694,2025-03-09T06:11:28.196721-07:00,1687.0,10.802966,10802.966 +17695,2025-03-09T06:11:39.006786-07:00,1712.0,10.810065,10810.065 +17696,2025-03-09T06:11:49.802772-07:00,1680.0,10.795986,10795.986 +17697,2025-03-09T06:12:00.612995-07:00,1717.0,10.810223,10810.223 +17698,2025-03-09T06:12:11.417854-07:00,1673.0,10.804859,10804.859 +17699,2025-03-09T06:12:22.225659-07:00,1727.0,10.807805,10807.805 +17700,2025-03-09T06:12:33.027872-07:00,1728.0,10.802213,10802.213 +17701,2025-03-09T06:12:43.831579-07:00,1669.0,10.803707,10803.707 +17702,2025-03-09T06:12:54.638869-07:00,1693.0,10.80729,10807.29 +17703,2025-03-09T06:13:05.433101-07:00,1722.0,10.794232,10794.232 +17704,2025-03-09T06:13:16.241871-07:00,1707.0,10.80877,10808.77 +17705,2025-03-09T06:13:27.044677-07:00,1679.0,10.802806,10802.806 +17706,2025-03-09T06:13:37.832122-07:00,1715.0,10.787445,10787.445 +17707,2025-03-09T06:13:48.639564-07:00,1707.0,10.807442,10807.442 +17708,2025-03-09T06:13:59.426559-07:00,1728.0,10.786995,10786.995 +17709,2025-03-09T06:14:10.225035-07:00,1733.0,10.798476,10798.476 +17710,2025-03-09T06:14:21.020895-07:00,1669.0,10.79586,10795.86 +17711,2025-03-09T06:14:31.818844-07:00,1731.0,10.797949,10797.949 +17712,2025-03-09T06:14:42.617870-07:00,1733.0,10.799026,10799.026 +17713,2025-03-09T06:14:53.421839-07:00,1699.0,10.803969,10803.969 +17714,2025-03-09T06:15:04.228930-07:00,1713.0,10.807091,10807.091 +17715,2025-03-09T06:15:15.026968-07:00,1657.0,10.798038,10798.038 +17716,2025-03-09T06:15:25.829846-07:00,1729.0,10.802878,10802.878 +17717,2025-03-09T06:15:36.639586-07:00,1682.0,10.80974,10809.74 +17718,2025-03-09T06:15:47.435594-07:00,1685.0,10.796008,10796.008 +17719,2025-03-09T06:15:58.240111-07:00,1726.0,10.804517,10804.517 +17720,2025-03-09T06:16:09.036904-07:00,1703.0,10.796793,10796.793 +17721,2025-03-09T06:16:19.840552-07:00,1687.0,10.803648,10803.648 +17722,2025-03-09T06:16:30.636803-07:00,1729.0,10.796251,10796.251 +17723,2025-03-09T06:16:41.434582-07:00,1702.0,10.797779,10797.779 +17724,2025-03-09T06:16:52.238572-07:00,1728.0,10.80399,10803.99 +17725,2025-03-09T06:17:03.035970-07:00,1728.0,10.797398,10797.398 +17726,2025-03-09T06:17:13.834677-07:00,1715.0,10.798707,10798.707 +17727,2025-03-09T06:17:24.634569-07:00,1707.0,10.799892,10799.892 +17728,2025-03-09T06:17:35.434814-07:00,1707.0,10.800245,10800.245 +17729,2025-03-09T06:17:46.243884-07:00,1711.0,10.80907,10809.07 +17730,2025-03-09T06:17:57.046131-07:00,1687.0,10.802247,10802.247 +17731,2025-03-09T06:18:07.853564-07:00,1734.0,10.807433,10807.433 +17732,2025-03-09T06:18:18.657779-07:00,1725.0,10.804215,10804.215 +17733,2025-03-09T06:18:29.462574-07:00,1689.0,10.804795,10804.795 +17734,2025-03-09T06:18:40.259701-07:00,1721.0,10.797127,10797.127 +17735,2025-03-09T06:18:51.064605-07:00,1659.0,10.804904,10804.904 +17736,2025-03-09T06:19:01.860645-07:00,1728.0,10.79604,10796.04 +17737,2025-03-09T06:19:12.663798-07:00,1663.0,10.803153,10803.153 +17738,2025-03-09T06:19:23.468559-07:00,1693.0,10.804761,10804.761 +17739,2025-03-09T06:19:34.270032-07:00,1717.0,10.801473,10801.473 +17740,2025-03-09T06:19:45.069575-07:00,1647.0,10.799543,10799.543 +17741,2025-03-09T06:19:55.867958-07:00,1734.0,10.798383,10798.383 +17742,2025-03-09T06:20:06.676621-07:00,1693.0,10.808663,10808.663 +17743,2025-03-09T06:20:17.472939-07:00,1729.0,10.796318,10796.318 +17744,2025-03-09T06:20:28.281903-07:00,1649.0,10.808964,10808.964 +17745,2025-03-09T06:20:39.079930-07:00,1647.0,10.798027,10798.027 +17746,2025-03-09T06:20:49.878191-07:00,1697.0,10.798261,10798.261 +17747,2025-03-09T06:21:00.692794-07:00,1647.0,10.814603,10814.603 +17748,2025-03-09T06:21:11.494582-07:00,1682.0,10.801788,10801.788 +17749,2025-03-09T06:21:22.293585-07:00,1675.0,10.799003,10799.003 +17750,2025-03-09T06:21:33.098813-07:00,1687.0,10.805228,10805.228 +17751,2025-03-09T06:21:43.900934-07:00,1719.0,10.802121,10802.121 +17752,2025-03-09T06:21:54.713570-07:00,1699.0,10.812636,10812.636 +17753,2025-03-09T06:22:05.512576-07:00,1686.0,10.799006,10799.006 +17754,2025-03-09T06:22:16.310577-07:00,1733.0,10.798001,10798.001 +17755,2025-03-09T06:22:27.111918-07:00,1731.0,10.801341,10801.341 +17756,2025-03-09T06:22:37.910117-07:00,1728.0,10.798199,10798.199 +17757,2025-03-09T06:22:48.718898-07:00,1691.0,10.808781,10808.781 +17758,2025-03-09T06:22:59.517846-07:00,1727.0,10.798948,10798.948 +17759,2025-03-09T06:23:10.323967-07:00,1730.0,10.806121,10806.121 +17760,2025-03-09T06:23:21.128838-07:00,1715.0,10.804871,10804.871 +17761,2025-03-09T06:23:31.931963-07:00,1684.0,10.803125,10803.125 +17762,2025-03-09T06:23:42.739709-07:00,1657.0,10.807746,10807.746 +17763,2025-03-09T06:23:53.549788-07:00,1733.0,10.810079,10810.079 +17764,2025-03-09T06:24:04.350817-07:00,1711.0,10.801029,10801.029 +17765,2025-03-09T06:24:15.158567-07:00,1680.0,10.80775,10807.75 +17766,2025-03-09T06:24:25.965572-07:00,1685.0,10.807005,10807.005 +17767,2025-03-09T06:24:36.773641-07:00,1679.0,10.808069,10808.069 +17768,2025-03-09T06:24:47.573853-07:00,1695.0,10.800212,10800.212 +17769,2025-03-09T06:24:58.375869-07:00,1732.0,10.802016,10802.016 +17770,2025-03-09T06:25:09.176626-07:00,1697.0,10.800757,10800.757 +17771,2025-03-09T06:25:19.987873-07:00,1698.0,10.811247,10811.247 +17772,2025-03-09T06:25:30.793786-07:00,1692.0,10.805913,10805.913 +17773,2025-03-09T06:25:41.594885-07:00,1681.0,10.801099,10801.099 +17774,2025-03-09T06:25:52.393559-07:00,1698.0,10.798674,10798.674 +17775,2025-03-09T06:26:03.195940-07:00,1683.0,10.802381,10802.381 +17776,2025-03-09T06:26:14.001766-07:00,1693.0,10.805826,10805.826 +17777,2025-03-09T06:26:24.796342-07:00,1701.0,10.794576,10794.576 +17778,2025-03-09T06:26:35.602565-07:00,1687.0,10.806223,10806.223 +17779,2025-03-09T06:26:46.396764-07:00,1727.0,10.794199,10794.199 +17780,2025-03-09T06:26:57.196024-07:00,1693.0,10.79926,10799.26 +17781,2025-03-09T06:27:07.998914-07:00,1728.0,10.80289,10802.89 +17782,2025-03-09T06:27:18.801836-07:00,1707.0,10.802922,10802.922 +17783,2025-03-09T06:27:29.603958-07:00,1731.0,10.802122,10802.122 +17784,2025-03-09T06:27:40.396434-07:00,1675.0,10.792476,10792.476 +17785,2025-03-09T06:27:51.200813-07:00,1712.0,10.804379,10804.379 +17786,2025-03-09T06:28:02.007893-07:00,1648.0,10.80708,10807.08 +17787,2025-03-09T06:28:12.811476-07:00,1674.0,10.803583,10803.583 +17788,2025-03-09T06:28:23.610940-07:00,1674.0,10.799464,10799.464 +17789,2025-03-09T06:28:34.413290-07:00,1723.0,10.80235,10802.35 +17790,2025-03-09T06:28:45.217746-07:00,1668.0,10.804456,10804.456 +17791,2025-03-09T06:28:56.019544-07:00,1648.0,10.801798,10801.798 +17792,2025-03-09T06:29:06.817872-07:00,1725.0,10.798328,10798.328 +17793,2025-03-09T06:29:17.622570-07:00,1670.0,10.804698,10804.698 +17794,2025-03-09T06:29:28.429051-07:00,1713.0,10.806481,10806.481 +17795,2025-03-09T06:29:39.232800-07:00,1730.0,10.803749,10803.749 +17796,2025-03-09T06:29:50.023573-07:00,1722.0,10.790773,10790.773 +17797,2025-03-09T06:30:00.827806-07:00,1682.0,10.804233,10804.233 +17798,2025-03-09T06:30:11.625563-07:00,1712.0,10.797757,10797.757 +17799,2025-03-09T06:30:11.852901-07:00,1712.0,0.227338,227.338 +17800,2025-03-09T06:30:22.433093-07:00,1681.0,10.580192,10580.192 +17801,2025-03-09T06:30:33.237712-07:00,1718.0,10.804619,10804.619 +17802,2025-03-09T06:30:44.040854-07:00,1729.0,10.803142,10803.142 +17803,2025-03-09T06:30:54.848606-07:00,1703.0,10.807752,10807.752 +17804,2025-03-09T06:31:05.646784-07:00,1677.0,10.798178,10798.178 +17805,2025-03-09T06:31:16.463034-07:00,1731.0,10.81625,10816.25 +17806,2025-03-09T06:31:27.263476-07:00,1699.0,10.800442,10800.442 +17807,2025-03-09T06:31:38.062792-07:00,1733.0,10.799316,10799.316 +17808,2025-03-09T06:31:48.873870-07:00,1723.0,10.811078,10811.078 +17809,2025-03-09T06:31:59.679903-07:00,1683.0,10.806033,10806.033 +17810,2025-03-09T06:32:10.484565-07:00,1658.0,10.804662,10804.662 +17811,2025-03-09T06:32:21.274625-07:00,1728.0,10.79006,10790.06 +17812,2025-03-09T06:32:32.080565-07:00,1729.0,10.80594,10805.94 +17813,2025-03-09T06:32:42.881633-07:00,1712.0,10.801068,10801.068 +17814,2025-03-09T06:32:53.692562-07:00,1711.0,10.810929,10810.929 +17815,2025-03-09T06:33:04.489605-07:00,1732.0,10.797043,10797.043 +17816,2025-03-09T06:33:15.297580-07:00,1719.0,10.807975,10807.975 +17817,2025-03-09T06:33:26.101770-07:00,1657.0,10.80419,10804.19 +17818,2025-03-09T06:33:36.906051-07:00,1646.0,10.804281,10804.281 +17819,2025-03-09T06:33:47.702885-07:00,1730.0,10.796834,10796.834 +17820,2025-03-09T06:33:58.513939-07:00,1722.0,10.811054,10811.054 +17821,2025-03-09T06:34:09.314309-07:00,1716.0,10.80037,10800.37 +17822,2025-03-09T06:34:20.110771-07:00,1702.0,10.796462,10796.462 +17823,2025-03-09T06:34:30.914745-07:00,1728.0,10.803974,10803.974 +17824,2025-03-09T06:34:41.724382-07:00,1710.0,10.809637,10809.637 +17825,2025-03-09T06:34:52.527099-07:00,1731.0,10.802717,10802.717 +17826,2025-03-09T06:35:03.331488-07:00,1727.0,10.804389,10804.389 +17827,2025-03-09T06:35:14.134462-07:00,1663.0,10.802974,10802.974 +17828,2025-03-09T06:35:24.948868-07:00,1643.0,10.814406,10814.406 +17829,2025-03-09T06:35:35.746886-07:00,1703.0,10.798018,10798.018 +17830,2025-03-09T06:35:46.537576-07:00,1691.0,10.79069,10790.69 +17831,2025-03-09T06:35:57.348927-07:00,1697.0,10.811351,10811.351 +17832,2025-03-09T06:36:08.155773-07:00,1686.0,10.806846,10806.846 +17833,2025-03-09T06:36:18.959189-07:00,1731.0,10.803416,10803.416 +17834,2025-03-09T06:36:29.756478-07:00,1729.0,10.797289,10797.289 +17835,2025-03-09T06:36:40.562386-07:00,1731.0,10.805908,10805.908 +17836,2025-03-09T06:36:51.374229-07:00,1697.0,10.811843,10811.843 +17837,2025-03-09T06:37:02.173752-07:00,1712.0,10.799523,10799.523 +17838,2025-03-09T06:37:12.980123-07:00,1728.0,10.806371,10806.371 +17839,2025-03-09T06:37:23.791813-07:00,1725.0,10.81169,10811.69 +17840,2025-03-09T06:37:34.595887-07:00,1719.0,10.804074,10804.074 +17841,2025-03-09T06:37:45.397988-07:00,1681.0,10.802101,10802.101 +17842,2025-03-09T06:37:56.208723-07:00,1728.0,10.810735,10810.735 +17843,2025-03-09T06:38:07.013777-07:00,1697.0,10.805054,10805.054 +17844,2025-03-09T06:38:17.812582-07:00,1689.0,10.798805,10798.805 +17845,2025-03-09T06:38:28.616843-07:00,1731.0,10.804261,10804.261 +17846,2025-03-09T06:38:39.419565-07:00,1641.0,10.802722,10802.722 +17847,2025-03-09T06:38:50.226573-07:00,1719.0,10.807008,10807.008 +17848,2025-03-09T06:39:01.037809-07:00,1712.0,10.811236,10811.236 +17849,2025-03-09T06:39:11.837703-07:00,1696.0,10.799894,10799.894 +17850,2025-03-09T06:39:22.639728-07:00,1729.0,10.802025,10802.025 +17851,2025-03-09T06:39:33.446676-07:00,1641.0,10.806948,10806.948 +17852,2025-03-09T06:39:44.264305-07:00,1729.0,10.817629,10817.629 +17853,2025-03-09T06:39:55.070938-07:00,1696.0,10.806633,10806.633 +17854,2025-03-09T06:40:05.874984-07:00,1653.0,10.804046,10804.046 +17855,2025-03-09T06:40:16.682606-07:00,1701.0,10.807622,10807.622 +17856,2025-03-09T06:40:27.481906-07:00,1685.0,10.7993,10799.3 +17857,2025-03-09T06:40:38.295203-07:00,1731.0,10.813297,10813.297 +17858,2025-03-09T06:40:49.100135-07:00,1681.0,10.804932,10804.932 +17859,2025-03-09T06:40:59.901104-07:00,1729.0,10.800969,10800.969 +17860,2025-03-09T06:41:10.710571-07:00,1727.0,10.809467,10809.467 +17861,2025-03-09T06:41:21.519873-07:00,1670.0,10.809302,10809.302 +17862,2025-03-09T06:41:32.316575-07:00,1707.0,10.796702,10796.702 +17863,2025-03-09T06:41:43.120001-07:00,1667.0,10.803426,10803.426 +17864,2025-03-09T06:41:53.930582-07:00,1705.0,10.810581,10810.581 +17865,2025-03-09T06:42:04.732832-07:00,1729.0,10.80225,10802.25 +17866,2025-03-09T06:42:15.540550-07:00,1733.0,10.807718,10807.718 +17867,2025-03-09T06:42:26.339576-07:00,1729.0,10.799026,10799.026 +17868,2025-03-09T06:42:37.143632-07:00,1680.0,10.804056,10804.056 +17869,2025-03-09T06:42:47.952810-07:00,1726.0,10.809178,10809.178 +17870,2025-03-09T06:42:58.759577-07:00,1728.0,10.806767,10806.767 +17871,2025-03-09T06:43:09.559569-07:00,1686.0,10.799992,10799.992 +17872,2025-03-09T06:43:20.362573-07:00,1667.0,10.803004,10803.004 +17873,2025-03-09T06:43:31.174808-07:00,1661.0,10.812235,10812.235 +17874,2025-03-09T06:43:41.973581-07:00,1685.0,10.798773,10798.773 +17875,2025-03-09T06:43:52.776756-07:00,1722.0,10.803175,10803.175 +17876,2025-03-09T06:44:03.593560-07:00,1690.0,10.816804,10816.804 +17877,2025-03-09T06:44:14.396617-07:00,1728.0,10.803057,10803.057 +17878,2025-03-09T06:44:25.203435-07:00,1642.0,10.806818,10806.818 +17879,2025-03-09T06:44:35.994875-07:00,1712.0,10.79144,10791.44 +17880,2025-03-09T06:44:46.811012-07:00,1728.0,10.816137,10816.137 +17881,2025-03-09T06:44:57.607130-07:00,1664.0,10.796118,10796.118 +17882,2025-03-09T06:45:08.422447-07:00,1663.0,10.815317,10815.317 +17883,2025-03-09T06:45:19.229208-07:00,1730.0,10.806761,10806.761 +17884,2025-03-09T06:45:30.034950-07:00,1717.0,10.805742,10805.742 +17885,2025-03-09T06:45:40.844639-07:00,1730.0,10.809689,10809.689 +17886,2025-03-09T06:45:51.647108-07:00,1729.0,10.802469,10802.469 +17887,2025-03-09T06:46:02.451583-07:00,1648.0,10.804475,10804.475 +17888,2025-03-09T06:46:13.260581-07:00,1669.0,10.808998,10808.998 +17889,2025-03-09T06:46:24.067579-07:00,1711.0,10.806998,10806.998 +17890,2025-03-09T06:46:34.879797-07:00,1685.0,10.812218,10812.218 +17891,2025-03-09T06:46:45.684807-07:00,1728.0,10.80501,10805.01 +17892,2025-03-09T06:46:56.495799-07:00,1648.0,10.810992,10810.992 +17893,2025-03-09T06:47:07.298719-07:00,1711.0,10.80292,10802.92 +17894,2025-03-09T06:47:18.101625-07:00,1728.0,10.802906,10802.906 +17895,2025-03-09T06:47:28.910972-07:00,1719.0,10.809347,10809.347 +17896,2025-03-09T06:47:39.726870-07:00,1711.0,10.815898,10815.898 +17897,2025-03-09T06:47:50.527964-07:00,1719.0,10.801094,10801.094 +17898,2025-03-09T06:48:01.337628-07:00,1686.0,10.809664,10809.664 +17899,2025-03-09T06:48:12.146835-07:00,1648.0,10.809207,10809.207 +17900,2025-03-09T06:48:22.955572-07:00,1728.0,10.808737,10808.737 +17901,2025-03-09T06:48:33.759562-07:00,1632.0,10.80399,10803.99 +17902,2025-03-09T06:48:44.576194-07:00,1719.0,10.816632,10816.632 +17903,2025-03-09T06:48:55.375870-07:00,1710.0,10.799676,10799.676 +17904,2025-03-09T06:49:06.187571-07:00,1713.0,10.811701,10811.701 +17905,2025-03-09T06:49:17.001882-07:00,1658.0,10.814311,10814.311 +17906,2025-03-09T06:49:27.810178-07:00,1714.0,10.808296,10808.296 +17907,2025-03-09T06:49:38.618566-07:00,1683.0,10.808388,10808.388 +17908,2025-03-09T06:49:49.415895-07:00,1680.0,10.797329,10797.329 +17909,2025-03-09T06:50:00.217862-07:00,1665.0,10.801967,10801.967 +17910,2025-03-09T06:50:11.029972-07:00,1728.0,10.81211,10812.11 +17911,2025-03-09T06:50:21.830982-07:00,1709.0,10.80101,10801.01 +17912,2025-03-09T06:50:32.636630-07:00,1680.0,10.805648,10805.648 +17913,2025-03-09T06:50:43.438707-07:00,1728.0,10.802077,10802.077 +17914,2025-03-09T06:50:54.235993-07:00,1731.0,10.797286,10797.286 +17915,2025-03-09T06:51:05.044571-07:00,1731.0,10.808578,10808.578 +17916,2025-03-09T06:51:15.860630-07:00,1679.0,10.816059,10816.059 +17917,2025-03-09T06:51:26.661573-07:00,1695.0,10.800943,10800.943 +17918,2025-03-09T06:51:37.462261-07:00,1726.0,10.800688,10800.688 +17919,2025-03-09T06:51:48.277834-07:00,1675.0,10.815573,10815.573 +17920,2025-03-09T06:51:59.078570-07:00,1729.0,10.800736,10800.736 +17921,2025-03-09T06:52:09.894582-07:00,1729.0,10.816012,10816.012 +17922,2025-03-09T06:52:20.702584-07:00,1733.0,10.808002,10808.002 +17923,2025-03-09T06:52:31.505887-07:00,1646.0,10.803303,10803.303 +17924,2025-03-09T06:52:42.303741-07:00,1653.0,10.797854,10797.854 +17925,2025-03-09T06:52:53.111255-07:00,1663.0,10.807514,10807.514 +17926,2025-03-09T06:53:03.916678-07:00,1729.0,10.805423,10805.423 +17927,2025-03-09T06:53:14.725255-07:00,1648.0,10.808577,10808.577 +17928,2025-03-09T06:53:25.528076-07:00,1731.0,10.802821,10802.821 +17929,2025-03-09T06:53:36.337043-07:00,1647.0,10.808967,10808.967 +17930,2025-03-09T06:53:47.141631-07:00,1655.0,10.804588,10804.588 +17931,2025-03-09T06:53:57.944935-07:00,1712.0,10.803304,10803.304 +17932,2025-03-09T06:54:08.749564-07:00,1683.0,10.804629,10804.629 +17933,2025-03-09T06:54:19.561148-07:00,1728.0,10.811584,10811.584 +17934,2025-03-09T06:54:30.374576-07:00,1684.0,10.813428,10813.428 +17935,2025-03-09T06:54:41.179583-07:00,1697.0,10.805007,10805.007 +17936,2025-03-09T06:54:51.992565-07:00,1699.0,10.812982,10812.982 +17937,2025-03-09T06:55:02.806172-07:00,1686.0,10.813607,10813.607 +17938,2025-03-09T06:55:13.607198-07:00,1712.0,10.801026,10801.026 +17939,2025-03-09T06:55:24.414885-07:00,1715.0,10.807687,10807.687 +17940,2025-03-09T06:55:35.230847-07:00,1691.0,10.815962,10815.962 +17941,2025-03-09T06:55:46.031462-07:00,1726.0,10.800615,10800.615 +17942,2025-03-09T06:55:56.845582-07:00,1669.0,10.81412,10814.12 +17943,2025-03-09T06:56:07.650576-07:00,1731.0,10.804994,10804.994 +17944,2025-03-09T06:56:18.462560-07:00,1658.0,10.811984,10811.984 +17945,2025-03-09T06:56:29.266572-07:00,1710.0,10.804012,10804.012 +17946,2025-03-09T06:56:40.067585-07:00,1728.0,10.801013,10801.013 +17947,2025-03-09T06:56:50.873575-07:00,1727.0,10.80599,10805.99 +17948,2025-03-09T06:57:01.689506-07:00,1716.0,10.815931,10815.931 +17949,2025-03-09T06:57:12.492451-07:00,1686.0,10.802945,10802.945 +17950,2025-03-09T06:57:23.309567-07:00,1684.0,10.817116,10817.116 +17951,2025-03-09T06:57:34.111122-07:00,1731.0,10.801555,10801.555 +17952,2025-03-09T06:57:44.931575-07:00,1723.0,10.820453,10820.453 +17953,2025-03-09T06:57:55.736569-07:00,1679.0,10.804994,10804.994 +17954,2025-03-09T06:58:06.549720-07:00,1646.0,10.813151,10813.151 +17955,2025-03-09T06:58:17.357629-07:00,1713.0,10.807909,10807.909 +17956,2025-03-09T06:58:28.170926-07:00,1730.0,10.813297,10813.297 +17957,2025-03-09T06:58:38.975119-07:00,1666.0,10.804193,10804.193 +17958,2025-03-09T06:58:49.792298-07:00,1689.0,10.817179,10817.179 +17959,2025-03-09T06:59:00.596575-07:00,1693.0,10.804277,10804.277 +17960,2025-03-09T06:59:11.403579-07:00,1729.0,10.807004,10807.004 +17961,2025-03-09T06:59:22.217722-07:00,1647.0,10.814143,10814.143 +17962,2025-03-09T06:59:33.021889-07:00,1729.0,10.804167,10804.167 +17963,2025-03-09T06:59:43.836833-07:00,1718.0,10.814944,10814.944 +17964,2025-03-09T06:59:54.646082-07:00,1693.0,10.809249,10809.249 +17965,2025-03-09T07:00:05.456987-07:00,1731.0,10.810905,10810.905 +17966,2025-03-09T07:00:16.269583-07:00,1729.0,10.812596,10812.596 +17967,2025-03-09T07:00:27.072581-07:00,1733.0,10.802998,10802.998 +17968,2025-03-09T07:00:37.892570-07:00,1731.0,10.819989,10819.989 +17969,2025-03-09T07:00:48.695946-07:00,1679.0,10.803376,10803.376 +17970,2025-03-09T07:00:59.503575-07:00,1714.0,10.807629,10807.629 +17971,2025-03-09T07:01:10.311647-07:00,1722.0,10.808072,10808.072 +17972,2025-03-09T07:01:21.118123-07:00,1677.0,10.806476,10806.476 +17973,2025-03-09T07:01:31.930856-07:00,1654.0,10.812733,10812.733 +17974,2025-03-09T07:01:42.738237-07:00,1727.0,10.807381,10807.381 +17975,2025-03-09T07:01:53.546639-07:00,1729.0,10.808402,10808.402 +17976,2025-03-09T07:02:04.353565-07:00,1691.0,10.806926,10806.926 +17977,2025-03-09T07:02:15.160565-07:00,1728.0,10.807,10807.0 +17978,2025-03-09T07:02:25.965585-07:00,1710.0,10.80502,10805.02 +17979,2025-03-09T07:02:36.782710-07:00,1711.0,10.817125,10817.125 +17980,2025-03-09T07:02:47.588826-07:00,1706.0,10.806116,10806.116 +17981,2025-03-09T07:02:58.403127-07:00,1719.0,10.814301,10814.301 +17982,2025-03-09T07:03:09.200598-07:00,1671.0,10.797471,10797.471 +17983,2025-03-09T07:03:20.009476-07:00,1647.0,10.808878,10808.878 +17984,2025-03-09T07:03:30.813591-07:00,1709.0,10.804115,10804.115 +17985,2025-03-09T07:03:41.622901-07:00,1692.0,10.80931,10809.31 +17986,2025-03-09T07:03:52.424854-07:00,1647.0,10.801953,10801.953 +17987,2025-03-09T07:04:03.234692-07:00,1658.0,10.809838,10809.838 +17988,2025-03-09T07:04:14.044148-07:00,1712.0,10.809456,10809.456 +17989,2025-03-09T07:04:24.850588-07:00,1711.0,10.80644,10806.44 +17990,2025-03-09T07:04:35.655437-07:00,1725.0,10.804849,10804.849 +17991,2025-03-09T07:04:46.473734-07:00,1726.0,10.818297,10818.297 +17992,2025-03-09T07:04:57.274573-07:00,1633.0,10.800839,10800.839 +17993,2025-03-09T07:05:08.082581-07:00,1714.0,10.808008,10808.008 +17994,2025-03-09T07:05:18.892560-07:00,1688.0,10.809979,10809.979 +17995,2025-03-09T07:05:29.704907-07:00,1705.0,10.812347,10812.347 +17996,2025-03-09T07:05:40.547689-07:00,1718.0,10.842782,10842.782 +17997,2025-03-09T07:05:51.365522-07:00,1680.0,10.817833,10817.833 +17998,2025-03-09T07:06:02.171813-07:00,1690.0,10.806291,10806.291 +17999,2025-03-09T07:06:12.978454-07:00,1645.0,10.806641,10806.641 +18000,2025-03-09T07:06:23.789566-07:00,1685.0,10.811112,10811.112 +18001,2025-03-09T07:06:34.596463-07:00,1729.0,10.806897,10806.897 +18002,2025-03-09T07:06:45.406196-07:00,1654.0,10.809733,10809.733 +18003,2025-03-09T07:06:56.214022-07:00,1730.0,10.807826,10807.826 +18004,2025-03-09T07:07:07.023751-07:00,1663.0,10.809729,10809.729 +18005,2025-03-09T07:07:17.828927-07:00,1663.0,10.805176,10805.176 +18006,2025-03-09T07:07:28.636480-07:00,1687.0,10.807553,10807.553 +18007,2025-03-09T07:07:39.445792-07:00,1728.0,10.809312,10809.312 +18008,2025-03-09T07:07:50.254475-07:00,1691.0,10.808683,10808.683 +18009,2025-03-09T07:08:11.865466-07:00,1732.0,21.610991,21610.991 +18010,2025-03-09T07:08:22.670460-07:00,1731.0,10.804994,10804.994 +18011,2025-03-09T07:08:33.467455-07:00,1732.0,10.796995,10796.995 +18012,2025-03-09T07:08:44.272468-07:00,1682.0,10.805013,10805.013 +18013,2025-03-09T07:08:55.080455-07:00,1681.0,10.807987,10807.987 +18014,2025-03-09T07:08:57.765096-07:00,1725.0,2.684641,2684.641 +18015,2025-03-09T07:09:05.888463-07:00,1688.0,8.123367,8123.367 +18016,2025-03-09T07:09:16.693470-07:00,1730.0,10.805007,10805.007 +18017,2025-03-09T07:09:27.489468-07:00,1680.0,10.795998,10795.998 +18018,2025-03-09T07:09:38.300751-07:00,1731.0,10.811283,10811.283 +18019,2025-03-09T07:09:49.112605-07:00,1683.0,10.811854,10811.854 +18020,2025-03-09T07:09:59.922616-07:00,1715.0,10.810011,10810.011 +18021,2025-03-09T07:10:10.730889-07:00,1729.0,10.808273,10808.273 +18022,2025-03-09T07:10:21.540160-07:00,1689.0,10.809271,10809.271 +18023,2025-03-09T07:10:32.349634-07:00,1725.0,10.809474,10809.474 +18024,2025-03-09T07:10:43.151799-07:00,1666.0,10.802165,10802.165 +18025,2025-03-09T07:10:53.958478-07:00,1697.0,10.806679,10806.679 +18026,2025-03-09T07:11:04.776472-07:00,1730.0,10.817994,10817.994 +18027,2025-03-09T07:11:15.579767-07:00,1689.0,10.803295,10803.295 +18028,2025-03-09T07:11:26.394643-07:00,1664.0,10.814876,10814.876 +18029,2025-03-09T07:11:37.203107-07:00,1687.0,10.808464,10808.464 +18030,2025-03-09T07:11:48.001653-07:00,1648.0,10.798546,10798.546 +18031,2025-03-09T07:11:58.815408-07:00,1731.0,10.813755,10813.755 +18032,2025-03-09T07:12:09.619025-07:00,1643.0,10.803617,10803.617 +18033,2025-03-09T07:12:20.422813-07:00,1680.0,10.803788,10803.788 +18034,2025-03-09T07:12:31.235503-07:00,1649.0,10.81269,10812.69 +18035,2025-03-09T07:12:42.041527-07:00,1679.0,10.806024,10806.024 +18036,2025-03-09T07:12:52.849450-07:00,1682.0,10.807923,10807.923 +18037,2025-03-09T07:13:03.663751-07:00,1731.0,10.814301,10814.301 +18038,2025-03-09T07:13:14.472711-07:00,1730.0,10.80896,10808.96 +18039,2025-03-09T07:13:25.280119-07:00,1731.0,10.807408,10807.408 +18040,2025-03-09T07:13:36.089827-07:00,1683.0,10.809708,10809.708 +18041,2025-03-09T07:13:46.896071-07:00,1663.0,10.806244,10806.244 +18042,2025-03-09T07:13:57.692702-07:00,1732.0,10.796631,10796.631 +18043,2025-03-09T07:14:08.500541-07:00,1682.0,10.807839,10807.839 +18044,2025-03-09T07:14:19.306766-07:00,1675.0,10.806225,10806.225 +18045,2025-03-09T07:14:30.112791-07:00,1733.0,10.806025,10806.025 +18046,2025-03-09T07:14:40.928068-07:00,1654.0,10.815277,10815.277 +18047,2025-03-09T07:14:51.728697-07:00,1700.0,10.800629,10800.629 +18048,2025-03-09T07:15:02.537807-07:00,1643.0,10.80911,10809.11 +18049,2025-03-09T07:15:13.345817-07:00,1678.0,10.80801,10808.01 +18050,2025-03-09T07:15:24.152461-07:00,1693.0,10.806644,10806.644 +18051,2025-03-09T07:15:34.971739-07:00,1733.0,10.819278,10819.278 +18052,2025-03-09T07:15:45.775756-07:00,1648.0,10.804017,10804.017 +18053,2025-03-09T07:15:56.589426-07:00,1653.0,10.81367,10813.67 +18054,2025-03-09T07:16:07.388864-07:00,1710.0,10.799438,10799.438 +18055,2025-03-09T07:16:18.200819-07:00,1731.0,10.811955,10811.955 +18056,2025-03-09T07:16:29.011469-07:00,1702.0,10.81065,10810.65 +18057,2025-03-09T07:16:39.821935-07:00,1734.0,10.810466,10810.466 +18058,2025-03-09T07:16:50.631519-07:00,1707.0,10.809584,10809.584 +18059,2025-03-09T07:17:01.444381-07:00,1735.0,10.812862,10812.862 +18060,2025-03-09T07:17:12.251708-07:00,1636.0,10.807327,10807.327 +18061,2025-03-09T07:17:23.062051-07:00,1678.0,10.810343,10810.343 +18062,2025-03-09T07:17:33.866244-07:00,1727.0,10.804193,10804.193 +18063,2025-03-09T07:17:44.681317-07:00,1736.0,10.815073,10815.073 +18064,2025-03-09T07:17:55.482828-07:00,1681.0,10.801511,10801.511 +18065,2025-03-09T07:18:06.286501-07:00,1661.0,10.803673,10803.673 +18066,2025-03-09T07:18:17.097502-07:00,1725.0,10.811001,10811.001 +18067,2025-03-09T07:18:27.898797-07:00,1676.0,10.801295,10801.295 +18068,2025-03-09T07:18:38.707457-07:00,1643.0,10.80866,10808.66 +18069,2025-03-09T07:18:49.517466-07:00,1732.0,10.810009,10810.009 +18070,2025-03-09T07:19:00.325510-07:00,1703.0,10.808044,10808.044 +18071,2025-03-09T07:19:11.129758-07:00,1718.0,10.804248,10804.248 +18072,2025-03-09T07:19:21.941650-07:00,1692.0,10.811892,10811.892 +18073,2025-03-09T07:19:32.752577-07:00,1727.0,10.810927,10810.927 +18074,2025-03-09T07:19:43.555668-07:00,1697.0,10.803091,10803.091 +18075,2025-03-09T07:19:54.365967-07:00,1680.0,10.810299,10810.299 +18076,2025-03-09T07:20:05.167775-07:00,1739.0,10.801808,10801.808 +18077,2025-03-09T07:20:15.981695-07:00,1738.0,10.81392,10813.92 +18078,2025-03-09T07:20:26.792719-07:00,1681.0,10.811024,10811.024 +18079,2025-03-09T07:20:37.596861-07:00,1740.0,10.804142,10804.142 +18080,2025-03-09T07:20:48.402476-07:00,1702.0,10.805615,10805.615 +18081,2025-03-09T07:20:59.218450-07:00,1663.0,10.815974,10815.974 +18082,2025-03-09T07:21:10.022915-07:00,1733.0,10.804465,10804.465 +18083,2025-03-09T07:21:20.842113-07:00,1711.0,10.819198,10819.198 +18084,2025-03-09T07:21:31.656759-07:00,1712.0,10.814646,10814.646 +18085,2025-03-09T07:21:42.464474-07:00,1695.0,10.807715,10807.715 +18086,2025-03-09T07:21:53.285454-07:00,1703.0,10.82098,10820.98 +18087,2025-03-09T07:22:04.089518-07:00,1691.0,10.804064,10804.064 +18088,2025-03-09T07:22:14.898588-07:00,1668.0,10.80907,10809.07 +18089,2025-03-09T07:22:25.713790-07:00,1733.0,10.815202,10815.202 +18090,2025-03-09T07:22:36.534463-07:00,1726.0,10.820673,10820.673 +18091,2025-03-09T07:22:47.337821-07:00,1725.0,10.803358,10803.358 +18092,2025-03-09T07:22:58.155455-07:00,1683.0,10.817634,10817.634 +18093,2025-03-09T07:23:08.959457-07:00,1693.0,10.804002,10804.002 +18094,2025-03-09T07:23:19.775068-07:00,1677.0,10.815611,10815.611 +18095,2025-03-09T07:23:30.590518-07:00,1740.0,10.81545,10815.45 +18096,2025-03-09T07:23:41.403757-07:00,1712.0,10.813239,10813.239 +18097,2025-03-09T07:23:52.222531-07:00,1743.0,10.818774,10818.774 +18098,2025-03-09T07:24:03.033502-07:00,1743.0,10.810971,10810.971 +18099,2025-03-09T07:24:13.838721-07:00,1655.0,10.805219,10805.219 +18100,2025-03-09T07:24:24.639635-07:00,1727.0,10.800914,10800.914 +18101,2025-03-09T07:24:35.445462-07:00,1647.0,10.805827,10805.827 +18102,2025-03-09T07:24:46.253948-07:00,1722.0,10.808486,10808.486 +18103,2025-03-09T07:24:57.073507-07:00,1698.0,10.819559,10819.559 +18104,2025-03-09T07:25:07.881700-07:00,1683.0,10.808193,10808.193 +18105,2025-03-09T07:25:18.684704-07:00,1741.0,10.803004,10803.004 +18106,2025-03-09T07:25:29.497466-07:00,1665.0,10.812762,10812.762 +18107,2025-03-09T07:25:40.303455-07:00,1744.0,10.805989,10805.989 +18108,2025-03-09T07:25:51.111600-07:00,1691.0,10.808145,10808.145 +18109,2025-03-09T07:26:01.927795-07:00,1730.0,10.816195,10816.195 +18110,2025-03-09T07:26:12.737356-07:00,1741.0,10.809561,10809.561 +18111,2025-03-09T07:26:23.538854-07:00,1689.0,10.801498,10801.498 +18112,2025-03-09T07:26:34.353622-07:00,1659.0,10.814768,10814.768 +18113,2025-03-09T07:26:45.163468-07:00,1744.0,10.809846,10809.846 +18114,2025-03-09T07:26:55.972487-07:00,1733.0,10.809019,10809.019 +18115,2025-03-09T07:27:06.786457-07:00,1689.0,10.81397,10813.97 +18116,2025-03-09T07:27:17.594981-07:00,1666.0,10.808524,10808.524 +18117,2025-03-09T07:27:28.410791-07:00,1747.0,10.81581,10815.81 +18118,2025-03-09T07:27:39.210834-07:00,1697.0,10.800043,10800.043 +18119,2025-03-09T07:27:50.020880-07:00,1743.0,10.810046,10810.046 +18120,2025-03-09T07:28:00.829464-07:00,1745.0,10.808584,10808.584 +18121,2025-03-09T07:28:11.639708-07:00,1735.0,10.810244,10810.244 +18122,2025-03-09T07:28:22.445461-07:00,1745.0,10.805753,10805.753 +18123,2025-03-09T07:28:33.246656-07:00,1698.0,10.801195,10801.195 +18124,2025-03-09T07:28:44.055467-07:00,1747.0,10.808811,10808.811 +18125,2025-03-09T07:28:54.858460-07:00,1751.0,10.802993,10802.993 +18126,2025-03-09T07:29:05.674709-07:00,1747.0,10.816249,10816.249 +18127,2025-03-09T07:29:16.480799-07:00,1747.0,10.80609,10806.09 +18128,2025-03-09T07:29:27.291362-07:00,1659.0,10.810563,10810.563 +18129,2025-03-09T07:29:38.100799-07:00,1749.0,10.809437,10809.437 +18130,2025-03-09T07:29:48.919730-07:00,1751.0,10.818931,10818.931 +18131,2025-03-09T07:29:59.728615-07:00,1749.0,10.808885,10808.885 +18132,2025-03-09T07:30:10.532865-07:00,1666.0,10.80425,10804.25 +18133,2025-03-09T07:30:21.334461-07:00,1698.0,10.801596,10801.596 +18134,2025-03-09T07:30:32.144455-07:00,1751.0,10.809994,10809.994 +18135,2025-03-09T07:30:42.952592-07:00,1744.0,10.808137,10808.137 +18136,2025-03-09T07:30:53.763809-07:00,1685.0,10.811217,10811.217 +18137,2025-03-09T07:31:04.565700-07:00,1697.0,10.801891,10801.891 +18138,2025-03-09T07:31:15.368515-07:00,1750.0,10.802815,10802.815 +18139,2025-03-09T07:31:26.172467-07:00,1753.0,10.803952,10803.952 +18140,2025-03-09T07:31:36.976501-07:00,1675.0,10.804034,10804.034 +18141,2025-03-09T07:31:47.792194-07:00,1705.0,10.815693,10815.693 +18142,2025-03-09T07:31:58.593931-07:00,1750.0,10.801737,10801.737 +18143,2025-03-09T07:32:09.401868-07:00,1710.0,10.807937,10807.937 +18144,2025-03-09T07:32:20.210525-07:00,1713.0,10.808657,10808.657 +18145,2025-03-09T07:32:31.016477-07:00,1713.0,10.805952,10805.952 +18146,2025-03-09T07:32:41.823739-07:00,1700.0,10.807262,10807.262 +18147,2025-03-09T07:32:52.628677-07:00,1680.0,10.804938,10804.938 +18148,2025-03-09T07:33:03.436601-07:00,1695.0,10.807924,10807.924 +18149,2025-03-09T07:33:14.236603-07:00,1735.0,10.800002,10800.002 +18150,2025-03-09T07:33:25.048695-07:00,1671.0,10.812092,10812.092 +18151,2025-03-09T07:33:35.850725-07:00,1759.0,10.80203,10802.03 +18152,2025-03-09T07:33:46.666463-07:00,1743.0,10.815738,10815.738 +18153,2025-03-09T07:33:57.481664-07:00,1675.0,10.815201,10815.201 +18154,2025-03-09T07:34:08.289839-07:00,1744.0,10.808175,10808.175 +18155,2025-03-09T07:34:19.098523-07:00,1725.0,10.808684,10808.684 +18156,2025-03-09T07:34:29.897372-07:00,1762.0,10.798849,10798.849 +18157,2025-03-09T07:34:40.703813-07:00,1706.0,10.806441,10806.441 +18158,2025-03-09T07:34:51.511528-07:00,1761.0,10.807715,10807.715 +18159,2025-03-09T07:35:02.320472-07:00,1718.0,10.808944,10808.944 +18160,2025-03-09T07:35:13.117689-07:00,1726.0,10.797217,10797.217 +18161,2025-03-09T07:35:23.932715-07:00,1764.0,10.815026,10815.026 +18162,2025-03-09T07:35:34.739299-07:00,1679.0,10.806584,10806.584 +18163,2025-03-09T07:35:45.541468-07:00,1678.0,10.802169,10802.169 +18164,2025-03-09T07:35:56.357507-07:00,1759.0,10.816039,10816.039 +18165,2025-03-09T07:36:07.161679-07:00,1694.0,10.804172,10804.172 +18166,2025-03-09T07:36:17.972793-07:00,1745.0,10.811114,10811.114 +18167,2025-03-09T07:36:28.779811-07:00,1712.0,10.807018,10807.018 +18168,2025-03-09T07:36:39.592698-07:00,1694.0,10.812887,10812.887 +18169,2025-03-09T07:36:50.400514-07:00,1761.0,10.807816,10807.816 +18170,2025-03-09T07:37:01.210466-07:00,1710.0,10.809952,10809.952 +18171,2025-03-09T07:37:12.024466-07:00,1723.0,10.814,10814.0 +18172,2025-03-09T07:37:22.834459-07:00,1712.0,10.809993,10809.993 +18173,2025-03-09T07:37:33.639491-07:00,1762.0,10.805032,10805.032 +18174,2025-03-09T07:37:44.447430-07:00,1730.0,10.807939,10807.939 +18175,2025-03-09T07:37:55.258727-07:00,1698.0,10.811297,10811.297 +18176,2025-03-09T07:38:06.075473-07:00,1735.0,10.816746,10816.746 +18177,2025-03-09T07:38:16.882474-07:00,1681.0,10.807001,10807.001 +18178,2025-03-09T07:38:27.690784-07:00,1726.0,10.80831,10808.31 +18179,2025-03-09T07:38:38.491455-07:00,1762.0,10.800671,10800.671 +18180,2025-03-09T07:38:49.299753-07:00,1711.0,10.808298,10808.298 +18181,2025-03-09T07:39:00.108479-07:00,1759.0,10.808726,10808.726 +18182,2025-03-09T07:39:10.917675-07:00,1771.0,10.809196,10809.196 +18183,2025-03-09T07:39:21.722474-07:00,1773.0,10.804799,10804.799 +18184,2025-03-09T07:39:32.526508-07:00,1773.0,10.804034,10804.034 +18185,2025-03-09T07:39:43.326690-07:00,1766.0,10.800182,10800.182 +18186,2025-03-09T07:39:54.137568-07:00,1773.0,10.810878,10810.878 +18187,2025-03-09T07:40:04.947901-07:00,1685.0,10.810333,10810.333 +18188,2025-03-09T07:40:15.760478-07:00,1771.0,10.812577,10812.577 +18189,2025-03-09T07:40:26.558819-07:00,1740.0,10.798341,10798.341 +18190,2025-03-09T07:40:37.366737-07:00,1690.0,10.807918,10807.918 +18191,2025-03-09T07:40:48.165791-07:00,1776.0,10.799054,10799.054 +18192,2025-03-09T07:40:58.974462-07:00,1777.0,10.808671,10808.671 +18193,2025-03-09T07:41:09.778455-07:00,1759.0,10.803993,10803.993 +18194,2025-03-09T07:41:20.575817-07:00,1774.0,10.797362,10797.362 +18195,2025-03-09T07:41:31.389854-07:00,1737.0,10.814037,10814.037 +18196,2025-03-09T07:41:42.194512-07:00,1705.0,10.804658,10804.658 +18197,2025-03-09T07:41:53.002606-07:00,1769.0,10.808094,10808.094 +18198,2025-03-09T07:42:03.811009-07:00,1712.0,10.808403,10808.403 +18199,2025-03-09T07:42:14.621739-07:00,1725.0,10.81073,10810.73 +18200,2025-03-09T07:42:25.418474-07:00,1709.0,10.796735,10796.735 +18201,2025-03-09T07:42:36.227462-07:00,1718.0,10.808988,10808.988 +18202,2025-03-09T07:42:47.043979-07:00,1741.0,10.816517,10816.517 +18203,2025-03-09T07:42:57.849032-07:00,1744.0,10.805053,10805.053 +18204,2025-03-09T07:43:08.661140-07:00,1781.0,10.812108,10812.108 +18205,2025-03-09T07:43:19.467472-07:00,1776.0,10.806332,10806.332 +18206,2025-03-09T07:43:30.277476-07:00,1776.0,10.810004,10810.004 +18207,2025-03-09T07:43:41.086445-07:00,1749.0,10.808969,10808.969 +18208,2025-03-09T07:43:51.885687-07:00,1765.0,10.799242,10799.242 +18209,2025-03-09T07:44:02.698664-07:00,1762.0,10.812977,10812.977 +18210,2025-03-09T07:44:13.506711-07:00,1782.0,10.808047,10808.047 +18211,2025-03-09T07:44:24.303462-07:00,1711.0,10.796751,10796.751 +18212,2025-03-09T07:44:35.113459-07:00,1741.0,10.809997,10809.997 +18213,2025-03-09T07:44:45.919797-07:00,1744.0,10.806338,10806.338 +18214,2025-03-09T07:44:56.726815-07:00,1783.0,10.807018,10807.018 +18215,2025-03-09T07:45:07.534256-07:00,1744.0,10.807441,10807.441 +18216,2025-03-09T07:45:18.344759-07:00,1774.0,10.810503,10810.503 +18217,2025-03-09T07:45:29.141950-07:00,1774.0,10.797191,10797.191 +18218,2025-03-09T07:45:39.959703-07:00,1723.0,10.817753,10817.753 +18219,2025-03-09T07:45:50.768210-07:00,1791.0,10.808507,10808.507 +18220,2025-03-09T07:46:01.565467-07:00,1733.0,10.797257,10797.257 +18221,2025-03-09T07:46:12.377825-07:00,1778.0,10.812358,10812.358 +18222,2025-03-09T07:46:23.192764-07:00,1787.0,10.814939,10814.939 +18223,2025-03-09T07:46:34.000455-07:00,1776.0,10.807691,10807.691 +18224,2025-03-09T07:46:44.809723-07:00,1787.0,10.809268,10809.268 +18225,2025-03-09T07:46:55.613559-07:00,1738.0,10.803836,10803.836 +18226,2025-03-09T07:47:06.419900-07:00,1790.0,10.806341,10806.341 +18227,2025-03-09T07:47:17.237873-07:00,1713.0,10.817973,10817.973 +18228,2025-03-09T07:47:28.051715-07:00,1785.0,10.813842,10813.842 +18229,2025-03-09T07:47:38.855620-07:00,1714.0,10.803905,10803.905 +18230,2025-03-09T07:47:49.669466-07:00,1786.0,10.813846,10813.846 +18231,2025-03-09T07:48:00.473473-07:00,1791.0,10.804007,10804.007 +18232,2025-03-09T07:48:11.276479-07:00,1789.0,10.803006,10803.006 +18233,2025-03-09T07:48:22.083523-07:00,1725.0,10.807044,10807.044 +18234,2025-03-09T07:48:32.887504-07:00,1778.0,10.803981,10803.981 +18235,2025-03-09T07:48:43.714851-07:00,1747.0,10.827347,10827.347 +18236,2025-03-09T07:48:54.521471-07:00,1787.0,10.80662,10806.62 +18237,2025-03-09T07:49:05.320893-07:00,1749.0,10.799422,10799.422 +18238,2025-03-09T07:49:16.135474-07:00,1751.0,10.814581,10814.581 +18239,2025-03-09T07:49:26.939468-07:00,1712.0,10.803994,10803.994 +18240,2025-03-09T07:49:37.749613-07:00,1697.0,10.810145,10810.145 +18241,2025-03-09T07:49:48.551672-07:00,1794.0,10.802059,10802.059 +18242,2025-03-09T07:49:59.363780-07:00,1741.0,10.812108,10812.108 +18243,2025-03-09T07:50:10.175376-07:00,1793.0,10.811596,10811.596 +18244,2025-03-09T07:50:20.979087-07:00,1734.0,10.803711,10803.711 +18245,2025-03-09T07:50:31.798481-07:00,1727.0,10.819394,10819.394 +18246,2025-03-09T07:50:42.603104-07:00,1739.0,10.804623,10804.623 +18247,2025-03-09T07:50:53.407725-07:00,1765.0,10.804621,10804.621 +18248,2025-03-09T07:51:04.218462-07:00,1780.0,10.810737,10810.737 +18249,2025-03-09T07:51:15.020468-07:00,1803.0,10.802006,10802.006 +18250,2025-03-09T07:51:25.832945-07:00,1807.0,10.812477,10812.477 +18251,2025-03-09T07:51:36.646467-07:00,1802.0,10.813522,10813.522 +18252,2025-03-09T07:51:47.455498-07:00,1796.0,10.809031,10809.031 +18253,2025-03-09T07:51:58.257468-07:00,1785.0,10.80197,10801.97 +18254,2025-03-09T07:52:09.067928-07:00,1806.0,10.81046,10810.46 +18255,2025-03-09T07:52:19.876373-07:00,1765.0,10.808445,10808.445 +18256,2025-03-09T07:52:30.691464-07:00,1802.0,10.815091,10815.091 +18257,2025-03-09T07:52:41.501051-07:00,1773.0,10.809587,10809.587 +18258,2025-03-09T07:52:52.308661-07:00,1749.0,10.80761,10807.61 +18259,2025-03-09T07:53:03.115507-07:00,1763.0,10.806846,10806.846 +18260,2025-03-09T07:53:13.923627-07:00,1806.0,10.80812,10808.12 +18261,2025-03-09T07:53:24.732701-07:00,1808.0,10.809074,10809.074 +18262,2025-03-09T07:53:35.551663-07:00,1732.0,10.818962,10818.962 +18263,2025-03-09T07:53:46.354795-07:00,1751.0,10.803132,10803.132 +18264,2025-03-09T07:53:57.167822-07:00,1735.0,10.813027,10813.027 +18265,2025-03-09T07:54:07.972579-07:00,1776.0,10.804757,10804.757 +18266,2025-03-09T07:54:18.782930-07:00,1808.0,10.810351,10810.351 +18267,2025-03-09T07:54:29.590688-07:00,1763.0,10.807758,10807.758 +18268,2025-03-09T07:54:40.398742-07:00,1729.0,10.808054,10808.054 +18269,2025-03-09T07:54:51.208466-07:00,1808.0,10.809724,10809.724 +18270,2025-03-09T07:55:02.028776-07:00,1809.0,10.82031,10820.31 +18271,2025-03-09T07:55:12.838060-07:00,1797.0,10.809284,10809.284 +18272,2025-03-09T07:55:23.656728-07:00,1782.0,10.818668,10818.668 +18273,2025-03-09T07:55:34.465462-07:00,1759.0,10.808734,10808.734 +18274,2025-03-09T07:55:45.274518-07:00,1811.0,10.809056,10809.056 +18275,2025-03-09T07:55:56.083650-07:00,1773.0,10.809132,10809.132 +18276,2025-03-09T07:56:06.899638-07:00,1803.0,10.815988,10815.988 +18277,2025-03-09T07:56:17.719700-07:00,1770.0,10.820062,10820.062 +18278,2025-03-09T07:56:28.521469-07:00,1814.0,10.801769,10801.769 +18279,2025-03-09T07:56:39.331097-07:00,1805.0,10.809628,10809.628 +18280,2025-03-09T07:56:50.144467-07:00,1743.0,10.81337,10813.37 +18281,2025-03-09T07:57:00.961163-07:00,1776.0,10.816696,10816.696 +18282,2025-03-09T07:57:11.765816-07:00,1759.0,10.804653,10804.653 +18283,2025-03-09T07:57:22.580130-07:00,1775.0,10.814314,10814.314 +18284,2025-03-09T07:57:33.385478-07:00,1813.0,10.805348,10805.348 +18285,2025-03-09T07:57:44.200664-07:00,1737.0,10.815186,10815.186 +18286,2025-03-09T07:57:55.013626-07:00,1729.0,10.812962,10812.962 +18287,2025-03-09T07:58:05.825658-07:00,1809.0,10.812032,10812.032 +18288,2025-03-09T07:58:16.635767-07:00,1775.0,10.810109,10810.109 +18289,2025-03-09T07:58:27.454728-07:00,1808.0,10.818961,10818.961 +18290,2025-03-09T07:58:38.261463-07:00,1814.0,10.806735,10806.735 +18291,2025-03-09T07:58:49.069203-07:00,1802.0,10.80774,10807.74 +18292,2025-03-09T07:58:59.889461-07:00,1743.0,10.820258,10820.258 +18293,2025-03-09T07:59:10.697465-07:00,1815.0,10.808004,10808.004 +18294,2025-03-09T07:59:21.515744-07:00,1776.0,10.818279,10818.279 +18295,2025-03-09T07:59:32.325925-07:00,1773.0,10.810181,10810.181 +18296,2025-03-09T07:59:43.129474-07:00,1806.0,10.803549,10803.549 +18297,2025-03-09T07:59:53.932650-07:00,1822.0,10.803176,10803.176 +18298,2025-03-09T08:00:04.747478-07:00,1808.0,10.814828,10814.828 +18299,2025-03-09T08:00:15.558465-07:00,1823.0,10.810987,10810.987 +18300,2025-03-09T08:00:26.369627-07:00,1818.0,10.811162,10811.162 +18301,2025-03-09T08:00:37.173797-07:00,1822.0,10.80417,10804.17 +18302,2025-03-09T08:00:47.994860-07:00,1794.0,10.821063,10821.063 +18303,2025-03-09T08:00:58.802617-07:00,1804.0,10.807757,10807.757 +18304,2025-03-09T08:01:09.616853-07:00,1823.0,10.814236,10814.236 +18305,2025-03-09T08:01:20.422659-07:00,1789.0,10.805806,10805.806 +18306,2025-03-09T08:01:31.241520-07:00,1819.0,10.818861,10818.861 +18307,2025-03-09T08:01:42.051745-07:00,1789.0,10.810225,10810.225 +18308,2025-03-09T08:01:52.857791-07:00,1755.0,10.806046,10806.046 +18309,2025-03-09T08:02:03.658947-07:00,1819.0,10.801156,10801.156 +18310,2025-03-09T08:02:14.472492-07:00,1810.0,10.813545,10813.545 +18311,2025-03-09T08:02:25.276062-07:00,1830.0,10.80357,10803.57 +18312,2025-03-09T08:02:36.086730-07:00,1753.0,10.810668,10810.668 +18313,2025-03-09T08:02:46.897641-07:00,1830.0,10.810911,10810.911 +18314,2025-03-09T08:02:57.709468-07:00,1826.0,10.811827,10811.827 +18315,2025-03-09T08:03:08.518462-07:00,1825.0,10.808994,10808.994 +18316,2025-03-09T08:03:19.337588-07:00,1803.0,10.819126,10819.126 +18317,2025-03-09T08:03:30.148466-07:00,1831.0,10.810878,10810.878 +18318,2025-03-09T08:03:40.954732-07:00,1759.0,10.806266,10806.266 +18319,2025-03-09T08:03:51.768464-07:00,1796.0,10.813732,10813.732 +18320,2025-03-09T08:04:02.568834-07:00,1821.0,10.80037,10800.37 +18321,2025-03-09T08:04:13.379469-07:00,1831.0,10.810635,10810.635 +18322,2025-03-09T08:04:24.187472-07:00,1749.0,10.808003,10808.003 +18323,2025-03-09T08:04:35.007518-07:00,1789.0,10.820046,10820.046 +18324,2025-03-09T08:04:45.821669-07:00,1833.0,10.814151,10814.151 +18325,2025-03-09T08:04:56.625817-07:00,1839.0,10.804148,10804.148 +18326,2025-03-09T08:05:07.430493-07:00,1835.0,10.804676,10804.676 +18327,2025-03-09T08:05:18.243458-07:00,1798.0,10.812965,10812.965 +18328,2025-03-09T08:05:29.053445-07:00,1831.0,10.809987,10809.987 +18329,2025-03-09T08:05:39.874537-07:00,1777.0,10.821092,10821.092 +18330,2025-03-09T08:05:50.693790-07:00,1825.0,10.819253,10819.253 +18331,2025-03-09T08:06:01.494767-07:00,1776.0,10.800977,10800.977 +18332,2025-03-09T08:06:12.308555-07:00,1851.0,10.813788,10813.788 +18333,2025-03-09T08:06:23.123274-07:00,1852.0,10.814719,10814.719 +18334,2025-03-09T08:06:33.937251-07:00,1856.0,10.813977,10813.977 +18335,2025-03-09T08:06:44.751256-07:00,1815.0,10.814005,10814.005 +18336,2025-03-09T08:06:55.565880-07:00,1797.0,10.814624,10814.624 +18337,2025-03-09T08:07:06.378912-07:00,1866.0,10.813032,10813.032 +18338,2025-03-09T08:07:17.184275-07:00,1894.0,10.805363,10805.363 +18339,2025-03-09T08:07:28.000834-07:00,1823.0,10.816559,10816.559 +18340,2025-03-09T08:07:38.816258-07:00,1901.0,10.815424,10815.424 +18341,2025-03-09T08:07:49.621518-07:00,1872.0,10.80526,10805.26 +18342,2025-03-09T08:08:00.443609-07:00,1926.0,10.822091,10822.091 +18343,2025-03-09T08:08:11.249655-07:00,1920.0,10.806046,10806.046 +18344,2025-03-09T08:08:22.062668-07:00,1859.0,10.813013,10813.013 +18345,2025-03-09T08:08:32.869323-07:00,1857.0,10.806655,10806.655 +18346,2025-03-09T08:08:43.686297-07:00,1906.0,10.816974,10816.974 +18347,2025-03-09T08:08:54.499607-07:00,1917.0,10.81331,10813.31 +18348,2025-03-09T08:09:05.307584-07:00,1945.0,10.807977,10807.977 +18349,2025-03-09T08:09:16.124270-07:00,1872.0,10.816686,10816.686 +18350,2025-03-09T08:09:26.933790-07:00,1933.0,10.80952,10809.52 +18351,2025-03-09T08:09:37.751272-07:00,1969.0,10.817482,10817.482 +18352,2025-03-09T08:09:48.561439-07:00,1921.0,10.810167,10810.167 +18353,2025-03-09T08:09:59.371553-07:00,1936.0,10.810114,10810.114 +18354,2025-03-09T08:10:10.178563-07:00,1971.0,10.80701,10807.01 +18355,2025-03-09T08:10:20.992523-07:00,1968.0,10.81396,10813.96 +18356,2025-03-09T08:10:31.801272-07:00,1955.0,10.808749,10808.749 +18357,2025-03-09T08:10:42.601260-07:00,1983.0,10.799988,10799.988 +18358,2025-03-09T08:10:53.416256-07:00,2002.0,10.814996,10814.996 +18359,2025-03-09T08:11:04.217472-07:00,1957.0,10.801216,10801.216 +18360,2025-03-09T08:11:15.032492-07:00,1982.0,10.81502,10815.02 +18361,2025-03-09T08:11:25.840266-07:00,1988.0,10.807774,10807.774 +18362,2025-03-09T08:11:36.644637-07:00,2024.0,10.804371,10804.371 +18363,2025-03-09T08:11:47.438494-07:00,1991.0,10.793857,10793.857 +18364,2025-03-09T08:11:58.241255-07:00,2013.0,10.802761,10802.761 +18365,2025-03-09T08:12:09.049260-07:00,2044.0,10.808005,10808.005 +18366,2025-03-09T08:12:19.860365-07:00,2054.0,10.811105,10811.105 +18367,2025-03-09T08:12:30.668272-07:00,2022.0,10.807907,10807.907 +18368,2025-03-09T08:12:41.475851-07:00,1984.0,10.807579,10807.579 +18369,2025-03-09T08:12:52.285566-07:00,2003.0,10.809715,10809.715 +18370,2025-03-09T08:13:03.089280-07:00,2036.0,10.803714,10803.714 +18371,2025-03-09T08:13:13.893558-07:00,2060.0,10.804278,10804.278 +18372,2025-03-09T08:13:24.707613-07:00,2096.0,10.814055,10814.055 +18373,2025-03-09T08:13:35.517412-07:00,2035.0,10.809799,10809.799 +18374,2025-03-09T08:13:46.326267-07:00,2109.0,10.808855,10808.855 +18375,2025-03-09T08:13:57.136331-07:00,2114.0,10.810064,10810.064 +18376,2025-03-09T08:14:07.942262-07:00,2099.0,10.805931,10805.931 +18377,2025-03-09T08:14:18.756611-07:00,2063.0,10.814349,10814.349 +18378,2025-03-09T08:14:29.571613-07:00,2143.0,10.815002,10815.002 +18379,2025-03-09T08:14:40.371399-07:00,2133.0,10.799786,10799.786 +18380,2025-03-09T08:14:51.187266-07:00,2175.0,10.815867,10815.867 +18381,2025-03-09T08:15:01.992270-07:00,2144.0,10.805004,10805.004 +18382,2025-03-09T08:15:12.795514-07:00,2177.0,10.803244,10803.244 +18383,2025-03-09T08:15:23.604398-07:00,2190.0,10.808884,10808.884 +18384,2025-03-09T08:15:34.403344-07:00,2212.0,10.798946,10798.946 +18385,2025-03-09T08:15:45.220268-07:00,2224.0,10.816924,10816.924 +18386,2025-03-09T08:15:56.021517-07:00,2227.0,10.801249,10801.249 +18387,2025-03-09T08:16:06.835778-07:00,2227.0,10.814261,10814.261 +18388,2025-03-09T08:16:17.638973-07:00,2273.0,10.803195,10803.195 +18389,2025-03-09T08:16:28.449115-07:00,2310.0,10.810142,10810.142 +18390,2025-03-09T08:16:39.251640-07:00,2321.0,10.802525,10802.525 +18391,2025-03-09T08:16:50.059851-07:00,2320.0,10.808211,10808.211 +18392,2025-03-09T08:17:00.868267-07:00,2335.0,10.808416,10808.416 +18393,2025-03-09T08:17:11.677268-07:00,2342.0,10.809001,10809.001 +18394,2025-03-09T08:17:22.485265-07:00,2352.0,10.807997,10807.997 +18395,2025-03-09T08:17:33.295258-07:00,2347.0,10.809993,10809.993 +18396,2025-03-09T08:17:44.104485-07:00,2371.0,10.809227,10809.227 +18397,2025-03-09T08:17:54.916377-07:00,2391.0,10.811892,10811.892 +18398,2025-03-09T08:18:05.730838-07:00,2401.0,10.814461,10814.461 +18399,2025-03-09T08:18:16.538486-07:00,2407.0,10.807648,10807.648 +18400,2025-03-09T08:18:27.350319-07:00,2407.0,10.811833,10811.833 +18401,2025-03-09T08:18:38.155518-07:00,2422.0,10.805199,10805.199 +18402,2025-03-09T08:18:48.966255-07:00,2419.0,10.810737,10810.737 +18403,2025-03-09T08:18:59.773271-07:00,2405.0,10.807016,10807.016 +18404,2025-03-09T08:19:10.574396-07:00,2427.0,10.801125,10801.125 +18405,2025-03-09T08:19:21.379266-07:00,2423.0,10.80487,10804.87 +18406,2025-03-09T08:19:32.189804-07:00,2445.0,10.810538,10810.538 +18407,2025-03-09T08:19:42.998550-07:00,2407.0,10.808746,10808.746 +18408,2025-03-09T08:19:53.803643-07:00,2410.0,10.805093,10805.093 +18409,2025-03-09T08:20:04.604270-07:00,2442.0,10.800627,10800.627 +18410,2025-03-09T08:20:15.418461-07:00,2394.0,10.814191,10814.191 +18411,2025-03-09T08:20:26.227962-07:00,2417.0,10.809501,10809.501 +18412,2025-03-09T08:20:37.036267-07:00,2422.0,10.808305,10808.305 +18413,2025-03-09T08:20:47.852258-07:00,2384.0,10.815991,10815.991 +18414,2025-03-09T08:20:58.651446-07:00,2449.0,10.799188,10799.188 +18415,2025-03-09T08:21:09.464261-07:00,2390.0,10.812815,10812.815 +18416,2025-03-09T08:21:20.278503-07:00,2463.0,10.814242,10814.242 +18417,2025-03-09T08:21:31.081308-07:00,2471.0,10.802805,10802.805 +18418,2025-03-09T08:21:41.891145-07:00,2439.0,10.809837,10809.837 +18419,2025-03-09T08:21:52.706284-07:00,2474.0,10.815139,10815.139 +18420,2025-03-09T08:22:03.520257-07:00,2473.0,10.813973,10813.973 +18421,2025-03-09T08:22:14.324474-07:00,2480.0,10.804217,10804.217 +18422,2025-03-09T08:22:25.131514-07:00,2491.0,10.80704,10807.04 +18423,2025-03-09T08:22:35.947860-07:00,2498.0,10.816346,10816.346 +18424,2025-03-09T08:22:46.755543-07:00,2463.0,10.807683,10807.683 +18425,2025-03-09T08:22:57.570237-07:00,2487.0,10.814694,10814.694 +18426,2025-03-09T08:23:08.380280-07:00,2521.0,10.810043,10810.043 +18427,2025-03-09T08:23:19.188638-07:00,2526.0,10.808358,10808.358 +18428,2025-03-09T08:23:30.000412-07:00,2524.0,10.811774,10811.774 +18429,2025-03-09T08:23:40.810519-07:00,2499.0,10.810107,10810.107 +18430,2025-03-09T08:23:51.626503-07:00,2453.0,10.815984,10815.984 +18431,2025-03-09T08:24:02.438635-07:00,2491.0,10.812132,10812.132 +18432,2025-03-09T08:24:13.244428-07:00,2487.0,10.805793,10805.793 +18433,2025-03-09T08:24:24.049573-07:00,2475.0,10.805145,10805.145 +18434,2025-03-09T08:24:34.868265-07:00,2397.0,10.818692,10818.692 +18435,2025-03-09T08:24:45.677262-07:00,2416.0,10.808997,10808.997 +18436,2025-03-09T08:24:56.492501-07:00,2406.0,10.815239,10815.239 +18437,2025-03-09T08:25:07.300266-07:00,2401.0,10.807765,10807.765 +18438,2025-03-09T08:25:18.122274-07:00,2405.0,10.822008,10822.008 +18439,2025-03-09T08:25:28.931259-07:00,2407.0,10.808985,10808.985 +18440,2025-03-09T08:25:39.745611-07:00,2406.0,10.814352,10814.352 +18441,2025-03-09T08:25:50.560271-07:00,2404.0,10.81466,10814.66 +18442,2025-03-09T08:26:01.368549-07:00,2362.0,10.808278,10808.278 +18443,2025-03-09T08:26:12.183586-07:00,2405.0,10.815037,10815.037 +18444,2025-03-09T08:26:23.003491-07:00,2320.0,10.819905,10819.905 +18445,2025-03-09T08:26:33.819556-07:00,2397.0,10.816065,10816.065 +18446,2025-03-09T08:26:44.633580-07:00,2329.0,10.814024,10814.024 +18447,2025-03-09T08:26:55.441946-07:00,2335.0,10.808366,10808.366 +18448,2025-03-09T08:27:06.258280-07:00,2395.0,10.816334,10816.334 +18449,2025-03-09T08:27:17.072399-07:00,2397.0,10.814119,10814.119 +18450,2025-03-09T08:27:27.897355-07:00,2342.0,10.824956,10824.956 +18451,2025-03-09T08:27:38.712575-07:00,2368.0,10.81522,10815.22 +18452,2025-03-09T08:27:49.527310-07:00,2397.0,10.814735,10814.735 +18453,2025-03-09T08:28:00.350930-07:00,2385.0,10.82362,10823.62 +18454,2025-03-09T08:28:11.168832-07:00,2371.0,10.817902,10817.902 +18455,2025-03-09T08:28:21.983607-07:00,2394.0,10.814775,10814.775 +18456,2025-03-09T08:28:32.797277-07:00,2378.0,10.81367,10813.67 +18457,2025-03-09T08:28:43.617274-07:00,2402.0,10.819997,10819.997 +18458,2025-03-09T08:28:54.432918-07:00,2384.0,10.815644,10815.644 +18459,2025-03-09T08:29:05.250256-07:00,2345.0,10.817338,10817.338 +18460,2025-03-09T08:29:16.067261-07:00,2416.0,10.817005,10817.005 +18461,2025-03-09T08:29:26.880414-07:00,2346.0,10.813153,10813.153 +18462,2025-03-09T08:29:37.690444-07:00,2384.0,10.81003,10810.03 +18463,2025-03-09T08:29:48.505917-07:00,2414.0,10.815473,10815.473 +18464,2025-03-09T08:29:59.317271-07:00,2374.0,10.811354,10811.354 +18465,2025-03-09T08:30:10.135341-07:00,2418.0,10.81807,10818.07 +18466,2025-03-09T08:30:20.949490-07:00,2401.0,10.814149,10814.149 +18467,2025-03-09T08:30:31.762871-07:00,2403.0,10.813381,10813.381 +18468,2025-03-09T08:30:42.583357-07:00,2421.0,10.820486,10820.486 +18469,2025-03-09T08:30:53.398338-07:00,2398.0,10.814981,10814.981 +18470,2025-03-09T08:31:04.208259-07:00,2409.0,10.809921,10809.921 +18471,2025-03-09T08:31:15.023857-07:00,2379.0,10.815598,10815.598 +18472,2025-03-09T08:31:25.836567-07:00,2396.0,10.81271,10812.71 +18473,2025-03-09T08:31:36.656476-07:00,2442.0,10.819909,10819.909 +18474,2025-03-09T08:31:47.470512-07:00,2417.0,10.814036,10814.036 +18475,2025-03-09T08:31:58.281258-07:00,2447.0,10.810746,10810.746 +18476,2025-03-09T08:32:09.107538-07:00,2419.0,10.82628,10826.28 +18477,2025-03-09T08:32:19.923295-07:00,2464.0,10.815757,10815.757 +18478,2025-03-09T08:32:30.736986-07:00,2455.0,10.813691,10813.691 +18479,2025-03-09T08:32:41.556871-07:00,2442.0,10.819885,10819.885 +18480,2025-03-09T08:32:52.373521-07:00,2418.0,10.81665,10816.65 +18481,2025-03-09T08:33:03.191972-07:00,2411.0,10.818451,10818.451 +18482,2025-03-09T08:33:14.008454-07:00,2495.0,10.816482,10816.482 +18483,2025-03-09T08:33:24.820923-07:00,2490.0,10.812469,10812.469 +18484,2025-03-09T08:33:35.637072-07:00,2501.0,10.816149,10816.149 +18485,2025-03-09T08:33:46.462762-07:00,2493.0,10.82569,10825.69 +18486,2025-03-09T08:33:57.275306-07:00,2522.0,10.812544,10812.544 +18487,2025-03-09T08:34:08.091037-07:00,2515.0,10.815731,10815.731 +18488,2025-03-09T08:34:18.908330-07:00,2527.0,10.817293,10817.293 +18489,2025-03-09T08:34:29.725325-07:00,2500.0,10.816995,10816.995 +18490,2025-03-09T08:34:40.549528-07:00,2526.0,10.824203,10824.203 +18491,2025-03-09T08:34:51.365270-07:00,2509.0,10.815742,10815.742 +18492,2025-03-09T08:35:02.171278-07:00,2545.0,10.806008,10806.008 +18493,2025-03-09T08:35:12.988473-07:00,2538.0,10.817195,10817.195 +18494,2025-03-09T08:35:23.805479-07:00,2505.0,10.817006,10817.006 +18495,2025-03-09T08:35:34.625659-07:00,2559.0,10.82018,10820.18 +18496,2025-03-09T08:35:45.433414-07:00,2559.0,10.807755,10807.755 +18497,2025-03-09T08:35:56.254280-07:00,2501.0,10.820866,10820.866 +18498,2025-03-09T08:36:07.069274-07:00,2550.0,10.814994,10814.994 +18499,2025-03-09T08:36:17.887576-07:00,2543.0,10.818302,10818.302 +18500,2025-03-09T08:36:28.704504-07:00,2559.0,10.816928,10816.928 +18501,2025-03-09T08:36:39.521597-07:00,2535.0,10.817093,10817.093 +18502,2025-03-09T08:36:50.348607-07:00,2557.0,10.82701,10827.01 +18503,2025-03-09T08:37:01.170264-07:00,2512.0,10.821657,10821.657 +18504,2025-03-09T08:37:11.979773-07:00,2505.0,10.809509,10809.509 +18505,2025-03-09T08:37:22.801688-07:00,2555.0,10.821915,10821.915 +18506,2025-03-09T08:37:33.629743-07:00,2539.0,10.828055,10828.055 +18507,2025-03-09T08:37:44.441511-07:00,2588.0,10.811768,10811.768 +18508,2025-03-09T08:37:55.256726-07:00,2559.0,10.815215,10815.215 +18509,2025-03-09T08:38:06.081400-07:00,2604.0,10.824674,10824.674 +18510,2025-03-09T08:38:16.893530-07:00,2617.0,10.81213,10812.13 +18511,2025-03-09T08:38:27.712503-07:00,2640.0,10.818973,10818.973 +18512,2025-03-09T08:38:38.537556-07:00,2679.0,10.825053,10825.053 +18513,2025-03-09T08:38:49.355245-07:00,2731.0,10.817689,10817.689 +18514,2025-03-09T08:39:00.165525-07:00,2773.0,10.81028,10810.28 +18515,2025-03-09T08:39:10.980503-07:00,2763.0,10.814978,10814.978 +18516,2025-03-09T08:39:21.794359-07:00,2798.0,10.813856,10813.856 +18517,2025-03-09T08:39:32.604613-07:00,2819.0,10.810254,10810.254 +18518,2025-03-09T08:39:43.423276-07:00,2829.0,10.818663,10818.663 +18519,2025-03-09T08:39:54.244014-07:00,2911.0,10.820738,10820.738 +18520,2025-03-09T08:40:05.063738-07:00,2877.0,10.819724,10819.724 +18521,2025-03-09T08:40:15.881506-07:00,2935.0,10.817768,10817.768 +18522,2025-03-09T08:40:26.694267-07:00,2930.0,10.812761,10812.761 +18523,2025-03-09T08:40:37.513280-07:00,2935.0,10.819013,10819.013 +18524,2025-03-09T08:40:48.331275-07:00,2932.0,10.817995,10817.995 +18525,2025-03-09T08:40:59.140494-07:00,2927.0,10.809219,10809.219 +18526,2025-03-09T08:41:09.962255-07:00,2919.0,10.821761,10821.761 +18527,2025-03-09T08:41:20.784826-07:00,2862.0,10.822571,10822.571 +18528,2025-03-09T08:41:31.593595-07:00,2897.0,10.808769,10808.769 +18529,2025-03-09T08:41:42.413498-07:00,2864.0,10.819903,10819.903 +18530,2025-03-09T08:41:53.234741-07:00,2900.0,10.821243,10821.243 +18531,2025-03-09T08:42:04.051006-07:00,2895.0,10.816265,10816.265 +18532,2025-03-09T08:42:14.873504-07:00,2871.0,10.822498,10822.498 +18533,2025-03-09T08:42:25.694549-07:00,2879.0,10.821045,10821.045 +18534,2025-03-09T08:42:36.508616-07:00,2866.0,10.814067,10814.067 +18535,2025-03-09T08:42:47.332623-07:00,2864.0,10.824007,10824.007 +18536,2025-03-09T08:42:58.147261-07:00,2889.0,10.814638,10814.638 +18537,2025-03-09T08:43:08.972702-07:00,2899.0,10.825441,10825.441 +18538,2025-03-09T08:43:19.796516-07:00,2939.0,10.823814,10823.814 +18539,2025-03-09T08:43:30.618575-07:00,2939.0,10.822059,10822.059 +18540,2025-03-09T08:43:41.437918-07:00,2955.0,10.819343,10819.343 +18541,2025-03-09T08:43:52.253481-07:00,2954.0,10.815563,10815.563 +18542,2025-03-09T08:44:03.068272-07:00,2969.0,10.814791,10814.791 +18543,2025-03-09T08:44:13.889019-07:00,2974.0,10.820747,10820.747 +18544,2025-03-09T08:44:24.698552-07:00,2975.0,10.809533,10809.533 +18545,2025-03-09T08:44:35.528497-07:00,2986.0,10.829945,10829.945 +18546,2025-03-09T08:44:46.348985-07:00,2960.0,10.820488,10820.488 +18547,2025-03-09T08:44:57.169527-07:00,2986.0,10.820542,10820.542 +18548,2025-03-09T08:45:07.989496-07:00,2962.0,10.819969,10819.969 +18549,2025-03-09T08:45:18.804787-07:00,2951.0,10.815291,10815.291 +18550,2025-03-09T08:45:29.625583-07:00,2982.0,10.820796,10820.796 +18551,2025-03-09T08:45:40.450247-07:00,3015.0,10.824664,10824.664 +18552,2025-03-09T08:45:51.271035-07:00,2981.0,10.820788,10820.788 +18553,2025-03-09T08:46:02.076806-07:00,3024.0,10.805771,10805.771 +18554,2025-03-09T08:46:12.897520-07:00,2989.0,10.820714,10820.714 +18555,2025-03-09T08:46:23.716517-07:00,3003.0,10.818997,10818.997 +18556,2025-03-09T08:46:34.523254-07:00,3031.0,10.806737,10806.737 +18557,2025-03-09T08:46:45.338107-07:00,3019.0,10.814853,10814.853 +18558,2025-03-09T08:46:56.162322-07:00,3060.0,10.824215,10824.215 +18559,2025-03-09T08:47:06.973157-07:00,3047.0,10.810835,10810.835 +18560,2025-03-09T08:47:17.789932-07:00,3056.0,10.816775,10816.775 +18561,2025-03-09T08:47:28.605617-07:00,3097.0,10.815685,10815.685 +18562,2025-03-09T08:47:39.429279-07:00,3087.0,10.823662,10823.662 +18563,2025-03-09T08:47:50.248254-07:00,3093.0,10.818975,10818.975 +18564,2025-03-09T08:48:01.070317-07:00,3085.0,10.822063,10822.063 +18565,2025-03-09T08:48:11.889779-07:00,3087.0,10.819462,10819.462 +18566,2025-03-09T08:48:22.708531-07:00,3138.0,10.818752,10818.752 +18567,2025-03-09T08:48:33.529584-07:00,3049.0,10.821053,10821.053 +18568,2025-03-09T08:48:44.347752-07:00,3126.0,10.818168,10818.168 +18569,2025-03-09T08:48:55.166313-07:00,3157.0,10.818561,10818.561 +18570,2025-03-09T08:49:05.987697-07:00,3143.0,10.821384,10821.384 +18571,2025-03-09T08:49:16.810557-07:00,3110.0,10.82286,10822.86 +18572,2025-03-09T08:49:27.622258-07:00,3136.0,10.811701,10811.701 +18573,2025-03-09T08:49:38.442331-07:00,3154.0,10.820073,10820.073 +18574,2025-03-09T08:49:49.262605-07:00,3137.0,10.820274,10820.274 +18575,2025-03-09T08:50:00.081268-07:00,3173.0,10.818663,10818.663 +18576,2025-03-09T08:50:10.909714-07:00,3161.0,10.828446,10828.446 +18577,2025-03-09T08:50:21.725524-07:00,3179.0,10.81581,10815.81 +18578,2025-03-09T08:50:32.546271-07:00,3182.0,10.820747,10820.747 +18579,2025-03-09T08:50:43.370050-07:00,3172.0,10.823779,10823.779 +18580,2025-03-09T08:50:54.193374-07:00,3146.0,10.823324,10823.324 +18581,2025-03-09T08:51:05.011265-07:00,3195.0,10.817891,10817.891 +18582,2025-03-09T08:51:15.831514-07:00,3183.0,10.820249,10820.249 +18583,2025-03-09T08:51:26.657267-07:00,3210.0,10.825753,10825.753 +18584,2025-03-09T08:51:37.475266-07:00,3175.0,10.817999,10817.999 +18585,2025-03-09T08:51:48.284460-07:00,3227.0,10.809194,10809.194 +18586,2025-03-09T08:51:59.111348-07:00,3239.0,10.826888,10826.888 +18587,2025-03-09T08:52:09.936393-07:00,3246.0,10.825045,10825.045 +18588,2025-03-09T08:52:20.757603-07:00,3225.0,10.82121,10821.21 +18589,2025-03-09T08:52:31.578548-07:00,3280.0,10.820945,10820.945 +18590,2025-03-09T08:52:42.396548-07:00,3271.0,10.818,10818.0 +18591,2025-03-09T08:52:53.214365-07:00,3261.0,10.817817,10817.817 +18592,2025-03-09T08:53:04.029580-07:00,3297.0,10.815215,10815.215 +18593,2025-03-09T08:53:14.857272-07:00,3319.0,10.827692,10827.692 +18594,2025-03-09T08:53:25.673633-07:00,3326.0,10.816361,10816.361 +18595,2025-03-09T08:53:36.494384-07:00,3330.0,10.820751,10820.751 +18596,2025-03-09T08:53:47.305268-07:00,3354.0,10.810884,10810.884 +18597,2025-03-09T08:53:58.123272-07:00,3341.0,10.818004,10818.004 +18598,2025-03-09T08:54:08.949275-07:00,3374.0,10.826003,10826.003 +18599,2025-03-09T08:54:19.760276-07:00,3370.0,10.811001,10811.001 +18600,2025-03-09T08:54:30.579278-07:00,3373.0,10.819002,10819.002 +18601,2025-03-09T08:54:41.396315-07:00,3388.0,10.817037,10817.037 +18602,2025-03-09T08:54:52.217523-07:00,3392.0,10.821208,10821.208 +18603,2025-03-09T08:55:03.040425-07:00,3362.0,10.822902,10822.902 +18604,2025-03-09T08:55:13.862777-07:00,3319.0,10.822352,10822.352 +18605,2025-03-09T08:55:24.690314-07:00,3286.0,10.827537,10827.537 +18606,2025-03-09T08:55:35.507266-07:00,3319.0,10.816952,10816.952 +18607,2025-03-09T08:55:46.332883-07:00,3393.0,10.825617,10825.617 +18608,2025-03-09T08:55:57.159600-07:00,3366.0,10.826717,10826.717 +18609,2025-03-09T08:56:07.980556-07:00,3396.0,10.820956,10820.956 +18610,2025-03-09T08:56:18.793855-07:00,3407.0,10.813299,10813.299 +18611,2025-03-09T08:56:29.620262-07:00,3408.0,10.826407,10826.407 +18612,2025-03-09T08:56:40.440787-07:00,3379.0,10.820525,10820.525 +18613,2025-03-09T08:56:51.267501-07:00,3413.0,10.826714,10826.714 +18614,2025-03-09T08:57:02.089319-07:00,3411.0,10.821818,10821.818 +18615,2025-03-09T08:57:12.902022-07:00,3391.0,10.812703,10812.703 +18616,2025-03-09T08:57:23.718972-07:00,3399.0,10.81695,10816.95 +18617,2025-03-09T08:57:34.542274-07:00,3358.0,10.823302,10823.302 +18618,2025-03-09T08:57:45.361878-07:00,3408.0,10.819604,10819.604 +18619,2025-03-09T08:57:56.178595-07:00,3354.0,10.816717,10816.717 +18620,2025-03-09T08:58:06.996279-07:00,3419.0,10.817684,10817.684 +18621,2025-03-09T08:58:17.818307-07:00,3415.0,10.822028,10822.028 +18622,2025-03-09T08:58:28.638611-07:00,3376.0,10.820304,10820.304 +18623,2025-03-09T08:58:39.454273-07:00,3423.0,10.815662,10815.662 +18624,2025-03-09T08:58:50.274274-07:00,3409.0,10.820001,10820.001 +18625,2025-03-09T08:59:01.094597-07:00,3426.0,10.820323,10820.323 +18626,2025-03-09T08:59:11.919862-07:00,3405.0,10.825265,10825.265 +18627,2025-03-09T08:59:22.745946-07:00,3385.0,10.826084,10826.084 +18628,2025-03-09T08:59:33.561197-07:00,3375.0,10.815251,10815.251 +18629,2025-03-09T08:59:44.382368-07:00,3379.0,10.821171,10821.171 +18630,2025-03-09T08:59:55.196274-07:00,3425.0,10.813906,10813.906 +18631,2025-03-09T09:00:06.017735-07:00,3435.0,10.821461,10821.461 +18632,2025-03-09T09:00:16.844271-07:00,3411.0,10.826536,10826.536 +18633,2025-03-09T09:00:27.661665-07:00,3402.0,10.817394,10817.394 +18634,2025-03-09T09:00:38.477985-07:00,3413.0,10.81632,10816.32 +18635,2025-03-09T09:00:49.290313-07:00,3422.0,10.812328,10812.328 +18636,2025-03-09T09:01:00.111267-07:00,3418.0,10.820954,10820.954 +18637,2025-03-09T09:01:10.931600-07:00,3406.0,10.820333,10820.333 +18638,2025-03-09T09:01:21.751274-07:00,3440.0,10.819674,10819.674 +18639,2025-03-09T09:01:32.573264-07:00,3415.0,10.82199,10821.99 +18640,2025-03-09T09:01:43.393121-07:00,3383.0,10.819857,10819.857 +18641,2025-03-09T09:01:54.201564-07:00,3445.0,10.808443,10808.443 +18642,2025-03-09T09:02:05.022280-07:00,3388.0,10.820716,10820.716 +18643,2025-03-09T09:02:15.853560-07:00,3419.0,10.83128,10831.28 +18644,2025-03-09T09:02:26.670785-07:00,3445.0,10.817225,10817.225 +18645,2025-03-09T09:02:37.489541-07:00,3415.0,10.818756,10818.756 +18646,2025-03-09T09:02:48.315807-07:00,3449.0,10.826266,10826.266 +18647,2025-03-09T09:02:59.143468-07:00,3435.0,10.827661,10827.661 +18648,2025-03-09T09:03:09.955883-07:00,3433.0,10.812415,10812.415 +18649,2025-03-09T09:03:20.781128-07:00,3451.0,10.825245,10825.245 +18650,2025-03-09T09:03:31.595530-07:00,3445.0,10.814402,10814.402 +18651,2025-03-09T09:03:42.417532-07:00,3440.0,10.822002,10822.002 +18652,2025-03-09T09:03:53.240799-07:00,3447.0,10.823267,10823.267 +18653,2025-03-09T09:04:04.060529-07:00,3455.0,10.81973,10819.73 +18654,2025-03-09T09:04:14.878591-07:00,3455.0,10.818062,10818.062 +18655,2025-03-09T09:04:25.698098-07:00,3405.0,10.819507,10819.507 +18656,2025-03-09T09:04:36.520455-07:00,3440.0,10.822357,10822.357 +18657,2025-03-09T09:04:47.350317-07:00,3417.0,10.829862,10829.862 +18658,2025-03-09T09:04:58.171645-07:00,3396.0,10.821328,10821.328 +18659,2025-03-09T09:05:08.996273-07:00,3426.0,10.824628,10824.628 +18660,2025-03-09T09:05:19.819051-07:00,3456.0,10.822778,10822.778 +18661,2025-03-09T09:05:30.647392-07:00,3397.0,10.828341,10828.341 +18662,2025-03-09T09:05:41.499339-07:00,3455.0,10.851947,10851.947 +18663,2025-03-09T09:05:52.326362-07:00,3440.0,10.827023,10827.023 +18664,2025-03-09T09:06:03.146356-07:00,3426.0,10.819994,10819.994 +18665,2025-03-09T09:06:13.973262-07:00,3440.0,10.826906,10826.906 +18666,2025-03-09T09:06:24.797613-07:00,3446.0,10.824351,10824.351 +18667,2025-03-09T09:06:35.618401-07:00,3450.0,10.820788,10820.788 +18668,2025-03-09T09:06:46.450361-07:00,3461.0,10.83196,10831.96 +18669,2025-03-09T09:06:57.279871-07:00,3445.0,10.82951,10829.51 +18670,2025-03-09T09:07:08.097353-07:00,3429.0,10.817482,10817.482 +18671,2025-03-09T09:07:18.923344-07:00,3459.0,10.825991,10825.991 +18672,2025-03-09T09:07:29.744625-07:00,3443.0,10.821281,10821.281 +18673,2025-03-09T09:07:40.569343-07:00,3432.0,10.824718,10824.718 +18674,2025-03-09T09:07:51.396621-07:00,3440.0,10.827278,10827.278 +18675,2025-03-09T09:08:02.219985-07:00,3424.0,10.823364,10823.364 +18676,2025-03-09T09:08:13.042364-07:00,3460.0,10.822379,10822.379 +18677,2025-03-09T09:08:23.870001-07:00,3429.0,10.827637,10827.637 +18678,2025-03-09T09:08:34.693577-07:00,3439.0,10.823576,10823.576 +18679,2025-03-09T09:08:45.519200-07:00,3440.0,10.825623,10825.623 +18680,2025-03-09T09:08:56.337363-07:00,3458.0,10.818163,10818.163 +18681,2025-03-09T09:09:07.157260-07:00,3457.0,10.819897,10819.897 +18682,2025-03-09T09:09:17.987859-07:00,3451.0,10.830599,10830.599 +18683,2025-03-09T09:09:28.809367-07:00,3391.0,10.821508,10821.508 +18684,2025-03-09T09:09:39.629492-07:00,3442.0,10.820125,10820.125 +18685,2025-03-09T09:09:50.452652-07:00,3441.0,10.82316,10823.16 +18686,2025-03-09T09:10:01.271367-07:00,3433.0,10.818715,10818.715 +18687,2025-03-09T09:10:12.093641-07:00,3431.0,10.822274,10822.274 +18688,2025-03-09T09:10:22.920363-07:00,3423.0,10.826722,10826.722 +18689,2025-03-09T09:10:33.745571-07:00,3370.0,10.825208,10825.208 +18690,2025-03-09T09:10:44.562699-07:00,3420.0,10.817128,10817.128 +18691,2025-03-09T09:10:55.385578-07:00,3414.0,10.822879,10822.879 +18692,2025-03-09T09:11:06.207554-07:00,3405.0,10.821976,10821.976 +18693,2025-03-09T09:11:17.036366-07:00,3408.0,10.828812,10828.812 +18694,2025-03-09T09:11:27.864509-07:00,3367.0,10.828143,10828.143 +18695,2025-03-09T09:11:38.697008-07:00,3375.0,10.832499,10832.499 +18696,2025-03-09T09:11:49.511604-07:00,3392.0,10.814596,10814.596 +18697,2025-03-09T09:12:00.342709-07:00,3389.0,10.831105,10831.105 +18698,2025-03-09T09:12:11.164343-07:00,3387.0,10.821634,10821.634 +18699,2025-03-09T09:12:21.989343-07:00,3387.0,10.825,10825.0 +18700,2025-03-09T09:12:32.809362-07:00,3376.0,10.820019,10820.019 +18701,2025-03-09T09:12:43.630409-07:00,3385.0,10.821047,10821.047 +18702,2025-03-09T09:12:54.453243-07:00,3383.0,10.822834,10822.834 +18703,2025-03-09T09:13:05.274494-07:00,3330.0,10.821251,10821.251 +18704,2025-03-09T09:13:16.108411-07:00,3341.0,10.833917,10833.917 +18705,2025-03-09T09:13:26.927653-07:00,3381.0,10.819242,10819.242 +18706,2025-03-09T09:13:37.758205-07:00,3319.0,10.830552,10830.552 +18707,2025-03-09T09:13:48.578911-07:00,3369.0,10.820706,10820.706 +18708,2025-03-09T09:13:59.412363-07:00,3338.0,10.833452,10833.452 +18709,2025-03-09T09:14:10.232641-07:00,3325.0,10.820278,10820.278 +18710,2025-03-09T09:14:21.064358-07:00,3313.0,10.831717,10831.717 +18711,2025-03-09T09:14:31.881361-07:00,3296.0,10.817003,10817.003 +18712,2025-03-09T09:14:42.714634-07:00,3349.0,10.833273,10833.273 +18713,2025-03-09T09:14:53.530365-07:00,3347.0,10.815731,10815.731 +18714,2025-03-09T09:15:04.350942-07:00,3313.0,10.820577,10820.577 +18715,2025-03-09T09:15:15.182604-07:00,3327.0,10.831662,10831.662 +18716,2025-03-09T09:15:26.008959-07:00,3292.0,10.826355,10826.355 +18717,2025-03-09T09:15:36.828365-07:00,3312.0,10.819406,10819.406 +18718,2025-03-09T09:15:47.655358-07:00,3340.0,10.826993,10826.993 +18719,2025-03-09T09:15:58.478819-07:00,3341.0,10.823461,10823.461 +18720,2025-03-09T09:16:09.308359-07:00,3293.0,10.82954,10829.54 +18721,2025-03-09T09:16:20.128491-07:00,3346.0,10.820132,10820.132 +18722,2025-03-09T09:16:30.958450-07:00,3303.0,10.829959,10829.959 +18723,2025-03-09T09:16:41.790774-07:00,3353.0,10.832324,10832.324 +18724,2025-03-09T09:16:52.616356-07:00,3344.0,10.825582,10825.582 +18725,2025-03-09T09:17:03.436524-07:00,3325.0,10.820168,10820.168 +18726,2025-03-09T09:17:14.270504-07:00,3359.0,10.83398,10833.98 +18727,2025-03-09T09:17:25.100651-07:00,3359.0,10.830147,10830.147 +18728,2025-03-09T09:17:35.918365-07:00,3313.0,10.817714,10817.714 +18729,2025-03-09T09:17:46.747365-07:00,3369.0,10.829,10829.0 +18730,2025-03-09T09:17:57.580365-07:00,3342.0,10.833,10833.0 +18731,2025-03-09T09:18:08.407491-07:00,3313.0,10.827126,10827.126 +18732,2025-03-09T09:18:19.246570-07:00,3310.0,10.839079,10839.079 +18733,2025-03-09T09:18:30.073462-07:00,3337.0,10.826892,10826.892 +18734,2025-03-09T09:18:40.895365-07:00,3344.0,10.821903,10821.903 +18735,2025-03-09T09:18:51.729236-07:00,3309.0,10.833871,10833.871 +18736,2025-03-09T09:19:02.551359-07:00,3254.0,10.822123,10822.123 +18737,2025-03-09T09:19:13.377370-07:00,3282.0,10.826011,10826.011 +18738,2025-03-09T09:19:24.203707-07:00,3297.0,10.826337,10826.337 +18739,2025-03-09T09:19:35.039355-07:00,3268.0,10.835648,10835.648 +18740,2025-03-09T09:19:45.864610-07:00,3274.0,10.825255,10825.255 +18741,2025-03-09T09:19:56.681774-07:00,3261.0,10.817164,10817.164 +18742,2025-03-09T09:20:07.514714-07:00,3245.0,10.83294,10832.94 +18743,2025-03-09T09:20:18.343361-07:00,3195.0,10.828647,10828.647 +18744,2025-03-09T09:20:29.170654-07:00,3169.0,10.827293,10827.293 +18745,2025-03-09T09:20:39.991482-07:00,3207.0,10.820828,10820.828 +18746,2025-03-09T09:20:50.829559-07:00,3157.0,10.838077,10838.077 +18747,2025-03-09T09:21:01.657604-07:00,3177.0,10.828045,10828.045 +18748,2025-03-09T09:21:12.482223-07:00,3134.0,10.824619,10824.619 +18749,2025-03-09T09:21:23.301652-07:00,3105.0,10.819429,10819.429 +18750,2025-03-09T09:21:34.128343-07:00,3120.0,10.826691,10826.691 +18751,2025-03-09T09:21:44.959362-07:00,3135.0,10.831019,10831.019 +18752,2025-03-09T09:21:55.787400-07:00,3071.0,10.828038,10828.038 +18753,2025-03-09T09:22:06.611701-07:00,3095.0,10.824301,10824.301 +18754,2025-03-09T09:22:17.441878-07:00,3097.0,10.830177,10830.177 +18755,2025-03-09T09:22:28.274584-07:00,3104.0,10.832706,10832.706 +18756,2025-03-09T09:22:39.107408-07:00,3059.0,10.832824,10832.824 +18757,2025-03-09T09:22:49.940625-07:00,3093.0,10.833217,10833.217 +18758,2025-03-09T09:23:00.770664-07:00,3088.0,10.830039,10830.039 +18759,2025-03-09T09:23:11.597002-07:00,3082.0,10.826338,10826.338 +18760,2025-03-09T09:23:22.433701-07:00,3024.0,10.836699,10836.699 +18761,2025-03-09T09:23:33.264356-07:00,3031.0,10.830655,10830.655 +18762,2025-03-09T09:23:44.090617-07:00,3037.0,10.826261,10826.261 +18763,2025-03-09T09:23:54.927354-07:00,3029.0,10.836737,10836.737 +18764,2025-03-09T09:24:05.756610-07:00,3056.0,10.829256,10829.256 +18765,2025-03-09T09:24:16.585501-07:00,3061.0,10.828891,10828.891 +18766,2025-03-09T09:24:27.412703-07:00,3051.0,10.827202,10827.202 +18767,2025-03-09T09:24:38.231503-07:00,3085.0,10.8188,10818.8 +18768,2025-03-09T09:24:49.059522-07:00,3071.0,10.828019,10828.019 +18769,2025-03-09T09:24:59.885371-07:00,3055.0,10.825849,10825.849 +18770,2025-03-09T09:25:10.716085-07:00,3071.0,10.830714,10830.714 +18771,2025-03-09T09:25:21.548356-07:00,3071.0,10.832271,10832.271 +18772,2025-03-09T09:25:32.367400-07:00,3037.0,10.819044,10819.044 +18773,2025-03-09T09:25:43.198352-07:00,3058.0,10.830952,10830.952 +18774,2025-03-09T09:25:54.026362-07:00,3043.0,10.82801,10828.01 +18775,2025-03-09T09:26:04.853367-07:00,3042.0,10.827005,10827.005 +18776,2025-03-09T09:26:15.679555-07:00,2998.0,10.826188,10826.188 +18777,2025-03-09T09:26:26.503734-07:00,3011.0,10.824179,10824.179 +18778,2025-03-09T09:26:37.332358-07:00,3023.0,10.828624,10828.624 +18779,2025-03-09T09:26:48.163365-07:00,2963.0,10.831007,10831.007 +18780,2025-03-09T09:26:59.000407-07:00,2979.0,10.837042,10837.042 +18781,2025-03-09T09:27:09.826365-07:00,2996.0,10.825958,10825.958 +18782,2025-03-09T09:27:20.649366-07:00,2961.0,10.823001,10823.001 +18783,2025-03-09T09:27:31.474817-07:00,2970.0,10.825451,10825.451 +18784,2025-03-09T09:27:42.308358-07:00,2977.0,10.833541,10833.541 +18785,2025-03-09T09:27:53.136693-07:00,2976.0,10.828335,10828.335 +18786,2025-03-09T09:28:03.962612-07:00,2939.0,10.825919,10825.919 +18787,2025-03-09T09:28:14.793392-07:00,2948.0,10.83078,10830.78 +18788,2025-03-09T09:28:25.625649-07:00,2915.0,10.832257,10832.257 +18789,2025-03-09T09:28:36.450992-07:00,2959.0,10.825343,10825.343 +18790,2025-03-09T09:28:47.282363-07:00,2967.0,10.831371,10831.371 +18791,2025-03-09T09:28:58.110507-07:00,2917.0,10.828144,10828.144 +18792,2025-03-09T09:29:08.945905-07:00,2929.0,10.835398,10835.398 +18793,2025-03-09T09:29:19.781393-07:00,2946.0,10.835488,10835.488 +18794,2025-03-09T09:29:30.607451-07:00,2960.0,10.826058,10826.058 +18795,2025-03-09T09:29:41.435341-07:00,2958.0,10.82789,10827.89 +18796,2025-03-09T09:29:52.268879-07:00,2951.0,10.833538,10833.538 +18797,2025-03-09T09:30:03.094572-07:00,2935.0,10.825693,10825.693 +18798,2025-03-09T09:30:13.915349-07:00,2906.0,10.820777,10820.777 +18799,2025-03-09T09:30:24.744503-07:00,2906.0,10.829154,10829.154 +18800,2025-03-09T09:30:35.576748-07:00,2898.0,10.832245,10832.245 +18801,2025-03-09T09:30:46.409577-07:00,2871.0,10.832829,10832.829 +18802,2025-03-09T09:30:57.235355-07:00,2850.0,10.825778,10825.778 +18803,2025-03-09T09:31:08.071417-07:00,2891.0,10.836062,10836.062 +18804,2025-03-09T09:31:18.902693-07:00,2889.0,10.831276,10831.276 +18805,2025-03-09T09:31:29.731416-07:00,2864.0,10.828723,10828.723 +18806,2025-03-09T09:31:40.562922-07:00,2847.0,10.831506,10831.506 +18807,2025-03-09T09:31:51.385358-07:00,2864.0,10.822436,10822.436 +18808,2025-03-09T09:32:02.219529-07:00,2827.0,10.834171,10834.171 +18809,2025-03-09T09:32:13.040361-07:00,2850.0,10.820832,10820.832 +18810,2025-03-09T09:32:23.873767-07:00,2845.0,10.833406,10833.406 +18811,2025-03-09T09:32:34.703360-07:00,2815.0,10.829593,10829.593 +18812,2025-03-09T09:32:45.534717-07:00,2835.0,10.831357,10831.357 +18813,2025-03-09T09:32:56.355362-07:00,2835.0,10.820645,10820.645 +18814,2025-03-09T09:33:07.181446-07:00,2803.0,10.826084,10826.084 +18815,2025-03-09T09:33:18.018508-07:00,2828.0,10.837062,10837.062 +18816,2025-03-09T09:33:28.845552-07:00,2754.0,10.827044,10827.044 +18817,2025-03-09T09:33:39.672365-07:00,2800.0,10.826813,10826.813 +18818,2025-03-09T09:33:50.502524-07:00,2810.0,10.830159,10830.159 +18819,2025-03-09T09:34:01.336360-07:00,2768.0,10.833836,10833.836 +18820,2025-03-09T09:34:12.164810-07:00,2759.0,10.82845,10828.45 +18821,2025-03-09T09:34:23.002359-07:00,2803.0,10.837549,10837.549 +18822,2025-03-09T09:34:33.836827-07:00,2811.0,10.834468,10834.468 +18823,2025-03-09T09:34:44.672398-07:00,2747.0,10.835571,10835.571 +18824,2025-03-09T09:34:55.500360-07:00,2804.0,10.827962,10827.962 +18825,2025-03-09T09:35:06.330720-07:00,2811.0,10.83036,10830.36 +18826,2025-03-09T09:35:17.161517-07:00,2818.0,10.830797,10830.797 +18827,2025-03-09T09:35:28.000636-07:00,2795.0,10.839119,10839.119 +18828,2025-03-09T09:35:38.829230-07:00,2805.0,10.828594,10828.594 +18829,2025-03-09T09:35:49.650691-07:00,2775.0,10.821461,10821.461 +18830,2025-03-09T09:36:00.482436-07:00,2809.0,10.831745,10831.745 +18831,2025-03-09T09:36:11.317678-07:00,2819.0,10.835242,10835.242 +18832,2025-03-09T09:36:22.146345-07:00,2817.0,10.828667,10828.667 +18833,2025-03-09T09:36:32.979617-07:00,2755.0,10.833272,10833.272 +18834,2025-03-09T09:36:43.800357-07:00,2807.0,10.82074,10820.74 +18835,2025-03-09T09:36:54.641367-07:00,2769.0,10.84101,10841.01 +18836,2025-03-09T09:37:05.460408-07:00,2783.0,10.819041,10819.041 +18837,2025-03-09T09:37:16.299362-07:00,2767.0,10.838954,10838.954 +18838,2025-03-09T09:37:27.127414-07:00,2768.0,10.828052,10828.052 +18839,2025-03-09T09:37:37.953338-07:00,2727.0,10.825924,10825.924 +18840,2025-03-09T09:37:48.786518-07:00,2736.0,10.83318,10833.18 +18841,2025-03-09T09:37:59.623606-07:00,2721.0,10.837088,10837.088 +18842,2025-03-09T09:38:10.451691-07:00,2733.0,10.828085,10828.085 +18843,2025-03-09T09:38:21.284360-07:00,2725.0,10.832669,10832.669 +18844,2025-03-09T09:38:32.113755-07:00,2693.0,10.829395,10829.395 +18845,2025-03-09T09:38:42.936693-07:00,2711.0,10.822938,10822.938 +18846,2025-03-09T09:38:53.769608-07:00,2695.0,10.832915,10832.915 +18847,2025-03-09T09:39:04.607364-07:00,2691.0,10.837756,10837.756 +18848,2025-03-09T09:39:15.437552-07:00,2659.0,10.830188,10830.188 +18849,2025-03-09T09:39:26.270250-07:00,2671.0,10.832698,10832.698 +18850,2025-03-09T09:39:37.101611-07:00,2633.0,10.831361,10831.361 +18851,2025-03-09T09:39:47.932611-07:00,2659.0,10.831,10831.0 +18852,2025-03-09T09:39:58.758443-07:00,2621.0,10.825832,10825.832 +18853,2025-03-09T09:40:09.597680-07:00,2672.0,10.839237,10839.237 +18854,2025-03-09T09:40:20.428587-07:00,2660.0,10.830907,10830.907 +18855,2025-03-09T09:40:31.265511-07:00,2646.0,10.836924,10836.924 +18856,2025-03-09T09:40:42.090363-07:00,2638.0,10.824852,10824.852 +18857,2025-03-09T09:40:52.919701-07:00,2667.0,10.829338,10829.338 +18858,2025-03-09T09:41:03.749043-07:00,2655.0,10.829342,10829.342 +18859,2025-03-09T09:41:14.569683-07:00,2621.0,10.82064,10820.64 +18860,2025-03-09T09:41:25.400364-07:00,2638.0,10.830681,10830.681 +18861,2025-03-09T09:41:36.231362-07:00,2624.0,10.830998,10830.998 +18862,2025-03-09T09:41:47.060350-07:00,2651.0,10.828988,10828.988 +18863,2025-03-09T09:41:57.897498-07:00,2647.0,10.837148,10837.148 +18864,2025-03-09T09:42:08.726561-07:00,2643.0,10.829063,10829.063 +18865,2025-03-09T09:42:19.559713-07:00,2611.0,10.833152,10833.152 +18866,2025-03-09T09:42:30.388245-07:00,2624.0,10.828532,10828.532 +18867,2025-03-09T09:42:41.220343-07:00,2638.0,10.832098,10832.098 +18868,2025-03-09T09:42:52.049663-07:00,2598.0,10.82932,10829.32 +18869,2025-03-09T09:43:02.877065-07:00,2595.0,10.827402,10827.402 +18870,2025-03-09T09:43:13.707610-07:00,2624.0,10.830545,10830.545 +18871,2025-03-09T09:43:24.537362-07:00,2559.0,10.829752,10829.752 +18872,2025-03-09T09:43:35.365772-07:00,2639.0,10.82841,10828.41 +18873,2025-03-09T09:43:46.200481-07:00,2637.0,10.834709,10834.709 +18874,2025-03-09T09:43:57.028831-07:00,2631.0,10.82835,10828.35 +18875,2025-03-09T09:44:07.863362-07:00,2613.0,10.834531,10834.531 +18876,2025-03-09T09:44:18.693482-07:00,2555.0,10.83012,10830.12 +18877,2025-03-09T09:44:29.521360-07:00,2544.0,10.827878,10827.878 +18878,2025-03-09T09:44:40.348749-07:00,2605.0,10.827389,10827.389 +18879,2025-03-09T09:44:51.173824-07:00,2529.0,10.825075,10825.075 +18880,2025-03-09T09:45:02.009514-07:00,2527.0,10.83569,10835.69 +18881,2025-03-09T09:45:12.833358-07:00,2542.0,10.823844,10823.844 +18882,2025-03-09T09:45:23.658607-07:00,2538.0,10.825249,10825.249 +18883,2025-03-09T09:45:34.486363-07:00,2531.0,10.827756,10827.756 +18884,2025-03-09T09:45:45.324623-07:00,2518.0,10.83826,10838.26 +18885,2025-03-09T09:45:56.158488-07:00,2443.0,10.833865,10833.865 +18886,2025-03-09T09:46:06.982919-07:00,2487.0,10.824431,10824.431 +18887,2025-03-09T09:46:17.812362-07:00,2511.0,10.829443,10829.443 +18888,2025-03-09T09:46:28.643419-07:00,2500.0,10.831057,10831.057 +18889,2025-03-09T09:46:39.480978-07:00,2451.0,10.837559,10837.559 +18890,2025-03-09T09:46:50.312357-07:00,2468.0,10.831379,10831.379 +18891,2025-03-09T09:47:01.145130-07:00,2486.0,10.832773,10832.773 +18892,2025-03-09T09:47:11.987740-07:00,2448.0,10.84261,10842.61 +18893,2025-03-09T09:47:22.813589-07:00,2415.0,10.825849,10825.849 +18894,2025-03-09T09:47:33.651822-07:00,2416.0,10.838233,10838.233 +18895,2025-03-09T09:47:44.481358-07:00,2405.0,10.829536,10829.536 +18896,2025-03-09T09:47:55.307619-07:00,2385.0,10.826261,10826.261 +18897,2025-03-09T09:48:06.138635-07:00,2417.0,10.831016,10831.016 +18898,2025-03-09T09:48:16.969653-07:00,2442.0,10.831018,10831.018 +18899,2025-03-09T09:48:27.815031-07:00,2419.0,10.845378,10845.378 +18900,2025-03-09T09:48:38.642341-07:00,2434.0,10.82731,10827.31 +18901,2025-03-09T09:48:49.477429-07:00,2384.0,10.835088,10835.088 +18902,2025-03-09T09:49:00.309363-07:00,2351.0,10.831934,10831.934 +18903,2025-03-09T09:49:11.152344-07:00,2384.0,10.842981,10842.981 +18904,2025-03-09T09:49:21.989116-07:00,2387.0,10.836772,10836.772 +18905,2025-03-09T09:49:32.817568-07:00,2373.0,10.828452,10828.452 +18906,2025-03-09T09:49:43.649563-07:00,2318.0,10.831995,10831.995 +18907,2025-03-09T09:49:54.479352-07:00,2324.0,10.829789,10829.789 +18908,2025-03-09T09:50:05.310695-07:00,2356.0,10.831343,10831.343 +18909,2025-03-09T09:50:16.142858-07:00,2352.0,10.832163,10832.163 +18910,2025-03-09T09:50:26.970847-07:00,2303.0,10.827989,10827.989 +18911,2025-03-09T09:50:37.806352-07:00,2330.0,10.835505,10835.505 +18912,2025-03-09T09:50:48.626622-07:00,2346.0,10.82027,10820.27 +18913,2025-03-09T09:50:59.463444-07:00,2351.0,10.836822,10836.822 +18914,2025-03-09T09:51:10.290764-07:00,2349.0,10.82732,10827.32 +18915,2025-03-09T09:51:21.127598-07:00,2343.0,10.836834,10836.834 +18916,2025-03-09T09:51:31.960507-07:00,2307.0,10.832909,10832.909 +18917,2025-03-09T09:51:42.796668-07:00,2362.0,10.836161,10836.161 +18918,2025-03-09T09:51:53.622796-07:00,2305.0,10.826128,10826.128 +18919,2025-03-09T09:52:04.464748-07:00,2368.0,10.841952,10841.952 +18920,2025-03-09T09:52:15.297588-07:00,2374.0,10.83284,10832.84 +18921,2025-03-09T09:52:26.128342-07:00,2371.0,10.830754,10830.754 +18922,2025-03-09T09:52:36.971564-07:00,2323.0,10.843222,10843.222 +18923,2025-03-09T09:52:47.796366-07:00,2291.0,10.824802,10824.802 +18924,2025-03-09T09:52:58.635570-07:00,2311.0,10.839204,10839.204 +18925,2025-03-09T09:53:09.467811-07:00,2334.0,10.832241,10832.241 +18926,2025-03-09T09:53:20.304711-07:00,2350.0,10.8369,10836.9 +18927,2025-03-09T09:53:31.141618-07:00,2352.0,10.836907,10836.907 +18928,2025-03-09T09:53:41.968362-07:00,2341.0,10.826744,10826.744 +18929,2025-03-09T09:53:52.800680-07:00,2325.0,10.832318,10832.318 +18930,2025-03-09T09:54:03.638872-07:00,2300.0,10.838192,10838.192 +18931,2025-03-09T09:54:14.474600-07:00,2309.0,10.835728,10835.728 +18932,2025-03-09T09:54:25.305635-07:00,2332.0,10.831035,10831.035 +18933,2025-03-09T09:54:36.139471-07:00,2295.0,10.833836,10833.836 +18934,2025-03-09T09:54:46.977814-07:00,2336.0,10.838343,10838.343 +18935,2025-03-09T09:54:57.809351-07:00,2320.0,10.831537,10831.537 +18936,2025-03-09T09:55:08.640360-07:00,2330.0,10.831009,10831.009 +18937,2025-03-09T09:55:19.467410-07:00,2327.0,10.82705,10827.05 +18938,2025-03-09T09:55:30.299615-07:00,2313.0,10.832205,10832.205 +18939,2025-03-09T09:55:41.135539-07:00,2287.0,10.835924,10835.924 +18940,2025-03-09T09:55:51.971364-07:00,2341.0,10.835825,10835.825 +18941,2025-03-09T09:56:02.803361-07:00,2352.0,10.831997,10831.997 +18942,2025-03-09T09:56:13.636518-07:00,2363.0,10.833157,10833.157 +18943,2025-03-09T09:56:24.473361-07:00,2336.0,10.836843,10836.843 +18944,2025-03-09T09:56:35.295363-07:00,2379.0,10.822002,10822.002 +18945,2025-03-09T09:56:46.120370-07:00,2325.0,10.825007,10825.007 +18946,2025-03-09T09:56:56.950709-07:00,2343.0,10.830339,10830.339 +18947,2025-03-09T09:57:07.783608-07:00,2387.0,10.832899,10832.899 +18948,2025-03-09T09:57:18.607419-07:00,2384.0,10.823811,10823.811 +18949,2025-03-09T09:57:29.434427-07:00,2409.0,10.827008,10827.008 +18950,2025-03-09T09:57:40.266692-07:00,2407.0,10.832265,10832.265 +18951,2025-03-09T09:57:51.098362-07:00,2427.0,10.83167,10831.67 +18952,2025-03-09T09:58:01.931057-07:00,2423.0,10.832695,10832.695 +18953,2025-03-09T09:58:12.761682-07:00,2340.0,10.830625,10830.625 +18954,2025-03-09T09:58:23.583739-07:00,2397.0,10.822057,10822.057 +18955,2025-03-09T09:58:34.424398-07:00,2342.0,10.840659,10840.659 +18956,2025-03-09T09:58:45.256898-07:00,2367.0,10.8325,10832.5 +18957,2025-03-09T09:58:56.097523-07:00,2334.0,10.840625,10840.625 +18958,2025-03-09T09:59:06.931413-07:00,2290.0,10.83389,10833.89 +18959,2025-03-09T09:59:17.758763-07:00,2340.0,10.82735,10827.35 +18960,2025-03-09T09:59:28.596361-07:00,2329.0,10.837598,10837.598 +18961,2025-03-09T09:59:39.431603-07:00,2321.0,10.835242,10835.242 +18962,2025-03-09T09:59:50.265355-07:00,2293.0,10.833752,10833.752 +18963,2025-03-09T10:00:01.091364-07:00,2227.0,10.826009,10826.009 +18964,2025-03-09T10:00:11.931674-07:00,2310.0,10.84031,10840.31 +18965,2025-03-09T10:00:22.760699-07:00,2295.0,10.829025,10829.025 +18966,2025-03-09T10:00:33.596776-07:00,2256.0,10.836077,10836.077 +18967,2025-03-09T10:00:44.439955-07:00,2279.0,10.843179,10843.179 +18968,2025-03-09T10:00:55.264663-07:00,2241.0,10.824708,10824.708 +18969,2025-03-09T10:01:06.109505-07:00,2203.0,10.844842,10844.842 +18970,2025-03-09T10:01:16.946664-07:00,2230.0,10.837159,10837.159 +18971,2025-03-09T10:01:27.776362-07:00,2178.0,10.829698,10829.698 +18972,2025-03-09T10:01:38.612642-07:00,2249.0,10.83628,10836.28 +18973,2025-03-09T10:01:49.447770-07:00,2247.0,10.835128,10835.128 +18974,2025-03-09T10:02:00.282562-07:00,2209.0,10.834792,10834.792 +18975,2025-03-09T10:02:11.126709-07:00,2240.0,10.844147,10844.147 +18976,2025-03-09T10:02:21.954360-07:00,2241.0,10.827651,10827.651 +18977,2025-03-09T10:02:32.798616-07:00,2192.0,10.844256,10844.256 +18978,2025-03-09T10:02:43.623421-07:00,2227.0,10.824805,10824.805 +18979,2025-03-09T10:02:54.465375-07:00,2139.0,10.841954,10841.954 +18980,2025-03-09T10:03:05.302632-07:00,2183.0,10.837257,10837.257 +18981,2025-03-09T10:03:16.136359-07:00,2212.0,10.833727,10833.727 +18982,2025-03-09T10:03:26.977568-07:00,2182.0,10.841209,10841.209 +18983,2025-03-09T10:03:37.806642-07:00,2209.0,10.829074,10829.074 +18984,2025-03-09T10:03:48.648339-07:00,2175.0,10.841697,10841.697 +18985,2025-03-09T10:03:59.478366-07:00,2128.0,10.830027,10830.027 +18986,2025-03-09T10:04:10.311110-07:00,2197.0,10.832744,10832.744 +18987,2025-03-09T10:04:21.151509-07:00,2171.0,10.840399,10840.399 +18988,2025-03-09T10:04:31.995412-07:00,2112.0,10.843903,10843.903 +18989,2025-03-09T10:04:42.830096-07:00,2192.0,10.834684,10834.684 +18990,2025-03-09T10:04:53.661361-07:00,2154.0,10.831265,10831.265 +18991,2025-03-09T10:05:04.499374-07:00,2126.0,10.838013,10838.013 +18992,2025-03-09T10:05:15.330638-07:00,2129.0,10.831264,10831.264 +18993,2025-03-09T10:05:26.172362-07:00,2185.0,10.841724,10841.724 +18994,2025-03-09T10:05:36.999852-07:00,2150.0,10.82749,10827.49 +18995,2025-03-09T10:05:47.833494-07:00,2160.0,10.833642,10833.642 +18996,2025-03-09T10:05:58.671404-07:00,2159.0,10.83791,10837.91 +18997,2025-03-09T10:06:09.507444-07:00,2192.0,10.83604,10836.04 +18998,2025-03-09T10:06:20.349418-07:00,2185.0,10.841974,10841.974 +18999,2025-03-09T10:06:31.193397-07:00,2177.0,10.843979,10843.979 +19000,2025-03-09T10:06:42.038063-07:00,2114.0,10.844666,10844.666 +19001,2025-03-09T10:06:52.874464-07:00,2130.0,10.836401,10836.401 +19002,2025-03-09T10:07:03.706489-07:00,2159.0,10.832025,10832.025 +19003,2025-03-09T10:07:14.533952-07:00,2139.0,10.827463,10827.463 +19004,2025-03-09T10:07:25.373406-07:00,2134.0,10.839454,10839.454 +19005,2025-03-09T10:07:36.217582-07:00,2181.0,10.844176,10844.176 +19006,2025-03-09T10:07:47.049867-07:00,2178.0,10.832285,10832.285 +19007,2025-03-09T10:07:57.890618-07:00,2186.0,10.840751,10840.751 +19008,2025-03-09T10:08:08.723403-07:00,2194.0,10.832785,10832.785 +19009,2025-03-09T10:08:19.561303-07:00,2123.0,10.8379,10837.9 +19010,2025-03-09T10:08:30.397406-07:00,2179.0,10.836103,10836.103 +19011,2025-03-09T10:08:41.240384-07:00,2112.0,10.842978,10842.978 +19012,2025-03-09T10:08:52.080838-07:00,2160.0,10.840454,10840.454 +19013,2025-03-09T10:09:02.916693-07:00,2151.0,10.835855,10835.855 +19014,2025-03-09T10:09:13.743539-07:00,2102.0,10.826846,10826.846 +19015,2025-03-09T10:09:24.575396-07:00,2166.0,10.831857,10831.857 +19016,2025-03-09T10:09:35.411649-07:00,2087.0,10.836253,10836.253 +19017,2025-03-09T10:09:46.244114-07:00,2096.0,10.832465,10832.465 +19018,2025-03-09T10:09:57.087401-07:00,2160.0,10.843287,10843.287 +19019,2025-03-09T10:10:07.913508-07:00,2170.0,10.826107,10826.107 +19020,2025-03-09T10:10:18.755797-07:00,2174.0,10.842289,10842.289 +19021,2025-03-09T10:10:29.593531-07:00,2143.0,10.837734,10837.734 +19022,2025-03-09T10:10:40.426692-07:00,2167.0,10.833161,10833.161 +19023,2025-03-09T10:10:51.262753-07:00,2125.0,10.836061,10836.061 +19024,2025-03-09T10:11:02.089655-07:00,2160.0,10.826902,10826.902 +19025,2025-03-09T10:11:12.921455-07:00,2081.0,10.8318,10831.8 +19026,2025-03-09T10:11:23.766936-07:00,2102.0,10.845481,10845.481 +19027,2025-03-09T10:11:34.595991-07:00,2143.0,10.829055,10829.055 +19028,2025-03-09T10:11:45.432397-07:00,2079.0,10.836406,10836.406 +19029,2025-03-09T10:11:56.269463-07:00,2146.0,10.837066,10837.066 +19030,2025-03-09T10:12:07.107767-07:00,2131.0,10.838304,10838.304 +19031,2025-03-09T10:12:17.951786-07:00,2160.0,10.844019,10844.019 +19032,2025-03-09T10:12:28.777403-07:00,2142.0,10.825617,10825.617 +19033,2025-03-09T10:12:39.610709-07:00,2131.0,10.833306,10833.306 +19034,2025-03-09T10:12:50.450549-07:00,2160.0,10.83984,10839.84 +19035,2025-03-09T10:13:01.295065-07:00,2163.0,10.844516,10844.516 +19036,2025-03-09T10:13:12.121726-07:00,2129.0,10.826661,10826.661 +19037,2025-03-09T10:13:22.957403-07:00,2098.0,10.835677,10835.677 +19038,2025-03-09T10:13:33.792760-07:00,2099.0,10.835357,10835.357 +19039,2025-03-09T10:13:44.632074-07:00,2106.0,10.839314,10839.314 +19040,2025-03-09T10:13:55.456867-07:00,2128.0,10.824793,10824.793 +19041,2025-03-09T10:14:06.302485-07:00,2128.0,10.845618,10845.618 +19042,2025-03-09T10:14:17.129619-07:00,2087.0,10.827134,10827.134 +19043,2025-03-09T10:14:27.959678-07:00,2112.0,10.830059,10830.059 +19044,2025-03-09T10:14:38.797375-07:00,2138.0,10.837697,10837.697 +19045,2025-03-09T10:14:49.632394-07:00,2178.0,10.835019,10835.019 +19046,2025-03-09T10:15:00.472417-07:00,2182.0,10.840023,10840.023 +19047,2025-03-09T10:15:11.310672-07:00,2186.0,10.838255,10838.255 +19048,2025-03-09T10:15:22.150693-07:00,2107.0,10.840021,10840.021 +19049,2025-03-09T10:15:32.984728-07:00,2145.0,10.834035,10834.035 +19050,2025-03-09T10:15:43.820651-07:00,2163.0,10.835923,10835.923 +19051,2025-03-09T10:15:54.657409-07:00,2169.0,10.836758,10836.758 +19052,2025-03-09T10:16:05.491711-07:00,2195.0,10.834302,10834.302 +19053,2025-03-09T10:16:16.322538-07:00,2143.0,10.830827,10830.827 +19054,2025-03-09T10:16:27.159031-07:00,2221.0,10.836493,10836.493 +19055,2025-03-09T10:16:37.985403-07:00,2182.0,10.826372,10826.372 +19056,2025-03-09T10:16:48.828645-07:00,2216.0,10.843242,10843.242 +19057,2025-03-09T10:16:59.660963-07:00,2151.0,10.832318,10832.318 +19058,2025-03-09T10:17:10.503486-07:00,2165.0,10.842523,10842.523 +19059,2025-03-09T10:17:21.336532-07:00,2204.0,10.833046,10833.046 +19060,2025-03-09T10:17:32.171912-07:00,2179.0,10.83538,10835.38 +19061,2025-03-09T10:17:43.015403-07:00,2217.0,10.843491,10843.491 +19062,2025-03-09T10:17:53.849408-07:00,2225.0,10.834005,10834.005 +19063,2025-03-09T10:18:04.684690-07:00,2211.0,10.835282,10835.282 +19064,2025-03-09T10:18:15.525479-07:00,2166.0,10.840789,10840.789 +19065,2025-03-09T10:18:26.360195-07:00,2198.0,10.834716,10834.716 +19066,2025-03-09T10:18:37.191569-07:00,2166.0,10.831374,10831.374 +19067,2025-03-09T10:18:48.028485-07:00,2169.0,10.836916,10836.916 +19068,2025-03-09T10:18:58.867403-07:00,2185.0,10.838918,10838.918 +19069,2025-03-09T10:19:09.703997-07:00,2230.0,10.836594,10836.594 +19070,2025-03-09T10:19:20.540406-07:00,2224.0,10.836409,10836.409 +19071,2025-03-09T10:19:31.373434-07:00,2174.0,10.833028,10833.028 +19072,2025-03-09T10:19:42.217677-07:00,2198.0,10.844243,10844.243 +19073,2025-03-09T10:19:53.047752-07:00,2244.0,10.830075,10830.075 +19074,2025-03-09T10:20:03.884390-07:00,2206.0,10.836638,10836.638 +19075,2025-03-09T10:20:14.727709-07:00,2194.0,10.843319,10843.319 +19076,2025-03-09T10:20:25.570401-07:00,2238.0,10.842692,10842.692 +19077,2025-03-09T10:20:36.398642-07:00,2231.0,10.828241,10828.241 +19078,2025-03-09T10:20:47.233405-07:00,2247.0,10.834763,10834.763 +19079,2025-03-09T10:20:58.072405-07:00,2211.0,10.839,10839.0 +19080,2025-03-09T10:21:08.909547-07:00,2207.0,10.837142,10837.142 +19081,2025-03-09T10:21:19.745886-07:00,2229.0,10.836339,10836.339 +19082,2025-03-09T10:21:30.587384-07:00,2201.0,10.841498,10841.498 +19083,2025-03-09T10:21:41.431382-07:00,2241.0,10.843998,10843.998 +19084,2025-03-09T10:21:52.264105-07:00,2171.0,10.832723,10832.723 +19085,2025-03-09T10:22:03.111626-07:00,2191.0,10.847521,10847.521 +19086,2025-03-09T10:22:11.998886-07:00,2210.0,8.88726,8887.26 +19087,2025-03-09T10:22:13.952091-07:00,2247.0,1.953205,1953.205 +19088,2025-03-09T10:22:24.788546-07:00,2235.0,10.836455,10836.455 +19089,2025-03-09T10:22:35.630291-07:00,2231.0,10.841745,10841.745 +19090,2025-03-09T10:22:46.471656-07:00,2272.0,10.841365,10841.365 +19091,2025-03-09T10:22:57.311406-07:00,2265.0,10.83975,10839.75 +19092,2025-03-09T10:23:08.150381-07:00,2271.0,10.838975,10838.975 +19093,2025-03-09T10:23:18.981393-07:00,2287.0,10.831012,10831.012 +19094,2025-03-09T10:23:29.824401-07:00,2285.0,10.843008,10843.008 +19095,2025-03-09T10:23:40.648887-07:00,2213.0,10.824486,10824.486 +19096,2025-03-09T10:23:51.493954-07:00,2230.0,10.845067,10845.067 +19097,2025-03-09T10:24:02.336768-07:00,2271.0,10.842814,10842.814 +19098,2025-03-09T10:24:13.170935-07:00,2291.0,10.834167,10834.167 +19099,2025-03-09T10:24:24.011402-07:00,2316.0,10.840467,10840.467 +19100,2025-03-09T10:24:34.849389-07:00,2288.0,10.837987,10837.987 +19101,2025-03-09T10:24:45.681968-07:00,2298.0,10.832579,10832.579 +19102,2025-03-09T10:24:56.520403-07:00,2244.0,10.838435,10838.435 +19103,2025-03-09T10:25:07.360403-07:00,2279.0,10.84,10840.0 +19104,2025-03-09T10:25:18.198414-07:00,2311.0,10.838011,10838.011 +19105,2025-03-09T10:25:29.033459-07:00,2285.0,10.835045,10835.045 +19106,2025-03-09T10:25:39.866074-07:00,2315.0,10.832615,10832.615 +19107,2025-03-09T10:25:50.704816-07:00,2263.0,10.838742,10838.742 +19108,2025-03-09T10:26:01.531468-07:00,2346.0,10.826652,10826.652 +19109,2025-03-09T10:26:12.369862-07:00,2279.0,10.838394,10838.394 +19110,2025-03-09T10:26:23.205397-07:00,2310.0,10.835535,10835.535 +19111,2025-03-09T10:26:34.033600-07:00,2356.0,10.828203,10828.203 +19112,2025-03-09T10:26:44.867455-07:00,2352.0,10.833855,10833.855 +19113,2025-03-09T10:26:55.706631-07:00,2338.0,10.839176,10839.176 +19114,2025-03-09T10:27:06.539904-07:00,2355.0,10.833273,10833.273 +19115,2025-03-09T10:27:17.376394-07:00,2355.0,10.83649,10836.49 +19116,2025-03-09T10:27:28.218614-07:00,2343.0,10.84222,10842.22 +19117,2025-03-09T10:27:39.051742-07:00,2353.0,10.833128,10833.128 +19118,2025-03-09T10:27:49.892720-07:00,2313.0,10.840978,10840.978 +19119,2025-03-09T10:28:00.726409-07:00,2315.0,10.833689,10833.689 +19120,2025-03-09T10:28:11.557376-07:00,2350.0,10.830967,10830.967 +19121,2025-03-09T10:28:22.388450-07:00,2335.0,10.831074,10831.074 +19122,2025-03-09T10:28:33.226709-07:00,2329.0,10.838259,10838.259 +19123,2025-03-09T10:28:44.060406-07:00,2381.0,10.833697,10833.697 +19124,2025-03-09T10:28:54.900478-07:00,2366.0,10.840072,10840.072 +19125,2025-03-09T10:29:05.734114-07:00,2397.0,10.833636,10833.636 +19126,2025-03-09T10:29:16.577567-07:00,2431.0,10.843453,10843.453 +19127,2025-03-09T10:29:27.402407-07:00,2363.0,10.82484,10824.84 +19128,2025-03-09T10:29:38.232454-07:00,2442.0,10.830047,10830.047 +19129,2025-03-09T10:29:49.074371-07:00,2380.0,10.841917,10841.917 +19130,2025-03-09T10:29:59.919413-07:00,2359.0,10.845042,10845.042 +19131,2025-03-09T10:30:10.749271-07:00,2414.0,10.829858,10829.858 +19132,2025-03-09T10:30:21.578460-07:00,2448.0,10.829189,10829.189 +19133,2025-03-09T10:30:32.413744-07:00,2437.0,10.835284,10835.284 +19134,2025-03-09T10:30:43.246395-07:00,2448.0,10.832651,10832.651 +19135,2025-03-09T10:30:54.082280-07:00,2487.0,10.835885,10835.885 +19136,2025-03-09T10:31:04.915662-07:00,2416.0,10.833382,10833.382 +19137,2025-03-09T10:31:15.747396-07:00,2463.0,10.831734,10831.734 +19138,2025-03-09T10:31:26.584724-07:00,2478.0,10.837328,10837.328 +19139,2025-03-09T10:31:37.422398-07:00,2525.0,10.837674,10837.674 +19140,2025-03-09T10:31:48.259410-07:00,2532.0,10.837012,10837.012 +19141,2025-03-09T10:31:59.091030-07:00,2449.0,10.83162,10831.62 +19142,2025-03-09T10:32:09.935531-07:00,2512.0,10.844501,10844.501 +19143,2025-03-09T10:32:20.777445-07:00,2533.0,10.841914,10841.914 +19144,2025-03-09T10:32:31.612932-07:00,2547.0,10.835487,10835.487 +19145,2025-03-09T10:32:42.449404-07:00,2559.0,10.836472,10836.472 +19146,2025-03-09T10:32:53.289454-07:00,2559.0,10.84005,10840.05 +19147,2025-03-09T10:33:04.122757-07:00,2597.0,10.833303,10833.303 +19148,2025-03-09T10:33:14.964551-07:00,2559.0,10.841794,10841.794 +19149,2025-03-09T10:33:25.801549-07:00,2599.0,10.836998,10836.998 +19150,2025-03-09T10:33:36.644548-07:00,2583.0,10.842999,10842.999 +19151,2025-03-09T10:33:47.482726-07:00,2591.0,10.838178,10838.178 +19152,2025-03-09T10:33:58.315552-07:00,2621.0,10.832826,10832.826 +19153,2025-03-09T10:34:09.151787-07:00,2607.0,10.836235,10836.235 +19154,2025-03-09T10:34:19.989403-07:00,2537.0,10.837616,10837.616 +19155,2025-03-09T10:34:30.827402-07:00,2611.0,10.837999,10837.999 +19156,2025-03-09T10:34:41.657733-07:00,2615.0,10.830331,10830.331 +19157,2025-03-09T10:34:52.500810-07:00,2559.0,10.843077,10843.077 +19158,2025-03-09T10:35:03.333612-07:00,2619.0,10.832802,10832.802 +19159,2025-03-09T10:35:14.165735-07:00,2610.0,10.832123,10832.123 +19160,2025-03-09T10:35:25.005396-07:00,2608.0,10.839661,10839.661 +19161,2025-03-09T10:35:35.845407-07:00,2603.0,10.840011,10840.011 +19162,2025-03-09T10:35:46.680728-07:00,2635.0,10.835321,10835.321 +19163,2025-03-09T10:35:57.514013-07:00,2640.0,10.833285,10833.285 +19164,2025-03-09T10:36:08.354458-07:00,2621.0,10.840445,10840.445 +19165,2025-03-09T10:36:19.184525-07:00,2590.0,10.830067,10830.067 +19166,2025-03-09T10:36:30.021396-07:00,2650.0,10.836871,10836.871 +19167,2025-03-09T10:36:40.862626-07:00,2635.0,10.84123,10841.23 +19168,2025-03-09T10:36:51.697450-07:00,2627.0,10.834824,10834.824 +19169,2025-03-09T10:37:02.536674-07:00,2622.0,10.839224,10839.224 +19170,2025-03-09T10:37:13.377652-07:00,2618.0,10.840978,10840.978 +19171,2025-03-09T10:37:24.214377-07:00,2647.0,10.836725,10836.725 +19172,2025-03-09T10:37:35.045484-07:00,2647.0,10.831107,10831.107 +19173,2025-03-09T10:37:45.885630-07:00,2618.0,10.840146,10840.146 +19174,2025-03-09T10:37:56.719627-07:00,2637.0,10.833997,10833.997 +19175,2025-03-09T10:38:07.547416-07:00,2637.0,10.827789,10827.789 +19176,2025-03-09T10:38:18.377668-07:00,2640.0,10.830252,10830.252 +19177,2025-03-09T10:38:29.215898-07:00,2647.0,10.83823,10838.23 +19178,2025-03-09T10:38:40.058392-07:00,2621.0,10.842494,10842.494 +19179,2025-03-09T10:38:50.896469-07:00,2642.0,10.838077,10838.077 +19180,2025-03-09T10:39:01.738477-07:00,2559.0,10.842008,10842.008 +19181,2025-03-09T10:39:12.576465-07:00,2615.0,10.837988,10837.988 +19182,2025-03-09T10:39:23.419003-07:00,2594.0,10.842538,10842.538 +19183,2025-03-09T10:39:34.251380-07:00,2589.0,10.832377,10832.377 +19184,2025-03-09T10:39:45.092401-07:00,2610.0,10.841021,10841.021 +19185,2025-03-09T10:39:55.936399-07:00,2629.0,10.843998,10843.998 +19186,2025-03-09T10:40:06.775513-07:00,2640.0,10.839114,10839.114 +19187,2025-03-09T10:40:17.617651-07:00,2627.0,10.842138,10842.138 +19188,2025-03-09T10:40:28.459504-07:00,2642.0,10.841853,10841.853 +19189,2025-03-09T10:40:39.303399-07:00,2672.0,10.843895,10843.895 +19190,2025-03-09T10:40:50.140174-07:00,2673.0,10.836775,10836.775 +19191,2025-03-09T10:41:00.978889-07:00,2640.0,10.838715,10838.715 +19192,2025-03-09T10:41:11.826601-07:00,2605.0,10.847712,10847.712 +19193,2025-03-09T10:41:22.659734-07:00,2671.0,10.833133,10833.133 +19194,2025-03-09T10:41:33.502663-07:00,2669.0,10.842929,10842.929 +19195,2025-03-09T10:41:44.345464-07:00,2646.0,10.842801,10842.801 +19196,2025-03-09T10:41:55.176744-07:00,2666.0,10.83128,10831.28 +19197,2025-03-09T10:42:06.003402-07:00,2648.0,10.826658,10826.658 +19198,2025-03-09T10:42:16.839401-07:00,2662.0,10.835999,10835.999 +19199,2025-03-09T10:42:27.682733-07:00,2630.0,10.843332,10843.332 +19200,2025-03-09T10:42:38.521399-07:00,2597.0,10.838666,10838.666 +19201,2025-03-09T10:42:49.363923-07:00,2608.0,10.842524,10842.524 +19202,2025-03-09T10:43:00.201887-07:00,2635.0,10.837964,10837.964 +19203,2025-03-09T10:43:11.039629-07:00,2609.0,10.837742,10837.742 +19204,2025-03-09T10:43:21.881723-07:00,2595.0,10.842094,10842.094 +19205,2025-03-09T10:43:32.728407-07:00,2657.0,10.846684,10846.684 +19206,2025-03-09T10:43:43.563263-07:00,2640.0,10.834856,10834.856 +19207,2025-03-09T10:43:54.393427-07:00,2597.0,10.830164,10830.164 +19208,2025-03-09T10:44:05.233076-07:00,2629.0,10.839649,10839.649 +19209,2025-03-09T10:44:16.070734-07:00,2652.0,10.837658,10837.658 +19210,2025-03-09T10:44:26.902406-07:00,2645.0,10.831672,10831.672 +19211,2025-03-09T10:44:37.743401-07:00,2613.0,10.840995,10840.995 +19212,2025-03-09T10:44:48.583113-07:00,2583.0,10.839712,10839.712 +19213,2025-03-09T10:44:59.416759-07:00,2609.0,10.833646,10833.646 +19214,2025-03-09T10:44:59.658012-07:00,2609.0,0.241253,241.253 +19215,2025-03-09T10:45:10.247885-07:00,2646.0,10.589873,10589.873 +19216,2025-03-09T10:45:21.088540-07:00,2624.0,10.840655,10840.655 +19217,2025-03-09T10:45:31.925645-07:00,2608.0,10.837105,10837.105 +19218,2025-03-09T10:45:42.771408-07:00,2613.0,10.845763,10845.763 +19219,2025-03-09T10:45:53.606186-07:00,2611.0,10.834778,10834.778 +19220,2025-03-09T10:46:04.441461-07:00,2638.0,10.835275,10835.275 +19221,2025-03-09T10:46:15.289571-07:00,2645.0,10.84811,10848.11 +19222,2025-03-09T10:46:26.125097-07:00,2643.0,10.835526,10835.526 +19223,2025-03-09T10:46:36.957439-07:00,2640.0,10.832342,10832.342 +19224,2025-03-09T10:46:47.796457-07:00,2617.0,10.839018,10839.018 +19225,2025-03-09T10:46:58.634960-07:00,2640.0,10.838503,10838.503 +19226,2025-03-09T10:47:09.478994-07:00,2608.0,10.844034,10844.034 +19227,2025-03-09T10:47:20.311413-07:00,2594.0,10.832419,10832.419 +19228,2025-03-09T10:47:31.154805-07:00,2631.0,10.843392,10843.392 +19229,2025-03-09T10:47:41.996679-07:00,2634.0,10.841874,10841.874 +19230,2025-03-09T10:47:52.835622-07:00,2622.0,10.838943,10838.943 +19231,2025-03-09T10:48:03.674528-07:00,2618.0,10.838906,10838.906 +19232,2025-03-09T10:48:14.513704-07:00,2614.0,10.839176,10839.176 +19233,2025-03-09T10:48:25.352452-07:00,2553.0,10.838748,10838.748 +19234,2025-03-09T10:48:36.186401-07:00,2615.0,10.833949,10833.949 +19235,2025-03-09T10:48:47.020365-07:00,2557.0,10.833964,10833.964 +19236,2025-03-09T10:48:57.864539-07:00,2605.0,10.844174,10844.174 +19237,2025-03-09T10:49:08.695401-07:00,2627.0,10.830862,10830.862 +19238,2025-03-09T10:49:19.538688-07:00,2630.0,10.843287,10843.287 +19239,2025-03-09T10:49:30.377397-07:00,2557.0,10.838709,10838.709 +19240,2025-03-09T10:49:41.213645-07:00,2624.0,10.836248,10836.248 +19241,2025-03-09T10:49:52.052399-07:00,2601.0,10.838754,10838.754 +19242,2025-03-09T10:50:02.888404-07:00,2544.0,10.836005,10836.005 +19243,2025-03-09T10:50:13.722403-07:00,2597.0,10.833999,10833.999 +19244,2025-03-09T10:50:24.563566-07:00,2589.0,10.841163,10841.163 +19245,2025-03-09T10:50:35.404556-07:00,2555.0,10.84099,10840.99 +19246,2025-03-09T10:50:46.248642-07:00,2594.0,10.844086,10844.086 +19247,2025-03-09T10:50:57.088407-07:00,2610.0,10.839765,10839.765 +19248,2025-03-09T10:51:07.924239-07:00,2610.0,10.835832,10835.832 +19249,2025-03-09T10:51:18.762409-07:00,2619.0,10.83817,10838.17 +19250,2025-03-09T10:51:29.603400-07:00,2556.0,10.840991,10840.991 +19251,2025-03-09T10:51:40.437594-07:00,2607.0,10.834194,10834.194 +19252,2025-03-09T10:51:51.279819-07:00,2546.0,10.842225,10842.225 +19253,2025-03-09T10:52:02.111611-07:00,2595.0,10.831792,10831.792 +19254,2025-03-09T10:52:12.950795-07:00,2608.0,10.839184,10839.184 +19255,2025-03-09T10:52:23.786616-07:00,2611.0,10.835821,10835.821 +19256,2025-03-09T10:52:34.628396-07:00,2579.0,10.84178,10841.78 +19257,2025-03-09T10:52:45.467705-07:00,2559.0,10.839309,10839.309 +19258,2025-03-09T10:52:56.312449-07:00,2597.0,10.844744,10844.744 +19259,2025-03-09T10:53:07.146548-07:00,2589.0,10.834099,10834.099 +19260,2025-03-09T10:53:17.978715-07:00,2554.0,10.832167,10832.167 +19261,2025-03-09T10:53:28.815400-07:00,2559.0,10.836685,10836.685 +19262,2025-03-09T10:53:39.657395-07:00,2551.0,10.841995,10841.995 +19263,2025-03-09T10:53:50.490944-07:00,2542.0,10.833549,10833.549 +19264,2025-03-09T10:54:01.329397-07:00,2559.0,10.838453,10838.453 +19265,2025-03-09T10:54:12.165656-07:00,2529.0,10.836259,10836.259 +19266,2025-03-09T10:54:23.002906-07:00,2549.0,10.83725,10837.25 +19267,2025-03-09T10:54:33.851761-07:00,2590.0,10.848855,10848.855 +19268,2025-03-09T10:54:44.690635-07:00,2515.0,10.838874,10838.874 +19269,2025-03-09T10:54:55.537432-07:00,2559.0,10.846797,10846.797 +19270,2025-03-09T10:55:06.372705-07:00,2592.0,10.835273,10835.273 +19271,2025-03-09T10:55:17.222746-07:00,2554.0,10.850041,10850.041 +19272,2025-03-09T10:55:28.055603-07:00,2559.0,10.832857,10832.857 +19273,2025-03-09T10:55:38.898658-07:00,2512.0,10.843055,10843.055 +19274,2025-03-09T10:55:49.744784-07:00,2559.0,10.846126,10846.126 +19275,2025-03-09T10:56:00.581784-07:00,2580.0,10.837,10837.0 +19276,2025-03-09T10:56:11.428406-07:00,2559.0,10.846622,10846.622 +19277,2025-03-09T10:56:22.281648-07:00,2527.0,10.853242,10853.242 +19278,2025-03-09T10:56:33.122407-07:00,2524.0,10.840759,10840.759 +19279,2025-03-09T10:56:43.964410-07:00,2547.0,10.842003,10842.003 +19280,2025-03-09T10:56:54.800428-07:00,2559.0,10.836018,10836.018 +19281,2025-03-09T10:57:05.644404-07:00,2553.0,10.843976,10843.976 +19282,2025-03-09T10:57:16.485397-07:00,2551.0,10.840993,10840.993 +19283,2025-03-09T10:57:27.331225-07:00,2549.0,10.845828,10845.828 +19284,2025-03-09T10:57:38.166645-07:00,2544.0,10.83542,10835.42 +19285,2025-03-09T10:57:49.012453-07:00,2509.0,10.845808,10845.808 +19286,2025-03-09T10:57:59.842502-07:00,2559.0,10.830049,10830.049 +19287,2025-03-09T10:58:10.691372-07:00,2547.0,10.84887,10848.87 +19288,2025-03-09T10:58:21.530378-07:00,2559.0,10.839006,10839.006 +19289,2025-03-09T10:58:32.378539-07:00,2559.0,10.848161,10848.161 +19290,2025-03-09T10:58:43.216495-07:00,2526.0,10.837956,10837.956 +19291,2025-03-09T10:58:54.069486-07:00,2547.0,10.852991,10852.991 +19292,2025-03-09T10:59:04.905960-07:00,2559.0,10.836474,10836.474 +19293,2025-03-09T10:59:15.744632-07:00,2554.0,10.838672,10838.672 +19294,2025-03-09T10:59:26.589408-07:00,2461.0,10.844776,10844.776 +19295,2025-03-09T10:59:37.431439-07:00,2533.0,10.842031,10842.031 +19296,2025-03-09T10:59:48.273750-07:00,2507.0,10.842311,10842.311 +19297,2025-03-09T10:59:59.111401-07:00,2543.0,10.837651,10837.651 +19298,2025-03-09T11:00:09.950664-07:00,2556.0,10.839263,10839.263 +19299,2025-03-09T11:00:20.796426-07:00,2545.0,10.845762,10845.762 +19300,2025-03-09T11:00:31.640177-07:00,2544.0,10.843751,10843.751 +19301,2025-03-09T11:00:42.482380-07:00,2548.0,10.842203,10842.203 +19302,2025-03-09T11:00:53.334929-07:00,2528.0,10.852549,10852.549 +19303,2025-03-09T11:01:04.178384-07:00,2493.0,10.843455,10843.455 +19304,2025-03-09T11:01:15.025616-07:00,2535.0,10.847232,10847.232 +19305,2025-03-09T11:01:25.865711-07:00,2544.0,10.840095,10840.095 +19306,2025-03-09T11:01:36.710617-07:00,2522.0,10.844906,10844.906 +19307,2025-03-09T11:01:47.554551-07:00,2517.0,10.843934,10843.934 +19308,2025-03-09T11:01:58.386805-07:00,2478.0,10.832254,10832.254 +19309,2025-03-09T11:02:09.227367-07:00,2500.0,10.840562,10840.562 +19310,2025-03-09T11:02:20.059400-07:00,2468.0,10.832033,10832.033 +19311,2025-03-09T11:02:30.900402-07:00,2542.0,10.841002,10841.002 +19312,2025-03-09T11:02:41.743668-07:00,2542.0,10.843266,10843.266 +19313,2025-03-09T11:02:52.595484-07:00,2480.0,10.851816,10851.816 +19314,2025-03-09T11:03:03.431052-07:00,2478.0,10.835568,10835.568 +19315,2025-03-09T11:03:14.287406-07:00,2512.0,10.856354,10856.354 +19316,2025-03-09T11:03:25.136417-07:00,2511.0,10.849011,10849.011 +19317,2025-03-09T11:03:35.975738-07:00,2536.0,10.839321,10839.321 +19318,2025-03-09T11:03:46.821832-07:00,2502.0,10.846094,10846.094 +19319,2025-03-09T11:03:57.670168-07:00,2477.0,10.848336,10848.336 +19320,2025-03-09T11:04:08.512462-07:00,2489.0,10.842294,10842.294 +19321,2025-03-09T11:04:19.355675-07:00,2526.0,10.843213,10843.213 +19322,2025-03-09T11:04:30.194830-07:00,2527.0,10.839155,10839.155 +19323,2025-03-09T11:04:41.042732-07:00,2458.0,10.847902,10847.902 +19324,2025-03-09T11:04:51.884655-07:00,2479.0,10.841923,10841.923 +19325,2025-03-09T11:05:02.740431-07:00,2491.0,10.855776,10855.776 +19326,2025-03-09T11:05:13.574790-07:00,2471.0,10.834359,10834.359 +19327,2025-03-09T11:05:24.421538-07:00,2491.0,10.846748,10846.748 +19328,2025-03-09T11:05:35.268993-07:00,2525.0,10.847455,10847.455 +19329,2025-03-09T11:05:46.149080-07:00,2494.0,10.880087,10880.087 +19330,2025-03-09T11:05:56.996168-07:00,2449.0,10.847088,10847.088 +19331,2025-03-09T11:06:07.847395-07:00,2473.0,10.851227,10851.227 +19332,2025-03-09T11:06:18.693413-07:00,2513.0,10.846018,10846.018 +19333,2025-03-09T11:06:29.544428-07:00,2507.0,10.851015,10851.015 +19334,2025-03-09T11:06:40.390566-07:00,2481.0,10.846138,10846.138 +19335,2025-03-09T11:06:51.241423-07:00,2481.0,10.850857,10850.857 +19336,2025-03-09T11:07:02.095675-07:00,2485.0,10.854252,10854.252 +19337,2025-03-09T11:07:12.931701-07:00,2503.0,10.836026,10836.026 +19338,2025-03-09T11:07:23.776615-07:00,2469.0,10.844914,10844.914 +19339,2025-03-09T11:07:34.627434-07:00,2439.0,10.850819,10850.819 +19340,2025-03-09T11:07:45.474651-07:00,2496.0,10.847217,10847.217 +19341,2025-03-09T11:07:56.317495-07:00,2478.0,10.842844,10842.844 +19342,2025-03-09T11:08:07.158814-07:00,2482.0,10.841319,10841.319 +19343,2025-03-09T11:08:18.014402-07:00,2491.0,10.855588,10855.588 +19344,2025-03-09T11:08:28.855534-07:00,2480.0,10.841132,10841.132 +19345,2025-03-09T11:08:39.689435-07:00,2494.0,10.833901,10833.901 +19346,2025-03-09T11:08:50.541413-07:00,2458.0,10.851978,10851.978 +19347,2025-03-09T11:09:01.389099-07:00,2490.0,10.847686,10847.686 +19348,2025-03-09T11:09:12.239413-07:00,2458.0,10.850314,10850.314 +19349,2025-03-09T11:09:23.087957-07:00,2431.0,10.848544,10848.544 +19350,2025-03-09T11:09:33.930511-07:00,2491.0,10.842554,10842.554 +19351,2025-03-09T11:09:44.765431-07:00,2491.0,10.83492,10834.92 +19352,2025-03-09T11:09:55.616427-07:00,2435.0,10.850996,10850.996 +19353,2025-03-09T11:10:06.467990-07:00,2480.0,10.851563,10851.563 +19354,2025-03-09T11:10:17.316524-07:00,2437.0,10.848534,10848.534 +19355,2025-03-09T11:10:28.156962-07:00,2471.0,10.840438,10840.438 +19356,2025-03-09T11:10:39.010736-07:00,2481.0,10.853774,10853.774 +19357,2025-03-09T11:10:49.856441-07:00,2481.0,10.845705,10845.705 +19358,2025-03-09T11:11:00.700435-07:00,2403.0,10.843994,10843.994 +19359,2025-03-09T11:11:11.542515-07:00,2467.0,10.84208,10842.08 +19360,2025-03-09T11:11:22.390573-07:00,2431.0,10.848058,10848.058 +19361,2025-03-09T11:11:33.234720-07:00,2446.0,10.844147,10844.147 +19362,2025-03-09T11:11:44.089979-07:00,2474.0,10.855259,10855.259 +19363,2025-03-09T11:11:54.935479-07:00,2442.0,10.8455,10845.5 +19364,2025-03-09T11:12:05.783323-07:00,2411.0,10.847844,10847.844 +19365,2025-03-09T11:12:16.629514-07:00,2403.0,10.846191,10846.191 +19366,2025-03-09T11:12:27.479428-07:00,2468.0,10.849914,10849.914 +19367,2025-03-09T11:12:38.335555-07:00,2410.0,10.856127,10856.127 +19368,2025-03-09T11:12:49.181457-07:00,2385.0,10.845902,10845.902 +19369,2025-03-09T11:13:00.025466-07:00,2430.0,10.844009,10844.009 +19370,2025-03-09T11:13:10.885648-07:00,2465.0,10.860182,10860.182 +19371,2025-03-09T11:13:21.737912-07:00,2456.0,10.852264,10852.264 +19372,2025-03-09T11:13:32.589429-07:00,2462.0,10.851517,10851.517 +19373,2025-03-09T11:13:43.444069-07:00,2385.0,10.85464,10854.64 +19374,2025-03-09T11:13:54.296107-07:00,2451.0,10.852038,10852.038 +19375,2025-03-09T11:14:05.141746-07:00,2442.0,10.845639,10845.639 +19376,2025-03-09T11:14:15.996353-07:00,2451.0,10.854607,10854.607 +19377,2025-03-09T11:14:26.844551-07:00,2410.0,10.848198,10848.198 +19378,2025-03-09T11:14:37.692432-07:00,2417.0,10.847881,10847.881 +19379,2025-03-09T11:14:48.545460-07:00,2386.0,10.853028,10853.028 +19380,2025-03-09T11:14:59.394435-07:00,2407.0,10.848975,10848.975 +19381,2025-03-09T11:15:10.242629-07:00,2409.0,10.848194,10848.194 +19382,2025-03-09T11:15:21.102765-07:00,2383.0,10.860136,10860.136 +19383,2025-03-09T11:15:31.954432-07:00,2377.0,10.851667,10851.667 +19384,2025-03-09T11:15:42.806409-07:00,2415.0,10.851977,10851.977 +19385,2025-03-09T11:15:53.658693-07:00,2384.0,10.852284,10852.284 +19386,2025-03-09T11:16:04.525434-07:00,2371.0,10.866741,10866.741 +19387,2025-03-09T11:16:15.378779-07:00,2423.0,10.853345,10853.345 +19388,2025-03-09T11:16:26.238489-07:00,2434.0,10.85971,10859.71 +19389,2025-03-09T11:16:37.098238-07:00,2418.0,10.859749,10859.749 +19390,2025-03-09T11:16:47.946218-07:00,2418.0,10.84798,10847.98 +19391,2025-03-09T11:16:58.799432-07:00,2431.0,10.853214,10853.214 +19392,2025-03-09T11:17:09.653430-07:00,2398.0,10.853998,10853.998 +19393,2025-03-09T11:17:20.508431-07:00,2374.0,10.855001,10855.001 +19394,2025-03-09T11:17:31.364433-07:00,2422.0,10.856002,10856.002 +19395,2025-03-09T11:17:42.220414-07:00,2401.0,10.855981,10855.981 +19396,2025-03-09T11:17:53.071433-07:00,2427.0,10.851019,10851.019 +19397,2025-03-09T11:18:03.934452-07:00,2407.0,10.863019,10863.019 +19398,2025-03-09T11:18:04.234857-07:00,2416.0,0.300405,300.405 +19399,2025-03-09T11:18:14.780437-07:00,2419.0,10.54558,10545.58 +19400,2025-03-09T11:18:25.634479-07:00,2385.0,10.854042,10854.042 +19401,2025-03-09T11:18:36.488436-07:00,2418.0,10.853957,10853.957 +19402,2025-03-09T11:18:47.344428-07:00,2376.0,10.855992,10855.992 +19403,2025-03-09T11:18:58.197415-07:00,2415.0,10.852987,10852.987 +19404,2025-03-09T11:19:09.051436-07:00,2346.0,10.854021,10854.021 +19405,2025-03-09T11:19:19.907569-07:00,2403.0,10.856133,10856.133 +19406,2025-03-09T11:19:30.750672-07:00,2402.0,10.843103,10843.103 +19407,2025-03-09T11:19:41.599710-07:00,2369.0,10.849038,10849.038 +19408,2025-03-09T11:19:52.449704-07:00,2319.0,10.849994,10849.994 +19409,2025-03-09T11:20:03.303438-07:00,2387.0,10.853734,10853.734 +19410,2025-03-09T11:20:14.154438-07:00,2327.0,10.851,10851.0 +19411,2025-03-09T11:20:25.001039-07:00,2386.0,10.846601,10846.601 +19412,2025-03-09T11:20:35.855777-07:00,2363.0,10.854738,10854.738 +19413,2025-03-09T11:20:46.699544-07:00,2358.0,10.843767,10843.767 +19414,2025-03-09T11:20:57.560949-07:00,2384.0,10.861405,10861.405 +19415,2025-03-09T11:21:08.407916-07:00,2353.0,10.846967,10846.967 +19416,2025-03-09T11:21:19.251659-07:00,2363.0,10.843743,10843.743 +19417,2025-03-09T11:21:30.104506-07:00,2367.0,10.852847,10852.847 +19418,2025-03-09T11:21:40.954436-07:00,2335.0,10.84993,10849.93 +19419,2025-03-09T11:21:51.803451-07:00,2368.0,10.849015,10849.015 +19420,2025-03-09T11:22:02.650810-07:00,2335.0,10.847359,10847.359 +19421,2025-03-09T11:22:13.506685-07:00,2313.0,10.855875,10855.875 +19422,2025-03-09T11:22:24.369527-07:00,2380.0,10.862842,10862.842 +19423,2025-03-09T11:22:35.220481-07:00,2369.0,10.850954,10850.954 +19424,2025-03-09T11:22:46.066005-07:00,2308.0,10.845524,10845.524 +19425,2025-03-09T11:22:56.926627-07:00,2370.0,10.860622,10860.622 +19426,2025-03-09T11:23:07.783437-07:00,2329.0,10.85681,10856.81 +19427,2025-03-09T11:23:18.627050-07:00,2370.0,10.843613,10843.613 +19428,2025-03-09T11:23:29.480769-07:00,2341.0,10.853719,10853.719 +19429,2025-03-09T11:23:40.336263-07:00,2323.0,10.855494,10855.494 +19430,2025-03-09T11:23:51.190529-07:00,2349.0,10.854266,10854.266 +19431,2025-03-09T11:24:02.045775-07:00,2339.0,10.855246,10855.246 +19432,2025-03-09T11:24:12.888664-07:00,2294.0,10.842889,10842.889 +19433,2025-03-09T11:24:23.743416-07:00,2326.0,10.854752,10854.752 +19434,2025-03-09T11:24:34.580929-07:00,2356.0,10.837513,10837.513 +19435,2025-03-09T11:24:45.433570-07:00,2334.0,10.852641,10852.641 +19436,2025-03-09T11:24:56.281435-07:00,2273.0,10.847865,10847.865 +19437,2025-03-09T11:25:07.126491-07:00,2353.0,10.845056,10845.056 +19438,2025-03-09T11:25:17.975548-07:00,2343.0,10.849057,10849.057 +19439,2025-03-09T11:25:28.834667-07:00,2350.0,10.859119,10859.119 +19440,2025-03-09T11:25:39.690438-07:00,2277.0,10.855771,10855.771 +19441,2025-03-09T11:25:50.532755-07:00,2343.0,10.842317,10842.317 +19442,2025-03-09T11:26:01.374477-07:00,2330.0,10.841722,10841.722 +19443,2025-03-09T11:26:12.231459-07:00,2279.0,10.856982,10856.982 +19444,2025-03-09T11:26:23.077667-07:00,2306.0,10.846208,10846.208 +19445,2025-03-09T11:26:33.932569-07:00,2331.0,10.854902,10854.902 +19446,2025-03-09T11:26:44.783432-07:00,2292.0,10.850863,10850.863 +19447,2025-03-09T11:26:55.640609-07:00,2331.0,10.857177,10857.177 +19448,2025-03-09T11:27:06.498640-07:00,2288.0,10.858031,10858.031 +19449,2025-03-09T11:27:17.346428-07:00,2318.0,10.847788,10847.788 +19450,2025-03-09T11:27:28.210757-07:00,2324.0,10.864329,10864.329 +19451,2025-03-09T11:27:39.064604-07:00,2269.0,10.853847,10853.847 +19452,2025-03-09T11:27:49.921600-07:00,2275.0,10.856996,10856.996 +19453,2025-03-09T11:28:00.773472-07:00,2245.0,10.851872,10851.872 +19454,2025-03-09T11:28:11.626430-07:00,2269.0,10.852958,10852.958 +19455,2025-03-09T11:28:22.483611-07:00,2305.0,10.857181,10857.181 +19456,2025-03-09T11:28:33.350009-07:00,2240.0,10.866398,10866.398 +19457,2025-03-09T11:28:44.203765-07:00,2279.0,10.853756,10853.756 +19458,2025-03-09T11:28:55.047629-07:00,2283.0,10.843864,10843.864 +19459,2025-03-09T11:29:05.912007-07:00,2238.0,10.864378,10864.378 +19460,2025-03-09T11:29:16.763771-07:00,2242.0,10.851764,10851.764 +19461,2025-03-09T11:29:27.622804-07:00,2274.0,10.859033,10859.033 +19462,2025-03-09T11:29:38.471168-07:00,2218.0,10.848364,10848.364 +19463,2025-03-09T11:29:49.329837-07:00,2265.0,10.858669,10858.669 +19464,2025-03-09T11:30:00.174734-07:00,2224.0,10.844897,10844.897 +19465,2025-03-09T11:30:11.040789-07:00,2288.0,10.866055,10866.055 +19466,2025-03-09T11:30:21.888382-07:00,2288.0,10.847593,10847.593 +19467,2025-03-09T11:30:32.753280-07:00,2231.0,10.864898,10864.898 +19468,2025-03-09T11:30:43.608905-07:00,2256.0,10.855625,10855.625 +19469,2025-03-09T11:30:54.459996-07:00,2267.0,10.851091,10851.091 +19470,2025-03-09T11:31:05.325676-07:00,2249.0,10.86568,10865.68 +19471,2025-03-09T11:31:16.177436-07:00,2285.0,10.85176,10851.76 +19472,2025-03-09T11:31:27.041430-07:00,2263.0,10.863994,10863.994 +19473,2025-03-09T11:31:37.897436-07:00,2225.0,10.856006,10856.006 +19474,2025-03-09T11:31:48.752409-07:00,2272.0,10.854973,10854.973 +19475,2025-03-09T11:31:59.606697-07:00,2238.0,10.854288,10854.288 +19476,2025-03-09T11:32:10.460436-07:00,2266.0,10.853739,10853.739 +19477,2025-03-09T11:32:21.321433-07:00,2223.0,10.860997,10860.997 +19478,2025-03-09T11:32:32.169577-07:00,2259.0,10.848144,10848.144 +19479,2025-03-09T11:32:43.025561-07:00,2202.0,10.855984,10855.984 +19480,2025-03-09T11:32:53.881560-07:00,2224.0,10.855999,10855.999 +19481,2025-03-09T11:33:04.737577-07:00,2245.0,10.856017,10856.017 +19482,2025-03-09T11:33:15.588432-07:00,2225.0,10.850855,10850.855 +19483,2025-03-09T11:33:26.448428-07:00,2251.0,10.859996,10859.996 +19484,2025-03-09T11:33:37.302423-07:00,2256.0,10.853995,10853.995 +19485,2025-03-09T11:33:48.151426-07:00,2251.0,10.849003,10849.003 +19486,2025-03-09T11:33:59.005619-07:00,2175.0,10.854193,10854.193 +19487,2025-03-09T11:34:09.860481-07:00,2223.0,10.854862,10854.862 +19488,2025-03-09T11:34:20.716661-07:00,2241.0,10.85618,10856.18 +19489,2025-03-09T11:34:31.581670-07:00,2207.0,10.865009,10865.009 +19490,2025-03-09T11:34:42.441409-07:00,2205.0,10.859739,10859.739 +19491,2025-03-09T11:34:53.301175-07:00,2192.0,10.859766,10859.766 +19492,2025-03-09T11:35:04.155877-07:00,2235.0,10.854702,10854.702 +19493,2025-03-09T11:35:15.011459-07:00,2231.0,10.855582,10855.582 +19494,2025-03-09T11:35:25.872963-07:00,2161.0,10.861504,10861.504 +19495,2025-03-09T11:35:36.731243-07:00,2224.0,10.85828,10858.28 +19496,2025-03-09T11:35:47.586610-07:00,2195.0,10.855367,10855.367 +19497,2025-03-09T11:35:58.440255-07:00,2178.0,10.853645,10853.645 +19498,2025-03-09T11:36:09.295462-07:00,2224.0,10.855207,10855.207 +19499,2025-03-09T11:36:20.160470-07:00,2222.0,10.865008,10865.008 +19500,2025-03-09T11:36:31.015765-07:00,2151.0,10.855295,10855.295 +19501,2025-03-09T11:36:41.869510-07:00,2192.0,10.853745,10853.745 +19502,2025-03-09T11:36:52.734510-07:00,2195.0,10.865,10865.0 +19503,2025-03-09T11:37:03.593663-07:00,2219.0,10.859153,10859.153 +19504,2025-03-09T11:37:14.454845-07:00,2205.0,10.861182,10861.182 +19505,2025-03-09T11:37:25.309497-07:00,2158.0,10.854652,10854.652 +19506,2025-03-09T11:37:36.163875-07:00,2192.0,10.854378,10854.378 +19507,2025-03-09T11:37:47.029740-07:00,2189.0,10.865865,10865.865 +19508,2025-03-09T11:37:57.885749-07:00,2199.0,10.856009,10856.009 +19509,2025-03-09T11:38:08.749681-07:00,2122.0,10.863932,10863.932 +19510,2025-03-09T11:38:19.615773-07:00,2128.0,10.866092,10866.092 +19511,2025-03-09T11:38:30.472436-07:00,2195.0,10.856663,10856.663 +19512,2025-03-09T11:38:52.202260-07:00,2154.0,21.729824,21729.824 +19513,2025-03-09T11:39:03.065869-07:00,2192.0,10.863609,10863.609 +19514,2025-03-09T11:39:13.923432-07:00,2180.0,10.857563,10857.563 +19515,2025-03-09T11:39:24.789593-07:00,2181.0,10.866161,10866.161 +19516,2025-03-09T11:39:35.644431-07:00,2139.0,10.854838,10854.838 +19517,2025-03-09T11:39:46.517922-07:00,2144.0,10.873491,10873.491 +19518,2025-03-09T11:39:57.369468-07:00,2167.0,10.851546,10851.546 +19519,2025-03-09T11:40:08.242694-07:00,2125.0,10.873226,10873.226 +19520,2025-03-09T11:40:19.107421-07:00,2179.0,10.864727,10864.727 +19521,2025-03-09T11:40:29.961434-07:00,2172.0,10.854013,10854.013 +19522,2025-03-09T11:40:40.821588-07:00,2132.0,10.860154,10860.154 +19523,2025-03-09T11:40:51.684589-07:00,2171.0,10.863001,10863.001 +19524,2025-03-09T11:41:02.546431-07:00,2145.0,10.861842,10861.842 +19525,2025-03-09T11:41:13.411177-07:00,2128.0,10.864746,10864.746 +19526,2025-03-09T11:41:24.267276-07:00,2165.0,10.856099,10856.099 +19527,2025-03-09T11:41:35.122812-07:00,2142.0,10.855536,10855.536 +19528,2025-03-09T11:41:45.986431-07:00,2144.0,10.863619,10863.619 +19529,2025-03-09T11:41:56.844457-07:00,2160.0,10.858026,10858.026 +19530,2025-03-09T11:42:07.705656-07:00,2142.0,10.861199,10861.199 +19531,2025-03-09T11:42:18.566711-07:00,2115.0,10.861055,10861.055 +19532,2025-03-09T11:42:29.428663-07:00,2096.0,10.861952,10861.952 +19533,2025-03-09T11:42:40.295506-07:00,2141.0,10.866843,10866.843 +19534,2025-03-09T11:42:51.148724-07:00,2099.0,10.853218,10853.218 +19535,2025-03-09T11:43:02.009876-07:00,2143.0,10.861152,10861.152 +19536,2025-03-09T11:43:12.869809-07:00,2087.0,10.859933,10859.933 +19537,2025-03-09T11:43:23.736435-07:00,2096.0,10.866626,10866.626 +19538,2025-03-09T11:43:34.593748-07:00,2113.0,10.857313,10857.313 +19539,2025-03-09T11:43:45.453432-07:00,2074.0,10.859684,10859.684 +19540,2025-03-09T11:43:56.310438-07:00,2073.0,10.857006,10857.006 +19541,2025-03-09T11:44:07.164430-07:00,2069.0,10.853992,10853.992 +19542,2025-03-09T11:44:18.024927-07:00,2132.0,10.860497,10860.497 +19543,2025-03-09T11:44:28.875716-07:00,2086.0,10.850789,10850.789 +19544,2025-03-09T11:44:39.725580-07:00,2075.0,10.849864,10849.864 +19545,2025-03-09T11:44:50.591724-07:00,2135.0,10.866144,10866.144 +19546,2025-03-09T11:45:01.442436-07:00,2123.0,10.850712,10850.712 +19547,2025-03-09T11:45:12.312940-07:00,2130.0,10.870504,10870.504 +19548,2025-03-09T11:45:23.168313-07:00,2133.0,10.855373,10855.373 +19549,2025-03-09T11:45:34.033669-07:00,2096.0,10.865356,10865.356 +19550,2025-03-09T11:45:44.888094-07:00,2091.0,10.854425,10854.425 +19551,2025-03-09T11:45:55.743773-07:00,2086.0,10.855679,10855.679 +19552,2025-03-09T11:46:06.607490-07:00,2095.0,10.863717,10863.717 +19553,2025-03-09T11:46:17.466437-07:00,2130.0,10.858947,10858.947 +19554,2025-03-09T11:46:28.327445-07:00,2096.0,10.861008,10861.008 +19555,2025-03-09T11:46:39.184747-07:00,2108.0,10.857302,10857.302 +19556,2025-03-09T11:46:50.039926-07:00,2125.0,10.855179,10855.179 +19557,2025-03-09T11:47:00.903475-07:00,2115.0,10.863549,10863.549 +19558,2025-03-09T11:47:11.753749-07:00,2062.0,10.850274,10850.274 +19559,2025-03-09T11:47:22.609433-07:00,2078.0,10.855684,10855.684 +19560,2025-03-09T11:47:33.462425-07:00,2091.0,10.852992,10852.992 +19561,2025-03-09T11:47:44.316505-07:00,2121.0,10.85408,10854.08 +19562,2025-03-09T11:47:55.180643-07:00,2045.0,10.864138,10864.138 +19563,2025-03-09T11:48:06.033535-07:00,2096.0,10.852892,10852.892 +19564,2025-03-09T11:48:16.895656-07:00,2074.0,10.862121,10862.121 +19565,2025-03-09T11:48:27.745452-07:00,2082.0,10.849796,10849.796 +19566,2025-03-09T11:48:38.602753-07:00,2021.0,10.857301,10857.301 +19567,2025-03-09T11:48:49.461709-07:00,2069.0,10.858956,10858.956 +19568,2025-03-09T11:49:00.331523-07:00,2105.0,10.869814,10869.814 +19569,2025-03-09T11:49:11.185491-07:00,2086.0,10.853968,10853.968 +19570,2025-03-09T11:49:22.042436-07:00,2019.0,10.856945,10856.945 +19571,2025-03-09T11:49:32.897560-07:00,2082.0,10.855124,10855.124 +19572,2025-03-09T11:49:43.759435-07:00,2091.0,10.861875,10861.875 +19573,2025-03-09T11:49:54.625485-07:00,2067.0,10.86605,10866.05 +19574,2025-03-09T11:50:05.480541-07:00,2087.0,10.855056,10855.056 +19575,2025-03-09T11:50:16.343711-07:00,2057.0,10.86317,10863.17 +19576,2025-03-09T11:50:27.193957-07:00,2073.0,10.850246,10850.246 +19577,2025-03-09T11:50:38.055448-07:00,2095.0,10.861491,10861.491 +19578,2025-03-09T11:50:48.912762-07:00,2042.0,10.857314,10857.314 +19579,2025-03-09T11:50:59.762701-07:00,2093.0,10.849939,10849.939 +19580,2025-03-09T11:51:10.623648-07:00,2082.0,10.860947,10860.947 +19581,2025-03-09T11:51:21.467978-07:00,2064.0,10.84433,10844.33 +19582,2025-03-09T11:51:32.328716-07:00,2078.0,10.860738,10860.738 +19583,2025-03-09T11:51:43.190905-07:00,2011.0,10.862189,10862.189 +19584,2025-03-09T11:51:54.046773-07:00,2096.0,10.855868,10855.868 +19585,2025-03-09T11:52:04.911484-07:00,2059.0,10.864711,10864.711 +19586,2025-03-09T11:52:15.767740-07:00,2065.0,10.856256,10856.256 +19587,2025-03-09T11:52:26.626550-07:00,2087.0,10.85881,10858.81 +19588,2025-03-09T11:52:37.489541-07:00,2032.0,10.862991,10862.991 +19589,2025-03-09T11:52:48.347473-07:00,2095.0,10.857932,10857.932 +19590,2025-03-09T11:52:59.203554-07:00,2090.0,10.856081,10856.081 +19591,2025-03-09T11:53:10.074838-07:00,2081.0,10.871284,10871.284 +19592,2025-03-09T11:53:20.924765-07:00,2063.0,10.849927,10849.927 +19593,2025-03-09T11:53:31.786684-07:00,2095.0,10.861919,10861.919 +19594,2025-03-09T11:53:42.653624-07:00,2083.0,10.86694,10866.94 +19595,2025-03-09T11:53:53.520558-07:00,2010.0,10.866934,10866.934 +19596,2025-03-09T11:54:04.379505-07:00,2067.0,10.858947,10858.947 +19597,2025-03-09T11:54:15.237433-07:00,2018.0,10.857928,10857.928 +19598,2025-03-09T11:54:26.097955-07:00,2000.0,10.860522,10860.522 +19599,2025-03-09T11:54:36.954699-07:00,2073.0,10.856744,10856.744 +19600,2025-03-09T11:54:47.815475-07:00,2047.0,10.860776,10860.776 +19601,2025-03-09T11:54:58.684434-07:00,2066.0,10.868959,10868.959 +19602,2025-03-09T11:55:09.540551-07:00,2082.0,10.856117,10856.117 +19603,2025-03-09T11:55:20.403432-07:00,2017.0,10.862881,10862.881 +19604,2025-03-09T11:55:31.262668-07:00,2025.0,10.859236,10859.236 +19605,2025-03-09T11:55:42.121701-07:00,2082.0,10.859033,10859.033 +19606,2025-03-09T11:55:52.983232-07:00,2081.0,10.861531,10861.531 +19607,2025-03-09T11:56:03.837989-07:00,2081.0,10.854757,10854.757 +19608,2025-03-09T11:56:14.707428-07:00,2078.0,10.869439,10869.439 +19609,2025-03-09T11:56:25.559436-07:00,2082.0,10.852008,10852.008 +19610,2025-03-09T11:56:36.418836-07:00,1989.0,10.8594,10859.4 +19611,2025-03-09T11:56:47.281587-07:00,2074.0,10.862751,10862.751 +19612,2025-03-09T11:56:58.136439-07:00,2081.0,10.854852,10854.852 +19613,2025-03-09T11:57:09.000432-07:00,2021.0,10.863993,10863.993 +19614,2025-03-09T11:57:19.856911-07:00,2006.0,10.856479,10856.479 +19615,2025-03-09T11:57:30.722675-07:00,2079.0,10.865764,10865.764 +19616,2025-03-09T11:57:41.580690-07:00,2070.0,10.858015,10858.015 +19617,2025-03-09T11:57:52.435673-07:00,2079.0,10.854983,10854.983 +19618,2025-03-09T11:58:03.287424-07:00,2021.0,10.851751,10851.751 +19619,2025-03-09T11:58:14.142751-07:00,2032.0,10.855327,10855.327 +19620,2025-03-09T11:58:24.991185-07:00,2061.0,10.848434,10848.434 +19621,2025-03-09T11:58:35.843435-07:00,2061.0,10.85225,10852.25 +19622,2025-03-09T11:58:46.699425-07:00,2022.0,10.85599,10855.99 +19623,2025-03-09T11:58:57.548362-07:00,2037.0,10.848937,10848.937 +19624,2025-03-09T11:59:08.406426-07:00,2064.0,10.858064,10858.064 +19625,2025-03-09T11:59:19.255409-07:00,2047.0,10.848983,10848.983 +19626,2025-03-09T11:59:30.109653-07:00,2031.0,10.854244,10854.244 +19627,2025-03-09T11:59:40.965473-07:00,2074.0,10.85582,10855.82 +19628,2025-03-09T11:59:51.814426-07:00,2078.0,10.848953,10848.953 +19629,2025-03-09T12:00:02.122507-07:00,2047.0,10.308081,10308.081 +19630,2025-03-09T12:00:02.669614-07:00,1993.0,0.547107,547.107 +19631,2025-03-09T12:00:13.517413-07:00,2047.0,10.847799,10847.799 +19632,2025-03-09T12:00:24.359423-07:00,2019.0,10.84201,10842.01 +19633,2025-03-09T12:00:35.214438-07:00,2032.0,10.855015,10855.015 +19634,2025-03-09T12:00:46.067317-07:00,2075.0,10.852879,10852.879 +19635,2025-03-09T12:00:56.915700-07:00,2058.0,10.848383,10848.383 +19636,2025-03-09T12:01:07.762887-07:00,2074.0,10.847187,10847.187 +19637,2025-03-09T12:01:18.616869-07:00,2047.0,10.853982,10853.982 +19638,2025-03-09T12:01:29.469991-07:00,1983.0,10.853122,10853.122 +19639,2025-03-09T12:01:40.310430-07:00,2062.0,10.840439,10840.439 +19640,2025-03-09T12:01:51.157848-07:00,2041.0,10.847418,10847.418 +19641,2025-03-09T12:02:02.005573-07:00,2075.0,10.847725,10847.725 +19642,2025-03-09T12:02:12.855421-07:00,2063.0,10.849848,10849.848 +19643,2025-03-09T12:02:23.705046-07:00,2060.0,10.849625,10849.625 +19644,2025-03-09T12:02:34.552901-07:00,2015.0,10.847855,10847.855 +19645,2025-03-09T12:02:45.406771-07:00,1982.0,10.85387,10853.87 +19646,2025-03-09T12:02:56.254306-07:00,1969.0,10.847535,10847.535 +19647,2025-03-09T12:03:07.105427-07:00,1973.0,10.851121,10851.121 +19648,2025-03-09T12:03:17.963268-07:00,1957.0,10.857841,10857.841 +19649,2025-03-09T12:03:28.811425-07:00,2004.0,10.848157,10848.157 +19650,2025-03-09T12:03:39.654657-07:00,2017.0,10.843232,10843.232 +19651,2025-03-09T12:03:50.512142-07:00,2079.0,10.857485,10857.485 +19652,2025-03-09T12:04:01.358456-07:00,2078.0,10.846314,10846.314 +19653,2025-03-09T12:04:12.207432-07:00,2027.0,10.848976,10848.976 +19654,2025-03-09T12:04:23.053424-07:00,2058.0,10.845992,10845.992 +19655,2025-03-09T12:04:33.906478-07:00,2069.0,10.853054,10853.054 +19656,2025-03-09T12:04:44.756806-07:00,1975.0,10.850328,10850.328 +19657,2025-03-09T12:04:55.602630-07:00,2070.0,10.845824,10845.824 +19658,2025-03-09T12:05:06.440431-07:00,2013.0,10.837801,10837.801 +19659,2025-03-09T12:05:17.295541-07:00,2046.0,10.85511,10855.11 +19660,2025-03-09T12:05:28.145839-07:00,2001.0,10.850298,10850.298 +19661,2025-03-09T12:05:38.998564-07:00,2062.0,10.852725,10852.725 +19662,2025-03-09T12:05:49.712188-07:00,2017.0,10.713624,10713.624 +19663,2025-03-09T12:06:00.554269-07:00,2020.0,10.842081,10842.081 +19664,2025-03-09T12:06:11.404439-07:00,2031.0,10.85017,10850.17 +19665,2025-03-09T12:06:22.263328-07:00,1990.0,10.858889,10858.889 +19666,2025-03-09T12:06:33.117432-07:00,2057.0,10.854104,10854.104 +19667,2025-03-09T12:06:43.960860-07:00,2014.0,10.843428,10843.428 +19668,2025-03-09T12:06:54.803958-07:00,2023.0,10.843098,10843.098 +19669,2025-03-09T12:07:05.654127-07:00,1990.0,10.850169,10850.169 +19670,2025-03-09T12:07:16.504228-07:00,2034.0,10.850101,10850.101 +19671,2025-03-09T12:07:27.356226-07:00,2045.0,10.851998,10851.998 +19672,2025-03-09T12:07:38.201108-07:00,2064.0,10.844882,10844.882 +19673,2025-03-09T12:07:49.042507-07:00,2025.0,10.841399,10841.399 +19674,2025-03-09T12:07:59.891966-07:00,1983.0,10.849459,10849.459 +19675,2025-03-09T12:08:10.745631-07:00,2023.0,10.853665,10853.665 +19676,2025-03-09T12:08:21.594007-07:00,2019.0,10.848376,10848.376 +19677,2025-03-09T12:08:32.437460-07:00,2064.0,10.843453,10843.453 +19678,2025-03-09T12:08:43.284030-07:00,2064.0,10.84657,10846.57 +19679,2025-03-09T12:08:54.135079-07:00,2064.0,10.851049,10851.049 +19680,2025-03-09T12:09:04.978350-07:00,2057.0,10.843271,10843.271 +19681,2025-03-09T12:09:15.832554-07:00,1991.0,10.854204,10854.204 +19682,2025-03-09T12:09:26.686339-07:00,2032.0,10.853785,10853.785 +19683,2025-03-09T12:09:37.529853-07:00,2061.0,10.843514,10843.514 +19684,2025-03-09T12:09:48.372507-07:00,2054.0,10.842654,10842.654 +19685,2025-03-09T12:09:59.222017-07:00,2009.0,10.84951,10849.51 +19686,2025-03-09T12:10:10.065962-07:00,2015.0,10.843945,10843.945 +19687,2025-03-09T12:10:20.908947-07:00,2065.0,10.842985,10842.985 +19688,2025-03-09T12:10:31.750712-07:00,2064.0,10.841765,10841.765 +19689,2025-03-09T12:10:42.597116-07:00,2063.0,10.846404,10846.404 +19690,2025-03-09T12:10:53.447503-07:00,2041.0,10.850387,10850.387 +19691,2025-03-09T12:11:04.291033-07:00,2025.0,10.84353,10843.53 +19692,2025-03-09T12:11:15.146968-07:00,1994.0,10.855935,10855.935 +19693,2025-03-09T12:11:25.989023-07:00,2027.0,10.842055,10842.055 +19694,2025-03-09T12:11:36.838915-07:00,2042.0,10.849892,10849.892 +19695,2025-03-09T12:11:47.679787-07:00,1968.0,10.840872,10840.872 +19696,2025-03-09T12:11:58.510123-07:00,2003.0,10.830336,10830.336 +19697,2025-03-09T12:12:09.352408-07:00,2062.0,10.842285,10842.285 +19698,2025-03-09T12:12:20.199526-07:00,2017.0,10.847118,10847.118 +19699,2025-03-09T12:12:31.042009-07:00,2046.0,10.842483,10842.483 +19700,2025-03-09T12:12:41.892291-07:00,2058.0,10.850282,10850.282 +19701,2025-03-09T12:12:52.738363-07:00,1980.0,10.846072,10846.072 +19702,2025-03-09T12:13:03.582955-07:00,1974.0,10.844592,10844.592 +19703,2025-03-09T12:13:14.427301-07:00,2015.0,10.844346,10844.346 +19704,2025-03-09T12:13:25.275287-07:00,2032.0,10.847986,10847.986 +19705,2025-03-09T12:13:36.111700-07:00,2041.0,10.836413,10836.413 +19706,2025-03-09T12:13:46.961216-07:00,2054.0,10.849516,10849.516 +19707,2025-03-09T12:13:57.808197-07:00,2055.0,10.846981,10846.981 +19708,2025-03-09T12:14:08.647023-07:00,2013.0,10.838826,10838.826 +19709,2025-03-09T12:14:19.491584-07:00,1970.0,10.844561,10844.561 +19710,2025-03-09T12:14:30.328095-07:00,1982.0,10.836511,10836.511 +19711,2025-03-09T12:14:41.170066-07:00,2017.0,10.841971,10841.971 +19712,2025-03-09T12:14:52.025089-07:00,2057.0,10.855023,10855.023 +19713,2025-03-09T12:15:02.868311-07:00,2029.0,10.843222,10843.222 +19714,2025-03-09T12:15:13.710818-07:00,2002.0,10.842507,10842.507 +19715,2025-03-09T12:15:24.552965-07:00,2017.0,10.842147,10842.147 +19716,2025-03-09T12:15:35.396968-07:00,2057.0,10.844003,10844.003 +19717,2025-03-09T12:15:46.248967-07:00,2039.0,10.851999,10851.999 +19718,2025-03-09T12:15:57.098682-07:00,2057.0,10.849715,10849.715 +19719,2025-03-09T12:16:07.944017-07:00,2041.0,10.845335,10845.335 +19720,2025-03-09T12:16:18.792284-07:00,2039.0,10.848267,10848.267 +19721,2025-03-09T12:16:29.631979-07:00,2035.0,10.839695,10839.695 +19722,2025-03-09T12:16:40.478964-07:00,2058.0,10.846985,10846.985 +19723,2025-03-09T12:16:51.316030-07:00,2054.0,10.837066,10837.066 +19724,2025-03-09T12:17:00.257347-07:00,2053.0,8.941317,8941.317 +19725,2025-03-09T12:17:02.153447-07:00,2039.0,1.8961,1896.1 +19726,2025-03-09T12:17:12.993946-07:00,2045.0,10.840499,10840.499 +19727,2025-03-09T12:17:23.835843-07:00,2031.0,10.841897,10841.897 +19728,2025-03-09T12:17:34.690834-07:00,2057.0,10.854991,10854.991 +19729,2025-03-09T12:17:45.523309-07:00,2054.0,10.832475,10832.475 +19730,2025-03-09T12:17:56.372270-07:00,2043.0,10.848961,10848.961 +19731,2025-03-09T12:18:07.210969-07:00,1982.0,10.838699,10838.699 +19732,2025-03-09T12:18:18.055354-07:00,2000.0,10.844385,10844.385 +19733,2025-03-09T12:18:28.898693-07:00,2042.0,10.843339,10843.339 +19734,2025-03-09T12:18:39.740797-07:00,1993.0,10.842104,10842.104 +19735,2025-03-09T12:18:50.588961-07:00,1985.0,10.848164,10848.164 +19736,2025-03-09T12:19:01.438270-07:00,2000.0,10.849309,10849.309 +19737,2025-03-09T12:19:12.282112-07:00,2047.0,10.843842,10843.842 +19738,2025-03-09T12:19:23.124964-07:00,1980.0,10.842852,10842.852 +19739,2025-03-09T12:19:33.968224-07:00,1946.0,10.84326,10843.26 +19740,2025-03-09T12:19:44.806016-07:00,2011.0,10.837792,10837.792 +19741,2025-03-09T12:19:55.653960-07:00,1975.0,10.847944,10847.944 +19742,2025-03-09T12:20:06.491022-07:00,2038.0,10.837062,10837.062 +19743,2025-03-09T12:20:17.326718-07:00,1981.0,10.835696,10835.696 +19744,2025-03-09T12:20:28.171205-07:00,2043.0,10.844487,10844.487 +19745,2025-03-09T12:20:39.020975-07:00,1987.0,10.84977,10849.77 +19746,2025-03-09T12:20:49.864218-07:00,2017.0,10.843243,10843.243 +19747,2025-03-09T12:21:00.709183-07:00,2023.0,10.844965,10844.965 +19748,2025-03-09T12:21:11.547619-07:00,2012.0,10.838436,10838.436 +19749,2025-03-09T12:21:22.393997-07:00,2046.0,10.846378,10846.378 +19750,2025-03-09T12:21:33.231968-07:00,2030.0,10.837971,10837.971 +19751,2025-03-09T12:21:44.084975-07:00,2023.0,10.853007,10853.007 +19752,2025-03-09T12:21:54.927505-07:00,1991.0,10.84253,10842.53 +19753,2025-03-09T12:22:05.765014-07:00,2039.0,10.837509,10837.509 +19754,2025-03-09T12:22:16.602023-07:00,2043.0,10.837009,10837.009 +19755,2025-03-09T12:22:27.444970-07:00,1997.0,10.842947,10842.947 +19756,2025-03-09T12:22:38.292411-07:00,2041.0,10.847441,10847.441 +19757,2025-03-09T12:22:49.131152-07:00,2042.0,10.838741,10838.741 +19758,2025-03-09T12:22:59.968980-07:00,1968.0,10.837828,10837.828 +19759,2025-03-09T12:23:10.807318-07:00,2044.0,10.838338,10838.338 +19760,2025-03-09T12:23:21.654299-07:00,1993.0,10.846981,10846.981 +19761,2025-03-09T12:23:32.486207-07:00,2043.0,10.831908,10831.908 +19762,2025-03-09T12:23:43.330954-07:00,1999.0,10.844747,10844.747 +19763,2025-03-09T12:23:54.170513-07:00,2025.0,10.839559,10839.559 +19764,2025-03-09T12:24:05.010021-07:00,2023.0,10.839508,10839.508 +19765,2025-03-09T12:24:15.850045-07:00,2003.0,10.840024,10840.024 +19766,2025-03-09T12:24:26.697029-07:00,2019.0,10.846984,10846.984 +19767,2025-03-09T12:24:37.540368-07:00,2044.0,10.843339,10843.339 +19768,2025-03-09T12:24:48.372941-07:00,2004.0,10.832573,10832.573 +19769,2025-03-09T12:24:59.216966-07:00,1955.0,10.844025,10844.025 +19770,2025-03-09T12:25:10.057971-07:00,2017.0,10.841005,10841.005 +19771,2025-03-09T12:25:20.900297-07:00,1961.0,10.842326,10842.326 +19772,2025-03-09T12:25:31.742424-07:00,2031.0,10.842127,10842.127 +19773,2025-03-09T12:25:42.587746-07:00,2015.0,10.845322,10845.322 +19774,2025-03-09T12:25:53.430212-07:00,1981.0,10.842466,10842.466 +19775,2025-03-09T12:26:04.275307-07:00,2029.0,10.845095,10845.095 +19776,2025-03-09T12:26:15.123287-07:00,1969.0,10.84798,10847.98 +19777,2025-03-09T12:26:25.964962-07:00,2046.0,10.841675,10841.675 +19778,2025-03-09T12:26:36.799497-07:00,1963.0,10.834535,10834.535 +19779,2025-03-09T12:26:47.645649-07:00,1965.0,10.846152,10846.152 +19780,2025-03-09T12:26:58.488367-07:00,2013.0,10.842718,10842.718 +19781,2025-03-09T12:27:09.320190-07:00,2000.0,10.831823,10831.823 +19782,2025-03-09T12:27:20.163972-07:00,1964.0,10.843782,10843.782 +19783,2025-03-09T12:27:31.014268-07:00,2013.0,10.850296,10850.296 +19784,2025-03-09T12:27:41.847729-07:00,2032.0,10.833461,10833.461 +19785,2025-03-09T12:27:52.696500-07:00,1962.0,10.848771,10848.771 +19786,2025-03-09T12:28:03.535949-07:00,2039.0,10.839449,10839.449 +19787,2025-03-09T12:28:14.378945-07:00,2039.0,10.842996,10842.996 +19788,2025-03-09T12:28:25.221260-07:00,2000.0,10.842315,10842.315 +19789,2025-03-09T12:28:36.061115-07:00,1995.0,10.839855,10839.855 +19790,2025-03-09T12:28:46.909055-07:00,2012.0,10.84794,10847.94 +19791,2025-03-09T12:28:57.756971-07:00,2011.0,10.847916,10847.916 +19792,2025-03-09T12:29:08.590611-07:00,2031.0,10.83364,10833.64 +19793,2025-03-09T12:29:19.435556-07:00,2033.0,10.844945,10844.945 +19794,2025-03-09T12:29:30.280083-07:00,1961.0,10.844527,10844.527 +19795,2025-03-09T12:29:41.122965-07:00,2032.0,10.842882,10842.882 +19796,2025-03-09T12:29:51.966970-07:00,1991.0,10.844005,10844.005 +19797,2025-03-09T12:30:02.815998-07:00,2029.0,10.849028,10849.028 +19798,2025-03-09T12:30:13.651995-07:00,2032.0,10.835997,10835.997 +19799,2025-03-09T12:30:24.504971-07:00,1961.0,10.852976,10852.976 +19800,2025-03-09T12:30:35.349968-07:00,2000.0,10.844997,10844.997 +19801,2025-03-09T12:30:46.194140-07:00,1958.0,10.844172,10844.172 +19802,2025-03-09T12:30:57.036125-07:00,2034.0,10.841985,10841.985 +19803,2025-03-09T12:31:07.886589-07:00,2035.0,10.850464,10850.464 +19804,2025-03-09T12:31:18.729051-07:00,2030.0,10.842462,10842.462 +19805,2025-03-09T12:31:29.577596-07:00,2015.0,10.848545,10848.545 +19806,2025-03-09T12:31:40.414962-07:00,2041.0,10.837366,10837.366 +19807,2025-03-09T12:31:51.263218-07:00,2047.0,10.848256,10848.256 +19808,2025-03-09T12:32:02.112029-07:00,1978.0,10.848811,10848.811 +19809,2025-03-09T12:32:12.947990-07:00,1983.0,10.835961,10835.961 +19810,2025-03-09T12:32:23.794967-07:00,1984.0,10.846977,10846.977 +19811,2025-03-09T12:32:34.635222-07:00,1977.0,10.840255,10840.255 +19812,2025-03-09T12:32:45.484183-07:00,2005.0,10.848961,10848.961 +19813,2025-03-09T12:32:56.334269-07:00,2016.0,10.850086,10850.086 +19814,2025-03-09T12:33:07.176984-07:00,2000.0,10.842715,10842.715 +19815,2025-03-09T12:33:18.015215-07:00,2027.0,10.838231,10838.231 +19816,2025-03-09T12:33:28.860493-07:00,2017.0,10.845278,10845.278 +19817,2025-03-09T12:33:39.710958-07:00,2015.0,10.850465,10850.465 +19818,2025-03-09T12:33:50.556120-07:00,1957.0,10.845162,10845.162 +19819,2025-03-09T12:34:01.400412-07:00,2034.0,10.844292,10844.292 +19820,2025-03-09T12:34:12.233967-07:00,1971.0,10.833555,10833.555 +19821,2025-03-09T12:34:23.078631-07:00,1977.0,10.844664,10844.664 +19822,2025-03-09T12:34:33.916299-07:00,2000.0,10.837668,10837.668 +19823,2025-03-09T12:34:44.751976-07:00,1967.0,10.835677,10835.677 +19824,2025-03-09T12:34:55.591207-07:00,2032.0,10.839231,10839.231 +19825,2025-03-09T12:35:06.428272-07:00,2005.0,10.837065,10837.065 +19826,2025-03-09T12:35:17.280336-07:00,2037.0,10.852064,10852.064 +19827,2025-03-09T12:35:28.123006-07:00,2032.0,10.84267,10842.67 +19828,2025-03-09T12:35:38.968055-07:00,2033.0,10.845049,10845.049 +19829,2025-03-09T12:35:49.809959-07:00,2021.0,10.841904,10841.904 +19830,2025-03-09T12:36:00.649741-07:00,2026.0,10.839782,10839.782 +19831,2025-03-09T12:36:11.495185-07:00,2021.0,10.845444,10845.444 +19832,2025-03-09T12:36:22.338962-07:00,2032.0,10.843777,10843.777 +19833,2025-03-09T12:36:33.172474-07:00,2006.0,10.833512,10833.512 +19834,2025-03-09T12:36:44.022047-07:00,2012.0,10.849573,10849.573 +19835,2025-03-09T12:36:54.855971-07:00,2031.0,10.833924,10833.924 +19836,2025-03-09T12:37:05.695957-07:00,2002.0,10.839986,10839.986 +19837,2025-03-09T12:37:16.532335-07:00,2019.0,10.836378,10836.378 +19838,2025-03-09T12:37:27.369042-07:00,2010.0,10.836707,10836.707 +19839,2025-03-09T12:37:38.217388-07:00,2034.0,10.848346,10848.346 +19840,2025-03-09T12:37:49.049949-07:00,2031.0,10.832561,10832.561 +19841,2025-03-09T12:37:59.894309-07:00,2000.0,10.84436,10844.36 +19842,2025-03-09T12:38:10.733351-07:00,2023.0,10.839042,10839.042 +19843,2025-03-09T12:38:21.574270-07:00,1997.0,10.840919,10840.919 +19844,2025-03-09T12:38:32.412305-07:00,1953.0,10.838035,10838.035 +19845,2025-03-09T12:38:43.255764-07:00,1957.0,10.843459,10843.459 +19846,2025-03-09T12:38:54.090962-07:00,1997.0,10.835198,10835.198 +19847,2025-03-09T12:39:04.929668-07:00,2031.0,10.838706,10838.706 +19848,2025-03-09T12:39:15.772779-07:00,2019.0,10.843111,10843.111 +19849,2025-03-09T12:39:26.610967-07:00,1949.0,10.838188,10838.188 +19850,2025-03-09T12:39:37.449966-07:00,2005.0,10.838999,10838.999 +19851,2025-03-09T12:39:48.279423-07:00,1993.0,10.829457,10829.457 +19852,2025-03-09T12:39:59.128961-07:00,1950.0,10.849538,10849.538 +19853,2025-03-09T12:40:09.965452-07:00,2026.0,10.836491,10836.491 +19854,2025-03-09T12:40:20.813971-07:00,1988.0,10.848519,10848.519 +19855,2025-03-09T12:40:31.653573-07:00,2031.0,10.839602,10839.602 +19856,2025-03-09T12:40:42.484968-07:00,1983.0,10.831395,10831.395 +19857,2025-03-09T12:40:53.322001-07:00,1955.0,10.837033,10837.033 +19858,2025-03-09T12:41:04.165450-07:00,2019.0,10.843449,10843.449 +19859,2025-03-09T12:41:15.002963-07:00,2010.0,10.837513,10837.513 +19860,2025-03-09T12:41:25.853204-07:00,1981.0,10.850241,10850.241 +19861,2025-03-09T12:41:36.686974-07:00,1986.0,10.83377,10833.77 +19862,2025-03-09T12:41:47.531333-07:00,2002.0,10.844359,10844.359 +19863,2025-03-09T12:41:58.385291-07:00,2029.0,10.853958,10853.958 +19864,2025-03-09T12:42:09.224287-07:00,2030.0,10.838996,10838.996 +19865,2025-03-09T12:42:20.065020-07:00,2006.0,10.840733,10840.733 +19866,2025-03-09T12:42:30.902565-07:00,2022.0,10.837545,10837.545 +19867,2025-03-09T12:42:41.746933-07:00,2027.0,10.844368,10844.368 +19868,2025-03-09T12:42:52.583317-07:00,2028.0,10.836384,10836.384 +19869,2025-03-09T12:43:03.421188-07:00,2030.0,10.837871,10837.871 +19870,2025-03-09T12:43:14.264342-07:00,2027.0,10.843154,10843.154 +19871,2025-03-09T12:43:25.097970-07:00,1989.0,10.833628,10833.628 +19872,2025-03-09T12:43:35.939000-07:00,1970.0,10.84103,10841.03 +19873,2025-03-09T12:43:46.788974-07:00,1975.0,10.849974,10849.974 +19874,2025-03-09T12:43:57.623317-07:00,1997.0,10.834343,10834.343 +19875,2025-03-09T12:44:08.468280-07:00,2022.0,10.844963,10844.963 +19876,2025-03-09T12:44:19.309960-07:00,1954.0,10.84168,10841.68 +19877,2025-03-09T12:44:30.153958-07:00,2020.0,10.843998,10843.998 +19878,2025-03-09T12:44:40.996293-07:00,1936.0,10.842335,10842.335 +19879,2025-03-09T12:44:51.836030-07:00,1911.0,10.839737,10839.737 +19880,2025-03-09T12:45:02.682973-07:00,2015.0,10.846943,10846.943 +19881,2025-03-09T12:45:13.521942-07:00,2029.0,10.838969,10838.969 +19882,2025-03-09T12:45:24.358503-07:00,2005.0,10.836561,10836.561 +19883,2025-03-09T12:45:35.199482-07:00,1964.0,10.840979,10840.979 +19884,2025-03-09T12:45:46.042962-07:00,2029.0,10.84348,10843.48 +19885,2025-03-09T12:45:56.876361-07:00,1971.0,10.833399,10833.399 +19886,2025-03-09T12:46:07.709232-07:00,2000.0,10.832871,10832.871 +19887,2025-03-09T12:46:18.559007-07:00,2023.0,10.849775,10849.775 +19888,2025-03-09T12:46:29.400244-07:00,2023.0,10.841237,10841.237 +19889,2025-03-09T12:46:40.235430-07:00,2025.0,10.835186,10835.186 +19890,2025-03-09T12:46:51.071973-07:00,1951.0,10.836543,10836.543 +19891,2025-03-09T12:47:01.914107-07:00,1984.0,10.842134,10842.134 +19892,2025-03-09T12:47:12.762027-07:00,2012.0,10.84792,10847.92 +19893,2025-03-09T12:47:23.600260-07:00,1941.0,10.838233,10838.233 +19894,2025-03-09T12:47:34.436066-07:00,2017.0,10.835806,10835.806 +19895,2025-03-09T12:47:45.284020-07:00,1999.0,10.847954,10847.954 +19896,2025-03-09T12:47:56.125386-07:00,1968.0,10.841366,10841.366 +19897,2025-03-09T12:48:06.960233-07:00,1984.0,10.834847,10834.847 +19898,2025-03-09T12:48:17.798237-07:00,1953.0,10.838004,10838.004 +19899,2025-03-09T12:48:28.638274-07:00,1981.0,10.840037,10840.037 +19900,2025-03-09T12:48:39.467399-07:00,1936.0,10.829125,10829.125 +19901,2025-03-09T12:48:50.311578-07:00,2006.0,10.844179,10844.179 +19902,2025-03-09T12:49:01.148135-07:00,2018.0,10.836557,10836.557 +19903,2025-03-09T12:49:11.981967-07:00,2014.0,10.833832,10833.832 +19904,2025-03-09T12:49:22.820217-07:00,2019.0,10.83825,10838.25 +19905,2025-03-09T12:49:33.664958-07:00,1950.0,10.844741,10844.741 +19906,2025-03-09T12:49:44.518159-07:00,1956.0,10.853201,10853.201 +19907,2025-03-09T12:49:55.350060-07:00,2013.0,10.831901,10831.901 +19908,2025-03-09T12:50:06.197821-07:00,1998.0,10.847761,10847.761 +19909,2025-03-09T12:50:17.043133-07:00,2015.0,10.845312,10845.312 +19910,2025-03-09T12:50:27.879237-07:00,1931.0,10.836104,10836.104 +19911,2025-03-09T12:50:38.717117-07:00,1937.0,10.83788,10837.88 +19912,2025-03-09T12:50:49.558969-07:00,1981.0,10.841852,10841.852 +19913,2025-03-09T12:51:00.399229-07:00,2005.0,10.84026,10840.26 +19914,2025-03-09T12:51:11.246243-07:00,1952.0,10.847014,10847.014 +19915,2025-03-09T12:51:22.096276-07:00,1974.0,10.850033,10850.033 +19916,2025-03-09T12:51:32.943992-07:00,1989.0,10.847716,10847.716 +19917,2025-03-09T12:51:43.781985-07:00,2006.0,10.837993,10837.993 +19918,2025-03-09T12:51:54.618025-07:00,1941.0,10.83604,10836.04 +19919,2025-03-09T12:52:05.465229-07:00,2017.0,10.847204,10847.204 +19920,2025-03-09T12:52:16.306127-07:00,2007.0,10.840898,10840.898 +19921,2025-03-09T12:52:27.153026-07:00,1984.0,10.846899,10846.899 +19922,2025-03-09T12:52:37.997962-07:00,2003.0,10.844936,10844.936 +19923,2025-03-09T12:52:48.833567-07:00,2017.0,10.835605,10835.605 +19924,2025-03-09T12:52:59.683793-07:00,1970.0,10.850226,10850.226 +19925,2025-03-09T12:53:10.526968-07:00,1975.0,10.843175,10843.175 +19926,2025-03-09T12:53:21.369211-07:00,1973.0,10.842243,10842.243 +19927,2025-03-09T12:53:32.214307-07:00,2007.0,10.845096,10845.096 +19928,2025-03-09T12:53:43.056299-07:00,2015.0,10.841992,10841.992 +19929,2025-03-09T12:53:53.887185-07:00,1974.0,10.830886,10830.886 +19930,2025-03-09T12:54:04.736967-07:00,1963.0,10.849782,10849.782 +19931,2025-03-09T12:54:15.580972-07:00,1994.0,10.844005,10844.005 +19932,2025-03-09T12:54:26.419298-07:00,1981.0,10.838326,10838.326 +19933,2025-03-09T12:54:37.271604-07:00,1978.0,10.852306,10852.306 +19934,2025-03-09T12:54:48.120011-07:00,1966.0,10.848407,10848.407 +19935,2025-03-09T12:54:58.963441-07:00,1994.0,10.84343,10843.43 +19936,2025-03-09T12:55:09.810025-07:00,1993.0,10.846584,10846.584 +19937,2025-03-09T12:55:20.641584-07:00,1994.0,10.831559,10831.559 +19938,2025-03-09T12:55:31.495278-07:00,2010.0,10.853694,10853.694 +19939,2025-03-09T12:55:42.346958-07:00,2015.0,10.85168,10851.68 +19940,2025-03-09T12:55:53.193974-07:00,2011.0,10.847016,10847.016 +19941,2025-03-09T12:56:04.042011-07:00,1979.0,10.848037,10848.037 +19942,2025-03-09T12:56:14.880134-07:00,1970.0,10.838123,10838.123 +19943,2025-03-09T12:56:25.734114-07:00,1984.0,10.85398,10853.98 +19944,2025-03-09T12:56:36.580220-07:00,1922.0,10.846106,10846.106 +19945,2025-03-09T12:56:47.428276-07:00,1958.0,10.848056,10848.056 +19946,2025-03-09T12:56:58.268964-07:00,1997.0,10.840688,10840.688 +19947,2025-03-09T12:57:09.126011-07:00,2010.0,10.857047,10857.047 +19948,2025-03-09T12:57:19.968581-07:00,1968.0,10.84257,10842.57 +19949,2025-03-09T12:57:30.816975-07:00,1990.0,10.848394,10848.394 +19950,2025-03-09T12:57:41.659585-07:00,2006.0,10.84261,10842.61 +19951,2025-03-09T12:57:52.502238-07:00,1999.0,10.842653,10842.653 +19952,2025-03-09T12:58:03.353696-07:00,2012.0,10.851458,10851.458 +19953,2025-03-09T12:58:14.189533-07:00,2001.0,10.835837,10835.837 +19954,2025-03-09T12:58:25.037423-07:00,1975.0,10.84789,10847.89 +19955,2025-03-09T12:58:35.881971-07:00,1977.0,10.844548,10844.548 +19956,2025-03-09T12:58:46.733636-07:00,2011.0,10.851665,10851.665 +19957,2025-03-09T12:58:57.568705-07:00,2004.0,10.835069,10835.069 +19958,2025-03-09T12:59:08.422315-07:00,2011.0,10.85361,10853.61 +19959,2025-03-09T12:59:19.260940-07:00,2015.0,10.838625,10838.625 +19960,2025-03-09T12:59:30.102080-07:00,1936.0,10.84114,10841.14 +19961,2025-03-09T12:59:40.956328-07:00,1997.0,10.854248,10854.248 +19962,2025-03-09T12:59:51.799212-07:00,2001.0,10.842884,10842.884 +19963,2025-03-09T13:00:02.650258-07:00,1958.0,10.851046,10851.046 +19964,2025-03-09T13:00:13.492095-07:00,1997.0,10.841837,10841.837 +19965,2025-03-09T13:00:24.338158-07:00,2007.0,10.846063,10846.063 +19966,2025-03-09T13:00:35.187972-07:00,2013.0,10.849814,10849.814 +19967,2025-03-09T13:00:46.026971-07:00,1973.0,10.838999,10838.999 +19968,2025-03-09T13:00:56.880094-07:00,1927.0,10.853123,10853.123 +19969,2025-03-09T13:01:07.718148-07:00,1968.0,10.838054,10838.054 +19970,2025-03-09T13:01:18.566949-07:00,1959.0,10.848801,10848.801 +19971,2025-03-09T13:01:29.420968-07:00,2000.0,10.854019,10854.019 +19972,2025-03-09T13:01:40.266285-07:00,1983.0,10.845317,10845.317 +19973,2025-03-09T13:01:51.113362-07:00,1941.0,10.847077,10847.077 +19974,2025-03-09T13:02:01.960398-07:00,2000.0,10.847036,10847.036 +19975,2025-03-09T13:02:12.795150-07:00,1963.0,10.834752,10834.752 +19976,2025-03-09T13:02:23.642106-07:00,2005.0,10.846956,10846.956 +19977,2025-03-09T13:02:34.485971-07:00,1936.0,10.843865,10843.865 +19978,2025-03-09T13:02:45.339029-07:00,1964.0,10.853058,10853.058 +19979,2025-03-09T13:02:56.188966-07:00,1943.0,10.849937,10849.937 +19980,2025-03-09T13:03:07.032073-07:00,2005.0,10.843107,10843.107 +19981,2025-03-09T13:03:17.886189-07:00,2007.0,10.854116,10854.116 +19982,2025-03-09T13:03:28.724996-07:00,1933.0,10.838807,10838.807 +19983,2025-03-09T13:03:39.584530-07:00,1999.0,10.859534,10859.534 +19984,2025-03-09T13:03:50.424954-07:00,2007.0,10.840424,10840.424 +19985,2025-03-09T13:04:01.270970-07:00,1964.0,10.846016,10846.016 +19986,2025-03-09T13:04:12.123957-07:00,2003.0,10.852987,10852.987 +19987,2025-03-09T13:04:22.959441-07:00,2003.0,10.835484,10835.484 +19988,2025-03-09T13:04:33.803595-07:00,1968.0,10.844154,10844.154 +19989,2025-03-09T13:04:44.653206-07:00,2004.0,10.849611,10849.611 +19990,2025-03-09T13:04:55.494961-07:00,1936.0,10.841755,10841.755 +19991,2025-03-09T13:05:06.344517-07:00,1995.0,10.849556,10849.556 +19992,2025-03-09T13:05:17.182974-07:00,1986.0,10.838457,10838.457 +19993,2025-03-09T13:05:28.033606-07:00,1972.0,10.850632,10850.632 +19994,2025-03-09T13:05:38.886276-07:00,1985.0,10.85267,10852.67 +19995,2025-03-09T13:05:49.772642-07:00,1923.0,10.886366,10886.366 +19996,2025-03-09T13:06:00.618792-07:00,2003.0,10.84615,10846.15 +19997,2025-03-09T13:06:11.465731-07:00,2003.0,10.846939,10846.939 +19998,2025-03-09T13:06:22.310727-07:00,1983.0,10.844996,10844.996 +19999,2025-03-09T13:06:33.166822-07:00,2000.0,10.856095,10856.095 +20000,2025-03-09T13:06:44.008186-07:00,2003.0,10.841364,10841.364 +20001,2025-03-09T13:06:54.858741-07:00,1953.0,10.850555,10850.555 +20002,2025-03-09T13:07:05.701165-07:00,1966.0,10.842424,10842.424 +20003,2025-03-09T13:07:16.544734-07:00,1967.0,10.843569,10843.569 +20004,2025-03-09T13:07:27.394998-07:00,1959.0,10.850264,10850.264 +20005,2025-03-09T13:07:38.247738-07:00,1961.0,10.85274,10852.74 +20006,2025-03-09T13:07:49.090722-07:00,1974.0,10.842984,10842.984 +20007,2025-03-09T13:07:59.942741-07:00,1973.0,10.852019,10852.019 +20008,2025-03-09T13:08:10.785464-07:00,1968.0,10.842723,10842.723 +20009,2025-03-09T13:08:21.636067-07:00,1995.0,10.850603,10850.603 +20010,2025-03-09T13:08:32.480739-07:00,1968.0,10.844672,10844.672 +20011,2025-03-09T13:08:43.327733-07:00,2005.0,10.846994,10846.994 +20012,2025-03-09T13:08:54.172178-07:00,1987.0,10.844445,10844.445 +20013,2025-03-09T13:09:05.020298-07:00,1965.0,10.84812,10848.12 +20014,2025-03-09T13:09:15.859969-07:00,1938.0,10.839671,10839.671 +20015,2025-03-09T13:09:26.705994-07:00,1933.0,10.846025,10846.025 +20016,2025-03-09T13:09:37.565090-07:00,1955.0,10.859096,10859.096 +20017,2025-03-09T13:09:48.411974-07:00,1994.0,10.846884,10846.884 +20018,2025-03-09T13:09:59.257914-07:00,1968.0,10.84594,10845.94 +20019,2025-03-09T13:10:10.107722-07:00,1984.0,10.849808,10849.808 +20020,2025-03-09T13:10:20.955791-07:00,1931.0,10.848069,10848.069 +20021,2025-03-09T13:10:31.811733-07:00,1952.0,10.855942,10855.942 +20022,2025-03-09T13:10:42.667964-07:00,1990.0,10.856231,10856.231 +20023,2025-03-09T13:10:53.512821-07:00,1917.0,10.844857,10844.857 +20024,2025-03-09T13:11:04.358099-07:00,1967.0,10.845278,10845.278 +20025,2025-03-09T13:11:15.211752-07:00,1959.0,10.853653,10853.653 +20026,2025-03-09T13:11:26.069738-07:00,2000.0,10.857986,10857.986 +20027,2025-03-09T13:11:36.917286-07:00,1957.0,10.847548,10847.548 +20028,2025-03-09T13:11:47.781769-07:00,1990.0,10.864483,10864.483 +20029,2025-03-09T13:11:58.629929-07:00,1995.0,10.84816,10848.16 +20030,2025-03-09T13:12:09.483307-07:00,1982.0,10.853378,10853.378 +20031,2025-03-09T13:12:20.325175-07:00,1957.0,10.841868,10841.868 +20032,2025-03-09T13:12:31.170957-07:00,1924.0,10.845782,10845.782 +20033,2025-03-09T13:12:42.024852-07:00,1917.0,10.853895,10853.895 +20034,2025-03-09T13:12:52.867730-07:00,1968.0,10.842878,10842.878 +20035,2025-03-09T13:13:03.718006-07:00,2000.0,10.850276,10850.276 +20036,2025-03-09T13:13:14.560770-07:00,1950.0,10.842764,10842.764 +20037,2025-03-09T13:13:25.414736-07:00,1945.0,10.853966,10853.966 +20038,2025-03-09T13:13:36.259069-07:00,1946.0,10.844333,10844.333 +20039,2025-03-09T13:13:47.107292-07:00,2000.0,10.848223,10848.223 +20040,2025-03-09T13:13:57.958888-07:00,1996.0,10.851596,10851.596 +20041,2025-03-09T13:13:58.853213-07:00,1994.0,0.894325,894.325 +20042,2025-03-09T13:14:08.807129-07:00,1981.0,9.953916,9953.916 +20043,2025-03-09T13:14:19.664364-07:00,2000.0,10.857235,10857.235 +20044,2025-03-09T13:14:30.511420-07:00,1965.0,10.847056,10847.056 +20045,2025-03-09T13:14:41.359953-07:00,1927.0,10.848533,10848.533 +20046,2025-03-09T13:14:52.214738-07:00,2000.0,10.854785,10854.785 +20047,2025-03-09T13:15:03.052864-07:00,1930.0,10.838126,10838.126 +20048,2025-03-09T13:15:13.909718-07:00,1932.0,10.856854,10856.854 +20049,2025-03-09T13:15:24.752346-07:00,2000.0,10.842628,10842.628 +20050,2025-03-09T13:15:35.594802-07:00,1937.0,10.842456,10842.456 +20051,2025-03-09T13:15:46.446015-07:00,1941.0,10.851213,10851.213 +20052,2025-03-09T13:15:57.292733-07:00,1972.0,10.846718,10846.718 +20053,2025-03-09T13:16:08.145943-07:00,1984.0,10.85321,10853.21 +20054,2025-03-09T13:16:18.990625-07:00,1981.0,10.844682,10844.682 +20055,2025-03-09T13:16:29.840639-07:00,1965.0,10.850014,10850.014 +20056,2025-03-09T13:16:40.690864-07:00,1968.0,10.850225,10850.225 +20057,2025-03-09T13:16:51.546823-07:00,1917.0,10.855959,10855.959 +20058,2025-03-09T13:17:02.396278-07:00,1936.0,10.849455,10849.455 +20059,2025-03-09T13:17:13.245923-07:00,1968.0,10.849645,10849.645 +20060,2025-03-09T13:17:24.087212-07:00,2000.0,10.841289,10841.289 +20061,2025-03-09T13:17:34.938721-07:00,1967.0,10.851509,10851.509 +20062,2025-03-09T13:17:45.779740-07:00,1975.0,10.841019,10841.019 +20063,2025-03-09T13:17:56.629981-07:00,1990.0,10.850241,10850.241 +20064,2025-03-09T13:18:07.480927-07:00,1936.0,10.850946,10850.946 +20065,2025-03-09T13:18:18.326085-07:00,1928.0,10.845158,10845.158 +20066,2025-03-09T13:18:29.183904-07:00,1937.0,10.857819,10857.819 +20067,2025-03-09T13:18:40.022769-07:00,1991.0,10.838865,10838.865 +20068,2025-03-09T13:18:50.876345-07:00,1968.0,10.853576,10853.576 +20069,2025-03-09T13:19:01.719753-07:00,1964.0,10.843408,10843.408 +20070,2025-03-09T13:19:12.564127-07:00,1951.0,10.844374,10844.374 +20071,2025-03-09T13:19:23.413286-07:00,1968.0,10.849159,10849.159 +20072,2025-03-09T13:19:34.256988-07:00,1989.0,10.843702,10843.702 +20073,2025-03-09T13:19:45.106298-07:00,1961.0,10.84931,10849.31 +20074,2025-03-09T13:19:55.962050-07:00,1969.0,10.855752,10855.752 +20075,2025-03-09T13:20:06.813767-07:00,1923.0,10.851717,10851.717 +20076,2025-03-09T13:20:17.661731-07:00,1904.0,10.847964,10847.964 +20077,2025-03-09T13:20:28.511945-07:00,1994.0,10.850214,10850.214 +20078,2025-03-09T13:20:39.365961-07:00,1997.0,10.854016,10854.016 +20079,2025-03-09T13:20:50.214733-07:00,1949.0,10.848772,10848.772 +20080,2025-03-09T13:21:01.060814-07:00,1951.0,10.846081,10846.081 +20081,2025-03-09T13:21:11.907407-07:00,1999.0,10.846593,10846.593 +20082,2025-03-09T13:21:22.751038-07:00,1996.0,10.843631,10843.631 +20083,2025-03-09T13:21:33.596141-07:00,1999.0,10.845103,10845.103 +20084,2025-03-09T13:21:44.444918-07:00,1955.0,10.848777,10848.777 +20085,2025-03-09T13:21:55.293738-07:00,1971.0,10.84882,10848.82 +20086,2025-03-09T13:22:06.133058-07:00,1947.0,10.83932,10839.32 +20087,2025-03-09T13:22:16.990013-07:00,1977.0,10.856955,10856.955 +20088,2025-03-09T13:22:27.830853-07:00,1906.0,10.84084,10840.84 +20089,2025-03-09T13:22:38.679313-07:00,1968.0,10.84846,10848.46 +20090,2025-03-09T13:22:49.519724-07:00,1949.0,10.840411,10840.411 +20091,2025-03-09T13:23:00.366623-07:00,1994.0,10.846899,10846.899 +20092,2025-03-09T13:23:11.222736-07:00,1934.0,10.856113,10856.113 +20093,2025-03-09T13:23:22.070736-07:00,1954.0,10.848,10848.0 +20094,2025-03-09T13:23:32.914738-07:00,1976.0,10.844002,10844.002 +20095,2025-03-09T13:23:43.762241-07:00,1995.0,10.847503,10847.503 +20096,2025-03-09T13:23:54.615746-07:00,1981.0,10.853505,10853.505 +20097,2025-03-09T13:24:05.469930-07:00,1911.0,10.854184,10854.184 +20098,2025-03-09T13:24:16.320057-07:00,1914.0,10.850127,10850.127 +20099,2025-03-09T13:24:27.160962-07:00,1977.0,10.840905,10840.905 +20100,2025-03-09T13:24:38.021402-07:00,1984.0,10.86044,10860.44 +20101,2025-03-09T13:24:48.869205-07:00,1981.0,10.847803,10847.803 +20102,2025-03-09T13:24:59.715038-07:00,1950.0,10.845833,10845.833 +20103,2025-03-09T13:25:10.558894-07:00,1950.0,10.843856,10843.856 +20104,2025-03-09T13:25:21.403323-07:00,1991.0,10.844429,10844.429 +20105,2025-03-09T13:25:32.256131-07:00,1968.0,10.852808,10852.808 +20106,2025-03-09T13:25:43.109057-07:00,1958.0,10.852926,10852.926 +20107,2025-03-09T13:25:53.964494-07:00,1996.0,10.855437,10855.437 +20108,2025-03-09T13:26:04.819571-07:00,1994.0,10.855077,10855.077 +20109,2025-03-09T13:26:15.660572-07:00,1950.0,10.841001,10841.001 +20110,2025-03-09T13:26:26.508964-07:00,1912.0,10.848392,10848.392 +20111,2025-03-09T13:26:37.353431-07:00,1955.0,10.844467,10844.467 +20112,2025-03-09T13:26:48.212947-07:00,1925.0,10.859516,10859.516 +20113,2025-03-09T13:26:59.058883-07:00,1956.0,10.845936,10845.936 +20114,2025-03-09T13:27:09.911738-07:00,1994.0,10.852855,10852.855 +20115,2025-03-09T13:27:20.754991-07:00,1991.0,10.843253,10843.253 +20116,2025-03-09T13:27:31.608347-07:00,1983.0,10.853356,10853.356 +20117,2025-03-09T13:27:42.459730-07:00,1991.0,10.851383,10851.383 +20118,2025-03-09T13:27:53.318999-07:00,1975.0,10.859269,10859.269 +20119,2025-03-09T13:28:04.159050-07:00,1959.0,10.840051,10840.051 +20120,2025-03-09T13:28:15.007225-07:00,1947.0,10.848175,10848.175 +20121,2025-03-09T13:28:25.847902-07:00,1966.0,10.840677,10840.677 +20122,2025-03-09T13:28:36.701733-07:00,1994.0,10.853831,10853.831 +20123,2025-03-09T13:28:47.547742-07:00,1995.0,10.846009,10846.009 +20124,2025-03-09T13:28:58.389980-07:00,1943.0,10.842238,10842.238 +20125,2025-03-09T13:29:09.231100-07:00,1995.0,10.84112,10841.12 +20126,2025-03-09T13:29:20.084998-07:00,1915.0,10.853898,10853.898 +20127,2025-03-09T13:29:30.928787-07:00,1975.0,10.843789,10843.789 +20128,2025-03-09T13:29:41.771734-07:00,1921.0,10.842947,10842.947 +20129,2025-03-09T13:29:52.614873-07:00,1955.0,10.843139,10843.139 +20130,2025-03-09T13:30:03.461802-07:00,1951.0,10.846929,10846.929 +20131,2025-03-09T13:30:14.312303-07:00,1906.0,10.850501,10850.501 +20132,2025-03-09T13:30:25.167067-07:00,1967.0,10.854764,10854.764 +20133,2025-03-09T13:30:36.011884-07:00,1995.0,10.844817,10844.817 +20134,2025-03-09T13:30:46.852081-07:00,1993.0,10.840197,10840.197 +20135,2025-03-09T13:30:57.707733-07:00,1955.0,10.855652,10855.652 +20136,2025-03-09T13:31:08.550897-07:00,1995.0,10.843164,10843.164 +20137,2025-03-09T13:31:19.405786-07:00,1952.0,10.854889,10854.889 +20138,2025-03-09T13:31:30.248894-07:00,1991.0,10.843108,10843.108 +20139,2025-03-09T13:31:41.097065-07:00,1899.0,10.848171,10848.171 +20140,2025-03-09T13:31:51.949362-07:00,1954.0,10.852297,10852.297 +20141,2025-03-09T13:32:02.799081-07:00,1968.0,10.849719,10849.719 +20142,2025-03-09T13:32:13.644863-07:00,1932.0,10.845782,10845.782 +20143,2025-03-09T13:32:24.497012-07:00,1969.0,10.852149,10852.149 +20144,2025-03-09T13:32:35.342736-07:00,1945.0,10.845724,10845.724 +20145,2025-03-09T13:32:46.194737-07:00,1986.0,10.852001,10852.001 +20146,2025-03-09T13:32:57.038739-07:00,1987.0,10.844002,10844.002 +20147,2025-03-09T13:33:07.892992-07:00,1955.0,10.854253,10854.253 +20148,2025-03-09T13:33:18.736009-07:00,1993.0,10.843017,10843.017 +20149,2025-03-09T13:33:29.590083-07:00,1988.0,10.854074,10854.074 +20150,2025-03-09T13:33:40.444067-07:00,1994.0,10.853984,10853.984 +20151,2025-03-09T13:33:51.285891-07:00,1973.0,10.841824,10841.824 +20152,2025-03-09T13:34:02.131857-07:00,1991.0,10.845966,10845.966 +20153,2025-03-09T13:34:12.978739-07:00,1946.0,10.846882,10846.882 +20154,2025-03-09T13:34:23.828877-07:00,1955.0,10.850138,10850.138 +20155,2025-03-09T13:34:34.672328-07:00,1990.0,10.843451,10843.451 +20156,2025-03-09T13:34:45.524081-07:00,1975.0,10.851753,10851.753 +20157,2025-03-09T13:34:56.362745-07:00,1991.0,10.838664,10838.664 +20158,2025-03-09T13:35:07.211428-07:00,1995.0,10.848683,10848.683 +20159,2025-03-09T13:35:18.055410-07:00,1972.0,10.843982,10843.982 +20160,2025-03-09T13:35:28.898751-07:00,1987.0,10.843341,10843.341 +20161,2025-03-09T13:35:39.742007-07:00,1942.0,10.843256,10843.256 +20162,2025-03-09T13:35:50.585777-07:00,1936.0,10.84377,10843.77 +20163,2025-03-09T13:36:01.439787-07:00,1968.0,10.85401,10854.01 +20164,2025-03-09T13:36:12.288726-07:00,1982.0,10.848939,10848.939 +20165,2025-03-09T13:36:23.138847-07:00,1993.0,10.850121,10850.121 +20166,2025-03-09T13:36:33.979712-07:00,1899.0,10.840865,10840.865 +20167,2025-03-09T13:36:44.829396-07:00,1914.0,10.849684,10849.684 +20168,2025-03-09T13:36:55.678057-07:00,1906.0,10.848661,10848.661 +20169,2025-03-09T13:37:06.532139-07:00,1951.0,10.854082,10854.082 +20170,2025-03-09T13:37:17.383976-07:00,1957.0,10.851837,10851.837 +20171,2025-03-09T13:37:28.230260-07:00,1986.0,10.846284,10846.284 +20172,2025-03-09T13:37:39.070724-07:00,1984.0,10.840464,10840.464 +20173,2025-03-09T13:37:49.921730-07:00,1980.0,10.851006,10851.006 +20174,2025-03-09T13:38:00.757990-07:00,1991.0,10.83626,10836.26 +20175,2025-03-09T13:38:11.612791-07:00,1990.0,10.854801,10854.801 +20176,2025-03-09T13:38:22.463736-07:00,1936.0,10.850945,10850.945 +20177,2025-03-09T13:38:33.312992-07:00,1939.0,10.849256,10849.256 +20178,2025-03-09T13:38:44.153773-07:00,1915.0,10.840781,10840.781 +20179,2025-03-09T13:38:55.000737-07:00,1898.0,10.846964,10846.964 +20180,2025-03-09T13:39:05.851043-07:00,1989.0,10.850306,10850.306 +20181,2025-03-09T13:39:16.683137-07:00,1934.0,10.832094,10832.094 +20182,2025-03-09T13:39:27.532036-07:00,1987.0,10.848899,10848.899 +20183,2025-03-09T13:39:38.375874-07:00,1993.0,10.843838,10843.838 +20184,2025-03-09T13:39:49.224707-07:00,1911.0,10.848833,10848.833 +20185,2025-03-09T13:40:00.064859-07:00,1937.0,10.840152,10840.152 +20186,2025-03-09T13:40:10.909466-07:00,1984.0,10.844607,10844.607 +20187,2025-03-09T13:40:21.753046-07:00,1985.0,10.84358,10843.58 +20188,2025-03-09T13:40:32.595773-07:00,1968.0,10.842727,10842.727 +20189,2025-03-09T13:40:43.445966-07:00,1967.0,10.850193,10850.193 +20190,2025-03-09T13:40:54.295807-07:00,1983.0,10.849841,10849.841 +20191,2025-03-09T13:41:05.143973-07:00,1993.0,10.848166,10848.166 +20192,2025-03-09T13:41:15.991783-07:00,1952.0,10.84781,10847.81 +20193,2025-03-09T13:41:26.839040-07:00,1971.0,10.847257,10847.257 +20194,2025-03-09T13:41:37.689552-07:00,1918.0,10.850512,10850.512 +20195,2025-03-09T13:41:48.528716-07:00,1997.0,10.839164,10839.164 +20196,2025-03-09T13:41:59.370724-07:00,1899.0,10.842008,10842.008 +20197,2025-03-09T13:42:10.217970-07:00,1989.0,10.847246,10847.246 +20198,2025-03-09T13:42:21.066732-07:00,1921.0,10.848762,10848.762 +20199,2025-03-09T13:42:31.916739-07:00,1936.0,10.850007,10850.007 +20200,2025-03-09T13:42:42.764783-07:00,1990.0,10.848044,10848.044 +20201,2025-03-09T13:42:53.609574-07:00,1985.0,10.844791,10844.791 +20202,2025-03-09T13:43:04.467069-07:00,1941.0,10.857495,10857.495 +20203,2025-03-09T13:43:15.309445-07:00,1963.0,10.842376,10842.376 +20204,2025-03-09T13:43:26.154813-07:00,1936.0,10.845368,10845.368 +20205,2025-03-09T13:43:37.009254-07:00,1938.0,10.854441,10854.441 +20206,2025-03-09T13:43:47.852081-07:00,1936.0,10.842827,10842.827 +20207,2025-03-09T13:43:58.695326-07:00,1989.0,10.843245,10843.245 +20208,2025-03-09T13:44:09.537755-07:00,1950.0,10.842429,10842.429 +20209,2025-03-09T13:44:20.375739-07:00,1949.0,10.837984,10837.984 +20210,2025-03-09T13:44:31.225872-07:00,1959.0,10.850133,10850.133 +20211,2025-03-09T13:44:42.077961-07:00,1946.0,10.852089,10852.089 +20212,2025-03-09T13:44:52.921741-07:00,1936.0,10.84378,10843.78 +20213,2025-03-09T13:45:03.762275-07:00,1985.0,10.840534,10840.534 +20214,2025-03-09T13:45:14.608125-07:00,1929.0,10.84585,10845.85 +20215,2025-03-09T13:45:25.452093-07:00,1904.0,10.843968,10843.968 +20216,2025-03-09T13:45:36.295047-07:00,1917.0,10.842954,10842.954 +20217,2025-03-09T13:45:47.138399-07:00,1927.0,10.843352,10843.352 +20218,2025-03-09T13:45:57.979626-07:00,1953.0,10.841227,10841.227 +20219,2025-03-09T13:46:08.815878-07:00,1905.0,10.836252,10836.252 +20220,2025-03-09T13:46:19.660735-07:00,1987.0,10.844857,10844.857 +20221,2025-03-09T13:46:30.509739-07:00,1968.0,10.849004,10849.004 +20222,2025-03-09T13:46:41.357165-07:00,1936.0,10.847426,10847.426 +20223,2025-03-09T13:46:52.207049-07:00,1989.0,10.849884,10849.884 +20224,2025-03-09T13:47:03.048867-07:00,1955.0,10.841818,10841.818 +20225,2025-03-09T13:47:13.894886-07:00,1965.0,10.846019,10846.019 +20226,2025-03-09T13:47:24.735721-07:00,1973.0,10.840835,10840.835 +20227,2025-03-09T13:47:35.580075-07:00,1936.0,10.844354,10844.354 +20228,2025-03-09T13:47:46.432671-07:00,1988.0,10.852596,10852.596 +20229,2025-03-09T13:47:57.282169-07:00,1970.0,10.849498,10849.498 +20230,2025-03-09T13:48:08.120741-07:00,1917.0,10.838572,10838.572 +20231,2025-03-09T13:48:18.973715-07:00,1947.0,10.852974,10852.974 +20232,2025-03-09T13:48:29.824933-07:00,1985.0,10.851218,10851.218 +20233,2025-03-09T13:48:40.670736-07:00,1974.0,10.845803,10845.803 +20234,2025-03-09T13:48:51.517730-07:00,1989.0,10.846994,10846.994 +20235,2025-03-09T13:49:02.366786-07:00,1951.0,10.849056,10849.056 +20236,2025-03-09T13:49:13.224450-07:00,1948.0,10.857664,10857.664 +20237,2025-03-09T13:49:24.069035-07:00,1905.0,10.844585,10844.585 +20238,2025-03-09T13:49:34.920302-07:00,1919.0,10.851267,10851.267 +20239,2025-03-09T13:49:45.766044-07:00,1911.0,10.845742,10845.742 +20240,2025-03-09T13:49:56.609005-07:00,1968.0,10.842961,10842.961 +20241,2025-03-09T13:50:07.451878-07:00,1986.0,10.842873,10842.873 +20242,2025-03-09T13:50:18.295079-07:00,1906.0,10.843201,10843.201 +20243,2025-03-09T13:50:29.149024-07:00,1959.0,10.853945,10853.945 +20244,2025-03-09T13:50:39.993193-07:00,1963.0,10.844169,10844.169 +20245,2025-03-09T13:50:50.840741-07:00,1931.0,10.847548,10847.548 +20246,2025-03-09T13:51:01.689838-07:00,1961.0,10.849097,10849.097 +20247,2025-03-09T13:51:12.532733-07:00,1937.0,10.842895,10842.895 +20248,2025-03-09T13:51:23.382733-07:00,1905.0,10.85,10850.0 +20249,2025-03-09T13:51:34.233720-07:00,1936.0,10.850987,10850.987 +20250,2025-03-09T13:51:45.082866-07:00,1966.0,10.849146,10849.146 +20251,2025-03-09T13:51:55.927709-07:00,1919.0,10.844843,10844.843 +20252,2025-03-09T13:52:06.781034-07:00,1991.0,10.853325,10853.325 +20253,2025-03-09T13:52:17.632602-07:00,1936.0,10.851568,10851.568 +20254,2025-03-09T13:52:28.467747-07:00,1993.0,10.835145,10835.145 +20255,2025-03-09T13:52:39.322082-07:00,1963.0,10.854335,10854.335 +20256,2025-03-09T13:52:50.155057-07:00,1975.0,10.832975,10832.975 +20257,2025-03-09T13:53:01.005009-07:00,1979.0,10.849952,10849.952 +20258,2025-03-09T13:53:11.852105-07:00,1952.0,10.847096,10847.096 +20259,2025-03-09T13:53:22.699737-07:00,1907.0,10.847632,10847.632 +20260,2025-03-09T13:53:33.544054-07:00,1982.0,10.844317,10844.317 +20261,2025-03-09T13:53:44.391007-07:00,1984.0,10.846953,10846.953 +20262,2025-03-09T13:53:55.232738-07:00,1938.0,10.841731,10841.731 +20263,2025-03-09T13:54:06.079064-07:00,1983.0,10.846326,10846.326 +20264,2025-03-09T13:54:16.920892-07:00,1989.0,10.841828,10841.828 +20265,2025-03-09T13:54:27.765728-07:00,1978.0,10.844836,10844.836 +20266,2025-03-09T13:54:38.607969-07:00,1968.0,10.842241,10842.241 +20267,2025-03-09T13:54:49.452038-07:00,1983.0,10.844069,10844.069 +20268,2025-03-09T13:55:00.294130-07:00,1974.0,10.842092,10842.092 +20269,2025-03-09T13:55:11.138733-07:00,1983.0,10.844603,10844.603 +20270,2025-03-09T13:55:21.987913-07:00,1951.0,10.84918,10849.18 +20271,2025-03-09T13:55:32.834734-07:00,1906.0,10.846821,10846.821 +20272,2025-03-09T13:55:43.674743-07:00,1943.0,10.840009,10840.009 +20273,2025-03-09T13:55:54.521311-07:00,1987.0,10.846568,10846.568 +20274,2025-03-09T13:56:05.363981-07:00,1954.0,10.84267,10842.67 +20275,2025-03-09T13:56:16.199976-07:00,1932.0,10.835995,10835.995 +20276,2025-03-09T13:56:27.050739-07:00,1973.0,10.850763,10850.763 +20277,2025-03-09T13:56:37.895040-07:00,1986.0,10.844301,10844.301 +20278,2025-03-09T13:56:48.737071-07:00,1904.0,10.842031,10842.031 +20279,2025-03-09T13:56:59.582787-07:00,1919.0,10.845716,10845.716 +20280,2025-03-09T13:57:10.422734-07:00,1987.0,10.839947,10839.947 +20281,2025-03-09T13:57:21.265739-07:00,1948.0,10.843005,10843.005 +20282,2025-03-09T13:57:32.109303-07:00,1967.0,10.843564,10843.564 +20283,2025-03-09T13:57:42.952009-07:00,1979.0,10.842706,10842.706 +20284,2025-03-09T13:57:53.801986-07:00,1988.0,10.849977,10849.977 +20285,2025-03-09T13:58:04.632734-07:00,1986.0,10.830748,10830.748 +20286,2025-03-09T13:58:15.481901-07:00,1954.0,10.849167,10849.167 +20287,2025-03-09T13:58:26.318735-07:00,1904.0,10.836834,10836.834 +20288,2025-03-09T13:58:37.167730-07:00,1919.0,10.848995,10848.995 +20289,2025-03-09T13:58:48.010727-07:00,1991.0,10.842997,10842.997 +20290,2025-03-09T13:58:58.853732-07:00,1978.0,10.843005,10843.005 +20291,2025-03-09T13:59:09.698056-07:00,1949.0,10.844324,10844.324 +20292,2025-03-09T13:59:20.538932-07:00,1904.0,10.840876,10840.876 +20293,2025-03-09T13:59:31.379328-07:00,1922.0,10.840396,10840.396 +20294,2025-03-09T13:59:42.221800-07:00,1918.0,10.842472,10842.472 +20295,2025-03-09T13:59:53.054065-07:00,1983.0,10.832265,10832.265 +20296,2025-03-09T14:00:03.895943-07:00,1989.0,10.841878,10841.878 +20297,2025-03-09T14:00:14.738859-07:00,1944.0,10.842916,10842.916 +20298,2025-03-09T14:00:25.588069-07:00,1922.0,10.84921,10849.21 +20299,2025-03-09T14:00:36.430057-07:00,1984.0,10.841988,10841.988 +20300,2025-03-09T14:00:47.270892-07:00,1983.0,10.840835,10840.835 +20301,2025-03-09T14:00:58.118618-07:00,1986.0,10.847726,10847.726 +20302,2025-03-09T14:01:08.965731-07:00,1933.0,10.847113,10847.113 +20303,2025-03-09T14:01:19.803761-07:00,1924.0,10.83803,10838.03 +20304,2025-03-09T14:01:30.640894-07:00,1989.0,10.837133,10837.133 +20305,2025-03-09T14:01:41.488969-07:00,1977.0,10.848075,10848.075 +20306,2025-03-09T14:01:52.328728-07:00,1950.0,10.839759,10839.759 +20307,2025-03-09T14:02:03.172009-07:00,1917.0,10.843281,10843.281 +20308,2025-03-09T14:02:14.015171-07:00,1913.0,10.843162,10843.162 +20309,2025-03-09T14:02:24.849737-07:00,1923.0,10.834566,10834.566 +20310,2025-03-09T14:02:35.689961-07:00,1918.0,10.840224,10840.224 +20311,2025-03-09T14:02:46.530818-07:00,1950.0,10.840857,10840.857 +20312,2025-03-09T14:02:57.373821-07:00,1986.0,10.843003,10843.003 +20313,2025-03-09T14:03:08.211729-07:00,1929.0,10.837908,10837.908 +20314,2025-03-09T14:03:19.059715-07:00,1942.0,10.847986,10847.986 +20315,2025-03-09T14:03:29.898109-07:00,1943.0,10.838394,10838.394 +20316,2025-03-09T14:03:40.746043-07:00,1993.0,10.847934,10847.934 +20317,2025-03-09T14:03:51.585435-07:00,1935.0,10.839392,10839.392 +20318,2025-03-09T14:04:02.430743-07:00,1968.0,10.845308,10845.308 +20319,2025-03-09T14:04:13.264745-07:00,1911.0,10.834002,10834.002 +20320,2025-03-09T14:04:24.107015-07:00,1965.0,10.84227,10842.27 +20321,2025-03-09T14:04:34.952732-07:00,1988.0,10.845717,10845.717 +20322,2025-03-09T14:04:45.787818-07:00,1989.0,10.835086,10835.086 +20323,2025-03-09T14:04:56.627139-07:00,1941.0,10.839321,10839.321 +20324,2025-03-09T14:05:07.473819-07:00,1934.0,10.84668,10846.68 +20325,2025-03-09T14:05:18.307738-07:00,1900.0,10.833919,10833.919 +20326,2025-03-09T14:05:29.155021-07:00,1951.0,10.847283,10847.283 +20327,2025-03-09T14:05:39.992663-07:00,1950.0,10.837642,10837.642 +20328,2025-03-09T14:05:51.012359-07:00,1911.0,11.019696,11019.696 +20329,2025-03-09T14:06:01.844381-07:00,1981.0,10.832022,10832.022 +20330,2025-03-09T14:06:12.688397-07:00,1949.0,10.844016,10844.016 +20331,2025-03-09T14:06:23.532647-07:00,1975.0,10.84425,10844.25 +20332,2025-03-09T14:06:34.384693-07:00,1933.0,10.852046,10852.046 +20333,2025-03-09T14:06:45.228421-07:00,1934.0,10.843728,10843.728 +20334,2025-03-09T14:06:56.081747-07:00,1989.0,10.853326,10853.326 +20335,2025-03-09T14:07:06.924452-07:00,1990.0,10.842705,10842.705 +20336,2025-03-09T14:07:17.769604-07:00,1953.0,10.845152,10845.152 +20337,2025-03-09T14:07:28.611819-07:00,1991.0,10.842215,10842.215 +20338,2025-03-09T14:07:39.455386-07:00,1950.0,10.843567,10843.567 +20339,2025-03-09T14:07:50.309071-07:00,1943.0,10.853685,10853.685 +20340,2025-03-09T14:08:01.151393-07:00,1934.0,10.842322,10842.322 +20341,2025-03-09T14:08:11.984678-07:00,1981.0,10.833285,10833.285 +20342,2025-03-09T14:08:22.828624-07:00,1989.0,10.843946,10843.946 +20343,2025-03-09T14:08:33.670404-07:00,1937.0,10.84178,10841.78 +20344,2025-03-09T14:08:44.519376-07:00,1921.0,10.848972,10848.972 +20345,2025-03-09T14:08:55.368392-07:00,1991.0,10.849016,10849.016 +20346,2025-03-09T14:09:06.209398-07:00,1937.0,10.841006,10841.006 +20347,2025-03-09T14:09:17.054756-07:00,1990.0,10.845358,10845.358 +20348,2025-03-09T14:09:27.896486-07:00,1983.0,10.84173,10841.73 +20349,2025-03-09T14:09:38.738584-07:00,1984.0,10.842098,10842.098 +20350,2025-03-09T14:09:49.572390-07:00,1986.0,10.833806,10833.806 +20351,2025-03-09T14:10:00.415716-07:00,1895.0,10.843326,10843.326 +20352,2025-03-09T14:10:11.258558-07:00,1981.0,10.842842,10842.842 +20353,2025-03-09T14:10:22.101385-07:00,1983.0,10.842827,10842.827 +20354,2025-03-09T14:10:32.944617-07:00,1951.0,10.843232,10843.232 +20355,2025-03-09T14:10:43.799404-07:00,1990.0,10.854787,10854.787 +20356,2025-03-09T14:10:54.636753-07:00,1929.0,10.837349,10837.349 +20357,2025-03-09T14:11:05.485058-07:00,1961.0,10.848305,10848.305 +20358,2025-03-09T14:11:16.334383-07:00,1991.0,10.849325,10849.325 +20359,2025-03-09T14:11:27.184391-07:00,1979.0,10.850008,10850.008 +20360,2025-03-09T14:11:38.034712-07:00,1974.0,10.850321,10850.321 +20361,2025-03-09T14:11:48.879368-07:00,1936.0,10.844656,10844.656 +20362,2025-03-09T14:11:59.721424-07:00,1950.0,10.842056,10842.056 +20363,2025-03-09T14:12:10.571510-07:00,1929.0,10.850086,10850.086 +20364,2025-03-09T14:12:21.416505-07:00,1959.0,10.844995,10844.995 +20365,2025-03-09T14:12:32.265441-07:00,1949.0,10.848936,10848.936 +20366,2025-03-09T14:12:43.107465-07:00,1942.0,10.842024,10842.024 +20367,2025-03-09T14:12:53.950389-07:00,1955.0,10.842924,10842.924 +20368,2025-03-09T14:13:04.801392-07:00,1981.0,10.851003,10851.003 +20369,2025-03-09T14:13:15.643430-07:00,1985.0,10.842038,10842.038 +20370,2025-03-09T14:13:26.490076-07:00,1963.0,10.846646,10846.646 +20371,2025-03-09T14:13:37.345819-07:00,1981.0,10.855743,10855.743 +20372,2025-03-09T14:13:48.187523-07:00,1977.0,10.841704,10841.704 +20373,2025-03-09T14:13:59.026421-07:00,1981.0,10.838898,10838.898 +20374,2025-03-09T14:14:09.873396-07:00,1993.0,10.846975,10846.975 +20375,2025-03-09T14:14:20.713956-07:00,1931.0,10.84056,10840.56 +20376,2025-03-09T14:14:31.555570-07:00,1935.0,10.841614,10841.614 +20377,2025-03-09T14:14:42.405393-07:00,1904.0,10.849823,10849.823 +20378,2025-03-09T14:14:53.242716-07:00,1987.0,10.837323,10837.323 +20379,2025-03-09T14:15:04.088528-07:00,1965.0,10.845812,10845.812 +20380,2025-03-09T14:15:14.934296-07:00,1942.0,10.845768,10845.768 +20381,2025-03-09T14:15:25.788020-07:00,1975.0,10.853724,10853.724 +20382,2025-03-09T14:15:36.628387-07:00,1942.0,10.840367,10840.367 +20383,2025-03-09T14:15:47.464392-07:00,1978.0,10.836005,10836.005 +20384,2025-03-09T14:15:58.318586-07:00,1919.0,10.854194,10854.194 +20385,2025-03-09T14:16:09.161716-07:00,1908.0,10.84313,10843.13 +20386,2025-03-09T14:16:20.004125-07:00,1990.0,10.842409,10842.409 +20387,2025-03-09T14:16:30.848383-07:00,1934.0,10.844258,10844.258 +20388,2025-03-09T14:16:41.683506-07:00,1954.0,10.835123,10835.123 +20389,2025-03-09T14:16:52.521340-07:00,1979.0,10.837834,10837.834 +20390,2025-03-09T14:17:03.367653-07:00,1969.0,10.846313,10846.313 +20391,2025-03-09T14:17:14.209518-07:00,1904.0,10.841865,10841.865 +20392,2025-03-09T14:17:25.050423-07:00,1987.0,10.840905,10840.905 +20393,2025-03-09T14:17:35.894685-07:00,1979.0,10.844262,10844.262 +20394,2025-03-09T14:17:46.733390-07:00,1911.0,10.838705,10838.705 +20395,2025-03-09T14:17:57.579697-07:00,1894.0,10.846307,10846.307 +20396,2025-03-09T14:18:08.425392-07:00,1927.0,10.845695,10845.695 +20397,2025-03-09T14:18:19.268019-07:00,1977.0,10.842627,10842.627 +20398,2025-03-09T14:18:30.110719-07:00,1904.0,10.8427,10842.7 +20399,2025-03-09T14:18:40.953637-07:00,1985.0,10.842918,10842.918 +20400,2025-03-09T14:18:51.794393-07:00,1945.0,10.840756,10840.756 +20401,2025-03-09T14:19:02.634617-07:00,1917.0,10.840224,10840.224 +20402,2025-03-09T14:19:13.481979-07:00,1979.0,10.847362,10847.362 +20403,2025-03-09T14:19:24.323601-07:00,1975.0,10.841622,10841.622 +20404,2025-03-09T14:19:35.174465-07:00,1982.0,10.850864,10850.864 +20405,2025-03-09T14:19:46.017610-07:00,1899.0,10.843145,10843.145 +20406,2025-03-09T14:19:56.859913-07:00,1908.0,10.842303,10842.303 +20407,2025-03-09T14:20:07.692616-07:00,1936.0,10.832703,10832.703 +20408,2025-03-09T14:20:18.549722-07:00,1943.0,10.857106,10857.106 +20409,2025-03-09T14:20:29.392390-07:00,1927.0,10.842668,10842.668 +20410,2025-03-09T14:20:40.238385-07:00,1903.0,10.845995,10845.995 +20411,2025-03-09T14:20:51.080398-07:00,1963.0,10.842013,10842.013 +20412,2025-03-09T14:21:01.923712-07:00,1951.0,10.843314,10843.314 +20413,2025-03-09T14:21:12.774898-07:00,1986.0,10.851186,10851.186 +20414,2025-03-09T14:21:23.616443-07:00,1933.0,10.841545,10841.545 +20415,2025-03-09T14:21:34.461697-07:00,1973.0,10.845254,10845.254 +20416,2025-03-09T14:21:45.313423-07:00,1985.0,10.851726,10851.726 +20417,2025-03-09T14:21:56.162669-07:00,1927.0,10.849246,10849.246 +20418,2025-03-09T14:22:07.014448-07:00,1989.0,10.851779,10851.779 +20419,2025-03-09T14:22:17.854321-07:00,1967.0,10.839873,10839.873 +20420,2025-03-09T14:22:28.702814-07:00,1967.0,10.848493,10848.493 +20421,2025-03-09T14:22:39.552440-07:00,1945.0,10.849626,10849.626 +20422,2025-03-09T14:22:50.398668-07:00,1989.0,10.846228,10846.228 +20423,2025-03-09T14:23:01.244393-07:00,1981.0,10.845725,10845.725 +20424,2025-03-09T14:23:12.096386-07:00,1941.0,10.851993,10851.993 +20425,2025-03-09T14:23:22.940389-07:00,1979.0,10.844003,10844.003 +20426,2025-03-09T14:23:33.790388-07:00,1910.0,10.849999,10849.999 +20427,2025-03-09T14:23:44.634306-07:00,1941.0,10.843918,10843.918 +20428,2025-03-09T14:23:55.493680-07:00,1971.0,10.859374,10859.374 +20429,2025-03-09T14:24:06.336710-07:00,1990.0,10.84303,10843.03 +20430,2025-03-09T14:24:17.178534-07:00,1919.0,10.841824,10841.824 +20431,2025-03-09T14:24:28.028797-07:00,1919.0,10.850263,10850.263 +20432,2025-03-09T14:24:38.877721-07:00,1895.0,10.848924,10848.924 +20433,2025-03-09T14:24:49.729392-07:00,1974.0,10.851671,10851.671 +20434,2025-03-09T14:25:00.568474-07:00,1897.0,10.839082,10839.082 +20435,2025-03-09T14:25:11.412373-07:00,1973.0,10.843899,10843.899 +20436,2025-03-09T14:25:22.266391-07:00,1893.0,10.854018,10854.018 +20437,2025-03-09T14:25:33.114395-07:00,1947.0,10.848004,10848.004 +20438,2025-03-09T14:25:43.956387-07:00,1926.0,10.841992,10841.992 +20439,2025-03-09T14:25:54.811454-07:00,1986.0,10.855067,10855.067 +20440,2025-03-09T14:26:05.656389-07:00,1898.0,10.844935,10844.935 +20441,2025-03-09T14:26:16.509147-07:00,1983.0,10.852758,10852.758 +20442,2025-03-09T14:26:27.353662-07:00,1911.0,10.844515,10844.515 +20443,2025-03-09T14:26:38.208761-07:00,1915.0,10.855099,10855.099 +20444,2025-03-09T14:26:49.059003-07:00,1900.0,10.850242,10850.242 +20445,2025-03-09T14:26:59.897750-07:00,1986.0,10.838747,10838.747 +20446,2025-03-09T14:27:10.750895-07:00,1943.0,10.853145,10853.145 +20447,2025-03-09T14:27:21.585743-07:00,1935.0,10.834848,10834.848 +20448,2025-03-09T14:27:32.435971-07:00,1936.0,10.850228,10850.228 +20449,2025-03-09T14:27:43.284749-07:00,1915.0,10.848778,10848.778 +20450,2025-03-09T14:27:54.127386-07:00,1984.0,10.842637,10842.637 +20451,2025-03-09T14:28:04.978396-07:00,1955.0,10.85101,10851.01 +20452,2025-03-09T14:28:15.831385-07:00,1983.0,10.852989,10852.989 +20453,2025-03-09T14:28:26.673892-07:00,1989.0,10.842507,10842.507 +20454,2025-03-09T14:28:37.516384-07:00,1933.0,10.842492,10842.492 +20455,2025-03-09T14:28:48.371393-07:00,1984.0,10.855009,10855.009 +20456,2025-03-09T14:28:59.214767-07:00,1958.0,10.843374,10843.374 +20457,2025-03-09T14:29:10.063209-07:00,1943.0,10.848442,10848.442 +20458,2025-03-09T14:29:20.911442-07:00,1907.0,10.848233,10848.233 +20459,2025-03-09T14:29:31.754394-07:00,1973.0,10.842952,10842.952 +20460,2025-03-09T14:29:42.597448-07:00,1975.0,10.843054,10843.054 +20461,2025-03-09T14:29:53.448381-07:00,1981.0,10.850933,10850.933 +20462,2025-03-09T14:30:04.289887-07:00,1969.0,10.841506,10841.506 +20463,2025-03-09T14:30:15.137114-07:00,1983.0,10.847227,10847.227 +20464,2025-03-09T14:30:25.998744-07:00,1986.0,10.86163,10861.63 +20465,2025-03-09T14:30:36.847647-07:00,1979.0,10.848903,10848.903 +20466,2025-03-09T14:30:47.695441-07:00,1971.0,10.847794,10847.794 +20467,2025-03-09T14:30:58.533630-07:00,1951.0,10.838189,10838.189 +20468,2025-03-09T14:31:09.388635-07:00,1985.0,10.855005,10855.005 +20469,2025-03-09T14:31:20.241389-07:00,1919.0,10.852754,10852.754 +20470,2025-03-09T14:31:31.085784-07:00,1983.0,10.844395,10844.395 +20471,2025-03-09T14:31:41.940393-07:00,1985.0,10.854609,10854.609 +20472,2025-03-09T14:31:52.777752-07:00,1904.0,10.837359,10837.359 +20473,2025-03-09T14:32:03.626563-07:00,1985.0,10.848811,10848.811 +20474,2025-03-09T14:32:14.471380-07:00,1921.0,10.844817,10844.817 +20475,2025-03-09T14:32:25.323476-07:00,1966.0,10.852096,10852.096 +20476,2025-03-09T14:32:36.167572-07:00,1984.0,10.844096,10844.096 +20477,2025-03-09T14:32:47.017372-07:00,1919.0,10.8498,10849.8 +20478,2025-03-09T14:32:57.865722-07:00,1904.0,10.84835,10848.35 +20479,2025-03-09T14:33:08.701626-07:00,1926.0,10.835904,10835.904 +20480,2025-03-09T14:33:19.545368-07:00,1945.0,10.843742,10843.742 +20481,2025-03-09T14:33:30.382396-07:00,1983.0,10.837028,10837.028 +20482,2025-03-09T14:33:41.232691-07:00,1919.0,10.850295,10850.295 +20483,2025-03-09T14:33:52.070030-07:00,1938.0,10.837339,10837.339 +20484,2025-03-09T14:34:02.912537-07:00,1915.0,10.842507,10842.507 +20485,2025-03-09T14:34:13.754379-07:00,1933.0,10.841842,10841.842 +20486,2025-03-09T14:34:24.603395-07:00,1943.0,10.849016,10849.016 +20487,2025-03-09T14:34:35.447745-07:00,1955.0,10.84435,10844.35 +20488,2025-03-09T14:34:46.295025-07:00,1983.0,10.84728,10847.28 +20489,2025-03-09T14:34:57.138394-07:00,1936.0,10.843369,10843.369 +20490,2025-03-09T14:35:07.980647-07:00,1937.0,10.842253,10842.253 +20491,2025-03-09T14:35:18.824370-07:00,1953.0,10.843723,10843.723 +20492,2025-03-09T14:35:29.667750-07:00,1962.0,10.84338,10843.38 +20493,2025-03-09T14:35:40.519691-07:00,1955.0,10.851941,10851.941 +20494,2025-03-09T14:35:51.353394-07:00,1935.0,10.833703,10833.703 +20495,2025-03-09T14:36:02.201500-07:00,1983.0,10.848106,10848.106 +20496,2025-03-09T14:36:13.038819-07:00,1896.0,10.837319,10837.319 +20497,2025-03-09T14:36:23.889435-07:00,1970.0,10.850616,10850.616 +20498,2025-03-09T14:36:34.725670-07:00,1909.0,10.836235,10836.235 +20499,2025-03-09T14:36:45.568436-07:00,1984.0,10.842766,10842.766 +20500,2025-03-09T14:36:56.412398-07:00,1984.0,10.843962,10843.962 +20501,2025-03-09T14:37:07.250977-07:00,1905.0,10.838579,10838.579 +20502,2025-03-09T14:37:18.099442-07:00,1917.0,10.848465,10848.465 +20503,2025-03-09T14:37:28.932553-07:00,1938.0,10.833111,10833.111 +20504,2025-03-09T14:37:39.769855-07:00,1934.0,10.837302,10837.302 +20505,2025-03-09T14:37:50.618201-07:00,1973.0,10.848346,10848.346 +20506,2025-03-09T14:38:01.465534-07:00,1987.0,10.847333,10847.333 +20507,2025-03-09T14:38:12.299632-07:00,1990.0,10.834098,10834.098 +20508,2025-03-09T14:38:23.145395-07:00,1907.0,10.845763,10845.763 +20509,2025-03-09T14:38:33.989026-07:00,1984.0,10.843631,10843.631 +20510,2025-03-09T14:38:44.833180-07:00,1985.0,10.844154,10844.154 +20511,2025-03-09T14:38:55.675598-07:00,1903.0,10.842418,10842.418 +20512,2025-03-09T14:39:06.514385-07:00,1986.0,10.838787,10838.787 +20513,2025-03-09T14:39:17.361973-07:00,1900.0,10.847588,10847.588 +20514,2025-03-09T14:39:28.199390-07:00,1946.0,10.837417,10837.417 +20515,2025-03-09T14:39:39.048746-07:00,1967.0,10.849356,10849.356 +20516,2025-03-09T14:39:49.879444-07:00,1966.0,10.830698,10830.698 +20517,2025-03-09T14:40:00.718711-07:00,1919.0,10.839267,10839.267 +20518,2025-03-09T14:40:11.561542-07:00,1985.0,10.842831,10842.831 +20519,2025-03-09T14:40:22.399526-07:00,1954.0,10.837984,10837.984 +20520,2025-03-09T14:40:33.231225-07:00,1894.0,10.831699,10831.699 +20521,2025-03-09T14:40:44.070427-07:00,1989.0,10.839202,10839.202 +20522,2025-03-09T14:40:54.903398-07:00,1971.0,10.832971,10832.971 +20523,2025-03-09T14:41:05.754394-07:00,1968.0,10.850996,10850.996 +20524,2025-03-09T14:41:16.599693-07:00,1965.0,10.845299,10845.299 +20525,2025-03-09T14:41:27.438381-07:00,1985.0,10.838688,10838.688 +20526,2025-03-09T14:41:38.276448-07:00,1910.0,10.838067,10838.067 +20527,2025-03-09T14:41:49.121002-07:00,1904.0,10.844554,10844.554 +20528,2025-03-09T14:41:59.958391-07:00,1947.0,10.837389,10837.389 +20529,2025-03-09T14:42:10.793724-07:00,1956.0,10.835333,10835.333 +20530,2025-03-09T14:42:21.636662-07:00,1955.0,10.842938,10842.938 +20531,2025-03-09T14:42:32.476235-07:00,1934.0,10.839573,10839.573 +20532,2025-03-09T14:42:43.318444-07:00,1907.0,10.842209,10842.209 +20533,2025-03-09T14:42:54.155668-07:00,1955.0,10.837224,10837.224 +20534,2025-03-09T14:43:04.997859-07:00,1974.0,10.842191,10842.191 +20535,2025-03-09T14:43:15.842337-07:00,1942.0,10.844478,10844.478 +20536,2025-03-09T14:43:26.679440-07:00,1939.0,10.837103,10837.103 +20537,2025-03-09T14:43:37.526394-07:00,1905.0,10.846954,10846.954 +20538,2025-03-09T14:43:48.360943-07:00,1957.0,10.834549,10834.549 +20539,2025-03-09T14:43:59.205564-07:00,1985.0,10.844621,10844.621 +20540,2025-03-09T14:44:10.045655-07:00,1981.0,10.840091,10840.091 +20541,2025-03-09T14:44:20.885618-07:00,1945.0,10.839963,10839.963 +20542,2025-03-09T14:44:31.732989-07:00,1979.0,10.847371,10847.371 +20543,2025-03-09T14:44:42.575406-07:00,1942.0,10.842417,10842.417 +20544,2025-03-09T14:44:53.424629-07:00,1955.0,10.849223,10849.223 +20545,2025-03-09T14:45:04.267364-07:00,1936.0,10.842735,10842.735 +20546,2025-03-09T14:45:15.112872-07:00,1927.0,10.845508,10845.508 +20547,2025-03-09T14:45:25.958396-07:00,1919.0,10.845524,10845.524 +20548,2025-03-09T14:45:36.809539-07:00,1984.0,10.851143,10851.143 +20549,2025-03-09T14:45:47.645564-07:00,1923.0,10.836025,10836.025 +20550,2025-03-09T14:45:58.497682-07:00,1937.0,10.852118,10852.118 +20551,2025-03-09T14:46:09.340544-07:00,1948.0,10.842862,10842.862 +20552,2025-03-09T14:46:20.193390-07:00,1963.0,10.852846,10852.846 +20553,2025-03-09T14:46:31.041455-07:00,1925.0,10.848065,10848.065 +20554,2025-03-09T14:46:41.887805-07:00,1942.0,10.84635,10846.35 +20555,2025-03-09T14:46:52.736983-07:00,1986.0,10.849178,10849.178 +20556,2025-03-09T14:47:03.575419-07:00,1975.0,10.838436,10838.436 +20557,2025-03-09T14:47:14.428606-07:00,1915.0,10.853187,10853.187 +20558,2025-03-09T14:47:25.278393-07:00,1988.0,10.849787,10849.787 +20559,2025-03-09T14:47:36.123385-07:00,1983.0,10.844992,10844.992 +20560,2025-03-09T14:47:46.975391-07:00,1984.0,10.852006,10852.006 +20561,2025-03-09T14:47:57.814540-07:00,1911.0,10.839149,10839.149 +20562,2025-03-09T14:48:08.662725-07:00,1966.0,10.848185,10848.185 +20563,2025-03-09T14:48:19.511693-07:00,1939.0,10.848968,10848.968 +20564,2025-03-09T14:48:30.350120-07:00,1937.0,10.838427,10838.427 +20565,2025-03-09T14:48:41.198390-07:00,1945.0,10.84827,10848.27 +20566,2025-03-09T14:48:52.034988-07:00,1959.0,10.836598,10836.598 +20567,2025-03-09T14:49:02.884876-07:00,1986.0,10.849888,10849.888 +20568,2025-03-09T14:49:13.733648-07:00,1952.0,10.848772,10848.772 +20569,2025-03-09T14:49:24.574442-07:00,1948.0,10.840794,10840.794 +20570,2025-03-09T14:49:35.423394-07:00,1980.0,10.848952,10848.952 +20571,2025-03-09T14:49:46.269786-07:00,1921.0,10.846392,10846.392 +20572,2025-03-09T14:49:57.114390-07:00,1950.0,10.844604,10844.604 +20573,2025-03-09T14:50:07.966493-07:00,1934.0,10.852103,10852.103 +20574,2025-03-09T14:50:18.814636-07:00,1983.0,10.848143,10848.143 +20575,2025-03-09T14:50:29.662849-07:00,1987.0,10.848213,10848.213 +20576,2025-03-09T14:50:40.507394-07:00,1951.0,10.844545,10844.545 +20577,2025-03-09T14:50:51.353618-07:00,1977.0,10.846224,10846.224 +20578,2025-03-09T14:51:02.199683-07:00,1943.0,10.846065,10846.065 +20579,2025-03-09T14:51:13.044483-07:00,1953.0,10.8448,10844.8 +20580,2025-03-09T14:51:23.895732-07:00,1991.0,10.851249,10851.249 +20581,2025-03-09T14:51:34.733395-07:00,1941.0,10.837663,10837.663 +20582,2025-03-09T14:51:45.578436-07:00,1991.0,10.845041,10845.041 +20583,2025-03-09T14:51:56.429394-07:00,1979.0,10.850958,10850.958 +20584,2025-03-09T14:52:07.273587-07:00,1987.0,10.844193,10844.193 +20585,2025-03-09T14:52:18.117395-07:00,1990.0,10.843808,10843.808 +20586,2025-03-09T14:52:28.971407-07:00,1987.0,10.854012,10854.012 +20587,2025-03-09T14:52:39.807446-07:00,1989.0,10.836039,10836.039 +20588,2025-03-09T14:52:50.657472-07:00,1931.0,10.850026,10850.026 +20589,2025-03-09T14:53:01.505508-07:00,1975.0,10.848036,10848.036 +20590,2025-03-09T14:53:12.337864-07:00,1938.0,10.832356,10832.356 +20591,2025-03-09T14:53:23.181386-07:00,1927.0,10.843522,10843.522 +20592,2025-03-09T14:53:34.035282-07:00,1984.0,10.853896,10853.896 +20593,2025-03-09T14:53:44.873379-07:00,1899.0,10.838097,10838.097 +20594,2025-03-09T14:53:55.721395-07:00,1968.0,10.848016,10848.016 +20595,2025-03-09T14:54:06.575673-07:00,1952.0,10.854278,10854.278 +20596,2025-03-09T14:54:17.417564-07:00,1954.0,10.841891,10841.891 +20597,2025-03-09T14:54:28.276576-07:00,1955.0,10.859012,10859.012 +20598,2025-03-09T14:54:39.123549-07:00,1947.0,10.846973,10846.973 +20599,2025-03-09T14:54:49.966969-07:00,1898.0,10.84342,10843.42 +20600,2025-03-09T14:55:00.813432-07:00,1975.0,10.846463,10846.463 +20601,2025-03-09T14:55:11.668442-07:00,1951.0,10.85501,10855.01 +20602,2025-03-09T14:55:22.516393-07:00,1984.0,10.847951,10847.951 +20603,2025-03-09T14:55:33.367381-07:00,1989.0,10.850988,10850.988 +20604,2025-03-09T14:55:44.208397-07:00,1984.0,10.841016,10841.016 +20605,2025-03-09T14:55:55.059728-07:00,1954.0,10.851331,10851.331 +20606,2025-03-09T14:56:05.901366-07:00,1985.0,10.841638,10841.638 +20607,2025-03-09T14:56:16.750814-07:00,1967.0,10.849448,10849.448 +20608,2025-03-09T14:56:27.591898-07:00,1949.0,10.841084,10841.084 +20609,2025-03-09T14:56:38.445391-07:00,1925.0,10.853493,10853.493 +20610,2025-03-09T14:56:49.288519-07:00,1964.0,10.843128,10843.128 +20611,2025-03-09T14:57:00.132395-07:00,1957.0,10.843876,10843.876 +20612,2025-03-09T14:57:10.977095-07:00,1920.0,10.8447,10844.7 +20613,2025-03-09T14:57:21.823439-07:00,1943.0,10.846344,10846.344 +20614,2025-03-09T14:57:32.671395-07:00,1941.0,10.847956,10847.956 +20615,2025-03-09T14:57:43.518388-07:00,1983.0,10.846993,10846.993 +20616,2025-03-09T14:57:54.367390-07:00,1911.0,10.849002,10849.002 +20617,2025-03-09T14:58:05.215403-07:00,1968.0,10.848013,10848.013 +20618,2025-03-09T14:58:16.058738-07:00,1987.0,10.843335,10843.335 +20619,2025-03-09T14:58:26.896394-07:00,1962.0,10.837656,10837.656 +20620,2025-03-09T14:58:37.749444-07:00,1991.0,10.85305,10853.05 +20621,2025-03-09T14:58:48.598589-07:00,1955.0,10.849145,10849.145 +20622,2025-03-09T14:58:59.446423-07:00,1988.0,10.847834,10847.834 +20623,2025-03-09T14:59:10.288743-07:00,1994.0,10.84232,10842.32 +20624,2025-03-09T14:59:21.139397-07:00,1910.0,10.850654,10850.654 +20625,2025-03-09T14:59:31.993394-07:00,1996.0,10.853997,10853.997 +20626,2025-03-09T14:59:42.843415-07:00,1963.0,10.850021,10850.021 +20627,2025-03-09T14:59:53.690726-07:00,1899.0,10.847311,10847.311 +20628,2025-03-09T15:00:04.546618-07:00,1994.0,10.855892,10855.892 +20629,2025-03-09T15:00:15.389413-07:00,1963.0,10.842795,10842.795 +20630,2025-03-09T15:00:26.232952-07:00,1959.0,10.843539,10843.539 +20631,2025-03-09T15:00:37.075443-07:00,1910.0,10.842491,10842.491 +20632,2025-03-09T15:00:47.930024-07:00,1948.0,10.854581,10854.581 +20633,2025-03-09T15:00:58.780104-07:00,1973.0,10.85008,10850.08 +20634,2025-03-09T15:01:09.614442-07:00,1941.0,10.834338,10834.338 +20635,2025-03-09T15:01:20.455602-07:00,1978.0,10.84116,10841.16 +20636,2025-03-09T15:01:31.296647-07:00,1967.0,10.841045,10841.045 +20637,2025-03-09T15:01:42.145453-07:00,1927.0,10.848806,10848.806 +20638,2025-03-09T15:01:52.994665-07:00,1965.0,10.849212,10849.212 +20639,2025-03-09T15:02:03.837265-07:00,1991.0,10.8426,10842.6 +20640,2025-03-09T15:02:14.685867-07:00,1995.0,10.848602,10848.602 +20641,2025-03-09T15:02:25.521384-07:00,1952.0,10.835517,10835.517 +20642,2025-03-09T15:02:36.360753-07:00,1981.0,10.839369,10839.369 +20643,2025-03-09T15:02:47.213841-07:00,1955.0,10.853088,10853.088 +20644,2025-03-09T15:02:58.047440-07:00,1911.0,10.833599,10833.599 +20645,2025-03-09T15:03:08.900387-07:00,1953.0,10.852947,10852.947 +20646,2025-03-09T15:03:19.739749-07:00,1950.0,10.839362,10839.362 +20647,2025-03-09T15:03:30.587396-07:00,1988.0,10.847647,10847.647 +20648,2025-03-09T15:03:41.431708-07:00,1970.0,10.844312,10844.312 +20649,2025-03-09T15:03:52.273820-07:00,1904.0,10.842112,10842.112 +20650,2025-03-09T15:04:03.127683-07:00,1977.0,10.853863,10853.863 +20651,2025-03-09T15:04:13.966108-07:00,1999.0,10.838425,10838.425 +20652,2025-03-09T15:04:24.809379-07:00,1947.0,10.843271,10843.271 +20653,2025-03-09T15:04:35.657726-07:00,1936.0,10.848347,10848.347 +20654,2025-03-09T15:04:46.507923-07:00,1917.0,10.850197,10850.197 +20655,2025-03-09T15:04:57.353478-07:00,1915.0,10.845555,10845.555 +20656,2025-03-09T15:05:08.198576-07:00,1994.0,10.845098,10845.098 +20657,2025-03-09T15:05:19.051603-07:00,1977.0,10.853027,10853.027 +20658,2025-03-09T15:05:29.902389-07:00,1977.0,10.850786,10850.786 +20659,2025-03-09T15:05:40.739716-07:00,1982.0,10.837327,10837.327 +20660,2025-03-09T15:05:51.625228-07:00,1966.0,10.885512,10885.512 +20661,2025-03-09T15:06:02.467265-07:00,1996.0,10.842037,10842.037 +20662,2025-03-09T15:06:13.312861-07:00,1981.0,10.845596,10845.596 +20663,2025-03-09T15:06:24.149866-07:00,1927.0,10.837005,10837.005 +20664,2025-03-09T15:06:35.004858-07:00,1945.0,10.854992,10854.992 +20665,2025-03-09T15:06:45.851216-07:00,1968.0,10.846358,10846.358 +20666,2025-03-09T15:06:56.700628-07:00,1984.0,10.849412,10849.412 +20667,2025-03-09T15:07:07.542861-07:00,1989.0,10.842233,10842.233 +20668,2025-03-09T15:07:18.387867-07:00,1958.0,10.845006,10845.006 +20669,2025-03-09T15:07:29.233867-07:00,1934.0,10.846,10846.0 +20670,2025-03-09T15:07:40.070182-07:00,1977.0,10.836315,10836.315 +20671,2025-03-09T15:07:50.917279-07:00,1979.0,10.847097,10847.097 +20672,2025-03-09T15:08:01.761939-07:00,1973.0,10.84466,10844.66 +20673,2025-03-09T15:08:12.597999-07:00,1957.0,10.83606,10836.06 +20674,2025-03-09T15:08:23.452945-07:00,1973.0,10.854946,10854.946 +20675,2025-03-09T15:08:34.292352-07:00,1984.0,10.839407,10839.407 +20676,2025-03-09T15:08:45.137441-07:00,1982.0,10.845089,10845.089 +20677,2025-03-09T15:08:55.974909-07:00,1943.0,10.837468,10837.468 +20678,2025-03-09T15:09:06.811861-07:00,1913.0,10.836952,10836.952 +20679,2025-03-09T15:09:17.659173-07:00,1927.0,10.847312,10847.312 +20680,2025-03-09T15:09:28.504167-07:00,1985.0,10.844994,10844.994 +20681,2025-03-09T15:09:39.339162-07:00,1919.0,10.834995,10834.995 +20682,2025-03-09T15:09:50.181912-07:00,1997.0,10.84275,10842.75 +20683,2025-03-09T15:10:01.017072-07:00,1991.0,10.83516,10835.16 +20684,2025-03-09T15:10:11.863003-07:00,1997.0,10.845931,10845.931 +20685,2025-03-09T15:10:22.710231-07:00,2000.0,10.847228,10847.228 +20686,2025-03-09T15:10:33.559866-07:00,1997.0,10.849635,10849.635 +20687,2025-03-09T15:10:44.397997-07:00,1914.0,10.838131,10838.131 +20688,2025-03-09T15:10:55.248913-07:00,1998.0,10.850916,10850.916 +20689,2025-03-09T15:11:06.095460-07:00,1996.0,10.846547,10846.547 +20690,2025-03-09T15:11:16.940908-07:00,1993.0,10.845448,10845.448 +20691,2025-03-09T15:11:27.782865-07:00,1978.0,10.841957,10841.957 +20692,2025-03-09T15:11:38.627047-07:00,1997.0,10.844182,10844.182 +20693,2025-03-09T15:11:49.465002-07:00,1991.0,10.837955,10837.955 +20694,2025-03-09T15:12:00.313303-07:00,1995.0,10.848301,10848.301 +20695,2025-03-09T15:12:11.152022-07:00,1939.0,10.838719,10838.719 +20696,2025-03-09T15:12:21.987124-07:00,1993.0,10.835102,10835.102 +20697,2025-03-09T15:12:32.830130-07:00,1995.0,10.843006,10843.006 +20698,2025-03-09T15:12:43.674200-07:00,1984.0,10.84407,10844.07 +20699,2025-03-09T15:12:54.516868-07:00,1919.0,10.842668,10842.668 +20700,2025-03-09T15:13:05.359874-07:00,1964.0,10.843006,10843.006 +20701,2025-03-09T15:13:16.203196-07:00,1916.0,10.843322,10843.322 +20702,2025-03-09T15:13:27.046709-07:00,1979.0,10.843513,10843.513 +20703,2025-03-09T15:13:37.888994-07:00,1967.0,10.842285,10842.285 +20704,2025-03-09T15:13:48.742844-07:00,1941.0,10.85385,10853.85 +20705,2025-03-09T15:13:59.585863-07:00,1921.0,10.843019,10843.019 +20706,2025-03-09T15:14:10.426518-07:00,1936.0,10.840655,10840.655 +20707,2025-03-09T15:14:21.273247-07:00,1967.0,10.846729,10846.729 +20708,2025-03-09T15:14:32.115100-07:00,1977.0,10.841853,10841.853 +20709,2025-03-09T15:14:42.966926-07:00,1999.0,10.851826,10851.826 +20710,2025-03-09T15:14:53.803993-07:00,1998.0,10.837067,10837.067 +20711,2025-03-09T15:15:04.651436-07:00,1997.0,10.847443,10847.443 +20712,2025-03-09T15:15:15.492173-07:00,1929.0,10.840737,10840.737 +20713,2025-03-09T15:15:26.329876-07:00,1946.0,10.837703,10837.703 +20714,2025-03-09T15:15:37.175863-07:00,1986.0,10.845987,10845.987 +20715,2025-03-09T15:15:48.016867-07:00,1955.0,10.841004,10841.004 +20716,2025-03-09T15:15:58.860194-07:00,1998.0,10.843327,10843.327 +20717,2025-03-09T15:16:09.716165-07:00,1997.0,10.855971,10855.971 +20718,2025-03-09T15:16:20.560187-07:00,1910.0,10.844022,10844.022 +20719,2025-03-09T15:16:31.397028-07:00,1915.0,10.836841,10836.841 +20720,2025-03-09T15:16:42.234400-07:00,1950.0,10.837372,10837.372 +20721,2025-03-09T15:16:53.086334-07:00,1967.0,10.851934,10851.934 +20722,2025-03-09T15:17:03.932385-07:00,1939.0,10.846051,10846.051 +20723,2025-03-09T15:17:14.768908-07:00,1995.0,10.836523,10836.523 +20724,2025-03-09T15:17:25.623109-07:00,1959.0,10.854201,10854.201 +20725,2025-03-09T15:17:36.454900-07:00,1934.0,10.831791,10831.791 +20726,2025-03-09T15:17:47.303413-07:00,1973.0,10.848513,10848.513 +20727,2025-03-09T15:17:58.141923-07:00,1958.0,10.83851,10838.51 +20728,2025-03-09T15:18:08.986012-07:00,2000.0,10.844089,10844.089 +20729,2025-03-09T15:18:19.827033-07:00,1997.0,10.841021,10841.021 +20730,2025-03-09T15:18:30.674284-07:00,1926.0,10.847251,10847.251 +20731,2025-03-09T15:18:41.505859-07:00,1950.0,10.831575,10831.575 +20732,2025-03-09T15:18:52.351866-07:00,1985.0,10.846007,10846.007 +20733,2025-03-09T15:19:03.201852-07:00,1999.0,10.849986,10849.986 +20734,2025-03-09T15:19:14.047867-07:00,1969.0,10.846015,10846.015 +20735,2025-03-09T15:19:24.890266-07:00,1989.0,10.842399,10842.399 +20736,2025-03-09T15:19:35.731866-07:00,1974.0,10.8416,10841.6 +20737,2025-03-09T15:19:46.574090-07:00,1998.0,10.842224,10842.224 +20738,2025-03-09T15:19:57.419196-07:00,1909.0,10.845106,10845.106 +20739,2025-03-09T15:20:08.256169-07:00,1989.0,10.836973,10836.973 +20740,2025-03-09T15:20:19.096840-07:00,1997.0,10.840671,10840.671 +20741,2025-03-09T15:20:29.933091-07:00,1990.0,10.836251,10836.251 +20742,2025-03-09T15:20:40.776145-07:00,1963.0,10.843054,10843.054 +20743,2025-03-09T15:20:51.623186-07:00,1924.0,10.847041,10847.041 +20744,2025-03-09T15:21:02.467013-07:00,1959.0,10.843827,10843.827 +20745,2025-03-09T15:21:13.302857-07:00,1999.0,10.835844,10835.844 +20746,2025-03-09T15:21:24.149179-07:00,1922.0,10.846322,10846.322 +20747,2025-03-09T15:21:34.998212-07:00,1985.0,10.849033,10849.033 +20748,2025-03-09T15:21:45.840549-07:00,2000.0,10.842337,10842.337 +20749,2025-03-09T15:21:56.694140-07:00,1959.0,10.853591,10853.591 +20750,2025-03-09T15:22:07.533109-07:00,1965.0,10.838969,10838.969 +20751,2025-03-09T15:22:18.376868-07:00,1937.0,10.843759,10843.759 +20752,2025-03-09T15:22:29.225261-07:00,1977.0,10.848393,10848.393 +20753,2025-03-09T15:22:40.068208-07:00,1920.0,10.842947,10842.947 +20754,2025-03-09T15:22:50.903867-07:00,1904.0,10.835659,10835.659 +20755,2025-03-09T15:23:01.749055-07:00,2000.0,10.845188,10845.188 +20756,2025-03-09T15:23:12.590010-07:00,1971.0,10.840955,10840.955 +20757,2025-03-09T15:23:23.442219-07:00,2002.0,10.852209,10852.209 +20758,2025-03-09T15:23:34.277026-07:00,1962.0,10.834807,10834.807 +20759,2025-03-09T15:23:45.122004-07:00,1936.0,10.844978,10844.978 +20760,2025-03-09T15:23:55.956924-07:00,2000.0,10.83492,10834.92 +20761,2025-03-09T15:24:06.805879-07:00,1939.0,10.848955,10848.955 +20762,2025-03-09T15:24:17.650269-07:00,1974.0,10.84439,10844.39 +20763,2025-03-09T15:24:28.495130-07:00,2000.0,10.844861,10844.861 +20764,2025-03-09T15:24:39.329868-07:00,1981.0,10.834738,10834.738 +20765,2025-03-09T15:24:50.173351-07:00,1957.0,10.843483,10843.483 +20766,2025-03-09T15:25:01.015926-07:00,1984.0,10.842575,10842.575 +20767,2025-03-09T15:25:11.866014-07:00,2000.0,10.850088,10850.088 +20768,2025-03-09T15:25:22.700853-07:00,1997.0,10.834839,10834.839 +20769,2025-03-09T15:25:33.550917-07:00,1957.0,10.850064,10850.064 +20770,2025-03-09T15:25:44.395901-07:00,1950.0,10.844984,10844.984 +20771,2025-03-09T15:25:55.238155-07:00,2000.0,10.842254,10842.254 +20772,2025-03-09T15:26:06.086964-07:00,1965.0,10.848809,10848.809 +20773,2025-03-09T15:26:16.928861-07:00,1993.0,10.841897,10841.897 +20774,2025-03-09T15:26:27.772861-07:00,1996.0,10.844,10844.0 +20775,2025-03-09T15:26:38.615202-07:00,1997.0,10.842341,10842.341 +20776,2025-03-09T15:26:49.454114-07:00,1965.0,10.838912,10838.912 +20777,2025-03-09T15:27:00.300973-07:00,2002.0,10.846859,10846.859 +20778,2025-03-09T15:27:11.144509-07:00,1911.0,10.843536,10843.536 +20779,2025-03-09T15:27:21.994870-07:00,2000.0,10.850361,10850.361 +20780,2025-03-09T15:27:32.836420-07:00,1931.0,10.84155,10841.55 +20781,2025-03-09T15:27:43.684139-07:00,1982.0,10.847719,10847.719 +20782,2025-03-09T15:27:54.517026-07:00,1948.0,10.832887,10832.887 +20783,2025-03-09T15:28:05.360871-07:00,2000.0,10.843845,10843.845 +20784,2025-03-09T15:28:16.209852-07:00,1968.0,10.848981,10848.981 +20785,2025-03-09T15:28:27.046588-07:00,1957.0,10.836736,10836.736 +20786,2025-03-09T15:28:37.887944-07:00,1962.0,10.841356,10841.356 +20787,2025-03-09T15:28:48.729287-07:00,1992.0,10.841343,10841.343 +20788,2025-03-09T15:28:59.581866-07:00,1975.0,10.852579,10852.579 +20789,2025-03-09T15:29:10.426257-07:00,1904.0,10.844391,10844.391 +20790,2025-03-09T15:29:21.272194-07:00,2003.0,10.845937,10845.937 +20791,2025-03-09T15:29:32.124184-07:00,2003.0,10.85199,10851.99 +20792,2025-03-09T15:29:42.959859-07:00,1947.0,10.835675,10835.675 +20793,2025-03-09T15:29:53.813984-07:00,1954.0,10.854125,10854.125 +20794,2025-03-09T15:30:04.657993-07:00,2000.0,10.844009,10844.009 +20795,2025-03-09T15:30:15.501414-07:00,1951.0,10.843421,10843.421 +20796,2025-03-09T15:30:26.354260-07:00,1970.0,10.852846,10852.846 +20797,2025-03-09T15:30:37.199119-07:00,1960.0,10.844859,10844.859 +20798,2025-03-09T15:30:48.052269-07:00,1969.0,10.85315,10853.15 +20799,2025-03-09T15:30:58.890397-07:00,1950.0,10.838128,10838.128 +20800,2025-03-09T15:31:09.736837-07:00,1918.0,10.84644,10846.44 +20801,2025-03-09T15:31:20.588085-07:00,1939.0,10.851248,10851.248 +20802,2025-03-09T15:31:31.431869-07:00,1991.0,10.843784,10843.784 +20803,2025-03-09T15:31:42.279559-07:00,1946.0,10.84769,10847.69 +20804,2025-03-09T15:31:53.120902-07:00,1997.0,10.841343,10841.343 +20805,2025-03-09T15:32:03.964844-07:00,1959.0,10.843942,10843.942 +20806,2025-03-09T15:32:14.819856-07:00,1948.0,10.855012,10855.012 +20807,2025-03-09T15:32:25.663183-07:00,1991.0,10.843327,10843.327 +20808,2025-03-09T15:32:36.506194-07:00,1976.0,10.843011,10843.011 +20809,2025-03-09T15:32:47.356343-07:00,2000.0,10.850149,10850.149 +20810,2025-03-09T15:32:58.198864-07:00,1934.0,10.842521,10842.521 +20811,2025-03-09T15:33:09.052856-07:00,1999.0,10.853992,10853.992 +20812,2025-03-09T15:33:19.895964-07:00,1995.0,10.843108,10843.108 +20813,2025-03-09T15:33:30.749861-07:00,1963.0,10.853897,10853.897 +20814,2025-03-09T15:33:41.592857-07:00,1957.0,10.842996,10842.996 +20815,2025-03-09T15:33:52.429198-07:00,1989.0,10.836341,10836.341 +20816,2025-03-09T15:34:03.280550-07:00,2000.0,10.851352,10851.352 +20817,2025-03-09T15:34:14.118982-07:00,2001.0,10.838432,10838.432 +20818,2025-03-09T15:34:24.966857-07:00,2001.0,10.847875,10847.875 +20819,2025-03-09T15:34:35.815939-07:00,1981.0,10.849082,10849.082 +20820,2025-03-09T15:34:46.663165-07:00,2001.0,10.847226,10847.226 +20821,2025-03-09T15:34:57.504173-07:00,1997.0,10.841008,10841.008 +20822,2025-03-09T15:35:08.345364-07:00,1940.0,10.841191,10841.191 +20823,2025-03-09T15:35:19.185845-07:00,1981.0,10.840481,10840.481 +20824,2025-03-09T15:35:30.035082-07:00,1997.0,10.849237,10849.237 +20825,2025-03-09T15:35:40.885196-07:00,1965.0,10.850114,10850.114 +20826,2025-03-09T15:35:51.723171-07:00,1991.0,10.837975,10837.975 +20827,2025-03-09T15:36:02.566862-07:00,1954.0,10.843691,10843.691 +20828,2025-03-09T15:36:13.414852-07:00,1955.0,10.84799,10847.99 +20829,2025-03-09T15:36:24.256872-07:00,1963.0,10.84202,10842.02 +20830,2025-03-09T15:36:35.100774-07:00,1927.0,10.843902,10843.902 +20831,2025-03-09T15:36:45.948954-07:00,1997.0,10.84818,10848.18 +20832,2025-03-09T15:36:56.791115-07:00,1969.0,10.842161,10842.161 +20833,2025-03-09T15:37:07.642863-07:00,1962.0,10.851748,10851.748 +20834,2025-03-09T15:37:18.483351-07:00,1984.0,10.840488,10840.488 +20835,2025-03-09T15:37:29.331921-07:00,1989.0,10.84857,10848.57 +20836,2025-03-09T15:37:40.170449-07:00,2000.0,10.838528,10838.528 +20837,2025-03-09T15:37:51.018349-07:00,1995.0,10.8479,10847.9 +20838,2025-03-09T15:38:01.874560-07:00,1961.0,10.856211,10856.211 +20839,2025-03-09T15:38:12.711862-07:00,1936.0,10.837302,10837.302 +20840,2025-03-09T15:38:23.564862-07:00,1993.0,10.853,10853.0 +20841,2025-03-09T15:38:34.407868-07:00,1985.0,10.843006,10843.006 +20842,2025-03-09T15:38:45.265984-07:00,1999.0,10.858116,10858.116 +20843,2025-03-09T15:38:56.113650-07:00,1971.0,10.847666,10847.666 +20844,2025-03-09T15:39:06.956339-07:00,1975.0,10.842689,10842.689 +20845,2025-03-09T15:39:17.807126-07:00,1999.0,10.850787,10850.787 +20846,2025-03-09T15:39:28.657278-07:00,1967.0,10.850152,10850.152 +20847,2025-03-09T15:39:39.506088-07:00,1951.0,10.84881,10848.81 +20848,2025-03-09T15:39:50.348862-07:00,1986.0,10.842774,10842.774 +20849,2025-03-09T15:40:01.198256-07:00,2000.0,10.849394,10849.394 +20850,2025-03-09T15:40:12.048935-07:00,1927.0,10.850679,10850.679 +20851,2025-03-09T15:40:22.898155-07:00,2001.0,10.84922,10849.22 +20852,2025-03-09T15:40:33.749844-07:00,2000.0,10.851689,10851.689 +20853,2025-03-09T15:40:44.597038-07:00,1993.0,10.847194,10847.194 +20854,2025-03-09T15:40:55.436910-07:00,2002.0,10.839872,10839.872 +20855,2025-03-09T15:41:06.290149-07:00,1951.0,10.853239,10853.239 +20856,2025-03-09T15:41:17.140086-07:00,1975.0,10.849937,10849.937 +20857,2025-03-09T15:41:27.989856-07:00,1977.0,10.84977,10849.77 +20858,2025-03-09T15:41:38.832132-07:00,1947.0,10.842276,10842.276 +20859,2025-03-09T15:41:49.678317-07:00,1984.0,10.846185,10846.185 +20860,2025-03-09T15:42:00.529251-07:00,1939.0,10.850934,10850.934 +20861,2025-03-09T15:42:11.367693-07:00,1968.0,10.838442,10838.442 +20862,2025-03-09T15:42:22.213860-07:00,1962.0,10.846167,10846.167 +20863,2025-03-09T15:42:33.070171-07:00,1987.0,10.856311,10856.311 +20864,2025-03-09T15:42:43.909180-07:00,1986.0,10.839009,10839.009 +20865,2025-03-09T15:42:54.761861-07:00,1983.0,10.852681,10852.681 +20866,2025-03-09T15:43:05.610252-07:00,1926.0,10.848391,10848.391 +20867,2025-03-09T15:43:16.459871-07:00,1919.0,10.849619,10849.619 +20868,2025-03-09T15:43:27.310151-07:00,2001.0,10.85028,10850.28 +20869,2025-03-09T15:43:38.158294-07:00,1927.0,10.848143,10848.143 +20870,2025-03-09T15:43:49.001838-07:00,1989.0,10.843544,10843.544 +20871,2025-03-09T15:43:59.849120-07:00,1969.0,10.847282,10847.282 +20872,2025-03-09T15:44:10.695866-07:00,2000.0,10.846746,10846.746 +20873,2025-03-09T15:44:21.553126-07:00,1962.0,10.85726,10857.26 +20874,2025-03-09T15:44:32.394928-07:00,1944.0,10.841802,10841.802 +20875,2025-03-09T15:44:43.250164-07:00,1970.0,10.855236,10855.236 +20876,2025-03-09T15:44:54.102315-07:00,2000.0,10.852151,10852.151 +20877,2025-03-09T15:45:04.958118-07:00,1999.0,10.855803,10855.803 +20878,2025-03-09T15:45:15.805713-07:00,1998.0,10.847595,10847.595 +20879,2025-03-09T15:45:26.648855-07:00,1959.0,10.843142,10843.142 +20880,2025-03-09T15:45:37.499855-07:00,1945.0,10.851,10851.0 +20881,2025-03-09T15:45:48.344043-07:00,2001.0,10.844188,10844.188 +20882,2025-03-09T15:45:59.199868-07:00,2000.0,10.855825,10855.825 +20883,2025-03-09T15:46:10.045863-07:00,1999.0,10.845995,10845.995 +20884,2025-03-09T15:46:20.898861-07:00,1936.0,10.852998,10852.998 +20885,2025-03-09T15:46:31.743104-07:00,1987.0,10.844243,10844.243 +20886,2025-03-09T15:46:42.592893-07:00,1961.0,10.849789,10849.789 +20887,2025-03-09T15:46:53.435538-07:00,1967.0,10.842645,10842.645 +20888,2025-03-09T15:47:04.288950-07:00,1963.0,10.853412,10853.412 +20889,2025-03-09T15:47:15.142995-07:00,2001.0,10.854045,10854.045 +20890,2025-03-09T15:47:25.991900-07:00,1975.0,10.848905,10848.905 +20891,2025-03-09T15:47:36.847889-07:00,1962.0,10.855989,10855.989 +20892,2025-03-09T15:47:47.690857-07:00,1989.0,10.842968,10842.968 +20893,2025-03-09T15:47:58.545562-07:00,2001.0,10.854705,10854.705 +20894,2025-03-09T15:48:09.397862-07:00,1927.0,10.8523,10852.3 +20895,2025-03-09T15:48:20.237091-07:00,2000.0,10.839229,10839.229 +20896,2025-03-09T15:48:31.086325-07:00,1962.0,10.849234,10849.234 +20897,2025-03-09T15:48:41.938589-07:00,1997.0,10.852264,10852.264 +20898,2025-03-09T15:48:52.790405-07:00,2000.0,10.851816,10851.816 +20899,2025-03-09T15:49:03.627468-07:00,1967.0,10.837063,10837.063 +20900,2025-03-09T15:49:14.475862-07:00,1995.0,10.848394,10848.394 +20901,2025-03-09T15:49:25.318918-07:00,1951.0,10.843056,10843.056 +20902,2025-03-09T15:49:36.162917-07:00,2002.0,10.843999,10843.999 +20903,2025-03-09T15:49:47.016991-07:00,1985.0,10.854074,10854.074 +20904,2025-03-09T15:49:57.854905-07:00,2000.0,10.837914,10837.914 +20905,2025-03-09T15:50:08.697865-07:00,2003.0,10.84296,10842.96 +20906,2025-03-09T15:50:19.545934-07:00,1969.0,10.848069,10848.069 +20907,2025-03-09T15:50:30.390089-07:00,1917.0,10.844155,10844.155 +20908,2025-03-09T15:50:41.231781-07:00,2000.0,10.841692,10841.692 +20909,2025-03-09T15:50:52.075855-07:00,1949.0,10.844074,10844.074 +20910,2025-03-09T15:50:52.100165-07:00,1949.0,0.02431,24.31 +20911,2025-03-09T15:51:02.918365-07:00,1922.0,10.8182,10818.2 +20912,2025-03-09T15:51:13.765867-07:00,2001.0,10.847502,10847.502 +20913,2025-03-09T15:51:24.615906-07:00,1963.0,10.850039,10850.039 +20914,2025-03-09T15:51:35.466862-07:00,1936.0,10.850956,10850.956 +20915,2025-03-09T15:51:46.314892-07:00,2003.0,10.84803,10848.03 +20916,2025-03-09T15:51:57.169015-07:00,2001.0,10.854123,10854.123 +20917,2025-03-09T15:52:08.014470-07:00,1998.0,10.845455,10845.455 +20918,2025-03-09T15:52:18.868165-07:00,1963.0,10.853695,10853.695 +20919,2025-03-09T15:52:29.720955-07:00,2002.0,10.85279,10852.79 +20920,2025-03-09T15:52:40.567165-07:00,1967.0,10.84621,10846.21 +20921,2025-03-09T15:52:51.405148-07:00,2001.0,10.837983,10837.983 +20922,2025-03-09T15:53:02.254864-07:00,1998.0,10.849716,10849.716 +20923,2025-03-09T15:53:13.098452-07:00,1971.0,10.843588,10843.588 +20924,2025-03-09T15:53:23.951932-07:00,1921.0,10.85348,10853.48 +20925,2025-03-09T15:53:34.788863-07:00,1975.0,10.836931,10836.931 +20926,2025-03-09T15:53:45.643865-07:00,1989.0,10.855002,10855.002 +20927,2025-03-09T15:53:56.483857-07:00,1995.0,10.839992,10839.992 +20928,2025-03-09T15:54:07.337045-07:00,1999.0,10.853188,10853.188 +20929,2025-03-09T15:54:18.189867-07:00,2003.0,10.852822,10852.822 +20930,2025-03-09T15:54:29.031013-07:00,1949.0,10.841146,10841.146 +20931,2025-03-09T15:54:39.887006-07:00,1999.0,10.855993,10855.993 +20932,2025-03-09T15:54:50.735440-07:00,1967.0,10.848434,10848.434 +20933,2025-03-09T15:55:01.585182-07:00,1957.0,10.849742,10849.742 +20934,2025-03-09T15:55:12.426186-07:00,1945.0,10.841004,10841.004 +20935,2025-03-09T15:55:23.264856-07:00,1993.0,10.83867,10838.67 +20936,2025-03-09T15:55:34.122104-07:00,1997.0,10.857248,10857.248 +20937,2025-03-09T15:55:44.959193-07:00,1991.0,10.837089,10837.089 +20938,2025-03-09T15:55:55.800507-07:00,1995.0,10.841314,10841.314 +20939,2025-03-09T15:56:06.655291-07:00,1990.0,10.854784,10854.784 +20940,2025-03-09T15:56:17.494024-07:00,1971.0,10.838733,10838.733 +20941,2025-03-09T15:56:28.346861-07:00,1991.0,10.852837,10852.837 +20942,2025-03-09T15:56:39.191868-07:00,1989.0,10.845007,10845.007 +20943,2025-03-09T15:56:50.039482-07:00,1936.0,10.847614,10847.614 +20944,2025-03-09T15:57:00.885184-07:00,1965.0,10.845702,10845.702 +20945,2025-03-09T15:57:11.735579-07:00,1965.0,10.850395,10850.395 +20946,2025-03-09T15:57:22.579898-07:00,1966.0,10.844319,10844.319 +20947,2025-03-09T15:57:33.423861-07:00,2001.0,10.843963,10843.963 +20948,2025-03-09T15:57:44.271861-07:00,1957.0,10.848,10848.0 +20949,2025-03-09T15:57:55.120864-07:00,2000.0,10.849003,10849.003 +20950,2025-03-09T15:58:05.981870-07:00,1963.0,10.861006,10861.006 +20951,2025-03-09T15:58:16.818130-07:00,1955.0,10.83626,10836.26 +20952,2025-03-09T15:58:27.672504-07:00,1908.0,10.854374,10854.374 +20953,2025-03-09T15:58:38.515604-07:00,1954.0,10.8431,10843.1 +20954,2025-03-09T15:58:49.374113-07:00,1959.0,10.858509,10858.509 +20955,2025-03-09T15:59:00.217864-07:00,1926.0,10.843751,10843.751 +20956,2025-03-09T15:59:11.072855-07:00,2004.0,10.854991,10854.991 +20957,2025-03-09T15:59:21.922947-07:00,2000.0,10.850092,10850.092 +20958,2025-03-09T15:59:32.768856-07:00,1990.0,10.845909,10845.909 +20959,2025-03-09T15:59:43.618865-07:00,1998.0,10.850009,10850.009 +20960,2025-03-09T15:59:54.469089-07:00,1927.0,10.850224,10850.224 +20961,2025-03-09T16:00:05.322867-07:00,2004.0,10.853778,10853.778 +20962,2025-03-09T16:00:16.170914-07:00,1959.0,10.848047,10848.047 +20963,2025-03-09T16:00:27.020989-07:00,1995.0,10.850075,10850.075 +20964,2025-03-09T16:00:37.876061-07:00,1998.0,10.855072,10855.072 +20965,2025-03-09T16:00:48.711031-07:00,2001.0,10.83497,10834.97 +20966,2025-03-09T16:00:59.565908-07:00,1955.0,10.854877,10854.877 +20967,2025-03-09T16:01:10.416226-07:00,1986.0,10.850318,10850.318 +20968,2025-03-09T16:01:21.261252-07:00,2000.0,10.845026,10845.026 +20969,2025-03-09T16:01:32.115307-07:00,1988.0,10.854055,10854.055 +20970,2025-03-09T16:01:42.963005-07:00,1965.0,10.847698,10847.698 +20971,2025-03-09T16:01:53.805484-07:00,1983.0,10.842479,10842.479 +20972,2025-03-09T16:02:04.647549-07:00,1929.0,10.842065,10842.065 +20973,2025-03-09T16:02:15.502794-07:00,1989.0,10.855245,10855.245 +20974,2025-03-09T16:02:26.343867-07:00,1977.0,10.841073,10841.073 +20975,2025-03-09T16:02:37.195054-07:00,2002.0,10.851187,10851.187 +20976,2025-03-09T16:02:48.044919-07:00,2004.0,10.849865,10849.865 +20977,2025-03-09T16:02:58.881008-07:00,2003.0,10.836089,10836.089 +20978,2025-03-09T16:03:09.729134-07:00,1969.0,10.848126,10848.126 +20979,2025-03-09T16:03:20.584202-07:00,2003.0,10.855068,10855.068 +20980,2025-03-09T16:03:31.427904-07:00,1984.0,10.843702,10843.702 +20981,2025-03-09T16:03:42.273855-07:00,1999.0,10.845951,10845.951 +20982,2025-03-09T16:03:53.126114-07:00,1966.0,10.852259,10852.259 +20983,2025-03-09T16:04:03.963033-07:00,2001.0,10.836919,10836.919 +20984,2025-03-09T16:04:14.822110-07:00,1998.0,10.859077,10859.077 +20985,2025-03-09T16:04:25.660974-07:00,2000.0,10.838864,10838.864 +20986,2025-03-09T16:04:36.507228-07:00,2005.0,10.846254,10846.254 +20987,2025-03-09T16:04:47.357856-07:00,1927.0,10.850628,10850.628 +20988,2025-03-09T16:04:58.196090-07:00,1950.0,10.838234,10838.234 +20989,2025-03-09T16:05:09.048940-07:00,1994.0,10.85285,10852.85 +20990,2025-03-09T16:05:19.892192-07:00,1945.0,10.843252,10843.252 +20991,2025-03-09T16:05:30.739081-07:00,1943.0,10.846889,10846.889 +20992,2025-03-09T16:05:41.591193-07:00,1943.0,10.852112,10852.112 +20993,2025-03-09T16:05:52.448392-07:00,1930.0,10.857199,10857.199 +20994,2025-03-09T16:06:03.292732-07:00,1975.0,10.84434,10844.34 +20995,2025-03-09T16:06:14.151247-07:00,1973.0,10.858515,10858.515 +20996,2025-03-09T16:06:24.991731-07:00,1991.0,10.840484,10840.484 +20997,2025-03-09T16:06:35.848682-07:00,1971.0,10.856951,10856.951 +20998,2025-03-09T16:06:46.695837-07:00,1921.0,10.847155,10847.155 +20999,2025-03-09T16:06:57.540882-07:00,1989.0,10.845045,10845.045 +21000,2025-03-09T16:07:08.383684-07:00,1931.0,10.842802,10842.802 +21001,2025-03-09T16:07:19.237998-07:00,1985.0,10.854314,10854.314 +21002,2025-03-09T16:07:30.085878-07:00,1957.0,10.84788,10847.88 +21003,2025-03-09T16:07:40.934755-07:00,1983.0,10.848877,10848.877 +21004,2025-03-09T16:07:51.777693-07:00,2005.0,10.842938,10842.938 +21005,2025-03-09T16:08:02.621672-07:00,1966.0,10.843979,10843.979 +21006,2025-03-09T16:08:13.464697-07:00,1931.0,10.843025,10843.025 +21007,2025-03-09T16:08:24.313023-07:00,1937.0,10.848326,10848.326 +21008,2025-03-09T16:08:35.172704-07:00,2002.0,10.859681,10859.681 +21009,2025-03-09T16:08:46.010804-07:00,1936.0,10.8381,10838.1 +21010,2025-03-09T16:08:56.863750-07:00,1991.0,10.852946,10852.946 +21011,2025-03-09T16:09:07.713693-07:00,2000.0,10.849943,10849.943 +21012,2025-03-09T16:09:18.555692-07:00,1956.0,10.841999,10841.999 +21013,2025-03-09T16:09:29.403687-07:00,2001.0,10.847995,10847.995 +21014,2025-03-09T16:09:40.249009-07:00,1989.0,10.845322,10845.322 +21015,2025-03-09T16:09:51.104069-07:00,2003.0,10.85506,10855.06 +21016,2025-03-09T16:10:01.946097-07:00,1952.0,10.842028,10842.028 +21017,2025-03-09T16:10:12.794690-07:00,1966.0,10.848593,10848.593 +21018,2025-03-09T16:10:23.642691-07:00,1999.0,10.848001,10848.001 +21019,2025-03-09T16:10:34.493049-07:00,1975.0,10.850358,10850.358 +21020,2025-03-09T16:10:45.350678-07:00,2001.0,10.857629,10857.629 +21021,2025-03-09T16:10:56.190745-07:00,1929.0,10.840067,10840.067 +21022,2025-03-09T16:11:07.039693-07:00,1961.0,10.848948,10848.948 +21023,2025-03-09T16:11:17.891751-07:00,2001.0,10.852058,10852.058 +21024,2025-03-09T16:11:28.730488-07:00,1966.0,10.838737,10838.737 +21025,2025-03-09T16:11:39.578726-07:00,1936.0,10.848238,10848.238 +21026,2025-03-09T16:11:50.416920-07:00,1984.0,10.838194,10838.194 +21027,2025-03-09T16:12:01.260932-07:00,2000.0,10.844012,10844.012 +21028,2025-03-09T16:12:12.109339-07:00,2002.0,10.848407,10848.407 +21029,2025-03-09T16:12:22.947826-07:00,1931.0,10.838487,10838.487 +21030,2025-03-09T16:12:33.799669-07:00,2001.0,10.851843,10851.843 +21031,2025-03-09T16:12:44.648681-07:00,2004.0,10.849012,10849.012 +21032,2025-03-09T16:12:55.487739-07:00,1957.0,10.839058,10839.058 +21033,2025-03-09T16:13:06.335687-07:00,1982.0,10.847948,10847.948 +21034,2025-03-09T16:13:17.185773-07:00,1958.0,10.850086,10850.086 +21035,2025-03-09T16:13:28.034987-07:00,1973.0,10.849214,10849.214 +21036,2025-03-09T16:13:38.883661-07:00,1985.0,10.848674,10848.674 +21037,2025-03-09T16:13:49.723687-07:00,2000.0,10.840026,10840.026 +21038,2025-03-09T16:14:00.561906-07:00,2000.0,10.838219,10838.219 +21039,2025-03-09T16:14:11.413697-07:00,1985.0,10.851791,10851.791 +21040,2025-03-09T16:14:22.248349-07:00,1990.0,10.834652,10834.652 +21041,2025-03-09T16:14:33.093475-07:00,1982.0,10.845126,10845.126 +21042,2025-03-09T16:14:43.933767-07:00,1999.0,10.840292,10840.292 +21043,2025-03-09T16:14:54.783746-07:00,1996.0,10.849979,10849.979 +21044,2025-03-09T16:15:05.627738-07:00,2003.0,10.843992,10843.992 +21045,2025-03-09T16:15:16.476005-07:00,1965.0,10.848267,10848.267 +21046,2025-03-09T16:15:27.317735-07:00,1964.0,10.84173,10841.73 +21047,2025-03-09T16:15:38.173718-07:00,1974.0,10.855983,10855.983 +21048,2025-03-09T16:15:49.017670-07:00,2002.0,10.843952,10843.952 +21049,2025-03-09T16:15:59.871005-07:00,1955.0,10.853335,10853.335 +21050,2025-03-09T16:16:10.709696-07:00,1996.0,10.838691,10838.691 +21051,2025-03-09T16:16:21.553159-07:00,1957.0,10.843463,10843.463 +21052,2025-03-09T16:16:32.407225-07:00,2000.0,10.854066,10854.066 +21053,2025-03-09T16:16:43.249682-07:00,1968.0,10.842457,10842.457 +21054,2025-03-09T16:16:54.096909-07:00,1958.0,10.847227,10847.227 +21055,2025-03-09T16:17:04.950686-07:00,1975.0,10.853777,10853.777 +21056,2025-03-09T16:17:15.790073-07:00,1935.0,10.839387,10839.387 +21057,2025-03-09T16:17:26.637692-07:00,2003.0,10.847619,10847.619 +21058,2025-03-09T16:17:37.483303-07:00,2001.0,10.845611,10845.611 +21059,2025-03-09T16:17:48.335009-07:00,1983.0,10.851706,10851.706 +21060,2025-03-09T16:17:59.178771-07:00,2006.0,10.843762,10843.762 +21061,2025-03-09T16:18:10.021687-07:00,1994.0,10.842916,10842.916 +21062,2025-03-09T16:18:20.876741-07:00,1943.0,10.855054,10855.054 +21063,2025-03-09T16:18:31.720817-07:00,1948.0,10.844076,10844.076 +21064,2025-03-09T16:18:42.566120-07:00,1936.0,10.845303,10845.303 +21065,2025-03-09T16:18:53.419114-07:00,1931.0,10.852994,10852.994 +21066,2025-03-09T16:19:04.268170-07:00,1983.0,10.849056,10849.056 +21067,2025-03-09T16:19:15.115088-07:00,1936.0,10.846918,10846.918 +21068,2025-03-09T16:19:25.952683-07:00,1932.0,10.837595,10837.595 +21069,2025-03-09T16:19:36.800694-07:00,1929.0,10.848011,10848.011 +21070,2025-03-09T16:19:47.654832-07:00,1986.0,10.854138,10854.138 +21071,2025-03-09T16:19:58.498695-07:00,2006.0,10.843863,10843.863 +21072,2025-03-09T16:20:09.349695-07:00,1963.0,10.851,10851.0 +21073,2025-03-09T16:20:20.184840-07:00,1961.0,10.835145,10835.145 +21074,2025-03-09T16:20:31.030674-07:00,1915.0,10.845834,10845.834 +21075,2025-03-09T16:20:41.871741-07:00,1993.0,10.841067,10841.067 +21076,2025-03-09T16:20:52.720692-07:00,2006.0,10.848951,10848.951 +21077,2025-03-09T16:21:03.563825-07:00,1927.0,10.843133,10843.133 +21078,2025-03-09T16:21:14.406682-07:00,1997.0,10.842857,10842.857 +21079,2025-03-09T16:21:25.261695-07:00,1984.0,10.855013,10855.013 +21080,2025-03-09T16:21:36.104691-07:00,1949.0,10.842996,10842.996 +21081,2025-03-09T16:21:46.957019-07:00,1945.0,10.852328,10852.328 +21082,2025-03-09T16:21:57.802687-07:00,1987.0,10.845668,10845.668 +21083,2025-03-09T16:22:08.639989-07:00,1986.0,10.837302,10837.302 +21084,2025-03-09T16:22:19.478811-07:00,1951.0,10.838822,10838.822 +21085,2025-03-09T16:22:30.329692-07:00,2005.0,10.850881,10850.881 +21086,2025-03-09T16:22:41.163941-07:00,1999.0,10.834249,10834.249 +21087,2025-03-09T16:22:52.004938-07:00,2000.0,10.840997,10840.997 +21088,2025-03-09T16:23:02.847691-07:00,2000.0,10.842753,10842.753 +21089,2025-03-09T16:23:13.699877-07:00,1968.0,10.852186,10852.186 +21090,2025-03-09T16:23:24.539684-07:00,1943.0,10.839807,10839.807 +21091,2025-03-09T16:23:35.389676-07:00,1968.0,10.849992,10849.992 +21092,2025-03-09T16:23:46.229052-07:00,2000.0,10.839376,10839.376 +21093,2025-03-09T16:23:57.080200-07:00,1931.0,10.851148,10851.148 +21094,2025-03-09T16:24:07.924745-07:00,1920.0,10.844545,10844.545 +21095,2025-03-09T16:24:18.776841-07:00,1950.0,10.852096,10852.096 +21096,2025-03-09T16:24:29.616691-07:00,2001.0,10.83985,10839.85 +21097,2025-03-09T16:24:40.465000-07:00,1936.0,10.848309,10848.309 +21098,2025-03-09T16:24:51.303247-07:00,2005.0,10.838247,10838.247 +21099,2025-03-09T16:25:02.152058-07:00,1930.0,10.848811,10848.811 +21100,2025-03-09T16:25:12.996153-07:00,1991.0,10.844095,10844.095 +21101,2025-03-09T16:25:23.831915-07:00,1926.0,10.835762,10835.762 +21102,2025-03-09T16:25:34.679924-07:00,1950.0,10.848009,10848.009 +21103,2025-03-09T16:25:45.534690-07:00,1950.0,10.854766,10854.766 +21104,2025-03-09T16:25:56.375994-07:00,2000.0,10.841304,10841.304 +21105,2025-03-09T16:26:07.216245-07:00,1937.0,10.840251,10840.251 +21106,2025-03-09T16:26:18.063749-07:00,1955.0,10.847504,10847.504 +21107,2025-03-09T16:26:28.900929-07:00,1930.0,10.83718,10837.18 +21108,2025-03-09T16:26:39.750044-07:00,2000.0,10.849115,10849.115 +21109,2025-03-09T16:26:50.593005-07:00,1967.0,10.842961,10842.961 +21110,2025-03-09T16:27:01.440945-07:00,2000.0,10.84794,10847.94 +21111,2025-03-09T16:27:12.285924-07:00,1999.0,10.844979,10844.979 +21112,2025-03-09T16:27:23.130682-07:00,1965.0,10.844758,10844.758 +21113,2025-03-09T16:27:33.966043-07:00,1979.0,10.835361,10835.361 +21114,2025-03-09T16:27:44.810733-07:00,1965.0,10.84469,10844.69 +21115,2025-03-09T16:27:55.660747-07:00,2002.0,10.850014,10850.014 +21116,2025-03-09T16:28:06.500675-07:00,1979.0,10.839928,10839.928 +21117,2025-03-09T16:28:17.343928-07:00,2001.0,10.843253,10843.253 +21118,2025-03-09T16:28:28.192227-07:00,1936.0,10.848299,10848.299 +21119,2025-03-09T16:28:39.041412-07:00,1979.0,10.849185,10849.185 +21120,2025-03-09T16:28:49.879958-07:00,1974.0,10.838546,10838.546 +21121,2025-03-09T16:29:00.720691-07:00,1968.0,10.840733,10840.733 +21122,2025-03-09T16:29:11.562746-07:00,1950.0,10.842055,10842.055 +21123,2025-03-09T16:29:22.403755-07:00,1989.0,10.841009,10841.009 +21124,2025-03-09T16:29:33.254074-07:00,2004.0,10.850319,10850.319 +21125,2025-03-09T16:29:44.096696-07:00,1949.0,10.842622,10842.622 +21126,2025-03-09T16:29:54.937936-07:00,1972.0,10.84124,10841.24 +21127,2025-03-09T16:30:05.780054-07:00,1936.0,10.842118,10842.118 +21128,2025-03-09T16:30:16.623696-07:00,1914.0,10.843642,10843.642 +21129,2025-03-09T16:30:27.470690-07:00,1994.0,10.846994,10846.994 +21130,2025-03-09T16:30:38.320678-07:00,1968.0,10.849988,10849.988 +21131,2025-03-09T16:30:49.163663-07:00,1967.0,10.842985,10842.985 +21132,2025-03-09T16:31:00.006261-07:00,1955.0,10.842598,10842.598 +21133,2025-03-09T16:31:10.839721-07:00,1999.0,10.83346,10833.46 +21134,2025-03-09T16:31:21.693284-07:00,1982.0,10.853563,10853.563 +21135,2025-03-09T16:31:32.537684-07:00,1923.0,10.8444,10844.4 +21136,2025-03-09T16:31:43.375686-07:00,1943.0,10.838002,10838.002 +21137,2025-03-09T16:31:54.223018-07:00,1919.0,10.847332,10847.332 +21138,2025-03-09T16:32:05.058739-07:00,1927.0,10.835721,10835.721 +21139,2025-03-09T16:32:15.905690-07:00,1933.0,10.846951,10846.951 +21140,2025-03-09T16:32:26.746668-07:00,1999.0,10.840978,10840.978 +21141,2025-03-09T16:32:37.595528-07:00,2007.0,10.84886,10848.86 +21142,2025-03-09T16:32:48.433053-07:00,2000.0,10.837525,10837.525 +21143,2025-03-09T16:32:59.276055-07:00,1968.0,10.843002,10843.002 +21144,2025-03-09T16:33:10.117016-07:00,1962.0,10.840961,10840.961 +21145,2025-03-09T16:33:20.956129-07:00,1968.0,10.839113,10839.113 +21146,2025-03-09T16:33:31.812370-07:00,2000.0,10.856241,10856.241 +21147,2025-03-09T16:33:42.652655-07:00,2005.0,10.840285,10840.285 +21148,2025-03-09T16:33:53.496841-07:00,2005.0,10.844186,10844.186 +21149,2025-03-09T16:34:04.334669-07:00,1997.0,10.837828,10837.828 +21150,2025-03-09T16:34:15.180689-07:00,1968.0,10.84602,10846.02 +21151,2025-03-09T16:34:26.015718-07:00,1995.0,10.835029,10835.029 +21152,2025-03-09T16:34:36.858689-07:00,1991.0,10.842971,10842.971 +21153,2025-03-09T16:34:47.708688-07:00,2004.0,10.849999,10849.999 +21154,2025-03-09T16:34:58.550902-07:00,1929.0,10.842214,10842.214 +21155,2025-03-09T16:35:09.389171-07:00,1966.0,10.838269,10838.269 +21156,2025-03-09T16:35:20.230069-07:00,2003.0,10.840898,10840.898 +21157,2025-03-09T16:35:31.085019-07:00,1962.0,10.85495,10854.95 +21158,2025-03-09T16:35:41.923192-07:00,1948.0,10.838173,10838.173 +21159,2025-03-09T16:35:52.769820-07:00,1934.0,10.846628,10846.628 +21160,2025-03-09T16:36:03.617220-07:00,1949.0,10.8474,10847.4 +21161,2025-03-09T16:36:14.452824-07:00,1971.0,10.835604,10835.604 +21162,2025-03-09T16:36:25.291692-07:00,1945.0,10.838868,10838.868 +21163,2025-03-09T16:36:36.148737-07:00,1959.0,10.857045,10857.045 +21164,2025-03-09T16:36:46.991233-07:00,2006.0,10.842496,10842.496 +21165,2025-03-09T16:36:57.824679-07:00,1974.0,10.833446,10833.446 +21166,2025-03-09T16:37:08.670682-07:00,1998.0,10.846003,10846.003 +21167,2025-03-09T16:37:19.503667-07:00,2005.0,10.832985,10832.985 +21168,2025-03-09T16:37:30.348384-07:00,1968.0,10.844717,10844.717 +21169,2025-03-09T16:37:41.191856-07:00,1943.0,10.843472,10843.472 +21170,2025-03-09T16:37:52.042742-07:00,1957.0,10.850886,10850.886 +21171,2025-03-09T16:38:02.873077-07:00,1967.0,10.830335,10830.335 +21172,2025-03-09T16:38:13.721576-07:00,1983.0,10.848499,10848.499 +21173,2025-03-09T16:38:24.560866-07:00,2000.0,10.83929,10839.29 +21174,2025-03-09T16:38:35.405873-07:00,2000.0,10.845007,10845.007 +21175,2025-03-09T16:38:46.246745-07:00,2000.0,10.840872,10840.872 +21176,2025-03-09T16:38:57.092949-07:00,1995.0,10.846204,10846.204 +21177,2025-03-09T16:39:07.942998-07:00,1963.0,10.850049,10850.049 +21178,2025-03-09T16:39:18.791011-07:00,1989.0,10.848013,10848.013 +21179,2025-03-09T16:39:29.638668-07:00,1965.0,10.847657,10847.657 +21180,2025-03-09T16:39:40.488741-07:00,1932.0,10.850073,10850.073 +21181,2025-03-09T16:39:51.336903-07:00,1955.0,10.848162,10848.162 +21182,2025-03-09T16:40:02.183825-07:00,2000.0,10.846922,10846.922 +21183,2025-03-09T16:40:13.023164-07:00,1940.0,10.839339,10839.339 +21184,2025-03-09T16:40:23.874009-07:00,1995.0,10.850845,10850.845 +21185,2025-03-09T16:40:34.708296-07:00,1911.0,10.834287,10834.287 +21186,2025-03-09T16:40:45.557653-07:00,1997.0,10.849357,10849.357 +21187,2025-03-09T16:40:56.394692-07:00,1984.0,10.837039,10837.039 +21188,2025-03-09T16:41:07.239883-07:00,1951.0,10.845191,10845.191 +21189,2025-03-09T16:41:18.076033-07:00,1957.0,10.83615,10836.15 +21190,2025-03-09T16:41:28.921161-07:00,1999.0,10.845128,10845.128 +21191,2025-03-09T16:41:39.761813-07:00,1920.0,10.840652,10840.652 +21192,2025-03-09T16:41:50.600314-07:00,2000.0,10.838501,10838.501 +21193,2025-03-09T16:42:01.452963-07:00,1975.0,10.852649,10852.649 +21194,2025-03-09T16:42:12.297930-07:00,1922.0,10.844967,10844.967 +21195,2025-03-09T16:42:23.140753-07:00,1985.0,10.842823,10842.823 +21196,2025-03-09T16:42:33.987892-07:00,1947.0,10.847139,10847.139 +21197,2025-03-09T16:42:44.830816-07:00,2000.0,10.842924,10842.924 +21198,2025-03-09T16:42:55.684162-07:00,2000.0,10.853346,10853.346 +21199,2025-03-09T16:43:06.535788-07:00,1997.0,10.851626,10851.626 +21200,2025-03-09T16:43:17.378453-07:00,1981.0,10.842665,10842.665 +21201,2025-03-09T16:43:28.222681-07:00,1973.0,10.844228,10844.228 +21202,2025-03-09T16:43:38.676969-07:00,1961.0,10.454288,10454.288 +21203,2025-03-09T16:43:39.076688-07:00,1961.0,0.399719,399.719 +21204,2025-03-09T16:43:49.917793-07:00,2000.0,10.841105,10841.105 +21205,2025-03-09T16:44:00.757014-07:00,1945.0,10.839221,10839.221 +21206,2025-03-09T16:44:11.612222-07:00,1998.0,10.855208,10855.208 +21207,2025-03-09T16:44:22.447687-07:00,1980.0,10.835465,10835.465 +21208,2025-03-09T16:44:33.286688-07:00,1997.0,10.839001,10839.001 +21209,2025-03-09T16:44:44.132740-07:00,1936.0,10.846052,10846.052 +21210,2025-03-09T16:44:54.983693-07:00,1998.0,10.850953,10850.953 +21211,2025-03-09T16:45:05.822116-07:00,1994.0,10.838423,10838.423 +21212,2025-03-09T16:45:16.678063-07:00,2000.0,10.855947,10855.947 +21213,2025-03-09T16:45:27.522856-07:00,1910.0,10.844793,10844.793 +21214,2025-03-09T16:45:38.369692-07:00,2000.0,10.846836,10846.836 +21215,2025-03-09T16:45:49.209433-07:00,1965.0,10.839741,10839.741 +21216,2025-03-09T16:46:00.059688-07:00,1914.0,10.850255,10850.255 +21217,2025-03-09T16:46:10.908033-07:00,1978.0,10.848345,10848.345 +21218,2025-03-09T16:46:21.761069-07:00,1920.0,10.853036,10853.036 +21219,2025-03-09T16:46:32.598681-07:00,1921.0,10.837612,10837.612 +21220,2025-03-09T16:46:43.450950-07:00,1999.0,10.852269,10852.269 +21221,2025-03-09T16:46:54.285690-07:00,1988.0,10.83474,10834.74 +21222,2025-03-09T16:47:05.138875-07:00,1994.0,10.853185,10853.185 +21223,2025-03-09T16:47:15.979953-07:00,1999.0,10.841078,10841.078 +21224,2025-03-09T16:47:26.832068-07:00,1927.0,10.852115,10852.115 +21225,2025-03-09T16:47:37.675964-07:00,1986.0,10.843896,10843.896 +21226,2025-03-09T16:47:48.522660-07:00,1997.0,10.846696,10846.696 +21227,2025-03-09T16:47:59.366848-07:00,1951.0,10.844188,10844.188 +21228,2025-03-09T16:48:10.214951-07:00,1963.0,10.848103,10848.103 +21229,2025-03-09T16:48:21.066691-07:00,1986.0,10.85174,10851.74 +21230,2025-03-09T16:48:31.910945-07:00,1987.0,10.844254,10844.254 +21231,2025-03-09T16:48:42.750707-07:00,1959.0,10.839762,10839.762 +21232,2025-03-09T16:48:53.598684-07:00,1991.0,10.847977,10847.977 +21233,2025-03-09T16:49:04.452936-07:00,1965.0,10.854252,10854.252 +21234,2025-03-09T16:49:15.296814-07:00,1990.0,10.843878,10843.878 +21235,2025-03-09T16:49:26.139835-07:00,1984.0,10.843021,10843.021 +21236,2025-03-09T16:49:36.983990-07:00,1995.0,10.844155,10844.155 +21237,2025-03-09T16:49:47.832099-07:00,1998.0,10.848109,10848.109 +21238,2025-03-09T16:49:58.685893-07:00,1941.0,10.853794,10853.794 +21239,2025-03-09T16:50:09.525745-07:00,1927.0,10.839852,10839.852 +21240,2025-03-09T16:50:20.382687-07:00,1931.0,10.856942,10856.942 +21241,2025-03-09T16:50:31.221729-07:00,1977.0,10.839042,10839.042 +21242,2025-03-09T16:50:42.060008-07:00,1998.0,10.838279,10838.279 +21243,2025-03-09T16:50:52.907027-07:00,1983.0,10.847019,10847.019 +21244,2025-03-09T16:51:03.748669-07:00,1968.0,10.841642,10841.642 +21245,2025-03-09T16:51:14.598692-07:00,1955.0,10.850023,10850.023 +21246,2025-03-09T16:51:25.447832-07:00,1971.0,10.84914,10849.14 +21247,2025-03-09T16:51:36.294694-07:00,1954.0,10.846862,10846.862 +21248,2025-03-09T16:51:47.134121-07:00,1919.0,10.839427,10839.427 +21249,2025-03-09T16:51:57.977338-07:00,1956.0,10.843217,10843.217 +21250,2025-03-09T16:52:08.827866-07:00,1995.0,10.850528,10850.528 +21251,2025-03-09T16:52:19.677832-07:00,1982.0,10.849966,10849.966 +21252,2025-03-09T16:52:30.529691-07:00,1999.0,10.851859,10851.859 +21253,2025-03-09T16:52:41.384144-07:00,1918.0,10.854453,10854.453 +21254,2025-03-09T16:52:52.232685-07:00,1964.0,10.848541,10848.541 +21255,2025-03-09T16:53:03.083777-07:00,1984.0,10.851092,10851.092 +21256,2025-03-09T16:53:13.936693-07:00,1926.0,10.852916,10852.916 +21257,2025-03-09T16:53:24.791058-07:00,1955.0,10.854365,10854.365 +21258,2025-03-09T16:53:35.644941-07:00,1995.0,10.853883,10853.883 +21259,2025-03-09T16:53:46.490031-07:00,1951.0,10.84509,10845.09 +21260,2025-03-09T16:53:57.338187-07:00,1985.0,10.848156,10848.156 +21261,2025-03-09T16:54:08.181682-07:00,1995.0,10.843495,10843.495 +21262,2025-03-09T16:54:19.030055-07:00,1969.0,10.848373,10848.373 +21263,2025-03-09T16:54:29.873684-07:00,1954.0,10.843629,10843.629 +21264,2025-03-09T16:54:40.724828-07:00,1963.0,10.851144,10851.144 +21265,2025-03-09T16:54:51.580692-07:00,1947.0,10.855864,10855.864 +21266,2025-03-09T16:55:02.434688-07:00,1915.0,10.853996,10853.996 +21267,2025-03-09T16:55:13.275355-07:00,1914.0,10.840667,10840.667 +21268,2025-03-09T16:55:24.124011-07:00,1919.0,10.848656,10848.656 +21269,2025-03-09T16:55:34.976280-07:00,1937.0,10.852269,10852.269 +21270,2025-03-09T16:55:45.817742-07:00,1946.0,10.841462,10841.462 +21271,2025-03-09T16:55:56.668946-07:00,1934.0,10.851204,10851.204 +21272,2025-03-09T16:56:07.516728-07:00,1984.0,10.847782,10847.782 +21273,2025-03-09T16:56:18.359936-07:00,1916.0,10.843208,10843.208 +21274,2025-03-09T16:56:29.214788-07:00,1967.0,10.854852,10854.852 +21275,2025-03-09T16:56:40.061021-07:00,1985.0,10.846233,10846.233 +21276,2025-03-09T16:56:50.913062-07:00,1998.0,10.852041,10852.041 +21277,2025-03-09T16:57:01.766974-07:00,1983.0,10.853912,10853.912 +21278,2025-03-09T16:57:12.615334-07:00,1983.0,10.84836,10848.36 +21279,2025-03-09T16:57:23.475021-07:00,1995.0,10.859687,10859.687 +21280,2025-03-09T16:57:34.325225-07:00,1914.0,10.850204,10850.204 +21281,2025-03-09T16:57:45.167687-07:00,1999.0,10.842462,10842.462 +21282,2025-03-09T16:57:56.021825-07:00,1953.0,10.854138,10854.138 +21283,2025-03-09T16:58:06.858691-07:00,1962.0,10.836866,10836.866 +21284,2025-03-09T16:58:17.700909-07:00,1959.0,10.842218,10842.218 +21285,2025-03-09T16:58:28.556840-07:00,1953.0,10.855931,10855.931 +21286,2025-03-09T16:58:39.406810-07:00,1945.0,10.84997,10849.97 +21287,2025-03-09T16:58:50.251084-07:00,1963.0,10.844274,10844.274 +21288,2025-03-09T16:59:01.105006-07:00,1978.0,10.853922,10853.922 +21289,2025-03-09T16:59:11.943964-07:00,1993.0,10.838958,10838.958 +21290,2025-03-09T16:59:22.797712-07:00,1988.0,10.853748,10853.748 +21291,2025-03-09T16:59:33.637672-07:00,1957.0,10.83996,10839.96 +21292,2025-03-09T16:59:44.492912-07:00,1997.0,10.85524,10855.24 +21293,2025-03-09T16:59:55.341062-07:00,1947.0,10.84815,10848.15 +21294,2025-03-09T17:00:06.184029-07:00,1957.0,10.842967,10842.967 +21295,2025-03-09T17:00:17.039187-07:00,1997.0,10.855158,10855.158 +21296,2025-03-09T17:00:27.887693-07:00,1991.0,10.848506,10848.506 +21297,2025-03-09T17:00:38.737684-07:00,1957.0,10.849991,10849.991 +21298,2025-03-09T17:00:49.579669-07:00,1979.0,10.841985,10841.985 +21299,2025-03-09T17:01:00.438686-07:00,1922.0,10.859017,10859.017 +21300,2025-03-09T17:01:11.282686-07:00,1941.0,10.844,10844.0 +21301,2025-03-09T17:01:22.132753-07:00,1989.0,10.850067,10850.067 +21302,2025-03-09T17:01:32.975744-07:00,1922.0,10.842991,10842.991 +21303,2025-03-09T17:01:43.834693-07:00,1995.0,10.858949,10858.949 +21304,2025-03-09T17:01:54.685684-07:00,1996.0,10.850991,10850.991 +21305,2025-03-09T17:02:05.532021-07:00,1982.0,10.846337,10846.337 +21306,2025-03-09T17:02:16.384003-07:00,1925.0,10.851982,10851.982 +21307,2025-03-09T17:02:27.241269-07:00,1993.0,10.857266,10857.266 +21308,2025-03-09T17:02:38.095731-07:00,1983.0,10.854462,10854.462 +21309,2025-03-09T17:02:48.939715-07:00,1997.0,10.843984,10843.984 +21310,2025-03-09T17:02:59.800331-07:00,1967.0,10.860616,10860.616 +21311,2025-03-09T17:03:10.653972-07:00,1904.0,10.853641,10853.641 +21312,2025-03-09T17:03:21.492942-07:00,1954.0,10.83897,10838.97 +21313,2025-03-09T17:03:32.340840-07:00,1993.0,10.847898,10847.898 +21314,2025-03-09T17:03:43.201734-07:00,1935.0,10.860894,10860.894 +21315,2025-03-09T17:03:54.054753-07:00,1987.0,10.853019,10853.019 +21316,2025-03-09T17:04:04.899027-07:00,1991.0,10.844274,10844.274 +21317,2025-03-09T17:04:15.751695-07:00,1974.0,10.852668,10852.668 +21318,2025-03-09T17:04:26.595204-07:00,1952.0,10.843509,10843.509 +21319,2025-03-09T17:04:37.441958-07:00,1919.0,10.846754,10846.754 +21320,2025-03-09T17:04:48.297052-07:00,1962.0,10.855094,10855.094 +21321,2025-03-09T17:04:59.147917-07:00,1996.0,10.850865,10850.865 +21322,2025-03-09T17:05:09.988689-07:00,1995.0,10.840772,10840.772 +21323,2025-03-09T17:05:20.844690-07:00,1937.0,10.856001,10856.001 +21324,2025-03-09T17:05:31.697727-07:00,1952.0,10.853037,10853.037 +21325,2025-03-09T17:05:42.582953-07:00,1997.0,10.885226,10885.226 +21326,2025-03-09T17:05:53.441106-07:00,1995.0,10.858153,10858.153 +21327,2025-03-09T17:06:04.287916-07:00,1941.0,10.84681,10846.81 +21328,2025-03-09T17:06:15.144856-07:00,1906.0,10.85694,10856.94 +21329,2025-03-09T17:06:25.986054-07:00,1993.0,10.841198,10841.198 +21330,2025-03-09T17:06:36.833091-07:00,1989.0,10.847037,10847.037 +21331,2025-03-09T17:06:47.687059-07:00,1919.0,10.853968,10853.968 +21332,2025-03-09T17:06:58.530567-07:00,1950.0,10.843508,10843.508 +21333,2025-03-09T17:07:09.381113-07:00,1997.0,10.850546,10850.546 +21334,2025-03-09T17:07:20.234268-07:00,1986.0,10.853155,10853.155 +21335,2025-03-09T17:07:31.087795-07:00,1984.0,10.853527,10853.527 +21336,2025-03-09T17:07:41.948244-07:00,1962.0,10.860449,10860.449 +21337,2025-03-09T17:07:52.795025-07:00,1985.0,10.846781,10846.781 +21338,2025-03-09T17:08:03.641168-07:00,1991.0,10.846143,10846.143 +21339,2025-03-09T17:08:14.500807-07:00,1968.0,10.859639,10859.639 +21340,2025-03-09T17:08:25.354806-07:00,1983.0,10.853999,10853.999 +21341,2025-03-09T17:08:36.204237-07:00,1933.0,10.849431,10849.431 +21342,2025-03-09T17:08:47.059079-07:00,1985.0,10.854842,10854.842 +21343,2025-03-09T17:08:57.913799-07:00,1991.0,10.85472,10854.72 +21344,2025-03-09T17:09:08.768844-07:00,1986.0,10.855045,10855.045 +21345,2025-03-09T17:09:19.625782-07:00,1949.0,10.856938,10856.938 +21346,2025-03-09T17:09:30.470284-07:00,1990.0,10.844502,10844.502 +21347,2025-03-09T17:09:41.331898-07:00,1986.0,10.861614,10861.614 +21348,2025-03-09T17:09:52.180025-07:00,1951.0,10.848127,10848.127 +21349,2025-03-09T17:10:03.029171-07:00,1978.0,10.849146,10849.146 +21350,2025-03-09T17:10:13.890815-07:00,1904.0,10.861644,10861.644 +21351,2025-03-09T17:10:24.742038-07:00,1942.0,10.851223,10851.223 +21352,2025-03-09T17:10:35.592875-07:00,1974.0,10.850837,10850.837 +21353,2025-03-09T17:10:46.451027-07:00,1952.0,10.858152,10858.152 +21354,2025-03-09T17:10:57.301808-07:00,1911.0,10.850781,10850.781 +21355,2025-03-09T17:11:08.167163-07:00,1935.0,10.865355,10865.355 +21356,2025-03-09T17:11:19.025872-07:00,1970.0,10.858709,10858.709 +21357,2025-03-09T17:11:29.885798-07:00,1941.0,10.859926,10859.926 +21358,2025-03-09T17:11:40.744804-07:00,1907.0,10.859006,10859.006 +21359,2025-03-09T17:11:51.598810-07:00,1904.0,10.854006,10854.006 +21360,2025-03-09T17:12:02.449810-07:00,1979.0,10.851,10851.0 +21361,2025-03-09T17:12:13.314487-07:00,1925.0,10.864677,10864.677 +21362,2025-03-09T17:12:24.165850-07:00,1968.0,10.851363,10851.363 +21363,2025-03-09T17:12:35.019113-07:00,1978.0,10.853263,10853.263 +21364,2025-03-09T17:12:45.874085-07:00,1984.0,10.854972,10854.972 +21365,2025-03-09T17:12:56.735457-07:00,1985.0,10.861372,10861.372 +21366,2025-03-09T17:13:07.589522-07:00,1917.0,10.854065,10854.065 +21367,2025-03-09T17:13:18.449008-07:00,1984.0,10.859486,10859.486 +21368,2025-03-09T17:13:29.303140-07:00,1936.0,10.854132,10854.132 +21369,2025-03-09T17:13:40.154109-07:00,1937.0,10.850969,10850.969 +21370,2025-03-09T17:13:51.012107-07:00,1946.0,10.857998,10857.998 +21371,2025-03-09T17:14:01.867111-07:00,1932.0,10.855004,10855.004 +21372,2025-03-09T17:14:12.727078-07:00,1968.0,10.859967,10859.967 +21373,2025-03-09T17:14:23.582816-07:00,1955.0,10.855738,10855.738 +21374,2025-03-09T17:14:34.442792-07:00,1934.0,10.859976,10859.976 +21375,2025-03-09T17:14:45.298749-07:00,1976.0,10.855957,10855.957 +21376,2025-03-09T17:14:56.161805-07:00,1974.0,10.863056,10863.056 +21377,2025-03-09T17:15:07.022217-07:00,1967.0,10.860412,10860.412 +21378,2025-03-09T17:15:17.887782-07:00,1883.0,10.865565,10865.565 +21379,2025-03-09T17:15:28.748791-07:00,1975.0,10.861009,10861.009 +21380,2025-03-09T17:15:39.602243-07:00,1971.0,10.853452,10853.452 +21381,2025-03-09T17:15:50.459113-07:00,1903.0,10.85687,10856.87 +21382,2025-03-09T17:16:01.328858-07:00,1909.0,10.869745,10869.745 +21383,2025-03-09T17:16:12.180973-07:00,1936.0,10.852115,10852.115 +21384,2025-03-09T17:16:23.044169-07:00,1938.0,10.863196,10863.196 +21385,2025-03-09T17:16:33.896059-07:00,1959.0,10.85189,10851.89 +21386,2025-03-09T17:16:44.747483-07:00,1965.0,10.851424,10851.424 +21387,2025-03-09T17:16:55.606053-07:00,1922.0,10.85857,10858.57 +21388,2025-03-09T17:17:06.456041-07:00,1977.0,10.849988,10849.988 +21389,2025-03-09T17:17:17.304124-07:00,1969.0,10.848083,10848.083 +21390,2025-03-09T17:17:28.159838-07:00,1921.0,10.855714,10855.714 +21391,2025-03-09T17:17:39.026193-07:00,1937.0,10.866355,10866.355 +21392,2025-03-09T17:17:49.885196-07:00,1973.0,10.859003,10859.003 +21393,2025-03-09T17:18:00.736892-07:00,1955.0,10.851696,10851.696 +21394,2025-03-09T17:18:11.595960-07:00,1972.0,10.859068,10859.068 +21395,2025-03-09T17:18:22.460937-07:00,1926.0,10.864977,10864.977 +21396,2025-03-09T17:18:33.309080-07:00,1909.0,10.848143,10848.143 +21397,2025-03-09T17:18:44.169803-07:00,1957.0,10.860723,10860.723 +21398,2025-03-09T17:18:55.023138-07:00,1892.0,10.853335,10853.335 +21399,2025-03-09T17:19:05.882111-07:00,1890.0,10.858973,10858.973 +21400,2025-03-09T17:19:16.730742-07:00,1957.0,10.848631,10848.631 +21401,2025-03-09T17:19:27.592856-07:00,1948.0,10.862114,10862.114 +21402,2025-03-09T17:19:38.453519-07:00,1877.0,10.860663,10860.663 +21403,2025-03-09T17:19:49.307986-07:00,1920.0,10.854467,10854.467 +21404,2025-03-09T17:20:00.178812-07:00,1968.0,10.870826,10870.826 +21405,2025-03-09T17:20:11.032140-07:00,1936.0,10.853328,10853.328 +21406,2025-03-09T17:20:21.897054-07:00,1933.0,10.864914,10864.914 +21407,2025-03-09T17:20:32.749807-07:00,1877.0,10.852753,10852.753 +21408,2025-03-09T17:20:43.604795-07:00,1927.0,10.854988,10854.988 +21409,2025-03-09T17:20:54.468146-07:00,1967.0,10.863351,10863.351 +21410,2025-03-09T17:21:05.322861-07:00,1919.0,10.854715,10854.715 +21411,2025-03-09T17:21:16.181800-07:00,1936.0,10.858939,10858.939 +21412,2025-03-09T17:21:27.030439-07:00,1938.0,10.848639,10848.639 +21413,2025-03-09T17:21:37.886021-07:00,1957.0,10.855582,10855.582 +21414,2025-03-09T17:21:48.739912-07:00,1923.0,10.853891,10853.891 +21415,2025-03-09T17:21:59.604785-07:00,1883.0,10.864873,10864.873 +21416,2025-03-09T17:22:10.458808-07:00,1956.0,10.854023,10854.023 +21417,2025-03-09T17:22:21.313845-07:00,1883.0,10.855037,10855.037 +21418,2025-03-09T17:22:32.170807-07:00,1904.0,10.856962,10856.962 +21419,2025-03-09T17:22:43.031016-07:00,1936.0,10.860209,10860.209 +21420,2025-03-09T17:22:53.889506-07:00,1905.0,10.85849,10858.49 +21421,2025-03-09T17:23:04.738316-07:00,1913.0,10.84881,10848.81 +21422,2025-03-09T17:23:15.593005-07:00,1871.0,10.854689,10854.689 +21423,2025-03-09T17:23:26.457195-07:00,1923.0,10.86419,10864.19 +21424,2025-03-09T17:23:37.313193-07:00,1957.0,10.855998,10855.998 +21425,2025-03-09T17:23:48.173082-07:00,1878.0,10.859889,10859.889 +21426,2025-03-09T17:23:59.022144-07:00,1923.0,10.849062,10849.062 +21427,2025-03-09T17:24:09.883014-07:00,1936.0,10.86087,10860.87 +21428,2025-03-09T17:24:20.741047-07:00,1948.0,10.858033,10858.033 +21429,2025-03-09T17:24:31.602169-07:00,1954.0,10.861122,10861.122 +21430,2025-03-09T17:24:42.464950-07:00,1874.0,10.862781,10862.781 +21431,2025-03-09T17:24:53.322808-07:00,1878.0,10.857858,10857.858 +21432,2025-03-09T17:25:04.187253-07:00,1904.0,10.864445,10864.445 +21433,2025-03-09T17:25:15.037261-07:00,1956.0,10.850008,10850.008 +21434,2025-03-09T17:25:25.898742-07:00,1911.0,10.861481,10861.481 +21435,2025-03-09T17:25:36.758122-07:00,1955.0,10.85938,10859.38 +21436,2025-03-09T17:25:47.624445-07:00,1908.0,10.866323,10866.323 +21437,2025-03-09T17:25:58.481241-07:00,1921.0,10.856796,10856.796 +21438,2025-03-09T17:26:09.338808-07:00,1902.0,10.857567,10857.567 +21439,2025-03-09T17:26:20.186801-07:00,1941.0,10.847993,10847.993 +21440,2025-03-09T17:26:31.050807-07:00,1952.0,10.864006,10864.006 +21441,2025-03-09T17:26:41.902595-07:00,1858.0,10.851788,10851.788 +21442,2025-03-09T17:26:52.765796-07:00,1904.0,10.863201,10863.201 +21443,2025-03-09T17:27:03.615935-07:00,1904.0,10.850139,10850.139 +21444,2025-03-09T17:27:14.470800-07:00,1899.0,10.854865,10854.865 +21445,2025-03-09T17:27:25.326040-07:00,1895.0,10.85524,10855.24 +21446,2025-03-09T17:27:36.180063-07:00,1915.0,10.854023,10854.023 +21447,2025-03-09T17:27:47.032890-07:00,1945.0,10.852827,10852.827 +21448,2025-03-09T17:27:57.883040-07:00,1887.0,10.85015,10850.15 +21449,2025-03-09T17:28:08.741799-07:00,1941.0,10.858759,10858.759 +21450,2025-03-09T17:28:19.586818-07:00,1929.0,10.845019,10845.019 +21451,2025-03-09T17:28:30.447802-07:00,1917.0,10.860984,10860.984 +21452,2025-03-09T17:28:41.306863-07:00,1943.0,10.859061,10859.061 +21453,2025-03-09T17:28:52.160809-07:00,1943.0,10.853946,10853.946 +21454,2025-03-09T17:29:03.026811-07:00,1858.0,10.866002,10866.002 +21455,2025-03-09T17:29:13.882799-07:00,1903.0,10.855988,10855.988 +21456,2025-03-09T17:29:24.741031-07:00,1879.0,10.858232,10858.232 +21457,2025-03-09T17:29:35.590803-07:00,1941.0,10.849772,10849.772 +21458,2025-03-09T17:29:46.450804-07:00,1879.0,10.860001,10860.001 +21459,2025-03-09T17:29:57.311770-07:00,1873.0,10.860966,10860.966 +21460,2025-03-09T17:30:08.176159-07:00,1903.0,10.864389,10864.389 +21461,2025-03-09T17:30:19.037912-07:00,1919.0,10.861753,10861.753 +21462,2025-03-09T17:30:29.895780-07:00,1936.0,10.857868,10857.868 +21463,2025-03-09T17:30:40.752053-07:00,1887.0,10.856273,10856.273 +21464,2025-03-09T17:30:51.600027-07:00,1899.0,10.847974,10847.974 +21465,2025-03-09T17:31:02.452499-07:00,1911.0,10.852472,10852.472 +21466,2025-03-09T17:31:13.317431-07:00,1936.0,10.864932,10864.932 +21467,2025-03-09T17:31:24.169890-07:00,1889.0,10.852459,10852.459 +21468,2025-03-09T17:31:35.023802-07:00,1904.0,10.853912,10853.912 +21469,2025-03-09T17:31:45.881931-07:00,1857.0,10.858129,10858.129 +21470,2025-03-09T17:31:56.744159-07:00,1936.0,10.862228,10862.228 +21471,2025-03-09T17:32:07.593777-07:00,1936.0,10.849618,10849.618 +21472,2025-03-09T17:32:18.455054-07:00,1932.0,10.861277,10861.277 +21473,2025-03-09T17:32:29.305805-07:00,1925.0,10.850751,10850.751 +21474,2025-03-09T17:32:40.162677-07:00,1925.0,10.856872,10856.872 +21475,2025-03-09T17:32:51.010966-07:00,1831.0,10.848289,10848.289 +21476,2025-03-09T17:33:01.866804-07:00,1911.0,10.855838,10855.838 +21477,2025-03-09T17:33:12.719402-07:00,1931.0,10.852598,10852.598 +21478,2025-03-09T17:33:23.575810-07:00,1898.0,10.856408,10856.408 +21479,2025-03-09T17:33:34.442782-07:00,1887.0,10.866972,10866.972 +21480,2025-03-09T17:33:45.297111-07:00,1878.0,10.854329,10854.329 +21481,2025-03-09T17:33:56.162142-07:00,1886.0,10.865031,10865.031 +21482,2025-03-09T17:34:07.020152-07:00,1842.0,10.85801,10858.01 +21483,2025-03-09T17:34:17.875135-07:00,1840.0,10.854983,10854.983 +21484,2025-03-09T17:34:28.724817-07:00,1875.0,10.849682,10849.682 +21485,2025-03-09T17:34:39.584125-07:00,1886.0,10.859308,10859.308 +21486,2025-03-09T17:34:50.445307-07:00,1924.0,10.861182,10861.182 +21487,2025-03-09T17:35:01.305811-07:00,1923.0,10.860504,10860.504 +21488,2025-03-09T17:35:12.154809-07:00,1898.0,10.848998,10848.998 +21489,2025-03-09T17:35:23.012064-07:00,1925.0,10.857255,10857.255 +21490,2025-03-09T17:35:33.879305-07:00,1913.0,10.867241,10867.241 +21491,2025-03-09T17:35:44.738954-07:00,1911.0,10.859649,10859.649 +21492,2025-03-09T17:35:55.594117-07:00,1910.0,10.855163,10855.163 +21493,2025-03-09T17:36:06.454002-07:00,1923.0,10.859885,10859.885 +21494,2025-03-09T17:36:17.319454-07:00,1920.0,10.865452,10865.452 +21495,2025-03-09T17:36:28.173476-07:00,1840.0,10.854022,10854.022 +21496,2025-03-09T17:36:39.035008-07:00,1917.0,10.861532,10861.532 +21497,2025-03-09T17:36:49.886054-07:00,1868.0,10.851046,10851.046 +21498,2025-03-09T17:37:00.749188-07:00,1909.0,10.863134,10863.134 +21499,2025-03-09T17:37:11.605324-07:00,1869.0,10.856136,10856.136 +21500,2025-03-09T17:37:22.469295-07:00,1882.0,10.863971,10863.971 +21501,2025-03-09T17:37:33.317870-07:00,1905.0,10.848575,10848.575 +21502,2025-03-09T17:37:44.179042-07:00,1911.0,10.861172,10861.172 +21503,2025-03-09T17:37:55.032811-07:00,1830.0,10.853769,10853.769 +21504,2025-03-09T17:38:05.887907-07:00,1916.0,10.855096,10855.096 +21505,2025-03-09T17:38:16.742027-07:00,1893.0,10.85412,10854.12 +21506,2025-03-09T17:38:27.592208-07:00,1903.0,10.850181,10850.181 +21507,2025-03-09T17:38:38.439113-07:00,1872.0,10.846905,10846.905 +21508,2025-03-09T17:38:49.292325-07:00,1873.0,10.853212,10853.212 +21509,2025-03-09T17:39:00.140111-07:00,1910.0,10.847786,10847.786 +21510,2025-03-09T17:39:21.845576-07:00,1903.0,21.705465,21705.465 +21511,2025-03-09T17:39:32.694812-07:00,1908.0,10.849236,10849.236 +21512,2025-03-09T17:39:43.554437-07:00,1872.0,10.859625,10859.625 +21513,2025-03-09T17:39:54.409069-07:00,1905.0,10.854632,10854.632 +21514,2025-03-09T17:40:05.263769-07:00,1871.0,10.8547,10854.7 +21515,2025-03-09T17:40:16.116700-07:00,1901.0,10.852931,10852.931 +21516,2025-03-09T17:40:26.973599-07:00,1849.0,10.856899,10856.899 +21517,2025-03-09T17:40:37.834285-07:00,1839.0,10.860686,10860.686 +21518,2025-03-09T17:40:48.687961-07:00,1867.0,10.853676,10853.676 +21519,2025-03-09T17:40:59.537119-07:00,1872.0,10.849158,10849.158 +21520,2025-03-09T17:41:10.386860-07:00,1904.0,10.849741,10849.741 +21521,2025-03-09T17:41:21.244841-07:00,1840.0,10.857981,10857.981 +21522,2025-03-09T17:41:32.094805-07:00,1902.0,10.849964,10849.964 +21523,2025-03-09T17:41:42.941803-07:00,1823.0,10.846998,10846.998 +21524,2025-03-09T17:41:53.796011-07:00,1872.0,10.854208,10854.208 +21525,2025-03-09T17:42:04.646808-07:00,1846.0,10.850797,10850.797 +21526,2025-03-09T17:42:15.492804-07:00,1844.0,10.845996,10845.996 +21527,2025-03-09T17:42:26.352791-07:00,1853.0,10.859987,10859.987 +21528,2025-03-09T17:42:37.203807-07:00,1890.0,10.851016,10851.016 +21529,2025-03-09T17:42:48.057800-07:00,1844.0,10.853993,10853.993 +21530,2025-03-09T17:42:58.918187-07:00,1897.0,10.860387,10860.387 +21531,2025-03-09T17:43:09.773790-07:00,1894.0,10.855603,10855.603 +21532,2025-03-09T17:43:20.617803-07:00,1850.0,10.844013,10844.013 +21533,2025-03-09T17:43:31.475012-07:00,1872.0,10.857209,10857.209 +21534,2025-03-09T17:43:42.337952-07:00,1881.0,10.86294,10862.94 +21535,2025-03-09T17:44:04.040159-07:00,1847.0,21.702207,21702.207 +21536,2025-03-09T17:44:14.892807-07:00,1844.0,10.852648,10852.648 +21537,2025-03-09T17:44:25.743194-07:00,1871.0,10.850387,10850.387 +21538,2025-03-09T17:44:36.603940-07:00,1829.0,10.860746,10860.746 +21539,2025-03-09T17:44:47.456803-07:00,1821.0,10.852863,10852.863 +21540,2025-03-09T17:44:58.310807-07:00,1845.0,10.854004,10854.004 +21541,2025-03-09T17:45:09.161971-07:00,1883.0,10.851164,10851.164 +21542,2025-03-09T17:45:20.020938-07:00,1779.0,10.858967,10858.967 +21543,2025-03-09T17:45:30.883830-07:00,1875.0,10.862892,10862.892 +21544,2025-03-09T17:45:41.737801-07:00,1874.0,10.853971,10853.971 +21545,2025-03-09T17:45:52.590048-07:00,1872.0,10.852247,10852.247 +21546,2025-03-09T17:46:03.449934-07:00,1879.0,10.859886,10859.886 +21547,2025-03-09T17:46:14.305012-07:00,1841.0,10.855078,10855.078 +21548,2025-03-09T17:46:25.152806-07:00,1828.0,10.847794,10847.794 +21549,2025-03-09T17:46:36.014806-07:00,1873.0,10.862,10862.0 +21550,2025-03-09T17:46:46.866807-07:00,1779.0,10.852001,10852.001 +21551,2025-03-09T17:46:57.717803-07:00,1875.0,10.850996,10850.996 +21552,2025-03-09T17:47:08.559805-07:00,1829.0,10.842002,10842.002 +21553,2025-03-09T17:47:19.414408-07:00,1838.0,10.854603,10854.603 +21554,2025-03-09T17:47:30.274858-07:00,1815.0,10.86045,10860.45 +21555,2025-03-09T17:47:41.129043-07:00,1835.0,10.854185,10854.185 +21556,2025-03-09T17:47:51.982809-07:00,1873.0,10.853766,10853.766 +21557,2025-03-09T17:48:02.833805-07:00,1815.0,10.850996,10850.996 +21558,2025-03-09T17:48:13.698034-07:00,1831.0,10.864229,10864.229 +21559,2025-03-09T17:48:24.550875-07:00,1785.0,10.852841,10852.841 +21560,2025-03-09T17:48:35.400803-07:00,1818.0,10.849928,10849.928 +21561,2025-03-09T17:48:46.253811-07:00,1791.0,10.853008,10853.008 +21562,2025-03-09T17:48:57.108809-07:00,1842.0,10.854998,10854.998 +21563,2025-03-09T17:49:07.960061-07:00,1867.0,10.851252,10851.252 +21564,2025-03-09T17:49:18.814382-07:00,1868.0,10.854321,10854.321 +21565,2025-03-09T17:49:29.672014-07:00,1840.0,10.857632,10857.632 +21566,2025-03-09T17:49:40.519223-07:00,1855.0,10.847209,10847.209 +21567,2025-03-09T17:49:51.380003-07:00,1857.0,10.86078,10860.78 +21568,2025-03-09T17:50:02.226807-07:00,1847.0,10.846804,10846.804 +21569,2025-03-09T17:50:13.079803-07:00,1823.0,10.852996,10852.996 +21570,2025-03-09T17:50:23.938808-07:00,1772.0,10.859005,10859.005 +21571,2025-03-09T17:50:34.783292-07:00,1815.0,10.844484,10844.484 +21572,2025-03-09T17:50:45.639806-07:00,1829.0,10.856514,10856.514 +21573,2025-03-09T17:50:56.487115-07:00,1780.0,10.847309,10847.309 +21574,2025-03-09T17:51:07.348060-07:00,1782.0,10.860945,10860.945 +21575,2025-03-09T17:51:18.198115-07:00,1859.0,10.850055,10850.055 +21576,2025-03-09T17:51:29.055226-07:00,1815.0,10.857111,10857.111 +21577,2025-03-09T17:51:39.915348-07:00,1846.0,10.860122,10860.122 +21578,2025-03-09T17:51:50.764018-07:00,1808.0,10.84867,10848.67 +21579,2025-03-09T17:52:01.615106-07:00,1840.0,10.851088,10851.088 +21580,2025-03-09T17:52:12.477805-07:00,1857.0,10.862699,10862.699 +21581,2025-03-09T17:52:23.332953-07:00,1818.0,10.855148,10855.148 +21582,2025-03-09T17:52:34.181995-07:00,1775.0,10.849042,10849.042 +21583,2025-03-09T17:52:45.032095-07:00,1847.0,10.8501,10850.1 +21584,2025-03-09T17:52:55.891814-07:00,1856.0,10.859719,10859.719 +21585,2025-03-09T17:53:06.740272-07:00,1811.0,10.848458,10848.458 +21586,2025-03-09T17:53:17.594138-07:00,1795.0,10.853866,10853.866 +21587,2025-03-09T17:53:28.455036-07:00,1842.0,10.860898,10860.898 +21588,2025-03-09T17:53:39.307514-07:00,1823.0,10.852478,10852.478 +21589,2025-03-09T17:53:50.162170-07:00,1851.0,10.854656,10854.656 +21590,2025-03-09T17:54:01.010157-07:00,1837.0,10.847987,10847.987 +21591,2025-03-09T17:54:11.868441-07:00,1765.0,10.858284,10858.284 +21592,2025-03-09T17:54:22.717260-07:00,1777.0,10.848819,10848.819 +21593,2025-03-09T17:54:33.582038-07:00,1798.0,10.864778,10864.778 +21594,2025-03-09T17:54:44.430391-07:00,1817.0,10.848353,10848.353 +21595,2025-03-09T17:54:55.291804-07:00,1766.0,10.861413,10861.413 +21596,2025-03-09T17:55:06.147414-07:00,1750.0,10.85561,10855.61 +21597,2025-03-09T17:55:17.001072-07:00,1815.0,10.853658,10853.658 +21598,2025-03-09T17:55:27.855011-07:00,1808.0,10.853939,10853.939 +21599,2025-03-09T17:55:38.711960-07:00,1825.0,10.856949,10856.949 +21600,2025-03-09T17:55:49.574041-07:00,1836.0,10.862081,10862.081 +21601,2025-03-09T17:56:00.432053-07:00,1842.0,10.858012,10858.012 +21602,2025-03-09T17:56:11.287801-07:00,1792.0,10.855748,10855.748 +21603,2025-03-09T17:56:22.147803-07:00,1841.0,10.860002,10860.002 +21604,2025-03-09T17:56:32.998061-07:00,1776.0,10.850258,10850.258 +21605,2025-03-09T17:56:43.851794-07:00,1840.0,10.853733,10853.733 +21606,2025-03-09T17:56:54.705805-07:00,1799.0,10.854011,10854.011 +21607,2025-03-09T17:57:05.572794-07:00,1797.0,10.866989,10866.989 +21608,2025-03-09T17:57:16.425798-07:00,1840.0,10.853004,10853.004 +21609,2025-03-09T17:57:27.280804-07:00,1838.0,10.855006,10855.006 +21610,2025-03-09T17:57:38.123201-07:00,1840.0,10.842397,10842.397 +21611,2025-03-09T17:57:48.974786-07:00,1835.0,10.851585,10851.585 +21612,2025-03-09T17:57:59.828466-07:00,1839.0,10.85368,10853.68 +21613,2025-03-09T17:58:10.681811-07:00,1757.0,10.853345,10853.345 +21614,2025-03-09T17:58:21.529803-07:00,1818.0,10.847992,10847.992 +21615,2025-03-09T17:58:32.386034-07:00,1746.0,10.856231,10856.231 +21616,2025-03-09T17:58:43.233152-07:00,1827.0,10.847118,10847.118 +21617,2025-03-09T17:58:54.084125-07:00,1781.0,10.850973,10850.973 +21618,2025-03-09T17:59:04.937479-07:00,1807.0,10.853354,10853.354 +21619,2025-03-09T17:59:15.791136-07:00,1834.0,10.853657,10853.657 +21620,2025-03-09T17:59:26.643167-07:00,1808.0,10.852031,10852.031 +21621,2025-03-09T17:59:37.500107-07:00,1808.0,10.85694,10856.94 +21622,2025-03-09T17:59:48.356140-07:00,1803.0,10.856033,10856.033 +21623,2025-03-09T17:59:59.207339-07:00,1831.0,10.851199,10851.199 +21624,2025-03-09T18:00:10.060241-07:00,1827.0,10.852902,10852.902 +21625,2025-03-09T18:00:20.918136-07:00,1817.0,10.857895,10857.895 +21626,2025-03-09T18:00:31.779831-07:00,1797.0,10.861695,10861.695 +21627,2025-03-09T18:00:42.628260-07:00,1824.0,10.848429,10848.429 +21628,2025-03-09T18:00:53.483135-07:00,1823.0,10.854875,10854.875 +21629,2025-03-09T18:01:04.325830-07:00,1778.0,10.842695,10842.695 +21630,2025-03-09T18:01:15.180851-07:00,1821.0,10.855021,10855.021 +21631,2025-03-09T18:01:26.033897-07:00,1804.0,10.853046,10853.046 +21632,2025-03-09T18:01:36.888844-07:00,1809.0,10.854947,10854.947 +21633,2025-03-09T18:01:47.755165-07:00,1741.0,10.866321,10866.321 +21634,2025-03-09T18:01:58.609282-07:00,1795.0,10.854117,10854.117 +21635,2025-03-09T18:02:09.452056-07:00,1742.0,10.842774,10842.774 +21636,2025-03-09T18:02:20.306840-07:00,1789.0,10.854784,10854.784 +21637,2025-03-09T18:02:31.162096-07:00,1805.0,10.855256,10855.256 +21638,2025-03-09T18:02:42.014974-07:00,1812.0,10.852878,10852.878 +21639,2025-03-09T18:02:52.869976-07:00,1776.0,10.855002,10855.002 +21640,2025-03-09T18:03:03.724267-07:00,1815.0,10.854291,10854.291 +21641,2025-03-09T18:03:14.571983-07:00,1808.0,10.847716,10847.716 +21642,2025-03-09T18:03:25.433844-07:00,1733.0,10.861861,10861.861 +21643,2025-03-09T18:03:36.277367-07:00,1807.0,10.843523,10843.523 +21644,2025-03-09T18:03:47.131870-07:00,1787.0,10.854503,10854.503 +21645,2025-03-09T18:03:57.985206-07:00,1782.0,10.853336,10853.336 +21646,2025-03-09T18:04:08.839807-07:00,1783.0,10.854601,10854.601 +21647,2025-03-09T18:04:19.695960-07:00,1750.0,10.856153,10856.153 +21648,2025-03-09T18:04:30.545860-07:00,1763.0,10.8499,10849.9 +21649,2025-03-09T18:04:41.401809-07:00,1801.0,10.855949,10855.949 +21650,2025-03-09T18:04:52.248109-07:00,1808.0,10.8463,10846.3 +21651,2025-03-09T18:05:03.101799-07:00,1759.0,10.85369,10853.69 +21652,2025-03-09T18:05:13.951956-07:00,1748.0,10.850157,10850.157 +21653,2025-03-09T18:05:24.805811-07:00,1802.0,10.853855,10853.855 +21654,2025-03-09T18:05:35.653297-07:00,1805.0,10.847486,10847.486 +21655,2025-03-09T18:05:46.538107-07:00,1793.0,10.88481,10884.81 +21656,2025-03-09T18:05:57.388690-07:00,1781.0,10.850583,10850.583 +21657,2025-03-09T18:06:08.236829-07:00,1799.0,10.848139,10848.139 +21658,2025-03-09T18:06:19.095030-07:00,1802.0,10.858201,10858.201 +21659,2025-03-09T18:06:29.941604-07:00,1708.0,10.846574,10846.574 +21660,2025-03-09T18:06:40.794165-07:00,1717.0,10.852561,10852.561 +21661,2025-03-09T18:06:51.649552-07:00,1775.0,10.855387,10855.387 +21662,2025-03-09T18:07:02.505626-07:00,1802.0,10.856074,10856.074 +21663,2025-03-09T18:07:13.364547-07:00,1797.0,10.858921,10858.921 +21664,2025-03-09T18:07:24.210022-07:00,1746.0,10.845475,10845.475 +21665,2025-03-09T18:07:35.064626-07:00,1770.0,10.854604,10854.604 +21666,2025-03-09T18:07:45.922657-07:00,1760.0,10.858031,10858.031 +21667,2025-03-09T18:07:56.763429-07:00,1797.0,10.840772,10840.772 +21668,2025-03-09T18:08:07.614481-07:00,1761.0,10.851052,10851.052 +21669,2025-03-09T18:08:18.461310-07:00,1789.0,10.846829,10846.829 +21670,2025-03-09T18:08:29.311337-07:00,1723.0,10.850027,10850.027 +21671,2025-03-09T18:08:40.166661-07:00,1785.0,10.855324,10855.324 +21672,2025-03-09T18:08:51.023419-07:00,1758.0,10.856758,10856.758 +21673,2025-03-09T18:09:01.868387-07:00,1797.0,10.844968,10844.968 +21674,2025-03-09T18:09:12.723340-07:00,1785.0,10.854953,10854.953 +21675,2025-03-09T18:09:23.565728-07:00,1703.0,10.842388,10842.388 +21676,2025-03-09T18:09:34.408482-07:00,1733.0,10.842754,10842.754 +21677,2025-03-09T18:09:45.264184-07:00,1745.0,10.855702,10855.702 +21678,2025-03-09T18:09:56.117814-07:00,1773.0,10.85363,10853.63 +21679,2025-03-09T18:10:06.973546-07:00,1712.0,10.855732,10855.732 +21680,2025-03-09T18:10:17.820642-07:00,1761.0,10.847096,10847.096 +21681,2025-03-09T18:10:28.668519-07:00,1791.0,10.847877,10847.877 +21682,2025-03-09T18:10:39.519600-07:00,1729.0,10.851081,10851.081 +21683,2025-03-09T18:10:50.375872-07:00,1740.0,10.856272,10856.272 +21684,2025-03-09T18:11:01.223338-07:00,1729.0,10.847466,10847.466 +21685,2025-03-09T18:11:12.083335-07:00,1763.0,10.859997,10859.997 +21686,2025-03-09T18:11:22.935261-07:00,1782.0,10.851926,10851.926 +21687,2025-03-09T18:11:33.785321-07:00,1779.0,10.85006,10850.06 +21688,2025-03-09T18:11:44.640342-07:00,1787.0,10.855021,10855.021 +21689,2025-03-09T18:11:55.498340-07:00,1748.0,10.857998,10857.998 +21690,2025-03-09T18:12:06.348388-07:00,1783.0,10.850048,10850.048 +21691,2025-03-09T18:12:17.203924-07:00,1786.0,10.855536,10855.536 +21692,2025-03-09T18:12:28.053825-07:00,1744.0,10.849901,10849.901 +21693,2025-03-09T18:12:38.912344-07:00,1783.0,10.858519,10858.519 +21694,2025-03-09T18:12:49.758933-07:00,1777.0,10.846589,10846.589 +21695,2025-03-09T18:13:00.616511-07:00,1788.0,10.857578,10857.578 +21696,2025-03-09T18:13:11.463703-07:00,1753.0,10.847192,10847.192 +21697,2025-03-09T18:13:22.307073-07:00,1765.0,10.84337,10843.37 +21698,2025-03-09T18:13:33.164239-07:00,1787.0,10.857166,10857.166 +21699,2025-03-09T18:13:44.015898-07:00,1782.0,10.851659,10851.659 +21700,2025-03-09T18:13:54.865474-07:00,1713.0,10.849576,10849.576 +21701,2025-03-09T18:14:05.714104-07:00,1742.0,10.84863,10848.63 +21702,2025-03-09T18:14:16.563466-07:00,1693.0,10.849362,10849.362 +21703,2025-03-09T18:14:27.412330-07:00,1724.0,10.848864,10848.864 +21704,2025-03-09T18:14:38.259395-07:00,1695.0,10.847065,10847.065 +21705,2025-03-09T18:14:49.115227-07:00,1730.0,10.855832,10855.832 +21706,2025-03-09T18:14:59.957398-07:00,1718.0,10.842171,10842.171 +21707,2025-03-09T18:15:10.818340-07:00,1735.0,10.860942,10860.942 +21708,2025-03-09T18:15:21.658043-07:00,1776.0,10.839703,10839.703 +21709,2025-03-09T18:15:32.506095-07:00,1764.0,10.848052,10848.052 +21710,2025-03-09T18:15:43.359480-07:00,1738.0,10.853385,10853.385 +21711,2025-03-09T18:15:54.210419-07:00,1778.0,10.850939,10850.939 +21712,2025-03-09T18:16:05.063326-07:00,1738.0,10.852907,10852.907 +21713,2025-03-09T18:16:15.920481-07:00,1729.0,10.857155,10857.155 +21714,2025-03-09T18:16:26.768340-07:00,1781.0,10.847859,10847.859 +21715,2025-03-09T18:16:37.619341-07:00,1763.0,10.851001,10851.001 +21716,2025-03-09T18:16:48.474318-07:00,1728.0,10.854977,10854.977 +21717,2025-03-09T18:16:59.326573-07:00,1740.0,10.852255,10852.255 +21718,2025-03-09T18:17:10.172915-07:00,1699.0,10.846342,10846.342 +21719,2025-03-09T18:17:21.022753-07:00,1693.0,10.849838,10849.838 +21720,2025-03-09T18:17:31.868696-07:00,1778.0,10.845943,10845.943 +21721,2025-03-09T18:17:42.711165-07:00,1728.0,10.842469,10842.469 +21722,2025-03-09T18:17:53.561336-07:00,1779.0,10.850171,10850.171 +21723,2025-03-09T18:18:04.422490-07:00,1776.0,10.861154,10861.154 +21724,2025-03-09T18:18:15.268337-07:00,1763.0,10.845847,10845.847 +21725,2025-03-09T18:18:26.114644-07:00,1779.0,10.846307,10846.307 +21726,2025-03-09T18:18:36.971340-07:00,1776.0,10.856696,10856.696 +21727,2025-03-09T18:18:47.815325-07:00,1729.0,10.843985,10843.985 +21728,2025-03-09T18:18:58.665340-07:00,1776.0,10.850015,10850.015 +21729,2025-03-09T18:19:09.508365-07:00,1727.0,10.843025,10843.025 +21730,2025-03-09T18:19:20.367646-07:00,1731.0,10.859281,10859.281 +21731,2025-03-09T18:19:31.218342-07:00,1766.0,10.850696,10850.696 +21732,2025-03-09T18:19:42.061535-07:00,1735.0,10.843193,10843.193 +21733,2025-03-09T18:19:52.909381-07:00,1774.0,10.847846,10847.846 +21734,2025-03-09T18:20:03.763351-07:00,1751.0,10.85397,10853.97 +21735,2025-03-09T18:20:14.616909-07:00,1767.0,10.853558,10853.558 +21736,2025-03-09T18:20:25.466335-07:00,1776.0,10.849426,10849.426 +21737,2025-03-09T18:20:36.315657-07:00,1774.0,10.849322,10849.322 +21738,2025-03-09T18:20:47.169339-07:00,1749.0,10.853682,10853.682 +21739,2025-03-09T18:20:58.014542-07:00,1729.0,10.845203,10845.203 +21740,2025-03-09T18:21:08.867878-07:00,1697.0,10.853336,10853.336 +21741,2025-03-09T18:21:19.717341-07:00,1717.0,10.849463,10849.463 +21742,2025-03-09T18:21:30.565685-07:00,1686.0,10.848344,10848.344 +21743,2025-03-09T18:21:41.418691-07:00,1771.0,10.853006,10853.006 +21744,2025-03-09T18:21:52.267482-07:00,1771.0,10.848791,10848.791 +21745,2025-03-09T18:22:03.124343-07:00,1687.0,10.856861,10856.861 +21746,2025-03-09T18:22:13.970816-07:00,1766.0,10.846473,10846.473 +21747,2025-03-09T18:22:24.812592-07:00,1755.0,10.841776,10841.776 +21748,2025-03-09T18:22:35.668578-07:00,1681.0,10.855986,10855.986 +21749,2025-03-09T18:22:46.519337-07:00,1709.0,10.850759,10850.759 +21750,2025-03-09T18:22:57.366667-07:00,1676.0,10.84733,10847.33 +21751,2025-03-09T18:23:08.207572-07:00,1761.0,10.840905,10840.905 +21752,2025-03-09T18:23:19.061566-07:00,1744.0,10.853994,10853.994 +21753,2025-03-09T18:23:29.908679-07:00,1762.0,10.847113,10847.113 +21754,2025-03-09T18:23:40.749620-07:00,1771.0,10.840941,10840.941 +21755,2025-03-09T18:23:51.611954-07:00,1731.0,10.862334,10862.334 +21756,2025-03-09T18:24:02.458383-07:00,1744.0,10.846429,10846.429 +21757,2025-03-09T18:24:13.297334-07:00,1726.0,10.838951,10838.951 +21758,2025-03-09T18:24:24.146518-07:00,1764.0,10.849184,10849.184 +21759,2025-03-09T18:24:34.995913-07:00,1764.0,10.849395,10849.395 +21760,2025-03-09T18:24:45.852346-07:00,1725.0,10.856433,10856.433 +21761,2025-03-09T18:24:56.702748-07:00,1767.0,10.850402,10850.402 +21762,2025-03-09T18:25:07.559592-07:00,1739.0,10.856844,10856.844 +21763,2025-03-09T18:25:18.406693-07:00,1680.0,10.847101,10847.101 +21764,2025-03-09T18:25:29.263664-07:00,1699.0,10.856971,10856.971 +21765,2025-03-09T18:25:40.115740-07:00,1769.0,10.852076,10852.076 +21766,2025-03-09T18:25:50.969659-07:00,1709.0,10.853919,10853.919 +21767,2025-03-09T18:26:01.824628-07:00,1757.0,10.854969,10854.969 +21768,2025-03-09T18:26:12.674805-07:00,1761.0,10.850177,10850.177 +21769,2025-03-09T18:26:23.531988-07:00,1759.0,10.857183,10857.183 +21770,2025-03-09T18:26:34.382367-07:00,1761.0,10.850379,10850.379 +21771,2025-03-09T18:26:45.236724-07:00,1690.0,10.854357,10854.357 +21772,2025-03-09T18:26:56.086627-07:00,1749.0,10.849903,10849.903 +21773,2025-03-09T18:27:06.935035-07:00,1731.0,10.848408,10848.408 +21774,2025-03-09T18:27:17.781336-07:00,1695.0,10.846301,10846.301 +21775,2025-03-09T18:27:28.636656-07:00,1678.0,10.85532,10855.32 +21776,2025-03-09T18:27:39.490341-07:00,1755.0,10.853685,10853.685 +21777,2025-03-09T18:28:01.196557-07:00,1667.0,21.706216,21706.216 +21778,2025-03-09T18:28:12.053340-07:00,1761.0,10.856783,10856.783 +21779,2025-03-09T18:28:22.895339-07:00,1753.0,10.841999,10841.999 +21780,2025-03-09T18:28:33.754317-07:00,1699.0,10.858978,10858.978 +21781,2025-03-09T18:28:44.601340-07:00,1759.0,10.847023,10847.023 +21782,2025-03-09T18:28:55.451587-07:00,1707.0,10.850247,10850.247 +21783,2025-03-09T18:29:06.308442-07:00,1750.0,10.856855,10856.855 +21784,2025-03-09T18:29:17.171595-07:00,1719.0,10.863153,10863.153 +21785,2025-03-09T18:29:28.024036-07:00,1714.0,10.852441,10852.441 +21786,2025-03-09T18:29:38.879340-07:00,1735.0,10.855304,10855.304 +21787,2025-03-09T18:29:49.729433-07:00,1727.0,10.850093,10850.093 +21788,2025-03-09T18:30:00.586730-07:00,1757.0,10.857297,10857.297 +21789,2025-03-09T18:30:11.442347-07:00,1719.0,10.855617,10855.617 +21790,2025-03-09T18:30:22.291335-07:00,1757.0,10.848988,10848.988 +21791,2025-03-09T18:30:33.147579-07:00,1759.0,10.856244,10856.244 +21792,2025-03-09T18:30:44.005336-07:00,1758.0,10.857757,10857.757 +21793,2025-03-09T18:30:54.859336-07:00,1687.0,10.854,10854.0 +21794,2025-03-09T18:31:05.714330-07:00,1717.0,10.854994,10854.994 +21795,2025-03-09T18:31:16.565339-07:00,1739.0,10.851009,10851.009 +21796,2025-03-09T18:31:27.419613-07:00,1713.0,10.854274,10854.274 +21797,2025-03-09T18:31:38.270807-07:00,1753.0,10.851194,10851.194 +21798,2025-03-09T18:31:49.130381-07:00,1713.0,10.859574,10859.574 +21799,2025-03-09T18:31:59.982539-07:00,1724.0,10.852158,10852.158 +21800,2025-03-09T18:32:10.837561-07:00,1706.0,10.855022,10855.022 +21801,2025-03-09T18:32:21.681579-07:00,1744.0,10.844018,10844.018 +21802,2025-03-09T18:32:32.540342-07:00,1751.0,10.858763,10858.763 +21803,2025-03-09T18:32:43.389343-07:00,1744.0,10.849001,10849.001 +21804,2025-03-09T18:32:54.235694-07:00,1744.0,10.846351,10846.351 +21805,2025-03-09T18:33:05.087556-07:00,1753.0,10.851862,10851.862 +21806,2025-03-09T18:33:15.938591-07:00,1712.0,10.851035,10851.035 +21807,2025-03-09T18:33:26.795786-07:00,1665.0,10.857195,10857.195 +21808,2025-03-09T18:33:37.643387-07:00,1655.0,10.847601,10847.601 +21809,2025-03-09T18:33:48.504600-07:00,1687.0,10.861213,10861.213 +21810,2025-03-09T18:33:59.354383-07:00,1733.0,10.849783,10849.783 +21811,2025-03-09T18:34:10.213994-07:00,1751.0,10.859611,10859.611 +21812,2025-03-09T18:34:21.058420-07:00,1744.0,10.844426,10844.426 +21813,2025-03-09T18:34:31.915385-07:00,1680.0,10.856965,10856.965 +21814,2025-03-09T18:34:42.768476-07:00,1750.0,10.853091,10853.091 +21815,2025-03-09T18:34:53.614336-07:00,1685.0,10.84586,10845.86 +21816,2025-03-09T18:35:04.477353-07:00,1680.0,10.863017,10863.017 +21817,2025-03-09T18:35:15.329735-07:00,1671.0,10.852382,10852.382 +21818,2025-03-09T18:35:26.175652-07:00,1662.0,10.845917,10845.917 +21819,2025-03-09T18:35:37.031590-07:00,1709.0,10.855938,10855.938 +21820,2025-03-09T18:35:47.883486-07:00,1691.0,10.851896,10851.896 +21821,2025-03-09T18:35:58.742581-07:00,1743.0,10.859095,10859.095 +21822,2025-03-09T18:36:09.595781-07:00,1735.0,10.8532,10853.2 +21823,2025-03-09T18:36:20.450338-07:00,1733.0,10.854557,10854.557 +21824,2025-03-09T18:36:31.304336-07:00,1712.0,10.853998,10853.998 +21825,2025-03-09T18:36:42.147476-07:00,1721.0,10.84314,10843.14 +21826,2025-03-09T18:36:53.003336-07:00,1739.0,10.85586,10855.86 +21827,2025-03-09T18:37:03.854551-07:00,1735.0,10.851215,10851.215 +21828,2025-03-09T18:37:14.710342-07:00,1744.0,10.855791,10855.791 +21829,2025-03-09T18:37:25.560350-07:00,1744.0,10.850008,10850.008 +21830,2025-03-09T18:37:36.413480-07:00,1658.0,10.85313,10853.13 +21831,2025-03-09T18:37:47.260833-07:00,1695.0,10.847353,10847.353 +21832,2025-03-09T18:37:58.105782-07:00,1743.0,10.844949,10844.949 +21833,2025-03-09T18:38:08.961315-07:00,1710.0,10.855533,10855.533 +21834,2025-03-09T18:38:19.802574-07:00,1691.0,10.841259,10841.259 +21835,2025-03-09T18:38:30.658334-07:00,1744.0,10.85576,10855.76 +21836,2025-03-09T18:38:41.500558-07:00,1711.0,10.842224,10842.224 +21837,2025-03-09T18:38:52.343341-07:00,1710.0,10.842783,10842.783 +21838,2025-03-09T18:39:03.189825-07:00,1681.0,10.846484,10846.484 +21839,2025-03-09T18:39:14.041648-07:00,1648.0,10.851823,10851.823 +21840,2025-03-09T18:39:24.893677-07:00,1712.0,10.852029,10852.029 +21841,2025-03-09T18:39:35.741385-07:00,1682.0,10.847708,10847.708 +21842,2025-03-09T18:39:46.600487-07:00,1734.0,10.859102,10859.102 +21843,2025-03-09T18:39:57.443769-07:00,1664.0,10.843282,10843.282 +21844,2025-03-09T18:40:08.291053-07:00,1713.0,10.847284,10847.284 +21845,2025-03-09T18:40:19.139461-07:00,1649.0,10.848408,10848.408 +21846,2025-03-09T18:40:29.989341-07:00,1734.0,10.84988,10849.88 +21847,2025-03-09T18:40:40.825522-07:00,1669.0,10.836181,10836.181 +21848,2025-03-09T18:40:51.674758-07:00,1726.0,10.849236,10849.236 +21849,2025-03-09T18:41:02.512653-07:00,1651.0,10.837895,10837.895 +21850,2025-03-09T18:41:13.360552-07:00,1680.0,10.847899,10847.899 +21851,2025-03-09T18:41:24.205344-07:00,1732.0,10.844792,10844.792 +21852,2025-03-09T18:41:35.047638-07:00,1737.0,10.842294,10842.294 +21853,2025-03-09T18:41:45.897642-07:00,1673.0,10.850004,10850.004 +21854,2025-03-09T18:41:56.740485-07:00,1698.0,10.842843,10842.843 +21855,2025-03-09T18:42:07.599379-07:00,1728.0,10.858894,10858.894 +21856,2025-03-09T18:42:18.445539-07:00,1721.0,10.84616,10846.16 +21857,2025-03-09T18:42:29.297344-07:00,1729.0,10.851805,10851.805 +21858,2025-03-09T18:42:40.146719-07:00,1707.0,10.849375,10849.375 +21859,2025-03-09T18:42:50.994197-07:00,1667.0,10.847478,10847.478 +21860,2025-03-09T18:43:01.849652-07:00,1727.0,10.855455,10855.455 +21861,2025-03-09T18:43:12.689872-07:00,1716.0,10.84022,10840.22 +21862,2025-03-09T18:43:23.542762-07:00,1674.0,10.85289,10852.89 +21863,2025-03-09T18:43:34.385559-07:00,1654.0,10.842797,10842.797 +21864,2025-03-09T18:43:45.230478-07:00,1678.0,10.844919,10844.919 +21865,2025-03-09T18:43:56.072710-07:00,1702.0,10.842232,10842.232 +21866,2025-03-09T18:44:06.920339-07:00,1700.0,10.847629,10847.629 +21867,2025-03-09T18:44:17.773340-07:00,1677.0,10.853001,10853.001 +21868,2025-03-09T18:44:28.616640-07:00,1727.0,10.8433,10843.3 +21869,2025-03-09T18:44:39.466141-07:00,1729.0,10.849501,10849.501 +21870,2025-03-09T18:44:50.314411-07:00,1725.0,10.84827,10848.27 +21871,2025-03-09T18:45:01.163453-07:00,1712.0,10.849042,10849.042 +21872,2025-03-09T18:45:12.012603-07:00,1649.0,10.84915,10849.15 +21873,2025-03-09T18:45:22.861481-07:00,1712.0,10.848878,10848.878 +21874,2025-03-09T18:45:33.715317-07:00,1631.0,10.853836,10853.836 +21875,2025-03-09T18:45:44.562861-07:00,1727.0,10.847544,10847.544 +21876,2025-03-09T18:45:55.410659-07:00,1660.0,10.847798,10847.798 +21877,2025-03-09T18:46:06.250343-07:00,1643.0,10.839684,10839.684 +21878,2025-03-09T18:46:17.103113-07:00,1725.0,10.85277,10852.77 +21879,2025-03-09T18:46:27.942567-07:00,1654.0,10.839454,10839.454 +21880,2025-03-09T18:46:38.789340-07:00,1691.0,10.846773,10846.773 +21881,2025-03-09T18:46:49.640324-07:00,1685.0,10.850984,10850.984 +21882,2025-03-09T18:47:00.476642-07:00,1712.0,10.836318,10836.318 +21883,2025-03-09T18:47:11.325657-07:00,1638.0,10.849015,10849.015 +21884,2025-03-09T18:47:22.175385-07:00,1728.0,10.849728,10849.728 +21885,2025-03-09T18:47:33.019400-07:00,1647.0,10.844015,10844.015 +21886,2025-03-09T18:47:43.866559-07:00,1719.0,10.847159,10847.159 +21887,2025-03-09T18:47:54.716341-07:00,1693.0,10.849782,10849.782 +21888,2025-03-09T18:48:05.558659-07:00,1649.0,10.842318,10842.318 +21889,2025-03-09T18:48:16.402720-07:00,1680.0,10.844061,10844.061 +21890,2025-03-09T18:48:27.249860-07:00,1698.0,10.84714,10847.14 +21891,2025-03-09T18:48:38.098314-07:00,1647.0,10.848454,10848.454 +21892,2025-03-09T18:48:48.940549-07:00,1667.0,10.842235,10842.235 +21893,2025-03-09T18:48:59.782341-07:00,1719.0,10.841792,10841.792 +21894,2025-03-09T18:49:10.616440-07:00,1725.0,10.834099,10834.099 +21895,2025-03-09T18:49:21.458485-07:00,1718.0,10.842045,10842.045 +21896,2025-03-09T18:49:32.307656-07:00,1725.0,10.849171,10849.171 +21897,2025-03-09T18:49:43.147785-07:00,1676.0,10.840129,10840.129 +21898,2025-03-09T18:49:53.988850-07:00,1680.0,10.841065,10841.065 +21899,2025-03-09T18:50:04.842776-07:00,1690.0,10.853926,10853.926 +21900,2025-03-09T18:50:15.693230-07:00,1727.0,10.850454,10850.454 +21901,2025-03-09T18:50:26.530455-07:00,1665.0,10.837225,10837.225 +21902,2025-03-09T18:50:37.382547-07:00,1698.0,10.852092,10852.092 +21903,2025-03-09T18:50:48.226474-07:00,1637.0,10.843927,10843.927 +21904,2025-03-09T18:50:59.081339-07:00,1719.0,10.854865,10854.865 +21905,2025-03-09T18:51:09.935343-07:00,1674.0,10.854004,10854.004 +21906,2025-03-09T18:51:20.781608-07:00,1702.0,10.846265,10846.265 +21907,2025-03-09T18:51:31.632980-07:00,1656.0,10.851372,10851.372 +21908,2025-03-09T18:51:42.480581-07:00,1683.0,10.847601,10847.601 +21909,2025-03-09T18:51:53.332886-07:00,1717.0,10.852305,10852.305 +21910,2025-03-09T18:52:04.172317-07:00,1687.0,10.839431,10839.431 +21911,2025-03-09T18:52:15.018341-07:00,1712.0,10.846024,10846.024 +21912,2025-03-09T18:52:25.861148-07:00,1715.0,10.842807,10842.807 +21913,2025-03-09T18:52:36.704843-07:00,1702.0,10.843695,10843.695 +21914,2025-03-09T18:52:47.551341-07:00,1698.0,10.846498,10846.498 +21915,2025-03-09T18:52:58.395396-07:00,1675.0,10.844055,10844.055 +21916,2025-03-09T18:53:09.245518-07:00,1635.0,10.850122,10850.122 +21917,2025-03-09T18:53:20.088312-07:00,1679.0,10.842794,10842.794 +21918,2025-03-09T18:53:30.940594-07:00,1637.0,10.852282,10852.282 +21919,2025-03-09T18:53:41.775381-07:00,1662.0,10.834787,10834.787 +21920,2025-03-09T18:53:52.629925-07:00,1655.0,10.854544,10854.544 +21921,2025-03-09T18:54:03.475335-07:00,1712.0,10.84541,10845.41 +21922,2025-03-09T18:54:14.316713-07:00,1712.0,10.841378,10841.378 +21923,2025-03-09T18:54:25.170391-07:00,1683.0,10.853678,10853.678 +21924,2025-03-09T18:54:36.018340-07:00,1637.0,10.847949,10847.949 +21925,2025-03-09T18:54:46.862775-07:00,1715.0,10.844435,10844.435 +21926,2025-03-09T18:54:57.702326-07:00,1673.0,10.839551,10839.551 +21927,2025-03-09T18:55:08.551334-07:00,1663.0,10.849008,10849.008 +21928,2025-03-09T18:55:19.394373-07:00,1619.0,10.843039,10843.039 +21929,2025-03-09T18:55:30.238474-07:00,1679.0,10.844101,10844.101 +21930,2025-03-09T18:55:41.076527-07:00,1709.0,10.838053,10838.053 +21931,2025-03-09T18:55:51.922333-07:00,1675.0,10.845806,10845.806 +21932,2025-03-09T18:56:02.767331-07:00,1648.0,10.844998,10844.998 +21933,2025-03-09T18:56:13.599688-07:00,1631.0,10.832357,10832.357 +21934,2025-03-09T18:56:24.449844-07:00,1653.0,10.850156,10850.156 +21935,2025-03-09T18:56:35.286362-07:00,1715.0,10.836518,10836.518 +21936,2025-03-09T18:56:46.128567-07:00,1678.0,10.842205,10842.205 +21937,2025-03-09T18:56:56.971125-07:00,1712.0,10.842558,10842.558 +21938,2025-03-09T18:57:07.811654-07:00,1706.0,10.840529,10840.529 +21939,2025-03-09T18:57:18.657497-07:00,1686.0,10.845843,10845.843 +21940,2025-03-09T18:57:29.497334-07:00,1664.0,10.839837,10839.837 +21941,2025-03-09T18:57:40.344344-07:00,1697.0,10.84701,10847.01 +21942,2025-03-09T18:57:51.187781-07:00,1680.0,10.843437,10843.437 +21943,2025-03-09T18:58:02.041692-07:00,1675.0,10.853911,10853.911 +21944,2025-03-09T18:58:12.879586-07:00,1686.0,10.837894,10837.894 +21945,2025-03-09T18:58:23.731335-07:00,1711.0,10.851749,10851.749 +21946,2025-03-09T18:58:34.568317-07:00,1650.0,10.836982,10836.982 +21947,2025-03-09T18:58:45.420335-07:00,1680.0,10.852018,10852.018 +21948,2025-03-09T18:58:56.264567-07:00,1661.0,10.844232,10844.232 +21949,2025-03-09T18:59:07.112637-07:00,1671.0,10.84807,10848.07 +21950,2025-03-09T18:59:17.954527-07:00,1703.0,10.84189,10841.89 +21951,2025-03-09T18:59:28.806055-07:00,1654.0,10.851528,10851.528 +21952,2025-03-09T18:59:39.641418-07:00,1633.0,10.835363,10835.363 +21953,2025-03-09T18:59:50.489640-07:00,1671.0,10.848222,10848.222 +21954,2025-03-09T19:00:01.340530-07:00,1623.0,10.85089,10850.89 +21955,2025-03-09T19:00:12.180283-07:00,1712.0,10.839753,10839.753 +21956,2025-03-09T19:00:23.021335-07:00,1663.0,10.841052,10841.052 +21957,2025-03-09T19:00:33.869563-07:00,1639.0,10.848228,10848.228 +21958,2025-03-09T19:00:44.706345-07:00,1712.0,10.836782,10836.782 +21959,2025-03-09T19:00:55.560372-07:00,1617.0,10.854027,10854.027 +21960,2025-03-09T19:01:06.403938-07:00,1709.0,10.843566,10843.566 +21961,2025-03-09T19:01:17.247335-07:00,1712.0,10.843397,10843.397 +21962,2025-03-09T19:01:28.094576-07:00,1699.0,10.847241,10847.241 +21963,2025-03-09T19:01:38.938489-07:00,1685.0,10.843913,10843.913 +21964,2025-03-09T19:01:49.776684-07:00,1703.0,10.838195,10838.195 +21965,2025-03-09T19:02:00.624155-07:00,1611.0,10.847471,10847.471 +21966,2025-03-09T19:02:11.461339-07:00,1684.0,10.837184,10837.184 +21967,2025-03-09T19:02:22.311537-07:00,1653.0,10.850198,10850.198 +21968,2025-03-09T19:02:33.154420-07:00,1652.0,10.842883,10842.883 +21969,2025-03-09T19:02:44.001468-07:00,1685.0,10.847048,10847.048 +21970,2025-03-09T19:02:54.850707-07:00,1702.0,10.849239,10849.239 +21971,2025-03-09T19:03:05.691338-07:00,1709.0,10.840631,10840.631 +21972,2025-03-09T19:03:16.537303-07:00,1709.0,10.845965,10845.965 +21973,2025-03-09T19:03:27.390603-07:00,1635.0,10.8533,10853.3 +21974,2025-03-09T19:03:38.234640-07:00,1710.0,10.844037,10844.037 +21975,2025-03-09T19:03:49.084476-07:00,1627.0,10.849836,10849.836 +21976,2025-03-09T19:03:59.920968-07:00,1710.0,10.836492,10836.492 +21977,2025-03-09T19:04:10.770323-07:00,1641.0,10.849355,10849.355 +21978,2025-03-09T19:04:21.618338-07:00,1659.0,10.848015,10848.015 +21979,2025-03-09T19:04:32.459481-07:00,1702.0,10.841143,10841.143 +21980,2025-03-09T19:04:43.311564-07:00,1707.0,10.852083,10852.083 +21981,2025-03-09T19:04:54.157724-07:00,1670.0,10.84616,10846.16 +21982,2025-03-09T19:05:04.997442-07:00,1692.0,10.839718,10839.718 +21983,2025-03-09T19:05:15.845371-07:00,1691.0,10.847929,10847.929 +21984,2025-03-09T19:05:26.698602-07:00,1701.0,10.853231,10853.231 +21985,2025-03-09T19:05:37.543337-07:00,1697.0,10.844735,10844.735 +21986,2025-03-09T19:05:48.287914-07:00,1613.0,10.744577,10744.577 +21987,2025-03-09T19:05:59.141741-07:00,1655.0,10.853827,10853.827 +21988,2025-03-09T19:06:09.990705-07:00,1687.0,10.848964,10848.964 +21989,2025-03-09T19:06:20.840995-07:00,1677.0,10.85029,10850.29 +21990,2025-03-09T19:06:31.695919-07:00,1680.0,10.854924,10854.924 +21991,2025-03-09T19:06:42.537212-07:00,1623.0,10.841293,10841.293 +21992,2025-03-09T19:06:53.379707-07:00,1615.0,10.842495,10842.495 +21993,2025-03-09T19:07:04.228644-07:00,1650.0,10.848937,10848.937 +21994,2025-03-09T19:07:15.065664-07:00,1707.0,10.83702,10837.02 +21995,2025-03-09T19:07:25.909859-07:00,1664.0,10.844195,10844.195 +21996,2025-03-09T19:07:36.754050-07:00,1706.0,10.844191,10844.191 +21997,2025-03-09T19:07:47.601666-07:00,1625.0,10.847616,10847.616 +21998,2025-03-09T19:07:58.455405-07:00,1648.0,10.853739,10853.739 +21999,2025-03-09T19:08:09.299831-07:00,1674.0,10.844426,10844.426 +22000,2025-03-09T19:08:20.138970-07:00,1703.0,10.839139,10839.139 +22001,2025-03-09T19:08:30.991143-07:00,1623.0,10.852173,10852.173 +22002,2025-03-09T19:08:41.845011-07:00,1618.0,10.853868,10853.868 +22003,2025-03-09T19:08:52.690934-07:00,1703.0,10.845923,10845.923 +22004,2025-03-09T19:09:03.537809-07:00,1677.0,10.846875,10846.875 +22005,2025-03-09T19:09:14.386914-07:00,1667.0,10.849105,10849.105 +22006,2025-03-09T19:09:25.229656-07:00,1633.0,10.842742,10842.742 +22007,2025-03-09T19:09:36.079623-07:00,1652.0,10.849967,10849.967 +22008,2025-03-09T19:09:46.933666-07:00,1705.0,10.854043,10854.043 +22009,2025-03-09T19:09:57.774236-07:00,1648.0,10.84057,10840.57 +22010,2025-03-09T19:10:08.624860-07:00,1680.0,10.850624,10850.624 +22011,2025-03-09T19:10:19.476992-07:00,1615.0,10.852132,10852.132 +22012,2025-03-09T19:10:30.321819-07:00,1651.0,10.844827,10844.827 +22013,2025-03-09T19:10:41.164920-07:00,1649.0,10.843101,10843.101 +22014,2025-03-09T19:10:52.003665-07:00,1678.0,10.838745,10838.745 +22015,2025-03-09T19:11:02.857416-07:00,1665.0,10.853751,10853.751 +22016,2025-03-09T19:11:13.694250-07:00,1698.0,10.836834,10836.834 +22017,2025-03-09T19:11:24.534676-07:00,1696.0,10.840426,10840.426 +22018,2025-03-09T19:11:35.380789-07:00,1614.0,10.846113,10846.113 +22019,2025-03-09T19:11:46.230911-07:00,1642.0,10.850122,10850.122 +22020,2025-03-09T19:11:57.069042-07:00,1696.0,10.838131,10838.131 +22021,2025-03-09T19:12:07.916763-07:00,1699.0,10.847721,10847.721 +22022,2025-03-09T19:12:18.770240-07:00,1648.0,10.853477,10853.477 +22023,2025-03-09T19:12:29.612918-07:00,1703.0,10.842678,10842.678 +22024,2025-03-09T19:12:40.456662-07:00,1691.0,10.843744,10843.744 +22025,2025-03-09T19:12:51.305704-07:00,1616.0,10.849042,10849.042 +22026,2025-03-09T19:13:02.149009-07:00,1690.0,10.843305,10843.305 +22027,2025-03-09T19:13:13.003651-07:00,1613.0,10.854642,10854.642 +22028,2025-03-09T19:13:23.846964-07:00,1681.0,10.843313,10843.313 +22029,2025-03-09T19:13:34.695887-07:00,1637.0,10.848923,10848.923 +22030,2025-03-09T19:13:45.541661-07:00,1654.0,10.845774,10845.774 +22031,2025-03-09T19:13:56.387056-07:00,1682.0,10.845395,10845.395 +22032,2025-03-09T19:14:07.235667-07:00,1693.0,10.848611,10848.611 +22033,2025-03-09T19:14:18.082406-07:00,1699.0,10.846739,10846.739 +22034,2025-03-09T19:14:28.931789-07:00,1681.0,10.849383,10849.383 +22035,2025-03-09T19:14:39.779947-07:00,1663.0,10.848158,10848.158 +22036,2025-03-09T19:14:50.624844-07:00,1676.0,10.844897,10844.897 +22037,2025-03-09T19:15:01.478819-07:00,1699.0,10.853975,10853.975 +22038,2025-03-09T19:15:12.326752-07:00,1690.0,10.847933,10847.933 +22039,2025-03-09T19:15:23.166720-07:00,1694.0,10.839968,10839.968 +22040,2025-03-09T19:15:34.008932-07:00,1646.0,10.842212,10842.212 +22041,2025-03-09T19:15:44.844889-07:00,1642.0,10.835957,10835.957 +22042,2025-03-09T19:15:55.688663-07:00,1622.0,10.843774,10843.774 +22043,2025-03-09T19:16:06.531884-07:00,1668.0,10.843221,10843.221 +22044,2025-03-09T19:16:17.389666-07:00,1614.0,10.857782,10857.782 +22045,2025-03-09T19:16:28.234926-07:00,1666.0,10.84526,10845.26 +22046,2025-03-09T19:16:39.083846-07:00,1622.0,10.84892,10848.92 +22047,2025-03-09T19:16:49.925072-07:00,1695.0,10.841226,10841.226 +22048,2025-03-09T19:17:00.765029-07:00,1702.0,10.839957,10839.957 +22049,2025-03-09T19:17:11.606662-07:00,1679.0,10.841633,10841.633 +22050,2025-03-09T19:17:22.457712-07:00,1691.0,10.85105,10851.05 +22051,2025-03-09T19:17:33.300630-07:00,1665.0,10.842918,10842.918 +22052,2025-03-09T19:17:44.148690-07:00,1685.0,10.84806,10848.06 +22053,2025-03-09T19:17:55.002786-07:00,1698.0,10.854096,10854.096 +22054,2025-03-09T19:18:05.855910-07:00,1657.0,10.853124,10853.124 +22055,2025-03-09T19:18:16.694880-07:00,1664.0,10.83897,10838.97 +22056,2025-03-09T19:18:27.549653-07:00,1699.0,10.854773,10854.773 +22057,2025-03-09T19:18:38.385931-07:00,1685.0,10.836278,10836.278 +22058,2025-03-09T19:18:49.235799-07:00,1671.0,10.849868,10849.868 +22059,2025-03-09T19:19:00.081241-07:00,1658.0,10.845442,10845.442 +22060,2025-03-09T19:19:10.921666-07:00,1659.0,10.840425,10840.425 +22061,2025-03-09T19:19:21.771166-07:00,1665.0,10.8495,10849.5 +22062,2025-03-09T19:19:32.625660-07:00,1696.0,10.854494,10854.494 +22063,2025-03-09T19:19:43.471883-07:00,1649.0,10.846223,10846.223 +22064,2025-03-09T19:19:54.322662-07:00,1675.0,10.850779,10850.779 +22065,2025-03-09T19:20:05.171673-07:00,1649.0,10.849011,10849.011 +22066,2025-03-09T19:20:16.015314-07:00,1682.0,10.843641,10843.641 +22067,2025-03-09T19:20:26.862995-07:00,1689.0,10.847681,10847.681 +22068,2025-03-09T19:20:37.713664-07:00,1634.0,10.850669,10850.669 +22069,2025-03-09T19:20:48.559777-07:00,1697.0,10.846113,10846.113 +22070,2025-03-09T19:20:59.401666-07:00,1683.0,10.841889,10841.889 +22071,2025-03-09T19:21:10.247760-07:00,1639.0,10.846094,10846.094 +22072,2025-03-09T19:21:21.095719-07:00,1655.0,10.847959,10847.959 +22073,2025-03-09T19:21:31.934699-07:00,1657.0,10.83898,10838.98 +22074,2025-03-09T19:21:42.788915-07:00,1693.0,10.854216,10854.216 +22075,2025-03-09T19:21:53.629660-07:00,1655.0,10.840745,10840.745 +22076,2025-03-09T19:22:04.478734-07:00,1669.0,10.849074,10849.074 +22077,2025-03-09T19:22:15.328891-07:00,1618.0,10.850157,10850.157 +22078,2025-03-09T19:22:26.173205-07:00,1695.0,10.844314,10844.314 +22079,2025-03-09T19:22:37.019548-07:00,1701.0,10.846343,10846.343 +22080,2025-03-09T19:22:47.869051-07:00,1639.0,10.849503,10849.503 +22081,2025-03-09T19:22:58.712658-07:00,1686.0,10.843607,10843.607 +22082,2025-03-09T19:23:09.573897-07:00,1635.0,10.861239,10861.239 +22083,2025-03-09T19:23:20.417661-07:00,1667.0,10.843764,10843.764 +22084,2025-03-09T19:23:31.272652-07:00,1690.0,10.854991,10854.991 +22085,2025-03-09T19:23:42.123666-07:00,1699.0,10.851014,10851.014 +22086,2025-03-09T19:23:52.974665-07:00,1699.0,10.850999,10850.999 +22087,2025-03-09T19:24:03.826643-07:00,1657.0,10.851978,10851.978 +22088,2025-03-09T19:24:14.665661-07:00,1699.0,10.839018,10839.018 +22089,2025-03-09T19:24:25.516963-07:00,1691.0,10.851302,10851.302 +22090,2025-03-09T19:24:36.364003-07:00,1664.0,10.84704,10847.04 +22091,2025-03-09T19:24:47.210717-07:00,1677.0,10.846714,10846.714 +22092,2025-03-09T19:24:58.060813-07:00,1695.0,10.850096,10850.096 +22093,2025-03-09T19:25:08.907212-07:00,1686.0,10.846399,10846.399 +22094,2025-03-09T19:25:19.757786-07:00,1667.0,10.850574,10850.574 +22095,2025-03-09T19:25:30.605671-07:00,1686.0,10.847885,10847.885 +22096,2025-03-09T19:25:41.450038-07:00,1680.0,10.844367,10844.367 +22097,2025-03-09T19:25:52.292878-07:00,1631.0,10.84284,10842.84 +22098,2025-03-09T19:26:03.147825-07:00,1701.0,10.854947,10854.947 +22099,2025-03-09T19:26:13.989664-07:00,1701.0,10.841839,10841.839 +22100,2025-03-09T19:26:24.844961-07:00,1648.0,10.855297,10855.297 +22101,2025-03-09T19:26:35.695910-07:00,1695.0,10.850949,10850.949 +22102,2025-03-09T19:26:46.536642-07:00,1661.0,10.840732,10840.732 +22103,2025-03-09T19:26:57.383662-07:00,1635.0,10.84702,10847.02 +22104,2025-03-09T19:27:08.234658-07:00,1627.0,10.850996,10850.996 +22105,2025-03-09T19:27:19.082983-07:00,1667.0,10.848325,10848.325 +22106,2025-03-09T19:27:29.925766-07:00,1693.0,10.842783,10842.783 +22107,2025-03-09T19:27:40.773649-07:00,1674.0,10.847883,10847.883 +22108,2025-03-09T19:27:51.629656-07:00,1693.0,10.856007,10856.007 +22109,2025-03-09T19:28:02.477754-07:00,1698.0,10.848098,10848.098 +22110,2025-03-09T19:28:13.327656-07:00,1697.0,10.849902,10849.902 +22111,2025-03-09T19:28:24.183949-07:00,1667.0,10.856293,10856.293 +22112,2025-03-09T19:28:35.018030-07:00,1703.0,10.834081,10834.081 +22113,2025-03-09T19:28:45.873003-07:00,1649.0,10.854973,10854.973 +22114,2025-03-09T19:28:56.710794-07:00,1614.0,10.837791,10837.791 +22115,2025-03-09T19:29:07.559467-07:00,1631.0,10.848673,10848.673 +22116,2025-03-09T19:29:18.398663-07:00,1648.0,10.839196,10839.196 +22117,2025-03-09T19:29:29.245671-07:00,1696.0,10.847008,10847.008 +22118,2025-03-09T19:29:40.089993-07:00,1702.0,10.844322,10844.322 +22119,2025-03-09T19:29:50.931686-07:00,1619.0,10.841693,10841.693 +22120,2025-03-09T19:30:01.780661-07:00,1661.0,10.848975,10848.975 +22121,2025-03-09T19:30:12.628660-07:00,1667.0,10.847999,10847.999 +22122,2025-03-09T19:30:23.479670-07:00,1616.0,10.85101,10851.01 +22123,2025-03-09T19:30:34.322164-07:00,1702.0,10.842494,10842.494 +22124,2025-03-09T19:30:45.154663-07:00,1699.0,10.832499,10832.499 +22125,2025-03-09T19:30:55.999660-07:00,1692.0,10.844997,10844.997 +22126,2025-03-09T19:31:06.853662-07:00,1631.0,10.854002,10854.002 +22127,2025-03-09T19:31:17.699062-07:00,1690.0,10.8454,10845.4 +22128,2025-03-09T19:31:28.544667-07:00,1695.0,10.845605,10845.605 +22129,2025-03-09T19:31:39.380063-07:00,1665.0,10.835396,10835.396 +22130,2025-03-09T19:31:50.230132-07:00,1651.0,10.850069,10850.069 +22131,2025-03-09T19:32:01.073289-07:00,1702.0,10.843157,10843.157 +22132,2025-03-09T19:32:11.921661-07:00,1638.0,10.848372,10848.372 +22133,2025-03-09T19:32:22.759597-07:00,1685.0,10.837936,10837.936 +22134,2025-03-09T19:32:33.613227-07:00,1687.0,10.85363,10853.63 +22135,2025-03-09T19:32:44.465283-07:00,1700.0,10.852056,10852.056 +22136,2025-03-09T19:32:55.305180-07:00,1675.0,10.839897,10839.897 +22137,2025-03-09T19:33:06.160900-07:00,1694.0,10.85572,10855.72 +22138,2025-03-09T19:33:17.006660-07:00,1701.0,10.84576,10845.76 +22139,2025-03-09T19:33:27.860656-07:00,1605.0,10.853996,10853.996 +22140,2025-03-09T19:33:38.706666-07:00,1621.0,10.84601,10846.01 +22141,2025-03-09T19:33:49.547905-07:00,1696.0,10.841239,10841.239 +22142,2025-03-09T19:34:00.395803-07:00,1687.0,10.847898,10847.898 +22143,2025-03-09T19:34:11.241984-07:00,1675.0,10.846181,10846.181 +22144,2025-03-09T19:34:22.095771-07:00,1647.0,10.853787,10853.787 +22145,2025-03-09T19:34:32.937659-07:00,1613.0,10.841888,10841.888 +22146,2025-03-09T19:34:43.780931-07:00,1653.0,10.843272,10843.272 +22147,2025-03-09T19:34:54.629710-07:00,1609.0,10.848779,10848.779 +22148,2025-03-09T19:35:05.473999-07:00,1664.0,10.844289,10844.289 +22149,2025-03-09T19:35:16.315706-07:00,1694.0,10.841707,10841.707 +22150,2025-03-09T19:35:27.158659-07:00,1701.0,10.842953,10842.953 +22151,2025-03-09T19:35:37.995664-07:00,1696.0,10.837005,10837.005 +22152,2025-03-09T19:35:48.850643-07:00,1647.0,10.854979,10854.979 +22153,2025-03-09T19:35:59.687933-07:00,1699.0,10.83729,10837.29 +22154,2025-03-09T19:36:10.537760-07:00,1620.0,10.849827,10849.827 +22155,2025-03-09T19:36:21.381656-07:00,1700.0,10.843896,10843.896 +22156,2025-03-09T19:36:32.230715-07:00,1683.0,10.849059,10849.059 +22157,2025-03-09T19:36:43.067764-07:00,1693.0,10.837049,10837.049 +22158,2025-03-09T19:36:53.913003-07:00,1694.0,10.845239,10845.239 +22159,2025-03-09T19:37:04.751907-07:00,1647.0,10.838904,10838.904 +22160,2025-03-09T19:37:15.598664-07:00,1701.0,10.846757,10846.757 +22161,2025-03-09T19:37:26.438909-07:00,1686.0,10.840245,10840.245 +22162,2025-03-09T19:37:37.286664-07:00,1660.0,10.847755,10847.755 +22163,2025-03-09T19:37:48.139666-07:00,1638.0,10.853002,10853.002 +22164,2025-03-09T19:37:58.984863-07:00,1658.0,10.845197,10845.197 +22165,2025-03-09T19:38:09.828790-07:00,1664.0,10.843927,10843.927 +22166,2025-03-09T19:38:20.667666-07:00,1702.0,10.838876,10838.876 +22167,2025-03-09T19:38:31.520065-07:00,1701.0,10.852399,10852.399 +22168,2025-03-09T19:38:42.363662-07:00,1699.0,10.843597,10843.597 +22169,2025-03-09T19:38:53.219767-07:00,1645.0,10.856105,10856.105 +22170,2025-03-09T19:39:04.066047-07:00,1695.0,10.84628,10846.28 +22171,2025-03-09T19:39:14.909266-07:00,1662.0,10.843219,10843.219 +22172,2025-03-09T19:39:25.750308-07:00,1623.0,10.841042,10841.042 +22173,2025-03-09T19:39:36.606784-07:00,1655.0,10.856476,10856.476 +22174,2025-03-09T19:39:47.451051-07:00,1676.0,10.844267,10844.267 +22175,2025-03-09T19:39:58.305666-07:00,1616.0,10.854615,10854.615 +22176,2025-03-09T19:40:09.154664-07:00,1694.0,10.848998,10848.998 +22177,2025-03-09T19:40:20.002281-07:00,1656.0,10.847617,10847.617 +22178,2025-03-09T19:40:30.849828-07:00,1687.0,10.847547,10847.547 +22179,2025-03-09T19:40:41.694754-07:00,1703.0,10.844926,10844.926 +22180,2025-03-09T19:40:52.537663-07:00,1697.0,10.842909,10842.909 +22181,2025-03-09T19:41:03.391659-07:00,1655.0,10.853996,10853.996 +22182,2025-03-09T19:41:14.247740-07:00,1701.0,10.856081,10856.081 +22183,2025-03-09T19:41:25.094925-07:00,1618.0,10.847185,10847.185 +22184,2025-03-09T19:41:35.947665-07:00,1702.0,10.85274,10852.74 +22185,2025-03-09T19:41:46.793809-07:00,1653.0,10.846144,10846.144 +22186,2025-03-09T19:41:57.636074-07:00,1699.0,10.842265,10842.265 +22187,2025-03-09T19:42:08.479804-07:00,1691.0,10.84373,10843.73 +22188,2025-03-09T19:42:19.340091-07:00,1664.0,10.860287,10860.287 +22189,2025-03-09T19:42:30.181656-07:00,1678.0,10.841565,10841.565 +22190,2025-03-09T19:42:41.041266-07:00,1615.0,10.85961,10859.61 +22191,2025-03-09T19:42:51.881662-07:00,1701.0,10.840396,10840.396 +22192,2025-03-09T19:43:02.728678-07:00,1626.0,10.847016,10847.016 +22193,2025-03-09T19:43:13.569668-07:00,1634.0,10.84099,10840.99 +22194,2025-03-09T19:43:24.420861-07:00,1669.0,10.851193,10851.193 +22195,2025-03-09T19:43:35.264972-07:00,1614.0,10.844111,10844.111 +22196,2025-03-09T19:43:46.107778-07:00,1633.0,10.842806,10842.806 +22197,2025-03-09T19:43:56.948776-07:00,1616.0,10.840998,10840.998 +22198,2025-03-09T19:44:07.793661-07:00,1664.0,10.844885,10844.885 +22199,2025-03-09T19:44:18.641893-07:00,1644.0,10.848232,10848.232 +22200,2025-03-09T19:44:29.496930-07:00,1675.0,10.855037,10855.037 +22201,2025-03-09T19:44:40.345003-07:00,1700.0,10.848073,10848.073 +22202,2025-03-09T19:44:51.204286-07:00,1652.0,10.859283,10859.283 +22203,2025-03-09T19:45:02.049023-07:00,1645.0,10.844737,10844.737 +22204,2025-03-09T19:45:12.903524-07:00,1703.0,10.854501,10854.501 +22205,2025-03-09T19:45:23.750655-07:00,1657.0,10.847131,10847.131 +22206,2025-03-09T19:45:34.598658-07:00,1676.0,10.848003,10848.003 +22207,2025-03-09T19:45:45.446654-07:00,1701.0,10.847996,10847.996 +22208,2025-03-09T19:45:56.286069-07:00,1600.0,10.839415,10839.415 +22209,2025-03-09T19:46:07.139946-07:00,1603.0,10.853877,10853.877 +22210,2025-03-09T19:46:17.984993-07:00,1685.0,10.845047,10845.047 +22211,2025-03-09T19:46:28.837915-07:00,1699.0,10.852922,10852.922 +22212,2025-03-09T19:46:39.687433-07:00,1636.0,10.849518,10849.518 +22213,2025-03-09T19:46:50.541463-07:00,1687.0,10.85403,10854.03 +22214,2025-03-09T19:47:01.387862-07:00,1651.0,10.846399,10846.399 +22215,2025-03-09T19:47:12.240883-07:00,1698.0,10.853021,10853.021 +22216,2025-03-09T19:47:23.088728-07:00,1631.0,10.847845,10847.845 +22217,2025-03-09T19:47:33.942639-07:00,1671.0,10.853911,10853.911 +22218,2025-03-09T19:47:44.780760-07:00,1680.0,10.838121,10838.121 +22219,2025-03-09T19:47:55.626737-07:00,1656.0,10.845977,10845.977 +22220,2025-03-09T19:48:06.476745-07:00,1655.0,10.850008,10850.008 +22221,2025-03-09T19:48:17.325277-07:00,1625.0,10.848532,10848.532 +22222,2025-03-09T19:48:28.175798-07:00,1648.0,10.850521,10850.521 +22223,2025-03-09T19:48:39.028805-07:00,1610.0,10.853007,10853.007 +22224,2025-03-09T19:48:49.878999-07:00,1655.0,10.850194,10850.194 +22225,2025-03-09T19:49:00.730658-07:00,1658.0,10.851659,10851.659 +22226,2025-03-09T19:49:11.584936-07:00,1679.0,10.854278,10854.278 +22227,2025-03-09T19:49:22.440667-07:00,1645.0,10.855731,10855.731 +22228,2025-03-09T19:49:33.289817-07:00,1654.0,10.84915,10849.15 +22229,2025-03-09T19:49:44.134904-07:00,1705.0,10.845087,10845.087 +22230,2025-03-09T19:49:54.981103-07:00,1698.0,10.846199,10846.199 +22231,2025-03-09T19:50:05.836093-07:00,1618.0,10.85499,10854.99 +22232,2025-03-09T19:50:16.688666-07:00,1680.0,10.852573,10852.573 +22233,2025-03-09T19:50:27.534983-07:00,1693.0,10.846317,10846.317 +22234,2025-03-09T19:50:38.395996-07:00,1621.0,10.861013,10861.013 +22235,2025-03-09T19:50:49.242972-07:00,1617.0,10.846976,10846.976 +22236,2025-03-09T19:51:00.103772-07:00,1690.0,10.8608,10860.8 +22237,2025-03-09T19:51:10.939995-07:00,1655.0,10.836223,10836.223 +22238,2025-03-09T19:51:21.794235-07:00,1679.0,10.85424,10854.24 +22239,2025-03-09T19:51:32.650686-07:00,1617.0,10.856451,10856.451 +22240,2025-03-09T19:51:43.492665-07:00,1618.0,10.841979,10841.979 +22241,2025-03-09T19:51:54.346918-07:00,1647.0,10.854253,10854.253 +22242,2025-03-09T19:52:05.190693-07:00,1695.0,10.843775,10843.775 +22243,2025-03-09T19:52:16.045765-07:00,1699.0,10.855072,10855.072 +22244,2025-03-09T19:52:26.886032-07:00,1705.0,10.840267,10840.267 +22245,2025-03-09T19:52:37.738810-07:00,1619.0,10.852778,10852.778 +22246,2025-03-09T19:52:48.581661-07:00,1705.0,10.842851,10842.851 +22247,2025-03-09T19:52:59.440085-07:00,1701.0,10.858424,10858.424 +22248,2025-03-09T19:53:10.285665-07:00,1685.0,10.84558,10845.58 +22249,2025-03-09T19:53:21.133667-07:00,1696.0,10.848002,10848.002 +22250,2025-03-09T19:53:31.980913-07:00,1657.0,10.847246,10847.246 +22251,2025-03-09T19:53:42.834662-07:00,1680.0,10.853749,10853.749 +22252,2025-03-09T19:53:53.687656-07:00,1687.0,10.852994,10852.994 +22253,2025-03-09T19:54:04.540755-07:00,1691.0,10.853099,10853.099 +22254,2025-03-09T19:54:15.395703-07:00,1693.0,10.854948,10854.948 +22255,2025-03-09T19:54:26.247662-07:00,1615.0,10.851959,10851.959 +22256,2025-03-09T19:54:37.101717-07:00,1703.0,10.854055,10854.055 +22257,2025-03-09T19:54:47.949665-07:00,1671.0,10.847948,10847.948 +22258,2025-03-09T19:54:58.788851-07:00,1687.0,10.839186,10839.186 +22259,2025-03-09T19:55:09.632799-07:00,1648.0,10.843948,10843.948 +22260,2025-03-09T19:55:20.489991-07:00,1697.0,10.857192,10857.192 +22261,2025-03-09T19:55:31.340698-07:00,1648.0,10.850707,10850.707 +22262,2025-03-09T19:55:42.200743-07:00,1694.0,10.860045,10860.045 +22263,2025-03-09T19:55:53.045665-07:00,1629.0,10.844922,10844.922 +22264,2025-03-09T19:56:03.901681-07:00,1662.0,10.856016,10856.016 +22265,2025-03-09T19:56:14.751937-07:00,1691.0,10.850256,10850.256 +22266,2025-03-09T19:56:25.604662-07:00,1653.0,10.852725,10852.725 +22267,2025-03-09T19:56:36.448912-07:00,1670.0,10.84425,10844.25 +22268,2025-03-09T19:56:47.308166-07:00,1683.0,10.859254,10859.254 +22269,2025-03-09T19:56:58.165655-07:00,1616.0,10.857489,10857.489 +22270,2025-03-09T19:57:09.018933-07:00,1648.0,10.853278,10853.278 +22271,2025-03-09T19:57:19.863643-07:00,1671.0,10.84471,10844.71 +22272,2025-03-09T19:57:30.710260-07:00,1677.0,10.846617,10846.617 +22273,2025-03-09T19:57:41.565056-07:00,1697.0,10.854796,10854.796 +22274,2025-03-09T19:57:52.408100-07:00,1632.0,10.843044,10843.044 +22275,2025-03-09T19:58:03.263064-07:00,1631.0,10.854964,10854.964 +22276,2025-03-09T19:58:14.103772-07:00,1658.0,10.840708,10840.708 +22277,2025-03-09T19:58:24.950666-07:00,1657.0,10.846894,10846.894 +22278,2025-03-09T19:58:35.800861-07:00,1630.0,10.850195,10850.195 +22279,2025-03-09T19:58:46.645668-07:00,1642.0,10.844807,10844.807 +22280,2025-03-09T19:58:57.490029-07:00,1609.0,10.844361,10844.361 +22281,2025-03-09T19:59:08.342999-07:00,1651.0,10.85297,10852.97 +22282,2025-03-09T19:59:19.194274-07:00,1615.0,10.851275,10851.275 +22283,2025-03-09T19:59:30.035992-07:00,1680.0,10.841718,10841.718 +22284,2025-03-09T19:59:40.892707-07:00,1699.0,10.856715,10856.715 +22285,2025-03-09T19:59:51.732904-07:00,1675.0,10.840197,10840.197 +22286,2025-03-09T20:00:02.587703-07:00,1648.0,10.854799,10854.799 +22287,2025-03-09T20:00:13.432517-07:00,1687.0,10.844814,10844.814 +22288,2025-03-09T20:00:24.278093-07:00,1655.0,10.845576,10845.576 +22289,2025-03-09T20:00:35.130229-07:00,1664.0,10.852136,10852.136 +22290,2025-03-09T20:00:45.978027-07:00,1674.0,10.847798,10847.798 +22291,2025-03-09T20:00:56.826662-07:00,1703.0,10.848635,10848.635 +22292,2025-03-09T20:01:07.681874-07:00,1703.0,10.855212,10855.212 +22293,2025-03-09T20:01:18.531663-07:00,1668.0,10.849789,10849.789 +22294,2025-03-09T20:01:29.385860-07:00,1634.0,10.854197,10854.197 +22295,2025-03-09T20:01:40.223441-07:00,1661.0,10.837581,10837.581 +22296,2025-03-09T20:01:51.069799-07:00,1687.0,10.846358,10846.358 +22297,2025-03-09T20:02:01.916813-07:00,1614.0,10.847014,10847.014 +22298,2025-03-09T20:02:12.756622-07:00,1667.0,10.839809,10839.809 +22299,2025-03-09T20:02:23.609707-07:00,1616.0,10.853085,10853.085 +22300,2025-03-09T20:02:34.456644-07:00,1691.0,10.846937,10846.937 +22301,2025-03-09T20:02:45.302806-07:00,1653.0,10.846162,10846.162 +22302,2025-03-09T20:02:56.147667-07:00,1659.0,10.844861,10844.861 +22303,2025-03-09T20:03:06.996544-07:00,1613.0,10.848877,10848.877 +22304,2025-03-09T20:03:17.838250-07:00,1680.0,10.841706,10841.706 +22305,2025-03-09T20:03:28.679641-07:00,1702.0,10.841391,10841.391 +22306,2025-03-09T20:03:39.519660-07:00,1695.0,10.840019,10840.019 +22307,2025-03-09T20:03:50.369653-07:00,1698.0,10.849993,10849.993 +22308,2025-03-09T20:04:01.210966-07:00,1703.0,10.841313,10841.313 +22309,2025-03-09T20:04:12.061128-07:00,1706.0,10.850162,10850.162 +22310,2025-03-09T20:04:22.910429-07:00,1649.0,10.849301,10849.301 +22311,2025-03-09T20:04:33.754644-07:00,1695.0,10.844215,10844.215 +22312,2025-03-09T20:04:44.603661-07:00,1643.0,10.849017,10849.017 +22313,2025-03-09T20:04:55.455902-07:00,1695.0,10.852241,10852.241 +22314,2025-03-09T20:05:06.303955-07:00,1651.0,10.848053,10848.053 +22315,2025-03-09T20:05:17.148219-07:00,1647.0,10.844264,10844.264 +22316,2025-03-09T20:05:28.006718-07:00,1637.0,10.858499,10858.499 +22317,2025-03-09T20:05:38.852839-07:00,1648.0,10.846121,10846.121 +22318,2025-03-09T20:05:49.847926-07:00,1683.0,10.995087,10995.087 +22319,2025-03-09T20:06:00.700948-07:00,1662.0,10.853022,10853.022 +22320,2025-03-09T20:06:11.541587-07:00,1633.0,10.840639,10840.639 +22321,2025-03-09T20:06:22.394593-07:00,1700.0,10.853006,10853.006 +22322,2025-03-09T20:06:33.244821-07:00,1703.0,10.850228,10850.228 +22323,2025-03-09T20:06:44.095592-07:00,1698.0,10.850771,10850.771 +22324,2025-03-09T20:06:54.953732-07:00,1695.0,10.85814,10858.14 +22325,2025-03-09T20:07:05.809735-07:00,1680.0,10.856003,10856.003 +22326,2025-03-09T20:07:16.654693-07:00,1680.0,10.844958,10844.958 +22327,2025-03-09T20:07:27.502595-07:00,1657.0,10.847902,10847.902 +22328,2025-03-09T20:07:38.352592-07:00,1659.0,10.849997,10849.997 +22329,2025-03-09T20:07:49.200982-07:00,1664.0,10.84839,10848.39 +22330,2025-03-09T20:08:00.055598-07:00,1634.0,10.854616,10854.616 +22331,2025-03-09T20:08:10.902834-07:00,1693.0,10.847236,10847.236 +22332,2025-03-09T20:08:21.750980-07:00,1703.0,10.848146,10848.146 +22333,2025-03-09T20:08:32.594738-07:00,1690.0,10.843758,10843.758 +22334,2025-03-09T20:08:43.451065-07:00,1659.0,10.856327,10856.327 +22335,2025-03-09T20:08:54.295596-07:00,1670.0,10.844531,10844.531 +22336,2025-03-09T20:09:05.147596-07:00,1648.0,10.852,10852.0 +22337,2025-03-09T20:09:15.999598-07:00,1616.0,10.852002,10852.002 +22338,2025-03-09T20:09:26.859740-07:00,1644.0,10.860142,10860.142 +22339,2025-03-09T20:09:37.711648-07:00,1636.0,10.851908,10851.908 +22340,2025-03-09T20:09:48.555597-07:00,1664.0,10.843949,10843.949 +22341,2025-03-09T20:09:59.404604-07:00,1697.0,10.849007,10849.007 +22342,2025-03-09T20:10:10.266588-07:00,1618.0,10.861984,10861.984 +22343,2025-03-09T20:10:21.112924-07:00,1691.0,10.846336,10846.336 +22344,2025-03-09T20:10:31.965885-07:00,1623.0,10.852961,10852.961 +22345,2025-03-09T20:10:42.817658-07:00,1649.0,10.851773,10851.773 +22346,2025-03-09T20:10:53.664899-07:00,1662.0,10.847241,10847.241 +22347,2025-03-09T20:11:04.515199-07:00,1630.0,10.8503,10850.3 +22348,2025-03-09T20:11:15.369895-07:00,1699.0,10.854696,10854.696 +22349,2025-03-09T20:11:26.223001-07:00,1684.0,10.853106,10853.106 +22350,2025-03-09T20:11:37.072593-07:00,1615.0,10.849592,10849.592 +22351,2025-03-09T20:11:47.915886-07:00,1663.0,10.843293,10843.293 +22352,2025-03-09T20:11:58.774594-07:00,1665.0,10.858708,10858.708 +22353,2025-03-09T20:12:09.617639-07:00,1611.0,10.843045,10843.045 +22354,2025-03-09T20:12:20.465574-07:00,1665.0,10.847935,10847.935 +22355,2025-03-09T20:12:31.313646-07:00,1654.0,10.848072,10848.072 +22356,2025-03-09T20:12:42.164606-07:00,1680.0,10.85096,10850.96 +22357,2025-03-09T20:12:53.014926-07:00,1697.0,10.85032,10850.32 +22358,2025-03-09T20:13:03.863914-07:00,1659.0,10.848988,10848.988 +22359,2025-03-09T20:13:14.717489-07:00,1669.0,10.853575,10853.575 +22360,2025-03-09T20:13:25.569181-07:00,1612.0,10.851692,10851.692 +22361,2025-03-09T20:13:36.423025-07:00,1682.0,10.853844,10853.844 +22362,2025-03-09T20:13:47.272628-07:00,1680.0,10.849603,10849.603 +22363,2025-03-09T20:13:58.111642-07:00,1702.0,10.839014,10839.014 +22364,2025-03-09T20:14:08.965666-07:00,1691.0,10.854024,10854.024 +22365,2025-03-09T20:14:19.815802-07:00,1665.0,10.850136,10850.136 +22366,2025-03-09T20:14:30.663966-07:00,1680.0,10.848164,10848.164 +22367,2025-03-09T20:14:41.512914-07:00,1679.0,10.848948,10848.948 +22368,2025-03-09T20:14:52.366897-07:00,1695.0,10.853983,10853.983 +22369,2025-03-09T20:15:03.210930-07:00,1680.0,10.844033,10844.033 +22370,2025-03-09T20:15:14.060598-07:00,1639.0,10.849668,10849.668 +22371,2025-03-09T20:15:24.905646-07:00,1702.0,10.845048,10845.048 +22372,2025-03-09T20:15:35.757115-07:00,1682.0,10.851469,10851.469 +22373,2025-03-09T20:15:46.607646-07:00,1655.0,10.850531,10850.531 +22374,2025-03-09T20:15:57.463892-07:00,1707.0,10.856246,10856.246 +22375,2025-03-09T20:16:08.314215-07:00,1702.0,10.850323,10850.323 +22376,2025-03-09T20:16:19.156876-07:00,1675.0,10.842661,10842.661 +22377,2025-03-09T20:16:30.012054-07:00,1663.0,10.855178,10855.178 +22378,2025-03-09T20:16:40.858765-07:00,1631.0,10.846711,10846.711 +22379,2025-03-09T20:16:51.712964-07:00,1705.0,10.854199,10854.199 +22380,2025-03-09T20:17:02.570628-07:00,1666.0,10.857664,10857.664 +22381,2025-03-09T20:17:13.417076-07:00,1678.0,10.846448,10846.448 +22382,2025-03-09T20:17:24.272170-07:00,1669.0,10.855094,10855.094 +22383,2025-03-09T20:17:35.126280-07:00,1663.0,10.85411,10854.11 +22384,2025-03-09T20:17:45.976271-07:00,1615.0,10.849991,10849.991 +22385,2025-03-09T20:17:56.817592-07:00,1695.0,10.841321,10841.321 +22386,2025-03-09T20:18:07.667246-07:00,1649.0,10.849654,10849.654 +22387,2025-03-09T20:18:18.523666-07:00,1655.0,10.85642,10856.42 +22388,2025-03-09T20:18:29.382586-07:00,1687.0,10.85892,10858.92 +22389,2025-03-09T20:18:40.236831-07:00,1671.0,10.854245,10854.245 +22390,2025-03-09T20:18:51.085599-07:00,1660.0,10.848768,10848.768 +22391,2025-03-09T20:19:01.931992-07:00,1610.0,10.846393,10846.393 +22392,2025-03-09T20:19:12.782602-07:00,1641.0,10.85061,10850.61 +22393,2025-03-09T20:19:23.626928-07:00,1694.0,10.844326,10844.326 +22394,2025-03-09T20:19:34.488777-07:00,1705.0,10.861849,10861.849 +22395,2025-03-09T20:19:45.329872-07:00,1659.0,10.841095,10841.095 +22396,2025-03-09T20:19:56.190491-07:00,1703.0,10.860619,10860.619 +22397,2025-03-09T20:20:07.045913-07:00,1610.0,10.855422,10855.422 +22398,2025-03-09T20:20:17.894366-07:00,1620.0,10.848453,10848.453 +22399,2025-03-09T20:20:28.754049-07:00,1664.0,10.859683,10859.683 +22400,2025-03-09T20:20:39.596182-07:00,1609.0,10.842133,10842.133 +22401,2025-03-09T20:20:50.456932-07:00,1647.0,10.86075,10860.75 +22402,2025-03-09T20:21:01.315006-07:00,1693.0,10.858074,10858.074 +22403,2025-03-09T20:21:12.163911-07:00,1655.0,10.848905,10848.905 +22404,2025-03-09T20:21:23.021441-07:00,1677.0,10.85753,10857.53 +22405,2025-03-09T20:21:33.878030-07:00,1703.0,10.856589,10856.589 +22406,2025-03-09T20:21:44.724150-07:00,1649.0,10.84612,10846.12 +22407,2025-03-09T20:21:55.589923-07:00,1687.0,10.865773,10865.773 +22408,2025-03-09T20:22:06.438903-07:00,1686.0,10.84898,10848.98 +22409,2025-03-09T20:22:17.286622-07:00,1616.0,10.847719,10847.719 +22410,2025-03-09T20:22:28.141322-07:00,1677.0,10.8547,10854.7 +22411,2025-03-09T20:22:39.001957-07:00,1679.0,10.860635,10860.635 +22412,2025-03-09T20:22:49.856893-07:00,1651.0,10.854936,10854.936 +22413,2025-03-09T20:23:00.713709-07:00,1616.0,10.856816,10856.816 +22414,2025-03-09T20:23:11.565814-07:00,1663.0,10.852105,10852.105 +22415,2025-03-09T20:23:22.424856-07:00,1708.0,10.859042,10859.042 +22416,2025-03-09T20:23:33.281272-07:00,1703.0,10.856416,10856.416 +22417,2025-03-09T20:23:44.129383-07:00,1669.0,10.848111,10848.111 +22418,2025-03-09T20:23:54.977115-07:00,1621.0,10.847732,10847.732 +22419,2025-03-09T20:24:05.832582-07:00,1666.0,10.855467,10855.467 +22420,2025-03-09T20:24:16.686011-07:00,1703.0,10.853429,10853.429 +22421,2025-03-09T20:24:27.540392-07:00,1631.0,10.854381,10854.381 +22422,2025-03-09T20:24:38.382572-07:00,1680.0,10.84218,10842.18 +22423,2025-03-09T20:24:49.239705-07:00,1686.0,10.857133,10857.133 +22424,2025-03-09T20:25:00.092916-07:00,1703.0,10.853211,10853.211 +22425,2025-03-09T20:25:10.945598-07:00,1680.0,10.852682,10852.682 +22426,2025-03-09T20:25:21.796773-07:00,1691.0,10.851175,10851.175 +22427,2025-03-09T20:25:32.645788-07:00,1613.0,10.849015,10849.015 +22428,2025-03-09T20:25:43.497588-07:00,1663.0,10.8518,10851.8 +22429,2025-03-09T20:25:54.356374-07:00,1692.0,10.858786,10858.786 +22430,2025-03-09T20:26:05.203598-07:00,1616.0,10.847224,10847.224 +22431,2025-03-09T20:26:16.058587-07:00,1621.0,10.854989,10854.989 +22432,2025-03-09T20:26:26.921591-07:00,1692.0,10.863004,10863.004 +22433,2025-03-09T20:26:37.778580-07:00,1667.0,10.856989,10856.989 +22434,2025-03-09T20:26:48.630820-07:00,1658.0,10.85224,10852.24 +22435,2025-03-09T20:26:59.480572-07:00,1691.0,10.849752,10849.752 +22436,2025-03-09T20:27:10.340579-07:00,1698.0,10.860007,10860.007 +22437,2025-03-09T20:27:21.198772-07:00,1603.0,10.858193,10858.193 +22438,2025-03-09T20:27:32.050587-07:00,1682.0,10.851815,10851.815 +22439,2025-03-09T20:27:42.899604-07:00,1631.0,10.849017,10849.017 +22440,2025-03-09T20:27:53.757875-07:00,1708.0,10.858271,10858.271 +22441,2025-03-09T20:28:04.613872-07:00,1677.0,10.855997,10855.997 +22442,2025-03-09T20:28:15.469598-07:00,1695.0,10.855726,10855.726 +22443,2025-03-09T20:28:26.316575-07:00,1705.0,10.846977,10846.977 +22444,2025-03-09T20:28:37.168596-07:00,1675.0,10.852021,10852.021 +22445,2025-03-09T20:28:48.020594-07:00,1621.0,10.851998,10851.998 +22446,2025-03-09T20:28:58.867591-07:00,1617.0,10.846997,10846.997 +22447,2025-03-09T20:29:09.732703-07:00,1662.0,10.865112,10865.112 +22448,2025-03-09T20:29:20.582633-07:00,1694.0,10.84993,10849.93 +22449,2025-03-09T20:29:31.442734-07:00,1675.0,10.860101,10860.101 +22450,2025-03-09T20:29:42.289855-07:00,1707.0,10.847121,10847.121 +22451,2025-03-09T20:29:53.140599-07:00,1662.0,10.850744,10850.744 +22452,2025-03-09T20:30:04.000570-07:00,1702.0,10.859971,10859.971 +22453,2025-03-09T20:30:14.854596-07:00,1693.0,10.854026,10854.026 +22454,2025-03-09T20:30:25.702845-07:00,1680.0,10.848249,10848.249 +22455,2025-03-09T20:30:36.558736-07:00,1620.0,10.855891,10855.891 +22456,2025-03-09T20:30:47.408601-07:00,1613.0,10.849865,10849.865 +22457,2025-03-09T20:30:58.265744-07:00,1683.0,10.857143,10857.143 +22458,2025-03-09T20:31:09.117602-07:00,1704.0,10.851858,10851.858 +22459,2025-03-09T20:31:19.965868-07:00,1693.0,10.848266,10848.266 +22460,2025-03-09T20:31:30.828600-07:00,1699.0,10.862732,10862.732 +22461,2025-03-09T20:31:41.683916-07:00,1620.0,10.855316,10855.316 +22462,2025-03-09T20:31:52.535592-07:00,1685.0,10.851676,10851.676 +22463,2025-03-09T20:32:03.396841-07:00,1709.0,10.861249,10861.249 +22464,2025-03-09T20:32:14.250597-07:00,1702.0,10.853756,10853.756 +22465,2025-03-09T20:32:25.102596-07:00,1674.0,10.851999,10851.999 +22466,2025-03-09T20:32:35.954600-07:00,1644.0,10.852004,10852.004 +22467,2025-03-09T20:32:46.816415-07:00,1664.0,10.861815,10861.815 +22468,2025-03-09T20:32:57.661645-07:00,1621.0,10.84523,10845.23 +22469,2025-03-09T20:33:08.521652-07:00,1680.0,10.860007,10860.007 +22470,2025-03-09T20:33:19.380986-07:00,1620.0,10.859334,10859.334 +22471,2025-03-09T20:33:30.226587-07:00,1685.0,10.845601,10845.601 +22472,2025-03-09T20:33:41.086596-07:00,1659.0,10.860009,10860.009 +22473,2025-03-09T20:33:51.949746-07:00,1617.0,10.86315,10863.15 +22474,2025-03-09T20:34:02.804600-07:00,1648.0,10.854854,10854.854 +22475,2025-03-09T20:34:13.658835-07:00,1696.0,10.854235,10854.235 +22476,2025-03-09T20:34:24.525061-07:00,1630.0,10.866226,10866.226 +22477,2025-03-09T20:34:35.374636-07:00,1654.0,10.849575,10849.575 +22478,2025-03-09T20:34:36.466159-07:00,1694.0,1.091523,1091.523 +22479,2025-03-09T20:34:46.233593-07:00,1689.0,9.767434,9767.434 +22480,2025-03-09T20:34:57.086594-07:00,1618.0,10.853001,10853.001 +22481,2025-03-09T20:35:07.943833-07:00,1678.0,10.857239,10857.239 +22482,2025-03-09T20:35:18.810836-07:00,1648.0,10.867003,10867.003 +22483,2025-03-09T20:35:29.669693-07:00,1631.0,10.858857,10858.857 +22484,2025-03-09T20:35:40.519949-07:00,1707.0,10.850256,10850.256 +22485,2025-03-09T20:35:51.372670-07:00,1607.0,10.852721,10852.721 +22486,2025-03-09T20:36:02.238591-07:00,1685.0,10.865921,10865.921 +22487,2025-03-09T20:36:13.095138-07:00,1635.0,10.856547,10856.547 +22488,2025-03-09T20:36:23.951905-07:00,1682.0,10.856767,10856.767 +22489,2025-03-09T20:36:34.819054-07:00,1627.0,10.867149,10867.149 +22490,2025-03-09T20:36:45.675829-07:00,1665.0,10.856775,10856.775 +22491,2025-03-09T20:36:56.537702-07:00,1661.0,10.861873,10861.873 +22492,2025-03-09T20:37:07.397886-07:00,1616.0,10.860184,10860.184 +22493,2025-03-09T20:37:18.251650-07:00,1695.0,10.853764,10853.764 +22494,2025-03-09T20:37:29.108620-07:00,1703.0,10.85697,10856.97 +22495,2025-03-09T20:37:39.971974-07:00,1622.0,10.863354,10863.354 +22496,2025-03-09T20:37:50.827938-07:00,1701.0,10.855964,10855.964 +22497,2025-03-09T20:38:01.693595-07:00,1662.0,10.865657,10865.657 +22498,2025-03-09T20:38:12.552742-07:00,1626.0,10.859147,10859.147 +22499,2025-03-09T20:38:23.402597-07:00,1650.0,10.849855,10849.855 +22500,2025-03-09T20:38:34.268872-07:00,1689.0,10.866275,10866.275 +22501,2025-03-09T20:38:45.123239-07:00,1702.0,10.854367,10854.367 +22502,2025-03-09T20:38:55.987739-07:00,1611.0,10.8645,10864.5 +22503,2025-03-09T20:39:06.853603-07:00,1677.0,10.865864,10865.864 +22504,2025-03-09T20:39:17.706592-07:00,1697.0,10.852989,10852.989 +22505,2025-03-09T20:39:28.564895-07:00,1685.0,10.858303,10858.303 +22506,2025-03-09T20:39:39.430287-07:00,1609.0,10.865392,10865.392 +22507,2025-03-09T20:39:50.283994-07:00,1683.0,10.853707,10853.707 +22508,2025-03-09T20:40:01.149632-07:00,1682.0,10.865638,10865.638 +22509,2025-03-09T20:40:12.003656-07:00,1691.0,10.854024,10854.024 +22510,2025-03-09T20:40:22.858144-07:00,1679.0,10.854488,10854.488 +22511,2025-03-09T20:40:33.721574-07:00,1631.0,10.86343,10863.43 +22512,2025-03-09T20:40:44.577714-07:00,1681.0,10.85614,10856.14 +22513,2025-03-09T20:40:55.427589-07:00,1634.0,10.849875,10849.875 +22514,2025-03-09T20:41:06.290593-07:00,1655.0,10.863004,10863.004 +22515,2025-03-09T20:41:17.150666-07:00,1612.0,10.860073,10860.073 +22516,2025-03-09T20:41:28.006656-07:00,1680.0,10.85599,10855.99 +22517,2025-03-09T20:41:38.869181-07:00,1690.0,10.862525,10862.525 +22518,2025-03-09T20:41:49.727910-07:00,1667.0,10.858729,10858.729 +22519,2025-03-09T20:42:00.596590-07:00,1689.0,10.86868,10868.68 +22520,2025-03-09T20:42:11.459711-07:00,1680.0,10.863121,10863.121 +22521,2025-03-09T20:42:22.315597-07:00,1655.0,10.855886,10855.886 +22522,2025-03-09T20:42:33.183835-07:00,1706.0,10.868238,10868.238 +22523,2025-03-09T20:42:44.036597-07:00,1615.0,10.852762,10852.762 +22524,2025-03-09T20:42:54.901836-07:00,1633.0,10.865239,10865.239 +22525,2025-03-09T20:43:05.757588-07:00,1679.0,10.855752,10855.752 +22526,2025-03-09T20:43:16.615864-07:00,1675.0,10.858276,10858.276 +22527,2025-03-09T20:43:27.477192-07:00,1628.0,10.861328,10861.328 +22528,2025-03-09T20:43:38.330975-07:00,1701.0,10.853783,10853.783 +22529,2025-03-09T20:43:49.196903-07:00,1647.0,10.865928,10865.928 +22530,2025-03-09T20:44:00.061637-07:00,1647.0,10.864734,10864.734 +22531,2025-03-09T20:44:10.913598-07:00,1648.0,10.851961,10851.961 +22532,2025-03-09T20:44:21.772186-07:00,1614.0,10.858588,10858.588 +22533,2025-03-09T20:44:32.630593-07:00,1603.0,10.858407,10858.407 +22534,2025-03-09T20:44:43.489589-07:00,1615.0,10.858996,10858.996 +22535,2025-03-09T20:44:54.349621-07:00,1685.0,10.860032,10860.032 +22536,2025-03-09T20:45:05.206770-07:00,1612.0,10.857149,10857.149 +22537,2025-03-09T20:45:16.071897-07:00,1618.0,10.865127,10865.127 +22538,2025-03-09T20:45:26.918934-07:00,1666.0,10.847037,10847.037 +22539,2025-03-09T20:45:37.783604-07:00,1616.0,10.86467,10864.67 +22540,2025-03-09T20:45:48.636054-07:00,1611.0,10.85245,10852.45 +22541,2025-03-09T20:45:59.495599-07:00,1669.0,10.859545,10859.545 +22542,2025-03-09T20:46:10.350617-07:00,1698.0,10.855018,10855.018 +22543,2025-03-09T20:46:21.211587-07:00,1632.0,10.86097,10860.97 +22544,2025-03-09T20:46:32.066596-07:00,1690.0,10.855009,10855.009 +22545,2025-03-09T20:46:42.927593-07:00,1616.0,10.860997,10860.997 +22546,2025-03-09T20:46:53.782598-07:00,1702.0,10.855005,10855.005 +22547,2025-03-09T20:47:04.643570-07:00,1696.0,10.860972,10860.972 +22548,2025-03-09T20:47:15.497583-07:00,1626.0,10.854013,10854.013 +22549,2025-03-09T20:47:26.365672-07:00,1679.0,10.868089,10868.089 +22550,2025-03-09T20:47:37.216595-07:00,1613.0,10.850923,10850.923 +22551,2025-03-09T20:47:48.074495-07:00,1705.0,10.8579,10857.9 +22552,2025-03-09T20:47:58.939926-07:00,1650.0,10.865431,10865.431 +22553,2025-03-09T20:48:09.795886-07:00,1687.0,10.85596,10855.96 +22554,2025-03-09T20:48:20.663572-07:00,1702.0,10.867686,10867.686 +22555,2025-03-09T20:48:31.524952-07:00,1705.0,10.86138,10861.38 +22556,2025-03-09T20:48:42.386722-07:00,1702.0,10.86177,10861.77 +22557,2025-03-09T20:48:53.249393-07:00,1686.0,10.862671,10862.671 +22558,2025-03-09T20:49:04.111846-07:00,1646.0,10.862453,10862.453 +22559,2025-03-09T20:49:14.967198-07:00,1702.0,10.855352,10855.352 +22560,2025-03-09T20:49:25.831596-07:00,1671.0,10.864398,10864.398 +22561,2025-03-09T20:49:36.691598-07:00,1639.0,10.860002,10860.002 +22562,2025-03-09T20:49:47.556598-07:00,1662.0,10.865,10865.0 +22563,2025-03-09T20:49:58.419094-07:00,1616.0,10.862496,10862.496 +22564,2025-03-09T20:50:09.275878-07:00,1678.0,10.856784,10856.784 +22565,2025-03-09T20:50:20.140427-07:00,1698.0,10.864549,10864.549 +22566,2025-03-09T20:50:30.989838-07:00,1634.0,10.849411,10849.411 +22567,2025-03-09T20:50:41.850281-07:00,1697.0,10.860443,10860.443 +22568,2025-03-09T20:50:52.712824-07:00,1681.0,10.862543,10862.543 +22569,2025-03-09T20:51:03.568834-07:00,1678.0,10.85601,10856.01 +22570,2025-03-09T20:51:14.426871-07:00,1659.0,10.858037,10858.037 +22571,2025-03-09T20:51:25.282991-07:00,1615.0,10.85612,10856.12 +22572,2025-03-09T20:51:36.148755-07:00,1649.0,10.865764,10865.764 +22573,2025-03-09T20:51:47.006726-07:00,1611.0,10.857971,10857.971 +22574,2025-03-09T20:51:57.869579-07:00,1655.0,10.862853,10862.853 +22575,2025-03-09T20:52:08.736386-07:00,1646.0,10.866807,10866.807 +22576,2025-03-09T20:52:19.599972-07:00,1683.0,10.863586,10863.586 +22577,2025-03-09T20:52:30.461595-07:00,1702.0,10.861623,10861.623 +22578,2025-03-09T20:52:41.322596-07:00,1616.0,10.861001,10861.001 +22579,2025-03-09T20:52:52.178262-07:00,1674.0,10.855666,10855.666 +22580,2025-03-09T20:53:03.040288-07:00,1658.0,10.862026,10862.026 +22581,2025-03-09T20:53:13.890803-07:00,1693.0,10.850515,10850.515 +22582,2025-03-09T20:53:24.759739-07:00,1605.0,10.868936,10868.936 +22583,2025-03-09T20:53:35.623216-07:00,1687.0,10.863477,10863.477 +22584,2025-03-09T20:53:46.481875-07:00,1611.0,10.858659,10858.659 +22585,2025-03-09T20:53:57.343959-07:00,1658.0,10.862084,10862.084 +22586,2025-03-09T20:54:08.202598-07:00,1701.0,10.858639,10858.639 +22587,2025-03-09T20:54:19.067804-07:00,1696.0,10.865206,10865.206 +22588,2025-03-09T20:54:29.929591-07:00,1687.0,10.861787,10861.787 +22589,2025-03-09T20:54:40.794637-07:00,1665.0,10.865046,10865.046 +22590,2025-03-09T20:54:51.661945-07:00,1699.0,10.867308,10867.308 +22591,2025-03-09T20:55:02.525922-07:00,1698.0,10.863977,10863.977 +22592,2025-03-09T20:55:13.384600-07:00,1606.0,10.858678,10858.678 +22593,2025-03-09T20:55:24.246602-07:00,1607.0,10.862002,10862.002 +22594,2025-03-09T20:55:35.112593-07:00,1685.0,10.865991,10865.991 +22595,2025-03-09T20:55:45.979144-07:00,1616.0,10.866551,10866.551 +22596,2025-03-09T20:55:56.844685-07:00,1661.0,10.865541,10865.541 +22597,2025-03-09T20:56:07.708878-07:00,1669.0,10.864193,10864.193 +22598,2025-03-09T20:56:18.574701-07:00,1615.0,10.865823,10865.823 +22599,2025-03-09T20:56:29.430574-07:00,1653.0,10.855873,10855.873 +22600,2025-03-09T20:56:40.291722-07:00,1659.0,10.861148,10861.148 +22601,2025-03-09T20:56:51.152616-07:00,1606.0,10.860894,10860.894 +22602,2025-03-09T20:57:02.017932-07:00,1697.0,10.865316,10865.316 +22603,2025-03-09T20:57:12.878940-07:00,1702.0,10.861008,10861.008 +22604,2025-03-09T20:57:23.743595-07:00,1638.0,10.864655,10864.655 +22605,2025-03-09T20:57:34.597574-07:00,1631.0,10.853979,10853.979 +22606,2025-03-09T20:57:45.462592-07:00,1682.0,10.865018,10865.018 +22607,2025-03-09T20:57:56.317845-07:00,1659.0,10.855253,10855.253 +22608,2025-03-09T20:58:07.179795-07:00,1648.0,10.86195,10861.95 +22609,2025-03-09T20:58:18.040783-07:00,1659.0,10.860988,10860.988 +22610,2025-03-09T20:58:28.899073-07:00,1679.0,10.85829,10858.29 +22611,2025-03-09T20:58:39.755870-07:00,1630.0,10.856797,10856.797 +22612,2025-03-09T20:58:50.612884-07:00,1697.0,10.857014,10857.014 +22613,2025-03-09T20:59:01.473905-07:00,1648.0,10.861021,10861.021 +22614,2025-03-09T20:59:12.341834-07:00,1664.0,10.867929,10867.929 +22615,2025-03-09T20:59:23.205591-07:00,1695.0,10.863757,10863.757 +22616,2025-03-09T20:59:34.059703-07:00,1686.0,10.854112,10854.112 +22617,2025-03-09T20:59:44.926624-07:00,1661.0,10.866921,10866.921 +22618,2025-03-09T20:59:55.801842-07:00,1691.0,10.875218,10875.218 +22619,2025-03-09T21:00:06.656754-07:00,1619.0,10.854912,10854.912 +22620,2025-03-09T21:00:17.522589-07:00,1610.0,10.865835,10865.835 +22621,2025-03-09T21:00:28.383804-07:00,1665.0,10.861215,10861.215 +22622,2025-03-09T21:00:39.244593-07:00,1699.0,10.860789,10860.789 +22623,2025-03-09T21:00:50.111150-07:00,1616.0,10.866557,10866.557 +22624,2025-03-09T21:01:00.975466-07:00,1696.0,10.864316,10864.316 +22625,2025-03-09T21:01:11.839945-07:00,1663.0,10.864479,10864.479 +22626,2025-03-09T21:01:22.709580-07:00,1680.0,10.869635,10869.635 +22627,2025-03-09T21:01:33.566914-07:00,1635.0,10.857334,10857.334 +22628,2025-03-09T21:01:44.440260-07:00,1615.0,10.873346,10873.346 +22629,2025-03-09T21:01:55.305608-07:00,1694.0,10.865348,10865.348 +22630,2025-03-09T21:02:06.162593-07:00,1659.0,10.856985,10856.985 +22631,2025-03-09T21:02:17.026829-07:00,1695.0,10.864236,10864.236 +22632,2025-03-09T21:02:27.880592-07:00,1641.0,10.853763,10853.763 +22633,2025-03-09T21:02:38.743597-07:00,1680.0,10.863005,10863.005 +22634,2025-03-09T21:02:49.615883-07:00,1674.0,10.872286,10872.286 +22635,2025-03-09T21:03:00.477547-07:00,1663.0,10.861664,10861.664 +22636,2025-03-09T21:03:11.346832-07:00,1696.0,10.869285,10869.285 +22637,2025-03-09T21:03:22.204725-07:00,1694.0,10.857893,10857.893 +22638,2025-03-09T21:03:33.066590-07:00,1692.0,10.861865,10861.865 +22639,2025-03-09T21:03:43.938854-07:00,1680.0,10.872264,10872.264 +22640,2025-03-09T21:03:54.799131-07:00,1616.0,10.860277,10860.277 +22641,2025-03-09T21:04:05.660597-07:00,1639.0,10.861466,10861.466 +22642,2025-03-09T21:04:16.515597-07:00,1680.0,10.855,10855.0 +22643,2025-03-09T21:04:27.370855-07:00,1653.0,10.855258,10855.258 +22644,2025-03-09T21:04:38.234730-07:00,1634.0,10.863875,10863.875 +22645,2025-03-09T21:04:49.098597-07:00,1633.0,10.863867,10863.867 +22646,2025-03-09T21:04:59.952832-07:00,1613.0,10.854235,10854.235 +22647,2025-03-09T21:05:10.808597-07:00,1616.0,10.855765,10855.765 +22648,2025-03-09T21:05:21.673921-07:00,1703.0,10.865324,10865.324 +22649,2025-03-09T21:05:32.541720-07:00,1664.0,10.867799,10867.799 +22650,2025-03-09T21:05:43.436118-07:00,1681.0,10.894398,10894.398 +22651,2025-03-09T21:05:54.293837-07:00,1685.0,10.857719,10857.719 +22652,2025-03-09T21:06:05.162836-07:00,1661.0,10.868999,10868.999 +22653,2025-03-09T21:06:16.030557-07:00,1651.0,10.867721,10867.721 +22654,2025-03-09T21:06:26.898988-07:00,1645.0,10.868431,10868.431 +22655,2025-03-09T21:06:37.758837-07:00,1635.0,10.859849,10859.849 +22656,2025-03-09T21:06:48.627527-07:00,1647.0,10.86869,10868.69 +22657,2025-03-09T21:06:59.486835-07:00,1653.0,10.859308,10859.308 +22658,2025-03-09T21:07:10.353442-07:00,1694.0,10.866607,10866.607 +22659,2025-03-09T21:07:21.222124-07:00,1678.0,10.868682,10868.682 +22660,2025-03-09T21:07:32.079092-07:00,1650.0,10.856968,10856.968 +22661,2025-03-09T21:07:42.950874-07:00,1646.0,10.871782,10871.782 +22662,2025-03-09T21:07:53.804823-07:00,1648.0,10.853949,10853.949 +22663,2025-03-09T21:08:04.675583-07:00,1635.0,10.87076,10870.76 +22664,2025-03-09T21:08:15.538173-07:00,1671.0,10.86259,10862.59 +22665,2025-03-09T21:08:26.395552-07:00,1625.0,10.857379,10857.379 +22666,2025-03-09T21:08:37.267077-07:00,1695.0,10.871525,10871.525 +22667,2025-03-09T21:08:48.132065-07:00,1697.0,10.864988,10864.988 +22668,2025-03-09T21:08:59.003128-07:00,1605.0,10.871063,10871.063 +22669,2025-03-09T21:09:09.867111-07:00,1680.0,10.863983,10863.983 +22670,2025-03-09T21:09:20.743206-07:00,1674.0,10.876095,10876.095 +22671,2025-03-09T21:09:31.604989-07:00,1603.0,10.861783,10861.783 +22672,2025-03-09T21:09:42.465155-07:00,1618.0,10.860166,10860.166 +22673,2025-03-09T21:09:53.329187-07:00,1698.0,10.864032,10864.032 +22674,2025-03-09T21:10:04.206436-07:00,1668.0,10.877249,10877.249 +22675,2025-03-09T21:10:15.067165-07:00,1678.0,10.860729,10860.729 +22676,2025-03-09T21:10:25.938225-07:00,1647.0,10.87106,10871.06 +22677,2025-03-09T21:10:36.804819-07:00,1625.0,10.866594,10866.594 +22678,2025-03-09T21:10:47.674087-07:00,1694.0,10.869268,10869.268 +22679,2025-03-09T21:10:58.536040-07:00,1643.0,10.861953,10861.953 +22680,2025-03-09T21:11:09.412157-07:00,1699.0,10.876117,10876.117 +22681,2025-03-09T21:11:20.273842-07:00,1699.0,10.861685,10861.685 +22682,2025-03-09T21:11:31.143982-07:00,1696.0,10.87014,10870.14 +22683,2025-03-09T21:11:42.015830-07:00,1619.0,10.871848,10871.848 +22684,2025-03-09T21:11:52.878501-07:00,1630.0,10.862671,10862.671 +22685,2025-03-09T21:12:03.748117-07:00,1699.0,10.869616,10869.616 +22686,2025-03-09T21:12:14.609263-07:00,1631.0,10.861146,10861.146 +22687,2025-03-09T21:12:25.477830-07:00,1680.0,10.868567,10868.567 +22688,2025-03-09T21:12:36.339563-07:00,1648.0,10.861733,10861.733 +22689,2025-03-09T21:12:47.211127-07:00,1621.0,10.871564,10871.564 +22690,2025-03-09T21:12:58.082061-07:00,1639.0,10.870934,10870.934 +22691,2025-03-09T21:13:08.948129-07:00,1652.0,10.866068,10866.068 +22692,2025-03-09T21:13:19.816115-07:00,1687.0,10.867986,10867.986 +22693,2025-03-09T21:13:30.679842-07:00,1690.0,10.863727,10863.727 +22694,2025-03-09T21:13:41.550833-07:00,1694.0,10.870991,10870.991 +22695,2025-03-09T21:13:52.418443-07:00,1650.0,10.86761,10867.61 +22696,2025-03-09T21:14:03.275864-07:00,1659.0,10.857421,10857.421 +22697,2025-03-09T21:14:14.143223-07:00,1618.0,10.867359,10867.359 +22698,2025-03-09T21:14:25.013842-07:00,1654.0,10.870619,10870.619 +22699,2025-03-09T21:14:35.874984-07:00,1637.0,10.861142,10861.142 +22700,2025-03-09T21:14:46.745115-07:00,1613.0,10.870131,10870.131 +22701,2025-03-09T21:14:57.601619-07:00,1601.0,10.856504,10856.504 +22702,2025-03-09T21:15:08.474964-07:00,1600.0,10.873345,10873.345 +22703,2025-03-09T21:15:19.340576-07:00,1691.0,10.865612,10865.612 +22704,2025-03-09T21:15:30.205839-07:00,1605.0,10.865263,10865.263 +22705,2025-03-09T21:15:41.072115-07:00,1627.0,10.866276,10866.276 +22706,2025-03-09T21:15:51.939108-07:00,1654.0,10.866993,10866.993 +22707,2025-03-09T21:16:02.802837-07:00,1625.0,10.863729,10863.729 +22708,2025-03-09T21:16:13.668839-07:00,1651.0,10.866002,10866.002 +22709,2025-03-09T21:16:24.543755-07:00,1683.0,10.874916,10874.916 +22710,2025-03-09T21:16:35.409024-07:00,1670.0,10.865269,10865.269 +22711,2025-03-09T21:16:46.276179-07:00,1681.0,10.867155,10867.155 +22712,2025-03-09T21:16:57.148949-07:00,1675.0,10.87277,10872.77 +22713,2025-03-09T21:17:08.008296-07:00,1633.0,10.859347,10859.347 +22714,2025-03-09T21:17:18.881486-07:00,1616.0,10.87319,10873.19 +22715,2025-03-09T21:17:29.749979-07:00,1648.0,10.868493,10868.493 +22716,2025-03-09T21:17:40.617838-07:00,1682.0,10.867859,10867.859 +22717,2025-03-09T21:17:51.477951-07:00,1691.0,10.860113,10860.113 +22718,2025-03-09T21:18:02.354119-07:00,1657.0,10.876168,10876.168 +22719,2025-03-09T21:18:13.210477-07:00,1695.0,10.856358,10856.358 +22720,2025-03-09T21:18:24.079060-07:00,1696.0,10.868583,10868.583 +22721,2025-03-09T21:18:34.947884-07:00,1679.0,10.868824,10868.824 +22722,2025-03-09T21:18:45.812157-07:00,1681.0,10.864273,10864.273 +22723,2025-03-09T21:18:56.678345-07:00,1669.0,10.866188,10866.188 +22724,2025-03-09T21:19:07.553177-07:00,1680.0,10.874832,10874.832 +22725,2025-03-09T21:19:18.420692-07:00,1618.0,10.867515,10867.515 +22726,2025-03-09T21:19:29.290086-07:00,1611.0,10.869394,10869.394 +22727,2025-03-09T21:19:40.157691-07:00,1638.0,10.867605,10867.605 +22728,2025-03-09T21:19:51.023218-07:00,1655.0,10.865527,10865.527 +22729,2025-03-09T21:20:01.902019-07:00,1697.0,10.878801,10878.801 +22730,2025-03-09T21:20:12.763842-07:00,1665.0,10.861823,10861.823 +22731,2025-03-09T21:20:23.627007-07:00,1616.0,10.863165,10863.165 +22732,2025-03-09T21:20:34.504986-07:00,1695.0,10.877979,10877.979 +22733,2025-03-09T21:20:45.370832-07:00,1637.0,10.865846,10865.846 +22734,2025-03-09T21:20:56.228184-07:00,1617.0,10.857352,10857.352 +22735,2025-03-09T21:21:07.098117-07:00,1653.0,10.869933,10869.933 +22736,2025-03-09T21:21:17.968025-07:00,1647.0,10.869908,10869.908 +22737,2025-03-09T21:21:28.841129-07:00,1653.0,10.873104,10873.104 +22738,2025-03-09T21:21:39.710838-07:00,1642.0,10.869709,10869.709 +22739,2025-03-09T21:21:50.571836-07:00,1694.0,10.860998,10860.998 +22740,2025-03-09T21:22:01.454847-07:00,1617.0,10.883011,10883.011 +22741,2025-03-09T21:22:12.317202-07:00,1694.0,10.862355,10862.355 +22742,2025-03-09T21:22:23.190825-07:00,1648.0,10.873623,10873.623 +22743,2025-03-09T21:22:34.052865-07:00,1697.0,10.86204,10862.04 +22744,2025-03-09T21:22:44.927887-07:00,1630.0,10.875022,10875.022 +22745,2025-03-09T21:22:55.787836-07:00,1601.0,10.859949,10859.949 +22746,2025-03-09T21:23:06.661835-07:00,1698.0,10.873999,10873.999 +22747,2025-03-09T21:23:17.536962-07:00,1687.0,10.875127,10875.127 +22748,2025-03-09T21:23:28.405137-07:00,1613.0,10.868175,10868.175 +22749,2025-03-09T21:23:39.264245-07:00,1680.0,10.859108,10859.108 +22750,2025-03-09T21:23:50.136189-07:00,1671.0,10.871944,10871.944 +22751,2025-03-09T21:24:01.010980-07:00,1659.0,10.874791,10874.791 +22752,2025-03-09T21:24:11.870841-07:00,1611.0,10.859861,10859.861 +22753,2025-03-09T21:24:22.744839-07:00,1665.0,10.873998,10873.998 +22754,2025-03-09T21:24:33.601836-07:00,1623.0,10.856997,10856.997 +22755,2025-03-09T21:24:44.471352-07:00,1651.0,10.869516,10869.516 +22756,2025-03-09T21:24:55.342157-07:00,1650.0,10.870805,10870.805 +22757,2025-03-09T21:25:06.212170-07:00,1693.0,10.870013,10870.013 +22758,2025-03-09T21:25:17.074022-07:00,1605.0,10.861852,10861.852 +22759,2025-03-09T21:25:27.945039-07:00,1655.0,10.871017,10871.017 +22760,2025-03-09T21:25:38.816865-07:00,1617.0,10.871826,10871.826 +22761,2025-03-09T21:25:49.676057-07:00,1662.0,10.859192,10859.192 +22762,2025-03-09T21:26:00.549648-07:00,1636.0,10.873591,10873.591 +22763,2025-03-09T21:26:11.417503-07:00,1609.0,10.867855,10867.855 +22764,2025-03-09T21:26:22.275833-07:00,1671.0,10.85833,10858.33 +22765,2025-03-09T21:26:33.150416-07:00,1616.0,10.874583,10874.583 +22766,2025-03-09T21:26:44.012294-07:00,1602.0,10.861878,10861.878 +22767,2025-03-09T21:26:54.882146-07:00,1648.0,10.869852,10869.852 +22768,2025-03-09T21:27:05.744839-07:00,1658.0,10.862693,10862.693 +22769,2025-03-09T21:27:16.613311-07:00,1657.0,10.868472,10868.472 +22770,2025-03-09T21:27:27.485447-07:00,1690.0,10.872136,10872.136 +22771,2025-03-09T21:27:38.356671-07:00,1611.0,10.871224,10871.224 +22772,2025-03-09T21:27:49.218118-07:00,1699.0,10.861447,10861.447 +22773,2025-03-09T21:28:00.076856-07:00,1698.0,10.858738,10858.738 +22774,2025-03-09T21:28:10.947839-07:00,1670.0,10.870983,10870.983 +22775,2025-03-09T21:28:21.804098-07:00,1643.0,10.856259,10856.259 +22776,2025-03-09T21:28:32.661972-07:00,1630.0,10.857874,10857.874 +22777,2025-03-09T21:28:43.524157-07:00,1646.0,10.862185,10862.185 +22778,2025-03-09T21:28:54.385900-07:00,1687.0,10.861743,10861.743 +22779,2025-03-09T21:29:05.259113-07:00,1616.0,10.873213,10873.213 +22780,2025-03-09T21:29:16.111870-07:00,1695.0,10.852757,10852.757 +22781,2025-03-09T21:29:26.975840-07:00,1671.0,10.86397,10863.97 +22782,2025-03-09T21:29:37.843550-07:00,1633.0,10.86771,10867.71 +22783,2025-03-09T21:29:48.697521-07:00,1623.0,10.853971,10853.971 +22784,2025-03-09T21:29:59.550103-07:00,1648.0,10.852582,10852.582 +22785,2025-03-09T21:30:10.408193-07:00,1603.0,10.85809,10858.09 +22786,2025-03-09T21:30:21.261788-07:00,1634.0,10.853595,10853.595 +22787,2025-03-09T21:30:32.119314-07:00,1693.0,10.857526,10857.526 +22788,2025-03-09T21:30:42.971653-07:00,1687.0,10.852339,10852.339 +22789,2025-03-09T21:30:53.837066-07:00,1698.0,10.865413,10865.413 +22790,2025-03-09T21:31:04.695582-07:00,1683.0,10.858516,10858.516 +22791,2025-03-09T21:31:15.553070-07:00,1664.0,10.857488,10857.488 +22792,2025-03-09T21:31:26.420834-07:00,1664.0,10.867764,10867.764 +22793,2025-03-09T21:31:37.277835-07:00,1677.0,10.857001,10857.001 +22794,2025-03-09T21:31:48.132288-07:00,1630.0,10.854453,10854.453 +22795,2025-03-09T21:31:58.991836-07:00,1667.0,10.859548,10859.548 +22796,2025-03-09T21:32:09.851171-07:00,1647.0,10.859335,10859.335 +22797,2025-03-09T21:32:20.715192-07:00,1696.0,10.864021,10864.021 +22798,2025-03-09T21:32:31.576082-07:00,1697.0,10.86089,10860.89 +22799,2025-03-09T21:32:42.437318-07:00,1627.0,10.861236,10861.236 +22800,2025-03-09T21:32:53.290839-07:00,1619.0,10.853521,10853.521 +22801,2025-03-09T21:33:04.151964-07:00,1677.0,10.861125,10861.125 +22802,2025-03-09T21:33:15.012044-07:00,1591.0,10.86008,10860.08 +22803,2025-03-09T21:33:25.873085-07:00,1698.0,10.861041,10861.041 +22804,2025-03-09T21:33:36.728838-07:00,1612.0,10.855753,10855.753 +22805,2025-03-09T21:33:47.592878-07:00,1700.0,10.86404,10864.04 +22806,2025-03-09T21:33:58.457140-07:00,1618.0,10.864262,10864.262 +22807,2025-03-09T21:34:09.324244-07:00,1616.0,10.867104,10867.104 +22808,2025-03-09T21:34:20.193847-07:00,1694.0,10.869603,10869.603 +22809,2025-03-09T21:34:31.056071-07:00,1655.0,10.862224,10862.224 +22810,2025-03-09T21:34:41.922173-07:00,1648.0,10.866102,10866.102 +22811,2025-03-09T21:34:52.772200-07:00,1698.0,10.850027,10850.027 +22812,2025-03-09T21:35:03.639169-07:00,1689.0,10.866969,10866.969 +22813,2025-03-09T21:35:14.494069-07:00,1629.0,10.8549,10854.9 +22814,2025-03-09T21:35:25.353845-07:00,1653.0,10.859776,10859.776 +22815,2025-03-09T21:35:36.213842-07:00,1625.0,10.859997,10859.997 +22816,2025-03-09T21:35:47.083115-07:00,1617.0,10.869273,10869.273 +22817,2025-03-09T21:35:57.943081-07:00,1694.0,10.859966,10859.966 +22818,2025-03-09T21:36:08.801899-07:00,1694.0,10.858818,10858.818 +22819,2025-03-09T21:36:19.662667-07:00,1699.0,10.860768,10860.768 +22820,2025-03-09T21:36:30.527020-07:00,1699.0,10.864353,10864.353 +22821,2025-03-09T21:36:41.389639-07:00,1693.0,10.862619,10862.619 +22822,2025-03-09T21:36:52.261078-07:00,1696.0,10.871439,10871.439 +22823,2025-03-09T21:37:03.115838-07:00,1665.0,10.85476,10854.76 +22824,2025-03-09T21:37:13.987886-07:00,1652.0,10.872048,10872.048 +22825,2025-03-09T21:37:24.853840-07:00,1669.0,10.865954,10865.954 +22826,2025-03-09T21:37:35.708840-07:00,1658.0,10.855,10855.0 +22827,2025-03-09T21:37:46.560942-07:00,1661.0,10.852102,10852.102 +22828,2025-03-09T21:37:57.425463-07:00,1695.0,10.864521,10864.521 +22829,2025-03-09T21:38:08.281835-07:00,1698.0,10.856372,10856.372 +22830,2025-03-09T21:38:19.137040-07:00,1697.0,10.855205,10855.205 +22831,2025-03-09T21:38:29.989841-07:00,1622.0,10.852801,10852.801 +22832,2025-03-09T21:38:40.849877-07:00,1683.0,10.860036,10860.036 +22833,2025-03-09T21:38:51.700496-07:00,1631.0,10.850619,10850.619 +22834,2025-03-09T21:39:02.557840-07:00,1689.0,10.857344,10857.344 +22835,2025-03-09T21:39:13.408837-07:00,1686.0,10.850997,10850.997 +22836,2025-03-09T21:39:24.267836-07:00,1651.0,10.858999,10858.999 +22837,2025-03-09T21:39:35.128841-07:00,1650.0,10.861005,10861.005 +22838,2025-03-09T21:39:45.976839-07:00,1653.0,10.847998,10847.998 +22839,2025-03-09T21:39:56.821082-07:00,1616.0,10.844243,10844.243 +22840,2025-03-09T21:40:07.679840-07:00,1654.0,10.858758,10858.758 +22841,2025-03-09T21:40:18.528840-07:00,1701.0,10.849,10849.0 +22842,2025-03-09T21:40:29.391516-07:00,1686.0,10.862676,10862.676 +22843,2025-03-09T21:40:40.240843-07:00,1659.0,10.849327,10849.327 +22844,2025-03-09T21:40:51.081373-07:00,1613.0,10.84053,10840.53 +22845,2025-03-09T21:41:01.937120-07:00,1639.0,10.855747,10855.747 +22846,2025-03-09T21:41:12.787322-07:00,1614.0,10.850202,10850.202 +22847,2025-03-09T21:41:23.635884-07:00,1697.0,10.848562,10848.562 +22848,2025-03-09T21:41:34.483813-07:00,1692.0,10.847929,10847.929 +22849,2025-03-09T21:41:45.343198-07:00,1679.0,10.859385,10859.385 +22850,2025-03-09T21:41:56.185843-07:00,1633.0,10.842645,10842.645 +22851,2025-03-09T21:42:07.035837-07:00,1647.0,10.849994,10849.994 +22852,2025-03-09T21:42:17.884111-07:00,1647.0,10.848274,10848.274 +22853,2025-03-09T21:42:28.733838-07:00,1616.0,10.849727,10849.727 +22854,2025-03-09T21:42:39.581185-07:00,1635.0,10.847347,10847.347 +22855,2025-03-09T21:42:50.436183-07:00,1669.0,10.854998,10854.998 +22856,2025-03-09T21:43:01.288313-07:00,1680.0,10.85213,10852.13 +22857,2025-03-09T21:43:12.138031-07:00,1642.0,10.849718,10849.718 +22858,2025-03-09T21:43:22.988209-07:00,1681.0,10.850178,10850.178 +22859,2025-03-09T21:43:33.835817-07:00,1669.0,10.847608,10847.608 +22860,2025-03-09T21:43:44.688870-07:00,1654.0,10.853053,10853.053 +22861,2025-03-09T21:43:55.528078-07:00,1614.0,10.839208,10839.208 +22862,2025-03-09T21:44:06.370846-07:00,1697.0,10.842768,10842.768 +22863,2025-03-09T21:44:17.223304-07:00,1693.0,10.852458,10852.458 +22864,2025-03-09T21:44:28.069124-07:00,1619.0,10.84582,10845.82 +22865,2025-03-09T21:44:38.914159-07:00,1630.0,10.845035,10845.035 +22866,2025-03-09T21:44:49.753834-07:00,1651.0,10.839675,10839.675 +22867,2025-03-09T21:45:00.611028-07:00,1677.0,10.857194,10857.194 +22868,2025-03-09T21:45:11.460804-07:00,1648.0,10.849776,10849.776 +22869,2025-03-09T21:45:22.307844-07:00,1626.0,10.84704,10847.04 +22870,2025-03-09T21:45:33.156240-07:00,1632.0,10.848396,10848.396 +22871,2025-03-09T21:45:44.000415-07:00,1620.0,10.844175,10844.175 +22872,2025-03-09T21:45:54.859633-07:00,1627.0,10.859218,10859.218 +22873,2025-03-09T21:46:05.703361-07:00,1651.0,10.843728,10843.728 +22874,2025-03-09T21:46:16.557014-07:00,1662.0,10.853653,10853.653 +22875,2025-03-09T21:46:27.406958-07:00,1614.0,10.849944,10849.944 +22876,2025-03-09T21:46:38.253836-07:00,1675.0,10.846878,10846.878 +22877,2025-03-09T21:46:49.104614-07:00,1645.0,10.850778,10850.778 +22878,2025-03-09T21:46:59.947830-07:00,1676.0,10.843216,10843.216 +22879,2025-03-09T21:47:10.795839-07:00,1645.0,10.848009,10848.009 +22880,2025-03-09T21:47:21.639157-07:00,1634.0,10.843318,10843.318 +22881,2025-03-09T21:47:32.487413-07:00,1653.0,10.848256,10848.256 +22882,2025-03-09T21:47:43.333874-07:00,1698.0,10.846461,10846.461 +22883,2025-03-09T21:47:54.173324-07:00,1618.0,10.83945,10839.45 +22884,2025-03-09T21:48:05.032980-07:00,1701.0,10.859656,10859.656 +22885,2025-03-09T21:48:15.877046-07:00,1610.0,10.844066,10844.066 +22886,2025-03-09T21:48:26.730853-07:00,1633.0,10.853807,10853.807 +22887,2025-03-09T21:48:37.573464-07:00,1659.0,10.842611,10842.611 +22888,2025-03-09T21:48:48.418335-07:00,1694.0,10.844871,10844.871 +22889,2025-03-09T21:48:59.271452-07:00,1681.0,10.853117,10853.117 +22890,2025-03-09T21:49:10.116842-07:00,1659.0,10.84539,10845.39 +22891,2025-03-09T21:49:20.965839-07:00,1671.0,10.848997,10848.997 +22892,2025-03-09T21:49:31.817837-07:00,1706.0,10.851998,10851.998 +22893,2025-03-09T21:49:42.660838-07:00,1697.0,10.843001,10843.001 +22894,2025-03-09T21:49:53.512520-07:00,1616.0,10.851682,10851.682 +22895,2025-03-09T21:50:04.353175-07:00,1661.0,10.840655,10840.655 +22896,2025-03-09T21:50:15.195058-07:00,1677.0,10.841883,10841.883 +22897,2025-03-09T21:50:26.045922-07:00,1706.0,10.850864,10850.864 +22898,2025-03-09T21:50:36.893838-07:00,1653.0,10.847916,10847.916 +22899,2025-03-09T21:50:47.732255-07:00,1697.0,10.838417,10838.417 +22900,2025-03-09T21:50:58.586840-07:00,1617.0,10.854585,10854.585 +22901,2025-03-09T21:51:09.428829-07:00,1616.0,10.841989,10841.989 +22902,2025-03-09T21:51:20.273807-07:00,1607.0,10.844978,10844.978 +22903,2025-03-09T21:51:31.122175-07:00,1674.0,10.848368,10848.368 +22904,2025-03-09T21:51:41.969841-07:00,1691.0,10.847666,10847.666 +22905,2025-03-09T21:51:52.814205-07:00,1628.0,10.844364,10844.364 +22906,2025-03-09T21:52:03.659842-07:00,1653.0,10.845637,10845.637 +22907,2025-03-09T21:52:14.499625-07:00,1629.0,10.839783,10839.783 +22908,2025-03-09T21:52:25.347002-07:00,1695.0,10.847377,10847.377 +22909,2025-03-09T21:52:36.200288-07:00,1649.0,10.853286,10853.286 +22910,2025-03-09T21:52:47.043836-07:00,1648.0,10.843548,10843.548 +22911,2025-03-09T21:52:57.889220-07:00,1659.0,10.845384,10845.384 +22912,2025-03-09T21:53:08.743082-07:00,1660.0,10.853862,10853.862 +22913,2025-03-09T21:53:19.581167-07:00,1695.0,10.838085,10838.085 +22914,2025-03-09T21:53:30.429014-07:00,1665.0,10.847847,10847.847 +22915,2025-03-09T21:53:41.279140-07:00,1648.0,10.850126,10850.126 +22916,2025-03-09T21:53:52.120813-07:00,1693.0,10.841673,10841.673 +22917,2025-03-09T21:54:02.958836-07:00,1648.0,10.838023,10838.023 +22918,2025-03-09T21:54:13.809147-07:00,1650.0,10.850311,10850.311 +22919,2025-03-09T21:54:24.655422-07:00,1651.0,10.846275,10846.275 +22920,2025-03-09T21:54:35.497881-07:00,1685.0,10.842459,10842.459 +22921,2025-03-09T21:54:46.341965-07:00,1699.0,10.844084,10844.084 +22922,2025-03-09T21:54:57.195844-07:00,1613.0,10.853879,10853.879 +22923,2025-03-09T21:55:08.040055-07:00,1691.0,10.844211,10844.211 +22924,2025-03-09T21:55:18.882297-07:00,1648.0,10.842242,10842.242 +22925,2025-03-09T21:55:29.732202-07:00,1679.0,10.849905,10849.905 +22926,2025-03-09T21:55:40.572098-07:00,1616.0,10.839896,10839.896 +22927,2025-03-09T21:55:51.417817-07:00,1703.0,10.845719,10845.719 +22928,2025-03-09T21:56:02.263817-07:00,1702.0,10.846,10846.0 +22929,2025-03-09T21:56:13.115022-07:00,1615.0,10.851205,10851.205 +22930,2025-03-09T21:56:23.956156-07:00,1686.0,10.841134,10841.134 +22931,2025-03-09T21:56:34.812844-07:00,1664.0,10.856688,10856.688 +22932,2025-03-09T21:56:45.661179-07:00,1648.0,10.848335,10848.335 +22933,2025-03-09T21:56:56.507981-07:00,1702.0,10.846802,10846.802 +22934,2025-03-09T21:57:07.347975-07:00,1680.0,10.839994,10839.994 +22935,2025-03-09T21:57:18.197910-07:00,1661.0,10.849935,10849.935 +22936,2025-03-09T21:57:29.044845-07:00,1667.0,10.846935,10846.935 +22937,2025-03-09T21:57:30.046318-07:00,1621.0,1.001473,1001.473 +22938,2025-03-09T21:57:39.882640-07:00,1635.0,9.836322,9836.322 +22939,2025-03-09T21:57:50.731320-07:00,1705.0,10.84868,10848.68 +22940,2025-03-09T21:58:01.576857-07:00,1699.0,10.845537,10845.537 +22941,2025-03-09T21:58:12.424061-07:00,1665.0,10.847204,10847.204 +22942,2025-03-09T21:58:23.266897-07:00,1683.0,10.842836,10842.836 +22943,2025-03-09T21:58:34.113887-07:00,1691.0,10.84699,10846.99 +22944,2025-03-09T21:58:44.963970-07:00,1677.0,10.850083,10850.083 +22945,2025-03-09T21:58:55.801876-07:00,1619.0,10.837906,10837.906 +22946,2025-03-09T21:59:06.644320-07:00,1616.0,10.842444,10842.444 +22947,2025-03-09T21:59:17.491984-07:00,1699.0,10.847664,10847.664 +22948,2025-03-09T21:59:28.343853-07:00,1702.0,10.851869,10851.869 +22949,2025-03-09T21:59:39.185118-07:00,1667.0,10.841265,10841.265 +22950,2025-03-09T21:59:50.027371-07:00,1663.0,10.842253,10842.253 +22951,2025-03-09T22:00:00.874839-07:00,1668.0,10.847468,10847.468 +22952,2025-03-09T22:00:11.711137-07:00,1666.0,10.836298,10836.298 +22953,2025-03-09T22:00:22.552146-07:00,1670.0,10.841009,10841.009 +22954,2025-03-09T22:00:33.396264-07:00,1625.0,10.844118,10844.118 +22955,2025-03-09T22:00:44.250413-07:00,1701.0,10.854149,10854.149 +22956,2025-03-09T22:00:55.094121-07:00,1705.0,10.843708,10843.708 +22957,2025-03-09T22:01:05.941816-07:00,1703.0,10.847695,10847.695 +22958,2025-03-09T22:01:16.779836-07:00,1706.0,10.83802,10838.02 +22959,2025-03-09T22:01:27.632907-07:00,1661.0,10.853071,10853.071 +22960,2025-03-09T22:01:38.470942-07:00,1636.0,10.838035,10838.035 +22961,2025-03-09T22:01:49.309813-07:00,1686.0,10.838871,10838.871 +22962,2025-03-09T22:02:00.156810-07:00,1637.0,10.846997,10846.997 +22963,2025-03-09T22:02:10.999017-07:00,1648.0,10.842207,10842.207 +22964,2025-03-09T22:02:21.841148-07:00,1654.0,10.842131,10842.131 +22965,2025-03-09T22:02:32.698732-07:00,1637.0,10.857584,10857.584 +22966,2025-03-09T22:02:43.536839-07:00,1692.0,10.838107,10838.107 +22967,2025-03-09T22:02:54.390838-07:00,1664.0,10.853999,10853.999 +22968,2025-03-09T22:03:05.236839-07:00,1707.0,10.846001,10846.001 +22969,2025-03-09T22:03:16.088038-07:00,1673.0,10.851199,10851.199 +22970,2025-03-09T22:03:26.928148-07:00,1696.0,10.84011,10840.11 +22971,2025-03-09T22:03:37.783898-07:00,1632.0,10.85575,10855.75 +22972,2025-03-09T22:03:48.631239-07:00,1655.0,10.847341,10847.341 +22973,2025-03-09T22:03:59.472080-07:00,1653.0,10.840841,10840.841 +22974,2025-03-09T22:04:10.313836-07:00,1646.0,10.841756,10841.756 +22975,2025-03-09T22:04:21.157887-07:00,1690.0,10.844051,10844.051 +22976,2025-03-09T22:04:31.994130-07:00,1706.0,10.836243,10836.243 +22977,2025-03-09T22:04:42.839154-07:00,1708.0,10.845024,10845.024 +22978,2025-03-09T22:04:53.693368-07:00,1690.0,10.854214,10854.214 +22979,2025-03-09T22:05:04.536103-07:00,1635.0,10.842735,10842.735 +22980,2025-03-09T22:05:15.377972-07:00,1658.0,10.841869,10841.869 +22981,2025-03-09T22:05:26.221431-07:00,1699.0,10.843459,10843.459 +22982,2025-03-09T22:05:37.067102-07:00,1622.0,10.845671,10845.671 +22983,2025-03-09T22:05:47.920084-07:00,1611.0,10.852982,10852.982 +22984,2025-03-09T22:05:58.748109-07:00,1681.0,10.828025,10828.025 +22985,2025-03-09T22:06:09.591264-07:00,1648.0,10.843155,10843.155 +22986,2025-03-09T22:06:20.435126-07:00,1663.0,10.843862,10843.862 +22987,2025-03-09T22:06:31.278966-07:00,1635.0,10.84384,10843.84 +22988,2025-03-09T22:06:42.123353-07:00,1703.0,10.844387,10844.387 +22989,2025-03-09T22:06:52.971165-07:00,1631.0,10.847812,10847.812 +22990,2025-03-09T22:07:03.809670-07:00,1685.0,10.838505,10838.505 +22991,2025-03-09T22:07:14.653959-07:00,1653.0,10.844289,10844.289 +22992,2025-03-09T22:07:25.495365-07:00,1634.0,10.841406,10841.406 +22993,2025-03-09T22:07:36.327186-07:00,1693.0,10.831821,10831.821 +22994,2025-03-09T22:07:47.175703-07:00,1707.0,10.848517,10848.517 +22995,2025-03-09T22:07:58.016988-07:00,1703.0,10.841285,10841.285 +22996,2025-03-09T22:08:08.855488-07:00,1657.0,10.8385,10838.5 +22997,2025-03-09T22:08:19.694239-07:00,1709.0,10.838751,10838.751 +22998,2025-03-09T22:08:30.528966-07:00,1702.0,10.834727,10834.727 +22999,2025-03-09T22:08:41.368254-07:00,1702.0,10.839288,10839.288 +23000,2025-03-09T22:08:52.216964-07:00,1664.0,10.84871,10848.71 +23001,2025-03-09T22:09:03.060332-07:00,1660.0,10.843368,10843.368 +23002,2025-03-09T22:09:13.894466-07:00,1658.0,10.834134,10834.134 +23003,2025-03-09T22:09:24.733994-07:00,1707.0,10.839528,10839.528 +23004,2025-03-09T22:09:35.578552-07:00,1701.0,10.844558,10844.558 +23005,2025-03-09T22:09:46.426729-07:00,1689.0,10.848177,10848.177 +23006,2025-03-09T22:09:57.264124-07:00,1691.0,10.837395,10837.395 +23007,2025-03-09T22:10:08.109592-07:00,1680.0,10.845468,10845.468 +23008,2025-03-09T22:10:18.948947-07:00,1647.0,10.839355,10839.355 +23009,2025-03-09T22:10:29.788263-07:00,1685.0,10.839316,10839.316 +23010,2025-03-09T22:10:40.621027-07:00,1680.0,10.832764,10832.764 +23011,2025-03-09T22:10:51.464002-07:00,1687.0,10.842975,10842.975 +23012,2025-03-09T22:11:02.305454-07:00,1702.0,10.841452,10841.452 +23013,2025-03-09T22:11:13.140956-07:00,1709.0,10.835502,10835.502 +23014,2025-03-09T22:11:23.986114-07:00,1674.0,10.845158,10845.158 +23015,2025-03-09T22:11:34.826958-07:00,1626.0,10.840844,10840.844 +23016,2025-03-09T22:11:45.666723-07:00,1657.0,10.839765,10839.765 +23017,2025-03-09T22:11:56.503372-07:00,1626.0,10.836649,10836.649 +23018,2025-03-09T22:12:07.347103-07:00,1707.0,10.843731,10843.731 +23019,2025-03-09T22:12:18.196968-07:00,1648.0,10.849865,10849.865 +23020,2025-03-09T22:12:29.037993-07:00,1652.0,10.841025,10841.025 +23021,2025-03-09T22:12:39.881332-07:00,1643.0,10.843339,10843.339 +23022,2025-03-09T22:12:50.715209-07:00,1708.0,10.833877,10833.877 +23023,2025-03-09T22:13:01.562971-07:00,1634.0,10.847762,10847.762 +23024,2025-03-09T22:13:12.401147-07:00,1653.0,10.838176,10838.176 +23025,2025-03-09T22:13:23.242961-07:00,1708.0,10.841814,10841.814 +23026,2025-03-09T22:13:34.080949-07:00,1654.0,10.837988,10837.988 +23027,2025-03-09T22:13:44.918995-07:00,1607.0,10.838046,10838.046 +23028,2025-03-09T22:13:55.765732-07:00,1705.0,10.846737,10846.737 +23029,2025-03-09T22:14:06.596966-07:00,1677.0,10.831234,10831.234 +23030,2025-03-09T22:14:17.436046-07:00,1705.0,10.83908,10839.08 +23031,2025-03-09T22:14:28.273219-07:00,1679.0,10.837173,10837.173 +23032,2025-03-09T22:14:39.120808-07:00,1631.0,10.847589,10847.589 +23033,2025-03-09T22:14:49.961963-07:00,1662.0,10.841155,10841.155 +23034,2025-03-09T22:15:00.802363-07:00,1663.0,10.8404,10840.4 +23035,2025-03-09T22:15:11.634871-07:00,1671.0,10.832508,10832.508 +23036,2025-03-09T22:15:22.476943-07:00,1618.0,10.842072,10842.072 +23037,2025-03-09T22:15:33.319962-07:00,1622.0,10.843019,10843.019 +23038,2025-03-09T22:15:44.152041-07:00,1663.0,10.832079,10832.079 +23039,2025-03-09T22:15:54.994963-07:00,1667.0,10.842922,10842.922 +23040,2025-03-09T22:16:05.836966-07:00,1681.0,10.842003,10842.003 +23041,2025-03-09T22:16:16.673243-07:00,1623.0,10.836277,10836.277 +23042,2025-03-09T22:16:27.507963-07:00,1706.0,10.83472,10834.72 +23043,2025-03-09T22:16:38.342950-07:00,1697.0,10.834987,10834.987 +23044,2025-03-09T22:16:49.175122-07:00,1712.0,10.832172,10832.172 +23045,2025-03-09T22:17:00.020962-07:00,1657.0,10.84584,10845.84 +23046,2025-03-09T22:17:10.851347-07:00,1637.0,10.830385,10830.385 +23047,2025-03-09T22:17:21.694420-07:00,1648.0,10.843073,10843.073 +23048,2025-03-09T22:17:32.532189-07:00,1654.0,10.837769,10837.769 +23049,2025-03-09T22:17:43.380969-07:00,1646.0,10.84878,10848.78 +23050,2025-03-09T22:17:54.212263-07:00,1692.0,10.831294,10831.294 +23051,2025-03-09T22:18:05.051591-07:00,1639.0,10.839328,10839.328 +23052,2025-03-09T22:18:15.898956-07:00,1701.0,10.847365,10847.365 +23053,2025-03-09T22:18:26.740938-07:00,1711.0,10.841982,10841.982 +23054,2025-03-09T22:18:37.579541-07:00,1707.0,10.838603,10838.603 +23055,2025-03-09T22:18:48.414108-07:00,1699.0,10.834567,10834.567 +23056,2025-03-09T22:18:59.257962-07:00,1667.0,10.843854,10843.854 +23057,2025-03-09T22:19:10.088737-07:00,1708.0,10.830775,10830.775 +23058,2025-03-09T22:19:20.933343-07:00,1640.0,10.844606,10844.606 +23059,2025-03-09T22:19:31.762291-07:00,1620.0,10.828948,10828.948 +23060,2025-03-09T22:19:42.602876-07:00,1697.0,10.840585,10840.585 +23061,2025-03-09T22:19:53.440318-07:00,1635.0,10.837442,10837.442 +23062,2025-03-09T22:20:04.282941-07:00,1649.0,10.842623,10842.623 +23063,2025-03-09T22:20:15.122105-07:00,1707.0,10.839164,10839.164 +23064,2025-03-09T22:20:25.967541-07:00,1709.0,10.845436,10845.436 +23065,2025-03-09T22:20:36.803956-07:00,1707.0,10.836415,10836.415 +23066,2025-03-09T22:20:47.640200-07:00,1671.0,10.836244,10836.244 +23067,2025-03-09T22:20:58.483107-07:00,1647.0,10.842907,10842.907 +23068,2025-03-09T22:21:09.317964-07:00,1686.0,10.834857,10834.857 +23069,2025-03-09T22:21:20.152104-07:00,1667.0,10.83414,10834.14 +23070,2025-03-09T22:21:30.995232-07:00,1710.0,10.843128,10843.128 +23071,2025-03-09T22:21:41.839030-07:00,1671.0,10.843798,10843.798 +23072,2025-03-09T22:21:52.675947-07:00,1707.0,10.836917,10836.917 +23073,2025-03-09T22:22:03.512646-07:00,1658.0,10.836699,10836.699 +23074,2025-03-09T22:22:14.349189-07:00,1708.0,10.836543,10836.543 +23075,2025-03-09T22:22:25.175164-07:00,1614.0,10.825975,10825.975 +23076,2025-03-09T22:22:36.008000-07:00,1651.0,10.832836,10832.836 +23077,2025-03-09T22:22:46.846968-07:00,1655.0,10.838968,10838.968 +23078,2025-03-09T22:22:57.681352-07:00,1638.0,10.834384,10834.384 +23079,2025-03-09T22:23:08.525662-07:00,1648.0,10.84431,10844.31 +23080,2025-03-09T22:23:19.363598-07:00,1669.0,10.837936,10837.936 +23081,2025-03-09T22:23:30.203141-07:00,1709.0,10.839543,10839.543 +23082,2025-03-09T22:23:41.037658-07:00,1659.0,10.834517,10834.517 +23083,2025-03-09T22:23:51.873094-07:00,1625.0,10.835436,10835.436 +23084,2025-03-09T22:24:02.713098-07:00,1629.0,10.840004,10840.004 +23085,2025-03-09T22:24:13.555154-07:00,1681.0,10.842056,10842.056 +23086,2025-03-09T22:24:24.390801-07:00,1663.0,10.835647,10835.647 +23087,2025-03-09T22:24:35.232468-07:00,1651.0,10.841667,10841.667 +23088,2025-03-09T22:24:46.065266-07:00,1632.0,10.832798,10832.798 +23089,2025-03-09T22:24:56.916701-07:00,1639.0,10.851435,10851.435 +23090,2025-03-09T22:25:07.753085-07:00,1686.0,10.836384,10836.384 +23091,2025-03-09T22:25:18.596962-07:00,1651.0,10.843877,10843.877 +23092,2025-03-09T22:25:29.440463-07:00,1668.0,10.843501,10843.501 +23093,2025-03-09T22:25:40.264094-07:00,1663.0,10.823631,10823.631 +23094,2025-03-09T22:25:51.104962-07:00,1610.0,10.840868,10840.868 +23095,2025-03-09T22:26:01.956204-07:00,1617.0,10.851242,10851.242 +23096,2025-03-09T22:26:12.791276-07:00,1690.0,10.835072,10835.072 +23097,2025-03-09T22:26:23.631053-07:00,1670.0,10.839777,10839.777 +23098,2025-03-09T22:26:34.476480-07:00,1711.0,10.845427,10845.427 +23099,2025-03-09T22:26:45.301950-07:00,1707.0,10.82547,10825.47 +23100,2025-03-09T22:26:56.139327-07:00,1671.0,10.837377,10837.377 +23101,2025-03-09T22:27:06.983976-07:00,1617.0,10.844649,10844.649 +23102,2025-03-09T22:27:17.825005-07:00,1695.0,10.841029,10841.029 +23103,2025-03-09T22:27:28.670009-07:00,1706.0,10.845004,10845.004 +23104,2025-03-09T22:27:39.504140-07:00,1663.0,10.834131,10834.131 +23105,2025-03-09T22:27:50.349145-07:00,1616.0,10.845005,10845.005 +23106,2025-03-09T22:28:01.186116-07:00,1695.0,10.836971,10836.971 +23107,2025-03-09T22:28:12.032252-07:00,1708.0,10.846136,10846.136 +23108,2025-03-09T22:28:22.874318-07:00,1679.0,10.842066,10842.066 +23109,2025-03-09T22:28:33.704264-07:00,1710.0,10.829946,10829.946 +23110,2025-03-09T22:28:44.548013-07:00,1709.0,10.843749,10843.749 +23111,2025-03-09T22:28:55.399079-07:00,1677.0,10.851066,10851.066 +23112,2025-03-09T22:29:06.230013-07:00,1701.0,10.830934,10830.934 +23113,2025-03-09T22:29:17.071232-07:00,1652.0,10.841219,10841.219 +23114,2025-03-09T22:29:27.908098-07:00,1627.0,10.836866,10836.866 +23115,2025-03-09T22:29:38.755111-07:00,1709.0,10.847013,10847.013 +23116,2025-03-09T22:29:49.601162-07:00,1680.0,10.846051,10846.051 +23117,2025-03-09T22:30:00.441223-07:00,1623.0,10.840061,10840.061 +23118,2025-03-09T22:30:11.281319-07:00,1707.0,10.840096,10840.096 +23119,2025-03-09T22:30:22.119191-07:00,1619.0,10.837872,10837.872 +23120,2025-03-09T22:30:32.969283-07:00,1707.0,10.850092,10850.092 +23121,2025-03-09T22:30:43.804848-07:00,1665.0,10.835565,10835.565 +23122,2025-03-09T22:30:54.641182-07:00,1728.0,10.836334,10836.334 +23123,2025-03-09T22:31:05.479958-07:00,1728.0,10.838776,10838.776 +23124,2025-03-09T22:31:16.324007-07:00,1723.0,10.844049,10844.049 +23125,2025-03-09T22:31:27.159008-07:00,1680.0,10.835001,10835.001 +23126,2025-03-09T22:31:38.002954-07:00,1647.0,10.843946,10843.946 +23127,2025-03-09T22:31:48.849049-07:00,1661.0,10.846095,10846.095 +23128,2025-03-09T22:31:59.689592-07:00,1705.0,10.840543,10840.543 +23129,2025-03-09T22:32:10.533241-07:00,1705.0,10.843649,10843.649 +23130,2025-03-09T22:32:21.371212-07:00,1629.0,10.837971,10837.971 +23131,2025-03-09T22:32:32.217944-07:00,1712.0,10.846732,10846.732 +23132,2025-03-09T22:32:43.060979-07:00,1697.0,10.843035,10843.035 +23133,2025-03-09T22:32:53.916384-07:00,1617.0,10.855405,10855.405 +23134,2025-03-09T22:33:04.750214-07:00,1667.0,10.83383,10833.83 +23135,2025-03-09T22:33:15.601171-07:00,1699.0,10.850957,10850.957 +23136,2025-03-09T22:33:26.434966-07:00,1655.0,10.833795,10833.795 +23137,2025-03-09T22:33:37.278287-07:00,1639.0,10.843321,10843.321 +23138,2025-03-09T22:33:48.114969-07:00,1616.0,10.836682,10836.682 +23139,2025-03-09T22:33:58.962205-07:00,1651.0,10.847236,10847.236 +23140,2025-03-09T22:34:09.801961-07:00,1682.0,10.839756,10839.756 +23141,2025-03-09T22:34:20.648012-07:00,1621.0,10.846051,10846.051 +23142,2025-03-09T22:34:31.481377-07:00,1680.0,10.833365,10833.365 +23143,2025-03-09T22:34:42.327017-07:00,1642.0,10.84564,10845.64 +23144,2025-03-09T22:34:53.173108-07:00,1679.0,10.846091,10846.091 +23145,2025-03-09T22:35:04.009520-07:00,1663.0,10.836412,10836.412 +23146,2025-03-09T22:35:14.855240-07:00,1653.0,10.84572,10845.72 +23147,2025-03-09T22:35:25.692959-07:00,1705.0,10.837719,10837.719 +23148,2025-03-09T22:35:36.541966-07:00,1667.0,10.849007,10849.007 +23149,2025-03-09T22:35:47.378170-07:00,1705.0,10.836204,10836.204 +23150,2025-03-09T22:35:58.226299-07:00,1691.0,10.848129,10848.129 +23151,2025-03-09T22:36:09.064958-07:00,1657.0,10.838659,10838.659 +23152,2025-03-09T22:36:19.904129-07:00,1664.0,10.839171,10839.171 +23153,2025-03-09T22:36:30.738646-07:00,1694.0,10.834517,10834.517 +23154,2025-03-09T22:36:41.574219-07:00,1697.0,10.835573,10835.573 +23155,2025-03-09T22:36:52.415069-07:00,1662.0,10.84085,10840.85 +23156,2025-03-09T22:37:03.251291-07:00,1653.0,10.836222,10836.222 +23157,2025-03-09T22:37:14.098841-07:00,1693.0,10.84755,10847.55 +23158,2025-03-09T22:37:24.932961-07:00,1707.0,10.83412,10834.12 +23159,2025-03-09T22:37:35.759255-07:00,1683.0,10.826294,10826.294 +23160,2025-03-09T22:37:46.592965-07:00,1648.0,10.83371,10833.71 +23161,2025-03-09T22:37:57.432231-07:00,1616.0,10.839266,10839.266 +23162,2025-03-09T22:38:08.259133-07:00,1687.0,10.826902,10826.902 +23163,2025-03-09T22:38:19.095939-07:00,1646.0,10.836806,10836.806 +23164,2025-03-09T22:38:29.936343-07:00,1666.0,10.840404,10840.404 +23165,2025-03-09T22:38:40.765454-07:00,1655.0,10.829111,10829.111 +23166,2025-03-09T22:38:51.600961-07:00,1667.0,10.835507,10835.507 +23167,2025-03-09T22:39:02.439366-07:00,1703.0,10.838405,10838.405 +23168,2025-03-09T22:39:13.271965-07:00,1629.0,10.832599,10832.599 +23169,2025-03-09T22:39:24.118023-07:00,1659.0,10.846058,10846.058 +23170,2025-03-09T22:39:34.951358-07:00,1667.0,10.833335,10833.335 +23171,2025-03-09T22:39:45.794966-07:00,1697.0,10.843608,10843.608 +23172,2025-03-09T22:39:56.637964-07:00,1680.0,10.842998,10842.998 +23173,2025-03-09T22:40:07.478966-07:00,1648.0,10.841002,10841.002 +23174,2025-03-09T22:40:18.319363-07:00,1680.0,10.840397,10840.397 +23175,2025-03-09T22:40:29.156216-07:00,1680.0,10.836853,10836.853 +23176,2025-03-09T22:40:39.998231-07:00,1695.0,10.842015,10842.015 +23177,2025-03-09T22:40:50.829651-07:00,1616.0,10.83142,10831.42 +23178,2025-03-09T22:41:01.657189-07:00,1603.0,10.827538,10827.538 +23179,2025-03-09T22:41:12.489698-07:00,1630.0,10.832509,10832.509 +23180,2025-03-09T22:41:23.336009-07:00,1668.0,10.846311,10846.311 +23181,2025-03-09T22:41:34.176166-07:00,1637.0,10.840157,10840.157 +23182,2025-03-09T22:41:45.013264-07:00,1639.0,10.837098,10837.098 +23183,2025-03-09T22:41:55.848958-07:00,1629.0,10.835694,10835.694 +23184,2025-03-09T22:42:06.696202-07:00,1697.0,10.847244,10847.244 +23185,2025-03-09T22:42:17.535149-07:00,1705.0,10.838947,10838.947 +23186,2025-03-09T22:42:28.372405-07:00,1686.0,10.837256,10837.256 +23187,2025-03-09T22:42:39.209281-07:00,1703.0,10.836876,10836.876 +23188,2025-03-09T22:42:50.052207-07:00,1622.0,10.842926,10842.926 +23189,2025-03-09T22:43:00.891293-07:00,1692.0,10.839086,10839.086 +23190,2025-03-09T22:43:11.726231-07:00,1707.0,10.834938,10834.938 +23191,2025-03-09T22:43:22.571557-07:00,1707.0,10.845326,10845.326 +23192,2025-03-09T22:43:33.405069-07:00,1674.0,10.833512,10833.512 +23193,2025-03-09T22:43:44.241691-07:00,1700.0,10.836622,10836.622 +23194,2025-03-09T22:43:55.095305-07:00,1635.0,10.853614,10853.614 +23195,2025-03-09T22:44:05.933137-07:00,1702.0,10.837832,10837.832 +23196,2025-03-09T22:44:16.770314-07:00,1678.0,10.837177,10837.177 +23197,2025-03-09T22:44:27.612225-07:00,1698.0,10.841911,10841.911 +23198,2025-03-09T22:44:38.454961-07:00,1706.0,10.842736,10842.736 +23199,2025-03-09T22:44:49.296089-07:00,1693.0,10.841128,10841.128 +23200,2025-03-09T22:45:00.145967-07:00,1646.0,10.849878,10849.878 +23201,2025-03-09T22:45:10.983299-07:00,1703.0,10.837332,10837.332 +23202,2025-03-09T22:45:21.821208-07:00,1673.0,10.837909,10837.909 +23203,2025-03-09T22:45:32.664993-07:00,1663.0,10.843785,10843.785 +23204,2025-03-09T22:45:43.503347-07:00,1663.0,10.838354,10838.354 +23205,2025-03-09T22:45:54.340958-07:00,1661.0,10.837611,10837.611 +23206,2025-03-09T22:46:05.178960-07:00,1637.0,10.838002,10838.002 +23207,2025-03-09T22:46:16.025210-07:00,1656.0,10.84625,10846.25 +23208,2025-03-09T22:46:22.706964-07:00,1680.0,6.681754,6681.754 +23209,2025-03-09T22:46:26.862309-07:00,1699.0,4.155345,4155.345 +23210,2025-03-09T22:46:37.706044-07:00,1699.0,10.843735,10843.735 +23211,2025-03-09T22:46:48.549459-07:00,1661.0,10.843415,10843.415 +23212,2025-03-09T22:46:59.387961-07:00,1639.0,10.838502,10838.502 +23213,2025-03-09T22:47:10.228486-07:00,1641.0,10.840525,10840.525 +23214,2025-03-09T22:47:21.066961-07:00,1661.0,10.838475,10838.475 +23215,2025-03-09T22:47:31.899303-07:00,1650.0,10.832342,10832.342 +23216,2025-03-09T22:47:42.744467-07:00,1706.0,10.845164,10845.164 +23217,2025-03-09T22:47:53.572961-07:00,1683.0,10.828494,10828.494 +23218,2025-03-09T22:48:04.412065-07:00,1634.0,10.839104,10839.104 +23219,2025-03-09T22:48:15.255174-07:00,1646.0,10.843109,10843.109 +23220,2025-03-09T22:48:26.089089-07:00,1626.0,10.833915,10833.915 +23221,2025-03-09T22:48:36.935243-07:00,1691.0,10.846154,10846.154 +23222,2025-03-09T22:48:47.771263-07:00,1667.0,10.83602,10836.02 +23223,2025-03-09T22:48:58.605963-07:00,1690.0,10.8347,10834.7 +23224,2025-03-09T22:49:09.447959-07:00,1669.0,10.841996,10841.996 +23225,2025-03-09T22:49:20.295995-07:00,1662.0,10.848036,10848.036 +23226,2025-03-09T22:49:31.139301-07:00,1670.0,10.843306,10843.306 +23227,2025-03-09T22:49:41.983393-07:00,1699.0,10.844092,10844.092 +23228,2025-03-09T22:49:52.825943-07:00,1685.0,10.84255,10842.55 +23229,2025-03-09T22:50:03.665015-07:00,1693.0,10.839072,10839.072 +23230,2025-03-09T22:50:14.507956-07:00,1661.0,10.842941,10842.941 +23231,2025-03-09T22:50:25.344318-07:00,1657.0,10.836362,10836.362 +23232,2025-03-09T22:50:36.183109-07:00,1661.0,10.838791,10838.791 +23233,2025-03-09T22:50:37.279052-07:00,1679.0,1.095943,1095.943 +23234,2025-03-09T22:50:47.029969-07:00,1653.0,9.750917,9750.917 +23235,2025-03-09T22:50:57.869451-07:00,1699.0,10.839482,10839.482 +23236,2025-03-09T22:51:08.726358-07:00,1670.0,10.856907,10856.907 +23237,2025-03-09T22:51:19.563939-07:00,1631.0,10.837581,10837.581 +23238,2025-03-09T22:51:30.406950-07:00,1683.0,10.843011,10843.011 +23239,2025-03-09T22:51:41.248222-07:00,1648.0,10.841272,10841.272 +23240,2025-03-09T22:51:52.098000-07:00,1667.0,10.849778,10849.778 +23241,2025-03-09T22:52:02.945509-07:00,1702.0,10.847509,10847.509 +23242,2025-03-09T22:52:13.786581-07:00,1628.0,10.841072,10841.072 +23243,2025-03-09T22:52:24.641153-07:00,1682.0,10.854572,10854.572 +23244,2025-03-09T22:52:35.482962-07:00,1620.0,10.841809,10841.809 +23245,2025-03-09T22:52:46.321381-07:00,1703.0,10.838419,10838.419 +23246,2025-03-09T22:52:57.158502-07:00,1705.0,10.837121,10837.121 +23247,2025-03-09T22:53:08.000664-07:00,1647.0,10.842162,10842.162 +23248,2025-03-09T22:53:18.842943-07:00,1679.0,10.842279,10842.279 +23249,2025-03-09T22:53:29.688994-07:00,1702.0,10.846051,10846.051 +23250,2025-03-09T22:53:40.525441-07:00,1686.0,10.836447,10836.447 +23251,2025-03-09T22:53:51.374299-07:00,1700.0,10.848858,10848.858 +23252,2025-03-09T22:54:02.217192-07:00,1697.0,10.842893,10842.893 +23253,2025-03-09T22:54:13.055972-07:00,1653.0,10.83878,10838.78 +23254,2025-03-09T22:54:23.887309-07:00,1674.0,10.831337,10831.337 +23255,2025-03-09T22:54:34.730175-07:00,1706.0,10.842866,10842.866 +23256,2025-03-09T22:54:45.576956-07:00,1643.0,10.846781,10846.781 +23257,2025-03-09T22:54:56.415085-07:00,1629.0,10.838129,10838.129 +23258,2025-03-09T22:55:07.253001-07:00,1697.0,10.837916,10837.916 +23259,2025-03-09T22:55:18.095446-07:00,1703.0,10.842445,10842.445 +23260,2025-03-09T22:55:28.934209-07:00,1701.0,10.838763,10838.763 +23261,2025-03-09T22:55:39.780391-07:00,1702.0,10.846182,10846.182 +23262,2025-03-09T22:55:50.614965-07:00,1693.0,10.834574,10834.574 +23263,2025-03-09T22:56:01.457951-07:00,1653.0,10.842986,10842.986 +23264,2025-03-09T22:56:12.296733-07:00,1611.0,10.838782,10838.782 +23265,2025-03-09T22:56:23.138585-07:00,1705.0,10.841852,10841.852 +23266,2025-03-09T22:56:33.986906-07:00,1702.0,10.848321,10848.321 +23267,2025-03-09T22:56:44.823374-07:00,1655.0,10.836468,10836.468 +23268,2025-03-09T22:56:55.666089-07:00,1667.0,10.842715,10842.715 +23269,2025-03-09T22:57:06.503330-07:00,1617.0,10.837241,10837.241 +23270,2025-03-09T22:57:17.344958-07:00,1680.0,10.841628,10841.628 +23271,2025-03-09T22:57:28.190023-07:00,1655.0,10.845065,10845.065 +23272,2025-03-09T22:57:39.033959-07:00,1655.0,10.843936,10843.936 +23273,2025-03-09T22:57:49.880202-07:00,1639.0,10.846243,10846.243 +23274,2025-03-09T22:58:00.721301-07:00,1649.0,10.841099,10841.099 +23275,2025-03-09T22:58:11.562963-07:00,1667.0,10.841662,10841.662 +23276,2025-03-09T22:58:22.411667-07:00,1668.0,10.848704,10848.704 +23277,2025-03-09T22:58:33.266966-07:00,1687.0,10.855299,10855.299 +23278,2025-03-09T22:58:44.108092-07:00,1661.0,10.841126,10841.126 +23279,2025-03-09T22:58:54.947280-07:00,1621.0,10.839188,10839.188 +23280,2025-03-09T22:59:05.793185-07:00,1650.0,10.845905,10845.905 +23281,2025-03-09T22:59:16.643560-07:00,1701.0,10.850375,10850.375 +23282,2025-03-09T22:59:27.485264-07:00,1699.0,10.841704,10841.704 +23283,2025-03-09T22:59:38.337099-07:00,1705.0,10.851835,10851.835 +23284,2025-03-09T22:59:49.180386-07:00,1680.0,10.843287,10843.287 +23285,2025-03-09T23:00:00.022056-07:00,1651.0,10.84167,10841.67 +23286,2025-03-09T23:00:10.870604-07:00,1700.0,10.848548,10848.548 +23287,2025-03-09T23:00:21.708961-07:00,1683.0,10.838357,10838.357 +23288,2025-03-09T23:00:32.555988-07:00,1697.0,10.847027,10847.027 +23289,2025-03-09T23:00:43.406973-07:00,1703.0,10.850985,10850.985 +23290,2025-03-09T23:00:54.249893-07:00,1695.0,10.84292,10842.92 +23291,2025-03-09T23:01:05.093951-07:00,1619.0,10.844058,10844.058 +23292,2025-03-09T23:01:15.934967-07:00,1687.0,10.841016,10841.016 +23293,2025-03-09T23:01:26.778018-07:00,1699.0,10.843051,10843.051 +23294,2025-03-09T23:01:37.626091-07:00,1654.0,10.848073,10848.073 +23295,2025-03-09T23:01:48.475166-07:00,1616.0,10.849075,10849.075 +23296,2025-03-09T23:01:59.320217-07:00,1651.0,10.845051,10845.051 +23297,2025-03-09T23:02:10.161216-07:00,1681.0,10.840999,10840.999 +23298,2025-03-09T23:02:21.009965-07:00,1668.0,10.848749,10848.749 +23299,2025-03-09T23:02:31.853070-07:00,1700.0,10.843105,10843.105 +23300,2025-03-09T23:02:42.704066-07:00,1658.0,10.850996,10850.996 +23301,2025-03-09T23:02:53.539613-07:00,1666.0,10.835547,10835.547 +23302,2025-03-09T23:03:04.388199-07:00,1647.0,10.848586,10848.586 +23303,2025-03-09T23:03:15.233092-07:00,1701.0,10.844893,10844.893 +23304,2025-03-09T23:03:26.081207-07:00,1689.0,10.848115,10848.115 +23305,2025-03-09T23:03:36.928961-07:00,1665.0,10.847754,10847.754 +23306,2025-03-09T23:03:47.772041-07:00,1673.0,10.84308,10843.08 +23307,2025-03-09T23:03:58.622264-07:00,1607.0,10.850223,10850.223 +23308,2025-03-09T23:04:09.483225-07:00,1691.0,10.860961,10860.961 +23309,2025-03-09T23:04:20.332252-07:00,1661.0,10.849027,10849.027 +23310,2025-03-09T23:04:31.173351-07:00,1670.0,10.841099,10841.099 +23311,2025-03-09T23:04:42.026009-07:00,1601.0,10.852658,10852.658 +23312,2025-03-09T23:04:52.883301-07:00,1695.0,10.857292,10857.292 +23313,2025-03-09T23:05:03.724966-07:00,1617.0,10.841665,10841.665 +23314,2025-03-09T23:05:14.575226-07:00,1651.0,10.85026,10850.26 +23315,2025-03-09T23:05:25.424156-07:00,1699.0,10.84893,10848.93 +23316,2025-03-09T23:05:36.272078-07:00,1695.0,10.847922,10847.922 +23317,2025-03-09T23:05:47.172232-07:00,1699.0,10.900154,10900.154 +23318,2025-03-09T23:05:58.015362-07:00,1664.0,10.84313,10843.13 +23319,2025-03-09T23:06:08.859895-07:00,1702.0,10.844533,10844.533 +23320,2025-03-09T23:06:19.714884-07:00,1651.0,10.854989,10854.989 +23321,2025-03-09T23:06:30.568108-07:00,1648.0,10.853224,10853.224 +23322,2025-03-09T23:06:41.424950-07:00,1702.0,10.856842,10856.842 +23323,2025-03-09T23:06:52.270556-07:00,1680.0,10.845606,10845.606 +23324,2025-03-09T23:07:03.124946-07:00,1663.0,10.85439,10854.39 +23325,2025-03-09T23:07:13.986527-07:00,1535.0,10.861581,10861.581 +23326,2025-03-09T23:07:24.833138-07:00,1664.0,10.846611,10846.611 +23327,2025-03-09T23:07:35.686040-07:00,1655.0,10.852902,10852.902 +23328,2025-03-09T23:07:46.543510-07:00,1616.0,10.85747,10857.47 +23329,2025-03-09T23:07:57.392895-07:00,1615.0,10.849385,10849.385 +23330,2025-03-09T23:08:08.237900-07:00,1702.0,10.845005,10845.005 +23331,2025-03-09T23:08:19.088873-07:00,1655.0,10.850973,10850.973 +23332,2025-03-09T23:08:29.949888-07:00,1707.0,10.861015,10861.015 +23333,2025-03-09T23:08:40.807527-07:00,1707.0,10.857639,10857.639 +23334,2025-03-09T23:08:51.651959-07:00,1627.0,10.844432,10844.432 +23335,2025-03-09T23:09:02.507893-07:00,1701.0,10.855934,10855.934 +23336,2025-03-09T23:09:13.359296-07:00,1701.0,10.851403,10851.403 +23337,2025-03-09T23:09:24.209907-07:00,1633.0,10.850611,10850.611 +23338,2025-03-09T23:09:35.064937-07:00,1663.0,10.85503,10855.03 +23339,2025-03-09T23:09:45.918950-07:00,1661.0,10.854013,10854.013 +23340,2025-03-09T23:09:56.769207-07:00,1612.0,10.850257,10850.257 +23341,2025-03-09T23:10:07.617336-07:00,1655.0,10.848129,10848.129 +23342,2025-03-09T23:10:18.458879-07:00,1650.0,10.841543,10841.543 +23343,2025-03-09T23:10:29.306230-07:00,1680.0,10.847351,10847.351 +23344,2025-03-09T23:10:40.162277-07:00,1700.0,10.856047,10856.047 +23345,2025-03-09T23:10:51.011659-07:00,1615.0,10.849382,10849.382 +23346,2025-03-09T23:11:01.857895-07:00,1623.0,10.846236,10846.236 +23347,2025-03-09T23:11:12.698764-07:00,1650.0,10.840869,10840.869 +23348,2025-03-09T23:11:23.555283-07:00,1697.0,10.856519,10856.519 +23349,2025-03-09T23:11:34.399612-07:00,1650.0,10.844329,10844.329 +23350,2025-03-09T23:11:45.255869-07:00,1658.0,10.856257,10856.257 +23351,2025-03-09T23:11:56.097881-07:00,1642.0,10.842012,10842.012 +23352,2025-03-09T23:12:06.954883-07:00,1671.0,10.857002,10857.002 +23353,2025-03-09T23:12:17.804897-07:00,1689.0,10.850014,10850.014 +23354,2025-03-09T23:12:28.655129-07:00,1632.0,10.850232,10850.232 +23355,2025-03-09T23:12:39.504521-07:00,1658.0,10.849392,10849.392 +23356,2025-03-09T23:12:50.354133-07:00,1699.0,10.849612,10849.612 +23357,2025-03-09T23:13:01.201888-07:00,1621.0,10.847755,10847.755 +23358,2025-03-09T23:13:12.053893-07:00,1649.0,10.852005,10852.005 +23359,2025-03-09T23:13:22.899203-07:00,1705.0,10.84531,10845.31 +23360,2025-03-09T23:13:33.751308-07:00,1620.0,10.852105,10852.105 +23361,2025-03-09T23:13:44.596934-07:00,1683.0,10.845626,10845.626 +23362,2025-03-09T23:13:55.443880-07:00,1701.0,10.846946,10846.946 +23363,2025-03-09T23:14:06.287973-07:00,1649.0,10.844093,10844.093 +23364,2025-03-09T23:14:17.137895-07:00,1680.0,10.849922,10849.922 +23365,2025-03-09T23:14:27.992924-07:00,1659.0,10.855029,10855.029 +23366,2025-03-09T23:14:38.854068-07:00,1703.0,10.861144,10861.144 +23367,2025-03-09T23:14:49.695007-07:00,1697.0,10.840939,10840.939 +23368,2025-03-09T23:15:00.553891-07:00,1680.0,10.858884,10858.884 +23369,2025-03-09T23:15:11.411906-07:00,1703.0,10.858015,10858.015 +23370,2025-03-09T23:15:22.263894-07:00,1665.0,10.851988,10851.988 +23371,2025-03-09T23:15:33.120900-07:00,1685.0,10.857006,10857.006 +23372,2025-03-09T23:15:43.973534-07:00,1678.0,10.852634,10852.634 +23373,2025-03-09T23:15:54.827897-07:00,1702.0,10.854363,10854.363 +23374,2025-03-09T23:16:05.682332-07:00,1661.0,10.854435,10854.435 +23375,2025-03-09T23:16:16.526230-07:00,1652.0,10.843898,10843.898 +23376,2025-03-09T23:16:27.380212-07:00,1696.0,10.853982,10853.982 +23377,2025-03-09T23:16:38.229765-07:00,1615.0,10.849553,10849.553 +23378,2025-03-09T23:16:49.083206-07:00,1702.0,10.853441,10853.441 +23379,2025-03-09T23:16:59.929893-07:00,1695.0,10.846687,10846.687 +23380,2025-03-09T23:17:10.793047-07:00,1674.0,10.863154,10863.154 +23381,2025-03-09T23:17:21.641284-07:00,1698.0,10.848237,10848.237 +23382,2025-03-09T23:17:32.495521-07:00,1701.0,10.854237,10854.237 +23383,2025-03-09T23:17:43.352160-07:00,1649.0,10.856639,10856.639 +23384,2025-03-09T23:17:54.205176-07:00,1681.0,10.853016,10853.016 +23385,2025-03-09T23:18:05.059403-07:00,1680.0,10.854227,10854.227 +23386,2025-03-09T23:18:15.923250-07:00,1651.0,10.863847,10863.847 +23387,2025-03-09T23:18:26.772806-07:00,1701.0,10.849556,10849.556 +23388,2025-03-09T23:18:37.624138-07:00,1671.0,10.851332,10851.332 +23389,2025-03-09T23:18:48.470894-07:00,1703.0,10.846756,10846.756 +23390,2025-03-09T23:18:59.331287-07:00,1649.0,10.860393,10860.393 +23391,2025-03-09T23:19:10.184762-07:00,1633.0,10.853475,10853.475 +23392,2025-03-09T23:19:21.029095-07:00,1637.0,10.844333,10844.333 +23393,2025-03-09T23:19:31.882887-07:00,1703.0,10.853792,10853.792 +23394,2025-03-09T23:19:42.727181-07:00,1687.0,10.844294,10844.294 +23395,2025-03-09T23:19:53.583885-07:00,1675.0,10.856704,10856.704 +23396,2025-03-09T23:20:04.431872-07:00,1641.0,10.847987,10847.987 +23397,2025-03-09T23:20:15.287114-07:00,1680.0,10.855242,10855.242 +23398,2025-03-09T23:20:26.134614-07:00,1657.0,10.8475,10847.5 +23399,2025-03-09T23:20:36.981962-07:00,1706.0,10.847348,10847.348 +23400,2025-03-09T23:20:47.830478-07:00,1661.0,10.848516,10848.516 +23401,2025-03-09T23:20:58.684177-07:00,1690.0,10.853699,10853.699 +23402,2025-03-09T23:21:09.539183-07:00,1661.0,10.855006,10855.006 +23403,2025-03-09T23:21:20.389203-07:00,1643.0,10.85002,10850.02 +23404,2025-03-09T23:21:31.237246-07:00,1647.0,10.848043,10848.043 +23405,2025-03-09T23:21:42.081910-07:00,1661.0,10.844664,10844.664 +23406,2025-03-09T23:21:52.934948-07:00,1680.0,10.853038,10853.038 +23407,2025-03-09T23:22:03.777900-07:00,1666.0,10.842952,10842.952 +23408,2025-03-09T23:22:14.630897-07:00,1703.0,10.852997,10852.997 +23409,2025-03-09T23:22:25.476523-07:00,1703.0,10.845626,10845.626 +23410,2025-03-09T23:22:36.329330-07:00,1665.0,10.852807,10852.807 +23411,2025-03-09T23:22:47.184722-07:00,1679.0,10.855392,10855.392 +23412,2025-03-09T23:22:58.027717-07:00,1630.0,10.842995,10842.995 +23413,2025-03-09T23:23:08.878842-07:00,1670.0,10.851125,10851.125 +23414,2025-03-09T23:23:19.721872-07:00,1619.0,10.84303,10843.03 +23415,2025-03-09T23:23:30.572893-07:00,1706.0,10.851021,10851.021 +23416,2025-03-09T23:23:41.422895-07:00,1699.0,10.850002,10850.002 +23417,2025-03-09T23:23:52.276570-07:00,1692.0,10.853675,10853.675 +23418,2025-03-09T23:24:03.122893-07:00,1702.0,10.846323,10846.323 +23419,2025-03-09T23:24:13.981218-07:00,1692.0,10.858325,10858.325 +23420,2025-03-09T23:24:24.839127-07:00,1616.0,10.857909,10857.909 +23421,2025-03-09T23:24:35.691948-07:00,1620.0,10.852821,10852.821 +23422,2025-03-09T23:24:46.547896-07:00,1707.0,10.855948,10855.948 +23423,2025-03-09T23:24:57.397183-07:00,1699.0,10.849287,10849.287 +23424,2025-03-09T23:25:08.251894-07:00,1679.0,10.854711,10854.711 +23425,2025-03-09T23:25:19.103132-07:00,1623.0,10.851238,10851.238 +23426,2025-03-09T23:25:29.950050-07:00,1668.0,10.846918,10846.918 +23427,2025-03-09T23:25:40.808887-07:00,1629.0,10.858837,10858.837 +23428,2025-03-09T23:25:51.652193-07:00,1696.0,10.843306,10843.306 +23429,2025-03-09T23:26:02.508224-07:00,1677.0,10.856031,10856.031 +23430,2025-03-09T23:26:13.360327-07:00,1611.0,10.852103,10852.103 +23431,2025-03-09T23:26:24.209230-07:00,1707.0,10.848903,10848.903 +23432,2025-03-09T23:26:35.059935-07:00,1706.0,10.850705,10850.705 +23433,2025-03-09T23:26:45.912085-07:00,1649.0,10.85215,10852.15 +23434,2025-03-09T23:26:56.762885-07:00,1695.0,10.8508,10850.8 +23435,2025-03-09T23:27:07.618768-07:00,1650.0,10.855883,10855.883 +23436,2025-03-09T23:27:18.469030-07:00,1677.0,10.850262,10850.262 +23437,2025-03-09T23:27:29.320499-07:00,1621.0,10.851469,10851.469 +23438,2025-03-09T23:27:40.159895-07:00,1699.0,10.839396,10839.396 +23439,2025-03-09T23:27:51.005361-07:00,1679.0,10.845466,10845.466 +23440,2025-03-09T23:28:01.856162-07:00,1678.0,10.850801,10850.801 +23441,2025-03-09T23:28:12.699143-07:00,1703.0,10.842981,10842.981 +23442,2025-03-09T23:28:23.541060-07:00,1709.0,10.841917,10841.917 +23443,2025-03-09T23:28:34.384917-07:00,1654.0,10.843857,10843.857 +23444,2025-03-09T23:28:45.239942-07:00,1619.0,10.855025,10855.025 +23445,2025-03-09T23:28:56.090172-07:00,1696.0,10.85023,10850.23 +23446,2025-03-09T23:29:06.942890-07:00,1667.0,10.852718,10852.718 +23447,2025-03-09T23:29:17.784516-07:00,1654.0,10.841626,10841.626 +23448,2025-03-09T23:29:28.638146-07:00,1635.0,10.85363,10853.63 +23449,2025-03-09T23:29:39.484050-07:00,1681.0,10.845904,10845.904 +23450,2025-03-09T23:29:50.337053-07:00,1639.0,10.853003,10853.003 +23451,2025-03-09T23:30:01.192079-07:00,1654.0,10.855026,10855.026 +23452,2025-03-09T23:30:12.041122-07:00,1707.0,10.849043,10849.043 +23453,2025-03-09T23:30:22.890041-07:00,1662.0,10.848919,10848.919 +23454,2025-03-09T23:30:33.732938-07:00,1693.0,10.842897,10842.897 +23455,2025-03-09T23:30:44.575183-07:00,1703.0,10.842245,10842.245 +23456,2025-03-09T23:30:55.423777-07:00,1665.0,10.848594,10848.594 +23457,2025-03-09T23:31:06.267885-07:00,1645.0,10.844108,10844.108 +23458,2025-03-09T23:31:17.115449-07:00,1616.0,10.847564,10847.564 +23459,2025-03-09T23:31:27.957884-07:00,1629.0,10.842435,10842.435 +23460,2025-03-09T23:31:38.801891-07:00,1648.0,10.844007,10844.007 +23461,2025-03-09T23:31:49.641061-07:00,1696.0,10.83917,10839.17 +23462,2025-03-09T23:32:00.490013-07:00,1617.0,10.848952,10848.952 +23463,2025-03-09T23:32:11.330894-07:00,1706.0,10.840881,10840.881 +23464,2025-03-09T23:32:22.177608-07:00,1659.0,10.846714,10846.714 +23465,2025-03-09T23:32:33.018208-07:00,1668.0,10.8406,10840.6 +23466,2025-03-09T23:32:43.861849-07:00,1637.0,10.843641,10843.641 +23467,2025-03-09T23:32:54.715568-07:00,1658.0,10.853719,10853.719 +23468,2025-03-09T23:33:05.563571-07:00,1680.0,10.848003,10848.003 +23469,2025-03-09T23:33:16.407131-07:00,1647.0,10.84356,10843.56 +23470,2025-03-09T23:33:27.255030-07:00,1702.0,10.847899,10847.899 +23471,2025-03-09T23:33:38.097289-07:00,1631.0,10.842259,10842.259 +23472,2025-03-09T23:33:48.939168-07:00,1709.0,10.841879,10841.879 +23473,2025-03-09T23:33:59.785895-07:00,1680.0,10.846727,10846.727 +23474,2025-03-09T23:34:10.628893-07:00,1705.0,10.842998,10842.998 +23475,2025-03-09T23:34:21.470883-07:00,1682.0,10.84199,10841.99 +23476,2025-03-09T23:34:32.316888-07:00,1692.0,10.846005,10846.005 +23477,2025-03-09T23:34:43.157556-07:00,1697.0,10.840668,10840.668 +23478,2025-03-09T23:34:53.998893-07:00,1679.0,10.841337,10841.337 +23479,2025-03-09T23:35:04.840890-07:00,1710.0,10.841997,10841.997 +23480,2025-03-09T23:35:15.686889-07:00,1680.0,10.845999,10845.999 +23481,2025-03-09T23:35:26.525321-07:00,1663.0,10.838432,10838.432 +23482,2025-03-09T23:35:37.368052-07:00,1703.0,10.842731,10842.731 +23483,2025-03-09T23:35:48.211137-07:00,1657.0,10.843085,10843.085 +23484,2025-03-09T23:35:59.061897-07:00,1617.0,10.85076,10850.76 +23485,2025-03-09T23:36:09.909046-07:00,1637.0,10.847149,10847.149 +23486,2025-03-09T23:36:20.744801-07:00,1682.0,10.835755,10835.755 +23487,2025-03-09T23:36:31.589720-07:00,1707.0,10.844919,10844.919 +23488,2025-03-09T23:36:42.429882-07:00,1707.0,10.840162,10840.162 +23489,2025-03-09T23:36:53.275173-07:00,1699.0,10.845291,10845.291 +23490,2025-03-09T23:37:04.129361-07:00,1617.0,10.854188,10854.188 +23491,2025-03-09T23:37:14.978955-07:00,1707.0,10.849594,10849.594 +23492,2025-03-09T23:37:25.827179-07:00,1613.0,10.848224,10848.224 +23493,2025-03-09T23:37:36.670027-07:00,1675.0,10.842848,10842.848 +23494,2025-03-09T23:37:47.514002-07:00,1705.0,10.843975,10843.975 +23495,2025-03-09T23:37:58.367939-07:00,1613.0,10.853937,10853.937 +23496,2025-03-09T23:38:09.209023-07:00,1692.0,10.841084,10841.084 +23497,2025-03-09T23:38:20.049216-07:00,1680.0,10.840193,10840.193 +23498,2025-03-09T23:38:30.890885-07:00,1680.0,10.841669,10841.669 +23499,2025-03-09T23:38:41.732893-07:00,1622.0,10.842008,10842.008 +23500,2025-03-09T23:38:52.570378-07:00,1709.0,10.837485,10837.485 +23501,2025-03-09T23:39:03.414203-07:00,1665.0,10.843825,10843.825 +23502,2025-03-09T23:39:14.264417-07:00,1702.0,10.850214,10850.214 +23503,2025-03-09T23:39:25.111934-07:00,1683.0,10.847517,10847.517 +23504,2025-03-09T23:39:35.956224-07:00,1709.0,10.84429,10844.29 +23505,2025-03-09T23:39:46.797887-07:00,1697.0,10.841663,10841.663 +23506,2025-03-09T23:39:57.641469-07:00,1621.0,10.843582,10843.582 +23507,2025-03-09T23:40:08.484353-07:00,1709.0,10.842884,10842.884 +23508,2025-03-09T23:40:19.338249-07:00,1648.0,10.853896,10853.896 +23509,2025-03-09T23:40:30.177029-07:00,1664.0,10.83878,10838.78 +23510,2025-03-09T23:40:41.025130-07:00,1639.0,10.848101,10848.101 +23511,2025-03-09T23:40:51.862911-07:00,1642.0,10.837781,10837.781 +23512,2025-03-09T23:41:02.707323-07:00,1710.0,10.844412,10844.412 +23513,2025-03-09T23:41:13.554292-07:00,1708.0,10.846969,10846.969 +23514,2025-03-09T23:41:24.391895-07:00,1708.0,10.837603,10837.603 +23515,2025-03-09T23:41:35.238900-07:00,1711.0,10.847005,10847.005 +23516,2025-03-09T23:41:46.083340-07:00,1672.0,10.84444,10844.44 +23517,2025-03-09T23:41:56.926409-07:00,1686.0,10.843069,10843.069 +23518,2025-03-09T23:42:07.774890-07:00,1687.0,10.848481,10848.481 +23519,2025-03-09T23:42:18.620887-07:00,1661.0,10.845997,10845.997 +23520,2025-03-09T23:42:29.455889-07:00,1696.0,10.835002,10835.002 +23521,2025-03-09T23:42:40.299228-07:00,1711.0,10.843339,10843.339 +23522,2025-03-09T23:42:51.154206-07:00,1680.0,10.854978,10854.978 +23523,2025-03-09T23:43:01.996732-07:00,1648.0,10.842526,10842.526 +23524,2025-03-09T23:43:12.830106-07:00,1663.0,10.833374,10833.374 +23525,2025-03-09T23:43:23.671274-07:00,1669.0,10.841168,10841.168 +23526,2025-03-09T23:43:34.515421-07:00,1664.0,10.844147,10844.147 +23527,2025-03-09T23:43:45.357874-07:00,1711.0,10.842453,10842.453 +23528,2025-03-09T23:43:56.211890-07:00,1665.0,10.854016,10854.016 +23529,2025-03-09T23:44:07.048891-07:00,1649.0,10.837001,10837.001 +23530,2025-03-09T23:44:17.898147-07:00,1657.0,10.849256,10849.256 +23531,2025-03-09T23:44:28.738212-07:00,1657.0,10.840065,10840.065 +23532,2025-03-09T23:44:39.591051-07:00,1710.0,10.852839,10852.839 +23533,2025-03-09T23:44:50.432893-07:00,1641.0,10.841842,10841.842 +23534,2025-03-09T23:45:01.283960-07:00,1703.0,10.851067,10851.067 +23535,2025-03-09T23:45:12.125894-07:00,1704.0,10.841934,10841.934 +23536,2025-03-09T23:45:22.969778-07:00,1711.0,10.843884,10843.884 +23537,2025-03-09T23:45:33.811135-07:00,1708.0,10.841357,10841.357 +23538,2025-03-09T23:45:44.659934-07:00,1648.0,10.848799,10848.799 +23539,2025-03-09T23:45:55.502230-07:00,1669.0,10.842296,10842.296 +23540,2025-03-09T23:46:06.352041-07:00,1691.0,10.849811,10849.811 +23541,2025-03-09T23:46:17.193893-07:00,1689.0,10.841852,10841.852 +23542,2025-03-09T23:46:28.035248-07:00,1695.0,10.841355,10841.355 +23543,2025-03-09T23:46:29.005384-07:00,1695.0,0.970136,970.136 +23544,2025-03-09T23:46:38.887322-07:00,1618.0,9.881938,9881.938 +23545,2025-03-09T23:46:49.734050-07:00,1707.0,10.846728,10846.728 +23546,2025-03-09T23:47:00.579894-07:00,1637.0,10.845844,10845.844 +23547,2025-03-09T23:47:11.426884-07:00,1710.0,10.84699,10846.99 +23548,2025-03-09T23:47:22.266221-07:00,1678.0,10.839337,10839.337 +23549,2025-03-09T23:47:33.097112-07:00,1680.0,10.830891,10830.891 +23550,2025-03-09T23:47:43.939039-07:00,1703.0,10.841927,10841.927 +23551,2025-03-09T23:47:54.779193-07:00,1689.0,10.840154,10840.154 +23552,2025-03-09T23:48:05.626219-07:00,1666.0,10.847026,10847.026 +23553,2025-03-09T23:48:16.467950-07:00,1680.0,10.841731,10841.731 +23554,2025-03-09T23:48:27.310119-07:00,1664.0,10.842169,10842.169 +23555,2025-03-09T23:48:38.145203-07:00,1697.0,10.835084,10835.084 +23556,2025-03-09T23:48:48.986201-07:00,1649.0,10.840998,10840.998 +23557,2025-03-09T23:48:59.824128-07:00,1695.0,10.837927,10837.927 +23558,2025-03-09T23:49:10.671895-07:00,1654.0,10.847767,10847.767 +23559,2025-03-09T23:49:21.504258-07:00,1663.0,10.832363,10832.363 +23560,2025-03-09T23:49:32.341885-07:00,1674.0,10.837627,10837.627 +23561,2025-03-09T23:49:43.185894-07:00,1621.0,10.844009,10844.009 +23562,2025-03-09T23:49:54.023596-07:00,1707.0,10.837702,10837.702 +23563,2025-03-09T23:50:04.866250-07:00,1669.0,10.842654,10842.654 +23564,2025-03-09T23:50:15.705891-07:00,1707.0,10.839641,10839.641 +23565,2025-03-09T23:50:26.551064-07:00,1711.0,10.845173,10845.173 +23566,2025-03-09T23:50:37.395894-07:00,1700.0,10.84483,10844.83 +23567,2025-03-09T23:50:48.232265-07:00,1632.0,10.836371,10836.371 +23568,2025-03-09T23:50:59.075879-07:00,1709.0,10.843614,10843.614 +23569,2025-03-09T23:51:09.907173-07:00,1709.0,10.831294,10831.294 +23570,2025-03-09T23:51:20.755344-07:00,1648.0,10.848171,10848.171 +23571,2025-03-09T23:51:31.597758-07:00,1616.0,10.842414,10842.414 +23572,2025-03-09T23:51:42.441113-07:00,1710.0,10.843355,10843.355 +23573,2025-03-09T23:51:53.279868-07:00,1709.0,10.838755,10838.755 +23574,2025-03-09T23:52:04.117147-07:00,1663.0,10.837279,10837.279 +23575,2025-03-09T23:52:14.967036-07:00,1664.0,10.849889,10849.889 +23576,2025-03-09T23:52:25.803890-07:00,1661.0,10.836854,10836.854 +23577,2025-03-09T23:52:36.646994-07:00,1680.0,10.843104,10843.104 +23578,2025-03-09T23:52:47.491400-07:00,1681.0,10.844406,10844.406 +23579,2025-03-09T23:52:58.326889-07:00,1708.0,10.835489,10835.489 +23580,2025-03-09T23:53:09.164891-07:00,1675.0,10.838002,10838.002 +23581,2025-03-09T23:53:20.012896-07:00,1621.0,10.848005,10848.005 +23582,2025-03-09T23:53:30.849483-07:00,1694.0,10.836587,10836.587 +23583,2025-03-09T23:53:41.700228-07:00,1685.0,10.850745,10850.745 +23584,2025-03-09T23:53:52.548525-07:00,1635.0,10.848297,10848.297 +23585,2025-03-09T23:54:03.380071-07:00,1631.0,10.831546,10831.546 +23586,2025-03-09T23:54:14.223170-07:00,1669.0,10.843099,10843.099 +23587,2025-03-09T23:54:25.076271-07:00,1698.0,10.853101,10853.101 +23588,2025-03-09T23:54:35.915009-07:00,1712.0,10.838738,10838.738 +23589,2025-03-09T23:54:46.762308-07:00,1704.0,10.847299,10847.299 +23590,2025-03-09T23:54:57.596114-07:00,1617.0,10.833806,10833.806 +23591,2025-03-09T23:55:08.432610-07:00,1709.0,10.836496,10836.496 +23592,2025-03-09T23:55:19.280351-07:00,1667.0,10.847741,10847.741 +23593,2025-03-09T23:55:29.452450-07:00,1675.0,10.172099,10172.099 +23594,2025-03-09T23:55:30.115127-07:00,1675.0,0.662677,662.677 +23595,2025-03-09T23:55:40.963151-07:00,1675.0,10.848024,10848.024 +23596,2025-03-09T23:55:51.804030-07:00,1708.0,10.840879,10840.879 +23597,2025-03-09T23:56:02.636890-07:00,1693.0,10.83286,10832.86 +23598,2025-03-09T23:56:13.475154-07:00,1691.0,10.838264,10838.264 +23599,2025-03-09T23:56:24.312293-07:00,1637.0,10.837139,10837.139 +23600,2025-03-09T23:56:35.162934-07:00,1648.0,10.850641,10850.641 +23601,2025-03-09T23:56:45.992172-07:00,1674.0,10.829238,10829.238 +23602,2025-03-09T23:56:56.834243-07:00,1712.0,10.842071,10842.071 +23603,2025-03-09T23:57:07.671894-07:00,1683.0,10.837651,10837.651 +23604,2025-03-09T23:57:18.515890-07:00,1711.0,10.843996,10843.996 +23605,2025-03-09T23:57:29.347151-07:00,1641.0,10.831261,10831.261 +23606,2025-03-09T23:57:40.183939-07:00,1663.0,10.836788,10836.788 +23607,2025-03-09T23:57:51.029891-07:00,1712.0,10.845952,10845.952 +23608,2025-03-09T23:58:01.870203-07:00,1707.0,10.840312,10840.312 +23609,2025-03-09T23:58:12.715137-07:00,1638.0,10.844934,10844.934 +23610,2025-03-09T23:58:23.556232-07:00,1699.0,10.841095,10841.095 +23611,2025-03-09T23:58:34.397870-07:00,1623.0,10.841638,10841.638 +23612,2025-03-09T23:58:45.241944-07:00,1613.0,10.844074,10844.074 +23613,2025-03-09T23:58:56.073256-07:00,1642.0,10.831312,10831.312 +23614,2025-03-09T23:59:06.917829-07:00,1661.0,10.844573,10844.573 +23615,2025-03-09T23:59:17.758932-07:00,1707.0,10.841103,10841.103 +23616,2025-03-09T23:59:28.610033-07:00,1709.0,10.851101,10851.101 +23617,2025-03-09T23:59:39.452017-07:00,1619.0,10.841984,10841.984 +23618,2025-03-09T23:59:50.296139-07:00,1650.0,10.844122,10844.122 +23619,2025-03-10T00:00:01.132872-07:00,1687.0,10.836733,10836.733 +23620,2025-03-10T00:00:11.970030-07:00,1712.0,10.837158,10837.158 +23621,2025-03-10T00:00:22.814948-07:00,1693.0,10.844918,10844.918 +23622,2025-03-10T00:00:33.645879-07:00,1695.0,10.830931,10830.931 +23623,2025-03-10T00:00:44.482879-07:00,1683.0,10.837,10837.0 +23624,2025-03-10T00:00:55.327236-07:00,1649.0,10.844357,10844.357 +23625,2025-03-10T00:01:06.168413-07:00,1651.0,10.841177,10841.177 +23626,2025-03-10T00:01:16.999151-07:00,1658.0,10.830738,10830.738 +23627,2025-03-10T00:01:27.833238-07:00,1707.0,10.834087,10834.087 +23628,2025-03-10T00:01:38.677162-07:00,1677.0,10.843924,10843.924 +23629,2025-03-10T00:01:49.508479-07:00,1693.0,10.831317,10831.317 +23630,2025-03-10T00:02:00.344990-07:00,1689.0,10.836511,10836.511 +23631,2025-03-10T00:02:11.180893-07:00,1690.0,10.835903,10835.903 +23632,2025-03-10T00:02:22.020142-07:00,1706.0,10.839249,10839.249 +23633,2025-03-10T00:02:32.852573-07:00,1708.0,10.832431,10832.431 +23634,2025-03-10T00:02:43.688890-07:00,1711.0,10.836317,10836.317 +23635,2025-03-10T00:02:54.532228-07:00,1701.0,10.843338,10843.338 +23636,2025-03-10T00:03:05.370087-07:00,1667.0,10.837859,10837.859 +23637,2025-03-10T00:03:16.196732-07:00,1627.0,10.826645,10826.645 +23638,2025-03-10T00:03:27.039914-07:00,1674.0,10.843182,10843.182 +23639,2025-03-10T00:03:37.869930-07:00,1634.0,10.830016,10830.016 +23640,2025-03-10T00:03:48.706892-07:00,1702.0,10.836962,10836.962 +23641,2025-03-10T00:03:59.532689-07:00,1609.0,10.825797,10825.797 +23642,2025-03-10T00:04:10.364753-07:00,1669.0,10.832064,10832.064 +23643,2025-03-10T00:04:21.196195-07:00,1670.0,10.831442,10831.442 +23644,2025-03-10T00:04:32.038939-07:00,1710.0,10.842744,10842.744 +23645,2025-03-10T00:04:42.877536-07:00,1711.0,10.838597,10838.597 +23646,2025-03-10T00:04:53.715221-07:00,1674.0,10.837685,10837.685 +23647,2025-03-10T00:05:04.542878-07:00,1701.0,10.827657,10827.657 +23648,2025-03-10T00:05:15.376334-07:00,1712.0,10.833456,10833.456 +23649,2025-03-10T00:05:26.211184-07:00,1710.0,10.83485,10834.85 +23650,2025-03-10T00:05:37.052885-07:00,1712.0,10.841701,10841.701 +23651,2025-03-10T00:05:47.859427-07:00,1712.0,10.806542,10806.542 +23652,2025-03-10T00:05:58.702361-07:00,1710.0,10.842934,10842.934 +23653,2025-03-10T00:06:09.536084-07:00,1664.0,10.833723,10833.723 +23654,2025-03-10T00:06:20.382307-07:00,1702.0,10.846223,10846.223 +23655,2025-03-10T00:06:31.212246-07:00,1633.0,10.829939,10829.939 +23656,2025-03-10T00:06:42.052090-07:00,1674.0,10.839844,10839.844 +23657,2025-03-10T00:06:52.885487-07:00,1699.0,10.833397,10833.397 +23658,2025-03-10T00:07:03.726700-07:00,1709.0,10.841213,10841.213 +23659,2025-03-10T00:07:14.573090-07:00,1697.0,10.84639,10846.39 +23660,2025-03-10T00:07:25.408343-07:00,1680.0,10.835253,10835.253 +23661,2025-03-10T00:07:36.252086-07:00,1678.0,10.843743,10843.743 +23662,2025-03-10T00:07:47.088347-07:00,1665.0,10.836261,10836.261 +23663,2025-03-10T00:07:57.931217-07:00,1675.0,10.84287,10842.87 +23664,2025-03-10T00:08:08.762442-07:00,1664.0,10.831225,10831.225 +23665,2025-03-10T00:08:19.608580-07:00,1669.0,10.846138,10846.138 +23666,2025-03-10T00:08:30.437086-07:00,1655.0,10.828506,10828.506 +23667,2025-03-10T00:08:41.276195-07:00,1689.0,10.839109,10839.109 +23668,2025-03-10T00:08:52.111153-07:00,1638.0,10.834958,10834.958 +23669,2025-03-10T00:09:02.945540-07:00,1625.0,10.834387,10834.387 +23670,2025-03-10T00:09:13.783570-07:00,1709.0,10.83803,10838.03 +23671,2025-03-10T00:09:24.621082-07:00,1670.0,10.837512,10837.512 +23672,2025-03-10T00:09:35.452082-07:00,1709.0,10.831,10831.0 +23673,2025-03-10T00:09:46.281457-07:00,1629.0,10.829375,10829.375 +23674,2025-03-10T00:09:57.110348-07:00,1693.0,10.828891,10828.891 +23675,2025-03-10T00:10:07.942088-07:00,1712.0,10.83174,10831.74 +23676,2025-03-10T00:10:18.784059-07:00,1712.0,10.841971,10841.971 +23677,2025-03-10T00:10:27.623950-07:00,1623.0,8.839891,8839.891 +23678,2025-03-10T00:10:29.621088-07:00,1690.0,1.997138,1997.138 +23679,2025-03-10T00:10:40.464355-07:00,1701.0,10.843267,10843.267 +23680,2025-03-10T00:10:51.296128-07:00,1678.0,10.831773,10831.773 +23681,2025-03-10T00:11:02.138092-07:00,1667.0,10.841964,10841.964 +23682,2025-03-10T00:11:12.977626-07:00,1712.0,10.839534,10839.534 +23683,2025-03-10T00:11:23.821069-07:00,1638.0,10.843443,10843.443 +23684,2025-03-10T00:11:34.655068-07:00,1707.0,10.833999,10833.999 +23685,2025-03-10T00:11:45.489630-07:00,1687.0,10.834562,10834.562 +23686,2025-03-10T00:11:56.327085-07:00,1695.0,10.837455,10837.455 +23687,2025-03-10T00:12:07.174201-07:00,1703.0,10.847116,10847.116 +23688,2025-03-10T00:12:18.014081-07:00,1669.0,10.83988,10839.88 +23689,2025-03-10T00:12:28.846085-07:00,1667.0,10.832004,10832.004 +23690,2025-03-10T00:12:39.679082-07:00,1712.0,10.832997,10832.997 +23691,2025-03-10T00:12:50.523094-07:00,1712.0,10.844012,10844.012 +23692,2025-03-10T00:13:01.363228-07:00,1712.0,10.840134,10840.134 +23693,2025-03-10T00:13:12.198363-07:00,1665.0,10.835135,10835.135 +23694,2025-03-10T00:13:23.036154-07:00,1712.0,10.837791,10837.791 +23695,2025-03-10T00:13:33.873851-07:00,1712.0,10.837697,10837.697 +23696,2025-03-10T00:13:44.715500-07:00,1648.0,10.841649,10841.649 +23697,2025-03-10T00:13:55.547090-07:00,1627.0,10.83159,10831.59 +23698,2025-03-10T00:14:06.380472-07:00,1663.0,10.833382,10833.382 +23699,2025-03-10T00:14:17.223113-07:00,1647.0,10.842641,10842.641 +23700,2025-03-10T00:14:28.050433-07:00,1659.0,10.82732,10827.32 +23701,2025-03-10T00:14:38.898371-07:00,1677.0,10.847938,10847.938 +23702,2025-03-10T00:14:49.728295-07:00,1683.0,10.829924,10829.924 +23703,2025-03-10T00:15:00.562349-07:00,1712.0,10.834054,10834.054 +23704,2025-03-10T00:15:11.404241-07:00,1712.0,10.841892,10841.892 +23705,2025-03-10T00:15:22.236089-07:00,1655.0,10.831848,10831.848 +23706,2025-03-10T00:15:33.079394-07:00,1712.0,10.843305,10843.305 +23707,2025-03-10T00:15:43.917796-07:00,1622.0,10.838402,10838.402 +23708,2025-03-10T00:15:54.754086-07:00,1619.0,10.83629,10836.29 +23709,2025-03-10T00:16:05.598086-07:00,1670.0,10.844,10844.0 +23710,2025-03-10T00:16:16.429036-07:00,1712.0,10.83095,10830.95 +23711,2025-03-10T00:16:27.271235-07:00,1680.0,10.842199,10842.199 +23712,2025-03-10T00:16:38.106011-07:00,1653.0,10.834776,10834.776 +23713,2025-03-10T00:16:48.947310-07:00,1653.0,10.841299,10841.299 +23714,2025-03-10T00:16:59.781058-07:00,1713.0,10.833748,10833.748 +23715,2025-03-10T00:17:10.616205-07:00,1633.0,10.835147,10835.147 +23716,2025-03-10T00:17:21.453298-07:00,1648.0,10.837093,10837.093 +23717,2025-03-10T00:17:32.286137-07:00,1670.0,10.832839,10832.839 +23718,2025-03-10T00:17:43.122996-07:00,1712.0,10.836859,10836.859 +23719,2025-03-10T00:17:53.959425-07:00,1690.0,10.836429,10836.429 +23720,2025-03-10T00:18:04.798085-07:00,1680.0,10.83866,10838.66 +23721,2025-03-10T00:18:15.630520-07:00,1627.0,10.832435,10832.435 +23722,2025-03-10T00:18:26.466090-07:00,1703.0,10.83557,10835.57 +23723,2025-03-10T00:18:37.298392-07:00,1708.0,10.832302,10832.302 +23724,2025-03-10T00:18:48.128085-07:00,1667.0,10.829693,10829.693 +23725,2025-03-10T00:18:58.973089-07:00,1683.0,10.845004,10845.004 +23726,2025-03-10T00:19:09.803645-07:00,1699.0,10.830556,10830.556 +23727,2025-03-10T00:19:20.638435-07:00,1712.0,10.83479,10834.79 +23728,2025-03-10T00:19:31.485145-07:00,1685.0,10.84671,10846.71 +23729,2025-03-10T00:19:42.324417-07:00,1650.0,10.839272,10839.272 +23730,2025-03-10T00:19:53.155212-07:00,1708.0,10.830795,10830.795 +23731,2025-03-10T00:20:03.995524-07:00,1667.0,10.840312,10840.312 +23732,2025-03-10T00:20:03.995524-07:00,1667.0,0.0,0.0 +23733,2025-03-10T00:20:14.827427-07:00,1660.0,10.831903,10831.903 +23734,2025-03-10T00:20:25.664260-07:00,1711.0,10.836833,10836.833 +23735,2025-03-10T00:20:36.488329-07:00,1710.0,10.824069,10824.069 +23736,2025-03-10T00:20:47.322320-07:00,1666.0,10.833991,10833.991 +23737,2025-03-10T00:20:58.163317-07:00,1708.0,10.840997,10840.997 +23738,2025-03-10T00:21:08.998500-07:00,1701.0,10.835183,10835.183 +23739,2025-03-10T00:21:19.837080-07:00,1620.0,10.83858,10838.58 +23740,2025-03-10T00:21:30.674564-07:00,1625.0,10.837484,10837.484 +23741,2025-03-10T00:21:41.500435-07:00,1674.0,10.825871,10825.871 +23742,2025-03-10T00:21:52.343079-07:00,1710.0,10.842644,10842.644 +23743,2025-03-10T00:22:03.176271-07:00,1687.0,10.833192,10833.192 +23744,2025-03-10T00:22:14.012284-07:00,1625.0,10.836013,10836.013 +23745,2025-03-10T00:22:24.843123-07:00,1713.0,10.830839,10830.839 +23746,2025-03-10T00:22:35.687425-07:00,1677.0,10.844302,10844.302 +23747,2025-03-10T00:22:46.519351-07:00,1627.0,10.831926,10831.926 +23748,2025-03-10T00:22:57.346090-07:00,1629.0,10.826739,10826.739 +23749,2025-03-10T00:23:08.182165-07:00,1667.0,10.836075,10836.075 +23750,2025-03-10T00:23:19.020309-07:00,1707.0,10.838144,10838.144 +23751,2025-03-10T00:23:29.852407-07:00,1623.0,10.832098,10832.098 +23752,2025-03-10T00:23:40.687085-07:00,1706.0,10.834678,10834.678 +23753,2025-03-10T00:23:51.531214-07:00,1648.0,10.844129,10844.129 +23754,2025-03-10T00:24:02.364407-07:00,1667.0,10.833193,10833.193 +23755,2025-03-10T00:24:13.190085-07:00,1658.0,10.825678,10825.678 +23756,2025-03-10T00:24:24.022485-07:00,1711.0,10.8324,10832.4 +23757,2025-03-10T00:24:34.858254-07:00,1712.0,10.835769,10835.769 +23758,2025-03-10T00:24:45.691088-07:00,1712.0,10.832834,10832.834 +23759,2025-03-10T00:24:56.527898-07:00,1699.0,10.83681,10836.81 +23760,2025-03-10T00:25:07.365561-07:00,1659.0,10.837663,10837.663 +23761,2025-03-10T00:25:18.204225-07:00,1638.0,10.838664,10838.664 +23762,2025-03-10T00:25:29.039551-07:00,1712.0,10.835326,10835.326 +23763,2025-03-10T00:25:39.870100-07:00,1646.0,10.830549,10830.549 +23764,2025-03-10T00:25:50.702634-07:00,1712.0,10.832534,10832.534 +23765,2025-03-10T00:26:01.540072-07:00,1702.0,10.837438,10837.438 +23766,2025-03-10T00:26:12.377147-07:00,1713.0,10.837075,10837.075 +23767,2025-03-10T00:26:23.219949-07:00,1663.0,10.842802,10842.802 +23768,2025-03-10T00:26:34.053065-07:00,1698.0,10.833116,10833.116 +23769,2025-03-10T00:26:44.897224-07:00,1714.0,10.844159,10844.159 +23770,2025-03-10T00:26:55.735231-07:00,1712.0,10.838007,10838.007 +23771,2025-03-10T00:27:06.571162-07:00,1687.0,10.835931,10835.931 +23772,2025-03-10T00:27:17.400130-07:00,1712.0,10.828968,10828.968 +23773,2025-03-10T00:27:28.232247-07:00,1678.0,10.832117,10832.117 +23774,2025-03-10T00:27:39.072131-07:00,1689.0,10.839884,10839.884 +23775,2025-03-10T00:27:49.899344-07:00,1649.0,10.827213,10827.213 +23776,2025-03-10T00:28:00.735643-07:00,1697.0,10.836299,10836.299 +23777,2025-03-10T00:28:11.573139-07:00,1648.0,10.837496,10837.496 +23778,2025-03-10T00:28:22.403920-07:00,1707.0,10.830781,10830.781 +23779,2025-03-10T00:28:33.225084-07:00,1701.0,10.821164,10821.164 +23780,2025-03-10T00:28:44.067717-07:00,1687.0,10.842633,10842.633 +23781,2025-03-10T00:28:54.904785-07:00,1711.0,10.837068,10837.068 +23782,2025-03-10T00:29:05.731435-07:00,1712.0,10.82665,10826.65 +23783,2025-03-10T00:29:16.567147-07:00,1659.0,10.835712,10835.712 +23784,2025-03-10T00:29:27.393481-07:00,1650.0,10.826334,10826.334 +23785,2025-03-10T00:29:38.232632-07:00,1705.0,10.839151,10839.151 +23786,2025-03-10T00:29:49.058318-07:00,1706.0,10.825686,10825.686 +23787,2025-03-10T00:29:59.889466-07:00,1674.0,10.831148,10831.148 +23788,2025-03-10T00:30:10.721335-07:00,1687.0,10.831869,10831.869 +23789,2025-03-10T00:30:21.554396-07:00,1669.0,10.833061,10833.061 +23790,2025-03-10T00:30:32.380189-07:00,1671.0,10.825793,10825.793 +23791,2025-03-10T00:30:43.205369-07:00,1629.0,10.82518,10825.18 +23792,2025-03-10T00:30:54.036067-07:00,1698.0,10.830698,10830.698 +23793,2025-03-10T00:31:04.873260-07:00,1691.0,10.837193,10837.193 +23794,2025-03-10T00:31:15.701219-07:00,1712.0,10.827959,10827.959 +23795,2025-03-10T00:31:26.543087-07:00,1712.0,10.841868,10841.868 +23796,2025-03-10T00:31:37.375763-07:00,1666.0,10.832676,10832.676 +23797,2025-03-10T00:31:48.206086-07:00,1694.0,10.830323,10830.323 +23798,2025-03-10T00:31:59.046807-07:00,1650.0,10.840721,10840.721 +23799,2025-03-10T00:32:09.889392-07:00,1695.0,10.842585,10842.585 +23800,2025-03-10T00:32:20.721089-07:00,1698.0,10.831697,10831.697 +23801,2025-03-10T00:32:31.563209-07:00,1669.0,10.84212,10842.12 +23802,2025-03-10T00:32:42.394326-07:00,1712.0,10.831117,10831.117 +23803,2025-03-10T00:32:53.226087-07:00,1662.0,10.831761,10831.761 +23804,2025-03-10T00:33:04.070067-07:00,1661.0,10.84398,10843.98 +23805,2025-03-10T00:33:14.904334-07:00,1712.0,10.834267,10834.267 +23806,2025-03-10T00:33:25.744234-07:00,1629.0,10.8399,10839.9 +23807,2025-03-10T00:33:36.587260-07:00,1631.0,10.843026,10843.026 +23808,2025-03-10T00:33:47.429664-07:00,1630.0,10.842404,10842.404 +23809,2025-03-10T00:33:58.267343-07:00,1680.0,10.837679,10837.679 +23810,2025-03-10T00:34:09.109228-07:00,1648.0,10.841885,10841.885 +23811,2025-03-10T00:34:19.953061-07:00,1657.0,10.843833,10843.833 +23812,2025-03-10T00:34:30.792444-07:00,1709.0,10.839383,10839.383 +23813,2025-03-10T00:34:41.629338-07:00,1693.0,10.836894,10836.894 +23814,2025-03-10T00:34:52.468621-07:00,1712.0,10.839283,10839.283 +23815,2025-03-10T00:35:03.307349-07:00,1712.0,10.838728,10838.728 +23816,2025-03-10T00:35:14.144317-07:00,1666.0,10.836968,10836.968 +23817,2025-03-10T00:35:24.974087-07:00,1648.0,10.82977,10829.77 +23818,2025-03-10T00:35:35.813435-07:00,1666.0,10.839348,10839.348 +23819,2025-03-10T00:35:46.663560-07:00,1619.0,10.850125,10850.125 +23820,2025-03-10T00:35:57.502093-07:00,1680.0,10.838533,10838.533 +23821,2025-03-10T00:36:08.341417-07:00,1679.0,10.839324,10839.324 +23822,2025-03-10T00:36:19.185451-07:00,1701.0,10.844034,10844.034 +23823,2025-03-10T00:36:30.023153-07:00,1710.0,10.837702,10837.702 +23824,2025-03-10T00:36:40.863081-07:00,1680.0,10.839928,10839.928 +23825,2025-03-10T00:36:51.716091-07:00,1701.0,10.85301,10853.01 +23826,2025-03-10T00:37:02.558672-07:00,1643.0,10.842581,10842.581 +23827,2025-03-10T00:37:13.391084-07:00,1712.0,10.832412,10832.412 +23828,2025-03-10T00:37:24.241750-07:00,1706.0,10.850666,10850.666 +23829,2025-03-10T00:37:35.084425-07:00,1695.0,10.842675,10842.675 +23830,2025-03-10T00:37:45.928192-07:00,1701.0,10.843767,10843.767 +23831,2025-03-10T00:37:56.766417-07:00,1647.0,10.838225,10838.225 +23832,2025-03-10T00:38:07.602082-07:00,1664.0,10.835665,10835.665 +23833,2025-03-10T00:38:18.448067-07:00,1616.0,10.845985,10845.985 +23834,2025-03-10T00:38:29.281922-07:00,1709.0,10.833855,10833.855 +23835,2025-03-10T00:38:40.133131-07:00,1675.0,10.851209,10851.209 +23836,2025-03-10T00:38:50.977312-07:00,1641.0,10.844181,10844.181 +23837,2025-03-10T00:39:01.825080-07:00,1703.0,10.847768,10847.768 +23838,2025-03-10T00:39:12.663085-07:00,1634.0,10.838005,10838.005 +23839,2025-03-10T00:39:23.515094-07:00,1667.0,10.852009,10852.009 +23840,2025-03-10T00:39:34.359425-07:00,1675.0,10.844331,10844.331 +23841,2025-03-10T00:39:45.200086-07:00,1713.0,10.840661,10840.661 +23842,2025-03-10T00:39:56.047126-07:00,1712.0,10.84704,10847.04 +23843,2025-03-10T00:40:06.887333-07:00,1712.0,10.840207,10840.207 +23844,2025-03-10T00:40:17.727097-07:00,1631.0,10.839764,10839.764 +23845,2025-03-10T00:40:28.574528-07:00,1664.0,10.847431,10847.431 +23846,2025-03-10T00:40:39.417403-07:00,1625.0,10.842875,10842.875 +23847,2025-03-10T00:40:50.260664-07:00,1709.0,10.843261,10843.261 +23848,2025-03-10T00:41:01.092659-07:00,1667.0,10.831995,10831.995 +23849,2025-03-10T00:41:11.935081-07:00,1707.0,10.842422,10842.422 +23850,2025-03-10T00:41:22.782440-07:00,1671.0,10.847359,10847.359 +23851,2025-03-10T00:41:33.628336-07:00,1692.0,10.845896,10845.896 +23852,2025-03-10T00:41:44.469293-07:00,1671.0,10.840957,10840.957 +23853,2025-03-10T00:41:55.318390-07:00,1645.0,10.849097,10849.097 +23854,2025-03-10T00:42:06.151145-07:00,1683.0,10.832755,10832.755 +23855,2025-03-10T00:42:16.994599-07:00,1711.0,10.843454,10843.454 +23856,2025-03-10T00:42:27.835139-07:00,1683.0,10.84054,10840.54 +23857,2025-03-10T00:42:38.676213-07:00,1697.0,10.841074,10841.074 +23858,2025-03-10T00:42:49.514218-07:00,1711.0,10.838005,10838.005 +23859,2025-03-10T00:43:00.348191-07:00,1658.0,10.833973,10833.973 +23860,2025-03-10T00:43:11.189129-07:00,1628.0,10.840938,10840.938 +23861,2025-03-10T00:43:22.020355-07:00,1713.0,10.831226,10831.226 +23862,2025-03-10T00:43:32.865217-07:00,1630.0,10.844862,10844.862 +23863,2025-03-10T00:43:43.708388-07:00,1712.0,10.843171,10843.171 +23864,2025-03-10T00:43:54.547407-07:00,1712.0,10.839019,10839.019 +23865,2025-03-10T00:44:05.382090-07:00,1699.0,10.834683,10834.683 +23866,2025-03-10T00:44:16.229081-07:00,1669.0,10.846991,10846.991 +23867,2025-03-10T00:44:27.069294-07:00,1712.0,10.840213,10840.213 +23868,2025-03-10T00:44:37.912337-07:00,1686.0,10.843043,10843.043 +23869,2025-03-10T00:44:48.747696-07:00,1619.0,10.835359,10835.359 +23870,2025-03-10T00:44:59.590363-07:00,1682.0,10.842667,10842.667 +23871,2025-03-10T00:45:10.432312-07:00,1703.0,10.841949,10841.949 +23872,2025-03-10T00:45:21.270278-07:00,1703.0,10.837966,10837.966 +23873,2025-03-10T00:45:32.111090-07:00,1709.0,10.840812,10840.812 +23874,2025-03-10T00:45:42.960945-07:00,1703.0,10.849855,10849.855 +23875,2025-03-10T00:45:53.796063-07:00,1712.0,10.835118,10835.118 +23876,2025-03-10T00:46:04.635189-07:00,1705.0,10.839126,10839.126 +23877,2025-03-10T00:46:15.483427-07:00,1614.0,10.848238,10848.238 +23878,2025-03-10T00:46:26.323590-07:00,1675.0,10.840163,10840.163 +23879,2025-03-10T00:46:37.171152-07:00,1694.0,10.847562,10847.562 +23880,2025-03-10T00:46:48.009086-07:00,1631.0,10.837934,10837.934 +23881,2025-03-10T00:46:58.853090-07:00,1675.0,10.844004,10844.004 +23882,2025-03-10T00:47:09.706086-07:00,1677.0,10.852996,10852.996 +23883,2025-03-10T00:47:20.552088-07:00,1680.0,10.846002,10846.002 +23884,2025-03-10T00:47:31.392521-07:00,1707.0,10.840433,10840.433 +23885,2025-03-10T00:47:42.239211-07:00,1691.0,10.84669,10846.69 +23886,2025-03-10T00:47:53.073045-07:00,1653.0,10.833834,10833.834 +23887,2025-03-10T00:48:03.917254-07:00,1710.0,10.844209,10844.209 +23888,2025-03-10T00:48:14.753087-07:00,1654.0,10.835833,10835.833 +23889,2025-03-10T00:48:25.597085-07:00,1616.0,10.843998,10843.998 +23890,2025-03-10T00:48:36.446088-07:00,1691.0,10.849003,10849.003 +23891,2025-03-10T00:48:47.290095-07:00,1698.0,10.844007,10844.007 +23892,2025-03-10T00:48:58.130655-07:00,1629.0,10.84056,10840.56 +23893,2025-03-10T00:49:08.973131-07:00,1691.0,10.842476,10842.476 +23894,2025-03-10T00:49:19.820394-07:00,1658.0,10.847263,10847.263 +23895,2025-03-10T00:49:30.655693-07:00,1667.0,10.835299,10835.299 +23896,2025-03-10T00:49:41.486085-07:00,1650.0,10.830392,10830.392 +23897,2025-03-10T00:49:52.324090-07:00,1635.0,10.838005,10838.005 +23898,2025-03-10T00:50:03.164091-07:00,1711.0,10.840001,10840.001 +23899,2025-03-10T00:50:13.999129-07:00,1699.0,10.835038,10835.038 +23900,2025-03-10T00:50:24.848090-07:00,1699.0,10.848961,10848.961 +23901,2025-03-10T00:50:35.681578-07:00,1635.0,10.833488,10833.488 +23902,2025-03-10T00:50:46.529458-07:00,1673.0,10.84788,10847.88 +23903,2025-03-10T00:50:57.360911-07:00,1713.0,10.831453,10831.453 +23904,2025-03-10T00:51:08.202078-07:00,1705.0,10.841167,10841.167 +23905,2025-03-10T00:51:19.032501-07:00,1674.0,10.830423,10830.423 +23906,2025-03-10T00:51:29.868185-07:00,1643.0,10.835684,10835.684 +23907,2025-03-10T00:51:40.710522-07:00,1648.0,10.842337,10842.337 +23908,2025-03-10T00:51:51.553913-07:00,1696.0,10.843391,10843.391 +23909,2025-03-10T00:52:02.385283-07:00,1701.0,10.83137,10831.37 +23910,2025-03-10T00:52:13.227269-07:00,1642.0,10.841986,10841.986 +23911,2025-03-10T00:52:24.072311-07:00,1631.0,10.845042,10845.042 +23912,2025-03-10T00:52:34.904133-07:00,1671.0,10.831822,10831.822 +23913,2025-03-10T00:52:45.746088-07:00,1700.0,10.841955,10841.955 +23914,2025-03-10T00:52:56.579492-07:00,1677.0,10.833404,10833.404 +23915,2025-03-10T00:53:07.411080-07:00,1664.0,10.831588,10831.588 +23916,2025-03-10T00:53:18.246090-07:00,1633.0,10.83501,10835.01 +23917,2025-03-10T00:53:29.090101-07:00,1642.0,10.844011,10844.011 +23918,2025-03-10T00:53:39.927175-07:00,1663.0,10.837074,10837.074 +23919,2025-03-10T00:53:50.770827-07:00,1659.0,10.843652,10843.652 +23920,2025-03-10T00:54:01.614571-07:00,1675.0,10.843744,10843.744 +23921,2025-03-10T00:54:12.446268-07:00,1703.0,10.831697,10831.697 +23922,2025-03-10T00:54:23.288325-07:00,1669.0,10.842057,10842.057 +23923,2025-03-10T00:54:34.127312-07:00,1648.0,10.838987,10838.987 +23924,2025-03-10T00:54:44.970089-07:00,1712.0,10.842777,10842.777 +23925,2025-03-10T00:54:55.816415-07:00,1657.0,10.846326,10846.326 +23926,2025-03-10T00:55:06.650548-07:00,1702.0,10.834133,10834.133 +23927,2025-03-10T00:55:17.485416-07:00,1712.0,10.834868,10834.868 +23928,2025-03-10T00:55:28.312533-07:00,1712.0,10.827117,10827.117 +23929,2025-03-10T00:55:39.155714-07:00,1687.0,10.843181,10843.181 +23930,2025-03-10T00:55:49.993234-07:00,1642.0,10.83752,10837.52 +23931,2025-03-10T00:56:00.828136-07:00,1682.0,10.834902,10834.902 +23932,2025-03-10T00:56:11.668090-07:00,1670.0,10.839954,10839.954 +23933,2025-03-10T00:56:22.507968-07:00,1677.0,10.839878,10839.878 +23934,2025-03-10T00:56:33.335082-07:00,1676.0,10.827114,10827.114 +23935,2025-03-10T00:56:44.181147-07:00,1683.0,10.846065,10846.065 +23936,2025-03-10T00:56:55.010430-07:00,1685.0,10.829283,10829.283 +23937,2025-03-10T00:57:05.846082-07:00,1702.0,10.835652,10835.652 +23938,2025-03-10T00:57:16.688134-07:00,1663.0,10.842052,10842.052 +23939,2025-03-10T00:57:27.525425-07:00,1694.0,10.837291,10837.291 +23940,2025-03-10T00:57:38.361306-07:00,1675.0,10.835881,10835.881 +23941,2025-03-10T00:57:49.193292-07:00,1686.0,10.831986,10831.986 +23942,2025-03-10T00:58:00.038398-07:00,1626.0,10.845106,10845.106 +23943,2025-03-10T00:58:10.865212-07:00,1712.0,10.826814,10826.814 +23944,2025-03-10T00:58:21.712131-07:00,1707.0,10.846919,10846.919 +23945,2025-03-10T00:58:32.544300-07:00,1650.0,10.832169,10832.169 +23946,2025-03-10T00:58:43.376079-07:00,1667.0,10.831779,10831.779 +23947,2025-03-10T00:58:54.214063-07:00,1709.0,10.837984,10837.984 +23948,2025-03-10T00:59:05.051131-07:00,1711.0,10.837068,10837.068 +23949,2025-03-10T00:59:15.893172-07:00,1655.0,10.842041,10842.041 +23950,2025-03-10T00:59:26.729449-07:00,1672.0,10.836277,10836.277 +23951,2025-03-10T00:59:37.568660-07:00,1665.0,10.839211,10839.211 +23952,2025-03-10T00:59:48.409229-07:00,1617.0,10.840569,10840.569 +23953,2025-03-10T00:59:59.242088-07:00,1712.0,10.832859,10832.859 +23954,2025-03-10T01:00:10.079123-07:00,1692.0,10.837035,10837.035 +23955,2025-03-10T01:00:20.921140-07:00,1670.0,10.842017,10842.017 +23956,2025-03-10T01:00:31.750360-07:00,1650.0,10.82922,10829.22 +23957,2025-03-10T01:00:42.582089-07:00,1711.0,10.831729,10831.729 +23958,2025-03-10T01:00:53.411571-07:00,1667.0,10.829482,10829.482 +23959,2025-03-10T01:01:04.255339-07:00,1680.0,10.843768,10843.768 +23960,2025-03-10T01:01:15.087085-07:00,1617.0,10.831746,10831.746 +23961,2025-03-10T01:01:25.919338-07:00,1669.0,10.832253,10832.253 +23962,2025-03-10T01:01:36.761826-07:00,1665.0,10.842488,10842.488 +23963,2025-03-10T01:01:47.605087-07:00,1680.0,10.843261,10843.261 +23964,2025-03-10T01:01:58.436094-07:00,1698.0,10.831007,10831.007 +23965,2025-03-10T01:02:09.280691-07:00,1662.0,10.844597,10844.597 +23966,2025-03-10T01:02:20.113122-07:00,1658.0,10.832431,10832.431 +23967,2025-03-10T01:02:30.950440-07:00,1687.0,10.837318,10837.318 +23968,2025-03-10T01:02:41.798504-07:00,1653.0,10.848064,10848.064 +23969,2025-03-10T01:02:52.631088-07:00,1673.0,10.832584,10832.584 +23970,2025-03-10T01:03:03.460084-07:00,1645.0,10.828996,10828.996 +23971,2025-03-10T01:03:14.295323-07:00,1713.0,10.835239,10835.239 +23972,2025-03-10T01:03:25.136452-07:00,1624.0,10.841129,10841.129 +23973,2025-03-10T01:03:35.968404-07:00,1712.0,10.831952,10831.952 +23974,2025-03-10T01:03:46.798331-07:00,1631.0,10.829927,10829.927 +23975,2025-03-10T01:03:57.643088-07:00,1675.0,10.844757,10844.757 +23976,2025-03-10T01:04:08.474626-07:00,1622.0,10.831538,10831.538 +23977,2025-03-10T01:04:19.306061-07:00,1711.0,10.831435,10831.435 +23978,2025-03-10T01:04:30.142425-07:00,1713.0,10.836364,10836.364 +23979,2025-03-10T01:04:40.969085-07:00,1714.0,10.82666,10826.66 +23980,2025-03-10T01:04:51.801087-07:00,1627.0,10.832002,10832.002 +23981,2025-03-10T01:05:02.634474-07:00,1685.0,10.833387,10833.387 +23982,2025-03-10T01:05:13.475768-07:00,1701.0,10.841294,10841.294 +23983,2025-03-10T01:05:24.307135-07:00,1659.0,10.831367,10831.367 +23984,2025-03-10T01:05:35.138230-07:00,1708.0,10.831095,10831.095 +23985,2025-03-10T01:05:46.055190-07:00,1694.0,10.91696,10916.96 +23986,2025-03-10T01:05:56.887483-07:00,1673.0,10.832293,10832.293 +23987,2025-03-10T01:06:07.719097-07:00,1664.0,10.831614,10831.614 +23988,2025-03-10T01:06:18.550411-07:00,1659.0,10.831314,10831.314 +23989,2025-03-10T01:06:29.373001-07:00,1709.0,10.82259,10822.59 +23990,2025-03-10T01:06:40.209931-07:00,1696.0,10.83693,10836.93 +23991,2025-03-10T01:06:51.048940-07:00,1693.0,10.839009,10839.009 +23992,2025-03-10T01:07:01.890203-07:00,1667.0,10.841263,10841.263 +23993,2025-03-10T01:07:12.722397-07:00,1712.0,10.832194,10832.194 +23994,2025-03-10T01:07:23.562951-07:00,1710.0,10.840554,10840.554 +23995,2025-03-10T01:07:34.393124-07:00,1709.0,10.830173,10830.173 +23996,2025-03-10T01:07:45.236315-07:00,1684.0,10.843191,10843.191 +23997,2025-03-10T01:07:56.077949-07:00,1655.0,10.841634,10841.634 +23998,2025-03-10T01:08:06.914090-07:00,1713.0,10.836141,10836.141 +23999,2025-03-10T01:08:17.757313-07:00,1710.0,10.843223,10843.223 +24000,2025-03-10T01:08:28.589438-07:00,1714.0,10.832125,10832.125 +24001,2025-03-10T01:08:39.428950-07:00,1691.0,10.839512,10839.512 +24002,2025-03-10T01:08:50.262274-07:00,1671.0,10.833324,10833.324 +24003,2025-03-10T01:09:01.107396-07:00,1712.0,10.845122,10845.122 +24004,2025-03-10T01:09:11.938958-07:00,1712.0,10.831562,10831.562 +24005,2025-03-10T01:09:22.782290-07:00,1712.0,10.843332,10843.332 +24006,2025-03-10T01:09:33.624369-07:00,1675.0,10.842079,10842.079 +24007,2025-03-10T01:09:44.463951-07:00,1712.0,10.839582,10839.582 +24008,2025-03-10T01:09:55.309955-07:00,1698.0,10.846004,10846.004 +24009,2025-03-10T01:10:06.153198-07:00,1699.0,10.843243,10843.243 +24010,2025-03-10T01:10:16.996272-07:00,1712.0,10.843074,10843.074 +24011,2025-03-10T01:10:27.839820-07:00,1712.0,10.843548,10843.548 +24012,2025-03-10T01:10:38.683185-07:00,1707.0,10.843365,10843.365 +24013,2025-03-10T01:10:49.525934-07:00,1680.0,10.842749,10842.749 +24014,2025-03-10T01:11:00.368508-07:00,1715.0,10.842574,10842.574 +24015,2025-03-10T01:11:11.211752-07:00,1712.0,10.843244,10843.244 +24016,2025-03-10T01:11:22.059951-07:00,1692.0,10.848199,10848.199 +24017,2025-03-10T01:11:32.900174-07:00,1632.0,10.840223,10840.223 +24018,2025-03-10T01:11:43.743955-07:00,1681.0,10.843781,10843.781 +24019,2025-03-10T01:11:54.584266-07:00,1705.0,10.840311,10840.311 +24020,2025-03-10T01:12:05.427106-07:00,1698.0,10.84284,10842.84 +24021,2025-03-10T01:12:16.270078-07:00,1661.0,10.842972,10842.972 +24022,2025-03-10T01:12:27.112945-07:00,1709.0,10.842867,10842.867 +24023,2025-03-10T01:12:37.958519-07:00,1654.0,10.845574,10845.574 +24024,2025-03-10T01:12:48.799954-07:00,1667.0,10.841435,10841.435 +24025,2025-03-10T01:12:59.651951-07:00,1673.0,10.851997,10851.997 +24026,2025-03-10T01:13:10.496096-07:00,1680.0,10.844145,10844.145 +24027,2025-03-10T01:13:21.328955-07:00,1681.0,10.832859,10832.859 +24028,2025-03-10T01:13:32.172263-07:00,1649.0,10.843308,10843.308 +24029,2025-03-10T01:13:43.002952-07:00,1712.0,10.830689,10830.689 +24030,2025-03-10T01:13:53.846953-07:00,1713.0,10.844001,10844.001 +24031,2025-03-10T01:14:04.679202-07:00,1712.0,10.832249,10832.249 +24032,2025-03-10T01:14:15.522192-07:00,1631.0,10.84299,10842.99 +24033,2025-03-10T01:14:26.364129-07:00,1705.0,10.841937,10841.937 +24034,2025-03-10T01:14:37.206169-07:00,1663.0,10.84204,10842.04 +24035,2025-03-10T01:14:48.033940-07:00,1680.0,10.827771,10827.771 +24036,2025-03-10T01:14:58.882021-07:00,1713.0,10.848081,10848.081 +24037,2025-03-10T01:15:09.724228-07:00,1709.0,10.842207,10842.207 +24038,2025-03-10T01:15:20.567842-07:00,1682.0,10.843614,10843.614 +24039,2025-03-10T01:15:31.399482-07:00,1702.0,10.83164,10831.64 +24040,2025-03-10T01:15:42.239949-07:00,1710.0,10.840467,10840.467 +24041,2025-03-10T01:15:53.075615-07:00,1712.0,10.835666,10835.666 +24042,2025-03-10T01:16:03.917971-07:00,1698.0,10.842356,10842.356 +24043,2025-03-10T01:16:14.750187-07:00,1659.0,10.832216,10832.216 +24044,2025-03-10T01:16:25.592587-07:00,1713.0,10.8424,10842.4 +24045,2025-03-10T01:16:36.422363-07:00,1713.0,10.829776,10829.776 +24046,2025-03-10T01:16:47.266422-07:00,1671.0,10.844059,10844.059 +24047,2025-03-10T01:16:58.100315-07:00,1648.0,10.833893,10833.893 +24048,2025-03-10T01:17:08.941690-07:00,1661.0,10.841375,10841.375 +24049,2025-03-10T01:17:19.785021-07:00,1703.0,10.843331,10843.331 +24050,2025-03-10T01:17:30.628025-07:00,1666.0,10.843004,10843.004 +24051,2025-03-10T01:17:41.471075-07:00,1711.0,10.84305,10843.05 +24052,2025-03-10T01:17:52.299949-07:00,1779.0,10.828874,10828.874 +24053,2025-03-10T01:18:03.143955-07:00,1757.0,10.844006,10844.006 +24054,2025-03-10T01:18:13.977296-07:00,1744.0,10.833341,10833.341 +24055,2025-03-10T01:18:24.821090-07:00,1701.0,10.843794,10843.794 +24056,2025-03-10T01:18:35.663955-07:00,1747.0,10.842865,10842.865 +24057,2025-03-10T01:18:46.491267-07:00,1776.0,10.827312,10827.312 +24058,2025-03-10T01:18:57.337474-07:00,1785.0,10.846207,10846.207 +24059,2025-03-10T01:19:08.170041-07:00,1733.0,10.832567,10832.567 +24060,2025-03-10T01:19:19.002263-07:00,1764.0,10.832222,10832.222 +24061,2025-03-10T01:19:29.842216-07:00,1689.0,10.839953,10839.953 +24062,2025-03-10T01:19:40.677316-07:00,1774.0,10.8351,10835.1 +24063,2025-03-10T01:19:51.508178-07:00,1712.0,10.830862,10830.862 +24064,2025-03-10T01:20:02.340101-07:00,1751.0,10.831923,10831.923 +24065,2025-03-10T01:20:13.172327-07:00,1695.0,10.832226,10832.226 +24066,2025-03-10T01:20:24.015991-07:00,1703.0,10.843664,10843.664 +24067,2025-03-10T01:20:34.846005-07:00,1776.0,10.830014,10830.014 +24068,2025-03-10T01:20:45.678037-07:00,1772.0,10.832032,10832.032 +24069,2025-03-10T01:20:56.508944-07:00,1744.0,10.830907,10830.907 +24070,2025-03-10T01:21:07.353963-07:00,1785.0,10.845019,10845.019 +24071,2025-03-10T01:21:18.184083-07:00,1734.0,10.83012,10830.12 +24072,2025-03-10T01:21:29.026943-07:00,1726.0,10.84286,10842.86 +24073,2025-03-10T01:21:39.859284-07:00,1781.0,10.832341,10832.341 +24074,2025-03-10T01:21:50.701298-07:00,1707.0,10.842014,10842.014 +24075,2025-03-10T01:22:01.532953-07:00,1765.0,10.831655,10831.655 +24076,2025-03-10T01:22:12.373006-07:00,1691.0,10.840053,10840.053 +24077,2025-03-10T01:22:23.207260-07:00,1693.0,10.834254,10834.254 +24078,2025-03-10T01:22:34.042158-07:00,1686.0,10.834898,10834.898 +24079,2025-03-10T01:22:44.879414-07:00,1769.0,10.837256,10837.256 +24080,2025-03-10T01:22:55.714129-07:00,1739.0,10.834715,10834.715 +24081,2025-03-10T01:23:06.546203-07:00,1773.0,10.832074,10832.074 +24082,2025-03-10T01:23:17.387314-07:00,1725.0,10.841111,10841.111 +24083,2025-03-10T01:23:28.222352-07:00,1765.0,10.835038,10835.038 +24084,2025-03-10T01:23:39.053173-07:00,1718.0,10.830821,10830.821 +24085,2025-03-10T01:23:49.876956-07:00,1783.0,10.823783,10823.783 +24086,2025-03-10T01:24:00.705259-07:00,1735.0,10.828303,10828.303 +24087,2025-03-10T01:24:11.538207-07:00,1744.0,10.832948,10832.948 +24088,2025-03-10T01:24:22.357169-07:00,1719.0,10.818962,10818.962 +24089,2025-03-10T01:24:33.188949-07:00,1771.0,10.83178,10831.78 +24090,2025-03-10T01:24:44.021286-07:00,1782.0,10.832337,10832.337 +24091,2025-03-10T01:24:54.851932-07:00,1776.0,10.830646,10830.646 +24092,2025-03-10T01:25:05.684018-07:00,1711.0,10.832086,10832.086 +24093,2025-03-10T01:25:16.526162-07:00,1772.0,10.842144,10842.144 +24094,2025-03-10T01:25:27.347032-07:00,1750.0,10.82087,10820.87 +24095,2025-03-10T01:25:38.178986-07:00,1765.0,10.831954,10831.954 +24096,2025-03-10T01:25:49.011223-07:00,1713.0,10.832237,10832.237 +24097,2025-03-10T01:25:59.842543-07:00,1775.0,10.83132,10831.32 +24098,2025-03-10T01:26:10.673458-07:00,1782.0,10.830915,10830.915 +24099,2025-03-10T01:26:21.505305-07:00,1785.0,10.831847,10831.847 +24100,2025-03-10T01:26:32.332936-07:00,1744.0,10.827631,10827.631 +24101,2025-03-10T01:26:43.169252-07:00,1782.0,10.836316,10836.316 +24102,2025-03-10T01:26:53.988955-07:00,1714.0,10.819703,10819.703 +24103,2025-03-10T01:27:04.820274-07:00,1682.0,10.831319,10831.319 +24104,2025-03-10T01:27:15.653494-07:00,1765.0,10.83322,10833.22 +24105,2025-03-10T01:27:26.484764-07:00,1781.0,10.83127,10831.27 +24106,2025-03-10T01:27:37.316949-07:00,1762.0,10.832185,10832.185 +24107,2025-03-10T01:27:48.149958-07:00,1783.0,10.833009,10833.009 +24108,2025-03-10T01:27:58.980005-07:00,1740.0,10.830047,10830.047 +24109,2025-03-10T01:28:09.800290-07:00,1696.0,10.820285,10820.285 +24110,2025-03-10T01:28:20.630197-07:00,1739.0,10.829907,10829.907 +24111,2025-03-10T01:28:31.464001-07:00,1707.0,10.833804,10833.804 +24112,2025-03-10T01:28:42.298405-07:00,1701.0,10.834404,10834.404 +24113,2025-03-10T01:28:53.126958-07:00,1754.0,10.828553,10828.553 +24114,2025-03-10T01:29:03.950929-07:00,1731.0,10.823971,10823.971 +24115,2025-03-10T01:29:14.784955-07:00,1778.0,10.834026,10834.026 +24116,2025-03-10T01:29:25.610998-07:00,1728.0,10.826043,10826.043 +24117,2025-03-10T01:29:36.442207-07:00,1767.0,10.831209,10831.209 +24118,2025-03-10T01:29:47.273921-07:00,1744.0,10.831714,10831.714 +24119,2025-03-10T01:29:58.106612-07:00,1776.0,10.832691,10832.691 +24120,2025-03-10T01:30:08.937272-07:00,1781.0,10.83066,10830.66 +24121,2025-03-10T01:30:19.762006-07:00,1781.0,10.824734,10824.734 +24122,2025-03-10T01:30:30.590257-07:00,1712.0,10.828251,10828.251 +24123,2025-03-10T01:30:41.420955-07:00,1695.0,10.830698,10830.698 +24124,2025-03-10T01:30:52.252606-07:00,1776.0,10.831651,10831.651 +24125,2025-03-10T01:31:03.084094-07:00,1699.0,10.831488,10831.488 +24126,2025-03-10T01:31:13.904638-07:00,1716.0,10.820544,10820.544 +24127,2025-03-10T01:31:24.734932-07:00,1776.0,10.830294,10830.294 +24128,2025-03-10T01:31:35.568252-07:00,1719.0,10.83332,10833.32 +24129,2025-03-10T01:31:46.399033-07:00,1718.0,10.830781,10830.781 +24130,2025-03-10T01:31:57.231828-07:00,1709.0,10.832795,10832.795 +24131,2025-03-10T01:32:08.062947-07:00,1683.0,10.831119,10831.119 +24132,2025-03-10T01:32:18.894777-07:00,1722.0,10.83183,10831.83 +24133,2025-03-10T01:32:29.714949-07:00,1702.0,10.820172,10820.172 +24134,2025-03-10T01:32:40.548263-07:00,1687.0,10.833314,10833.314 +24135,2025-03-10T01:32:51.375955-07:00,1651.0,10.827692,10827.692 +24136,2025-03-10T01:33:02.216202-07:00,1722.0,10.840247,10840.247 +24137,2025-03-10T01:33:13.043257-07:00,1632.0,10.827055,10827.055 +24138,2025-03-10T01:33:23.869282-07:00,1712.0,10.826025,10826.025 +24139,2025-03-10T01:33:34.705935-07:00,1718.0,10.836653,10836.653 +24140,2025-03-10T01:33:45.531954-07:00,1690.0,10.826019,10826.019 +24141,2025-03-10T01:33:56.356166-07:00,1632.0,10.824212,10824.212 +24142,2025-03-10T01:34:07.188958-07:00,1727.0,10.832792,10832.792 +24143,2025-03-10T01:34:18.020243-07:00,1683.0,10.831285,10831.285 +24144,2025-03-10T01:34:28.851226-07:00,1678.0,10.830983,10830.983 +24145,2025-03-10T01:34:39.673394-07:00,1674.0,10.822168,10822.168 +24146,2025-03-10T01:34:50.496509-07:00,1645.0,10.823115,10823.115 +24147,2025-03-10T01:35:01.322952-07:00,1642.0,10.826443,10826.443 +24148,2025-03-10T01:35:12.145354-07:00,1699.0,10.822402,10822.402 +24149,2025-03-10T01:35:22.977395-07:00,1718.0,10.832041,10832.041 +24150,2025-03-10T01:35:33.808575-07:00,1686.0,10.83118,10831.18 +24151,2025-03-10T01:35:44.639033-07:00,1648.0,10.830458,10830.458 +24152,2025-03-10T01:35:55.471107-07:00,1719.0,10.832074,10832.074 +24153,2025-03-10T01:36:06.302990-07:00,1684.0,10.831883,10831.883 +24154,2025-03-10T01:36:17.135349-07:00,1678.0,10.832359,10832.359 +24155,2025-03-10T01:36:27.966719-07:00,1705.0,10.83137,10831.37 +24156,2025-03-10T01:36:38.797950-07:00,1690.0,10.831231,10831.231 +24157,2025-03-10T01:36:46.808546-07:00,1715.0,8.010596,8010.596 +24158,2025-03-10T01:36:49.618974-07:00,1715.0,2.810428,2810.428 +24159,2025-03-10T01:37:00.451012-07:00,1728.0,10.832038,10832.038 +24160,2025-03-10T01:37:11.270955-07:00,1680.0,10.819943,10819.943 +24161,2025-03-10T01:37:22.091257-07:00,1637.0,10.820302,10820.302 +24162,2025-03-10T01:37:32.923255-07:00,1714.0,10.831998,10831.998 +24163,2025-03-10T01:37:43.753196-07:00,1722.0,10.829941,10829.941 +24164,2025-03-10T01:37:54.573932-07:00,1692.0,10.820736,10820.736 +24165,2025-03-10T01:38:05.406543-07:00,1648.0,10.832611,10832.611 +24166,2025-03-10T01:38:16.228180-07:00,1679.0,10.821637,10821.637 +24167,2025-03-10T01:38:27.058447-07:00,1695.0,10.830267,10830.267 +24168,2025-03-10T01:38:37.889163-07:00,1701.0,10.830716,10830.716 +24169,2025-03-10T01:38:48.710308-07:00,1669.0,10.821145,10821.145 +24170,2025-03-10T01:38:59.543010-07:00,1722.0,10.832702,10832.702 +24171,2025-03-10T01:39:10.372136-07:00,1683.0,10.829126,10829.126 +24172,2025-03-10T01:39:21.195945-07:00,1679.0,10.823809,10823.809 +24173,2025-03-10T01:39:32.013142-07:00,1682.0,10.817197,10817.197 +24174,2025-03-10T01:39:42.847329-07:00,1724.0,10.834187,10834.187 +24175,2025-03-10T01:39:53.668418-07:00,1639.0,10.821089,10821.089 +24176,2025-03-10T01:40:04.499502-07:00,1719.0,10.831084,10831.084 +24177,2025-03-10T01:40:15.319178-07:00,1676.0,10.819676,10819.676 +24178,2025-03-10T01:40:26.150341-07:00,1687.0,10.831163,10831.163 +24179,2025-03-10T01:40:36.971947-07:00,1644.0,10.821606,10821.606 +24180,2025-03-10T01:40:47.803001-07:00,1684.0,10.831054,10831.054 +24181,2025-03-10T01:40:58.633928-07:00,1651.0,10.830927,10830.927 +24182,2025-03-10T01:41:09.452950-07:00,1723.0,10.819022,10819.022 +24183,2025-03-10T01:41:20.284497-07:00,1642.0,10.831547,10831.547 +24184,2025-03-10T01:41:31.106947-07:00,1724.0,10.82245,10822.45 +24185,2025-03-10T01:41:41.926933-07:00,1722.0,10.819986,10819.986 +24186,2025-03-10T01:41:52.761188-07:00,1723.0,10.834255,10834.255 +24187,2025-03-10T01:42:03.582590-07:00,1689.0,10.821402,10821.402 +24188,2025-03-10T01:42:14.412171-07:00,1717.0,10.829581,10829.581 +24189,2025-03-10T01:42:25.242988-07:00,1646.0,10.830817,10830.817 +24190,2025-03-10T01:42:36.072200-07:00,1714.0,10.829212,10829.212 +24191,2025-03-10T01:42:46.896212-07:00,1683.0,10.824012,10824.012 +24192,2025-03-10T01:42:57.726950-07:00,1643.0,10.830738,10830.738 +24193,2025-03-10T01:43:08.547094-07:00,1728.0,10.820144,10820.144 +24194,2025-03-10T01:43:19.369282-07:00,1679.0,10.822188,10822.188 +24195,2025-03-10T01:43:30.198954-07:00,1729.0,10.829672,10829.672 +24196,2025-03-10T01:43:41.031574-07:00,1706.0,10.83262,10832.62 +24197,2025-03-10T01:43:51.854199-07:00,1690.0,10.822625,10822.625 +24198,2025-03-10T01:44:02.680492-07:00,1687.0,10.826293,10826.293 +24199,2025-03-10T01:44:13.508949-07:00,1725.0,10.828457,10828.457 +24200,2025-03-10T01:44:24.346397-07:00,1689.0,10.837448,10837.448 +24201,2025-03-10T01:44:35.165955-07:00,1685.0,10.819558,10819.558 +24202,2025-03-10T01:44:46.002199-07:00,1690.0,10.836244,10836.244 +24203,2025-03-10T01:44:56.829992-07:00,1718.0,10.827793,10827.793 +24204,2025-03-10T01:45:07.650189-07:00,1722.0,10.820197,10820.197 +24205,2025-03-10T01:45:18.467943-07:00,1679.0,10.817754,10817.754 +24206,2025-03-10T01:45:29.290205-07:00,1723.0,10.822262,10822.262 +24207,2025-03-10T01:45:40.115471-07:00,1680.0,10.825266,10825.266 +24208,2025-03-10T01:45:50.937854-07:00,1708.0,10.822383,10822.383 +24209,2025-03-10T01:46:01.756189-07:00,1694.0,10.818335,10818.335 +24210,2025-03-10T01:46:12.573628-07:00,1683.0,10.817439,10817.439 +24211,2025-03-10T01:46:23.402195-07:00,1648.0,10.828567,10828.567 +24212,2025-03-10T01:46:34.229078-07:00,1639.0,10.826883,10826.883 +24213,2025-03-10T01:46:45.044547-07:00,1693.0,10.815469,10815.469 +24214,2025-03-10T01:46:55.875144-07:00,1679.0,10.830597,10830.597 +24215,2025-03-10T01:47:06.708087-07:00,1678.0,10.832943,10832.943 +24216,2025-03-10T01:47:17.527992-07:00,1714.0,10.819905,10819.905 +24217,2025-03-10T01:47:28.353268-07:00,1724.0,10.825276,10825.276 +24218,2025-03-10T01:47:39.174955-07:00,1712.0,10.821687,10821.687 +24219,2025-03-10T01:47:50.004218-07:00,1723.0,10.829263,10829.263 +24220,2025-03-10T01:48:00.820000-07:00,1712.0,10.815782,10815.782 +24221,2025-03-10T01:48:11.651236-07:00,1673.0,10.831236,10831.236 +24222,2025-03-10T01:48:22.474326-07:00,1719.0,10.82309,10823.09 +24223,2025-03-10T01:48:33.304981-07:00,1680.0,10.830655,10830.655 +24224,2025-03-10T01:48:44.124859-07:00,1683.0,10.819878,10819.878 +24225,2025-03-10T01:48:54.956781-07:00,1723.0,10.831922,10831.922 +24226,2025-03-10T01:49:05.776296-07:00,1719.0,10.819515,10819.515 +24227,2025-03-10T01:49:16.598286-07:00,1707.0,10.82199,10821.99 +24228,2025-03-10T01:49:27.431242-07:00,1680.0,10.832956,10832.956 +24229,2025-03-10T01:49:38.253472-07:00,1646.0,10.82223,10822.23 +24230,2025-03-10T01:49:49.079930-07:00,1677.0,10.826458,10826.458 +24231,2025-03-10T01:49:59.912831-07:00,1708.0,10.832901,10832.901 +24232,2025-03-10T01:50:10.743095-07:00,1677.0,10.830264,10830.264 +24233,2025-03-10T01:50:21.562380-07:00,1722.0,10.819285,10819.285 +24234,2025-03-10T01:50:32.388956-07:00,1691.0,10.826576,10826.576 +24235,2025-03-10T01:50:43.216223-07:00,1698.0,10.827267,10827.267 +24236,2025-03-10T01:50:54.044092-07:00,1681.0,10.827869,10827.869 +24237,2025-03-10T01:51:04.867318-07:00,1670.0,10.823226,10823.226 +24238,2025-03-10T01:51:15.695268-07:00,1727.0,10.82795,10827.95 +24239,2025-03-10T01:51:26.520968-07:00,1685.0,10.8257,10825.7 +24240,2025-03-10T01:51:37.341176-07:00,1682.0,10.820208,10820.208 +24241,2025-03-10T01:51:48.162615-07:00,1712.0,10.821439,10821.439 +24242,2025-03-10T01:51:58.980966-07:00,1643.0,10.818351,10818.351 +24243,2025-03-10T01:52:09.810955-07:00,1709.0,10.829989,10829.989 +24244,2025-03-10T01:52:31.462736-07:00,1655.0,21.651781,21651.781 +24245,2025-03-10T01:52:42.285207-07:00,1721.0,10.822471,10822.471 +24246,2025-03-10T01:52:53.105402-07:00,1642.0,10.820195,10820.195 +24247,2025-03-10T01:53:03.933261-07:00,1681.0,10.827859,10827.859 +24248,2025-03-10T01:53:14.757947-07:00,1646.0,10.824686,10824.686 +24249,2025-03-10T01:53:25.582177-07:00,1725.0,10.82423,10824.23 +24250,2025-03-10T01:53:36.408944-07:00,1633.0,10.826767,10826.767 +24251,2025-03-10T01:53:47.241263-07:00,1719.0,10.832319,10832.319 +24252,2025-03-10T01:53:58.061948-07:00,1667.0,10.820685,10820.685 +24253,2025-03-10T01:54:08.900179-07:00,1717.0,10.838231,10838.231 +24254,2025-03-10T01:54:19.725164-07:00,1722.0,10.824985,10824.985 +24255,2025-03-10T01:54:30.557552-07:00,1678.0,10.832388,10832.388 +24256,2025-03-10T01:54:41.376951-07:00,1698.0,10.819399,10819.399 +24257,2025-03-10T01:54:52.209286-07:00,1724.0,10.832335,10832.335 +24258,2025-03-10T01:55:03.036955-07:00,1653.0,10.827669,10827.669 +24259,2025-03-10T01:55:13.872368-07:00,1659.0,10.835413,10835.413 +24260,2025-03-10T01:55:24.695932-07:00,1631.0,10.823564,10823.564 +24261,2025-03-10T01:55:35.531460-07:00,1659.0,10.835528,10835.528 +24262,2025-03-10T01:55:46.358351-07:00,1627.0,10.826891,10826.891 +24263,2025-03-10T01:55:57.180302-07:00,1671.0,10.821951,10821.951 +24264,2025-03-10T01:56:08.008932-07:00,1723.0,10.82863,10828.63 +24265,2025-03-10T01:56:18.840282-07:00,1728.0,10.83135,10831.35 +24266,2025-03-10T01:56:29.666957-07:00,1671.0,10.826675,10826.675 +24267,2025-03-10T01:56:40.491740-07:00,1728.0,10.824783,10824.783 +24268,2025-03-10T01:56:51.322953-07:00,1716.0,10.831213,10831.213 +24269,2025-03-10T01:57:02.144986-07:00,1727.0,10.822033,10822.033 +24270,2025-03-10T01:57:12.969274-07:00,1726.0,10.824288,10824.288 +24271,2025-03-10T01:57:23.793949-07:00,1653.0,10.824675,10824.675 +24272,2025-03-10T01:57:34.620290-07:00,1715.0,10.826341,10826.341 +24273,2025-03-10T01:57:45.448174-07:00,1721.0,10.827884,10827.884 +24274,2025-03-10T01:57:56.281296-07:00,1656.0,10.833122,10833.122 +24275,2025-03-10T01:58:07.108732-07:00,1639.0,10.827436,10827.436 +24276,2025-03-10T01:58:17.933257-07:00,1725.0,10.824525,10824.525 +24277,2025-03-10T01:58:28.752955-07:00,1715.0,10.819698,10819.698 +24278,2025-03-10T01:58:39.579197-07:00,1635.0,10.826242,10826.242 +24279,2025-03-10T01:58:50.401143-07:00,1671.0,10.821946,10821.946 +24280,2025-03-10T01:59:01.225946-07:00,1723.0,10.824803,10824.803 +24281,2025-03-10T01:59:12.055957-07:00,1717.0,10.830011,10830.011 +24282,2025-03-10T01:59:22.883171-07:00,1683.0,10.827214,10827.214 +24283,2025-03-10T01:59:33.709260-07:00,1655.0,10.826089,10826.089 +24284,2025-03-10T01:59:44.542058-07:00,1687.0,10.832798,10832.798 +24285,2025-03-10T01:59:55.369268-07:00,1707.0,10.82721,10827.21 +24286,2025-03-10T02:00:06.197955-07:00,1657.0,10.828687,10828.687 +24287,2025-03-10T02:00:17.014031-07:00,1634.0,10.816076,10816.076 +24288,2025-03-10T02:00:27.833313-07:00,1726.0,10.819282,10819.282 +24289,2025-03-10T02:00:38.662099-07:00,1713.0,10.828786,10828.786 +24290,2025-03-10T02:00:49.485206-07:00,1726.0,10.823107,10823.107 +24291,2025-03-10T02:01:00.322273-07:00,1727.0,10.837067,10837.067 +24292,2025-03-10T02:01:11.149528-07:00,1685.0,10.827255,10827.255 +24293,2025-03-10T02:01:21.966204-07:00,1721.0,10.816676,10816.676 +24294,2025-03-10T02:01:32.796628-07:00,1679.0,10.830424,10830.424 +24295,2025-03-10T02:01:43.622203-07:00,1655.0,10.825575,10825.575 +24296,2025-03-10T02:01:54.454238-07:00,1646.0,10.832035,10832.035 +24297,2025-03-10T02:02:05.274948-07:00,1727.0,10.82071,10820.71 +24298,2025-03-10T02:02:16.104023-07:00,1705.0,10.829075,10829.075 +24299,2025-03-10T02:02:26.927271-07:00,1726.0,10.823248,10823.248 +24300,2025-03-10T02:02:37.752951-07:00,1710.0,10.82568,10825.68 +24301,2025-03-10T02:02:48.573471-07:00,1697.0,10.82052,10820.52 +24302,2025-03-10T02:02:59.405167-07:00,1709.0,10.831696,10831.696 +24303,2025-03-10T02:03:10.228802-07:00,1717.0,10.823635,10823.635 +24304,2025-03-10T02:03:21.052164-07:00,1694.0,10.823362,10823.362 +24305,2025-03-10T02:03:31.881002-07:00,1674.0,10.828838,10828.838 +24306,2025-03-10T02:03:42.706322-07:00,1724.0,10.82532,10825.32 +24307,2025-03-10T02:03:53.532953-07:00,1714.0,10.826631,10826.631 +24308,2025-03-10T02:04:04.366042-07:00,1697.0,10.833089,10833.089 +24309,2025-03-10T02:04:15.186252-07:00,1651.0,10.82021,10820.21 +24310,2025-03-10T02:04:26.017329-07:00,1712.0,10.831077,10831.077 +24311,2025-03-10T02:04:36.838956-07:00,1725.0,10.821627,10821.627 +24312,2025-03-10T02:04:47.657552-07:00,1628.0,10.818596,10818.596 +24313,2025-03-10T02:04:58.478284-07:00,1690.0,10.820732,10820.732 +24314,2025-03-10T02:05:09.301274-07:00,1722.0,10.82299,10822.99 +24315,2025-03-10T02:05:20.118994-07:00,1713.0,10.81772,10817.72 +24316,2025-03-10T02:05:30.946092-07:00,1631.0,10.827098,10827.098 +24317,2025-03-10T02:05:41.766955-07:00,1652.0,10.820863,10820.863 +24318,2025-03-10T02:05:52.611671-07:00,1676.0,10.844716,10844.716 +24319,2025-03-10T02:06:03.442412-07:00,1691.0,10.830741,10830.741 +24320,2025-03-10T02:06:14.267360-07:00,1680.0,10.824948,10824.948 +24321,2025-03-10T02:06:25.082618-07:00,1643.0,10.815258,10815.258 +24322,2025-03-10T02:06:35.903375-07:00,1635.0,10.820757,10820.757 +24323,2025-03-10T02:06:46.725345-07:00,1677.0,10.82197,10821.97 +24324,2025-03-10T02:06:57.553371-07:00,1665.0,10.828026,10828.026 +24325,2025-03-10T02:07:08.375421-07:00,1726.0,10.82205,10822.05 +24326,2025-03-10T02:07:19.199616-07:00,1648.0,10.824195,10824.195 +24327,2025-03-10T02:07:30.026441-07:00,1726.0,10.826825,10826.825 +24328,2025-03-10T02:07:40.858745-07:00,1727.0,10.832304,10832.304 +24329,2025-03-10T02:07:51.674640-07:00,1642.0,10.815895,10815.895 +24330,2025-03-10T02:08:02.502411-07:00,1703.0,10.827771,10827.771 +24331,2025-03-10T02:08:13.328420-07:00,1712.0,10.826009,10826.009 +24332,2025-03-10T02:08:24.153365-07:00,1718.0,10.824945,10824.945 +24333,2025-03-10T02:08:34.978424-07:00,1680.0,10.825059,10825.059 +24334,2025-03-10T02:08:45.802369-07:00,1714.0,10.823945,10823.945 +24335,2025-03-10T02:08:56.620348-07:00,1655.0,10.817979,10817.979 +24336,2025-03-10T02:09:07.443738-07:00,1723.0,10.82339,10823.39 +24337,2025-03-10T02:09:18.272365-07:00,1662.0,10.828627,10828.627 +24338,2025-03-10T02:09:29.098669-07:00,1727.0,10.826304,10826.304 +24339,2025-03-10T02:09:39.918090-07:00,1696.0,10.819421,10819.421 +24340,2025-03-10T02:09:50.748796-07:00,1719.0,10.830706,10830.706 +24341,2025-03-10T02:10:01.578360-07:00,1713.0,10.829564,10829.564 +24342,2025-03-10T02:10:12.401402-07:00,1680.0,10.823042,10823.042 +24343,2025-03-10T02:10:23.236601-07:00,1725.0,10.835199,10835.199 +24344,2025-03-10T02:10:34.063412-07:00,1715.0,10.826811,10826.811 +24345,2025-03-10T02:10:44.883889-07:00,1680.0,10.820477,10820.477 +24346,2025-03-10T02:10:55.711586-07:00,1687.0,10.827697,10827.697 +24347,2025-03-10T02:11:06.544362-07:00,1683.0,10.832776,10832.776 +24348,2025-03-10T02:11:17.368368-07:00,1661.0,10.824006,10824.006 +24349,2025-03-10T02:11:28.188702-07:00,1724.0,10.820334,10820.334 +24350,2025-03-10T02:11:39.013589-07:00,1725.0,10.824887,10824.887 +24351,2025-03-10T02:11:49.848942-07:00,1723.0,10.835353,10835.353 +24352,2025-03-10T02:12:00.673362-07:00,1702.0,10.82442,10824.42 +24353,2025-03-10T02:12:11.504708-07:00,1724.0,10.831346,10831.346 +24354,2025-03-10T02:12:22.331673-07:00,1666.0,10.826965,10826.965 +24355,2025-03-10T02:12:33.156298-07:00,1702.0,10.824625,10824.625 +24356,2025-03-10T02:12:43.987940-07:00,1649.0,10.831642,10831.642 +24357,2025-03-10T02:12:54.809417-07:00,1648.0,10.821477,10821.477 +24358,2025-03-10T02:13:05.629697-07:00,1631.0,10.82028,10820.28 +24359,2025-03-10T02:13:16.460605-07:00,1677.0,10.830908,10830.908 +24360,2025-03-10T02:13:27.280706-07:00,1713.0,10.820101,10820.101 +24361,2025-03-10T02:13:38.101396-07:00,1721.0,10.82069,10820.69 +24362,2025-03-10T02:13:48.918405-07:00,1711.0,10.817009,10817.009 +24363,2025-03-10T02:13:59.753369-07:00,1726.0,10.834964,10834.964 +24364,2025-03-10T02:14:10.572482-07:00,1722.0,10.819113,10819.113 +24365,2025-03-10T02:14:21.405893-07:00,1722.0,10.833411,10833.411 +24366,2025-03-10T02:14:32.224651-07:00,1677.0,10.818758,10818.758 +24367,2025-03-10T02:14:43.052351-07:00,1677.0,10.8277,10827.7 +24368,2025-03-10T02:14:53.873598-07:00,1726.0,10.821247,10821.247 +24369,2025-03-10T02:15:04.703635-07:00,1717.0,10.830037,10830.037 +24370,2025-03-10T02:15:15.526251-07:00,1718.0,10.822616,10822.616 +24371,2025-03-10T02:15:26.360688-07:00,1675.0,10.834437,10834.437 +24372,2025-03-10T02:15:37.189358-07:00,1642.0,10.82867,10828.67 +24373,2025-03-10T02:15:48.010167-07:00,1709.0,10.820809,10820.809 +24374,2025-03-10T02:15:58.833668-07:00,1726.0,10.823501,10823.501 +24375,2025-03-10T02:16:09.665669-07:00,1725.0,10.832001,10832.001 +24376,2025-03-10T02:16:20.495804-07:00,1727.0,10.830135,10830.135 +24377,2025-03-10T02:16:31.312461-07:00,1727.0,10.816657,10816.657 +24378,2025-03-10T02:16:42.137588-07:00,1682.0,10.825127,10825.127 +24379,2025-03-10T02:16:52.950723-07:00,1663.0,10.813135,10813.135 +24380,2025-03-10T02:17:03.773358-07:00,1691.0,10.822635,10822.635 +24381,2025-03-10T02:17:14.596367-07:00,1641.0,10.823009,10823.009 +24382,2025-03-10T02:17:25.425690-07:00,1681.0,10.829323,10829.323 +24383,2025-03-10T02:17:36.240803-07:00,1659.0,10.815113,10815.113 +24384,2025-03-10T02:17:47.068767-07:00,1719.0,10.827964,10827.964 +24385,2025-03-10T02:17:57.891565-07:00,1654.0,10.822798,10822.798 +24386,2025-03-10T02:18:08.700438-07:00,1722.0,10.808873,10808.873 +24387,2025-03-10T02:18:19.520399-07:00,1678.0,10.819961,10819.961 +24388,2025-03-10T02:18:30.339793-07:00,1659.0,10.819394,10819.394 +24389,2025-03-10T02:18:41.161364-07:00,1728.0,10.821571,10821.571 +24390,2025-03-10T02:18:51.988932-07:00,1686.0,10.827568,10827.568 +24391,2025-03-10T02:19:02.814735-07:00,1725.0,10.825803,10825.803 +24392,2025-03-10T02:19:13.631353-07:00,1653.0,10.816618,10816.618 +24393,2025-03-10T02:19:24.447702-07:00,1648.0,10.816349,10816.349 +24394,2025-03-10T02:19:35.264785-07:00,1715.0,10.817083,10817.083 +24395,2025-03-10T02:19:46.090388-07:00,1685.0,10.825603,10825.603 +24396,2025-03-10T02:19:56.904394-07:00,1648.0,10.814006,10814.006 +24397,2025-03-10T02:20:07.731362-07:00,1726.0,10.826968,10826.968 +24398,2025-03-10T02:20:18.547515-07:00,1723.0,10.816153,10816.153 +24399,2025-03-10T02:20:29.370710-07:00,1635.0,10.823195,10823.195 +24400,2025-03-10T02:20:40.192372-07:00,1672.0,10.821662,10821.662 +24401,2025-03-10T02:20:51.004391-07:00,1721.0,10.812019,10812.019 +24402,2025-03-10T02:21:01.833735-07:00,1709.0,10.829344,10829.344 +24403,2025-03-10T02:21:12.653362-07:00,1723.0,10.819627,10819.627 +24404,2025-03-10T02:21:23.476357-07:00,1715.0,10.822995,10822.995 +24405,2025-03-10T02:21:34.296958-07:00,1709.0,10.820601,10820.601 +24406,2025-03-10T02:21:45.120855-07:00,1707.0,10.823897,10823.897 +24407,2025-03-10T02:21:55.938349-07:00,1669.0,10.817494,10817.494 +24408,2025-03-10T02:22:06.755692-07:00,1643.0,10.817343,10817.343 +24409,2025-03-10T02:22:17.576606-07:00,1646.0,10.820914,10820.914 +24410,2025-03-10T02:22:28.392506-07:00,1704.0,10.8159,10815.9 +24411,2025-03-10T02:22:39.212224-07:00,1729.0,10.819718,10819.718 +24412,2025-03-10T02:22:50.039653-07:00,1719.0,10.827429,10827.429 +24413,2025-03-10T02:23:00.859367-07:00,1717.0,10.819714,10819.714 +24414,2025-03-10T02:23:11.668424-07:00,1687.0,10.809057,10809.057 +24415,2025-03-10T02:23:22.490726-07:00,1712.0,10.822302,10822.302 +24416,2025-03-10T02:23:33.319367-07:00,1662.0,10.828641,10828.641 +24417,2025-03-10T02:23:44.141652-07:00,1663.0,10.822285,10822.285 +24418,2025-03-10T02:23:54.954683-07:00,1635.0,10.813031,10813.031 +24419,2025-03-10T02:24:05.776354-07:00,1719.0,10.821671,10821.671 +24420,2025-03-10T02:24:16.589757-07:00,1725.0,10.813403,10813.403 +24421,2025-03-10T02:24:27.407692-07:00,1682.0,10.817935,10817.935 +24422,2025-03-10T02:24:38.224362-07:00,1712.0,10.81667,10816.67 +24423,2025-03-10T02:24:49.040348-07:00,1681.0,10.815986,10815.986 +24424,2025-03-10T02:24:59.856369-07:00,1693.0,10.816021,10816.021 +24425,2025-03-10T02:25:10.671704-07:00,1726.0,10.815335,10815.335 +24426,2025-03-10T02:25:21.497036-07:00,1723.0,10.825332,10825.332 +24427,2025-03-10T02:25:32.310343-07:00,1726.0,10.813307,10813.307 +24428,2025-03-10T02:25:43.132671-07:00,1683.0,10.822328,10822.328 +24429,2025-03-10T02:25:53.948607-07:00,1637.0,10.815936,10815.936 +24430,2025-03-10T02:26:04.770346-07:00,1712.0,10.821739,10821.739 +24431,2025-03-10T02:26:15.593675-07:00,1719.0,10.823329,10823.329 +24432,2025-03-10T02:26:26.404656-07:00,1674.0,10.810981,10810.981 +24433,2025-03-10T02:26:37.222370-07:00,1700.0,10.817714,10817.714 +24434,2025-03-10T02:26:48.048277-07:00,1637.0,10.825907,10825.907 +24435,2025-03-10T02:26:58.870366-07:00,1711.0,10.822089,10822.089 +24436,2025-03-10T02:27:09.682369-07:00,1679.0,10.812003,10812.003 +24437,2025-03-10T02:27:20.504614-07:00,1729.0,10.822245,10822.245 +24438,2025-03-10T02:27:31.319697-07:00,1712.0,10.815083,10815.083 +24439,2025-03-10T02:27:42.135533-07:00,1715.0,10.815836,10815.836 +24440,2025-03-10T02:27:52.960702-07:00,1680.0,10.825169,10825.169 +24441,2025-03-10T02:28:03.775560-07:00,1727.0,10.814858,10814.858 +24442,2025-03-10T02:28:14.594468-07:00,1712.0,10.818908,10818.908 +24443,2025-03-10T02:28:25.413344-07:00,1725.0,10.818876,10818.876 +24444,2025-03-10T02:28:36.240418-07:00,1680.0,10.827074,10827.074 +24445,2025-03-10T02:28:47.053632-07:00,1712.0,10.813214,10813.214 +24446,2025-03-10T02:28:57.874700-07:00,1712.0,10.821068,10821.068 +24447,2025-03-10T02:29:08.696155-07:00,1642.0,10.821455,10821.455 +24448,2025-03-10T02:29:19.503639-07:00,1648.0,10.807484,10807.484 +24449,2025-03-10T02:29:30.332371-07:00,1727.0,10.828732,10828.732 +24450,2025-03-10T02:29:41.143365-07:00,1710.0,10.810994,10810.994 +24451,2025-03-10T02:29:51.964734-07:00,1695.0,10.821369,10821.369 +24452,2025-03-10T02:30:02.786370-07:00,1712.0,10.821636,10821.636 +24453,2025-03-10T02:30:13.599524-07:00,1695.0,10.813154,10813.154 +24454,2025-03-10T02:30:24.423122-07:00,1727.0,10.823598,10823.598 +24455,2025-03-10T02:30:35.242520-07:00,1723.0,10.819398,10819.398 +24456,2025-03-10T02:30:46.060522-07:00,1649.0,10.818002,10818.002 +24457,2025-03-10T02:30:56.883272-07:00,1680.0,10.82275,10822.75 +24458,2025-03-10T02:31:07.709625-07:00,1699.0,10.826353,10826.353 +24459,2025-03-10T02:31:18.520592-07:00,1639.0,10.810967,10810.967 +24460,2025-03-10T02:31:29.344940-07:00,1658.0,10.824348,10824.348 +24461,2025-03-10T02:31:40.164673-07:00,1726.0,10.819733,10819.733 +24462,2025-03-10T02:31:50.974361-07:00,1712.0,10.809688,10809.688 +24463,2025-03-10T02:32:01.797448-07:00,1643.0,10.823087,10823.087 +24464,2025-03-10T02:32:12.623524-07:00,1726.0,10.826076,10826.076 +24465,2025-03-10T02:32:23.434981-07:00,1704.0,10.811457,10811.457 +24466,2025-03-10T02:32:34.258384-07:00,1729.0,10.823403,10823.403 +24467,2025-03-10T02:32:45.080776-07:00,1655.0,10.822392,10822.392 +24468,2025-03-10T02:32:55.899348-07:00,1704.0,10.818572,10818.572 +24469,2025-03-10T02:33:06.720417-07:00,1726.0,10.821069,10821.069 +24470,2025-03-10T02:33:17.536447-07:00,1712.0,10.81603,10816.03 +24471,2025-03-10T02:33:28.357971-07:00,1680.0,10.821524,10821.524 +24472,2025-03-10T02:33:39.183398-07:00,1728.0,10.825427,10825.427 +24473,2025-03-10T02:33:49.996669-07:00,1727.0,10.813271,10813.271 +24474,2025-03-10T02:34:00.819363-07:00,1680.0,10.822694,10822.694 +24475,2025-03-10T02:34:11.643406-07:00,1728.0,10.824043,10824.043 +24476,2025-03-10T02:34:22.469797-07:00,1687.0,10.826391,10826.391 +24477,2025-03-10T02:34:33.285622-07:00,1728.0,10.815825,10815.825 +24478,2025-03-10T02:34:44.110926-07:00,1695.0,10.825304,10825.304 +24479,2025-03-10T02:34:54.932741-07:00,1713.0,10.821815,10821.815 +24480,2025-03-10T02:35:05.753815-07:00,1728.0,10.821074,10821.074 +24481,2025-03-10T02:35:16.567412-07:00,1712.0,10.813597,10813.597 +24482,2025-03-10T02:35:27.381047-07:00,1726.0,10.813635,10813.635 +24483,2025-03-10T02:35:38.193511-07:00,1728.0,10.812464,10812.464 +24484,2025-03-10T02:35:49.009349-07:00,1723.0,10.815838,10815.838 +24485,2025-03-10T02:35:59.828604-07:00,1675.0,10.819255,10819.255 +24486,2025-03-10T02:36:10.644671-07:00,1685.0,10.816067,10816.067 +24487,2025-03-10T02:36:21.464990-07:00,1650.0,10.820319,10820.319 +24488,2025-03-10T02:36:32.284549-07:00,1707.0,10.819559,10819.559 +24489,2025-03-10T02:36:43.100076-07:00,1667.0,10.815527,10815.527 +24490,2025-03-10T02:36:53.908525-07:00,1710.0,10.808449,10808.449 +24491,2025-03-10T02:37:04.729486-07:00,1646.0,10.820961,10820.961 +24492,2025-03-10T02:37:15.539519-07:00,1682.0,10.810033,10810.033 +24493,2025-03-10T02:37:26.361208-07:00,1639.0,10.821689,10821.689 +24494,2025-03-10T02:37:37.172640-07:00,1719.0,10.811432,10811.432 +24495,2025-03-10T02:37:47.987436-07:00,1690.0,10.814796,10814.796 +24496,2025-03-10T02:37:58.807367-07:00,1698.0,10.819931,10819.931 +24497,2025-03-10T02:38:09.627755-07:00,1727.0,10.820388,10820.388 +24498,2025-03-10T02:38:20.450412-07:00,1668.0,10.822657,10822.657 +24499,2025-03-10T02:38:31.273376-07:00,1653.0,10.822964,10822.964 +24500,2025-03-10T02:38:42.082821-07:00,1727.0,10.809445,10809.445 +24501,2025-03-10T02:38:52.909396-07:00,1701.0,10.826575,10826.575 +24502,2025-03-10T02:39:03.722366-07:00,1683.0,10.81297,10812.97 +24503,2025-03-10T02:39:14.545002-07:00,1648.0,10.822636,10822.636 +24504,2025-03-10T02:39:25.371574-07:00,1680.0,10.826572,10826.572 +24505,2025-03-10T02:39:36.190359-07:00,1726.0,10.818785,10818.785 +24506,2025-03-10T02:39:47.012727-07:00,1717.0,10.822368,10822.368 +24507,2025-03-10T02:39:57.832365-07:00,1669.0,10.819638,10819.638 +24508,2025-03-10T02:40:08.644373-07:00,1725.0,10.812008,10812.008 +24509,2025-03-10T02:40:19.464460-07:00,1695.0,10.820087,10820.087 +24510,2025-03-10T02:40:30.282275-07:00,1728.0,10.817815,10817.815 +24511,2025-03-10T02:40:41.098371-07:00,1635.0,10.816096,10816.096 +24512,2025-03-10T02:40:51.926689-07:00,1728.0,10.828318,10828.318 +24513,2025-03-10T02:41:02.745801-07:00,1694.0,10.819112,10819.112 +24514,2025-03-10T02:41:13.564361-07:00,1679.0,10.81856,10818.56 +24515,2025-03-10T02:41:24.386652-07:00,1683.0,10.822291,10822.291 +24516,2025-03-10T02:41:35.202697-07:00,1723.0,10.816045,10816.045 +24517,2025-03-10T02:41:46.024361-07:00,1706.0,10.821664,10821.664 +24518,2025-03-10T02:41:56.850626-07:00,1728.0,10.826265,10826.265 +24519,2025-03-10T02:42:07.669647-07:00,1654.0,10.819021,10819.021 +24520,2025-03-10T02:42:18.490553-07:00,1710.0,10.820906,10820.906 +24521,2025-03-10T02:42:29.315755-07:00,1648.0,10.825202,10825.202 +24522,2025-03-10T02:42:40.146363-07:00,1659.0,10.830608,10830.608 +24523,2025-03-10T02:42:50.964420-07:00,1718.0,10.818057,10818.057 +24524,2025-03-10T02:43:01.794564-07:00,1648.0,10.830144,10830.144 +24525,2025-03-10T02:43:12.617375-07:00,1675.0,10.822811,10822.811 +24526,2025-03-10T02:43:23.435155-07:00,1727.0,10.81778,10817.78 +24527,2025-03-10T02:43:34.254346-07:00,1723.0,10.819191,10819.191 +24528,2025-03-10T02:43:45.080423-07:00,1676.0,10.826077,10826.077 +24529,2025-03-10T02:43:55.895414-07:00,1709.0,10.814991,10814.991 +24530,2025-03-10T02:44:06.715963-07:00,1709.0,10.820549,10820.549 +24531,2025-03-10T02:44:17.536677-07:00,1723.0,10.820714,10820.714 +24532,2025-03-10T02:44:28.358161-07:00,1705.0,10.821484,10821.484 +24533,2025-03-10T02:44:39.179406-07:00,1724.0,10.821245,10821.245 +24534,2025-03-10T02:44:49.997365-07:00,1710.0,10.817959,10817.959 +24535,2025-03-10T02:45:00.805367-07:00,1709.0,10.808002,10808.002 +24536,2025-03-10T02:45:11.624684-07:00,1722.0,10.819317,10819.317 +24537,2025-03-10T02:45:22.450369-07:00,1722.0,10.825685,10825.685 +24538,2025-03-10T02:45:33.267510-07:00,1675.0,10.817141,10817.141 +24539,2025-03-10T02:45:44.075738-07:00,1727.0,10.808228,10808.228 +24540,2025-03-10T02:45:54.898157-07:00,1677.0,10.822419,10822.419 +24541,2025-03-10T02:46:05.711280-07:00,1639.0,10.813123,10813.123 +24542,2025-03-10T02:46:16.532605-07:00,1687.0,10.821325,10821.325 +24543,2025-03-10T02:46:27.346899-07:00,1724.0,10.814294,10814.294 +24544,2025-03-10T02:46:38.170426-07:00,1674.0,10.823527,10823.527 +24545,2025-03-10T02:46:48.985613-07:00,1689.0,10.815187,10815.187 +24546,2025-03-10T02:46:59.807913-07:00,1664.0,10.8223,10822.3 +24547,2025-03-10T02:47:10.619637-07:00,1675.0,10.811724,10811.724 +24548,2025-03-10T02:47:21.444184-07:00,1690.0,10.824547,10824.547 +24549,2025-03-10T02:47:32.258544-07:00,1667.0,10.81436,10814.36 +24550,2025-03-10T02:47:43.077688-07:00,1636.0,10.819144,10819.144 +24551,2025-03-10T02:47:53.897028-07:00,1729.0,10.81934,10819.34 +24552,2025-03-10T02:48:04.713348-07:00,1687.0,10.81632,10816.32 +24553,2025-03-10T02:48:15.538805-07:00,1633.0,10.825457,10825.457 +24554,2025-03-10T02:48:26.346716-07:00,1723.0,10.807911,10807.911 +24555,2025-03-10T02:48:37.165421-07:00,1675.0,10.818705,10818.705 +24556,2025-03-10T02:48:47.982370-07:00,1652.0,10.816949,10816.949 +24557,2025-03-10T02:48:58.808712-07:00,1650.0,10.826342,10826.342 +24558,2025-03-10T02:49:09.624370-07:00,1678.0,10.815658,10815.658 +24559,2025-03-10T02:49:20.433411-07:00,1682.0,10.809041,10809.041 +24560,2025-03-10T02:49:31.251583-07:00,1680.0,10.818172,10818.172 +24561,2025-03-10T02:49:42.076360-07:00,1680.0,10.824777,10824.777 +24562,2025-03-10T02:49:52.888810-07:00,1648.0,10.81245,10812.45 +24563,2025-03-10T02:50:03.707575-07:00,1686.0,10.818765,10818.765 +24564,2025-03-10T02:50:14.518926-07:00,1640.0,10.811351,10811.351 +24565,2025-03-10T02:50:25.338700-07:00,1669.0,10.819774,10819.774 +24566,2025-03-10T02:50:36.149048-07:00,1680.0,10.810348,10810.348 +24567,2025-03-10T02:50:46.965421-07:00,1707.0,10.816373,10816.373 +24568,2025-03-10T02:50:57.783496-07:00,1687.0,10.818075,10818.075 +24569,2025-03-10T02:51:08.596669-07:00,1725.0,10.813173,10813.173 +24570,2025-03-10T02:51:19.408824-07:00,1707.0,10.812155,10812.155 +24571,2025-03-10T02:51:30.219990-07:00,1662.0,10.811166,10811.166 +24572,2025-03-10T02:51:41.040370-07:00,1728.0,10.82038,10820.38 +24573,2025-03-10T02:51:51.854416-07:00,1714.0,10.814046,10814.046 +24574,2025-03-10T02:52:02.669377-07:00,1725.0,10.814961,10814.961 +24575,2025-03-10T02:52:13.494361-07:00,1725.0,10.824984,10824.984 +24576,2025-03-10T02:52:24.303362-07:00,1728.0,10.809001,10809.001 +24577,2025-03-10T02:52:35.125732-07:00,1707.0,10.82237,10822.37 +24578,2025-03-10T02:52:45.944400-07:00,1728.0,10.818668,10818.668 +24579,2025-03-10T02:52:56.759414-07:00,1686.0,10.815014,10815.014 +24580,2025-03-10T02:53:07.572765-07:00,1681.0,10.813351,10813.351 +24581,2025-03-10T02:53:18.394023-07:00,1727.0,10.821258,10821.258 +24582,2025-03-10T02:53:29.210617-07:00,1677.0,10.816594,10816.594 +24583,2025-03-10T02:53:40.018360-07:00,1660.0,10.807743,10807.743 +24584,2025-03-10T02:53:50.838041-07:00,1715.0,10.819681,10819.681 +24585,2025-03-10T02:54:01.647970-07:00,1641.0,10.809929,10809.929 +24586,2025-03-10T02:54:12.470042-07:00,1677.0,10.822072,10822.072 +24587,2025-03-10T02:54:23.283365-07:00,1642.0,10.813323,10813.323 +24588,2025-03-10T02:54:34.101860-07:00,1689.0,10.818495,10818.495 +24589,2025-03-10T02:54:44.912637-07:00,1713.0,10.810777,10810.777 +24590,2025-03-10T02:54:55.731422-07:00,1725.0,10.818785,10818.785 +24591,2025-03-10T02:55:06.541600-07:00,1727.0,10.810178,10810.178 +24592,2025-03-10T02:55:17.350507-07:00,1713.0,10.808907,10808.907 +24593,2025-03-10T02:55:28.163371-07:00,1686.0,10.812864,10812.864 +24594,2025-03-10T02:55:38.986134-07:00,1683.0,10.822763,10822.763 +24595,2025-03-10T02:55:49.794585-07:00,1649.0,10.808451,10808.451 +24596,2025-03-10T02:56:00.608369-07:00,1723.0,10.813784,10813.784 +24597,2025-03-10T02:56:11.425362-07:00,1673.0,10.816993,10816.993 +24598,2025-03-10T02:56:22.248686-07:00,1726.0,10.823324,10823.324 +24599,2025-03-10T02:56:33.059888-07:00,1681.0,10.811202,10811.202 +24600,2025-03-10T02:56:43.884435-07:00,1685.0,10.824547,10824.547 +24601,2025-03-10T02:56:54.704786-07:00,1723.0,10.820351,10820.351 +24602,2025-03-10T02:57:05.525421-07:00,1727.0,10.820635,10820.635 +24603,2025-03-10T02:57:16.348252-07:00,1690.0,10.822831,10822.831 +24604,2025-03-10T02:57:27.169652-07:00,1719.0,10.8214,10821.4 +24605,2025-03-10T02:57:37.986504-07:00,1634.0,10.816852,10816.852 +24606,2025-03-10T02:57:48.810368-07:00,1709.0,10.823864,10823.864 +24607,2025-03-10T02:57:59.638595-07:00,1679.0,10.828227,10828.227 +24608,2025-03-10T02:58:10.447382-07:00,1687.0,10.808787,10808.787 +24609,2025-03-10T02:58:21.272369-07:00,1693.0,10.824987,10824.987 +24610,2025-03-10T02:58:32.082905-07:00,1726.0,10.810536,10810.536 +24611,2025-03-10T02:58:42.909027-07:00,1680.0,10.826122,10826.122 +24612,2025-03-10T02:58:53.721369-07:00,1653.0,10.812342,10812.342 +24613,2025-03-10T02:59:04.542521-07:00,1728.0,10.821152,10821.152 +24614,2025-03-10T02:59:15.355924-07:00,1727.0,10.813403,10813.403 +24615,2025-03-10T02:59:26.173348-07:00,1685.0,10.817424,10817.424 +24616,2025-03-10T02:59:36.993365-07:00,1722.0,10.820017,10820.017 +24617,2025-03-10T02:59:47.807436-07:00,1681.0,10.814071,10814.071 +24618,2025-03-10T02:59:58.628652-07:00,1729.0,10.821216,10821.216 +24619,2025-03-10T03:00:09.437430-07:00,1679.0,10.808778,10808.778 +24620,2025-03-10T03:00:20.259509-07:00,1719.0,10.822079,10822.079 +24621,2025-03-10T03:00:31.077981-07:00,1726.0,10.818472,10818.472 +24622,2025-03-10T03:00:41.903545-07:00,1691.0,10.825564,10825.564 +24623,2025-03-10T03:00:52.729417-07:00,1719.0,10.825872,10825.872 +24624,2025-03-10T03:01:03.543050-07:00,1719.0,10.813633,10813.633 +24625,2025-03-10T03:01:14.373500-07:00,1674.0,10.83045,10830.45 +24626,2025-03-10T03:01:25.184522-07:00,1631.0,10.811022,10811.022 +24627,2025-03-10T03:01:36.004151-07:00,1727.0,10.819629,10819.629 +24628,2025-03-10T03:01:46.830365-07:00,1726.0,10.826214,10826.214 +24629,2025-03-10T03:01:57.644420-07:00,1689.0,10.814055,10814.055 +24630,2025-03-10T03:02:19.286350-07:00,1705.0,21.64193,21641.93 +24631,2025-03-10T03:02:30.094628-07:00,1726.0,10.808278,10808.278 +24632,2025-03-10T03:02:40.909366-07:00,1691.0,10.814738,10814.738 +24633,2025-03-10T03:02:51.730632-07:00,1665.0,10.821266,10821.266 +24634,2025-03-10T03:03:02.541530-07:00,1727.0,10.810898,10810.898 +24635,2025-03-10T03:03:13.353597-07:00,1682.0,10.812067,10812.067 +24636,2025-03-10T03:03:24.158365-07:00,1696.0,10.804768,10804.768 +24637,2025-03-10T03:03:34.976727-07:00,1726.0,10.818362,10818.362 +24638,2025-03-10T03:03:45.787361-07:00,1729.0,10.810634,10810.634 +24639,2025-03-10T03:03:56.598640-07:00,1709.0,10.811279,10811.279 +24640,2025-03-10T03:04:07.410716-07:00,1705.0,10.812076,10812.076 +24641,2025-03-10T03:04:18.224618-07:00,1679.0,10.813902,10813.902 +24642,2025-03-10T03:04:29.046941-07:00,1682.0,10.822323,10822.323 +24643,2025-03-10T03:04:39.855365-07:00,1686.0,10.808424,10808.424 +24644,2025-03-10T03:04:50.668698-07:00,1730.0,10.813333,10813.333 +24645,2025-03-10T03:05:01.483469-07:00,1629.0,10.814771,10814.771 +24646,2025-03-10T03:05:12.303365-07:00,1657.0,10.819896,10819.896 +24647,2025-03-10T03:05:23.119420-07:00,1709.0,10.816055,10816.055 +24648,2025-03-10T03:05:33.938731-07:00,1719.0,10.819311,10819.311 +24649,2025-03-10T03:05:44.685763-07:00,1659.0,10.747032,10747.032 +24650,2025-03-10T03:05:55.499761-07:00,1694.0,10.813998,10813.998 +24651,2025-03-10T03:06:06.324053-07:00,1712.0,10.824292,10824.292 +24652,2025-03-10T03:06:17.138172-07:00,1685.0,10.814119,10814.119 +24653,2025-03-10T03:06:27.959018-07:00,1642.0,10.820846,10820.846 +24654,2025-03-10T03:06:38.780541-07:00,1661.0,10.821523,10821.523 +24655,2025-03-10T03:06:49.592997-07:00,1638.0,10.812456,10812.456 +24656,2025-03-10T03:07:00.406961-07:00,1696.0,10.813964,10813.964 +24657,2025-03-10T03:07:11.223771-07:00,1728.0,10.81681,10816.81 +24658,2025-03-10T03:07:22.049055-07:00,1727.0,10.825284,10825.284 +24659,2025-03-10T03:07:32.869935-07:00,1682.0,10.82088,10820.88 +24660,2025-03-10T03:07:43.682766-07:00,1731.0,10.812831,10812.831 +24661,2025-03-10T03:07:54.505522-07:00,1713.0,10.822756,10822.756 +24662,2025-03-10T03:08:05.329768-07:00,1712.0,10.824246,10824.246 +24663,2025-03-10T03:08:16.150763-07:00,1728.0,10.820995,10820.995 +24664,2025-03-10T03:08:26.977075-07:00,1721.0,10.826312,10826.312 +24665,2025-03-10T03:08:37.791775-07:00,1665.0,10.8147,10814.7 +24666,2025-03-10T03:08:48.616954-07:00,1649.0,10.825179,10825.179 +24667,2025-03-10T03:08:59.432098-07:00,1687.0,10.815144,10815.144 +24668,2025-03-10T03:09:10.249790-07:00,1682.0,10.817692,10817.692 +24669,2025-03-10T03:09:21.060789-07:00,1729.0,10.810999,10810.999 +24670,2025-03-10T03:09:31.884511-07:00,1654.0,10.823722,10823.722 +24671,2025-03-10T03:09:42.709084-07:00,1696.0,10.824573,10824.573 +24672,2025-03-10T03:09:53.519976-07:00,1717.0,10.810892,10810.892 +24673,2025-03-10T03:10:04.336739-07:00,1727.0,10.816763,10816.763 +24674,2025-03-10T03:10:15.151845-07:00,1699.0,10.815106,10815.106 +24675,2025-03-10T03:10:25.967090-07:00,1728.0,10.815245,10815.245 +24676,2025-03-10T03:10:36.785765-07:00,1642.0,10.818675,10818.675 +24677,2025-03-10T03:10:47.606766-07:00,1729.0,10.821001,10821.001 +24678,2025-03-10T03:10:58.424071-07:00,1713.0,10.817305,10817.305 +24679,2025-03-10T03:11:09.247870-07:00,1729.0,10.823799,10823.799 +24680,2025-03-10T03:11:20.061823-07:00,1680.0,10.813953,10813.953 +24681,2025-03-10T03:11:30.878391-07:00,1718.0,10.816568,10816.568 +24682,2025-03-10T03:11:41.702771-07:00,1683.0,10.82438,10824.38 +24683,2025-03-10T03:11:52.515749-07:00,1719.0,10.812978,10812.978 +24684,2025-03-10T03:12:03.338471-07:00,1722.0,10.822722,10822.722 +24685,2025-03-10T03:12:14.142742-07:00,1682.0,10.804271,10804.271 +24686,2025-03-10T03:12:24.960828-07:00,1690.0,10.818086,10818.086 +24687,2025-03-10T03:12:35.772951-07:00,1680.0,10.812123,10812.123 +24688,2025-03-10T03:12:46.586765-07:00,1724.0,10.813814,10813.814 +24689,2025-03-10T03:12:57.406245-07:00,1727.0,10.81948,10819.48 +24690,2025-03-10T03:13:08.209001-07:00,1659.0,10.802756,10802.756 +24691,2025-03-10T03:13:19.029746-07:00,1729.0,10.820745,10820.745 +24692,2025-03-10T03:13:29.844003-07:00,1727.0,10.814257,10814.257 +24693,2025-03-10T03:13:40.653798-07:00,1671.0,10.809795,10809.795 +24694,2025-03-10T03:13:51.473025-07:00,1710.0,10.819227,10819.227 +24695,2025-03-10T03:14:02.292021-07:00,1712.0,10.818996,10818.996 +24696,2025-03-10T03:14:13.106771-07:00,1718.0,10.81475,10814.75 +24697,2025-03-10T03:14:23.926771-07:00,1701.0,10.82,10820.0 +24698,2025-03-10T03:14:34.746707-07:00,1705.0,10.819936,10819.936 +24699,2025-03-10T03:14:45.564764-07:00,1723.0,10.818057,10818.057 +24700,2025-03-10T03:14:56.384744-07:00,1723.0,10.81998,10819.98 +24701,2025-03-10T03:15:07.202029-07:00,1657.0,10.817285,10817.285 +24702,2025-03-10T03:15:18.025755-07:00,1703.0,10.823726,10823.726 +24703,2025-03-10T03:15:28.839761-07:00,1701.0,10.814006,10814.006 +24704,2025-03-10T03:15:39.666054-07:00,1667.0,10.826293,10826.293 +24705,2025-03-10T03:15:50.480969-07:00,1728.0,10.814915,10814.915 +24706,2025-03-10T03:16:01.288765-07:00,1655.0,10.807796,10807.796 +24707,2025-03-10T03:16:12.104771-07:00,1681.0,10.816006,10816.006 +24708,2025-03-10T03:16:22.928567-07:00,1717.0,10.823796,10823.796 +24709,2025-03-10T03:16:33.744051-07:00,1643.0,10.815484,10815.484 +24710,2025-03-10T03:16:44.553820-07:00,1712.0,10.809769,10809.769 +24711,2025-03-10T03:16:55.368053-07:00,1714.0,10.814233,10814.233 +24712,2025-03-10T03:17:06.181768-07:00,1727.0,10.813715,10813.715 +24713,2025-03-10T03:17:16.993378-07:00,1717.0,10.81161,10811.61 +24714,2025-03-10T03:17:27.806106-07:00,1683.0,10.812728,10812.728 +24715,2025-03-10T03:17:38.626769-07:00,1718.0,10.820663,10820.663 +24716,2025-03-10T03:17:49.436744-07:00,1717.0,10.809975,10809.975 +24717,2025-03-10T03:18:00.263017-07:00,1648.0,10.826273,10826.273 +24718,2025-03-10T03:18:11.076952-07:00,1658.0,10.813935,10813.935 +24719,2025-03-10T03:18:21.893764-07:00,1710.0,10.816812,10816.812 +24720,2025-03-10T03:18:32.708274-07:00,1727.0,10.81451,10814.51 +24721,2025-03-10T03:18:43.526088-07:00,1730.0,10.817814,10817.814 +24722,2025-03-10T03:18:54.340349-07:00,1710.0,10.814261,10814.261 +24723,2025-03-10T03:19:05.162997-07:00,1707.0,10.822648,10822.648 +24724,2025-03-10T03:19:15.971899-07:00,1729.0,10.808902,10808.902 +24725,2025-03-10T03:19:26.791590-07:00,1639.0,10.819691,10819.691 +24726,2025-03-10T03:19:37.603767-07:00,1725.0,10.812177,10812.177 +24727,2025-03-10T03:19:48.424816-07:00,1727.0,10.821049,10821.049 +24728,2025-03-10T03:19:59.241742-07:00,1658.0,10.816926,10816.926 +24729,2025-03-10T03:20:10.055088-07:00,1683.0,10.813346,10813.346 +24730,2025-03-10T03:20:20.875014-07:00,1709.0,10.819926,10819.926 +24731,2025-03-10T03:20:31.689764-07:00,1717.0,10.81475,10814.75 +24732,2025-03-10T03:20:42.516279-07:00,1728.0,10.826515,10826.515 +24733,2025-03-10T03:20:53.336800-07:00,1728.0,10.820521,10820.521 +24734,2025-03-10T03:21:04.153041-07:00,1650.0,10.816241,10816.241 +24735,2025-03-10T03:21:14.977059-07:00,1717.0,10.824018,10824.018 +24736,2025-03-10T03:21:25.796774-07:00,1659.0,10.819715,10819.715 +24737,2025-03-10T03:21:36.604765-07:00,1648.0,10.807991,10807.991 +24738,2025-03-10T03:21:47.426799-07:00,1650.0,10.822034,10822.034 +24739,2025-03-10T03:21:58.242432-07:00,1643.0,10.815633,10815.633 +24740,2025-03-10T03:22:09.062856-07:00,1725.0,10.820424,10820.424 +24741,2025-03-10T03:22:19.884769-07:00,1727.0,10.821913,10821.913 +24742,2025-03-10T03:22:30.695673-07:00,1697.0,10.810904,10810.904 +24743,2025-03-10T03:22:41.517772-07:00,1721.0,10.822099,10822.099 +24744,2025-03-10T03:22:52.326011-07:00,1730.0,10.808239,10808.239 +24745,2025-03-10T03:23:03.147039-07:00,1731.0,10.821028,10821.028 +24746,2025-03-10T03:23:13.965108-07:00,1713.0,10.818069,10818.069 +24747,2025-03-10T03:23:24.782331-07:00,1701.0,10.817223,10817.223 +24748,2025-03-10T03:23:35.591768-07:00,1713.0,10.809437,10809.437 +24749,2025-03-10T03:23:46.402919-07:00,1648.0,10.811151,10811.151 +24750,2025-03-10T03:23:57.221106-07:00,1717.0,10.818187,10818.187 +24751,2025-03-10T03:24:08.030532-07:00,1680.0,10.809426,10809.426 +24752,2025-03-10T03:24:18.843125-07:00,1691.0,10.812593,10812.593 +24753,2025-03-10T03:24:29.663771-07:00,1685.0,10.820646,10820.646 +24754,2025-03-10T03:24:40.474489-07:00,1731.0,10.810718,10810.718 +24755,2025-03-10T03:24:51.298642-07:00,1719.0,10.824153,10824.153 +24756,2025-03-10T03:25:02.120762-07:00,1707.0,10.82212,10822.12 +24757,2025-03-10T03:25:12.929903-07:00,1677.0,10.809141,10809.141 +24758,2025-03-10T03:25:23.751788-07:00,1712.0,10.821885,10821.885 +24759,2025-03-10T03:25:34.568766-07:00,1729.0,10.816978,10816.978 +24760,2025-03-10T03:25:45.382773-07:00,1722.0,10.814007,10814.007 +24761,2025-03-10T03:25:56.204100-07:00,1642.0,10.821327,10821.327 +24762,2025-03-10T03:26:07.023364-07:00,1728.0,10.819264,10819.264 +24763,2025-03-10T03:26:17.837968-07:00,1729.0,10.814604,10814.604 +24764,2025-03-10T03:26:28.648771-07:00,1680.0,10.810803,10810.803 +24765,2025-03-10T03:26:39.474142-07:00,1650.0,10.825371,10825.371 +24766,2025-03-10T03:26:50.298902-07:00,1719.0,10.82476,10824.76 +24767,2025-03-10T03:27:01.116369-07:00,1718.0,10.817467,10817.467 +24768,2025-03-10T03:27:11.929175-07:00,1726.0,10.812806,10812.806 +24769,2025-03-10T03:27:22.744211-07:00,1722.0,10.815036,10815.036 +24770,2025-03-10T03:27:33.550406-07:00,1677.0,10.806195,10806.195 +24771,2025-03-10T03:27:44.362114-07:00,1730.0,10.811708,10811.708 +24772,2025-03-10T03:27:55.180765-07:00,1675.0,10.818651,10818.651 +24773,2025-03-10T03:28:05.996824-07:00,1730.0,10.816059,10816.059 +24774,2025-03-10T03:28:16.810383-07:00,1728.0,10.813559,10813.559 +24775,2025-03-10T03:28:27.626939-07:00,1712.0,10.816556,10816.556 +24776,2025-03-10T03:28:38.447897-07:00,1694.0,10.820958,10820.958 +24777,2025-03-10T03:28:49.269660-07:00,1712.0,10.821763,10821.763 +24778,2025-03-10T03:29:00.089758-07:00,1718.0,10.820098,10820.098 +24779,2025-03-10T03:29:10.902019-07:00,1728.0,10.812261,10812.261 +24780,2025-03-10T03:29:21.719758-07:00,1710.0,10.817739,10817.739 +24781,2025-03-10T03:29:32.537602-07:00,1679.0,10.817844,10817.844 +24782,2025-03-10T03:29:43.349190-07:00,1679.0,10.811588,10811.588 +24783,2025-03-10T03:30:04.980144-07:00,1703.0,21.630954,21630.954 +24784,2025-03-10T03:30:15.801793-07:00,1712.0,10.821649,10821.649 +24785,2025-03-10T03:30:26.619746-07:00,1685.0,10.817953,10817.953 +24786,2025-03-10T03:30:37.436089-07:00,1654.0,10.816343,10816.343 +24787,2025-03-10T03:30:48.253976-07:00,1694.0,10.817887,10817.887 +24788,2025-03-10T03:30:59.077248-07:00,1687.0,10.823272,10823.272 +24789,2025-03-10T03:31:09.896981-07:00,1647.0,10.819733,10819.733 +24790,2025-03-10T03:31:20.708767-07:00,1641.0,10.811786,10811.786 +24791,2025-03-10T03:31:31.526772-07:00,1730.0,10.818005,10818.005 +24792,2025-03-10T03:31:42.352764-07:00,1727.0,10.825992,10825.992 +24793,2025-03-10T03:31:53.172008-07:00,1729.0,10.819244,10819.244 +24794,2025-03-10T03:32:03.986353-07:00,1684.0,10.814345,10814.345 +24795,2025-03-10T03:32:14.801125-07:00,1632.0,10.814772,10814.772 +24796,2025-03-10T03:32:25.620991-07:00,1714.0,10.819866,10819.866 +24797,2025-03-10T03:32:36.448517-07:00,1723.0,10.827526,10827.526 +24798,2025-03-10T03:32:47.258524-07:00,1671.0,10.810007,10810.007 +24799,2025-03-10T03:32:58.077771-07:00,1661.0,10.819247,10819.247 +24800,2025-03-10T03:33:08.903449-07:00,1731.0,10.825678,10825.678 +24801,2025-03-10T03:33:19.714020-07:00,1721.0,10.810571,10810.571 +24802,2025-03-10T03:33:30.532812-07:00,1728.0,10.818792,10818.792 +24803,2025-03-10T03:33:41.342069-07:00,1726.0,10.809257,10809.257 +24804,2025-03-10T03:33:52.156767-07:00,1728.0,10.814698,10814.698 +24805,2025-03-10T03:34:02.971820-07:00,1694.0,10.815053,10815.053 +24806,2025-03-10T03:34:13.783039-07:00,1731.0,10.811219,10811.219 +24807,2025-03-10T03:34:24.601770-07:00,1727.0,10.818731,10818.731 +24808,2025-03-10T03:34:35.420795-07:00,1678.0,10.819025,10819.025 +24809,2025-03-10T03:34:46.243075-07:00,1719.0,10.82228,10822.28 +24810,2025-03-10T03:34:57.058025-07:00,1727.0,10.81495,10814.95 +24811,2025-03-10T03:35:07.883406-07:00,1718.0,10.825381,10825.381 +24812,2025-03-10T03:35:18.698009-07:00,1712.0,10.814603,10814.603 +24813,2025-03-10T03:35:29.519008-07:00,1726.0,10.820999,10820.999 +24814,2025-03-10T03:35:40.331772-07:00,1695.0,10.812764,10812.764 +24815,2025-03-10T03:35:51.150010-07:00,1727.0,10.818238,10818.238 +24816,2025-03-10T03:36:01.965900-07:00,1662.0,10.81589,10815.89 +24817,2025-03-10T03:36:12.788768-07:00,1658.0,10.822868,10822.868 +24818,2025-03-10T03:36:23.601765-07:00,1674.0,10.812997,10812.997 +24819,2025-03-10T03:36:34.428633-07:00,1712.0,10.826868,10826.868 +24820,2025-03-10T03:36:45.240203-07:00,1714.0,10.81157,10811.57 +24821,2025-03-10T03:36:56.061759-07:00,1733.0,10.821556,10821.556 +24822,2025-03-10T03:37:06.881979-07:00,1707.0,10.82022,10820.22 +24823,2025-03-10T03:37:17.693053-07:00,1647.0,10.811074,10811.074 +24824,2025-03-10T03:37:28.513754-07:00,1649.0,10.820701,10820.701 +24825,2025-03-10T03:37:39.327106-07:00,1728.0,10.813352,10813.352 +24826,2025-03-10T03:37:50.149177-07:00,1725.0,10.822071,10822.071 +24827,2025-03-10T03:38:00.973031-07:00,1730.0,10.823854,10823.854 +24828,2025-03-10T03:38:11.781769-07:00,1721.0,10.808738,10808.738 +24829,2025-03-10T03:38:22.596758-07:00,1734.0,10.814989,10814.989 +24830,2025-03-10T03:38:33.422149-07:00,1715.0,10.825391,10825.391 +24831,2025-03-10T03:38:44.236098-07:00,1709.0,10.813949,10813.949 +24832,2025-03-10T03:38:55.039904-07:00,1713.0,10.803806,10803.806 +24833,2025-03-10T03:39:05.855088-07:00,1683.0,10.815184,10815.184 +24834,2025-03-10T03:39:16.676838-07:00,1699.0,10.82175,10821.75 +24835,2025-03-10T03:39:27.488044-07:00,1724.0,10.811206,10811.206 +24836,2025-03-10T03:39:38.294792-07:00,1694.0,10.806748,10806.748 +24837,2025-03-10T03:39:49.118001-07:00,1728.0,10.823209,10823.209 +24838,2025-03-10T03:39:59.925008-07:00,1729.0,10.807007,10807.007 +24839,2025-03-10T03:40:10.751052-07:00,1728.0,10.826044,10826.044 +24840,2025-03-10T03:40:21.559028-07:00,1643.0,10.807976,10807.976 +24841,2025-03-10T03:40:32.374073-07:00,1728.0,10.815045,10815.045 +24842,2025-03-10T03:40:43.186023-07:00,1650.0,10.81195,10811.95 +24843,2025-03-10T03:40:54.006890-07:00,1673.0,10.820867,10820.867 +24844,2025-03-10T03:41:04.821071-07:00,1728.0,10.814181,10814.181 +24845,2025-03-10T03:41:15.637762-07:00,1648.0,10.816691,10816.691 +24846,2025-03-10T03:41:26.455844-07:00,1730.0,10.818082,10818.082 +24847,2025-03-10T03:41:37.271865-07:00,1680.0,10.816021,10816.021 +24848,2025-03-10T03:41:48.088102-07:00,1678.0,10.816237,10816.237 +24849,2025-03-10T03:41:58.893447-07:00,1685.0,10.805345,10805.345 +24850,2025-03-10T03:42:09.712025-07:00,1642.0,10.818578,10818.578 +24851,2025-03-10T03:42:20.517814-07:00,1679.0,10.805789,10805.789 +24852,2025-03-10T03:42:31.328017-07:00,1731.0,10.810203,10810.203 +24853,2025-03-10T03:42:42.142808-07:00,1647.0,10.814791,10814.791 +24854,2025-03-10T03:42:52.959246-07:00,1703.0,10.816438,10816.438 +24855,2025-03-10T03:43:03.768032-07:00,1644.0,10.808786,10808.786 +24856,2025-03-10T03:43:14.589272-07:00,1667.0,10.82124,10821.24 +24857,2025-03-10T03:43:25.400946-07:00,1729.0,10.811674,10811.674 +24858,2025-03-10T03:43:36.217899-07:00,1683.0,10.816953,10816.953 +24859,2025-03-10T03:43:47.030079-07:00,1727.0,10.81218,10812.18 +24860,2025-03-10T03:43:57.848767-07:00,1730.0,10.818688,10818.688 +24861,2025-03-10T03:44:08.666763-07:00,1639.0,10.817996,10817.996 +24862,2025-03-10T03:44:19.474962-07:00,1680.0,10.808199,10808.199 +24863,2025-03-10T03:44:30.291044-07:00,1644.0,10.816082,10816.082 +24864,2025-03-10T03:44:41.098150-07:00,1687.0,10.807106,10807.106 +24865,2025-03-10T03:44:51.918645-07:00,1678.0,10.820495,10820.495 +24866,2025-03-10T03:45:02.733755-07:00,1707.0,10.81511,10815.11 +24867,2025-03-10T03:45:13.543769-07:00,1691.0,10.810014,10810.014 +24868,2025-03-10T03:45:24.358359-07:00,1659.0,10.81459,10814.59 +24869,2025-03-10T03:45:35.178013-07:00,1711.0,10.819654,10819.654 +24870,2025-03-10T03:45:45.995769-07:00,1710.0,10.817756,10817.756 +24871,2025-03-10T03:45:56.804959-07:00,1649.0,10.80919,10809.19 +24872,2025-03-10T03:46:07.625168-07:00,1723.0,10.820209,10820.209 +24873,2025-03-10T03:46:18.435809-07:00,1717.0,10.810641,10810.641 +24874,2025-03-10T03:46:29.252762-07:00,1678.0,10.816953,10816.953 +24875,2025-03-10T03:46:40.075989-07:00,1699.0,10.823227,10823.227 +24876,2025-03-10T03:46:50.886333-07:00,1723.0,10.810344,10810.344 +24877,2025-03-10T03:47:01.701746-07:00,1685.0,10.815413,10815.413 +24878,2025-03-10T03:47:12.518774-07:00,1730.0,10.817028,10817.028 +24879,2025-03-10T03:47:23.343073-07:00,1680.0,10.824299,10824.299 +24880,2025-03-10T03:47:44.963911-07:00,1731.0,21.620838,21620.838 +24881,2025-03-10T03:47:55.784762-07:00,1712.0,10.820851,10820.851 +24882,2025-03-10T03:48:04.506188-07:00,1730.0,8.721426,8721.426 +24883,2025-03-10T03:48:06.605477-07:00,1730.0,2.099289,2099.289 +24884,2025-03-10T03:48:17.427032-07:00,1719.0,10.821555,10821.555 +24885,2025-03-10T03:48:28.246016-07:00,1642.0,10.818984,10818.984 +24886,2025-03-10T03:48:39.061991-07:00,1712.0,10.815975,10815.975 +24887,2025-03-10T03:48:49.874056-07:00,1730.0,10.812065,10812.065 +24888,2025-03-10T03:49:00.701947-07:00,1667.0,10.827891,10827.891 +24889,2025-03-10T03:49:11.515771-07:00,1631.0,10.813824,10813.824 +24890,2025-03-10T03:49:22.332775-07:00,1710.0,10.817004,10817.004 +24891,2025-03-10T03:49:33.156779-07:00,1706.0,10.824004,10824.004 +24892,2025-03-10T03:49:33.156779-07:00,1706.0,0.0,0.0 +24893,2025-03-10T03:49:43.975760-07:00,1649.0,10.818981,10818.981 +24894,2025-03-10T03:49:54.793119-07:00,1636.0,10.817359,10817.359 +24895,2025-03-10T03:50:05.606464-07:00,1701.0,10.813345,10813.345 +24896,2025-03-10T03:50:16.431975-07:00,1681.0,10.825511,10825.511 +24897,2025-03-10T03:50:27.248500-07:00,1689.0,10.816525,10816.525 +24898,2025-03-10T03:50:38.076325-07:00,1712.0,10.827825,10827.825 +24899,2025-03-10T03:50:48.884748-07:00,1663.0,10.808423,10808.423 +24900,2025-03-10T03:50:59.708183-07:00,1732.0,10.823435,10823.435 +24901,2025-03-10T03:51:10.524371-07:00,1703.0,10.816188,10816.188 +24902,2025-03-10T03:51:21.347767-07:00,1706.0,10.823396,10823.396 +24903,2025-03-10T03:51:32.163761-07:00,1678.0,10.815994,10815.994 +24904,2025-03-10T03:51:42.978289-07:00,1719.0,10.814528,10814.528 +24905,2025-03-10T03:51:53.796960-07:00,1730.0,10.818671,10818.671 +24906,2025-03-10T03:52:04.608269-07:00,1714.0,10.811309,10811.309 +24907,2025-03-10T03:52:15.439325-07:00,1647.0,10.831056,10831.056 +24908,2025-03-10T03:52:26.253826-07:00,1683.0,10.814501,10814.501 +24909,2025-03-10T03:52:37.074905-07:00,1716.0,10.821079,10821.079 +24910,2025-03-10T03:52:47.907030-07:00,1725.0,10.832125,10832.125 +24911,2025-03-10T03:52:58.729051-07:00,1726.0,10.822021,10822.021 +24912,2025-03-10T03:53:09.541769-07:00,1699.0,10.812718,10812.718 +24913,2025-03-10T03:53:20.374181-07:00,1662.0,10.832412,10832.412 +24914,2025-03-10T03:53:31.187834-07:00,1728.0,10.813653,10813.653 +24915,2025-03-10T03:53:42.006906-07:00,1680.0,10.819072,10819.072 +24916,2025-03-10T03:53:52.825038-07:00,1723.0,10.818132,10818.132 +24917,2025-03-10T03:54:03.648979-07:00,1679.0,10.823941,10823.941 +24918,2025-03-10T03:54:14.472203-07:00,1729.0,10.823224,10823.224 +24919,2025-03-10T03:54:25.293132-07:00,1707.0,10.820929,10820.929 +24920,2025-03-10T03:54:36.113763-07:00,1729.0,10.820631,10820.631 +24921,2025-03-10T03:54:46.935837-07:00,1708.0,10.822074,10822.074 +24922,2025-03-10T03:54:57.756354-07:00,1719.0,10.820517,10820.517 +24923,2025-03-10T03:55:08.570765-07:00,1675.0,10.814411,10814.411 +24924,2025-03-10T03:55:19.391812-07:00,1714.0,10.821047,10821.047 +24925,2025-03-10T03:55:30.216140-07:00,1706.0,10.824328,10824.328 +24926,2025-03-10T03:55:41.029759-07:00,1673.0,10.813619,10813.619 +24927,2025-03-10T03:55:51.844769-07:00,1717.0,10.81501,10815.01 +24928,2025-03-10T03:56:02.666276-07:00,1719.0,10.821507,10821.507 +24929,2025-03-10T03:56:13.483416-07:00,1660.0,10.81714,10817.14 +24930,2025-03-10T03:56:24.306824-07:00,1663.0,10.823408,10823.408 +24931,2025-03-10T03:56:35.121016-07:00,1712.0,10.814192,10814.192 +24932,2025-03-10T03:56:45.939354-07:00,1730.0,10.818338,10818.338 +24933,2025-03-10T03:56:56.756233-07:00,1654.0,10.816879,10816.879 +24934,2025-03-10T03:57:07.574767-07:00,1683.0,10.818534,10818.534 +24935,2025-03-10T03:57:18.389875-07:00,1680.0,10.815108,10815.108 +24936,2025-03-10T03:57:29.212767-07:00,1707.0,10.822892,10822.892 +24937,2025-03-10T03:57:40.025765-07:00,1730.0,10.812998,10812.998 +24938,2025-03-10T03:57:50.853100-07:00,1728.0,10.827335,10827.335 +24939,2025-03-10T03:58:01.667174-07:00,1667.0,10.814074,10814.074 +24940,2025-03-10T03:58:12.490824-07:00,1657.0,10.82365,10823.65 +24941,2025-03-10T03:58:23.309409-07:00,1660.0,10.818585,10818.585 +24942,2025-03-10T03:58:34.120021-07:00,1665.0,10.810612,10810.612 +24943,2025-03-10T03:58:44.937014-07:00,1723.0,10.816993,10816.993 +24944,2025-03-10T03:58:55.756021-07:00,1656.0,10.819007,10819.007 +24945,2025-03-10T03:59:06.572767-07:00,1721.0,10.816746,10816.746 +24946,2025-03-10T03:59:17.386155-07:00,1687.0,10.813388,10813.388 +24947,2025-03-10T03:59:28.202770-07:00,1725.0,10.816615,10816.615 +24948,2025-03-10T03:59:39.018004-07:00,1726.0,10.815234,10815.234 +24949,2025-03-10T03:59:49.831763-07:00,1691.0,10.813759,10813.759 +24950,2025-03-10T04:00:00.659102-07:00,1730.0,10.827339,10827.339 +24951,2025-03-10T04:00:11.476755-07:00,1685.0,10.817653,10817.653 +24952,2025-03-10T04:00:22.298505-07:00,1682.0,10.82175,10821.75 +24953,2025-03-10T04:00:33.112861-07:00,1713.0,10.814356,10814.356 +24954,2025-03-10T04:00:43.936796-07:00,1695.0,10.823935,10823.935 +24955,2025-03-10T04:00:54.755021-07:00,1727.0,10.818225,10818.225 +24956,2025-03-10T04:01:05.573863-07:00,1730.0,10.818842,10818.842 +24957,2025-03-10T04:01:16.383866-07:00,1639.0,10.810003,10810.003 +24958,2025-03-10T04:01:27.203773-07:00,1717.0,10.819907,10819.907 +24959,2025-03-10T04:01:38.021772-07:00,1722.0,10.817999,10817.999 +24960,2025-03-10T04:01:48.842889-07:00,1660.0,10.821117,10821.117 +24961,2025-03-10T04:01:59.669752-07:00,1729.0,10.826863,10826.863 +24962,2025-03-10T04:02:10.484822-07:00,1727.0,10.81507,10815.07 +24963,2025-03-10T04:02:21.305835-07:00,1647.0,10.821013,10821.013 +24964,2025-03-10T04:02:32.127965-07:00,1721.0,10.82213,10822.13 +24965,2025-03-10T04:02:42.951060-07:00,1729.0,10.823095,10823.095 +24966,2025-03-10T04:02:53.769957-07:00,1648.0,10.818897,10818.897 +24967,2025-03-10T04:03:04.582187-07:00,1723.0,10.81223,10812.23 +24968,2025-03-10T04:03:15.401245-07:00,1641.0,10.819058,10819.058 +24969,2025-03-10T04:03:26.221377-07:00,1719.0,10.820132,10820.132 +24970,2025-03-10T04:03:37.036974-07:00,1719.0,10.815597,10815.597 +24971,2025-03-10T04:03:47.854770-07:00,1639.0,10.817796,10817.796 +24972,2025-03-10T04:03:58.678106-07:00,1712.0,10.823336,10823.336 +24973,2025-03-10T04:04:09.504767-07:00,1658.0,10.826661,10826.661 +24974,2025-03-10T04:04:20.325553-07:00,1727.0,10.820786,10820.786 +24975,2025-03-10T04:04:31.149767-07:00,1729.0,10.824214,10824.214 +24976,2025-03-10T04:04:41.968871-07:00,1722.0,10.819104,10819.104 +24977,2025-03-10T04:04:52.794295-07:00,1668.0,10.825424,10825.424 +24978,2025-03-10T04:05:03.605100-07:00,1679.0,10.810805,10810.805 +24979,2025-03-10T04:05:14.430754-07:00,1627.0,10.825654,10825.654 +24980,2025-03-10T04:05:25.245754-07:00,1647.0,10.815,10815.0 +24981,2025-03-10T04:05:36.070008-07:00,1728.0,10.824254,10824.254 +24982,2025-03-10T04:05:46.944146-07:00,1728.0,10.874138,10874.138 +24983,2025-03-10T04:05:57.750897-07:00,1730.0,10.806751,10806.751 +24984,2025-03-10T04:06:08.572997-07:00,1728.0,10.8221,10822.1 +24985,2025-03-10T04:06:19.387976-07:00,1725.0,10.814979,10814.979 +24986,2025-03-10T04:06:30.211897-07:00,1648.0,10.823921,10823.921 +24987,2025-03-10T04:06:41.033960-07:00,1729.0,10.822063,10822.063 +24988,2025-03-10T04:06:51.852352-07:00,1647.0,10.818392,10818.392 +24989,2025-03-10T04:07:02.669891-07:00,1709.0,10.817539,10817.539 +24990,2025-03-10T04:07:13.489885-07:00,1651.0,10.819994,10819.994 +24991,2025-03-10T04:07:24.309211-07:00,1697.0,10.819326,10819.326 +24992,2025-03-10T04:07:35.118045-07:00,1731.0,10.808834,10808.834 +24993,2025-03-10T04:07:45.931945-07:00,1649.0,10.8139,10813.9 +24994,2025-03-10T04:07:56.750874-07:00,1716.0,10.818929,10818.929 +24995,2025-03-10T04:08:07.562932-07:00,1652.0,10.812058,10812.058 +24996,2025-03-10T04:08:18.371246-07:00,1667.0,10.808314,10808.314 +24997,2025-03-10T04:08:29.190134-07:00,1725.0,10.818888,10818.888 +24998,2025-03-10T04:08:40.011203-07:00,1682.0,10.821069,10821.069 +24999,2025-03-10T04:08:50.824036-07:00,1682.0,10.812833,10812.833 +25000,2025-03-10T04:09:01.636480-07:00,1728.0,10.812444,10812.444 +25001,2025-03-10T04:09:12.445238-07:00,1689.0,10.808758,10808.758 +25002,2025-03-10T04:09:23.258970-07:00,1690.0,10.813732,10813.732 +25003,2025-03-10T04:09:34.080941-07:00,1717.0,10.821971,10821.971 +25004,2025-03-10T04:09:44.887891-07:00,1687.0,10.80695,10806.95 +25005,2025-03-10T04:09:55.705208-07:00,1715.0,10.817317,10817.317 +25006,2025-03-10T04:10:06.518260-07:00,1648.0,10.813052,10813.052 +25007,2025-03-10T04:10:17.344897-07:00,1719.0,10.826637,10826.637 +25008,2025-03-10T04:10:28.160084-07:00,1727.0,10.815187,10815.187 +25009,2025-03-10T04:10:38.979234-07:00,1717.0,10.81915,10819.15 +25010,2025-03-10T04:10:49.787998-07:00,1690.0,10.808764,10808.764 +25011,2025-03-10T04:11:00.610888-07:00,1681.0,10.82289,10822.89 +25012,2025-03-10T04:11:11.428946-07:00,1726.0,10.818058,10818.058 +25013,2025-03-10T04:11:22.240657-07:00,1680.0,10.811711,10811.711 +25014,2025-03-10T04:11:33.053078-07:00,1729.0,10.812421,10812.421 +25015,2025-03-10T04:11:43.871891-07:00,1710.0,10.818813,10818.813 +25016,2025-03-10T04:11:54.691195-07:00,1680.0,10.819304,10819.304 +25017,2025-03-10T04:12:05.508386-07:00,1730.0,10.817191,10817.191 +25018,2025-03-10T04:12:16.319041-07:00,1717.0,10.810655,10810.655 +25019,2025-03-10T04:12:27.135872-07:00,1683.0,10.816831,10816.831 +25020,2025-03-10T04:12:37.953041-07:00,1717.0,10.817169,10817.169 +25021,2025-03-10T04:12:48.767690-07:00,1731.0,10.814649,10814.649 +25022,2025-03-10T04:12:59.582120-07:00,1729.0,10.81443,10814.43 +25023,2025-03-10T04:13:10.387879-07:00,1721.0,10.805759,10805.759 +25024,2025-03-10T04:13:21.199981-07:00,1671.0,10.812102,10812.102 +25025,2025-03-10T04:13:32.012942-07:00,1705.0,10.812961,10812.961 +25026,2025-03-10T04:13:42.823973-07:00,1681.0,10.811031,10811.031 +25027,2025-03-10T04:13:53.638892-07:00,1712.0,10.814919,10814.919 +25028,2025-03-10T04:14:04.454149-07:00,1690.0,10.815257,10815.257 +25029,2025-03-10T04:14:15.271886-07:00,1674.0,10.817737,10817.737 +25030,2025-03-10T04:14:26.087028-07:00,1730.0,10.815142,10815.142 +25031,2025-03-10T04:14:36.890930-07:00,1729.0,10.803902,10803.902 +25032,2025-03-10T04:14:47.711177-07:00,1727.0,10.820247,10820.247 +25033,2025-03-10T04:14:58.526216-07:00,1730.0,10.815039,10815.039 +25034,2025-03-10T04:15:09.346147-07:00,1690.0,10.819931,10819.931 +25035,2025-03-10T04:15:20.160279-07:00,1655.0,10.814132,10814.132 +25036,2025-03-10T04:15:30.975964-07:00,1711.0,10.815685,10815.685 +25037,2025-03-10T04:15:41.783950-07:00,1719.0,10.807986,10807.986 +25038,2025-03-10T04:15:52.605048-07:00,1677.0,10.821098,10821.098 +25039,2025-03-10T04:16:03.418032-07:00,1645.0,10.812984,10812.984 +25040,2025-03-10T04:16:14.230413-07:00,1635.0,10.812381,10812.381 +25041,2025-03-10T04:16:25.045899-07:00,1725.0,10.815486,10815.486 +25042,2025-03-10T04:16:35.858895-07:00,1727.0,10.812996,10812.996 +25043,2025-03-10T04:16:46.663891-07:00,1648.0,10.804996,10804.996 +25044,2025-03-10T04:16:57.486904-07:00,1631.0,10.823013,10823.013 +25045,2025-03-10T04:17:08.302430-07:00,1712.0,10.815526,10815.526 +25046,2025-03-10T04:17:19.115223-07:00,1728.0,10.812793,10812.793 +25047,2025-03-10T04:17:29.934122-07:00,1643.0,10.818899,10818.899 +25048,2025-03-10T04:17:40.756431-07:00,1677.0,10.822309,10822.309 +25049,2025-03-10T04:17:51.571054-07:00,1664.0,10.814623,10814.623 +25050,2025-03-10T04:18:02.388064-07:00,1637.0,10.81701,10817.01 +25051,2025-03-10T04:18:13.205005-07:00,1655.0,10.816941,10816.941 +25052,2025-03-10T04:18:24.022671-07:00,1707.0,10.817666,10817.666 +25053,2025-03-10T04:18:34.843466-07:00,1726.0,10.820795,10820.795 +25054,2025-03-10T04:18:45.657749-07:00,1650.0,10.814283,10814.283 +25055,2025-03-10T04:18:56.470880-07:00,1698.0,10.813131,10813.131 +25056,2025-03-10T04:19:07.288415-07:00,1709.0,10.817535,10817.535 +25057,2025-03-10T04:19:18.104134-07:00,1649.0,10.815719,10815.719 +25058,2025-03-10T04:19:28.925895-07:00,1728.0,10.821761,10821.761 +25059,2025-03-10T04:19:39.740892-07:00,1709.0,10.814997,10814.997 +25060,2025-03-10T04:19:50.562080-07:00,1729.0,10.821188,10821.188 +25061,2025-03-10T04:20:01.370015-07:00,1719.0,10.807935,10807.935 +25062,2025-03-10T04:20:12.189891-07:00,1675.0,10.819876,10819.876 +25063,2025-03-10T04:20:33.825890-07:00,1722.0,21.635999,21635.999 +25064,2025-03-10T04:20:44.636142-07:00,1680.0,10.810252,10810.252 +25065,2025-03-10T04:20:55.454181-07:00,1679.0,10.818039,10818.039 +25066,2025-03-10T04:21:06.276261-07:00,1724.0,10.82208,10822.08 +25067,2025-03-10T04:21:17.090894-07:00,1726.0,10.814633,10814.633 +25068,2025-03-10T04:21:27.910932-07:00,1679.0,10.820038,10820.038 +25069,2025-03-10T04:21:38.721894-07:00,1706.0,10.810962,10810.962 +25070,2025-03-10T04:21:49.532924-07:00,1663.0,10.81103,10811.03 +25071,2025-03-10T04:22:00.354308-07:00,1703.0,10.821384,10821.384 +25072,2025-03-10T04:22:11.164895-07:00,1727.0,10.810587,10810.587 +25073,2025-03-10T04:22:21.978138-07:00,1713.0,10.813243,10813.243 +25074,2025-03-10T04:22:32.791895-07:00,1703.0,10.813757,10813.757 +25075,2025-03-10T04:22:43.608682-07:00,1725.0,10.816787,10816.787 +25076,2025-03-10T04:22:54.427900-07:00,1725.0,10.819218,10819.218 +25077,2025-03-10T04:23:05.234898-07:00,1714.0,10.806998,10806.998 +25078,2025-03-10T04:23:16.050980-07:00,1704.0,10.816082,10816.082 +25079,2025-03-10T04:23:26.870691-07:00,1712.0,10.819711,10819.711 +25080,2025-03-10T04:23:37.688891-07:00,1637.0,10.8182,10818.2 +25081,2025-03-10T04:23:48.501138-07:00,1671.0,10.812247,10812.247 +25082,2025-03-10T04:23:59.317885-07:00,1703.0,10.816747,10816.747 +25083,2025-03-10T04:24:10.126896-07:00,1666.0,10.809011,10809.011 +25084,2025-03-10T04:24:20.945692-07:00,1727.0,10.818796,10818.796 +25085,2025-03-10T04:24:31.758968-07:00,1685.0,10.813276,10813.276 +25086,2025-03-10T04:24:42.575100-07:00,1723.0,10.816132,10816.132 +25087,2025-03-10T04:24:53.389232-07:00,1721.0,10.814132,10814.132 +25088,2025-03-10T04:25:04.196925-07:00,1646.0,10.807693,10807.693 +25089,2025-03-10T04:25:15.020261-07:00,1643.0,10.823336,10823.336 +25090,2025-03-10T04:25:25.829897-07:00,1727.0,10.809636,10809.636 +25091,2025-03-10T04:25:36.647896-07:00,1665.0,10.817999,10817.999 +25092,2025-03-10T04:25:47.457889-07:00,1681.0,10.809993,10809.993 +25093,2025-03-10T04:25:58.282939-07:00,1639.0,10.82505,10825.05 +25094,2025-03-10T04:26:09.095880-07:00,1719.0,10.812941,10812.941 +25095,2025-03-10T04:26:19.917883-07:00,1642.0,10.822003,10822.003 +25096,2025-03-10T04:26:30.725199-07:00,1709.0,10.807316,10807.316 +25097,2025-03-10T04:26:41.541856-07:00,1663.0,10.816657,10816.657 +25098,2025-03-10T04:26:52.357201-07:00,1722.0,10.815345,10815.345 +25099,2025-03-10T04:27:03.164616-07:00,1671.0,10.807415,10807.415 +25100,2025-03-10T04:27:13.973883-07:00,1695.0,10.809267,10809.267 +25101,2025-03-10T04:27:24.793929-07:00,1648.0,10.820046,10820.046 +25102,2025-03-10T04:27:35.609197-07:00,1725.0,10.815268,10815.268 +25103,2025-03-10T04:27:46.421149-07:00,1680.0,10.811952,10811.952 +25104,2025-03-10T04:27:57.233878-07:00,1646.0,10.812729,10812.729 +25105,2025-03-10T04:28:08.040885-07:00,1727.0,10.807007,10807.007 +25106,2025-03-10T04:28:18.861945-07:00,1636.0,10.82106,10821.06 +25107,2025-03-10T04:28:29.676022-07:00,1680.0,10.814077,10814.077 +25108,2025-03-10T04:28:40.486180-07:00,1675.0,10.810158,10810.158 +25109,2025-03-10T04:28:51.305948-07:00,1681.0,10.819768,10819.768 +25110,2025-03-10T04:29:02.115136-07:00,1721.0,10.809188,10809.188 +25111,2025-03-10T04:29:12.927935-07:00,1727.0,10.812799,10812.799 +25112,2025-03-10T04:29:23.738870-07:00,1712.0,10.810935,10810.935 +25113,2025-03-10T04:29:34.553003-07:00,1712.0,10.814133,10814.133 +25114,2025-03-10T04:29:45.366974-07:00,1702.0,10.813971,10813.971 +25115,2025-03-10T04:29:56.185893-07:00,1687.0,10.818919,10818.919 +25116,2025-03-10T04:30:06.995959-07:00,1727.0,10.810066,10810.066 +25117,2025-03-10T04:30:17.812462-07:00,1719.0,10.816503,10816.503 +25118,2025-03-10T04:30:28.625411-07:00,1623.0,10.812949,10812.949 +25119,2025-03-10T04:30:39.434232-07:00,1722.0,10.808821,10808.821 +25120,2025-03-10T04:30:50.247896-07:00,1718.0,10.813664,10813.664 +25121,2025-03-10T04:31:01.070982-07:00,1647.0,10.823086,10823.086 +25122,2025-03-10T04:31:11.883344-07:00,1680.0,10.812362,10812.362 +25123,2025-03-10T04:31:22.709888-07:00,1723.0,10.826544,10826.544 +25124,2025-03-10T04:31:33.524108-07:00,1669.0,10.81422,10814.22 +25125,2025-03-10T04:31:44.345251-07:00,1725.0,10.821143,10821.143 +25126,2025-03-10T04:31:55.153876-07:00,1667.0,10.808625,10808.625 +25127,2025-03-10T04:32:05.974886-07:00,1679.0,10.82101,10821.01 +25128,2025-03-10T04:32:16.790249-07:00,1727.0,10.815363,10815.363 +25129,2025-03-10T04:32:27.604285-07:00,1638.0,10.814036,10814.036 +25130,2025-03-10T04:32:38.418960-07:00,1632.0,10.814675,10814.675 +25131,2025-03-10T04:32:49.240874-07:00,1722.0,10.821914,10821.914 +25132,2025-03-10T04:33:00.059674-07:00,1642.0,10.8188,10818.8 +25133,2025-03-10T04:33:10.877291-07:00,1647.0,10.817617,10817.617 +25134,2025-03-10T04:33:21.693944-07:00,1708.0,10.816653,10816.653 +25135,2025-03-10T04:33:32.505889-07:00,1685.0,10.811945,10811.945 +25136,2025-03-10T04:33:43.326228-07:00,1712.0,10.820339,10820.339 +25137,2025-03-10T04:33:54.140885-07:00,1687.0,10.814657,10814.657 +25138,2025-03-10T04:34:04.952890-07:00,1707.0,10.812005,10812.005 +25139,2025-03-10T04:34:15.768133-07:00,1702.0,10.815243,10815.243 +25140,2025-03-10T04:34:26.576181-07:00,1681.0,10.808048,10808.048 +25141,2025-03-10T04:34:37.391876-07:00,1681.0,10.815695,10815.695 +25142,2025-03-10T04:34:48.212619-07:00,1648.0,10.820743,10820.743 +25143,2025-03-10T04:34:59.018899-07:00,1665.0,10.80628,10806.28 +25144,2025-03-10T04:35:09.832133-07:00,1643.0,10.813234,10813.234 +25145,2025-03-10T04:35:20.649930-07:00,1723.0,10.817797,10817.797 +25146,2025-03-10T04:35:31.465065-07:00,1724.0,10.815135,10815.135 +25147,2025-03-10T04:35:42.279975-07:00,1687.0,10.81491,10814.91 +25148,2025-03-10T04:35:53.098894-07:00,1725.0,10.818919,10818.919 +25149,2025-03-10T04:36:03.919283-07:00,1651.0,10.820389,10820.389 +25150,2025-03-10T04:36:14.731192-07:00,1672.0,10.811909,10811.909 +25151,2025-03-10T04:36:25.548981-07:00,1697.0,10.817789,10817.789 +25152,2025-03-10T04:36:36.364956-07:00,1712.0,10.815975,10815.975 +25153,2025-03-10T04:36:47.177088-07:00,1684.0,10.812132,10812.132 +25154,2025-03-10T04:36:57.994053-07:00,1655.0,10.816965,10816.965 +25155,2025-03-10T04:37:08.820023-07:00,1677.0,10.82597,10825.97 +25156,2025-03-10T04:37:19.639924-07:00,1645.0,10.819901,10819.901 +25157,2025-03-10T04:37:30.448335-07:00,1659.0,10.808411,10808.411 +25158,2025-03-10T04:37:41.269149-07:00,1712.0,10.820814,10820.814 +25159,2025-03-10T04:37:48.266328-07:00,1724.0,6.997179,6997.179 +25160,2025-03-10T04:37:52.089493-07:00,1712.0,3.823165,3823.165 +25161,2025-03-10T04:38:02.910214-07:00,1660.0,10.820721,10820.721 +25162,2025-03-10T04:38:13.726296-07:00,1671.0,10.816082,10816.082 +25163,2025-03-10T04:38:24.551151-07:00,1653.0,10.824855,10824.855 +25164,2025-03-10T04:38:35.370445-07:00,1722.0,10.819294,10819.294 +25165,2025-03-10T04:38:46.182308-07:00,1678.0,10.811863,10811.863 +25166,2025-03-10T04:38:57.000878-07:00,1715.0,10.81857,10818.57 +25167,2025-03-10T04:39:07.824891-07:00,1690.0,10.824013,10824.013 +25168,2025-03-10T04:39:18.636557-07:00,1706.0,10.811666,10811.666 +25169,2025-03-10T04:39:29.460028-07:00,1718.0,10.823471,10823.471 +25170,2025-03-10T04:39:40.273091-07:00,1713.0,10.813063,10813.063 +25171,2025-03-10T04:39:51.086936-07:00,1725.0,10.813845,10813.845 +25172,2025-03-10T04:40:01.899857-07:00,1690.0,10.812921,10812.921 +25173,2025-03-10T04:40:12.721039-07:00,1726.0,10.821182,10821.182 +25174,2025-03-10T04:40:23.533179-07:00,1671.0,10.81214,10812.14 +25175,2025-03-10T04:40:34.361186-07:00,1678.0,10.828007,10828.007 +25176,2025-03-10T04:40:45.180183-07:00,1726.0,10.818997,10818.997 +25177,2025-03-10T04:40:55.995130-07:00,1723.0,10.814947,10814.947 +25178,2025-03-10T04:41:06.808885-07:00,1687.0,10.813755,10813.755 +25179,2025-03-10T04:41:17.630216-07:00,1671.0,10.821331,10821.331 +25180,2025-03-10T04:41:28.445195-07:00,1680.0,10.814979,10814.979 +25181,2025-03-10T04:41:39.260057-07:00,1711.0,10.814862,10814.862 +25182,2025-03-10T04:41:50.081978-07:00,1724.0,10.821921,10821.921 +25183,2025-03-10T04:42:00.900271-07:00,1695.0,10.818293,10818.293 +25184,2025-03-10T04:42:11.715136-07:00,1719.0,10.814865,10814.865 +25185,2025-03-10T04:42:22.530927-07:00,1691.0,10.815791,10815.791 +25186,2025-03-10T04:42:33.343889-07:00,1637.0,10.812962,10812.962 +25187,2025-03-10T04:42:44.160096-07:00,1674.0,10.816207,10816.207 +25188,2025-03-10T04:42:54.983139-07:00,1648.0,10.823043,10823.043 +25189,2025-03-10T04:43:05.805027-07:00,1724.0,10.821888,10821.888 +25190,2025-03-10T04:43:16.618482-07:00,1670.0,10.813455,10813.455 +25191,2025-03-10T04:43:27.424518-07:00,1710.0,10.806036,10806.036 +25192,2025-03-10T04:43:38.238040-07:00,1719.0,10.813522,10813.522 +25193,2025-03-10T04:43:49.057874-07:00,1675.0,10.819834,10819.834 +25194,2025-03-10T04:43:59.869895-07:00,1712.0,10.812021,10812.021 +25195,2025-03-10T04:44:10.675963-07:00,1679.0,10.806068,10806.068 +25196,2025-03-10T04:44:21.497214-07:00,1726.0,10.821251,10821.251 +25197,2025-03-10T04:44:32.306038-07:00,1680.0,10.808824,10808.824 +25198,2025-03-10T04:44:43.125154-07:00,1710.0,10.819116,10819.116 +25199,2025-03-10T04:44:53.940131-07:00,1707.0,10.814977,10814.977 +25200,2025-03-10T04:45:04.748918-07:00,1710.0,10.808787,10808.787 +25201,2025-03-10T04:45:15.574935-07:00,1714.0,10.826017,10826.017 +25202,2025-03-10T04:45:26.384886-07:00,1719.0,10.809951,10809.951 +25203,2025-03-10T04:45:37.205210-07:00,1725.0,10.820324,10820.324 +25204,2025-03-10T04:45:48.025236-07:00,1701.0,10.820026,10820.026 +25205,2025-03-10T04:45:58.845724-07:00,1686.0,10.820488,10820.488 +25206,2025-03-10T04:46:09.658894-07:00,1723.0,10.81317,10813.17 +25207,2025-03-10T04:46:20.481843-07:00,1725.0,10.822949,10822.949 +25208,2025-03-10T04:46:31.304888-07:00,1693.0,10.823045,10823.045 +25209,2025-03-10T04:46:42.115891-07:00,1663.0,10.811003,10811.003 +25210,2025-03-10T04:46:52.942809-07:00,1721.0,10.826918,10826.918 +25211,2025-03-10T04:47:03.761890-07:00,1722.0,10.819081,10819.081 +25212,2025-03-10T04:47:14.582884-07:00,1642.0,10.820994,10820.994 +25213,2025-03-10T04:47:25.403722-07:00,1725.0,10.820838,10820.838 +25214,2025-03-10T04:47:36.223115-07:00,1709.0,10.819393,10819.393 +25215,2025-03-10T04:47:47.039400-07:00,1683.0,10.816285,10816.285 +25216,2025-03-10T04:48:08.676143-07:00,1629.0,21.636743,21636.743 +25217,2025-03-10T04:48:19.492159-07:00,1712.0,10.816016,10816.016 +25218,2025-03-10T04:48:30.311887-07:00,1669.0,10.819728,10819.728 +25219,2025-03-10T04:48:39.074012-07:00,1673.0,8.762125,8762.125 +25220,2025-03-10T04:48:41.122118-07:00,1703.0,2.048106,2048.106 +25221,2025-03-10T04:48:51.940317-07:00,1680.0,10.818199,10818.199 +25222,2025-03-10T04:49:02.763881-07:00,1711.0,10.823564,10823.564 +25223,2025-03-10T04:49:13.579945-07:00,1721.0,10.816064,10816.064 +25224,2025-03-10T04:49:24.398494-07:00,1706.0,10.818549,10818.549 +25225,2025-03-10T04:49:35.213887-07:00,1712.0,10.815393,10815.393 +25226,2025-03-10T04:49:46.034976-07:00,1717.0,10.821089,10821.089 +25227,2025-03-10T04:49:56.855382-07:00,1631.0,10.820406,10820.406 +25228,2025-03-10T04:50:07.670195-07:00,1723.0,10.814813,10814.813 +25229,2025-03-10T04:50:18.489172-07:00,1715.0,10.818977,10818.977 +25230,2025-03-10T04:50:29.318515-07:00,1723.0,10.829343,10829.343 +25231,2025-03-10T04:50:40.136364-07:00,1725.0,10.817849,10817.849 +25232,2025-03-10T04:50:50.949893-07:00,1712.0,10.813529,10813.529 +25233,2025-03-10T04:51:01.775868-07:00,1677.0,10.825975,10825.975 +25234,2025-03-10T04:51:12.596898-07:00,1725.0,10.82103,10821.03 +25235,2025-03-10T04:51:23.421471-07:00,1712.0,10.824573,10824.573 +25236,2025-03-10T04:51:34.240060-07:00,1662.0,10.818589,10818.589 +25237,2025-03-10T04:51:45.051897-07:00,1695.0,10.811837,10811.837 +25238,2025-03-10T04:51:55.876896-07:00,1674.0,10.824999,10824.999 +25239,2025-03-10T04:52:06.692914-07:00,1659.0,10.816018,10816.018 +25240,2025-03-10T04:52:17.507029-07:00,1676.0,10.814115,10814.115 +25241,2025-03-10T04:52:28.328892-07:00,1681.0,10.821863,10821.863 +25242,2025-03-10T04:52:39.145892-07:00,1673.0,10.817,10817.0 +25243,2025-03-10T04:52:49.971902-07:00,1700.0,10.82601,10826.01 +25244,2025-03-10T04:53:00.782895-07:00,1695.0,10.810993,10810.993 +25245,2025-03-10T04:53:11.609893-07:00,1722.0,10.826998,10826.998 +25246,2025-03-10T04:53:22.425342-07:00,1677.0,10.815449,10815.449 +25247,2025-03-10T04:53:33.241889-07:00,1718.0,10.816547,10816.547 +25248,2025-03-10T04:53:44.064942-07:00,1725.0,10.823053,10823.053 +25249,2025-03-10T04:53:54.882256-07:00,1719.0,10.817314,10817.314 +25250,2025-03-10T04:54:05.692929-07:00,1708.0,10.810673,10810.673 +25251,2025-03-10T04:54:16.514133-07:00,1637.0,10.821204,10821.204 +25252,2025-03-10T04:54:27.324874-07:00,1723.0,10.810741,10810.741 +25253,2025-03-10T04:54:38.148165-07:00,1717.0,10.823291,10823.291 +25254,2025-03-10T04:54:48.971876-07:00,1723.0,10.823711,10823.711 +25255,2025-03-10T04:54:59.794107-07:00,1718.0,10.822231,10822.231 +25256,2025-03-10T04:55:10.608203-07:00,1723.0,10.814096,10814.096 +25257,2025-03-10T04:55:21.424894-07:00,1711.0,10.816691,10816.691 +25258,2025-03-10T04:55:32.249960-07:00,1670.0,10.825066,10825.066 +25259,2025-03-10T04:55:43.064838-07:00,1647.0,10.814878,10814.878 +25260,2025-03-10T04:55:53.880896-07:00,1682.0,10.816058,10816.058 +25261,2025-03-10T04:56:04.695018-07:00,1718.0,10.814122,10814.122 +25262,2025-03-10T04:56:15.508883-07:00,1649.0,10.813865,10813.865 +25263,2025-03-10T04:56:26.335214-07:00,1722.0,10.826331,10826.331 +25264,2025-03-10T04:56:37.148659-07:00,1679.0,10.813445,10813.445 +25265,2025-03-10T04:56:47.969791-07:00,1683.0,10.821132,10821.132 +25266,2025-03-10T04:56:58.777891-07:00,1670.0,10.8081,10808.1 +25267,2025-03-10T04:57:09.604252-07:00,1653.0,10.826361,10826.361 +25268,2025-03-10T04:57:20.411901-07:00,1685.0,10.807649,10807.649 +25269,2025-03-10T04:57:31.228895-07:00,1702.0,10.816994,10816.994 +25270,2025-03-10T04:57:42.054815-07:00,1711.0,10.82592,10825.92 +25271,2025-03-10T04:57:52.871044-07:00,1710.0,10.816229,10816.229 +25272,2025-03-10T04:58:03.695151-07:00,1638.0,10.824107,10824.107 +25273,2025-03-10T04:58:14.506913-07:00,1722.0,10.811762,10811.762 +25274,2025-03-10T04:58:25.330010-07:00,1677.0,10.823097,10823.097 +25275,2025-03-10T04:58:36.155937-07:00,1628.0,10.825927,10825.927 +25276,2025-03-10T04:58:46.987247-07:00,1623.0,10.83131,10831.31 +25277,2025-03-10T04:58:57.806870-07:00,1723.0,10.819623,10819.623 +25278,2025-03-10T04:59:08.628922-07:00,1718.0,10.822052,10822.052 +25279,2025-03-10T04:59:19.455933-07:00,1639.0,10.827011,10827.011 +25280,2025-03-10T04:59:30.268041-07:00,1670.0,10.812108,10812.108 +25281,2025-03-10T04:59:41.084133-07:00,1717.0,10.816092,10816.092 +25282,2025-03-10T04:59:51.905405-07:00,1719.0,10.821272,10821.272 +25283,2025-03-10T05:00:02.724160-07:00,1673.0,10.818755,10818.755 +25284,2025-03-10T05:00:13.549483-07:00,1680.0,10.825323,10825.323 +25285,2025-03-10T05:00:24.373640-07:00,1681.0,10.824157,10824.157 +25286,2025-03-10T05:00:35.199114-07:00,1710.0,10.825474,10825.474 +25287,2025-03-10T05:00:46.015362-07:00,1719.0,10.816248,10816.248 +25288,2025-03-10T05:00:56.844300-07:00,1686.0,10.828938,10828.938 +25289,2025-03-10T05:01:07.661128-07:00,1722.0,10.816828,10816.828 +25290,2025-03-10T05:01:18.492277-07:00,1678.0,10.831149,10831.149 +25291,2025-03-10T05:01:29.310130-07:00,1719.0,10.817853,10817.853 +25292,2025-03-10T05:01:40.127891-07:00,1722.0,10.817761,10817.761 +25293,2025-03-10T05:01:50.955144-07:00,1722.0,10.827253,10827.253 +25294,2025-03-10T05:02:01.783436-07:00,1721.0,10.828292,10828.292 +25295,2025-03-10T05:02:12.603526-07:00,1715.0,10.82009,10820.09 +25296,2025-03-10T05:02:23.415891-07:00,1649.0,10.812365,10812.365 +25297,2025-03-10T05:02:34.242149-07:00,1723.0,10.826258,10826.258 +25298,2025-03-10T05:02:45.065158-07:00,1705.0,10.823009,10823.009 +25299,2025-03-10T05:02:55.885134-07:00,1725.0,10.819976,10819.976 +25300,2025-03-10T05:03:06.708313-07:00,1718.0,10.823179,10823.179 +25301,2025-03-10T05:03:17.529451-07:00,1708.0,10.821138,10821.138 +25302,2025-03-10T05:03:28.356142-07:00,1725.0,10.826691,10826.691 +25303,2025-03-10T05:03:39.180499-07:00,1677.0,10.824357,10824.357 +25304,2025-03-10T05:03:49.996316-07:00,1712.0,10.815817,10815.817 +25305,2025-03-10T05:04:00.822249-07:00,1711.0,10.825933,10825.933 +25306,2025-03-10T05:04:11.639377-07:00,1718.0,10.817128,10817.128 +25307,2025-03-10T05:04:22.459238-07:00,1717.0,10.819861,10819.861 +25308,2025-03-10T05:04:33.282889-07:00,1706.0,10.823651,10823.651 +25309,2025-03-10T05:04:44.106181-07:00,1669.0,10.823292,10823.292 +25310,2025-03-10T05:04:54.935163-07:00,1711.0,10.828982,10828.982 +25311,2025-03-10T05:05:05.756966-07:00,1714.0,10.821803,10821.803 +25312,2025-03-10T05:05:16.577894-07:00,1671.0,10.820928,10820.928 +25313,2025-03-10T05:05:27.396164-07:00,1723.0,10.81827,10818.27 +25314,2025-03-10T05:05:38.207897-07:00,1633.0,10.811733,10811.733 +25315,2025-03-10T05:05:49.042104-07:00,1725.0,10.834207,10834.207 +25316,2025-03-10T05:05:59.866258-07:00,1679.0,10.824154,10824.154 +25317,2025-03-10T05:06:10.685594-07:00,1670.0,10.819336,10819.336 +25318,2025-03-10T05:06:21.501136-07:00,1719.0,10.815542,10815.542 +25319,2025-03-10T05:06:32.316187-07:00,1719.0,10.815051,10815.051 +25320,2025-03-10T05:06:43.138116-07:00,1683.0,10.821929,10821.929 +25321,2025-03-10T05:06:53.955455-07:00,1712.0,10.817339,10817.339 +25322,2025-03-10T05:07:04.774238-07:00,1711.0,10.818783,10818.783 +25323,2025-03-10T05:07:15.595261-07:00,1713.0,10.821023,10821.023 +25324,2025-03-10T05:07:26.420413-07:00,1666.0,10.825152,10825.152 +25325,2025-03-10T05:07:37.238050-07:00,1717.0,10.817637,10817.637 +25326,2025-03-10T05:07:48.069133-07:00,1715.0,10.831083,10831.083 +25327,2025-03-10T05:07:58.887128-07:00,1702.0,10.817995,10817.995 +25328,2025-03-10T05:08:09.702120-07:00,1664.0,10.814992,10814.992 +25329,2025-03-10T05:08:20.519122-07:00,1690.0,10.817002,10817.002 +25330,2025-03-10T05:08:31.348366-07:00,1638.0,10.829244,10829.244 +25331,2025-03-10T05:08:42.173166-07:00,1639.0,10.8248,10824.8 +25332,2025-03-10T05:08:52.991115-07:00,1639.0,10.817949,10817.949 +25333,2025-03-10T05:09:03.820126-07:00,1718.0,10.829011,10829.011 +25334,2025-03-10T05:09:14.632118-07:00,1654.0,10.811992,10811.992 +25335,2025-03-10T05:09:25.458411-07:00,1671.0,10.826293,10826.293 +25336,2025-03-10T05:09:36.282133-07:00,1674.0,10.823722,10823.722 +25337,2025-03-10T05:09:47.104168-07:00,1693.0,10.822035,10822.035 +25338,2025-03-10T05:09:57.920641-07:00,1713.0,10.816473,10816.473 +25339,2025-03-10T05:10:08.744168-07:00,1631.0,10.823527,10823.527 +25340,2025-03-10T05:10:19.569445-07:00,1711.0,10.825277,10825.277 +25341,2025-03-10T05:10:30.381815-07:00,1678.0,10.81237,10812.37 +25342,2025-03-10T05:10:41.205120-07:00,1635.0,10.823305,10823.305 +25343,2025-03-10T05:10:52.035511-07:00,1680.0,10.830391,10830.391 +25344,2025-03-10T05:11:02.859122-07:00,1717.0,10.823611,10823.611 +25345,2025-03-10T05:11:13.681372-07:00,1712.0,10.82225,10822.25 +25346,2025-03-10T05:11:24.499340-07:00,1692.0,10.817968,10817.968 +25347,2025-03-10T05:11:35.323403-07:00,1665.0,10.824063,10824.063 +25348,2025-03-10T05:11:46.145393-07:00,1685.0,10.82199,10821.99 +25349,2025-03-10T05:11:56.970385-07:00,1678.0,10.824992,10824.992 +25350,2025-03-10T05:12:07.780129-07:00,1635.0,10.809744,10809.744 +25351,2025-03-10T05:12:18.606734-07:00,1705.0,10.826605,10826.605 +25352,2025-03-10T05:12:29.427121-07:00,1679.0,10.820387,10820.387 +25353,2025-03-10T05:12:40.248350-07:00,1680.0,10.821229,10821.229 +25354,2025-03-10T05:12:51.079660-07:00,1665.0,10.83131,10831.31 +25355,2025-03-10T05:13:01.892843-07:00,1684.0,10.813183,10813.183 +25356,2025-03-10T05:13:12.719359-07:00,1671.0,10.826516,10826.516 +25357,2025-03-10T05:13:23.543845-07:00,1698.0,10.824486,10824.486 +25358,2025-03-10T05:13:34.370169-07:00,1715.0,10.826324,10826.324 +25359,2025-03-10T05:13:45.197422-07:00,1669.0,10.827253,10827.253 +25360,2025-03-10T05:13:56.018348-07:00,1699.0,10.820926,10820.926 +25361,2025-03-10T05:14:06.844162-07:00,1678.0,10.825814,10825.814 +25362,2025-03-10T05:14:17.670126-07:00,1711.0,10.825964,10825.964 +25363,2025-03-10T05:14:28.490099-07:00,1680.0,10.819973,10819.973 +25364,2025-03-10T05:14:39.309797-07:00,1722.0,10.819698,10819.698 +25365,2025-03-10T05:14:50.135145-07:00,1719.0,10.825348,10825.348 +25366,2025-03-10T05:15:00.962330-07:00,1634.0,10.827185,10827.185 +25367,2025-03-10T05:15:11.781553-07:00,1629.0,10.819223,10819.223 +25368,2025-03-10T05:15:22.605192-07:00,1696.0,10.823639,10823.639 +25369,2025-03-10T05:15:33.433548-07:00,1682.0,10.828356,10828.356 +25370,2025-03-10T05:15:44.266108-07:00,1717.0,10.83256,10832.56 +25371,2025-03-10T05:15:55.087109-07:00,1718.0,10.821001,10821.001 +25372,2025-03-10T05:16:05.914126-07:00,1723.0,10.827017,10827.017 +25373,2025-03-10T05:16:16.740203-07:00,1648.0,10.826077,10826.077 +25374,2025-03-10T05:16:27.564018-07:00,1625.0,10.823815,10823.815 +25375,2025-03-10T05:16:38.390349-07:00,1642.0,10.826331,10826.331 +25376,2025-03-10T05:16:49.218131-07:00,1722.0,10.827782,10827.782 +25377,2025-03-10T05:16:59.724158-07:00,1665.0,10.506027,10506.027 +25378,2025-03-10T05:17:00.034453-07:00,1665.0,0.310295,310.295 +25379,2025-03-10T05:17:10.863169-07:00,1701.0,10.828716,10828.716 +25380,2025-03-10T05:17:21.689258-07:00,1639.0,10.826089,10826.089 +25381,2025-03-10T05:17:32.527436-07:00,1706.0,10.838178,10838.178 +25382,2025-03-10T05:17:43.360122-07:00,1691.0,10.832686,10832.686 +25383,2025-03-10T05:17:54.186280-07:00,1674.0,10.826158,10826.158 +25384,2025-03-10T05:18:05.021365-07:00,1664.0,10.835085,10835.085 +25385,2025-03-10T05:18:15.844712-07:00,1715.0,10.823347,10823.347 +25386,2025-03-10T05:18:26.678120-07:00,1661.0,10.833408,10833.408 +25387,2025-03-10T05:18:37.505508-07:00,1669.0,10.827388,10827.388 +25388,2025-03-10T05:18:48.336168-07:00,1715.0,10.83066,10830.66 +25389,2025-03-10T05:18:59.157414-07:00,1648.0,10.821246,10821.246 +25390,2025-03-10T05:19:09.984130-07:00,1706.0,10.826716,10826.716 +25391,2025-03-10T05:19:20.812369-07:00,1710.0,10.828239,10828.239 +25392,2025-03-10T05:19:31.640273-07:00,1714.0,10.827904,10827.904 +25393,2025-03-10T05:19:42.478480-07:00,1680.0,10.838207,10838.207 +25394,2025-03-10T05:19:53.304118-07:00,1635.0,10.825638,10825.638 +25395,2025-03-10T05:20:04.136492-07:00,1680.0,10.832374,10832.374 +25396,2025-03-10T05:20:14.970269-07:00,1696.0,10.833777,10833.777 +25397,2025-03-10T05:20:25.798348-07:00,1694.0,10.828079,10828.079 +25398,2025-03-10T05:20:36.630308-07:00,1669.0,10.83196,10831.96 +25399,2025-03-10T05:20:47.461428-07:00,1667.0,10.83112,10831.12 +25400,2025-03-10T05:20:58.289095-07:00,1635.0,10.827667,10827.667 +25401,2025-03-10T05:21:09.126373-07:00,1712.0,10.837278,10837.278 +25402,2025-03-10T05:21:19.954779-07:00,1680.0,10.828406,10828.406 +25403,2025-03-10T05:21:30.780411-07:00,1648.0,10.825632,10825.632 +25404,2025-03-10T05:21:41.612137-07:00,1692.0,10.831726,10831.726 +25405,2025-03-10T05:21:52.450335-07:00,1703.0,10.838198,10838.198 +25406,2025-03-10T05:22:03.274655-07:00,1668.0,10.82432,10824.32 +25407,2025-03-10T05:22:14.105380-07:00,1671.0,10.830725,10830.725 +25408,2025-03-10T05:22:24.938443-07:00,1639.0,10.833063,10833.063 +25409,2025-03-10T05:22:35.770122-07:00,1717.0,10.831679,10831.679 +25410,2025-03-10T05:22:46.592384-07:00,1693.0,10.822262,10822.262 +25411,2025-03-10T05:22:57.421089-07:00,1699.0,10.828705,10828.705 +25412,2025-03-10T05:23:08.240102-07:00,1711.0,10.819013,10819.013 +25413,2025-03-10T05:23:19.070171-07:00,1648.0,10.830069,10830.069 +25414,2025-03-10T05:23:29.906410-07:00,1673.0,10.836239,10836.239 +25415,2025-03-10T05:23:40.725305-07:00,1643.0,10.818895,10818.895 +25416,2025-03-10T05:23:51.559424-07:00,1637.0,10.834119,10834.119 +25417,2025-03-10T05:24:02.391124-07:00,1664.0,10.8317,10831.7 +25418,2025-03-10T05:24:13.208160-07:00,1709.0,10.817036,10817.036 +25419,2025-03-10T05:24:24.041124-07:00,1672.0,10.832964,10832.964 +25420,2025-03-10T05:24:34.862103-07:00,1651.0,10.820979,10820.979 +25421,2025-03-10T05:24:45.699391-07:00,1715.0,10.837288,10837.288 +25422,2025-03-10T05:24:56.525212-07:00,1677.0,10.825821,10825.821 +25423,2025-03-10T05:25:07.358118-07:00,1681.0,10.832906,10832.906 +25424,2025-03-10T05:25:18.200453-07:00,1642.0,10.842335,10842.335 +25425,2025-03-10T05:25:29.030367-07:00,1717.0,10.829914,10829.914 +25426,2025-03-10T05:25:39.861380-07:00,1680.0,10.831013,10831.013 +25427,2025-03-10T05:25:50.703453-07:00,1717.0,10.842073,10842.073 +25428,2025-03-10T05:26:01.526182-07:00,1682.0,10.822729,10822.729 +25429,2025-03-10T05:26:12.364473-07:00,1718.0,10.838291,10838.291 +25430,2025-03-10T05:26:23.190120-07:00,1719.0,10.825647,10825.647 +25431,2025-03-10T05:26:34.021695-07:00,1703.0,10.831575,10831.575 +25432,2025-03-10T05:26:44.864168-07:00,1678.0,10.842473,10842.473 +25433,2025-03-10T05:26:55.697254-07:00,1639.0,10.833086,10833.086 +25434,2025-03-10T05:27:06.527635-07:00,1719.0,10.830381,10830.381 +25435,2025-03-10T05:27:17.354126-07:00,1720.0,10.826491,10826.491 +25436,2025-03-10T05:27:28.191431-07:00,1633.0,10.837305,10837.305 +25437,2025-03-10T05:27:39.022321-07:00,1717.0,10.83089,10830.89 +25438,2025-03-10T05:27:49.856486-07:00,1636.0,10.834165,10834.165 +25439,2025-03-10T05:28:00.698309-07:00,1631.0,10.841823,10841.823 +25440,2025-03-10T05:28:11.528122-07:00,1685.0,10.829813,10829.813 +25441,2025-03-10T05:28:22.352564-07:00,1685.0,10.824442,10824.442 +25442,2025-03-10T05:28:33.183366-07:00,1722.0,10.830802,10830.802 +25443,2025-03-10T05:28:44.027471-07:00,1718.0,10.844105,10844.105 +25444,2025-03-10T05:28:54.862624-07:00,1701.0,10.835153,10835.153 +25445,2025-03-10T05:29:05.693124-07:00,1721.0,10.8305,10830.5 +25446,2025-03-10T05:29:16.521192-07:00,1696.0,10.828068,10828.068 +25447,2025-03-10T05:29:27.340979-07:00,1707.0,10.819787,10819.787 +25448,2025-03-10T05:29:38.184065-07:00,1662.0,10.843086,10843.086 +25449,2025-03-10T05:29:49.016205-07:00,1703.0,10.83214,10832.14 +25450,2025-03-10T05:29:59.846477-07:00,1719.0,10.830272,10830.272 +25451,2025-03-10T05:30:10.668118-07:00,1680.0,10.821641,10821.641 +25452,2025-03-10T05:30:21.498606-07:00,1680.0,10.830488,10830.488 +25453,2025-03-10T05:30:32.336126-07:00,1718.0,10.83752,10837.52 +25454,2025-03-10T05:30:43.163713-07:00,1708.0,10.827587,10827.587 +25455,2025-03-10T05:30:54.007148-07:00,1621.0,10.843435,10843.435 +25456,2025-03-10T05:31:04.842105-07:00,1631.0,10.834957,10834.957 +25457,2025-03-10T05:31:15.668784-07:00,1680.0,10.826679,10826.679 +25458,2025-03-10T05:31:26.504368-07:00,1647.0,10.835584,10835.584 +25459,2025-03-10T05:31:37.333459-07:00,1629.0,10.829091,10829.091 +25460,2025-03-10T05:31:48.169121-07:00,1661.0,10.835662,10835.662 +25461,2025-03-10T05:31:59.001443-07:00,1710.0,10.832322,10832.322 +25462,2025-03-10T05:32:09.838747-07:00,1646.0,10.837304,10837.304 +25463,2025-03-10T05:32:20.661380-07:00,1712.0,10.822633,10822.633 +25464,2025-03-10T05:32:31.503443-07:00,1628.0,10.842063,10842.063 +25465,2025-03-10T05:32:42.325679-07:00,1683.0,10.822236,10822.236 +25466,2025-03-10T05:32:53.160430-07:00,1673.0,10.834751,10834.751 +25467,2025-03-10T05:33:03.997104-07:00,1686.0,10.836674,10836.674 +25468,2025-03-10T05:33:14.819852-07:00,1651.0,10.822748,10822.748 +25469,2025-03-10T05:33:25.650128-07:00,1677.0,10.830276,10830.276 +25470,2025-03-10T05:33:36.482231-07:00,1720.0,10.832103,10832.103 +25471,2025-03-10T05:33:47.322962-07:00,1647.0,10.840731,10840.731 +25472,2025-03-10T05:33:58.156104-07:00,1685.0,10.833142,10833.142 +25473,2025-03-10T05:34:08.999824-07:00,1714.0,10.84372,10843.72 +25474,2025-03-10T05:34:19.832209-07:00,1717.0,10.832385,10832.385 +25475,2025-03-10T05:34:30.667120-07:00,1715.0,10.834911,10834.911 +25476,2025-03-10T05:34:41.494615-07:00,1712.0,10.827495,10827.495 +25477,2025-03-10T05:34:52.328368-07:00,1689.0,10.833753,10833.753 +25478,2025-03-10T05:35:03.164353-07:00,1650.0,10.835985,10835.985 +25479,2025-03-10T05:35:14.003670-07:00,1689.0,10.839317,10839.317 +25480,2025-03-10T05:35:24.839667-07:00,1659.0,10.835997,10835.997 +25481,2025-03-10T05:35:35.664918-07:00,1680.0,10.825251,10825.251 +25482,2025-03-10T05:35:46.498121-07:00,1709.0,10.833203,10833.203 +25483,2025-03-10T05:35:57.340139-07:00,1712.0,10.842018,10842.018 +25484,2025-03-10T05:36:08.171310-07:00,1695.0,10.831171,10831.171 +25485,2025-03-10T05:36:19.004400-07:00,1642.0,10.83309,10833.09 +25486,2025-03-10T05:36:29.834809-07:00,1659.0,10.830409,10830.409 +25487,2025-03-10T05:36:40.677118-07:00,1654.0,10.842309,10842.309 +25488,2025-03-10T05:36:51.509167-07:00,1709.0,10.832049,10832.049 +25489,2025-03-10T05:37:02.355491-07:00,1697.0,10.846324,10846.324 +25490,2025-03-10T05:37:13.185423-07:00,1668.0,10.829932,10829.932 +25491,2025-03-10T05:37:24.022445-07:00,1717.0,10.837022,10837.022 +25492,2025-03-10T05:37:34.863405-07:00,1630.0,10.84096,10840.96 +25493,2025-03-10T05:37:45.691361-07:00,1712.0,10.827956,10827.956 +25494,2025-03-10T05:37:56.520471-07:00,1677.0,10.82911,10829.11 +25495,2025-03-10T05:38:07.355121-07:00,1719.0,10.83465,10834.65 +25496,2025-03-10T05:38:18.174952-07:00,1719.0,10.819831,10819.831 +25497,2025-03-10T05:38:29.006447-07:00,1694.0,10.831495,10831.495 +25498,2025-03-10T05:38:39.839727-07:00,1647.0,10.83328,10833.28 +25499,2025-03-10T05:38:50.662868-07:00,1651.0,10.823141,10823.141 +25500,2025-03-10T05:39:01.490638-07:00,1677.0,10.82777,10827.77 +25501,2025-03-10T05:39:12.316186-07:00,1709.0,10.825548,10825.548 +25502,2025-03-10T05:39:23.154410-07:00,1715.0,10.838224,10838.224 +25503,2025-03-10T05:39:33.987103-07:00,1719.0,10.832693,10832.693 +25504,2025-03-10T05:39:44.817547-07:00,1637.0,10.830444,10830.444 +25505,2025-03-10T05:39:55.644366-07:00,1717.0,10.826819,10826.819 +25506,2025-03-10T05:40:06.484354-07:00,1701.0,10.839988,10839.988 +25507,2025-03-10T05:40:17.313469-07:00,1669.0,10.829115,10829.115 +25508,2025-03-10T05:40:28.141370-07:00,1715.0,10.827901,10827.901 +25509,2025-03-10T05:40:38.964125-07:00,1717.0,10.822755,10822.755 +25510,2025-03-10T05:40:49.796428-07:00,1693.0,10.832303,10832.303 +25511,2025-03-10T05:41:00.622655-07:00,1696.0,10.826227,10826.227 +25512,2025-03-10T05:41:11.460277-07:00,1712.0,10.837622,10837.622 +25513,2025-03-10T05:41:22.292780-07:00,1648.0,10.832503,10832.503 +25514,2025-03-10T05:41:33.113127-07:00,1705.0,10.820347,10820.347 +25515,2025-03-10T05:41:43.946170-07:00,1670.0,10.833043,10833.043 +25516,2025-03-10T05:41:54.776478-07:00,1697.0,10.830308,10830.308 +25517,2025-03-10T05:42:05.604884-07:00,1639.0,10.828406,10828.406 +25518,2025-03-10T05:42:16.449353-07:00,1718.0,10.844469,10844.469 +25519,2025-03-10T05:42:27.284383-07:00,1694.0,10.83503,10835.03 +25520,2025-03-10T05:42:38.110195-07:00,1691.0,10.825812,10825.812 +25521,2025-03-10T05:42:48.940439-07:00,1671.0,10.830244,10830.244 +25522,2025-03-10T05:42:59.777650-07:00,1693.0,10.837211,10837.211 +25523,2025-03-10T05:43:10.612125-07:00,1694.0,10.834475,10834.475 +25524,2025-03-10T05:43:21.440440-07:00,1694.0,10.828315,10828.315 +25525,2025-03-10T05:43:32.281120-07:00,1700.0,10.84068,10840.68 +25526,2025-03-10T05:43:43.117198-07:00,1673.0,10.836078,10836.078 +25527,2025-03-10T05:43:53.947116-07:00,1709.0,10.829918,10829.918 +25528,2025-03-10T05:44:04.784103-07:00,1719.0,10.836987,10836.987 +25529,2025-03-10T05:44:15.611713-07:00,1686.0,10.82761,10827.61 +25530,2025-03-10T05:44:26.454304-07:00,1622.0,10.842591,10842.591 +25531,2025-03-10T05:44:37.286304-07:00,1674.0,10.832,10832.0 +25532,2025-03-10T05:44:48.124422-07:00,1670.0,10.838118,10838.118 +25533,2025-03-10T05:44:58.955247-07:00,1713.0,10.830825,10830.825 +25534,2025-03-10T05:45:09.790154-07:00,1635.0,10.834907,10834.907 +25535,2025-03-10T05:45:20.625173-07:00,1617.0,10.835019,10835.019 +25536,2025-03-10T05:45:31.450453-07:00,1715.0,10.82528,10825.28 +25537,2025-03-10T05:45:42.285414-07:00,1707.0,10.834961,10834.961 +25538,2025-03-10T05:45:53.120511-07:00,1632.0,10.835097,10835.097 +25539,2025-03-10T05:46:03.956177-07:00,1715.0,10.835666,10835.666 +25540,2025-03-10T05:46:14.796510-07:00,1668.0,10.840333,10840.333 +25541,2025-03-10T05:46:25.626434-07:00,1676.0,10.829924,10829.924 +25542,2025-03-10T05:46:36.467461-07:00,1691.0,10.841027,10841.027 +25543,2025-03-10T05:46:47.299122-07:00,1701.0,10.831661,10831.661 +25544,2025-03-10T05:46:58.134109-07:00,1677.0,10.834987,10834.987 +25545,2025-03-10T05:47:08.964165-07:00,1643.0,10.830056,10830.056 +25546,2025-03-10T05:47:19.796392-07:00,1671.0,10.832227,10832.227 +25547,2025-03-10T05:47:30.639120-07:00,1714.0,10.842728,10842.728 +25548,2025-03-10T05:47:41.468126-07:00,1698.0,10.829006,10829.006 +25549,2025-03-10T05:47:52.293385-07:00,1660.0,10.825259,10825.259 +25550,2025-03-10T05:48:03.124115-07:00,1682.0,10.83073,10830.73 +25551,2025-03-10T05:48:13.953119-07:00,1617.0,10.829004,10829.004 +25552,2025-03-10T05:48:24.796014-07:00,1635.0,10.842895,10842.895 +25553,2025-03-10T05:48:35.632191-07:00,1689.0,10.836177,10836.177 +25554,2025-03-10T05:48:46.466366-07:00,1662.0,10.834175,10834.175 +25555,2025-03-10T05:48:57.290190-07:00,1671.0,10.823824,10823.824 +25556,2025-03-10T05:49:08.112192-07:00,1626.0,10.822002,10822.002 +25557,2025-03-10T05:49:18.944351-07:00,1680.0,10.832159,10832.159 +25558,2025-03-10T05:49:29.779292-07:00,1627.0,10.834941,10834.941 +25559,2025-03-10T05:49:40.611123-07:00,1659.0,10.831831,10831.831 +25560,2025-03-10T05:49:51.450627-07:00,1695.0,10.839504,10839.504 +25561,2025-03-10T05:50:02.284706-07:00,1703.0,10.834079,10834.079 +25562,2025-03-10T05:50:13.120123-07:00,1718.0,10.835417,10835.417 +25563,2025-03-10T05:50:23.949378-07:00,1641.0,10.829255,10829.255 +25564,2025-03-10T05:50:34.784344-07:00,1713.0,10.834966,10834.966 +25565,2025-03-10T05:50:45.619461-07:00,1713.0,10.835117,10835.117 +25566,2025-03-10T05:50:56.451645-07:00,1697.0,10.832184,10832.184 +25567,2025-03-10T05:51:07.282166-07:00,1714.0,10.830521,10830.521 +25568,2025-03-10T05:51:18.127121-07:00,1680.0,10.844955,10844.955 +25569,2025-03-10T05:51:28.960147-07:00,1715.0,10.833026,10833.026 +25570,2025-03-10T05:51:39.790652-07:00,1651.0,10.830505,10830.505 +25571,2025-03-10T05:51:50.623408-07:00,1669.0,10.832756,10832.756 +25572,2025-03-10T05:52:01.462241-07:00,1713.0,10.838833,10838.833 +25573,2025-03-10T05:52:12.308387-07:00,1679.0,10.846146,10846.146 +25574,2025-03-10T05:52:23.139392-07:00,1718.0,10.831005,10831.005 +25575,2025-03-10T05:52:33.975738-07:00,1697.0,10.836346,10836.346 +25576,2025-03-10T05:52:44.806964-07:00,1711.0,10.831226,10831.226 +25577,2025-03-10T05:52:55.640360-07:00,1686.0,10.833396,10833.396 +25578,2025-03-10T05:53:06.465379-07:00,1648.0,10.825019,10825.019 +25579,2025-03-10T05:53:17.301175-07:00,1715.0,10.835796,10835.796 +25580,2025-03-10T05:53:28.134729-07:00,1695.0,10.833554,10833.554 +25581,2025-03-10T05:53:38.974095-07:00,1635.0,10.839366,10839.366 +25582,2025-03-10T05:53:49.800455-07:00,1665.0,10.82636,10826.36 +25583,2025-03-10T05:54:00.641122-07:00,1648.0,10.840667,10840.667 +25584,2025-03-10T05:54:11.477502-07:00,1653.0,10.83638,10836.38 +25585,2025-03-10T05:54:22.306617-07:00,1632.0,10.829115,10829.115 +25586,2025-03-10T05:54:33.142430-07:00,1621.0,10.835813,10835.813 +25587,2025-03-10T05:54:43.975152-07:00,1679.0,10.832722,10832.722 +25588,2025-03-10T05:54:54.805133-07:00,1716.0,10.829981,10829.981 +25589,2025-03-10T05:55:05.634121-07:00,1653.0,10.828988,10828.988 +25590,2025-03-10T05:55:16.475325-07:00,1677.0,10.841204,10841.204 +25591,2025-03-10T05:55:27.308430-07:00,1674.0,10.833105,10833.105 +25592,2025-03-10T05:55:38.143174-07:00,1631.0,10.834744,10834.744 +25593,2025-03-10T05:55:48.975388-07:00,1666.0,10.832214,10832.214 +25594,2025-03-10T05:55:59.807431-07:00,1689.0,10.832043,10832.043 +25595,2025-03-10T05:56:10.635629-07:00,1707.0,10.828198,10828.198 +25596,2025-03-10T05:56:21.477483-07:00,1714.0,10.841854,10841.854 +25597,2025-03-10T05:56:32.308126-07:00,1705.0,10.830643,10830.643 +25598,2025-03-10T05:56:43.142983-07:00,1634.0,10.834857,10834.857 +25599,2025-03-10T05:56:53.977619-07:00,1711.0,10.834636,10834.636 +25600,2025-03-10T05:57:04.820432-07:00,1705.0,10.842813,10842.813 +25601,2025-03-10T05:57:15.642151-07:00,1694.0,10.821719,10821.719 +25602,2025-03-10T05:57:26.480280-07:00,1713.0,10.838129,10838.129 +25603,2025-03-10T05:57:37.323104-07:00,1687.0,10.842824,10842.824 +25604,2025-03-10T05:57:48.159415-07:00,1650.0,10.836311,10836.311 +25605,2025-03-10T05:57:58.987314-07:00,1662.0,10.827899,10827.899 +25606,2025-03-10T05:58:09.824174-07:00,1661.0,10.83686,10836.86 +25607,2025-03-10T05:58:20.659116-07:00,1616.0,10.834942,10834.942 +25608,2025-03-10T05:58:31.501270-07:00,1620.0,10.842154,10842.154 +25609,2025-03-10T05:58:42.336745-07:00,1693.0,10.835475,10835.475 +25610,2025-03-10T05:58:53.179776-07:00,1712.0,10.843031,10843.031 +25611,2025-03-10T05:59:04.016108-07:00,1670.0,10.836332,10836.332 +25612,2025-03-10T05:59:14.847223-07:00,1708.0,10.831115,10831.115 +25613,2025-03-10T05:59:25.679114-07:00,1686.0,10.831891,10831.891 +25614,2025-03-10T05:59:36.508528-07:00,1658.0,10.829414,10829.414 +25615,2025-03-10T05:59:47.345216-07:00,1706.0,10.836688,10836.688 +25616,2025-03-10T05:59:58.179566-07:00,1688.0,10.83435,10834.35 +25617,2025-03-10T06:00:09.011437-07:00,1681.0,10.831871,10831.871 +25618,2025-03-10T06:00:19.837104-07:00,1617.0,10.825667,10825.667 +25619,2025-03-10T06:00:30.674235-07:00,1626.0,10.837131,10837.131 +25620,2025-03-10T06:00:41.506122-07:00,1712.0,10.831887,10831.887 +25621,2025-03-10T06:00:52.338455-07:00,1665.0,10.832333,10832.333 +25622,2025-03-10T06:01:03.163178-07:00,1674.0,10.824723,10824.723 +25623,2025-03-10T06:01:13.995126-07:00,1639.0,10.831948,10831.948 +25624,2025-03-10T06:01:24.828215-07:00,1668.0,10.833089,10833.089 +25625,2025-03-10T06:01:35.654487-07:00,1698.0,10.826272,10826.272 +25626,2025-03-10T06:01:46.489534-07:00,1637.0,10.835047,10835.047 +25627,2025-03-10T06:01:57.310394-07:00,1713.0,10.82086,10820.86 +25628,2025-03-10T06:02:08.152438-07:00,1717.0,10.842044,10842.044 +25629,2025-03-10T06:02:18.987106-07:00,1711.0,10.834668,10834.668 +25630,2025-03-10T06:02:29.818145-07:00,1654.0,10.831039,10831.039 +25631,2025-03-10T06:02:40.649354-07:00,1713.0,10.831209,10831.209 +25632,2025-03-10T06:02:51.482120-07:00,1717.0,10.832766,10832.766 +25633,2025-03-10T06:03:02.319601-07:00,1712.0,10.837481,10837.481 +25634,2025-03-10T06:03:13.156130-07:00,1712.0,10.836529,10836.529 +25635,2025-03-10T06:03:23.988178-07:00,1663.0,10.832048,10832.048 +25636,2025-03-10T06:03:34.827437-07:00,1701.0,10.839259,10839.259 +25637,2025-03-10T06:03:45.662177-07:00,1708.0,10.83474,10834.74 +25638,2025-03-10T06:03:56.495395-07:00,1654.0,10.833218,10833.218 +25639,2025-03-10T06:04:07.326124-07:00,1716.0,10.830729,10830.729 +25640,2025-03-10T06:04:18.168729-07:00,1705.0,10.842605,10842.605 +25641,2025-03-10T06:04:29.000927-07:00,1629.0,10.832198,10832.198 +25642,2025-03-10T06:04:39.843649-07:00,1702.0,10.842722,10842.722 +25643,2025-03-10T06:04:50.678127-07:00,1711.0,10.834478,10834.478 +25644,2025-03-10T06:05:01.514699-07:00,1713.0,10.836572,10836.572 +25645,2025-03-10T06:05:12.351299-07:00,1623.0,10.8366,10836.6 +25646,2025-03-10T06:05:23.178451-07:00,1711.0,10.827152,10827.152 +25647,2025-03-10T06:05:34.025576-07:00,1679.0,10.847125,10847.125 +25648,2025-03-10T06:05:44.893414-07:00,1713.0,10.867838,10867.838 +25649,2025-03-10T06:05:55.721934-07:00,1680.0,10.82852,10828.52 +25650,2025-03-10T06:06:06.556572-07:00,1622.0,10.834638,10834.638 +25651,2025-03-10T06:06:17.396886-07:00,1631.0,10.840314,10840.314 +25652,2025-03-10T06:06:28.231732-07:00,1628.0,10.834846,10834.846 +25653,2025-03-10T06:06:39.063800-07:00,1713.0,10.832068,10832.068 +25654,2025-03-10T06:06:49.906551-07:00,1714.0,10.842751,10842.751 +25655,2025-03-10T06:07:00.739869-07:00,1707.0,10.833318,10833.318 +25656,2025-03-10T06:07:11.562892-07:00,1636.0,10.823023,10823.023 +25657,2025-03-10T06:07:22.395607-07:00,1679.0,10.832715,10832.715 +25658,2025-03-10T06:07:33.232574-07:00,1693.0,10.836967,10836.967 +25659,2025-03-10T06:07:44.065886-07:00,1664.0,10.833312,10833.312 +25660,2025-03-10T06:07:54.898750-07:00,1663.0,10.832864,10832.864 +25661,2025-03-10T06:08:05.729285-07:00,1704.0,10.830535,10830.535 +25662,2025-03-10T06:08:16.566570-07:00,1712.0,10.837285,10837.285 +25663,2025-03-10T06:08:27.392674-07:00,1703.0,10.826104,10826.104 +25664,2025-03-10T06:08:38.223618-07:00,1667.0,10.830944,10830.944 +25665,2025-03-10T06:08:49.057550-07:00,1662.0,10.833932,10833.932 +25666,2025-03-10T06:08:59.887838-07:00,1697.0,10.830288,10830.288 +25667,2025-03-10T06:09:10.711672-07:00,1661.0,10.823834,10823.834 +25668,2025-03-10T06:09:21.551825-07:00,1702.0,10.840153,10840.153 +25669,2025-03-10T06:09:32.375706-07:00,1680.0,10.823881,10823.881 +25670,2025-03-10T06:09:43.209871-07:00,1626.0,10.834165,10834.165 +25671,2025-03-10T06:09:54.053570-07:00,1693.0,10.843699,10843.699 +25672,2025-03-10T06:10:04.884550-07:00,1717.0,10.83098,10830.98 +25673,2025-03-10T06:10:15.708616-07:00,1711.0,10.824066,10824.066 +25674,2025-03-10T06:10:26.536818-07:00,1706.0,10.828202,10828.202 +25675,2025-03-10T06:10:37.367727-07:00,1708.0,10.830909,10830.909 +25676,2025-03-10T06:10:48.195633-07:00,1687.0,10.827906,10827.906 +25677,2025-03-10T06:10:59.021546-07:00,1686.0,10.825913,10825.913 +25678,2025-03-10T06:11:09.857678-07:00,1703.0,10.836132,10836.132 +25679,2025-03-10T06:11:20.684526-07:00,1673.0,10.826848,10826.848 +25680,2025-03-10T06:11:31.508825-07:00,1625.0,10.824299,10824.299 +25681,2025-03-10T06:11:42.334831-07:00,1693.0,10.826006,10826.006 +25682,2025-03-10T06:11:53.172574-07:00,1706.0,10.837743,10837.743 +25683,2025-03-10T06:12:03.999698-07:00,1699.0,10.827124,10827.124 +25684,2025-03-10T06:12:14.831572-07:00,1686.0,10.831874,10831.874 +25685,2025-03-10T06:12:25.662912-07:00,1717.0,10.83134,10831.34 +25686,2025-03-10T06:12:36.488012-07:00,1715.0,10.8251,10825.1 +25687,2025-03-10T06:12:47.326826-07:00,1628.0,10.838814,10838.814 +25688,2025-03-10T06:12:58.152562-07:00,1633.0,10.825736,10825.736 +25689,2025-03-10T06:13:08.977211-07:00,1677.0,10.824649,10824.649 +25690,2025-03-10T06:13:19.809670-07:00,1713.0,10.832459,10832.459 +25691,2025-03-10T06:13:30.635719-07:00,1682.0,10.826049,10826.049 +25692,2025-03-10T06:13:41.461567-07:00,1679.0,10.825848,10825.848 +25693,2025-03-10T06:13:52.293713-07:00,1680.0,10.832146,10832.146 +25694,2025-03-10T06:14:03.120892-07:00,1710.0,10.827179,10827.179 +25695,2025-03-10T06:14:13.950300-07:00,1712.0,10.829408,10829.408 +25696,2025-03-10T06:14:24.776897-07:00,1710.0,10.826597,10826.597 +25697,2025-03-10T06:14:35.603624-07:00,1707.0,10.826727,10826.727 +25698,2025-03-10T06:14:46.430751-07:00,1648.0,10.827127,10827.127 +25699,2025-03-10T06:14:57.256745-07:00,1680.0,10.825994,10825.994 +25700,2025-03-10T06:15:08.090580-07:00,1642.0,10.833835,10833.835 +25701,2025-03-10T06:15:18.919760-07:00,1671.0,10.82918,10829.18 +25702,2025-03-10T06:15:29.733398-07:00,1634.0,10.813638,10813.638 +25703,2025-03-10T06:15:40.564565-07:00,1698.0,10.831167,10831.167 +25704,2025-03-10T06:15:51.385392-07:00,1707.0,10.820827,10820.827 +25705,2025-03-10T06:16:02.212571-07:00,1686.0,10.827179,10827.179 +25706,2025-03-10T06:16:13.043512-07:00,1637.0,10.830941,10830.941 +25707,2025-03-10T06:16:23.873801-07:00,1711.0,10.830289,10830.289 +25708,2025-03-10T06:16:34.689944-07:00,1664.0,10.816143,10816.143 +25709,2025-03-10T06:16:45.521618-07:00,1683.0,10.831674,10831.674 +25710,2025-03-10T06:16:56.344559-07:00,1673.0,10.822941,10822.941 +25711,2025-03-10T06:17:07.174549-07:00,1629.0,10.82999,10829.99 +25712,2025-03-10T06:17:18.005577-07:00,1639.0,10.831028,10831.028 +25713,2025-03-10T06:17:28.836605-07:00,1697.0,10.831028,10831.028 +25714,2025-03-10T06:17:39.661816-07:00,1631.0,10.825211,10825.211 +25715,2025-03-10T06:17:50.486056-07:00,1675.0,10.82424,10824.24 +25716,2025-03-10T06:18:01.320563-07:00,1712.0,10.834507,10834.507 +25717,2025-03-10T06:18:12.146939-07:00,1686.0,10.826376,10826.376 +25718,2025-03-10T06:18:22.974800-07:00,1642.0,10.827861,10827.861 +25719,2025-03-10T06:18:33.797912-07:00,1627.0,10.823112,10823.112 +25720,2025-03-10T06:18:44.630678-07:00,1623.0,10.832766,10832.766 +25721,2025-03-10T06:18:55.455823-07:00,1698.0,10.825145,10825.145 +25722,2025-03-10T06:19:06.284252-07:00,1659.0,10.828429,10828.429 +25723,2025-03-10T06:19:17.113855-07:00,1713.0,10.829603,10829.603 +25724,2025-03-10T06:19:27.944367-07:00,1631.0,10.830512,10830.512 +25725,2025-03-10T06:19:38.777890-07:00,1698.0,10.833523,10833.523 +25726,2025-03-10T06:19:49.610550-07:00,1712.0,10.83266,10832.66 +25727,2025-03-10T06:20:00.435972-07:00,1703.0,10.825422,10825.422 +25728,2025-03-10T06:20:11.271691-07:00,1713.0,10.835719,10835.719 +25729,2025-03-10T06:20:22.100797-07:00,1719.0,10.829106,10829.106 +25730,2025-03-10T06:20:32.935469-07:00,1665.0,10.834672,10834.672 +25731,2025-03-10T06:20:54.586617-07:00,1715.0,21.651148,21651.148 +25732,2025-03-10T06:21:05.414179-07:00,1670.0,10.827562,10827.562 +25733,2025-03-10T06:21:16.252261-07:00,1658.0,10.838082,10838.082 +25734,2025-03-10T06:21:27.071630-07:00,1707.0,10.819369,10819.369 +25735,2025-03-10T06:21:37.904629-07:00,1676.0,10.832999,10832.999 +25736,2025-03-10T06:21:48.729622-07:00,1634.0,10.824993,10824.993 +25737,2025-03-10T06:21:59.566992-07:00,1639.0,10.83737,10837.37 +25738,2025-03-10T06:22:10.386667-07:00,1616.0,10.819675,10819.675 +25739,2025-03-10T06:22:21.222744-07:00,1687.0,10.836077,10836.077 +25740,2025-03-10T06:22:32.049741-07:00,1717.0,10.826997,10826.997 +25741,2025-03-10T06:22:42.878328-07:00,1674.0,10.828587,10828.587 +25742,2025-03-10T06:22:53.708563-07:00,1677.0,10.830235,10830.235 +25743,2025-03-10T06:23:04.533594-07:00,1697.0,10.825031,10825.031 +25744,2025-03-10T06:23:15.354908-07:00,1674.0,10.821314,10821.314 +25745,2025-03-10T06:23:26.183798-07:00,1619.0,10.82889,10828.89 +25746,2025-03-10T06:23:37.019572-07:00,1637.0,10.835774,10835.774 +25747,2025-03-10T06:23:47.841571-07:00,1682.0,10.821999,10821.999 +25748,2025-03-10T06:23:58.681554-07:00,1620.0,10.839983,10839.983 +25749,2025-03-10T06:24:09.507551-07:00,1712.0,10.825997,10825.997 +25750,2025-03-10T06:24:20.338695-07:00,1665.0,10.831144,10831.144 +25751,2025-03-10T06:24:31.165085-07:00,1620.0,10.82639,10826.39 +25752,2025-03-10T06:24:41.996835-07:00,1696.0,10.83175,10831.75 +25753,2025-03-10T06:24:52.818568-07:00,1701.0,10.821733,10821.733 +25754,2025-03-10T06:25:03.648610-07:00,1717.0,10.830042,10830.042 +25755,2025-03-10T06:25:14.469804-07:00,1711.0,10.821194,10821.194 +25756,2025-03-10T06:25:25.296848-07:00,1711.0,10.827044,10827.044 +25757,2025-03-10T06:25:36.127569-07:00,1651.0,10.830721,10830.721 +25758,2025-03-10T06:25:46.948948-07:00,1703.0,10.821379,10821.379 +25759,2025-03-10T06:25:57.779705-07:00,1715.0,10.830757,10830.757 +25760,2025-03-10T06:26:08.605189-07:00,1711.0,10.825484,10825.484 +25761,2025-03-10T06:26:19.442546-07:00,1711.0,10.837357,10837.357 +25762,2025-03-10T06:26:30.270912-07:00,1645.0,10.828366,10828.366 +25763,2025-03-10T06:26:41.100572-07:00,1714.0,10.82966,10829.66 +25764,2025-03-10T06:26:51.932182-07:00,1678.0,10.83161,10831.61 +25765,2025-03-10T06:27:02.751800-07:00,1709.0,10.819618,10819.618 +25766,2025-03-10T06:27:13.584877-07:00,1697.0,10.833077,10833.077 +25767,2025-03-10T06:27:24.411620-07:00,1704.0,10.826743,10826.743 +25768,2025-03-10T06:27:35.235935-07:00,1638.0,10.824315,10824.315 +25769,2025-03-10T06:27:46.067431-07:00,1717.0,10.831496,10831.496 +25770,2025-03-10T06:27:56.895904-07:00,1707.0,10.828473,10828.473 +25771,2025-03-10T06:28:07.730559-07:00,1715.0,10.834655,10834.655 +25772,2025-03-10T06:28:18.554833-07:00,1673.0,10.824274,10824.274 +25773,2025-03-10T06:28:29.389546-07:00,1653.0,10.834713,10834.713 +25774,2025-03-10T06:28:40.220879-07:00,1631.0,10.831333,10831.333 +25775,2025-03-10T06:28:51.048405-07:00,1717.0,10.827526,10827.526 +25776,2025-03-10T06:29:01.877871-07:00,1718.0,10.829466,10829.466 +25777,2025-03-10T06:29:12.704791-07:00,1642.0,10.82692,10826.92 +25778,2025-03-10T06:29:23.541564-07:00,1716.0,10.836773,10836.773 +25779,2025-03-10T06:29:34.379831-07:00,1651.0,10.838267,10838.267 +25780,2025-03-10T06:29:45.205577-07:00,1710.0,10.825746,10825.746 +25781,2025-03-10T06:29:56.039089-07:00,1713.0,10.833512,10833.512 +25782,2025-03-10T06:30:06.869563-07:00,1718.0,10.830474,10830.474 +25783,2025-03-10T06:30:17.702836-07:00,1685.0,10.833273,10833.273 +25784,2025-03-10T06:30:28.531566-07:00,1701.0,10.82873,10828.73 +25785,2025-03-10T06:30:39.364961-07:00,1714.0,10.833395,10833.395 +25786,2025-03-10T06:30:50.179789-07:00,1711.0,10.814828,10814.828 +25787,2025-03-10T06:31:01.005066-07:00,1686.0,10.825277,10825.277 +25788,2025-03-10T06:31:11.844569-07:00,1671.0,10.839503,10839.503 +25789,2025-03-10T06:31:22.668985-07:00,1677.0,10.824416,10824.416 +25790,2025-03-10T06:31:33.499822-07:00,1718.0,10.830837,10830.837 +25791,2025-03-10T06:31:44.327696-07:00,1715.0,10.827874,10827.874 +25792,2025-03-10T06:31:55.159892-07:00,1715.0,10.832196,10832.196 +25793,2025-03-10T06:32:05.984222-07:00,1676.0,10.82433,10824.33 +25794,2025-03-10T06:32:16.813817-07:00,1690.0,10.829595,10829.595 +25795,2025-03-10T06:32:27.648860-07:00,1626.0,10.835043,10835.043 +25796,2025-03-10T06:32:38.474566-07:00,1716.0,10.825706,10825.706 +25797,2025-03-10T06:32:49.293548-07:00,1711.0,10.818982,10818.982 +25798,2025-03-10T06:33:00.120565-07:00,1673.0,10.827017,10827.017 +25799,2025-03-10T06:33:10.950909-07:00,1703.0,10.830344,10830.344 +25800,2025-03-10T06:33:21.777240-07:00,1677.0,10.826331,10826.331 +25801,2025-03-10T06:33:32.609569-07:00,1658.0,10.832329,10832.329 +25802,2025-03-10T06:33:43.431569-07:00,1711.0,10.822,10822.0 +25803,2025-03-10T06:33:54.266910-07:00,1629.0,10.835341,10835.341 +25804,2025-03-10T06:34:05.095569-07:00,1681.0,10.828659,10828.659 +25805,2025-03-10T06:34:15.916569-07:00,1619.0,10.821,10821.0 +25806,2025-03-10T06:34:26.744624-07:00,1694.0,10.828055,10828.055 +25807,2025-03-10T06:34:37.583618-07:00,1718.0,10.838994,10838.994 +25808,2025-03-10T06:34:48.412660-07:00,1712.0,10.829042,10829.042 +25809,2025-03-10T06:34:59.246351-07:00,1686.0,10.833691,10833.691 +25810,2025-03-10T06:35:10.075572-07:00,1714.0,10.829221,10829.221 +25811,2025-03-10T06:35:20.898612-07:00,1680.0,10.82304,10823.04 +25812,2025-03-10T06:35:31.717906-07:00,1715.0,10.819294,10819.294 +25813,2025-03-10T06:35:42.545776-07:00,1697.0,10.82787,10827.87 +25814,2025-03-10T06:35:53.370877-07:00,1665.0,10.825101,10825.101 +25815,2025-03-10T06:36:04.201546-07:00,1669.0,10.830669,10830.669 +25816,2025-03-10T06:36:15.034981-07:00,1710.0,10.833435,10833.435 +25817,2025-03-10T06:36:25.859574-07:00,1651.0,10.824593,10824.593 +25818,2025-03-10T06:36:36.693576-07:00,1697.0,10.834002,10834.002 +25819,2025-03-10T06:36:47.522846-07:00,1664.0,10.82927,10829.27 +25820,2025-03-10T06:36:58.347409-07:00,1712.0,10.824563,10824.563 +25821,2025-03-10T06:37:09.172286-07:00,1712.0,10.824877,10824.877 +25822,2025-03-10T06:37:19.998060-07:00,1697.0,10.825774,10825.774 +25823,2025-03-10T06:37:30.811890-07:00,1713.0,10.81383,10813.83 +25824,2025-03-10T06:37:41.646620-07:00,1631.0,10.83473,10834.73 +25825,2025-03-10T06:37:52.462984-07:00,1659.0,10.816364,10816.364 +25826,2025-03-10T06:38:03.293571-07:00,1641.0,10.830587,10830.587 +25827,2025-03-10T06:38:14.113959-07:00,1663.0,10.820388,10820.388 +25828,2025-03-10T06:38:24.947871-07:00,1666.0,10.833912,10833.912 +25829,2025-03-10T06:38:35.773892-07:00,1682.0,10.826021,10826.021 +25830,2025-03-10T06:38:46.604575-07:00,1662.0,10.830683,10830.683 +25831,2025-03-10T06:38:57.440895-07:00,1648.0,10.83632,10836.32 +25832,2025-03-10T06:39:08.258567-07:00,1676.0,10.817672,10817.672 +25833,2025-03-10T06:39:19.082952-07:00,1711.0,10.824385,10824.385 +25834,2025-03-10T06:39:29.917736-07:00,1680.0,10.834784,10834.784 +25835,2025-03-10T06:39:40.735708-07:00,1715.0,10.817972,10817.972 +25836,2025-03-10T06:39:51.563962-07:00,1631.0,10.828254,10828.254 +25837,2025-03-10T06:40:02.388659-07:00,1707.0,10.824697,10824.697 +25838,2025-03-10T06:40:13.216912-07:00,1691.0,10.828253,10828.253 +25839,2025-03-10T06:40:24.055870-07:00,1675.0,10.838958,10838.958 +25840,2025-03-10T06:40:34.877630-07:00,1699.0,10.82176,10821.76 +25841,2025-03-10T06:40:45.707054-07:00,1712.0,10.829424,10829.424 +25842,2025-03-10T06:40:56.526820-07:00,1627.0,10.819766,10819.766 +25843,2025-03-10T06:41:07.352801-07:00,1713.0,10.825981,10825.981 +25844,2025-03-10T06:41:18.185926-07:00,1647.0,10.833125,10833.125 +25845,2025-03-10T06:41:29.005581-07:00,1680.0,10.819655,10819.655 +25846,2025-03-10T06:41:39.844376-07:00,1713.0,10.838795,10838.795 +25847,2025-03-10T06:41:50.675574-07:00,1680.0,10.831198,10831.198 +25848,2025-03-10T06:42:01.502914-07:00,1675.0,10.82734,10827.34 +25849,2025-03-10T06:42:12.334017-07:00,1653.0,10.831103,10831.103 +25850,2025-03-10T06:42:23.152147-07:00,1671.0,10.81813,10818.13 +25851,2025-03-10T06:42:33.979548-07:00,1683.0,10.827401,10827.401 +25852,2025-03-10T06:42:44.799555-07:00,1714.0,10.820007,10820.007 +25853,2025-03-10T06:42:55.625884-07:00,1713.0,10.826329,10826.329 +25854,2025-03-10T06:43:06.456567-07:00,1667.0,10.830683,10830.683 +25855,2025-03-10T06:43:17.285726-07:00,1630.0,10.829159,10829.159 +25856,2025-03-10T06:43:28.104645-07:00,1638.0,10.818919,10818.919 +25857,2025-03-10T06:43:38.937095-07:00,1652.0,10.83245,10832.45 +25858,2025-03-10T06:43:49.766127-07:00,1703.0,10.829032,10829.032 +25859,2025-03-10T06:44:00.588156-07:00,1680.0,10.822029,10822.029 +25860,2025-03-10T06:44:11.413698-07:00,1695.0,10.825542,10825.542 +25861,2025-03-10T06:44:22.233672-07:00,1627.0,10.819974,10819.974 +25862,2025-03-10T06:44:33.057875-07:00,1649.0,10.824203,10824.203 +25863,2025-03-10T06:44:43.881707-07:00,1693.0,10.823832,10823.832 +25864,2025-03-10T06:44:54.707450-07:00,1712.0,10.825743,10825.743 +25865,2025-03-10T06:45:05.536622-07:00,1691.0,10.829172,10829.172 +25866,2025-03-10T06:45:16.356643-07:00,1617.0,10.820021,10820.021 +25867,2025-03-10T06:45:27.173912-07:00,1649.0,10.817269,10817.269 +25868,2025-03-10T06:45:37.999572-07:00,1658.0,10.82566,10825.66 +25869,2025-03-10T06:45:48.825155-07:00,1668.0,10.825583,10825.583 +25870,2025-03-10T06:45:59.652782-07:00,1616.0,10.827627,10827.627 +25871,2025-03-10T06:46:10.481404-07:00,1685.0,10.828622,10828.622 +25872,2025-03-10T06:46:21.297628-07:00,1715.0,10.816224,10816.224 +25873,2025-03-10T06:46:32.123799-07:00,1709.0,10.826171,10826.171 +25874,2025-03-10T06:46:42.944871-07:00,1707.0,10.821072,10821.072 +25875,2025-03-10T06:46:53.764567-07:00,1683.0,10.819696,10819.696 +25876,2025-03-10T06:47:04.594691-07:00,1716.0,10.830124,10830.124 +25877,2025-03-10T06:47:15.422596-07:00,1714.0,10.827905,10827.905 +25878,2025-03-10T06:47:26.253573-07:00,1716.0,10.830977,10830.977 +25879,2025-03-10T06:47:37.077703-07:00,1637.0,10.82413,10824.13 +25880,2025-03-10T06:47:47.900053-07:00,1709.0,10.82235,10822.35 +25881,2025-03-10T06:47:58.729088-07:00,1689.0,10.829035,10829.035 +25882,2025-03-10T06:48:09.552569-07:00,1715.0,10.823481,10823.481 +25883,2025-03-10T06:48:20.378038-07:00,1717.0,10.825469,10825.469 +25884,2025-03-10T06:48:31.204571-07:00,1655.0,10.826533,10826.533 +25885,2025-03-10T06:48:42.024549-07:00,1695.0,10.819978,10819.978 +25886,2025-03-10T06:48:52.855027-07:00,1669.0,10.830478,10830.478 +25887,2025-03-10T06:49:03.676875-07:00,1711.0,10.821848,10821.848 +25888,2025-03-10T06:49:14.510132-07:00,1715.0,10.833257,10833.257 +25889,2025-03-10T06:49:15.213722-07:00,1715.0,0.70359,703.59 +25890,2025-03-10T06:49:25.328624-07:00,1674.0,10.114902,10114.902 +25891,2025-03-10T06:49:36.165752-07:00,1662.0,10.837128,10837.128 +25892,2025-03-10T06:49:46.987567-07:00,1699.0,10.821815,10821.815 +25893,2025-03-10T06:49:57.817583-07:00,1675.0,10.830016,10830.016 +25894,2025-03-10T06:50:08.638573-07:00,1677.0,10.82099,10820.99 +25895,2025-03-10T06:50:19.476073-07:00,1695.0,10.8375,10837.5 +25896,2025-03-10T06:50:30.296819-07:00,1661.0,10.820746,10820.746 +25897,2025-03-10T06:50:41.116823-07:00,1680.0,10.820004,10820.004 +25898,2025-03-10T06:50:51.947567-07:00,1695.0,10.830744,10830.744 +25899,2025-03-10T06:51:02.768795-07:00,1632.0,10.821228,10821.228 +25900,2025-03-10T06:51:13.598928-07:00,1683.0,10.830133,10830.133 +25901,2025-03-10T06:51:24.428624-07:00,1709.0,10.829696,10829.696 +25902,2025-03-10T06:51:35.246900-07:00,1673.0,10.818276,10818.276 +25903,2025-03-10T06:51:46.078906-07:00,1699.0,10.832006,10832.006 +25904,2025-03-10T06:51:56.907828-07:00,1689.0,10.828922,10828.922 +25905,2025-03-10T06:52:07.731763-07:00,1711.0,10.823935,10823.935 +25906,2025-03-10T06:52:18.567890-07:00,1715.0,10.836127,10836.127 +25907,2025-03-10T06:52:29.398596-07:00,1636.0,10.830706,10830.706 +25908,2025-03-10T06:52:40.228079-07:00,1680.0,10.829483,10829.483 +25909,2025-03-10T06:52:51.050790-07:00,1711.0,10.822711,10822.711 +25910,2025-03-10T06:53:01.883890-07:00,1623.0,10.8331,10833.1 +25911,2025-03-10T06:53:12.715885-07:00,1684.0,10.831995,10831.995 +25912,2025-03-10T06:53:23.538843-07:00,1657.0,10.822958,10822.958 +25913,2025-03-10T06:53:34.373550-07:00,1666.0,10.834707,10834.707 +25914,2025-03-10T06:53:45.198908-07:00,1708.0,10.825358,10825.358 +25915,2025-03-10T06:53:56.031717-07:00,1707.0,10.832809,10832.809 +25916,2025-03-10T06:54:06.851836-07:00,1683.0,10.820119,10820.119 +25917,2025-03-10T06:54:17.688563-07:00,1641.0,10.836727,10836.727 +25918,2025-03-10T06:54:28.514887-07:00,1710.0,10.826324,10826.324 +25919,2025-03-10T06:54:39.339572-07:00,1631.0,10.824685,10824.685 +25920,2025-03-10T06:54:50.171538-07:00,1721.0,10.831966,10831.966 +25921,2025-03-10T06:55:01.003869-07:00,1631.0,10.832331,10832.331 +25922,2025-03-10T06:55:11.828931-07:00,1648.0,10.825062,10825.062 +25923,2025-03-10T06:55:22.661718-07:00,1656.0,10.832787,10832.787 +25924,2025-03-10T06:55:33.494965-07:00,1619.0,10.833247,10833.247 +25925,2025-03-10T06:55:44.322617-07:00,1670.0,10.827652,10827.652 +25926,2025-03-10T06:55:55.152707-07:00,1715.0,10.83009,10830.09 +25927,2025-03-10T06:56:05.977822-07:00,1695.0,10.825115,10825.115 +25928,2025-03-10T06:56:16.804234-07:00,1627.0,10.826412,10826.412 +25929,2025-03-10T06:56:27.633568-07:00,1677.0,10.829334,10829.334 +25930,2025-03-10T06:56:38.461873-07:00,1644.0,10.828305,10828.305 +25931,2025-03-10T06:56:49.282076-07:00,1661.0,10.820203,10820.203 +25932,2025-03-10T06:57:00.118860-07:00,1679.0,10.836784,10836.784 +25933,2025-03-10T06:57:10.945824-07:00,1675.0,10.826964,10826.964 +25934,2025-03-10T06:57:21.773142-07:00,1712.0,10.827318,10827.318 +25935,2025-03-10T06:57:32.598746-07:00,1707.0,10.825604,10825.604 +25936,2025-03-10T06:57:43.428573-07:00,1717.0,10.829827,10829.827 +25937,2025-03-10T06:57:54.264572-07:00,1626.0,10.835999,10835.999 +25938,2025-03-10T06:58:05.080599-07:00,1693.0,10.816027,10816.027 +25939,2025-03-10T06:58:15.911673-07:00,1665.0,10.831074,10831.074 +25940,2025-03-10T06:58:26.734560-07:00,1715.0,10.822887,10822.887 +25941,2025-03-10T06:58:37.558840-07:00,1717.0,10.82428,10824.28 +25942,2025-03-10T06:58:48.384557-07:00,1669.0,10.825717,10825.717 +25943,2025-03-10T06:58:59.212053-07:00,1680.0,10.827496,10827.496 +25944,2025-03-10T06:59:10.031573-07:00,1645.0,10.81952,10819.52 +25945,2025-03-10T06:59:20.861126-07:00,1712.0,10.829553,10829.553 +25946,2025-03-10T06:59:31.682627-07:00,1715.0,10.821501,10821.501 +25947,2025-03-10T06:59:42.508547-07:00,1716.0,10.82592,10825.92 +25948,2025-03-10T06:59:53.341435-07:00,1680.0,10.832888,10832.888 +25949,2025-03-10T07:00:04.176826-07:00,1716.0,10.835391,10835.391 +25950,2025-03-10T07:00:15.004827-07:00,1697.0,10.828001,10828.001 +25951,2025-03-10T07:00:25.829715-07:00,1711.0,10.824888,10824.888 +25952,2025-03-10T07:00:36.655575-07:00,1715.0,10.82586,10825.86 +25953,2025-03-10T07:00:47.481571-07:00,1630.0,10.825996,10825.996 +25954,2025-03-10T07:00:58.309208-07:00,1675.0,10.827637,10827.637 +25955,2025-03-10T07:01:09.127569-07:00,1715.0,10.818361,10818.361 +25956,2025-03-10T07:01:19.957912-07:00,1697.0,10.830343,10830.343 +25957,2025-03-10T07:01:30.787573-07:00,1712.0,10.829661,10829.661 +25958,2025-03-10T07:01:41.618142-07:00,1715.0,10.830569,10830.569 +25959,2025-03-10T07:01:52.447031-07:00,1626.0,10.828889,10828.889 +25960,2025-03-10T07:02:03.265057-07:00,1701.0,10.818026,10818.026 +25961,2025-03-10T07:02:14.091566-07:00,1710.0,10.826509,10826.509 +25962,2025-03-10T07:02:24.922240-07:00,1665.0,10.830674,10830.674 +25963,2025-03-10T07:02:35.754572-07:00,1693.0,10.832332,10832.332 +25964,2025-03-10T07:02:46.575567-07:00,1684.0,10.820995,10820.995 +25965,2025-03-10T07:02:57.398969-07:00,1715.0,10.823402,10823.402 +25966,2025-03-10T07:03:08.220567-07:00,1713.0,10.821598,10821.598 +25967,2025-03-10T07:03:19.048497-07:00,1639.0,10.82793,10827.93 +25968,2025-03-10T07:03:29.865063-07:00,1714.0,10.816566,10816.566 +25969,2025-03-10T07:03:40.693706-07:00,1706.0,10.828643,10828.643 +25970,2025-03-10T07:03:51.509070-07:00,1680.0,10.815364,10815.364 +25971,2025-03-10T07:04:02.335078-07:00,1681.0,10.826008,10826.008 +25972,2025-03-10T07:04:13.164914-07:00,1715.0,10.829836,10829.836 +25973,2025-03-10T07:04:23.985574-07:00,1649.0,10.82066,10820.66 +25974,2025-03-10T07:04:34.804609-07:00,1712.0,10.819035,10819.035 +25975,2025-03-10T07:04:45.632396-07:00,1689.0,10.827787,10827.787 +25976,2025-03-10T07:04:56.454572-07:00,1621.0,10.822176,10822.176 +25977,2025-03-10T07:05:07.289855-07:00,1713.0,10.835283,10835.283 +25978,2025-03-10T07:05:18.109628-07:00,1694.0,10.819773,10819.773 +25979,2025-03-10T07:05:28.929636-07:00,1670.0,10.820008,10820.008 +25980,2025-03-10T07:05:39.754855-07:00,1690.0,10.825219,10825.219 +25981,2025-03-10T07:05:50.614841-07:00,1714.0,10.859986,10859.986 +25982,2025-03-10T07:06:01.439750-07:00,1694.0,10.824909,10824.909 +25983,2025-03-10T07:06:12.271849-07:00,1627.0,10.832099,10832.099 +25984,2025-03-10T07:06:23.086832-07:00,1690.0,10.814983,10814.983 +25985,2025-03-10T07:06:33.906223-07:00,1709.0,10.819391,10819.391 +25986,2025-03-10T07:06:44.737891-07:00,1712.0,10.831668,10831.668 +25987,2025-03-10T07:06:55.559157-07:00,1715.0,10.821266,10821.266 +25988,2025-03-10T07:07:06.381916-07:00,1663.0,10.822759,10822.759 +25989,2025-03-10T07:07:17.196836-07:00,1699.0,10.81492,10814.92 +25990,2025-03-10T07:07:28.024185-07:00,1706.0,10.827349,10827.349 +25991,2025-03-10T07:07:38.855091-07:00,1703.0,10.830906,10830.906 +25992,2025-03-10T07:07:49.676950-07:00,1657.0,10.821859,10821.859 +25993,2025-03-10T07:08:00.498836-07:00,1678.0,10.821886,10821.886 +25994,2025-03-10T07:08:11.317834-07:00,1679.0,10.818998,10818.998 +25995,2025-03-10T07:08:22.154998-07:00,1670.0,10.837164,10837.164 +25996,2025-03-10T07:08:32.973001-07:00,1716.0,10.818003,10818.003 +25997,2025-03-10T07:08:43.797163-07:00,1710.0,10.824162,10824.162 +25998,2025-03-10T07:08:54.616833-07:00,1715.0,10.81967,10819.67 +25999,2025-03-10T07:09:05.442426-07:00,1712.0,10.825593,10825.593 +26000,2025-03-10T07:09:16.260159-07:00,1669.0,10.817733,10817.733 +26001,2025-03-10T07:09:27.082839-07:00,1711.0,10.82268,10822.68 +26002,2025-03-10T07:09:37.909519-07:00,1715.0,10.82668,10826.68 +26003,2025-03-10T07:09:48.739881-07:00,1671.0,10.830362,10830.362 +26004,2025-03-10T07:09:59.566271-07:00,1652.0,10.82639,10826.39 +26005,2025-03-10T07:10:10.386406-07:00,1667.0,10.820135,10820.135 +26006,2025-03-10T07:10:21.211827-07:00,1713.0,10.825421,10825.421 +26007,2025-03-10T07:10:32.039378-07:00,1715.0,10.827551,10827.551 +26008,2025-03-10T07:10:42.872839-07:00,1707.0,10.833461,10833.461 +26009,2025-03-10T07:10:53.702224-07:00,1708.0,10.829385,10829.385 +26010,2025-03-10T07:11:04.531881-07:00,1710.0,10.829657,10829.657 +26011,2025-03-10T07:11:15.353144-07:00,1667.0,10.821263,10821.263 +26012,2025-03-10T07:11:26.176109-07:00,1677.0,10.822965,10822.965 +26013,2025-03-10T07:11:37.000055-07:00,1628.0,10.823946,10823.946 +26014,2025-03-10T07:11:47.814397-07:00,1632.0,10.814342,10814.342 +26015,2025-03-10T07:11:58.636152-07:00,1710.0,10.821755,10821.755 +26016,2025-03-10T07:12:09.462021-07:00,1713.0,10.825869,10825.869 +26017,2025-03-10T07:12:20.289082-07:00,1661.0,10.827061,10827.061 +26018,2025-03-10T07:12:31.105834-07:00,1689.0,10.816752,10816.752 +26019,2025-03-10T07:12:41.926700-07:00,1665.0,10.820866,10820.866 +26020,2025-03-10T07:12:52.748844-07:00,1710.0,10.822144,10822.144 +26021,2025-03-10T07:13:03.574833-07:00,1675.0,10.825989,10825.989 +26022,2025-03-10T07:13:14.389447-07:00,1643.0,10.814614,10814.614 +26023,2025-03-10T07:13:25.217883-07:00,1699.0,10.828436,10828.436 +26024,2025-03-10T07:13:36.040887-07:00,1717.0,10.823004,10823.004 +26025,2025-03-10T07:13:46.862181-07:00,1715.0,10.821294,10821.294 +26026,2025-03-10T07:13:57.681843-07:00,1633.0,10.819662,10819.662 +26027,2025-03-10T07:14:08.496842-07:00,1705.0,10.814999,10814.999 +26028,2025-03-10T07:14:19.314122-07:00,1679.0,10.81728,10817.28 +26029,2025-03-10T07:14:30.138822-07:00,1620.0,10.8247,10824.7 +26030,2025-03-10T07:14:40.964286-07:00,1635.0,10.825464,10825.464 +26031,2025-03-10T07:14:51.789342-07:00,1722.0,10.825056,10825.056 +26032,2025-03-10T07:15:02.610214-07:00,1653.0,10.820872,10820.872 +26033,2025-03-10T07:15:13.436171-07:00,1719.0,10.825957,10825.957 +26034,2025-03-10T07:15:24.250906-07:00,1682.0,10.814735,10814.735 +26035,2025-03-10T07:15:35.070842-07:00,1652.0,10.819936,10819.936 +26036,2025-03-10T07:15:45.893171-07:00,1664.0,10.822329,10822.329 +26037,2025-03-10T07:15:56.718674-07:00,1631.0,10.825503,10825.503 +26038,2025-03-10T07:16:07.548464-07:00,1635.0,10.82979,10829.79 +26039,2025-03-10T07:16:18.368113-07:00,1651.0,10.819649,10819.649 +26040,2025-03-10T07:16:29.183843-07:00,1713.0,10.81573,10815.73 +26041,2025-03-10T07:16:40.001044-07:00,1658.0,10.817201,10817.201 +26042,2025-03-10T07:16:50.825893-07:00,1699.0,10.824849,10824.849 +26043,2025-03-10T07:17:01.654941-07:00,1676.0,10.829048,10829.048 +26044,2025-03-10T07:17:12.472209-07:00,1698.0,10.817268,10817.268 +26045,2025-03-10T07:17:23.291844-07:00,1670.0,10.819635,10819.635 +26046,2025-03-10T07:17:34.126547-07:00,1697.0,10.834703,10834.703 +26047,2025-03-10T07:17:44.949102-07:00,1718.0,10.822555,10822.555 +26048,2025-03-10T07:17:55.769836-07:00,1695.0,10.820734,10820.734 +26049,2025-03-10T07:18:06.591440-07:00,1722.0,10.821604,10821.604 +26050,2025-03-10T07:18:17.411839-07:00,1691.0,10.820399,10820.399 +26051,2025-03-10T07:18:28.231841-07:00,1712.0,10.820002,10820.002 +26052,2025-03-10T07:18:39.053171-07:00,1670.0,10.82133,10821.33 +26053,2025-03-10T07:18:49.880967-07:00,1721.0,10.827796,10827.796 +26054,2025-03-10T07:19:00.702043-07:00,1650.0,10.821076,10821.076 +26055,2025-03-10T07:19:11.527853-07:00,1638.0,10.82581,10825.81 +26056,2025-03-10T07:19:22.344843-07:00,1682.0,10.81699,10816.99 +26057,2025-03-10T07:19:33.169804-07:00,1724.0,10.824961,10824.961 +26058,2025-03-10T07:19:43.995838-07:00,1654.0,10.826034,10826.034 +26059,2025-03-10T07:19:54.814058-07:00,1712.0,10.81822,10818.22 +26060,2025-03-10T07:20:05.643242-07:00,1663.0,10.829184,10829.184 +26061,2025-03-10T07:20:16.459834-07:00,1633.0,10.816592,10816.592 +26062,2025-03-10T07:20:27.281936-07:00,1679.0,10.822102,10822.102 +26063,2025-03-10T07:20:38.101260-07:00,1713.0,10.819324,10819.324 +26064,2025-03-10T07:20:48.923893-07:00,1689.0,10.822633,10822.633 +26065,2025-03-10T07:20:59.751207-07:00,1719.0,10.827314,10827.314 +26066,2025-03-10T07:21:10.575847-07:00,1690.0,10.82464,10824.64 +26067,2025-03-10T07:21:21.401839-07:00,1713.0,10.825992,10825.992 +26068,2025-03-10T07:21:32.224066-07:00,1695.0,10.822227,10822.227 +26069,2025-03-10T07:21:43.053087-07:00,1643.0,10.829021,10829.021 +26070,2025-03-10T07:21:53.868208-07:00,1712.0,10.815121,10815.121 +26071,2025-03-10T07:22:04.696096-07:00,1721.0,10.827888,10827.888 +26072,2025-03-10T07:22:15.511333-07:00,1717.0,10.815237,10815.237 +26073,2025-03-10T07:22:26.340212-07:00,1680.0,10.828879,10828.879 +26074,2025-03-10T07:22:37.157964-07:00,1707.0,10.817752,10817.752 +26075,2025-03-10T07:22:47.975898-07:00,1719.0,10.817934,10817.934 +26076,2025-03-10T07:22:58.796150-07:00,1631.0,10.820252,10820.252 +26077,2025-03-10T07:23:09.613899-07:00,1724.0,10.817749,10817.749 +26078,2025-03-10T07:23:20.430844-07:00,1663.0,10.816945,10816.945 +26079,2025-03-10T07:23:31.251440-07:00,1641.0,10.820596,10820.596 +26080,2025-03-10T07:23:42.079827-07:00,1697.0,10.828387,10828.387 +26081,2025-03-10T07:23:52.903885-07:00,1721.0,10.824058,10824.058 +26082,2025-03-10T07:24:03.735889-07:00,1662.0,10.832004,10832.004 +26083,2025-03-10T07:24:14.552030-07:00,1725.0,10.816141,10816.141 +26084,2025-03-10T07:24:25.370975-07:00,1680.0,10.818945,10818.945 +26085,2025-03-10T07:24:36.195970-07:00,1642.0,10.824995,10824.995 +26086,2025-03-10T07:24:47.015891-07:00,1657.0,10.819921,10819.921 +26087,2025-03-10T07:24:57.848445-07:00,1660.0,10.832554,10832.554 +26088,2025-03-10T07:25:08.662069-07:00,1725.0,10.813624,10813.624 +26089,2025-03-10T07:25:19.488522-07:00,1675.0,10.826453,10826.453 +26090,2025-03-10T07:25:30.308260-07:00,1635.0,10.819738,10819.738 +26091,2025-03-10T07:25:41.125088-07:00,1703.0,10.816828,10816.828 +26092,2025-03-10T07:25:51.959373-07:00,1705.0,10.834285,10834.285 +26093,2025-03-10T07:26:02.779826-07:00,1717.0,10.820453,10820.453 +26094,2025-03-10T07:26:13.602189-07:00,1639.0,10.822363,10822.363 +26095,2025-03-10T07:26:24.428024-07:00,1728.0,10.825835,10825.835 +26096,2025-03-10T07:26:35.250835-07:00,1712.0,10.822811,10822.811 +26097,2025-03-10T07:26:46.073104-07:00,1726.0,10.822269,10822.269 +26098,2025-03-10T07:26:56.906231-07:00,1667.0,10.833127,10833.127 +26099,2025-03-10T07:27:07.733381-07:00,1694.0,10.82715,10827.15 +26100,2025-03-10T07:27:18.546844-07:00,1705.0,10.813463,10813.463 +26101,2025-03-10T07:27:29.372065-07:00,1728.0,10.825221,10825.221 +26102,2025-03-10T07:27:40.194573-07:00,1651.0,10.822508,10822.508 +26103,2025-03-10T07:27:51.007393-07:00,1690.0,10.81282,10812.82 +26104,2025-03-10T07:28:01.828206-07:00,1703.0,10.820813,10820.813 +26105,2025-03-10T07:28:12.660290-07:00,1717.0,10.832084,10832.084 +26106,2025-03-10T07:28:23.479966-07:00,1727.0,10.819676,10819.676 +26107,2025-03-10T07:28:34.300862-07:00,1701.0,10.820896,10820.896 +26108,2025-03-10T07:28:45.121195-07:00,1697.0,10.820333,10820.333 +26109,2025-03-10T07:28:55.941836-07:00,1711.0,10.820641,10820.641 +26110,2025-03-10T07:29:06.769171-07:00,1700.0,10.827335,10827.335 +26111,2025-03-10T07:29:17.594150-07:00,1651.0,10.824979,10824.979 +26112,2025-03-10T07:29:28.410030-07:00,1728.0,10.81588,10815.88 +26113,2025-03-10T07:29:39.244110-07:00,1709.0,10.83408,10834.08 +26114,2025-03-10T07:29:50.067947-07:00,1666.0,10.823837,10823.837 +26115,2025-03-10T07:30:00.880835-07:00,1732.0,10.812888,10812.888 +26116,2025-03-10T07:30:11.704895-07:00,1655.0,10.82406,10824.06 +26117,2025-03-10T07:30:22.516847-07:00,1679.0,10.811952,10811.952 +26118,2025-03-10T07:30:33.338093-07:00,1671.0,10.821246,10821.246 +26119,2025-03-10T07:30:44.156165-07:00,1732.0,10.818072,10818.072 +26120,2025-03-10T07:30:54.987033-07:00,1735.0,10.830868,10830.868 +26121,2025-03-10T07:31:05.796811-07:00,1669.0,10.809778,10809.778 +26122,2025-03-10T07:31:16.624841-07:00,1724.0,10.82803,10828.03 +26123,2025-03-10T07:31:27.443100-07:00,1681.0,10.818259,10818.259 +26124,2025-03-10T07:31:38.256833-07:00,1728.0,10.813733,10813.733 +26125,2025-03-10T07:31:49.083970-07:00,1699.0,10.827137,10827.137 +26126,2025-03-10T07:31:59.910486-07:00,1737.0,10.826516,10826.516 +26127,2025-03-10T07:32:10.740113-07:00,1686.0,10.829627,10829.627 +26128,2025-03-10T07:32:21.572838-07:00,1738.0,10.832725,10832.725 +26129,2025-03-10T07:32:32.395262-07:00,1736.0,10.822424,10822.424 +26130,2025-03-10T07:32:43.215841-07:00,1692.0,10.820579,10820.579 +26131,2025-03-10T07:32:54.040839-07:00,1719.0,10.824998,10824.998 +26132,2025-03-10T07:33:04.865825-07:00,1741.0,10.824986,10824.986 +26133,2025-03-10T07:33:15.697185-07:00,1679.0,10.83136,10831.36 +26134,2025-03-10T07:33:26.522953-07:00,1687.0,10.825768,10825.768 +26135,2025-03-10T07:33:37.344834-07:00,1727.0,10.821881,10821.881 +26136,2025-03-10T07:33:48.170203-07:00,1741.0,10.825369,10825.369 +26137,2025-03-10T07:33:58.995895-07:00,1727.0,10.825692,10825.692 +26138,2025-03-10T07:34:09.816832-07:00,1700.0,10.820937,10820.937 +26139,2025-03-10T07:34:20.637836-07:00,1654.0,10.821004,10821.004 +26140,2025-03-10T07:34:31.456919-07:00,1744.0,10.819083,10819.083 +26141,2025-03-10T07:34:42.285594-07:00,1741.0,10.828675,10828.675 +26142,2025-03-10T07:34:53.098201-07:00,1702.0,10.812607,10812.607 +26143,2025-03-10T07:35:03.923827-07:00,1691.0,10.825626,10825.626 +26144,2025-03-10T07:35:14.757327-07:00,1741.0,10.8335,10833.5 +26145,2025-03-10T07:35:25.579837-07:00,1649.0,10.82251,10822.51 +26146,2025-03-10T07:35:36.397065-07:00,1744.0,10.817228,10817.228 +26147,2025-03-10T07:35:47.230837-07:00,1693.0,10.833772,10833.772 +26148,2025-03-10T07:35:58.054067-07:00,1658.0,10.82323,10823.23 +26149,2025-03-10T07:36:08.878092-07:00,1728.0,10.824025,10824.025 +26150,2025-03-10T07:36:19.701819-07:00,1719.0,10.823727,10823.727 +26151,2025-03-10T07:36:30.539701-07:00,1685.0,10.837882,10837.882 +26152,2025-03-10T07:36:41.362842-07:00,1671.0,10.823141,10823.141 +26153,2025-03-10T07:36:52.185209-07:00,1743.0,10.822367,10822.367 +26154,2025-03-10T07:37:03.014077-07:00,1744.0,10.828868,10828.868 +26155,2025-03-10T07:37:13.842162-07:00,1687.0,10.828085,10828.085 +26156,2025-03-10T07:37:24.668839-07:00,1695.0,10.826677,10826.677 +26157,2025-03-10T07:37:35.490971-07:00,1692.0,10.822132,10822.132 +26158,2025-03-10T07:37:46.319841-07:00,1726.0,10.82887,10828.87 +26159,2025-03-10T07:37:57.146909-07:00,1675.0,10.827068,10827.068 +26160,2025-03-10T07:38:07.967377-07:00,1749.0,10.820468,10820.468 +26161,2025-03-10T07:38:18.789148-07:00,1703.0,10.821771,10821.771 +26162,2025-03-10T07:38:29.618789-07:00,1664.0,10.829641,10829.641 +26163,2025-03-10T07:38:40.444888-07:00,1661.0,10.826099,10826.099 +26164,2025-03-10T07:38:51.271941-07:00,1747.0,10.827053,10827.053 +26165,2025-03-10T07:39:02.096839-07:00,1739.0,10.824898,10824.898 +26166,2025-03-10T07:39:12.920832-07:00,1650.0,10.823993,10823.993 +26167,2025-03-10T07:39:23.753844-07:00,1738.0,10.833012,10833.012 +26168,2025-03-10T07:39:34.576821-07:00,1749.0,10.822977,10822.977 +26169,2025-03-10T07:39:45.413218-07:00,1750.0,10.836397,10836.397 +26170,2025-03-10T07:39:56.231844-07:00,1699.0,10.818626,10818.626 +26171,2025-03-10T07:40:07.064838-07:00,1751.0,10.832994,10832.994 +26172,2025-03-10T07:40:17.895881-07:00,1753.0,10.831043,10831.043 +26173,2025-03-10T07:40:28.721903-07:00,1749.0,10.826022,10826.022 +26174,2025-03-10T07:40:39.547225-07:00,1745.0,10.825322,10825.322 +26175,2025-03-10T07:40:50.374839-07:00,1661.0,10.827614,10827.614 +26176,2025-03-10T07:41:01.200092-07:00,1711.0,10.825253,10825.253 +26177,2025-03-10T07:41:12.033728-07:00,1659.0,10.833636,10833.636 +26178,2025-03-10T07:41:22.860830-07:00,1694.0,10.827102,10827.102 +26179,2025-03-10T07:41:33.683213-07:00,1661.0,10.822383,10822.383 +26180,2025-03-10T07:41:44.516128-07:00,1751.0,10.832915,10832.915 +26181,2025-03-10T07:41:55.343300-07:00,1712.0,10.827172,10827.172 +26182,2025-03-10T07:42:06.167298-07:00,1744.0,10.823998,10823.998 +26183,2025-03-10T07:42:16.995095-07:00,1757.0,10.827797,10827.797 +26184,2025-03-10T07:42:27.829834-07:00,1743.0,10.834739,10834.739 +26185,2025-03-10T07:42:38.663586-07:00,1712.0,10.833752,10833.752 +26186,2025-03-10T07:42:49.481090-07:00,1760.0,10.817504,10817.504 +26187,2025-03-10T07:43:00.315372-07:00,1741.0,10.834282,10834.282 +26188,2025-03-10T07:43:11.147158-07:00,1680.0,10.831786,10831.786 +26189,2025-03-10T07:43:21.972784-07:00,1675.0,10.825626,10825.626 +26190,2025-03-10T07:43:32.795838-07:00,1741.0,10.823054,10823.054 +26191,2025-03-10T07:43:43.613133-07:00,1749.0,10.817295,10817.295 +26192,2025-03-10T07:43:54.439510-07:00,1712.0,10.826377,10826.377 +26193,2025-03-10T07:44:05.257981-07:00,1762.0,10.818471,10818.471 +26194,2025-03-10T07:44:16.087643-07:00,1722.0,10.829662,10829.662 +26195,2025-03-10T07:44:26.913090-07:00,1713.0,10.825447,10825.447 +26196,2025-03-10T07:44:37.744389-07:00,1674.0,10.831299,10831.299 +26197,2025-03-10T07:44:48.574822-07:00,1680.0,10.830433,10830.433 +26198,2025-03-10T07:44:59.402214-07:00,1730.0,10.827392,10827.392 +26199,2025-03-10T07:45:10.230960-07:00,1743.0,10.828746,10828.746 +26200,2025-03-10T07:45:21.058908-07:00,1761.0,10.827948,10827.948 +26201,2025-03-10T07:45:31.888080-07:00,1758.0,10.829172,10829.172 +26202,2025-03-10T07:45:42.711875-07:00,1718.0,10.823795,10823.795 +26203,2025-03-10T07:45:53.536894-07:00,1743.0,10.825019,10825.019 +26204,2025-03-10T07:46:04.357078-07:00,1727.0,10.820184,10820.184 +26205,2025-03-10T07:46:15.179208-07:00,1708.0,10.82213,10822.13 +26206,2025-03-10T07:46:26.004842-07:00,1773.0,10.825634,10825.634 +26207,2025-03-10T07:46:36.822839-07:00,1774.0,10.817997,10817.997 +26208,2025-03-10T07:46:47.660984-07:00,1727.0,10.838145,10838.145 +26209,2025-03-10T07:46:58.494630-07:00,1754.0,10.833646,10833.646 +26210,2025-03-10T07:47:09.318547-07:00,1773.0,10.823917,10823.917 +26211,2025-03-10T07:47:20.151271-07:00,1728.0,10.832724,10832.724 +26212,2025-03-10T07:47:30.970968-07:00,1717.0,10.819697,10819.697 +26213,2025-03-10T07:47:41.790837-07:00,1765.0,10.819869,10819.869 +26214,2025-03-10T07:47:52.624185-07:00,1707.0,10.833348,10833.348 +26215,2025-03-10T07:48:03.455080-07:00,1726.0,10.830895,10830.895 +26216,2025-03-10T07:48:14.286844-07:00,1719.0,10.831764,10831.764 +26217,2025-03-10T07:48:25.113832-07:00,1696.0,10.826988,10826.988 +26218,2025-03-10T07:48:35.939637-07:00,1778.0,10.825805,10825.805 +26219,2025-03-10T07:48:46.782111-07:00,1739.0,10.842474,10842.474 +26220,2025-03-10T07:48:57.607838-07:00,1730.0,10.825727,10825.727 +26221,2025-03-10T07:49:08.432304-07:00,1730.0,10.824466,10824.466 +26222,2025-03-10T07:49:19.263171-07:00,1776.0,10.830867,10830.867 +26223,2025-03-10T07:49:30.085042-07:00,1754.0,10.821871,10821.871 +26224,2025-03-10T07:49:40.922836-07:00,1777.0,10.837794,10837.794 +26225,2025-03-10T07:49:51.755019-07:00,1776.0,10.832183,10832.183 +26226,2025-03-10T07:50:02.576964-07:00,1692.0,10.821945,10821.945 +26227,2025-03-10T07:50:13.411739-07:00,1717.0,10.834775,10834.775 +26228,2025-03-10T07:50:24.244336-07:00,1781.0,10.832597,10832.597 +26229,2025-03-10T07:50:35.067365-07:00,1745.0,10.823029,10823.029 +26230,2025-03-10T07:50:45.897976-07:00,1699.0,10.830611,10830.611 +26231,2025-03-10T07:50:56.728514-07:00,1729.0,10.830538,10830.538 +26232,2025-03-10T07:51:07.560834-07:00,1776.0,10.83232,10832.32 +26233,2025-03-10T07:51:18.390171-07:00,1754.0,10.829337,10829.337 +26234,2025-03-10T07:51:29.224245-07:00,1776.0,10.834074,10834.074 +26235,2025-03-10T07:51:40.049918-07:00,1699.0,10.825673,10825.673 +26236,2025-03-10T07:51:50.874036-07:00,1738.0,10.824118,10824.118 +26237,2025-03-10T07:52:01.708126-07:00,1680.0,10.83409,10834.09 +26238,2025-03-10T07:52:12.540220-07:00,1707.0,10.832094,10832.094 +26239,2025-03-10T07:52:23.371210-07:00,1724.0,10.83099,10830.99 +26240,2025-03-10T07:52:34.192822-07:00,1783.0,10.821612,10821.612 +26241,2025-03-10T07:52:45.024120-07:00,1774.0,10.831298,10831.298 +26242,2025-03-10T07:52:55.843848-07:00,1715.0,10.819728,10819.728 +26243,2025-03-10T07:53:06.668122-07:00,1765.0,10.824274,10824.274 +26244,2025-03-10T07:53:17.493838-07:00,1706.0,10.825716,10825.716 +26245,2025-03-10T07:53:28.326872-07:00,1787.0,10.833034,10833.034 +26246,2025-03-10T07:53:39.158854-07:00,1775.0,10.831982,10831.982 +26247,2025-03-10T07:53:49.984066-07:00,1783.0,10.825212,10825.212 +26248,2025-03-10T07:54:00.806019-07:00,1772.0,10.821953,10821.953 +26249,2025-03-10T07:54:11.635839-07:00,1745.0,10.82982,10829.82 +26250,2025-03-10T07:54:22.464513-07:00,1744.0,10.828674,10828.674 +26251,2025-03-10T07:54:33.292082-07:00,1703.0,10.827569,10827.569 +26252,2025-03-10T07:54:44.122351-07:00,1695.0,10.830269,10830.269 +26253,2025-03-10T07:54:54.941840-07:00,1717.0,10.819489,10819.489 +26254,2025-03-10T07:55:05.767349-07:00,1711.0,10.825509,10825.509 +26255,2025-03-10T07:55:16.597842-07:00,1787.0,10.830493,10830.493 +26256,2025-03-10T07:55:27.423215-07:00,1702.0,10.825373,10825.373 +26257,2025-03-10T07:55:38.254879-07:00,1750.0,10.831664,10831.664 +26258,2025-03-10T07:55:49.084077-07:00,1751.0,10.829198,10829.198 +26259,2025-03-10T07:55:59.911822-07:00,1765.0,10.827745,10827.745 +26260,2025-03-10T07:56:10.737432-07:00,1753.0,10.82561,10825.61 +26261,2025-03-10T07:56:21.560942-07:00,1783.0,10.82351,10823.51 +26262,2025-03-10T07:56:32.387830-07:00,1792.0,10.826888,10826.888 +26263,2025-03-10T07:56:43.218840-07:00,1791.0,10.83101,10831.01 +26264,2025-03-10T07:56:54.057072-07:00,1728.0,10.838232,10838.232 +26265,2025-03-10T07:57:04.881051-07:00,1765.0,10.823979,10823.979 +26266,2025-03-10T07:57:15.713203-07:00,1766.0,10.832152,10832.152 +26267,2025-03-10T07:57:26.540988-07:00,1755.0,10.827785,10827.785 +26268,2025-03-10T07:57:37.376163-07:00,1757.0,10.835175,10835.175 +26269,2025-03-10T07:57:48.209729-07:00,1781.0,10.833566,10833.566 +26270,2025-03-10T07:57:59.035802-07:00,1759.0,10.826073,10826.073 +26271,2025-03-10T07:58:09.870065-07:00,1795.0,10.834263,10834.263 +26272,2025-03-10T07:58:20.700103-07:00,1748.0,10.830038,10830.038 +26273,2025-03-10T07:58:31.528840-07:00,1744.0,10.828737,10828.737 +26274,2025-03-10T07:58:42.363198-07:00,1755.0,10.834358,10834.358 +26275,2025-03-10T07:58:53.198694-07:00,1754.0,10.835496,10835.496 +26276,2025-03-10T07:59:04.027817-07:00,1787.0,10.829123,10829.123 +26277,2025-03-10T07:59:14.863163-07:00,1797.0,10.835346,10835.346 +26278,2025-03-10T07:59:25.690162-07:00,1747.0,10.826999,10826.999 +26279,2025-03-10T07:59:36.521068-07:00,1791.0,10.830906,10830.906 +26280,2025-03-10T07:59:47.350831-07:00,1744.0,10.829763,10829.763 +26281,2025-03-10T07:59:58.188341-07:00,1746.0,10.83751,10837.51 +26282,2025-03-10T08:00:09.007950-07:00,1726.0,10.819609,10819.609 +26283,2025-03-10T08:00:19.836755-07:00,1721.0,10.828805,10828.805 +26284,2025-03-10T08:00:30.660880-07:00,1793.0,10.824125,10824.125 +26285,2025-03-10T08:00:41.500937-07:00,1794.0,10.840057,10840.057 +26286,2025-03-10T08:00:52.332835-07:00,1715.0,10.831898,10831.898 +26287,2025-03-10T08:01:03.157924-07:00,1743.0,10.825089,10825.089 +26288,2025-03-10T08:01:13.993838-07:00,1765.0,10.835914,10835.914 +26289,2025-03-10T08:01:24.819601-07:00,1790.0,10.825763,10825.763 +26290,2025-03-10T08:01:35.652012-07:00,1777.0,10.832411,10832.411 +26291,2025-03-10T08:01:46.484979-07:00,1775.0,10.832967,10832.967 +26292,2025-03-10T08:01:57.315550-07:00,1776.0,10.830571,10830.571 +26293,2025-03-10T08:02:08.141841-07:00,1803.0,10.826291,10826.291 +26294,2025-03-10T08:02:18.966863-07:00,1792.0,10.825022,10825.022 +26295,2025-03-10T08:02:29.799062-07:00,1802.0,10.832199,10832.199 +26296,2025-03-10T08:02:40.630336-07:00,1797.0,10.831274,10831.274 +26297,2025-03-10T08:02:51.457675-07:00,1774.0,10.827339,10827.339 +26298,2025-03-10T08:03:02.285893-07:00,1751.0,10.828218,10828.218 +26299,2025-03-10T08:03:13.123324-07:00,1779.0,10.837431,10837.431 +26300,2025-03-10T08:03:23.947356-07:00,1790.0,10.824032,10824.032 +26301,2025-03-10T08:03:34.781821-07:00,1788.0,10.834465,10834.465 +26302,2025-03-10T08:03:45.612126-07:00,1719.0,10.830305,10830.305 +26303,2025-03-10T08:03:56.446444-07:00,1797.0,10.834318,10834.318 +26304,2025-03-10T08:04:07.279020-07:00,1712.0,10.832576,10832.576 +26305,2025-03-10T08:04:18.102839-07:00,1804.0,10.823819,10823.819 +26306,2025-03-10T08:04:28.938831-07:00,1795.0,10.835992,10835.992 +26307,2025-03-10T08:04:39.769889-07:00,1717.0,10.831058,10831.058 +26308,2025-03-10T08:04:50.592204-07:00,1750.0,10.822315,10822.315 +26309,2025-03-10T08:05:01.422076-07:00,1719.0,10.829872,10829.872 +26310,2025-03-10T08:05:12.258881-07:00,1729.0,10.836805,10836.805 +26311,2025-03-10T08:05:23.087240-07:00,1803.0,10.828359,10828.359 +26312,2025-03-10T08:05:33.927843-07:00,1804.0,10.840603,10840.603 +26313,2025-03-10T08:05:44.749811-07:00,1743.0,10.821968,10821.968 +26314,2025-03-10T08:05:55.585188-07:00,1799.0,10.835377,10835.377 +26315,2025-03-10T08:06:06.415767-07:00,1755.0,10.830579,10830.579 +26316,2025-03-10T08:06:17.246425-07:00,1806.0,10.830658,10830.658 +26317,2025-03-10T08:06:28.069602-07:00,1744.0,10.823177,10823.177 +26318,2025-03-10T08:06:38.902424-07:00,1807.0,10.832822,10832.822 +26319,2025-03-10T08:06:49.740477-07:00,1808.0,10.838053,10838.053 +26320,2025-03-10T08:07:00.564215-07:00,1801.0,10.823738,10823.738 +26321,2025-03-10T08:07:11.402425-07:00,1765.0,10.83821,10838.21 +26322,2025-03-10T08:07:22.240568-07:00,1790.0,10.838143,10838.143 +26323,2025-03-10T08:07:33.071190-07:00,1754.0,10.830622,10830.622 +26324,2025-03-10T08:07:43.892454-07:00,1793.0,10.821264,10821.264 +26325,2025-03-10T08:07:54.729465-07:00,1767.0,10.837011,10837.011 +26326,2025-03-10T08:08:05.559504-07:00,1776.0,10.830039,10830.039 +26327,2025-03-10T08:08:16.386253-07:00,1787.0,10.826749,10826.749 +26328,2025-03-10T08:08:27.216439-07:00,1803.0,10.830186,10830.186 +26329,2025-03-10T08:08:38.054547-07:00,1750.0,10.838108,10838.108 +26330,2025-03-10T08:08:48.882188-07:00,1812.0,10.827641,10827.641 +26331,2025-03-10T08:08:59.710328-07:00,1728.0,10.82814,10828.14 +26332,2025-03-10T08:09:10.534462-07:00,1761.0,10.824134,10824.134 +26333,2025-03-10T08:09:21.364235-07:00,1770.0,10.829773,10829.773 +26334,2025-03-10T08:09:32.198183-07:00,1818.0,10.833948,10833.948 +26335,2025-03-10T08:09:43.030187-07:00,1763.0,10.832004,10832.004 +26336,2025-03-10T08:09:53.856186-07:00,1808.0,10.825999,10825.999 +26337,2025-03-10T08:10:04.692503-07:00,1803.0,10.836317,10836.317 +26338,2025-03-10T08:10:15.517186-07:00,1737.0,10.824683,10824.683 +26339,2025-03-10T08:10:26.349594-07:00,1753.0,10.832408,10832.408 +26340,2025-03-10T08:10:37.181780-07:00,1811.0,10.832186,10832.186 +26341,2025-03-10T08:10:48.011507-07:00,1821.0,10.829727,10829.727 +26342,2025-03-10T08:10:58.840256-07:00,1822.0,10.828749,10828.749 +26343,2025-03-10T08:11:09.660221-07:00,1771.0,10.819965,10819.965 +26344,2025-03-10T08:11:20.495180-07:00,1823.0,10.834959,10834.959 +26345,2025-03-10T08:11:31.330196-07:00,1813.0,10.835016,10835.016 +26346,2025-03-10T08:11:42.150271-07:00,1796.0,10.820075,10820.075 +26347,2025-03-10T08:11:52.982626-07:00,1817.0,10.832355,10832.355 +26348,2025-03-10T08:12:03.812180-07:00,1814.0,10.829554,10829.554 +26349,2025-03-10T08:12:14.642402-07:00,1821.0,10.830222,10830.222 +26350,2025-03-10T08:12:25.482724-07:00,1825.0,10.840322,10840.322 +26351,2025-03-10T08:12:36.312182-07:00,1822.0,10.829458,10829.458 +26352,2025-03-10T08:12:47.139923-07:00,1786.0,10.827741,10827.741 +26353,2025-03-10T08:12:57.973417-07:00,1758.0,10.833494,10833.494 +26354,2025-03-10T08:13:08.811501-07:00,1809.0,10.838084,10838.084 +26355,2025-03-10T08:13:19.641167-07:00,1743.0,10.829666,10829.666 +26356,2025-03-10T08:13:30.470577-07:00,1827.0,10.82941,10829.41 +26357,2025-03-10T08:13:41.305177-07:00,1820.0,10.8346,10834.6 +26358,2025-03-10T08:13:52.138190-07:00,1828.0,10.833013,10833.013 +26359,2025-03-10T08:14:02.968670-07:00,1817.0,10.83048,10830.48 +26360,2025-03-10T08:14:13.800170-07:00,1759.0,10.8315,10831.5 +26361,2025-03-10T08:14:24.631240-07:00,1824.0,10.83107,10831.07 +26362,2025-03-10T08:14:35.461247-07:00,1783.0,10.830007,10830.007 +26363,2025-03-10T08:14:46.293507-07:00,1776.0,10.83226,10832.26 +26364,2025-03-10T08:14:57.115430-07:00,1791.0,10.821923,10821.923 +26365,2025-03-10T08:15:07.946892-07:00,1814.0,10.831462,10831.462 +26366,2025-03-10T08:15:18.777184-07:00,1835.0,10.830292,10830.292 +26367,2025-03-10T08:15:29.602365-07:00,1749.0,10.825181,10825.181 +26368,2025-03-10T08:15:40.424655-07:00,1824.0,10.82229,10822.29 +26369,2025-03-10T08:15:51.261438-07:00,1795.0,10.836783,10836.783 +26370,2025-03-10T08:16:02.090197-07:00,1788.0,10.828759,10828.759 +26371,2025-03-10T08:16:12.924611-07:00,1831.0,10.834414,10834.414 +26372,2025-03-10T08:16:23.757402-07:00,1742.0,10.832791,10832.791 +26373,2025-03-10T08:16:34.577640-07:00,1840.0,10.820238,10820.238 +26374,2025-03-10T08:16:45.413187-07:00,1838.0,10.835547,10835.547 +26375,2025-03-10T08:16:56.240725-07:00,1759.0,10.827538,10827.538 +26376,2025-03-10T08:17:07.068442-07:00,1773.0,10.827717,10827.717 +26377,2025-03-10T08:17:17.898428-07:00,1789.0,10.829986,10829.986 +26378,2025-03-10T08:17:28.740184-07:00,1840.0,10.841756,10841.756 +26379,2025-03-10T08:17:39.567727-07:00,1777.0,10.827543,10827.543 +26380,2025-03-10T08:17:50.394170-07:00,1807.0,10.826443,10826.443 +26381,2025-03-10T08:18:01.227240-07:00,1800.0,10.83307,10833.07 +26382,2025-03-10T08:18:12.065021-07:00,1839.0,10.837781,10837.781 +26383,2025-03-10T08:18:22.895184-07:00,1822.0,10.830163,10830.163 +26384,2025-03-10T08:18:33.722523-07:00,1830.0,10.827339,10827.339 +26385,2025-03-10T08:18:44.557190-07:00,1802.0,10.834667,10834.667 +26386,2025-03-10T08:18:55.395723-07:00,1843.0,10.838533,10838.533 +26387,2025-03-10T08:19:06.216175-07:00,1843.0,10.820452,10820.452 +26388,2025-03-10T08:19:17.048240-07:00,1779.0,10.832065,10832.065 +26389,2025-03-10T08:19:27.874177-07:00,1843.0,10.825937,10825.937 +26390,2025-03-10T08:19:38.716166-07:00,1794.0,10.841989,10841.989 +26391,2025-03-10T08:19:49.538163-07:00,1785.0,10.821997,10821.997 +26392,2025-03-10T08:20:00.374175-07:00,1840.0,10.836012,10836.012 +26393,2025-03-10T08:20:11.206988-07:00,1812.0,10.832813,10832.813 +26394,2025-03-10T08:20:22.040180-07:00,1837.0,10.833192,10833.192 +26395,2025-03-10T08:20:32.858506-07:00,1852.0,10.818326,10818.326 +26396,2025-03-10T08:20:43.685192-07:00,1771.0,10.826686,10826.686 +26397,2025-03-10T08:20:54.517342-07:00,1791.0,10.83215,10832.15 +26398,2025-03-10T08:21:05.343156-07:00,1809.0,10.825814,10825.814 +26399,2025-03-10T08:21:16.169138-07:00,1807.0,10.825982,10825.982 +26400,2025-03-10T08:21:27.001188-07:00,1793.0,10.83205,10832.05 +26401,2025-03-10T08:21:37.819249-07:00,1822.0,10.818061,10818.061 +26402,2025-03-10T08:21:48.651721-07:00,1814.0,10.832472,10832.472 +26403,2025-03-10T08:21:59.478564-07:00,1803.0,10.826843,10826.843 +26404,2025-03-10T08:22:10.298014-07:00,1853.0,10.81945,10819.45 +26405,2025-03-10T08:22:21.128184-07:00,1854.0,10.83017,10830.17 +26406,2025-03-10T08:22:31.950187-07:00,1855.0,10.822003,10822.003 +26407,2025-03-10T08:22:42.775178-07:00,1849.0,10.824991,10824.991 +26408,2025-03-10T08:22:53.606344-07:00,1822.0,10.831166,10831.166 +26409,2025-03-10T08:23:04.427787-07:00,1840.0,10.821443,10821.443 +26410,2025-03-10T08:23:15.259175-07:00,1817.0,10.831388,10831.388 +26411,2025-03-10T08:23:26.089318-07:00,1839.0,10.830143,10830.143 +26412,2025-03-10T08:23:36.912214-07:00,1841.0,10.822896,10822.896 +26413,2025-03-10T08:23:47.739664-07:00,1847.0,10.82745,10827.45 +26414,2025-03-10T08:23:58.570413-07:00,1850.0,10.830749,10830.749 +26415,2025-03-10T08:24:09.391743-07:00,1805.0,10.82133,10821.33 +26416,2025-03-10T08:24:20.228181-07:00,1850.0,10.836438,10836.438 +26417,2025-03-10T08:24:31.057602-07:00,1850.0,10.829421,10829.421 +26418,2025-03-10T08:24:41.875324-07:00,1863.0,10.817722,10817.722 +26419,2025-03-10T08:24:52.700486-07:00,1834.0,10.825162,10825.162 +26420,2025-03-10T08:25:03.527453-07:00,1861.0,10.826967,10826.967 +26421,2025-03-10T08:25:14.354185-07:00,1819.0,10.826732,10826.732 +26422,2025-03-10T08:25:25.187180-07:00,1827.0,10.832995,10832.995 +26423,2025-03-10T08:25:36.004904-07:00,1815.0,10.817724,10817.724 +26424,2025-03-10T08:25:46.842433-07:00,1822.0,10.837529,10837.529 +26425,2025-03-10T08:25:57.669385-07:00,1860.0,10.826952,10826.952 +26426,2025-03-10T08:26:08.496197-07:00,1823.0,10.826812,10826.812 +26427,2025-03-10T08:26:19.331205-07:00,1803.0,10.835008,10835.008 +26428,2025-03-10T08:26:30.158189-07:00,1851.0,10.826984,10826.984 +26429,2025-03-10T08:26:40.980412-07:00,1823.0,10.822223,10822.223 +26430,2025-03-10T08:26:51.811237-07:00,1879.0,10.830825,10830.825 +26431,2025-03-10T08:27:02.635190-07:00,1875.0,10.823953,10823.953 +26432,2025-03-10T08:27:13.469529-07:00,1826.0,10.834339,10834.339 +26433,2025-03-10T08:27:24.292190-07:00,1867.0,10.822661,10822.661 +26434,2025-03-10T08:27:35.117794-07:00,1873.0,10.825604,10825.604 +26435,2025-03-10T08:27:45.935658-07:00,1823.0,10.817864,10817.864 +26436,2025-03-10T08:27:56.755175-07:00,1834.0,10.819517,10819.517 +26437,2025-03-10T08:28:07.582488-07:00,1878.0,10.827313,10827.313 +26438,2025-03-10T08:28:18.408377-07:00,1840.0,10.825889,10825.889 +26439,2025-03-10T08:28:29.232988-07:00,1872.0,10.824611,10824.611 +26440,2025-03-10T08:28:40.052355-07:00,1856.0,10.819367,10819.367 +26441,2025-03-10T08:28:50.880421-07:00,1843.0,10.828066,10828.066 +26442,2025-03-10T08:29:01.704573-07:00,1879.0,10.824152,10824.152 +26443,2025-03-10T08:29:12.526252-07:00,1847.0,10.821679,10821.679 +26444,2025-03-10T08:29:23.357484-07:00,1855.0,10.831232,10831.232 +26445,2025-03-10T08:29:34.176238-07:00,1813.0,10.818754,10818.754 +26446,2025-03-10T08:29:45.008148-07:00,1842.0,10.83191,10831.91 +26447,2025-03-10T08:29:55.833317-07:00,1883.0,10.825169,10825.169 +26448,2025-03-10T08:30:06.667540-07:00,1820.0,10.834223,10834.223 +26449,2025-03-10T08:30:17.494324-07:00,1870.0,10.826784,10826.784 +26450,2025-03-10T08:30:28.325155-07:00,1808.0,10.830831,10830.831 +26451,2025-03-10T08:30:39.163182-07:00,1890.0,10.838027,10838.027 +26452,2025-03-10T08:30:49.986447-07:00,1891.0,10.823265,10823.265 +26453,2025-03-10T08:31:00.819169-07:00,1825.0,10.832722,10832.722 +26454,2025-03-10T08:31:11.650242-07:00,1857.0,10.831073,10831.073 +26455,2025-03-10T08:31:22.477182-07:00,1813.0,10.82694,10826.94 +26456,2025-03-10T08:31:33.315053-07:00,1855.0,10.837871,10837.871 +26457,2025-03-10T08:31:44.138330-07:00,1843.0,10.823277,10823.277 +26458,2025-03-10T08:31:54.967831-07:00,1890.0,10.829501,10829.501 +26459,2025-03-10T08:32:05.792422-07:00,1830.0,10.824591,10824.591 +26460,2025-03-10T08:32:16.624233-07:00,1904.0,10.831811,10831.811 +26461,2025-03-10T08:32:27.451182-07:00,1868.0,10.826949,10826.949 +26462,2025-03-10T08:32:38.277693-07:00,1904.0,10.826511,10826.511 +26463,2025-03-10T08:32:49.107443-07:00,1906.0,10.82975,10829.75 +26464,2025-03-10T08:32:59.929197-07:00,1877.0,10.821754,10821.754 +26465,2025-03-10T08:33:10.750269-07:00,1879.0,10.821072,10821.072 +26466,2025-03-10T08:33:21.574176-07:00,1880.0,10.823907,10823.907 +26467,2025-03-10T08:33:32.402307-07:00,1861.0,10.828131,10828.131 +26468,2025-03-10T08:33:43.227189-07:00,1872.0,10.824882,10824.882 +26469,2025-03-10T08:33:54.053586-07:00,1917.0,10.826397,10826.397 +26470,2025-03-10T08:34:04.869170-07:00,1863.0,10.815584,10815.584 +26471,2025-03-10T08:34:15.706243-07:00,1918.0,10.837073,10837.073 +26472,2025-03-10T08:34:26.525512-07:00,1857.0,10.819269,10819.269 +26473,2025-03-10T08:34:37.354315-07:00,1911.0,10.828803,10828.803 +26474,2025-03-10T08:34:48.180186-07:00,1893.0,10.825871,10825.871 +26475,2025-03-10T08:34:59.017228-07:00,1861.0,10.837042,10837.042 +26476,2025-03-10T08:35:09.840421-07:00,1857.0,10.823193,10823.193 +26477,2025-03-10T08:35:20.679201-07:00,1872.0,10.83878,10838.78 +26478,2025-03-10T08:35:31.512376-07:00,1927.0,10.833175,10833.175 +26479,2025-03-10T08:35:42.342507-07:00,1893.0,10.830131,10830.131 +26480,2025-03-10T08:35:53.173190-07:00,1877.0,10.830683,10830.683 +26481,2025-03-10T08:36:04.000622-07:00,1863.0,10.827432,10827.432 +26482,2025-03-10T08:36:14.824396-07:00,1872.0,10.823774,10823.774 +26483,2025-03-10T08:36:25.655922-07:00,1926.0,10.831526,10831.526 +26484,2025-03-10T08:36:36.478416-07:00,1907.0,10.822494,10822.494 +26485,2025-03-10T08:36:47.309660-07:00,1917.0,10.831244,10831.244 +26486,2025-03-10T08:36:58.130438-07:00,1939.0,10.820778,10820.778 +26487,2025-03-10T08:37:08.955395-07:00,1917.0,10.824957,10824.957 +26488,2025-03-10T08:37:19.788168-07:00,1958.0,10.832773,10832.773 +26489,2025-03-10T08:37:30.613164-07:00,1959.0,10.824996,10824.996 +26490,2025-03-10T08:37:41.445252-07:00,1927.0,10.832088,10832.088 +26491,2025-03-10T08:37:52.264183-07:00,1903.0,10.818931,10818.931 +26492,2025-03-10T08:38:03.097578-07:00,1974.0,10.833395,10833.395 +26493,2025-03-10T08:38:13.923424-07:00,1938.0,10.825846,10825.846 +26494,2025-03-10T08:38:24.751455-07:00,1978.0,10.828031,10828.031 +26495,2025-03-10T08:38:35.579318-07:00,1938.0,10.827863,10827.863 +26496,2025-03-10T08:38:46.410608-07:00,1983.0,10.83129,10831.29 +26497,2025-03-10T08:38:57.240179-07:00,1949.0,10.829571,10829.571 +26498,2025-03-10T08:39:08.062787-07:00,1985.0,10.822608,10822.608 +26499,2025-03-10T08:39:18.896226-07:00,1955.0,10.833439,10833.439 +26500,2025-03-10T08:39:29.728475-07:00,1986.0,10.832249,10832.249 +26501,2025-03-10T08:39:40.553172-07:00,1982.0,10.824697,10824.697 +26502,2025-03-10T08:39:51.385313-07:00,1987.0,10.832141,10832.141 +26503,2025-03-10T08:40:02.207409-07:00,1989.0,10.822096,10822.096 +26504,2025-03-10T08:40:13.035515-07:00,1989.0,10.828106,10828.106 +26505,2025-03-10T08:40:23.862189-07:00,2000.0,10.826674,10826.674 +26506,2025-03-10T08:40:34.685072-07:00,2003.0,10.822883,10822.883 +26507,2025-03-10T08:40:45.523631-07:00,1932.0,10.838559,10838.559 +26508,2025-03-10T08:40:56.342430-07:00,2000.0,10.818799,10818.799 +26509,2025-03-10T08:41:07.174173-07:00,1939.0,10.831743,10831.743 +26510,2025-03-10T08:41:17.996773-07:00,1983.0,10.8226,10822.6 +26511,2025-03-10T08:41:28.820509-07:00,2023.0,10.823736,10823.736 +26512,2025-03-10T08:41:39.646818-07:00,1996.0,10.826309,10826.309 +26513,2025-03-10T08:41:50.467815-07:00,1993.0,10.820997,10820.997 +26514,2025-03-10T08:42:01.294525-07:00,1989.0,10.82671,10826.71 +26515,2025-03-10T08:42:12.120646-07:00,2000.0,10.826121,10826.121 +26516,2025-03-10T08:42:22.949376-07:00,2032.0,10.82873,10828.73 +26517,2025-03-10T08:42:33.777277-07:00,2013.0,10.827901,10827.901 +26518,2025-03-10T08:42:44.592419-07:00,2017.0,10.815142,10815.142 +26519,2025-03-10T08:42:55.420828-07:00,2036.0,10.828409,10828.409 +26520,2025-03-10T08:43:06.247488-07:00,2064.0,10.82666,10826.66 +26521,2025-03-10T08:43:17.069190-07:00,2000.0,10.821702,10821.702 +26522,2025-03-10T08:43:27.902462-07:00,2095.0,10.833272,10833.272 +26523,2025-03-10T08:43:38.723190-07:00,2058.0,10.820728,10820.728 +26524,2025-03-10T08:43:49.548167-07:00,2114.0,10.824977,10824.977 +26525,2025-03-10T08:44:00.373466-07:00,2118.0,10.825299,10825.299 +26526,2025-03-10T08:44:11.199174-07:00,2112.0,10.825708,10825.708 +26527,2025-03-10T08:44:22.033246-07:00,2144.0,10.834072,10834.072 +26528,2025-03-10T08:44:32.857416-07:00,2145.0,10.82417,10824.17 +26529,2025-03-10T08:44:43.677715-07:00,2129.0,10.820299,10820.299 +26530,2025-03-10T08:44:54.509371-07:00,2156.0,10.831656,10831.656 +26531,2025-03-10T08:45:05.326179-07:00,2151.0,10.816808,10816.808 +26532,2025-03-10T08:45:16.160361-07:00,2168.0,10.834182,10834.182 +26533,2025-03-10T08:45:26.980214-07:00,2139.0,10.819853,10819.853 +26534,2025-03-10T08:45:37.797675-07:00,2176.0,10.817461,10817.461 +26535,2025-03-10T08:45:48.628189-07:00,2184.0,10.830514,10830.514 +26536,2025-03-10T08:45:59.460787-07:00,2142.0,10.832598,10832.598 +26537,2025-03-10T08:46:10.286415-07:00,2128.0,10.825628,10825.628 +26538,2025-03-10T08:46:21.102322-07:00,2158.0,10.815907,10815.907 +26539,2025-03-10T08:46:31.933184-07:00,2220.0,10.830862,10830.862 +26540,2025-03-10T08:46:42.758185-07:00,2223.0,10.825001,10825.001 +26541,2025-03-10T08:46:53.574508-07:00,2154.0,10.816323,10816.323 +26542,2025-03-10T08:47:04.404167-07:00,2186.0,10.829659,10829.659 +26543,2025-03-10T08:47:15.224183-07:00,2164.0,10.820016,10820.016 +26544,2025-03-10T08:47:26.046192-07:00,2195.0,10.822009,10822.009 +26545,2025-03-10T08:47:36.876207-07:00,2209.0,10.830015,10830.015 +26546,2025-03-10T08:47:47.700637-07:00,2192.0,10.82443,10824.43 +26547,2025-03-10T08:47:58.525434-07:00,2199.0,10.824797,10824.797 +26548,2025-03-10T08:48:09.350785-07:00,2144.0,10.825351,10825.351 +26549,2025-03-10T08:48:20.163617-07:00,2168.0,10.812832,10812.832 +26550,2025-03-10T08:48:30.982220-07:00,2128.0,10.818603,10818.603 +26551,2025-03-10T08:48:41.811442-07:00,2156.0,10.829222,10829.222 +26552,2025-03-10T08:48:52.641187-07:00,2183.0,10.829745,10829.745 +26553,2025-03-10T08:49:03.456190-07:00,2203.0,10.815003,10815.003 +26554,2025-03-10T08:49:14.286637-07:00,2247.0,10.830447,10830.447 +26555,2025-03-10T08:49:25.102519-07:00,2208.0,10.815882,10815.882 +26556,2025-03-10T08:49:35.917415-07:00,2256.0,10.814896,10814.896 +26557,2025-03-10T08:49:46.743299-07:00,2194.0,10.825884,10825.884 +26558,2025-03-10T08:49:57.570165-07:00,2294.0,10.826866,10826.866 +26559,2025-03-10T08:50:08.390349-07:00,2288.0,10.820184,10820.184 +26560,2025-03-10T08:50:19.211167-07:00,2286.0,10.820818,10820.818 +26561,2025-03-10T08:50:30.031230-07:00,2311.0,10.820063,10820.063 +26562,2025-03-10T08:50:40.845182-07:00,2302.0,10.813952,10813.952 +26563,2025-03-10T08:50:51.665332-07:00,2345.0,10.82015,10820.15 +26564,2025-03-10T08:51:02.492186-07:00,2352.0,10.826854,10826.854 +26565,2025-03-10T08:51:13.307371-07:00,2371.0,10.815185,10815.185 +26566,2025-03-10T08:51:24.128225-07:00,2352.0,10.820854,10820.854 +26567,2025-03-10T08:51:34.940277-07:00,2375.0,10.812052,10812.052 +26568,2025-03-10T08:51:45.771229-07:00,2369.0,10.830952,10830.952 +26569,2025-03-10T08:51:56.592180-07:00,2365.0,10.820951,10820.951 +26570,2025-03-10T08:52:07.417184-07:00,2366.0,10.825004,10825.004 +26571,2025-03-10T08:52:18.235128-07:00,2379.0,10.817944,10817.944 +26572,2025-03-10T08:52:29.060178-07:00,2398.0,10.82505,10825.05 +26573,2025-03-10T08:52:39.888643-07:00,2399.0,10.828465,10828.465 +26574,2025-03-10T08:52:50.713011-07:00,2382.0,10.824368,10824.368 +26575,2025-03-10T08:53:01.533240-07:00,2426.0,10.820229,10820.229 +26576,2025-03-10T08:53:12.349531-07:00,2433.0,10.816291,10816.291 +26577,2025-03-10T08:53:23.168580-07:00,2421.0,10.819049,10819.049 +26578,2025-03-10T08:53:33.995996-07:00,2371.0,10.827416,10827.416 +26579,2025-03-10T08:53:44.818492-07:00,2434.0,10.822496,10822.496 +26580,2025-03-10T08:53:55.640179-07:00,2438.0,10.821687,10821.687 +26581,2025-03-10T08:54:06.458186-07:00,2455.0,10.818007,10818.007 +26582,2025-03-10T08:54:17.281561-07:00,2405.0,10.823375,10823.375 +26583,2025-03-10T08:54:28.101296-07:00,2467.0,10.819735,10819.735 +26584,2025-03-10T08:54:38.915179-07:00,2411.0,10.813883,10813.883 +26585,2025-03-10T08:54:49.729220-07:00,2430.0,10.814041,10814.041 +26586,2025-03-10T08:55:00.557185-07:00,2480.0,10.827965,10827.965 +26587,2025-03-10T08:55:11.367240-07:00,2480.0,10.810055,10810.055 +26588,2025-03-10T08:55:22.181323-07:00,2480.0,10.814083,10814.083 +26589,2025-03-10T08:55:33.000163-07:00,2454.0,10.81884,10818.84 +26590,2025-03-10T08:55:43.815230-07:00,2421.0,10.815067,10815.067 +26591,2025-03-10T08:55:54.636181-07:00,2495.0,10.820951,10820.951 +26592,2025-03-10T08:56:05.456176-07:00,2447.0,10.819995,10819.995 +26593,2025-03-10T08:56:16.270550-07:00,2463.0,10.814374,10814.374 +26594,2025-03-10T08:56:27.096179-07:00,2449.0,10.825629,10825.629 +26595,2025-03-10T08:56:37.909186-07:00,2493.0,10.813007,10813.007 +26596,2025-03-10T08:56:48.727506-07:00,2484.0,10.81832,10818.32 +26597,2025-03-10T08:56:59.552462-07:00,2503.0,10.824956,10824.956 +26598,2025-03-10T08:57:10.383759-07:00,2455.0,10.831297,10831.297 +26599,2025-03-10T08:57:21.202861-07:00,2483.0,10.819102,10819.102 +26600,2025-03-10T08:57:32.018184-07:00,2486.0,10.815323,10815.323 +26601,2025-03-10T08:57:42.844788-07:00,2519.0,10.826604,10826.604 +26602,2025-03-10T08:57:53.675182-07:00,2484.0,10.830394,10830.394 +26603,2025-03-10T08:58:04.496211-07:00,2462.0,10.821029,10821.029 +26604,2025-03-10T08:58:15.318517-07:00,2459.0,10.822306,10822.306 +26605,2025-03-10T08:58:26.142174-07:00,2448.0,10.823657,10823.657 +26606,2025-03-10T08:58:36.968460-07:00,2462.0,10.826286,10826.286 +26607,2025-03-10T08:58:47.790429-07:00,2462.0,10.821969,10821.969 +26608,2025-03-10T08:58:58.612320-07:00,2449.0,10.821891,10821.891 +26609,2025-03-10T08:59:09.448401-07:00,2454.0,10.836081,10836.081 +26610,2025-03-10T08:59:20.261239-07:00,2448.0,10.812838,10812.838 +26611,2025-03-10T08:59:31.087687-07:00,2490.0,10.826448,10826.448 +26612,2025-03-10T08:59:41.905644-07:00,2416.0,10.817957,10817.957 +26613,2025-03-10T08:59:52.724439-07:00,2429.0,10.818795,10818.795 +26614,2025-03-10T09:00:03.554698-07:00,2442.0,10.830259,10830.259 +26615,2025-03-10T09:00:14.365226-07:00,2438.0,10.810528,10810.528 +26616,2025-03-10T09:00:25.192174-07:00,2479.0,10.826948,10826.948 +26617,2025-03-10T09:00:36.018866-07:00,2490.0,10.826692,10826.692 +26618,2025-03-10T09:00:46.836184-07:00,2513.0,10.817318,10817.318 +26619,2025-03-10T09:00:57.654156-07:00,2469.0,10.817972,10817.972 +26620,2025-03-10T09:01:08.472683-07:00,2473.0,10.818527,10818.527 +26621,2025-03-10T09:01:19.297167-07:00,2518.0,10.824484,10824.484 +26622,2025-03-10T09:01:30.117400-07:00,2535.0,10.820233,10820.233 +26623,2025-03-10T09:01:40.936531-07:00,2557.0,10.819131,10819.131 +26624,2025-03-10T09:01:51.753418-07:00,2559.0,10.816887,10816.887 +26625,2025-03-10T09:02:02.585773-07:00,2595.0,10.832355,10832.355 +26626,2025-03-10T09:02:13.404764-07:00,2557.0,10.818991,10818.991 +26627,2025-03-10T09:02:24.230425-07:00,2624.0,10.825661,10825.661 +26628,2025-03-10T09:02:35.048515-07:00,2612.0,10.81809,10818.09 +26629,2025-03-10T09:02:45.866177-07:00,2554.0,10.817662,10817.662 +26630,2025-03-10T09:02:56.685320-07:00,2590.0,10.819143,10819.143 +26631,2025-03-10T09:03:07.508461-07:00,2592.0,10.823141,10823.141 +26632,2025-03-10T09:03:18.333188-07:00,2582.0,10.824727,10824.727 +26633,2025-03-10T09:03:29.147183-07:00,2605.0,10.813995,10813.995 +26634,2025-03-10T09:03:39.962399-07:00,2582.0,10.815216,10815.216 +26635,2025-03-10T09:03:50.781523-07:00,2547.0,10.819124,10819.124 +26636,2025-03-10T09:04:01.600303-07:00,2557.0,10.81878,10818.78 +26637,2025-03-10T09:04:12.423229-07:00,2593.0,10.822926,10822.926 +26638,2025-03-10T09:04:23.252240-07:00,2559.0,10.829011,10829.011 +26639,2025-03-10T09:04:34.070167-07:00,2553.0,10.817927,10817.927 +26640,2025-03-10T09:04:44.889737-07:00,2594.0,10.81957,10819.57 +26641,2025-03-10T09:04:55.712383-07:00,2527.0,10.822646,10822.646 +26642,2025-03-10T09:05:06.529178-07:00,2592.0,10.816795,10816.795 +26643,2025-03-10T09:05:17.350716-07:00,2559.0,10.821538,10821.538 +26644,2025-03-10T09:05:28.165529-07:00,2559.0,10.814813,10814.813 +26645,2025-03-10T09:05:38.988410-07:00,2538.0,10.822881,10822.881 +26646,2025-03-10T09:05:49.645600-07:00,2557.0,10.65719,10657.19 +26647,2025-03-10T09:06:00.467893-07:00,2559.0,10.822293,10822.293 +26648,2025-03-10T09:06:11.280610-07:00,2559.0,10.812717,10812.717 +26649,2025-03-10T09:06:22.101922-07:00,2547.0,10.821312,10821.312 +26650,2025-03-10T09:06:32.912615-07:00,2608.0,10.810693,10810.693 +26651,2025-03-10T09:06:43.729909-07:00,2559.0,10.817294,10817.294 +26652,2025-03-10T09:06:54.553853-07:00,2684.0,10.823944,10823.944 +26653,2025-03-10T09:07:05.365840-07:00,2715.0,10.811987,10811.987 +26654,2025-03-10T09:07:16.188218-07:00,2686.0,10.822378,10822.378 +26655,2025-03-10T09:07:27.001237-07:00,2693.0,10.813019,10813.019 +26656,2025-03-10T09:07:37.821842-07:00,2673.0,10.820605,10820.605 +26657,2025-03-10T09:07:48.642285-07:00,2695.0,10.820443,10820.443 +26658,2025-03-10T09:07:59.454160-07:00,2693.0,10.811875,10811.875 +26659,2025-03-10T09:08:10.277877-07:00,2651.0,10.823717,10823.717 +26660,2025-03-10T09:08:21.090895-07:00,2678.0,10.813018,10813.018 +26661,2025-03-10T09:08:31.903981-07:00,2699.0,10.813086,10813.086 +26662,2025-03-10T09:08:42.714646-07:00,2678.0,10.810665,10810.665 +26663,2025-03-10T09:08:53.529949-07:00,2717.0,10.815303,10815.303 +26664,2025-03-10T09:09:04.349032-07:00,2704.0,10.819083,10819.083 +26665,2025-03-10T09:09:15.170067-07:00,2695.0,10.821035,10821.035 +26666,2025-03-10T09:09:25.987350-07:00,2658.0,10.817283,10817.283 +26667,2025-03-10T09:09:36.795896-07:00,2669.0,10.808546,10808.546 +26668,2025-03-10T09:09:47.613976-07:00,2622.0,10.81808,10818.08 +26669,2025-03-10T09:09:58.440538-07:00,2590.0,10.826562,10826.562 +26670,2025-03-10T09:10:09.247213-07:00,2547.0,10.806675,10806.675 +26671,2025-03-10T09:10:20.068837-07:00,2507.0,10.821624,10821.624 +26672,2025-03-10T09:10:41.693435-07:00,2530.0,21.624598,21624.598 +26673,2025-03-10T09:10:52.520216-07:00,2550.0,10.826781,10826.781 +26674,2025-03-10T09:11:03.334112-07:00,2482.0,10.813896,10813.896 +26675,2025-03-10T09:11:14.143160-07:00,2496.0,10.809048,10809.048 +26676,2025-03-10T09:11:24.970145-07:00,2496.0,10.826985,10826.985 +26677,2025-03-10T09:11:35.784381-07:00,2468.0,10.814236,10814.236 +26678,2025-03-10T09:11:46.604614-07:00,2447.0,10.820233,10820.233 +26679,2025-03-10T09:11:57.425615-07:00,2483.0,10.821001,10821.001 +26680,2025-03-10T09:12:08.245620-07:00,2487.0,10.820005,10820.005 +26681,2025-03-10T09:12:19.054049-07:00,2501.0,10.808429,10808.429 +26682,2025-03-10T09:12:29.879322-07:00,2453.0,10.825273,10825.273 +26683,2025-03-10T09:12:40.695414-07:00,2482.0,10.816092,10816.092 +26684,2025-03-10T09:12:51.507421-07:00,2459.0,10.812007,10812.007 +26685,2025-03-10T09:13:02.324251-07:00,2387.0,10.81683,10816.83 +26686,2025-03-10T09:13:13.138816-07:00,2385.0,10.814565,10814.565 +26687,2025-03-10T09:13:23.956918-07:00,2389.0,10.818102,10818.102 +26688,2025-03-10T09:13:34.774746-07:00,2384.0,10.817828,10817.828 +26689,2025-03-10T09:13:45.583979-07:00,2366.0,10.809233,10809.233 +26690,2025-03-10T09:13:56.406854-07:00,2299.0,10.822875,10822.875 +26691,2025-03-10T09:14:07.223157-07:00,2349.0,10.816303,10816.303 +26692,2025-03-10T09:14:18.044623-07:00,2305.0,10.821466,10821.466 +26693,2025-03-10T09:14:28.867612-07:00,2288.0,10.822989,10822.989 +26694,2025-03-10T09:14:39.686001-07:00,2239.0,10.818389,10818.389 +26695,2025-03-10T09:14:50.498922-07:00,2247.0,10.812921,10812.921 +26696,2025-03-10T09:15:01.325875-07:00,2224.0,10.826953,10826.953 +26697,2025-03-10T09:15:12.134898-07:00,2225.0,10.809023,10809.023 +26698,2025-03-10T09:15:22.959974-07:00,2230.0,10.825076,10825.076 +26699,2025-03-10T09:15:33.768849-07:00,2217.0,10.808875,10808.875 +26700,2025-03-10T09:15:44.583645-07:00,2154.0,10.814796,10814.796 +26701,2025-03-10T09:15:55.404608-07:00,2222.0,10.820963,10820.963 +26702,2025-03-10T09:16:06.224642-07:00,2174.0,10.820034,10820.034 +26703,2025-03-10T09:16:17.047622-07:00,2225.0,10.82298,10822.98 +26704,2025-03-10T09:16:27.868385-07:00,2224.0,10.820763,10820.763 +26705,2025-03-10T09:16:38.686676-07:00,2193.0,10.818291,10818.291 +26706,2025-03-10T09:16:49.498599-07:00,2175.0,10.811923,10811.923 +26707,2025-03-10T09:17:00.324610-07:00,2240.0,10.826011,10826.011 +26708,2025-03-10T09:17:11.140959-07:00,2175.0,10.816349,10816.349 +26709,2025-03-10T09:17:21.956328-07:00,2181.0,10.815369,10815.369 +26710,2025-03-10T09:17:32.780664-07:00,2185.0,10.824336,10824.336 +26711,2025-03-10T09:17:43.600949-07:00,2221.0,10.820285,10820.285 +26712,2025-03-10T09:17:54.416957-07:00,2251.0,10.816008,10816.008 +26713,2025-03-10T09:18:05.236853-07:00,2267.0,10.819896,10819.896 +26714,2025-03-10T09:18:16.049868-07:00,2196.0,10.813015,10813.015 +26715,2025-03-10T09:18:26.871191-07:00,2233.0,10.821323,10821.323 +26716,2025-03-10T09:18:37.679670-07:00,2256.0,10.808479,10808.479 +26717,2025-03-10T09:18:48.496901-07:00,2226.0,10.817231,10817.231 +26718,2025-03-10T09:18:59.313621-07:00,2183.0,10.81672,10816.72 +26719,2025-03-10T09:19:10.130935-07:00,2154.0,10.817314,10817.314 +26720,2025-03-10T09:19:20.962858-07:00,2192.0,10.831923,10831.923 +26721,2025-03-10T09:19:31.783225-07:00,2145.0,10.820367,10820.367 +26722,2025-03-10T09:19:42.591989-07:00,2213.0,10.808764,10808.764 +26723,2025-03-10T09:19:53.420862-07:00,2160.0,10.828873,10828.873 +26724,2025-03-10T09:20:04.235824-07:00,2197.0,10.814962,10814.962 +26725,2025-03-10T09:20:15.065871-07:00,2115.0,10.830047,10830.047 +26726,2025-03-10T09:20:25.883619-07:00,2203.0,10.817748,10817.748 +26727,2025-03-10T09:20:36.696993-07:00,2193.0,10.813374,10813.374 +26728,2025-03-10T09:20:47.520022-07:00,2189.0,10.823029,10823.029 +26729,2025-03-10T09:20:58.340618-07:00,2209.0,10.820596,10820.596 +26730,2025-03-10T09:21:09.164467-07:00,2203.0,10.823849,10823.849 +26731,2025-03-10T09:21:19.973236-07:00,2207.0,10.808769,10808.769 +26732,2025-03-10T09:21:30.796094-07:00,2143.0,10.822858,10822.858 +26733,2025-03-10T09:21:41.611852-07:00,2169.0,10.815758,10815.758 +26734,2025-03-10T09:21:52.434874-07:00,2211.0,10.823022,10823.022 +26735,2025-03-10T09:22:03.249918-07:00,2155.0,10.815044,10815.044 +26736,2025-03-10T09:22:14.062611-07:00,2209.0,10.812693,10812.693 +26737,2025-03-10T09:22:24.878807-07:00,2206.0,10.816196,10816.196 +26738,2025-03-10T09:22:35.694215-07:00,2149.0,10.815408,10815.408 +26739,2025-03-10T09:22:46.521738-07:00,2160.0,10.827523,10827.523 +26740,2025-03-10T09:22:57.334612-07:00,2197.0,10.812874,10812.874 +26741,2025-03-10T09:23:08.156979-07:00,2187.0,10.822367,10822.367 +26742,2025-03-10T09:23:18.975480-07:00,2150.0,10.818501,10818.501 +26743,2025-03-10T09:23:29.788602-07:00,2143.0,10.813122,10813.122 +26744,2025-03-10T09:23:40.604616-07:00,2218.0,10.816014,10816.014 +26745,2025-03-10T09:23:51.423891-07:00,2225.0,10.819275,10819.275 +26746,2025-03-10T09:24:02.228963-07:00,2229.0,10.805072,10805.072 +26747,2025-03-10T09:24:13.045617-07:00,2203.0,10.816654,10816.654 +26748,2025-03-10T09:24:23.857616-07:00,2229.0,10.811999,10811.999 +26749,2025-03-10T09:24:34.684516-07:00,2214.0,10.8269,10826.9 +26750,2025-03-10T09:24:45.500622-07:00,2205.0,10.816106,10816.106 +26751,2025-03-10T09:24:56.318860-07:00,2169.0,10.818238,10818.238 +26752,2025-03-10T09:25:07.139610-07:00,2239.0,10.82075,10820.75 +26753,2025-03-10T09:25:17.964776-07:00,2229.0,10.825166,10825.166 +26754,2025-03-10T09:25:28.785620-07:00,2220.0,10.820844,10820.844 +26755,2025-03-10T09:25:39.610768-07:00,2210.0,10.825148,10825.148 +26756,2025-03-10T09:25:50.427867-07:00,2258.0,10.817099,10817.099 +26757,2025-03-10T09:26:01.245850-07:00,2230.0,10.817983,10817.983 +26758,2025-03-10T09:26:12.069447-07:00,2256.0,10.823597,10823.597 +26759,2025-03-10T09:26:22.890620-07:00,2262.0,10.821173,10821.173 +26760,2025-03-10T09:26:33.708724-07:00,2259.0,10.818104,10818.104 +26761,2025-03-10T09:26:44.534175-07:00,2259.0,10.825451,10825.451 +26762,2025-03-10T09:26:55.354778-07:00,2255.0,10.820603,10820.603 +26763,2025-03-10T09:27:06.175616-07:00,2216.0,10.820838,10820.838 +26764,2025-03-10T09:27:16.998034-07:00,2229.0,10.822418,10822.418 +26765,2025-03-10T09:27:27.825615-07:00,2255.0,10.827581,10827.581 +26766,2025-03-10T09:27:38.634622-07:00,2175.0,10.809007,10809.007 +26767,2025-03-10T09:27:49.461315-07:00,2258.0,10.826693,10826.693 +26768,2025-03-10T09:28:00.279622-07:00,2229.0,10.818307,10818.307 +26769,2025-03-10T09:28:11.101657-07:00,2234.0,10.822035,10822.035 +26770,2025-03-10T09:28:21.923994-07:00,2254.0,10.822337,10822.337 +26771,2025-03-10T09:28:43.563248-07:00,2218.0,21.639254,21639.254 +26772,2025-03-10T09:28:54.388676-07:00,2209.0,10.825428,10825.428 +26773,2025-03-10T09:29:05.203605-07:00,2207.0,10.814929,10814.929 +26774,2025-03-10T09:29:16.034920-07:00,2202.0,10.831315,10831.315 +26775,2025-03-10T09:29:26.853630-07:00,2180.0,10.81871,10818.71 +26776,2025-03-10T09:29:37.673878-07:00,2238.0,10.820248,10820.248 +26777,2025-03-10T09:29:48.491580-07:00,2207.0,10.817702,10817.702 +26778,2025-03-10T09:29:59.310874-07:00,2195.0,10.819294,10819.294 +26779,2025-03-10T09:30:10.136751-07:00,2235.0,10.825877,10825.877 +26780,2025-03-10T09:30:20.946655-07:00,2169.0,10.809904,10809.904 +26781,2025-03-10T09:30:31.767863-07:00,2157.0,10.821208,10821.208 +26782,2025-03-10T09:30:42.590616-07:00,2191.0,10.822753,10822.753 +26783,2025-03-10T09:30:53.407518-07:00,2224.0,10.816902,10816.902 +26784,2025-03-10T09:31:04.227948-07:00,2221.0,10.82043,10820.43 +26785,2025-03-10T09:31:15.052823-07:00,2191.0,10.824875,10824.875 +26786,2025-03-10T09:31:25.867259-07:00,2197.0,10.814436,10814.436 +26787,2025-03-10T09:31:36.697893-07:00,2204.0,10.830634,10830.634 +26788,2025-03-10T09:31:47.519635-07:00,2218.0,10.821742,10821.742 +26789,2025-03-10T09:31:58.335939-07:00,2216.0,10.816304,10816.304 +26790,2025-03-10T09:32:09.154544-07:00,2151.0,10.818605,10818.605 +26791,2025-03-10T09:32:19.968612-07:00,2208.0,10.814068,10814.068 +26792,2025-03-10T09:32:30.790793-07:00,2159.0,10.822181,10822.181 +26793,2025-03-10T09:32:41.610919-07:00,2143.0,10.820126,10820.126 +26794,2025-03-10T09:32:52.441622-07:00,2192.0,10.830703,10830.703 +26795,2025-03-10T09:33:03.269624-07:00,2179.0,10.828002,10828.002 +26796,2025-03-10T09:33:14.087622-07:00,2199.0,10.817998,10817.998 +26797,2025-03-10T09:33:24.914949-07:00,2235.0,10.827327,10827.327 +26798,2025-03-10T09:33:35.729874-07:00,2247.0,10.814925,10814.925 +26799,2025-03-10T09:33:46.555671-07:00,2223.0,10.825797,10825.797 +26800,2025-03-10T09:33:57.376646-07:00,2256.0,10.820975,10820.975 +26801,2025-03-10T09:34:08.203616-07:00,2192.0,10.82697,10826.97 +26802,2025-03-10T09:34:19.028647-07:00,2224.0,10.825031,10825.031 +26803,2025-03-10T09:34:29.847960-07:00,2261.0,10.819313,10819.313 +26804,2025-03-10T09:34:40.664764-07:00,2240.0,10.816804,10816.804 +26805,2025-03-10T09:34:51.487655-07:00,2229.0,10.822891,10822.891 +26806,2025-03-10T09:35:02.314675-07:00,2225.0,10.82702,10827.02 +26807,2025-03-10T09:35:13.127772-07:00,2251.0,10.813097,10813.097 +26808,2025-03-10T09:35:23.959926-07:00,2257.0,10.832154,10832.154 +26809,2025-03-10T09:35:34.779709-07:00,2243.0,10.819783,10819.783 +26810,2025-03-10T09:35:45.589801-07:00,2263.0,10.810092,10810.092 +26811,2025-03-10T09:35:56.417521-07:00,2275.0,10.82772,10827.72 +26812,2025-03-10T09:36:07.242864-07:00,2223.0,10.825343,10825.343 +26813,2025-03-10T09:36:18.062628-07:00,2237.0,10.819764,10819.764 +26814,2025-03-10T09:36:28.891618-07:00,2257.0,10.82899,10828.99 +26815,2025-03-10T09:36:39.715615-07:00,2263.0,10.823997,10823.997 +26816,2025-03-10T09:36:50.540920-07:00,2222.0,10.825305,10825.305 +26817,2025-03-10T09:37:01.361740-07:00,2187.0,10.82082,10820.82 +26818,2025-03-10T09:37:12.194526-07:00,2253.0,10.832786,10832.786 +26819,2025-03-10T09:37:23.008208-07:00,2249.0,10.813682,10813.682 +26820,2025-03-10T09:37:33.838611-07:00,2240.0,10.830403,10830.403 +26821,2025-03-10T09:37:44.658976-07:00,2209.0,10.820365,10820.365 +26822,2025-03-10T09:37:55.486765-07:00,2217.0,10.827789,10827.789 +26823,2025-03-10T09:38:06.306461-07:00,2191.0,10.819696,10819.696 +26824,2025-03-10T09:38:17.132621-07:00,2174.0,10.82616,10826.16 +26825,2025-03-10T09:38:27.963926-07:00,2224.0,10.831305,10831.305 +26826,2025-03-10T09:38:38.784204-07:00,2195.0,10.820278,10820.278 +26827,2025-03-10T09:38:49.613591-07:00,2231.0,10.829387,10829.387 +26828,2025-03-10T09:39:00.446673-07:00,2181.0,10.833082,10833.082 +26829,2025-03-10T09:39:11.268616-07:00,2211.0,10.821943,10821.943 +26830,2025-03-10T09:39:22.098967-07:00,2204.0,10.830351,10830.351 +26831,2025-03-10T09:39:32.925127-07:00,2195.0,10.82616,10826.16 +26832,2025-03-10T09:39:43.744212-07:00,2181.0,10.819085,10819.085 +26833,2025-03-10T09:39:54.565941-07:00,2163.0,10.821729,10821.729 +26834,2025-03-10T09:40:05.390616-07:00,2228.0,10.824675,10824.675 +26835,2025-03-10T09:40:16.219191-07:00,2205.0,10.828575,10828.575 +26836,2025-03-10T09:40:27.030826-07:00,2227.0,10.811635,10811.635 +26837,2025-03-10T09:40:37.858974-07:00,2159.0,10.828148,10828.148 +26838,2025-03-10T09:40:48.680219-07:00,2194.0,10.821245,10821.245 +26839,2025-03-10T09:40:59.501610-07:00,2225.0,10.821391,10821.391 +26840,2025-03-10T09:41:10.325072-07:00,2159.0,10.823462,10823.462 +26841,2025-03-10T09:41:21.145673-07:00,2229.0,10.820601,10820.601 +26842,2025-03-10T09:41:31.969595-07:00,2192.0,10.823922,10823.922 +26843,2025-03-10T09:41:42.791776-07:00,2195.0,10.822181,10822.181 +26844,2025-03-10T09:41:53.617622-07:00,2210.0,10.825846,10825.846 +26845,2025-03-10T09:42:04.437833-07:00,2186.0,10.820211,10820.211 +26846,2025-03-10T09:42:15.257060-07:00,2230.0,10.819227,10819.227 +26847,2025-03-10T09:42:26.080837-07:00,2167.0,10.823777,10823.777 +26848,2025-03-10T09:42:36.910132-07:00,2199.0,10.829295,10829.295 +26849,2025-03-10T09:42:47.730151-07:00,2211.0,10.820019,10820.019 +26850,2025-03-10T09:42:58.563481-07:00,2193.0,10.83333,10833.33 +26851,2025-03-10T09:43:09.383622-07:00,2214.0,10.820141,10820.141 +26852,2025-03-10T09:43:20.205614-07:00,2238.0,10.821992,10821.992 +26853,2025-03-10T09:43:31.030907-07:00,2193.0,10.825293,10825.293 +26854,2025-03-10T09:43:41.858757-07:00,2186.0,10.82785,10827.85 +26855,2025-03-10T09:43:52.677664-07:00,2167.0,10.818907,10818.907 +26856,2025-03-10T09:44:03.501759-07:00,2187.0,10.824095,10824.095 +26857,2025-03-10T09:44:14.327860-07:00,2205.0,10.826101,10826.101 +26858,2025-03-10T09:44:25.149176-07:00,2217.0,10.821316,10821.316 +26859,2025-03-10T09:44:35.975926-07:00,2193.0,10.82675,10826.75 +26860,2025-03-10T09:44:46.794614-07:00,2245.0,10.818688,10818.688 +26861,2025-03-10T09:44:57.628856-07:00,2218.0,10.834242,10834.242 +26862,2025-03-10T09:45:08.447599-07:00,2241.0,10.818743,10818.743 +26863,2025-03-10T09:45:19.274104-07:00,2168.0,10.826505,10826.505 +26864,2025-03-10T09:45:30.092615-07:00,2217.0,10.818511,10818.511 +26865,2025-03-10T09:45:40.913900-07:00,2199.0,10.821285,10821.285 +26866,2025-03-10T09:45:51.747892-07:00,2207.0,10.833992,10833.992 +26867,2025-03-10T09:46:02.564855-07:00,2202.0,10.816963,10816.963 +26868,2025-03-10T09:46:13.392772-07:00,2218.0,10.827917,10827.917 +26869,2025-03-10T09:46:24.217837-07:00,2233.0,10.825065,10825.065 +26870,2025-03-10T09:46:35.045244-07:00,2164.0,10.827407,10827.407 +26871,2025-03-10T09:46:45.868606-07:00,2244.0,10.823362,10823.362 +26872,2025-03-10T09:46:56.685606-07:00,2171.0,10.817,10817.0 +26873,2025-03-10T09:47:07.506279-07:00,2207.0,10.820673,10820.673 +26874,2025-03-10T09:47:18.325616-07:00,2224.0,10.819337,10819.337 +26875,2025-03-10T09:47:29.146605-07:00,2207.0,10.820989,10820.989 +26876,2025-03-10T09:47:39.970065-07:00,2246.0,10.82346,10823.46 +26877,2025-03-10T09:47:50.794616-07:00,2257.0,10.824551,10824.551 +26878,2025-03-10T09:48:01.630238-07:00,2235.0,10.835622,10835.622 +26879,2025-03-10T09:48:12.448205-07:00,2224.0,10.817967,10817.967 +26880,2025-03-10T09:48:23.275859-07:00,2257.0,10.827654,10827.654 +26881,2025-03-10T09:48:34.096597-07:00,2224.0,10.820738,10820.738 +26882,2025-03-10T09:48:44.923618-07:00,2266.0,10.827021,10827.021 +26883,2025-03-10T09:48:55.749010-07:00,2256.0,10.825392,10825.392 +26884,2025-03-10T09:49:06.572621-07:00,2269.0,10.823611,10823.611 +26885,2025-03-10T09:49:17.402924-07:00,2267.0,10.830303,10830.303 +26886,2025-03-10T09:49:28.226790-07:00,2240.0,10.823866,10823.866 +26887,2025-03-10T09:49:39.047836-07:00,2223.0,10.821046,10821.046 +26888,2025-03-10T09:49:49.872617-07:00,2239.0,10.824781,10824.781 +26889,2025-03-10T09:50:00.688874-07:00,2263.0,10.816257,10816.257 +26890,2025-03-10T09:50:11.513464-07:00,2258.0,10.82459,10824.59 +26891,2025-03-10T09:50:22.332752-07:00,2213.0,10.819288,10819.288 +26892,2025-03-10T09:50:33.154746-07:00,2271.0,10.821994,10821.994 +26893,2025-03-10T09:50:43.970613-07:00,2266.0,10.815867,10815.867 +26894,2025-03-10T09:50:54.794616-07:00,2267.0,10.824003,10824.003 +26895,2025-03-10T09:51:05.621759-07:00,2256.0,10.827143,10827.143 +26896,2025-03-10T09:51:16.441463-07:00,2259.0,10.819704,10819.704 +26897,2025-03-10T09:51:27.253866-07:00,2231.0,10.812403,10812.403 +26898,2025-03-10T09:51:38.082769-07:00,2255.0,10.828903,10828.903 +26899,2025-03-10T09:51:48.907894-07:00,2261.0,10.825125,10825.125 +26900,2025-03-10T09:51:59.726910-07:00,2240.0,10.819016,10819.016 +26901,2025-03-10T09:52:10.560959-07:00,2201.0,10.834049,10834.049 +26902,2025-03-10T09:52:21.380620-07:00,2224.0,10.819661,10819.661 +26903,2025-03-10T09:52:32.206734-07:00,2235.0,10.826114,10826.114 +26904,2025-03-10T09:52:43.030675-07:00,2243.0,10.823941,10823.941 +26905,2025-03-10T09:52:53.852613-07:00,2224.0,10.821938,10821.938 +26906,2025-03-10T09:53:04.673219-07:00,2226.0,10.820606,10820.606 +26907,2025-03-10T09:53:15.500633-07:00,2256.0,10.827414,10827.414 +26908,2025-03-10T09:53:26.323795-07:00,2192.0,10.823162,10823.162 +26909,2025-03-10T09:53:37.145949-07:00,2226.0,10.822154,10822.154 +26910,2025-03-10T09:53:47.974865-07:00,2255.0,10.828916,10828.916 +26911,2025-03-10T09:53:58.796901-07:00,2191.0,10.822036,10822.036 +26912,2025-03-10T09:54:09.618903-07:00,2257.0,10.822002,10822.002 +26913,2025-03-10T09:54:20.445617-07:00,2254.0,10.826714,10826.714 +26914,2025-03-10T09:54:31.267615-07:00,2187.0,10.821998,10821.998 +26915,2025-03-10T09:54:42.086605-07:00,2205.0,10.81899,10818.99 +26916,2025-03-10T09:54:52.918380-07:00,2240.0,10.831775,10831.775 +26917,2025-03-10T09:55:03.741622-07:00,2224.0,10.823242,10823.242 +26918,2025-03-10T09:55:14.562773-07:00,2231.0,10.821151,10821.151 +26919,2025-03-10T09:55:25.385965-07:00,2233.0,10.823192,10823.192 +26920,2025-03-10T09:55:36.213876-07:00,2283.0,10.827911,10827.911 +26921,2025-03-10T09:55:47.035223-07:00,2227.0,10.821347,10821.347 +26922,2025-03-10T09:55:57.855616-07:00,2291.0,10.820393,10820.393 +26923,2025-03-10T09:56:08.687987-07:00,2226.0,10.832371,10832.371 +26924,2025-03-10T09:56:19.502611-07:00,2274.0,10.814624,10814.624 +26925,2025-03-10T09:56:30.338668-07:00,2238.0,10.836057,10836.057 +26926,2025-03-10T09:56:41.158991-07:00,2237.0,10.820323,10820.323 +26927,2025-03-10T09:56:51.981611-07:00,2303.0,10.82262,10822.62 +26928,2025-03-10T09:57:02.800654-07:00,2245.0,10.819043,10819.043 +26929,2025-03-10T09:57:24.451877-07:00,2286.0,21.651223,21651.223 +26930,2025-03-10T09:57:35.272938-07:00,2301.0,10.821061,10821.061 +26931,2025-03-10T09:57:46.099609-07:00,2303.0,10.826671,10826.671 +26932,2025-03-10T09:57:56.934052-07:00,2285.0,10.834443,10834.443 +26933,2025-03-10T09:58:07.762616-07:00,2240.0,10.828564,10828.564 +26934,2025-03-10T09:58:18.586953-07:00,2258.0,10.824337,10824.337 +26935,2025-03-10T09:58:29.410829-07:00,2263.0,10.823876,10823.876 +26936,2025-03-10T09:58:40.239654-07:00,2251.0,10.828825,10828.825 +26937,2025-03-10T09:58:51.068788-07:00,2202.0,10.829134,10829.134 +26938,2025-03-10T09:59:01.886588-07:00,2210.0,10.8178,10817.8 +26939,2025-03-10T09:59:12.723633-07:00,2242.0,10.837045,10837.045 +26940,2025-03-10T09:59:23.545615-07:00,2191.0,10.821982,10821.982 +26941,2025-03-10T09:59:34.373601-07:00,2223.0,10.827986,10827.986 +26942,2025-03-10T09:59:45.198856-07:00,2243.0,10.825255,10825.255 +26943,2025-03-10T09:59:56.033611-07:00,2262.0,10.834755,10834.755 +26944,2025-03-10T10:00:06.851762-07:00,2250.0,10.818151,10818.151 +26945,2025-03-10T10:00:17.678959-07:00,2211.0,10.827197,10827.197 +26946,2025-03-10T10:00:28.507604-07:00,2213.0,10.828645,10828.645 +26947,2025-03-10T10:00:39.340444-07:00,2243.0,10.83284,10832.84 +26948,2025-03-10T10:00:50.158874-07:00,2225.0,10.81843,10818.43 +26949,2025-03-10T10:01:00.982794-07:00,2246.0,10.82392,10823.92 +26950,2025-03-10T10:01:11.805870-07:00,2237.0,10.823076,10823.076 +26951,2025-03-10T10:01:22.630618-07:00,2234.0,10.824748,10824.748 +26952,2025-03-10T10:01:33.458924-07:00,2237.0,10.828306,10828.306 +26953,2025-03-10T10:01:44.283675-07:00,2172.0,10.824751,10824.751 +26954,2025-03-10T10:01:55.115714-07:00,2207.0,10.832039,10832.039 +26955,2025-03-10T10:02:05.934618-07:00,2216.0,10.818904,10818.904 +26956,2025-03-10T10:02:16.761096-07:00,2187.0,10.826478,10826.478 +26957,2025-03-10T10:02:27.593735-07:00,2223.0,10.832639,10832.639 +26958,2025-03-10T10:02:38.418879-07:00,2151.0,10.825144,10825.144 +26959,2025-03-10T10:02:49.240601-07:00,2148.0,10.821722,10821.722 +26960,2025-03-10T10:03:00.070775-07:00,2141.0,10.830174,10830.174 +26961,2025-03-10T10:03:10.908671-07:00,2183.0,10.837896,10837.896 +26962,2025-03-10T10:03:21.736005-07:00,2223.0,10.827334,10827.334 +26963,2025-03-10T10:03:32.557622-07:00,2161.0,10.821617,10821.617 +26964,2025-03-10T10:03:43.388610-07:00,2221.0,10.830988,10830.988 +26965,2025-03-10T10:03:54.224617-07:00,2194.0,10.836007,10836.007 +26966,2025-03-10T10:04:05.051907-07:00,2202.0,10.82729,10827.29 +26967,2025-03-10T10:04:15.875627-07:00,2202.0,10.82372,10823.72 +26968,2025-03-10T10:04:26.702840-07:00,2178.0,10.827213,10827.213 +26969,2025-03-10T10:04:37.534623-07:00,2158.0,10.831783,10831.783 +26970,2025-03-10T10:04:48.364618-07:00,2166.0,10.829995,10829.995 +26971,2025-03-10T10:04:59.198622-07:00,2195.0,10.834004,10834.004 +26972,2025-03-10T10:05:10.022764-07:00,2187.0,10.824142,10824.142 +26973,2025-03-10T10:05:20.848991-07:00,2186.0,10.826227,10826.227 +26974,2025-03-10T10:05:31.691593-07:00,2154.0,10.842602,10842.602 +26975,2025-03-10T10:05:42.513617-07:00,2210.0,10.822024,10822.024 +26976,2025-03-10T10:05:53.564014-07:00,2210.0,11.050397,11050.397 +26977,2025-03-10T10:06:04.394713-07:00,2180.0,10.830699,10830.699 +26978,2025-03-10T10:06:15.235800-07:00,2210.0,10.841087,10841.087 +26979,2025-03-10T10:06:26.063714-07:00,2173.0,10.827914,10827.914 +26980,2025-03-10T10:06:36.886080-07:00,2171.0,10.822366,10822.366 +26981,2025-03-10T10:06:47.721739-07:00,2218.0,10.835659,10835.659 +26982,2025-03-10T10:06:58.545073-07:00,2214.0,10.823334,10823.334 +26983,2025-03-10T10:07:09.366730-07:00,2222.0,10.821657,10821.657 +26984,2025-03-10T10:07:20.191005-07:00,2172.0,10.824275,10824.275 +26985,2025-03-10T10:07:31.016112-07:00,2182.0,10.825107,10825.107 +26986,2025-03-10T10:07:41.847715-07:00,2128.0,10.831603,10831.603 +26987,2025-03-10T10:07:52.663069-07:00,2173.0,10.815354,10815.354 +26988,2025-03-10T10:08:03.490049-07:00,2148.0,10.82698,10826.98 +26989,2025-03-10T10:08:14.327082-07:00,2209.0,10.837033,10837.033 +26990,2025-03-10T10:08:25.144728-07:00,2174.0,10.817646,10817.646 +26991,2025-03-10T10:08:35.969767-07:00,2197.0,10.825039,10825.039 +26992,2025-03-10T10:08:46.804965-07:00,2193.0,10.835198,10835.198 +26993,2025-03-10T10:08:57.630973-07:00,2169.0,10.826008,10826.008 +26994,2025-03-10T10:09:08.455722-07:00,2215.0,10.824749,10824.749 +26995,2025-03-10T10:09:19.282747-07:00,2224.0,10.827025,10827.025 +26996,2025-03-10T10:09:30.115083-07:00,2231.0,10.832336,10832.336 +26997,2025-03-10T10:09:40.943813-07:00,2198.0,10.82873,10828.73 +26998,2025-03-10T10:09:51.775972-07:00,2206.0,10.832159,10832.159 +26999,2025-03-10T10:10:02.600003-07:00,2238.0,10.824031,10824.031 +27000,2025-03-10T10:10:13.422766-07:00,2231.0,10.822763,10822.763 +27001,2025-03-10T10:10:24.261587-07:00,2243.0,10.838821,10838.821 +27002,2025-03-10T10:10:35.080724-07:00,2235.0,10.819137,10819.137 +27003,2025-03-10T10:10:45.914753-07:00,2173.0,10.834029,10834.029 +27004,2025-03-10T10:10:56.747127-07:00,2237.0,10.832374,10832.374 +27005,2025-03-10T10:11:07.575003-07:00,2227.0,10.827876,10827.876 +27006,2025-03-10T10:11:18.397416-07:00,2199.0,10.822413,10822.413 +27007,2025-03-10T10:11:29.218893-07:00,2203.0,10.821477,10821.477 +27008,2025-03-10T10:11:40.054746-07:00,2207.0,10.835853,10835.853 +27009,2025-03-10T10:11:50.879725-07:00,2239.0,10.824979,10824.979 +27010,2025-03-10T10:12:01.712085-07:00,2201.0,10.83236,10832.36 +27011,2025-03-10T10:12:12.543769-07:00,2193.0,10.831684,10831.684 +27012,2025-03-10T10:12:23.370338-07:00,2224.0,10.826569,10826.569 +27013,2025-03-10T10:12:34.193941-07:00,2236.0,10.823603,10823.603 +27014,2025-03-10T10:12:45.028854-07:00,2177.0,10.834913,10834.913 +27015,2025-03-10T10:12:55.849163-07:00,2240.0,10.820309,10820.309 +27016,2025-03-10T10:13:06.680067-07:00,2228.0,10.830904,10830.904 +27017,2025-03-10T10:13:17.507795-07:00,2240.0,10.827728,10827.728 +27018,2025-03-10T10:13:28.338731-07:00,2213.0,10.830936,10830.936 +27019,2025-03-10T10:13:39.157792-07:00,2178.0,10.819061,10819.061 +27020,2025-03-10T10:13:49.992165-07:00,2256.0,10.834373,10834.373 +27021,2025-03-10T10:14:00.816766-07:00,2218.0,10.824601,10824.601 +27022,2025-03-10T10:14:11.652982-07:00,2221.0,10.836216,10836.216 +27023,2025-03-10T10:14:22.480014-07:00,2255.0,10.827032,10827.032 +27024,2025-03-10T10:14:33.306763-07:00,2266.0,10.826749,10826.749 +27025,2025-03-10T10:14:44.132732-07:00,2251.0,10.825969,10825.969 +27026,2025-03-10T10:14:54.951878-07:00,2274.0,10.819146,10819.146 +27027,2025-03-10T10:15:05.778067-07:00,2242.0,10.826189,10826.189 +27028,2025-03-10T10:15:16.603722-07:00,2255.0,10.825655,10825.655 +27029,2025-03-10T10:15:27.427026-07:00,2256.0,10.823304,10823.304 +27030,2025-03-10T10:15:38.252886-07:00,2214.0,10.82586,10825.86 +27031,2025-03-10T10:15:49.082516-07:00,2269.0,10.82963,10829.63 +27032,2025-03-10T10:15:59.907871-07:00,2262.0,10.825355,10825.355 +27033,2025-03-10T10:16:10.739028-07:00,2242.0,10.831157,10831.157 +27034,2025-03-10T10:16:21.554805-07:00,2266.0,10.815777,10815.777 +27035,2025-03-10T10:16:32.381708-07:00,2305.0,10.826903,10826.903 +27036,2025-03-10T10:16:43.219342-07:00,2250.0,10.837634,10837.634 +27037,2025-03-10T10:16:54.037990-07:00,2304.0,10.818648,10818.648 +27038,2025-03-10T10:17:04.864994-07:00,2294.0,10.827004,10827.004 +27039,2025-03-10T10:17:15.686720-07:00,2289.0,10.821726,10821.726 +27040,2025-03-10T10:17:26.505903-07:00,2304.0,10.819183,10819.183 +27041,2025-03-10T10:17:37.337735-07:00,2279.0,10.831832,10831.832 +27042,2025-03-10T10:17:48.168870-07:00,2319.0,10.831135,10831.135 +27043,2025-03-10T10:17:58.998726-07:00,2277.0,10.829856,10829.856 +27044,2025-03-10T10:18:09.825553-07:00,2308.0,10.826827,10826.827 +27045,2025-03-10T10:18:20.653061-07:00,2231.0,10.827508,10827.508 +27046,2025-03-10T10:18:31.492047-07:00,2295.0,10.838986,10838.986 +27047,2025-03-10T10:18:42.322731-07:00,2274.0,10.830684,10830.684 +27048,2025-03-10T10:18:53.155065-07:00,2235.0,10.832334,10832.334 +27049,2025-03-10T10:19:03.974779-07:00,2307.0,10.819714,10819.714 +27050,2025-03-10T10:19:14.806505-07:00,2317.0,10.831726,10831.726 +27051,2025-03-10T10:19:25.629720-07:00,2250.0,10.823215,10823.215 +27052,2025-03-10T10:19:36.462042-07:00,2293.0,10.832322,10832.322 +27053,2025-03-10T10:19:47.282728-07:00,2305.0,10.820686,10820.686 +27054,2025-03-10T10:19:58.109765-07:00,2323.0,10.827037,10827.037 +27055,2025-03-10T10:20:08.936731-07:00,2277.0,10.826966,10826.966 +27056,2025-03-10T10:20:19.775038-07:00,2333.0,10.838307,10838.307 +27057,2025-03-10T10:20:30.595965-07:00,2333.0,10.820927,10820.927 +27058,2025-03-10T10:20:41.417897-07:00,2319.0,10.821932,10821.932 +27059,2025-03-10T10:20:52.246724-07:00,2332.0,10.828827,10828.827 +27060,2025-03-10T10:21:03.082922-07:00,2324.0,10.836198,10836.198 +27061,2025-03-10T10:21:13.909868-07:00,2275.0,10.826946,10826.946 +27062,2025-03-10T10:21:24.730795-07:00,2309.0,10.820927,10820.927 +27063,2025-03-10T10:21:35.566583-07:00,2320.0,10.835788,10835.788 +27064,2025-03-10T10:21:46.387716-07:00,2221.0,10.821133,10821.133 +27065,2025-03-10T10:21:57.218339-07:00,2194.0,10.830623,10830.623 +27066,2025-03-10T10:22:08.048720-07:00,2174.0,10.830381,10830.381 +27067,2025-03-10T10:22:18.872018-07:00,2219.0,10.823298,10823.298 +27068,2025-03-10T10:22:29.702779-07:00,2151.0,10.830761,10830.761 +27069,2025-03-10T10:22:40.523714-07:00,2210.0,10.820935,10820.935 +27070,2025-03-10T10:22:51.349726-07:00,2205.0,10.826012,10826.012 +27071,2025-03-10T10:23:02.182278-07:00,2172.0,10.832552,10832.552 +27072,2025-03-10T10:23:12.999091-07:00,2207.0,10.816813,10816.813 +27073,2025-03-10T10:23:23.826722-07:00,2128.0,10.827631,10827.631 +27074,2025-03-10T10:23:34.653776-07:00,2223.0,10.827054,10827.054 +27075,2025-03-10T10:23:45.474725-07:00,2227.0,10.820949,10820.949 +27076,2025-03-10T10:23:56.299482-07:00,2221.0,10.824757,10824.757 +27077,2025-03-10T10:24:07.115371-07:00,2224.0,10.815889,10815.889 +27078,2025-03-10T10:24:17.945719-07:00,2242.0,10.830348,10830.348 +27079,2025-03-10T10:24:28.771611-07:00,2288.0,10.825892,10825.892 +27080,2025-03-10T10:24:39.604727-07:00,2256.0,10.833116,10833.116 +27081,2025-03-10T10:24:50.429875-07:00,2307.0,10.825148,10825.148 +27082,2025-03-10T10:25:01.250784-07:00,2327.0,10.820909,10820.909 +27083,2025-03-10T10:25:12.083345-07:00,2225.0,10.832561,10832.561 +27084,2025-03-10T10:25:22.911771-07:00,2308.0,10.828426,10828.426 +27085,2025-03-10T10:25:33.743056-07:00,2222.0,10.831285,10831.285 +27086,2025-03-10T10:25:44.566981-07:00,2320.0,10.823925,10823.925 +27087,2025-03-10T10:25:55.398495-07:00,2269.0,10.831514,10831.514 +27088,2025-03-10T10:26:06.216730-07:00,2256.0,10.818235,10818.235 +27089,2025-03-10T10:26:17.048932-07:00,2327.0,10.832202,10832.202 +27090,2025-03-10T10:26:27.874840-07:00,2363.0,10.825908,10825.908 +27091,2025-03-10T10:26:38.706899-07:00,2374.0,10.832059,10832.059 +27092,2025-03-10T10:26:49.532921-07:00,2339.0,10.826022,10826.022 +27093,2025-03-10T10:27:00.366242-07:00,2373.0,10.833321,10833.321 +27094,2025-03-10T10:27:11.183880-07:00,2387.0,10.817638,10817.638 +27095,2025-03-10T10:27:22.018614-07:00,2359.0,10.834734,10834.734 +27096,2025-03-10T10:27:32.841708-07:00,2383.0,10.823094,10823.094 +27097,2025-03-10T10:27:43.675230-07:00,2386.0,10.833522,10833.522 +27098,2025-03-10T10:27:54.494102-07:00,2405.0,10.818872,10818.872 +27099,2025-03-10T10:28:05.321620-07:00,2375.0,10.827518,10827.518 +27100,2025-03-10T10:28:16.150981-07:00,2371.0,10.829361,10829.361 +27101,2025-03-10T10:28:26.973840-07:00,2388.0,10.822859,10822.859 +27102,2025-03-10T10:28:37.798692-07:00,2349.0,10.824852,10824.852 +27103,2025-03-10T10:28:48.631729-07:00,2374.0,10.833037,10833.037 +27104,2025-03-10T10:28:59.449902-07:00,2298.0,10.818173,10818.173 +27105,2025-03-10T10:29:10.276202-07:00,2287.0,10.8263,10826.3 +27106,2025-03-10T10:29:21.102724-07:00,2346.0,10.826522,10826.522 +27107,2025-03-10T10:29:31.924970-07:00,2359.0,10.822246,10822.246 +27108,2025-03-10T10:29:42.757713-07:00,2322.0,10.832743,10832.743 +27109,2025-03-10T10:29:53.586242-07:00,2295.0,10.828529,10828.529 +27110,2025-03-10T10:30:04.400815-07:00,2304.0,10.814573,10814.573 +27111,2025-03-10T10:30:15.235051-07:00,2382.0,10.834236,10834.236 +27112,2025-03-10T10:30:26.059732-07:00,2333.0,10.824681,10824.681 +27113,2025-03-10T10:30:36.894036-07:00,2406.0,10.834304,10834.304 +27114,2025-03-10T10:30:47.721364-07:00,2368.0,10.827328,10827.328 +27115,2025-03-10T10:30:58.555030-07:00,2384.0,10.833666,10833.666 +27116,2025-03-10T10:31:09.380652-07:00,2399.0,10.825622,10825.622 +27117,2025-03-10T10:31:20.205536-07:00,2412.0,10.824884,10824.884 +27118,2025-03-10T10:31:31.041732-07:00,2346.0,10.836196,10836.196 +27119,2025-03-10T10:31:41.868894-07:00,2416.0,10.827162,10827.162 +27120,2025-03-10T10:31:52.700722-07:00,2414.0,10.831828,10831.828 +27121,2025-03-10T10:32:03.519981-07:00,2411.0,10.819259,10819.259 +27122,2025-03-10T10:32:14.359712-07:00,2362.0,10.839731,10839.731 +27123,2025-03-10T10:32:25.197722-07:00,2433.0,10.83801,10838.01 +27124,2025-03-10T10:32:36.016725-07:00,2416.0,10.819003,10819.003 +27125,2025-03-10T10:32:46.845411-07:00,2495.0,10.828686,10828.686 +27126,2025-03-10T10:32:57.680698-07:00,2431.0,10.835287,10835.287 +27127,2025-03-10T10:33:08.502321-07:00,2482.0,10.821623,10821.623 +27128,2025-03-10T10:33:19.332105-07:00,2481.0,10.829784,10829.784 +27129,2025-03-10T10:33:30.159641-07:00,2483.0,10.827536,10827.536 +27130,2025-03-10T10:33:40.992712-07:00,2443.0,10.833071,10833.071 +27131,2025-03-10T10:33:51.824104-07:00,2406.0,10.831392,10831.392 +27132,2025-03-10T10:34:02.653093-07:00,2408.0,10.828989,10828.989 +27133,2025-03-10T10:34:13.490957-07:00,2463.0,10.837864,10837.864 +27134,2025-03-10T10:34:24.317720-07:00,2474.0,10.826763,10826.763 +27135,2025-03-10T10:34:35.148723-07:00,2525.0,10.831003,10831.003 +27136,2025-03-10T10:34:45.986458-07:00,2520.0,10.837735,10837.735 +27137,2025-03-10T10:34:56.812714-07:00,2475.0,10.826256,10826.256 +27138,2025-03-10T10:35:07.650115-07:00,2480.0,10.837401,10837.401 +27139,2025-03-10T10:35:18.478746-07:00,2540.0,10.828631,10828.631 +27140,2025-03-10T10:35:29.301917-07:00,2542.0,10.823171,10823.171 +27141,2025-03-10T10:35:40.133962-07:00,2530.0,10.832045,10832.045 +27142,2025-03-10T10:35:50.965075-07:00,2495.0,10.831113,10831.113 +27143,2025-03-10T10:36:01.797725-07:00,2559.0,10.83265,10832.65 +27144,2025-03-10T10:36:12.619100-07:00,2530.0,10.821375,10821.375 +27145,2025-03-10T10:36:23.449720-07:00,2557.0,10.83062,10830.62 +27146,2025-03-10T10:36:34.281081-07:00,2525.0,10.831361,10831.361 +27147,2025-03-10T10:36:45.111720-07:00,2544.0,10.830639,10830.639 +27148,2025-03-10T10:36:55.940731-07:00,2499.0,10.829011,10829.011 +27149,2025-03-10T10:37:06.770733-07:00,2528.0,10.830002,10830.002 +27150,2025-03-10T10:37:17.597198-07:00,2518.0,10.826465,10826.465 +27151,2025-03-10T10:37:28.429729-07:00,2480.0,10.832531,10832.531 +27152,2025-03-10T10:37:39.254977-07:00,2529.0,10.825248,10825.248 +27153,2025-03-10T10:37:50.073227-07:00,2477.0,10.81825,10818.25 +27154,2025-03-10T10:38:00.900197-07:00,2471.0,10.82697,10826.97 +27155,2025-03-10T10:38:11.727357-07:00,2497.0,10.82716,10827.16 +27156,2025-03-10T10:38:22.559958-07:00,2501.0,10.832601,10832.601 +27157,2025-03-10T10:38:33.376081-07:00,2519.0,10.816123,10816.123 +27158,2025-03-10T10:38:44.203718-07:00,2510.0,10.827637,10827.637 +27159,2025-03-10T10:38:55.035724-07:00,2525.0,10.832006,10832.006 +27160,2025-03-10T10:39:05.863720-07:00,2514.0,10.827996,10827.996 +27161,2025-03-10T10:39:16.685706-07:00,2509.0,10.821986,10821.986 +27162,2025-03-10T10:39:27.510808-07:00,2501.0,10.825102,10825.102 +27163,2025-03-10T10:39:38.345778-07:00,2484.0,10.83497,10834.97 +27164,2025-03-10T10:39:49.166002-07:00,2496.0,10.820224,10820.224 +27165,2025-03-10T10:40:00.004287-07:00,2507.0,10.838285,10838.285 +27166,2025-03-10T10:40:10.834710-07:00,2445.0,10.830423,10830.423 +27167,2025-03-10T10:40:21.660869-07:00,2499.0,10.826159,10826.159 +27168,2025-03-10T10:40:32.491703-07:00,2497.0,10.830834,10830.834 +27169,2025-03-10T10:40:43.314973-07:00,2507.0,10.82327,10823.27 +27170,2025-03-10T10:40:54.148724-07:00,2511.0,10.833751,10833.751 +27171,2025-03-10T10:41:04.976268-07:00,2511.0,10.827544,10827.544 +27172,2025-03-10T10:41:15.799935-07:00,2513.0,10.823667,10823.667 +27173,2025-03-10T10:41:26.628605-07:00,2511.0,10.82867,10828.67 +27174,2025-03-10T10:41:37.464710-07:00,2519.0,10.836105,10836.105 +27175,2025-03-10T10:41:48.286993-07:00,2517.0,10.822283,10822.283 +27176,2025-03-10T10:41:59.117824-07:00,2502.0,10.830831,10830.831 +27177,2025-03-10T10:42:09.957787-07:00,2512.0,10.839963,10839.963 +27178,2025-03-10T10:42:20.781708-07:00,2512.0,10.823921,10823.921 +27179,2025-03-10T10:42:31.608770-07:00,2454.0,10.827062,10827.062 +27180,2025-03-10T10:42:42.444898-07:00,2526.0,10.836128,10836.128 +27181,2025-03-10T10:42:53.278972-07:00,2527.0,10.834074,10834.074 +27182,2025-03-10T10:43:04.099705-07:00,2493.0,10.820733,10820.733 +27183,2025-03-10T10:43:14.928773-07:00,2435.0,10.829068,10829.068 +27184,2025-03-10T10:43:25.764152-07:00,2490.0,10.835379,10835.379 +27185,2025-03-10T10:43:36.591732-07:00,2507.0,10.82758,10827.58 +27186,2025-03-10T10:43:47.420728-07:00,2521.0,10.828996,10828.996 +27187,2025-03-10T10:43:58.248990-07:00,2506.0,10.828262,10828.262 +27188,2025-03-10T10:44:09.082104-07:00,2489.0,10.833114,10833.114 +27189,2025-03-10T10:44:19.916783-07:00,2505.0,10.834679,10834.679 +27190,2025-03-10T10:44:30.745754-07:00,2497.0,10.828971,10828.971 +27191,2025-03-10T10:44:41.567781-07:00,2482.0,10.822027,10822.027 +27192,2025-03-10T10:44:52.397461-07:00,2531.0,10.82968,10829.68 +27193,2025-03-10T10:45:03.216043-07:00,2507.0,10.818582,10818.582 +27194,2025-03-10T10:45:14.054549-07:00,2543.0,10.838506,10838.506 +27195,2025-03-10T10:45:24.871934-07:00,2538.0,10.817385,10817.385 +27196,2025-03-10T10:45:35.699867-07:00,2475.0,10.827933,10827.933 +27197,2025-03-10T10:45:46.529316-07:00,2535.0,10.829449,10829.449 +27198,2025-03-10T10:45:57.347717-07:00,2515.0,10.818401,10818.401 +27199,2025-03-10T10:46:08.177355-07:00,2546.0,10.829638,10829.638 +27200,2025-03-10T10:46:19.006716-07:00,2480.0,10.829361,10829.361 +27201,2025-03-10T10:46:29.832674-07:00,2465.0,10.825958,10825.958 +27202,2025-03-10T10:46:40.654733-07:00,2531.0,10.822059,10822.059 +27203,2025-03-10T10:46:51.485976-07:00,2469.0,10.831243,10831.243 +27204,2025-03-10T10:47:02.314713-07:00,2544.0,10.828737,10828.737 +27205,2025-03-10T10:47:13.147919-07:00,2522.0,10.833206,10833.206 +27206,2025-03-10T10:47:23.972463-07:00,2512.0,10.824544,10824.544 +27207,2025-03-10T10:47:34.799146-07:00,2512.0,10.826683,10826.683 +27208,2025-03-10T10:47:45.632841-07:00,2559.0,10.833695,10833.695 +27209,2025-03-10T10:47:56.451725-07:00,2549.0,10.818884,10818.884 +27210,2025-03-10T10:48:07.287724-07:00,2519.0,10.835999,10835.999 +27211,2025-03-10T10:48:18.112726-07:00,2559.0,10.825002,10825.002 +27212,2025-03-10T10:48:28.953724-07:00,2512.0,10.840998,10840.998 +27213,2025-03-10T10:48:39.776418-07:00,2559.0,10.822694,10822.694 +27214,2025-03-10T10:48:50.605730-07:00,2559.0,10.829312,10829.312 +27215,2025-03-10T10:49:01.439069-07:00,2559.0,10.833339,10833.339 +27216,2025-03-10T10:49:12.261785-07:00,2530.0,10.822716,10822.716 +27217,2025-03-10T10:49:23.095337-07:00,2532.0,10.833552,10833.552 +27218,2025-03-10T10:49:33.925920-07:00,2585.0,10.830583,10830.583 +27219,2025-03-10T10:49:44.764875-07:00,2589.0,10.838955,10838.955 +27220,2025-03-10T10:49:55.596174-07:00,2559.0,10.831299,10831.299 +27221,2025-03-10T10:50:06.422043-07:00,2535.0,10.825869,10825.869 +27222,2025-03-10T10:50:17.251707-07:00,2554.0,10.829664,10829.664 +27223,2025-03-10T10:50:28.079002-07:00,2555.0,10.827295,10827.295 +27224,2025-03-10T10:50:38.911080-07:00,2553.0,10.832078,10832.078 +27225,2025-03-10T10:50:49.744081-07:00,2497.0,10.833001,10833.001 +27226,2025-03-10T10:51:00.567710-07:00,2514.0,10.823629,10823.629 +27227,2025-03-10T10:51:11.397880-07:00,2524.0,10.83017,10830.17 +27228,2025-03-10T10:51:22.221726-07:00,2487.0,10.823846,10823.846 +27229,2025-03-10T10:51:33.047258-07:00,2496.0,10.825532,10825.532 +27230,2025-03-10T10:51:43.868392-07:00,2534.0,10.821134,10821.134 +27231,2025-03-10T10:51:54.693776-07:00,2544.0,10.825384,10825.384 +27232,2025-03-10T10:52:05.520011-07:00,2480.0,10.826235,10826.235 +27233,2025-03-10T10:52:16.331954-07:00,2544.0,10.811943,10811.943 +27234,2025-03-10T10:52:27.160488-07:00,2493.0,10.828534,10828.534 +27235,2025-03-10T10:52:37.985061-07:00,2505.0,10.824573,10824.573 +27236,2025-03-10T10:52:48.802725-07:00,2542.0,10.817664,10817.664 +27237,2025-03-10T10:52:59.632720-07:00,2550.0,10.829995,10829.995 +27238,2025-03-10T10:53:10.463712-07:00,2555.0,10.830992,10830.992 +27239,2025-03-10T10:53:21.295292-07:00,2511.0,10.83158,10831.58 +27240,2025-03-10T10:53:32.121718-07:00,2528.0,10.826426,10826.426 +27241,2025-03-10T10:53:42.949760-07:00,2517.0,10.828042,10828.042 +27242,2025-03-10T10:53:53.782875-07:00,2497.0,10.833115,10833.115 +27243,2025-03-10T10:54:04.603104-07:00,2512.0,10.820229,10820.229 +27244,2025-03-10T10:54:15.434743-07:00,2559.0,10.831639,10831.639 +27245,2025-03-10T10:54:26.252078-07:00,2559.0,10.817335,10817.335 +27246,2025-03-10T10:54:37.077972-07:00,2559.0,10.825894,10825.894 +27247,2025-03-10T10:54:47.909018-07:00,2517.0,10.831046,10831.046 +27248,2025-03-10T10:54:58.739731-07:00,2491.0,10.830713,10830.713 +27249,2025-03-10T10:55:09.568079-07:00,2549.0,10.828348,10828.348 +27250,2025-03-10T10:55:20.399930-07:00,2513.0,10.831851,10831.851 +27251,2025-03-10T10:55:31.224759-07:00,2535.0,10.824829,10824.829 +27252,2025-03-10T10:55:42.062869-07:00,2508.0,10.83811,10838.11 +27253,2025-03-10T10:55:52.893992-07:00,2538.0,10.831123,10831.123 +27254,2025-03-10T10:56:03.715724-07:00,2475.0,10.821732,10821.732 +27255,2025-03-10T10:56:14.549380-07:00,2512.0,10.833656,10833.656 +27256,2025-03-10T10:56:25.385733-07:00,2519.0,10.836353,10836.353 +27257,2025-03-10T10:56:36.213724-07:00,2551.0,10.827991,10827.991 +27258,2025-03-10T10:56:47.046785-07:00,2531.0,10.833061,10833.061 +27259,2025-03-10T10:56:57.877786-07:00,2515.0,10.831001,10831.001 +27260,2025-03-10T10:57:08.708063-07:00,2541.0,10.830277,10830.277 +27261,2025-03-10T10:57:19.529109-07:00,2545.0,10.821046,10821.046 +27262,2025-03-10T10:57:30.362285-07:00,2545.0,10.833176,10833.176 +27263,2025-03-10T10:57:41.192732-07:00,2512.0,10.830447,10830.447 +27264,2025-03-10T10:57:52.014719-07:00,2544.0,10.821987,10821.987 +27265,2025-03-10T10:58:02.844759-07:00,2506.0,10.83004,10830.04 +27266,2025-03-10T10:58:13.672014-07:00,2493.0,10.827255,10827.255 +27267,2025-03-10T10:58:24.499303-07:00,2538.0,10.827289,10827.289 +27268,2025-03-10T10:58:35.325721-07:00,2517.0,10.826418,10826.418 +27269,2025-03-10T10:58:46.154998-07:00,2503.0,10.829277,10829.277 +27270,2025-03-10T10:58:56.991928-07:00,2542.0,10.83693,10836.93 +27271,2025-03-10T10:59:07.819729-07:00,2527.0,10.827801,10827.801 +27272,2025-03-10T10:59:18.655511-07:00,2491.0,10.835782,10835.782 +27273,2025-03-10T10:59:29.474729-07:00,2515.0,10.819218,10819.218 +27274,2025-03-10T10:59:40.308773-07:00,2543.0,10.834044,10834.044 +27275,2025-03-10T10:59:51.135805-07:00,2535.0,10.827032,10827.032 +27276,2025-03-10T11:00:01.973319-07:00,2530.0,10.837514,10837.514 +27277,2025-03-10T11:00:12.791978-07:00,2481.0,10.818659,10818.659 +27278,2025-03-10T11:00:23.624185-07:00,2466.0,10.832207,10832.207 +27279,2025-03-10T11:00:34.460798-07:00,2439.0,10.836613,10836.613 +27280,2025-03-10T11:00:45.294071-07:00,2480.0,10.833273,10833.273 +27281,2025-03-10T11:00:56.107981-07:00,2501.0,10.81391,10813.91 +27282,2025-03-10T11:01:06.935893-07:00,2476.0,10.827912,10827.912 +27283,2025-03-10T11:01:17.764873-07:00,2469.0,10.82898,10828.98 +27284,2025-03-10T11:01:28.603131-07:00,2493.0,10.838258,10838.258 +27285,2025-03-10T11:01:39.428952-07:00,2458.0,10.825821,10825.821 +27286,2025-03-10T11:01:50.255768-07:00,2499.0,10.826816,10826.816 +27287,2025-03-10T11:02:01.091090-07:00,2475.0,10.835322,10835.322 +27288,2025-03-10T11:02:11.912872-07:00,2470.0,10.821782,10821.782 +27289,2025-03-10T11:02:22.746049-07:00,2503.0,10.833177,10833.177 +27290,2025-03-10T11:02:33.584051-07:00,2500.0,10.838002,10838.002 +27291,2025-03-10T11:02:44.407932-07:00,2494.0,10.823881,10823.881 +27292,2025-03-10T11:02:55.227928-07:00,2471.0,10.819996,10819.996 +27293,2025-03-10T11:03:06.059732-07:00,2438.0,10.831804,10831.804 +27294,2025-03-10T11:03:16.886569-07:00,2503.0,10.826837,10826.837 +27295,2025-03-10T11:03:27.707067-07:00,2459.0,10.820498,10820.498 +27296,2025-03-10T11:03:38.537920-07:00,2448.0,10.830853,10830.853 +27297,2025-03-10T11:03:49.365709-07:00,2493.0,10.827789,10827.789 +27298,2025-03-10T11:04:00.200856-07:00,2426.0,10.835147,10835.147 +27299,2025-03-10T11:04:11.022065-07:00,2441.0,10.821209,10821.209 +27300,2025-03-10T11:04:21.849715-07:00,2453.0,10.82765,10827.65 +27301,2025-03-10T11:04:32.671978-07:00,2435.0,10.822263,10822.263 +27302,2025-03-10T11:04:43.494725-07:00,2448.0,10.822747,10822.747 +27303,2025-03-10T11:04:54.325347-07:00,2501.0,10.830622,10830.622 +27304,2025-03-10T11:05:05.144212-07:00,2510.0,10.818865,10818.865 +27305,2025-03-10T11:05:15.978032-07:00,2512.0,10.83382,10833.82 +27306,2025-03-10T11:05:26.794211-07:00,2487.0,10.816179,10816.179 +27307,2025-03-10T11:05:37.623959-07:00,2475.0,10.829748,10829.748 +27308,2025-03-10T11:05:48.448275-07:00,2512.0,10.824316,10824.316 +27309,2025-03-10T11:05:59.271720-07:00,2446.0,10.823445,10823.445 +27310,2025-03-10T11:06:10.087800-07:00,2502.0,10.81608,10816.08 +27311,2025-03-10T11:06:20.914886-07:00,2454.0,10.827086,10827.086 +27312,2025-03-10T11:06:31.732744-07:00,2531.0,10.817858,10817.858 +27313,2025-03-10T11:06:42.555720-07:00,2527.0,10.822976,10822.976 +27314,2025-03-10T11:06:53.377735-07:00,2525.0,10.822015,10822.015 +27315,2025-03-10T11:07:04.190766-07:00,2513.0,10.813031,10813.031 +27316,2025-03-10T11:07:15.012729-07:00,2505.0,10.821963,10821.963 +27317,2025-03-10T11:07:25.835077-07:00,2535.0,10.822348,10822.348 +27318,2025-03-10T11:07:36.653016-07:00,2501.0,10.817939,10817.939 +27319,2025-03-10T11:07:47.487268-07:00,2510.0,10.834252,10834.252 +27320,2025-03-10T11:07:58.306991-07:00,2503.0,10.819723,10819.723 +27321,2025-03-10T11:08:09.142585-07:00,2501.0,10.835594,10835.594 +27322,2025-03-10T11:08:19.966939-07:00,2471.0,10.824354,10824.354 +27323,2025-03-10T11:08:30.775730-07:00,2527.0,10.808791,10808.791 +27324,2025-03-10T11:08:41.596774-07:00,2506.0,10.821044,10821.044 +27325,2025-03-10T11:08:52.429970-07:00,2523.0,10.833196,10833.196 +27326,2025-03-10T11:09:03.243854-07:00,2487.0,10.813884,10813.884 +27327,2025-03-10T11:09:14.072954-07:00,2512.0,10.8291,10829.1 +27328,2025-03-10T11:09:24.888950-07:00,2507.0,10.815996,10815.996 +27329,2025-03-10T11:09:35.720471-07:00,2515.0,10.831521,10831.521 +27330,2025-03-10T11:09:46.540878-07:00,2480.0,10.820407,10820.407 +27331,2025-03-10T11:09:57.375774-07:00,2455.0,10.834896,10834.896 +27332,2025-03-10T11:10:08.200723-07:00,2479.0,10.824949,10824.949 +27333,2025-03-10T11:10:19.021797-07:00,2474.0,10.821074,10821.074 +27334,2025-03-10T11:10:29.845050-07:00,2443.0,10.823253,10823.253 +27335,2025-03-10T11:10:40.671957-07:00,2469.0,10.826907,10826.907 +27336,2025-03-10T11:10:51.490988-07:00,2476.0,10.819031,10819.031 +27337,2025-03-10T11:11:02.317708-07:00,2459.0,10.82672,10826.72 +27338,2025-03-10T11:11:13.143724-07:00,2431.0,10.826016,10826.016 +27339,2025-03-10T11:11:23.970034-07:00,2463.0,10.82631,10826.31 +27340,2025-03-10T11:11:34.787712-07:00,2437.0,10.817678,10817.678 +27341,2025-03-10T11:11:45.609836-07:00,2485.0,10.822124,10822.124 +27342,2025-03-10T11:11:56.426661-07:00,2393.0,10.816825,10816.825 +27343,2025-03-10T11:12:07.248721-07:00,2384.0,10.82206,10822.06 +27344,2025-03-10T11:12:18.067287-07:00,2461.0,10.818566,10818.566 +27345,2025-03-10T11:12:28.893308-07:00,2479.0,10.826021,10826.021 +27346,2025-03-10T11:12:39.718991-07:00,2473.0,10.825683,10825.683 +27347,2025-03-10T11:12:50.540040-07:00,2363.0,10.821049,10821.049 +27348,2025-03-10T11:13:01.360011-07:00,2445.0,10.819971,10819.971 +27349,2025-03-10T11:13:12.179718-07:00,2410.0,10.819707,10819.707 +27350,2025-03-10T11:13:23.005036-07:00,2367.0,10.825318,10825.318 +27351,2025-03-10T11:13:33.826936-07:00,2403.0,10.8219,10821.9 +27352,2025-03-10T11:13:44.663020-07:00,2402.0,10.836084,10836.084 +27353,2025-03-10T11:13:55.486154-07:00,2347.0,10.823134,10823.134 +27354,2025-03-10T11:14:06.315667-07:00,2405.0,10.829513,10829.513 +27355,2025-03-10T11:14:17.144721-07:00,2396.0,10.829054,10829.054 +27356,2025-03-10T11:14:27.973032-07:00,2363.0,10.828311,10828.311 +27357,2025-03-10T11:14:38.792728-07:00,2424.0,10.819696,10819.696 +27358,2025-03-10T11:14:49.620067-07:00,2369.0,10.827339,10827.339 +27359,2025-03-10T11:15:00.456733-07:00,2427.0,10.836666,10836.666 +27360,2025-03-10T11:15:11.281724-07:00,2413.0,10.824991,10824.991 +27361,2025-03-10T11:15:22.114966-07:00,2355.0,10.833242,10833.242 +27362,2025-03-10T11:15:32.933711-07:00,2355.0,10.818745,10818.745 +27363,2025-03-10T11:15:43.772614-07:00,2427.0,10.838903,10838.903 +27364,2025-03-10T11:15:54.603222-07:00,2387.0,10.830608,10830.608 +27365,2025-03-10T11:16:05.432734-07:00,2351.0,10.829512,10829.512 +27366,2025-03-10T11:16:16.257773-07:00,2326.0,10.825039,10825.039 +27367,2025-03-10T11:16:27.086739-07:00,2352.0,10.828966,10828.966 +27368,2025-03-10T11:16:37.922330-07:00,2382.0,10.835591,10835.591 +27369,2025-03-10T11:16:48.747719-07:00,2369.0,10.825389,10825.389 +27370,2025-03-10T11:16:59.577065-07:00,2305.0,10.829346,10829.346 +27371,2025-03-10T11:17:10.402986-07:00,2358.0,10.825921,10825.921 +27372,2025-03-10T11:17:21.234210-07:00,2374.0,10.831224,10831.224 +27373,2025-03-10T11:17:32.049743-07:00,2320.0,10.815533,10815.533 +27374,2025-03-10T11:17:42.882844-07:00,2381.0,10.833101,10833.101 +27375,2025-03-10T11:17:53.701817-07:00,2337.0,10.818973,10818.973 +27376,2025-03-10T11:18:04.533814-07:00,2337.0,10.831997,10831.997 +27377,2025-03-10T11:18:15.364776-07:00,2343.0,10.830962,10830.962 +27378,2025-03-10T11:18:26.190966-07:00,2304.0,10.82619,10826.19 +27379,2025-03-10T11:18:37.017308-07:00,2320.0,10.826342,10826.342 +27380,2025-03-10T11:18:47.843718-07:00,2316.0,10.82641,10826.41 +27381,2025-03-10T11:18:58.674022-07:00,2282.0,10.830304,10830.304 +27382,2025-03-10T11:19:09.505799-07:00,2258.0,10.831777,10831.777 +27383,2025-03-10T11:19:20.338087-07:00,2306.0,10.832288,10832.288 +27384,2025-03-10T11:19:31.170287-07:00,2288.0,10.8322,10832.2 +27385,2025-03-10T11:19:41.991117-07:00,2281.0,10.82083,10820.83 +27386,2025-03-10T11:19:52.822731-07:00,2277.0,10.831614,10831.614 +27387,2025-03-10T11:20:03.652724-07:00,2267.0,10.829993,10829.993 +27388,2025-03-10T11:20:14.477802-07:00,2252.0,10.825078,10825.078 +27389,2025-03-10T11:20:25.313785-07:00,2213.0,10.835983,10835.983 +27390,2025-03-10T11:20:36.137977-07:00,2271.0,10.824192,10824.192 +27391,2025-03-10T11:20:46.974729-07:00,2269.0,10.836752,10836.752 +27392,2025-03-10T11:20:57.799859-07:00,2265.0,10.82513,10825.13 +27393,2025-03-10T11:21:08.632734-07:00,2220.0,10.832875,10832.875 +27394,2025-03-10T11:21:19.465099-07:00,2288.0,10.832365,10832.365 +27395,2025-03-10T11:21:30.291736-07:00,2251.0,10.826637,10826.637 +27396,2025-03-10T11:21:41.122894-07:00,2288.0,10.831158,10831.158 +27397,2025-03-10T11:21:51.949970-07:00,2213.0,10.827076,10827.076 +27398,2025-03-10T11:22:02.774711-07:00,2283.0,10.824741,10824.741 +27399,2025-03-10T11:22:13.612040-07:00,2266.0,10.837329,10837.329 +27400,2025-03-10T11:22:24.439730-07:00,2237.0,10.82769,10827.69 +27401,2025-03-10T11:22:35.269855-07:00,2254.0,10.830125,10830.125 +27402,2025-03-10T11:22:46.094853-07:00,2206.0,10.824998,10824.998 +27403,2025-03-10T11:22:56.921883-07:00,2192.0,10.82703,10827.03 +27404,2025-03-10T11:23:07.751733-07:00,2230.0,10.82985,10829.85 +27405,2025-03-10T11:23:18.584988-07:00,2175.0,10.833255,10833.255 +27406,2025-03-10T11:23:29.417121-07:00,2190.0,10.832133,10832.133 +27407,2025-03-10T11:23:40.242966-07:00,2159.0,10.825845,10825.845 +27408,2025-03-10T11:23:51.067728-07:00,2191.0,10.824762,10824.762 +27409,2025-03-10T11:24:01.899710-07:00,2126.0,10.831982,10831.982 +27410,2025-03-10T11:24:12.725318-07:00,2146.0,10.825608,10825.608 +27411,2025-03-10T11:24:23.558734-07:00,2173.0,10.833416,10833.416 +27412,2025-03-10T11:24:34.388581-07:00,2167.0,10.829847,10829.847 +27413,2025-03-10T11:24:45.216733-07:00,2115.0,10.828152,10828.152 +27414,2025-03-10T11:24:56.048804-07:00,2114.0,10.832071,10832.071 +27415,2025-03-10T11:25:06.873970-07:00,2146.0,10.825166,10825.166 +27416,2025-03-10T11:25:17.693976-07:00,2083.0,10.820006,10820.006 +27417,2025-03-10T11:25:28.531878-07:00,2141.0,10.837902,10837.902 +27418,2025-03-10T11:25:39.352718-07:00,2115.0,10.82084,10820.84 +27419,2025-03-10T11:25:50.183059-07:00,2151.0,10.830341,10830.341 +27420,2025-03-10T11:26:01.008735-07:00,2174.0,10.825676,10825.676 +27421,2025-03-10T11:26:11.840915-07:00,2198.0,10.83218,10832.18 +27422,2025-03-10T11:26:22.668669-07:00,2209.0,10.827754,10827.754 +27423,2025-03-10T11:26:33.500020-07:00,2189.0,10.831351,10831.351 +27424,2025-03-10T11:26:44.329900-07:00,2197.0,10.82988,10829.88 +27425,2025-03-10T11:26:55.150746-07:00,2211.0,10.820846,10820.846 +27426,2025-03-10T11:27:05.981727-07:00,2199.0,10.830981,10830.981 +27427,2025-03-10T11:27:16.810071-07:00,2194.0,10.828344,10828.344 +27428,2025-03-10T11:27:27.639953-07:00,2187.0,10.829882,10829.882 +27429,2025-03-10T11:27:38.472789-07:00,2256.0,10.832836,10832.836 +27430,2025-03-10T11:27:49.303930-07:00,2256.0,10.831141,10831.141 +27431,2025-03-10T11:28:00.135737-07:00,2329.0,10.831807,10831.807 +27432,2025-03-10T11:28:10.959944-07:00,2331.0,10.824207,10824.207 +27433,2025-03-10T11:28:21.789038-07:00,2275.0,10.829094,10829.094 +27434,2025-03-10T11:28:32.619773-07:00,2340.0,10.830735,10830.735 +27435,2025-03-10T11:28:43.450945-07:00,2273.0,10.831172,10831.172 +27436,2025-03-10T11:28:54.287956-07:00,2299.0,10.837011,10837.011 +27437,2025-03-10T11:29:05.120975-07:00,2305.0,10.833019,10833.019 +27438,2025-03-10T11:29:15.942045-07:00,2333.0,10.82107,10821.07 +27439,2025-03-10T11:29:26.777724-07:00,2297.0,10.835679,10835.679 +27440,2025-03-10T11:29:37.615067-07:00,2272.0,10.837343,10837.343 +27441,2025-03-10T11:29:48.440730-07:00,2309.0,10.825663,10825.663 +27442,2025-03-10T11:29:59.267040-07:00,2268.0,10.82631,10826.31 +27443,2025-03-10T11:30:10.099061-07:00,2333.0,10.832021,10832.021 +27444,2025-03-10T11:30:20.936739-07:00,2334.0,10.837678,10837.678 +27445,2025-03-10T11:30:31.763728-07:00,2315.0,10.826989,10826.989 +27446,2025-03-10T11:30:42.589709-07:00,2337.0,10.825981,10825.981 +27447,2025-03-10T11:30:53.413970-07:00,2288.0,10.824261,10824.261 +27448,2025-03-10T11:31:04.245767-07:00,2306.0,10.831797,10831.797 +27449,2025-03-10T11:31:15.070723-07:00,2291.0,10.824956,10824.956 +27450,2025-03-10T11:31:25.902734-07:00,2307.0,10.832011,10832.011 +27451,2025-03-10T11:31:36.735769-07:00,2304.0,10.833035,10833.035 +27452,2025-03-10T11:31:47.567735-07:00,2289.0,10.831966,10831.966 +27453,2025-03-10T11:31:58.391922-07:00,2255.0,10.824187,10824.187 +27454,2025-03-10T11:32:09.217792-07:00,2275.0,10.82587,10825.87 +27455,2025-03-10T11:32:20.049769-07:00,2269.0,10.831977,10831.977 +27456,2025-03-10T11:32:30.871912-07:00,2309.0,10.822143,10822.143 +27457,2025-03-10T11:32:41.700117-07:00,2231.0,10.828205,10828.205 +27458,2025-03-10T11:32:52.533953-07:00,2294.0,10.833836,10833.836 +27459,2025-03-10T11:33:03.372662-07:00,2224.0,10.838709,10838.709 +27460,2025-03-10T11:33:14.197021-07:00,2235.0,10.824359,10824.359 +27461,2025-03-10T11:33:25.037461-07:00,2293.0,10.84044,10840.44 +27462,2025-03-10T11:33:35.864867-07:00,2297.0,10.827406,10827.406 +27463,2025-03-10T11:33:46.694071-07:00,2295.0,10.829204,10829.204 +27464,2025-03-10T11:33:57.519734-07:00,2261.0,10.825663,10825.663 +27465,2025-03-10T11:34:08.351006-07:00,2275.0,10.831272,10831.272 +27466,2025-03-10T11:34:19.182928-07:00,2303.0,10.831922,10831.922 +27467,2025-03-10T11:34:30.014826-07:00,2294.0,10.831898,10831.898 +27468,2025-03-10T11:34:40.844729-07:00,2233.0,10.829903,10829.903 +27469,2025-03-10T11:34:51.671125-07:00,2291.0,10.826396,10826.396 +27470,2025-03-10T11:35:02.503034-07:00,2277.0,10.831909,10831.909 +27471,2025-03-10T11:35:13.333732-07:00,2274.0,10.830698,10830.698 +27472,2025-03-10T11:35:24.160729-07:00,2250.0,10.826997,10826.997 +27473,2025-03-10T11:35:34.992951-07:00,2253.0,10.832222,10832.222 +27474,2025-03-10T11:35:45.817861-07:00,2234.0,10.82491,10824.91 +27475,2025-03-10T11:35:56.650250-07:00,2209.0,10.832389,10832.389 +27476,2025-03-10T11:36:07.481774-07:00,2229.0,10.831524,10831.524 +27477,2025-03-10T11:36:18.314727-07:00,2241.0,10.832953,10832.953 +27478,2025-03-10T11:36:29.157092-07:00,2225.0,10.842365,10842.365 +27479,2025-03-10T11:36:39.987785-07:00,2256.0,10.830693,10830.693 +27480,2025-03-10T11:36:50.826730-07:00,2244.0,10.838945,10838.945 +27481,2025-03-10T11:37:01.652762-07:00,2258.0,10.826032,10826.032 +27482,2025-03-10T11:37:12.496004-07:00,2214.0,10.843242,10843.242 +27483,2025-03-10T11:37:23.327102-07:00,2247.0,10.831098,10831.098 +27484,2025-03-10T11:37:34.154833-07:00,2251.0,10.827731,10827.731 +27485,2025-03-10T11:37:44.994830-07:00,2176.0,10.839997,10839.997 +27486,2025-03-10T11:37:55.822853-07:00,2223.0,10.828023,10828.023 +27487,2025-03-10T11:38:06.654971-07:00,2191.0,10.832118,10832.118 +27488,2025-03-10T11:38:17.486766-07:00,2163.0,10.831795,10831.795 +27489,2025-03-10T11:38:28.316726-07:00,2173.0,10.82996,10829.96 +27490,2025-03-10T11:38:39.149065-07:00,2222.0,10.832339,10832.339 +27491,2025-03-10T11:38:49.973776-07:00,2222.0,10.824711,10824.711 +27492,2025-03-10T11:39:00.808189-07:00,2215.0,10.834413,10834.413 +27493,2025-03-10T11:39:11.637060-07:00,2202.0,10.828871,10828.871 +27494,2025-03-10T11:39:22.477413-07:00,2150.0,10.840353,10840.353 +27495,2025-03-10T11:39:33.301266-07:00,2186.0,10.823853,10823.853 +27496,2025-03-10T11:39:44.129050-07:00,2171.0,10.827784,10827.784 +27497,2025-03-10T11:39:54.964722-07:00,2171.0,10.835672,10835.672 +27498,2025-03-10T11:40:05.792728-07:00,2163.0,10.828006,10828.006 +27499,2025-03-10T11:40:16.622079-07:00,2165.0,10.829351,10829.351 +27500,2025-03-10T11:40:27.448042-07:00,2128.0,10.825963,10825.963 +27501,2025-03-10T11:40:38.286881-07:00,2093.0,10.838839,10838.839 +27502,2025-03-10T11:40:49.116709-07:00,2063.0,10.829828,10829.828 +27503,2025-03-10T11:40:59.944521-07:00,2128.0,10.827812,10827.812 +27504,2025-03-10T11:41:10.772706-07:00,2059.0,10.828185,10828.185 +27505,2025-03-10T11:41:21.614077-07:00,2111.0,10.841371,10841.371 +27506,2025-03-10T11:41:32.444965-07:00,2047.0,10.830888,10830.888 +27507,2025-03-10T11:41:43.281773-07:00,2098.0,10.836808,10836.808 +27508,2025-03-10T11:41:54.106774-07:00,2128.0,10.825001,10825.001 +27509,2025-03-10T11:42:04.944815-07:00,2125.0,10.838041,10838.041 +27510,2025-03-10T11:42:15.777918-07:00,2097.0,10.833103,10833.103 +27511,2025-03-10T11:42:26.605959-07:00,2135.0,10.828041,10828.041 +27512,2025-03-10T11:42:37.435036-07:00,2071.0,10.829077,10829.077 +27513,2025-03-10T11:42:48.261724-07:00,2083.0,10.826688,10826.688 +27514,2025-03-10T11:42:59.094556-07:00,2163.0,10.832832,10832.832 +27515,2025-03-10T11:43:09.926732-07:00,2179.0,10.832176,10832.176 +27516,2025-03-10T11:43:20.757956-07:00,2174.0,10.831224,10831.224 +27517,2025-03-10T11:43:31.594194-07:00,2127.0,10.836238,10836.238 +27518,2025-03-10T11:43:42.428134-07:00,2182.0,10.83394,10833.94 +27519,2025-03-10T11:43:53.256915-07:00,2178.0,10.828781,10828.781 +27520,2025-03-10T11:44:04.083709-07:00,2149.0,10.826794,10826.794 +27521,2025-03-10T11:44:14.922016-07:00,2193.0,10.838307,10838.307 +27522,2025-03-10T11:44:25.742741-07:00,2205.0,10.820725,10820.725 +27523,2025-03-10T11:44:36.585330-07:00,2167.0,10.842589,10842.589 +27524,2025-03-10T11:44:47.403217-07:00,2198.0,10.817887,10817.887 +27525,2025-03-10T11:44:58.231136-07:00,2133.0,10.827919,10827.919 +27526,2025-03-10T11:45:09.063724-07:00,2133.0,10.832588,10832.588 +27527,2025-03-10T11:45:19.894532-07:00,2183.0,10.830808,10830.808 +27528,2025-03-10T11:45:30.714730-07:00,2200.0,10.820198,10820.198 +27529,2025-03-10T11:45:41.539874-07:00,2198.0,10.825144,10825.144 +27530,2025-03-10T11:45:52.372791-07:00,2201.0,10.832917,10832.917 +27531,2025-03-10T11:46:03.209259-07:00,2160.0,10.836468,10836.468 +27532,2025-03-10T11:46:14.039970-07:00,2181.0,10.830711,10830.711 +27533,2025-03-10T11:46:24.867132-07:00,2202.0,10.827162,10827.162 +27534,2025-03-10T11:46:35.687956-07:00,2195.0,10.820824,10820.824 +27535,2025-03-10T11:46:46.518372-07:00,2176.0,10.830416,10830.416 +27536,2025-03-10T11:46:57.345723-07:00,2193.0,10.827351,10827.351 +27537,2025-03-10T11:47:08.170984-07:00,2182.0,10.825261,10825.261 +27538,2025-03-10T11:47:18.993059-07:00,2175.0,10.822075,10822.075 +27539,2025-03-10T11:47:29.829945-07:00,2128.0,10.836886,10836.886 +27540,2025-03-10T11:47:40.650986-07:00,2101.0,10.821041,10821.041 +27541,2025-03-10T11:47:51.481933-07:00,2127.0,10.830947,10830.947 +27542,2025-03-10T11:48:02.313307-07:00,2177.0,10.831374,10831.374 +27543,2025-03-10T11:48:13.133724-07:00,2130.0,10.820417,10820.417 +27544,2025-03-10T11:48:23.971021-07:00,2174.0,10.837297,10837.297 +27545,2025-03-10T11:48:34.800712-07:00,2186.0,10.829691,10829.691 +27546,2025-03-10T11:48:45.632739-07:00,2172.0,10.832027,10832.027 +27547,2025-03-10T11:48:56.459944-07:00,2157.0,10.827205,10827.205 +27548,2025-03-10T11:49:07.287734-07:00,2169.0,10.82779,10827.79 +27549,2025-03-10T11:49:18.119086-07:00,2127.0,10.831352,10831.352 +27550,2025-03-10T11:49:28.950739-07:00,2175.0,10.831653,10831.653 +27551,2025-03-10T11:49:39.781487-07:00,2157.0,10.830748,10830.748 +27552,2025-03-10T11:49:50.602732-07:00,2095.0,10.821245,10821.245 +27553,2025-03-10T11:50:01.436745-07:00,2095.0,10.834013,10834.013 +27554,2025-03-10T11:50:12.266032-07:00,2160.0,10.829287,10829.287 +27555,2025-03-10T11:50:23.085660-07:00,2137.0,10.819628,10819.628 +27556,2025-03-10T11:50:33.905287-07:00,2161.0,10.819627,10819.627 +27557,2025-03-10T11:50:44.738794-07:00,2143.0,10.833507,10833.507 +27558,2025-03-10T11:50:55.558064-07:00,2143.0,10.81927,10819.27 +27559,2025-03-10T11:51:06.390730-07:00,2118.0,10.832666,10832.666 +27560,2025-03-10T11:51:17.210769-07:00,2099.0,10.820039,10820.039 +27561,2025-03-10T11:51:28.035720-07:00,2103.0,10.824951,10824.951 +27562,2025-03-10T11:51:38.874187-07:00,2137.0,10.838467,10838.467 +27563,2025-03-10T11:51:49.693296-07:00,2131.0,10.819109,10819.109 +27564,2025-03-10T11:52:00.527021-07:00,2075.0,10.833725,10833.725 +27565,2025-03-10T11:52:11.357753-07:00,2132.0,10.830732,10830.732 +27566,2025-03-10T11:52:22.183720-07:00,2128.0,10.825967,10825.967 +27567,2025-03-10T11:52:33.004777-07:00,2103.0,10.821057,10821.057 +27568,2025-03-10T11:52:43.833817-07:00,2081.0,10.82904,10829.04 +27569,2025-03-10T11:52:54.667788-07:00,2128.0,10.833971,10833.971 +27570,2025-03-10T11:53:05.495780-07:00,2035.0,10.827992,10827.992 +27571,2025-03-10T11:53:16.325857-07:00,2128.0,10.830077,10830.077 +27572,2025-03-10T11:53:27.159281-07:00,2095.0,10.833424,10833.424 +27573,2025-03-10T11:53:37.984988-07:00,2123.0,10.825707,10825.707 +27574,2025-03-10T11:53:48.808726-07:00,2128.0,10.823738,10823.738 +27575,2025-03-10T11:53:59.629956-07:00,2077.0,10.82123,10821.23 +27576,2025-03-10T11:54:10.459987-07:00,2128.0,10.830031,10830.031 +27577,2025-03-10T11:54:21.281552-07:00,2099.0,10.821565,10821.565 +27578,2025-03-10T11:54:32.108734-07:00,2109.0,10.827182,10827.182 +27579,2025-03-10T11:54:42.931724-07:00,2097.0,10.82299,10822.99 +27580,2025-03-10T11:54:53.762887-07:00,2130.0,10.831163,10831.163 +27581,2025-03-10T11:55:04.579711-07:00,2061.0,10.816824,10816.824 +27582,2025-03-10T11:55:15.409021-07:00,2138.0,10.82931,10829.31 +27583,2025-03-10T11:55:26.233722-07:00,2096.0,10.824701,10824.701 +27584,2025-03-10T11:55:37.071124-07:00,2143.0,10.837402,10837.402 +27585,2025-03-10T11:55:47.903724-07:00,2088.0,10.8326,10832.6 +27586,2025-03-10T11:55:58.731881-07:00,2127.0,10.828157,10828.157 +27587,2025-03-10T11:56:09.559779-07:00,2097.0,10.827898,10827.898 +27588,2025-03-10T11:56:20.389242-07:00,2135.0,10.829463,10829.463 +27589,2025-03-10T11:56:31.210734-07:00,2141.0,10.821492,10821.492 +27590,2025-03-10T11:56:42.040102-07:00,2141.0,10.829368,10829.368 +27591,2025-03-10T11:56:52.875722-07:00,2091.0,10.83562,10835.62 +27592,2025-03-10T11:57:03.696671-07:00,2128.0,10.820949,10820.949 +27593,2025-03-10T11:57:14.531731-07:00,2144.0,10.83506,10835.06 +27594,2025-03-10T11:57:25.358075-07:00,2065.0,10.826344,10826.344 +27595,2025-03-10T11:57:36.190730-07:00,2064.0,10.832655,10832.655 +27596,2025-03-10T11:57:47.029971-07:00,2118.0,10.839241,10839.241 +27597,2025-03-10T11:57:57.860108-07:00,2099.0,10.830137,10830.137 +27598,2025-03-10T11:58:08.689977-07:00,2109.0,10.829869,10829.869 +27599,2025-03-10T11:58:19.507784-07:00,2139.0,10.817807,10817.807 +27600,2025-03-10T11:58:30.344069-07:00,2099.0,10.836285,10836.285 +27601,2025-03-10T11:58:41.164898-07:00,2124.0,10.820829,10820.829 +27602,2025-03-10T11:58:51.996785-07:00,2110.0,10.831887,10831.887 +27603,2025-03-10T11:59:02.827083-07:00,2143.0,10.830298,10830.298 +27604,2025-03-10T11:59:13.653852-07:00,2128.0,10.826769,10826.769 +27605,2025-03-10T11:59:24.476722-07:00,2115.0,10.82287,10822.87 +27606,2025-03-10T11:59:35.299055-07:00,2100.0,10.822333,10822.333 +27607,2025-03-10T11:59:46.125813-07:00,2117.0,10.826758,10826.758 +27608,2025-03-10T11:59:56.953532-07:00,2146.0,10.827719,10827.719 +27609,2025-03-10T12:00:07.783421-07:00,2149.0,10.829889,10829.889 +27610,2025-03-10T12:00:18.603926-07:00,2159.0,10.820505,10820.505 +27611,2025-03-10T12:00:29.436148-07:00,2158.0,10.832222,10832.222 +27612,2025-03-10T12:00:40.265715-07:00,2149.0,10.829567,10829.567 +27613,2025-03-10T12:00:51.086077-07:00,2126.0,10.820362,10820.362 +27614,2025-03-10T12:01:01.915728-07:00,2161.0,10.829651,10829.651 +27615,2025-03-10T12:01:12.750919-07:00,2124.0,10.835191,10835.191 +27616,2025-03-10T12:01:23.568854-07:00,2128.0,10.817935,10817.935 +27617,2025-03-10T12:01:34.404711-07:00,2086.0,10.835857,10835.857 +27618,2025-03-10T12:01:45.235065-07:00,2103.0,10.830354,10830.354 +27619,2025-03-10T12:01:56.056142-07:00,2150.0,10.821077,10821.077 +27620,2025-03-10T12:02:06.887734-07:00,2143.0,10.831592,10831.592 +27621,2025-03-10T12:02:17.719228-07:00,2127.0,10.831494,10831.494 +27622,2025-03-10T12:02:28.547013-07:00,2147.0,10.827785,10827.785 +27623,2025-03-10T12:02:39.382450-07:00,2115.0,10.835437,10835.437 +27624,2025-03-10T12:02:50.200729-07:00,2121.0,10.818279,10818.279 +27625,2025-03-10T12:03:01.034728-07:00,2119.0,10.833999,10833.999 +27626,2025-03-10T12:03:11.854798-07:00,2141.0,10.82007,10820.07 +27627,2025-03-10T12:03:22.686263-07:00,2078.0,10.831465,10831.465 +27628,2025-03-10T12:03:33.513707-07:00,2157.0,10.827444,10827.444 +27629,2025-03-10T12:03:44.343927-07:00,2105.0,10.83022,10830.22 +27630,2025-03-10T12:03:55.165872-07:00,2128.0,10.821945,10821.945 +27631,2025-03-10T12:04:05.989583-07:00,2160.0,10.823711,10823.711 +27632,2025-03-10T12:04:16.823113-07:00,2151.0,10.83353,10833.53 +27633,2025-03-10T12:04:27.643110-07:00,2086.0,10.819997,10819.997 +27634,2025-03-10T12:04:38.475732-07:00,2127.0,10.832622,10832.622 +27635,2025-03-10T12:04:49.306361-07:00,2119.0,10.830629,10830.629 +27636,2025-03-10T12:05:00.131734-07:00,2099.0,10.825373,10825.373 +27637,2025-03-10T12:05:10.958775-07:00,2156.0,10.827041,10827.041 +27638,2025-03-10T12:05:21.781573-07:00,2149.0,10.822798,10822.798 +27639,2025-03-10T12:05:32.609733-07:00,2138.0,10.82816,10828.16 +27640,2025-03-10T12:05:43.432046-07:00,2077.0,10.822313,10822.313 +27641,2025-03-10T12:05:54.294184-07:00,2154.0,10.862138,10862.138 +27642,2025-03-10T12:06:05.125247-07:00,2154.0,10.831063,10831.063 +27643,2025-03-10T12:06:15.949048-07:00,2087.0,10.823801,10823.801 +27644,2025-03-10T12:06:26.777732-07:00,2149.0,10.828684,10828.684 +27645,2025-03-10T12:06:37.602560-07:00,2113.0,10.824828,10824.828 +27646,2025-03-10T12:06:48.439191-07:00,2096.0,10.836631,10836.631 +27647,2025-03-10T12:06:59.261241-07:00,2140.0,10.82205,10822.05 +27648,2025-03-10T12:07:10.091851-07:00,2127.0,10.83061,10830.61 +27649,2025-03-10T12:07:20.919176-07:00,2128.0,10.827325,10827.325 +27650,2025-03-10T12:07:31.738050-07:00,2135.0,10.818874,10818.874 +27651,2025-03-10T12:07:42.569317-07:00,2124.0,10.831267,10831.267 +27652,2025-03-10T12:07:53.396030-07:00,2119.0,10.826713,10826.713 +27653,2025-03-10T12:08:04.217521-07:00,2082.0,10.821491,10821.491 +27654,2025-03-10T12:08:15.054044-07:00,2113.0,10.836523,10836.523 +27655,2025-03-10T12:08:25.875387-07:00,2099.0,10.821343,10821.343 +27656,2025-03-10T12:08:36.705043-07:00,2128.0,10.829656,10829.656 +27657,2025-03-10T12:08:47.542914-07:00,2047.0,10.837871,10837.871 +27658,2025-03-10T12:08:58.369173-07:00,2105.0,10.826259,10826.259 +27659,2025-03-10T12:09:09.194288-07:00,2103.0,10.825115,10825.115 +27660,2025-03-10T12:09:20.026025-07:00,2112.0,10.831737,10831.737 +27661,2025-03-10T12:09:30.853152-07:00,2081.0,10.827127,10827.127 +27662,2025-03-10T12:09:41.679477-07:00,2090.0,10.826325,10826.325 +27663,2025-03-10T12:09:52.499881-07:00,2131.0,10.820404,10820.404 +27664,2025-03-10T12:10:03.338037-07:00,2096.0,10.838156,10838.156 +27665,2025-03-10T12:10:14.162234-07:00,2128.0,10.824197,10824.197 +27666,2025-03-10T12:10:24.995944-07:00,2095.0,10.83371,10833.71 +27667,2025-03-10T12:10:35.826180-07:00,2123.0,10.830236,10830.236 +27668,2025-03-10T12:10:46.660037-07:00,2094.0,10.833857,10833.857 +27669,2025-03-10T12:10:57.488431-07:00,2112.0,10.828394,10828.394 +27670,2025-03-10T12:11:08.311048-07:00,2087.0,10.822617,10822.617 +27671,2025-03-10T12:11:19.135203-07:00,2035.0,10.824155,10824.155 +27672,2025-03-10T12:11:29.956348-07:00,2091.0,10.821145,10821.145 +27673,2025-03-10T12:11:40.794234-07:00,2128.0,10.837886,10837.886 +27674,2025-03-10T12:11:51.609042-07:00,2127.0,10.814808,10814.808 +27675,2025-03-10T12:12:02.434047-07:00,2057.0,10.825005,10825.005 +27676,2025-03-10T12:12:13.266535-07:00,2095.0,10.832488,10832.488 +27677,2025-03-10T12:12:24.092284-07:00,2128.0,10.825749,10825.749 +27678,2025-03-10T12:12:34.918045-07:00,2080.0,10.825761,10825.761 +27679,2025-03-10T12:12:45.749281-07:00,2112.0,10.831236,10831.236 +27680,2025-03-10T12:12:56.575373-07:00,2086.0,10.826092,10826.092 +27681,2025-03-10T12:13:07.407177-07:00,2128.0,10.831804,10831.804 +27682,2025-03-10T12:13:18.239459-07:00,2112.0,10.832282,10832.282 +27683,2025-03-10T12:13:29.066507-07:00,2128.0,10.827048,10827.048 +27684,2025-03-10T12:13:39.902251-07:00,2078.0,10.835744,10835.744 +27685,2025-03-10T12:13:50.730220-07:00,2099.0,10.827969,10827.969 +27686,2025-03-10T12:14:01.553241-07:00,2128.0,10.823021,10823.021 +27687,2025-03-10T12:14:12.386098-07:00,2128.0,10.832857,10832.857 +27688,2025-03-10T12:14:23.218282-07:00,2098.0,10.832184,10832.184 +27689,2025-03-10T12:14:34.045448-07:00,2047.0,10.827166,10827.166 +27690,2025-03-10T12:14:44.871050-07:00,2075.0,10.825602,10825.602 +27691,2025-03-10T12:14:55.699043-07:00,2125.0,10.827993,10827.993 +27692,2025-03-10T12:15:06.535049-07:00,2095.0,10.836006,10836.006 +27693,2025-03-10T12:15:17.365322-07:00,2119.0,10.830273,10830.273 +27694,2025-03-10T12:15:28.198292-07:00,2123.0,10.83297,10832.97 +27695,2025-03-10T12:15:39.024235-07:00,2096.0,10.825943,10825.943 +27696,2025-03-10T12:15:49.861490-07:00,2128.0,10.837255,10837.255 +27697,2025-03-10T12:16:00.688521-07:00,2124.0,10.827031,10827.031 +27698,2025-03-10T12:16:11.523048-07:00,2111.0,10.834527,10834.527 +27699,2025-03-10T12:16:22.356261-07:00,2081.0,10.833213,10833.213 +27700,2025-03-10T12:16:33.184040-07:00,2100.0,10.827779,10827.779 +27701,2025-03-10T12:16:44.020044-07:00,2073.0,10.836004,10836.004 +27702,2025-03-10T12:16:54.841419-07:00,2093.0,10.821375,10821.375 +27703,2025-03-10T12:17:05.683286-07:00,2114.0,10.841867,10841.867 +27704,2025-03-10T12:17:16.512354-07:00,2065.0,10.829068,10829.068 +27705,2025-03-10T12:17:27.336043-07:00,2082.0,10.823689,10823.689 +27706,2025-03-10T12:17:38.168666-07:00,2102.0,10.832623,10832.623 +27707,2025-03-10T12:17:48.999043-07:00,2098.0,10.830377,10830.377 +27708,2025-03-10T12:17:59.819150-07:00,2119.0,10.820107,10820.107 +27709,2025-03-10T12:18:10.652388-07:00,2080.0,10.833238,10833.238 +27710,2025-03-10T12:18:21.472273-07:00,2074.0,10.819885,10819.885 +27711,2025-03-10T12:18:32.308043-07:00,2055.0,10.83577,10835.77 +27712,2025-03-10T12:18:43.128039-07:00,2064.0,10.819996,10819.996 +27713,2025-03-10T12:18:53.955438-07:00,2101.0,10.827399,10827.399 +27714,2025-03-10T12:19:04.777026-07:00,2111.0,10.821588,10821.588 +27715,2025-03-10T12:19:15.600137-07:00,2027.0,10.823111,10823.111 +27716,2025-03-10T12:19:26.428053-07:00,2099.0,10.827916,10827.916 +27717,2025-03-10T12:19:37.254457-07:00,2110.0,10.826404,10826.404 +27718,2025-03-10T12:19:48.068617-07:00,2112.0,10.81416,10814.16 +27719,2025-03-10T12:19:58.900034-07:00,2113.0,10.831417,10831.417 +27720,2025-03-10T12:20:09.732345-07:00,2068.0,10.832311,10832.311 +27721,2025-03-10T12:20:20.559097-07:00,2100.0,10.826752,10826.752 +27722,2025-03-10T12:20:31.389162-07:00,2065.0,10.830065,10830.065 +27723,2025-03-10T12:20:42.216044-07:00,2108.0,10.826882,10826.882 +27724,2025-03-10T12:20:53.046817-07:00,2101.0,10.830773,10830.773 +27725,2025-03-10T12:21:03.872023-07:00,2087.0,10.825206,10825.206 +27726,2025-03-10T12:21:14.702310-07:00,2108.0,10.830287,10830.287 +27727,2025-03-10T12:21:25.530104-07:00,2101.0,10.827794,10827.794 +27728,2025-03-10T12:21:36.364393-07:00,2095.0,10.834289,10834.289 +27729,2025-03-10T12:21:47.192274-07:00,2038.0,10.827881,10827.881 +27730,2025-03-10T12:21:58.025299-07:00,2031.0,10.833025,10833.025 +27731,2025-03-10T12:22:08.852097-07:00,2067.0,10.826798,10826.798 +27732,2025-03-10T12:22:19.689023-07:00,2003.0,10.836926,10836.926 +27733,2025-03-10T12:22:30.518043-07:00,2106.0,10.82902,10829.02 +27734,2025-03-10T12:22:41.352087-07:00,2033.0,10.834044,10834.044 +27735,2025-03-10T12:22:52.185348-07:00,2073.0,10.833261,10833.261 +27736,2025-03-10T12:23:03.010377-07:00,2045.0,10.825029,10825.029 +27737,2025-03-10T12:23:13.832283-07:00,2117.0,10.821906,10821.906 +27738,2025-03-10T12:23:24.665040-07:00,2055.0,10.832757,10832.757 +27739,2025-03-10T12:23:35.490558-07:00,2116.0,10.825518,10825.518 +27740,2025-03-10T12:23:46.325572-07:00,2089.0,10.835014,10835.014 +27741,2025-03-10T12:23:57.146366-07:00,2121.0,10.820794,10820.794 +27742,2025-03-10T12:24:07.981048-07:00,2112.0,10.834682,10834.682 +27743,2025-03-10T12:24:18.810404-07:00,2103.0,10.829356,10829.356 +27744,2025-03-10T12:24:29.642259-07:00,2035.0,10.831855,10831.855 +27745,2025-03-10T12:24:40.473335-07:00,2117.0,10.831076,10831.076 +27746,2025-03-10T12:24:51.299325-07:00,2076.0,10.82599,10825.99 +27747,2025-03-10T12:25:02.127563-07:00,2035.0,10.828238,10828.238 +27748,2025-03-10T12:25:12.951238-07:00,2043.0,10.823675,10823.675 +27749,2025-03-10T12:25:23.783717-07:00,2078.0,10.832479,10832.479 +27750,2025-03-10T12:25:34.611027-07:00,2119.0,10.82731,10827.31 +27751,2025-03-10T12:25:45.441658-07:00,2098.0,10.830631,10830.631 +27752,2025-03-10T12:25:56.268513-07:00,2114.0,10.826855,10826.855 +27753,2025-03-10T12:26:07.098509-07:00,2116.0,10.829996,10829.996 +27754,2025-03-10T12:26:17.924197-07:00,2027.0,10.825688,10825.688 +27755,2025-03-10T12:26:28.758142-07:00,2100.0,10.833945,10833.945 +27756,2025-03-10T12:26:39.588036-07:00,2064.0,10.829894,10829.894 +27757,2025-03-10T12:26:50.403038-07:00,2064.0,10.815002,10815.002 +27758,2025-03-10T12:27:01.234181-07:00,2101.0,10.831143,10831.143 +27759,2025-03-10T12:27:12.051283-07:00,2086.0,10.817102,10817.102 +27760,2025-03-10T12:27:22.875551-07:00,2098.0,10.824268,10824.268 +27761,2025-03-10T12:27:33.711490-07:00,2066.0,10.835939,10835.939 +27762,2025-03-10T12:27:44.528240-07:00,2041.0,10.81675,10816.75 +27763,2025-03-10T12:27:55.359531-07:00,2098.0,10.831291,10831.291 +27764,2025-03-10T12:28:06.179046-07:00,2078.0,10.819515,10819.515 +27765,2025-03-10T12:28:17.011367-07:00,2041.0,10.832321,10832.321 +27766,2025-03-10T12:28:27.832408-07:00,2070.0,10.821041,10821.041 +27767,2025-03-10T12:28:38.660528-07:00,2069.0,10.82812,10828.12 +27768,2025-03-10T12:28:49.491103-07:00,2109.0,10.830575,10830.575 +27769,2025-03-10T12:29:00.316383-07:00,2053.0,10.82528,10825.28 +27770,2025-03-10T12:29:11.148053-07:00,2065.0,10.83167,10831.67 +27771,2025-03-10T12:29:21.973872-07:00,2103.0,10.825819,10825.819 +27772,2025-03-10T12:29:32.807648-07:00,2034.0,10.833776,10833.776 +27773,2025-03-10T12:29:43.639311-07:00,2041.0,10.831663,10831.663 +27774,2025-03-10T12:29:54.462365-07:00,2057.0,10.823054,10823.054 +27775,2025-03-10T12:30:05.296513-07:00,2060.0,10.834148,10834.148 +27776,2025-03-10T12:30:16.121268-07:00,2094.0,10.824755,10824.755 +27777,2025-03-10T12:30:26.958303-07:00,2067.0,10.837035,10837.035 +27778,2025-03-10T12:30:37.789088-07:00,2096.0,10.830785,10830.785 +27779,2025-03-10T12:30:48.610400-07:00,2096.0,10.821312,10821.312 +27780,2025-03-10T12:30:59.442091-07:00,2086.0,10.831691,10831.691 +27781,2025-03-10T12:31:10.270290-07:00,2096.0,10.828199,10828.199 +27782,2025-03-10T12:31:21.101190-07:00,2046.0,10.8309,10830.9 +27783,2025-03-10T12:31:31.933470-07:00,2019.0,10.83228,10832.28 +27784,2025-03-10T12:31:42.763499-07:00,2064.0,10.830029,10830.029 +27785,2025-03-10T12:31:53.587185-07:00,2019.0,10.823686,10823.686 +27786,2025-03-10T12:32:04.411022-07:00,1974.0,10.823837,10823.837 +27787,2025-03-10T12:32:15.242713-07:00,2037.0,10.831691,10831.691 +27788,2025-03-10T12:32:26.074265-07:00,1951.0,10.831552,10831.552 +27789,2025-03-10T12:32:36.891639-07:00,1969.0,10.817374,10817.374 +27790,2025-03-10T12:32:47.715048-07:00,2023.0,10.823409,10823.409 +27791,2025-03-10T12:32:58.545746-07:00,1949.0,10.830698,10830.698 +27792,2025-03-10T12:33:09.371044-07:00,1973.0,10.825298,10825.298 +27793,2025-03-10T12:33:20.193200-07:00,1999.0,10.822156,10822.156 +27794,2025-03-10T12:33:31.020302-07:00,2000.0,10.827102,10827.102 +27795,2025-03-10T12:33:41.845193-07:00,1943.0,10.824891,10824.891 +27796,2025-03-10T12:33:52.671606-07:00,1974.0,10.826413,10826.413 +27797,2025-03-10T12:34:03.492288-07:00,1999.0,10.820682,10820.682 +27798,2025-03-10T12:34:14.323000-07:00,2015.0,10.830712,10830.712 +27799,2025-03-10T12:34:25.151045-07:00,1955.0,10.828045,10828.045 +27800,2025-03-10T12:34:35.983364-07:00,2006.0,10.832319,10832.319 +27801,2025-03-10T12:34:46.805110-07:00,1979.0,10.821746,10821.746 +27802,2025-03-10T12:34:57.637593-07:00,1923.0,10.832483,10832.483 +27803,2025-03-10T12:35:08.464294-07:00,1951.0,10.826701,10826.701 +27804,2025-03-10T12:35:19.300293-07:00,2013.0,10.835999,10835.999 +27805,2025-03-10T12:35:30.126263-07:00,2003.0,10.82597,10825.97 +27806,2025-03-10T12:35:40.954356-07:00,1943.0,10.828093,10828.093 +27807,2025-03-10T12:35:51.786050-07:00,1974.0,10.831694,10831.694 +27808,2025-03-10T12:36:02.612704-07:00,1968.0,10.826654,10826.654 +27809,2025-03-10T12:36:13.443690-07:00,2011.0,10.830986,10830.986 +27810,2025-03-10T12:36:24.268298-07:00,2053.0,10.824608,10824.608 +27811,2025-03-10T12:36:35.101048-07:00,2018.0,10.83275,10832.75 +27812,2025-03-10T12:36:45.928436-07:00,2032.0,10.827388,10827.388 +27813,2025-03-10T12:36:56.749045-07:00,2004.0,10.820609,10820.609 +27814,2025-03-10T12:37:07.579375-07:00,2033.0,10.83033,10830.33 +27815,2025-03-10T12:37:18.405290-07:00,2060.0,10.825915,10825.915 +27816,2025-03-10T12:37:29.227799-07:00,2043.0,10.822509,10822.509 +27817,2025-03-10T12:37:40.056631-07:00,2080.0,10.828832,10828.832 +27818,2025-03-10T12:37:50.878038-07:00,2083.0,10.821407,10821.407 +27819,2025-03-10T12:38:01.710431-07:00,2095.0,10.832393,10832.393 +27820,2025-03-10T12:38:12.530097-07:00,2033.0,10.819666,10819.666 +27821,2025-03-10T12:38:23.356049-07:00,2094.0,10.825952,10825.952 +27822,2025-03-10T12:38:34.181262-07:00,2081.0,10.825213,10825.213 +27823,2025-03-10T12:38:45.005742-07:00,2109.0,10.82448,10824.48 +27824,2025-03-10T12:38:55.833643-07:00,2110.0,10.827901,10827.901 +27825,2025-03-10T12:39:06.653254-07:00,2074.0,10.819611,10819.611 +27826,2025-03-10T12:39:17.484387-07:00,2034.0,10.831133,10831.133 +27827,2025-03-10T12:39:28.310094-07:00,2071.0,10.825707,10825.707 +27828,2025-03-10T12:39:39.138067-07:00,2106.0,10.827973,10827.973 +27829,2025-03-10T12:39:49.960207-07:00,2043.0,10.82214,10822.14 +27830,2025-03-10T12:40:00.789089-07:00,2111.0,10.828882,10828.882 +27831,2025-03-10T12:40:11.621222-07:00,2065.0,10.832133,10832.133 +27832,2025-03-10T12:40:22.453611-07:00,2043.0,10.832389,10832.389 +27833,2025-03-10T12:40:33.274040-07:00,2117.0,10.820429,10820.429 +27834,2025-03-10T12:40:44.112365-07:00,2069.0,10.838325,10838.325 +27835,2025-03-10T12:40:54.936081-07:00,2077.0,10.823716,10823.716 +27836,2025-03-10T12:41:05.762043-07:00,2078.0,10.825962,10825.962 +27837,2025-03-10T12:41:16.589040-07:00,2115.0,10.826997,10826.997 +27838,2025-03-10T12:41:27.420226-07:00,2073.0,10.831186,10831.186 +27839,2025-03-10T12:41:38.257294-07:00,2043.0,10.837068,10837.068 +27840,2025-03-10T12:41:49.078025-07:00,2022.0,10.820731,10820.731 +27841,2025-03-10T12:41:59.900034-07:00,2106.0,10.822009,10822.009 +27842,2025-03-10T12:42:10.725695-07:00,2041.0,10.825661,10825.661 +27843,2025-03-10T12:42:21.551130-07:00,2087.0,10.825435,10825.435 +27844,2025-03-10T12:42:32.386037-07:00,2023.0,10.834907,10834.907 +27845,2025-03-10T12:42:43.208367-07:00,2094.0,10.82233,10822.33 +27846,2025-03-10T12:42:54.029050-07:00,2087.0,10.820683,10820.683 +27847,2025-03-10T12:43:04.855025-07:00,2069.0,10.825975,10825.975 +27848,2025-03-10T12:43:15.692032-07:00,2027.0,10.837007,10837.007 +27849,2025-03-10T12:43:26.512223-07:00,2086.0,10.820191,10820.191 +27850,2025-03-10T12:43:37.347043-07:00,2085.0,10.83482,10834.82 +27851,2025-03-10T12:43:48.165038-07:00,2087.0,10.817995,10817.995 +27852,2025-03-10T12:43:58.992298-07:00,2009.0,10.82726,10827.26 +27853,2025-03-10T12:44:09.814375-07:00,2043.0,10.822077,10822.077 +27854,2025-03-10T12:44:20.644624-07:00,2043.0,10.830249,10830.249 +27855,2025-03-10T12:44:31.467298-07:00,2002.0,10.822674,10822.674 +27856,2025-03-10T12:44:42.279289-07:00,1984.0,10.811991,10811.991 +27857,2025-03-10T12:44:53.105533-07:00,2027.0,10.826244,10826.244 +27858,2025-03-10T12:45:03.925306-07:00,2026.0,10.819773,10819.773 +27859,2025-03-10T12:45:14.757784-07:00,2043.0,10.832478,10832.478 +27860,2025-03-10T12:45:25.577052-07:00,2041.0,10.819268,10819.268 +27861,2025-03-10T12:45:36.408094-07:00,1984.0,10.831042,10831.042 +27862,2025-03-10T12:45:47.221402-07:00,1974.0,10.813308,10813.308 +27863,2025-03-10T12:45:58.049464-07:00,1941.0,10.828062,10828.062 +27864,2025-03-10T12:46:08.874493-07:00,2026.0,10.825029,10825.029 +27865,2025-03-10T12:46:19.702025-07:00,1982.0,10.827532,10827.532 +27866,2025-03-10T12:46:30.526213-07:00,2006.0,10.824188,10824.188 +27867,2025-03-10T12:46:41.353191-07:00,2016.0,10.826978,10826.978 +27868,2025-03-10T12:46:52.186040-07:00,2000.0,10.832849,10832.849 +27869,2025-03-10T12:47:03.011091-07:00,1999.0,10.825051,10825.051 +27870,2025-03-10T12:47:13.837043-07:00,1949.0,10.825952,10825.952 +27871,2025-03-10T12:47:24.663521-07:00,1986.0,10.826478,10826.478 +27872,2025-03-10T12:47:35.483046-07:00,1907.0,10.819525,10819.525 +27873,2025-03-10T12:47:46.303095-07:00,1967.0,10.820049,10820.049 +27874,2025-03-10T12:47:57.130484-07:00,1889.0,10.827389,10827.389 +27875,2025-03-10T12:48:07.949272-07:00,1922.0,10.818788,10818.788 +27876,2025-03-10T12:48:18.776348-07:00,1973.0,10.827076,10827.076 +27877,2025-03-10T12:48:29.597043-07:00,1952.0,10.820695,10820.695 +27878,2025-03-10T12:48:40.414104-07:00,1958.0,10.817061,10817.061 +27879,2025-03-10T12:48:51.235374-07:00,1899.0,10.82127,10821.27 +27880,2025-03-10T12:49:02.068098-07:00,1985.0,10.832724,10832.724 +27881,2025-03-10T12:49:12.900670-07:00,1967.0,10.832572,10832.572 +27882,2025-03-10T12:49:23.721044-07:00,1968.0,10.820374,10820.374 +27883,2025-03-10T12:49:34.543158-07:00,1991.0,10.822114,10822.114 +27884,2025-03-10T12:49:45.362363-07:00,1990.0,10.819205,10819.205 +27885,2025-03-10T12:49:56.195173-07:00,1997.0,10.83281,10832.81 +27886,2025-03-10T12:50:07.020060-07:00,1993.0,10.824887,10824.887 +27887,2025-03-10T12:50:17.842124-07:00,1999.0,10.822064,10822.064 +27888,2025-03-10T12:50:28.665300-07:00,2004.0,10.823176,10823.176 +27889,2025-03-10T12:50:39.492038-07:00,2002.0,10.826738,10826.738 +27890,2025-03-10T12:50:50.313095-07:00,2015.0,10.821057,10821.057 +27891,2025-03-10T12:51:01.138427-07:00,2007.0,10.825332,10825.332 +27892,2025-03-10T12:51:11.971293-07:00,2023.0,10.832866,10832.866 +27893,2025-03-10T12:51:22.796095-07:00,2023.0,10.824802,10824.802 +27894,2025-03-10T12:51:33.623381-07:00,1966.0,10.827286,10827.286 +27895,2025-03-10T12:51:44.453428-07:00,1982.0,10.830047,10830.047 +27896,2025-03-10T12:51:55.280049-07:00,2026.0,10.826621,10826.621 +27897,2025-03-10T12:52:06.106667-07:00,2027.0,10.826618,10826.618 +27898,2025-03-10T12:52:16.939032-07:00,1954.0,10.832365,10832.365 +27899,2025-03-10T12:52:27.774871-07:00,1941.0,10.835839,10835.839 +27900,2025-03-10T12:52:38.596045-07:00,2032.0,10.821174,10821.174 +27901,2025-03-10T12:52:49.430267-07:00,1990.0,10.834222,10834.222 +27902,2025-03-10T12:53:00.260040-07:00,2036.0,10.829773,10829.773 +27903,2025-03-10T12:53:11.085398-07:00,1968.0,10.825358,10825.358 +27904,2025-03-10T12:53:21.909107-07:00,2047.0,10.823709,10823.709 +27905,2025-03-10T12:53:32.743093-07:00,2038.0,10.833986,10833.986 +27906,2025-03-10T12:53:43.571090-07:00,2064.0,10.827997,10827.997 +27907,2025-03-10T12:53:54.401411-07:00,2047.0,10.830321,10830.321 +27908,2025-03-10T12:54:05.226667-07:00,1963.0,10.825256,10825.256 +27909,2025-03-10T12:54:16.051346-07:00,2037.0,10.824679,10824.679 +27910,2025-03-10T12:54:26.884047-07:00,1971.0,10.832701,10832.701 +27911,2025-03-10T12:54:37.708564-07:00,1950.0,10.824517,10824.517 +27912,2025-03-10T12:54:48.533045-07:00,1982.0,10.824481,10824.481 +27913,2025-03-10T12:54:59.367367-07:00,2006.0,10.834322,10834.322 +27914,2025-03-10T12:55:10.189044-07:00,1940.0,10.821677,10821.677 +27915,2025-03-10T12:55:21.019630-07:00,2023.0,10.830586,10830.586 +27916,2025-03-10T12:55:31.842048-07:00,2013.0,10.822418,10822.418 +27917,2025-03-10T12:55:42.669319-07:00,1970.0,10.827271,10827.271 +27918,2025-03-10T12:55:53.491417-07:00,2021.0,10.822098,10822.098 +27919,2025-03-10T12:56:04.314311-07:00,1971.0,10.822894,10822.894 +27920,2025-03-10T12:56:15.140496-07:00,1959.0,10.826185,10826.185 +27921,2025-03-10T12:56:25.971041-07:00,2039.0,10.830545,10830.545 +27922,2025-03-10T12:56:36.790048-07:00,1968.0,10.819007,10819.007 +27923,2025-03-10T12:56:47.627027-07:00,2019.0,10.836979,10836.979 +27924,2025-03-10T12:56:58.450093-07:00,2017.0,10.823066,10823.066 +27925,2025-03-10T12:57:09.287047-07:00,1962.0,10.836954,10836.954 +27926,2025-03-10T12:57:20.118346-07:00,2017.0,10.831299,10831.299 +27927,2025-03-10T12:57:30.942286-07:00,1949.0,10.82394,10823.94 +27928,2025-03-10T12:57:41.765406-07:00,2002.0,10.82312,10823.12 +27929,2025-03-10T12:57:52.597102-07:00,1995.0,10.831696,10831.696 +27930,2025-03-10T12:58:03.418272-07:00,1938.0,10.82117,10821.17 +27931,2025-03-10T12:58:14.243298-07:00,2011.0,10.825026,10825.026 +27932,2025-03-10T12:58:25.069408-07:00,2007.0,10.82611,10826.11 +27933,2025-03-10T12:58:35.908184-07:00,1964.0,10.838776,10838.776 +27934,2025-03-10T12:58:46.737047-07:00,2017.0,10.828863,10828.863 +27935,2025-03-10T12:58:57.562049-07:00,1968.0,10.825002,10825.002 +27936,2025-03-10T12:59:08.390140-07:00,1981.0,10.828091,10828.091 +27937,2025-03-10T12:59:19.221741-07:00,1940.0,10.831601,10831.601 +27938,2025-03-10T12:59:30.045038-07:00,1981.0,10.823297,10823.297 +27939,2025-03-10T12:59:40.871278-07:00,1990.0,10.82624,10826.24 +27940,2025-03-10T12:59:51.695156-07:00,2009.0,10.823878,10823.878 +27941,2025-03-10T13:00:02.515194-07:00,2000.0,10.820038,10820.038 +27942,2025-03-10T13:00:13.342048-07:00,1965.0,10.826854,10826.854 +27943,2025-03-10T13:00:24.177330-07:00,1982.0,10.835282,10835.282 +27944,2025-03-10T13:00:35.002026-07:00,1981.0,10.824696,10824.696 +27945,2025-03-10T13:00:45.835908-07:00,2014.0,10.833882,10833.882 +27946,2025-03-10T13:00:56.662047-07:00,2001.0,10.826139,10826.139 +27947,2025-03-10T13:01:07.488448-07:00,1968.0,10.826401,10826.401 +27948,2025-03-10T13:01:18.324313-07:00,2002.0,10.835865,10835.865 +27949,2025-03-10T13:01:29.151297-07:00,2047.0,10.826984,10826.984 +27950,2025-03-10T13:01:39.981188-07:00,2058.0,10.829891,10829.891 +27951,2025-03-10T13:01:50.810631-07:00,2003.0,10.829443,10829.443 +27952,2025-03-10T13:02:01.637400-07:00,1985.0,10.826769,10826.769 +27953,2025-03-10T13:02:12.471997-07:00,1963.0,10.834597,10834.597 +27954,2025-03-10T13:02:23.296185-07:00,2008.0,10.824188,10824.188 +27955,2025-03-10T13:02:34.118074-07:00,2019.0,10.821889,10821.889 +27956,2025-03-10T13:02:44.950320-07:00,1919.0,10.832246,10832.246 +27957,2025-03-10T13:02:55.765269-07:00,1909.0,10.814949,10814.949 +27958,2025-03-10T13:03:06.590430-07:00,1969.0,10.825161,10825.161 +27959,2025-03-10T13:03:17.419043-07:00,1986.0,10.828613,10828.613 +27960,2025-03-10T13:03:28.243353-07:00,1984.0,10.82431,10824.31 +27961,2025-03-10T13:03:39.070047-07:00,1967.0,10.826694,10826.694 +27962,2025-03-10T13:03:49.890085-07:00,1985.0,10.820038,10820.038 +27963,2025-03-10T13:04:00.715638-07:00,1981.0,10.825553,10825.553 +27964,2025-03-10T13:04:11.539124-07:00,2034.0,10.823486,10823.486 +27965,2025-03-10T13:04:22.363583-07:00,1990.0,10.824459,10824.459 +27966,2025-03-10T13:04:33.189128-07:00,1996.0,10.825545,10825.545 +27967,2025-03-10T13:04:44.020026-07:00,2029.0,10.830898,10830.898 +27968,2025-03-10T13:04:54.842050-07:00,1975.0,10.822024,10822.024 +27969,2025-03-10T13:05:05.669044-07:00,2042.0,10.826994,10826.994 +27970,2025-03-10T13:05:16.511313-07:00,2035.0,10.842269,10842.269 +27971,2025-03-10T13:05:27.336070-07:00,1987.0,10.824757,10824.757 +27972,2025-03-10T13:05:38.163042-07:00,2013.0,10.826972,10826.972 +27973,2025-03-10T13:05:48.971984-07:00,2026.0,10.808942,10808.942 +27974,2025-03-10T13:05:59.792654-07:00,2067.0,10.82067,10820.67 +27975,2025-03-10T13:06:10.624430-07:00,2080.0,10.831776,10831.776 +27976,2025-03-10T13:06:21.453759-07:00,2081.0,10.829329,10829.329 +27977,2025-03-10T13:06:32.289424-07:00,2051.0,10.835665,10835.665 +27978,2025-03-10T13:06:43.114865-07:00,2087.0,10.825441,10825.441 +27979,2025-03-10T13:06:53.941144-07:00,2083.0,10.826279,10826.279 +27980,2025-03-10T13:07:04.770636-07:00,2085.0,10.829492,10829.492 +27981,2025-03-10T13:07:15.603251-07:00,2032.0,10.832615,10832.615 +27982,2025-03-10T13:07:26.425922-07:00,2020.0,10.822671,10822.671 +27983,2025-03-10T13:07:37.265098-07:00,2023.0,10.839176,10839.176 +27984,2025-03-10T13:07:48.089924-07:00,2077.0,10.824826,10824.826 +27985,2025-03-10T13:07:58.920119-07:00,2053.0,10.830195,10830.195 +27986,2025-03-10T13:08:09.739897-07:00,2078.0,10.819778,10819.778 +27987,2025-03-10T13:08:20.570533-07:00,2073.0,10.830636,10830.636 +27988,2025-03-10T13:08:31.403656-07:00,2019.0,10.833123,10833.123 +27989,2025-03-10T13:08:42.222693-07:00,2055.0,10.819037,10819.037 +27990,2025-03-10T13:08:53.048937-07:00,2046.0,10.826244,10826.244 +27991,2025-03-10T13:09:03.882930-07:00,2045.0,10.833993,10833.993 +27992,2025-03-10T13:09:14.707678-07:00,1994.0,10.824748,10824.748 +27993,2025-03-10T13:09:25.533651-07:00,2045.0,10.825973,10825.973 +27994,2025-03-10T13:09:36.359990-07:00,2031.0,10.826339,10826.339 +27995,2025-03-10T13:09:47.183657-07:00,2024.0,10.823667,10823.667 +27996,2025-03-10T13:09:58.011258-07:00,2043.0,10.827601,10827.601 +27997,2025-03-10T13:10:08.843776-07:00,2080.0,10.832518,10832.518 +27998,2025-03-10T13:10:19.674994-07:00,2074.0,10.831218,10831.218 +27999,2025-03-10T13:10:30.492651-07:00,2075.0,10.817657,10817.657 +28000,2025-03-10T13:10:41.319744-07:00,2047.0,10.827093,10827.093 +28001,2025-03-10T13:10:52.142861-07:00,2078.0,10.823117,10823.117 +28002,2025-03-10T13:11:02.967810-07:00,2034.0,10.824949,10824.949 +28003,2025-03-10T13:11:13.802659-07:00,2033.0,10.834849,10834.849 +28004,2025-03-10T13:11:24.629787-07:00,2026.0,10.827128,10827.128 +28005,2025-03-10T13:11:35.451067-07:00,2062.0,10.82128,10821.28 +28006,2025-03-10T13:11:46.278994-07:00,2069.0,10.827927,10827.927 +28007,2025-03-10T13:11:57.103946-07:00,1985.0,10.824952,10824.952 +28008,2025-03-10T13:12:07.936648-07:00,2060.0,10.832702,10832.702 +28009,2025-03-10T13:12:18.761428-07:00,2013.0,10.82478,10824.78 +28010,2025-03-10T13:12:29.587824-07:00,2069.0,10.826396,10826.396 +28011,2025-03-10T13:12:40.408700-07:00,2064.0,10.820876,10820.876 +28012,2025-03-10T13:12:51.233710-07:00,2034.0,10.82501,10825.01 +28013,2025-03-10T13:13:02.058851-07:00,2067.0,10.825141,10825.141 +28014,2025-03-10T13:13:12.890652-07:00,2064.0,10.831801,10831.801 +28015,2025-03-10T13:13:23.720650-07:00,2038.0,10.829998,10829.998 +28016,2025-03-10T13:13:34.544049-07:00,2064.0,10.823399,10823.399 +28017,2025-03-10T13:13:45.367891-07:00,2029.0,10.823842,10823.842 +28018,2025-03-10T13:13:56.195939-07:00,2010.0,10.828048,10828.048 +28019,2025-03-10T13:14:07.028210-07:00,2023.0,10.832271,10832.271 +28020,2025-03-10T13:14:17.859010-07:00,2067.0,10.8308,10830.8 +28021,2025-03-10T13:14:28.679655-07:00,1983.0,10.820645,10820.645 +28022,2025-03-10T13:14:39.510248-07:00,2033.0,10.830593,10830.593 +28023,2025-03-10T13:14:50.336929-07:00,2025.0,10.826681,10826.681 +28024,2025-03-10T13:15:01.163105-07:00,2006.0,10.826176,10826.176 +28025,2025-03-10T13:15:11.995659-07:00,2039.0,10.832554,10832.554 +28026,2025-03-10T13:15:22.827230-07:00,2037.0,10.831571,10831.571 +28027,2025-03-10T13:15:33.647699-07:00,2059.0,10.820469,10820.469 +28028,2025-03-10T13:15:44.478781-07:00,1991.0,10.831082,10831.082 +28029,2025-03-10T13:15:55.298647-07:00,2061.0,10.819866,10819.866 +28030,2025-03-10T13:16:06.123656-07:00,2032.0,10.825009,10825.009 +28031,2025-03-10T13:16:16.951239-07:00,2002.0,10.827583,10827.583 +28032,2025-03-10T13:16:27.780655-07:00,2062.0,10.829416,10829.416 +28033,2025-03-10T13:16:38.598205-07:00,2061.0,10.81755,10817.55 +28034,2025-03-10T13:16:49.425634-07:00,2057.0,10.827429,10827.429 +28035,2025-03-10T13:17:00.248646-07:00,2000.0,10.823012,10823.012 +28036,2025-03-10T13:17:11.075653-07:00,2047.0,10.827007,10827.007 +28037,2025-03-10T13:17:21.903574-07:00,2021.0,10.827921,10827.921 +28038,2025-03-10T13:17:32.732780-07:00,2054.0,10.829206,10829.206 +28039,2025-03-10T13:17:43.571202-07:00,2035.0,10.838422,10838.422 +28040,2025-03-10T13:17:54.397489-07:00,2054.0,10.826287,10826.287 +28041,2025-03-10T13:18:05.219104-07:00,2055.0,10.821615,10821.615 +28042,2025-03-10T13:18:16.056660-07:00,1995.0,10.837556,10837.556 +28043,2025-03-10T13:18:26.882652-07:00,2029.0,10.825992,10825.992 +28044,2025-03-10T13:18:37.706647-07:00,1995.0,10.823995,10823.995 +28045,2025-03-10T13:18:48.535053-07:00,2055.0,10.828406,10828.406 +28046,2025-03-10T13:18:59.370647-07:00,2038.0,10.835594,10835.594 +28047,2025-03-10T13:19:10.194926-07:00,2032.0,10.824279,10824.279 +28048,2025-03-10T13:19:21.018241-07:00,2020.0,10.823315,10823.315 +28049,2025-03-10T13:19:31.856848-07:00,2041.0,10.838607,10838.607 +28050,2025-03-10T13:19:42.690367-07:00,2041.0,10.833519,10833.519 +28051,2025-03-10T13:19:53.524192-07:00,2015.0,10.833825,10833.825 +28052,2025-03-10T13:20:04.357634-07:00,2043.0,10.833442,10833.442 +28053,2025-03-10T13:20:15.187920-07:00,2022.0,10.830286,10830.286 +28054,2025-03-10T13:20:26.024700-07:00,1974.0,10.83678,10836.78 +28055,2025-03-10T13:20:36.851792-07:00,2039.0,10.827092,10827.092 +28056,2025-03-10T13:20:47.674651-07:00,1997.0,10.822859,10822.859 +28057,2025-03-10T13:20:58.509346-07:00,2032.0,10.834695,10834.695 +28058,2025-03-10T13:21:09.333661-07:00,2029.0,10.824315,10824.315 +28059,2025-03-10T13:21:20.159662-07:00,2022.0,10.826001,10826.001 +28060,2025-03-10T13:21:30.990645-07:00,1943.0,10.830983,10830.983 +28061,2025-03-10T13:21:41.817990-07:00,2000.0,10.827345,10827.345 +28062,2025-03-10T13:21:52.649635-07:00,1968.0,10.831645,10831.645 +28063,2025-03-10T13:22:03.467914-07:00,1968.0,10.818279,10818.279 +28064,2025-03-10T13:22:14.296657-07:00,1928.0,10.828743,10828.743 +28065,2025-03-10T13:22:25.115220-07:00,1951.0,10.818563,10818.563 +28066,2025-03-10T13:22:35.935772-07:00,1968.0,10.820552,10820.552 +28067,2025-03-10T13:22:46.756647-07:00,1998.0,10.820875,10820.875 +28068,2025-03-10T13:22:57.586276-07:00,2018.0,10.829629,10829.629 +28069,2025-03-10T13:23:08.399893-07:00,2019.0,10.813617,10813.617 +28070,2025-03-10T13:23:19.232683-07:00,1975.0,10.83279,10832.79 +28071,2025-03-10T13:23:30.066886-07:00,1999.0,10.834203,10834.203 +28072,2025-03-10T13:23:40.891984-07:00,2018.0,10.825098,10825.098 +28073,2025-03-10T13:23:51.725802-07:00,1948.0,10.833818,10833.818 +28074,2025-03-10T13:24:02.562922-07:00,2006.0,10.83712,10837.12 +28075,2025-03-10T13:24:13.387651-07:00,2029.0,10.824729,10824.729 +28076,2025-03-10T13:24:24.226810-07:00,1967.0,10.839159,10839.159 +28077,2025-03-10T13:24:35.056936-07:00,2018.0,10.830126,10830.126 +28078,2025-03-10T13:24:45.881791-07:00,2032.0,10.824855,10824.855 +28079,2025-03-10T13:24:56.711651-07:00,2000.0,10.82986,10829.86 +28080,2025-03-10T13:25:07.543656-07:00,2041.0,10.832005,10832.005 +28081,2025-03-10T13:25:18.371963-07:00,2035.0,10.828307,10828.307 +28082,2025-03-10T13:25:29.213571-07:00,1994.0,10.841608,10841.608 +28083,2025-03-10T13:25:40.041179-07:00,2032.0,10.827608,10827.608 +28084,2025-03-10T13:25:50.878653-07:00,2032.0,10.837474,10837.474 +28085,2025-03-10T13:26:01.711898-07:00,1977.0,10.833245,10833.245 +28086,2025-03-10T13:26:12.537874-07:00,1999.0,10.825976,10825.976 +28087,2025-03-10T13:26:23.360938-07:00,1939.0,10.823064,10823.064 +28088,2025-03-10T13:26:34.184039-07:00,1968.0,10.823101,10823.101 +28089,2025-03-10T13:26:45.025891-07:00,1995.0,10.841852,10841.852 +28090,2025-03-10T13:26:55.852650-07:00,1947.0,10.826759,10826.759 +28091,2025-03-10T13:27:06.681861-07:00,2010.0,10.829211,10829.211 +28092,2025-03-10T13:27:17.512484-07:00,1937.0,10.830623,10830.623 +28093,2025-03-10T13:27:28.339963-07:00,2023.0,10.827479,10827.479 +28094,2025-03-10T13:27:39.156934-07:00,2030.0,10.816971,10816.971 +28095,2025-03-10T13:27:49.988343-07:00,2015.0,10.831409,10831.409 +28096,2025-03-10T13:28:00.814657-07:00,2032.0,10.826314,10826.314 +28097,2025-03-10T13:28:11.647213-07:00,2022.0,10.832556,10832.556 +28098,2025-03-10T13:28:22.471973-07:00,2027.0,10.82476,10824.76 +28099,2025-03-10T13:28:33.310848-07:00,2042.0,10.838875,10838.875 +28100,2025-03-10T13:28:44.138908-07:00,2038.0,10.82806,10828.06 +28101,2025-03-10T13:28:54.977657-07:00,2032.0,10.838749,10838.749 +28102,2025-03-10T13:29:05.794655-07:00,2042.0,10.816998,10816.998 +28103,2025-03-10T13:29:16.623007-07:00,2032.0,10.828352,10828.352 +28104,2025-03-10T13:29:27.462653-07:00,2007.0,10.839646,10839.646 +28105,2025-03-10T13:29:38.289659-07:00,2018.0,10.827006,10827.006 +28106,2025-03-10T13:29:49.132146-07:00,1971.0,10.842487,10842.487 +28107,2025-03-10T13:29:59.958264-07:00,1999.0,10.826118,10826.118 +28108,2025-03-10T13:30:10.800710-07:00,2047.0,10.842446,10842.446 +28109,2025-03-10T13:30:21.627938-07:00,2021.0,10.827228,10827.228 +28110,2025-03-10T13:30:32.452974-07:00,2017.0,10.825036,10825.036 +28111,2025-03-10T13:30:43.288655-07:00,2018.0,10.835681,10835.681 +28112,2025-03-10T13:30:54.115805-07:00,1954.0,10.82715,10827.15 +28113,2025-03-10T13:31:04.951635-07:00,2027.0,10.83583,10835.83 +28114,2025-03-10T13:31:15.785912-07:00,2020.0,10.834277,10834.277 +28115,2025-03-10T13:31:26.618855-07:00,2025.0,10.832943,10832.943 +28116,2025-03-10T13:31:37.452965-07:00,1993.0,10.83411,10834.11 +28117,2025-03-10T13:31:48.285911-07:00,1999.0,10.832946,10832.946 +28118,2025-03-10T13:31:59.122978-07:00,2044.0,10.837067,10837.067 +28119,2025-03-10T13:32:09.955651-07:00,2039.0,10.832673,10832.673 +28120,2025-03-10T13:32:20.783698-07:00,2006.0,10.828047,10828.047 +28121,2025-03-10T13:32:31.620200-07:00,2042.0,10.836502,10836.502 +28122,2025-03-10T13:32:42.444793-07:00,1958.0,10.824593,10824.593 +28123,2025-03-10T13:32:53.277940-07:00,2005.0,10.833147,10833.147 +28124,2025-03-10T13:33:04.103990-07:00,2032.0,10.82605,10826.05 +28125,2025-03-10T13:33:14.930984-07:00,2001.0,10.826994,10826.994 +28126,2025-03-10T13:33:25.772652-07:00,2042.0,10.841668,10841.668 +28127,2025-03-10T13:33:36.599651-07:00,2028.0,10.826999,10826.999 +28128,2025-03-10T13:33:47.437518-07:00,2032.0,10.837867,10837.867 +28129,2025-03-10T13:33:58.267137-07:00,2033.0,10.829619,10829.619 +28130,2025-03-10T13:34:09.103658-07:00,2032.0,10.836521,10836.521 +28131,2025-03-10T13:34:19.933943-07:00,2041.0,10.830285,10830.285 +28132,2025-03-10T13:34:30.769647-07:00,1962.0,10.835704,10835.704 +28133,2025-03-10T13:34:41.598015-07:00,2035.0,10.828368,10828.368 +28134,2025-03-10T13:34:52.431957-07:00,2039.0,10.833942,10833.942 +28135,2025-03-10T13:35:03.259220-07:00,1979.0,10.827263,10827.263 +28136,2025-03-10T13:35:14.093843-07:00,2010.0,10.834623,10834.623 +28137,2025-03-10T13:35:24.927793-07:00,2043.0,10.83395,10833.95 +28138,2025-03-10T13:35:35.765892-07:00,2003.0,10.838099,10838.099 +28139,2025-03-10T13:35:46.589158-07:00,2009.0,10.823266,10823.266 +28140,2025-03-10T13:35:57.416393-07:00,2039.0,10.827235,10827.235 +28141,2025-03-10T13:36:08.246656-07:00,2039.0,10.830263,10830.263 +28142,2025-03-10T13:36:19.086636-07:00,2000.0,10.83998,10839.98 +28143,2025-03-10T13:36:29.911813-07:00,2041.0,10.825177,10825.177 +28144,2025-03-10T13:36:40.745804-07:00,1993.0,10.833991,10833.991 +28145,2025-03-10T13:36:51.569819-07:00,2019.0,10.824015,10824.015 +28146,2025-03-10T13:37:02.407961-07:00,2010.0,10.838142,10838.142 +28147,2025-03-10T13:37:13.239706-07:00,2000.0,10.831745,10831.745 +28148,2025-03-10T13:37:24.071713-07:00,2017.0,10.832007,10832.007 +28149,2025-03-10T13:37:34.899663-07:00,2027.0,10.82795,10827.95 +28150,2025-03-10T13:37:45.724125-07:00,2009.0,10.824462,10824.462 +28151,2025-03-10T13:37:56.565912-07:00,2043.0,10.841787,10841.787 +28152,2025-03-10T13:38:07.391653-07:00,2046.0,10.825741,10825.741 +28153,2025-03-10T13:38:18.227976-07:00,1999.0,10.836323,10836.323 +28154,2025-03-10T13:38:29.059772-07:00,2014.0,10.831796,10831.796 +28155,2025-03-10T13:38:39.887659-07:00,2038.0,10.827887,10827.887 +28156,2025-03-10T13:38:50.729979-07:00,2032.0,10.84232,10842.32 +28157,2025-03-10T13:39:01.563722-07:00,2041.0,10.833743,10833.743 +28158,2025-03-10T13:39:12.387286-07:00,1965.0,10.823564,10823.564 +28159,2025-03-10T13:39:23.228346-07:00,1991.0,10.84106,10841.06 +28160,2025-03-10T13:39:34.062636-07:00,2015.0,10.83429,10834.29 +28161,2025-03-10T13:39:44.895806-07:00,1973.0,10.83317,10833.17 +28162,2025-03-10T13:39:55.725695-07:00,1962.0,10.829889,10829.889 +28163,2025-03-10T13:40:06.547151-07:00,1996.0,10.821456,10821.456 +28164,2025-03-10T13:40:17.379649-07:00,2034.0,10.832498,10832.498 +28165,2025-03-10T13:40:28.211714-07:00,1981.0,10.832065,10832.065 +28166,2025-03-10T13:40:39.041706-07:00,2000.0,10.829992,10829.992 +28167,2025-03-10T13:40:49.872807-07:00,1963.0,10.831101,10831.101 +28168,2025-03-10T13:41:00.715899-07:00,2014.0,10.843092,10843.092 +28169,2025-03-10T13:41:11.540011-07:00,1967.0,10.824112,10824.112 +28170,2025-03-10T13:41:22.382085-07:00,2036.0,10.842074,10842.074 +28171,2025-03-10T13:41:33.208394-07:00,1977.0,10.826309,10826.309 +28172,2025-03-10T13:41:44.043106-07:00,2015.0,10.834712,10834.712 +28173,2025-03-10T13:41:54.883656-07:00,2036.0,10.84055,10840.55 +28174,2025-03-10T13:42:05.718632-07:00,2015.0,10.834976,10834.976 +28175,2025-03-10T13:42:16.549700-07:00,1987.0,10.831068,10831.068 +28176,2025-03-10T13:42:27.384702-07:00,2035.0,10.835002,10835.002 +28177,2025-03-10T13:42:38.219971-07:00,1984.0,10.835269,10835.269 +28178,2025-03-10T13:42:49.046005-07:00,2034.0,10.826034,10826.034 +28179,2025-03-10T13:42:59.883657-07:00,2034.0,10.837652,10837.652 +28180,2025-03-10T13:43:10.707656-07:00,2032.0,10.823999,10823.999 +28181,2025-03-10T13:43:21.541405-07:00,1961.0,10.833749,10833.749 +28182,2025-03-10T13:43:32.361845-07:00,2007.0,10.82044,10820.44 +28183,2025-03-10T13:43:43.202972-07:00,1952.0,10.841127,10841.127 +28184,2025-03-10T13:43:54.036936-07:00,1985.0,10.833964,10833.964 +28185,2025-03-10T13:44:04.867996-07:00,2029.0,10.83106,10831.06 +28186,2025-03-10T13:44:15.710812-07:00,1993.0,10.842816,10842.816 +28187,2025-03-10T13:44:26.540881-07:00,2021.0,10.830069,10830.069 +28188,2025-03-10T13:44:37.373792-07:00,2023.0,10.832911,10832.911 +28189,2025-03-10T13:44:48.216215-07:00,1968.0,10.842423,10842.423 +28190,2025-03-10T13:44:59.048654-07:00,2024.0,10.832439,10832.439 +28191,2025-03-10T13:45:09.891932-07:00,1930.0,10.843278,10843.278 +28192,2025-03-10T13:45:20.724167-07:00,2000.0,10.832235,10832.235 +28193,2025-03-10T13:45:31.545656-07:00,2027.0,10.821489,10821.489 +28194,2025-03-10T13:45:42.376230-07:00,2005.0,10.830574,10830.574 +28195,2025-03-10T13:45:53.213658-07:00,2015.0,10.837428,10837.428 +28196,2025-03-10T13:46:04.038594-07:00,2014.0,10.824936,10824.936 +28197,2025-03-10T13:46:14.877656-07:00,1998.0,10.839062,10839.062 +28198,2025-03-10T13:46:25.702013-07:00,2002.0,10.824357,10824.357 +28199,2025-03-10T13:46:36.534742-07:00,2000.0,10.832729,10832.729 +28200,2025-03-10T13:46:47.365652-07:00,1950.0,10.83091,10830.91 +28201,2025-03-10T13:46:58.185664-07:00,1985.0,10.820012,10820.012 +28202,2025-03-10T13:47:09.021930-07:00,1945.0,10.836266,10836.266 +28203,2025-03-10T13:47:19.849797-07:00,1986.0,10.827867,10827.867 +28204,2025-03-10T13:47:30.681418-07:00,1983.0,10.831621,10831.621 +28205,2025-03-10T13:47:41.501795-07:00,2015.0,10.820377,10820.377 +28206,2025-03-10T13:47:52.338777-07:00,1949.0,10.836982,10836.982 +28207,2025-03-10T13:48:03.174861-07:00,1975.0,10.836084,10836.084 +28208,2025-03-10T13:48:14.002986-07:00,1968.0,10.828125,10828.125 +28209,2025-03-10T13:48:24.827888-07:00,1974.0,10.824902,10824.902 +28210,2025-03-10T13:48:35.650829-07:00,1936.0,10.822941,10822.941 +28211,2025-03-10T13:48:46.483631-07:00,2000.0,10.832802,10832.802 +28212,2025-03-10T13:48:57.310454-07:00,1970.0,10.826823,10826.823 +28213,2025-03-10T13:49:08.132656-07:00,2002.0,10.822202,10822.202 +28214,2025-03-10T13:49:18.970667-07:00,2037.0,10.838011,10838.011 +28215,2025-03-10T13:49:29.794700-07:00,2032.0,10.824033,10824.033 +28216,2025-03-10T13:49:40.628957-07:00,1955.0,10.834257,10834.257 +28217,2025-03-10T13:49:51.458653-07:00,1966.0,10.829696,10829.696 +28218,2025-03-10T13:50:02.288710-07:00,2031.0,10.830057,10830.057 +28219,2025-03-10T13:50:13.122708-07:00,2030.0,10.833998,10833.998 +28220,2025-03-10T13:50:23.953875-07:00,1949.0,10.831167,10831.167 +28221,2025-03-10T13:50:34.786239-07:00,1981.0,10.832364,10832.364 +28222,2025-03-10T13:50:45.617155-07:00,2025.0,10.830916,10830.916 +28223,2025-03-10T13:50:56.437868-07:00,2033.0,10.820713,10820.713 +28224,2025-03-10T13:51:07.270880-07:00,2033.0,10.833012,10833.012 +28225,2025-03-10T13:51:18.100984-07:00,2013.0,10.830104,10830.104 +28226,2025-03-10T13:51:28.926658-07:00,2032.0,10.825674,10825.674 +28227,2025-03-10T13:51:39.763962-07:00,2000.0,10.837304,10837.304 +28228,2025-03-10T13:51:50.591148-07:00,2018.0,10.827186,10827.186 +28229,2025-03-10T13:52:01.425076-07:00,2023.0,10.833928,10833.928 +28230,2025-03-10T13:52:12.258880-07:00,2029.0,10.833804,10833.804 +28231,2025-03-10T13:52:23.086748-07:00,2003.0,10.827868,10827.868 +28232,2025-03-10T13:52:33.913655-07:00,2023.0,10.826907,10826.907 +28233,2025-03-10T13:52:44.747996-07:00,2039.0,10.834341,10834.341 +28234,2025-03-10T13:52:55.574656-07:00,2041.0,10.82666,10826.66 +28235,2025-03-10T13:53:06.407907-07:00,2002.0,10.833251,10833.251 +28236,2025-03-10T13:53:17.238603-07:00,2031.0,10.830696,10830.696 +28237,2025-03-10T13:53:28.071657-07:00,2005.0,10.833054,10833.054 +28238,2025-03-10T13:53:38.913083-07:00,2021.0,10.841426,10841.426 +28239,2025-03-10T13:53:49.739624-07:00,1979.0,10.826541,10826.541 +28240,2025-03-10T13:54:00.575637-07:00,2045.0,10.836013,10836.013 +28241,2025-03-10T13:54:11.406658-07:00,2000.0,10.831021,10831.021 +28242,2025-03-10T13:54:22.230121-07:00,1995.0,10.823463,10823.463 +28243,2025-03-10T13:54:33.059923-07:00,2054.0,10.829802,10829.802 +28244,2025-03-10T13:54:43.897656-07:00,2037.0,10.837733,10837.733 +28245,2025-03-10T13:54:54.725700-07:00,2055.0,10.828044,10828.044 +28246,2025-03-10T13:55:05.556957-07:00,2032.0,10.831257,10831.257 +28247,2025-03-10T13:55:16.391963-07:00,2005.0,10.835006,10835.006 +28248,2025-03-10T13:55:27.223905-07:00,2047.0,10.831942,10831.942 +28249,2025-03-10T13:55:38.050976-07:00,2033.0,10.827071,10827.071 +28250,2025-03-10T13:55:48.882939-07:00,2029.0,10.831963,10831.963 +28251,2025-03-10T13:55:59.713839-07:00,2042.0,10.8309,10830.9 +28252,2025-03-10T13:56:10.546226-07:00,2016.0,10.832387,10832.387 +28253,2025-03-10T13:56:21.377712-07:00,2055.0,10.831486,10831.486 +28254,2025-03-10T13:56:32.209760-07:00,2047.0,10.832048,10832.048 +28255,2025-03-10T13:56:43.042092-07:00,2001.0,10.832332,10832.332 +28256,2025-03-10T13:56:53.877007-07:00,2039.0,10.834915,10834.915 +28257,2025-03-10T13:57:04.704803-07:00,1983.0,10.827796,10827.796 +28258,2025-03-10T13:57:15.537002-07:00,2032.0,10.832199,10832.199 +28259,2025-03-10T13:57:26.365062-07:00,1968.0,10.82806,10828.06 +28260,2025-03-10T13:57:37.200996-07:00,2046.0,10.835934,10835.934 +28261,2025-03-10T13:57:48.032549-07:00,2015.0,10.831553,10831.553 +28262,2025-03-10T13:57:58.854217-07:00,2013.0,10.821668,10821.668 +28263,2025-03-10T13:58:09.686653-07:00,2007.0,10.832436,10832.436 +28264,2025-03-10T13:58:20.509226-07:00,2053.0,10.822573,10822.573 +28265,2025-03-10T13:58:31.342655-07:00,2054.0,10.833429,10833.429 +28266,2025-03-10T13:58:42.169189-07:00,2027.0,10.826534,10826.534 +28267,2025-03-10T13:58:52.999654-07:00,2055.0,10.830465,10830.465 +28268,2025-03-10T13:59:03.831802-07:00,2039.0,10.832148,10832.148 +28269,2025-03-10T13:59:14.659890-07:00,2047.0,10.828088,10828.088 +28270,2025-03-10T13:59:25.493914-07:00,2025.0,10.834024,10834.024 +28271,2025-03-10T13:59:36.327106-07:00,2047.0,10.833192,10833.192 +28272,2025-03-10T13:59:47.152972-07:00,2029.0,10.825866,10825.866 +28273,2025-03-10T13:59:57.990171-07:00,2045.0,10.837199,10837.199 +28274,2025-03-10T14:00:08.821798-07:00,2035.0,10.831627,10831.627 +28275,2025-03-10T14:00:19.652907-07:00,2046.0,10.831109,10831.109 +28276,2025-03-10T14:00:30.476822-07:00,2003.0,10.823915,10823.915 +28277,2025-03-10T14:00:41.299647-07:00,2019.0,10.822825,10822.825 +28278,2025-03-10T14:00:52.127920-07:00,1969.0,10.828273,10828.273 +28279,2025-03-10T14:01:02.956866-07:00,1979.0,10.828946,10828.946 +28280,2025-03-10T14:01:13.790232-07:00,1970.0,10.833366,10833.366 +28281,2025-03-10T14:01:24.621630-07:00,1979.0,10.831398,10831.398 +28282,2025-03-10T14:01:35.448887-07:00,2032.0,10.827257,10827.257 +28283,2025-03-10T14:01:46.291654-07:00,1979.0,10.842767,10842.767 +28284,2025-03-10T14:01:57.118655-07:00,2042.0,10.827001,10827.001 +28285,2025-03-10T14:02:07.949049-07:00,2026.0,10.830394,10830.394 +28286,2025-03-10T14:02:18.779649-07:00,1991.0,10.8306,10830.6 +28287,2025-03-10T14:02:29.612922-07:00,2042.0,10.833273,10833.273 +28288,2025-03-10T14:02:40.433656-07:00,2014.0,10.820734,10820.734 +28289,2025-03-10T14:02:51.263670-07:00,2000.0,10.830014,10830.014 +28290,2025-03-10T14:03:02.095645-07:00,2000.0,10.831975,10831.975 +28291,2025-03-10T14:03:12.928086-07:00,1965.0,10.832441,10832.441 +28292,2025-03-10T14:03:23.750726-07:00,1973.0,10.82264,10822.64 +28293,2025-03-10T14:03:34.579746-07:00,1997.0,10.82902,10829.02 +28294,2025-03-10T14:03:45.422761-07:00,1955.0,10.843015,10843.015 +28295,2025-03-10T14:03:56.253839-07:00,1984.0,10.831078,10831.078 +28296,2025-03-10T14:04:07.082990-07:00,2023.0,10.829151,10829.151 +28297,2025-03-10T14:04:17.912885-07:00,2003.0,10.829895,10829.895 +28298,2025-03-10T14:04:28.742904-07:00,2016.0,10.830019,10830.019 +28299,2025-03-10T14:04:39.581657-07:00,1967.0,10.838753,10838.753 +28300,2025-03-10T14:04:50.407891-07:00,2018.0,10.826234,10826.234 +28301,2025-03-10T14:05:01.239945-07:00,1979.0,10.832054,10832.054 +28302,2025-03-10T14:05:12.065969-07:00,2000.0,10.826024,10826.024 +28303,2025-03-10T14:05:22.894904-07:00,2011.0,10.828935,10828.935 +28304,2025-03-10T14:05:33.727878-07:00,2006.0,10.832974,10832.974 +28305,2025-03-10T14:05:44.559675-07:00,2042.0,10.831797,10831.797 +28306,2025-03-10T14:05:55.452877-07:00,2037.0,10.893202,10893.202 +28307,2025-03-10T14:06:06.286917-07:00,2012.0,10.83404,10834.04 +28308,2025-03-10T14:06:17.117437-07:00,2003.0,10.83052,10830.52 +28309,2025-03-10T14:06:27.941257-07:00,2038.0,10.82382,10823.82 +28310,2025-03-10T14:06:38.781208-07:00,1981.0,10.839951,10839.951 +28311,2025-03-10T14:06:49.614198-07:00,2011.0,10.83299,10832.99 +28312,2025-03-10T14:07:00.439465-07:00,1949.0,10.825267,10825.267 +28313,2025-03-10T14:07:11.273875-07:00,2001.0,10.83441,10834.41 +28314,2025-03-10T14:07:22.098414-07:00,2010.0,10.824539,10824.539 +28315,2025-03-10T14:07:32.929743-07:00,2000.0,10.831329,10831.329 +28316,2025-03-10T14:07:43.760447-07:00,2032.0,10.830704,10830.704 +28317,2025-03-10T14:07:54.593213-07:00,1944.0,10.832766,10832.766 +28318,2025-03-10T14:08:05.434548-07:00,2015.0,10.841335,10841.335 +28319,2025-03-10T14:08:16.264455-07:00,1943.0,10.829907,10829.907 +28320,2025-03-10T14:08:27.102578-07:00,1974.0,10.838123,10838.123 +28321,2025-03-10T14:08:37.930320-07:00,2012.0,10.827742,10827.742 +28322,2025-03-10T14:08:48.764473-07:00,1999.0,10.834153,10834.153 +28323,2025-03-10T14:08:59.588201-07:00,1959.0,10.823728,10823.728 +28324,2025-03-10T14:09:10.416282-07:00,2025.0,10.828081,10828.081 +28325,2025-03-10T14:09:21.247207-07:00,1995.0,10.830925,10830.925 +28326,2025-03-10T14:09:32.081477-07:00,2019.0,10.83427,10834.27 +28327,2025-03-10T14:09:42.911258-07:00,2047.0,10.829781,10829.781 +28328,2025-03-10T14:09:53.743253-07:00,1993.0,10.831995,10831.995 +28329,2025-03-10T14:10:04.564190-07:00,2000.0,10.820937,10820.937 +28330,2025-03-10T14:10:15.404342-07:00,1966.0,10.840152,10840.152 +28331,2025-03-10T14:10:26.231902-07:00,1983.0,10.82756,10827.56 +28332,2025-03-10T14:10:37.066737-07:00,1979.0,10.834835,10834.835 +28333,2025-03-10T14:10:47.890172-07:00,1963.0,10.823435,10823.435 +28334,2025-03-10T14:10:58.719262-07:00,2045.0,10.82909,10829.09 +28335,2025-03-10T14:11:09.552501-07:00,1984.0,10.833239,10833.239 +28336,2025-03-10T14:11:20.379381-07:00,2007.0,10.82688,10826.88 +28337,2025-03-10T14:11:31.204338-07:00,2008.0,10.824957,10824.957 +28338,2025-03-10T14:11:42.040207-07:00,2037.0,10.835869,10835.869 +28339,2025-03-10T14:11:52.868524-07:00,2026.0,10.828317,10828.317 +28340,2025-03-10T14:12:03.707211-07:00,1938.0,10.838687,10838.687 +28341,2025-03-10T14:12:14.533550-07:00,1988.0,10.826339,10826.339 +28342,2025-03-10T14:12:25.362202-07:00,1984.0,10.828652,10828.652 +28343,2025-03-10T14:12:36.183548-07:00,1936.0,10.821346,10821.346 +28344,2025-03-10T14:12:47.015256-07:00,1951.0,10.831708,10831.708 +28345,2025-03-10T14:12:57.848489-07:00,1941.0,10.833233,10833.233 +28346,2025-03-10T14:13:08.678257-07:00,1947.0,10.829768,10829.768 +28347,2025-03-10T14:13:19.507190-07:00,1984.0,10.828933,10828.933 +28348,2025-03-10T14:13:30.342530-07:00,2000.0,10.83534,10835.34 +28349,2025-03-10T14:13:41.176205-07:00,1999.0,10.833675,10833.675 +28350,2025-03-10T14:13:52.008486-07:00,1967.0,10.832281,10832.281 +28351,2025-03-10T14:14:02.837207-07:00,2007.0,10.828721,10828.721 +28352,2025-03-10T14:14:13.669531-07:00,2001.0,10.832324,10832.324 +28353,2025-03-10T14:14:24.502354-07:00,2021.0,10.832823,10832.823 +28354,2025-03-10T14:14:35.331572-07:00,1968.0,10.829218,10829.218 +28355,2025-03-10T14:14:46.165433-07:00,2004.0,10.833861,10833.861 +28356,2025-03-10T14:14:57.006366-07:00,1999.0,10.840933,10840.933 +28357,2025-03-10T14:15:07.838528-07:00,1955.0,10.832162,10832.162 +28358,2025-03-10T14:15:18.670451-07:00,1967.0,10.831923,10831.923 +28359,2025-03-10T14:15:29.503105-07:00,2023.0,10.832654,10832.654 +28360,2025-03-10T14:15:40.334213-07:00,2007.0,10.831108,10831.108 +28361,2025-03-10T14:15:51.173685-07:00,2022.0,10.839472,10839.472 +28362,2025-03-10T14:16:01.999478-07:00,2026.0,10.825793,10825.793 +28363,2025-03-10T14:16:12.819548-07:00,2018.0,10.82007,10820.07 +28364,2025-03-10T14:16:23.646276-07:00,1959.0,10.826728,10826.728 +28365,2025-03-10T14:16:34.477443-07:00,2032.0,10.831167,10831.167 +28366,2025-03-10T14:16:45.312293-07:00,2027.0,10.83485,10834.85 +28367,2025-03-10T14:16:56.133733-07:00,2017.0,10.82144,10821.44 +28368,2025-03-10T14:17:06.965343-07:00,2032.0,10.83161,10831.61 +28369,2025-03-10T14:17:17.798216-07:00,2029.0,10.832873,10832.873 +28370,2025-03-10T14:17:28.634402-07:00,2018.0,10.836186,10836.186 +28371,2025-03-10T14:17:39.466526-07:00,2011.0,10.832124,10832.124 +28372,2025-03-10T14:17:50.303475-07:00,1999.0,10.836949,10836.949 +28373,2025-03-10T14:18:01.132212-07:00,1904.0,10.828737,10828.737 +28374,2025-03-10T14:18:11.963481-07:00,1957.0,10.831269,10831.269 +28375,2025-03-10T14:18:22.788277-07:00,1950.0,10.824796,10824.796 +28376,2025-03-10T14:18:33.619558-07:00,1990.0,10.831281,10831.281 +28377,2025-03-10T14:18:44.449209-07:00,1949.0,10.829651,10829.651 +28378,2025-03-10T14:18:55.283350-07:00,1979.0,10.834141,10834.141 +28379,2025-03-10T14:19:06.113530-07:00,1968.0,10.83018,10830.18 +28380,2025-03-10T14:19:16.935188-07:00,1958.0,10.821658,10821.658 +28381,2025-03-10T14:19:27.761412-07:00,1997.0,10.826224,10826.224 +28382,2025-03-10T14:19:38.604236-07:00,1999.0,10.842824,10842.824 +28383,2025-03-10T14:19:49.440759-07:00,2001.0,10.836523,10836.523 +28384,2025-03-10T14:20:00.272213-07:00,1999.0,10.831454,10831.454 +28385,2025-03-10T14:20:11.100529-07:00,1968.0,10.828316,10828.316 +28386,2025-03-10T14:20:21.925207-07:00,1907.0,10.824678,10824.678 +28387,2025-03-10T14:20:32.757531-07:00,1889.0,10.832324,10832.324 +28388,2025-03-10T14:20:43.588455-07:00,1874.0,10.830924,10830.924 +28389,2025-03-10T14:20:54.421465-07:00,1885.0,10.83301,10833.01 +28390,2025-03-10T14:21:05.257208-07:00,1904.0,10.835743,10835.743 +28391,2025-03-10T14:21:16.084207-07:00,1902.0,10.826999,10826.999 +28392,2025-03-10T14:21:26.916511-07:00,1905.0,10.832304,10832.304 +28393,2025-03-10T14:21:37.760209-07:00,1950.0,10.843698,10843.698 +28394,2025-03-10T14:21:48.589238-07:00,1883.0,10.829029,10829.029 +28395,2025-03-10T14:21:59.431479-07:00,1871.0,10.842241,10842.241 +28396,2025-03-10T14:22:10.266110-07:00,1886.0,10.834631,10834.631 +28397,2025-03-10T14:22:21.096517-07:00,1920.0,10.830407,10830.407 +28398,2025-03-10T14:22:31.929378-07:00,1883.0,10.832861,10832.861 +28399,2025-03-10T14:22:42.774214-07:00,1907.0,10.844836,10844.836 +28400,2025-03-10T14:22:53.604181-07:00,1910.0,10.829967,10829.967 +28401,2025-03-10T14:23:04.445205-07:00,1877.0,10.841024,10841.024 +28402,2025-03-10T14:23:15.273222-07:00,1873.0,10.828017,10828.017 +28403,2025-03-10T14:23:26.110248-07:00,1879.0,10.837026,10837.026 +28404,2025-03-10T14:23:36.935100-07:00,1879.0,10.824852,10824.852 +28405,2025-03-10T14:23:47.763203-07:00,1863.0,10.828103,10828.103 +28406,2025-03-10T14:23:58.594200-07:00,1876.0,10.830997,10830.997 +28407,2025-03-10T14:24:09.437622-07:00,1865.0,10.843422,10843.422 +28408,2025-03-10T14:24:20.270202-07:00,1883.0,10.83258,10832.58 +28409,2025-03-10T14:24:31.100286-07:00,1898.0,10.830084,10830.084 +28410,2025-03-10T14:24:41.932207-07:00,1906.0,10.831921,10831.921 +28411,2025-03-10T14:24:52.764214-07:00,1922.0,10.832007,10832.007 +28412,2025-03-10T14:25:03.596548-07:00,1907.0,10.832334,10832.334 +28413,2025-03-10T14:25:14.432215-07:00,1838.0,10.835667,10835.667 +28414,2025-03-10T14:25:25.271529-07:00,1900.0,10.839314,10839.314 +28415,2025-03-10T14:25:36.108420-07:00,1930.0,10.836891,10836.891 +28416,2025-03-10T14:25:46.936127-07:00,1917.0,10.827707,10827.707 +28417,2025-03-10T14:25:57.777513-07:00,1957.0,10.841386,10841.386 +28418,2025-03-10T14:26:08.622519-07:00,1926.0,10.845006,10845.006 +28419,2025-03-10T14:26:19.452227-07:00,1953.0,10.829708,10829.708 +28420,2025-03-10T14:26:30.295859-07:00,1908.0,10.843632,10843.632 +28421,2025-03-10T14:26:41.125201-07:00,1918.0,10.829342,10829.342 +28422,2025-03-10T14:26:51.960207-07:00,1919.0,10.835006,10835.006 +28423,2025-03-10T14:27:02.802974-07:00,1966.0,10.842767,10842.767 +28424,2025-03-10T14:27:13.643511-07:00,1895.0,10.840537,10840.537 +28425,2025-03-10T14:27:24.476207-07:00,1981.0,10.832696,10832.696 +28426,2025-03-10T14:27:35.306143-07:00,1946.0,10.829936,10829.936 +28427,2025-03-10T14:27:46.141599-07:00,1965.0,10.835456,10835.456 +28428,2025-03-10T14:27:56.973550-07:00,1995.0,10.831951,10831.951 +28429,2025-03-10T14:28:07.803280-07:00,1981.0,10.82973,10829.73 +28430,2025-03-10T14:28:18.640535-07:00,1977.0,10.837255,10837.255 +28431,2025-03-10T14:28:29.474448-07:00,1969.0,10.833913,10833.913 +28432,2025-03-10T14:28:40.310201-07:00,2018.0,10.835753,10835.753 +28433,2025-03-10T14:28:51.136292-07:00,1947.0,10.826091,10826.091 +28434,2025-03-10T14:29:01.973467-07:00,1999.0,10.837175,10837.175 +28435,2025-03-10T14:29:12.817366-07:00,1942.0,10.843899,10843.899 +28436,2025-03-10T14:29:23.649156-07:00,2021.0,10.83179,10831.79 +28437,2025-03-10T14:29:34.478424-07:00,2022.0,10.829268,10829.268 +28438,2025-03-10T14:29:45.300801-07:00,1967.0,10.822377,10822.377 +28439,2025-03-10T14:29:56.143208-07:00,2064.0,10.842407,10842.407 +28440,2025-03-10T14:30:06.974989-07:00,2069.0,10.831781,10831.781 +28441,2025-03-10T14:30:17.807352-07:00,1987.0,10.832363,10832.363 +28442,2025-03-10T14:30:28.649215-07:00,2004.0,10.841863,10841.863 +28443,2025-03-10T14:30:39.482380-07:00,2045.0,10.833165,10833.165 +28444,2025-03-10T14:30:50.314078-07:00,1998.0,10.831698,10831.698 +28445,2025-03-10T14:31:01.146615-07:00,2015.0,10.832537,10832.537 +28446,2025-03-10T14:31:11.984268-07:00,2069.0,10.837653,10837.653 +28447,2025-03-10T14:31:22.819210-07:00,2013.0,10.834942,10834.942 +28448,2025-03-10T14:31:33.652509-07:00,1982.0,10.833299,10833.299 +28449,2025-03-10T14:31:44.483184-07:00,2011.0,10.830675,10830.675 +28450,2025-03-10T14:31:55.327428-07:00,2042.0,10.844244,10844.244 +28451,2025-03-10T14:32:06.152188-07:00,2047.0,10.82476,10824.76 +28452,2025-03-10T14:32:16.992518-07:00,2043.0,10.84033,10840.33 +28453,2025-03-10T14:32:27.821816-07:00,1980.0,10.829298,10829.298 +28454,2025-03-10T14:32:38.666009-07:00,2061.0,10.844193,10844.193 +28455,2025-03-10T14:32:49.508821-07:00,2058.0,10.842812,10842.812 +28456,2025-03-10T14:33:00.340816-07:00,2060.0,10.831995,10831.995 +28457,2025-03-10T14:33:11.182783-07:00,2054.0,10.841967,10841.967 +28458,2025-03-10T14:33:22.026446-07:00,2070.0,10.843663,10843.663 +28459,2025-03-10T14:33:32.868203-07:00,2005.0,10.841757,10841.757 +28460,2025-03-10T14:33:43.704491-07:00,2015.0,10.836288,10836.288 +28461,2025-03-10T14:33:54.544250-07:00,2019.0,10.839759,10839.759 +28462,2025-03-10T14:34:05.388321-07:00,2039.0,10.844071,10844.071 +28463,2025-03-10T14:34:16.230730-07:00,2073.0,10.842409,10842.409 +28464,2025-03-10T14:34:27.062096-07:00,2021.0,10.831366,10831.366 +28465,2025-03-10T14:34:37.897897-07:00,2030.0,10.835801,10835.801 +28466,2025-03-10T14:34:48.720511-07:00,2056.0,10.822614,10822.614 +28467,2025-03-10T14:34:59.558210-07:00,1993.0,10.837699,10837.699 +28468,2025-03-10T14:35:10.389282-07:00,2032.0,10.831072,10831.072 +28469,2025-03-10T14:35:21.231622-07:00,1978.0,10.84234,10842.34 +28470,2025-03-10T14:35:32.070805-07:00,2031.0,10.839183,10839.183 +28471,2025-03-10T14:35:42.906205-07:00,2035.0,10.8354,10835.4 +28472,2025-03-10T14:35:53.749513-07:00,2007.0,10.843308,10843.308 +28473,2025-03-10T14:36:04.593176-07:00,2011.0,10.843663,10843.663 +28474,2025-03-10T14:36:15.436479-07:00,2021.0,10.843303,10843.303 +28475,2025-03-10T14:36:26.278264-07:00,2014.0,10.841785,10841.785 +28476,2025-03-10T14:36:37.111206-07:00,1981.0,10.832942,10832.942 +28477,2025-03-10T14:36:47.952270-07:00,1989.0,10.841064,10841.064 +28478,2025-03-10T14:36:58.795205-07:00,1951.0,10.842935,10842.935 +28479,2025-03-10T14:37:09.628519-07:00,1945.0,10.833314,10833.314 +28480,2025-03-10T14:37:20.460207-07:00,1936.0,10.831688,10831.688 +28481,2025-03-10T14:37:31.295777-07:00,1958.0,10.83557,10835.57 +28482,2025-03-10T14:37:42.129208-07:00,1962.0,10.833431,10833.431 +28483,2025-03-10T14:37:52.962354-07:00,1947.0,10.833146,10833.146 +28484,2025-03-10T14:38:03.810212-07:00,2012.0,10.847858,10847.858 +28485,2025-03-10T14:38:14.649227-07:00,1998.0,10.839015,10839.015 +28486,2025-03-10T14:38:25.485351-07:00,2047.0,10.836124,10836.124 +28487,2025-03-10T14:38:36.326434-07:00,2064.0,10.841083,10841.083 +28488,2025-03-10T14:38:47.154209-07:00,1987.0,10.827775,10827.775 +28489,2025-03-10T14:38:57.985214-07:00,2064.0,10.831005,10831.005 +28490,2025-03-10T14:39:08.819569-07:00,2075.0,10.834355,10834.355 +28491,2025-03-10T14:39:19.659191-07:00,2023.0,10.839622,10839.622 +28492,2025-03-10T14:39:30.498375-07:00,2064.0,10.839184,10839.184 +28493,2025-03-10T14:39:41.341544-07:00,2074.0,10.843169,10843.169 +28494,2025-03-10T14:39:52.178511-07:00,1995.0,10.836967,10836.967 +28495,2025-03-10T14:40:03.015215-07:00,1997.0,10.836704,10836.704 +28496,2025-03-10T14:40:24.690421-07:00,2002.0,21.675206,21675.206 +28497,2025-03-10T14:40:35.522356-07:00,1973.0,10.831935,10831.935 +28498,2025-03-10T14:40:46.365855-07:00,2030.0,10.843499,10843.499 +28499,2025-03-10T14:40:57.208729-07:00,1963.0,10.842874,10842.874 +28500,2025-03-10T14:41:08.038211-07:00,2042.0,10.829482,10829.482 +28501,2025-03-10T14:41:18.884211-07:00,2063.0,10.846,10846.0 +28502,2025-03-10T14:41:29.721909-07:00,2021.0,10.837698,10837.698 +28503,2025-03-10T14:41:40.558204-07:00,2069.0,10.836295,10836.295 +28504,2025-03-10T14:41:51.401214-07:00,2032.0,10.84301,10843.01 +28505,2025-03-10T14:42:02.235513-07:00,2000.0,10.834299,10834.299 +28506,2025-03-10T14:42:13.076181-07:00,2009.0,10.840668,10840.668 +28507,2025-03-10T14:42:23.919208-07:00,2065.0,10.843027,10843.027 +28508,2025-03-10T14:42:34.751461-07:00,2029.0,10.832253,10832.253 +28509,2025-03-10T14:42:45.599868-07:00,2060.0,10.848407,10848.407 +28510,2025-03-10T14:42:56.425215-07:00,2070.0,10.825347,10825.347 +28511,2025-03-10T14:43:07.257776-07:00,2071.0,10.832561,10832.561 +28512,2025-03-10T14:43:18.096707-07:00,2041.0,10.838931,10838.931 +28513,2025-03-10T14:43:28.935208-07:00,2066.0,10.838501,10838.501 +28514,2025-03-10T14:43:39.763234-07:00,2037.0,10.828026,10828.026 +28515,2025-03-10T14:43:50.598459-07:00,2000.0,10.835225,10835.225 +28516,2025-03-10T14:44:01.430598-07:00,1973.0,10.832139,10832.139 +28517,2025-03-10T14:44:12.276205-07:00,2018.0,10.845607,10845.607 +28518,2025-03-10T14:44:23.112204-07:00,1971.0,10.835999,10835.999 +28519,2025-03-10T14:44:33.946790-07:00,1958.0,10.834586,10834.586 +28520,2025-03-10T14:44:44.777477-07:00,2035.0,10.830687,10830.687 +28521,2025-03-10T14:44:55.618528-07:00,2006.0,10.841051,10841.051 +28522,2025-03-10T14:45:06.450215-07:00,2009.0,10.831687,10831.687 +28523,2025-03-10T14:45:17.292459-07:00,2030.0,10.842244,10842.244 +28524,2025-03-10T14:45:28.132216-07:00,1989.0,10.839757,10839.757 +28525,2025-03-10T14:45:38.966093-07:00,2032.0,10.833877,10833.877 +28526,2025-03-10T14:45:49.799458-07:00,2019.0,10.833365,10833.365 +28527,2025-03-10T14:46:00.644207-07:00,2036.0,10.844749,10844.749 +28528,2025-03-10T14:46:11.476873-07:00,1936.0,10.832666,10832.666 +28529,2025-03-10T14:46:22.318211-07:00,2013.0,10.841338,10841.338 +28530,2025-03-10T14:46:33.150215-07:00,2011.0,10.832004,10832.004 +28531,2025-03-10T14:46:43.993757-07:00,1931.0,10.843542,10843.542 +28532,2025-03-10T14:46:54.830208-07:00,2003.0,10.836451,10836.451 +28533,2025-03-10T14:47:05.669263-07:00,2032.0,10.839055,10839.055 +28534,2025-03-10T14:47:16.502269-07:00,1965.0,10.833006,10833.006 +28535,2025-03-10T14:47:27.333204-07:00,1984.0,10.830935,10830.935 +28536,2025-03-10T14:47:38.165542-07:00,1967.0,10.832338,10832.338 +28537,2025-03-10T14:47:49.001658-07:00,2066.0,10.836116,10836.116 +28538,2025-03-10T14:47:59.827677-07:00,1995.0,10.826019,10826.019 +28539,2025-03-10T14:48:10.672192-07:00,2059.0,10.844515,10844.515 +28540,2025-03-10T14:48:21.501455-07:00,2032.0,10.829263,10829.263 +28541,2025-03-10T14:48:32.346208-07:00,2042.0,10.844753,10844.753 +28542,2025-03-10T14:48:43.177419-07:00,2066.0,10.831211,10831.211 +28543,2025-03-10T14:48:54.009519-07:00,1985.0,10.8321,10832.1 +28544,2025-03-10T14:49:04.853207-07:00,2053.0,10.843688,10843.688 +28545,2025-03-10T14:49:15.678213-07:00,1965.0,10.825006,10825.006 +28546,2025-03-10T14:49:26.515661-07:00,2007.0,10.837448,10837.448 +28547,2025-03-10T14:49:37.348262-07:00,1983.0,10.832601,10832.601 +28548,2025-03-10T14:49:48.180417-07:00,1971.0,10.832155,10832.155 +28549,2025-03-10T14:49:59.023539-07:00,1922.0,10.843122,10843.122 +28550,2025-03-10T14:50:09.865685-07:00,1965.0,10.842146,10842.146 +28551,2025-03-10T14:50:20.701047-07:00,1900.0,10.835362,10835.362 +28552,2025-03-10T14:50:31.529665-07:00,1950.0,10.828618,10828.618 +28553,2025-03-10T14:50:42.372252-07:00,1974.0,10.842587,10842.587 +28554,2025-03-10T14:50:53.207254-07:00,1969.0,10.835002,10835.002 +28555,2025-03-10T14:51:04.030354-07:00,1989.0,10.8231,10823.1 +28556,2025-03-10T14:51:14.867487-07:00,2014.0,10.837133,10837.133 +28557,2025-03-10T14:51:25.706449-07:00,1969.0,10.838962,10838.962 +28558,2025-03-10T14:51:36.542525-07:00,1997.0,10.836076,10836.076 +28559,2025-03-10T14:51:47.373433-07:00,2036.0,10.830908,10830.908 +28560,2025-03-10T14:51:58.217142-07:00,2045.0,10.843709,10843.709 +28561,2025-03-10T14:52:09.047211-07:00,2006.0,10.830069,10830.069 +28562,2025-03-10T14:52:19.878438-07:00,2037.0,10.831227,10831.227 +28563,2025-03-10T14:52:30.707251-07:00,2040.0,10.828813,10828.813 +28564,2025-03-10T14:52:41.551335-07:00,2042.0,10.844084,10844.084 +28565,2025-03-10T14:52:52.377465-07:00,2009.0,10.82613,10826.13 +28566,2025-03-10T14:53:03.217455-07:00,2025.0,10.83999,10839.99 +28567,2025-03-10T14:53:14.056262-07:00,1991.0,10.838807,10838.807 +28568,2025-03-10T14:53:24.893534-07:00,1979.0,10.837272,10837.272 +28569,2025-03-10T14:53:35.733210-07:00,1984.0,10.839676,10839.676 +28570,2025-03-10T14:53:46.579109-07:00,2025.0,10.845899,10845.899 +28571,2025-03-10T14:53:57.423485-07:00,1965.0,10.844376,10844.376 +28572,2025-03-10T14:54:08.266740-07:00,2019.0,10.843255,10843.255 +28573,2025-03-10T14:54:19.108045-07:00,2034.0,10.841305,10841.305 +28574,2025-03-10T14:54:29.952511-07:00,2034.0,10.844466,10844.466 +28575,2025-03-10T14:54:40.785211-07:00,1979.0,10.8327,10832.7 +28576,2025-03-10T14:54:51.635216-07:00,2027.0,10.850005,10850.005 +28577,2025-03-10T14:55:02.480510-07:00,1968.0,10.845294,10845.294 +28578,2025-03-10T14:55:13.324361-07:00,2000.0,10.843851,10843.851 +28579,2025-03-10T14:55:24.167214-07:00,2026.0,10.842853,10842.853 +28580,2025-03-10T14:55:35.010523-07:00,1978.0,10.843309,10843.309 +28581,2025-03-10T14:55:45.843461-07:00,1918.0,10.832938,10832.938 +28582,2025-03-10T14:55:56.685068-07:00,1939.0,10.841607,10841.607 +28583,2025-03-10T14:56:07.527442-07:00,1995.0,10.842374,10842.374 +28584,2025-03-10T14:56:18.361503-07:00,1947.0,10.834061,10834.061 +28585,2025-03-10T14:56:29.203578-07:00,2007.0,10.842075,10842.075 +28586,2025-03-10T14:56:40.043221-07:00,1942.0,10.839643,10839.643 +28587,2025-03-10T14:56:50.891246-07:00,2000.0,10.848025,10848.025 +28588,2025-03-10T14:57:01.725711-07:00,2004.0,10.834465,10834.465 +28589,2025-03-10T14:57:12.577572-07:00,1971.0,10.851861,10851.861 +28590,2025-03-10T14:57:23.417654-07:00,1983.0,10.840082,10840.082 +28591,2025-03-10T14:57:34.270191-07:00,1951.0,10.852537,10852.537 +28592,2025-03-10T14:57:45.116531-07:00,1951.0,10.84634,10846.34 +28593,2025-03-10T14:57:55.962205-07:00,1954.0,10.845674,10845.674 +28594,2025-03-10T14:58:06.803521-07:00,1995.0,10.841316,10841.316 +28595,2025-03-10T14:58:17.649609-07:00,1904.0,10.846088,10846.088 +28596,2025-03-10T14:58:28.493268-07:00,1947.0,10.843659,10843.659 +28597,2025-03-10T14:58:39.338376-07:00,1943.0,10.845108,10845.108 +28598,2025-03-10T14:58:50.191202-07:00,1946.0,10.852826,10852.826 +28599,2025-03-10T14:59:01.029548-07:00,1894.0,10.838346,10838.346 +28600,2025-03-10T14:59:11.877489-07:00,1975.0,10.847941,10847.941 +28601,2025-03-10T14:59:22.722212-07:00,1946.0,10.844723,10844.723 +28602,2025-03-10T14:59:33.564752-07:00,1905.0,10.84254,10842.54 +28603,2025-03-10T14:59:44.414480-07:00,1937.0,10.849728,10849.728 +28604,2025-03-10T14:59:55.270228-07:00,1936.0,10.855748,10855.748 +28605,2025-03-10T15:00:06.112652-07:00,1933.0,10.842424,10842.424 +28606,2025-03-10T15:00:16.952706-07:00,1909.0,10.840054,10840.054 +28607,2025-03-10T15:00:27.797509-07:00,1870.0,10.844803,10844.803 +28608,2025-03-10T15:00:38.639335-07:00,1923.0,10.841826,10841.826 +28609,2025-03-10T15:00:49.481405-07:00,1910.0,10.84207,10842.07 +28610,2025-03-10T15:01:00.324627-07:00,1855.0,10.843222,10843.222 +28611,2025-03-10T15:01:11.166213-07:00,1881.0,10.841586,10841.586 +28612,2025-03-10T15:01:22.011208-07:00,1904.0,10.844995,10844.995 +28613,2025-03-10T15:01:32.850228-07:00,1891.0,10.83902,10839.02 +28614,2025-03-10T15:01:43.695213-07:00,1921.0,10.844985,10844.985 +28615,2025-03-10T15:01:54.537445-07:00,1875.0,10.842232,10842.232 +28616,2025-03-10T15:02:05.380454-07:00,1915.0,10.843009,10843.009 +28617,2025-03-10T15:02:16.218210-07:00,1895.0,10.837756,10837.756 +28618,2025-03-10T15:02:27.063539-07:00,1883.0,10.845329,10845.329 +28619,2025-03-10T15:02:37.910468-07:00,1892.0,10.846929,10846.929 +28620,2025-03-10T15:02:48.737585-07:00,1913.0,10.827117,10827.117 +28621,2025-03-10T15:02:59.577693-07:00,1946.0,10.840108,10840.108 +28622,2025-03-10T15:03:10.410415-07:00,1939.0,10.832722,10832.722 +28623,2025-03-10T15:03:21.253319-07:00,1922.0,10.842904,10842.904 +28624,2025-03-10T15:03:32.095455-07:00,1919.0,10.842136,10842.136 +28625,2025-03-10T15:03:42.927336-07:00,1941.0,10.831881,10831.881 +28626,2025-03-10T15:03:53.765353-07:00,1937.0,10.838017,10838.017 +28627,2025-03-10T15:04:04.611034-07:00,1970.0,10.845681,10845.681 +28628,2025-03-10T15:04:15.440728-07:00,1919.0,10.829694,10829.694 +28629,2025-03-10T15:04:26.276642-07:00,1969.0,10.835914,10835.914 +28630,2025-03-10T15:04:37.116391-07:00,1911.0,10.839749,10839.749 +28631,2025-03-10T15:04:47.953201-07:00,1975.0,10.83681,10836.81 +28632,2025-03-10T15:04:58.791203-07:00,1926.0,10.838002,10838.002 +28633,2025-03-10T15:05:09.638469-07:00,1979.0,10.847266,10847.266 +28634,2025-03-10T15:05:20.470437-07:00,1987.0,10.831968,10831.968 +28635,2025-03-10T15:05:31.314258-07:00,1994.0,10.843821,10843.821 +28636,2025-03-10T15:05:42.163276-07:00,2011.0,10.849018,10849.018 +28637,2025-03-10T15:05:52.916855-07:00,2021.0,10.753579,10753.579 +28638,2025-03-10T15:06:03.756526-07:00,1993.0,10.839671,10839.671 +28639,2025-03-10T15:06:14.598486-07:00,2019.0,10.84196,10841.96 +28640,2025-03-10T15:06:25.447459-07:00,2023.0,10.848973,10848.973 +28641,2025-03-10T15:06:36.277469-07:00,2000.0,10.83001,10830.01 +28642,2025-03-10T15:06:47.117427-07:00,2002.0,10.839958,10839.958 +28643,2025-03-10T15:06:57.960231-07:00,2015.0,10.842804,10842.804 +28644,2025-03-10T15:07:08.793646-07:00,1937.0,10.833415,10833.415 +28645,2025-03-10T15:07:19.644802-07:00,1955.0,10.851156,10851.156 +28646,2025-03-10T15:07:30.484147-07:00,2023.0,10.839345,10839.345 +28647,2025-03-10T15:07:41.315632-07:00,1964.0,10.831485,10831.485 +28648,2025-03-10T15:07:52.156687-07:00,1937.0,10.841055,10841.055 +28649,2025-03-10T15:08:03.002225-07:00,1939.0,10.845538,10845.538 +28650,2025-03-10T15:08:13.831486-07:00,2022.0,10.829261,10829.261 +28651,2025-03-10T15:08:24.676491-07:00,1982.0,10.845005,10845.005 +28652,2025-03-10T15:08:35.515293-07:00,2012.0,10.838802,10838.802 +28653,2025-03-10T15:08:46.349539-07:00,1968.0,10.834246,10834.246 +28654,2025-03-10T15:08:57.178504-07:00,2029.0,10.828965,10828.965 +28655,2025-03-10T15:09:08.014631-07:00,1946.0,10.836127,10836.127 +28656,2025-03-10T15:09:18.851708-07:00,2013.0,10.837077,10837.077 +28657,2025-03-10T15:09:29.684688-07:00,1949.0,10.83298,10832.98 +28658,2025-03-10T15:09:40.516742-07:00,1972.0,10.832054,10832.054 +28659,2025-03-10T15:09:51.352811-07:00,2016.0,10.836069,10836.069 +28660,2025-03-10T15:10:02.197069-07:00,2015.0,10.844258,10844.258 +28661,2025-03-10T15:10:13.028487-07:00,1946.0,10.831418,10831.418 +28662,2025-03-10T15:10:23.864709-07:00,1968.0,10.836222,10836.222 +28663,2025-03-10T15:10:34.705769-07:00,2009.0,10.84106,10841.06 +28664,2025-03-10T15:10:45.533738-07:00,2009.0,10.827969,10827.969 +28665,2025-03-10T15:10:56.377512-07:00,1947.0,10.843774,10843.774 +28666,2025-03-10T15:11:07.210535-07:00,1974.0,10.833023,10833.023 +28667,2025-03-10T15:11:18.052551-07:00,1998.0,10.842016,10842.016 +28668,2025-03-10T15:11:28.883920-07:00,1931.0,10.831369,10831.369 +28669,2025-03-10T15:11:39.727361-07:00,2000.0,10.843441,10843.441 +28670,2025-03-10T15:11:50.563486-07:00,2007.0,10.836125,10836.125 +28671,2025-03-10T15:12:01.391736-07:00,2032.0,10.82825,10828.25 +28672,2025-03-10T15:12:12.222487-07:00,2035.0,10.830751,10830.751 +28673,2025-03-10T15:12:23.065493-07:00,2032.0,10.843006,10843.006 +28674,2025-03-10T15:12:33.908829-07:00,1975.0,10.843336,10843.336 +28675,2025-03-10T15:12:44.744547-07:00,2006.0,10.835718,10835.718 +28676,2025-03-10T15:12:55.583490-07:00,1995.0,10.838943,10838.943 +28677,2025-03-10T15:13:06.415813-07:00,2013.0,10.832323,10832.323 +28678,2025-03-10T15:13:17.246541-07:00,2045.0,10.830728,10830.728 +28679,2025-03-10T15:13:28.089484-07:00,2054.0,10.842943,10842.943 +28680,2025-03-10T15:13:38.922130-07:00,2002.0,10.832646,10832.646 +28681,2025-03-10T15:13:49.759855-07:00,2035.0,10.837725,10837.725 +28682,2025-03-10T15:14:00.597672-07:00,2053.0,10.837817,10837.817 +28683,2025-03-10T15:14:11.442173-07:00,2037.0,10.844501,10844.501 +28684,2025-03-10T15:14:22.272211-07:00,2054.0,10.830038,10830.038 +28685,2025-03-10T15:14:33.115486-07:00,2010.0,10.843275,10843.275 +28686,2025-03-10T15:14:43.945628-07:00,2026.0,10.830142,10830.142 +28687,2025-03-10T15:14:54.777552-07:00,2025.0,10.831924,10831.924 +28688,2025-03-10T15:15:05.611769-07:00,2061.0,10.834217,10834.217 +28689,2025-03-10T15:15:16.452792-07:00,1997.0,10.841023,10841.023 +28690,2025-03-10T15:15:27.286770-07:00,2022.0,10.833978,10833.978 +28691,2025-03-10T15:15:38.125913-07:00,1981.0,10.839143,10839.143 +28692,2025-03-10T15:15:48.961488-07:00,2001.0,10.835575,10835.575 +28693,2025-03-10T15:15:59.812492-07:00,2064.0,10.851004,10851.004 +28694,2025-03-10T15:16:10.645680-07:00,2071.0,10.833188,10833.188 +28695,2025-03-10T15:16:21.485019-07:00,2033.0,10.839339,10839.339 +28696,2025-03-10T15:16:32.313721-07:00,2063.0,10.828702,10828.702 +28697,2025-03-10T15:16:43.151871-07:00,2070.0,10.83815,10838.15 +28698,2025-03-10T15:16:53.995032-07:00,2003.0,10.843161,10843.161 +28699,2025-03-10T15:17:04.824688-07:00,2058.0,10.829656,10829.656 +28700,2025-03-10T15:17:15.669493-07:00,2000.0,10.844805,10844.805 +28701,2025-03-10T15:17:26.506881-07:00,1995.0,10.837388,10837.388 +28702,2025-03-10T15:17:37.342491-07:00,2064.0,10.83561,10835.61 +28703,2025-03-10T15:17:48.176819-07:00,2015.0,10.834328,10834.328 +28704,2025-03-10T15:17:59.019576-07:00,2064.0,10.842757,10842.757 +28705,2025-03-10T15:18:09.859484-07:00,2069.0,10.839908,10839.908 +28706,2025-03-10T15:18:20.693737-07:00,2073.0,10.834253,10834.253 +28707,2025-03-10T15:18:31.529083-07:00,2073.0,10.835346,10835.346 +28708,2025-03-10T15:18:42.365483-07:00,1978.0,10.8364,10836.4 +28709,2025-03-10T15:18:53.201874-07:00,2037.0,10.836391,10836.391 +28710,2025-03-10T15:19:04.042154-07:00,2055.0,10.84028,10840.28 +28711,2025-03-10T15:19:14.874808-07:00,2067.0,10.832654,10832.654 +28712,2025-03-10T15:19:25.707809-07:00,2037.0,10.833001,10833.001 +28713,2025-03-10T15:19:36.538523-07:00,2042.0,10.830714,10830.714 +28714,2025-03-10T15:19:47.369476-07:00,2038.0,10.830953,10830.953 +28715,2025-03-10T15:19:58.213255-07:00,1978.0,10.843779,10843.779 +28716,2025-03-10T15:20:09.045487-07:00,1965.0,10.832232,10832.232 +28717,2025-03-10T15:20:19.884453-07:00,2025.0,10.838966,10838.966 +28718,2025-03-10T15:20:30.720693-07:00,2002.0,10.83624,10836.24 +28719,2025-03-10T15:20:41.554726-07:00,1968.0,10.834033,10834.033 +28720,2025-03-10T15:20:52.394940-07:00,2007.0,10.840214,10840.214 +28721,2025-03-10T15:21:03.236528-07:00,2027.0,10.841588,10841.588 +28722,2025-03-10T15:21:14.076628-07:00,2032.0,10.8401,10840.1 +28723,2025-03-10T15:21:24.914495-07:00,2017.0,10.837867,10837.867 +28724,2025-03-10T15:21:35.759014-07:00,2009.0,10.844519,10844.519 +28725,2025-03-10T15:21:46.595481-07:00,1998.0,10.836467,10836.467 +28726,2025-03-10T15:21:57.431540-07:00,2011.0,10.836059,10836.059 +28727,2025-03-10T15:22:08.274823-07:00,1963.0,10.843283,10843.283 +28728,2025-03-10T15:22:19.118465-07:00,2007.0,10.843642,10843.642 +28729,2025-03-10T15:22:29.956492-07:00,1957.0,10.838027,10838.027 +28730,2025-03-10T15:22:40.803491-07:00,1968.0,10.846999,10846.999 +28731,2025-03-10T15:22:51.650553-07:00,1983.0,10.847062,10847.062 +28732,2025-03-10T15:23:02.492066-07:00,1926.0,10.841513,10841.513 +28733,2025-03-10T15:23:13.336684-07:00,2004.0,10.844618,10844.618 +28734,2025-03-10T15:23:24.184503-07:00,2013.0,10.847819,10847.819 +28735,2025-03-10T15:23:35.025541-07:00,1971.0,10.841038,10841.038 +28736,2025-03-10T15:23:45.870722-07:00,1919.0,10.845181,10845.181 +28737,2025-03-10T15:23:56.709747-07:00,1969.0,10.839025,10839.025 +28738,2025-03-10T15:24:07.560205-07:00,1987.0,10.850458,10850.458 +28739,2025-03-10T15:24:18.397559-07:00,1941.0,10.837354,10837.354 +28740,2025-03-10T15:24:29.237737-07:00,1975.0,10.840178,10840.178 +28741,2025-03-10T15:24:40.084494-07:00,2000.0,10.846757,10846.757 +28742,2025-03-10T15:24:50.931790-07:00,1999.0,10.847296,10847.296 +28743,2025-03-10T15:25:01.770626-07:00,2022.0,10.838836,10838.836 +28744,2025-03-10T15:25:12.616479-07:00,1951.0,10.845853,10845.853 +28745,2025-03-10T15:25:23.461735-07:00,2047.0,10.845256,10845.256 +28746,2025-03-10T15:25:34.305792-07:00,1999.0,10.844057,10844.057 +28747,2025-03-10T15:25:45.142678-07:00,2036.0,10.836886,10836.886 +28748,2025-03-10T15:25:55.986487-07:00,2029.0,10.843809,10843.809 +28749,2025-03-10T15:26:06.832469-07:00,1987.0,10.845982,10845.982 +28750,2025-03-10T15:26:17.671541-07:00,1971.0,10.839072,10839.072 +28751,2025-03-10T15:26:28.519835-07:00,1987.0,10.848294,10848.294 +28752,2025-03-10T15:26:39.375792-07:00,1942.0,10.855957,10855.957 +28753,2025-03-10T15:26:50.221947-07:00,1975.0,10.846155,10846.155 +28754,2025-03-10T15:27:01.059482-07:00,2042.0,10.837535,10837.535 +28755,2025-03-10T15:27:11.903951-07:00,2000.0,10.844469,10844.469 +28756,2025-03-10T15:27:22.748075-07:00,1965.0,10.844124,10844.124 +28757,2025-03-10T15:27:33.596760-07:00,1989.0,10.848685,10848.685 +28758,2025-03-10T15:27:44.442817-07:00,2016.0,10.846057,10846.057 +28759,2025-03-10T15:27:55.286488-07:00,2003.0,10.843671,10843.671 +28760,2025-03-10T15:28:06.130727-07:00,1998.0,10.844239,10844.239 +28761,2025-03-10T15:28:16.974488-07:00,2002.0,10.843761,10843.761 +28762,2025-03-10T15:28:27.812729-07:00,1921.0,10.838241,10838.241 +28763,2025-03-10T15:28:38.651533-07:00,1936.0,10.838804,10838.804 +28764,2025-03-10T15:28:49.495104-07:00,1999.0,10.843571,10843.571 +28765,2025-03-10T15:29:00.344805-07:00,2013.0,10.849701,10849.701 +28766,2025-03-10T15:29:11.185039-07:00,1978.0,10.840234,10840.234 +28767,2025-03-10T15:29:22.021547-07:00,1935.0,10.836508,10836.508 +28768,2025-03-10T15:29:32.863715-07:00,1970.0,10.842168,10842.168 +28769,2025-03-10T15:29:43.707492-07:00,1979.0,10.843777,10843.777 +28770,2025-03-10T15:29:54.562631-07:00,1984.0,10.855139,10855.139 +28771,2025-03-10T15:30:05.407827-07:00,2009.0,10.845196,10845.196 +28772,2025-03-10T15:30:16.254712-07:00,1954.0,10.846885,10846.885 +28773,2025-03-10T15:30:27.091798-07:00,2003.0,10.837086,10837.086 +28774,2025-03-10T15:30:37.941679-07:00,2000.0,10.849881,10849.881 +28775,2025-03-10T15:30:48.789490-07:00,1931.0,10.847811,10847.811 +28776,2025-03-10T15:30:59.643682-07:00,1992.0,10.854192,10854.192 +28777,2025-03-10T15:31:10.490035-07:00,1971.0,10.846353,10846.353 +28778,2025-03-10T15:31:21.329839-07:00,1887.0,10.839804,10839.804 +28779,2025-03-10T15:31:32.171938-07:00,1892.0,10.842099,10842.099 +28780,2025-03-10T15:31:43.015541-07:00,1986.0,10.843603,10843.603 +28781,2025-03-10T15:31:53.860749-07:00,1954.0,10.845208,10845.208 +28782,2025-03-10T15:32:04.712527-07:00,1933.0,10.851778,10851.778 +28783,2025-03-10T15:32:15.560761-07:00,1935.0,10.848234,10848.234 +28784,2025-03-10T15:32:26.410910-07:00,1954.0,10.850149,10850.149 +28785,2025-03-10T15:32:37.252658-07:00,1901.0,10.841748,10841.748 +28786,2025-03-10T15:32:48.097547-07:00,1943.0,10.844889,10844.889 +28787,2025-03-10T15:32:58.952155-07:00,1972.0,10.854608,10854.608 +28788,2025-03-10T15:33:09.794662-07:00,1970.0,10.842507,10842.507 +28789,2025-03-10T15:33:20.647698-07:00,1936.0,10.853036,10853.036 +28790,2025-03-10T15:33:31.495919-07:00,1884.0,10.848221,10848.221 +28791,2025-03-10T15:33:42.335746-07:00,1969.0,10.839827,10839.827 +28792,2025-03-10T15:33:53.189940-07:00,1917.0,10.854194,10854.194 +28793,2025-03-10T15:34:04.044639-07:00,1935.0,10.854699,10854.699 +28794,2025-03-10T15:34:14.891905-07:00,1956.0,10.847266,10847.266 +28795,2025-03-10T15:34:25.742750-07:00,1961.0,10.850845,10850.845 +28796,2025-03-10T15:34:36.595965-07:00,1903.0,10.853215,10853.215 +28797,2025-03-10T15:34:47.439490-07:00,1969.0,10.843525,10843.525 +28798,2025-03-10T15:34:58.291744-07:00,1968.0,10.852254,10852.254 +28799,2025-03-10T15:35:09.137493-07:00,1966.0,10.845749,10845.749 +28800,2025-03-10T15:35:19.978810-07:00,1932.0,10.841317,10841.317 +28801,2025-03-10T15:35:30.824667-07:00,1894.0,10.845857,10845.857 +28802,2025-03-10T15:35:41.673709-07:00,1900.0,10.849042,10849.042 +28803,2025-03-10T15:35:52.522489-07:00,1959.0,10.84878,10848.78 +28804,2025-03-10T15:36:03.365641-07:00,1917.0,10.843152,10843.152 +28805,2025-03-10T15:36:14.218491-07:00,1911.0,10.85285,10852.85 +28806,2025-03-10T15:36:25.061550-07:00,1993.0,10.843059,10843.059 +28807,2025-03-10T15:36:35.904996-07:00,1975.0,10.843446,10843.446 +28808,2025-03-10T15:36:46.747490-07:00,1919.0,10.842494,10842.494 +28809,2025-03-10T15:36:57.591487-07:00,1952.0,10.843997,10843.997 +28810,2025-03-10T15:37:08.435486-07:00,1968.0,10.843999,10843.999 +28811,2025-03-10T15:37:19.277069-07:00,1968.0,10.841583,10841.583 +28812,2025-03-10T15:37:30.130821-07:00,1934.0,10.853752,10853.752 +28813,2025-03-10T15:37:40.975777-07:00,1962.0,10.844956,10844.956 +28814,2025-03-10T15:37:51.820484-07:00,1931.0,10.844707,10844.707 +28815,2025-03-10T15:38:02.669757-07:00,1968.0,10.849273,10849.273 +28816,2025-03-10T15:38:13.516649-07:00,1927.0,10.846892,10846.892 +28817,2025-03-10T15:38:24.359708-07:00,1935.0,10.843059,10843.059 +28818,2025-03-10T15:38:35.214214-07:00,1948.0,10.854506,10854.506 +28819,2025-03-10T15:38:46.056649-07:00,1933.0,10.842435,10842.435 +28820,2025-03-10T15:38:56.909995-07:00,1944.0,10.853346,10853.346 +28821,2025-03-10T15:39:07.754055-07:00,1881.0,10.84406,10844.06 +28822,2025-03-10T15:39:18.608666-07:00,1922.0,10.854611,10854.611 +28823,2025-03-10T15:39:29.461484-07:00,1956.0,10.852818,10852.818 +28824,2025-03-10T15:39:40.308491-07:00,1949.0,10.847007,10847.007 +28825,2025-03-10T15:39:51.149490-07:00,1897.0,10.840999,10840.999 +28826,2025-03-10T15:40:01.991798-07:00,1942.0,10.842308,10842.308 +28827,2025-03-10T15:40:12.836781-07:00,1965.0,10.844983,10844.983 +28828,2025-03-10T15:40:23.679485-07:00,1943.0,10.842704,10842.704 +28829,2025-03-10T15:40:34.531691-07:00,1923.0,10.852206,10852.206 +28830,2025-03-10T15:40:45.376764-07:00,1956.0,10.845073,10845.073 +28831,2025-03-10T15:40:56.231100-07:00,1900.0,10.854336,10854.336 +28832,2025-03-10T15:41:07.075041-07:00,1904.0,10.843941,10843.941 +28833,2025-03-10T15:41:17.916669-07:00,1994.0,10.841628,10841.628 +28834,2025-03-10T15:41:28.759487-07:00,2000.0,10.842818,10842.818 +28835,2025-03-10T15:41:39.614484-07:00,1961.0,10.854997,10854.997 +28836,2025-03-10T15:41:50.454716-07:00,1971.0,10.840232,10840.232 +28837,2025-03-10T15:42:01.303686-07:00,1921.0,10.84897,10848.97 +28838,2025-03-10T15:42:12.142792-07:00,1883.0,10.839106,10839.106 +28839,2025-03-10T15:42:22.993353-07:00,1891.0,10.850561,10850.561 +28840,2025-03-10T15:42:33.838654-07:00,1899.0,10.845301,10845.301 +28841,2025-03-10T15:42:44.696550-07:00,1978.0,10.857896,10857.896 +28842,2025-03-10T15:42:55.538741-07:00,1980.0,10.842191,10842.191 +28843,2025-03-10T15:43:06.393013-07:00,1985.0,10.854272,10854.272 +28844,2025-03-10T15:43:17.236767-07:00,1960.0,10.843754,10843.754 +28845,2025-03-10T15:43:28.093842-07:00,1970.0,10.857075,10857.075 +28846,2025-03-10T15:43:38.944928-07:00,1950.0,10.851086,10851.086 +28847,2025-03-10T15:43:49.788774-07:00,1914.0,10.843846,10843.846 +28848,2025-03-10T15:44:00.643523-07:00,1929.0,10.854749,10854.749 +28849,2025-03-10T15:44:11.481789-07:00,1963.0,10.838266,10838.266 +28850,2025-03-10T15:44:22.332491-07:00,1994.0,10.850702,10850.702 +28851,2025-03-10T15:44:33.184482-07:00,1969.0,10.851991,10851.991 +28852,2025-03-10T15:44:44.033754-07:00,1909.0,10.849272,10849.272 +28853,2025-03-10T15:44:54.878493-07:00,1985.0,10.844739,10844.739 +28854,2025-03-10T15:45:05.737489-07:00,1994.0,10.858996,10858.996 +28855,2025-03-10T15:45:16.578496-07:00,1921.0,10.841007,10841.007 +28856,2025-03-10T15:45:27.427536-07:00,1933.0,10.84904,10849.04 +28857,2025-03-10T15:45:38.277808-07:00,1987.0,10.850272,10850.272 +28858,2025-03-10T15:45:49.119503-07:00,1967.0,10.841695,10841.695 +28859,2025-03-10T15:45:59.974205-07:00,1973.0,10.854702,10854.702 +28860,2025-03-10T15:46:10.818493-07:00,1975.0,10.844288,10844.288 +28861,2025-03-10T15:46:21.666749-07:00,1962.0,10.848256,10848.256 +28862,2025-03-10T15:46:32.504210-07:00,1899.0,10.837461,10837.461 +28863,2025-03-10T15:46:43.345953-07:00,1985.0,10.841743,10841.743 +28864,2025-03-10T15:46:54.200095-07:00,1984.0,10.854142,10854.142 +28865,2025-03-10T15:47:05.043306-07:00,1951.0,10.843211,10843.211 +28866,2025-03-10T15:47:15.881981-07:00,1968.0,10.838675,10838.675 +28867,2025-03-10T15:47:26.728494-07:00,1915.0,10.846513,10846.513 +28868,2025-03-10T15:47:37.583820-07:00,1930.0,10.855326,10855.326 +28869,2025-03-10T15:47:48.429254-07:00,1968.0,10.845434,10845.434 +28870,2025-03-10T15:47:59.266711-07:00,1953.0,10.837457,10837.457 +28871,2025-03-10T15:48:10.123530-07:00,1974.0,10.856819,10856.819 +28872,2025-03-10T15:48:20.970490-07:00,1978.0,10.84696,10846.96 +28873,2025-03-10T15:48:31.815494-07:00,1892.0,10.845004,10845.004 +28874,2025-03-10T15:48:42.656049-07:00,1891.0,10.840555,10840.555 +28875,2025-03-10T15:48:53.511481-07:00,1973.0,10.855432,10855.432 +28876,2025-03-10T15:49:04.352113-07:00,1899.0,10.840632,10840.632 +28877,2025-03-10T15:49:15.196490-07:00,1904.0,10.844377,10844.377 +28878,2025-03-10T15:49:26.038476-07:00,1949.0,10.841986,10841.986 +28879,2025-03-10T15:49:36.891768-07:00,1873.0,10.853292,10853.292 +28880,2025-03-10T15:49:47.741776-07:00,1947.0,10.850008,10850.008 +28881,2025-03-10T15:49:58.585955-07:00,1893.0,10.844179,10844.179 +28882,2025-03-10T15:50:09.432811-07:00,1896.0,10.846856,10846.856 +28883,2025-03-10T15:50:20.278924-07:00,1962.0,10.846113,10846.113 +28884,2025-03-10T15:50:31.136885-07:00,1942.0,10.857961,10857.961 +28885,2025-03-10T15:50:41.986851-07:00,1959.0,10.849966,10849.966 +28886,2025-03-10T15:50:52.827702-07:00,1965.0,10.840851,10840.851 +28887,2025-03-10T15:51:03.681644-07:00,1956.0,10.853942,10853.942 +28888,2025-03-10T15:51:14.527756-07:00,1938.0,10.846112,10846.112 +28889,2025-03-10T15:51:25.373744-07:00,1957.0,10.845988,10845.988 +28890,2025-03-10T15:51:36.223482-07:00,1963.0,10.849738,10849.738 +28891,2025-03-10T15:51:47.068742-07:00,1874.0,10.84526,10845.26 +28892,2025-03-10T15:51:57.912486-07:00,1957.0,10.843744,10843.744 +28893,2025-03-10T15:52:08.768484-07:00,1872.0,10.855998,10855.998 +28894,2025-03-10T15:52:19.613006-07:00,1965.0,10.844522,10844.522 +28895,2025-03-10T15:52:30.467491-07:00,1940.0,10.854485,10854.485 +28896,2025-03-10T15:52:41.309617-07:00,1916.0,10.842126,10842.126 +28897,2025-03-10T15:52:52.166343-07:00,1890.0,10.856726,10856.726 +28898,2025-03-10T15:53:03.015492-07:00,1966.0,10.849149,10849.149 +28899,2025-03-10T15:53:13.867487-07:00,1922.0,10.851995,10851.995 +28900,2025-03-10T15:53:24.711808-07:00,1967.0,10.844321,10844.321 +28901,2025-03-10T15:53:35.563809-07:00,1888.0,10.852001,10852.001 +28902,2025-03-10T15:53:46.402490-07:00,1963.0,10.838681,10838.681 +28903,2025-03-10T15:53:57.252630-07:00,1965.0,10.85014,10850.14 +28904,2025-03-10T15:54:08.095827-07:00,1959.0,10.843197,10843.197 +28905,2025-03-10T15:54:18.942853-07:00,1964.0,10.847026,10847.026 +28906,2025-03-10T15:54:29.798878-07:00,1923.0,10.856025,10856.025 +28907,2025-03-10T15:54:40.641790-07:00,1945.0,10.842912,10842.912 +28908,2025-03-10T15:54:51.497364-07:00,1889.0,10.855574,10855.574 +28909,2025-03-10T15:55:02.349650-07:00,1964.0,10.852286,10852.286 +28910,2025-03-10T15:55:13.193487-07:00,1901.0,10.843837,10843.837 +28911,2025-03-10T15:55:24.039671-07:00,1967.0,10.846184,10846.184 +28912,2025-03-10T15:55:34.879522-07:00,1919.0,10.839851,10839.851 +28913,2025-03-10T15:55:45.724492-07:00,1889.0,10.84497,10844.97 +28914,2025-03-10T15:55:56.571705-07:00,1959.0,10.847213,10847.213 +28915,2025-03-10T15:56:07.409689-07:00,1867.0,10.837984,10837.984 +28916,2025-03-10T15:56:18.264555-07:00,1947.0,10.854866,10854.866 +28917,2025-03-10T15:56:29.106498-07:00,1903.0,10.841943,10841.943 +28918,2025-03-10T15:56:39.949969-07:00,1966.0,10.843471,10843.471 +28919,2025-03-10T15:56:50.791988-07:00,1968.0,10.842019,10842.019 +28920,2025-03-10T15:57:01.631486-07:00,1935.0,10.839498,10839.498 +28921,2025-03-10T15:57:12.484716-07:00,1950.0,10.85323,10853.23 +28922,2025-03-10T15:57:23.323486-07:00,1968.0,10.83877,10838.77 +28923,2025-03-10T15:57:34.176823-07:00,1970.0,10.853337,10853.337 +28924,2025-03-10T15:57:45.023482-07:00,1981.0,10.846659,10846.659 +28925,2025-03-10T15:57:55.875201-07:00,1885.0,10.851719,10851.719 +28926,2025-03-10T15:58:06.723775-07:00,1968.0,10.848574,10848.574 +28927,2025-03-10T15:58:17.565921-07:00,1974.0,10.842146,10842.146 +28928,2025-03-10T15:58:28.408591-07:00,1945.0,10.84267,10842.67 +28929,2025-03-10T15:58:39.258490-07:00,1980.0,10.849899,10849.899 +28930,2025-03-10T15:58:50.108727-07:00,1914.0,10.850237,10850.237 +28931,2025-03-10T15:59:00.950487-07:00,1920.0,10.84176,10841.76 +28932,2025-03-10T15:59:11.798041-07:00,1937.0,10.847554,10847.554 +28933,2025-03-10T15:59:22.647844-07:00,1984.0,10.849803,10849.803 +28934,2025-03-10T15:59:33.485730-07:00,1956.0,10.837886,10837.886 +28935,2025-03-10T15:59:44.329632-07:00,1911.0,10.843902,10843.902 +28936,2025-03-10T15:59:55.176819-07:00,1903.0,10.847187,10847.187 +28937,2025-03-10T16:00:06.021774-07:00,1891.0,10.844955,10844.955 +28938,2025-03-10T16:00:16.865811-07:00,1981.0,10.844037,10844.037 +28939,2025-03-10T16:00:27.705765-07:00,1936.0,10.839954,10839.954 +28940,2025-03-10T16:00:38.547800-07:00,1957.0,10.842035,10842.035 +28941,2025-03-10T16:00:49.398827-07:00,1920.0,10.851027,10851.027 +28942,2025-03-10T16:01:00.242065-07:00,1923.0,10.843238,10843.238 +28943,2025-03-10T16:01:11.089864-07:00,1954.0,10.847799,10847.799 +28944,2025-03-10T16:01:21.938621-07:00,1936.0,10.848757,10848.757 +28945,2025-03-10T16:01:32.781493-07:00,1892.0,10.842872,10842.872 +28946,2025-03-10T16:01:43.630488-07:00,1915.0,10.848995,10848.995 +28947,2025-03-10T16:01:54.475494-07:00,1886.0,10.845006,10845.006 +28948,2025-03-10T16:02:05.315808-07:00,1872.0,10.840314,10840.314 +28949,2025-03-10T16:02:16.163604-07:00,1892.0,10.847796,10847.796 +28950,2025-03-10T16:02:27.013529-07:00,1851.0,10.849925,10849.925 +28951,2025-03-10T16:02:37.876821-07:00,1923.0,10.863292,10863.292 +28952,2025-03-10T16:02:48.722540-07:00,1861.0,10.845719,10845.719 +28953,2025-03-10T16:02:59.565748-07:00,1920.0,10.843208,10843.208 +28954,2025-03-10T16:03:10.422570-07:00,1899.0,10.856822,10856.822 +28955,2025-03-10T16:03:21.277497-07:00,1895.0,10.854927,10854.927 +28956,2025-03-10T16:03:32.123484-07:00,1882.0,10.845987,10845.987 +28957,2025-03-10T16:03:42.980877-07:00,1934.0,10.857393,10857.393 +28958,2025-03-10T16:03:53.824821-07:00,1865.0,10.843944,10843.944 +28959,2025-03-10T16:04:04.665794-07:00,1839.0,10.840973,10840.973 +28960,2025-03-10T16:04:15.514444-07:00,1847.0,10.84865,10848.65 +28961,2025-03-10T16:04:26.356468-07:00,1865.0,10.842024,10842.024 +28962,2025-03-10T16:04:37.208465-07:00,1919.0,10.851997,10851.997 +28963,2025-03-10T16:04:48.060918-07:00,1847.0,10.852453,10852.453 +28964,2025-03-10T16:04:58.907484-07:00,1874.0,10.846566,10846.566 +28965,2025-03-10T16:05:09.756535-07:00,1916.0,10.849051,10849.051 +28966,2025-03-10T16:05:20.606492-07:00,1897.0,10.849957,10849.957 +28967,2025-03-10T16:05:31.444304-07:00,1869.0,10.837812,10837.812 +28968,2025-03-10T16:05:42.296823-07:00,1931.0,10.852519,10852.519 +28969,2025-03-10T16:05:53.244923-07:00,1936.0,10.9481,10948.1 +28970,2025-03-10T16:06:04.088213-07:00,1927.0,10.84329,10843.29 +28971,2025-03-10T16:06:14.926223-07:00,1857.0,10.83801,10838.01 +28972,2025-03-10T16:06:25.773047-07:00,1895.0,10.846824,10846.824 +28973,2025-03-10T16:06:36.610880-07:00,1883.0,10.837833,10837.833 +28974,2025-03-10T16:06:47.463881-07:00,1904.0,10.853001,10853.001 +28975,2025-03-10T16:06:58.302884-07:00,1936.0,10.839003,10839.003 +28976,2025-03-10T16:07:09.145887-07:00,1877.0,10.843003,10843.003 +28977,2025-03-10T16:07:19.995865-07:00,1883.0,10.849978,10849.978 +28978,2025-03-10T16:07:30.850003-07:00,1885.0,10.854138,10854.138 +28979,2025-03-10T16:07:41.699274-07:00,1914.0,10.849271,10849.271 +28980,2025-03-10T16:07:52.534060-07:00,1917.0,10.834786,10834.786 +28981,2025-03-10T16:08:03.378883-07:00,1881.0,10.844823,10844.823 +28982,2025-03-10T16:08:14.227886-07:00,1927.0,10.849003,10849.003 +28983,2025-03-10T16:08:25.070889-07:00,1913.0,10.843003,10843.003 +28984,2025-03-10T16:08:35.924018-07:00,1925.0,10.853129,10853.129 +28985,2025-03-10T16:08:46.761548-07:00,1855.0,10.83753,10837.53 +28986,2025-03-10T16:08:57.599958-07:00,1925.0,10.83841,10838.41 +28987,2025-03-10T16:09:08.450074-07:00,1932.0,10.850116,10850.116 +28988,2025-03-10T16:09:19.296869-07:00,1913.0,10.846795,10846.795 +28989,2025-03-10T16:09:30.141176-07:00,1889.0,10.844307,10844.307 +28990,2025-03-10T16:09:40.989475-07:00,1901.0,10.848299,10848.299 +28991,2025-03-10T16:09:51.827891-07:00,1937.0,10.838416,10838.416 +28992,2025-03-10T16:10:02.682919-07:00,1855.0,10.855028,10855.028 +28993,2025-03-10T16:10:13.524518-07:00,1857.0,10.841599,10841.599 +28994,2025-03-10T16:10:24.367673-07:00,1917.0,10.843155,10843.155 +28995,2025-03-10T16:10:35.217986-07:00,1922.0,10.850313,10850.313 +28996,2025-03-10T16:10:46.076292-07:00,1903.0,10.858306,10858.306 +28997,2025-03-10T16:10:56.919496-07:00,1903.0,10.843204,10843.204 +28998,2025-03-10T16:11:07.757401-07:00,1877.0,10.837905,10837.905 +28999,2025-03-10T16:11:18.600884-07:00,1941.0,10.843483,10843.483 +29000,2025-03-10T16:11:29.445214-07:00,1933.0,10.84433,10844.33 +29001,2025-03-10T16:11:40.287673-07:00,1940.0,10.842459,10842.459 +29002,2025-03-10T16:11:51.134169-07:00,1942.0,10.846496,10846.496 +29003,2025-03-10T16:12:01.971886-07:00,1901.0,10.837717,10837.717 +29004,2025-03-10T16:12:12.816881-07:00,1899.0,10.844995,10844.995 +29005,2025-03-10T16:12:23.666223-07:00,1885.0,10.849342,10849.342 +29006,2025-03-10T16:12:34.506886-07:00,1933.0,10.840663,10840.663 +29007,2025-03-10T16:12:45.341117-07:00,1899.0,10.834231,10834.231 +29008,2025-03-10T16:12:56.182888-07:00,1897.0,10.841771,10841.771 +29009,2025-03-10T16:13:07.027297-07:00,1905.0,10.844409,10844.409 +29010,2025-03-10T16:13:17.864043-07:00,1963.0,10.836746,10836.746 +29011,2025-03-10T16:13:28.705874-07:00,1915.0,10.841831,10841.831 +29012,2025-03-10T16:13:39.543278-07:00,1953.0,10.837404,10837.404 +29013,2025-03-10T16:13:50.386678-07:00,1942.0,10.8434,10843.4 +29014,2025-03-10T16:14:01.231887-07:00,1903.0,10.845209,10845.209 +29015,2025-03-10T16:14:12.073106-07:00,1891.0,10.841219,10841.219 +29016,2025-03-10T16:14:22.913890-07:00,1883.0,10.840784,10840.784 +29017,2025-03-10T16:14:33.753249-07:00,1879.0,10.839359,10839.359 +29018,2025-03-10T16:14:44.591194-07:00,1966.0,10.837945,10837.945 +29019,2025-03-10T16:14:55.423231-07:00,1891.0,10.832037,10832.037 +29020,2025-03-10T16:15:06.260215-07:00,1877.0,10.836984,10836.984 +29021,2025-03-10T16:15:17.098881-07:00,1958.0,10.838666,10838.666 +29022,2025-03-10T16:15:27.946591-07:00,1919.0,10.84771,10847.71 +29023,2025-03-10T16:15:38.772051-07:00,1887.0,10.82546,10825.46 +29024,2025-03-10T16:15:49.609861-07:00,1931.0,10.83781,10837.81 +29025,2025-03-10T16:16:00.447493-07:00,1878.0,10.837632,10837.632 +29026,2025-03-10T16:16:11.288626-07:00,1887.0,10.841133,10841.133 +29027,2025-03-10T16:16:22.122020-07:00,1921.0,10.833394,10833.394 +29028,2025-03-10T16:16:32.969041-07:00,1860.0,10.847021,10847.021 +29029,2025-03-10T16:16:43.808202-07:00,1866.0,10.839161,10839.161 +29030,2025-03-10T16:17:05.492564-07:00,1965.0,21.684362,21684.362 +29031,2025-03-10T16:17:16.334377-07:00,1881.0,10.841813,10841.813 +29032,2025-03-10T16:17:27.163883-07:00,1934.0,10.829506,10829.506 +29033,2025-03-10T16:17:37.998903-07:00,1903.0,10.83502,10835.02 +29034,2025-03-10T16:17:48.838405-07:00,1874.0,10.839502,10839.502 +29035,2025-03-10T16:17:59.681336-07:00,1891.0,10.842931,10842.931 +29036,2025-03-10T16:18:10.529554-07:00,1919.0,10.848218,10848.218 +29037,2025-03-10T16:18:21.363916-07:00,1947.0,10.834362,10834.362 +29038,2025-03-10T16:18:32.211151-07:00,1911.0,10.847235,10847.235 +29039,2025-03-10T16:18:43.041933-07:00,1883.0,10.830782,10830.782 +29040,2025-03-10T16:18:53.888882-07:00,1955.0,10.846949,10846.949 +29041,2025-03-10T16:19:04.718115-07:00,1967.0,10.829233,10829.233 +29042,2025-03-10T16:19:15.555934-07:00,1929.0,10.837819,10837.819 +29043,2025-03-10T16:19:26.397125-07:00,1979.0,10.841191,10841.191 +29044,2025-03-10T16:19:37.235920-07:00,1910.0,10.838795,10838.795 +29045,2025-03-10T16:19:48.066883-07:00,1983.0,10.830963,10830.963 +29046,2025-03-10T16:19:58.908964-07:00,1955.0,10.842081,10842.081 +29047,2025-03-10T16:20:09.747888-07:00,1903.0,10.838924,10838.924 +29048,2025-03-10T16:20:20.585890-07:00,1923.0,10.838002,10838.002 +29049,2025-03-10T16:20:31.426869-07:00,1879.0,10.840979,10840.979 +29050,2025-03-10T16:20:42.266003-07:00,1921.0,10.839134,10839.134 +29051,2025-03-10T16:20:53.103750-07:00,1953.0,10.837747,10837.747 +29052,2025-03-10T16:21:03.933935-07:00,1958.0,10.830185,10830.185 +29053,2025-03-10T16:21:14.783926-07:00,1921.0,10.849991,10849.991 +29054,2025-03-10T16:21:25.615213-07:00,1915.0,10.831287,10831.287 +29055,2025-03-10T16:21:36.457497-07:00,1933.0,10.842284,10842.284 +29056,2025-03-10T16:21:47.290018-07:00,1901.0,10.832521,10832.521 +29057,2025-03-10T16:21:58.133683-07:00,1936.0,10.843665,10843.665 +29058,2025-03-10T16:22:08.973837-07:00,1869.0,10.840154,10840.154 +29059,2025-03-10T16:22:19.813335-07:00,1950.0,10.839498,10839.498 +29060,2025-03-10T16:22:30.651128-07:00,1885.0,10.837793,10837.793 +29061,2025-03-10T16:22:41.483205-07:00,1860.0,10.832077,10832.077 +29062,2025-03-10T16:22:52.325092-07:00,1926.0,10.841887,10841.887 +29063,2025-03-10T16:23:03.167884-07:00,1907.0,10.842792,10842.792 +29064,2025-03-10T16:23:14.013806-07:00,1854.0,10.845922,10845.922 +29065,2025-03-10T16:23:24.849607-07:00,1903.0,10.835801,10835.801 +29066,2025-03-10T16:23:35.692887-07:00,1881.0,10.84328,10843.28 +29067,2025-03-10T16:23:46.527947-07:00,1872.0,10.83506,10835.06 +29068,2025-03-10T16:23:57.376201-07:00,1936.0,10.848254,10848.254 +29069,2025-03-10T16:24:08.212885-07:00,1887.0,10.836684,10836.684 +29070,2025-03-10T16:24:19.041092-07:00,1922.0,10.828207,10828.207 +29071,2025-03-10T16:24:29.885214-07:00,1878.0,10.844122,10844.122 +29072,2025-03-10T16:24:40.720871-07:00,1936.0,10.835657,10835.657 +29073,2025-03-10T16:24:51.557173-07:00,1935.0,10.836302,10836.302 +29074,2025-03-10T16:25:02.397296-07:00,1882.0,10.840123,10840.123 +29075,2025-03-10T16:25:13.228215-07:00,1911.0,10.830919,10830.919 +29076,2025-03-10T16:25:24.071876-07:00,1930.0,10.843661,10843.661 +29077,2025-03-10T16:25:34.915194-07:00,1853.0,10.843318,10843.318 +29078,2025-03-10T16:25:45.752100-07:00,1903.0,10.836906,10836.906 +29079,2025-03-10T16:25:56.588880-07:00,1878.0,10.83678,10836.78 +29080,2025-03-10T16:26:07.432869-07:00,1878.0,10.843989,10843.989 +29081,2025-03-10T16:26:18.277634-07:00,1852.0,10.844765,10844.765 +29082,2025-03-10T16:26:29.112108-07:00,1837.0,10.834474,10834.474 +29083,2025-03-10T16:26:39.962252-07:00,1932.0,10.850144,10850.144 +29084,2025-03-10T16:26:50.803882-07:00,1932.0,10.84163,10841.63 +29085,2025-03-10T16:27:01.644341-07:00,1875.0,10.840459,10840.459 +29086,2025-03-10T16:27:12.489741-07:00,1875.0,10.8454,10845.4 +29087,2025-03-10T16:27:23.321935-07:00,1855.0,10.832194,10832.194 +29088,2025-03-10T16:27:34.161194-07:00,1927.0,10.839259,10839.259 +29089,2025-03-10T16:27:44.999098-07:00,1842.0,10.837904,10837.904 +29090,2025-03-10T16:27:55.835878-07:00,1934.0,10.83678,10836.78 +29091,2025-03-10T16:28:06.677215-07:00,1897.0,10.841337,10841.337 +29092,2025-03-10T16:28:17.516257-07:00,1904.0,10.839042,10839.042 +29093,2025-03-10T16:28:28.349101-07:00,1930.0,10.832844,10832.844 +29094,2025-03-10T16:28:39.201704-07:00,1905.0,10.852603,10852.603 +29095,2025-03-10T16:28:50.041186-07:00,1894.0,10.839482,10839.482 +29096,2025-03-10T16:29:00.884078-07:00,1933.0,10.842892,10842.892 +29097,2025-03-10T16:29:11.726886-07:00,1885.0,10.842808,10842.808 +29098,2025-03-10T16:29:22.569876-07:00,1853.0,10.84299,10842.99 +29099,2025-03-10T16:29:33.407457-07:00,1840.0,10.837581,10837.581 +29100,2025-03-10T16:29:55.078888-07:00,1901.0,21.671431,21671.431 +29101,2025-03-10T16:30:05.913205-07:00,1892.0,10.834317,10834.317 +29102,2025-03-10T16:30:16.758051-07:00,1918.0,10.844846,10844.846 +29103,2025-03-10T16:30:27.584125-07:00,1845.0,10.826074,10826.074 +29104,2025-03-10T16:30:38.426219-07:00,1909.0,10.842094,10842.094 +29105,2025-03-10T16:30:49.260865-07:00,1905.0,10.834646,10834.646 +29106,2025-03-10T16:31:00.094168-07:00,1851.0,10.833303,10833.303 +29107,2025-03-10T16:31:10.938199-07:00,1887.0,10.844031,10844.031 +29108,2025-03-10T16:31:21.769188-07:00,1875.0,10.830989,10830.989 +29109,2025-03-10T16:31:32.613128-07:00,1853.0,10.84394,10843.94 +29110,2025-03-10T16:31:43.446166-07:00,1882.0,10.833038,10833.038 +29111,2025-03-10T16:31:54.284883-07:00,1840.0,10.838717,10838.717 +29112,2025-03-10T16:32:05.124897-07:00,1927.0,10.840014,10840.014 +29113,2025-03-10T16:32:15.967986-07:00,1922.0,10.843089,10843.089 +29114,2025-03-10T16:32:26.806940-07:00,1877.0,10.838954,10838.954 +29115,2025-03-10T16:32:37.648172-07:00,1904.0,10.841232,10841.232 +29116,2025-03-10T16:32:48.486876-07:00,1917.0,10.838704,10838.704 +29117,2025-03-10T16:32:59.323609-07:00,1899.0,10.836733,10836.733 +29118,2025-03-10T16:33:10.175653-07:00,1920.0,10.852044,10852.044 +29119,2025-03-10T16:33:21.009854-07:00,1931.0,10.834201,10834.201 +29120,2025-03-10T16:33:31.855884-07:00,1925.0,10.84603,10846.03 +29121,2025-03-10T16:33:42.695429-07:00,1861.0,10.839545,10839.545 +29122,2025-03-10T16:33:53.534973-07:00,1920.0,10.839544,10839.544 +29123,2025-03-10T16:34:04.378271-07:00,1887.0,10.843298,10843.298 +29124,2025-03-10T16:34:15.219651-07:00,1936.0,10.84138,10841.38 +29125,2025-03-10T16:34:26.056354-07:00,1935.0,10.836703,10836.703 +29126,2025-03-10T16:34:36.893862-07:00,1916.0,10.837508,10837.508 +29127,2025-03-10T16:34:47.738889-07:00,1859.0,10.845027,10845.027 +29128,2025-03-10T16:34:58.580284-07:00,1871.0,10.841395,10841.395 +29129,2025-03-10T16:35:09.417927-07:00,1934.0,10.837643,10837.643 +29130,2025-03-10T16:35:20.259887-07:00,1875.0,10.84196,10841.96 +29131,2025-03-10T16:35:31.097943-07:00,1856.0,10.838056,10838.056 +29132,2025-03-10T16:35:41.929880-07:00,1890.0,10.831937,10831.937 +29133,2025-03-10T16:35:52.764109-07:00,1909.0,10.834229,10834.229 +29134,2025-03-10T16:36:03.600245-07:00,1903.0,10.836136,10836.136 +29135,2025-03-10T16:36:14.441194-07:00,1873.0,10.840949,10840.949 +29136,2025-03-10T16:36:25.277013-07:00,1885.0,10.835819,10835.819 +29137,2025-03-10T16:36:36.112256-07:00,1930.0,10.835243,10835.243 +29138,2025-03-10T16:36:46.939133-07:00,1861.0,10.826877,10826.877 +29139,2025-03-10T16:36:57.777034-07:00,1911.0,10.837901,10837.901 +29140,2025-03-10T16:37:08.612257-07:00,1861.0,10.835223,10835.223 +29141,2025-03-10T16:37:19.463025-07:00,1886.0,10.850768,10850.768 +29142,2025-03-10T16:37:30.297236-07:00,1935.0,10.834211,10834.211 +29143,2025-03-10T16:37:41.136874-07:00,1919.0,10.839638,10839.638 +29144,2025-03-10T16:37:51.970664-07:00,1869.0,10.83379,10833.79 +29145,2025-03-10T16:38:02.813925-07:00,1952.0,10.843261,10843.261 +29146,2025-03-10T16:38:13.649055-07:00,1920.0,10.83513,10835.13 +29147,2025-03-10T16:38:24.485283-07:00,1931.0,10.836228,10836.228 +29148,2025-03-10T16:38:35.322882-07:00,1952.0,10.837599,10837.599 +29149,2025-03-10T16:38:46.159760-07:00,1954.0,10.836878,10836.878 +29150,2025-03-10T16:38:56.997021-07:00,1901.0,10.837261,10837.261 +29151,2025-03-10T16:39:07.850003-07:00,1941.0,10.852982,10852.982 +29152,2025-03-10T16:39:18.684887-07:00,1905.0,10.834884,10834.884 +29153,2025-03-10T16:39:29.531959-07:00,1917.0,10.847072,10847.072 +29154,2025-03-10T16:39:40.385140-07:00,1935.0,10.853181,10853.181 +29155,2025-03-10T16:39:51.230816-07:00,1974.0,10.845676,10845.676 +29156,2025-03-10T16:40:02.073259-07:00,1882.0,10.842443,10842.443 +29157,2025-03-10T16:40:12.916797-07:00,1899.0,10.843538,10843.538 +29158,2025-03-10T16:40:23.766888-07:00,1935.0,10.850091,10850.091 +29159,2025-03-10T16:40:34.610225-07:00,1953.0,10.843337,10843.337 +29160,2025-03-10T16:40:45.457254-07:00,1885.0,10.847029,10847.029 +29161,2025-03-10T16:40:56.299172-07:00,1951.0,10.841918,10841.918 +29162,2025-03-10T16:41:07.148114-07:00,1949.0,10.848942,10848.942 +29163,2025-03-10T16:41:17.989884-07:00,1921.0,10.84177,10841.77 +29164,2025-03-10T16:41:28.833892-07:00,1917.0,10.844008,10844.008 +29165,2025-03-10T16:41:39.679188-07:00,1965.0,10.845296,10845.296 +29166,2025-03-10T16:41:50.533094-07:00,1936.0,10.853906,10853.906 +29167,2025-03-10T16:42:01.370959-07:00,1893.0,10.837865,10837.865 +29168,2025-03-10T16:42:12.213021-07:00,1921.0,10.842062,10842.062 +29169,2025-03-10T16:42:23.060151-07:00,1931.0,10.84713,10847.13 +29170,2025-03-10T16:42:33.912482-07:00,1920.0,10.852331,10852.331 +29171,2025-03-10T16:42:44.748001-07:00,1930.0,10.835519,10835.519 +29172,2025-03-10T16:42:55.590375-07:00,1909.0,10.842374,10842.374 +29173,2025-03-10T16:43:06.433883-07:00,1945.0,10.843508,10843.508 +29174,2025-03-10T16:43:17.278892-07:00,1936.0,10.845009,10845.009 +29175,2025-03-10T16:43:28.121190-07:00,1904.0,10.842298,10842.298 +29176,2025-03-10T16:43:38.971221-07:00,1920.0,10.850031,10850.031 +29177,2025-03-10T16:43:49.806925-07:00,1928.0,10.835704,10835.704 +29178,2025-03-10T16:44:00.656426-07:00,1910.0,10.849501,10849.501 +29179,2025-03-10T16:44:11.494257-07:00,1927.0,10.837831,10837.831 +29180,2025-03-10T16:44:22.341070-07:00,1922.0,10.846813,10846.813 +29181,2025-03-10T16:44:33.188777-07:00,1841.0,10.847707,10847.707 +29182,2025-03-10T16:44:44.021887-07:00,1866.0,10.83311,10833.11 +29183,2025-03-10T16:44:54.865508-07:00,1857.0,10.843621,10843.621 +29184,2025-03-10T16:45:05.708219-07:00,1904.0,10.842711,10842.711 +29185,2025-03-10T16:45:16.550131-07:00,1920.0,10.841912,10841.912 +29186,2025-03-10T16:45:27.394939-07:00,1919.0,10.844808,10844.808 +29187,2025-03-10T16:45:38.232102-07:00,1861.0,10.837163,10837.163 +29188,2025-03-10T16:45:49.069609-07:00,1865.0,10.837507,10837.507 +29189,2025-03-10T16:45:59.911879-07:00,1894.0,10.84227,10842.27 +29190,2025-03-10T16:46:10.765885-07:00,1867.0,10.854006,10854.006 +29191,2025-03-10T16:46:21.599997-07:00,1917.0,10.834112,10834.112 +29192,2025-03-10T16:46:32.453026-07:00,1840.0,10.853029,10853.029 +29193,2025-03-10T16:46:43.297270-07:00,1850.0,10.844244,10844.244 +29194,2025-03-10T16:46:54.133886-07:00,1871.0,10.836616,10836.616 +29195,2025-03-10T16:47:04.977105-07:00,1847.0,10.843219,10843.219 +29196,2025-03-10T16:47:15.824888-07:00,1897.0,10.847783,10847.783 +29197,2025-03-10T16:47:26.668241-07:00,1890.0,10.843353,10843.353 +29198,2025-03-10T16:47:37.509788-07:00,1857.0,10.841547,10841.547 +29199,2025-03-10T16:47:48.347144-07:00,1906.0,10.837356,10837.356 +29200,2025-03-10T16:47:59.184038-07:00,1839.0,10.836894,10836.894 +29201,2025-03-10T16:48:10.027505-07:00,1904.0,10.843467,10843.467 +29202,2025-03-10T16:48:20.873145-07:00,1902.0,10.84564,10845.64 +29203,2025-03-10T16:48:31.711887-07:00,1858.0,10.838742,10838.742 +29204,2025-03-10T16:48:42.548215-07:00,1933.0,10.836328,10836.328 +29205,2025-03-10T16:48:53.392544-07:00,1927.0,10.844329,10844.329 +29206,2025-03-10T16:49:04.227861-07:00,1902.0,10.835317,10835.317 +29207,2025-03-10T16:49:15.077026-07:00,1905.0,10.849165,10849.165 +29208,2025-03-10T16:49:25.909442-07:00,1878.0,10.832416,10832.416 +29209,2025-03-10T16:49:36.754108-07:00,1910.0,10.844666,10844.666 +29210,2025-03-10T16:49:47.594254-07:00,1914.0,10.840146,10840.146 +29211,2025-03-10T16:49:58.428200-07:00,1873.0,10.833946,10833.946 +29212,2025-03-10T16:50:09.274414-07:00,1897.0,10.846214,10846.214 +29213,2025-03-10T16:50:20.113861-07:00,1859.0,10.839447,10839.447 +29214,2025-03-10T16:50:30.967102-07:00,1872.0,10.853241,10853.241 +29215,2025-03-10T16:50:41.808926-07:00,1813.0,10.841824,10841.824 +29216,2025-03-10T16:50:52.652145-07:00,1849.0,10.843219,10843.219 +29217,2025-03-10T16:51:03.497184-07:00,1844.0,10.845039,10845.039 +29218,2025-03-10T16:51:14.347435-07:00,1883.0,10.850251,10850.251 +29219,2025-03-10T16:51:25.185042-07:00,1859.0,10.837607,10837.607 +29220,2025-03-10T16:51:36.027572-07:00,1807.0,10.84253,10842.53 +29221,2025-03-10T16:51:46.869171-07:00,1839.0,10.841599,10841.599 +29222,2025-03-10T16:51:57.719393-07:00,1872.0,10.850222,10850.222 +29223,2025-03-10T16:52:08.565021-07:00,1893.0,10.845628,10845.628 +29224,2025-03-10T16:52:19.408085-07:00,1808.0,10.843064,10843.064 +29225,2025-03-10T16:52:30.241882-07:00,1803.0,10.833797,10833.797 +29226,2025-03-10T16:52:41.085158-07:00,1818.0,10.843276,10843.276 +29227,2025-03-10T16:52:51.927917-07:00,1878.0,10.842759,10842.759 +29228,2025-03-10T16:53:02.770886-07:00,1888.0,10.842969,10842.969 +29229,2025-03-10T16:53:13.610061-07:00,1829.0,10.839175,10839.175 +29230,2025-03-10T16:53:24.463154-07:00,1874.0,10.853093,10853.093 +29231,2025-03-10T16:53:35.305446-07:00,1881.0,10.842292,10842.292 +29232,2025-03-10T16:53:46.142886-07:00,1877.0,10.83744,10837.44 +29233,2025-03-10T16:53:56.985931-07:00,1833.0,10.843045,10843.045 +29234,2025-03-10T16:54:07.832866-07:00,1860.0,10.846935,10846.935 +29235,2025-03-10T16:54:18.680082-07:00,1787.0,10.847216,10847.216 +29236,2025-03-10T16:54:29.522815-07:00,1803.0,10.842733,10842.733 +29237,2025-03-10T16:54:40.360196-07:00,1879.0,10.837381,10837.381 +29238,2025-03-10T16:54:51.204210-07:00,1815.0,10.844014,10844.014 +29239,2025-03-10T16:55:02.043298-07:00,1868.0,10.839088,10839.088 +29240,2025-03-10T16:55:12.889127-07:00,1795.0,10.845829,10845.829 +29241,2025-03-10T16:55:23.742735-07:00,1856.0,10.853608,10853.608 +29242,2025-03-10T16:55:34.585871-07:00,1881.0,10.843136,10843.136 +29243,2025-03-10T16:55:45.425387-07:00,1822.0,10.839516,10839.516 +29244,2025-03-10T16:55:56.279317-07:00,1797.0,10.85393,10853.93 +29245,2025-03-10T16:56:07.124891-07:00,1867.0,10.845574,10845.574 +29246,2025-03-10T16:56:17.965471-07:00,1875.0,10.84058,10840.58 +29247,2025-03-10T16:56:28.807882-07:00,1877.0,10.842411,10842.411 +29248,2025-03-10T16:56:39.661116-07:00,1875.0,10.853234,10853.234 +29249,2025-03-10T16:56:50.500890-07:00,1797.0,10.839774,10839.774 +29250,2025-03-10T16:57:01.337983-07:00,1877.0,10.837093,10837.093 +29251,2025-03-10T16:57:12.185461-07:00,1795.0,10.847478,10847.478 +29252,2025-03-10T16:57:23.025882-07:00,1877.0,10.840421,10840.421 +29253,2025-03-10T16:57:33.865878-07:00,1823.0,10.839996,10839.996 +29254,2025-03-10T16:57:44.713891-07:00,1835.0,10.848013,10848.013 +29255,2025-03-10T16:57:55.568213-07:00,1808.0,10.854322,10854.322 +29256,2025-03-10T16:58:06.419891-07:00,1827.0,10.851678,10851.678 +29257,2025-03-10T16:58:17.267215-07:00,1868.0,10.847324,10847.324 +29258,2025-03-10T16:58:28.114824-07:00,1874.0,10.847609,10847.609 +29259,2025-03-10T16:58:38.962999-07:00,1839.0,10.848175,10848.175 +29260,2025-03-10T16:58:49.802348-07:00,1830.0,10.839349,10839.349 +29261,2025-03-10T16:59:00.650128-07:00,1827.0,10.84778,10847.78 +29262,2025-03-10T16:59:11.501023-07:00,1872.0,10.850895,10850.895 +29263,2025-03-10T16:59:22.348470-07:00,1877.0,10.847447,10847.447 +29264,2025-03-10T16:59:33.186879-07:00,1877.0,10.838409,10838.409 +29265,2025-03-10T16:59:44.030880-07:00,1878.0,10.844001,10844.001 +29266,2025-03-10T16:59:54.873617-07:00,1847.0,10.842737,10842.737 +29267,2025-03-10T17:00:05.720148-07:00,1874.0,10.846531,10846.531 +29268,2025-03-10T17:00:16.563394-07:00,1872.0,10.843246,10843.246 +29269,2025-03-10T17:00:27.408935-07:00,1840.0,10.845541,10845.541 +29270,2025-03-10T17:00:38.242865-07:00,1881.0,10.83393,10833.93 +29271,2025-03-10T17:00:49.088115-07:00,1860.0,10.84525,10845.25 +29272,2025-03-10T17:00:59.941075-07:00,1837.0,10.85296,10852.96 +29273,2025-03-10T17:01:10.791472-07:00,1840.0,10.850397,10850.397 +29274,2025-03-10T17:01:21.629135-07:00,1805.0,10.837663,10837.663 +29275,2025-03-10T17:01:32.474929-07:00,1882.0,10.845794,10845.794 +29276,2025-03-10T17:01:43.319093-07:00,1837.0,10.844164,10844.164 +29277,2025-03-10T17:01:54.174735-07:00,1877.0,10.855642,10855.642 +29278,2025-03-10T17:02:05.022421-07:00,1801.0,10.847686,10847.686 +29279,2025-03-10T17:02:15.869941-07:00,1827.0,10.84752,10847.52 +29280,2025-03-10T17:02:26.715567-07:00,1840.0,10.845626,10845.626 +29281,2025-03-10T17:02:37.565449-07:00,1829.0,10.849882,10849.882 +29282,2025-03-10T17:02:48.407248-07:00,1804.0,10.841799,10841.799 +29283,2025-03-10T17:02:59.265089-07:00,1879.0,10.857841,10857.841 +29284,2025-03-10T17:03:10.121064-07:00,1871.0,10.855975,10855.975 +29285,2025-03-10T17:03:20.964215-07:00,1798.0,10.843151,10843.151 +29286,2025-03-10T17:03:31.818194-07:00,1888.0,10.853979,10853.979 +29287,2025-03-10T17:03:42.662207-07:00,1889.0,10.844013,10844.013 +29288,2025-03-10T17:03:53.505223-07:00,1897.0,10.843016,10843.016 +29289,2025-03-10T17:04:04.358494-07:00,1904.0,10.853271,10853.271 +29290,2025-03-10T17:04:15.209420-07:00,1869.0,10.850926,10850.926 +29291,2025-03-10T17:04:26.064580-07:00,1895.0,10.85516,10855.16 +29292,2025-03-10T17:04:36.907532-07:00,1942.0,10.842952,10842.952 +29293,2025-03-10T17:04:47.761912-07:00,1921.0,10.85438,10854.38 +29294,2025-03-10T17:04:58.614104-07:00,1891.0,10.852192,10852.192 +29295,2025-03-10T17:05:09.457077-07:00,1908.0,10.842973,10842.973 +29296,2025-03-10T17:05:20.310389-07:00,1978.0,10.853312,10853.312 +29297,2025-03-10T17:05:31.161075-07:00,1925.0,10.850686,10850.686 +29298,2025-03-10T17:05:42.001282-07:00,1965.0,10.840207,10840.207 +29299,2025-03-10T17:05:52.904013-07:00,1979.0,10.902731,10902.731 +29300,2025-03-10T17:06:03.752318-07:00,1928.0,10.848305,10848.305 +29301,2025-03-10T17:06:14.596048-07:00,1931.0,10.84373,10843.73 +29302,2025-03-10T17:06:25.443004-07:00,1970.0,10.846956,10846.956 +29303,2025-03-10T17:06:36.292223-07:00,1979.0,10.849219,10849.219 +29304,2025-03-10T17:06:47.142004-07:00,1984.0,10.849781,10849.781 +29305,2025-03-10T17:06:57.991045-07:00,1953.0,10.849041,10849.041 +29306,2025-03-10T17:07:08.844225-07:00,1909.0,10.85318,10853.18 +29307,2025-03-10T17:07:19.683467-07:00,1923.0,10.839242,10839.242 +29308,2025-03-10T17:07:30.530708-07:00,1904.0,10.847241,10847.241 +29309,2025-03-10T17:07:41.374217-07:00,1947.0,10.843509,10843.509 +29310,2025-03-10T17:07:52.217164-07:00,1903.0,10.842947,10842.947 +29311,2025-03-10T17:08:03.065013-07:00,1940.0,10.847849,10847.849 +29312,2025-03-10T17:08:13.911065-07:00,1939.0,10.846052,10846.052 +29313,2025-03-10T17:08:24.753373-07:00,1938.0,10.842308,10842.308 +29314,2025-03-10T17:08:35.602048-07:00,1905.0,10.848675,10848.675 +29315,2025-03-10T17:08:46.455024-07:00,1888.0,10.852976,10852.976 +29316,2025-03-10T17:08:57.304103-07:00,1904.0,10.849079,10849.079 +29317,2025-03-10T17:09:08.153089-07:00,1883.0,10.848986,10848.986 +29318,2025-03-10T17:09:18.996041-07:00,1937.0,10.842952,10842.952 +29319,2025-03-10T17:09:29.850142-07:00,1930.0,10.854101,10854.101 +29320,2025-03-10T17:09:40.705050-07:00,1925.0,10.854908,10854.908 +29321,2025-03-10T17:09:51.550264-07:00,1886.0,10.845214,10845.214 +29322,2025-03-10T17:10:02.401575-07:00,1923.0,10.851311,10851.311 +29323,2025-03-10T17:10:13.243882-07:00,1932.0,10.842307,10842.307 +29324,2025-03-10T17:10:24.101385-07:00,1891.0,10.857503,10857.503 +29325,2025-03-10T17:10:34.942991-07:00,1895.0,10.841606,10841.606 +29326,2025-03-10T17:10:45.799988-07:00,1877.0,10.856997,10856.997 +29327,2025-03-10T17:10:56.649331-07:00,1913.0,10.849343,10849.343 +29328,2025-03-10T17:11:07.506676-07:00,1831.0,10.857345,10857.345 +29329,2025-03-10T17:11:18.350154-07:00,1904.0,10.843478,10843.478 +29330,2025-03-10T17:11:29.204065-07:00,1855.0,10.853911,10853.911 +29331,2025-03-10T17:11:40.053015-07:00,1839.0,10.84895,10848.95 +29332,2025-03-10T17:11:50.901799-07:00,1890.0,10.848784,10848.784 +29333,2025-03-10T17:12:01.748283-07:00,1860.0,10.846484,10846.484 +29334,2025-03-10T17:12:12.611009-07:00,1895.0,10.862726,10862.726 +29335,2025-03-10T17:12:23.456331-07:00,1889.0,10.845322,10845.322 +29336,2025-03-10T17:12:34.309071-07:00,1893.0,10.85274,10852.74 +29337,2025-03-10T17:12:45.163072-07:00,1809.0,10.854001,10854.001 +29338,2025-03-10T17:12:56.007101-07:00,1897.0,10.844029,10844.029 +29339,2025-03-10T17:13:06.865968-07:00,1827.0,10.858867,10858.867 +29340,2025-03-10T17:13:17.716189-07:00,1881.0,10.850221,10850.221 +29341,2025-03-10T17:13:28.568039-07:00,1898.0,10.85185,10851.85 +29342,2025-03-10T17:13:39.412298-07:00,1898.0,10.844259,10844.259 +29343,2025-03-10T17:13:50.266245-07:00,1847.0,10.853947,10853.947 +29344,2025-03-10T17:14:01.111009-07:00,1903.0,10.844764,10844.764 +29345,2025-03-10T17:14:11.964011-07:00,1902.0,10.853002,10853.002 +29346,2025-03-10T17:14:22.814282-07:00,1894.0,10.850271,10850.271 +29347,2025-03-10T17:14:33.656251-07:00,1910.0,10.841969,10841.969 +29348,2025-03-10T17:14:44.506049-07:00,1905.0,10.849798,10849.798 +29349,2025-03-10T17:14:55.348013-07:00,1875.0,10.841964,10841.964 +29350,2025-03-10T17:15:06.197057-07:00,1908.0,10.849044,10849.044 +29351,2025-03-10T17:15:17.046013-07:00,1840.0,10.848956,10848.956 +29352,2025-03-10T17:15:27.895098-07:00,1878.0,10.849085,10849.085 +29353,2025-03-10T17:15:38.742995-07:00,1916.0,10.847897,10847.897 +29354,2025-03-10T17:15:49.584601-07:00,1846.0,10.841606,10841.606 +29355,2025-03-10T17:16:00.442345-07:00,1867.0,10.857744,10857.744 +29356,2025-03-10T17:16:11.284147-07:00,1910.0,10.841802,10841.802 +29357,2025-03-10T17:16:22.139181-07:00,1886.0,10.855034,10855.034 +29358,2025-03-10T17:16:32.982018-07:00,1879.0,10.842837,10842.837 +29359,2025-03-10T17:16:43.833347-07:00,1872.0,10.851329,10851.329 +29360,2025-03-10T17:16:54.676014-07:00,1925.0,10.842667,10842.667 +29361,2025-03-10T17:17:05.526410-07:00,1871.0,10.850396,10850.396 +29362,2025-03-10T17:17:16.371012-07:00,1904.0,10.844602,10844.602 +29363,2025-03-10T17:17:27.222314-07:00,1941.0,10.851302,10851.302 +29364,2025-03-10T17:17:38.068981-07:00,1939.0,10.846667,10846.667 +29365,2025-03-10T17:17:48.924014-07:00,1959.0,10.855033,10855.033 +29366,2025-03-10T17:17:59.769003-07:00,2003.0,10.844989,10844.989 +29367,2025-03-10T17:18:10.614015-07:00,1997.0,10.845012,10845.012 +29368,2025-03-10T17:18:21.460007-07:00,1953.0,10.845992,10845.992 +29369,2025-03-10T17:18:32.313016-07:00,1985.0,10.853009,10853.009 +29370,2025-03-10T17:18:43.155298-07:00,1974.0,10.842282,10842.282 +29371,2025-03-10T17:18:54.011310-07:00,2000.0,10.856012,10856.012 +29372,2025-03-10T17:19:04.864311-07:00,1985.0,10.853001,10853.001 +29373,2025-03-10T17:19:15.709310-07:00,1995.0,10.844999,10844.999 +29374,2025-03-10T17:19:26.563055-07:00,1983.0,10.853745,10853.745 +29375,2025-03-10T17:19:37.412998-07:00,1971.0,10.849943,10849.943 +29376,2025-03-10T17:19:48.260006-07:00,1995.0,10.847008,10847.008 +29377,2025-03-10T17:19:59.107013-07:00,1967.0,10.847007,10847.007 +29378,2025-03-10T17:20:09.952502-07:00,1946.0,10.845489,10845.489 +29379,2025-03-10T17:20:20.796521-07:00,2002.0,10.844019,10844.019 +29380,2025-03-10T17:20:31.636316-07:00,1999.0,10.839795,10839.795 +29381,2025-03-10T17:20:42.495053-07:00,2000.0,10.858737,10858.737 +29382,2025-03-10T17:20:53.340237-07:00,1997.0,10.845184,10845.184 +29383,2025-03-10T17:21:04.191052-07:00,1990.0,10.850815,10850.815 +29384,2025-03-10T17:21:15.041073-07:00,1947.0,10.850021,10850.021 +29385,2025-03-10T17:21:25.889255-07:00,1968.0,10.848182,10848.182 +29386,2025-03-10T17:21:36.735762-07:00,1975.0,10.846507,10846.507 +29387,2025-03-10T17:21:47.588676-07:00,1951.0,10.852914,10852.914 +29388,2025-03-10T17:21:58.435322-07:00,1935.0,10.846646,10846.646 +29389,2025-03-10T17:22:09.268259-07:00,1967.0,10.832937,10832.937 +29390,2025-03-10T17:22:20.120063-07:00,1885.0,10.851804,10851.804 +29391,2025-03-10T17:22:30.964007-07:00,1878.0,10.843944,10843.944 +29392,2025-03-10T17:22:41.809420-07:00,1905.0,10.845413,10845.413 +29393,2025-03-10T17:22:52.664662-07:00,1904.0,10.855242,10855.242 +29394,2025-03-10T17:23:03.502322-07:00,1905.0,10.83766,10837.66 +29395,2025-03-10T17:23:14.356797-07:00,1937.0,10.854475,10854.475 +29396,2025-03-10T17:23:25.202410-07:00,1874.0,10.845613,10845.613 +29397,2025-03-10T17:23:36.045256-07:00,1926.0,10.842846,10842.846 +29398,2025-03-10T17:23:46.886339-07:00,1925.0,10.841083,10841.083 +29399,2025-03-10T17:23:57.732288-07:00,1923.0,10.845949,10845.949 +29400,2025-03-10T17:24:08.572444-07:00,1923.0,10.840156,10840.156 +29401,2025-03-10T17:24:19.421992-07:00,1846.0,10.849548,10849.548 +29402,2025-03-10T17:24:30.267221-07:00,1881.0,10.845229,10845.229 +29403,2025-03-10T17:24:41.103386-07:00,1842.0,10.836165,10836.165 +29404,2025-03-10T17:24:51.958343-07:00,1875.0,10.854957,10854.957 +29405,2025-03-10T17:25:02.808264-07:00,1887.0,10.849921,10849.921 +29406,2025-03-10T17:25:13.651020-07:00,1885.0,10.842756,10842.756 +29407,2025-03-10T17:25:24.497228-07:00,1911.0,10.846208,10846.208 +29408,2025-03-10T17:25:35.347151-07:00,1922.0,10.849923,10849.923 +29409,2025-03-10T17:25:46.191007-07:00,1902.0,10.843856,10843.856 +29410,2025-03-10T17:25:57.036014-07:00,1882.0,10.845007,10845.007 +29411,2025-03-10T17:26:07.884436-07:00,1825.0,10.848422,10848.422 +29412,2025-03-10T17:26:18.737333-07:00,1903.0,10.852897,10852.897 +29413,2025-03-10T17:26:29.579387-07:00,1909.0,10.842054,10842.054 +29414,2025-03-10T17:26:40.428266-07:00,1872.0,10.848879,10848.879 +29415,2025-03-10T17:26:51.284737-07:00,1837.0,10.856471,10856.471 +29416,2025-03-10T17:27:02.137341-07:00,1918.0,10.852604,10852.604 +29417,2025-03-10T17:27:12.986310-07:00,1840.0,10.848969,10848.969 +29418,2025-03-10T17:27:23.835007-07:00,1918.0,10.848697,10848.697 +29419,2025-03-10T17:27:34.691981-07:00,1895.0,10.856974,10856.974 +29420,2025-03-10T17:27:45.533349-07:00,1922.0,10.841368,10841.368 +29421,2025-03-10T17:27:56.382485-07:00,1923.0,10.849136,10849.136 +29422,2025-03-10T17:28:07.234737-07:00,1872.0,10.852252,10852.252 +29423,2025-03-10T17:28:18.079400-07:00,1911.0,10.844663,10844.663 +29424,2025-03-10T17:28:28.923249-07:00,1893.0,10.843849,10843.849 +29425,2025-03-10T17:28:39.772235-07:00,1907.0,10.848986,10848.986 +29426,2025-03-10T17:28:50.618011-07:00,1869.0,10.845776,10845.776 +29427,2025-03-10T17:29:01.458075-07:00,1891.0,10.840064,10840.064 +29428,2025-03-10T17:29:12.312161-07:00,1902.0,10.854086,10854.086 +29429,2025-03-10T17:29:23.156353-07:00,1851.0,10.844192,10844.192 +29430,2025-03-10T17:29:34.012359-07:00,1872.0,10.856006,10856.006 +29431,2025-03-10T17:29:44.865472-07:00,1867.0,10.853113,10853.113 +29432,2025-03-10T17:29:55.712343-07:00,1897.0,10.846871,10846.871 +29433,2025-03-10T17:30:06.568036-07:00,1808.0,10.855693,10855.693 +29434,2025-03-10T17:30:17.421920-07:00,1854.0,10.853884,10853.884 +29435,2025-03-10T17:30:28.265007-07:00,1875.0,10.843087,10843.087 +29436,2025-03-10T17:30:39.119010-07:00,1845.0,10.854003,10854.003 +29437,2025-03-10T17:30:49.962203-07:00,1853.0,10.843193,10843.193 +29438,2025-03-10T17:31:00.817025-07:00,1851.0,10.854822,10854.822 +29439,2025-03-10T17:31:11.667869-07:00,1825.0,10.850844,10850.844 +29440,2025-03-10T17:31:22.514372-07:00,1840.0,10.846503,10846.503 +29441,2025-03-10T17:31:33.369530-07:00,1872.0,10.855158,10855.158 +29442,2025-03-10T17:31:44.217286-07:00,1808.0,10.847756,10847.756 +29443,2025-03-10T17:31:55.069290-07:00,1883.0,10.852004,10852.004 +29444,2025-03-10T17:32:05.920486-07:00,1875.0,10.851196,10851.196 +29445,2025-03-10T17:32:16.759012-07:00,1863.0,10.838526,10838.526 +29446,2025-03-10T17:32:27.607010-07:00,1838.0,10.847998,10847.998 +29447,2025-03-10T17:32:38.456406-07:00,1822.0,10.849396,10849.396 +29448,2025-03-10T17:32:49.298147-07:00,1872.0,10.841741,10841.741 +29449,2025-03-10T17:33:00.147646-07:00,1833.0,10.849499,10849.499 +29450,2025-03-10T17:33:11.001328-07:00,1867.0,10.853682,10853.682 +29451,2025-03-10T17:33:21.845212-07:00,1803.0,10.843884,10843.884 +29452,2025-03-10T17:33:32.700047-07:00,1852.0,10.854835,10854.835 +29453,2025-03-10T17:33:43.542007-07:00,1840.0,10.84196,10841.96 +29454,2025-03-10T17:33:54.393300-07:00,1804.0,10.851293,10851.293 +29455,2025-03-10T17:34:05.240009-07:00,1818.0,10.846709,10846.709 +29456,2025-03-10T17:34:16.084578-07:00,1811.0,10.844569,10844.569 +29457,2025-03-10T17:34:26.938351-07:00,1806.0,10.853773,10853.773 +29458,2025-03-10T17:34:37.788219-07:00,1850.0,10.849868,10849.868 +29459,2025-03-10T17:34:48.634824-07:00,1835.0,10.846605,10846.605 +29460,2025-03-10T17:34:59.476000-07:00,1847.0,10.841176,10841.176 +29461,2025-03-10T17:35:10.328402-07:00,1767.0,10.852402,10852.402 +29462,2025-03-10T17:35:21.176012-07:00,1842.0,10.84761,10847.61 +29463,2025-03-10T17:35:32.031004-07:00,1861.0,10.854992,10854.992 +29464,2025-03-10T17:35:42.881416-07:00,1831.0,10.850412,10850.412 +29465,2025-03-10T17:35:53.724006-07:00,1864.0,10.84259,10842.59 +29466,2025-03-10T17:36:04.570596-07:00,1869.0,10.84659,10846.59 +29467,2025-03-10T17:36:15.424345-07:00,1847.0,10.853749,10853.749 +29468,2025-03-10T17:36:26.268825-07:00,1854.0,10.84448,10844.48 +29469,2025-03-10T17:36:37.122259-07:00,1808.0,10.853434,10853.434 +29470,2025-03-10T17:36:47.978989-07:00,1849.0,10.85673,10856.73 +29471,2025-03-10T17:36:58.827151-07:00,1809.0,10.848162,10848.162 +29472,2025-03-10T17:37:09.679250-07:00,1839.0,10.852099,10852.099 +29473,2025-03-10T17:37:20.530014-07:00,1851.0,10.850764,10850.764 +29474,2025-03-10T17:37:31.387104-07:00,1815.0,10.85709,10857.09 +29475,2025-03-10T17:37:42.241294-07:00,1799.0,10.85419,10854.19 +29476,2025-03-10T17:37:53.095167-07:00,1810.0,10.853873,10853.873 +29477,2025-03-10T17:38:03.949012-07:00,1857.0,10.853845,10853.845 +29478,2025-03-10T17:38:14.799325-07:00,1853.0,10.850313,10850.313 +29479,2025-03-10T17:38:25.662077-07:00,1805.0,10.862752,10862.752 +29480,2025-03-10T17:38:36.511005-07:00,1811.0,10.848928,10848.928 +29481,2025-03-10T17:38:47.359281-07:00,1783.0,10.848276,10848.276 +29482,2025-03-10T17:38:58.214014-07:00,1808.0,10.854733,10854.733 +29483,2025-03-10T17:39:09.064040-07:00,1787.0,10.850026,10850.026 +29484,2025-03-10T17:39:19.920468-07:00,1846.0,10.856428,10856.428 +29485,2025-03-10T17:39:30.766496-07:00,1777.0,10.846028,10846.028 +29486,2025-03-10T17:39:41.628010-07:00,1853.0,10.861514,10861.514 +29487,2025-03-10T17:39:52.476567-07:00,1808.0,10.848557,10848.557 +29488,2025-03-10T17:40:03.336016-07:00,1776.0,10.859449,10859.449 +29489,2025-03-10T17:40:14.195291-07:00,1767.0,10.859275,10859.275 +29490,2025-03-10T17:40:25.047415-07:00,1822.0,10.852124,10852.124 +29491,2025-03-10T17:40:35.894908-07:00,1791.0,10.847493,10847.493 +29492,2025-03-10T17:40:46.755044-07:00,1811.0,10.860136,10860.136 +29493,2025-03-10T17:40:57.609015-07:00,1799.0,10.853971,10853.971 +29494,2025-03-10T17:41:08.461054-07:00,1806.0,10.852039,10852.039 +29495,2025-03-10T17:41:19.316994-07:00,1842.0,10.85594,10855.94 +29496,2025-03-10T17:41:30.168314-07:00,1810.0,10.85132,10851.32 +29497,2025-03-10T17:41:41.015347-07:00,1797.0,10.847033,10847.033 +29498,2025-03-10T17:41:51.875551-07:00,1842.0,10.860204,10860.204 +29499,2025-03-10T17:42:02.723400-07:00,1792.0,10.847849,10847.849 +29500,2025-03-10T17:42:13.576405-07:00,1831.0,10.853005,10853.005 +29501,2025-03-10T17:42:24.428491-07:00,1839.0,10.852086,10852.086 +29502,2025-03-10T17:42:35.281786-07:00,1836.0,10.853295,10853.295 +29503,2025-03-10T17:42:46.142345-07:00,1789.0,10.860559,10860.559 +29504,2025-03-10T17:42:56.991741-07:00,1839.0,10.849396,10849.396 +29505,2025-03-10T17:43:07.850453-07:00,1783.0,10.858712,10858.712 +29506,2025-03-10T17:43:18.693669-07:00,1826.0,10.843216,10843.216 +29507,2025-03-10T17:43:29.547713-07:00,1833.0,10.854044,10854.044 +29508,2025-03-10T17:43:40.398625-07:00,1811.0,10.850912,10850.912 +29509,2025-03-10T17:43:51.249086-07:00,1789.0,10.850461,10850.461 +29510,2025-03-10T17:44:02.106187-07:00,1819.0,10.857101,10857.101 +29511,2025-03-10T17:44:12.952067-07:00,1807.0,10.84588,10845.88 +29512,2025-03-10T17:44:23.808145-07:00,1827.0,10.856078,10856.078 +29513,2025-03-10T17:44:34.654090-07:00,1833.0,10.845945,10845.945 +29514,2025-03-10T17:44:45.505012-07:00,1779.0,10.850922,10850.922 +29515,2025-03-10T17:44:56.361014-07:00,1829.0,10.856002,10856.002 +29516,2025-03-10T17:45:07.214005-07:00,1775.0,10.852991,10852.991 +29517,2025-03-10T17:45:18.068668-07:00,1745.0,10.854663,10854.663 +29518,2025-03-10T17:45:28.916015-07:00,1827.0,10.847347,10847.347 +29519,2025-03-10T17:45:39.771014-07:00,1824.0,10.854999,10854.999 +29520,2025-03-10T17:45:50.614454-07:00,1751.0,10.84344,10843.44 +29521,2025-03-10T17:46:01.472205-07:00,1743.0,10.857751,10857.751 +29522,2025-03-10T17:46:12.326643-07:00,1808.0,10.854438,10854.438 +29523,2025-03-10T17:46:23.180148-07:00,1819.0,10.853505,10853.505 +29524,2025-03-10T17:46:34.035026-07:00,1793.0,10.854878,10854.878 +29525,2025-03-10T17:46:44.894012-07:00,1773.0,10.858986,10858.986 +29526,2025-03-10T17:46:55.744221-07:00,1783.0,10.850209,10850.209 +29527,2025-03-10T17:47:06.594274-07:00,1727.0,10.850053,10850.053 +29528,2025-03-10T17:47:17.446670-07:00,1757.0,10.852396,10852.396 +29529,2025-03-10T17:47:28.301793-07:00,1757.0,10.855123,10855.123 +29530,2025-03-10T17:47:39.151349-07:00,1743.0,10.849556,10849.556 +29531,2025-03-10T17:47:50.008540-07:00,1785.0,10.857191,10857.191 +29532,2025-03-10T17:48:00.860075-07:00,1781.0,10.851535,10851.535 +29533,2025-03-10T17:48:11.719281-07:00,1778.0,10.859206,10859.206 +29534,2025-03-10T17:48:22.569314-07:00,1819.0,10.850033,10850.033 +29535,2025-03-10T17:48:33.418061-07:00,1811.0,10.848747,10848.747 +29536,2025-03-10T17:48:55.119012-07:00,1728.0,21.700951,21700.951 +29537,2025-03-10T17:49:05.970996-07:00,1775.0,10.851984,10851.984 +29538,2025-03-10T17:49:16.823021-07:00,1810.0,10.852025,10852.025 +29539,2025-03-10T17:49:27.673204-07:00,1793.0,10.850183,10850.183 +29540,2025-03-10T17:49:38.521991-07:00,1771.0,10.848787,10848.787 +29541,2025-03-10T17:49:49.370237-07:00,1802.0,10.848246,10848.246 +29542,2025-03-10T17:50:00.224074-07:00,1774.0,10.853837,10853.837 +29543,2025-03-10T17:50:11.083019-07:00,1763.0,10.858945,10858.945 +29544,2025-03-10T17:50:21.935020-07:00,1753.0,10.852001,10852.001 +29545,2025-03-10T17:50:32.781452-07:00,1801.0,10.846432,10846.432 +29546,2025-03-10T17:50:43.635358-07:00,1776.0,10.853906,10853.906 +29547,2025-03-10T17:50:54.486687-07:00,1808.0,10.851329,10851.329 +29548,2025-03-10T17:51:05.334983-07:00,1806.0,10.848296,10848.296 +29549,2025-03-10T17:51:16.189302-07:00,1737.0,10.854319,10854.319 +29550,2025-03-10T17:51:27.043008-07:00,1771.0,10.853706,10853.706 +29551,2025-03-10T17:51:37.897673-07:00,1715.0,10.854665,10854.665 +29552,2025-03-10T17:51:48.735634-07:00,1762.0,10.837961,10837.961 +29553,2025-03-10T17:51:59.593258-07:00,1791.0,10.857624,10857.624 +29554,2025-03-10T17:52:10.448003-07:00,1808.0,10.854745,10854.745 +29555,2025-03-10T17:52:21.292998-07:00,1719.0,10.844995,10844.995 +29556,2025-03-10T17:52:32.140062-07:00,1776.0,10.847064,10847.064 +29557,2025-03-10T17:52:42.992166-07:00,1786.0,10.852104,10852.104 +29558,2025-03-10T17:52:53.848012-07:00,1735.0,10.855846,10855.846 +29559,2025-03-10T17:53:04.688530-07:00,1804.0,10.840518,10840.518 +29560,2025-03-10T17:53:15.537212-07:00,1801.0,10.848682,10848.682 +29561,2025-03-10T17:53:26.395381-07:00,1788.0,10.858169,10858.169 +29562,2025-03-10T17:53:37.241390-07:00,1805.0,10.846009,10846.009 +29563,2025-03-10T17:53:48.088570-07:00,1791.0,10.84718,10847.18 +29564,2025-03-10T17:53:58.948179-07:00,1767.0,10.859609,10859.609 +29565,2025-03-10T17:54:09.798011-07:00,1799.0,10.849832,10849.832 +29566,2025-03-10T17:54:20.652257-07:00,1794.0,10.854246,10854.246 +29567,2025-03-10T17:54:31.501012-07:00,1786.0,10.848755,10848.755 +29568,2025-03-10T17:54:42.362368-07:00,1791.0,10.861356,10861.356 +29569,2025-03-10T17:54:53.205472-07:00,1808.0,10.843104,10843.104 +29570,2025-03-10T17:55:04.054017-07:00,1789.0,10.848545,10848.545 +29571,2025-03-10T17:55:14.909896-07:00,1743.0,10.855879,10855.879 +29572,2025-03-10T17:55:25.757013-07:00,1760.0,10.847117,10847.117 +29573,2025-03-10T17:55:36.608379-07:00,1802.0,10.851366,10851.366 +29574,2025-03-10T17:55:47.447819-07:00,1795.0,10.83944,10839.44 +29575,2025-03-10T17:55:58.302466-07:00,1802.0,10.854647,10854.647 +29576,2025-03-10T17:56:09.151987-07:00,1762.0,10.849521,10849.521 +29577,2025-03-10T17:56:20.005219-07:00,1777.0,10.853232,10853.232 +29578,2025-03-10T17:56:30.858027-07:00,1783.0,10.852808,10852.808 +29579,2025-03-10T17:56:41.702204-07:00,1749.0,10.844177,10844.177 +29580,2025-03-10T17:56:52.559500-07:00,1791.0,10.857296,10857.296 +29581,2025-03-10T17:57:03.415063-07:00,1776.0,10.855563,10855.563 +29582,2025-03-10T17:57:14.268010-07:00,1751.0,10.852947,10852.947 +29583,2025-03-10T17:57:25.120486-07:00,1715.0,10.852476,10852.476 +29584,2025-03-10T17:57:35.976140-07:00,1750.0,10.855654,10855.654 +29585,2025-03-10T17:57:46.827186-07:00,1745.0,10.851046,10851.046 +29586,2025-03-10T17:57:57.678244-07:00,1792.0,10.851058,10851.058 +29587,2025-03-10T17:58:08.528040-07:00,1805.0,10.849796,10849.796 +29588,2025-03-10T17:58:19.372009-07:00,1790.0,10.843969,10843.969 +29589,2025-03-10T17:58:30.228062-07:00,1715.0,10.856053,10856.053 +29590,2025-03-10T17:58:41.080011-07:00,1711.0,10.851949,10851.949 +29591,2025-03-10T17:58:51.930351-07:00,1799.0,10.85034,10850.34 +29592,2025-03-10T17:59:02.784328-07:00,1782.0,10.853977,10853.977 +29593,2025-03-10T17:59:13.637362-07:00,1728.0,10.853034,10853.034 +29594,2025-03-10T17:59:14.604737-07:00,1728.0,0.967375,967.375 +29595,2025-03-10T17:59:24.497173-07:00,1751.0,9.892436,9892.436 +29596,2025-03-10T17:59:35.345332-07:00,1744.0,10.848159,10848.159 +29597,2025-03-10T17:59:46.207021-07:00,1746.0,10.861689,10861.689 +29598,2025-03-10T17:59:57.061160-07:00,1775.0,10.854139,10854.139 +29599,2025-03-10T18:00:07.915538-07:00,1724.0,10.854378,10854.378 +29600,2025-03-10T18:00:18.771018-07:00,1756.0,10.85548,10855.48 +29601,2025-03-10T18:00:29.635021-07:00,1766.0,10.864003,10864.003 +29602,2025-03-10T18:00:40.486012-07:00,1754.0,10.850991,10850.991 +29603,2025-03-10T18:00:51.341246-07:00,1792.0,10.855234,10855.234 +29604,2025-03-10T18:01:02.205250-07:00,1709.0,10.864004,10864.004 +29605,2025-03-10T18:01:13.054144-07:00,1775.0,10.848894,10848.894 +29606,2025-03-10T18:01:23.913015-07:00,1747.0,10.858871,10858.871 +29607,2025-03-10T18:01:34.763196-07:00,1719.0,10.850181,10850.181 +29608,2025-03-10T18:01:45.617012-07:00,1776.0,10.853816,10853.816 +29609,2025-03-10T18:01:56.473013-07:00,1783.0,10.856001,10856.001 +29610,2025-03-10T18:02:07.322374-07:00,1745.0,10.849361,10849.361 +29611,2025-03-10T18:02:18.180264-07:00,1793.0,10.85789,10857.89 +29612,2025-03-10T18:02:29.019179-07:00,1754.0,10.838915,10838.915 +29613,2025-03-10T18:02:39.880012-07:00,1766.0,10.860833,10860.833 +29614,2025-03-10T18:02:50.728408-07:00,1763.0,10.848396,10848.396 +29615,2025-03-10T18:03:01.573376-07:00,1790.0,10.844968,10844.968 +29616,2025-03-10T18:03:12.422504-07:00,1694.0,10.849128,10849.128 +29617,2025-03-10T18:03:23.278055-07:00,1785.0,10.855551,10855.551 +29618,2025-03-10T18:03:34.123497-07:00,1776.0,10.845442,10845.442 +29619,2025-03-10T18:03:44.981258-07:00,1706.0,10.857761,10857.761 +29620,2025-03-10T18:03:55.837015-07:00,1776.0,10.855757,10855.757 +29621,2025-03-10T18:04:06.686006-07:00,1775.0,10.848991,10848.991 +29622,2025-03-10T18:04:17.540015-07:00,1784.0,10.854009,10854.009 +29623,2025-03-10T18:04:28.390009-07:00,1712.0,10.849994,10849.994 +29624,2025-03-10T18:04:39.230985-07:00,1785.0,10.840976,10840.976 +29625,2025-03-10T18:04:50.087463-07:00,1744.0,10.856478,10856.478 +29626,2025-03-10T18:05:00.935638-07:00,1783.0,10.848175,10848.175 +29627,2025-03-10T18:05:11.772157-07:00,1759.0,10.836519,10836.519 +29628,2025-03-10T18:05:22.629004-07:00,1733.0,10.856847,10856.847 +29629,2025-03-10T18:05:33.470007-07:00,1698.0,10.841003,10841.003 +29630,2025-03-10T18:05:44.320328-07:00,1750.0,10.850321,10850.321 +29631,2025-03-10T18:05:55.183752-07:00,1778.0,10.863424,10863.424 +29632,2025-03-10T18:06:06.044684-07:00,1755.0,10.860932,10860.932 +29633,2025-03-10T18:06:16.898691-07:00,1741.0,10.854007,10854.007 +29634,2025-03-10T18:06:27.752681-07:00,1788.0,10.85399,10853.99 +29635,2025-03-10T18:06:38.612668-07:00,1787.0,10.859987,10859.987 +29636,2025-03-10T18:06:49.461668-07:00,1775.0,10.849,10849.0 +29637,2025-03-10T18:07:00.314843-07:00,1733.0,10.853175,10853.175 +29638,2025-03-10T18:07:11.184137-07:00,1728.0,10.869294,10869.294 +29639,2025-03-10T18:07:22.038740-07:00,1776.0,10.854603,10854.603 +29640,2025-03-10T18:07:32.893647-07:00,1778.0,10.854907,10854.907 +29641,2025-03-10T18:07:43.747580-07:00,1727.0,10.853933,10853.933 +29642,2025-03-10T18:07:54.609159-07:00,1777.0,10.861579,10861.579 +29643,2025-03-10T18:08:05.462244-07:00,1711.0,10.853085,10853.085 +29644,2025-03-10T18:08:16.317879-07:00,1775.0,10.855635,10855.635 +29645,2025-03-10T18:08:27.167948-07:00,1735.0,10.850069,10850.069 +29646,2025-03-10T18:08:38.021047-07:00,1727.0,10.853099,10853.099 +29647,2025-03-10T18:08:48.873969-07:00,1781.0,10.852922,10852.922 +29648,2025-03-10T18:08:59.729158-07:00,1746.0,10.855189,10855.189 +29649,2025-03-10T18:09:10.588916-07:00,1723.0,10.859758,10859.758 +29650,2025-03-10T18:09:21.438972-07:00,1706.0,10.850056,10850.056 +29651,2025-03-10T18:09:32.292751-07:00,1746.0,10.853779,10853.779 +29652,2025-03-10T18:09:43.146850-07:00,1755.0,10.854099,10854.099 +29653,2025-03-10T18:09:54.001553-07:00,1781.0,10.854703,10854.703 +29654,2025-03-10T18:10:04.854991-07:00,1782.0,10.853438,10853.438 +29655,2025-03-10T18:10:15.709477-07:00,1765.0,10.854486,10854.486 +29656,2025-03-10T18:10:26.552929-07:00,1773.0,10.843452,10843.452 +29657,2025-03-10T18:10:37.412669-07:00,1779.0,10.85974,10859.74 +29658,2025-03-10T18:10:48.256681-07:00,1753.0,10.844012,10844.012 +29659,2025-03-10T18:10:59.115977-07:00,1779.0,10.859296,10859.296 +29660,2025-03-10T18:11:09.964551-07:00,1776.0,10.848574,10848.574 +29661,2025-03-10T18:11:20.814731-07:00,1777.0,10.85018,10850.18 +29662,2025-03-10T18:11:31.668634-07:00,1774.0,10.853903,10853.903 +29663,2025-03-10T18:11:42.519752-07:00,1775.0,10.851118,10851.118 +29664,2025-03-10T18:11:53.368102-07:00,1761.0,10.84835,10848.35 +29665,2025-03-10T18:12:04.215720-07:00,1708.0,10.847618,10847.618 +29666,2025-03-10T18:12:15.066034-07:00,1696.0,10.850314,10850.314 +29667,2025-03-10T18:12:25.918002-07:00,1693.0,10.851968,10851.968 +29668,2025-03-10T18:12:36.772040-07:00,1711.0,10.854038,10854.038 +29669,2025-03-10T18:12:47.619314-07:00,1727.0,10.847274,10847.274 +29670,2025-03-10T18:12:58.470068-07:00,1698.0,10.850754,10850.754 +29671,2025-03-10T18:13:09.324736-07:00,1729.0,10.854668,10854.668 +29672,2025-03-10T18:13:20.172664-07:00,1727.0,10.847928,10847.928 +29673,2025-03-10T18:13:31.017987-07:00,1691.0,10.845323,10845.323 +29674,2025-03-10T18:13:41.875691-07:00,1681.0,10.857704,10857.704 +29675,2025-03-10T18:13:52.724055-07:00,1767.0,10.848364,10848.364 +29676,2025-03-10T18:14:03.567822-07:00,1727.0,10.843767,10843.767 +29677,2025-03-10T18:14:14.417116-07:00,1773.0,10.849294,10849.294 +29678,2025-03-10T18:14:25.265798-07:00,1775.0,10.848682,10848.682 +29679,2025-03-10T18:14:36.108859-07:00,1707.0,10.843061,10843.061 +29680,2025-03-10T18:14:46.953688-07:00,1686.0,10.844829,10844.829 +29681,2025-03-10T18:14:57.799770-07:00,1774.0,10.846082,10846.082 +29682,2025-03-10T18:15:08.648022-07:00,1743.0,10.848252,10848.252 +29683,2025-03-10T18:15:19.485997-07:00,1767.0,10.837975,10837.975 +29684,2025-03-10T18:15:30.342003-07:00,1755.0,10.856006,10856.006 +29685,2025-03-10T18:15:41.197156-07:00,1769.0,10.855153,10855.153 +29686,2025-03-10T18:15:52.033687-07:00,1743.0,10.836531,10836.531 +29687,2025-03-10T18:16:02.883972-07:00,1744.0,10.850285,10850.285 +29688,2025-03-10T18:16:13.730687-07:00,1677.0,10.846715,10846.715 +29689,2025-03-10T18:16:24.575695-07:00,1761.0,10.845008,10845.008 +29690,2025-03-10T18:16:35.422991-07:00,1774.0,10.847296,10847.296 +29691,2025-03-10T18:16:46.283961-07:00,1723.0,10.86097,10860.97 +29692,2025-03-10T18:16:57.122606-07:00,1687.0,10.838645,10838.645 +29693,2025-03-10T18:17:07.975042-07:00,1742.0,10.852436,10852.436 +29694,2025-03-10T18:17:18.821687-07:00,1718.0,10.846645,10846.645 +29695,2025-03-10T18:17:29.671824-07:00,1712.0,10.850137,10850.137 +29696,2025-03-10T18:17:40.520686-07:00,1754.0,10.848862,10848.862 +29697,2025-03-10T18:17:51.376902-07:00,1741.0,10.856216,10856.216 +29698,2025-03-10T18:18:02.220338-07:00,1769.0,10.843436,10843.436 +29699,2025-03-10T18:18:13.063953-07:00,1731.0,10.843615,10843.615 +29700,2025-03-10T18:18:23.916812-07:00,1685.0,10.852859,10852.859 +29701,2025-03-10T18:18:34.762967-07:00,1767.0,10.846155,10846.155 +29702,2025-03-10T18:18:45.610770-07:00,1733.0,10.847803,10847.803 +29703,2025-03-10T18:18:56.462724-07:00,1771.0,10.851954,10851.954 +29704,2025-03-10T18:19:07.306746-07:00,1745.0,10.844022,10844.022 +29705,2025-03-10T18:19:18.154887-07:00,1716.0,10.848141,10848.141 +29706,2025-03-10T18:19:29.007860-07:00,1770.0,10.852973,10852.973 +29707,2025-03-10T18:19:39.846999-07:00,1735.0,10.839139,10839.139 +29708,2025-03-10T18:19:50.694979-07:00,1744.0,10.84798,10847.98 +29709,2025-03-10T18:20:01.550508-07:00,1762.0,10.855529,10855.529 +29710,2025-03-10T18:20:12.393691-07:00,1687.0,10.843183,10843.183 +29711,2025-03-10T18:20:23.244030-07:00,1731.0,10.850339,10850.339 +29712,2025-03-10T18:20:34.090690-07:00,1762.0,10.84666,10846.66 +29713,2025-03-10T18:20:44.927932-07:00,1767.0,10.837242,10837.242 +29714,2025-03-10T18:20:55.770989-07:00,1675.0,10.843057,10843.057 +29715,2025-03-10T18:21:06.618026-07:00,1726.0,10.847037,10847.037 +29716,2025-03-10T18:21:17.469024-07:00,1758.0,10.850998,10850.998 +29717,2025-03-10T18:21:28.313898-07:00,1763.0,10.844874,10844.874 +29718,2025-03-10T18:21:39.170895-07:00,1697.0,10.856997,10856.997 +29719,2025-03-10T18:21:50.015993-07:00,1762.0,10.845098,10845.098 +29720,2025-03-10T18:22:00.871687-07:00,1697.0,10.855694,10855.694 +29721,2025-03-10T18:22:11.720831-07:00,1763.0,10.849144,10849.144 +29722,2025-03-10T18:22:22.573923-07:00,1726.0,10.853092,10853.092 +29723,2025-03-10T18:22:33.428937-07:00,1706.0,10.855014,10855.014 +29724,2025-03-10T18:22:44.271496-07:00,1751.0,10.842559,10842.559 +29725,2025-03-10T18:22:55.121169-07:00,1723.0,10.849673,10849.673 +29726,2025-03-10T18:23:05.976174-07:00,1754.0,10.855005,10855.005 +29727,2025-03-10T18:23:16.822917-07:00,1744.0,10.846743,10846.743 +29728,2025-03-10T18:23:27.673912-07:00,1763.0,10.850995,10850.995 +29729,2025-03-10T18:23:38.527686-07:00,1691.0,10.853774,10853.774 +29730,2025-03-10T18:23:49.369532-07:00,1725.0,10.841846,10841.846 +29731,2025-03-10T18:24:00.219690-07:00,1712.0,10.850158,10850.158 +29732,2025-03-10T18:24:11.074876-07:00,1758.0,10.855186,10855.186 +29733,2025-03-10T18:24:21.925954-07:00,1700.0,10.851078,10851.078 +29734,2025-03-10T18:24:32.769685-07:00,1703.0,10.843731,10843.731 +29735,2025-03-10T18:24:43.619244-07:00,1733.0,10.849559,10849.559 +29736,2025-03-10T18:24:54.466991-07:00,1758.0,10.847747,10847.747 +29737,2025-03-10T18:25:05.326313-07:00,1683.0,10.859322,10859.322 +29738,2025-03-10T18:25:16.177274-07:00,1712.0,10.850961,10850.961 +29739,2025-03-10T18:25:27.021872-07:00,1673.0,10.844598,10844.598 +29740,2025-03-10T18:25:37.869677-07:00,1754.0,10.847805,10847.805 +29741,2025-03-10T18:25:48.722840-07:00,1731.0,10.853163,10853.163 +29742,2025-03-10T18:25:59.564755-07:00,1729.0,10.841915,10841.915 +29743,2025-03-10T18:26:10.418941-07:00,1755.0,10.854186,10854.186 +29744,2025-03-10T18:26:21.270978-07:00,1668.0,10.852037,10852.037 +29745,2025-03-10T18:26:32.117742-07:00,1693.0,10.846764,10846.764 +29746,2025-03-10T18:26:42.977691-07:00,1713.0,10.859949,10859.949 +29747,2025-03-10T18:26:53.828799-07:00,1671.0,10.851108,10851.108 +29748,2025-03-10T18:27:04.675294-07:00,1744.0,10.846495,10846.495 +29749,2025-03-10T18:27:15.529085-07:00,1744.0,10.853791,10853.791 +29750,2025-03-10T18:27:26.383045-07:00,1712.0,10.85396,10853.96 +29751,2025-03-10T18:27:37.233705-07:00,1750.0,10.85066,10850.66 +29752,2025-03-10T18:27:48.094053-07:00,1682.0,10.860348,10860.348 +29753,2025-03-10T18:27:58.950022-07:00,1743.0,10.855969,10855.969 +29754,2025-03-10T18:28:09.799367-07:00,1717.0,10.849345,10849.345 +29755,2025-03-10T18:28:20.645927-07:00,1754.0,10.84656,10846.56 +29756,2025-03-10T18:28:31.502257-07:00,1753.0,10.85633,10856.33 +29757,2025-03-10T18:28:42.349685-07:00,1749.0,10.847428,10847.428 +29758,2025-03-10T18:28:53.209369-07:00,1725.0,10.859684,10859.684 +29759,2025-03-10T18:29:04.052119-07:00,1743.0,10.84275,10842.75 +29760,2025-03-10T18:29:14.905691-07:00,1675.0,10.853572,10853.572 +29761,2025-03-10T18:29:25.759901-07:00,1699.0,10.85421,10854.21 +29762,2025-03-10T18:29:36.612930-07:00,1677.0,10.853029,10853.029 +29763,2025-03-10T18:29:47.464690-07:00,1735.0,10.85176,10851.76 +29764,2025-03-10T18:29:58.308773-07:00,1673.0,10.844083,10844.083 +29765,2025-03-10T18:30:09.163063-07:00,1742.0,10.85429,10854.29 +29766,2025-03-10T18:30:20.020668-07:00,1699.0,10.857605,10857.605 +29767,2025-03-10T18:30:30.861691-07:00,1747.0,10.841023,10841.023 +29768,2025-03-10T18:30:41.720939-07:00,1702.0,10.859248,10859.248 +29769,2025-03-10T18:30:52.562030-07:00,1747.0,10.841091,10841.091 +29770,2025-03-10T18:31:03.408541-07:00,1693.0,10.846511,10846.511 +29771,2025-03-10T18:31:14.260112-07:00,1710.0,10.851571,10851.571 +29772,2025-03-10T18:31:25.103365-07:00,1678.0,10.843253,10843.253 +29773,2025-03-10T18:31:35.953879-07:00,1714.0,10.850514,10850.514 +29774,2025-03-10T18:31:46.793026-07:00,1744.0,10.839147,10839.147 +29775,2025-03-10T18:31:57.645296-07:00,1749.0,10.85227,10852.27 +29776,2025-03-10T18:32:08.481731-07:00,1718.0,10.836435,10836.435 +29777,2025-03-10T18:32:19.342799-07:00,1735.0,10.861068,10861.068 +29778,2025-03-10T18:32:30.184732-07:00,1734.0,10.841933,10841.933 +29779,2025-03-10T18:32:41.027157-07:00,1744.0,10.842425,10842.425 +29780,2025-03-10T18:32:51.879719-07:00,1687.0,10.852562,10852.562 +29781,2025-03-10T18:33:02.724704-07:00,1677.0,10.844985,10844.985 +29782,2025-03-10T18:33:13.568464-07:00,1745.0,10.84376,10843.76 +29783,2025-03-10T18:33:24.420028-07:00,1658.0,10.851564,10851.564 +29784,2025-03-10T18:33:35.265279-07:00,1743.0,10.845251,10845.251 +29785,2025-03-10T18:33:46.099833-07:00,1744.0,10.834554,10834.554 +29786,2025-03-10T18:33:56.953944-07:00,1698.0,10.854111,10854.111 +29787,2025-03-10T18:34:07.794989-07:00,1691.0,10.841045,10841.045 +29788,2025-03-10T18:34:18.650017-07:00,1725.0,10.855028,10855.028 +29789,2025-03-10T18:34:29.493322-07:00,1712.0,10.843305,10843.305 +29790,2025-03-10T18:34:40.347507-07:00,1712.0,10.854185,10854.185 +29791,2025-03-10T18:34:51.192270-07:00,1677.0,10.844763,10844.763 +29792,2025-03-10T18:35:02.046216-07:00,1695.0,10.853946,10853.946 +29793,2025-03-10T18:35:12.898670-07:00,1711.0,10.852454,10852.454 +29794,2025-03-10T18:35:23.742696-07:00,1727.0,10.844026,10844.026 +29795,2025-03-10T18:35:34.600668-07:00,1682.0,10.857972,10857.972 +29796,2025-03-10T18:35:45.457683-07:00,1743.0,10.857015,10857.015 +29797,2025-03-10T18:35:56.301691-07:00,1666.0,10.844008,10844.008 +29798,2025-03-10T18:36:07.150694-07:00,1741.0,10.849003,10849.003 +29799,2025-03-10T18:36:18.001694-07:00,1733.0,10.851,10851.0 +29800,2025-03-10T18:36:28.845006-07:00,1710.0,10.843312,10843.312 +29801,2025-03-10T18:36:39.701286-07:00,1707.0,10.85628,10856.28 +29802,2025-03-10T18:36:50.543734-07:00,1712.0,10.842448,10842.448 +29803,2025-03-10T18:37:01.402305-07:00,1654.0,10.858571,10858.571 +29804,2025-03-10T18:37:12.253556-07:00,1709.0,10.851251,10851.251 +29805,2025-03-10T18:37:23.101686-07:00,1742.0,10.84813,10848.13 +29806,2025-03-10T18:37:33.942908-07:00,1741.0,10.841222,10841.222 +29807,2025-03-10T18:37:44.788010-07:00,1674.0,10.845102,10845.102 +29808,2025-03-10T18:37:55.637296-07:00,1695.0,10.849286,10849.286 +29809,2025-03-10T18:38:06.481972-07:00,1697.0,10.844676,10844.676 +29810,2025-03-10T18:38:17.332436-07:00,1701.0,10.850464,10850.464 +29811,2025-03-10T18:38:28.174737-07:00,1729.0,10.842301,10842.301 +29812,2025-03-10T18:38:39.030812-07:00,1680.0,10.856075,10856.075 +29813,2025-03-10T18:38:49.881192-07:00,1673.0,10.85038,10850.38 +29814,2025-03-10T18:39:00.727685-07:00,1693.0,10.846493,10846.493 +29815,2025-03-10T18:39:11.574003-07:00,1737.0,10.846318,10846.318 +29816,2025-03-10T18:39:22.421699-07:00,1729.0,10.847696,10847.696 +29817,2025-03-10T18:39:33.272800-07:00,1662.0,10.851101,10851.101 +29818,2025-03-10T18:39:44.119509-07:00,1714.0,10.846709,10846.709 +29819,2025-03-10T18:39:54.963668-07:00,1735.0,10.844159,10844.159 +29820,2025-03-10T18:40:05.810909-07:00,1729.0,10.847241,10847.241 +29821,2025-03-10T18:40:16.663675-07:00,1725.0,10.852766,10852.766 +29822,2025-03-10T18:40:27.503856-07:00,1737.0,10.840181,10840.181 +29823,2025-03-10T18:40:38.353034-07:00,1732.0,10.849178,10849.178 +29824,2025-03-10T18:40:49.206281-07:00,1647.0,10.853247,10853.247 +29825,2025-03-10T18:41:00.048370-07:00,1721.0,10.842089,10842.089 +29826,2025-03-10T18:41:10.898064-07:00,1697.0,10.849694,10849.694 +29827,2025-03-10T18:41:21.740686-07:00,1666.0,10.842622,10842.622 +29828,2025-03-10T18:41:32.597816-07:00,1650.0,10.85713,10857.13 +29829,2025-03-10T18:41:43.443765-07:00,1732.0,10.845949,10845.949 +29830,2025-03-10T18:41:54.293683-07:00,1725.0,10.849918,10849.918 +29831,2025-03-10T18:42:05.148951-07:00,1727.0,10.855268,10855.268 +29832,2025-03-10T18:42:15.996834-07:00,1702.0,10.847883,10847.883 +29833,2025-03-10T18:42:26.849097-07:00,1732.0,10.852263,10852.263 +29834,2025-03-10T18:42:37.696251-07:00,1648.0,10.847154,10847.154 +29835,2025-03-10T18:42:48.549979-07:00,1729.0,10.853728,10853.728 +29836,2025-03-10T18:42:59.398783-07:00,1701.0,10.848804,10848.804 +29837,2025-03-10T18:43:10.245239-07:00,1727.0,10.846456,10846.456 +29838,2025-03-10T18:43:21.100987-07:00,1679.0,10.855748,10855.748 +29839,2025-03-10T18:43:31.943686-07:00,1731.0,10.842699,10842.699 +29840,2025-03-10T18:43:42.798692-07:00,1689.0,10.855006,10855.006 +29841,2025-03-10T18:43:53.647010-07:00,1666.0,10.848318,10848.318 +29842,2025-03-10T18:44:04.501730-07:00,1685.0,10.85472,10854.72 +29843,2025-03-10T18:44:15.344734-07:00,1686.0,10.843004,10843.004 +29844,2025-03-10T18:44:26.204766-07:00,1728.0,10.860032,10860.032 +29845,2025-03-10T18:44:37.055032-07:00,1719.0,10.850266,10850.266 +29846,2025-03-10T18:44:47.902916-07:00,1663.0,10.847884,10847.884 +29847,2025-03-10T18:44:58.755089-07:00,1657.0,10.852173,10852.173 +29848,2025-03-10T18:45:09.605176-07:00,1712.0,10.850087,10850.087 +29849,2025-03-10T18:45:20.458045-07:00,1646.0,10.852869,10852.869 +29850,2025-03-10T18:45:31.300687-07:00,1719.0,10.842642,10842.642 +29851,2025-03-10T18:45:42.158276-07:00,1677.0,10.857589,10857.589 +29852,2025-03-10T18:45:53.008519-07:00,1679.0,10.850243,10850.243 +29853,2025-03-10T18:46:03.856658-07:00,1726.0,10.848139,10848.139 +29854,2025-03-10T18:46:14.716849-07:00,1709.0,10.860191,10860.191 +29855,2025-03-10T18:46:25.566934-07:00,1680.0,10.850085,10850.085 +29856,2025-03-10T18:46:36.419688-07:00,1683.0,10.852754,10852.754 +29857,2025-03-10T18:46:47.273691-07:00,1717.0,10.854003,10854.003 +29858,2025-03-10T18:46:58.131321-07:00,1727.0,10.85763,10857.63 +29859,2025-03-10T18:47:08.982832-07:00,1714.0,10.851511,10851.511 +29860,2025-03-10T18:47:19.838668-07:00,1715.0,10.855836,10855.836 +29861,2025-03-10T18:47:30.691830-07:00,1687.0,10.853162,10853.162 +29862,2025-03-10T18:47:41.541675-07:00,1708.0,10.849845,10849.845 +29863,2025-03-10T18:47:52.389691-07:00,1676.0,10.848016,10848.016 +29864,2025-03-10T18:48:03.233815-07:00,1674.0,10.844124,10844.124 +29865,2025-03-10T18:48:14.090941-07:00,1698.0,10.857126,10857.126 +29866,2025-03-10T18:48:24.934086-07:00,1717.0,10.843145,10843.145 +29867,2025-03-10T18:48:35.788881-07:00,1677.0,10.854795,10854.795 +29868,2025-03-10T18:48:46.639566-07:00,1687.0,10.850685,10850.685 +29869,2025-03-10T18:48:57.488725-07:00,1712.0,10.849159,10849.159 +29870,2025-03-10T18:49:08.340740-07:00,1722.0,10.852015,10852.015 +29871,2025-03-10T18:49:19.185810-07:00,1719.0,10.84507,10845.07 +29872,2025-03-10T18:49:30.036035-07:00,1685.0,10.850225,10850.225 +29873,2025-03-10T18:49:40.888690-07:00,1707.0,10.852655,10852.655 +29874,2025-03-10T18:49:51.737937-07:00,1700.0,10.849247,10849.247 +29875,2025-03-10T18:50:02.590691-07:00,1644.0,10.852754,10852.754 +29876,2025-03-10T18:50:13.439745-07:00,1718.0,10.849054,10849.054 +29877,2025-03-10T18:50:24.287377-07:00,1635.0,10.847632,10847.632 +29878,2025-03-10T18:50:35.145009-07:00,1683.0,10.857632,10857.632 +29879,2025-03-10T18:50:45.998024-07:00,1719.0,10.853015,10853.015 +29880,2025-03-10T18:50:56.848177-07:00,1686.0,10.850153,10850.153 +29881,2025-03-10T18:51:07.697963-07:00,1712.0,10.849786,10849.786 +29882,2025-03-10T18:51:18.549868-07:00,1678.0,10.851905,10851.905 +29883,2025-03-10T18:51:29.403881-07:00,1640.0,10.854013,10854.013 +29884,2025-03-10T18:51:40.264605-07:00,1671.0,10.860724,10860.724 +29885,2025-03-10T18:51:51.115213-07:00,1666.0,10.850608,10850.608 +29886,2025-03-10T18:52:01.967407-07:00,1675.0,10.852194,10852.194 +29887,2025-03-10T18:52:12.821463-07:00,1703.0,10.854056,10854.056 +29888,2025-03-10T18:52:23.670694-07:00,1666.0,10.849231,10849.231 +29889,2025-03-10T18:52:34.531654-07:00,1707.0,10.86096,10860.96 +29890,2025-03-10T18:52:45.386608-07:00,1715.0,10.854954,10854.954 +29891,2025-03-10T18:52:56.240286-07:00,1685.0,10.853678,10853.678 +29892,2025-03-10T18:53:07.096964-07:00,1662.0,10.856678,10856.678 +29893,2025-03-10T18:53:17.954202-07:00,1683.0,10.857238,10857.238 +29894,2025-03-10T18:53:28.804279-07:00,1628.0,10.850077,10850.077 +29895,2025-03-10T18:53:39.657393-07:00,1712.0,10.853114,10853.114 +29896,2025-03-10T18:53:50.505690-07:00,1677.0,10.848297,10848.297 +29897,2025-03-10T18:54:01.367915-07:00,1665.0,10.862225,10862.225 +29898,2025-03-10T18:54:12.220822-07:00,1717.0,10.852907,10852.907 +29899,2025-03-10T18:54:23.076045-07:00,1619.0,10.855223,10855.223 +29900,2025-03-10T18:54:33.930129-07:00,1701.0,10.854084,10854.084 +29901,2025-03-10T18:54:44.778691-07:00,1668.0,10.848562,10848.562 +29902,2025-03-10T18:54:55.639621-07:00,1713.0,10.86093,10860.93 +29903,2025-03-10T18:55:06.481920-07:00,1687.0,10.842299,10842.299 +29904,2025-03-10T18:55:17.336685-07:00,1667.0,10.854765,10854.765 +29905,2025-03-10T18:55:28.197687-07:00,1675.0,10.861002,10861.002 +29906,2025-03-10T18:55:39.040668-07:00,1647.0,10.842981,10842.981 +29907,2025-03-10T18:55:49.899668-07:00,1705.0,10.859,10859.0 +29908,2025-03-10T18:56:00.740207-07:00,1623.0,10.840539,10840.539 +29909,2025-03-10T18:56:11.592692-07:00,1698.0,10.852485,10852.485 +29910,2025-03-10T18:56:22.448574-07:00,1710.0,10.855882,10855.882 +29911,2025-03-10T18:56:33.303946-07:00,1703.0,10.855372,10855.372 +29912,2025-03-10T18:56:44.158694-07:00,1661.0,10.854748,10854.748 +29913,2025-03-10T18:56:55.010681-07:00,1695.0,10.851987,10851.987 +29914,2025-03-10T18:57:05.863945-07:00,1712.0,10.853264,10853.264 +29915,2025-03-10T18:57:16.722691-07:00,1694.0,10.858746,10858.746 +29916,2025-03-10T18:57:27.572684-07:00,1626.0,10.849993,10849.993 +29917,2025-03-10T18:57:38.431928-07:00,1690.0,10.859244,10859.244 +29918,2025-03-10T18:57:49.287541-07:00,1706.0,10.855613,10855.613 +29919,2025-03-10T18:58:00.137658-07:00,1713.0,10.850117,10850.117 +29920,2025-03-10T18:58:10.984278-07:00,1713.0,10.84662,10846.62 +29921,2025-03-10T18:58:21.828991-07:00,1711.0,10.844713,10844.713 +29922,2025-03-10T18:58:32.678343-07:00,1710.0,10.849352,10849.352 +29923,2025-03-10T18:58:43.526747-07:00,1669.0,10.848404,10848.404 +29924,2025-03-10T18:58:54.368247-07:00,1679.0,10.8415,10841.5 +29925,2025-03-10T18:59:05.221691-07:00,1679.0,10.853444,10853.444 +29926,2025-03-10T18:59:16.072774-07:00,1669.0,10.851083,10851.083 +29927,2025-03-10T18:59:26.922422-07:00,1635.0,10.849648,10849.648 +29928,2025-03-10T18:59:37.776227-07:00,1701.0,10.853805,10853.805 +29929,2025-03-10T18:59:48.623907-07:00,1680.0,10.84768,10847.68 +29930,2025-03-10T18:59:59.473036-07:00,1700.0,10.849129,10849.129 +29931,2025-03-10T19:00:10.321853-07:00,1679.0,10.848817,10848.817 +29932,2025-03-10T19:00:21.172444-07:00,1664.0,10.850591,10850.591 +29933,2025-03-10T19:00:32.021688-07:00,1665.0,10.849244,10849.244 +29934,2025-03-10T19:00:42.867820-07:00,1706.0,10.846132,10846.132 +29935,2025-03-10T19:00:53.724830-07:00,1712.0,10.85701,10857.01 +29936,2025-03-10T19:01:04.577857-07:00,1667.0,10.853027,10853.027 +29937,2025-03-10T19:01:15.429687-07:00,1700.0,10.85183,10851.83 +29938,2025-03-10T19:01:26.282686-07:00,1707.0,10.852999,10852.999 +29939,2025-03-10T19:01:37.127929-07:00,1709.0,10.845243,10845.243 +29940,2025-03-10T19:01:47.986690-07:00,1696.0,10.858761,10858.761 +29941,2025-03-10T19:01:58.834733-07:00,1685.0,10.848043,10848.043 +29942,2025-03-10T19:02:09.671846-07:00,1658.0,10.837113,10837.113 +29943,2025-03-10T19:02:20.526979-07:00,1619.0,10.855133,10855.133 +29944,2025-03-10T19:02:31.369922-07:00,1682.0,10.842943,10842.943 +29945,2025-03-10T19:02:42.216999-07:00,1651.0,10.847077,10847.077 +29946,2025-03-10T19:02:53.055914-07:00,1706.0,10.838915,10838.915 +29947,2025-03-10T19:03:03.902747-07:00,1710.0,10.846833,10846.833 +29948,2025-03-10T19:03:14.747299-07:00,1659.0,10.844552,10844.552 +29949,2025-03-10T19:03:25.589926-07:00,1703.0,10.842627,10842.627 +29950,2025-03-10T19:03:36.438980-07:00,1710.0,10.849054,10849.054 +29951,2025-03-10T19:03:47.280687-07:00,1618.0,10.841707,10841.707 +29952,2025-03-10T19:03:58.117960-07:00,1648.0,10.837273,10837.273 +29953,2025-03-10T19:04:08.965156-07:00,1706.0,10.847196,10847.196 +29954,2025-03-10T19:04:19.805818-07:00,1709.0,10.840662,10840.662 +29955,2025-03-10T19:04:30.648005-07:00,1706.0,10.842187,10842.187 +29956,2025-03-10T19:04:41.487030-07:00,1646.0,10.839025,10839.025 +29957,2025-03-10T19:04:52.332167-07:00,1661.0,10.845137,10845.137 +29958,2025-03-10T19:05:03.176689-07:00,1708.0,10.844522,10844.522 +29959,2025-03-10T19:05:14.022953-07:00,1700.0,10.846264,10846.264 +29960,2025-03-10T19:05:24.863884-07:00,1664.0,10.840931,10840.931 +29961,2025-03-10T19:05:35.708691-07:00,1680.0,10.844807,10844.807 +29962,2025-03-10T19:05:46.559205-07:00,1710.0,10.850514,10850.514 +29963,2025-03-10T19:05:57.445790-07:00,1699.0,10.886585,10886.585 +29964,2025-03-10T19:06:08.289894-07:00,1698.0,10.844104,10844.104 +29965,2025-03-10T19:06:19.126743-07:00,1672.0,10.836849,10836.849 +29966,2025-03-10T19:06:29.963719-07:00,1692.0,10.836976,10836.976 +29967,2025-03-10T19:06:40.809752-07:00,1673.0,10.846033,10846.033 +29968,2025-03-10T19:06:51.650168-07:00,1703.0,10.840416,10840.416 +29969,2025-03-10T19:07:02.501753-07:00,1695.0,10.851585,10851.585 +29970,2025-03-10T19:07:13.341160-07:00,1708.0,10.839407,10839.407 +29971,2025-03-10T19:07:24.179844-07:00,1627.0,10.838684,10838.684 +29972,2025-03-10T19:07:35.032024-07:00,1659.0,10.85218,10852.18 +29973,2025-03-10T19:07:45.865757-07:00,1680.0,10.833733,10833.733 +29974,2025-03-10T19:07:56.720135-07:00,1657.0,10.854378,10854.378 +29975,2025-03-10T19:08:07.559236-07:00,1655.0,10.839101,10839.101 +29976,2025-03-10T19:08:18.405545-07:00,1695.0,10.846309,10846.309 +29977,2025-03-10T19:08:29.252741-07:00,1675.0,10.847196,10847.196 +29978,2025-03-10T19:08:40.106726-07:00,1675.0,10.853985,10853.985 +29979,2025-03-10T19:08:50.951747-07:00,1709.0,10.845021,10845.021 +29980,2025-03-10T19:09:01.794748-07:00,1663.0,10.843001,10843.001 +29981,2025-03-10T19:09:12.638801-07:00,1708.0,10.844053,10844.053 +29982,2025-03-10T19:09:23.489186-07:00,1655.0,10.850385,10850.385 +29983,2025-03-10T19:09:34.327730-07:00,1617.0,10.838544,10838.544 +29984,2025-03-10T19:09:45.177750-07:00,1648.0,10.85002,10850.02 +29985,2025-03-10T19:09:56.011759-07:00,1697.0,10.834009,10834.009 +29986,2025-03-10T19:10:06.865005-07:00,1622.0,10.853246,10853.246 +29987,2025-03-10T19:10:17.709102-07:00,1692.0,10.844097,10844.097 +29988,2025-03-10T19:10:28.545004-07:00,1658.0,10.835902,10835.902 +29989,2025-03-10T19:10:39.388742-07:00,1627.0,10.843738,10843.738 +29990,2025-03-10T19:10:50.234591-07:00,1697.0,10.845849,10845.849 +29991,2025-03-10T19:11:01.084308-07:00,1640.0,10.849717,10849.717 +29992,2025-03-10T19:11:11.931059-07:00,1703.0,10.846751,10846.751 +29993,2025-03-10T19:11:22.774264-07:00,1710.0,10.843205,10843.205 +29994,2025-03-10T19:11:33.623746-07:00,1680.0,10.849482,10849.482 +29995,2025-03-10T19:11:44.480870-07:00,1680.0,10.857124,10857.124 +29996,2025-03-10T19:11:55.323754-07:00,1709.0,10.842884,10842.884 +29997,2025-03-10T19:12:06.171804-07:00,1657.0,10.84805,10848.05 +29998,2025-03-10T19:12:17.011163-07:00,1677.0,10.839359,10839.359 +29999,2025-03-10T19:12:27.866160-07:00,1655.0,10.854997,10854.997 +30000,2025-03-10T19:12:38.703051-07:00,1646.0,10.836891,10836.891 +30001,2025-03-10T19:12:49.548987-07:00,1645.0,10.845936,10845.936 +30002,2025-03-10T19:13:00.388997-07:00,1616.0,10.84001,10840.01 +30003,2025-03-10T19:13:11.238917-07:00,1710.0,10.84992,10849.92 +30004,2025-03-10T19:13:22.083736-07:00,1680.0,10.844819,10844.819 +30005,2025-03-10T19:13:32.939003-07:00,1671.0,10.855267,10855.267 +30006,2025-03-10T19:13:43.790069-07:00,1681.0,10.851066,10851.066 +30007,2025-03-10T19:13:54.631796-07:00,1671.0,10.841727,10841.727 +30008,2025-03-10T19:14:05.473747-07:00,1659.0,10.841951,10841.951 +30009,2025-03-10T19:14:16.325310-07:00,1685.0,10.851563,10851.563 +30010,2025-03-10T19:14:27.164951-07:00,1709.0,10.839641,10839.641 +30011,2025-03-10T19:14:38.018167-07:00,1636.0,10.853216,10853.216 +30012,2025-03-10T19:14:48.866577-07:00,1711.0,10.84841,10848.41 +30013,2025-03-10T19:14:59.704753-07:00,1607.0,10.838176,10838.176 +30014,2025-03-10T19:15:10.563070-07:00,1706.0,10.858317,10858.317 +30015,2025-03-10T19:15:21.401076-07:00,1706.0,10.838006,10838.006 +30016,2025-03-10T19:15:32.254033-07:00,1692.0,10.852957,10852.957 +30017,2025-03-10T19:15:43.096747-07:00,1615.0,10.842714,10842.714 +30018,2025-03-10T19:15:53.941088-07:00,1621.0,10.844341,10844.341 +30019,2025-03-10T19:16:04.796019-07:00,1706.0,10.854931,10854.931 +30020,2025-03-10T19:16:15.645022-07:00,1639.0,10.849003,10849.003 +30021,2025-03-10T19:16:26.487260-07:00,1707.0,10.842238,10842.238 +30022,2025-03-10T19:16:37.330811-07:00,1674.0,10.843551,10843.551 +30023,2025-03-10T19:16:48.173154-07:00,1680.0,10.842343,10842.343 +30024,2025-03-10T19:16:59.032004-07:00,1663.0,10.85885,10858.85 +30025,2025-03-10T19:17:09.878029-07:00,1618.0,10.846025,10846.025 +30026,2025-03-10T19:17:20.719549-07:00,1678.0,10.84152,10841.52 +30027,2025-03-10T19:17:31.568749-07:00,1689.0,10.8492,10849.2 +30028,2025-03-10T19:17:42.404928-07:00,1659.0,10.836179,10836.179 +30029,2025-03-10T19:17:53.259789-07:00,1701.0,10.854861,10854.861 +30030,2025-03-10T19:18:04.100759-07:00,1709.0,10.84097,10840.97 +30031,2025-03-10T19:18:14.949073-07:00,1666.0,10.848314,10848.314 +30032,2025-03-10T19:18:25.789785-07:00,1659.0,10.840712,10840.712 +30033,2025-03-10T19:18:36.643941-07:00,1709.0,10.854156,10854.156 +30034,2025-03-10T19:18:47.488953-07:00,1662.0,10.845012,10845.012 +30035,2025-03-10T19:18:58.326754-07:00,1667.0,10.837801,10837.801 +30036,2025-03-10T19:19:09.181879-07:00,1648.0,10.855125,10855.125 +30037,2025-03-10T19:19:20.022059-07:00,1702.0,10.84018,10840.18 +30038,2025-03-10T19:19:30.870491-07:00,1705.0,10.848432,10848.432 +30039,2025-03-10T19:19:41.713269-07:00,1621.0,10.842778,10842.778 +30040,2025-03-10T19:19:52.554806-07:00,1687.0,10.841537,10841.537 +30041,2025-03-10T19:20:03.400749-07:00,1706.0,10.845943,10845.943 +30042,2025-03-10T19:20:14.244065-07:00,1706.0,10.843316,10843.316 +30043,2025-03-10T19:20:25.097103-07:00,1627.0,10.853038,10853.038 +30044,2025-03-10T19:20:35.938749-07:00,1680.0,10.841646,10841.646 +30045,2025-03-10T19:20:46.782806-07:00,1703.0,10.844057,10844.057 +30046,2025-03-10T19:20:57.621817-07:00,1703.0,10.839011,10839.011 +30047,2025-03-10T19:21:08.473434-07:00,1651.0,10.851617,10851.617 +30048,2025-03-10T19:21:19.312993-07:00,1703.0,10.839559,10839.559 +30049,2025-03-10T19:21:30.151945-07:00,1703.0,10.838952,10838.952 +30050,2025-03-10T19:21:40.999389-07:00,1675.0,10.847444,10847.444 +30051,2025-03-10T19:21:51.839198-07:00,1664.0,10.839809,10839.809 +30052,2025-03-10T19:22:02.685053-07:00,1658.0,10.845855,10845.855 +30053,2025-03-10T19:22:13.528122-07:00,1675.0,10.843069,10843.069 +30054,2025-03-10T19:22:24.377749-07:00,1703.0,10.849627,10849.627 +30055,2025-03-10T19:22:35.215735-07:00,1629.0,10.837986,10837.986 +30056,2025-03-10T19:22:46.058161-07:00,1671.0,10.842426,10842.426 +30057,2025-03-10T19:22:56.908006-07:00,1661.0,10.849845,10849.845 +30058,2025-03-10T19:23:07.750512-07:00,1706.0,10.842506,10842.506 +30059,2025-03-10T19:23:18.597753-07:00,1707.0,10.847241,10847.241 +30060,2025-03-10T19:23:29.453403-07:00,1654.0,10.85565,10855.65 +30061,2025-03-10T19:23:40.296970-07:00,1648.0,10.843567,10843.567 +30062,2025-03-10T19:23:51.146032-07:00,1648.0,10.849062,10849.062 +30063,2025-03-10T19:24:02.000743-07:00,1681.0,10.854711,10854.711 +30064,2025-03-10T19:24:12.844786-07:00,1618.0,10.844043,10844.043 +30065,2025-03-10T19:24:23.697869-07:00,1663.0,10.853083,10853.083 +30066,2025-03-10T19:24:34.545104-07:00,1707.0,10.847235,10847.235 +30067,2025-03-10T19:24:45.392990-07:00,1668.0,10.847886,10847.886 +30068,2025-03-10T19:24:56.245178-07:00,1611.0,10.852188,10852.188 +30069,2025-03-10T19:25:07.086753-07:00,1707.0,10.841575,10841.575 +30070,2025-03-10T19:25:17.935749-07:00,1703.0,10.848996,10848.996 +30071,2025-03-10T19:25:28.785816-07:00,1639.0,10.850067,10850.067 +30072,2025-03-10T19:25:39.639143-07:00,1695.0,10.853327,10853.327 +30073,2025-03-10T19:25:50.482084-07:00,1681.0,10.842941,10842.941 +30074,2025-03-10T19:26:01.320739-07:00,1683.0,10.838655,10838.655 +30075,2025-03-10T19:26:12.165751-07:00,1693.0,10.845012,10845.012 +30076,2025-03-10T19:26:23.012890-07:00,1661.0,10.847139,10847.139 +30077,2025-03-10T19:26:33.863753-07:00,1687.0,10.850863,10850.863 +30078,2025-03-10T19:26:44.709803-07:00,1697.0,10.84605,10846.05 +30079,2025-03-10T19:26:55.560071-07:00,1691.0,10.850268,10850.268 +30080,2025-03-10T19:27:06.390750-07:00,1628.0,10.830679,10830.679 +30081,2025-03-10T19:27:17.237725-07:00,1662.0,10.846975,10846.975 +30082,2025-03-10T19:27:28.081754-07:00,1677.0,10.844029,10844.029 +30083,2025-03-10T19:27:38.919888-07:00,1660.0,10.838134,10838.134 +30084,2025-03-10T19:27:49.755722-07:00,1649.0,10.835834,10835.834 +30085,2025-03-10T19:28:00.598471-07:00,1655.0,10.842749,10842.749 +30086,2025-03-10T19:28:11.435473-07:00,1705.0,10.837002,10837.002 +30087,2025-03-10T19:28:22.280855-07:00,1696.0,10.845382,10845.382 +30088,2025-03-10T19:28:33.127676-07:00,1689.0,10.846821,10846.821 +30089,2025-03-10T19:28:43.971759-07:00,1648.0,10.844083,10844.083 +30090,2025-03-10T19:28:54.814996-07:00,1618.0,10.843237,10843.237 +30091,2025-03-10T19:29:05.658748-07:00,1693.0,10.843752,10843.752 +30092,2025-03-10T19:29:16.499660-07:00,1664.0,10.840912,10840.912 +30093,2025-03-10T19:29:27.337051-07:00,1659.0,10.837391,10837.391 +30094,2025-03-10T19:29:38.183121-07:00,1649.0,10.84607,10846.07 +30095,2025-03-10T19:29:49.025804-07:00,1683.0,10.842683,10842.683 +30096,2025-03-10T19:29:59.862039-07:00,1615.0,10.836235,10836.235 +30097,2025-03-10T19:30:10.702804-07:00,1677.0,10.840765,10840.765 +30098,2025-03-10T19:30:21.552752-07:00,1703.0,10.849948,10849.948 +30099,2025-03-10T19:30:32.389223-07:00,1672.0,10.836471,10836.471 +30100,2025-03-10T19:30:43.228748-07:00,1694.0,10.839525,10839.525 +30101,2025-03-10T19:30:54.078743-07:00,1702.0,10.849995,10849.995 +30102,2025-03-10T19:31:04.926968-07:00,1666.0,10.848225,10848.225 +30103,2025-03-10T19:31:15.763907-07:00,1655.0,10.836939,10836.939 +30104,2025-03-10T19:31:26.607969-07:00,1661.0,10.844062,10844.062 +30105,2025-03-10T19:31:37.454954-07:00,1703.0,10.846985,10846.985 +30106,2025-03-10T19:31:48.296817-07:00,1633.0,10.841863,10841.863 +30107,2025-03-10T19:31:59.142992-07:00,1707.0,10.846175,10846.175 +30108,2025-03-10T19:32:09.989612-07:00,1641.0,10.84662,10846.62 +30109,2025-03-10T19:32:20.841005-07:00,1649.0,10.851393,10851.393 +30110,2025-03-10T19:32:31.682567-07:00,1697.0,10.841562,10841.562 +30111,2025-03-10T19:32:42.520263-07:00,1703.0,10.837696,10837.696 +30112,2025-03-10T19:32:53.373098-07:00,1697.0,10.852835,10852.835 +30113,2025-03-10T19:33:04.212435-07:00,1703.0,10.839337,10839.337 +30114,2025-03-10T19:33:15.067752-07:00,1676.0,10.855317,10855.317 +30115,2025-03-10T19:33:25.910896-07:00,1705.0,10.843144,10843.144 +30116,2025-03-10T19:33:36.751874-07:00,1692.0,10.840978,10840.978 +30117,2025-03-10T19:33:47.588980-07:00,1681.0,10.837106,10837.106 +30118,2025-03-10T19:33:58.429146-07:00,1620.0,10.840166,10840.166 +30119,2025-03-10T19:34:09.282754-07:00,1656.0,10.853608,10853.608 +30120,2025-03-10T19:34:20.120498-07:00,1707.0,10.837744,10837.744 +30121,2025-03-10T19:34:30.959746-07:00,1662.0,10.839248,10839.248 +30122,2025-03-10T19:34:41.801747-07:00,1654.0,10.842001,10842.001 +30123,2025-03-10T19:34:52.643753-07:00,1679.0,10.842006,10842.006 +30124,2025-03-10T19:35:03.496751-07:00,1702.0,10.852998,10852.998 +30125,2025-03-10T19:35:14.346072-07:00,1617.0,10.849321,10849.321 +30126,2025-03-10T19:35:25.189066-07:00,1629.0,10.842994,10842.994 +30127,2025-03-10T19:35:36.033794-07:00,1693.0,10.844728,10844.728 +30128,2025-03-10T19:35:46.886738-07:00,1693.0,10.852944,10852.944 +30129,2025-03-10T19:35:57.734994-07:00,1710.0,10.848256,10848.256 +30130,2025-03-10T19:36:08.571675-07:00,1631.0,10.836681,10836.681 +30131,2025-03-10T19:36:19.420804-07:00,1629.0,10.849129,10849.129 +30132,2025-03-10T19:36:30.264748-07:00,1686.0,10.843944,10843.944 +30133,2025-03-10T19:36:41.118748-07:00,1709.0,10.854,10854.0 +30134,2025-03-10T19:36:51.956823-07:00,1703.0,10.838075,10838.075 +30135,2025-03-10T19:37:02.799860-07:00,1689.0,10.843037,10843.037 +30136,2025-03-10T19:37:13.643039-07:00,1699.0,10.843179,10843.179 +30137,2025-03-10T19:37:24.486958-07:00,1703.0,10.843919,10843.919 +30138,2025-03-10T19:37:35.329806-07:00,1648.0,10.842848,10842.848 +30139,2025-03-10T19:37:46.172425-07:00,1655.0,10.842619,10842.619 +30140,2025-03-10T19:37:57.016213-07:00,1685.0,10.843788,10843.788 +30141,2025-03-10T19:38:07.862059-07:00,1660.0,10.845846,10845.846 +30142,2025-03-10T19:38:18.712880-07:00,1655.0,10.850821,10850.821 +30143,2025-03-10T19:38:29.556411-07:00,1709.0,10.843531,10843.531 +30144,2025-03-10T19:38:40.408728-07:00,1630.0,10.852317,10852.317 +30145,2025-03-10T19:38:51.247757-07:00,1639.0,10.839029,10839.029 +30146,2025-03-10T19:39:02.083354-07:00,1616.0,10.835597,10835.597 +30147,2025-03-10T19:39:12.917863-07:00,1690.0,10.834509,10834.509 +30148,2025-03-10T19:39:23.760096-07:00,1661.0,10.842233,10842.233 +30149,2025-03-10T19:39:34.603141-07:00,1618.0,10.843045,10843.045 +30150,2025-03-10T19:39:45.446207-07:00,1693.0,10.843066,10843.066 +30151,2025-03-10T19:39:56.283819-07:00,1654.0,10.837612,10837.612 +30152,2025-03-10T19:40:07.126792-07:00,1620.0,10.842973,10842.973 +30153,2025-03-10T19:40:17.964725-07:00,1701.0,10.837933,10837.933 +30154,2025-03-10T19:40:28.816023-07:00,1651.0,10.851298,10851.298 +30155,2025-03-10T19:40:39.662800-07:00,1623.0,10.846777,10846.777 +30156,2025-03-10T19:40:50.506463-07:00,1709.0,10.843663,10843.663 +30157,2025-03-10T19:41:01.352740-07:00,1695.0,10.846277,10846.277 +30158,2025-03-10T19:41:12.192015-07:00,1707.0,10.839275,10839.275 +30159,2025-03-10T19:41:23.040533-07:00,1654.0,10.848518,10848.518 +30160,2025-03-10T19:41:33.883749-07:00,1697.0,10.843216,10843.216 +30161,2025-03-10T19:41:44.716841-07:00,1630.0,10.833092,10833.092 +30162,2025-03-10T19:41:55.566750-07:00,1706.0,10.849909,10849.909 +30163,2025-03-10T19:42:06.411871-07:00,1663.0,10.845121,10845.121 +30164,2025-03-10T19:42:17.250080-07:00,1627.0,10.838209,10838.209 +30165,2025-03-10T19:42:28.094747-07:00,1661.0,10.844667,10844.667 +30166,2025-03-10T19:42:38.942001-07:00,1664.0,10.847254,10847.254 +30167,2025-03-10T19:42:49.779122-07:00,1706.0,10.837121,10837.121 +30168,2025-03-10T19:43:00.622090-07:00,1696.0,10.842968,10842.968 +30169,2025-03-10T19:43:11.470746-07:00,1636.0,10.848656,10848.656 +30170,2025-03-10T19:43:22.313513-07:00,1683.0,10.842767,10842.767 +30171,2025-03-10T19:43:33.161748-07:00,1697.0,10.848235,10848.235 +30172,2025-03-10T19:43:43.995019-07:00,1650.0,10.833271,10833.271 +30173,2025-03-10T19:43:54.838379-07:00,1669.0,10.84336,10843.36 +30174,2025-03-10T19:44:05.691822-07:00,1657.0,10.853443,10853.443 +30175,2025-03-10T19:44:16.529743-07:00,1703.0,10.837921,10837.921 +30176,2025-03-10T19:44:27.367227-07:00,1707.0,10.837484,10837.484 +30177,2025-03-10T19:44:38.214967-07:00,1618.0,10.84774,10847.74 +30178,2025-03-10T19:44:49.058748-07:00,1708.0,10.843781,10843.781 +30179,2025-03-10T19:44:59.906750-07:00,1694.0,10.848002,10848.002 +30180,2025-03-10T19:45:10.750730-07:00,1706.0,10.84398,10843.98 +30181,2025-03-10T19:45:21.607726-07:00,1697.0,10.856996,10856.996 +30182,2025-03-10T19:45:32.447824-07:00,1702.0,10.840098,10840.098 +30183,2025-03-10T19:45:43.298970-07:00,1664.0,10.851146,10851.146 +30184,2025-03-10T19:45:54.145278-07:00,1703.0,10.846308,10846.308 +30185,2025-03-10T19:46:04.994813-07:00,1702.0,10.849535,10849.535 +30186,2025-03-10T19:46:15.831991-07:00,1675.0,10.837178,10837.178 +30187,2025-03-10T19:46:26.676748-07:00,1669.0,10.844757,10844.757 +30188,2025-03-10T19:46:37.523987-07:00,1706.0,10.847239,10847.239 +30189,2025-03-10T19:46:48.369197-07:00,1667.0,10.84521,10845.21 +30190,2025-03-10T19:46:59.208759-07:00,1698.0,10.839562,10839.562 +30191,2025-03-10T19:47:10.053796-07:00,1705.0,10.845037,10845.037 +30192,2025-03-10T19:47:20.900893-07:00,1673.0,10.847097,10847.097 +30193,2025-03-10T19:47:31.735090-07:00,1610.0,10.834197,10834.197 +30194,2025-03-10T19:47:42.588018-07:00,1663.0,10.852928,10852.928 +30195,2025-03-10T19:47:53.425745-07:00,1709.0,10.837727,10837.727 +30196,2025-03-10T19:48:04.277058-07:00,1680.0,10.851313,10851.313 +30197,2025-03-10T19:48:15.120172-07:00,1683.0,10.843114,10843.114 +30198,2025-03-10T19:48:25.971971-07:00,1683.0,10.851799,10851.799 +30199,2025-03-10T19:48:36.815166-07:00,1664.0,10.843195,10843.195 +30200,2025-03-10T19:48:47.658381-07:00,1663.0,10.843215,10843.215 +30201,2025-03-10T19:48:58.494754-07:00,1653.0,10.836373,10836.373 +30202,2025-03-10T19:49:09.334495-07:00,1707.0,10.839741,10839.741 +30203,2025-03-10T19:49:20.176065-07:00,1663.0,10.84157,10841.57 +30204,2025-03-10T19:49:31.018963-07:00,1685.0,10.842898,10842.898 +30205,2025-03-10T19:49:41.863747-07:00,1647.0,10.844784,10844.784 +30206,2025-03-10T19:49:52.705808-07:00,1667.0,10.842061,10842.061 +30207,2025-03-10T19:50:03.553227-07:00,1712.0,10.847419,10847.419 +30208,2025-03-10T19:50:14.399239-07:00,1696.0,10.846012,10846.012 +30209,2025-03-10T19:50:25.240748-07:00,1628.0,10.841509,10841.509 +30210,2025-03-10T19:50:36.088749-07:00,1711.0,10.848001,10848.001 +30211,2025-03-10T19:50:46.932747-07:00,1706.0,10.843998,10843.998 +30212,2025-03-10T19:50:57.774749-07:00,1677.0,10.842002,10842.002 +30213,2025-03-10T19:51:08.619053-07:00,1655.0,10.844304,10844.304 +30214,2025-03-10T19:51:19.454955-07:00,1625.0,10.835902,10835.902 +30215,2025-03-10T19:51:30.306843-07:00,1635.0,10.851888,10851.888 +30216,2025-03-10T19:51:41.142292-07:00,1664.0,10.835449,10835.449 +30217,2025-03-10T19:51:51.991103-07:00,1661.0,10.848811,10848.811 +30218,2025-03-10T19:52:02.834426-07:00,1681.0,10.843323,10843.323 +30219,2025-03-10T19:52:13.682752-07:00,1655.0,10.848326,10848.326 +30220,2025-03-10T19:52:24.537749-07:00,1702.0,10.854997,10854.997 +30221,2025-03-10T19:52:35.375747-07:00,1695.0,10.837998,10837.998 +30222,2025-03-10T19:52:46.227755-07:00,1654.0,10.852008,10852.008 +30223,2025-03-10T19:52:57.079976-07:00,1708.0,10.852221,10852.221 +30224,2025-03-10T19:53:07.925898-07:00,1616.0,10.845922,10845.922 +30225,2025-03-10T19:53:18.770158-07:00,1610.0,10.84426,10844.26 +30226,2025-03-10T19:53:29.610753-07:00,1631.0,10.840595,10840.595 +30227,2025-03-10T19:53:40.457724-07:00,1707.0,10.846971,10846.971 +30228,2025-03-10T19:53:51.304026-07:00,1622.0,10.846302,10846.302 +30229,2025-03-10T19:54:02.159748-07:00,1648.0,10.855722,10855.722 +30230,2025-03-10T19:54:13.008761-07:00,1642.0,10.849013,10849.013 +30231,2025-03-10T19:54:23.845072-07:00,1643.0,10.836311,10836.311 +30232,2025-03-10T19:54:34.687730-07:00,1708.0,10.842658,10842.658 +30233,2025-03-10T19:54:45.532750-07:00,1650.0,10.84502,10845.02 +30234,2025-03-10T19:54:56.376322-07:00,1617.0,10.843572,10843.572 +30235,2025-03-10T19:55:07.221910-07:00,1672.0,10.845588,10845.588 +30236,2025-03-10T19:55:18.077995-07:00,1675.0,10.856085,10856.085 +30237,2025-03-10T19:55:28.920065-07:00,1708.0,10.84207,10842.07 +30238,2025-03-10T19:55:39.773010-07:00,1648.0,10.852945,10852.945 +30239,2025-03-10T19:55:50.614744-07:00,1648.0,10.841734,10841.734 +30240,2025-03-10T19:56:01.456806-07:00,1687.0,10.842062,10842.062 +30241,2025-03-10T19:56:12.305760-07:00,1708.0,10.848954,10848.954 +30242,2025-03-10T19:56:23.144183-07:00,1662.0,10.838423,10838.423 +30243,2025-03-10T19:56:33.984748-07:00,1669.0,10.840565,10840.565 +30244,2025-03-10T19:56:44.839743-07:00,1702.0,10.854995,10854.995 +30245,2025-03-10T19:56:55.686745-07:00,1652.0,10.847002,10847.002 +30246,2025-03-10T19:57:06.533374-07:00,1665.0,10.846629,10846.629 +30247,2025-03-10T19:57:17.376753-07:00,1703.0,10.843379,10843.379 +30248,2025-03-10T19:57:28.224799-07:00,1621.0,10.848046,10848.046 +30249,2025-03-10T19:57:39.068703-07:00,1697.0,10.843904,10843.904 +30250,2025-03-10T19:57:49.916907-07:00,1697.0,10.848204,10848.204 +30251,2025-03-10T19:58:00.753038-07:00,1652.0,10.836131,10836.131 +30252,2025-03-10T19:58:11.602754-07:00,1698.0,10.849716,10849.716 +30253,2025-03-10T19:58:22.446327-07:00,1675.0,10.843573,10843.573 +30254,2025-03-10T19:58:33.288178-07:00,1698.0,10.841851,10841.851 +30255,2025-03-10T19:58:44.129753-07:00,1708.0,10.841575,10841.575 +30256,2025-03-10T19:58:54.972754-07:00,1707.0,10.843001,10843.001 +30257,2025-03-10T19:59:05.816834-07:00,1677.0,10.84408,10844.08 +30258,2025-03-10T19:59:16.665031-07:00,1631.0,10.848197,10848.197 +30259,2025-03-10T19:59:27.515348-07:00,1663.0,10.850317,10850.317 +30260,2025-03-10T19:59:38.358804-07:00,1663.0,10.843456,10843.456 +30261,2025-03-10T19:59:49.199003-07:00,1615.0,10.840199,10840.199 +30262,2025-03-10T20:00:00.044748-07:00,1615.0,10.845745,10845.745 +30263,2025-03-10T20:00:10.901661-07:00,1661.0,10.856913,10856.913 +30264,2025-03-10T20:00:21.755827-07:00,1694.0,10.854166,10854.166 +30265,2025-03-10T20:00:32.602088-07:00,1659.0,10.846261,10846.261 +30266,2025-03-10T20:00:43.445909-07:00,1630.0,10.843821,10843.821 +30267,2025-03-10T20:00:54.294393-07:00,1637.0,10.848484,10848.484 +30268,2025-03-10T20:01:05.144953-07:00,1695.0,10.85056,10850.56 +30269,2025-03-10T20:01:16.003145-07:00,1609.0,10.858192,10858.192 +30270,2025-03-10T20:01:26.847745-07:00,1696.0,10.8446,10844.6 +30271,2025-03-10T20:01:37.700838-07:00,1710.0,10.853093,10853.093 +30272,2025-03-10T20:01:48.550751-07:00,1712.0,10.849913,10849.913 +30273,2025-03-10T20:01:59.396752-07:00,1677.0,10.846001,10846.001 +30274,2025-03-10T20:02:10.247726-07:00,1657.0,10.850974,10850.974 +30275,2025-03-10T20:02:21.096888-07:00,1707.0,10.849162,10849.162 +30276,2025-03-10T20:02:31.939036-07:00,1664.0,10.842148,10842.148 +30277,2025-03-10T20:02:42.792094-07:00,1711.0,10.853058,10853.058 +30278,2025-03-10T20:02:53.638803-07:00,1651.0,10.846709,10846.709 +30279,2025-03-10T20:03:04.502262-07:00,1643.0,10.863459,10863.459 +30280,2025-03-10T20:03:15.344956-07:00,1709.0,10.842694,10842.694 +30281,2025-03-10T20:03:26.193747-07:00,1611.0,10.848791,10848.791 +30282,2025-03-10T20:03:37.046746-07:00,1651.0,10.852999,10852.999 +30283,2025-03-10T20:03:47.897751-07:00,1707.0,10.851005,10851.005 +30284,2025-03-10T20:03:58.746752-07:00,1619.0,10.849001,10849.001 +30285,2025-03-10T20:04:09.598878-07:00,1705.0,10.852126,10852.126 +30286,2025-03-10T20:04:20.453744-07:00,1648.0,10.854866,10854.866 +30287,2025-03-10T20:04:31.300837-07:00,1691.0,10.847093,10847.093 +30288,2025-03-10T20:04:42.158750-07:00,1701.0,10.857913,10857.913 +30289,2025-03-10T20:04:53.008349-07:00,1690.0,10.849599,10849.599 +30290,2025-03-10T20:05:03.856102-07:00,1695.0,10.847753,10847.753 +30291,2025-03-10T20:05:14.700873-07:00,1680.0,10.844771,10844.771 +30292,2025-03-10T20:05:25.553235-07:00,1649.0,10.852362,10852.362 +30293,2025-03-10T20:05:36.405702-07:00,1699.0,10.852467,10852.467 +30294,2025-03-10T20:05:47.292127-07:00,1685.0,10.886425,10886.425 +30295,2025-03-10T20:05:58.139979-07:00,1696.0,10.847852,10847.852 +30296,2025-03-10T20:06:08.995124-07:00,1695.0,10.855145,10855.145 +30297,2025-03-10T20:06:19.850749-07:00,1707.0,10.855625,10855.625 +30298,2025-03-10T20:06:30.703978-07:00,1652.0,10.853229,10853.229 +30299,2025-03-10T20:06:41.552213-07:00,1666.0,10.848235,10848.235 +30300,2025-03-10T20:06:52.412040-07:00,1709.0,10.859827,10859.827 +30301,2025-03-10T20:07:03.262703-07:00,1643.0,10.850663,10850.663 +30302,2025-03-10T20:07:14.110275-07:00,1661.0,10.847572,10847.572 +30303,2025-03-10T20:07:24.957981-07:00,1627.0,10.847706,10847.706 +30304,2025-03-10T20:07:35.812044-07:00,1678.0,10.854063,10854.063 +30305,2025-03-10T20:07:46.660996-07:00,1619.0,10.848952,10848.952 +30306,2025-03-10T20:07:57.506028-07:00,1626.0,10.845032,10845.032 +30307,2025-03-10T20:08:08.361995-07:00,1663.0,10.855967,10855.967 +30308,2025-03-10T20:08:19.208638-07:00,1648.0,10.846643,10846.643 +30309,2025-03-10T20:08:30.064256-07:00,1700.0,10.855618,10855.618 +30310,2025-03-10T20:08:40.907322-07:00,1711.0,10.843066,10843.066 +30311,2025-03-10T20:08:51.748991-07:00,1663.0,10.841669,10841.669 +30312,2025-03-10T20:09:02.599513-07:00,1707.0,10.850522,10850.522 +30313,2025-03-10T20:09:13.435380-07:00,1657.0,10.835867,10835.867 +30314,2025-03-10T20:09:24.288640-07:00,1706.0,10.85326,10853.26 +30315,2025-03-10T20:09:35.133245-07:00,1709.0,10.844605,10844.605 +30316,2025-03-10T20:09:45.975256-07:00,1703.0,10.842011,10842.011 +30317,2025-03-10T20:09:56.825244-07:00,1700.0,10.849988,10849.988 +30318,2025-03-10T20:10:07.669145-07:00,1708.0,10.843901,10843.901 +30319,2025-03-10T20:10:18.523996-07:00,1706.0,10.854851,10854.851 +30320,2025-03-10T20:10:29.364282-07:00,1702.0,10.840286,10840.286 +30321,2025-03-10T20:10:40.210144-07:00,1707.0,10.845862,10845.862 +30322,2025-03-10T20:10:51.063609-07:00,1680.0,10.853465,10853.465 +30323,2025-03-10T20:11:01.919527-07:00,1711.0,10.855918,10855.918 +30324,2025-03-10T20:11:12.768169-07:00,1691.0,10.848642,10848.642 +30325,2025-03-10T20:11:23.610035-07:00,1645.0,10.841866,10841.866 +30326,2025-03-10T20:11:34.452202-07:00,1670.0,10.842167,10842.167 +30327,2025-03-10T20:11:45.297322-07:00,1620.0,10.84512,10845.12 +30328,2025-03-10T20:11:56.146231-07:00,1707.0,10.848909,10848.909 +30329,2025-03-10T20:12:06.982113-07:00,1671.0,10.835882,10835.882 +30330,2025-03-10T20:12:17.832228-07:00,1710.0,10.850115,10850.115 +30331,2025-03-10T20:12:28.673990-07:00,1697.0,10.841762,10841.762 +30332,2025-03-10T20:12:39.519222-07:00,1683.0,10.845232,10845.232 +30333,2025-03-10T20:12:50.358250-07:00,1633.0,10.839028,10839.028 +30334,2025-03-10T20:13:01.199043-07:00,1675.0,10.840793,10840.793 +30335,2025-03-10T20:13:12.042124-07:00,1666.0,10.843081,10843.081 +30336,2025-03-10T20:13:22.891369-07:00,1707.0,10.849245,10849.245 +30337,2025-03-10T20:13:33.738303-07:00,1710.0,10.846934,10846.934 +30338,2025-03-10T20:13:44.594330-07:00,1639.0,10.856027,10856.027 +30339,2025-03-10T20:13:55.428987-07:00,1701.0,10.834657,10834.657 +30340,2025-03-10T20:14:06.272994-07:00,1620.0,10.844007,10844.007 +30341,2025-03-10T20:14:17.110317-07:00,1667.0,10.837323,10837.323 +30342,2025-03-10T20:14:27.954280-07:00,1648.0,10.843963,10843.963 +30343,2025-03-10T20:14:38.804522-07:00,1698.0,10.850242,10850.242 +30344,2025-03-10T20:14:49.650011-07:00,1648.0,10.845489,10845.489 +30345,2025-03-10T20:15:00.497487-07:00,1654.0,10.847476,10847.476 +30346,2025-03-10T20:15:11.332462-07:00,1710.0,10.834975,10834.975 +30347,2025-03-10T20:15:22.176153-07:00,1706.0,10.843691,10843.691 +30348,2025-03-10T20:15:33.019792-07:00,1661.0,10.843639,10843.639 +30349,2025-03-10T20:15:43.874994-07:00,1702.0,10.855202,10855.202 +30350,2025-03-10T20:15:54.718991-07:00,1711.0,10.843997,10843.997 +30351,2025-03-10T20:16:05.564276-07:00,1669.0,10.845285,10845.285 +30352,2025-03-10T20:16:16.412994-07:00,1709.0,10.848718,10848.718 +30353,2025-03-10T20:16:27.261995-07:00,1617.0,10.849001,10849.001 +30354,2025-03-10T20:16:38.106472-07:00,1668.0,10.844477,10844.477 +30355,2025-03-10T20:16:48.941990-07:00,1712.0,10.835518,10835.518 +30356,2025-03-10T20:16:59.795591-07:00,1712.0,10.853601,10853.601 +30357,2025-03-10T20:17:10.636104-07:00,1709.0,10.840513,10840.513 +30358,2025-03-10T20:17:21.489542-07:00,1712.0,10.853438,10853.438 +30359,2025-03-10T20:17:32.327321-07:00,1682.0,10.837779,10837.779 +30360,2025-03-10T20:17:43.170989-07:00,1711.0,10.843668,10843.668 +30361,2025-03-10T20:17:54.022991-07:00,1709.0,10.852002,10852.002 +30362,2025-03-10T20:18:01.739478-07:00,1622.0,7.716487,7716.487 +30363,2025-03-10T20:18:04.873050-07:00,1677.0,3.133572,3133.572 +30364,2025-03-10T20:18:15.714985-07:00,1661.0,10.841935,10841.935 +30365,2025-03-10T20:18:26.559994-07:00,1664.0,10.845009,10845.009 +30366,2025-03-10T20:18:37.407100-07:00,1657.0,10.847106,10847.106 +30367,2025-03-10T20:18:48.251827-07:00,1648.0,10.844727,10844.727 +30368,2025-03-10T20:18:59.100452-07:00,1695.0,10.848625,10848.625 +30369,2025-03-10T20:19:09.943703-07:00,1710.0,10.843251,10843.251 +30370,2025-03-10T20:19:20.782002-07:00,1696.0,10.838299,10838.299 +30371,2025-03-10T20:19:31.624338-07:00,1701.0,10.842336,10842.336 +30372,2025-03-10T20:19:42.460110-07:00,1698.0,10.835772,10835.772 +30373,2025-03-10T20:19:53.301498-07:00,1634.0,10.841388,10841.388 +30374,2025-03-10T20:20:04.144183-07:00,1711.0,10.842685,10842.685 +30375,2025-03-10T20:20:14.990564-07:00,1616.0,10.846381,10846.381 +30376,2025-03-10T20:20:25.841409-07:00,1618.0,10.850845,10850.845 +30377,2025-03-10T20:20:36.683494-07:00,1673.0,10.842085,10842.085 +30378,2025-03-10T20:20:47.524990-07:00,1711.0,10.841496,10841.496 +30379,2025-03-10T20:20:58.374119-07:00,1706.0,10.849129,10849.129 +30380,2025-03-10T20:21:09.217326-07:00,1711.0,10.843207,10843.207 +30381,2025-03-10T20:21:20.052968-07:00,1700.0,10.835642,10835.642 +30382,2025-03-10T20:21:30.901987-07:00,1711.0,10.849019,10849.019 +30383,2025-03-10T20:21:41.752988-07:00,1662.0,10.851001,10851.001 +30384,2025-03-10T20:21:52.586303-07:00,1617.0,10.833315,10833.315 +30385,2025-03-10T20:22:03.435608-07:00,1710.0,10.849305,10849.305 +30386,2025-03-10T20:22:14.282836-07:00,1683.0,10.847228,10847.228 +30387,2025-03-10T20:22:25.125999-07:00,1698.0,10.843163,10843.163 +30388,2025-03-10T20:22:35.962517-07:00,1682.0,10.836518,10836.518 +30389,2025-03-10T20:22:46.805491-07:00,1663.0,10.842974,10842.974 +30390,2025-03-10T20:22:57.654824-07:00,1711.0,10.849333,10849.333 +30391,2025-03-10T20:23:08.501785-07:00,1710.0,10.846961,10846.961 +30392,2025-03-10T20:23:19.343200-07:00,1708.0,10.841415,10841.415 +30393,2025-03-10T20:23:30.186900-07:00,1607.0,10.8437,10843.7 +30394,2025-03-10T20:23:41.024229-07:00,1668.0,10.837329,10837.329 +30395,2025-03-10T20:23:51.862141-07:00,1687.0,10.837912,10837.912 +30396,2025-03-10T20:24:02.706665-07:00,1691.0,10.844524,10844.524 +30397,2025-03-10T20:24:13.549996-07:00,1695.0,10.843331,10843.331 +30398,2025-03-10T20:24:24.388106-07:00,1708.0,10.83811,10838.11 +30399,2025-03-10T20:24:35.230192-07:00,1663.0,10.842086,10842.086 +30400,2025-03-10T20:24:46.075963-07:00,1639.0,10.845771,10845.771 +30401,2025-03-10T20:24:56.920099-07:00,1709.0,10.844136,10844.136 +30402,2025-03-10T20:25:07.770994-07:00,1711.0,10.850895,10850.895 +30403,2025-03-10T20:25:18.614480-07:00,1694.0,10.843486,10843.486 +30404,2025-03-10T20:25:29.463253-07:00,1657.0,10.848773,10848.773 +30405,2025-03-10T20:25:40.305044-07:00,1701.0,10.841791,10841.791 +30406,2025-03-10T20:25:51.138978-07:00,1685.0,10.833934,10833.934 +30407,2025-03-10T20:26:01.993131-07:00,1705.0,10.854153,10854.153 +30408,2025-03-10T20:26:12.831490-07:00,1654.0,10.838359,10838.359 +30409,2025-03-10T20:26:23.666985-07:00,1701.0,10.835495,10835.495 +30410,2025-03-10T20:26:34.509198-07:00,1694.0,10.842213,10842.213 +30411,2025-03-10T20:26:45.347988-07:00,1685.0,10.83879,10838.79 +30412,2025-03-10T20:26:56.180046-07:00,1698.0,10.832058,10832.058 +30413,2025-03-10T20:27:07.028985-07:00,1675.0,10.848939,10848.939 +30414,2025-03-10T20:27:17.875082-07:00,1666.0,10.846097,10846.097 +30415,2025-03-10T20:27:28.709537-07:00,1669.0,10.834455,10834.455 +30416,2025-03-10T20:27:39.552983-07:00,1664.0,10.843446,10843.446 +30417,2025-03-10T20:27:50.390995-07:00,1677.0,10.838012,10838.012 +30418,2025-03-10T20:28:01.232994-07:00,1664.0,10.841999,10841.999 +30419,2025-03-10T20:28:12.082227-07:00,1697.0,10.849233,10849.233 +30420,2025-03-10T20:28:22.924311-07:00,1699.0,10.842084,10842.084 +30421,2025-03-10T20:28:33.773481-07:00,1695.0,10.84917,10849.17 +30422,2025-03-10T20:28:44.611635-07:00,1667.0,10.838154,10838.154 +30423,2025-03-10T20:28:55.457997-07:00,1687.0,10.846362,10846.362 +30424,2025-03-10T20:29:06.301564-07:00,1645.0,10.843567,10843.567 +30425,2025-03-10T20:29:17.140991-07:00,1697.0,10.839427,10839.427 +30426,2025-03-10T20:29:27.981042-07:00,1650.0,10.840051,10840.051 +30427,2025-03-10T20:29:38.816995-07:00,1707.0,10.835953,10835.953 +30428,2025-03-10T20:29:49.659336-07:00,1697.0,10.842341,10842.341 +30429,2025-03-10T20:30:00.512084-07:00,1709.0,10.852748,10852.748 +30430,2025-03-10T20:30:11.354961-07:00,1710.0,10.842877,10842.877 +30431,2025-03-10T20:30:22.203987-07:00,1618.0,10.849026,10849.026 +30432,2025-03-10T20:30:33.041989-07:00,1676.0,10.838002,10838.002 +30433,2025-03-10T20:30:43.885165-07:00,1691.0,10.843176,10843.176 +30434,2025-03-10T20:30:54.721243-07:00,1649.0,10.836078,10836.078 +30435,2025-03-10T20:31:05.559248-07:00,1681.0,10.838005,10838.005 +30436,2025-03-10T20:31:16.407993-07:00,1655.0,10.848745,10848.745 +30437,2025-03-10T20:31:27.250273-07:00,1699.0,10.84228,10842.28 +30438,2025-03-10T20:31:38.087983-07:00,1709.0,10.83771,10837.71 +30439,2025-03-10T20:31:48.926207-07:00,1663.0,10.838224,10838.224 +30440,2025-03-10T20:31:59.769369-07:00,1712.0,10.843162,10843.162 +30441,2025-03-10T20:32:10.618725-07:00,1712.0,10.849356,10849.356 +30442,2025-03-10T20:32:21.461134-07:00,1650.0,10.842409,10842.409 +30443,2025-03-10T20:32:32.302995-07:00,1711.0,10.841861,10841.861 +30444,2025-03-10T20:32:43.152985-07:00,1631.0,10.84999,10849.99 +30445,2025-03-10T20:32:53.995138-07:00,1666.0,10.842153,10842.153 +30446,2025-03-10T20:33:04.836317-07:00,1698.0,10.841179,10841.179 +30447,2025-03-10T20:33:15.682038-07:00,1706.0,10.845721,10845.721 +30448,2025-03-10T20:33:26.525030-07:00,1706.0,10.842992,10842.992 +30449,2025-03-10T20:33:37.370230-07:00,1711.0,10.8452,10845.2 +30450,2025-03-10T20:33:48.207797-07:00,1679.0,10.837567,10837.567 +30451,2025-03-10T20:33:59.045994-07:00,1712.0,10.838197,10838.197 +30452,2025-03-10T20:34:09.890985-07:00,1664.0,10.844991,10844.991 +30453,2025-03-10T20:34:20.725063-07:00,1709.0,10.834078,10834.078 +30454,2025-03-10T20:34:31.567393-07:00,1699.0,10.84233,10842.33 +30455,2025-03-10T20:34:42.409985-07:00,1636.0,10.842592,10842.592 +30456,2025-03-10T20:34:53.248125-07:00,1711.0,10.83814,10838.14 +30457,2025-03-10T20:35:04.094268-07:00,1689.0,10.846143,10846.143 +30458,2025-03-10T20:35:14.934353-07:00,1626.0,10.840085,10840.085 +30459,2025-03-10T20:35:25.772219-07:00,1635.0,10.837866,10837.866 +30460,2025-03-10T20:35:36.624042-07:00,1699.0,10.851823,10851.823 +30461,2025-03-10T20:35:47.457982-07:00,1695.0,10.83394,10833.94 +30462,2025-03-10T20:35:58.295038-07:00,1679.0,10.837056,10837.056 +30463,2025-03-10T20:36:09.142994-07:00,1709.0,10.847956,10847.956 +30464,2025-03-10T20:36:19.986962-07:00,1712.0,10.843968,10843.968 +30465,2025-03-10T20:36:30.828299-07:00,1621.0,10.841337,10841.337 +30466,2025-03-10T20:36:41.654987-07:00,1660.0,10.826688,10826.688 +30467,2025-03-10T20:36:52.497985-07:00,1709.0,10.842998,10842.998 +30468,2025-03-10T20:37:03.341990-07:00,1698.0,10.844005,10844.005 +30469,2025-03-10T20:37:14.192147-07:00,1619.0,10.850157,10850.157 +30470,2025-03-10T20:37:25.031151-07:00,1649.0,10.839004,10839.004 +30471,2025-03-10T20:37:35.876332-07:00,1667.0,10.845181,10845.181 +30472,2025-03-10T20:37:46.717989-07:00,1711.0,10.841657,10841.657 +30473,2025-03-10T20:37:57.558358-07:00,1710.0,10.840369,10840.369 +30474,2025-03-10T20:38:08.398114-07:00,1700.0,10.839756,10839.756 +30475,2025-03-10T20:38:19.230989-07:00,1667.0,10.832875,10832.875 +30476,2025-03-10T20:38:30.069997-07:00,1680.0,10.839008,10839.008 +30477,2025-03-10T20:38:40.917254-07:00,1709.0,10.847257,10847.257 +30478,2025-03-10T20:38:51.746181-07:00,1654.0,10.828927,10828.927 +30479,2025-03-10T20:39:02.592242-07:00,1665.0,10.846061,10846.061 +30480,2025-03-10T20:39:13.424332-07:00,1703.0,10.83209,10832.09 +30481,2025-03-10T20:39:24.265998-07:00,1661.0,10.841666,10841.666 +30482,2025-03-10T20:39:35.109968-07:00,1701.0,10.84397,10843.97 +30483,2025-03-10T20:39:45.954042-07:00,1653.0,10.844074,10844.074 +30484,2025-03-10T20:39:56.797564-07:00,1701.0,10.843522,10843.522 +30485,2025-03-10T20:40:07.647303-07:00,1670.0,10.849739,10849.739 +30486,2025-03-10T20:40:18.480995-07:00,1698.0,10.833692,10833.692 +30487,2025-03-10T20:40:29.327311-07:00,1644.0,10.846316,10846.316 +30488,2025-03-10T20:40:40.163671-07:00,1669.0,10.83636,10836.36 +30489,2025-03-10T20:40:51.005430-07:00,1707.0,10.841759,10841.759 +30490,2025-03-10T20:41:01.855046-07:00,1680.0,10.849616,10849.616 +30491,2025-03-10T20:41:12.692462-07:00,1710.0,10.837416,10837.416 +30492,2025-03-10T20:41:23.540133-07:00,1702.0,10.847671,10847.671 +30493,2025-03-10T20:41:34.383584-07:00,1655.0,10.843451,10843.451 +30494,2025-03-10T20:41:45.220985-07:00,1616.0,10.837401,10837.401 +30495,2025-03-10T20:41:56.059051-07:00,1710.0,10.838066,10838.066 +30496,2025-03-10T20:42:06.902477-07:00,1687.0,10.843426,10843.426 +30497,2025-03-10T20:42:17.730062-07:00,1690.0,10.827585,10827.585 +30498,2025-03-10T20:42:28.568190-07:00,1648.0,10.838128,10838.128 +30499,2025-03-10T20:42:39.410281-07:00,1696.0,10.842091,10842.091 +30500,2025-03-10T20:42:50.246967-07:00,1708.0,10.836686,10836.686 +30501,2025-03-10T20:43:01.083985-07:00,1682.0,10.837018,10837.018 +30502,2025-03-10T20:43:11.933039-07:00,1659.0,10.849054,10849.054 +30503,2025-03-10T20:43:22.764989-07:00,1648.0,10.83195,10831.95 +30504,2025-03-10T20:43:33.601926-07:00,1647.0,10.836937,10836.937 +30505,2025-03-10T20:43:44.444983-07:00,1661.0,10.843057,10843.057 +30506,2025-03-10T20:43:55.294372-07:00,1713.0,10.849389,10849.389 +30507,2025-03-10T20:44:06.132088-07:00,1672.0,10.837716,10837.716 +30508,2025-03-10T20:44:16.973989-07:00,1654.0,10.841901,10841.901 +30509,2025-03-10T20:44:27.817993-07:00,1681.0,10.844004,10844.004 +30510,2025-03-10T20:44:38.661312-07:00,1711.0,10.843319,10843.319 +30511,2025-03-10T20:44:49.502974-07:00,1685.0,10.841662,10841.662 +30512,2025-03-10T20:45:00.340990-07:00,1687.0,10.838016,10838.016 +30513,2025-03-10T20:45:11.189987-07:00,1631.0,10.848997,10848.997 +30514,2025-03-10T20:45:22.032139-07:00,1667.0,10.842152,10842.152 +30515,2025-03-10T20:45:32.873342-07:00,1659.0,10.841203,10841.203 +30516,2025-03-10T20:45:43.719981-07:00,1634.0,10.846639,10846.639 +30517,2025-03-10T20:45:54.555159-07:00,1681.0,10.835178,10835.178 +30518,2025-03-10T20:46:05.399999-07:00,1649.0,10.84484,10844.84 +30519,2025-03-10T20:46:16.238027-07:00,1698.0,10.838028,10838.028 +30520,2025-03-10T20:46:27.074990-07:00,1667.0,10.836963,10836.963 +30521,2025-03-10T20:46:37.910995-07:00,1711.0,10.836005,10836.005 +30522,2025-03-10T20:46:48.761156-07:00,1627.0,10.850161,10850.161 +30523,2025-03-10T20:46:59.586990-07:00,1698.0,10.825834,10825.834 +30524,2025-03-10T20:47:10.430238-07:00,1709.0,10.843248,10843.248 +30525,2025-03-10T20:47:21.273340-07:00,1710.0,10.843102,10843.102 +30526,2025-03-10T20:47:32.121706-07:00,1707.0,10.848366,10848.366 +30527,2025-03-10T20:47:42.964990-07:00,1662.0,10.843284,10843.284 +30528,2025-03-10T20:47:53.800995-07:00,1699.0,10.836005,10836.005 +30529,2025-03-10T20:48:04.644030-07:00,1615.0,10.843035,10843.035 +30530,2025-03-10T20:48:15.493164-07:00,1627.0,10.849134,10849.134 +30531,2025-03-10T20:48:26.332322-07:00,1667.0,10.839158,10839.158 +30532,2025-03-10T20:48:37.168991-07:00,1669.0,10.836669,10836.669 +30533,2025-03-10T20:48:48.017209-07:00,1698.0,10.848218,10848.218 +30534,2025-03-10T20:48:58.855312-07:00,1680.0,10.838103,10838.103 +30535,2025-03-10T20:49:09.697990-07:00,1709.0,10.842678,10842.678 +30536,2025-03-10T20:49:20.539046-07:00,1683.0,10.841056,10841.056 +30537,2025-03-10T20:49:31.377996-07:00,1711.0,10.83895,10838.95 +30538,2025-03-10T20:49:42.223602-07:00,1667.0,10.845606,10845.606 +30539,2025-03-10T20:49:53.065032-07:00,1709.0,10.84143,10841.43 +30540,2025-03-10T20:50:03.902118-07:00,1665.0,10.837086,10837.086 +30541,2025-03-10T20:50:14.752991-07:00,1664.0,10.850873,10850.873 +30542,2025-03-10T20:50:25.595326-07:00,1709.0,10.842335,10842.335 +30543,2025-03-10T20:50:36.443251-07:00,1662.0,10.847925,10847.925 +30544,2025-03-10T20:50:47.277988-07:00,1689.0,10.834737,10834.737 +30545,2025-03-10T20:50:58.117986-07:00,1638.0,10.839998,10839.998 +30546,2025-03-10T20:51:08.969999-07:00,1670.0,10.852013,10852.013 +30547,2025-03-10T20:51:19.809253-07:00,1709.0,10.839254,10839.254 +30548,2025-03-10T20:51:30.658877-07:00,1680.0,10.849624,10849.624 +30549,2025-03-10T20:51:41.500962-07:00,1679.0,10.842085,10842.085 +30550,2025-03-10T20:51:52.339365-07:00,1650.0,10.838403,10838.403 +30551,2025-03-10T20:52:03.181334-07:00,1709.0,10.841969,10841.969 +30552,2025-03-10T20:52:14.026616-07:00,1619.0,10.845282,10845.282 +30553,2025-03-10T20:52:24.868251-07:00,1699.0,10.841635,10841.635 +30554,2025-03-10T20:52:35.702987-07:00,1707.0,10.834736,10834.736 +30555,2025-03-10T20:52:46.543328-07:00,1629.0,10.840341,10840.341 +30556,2025-03-10T20:52:57.392249-07:00,1675.0,10.848921,10848.921 +30557,2025-03-10T20:53:08.235568-07:00,1680.0,10.843319,10843.319 +30558,2025-03-10T20:53:19.072224-07:00,1669.0,10.836656,10836.656 +30559,2025-03-10T20:53:29.916439-07:00,1706.0,10.844215,10844.215 +30560,2025-03-10T20:53:40.752995-07:00,1656.0,10.836556,10836.556 +30561,2025-03-10T20:53:51.600555-07:00,1686.0,10.84756,10847.56 +30562,2025-03-10T20:54:02.442990-07:00,1709.0,10.842435,10842.435 +30563,2025-03-10T20:54:13.283997-07:00,1707.0,10.841007,10841.007 +30564,2025-03-10T20:54:24.127317-07:00,1655.0,10.84332,10843.32 +30565,2025-03-10T20:54:34.963498-07:00,1655.0,10.836181,10836.181 +30566,2025-03-10T20:54:45.799250-07:00,1629.0,10.835752,10835.752 +30567,2025-03-10T20:54:56.638539-07:00,1658.0,10.839289,10839.289 +30568,2025-03-10T20:55:07.475987-07:00,1651.0,10.837448,10837.448 +30569,2025-03-10T20:55:18.316994-07:00,1707.0,10.841007,10841.007 +30570,2025-03-10T20:55:29.155551-07:00,1623.0,10.838557,10838.557 +30571,2025-03-10T20:55:39.995140-07:00,1680.0,10.839589,10839.589 +30572,2025-03-10T20:55:50.832160-07:00,1680.0,10.83702,10837.02 +30573,2025-03-10T20:56:01.667377-07:00,1711.0,10.835217,10835.217 +30574,2025-03-10T20:56:12.505135-07:00,1710.0,10.837758,10837.758 +30575,2025-03-10T20:56:23.346994-07:00,1702.0,10.841859,10841.859 +30576,2025-03-10T20:56:34.186995-07:00,1699.0,10.840001,10840.001 +30577,2025-03-10T20:56:45.030109-07:00,1696.0,10.843114,10843.114 +30578,2025-03-10T20:56:55.866361-07:00,1648.0,10.836252,10836.252 +30579,2025-03-10T20:57:06.708993-07:00,1665.0,10.842632,10842.632 +30580,2025-03-10T20:57:17.552578-07:00,1685.0,10.843585,10843.585 +30581,2025-03-10T20:57:28.381994-07:00,1696.0,10.829416,10829.416 +30582,2025-03-10T20:57:39.226934-07:00,1642.0,10.84494,10844.94 +30583,2025-03-10T20:57:50.063279-07:00,1665.0,10.836345,10836.345 +30584,2025-03-10T20:58:00.912342-07:00,1652.0,10.849063,10849.063 +30585,2025-03-10T20:58:11.752065-07:00,1691.0,10.839723,10839.723 +30586,2025-03-10T20:58:22.598994-07:00,1709.0,10.846929,10846.929 +30587,2025-03-10T20:58:33.445997-07:00,1662.0,10.847003,10847.003 +30588,2025-03-10T20:58:44.288316-07:00,1708.0,10.842319,10842.319 +30589,2025-03-10T20:58:55.128505-07:00,1633.0,10.840189,10840.189 +30590,2025-03-10T20:59:05.967990-07:00,1705.0,10.839485,10839.485 +30591,2025-03-10T20:59:16.814235-07:00,1662.0,10.846245,10846.245 +30592,2025-03-10T20:59:27.654138-07:00,1623.0,10.839903,10839.903 +30593,2025-03-10T20:59:38.488094-07:00,1694.0,10.833956,10833.956 +30594,2025-03-10T20:59:49.333022-07:00,1709.0,10.844928,10844.928 +30595,2025-03-10T21:00:00.181234-07:00,1685.0,10.848212,10848.212 +30596,2025-03-10T21:00:11.019339-07:00,1710.0,10.838105,10838.105 +30597,2025-03-10T21:00:21.862345-07:00,1654.0,10.843006,10843.006 +30598,2025-03-10T21:00:32.711184-07:00,1623.0,10.848839,10848.839 +30599,2025-03-10T21:00:43.558995-07:00,1621.0,10.847811,10847.811 +30600,2025-03-10T21:00:54.408979-07:00,1657.0,10.849984,10849.984 +30601,2025-03-10T21:01:05.253234-07:00,1626.0,10.844255,10844.255 +30602,2025-03-10T21:01:16.104995-07:00,1659.0,10.851761,10851.761 +30603,2025-03-10T21:01:26.953232-07:00,1618.0,10.848237,10848.237 +30604,2025-03-10T21:01:37.790170-07:00,1641.0,10.836938,10836.938 +30605,2025-03-10T21:01:48.641068-07:00,1651.0,10.850898,10850.898 +30606,2025-03-10T21:01:59.478988-07:00,1687.0,10.83792,10837.92 +30607,2025-03-10T21:02:10.327042-07:00,1652.0,10.848054,10848.054 +30608,2025-03-10T21:02:21.177991-07:00,1702.0,10.850949,10850.949 +30609,2025-03-10T21:02:32.024459-07:00,1665.0,10.846468,10846.468 +30610,2025-03-10T21:02:42.874764-07:00,1636.0,10.850305,10850.305 +30611,2025-03-10T21:02:53.715967-07:00,1619.0,10.841203,10841.203 +30612,2025-03-10T21:03:04.569972-07:00,1616.0,10.854005,10854.005 +30613,2025-03-10T21:03:15.413995-07:00,1662.0,10.844023,10844.023 +30614,2025-03-10T21:03:26.262994-07:00,1682.0,10.848999,10848.999 +30615,2025-03-10T21:03:37.106141-07:00,1679.0,10.843147,10843.147 +30616,2025-03-10T21:03:47.950282-07:00,1674.0,10.844141,10844.141 +30617,2025-03-10T21:03:58.804292-07:00,1666.0,10.85401,10854.01 +30618,2025-03-10T21:04:09.644033-07:00,1709.0,10.839741,10839.741 +30619,2025-03-10T21:04:20.500039-07:00,1693.0,10.856006,10856.006 +30620,2025-03-10T21:04:31.347144-07:00,1642.0,10.847105,10847.105 +30621,2025-03-10T21:04:42.194052-07:00,1627.0,10.846908,10846.908 +30622,2025-03-10T21:04:53.026457-07:00,1619.0,10.832405,10832.405 +30623,2025-03-10T21:05:03.874125-07:00,1648.0,10.847668,10847.668 +30624,2025-03-10T21:05:14.721040-07:00,1706.0,10.846915,10846.915 +30625,2025-03-10T21:05:25.566228-07:00,1661.0,10.845188,10845.188 +30626,2025-03-10T21:05:36.424999-07:00,1650.0,10.858771,10858.771 +30627,2025-03-10T21:05:47.287668-07:00,1661.0,10.862669,10862.669 +30628,2025-03-10T21:05:58.136576-07:00,1649.0,10.848908,10848.908 +30629,2025-03-10T21:06:08.981531-07:00,1670.0,10.844955,10844.955 +30630,2025-03-10T21:06:19.838807-07:00,1707.0,10.857276,10857.276 +30631,2025-03-10T21:06:30.677288-07:00,1691.0,10.838481,10838.481 +30632,2025-03-10T21:06:41.530039-07:00,1691.0,10.852751,10852.751 +30633,2025-03-10T21:06:52.384934-07:00,1703.0,10.854895,10854.895 +30634,2025-03-10T21:07:03.233613-07:00,1703.0,10.848679,10848.679 +30635,2025-03-10T21:07:14.078531-07:00,1681.0,10.844918,10844.918 +30636,2025-03-10T21:07:24.927815-07:00,1694.0,10.849284,10849.284 +30637,2025-03-10T21:07:35.786859-07:00,1703.0,10.859044,10859.044 +30638,2025-03-10T21:07:46.634583-07:00,1659.0,10.847724,10847.724 +30639,2025-03-10T21:07:57.478815-07:00,1655.0,10.844232,10844.232 +30640,2025-03-10T21:08:08.337591-07:00,1683.0,10.858776,10858.776 +30641,2025-03-10T21:08:19.184865-07:00,1663.0,10.847274,10847.274 +30642,2025-03-10T21:08:30.035898-07:00,1706.0,10.851033,10851.033 +30643,2025-03-10T21:08:40.890869-07:00,1646.0,10.854971,10854.971 +30644,2025-03-10T21:08:51.744919-07:00,1651.0,10.85405,10854.05 +30645,2025-03-10T21:09:02.592454-07:00,1671.0,10.847535,10847.535 +30646,2025-03-10T21:09:13.442772-07:00,1617.0,10.850318,10850.318 +30647,2025-03-10T21:09:24.295795-07:00,1634.0,10.853023,10853.023 +30648,2025-03-10T21:09:35.144760-07:00,1702.0,10.848965,10848.965 +30649,2025-03-10T21:09:45.988525-07:00,1696.0,10.843765,10843.765 +30650,2025-03-10T21:09:56.836775-07:00,1711.0,10.84825,10848.25 +30651,2025-03-10T21:10:07.688531-07:00,1708.0,10.851756,10851.756 +30652,2025-03-10T21:10:18.537769-07:00,1647.0,10.849238,10849.238 +30653,2025-03-10T21:10:29.388524-07:00,1626.0,10.850755,10850.755 +30654,2025-03-10T21:10:40.228176-07:00,1615.0,10.839652,10839.652 +30655,2025-03-10T21:10:51.067757-07:00,1687.0,10.839581,10839.581 +30656,2025-03-10T21:11:01.921387-07:00,1650.0,10.85363,10853.63 +30657,2025-03-10T21:11:12.760528-07:00,1645.0,10.839141,10839.141 +30658,2025-03-10T21:11:23.610448-07:00,1657.0,10.84992,10849.92 +30659,2025-03-10T21:11:34.458921-07:00,1667.0,10.848473,10848.473 +30660,2025-03-10T21:11:45.312995-07:00,1663.0,10.854074,10854.074 +30661,2025-03-10T21:11:56.157976-07:00,1630.0,10.844981,10844.981 +30662,2025-03-10T21:12:07.004516-07:00,1687.0,10.84654,10846.54 +30663,2025-03-10T21:12:17.852531-07:00,1616.0,10.848015,10848.015 +30664,2025-03-10T21:12:28.697528-07:00,1661.0,10.844997,10844.997 +30665,2025-03-10T21:12:39.544900-07:00,1662.0,10.847372,10847.372 +30666,2025-03-10T21:12:50.389521-07:00,1710.0,10.844621,10844.621 +30667,2025-03-10T21:13:01.241720-07:00,1701.0,10.852199,10852.199 +30668,2025-03-10T21:13:12.086712-07:00,1677.0,10.844992,10844.992 +30669,2025-03-10T21:13:22.934734-07:00,1661.0,10.848022,10848.022 +30670,2025-03-10T21:13:33.790711-07:00,1663.0,10.855977,10855.977 +30671,2025-03-10T21:13:44.631759-07:00,1680.0,10.841048,10841.048 +30672,2025-03-10T21:13:55.486528-07:00,1691.0,10.854769,10854.769 +30673,2025-03-10T21:14:06.333529-07:00,1701.0,10.847001,10847.001 +30674,2025-03-10T21:14:17.185707-07:00,1694.0,10.852178,10852.178 +30675,2025-03-10T21:14:28.034531-07:00,1707.0,10.848824,10848.824 +30676,2025-03-10T21:14:38.883120-07:00,1618.0,10.848589,10848.589 +30677,2025-03-10T21:14:49.723402-07:00,1709.0,10.840282,10840.282 +30678,2025-03-10T21:15:00.566768-07:00,1655.0,10.843366,10843.366 +30679,2025-03-10T21:15:11.406503-07:00,1684.0,10.839735,10839.735 +30680,2025-03-10T21:15:22.252673-07:00,1680.0,10.84617,10846.17 +30681,2025-03-10T21:15:33.096817-07:00,1685.0,10.844144,10844.144 +30682,2025-03-10T21:15:43.953842-07:00,1661.0,10.857025,10857.025 +30683,2025-03-10T21:15:54.802513-07:00,1666.0,10.848671,10848.671 +30684,2025-03-10T21:16:05.645528-07:00,1638.0,10.843015,10843.015 +30685,2025-03-10T21:16:16.493672-07:00,1669.0,10.848144,10848.144 +30686,2025-03-10T21:16:27.333654-07:00,1625.0,10.839982,10839.982 +30687,2025-03-10T21:16:38.184832-07:00,1703.0,10.851178,10851.178 +30688,2025-03-10T21:16:49.038760-07:00,1626.0,10.853928,10853.928 +30689,2025-03-10T21:16:59.886913-07:00,1701.0,10.848153,10848.153 +30690,2025-03-10T21:17:10.731818-07:00,1655.0,10.844905,10844.905 +30691,2025-03-10T21:17:21.573519-07:00,1665.0,10.841701,10841.701 +30692,2025-03-10T21:17:32.422834-07:00,1677.0,10.849315,10849.315 +30693,2025-03-10T21:17:43.274112-07:00,1682.0,10.851278,10851.278 +30694,2025-03-10T21:17:54.120792-07:00,1623.0,10.84668,10846.68 +30695,2025-03-10T21:18:04.969324-07:00,1654.0,10.848532,10848.532 +30696,2025-03-10T21:18:15.812963-07:00,1674.0,10.843639,10843.639 +30697,2025-03-10T21:18:26.661275-07:00,1695.0,10.848312,10848.312 +30698,2025-03-10T21:18:37.509731-07:00,1703.0,10.848456,10848.456 +30699,2025-03-10T21:18:48.348530-07:00,1703.0,10.838799,10838.799 +30700,2025-03-10T21:18:59.195759-07:00,1619.0,10.847229,10847.229 +30701,2025-03-10T21:19:10.039170-07:00,1681.0,10.843411,10843.411 +30702,2025-03-10T21:19:20.891958-07:00,1698.0,10.852788,10852.788 +30703,2025-03-10T21:19:31.737906-07:00,1660.0,10.845948,10845.948 +30704,2025-03-10T21:19:42.585529-07:00,1654.0,10.847623,10847.623 +30705,2025-03-10T21:19:53.428527-07:00,1695.0,10.842998,10842.998 +30706,2025-03-10T21:20:04.283723-07:00,1664.0,10.855196,10855.196 +30707,2025-03-10T21:20:15.126802-07:00,1702.0,10.843079,10843.079 +30708,2025-03-10T21:20:25.981514-07:00,1705.0,10.854712,10854.712 +30709,2025-03-10T21:20:36.836923-07:00,1662.0,10.855409,10855.409 +30710,2025-03-10T21:20:47.672826-07:00,1655.0,10.835903,10835.903 +30711,2025-03-10T21:20:58.526880-07:00,1708.0,10.854054,10854.054 +30712,2025-03-10T21:21:09.367523-07:00,1649.0,10.840643,10840.643 +30713,2025-03-10T21:21:20.216562-07:00,1694.0,10.849039,10849.039 +30714,2025-03-10T21:21:31.068779-07:00,1677.0,10.852217,10852.217 +30715,2025-03-10T21:21:41.910747-07:00,1648.0,10.841968,10841.968 +30716,2025-03-10T21:21:52.771516-07:00,1680.0,10.860769,10860.769 +30717,2025-03-10T21:22:03.619532-07:00,1616.0,10.848016,10848.016 +30718,2025-03-10T21:22:14.467887-07:00,1649.0,10.848355,10848.355 +30719,2025-03-10T21:22:25.318116-07:00,1657.0,10.850229,10850.229 +30720,2025-03-10T21:22:36.173897-07:00,1646.0,10.855781,10855.781 +30721,2025-03-10T21:22:47.014648-07:00,1706.0,10.840751,10840.751 +30722,2025-03-10T21:22:57.863524-07:00,1616.0,10.848876,10848.876 +30723,2025-03-10T21:23:08.718533-07:00,1702.0,10.855009,10855.009 +30724,2025-03-10T21:23:19.565915-07:00,1701.0,10.847382,10847.382 +30725,2025-03-10T21:23:29.020449-07:00,1669.0,9.454534,9454.534 +30726,2025-03-10T21:23:30.420590-07:00,1706.0,1.400141,1400.141 +30727,2025-03-10T21:23:41.270700-07:00,1619.0,10.85011,10850.11 +30728,2025-03-10T21:23:52.106583-07:00,1707.0,10.835883,10835.883 +30729,2025-03-10T21:24:02.955649-07:00,1670.0,10.849066,10849.066 +30730,2025-03-10T21:24:13.802893-07:00,1697.0,10.847244,10847.244 +30731,2025-03-10T21:24:24.659812-07:00,1680.0,10.856919,10856.919 +30732,2025-03-10T21:24:35.506980-07:00,1618.0,10.847168,10847.168 +30733,2025-03-10T21:24:46.351523-07:00,1692.0,10.844543,10844.543 +30734,2025-03-10T21:24:57.200934-07:00,1616.0,10.849411,10849.411 +30735,2025-03-10T21:25:08.054246-07:00,1627.0,10.853312,10853.312 +30736,2025-03-10T21:25:18.908757-07:00,1653.0,10.854511,10854.511 +30737,2025-03-10T21:25:29.758513-07:00,1701.0,10.849756,10849.756 +30738,2025-03-10T21:25:40.601568-07:00,1684.0,10.843055,10843.055 +30739,2025-03-10T21:25:51.461535-07:00,1691.0,10.859967,10859.967 +30740,2025-03-10T21:26:02.307140-07:00,1680.0,10.845605,10845.605 +30741,2025-03-10T21:26:13.158873-07:00,1650.0,10.851733,10851.733 +30742,2025-03-10T21:26:24.012804-07:00,1649.0,10.853931,10853.931 +30743,2025-03-10T21:26:34.868567-07:00,1665.0,10.855763,10855.763 +30744,2025-03-10T21:26:45.719934-07:00,1648.0,10.851367,10851.367 +30745,2025-03-10T21:26:56.564812-07:00,1663.0,10.844878,10844.878 +30746,2025-03-10T21:27:07.419558-07:00,1623.0,10.854746,10854.746 +30747,2025-03-10T21:27:18.267659-07:00,1661.0,10.848101,10848.101 +30748,2025-03-10T21:27:29.115749-07:00,1658.0,10.84809,10848.09 +30749,2025-03-10T21:27:39.958524-07:00,1637.0,10.842775,10842.775 +30750,2025-03-10T21:27:50.812669-07:00,1660.0,10.854145,10854.145 +30751,2025-03-10T21:28:01.652548-07:00,1658.0,10.839879,10839.879 +30752,2025-03-10T21:28:12.501906-07:00,1699.0,10.849358,10849.358 +30753,2025-03-10T21:28:23.345738-07:00,1615.0,10.843832,10843.832 +30754,2025-03-10T21:28:34.198454-07:00,1665.0,10.852716,10852.716 +30755,2025-03-10T21:28:45.051815-07:00,1605.0,10.853361,10853.361 +30756,2025-03-10T21:28:55.901578-07:00,1693.0,10.849763,10849.763 +30757,2025-03-10T21:29:06.756595-07:00,1705.0,10.855017,10855.017 +30758,2025-03-10T21:29:17.603583-07:00,1631.0,10.846988,10846.988 +30759,2025-03-10T21:29:28.458525-07:00,1706.0,10.854942,10854.942 +30760,2025-03-10T21:29:39.301077-07:00,1616.0,10.842552,10842.552 +30761,2025-03-10T21:29:50.152503-07:00,1663.0,10.851426,10851.426 +30762,2025-03-10T21:30:01.006224-07:00,1702.0,10.853721,10853.721 +30763,2025-03-10T21:30:11.853885-07:00,1648.0,10.847661,10847.661 +30764,2025-03-10T21:30:22.702660-07:00,1703.0,10.848775,10848.775 +30765,2025-03-10T21:30:33.553275-07:00,1676.0,10.850615,10850.615 +30766,2025-03-10T21:30:44.400577-07:00,1633.0,10.847302,10847.302 +30767,2025-03-10T21:30:55.242921-07:00,1694.0,10.842344,10842.344 +30768,2025-03-10T21:31:06.101571-07:00,1705.0,10.85865,10858.65 +30769,2025-03-10T21:31:16.947525-07:00,1706.0,10.845954,10845.954 +30770,2025-03-10T21:31:27.796574-07:00,1616.0,10.849049,10849.049 +30771,2025-03-10T21:31:38.642856-07:00,1707.0,10.846282,10846.282 +30772,2025-03-10T21:31:49.481405-07:00,1614.0,10.838549,10838.549 +30773,2025-03-10T21:32:00.336671-07:00,1666.0,10.855266,10855.266 +30774,2025-03-10T21:32:11.187846-07:00,1686.0,10.851175,10851.175 +30775,2025-03-10T21:32:22.029518-07:00,1703.0,10.841672,10841.672 +30776,2025-03-10T21:32:32.881739-07:00,1702.0,10.852221,10852.221 +30777,2025-03-10T21:32:43.725759-07:00,1627.0,10.84402,10844.02 +30778,2025-03-10T21:32:54.568884-07:00,1705.0,10.843125,10843.125 +30779,2025-03-10T21:33:05.408530-07:00,1705.0,10.839646,10839.646 +30780,2025-03-10T21:33:16.266792-07:00,1657.0,10.858262,10858.262 +30781,2025-03-10T21:33:27.121019-07:00,1702.0,10.854227,10854.227 +30782,2025-03-10T21:33:37.968517-07:00,1666.0,10.847498,10847.498 +30783,2025-03-10T21:33:48.815525-07:00,1654.0,10.847008,10847.008 +30784,2025-03-10T21:33:59.658525-07:00,1703.0,10.843,10843.0 +30785,2025-03-10T21:34:10.499701-07:00,1664.0,10.841176,10841.176 +30786,2025-03-10T21:34:21.348069-07:00,1680.0,10.848368,10848.368 +30787,2025-03-10T21:34:32.190861-07:00,1707.0,10.842792,10842.792 +30788,2025-03-10T21:34:43.032224-07:00,1706.0,10.841363,10841.363 +30789,2025-03-10T21:34:53.878857-07:00,1702.0,10.846633,10846.633 +30790,2025-03-10T21:35:04.732058-07:00,1687.0,10.853201,10853.201 +30791,2025-03-10T21:35:15.574857-07:00,1649.0,10.842799,10842.799 +30792,2025-03-10T21:35:26.425122-07:00,1695.0,10.850265,10850.265 +30793,2025-03-10T21:35:37.271247-07:00,1661.0,10.846125,10846.125 +30794,2025-03-10T21:35:48.109771-07:00,1709.0,10.838524,10838.524 +30795,2025-03-10T21:35:58.963530-07:00,1661.0,10.853759,10853.759 +30796,2025-03-10T21:36:09.799059-07:00,1690.0,10.835529,10835.529 +30797,2025-03-10T21:36:20.639678-07:00,1690.0,10.840619,10840.619 +30798,2025-03-10T21:36:31.480742-07:00,1703.0,10.841064,10841.064 +30799,2025-03-10T21:36:42.329508-07:00,1708.0,10.848766,10848.766 +30800,2025-03-10T21:36:53.171780-07:00,1629.0,10.842272,10842.272 +30801,2025-03-10T21:37:04.012817-07:00,1698.0,10.841037,10841.037 +30802,2025-03-10T21:37:14.859226-07:00,1703.0,10.846409,10846.409 +30803,2025-03-10T21:37:25.713423-07:00,1687.0,10.854197,10854.197 +30804,2025-03-10T21:37:36.562516-07:00,1616.0,10.849093,10849.093 +30805,2025-03-10T21:37:47.409529-07:00,1707.0,10.847013,10847.013 +30806,2025-03-10T21:37:58.255681-07:00,1706.0,10.846152,10846.152 +30807,2025-03-10T21:38:09.110083-07:00,1658.0,10.854402,10854.402 +30808,2025-03-10T21:38:19.951508-07:00,1664.0,10.841425,10841.425 +30809,2025-03-10T21:38:30.796068-07:00,1665.0,10.84456,10844.56 +30810,2025-03-10T21:38:41.637553-07:00,1615.0,10.841485,10841.485 +30811,2025-03-10T21:38:52.485843-07:00,1697.0,10.84829,10848.29 +30812,2025-03-10T21:39:03.334531-07:00,1695.0,10.848688,10848.688 +30813,2025-03-10T21:39:14.190557-07:00,1654.0,10.856026,10856.026 +30814,2025-03-10T21:39:25.027690-07:00,1618.0,10.837133,10837.133 +30815,2025-03-10T21:39:35.876916-07:00,1691.0,10.849226,10849.226 +30816,2025-03-10T21:39:46.731083-07:00,1687.0,10.854167,10854.167 +30817,2025-03-10T21:39:57.568514-07:00,1681.0,10.837431,10837.431 +30818,2025-03-10T21:40:08.416752-07:00,1659.0,10.848238,10848.238 +30819,2025-03-10T21:40:19.259528-07:00,1651.0,10.842776,10842.776 +30820,2025-03-10T21:40:30.109768-07:00,1680.0,10.85024,10850.24 +30821,2025-03-10T21:40:40.946863-07:00,1660.0,10.837095,10837.095 +30822,2025-03-10T21:40:51.793175-07:00,1693.0,10.846312,10846.312 +30823,2025-03-10T21:41:02.642585-07:00,1674.0,10.84941,10849.41 +30824,2025-03-10T21:41:13.486793-07:00,1699.0,10.844208,10844.208 +30825,2025-03-10T21:41:24.329748-07:00,1703.0,10.842955,10842.955 +30826,2025-03-10T21:41:35.183780-07:00,1648.0,10.854032,10854.032 +30827,2025-03-10T21:41:46.032832-07:00,1700.0,10.849052,10849.052 +30828,2025-03-10T21:41:56.872856-07:00,1657.0,10.840024,10840.024 +30829,2025-03-10T21:42:07.715529-07:00,1637.0,10.842673,10842.673 +30830,2025-03-10T21:42:18.569672-07:00,1631.0,10.854143,10854.143 +30831,2025-03-10T21:42:29.410524-07:00,1646.0,10.840852,10840.852 +30832,2025-03-10T21:42:40.255522-07:00,1645.0,10.844998,10844.998 +30833,2025-03-10T21:42:51.099882-07:00,1707.0,10.84436,10844.36 +30834,2025-03-10T21:43:01.939878-07:00,1664.0,10.839996,10839.996 +30835,2025-03-10T21:43:12.788963-07:00,1702.0,10.849085,10849.085 +30836,2025-03-10T21:43:23.632528-07:00,1673.0,10.843565,10843.565 +30837,2025-03-10T21:43:34.471094-07:00,1707.0,10.838566,10838.566 +30838,2025-03-10T21:43:45.308765-07:00,1638.0,10.837671,10837.671 +30839,2025-03-10T21:43:56.161525-07:00,1663.0,10.85276,10852.76 +30840,2025-03-10T21:44:06.998614-07:00,1649.0,10.837089,10837.089 +30841,2025-03-10T21:44:17.844526-07:00,1646.0,10.845912,10845.912 +30842,2025-03-10T21:44:28.697522-07:00,1648.0,10.852996,10852.996 +30843,2025-03-10T21:44:39.538791-07:00,1710.0,10.841269,10841.269 +30844,2025-03-10T21:44:50.390863-07:00,1710.0,10.852072,10852.072 +30845,2025-03-10T21:45:01.232104-07:00,1703.0,10.841241,10841.241 +30846,2025-03-10T21:45:12.074558-07:00,1679.0,10.842454,10842.454 +30847,2025-03-10T21:45:22.923761-07:00,1667.0,10.849203,10849.203 +30848,2025-03-10T21:45:33.770095-07:00,1669.0,10.846334,10846.334 +30849,2025-03-10T21:45:44.609856-07:00,1633.0,10.839761,10839.761 +30850,2025-03-10T21:45:55.463937-07:00,1655.0,10.854081,10854.081 +30851,2025-03-10T21:46:06.309529-07:00,1706.0,10.845592,10845.592 +30852,2025-03-10T21:46:17.145528-07:00,1645.0,10.835999,10835.999 +30853,2025-03-10T21:46:27.992534-07:00,1654.0,10.847006,10847.006 +30854,2025-03-10T21:46:38.835842-07:00,1710.0,10.843308,10843.308 +30855,2025-03-10T21:46:49.687003-07:00,1702.0,10.851161,10851.161 +30856,2025-03-10T21:47:00.532573-07:00,1707.0,10.84557,10845.57 +30857,2025-03-10T21:47:11.379984-07:00,1613.0,10.847411,10847.411 +30858,2025-03-10T21:47:22.210977-07:00,1677.0,10.830993,10830.993 +30859,2025-03-10T21:47:33.051873-07:00,1711.0,10.840896,10840.896 +30860,2025-03-10T21:47:43.895527-07:00,1637.0,10.843654,10843.654 +30861,2025-03-10T21:47:54.737529-07:00,1687.0,10.842002,10842.002 +30862,2025-03-10T21:48:05.575579-07:00,1658.0,10.83805,10838.05 +30863,2025-03-10T21:48:16.415570-07:00,1659.0,10.839991,10839.991 +30864,2025-03-10T21:48:27.255526-07:00,1655.0,10.839956,10839.956 +30865,2025-03-10T21:48:38.090827-07:00,1693.0,10.835301,10835.301 +30866,2025-03-10T21:48:48.941269-07:00,1710.0,10.850442,10850.442 +30867,2025-03-10T21:48:59.785802-07:00,1635.0,10.844533,10844.533 +30868,2025-03-10T21:49:10.627528-07:00,1690.0,10.841726,10841.726 +30869,2025-03-10T21:49:21.477529-07:00,1651.0,10.850001,10850.001 +30870,2025-03-10T21:49:32.324725-07:00,1709.0,10.847196,10847.196 +30871,2025-03-10T21:49:43.163570-07:00,1664.0,10.838845,10838.845 +30872,2025-03-10T21:49:54.007327-07:00,1661.0,10.843757,10843.757 +30873,2025-03-10T21:50:04.848514-07:00,1655.0,10.841187,10841.187 +30874,2025-03-10T21:50:15.696235-07:00,1680.0,10.847721,10847.721 +30875,2025-03-10T21:50:26.541112-07:00,1653.0,10.844877,10844.877 +30876,2025-03-10T21:50:37.385867-07:00,1710.0,10.844755,10844.755 +30877,2025-03-10T21:50:48.234966-07:00,1617.0,10.849099,10849.099 +30878,2025-03-10T21:50:59.081090-07:00,1664.0,10.846124,10846.124 +30879,2025-03-10T21:51:09.922521-07:00,1682.0,10.841431,10841.431 +30880,2025-03-10T21:51:20.767591-07:00,1659.0,10.84507,10845.07 +30881,2025-03-10T21:51:31.609789-07:00,1682.0,10.842198,10842.198 +30882,2025-03-10T21:51:42.449881-07:00,1660.0,10.840092,10840.092 +30883,2025-03-10T21:51:53.296568-07:00,1708.0,10.846687,10846.687 +30884,2025-03-10T21:52:04.138519-07:00,1654.0,10.841951,10841.951 +30885,2025-03-10T21:52:14.984529-07:00,1696.0,10.84601,10846.01 +30886,2025-03-10T21:52:25.815189-07:00,1674.0,10.83066,10830.66 +30887,2025-03-10T21:52:36.664826-07:00,1711.0,10.849637,10849.637 +30888,2025-03-10T21:52:47.499525-07:00,1661.0,10.834699,10834.699 +30889,2025-03-10T21:52:58.344522-07:00,1616.0,10.844997,10844.997 +30890,2025-03-10T21:53:09.187812-07:00,1695.0,10.84329,10843.29 +30891,2025-03-10T21:53:30.873526-07:00,1623.0,21.685714,21685.714 +30892,2025-03-10T21:53:41.724774-07:00,1699.0,10.851248,10851.248 +30893,2025-03-10T21:53:52.559897-07:00,1687.0,10.835123,10835.123 +30894,2025-03-10T21:54:03.404857-07:00,1648.0,10.84496,10844.96 +30895,2025-03-10T21:54:14.249524-07:00,1698.0,10.844667,10844.667 +30896,2025-03-10T21:54:25.094523-07:00,1711.0,10.844999,10844.999 +30897,2025-03-10T21:54:35.931530-07:00,1706.0,10.837007,10837.007 +30898,2025-03-10T21:54:46.785065-07:00,1623.0,10.853535,10853.535 +30899,2025-03-10T21:54:57.625049-07:00,1675.0,10.839984,10839.984 +30900,2025-03-10T21:55:08.460830-07:00,1634.0,10.835781,10835.781 +30901,2025-03-10T21:55:19.298846-07:00,1710.0,10.838016,10838.016 +30902,2025-03-10T21:55:30.147839-07:00,1707.0,10.848993,10848.993 +30903,2025-03-10T21:55:40.981520-07:00,1622.0,10.833681,10833.681 +30904,2025-03-10T21:55:51.833557-07:00,1662.0,10.852037,10852.037 +30905,2025-03-10T21:56:02.669155-07:00,1696.0,10.835598,10835.598 +30906,2025-03-10T21:56:13.514712-07:00,1687.0,10.845557,10845.557 +30907,2025-03-10T21:56:24.361962-07:00,1707.0,10.84725,10847.25 +30908,2025-03-10T21:56:35.199715-07:00,1689.0,10.837753,10837.753 +30909,2025-03-10T21:56:46.038528-07:00,1648.0,10.838813,10838.813 +30910,2025-03-10T21:56:56.883856-07:00,1709.0,10.845328,10845.328 +30911,2025-03-10T21:57:07.734908-07:00,1684.0,10.851052,10851.052 +30912,2025-03-10T21:57:18.573530-07:00,1700.0,10.838622,10838.622 +30913,2025-03-10T21:57:29.420520-07:00,1710.0,10.84699,10846.99 +30914,2025-03-10T21:57:40.263530-07:00,1693.0,10.84301,10843.01 +30915,2025-03-10T21:57:51.101685-07:00,1707.0,10.838155,10838.155 +30916,2025-03-10T21:58:01.939565-07:00,1616.0,10.83788,10837.88 +30917,2025-03-10T21:58:12.787196-07:00,1681.0,10.847631,10847.631 +30918,2025-03-10T21:58:20.375622-07:00,1657.0,7.588426,7588.426 +30919,2025-03-10T21:58:23.625806-07:00,1683.0,3.250184,3250.184 +30920,2025-03-10T21:58:34.468915-07:00,1707.0,10.843109,10843.109 +30921,2025-03-10T21:58:45.309507-07:00,1655.0,10.840592,10840.592 +30922,2025-03-10T21:58:56.153585-07:00,1694.0,10.844078,10844.078 +30923,2025-03-10T21:59:06.997530-07:00,1712.0,10.843945,10843.945 +30924,2025-03-10T21:59:17.829838-07:00,1665.0,10.832308,10832.308 +30925,2025-03-10T21:59:28.671711-07:00,1666.0,10.841873,10841.873 +30926,2025-03-10T21:59:39.514527-07:00,1648.0,10.842816,10842.816 +30927,2025-03-10T21:59:50.352638-07:00,1689.0,10.838111,10838.111 +30928,2025-03-10T22:00:01.203907-07:00,1710.0,10.851269,10851.269 +30929,2025-03-10T22:00:12.045193-07:00,1661.0,10.841286,10841.286 +30930,2025-03-10T22:00:22.881770-07:00,1625.0,10.836577,10836.577 +30931,2025-03-10T22:00:33.720598-07:00,1667.0,10.838828,10838.828 +30932,2025-03-10T22:00:44.575517-07:00,1645.0,10.854919,10854.919 +30933,2025-03-10T22:00:55.412258-07:00,1703.0,10.836741,10836.741 +30934,2025-03-10T22:01:06.253830-07:00,1710.0,10.841572,10841.572 +30935,2025-03-10T22:01:17.098470-07:00,1647.0,10.84464,10844.64 +30936,2025-03-10T22:01:27.946962-07:00,1707.0,10.848492,10848.492 +30937,2025-03-10T22:01:38.795760-07:00,1706.0,10.848798,10848.798 +30938,2025-03-10T22:01:49.632460-07:00,1679.0,10.8367,10836.7 +30939,2025-03-10T22:02:00.475522-07:00,1681.0,10.843062,10843.062 +30940,2025-03-10T22:02:11.313753-07:00,1708.0,10.838231,10838.231 +30941,2025-03-10T22:02:22.163798-07:00,1635.0,10.850045,10850.045 +30942,2025-03-10T22:02:33.011784-07:00,1617.0,10.847986,10847.986 +30943,2025-03-10T22:02:43.847759-07:00,1662.0,10.835975,10835.975 +30944,2025-03-10T22:02:54.699520-07:00,1661.0,10.851761,10851.761 +30945,2025-03-10T22:03:05.534781-07:00,1681.0,10.835261,10835.261 +30946,2025-03-10T22:03:16.378466-07:00,1701.0,10.843685,10843.685 +30947,2025-03-10T22:03:27.215520-07:00,1683.0,10.837054,10837.054 +30948,2025-03-10T22:03:38.062530-07:00,1685.0,10.84701,10847.01 +30949,2025-03-10T22:03:48.905517-07:00,1655.0,10.842987,10842.987 +30950,2025-03-10T22:03:59.749012-07:00,1648.0,10.843495,10843.495 +30951,2025-03-10T22:04:10.592442-07:00,1681.0,10.84343,10843.43 +30952,2025-03-10T22:04:21.434640-07:00,1664.0,10.842198,10842.198 +30953,2025-03-10T22:04:32.268528-07:00,1703.0,10.833888,10833.888 +30954,2025-03-10T22:04:43.111567-07:00,1663.0,10.843039,10843.039 +30955,2025-03-10T22:04:53.960857-07:00,1712.0,10.84929,10849.29 +30956,2025-03-10T22:05:04.813935-07:00,1665.0,10.853078,10853.078 +30957,2025-03-10T22:05:15.655521-07:00,1697.0,10.841586,10841.586 +30958,2025-03-10T22:05:26.499073-07:00,1697.0,10.843552,10843.552 +30959,2025-03-10T22:05:37.354525-07:00,1702.0,10.855452,10855.452 +30960,2025-03-10T22:05:48.235134-07:00,1655.0,10.880609,10880.609 +30961,2025-03-10T22:05:59.074968-07:00,1647.0,10.839834,10839.834 +30962,2025-03-10T22:06:09.917495-07:00,1676.0,10.842527,10842.527 +30963,2025-03-10T22:06:20.770907-07:00,1681.0,10.853412,10853.412 +30964,2025-03-10T22:06:31.619963-07:00,1664.0,10.849056,10849.056 +30965,2025-03-10T22:06:42.468021-07:00,1691.0,10.848058,10848.058 +30966,2025-03-10T22:06:53.309133-07:00,1637.0,10.841112,10841.112 +30967,2025-03-10T22:07:04.159911-07:00,1687.0,10.850778,10850.778 +30968,2025-03-10T22:07:15.005639-07:00,1662.0,10.845728,10845.728 +30969,2025-03-10T22:07:25.856278-07:00,1709.0,10.850639,10850.639 +30970,2025-03-10T22:07:36.692910-07:00,1678.0,10.836632,10836.632 +30971,2025-03-10T22:07:47.534240-07:00,1711.0,10.84133,10841.33 +30972,2025-03-10T22:07:58.375968-07:00,1711.0,10.841728,10841.728 +30973,2025-03-10T22:08:09.218201-07:00,1666.0,10.842233,10842.233 +30974,2025-03-10T22:08:20.068559-07:00,1664.0,10.850358,10850.358 +30975,2025-03-10T22:08:30.905066-07:00,1711.0,10.836507,10836.507 +30976,2025-03-10T22:08:41.754197-07:00,1680.0,10.849131,10849.131 +30977,2025-03-10T22:08:52.609247-07:00,1637.0,10.85505,10855.05 +30978,2025-03-10T22:09:03.444283-07:00,1626.0,10.835036,10835.036 +30979,2025-03-10T22:09:14.287535-07:00,1680.0,10.843252,10843.252 +30980,2025-03-10T22:09:25.128914-07:00,1706.0,10.841379,10841.379 +30981,2025-03-10T22:09:35.973959-07:00,1663.0,10.845045,10845.045 +30982,2025-03-10T22:09:46.827912-07:00,1680.0,10.853953,10853.953 +30983,2025-03-10T22:09:57.670447-07:00,1675.0,10.842535,10842.535 +30984,2025-03-10T22:10:08.511210-07:00,1701.0,10.840763,10840.763 +30985,2025-03-10T22:10:19.357171-07:00,1694.0,10.845961,10845.961 +30986,2025-03-10T22:10:30.201253-07:00,1643.0,10.844082,10844.082 +30987,2025-03-10T22:10:41.049986-07:00,1663.0,10.848733,10848.733 +30988,2025-03-10T22:10:51.892142-07:00,1665.0,10.842156,10842.156 +30989,2025-03-10T22:11:02.730458-07:00,1650.0,10.838316,10838.316 +30990,2025-03-10T22:11:13.579241-07:00,1651.0,10.848783,10848.783 +30991,2025-03-10T22:11:24.417921-07:00,1712.0,10.83868,10838.68 +30992,2025-03-10T22:11:35.265944-07:00,1666.0,10.848023,10848.023 +30993,2025-03-10T22:11:46.114922-07:00,1699.0,10.848978,10848.978 +30994,2025-03-10T22:11:56.961237-07:00,1665.0,10.846315,10846.315 +30995,2025-03-10T22:12:07.806160-07:00,1653.0,10.844923,10844.923 +30996,2025-03-10T22:12:18.644916-07:00,1712.0,10.838756,10838.756 +30997,2025-03-10T22:12:29.495048-07:00,1707.0,10.850132,10850.132 +30998,2025-03-10T22:12:40.330327-07:00,1702.0,10.835279,10835.279 +30999,2025-03-10T22:12:51.179257-07:00,1674.0,10.84893,10848.93 +31000,2025-03-10T22:13:02.021906-07:00,1664.0,10.842649,10842.649 +31001,2025-03-10T22:13:12.861954-07:00,1628.0,10.840048,10840.048 +31002,2025-03-10T22:13:23.712920-07:00,1625.0,10.850966,10850.966 +31003,2025-03-10T22:13:34.549161-07:00,1709.0,10.836241,10836.241 +31004,2025-03-10T22:13:45.389093-07:00,1678.0,10.839932,10839.932 +31005,2025-03-10T22:13:56.230916-07:00,1703.0,10.841823,10841.823 +31006,2025-03-10T22:14:07.080027-07:00,1684.0,10.849111,10849.111 +31007,2025-03-10T22:14:17.916267-07:00,1641.0,10.83624,10836.24 +31008,2025-03-10T22:14:28.761606-07:00,1637.0,10.845339,10845.339 +31009,2025-03-10T22:14:39.615086-07:00,1698.0,10.85348,10853.48 +31010,2025-03-10T22:14:50.449074-07:00,1680.0,10.833988,10833.988 +31011,2025-03-10T22:15:01.294152-07:00,1662.0,10.845078,10845.078 +31012,2025-03-10T22:15:12.139062-07:00,1666.0,10.84491,10844.91 +31013,2025-03-10T22:15:22.994077-07:00,1707.0,10.855015,10855.015 +31014,2025-03-10T22:15:33.828038-07:00,1658.0,10.833961,10833.961 +31015,2025-03-10T22:15:44.664953-07:00,1712.0,10.836915,10836.915 +31016,2025-03-10T22:15:55.512916-07:00,1680.0,10.847963,10847.963 +31017,2025-03-10T22:16:06.360277-07:00,1700.0,10.847361,10847.361 +31018,2025-03-10T22:16:17.197153-07:00,1709.0,10.836876,10836.876 +31019,2025-03-10T22:16:28.056519-07:00,1666.0,10.859366,10859.366 +31020,2025-03-10T22:16:38.900064-07:00,1664.0,10.843545,10843.545 +31021,2025-03-10T22:16:49.748974-07:00,1665.0,10.84891,10848.91 +31022,2025-03-10T22:17:00.603739-07:00,1618.0,10.854765,10854.765 +31023,2025-03-10T22:17:11.447164-07:00,1680.0,10.843425,10843.425 +31024,2025-03-10T22:17:22.297921-07:00,1657.0,10.850757,10850.757 +31025,2025-03-10T22:17:33.146175-07:00,1685.0,10.848254,10848.254 +31026,2025-03-10T22:17:43.985112-07:00,1636.0,10.838937,10838.937 +31027,2025-03-10T22:17:54.831581-07:00,1666.0,10.846469,10846.469 +31028,2025-03-10T22:18:05.684918-07:00,1663.0,10.853337,10853.337 +31029,2025-03-10T22:18:16.534061-07:00,1701.0,10.849143,10849.143 +31030,2025-03-10T22:18:27.373504-07:00,1710.0,10.839443,10839.443 +31031,2025-03-10T22:18:38.226719-07:00,1706.0,10.853215,10853.215 +31032,2025-03-10T22:18:46.400237-07:00,1648.0,8.173518,8173.518 +31033,2025-03-10T22:18:49.068177-07:00,1642.0,2.66794,2667.94 +31034,2025-03-10T22:18:59.916881-07:00,1709.0,10.848704,10848.704 +31035,2025-03-10T22:19:10.758923-07:00,1651.0,10.842042,10842.042 +31036,2025-03-10T22:19:21.604921-07:00,1623.0,10.845998,10845.998 +31037,2025-03-10T22:19:32.450966-07:00,1643.0,10.846045,10846.045 +31038,2025-03-10T22:19:43.301097-07:00,1633.0,10.850131,10850.131 +31039,2025-03-10T22:19:54.146205-07:00,1685.0,10.845108,10845.108 +31040,2025-03-10T22:20:05.002235-07:00,1649.0,10.85603,10856.03 +31041,2025-03-10T22:20:15.842975-07:00,1712.0,10.84074,10840.74 +31042,2025-03-10T22:20:26.685071-07:00,1616.0,10.842096,10842.096 +31043,2025-03-10T22:20:37.539906-07:00,1651.0,10.854835,10854.835 +31044,2025-03-10T22:20:48.383093-07:00,1651.0,10.843187,10843.187 +31045,2025-03-10T22:20:59.238918-07:00,1648.0,10.855825,10855.825 +31046,2025-03-10T22:21:10.080457-07:00,1677.0,10.841539,10841.539 +31047,2025-03-10T22:21:20.929695-07:00,1690.0,10.849238,10849.238 +31048,2025-03-10T22:21:31.772147-07:00,1694.0,10.842452,10842.452 +31049,2025-03-10T22:21:42.627921-07:00,1711.0,10.855774,10855.774 +31050,2025-03-10T22:21:53.468302-07:00,1712.0,10.840381,10840.381 +31051,2025-03-10T22:22:04.317899-07:00,1711.0,10.849597,10849.597 +31052,2025-03-10T22:22:15.162908-07:00,1712.0,10.845009,10845.009 +31053,2025-03-10T22:22:26.002329-07:00,1629.0,10.839421,10839.421 +31054,2025-03-10T22:22:36.846253-07:00,1712.0,10.843924,10843.924 +31055,2025-03-10T22:22:47.701963-07:00,1697.0,10.85571,10855.71 +31056,2025-03-10T22:22:58.544966-07:00,1677.0,10.843003,10843.003 +31057,2025-03-10T22:23:09.382921-07:00,1650.0,10.837955,10837.955 +31058,2025-03-10T22:23:20.236285-07:00,1692.0,10.853364,10853.364 +31059,2025-03-10T22:23:31.077400-07:00,1673.0,10.841115,10841.115 +31060,2025-03-10T22:23:41.916142-07:00,1655.0,10.838742,10838.742 +31061,2025-03-10T22:23:52.765939-07:00,1680.0,10.849797,10849.797 +31062,2025-03-10T22:24:03.602175-07:00,1670.0,10.836236,10836.236 +31063,2025-03-10T22:24:14.457922-07:00,1693.0,10.855747,10855.747 +31064,2025-03-10T22:24:25.294552-07:00,1711.0,10.83663,10836.63 +31065,2025-03-10T22:24:36.143125-07:00,1699.0,10.848573,10848.573 +31066,2025-03-10T22:24:46.985150-07:00,1712.0,10.842025,10842.025 +31067,2025-03-10T22:24:57.840532-07:00,1699.0,10.855382,10855.382 +31068,2025-03-10T22:25:08.684913-07:00,1709.0,10.844381,10844.381 +31069,2025-03-10T22:25:19.527251-07:00,1649.0,10.842338,10842.338 +31070,2025-03-10T22:25:30.370682-07:00,1690.0,10.843431,10843.431 +31071,2025-03-10T22:25:41.220181-07:00,1712.0,10.849499,10849.499 +31072,2025-03-10T22:25:52.064053-07:00,1668.0,10.843872,10843.872 +31073,2025-03-10T22:26:02.910920-07:00,1657.0,10.846867,10846.867 +31074,2025-03-10T22:26:13.756917-07:00,1667.0,10.845997,10845.997 +31075,2025-03-10T22:26:24.612834-07:00,1710.0,10.855917,10855.917 +31076,2025-03-10T22:26:35.452118-07:00,1699.0,10.839284,10839.284 +31077,2025-03-10T22:26:46.298523-07:00,1621.0,10.846405,10846.405 +31078,2025-03-10T22:26:57.149140-07:00,1659.0,10.850617,10850.617 +31079,2025-03-10T22:27:07.992912-07:00,1665.0,10.843772,10843.772 +31080,2025-03-10T22:27:18.842976-07:00,1668.0,10.850064,10850.064 +31081,2025-03-10T22:27:29.690102-07:00,1711.0,10.847126,10847.126 +31082,2025-03-10T22:27:40.534669-07:00,1712.0,10.844567,10844.567 +31083,2025-03-10T22:27:51.383405-07:00,1685.0,10.848736,10848.736 +31084,2025-03-10T22:28:02.237908-07:00,1637.0,10.854503,10854.503 +31085,2025-03-10T22:28:13.078970-07:00,1637.0,10.841062,10841.062 +31086,2025-03-10T22:28:34.771554-07:00,1686.0,21.692584,21692.584 +31087,2025-03-10T22:28:45.623143-07:00,1631.0,10.851589,10851.589 +31088,2025-03-10T22:28:56.468076-07:00,1616.0,10.844933,10844.933 +31089,2025-03-10T22:29:07.312253-07:00,1680.0,10.844177,10844.177 +31090,2025-03-10T22:29:18.162238-07:00,1616.0,10.849985,10849.985 +31091,2025-03-10T22:29:28.998217-07:00,1711.0,10.835979,10835.979 +31092,2025-03-10T22:29:39.845291-07:00,1611.0,10.847074,10847.074 +31093,2025-03-10T22:29:50.695916-07:00,1712.0,10.850625,10850.625 +31094,2025-03-10T22:30:01.534275-07:00,1625.0,10.838359,10838.359 +31095,2025-03-10T22:30:12.379957-07:00,1629.0,10.845682,10845.682 +31096,2025-03-10T22:30:23.230135-07:00,1701.0,10.850178,10850.178 +31097,2025-03-10T22:30:34.068056-07:00,1671.0,10.837921,10837.921 +31098,2025-03-10T22:30:44.917326-07:00,1711.0,10.84927,10849.27 +31099,2025-03-10T22:30:55.760085-07:00,1679.0,10.842759,10842.759 +31100,2025-03-10T22:31:06.609491-07:00,1695.0,10.849406,10849.406 +31101,2025-03-10T22:31:17.459265-07:00,1693.0,10.849774,10849.774 +31102,2025-03-10T22:31:28.315275-07:00,1614.0,10.85601,10856.01 +31103,2025-03-10T22:31:39.154064-07:00,1698.0,10.838789,10838.789 +31104,2025-03-10T22:31:50.009895-07:00,1701.0,10.855831,10855.831 +31105,2025-03-10T22:32:00.859393-07:00,1709.0,10.849498,10849.498 +31106,2025-03-10T22:32:11.706283-07:00,1650.0,10.84689,10846.89 +31107,2025-03-10T22:32:22.556165-07:00,1674.0,10.849882,10849.882 +31108,2025-03-10T22:32:33.410714-07:00,1692.0,10.854549,10854.549 +31109,2025-03-10T22:32:44.253304-07:00,1671.0,10.84259,10842.59 +31110,2025-03-10T22:32:55.096723-07:00,1665.0,10.843419,10843.419 +31111,2025-03-10T22:33:05.950808-07:00,1649.0,10.854085,10854.085 +31112,2025-03-10T22:33:16.792916-07:00,1705.0,10.842108,10842.108 +31113,2025-03-10T22:33:27.635964-07:00,1712.0,10.843048,10843.048 +31114,2025-03-10T22:33:38.469248-07:00,1706.0,10.833284,10833.284 +31115,2025-03-10T22:33:49.305133-07:00,1709.0,10.835885,10835.885 +31116,2025-03-10T22:34:00.150194-07:00,1618.0,10.845061,10845.061 +31117,2025-03-10T22:34:11.001554-07:00,1677.0,10.85136,10851.36 +31118,2025-03-10T22:34:21.841274-07:00,1698.0,10.83972,10839.72 +31119,2025-03-10T22:34:32.684793-07:00,1712.0,10.843519,10843.519 +31120,2025-03-10T22:34:43.526969-07:00,1648.0,10.842176,10842.176 +31121,2025-03-10T22:34:54.364916-07:00,1712.0,10.837947,10837.947 +31122,2025-03-10T22:35:05.208899-07:00,1663.0,10.843983,10843.983 +31123,2025-03-10T22:35:16.055230-07:00,1686.0,10.846331,10846.331 +31124,2025-03-10T22:35:26.898961-07:00,1642.0,10.843731,10843.731 +31125,2025-03-10T22:35:37.742247-07:00,1683.0,10.843286,10843.286 +31126,2025-03-10T22:35:48.579970-07:00,1671.0,10.837723,10837.723 +31127,2025-03-10T22:35:59.420187-07:00,1627.0,10.840217,10840.217 +31128,2025-03-10T22:36:10.256224-07:00,1687.0,10.836037,10836.037 +31129,2025-03-10T22:36:21.098197-07:00,1676.0,10.841973,10841.973 +31130,2025-03-10T22:36:31.935243-07:00,1712.0,10.837046,10837.046 +31131,2025-03-10T22:36:42.773375-07:00,1611.0,10.838132,10838.132 +31132,2025-03-10T22:36:53.610955-07:00,1667.0,10.83758,10837.58 +31133,2025-03-10T22:37:04.462901-07:00,1666.0,10.851946,10851.946 +31134,2025-03-10T22:37:15.296541-07:00,1669.0,10.83364,10833.64 +31135,2025-03-10T22:37:26.138146-07:00,1712.0,10.841605,10841.605 +31136,2025-03-10T22:37:36.977921-07:00,1633.0,10.839775,10839.775 +31137,2025-03-10T22:37:47.813206-07:00,1619.0,10.835285,10835.285 +31138,2025-03-10T22:37:58.658959-07:00,1675.0,10.845753,10845.753 +31139,2025-03-10T22:38:09.494918-07:00,1681.0,10.835959,10835.959 +31140,2025-03-10T22:38:20.344219-07:00,1687.0,10.849301,10849.301 +31141,2025-03-10T22:38:31.188202-07:00,1683.0,10.843983,10843.983 +31142,2025-03-10T22:38:42.029843-07:00,1711.0,10.841641,10841.641 +31143,2025-03-10T22:38:52.858921-07:00,1655.0,10.829078,10829.078 +31144,2025-03-10T22:39:03.701165-07:00,1707.0,10.842244,10842.244 +31145,2025-03-10T22:39:14.536969-07:00,1687.0,10.835804,10835.804 +31146,2025-03-10T22:39:25.375922-07:00,1667.0,10.838953,10838.953 +31147,2025-03-10T22:39:36.222973-07:00,1712.0,10.847051,10847.051 +31148,2025-03-10T22:39:47.066259-07:00,1687.0,10.843286,10843.286 +31149,2025-03-10T22:39:57.898158-07:00,1694.0,10.831899,10831.899 +31150,2025-03-10T22:40:08.733925-07:00,1649.0,10.835767,10835.767 +31151,2025-03-10T22:40:19.581143-07:00,1710.0,10.847218,10847.218 +31152,2025-03-10T22:40:30.416996-07:00,1658.0,10.835853,10835.853 +31153,2025-03-10T22:40:41.248042-07:00,1666.0,10.831046,10831.046 +31154,2025-03-10T22:40:52.090465-07:00,1634.0,10.842423,10842.423 +31155,2025-03-10T22:41:02.919969-07:00,1667.0,10.829504,10829.504 +31156,2025-03-10T22:41:13.760209-07:00,1669.0,10.84024,10840.24 +31157,2025-03-10T22:41:24.603922-07:00,1653.0,10.843713,10843.713 +31158,2025-03-10T22:41:35.439629-07:00,1667.0,10.835707,10835.707 +31159,2025-03-10T22:41:46.278283-07:00,1711.0,10.838654,10838.654 +31160,2025-03-10T22:41:57.125317-07:00,1616.0,10.847034,10847.034 +31161,2025-03-10T22:42:07.970504-07:00,1646.0,10.845187,10845.187 +31162,2025-03-10T22:42:18.812126-07:00,1609.0,10.841622,10841.622 +31163,2025-03-10T22:42:29.641922-07:00,1662.0,10.829796,10829.796 +31164,2025-03-10T22:42:40.493912-07:00,1631.0,10.85199,10851.99 +31165,2025-03-10T22:42:47.893517-07:00,1687.0,7.399605,7399.605 +31166,2025-03-10T22:42:51.325683-07:00,1669.0,3.432166,3432.166 +31167,2025-03-10T22:43:02.161173-07:00,1680.0,10.83549,10835.49 +31168,2025-03-10T22:43:13.005154-07:00,1649.0,10.843981,10843.981 +31169,2025-03-10T22:43:23.848255-07:00,1662.0,10.843101,10843.101 +31170,2025-03-10T22:43:34.686081-07:00,1661.0,10.837826,10837.826 +31171,2025-03-10T22:43:45.530053-07:00,1629.0,10.843972,10843.972 +31172,2025-03-10T22:43:56.359934-07:00,1687.0,10.829881,10829.881 +31173,2025-03-10T22:44:07.212140-07:00,1673.0,10.852206,10852.206 +31174,2025-03-10T22:44:18.045139-07:00,1712.0,10.832999,10832.999 +31175,2025-03-10T22:44:28.894913-07:00,1674.0,10.849774,10849.774 +31176,2025-03-10T22:44:39.732713-07:00,1651.0,10.8378,10837.8 +31177,2025-03-10T22:44:50.582704-07:00,1645.0,10.849991,10849.991 +31178,2025-03-10T22:45:01.420239-07:00,1712.0,10.837535,10837.535 +31179,2025-03-10T22:45:12.265171-07:00,1662.0,10.844932,10844.932 +31180,2025-03-10T22:45:23.099923-07:00,1712.0,10.834752,10834.752 +31181,2025-03-10T22:45:33.937640-07:00,1636.0,10.837717,10837.717 +31182,2025-03-10T22:45:44.785386-07:00,1655.0,10.847746,10847.746 +31183,2025-03-10T22:45:55.623165-07:00,1629.0,10.837779,10837.779 +31184,2025-03-10T22:46:06.472149-07:00,1712.0,10.848984,10848.984 +31185,2025-03-10T22:46:17.318500-07:00,1678.0,10.846351,10846.351 +31186,2025-03-10T22:46:28.157894-07:00,1646.0,10.839394,10839.394 +31187,2025-03-10T22:46:38.995912-07:00,1693.0,10.838018,10838.018 +31188,2025-03-10T22:46:49.843511-07:00,1665.0,10.847599,10847.599 +31189,2025-03-10T22:47:00.681912-07:00,1669.0,10.838401,10838.401 +31190,2025-03-10T22:47:11.518952-07:00,1712.0,10.83704,10837.04 +31191,2025-03-10T22:47:22.362050-07:00,1678.0,10.843098,10843.098 +31192,2025-03-10T22:47:33.204188-07:00,1712.0,10.842138,10842.138 +31193,2025-03-10T22:47:44.047316-07:00,1664.0,10.843128,10843.128 +31194,2025-03-10T22:47:54.881919-07:00,1653.0,10.834603,10834.603 +31195,2025-03-10T22:48:05.727905-07:00,1661.0,10.845986,10845.986 +31196,2025-03-10T22:48:16.571915-07:00,1712.0,10.84401,10844.01 +31197,2025-03-10T22:48:27.406296-07:00,1680.0,10.834381,10834.381 +31198,2025-03-10T22:48:38.253963-07:00,1694.0,10.847667,10847.667 +31199,2025-03-10T22:48:49.090915-07:00,1699.0,10.836952,10836.952 +31200,2025-03-10T22:48:59.938923-07:00,1619.0,10.848008,10848.008 +31201,2025-03-10T22:49:10.781309-07:00,1706.0,10.842386,10842.386 +31202,2025-03-10T22:49:21.624226-07:00,1621.0,10.842917,10842.917 +31203,2025-03-10T22:49:32.465227-07:00,1629.0,10.841001,10841.001 +31204,2025-03-10T22:49:43.306095-07:00,1613.0,10.840868,10840.868 +31205,2025-03-10T22:49:54.148939-07:00,1711.0,10.842844,10842.844 +31206,2025-03-10T22:50:04.994228-07:00,1691.0,10.845289,10845.289 +31207,2025-03-10T22:50:15.833922-07:00,1684.0,10.839694,10839.694 +31208,2025-03-10T22:50:26.676143-07:00,1701.0,10.842221,10842.221 +31209,2025-03-10T22:50:37.520189-07:00,1707.0,10.844046,10844.046 +31210,2025-03-10T22:50:48.357219-07:00,1675.0,10.83703,10837.03 +31211,2025-03-10T22:50:59.195894-07:00,1682.0,10.838675,10838.675 +31212,2025-03-10T22:51:10.038912-07:00,1708.0,10.843018,10843.018 +31213,2025-03-10T22:51:20.875478-07:00,1710.0,10.836566,10836.566 +31214,2025-03-10T22:51:31.716951-07:00,1697.0,10.841473,10841.473 +31215,2025-03-10T22:51:42.547918-07:00,1666.0,10.830967,10830.967 +31216,2025-03-10T22:51:53.382021-07:00,1697.0,10.834103,10834.103 +31217,2025-03-10T22:52:04.214919-07:00,1616.0,10.832898,10832.898 +31218,2025-03-10T22:52:15.062241-07:00,1667.0,10.847322,10847.322 +31219,2025-03-10T22:52:25.906978-07:00,1681.0,10.844737,10844.737 +31220,2025-03-10T22:52:36.742953-07:00,1712.0,10.835975,10835.975 +31221,2025-03-10T22:52:47.584908-07:00,1621.0,10.841955,10841.955 +31222,2025-03-10T22:52:58.428930-07:00,1705.0,10.844022,10844.022 +31223,2025-03-10T22:53:09.260621-07:00,1648.0,10.831691,10831.691 +31224,2025-03-10T22:53:20.099270-07:00,1708.0,10.838649,10838.649 +31225,2025-03-10T22:53:30.947918-07:00,1695.0,10.848648,10848.648 +31226,2025-03-10T22:53:41.779315-07:00,1709.0,10.831397,10831.397 +31227,2025-03-10T22:53:52.627685-07:00,1622.0,10.84837,10848.37 +31228,2025-03-10T22:54:03.465508-07:00,1633.0,10.837823,10837.823 +31229,2025-03-10T22:54:14.308916-07:00,1710.0,10.843408,10843.408 +31230,2025-03-10T22:54:25.146674-07:00,1710.0,10.837758,10837.758 +31231,2025-03-10T22:54:35.981920-07:00,1668.0,10.835246,10835.246 +31232,2025-03-10T22:54:46.814921-07:00,1685.0,10.833001,10833.001 +31233,2025-03-10T22:54:57.662076-07:00,1644.0,10.847155,10847.155 +31234,2025-03-10T22:55:08.496114-07:00,1707.0,10.834038,10834.038 +31235,2025-03-10T22:55:19.334035-07:00,1694.0,10.837921,10837.921 +31236,2025-03-10T22:55:30.183054-07:00,1661.0,10.849019,10849.019 +31237,2025-03-10T22:55:41.019780-07:00,1679.0,10.836726,10836.726 +31238,2025-03-10T22:55:51.861179-07:00,1664.0,10.841399,10841.399 +31239,2025-03-10T22:56:02.692973-07:00,1699.0,10.831794,10831.794 +31240,2025-03-10T22:56:13.542166-07:00,1683.0,10.849193,10849.193 +31241,2025-03-10T22:56:24.372918-07:00,1695.0,10.830752,10830.752 +31242,2025-03-10T22:56:35.222139-07:00,1691.0,10.849221,10849.221 +31243,2025-03-10T22:56:46.060956-07:00,1659.0,10.838817,10838.817 +31244,2025-03-10T22:56:56.909278-07:00,1682.0,10.848322,10848.322 +31245,2025-03-10T22:57:07.751683-07:00,1685.0,10.842405,10842.405 +31246,2025-03-10T22:57:18.597971-07:00,1695.0,10.846288,10846.288 +31247,2025-03-10T22:57:29.442161-07:00,1700.0,10.84419,10844.19 +31248,2025-03-10T22:57:40.283066-07:00,1643.0,10.840905,10840.905 +31249,2025-03-10T22:57:51.119888-07:00,1616.0,10.836822,10836.822 +31250,2025-03-10T22:58:01.966060-07:00,1681.0,10.846172,10846.172 +31251,2025-03-10T22:58:12.815893-07:00,1706.0,10.849833,10849.833 +31252,2025-03-10T22:58:23.657045-07:00,1665.0,10.841152,10841.152 +31253,2025-03-10T22:58:34.502899-07:00,1647.0,10.845854,10845.854 +31254,2025-03-10T22:58:45.357375-07:00,1709.0,10.854476,10854.476 +31255,2025-03-10T22:58:56.201405-07:00,1709.0,10.84403,10844.03 +31256,2025-03-10T22:59:07.037917-07:00,1649.0,10.836512,10836.512 +31257,2025-03-10T22:59:17.879912-07:00,1697.0,10.841995,10841.995 +31258,2025-03-10T22:59:28.721568-07:00,1710.0,10.841656,10841.656 +31259,2025-03-10T22:59:39.563234-07:00,1663.0,10.841666,10841.666 +31260,2025-03-10T22:59:50.404072-07:00,1706.0,10.840838,10840.838 +31261,2025-03-10T23:00:01.243386-07:00,1649.0,10.839314,10839.314 +31262,2025-03-10T23:00:12.073907-07:00,1657.0,10.830521,10830.521 +31263,2025-03-10T23:00:22.914121-07:00,1702.0,10.840214,10840.214 +31264,2025-03-10T23:00:33.761924-07:00,1622.0,10.847803,10847.803 +31265,2025-03-10T23:00:44.603643-07:00,1695.0,10.841719,10841.719 +31266,2025-03-10T23:00:55.447228-07:00,1679.0,10.843585,10843.585 +31267,2025-03-10T23:01:06.286995-07:00,1710.0,10.839767,10839.767 +31268,2025-03-10T23:01:17.121655-07:00,1619.0,10.83466,10834.66 +31269,2025-03-10T23:01:27.971092-07:00,1696.0,10.849437,10849.437 +31270,2025-03-10T23:01:38.807182-07:00,1680.0,10.83609,10836.09 +31271,2025-03-10T23:01:49.648895-07:00,1631.0,10.841713,10841.713 +31272,2025-03-10T23:02:00.489951-07:00,1631.0,10.841056,10841.056 +31273,2025-03-10T23:02:11.324251-07:00,1680.0,10.8343,10834.3 +31274,2025-03-10T23:02:22.165063-07:00,1693.0,10.840812,10840.812 +31275,2025-03-10T23:02:32.999151-07:00,1651.0,10.834088,10834.088 +31276,2025-03-10T23:02:43.836533-07:00,1655.0,10.837382,10837.382 +31277,2025-03-10T23:02:54.673476-07:00,1709.0,10.836943,10836.943 +31278,2025-03-10T23:03:05.505351-07:00,1673.0,10.831875,10831.875 +31279,2025-03-10T23:03:16.344172-07:00,1653.0,10.838821,10838.821 +31280,2025-03-10T23:03:27.180736-07:00,1699.0,10.836564,10836.564 +31281,2025-03-10T23:03:38.022991-07:00,1693.0,10.842255,10842.255 +31282,2025-03-10T23:03:48.854255-07:00,1696.0,10.831264,10831.264 +31283,2025-03-10T23:03:59.691137-07:00,1648.0,10.836882,10836.882 +31284,2025-03-10T23:04:10.535923-07:00,1709.0,10.844786,10844.786 +31285,2025-03-10T23:04:21.373509-07:00,1682.0,10.837586,10837.586 +31286,2025-03-10T23:04:32.212924-07:00,1664.0,10.839415,10839.415 +31287,2025-03-10T23:04:43.058899-07:00,1700.0,10.845975,10845.975 +31288,2025-03-10T23:04:53.892019-07:00,1671.0,10.83312,10833.12 +31289,2025-03-10T23:05:04.726895-07:00,1664.0,10.834876,10834.876 +31290,2025-03-10T23:05:15.564170-07:00,1643.0,10.837275,10837.275 +31291,2025-03-10T23:05:26.415061-07:00,1661.0,10.850891,10850.891 +31292,2025-03-10T23:05:37.251458-07:00,1706.0,10.836397,10836.397 +31293,2025-03-10T23:05:48.137093-07:00,1710.0,10.885635,10885.635 +31294,2025-03-10T23:05:58.981146-07:00,1668.0,10.844053,10844.053 +31295,2025-03-10T23:06:09.813454-07:00,1619.0,10.832308,10832.308 +31296,2025-03-10T23:06:20.650925-07:00,1618.0,10.837471,10837.471 +31297,2025-03-10T23:06:31.499067-07:00,1674.0,10.848142,10848.142 +31298,2025-03-10T23:06:42.342925-07:00,1702.0,10.843858,10843.858 +31299,2025-03-10T23:06:53.178302-07:00,1633.0,10.835377,10835.377 +31300,2025-03-10T23:07:04.017968-07:00,1687.0,10.839666,10839.666 +31301,2025-03-10T23:07:14.871830-07:00,1707.0,10.853862,10853.862 +31302,2025-03-10T23:07:25.707918-07:00,1629.0,10.836088,10836.088 +31303,2025-03-10T23:07:36.553934-07:00,1650.0,10.846016,10846.016 +31304,2025-03-10T23:07:47.395845-07:00,1706.0,10.841911,10841.911 +31305,2025-03-10T23:07:58.227157-07:00,1632.0,10.831312,10831.312 +31306,2025-03-10T23:08:09.071167-07:00,1706.0,10.84401,10844.01 +31307,2025-03-10T23:08:19.908228-07:00,1648.0,10.837061,10837.061 +31308,2025-03-10T23:08:30.750957-07:00,1667.0,10.842729,10842.729 +31309,2025-03-10T23:08:41.592920-07:00,1685.0,10.841963,10841.963 +31310,2025-03-10T23:08:52.425313-07:00,1704.0,10.832393,10832.393 +31311,2025-03-10T23:09:03.261165-07:00,1639.0,10.835852,10835.852 +31312,2025-03-10T23:09:14.106909-07:00,1661.0,10.845744,10845.744 +31313,2025-03-10T23:09:24.942912-07:00,1685.0,10.836003,10836.003 +31314,2025-03-10T23:09:35.783529-07:00,1708.0,10.840617,10840.617 +31315,2025-03-10T23:09:46.623918-07:00,1670.0,10.840389,10840.389 +31316,2025-03-10T23:09:57.460143-07:00,1626.0,10.836225,10836.225 +31317,2025-03-10T23:10:08.298997-07:00,1673.0,10.838854,10838.854 +31318,2025-03-10T23:10:19.143157-07:00,1614.0,10.84416,10844.16 +31319,2025-03-10T23:10:29.977914-07:00,1680.0,10.834757,10834.757 +31320,2025-03-10T23:10:40.810211-07:00,1614.0,10.832297,10832.297 +31321,2025-03-10T23:10:51.660837-07:00,1701.0,10.850626,10850.626 +31322,2025-03-10T23:11:02.486293-07:00,1653.0,10.825456,10825.456 +31323,2025-03-10T23:11:13.331241-07:00,1686.0,10.844948,10844.948 +31324,2025-03-10T23:11:24.172292-07:00,1709.0,10.841051,10841.051 +31325,2025-03-10T23:11:35.007897-07:00,1619.0,10.835605,10835.605 +31326,2025-03-10T23:11:45.846162-07:00,1631.0,10.838265,10838.265 +31327,2025-03-10T23:11:56.689183-07:00,1698.0,10.843021,10843.021 +31328,2025-03-10T23:12:07.540334-07:00,1702.0,10.851151,10851.151 +31329,2025-03-10T23:12:18.382160-07:00,1631.0,10.841826,10841.826 +31330,2025-03-10T23:12:29.218969-07:00,1696.0,10.836809,10836.809 +31331,2025-03-10T23:12:40.057812-07:00,1697.0,10.838843,10838.843 +31332,2025-03-10T23:12:50.905905-07:00,1695.0,10.848093,10848.093 +31333,2025-03-10T23:13:01.749359-07:00,1680.0,10.843454,10843.454 +31334,2025-03-10T23:13:12.591919-07:00,1631.0,10.84256,10842.56 +31335,2025-03-10T23:13:23.437172-07:00,1619.0,10.845253,10845.253 +31336,2025-03-10T23:13:34.277229-07:00,1706.0,10.840057,10840.057 +31337,2025-03-10T23:13:45.121228-07:00,1652.0,10.843999,10843.999 +31338,2025-03-10T23:13:55.952213-07:00,1706.0,10.830985,10830.985 +31339,2025-03-10T23:14:06.800980-07:00,1663.0,10.848767,10848.767 +31340,2025-03-10T23:14:17.638188-07:00,1616.0,10.837208,10837.208 +31341,2025-03-10T23:14:28.480923-07:00,1702.0,10.842735,10842.735 +31342,2025-03-10T23:14:39.325972-07:00,1707.0,10.845049,10845.049 +31343,2025-03-10T23:14:50.177902-07:00,1658.0,10.85193,10851.93 +31344,2025-03-10T23:15:01.018929-07:00,1648.0,10.841027,10841.027 +31345,2025-03-10T23:15:11.865259-07:00,1703.0,10.84633,10846.33 +31346,2025-03-10T23:15:22.704003-07:00,1689.0,10.838744,10838.744 +31347,2025-03-10T23:15:33.542930-07:00,1706.0,10.838927,10838.927 +31348,2025-03-10T23:15:44.377977-07:00,1655.0,10.835047,10835.047 +31349,2025-03-10T23:15:55.226326-07:00,1655.0,10.848349,10848.349 +31350,2025-03-10T23:16:06.068808-07:00,1695.0,10.842482,10842.482 +31351,2025-03-10T23:16:16.908977-07:00,1676.0,10.840169,10840.169 +31352,2025-03-10T23:16:27.750914-07:00,1691.0,10.841937,10841.937 +31353,2025-03-10T23:16:38.594673-07:00,1669.0,10.843759,10843.759 +31354,2025-03-10T23:16:49.429891-07:00,1706.0,10.835218,10835.218 +31355,2025-03-10T23:17:00.281107-07:00,1661.0,10.851216,10851.216 +31356,2025-03-10T23:17:11.119279-07:00,1707.0,10.838172,10838.172 +31357,2025-03-10T23:17:21.965751-07:00,1675.0,10.846472,10846.472 +31358,2025-03-10T23:17:32.814310-07:00,1696.0,10.848559,10848.559 +31359,2025-03-10T23:17:43.646902-07:00,1661.0,10.832592,10832.592 +31360,2025-03-10T23:17:54.489924-07:00,1701.0,10.843022,10843.022 +31361,2025-03-10T23:18:05.337108-07:00,1617.0,10.847184,10847.184 +31362,2025-03-10T23:18:16.175116-07:00,1616.0,10.838008,10838.008 +31363,2025-03-10T23:18:27.023074-07:00,1705.0,10.847958,10847.958 +31364,2025-03-10T23:18:37.868094-07:00,1661.0,10.84502,10845.02 +31365,2025-03-10T23:18:48.707288-07:00,1606.0,10.839194,10839.194 +31366,2025-03-10T23:18:59.559276-07:00,1704.0,10.851988,10851.988 +31367,2025-03-10T23:19:10.403174-07:00,1671.0,10.843898,10843.898 +31368,2025-03-10T23:19:21.249918-07:00,1705.0,10.846744,10846.744 +31369,2025-03-10T23:19:32.103173-07:00,1685.0,10.853255,10853.255 +31370,2025-03-10T23:19:42.948918-07:00,1683.0,10.845745,10845.745 +31371,2025-03-10T23:19:53.786904-07:00,1623.0,10.837986,10837.986 +31372,2025-03-10T23:20:04.637903-07:00,1706.0,10.850999,10850.999 +31373,2025-03-10T23:20:15.484098-07:00,1694.0,10.846195,10846.195 +31374,2025-03-10T23:20:26.326579-07:00,1701.0,10.842481,10842.481 +31375,2025-03-10T23:20:37.174919-07:00,1618.0,10.84834,10848.34 +31376,2025-03-10T23:20:48.024228-07:00,1654.0,10.849309,10849.309 +31377,2025-03-10T23:20:58.860917-07:00,1623.0,10.836689,10836.689 +31378,2025-03-10T23:21:09.711779-07:00,1615.0,10.850862,10850.862 +31379,2025-03-10T23:21:20.565249-07:00,1670.0,10.85347,10853.47 +31380,2025-03-10T23:21:31.401634-07:00,1685.0,10.836385,10836.385 +31381,2025-03-10T23:21:42.258393-07:00,1697.0,10.856759,10856.759 +31382,2025-03-10T23:21:53.095007-07:00,1698.0,10.836614,10836.614 +31383,2025-03-10T23:22:03.951916-07:00,1687.0,10.856909,10856.909 +31384,2025-03-10T23:22:14.796976-07:00,1666.0,10.84506,10845.06 +31385,2025-03-10T23:22:25.644077-07:00,1654.0,10.847101,10847.101 +31386,2025-03-10T23:22:36.488210-07:00,1651.0,10.844133,10844.133 +31387,2025-03-10T23:22:47.332265-07:00,1665.0,10.844055,10844.055 +31388,2025-03-10T23:22:58.181412-07:00,1657.0,10.849147,10849.147 +31389,2025-03-10T23:23:09.029150-07:00,1654.0,10.847738,10847.738 +31390,2025-03-10T23:23:19.878994-07:00,1659.0,10.849844,10849.844 +31391,2025-03-10T23:23:30.727140-07:00,1616.0,10.848146,10848.146 +31392,2025-03-10T23:23:41.570676-07:00,1646.0,10.843536,10843.536 +31393,2025-03-10T23:23:52.427510-07:00,1699.0,10.856834,10856.834 +31394,2025-03-10T23:24:03.273062-07:00,1701.0,10.845552,10845.552 +31395,2025-03-10T23:24:14.132357-07:00,1655.0,10.859295,10859.295 +31396,2025-03-10T23:24:24.977477-07:00,1687.0,10.84512,10845.12 +31397,2025-03-10T23:24:35.824086-07:00,1671.0,10.846609,10846.609 +31398,2025-03-10T23:24:46.673915-07:00,1648.0,10.849829,10849.829 +31399,2025-03-10T23:24:57.518922-07:00,1701.0,10.845007,10845.007 +31400,2025-03-10T23:25:08.372602-07:00,1616.0,10.85368,10853.68 +31401,2025-03-10T23:25:19.213924-07:00,1663.0,10.841322,10841.322 +31402,2025-03-10T23:25:30.059245-07:00,1664.0,10.845321,10845.321 +31403,2025-03-10T23:25:40.904897-07:00,1658.0,10.845652,10845.652 +31404,2025-03-10T23:25:51.755960-07:00,1655.0,10.851063,10851.063 +31405,2025-03-10T23:26:02.600068-07:00,1649.0,10.844108,10844.108 +31406,2025-03-10T23:26:13.452118-07:00,1706.0,10.85205,10852.05 +31407,2025-03-10T23:26:24.299994-07:00,1698.0,10.847876,10847.876 +31408,2025-03-10T23:26:35.152131-07:00,1645.0,10.852137,10852.137 +31409,2025-03-10T23:26:45.994294-07:00,1707.0,10.842163,10842.163 +31410,2025-03-10T23:26:56.849191-07:00,1700.0,10.854897,10854.897 +31411,2025-03-10T23:27:07.703746-07:00,1668.0,10.854555,10854.555 +31412,2025-03-10T23:27:18.546517-07:00,1650.0,10.842771,10842.771 +31413,2025-03-10T23:27:29.388978-07:00,1663.0,10.842461,10842.461 +31414,2025-03-10T23:27:40.243908-07:00,1669.0,10.85493,10854.93 +31415,2025-03-10T23:27:51.094228-07:00,1671.0,10.85032,10850.32 +31416,2025-03-10T23:28:01.939923-07:00,1691.0,10.845695,10845.695 +31417,2025-03-10T23:28:12.785958-07:00,1653.0,10.846035,10846.035 +31418,2025-03-10T23:28:23.626241-07:00,1665.0,10.840283,10840.283 +31419,2025-03-10T23:28:34.465915-07:00,1655.0,10.839674,10839.674 +31420,2025-03-10T23:28:45.309923-07:00,1705.0,10.844008,10844.008 +31421,2025-03-10T23:28:56.151925-07:00,1676.0,10.842002,10842.002 +31422,2025-03-10T23:29:07.000232-07:00,1697.0,10.848307,10848.307 +31423,2025-03-10T23:29:17.849998-07:00,1703.0,10.849766,10849.766 +31424,2025-03-10T23:29:28.698185-07:00,1686.0,10.848187,10848.187 +31425,2025-03-10T23:29:39.536919-07:00,1674.0,10.838734,10838.734 +31426,2025-03-10T23:29:50.388965-07:00,1680.0,10.852046,10852.046 +31427,2025-03-10T23:30:01.227919-07:00,1702.0,10.838954,10838.954 +31428,2025-03-10T23:30:12.074422-07:00,1617.0,10.846503,10846.503 +31429,2025-03-10T23:30:22.920468-07:00,1663.0,10.846046,10846.046 +31430,2025-03-10T23:30:33.762906-07:00,1677.0,10.842438,10842.438 +31431,2025-03-10T23:30:44.603930-07:00,1696.0,10.841024,10841.024 +31432,2025-03-10T23:30:55.453920-07:00,1653.0,10.84999,10849.99 +31433,2025-03-10T23:31:06.290912-07:00,1691.0,10.836992,10836.992 +31434,2025-03-10T23:31:17.137885-07:00,1615.0,10.846973,10846.973 +31435,2025-03-10T23:31:27.980965-07:00,1703.0,10.84308,10843.08 +31436,2025-03-10T23:31:38.835955-07:00,1693.0,10.85499,10854.99 +31437,2025-03-10T23:31:49.676134-07:00,1698.0,10.840179,10840.179 +31438,2025-03-10T23:32:00.523925-07:00,1665.0,10.847791,10847.791 +31439,2025-03-10T23:32:11.367194-07:00,1670.0,10.843269,10843.269 +31440,2025-03-10T23:32:22.217241-07:00,1626.0,10.850047,10850.047 +31441,2025-03-10T23:32:33.055123-07:00,1682.0,10.837882,10837.882 +31442,2025-03-10T23:32:43.909586-07:00,1632.0,10.854463,10854.463 +31443,2025-03-10T23:32:54.745090-07:00,1637.0,10.835504,10835.504 +31444,2025-03-10T23:33:05.594372-07:00,1648.0,10.849282,10849.282 +31445,2025-03-10T23:33:16.436844-07:00,1680.0,10.842472,10842.472 +31446,2025-03-10T23:33:27.273899-07:00,1644.0,10.837055,10837.055 +31447,2025-03-10T23:33:38.124923-07:00,1690.0,10.851024,10851.024 +31448,2025-03-10T23:33:48.966477-07:00,1678.0,10.841554,10841.554 +31449,2025-03-10T23:33:59.809241-07:00,1660.0,10.842764,10842.764 +31450,2025-03-10T23:34:10.659281-07:00,1682.0,10.85004,10850.04 +31451,2025-03-10T23:34:21.494167-07:00,1662.0,10.834886,10834.886 +31452,2025-03-10T23:34:32.339175-07:00,1630.0,10.845008,10845.008 +31453,2025-03-10T23:34:43.181628-07:00,1686.0,10.842453,10842.453 +31454,2025-03-10T23:34:54.026060-07:00,1631.0,10.844432,10844.432 +31455,2025-03-10T23:35:04.860901-07:00,1708.0,10.834841,10834.841 +31456,2025-03-10T23:35:15.706151-07:00,1658.0,10.84525,10845.25 +31457,2025-03-10T23:35:26.541237-07:00,1703.0,10.835086,10835.086 +31458,2025-03-10T23:35:37.383961-07:00,1635.0,10.842724,10842.724 +31459,2025-03-10T23:35:48.230913-07:00,1617.0,10.846952,10846.952 +31460,2025-03-10T23:35:59.073182-07:00,1702.0,10.842269,10842.269 +31461,2025-03-10T23:36:09.920988-07:00,1622.0,10.847806,10847.806 +31462,2025-03-10T23:36:20.764213-07:00,1670.0,10.843225,10843.225 +31463,2025-03-10T23:36:31.612251-07:00,1613.0,10.848038,10848.038 +31464,2025-03-10T23:36:42.446363-07:00,1706.0,10.834112,10834.112 +31465,2025-03-10T23:36:53.289192-07:00,1698.0,10.842829,10842.829 +31466,2025-03-10T23:37:04.141202-07:00,1689.0,10.85201,10852.01 +31467,2025-03-10T23:37:14.979768-07:00,1695.0,10.838566,10838.566 +31468,2025-03-10T23:37:25.817384-07:00,1653.0,10.837616,10837.616 +31469,2025-03-10T23:37:36.670969-07:00,1706.0,10.853585,10853.585 +31470,2025-03-10T23:37:47.510920-07:00,1618.0,10.839951,10839.951 +31471,2025-03-10T23:37:58.357339-07:00,1699.0,10.846419,10846.419 +31472,2025-03-10T23:38:09.205942-07:00,1643.0,10.848603,10848.603 +31473,2025-03-10T23:38:20.051126-07:00,1703.0,10.845184,10845.184 +31474,2025-03-10T23:38:30.895921-07:00,1709.0,10.844795,10844.795 +31475,2025-03-10T23:38:41.745921-07:00,1610.0,10.85,10850.0 +31476,2025-03-10T23:38:52.590918-07:00,1607.0,10.844997,10844.997 +31477,2025-03-10T23:39:03.440923-07:00,1680.0,10.850005,10850.005 +31478,2025-03-10T23:39:14.287959-07:00,1638.0,10.847036,10847.036 +31479,2025-03-10T23:39:25.137208-07:00,1658.0,10.849249,10849.249 +31480,2025-03-10T23:39:35.991221-07:00,1710.0,10.854013,10854.013 +31481,2025-03-10T23:39:46.829955-07:00,1638.0,10.838734,10838.734 +31482,2025-03-10T23:39:57.684163-07:00,1706.0,10.854208,10854.208 +31483,2025-03-10T23:40:08.526922-07:00,1680.0,10.842759,10842.759 +31484,2025-03-10T23:40:19.379901-07:00,1635.0,10.852979,10852.979 +31485,2025-03-10T23:40:30.220455-07:00,1702.0,10.840554,10840.554 +31486,2025-03-10T23:40:41.074338-07:00,1649.0,10.853883,10853.883 +31487,2025-03-10T23:40:51.915696-07:00,1703.0,10.841358,10841.358 +31488,2025-03-10T23:41:02.768038-07:00,1708.0,10.852342,10852.342 +31489,2025-03-10T23:41:13.612898-07:00,1706.0,10.84486,10844.86 +31490,2025-03-10T23:41:24.462295-07:00,1605.0,10.849397,10849.397 +31491,2025-03-10T23:41:35.298901-07:00,1646.0,10.836606,10836.606 +31492,2025-03-10T23:41:46.153923-07:00,1691.0,10.855022,10855.022 +31493,2025-03-10T23:41:56.992599-07:00,1691.0,10.838676,10838.676 +31494,2025-03-10T23:42:07.833205-07:00,1708.0,10.840606,10840.606 +31495,2025-03-10T23:42:18.681920-07:00,1692.0,10.848715,10848.715 +31496,2025-03-10T23:42:29.530906-07:00,1706.0,10.848986,10848.986 +31497,2025-03-10T23:42:40.368343-07:00,1648.0,10.837437,10837.437 +31498,2025-03-10T23:42:51.212506-07:00,1689.0,10.844163,10844.163 +31499,2025-03-10T23:43:02.061012-07:00,1621.0,10.848506,10848.506 +31500,2025-03-10T23:43:12.909919-07:00,1664.0,10.848907,10848.907 +31501,2025-03-10T23:43:23.752924-07:00,1663.0,10.843005,10843.005 +31502,2025-03-10T23:43:34.597339-07:00,1686.0,10.844415,10844.415 +31503,2025-03-10T23:43:45.446927-07:00,1616.0,10.849588,10849.588 +31504,2025-03-10T23:43:56.288370-07:00,1646.0,10.841443,10841.443 +31505,2025-03-10T23:44:07.143132-07:00,1653.0,10.854762,10854.762 +31506,2025-03-10T23:44:17.975923-07:00,1655.0,10.832791,10832.791 +31507,2025-03-10T23:44:28.822237-07:00,1664.0,10.846314,10846.314 +31508,2025-03-10T23:44:39.666356-07:00,1703.0,10.844119,10844.119 +31509,2025-03-10T23:44:50.505141-07:00,1699.0,10.838785,10838.785 +31510,2025-03-10T23:45:01.352066-07:00,1683.0,10.846925,10846.925 +31511,2025-03-10T23:45:12.194145-07:00,1677.0,10.842079,10842.079 +31512,2025-03-10T23:45:23.041915-07:00,1619.0,10.84777,10847.77 +31513,2025-03-10T23:45:33.890930-07:00,1706.0,10.849015,10849.015 +31514,2025-03-10T23:45:44.730952-07:00,1707.0,10.840022,10840.022 +31515,2025-03-10T23:45:55.573914-07:00,1706.0,10.842962,10842.962 +31516,2025-03-10T23:46:06.429923-07:00,1665.0,10.856009,10856.009 +31517,2025-03-10T23:46:17.271913-07:00,1709.0,10.84199,10841.99 +31518,2025-03-10T23:46:28.118927-07:00,1675.0,10.847014,10847.014 +31519,2025-03-10T23:46:38.962341-07:00,1684.0,10.843414,10843.414 +31520,2025-03-10T23:46:49.798901-07:00,1677.0,10.83656,10836.56 +31521,2025-03-10T23:47:00.635916-07:00,1703.0,10.837015,10837.015 +31522,2025-03-10T23:47:11.481927-07:00,1619.0,10.846011,10846.011 +31523,2025-03-10T23:47:22.322253-07:00,1699.0,10.840326,10840.326 +31524,2025-03-10T23:47:33.159968-07:00,1621.0,10.837715,10837.715 +31525,2025-03-10T23:47:44.009308-07:00,1687.0,10.84934,10849.34 +31526,2025-03-10T23:47:54.853437-07:00,1703.0,10.844129,10844.129 +31527,2025-03-10T23:48:05.695453-07:00,1703.0,10.842016,10842.016 +31528,2025-03-10T23:48:16.534921-07:00,1707.0,10.839468,10839.468 +31529,2025-03-10T23:48:27.379918-07:00,1707.0,10.844997,10844.997 +31530,2025-03-10T23:48:38.230918-07:00,1678.0,10.851,10851.0 +31531,2025-03-10T23:48:49.068985-07:00,1681.0,10.838067,10838.067 +31532,2025-03-10T23:48:59.918920-07:00,1616.0,10.849935,10849.935 +31533,2025-03-10T23:49:10.763230-07:00,1680.0,10.84431,10844.31 +31534,2025-03-10T23:49:21.609963-07:00,1666.0,10.846733,10846.733 +31535,2025-03-10T23:49:32.453387-07:00,1649.0,10.843424,10843.424 +31536,2025-03-10T23:49:43.297222-07:00,1663.0,10.843835,10843.835 +31537,2025-03-10T23:49:54.127253-07:00,1662.0,10.830031,10830.031 +31538,2025-03-10T23:50:04.975897-07:00,1708.0,10.848644,10848.644 +31539,2025-03-10T23:50:15.819079-07:00,1648.0,10.843182,10843.182 +31540,2025-03-10T23:50:26.655965-07:00,1654.0,10.836886,10836.886 +31541,2025-03-10T23:50:37.500192-07:00,1711.0,10.844227,10844.227 +31542,2025-03-10T23:50:48.343021-07:00,1649.0,10.842829,10842.829 +31543,2025-03-10T23:50:59.188923-07:00,1709.0,10.845902,10845.902 +31544,2025-03-10T23:51:10.030106-07:00,1655.0,10.841183,10841.183 +31545,2025-03-10T23:51:20.873263-07:00,1700.0,10.843157,10843.157 +31546,2025-03-10T23:51:31.714932-07:00,1673.0,10.841669,10841.669 +31547,2025-03-10T23:51:42.558176-07:00,1694.0,10.843244,10843.244 +31548,2025-03-10T23:51:53.401162-07:00,1646.0,10.842986,10842.986 +31549,2025-03-10T23:52:04.251975-07:00,1703.0,10.850813,10850.813 +31550,2025-03-10T23:52:15.093387-07:00,1706.0,10.841412,10841.412 +31551,2025-03-10T23:52:25.930954-07:00,1659.0,10.837567,10837.567 +31552,2025-03-10T23:52:36.777912-07:00,1630.0,10.846958,10846.958 +31553,2025-03-10T23:52:47.620112-07:00,1626.0,10.8422,10842.2 +31554,2025-03-10T23:52:58.460261-07:00,1649.0,10.840149,10840.149 +31555,2025-03-10T23:53:09.303229-07:00,1702.0,10.842968,10842.968 +31556,2025-03-10T23:53:20.148101-07:00,1710.0,10.844872,10844.872 +31557,2025-03-10T23:53:30.989920-07:00,1662.0,10.841819,10841.819 +31558,2025-03-10T23:53:41.831925-07:00,1710.0,10.842005,10842.005 +31559,2025-03-10T23:53:52.675253-07:00,1634.0,10.843328,10843.328 +31560,2025-03-10T23:54:03.516923-07:00,1708.0,10.84167,10841.67 +31561,2025-03-10T23:54:14.350257-07:00,1693.0,10.833334,10833.334 +31562,2025-03-10T23:54:25.199971-07:00,1633.0,10.849714,10849.714 +31563,2025-03-10T23:54:36.043631-07:00,1703.0,10.84366,10843.66 +31564,2025-03-10T23:54:46.879113-07:00,1694.0,10.835482,10835.482 +31565,2025-03-10T23:54:57.723148-07:00,1681.0,10.844035,10844.035 +31566,2025-03-10T23:55:08.564925-07:00,1653.0,10.841777,10841.777 +31567,2025-03-10T23:55:19.408444-07:00,1694.0,10.843519,10843.519 +31568,2025-03-10T23:55:30.248399-07:00,1675.0,10.839955,10839.955 +31569,2025-03-10T23:55:41.097240-07:00,1695.0,10.848841,10848.841 +31570,2025-03-10T23:55:51.943083-07:00,1618.0,10.845843,10845.843 +31571,2025-03-10T23:56:02.782527-07:00,1687.0,10.839444,10839.444 +31572,2025-03-10T23:56:13.625105-07:00,1695.0,10.842578,10842.578 +31573,2025-03-10T23:56:15.013970-07:00,1680.0,1.388865,1388.865 +31574,2025-03-10T23:56:24.474149-07:00,1690.0,9.460179,9460.179 +31575,2025-03-10T23:56:35.309897-07:00,1659.0,10.835748,10835.748 +31576,2025-03-10T23:56:46.161152-07:00,1696.0,10.851255,10851.255 +31577,2025-03-10T23:56:57.003061-07:00,1710.0,10.841909,10841.909 +31578,2025-03-10T23:57:07.847122-07:00,1657.0,10.844061,10844.061 +31579,2025-03-10T23:57:18.694965-07:00,1709.0,10.847843,10847.843 +31580,2025-03-10T23:57:29.536895-07:00,1633.0,10.84193,10841.93 +31581,2025-03-10T23:57:40.380918-07:00,1703.0,10.844023,10844.023 +31582,2025-03-10T23:57:51.225198-07:00,1712.0,10.84428,10844.28 +31583,2025-03-10T23:58:02.070255-07:00,1648.0,10.845057,10845.057 +31584,2025-03-10T23:58:12.915921-07:00,1663.0,10.845666,10845.666 +31585,2025-03-10T23:58:23.752151-07:00,1706.0,10.83623,10836.23 +31586,2025-03-10T23:58:34.590011-07:00,1653.0,10.83786,10837.86 +31587,2025-03-10T23:58:45.422919-07:00,1707.0,10.832908,10832.908 +31588,2025-03-10T23:58:56.261169-07:00,1697.0,10.83825,10838.25 +31589,2025-03-10T23:59:07.103261-07:00,1645.0,10.842092,10842.092 +31590,2025-03-10T23:59:17.939967-07:00,1709.0,10.836706,10836.706 +31591,2025-03-10T23:59:28.788920-07:00,1680.0,10.848953,10848.953 +31592,2025-03-10T23:59:39.625914-07:00,1648.0,10.836994,10836.994 +31593,2025-03-10T23:59:50.475323-07:00,1708.0,10.849409,10849.409 +31594,2025-03-11T00:00:01.314289-07:00,1710.0,10.838966,10838.966 +31595,2025-03-11T00:00:12.150924-07:00,1661.0,10.836635,10836.635 +31596,2025-03-11T00:00:23.005147-07:00,1681.0,10.854223,10854.223 +31597,2025-03-11T00:00:33.842410-07:00,1706.0,10.837263,10837.263 +31598,2025-03-11T00:00:44.686257-07:00,1663.0,10.843847,10843.847 +31599,2025-03-11T00:00:55.528182-07:00,1710.0,10.841925,10841.925 +31600,2025-03-11T00:01:06.365924-07:00,1699.0,10.837742,10837.742 +31601,2025-03-11T00:01:17.209923-07:00,1696.0,10.843999,10843.999 +31602,2025-03-11T00:01:28.040005-07:00,1709.0,10.830082,10830.082 +31603,2025-03-11T00:01:38.883301-07:00,1662.0,10.843296,10843.296 +31604,2025-03-11T00:01:49.725922-07:00,1707.0,10.842621,10842.621 +31605,2025-03-11T00:02:00.570269-07:00,1698.0,10.844347,10844.347 +31606,2025-03-11T00:02:11.419027-07:00,1687.0,10.848758,10848.758 +31607,2025-03-11T00:02:22.261419-07:00,1696.0,10.842392,10842.392 +31608,2025-03-11T00:02:33.104921-07:00,1666.0,10.843502,10843.502 +31609,2025-03-11T00:02:43.949132-07:00,1702.0,10.844211,10844.211 +31610,2025-03-11T00:02:54.796918-07:00,1659.0,10.847786,10847.786 +31611,2025-03-11T00:03:05.638302-07:00,1661.0,10.841384,10841.384 +31612,2025-03-11T00:03:16.482082-07:00,1658.0,10.84378,10843.78 +31613,2025-03-11T00:03:27.331235-07:00,1619.0,10.849153,10849.153 +31614,2025-03-11T00:03:38.180142-07:00,1649.0,10.848907,10848.907 +31615,2025-03-11T00:03:49.024493-07:00,1709.0,10.844351,10844.351 +31616,2025-03-11T00:03:59.866331-07:00,1711.0,10.841838,10841.838 +31617,2025-03-11T00:04:10.704912-07:00,1611.0,10.838581,10838.581 +31618,2025-03-11T00:04:21.552919-07:00,1681.0,10.848007,10848.007 +31619,2025-03-11T00:04:32.396067-07:00,1711.0,10.843148,10843.148 +31620,2025-03-11T00:04:43.236977-07:00,1690.0,10.84091,10840.91 +31621,2025-03-11T00:04:54.081228-07:00,1661.0,10.844251,10844.251 +31622,2025-03-11T00:05:04.925815-07:00,1671.0,10.844587,10844.587 +31623,2025-03-11T00:05:15.765924-07:00,1646.0,10.840109,10840.109 +31624,2025-03-11T00:05:26.600314-07:00,1695.0,10.83439,10834.39 +31625,2025-03-11T00:05:37.455460-07:00,1706.0,10.855146,10855.146 +31626,2025-03-11T00:05:48.248711-07:00,1707.0,10.793251,10793.251 +31627,2025-03-11T00:05:59.085892-07:00,1649.0,10.837181,10837.181 +31628,2025-03-11T00:06:09.931700-07:00,1643.0,10.845808,10845.808 +31629,2025-03-11T00:06:20.785120-07:00,1665.0,10.85342,10853.42 +31630,2025-03-11T00:06:31.628997-07:00,1663.0,10.843877,10843.877 +31631,2025-03-11T00:06:42.471744-07:00,1616.0,10.842747,10842.747 +31632,2025-03-11T00:06:53.311859-07:00,1623.0,10.840115,10840.115 +31633,2025-03-11T00:07:04.158695-07:00,1706.0,10.846836,10846.836 +31634,2025-03-11T00:07:15.007706-07:00,1711.0,10.849011,10849.011 +31635,2025-03-11T00:07:25.855093-07:00,1703.0,10.847387,10847.387 +31636,2025-03-11T00:07:36.698082-07:00,1617.0,10.842989,10842.989 +31637,2025-03-11T00:07:47.539708-07:00,1658.0,10.841626,10841.626 +31638,2025-03-11T00:07:58.392705-07:00,1711.0,10.852997,10852.997 +31639,2025-03-11T00:08:09.228320-07:00,1658.0,10.835615,10835.615 +31640,2025-03-11T00:08:20.080871-07:00,1619.0,10.852551,10852.551 +31641,2025-03-11T00:08:30.922279-07:00,1711.0,10.841408,10841.408 +31642,2025-03-11T00:08:41.758014-07:00,1675.0,10.835735,10835.735 +31643,2025-03-11T00:08:52.595711-07:00,1612.0,10.837697,10837.697 +31644,2025-03-11T00:09:03.433006-07:00,1712.0,10.837295,10837.295 +31645,2025-03-11T00:09:14.272839-07:00,1637.0,10.839833,10839.833 +31646,2025-03-11T00:09:25.118662-07:00,1651.0,10.845823,10845.823 +31647,2025-03-11T00:09:35.969932-07:00,1710.0,10.85127,10851.27 +31648,2025-03-11T00:09:46.815759-07:00,1708.0,10.845827,10845.827 +31649,2025-03-11T00:09:57.656311-07:00,1711.0,10.840552,10840.552 +31650,2025-03-11T00:10:08.489919-07:00,1705.0,10.833608,10833.608 +31651,2025-03-11T00:10:19.331685-07:00,1658.0,10.841766,10841.766 +31652,2025-03-11T00:10:30.176098-07:00,1657.0,10.844413,10844.413 +31653,2025-03-11T00:10:41.013708-07:00,1712.0,10.83761,10837.61 +31654,2025-03-11T00:10:51.857930-07:00,1707.0,10.844222,10844.222 +31655,2025-03-11T00:11:02.706708-07:00,1684.0,10.848778,10848.778 +31656,2025-03-11T00:11:13.544864-07:00,1666.0,10.838156,10838.156 +31657,2025-03-11T00:11:24.388277-07:00,1633.0,10.843413,10843.413 +31658,2025-03-11T00:11:35.228774-07:00,1682.0,10.840497,10840.497 +31659,2025-03-11T00:11:46.066840-07:00,1654.0,10.838066,10838.066 +31660,2025-03-11T00:11:56.916778-07:00,1616.0,10.849938,10849.938 +31661,2025-03-11T00:12:07.760181-07:00,1705.0,10.843403,10843.403 +31662,2025-03-11T00:12:18.594703-07:00,1707.0,10.834522,10834.522 +31663,2025-03-11T00:12:29.438281-07:00,1711.0,10.843578,10843.578 +31664,2025-03-11T00:12:40.284703-07:00,1678.0,10.846422,10846.422 +31665,2025-03-11T00:12:51.128074-07:00,1711.0,10.843371,10843.371 +31666,2025-03-11T00:13:01.979094-07:00,1711.0,10.85102,10851.02 +31667,2025-03-11T00:13:12.816743-07:00,1709.0,10.837649,10837.649 +31668,2025-03-11T00:13:23.655985-07:00,1698.0,10.839242,10839.242 +31669,2025-03-11T00:13:34.505810-07:00,1631.0,10.849825,10849.825 +31670,2025-03-11T00:13:45.339066-07:00,1680.0,10.833256,10833.256 +31671,2025-03-11T00:13:56.182692-07:00,1667.0,10.843626,10843.626 +31672,2025-03-11T00:14:07.019708-07:00,1710.0,10.837016,10837.016 +31673,2025-03-11T00:14:17.865850-07:00,1616.0,10.846142,10846.142 +31674,2025-03-11T00:14:28.708652-07:00,1657.0,10.842802,10842.802 +31675,2025-03-11T00:14:39.544704-07:00,1635.0,10.836052,10836.052 +31676,2025-03-11T00:14:50.390069-07:00,1618.0,10.845365,10845.365 +31677,2025-03-11T00:15:01.237921-07:00,1710.0,10.847852,10847.852 +31678,2025-03-11T00:15:12.072620-07:00,1711.0,10.834699,10834.699 +31679,2025-03-11T00:15:22.918932-07:00,1687.0,10.846312,10846.312 +31680,2025-03-11T00:15:33.755709-07:00,1707.0,10.836777,10836.777 +31681,2025-03-11T00:15:44.601936-07:00,1659.0,10.846227,10846.227 +31682,2025-03-11T00:15:55.446995-07:00,1711.0,10.845059,10845.059 +31683,2025-03-11T00:16:06.282702-07:00,1669.0,10.835707,10835.707 +31684,2025-03-11T00:16:17.127701-07:00,1710.0,10.844999,10844.999 +31685,2025-03-11T00:16:27.966014-07:00,1653.0,10.838313,10838.313 +31686,2025-03-11T00:16:38.807412-07:00,1710.0,10.841398,10841.398 +31687,2025-03-11T00:16:49.648681-07:00,1670.0,10.841269,10841.269 +31688,2025-03-11T00:17:00.488962-07:00,1683.0,10.840281,10840.281 +31689,2025-03-11T00:17:11.325016-07:00,1621.0,10.836054,10836.054 +31690,2025-03-11T00:17:22.155707-07:00,1707.0,10.830691,10830.691 +31691,2025-03-11T00:17:33.001995-07:00,1675.0,10.846288,10846.288 +31692,2025-03-11T00:17:43.845037-07:00,1627.0,10.843042,10843.042 +31693,2025-03-11T00:17:54.682708-07:00,1685.0,10.837671,10837.671 +31694,2025-03-11T00:18:05.528704-07:00,1648.0,10.845996,10845.996 +31695,2025-03-11T00:18:16.367767-07:00,1699.0,10.839063,10839.063 +31696,2025-03-11T00:18:27.213858-07:00,1635.0,10.846091,10846.091 +31697,2025-03-11T00:18:38.045698-07:00,1712.0,10.83184,10831.84 +31698,2025-03-11T00:18:48.877879-07:00,1707.0,10.832181,10832.181 +31699,2025-03-11T00:18:59.723267-07:00,1634.0,10.845388,10845.388 +31700,2025-03-11T00:19:10.560728-07:00,1637.0,10.837461,10837.461 +31701,2025-03-11T00:19:21.393707-07:00,1646.0,10.832979,10832.979 +31702,2025-03-11T00:19:32.235697-07:00,1615.0,10.84199,10841.99 +31703,2025-03-11T00:19:43.079497-07:00,1679.0,10.8438,10843.8 +31704,2025-03-11T00:19:53.927059-07:00,1711.0,10.847562,10847.562 +31705,2025-03-11T00:20:04.763943-07:00,1707.0,10.836884,10836.884 +31706,2025-03-11T00:20:15.608758-07:00,1680.0,10.844815,10844.815 +31707,2025-03-11T00:20:26.455111-07:00,1712.0,10.846353,10846.353 +31708,2025-03-11T00:20:37.286708-07:00,1690.0,10.831597,10831.597 +31709,2025-03-11T00:20:48.131068-07:00,1626.0,10.84436,10844.36 +31710,2025-03-11T00:20:58.974706-07:00,1616.0,10.843638,10843.638 +31711,2025-03-11T00:21:09.818037-07:00,1642.0,10.843331,10843.331 +31712,2025-03-11T00:21:20.661049-07:00,1648.0,10.843012,10843.012 +31713,2025-03-11T00:21:31.502837-07:00,1711.0,10.841788,10841.788 +31714,2025-03-11T00:21:42.340098-07:00,1689.0,10.837261,10837.261 +31715,2025-03-11T00:21:53.189711-07:00,1698.0,10.849613,10849.613 +31716,2025-03-11T00:22:04.027144-07:00,1713.0,10.837433,10837.433 +31717,2025-03-11T00:22:14.871732-07:00,1655.0,10.844588,10844.588 +31718,2025-03-11T00:22:25.704850-07:00,1710.0,10.833118,10833.118 +31719,2025-03-11T00:22:36.537984-07:00,1672.0,10.833134,10833.134 +31720,2025-03-11T00:22:47.383436-07:00,1635.0,10.845452,10845.452 +31721,2025-03-11T00:22:58.228043-07:00,1667.0,10.844607,10844.607 +31722,2025-03-11T00:23:09.069272-07:00,1618.0,10.841229,10841.229 +31723,2025-03-11T00:23:19.906995-07:00,1673.0,10.837723,10837.723 +31724,2025-03-11T00:23:30.748707-07:00,1713.0,10.841712,10841.712 +31725,2025-03-11T00:23:41.586103-07:00,1686.0,10.837396,10837.396 +31726,2025-03-11T00:23:52.430043-07:00,1664.0,10.84394,10843.94 +31727,2025-03-11T00:24:03.267701-07:00,1695.0,10.837658,10837.658 +31728,2025-03-11T00:24:14.115988-07:00,1637.0,10.848287,10848.287 +31729,2025-03-11T00:24:24.960078-07:00,1631.0,10.84409,10844.09 +31730,2025-03-11T00:24:25.280853-07:00,1631.0,0.320775,320.775 +31731,2025-03-11T00:24:35.805827-07:00,1693.0,10.524974,10524.974 +31732,2025-03-11T00:24:46.644484-07:00,1630.0,10.838657,10838.657 +31733,2025-03-11T00:24:57.482702-07:00,1625.0,10.838218,10838.218 +31734,2025-03-11T00:25:08.317754-07:00,1659.0,10.835052,10835.052 +31735,2025-03-11T00:25:19.153785-07:00,1680.0,10.836031,10836.031 +31736,2025-03-11T00:25:29.994702-07:00,1712.0,10.840917,10840.917 +31737,2025-03-11T00:25:40.832993-07:00,1653.0,10.838291,10838.291 +31738,2025-03-11T00:25:51.670993-07:00,1711.0,10.838,10838.0 +31739,2025-03-11T00:26:02.523323-07:00,1712.0,10.85233,10852.33 +31740,2025-03-11T00:26:13.365705-07:00,1711.0,10.842382,10842.382 +31741,2025-03-11T00:26:24.199707-07:00,1680.0,10.834002,10834.002 +31742,2025-03-11T00:26:35.045865-07:00,1648.0,10.846158,10846.158 +31743,2025-03-11T00:26:45.885168-07:00,1667.0,10.839303,10839.303 +31744,2025-03-11T00:26:56.721962-07:00,1706.0,10.836794,10836.794 +31745,2025-03-11T00:27:07.571782-07:00,1697.0,10.84982,10849.82 +31746,2025-03-11T00:27:18.415068-07:00,1711.0,10.843286,10843.286 +31747,2025-03-11T00:27:29.253881-07:00,1694.0,10.838813,10838.813 +31748,2025-03-11T00:27:40.099707-07:00,1714.0,10.845826,10845.826 +31749,2025-03-11T00:27:50.938971-07:00,1712.0,10.839264,10839.264 +31750,2025-03-11T00:28:01.781836-07:00,1633.0,10.842865,10842.865 +31751,2025-03-11T00:28:12.627051-07:00,1710.0,10.845215,10845.215 +31752,2025-03-11T00:28:23.461431-07:00,1654.0,10.83438,10834.38 +31753,2025-03-11T00:28:34.304733-07:00,1664.0,10.843302,10843.302 +31754,2025-03-11T00:28:45.140969-07:00,1702.0,10.836236,10836.236 +31755,2025-03-11T00:28:55.979705-07:00,1647.0,10.838736,10838.736 +31756,2025-03-11T00:29:06.817847-07:00,1642.0,10.838142,10838.142 +31757,2025-03-11T00:29:17.657043-07:00,1706.0,10.839196,10839.196 +31758,2025-03-11T00:29:28.500751-07:00,1657.0,10.843708,10843.708 +31759,2025-03-11T00:29:39.341053-07:00,1623.0,10.840302,10840.302 +31760,2025-03-11T00:29:50.180920-07:00,1710.0,10.839867,10839.867 +31761,2025-03-11T00:30:01.016895-07:00,1712.0,10.835975,10835.975 +31762,2025-03-11T00:30:11.852753-07:00,1635.0,10.835858,10835.858 +31763,2025-03-11T00:30:22.696851-07:00,1615.0,10.844098,10844.098 +31764,2025-03-11T00:30:33.544068-07:00,1643.0,10.847217,10847.217 +31765,2025-03-11T00:30:44.377906-07:00,1682.0,10.833838,10833.838 +31766,2025-03-11T00:30:55.218820-07:00,1712.0,10.840914,10840.914 +31767,2025-03-11T00:31:06.057045-07:00,1674.0,10.838225,10838.225 +31768,2025-03-11T00:31:16.907039-07:00,1665.0,10.849994,10849.994 +31769,2025-03-11T00:31:27.742716-07:00,1680.0,10.835677,10835.677 +31770,2025-03-11T00:31:38.589707-07:00,1712.0,10.846991,10846.991 +31771,2025-03-11T00:31:49.433682-07:00,1702.0,10.843975,10843.975 +31772,2025-03-11T00:32:00.277962-07:00,1625.0,10.84428,10844.28 +31773,2025-03-11T00:32:11.116507-07:00,1711.0,10.838545,10838.545 +31774,2025-03-11T00:32:21.959697-07:00,1671.0,10.84319,10843.19 +31775,2025-03-11T00:32:32.805708-07:00,1709.0,10.846011,10846.011 +31776,2025-03-11T00:32:43.651731-07:00,1659.0,10.846023,10846.023 +31777,2025-03-11T00:32:54.495035-07:00,1709.0,10.843304,10843.304 +31778,2025-03-11T00:33:05.337241-07:00,1712.0,10.842206,10842.206 +31779,2025-03-11T00:33:16.180699-07:00,1658.0,10.843458,10843.458 +31780,2025-03-11T00:33:27.028708-07:00,1695.0,10.848009,10848.009 +31781,2025-03-11T00:33:37.876697-07:00,1647.0,10.847989,10847.989 +31782,2025-03-11T00:33:48.719261-07:00,1715.0,10.842564,10842.564 +31783,2025-03-11T00:33:59.564043-07:00,1669.0,10.844782,10844.782 +31784,2025-03-11T00:34:10.416049-07:00,1657.0,10.852006,10852.006 +31785,2025-03-11T00:34:21.250105-07:00,1712.0,10.834056,10834.056 +31786,2025-03-11T00:34:32.093737-07:00,1712.0,10.843632,10843.632 +31787,2025-03-11T00:34:42.937142-07:00,1685.0,10.843405,10843.405 +31788,2025-03-11T00:34:53.791090-07:00,1664.0,10.853948,10853.948 +31789,2025-03-11T00:35:04.633196-07:00,1699.0,10.842106,10842.106 +31790,2025-03-11T00:35:15.476700-07:00,1646.0,10.843504,10843.504 +31791,2025-03-11T00:35:26.319701-07:00,1619.0,10.843001,10843.001 +31792,2025-03-11T00:35:37.168650-07:00,1712.0,10.848949,10848.949 +31793,2025-03-11T00:35:48.017715-07:00,1679.0,10.849065,10849.065 +31794,2025-03-11T00:35:58.859315-07:00,1714.0,10.8416,10841.6 +31795,2025-03-11T00:36:09.702828-07:00,1701.0,10.843513,10843.513 +31796,2025-03-11T00:36:20.548857-07:00,1701.0,10.846029,10846.029 +31797,2025-03-11T00:36:31.396008-07:00,1643.0,10.847151,10847.151 +31798,2025-03-11T00:36:42.244763-07:00,1682.0,10.848755,10848.755 +31799,2025-03-11T00:36:53.088292-07:00,1667.0,10.843529,10843.529 +31800,2025-03-11T00:37:03.930034-07:00,1713.0,10.841742,10841.742 +31801,2025-03-11T00:37:14.779878-07:00,1663.0,10.849844,10849.844 +31802,2025-03-11T00:37:25.623699-07:00,1659.0,10.843821,10843.821 +31803,2025-03-11T00:37:36.469706-07:00,1655.0,10.846007,10846.007 +31804,2025-03-11T00:37:47.313971-07:00,1639.0,10.844265,10844.265 +31805,2025-03-11T00:37:58.153718-07:00,1684.0,10.839747,10839.747 +31806,2025-03-11T00:38:09.001261-07:00,1694.0,10.847543,10847.543 +31807,2025-03-11T00:38:19.842818-07:00,1624.0,10.841557,10841.557 +31808,2025-03-11T00:38:30.686703-07:00,1671.0,10.843885,10843.885 +31809,2025-03-11T00:38:41.531222-07:00,1677.0,10.844519,10844.519 +31810,2025-03-11T00:38:52.373976-07:00,1712.0,10.842754,10842.754 +31811,2025-03-11T00:39:03.226775-07:00,1670.0,10.852799,10852.799 +31812,2025-03-11T00:39:14.070707-07:00,1677.0,10.843932,10843.932 +31813,2025-03-11T00:39:24.914897-07:00,1715.0,10.84419,10844.19 +31814,2025-03-11T00:39:35.754702-07:00,1685.0,10.839805,10839.805 +31815,2025-03-11T00:39:46.601027-07:00,1626.0,10.846325,10846.325 +31816,2025-03-11T00:39:57.452072-07:00,1673.0,10.851045,10851.045 +31817,2025-03-11T00:40:08.297732-07:00,1712.0,10.84566,10845.66 +31818,2025-03-11T00:40:19.145943-07:00,1683.0,10.848211,10848.211 +31819,2025-03-11T00:40:29.981762-07:00,1663.0,10.835819,10835.819 +31820,2025-03-11T00:40:40.826114-07:00,1655.0,10.844352,10844.352 +31821,2025-03-11T00:40:51.662944-07:00,1643.0,10.83683,10836.83 +31822,2025-03-11T00:41:02.500704-07:00,1680.0,10.83776,10837.76 +31823,2025-03-11T00:41:13.343695-07:00,1697.0,10.842991,10842.991 +31824,2025-03-11T00:41:24.188108-07:00,1713.0,10.844413,10844.413 +31825,2025-03-11T00:41:35.027226-07:00,1678.0,10.839118,10839.118 +31826,2025-03-11T00:41:45.862779-07:00,1654.0,10.835553,10835.553 +31827,2025-03-11T00:41:56.706667-07:00,1649.0,10.843888,10843.888 +31828,2025-03-11T00:42:07.538692-07:00,1715.0,10.832025,10832.025 +31829,2025-03-11T00:42:18.382708-07:00,1658.0,10.844016,10844.016 +31830,2025-03-11T00:42:29.223676-07:00,1659.0,10.840968,10840.968 +31831,2025-03-11T00:42:40.055186-07:00,1662.0,10.83151,10831.51 +31832,2025-03-11T00:42:50.893948-07:00,1666.0,10.838762,10838.762 +31833,2025-03-11T00:43:01.730223-07:00,1707.0,10.836275,10836.275 +31834,2025-03-11T00:43:12.573284-07:00,1635.0,10.843061,10843.061 +31835,2025-03-11T00:43:23.399698-07:00,1637.0,10.826414,10826.414 +31836,2025-03-11T00:43:34.236051-07:00,1643.0,10.836353,10836.353 +31837,2025-03-11T00:43:45.076683-07:00,1712.0,10.840632,10840.632 +31838,2025-03-11T00:43:55.911849-07:00,1696.0,10.835166,10835.166 +31839,2025-03-11T00:44:06.754736-07:00,1653.0,10.842887,10842.887 +31840,2025-03-11T00:44:17.588805-07:00,1646.0,10.834069,10834.069 +31841,2025-03-11T00:44:28.430905-07:00,1709.0,10.8421,10842.1 +31842,2025-03-11T00:44:39.272710-07:00,1670.0,10.841805,10841.805 +31843,2025-03-11T00:44:50.103729-07:00,1715.0,10.831019,10831.019 +31844,2025-03-11T00:45:00.943706-07:00,1712.0,10.839977,10839.977 +31845,2025-03-11T00:45:11.780041-07:00,1647.0,10.836335,10836.335 +31846,2025-03-11T00:45:22.618914-07:00,1626.0,10.838873,10838.873 +31847,2025-03-11T00:45:33.464704-07:00,1691.0,10.84579,10845.79 +31848,2025-03-11T00:45:44.296685-07:00,1685.0,10.831981,10831.981 +31849,2025-03-11T00:45:55.129789-07:00,1653.0,10.833104,10833.104 +31850,2025-03-11T00:46:05.971844-07:00,1643.0,10.842055,10842.055 +31851,2025-03-11T00:46:16.811110-07:00,1655.0,10.839266,10839.266 +31852,2025-03-11T00:46:27.646697-07:00,1713.0,10.835587,10835.587 +31853,2025-03-11T00:46:38.487931-07:00,1713.0,10.841234,10841.234 +31854,2025-03-11T00:46:49.321749-07:00,1712.0,10.833818,10833.818 +31855,2025-03-11T00:47:00.159671-07:00,1717.0,10.837922,10837.922 +31856,2025-03-11T00:47:11.000777-07:00,1665.0,10.841106,10841.106 +31857,2025-03-11T00:47:21.839352-07:00,1661.0,10.838575,10838.575 +31858,2025-03-11T00:47:32.671261-07:00,1662.0,10.831909,10831.909 +31859,2025-03-11T00:47:43.513694-07:00,1643.0,10.842433,10842.433 +31860,2025-03-11T00:47:54.345961-07:00,1713.0,10.832267,10832.267 +31861,2025-03-11T00:48:05.183427-07:00,1703.0,10.837466,10837.466 +31862,2025-03-11T00:48:16.020800-07:00,1619.0,10.837373,10837.373 +31863,2025-03-11T00:48:26.863768-07:00,1712.0,10.842968,10842.968 +31864,2025-03-11T00:48:37.707815-07:00,1691.0,10.844047,10844.047 +31865,2025-03-11T00:48:48.543703-07:00,1634.0,10.835888,10835.888 +31866,2025-03-11T00:48:59.392702-07:00,1663.0,10.848999,10848.999 +31867,2025-03-11T00:49:10.226232-07:00,1679.0,10.83353,10833.53 +31868,2025-03-11T00:49:21.073748-07:00,1671.0,10.847516,10847.516 +31869,2025-03-11T00:49:31.923025-07:00,1708.0,10.849277,10849.277 +31870,2025-03-11T00:49:42.765993-07:00,1679.0,10.842968,10842.968 +31871,2025-03-11T00:49:53.598779-07:00,1621.0,10.832786,10832.786 +31872,2025-03-11T00:50:04.436971-07:00,1678.0,10.838192,10838.192 +31873,2025-03-11T00:50:15.284814-07:00,1661.0,10.847843,10847.843 +31874,2025-03-11T00:50:26.116231-07:00,1642.0,10.831417,10831.417 +31875,2025-03-11T00:50:36.958120-07:00,1693.0,10.841889,10841.889 +31876,2025-03-11T00:50:47.791748-07:00,1709.0,10.833628,10833.628 +31877,2025-03-11T00:50:58.632708-07:00,1712.0,10.84096,10840.96 +31878,2025-03-11T00:51:09.471926-07:00,1714.0,10.839218,10839.218 +31879,2025-03-11T00:51:20.315051-07:00,1713.0,10.843125,10843.125 +31880,2025-03-11T00:51:31.169140-07:00,1635.0,10.854089,10854.089 +31881,2025-03-11T00:51:42.002928-07:00,1701.0,10.833788,10833.788 +31882,2025-03-11T00:51:52.846706-07:00,1715.0,10.843778,10843.778 +31883,2025-03-11T00:52:03.680006-07:00,1648.0,10.8333,10833.3 +31884,2025-03-11T00:52:14.522849-07:00,1706.0,10.842843,10842.843 +31885,2025-03-11T00:52:25.355958-07:00,1673.0,10.833109,10833.109 +31886,2025-03-11T00:52:36.196738-07:00,1712.0,10.84078,10840.78 +31887,2025-03-11T00:52:47.042464-07:00,1716.0,10.845726,10845.726 +31888,2025-03-11T00:52:57.872767-07:00,1665.0,10.830303,10830.303 +31889,2025-03-11T00:53:08.718757-07:00,1630.0,10.84599,10845.99 +31890,2025-03-11T00:53:19.559921-07:00,1712.0,10.841164,10841.164 +31891,2025-03-11T00:53:30.410241-07:00,1712.0,10.85032,10850.32 +31892,2025-03-11T00:53:41.245283-07:00,1658.0,10.835042,10835.042 +31893,2025-03-11T00:53:52.088771-07:00,1680.0,10.843488,10843.488 +31894,2025-03-11T00:54:02.920664-07:00,1647.0,10.831893,10831.893 +31895,2025-03-11T00:54:13.772800-07:00,1666.0,10.852136,10852.136 +31896,2025-03-11T00:54:24.616429-07:00,1623.0,10.843629,10843.629 +31897,2025-03-11T00:54:35.459702-07:00,1642.0,10.843273,10843.273 +31898,2025-03-11T00:54:46.303298-07:00,1689.0,10.843596,10843.596 +31899,2025-03-11T00:54:57.146095-07:00,1670.0,10.842797,10842.797 +31900,2025-03-11T00:55:07.988935-07:00,1697.0,10.84284,10842.84 +31901,2025-03-11T00:55:18.822856-07:00,1675.0,10.833921,10833.921 +31902,2025-03-11T00:55:29.665165-07:00,1712.0,10.842309,10842.309 +31903,2025-03-11T00:55:40.514045-07:00,1670.0,10.84888,10848.88 +31904,2025-03-11T00:55:51.351837-07:00,1714.0,10.837792,10837.792 +31905,2025-03-11T00:56:02.193707-07:00,1662.0,10.84187,10841.87 +31906,2025-03-11T00:56:13.036708-07:00,1654.0,10.843001,10843.001 +31907,2025-03-11T00:56:23.884278-07:00,1663.0,10.84757,10847.57 +31908,2025-03-11T00:56:34.729259-07:00,1684.0,10.844981,10844.981 +31909,2025-03-11T00:56:45.572708-07:00,1680.0,10.843449,10843.449 +31910,2025-03-11T00:56:46.351830-07:00,1680.0,0.779122,779.122 +31911,2025-03-11T00:56:56.409763-07:00,1707.0,10.057933,10057.933 +31912,2025-03-11T00:57:07.240071-07:00,1705.0,10.830308,10830.308 +31913,2025-03-11T00:57:18.090775-07:00,1717.0,10.850704,10850.704 +31914,2025-03-11T00:57:28.927950-07:00,1693.0,10.837175,10837.175 +31915,2025-03-11T00:57:39.769742-07:00,1713.0,10.841792,10841.792 +31916,2025-03-11T00:57:50.614055-07:00,1681.0,10.844313,10844.313 +31917,2025-03-11T00:58:01.451939-07:00,1698.0,10.837884,10837.884 +31918,2025-03-11T00:58:12.290133-07:00,1652.0,10.838194,10838.194 +31919,2025-03-11T00:58:23.132142-07:00,1707.0,10.842009,10842.009 +31920,2025-03-11T00:58:33.975105-07:00,1663.0,10.842963,10842.963 +31921,2025-03-11T00:58:44.818053-07:00,1715.0,10.842948,10842.948 +31922,2025-03-11T00:58:55.661702-07:00,1671.0,10.843649,10843.649 +31923,2025-03-11T00:59:06.492039-07:00,1651.0,10.830337,10830.337 +31924,2025-03-11T00:59:17.331708-07:00,1629.0,10.839669,10839.669 +31925,2025-03-11T00:59:28.178704-07:00,1697.0,10.846996,10846.996 +31926,2025-03-11T00:59:39.022704-07:00,1694.0,10.844,10844.0 +31927,2025-03-11T00:59:49.870231-07:00,1713.0,10.847527,10847.527 +31928,2025-03-11T01:00:00.708039-07:00,1718.0,10.837808,10837.808 +31929,2025-03-11T01:00:11.545707-07:00,1663.0,10.837668,10837.668 +31930,2025-03-11T01:00:22.391951-07:00,1667.0,10.846244,10846.244 +31931,2025-03-11T01:00:33.233849-07:00,1714.0,10.841898,10841.898 +31932,2025-03-11T01:00:44.070745-07:00,1696.0,10.836896,10836.896 +31933,2025-03-11T01:00:54.912707-07:00,1669.0,10.841962,10841.962 +31934,2025-03-11T01:01:05.761074-07:00,1677.0,10.848367,10848.367 +31935,2025-03-11T01:01:16.599101-07:00,1669.0,10.838027,10838.027 +31936,2025-03-11T01:01:27.441672-07:00,1678.0,10.842571,10842.571 +31937,2025-03-11T01:01:38.283700-07:00,1694.0,10.842028,10842.028 +31938,2025-03-11T01:01:49.129254-07:00,1679.0,10.845554,10845.554 +31939,2025-03-11T01:01:59.969851-07:00,1712.0,10.840597,10840.597 +31940,2025-03-11T01:02:10.814100-07:00,1685.0,10.844249,10844.249 +31941,2025-03-11T01:02:21.645833-07:00,1715.0,10.831733,10831.733 +31942,2025-03-11T01:02:32.493811-07:00,1665.0,10.847978,10847.978 +31943,2025-03-11T01:02:43.327220-07:00,1713.0,10.833409,10833.409 +31944,2025-03-11T01:02:54.170692-07:00,1626.0,10.843472,10843.472 +31945,2025-03-11T01:03:05.013188-07:00,1671.0,10.842496,10842.496 +31946,2025-03-11T01:03:15.851963-07:00,1713.0,10.838775,10838.775 +31947,2025-03-11T01:03:26.692199-07:00,1671.0,10.840236,10840.236 +31948,2025-03-11T01:03:37.529929-07:00,1698.0,10.83773,10837.73 +31949,2025-03-11T01:03:48.367712-07:00,1685.0,10.837783,10837.783 +31950,2025-03-11T01:03:59.206222-07:00,1673.0,10.83851,10838.51 +31951,2025-03-11T01:04:10.048692-07:00,1693.0,10.84247,10842.47 +31952,2025-03-11T01:04:20.887690-07:00,1680.0,10.838998,10838.998 +31953,2025-03-11T01:04:31.729960-07:00,1679.0,10.84227,10842.27 +31954,2025-03-11T01:04:42.576790-07:00,1714.0,10.84683,10846.83 +31955,2025-03-11T01:04:53.410698-07:00,1674.0,10.833908,10833.908 +31956,2025-03-11T01:05:04.258929-07:00,1706.0,10.848231,10848.231 +31957,2025-03-11T01:05:15.095118-07:00,1675.0,10.836189,10836.189 +31958,2025-03-11T01:05:25.927830-07:00,1670.0,10.832712,10832.712 +31959,2025-03-11T01:05:36.763707-07:00,1713.0,10.835877,10835.877 +31960,2025-03-11T01:05:47.653703-07:00,1674.0,10.889996,10889.996 +31961,2025-03-11T01:05:58.502988-07:00,1712.0,10.849285,10849.285 +31962,2025-03-11T01:06:09.339722-07:00,1712.0,10.836734,10836.734 +31963,2025-03-11T01:06:20.184061-07:00,1623.0,10.844339,10844.339 +31964,2025-03-11T01:06:31.026974-07:00,1679.0,10.842913,10842.913 +31965,2025-03-11T01:06:41.873021-07:00,1717.0,10.846047,10846.047 +31966,2025-03-11T01:06:52.716593-07:00,1658.0,10.843572,10843.572 +31967,2025-03-11T01:07:03.550692-07:00,1708.0,10.834099,10834.099 +31968,2025-03-11T01:07:14.385945-07:00,1616.0,10.835253,10835.253 +31969,2025-03-11T01:07:25.222794-07:00,1654.0,10.836849,10836.849 +31970,2025-03-11T01:07:36.054956-07:00,1680.0,10.832162,10832.162 +31971,2025-03-11T01:07:46.898041-07:00,1651.0,10.843085,10843.085 +31972,2025-03-11T01:07:57.740270-07:00,1715.0,10.842229,10842.229 +31973,2025-03-11T01:08:08.572700-07:00,1629.0,10.83243,10832.43 +31974,2025-03-11T01:08:19.415481-07:00,1697.0,10.842781,10842.781 +31975,2025-03-11T01:08:30.246916-07:00,1680.0,10.831435,10831.435 +31976,2025-03-11T01:08:41.084987-07:00,1716.0,10.838071,10838.071 +31977,2025-03-11T01:08:51.927791-07:00,1746.0,10.842804,10842.804 +31978,2025-03-11T01:09:02.764785-07:00,1734.0,10.836994,10836.994 +31979,2025-03-11T01:09:13.597695-07:00,1749.0,10.83291,10832.91 +31980,2025-03-11T01:09:24.439761-07:00,1738.0,10.842066,10842.066 +31981,2025-03-11T01:09:35.280043-07:00,1773.0,10.840282,10840.282 +31982,2025-03-11T01:09:46.126878-07:00,1685.0,10.846835,10846.835 +31983,2025-03-11T01:09:56.957700-07:00,1767.0,10.830822,10830.822 +31984,2025-03-11T01:10:07.803074-07:00,1744.0,10.845374,10845.374 +31985,2025-03-11T01:10:18.644218-07:00,1709.0,10.841144,10841.144 +31986,2025-03-11T01:10:29.487696-07:00,1783.0,10.843478,10843.478 +31987,2025-03-11T01:10:40.319827-07:00,1744.0,10.832131,10832.131 +31988,2025-03-11T01:10:51.162269-07:00,1755.0,10.842442,10842.442 +31989,2025-03-11T01:11:02.005722-07:00,1776.0,10.843453,10843.453 +31990,2025-03-11T01:11:12.846833-07:00,1723.0,10.841111,10841.111 +31991,2025-03-11T01:11:23.685237-07:00,1713.0,10.838404,10838.404 +31992,2025-03-11T01:11:34.523309-07:00,1779.0,10.838072,10838.072 +31993,2025-03-11T01:11:45.364696-07:00,1775.0,10.841387,10841.387 +31994,2025-03-11T01:11:56.197691-07:00,1771.0,10.832995,10832.995 +31995,2025-03-11T01:12:07.041017-07:00,1698.0,10.843326,10843.326 +31996,2025-03-11T01:12:17.873700-07:00,1710.0,10.832683,10832.683 +31997,2025-03-11T01:12:28.714696-07:00,1785.0,10.840996,10840.996 +31998,2025-03-11T01:12:39.549987-07:00,1730.0,10.835291,10835.291 +31999,2025-03-11T01:12:50.390720-07:00,1741.0,10.840733,10840.733 +32000,2025-03-11T01:13:01.222691-07:00,1782.0,10.831971,10831.971 +32001,2025-03-11T01:13:12.065986-07:00,1744.0,10.843295,10843.295 +32002,2025-03-11T01:13:22.896731-07:00,1739.0,10.830745,10830.745 +32003,2025-03-11T01:13:33.738690-07:00,1740.0,10.841959,10841.959 +32004,2025-03-11T01:13:44.579718-07:00,1712.0,10.841028,10841.028 +32005,2025-03-11T01:13:55.412700-07:00,1761.0,10.832982,10832.982 +32006,2025-03-11T01:14:06.246823-07:00,1735.0,10.834123,10834.123 +32007,2025-03-11T01:14:17.095749-07:00,1735.0,10.848926,10848.926 +32008,2025-03-11T01:14:27.932777-07:00,1693.0,10.837028,10837.028 +32009,2025-03-11T01:14:38.768702-07:00,1721.0,10.835925,10835.925 +32010,2025-03-11T01:14:49.608273-07:00,1711.0,10.839571,10839.571 +32011,2025-03-11T01:15:00.436690-07:00,1783.0,10.828417,10828.417 +32012,2025-03-11T01:15:11.279327-07:00,1771.0,10.842637,10842.637 +32013,2025-03-11T01:15:22.112096-07:00,1745.0,10.832769,10832.769 +32014,2025-03-11T01:15:32.953957-07:00,1711.0,10.841861,10841.861 +32015,2025-03-11T01:15:43.798736-07:00,1775.0,10.844779,10844.779 +32016,2025-03-11T01:15:54.638855-07:00,1774.0,10.840119,10840.119 +32017,2025-03-11T01:16:05.475000-07:00,1691.0,10.836145,10836.145 +32018,2025-03-11T01:16:16.312686-07:00,1744.0,10.837686,10837.686 +32019,2025-03-11T01:16:27.150762-07:00,1781.0,10.838076,10838.076 +32020,2025-03-11T01:16:37.990232-07:00,1689.0,10.83947,10839.47 +32021,2025-03-11T01:16:48.842945-07:00,1763.0,10.852713,10852.713 +32022,2025-03-11T01:16:59.668694-07:00,1746.0,10.825749,10825.749 +32023,2025-03-11T01:17:10.511496-07:00,1779.0,10.842802,10842.802 +32024,2025-03-11T01:17:21.354572-07:00,1699.0,10.843076,10843.076 +32025,2025-03-11T01:17:32.184943-07:00,1743.0,10.830371,10830.371 +32026,2025-03-11T01:17:43.013451-07:00,1782.0,10.828508,10828.508 +32027,2025-03-11T01:17:53.849754-07:00,1774.0,10.836303,10836.303 +32028,2025-03-11T01:18:04.693792-07:00,1755.0,10.844038,10844.038 +32029,2025-03-11T01:18:15.534031-07:00,1782.0,10.840239,10840.239 +32030,2025-03-11T01:18:26.370818-07:00,1782.0,10.836787,10836.787 +32031,2025-03-11T01:18:37.209697-07:00,1774.0,10.838879,10838.879 +32032,2025-03-11T01:18:48.053692-07:00,1775.0,10.843995,10843.995 +32033,2025-03-11T01:18:58.898592-07:00,1712.0,10.8449,10844.9 +32034,2025-03-11T01:19:09.731690-07:00,1728.0,10.833098,10833.098 +32035,2025-03-11T01:19:20.566865-07:00,1702.0,10.835175,10835.175 +32036,2025-03-11T01:19:31.404556-07:00,1743.0,10.837691,10837.691 +32037,2025-03-11T01:19:42.239834-07:00,1744.0,10.835278,10835.278 +32038,2025-03-11T01:19:53.077209-07:00,1743.0,10.837375,10837.375 +32039,2025-03-11T01:20:03.920012-07:00,1769.0,10.842803,10842.803 +32040,2025-03-11T01:20:14.753008-07:00,1775.0,10.832996,10832.996 +32041,2025-03-11T01:20:25.589014-07:00,1749.0,10.836006,10836.006 +32042,2025-03-11T01:20:36.428826-07:00,1777.0,10.839812,10839.812 +32043,2025-03-11T01:20:47.262690-07:00,1740.0,10.833864,10833.864 +32044,2025-03-11T01:20:58.100682-07:00,1728.0,10.837992,10837.992 +32045,2025-03-11T01:21:08.931693-07:00,1718.0,10.831011,10831.011 +32046,2025-03-11T01:21:19.765903-07:00,1782.0,10.83421,10834.21 +32047,2025-03-11T01:21:30.605504-07:00,1703.0,10.839601,10839.601 +32048,2025-03-11T01:21:41.439679-07:00,1777.0,10.834175,10834.175 +32049,2025-03-11T01:21:52.283560-07:00,1771.0,10.843881,10843.881 +32050,2025-03-11T01:22:03.122239-07:00,1711.0,10.838679,10838.679 +32051,2025-03-11T01:22:13.946693-07:00,1776.0,10.824454,10824.454 +32052,2025-03-11T01:22:24.791699-07:00,1775.0,10.845006,10845.006 +32053,2025-03-11T01:22:35.633064-07:00,1761.0,10.841365,10841.365 +32054,2025-03-11T01:22:46.467701-07:00,1781.0,10.834637,10834.637 +32055,2025-03-11T01:22:57.301701-07:00,1709.0,10.834,10834.0 +32056,2025-03-11T01:23:08.134747-07:00,1761.0,10.833046,10833.046 +32057,2025-03-11T01:23:18.959967-07:00,1788.0,10.82522,10825.22 +32058,2025-03-11T01:23:29.794299-07:00,1695.0,10.834332,10834.332 +32059,2025-03-11T01:23:40.632696-07:00,1737.0,10.838397,10838.397 +32060,2025-03-11T01:23:51.464911-07:00,1746.0,10.832215,10832.215 +32061,2025-03-11T01:24:02.296848-07:00,1707.0,10.831937,10831.937 +32062,2025-03-11T01:24:13.140989-07:00,1751.0,10.844141,10844.141 +32063,2025-03-11T01:24:23.972995-07:00,1773.0,10.832006,10832.006 +32064,2025-03-11T01:24:34.815164-07:00,1734.0,10.842169,10842.169 +32065,2025-03-11T01:24:45.641677-07:00,1686.0,10.826513,10826.513 +32066,2025-03-11T01:24:56.478002-07:00,1777.0,10.836325,10836.325 +32067,2025-03-11T01:25:07.310965-07:00,1776.0,10.832963,10832.963 +32068,2025-03-11T01:25:18.153760-07:00,1699.0,10.842795,10842.795 +32069,2025-03-11T01:25:28.993596-07:00,1744.0,10.839836,10839.836 +32070,2025-03-11T01:25:39.823701-07:00,1734.0,10.830105,10830.105 +32071,2025-03-11T01:25:50.654954-07:00,1719.0,10.831253,10831.253 +32072,2025-03-11T01:26:01.488950-07:00,1685.0,10.833996,10833.996 +32073,2025-03-11T01:26:12.323852-07:00,1634.0,10.834902,10834.902 +32074,2025-03-11T01:26:23.158954-07:00,1719.0,10.835102,10835.102 +32075,2025-03-11T01:26:33.997694-07:00,1719.0,10.83874,10838.74 +32076,2025-03-11T01:26:44.826191-07:00,1712.0,10.828497,10828.497 +32077,2025-03-11T01:26:55.662134-07:00,1709.0,10.835943,10835.943 +32078,2025-03-11T01:27:06.491704-07:00,1653.0,10.82957,10829.57 +32079,2025-03-11T01:27:17.329978-07:00,1676.0,10.838274,10838.274 +32080,2025-03-11T01:27:28.164834-07:00,1622.0,10.834856,10834.856 +32081,2025-03-11T01:27:38.998693-07:00,1665.0,10.833859,10833.859 +32082,2025-03-11T01:27:49.842258-07:00,1648.0,10.843565,10843.565 +32083,2025-03-11T01:28:00.673696-07:00,1697.0,10.831438,10831.438 +32084,2025-03-11T01:28:11.516709-07:00,1679.0,10.843013,10843.013 +32085,2025-03-11T01:28:22.344689-07:00,1711.0,10.82798,10827.98 +32086,2025-03-11T01:28:33.179942-07:00,1674.0,10.835253,10835.253 +32087,2025-03-11T01:28:44.021698-07:00,1680.0,10.841756,10841.756 +32088,2025-03-11T01:28:54.855031-07:00,1674.0,10.833333,10833.333 +32089,2025-03-11T01:29:05.687985-07:00,1712.0,10.832954,10832.954 +32090,2025-03-11T01:29:16.530035-07:00,1651.0,10.84205,10842.05 +32091,2025-03-11T01:29:27.359914-07:00,1719.0,10.829879,10829.879 +32092,2025-03-11T01:29:38.203869-07:00,1683.0,10.843955,10843.955 +32093,2025-03-11T01:29:49.036002-07:00,1717.0,10.832133,10832.133 +32094,2025-03-11T01:29:59.880218-07:00,1638.0,10.844216,10844.216 +32095,2025-03-11T01:30:10.713914-07:00,1678.0,10.833696,10833.696 +32096,2025-03-11T01:30:21.551717-07:00,1701.0,10.837803,10837.803 +32097,2025-03-11T01:30:32.384695-07:00,1642.0,10.832978,10832.978 +32098,2025-03-11T01:30:43.219700-07:00,1677.0,10.835005,10835.005 +32099,2025-03-11T01:30:54.059989-07:00,1702.0,10.840289,10840.289 +32100,2025-03-11T01:31:04.893659-07:00,1725.0,10.83367,10833.67 +32101,2025-03-11T01:31:15.741809-07:00,1661.0,10.84815,10848.15 +32102,2025-03-11T01:31:26.573031-07:00,1707.0,10.831222,10831.222 +32103,2025-03-11T01:31:37.414702-07:00,1638.0,10.841671,10841.671 +32104,2025-03-11T01:31:48.250095-07:00,1711.0,10.835393,10835.393 +32105,2025-03-11T01:31:59.075206-07:00,1715.0,10.825111,10825.111 +32106,2025-03-11T01:32:09.908095-07:00,1671.0,10.832889,10832.889 +32107,2025-03-11T01:32:20.749004-07:00,1719.0,10.840909,10840.909 +32108,2025-03-11T01:32:31.579689-07:00,1691.0,10.830685,10830.685 +32109,2025-03-11T01:32:42.411702-07:00,1639.0,10.832013,10832.013 +32110,2025-03-11T01:32:53.254290-07:00,1657.0,10.842588,10842.588 +32111,2025-03-11T01:33:04.087959-07:00,1712.0,10.833669,10833.669 +32112,2025-03-11T01:33:14.920977-07:00,1711.0,10.833018,10833.018 +32113,2025-03-11T01:33:25.761233-07:00,1717.0,10.840256,10840.256 +32114,2025-03-11T01:33:36.601884-07:00,1669.0,10.840651,10840.651 +32115,2025-03-11T01:33:47.430980-07:00,1635.0,10.829096,10829.096 +32116,2025-03-11T01:33:58.256938-07:00,1680.0,10.825958,10825.958 +32117,2025-03-11T01:34:05.886356-07:00,1680.0,7.629418,7629.418 +32118,2025-03-11T01:34:09.091980-07:00,1651.0,3.205624,3205.624 +32119,2025-03-11T01:34:19.921675-07:00,1678.0,10.829695,10829.695 +32120,2025-03-11T01:34:30.763690-07:00,1717.0,10.842015,10842.015 +32121,2025-03-11T01:34:41.595116-07:00,1723.0,10.831426,10831.426 +32122,2025-03-11T01:34:52.431773-07:00,1722.0,10.836657,10836.657 +32123,2025-03-11T01:35:03.270356-07:00,1723.0,10.838583,10838.583 +32124,2025-03-11T01:35:14.107890-07:00,1719.0,10.837534,10837.534 +32125,2025-03-11T01:35:24.950695-07:00,1723.0,10.842805,10842.805 +32126,2025-03-11T01:35:35.776776-07:00,1676.0,10.826081,10826.081 +32127,2025-03-11T01:35:46.615016-07:00,1681.0,10.83824,10838.24 +32128,2025-03-11T01:35:57.439700-07:00,1667.0,10.824684,10824.684 +32129,2025-03-11T01:36:08.279962-07:00,1667.0,10.840262,10840.262 +32130,2025-03-11T01:36:19.099738-07:00,1719.0,10.819776,10819.776 +32131,2025-03-11T01:36:29.931057-07:00,1709.0,10.831319,10831.319 +32132,2025-03-11T01:36:40.766690-07:00,1691.0,10.835633,10835.633 +32133,2025-03-11T01:36:51.595211-07:00,1712.0,10.828521,10828.521 +32134,2025-03-11T01:37:02.428689-07:00,1633.0,10.833478,10833.478 +32135,2025-03-11T01:37:13.256699-07:00,1693.0,10.82801,10828.01 +32136,2025-03-11T01:37:24.093171-07:00,1716.0,10.836472,10836.472 +32137,2025-03-11T01:37:34.920949-07:00,1722.0,10.827778,10827.778 +32138,2025-03-11T01:37:45.752667-07:00,1696.0,10.831718,10831.718 +32139,2025-03-11T01:37:56.580696-07:00,1669.0,10.828029,10828.029 +32140,2025-03-11T01:38:07.408172-07:00,1699.0,10.827476,10827.476 +32141,2025-03-11T01:38:18.230035-07:00,1706.0,10.821863,10821.863 +32142,2025-03-11T01:38:29.059692-07:00,1703.0,10.829657,10829.657 +32143,2025-03-11T01:38:39.897817-07:00,1679.0,10.838125,10838.125 +32144,2025-03-11T01:38:50.727052-07:00,1671.0,10.829235,10829.235 +32145,2025-03-11T01:39:01.550862-07:00,1721.0,10.82381,10823.81 +32146,2025-03-11T01:39:12.388260-07:00,1677.0,10.837398,10837.398 +32147,2025-03-11T01:39:23.213949-07:00,1725.0,10.825689,10825.689 +32148,2025-03-11T01:39:34.044960-07:00,1619.0,10.831011,10831.011 +32149,2025-03-11T01:39:44.873230-07:00,1721.0,10.82827,10828.27 +32150,2025-03-11T01:39:55.702620-07:00,1648.0,10.82939,10829.39 +32151,2025-03-11T01:40:06.529933-07:00,1664.0,10.827313,10827.313 +32152,2025-03-11T01:40:17.349686-07:00,1722.0,10.819753,10819.753 +32153,2025-03-11T01:40:28.183951-07:00,1667.0,10.834265,10834.265 +32154,2025-03-11T01:40:39.012689-07:00,1721.0,10.828738,10828.738 +32155,2025-03-11T01:40:49.837677-07:00,1626.0,10.824988,10824.988 +32156,2025-03-11T01:41:00.671949-07:00,1648.0,10.834272,10834.272 +32157,2025-03-11T01:41:11.508931-07:00,1667.0,10.836982,10836.982 +32158,2025-03-11T01:41:22.336965-07:00,1648.0,10.828034,10828.034 +32159,2025-03-11T01:41:33.162759-07:00,1718.0,10.825794,10825.794 +32160,2025-03-11T01:41:43.997029-07:00,1715.0,10.83427,10834.27 +32161,2025-03-11T01:41:54.830738-07:00,1721.0,10.833709,10833.709 +32162,2025-03-11T01:42:05.652952-07:00,1710.0,10.822214,10822.214 +32163,2025-03-11T01:42:16.483985-07:00,1718.0,10.831033,10831.033 +32164,2025-03-11T01:42:27.312019-07:00,1716.0,10.828034,10828.034 +32165,2025-03-11T01:42:38.144693-07:00,1721.0,10.832674,10832.674 +32166,2025-03-11T01:42:48.977621-07:00,1719.0,10.832928,10832.928 +32167,2025-03-11T01:42:59.806972-07:00,1665.0,10.829351,10829.351 +32168,2025-03-11T01:43:10.644698-07:00,1695.0,10.837726,10837.726 +32169,2025-03-11T01:43:21.472813-07:00,1632.0,10.828115,10828.115 +32170,2025-03-11T01:43:32.302709-07:00,1646.0,10.829896,10829.896 +32171,2025-03-11T01:43:43.134570-07:00,1651.0,10.831861,10831.861 +32172,2025-03-11T01:43:53.963849-07:00,1712.0,10.829279,10829.279 +32173,2025-03-11T01:44:04.793969-07:00,1674.0,10.83012,10830.12 +32174,2025-03-11T01:44:15.624905-07:00,1705.0,10.830936,10830.936 +32175,2025-03-11T01:44:26.451700-07:00,1706.0,10.826795,10826.795 +32176,2025-03-11T01:44:37.283835-07:00,1718.0,10.832135,10832.135 +32177,2025-03-11T01:44:48.122838-07:00,1693.0,10.839003,10839.003 +32178,2025-03-11T01:44:58.956142-07:00,1671.0,10.833304,10833.304 +32179,2025-03-11T01:45:09.784231-07:00,1723.0,10.828089,10828.089 +32180,2025-03-11T01:45:20.616924-07:00,1670.0,10.832693,10832.693 +32181,2025-03-11T01:45:31.448624-07:00,1677.0,10.8317,10831.7 +32182,2025-03-11T01:45:42.271743-07:00,1700.0,10.823119,10823.119 +32183,2025-03-11T01:45:53.105600-07:00,1727.0,10.833857,10833.857 +32184,2025-03-11T01:46:03.943032-07:00,1713.0,10.837432,10837.432 +32185,2025-03-11T01:46:14.766690-07:00,1712.0,10.823658,10823.658 +32186,2025-03-11T01:46:25.594476-07:00,1727.0,10.827786,10827.786 +32187,2025-03-11T01:46:36.426745-07:00,1631.0,10.832269,10832.269 +32188,2025-03-11T01:46:47.251470-07:00,1680.0,10.824725,10824.725 +32189,2025-03-11T01:46:58.082738-07:00,1696.0,10.831268,10831.268 +32190,2025-03-11T01:47:08.915306-07:00,1631.0,10.832568,10832.568 +32191,2025-03-11T01:47:19.734072-07:00,1712.0,10.818766,10818.766 +32192,2025-03-11T01:47:30.567183-07:00,1690.0,10.833111,10833.111 +32193,2025-03-11T01:47:41.389699-07:00,1716.0,10.822516,10822.516 +32194,2025-03-11T01:47:52.219596-07:00,1653.0,10.829897,10829.897 +32195,2025-03-11T01:48:03.050918-07:00,1679.0,10.831322,10831.322 +32196,2025-03-11T01:48:13.880675-07:00,1705.0,10.829757,10829.757 +32197,2025-03-11T01:48:24.702699-07:00,1719.0,10.822024,10822.024 +32198,2025-03-11T01:48:35.531853-07:00,1719.0,10.829154,10829.154 +32199,2025-03-11T01:48:46.360849-07:00,1702.0,10.828996,10828.996 +32200,2025-03-11T01:48:57.185700-07:00,1641.0,10.824851,10824.851 +32201,2025-03-11T01:49:08.025008-07:00,1722.0,10.839308,10839.308 +32202,2025-03-11T01:49:18.842930-07:00,1635.0,10.817922,10817.922 +32203,2025-03-11T01:49:29.677746-07:00,1722.0,10.834816,10834.816 +32204,2025-03-11T01:49:40.500697-07:00,1712.0,10.822951,10822.951 +32205,2025-03-11T01:49:51.329696-07:00,1677.0,10.828999,10828.999 +32206,2025-03-11T01:50:02.146865-07:00,1719.0,10.817169,10817.169 +32207,2025-03-11T01:50:12.982177-07:00,1671.0,10.835312,10835.312 +32208,2025-03-11T01:50:23.806697-07:00,1674.0,10.82452,10824.52 +32209,2025-03-11T01:50:34.635014-07:00,1719.0,10.828317,10828.317 +32210,2025-03-11T01:50:45.464687-07:00,1685.0,10.829673,10829.673 +32211,2025-03-11T01:50:56.293006-07:00,1722.0,10.828319,10828.319 +32212,2025-03-11T01:51:07.126699-07:00,1659.0,10.833693,10833.693 +32213,2025-03-11T01:51:17.953956-07:00,1716.0,10.827257,10827.257 +32214,2025-03-11T01:51:28.789931-07:00,1626.0,10.835975,10835.975 +32215,2025-03-11T01:51:39.616084-07:00,1723.0,10.826153,10826.153 +32216,2025-03-11T01:51:50.440724-07:00,1631.0,10.82464,10824.64 +32217,2025-03-11T01:52:01.280683-07:00,1702.0,10.839959,10839.959 +32218,2025-03-11T01:52:12.113887-07:00,1713.0,10.833204,10833.204 +32219,2025-03-11T01:52:22.939704-07:00,1654.0,10.825817,10825.817 +32220,2025-03-11T01:52:33.782103-07:00,1653.0,10.842399,10842.399 +32221,2025-03-11T01:52:44.608921-07:00,1621.0,10.826818,10826.818 +32222,2025-03-11T01:52:55.440031-07:00,1693.0,10.83111,10831.11 +32223,2025-03-11T01:53:06.270755-07:00,1724.0,10.830724,10830.724 +32224,2025-03-11T01:53:17.097614-07:00,1691.0,10.826859,10826.859 +32225,2025-03-11T01:53:27.928743-07:00,1645.0,10.831129,10831.129 +32226,2025-03-11T01:53:38.755019-07:00,1675.0,10.826276,10826.276 +32227,2025-03-11T01:53:49.577677-07:00,1712.0,10.822658,10822.658 +32228,2025-03-11T01:54:00.404622-07:00,1711.0,10.826945,10826.945 +32229,2025-03-11T01:54:11.225836-07:00,1661.0,10.821214,10821.214 +32230,2025-03-11T01:54:22.059066-07:00,1706.0,10.83323,10833.23 +32231,2025-03-11T01:54:32.877227-07:00,1719.0,10.818161,10818.161 +32232,2025-03-11T01:54:43.702694-07:00,1702.0,10.825467,10825.467 +32233,2025-03-11T01:54:54.534980-07:00,1631.0,10.832286,10832.286 +32234,2025-03-11T01:55:05.365150-07:00,1679.0,10.83017,10830.17 +32235,2025-03-11T01:55:16.200951-07:00,1717.0,10.835801,10835.801 +32236,2025-03-11T01:55:27.019924-07:00,1680.0,10.818973,10818.973 +32237,2025-03-11T01:55:37.856809-07:00,1669.0,10.836885,10836.885 +32238,2025-03-11T01:55:48.682872-07:00,1638.0,10.826063,10826.063 +32239,2025-03-11T01:55:59.504834-07:00,1646.0,10.821962,10821.962 +32240,2025-03-11T01:56:10.341696-07:00,1707.0,10.836862,10836.862 +32241,2025-03-11T01:56:21.168759-07:00,1725.0,10.827063,10827.063 +32242,2025-03-11T01:56:31.994696-07:00,1717.0,10.825937,10825.937 +32243,2025-03-11T01:56:42.814714-07:00,1722.0,10.820018,10820.018 +32244,2025-03-11T01:56:53.643701-07:00,1685.0,10.828987,10828.987 +32245,2025-03-11T01:57:04.469860-07:00,1715.0,10.826159,10826.159 +32246,2025-03-11T01:57:15.297698-07:00,1712.0,10.827838,10827.838 +32247,2025-03-11T01:57:26.129729-07:00,1719.0,10.832031,10832.031 +32248,2025-03-11T01:57:36.956898-07:00,1715.0,10.827169,10827.169 +32249,2025-03-11T01:57:47.789033-07:00,1666.0,10.832135,10832.135 +32250,2025-03-11T01:57:58.612688-07:00,1697.0,10.823655,10823.655 +32251,2025-03-11T01:58:09.445424-07:00,1645.0,10.832736,10832.736 +32252,2025-03-11T01:58:20.261726-07:00,1633.0,10.816302,10816.302 +32253,2025-03-11T01:58:31.081684-07:00,1637.0,10.819958,10819.958 +32254,2025-03-11T01:58:41.907408-07:00,1655.0,10.825724,10825.724 +32255,2025-03-11T01:58:52.736688-07:00,1675.0,10.82928,10829.28 +32256,2025-03-11T01:59:03.558855-07:00,1665.0,10.822167,10822.167 +32257,2025-03-11T01:59:14.391002-07:00,1652.0,10.832147,10832.147 +32258,2025-03-11T01:59:25.219847-07:00,1679.0,10.828845,10828.845 +32259,2025-03-11T01:59:36.042701-07:00,1715.0,10.822854,10822.854 +32260,2025-03-11T01:59:46.862017-07:00,1665.0,10.819316,10819.316 +32261,2025-03-11T01:59:57.695049-07:00,1719.0,10.833032,10833.032 +32262,2025-03-11T02:00:08.511695-07:00,1675.0,10.816646,10816.646 +32263,2025-03-11T02:00:19.345243-07:00,1679.0,10.833548,10833.548 +32264,2025-03-11T02:00:30.167072-07:00,1678.0,10.821829,10821.829 +32265,2025-03-11T02:00:40.994185-07:00,1712.0,10.827113,10827.113 +32266,2025-03-11T02:00:51.817942-07:00,1719.0,10.823757,10823.757 +32267,2025-03-11T02:01:02.643943-07:00,1637.0,10.826001,10826.001 +32268,2025-03-11T02:01:13.471015-07:00,1727.0,10.827072,10827.072 +32269,2025-03-11T02:01:24.290925-07:00,1664.0,10.81991,10819.91 +32270,2025-03-11T02:01:35.117070-07:00,1671.0,10.826145,10826.145 +32271,2025-03-11T02:01:45.945675-07:00,1679.0,10.828605,10828.605 +32272,2025-03-11T02:01:56.780726-07:00,1693.0,10.835051,10835.051 +32273,2025-03-11T02:02:07.604699-07:00,1713.0,10.823973,10823.973 +32274,2025-03-11T02:02:18.428751-07:00,1664.0,10.824052,10824.052 +32275,2025-03-11T02:02:29.258753-07:00,1688.0,10.830002,10830.002 +32276,2025-03-11T02:02:40.090505-07:00,1723.0,10.831752,10831.752 +32277,2025-03-11T02:02:50.911749-07:00,1723.0,10.821244,10821.244 +32278,2025-03-11T02:03:01.741740-07:00,1712.0,10.829991,10829.991 +32279,2025-03-11T02:03:12.564102-07:00,1651.0,10.822362,10822.362 +32280,2025-03-11T02:03:23.392858-07:00,1712.0,10.828756,10828.756 +32281,2025-03-11T02:03:34.212060-07:00,1632.0,10.819202,10819.202 +32282,2025-03-11T02:03:45.034692-07:00,1680.0,10.822632,10822.632 +32283,2025-03-11T02:03:55.859890-07:00,1721.0,10.825198,10825.198 +32284,2025-03-11T02:04:06.683035-07:00,1675.0,10.823145,10823.145 +32285,2025-03-11T02:04:17.501958-07:00,1697.0,10.818923,10818.923 +32286,2025-03-11T02:04:28.334485-07:00,1638.0,10.832527,10832.527 +32287,2025-03-11T02:04:39.158929-07:00,1666.0,10.824444,10824.444 +32288,2025-03-11T02:04:49.985809-07:00,1721.0,10.82688,10826.88 +32289,2025-03-11T02:05:00.817683-07:00,1676.0,10.831874,10831.874 +32290,2025-03-11T02:05:11.643275-07:00,1680.0,10.825592,10825.592 +32291,2025-03-11T02:05:22.469698-07:00,1703.0,10.826423,10826.423 +32292,2025-03-11T02:05:33.299053-07:00,1719.0,10.829355,10829.355 +32293,2025-03-11T02:05:44.125931-07:00,1681.0,10.826878,10826.878 +32294,2025-03-11T02:05:54.942943-07:00,1723.0,10.817012,10817.012 +32295,2025-03-11T02:06:05.766300-07:00,1664.0,10.823357,10823.357 +32296,2025-03-11T02:06:16.596969-07:00,1652.0,10.830669,10830.669 +32297,2025-03-11T02:06:27.418232-07:00,1692.0,10.821263,10821.263 +32298,2025-03-11T02:06:38.239958-07:00,1633.0,10.821726,10821.726 +32299,2025-03-11T02:06:49.063962-07:00,1695.0,10.824004,10824.004 +32300,2025-03-11T02:06:59.876921-07:00,1685.0,10.812959,10812.959 +32301,2025-03-11T02:07:10.705801-07:00,1718.0,10.82888,10828.88 +32302,2025-03-11T02:07:21.530170-07:00,1699.0,10.824369,10824.369 +32303,2025-03-11T02:07:32.355310-07:00,1649.0,10.82514,10825.14 +32304,2025-03-11T02:07:43.170114-07:00,1726.0,10.814804,10814.804 +32305,2025-03-11T02:07:53.993017-07:00,1680.0,10.822903,10822.903 +32306,2025-03-11T02:08:04.824565-07:00,1686.0,10.831548,10831.548 +32307,2025-03-11T02:08:15.640907-07:00,1645.0,10.816342,10816.342 +32308,2025-03-11T02:08:26.464292-07:00,1719.0,10.823385,10823.385 +32309,2025-03-11T02:08:37.295972-07:00,1697.0,10.83168,10831.68 +32310,2025-03-11T02:08:48.116862-07:00,1720.0,10.82089,10820.89 +32311,2025-03-11T02:08:58.937002-07:00,1670.0,10.82014,10820.14 +32312,2025-03-11T02:09:09.763975-07:00,1679.0,10.826973,10826.973 +32313,2025-03-11T02:09:20.584755-07:00,1631.0,10.82078,10820.78 +32314,2025-03-11T02:09:31.419973-07:00,1635.0,10.835218,10835.218 +32315,2025-03-11T02:09:42.237289-07:00,1677.0,10.817316,10817.316 +32316,2025-03-11T02:09:53.061980-07:00,1671.0,10.824691,10824.691 +32317,2025-03-11T02:10:03.898230-07:00,1719.0,10.83625,10836.25 +32318,2025-03-11T02:10:14.724977-07:00,1716.0,10.826747,10826.747 +32319,2025-03-11T02:10:25.545221-07:00,1622.0,10.820244,10820.244 +32320,2025-03-11T02:10:36.373075-07:00,1719.0,10.827854,10827.854 +32321,2025-03-11T02:10:47.196601-07:00,1669.0,10.823526,10823.526 +32322,2025-03-11T02:10:58.027224-07:00,1642.0,10.830623,10830.623 +32323,2025-03-11T02:11:08.844026-07:00,1708.0,10.816802,10816.802 +32324,2025-03-11T02:11:19.664160-07:00,1661.0,10.820134,10820.134 +32325,2025-03-11T02:11:30.496220-07:00,1722.0,10.83206,10832.06 +32326,2025-03-11T02:11:41.315224-07:00,1718.0,10.819004,10819.004 +32327,2025-03-11T02:11:52.149210-07:00,1715.0,10.833986,10833.986 +32328,2025-03-11T02:12:02.974607-07:00,1713.0,10.825397,10825.397 +32329,2025-03-11T02:12:13.804965-07:00,1706.0,10.830358,10830.358 +32330,2025-03-11T02:12:24.626969-07:00,1714.0,10.822004,10822.004 +32331,2025-03-11T02:12:35.459219-07:00,1677.0,10.83225,10832.25 +32332,2025-03-11T02:12:46.284948-07:00,1678.0,10.825729,10825.729 +32333,2025-03-11T02:12:57.105646-07:00,1643.0,10.820698,10820.698 +32334,2025-03-11T02:13:07.941057-07:00,1703.0,10.835411,10835.411 +32335,2025-03-11T02:13:18.767294-07:00,1631.0,10.826237,10826.237 +32336,2025-03-11T02:13:29.593969-07:00,1697.0,10.826675,10826.675 +32337,2025-03-11T02:13:40.421296-07:00,1631.0,10.827327,10827.327 +32338,2025-03-11T02:13:51.246523-07:00,1674.0,10.825227,10825.227 +32339,2025-03-11T02:14:02.070971-07:00,1721.0,10.824448,10824.448 +32340,2025-03-11T02:14:12.897220-07:00,1701.0,10.826249,10826.249 +32341,2025-03-11T02:14:23.731181-07:00,1673.0,10.833961,10833.961 +32342,2025-03-11T02:14:34.557958-07:00,1657.0,10.826777,10826.777 +32343,2025-03-11T02:14:45.379955-07:00,1719.0,10.821997,10821.997 +32344,2025-03-11T02:14:56.208064-07:00,1680.0,10.828109,10828.109 +32345,2025-03-11T02:15:07.038020-07:00,1717.0,10.829956,10829.956 +32346,2025-03-11T02:15:17.866314-07:00,1719.0,10.828294,10828.294 +32347,2025-03-11T02:15:28.680974-07:00,1635.0,10.81466,10814.66 +32348,2025-03-11T02:15:39.513304-07:00,1657.0,10.83233,10832.33 +32349,2025-03-11T02:15:50.326177-07:00,1717.0,10.812873,10812.873 +32350,2025-03-11T02:16:01.146209-07:00,1701.0,10.820032,10820.032 +32351,2025-03-11T02:16:11.978293-07:00,1625.0,10.832084,10832.084 +32352,2025-03-11T02:16:22.807976-07:00,1685.0,10.829683,10829.683 +32353,2025-03-11T02:16:33.631273-07:00,1701.0,10.823297,10823.297 +32354,2025-03-11T02:16:44.451224-07:00,1717.0,10.819951,10819.951 +32355,2025-03-11T02:16:55.271217-07:00,1712.0,10.819993,10819.993 +32356,2025-03-11T02:17:06.096524-07:00,1717.0,10.825307,10825.307 +32357,2025-03-11T02:17:16.919961-07:00,1719.0,10.823437,10823.437 +32358,2025-03-11T02:17:27.744222-07:00,1685.0,10.824261,10824.261 +32359,2025-03-11T02:17:38.560423-07:00,1712.0,10.816201,10816.201 +32360,2025-03-11T02:17:49.391948-07:00,1672.0,10.831525,10831.525 +32361,2025-03-11T02:18:00.216306-07:00,1664.0,10.824358,10824.358 +32362,2025-03-11T02:18:11.036979-07:00,1712.0,10.820673,10820.673 +32363,2025-03-11T02:18:21.863205-07:00,1667.0,10.826226,10826.226 +32364,2025-03-11T02:18:32.686977-07:00,1645.0,10.823772,10823.772 +32365,2025-03-11T02:18:43.509241-07:00,1709.0,10.822264,10822.264 +32366,2025-03-11T02:18:54.340306-07:00,1711.0,10.831065,10831.065 +32367,2025-03-11T02:19:05.167952-07:00,1681.0,10.827646,10827.646 +32368,2025-03-11T02:19:15.987895-07:00,1683.0,10.819943,10819.943 +32369,2025-03-11T02:19:26.820192-07:00,1667.0,10.832297,10832.297 +32370,2025-03-11T02:19:37.641201-07:00,1715.0,10.821009,10821.009 +32371,2025-03-11T02:19:48.464214-07:00,1677.0,10.823013,10823.013 +32372,2025-03-11T02:19:59.289209-07:00,1682.0,10.824995,10824.995 +32373,2025-03-11T02:20:10.118086-07:00,1727.0,10.828877,10828.877 +32374,2025-03-11T02:20:20.941162-07:00,1682.0,10.823076,10823.076 +32375,2025-03-11T02:20:31.767364-07:00,1675.0,10.826202,10826.202 +32376,2025-03-11T02:20:42.596114-07:00,1721.0,10.82875,10828.75 +32377,2025-03-11T02:20:53.426379-07:00,1647.0,10.830265,10830.265 +32378,2025-03-11T02:21:04.248972-07:00,1627.0,10.822593,10822.593 +32379,2025-03-11T02:21:15.074001-07:00,1711.0,10.825029,10825.029 +32380,2025-03-11T02:21:25.894283-07:00,1722.0,10.820282,10820.282 +32381,2025-03-11T02:21:36.713964-07:00,1653.0,10.819681,10819.681 +32382,2025-03-11T02:21:47.535145-07:00,1659.0,10.821181,10821.181 +32383,2025-03-11T02:21:58.361352-07:00,1712.0,10.826207,10826.207 +32384,2025-03-11T02:22:09.180167-07:00,1712.0,10.818815,10818.815 +32385,2025-03-11T02:22:20.012966-07:00,1678.0,10.832799,10832.799 +32386,2025-03-11T02:22:30.835491-07:00,1663.0,10.822525,10822.525 +32387,2025-03-11T02:22:41.662529-07:00,1678.0,10.827038,10827.038 +32388,2025-03-11T02:22:52.488975-07:00,1727.0,10.826446,10826.446 +32389,2025-03-11T02:23:03.310999-07:00,1712.0,10.822024,10822.024 +32390,2025-03-11T02:23:14.141970-07:00,1712.0,10.830971,10830.971 +32391,2025-03-11T02:23:24.951535-07:00,1709.0,10.809565,10809.565 +32392,2025-03-11T02:23:35.782325-07:00,1719.0,10.83079,10830.79 +32393,2025-03-11T02:23:46.602495-07:00,1643.0,10.82017,10820.17 +32394,2025-03-11T02:23:57.431213-07:00,1697.0,10.828718,10828.718 +32395,2025-03-11T02:24:08.261971-07:00,1642.0,10.830758,10830.758 +32396,2025-03-11T02:24:19.088144-07:00,1696.0,10.826173,10826.173 +32397,2025-03-11T02:24:29.907279-07:00,1680.0,10.819135,10819.135 +32398,2025-03-11T02:24:40.739971-07:00,1719.0,10.832692,10832.692 +32399,2025-03-11T02:24:51.555190-07:00,1634.0,10.815219,10815.219 +32400,2025-03-11T02:25:02.379971-07:00,1723.0,10.824781,10824.781 +32401,2025-03-11T02:25:13.204965-07:00,1665.0,10.824994,10824.994 +32402,2025-03-11T02:25:24.031970-07:00,1671.0,10.827005,10827.005 +32403,2025-03-11T02:25:34.849533-07:00,1723.0,10.817563,10817.563 +32404,2025-03-11T02:25:45.684304-07:00,1665.0,10.834771,10834.771 +32405,2025-03-11T02:25:56.511950-07:00,1720.0,10.827646,10827.646 +32406,2025-03-11T02:26:07.332074-07:00,1665.0,10.820124,10820.124 +32407,2025-03-11T02:26:18.151969-07:00,1723.0,10.819895,10819.895 +32408,2025-03-11T02:26:28.982974-07:00,1683.0,10.831005,10831.005 +32409,2025-03-11T02:26:39.810359-07:00,1703.0,10.827385,10827.385 +32410,2025-03-11T02:26:50.636679-07:00,1724.0,10.82632,10826.32 +32411,2025-03-11T02:27:01.461216-07:00,1726.0,10.824537,10824.537 +32412,2025-03-11T02:27:12.277965-07:00,1712.0,10.816749,10816.749 +32413,2025-03-11T02:27:23.110342-07:00,1668.0,10.832377,10832.377 +32414,2025-03-11T02:27:33.934273-07:00,1666.0,10.823931,10823.931 +32415,2025-03-11T02:27:44.755963-07:00,1663.0,10.82169,10821.69 +32416,2025-03-11T02:27:55.583962-07:00,1671.0,10.827999,10827.999 +32417,2025-03-11T02:28:06.410110-07:00,1690.0,10.826148,10826.148 +32418,2025-03-11T02:28:17.235387-07:00,1632.0,10.825277,10825.277 +32419,2025-03-11T02:28:28.051971-07:00,1726.0,10.816584,10816.584 +32420,2025-03-11T02:28:38.878004-07:00,1703.0,10.826033,10826.033 +32421,2025-03-11T02:28:49.708633-07:00,1714.0,10.830629,10830.629 +32422,2025-03-11T02:29:00.534963-07:00,1671.0,10.82633,10826.33 +32423,2025-03-11T02:29:11.361183-07:00,1725.0,10.82622,10826.22 +32424,2025-03-11T02:29:22.188378-07:00,1702.0,10.827195,10827.195 +32425,2025-03-11T02:29:33.020482-07:00,1679.0,10.832104,10832.104 +32426,2025-03-11T02:29:43.842967-07:00,1712.0,10.822485,10822.485 +32427,2025-03-11T02:29:54.667273-07:00,1655.0,10.824306,10824.306 +32428,2025-03-11T02:30:05.498972-07:00,1643.0,10.831699,10831.699 +32429,2025-03-11T02:30:16.327330-07:00,1717.0,10.828358,10828.358 +32430,2025-03-11T02:30:27.160961-07:00,1653.0,10.833631,10833.631 +32431,2025-03-11T02:30:37.988087-07:00,1680.0,10.827126,10827.126 +32432,2025-03-11T02:30:48.804733-07:00,1725.0,10.816646,10816.646 +32433,2025-03-11T02:30:59.633078-07:00,1686.0,10.828345,10828.345 +32434,2025-03-11T02:31:10.460083-07:00,1690.0,10.827005,10827.005 +32435,2025-03-11T02:31:21.279965-07:00,1669.0,10.819882,10819.882 +32436,2025-03-11T02:31:32.106582-07:00,1703.0,10.826617,10826.617 +32437,2025-03-11T02:31:42.942975-07:00,1627.0,10.836393,10836.393 +32438,2025-03-11T02:31:53.769228-07:00,1651.0,10.826253,10826.253 +32439,2025-03-11T02:32:04.597349-07:00,1726.0,10.828121,10828.121 +32440,2025-03-11T02:32:15.415953-07:00,1709.0,10.818604,10818.604 +32441,2025-03-11T02:32:26.244943-07:00,1724.0,10.82899,10828.99 +32442,2025-03-11T02:32:37.068281-07:00,1695.0,10.823338,10823.338 +32443,2025-03-11T02:32:47.883852-07:00,1726.0,10.815571,10815.571 +32444,2025-03-11T02:32:58.713972-07:00,1671.0,10.83012,10830.12 +32445,2025-03-11T02:33:09.545105-07:00,1681.0,10.831133,10831.133 +32446,2025-03-11T02:33:20.372977-07:00,1725.0,10.827872,10827.872 +32447,2025-03-11T02:33:31.186443-07:00,1682.0,10.813466,10813.466 +32448,2025-03-11T02:33:42.007308-07:00,1642.0,10.820865,10820.865 +32449,2025-03-11T02:33:52.828304-07:00,1665.0,10.820996,10820.996 +32450,2025-03-11T02:34:03.657392-07:00,1657.0,10.829088,10829.088 +32451,2025-03-11T02:34:14.479210-07:00,1678.0,10.821818,10821.818 +32452,2025-03-11T02:34:25.306324-07:00,1719.0,10.827114,10827.114 +32453,2025-03-11T02:34:36.130183-07:00,1726.0,10.823859,10823.859 +32454,2025-03-11T02:34:46.962538-07:00,1683.0,10.832355,10832.355 +32455,2025-03-11T02:34:57.782964-07:00,1653.0,10.820426,10820.426 +32456,2025-03-11T02:35:08.610964-07:00,1693.0,10.828,10828.0 +32457,2025-03-11T02:35:19.423566-07:00,1725.0,10.812602,10812.602 +32458,2025-03-11T02:35:30.249975-07:00,1648.0,10.826409,10826.409 +32459,2025-03-11T02:35:41.064263-07:00,1715.0,10.814288,10814.288 +32460,2025-03-11T02:35:51.890133-07:00,1702.0,10.82587,10825.87 +32461,2025-03-11T02:36:02.700696-07:00,1665.0,10.810563,10810.563 +32462,2025-03-11T02:36:13.519406-07:00,1712.0,10.81871,10818.71 +32463,2025-03-11T02:36:24.340192-07:00,1711.0,10.820786,10820.786 +32464,2025-03-11T02:36:35.165463-07:00,1712.0,10.825271,10825.271 +32465,2025-03-11T02:36:45.993183-07:00,1722.0,10.82772,10827.72 +32466,2025-03-11T02:36:56.817607-07:00,1694.0,10.824424,10824.424 +32467,2025-03-11T02:37:07.631220-07:00,1682.0,10.813613,10813.613 +32468,2025-03-11T02:37:18.454004-07:00,1677.0,10.822784,10822.784 +32469,2025-03-11T02:37:29.279335-07:00,1680.0,10.825331,10825.331 +32470,2025-03-11T02:37:40.099025-07:00,1674.0,10.81969,10819.69 +32471,2025-03-11T02:37:50.911964-07:00,1664.0,10.812939,10812.939 +32472,2025-03-11T02:38:01.737459-07:00,1635.0,10.825495,10825.495 +32473,2025-03-11T02:38:12.559969-07:00,1653.0,10.82251,10822.51 +32474,2025-03-11T02:38:23.388380-07:00,1694.0,10.828411,10828.411 +32475,2025-03-11T02:38:34.221239-07:00,1726.0,10.832859,10832.859 +32476,2025-03-11T02:38:45.046013-07:00,1642.0,10.824774,10824.774 +32477,2025-03-11T02:38:55.870228-07:00,1648.0,10.824215,10824.215 +32478,2025-03-11T02:39:06.692457-07:00,1635.0,10.822229,10822.229 +32479,2025-03-11T02:39:17.509280-07:00,1714.0,10.816823,10816.823 +32480,2025-03-11T02:39:28.325607-07:00,1655.0,10.816327,10816.327 +32481,2025-03-11T02:39:39.146973-07:00,1689.0,10.821366,10821.366 +32482,2025-03-11T02:39:49.967782-07:00,1642.0,10.820809,10820.809 +32483,2025-03-11T02:40:00.788949-07:00,1681.0,10.821167,10821.167 +32484,2025-03-11T02:40:11.607970-07:00,1682.0,10.819021,10819.021 +32485,2025-03-11T02:40:22.428776-07:00,1713.0,10.820806,10820.806 +32486,2025-03-11T02:40:33.247107-07:00,1647.0,10.818331,10818.331 +32487,2025-03-11T02:40:44.067964-07:00,1724.0,10.820857,10820.857 +32488,2025-03-11T02:40:54.886972-07:00,1727.0,10.819008,10819.008 +32489,2025-03-11T02:41:05.717039-07:00,1639.0,10.830067,10830.067 +32490,2025-03-11T02:41:16.532939-07:00,1634.0,10.8159,10815.9 +32491,2025-03-11T02:41:27.356793-07:00,1719.0,10.823854,10823.854 +32492,2025-03-11T02:41:38.175970-07:00,1677.0,10.819177,10819.177 +32493,2025-03-11T02:41:49.004146-07:00,1693.0,10.828176,10828.176 +32494,2025-03-11T02:41:59.821053-07:00,1712.0,10.816907,10816.907 +32495,2025-03-11T02:42:10.638101-07:00,1643.0,10.817048,10817.048 +32496,2025-03-11T02:42:21.458304-07:00,1674.0,10.820203,10820.203 +32497,2025-03-11T02:42:32.289314-07:00,1638.0,10.83101,10831.01 +32498,2025-03-11T02:42:43.102971-07:00,1712.0,10.813657,10813.657 +32499,2025-03-11T02:42:53.930978-07:00,1676.0,10.828007,10828.007 +32500,2025-03-11T02:43:04.743590-07:00,1669.0,10.812612,10812.612 +32501,2025-03-11T02:43:15.570318-07:00,1724.0,10.826728,10826.728 +32502,2025-03-11T02:43:26.391160-07:00,1707.0,10.820842,10820.842 +32503,2025-03-11T02:43:37.205396-07:00,1637.0,10.814236,10814.236 +32504,2025-03-11T02:43:48.038321-07:00,1675.0,10.832925,10832.925 +32505,2025-03-11T02:43:58.861490-07:00,1685.0,10.823169,10823.169 +32506,2025-03-11T02:44:09.679552-07:00,1726.0,10.818062,10818.062 +32507,2025-03-11T02:44:20.510066-07:00,1728.0,10.830514,10830.514 +32508,2025-03-11T02:44:31.326369-07:00,1721.0,10.816303,10816.303 +32509,2025-03-11T02:44:42.150225-07:00,1727.0,10.823856,10823.856 +32510,2025-03-11T02:44:52.970353-07:00,1719.0,10.820128,10820.128 +32511,2025-03-11T02:45:03.802188-07:00,1728.0,10.831835,10831.835 +32512,2025-03-11T02:45:14.615974-07:00,1719.0,10.813786,10813.786 +32513,2025-03-11T02:45:25.443593-07:00,1683.0,10.827619,10827.619 +32514,2025-03-11T02:45:36.263967-07:00,1727.0,10.820374,10820.374 +32515,2025-03-11T02:45:47.084723-07:00,1725.0,10.820756,10820.756 +32516,2025-03-11T02:45:57.903387-07:00,1712.0,10.818664,10818.664 +32517,2025-03-11T02:46:08.733240-07:00,1722.0,10.829853,10829.853 +32518,2025-03-11T02:46:19.556256-07:00,1712.0,10.823016,10823.016 +32519,2025-03-11T02:46:30.373081-07:00,1725.0,10.816825,10816.825 +32520,2025-03-11T02:46:41.195096-07:00,1701.0,10.822015,10822.015 +32521,2025-03-11T02:46:52.028975-07:00,1675.0,10.833879,10833.879 +32522,2025-03-11T02:47:02.850273-07:00,1644.0,10.821298,10821.298 +32523,2025-03-11T02:47:13.677644-07:00,1670.0,10.827371,10827.371 +32524,2025-03-11T02:47:24.499190-07:00,1643.0,10.821546,10821.546 +32525,2025-03-11T02:47:35.316244-07:00,1724.0,10.817054,10817.054 +32526,2025-03-11T02:47:46.138411-07:00,1722.0,10.822167,10822.167 +32527,2025-03-11T02:47:56.961177-07:00,1728.0,10.822766,10822.766 +32528,2025-03-11T02:48:07.781683-07:00,1637.0,10.820506,10820.506 +32529,2025-03-11T02:48:18.604176-07:00,1683.0,10.822493,10822.493 +32530,2025-03-11T02:48:29.427974-07:00,1725.0,10.823798,10823.798 +32531,2025-03-11T02:48:40.250895-07:00,1712.0,10.822921,10822.921 +32532,2025-03-11T02:48:51.070972-07:00,1695.0,10.820077,10820.077 +32533,2025-03-11T02:49:01.892975-07:00,1636.0,10.822003,10822.003 +32534,2025-03-11T02:49:12.711497-07:00,1699.0,10.818522,10818.522 +32535,2025-03-11T02:49:23.535177-07:00,1664.0,10.82368,10823.68 +32536,2025-03-11T02:49:34.354952-07:00,1670.0,10.819775,10819.775 +32537,2025-03-11T02:49:45.171787-07:00,1676.0,10.816835,10816.835 +32538,2025-03-11T02:49:55.986333-07:00,1625.0,10.814546,10814.546 +32539,2025-03-11T02:50:06.801965-07:00,1712.0,10.815632,10815.632 +32540,2025-03-11T02:50:17.626167-07:00,1714.0,10.824202,10824.202 +32541,2025-03-11T02:50:28.435845-07:00,1655.0,10.809678,10809.678 +32542,2025-03-11T02:50:39.256228-07:00,1714.0,10.820383,10820.383 +32543,2025-03-11T02:50:50.074440-07:00,1637.0,10.818212,10818.212 +32544,2025-03-11T02:51:00.896561-07:00,1703.0,10.822121,10822.121 +32545,2025-03-11T02:51:11.713180-07:00,1708.0,10.816619,10816.619 +32546,2025-03-11T02:51:22.531968-07:00,1726.0,10.818788,10818.788 +32547,2025-03-11T02:51:33.352160-07:00,1686.0,10.820192,10820.192 +32548,2025-03-11T02:51:44.178015-07:00,1687.0,10.825855,10825.855 +32549,2025-03-11T02:51:54.997710-07:00,1710.0,10.819695,10819.695 +32550,2025-03-11T02:52:05.818531-07:00,1643.0,10.820821,10820.821 +32551,2025-03-11T02:52:16.633958-07:00,1657.0,10.815427,10815.427 +32552,2025-03-11T02:52:27.459975-07:00,1722.0,10.826017,10826.017 +32553,2025-03-11T02:52:38.279582-07:00,1716.0,10.819607,10819.607 +32554,2025-03-11T02:52:49.093121-07:00,1669.0,10.813539,10813.539 +32555,2025-03-11T02:52:59.918974-07:00,1723.0,10.825853,10825.853 +32556,2025-03-11T02:53:10.734971-07:00,1666.0,10.815997,10815.997 +32557,2025-03-11T02:53:21.557415-07:00,1679.0,10.822444,10822.444 +32558,2025-03-11T02:53:32.378210-07:00,1695.0,10.820795,10820.795 +32559,2025-03-11T02:53:43.197970-07:00,1685.0,10.81976,10819.76 +32560,2025-03-11T02:53:54.017975-07:00,1718.0,10.820005,10820.005 +32561,2025-03-11T02:54:04.852160-07:00,1728.0,10.834185,10834.185 +32562,2025-03-11T02:54:15.673369-07:00,1680.0,10.821209,10821.209 +32563,2025-03-11T02:54:26.487953-07:00,1699.0,10.814584,10814.584 +32564,2025-03-11T02:54:37.308974-07:00,1723.0,10.821021,10821.021 +32565,2025-03-11T02:54:48.130428-07:00,1726.0,10.821454,10821.454 +32566,2025-03-11T02:54:58.947970-07:00,1674.0,10.817542,10817.542 +32567,2025-03-11T02:55:09.765191-07:00,1712.0,10.817221,10817.221 +32568,2025-03-11T02:55:20.575812-07:00,1702.0,10.810621,10810.621 +32569,2025-03-11T02:55:31.393301-07:00,1680.0,10.817489,10817.489 +32570,2025-03-11T02:55:42.209962-07:00,1639.0,10.816661,10816.661 +32571,2025-03-11T02:55:53.030973-07:00,1690.0,10.821011,10821.011 +32572,2025-03-11T02:56:14.675025-07:00,1677.0,21.644052,21644.052 +32573,2025-03-11T02:56:25.493253-07:00,1721.0,10.818228,10818.228 +32574,2025-03-11T02:56:36.304117-07:00,1725.0,10.810864,10810.864 +32575,2025-03-11T02:56:47.126292-07:00,1715.0,10.822175,10822.175 +32576,2025-03-11T02:56:57.944971-07:00,1727.0,10.818679,10818.679 +32577,2025-03-11T02:57:08.771281-07:00,1680.0,10.82631,10826.31 +32578,2025-03-11T02:57:19.585337-07:00,1717.0,10.814056,10814.056 +32579,2025-03-11T02:57:30.402964-07:00,1666.0,10.817627,10817.627 +32580,2025-03-11T02:57:41.215528-07:00,1727.0,10.812564,10812.564 +32581,2025-03-11T02:57:52.032890-07:00,1665.0,10.817362,10817.362 +32582,2025-03-11T02:58:02.851210-07:00,1726.0,10.81832,10818.32 +32583,2025-03-11T02:58:13.658092-07:00,1677.0,10.806882,10806.882 +32584,2025-03-11T02:58:24.483958-07:00,1713.0,10.825866,10825.866 +32585,2025-03-11T02:58:35.295099-07:00,1722.0,10.811141,10811.141 +32586,2025-03-11T02:58:46.120976-07:00,1715.0,10.825877,10825.877 +32587,2025-03-11T02:58:56.937213-07:00,1691.0,10.816237,10816.237 +32588,2025-03-11T02:59:07.749640-07:00,1669.0,10.812427,10812.427 +32589,2025-03-11T02:59:18.567275-07:00,1726.0,10.817635,10817.635 +32590,2025-03-11T02:59:29.388968-07:00,1713.0,10.821693,10821.693 +32591,2025-03-11T02:59:40.214011-07:00,1682.0,10.825043,10825.043 +32592,2025-03-11T02:59:51.025904-07:00,1683.0,10.811893,10811.893 +32593,2025-03-11T03:00:01.843976-07:00,1680.0,10.818072,10818.072 +32594,2025-03-11T03:00:12.666025-07:00,1648.0,10.822049,10822.049 +32595,2025-03-11T03:00:23.483922-07:00,1661.0,10.817897,10817.897 +32596,2025-03-11T03:00:34.304975-07:00,1681.0,10.821053,10821.053 +32597,2025-03-11T03:00:45.123117-07:00,1648.0,10.818142,10818.142 +32598,2025-03-11T03:00:55.952144-07:00,1671.0,10.829027,10829.027 +32599,2025-03-11T03:01:06.755509-07:00,1725.0,10.803365,10803.365 +32600,2025-03-11T03:01:17.576219-07:00,1718.0,10.82071,10820.71 +32601,2025-03-11T03:01:28.390107-07:00,1625.0,10.813888,10813.888 +32602,2025-03-11T03:01:39.215576-07:00,1685.0,10.825469,10825.469 +32603,2025-03-11T03:01:50.025347-07:00,1683.0,10.809771,10809.771 +32604,2025-03-11T03:02:00.842217-07:00,1708.0,10.81687,10816.87 +32605,2025-03-11T03:02:11.666329-07:00,1708.0,10.824112,10824.112 +32606,2025-03-11T03:02:22.481314-07:00,1715.0,10.814985,10814.985 +32607,2025-03-11T03:02:33.290979-07:00,1678.0,10.809665,10809.665 +32608,2025-03-11T03:02:44.104292-07:00,1645.0,10.813313,10813.313 +32609,2025-03-11T03:02:54.914114-07:00,1645.0,10.809822,10809.822 +32610,2025-03-11T03:03:05.730958-07:00,1719.0,10.816844,10816.844 +32611,2025-03-11T03:03:16.540986-07:00,1725.0,10.810028,10810.028 +32612,2025-03-11T03:03:27.363030-07:00,1672.0,10.822044,10822.044 +32613,2025-03-11T03:03:38.177965-07:00,1712.0,10.814935,10814.935 +32614,2025-03-11T03:03:48.988967-07:00,1728.0,10.811002,10811.002 +32615,2025-03-11T03:03:59.814163-07:00,1727.0,10.825196,10825.196 +32616,2025-03-11T03:04:10.634962-07:00,1728.0,10.820799,10820.799 +32617,2025-03-11T03:04:21.442238-07:00,1662.0,10.807276,10807.276 +32618,2025-03-11T03:04:32.262369-07:00,1641.0,10.820131,10820.131 +32619,2025-03-11T03:04:43.070329-07:00,1682.0,10.80796,10807.96 +32620,2025-03-11T03:04:53.891114-07:00,1668.0,10.820785,10820.785 +32621,2025-03-11T03:05:04.699244-07:00,1711.0,10.80813,10808.13 +32622,2025-03-11T03:05:15.515225-07:00,1678.0,10.815981,10815.981 +32623,2025-03-11T03:05:26.337503-07:00,1710.0,10.822278,10822.278 +32624,2025-03-11T03:05:37.157015-07:00,1675.0,10.819512,10819.512 +32625,2025-03-11T03:05:47.973005-07:00,1710.0,10.81599,10815.99 +32626,2025-03-11T03:05:58.827741-07:00,1680.0,10.854736,10854.736 +32627,2025-03-11T03:06:09.646104-07:00,1718.0,10.818363,10818.363 +32628,2025-03-11T03:06:20.467991-07:00,1689.0,10.821887,10821.887 +32629,2025-03-11T03:06:31.281895-07:00,1726.0,10.813904,10813.904 +32630,2025-03-11T03:06:42.099562-07:00,1699.0,10.817667,10817.667 +32631,2025-03-11T03:06:52.917654-07:00,1682.0,10.818092,10818.092 +32632,2025-03-11T03:07:03.737591-07:00,1729.0,10.819937,10819.937 +32633,2025-03-11T03:07:14.556582-07:00,1675.0,10.818991,10818.991 +32634,2025-03-11T03:07:25.375910-07:00,1730.0,10.819328,10819.328 +32635,2025-03-11T03:07:36.181848-07:00,1728.0,10.805938,10805.938 +32636,2025-03-11T03:07:46.998622-07:00,1728.0,10.816774,10816.774 +32637,2025-03-11T03:07:57.816824-07:00,1674.0,10.818202,10818.202 +32638,2025-03-11T03:08:08.629315-07:00,1730.0,10.812491,10812.491 +32639,2025-03-11T03:08:19.445602-07:00,1697.0,10.816287,10816.287 +32640,2025-03-11T03:08:30.261059-07:00,1638.0,10.815457,10815.457 +32641,2025-03-11T03:08:41.075576-07:00,1687.0,10.814517,10814.517 +32642,2025-03-11T03:08:51.889681-07:00,1664.0,10.814105,10814.105 +32643,2025-03-11T03:09:02.704078-07:00,1715.0,10.814397,10814.397 +32644,2025-03-11T03:09:13.517050-07:00,1667.0,10.812972,10812.972 +32645,2025-03-11T03:09:24.322586-07:00,1730.0,10.805536,10805.536 +32646,2025-03-11T03:09:35.140575-07:00,1714.0,10.817989,10817.989 +32647,2025-03-11T03:09:45.951599-07:00,1650.0,10.811024,10811.024 +32648,2025-03-11T03:09:56.763738-07:00,1723.0,10.812139,10812.139 +32649,2025-03-11T03:10:07.574198-07:00,1694.0,10.81046,10810.46 +32650,2025-03-11T03:10:18.394878-07:00,1629.0,10.82068,10820.68 +32651,2025-03-11T03:10:29.210592-07:00,1729.0,10.815714,10815.714 +32652,2025-03-11T03:10:40.031920-07:00,1677.0,10.821328,10821.328 +32653,2025-03-11T03:10:50.846954-07:00,1728.0,10.815034,10815.034 +32654,2025-03-11T03:11:01.664598-07:00,1727.0,10.817644,10817.644 +32655,2025-03-11T03:11:12.479595-07:00,1657.0,10.814997,10814.997 +32656,2025-03-11T03:11:23.287761-07:00,1711.0,10.808166,10808.166 +32657,2025-03-11T03:11:34.109004-07:00,1711.0,10.821243,10821.243 +32658,2025-03-11T03:11:44.915277-07:00,1680.0,10.806273,10806.273 +32659,2025-03-11T03:11:55.742591-07:00,1681.0,10.827314,10827.314 +32660,2025-03-11T03:12:06.552667-07:00,1681.0,10.810076,10810.076 +32661,2025-03-11T03:12:17.369836-07:00,1719.0,10.817169,10817.169 +32662,2025-03-11T03:12:28.187653-07:00,1685.0,10.817817,10817.817 +32663,2025-03-11T03:12:39.006659-07:00,1727.0,10.819006,10819.006 +32664,2025-03-11T03:12:49.821518-07:00,1714.0,10.814859,10814.859 +32665,2025-03-11T03:13:00.639601-07:00,1682.0,10.818083,10818.083 +32666,2025-03-11T03:13:11.464588-07:00,1727.0,10.824987,10824.987 +32667,2025-03-11T03:13:22.278805-07:00,1727.0,10.814217,10814.217 +32668,2025-03-11T03:13:33.092927-07:00,1685.0,10.814122,10814.122 +32669,2025-03-11T03:13:43.912825-07:00,1700.0,10.819898,10819.898 +32670,2025-03-11T03:13:54.732596-07:00,1680.0,10.819771,10819.771 +32671,2025-03-11T03:14:05.547012-07:00,1716.0,10.814416,10814.416 +32672,2025-03-11T03:14:16.351509-07:00,1645.0,10.804497,10804.497 +32673,2025-03-11T03:14:27.171591-07:00,1686.0,10.820082,10820.082 +32674,2025-03-11T03:14:37.980859-07:00,1727.0,10.809268,10809.268 +32675,2025-03-11T03:14:48.785646-07:00,1645.0,10.804787,10804.787 +32676,2025-03-11T03:14:59.609458-07:00,1713.0,10.823812,10823.812 +32677,2025-03-11T03:15:10.426066-07:00,1728.0,10.816608,10816.608 +32678,2025-03-11T03:15:21.234594-07:00,1728.0,10.808528,10808.528 +32679,2025-03-11T03:15:32.059863-07:00,1658.0,10.825269,10825.269 +32680,2025-03-11T03:15:42.880452-07:00,1649.0,10.820589,10820.589 +32681,2025-03-11T03:15:53.696853-07:00,1680.0,10.816401,10816.401 +32682,2025-03-11T03:16:04.503638-07:00,1695.0,10.806785,10806.785 +32683,2025-03-11T03:16:15.318585-07:00,1702.0,10.814947,10814.947 +32684,2025-03-11T03:16:26.133596-07:00,1721.0,10.815011,10815.011 +32685,2025-03-11T03:16:36.959788-07:00,1726.0,10.826192,10826.192 +32686,2025-03-11T03:16:47.774583-07:00,1641.0,10.814795,10814.795 +32687,2025-03-11T03:16:58.582634-07:00,1681.0,10.808051,10808.051 +32688,2025-03-11T03:17:09.403817-07:00,1648.0,10.821183,10821.183 +32689,2025-03-11T03:17:20.218804-07:00,1641.0,10.814987,10814.987 +32690,2025-03-11T03:17:31.026882-07:00,1728.0,10.808078,10808.078 +32691,2025-03-11T03:17:41.844743-07:00,1722.0,10.817861,10817.861 +32692,2025-03-11T03:17:52.660840-07:00,1728.0,10.816097,10816.097 +32693,2025-03-11T03:18:03.463585-07:00,1726.0,10.802745,10802.745 +32694,2025-03-11T03:18:14.277265-07:00,1714.0,10.81368,10813.68 +32695,2025-03-11T03:18:25.082879-07:00,1719.0,10.805614,10805.614 +32696,2025-03-11T03:18:35.896762-07:00,1727.0,10.813883,10813.883 +32697,2025-03-11T03:18:46.711576-07:00,1728.0,10.814814,10814.814 +32698,2025-03-11T03:18:57.530711-07:00,1679.0,10.819135,10819.135 +32699,2025-03-11T03:19:08.341003-07:00,1703.0,10.810292,10810.292 +32700,2025-03-11T03:19:19.168606-07:00,1662.0,10.827603,10827.603 +32701,2025-03-11T03:19:29.978630-07:00,1699.0,10.810024,10810.024 +32702,2025-03-11T03:19:40.786588-07:00,1691.0,10.807958,10807.958 +32703,2025-03-11T03:19:51.604902-07:00,1649.0,10.818314,10818.314 +32704,2025-03-11T03:20:02.420856-07:00,1675.0,10.815954,10815.954 +32705,2025-03-11T03:20:13.234917-07:00,1715.0,10.814061,10814.061 +32706,2025-03-11T03:20:24.048819-07:00,1630.0,10.813902,10813.902 +32707,2025-03-11T03:20:34.870184-07:00,1680.0,10.821365,10821.365 +32708,2025-03-11T03:20:45.678986-07:00,1726.0,10.808802,10808.802 +32709,2025-03-11T03:20:56.487884-07:00,1701.0,10.808898,10808.898 +32710,2025-03-11T03:21:07.308582-07:00,1675.0,10.820698,10820.698 +32711,2025-03-11T03:21:18.126587-07:00,1712.0,10.818005,10818.005 +32712,2025-03-11T03:21:28.936628-07:00,1728.0,10.810041,10810.041 +32713,2025-03-11T03:21:39.756234-07:00,1695.0,10.819606,10819.606 +32714,2025-03-11T03:21:50.579021-07:00,1691.0,10.822787,10822.787 +32715,2025-03-11T03:22:01.392583-07:00,1725.0,10.813562,10813.562 +32716,2025-03-11T03:22:12.207718-07:00,1699.0,10.815135,10815.135 +32717,2025-03-11T03:22:23.023650-07:00,1646.0,10.815932,10815.932 +32718,2025-03-11T03:22:33.842738-07:00,1729.0,10.819088,10819.088 +32719,2025-03-11T03:22:44.654594-07:00,1677.0,10.811856,10811.856 +32720,2025-03-11T03:22:55.477960-07:00,1691.0,10.823366,10823.366 +32721,2025-03-11T03:23:06.294196-07:00,1678.0,10.816236,10816.236 +32722,2025-03-11T03:23:17.106796-07:00,1725.0,10.8126,10812.6 +32723,2025-03-11T03:23:27.920594-07:00,1728.0,10.813798,10813.798 +32724,2025-03-11T03:23:38.736114-07:00,1680.0,10.81552,10815.52 +32725,2025-03-11T03:23:49.554722-07:00,1680.0,10.818608,10818.608 +32726,2025-03-11T03:24:00.377588-07:00,1647.0,10.822866,10822.866 +32727,2025-03-11T03:24:11.197114-07:00,1678.0,10.819526,10819.526 +32728,2025-03-11T03:24:22.013660-07:00,1703.0,10.816546,10816.546 +32729,2025-03-11T03:24:32.826032-07:00,1680.0,10.812372,10812.372 +32730,2025-03-11T03:24:43.647945-07:00,1680.0,10.821913,10821.913 +32731,2025-03-11T03:24:54.472953-07:00,1727.0,10.825008,10825.008 +32732,2025-03-11T03:25:05.287811-07:00,1727.0,10.814858,10814.858 +32733,2025-03-11T03:25:16.101851-07:00,1727.0,10.81404,10814.04 +32734,2025-03-11T03:25:26.918639-07:00,1639.0,10.816788,10816.788 +32735,2025-03-11T03:25:37.721588-07:00,1655.0,10.802949,10802.949 +32736,2025-03-11T03:25:48.544733-07:00,1685.0,10.823145,10823.145 +32737,2025-03-11T03:25:59.355596-07:00,1709.0,10.810863,10810.863 +32738,2025-03-11T03:26:10.174817-07:00,1712.0,10.819221,10819.221 +32739,2025-03-11T03:26:20.996171-07:00,1718.0,10.821354,10821.354 +32740,2025-03-11T03:26:31.805937-07:00,1631.0,10.809766,10809.766 +32741,2025-03-11T03:26:42.623599-07:00,1651.0,10.817662,10817.662 +32742,2025-03-11T03:26:53.429592-07:00,1725.0,10.805993,10805.993 +32743,2025-03-11T03:27:04.248587-07:00,1726.0,10.818995,10818.995 +32744,2025-03-11T03:27:15.070637-07:00,1681.0,10.82205,10822.05 +32745,2025-03-11T03:27:25.884596-07:00,1730.0,10.813959,10813.959 +32746,2025-03-11T03:27:36.698592-07:00,1661.0,10.813996,10813.996 +32747,2025-03-11T03:27:47.507803-07:00,1708.0,10.809211,10809.211 +32748,2025-03-11T03:27:58.326754-07:00,1691.0,10.818951,10818.951 +32749,2025-03-11T03:28:09.136612-07:00,1695.0,10.809858,10809.858 +32750,2025-03-11T03:28:19.957874-07:00,1635.0,10.821262,10821.262 +32751,2025-03-11T03:28:30.777657-07:00,1685.0,10.819783,10819.783 +32752,2025-03-11T03:28:41.591914-07:00,1629.0,10.814257,10814.257 +32753,2025-03-11T03:28:52.400880-07:00,1724.0,10.808966,10808.966 +32754,2025-03-11T03:29:03.220583-07:00,1648.0,10.819703,10819.703 +32755,2025-03-11T03:29:14.033914-07:00,1674.0,10.813331,10813.331 +32756,2025-03-11T03:29:24.836588-07:00,1729.0,10.802674,10802.674 +32757,2025-03-11T03:29:35.653942-07:00,1665.0,10.817354,10817.354 +32758,2025-03-11T03:29:46.465102-07:00,1697.0,10.81116,10811.16 +32759,2025-03-11T03:29:57.282669-07:00,1705.0,10.817567,10817.567 +32760,2025-03-11T03:30:08.098582-07:00,1728.0,10.815913,10815.913 +32761,2025-03-11T03:30:18.906817-07:00,1712.0,10.808235,10808.235 +32762,2025-03-11T03:30:29.717904-07:00,1726.0,10.811087,10811.087 +32763,2025-03-11T03:30:40.535960-07:00,1727.0,10.818056,10818.056 +32764,2025-03-11T03:30:51.355695-07:00,1670.0,10.819735,10819.735 +32765,2025-03-11T03:31:02.172646-07:00,1709.0,10.816951,10816.951 +32766,2025-03-11T03:31:12.979574-07:00,1726.0,10.806928,10806.928 +32767,2025-03-11T03:31:23.804590-07:00,1664.0,10.825016,10825.016 +32768,2025-03-11T03:31:34.611798-07:00,1728.0,10.807208,10807.208 +32769,2025-03-11T03:32:39.500824-07:00,1727.0,64.889026,64889.026 +32770,2025-03-11T03:32:50.318567-07:00,1675.0,10.817743,10817.743 +32771,2025-03-11T03:33:01.135984-07:00,1705.0,10.817417,10817.417 +32772,2025-03-11T03:33:11.939598-07:00,1680.0,10.803614,10803.614 +32773,2025-03-11T03:33:22.752437-07:00,1683.0,10.812839,10812.839 +32774,2025-03-11T03:33:33.564591-07:00,1702.0,10.812154,10812.154 +32775,2025-03-11T03:33:44.379105-07:00,1647.0,10.814514,10814.514 +32776,2025-03-11T03:33:55.192915-07:00,1680.0,10.81381,10813.81 +32777,2025-03-11T03:34:06.013880-07:00,1667.0,10.820965,10820.965 +32778,2025-03-11T03:34:16.822581-07:00,1714.0,10.808701,10808.701 +32779,2025-03-11T03:34:27.638653-07:00,1702.0,10.816072,10816.072 +32780,2025-03-11T03:34:38.443752-07:00,1680.0,10.805099,10805.099 +32781,2025-03-11T03:34:49.263072-07:00,1709.0,10.81932,10819.32 +32782,2025-03-11T03:35:00.074419-07:00,1685.0,10.811347,10811.347 +32783,2025-03-11T03:35:10.888075-07:00,1725.0,10.813656,10813.656 +32784,2025-03-11T03:35:21.704595-07:00,1685.0,10.81652,10816.52 +32785,2025-03-11T03:35:32.522874-07:00,1653.0,10.818279,10818.279 +32786,2025-03-11T03:35:43.333013-07:00,1693.0,10.810139,10810.139 +32787,2025-03-11T03:35:54.152644-07:00,1727.0,10.819631,10819.631 +32788,2025-03-11T03:36:04.968573-07:00,1634.0,10.815929,10815.929 +32789,2025-03-11T03:36:15.780588-07:00,1699.0,10.812015,10812.015 +32790,2025-03-11T03:36:26.598820-07:00,1685.0,10.818232,10818.232 +32791,2025-03-11T03:36:37.414983-07:00,1650.0,10.816163,10816.163 +32792,2025-03-11T03:36:48.233828-07:00,1727.0,10.818845,10818.845 +32793,2025-03-11T03:36:59.049064-07:00,1722.0,10.815236,10815.236 +32794,2025-03-11T03:37:09.864174-07:00,1697.0,10.81511,10815.11 +32795,2025-03-11T03:37:20.685731-07:00,1671.0,10.821557,10821.557 +32796,2025-03-11T03:37:31.490930-07:00,1657.0,10.805199,10805.199 +32797,2025-03-11T03:37:42.308914-07:00,1723.0,10.817984,10817.984 +32798,2025-03-11T03:37:53.120925-07:00,1727.0,10.812011,10812.011 +32799,2025-03-11T03:38:03.924739-07:00,1669.0,10.803814,10803.814 +32800,2025-03-11T03:38:14.744030-07:00,1631.0,10.819291,10819.291 +32801,2025-03-11T03:38:25.567839-07:00,1659.0,10.823809,10823.809 +32802,2025-03-11T03:38:36.375591-07:00,1701.0,10.807752,10807.752 +32803,2025-03-11T03:38:47.185050-07:00,1719.0,10.809459,10809.459 +32804,2025-03-11T03:38:58.009593-07:00,1717.0,10.824543,10824.543 +32805,2025-03-11T03:39:08.814587-07:00,1719.0,10.804994,10804.994 +32806,2025-03-11T03:39:19.626571-07:00,1715.0,10.811984,10811.984 +32807,2025-03-11T03:39:30.442620-07:00,1729.0,10.816049,10816.049 +32808,2025-03-11T03:39:41.265013-07:00,1653.0,10.822393,10822.393 +32809,2025-03-11T03:39:52.077834-07:00,1727.0,10.812821,10812.821 +32810,2025-03-11T03:40:02.896592-07:00,1702.0,10.818758,10818.758 +32811,2025-03-11T03:40:13.707263-07:00,1725.0,10.810671,10810.671 +32812,2025-03-11T03:40:24.525999-07:00,1723.0,10.818736,10818.736 +32813,2025-03-11T03:40:35.335591-07:00,1726.0,10.809592,10809.592 +32814,2025-03-11T03:40:46.151597-07:00,1703.0,10.816006,10816.006 +32815,2025-03-11T03:40:56.972584-07:00,1679.0,10.820987,10820.987 +32816,2025-03-11T03:41:07.785925-07:00,1723.0,10.813341,10813.341 +32817,2025-03-11T03:41:18.600155-07:00,1696.0,10.81423,10814.23 +32818,2025-03-11T03:41:29.421817-07:00,1645.0,10.821662,10821.662 +32819,2025-03-11T03:41:40.234367-07:00,1675.0,10.81255,10812.55 +32820,2025-03-11T03:41:51.055024-07:00,1678.0,10.820657,10820.657 +32821,2025-03-11T03:42:01.865109-07:00,1715.0,10.810085,10810.085 +32822,2025-03-11T03:42:12.683592-07:00,1725.0,10.818483,10818.483 +32823,2025-03-11T03:42:23.503356-07:00,1723.0,10.819764,10819.764 +32824,2025-03-11T03:42:34.314035-07:00,1682.0,10.810679,10810.679 +32825,2025-03-11T03:42:45.131875-07:00,1728.0,10.81784,10817.84 +32826,2025-03-11T03:42:55.949590-07:00,1677.0,10.817715,10817.715 +32827,2025-03-11T03:43:06.761972-07:00,1642.0,10.812382,10812.382 +32828,2025-03-11T03:43:17.578830-07:00,1654.0,10.816858,10816.858 +32829,2025-03-11T03:43:28.399597-07:00,1728.0,10.820767,10820.767 +32830,2025-03-11T03:43:39.220598-07:00,1693.0,10.821001,10821.001 +32831,2025-03-11T03:43:50.039873-07:00,1705.0,10.819275,10819.275 +32832,2025-03-11T03:44:00.855821-07:00,1715.0,10.815948,10815.948 +32833,2025-03-11T03:44:11.668744-07:00,1631.0,10.812923,10812.923 +32834,2025-03-11T03:44:22.483588-07:00,1646.0,10.814844,10814.844 +32835,2025-03-11T03:44:33.298057-07:00,1712.0,10.814469,10814.469 +32836,2025-03-11T03:44:44.112238-07:00,1728.0,10.814181,10814.181 +32837,2025-03-11T03:44:54.921581-07:00,1726.0,10.809343,10809.343 +32838,2025-03-11T03:45:05.741649-07:00,1632.0,10.820068,10820.068 +32839,2025-03-11T03:45:16.550041-07:00,1635.0,10.808392,10808.392 +32840,2025-03-11T03:45:27.370874-07:00,1719.0,10.820833,10820.833 +32841,2025-03-11T03:45:38.174976-07:00,1648.0,10.804102,10804.102 +32842,2025-03-11T03:45:48.989823-07:00,1649.0,10.814847,10814.847 +32843,2025-03-11T03:45:59.797734-07:00,1716.0,10.807911,10807.911 +32844,2025-03-11T03:46:10.614600-07:00,1728.0,10.816866,10816.866 +32845,2025-03-11T03:46:21.429791-07:00,1681.0,10.815191,10815.191 +32846,2025-03-11T03:46:32.236766-07:00,1660.0,10.806975,10806.975 +32847,2025-03-11T03:46:43.050735-07:00,1681.0,10.813969,10813.969 +32848,2025-03-11T03:46:53.872906-07:00,1655.0,10.822171,10822.171 +32849,2025-03-11T03:47:04.683576-07:00,1711.0,10.81067,10810.67 +32850,2025-03-11T03:47:15.504878-07:00,1705.0,10.821302,10821.302 +32851,2025-03-11T03:47:26.319048-07:00,1680.0,10.81417,10814.17 +32852,2025-03-11T03:47:37.130632-07:00,1648.0,10.811584,10811.584 +32853,2025-03-11T03:47:47.945597-07:00,1728.0,10.814965,10814.965 +32854,2025-03-11T03:47:58.753195-07:00,1710.0,10.807598,10807.598 +32855,2025-03-11T03:48:09.573180-07:00,1675.0,10.819985,10819.985 +32856,2025-03-11T03:48:20.388636-07:00,1675.0,10.815456,10815.456 +32857,2025-03-11T03:48:31.209737-07:00,1723.0,10.821101,10821.101 +32858,2025-03-11T03:48:42.023875-07:00,1654.0,10.814138,10814.138 +32859,2025-03-11T03:48:52.842037-07:00,1715.0,10.818162,10818.162 +32860,2025-03-11T03:49:03.654588-07:00,1715.0,10.812551,10812.551 +32861,2025-03-11T03:49:14.465593-07:00,1641.0,10.811005,10811.005 +32862,2025-03-11T03:49:25.280592-07:00,1691.0,10.814999,10814.999 +32863,2025-03-11T03:49:36.082598-07:00,1729.0,10.802006,10802.006 +32864,2025-03-11T03:49:46.895590-07:00,1689.0,10.812992,10812.992 +32865,2025-03-11T03:49:57.707923-07:00,1707.0,10.812333,10812.333 +32866,2025-03-11T03:50:08.518949-07:00,1681.0,10.811026,10811.026 +32867,2025-03-11T03:50:19.333902-07:00,1648.0,10.814953,10814.953 +32868,2025-03-11T03:50:30.146592-07:00,1699.0,10.81269,10812.69 +32869,2025-03-11T03:50:40.963114-07:00,1728.0,10.816522,10816.522 +32870,2025-03-11T03:50:51.765641-07:00,1712.0,10.802527,10802.527 +32871,2025-03-11T03:51:02.584385-07:00,1714.0,10.818744,10818.744 +32872,2025-03-11T03:51:13.401587-07:00,1647.0,10.817202,10817.202 +32873,2025-03-11T03:51:24.209838-07:00,1721.0,10.808251,10808.251 +32874,2025-03-11T03:51:35.022671-07:00,1729.0,10.812833,10812.833 +32875,2025-03-11T03:51:45.840278-07:00,1670.0,10.817607,10817.607 +32876,2025-03-11T03:51:56.653875-07:00,1711.0,10.813597,10813.597 +32877,2025-03-11T03:52:07.461592-07:00,1693.0,10.807717,10807.717 +32878,2025-03-11T03:52:18.271820-07:00,1678.0,10.810228,10810.228 +32879,2025-03-11T03:52:29.092590-07:00,1725.0,10.82077,10820.77 +32880,2025-03-11T03:52:39.901640-07:00,1685.0,10.80905,10809.05 +32881,2025-03-11T03:52:50.717179-07:00,1709.0,10.815539,10815.539 +32882,2025-03-11T03:53:01.525650-07:00,1649.0,10.808471,10808.471 +32883,2025-03-11T03:53:12.339588-07:00,1727.0,10.813938,10813.938 +32884,2025-03-11T03:53:23.142591-07:00,1691.0,10.803003,10803.003 +32885,2025-03-11T03:53:33.961158-07:00,1683.0,10.818567,10818.567 +32886,2025-03-11T03:53:44.775674-07:00,1691.0,10.814516,10814.516 +32887,2025-03-11T03:53:55.587937-07:00,1679.0,10.812263,10812.263 +32888,2025-03-11T03:54:06.392994-07:00,1728.0,10.805057,10805.057 +32889,2025-03-11T03:54:17.202575-07:00,1726.0,10.809581,10809.581 +32890,2025-03-11T03:54:28.025959-07:00,1679.0,10.823384,10823.384 +32891,2025-03-11T03:54:38.832846-07:00,1648.0,10.806887,10806.887 +32892,2025-03-11T03:54:49.649186-07:00,1670.0,10.81634,10816.34 +32893,2025-03-11T03:55:00.457735-07:00,1648.0,10.808549,10808.549 +32894,2025-03-11T03:55:11.266805-07:00,1665.0,10.80907,10809.07 +32895,2025-03-11T03:55:22.080593-07:00,1630.0,10.813788,10813.788 +32896,2025-03-11T03:55:32.900731-07:00,1692.0,10.820138,10820.138 +32897,2025-03-11T03:55:43.710304-07:00,1675.0,10.809573,10809.573 +32898,2025-03-11T03:55:54.525804-07:00,1707.0,10.8155,10815.5 +32899,2025-03-11T03:56:05.349576-07:00,1682.0,10.823772,10823.772 +32900,2025-03-11T03:56:16.159588-07:00,1713.0,10.810012,10810.012 +32901,2025-03-11T03:56:26.979842-07:00,1707.0,10.820254,10820.254 +32902,2025-03-11T03:56:37.781920-07:00,1709.0,10.802078,10802.078 +32903,2025-03-11T03:56:48.597245-07:00,1712.0,10.815325,10815.325 +32904,2025-03-11T03:56:59.400660-07:00,1647.0,10.803415,10803.415 +32905,2025-03-11T03:57:10.216865-07:00,1674.0,10.816205,10816.205 +32906,2025-03-11T03:57:21.032594-07:00,1639.0,10.815729,10815.729 +32907,2025-03-11T03:57:31.842588-07:00,1652.0,10.809994,10809.994 +32908,2025-03-11T03:57:42.654010-07:00,1683.0,10.811422,10811.422 +32909,2025-03-11T03:57:53.475837-07:00,1725.0,10.821827,10821.827 +32910,2025-03-11T03:58:04.288588-07:00,1691.0,10.812751,10812.751 +32911,2025-03-11T03:58:15.103984-07:00,1653.0,10.815396,10815.396 +32912,2025-03-11T03:58:25.913741-07:00,1728.0,10.809757,10809.757 +32913,2025-03-11T03:58:36.734631-07:00,1655.0,10.82089,10820.89 +32914,2025-03-11T03:58:47.540715-07:00,1648.0,10.806084,10806.084 +32915,2025-03-11T03:58:58.359130-07:00,1685.0,10.818415,10818.415 +32916,2025-03-11T03:59:09.175592-07:00,1726.0,10.816462,10816.462 +32917,2025-03-11T03:59:19.986093-07:00,1693.0,10.810501,10810.501 +32918,2025-03-11T03:59:30.805829-07:00,1717.0,10.819736,10819.736 +32919,2025-03-11T03:59:41.619651-07:00,1728.0,10.813822,10813.822 +32920,2025-03-11T03:59:52.434582-07:00,1731.0,10.814931,10814.931 +32921,2025-03-11T04:00:03.238603-07:00,1728.0,10.804021,10804.021 +32922,2025-03-11T04:00:14.058898-07:00,1729.0,10.820295,10820.295 +32923,2025-03-11T04:00:24.874600-07:00,1728.0,10.815702,10815.702 +32924,2025-03-11T04:00:35.682737-07:00,1681.0,10.808137,10808.137 +32925,2025-03-11T04:00:46.498758-07:00,1728.0,10.816021,10816.021 +32926,2025-03-11T04:00:57.317296-07:00,1723.0,10.818538,10818.538 +32927,2025-03-11T04:01:08.126180-07:00,1671.0,10.808884,10808.884 +32928,2025-03-11T04:01:18.930977-07:00,1642.0,10.804797,10804.797 +32929,2025-03-11T04:01:29.744590-07:00,1711.0,10.813613,10813.613 +32930,2025-03-11T04:01:40.548777-07:00,1732.0,10.804187,10804.187 +32931,2025-03-11T04:01:51.362840-07:00,1701.0,10.814063,10814.063 +32932,2025-03-11T04:02:02.178869-07:00,1698.0,10.816029,10816.029 +32933,2025-03-11T04:02:12.999069-07:00,1680.0,10.8202,10820.2 +32934,2025-03-11T04:02:23.807671-07:00,1716.0,10.808602,10808.602 +32935,2025-03-11T04:02:34.627571-07:00,1726.0,10.8199,10819.9 +32936,2025-03-11T04:02:45.438596-07:00,1725.0,10.811025,10811.025 +32937,2025-03-11T04:02:56.250041-07:00,1727.0,10.811445,10811.445 +32938,2025-03-11T04:03:07.071970-07:00,1693.0,10.821929,10821.929 +32939,2025-03-11T04:03:17.879609-07:00,1642.0,10.807639,10807.639 +32940,2025-03-11T04:03:28.693595-07:00,1729.0,10.813986,10813.986 +32941,2025-03-11T04:03:39.512637-07:00,1714.0,10.819042,10819.042 +32942,2025-03-11T04:03:50.329959-07:00,1721.0,10.817322,10817.322 +32943,2025-03-11T04:04:01.135038-07:00,1669.0,10.805079,10805.079 +32944,2025-03-11T04:04:11.953600-07:00,1680.0,10.818562,10818.562 +32945,2025-03-11T04:04:22.766586-07:00,1642.0,10.812986,10812.986 +32946,2025-03-11T04:04:33.575641-07:00,1648.0,10.809055,10809.055 +32947,2025-03-11T04:04:44.392088-07:00,1727.0,10.816447,10816.447 +32948,2025-03-11T04:04:55.200360-07:00,1714.0,10.808272,10808.272 +32949,2025-03-11T04:05:06.012657-07:00,1729.0,10.812297,10812.297 +32950,2025-03-11T04:05:16.827659-07:00,1686.0,10.815002,10815.002 +32951,2025-03-11T04:05:27.637831-07:00,1658.0,10.810172,10810.172 +32952,2025-03-11T04:05:38.461908-07:00,1723.0,10.824077,10824.077 +32953,2025-03-11T04:05:49.335240-07:00,1717.0,10.873332,10873.332 +32954,2025-03-11T04:06:00.146645-07:00,1680.0,10.811405,10811.405 +32955,2025-03-11T04:06:10.964689-07:00,1711.0,10.818044,10818.044 +32956,2025-03-11T04:06:21.784033-07:00,1723.0,10.819344,10819.344 +32957,2025-03-11T04:06:32.597780-07:00,1728.0,10.813747,10813.747 +32958,2025-03-11T04:06:43.402643-07:00,1654.0,10.804863,10804.863 +32959,2025-03-11T04:06:54.218028-07:00,1673.0,10.815385,10815.385 +32960,2025-03-11T04:07:05.031623-07:00,1695.0,10.813595,10813.595 +32961,2025-03-11T04:07:15.845643-07:00,1681.0,10.81402,10814.02 +32962,2025-03-11T04:07:26.660947-07:00,1694.0,10.815304,10815.304 +32963,2025-03-11T04:07:37.481867-07:00,1629.0,10.82092,10820.92 +32964,2025-03-11T04:07:48.295852-07:00,1725.0,10.813985,10813.985 +32965,2025-03-11T04:07:59.105904-07:00,1691.0,10.810052,10810.052 +32966,2025-03-11T04:08:09.931288-07:00,1728.0,10.825384,10825.384 +32967,2025-03-11T04:08:20.734756-07:00,1687.0,10.803468,10803.468 +32968,2025-03-11T04:08:31.548646-07:00,1726.0,10.81389,10813.89 +32969,2025-03-11T04:08:42.361941-07:00,1725.0,10.813295,10813.295 +32970,2025-03-11T04:08:53.179275-07:00,1729.0,10.817334,10817.334 +32971,2025-03-11T04:09:03.994059-07:00,1689.0,10.814784,10814.784 +32972,2025-03-11T04:09:14.802641-07:00,1649.0,10.808582,10808.582 +32973,2025-03-11T04:09:25.622629-07:00,1728.0,10.819988,10819.988 +32974,2025-03-11T04:09:36.443335-07:00,1728.0,10.820706,10820.706 +32975,2025-03-11T04:09:47.257008-07:00,1729.0,10.813673,10813.673 +32976,2025-03-11T04:09:58.084649-07:00,1726.0,10.827641,10827.641 +32977,2025-03-11T04:10:08.894632-07:00,1726.0,10.809983,10809.983 +32978,2025-03-11T04:10:19.706774-07:00,1729.0,10.812142,10812.142 +32979,2025-03-11T04:10:30.526313-07:00,1673.0,10.819539,10819.539 +32980,2025-03-11T04:10:41.331707-07:00,1683.0,10.805394,10805.394 +32981,2025-03-11T04:10:52.145639-07:00,1714.0,10.813932,10813.932 +32982,2025-03-11T04:11:02.954743-07:00,1686.0,10.809104,10809.104 +32983,2025-03-11T04:11:13.769759-07:00,1703.0,10.815016,10815.016 +32984,2025-03-11T04:11:24.583241-07:00,1670.0,10.813482,10813.482 +32985,2025-03-11T04:11:35.400624-07:00,1728.0,10.817383,10817.383 +32986,2025-03-11T04:11:46.218636-07:00,1680.0,10.818012,10818.012 +32987,2025-03-11T04:11:57.031635-07:00,1647.0,10.812999,10812.999 +32988,2025-03-11T04:12:07.844082-07:00,1718.0,10.812447,10812.447 +32989,2025-03-11T04:12:18.662013-07:00,1661.0,10.817931,10817.931 +32990,2025-03-11T04:12:29.470185-07:00,1683.0,10.808172,10808.172 +32991,2025-03-11T04:12:40.290891-07:00,1723.0,10.820706,10820.706 +32992,2025-03-11T04:12:51.098632-07:00,1730.0,10.807741,10807.741 +32993,2025-03-11T04:13:01.907679-07:00,1675.0,10.809047,10809.047 +32994,2025-03-11T04:13:12.725118-07:00,1690.0,10.817439,10817.439 +32995,2025-03-11T04:13:23.537911-07:00,1644.0,10.812793,10812.793 +32996,2025-03-11T04:13:34.346106-07:00,1717.0,10.808195,10808.195 +32997,2025-03-11T04:13:45.154795-07:00,1683.0,10.808689,10808.689 +32998,2025-03-11T04:13:55.966761-07:00,1682.0,10.811966,10811.966 +32999,2025-03-11T04:14:06.775629-07:00,1728.0,10.808868,10808.868 +33000,2025-03-11T04:14:17.589346-07:00,1730.0,10.813717,10813.717 +33001,2025-03-11T04:14:28.409028-07:00,1695.0,10.819682,10819.682 +33002,2025-03-11T04:14:39.211626-07:00,1681.0,10.802598,10802.598 +33003,2025-03-11T04:14:50.032492-07:00,1723.0,10.820866,10820.866 +33004,2025-03-11T04:15:00.832160-07:00,1687.0,10.799668,10799.668 +33005,2025-03-11T04:15:11.651217-07:00,1727.0,10.819057,10819.057 +33006,2025-03-11T04:15:22.453945-07:00,1727.0,10.802728,10802.728 +33007,2025-03-11T04:15:33.275171-07:00,1727.0,10.821226,10821.226 +33008,2025-03-11T04:15:44.077964-07:00,1719.0,10.802793,10802.793 +33009,2025-03-11T04:15:54.888710-07:00,1693.0,10.810746,10810.746 +33010,2025-03-11T04:16:05.707640-07:00,1721.0,10.81893,10818.93 +33011,2025-03-11T04:16:16.527667-07:00,1699.0,10.820027,10820.027 +33012,2025-03-11T04:16:27.333978-07:00,1706.0,10.806311,10806.311 +33013,2025-03-11T04:16:38.151019-07:00,1710.0,10.817041,10817.041 +33014,2025-03-11T04:16:48.961268-07:00,1667.0,10.810249,10810.249 +33015,2025-03-11T04:16:59.774827-07:00,1647.0,10.813559,10813.559 +33016,2025-03-11T04:17:10.583888-07:00,1633.0,10.809061,10809.061 +33017,2025-03-11T04:17:21.393412-07:00,1639.0,10.809524,10809.524 +33018,2025-03-11T04:17:32.201932-07:00,1671.0,10.80852,10808.52 +33019,2025-03-11T04:17:43.010907-07:00,1707.0,10.808975,10808.975 +33020,2025-03-11T04:17:53.826634-07:00,1719.0,10.815727,10815.727 +33021,2025-03-11T04:18:04.633875-07:00,1646.0,10.807241,10807.241 +33022,2025-03-11T04:18:15.435638-07:00,1710.0,10.801763,10801.763 +33023,2025-03-11T04:18:26.242302-07:00,1723.0,10.806664,10806.664 +33024,2025-03-11T04:18:37.054624-07:00,1728.0,10.812322,10812.322 +33025,2025-03-11T04:18:47.861621-07:00,1684.0,10.806997,10806.997 +33026,2025-03-11T04:18:58.676960-07:00,1727.0,10.815339,10815.339 +33027,2025-03-11T04:19:09.482519-07:00,1645.0,10.805559,10805.559 +33028,2025-03-11T04:19:20.287176-07:00,1673.0,10.804657,10804.657 +33029,2025-03-11T04:19:31.105954-07:00,1682.0,10.818778,10818.778 +33030,2025-03-11T04:19:41.910637-07:00,1726.0,10.804683,10804.683 +33031,2025-03-11T04:19:52.724637-07:00,1667.0,10.814,10814.0 +33032,2025-03-11T04:20:03.537814-07:00,1711.0,10.813177,10813.177 +33033,2025-03-11T04:20:14.352695-07:00,1709.0,10.814881,10814.881 +33034,2025-03-11T04:20:25.167709-07:00,1712.0,10.815014,10815.014 +33035,2025-03-11T04:20:35.977045-07:00,1700.0,10.809336,10809.336 +33036,2025-03-11T04:20:46.795637-07:00,1719.0,10.818592,10818.592 +33037,2025-03-11T04:20:57.606123-07:00,1677.0,10.810486,10810.486 +33038,2025-03-11T04:21:08.419501-07:00,1701.0,10.813378,10813.378 +33039,2025-03-11T04:21:19.231090-07:00,1686.0,10.811589,10811.589 +33040,2025-03-11T04:21:30.050245-07:00,1727.0,10.819155,10819.155 +33041,2025-03-11T04:21:40.858881-07:00,1648.0,10.808636,10808.636 +33042,2025-03-11T04:21:51.678642-07:00,1681.0,10.819761,10819.761 +33043,2025-03-11T04:22:02.494925-07:00,1666.0,10.816283,10816.283 +33044,2025-03-11T04:22:13.309186-07:00,1713.0,10.814261,10814.261 +33045,2025-03-11T04:22:24.121287-07:00,1639.0,10.812101,10812.101 +33046,2025-03-11T04:22:34.937959-07:00,1727.0,10.816672,10816.672 +33047,2025-03-11T04:22:45.746202-07:00,1687.0,10.808243,10808.243 +33048,2025-03-11T04:22:56.566943-07:00,1718.0,10.820741,10820.741 +33049,2025-03-11T04:23:07.377082-07:00,1686.0,10.810139,10810.139 +33050,2025-03-11T04:23:18.179876-07:00,1712.0,10.802794,10802.794 +33051,2025-03-11T04:23:28.998636-07:00,1719.0,10.81876,10818.76 +33052,2025-03-11T04:23:39.803641-07:00,1728.0,10.805005,10805.005 +33053,2025-03-11T04:23:50.625296-07:00,1689.0,10.821655,10821.655 +33054,2025-03-11T04:24:01.426043-07:00,1648.0,10.800747,10800.747 +33055,2025-03-11T04:24:12.236152-07:00,1680.0,10.810109,10810.109 +33056,2025-03-11T04:24:23.051642-07:00,1726.0,10.81549,10815.49 +33057,2025-03-11T04:24:33.867958-07:00,1680.0,10.816316,10816.316 +33058,2025-03-11T04:24:44.675640-07:00,1634.0,10.807682,10807.682 +33059,2025-03-11T04:24:55.494212-07:00,1685.0,10.818572,10818.572 +33060,2025-03-11T04:25:06.304192-07:00,1702.0,10.80998,10809.98 +33061,2025-03-11T04:25:17.116852-07:00,1686.0,10.81266,10812.66 +33062,2025-03-11T04:25:27.920913-07:00,1725.0,10.804061,10804.061 +33063,2025-03-11T04:25:38.740694-07:00,1725.0,10.819781,10819.781 +33064,2025-03-11T04:25:49.555758-07:00,1692.0,10.815064,10815.064 +33065,2025-03-11T04:26:00.369984-07:00,1690.0,10.814226,10814.226 +33066,2025-03-11T04:26:11.178289-07:00,1686.0,10.808305,10808.305 +33067,2025-03-11T04:26:21.995889-07:00,1722.0,10.8176,10817.6 +33068,2025-03-11T04:26:32.810641-07:00,1646.0,10.814752,10814.752 +33069,2025-03-11T04:26:43.616770-07:00,1712.0,10.806129,10806.129 +33070,2025-03-11T04:26:54.437986-07:00,1711.0,10.821216,10821.216 +33071,2025-03-11T04:27:05.253620-07:00,1706.0,10.815634,10815.634 +33072,2025-03-11T04:27:16.076764-07:00,1697.0,10.823144,10823.144 +33073,2025-03-11T04:27:26.895171-07:00,1680.0,10.818407,10818.407 +33074,2025-03-11T04:27:37.710969-07:00,1671.0,10.815798,10815.798 +33075,2025-03-11T04:27:48.515873-07:00,1639.0,10.804904,10804.904 +33076,2025-03-11T04:27:59.339904-07:00,1719.0,10.824031,10824.031 +33077,2025-03-11T04:28:10.155603-07:00,1722.0,10.815699,10815.699 +33078,2025-03-11T04:28:20.976714-07:00,1696.0,10.821111,10821.111 +33079,2025-03-11T04:28:31.787641-07:00,1691.0,10.810927,10810.927 +33080,2025-03-11T04:28:42.607638-07:00,1711.0,10.819997,10819.997 +33081,2025-03-11T04:28:53.429026-07:00,1679.0,10.821388,10821.388 +33082,2025-03-11T04:29:04.248639-07:00,1723.0,10.819613,10819.613 +33083,2025-03-11T04:29:15.064636-07:00,1681.0,10.815997,10815.997 +33084,2025-03-11T04:29:25.884216-07:00,1703.0,10.81958,10819.58 +33085,2025-03-11T04:29:36.697993-07:00,1721.0,10.813777,10813.777 +33086,2025-03-11T04:29:47.517631-07:00,1681.0,10.819638,10819.638 +33087,2025-03-11T04:29:58.338845-07:00,1679.0,10.821214,10821.214 +33088,2025-03-11T04:30:09.154196-07:00,1680.0,10.815351,10815.351 +33089,2025-03-11T04:30:19.965624-07:00,1647.0,10.811428,10811.428 +33090,2025-03-11T04:30:30.792636-07:00,1712.0,10.827012,10827.012 +33091,2025-03-11T04:30:41.607507-07:00,1711.0,10.814871,10814.871 +33092,2025-03-11T04:30:52.424712-07:00,1679.0,10.817205,10817.205 +33093,2025-03-11T04:31:03.248639-07:00,1712.0,10.823927,10823.927 +33094,2025-03-11T04:31:14.064622-07:00,1723.0,10.815983,10815.983 +33095,2025-03-11T04:31:24.877960-07:00,1696.0,10.813338,10813.338 +33096,2025-03-11T04:31:35.694645-07:00,1650.0,10.816685,10816.685 +33097,2025-03-11T04:31:46.512627-07:00,1639.0,10.817982,10817.982 +33098,2025-03-11T04:31:57.322993-07:00,1658.0,10.810366,10810.366 +33099,2025-03-11T04:32:08.132836-07:00,1654.0,10.809843,10809.843 +33100,2025-03-11T04:32:18.952632-07:00,1717.0,10.819796,10819.796 +33101,2025-03-11T04:32:29.766649-07:00,1712.0,10.814017,10814.017 +33102,2025-03-11T04:32:40.576636-07:00,1679.0,10.809987,10809.987 +33103,2025-03-11T04:32:51.388653-07:00,1712.0,10.812017,10812.017 +33104,2025-03-11T04:33:02.210841-07:00,1673.0,10.822188,10822.188 +33105,2025-03-11T04:33:13.030692-07:00,1725.0,10.819851,10819.851 +33106,2025-03-11T04:33:23.837994-07:00,1719.0,10.807302,10807.302 +33107,2025-03-11T04:33:34.659911-07:00,1685.0,10.821917,10821.917 +33108,2025-03-11T04:33:45.472940-07:00,1649.0,10.813029,10813.029 +33109,2025-03-11T04:33:56.283928-07:00,1712.0,10.810988,10810.988 +33110,2025-03-11T04:34:07.103639-07:00,1712.0,10.819711,10819.711 +33111,2025-03-11T04:34:17.922928-07:00,1675.0,10.819289,10819.289 +33112,2025-03-11T04:34:28.732976-07:00,1619.0,10.810048,10810.048 +33113,2025-03-11T04:34:39.559633-07:00,1656.0,10.826657,10826.657 +33114,2025-03-11T04:34:50.367621-07:00,1723.0,10.807988,10807.988 +33115,2025-03-11T04:35:01.188643-07:00,1681.0,10.821022,10821.022 +33116,2025-03-11T04:35:12.010631-07:00,1680.0,10.821988,10821.988 +33117,2025-03-11T04:35:22.828713-07:00,1648.0,10.818082,10818.082 +33118,2025-03-11T04:35:33.648633-07:00,1716.0,10.81992,10819.92 +33119,2025-03-11T04:35:44.460600-07:00,1711.0,10.811967,10811.967 +33120,2025-03-11T04:35:55.282856-07:00,1670.0,10.822256,10822.256 +33121,2025-03-11T04:36:06.098631-07:00,1675.0,10.815775,10815.775 +33122,2025-03-11T04:36:16.908972-07:00,1675.0,10.810341,10810.341 +33123,2025-03-11T04:36:27.724972-07:00,1648.0,10.816,10816.0 +33124,2025-03-11T04:36:38.538641-07:00,1641.0,10.813669,10813.669 +33125,2025-03-11T04:36:49.350866-07:00,1671.0,10.812225,10812.225 +33126,2025-03-11T04:37:00.172039-07:00,1724.0,10.821173,10821.173 +33127,2025-03-11T04:37:10.997709-07:00,1718.0,10.82567,10825.67 +33128,2025-03-11T04:37:21.819914-07:00,1677.0,10.822205,10822.205 +33129,2025-03-11T04:37:32.632108-07:00,1623.0,10.812194,10812.194 +33130,2025-03-11T04:37:43.455994-07:00,1634.0,10.823886,10823.886 +33131,2025-03-11T04:37:54.280850-07:00,1653.0,10.824856,10824.856 +33132,2025-03-11T04:38:05.102616-07:00,1650.0,10.821766,10821.766 +33133,2025-03-11T04:38:15.925984-07:00,1631.0,10.823368,10823.368 +33134,2025-03-11T04:38:26.742960-07:00,1719.0,10.816976,10816.976 +33135,2025-03-11T04:38:37.564479-07:00,1723.0,10.821519,10821.519 +33136,2025-03-11T04:38:48.381633-07:00,1722.0,10.817154,10817.154 +33137,2025-03-11T04:38:59.207642-07:00,1713.0,10.826009,10826.009 +33138,2025-03-11T04:39:10.027216-07:00,1719.0,10.819574,10819.574 +33139,2025-03-11T04:39:20.841181-07:00,1723.0,10.813965,10813.965 +33140,2025-03-11T04:39:31.657331-07:00,1669.0,10.81615,10816.15 +33141,2025-03-11T04:39:42.482845-07:00,1725.0,10.825514,10825.514 +33142,2025-03-11T04:39:53.295941-07:00,1711.0,10.813096,10813.096 +33143,2025-03-11T04:40:04.114759-07:00,1691.0,10.818818,10818.818 +33144,2025-03-11T04:40:14.929961-07:00,1680.0,10.815202,10815.202 +33145,2025-03-11T04:40:25.754021-07:00,1623.0,10.82406,10824.06 +33146,2025-03-11T04:40:36.573704-07:00,1638.0,10.819683,10819.683 +33147,2025-03-11T04:40:47.387639-07:00,1719.0,10.813935,10813.935 +33148,2025-03-11T04:40:58.213982-07:00,1674.0,10.826343,10826.343 +33149,2025-03-11T04:41:09.023326-07:00,1664.0,10.809344,10809.344 +33150,2025-03-11T04:41:19.847616-07:00,1666.0,10.82429,10824.29 +33151,2025-03-11T04:41:30.670865-07:00,1701.0,10.823249,10823.249 +33152,2025-03-11T04:41:41.489918-07:00,1721.0,10.819053,10819.053 +33153,2025-03-11T04:41:52.307959-07:00,1673.0,10.818041,10818.041 +33154,2025-03-11T04:42:03.123880-07:00,1710.0,10.815921,10815.921 +33155,2025-03-11T04:42:13.951196-07:00,1723.0,10.827316,10827.316 +33156,2025-03-11T04:42:24.768633-07:00,1661.0,10.817437,10817.437 +33157,2025-03-11T04:42:35.585641-07:00,1721.0,10.817008,10817.008 +33158,2025-03-11T04:42:46.401622-07:00,1693.0,10.815981,10815.981 +33159,2025-03-11T04:42:57.214805-07:00,1722.0,10.813183,10813.183 +33160,2025-03-11T04:43:08.037637-07:00,1673.0,10.822832,10822.832 +33161,2025-03-11T04:43:18.846835-07:00,1721.0,10.809198,10809.198 +33162,2025-03-11T04:43:29.676692-07:00,1711.0,10.829857,10829.857 +33163,2025-03-11T04:43:40.486644-07:00,1725.0,10.809952,10809.952 +33164,2025-03-11T04:43:51.309300-07:00,1651.0,10.822656,10822.656 +33165,2025-03-11T04:44:02.132048-07:00,1705.0,10.822748,10822.748 +33166,2025-03-11T04:44:12.943843-07:00,1683.0,10.811795,10811.795 +33167,2025-03-11T04:44:23.760027-07:00,1629.0,10.816184,10816.184 +33168,2025-03-11T04:44:34.574622-07:00,1711.0,10.814595,10814.595 +33169,2025-03-11T04:44:45.390919-07:00,1710.0,10.816297,10816.297 +33170,2025-03-11T04:44:56.209919-07:00,1644.0,10.819,10819.0 +33171,2025-03-11T04:45:07.029710-07:00,1722.0,10.819791,10819.791 +33172,2025-03-11T04:45:17.844616-07:00,1719.0,10.814906,10814.906 +33173,2025-03-11T04:45:28.668644-07:00,1715.0,10.824028,10824.028 +33174,2025-03-11T04:45:39.491643-07:00,1723.0,10.822999,10822.999 +33175,2025-03-11T04:45:50.312488-07:00,1675.0,10.820845,10820.845 +33176,2025-03-11T04:46:01.125907-07:00,1676.0,10.813419,10813.419 +33177,2025-03-11T04:46:11.947651-07:00,1683.0,10.821744,10821.744 +33178,2025-03-11T04:46:22.760644-07:00,1635.0,10.812993,10812.993 +33179,2025-03-11T04:46:33.588645-07:00,1713.0,10.828001,10828.001 +33180,2025-03-11T04:46:44.403818-07:00,1637.0,10.815173,10815.173 +33181,2025-03-11T04:46:55.221628-07:00,1667.0,10.81781,10817.81 +33182,2025-03-11T04:47:06.051641-07:00,1639.0,10.830013,10830.013 +33183,2025-03-11T04:47:16.875636-07:00,1705.0,10.823995,10823.995 +33184,2025-03-11T04:47:27.696434-07:00,1722.0,10.820798,10820.798 +33185,2025-03-11T04:47:38.511899-07:00,1684.0,10.815465,10815.465 +33186,2025-03-11T04:47:49.339390-07:00,1677.0,10.827491,10827.491 +33187,2025-03-11T04:48:00.155718-07:00,1715.0,10.816328,10816.328 +33188,2025-03-11T04:48:10.978047-07:00,1697.0,10.822329,10822.329 +33189,2025-03-11T04:48:21.796617-07:00,1667.0,10.81857,10818.57 +33190,2025-03-11T04:48:32.617410-07:00,1629.0,10.820793,10820.793 +33191,2025-03-11T04:48:43.421820-07:00,1677.0,10.80441,10804.41 +33192,2025-03-11T04:48:54.241645-07:00,1695.0,10.819825,10819.825 +33193,2025-03-11T04:49:05.062615-07:00,1707.0,10.82097,10820.97 +33194,2025-03-11T04:49:15.887817-07:00,1711.0,10.825202,10825.202 +33195,2025-03-11T04:49:26.713766-07:00,1682.0,10.825949,10825.949 +33196,2025-03-11T04:49:37.528628-07:00,1664.0,10.814862,10814.862 +33197,2025-03-11T04:49:48.347940-07:00,1722.0,10.819312,10819.312 +33198,2025-03-11T04:49:59.173631-07:00,1701.0,10.825691,10825.691 +33199,2025-03-11T04:50:10.003964-07:00,1664.0,10.830333,10830.333 +33200,2025-03-11T04:50:20.823639-07:00,1719.0,10.819675,10819.675 +33201,2025-03-11T04:50:31.641635-07:00,1724.0,10.817996,10817.996 +33202,2025-03-11T04:50:42.461906-07:00,1721.0,10.820271,10820.271 +33203,2025-03-11T04:50:53.290784-07:00,1633.0,10.828878,10828.878 +33204,2025-03-11T04:51:04.109636-07:00,1694.0,10.818852,10818.852 +33205,2025-03-11T04:51:14.939018-07:00,1719.0,10.829382,10829.382 +33206,2025-03-11T04:51:25.755182-07:00,1712.0,10.816164,10816.164 +33207,2025-03-11T04:51:36.572834-07:00,1682.0,10.817652,10817.652 +33208,2025-03-11T04:51:47.400988-07:00,1669.0,10.828154,10828.154 +33209,2025-03-11T04:51:58.213782-07:00,1722.0,10.812794,10812.794 +33210,2025-03-11T04:52:09.030634-07:00,1685.0,10.816852,10816.852 +33211,2025-03-11T04:52:19.855982-07:00,1685.0,10.825348,10825.348 +33212,2025-03-11T04:52:30.676634-07:00,1664.0,10.820652,10820.652 +33213,2025-03-11T04:52:41.495875-07:00,1679.0,10.819241,10819.241 +33214,2025-03-11T04:52:52.312310-07:00,1629.0,10.816435,10816.435 +33215,2025-03-11T04:53:03.131635-07:00,1650.0,10.819325,10819.325 +33216,2025-03-11T04:53:13.952874-07:00,1633.0,10.821239,10821.239 +33217,2025-03-11T04:53:24.773168-07:00,1639.0,10.820294,10820.294 +33218,2025-03-11T04:53:35.584965-07:00,1679.0,10.811797,10811.797 +33219,2025-03-11T04:53:46.410353-07:00,1639.0,10.825388,10825.388 +33220,2025-03-11T04:53:57.228321-07:00,1675.0,10.817968,10817.968 +33221,2025-03-11T04:54:08.053631-07:00,1683.0,10.82531,10825.31 +33222,2025-03-11T04:54:18.873621-07:00,1680.0,10.81999,10819.99 +33223,2025-03-11T04:54:29.699061-07:00,1719.0,10.82544,10825.44 +33224,2025-03-11T04:54:40.531075-07:00,1680.0,10.832014,10832.014 +33225,2025-03-11T04:54:51.350940-07:00,1716.0,10.819865,10819.865 +33226,2025-03-11T04:55:02.169010-07:00,1660.0,10.81807,10818.07 +33227,2025-03-11T04:55:12.989825-07:00,1696.0,10.820815,10820.815 +33228,2025-03-11T04:55:23.811818-07:00,1681.0,10.821993,10821.993 +33229,2025-03-11T04:55:34.639917-07:00,1719.0,10.828099,10828.099 +33230,2025-03-11T04:55:45.458637-07:00,1714.0,10.81872,10818.72 +33231,2025-03-11T04:55:56.280645-07:00,1719.0,10.822008,10822.008 +33232,2025-03-11T04:56:07.094691-07:00,1664.0,10.814046,10814.046 +33233,2025-03-11T04:56:17.926967-07:00,1697.0,10.832276,10832.276 +33234,2025-03-11T04:56:28.750638-07:00,1717.0,10.823671,10823.671 +33235,2025-03-11T04:56:39.571648-07:00,1712.0,10.82101,10821.01 +33236,2025-03-11T04:56:50.393940-07:00,1695.0,10.822292,10822.292 +33237,2025-03-11T04:57:01.219776-07:00,1688.0,10.825836,10825.836 +33238,2025-03-11T04:57:12.030636-07:00,1648.0,10.81086,10810.86 +33239,2025-03-11T04:57:22.856089-07:00,1671.0,10.825453,10825.453 +33240,2025-03-11T04:57:33.675858-07:00,1697.0,10.819769,10819.769 +33241,2025-03-11T04:57:44.499947-07:00,1653.0,10.824089,10824.089 +33242,2025-03-11T04:57:55.315803-07:00,1701.0,10.815856,10815.856 +33243,2025-03-11T04:58:06.140912-07:00,1718.0,10.825109,10825.109 +33244,2025-03-11T04:58:16.967879-07:00,1713.0,10.826967,10826.967 +33245,2025-03-11T04:58:27.786045-07:00,1698.0,10.818166,10818.166 +33246,2025-03-11T04:58:38.615643-07:00,1710.0,10.829598,10829.598 +33247,2025-03-11T04:58:49.433001-07:00,1703.0,10.817358,10817.358 +33248,2025-03-11T04:59:00.254785-07:00,1710.0,10.821784,10821.784 +33249,2025-03-11T04:59:11.080856-07:00,1711.0,10.826071,10826.071 +33250,2025-03-11T04:59:21.893984-07:00,1706.0,10.813128,10813.128 +33251,2025-03-11T04:59:32.726635-07:00,1680.0,10.832651,10832.651 +33252,2025-03-11T04:59:43.545995-07:00,1712.0,10.81936,10819.36 +33253,2025-03-11T04:59:54.371637-07:00,1709.0,10.825642,10825.642 +33254,2025-03-11T05:00:05.193616-07:00,1694.0,10.821979,10821.979 +33255,2025-03-11T05:00:16.015131-07:00,1701.0,10.821515,10821.515 +33256,2025-03-11T05:00:26.832782-07:00,1653.0,10.817651,10817.651 +33257,2025-03-11T05:00:37.650759-07:00,1718.0,10.817977,10817.977 +33258,2025-03-11T05:00:48.473616-07:00,1718.0,10.822857,10822.857 +33259,2025-03-11T05:00:59.301633-07:00,1632.0,10.828017,10828.017 +33260,2025-03-11T05:01:10.115639-07:00,1721.0,10.814006,10814.006 +33261,2025-03-11T05:01:20.936578-07:00,1718.0,10.820939,10820.939 +33262,2025-03-11T05:01:31.749636-07:00,1633.0,10.813058,10813.058 +33263,2025-03-11T05:01:42.577790-07:00,1708.0,10.828154,10828.154 +33264,2025-03-11T05:01:53.392250-07:00,1694.0,10.81446,10814.46 +33265,2025-03-11T05:02:04.211145-07:00,1706.0,10.818895,10818.895 +33266,2025-03-11T05:02:15.031965-07:00,1719.0,10.82082,10820.82 +33267,2025-03-11T05:02:25.858073-07:00,1703.0,10.826108,10826.108 +33268,2025-03-11T05:02:36.684689-07:00,1675.0,10.826616,10826.616 +33269,2025-03-11T05:02:47.511960-07:00,1680.0,10.827271,10827.271 +33270,2025-03-11T05:02:58.336772-07:00,1712.0,10.824812,10824.812 +33271,2025-03-11T05:03:09.152962-07:00,1663.0,10.81619,10816.19 +33272,2025-03-11T05:03:19.981786-07:00,1712.0,10.828824,10828.824 +33273,2025-03-11T05:03:30.809631-07:00,1715.0,10.827845,10827.845 +33274,2025-03-11T05:03:41.628252-07:00,1719.0,10.818621,10818.621 +33275,2025-03-11T05:03:52.458837-07:00,1667.0,10.830585,10830.585 +33276,2025-03-11T05:04:03.279128-07:00,1712.0,10.820291,10820.291 +33277,2025-03-11T05:04:14.105986-07:00,1721.0,10.826858,10826.858 +33278,2025-03-11T05:04:24.930688-07:00,1695.0,10.824702,10824.702 +33279,2025-03-11T05:04:35.751910-07:00,1690.0,10.821222,10821.222 +33280,2025-03-11T05:04:46.572664-07:00,1712.0,10.820754,10820.754 +33281,2025-03-11T05:04:57.397638-07:00,1712.0,10.824974,10824.974 +33282,2025-03-11T05:05:08.214962-07:00,1718.0,10.817324,10817.324 +33283,2025-03-11T05:05:19.030613-07:00,1712.0,10.815651,10815.651 +33284,2025-03-11T05:05:29.848863-07:00,1722.0,10.81825,10818.25 +33285,2025-03-11T05:05:40.671740-07:00,1705.0,10.822877,10822.877 +33286,2025-03-11T05:05:51.483033-07:00,1674.0,10.811293,10811.293 +33287,2025-03-11T05:06:02.311126-07:00,1712.0,10.828093,10828.093 +33288,2025-03-11T05:06:13.123978-07:00,1631.0,10.812852,10812.852 +33289,2025-03-11T05:06:23.951638-07:00,1619.0,10.82766,10827.66 +33290,2025-03-11T05:06:34.770897-07:00,1671.0,10.819259,10819.259 +33291,2025-03-11T05:06:45.593960-07:00,1713.0,10.823063,10823.063 +33292,2025-03-11T05:06:56.418771-07:00,1679.0,10.824811,10824.811 +33293,2025-03-11T05:07:07.272501-07:00,1717.0,10.85373,10853.73 +33294,2025-03-11T05:07:18.101400-07:00,1722.0,10.828899,10828.899 +33295,2025-03-11T05:07:28.915605-07:00,1669.0,10.814205,10814.205 +33296,2025-03-11T05:07:39.737880-07:00,1627.0,10.822275,10822.275 +33297,2025-03-11T05:07:50.559594-07:00,1706.0,10.821714,10821.714 +33298,2025-03-11T05:08:01.376365-07:00,1699.0,10.816771,10816.771 +33299,2025-03-11T05:08:12.212811-07:00,1718.0,10.836446,10836.446 +33300,2025-03-11T05:08:23.035593-07:00,1685.0,10.822782,10822.782 +33301,2025-03-11T05:08:33.854907-07:00,1654.0,10.819314,10819.314 +33302,2025-03-11T05:08:44.680927-07:00,1633.0,10.82602,10826.02 +33303,2025-03-11T05:08:55.495417-07:00,1669.0,10.81449,10814.49 +33304,2025-03-11T05:09:06.319661-07:00,1715.0,10.824244,10824.244 +33305,2025-03-11T05:09:17.146608-07:00,1664.0,10.826947,10826.947 +33306,2025-03-11T05:09:27.966608-07:00,1709.0,10.82,10820.0 +33307,2025-03-11T05:09:38.798674-07:00,1718.0,10.832066,10832.066 +33308,2025-03-11T05:09:49.618574-07:00,1714.0,10.8199,10819.9 +33309,2025-03-11T05:10:00.441105-07:00,1709.0,10.822531,10822.531 +33310,2025-03-11T05:10:11.276372-07:00,1635.0,10.835267,10835.267 +33311,2025-03-11T05:10:22.095760-07:00,1675.0,10.819388,10819.388 +33312,2025-03-11T05:10:32.923364-07:00,1645.0,10.827604,10827.604 +33313,2025-03-11T05:10:43.736585-07:00,1722.0,10.813221,10813.221 +33314,2025-03-11T05:10:54.559817-07:00,1712.0,10.823232,10823.232 +33315,2025-03-11T05:11:05.379576-07:00,1675.0,10.819759,10819.759 +33316,2025-03-11T05:11:16.204670-07:00,1707.0,10.825094,10825.094 +33317,2025-03-11T05:11:27.029631-07:00,1680.0,10.824961,10824.961 +33318,2025-03-11T05:11:37.852590-07:00,1621.0,10.822959,10822.959 +33319,2025-03-11T05:11:48.682754-07:00,1678.0,10.830164,10830.164 +33320,2025-03-11T05:11:59.505367-07:00,1648.0,10.822613,10822.613 +33321,2025-03-11T05:12:10.331069-07:00,1677.0,10.825702,10825.702 +33322,2025-03-11T05:12:21.152372-07:00,1676.0,10.821303,10821.303 +33323,2025-03-11T05:12:31.974361-07:00,1693.0,10.821989,10821.989 +33324,2025-03-11T05:12:42.797557-07:00,1693.0,10.823196,10823.196 +33325,2025-03-11T05:12:53.623372-07:00,1696.0,10.825815,10825.815 +33326,2025-03-11T05:13:04.451723-07:00,1630.0,10.828351,10828.351 +33327,2025-03-11T05:13:15.268356-07:00,1714.0,10.816633,10816.633 +33328,2025-03-11T05:13:26.094417-07:00,1719.0,10.826061,10826.061 +33329,2025-03-11T05:13:36.923255-07:00,1716.0,10.828838,10828.838 +33330,2025-03-11T05:13:47.740440-07:00,1648.0,10.817185,10817.185 +33331,2025-03-11T05:13:58.565451-07:00,1663.0,10.825011,10825.011 +33332,2025-03-11T05:14:09.381778-07:00,1715.0,10.816327,10816.327 +33333,2025-03-11T05:14:20.207411-07:00,1712.0,10.825633,10825.633 +33334,2025-03-11T05:14:31.033703-07:00,1719.0,10.826292,10826.292 +33335,2025-03-11T05:14:41.865782-07:00,1679.0,10.832079,10832.079 +33336,2025-03-11T05:14:52.688928-07:00,1648.0,10.823146,10823.146 +33337,2025-03-11T05:15:03.516122-07:00,1710.0,10.827194,10827.194 +33338,2025-03-11T05:15:14.333622-07:00,1670.0,10.8175,10817.5 +33339,2025-03-11T05:15:25.157724-07:00,1715.0,10.824102,10824.102 +33340,2025-03-11T05:15:35.985554-07:00,1680.0,10.82783,10827.83 +33341,2025-03-11T05:15:46.805680-07:00,1680.0,10.820126,10820.126 +33342,2025-03-11T05:15:57.630368-07:00,1687.0,10.824688,10824.688 +33343,2025-03-11T05:16:08.448660-07:00,1665.0,10.818292,10818.292 +33344,2025-03-11T05:16:19.269660-07:00,1648.0,10.821,10821.0 +33345,2025-03-11T05:16:30.091467-07:00,1673.0,10.821807,10821.807 +33346,2025-03-11T05:16:40.922749-07:00,1699.0,10.831282,10831.282 +33347,2025-03-11T05:16:51.738370-07:00,1670.0,10.815621,10815.621 +33348,2025-03-11T05:17:02.563368-07:00,1663.0,10.824998,10824.998 +33349,2025-03-11T05:17:13.390781-07:00,1699.0,10.827413,10827.413 +33350,2025-03-11T05:17:24.208420-07:00,1622.0,10.817639,10817.639 +33351,2025-03-11T05:17:35.026345-07:00,1670.0,10.817925,10817.925 +33352,2025-03-11T05:17:45.856717-07:00,1719.0,10.830372,10830.372 +33353,2025-03-11T05:17:56.683844-07:00,1630.0,10.827127,10827.127 +33354,2025-03-11T05:18:07.498542-07:00,1703.0,10.814698,10814.698 +33355,2025-03-11T05:18:18.323926-07:00,1634.0,10.825384,10825.384 +33356,2025-03-11T05:18:29.150367-07:00,1687.0,10.826441,10826.441 +33357,2025-03-11T05:18:39.968783-07:00,1693.0,10.818416,10818.416 +33358,2025-03-11T05:18:50.796375-07:00,1699.0,10.827592,10827.592 +33359,2025-03-11T05:19:01.622045-07:00,1631.0,10.82567,10825.67 +33360,2025-03-11T05:19:12.447368-07:00,1675.0,10.825323,10825.323 +33361,2025-03-11T05:19:23.272684-07:00,1706.0,10.825316,10825.316 +33362,2025-03-11T05:19:34.093918-07:00,1715.0,10.821234,10821.234 +33363,2025-03-11T05:19:44.913599-07:00,1719.0,10.819681,10819.681 +33364,2025-03-11T05:19:55.747657-07:00,1712.0,10.834058,10834.058 +33365,2025-03-11T05:20:06.571514-07:00,1712.0,10.823857,10823.857 +33366,2025-03-11T05:20:17.390362-07:00,1630.0,10.818848,10818.848 +33367,2025-03-11T05:20:28.211752-07:00,1691.0,10.82139,10821.39 +33368,2025-03-11T05:20:39.039368-07:00,1675.0,10.827616,10827.616 +33369,2025-03-11T05:20:49.851339-07:00,1629.0,10.811971,10811.971 +33370,2025-03-11T05:21:00.681429-07:00,1708.0,10.83009,10830.09 +33371,2025-03-11T05:21:11.494375-07:00,1712.0,10.812946,10812.946 +33372,2025-03-11T05:21:22.319388-07:00,1721.0,10.825013,10825.013 +33373,2025-03-11T05:21:33.135362-07:00,1707.0,10.815974,10815.974 +33374,2025-03-11T05:21:43.949590-07:00,1634.0,10.814228,10814.228 +33375,2025-03-11T05:21:54.782139-07:00,1717.0,10.832549,10832.549 +33376,2025-03-11T05:22:05.600365-07:00,1712.0,10.818226,10818.226 +33377,2025-03-11T05:22:16.421669-07:00,1717.0,10.821304,10821.304 +33378,2025-03-11T05:22:27.242216-07:00,1691.0,10.820547,10820.547 +33379,2025-03-11T05:22:38.063635-07:00,1675.0,10.821419,10821.419 +33380,2025-03-11T05:22:48.887349-07:00,1719.0,10.823714,10823.714 +33381,2025-03-11T05:22:59.714958-07:00,1712.0,10.827609,10827.609 +33382,2025-03-11T05:23:10.534362-07:00,1714.0,10.819404,10819.404 +33383,2025-03-11T05:23:21.365684-07:00,1627.0,10.831322,10831.322 +33384,2025-03-11T05:23:32.186378-07:00,1714.0,10.820694,10820.694 +33385,2025-03-11T05:23:43.006362-07:00,1649.0,10.819984,10819.984 +33386,2025-03-11T05:23:53.839373-07:00,1627.0,10.833011,10833.011 +33387,2025-03-11T05:24:04.657688-07:00,1718.0,10.818315,10818.315 +33388,2025-03-11T05:24:15.479181-07:00,1703.0,10.821493,10821.493 +33389,2025-03-11T05:24:26.299360-07:00,1686.0,10.820179,10820.179 +33390,2025-03-11T05:24:37.109463-07:00,1691.0,10.810103,10810.103 +33391,2025-03-11T05:24:47.935364-07:00,1715.0,10.825901,10825.901 +33392,2025-03-11T05:24:58.751670-07:00,1649.0,10.816306,10816.306 +33393,2025-03-11T05:25:09.572421-07:00,1644.0,10.820751,10820.751 +33394,2025-03-11T05:25:20.401733-07:00,1646.0,10.829312,10829.312 +33395,2025-03-11T05:25:31.228371-07:00,1679.0,10.826638,10826.638 +33396,2025-03-11T05:25:42.046371-07:00,1701.0,10.818,10818.0 +33397,2025-03-11T05:25:52.873779-07:00,1711.0,10.827408,10827.408 +33398,2025-03-11T05:26:02.282476-07:00,1719.0,9.408697,9408.697 +33399,2025-03-11T05:26:03.687372-07:00,1719.0,1.404896,1404.896 +33400,2025-03-11T05:26:14.504599-07:00,1663.0,10.817227,10817.227 +33401,2025-03-11T05:26:25.334581-07:00,1699.0,10.829982,10829.982 +33402,2025-03-11T05:26:36.150373-07:00,1699.0,10.815792,10815.792 +33403,2025-03-11T05:26:46.969421-07:00,1697.0,10.819048,10819.048 +33404,2025-03-11T05:26:57.795738-07:00,1651.0,10.826317,10826.317 +33405,2025-03-11T05:27:08.611373-07:00,1718.0,10.815635,10815.635 +33406,2025-03-11T05:27:19.439076-07:00,1662.0,10.827703,10827.703 +33407,2025-03-11T05:27:30.272620-07:00,1711.0,10.833544,10833.544 +33408,2025-03-11T05:27:41.095366-07:00,1667.0,10.822746,10822.746 +33409,2025-03-11T05:27:51.915371-07:00,1716.0,10.820005,10820.005 +33410,2025-03-11T05:28:02.743371-07:00,1711.0,10.828,10828.0 +33411,2025-03-11T05:28:13.567969-07:00,1643.0,10.824598,10824.598 +33412,2025-03-11T05:28:24.392365-07:00,1715.0,10.824396,10824.396 +33413,2025-03-11T05:28:35.213991-07:00,1698.0,10.821626,10821.626 +33414,2025-03-11T05:28:46.037766-07:00,1681.0,10.823775,10823.775 +33415,2025-03-11T05:28:56.865356-07:00,1693.0,10.82759,10827.59 +33416,2025-03-11T05:29:07.685915-07:00,1653.0,10.820559,10820.559 +33417,2025-03-11T05:29:18.505570-07:00,1714.0,10.819655,10819.655 +33418,2025-03-11T05:29:29.330629-07:00,1709.0,10.825059,10825.059 +33419,2025-03-11T05:29:40.156560-07:00,1718.0,10.825931,10825.931 +33420,2025-03-11T05:29:50.984356-07:00,1634.0,10.827796,10827.796 +33421,2025-03-11T05:30:01.805824-07:00,1646.0,10.821468,10821.468 +33422,2025-03-11T05:30:12.625364-07:00,1646.0,10.81954,10819.54 +33423,2025-03-11T05:30:23.438593-07:00,1664.0,10.813229,10813.229 +33424,2025-03-11T05:30:34.260419-07:00,1691.0,10.821826,10821.826 +33425,2025-03-11T05:30:45.087507-07:00,1671.0,10.827088,10827.088 +33426,2025-03-11T05:30:55.910416-07:00,1719.0,10.822909,10822.909 +33427,2025-03-11T05:31:06.737456-07:00,1698.0,10.82704,10827.04 +33428,2025-03-11T05:31:17.563421-07:00,1721.0,10.825965,10825.965 +33429,2025-03-11T05:31:28.383690-07:00,1685.0,10.820269,10820.269 +33430,2025-03-11T05:31:39.210278-07:00,1719.0,10.826588,10826.588 +33431,2025-03-11T05:31:50.031345-07:00,1643.0,10.821067,10821.067 +33432,2025-03-11T05:32:00.848759-07:00,1667.0,10.817414,10817.414 +33433,2025-03-11T05:32:11.678370-07:00,1674.0,10.829611,10829.611 +33434,2025-03-11T05:32:22.497060-07:00,1628.0,10.81869,10818.69 +33435,2025-03-11T05:32:33.324366-07:00,1699.0,10.827306,10827.306 +33436,2025-03-11T05:32:44.143813-07:00,1713.0,10.819447,10819.447 +33437,2025-03-11T05:32:54.970313-07:00,1679.0,10.8265,10826.5 +33438,2025-03-11T05:33:05.780366-07:00,1694.0,10.810053,10810.053 +33439,2025-03-11T05:33:16.600361-07:00,1682.0,10.819995,10819.995 +33440,2025-03-11T05:33:27.419548-07:00,1710.0,10.819187,10819.187 +33441,2025-03-11T05:33:38.238366-07:00,1685.0,10.818818,10818.818 +33442,2025-03-11T05:33:49.062391-07:00,1680.0,10.824025,10824.025 +33443,2025-03-11T05:33:59.887135-07:00,1719.0,10.824744,10824.744 +33444,2025-03-11T05:34:10.714409-07:00,1694.0,10.827274,10827.274 +33445,2025-03-11T05:34:21.533435-07:00,1715.0,10.819026,10819.026 +33446,2025-03-11T05:34:32.363409-07:00,1718.0,10.829974,10829.974 +33447,2025-03-11T05:34:43.190357-07:00,1676.0,10.826948,10826.948 +33448,2025-03-11T05:34:54.005689-07:00,1667.0,10.815332,10815.332 +33449,2025-03-11T05:35:04.833349-07:00,1681.0,10.82766,10827.66 +33450,2025-03-11T05:35:15.651348-07:00,1699.0,10.817999,10817.999 +33451,2025-03-11T05:35:26.475372-07:00,1707.0,10.824024,10824.024 +33452,2025-03-11T05:35:37.293658-07:00,1719.0,10.818286,10818.286 +33453,2025-03-11T05:35:48.105500-07:00,1716.0,10.811842,10811.842 +33454,2025-03-11T05:35:58.922680-07:00,1712.0,10.81718,10817.18 +33455,2025-03-11T05:36:09.747348-07:00,1655.0,10.824668,10824.668 +33456,2025-03-11T05:36:20.567366-07:00,1667.0,10.820018,10820.018 +33457,2025-03-11T05:36:31.376401-07:00,1707.0,10.809035,10809.035 +33458,2025-03-11T05:36:42.197685-07:00,1643.0,10.821284,10821.284 +33459,2025-03-11T05:36:53.010358-07:00,1697.0,10.812673,10812.673 +33460,2025-03-11T05:37:03.834074-07:00,1719.0,10.823716,10823.716 +33461,2025-03-11T05:37:14.657486-07:00,1680.0,10.823412,10823.412 +33462,2025-03-11T05:37:25.478624-07:00,1718.0,10.821138,10821.138 +33463,2025-03-11T05:37:36.298398-07:00,1630.0,10.819774,10819.774 +33464,2025-03-11T05:37:47.114256-07:00,1692.0,10.815858,10815.858 +33465,2025-03-11T05:37:57.941374-07:00,1683.0,10.827118,10827.118 +33466,2025-03-11T05:38:08.764766-07:00,1707.0,10.823392,10823.392 +33467,2025-03-11T05:38:19.586461-07:00,1653.0,10.821695,10821.695 +33468,2025-03-11T05:38:30.407649-07:00,1702.0,10.821188,10821.188 +33469,2025-03-11T05:38:41.230672-07:00,1712.0,10.823023,10823.023 +33470,2025-03-11T05:38:52.050426-07:00,1718.0,10.819754,10819.754 +33471,2025-03-11T05:39:02.860372-07:00,1626.0,10.809946,10809.946 +33472,2025-03-11T05:39:13.686229-07:00,1647.0,10.825857,10825.857 +33473,2025-03-11T05:39:24.497755-07:00,1673.0,10.811526,10811.526 +33474,2025-03-11T05:39:35.316349-07:00,1676.0,10.818594,10818.594 +33475,2025-03-11T05:39:46.131734-07:00,1718.0,10.815385,10815.385 +33476,2025-03-11T05:39:56.951084-07:00,1661.0,10.81935,10819.35 +33477,2025-03-11T05:40:07.768372-07:00,1718.0,10.817288,10817.288 +33478,2025-03-11T05:40:18.588349-07:00,1714.0,10.819977,10819.977 +33479,2025-03-11T05:40:29.407364-07:00,1663.0,10.819015,10819.015 +33480,2025-03-11T05:40:40.222698-07:00,1673.0,10.815334,10815.334 +33481,2025-03-11T05:40:51.042349-07:00,1701.0,10.819651,10819.651 +33482,2025-03-11T05:41:01.866508-07:00,1717.0,10.824159,10824.159 +33483,2025-03-11T05:41:12.682799-07:00,1710.0,10.816291,10816.291 +33484,2025-03-11T05:41:23.504095-07:00,1700.0,10.821296,10821.296 +33485,2025-03-11T05:41:34.334519-07:00,1717.0,10.830424,10830.424 +33486,2025-03-11T05:41:45.157369-07:00,1665.0,10.82285,10822.85 +33487,2025-03-11T05:41:55.976579-07:00,1713.0,10.81921,10819.21 +33488,2025-03-11T05:42:06.803014-07:00,1680.0,10.826435,10826.435 +33489,2025-03-11T05:42:17.622373-07:00,1680.0,10.819359,10819.359 +33490,2025-03-11T05:42:28.439339-07:00,1717.0,10.816966,10816.966 +33491,2025-03-11T05:42:39.268946-07:00,1681.0,10.829607,10829.607 +33492,2025-03-11T05:42:50.093576-07:00,1716.0,10.82463,10824.63 +33493,2025-03-11T05:43:00.914507-07:00,1719.0,10.820931,10820.931 +33494,2025-03-11T05:43:11.740632-07:00,1715.0,10.826125,10826.125 +33495,2025-03-11T05:43:22.559371-07:00,1680.0,10.818739,10818.739 +33496,2025-03-11T05:43:33.376800-07:00,1707.0,10.817429,10817.429 +33497,2025-03-11T05:43:44.201375-07:00,1711.0,10.824575,10824.575 +33498,2025-03-11T05:43:55.025367-07:00,1710.0,10.823992,10823.992 +33499,2025-03-11T05:44:05.848469-07:00,1715.0,10.823102,10823.102 +33500,2025-03-11T05:44:16.662381-07:00,1664.0,10.813912,10813.912 +33501,2025-03-11T05:44:27.483364-07:00,1653.0,10.820983,10820.983 +33502,2025-03-11T05:44:38.300653-07:00,1653.0,10.817289,10817.289 +33503,2025-03-11T05:44:49.123349-07:00,1627.0,10.822696,10822.696 +33504,2025-03-11T05:44:59.942417-07:00,1663.0,10.819068,10819.068 +33505,2025-03-11T05:45:10.770508-07:00,1681.0,10.828091,10828.091 +33506,2025-03-11T05:45:21.596451-07:00,1697.0,10.825943,10825.943 +33507,2025-03-11T05:45:32.420600-07:00,1662.0,10.824149,10824.149 +33508,2025-03-11T05:45:43.247371-07:00,1697.0,10.826771,10826.771 +33509,2025-03-11T05:45:54.074629-07:00,1680.0,10.827258,10827.258 +33510,2025-03-11T05:46:04.895357-07:00,1699.0,10.820728,10820.728 +33511,2025-03-11T05:46:15.713376-07:00,1706.0,10.818019,10818.019 +33512,2025-03-11T05:46:26.541740-07:00,1665.0,10.828364,10828.364 +33513,2025-03-11T05:46:37.372601-07:00,1717.0,10.830861,10830.861 +33514,2025-03-11T05:46:48.187597-07:00,1648.0,10.814996,10814.996 +33515,2025-03-11T05:46:59.014365-07:00,1715.0,10.826768,10826.768 +33516,2025-03-11T05:47:09.831591-07:00,1702.0,10.817226,10817.226 +33517,2025-03-11T05:47:20.654848-07:00,1632.0,10.823257,10823.257 +33518,2025-03-11T05:47:31.471761-07:00,1703.0,10.816913,10816.913 +33519,2025-03-11T05:47:42.294621-07:00,1701.0,10.82286,10822.86 +33520,2025-03-11T05:47:53.124740-07:00,1712.0,10.830119,10830.119 +33521,2025-03-11T05:48:03.934729-07:00,1674.0,10.809989,10809.989 +33522,2025-03-11T05:48:14.762358-07:00,1707.0,10.827629,10827.629 +33523,2025-03-11T05:48:25.584806-07:00,1706.0,10.822448,10822.448 +33524,2025-03-11T05:48:36.401356-07:00,1711.0,10.81655,10816.55 +33525,2025-03-11T05:48:47.227646-07:00,1717.0,10.82629,10826.29 +33526,2025-03-11T05:48:58.048239-07:00,1718.0,10.820593,10820.593 +33527,2025-03-11T05:49:08.862367-07:00,1691.0,10.814128,10814.128 +33528,2025-03-11T05:49:19.687672-07:00,1673.0,10.825305,10825.305 +33529,2025-03-11T05:49:30.509676-07:00,1689.0,10.822004,10822.004 +33530,2025-03-11T05:49:41.335419-07:00,1634.0,10.825743,10825.743 +33531,2025-03-11T05:49:52.162835-07:00,1693.0,10.827416,10827.416 +33532,2025-03-11T05:50:02.993365-07:00,1714.0,10.83053,10830.53 +33533,2025-03-11T05:50:13.812829-07:00,1655.0,10.819464,10819.464 +33534,2025-03-11T05:50:24.644787-07:00,1668.0,10.831958,10831.958 +33535,2025-03-11T05:50:35.471279-07:00,1673.0,10.826492,10826.492 +33536,2025-03-11T05:50:42.383083-07:00,1695.0,6.911804,6911.804 +33537,2025-03-11T05:50:46.298367-07:00,1675.0,3.915284,3915.284 +33538,2025-03-11T05:50:57.124367-07:00,1669.0,10.826,10826.0 +33539,2025-03-11T05:51:07.949374-07:00,1651.0,10.825007,10825.007 +33540,2025-03-11T05:51:18.774353-07:00,1638.0,10.824979,10824.979 +33541,2025-03-11T05:51:29.596974-07:00,1698.0,10.822621,10822.621 +33542,2025-03-11T05:51:40.422053-07:00,1662.0,10.825079,10825.079 +33543,2025-03-11T05:51:51.248127-07:00,1715.0,10.826074,10826.074 +33544,2025-03-11T05:52:02.062734-07:00,1646.0,10.814607,10814.607 +33545,2025-03-11T05:52:12.886371-07:00,1712.0,10.823637,10823.637 +33546,2025-03-11T05:52:23.719793-07:00,1709.0,10.833422,10833.422 +33547,2025-03-11T05:52:32.076649-07:00,1695.0,8.356856,8356.856 +33548,2025-03-11T05:52:34.541339-07:00,1717.0,2.46469,2464.69 +33549,2025-03-11T05:52:45.367273-07:00,1664.0,10.825934,10825.934 +33550,2025-03-11T05:52:56.193354-07:00,1680.0,10.826081,10826.081 +33551,2025-03-11T05:53:07.022649-07:00,1705.0,10.829295,10829.295 +33552,2025-03-11T05:53:17.850199-07:00,1655.0,10.82755,10827.55 +33553,2025-03-11T05:53:28.669370-07:00,1679.0,10.819171,10819.171 +33554,2025-03-11T05:53:39.499369-07:00,1696.0,10.829999,10829.999 +33555,2025-03-11T05:53:50.321361-07:00,1712.0,10.821992,10821.992 +33556,2025-03-11T05:54:01.154928-07:00,1716.0,10.833567,10833.567 +33557,2025-03-11T05:54:11.977062-07:00,1666.0,10.822134,10822.134 +33558,2025-03-11T05:54:22.794817-07:00,1680.0,10.817755,10817.755 +33559,2025-03-11T05:54:33.613993-07:00,1718.0,10.819176,10819.176 +33560,2025-03-11T05:54:44.451364-07:00,1679.0,10.837371,10837.371 +33561,2025-03-11T05:54:55.272389-07:00,1675.0,10.821025,10821.025 +33562,2025-03-11T05:55:06.097568-07:00,1719.0,10.825179,10825.179 +33563,2025-03-11T05:55:16.925930-07:00,1631.0,10.828362,10828.362 +33564,2025-03-11T05:55:27.758548-07:00,1635.0,10.832618,10832.618 +33565,2025-03-11T05:55:38.582925-07:00,1700.0,10.824377,10824.377 +33566,2025-03-11T05:55:49.404317-07:00,1680.0,10.821392,10821.392 +33567,2025-03-11T05:56:00.235413-07:00,1680.0,10.831096,10831.096 +33568,2025-03-11T05:56:11.060369-07:00,1671.0,10.824956,10824.956 +33569,2025-03-11T05:56:21.874603-07:00,1679.0,10.814234,10814.234 +33570,2025-03-11T05:56:32.706750-07:00,1716.0,10.832147,10832.147 +33571,2025-03-11T05:56:43.521412-07:00,1655.0,10.814662,10814.662 +33572,2025-03-11T05:56:54.342368-07:00,1712.0,10.820956,10820.956 +33573,2025-03-11T05:57:05.168699-07:00,1690.0,10.826331,10826.331 +33574,2025-03-11T05:57:16.000364-07:00,1653.0,10.831665,10831.665 +33575,2025-03-11T05:57:26.827423-07:00,1668.0,10.827059,10827.059 +33576,2025-03-11T05:57:37.656749-07:00,1631.0,10.829326,10829.326 +33577,2025-03-11T05:57:48.484760-07:00,1707.0,10.828011,10828.011 +33578,2025-03-11T05:57:58.712031-07:00,1706.0,10.227271,10227.271 +33579,2025-03-11T05:57:59.303362-07:00,1706.0,0.591331,591.331 +33580,2025-03-11T05:58:10.123590-07:00,1676.0,10.820228,10820.228 +33581,2025-03-11T05:58:20.956435-07:00,1658.0,10.832845,10832.845 +33582,2025-03-11T05:58:31.776365-07:00,1717.0,10.81993,10819.93 +33583,2025-03-11T05:58:42.606600-07:00,1705.0,10.830235,10830.235 +33584,2025-03-11T05:58:53.427361-07:00,1719.0,10.820761,10820.761 +33585,2025-03-11T05:59:04.259713-07:00,1637.0,10.832352,10832.352 +33586,2025-03-11T05:59:15.085586-07:00,1697.0,10.825873,10825.873 +33587,2025-03-11T05:59:25.917576-07:00,1648.0,10.83199,10831.99 +33588,2025-03-11T05:59:36.733991-07:00,1716.0,10.816415,10816.415 +33589,2025-03-11T05:59:47.564080-07:00,1648.0,10.830089,10830.089 +33590,2025-03-11T05:59:58.388372-07:00,1648.0,10.824292,10824.292 +33591,2025-03-11T06:00:09.210366-07:00,1629.0,10.821994,10821.994 +33592,2025-03-11T06:00:20.036694-07:00,1675.0,10.826328,10826.328 +33593,2025-03-11T06:00:30.862371-07:00,1679.0,10.825677,10825.677 +33594,2025-03-11T06:00:41.677703-07:00,1715.0,10.815332,10815.332 +33595,2025-03-11T06:00:52.509359-07:00,1633.0,10.831656,10831.656 +33596,2025-03-11T06:01:03.326371-07:00,1626.0,10.817012,10817.012 +33597,2025-03-11T06:01:14.150666-07:00,1679.0,10.824295,10824.295 +33598,2025-03-11T06:01:24.969367-07:00,1648.0,10.818701,10818.701 +33599,2025-03-11T06:01:35.800780-07:00,1680.0,10.831413,10831.413 +33600,2025-03-11T06:01:46.626764-07:00,1675.0,10.825984,10825.984 +33601,2025-03-11T06:01:57.458219-07:00,1697.0,10.831455,10831.455 +33602,2025-03-11T06:02:08.277817-07:00,1695.0,10.819598,10819.598 +33603,2025-03-11T06:02:19.105345-07:00,1694.0,10.827528,10827.528 +33604,2025-03-11T06:02:29.931395-07:00,1618.0,10.82605,10826.05 +33605,2025-03-11T06:02:40.759366-07:00,1678.0,10.827971,10827.971 +33606,2025-03-11T06:02:51.577184-07:00,1639.0,10.817818,10817.818 +33607,2025-03-11T06:03:02.408335-07:00,1697.0,10.831151,10831.151 +33608,2025-03-11T06:03:13.233635-07:00,1705.0,10.8253,10825.3 +33609,2025-03-11T06:03:24.050367-07:00,1715.0,10.816732,10816.732 +33610,2025-03-11T06:03:34.880349-07:00,1719.0,10.829982,10829.982 +33611,2025-03-11T06:03:45.710674-07:00,1667.0,10.830325,10830.325 +33612,2025-03-11T06:03:56.536362-07:00,1702.0,10.825688,10825.688 +33613,2025-03-11T06:04:07.354435-07:00,1709.0,10.818073,10818.073 +33614,2025-03-11T06:04:18.180370-07:00,1703.0,10.825935,10825.935 +33615,2025-03-11T06:04:29.002362-07:00,1681.0,10.821992,10821.992 +33616,2025-03-11T06:04:39.826868-07:00,1669.0,10.824506,10824.506 +33617,2025-03-11T06:04:50.648356-07:00,1631.0,10.821488,10821.488 +33618,2025-03-11T06:05:01.479721-07:00,1665.0,10.831365,10831.365 +33619,2025-03-11T06:05:12.296378-07:00,1697.0,10.816657,10816.657 +33620,2025-03-11T06:05:23.113421-07:00,1712.0,10.817043,10817.043 +33621,2025-03-11T06:05:33.935641-07:00,1703.0,10.82222,10822.22 +33622,2025-03-11T06:05:44.760595-07:00,1713.0,10.824954,10824.954 +33623,2025-03-11T06:05:55.577656-07:00,1707.0,10.817061,10817.061 +33624,2025-03-11T06:06:06.411065-07:00,1641.0,10.833409,10833.409 +33625,2025-03-11T06:06:17.226544-07:00,1693.0,10.815479,10815.479 +33626,2025-03-11T06:06:28.054628-07:00,1638.0,10.828084,10828.084 +33627,2025-03-11T06:06:38.869365-07:00,1631.0,10.814737,10814.737 +33628,2025-03-11T06:06:49.699359-07:00,1719.0,10.829994,10829.994 +33629,2025-03-11T06:07:00.515248-07:00,1664.0,10.815889,10815.889 +33630,2025-03-11T06:07:11.238717-07:00,1712.0,10.723469,10723.469 +33631,2025-03-11T06:07:22.059763-07:00,1642.0,10.821046,10821.046 +33632,2025-03-11T06:07:32.885914-07:00,1630.0,10.826151,10826.151 +33633,2025-03-11T06:07:43.713955-07:00,1681.0,10.828041,10828.041 +33634,2025-03-11T06:07:54.533289-07:00,1717.0,10.819334,10819.334 +33635,2025-03-11T06:08:05.363688-07:00,1714.0,10.830399,10830.399 +33636,2025-03-11T06:08:16.185181-07:00,1648.0,10.821493,10821.493 +33637,2025-03-11T06:08:27.004776-07:00,1717.0,10.819595,10819.595 +33638,2025-03-11T06:08:37.825794-07:00,1663.0,10.821018,10821.018 +33639,2025-03-11T06:08:48.645235-07:00,1697.0,10.819441,10819.441 +33640,2025-03-11T06:08:59.471712-07:00,1714.0,10.826477,10826.477 +33641,2025-03-11T06:09:10.299417-07:00,1699.0,10.827705,10827.705 +33642,2025-03-11T06:09:21.129721-07:00,1679.0,10.830304,10830.304 +33643,2025-03-11T06:09:31.957718-07:00,1698.0,10.827997,10827.997 +33644,2025-03-11T06:09:42.780891-07:00,1667.0,10.823173,10823.173 +33645,2025-03-11T06:09:53.603033-07:00,1691.0,10.822142,10822.142 +33646,2025-03-11T06:10:04.430421-07:00,1714.0,10.827388,10827.388 +33647,2025-03-11T06:10:15.259359-07:00,1712.0,10.828938,10828.938 +33648,2025-03-11T06:10:26.080560-07:00,1693.0,10.821201,10821.201 +33649,2025-03-11T06:10:36.902140-07:00,1668.0,10.82158,10821.58 +33650,2025-03-11T06:10:47.732715-07:00,1645.0,10.830575,10830.575 +33651,2025-03-11T06:10:58.559715-07:00,1670.0,10.827,10827.0 +33652,2025-03-11T06:11:09.379102-07:00,1711.0,10.819387,10819.387 +33653,2025-03-11T06:11:20.205743-07:00,1658.0,10.826641,10826.641 +33654,2025-03-11T06:11:31.027867-07:00,1631.0,10.822124,10822.124 +33655,2025-03-11T06:11:41.850826-07:00,1683.0,10.822959,10822.959 +33656,2025-03-11T06:11:52.671077-07:00,1694.0,10.820251,10820.251 +33657,2025-03-11T06:12:03.502701-07:00,1649.0,10.831624,10831.624 +33658,2025-03-11T06:12:14.324023-07:00,1680.0,10.821322,10821.322 +33659,2025-03-11T06:12:25.153719-07:00,1712.0,10.829696,10829.696 +33660,2025-03-11T06:12:35.983181-07:00,1653.0,10.829462,10829.462 +33661,2025-03-11T06:12:46.817708-07:00,1714.0,10.834527,10834.527 +33662,2025-03-11T06:12:57.638082-07:00,1636.0,10.820374,10820.374 +33663,2025-03-11T06:13:08.465719-07:00,1717.0,10.827637,10827.637 +33664,2025-03-11T06:13:19.297706-07:00,1667.0,10.831987,10831.987 +33665,2025-03-11T06:13:30.132960-07:00,1668.0,10.835254,10835.254 +33666,2025-03-11T06:13:40.961707-07:00,1701.0,10.828747,10828.747 +33667,2025-03-11T06:13:51.787750-07:00,1709.0,10.826043,10826.043 +33668,2025-03-11T06:14:02.612017-07:00,1713.0,10.824267,10824.267 +33669,2025-03-11T06:14:13.437717-07:00,1708.0,10.8257,10825.7 +33670,2025-03-11T06:14:24.258748-07:00,1696.0,10.821031,10821.031 +33671,2025-03-11T06:14:35.093883-07:00,1716.0,10.835135,10835.135 +33672,2025-03-11T06:14:45.919805-07:00,1617.0,10.825922,10825.922 +33673,2025-03-11T06:14:56.743958-07:00,1703.0,10.824153,10824.153 +33674,2025-03-11T06:15:07.573867-07:00,1661.0,10.829909,10829.909 +33675,2025-03-11T06:15:18.405882-07:00,1712.0,10.832015,10832.015 +33676,2025-03-11T06:15:29.226715-07:00,1675.0,10.820833,10820.833 +33677,2025-03-11T06:15:40.064109-07:00,1686.0,10.837394,10837.394 +33678,2025-03-11T06:15:50.882694-07:00,1695.0,10.818585,10818.585 +33679,2025-03-11T06:16:01.715040-07:00,1690.0,10.832346,10832.346 +33680,2025-03-11T06:16:12.545048-07:00,1633.0,10.830008,10830.008 +33681,2025-03-11T06:16:23.370854-07:00,1710.0,10.825806,10825.806 +33682,2025-03-11T06:16:34.199717-07:00,1712.0,10.828863,10828.863 +33683,2025-03-11T06:16:45.027123-07:00,1709.0,10.827406,10827.406 +33684,2025-03-11T06:16:55.855730-07:00,1679.0,10.828607,10828.607 +33685,2025-03-11T06:17:06.676982-07:00,1648.0,10.821252,10821.252 +33686,2025-03-11T06:17:17.502907-07:00,1713.0,10.825925,10825.925 +33687,2025-03-11T06:17:28.328623-07:00,1711.0,10.825716,10825.716 +33688,2025-03-11T06:17:39.149976-07:00,1715.0,10.821353,10821.353 +33689,2025-03-11T06:17:49.973693-07:00,1678.0,10.823717,10823.717 +33690,2025-03-11T06:18:00.803994-07:00,1662.0,10.830301,10830.301 +33691,2025-03-11T06:18:11.621706-07:00,1617.0,10.817712,10817.712 +33692,2025-03-11T06:18:22.451512-07:00,1713.0,10.829806,10829.806 +33693,2025-03-11T06:18:33.269720-07:00,1676.0,10.818208,10818.208 +33694,2025-03-11T06:18:44.103976-07:00,1710.0,10.834256,10834.256 +33695,2025-03-11T06:18:54.920984-07:00,1712.0,10.817008,10817.008 +33696,2025-03-11T06:19:05.749718-07:00,1671.0,10.828734,10828.734 +33697,2025-03-11T06:19:16.579499-07:00,1662.0,10.829781,10829.781 +33698,2025-03-11T06:19:27.404720-07:00,1648.0,10.825221,10825.221 +33699,2025-03-11T06:19:38.230048-07:00,1693.0,10.825328,10825.328 +33700,2025-03-11T06:19:49.055694-07:00,1709.0,10.825646,10825.646 +33701,2025-03-11T06:19:59.877803-07:00,1712.0,10.822109,10822.109 +33702,2025-03-11T06:20:10.697866-07:00,1715.0,10.820063,10820.063 +33703,2025-03-11T06:20:21.524794-07:00,1717.0,10.826928,10826.928 +33704,2025-03-11T06:20:32.359806-07:00,1713.0,10.835012,10835.012 +33705,2025-03-11T06:20:43.184984-07:00,1675.0,10.825178,10825.178 +33706,2025-03-11T06:20:54.017717-07:00,1718.0,10.832733,10832.733 +33707,2025-03-11T06:21:04.846238-07:00,1718.0,10.828521,10828.521 +33708,2025-03-11T06:21:15.668139-07:00,1697.0,10.821901,10821.901 +33709,2025-03-11T06:21:26.491716-07:00,1639.0,10.823577,10823.577 +33710,2025-03-11T06:21:37.309763-07:00,1659.0,10.818047,10818.047 +33711,2025-03-11T06:21:48.141772-07:00,1699.0,10.832009,10832.009 +33712,2025-03-11T06:21:58.967895-07:00,1712.0,10.826123,10826.123 +33713,2025-03-11T06:22:09.800718-07:00,1715.0,10.832823,10832.823 +33714,2025-03-11T06:22:20.633110-07:00,1717.0,10.832392,10832.392 +33715,2025-03-11T06:22:31.457974-07:00,1694.0,10.824864,10824.864 +33716,2025-03-11T06:22:42.279766-07:00,1629.0,10.821792,10821.792 +33717,2025-03-11T06:22:53.110720-07:00,1630.0,10.830954,10830.954 +33718,2025-03-11T06:23:03.941108-07:00,1713.0,10.830388,10830.388 +33719,2025-03-11T06:23:14.773755-07:00,1671.0,10.832647,10832.647 +33720,2025-03-11T06:23:25.599846-07:00,1714.0,10.826091,10826.091 +33721,2025-03-11T06:23:36.435113-07:00,1642.0,10.835267,10835.267 +33722,2025-03-11T06:23:47.254711-07:00,1680.0,10.819598,10819.598 +33723,2025-03-11T06:23:58.078094-07:00,1660.0,10.823383,10823.383 +33724,2025-03-11T06:24:08.909715-07:00,1641.0,10.831621,10831.621 +33725,2025-03-11T06:24:19.735718-07:00,1685.0,10.826003,10826.003 +33726,2025-03-11T06:24:30.556776-07:00,1699.0,10.821058,10821.058 +33727,2025-03-11T06:24:41.392115-07:00,1662.0,10.835339,10835.339 +33728,2025-03-11T06:24:52.224933-07:00,1715.0,10.832818,10832.818 +33729,2025-03-11T06:25:03.052719-07:00,1680.0,10.827786,10827.786 +33730,2025-03-11T06:25:13.881708-07:00,1718.0,10.828989,10828.989 +33731,2025-03-11T06:25:24.719714-07:00,1708.0,10.838006,10838.006 +33732,2025-03-11T06:25:35.542710-07:00,1635.0,10.822996,10822.996 +33733,2025-03-11T06:25:46.381100-07:00,1681.0,10.83839,10838.39 +33734,2025-03-11T06:25:57.200962-07:00,1618.0,10.819862,10819.862 +33735,2025-03-11T06:26:08.030763-07:00,1639.0,10.829801,10829.801 +33736,2025-03-11T06:26:18.854780-07:00,1666.0,10.824017,10824.017 +33737,2025-03-11T06:26:29.684723-07:00,1649.0,10.829943,10829.943 +33738,2025-03-11T06:26:40.509713-07:00,1654.0,10.82499,10824.99 +33739,2025-03-11T06:26:51.339005-07:00,1696.0,10.829292,10829.292 +33740,2025-03-11T06:27:02.157973-07:00,1718.0,10.818968,10818.968 +33741,2025-03-11T06:27:12.978850-07:00,1683.0,10.820877,10820.877 +33742,2025-03-11T06:27:23.811714-07:00,1661.0,10.832864,10832.864 +33743,2025-03-11T06:27:34.636889-07:00,1631.0,10.825175,10825.175 +33744,2025-03-11T06:27:45.474008-07:00,1711.0,10.837119,10837.119 +33745,2025-03-11T06:27:56.291031-07:00,1687.0,10.817023,10817.023 +33746,2025-03-11T06:28:07.115075-07:00,1712.0,10.824044,10824.044 +33747,2025-03-11T06:28:17.939717-07:00,1691.0,10.824642,10824.642 +33748,2025-03-11T06:28:28.764407-07:00,1717.0,10.82469,10824.69 +33749,2025-03-11T06:28:39.598959-07:00,1697.0,10.834552,10834.552 +33750,2025-03-11T06:28:50.422453-07:00,1681.0,10.823494,10823.494 +33751,2025-03-11T06:29:01.246719-07:00,1699.0,10.824266,10824.266 +33752,2025-03-11T06:29:12.065752-07:00,1663.0,10.819033,10819.033 +33753,2025-03-11T06:29:22.893278-07:00,1675.0,10.827526,10827.526 +33754,2025-03-11T06:29:33.720714-07:00,1715.0,10.827436,10827.436 +33755,2025-03-11T06:29:44.549742-07:00,1682.0,10.829028,10829.028 +33756,2025-03-11T06:29:55.376722-07:00,1712.0,10.82698,10826.98 +33757,2025-03-11T06:30:06.198036-07:00,1643.0,10.821314,10821.314 +33758,2025-03-11T06:30:17.027957-07:00,1671.0,10.829921,10829.921 +33759,2025-03-11T06:30:27.840709-07:00,1665.0,10.812752,10812.752 +33760,2025-03-11T06:30:38.676023-07:00,1681.0,10.835314,10835.314 +33761,2025-03-11T06:30:49.496692-07:00,1680.0,10.820669,10820.669 +33762,2025-03-11T06:31:00.323097-07:00,1665.0,10.826405,10826.405 +33763,2025-03-11T06:31:11.146751-07:00,1717.0,10.823654,10823.654 +33764,2025-03-11T06:31:21.981149-07:00,1718.0,10.834398,10834.398 +33765,2025-03-11T06:31:32.805715-07:00,1712.0,10.824566,10824.566 +33766,2025-03-11T06:31:43.631414-07:00,1709.0,10.825699,10825.699 +33767,2025-03-11T06:31:54.464025-07:00,1713.0,10.832611,10832.611 +33768,2025-03-11T06:32:05.280918-07:00,1669.0,10.816893,10816.893 +33769,2025-03-11T06:32:16.103115-07:00,1689.0,10.822197,10822.197 +33770,2025-03-11T06:32:26.921940-07:00,1709.0,10.818825,10818.825 +33771,2025-03-11T06:32:37.750666-07:00,1715.0,10.828726,10828.726 +33772,2025-03-11T06:32:48.581719-07:00,1663.0,10.831053,10831.053 +33773,2025-03-11T06:32:59.402765-07:00,1702.0,10.821046,10821.046 +33774,2025-03-11T06:33:10.222978-07:00,1668.0,10.820213,10820.213 +33775,2025-03-11T06:33:21.047712-07:00,1695.0,10.824734,10824.734 +33776,2025-03-11T06:33:31.873054-07:00,1712.0,10.825342,10825.342 +33777,2025-03-11T06:33:42.701952-07:00,1665.0,10.828898,10828.898 +33778,2025-03-11T06:33:53.520953-07:00,1706.0,10.819001,10819.001 +33779,2025-03-11T06:34:04.354687-07:00,1715.0,10.833734,10833.734 +33780,2025-03-11T06:34:15.180208-07:00,1649.0,10.825521,10825.521 +33781,2025-03-11T06:34:26.005719-07:00,1717.0,10.825511,10825.511 +33782,2025-03-11T06:34:36.832716-07:00,1705.0,10.826997,10826.997 +33783,2025-03-11T06:34:47.657771-07:00,1631.0,10.825055,10825.055 +33784,2025-03-11T06:34:58.494025-07:00,1630.0,10.836254,10836.254 +33785,2025-03-11T06:35:09.319107-07:00,1712.0,10.825082,10825.082 +33786,2025-03-11T06:35:20.143772-07:00,1714.0,10.824665,10824.665 +33787,2025-03-11T06:35:30.973512-07:00,1665.0,10.82974,10829.74 +33788,2025-03-11T06:35:41.803863-07:00,1695.0,10.830351,10830.351 +33789,2025-03-11T06:35:52.629163-07:00,1685.0,10.8253,10825.3 +33790,2025-03-11T06:36:03.461017-07:00,1680.0,10.831854,10831.854 +33791,2025-03-11T06:36:14.281288-07:00,1680.0,10.820271,10820.271 +33792,2025-03-11T06:36:25.114715-07:00,1712.0,10.833427,10833.427 +33793,2025-03-11T06:36:35.940414-07:00,1714.0,10.825699,10825.699 +33794,2025-03-11T06:36:46.768716-07:00,1717.0,10.828302,10828.302 +33795,2025-03-11T06:36:57.592458-07:00,1665.0,10.823742,10823.742 +33796,2025-03-11T06:37:08.418064-07:00,1714.0,10.825606,10825.606 +33797,2025-03-11T06:37:19.240712-07:00,1712.0,10.822648,10822.648 +33798,2025-03-11T06:37:30.068970-07:00,1713.0,10.828258,10828.258 +33799,2025-03-11T06:37:40.895766-07:00,1715.0,10.826796,10826.796 +33800,2025-03-11T06:37:51.721016-07:00,1713.0,10.82525,10825.25 +33801,2025-03-11T06:38:02.540860-07:00,1685.0,10.819844,10819.844 +33802,2025-03-11T06:38:13.368373-07:00,1680.0,10.827513,10827.513 +33803,2025-03-11T06:38:24.183069-07:00,1712.0,10.814696,10814.696 +33804,2025-03-11T06:38:35.012692-07:00,1673.0,10.829623,10829.623 +33805,2025-03-11T06:38:45.831052-07:00,1694.0,10.81836,10818.36 +33806,2025-03-11T06:38:56.654781-07:00,1716.0,10.823729,10823.729 +33807,2025-03-11T06:39:07.482708-07:00,1709.0,10.827927,10827.927 +33808,2025-03-11T06:39:18.305723-07:00,1639.0,10.823015,10823.015 +33809,2025-03-11T06:39:29.133134-07:00,1665.0,10.827411,10827.411 +33810,2025-03-11T06:39:39.954277-07:00,1679.0,10.821143,10821.143 +33811,2025-03-11T06:39:50.781849-07:00,1629.0,10.827572,10827.572 +33812,2025-03-11T06:40:01.610994-07:00,1662.0,10.829145,10829.145 +33813,2025-03-11T06:40:12.429711-07:00,1679.0,10.818717,10818.717 +33814,2025-03-11T06:40:23.254767-07:00,1685.0,10.825056,10825.056 +33815,2025-03-11T06:40:34.084717-07:00,1697.0,10.82995,10829.95 +33816,2025-03-11T06:40:44.902821-07:00,1686.0,10.818104,10818.104 +33817,2025-03-11T06:40:55.735104-07:00,1628.0,10.832283,10832.283 +33818,2025-03-11T06:41:06.552768-07:00,1714.0,10.817664,10817.664 +33819,2025-03-11T06:41:17.375877-07:00,1642.0,10.823109,10823.109 +33820,2025-03-11T06:41:28.205959-07:00,1713.0,10.830082,10830.082 +33821,2025-03-11T06:41:39.022951-07:00,1703.0,10.816992,10816.992 +33822,2025-03-11T06:41:49.843631-07:00,1715.0,10.82068,10820.68 +33823,2025-03-11T06:42:00.673711-07:00,1643.0,10.83008,10830.08 +33824,2025-03-11T06:42:11.496724-07:00,1630.0,10.823013,10823.013 +33825,2025-03-11T06:42:22.316350-07:00,1649.0,10.819626,10819.626 +33826,2025-03-11T06:42:33.133023-07:00,1679.0,10.816673,10816.673 +33827,2025-03-11T06:42:43.961358-07:00,1662.0,10.828335,10828.335 +33828,2025-03-11T06:42:54.784729-07:00,1715.0,10.823371,10823.371 +33829,2025-03-11T06:43:05.593711-07:00,1713.0,10.808982,10808.982 +33830,2025-03-11T06:43:16.417711-07:00,1707.0,10.824,10824.0 +33831,2025-03-11T06:43:27.241773-07:00,1672.0,10.824062,10824.062 +33832,2025-03-11T06:43:38.062720-07:00,1647.0,10.820947,10820.947 +33833,2025-03-11T06:43:48.889924-07:00,1630.0,10.827204,10827.204 +33834,2025-03-11T06:43:59.703330-07:00,1702.0,10.813406,10813.406 +33835,2025-03-11T06:44:10.537047-07:00,1673.0,10.833717,10833.717 +33836,2025-03-11T06:44:21.354159-07:00,1715.0,10.817112,10817.112 +33837,2025-03-11T06:44:32.183936-07:00,1703.0,10.829777,10829.777 +33838,2025-03-11T06:44:43.007277-07:00,1705.0,10.823341,10823.341 +33839,2025-03-11T06:44:53.825089-07:00,1682.0,10.817812,10817.812 +33840,2025-03-11T06:45:04.649048-07:00,1643.0,10.823959,10823.959 +33841,2025-03-11T06:45:15.469017-07:00,1670.0,10.819969,10819.969 +33842,2025-03-11T06:45:26.295711-07:00,1663.0,10.826694,10826.694 +33843,2025-03-11T06:45:37.114705-07:00,1711.0,10.818994,10818.994 +33844,2025-03-11T06:45:47.931016-07:00,1714.0,10.816311,10816.311 +33845,2025-03-11T06:45:58.756714-07:00,1677.0,10.825698,10825.698 +33846,2025-03-11T06:46:09.587888-07:00,1680.0,10.831174,10831.174 +33847,2025-03-11T06:46:20.402881-07:00,1665.0,10.814993,10814.993 +33848,2025-03-11T06:46:31.234992-07:00,1667.0,10.832111,10832.111 +33849,2025-03-11T06:46:42.055854-07:00,1685.0,10.820862,10820.862 +33850,2025-03-11T06:46:52.885858-07:00,1631.0,10.830004,10830.004 +33851,2025-03-11T06:47:03.713967-07:00,1679.0,10.828109,10828.109 +33852,2025-03-11T06:47:14.544044-07:00,1685.0,10.830077,10830.077 +33853,2025-03-11T06:47:25.369098-07:00,1717.0,10.825054,10825.054 +33854,2025-03-11T06:47:36.207705-07:00,1697.0,10.838607,10838.607 +33855,2025-03-11T06:47:47.025913-07:00,1705.0,10.818208,10818.208 +33856,2025-03-11T06:47:57.861898-07:00,1715.0,10.835985,10835.985 +33857,2025-03-11T06:48:08.692292-07:00,1715.0,10.830394,10830.394 +33858,2025-03-11T06:48:19.517692-07:00,1659.0,10.8254,10825.4 +33859,2025-03-11T06:48:30.344747-07:00,1635.0,10.827055,10827.055 +33860,2025-03-11T06:48:41.160705-07:00,1711.0,10.815958,10815.958 +33861,2025-03-11T06:48:51.983711-07:00,1681.0,10.823006,10823.006 +33862,2025-03-11T06:49:02.809971-07:00,1687.0,10.82626,10826.26 +33863,2025-03-11T06:49:13.636764-07:00,1699.0,10.826793,10826.793 +33864,2025-03-11T06:49:24.474197-07:00,1636.0,10.837433,10837.433 +33865,2025-03-11T06:49:35.298696-07:00,1674.0,10.824499,10824.499 +33866,2025-03-11T06:49:46.116001-07:00,1648.0,10.817305,10817.305 +33867,2025-03-11T06:49:56.952321-07:00,1657.0,10.83632,10836.32 +33868,2025-03-11T06:50:07.777087-07:00,1690.0,10.824766,10824.766 +33869,2025-03-11T06:50:18.605709-07:00,1690.0,10.828622,10828.622 +33870,2025-03-11T06:50:29.427021-07:00,1661.0,10.821312,10821.312 +33871,2025-03-11T06:50:40.250078-07:00,1702.0,10.823057,10823.057 +33872,2025-03-11T06:50:51.069708-07:00,1680.0,10.81963,10819.63 +33873,2025-03-11T06:51:01.897017-07:00,1712.0,10.827309,10827.309 +33874,2025-03-11T06:51:12.727706-07:00,1713.0,10.830689,10830.689 +33875,2025-03-11T06:51:23.555333-07:00,1707.0,10.827627,10827.627 +33876,2025-03-11T06:51:34.384392-07:00,1657.0,10.829059,10829.059 +33877,2025-03-11T06:51:45.202301-07:00,1649.0,10.817909,10817.909 +33878,2025-03-11T06:51:56.035766-07:00,1717.0,10.833465,10833.465 +33879,2025-03-11T06:52:06.859027-07:00,1671.0,10.823261,10823.261 +33880,2025-03-11T06:52:17.684719-07:00,1675.0,10.825692,10825.692 +33881,2025-03-11T06:52:28.505714-07:00,1643.0,10.820995,10820.995 +33882,2025-03-11T06:52:39.325597-07:00,1714.0,10.819883,10819.883 +33883,2025-03-11T06:52:50.146890-07:00,1686.0,10.821293,10821.293 +33884,2025-03-11T06:53:00.972973-07:00,1628.0,10.826083,10826.083 +33885,2025-03-11T06:53:11.789176-07:00,1664.0,10.816203,10816.203 +33886,2025-03-11T06:53:22.611717-07:00,1715.0,10.822541,10822.541 +33887,2025-03-11T06:53:33.423991-07:00,1681.0,10.812274,10812.274 +33888,2025-03-11T06:53:44.251763-07:00,1657.0,10.827772,10827.772 +33889,2025-03-11T06:53:55.068714-07:00,1714.0,10.816951,10816.951 +33890,2025-03-11T06:54:05.900170-07:00,1717.0,10.831456,10831.456 +33891,2025-03-11T06:54:16.717975-07:00,1664.0,10.817805,10817.805 +33892,2025-03-11T06:54:27.555739-07:00,1707.0,10.837764,10837.764 +33893,2025-03-11T06:54:38.375091-07:00,1715.0,10.819352,10819.352 +33894,2025-03-11T06:54:49.196708-07:00,1687.0,10.821617,10821.617 +33895,2025-03-11T06:55:00.024135-07:00,1681.0,10.827427,10827.427 +33896,2025-03-11T06:55:10.859709-07:00,1703.0,10.835574,10835.574 +33897,2025-03-11T06:55:21.681021-07:00,1715.0,10.821312,10821.312 +33898,2025-03-11T06:55:32.507712-07:00,1681.0,10.826691,10826.691 +33899,2025-03-11T06:55:43.333267-07:00,1626.0,10.825555,10825.555 +33900,2025-03-11T06:55:54.152775-07:00,1711.0,10.819508,10819.508 +33901,2025-03-11T06:56:04.980696-07:00,1678.0,10.827921,10827.921 +33902,2025-03-11T06:56:15.811019-07:00,1674.0,10.830323,10830.323 +33903,2025-03-11T06:56:26.641710-07:00,1702.0,10.830691,10830.691 +33904,2025-03-11T06:56:37.474708-07:00,1712.0,10.832998,10832.998 +33905,2025-03-11T06:56:48.300748-07:00,1676.0,10.82604,10826.04 +33906,2025-03-11T06:56:59.127818-07:00,1706.0,10.82707,10827.07 +33907,2025-03-11T06:57:09.963181-07:00,1621.0,10.835363,10835.363 +33908,2025-03-11T06:57:20.783975-07:00,1669.0,10.820794,10820.794 +33909,2025-03-11T06:57:31.615663-07:00,1712.0,10.831688,10831.688 +33910,2025-03-11T06:57:42.435748-07:00,1713.0,10.820085,10820.085 +33911,2025-03-11T06:57:53.266715-07:00,1627.0,10.830967,10830.967 +33912,2025-03-11T06:58:04.089006-07:00,1680.0,10.822291,10822.291 +33913,2025-03-11T06:58:14.921017-07:00,1658.0,10.832011,10832.011 +33914,2025-03-11T06:58:25.745598-07:00,1703.0,10.824581,10824.581 +33915,2025-03-11T06:58:36.571941-07:00,1625.0,10.826343,10826.343 +33916,2025-03-11T06:58:47.399548-07:00,1696.0,10.827607,10827.607 +33917,2025-03-11T06:58:58.230019-07:00,1712.0,10.830471,10830.471 +33918,2025-03-11T06:59:09.053494-07:00,1712.0,10.823475,10823.475 +33919,2025-03-11T06:59:19.888693-07:00,1662.0,10.835199,10835.199 +33920,2025-03-11T06:59:30.711340-07:00,1712.0,10.822647,10822.647 +33921,2025-03-11T06:59:41.539727-07:00,1691.0,10.828387,10828.387 +33922,2025-03-11T06:59:52.378330-07:00,1707.0,10.838603,10838.603 +33923,2025-03-11T07:00:03.212986-07:00,1702.0,10.834656,10834.656 +33924,2025-03-11T07:00:14.043970-07:00,1672.0,10.830984,10830.984 +33925,2025-03-11T07:00:24.872703-07:00,1694.0,10.828733,10828.733 +33926,2025-03-11T07:00:35.709001-07:00,1712.0,10.836298,10836.298 +33927,2025-03-11T07:00:46.535708-07:00,1693.0,10.826707,10826.707 +33928,2025-03-11T07:00:57.361537-07:00,1711.0,10.825829,10825.829 +33929,2025-03-11T07:01:08.191756-07:00,1710.0,10.830219,10830.219 +33930,2025-03-11T07:01:19.018036-07:00,1633.0,10.82628,10826.28 +33931,2025-03-11T07:01:29.845177-07:00,1685.0,10.827141,10827.141 +33932,2025-03-11T07:01:40.668902-07:00,1712.0,10.823725,10823.725 +33933,2025-03-11T07:01:51.497842-07:00,1664.0,10.82894,10828.94 +33934,2025-03-11T07:02:02.334874-07:00,1685.0,10.837032,10837.032 +33935,2025-03-11T07:02:13.155150-07:00,1712.0,10.820276,10820.276 +33936,2025-03-11T07:02:23.987715-07:00,1654.0,10.832565,10832.565 +33937,2025-03-11T07:02:34.812813-07:00,1630.0,10.825098,10825.098 +33938,2025-03-11T07:02:45.650776-07:00,1710.0,10.837963,10837.963 +33939,2025-03-11T07:02:56.482859-07:00,1663.0,10.832083,10832.083 +33940,2025-03-11T07:03:07.306720-07:00,1657.0,10.823861,10823.861 +33941,2025-03-11T07:03:18.140762-07:00,1694.0,10.834042,10834.042 +33942,2025-03-11T07:03:28.965786-07:00,1680.0,10.825024,10825.024 +33943,2025-03-11T07:03:39.797720-07:00,1616.0,10.831934,10831.934 +33944,2025-03-11T07:03:50.619999-07:00,1650.0,10.822279,10822.279 +33945,2025-03-11T07:04:01.454917-07:00,1647.0,10.834918,10834.918 +33946,2025-03-11T07:04:12.275113-07:00,1647.0,10.820196,10820.196 +33947,2025-03-11T07:04:23.101714-07:00,1717.0,10.826601,10826.601 +33948,2025-03-11T07:04:33.937720-07:00,1703.0,10.836006,10836.006 +33949,2025-03-11T07:04:44.765721-07:00,1618.0,10.828001,10828.001 +33950,2025-03-11T07:04:55.596715-07:00,1714.0,10.830994,10830.994 +33951,2025-03-11T07:05:06.421965-07:00,1713.0,10.82525,10825.25 +33952,2025-03-11T07:05:17.248757-07:00,1707.0,10.826792,10826.792 +33953,2025-03-11T07:05:28.075842-07:00,1633.0,10.827085,10827.085 +33954,2025-03-11T07:05:38.908386-07:00,1712.0,10.832544,10832.544 +33955,2025-03-11T07:05:49.744693-07:00,1709.0,10.836307,10836.307 +33956,2025-03-11T07:06:00.577140-07:00,1651.0,10.832447,10832.447 +33957,2025-03-11T07:06:11.413137-07:00,1661.0,10.835997,10835.997 +33958,2025-03-11T07:06:22.239717-07:00,1671.0,10.82658,10826.58 +33959,2025-03-11T07:06:33.061697-07:00,1680.0,10.82198,10821.98 +33960,2025-03-11T07:06:43.894848-07:00,1664.0,10.833151,10833.151 +33961,2025-03-11T07:06:54.729007-07:00,1669.0,10.834159,10834.159 +33962,2025-03-11T07:07:05.644476-07:00,1714.0,10.915469,10915.469 +33963,2025-03-11T07:07:16.469126-07:00,1715.0,10.82465,10824.65 +33964,2025-03-11T07:07:27.305023-07:00,1700.0,10.835897,10835.897 +33965,2025-03-11T07:07:38.125251-07:00,1656.0,10.820228,10820.228 +33966,2025-03-11T07:07:48.957874-07:00,1681.0,10.832623,10832.623 +33967,2025-03-11T07:07:59.791253-07:00,1715.0,10.833379,10833.379 +33968,2025-03-11T07:08:10.623068-07:00,1716.0,10.831815,10831.815 +33969,2025-03-11T07:08:21.444420-07:00,1714.0,10.821352,10821.352 +33970,2025-03-11T07:08:32.274295-07:00,1712.0,10.829875,10829.875 +33971,2025-03-11T07:08:43.105230-07:00,1718.0,10.830935,10830.935 +33972,2025-03-11T07:08:53.934188-07:00,1715.0,10.828958,10828.958 +33973,2025-03-11T07:09:04.764855-07:00,1694.0,10.830667,10830.667 +33974,2025-03-11T07:09:15.588929-07:00,1639.0,10.824074,10824.074 +33975,2025-03-11T07:09:26.420477-07:00,1681.0,10.831548,10831.548 +33976,2025-03-11T07:09:37.250918-07:00,1712.0,10.830441,10830.441 +33977,2025-03-11T07:09:48.078024-07:00,1695.0,10.827106,10827.106 +33978,2025-03-11T07:09:58.908870-07:00,1665.0,10.830846,10830.846 +33979,2025-03-11T07:10:09.728129-07:00,1687.0,10.819259,10819.259 +33980,2025-03-11T07:10:20.545854-07:00,1642.0,10.817725,10817.725 +33981,2025-03-11T07:10:31.382477-07:00,1714.0,10.836623,10836.623 +33982,2025-03-11T07:10:42.206868-07:00,1712.0,10.824391,10824.391 +33983,2025-03-11T07:10:53.026873-07:00,1665.0,10.820005,10820.005 +33984,2025-03-11T07:11:03.850233-07:00,1634.0,10.82336,10823.36 +33985,2025-03-11T07:11:14.680841-07:00,1716.0,10.830608,10830.608 +33986,2025-03-11T07:11:25.508329-07:00,1712.0,10.827488,10827.488 +33987,2025-03-11T07:11:36.327868-07:00,1715.0,10.819539,10819.539 +33988,2025-03-11T07:11:47.153005-07:00,1663.0,10.825137,10825.137 +33989,2025-03-11T07:11:57.991242-07:00,1675.0,10.838237,10838.237 +33990,2025-03-11T07:12:08.816652-07:00,1677.0,10.82541,10825.41 +33991,2025-03-11T07:12:19.642955-07:00,1717.0,10.826303,10826.303 +33992,2025-03-11T07:12:30.462935-07:00,1648.0,10.81998,10819.98 +33993,2025-03-11T07:12:41.288535-07:00,1664.0,10.8256,10825.6 +33994,2025-03-11T07:12:52.120860-07:00,1647.0,10.832325,10832.325 +33995,2025-03-11T07:13:02.946872-07:00,1685.0,10.826012,10826.012 +33996,2025-03-11T07:13:13.770869-07:00,1719.0,10.823997,10823.997 +33997,2025-03-11T07:13:24.592383-07:00,1646.0,10.821514,10821.514 +33998,2025-03-11T07:13:35.419851-07:00,1680.0,10.827468,10827.468 +33999,2025-03-11T07:13:46.239858-07:00,1713.0,10.820007,10820.007 +34000,2025-03-11T07:13:57.071643-07:00,1715.0,10.831785,10831.785 +34001,2025-03-11T07:14:07.890872-07:00,1635.0,10.819229,10819.229 +34002,2025-03-11T07:14:18.716260-07:00,1718.0,10.825388,10825.388 +34003,2025-03-11T07:14:29.551066-07:00,1655.0,10.834806,10834.806 +34004,2025-03-11T07:14:40.376349-07:00,1722.0,10.825283,10825.283 +34005,2025-03-11T07:14:51.197627-07:00,1647.0,10.821278,10821.278 +34006,2025-03-11T07:15:02.022921-07:00,1694.0,10.825294,10825.294 +34007,2025-03-11T07:15:12.851874-07:00,1678.0,10.828953,10828.953 +34008,2025-03-11T07:15:23.680924-07:00,1681.0,10.82905,10829.05 +34009,2025-03-11T07:15:34.504141-07:00,1721.0,10.823217,10823.217 +34010,2025-03-11T07:15:45.326123-07:00,1627.0,10.821982,10821.982 +34011,2025-03-11T07:15:56.158207-07:00,1683.0,10.832084,10832.084 +34012,2025-03-11T07:16:06.978051-07:00,1675.0,10.819844,10819.844 +34013,2025-03-11T07:16:17.797981-07:00,1689.0,10.81993,10819.93 +34014,2025-03-11T07:16:28.624874-07:00,1675.0,10.826893,10826.893 +34015,2025-03-11T07:16:39.449994-07:00,1712.0,10.82512,10825.12 +34016,2025-03-11T07:16:50.275155-07:00,1694.0,10.825161,10825.161 +34017,2025-03-11T07:17:01.096881-07:00,1667.0,10.821726,10821.726 +34018,2025-03-11T07:17:11.922141-07:00,1701.0,10.82526,10825.26 +34019,2025-03-11T07:17:22.748180-07:00,1705.0,10.826039,10826.039 +34020,2025-03-11T07:17:33.574339-07:00,1665.0,10.826159,10826.159 +34021,2025-03-11T07:17:44.389403-07:00,1641.0,10.815064,10815.064 +34022,2025-03-11T07:17:55.210101-07:00,1633.0,10.820698,10820.698 +34023,2025-03-11T07:18:06.030113-07:00,1697.0,10.820012,10820.012 +34024,2025-03-11T07:18:16.850403-07:00,1649.0,10.82029,10820.29 +34025,2025-03-11T07:18:27.671469-07:00,1679.0,10.821066,10821.066 +34026,2025-03-11T07:18:38.494937-07:00,1719.0,10.823468,10823.468 +34027,2025-03-11T07:18:49.317188-07:00,1683.0,10.822251,10822.251 +34028,2025-03-11T07:19:00.135864-07:00,1716.0,10.818676,10818.676 +34029,2025-03-11T07:19:10.970198-07:00,1714.0,10.834334,10834.334 +34030,2025-03-11T07:19:21.794240-07:00,1663.0,10.824042,10824.042 +34031,2025-03-11T07:19:32.610858-07:00,1680.0,10.816618,10816.618 +34032,2025-03-11T07:19:43.430190-07:00,1677.0,10.819332,10819.332 +34033,2025-03-11T07:19:54.255203-07:00,1725.0,10.825013,10825.013 +34034,2025-03-11T07:20:05.081259-07:00,1645.0,10.826056,10826.056 +34035,2025-03-11T07:20:15.900243-07:00,1701.0,10.818984,10818.984 +34036,2025-03-11T07:20:26.719941-07:00,1719.0,10.819698,10819.698 +34037,2025-03-11T07:20:37.542820-07:00,1673.0,10.822879,10822.879 +34038,2025-03-11T07:20:48.373074-07:00,1635.0,10.830254,10830.254 +34039,2025-03-11T07:20:59.189871-07:00,1706.0,10.816797,10816.797 +34040,2025-03-11T07:21:10.010854-07:00,1685.0,10.820983,10820.983 +34041,2025-03-11T07:21:20.829849-07:00,1647.0,10.818995,10818.995 +34042,2025-03-11T07:21:31.656966-07:00,1623.0,10.827117,10827.117 +34043,2025-03-11T07:21:42.470829-07:00,1727.0,10.813863,10813.863 +34044,2025-03-11T07:21:53.302863-07:00,1694.0,10.832034,10832.034 +34045,2025-03-11T07:22:04.124410-07:00,1703.0,10.821547,10821.547 +34046,2025-03-11T07:22:14.947081-07:00,1667.0,10.822671,10822.671 +34047,2025-03-11T07:22:25.765092-07:00,1680.0,10.818011,10818.011 +34048,2025-03-11T07:22:36.589213-07:00,1677.0,10.824121,10824.121 +34049,2025-03-11T07:22:47.410172-07:00,1696.0,10.820959,10820.959 +34050,2025-03-11T07:22:58.229000-07:00,1726.0,10.818828,10818.828 +34051,2025-03-11T07:23:09.056866-07:00,1647.0,10.827866,10827.866 +34052,2025-03-11T07:23:19.887074-07:00,1728.0,10.830208,10830.208 +34053,2025-03-11T07:23:30.714734-07:00,1724.0,10.82766,10827.66 +34054,2025-03-11T07:23:41.533872-07:00,1683.0,10.819138,10819.138 +34055,2025-03-11T07:23:52.355908-07:00,1687.0,10.822036,10822.036 +34056,2025-03-11T07:24:03.181004-07:00,1691.0,10.825096,10825.096 +34057,2025-03-11T07:24:14.002338-07:00,1730.0,10.821334,10821.334 +34058,2025-03-11T07:24:24.822872-07:00,1653.0,10.820534,10820.534 +34059,2025-03-11T07:24:35.642870-07:00,1676.0,10.819998,10819.998 +34060,2025-03-11T07:24:46.461883-07:00,1727.0,10.819013,10819.013 +34061,2025-03-11T07:24:57.286211-07:00,1677.0,10.824328,10824.328 +34062,2025-03-11T07:25:08.108866-07:00,1712.0,10.822655,10822.655 +34063,2025-03-11T07:25:18.945106-07:00,1641.0,10.83624,10836.24 +34064,2025-03-11T07:25:29.755922-07:00,1728.0,10.810816,10810.816 +34065,2025-03-11T07:25:40.580988-07:00,1729.0,10.825066,10825.066 +34066,2025-03-11T07:25:51.403180-07:00,1713.0,10.822192,10822.192 +34067,2025-03-11T07:26:02.231868-07:00,1707.0,10.828688,10828.688 +34068,2025-03-11T07:26:13.064460-07:00,1729.0,10.832592,10832.592 +34069,2025-03-11T07:26:23.889114-07:00,1659.0,10.824654,10824.654 +34070,2025-03-11T07:26:34.716838-07:00,1680.0,10.827724,10827.724 +34071,2025-03-11T07:26:45.541002-07:00,1730.0,10.824164,10824.164 +34072,2025-03-11T07:26:56.364236-07:00,1646.0,10.823234,10823.234 +34073,2025-03-11T07:27:07.188258-07:00,1711.0,10.824022,10824.022 +34074,2025-03-11T07:27:18.020874-07:00,1695.0,10.832616,10832.616 +34075,2025-03-11T07:27:28.846030-07:00,1719.0,10.825156,10825.156 +34076,2025-03-11T07:27:39.665923-07:00,1647.0,10.819893,10819.893 +34077,2025-03-11T07:27:50.487847-07:00,1734.0,10.821924,10821.924 +34078,2025-03-11T07:28:01.311862-07:00,1679.0,10.824015,10824.015 +34079,2025-03-11T07:28:12.137868-07:00,1664.0,10.826006,10826.006 +34080,2025-03-11T07:28:22.972452-07:00,1734.0,10.834584,10834.584 +34081,2025-03-11T07:28:33.799195-07:00,1728.0,10.826743,10826.743 +34082,2025-03-11T07:28:44.621219-07:00,1681.0,10.822024,10822.024 +34083,2025-03-11T07:28:55.443984-07:00,1737.0,10.822765,10822.765 +34084,2025-03-11T07:29:06.276146-07:00,1658.0,10.832162,10832.162 +34085,2025-03-11T07:29:17.101012-07:00,1729.0,10.824866,10824.866 +34086,2025-03-11T07:29:27.928297-07:00,1713.0,10.827285,10827.285 +34087,2025-03-11T07:29:38.749384-07:00,1691.0,10.821087,10821.087 +34088,2025-03-11T07:29:49.578994-07:00,1714.0,10.82961,10829.61 +34089,2025-03-11T07:30:00.407115-07:00,1725.0,10.828121,10828.121 +34090,2025-03-11T07:30:11.225099-07:00,1651.0,10.817984,10817.984 +34091,2025-03-11T07:30:22.057266-07:00,1741.0,10.832167,10832.167 +34092,2025-03-11T07:30:32.872872-07:00,1709.0,10.815606,10815.606 +34093,2025-03-11T07:30:43.701217-07:00,1647.0,10.828345,10828.345 +34094,2025-03-11T07:30:54.527869-07:00,1667.0,10.826652,10826.652 +34095,2025-03-11T07:31:05.349844-07:00,1726.0,10.821975,10821.975 +34096,2025-03-11T07:31:16.179023-07:00,1706.0,10.829179,10829.179 +34097,2025-03-11T07:31:27.007694-07:00,1739.0,10.828671,10828.671 +34098,2025-03-11T07:31:37.823292-07:00,1689.0,10.815598,10815.598 +34099,2025-03-11T07:31:48.654298-07:00,1742.0,10.831006,10831.006 +34100,2025-03-11T07:31:59.482417-07:00,1727.0,10.828119,10828.119 +34101,2025-03-11T07:32:10.307962-07:00,1738.0,10.825545,10825.545 +34102,2025-03-11T07:32:21.132055-07:00,1742.0,10.824093,10824.093 +34103,2025-03-11T07:32:31.964874-07:00,1739.0,10.832819,10832.819 +34104,2025-03-11T07:32:42.788940-07:00,1687.0,10.824066,10824.066 +34105,2025-03-11T07:32:53.615193-07:00,1741.0,10.826253,10826.253 +34106,2025-03-11T07:33:04.451102-07:00,1665.0,10.835909,10835.909 +34107,2025-03-11T07:33:15.273112-07:00,1729.0,10.82201,10822.01 +34108,2025-03-11T07:33:26.095124-07:00,1660.0,10.822012,10822.012 +34109,2025-03-11T07:33:36.926488-07:00,1712.0,10.831364,10831.364 +34110,2025-03-11T07:33:47.752913-07:00,1663.0,10.826425,10826.425 +34111,2025-03-11T07:33:58.577176-07:00,1671.0,10.824263,10824.263 +34112,2025-03-11T07:34:09.397875-07:00,1691.0,10.820699,10820.699 +34113,2025-03-11T07:34:20.229707-07:00,1719.0,10.831832,10831.832 +34114,2025-03-11T07:34:31.050913-07:00,1744.0,10.821206,10821.206 +34115,2025-03-11T07:34:41.876868-07:00,1667.0,10.825955,10825.955 +34116,2025-03-11T07:34:52.713118-07:00,1712.0,10.83625,10836.25 +34117,2025-03-11T07:35:03.544924-07:00,1744.0,10.831806,10831.806 +34118,2025-03-11T07:35:14.372013-07:00,1701.0,10.827089,10827.089 +34119,2025-03-11T07:35:25.203209-07:00,1737.0,10.831196,10831.196 +34120,2025-03-11T07:35:36.018203-07:00,1701.0,10.814994,10814.994 +34121,2025-03-11T07:35:46.848923-07:00,1704.0,10.83072,10830.72 +34122,2025-03-11T07:35:57.679874-07:00,1680.0,10.830951,10830.951 +34123,2025-03-11T07:36:08.498229-07:00,1739.0,10.818355,10818.355 +34124,2025-03-11T07:36:19.332244-07:00,1744.0,10.834015,10834.015 +34125,2025-03-11T07:36:30.153201-07:00,1703.0,10.820957,10820.957 +34126,2025-03-11T07:36:40.986140-07:00,1746.0,10.832939,10832.939 +34127,2025-03-11T07:36:51.797495-07:00,1712.0,10.811355,10811.355 +34128,2025-03-11T07:37:02.623096-07:00,1699.0,10.825601,10825.601 +34129,2025-03-11T07:37:13.446457-07:00,1750.0,10.823361,10823.361 +34130,2025-03-11T07:37:24.266211-07:00,1733.0,10.819754,10819.754 +34131,2025-03-11T07:37:35.084074-07:00,1745.0,10.817863,10817.863 +34132,2025-03-11T07:37:45.906416-07:00,1712.0,10.822342,10822.342 +34133,2025-03-11T07:37:56.737852-07:00,1733.0,10.831436,10831.436 +34134,2025-03-11T07:38:07.559172-07:00,1712.0,10.82132,10821.32 +34135,2025-03-11T07:38:18.373053-07:00,1732.0,10.813881,10813.881 +34136,2025-03-11T07:38:29.200853-07:00,1754.0,10.8278,10827.8 +34137,2025-03-11T07:38:40.030228-07:00,1717.0,10.829375,10829.375 +34138,2025-03-11T07:38:50.846903-07:00,1749.0,10.816675,10816.675 +34139,2025-03-11T07:39:01.678159-07:00,1665.0,10.831256,10831.256 +34140,2025-03-11T07:39:12.498874-07:00,1712.0,10.820715,10820.715 +34141,2025-03-11T07:39:23.329869-07:00,1729.0,10.830995,10830.995 +34142,2025-03-11T07:39:34.156711-07:00,1754.0,10.826842,10826.842 +34143,2025-03-11T07:39:44.976993-07:00,1755.0,10.820282,10820.282 +34144,2025-03-11T07:39:55.808479-07:00,1749.0,10.831486,10831.486 +34145,2025-03-11T07:40:06.638200-07:00,1737.0,10.829721,10829.721 +34146,2025-03-11T07:40:17.456240-07:00,1741.0,10.81804,10818.04 +34147,2025-03-11T07:40:28.280093-07:00,1744.0,10.823853,10823.853 +34148,2025-03-11T07:40:39.107870-07:00,1691.0,10.827777,10827.777 +34149,2025-03-11T07:40:49.928193-07:00,1762.0,10.820323,10820.323 +34150,2025-03-11T07:41:00.752867-07:00,1705.0,10.824674,10824.674 +34151,2025-03-11T07:41:11.573497-07:00,1763.0,10.82063,10820.63 +34152,2025-03-11T07:41:22.401873-07:00,1712.0,10.828376,10828.376 +34153,2025-03-11T07:41:33.225043-07:00,1758.0,10.82317,10823.17 +34154,2025-03-11T07:41:44.050989-07:00,1676.0,10.825946,10825.946 +34155,2025-03-11T07:41:54.870861-07:00,1761.0,10.819872,10819.872 +34156,2025-03-11T07:42:05.704163-07:00,1762.0,10.833302,10833.302 +34157,2025-03-11T07:42:16.523380-07:00,1764.0,10.819217,10819.217 +34158,2025-03-11T07:42:27.346411-07:00,1712.0,10.823031,10823.031 +34159,2025-03-11T07:42:38.175866-07:00,1763.0,10.829455,10829.455 +34160,2025-03-11T07:42:49.002919-07:00,1723.0,10.827053,10827.053 +34161,2025-03-11T07:42:59.825198-07:00,1703.0,10.822279,10822.279 +34162,2025-03-11T07:43:10.648859-07:00,1711.0,10.823661,10823.661 +34163,2025-03-11T07:43:21.474272-07:00,1733.0,10.825413,10825.413 +34164,2025-03-11T07:43:32.289866-07:00,1763.0,10.815594,10815.594 +34165,2025-03-11T07:43:43.113864-07:00,1769.0,10.823998,10823.998 +34166,2025-03-11T07:43:53.940977-07:00,1715.0,10.827113,10827.113 +34167,2025-03-11T07:44:04.765849-07:00,1773.0,10.824872,10824.872 +34168,2025-03-11T07:44:15.587191-07:00,1763.0,10.821342,10821.342 +34169,2025-03-11T07:44:26.417868-07:00,1761.0,10.830677,10830.677 +34170,2025-03-11T07:44:37.240273-07:00,1747.0,10.822405,10822.405 +34171,2025-03-11T07:44:48.070105-07:00,1713.0,10.829832,10829.832 +34172,2025-03-11T07:44:58.895860-07:00,1695.0,10.825755,10825.755 +34173,2025-03-11T07:45:09.717169-07:00,1772.0,10.821309,10821.309 +34174,2025-03-11T07:45:20.544847-07:00,1775.0,10.827678,10827.678 +34175,2025-03-11T07:45:31.375219-07:00,1726.0,10.830372,10830.372 +34176,2025-03-11T07:45:42.202011-07:00,1709.0,10.826792,10826.792 +34177,2025-03-11T07:45:53.023281-07:00,1680.0,10.82127,10821.27 +34178,2025-03-11T07:46:03.847367-07:00,1769.0,10.824086,10824.086 +34179,2025-03-11T07:46:14.673104-07:00,1759.0,10.825737,10825.737 +34180,2025-03-11T07:46:25.494921-07:00,1707.0,10.821817,10821.817 +34181,2025-03-11T07:46:36.331300-07:00,1744.0,10.836379,10836.379 +34182,2025-03-11T07:46:47.152448-07:00,1695.0,10.821148,10821.148 +34183,2025-03-11T07:46:57.981868-07:00,1779.0,10.82942,10829.42 +34184,2025-03-11T07:47:08.813872-07:00,1778.0,10.832004,10832.004 +34185,2025-03-11T07:47:19.647025-07:00,1727.0,10.833153,10833.153 +34186,2025-03-11T07:47:30.470364-07:00,1767.0,10.823339,10823.339 +34187,2025-03-11T07:47:41.304874-07:00,1729.0,10.83451,10834.51 +34188,2025-03-11T07:47:52.129916-07:00,1735.0,10.825042,10825.042 +34189,2025-03-11T07:48:02.964350-07:00,1767.0,10.834434,10834.434 +34190,2025-03-11T07:48:13.788172-07:00,1785.0,10.823822,10823.822 +34191,2025-03-11T07:48:24.620862-07:00,1739.0,10.83269,10832.69 +34192,2025-03-11T07:48:35.447422-07:00,1712.0,10.82656,10826.56 +34193,2025-03-11T07:48:46.273919-07:00,1776.0,10.826497,10826.497 +34194,2025-03-11T07:48:57.108872-07:00,1712.0,10.834953,10834.953 +34195,2025-03-11T07:49:07.935961-07:00,1785.0,10.827089,10827.089 +34196,2025-03-11T07:49:18.768479-07:00,1735.0,10.832518,10832.518 +34197,2025-03-11T07:49:29.588885-07:00,1744.0,10.820406,10820.406 +34198,2025-03-11T07:49:40.425047-07:00,1787.0,10.836162,10836.162 +34199,2025-03-11T07:49:51.249841-07:00,1739.0,10.824794,10824.794 +34200,2025-03-11T07:50:02.078077-07:00,1712.0,10.828236,10828.236 +34201,2025-03-11T07:50:12.908915-07:00,1792.0,10.830838,10830.838 +34202,2025-03-11T07:50:23.741877-07:00,1792.0,10.832962,10832.962 +34203,2025-03-11T07:50:34.560847-07:00,1764.0,10.81897,10818.97 +34204,2025-03-11T07:50:45.387862-07:00,1794.0,10.827015,10827.015 +34205,2025-03-11T07:50:56.217944-07:00,1738.0,10.830082,10830.082 +34206,2025-03-11T07:51:07.040344-07:00,1785.0,10.8224,10822.4 +34207,2025-03-11T07:51:17.876097-07:00,1744.0,10.835753,10835.753 +34208,2025-03-11T07:51:28.702313-07:00,1773.0,10.826216,10826.216 +34209,2025-03-11T07:51:39.527992-07:00,1797.0,10.825679,10825.679 +34210,2025-03-11T07:51:50.361092-07:00,1797.0,10.8331,10833.1 +34211,2025-03-11T07:52:01.196859-07:00,1783.0,10.835767,10835.767 +34212,2025-03-11T07:52:12.024193-07:00,1759.0,10.827334,10827.334 +34213,2025-03-11T07:52:22.854888-07:00,1722.0,10.830695,10830.695 +34214,2025-03-11T07:52:33.673956-07:00,1745.0,10.819068,10819.068 +34215,2025-03-11T07:52:44.500853-07:00,1806.0,10.826897,10826.897 +34216,2025-03-11T07:52:55.327251-07:00,1802.0,10.826398,10826.398 +34217,2025-03-11T07:53:06.152859-07:00,1723.0,10.825608,10825.608 +34218,2025-03-11T07:53:16.973870-07:00,1808.0,10.821011,10821.011 +34219,2025-03-11T07:53:27.806014-07:00,1731.0,10.832144,10832.144 +34220,2025-03-11T07:53:38.626927-07:00,1807.0,10.820913,10820.913 +34221,2025-03-11T07:53:49.462856-07:00,1795.0,10.835929,10835.929 +34222,2025-03-11T07:54:00.290120-07:00,1744.0,10.827264,10827.264 +34223,2025-03-11T07:54:11.116147-07:00,1727.0,10.826027,10826.027 +34224,2025-03-11T07:54:21.943187-07:00,1810.0,10.82704,10827.04 +34225,2025-03-11T07:54:32.782921-07:00,1809.0,10.839734,10839.734 +34226,2025-03-11T07:54:43.609582-07:00,1813.0,10.826661,10826.661 +34227,2025-03-11T07:54:54.437868-07:00,1813.0,10.828286,10828.286 +34228,2025-03-11T07:55:05.269436-07:00,1775.0,10.831568,10831.568 +34229,2025-03-11T07:55:16.094877-07:00,1792.0,10.825441,10825.441 +34230,2025-03-11T07:55:26.912844-07:00,1733.0,10.817967,10817.967 +34231,2025-03-11T07:55:37.745526-07:00,1780.0,10.832682,10832.682 +34232,2025-03-11T07:55:48.565864-07:00,1817.0,10.820338,10820.338 +34233,2025-03-11T07:55:59.386265-07:00,1744.0,10.820401,10820.401 +34234,2025-03-11T07:56:10.212883-07:00,1749.0,10.826618,10826.618 +34235,2025-03-11T07:56:21.034911-07:00,1770.0,10.822028,10822.028 +34236,2025-03-11T07:56:31.859203-07:00,1820.0,10.824292,10824.292 +34237,2025-03-11T07:56:42.686415-07:00,1803.0,10.827212,10827.212 +34238,2025-03-11T07:56:53.518934-07:00,1770.0,10.832519,10832.519 +34239,2025-03-11T07:57:04.347011-07:00,1778.0,10.828077,10828.077 +34240,2025-03-11T07:57:15.181683-07:00,1750.0,10.834672,10834.672 +34241,2025-03-11T07:57:26.008844-07:00,1819.0,10.827161,10827.161 +34242,2025-03-11T07:57:36.845369-07:00,1794.0,10.836525,10836.525 +34243,2025-03-11T07:57:47.668906-07:00,1829.0,10.823537,10823.537 +34244,2025-03-11T07:57:58.508104-07:00,1777.0,10.839198,10839.198 +34245,2025-03-11T07:58:09.340339-07:00,1829.0,10.832235,10832.235 +34246,2025-03-11T07:58:20.171107-07:00,1803.0,10.830768,10830.768 +34247,2025-03-11T07:58:31.005138-07:00,1822.0,10.834031,10834.031 +34248,2025-03-11T07:58:41.840132-07:00,1793.0,10.834994,10834.994 +34249,2025-03-11T07:58:52.675001-07:00,1809.0,10.834869,10834.869 +34250,2025-03-11T07:59:03.498871-07:00,1789.0,10.82387,10823.87 +34251,2025-03-11T07:59:14.323880-07:00,1738.0,10.825009,10825.009 +34252,2025-03-11T07:59:25.155051-07:00,1794.0,10.831171,10831.171 +34253,2025-03-11T07:59:35.987443-07:00,1755.0,10.832392,10832.392 +34254,2025-03-11T07:59:46.825641-07:00,1827.0,10.838198,10838.198 +34255,2025-03-11T07:59:57.661874-07:00,1746.0,10.836233,10836.233 +34256,2025-03-11T08:00:08.487945-07:00,1829.0,10.826071,10826.071 +34257,2025-03-11T08:00:19.325301-07:00,1825.0,10.837356,10837.356 +34258,2025-03-11T08:00:30.152924-07:00,1840.0,10.827623,10827.623 +34259,2025-03-11T08:00:40.988323-07:00,1751.0,10.835399,10835.399 +34260,2025-03-11T08:00:51.815088-07:00,1829.0,10.826765,10826.765 +34261,2025-03-11T08:01:02.649195-07:00,1790.0,10.834107,10834.107 +34262,2025-03-11T08:01:13.472877-07:00,1828.0,10.823682,10823.682 +34263,2025-03-11T08:01:24.304215-07:00,1803.0,10.831338,10831.338 +34264,2025-03-11T08:01:35.130843-07:00,1846.0,10.826628,10826.628 +34265,2025-03-11T08:01:45.963205-07:00,1835.0,10.832362,10832.362 +34266,2025-03-11T08:01:56.796867-07:00,1830.0,10.833662,10833.662 +34267,2025-03-11T08:02:07.625275-07:00,1833.0,10.828408,10828.408 +34268,2025-03-11T08:02:18.464110-07:00,1792.0,10.838835,10838.835 +34269,2025-03-11T08:02:29.293874-07:00,1843.0,10.829764,10829.764 +34270,2025-03-11T08:02:40.126918-07:00,1851.0,10.833044,10833.044 +34271,2025-03-11T08:02:50.951911-07:00,1806.0,10.824993,10824.993 +34272,2025-03-11T08:03:01.783094-07:00,1857.0,10.831183,10831.183 +34273,2025-03-11T08:03:12.622319-07:00,1843.0,10.839225,10839.225 +34274,2025-03-11T08:03:23.454170-07:00,1819.0,10.831851,10831.851 +34275,2025-03-11T08:03:34.284054-07:00,1795.0,10.829884,10829.884 +34276,2025-03-11T08:03:45.117161-07:00,1833.0,10.833107,10833.107 +34277,2025-03-11T08:03:55.939875-07:00,1870.0,10.822714,10822.714 +34278,2025-03-11T08:04:06.769409-07:00,1871.0,10.829534,10829.534 +34279,2025-03-11T08:04:17.593278-07:00,1808.0,10.823869,10823.869 +34280,2025-03-11T08:04:28.420215-07:00,1883.0,10.826937,10826.937 +34281,2025-03-11T08:04:39.258873-07:00,1813.0,10.838658,10838.658 +34282,2025-03-11T08:04:50.092853-07:00,1889.0,10.83398,10833.98 +34283,2025-03-11T08:05:00.927244-07:00,1822.0,10.834391,10834.391 +34284,2025-03-11T08:05:11.758091-07:00,1856.0,10.830847,10830.847 +34285,2025-03-11T08:05:11.758091-07:00,1856.0,0.0,0.0 +34286,2025-03-11T08:05:22.583865-07:00,1909.0,10.825774,10825.774 +34287,2025-03-11T08:05:22.583865-07:00,1909.0,0.0,0.0 +34288,2025-03-11T08:05:33.416873-07:00,1891.0,10.833008,10833.008 +34289,2025-03-11T08:05:33.416873-07:00,1891.0,0.0,0.0 +34290,2025-03-11T08:05:44.249772-07:00,1873.0,10.832899,10832.899 +34291,2025-03-11T08:05:55.074254-07:00,1918.0,10.824482,10824.482 +34292,2025-03-11T08:06:05.913365-07:00,1929.0,10.839111,10839.111 +34293,2025-03-11T08:06:16.748003-07:00,1930.0,10.834638,10834.638 +34294,2025-03-11T08:06:27.580875-07:00,1851.0,10.832872,10832.872 +34295,2025-03-11T08:06:38.412906-07:00,1907.0,10.832031,10832.031 +34296,2025-03-11T08:06:49.250945-07:00,1942.0,10.838039,10838.039 +34297,2025-03-11T08:07:00.082715-07:00,1904.0,10.83177,10831.77 +34298,2025-03-11T08:07:10.957238-07:00,1855.0,10.874523,10874.523 +34299,2025-03-11T08:07:21.796012-07:00,1948.0,10.838774,10838.774 +34300,2025-03-11T08:07:32.633528-07:00,1938.0,10.837516,10837.516 +34301,2025-03-11T08:07:43.468013-07:00,1933.0,10.834485,10834.485 +34302,2025-03-11T08:07:54.303061-07:00,1930.0,10.835048,10835.048 +34303,2025-03-11T08:08:05.142314-07:00,1962.0,10.839253,10839.253 +34304,2025-03-11T08:08:15.981212-07:00,1936.0,10.838898,10838.898 +34305,2025-03-11T08:08:26.815010-07:00,1959.0,10.833798,10833.798 +34306,2025-03-11T08:08:37.656344-07:00,1951.0,10.841334,10841.334 +34307,2025-03-11T08:08:48.487011-07:00,1886.0,10.830667,10830.667 +34308,2025-03-11T08:08:59.329826-07:00,1903.0,10.842815,10842.815 +34309,2025-03-11T08:09:10.163788-07:00,1975.0,10.833962,10833.962 +34310,2025-03-11T08:09:20.999994-07:00,1894.0,10.836206,10836.206 +34311,2025-03-11T08:09:31.828374-07:00,1904.0,10.82838,10828.38 +34312,2025-03-11T08:09:42.659226-07:00,1941.0,10.830852,10830.852 +34313,2025-03-11T08:09:53.488441-07:00,1914.0,10.829215,10829.215 +34314,2025-03-11T08:10:04.322013-07:00,1988.0,10.833572,10833.572 +34315,2025-03-11T08:10:15.155013-07:00,2000.0,10.833,10833.0 +34316,2025-03-11T08:10:25.985051-07:00,1968.0,10.830038,10830.038 +34317,2025-03-11T08:10:36.819259-07:00,2015.0,10.834208,10834.208 +34318,2025-03-11T08:10:47.642003-07:00,2022.0,10.822744,10822.744 +34319,2025-03-11T08:10:58.476017-07:00,2023.0,10.834014,10834.014 +34320,2025-03-11T08:11:09.302185-07:00,1983.0,10.826168,10826.168 +34321,2025-03-11T08:11:20.132343-07:00,2030.0,10.830158,10830.158 +34322,2025-03-11T08:11:30.975969-07:00,1985.0,10.843626,10843.626 +34323,2025-03-11T08:11:41.804007-07:00,2032.0,10.828038,10828.038 +34324,2025-03-11T08:11:52.639060-07:00,2020.0,10.835053,10835.053 +34325,2025-03-11T08:12:03.478105-07:00,1983.0,10.839045,10839.045 +34326,2025-03-11T08:12:14.320007-07:00,1999.0,10.841902,10841.902 +34327,2025-03-11T08:12:25.147334-07:00,2079.0,10.827327,10827.327 +34328,2025-03-11T08:12:35.988360-07:00,2045.0,10.841026,10841.026 +34329,2025-03-11T08:12:46.816157-07:00,2032.0,10.827797,10827.797 +34330,2025-03-11T08:12:57.663011-07:00,2047.0,10.846854,10846.854 +34331,2025-03-11T08:13:08.495230-07:00,2038.0,10.832219,10832.219 +34332,2025-03-11T08:13:19.331239-07:00,2064.0,10.836009,10836.009 +34333,2025-03-11T08:13:30.166740-07:00,2047.0,10.835501,10835.501 +34334,2025-03-11T08:13:40.997009-07:00,2097.0,10.830269,10830.269 +34335,2025-03-11T08:13:51.822338-07:00,2116.0,10.825329,10825.329 +34336,2025-03-11T08:14:02.659015-07:00,2132.0,10.836677,10836.677 +34337,2025-03-11T08:14:13.494400-07:00,2150.0,10.835385,10835.385 +34338,2025-03-11T08:14:24.321223-07:00,2154.0,10.826823,10826.823 +34339,2025-03-11T08:14:35.155990-07:00,2174.0,10.834767,10834.767 +34340,2025-03-11T08:14:45.998027-07:00,2177.0,10.842037,10842.037 +34341,2025-03-11T08:14:56.834708-07:00,2113.0,10.836681,10836.681 +34342,2025-03-11T08:15:07.662343-07:00,2182.0,10.827635,10827.635 +34343,2025-03-11T08:15:18.498733-07:00,2204.0,10.83639,10836.39 +34344,2025-03-11T08:15:29.340023-07:00,2214.0,10.84129,10841.29 +34345,2025-03-11T08:15:40.171622-07:00,2192.0,10.831599,10831.599 +34346,2025-03-11T08:15:51.006049-07:00,2199.0,10.834427,10834.427 +34347,2025-03-11T08:16:01.833057-07:00,2223.0,10.827008,10827.008 +34348,2025-03-11T08:16:12.668514-07:00,2210.0,10.835457,10835.457 +34349,2025-03-11T08:16:23.502664-07:00,2254.0,10.83415,10834.15 +34350,2025-03-11T08:16:34.328405-07:00,2235.0,10.825741,10825.741 +34351,2025-03-11T08:16:45.164009-07:00,2293.0,10.835604,10835.604 +34352,2025-03-11T08:16:55.995386-07:00,2290.0,10.831377,10831.377 +34353,2025-03-11T08:17:06.835061-07:00,2293.0,10.839675,10839.675 +34354,2025-03-11T08:17:17.665012-07:00,2309.0,10.829951,10829.951 +34355,2025-03-11T08:17:28.501306-07:00,2336.0,10.836294,10836.294 +34356,2025-03-11T08:17:39.334204-07:00,2367.0,10.832898,10832.898 +34357,2025-03-11T08:17:50.165600-07:00,2381.0,10.831396,10831.396 +34358,2025-03-11T08:18:00.992261-07:00,2345.0,10.826661,10826.661 +34359,2025-03-11T08:18:11.828066-07:00,2338.0,10.835805,10835.805 +34360,2025-03-11T08:18:22.659271-07:00,2407.0,10.831205,10831.205 +34361,2025-03-11T08:18:33.492022-07:00,2389.0,10.832751,10832.751 +34362,2025-03-11T08:18:44.329994-07:00,2400.0,10.837972,10837.972 +34363,2025-03-11T08:18:55.161012-07:00,2441.0,10.831018,10831.018 +34364,2025-03-11T08:19:05.989317-07:00,2423.0,10.828305,10828.305 +34365,2025-03-11T08:19:16.825061-07:00,2367.0,10.835744,10835.744 +34366,2025-03-11T08:19:27.657537-07:00,2402.0,10.832476,10832.476 +34367,2025-03-11T08:19:38.485137-07:00,2411.0,10.8276,10827.6 +34368,2025-03-11T08:19:49.304323-07:00,2414.0,10.819186,10819.186 +34369,2025-03-11T08:20:00.131261-07:00,2373.0,10.826938,10826.938 +34370,2025-03-11T08:20:10.966610-07:00,2384.0,10.835349,10835.349 +34371,2025-03-11T08:20:21.793995-07:00,2410.0,10.827385,10827.385 +34372,2025-03-11T08:20:32.630017-07:00,2384.0,10.836022,10836.022 +34373,2025-03-11T08:20:43.468453-07:00,2397.0,10.838436,10838.436 +34374,2025-03-11T08:20:54.305192-07:00,2335.0,10.836739,10836.739 +34375,2025-03-11T08:21:05.135595-07:00,2356.0,10.830403,10830.403 +34376,2025-03-11T08:21:15.968070-07:00,2320.0,10.832475,10832.475 +34377,2025-03-11T08:21:26.798015-07:00,2329.0,10.829945,10829.945 +34378,2025-03-11T08:21:37.630190-07:00,2336.0,10.832175,10832.175 +34379,2025-03-11T08:21:48.456356-07:00,2339.0,10.826166,10826.166 +34380,2025-03-11T08:21:59.290230-07:00,2305.0,10.833874,10833.874 +34381,2025-03-11T08:22:10.132669-07:00,2307.0,10.842439,10842.439 +34382,2025-03-11T08:22:20.957105-07:00,2342.0,10.824436,10824.436 +34383,2025-03-11T08:22:31.789017-07:00,2287.0,10.831912,10831.912 +34384,2025-03-11T08:22:42.622668-07:00,2311.0,10.833651,10833.651 +34385,2025-03-11T08:22:53.452352-07:00,2333.0,10.829684,10829.684 +34386,2025-03-11T08:23:04.285018-07:00,2299.0,10.832666,10832.666 +34387,2025-03-11T08:23:15.113055-07:00,2317.0,10.828037,10828.037 +34388,2025-03-11T08:23:25.937331-07:00,2320.0,10.824276,10824.276 +34389,2025-03-11T08:23:36.775144-07:00,2259.0,10.837813,10837.813 +34390,2025-03-11T08:23:47.600017-07:00,2329.0,10.824873,10824.873 +34391,2025-03-11T08:23:58.439493-07:00,2349.0,10.839476,10839.476 +34392,2025-03-11T08:24:09.274114-07:00,2359.0,10.834621,10834.621 +34393,2025-03-11T08:24:20.107365-07:00,2375.0,10.833251,10833.251 +34394,2025-03-11T08:24:30.943015-07:00,2369.0,10.83565,10835.65 +34395,2025-03-11T08:24:41.779016-07:00,2337.0,10.836001,10836.001 +34396,2025-03-11T08:24:52.613778-07:00,2415.0,10.834762,10834.762 +34397,2025-03-11T08:25:03.443080-07:00,2403.0,10.829302,10829.302 +34398,2025-03-11T08:25:14.277599-07:00,2419.0,10.834519,10834.519 +34399,2025-03-11T08:25:25.109046-07:00,2448.0,10.831447,10831.447 +34400,2025-03-11T08:25:35.940012-07:00,2442.0,10.830966,10830.966 +34401,2025-03-11T08:25:46.764099-07:00,2469.0,10.824087,10824.087 +34402,2025-03-11T08:25:57.603996-07:00,2502.0,10.839897,10839.897 +34403,2025-03-11T08:26:08.435392-07:00,2495.0,10.831396,10831.396 +34404,2025-03-11T08:26:19.265995-07:00,2501.0,10.830603,10830.603 +34405,2025-03-11T08:26:30.097398-07:00,2546.0,10.831403,10831.403 +34406,2025-03-11T08:26:40.942175-07:00,2545.0,10.844777,10844.777 +34407,2025-03-11T08:26:51.770994-07:00,2514.0,10.828819,10828.819 +34408,2025-03-11T08:27:02.607045-07:00,2553.0,10.836051,10836.051 +34409,2025-03-11T08:27:13.438165-07:00,2587.0,10.83112,10831.12 +34410,2025-03-11T08:27:24.269329-07:00,2589.0,10.831164,10831.164 +34411,2025-03-11T08:27:35.094068-07:00,2559.0,10.824739,10824.739 +34412,2025-03-11T08:27:45.932367-07:00,2610.0,10.838299,10838.299 +34413,2025-03-11T08:27:56.753016-07:00,2559.0,10.820649,10820.649 +34414,2025-03-11T08:28:07.583577-07:00,2553.0,10.830561,10830.561 +34415,2025-03-11T08:28:18.420007-07:00,2592.0,10.83643,10836.43 +34416,2025-03-11T08:28:29.253348-07:00,2559.0,10.833341,10833.341 +34417,2025-03-11T08:28:40.085012-07:00,2559.0,10.831664,10831.664 +34418,2025-03-11T08:28:50.909713-07:00,2559.0,10.824701,10824.701 +34419,2025-03-11T08:29:01.741421-07:00,2550.0,10.831708,10831.708 +34420,2025-03-11T08:29:12.574012-07:00,2531.0,10.832591,10832.591 +34421,2025-03-11T08:29:23.406388-07:00,2512.0,10.832376,10832.376 +34422,2025-03-11T08:29:34.244014-07:00,2544.0,10.837626,10837.626 +34423,2025-03-11T08:29:45.080267-07:00,2539.0,10.836253,10836.253 +34424,2025-03-11T08:29:55.910293-07:00,2500.0,10.830026,10830.026 +34425,2025-03-11T08:30:06.751019-07:00,2529.0,10.840726,10840.726 +34426,2025-03-11T08:30:17.582321-07:00,2482.0,10.831302,10831.302 +34427,2025-03-11T08:30:28.422005-07:00,2512.0,10.839684,10839.684 +34428,2025-03-11T08:30:39.248305-07:00,2496.0,10.8263,10826.3 +34429,2025-03-11T08:30:50.082039-07:00,2519.0,10.833734,10833.734 +34430,2025-03-11T08:31:00.915047-07:00,2528.0,10.833008,10833.008 +34431,2025-03-11T08:31:11.758339-07:00,2480.0,10.843292,10843.292 +34432,2025-03-11T08:31:22.588167-07:00,2544.0,10.829828,10829.828 +34433,2025-03-11T08:31:33.416070-07:00,2544.0,10.827903,10827.903 +34434,2025-03-11T08:31:44.252576-07:00,2498.0,10.836506,10836.506 +34435,2025-03-11T08:31:55.082075-07:00,2551.0,10.829499,10829.499 +34436,2025-03-11T08:32:05.910013-07:00,2499.0,10.827938,10827.938 +34437,2025-03-11T08:32:16.747017-07:00,2580.0,10.837004,10837.004 +34438,2025-03-11T08:32:27.578279-07:00,2597.0,10.831262,10831.262 +34439,2025-03-11T08:32:38.413011-07:00,2559.0,10.834732,10834.732 +34440,2025-03-11T08:32:49.255136-07:00,2603.0,10.842125,10842.125 +34441,2025-03-11T08:33:00.086063-07:00,2513.0,10.830927,10830.927 +34442,2025-03-11T08:33:10.924224-07:00,2559.0,10.838161,10838.161 +34443,2025-03-11T08:33:21.748544-07:00,2591.0,10.82432,10824.32 +34444,2025-03-11T08:33:32.581261-07:00,2555.0,10.832717,10832.717 +34445,2025-03-11T08:33:43.413131-07:00,2557.0,10.83187,10831.87 +34446,2025-03-11T08:33:54.232013-07:00,2559.0,10.818882,10818.882 +34447,2025-03-11T08:34:05.064478-07:00,2580.0,10.832465,10832.465 +34448,2025-03-11T08:34:15.896066-07:00,2499.0,10.831588,10831.588 +34449,2025-03-11T08:34:26.727808-07:00,2546.0,10.831742,10831.742 +34450,2025-03-11T08:34:37.571529-07:00,2544.0,10.843721,10843.721 +34451,2025-03-11T08:34:48.398066-07:00,2544.0,10.826537,10826.537 +34452,2025-03-11T08:34:59.233555-07:00,2511.0,10.835489,10835.489 +34453,2025-03-11T08:35:10.060016-07:00,2509.0,10.826461,10826.461 +34454,2025-03-11T08:35:20.889537-07:00,2506.0,10.829521,10829.521 +34455,2025-03-11T08:35:31.710520-07:00,2544.0,10.820983,10820.983 +34456,2025-03-11T08:35:42.540317-07:00,2553.0,10.829797,10829.797 +34457,2025-03-11T08:35:53.372012-07:00,2559.0,10.831695,10831.695 +34458,2025-03-11T08:36:04.213005-07:00,2467.0,10.840993,10840.993 +34459,2025-03-11T08:36:15.038013-07:00,2503.0,10.825008,10825.008 +34460,2025-03-11T08:36:25.868594-07:00,2559.0,10.830581,10830.581 +34461,2025-03-11T08:36:36.698382-07:00,2581.0,10.829788,10829.788 +34462,2025-03-11T08:36:47.529354-07:00,2595.0,10.830972,10830.972 +34463,2025-03-11T08:36:58.359062-07:00,2607.0,10.829708,10829.708 +34464,2025-03-11T08:37:09.191624-07:00,2607.0,10.832562,10832.562 +34465,2025-03-11T08:37:20.025730-07:00,2553.0,10.834106,10834.106 +34466,2025-03-11T08:37:30.856434-07:00,2612.0,10.830704,10830.704 +34467,2025-03-11T08:37:41.687858-07:00,2624.0,10.831424,10831.424 +34468,2025-03-11T08:37:52.520229-07:00,2643.0,10.832371,10832.371 +34469,2025-03-11T08:38:03.353416-07:00,2655.0,10.833187,10833.187 +34470,2025-03-11T08:38:14.184688-07:00,2692.0,10.831272,10831.272 +34471,2025-03-11T08:38:25.015611-07:00,2721.0,10.830923,10830.923 +34472,2025-03-11T08:38:35.845013-07:00,2737.0,10.829402,10829.402 +34473,2025-03-11T08:38:46.676037-07:00,2688.0,10.831024,10831.024 +34474,2025-03-11T08:38:57.511066-07:00,2768.0,10.835029,10835.029 +34475,2025-03-11T08:39:08.345358-07:00,2765.0,10.834292,10834.292 +34476,2025-03-11T08:39:08.728537-07:00,2765.0,0.383179,383.179 +34477,2025-03-11T08:39:19.166159-07:00,2778.0,10.437622,10437.622 +34478,2025-03-11T08:39:29.993544-07:00,2809.0,10.827385,10827.385 +34479,2025-03-11T08:39:40.833293-07:00,2832.0,10.839749,10839.749 +34480,2025-03-11T08:39:51.655243-07:00,2819.0,10.82195,10821.95 +34481,2025-03-11T08:40:02.488985-07:00,2849.0,10.833742,10833.742 +34482,2025-03-11T08:40:13.310194-07:00,2864.0,10.821209,10821.209 +34483,2025-03-11T08:40:24.148298-07:00,2878.0,10.838104,10838.104 +34484,2025-03-11T08:40:34.984045-07:00,2832.0,10.835747,10835.747 +34485,2025-03-11T08:40:45.817003-07:00,2834.0,10.832958,10832.958 +34486,2025-03-11T08:40:56.645013-07:00,2857.0,10.82801,10828.01 +34487,2025-03-11T08:41:07.479633-07:00,2838.0,10.83462,10834.62 +34488,2025-03-11T08:41:18.320760-07:00,2859.0,10.841127,10841.127 +34489,2025-03-11T08:41:29.148138-07:00,2881.0,10.827378,10827.378 +34490,2025-03-11T08:41:39.975479-07:00,2869.0,10.827341,10827.341 +34491,2025-03-11T08:41:50.817011-07:00,2887.0,10.841532,10841.532 +34492,2025-03-11T08:42:01.638358-07:00,2881.0,10.821347,10821.347 +34493,2025-03-11T08:42:12.471253-07:00,2907.0,10.832895,10832.895 +34494,2025-03-11T08:42:23.302087-07:00,2928.0,10.830834,10830.834 +34495,2025-03-11T08:42:34.133148-07:00,2926.0,10.831061,10831.061 +34496,2025-03-11T08:42:44.964505-07:00,2914.0,10.831357,10831.357 +34497,2025-03-11T08:42:55.796060-07:00,2938.0,10.831555,10831.555 +34498,2025-03-11T08:43:06.617971-07:00,2900.0,10.821911,10821.911 +34499,2025-03-11T08:43:17.450254-07:00,2927.0,10.832283,10832.283 +34500,2025-03-11T08:43:28.289066-07:00,2955.0,10.838812,10838.812 +34501,2025-03-11T08:43:39.112120-07:00,2960.0,10.823054,10823.054 +34502,2025-03-11T08:43:49.942001-07:00,2960.0,10.829881,10829.881 +34503,2025-03-11T08:44:00.774942-07:00,2983.0,10.832941,10832.941 +34504,2025-03-11T08:44:11.607270-07:00,2991.0,10.832328,10832.328 +34505,2025-03-11T08:44:22.446003-07:00,2973.0,10.838733,10838.733 +34506,2025-03-11T08:44:33.272014-07:00,3007.0,10.826011,10826.011 +34507,2025-03-11T08:44:44.105321-07:00,2976.0,10.833307,10833.307 +34508,2025-03-11T08:44:54.944169-07:00,3015.0,10.838848,10838.848 +34509,2025-03-11T08:45:05.776364-07:00,2992.0,10.832195,10832.195 +34510,2025-03-11T08:45:16.600627-07:00,2992.0,10.824263,10824.263 +34511,2025-03-11T08:45:27.435049-07:00,3017.0,10.834422,10834.422 +34512,2025-03-11T08:45:38.261466-07:00,2957.0,10.826417,10826.417 +34513,2025-03-11T08:45:49.093017-07:00,3025.0,10.831551,10831.551 +34514,2025-03-11T08:45:59.923317-07:00,2987.0,10.8303,10830.3 +34515,2025-03-11T08:46:10.760270-07:00,2974.0,10.836953,10836.953 +34516,2025-03-11T08:46:21.585561-07:00,2998.0,10.825291,10825.291 +34517,2025-03-11T08:46:32.409009-07:00,3018.0,10.823448,10823.448 +34518,2025-03-11T08:46:43.239281-07:00,3007.0,10.830272,10830.272 +34519,2025-03-11T08:46:54.072000-07:00,2981.0,10.832719,10832.719 +34520,2025-03-11T08:47:04.902002-07:00,3014.0,10.830002,10830.002 +34521,2025-03-11T08:47:15.727016-07:00,2957.0,10.825014,10825.014 +34522,2025-03-11T08:47:26.559424-07:00,2993.0,10.832408,10832.408 +34523,2025-03-11T08:47:37.389014-07:00,2978.0,10.82959,10829.59 +34524,2025-03-11T08:47:48.221815-07:00,2963.0,10.832801,10832.801 +34525,2025-03-11T08:47:59.048250-07:00,2985.0,10.826435,10826.435 +34526,2025-03-11T08:48:09.882206-07:00,2960.0,10.833956,10833.956 +34527,2025-03-11T08:48:20.706267-07:00,2979.0,10.824061,10824.061 +34528,2025-03-11T08:48:31.535947-07:00,2970.0,10.82968,10829.68 +34529,2025-03-11T08:48:42.372124-07:00,2987.0,10.836177,10836.177 +34530,2025-03-11T08:48:53.192068-07:00,3005.0,10.819944,10819.944 +34531,2025-03-11T08:49:04.030055-07:00,2975.0,10.837987,10837.987 +34532,2025-03-11T08:49:14.849059-07:00,2992.0,10.819004,10819.004 +34533,2025-03-11T08:49:25.692066-07:00,2998.0,10.843007,10843.007 +34534,2025-03-11T08:49:36.515816-07:00,3025.0,10.82375,10823.75 +34535,2025-03-11T08:49:47.345314-07:00,3027.0,10.829498,10829.498 +34536,2025-03-11T08:49:58.178111-07:00,3029.0,10.832797,10832.797 +34537,2025-03-11T08:50:09.008552-07:00,3044.0,10.830441,10830.441 +34538,2025-03-11T08:50:19.837995-07:00,3070.0,10.829443,10829.443 +34539,2025-03-11T08:50:30.678202-07:00,3056.0,10.840207,10840.207 +34540,2025-03-11T08:50:41.503254-07:00,3050.0,10.825052,10825.052 +34541,2025-03-11T08:50:52.336046-07:00,3062.0,10.832792,10832.792 +34542,2025-03-11T08:51:03.164989-07:00,3120.0,10.828943,10828.943 +34543,2025-03-11T08:51:13.986348-07:00,3123.0,10.821359,10821.359 +34544,2025-03-11T08:51:24.812285-07:00,3105.0,10.825937,10825.937 +34545,2025-03-11T08:51:35.648288-07:00,3125.0,10.836003,10836.003 +34546,2025-03-11T08:51:46.484007-07:00,3161.0,10.835719,10835.719 +34547,2025-03-11T08:51:57.315007-07:00,3175.0,10.831,10831.0 +34548,2025-03-11T08:52:08.147060-07:00,3147.0,10.832053,10832.053 +34549,2025-03-11T08:52:18.981242-07:00,3200.0,10.834182,10834.182 +34550,2025-03-11T08:52:29.806434-07:00,3215.0,10.825192,10825.192 +34551,2025-03-11T08:52:40.633016-07:00,3189.0,10.826582,10826.582 +34552,2025-03-11T08:52:51.461048-07:00,3207.0,10.828032,10828.032 +34553,2025-03-11T08:53:02.295999-07:00,3239.0,10.834951,10834.951 +34554,2025-03-11T08:53:13.118302-07:00,3243.0,10.822303,10822.303 +34555,2025-03-11T08:53:23.947344-07:00,3255.0,10.829042,10829.042 +34556,2025-03-11T08:53:34.786600-07:00,3253.0,10.839256,10839.256 +34557,2025-03-11T08:53:45.624226-07:00,3237.0,10.837626,10837.626 +34558,2025-03-11T08:53:56.454850-07:00,3278.0,10.830624,10830.624 +34559,2025-03-11T08:54:07.285016-07:00,3217.0,10.830166,10830.166 +34560,2025-03-11T08:54:18.123344-07:00,3239.0,10.838328,10838.328 +34561,2025-03-11T08:54:28.953409-07:00,3278.0,10.830065,10830.065 +34562,2025-03-11T08:54:39.788009-07:00,3262.0,10.8346,10834.6 +34563,2025-03-11T08:54:50.617604-07:00,3261.0,10.829595,10829.595 +34564,2025-03-11T08:55:01.442147-07:00,3264.0,10.824543,10824.543 +34565,2025-03-11T08:55:12.273607-07:00,3303.0,10.83146,10831.46 +34566,2025-03-11T08:55:23.108288-07:00,3295.0,10.834681,10834.681 +34567,2025-03-11T08:55:33.939599-07:00,3312.0,10.831311,10831.311 +34568,2025-03-11T08:55:44.767068-07:00,3317.0,10.827469,10827.469 +34569,2025-03-11T08:55:55.597149-07:00,3312.0,10.830081,10830.081 +34570,2025-03-11T08:56:06.437423-07:00,3324.0,10.840274,10840.274 +34571,2025-03-11T08:56:17.262377-07:00,3325.0,10.824954,10824.954 +34572,2025-03-11T08:56:28.094720-07:00,3330.0,10.832343,10832.343 +34573,2025-03-11T08:56:38.921017-07:00,3330.0,10.826297,10826.297 +34574,2025-03-11T08:56:49.745951-07:00,3280.0,10.824934,10824.934 +34575,2025-03-11T08:57:00.582258-07:00,3295.0,10.836307,10836.307 +34576,2025-03-11T08:57:11.415282-07:00,3305.0,10.833024,10833.024 +34577,2025-03-11T08:57:22.250991-07:00,3278.0,10.835709,10835.709 +34578,2025-03-11T08:57:33.072336-07:00,3330.0,10.821345,10821.345 +34579,2025-03-11T08:57:43.907266-07:00,3344.0,10.83493,10834.93 +34580,2025-03-11T08:57:54.737050-07:00,3344.0,10.829784,10829.784 +34581,2025-03-11T08:58:05.560065-07:00,3346.0,10.823015,10823.015 +34582,2025-03-11T08:58:16.387600-07:00,3298.0,10.827535,10827.535 +34583,2025-03-11T08:58:27.209571-07:00,3341.0,10.821971,10821.971 +34584,2025-03-11T08:58:38.038969-07:00,3331.0,10.829398,10829.398 +34585,2025-03-11T08:58:48.866019-07:00,3310.0,10.82705,10827.05 +34586,2025-03-11T08:58:59.694155-07:00,3310.0,10.828136,10828.136 +34587,2025-03-11T08:59:10.514012-07:00,3339.0,10.819857,10819.857 +34588,2025-03-11T08:59:21.350992-07:00,3349.0,10.83698,10836.98 +34589,2025-03-11T08:59:32.176206-07:00,3292.0,10.825214,10825.214 +34590,2025-03-11T08:59:43.001018-07:00,3291.0,10.824812,10824.812 +34591,2025-03-11T08:59:53.829256-07:00,3350.0,10.828238,10828.238 +34592,2025-03-11T09:00:04.662130-07:00,3359.0,10.832874,10832.874 +34593,2025-03-11T09:00:15.495007-07:00,3339.0,10.832877,10832.877 +34594,2025-03-11T09:00:26.318226-07:00,3359.0,10.823219,10823.219 +34595,2025-03-11T09:00:37.155413-07:00,3361.0,10.837187,10837.187 +34596,2025-03-11T09:00:47.986968-07:00,3361.0,10.831555,10831.555 +34597,2025-03-11T09:00:58.820161-07:00,3359.0,10.833193,10833.193 +34598,2025-03-11T09:01:09.651463-07:00,3309.0,10.831302,10831.302 +34599,2025-03-11T09:01:20.488691-07:00,3335.0,10.837228,10837.228 +34600,2025-03-11T09:01:31.317007-07:00,3313.0,10.828316,10828.316 +34601,2025-03-11T09:01:42.151056-07:00,3360.0,10.834049,10834.049 +34602,2025-03-11T09:01:52.983016-07:00,3375.0,10.83196,10831.96 +34603,2025-03-11T09:02:03.816633-07:00,3371.0,10.833617,10833.617 +34604,2025-03-11T09:02:14.659161-07:00,3345.0,10.842528,10842.528 +34605,2025-03-11T09:02:25.490368-07:00,3364.0,10.831207,10831.207 +34606,2025-03-11T09:02:36.326570-07:00,3351.0,10.836202,10836.202 +34607,2025-03-11T09:02:47.158899-07:00,3376.0,10.832329,10832.329 +34608,2025-03-11T09:02:57.998011-07:00,3334.0,10.839112,10839.112 +34609,2025-03-11T09:03:08.829257-07:00,3355.0,10.831246,10831.246 +34610,2025-03-11T09:03:19.653344-07:00,3329.0,10.824087,10824.087 +34611,2025-03-11T09:03:30.492266-07:00,3326.0,10.838922,10838.922 +34612,2025-03-11T09:03:41.327761-07:00,3376.0,10.835495,10835.495 +34613,2025-03-11T09:03:52.161273-07:00,3369.0,10.833512,10833.512 +34614,2025-03-11T09:04:02.990017-07:00,3385.0,10.828744,10828.744 +34615,2025-03-11T09:04:13.819450-07:00,3374.0,10.829433,10829.433 +34616,2025-03-11T09:04:24.655058-07:00,3374.0,10.835608,10835.608 +34617,2025-03-11T09:04:35.483049-07:00,3382.0,10.827991,10827.991 +34618,2025-03-11T09:04:46.319048-07:00,3386.0,10.835999,10835.999 +34619,2025-03-11T09:04:57.145049-07:00,3370.0,10.826001,10826.001 +34620,2025-03-11T09:05:07.983083-07:00,3351.0,10.838034,10838.034 +34621,2025-03-11T09:05:18.808273-07:00,3395.0,10.82519,10825.19 +34622,2025-03-11T09:05:29.634244-07:00,3358.0,10.825971,10825.971 +34623,2025-03-11T09:05:40.469109-07:00,3376.0,10.834865,10834.865 +34624,2025-03-11T09:05:51.296965-07:00,3398.0,10.827856,10827.856 +34625,2025-03-11T09:06:02.126012-07:00,3344.0,10.829047,10829.047 +34626,2025-03-11T09:06:12.950084-07:00,3391.0,10.824072,10824.072 +34627,2025-03-11T09:06:23.789406-07:00,3403.0,10.839322,10839.322 +34628,2025-03-11T09:06:34.611388-07:00,3376.0,10.821982,10821.982 +34629,2025-03-11T09:06:45.446060-07:00,3366.0,10.834672,10834.672 +34630,2025-03-11T09:06:56.273358-07:00,3405.0,10.827298,10827.298 +34631,2025-03-11T09:07:07.119723-07:00,3395.0,10.846365,10846.365 +34632,2025-03-11T09:07:17.951973-07:00,3386.0,10.83225,10832.25 +34633,2025-03-11T09:07:28.778943-07:00,3351.0,10.82697,10826.97 +34634,2025-03-11T09:07:39.609869-07:00,3371.0,10.830926,10830.926 +34635,2025-03-11T09:07:50.439700-07:00,3405.0,10.829831,10829.831 +34636,2025-03-11T09:08:01.277722-07:00,3378.0,10.838022,10838.022 +34637,2025-03-11T09:08:12.097725-07:00,3401.0,10.820003,10820.003 +34638,2025-03-11T09:08:22.931504-07:00,3401.0,10.833779,10833.779 +34639,2025-03-11T09:08:33.755777-07:00,3391.0,10.824273,10824.273 +34640,2025-03-11T09:08:44.583122-07:00,3379.0,10.827345,10827.345 +34641,2025-03-11T09:08:55.410986-07:00,3364.0,10.827864,10827.864 +34642,2025-03-11T09:09:06.229116-07:00,3361.0,10.81813,10818.13 +34643,2025-03-11T09:09:17.054232-07:00,3381.0,10.825116,10825.116 +34644,2025-03-11T09:09:27.885544-07:00,3391.0,10.831312,10831.312 +34645,2025-03-11T09:09:38.712702-07:00,3389.0,10.827158,10827.158 +34646,2025-03-11T09:09:49.544944-07:00,3397.0,10.832242,10832.242 +34647,2025-03-11T09:10:00.372823-07:00,3358.0,10.827879,10827.879 +34648,2025-03-11T09:10:11.201671-07:00,3400.0,10.828848,10828.848 +34649,2025-03-11T09:10:22.026701-07:00,3344.0,10.82503,10825.03 +34650,2025-03-11T09:10:32.857182-07:00,3376.0,10.830481,10830.481 +34651,2025-03-11T09:10:43.691068-07:00,3376.0,10.833886,10833.886 +34652,2025-03-11T09:10:54.523074-07:00,3389.0,10.832006,10832.006 +34653,2025-03-11T09:11:05.351817-07:00,3389.0,10.828743,10828.743 +34654,2025-03-11T09:11:16.181309-07:00,3326.0,10.829492,10829.492 +34655,2025-03-11T09:11:27.001724-07:00,3371.0,10.820415,10820.415 +34656,2025-03-11T09:11:37.843084-07:00,3358.0,10.84136,10841.36 +34657,2025-03-11T09:11:48.662723-07:00,3380.0,10.819639,10819.639 +34658,2025-03-11T09:11:59.495301-07:00,3357.0,10.832578,10832.578 +34659,2025-03-11T09:12:10.327708-07:00,3318.0,10.832407,10832.407 +34660,2025-03-11T09:12:21.155378-07:00,3309.0,10.82767,10827.67 +34661,2025-03-11T09:12:31.980785-07:00,3360.0,10.825407,10825.407 +34662,2025-03-11T09:12:42.812010-07:00,3301.0,10.831225,10831.225 +34663,2025-03-11T09:12:53.645792-07:00,3343.0,10.833782,10833.782 +34664,2025-03-11T09:13:04.474126-07:00,3344.0,10.828334,10828.334 +34665,2025-03-11T09:13:15.298950-07:00,3348.0,10.824824,10824.824 +34666,2025-03-11T09:13:26.122333-07:00,3325.0,10.823383,10823.383 +34667,2025-03-11T09:13:36.946917-07:00,3339.0,10.824584,10824.584 +34668,2025-03-11T09:13:47.774720-07:00,3337.0,10.827803,10827.803 +34669,2025-03-11T09:13:58.606724-07:00,3316.0,10.832004,10832.004 +34670,2025-03-11T09:14:09.434093-07:00,3296.0,10.827369,10827.369 +34671,2025-03-11T09:14:20.259852-07:00,3312.0,10.825759,10825.759 +34672,2025-03-11T09:14:31.083723-07:00,3245.0,10.823871,10823.871 +34673,2025-03-11T09:14:41.921947-07:00,3299.0,10.838224,10838.224 +34674,2025-03-11T09:14:52.745815-07:00,3284.0,10.823868,10823.868 +34675,2025-03-11T09:15:03.573949-07:00,3231.0,10.828134,10828.134 +34676,2025-03-11T09:15:14.398766-07:00,3250.0,10.824817,10824.817 +34677,2025-03-11T09:15:25.228723-07:00,3231.0,10.829957,10829.957 +34678,2025-03-11T09:15:36.055722-07:00,3247.0,10.826999,10826.999 +34679,2025-03-11T09:15:46.883055-07:00,3199.0,10.827333,10827.333 +34680,2025-03-11T09:15:57.710716-07:00,3181.0,10.827661,10827.661 +34681,2025-03-11T09:16:08.537268-07:00,3199.0,10.826552,10826.552 +34682,2025-03-11T09:16:19.366720-07:00,3189.0,10.829452,10829.452 +34683,2025-03-11T09:16:30.191861-07:00,3142.0,10.825141,10825.141 +34684,2025-03-11T09:16:41.014719-07:00,3152.0,10.822858,10822.858 +34685,2025-03-11T09:16:51.837991-07:00,3159.0,10.823272,10823.272 +34686,2025-03-11T09:17:02.662063-07:00,3091.0,10.824072,10824.072 +34687,2025-03-11T09:17:13.489714-07:00,3142.0,10.827651,10827.651 +34688,2025-03-11T09:17:24.320978-07:00,3135.0,10.831264,10831.264 +34689,2025-03-11T09:17:35.141753-07:00,3113.0,10.820775,10820.775 +34690,2025-03-11T09:17:45.956719-07:00,3117.0,10.814966,10814.966 +34691,2025-03-11T09:17:56.781880-07:00,3088.0,10.825161,10825.161 +34692,2025-03-11T09:18:07.609093-07:00,3093.0,10.827213,10827.213 +34693,2025-03-11T09:18:18.431179-07:00,3070.0,10.822086,10822.086 +34694,2025-03-11T09:18:29.251726-07:00,3063.0,10.820547,10820.547 +34695,2025-03-11T09:18:40.088085-07:00,3084.0,10.836359,10836.359 +34696,2025-03-11T09:18:50.907772-07:00,3047.0,10.819687,10819.687 +34697,2025-03-11T09:19:01.727721-07:00,3056.0,10.819949,10819.949 +34698,2025-03-11T09:19:12.555719-07:00,3055.0,10.827998,10827.998 +34699,2025-03-11T09:19:23.379721-07:00,3047.0,10.824002,10824.002 +34700,2025-03-11T09:19:34.212972-07:00,3041.0,10.833251,10833.251 +34701,2025-03-11T09:19:45.048724-07:00,2979.0,10.835752,10835.752 +34702,2025-03-11T09:19:55.874482-07:00,3025.0,10.825758,10825.758 +34703,2025-03-11T09:20:06.708059-07:00,3024.0,10.833577,10833.577 +34704,2025-03-11T09:20:17.526433-07:00,2963.0,10.818374,10818.374 +34705,2025-03-11T09:20:28.355032-07:00,3015.0,10.828599,10828.599 +34706,2025-03-11T09:20:39.186724-07:00,2992.0,10.831692,10831.692 +34707,2025-03-11T09:20:50.006699-07:00,2992.0,10.819975,10819.975 +34708,2025-03-11T09:21:00.831572-07:00,3002.0,10.824873,10824.873 +34709,2025-03-11T09:21:11.663849-07:00,2981.0,10.832277,10832.277 +34710,2025-03-11T09:21:22.496063-07:00,2979.0,10.832214,10832.214 +34711,2025-03-11T09:21:33.320718-07:00,3007.0,10.824655,10824.655 +34712,2025-03-11T09:21:44.140777-07:00,2971.0,10.820059,10820.059 +34713,2025-03-11T09:21:54.967116-07:00,3001.0,10.826339,10826.339 +34714,2025-03-11T09:22:05.780724-07:00,2992.0,10.813608,10813.608 +34715,2025-03-11T09:22:16.607388-07:00,2973.0,10.826664,10826.664 +34716,2025-03-11T09:22:27.439762-07:00,3030.0,10.832374,10832.374 +34717,2025-03-11T09:22:38.258883-07:00,2999.0,10.819121,10819.121 +34718,2025-03-11T09:22:49.089720-07:00,3039.0,10.830837,10830.837 +34719,2025-03-11T09:22:59.923212-07:00,3029.0,10.833492,10833.492 +34720,2025-03-11T09:23:10.751725-07:00,3030.0,10.828513,10828.513 +34721,2025-03-11T09:23:21.579082-07:00,3027.0,10.827357,10827.357 +34722,2025-03-11T09:23:32.408316-07:00,3015.0,10.829234,10829.234 +34723,2025-03-11T09:23:43.238934-07:00,3035.0,10.830618,10830.618 +34724,2025-03-11T09:24:04.889905-07:00,2963.0,21.650971,21650.971 +34725,2025-03-11T09:24:15.722759-07:00,2991.0,10.832854,10832.854 +34726,2025-03-11T09:24:26.547718-07:00,2991.0,10.824959,10824.959 +34727,2025-03-11T09:24:37.373718-07:00,2958.0,10.826,10826.0 +34728,2025-03-11T09:24:48.212397-07:00,2966.0,10.838679,10838.679 +34729,2025-03-11T09:24:59.034159-07:00,2912.0,10.821762,10821.762 +34730,2025-03-11T09:25:09.871051-07:00,2910.0,10.836892,10836.892 +34731,2025-03-11T09:25:20.690918-07:00,2881.0,10.819867,10819.867 +34732,2025-03-11T09:25:31.524030-07:00,2897.0,10.833112,10833.112 +34733,2025-03-11T09:25:42.352749-07:00,2903.0,10.828719,10828.719 +34734,2025-03-11T09:25:53.178544-07:00,2886.0,10.825795,10825.795 +34735,2025-03-11T09:26:14.824819-07:00,2859.0,21.646275,21646.275 +34736,2025-03-11T09:26:25.642723-07:00,2855.0,10.817904,10817.904 +34737,2025-03-11T09:26:36.465971-07:00,2851.0,10.823248,10823.248 +34738,2025-03-11T09:26:47.299026-07:00,2854.0,10.833055,10833.055 +34739,2025-03-11T09:26:58.119059-07:00,2815.0,10.820033,10820.033 +34740,2025-03-11T09:27:08.943720-07:00,2802.0,10.824661,10824.661 +34741,2025-03-11T09:27:19.761746-07:00,2815.0,10.818026,10818.026 +34742,2025-03-11T09:27:30.593791-07:00,2837.0,10.832045,10832.045 +34743,2025-03-11T09:27:41.423751-07:00,2830.0,10.82996,10829.96 +34744,2025-03-11T09:27:52.254701-07:00,2797.0,10.83095,10830.95 +34745,2025-03-11T09:28:03.080869-07:00,2837.0,10.826168,10826.168 +34746,2025-03-11T09:28:13.900990-07:00,2832.0,10.820121,10820.121 +34747,2025-03-11T09:28:24.725251-07:00,2832.0,10.824261,10824.261 +34748,2025-03-11T09:28:35.558719-07:00,2829.0,10.833468,10833.468 +34749,2025-03-11T09:28:46.385708-07:00,2801.0,10.826989,10826.989 +34750,2025-03-11T09:28:57.211234-07:00,2790.0,10.825526,10825.526 +34751,2025-03-11T09:29:08.026904-07:00,2735.0,10.81567,10815.67 +34752,2025-03-11T09:29:18.863019-07:00,2809.0,10.836115,10836.115 +34753,2025-03-11T09:29:29.694718-07:00,2775.0,10.831699,10831.699 +34754,2025-03-11T09:29:40.521944-07:00,2769.0,10.827226,10827.226 +34755,2025-03-11T09:29:51.346714-07:00,2741.0,10.82477,10824.77 +34756,2025-03-11T09:30:02.180912-07:00,2670.0,10.834198,10834.198 +34757,2025-03-11T09:30:13.007850-07:00,2655.0,10.826938,10826.938 +34758,2025-03-11T09:30:23.842251-07:00,2705.0,10.834401,10834.401 +34759,2025-03-11T09:30:34.670701-07:00,2703.0,10.82845,10828.45 +34760,2025-03-11T09:30:45.500117-07:00,2689.0,10.829416,10829.416 +34761,2025-03-11T09:30:56.335217-07:00,2641.0,10.8351,10835.1 +34762,2025-03-11T09:31:07.170043-07:00,2683.0,10.834826,10834.826 +34763,2025-03-11T09:31:17.999571-07:00,2617.0,10.829528,10829.528 +34764,2025-03-11T09:31:28.820063-07:00,2614.0,10.820492,10820.492 +34765,2025-03-11T09:31:39.651926-07:00,2627.0,10.831863,10831.863 +34766,2025-03-11T09:31:50.474004-07:00,2669.0,10.822078,10822.078 +34767,2025-03-11T09:32:01.305942-07:00,2676.0,10.831938,10831.938 +34768,2025-03-11T09:32:12.147719-07:00,2618.0,10.841777,10841.777 +34769,2025-03-11T09:32:22.973249-07:00,2609.0,10.82553,10825.53 +34770,2025-03-11T09:32:33.804028-07:00,2672.0,10.830779,10830.779 +34771,2025-03-11T09:32:44.642086-07:00,2671.0,10.838058,10838.058 +34772,2025-03-11T09:32:55.472978-07:00,2663.0,10.830892,10830.892 +34773,2025-03-11T09:33:06.304725-07:00,2595.0,10.831747,10831.747 +34774,2025-03-11T09:33:17.137880-07:00,2608.0,10.833155,10833.155 +34775,2025-03-11T09:33:27.963783-07:00,2619.0,10.825903,10825.903 +34776,2025-03-11T09:33:38.791721-07:00,2649.0,10.827938,10827.938 +34777,2025-03-11T09:33:49.625705-07:00,2657.0,10.833984,10833.984 +34778,2025-03-11T09:34:00.449699-07:00,2654.0,10.823994,10823.994 +34779,2025-03-11T09:34:11.284726-07:00,2645.0,10.835027,10835.027 +34780,2025-03-11T09:34:22.116579-07:00,2613.0,10.831853,10831.853 +34781,2025-03-11T09:34:32.948952-07:00,2653.0,10.832373,10832.373 +34782,2025-03-11T09:34:43.775350-07:00,2581.0,10.826398,10826.398 +34783,2025-03-11T09:34:54.611831-07:00,2595.0,10.836481,10836.481 +34784,2025-03-11T09:35:05.439150-07:00,2640.0,10.827319,10827.319 +34785,2025-03-11T09:35:16.264716-07:00,2631.0,10.825566,10825.566 +34786,2025-03-11T09:35:27.095055-07:00,2640.0,10.830339,10830.339 +34787,2025-03-11T09:35:37.921937-07:00,2624.0,10.826882,10826.882 +34788,2025-03-11T09:35:48.759604-07:00,2602.0,10.837667,10837.667 +34789,2025-03-11T09:35:59.591970-07:00,2624.0,10.832366,10832.366 +34790,2025-03-11T09:36:10.412306-07:00,2608.0,10.820336,10820.336 +34791,2025-03-11T09:36:21.242720-07:00,2586.0,10.830414,10830.414 +34792,2025-03-11T09:36:32.075067-07:00,2557.0,10.832347,10832.347 +34793,2025-03-11T09:36:42.906691-07:00,2623.0,10.831624,10831.624 +34794,2025-03-11T09:36:53.738118-07:00,2628.0,10.831427,10831.427 +34795,2025-03-11T09:37:04.563701-07:00,2599.0,10.825583,10825.583 +34796,2025-03-11T09:37:15.390974-07:00,2635.0,10.827273,10827.273 +34797,2025-03-11T09:37:26.222944-07:00,2601.0,10.83197,10831.97 +34798,2025-03-11T09:37:37.052961-07:00,2620.0,10.830017,10830.017 +34799,2025-03-11T09:37:47.883761-07:00,2625.0,10.8308,10830.8 +34800,2025-03-11T09:37:58.712766-07:00,2587.0,10.829005,10829.005 +34801,2025-03-11T09:38:09.546472-07:00,2634.0,10.833706,10833.706 +34802,2025-03-11T09:38:20.368704-07:00,2590.0,10.822232,10822.232 +34803,2025-03-11T09:38:31.204278-07:00,2603.0,10.835574,10835.574 +34804,2025-03-11T09:38:42.031969-07:00,2586.0,10.827691,10827.691 +34805,2025-03-11T09:38:52.858957-07:00,2627.0,10.826988,10826.988 +34806,2025-03-11T09:39:03.678117-07:00,2623.0,10.81916,10819.16 +34807,2025-03-11T09:39:14.503870-07:00,2608.0,10.825753,10825.753 +34808,2025-03-11T09:39:25.334120-07:00,2634.0,10.83025,10830.25 +34809,2025-03-11T09:39:36.150722-07:00,2610.0,10.816602,10816.602 +34810,2025-03-11T09:39:46.987124-07:00,2608.0,10.836402,10836.402 +34811,2025-03-11T09:39:57.815723-07:00,2633.0,10.828599,10828.599 +34812,2025-03-11T09:40:08.636715-07:00,2624.0,10.820992,10820.992 +34813,2025-03-11T09:40:19.479112-07:00,2624.0,10.842397,10842.397 +34814,2025-03-11T09:40:30.306372-07:00,2608.0,10.82726,10827.26 +34815,2025-03-11T09:40:41.128960-07:00,2609.0,10.822588,10822.588 +34816,2025-03-11T09:40:51.965128-07:00,2559.0,10.836168,10836.168 +34817,2025-03-11T09:41:02.794710-07:00,2607.0,10.829582,10829.582 +34818,2025-03-11T09:41:13.615069-07:00,2537.0,10.820359,10820.359 +34819,2025-03-11T09:41:24.450718-07:00,2587.0,10.835649,10835.649 +34820,2025-03-11T09:41:35.278030-07:00,2547.0,10.827312,10827.312 +34821,2025-03-11T09:41:46.113942-07:00,2559.0,10.835912,10835.912 +34822,2025-03-11T09:41:48.662192-07:00,2544.0,2.54825,2548.25 +34823,2025-03-11T09:41:56.945711-07:00,2559.0,8.283519,8283.519 +34824,2025-03-11T09:42:07.765716-07:00,2599.0,10.820005,10820.005 +34825,2025-03-11T09:42:18.592701-07:00,2559.0,10.826985,10826.985 +34826,2025-03-11T09:42:29.428035-07:00,2598.0,10.835334,10835.334 +34827,2025-03-11T09:42:40.252858-07:00,2559.0,10.824823,10824.823 +34828,2025-03-11T09:42:51.076713-07:00,2544.0,10.823855,10823.855 +34829,2025-03-11T09:43:01.901527-07:00,2559.0,10.824814,10824.814 +34830,2025-03-11T09:43:12.728717-07:00,2559.0,10.82719,10827.19 +34831,2025-03-11T09:43:23.560195-07:00,2534.0,10.831478,10831.478 +34832,2025-03-11T09:43:34.385969-07:00,2511.0,10.825774,10825.774 +34833,2025-03-11T09:43:45.217186-07:00,2542.0,10.831217,10831.217 +34834,2025-03-11T09:43:56.043989-07:00,2509.0,10.826803,10826.803 +34835,2025-03-11T09:44:06.880021-07:00,2498.0,10.836032,10836.032 +34836,2025-03-11T09:44:17.705771-07:00,2522.0,10.82575,10825.75 +34837,2025-03-11T09:44:28.533149-07:00,2493.0,10.827378,10827.378 +34838,2025-03-11T09:44:39.359718-07:00,2450.0,10.826569,10826.569 +34839,2025-03-11T09:44:50.193146-07:00,2458.0,10.833428,10833.428 +34840,2025-03-11T09:45:01.012307-07:00,2466.0,10.819161,10819.161 +34841,2025-03-11T09:45:11.848847-07:00,2441.0,10.83654,10836.54 +34842,2025-03-11T09:45:22.673769-07:00,2465.0,10.824922,10824.922 +34843,2025-03-11T09:45:33.507667-07:00,2454.0,10.833898,10833.898 +34844,2025-03-11T09:45:44.334750-07:00,2455.0,10.827083,10827.083 +34845,2025-03-11T09:45:55.163906-07:00,2384.0,10.829156,10829.156 +34846,2025-03-11T09:46:05.978793-07:00,2382.0,10.814887,10814.887 +34847,2025-03-11T09:46:16.804728-07:00,2421.0,10.825935,10825.935 +34848,2025-03-11T09:46:27.631989-07:00,2438.0,10.827261,10827.261 +34849,2025-03-11T09:46:38.451723-07:00,2419.0,10.819734,10819.734 +34850,2025-03-11T09:46:49.284089-07:00,2394.0,10.832366,10832.366 +34851,2025-03-11T09:47:00.110061-07:00,2430.0,10.825972,10825.972 +34852,2025-03-11T09:47:10.934721-07:00,2402.0,10.82466,10824.66 +34853,2025-03-11T09:47:21.750297-07:00,2400.0,10.815576,10815.576 +34854,2025-03-11T09:47:32.576021-07:00,2416.0,10.825724,10825.724 +34855,2025-03-11T09:47:43.407437-07:00,2432.0,10.831416,10831.416 +34856,2025-03-11T09:47:54.233935-07:00,2387.0,10.826498,10826.498 +34857,2025-03-11T09:48:05.052762-07:00,2432.0,10.818827,10818.827 +34858,2025-03-11T09:48:15.883728-07:00,2416.0,10.830966,10830.966 +34859,2025-03-11T09:48:26.705721-07:00,2416.0,10.821993,10821.993 +34860,2025-03-11T09:48:37.535850-07:00,2348.0,10.830129,10830.129 +34861,2025-03-11T09:48:48.359722-07:00,2405.0,10.823872,10823.872 +34862,2025-03-11T09:48:59.183030-07:00,2371.0,10.823308,10823.308 +34863,2025-03-11T09:49:10.012714-07:00,2402.0,10.829684,10829.684 +34864,2025-03-11T09:49:20.836831-07:00,2361.0,10.824117,10824.117 +34865,2025-03-11T09:49:31.654057-07:00,2402.0,10.817226,10817.226 +34866,2025-03-11T09:49:42.475724-07:00,2342.0,10.821667,10821.667 +34867,2025-03-11T09:49:53.301282-07:00,2390.0,10.825558,10825.558 +34868,2025-03-11T09:50:04.125966-07:00,2373.0,10.824684,10824.684 +34869,2025-03-11T09:50:14.960545-07:00,2347.0,10.834579,10834.579 +34870,2025-03-11T09:50:25.784696-07:00,2395.0,10.824151,10824.151 +34871,2025-03-11T09:50:36.607893-07:00,2365.0,10.823197,10823.197 +34872,2025-03-11T09:50:47.434749-07:00,2359.0,10.826856,10826.856 +34873,2025-03-11T09:50:58.255722-07:00,2313.0,10.820973,10820.973 +34874,2025-03-11T09:51:09.079028-07:00,2362.0,10.823306,10823.306 +34875,2025-03-11T09:51:19.899700-07:00,2371.0,10.820672,10820.672 +34876,2025-03-11T09:51:30.719718-07:00,2309.0,10.820018,10820.018 +34877,2025-03-11T09:51:41.552707-07:00,2366.0,10.832989,10832.989 +34878,2025-03-11T09:51:52.378730-07:00,2364.0,10.826023,10826.023 +34879,2025-03-11T09:52:03.204050-07:00,2356.0,10.82532,10825.32 +34880,2025-03-11T09:52:14.020857-07:00,2305.0,10.816807,10816.807 +34881,2025-03-11T09:52:24.843873-07:00,2330.0,10.823016,10823.016 +34882,2025-03-11T09:52:35.670861-07:00,2335.0,10.826988,10826.988 +34883,2025-03-11T09:52:46.497080-07:00,2351.0,10.826219,10826.219 +34884,2025-03-11T09:52:57.322977-07:00,2327.0,10.825897,10825.897 +34885,2025-03-11T09:53:08.143965-07:00,2304.0,10.820988,10820.988 +34886,2025-03-11T09:53:18.962937-07:00,2336.0,10.818972,10818.972 +34887,2025-03-11T09:53:29.795705-07:00,2263.0,10.832768,10832.768 +34888,2025-03-11T09:53:40.613059-07:00,2325.0,10.817354,10817.354 +34889,2025-03-11T09:53:51.440096-07:00,2325.0,10.827037,10827.037 +34890,2025-03-11T09:54:02.257703-07:00,2215.0,10.817607,10817.607 +34891,2025-03-11T09:54:13.088578-07:00,2282.0,10.830875,10830.875 +34892,2025-03-11T09:54:23.918878-07:00,2255.0,10.8303,10830.3 +34893,2025-03-11T09:54:34.744464-07:00,2257.0,10.825586,10825.586 +34894,2025-03-11T09:54:45.570724-07:00,2264.0,10.82626,10826.26 +34895,2025-03-11T09:54:56.394724-07:00,2273.0,10.824,10824.0 +34896,2025-03-11T09:55:07.218110-07:00,2296.0,10.823386,10823.386 +34897,2025-03-11T09:55:18.042919-07:00,2308.0,10.824809,10824.809 +34898,2025-03-11T09:55:28.877548-07:00,2323.0,10.834629,10834.629 +34899,2025-03-11T09:55:39.695061-07:00,2334.0,10.817513,10817.513 +34900,2025-03-11T09:55:50.529167-07:00,2278.0,10.834106,10834.106 +34901,2025-03-11T09:56:01.342717-07:00,2305.0,10.81355,10813.55 +34902,2025-03-11T09:56:12.171769-07:00,2315.0,10.829052,10829.052 +34903,2025-03-11T09:56:22.989907-07:00,2293.0,10.818138,10818.138 +34904,2025-03-11T09:56:33.814708-07:00,2288.0,10.824801,10824.801 +34905,2025-03-11T09:56:44.629043-07:00,2303.0,10.814335,10814.335 +34906,2025-03-11T09:56:55.455053-07:00,2317.0,10.82601,10826.01 +34907,2025-03-11T09:57:06.266725-07:00,2319.0,10.811672,10811.672 +34908,2025-03-11T09:57:17.095737-07:00,2249.0,10.829012,10829.012 +34909,2025-03-11T09:57:27.917173-07:00,2257.0,10.821436,10821.436 +34910,2025-03-11T09:57:38.743844-07:00,2305.0,10.826671,10826.671 +34911,2025-03-11T09:57:49.567039-07:00,2304.0,10.823195,10823.195 +34912,2025-03-11T09:58:00.392914-07:00,2251.0,10.825875,10825.875 +34913,2025-03-11T09:58:11.215714-07:00,2303.0,10.8228,10822.8 +34914,2025-03-11T09:58:22.035865-07:00,2301.0,10.820151,10820.151 +34915,2025-03-11T09:58:32.856718-07:00,2293.0,10.820853,10820.853 +34916,2025-03-11T09:58:43.680581-07:00,2255.0,10.823863,10823.863 +34917,2025-03-11T09:58:54.500728-07:00,2286.0,10.820147,10820.147 +34918,2025-03-11T09:59:05.327697-07:00,2205.0,10.826969,10826.969 +34919,2025-03-11T09:59:16.153078-07:00,2262.0,10.825381,10825.381 +34920,2025-03-11T09:59:26.981813-07:00,2260.0,10.828735,10828.735 +34921,2025-03-11T09:59:37.806006-07:00,2258.0,10.824193,10824.193 +34922,2025-03-11T09:59:48.618972-07:00,2192.0,10.812966,10812.966 +34923,2025-03-11T09:59:59.446912-07:00,2259.0,10.82794,10827.94 +34924,2025-03-11T10:00:10.267097-07:00,2192.0,10.820185,10820.185 +34925,2025-03-11T10:00:21.093712-07:00,2225.0,10.826615,10826.615 +34926,2025-03-11T10:00:31.906719-07:00,2254.0,10.813007,10813.007 +34927,2025-03-11T10:00:42.733734-07:00,2223.0,10.827015,10827.015 +34928,2025-03-11T10:00:53.558971-07:00,2251.0,10.825237,10825.237 +34929,2025-03-11T10:01:04.379270-07:00,2223.0,10.820299,10820.299 +34930,2025-03-11T10:01:15.195907-07:00,2201.0,10.816637,10816.637 +34931,2025-03-11T10:01:26.026968-07:00,2161.0,10.831061,10831.061 +34932,2025-03-11T10:01:36.852327-07:00,2221.0,10.825359,10825.359 +34933,2025-03-11T10:01:47.669991-07:00,2190.0,10.817664,10817.664 +34934,2025-03-11T10:01:58.502061-07:00,2159.0,10.83207,10832.07 +34935,2025-03-11T10:02:09.319896-07:00,2214.0,10.817835,10817.835 +34936,2025-03-11T10:02:20.137697-07:00,2213.0,10.817801,10817.801 +34937,2025-03-11T10:02:30.966001-07:00,2162.0,10.828304,10828.304 +34938,2025-03-11T10:02:41.786722-07:00,2149.0,10.820721,10820.721 +34939,2025-03-11T10:02:52.605934-07:00,2176.0,10.819212,10819.212 +34940,2025-03-11T10:03:03.436773-07:00,2135.0,10.830839,10830.839 +34941,2025-03-11T10:03:14.257719-07:00,2207.0,10.820946,10820.946 +34942,2025-03-11T10:03:25.067813-07:00,2199.0,10.810094,10810.094 +34943,2025-03-11T10:03:35.895720-07:00,2145.0,10.827907,10827.907 +34944,2025-03-11T10:03:46.718839-07:00,2160.0,10.823119,10823.119 +34945,2025-03-11T10:03:57.534702-07:00,2183.0,10.815863,10815.863 +34946,2025-03-11T10:04:08.356776-07:00,2195.0,10.822074,10822.074 +34947,2025-03-11T10:04:19.175489-07:00,2197.0,10.818713,10818.713 +34948,2025-03-11T10:04:29.992722-07:00,2209.0,10.817233,10817.233 +34949,2025-03-11T10:04:40.821556-07:00,2211.0,10.828834,10828.834 +34950,2025-03-11T10:04:51.634722-07:00,2202.0,10.813166,10813.166 +34951,2025-03-11T10:05:02.461650-07:00,2209.0,10.826928,10826.928 +34952,2025-03-11T10:05:13.287721-07:00,2208.0,10.826071,10826.071 +34953,2025-03-11T10:05:24.102722-07:00,2215.0,10.815001,10815.001 +34954,2025-03-11T10:05:34.933057-07:00,2205.0,10.830335,10830.335 +34955,2025-03-11T10:05:45.753720-07:00,2219.0,10.820663,10820.663 +34956,2025-03-11T10:05:56.581460-07:00,2226.0,10.82774,10827.74 +34957,2025-03-11T10:06:07.404720-07:00,2228.0,10.82326,10823.26 +34958,2025-03-11T10:06:18.220707-07:00,2227.0,10.815987,10815.987 +34959,2025-03-11T10:06:29.042106-07:00,2179.0,10.821399,10821.399 +34960,2025-03-11T10:06:39.866770-07:00,2230.0,10.824664,10824.664 +34961,2025-03-11T10:06:50.683713-07:00,2192.0,10.816943,10816.943 +34962,2025-03-11T10:07:01.508051-07:00,2244.0,10.824338,10824.338 +34963,2025-03-11T10:07:12.377013-07:00,2198.0,10.868962,10868.962 +34964,2025-03-11T10:07:23.196685-07:00,2205.0,10.819672,10819.672 +34965,2025-03-11T10:07:34.016111-07:00,2278.0,10.819426,10819.426 +34966,2025-03-11T10:07:44.837956-07:00,2214.0,10.821845,10821.845 +34967,2025-03-11T10:07:55.660703-07:00,2286.0,10.822747,10822.747 +34968,2025-03-11T10:08:06.478037-07:00,2261.0,10.817334,10817.334 +34969,2025-03-11T10:08:17.299917-07:00,2242.0,10.82188,10821.88 +34970,2025-03-11T10:08:28.113397-07:00,2243.0,10.81348,10813.48 +34971,2025-03-11T10:08:38.940038-07:00,2276.0,10.826641,10826.641 +34972,2025-03-11T10:08:49.765686-07:00,2256.0,10.825648,10825.648 +34973,2025-03-11T10:09:00.586337-07:00,2247.0,10.820651,10820.651 +34974,2025-03-11T10:09:11.407793-07:00,2195.0,10.821456,10821.456 +34975,2025-03-11T10:09:22.237708-07:00,2189.0,10.829915,10829.915 +34976,2025-03-11T10:09:33.053695-07:00,2239.0,10.815987,10815.987 +34977,2025-03-11T10:09:43.879706-07:00,2161.0,10.826011,10826.011 +34978,2025-03-11T10:09:54.704725-07:00,2209.0,10.825019,10825.019 +34979,2025-03-11T10:10:05.524105-07:00,2221.0,10.81938,10819.38 +34980,2025-03-11T10:10:16.353975-07:00,2223.0,10.82987,10829.87 +34981,2025-03-11T10:10:27.175046-07:00,2230.0,10.821071,10821.071 +34982,2025-03-11T10:10:37.995752-07:00,2231.0,10.820706,10820.706 +34983,2025-03-11T10:10:48.814891-07:00,2224.0,10.819139,10819.139 +34984,2025-03-11T10:10:59.644872-07:00,2214.0,10.829981,10829.981 +34985,2025-03-11T10:11:10.469698-07:00,2167.0,10.824826,10824.826 +34986,2025-03-11T10:11:21.296904-07:00,2277.0,10.827206,10827.206 +34987,2025-03-11T10:11:32.120707-07:00,2236.0,10.823803,10823.803 +34988,2025-03-11T10:11:42.946881-07:00,2257.0,10.826174,10826.174 +34989,2025-03-11T10:11:53.763052-07:00,2233.0,10.816171,10816.171 +34990,2025-03-11T10:12:04.596920-07:00,2192.0,10.833868,10833.868 +34991,2025-03-11T10:12:15.420704-07:00,2240.0,10.823784,10823.784 +34992,2025-03-11T10:12:26.246390-07:00,2275.0,10.825686,10825.686 +34993,2025-03-11T10:12:37.072478-07:00,2234.0,10.826088,10826.088 +34994,2025-03-11T10:12:47.898688-07:00,2206.0,10.82621,10826.21 +34995,2025-03-11T10:12:58.718190-07:00,2235.0,10.819502,10819.502 +34996,2025-03-11T10:13:09.551954-07:00,2237.0,10.833764,10833.764 +34997,2025-03-11T10:13:20.370684-07:00,2125.0,10.81873,10818.73 +34998,2025-03-11T10:13:31.199985-07:00,2181.0,10.829301,10829.301 +34999,2025-03-11T10:13:52.842260-07:00,2234.0,21.642275,21642.275 +35000,2025-03-11T10:14:03.672909-07:00,2204.0,10.830649,10830.649 +35001,2025-03-11T10:14:14.495841-07:00,2224.0,10.822932,10822.932 +35002,2025-03-11T10:14:25.310863-07:00,2229.0,10.815022,10815.022 +35003,2025-03-11T10:14:36.144849-07:00,2224.0,10.833986,10833.986 +35004,2025-03-11T10:14:46.967038-07:00,2155.0,10.822189,10822.189 +35005,2025-03-11T10:14:57.789706-07:00,2231.0,10.822668,10822.668 +35006,2025-03-11T10:15:08.606997-07:00,2192.0,10.817291,10817.291 +35007,2025-03-11T10:15:19.431028-07:00,2159.0,10.824031,10824.031 +35008,2025-03-11T10:15:30.249774-07:00,2171.0,10.818746,10818.746 +35009,2025-03-11T10:15:41.080488-07:00,2219.0,10.830714,10830.714 +35010,2025-03-11T10:15:51.899754-07:00,2159.0,10.819266,10819.266 +35011,2025-03-11T10:16:02.726707-07:00,2161.0,10.826953,10826.953 +35012,2025-03-11T10:16:13.553030-07:00,2174.0,10.826323,10826.323 +35013,2025-03-11T10:16:24.374705-07:00,2207.0,10.821675,10821.675 +35014,2025-03-11T10:16:35.193741-07:00,2207.0,10.819036,10819.036 +35015,2025-03-11T10:16:46.015016-07:00,2208.0,10.821275,10821.275 +35016,2025-03-11T10:16:56.847951-07:00,2247.0,10.832935,10832.935 +35017,2025-03-11T10:17:07.671940-07:00,2208.0,10.823989,10823.989 +35018,2025-03-11T10:17:18.485945-07:00,2194.0,10.814005,10814.005 +35019,2025-03-11T10:17:29.315522-07:00,2173.0,10.829577,10829.577 +35020,2025-03-11T10:17:40.134052-07:00,2257.0,10.81853,10818.53 +35021,2025-03-11T10:17:50.957930-07:00,2258.0,10.823878,10823.878 +35022,2025-03-11T10:18:01.772950-07:00,2257.0,10.81502,10815.02 +35023,2025-03-11T10:18:12.594604-07:00,2216.0,10.821654,10821.654 +35024,2025-03-11T10:18:23.408690-07:00,2249.0,10.814086,10814.086 +35025,2025-03-11T10:18:34.238023-07:00,2256.0,10.829333,10829.333 +35026,2025-03-11T10:18:45.050977-07:00,2205.0,10.812954,10812.954 +35027,2025-03-11T10:18:55.869923-07:00,2277.0,10.818946,10818.946 +35028,2025-03-11T10:19:06.690686-07:00,2203.0,10.820763,10820.763 +35029,2025-03-11T10:19:17.509990-07:00,2285.0,10.819304,10819.304 +35030,2025-03-11T10:19:28.341312-07:00,2287.0,10.831322,10831.322 +35031,2025-03-11T10:19:39.160036-07:00,2282.0,10.818724,10818.724 +35032,2025-03-11T10:19:49.974959-07:00,2245.0,10.814923,10814.923 +35033,2025-03-11T10:20:00.792107-07:00,2223.0,10.817148,10817.148 +35034,2025-03-11T10:20:11.608706-07:00,2292.0,10.816599,10816.599 +35035,2025-03-11T10:20:22.432028-07:00,2234.0,10.823322,10823.322 +35036,2025-03-11T10:20:33.252769-07:00,2288.0,10.820741,10820.741 +35037,2025-03-11T10:20:44.079063-07:00,2224.0,10.826294,10826.294 +35038,2025-03-11T10:20:54.898789-07:00,2267.0,10.819726,10819.726 +35039,2025-03-11T10:21:05.713988-07:00,2293.0,10.815199,10815.199 +35040,2025-03-11T10:21:16.544687-07:00,2282.0,10.830699,10830.699 +35041,2025-03-11T10:21:27.357966-07:00,2306.0,10.813279,10813.279 +35042,2025-03-11T10:21:38.185916-07:00,2305.0,10.82795,10827.95 +35043,2025-03-11T10:21:49.013157-07:00,2239.0,10.827241,10827.241 +35044,2025-03-11T10:21:59.844888-07:00,2268.0,10.831731,10831.731 +35045,2025-03-11T10:22:10.671028-07:00,2287.0,10.82614,10826.14 +35046,2025-03-11T10:22:21.499180-07:00,2286.0,10.828152,10828.152 +35047,2025-03-11T10:22:32.325046-07:00,2313.0,10.825866,10825.866 +35048,2025-03-11T10:22:43.147946-07:00,2235.0,10.8229,10822.9 +35049,2025-03-11T10:22:53.971880-07:00,2271.0,10.823934,10823.934 +35050,2025-03-11T10:23:04.795578-07:00,2271.0,10.823698,10823.698 +35051,2025-03-11T10:23:15.619964-07:00,2319.0,10.824386,10824.386 +35052,2025-03-11T10:23:26.445028-07:00,2322.0,10.825064,10825.064 +35053,2025-03-11T10:23:37.266697-07:00,2287.0,10.821669,10821.669 +35054,2025-03-11T10:23:48.098638-07:00,2325.0,10.831941,10831.941 +35055,2025-03-11T10:23:58.926702-07:00,2291.0,10.828064,10828.064 +35056,2025-03-11T10:24:09.750023-07:00,2324.0,10.823321,10823.321 +35057,2025-03-11T10:24:20.571019-07:00,2240.0,10.820996,10820.996 +35058,2025-03-11T10:24:31.400708-07:00,2323.0,10.829689,10829.689 +35059,2025-03-11T10:24:42.221042-07:00,2256.0,10.820334,10820.334 +35060,2025-03-11T10:24:53.051688-07:00,2278.0,10.830646,10830.646 +35061,2025-03-11T10:25:03.879751-07:00,2306.0,10.828063,10828.063 +35062,2025-03-11T10:25:14.701711-07:00,2319.0,10.82196,10821.96 +35063,2025-03-11T10:25:25.534009-07:00,2258.0,10.832298,10832.298 +35064,2025-03-11T10:25:36.356986-07:00,2305.0,10.822977,10822.977 +35065,2025-03-11T10:25:47.191345-07:00,2330.0,10.834359,10834.359 +35066,2025-03-11T10:25:58.006546-07:00,2335.0,10.815201,10815.201 +35067,2025-03-11T10:26:08.832703-07:00,2333.0,10.826157,10826.157 +35068,2025-03-11T10:26:19.661097-07:00,2336.0,10.828394,10828.394 +35069,2025-03-11T10:26:30.494698-07:00,2331.0,10.833601,10833.601 +35070,2025-03-11T10:26:41.321813-07:00,2269.0,10.827115,10827.115 +35071,2025-03-11T10:26:52.150700-07:00,2337.0,10.828887,10828.887 +35072,2025-03-11T10:27:02.978191-07:00,2347.0,10.827491,10827.491 +35073,2025-03-11T10:27:13.794862-07:00,2353.0,10.816671,10816.671 +35074,2025-03-11T10:27:24.620750-07:00,2323.0,10.825888,10825.888 +35075,2025-03-11T10:27:35.441307-07:00,2337.0,10.820557,10820.557 +35076,2025-03-11T10:27:46.266048-07:00,2368.0,10.824741,10824.741 +35077,2025-03-11T10:27:57.086991-07:00,2372.0,10.820943,10820.943 +35078,2025-03-11T10:28:07.911144-07:00,2329.0,10.824153,10824.153 +35079,2025-03-11T10:28:18.731703-07:00,2355.0,10.820559,10820.559 +35080,2025-03-11T10:28:29.558723-07:00,2368.0,10.82702,10827.02 +35081,2025-03-11T10:28:40.383832-07:00,2371.0,10.825109,10825.109 +35082,2025-03-11T10:28:51.208960-07:00,2391.0,10.825128,10825.128 +35083,2025-03-11T10:29:02.032760-07:00,2375.0,10.8238,10823.8 +35084,2025-03-11T10:29:12.850390-07:00,2362.0,10.81763,10817.63 +35085,2025-03-11T10:29:23.674100-07:00,2411.0,10.82371,10823.71 +35086,2025-03-11T10:29:34.489712-07:00,2379.0,10.815612,10815.612 +35087,2025-03-11T10:29:45.315856-07:00,2425.0,10.826144,10826.144 +35088,2025-03-11T10:29:56.136054-07:00,2426.0,10.820198,10820.198 +35089,2025-03-11T10:30:06.945703-07:00,2435.0,10.809649,10809.649 +35090,2025-03-11T10:30:17.777806-07:00,2415.0,10.832103,10832.103 +35091,2025-03-11T10:30:28.598042-07:00,2363.0,10.820236,10820.236 +35092,2025-03-11T10:30:39.420699-07:00,2415.0,10.822657,10822.657 +35093,2025-03-11T10:30:50.244195-07:00,2449.0,10.823496,10823.496 +35094,2025-03-11T10:31:01.070941-07:00,2384.0,10.826746,10826.746 +35095,2025-03-11T10:31:11.895703-07:00,2403.0,10.824762,10824.762 +35096,2025-03-11T10:31:22.718688-07:00,2448.0,10.822985,10822.985 +35097,2025-03-11T10:31:33.553752-07:00,2415.0,10.835064,10835.064 +35098,2025-03-11T10:31:44.381755-07:00,2463.0,10.828003,10828.003 +35099,2025-03-11T10:31:55.203713-07:00,2454.0,10.821958,10821.958 +35100,2025-03-11T10:32:06.028087-07:00,2473.0,10.824374,10824.374 +35101,2025-03-11T10:32:16.857955-07:00,2438.0,10.829868,10829.868 +35102,2025-03-11T10:32:27.695889-07:00,2437.0,10.837934,10837.934 +35103,2025-03-11T10:32:38.511759-07:00,2492.0,10.81587,10815.87 +35104,2025-03-11T10:32:49.340965-07:00,2479.0,10.829206,10829.206 +35105,2025-03-11T10:33:00.168761-07:00,2495.0,10.827796,10827.796 +35106,2025-03-11T10:33:10.986701-07:00,2433.0,10.81794,10817.94 +35107,2025-03-11T10:33:21.819710-07:00,2494.0,10.833009,10833.009 +35108,2025-03-11T10:33:32.644768-07:00,2527.0,10.825058,10825.058 +35109,2025-03-11T10:33:43.479360-07:00,2539.0,10.834592,10834.592 +35110,2025-03-11T10:33:54.309420-07:00,2544.0,10.83006,10830.06 +35111,2025-03-11T10:34:05.124703-07:00,2535.0,10.815283,10815.283 +35112,2025-03-11T10:34:15.956703-07:00,2546.0,10.832,10832.0 +35113,2025-03-11T10:34:26.776716-07:00,2512.0,10.820013,10820.013 +35114,2025-03-11T10:34:37.608705-07:00,2559.0,10.831989,10831.989 +35115,2025-03-11T10:34:48.437977-07:00,2559.0,10.829272,10829.272 +35116,2025-03-11T10:34:59.270009-07:00,2559.0,10.832032,10832.032 +35117,2025-03-11T10:35:10.093417-07:00,2518.0,10.823408,10823.408 +35118,2025-03-11T10:35:20.927919-07:00,2559.0,10.834502,10834.502 +35119,2025-03-11T10:35:31.756791-07:00,2595.0,10.828872,10828.872 +35120,2025-03-11T10:35:42.580819-07:00,2530.0,10.824028,10824.028 +35121,2025-03-11T10:35:53.412050-07:00,2615.0,10.831231,10831.231 +35122,2025-03-11T10:36:04.232705-07:00,2582.0,10.820655,10820.655 +35123,2025-03-11T10:36:15.062474-07:00,2559.0,10.829769,10829.769 +35124,2025-03-11T10:36:25.890701-07:00,2544.0,10.828227,10828.227 +35125,2025-03-11T10:36:36.719995-07:00,2559.0,10.829294,10829.294 +35126,2025-03-11T10:36:47.543483-07:00,2600.0,10.823488,10823.488 +35127,2025-03-11T10:36:58.372817-07:00,2594.0,10.829334,10829.334 +35128,2025-03-11T10:37:09.200713-07:00,2631.0,10.827896,10827.896 +35129,2025-03-11T10:37:20.028135-07:00,2559.0,10.827422,10827.422 +35130,2025-03-11T10:37:30.853709-07:00,2619.0,10.825574,10825.574 +35131,2025-03-11T10:37:41.678685-07:00,2629.0,10.824976,10824.976 +35132,2025-03-11T10:37:52.503148-07:00,2593.0,10.824463,10824.463 +35133,2025-03-11T10:38:03.335835-07:00,2593.0,10.832687,10832.687 +35134,2025-03-11T10:38:14.155999-07:00,2625.0,10.820164,10820.164 +35135,2025-03-11T10:38:24.986992-07:00,2642.0,10.830993,10830.993 +35136,2025-03-11T10:38:35.810973-07:00,2640.0,10.823981,10823.981 +35137,2025-03-11T10:38:46.626030-07:00,2618.0,10.815057,10815.057 +35138,2025-03-11T10:38:57.449951-07:00,2623.0,10.823921,10823.921 +35139,2025-03-11T10:39:08.280990-07:00,2623.0,10.831039,10831.039 +35140,2025-03-11T10:39:19.101702-07:00,2629.0,10.820712,10820.712 +35141,2025-03-11T10:39:29.922178-07:00,2634.0,10.820476,10820.476 +35142,2025-03-11T10:39:40.754962-07:00,2640.0,10.832784,10832.784 +35143,2025-03-11T10:39:51.573705-07:00,2559.0,10.818743,10818.743 +35144,2025-03-11T10:40:02.396974-07:00,2642.0,10.823269,10823.269 +35145,2025-03-11T10:40:13.215940-07:00,2640.0,10.818966,10818.966 +35146,2025-03-11T10:40:24.046888-07:00,2640.0,10.830948,10830.948 +35147,2025-03-11T10:40:34.864814-07:00,2639.0,10.817926,10817.926 +35148,2025-03-11T10:40:45.687118-07:00,2619.0,10.822304,10822.304 +35149,2025-03-11T10:40:56.519107-07:00,2559.0,10.831989,10831.989 +35150,2025-03-11T10:41:07.337830-07:00,2611.0,10.818723,10818.723 +35151,2025-03-11T10:41:18.164924-07:00,2631.0,10.827094,10827.094 +35152,2025-03-11T10:41:28.986809-07:00,2604.0,10.821885,10821.885 +35153,2025-03-11T10:41:39.806712-07:00,2601.0,10.819903,10819.903 +35154,2025-03-11T10:41:50.632040-07:00,2603.0,10.825328,10825.328 +35155,2025-03-11T10:42:01.461761-07:00,2636.0,10.829721,10829.721 +35156,2025-03-11T10:42:12.289900-07:00,2631.0,10.828139,10828.139 +35157,2025-03-11T10:42:23.113684-07:00,2559.0,10.823784,10823.784 +35158,2025-03-11T10:42:33.938754-07:00,2611.0,10.82507,10825.07 +35159,2025-03-11T10:42:44.762197-07:00,2624.0,10.823443,10823.443 +35160,2025-03-11T10:42:55.586706-07:00,2629.0,10.824509,10824.509 +35161,2025-03-11T10:43:06.417712-07:00,2609.0,10.831006,10831.006 +35162,2025-03-11T10:43:17.244705-07:00,2615.0,10.826993,10826.993 +35163,2025-03-11T10:43:28.072238-07:00,2599.0,10.827533,10827.533 +35164,2025-03-11T10:43:38.900927-07:00,2623.0,10.828689,10828.689 +35165,2025-03-11T10:43:49.722032-07:00,2621.0,10.821105,10821.105 +35166,2025-03-11T10:44:00.550685-07:00,2623.0,10.828653,10828.653 +35167,2025-03-11T10:44:11.375191-07:00,2592.0,10.824506,10824.506 +35168,2025-03-11T10:44:22.202705-07:00,2622.0,10.827514,10827.514 +35169,2025-03-11T10:44:33.028013-07:00,2594.0,10.825308,10825.308 +35170,2025-03-11T10:44:43.859762-07:00,2559.0,10.831749,10831.749 +35171,2025-03-11T10:44:54.683832-07:00,2559.0,10.82407,10824.07 +35172,2025-03-11T10:45:05.517752-07:00,2615.0,10.83392,10833.92 +35173,2025-03-11T10:45:16.338703-07:00,2609.0,10.820951,10820.951 +35174,2025-03-11T10:45:27.171038-07:00,2603.0,10.832335,10832.335 +35175,2025-03-11T10:45:37.995710-07:00,2559.0,10.824672,10824.672 +35176,2025-03-11T10:45:48.825101-07:00,2559.0,10.829391,10829.391 +35177,2025-03-11T10:45:59.658795-07:00,2611.0,10.833694,10833.694 +35178,2025-03-11T10:46:10.490849-07:00,2601.0,10.832054,10832.054 +35179,2025-03-11T10:46:21.311694-07:00,2595.0,10.820845,10820.845 +35180,2025-03-11T10:46:32.144719-07:00,2607.0,10.833025,10833.025 +35181,2025-03-11T10:46:42.974219-07:00,2539.0,10.8295,10829.5 +35182,2025-03-11T10:46:53.802737-07:00,2547.0,10.828518,10828.518 +35183,2025-03-11T10:47:04.621678-07:00,2559.0,10.818941,10818.941 +35184,2025-03-11T10:47:15.449019-07:00,2608.0,10.827341,10827.341 +35185,2025-03-11T10:47:26.273758-07:00,2608.0,10.824739,10824.739 +35186,2025-03-11T10:47:37.099668-07:00,2603.0,10.82591,10825.91 +35187,2025-03-11T10:47:47.926251-07:00,2594.0,10.826583,10826.583 +35188,2025-03-11T10:47:58.761009-07:00,2604.0,10.834758,10834.758 +35189,2025-03-11T10:48:09.588303-07:00,2559.0,10.827294,10827.294 +35190,2025-03-11T10:48:20.427046-07:00,2599.0,10.838743,10838.743 +35191,2025-03-11T10:48:31.250973-07:00,2594.0,10.823927,10823.927 +35192,2025-03-11T10:48:42.077986-07:00,2595.0,10.827013,10827.013 +35193,2025-03-11T10:48:52.908710-07:00,2581.0,10.830724,10830.724 +35194,2025-03-11T10:49:03.747515-07:00,2528.0,10.838805,10838.805 +35195,2025-03-11T10:49:14.566964-07:00,2522.0,10.819449,10819.449 +35196,2025-03-11T10:49:25.399758-07:00,2559.0,10.832794,10832.794 +35197,2025-03-11T10:49:36.231885-07:00,2559.0,10.832127,10832.127 +35198,2025-03-11T10:49:47.061790-07:00,2542.0,10.829905,10829.905 +35199,2025-03-11T10:49:57.892950-07:00,2550.0,10.83116,10831.16 +35200,2025-03-11T10:50:08.726706-07:00,2549.0,10.833756,10833.756 +35201,2025-03-11T10:50:19.553934-07:00,2535.0,10.827228,10827.228 +35202,2025-03-11T10:50:30.377885-07:00,2538.0,10.823951,10823.951 +35203,2025-03-11T10:50:41.214512-07:00,2512.0,10.836627,10836.627 +35204,2025-03-11T10:50:52.046755-07:00,2559.0,10.832243,10832.243 +35205,2025-03-11T10:51:02.876970-07:00,2583.0,10.830215,10830.215 +35206,2025-03-11T10:51:13.711140-07:00,2559.0,10.83417,10834.17 +35207,2025-03-11T10:51:24.543341-07:00,2517.0,10.832201,10832.201 +35208,2025-03-11T10:51:35.366680-07:00,2559.0,10.823339,10823.339 +35209,2025-03-11T10:51:46.199842-07:00,2559.0,10.833162,10833.162 +35210,2025-03-11T10:51:57.032042-07:00,2555.0,10.8322,10832.2 +35211,2025-03-11T10:52:07.856998-07:00,2532.0,10.824956,10824.956 +35212,2025-03-11T10:52:18.687913-07:00,2559.0,10.830915,10830.915 +35213,2025-03-11T10:52:29.526919-07:00,2544.0,10.839006,10839.006 +35214,2025-03-11T10:52:40.359238-07:00,2559.0,10.832319,10832.319 +35215,2025-03-11T10:52:51.188711-07:00,2525.0,10.829473,10829.473 +35216,2025-03-11T10:53:02.026364-07:00,2543.0,10.837653,10837.653 +35217,2025-03-11T10:53:12.847735-07:00,2501.0,10.821371,10821.371 +35218,2025-03-11T10:53:23.678984-07:00,2511.0,10.831249,10831.249 +35219,2025-03-11T10:53:34.516707-07:00,2487.0,10.837723,10837.723 +35220,2025-03-11T10:53:45.343225-07:00,2506.0,10.826518,10826.518 +35221,2025-03-11T10:53:56.164090-07:00,2525.0,10.820865,10820.865 +35222,2025-03-11T10:54:06.994016-07:00,2559.0,10.829926,10829.926 +35223,2025-03-11T10:54:17.824852-07:00,2521.0,10.830836,10830.836 +35224,2025-03-11T10:54:28.656126-07:00,2559.0,10.831274,10831.274 +35225,2025-03-11T10:54:39.489705-07:00,2559.0,10.833579,10833.579 +35226,2025-03-11T10:54:50.322756-07:00,2525.0,10.833051,10833.051 +35227,2025-03-11T10:55:01.153750-07:00,2544.0,10.830994,10830.994 +35228,2025-03-11T10:55:11.980707-07:00,2551.0,10.826957,10826.957 +35229,2025-03-11T10:55:22.811710-07:00,2506.0,10.831003,10831.003 +35230,2025-03-11T10:55:33.643017-07:00,2554.0,10.831307,10831.307 +35231,2025-03-11T10:55:44.477036-07:00,2497.0,10.834019,10834.019 +35232,2025-03-11T10:55:55.316711-07:00,2551.0,10.839675,10839.675 +35233,2025-03-11T10:56:06.145056-07:00,2542.0,10.828345,10828.345 +35234,2025-03-11T10:56:16.974233-07:00,2525.0,10.829177,10829.177 +35235,2025-03-11T10:56:27.812701-07:00,2522.0,10.838468,10838.468 +35236,2025-03-11T10:56:38.639122-07:00,2543.0,10.826421,10826.421 +35237,2025-03-11T10:56:49.469705-07:00,2514.0,10.830583,10830.583 +35238,2025-03-11T10:57:00.303725-07:00,2531.0,10.83402,10834.02 +35239,2025-03-11T10:57:11.138768-07:00,2544.0,10.835043,10835.043 +35240,2025-03-11T10:57:21.971872-07:00,2478.0,10.833104,10833.104 +35241,2025-03-11T10:57:32.797709-07:00,2512.0,10.825837,10825.837 +35242,2025-03-11T10:57:43.630069-07:00,2496.0,10.83236,10832.36 +35243,2025-03-11T10:57:54.463947-07:00,2480.0,10.833878,10833.878 +35244,2025-03-11T10:58:05.299127-07:00,2541.0,10.83518,10835.18 +35245,2025-03-11T10:58:16.144158-07:00,2540.0,10.845031,10845.031 +35246,2025-03-11T10:58:26.967709-07:00,2504.0,10.823551,10823.551 +35247,2025-03-11T10:58:37.810798-07:00,2538.0,10.843089,10843.089 +35248,2025-03-11T10:58:48.641972-07:00,2512.0,10.831174,10831.174 +35249,2025-03-11T10:58:59.473316-07:00,2511.0,10.831344,10831.344 +35250,2025-03-11T10:59:09.041932-07:00,2459.0,9.568616,9568.616 +35251,2025-03-11T10:59:10.316959-07:00,2533.0,1.275027,1275.027 +35252,2025-03-11T10:59:11.375109-07:00,2533.0,1.05815,1058.15 +35253,2025-03-11T10:59:21.143709-07:00,2532.0,9.7686,9768.6 +35254,2025-03-11T10:59:31.980713-07:00,2528.0,10.837004,10837.004 +35255,2025-03-11T10:59:42.806848-07:00,2529.0,10.826135,10826.135 +35256,2025-03-11T10:59:53.641907-07:00,2485.0,10.835059,10835.059 +35257,2025-03-11T11:00:04.473064-07:00,2475.0,10.831157,10831.157 +35258,2025-03-11T11:00:15.313710-07:00,2480.0,10.840646,10840.646 +35259,2025-03-11T11:00:26.138811-07:00,2501.0,10.825101,10825.101 +35260,2025-03-11T11:00:36.969950-07:00,2518.0,10.831139,10831.139 +35261,2025-03-11T11:00:47.805926-07:00,2497.0,10.835976,10835.976 +35262,2025-03-11T11:00:58.640772-07:00,2457.0,10.834846,10834.846 +35263,2025-03-11T11:01:09.466706-07:00,2525.0,10.825934,10825.934 +35264,2025-03-11T11:01:20.310037-07:00,2526.0,10.843331,10843.331 +35265,2025-03-11T11:01:31.146708-07:00,2496.0,10.836671,10836.671 +35266,2025-03-11T11:01:41.977711-07:00,2494.0,10.831003,10831.003 +35267,2025-03-11T11:01:52.804101-07:00,2509.0,10.82639,10826.39 +35268,2025-03-11T11:02:03.631620-07:00,2480.0,10.827519,10827.519 +35269,2025-03-11T11:02:14.465827-07:00,2503.0,10.834207,10834.207 +35270,2025-03-11T11:02:25.299714-07:00,2475.0,10.833887,10833.887 +35271,2025-03-11T11:02:36.136061-07:00,2511.0,10.836347,10836.347 +35272,2025-03-11T11:02:46.965696-07:00,2498.0,10.829635,10829.635 +35273,2025-03-11T11:02:57.799077-07:00,2471.0,10.833381,10833.381 +35274,2025-03-11T11:03:08.640974-07:00,2511.0,10.841897,10841.897 +35275,2025-03-11T11:03:19.475707-07:00,2483.0,10.834733,10834.733 +35276,2025-03-11T11:03:30.303013-07:00,2509.0,10.827306,10827.306 +35277,2025-03-11T11:03:41.145378-07:00,2512.0,10.842365,10842.365 +35278,2025-03-11T11:03:51.971925-07:00,2496.0,10.826547,10826.547 +35279,2025-03-11T11:04:02.807205-07:00,2463.0,10.83528,10835.28 +35280,2025-03-11T11:04:13.645037-07:00,2492.0,10.837832,10837.832 +35281,2025-03-11T11:04:24.466531-07:00,2479.0,10.821494,10821.494 +35282,2025-03-11T11:04:35.299230-07:00,2437.0,10.832699,10832.699 +35283,2025-03-11T11:04:46.137125-07:00,2467.0,10.837895,10837.895 +35284,2025-03-11T11:04:56.964705-07:00,2469.0,10.82758,10827.58 +35285,2025-03-11T11:05:07.788247-07:00,2467.0,10.823542,10823.542 +35286,2025-03-11T11:05:18.629264-07:00,2470.0,10.841017,10841.017 +35287,2025-03-11T11:05:29.461013-07:00,2505.0,10.831749,10831.749 +35288,2025-03-11T11:05:40.293749-07:00,2502.0,10.832736,10832.736 +35289,2025-03-11T11:05:51.134706-07:00,2500.0,10.840957,10840.957 +35290,2025-03-11T11:06:01.964973-07:00,2467.0,10.830267,10830.267 +35291,2025-03-11T11:06:12.798856-07:00,2449.0,10.833883,10833.883 +35292,2025-03-11T11:06:23.630965-07:00,2493.0,10.832109,10832.109 +35293,2025-03-11T11:06:34.468584-07:00,2477.0,10.837619,10837.619 +35294,2025-03-11T11:06:45.305877-07:00,2491.0,10.837293,10837.293 +35295,2025-03-11T11:06:56.137843-07:00,2465.0,10.831966,10831.966 +35296,2025-03-11T11:07:06.984780-07:00,2491.0,10.846937,10846.937 +35297,2025-03-11T11:07:17.816905-07:00,2481.0,10.832125,10832.125 +35298,2025-03-11T11:07:28.650924-07:00,2465.0,10.834019,10834.019 +35299,2025-03-11T11:07:39.480580-07:00,2487.0,10.829656,10829.656 +35300,2025-03-11T11:07:50.308959-07:00,2411.0,10.828379,10828.379 +35301,2025-03-11T11:08:01.144586-07:00,2451.0,10.835627,10835.627 +35302,2025-03-11T11:08:11.971198-07:00,2425.0,10.826612,10826.612 +35303,2025-03-11T11:08:22.803702-07:00,2450.0,10.832504,10832.504 +35304,2025-03-11T11:08:33.645582-07:00,2480.0,10.84188,10841.88 +35305,2025-03-11T11:08:44.481910-07:00,2431.0,10.836328,10836.328 +35306,2025-03-11T11:08:55.314659-07:00,2471.0,10.832749,10832.749 +35307,2025-03-11T11:09:06.152934-07:00,2463.0,10.838275,10838.275 +35308,2025-03-11T11:09:16.989123-07:00,2480.0,10.836189,10836.189 +35309,2025-03-11T11:09:27.825808-07:00,2445.0,10.836685,10836.685 +35310,2025-03-11T11:09:38.664655-07:00,2467.0,10.838847,10838.847 +35311,2025-03-11T11:09:49.494627-07:00,2474.0,10.829972,10829.972 +35312,2025-03-11T11:10:00.328653-07:00,2386.0,10.834026,10834.026 +35313,2025-03-11T11:10:11.158399-07:00,2458.0,10.829746,10829.746 +35314,2025-03-11T11:10:21.993586-07:00,2395.0,10.835187,10835.187 +35315,2025-03-11T11:10:32.840587-07:00,2469.0,10.847001,10847.001 +35316,2025-03-11T11:10:43.674164-07:00,2463.0,10.833577,10833.577 +35317,2025-03-11T11:10:54.510128-07:00,2428.0,10.835964,10835.964 +35318,2025-03-11T11:11:05.335958-07:00,2463.0,10.82583,10825.83 +35319,2025-03-11T11:11:16.167782-07:00,2435.0,10.831824,10831.824 +35320,2025-03-11T11:11:27.005816-07:00,2427.0,10.838034,10838.034 +35321,2025-03-11T11:11:37.841848-07:00,2463.0,10.836032,10836.032 +35322,2025-03-11T11:11:48.673733-07:00,2443.0,10.831885,10831.885 +35323,2025-03-11T11:11:59.511928-07:00,2399.0,10.838195,10838.195 +35324,2025-03-11T11:12:10.356869-07:00,2445.0,10.844941,10844.941 +35325,2025-03-11T11:12:21.183734-07:00,2448.0,10.826865,10826.865 +35326,2025-03-11T11:12:32.026773-07:00,2443.0,10.843039,10843.039 +35327,2025-03-11T11:12:42.866677-07:00,2404.0,10.839904,10839.904 +35328,2025-03-11T11:12:53.702562-07:00,2450.0,10.835885,10835.885 +35329,2025-03-11T11:13:04.541162-07:00,2451.0,10.8386,10838.6 +35330,2025-03-11T11:13:15.389902-07:00,2413.0,10.84874,10848.74 +35331,2025-03-11T11:13:26.225606-07:00,2415.0,10.835704,10835.704 +35332,2025-03-11T11:13:37.062607-07:00,2402.0,10.837001,10837.001 +35333,2025-03-11T11:13:47.894906-07:00,2389.0,10.832299,10832.299 +35334,2025-03-11T11:13:58.737437-07:00,2433.0,10.842531,10842.531 +35335,2025-03-11T11:14:09.566594-07:00,2385.0,10.829157,10829.157 +35336,2025-03-11T11:14:20.403515-07:00,2383.0,10.836921,10836.921 +35337,2025-03-11T11:14:31.230637-07:00,2396.0,10.827122,10827.122 +35338,2025-03-11T11:14:42.067876-07:00,2409.0,10.837239,10837.239 +35339,2025-03-11T11:14:52.908990-07:00,2413.0,10.841114,10841.114 +35340,2025-03-11T11:15:03.736725-07:00,2431.0,10.827735,10827.735 +35341,2025-03-11T11:15:14.567585-07:00,2436.0,10.83086,10830.86 +35342,2025-03-11T11:15:25.399588-07:00,2391.0,10.832003,10832.003 +35343,2025-03-11T11:15:36.233930-07:00,2397.0,10.834342,10834.342 +35344,2025-03-11T11:15:47.071726-07:00,2435.0,10.837796,10837.796 +35345,2025-03-11T11:15:57.910586-07:00,2399.0,10.83886,10838.86 +35346,2025-03-11T11:16:08.742053-07:00,2433.0,10.831467,10831.467 +35347,2025-03-11T11:16:19.573812-07:00,2383.0,10.831759,10831.759 +35348,2025-03-11T11:16:30.407863-07:00,2352.0,10.834051,10834.051 +35349,2025-03-11T11:16:41.243579-07:00,2353.0,10.835716,10835.716 +35350,2025-03-11T11:16:52.082147-07:00,2357.0,10.838568,10838.568 +35351,2025-03-11T11:17:02.907713-07:00,2425.0,10.825566,10825.566 +35352,2025-03-11T11:17:13.741582-07:00,2349.0,10.833869,10833.869 +35353,2025-03-11T11:17:24.578837-07:00,2413.0,10.837255,10837.255 +35354,2025-03-11T11:17:35.417012-07:00,2374.0,10.838175,10838.175 +35355,2025-03-11T11:17:46.250717-07:00,2363.0,10.833705,10833.705 +35356,2025-03-11T11:17:57.088949-07:00,2347.0,10.838232,10838.232 +35357,2025-03-11T11:18:07.925038-07:00,2356.0,10.836089,10836.089 +35358,2025-03-11T11:18:18.756341-07:00,2379.0,10.831303,10831.303 +35359,2025-03-11T11:18:29.583587-07:00,2375.0,10.827246,10827.246 +35360,2025-03-11T11:18:40.408893-07:00,2411.0,10.825306,10825.306 +35361,2025-03-11T11:18:51.235893-07:00,2369.0,10.827,10827.0 +35362,2025-03-11T11:19:02.072845-07:00,2367.0,10.836952,10836.952 +35363,2025-03-11T11:19:12.910063-07:00,2327.0,10.837218,10837.218 +35364,2025-03-11T11:19:23.740708-07:00,2383.0,10.830645,10830.645 +35365,2025-03-11T11:19:34.586756-07:00,2399.0,10.846048,10846.048 +35366,2025-03-11T11:19:45.422105-07:00,2366.0,10.835349,10835.349 +35367,2025-03-11T11:19:56.247584-07:00,2332.0,10.825479,10825.479 +35368,2025-03-11T11:20:07.085844-07:00,2380.0,10.83826,10838.26 +35369,2025-03-11T11:20:17.917897-07:00,2383.0,10.832053,10832.053 +35370,2025-03-11T11:20:28.754583-07:00,2393.0,10.836686,10836.686 +35371,2025-03-11T11:20:39.589592-07:00,2384.0,10.835009,10835.009 +35372,2025-03-11T11:20:50.422627-07:00,2352.0,10.833035,10833.035 +35373,2025-03-11T11:21:01.261586-07:00,2353.0,10.838959,10838.959 +35374,2025-03-11T11:21:12.103630-07:00,2382.0,10.842044,10842.044 +35375,2025-03-11T11:21:22.936585-07:00,2386.0,10.832955,10832.955 +35376,2025-03-11T11:21:33.774374-07:00,2351.0,10.837789,10837.789 +35377,2025-03-11T11:21:44.616415-07:00,2337.0,10.842041,10842.041 +35378,2025-03-11T11:21:55.452582-07:00,2352.0,10.836167,10836.167 +35379,2025-03-11T11:22:06.293831-07:00,2347.0,10.841249,10841.249 +35380,2025-03-11T11:22:17.122626-07:00,2315.0,10.828795,10828.795 +35381,2025-03-11T11:22:27.960874-07:00,2343.0,10.838248,10838.248 +35382,2025-03-11T11:22:38.797225-07:00,2318.0,10.836351,10836.351 +35383,2025-03-11T11:22:49.634562-07:00,2317.0,10.837337,10837.337 +35384,2025-03-11T11:23:00.462583-07:00,2319.0,10.828021,10828.021 +35385,2025-03-11T11:23:11.302875-07:00,2325.0,10.840292,10840.292 +35386,2025-03-11T11:23:22.136666-07:00,2317.0,10.833791,10833.791 +35387,2025-03-11T11:23:32.979889-07:00,2364.0,10.843223,10843.223 +35388,2025-03-11T11:23:43.808759-07:00,2352.0,10.82887,10828.87 +35389,2025-03-11T11:23:54.647579-07:00,2330.0,10.83882,10838.82 +35390,2025-03-11T11:24:05.490567-07:00,2294.0,10.842988,10842.988 +35391,2025-03-11T11:24:16.328803-07:00,2337.0,10.838236,10838.236 +35392,2025-03-11T11:24:27.170988-07:00,2261.0,10.842185,10842.185 +35393,2025-03-11T11:24:38.004580-07:00,2356.0,10.833592,10833.592 +35394,2025-03-11T11:24:48.837897-07:00,2348.0,10.833317,10833.317 +35395,2025-03-11T11:24:59.671969-07:00,2298.0,10.834072,10834.072 +35396,2025-03-11T11:25:10.504741-07:00,2314.0,10.832772,10832.772 +35397,2025-03-11T11:25:21.333578-07:00,2335.0,10.828837,10828.837 +35398,2025-03-11T11:25:32.172748-07:00,2293.0,10.83917,10839.17 +35399,2025-03-11T11:25:43.010778-07:00,2331.0,10.83803,10838.03 +35400,2025-03-11T11:25:53.837562-07:00,2331.0,10.826784,10826.784 +35401,2025-03-11T11:26:04.677570-07:00,2323.0,10.840008,10840.008 +35402,2025-03-11T11:26:15.513096-07:00,2289.0,10.835526,10835.526 +35403,2025-03-11T11:26:26.346583-07:00,2291.0,10.833487,10833.487 +35404,2025-03-11T11:26:37.181641-07:00,2295.0,10.835058,10835.058 +35405,2025-03-11T11:26:48.005618-07:00,2324.0,10.823977,10823.977 +35406,2025-03-11T11:26:58.844856-07:00,2318.0,10.839238,10839.238 +35407,2025-03-11T11:27:09.681622-07:00,2320.0,10.836766,10836.766 +35408,2025-03-11T11:27:20.512708-07:00,2323.0,10.831086,10831.086 +35409,2025-03-11T11:27:31.355237-07:00,2249.0,10.842529,10842.529 +35410,2025-03-11T11:27:42.182743-07:00,2282.0,10.827506,10827.506 +35411,2025-03-11T11:27:53.025734-07:00,2292.0,10.842991,10842.991 +35412,2025-03-11T11:28:03.860891-07:00,2275.0,10.835157,10835.157 +35413,2025-03-11T11:28:14.695717-07:00,2239.0,10.834826,10834.826 +35414,2025-03-11T11:28:25.525867-07:00,2313.0,10.83015,10830.15 +35415,2025-03-11T11:28:36.362732-07:00,2304.0,10.836865,10836.865 +35416,2025-03-11T11:28:47.195587-07:00,2309.0,10.832855,10832.855 +35417,2025-03-11T11:28:58.032900-07:00,2300.0,10.837313,10837.313 +35418,2025-03-11T11:29:08.864588-07:00,2307.0,10.831688,10831.688 +35419,2025-03-11T11:29:19.702950-07:00,2246.0,10.838362,10838.362 +35420,2025-03-11T11:29:30.541143-07:00,2295.0,10.838193,10838.193 +35421,2025-03-11T11:29:41.376585-07:00,2287.0,10.835442,10835.442 +35422,2025-03-11T11:29:52.214588-07:00,2224.0,10.838003,10838.003 +35423,2025-03-11T11:30:03.057918-07:00,2273.0,10.84333,10843.33 +35424,2025-03-11T11:30:13.888852-07:00,2291.0,10.830934,10830.934 +35425,2025-03-11T11:30:24.736583-07:00,2257.0,10.847731,10847.731 +35426,2025-03-11T11:30:35.575013-07:00,2267.0,10.83843,10838.43 +35427,2025-03-11T11:30:46.417826-07:00,2279.0,10.842813,10842.813 +35428,2025-03-11T11:30:57.256583-07:00,2287.0,10.838757,10838.757 +35429,2025-03-11T11:31:08.090841-07:00,2220.0,10.834258,10834.258 +35430,2025-03-11T11:31:18.924628-07:00,2281.0,10.833787,10833.787 +35431,2025-03-11T11:31:29.756455-07:00,2237.0,10.831827,10831.827 +35432,2025-03-11T11:31:40.588508-07:00,2239.0,10.832053,10832.053 +35433,2025-03-11T11:31:51.425465-07:00,2277.0,10.836957,10836.957 +35434,2025-03-11T11:32:02.269579-07:00,2212.0,10.844114,10844.114 +35435,2025-03-11T11:32:13.104939-07:00,2197.0,10.83536,10835.36 +35436,2025-03-11T11:32:23.947608-07:00,2269.0,10.842669,10842.669 +35437,2025-03-11T11:32:34.786566-07:00,2257.0,10.838958,10838.958 +35438,2025-03-11T11:32:45.624198-07:00,2243.0,10.837632,10837.632 +35439,2025-03-11T11:32:56.465963-07:00,2218.0,10.841765,10841.765 +35440,2025-03-11T11:33:07.303642-07:00,2244.0,10.837679,10837.679 +35441,2025-03-11T11:33:18.139839-07:00,2244.0,10.836197,10836.197 +35442,2025-03-11T11:33:28.972773-07:00,2237.0,10.832934,10832.934 +35443,2025-03-11T11:33:39.804638-07:00,2205.0,10.831865,10831.865 +35444,2025-03-11T11:33:50.631588-07:00,2207.0,10.82695,10826.95 +35445,2025-03-11T11:34:01.465816-07:00,2213.0,10.834228,10834.228 +35446,2025-03-11T11:34:12.307588-07:00,2240.0,10.841772,10841.772 +35447,2025-03-11T11:34:23.143697-07:00,2215.0,10.836109,10836.109 +35448,2025-03-11T11:34:33.975153-07:00,2249.0,10.831456,10831.456 +35449,2025-03-11T11:34:44.813360-07:00,2217.0,10.838207,10838.207 +35450,2025-03-11T11:34:55.637711-07:00,2243.0,10.824351,10824.351 +35451,2025-03-11T11:35:06.475725-07:00,2227.0,10.838014,10838.014 +35452,2025-03-11T11:35:17.300703-07:00,2240.0,10.824978,10824.978 +35453,2025-03-11T11:35:28.140731-07:00,2151.0,10.840028,10840.028 +35454,2025-03-11T11:35:38.974447-07:00,2172.0,10.833716,10833.716 +35455,2025-03-11T11:35:49.806566-07:00,2234.0,10.832119,10832.119 +35456,2025-03-11T11:36:00.651858-07:00,2161.0,10.845292,10845.292 +35457,2025-03-11T11:36:11.477725-07:00,2227.0,10.825867,10825.867 +35458,2025-03-11T11:36:22.314746-07:00,2226.0,10.837021,10837.021 +35459,2025-03-11T11:36:33.153558-07:00,2224.0,10.838812,10838.812 +35460,2025-03-11T11:36:43.988598-07:00,2187.0,10.83504,10835.04 +35461,2025-03-11T11:36:54.831589-07:00,2181.0,10.842991,10842.991 +35462,2025-03-11T11:37:16.511920-07:00,2208.0,21.680331,21680.331 +35463,2025-03-11T11:37:27.348691-07:00,2176.0,10.836771,10836.771 +35464,2025-03-11T11:37:38.183201-07:00,2218.0,10.83451,10834.51 +35465,2025-03-11T11:37:49.013059-07:00,2218.0,10.829858,10829.858 +35466,2025-03-11T11:37:59.857592-07:00,2143.0,10.844533,10844.533 +35467,2025-03-11T11:38:10.687241-07:00,2131.0,10.829649,10829.649 +35468,2025-03-11T11:38:21.532830-07:00,2193.0,10.845589,10845.589 +35469,2025-03-11T11:38:32.376700-07:00,2203.0,10.84387,10843.87 +35470,2025-03-11T11:38:43.212672-07:00,2204.0,10.835972,10835.972 +35471,2025-03-11T11:38:54.047530-07:00,2206.0,10.834858,10834.858 +35472,2025-03-11T11:39:04.884644-07:00,2200.0,10.837114,10837.114 +35473,2025-03-11T11:39:15.721004-07:00,2159.0,10.83636,10836.36 +35474,2025-03-11T11:39:26.555776-07:00,2163.0,10.834772,10834.772 +35475,2025-03-11T11:39:37.394319-07:00,2159.0,10.838543,10838.543 +35476,2025-03-11T11:39:48.238102-07:00,2120.0,10.843783,10843.783 +35477,2025-03-11T11:39:59.074094-07:00,2170.0,10.835992,10835.992 +35478,2025-03-11T11:40:09.914815-07:00,2111.0,10.840721,10840.721 +35479,2025-03-11T11:40:20.739922-07:00,2189.0,10.825107,10825.107 +35480,2025-03-11T11:40:31.587182-07:00,2147.0,10.84726,10847.26 +35481,2025-03-11T11:40:42.424203-07:00,2185.0,10.837021,10837.021 +35482,2025-03-11T11:40:53.255011-07:00,2185.0,10.830808,10830.808 +35483,2025-03-11T11:41:04.099100-07:00,2182.0,10.844089,10844.089 +35484,2025-03-11T11:41:14.929683-07:00,2141.0,10.830583,10830.583 +35485,2025-03-11T11:41:25.772644-07:00,2173.0,10.842961,10842.961 +35486,2025-03-11T11:41:36.606634-07:00,2145.0,10.83399,10833.99 +35487,2025-03-11T11:41:47.445618-07:00,2151.0,10.838984,10838.984 +35488,2025-03-11T11:41:58.278018-07:00,2160.0,10.8324,10832.4 +35489,2025-03-11T11:42:09.123080-07:00,2112.0,10.845062,10845.062 +35490,2025-03-11T11:42:19.960784-07:00,2145.0,10.837704,10837.704 +35491,2025-03-11T11:42:30.798587-07:00,2173.0,10.837803,10837.803 +35492,2025-03-11T11:42:41.633267-07:00,2095.0,10.83468,10834.68 +35493,2025-03-11T11:42:52.474047-07:00,2174.0,10.84078,10840.78 +35494,2025-03-11T11:43:03.311859-07:00,2151.0,10.837812,10837.812 +35495,2025-03-11T11:43:14.154941-07:00,2173.0,10.843082,10843.082 +35496,2025-03-11T11:43:24.992217-07:00,2111.0,10.837276,10837.276 +35497,2025-03-11T11:43:35.834589-07:00,2165.0,10.842372,10842.372 +35498,2025-03-11T11:43:46.671595-07:00,2150.0,10.837006,10837.006 +35499,2025-03-11T11:43:57.515891-07:00,2094.0,10.844296,10844.296 +35500,2025-03-11T11:44:08.345588-07:00,2160.0,10.829697,10829.697 +35501,2025-03-11T11:44:19.185222-07:00,2112.0,10.839634,10839.634 +35502,2025-03-11T11:44:30.032537-07:00,2103.0,10.847315,10847.315 +35503,2025-03-11T11:44:40.865582-07:00,2159.0,10.833045,10833.045 +35504,2025-03-11T11:44:51.711591-07:00,2109.0,10.846009,10846.009 +35505,2025-03-11T11:45:02.544859-07:00,2127.0,10.833268,10833.268 +35506,2025-03-11T11:45:13.381791-07:00,2136.0,10.836932,10836.932 +35507,2025-03-11T11:45:24.222568-07:00,2113.0,10.840777,10840.777 +35508,2025-03-11T11:45:35.064906-07:00,2079.0,10.842338,10842.338 +35509,2025-03-11T11:45:45.906135-07:00,2125.0,10.841229,10841.229 +35510,2025-03-11T11:45:56.749585-07:00,2079.0,10.84345,10843.45 +35511,2025-03-11T11:46:07.580665-07:00,2113.0,10.83108,10831.08 +35512,2025-03-11T11:46:18.418344-07:00,2148.0,10.837679,10837.679 +35513,2025-03-11T11:46:29.255579-07:00,2146.0,10.837235,10837.235 +35514,2025-03-11T11:46:40.098641-07:00,2135.0,10.843062,10843.062 +35515,2025-03-11T11:46:50.929772-07:00,2093.0,10.831131,10831.131 +35516,2025-03-11T11:47:01.772595-07:00,2153.0,10.842823,10842.823 +35517,2025-03-11T11:47:12.605580-07:00,2099.0,10.832985,10832.985 +35518,2025-03-11T11:47:23.446869-07:00,2141.0,10.841289,10841.289 +35519,2025-03-11T11:47:34.283587-07:00,2143.0,10.836718,10836.718 +35520,2025-03-11T11:47:45.127586-07:00,2131.0,10.843999,10843.999 +35521,2025-03-11T11:47:55.965939-07:00,2140.0,10.838353,10838.353 +35522,2025-03-11T11:48:06.803589-07:00,2071.0,10.83765,10837.65 +35523,2025-03-11T11:48:17.639581-07:00,2131.0,10.835992,10835.992 +35524,2025-03-11T11:48:28.483584-07:00,2140.0,10.844003,10844.003 +35525,2025-03-11T11:48:39.337669-07:00,2113.0,10.854085,10854.085 +35526,2025-03-11T11:48:50.176954-07:00,2118.0,10.839285,10839.285 +35527,2025-03-11T11:49:01.028060-07:00,2067.0,10.851106,10851.106 +35528,2025-03-11T11:49:11.866674-07:00,2130.0,10.838614,10838.614 +35529,2025-03-11T11:49:22.715583-07:00,2086.0,10.848909,10848.909 +35530,2025-03-11T11:49:33.554163-07:00,2113.0,10.83858,10838.58 +35531,2025-03-11T11:49:44.396320-07:00,2091.0,10.842157,10842.157 +35532,2025-03-11T11:49:55.244581-07:00,2062.0,10.848261,10848.261 +35533,2025-03-11T11:50:06.094985-07:00,2091.0,10.850404,10850.404 +35534,2025-03-11T11:50:16.935585-07:00,2059.0,10.8406,10840.6 +35535,2025-03-11T11:50:27.776429-07:00,2114.0,10.840844,10840.844 +35536,2025-03-11T11:50:38.623918-07:00,2098.0,10.847489,10847.489 +35537,2025-03-11T11:50:49.466655-07:00,2130.0,10.842737,10842.737 +35538,2025-03-11T11:51:00.310583-07:00,2064.0,10.843928,10843.928 +35539,2025-03-11T11:51:11.163564-07:00,2112.0,10.852981,10852.981 +35540,2025-03-11T11:51:22.004578-07:00,2130.0,10.841014,10841.014 +35541,2025-03-11T11:51:32.848057-07:00,2099.0,10.843479,10843.479 +35542,2025-03-11T11:51:43.687906-07:00,2093.0,10.839849,10839.849 +35543,2025-03-11T11:51:54.535996-07:00,2058.0,10.84809,10848.09 +35544,2025-03-11T11:52:05.377715-07:00,2130.0,10.841719,10841.719 +35545,2025-03-11T11:52:16.218588-07:00,2129.0,10.840873,10840.873 +35546,2025-03-11T11:52:27.065902-07:00,2098.0,10.847314,10847.314 +35547,2025-03-11T11:52:37.900816-07:00,2111.0,10.834914,10834.914 +35548,2025-03-11T11:52:48.746590-07:00,2128.0,10.845774,10845.774 +35549,2025-03-11T11:52:59.589891-07:00,2128.0,10.843301,10843.301 +35550,2025-03-11T11:53:10.425918-07:00,2097.0,10.836027,10836.027 +35551,2025-03-11T11:53:21.273587-07:00,2112.0,10.847669,10847.669 +35552,2025-03-11T11:53:32.115584-07:00,2128.0,10.841997,10841.997 +35553,2025-03-11T11:53:42.952583-07:00,2096.0,10.836999,10836.999 +35554,2025-03-11T11:53:53.796908-07:00,2111.0,10.844325,10844.325 +35555,2025-03-11T11:54:04.646632-07:00,2073.0,10.849724,10849.724 +35556,2025-03-11T11:54:15.484940-07:00,2086.0,10.838308,10838.308 +35557,2025-03-11T11:54:26.327587-07:00,2060.0,10.842647,10842.647 +35558,2025-03-11T11:54:37.177336-07:00,2119.0,10.849749,10849.749 +35559,2025-03-11T11:54:48.019862-07:00,2096.0,10.842526,10842.526 +35560,2025-03-11T11:54:58.867845-07:00,2071.0,10.847983,10847.983 +35561,2025-03-11T11:55:09.711001-07:00,2111.0,10.843156,10843.156 +35562,2025-03-11T11:55:20.559939-07:00,2064.0,10.848938,10848.938 +35563,2025-03-11T11:55:31.396853-07:00,2119.0,10.836914,10836.914 +35564,2025-03-11T11:55:42.240786-07:00,2067.0,10.843933,10843.933 +35565,2025-03-11T11:55:53.086992-07:00,2111.0,10.846206,10846.206 +35566,2025-03-11T11:56:03.932588-07:00,2098.0,10.845596,10845.596 +35567,2025-03-11T11:56:14.769591-07:00,2079.0,10.837003,10837.003 +35568,2025-03-11T11:56:25.609058-07:00,2082.0,10.839467,10839.467 +35569,2025-03-11T11:56:36.450794-07:00,2081.0,10.841736,10841.736 +35570,2025-03-11T11:56:47.283586-07:00,2111.0,10.832792,10832.792 +35571,2025-03-11T11:56:58.121855-07:00,2117.0,10.838269,10838.269 +35572,2025-03-11T11:57:08.962041-07:00,2113.0,10.840186,10840.186 +35573,2025-03-11T11:57:19.800566-07:00,2112.0,10.838525,10838.525 +35574,2025-03-11T11:57:30.644585-07:00,2046.0,10.844019,10844.019 +35575,2025-03-11T11:57:41.482854-07:00,2079.0,10.838269,10838.269 +35576,2025-03-11T11:57:52.322817-07:00,2112.0,10.839963,10839.963 +35577,2025-03-11T11:58:03.159914-07:00,2067.0,10.837097,10837.097 +35578,2025-03-11T11:58:14.004590-07:00,2063.0,10.844676,10844.676 +35579,2025-03-11T11:58:24.835691-07:00,2090.0,10.831101,10831.101 +35580,2025-03-11T11:58:35.662196-07:00,2031.0,10.826505,10826.505 +35581,2025-03-11T11:58:46.504163-07:00,2032.0,10.841967,10841.967 +35582,2025-03-11T11:58:57.336642-07:00,2077.0,10.832479,10832.479 +35583,2025-03-11T11:59:08.178588-07:00,2062.0,10.841946,10841.946 +35584,2025-03-11T11:59:19.023317-07:00,2096.0,10.844729,10844.729 +35585,2025-03-11T11:59:29.860002-07:00,2111.0,10.836685,10836.685 +35586,2025-03-11T11:59:40.698790-07:00,2074.0,10.838788,10838.788 +35587,2025-03-11T11:59:51.537042-07:00,2097.0,10.838252,10838.252 +35588,2025-03-11T12:00:02.368783-07:00,2030.0,10.831741,10831.741 +35589,2025-03-11T12:00:13.204756-07:00,2096.0,10.835973,10835.973 +35590,2025-03-11T12:00:24.038611-07:00,2112.0,10.833855,10833.855 +35591,2025-03-11T12:00:34.878794-07:00,2083.0,10.840183,10840.183 +35592,2025-03-11T12:00:45.717663-07:00,2065.0,10.838869,10838.869 +35593,2025-03-11T12:00:56.553926-07:00,2107.0,10.836263,10836.263 +35594,2025-03-11T12:01:07.395829-07:00,2110.0,10.841903,10841.903 +35595,2025-03-11T12:01:18.227587-07:00,2110.0,10.831758,10831.758 +35596,2025-03-11T12:01:29.066980-07:00,2109.0,10.839393,10839.393 +35597,2025-03-11T12:01:39.910091-07:00,2018.0,10.843111,10843.111 +35598,2025-03-11T12:01:50.746765-07:00,2019.0,10.836674,10836.674 +35599,2025-03-11T12:02:01.579171-07:00,2073.0,10.832406,10832.406 +35600,2025-03-11T12:02:12.427027-07:00,2107.0,10.847856,10847.856 +35601,2025-03-11T12:02:23.264588-07:00,2031.0,10.837561,10837.561 +35602,2025-03-11T12:02:34.097920-07:00,2035.0,10.833332,10833.332 +35603,2025-03-11T12:02:44.938841-07:00,2035.0,10.840921,10840.921 +35604,2025-03-11T12:02:55.781587-07:00,2075.0,10.842746,10842.746 +35605,2025-03-11T12:03:06.627005-07:00,2086.0,10.845418,10845.418 +35606,2025-03-11T12:03:17.463749-07:00,2099.0,10.836744,10836.744 +35607,2025-03-11T12:03:28.311495-07:00,2107.0,10.847746,10847.746 +35608,2025-03-11T12:03:39.143572-07:00,2106.0,10.832077,10832.077 +35609,2025-03-11T12:03:49.981704-07:00,2065.0,10.838132,10838.132 +35610,2025-03-11T12:04:00.828172-07:00,2102.0,10.846468,10846.468 +35611,2025-03-11T12:04:11.660586-07:00,2019.0,10.832414,10832.414 +35612,2025-03-11T12:04:22.509684-07:00,2054.0,10.849098,10849.098 +35613,2025-03-11T12:04:33.354640-07:00,2100.0,10.844956,10844.956 +35614,2025-03-11T12:04:44.191552-07:00,2037.0,10.836912,10836.912 +35615,2025-03-11T12:04:55.028792-07:00,2086.0,10.83724,10837.24 +35616,2025-03-11T12:05:05.864590-07:00,2041.0,10.835798,10835.798 +35617,2025-03-11T12:05:16.703974-07:00,2087.0,10.839384,10839.384 +35618,2025-03-11T12:05:27.537028-07:00,2046.0,10.833054,10833.054 +35619,2025-03-11T12:05:38.372920-07:00,2081.0,10.835892,10835.892 +35620,2025-03-11T12:05:49.216112-07:00,2019.0,10.843192,10843.192 +35621,2025-03-11T12:06:00.052717-07:00,2100.0,10.836605,10836.605 +35622,2025-03-11T12:06:10.895581-07:00,2067.0,10.842864,10842.864 +35623,2025-03-11T12:06:21.733801-07:00,2018.0,10.83822,10838.22 +35624,2025-03-11T12:06:32.574736-07:00,2091.0,10.840935,10840.935 +35625,2025-03-11T12:06:43.408767-07:00,2105.0,10.834031,10834.031 +35626,2025-03-11T12:06:54.255680-07:00,2090.0,10.846913,10846.913 +35627,2025-03-11T12:07:03.331123-07:00,2076.0,9.075443,9075.443 +35628,2025-03-11T12:07:05.109776-07:00,2093.0,1.778653,1778.653 +35629,2025-03-11T12:07:15.943874-07:00,2065.0,10.834098,10834.098 +35630,2025-03-11T12:07:26.775344-07:00,2100.0,10.83147,10831.47 +35631,2025-03-11T12:07:37.617982-07:00,2059.0,10.842638,10842.638 +35632,2025-03-11T12:07:48.467157-07:00,2096.0,10.849175,10849.175 +35633,2025-03-11T12:07:59.306015-07:00,2022.0,10.838858,10838.858 +35634,2025-03-11T12:08:08.235652-07:00,2089.0,8.929637,8929.637 +35635,2025-03-11T12:08:10.149114-07:00,2057.0,1.913462,1913.462 +35636,2025-03-11T12:08:20.991194-07:00,2093.0,10.84208,10842.08 +35637,2025-03-11T12:08:31.831873-07:00,2006.0,10.840679,10840.679 +35638,2025-03-11T12:08:42.665923-07:00,2033.0,10.83405,10834.05 +35639,2025-03-11T12:08:53.507558-07:00,2039.0,10.841635,10841.635 +35640,2025-03-11T12:09:04.352907-07:00,2055.0,10.845349,10845.349 +35641,2025-03-11T12:09:15.188942-07:00,2093.0,10.836035,10836.035 +35642,2025-03-11T12:09:26.031177-07:00,2092.0,10.842235,10842.235 +35643,2025-03-11T12:09:36.868850-07:00,2030.0,10.837673,10837.673 +35644,2025-03-11T12:09:47.709867-07:00,2094.0,10.841017,10841.017 +35645,2025-03-11T12:09:58.544873-07:00,2091.0,10.835006,10835.006 +35646,2025-03-11T12:10:09.370869-07:00,2047.0,10.825996,10825.996 +35647,2025-03-11T12:10:20.208843-07:00,2082.0,10.837974,10837.974 +35648,2025-03-11T12:10:31.051199-07:00,2089.0,10.842356,10842.356 +35649,2025-03-11T12:10:41.894455-07:00,1991.0,10.843256,10843.256 +35650,2025-03-11T12:10:52.733075-07:00,2022.0,10.83862,10838.62 +35651,2025-03-11T12:11:03.557236-07:00,2054.0,10.824161,10824.161 +35652,2025-03-11T12:11:14.394872-07:00,1990.0,10.837636,10837.636 +35653,2025-03-11T12:11:25.226232-07:00,2039.0,10.83136,10831.36 +35654,2025-03-11T12:11:36.070898-07:00,2013.0,10.844666,10844.666 +35655,2025-03-11T12:11:46.913095-07:00,2043.0,10.842197,10842.197 +35656,2025-03-11T12:11:57.745871-07:00,2007.0,10.832776,10832.776 +35657,2025-03-11T12:12:08.587033-07:00,2006.0,10.841162,10841.162 +35658,2025-03-11T12:12:19.423314-07:00,2064.0,10.836281,10836.281 +35659,2025-03-11T12:12:30.258905-07:00,2093.0,10.835591,10835.591 +35660,2025-03-11T12:12:41.095398-07:00,2032.0,10.836493,10836.493 +35661,2025-03-11T12:12:51.935099-07:00,2013.0,10.839701,10839.701 +35662,2025-03-11T12:13:02.774011-07:00,2031.0,10.838912,10838.912 +35663,2025-03-11T12:13:13.615915-07:00,2032.0,10.841904,10841.904 +35664,2025-03-11T12:13:24.449776-07:00,2037.0,10.833861,10833.861 +35665,2025-03-11T12:13:35.287893-07:00,2087.0,10.838117,10838.117 +35666,2025-03-11T12:13:46.135869-07:00,2059.0,10.847976,10847.976 +35667,2025-03-11T12:13:56.969179-07:00,2031.0,10.83331,10833.31 +35668,2025-03-11T12:14:07.821407-07:00,2085.0,10.852228,10852.228 +35669,2025-03-11T12:14:18.660092-07:00,2084.0,10.838685,10838.685 +35670,2025-03-11T12:14:29.494874-07:00,2075.0,10.834782,10834.782 +35671,2025-03-11T12:14:40.334405-07:00,2040.0,10.839531,10839.531 +35672,2025-03-11T12:14:51.176123-07:00,2063.0,10.841718,10841.718 +35673,2025-03-11T12:15:02.012934-07:00,2041.0,10.836811,10836.811 +35674,2025-03-11T12:15:12.858171-07:00,2035.0,10.845237,10845.237 +35675,2025-03-11T12:15:23.701867-07:00,2046.0,10.843696,10843.696 +35676,2025-03-11T12:15:34.532865-07:00,2000.0,10.830998,10830.998 +35677,2025-03-11T12:15:45.376114-07:00,2001.0,10.843249,10843.249 +35678,2025-03-11T12:15:56.215216-07:00,2037.0,10.839102,10839.102 +35679,2025-03-11T12:16:07.061397-07:00,2037.0,10.846181,10846.181 +35680,2025-03-11T12:16:17.900870-07:00,2033.0,10.839473,10839.473 +35681,2025-03-11T12:16:28.737204-07:00,2031.0,10.836334,10836.334 +35682,2025-03-11T12:16:39.579755-07:00,2058.0,10.842551,10842.551 +35683,2025-03-11T12:16:50.422846-07:00,2082.0,10.843091,10843.091 +35684,2025-03-11T12:17:01.269861-07:00,2065.0,10.847015,10847.015 +35685,2025-03-11T12:17:12.109874-07:00,2042.0,10.840013,10840.013 +35686,2025-03-11T12:17:22.941896-07:00,2070.0,10.832022,10832.022 +35687,2025-03-11T12:17:33.783910-07:00,2073.0,10.842014,10842.014 +35688,2025-03-11T12:17:44.618657-07:00,1989.0,10.834747,10834.747 +35689,2025-03-11T12:17:55.470143-07:00,2068.0,10.851486,10851.486 +35690,2025-03-11T12:18:06.312786-07:00,2081.0,10.842643,10842.643 +35691,2025-03-11T12:18:17.149922-07:00,2080.0,10.837136,10837.136 +35692,2025-03-11T12:18:27.988865-07:00,2047.0,10.838943,10838.943 +35693,2025-03-11T12:18:38.828323-07:00,1981.0,10.839458,10839.458 +35694,2025-03-11T12:18:49.661147-07:00,2021.0,10.832824,10832.824 +35695,2025-03-11T12:19:00.495155-07:00,2079.0,10.834008,10834.008 +35696,2025-03-11T12:19:11.332249-07:00,2044.0,10.837094,10837.094 +35697,2025-03-11T12:19:22.180870-07:00,2045.0,10.848621,10848.621 +35698,2025-03-11T12:19:33.023014-07:00,2062.0,10.842144,10842.144 +35699,2025-03-11T12:19:43.856072-07:00,2081.0,10.833058,10833.058 +35700,2025-03-11T12:19:54.698175-07:00,2044.0,10.842103,10842.103 +35701,2025-03-11T12:20:05.530086-07:00,2003.0,10.831911,10831.911 +35702,2025-03-11T12:20:16.373299-07:00,2037.0,10.843213,10843.213 +35703,2025-03-11T12:20:27.206867-07:00,2079.0,10.833568,10833.568 +35704,2025-03-11T12:20:38.045064-07:00,1999.0,10.838197,10838.197 +35705,2025-03-11T12:20:48.887878-07:00,2077.0,10.842814,10842.814 +35706,2025-03-11T12:20:59.729890-07:00,2078.0,10.842012,10842.012 +35707,2025-03-11T12:21:10.573561-07:00,2078.0,10.843671,10843.671 +35708,2025-03-11T12:21:21.416098-07:00,2037.0,10.842537,10842.537 +35709,2025-03-11T12:21:32.254426-07:00,2030.0,10.838328,10838.328 +35710,2025-03-11T12:21:43.090857-07:00,2080.0,10.836431,10836.431 +35711,2025-03-11T12:21:53.932849-07:00,2055.0,10.841992,10841.992 +35712,2025-03-11T12:22:04.770992-07:00,2082.0,10.838143,10838.143 +35713,2025-03-11T12:22:15.613175-07:00,2079.0,10.842183,10842.183 +35714,2025-03-11T12:22:26.451127-07:00,2081.0,10.837952,10837.952 +35715,2025-03-11T12:22:37.294875-07:00,1989.0,10.843748,10843.748 +35716,2025-03-11T12:22:48.131249-07:00,2083.0,10.836374,10836.374 +35717,2025-03-11T12:22:58.974340-07:00,2079.0,10.843091,10843.091 +35718,2025-03-11T12:23:09.815234-07:00,2059.0,10.840894,10840.894 +35719,2025-03-11T12:23:20.645872-07:00,2026.0,10.830638,10830.638 +35720,2025-03-11T12:23:31.494154-07:00,2041.0,10.848282,10848.282 +35721,2025-03-11T12:23:42.325868-07:00,2015.0,10.831714,10831.714 +35722,2025-03-11T12:23:53.169117-07:00,2066.0,10.843249,10843.249 +35723,2025-03-11T12:24:04.007322-07:00,2078.0,10.838205,10838.205 +35724,2025-03-11T12:24:14.837925-07:00,2047.0,10.830603,10830.603 +35725,2025-03-11T12:24:25.681391-07:00,2016.0,10.843466,10843.466 +35726,2025-03-11T12:24:36.516231-07:00,1991.0,10.83484,10834.84 +35727,2025-03-11T12:24:58.193096-07:00,2032.0,21.676865,21676.865 +35728,2025-03-11T12:25:09.029984-07:00,2062.0,10.836888,10836.888 +35729,2025-03-11T12:25:19.866378-07:00,2057.0,10.836394,10836.394 +35730,2025-03-11T12:25:30.705092-07:00,2003.0,10.838714,10838.714 +35731,2025-03-11T12:25:41.557875-07:00,2084.0,10.852783,10852.783 +35732,2025-03-11T12:25:52.389221-07:00,2039.0,10.831346,10831.346 +35733,2025-03-11T12:26:03.228877-07:00,2082.0,10.839656,10839.656 +35734,2025-03-11T12:26:14.077885-07:00,2038.0,10.849008,10849.008 +35735,2025-03-11T12:26:24.908717-07:00,2022.0,10.830832,10830.832 +35736,2025-03-11T12:26:35.743869-07:00,2064.0,10.835152,10835.152 +35737,2025-03-11T12:26:46.588866-07:00,2021.0,10.844997,10844.997 +35738,2025-03-11T12:26:57.422907-07:00,2085.0,10.834041,10834.041 +35739,2025-03-11T12:27:08.257869-07:00,2084.0,10.834962,10834.962 +35740,2025-03-11T12:27:19.090048-07:00,2085.0,10.832179,10832.179 +35741,2025-03-11T12:27:29.920866-07:00,2010.0,10.830818,10830.818 +35742,2025-03-11T12:27:40.760865-07:00,2002.0,10.839999,10839.999 +35743,2025-03-11T12:27:51.597868-07:00,2032.0,10.837003,10837.003 +35744,2025-03-11T12:28:02.440240-07:00,2081.0,10.842372,10842.372 +35745,2025-03-11T12:28:13.281871-07:00,2013.0,10.841631,10841.631 +35746,2025-03-11T12:28:24.108878-07:00,2090.0,10.827007,10827.007 +35747,2025-03-11T12:28:34.957046-07:00,2091.0,10.848168,10848.168 +35748,2025-03-11T12:28:45.794865-07:00,2043.0,10.837819,10837.819 +35749,2025-03-11T12:28:56.631947-07:00,2070.0,10.837082,10837.082 +35750,2025-03-11T12:29:07.471063-07:00,2037.0,10.839116,10839.116 +35751,2025-03-11T12:29:18.307864-07:00,2075.0,10.836801,10836.801 +35752,2025-03-11T12:29:29.151867-07:00,2042.0,10.844003,10844.003 +35753,2025-03-11T12:29:39.983967-07:00,2058.0,10.8321,10832.1 +35754,2025-03-11T12:29:50.819856-07:00,2086.0,10.835889,10835.889 +35755,2025-03-11T12:30:01.662867-07:00,2096.0,10.843011,10843.011 +35756,2025-03-11T12:30:12.505019-07:00,2067.0,10.842152,10842.152 +35757,2025-03-11T12:30:23.341149-07:00,2039.0,10.83613,10836.13 +35758,2025-03-11T12:30:34.177122-07:00,2095.0,10.835973,10835.973 +35759,2025-03-11T12:30:45.010309-07:00,2097.0,10.833187,10833.187 +35760,2025-03-11T12:30:55.850011-07:00,2026.0,10.839702,10839.702 +35761,2025-03-11T12:31:06.687111-07:00,2087.0,10.8371,10837.1 +35762,2025-03-11T12:31:17.518199-07:00,2083.0,10.831088,10831.088 +35763,2025-03-11T12:31:28.361916-07:00,2097.0,10.843717,10843.717 +35764,2025-03-11T12:31:39.204961-07:00,2057.0,10.843045,10843.045 +35765,2025-03-11T12:31:50.042921-07:00,2098.0,10.83796,10837.96 +35766,2025-03-11T12:32:00.879881-07:00,2093.0,10.83696,10836.96 +35767,2025-03-11T12:32:11.707126-07:00,2090.0,10.827245,10827.245 +35768,2025-03-11T12:32:22.541216-07:00,2096.0,10.83409,10834.09 +35769,2025-03-11T12:32:33.369872-07:00,2096.0,10.828656,10828.656 +35770,2025-03-11T12:32:44.202451-07:00,2039.0,10.832579,10832.579 +35771,2025-03-11T12:32:55.034202-07:00,2037.0,10.831751,10831.751 +35772,2025-03-11T12:33:05.870096-07:00,2066.0,10.835894,10835.894 +35773,2025-03-11T12:33:16.708127-07:00,2087.0,10.838031,10838.031 +35774,2025-03-11T12:33:27.545129-07:00,2062.0,10.837002,10837.002 +35775,2025-03-11T12:33:38.380251-07:00,2064.0,10.835122,10835.122 +35776,2025-03-11T12:33:49.220929-07:00,2039.0,10.840678,10840.678 +35777,2025-03-11T12:34:00.063937-07:00,2010.0,10.843008,10843.008 +35778,2025-03-11T12:34:10.895179-07:00,2080.0,10.831242,10831.242 +35779,2025-03-11T12:34:21.733268-07:00,2075.0,10.838089,10838.089 +35780,2025-03-11T12:34:32.575769-07:00,2037.0,10.842501,10842.501 +35781,2025-03-11T12:34:43.413607-07:00,2032.0,10.837838,10837.838 +35782,2025-03-11T12:34:54.251404-07:00,2066.0,10.837797,10837.797 +35783,2025-03-11T12:35:05.091842-07:00,2077.0,10.840438,10840.438 +35784,2025-03-11T12:35:15.925871-07:00,2067.0,10.834029,10834.029 +35785,2025-03-11T12:35:26.763061-07:00,2063.0,10.83719,10837.19 +35786,2025-03-11T12:35:37.604015-07:00,2032.0,10.840954,10840.954 +35787,2025-03-11T12:35:48.443873-07:00,1985.0,10.839858,10839.858 +35788,2025-03-11T12:35:59.281749-07:00,2027.0,10.837876,10837.876 +35789,2025-03-11T12:36:10.123623-07:00,2073.0,10.841874,10841.874 +35790,2025-03-11T12:36:20.955872-07:00,2018.0,10.832249,10832.249 +35791,2025-03-11T12:36:31.786206-07:00,2015.0,10.830334,10830.334 +35792,2025-03-11T12:36:42.619920-07:00,2018.0,10.833714,10833.714 +35793,2025-03-11T12:36:53.451496-07:00,2030.0,10.831576,10831.576 +35794,2025-03-11T12:37:04.291553-07:00,2044.0,10.840057,10840.057 +35795,2025-03-11T12:37:15.126124-07:00,1977.0,10.834571,10834.571 +35796,2025-03-11T12:37:25.965867-07:00,2068.0,10.839743,10839.743 +35797,2025-03-11T12:37:36.794870-07:00,2071.0,10.829003,10829.003 +35798,2025-03-11T12:37:47.640873-07:00,2063.0,10.846003,10846.003 +35799,2025-03-11T12:37:58.475223-07:00,2000.0,10.83435,10834.35 +35800,2025-03-11T12:38:09.319579-07:00,2021.0,10.844356,10844.356 +35801,2025-03-11T12:38:20.156227-07:00,2022.0,10.836648,10836.648 +35802,2025-03-11T12:38:30.988875-07:00,2032.0,10.832648,10832.648 +35803,2025-03-11T12:38:41.823001-07:00,2029.0,10.834126,10834.126 +35804,2025-03-11T12:38:52.655867-07:00,2029.0,10.832866,10832.866 +35805,2025-03-11T12:39:03.489307-07:00,2057.0,10.83344,10833.44 +35806,2025-03-11T12:39:14.318916-07:00,2000.0,10.829609,10829.609 +35807,2025-03-11T12:39:25.162625-07:00,1983.0,10.843709,10843.709 +35808,2025-03-11T12:39:35.996157-07:00,2039.0,10.833532,10833.532 +35809,2025-03-11T12:39:46.831598-07:00,2064.0,10.835441,10835.441 +35810,2025-03-11T12:39:57.663389-07:00,2022.0,10.831791,10831.791 +35811,2025-03-11T12:40:08.500101-07:00,2064.0,10.836712,10836.712 +35812,2025-03-11T12:40:19.329873-07:00,2013.0,10.829772,10829.772 +35813,2025-03-11T12:40:30.166159-07:00,2011.0,10.836286,10836.286 +35814,2025-03-11T12:40:40.991867-07:00,2066.0,10.825708,10825.708 +35815,2025-03-11T12:40:51.827524-07:00,2065.0,10.835657,10835.657 +35816,2025-03-11T12:41:02.659864-07:00,2037.0,10.83234,10832.34 +35817,2025-03-11T12:41:13.492175-07:00,1982.0,10.832311,10832.311 +35818,2025-03-11T12:41:24.331175-07:00,1988.0,10.839,10839.0 +35819,2025-03-11T12:41:35.162073-07:00,2065.0,10.830898,10830.898 +35820,2025-03-11T12:41:46.000203-07:00,2065.0,10.83813,10838.13 +35821,2025-03-11T12:41:56.848105-07:00,2068.0,10.847902,10847.902 +35822,2025-03-11T12:42:07.684863-07:00,2043.0,10.836758,10836.758 +35823,2025-03-11T12:42:18.522868-07:00,2025.0,10.838005,10838.005 +35824,2025-03-11T12:42:29.349873-07:00,1985.0,10.827005,10827.005 +35825,2025-03-11T12:42:40.181212-07:00,2018.0,10.831339,10831.339 +35826,2025-03-11T12:42:51.020732-07:00,2065.0,10.83952,10839.52 +35827,2025-03-11T12:43:01.854107-07:00,2064.0,10.833375,10833.375 +35828,2025-03-11T12:43:12.697043-07:00,1984.0,10.842936,10842.936 +35829,2025-03-11T12:43:23.537190-07:00,1991.0,10.840147,10840.147 +35830,2025-03-11T12:43:34.373118-07:00,2060.0,10.835928,10835.928 +35831,2025-03-11T12:43:56.054051-07:00,2061.0,21.680933,21680.933 +35832,2025-03-11T12:44:06.885407-07:00,2035.0,10.831356,10831.356 +35833,2025-03-11T12:44:17.721871-07:00,1987.0,10.836464,10836.464 +35834,2025-03-11T12:44:28.564285-07:00,2016.0,10.842414,10842.414 +35835,2025-03-11T12:44:39.406955-07:00,2000.0,10.84267,10842.67 +35836,2025-03-11T12:44:50.240841-07:00,2023.0,10.833886,10833.886 +35837,2025-03-11T12:45:01.084325-07:00,2055.0,10.843484,10843.484 +35838,2025-03-11T12:45:11.919865-07:00,2046.0,10.83554,10835.54 +35839,2025-03-11T12:45:22.745873-07:00,2010.0,10.826008,10826.008 +35840,2025-03-11T12:45:33.582422-07:00,2003.0,10.836549,10836.549 +35841,2025-03-11T12:45:44.411867-07:00,2061.0,10.829445,10829.445 +35842,2025-03-11T12:45:55.241492-07:00,2064.0,10.829625,10829.625 +35843,2025-03-11T12:46:06.072865-07:00,2011.0,10.831373,10831.373 +35844,2025-03-11T12:46:16.917867-07:00,2063.0,10.845002,10845.002 +35845,2025-03-11T12:46:27.755819-07:00,1984.0,10.837952,10837.952 +35846,2025-03-11T12:46:38.586011-07:00,1994.0,10.830192,10830.192 +35847,2025-03-11T12:46:49.423292-07:00,2042.0,10.837281,10837.281 +35848,2025-03-11T12:47:00.266555-07:00,1979.0,10.843263,10843.263 +35849,2025-03-11T12:47:11.108869-07:00,2035.0,10.842314,10842.314 +35850,2025-03-11T12:47:21.939871-07:00,2065.0,10.831002,10831.002 +35851,2025-03-11T12:47:32.778083-07:00,2059.0,10.838212,10838.212 +35852,2025-03-11T12:47:43.611052-07:00,2027.0,10.832969,10832.969 +35853,2025-03-11T12:47:54.437341-07:00,1997.0,10.826289,10826.289 +35854,2025-03-11T12:48:05.276924-07:00,1989.0,10.839583,10839.583 +35855,2025-03-11T12:48:16.111873-07:00,2022.0,10.834949,10834.949 +35856,2025-03-11T12:48:26.949384-07:00,2064.0,10.837511,10837.511 +35857,2025-03-11T12:48:37.794509-07:00,1983.0,10.845125,10845.125 +35858,2025-03-11T12:48:48.625470-07:00,1978.0,10.830961,10830.961 +35859,2025-03-11T12:48:59.466667-07:00,1985.0,10.841197,10841.197 +35860,2025-03-11T12:49:10.303874-07:00,1998.0,10.837207,10837.207 +35861,2025-03-11T12:49:21.146918-07:00,2064.0,10.843044,10843.044 +35862,2025-03-11T12:49:31.989023-07:00,2064.0,10.842105,10842.105 +35863,2025-03-11T12:49:42.824321-07:00,2032.0,10.835298,10835.298 +35864,2025-03-11T12:49:53.669416-07:00,1982.0,10.845095,10845.095 +35865,2025-03-11T12:50:04.507257-07:00,1987.0,10.837841,10837.841 +35866,2025-03-11T12:50:15.345216-07:00,2059.0,10.837959,10837.959 +35867,2025-03-11T12:50:26.194880-07:00,2059.0,10.849664,10849.664 +35868,2025-03-11T12:50:37.033111-07:00,2065.0,10.838231,10838.231 +35869,2025-03-11T12:50:47.875861-07:00,2064.0,10.84275,10842.75 +35870,2025-03-11T12:50:58.718875-07:00,2021.0,10.843014,10843.014 +35871,2025-03-11T12:51:09.555922-07:00,2059.0,10.837047,10837.047 +35872,2025-03-11T12:51:20.395955-07:00,2023.0,10.840033,10840.033 +35873,2025-03-11T12:51:31.222130-07:00,2042.0,10.826175,10826.175 +35874,2025-03-11T12:51:42.056091-07:00,2000.0,10.833961,10833.961 +35875,2025-03-11T12:51:52.891985-07:00,2043.0,10.835894,10835.894 +35876,2025-03-11T12:52:03.726756-07:00,2022.0,10.834771,10834.771 +35877,2025-03-11T12:52:14.568126-07:00,2067.0,10.84137,10841.37 +35878,2025-03-11T12:52:25.411085-07:00,2064.0,10.842959,10842.959 +35879,2025-03-11T12:52:36.242492-07:00,2059.0,10.831407,10831.407 +35880,2025-03-11T12:52:47.081076-07:00,2011.0,10.838584,10838.584 +35881,2025-03-11T12:52:57.925868-07:00,2009.0,10.844792,10844.792 +35882,2025-03-11T12:53:08.760173-07:00,2065.0,10.834305,10834.305 +35883,2025-03-11T12:53:19.602005-07:00,2009.0,10.841832,10841.832 +35884,2025-03-11T12:53:30.438093-07:00,2071.0,10.836088,10836.088 +35885,2025-03-11T12:53:41.278924-07:00,1990.0,10.840831,10840.831 +35886,2025-03-11T12:53:52.124200-07:00,1981.0,10.845276,10845.276 +35887,2025-03-11T12:54:02.954227-07:00,2073.0,10.830027,10830.027 +35888,2025-03-11T12:54:13.807123-07:00,2023.0,10.852896,10852.896 +35889,2025-03-11T12:54:24.644212-07:00,1987.0,10.837089,10837.089 +35890,2025-03-11T12:54:35.485939-07:00,2047.0,10.841727,10841.727 +35891,2025-03-11T12:54:46.328823-07:00,2036.0,10.842884,10842.884 +35892,2025-03-11T12:54:57.172308-07:00,2047.0,10.843485,10843.485 +35893,2025-03-11T12:55:08.014770-07:00,2025.0,10.842462,10842.462 +35894,2025-03-11T12:55:18.850162-07:00,2003.0,10.835392,10835.392 +35895,2025-03-11T12:55:29.692923-07:00,2068.0,10.842761,10842.761 +35896,2025-03-11T12:55:40.539869-07:00,1991.0,10.846946,10846.946 +35897,2025-03-11T12:55:51.378149-07:00,2063.0,10.83828,10838.28 +35898,2025-03-11T12:56:02.215914-07:00,1999.0,10.837765,10837.765 +35899,2025-03-11T12:56:13.061190-07:00,2065.0,10.845276,10845.276 +35900,2025-03-11T12:56:23.909999-07:00,2067.0,10.848809,10848.809 +35901,2025-03-11T12:56:34.742323-07:00,2009.0,10.832324,10832.324 +35902,2025-03-11T12:56:45.572108-07:00,2063.0,10.829785,10829.785 +35903,2025-03-11T12:56:56.408869-07:00,1993.0,10.836761,10836.761 +35904,2025-03-11T12:57:07.247991-07:00,2066.0,10.839122,10839.122 +35905,2025-03-11T12:57:18.090346-07:00,2032.0,10.842355,10842.355 +35906,2025-03-11T12:57:28.927859-07:00,2074.0,10.837513,10837.513 +35907,2025-03-11T12:57:39.758602-07:00,2071.0,10.830743,10830.743 +35908,2025-03-11T12:57:50.597232-07:00,2072.0,10.83863,10838.63 +35909,2025-03-11T12:58:01.433876-07:00,2075.0,10.836644,10836.644 +35910,2025-03-11T12:58:12.266052-07:00,2080.0,10.832176,10832.176 +35911,2025-03-11T12:58:23.103868-07:00,2034.0,10.837816,10837.816 +35912,2025-03-11T12:58:33.936318-07:00,2045.0,10.83245,10832.45 +35913,2025-03-11T12:58:44.770469-07:00,2011.0,10.834151,10834.151 +35914,2025-03-11T12:58:55.603387-07:00,2082.0,10.832918,10832.918 +35915,2025-03-11T12:59:06.443151-07:00,2020.0,10.839764,10839.764 +35916,2025-03-11T12:59:17.282891-07:00,1982.0,10.83974,10839.74 +35917,2025-03-11T12:59:28.115263-07:00,2073.0,10.832372,10832.372 +35918,2025-03-11T12:59:38.965204-07:00,2035.0,10.849941,10849.941 +35919,2025-03-11T12:59:49.795848-07:00,2070.0,10.830644,10830.644 +35920,2025-03-11T13:00:00.638873-07:00,2072.0,10.843025,10843.025 +35921,2025-03-11T13:00:11.477110-07:00,2067.0,10.838237,10838.237 +35922,2025-03-11T13:00:33.154142-07:00,1993.0,21.677032,21677.032 +35923,2025-03-11T13:00:44.000867-07:00,2032.0,10.846725,10846.725 +35924,2025-03-11T13:00:54.844202-07:00,2077.0,10.843335,10843.335 +35925,2025-03-11T13:01:05.686621-07:00,2062.0,10.842419,10842.419 +35926,2025-03-11T13:01:16.518998-07:00,2064.0,10.832377,10832.377 +35927,2025-03-11T13:01:27.366010-07:00,1985.0,10.847012,10847.012 +35928,2025-03-11T13:01:38.205276-07:00,1988.0,10.839266,10839.266 +35929,2025-03-11T13:01:49.036868-07:00,1947.0,10.831592,10831.592 +35930,2025-03-11T13:01:59.882500-07:00,2031.0,10.845632,10845.632 +35931,2025-03-11T13:02:10.719332-07:00,2017.0,10.836832,10836.832 +35932,2025-03-11T13:02:21.555868-07:00,2079.0,10.836536,10836.536 +35933,2025-03-11T13:02:32.386867-07:00,2074.0,10.830999,10830.999 +35934,2025-03-11T13:02:43.218056-07:00,1988.0,10.831189,10831.189 +35935,2025-03-11T13:02:54.056140-07:00,2074.0,10.838084,10838.084 +35936,2025-03-11T13:03:04.888552-07:00,2078.0,10.832412,10832.412 +35937,2025-03-11T13:03:15.723993-07:00,2019.0,10.835441,10835.441 +35938,2025-03-11T13:03:26.561869-07:00,2064.0,10.837876,10837.876 +35939,2025-03-11T13:03:37.406869-07:00,2080.0,10.845,10845.0 +35940,2025-03-11T13:03:48.231875-07:00,2004.0,10.825006,10825.006 +35941,2025-03-11T13:03:59.070046-07:00,2078.0,10.838171,10838.171 +35942,2025-03-11T13:04:09.908655-07:00,2065.0,10.838609,10838.609 +35943,2025-03-11T13:04:20.744871-07:00,2073.0,10.836216,10836.216 +35944,2025-03-11T13:04:31.578186-07:00,2079.0,10.833315,10833.315 +35945,2025-03-11T13:04:42.425220-07:00,2070.0,10.847034,10847.034 +35946,2025-03-11T13:04:53.250866-07:00,2081.0,10.825646,10825.646 +35947,2025-03-11T13:05:04.092233-07:00,2083.0,10.841367,10841.367 +35948,2025-03-11T13:05:14.929944-07:00,2083.0,10.837711,10837.711 +35949,2025-03-11T13:05:25.759850-07:00,2010.0,10.829906,10829.906 +35950,2025-03-11T13:05:36.604866-07:00,2066.0,10.845016,10845.016 +35951,2025-03-11T13:05:47.443859-07:00,2089.0,10.838993,10838.993 +35952,2025-03-11T13:05:58.287392-07:00,2089.0,10.843533,10843.533 +35953,2025-03-11T13:06:09.123874-07:00,2085.0,10.836482,10836.482 +35954,2025-03-11T13:06:19.968312-07:00,2074.0,10.844438,10844.438 +35955,2025-03-11T13:06:30.807722-07:00,2083.0,10.83941,10839.41 +35956,2025-03-11T13:06:41.636868-07:00,1951.0,10.829146,10829.146 +35957,2025-03-11T13:06:52.473224-07:00,2025.0,10.836356,10836.356 +35958,2025-03-11T13:07:03.315080-07:00,1989.0,10.841856,10841.856 +35959,2025-03-11T13:07:14.208990-07:00,2063.0,10.89391,10893.91 +35960,2025-03-11T13:07:25.047499-07:00,1983.0,10.838509,10838.509 +35961,2025-03-11T13:07:35.888063-07:00,1859.0,10.840564,10840.564 +35962,2025-03-11T13:07:46.724965-07:00,1877.0,10.836902,10836.902 +35963,2025-03-11T13:07:57.558223-07:00,1924.0,10.833258,10833.258 +35964,2025-03-11T13:08:08.397167-07:00,1935.0,10.838944,10838.944 +35965,2025-03-11T13:08:19.238967-07:00,1920.0,10.8418,10841.8 +35966,2025-03-11T13:08:30.079962-07:00,1930.0,10.840995,10840.995 +35967,2025-03-11T13:08:40.931227-07:00,1883.0,10.851265,10851.265 +35968,2025-03-11T13:08:51.774252-07:00,1835.0,10.843025,10843.025 +35969,2025-03-11T13:09:02.611982-07:00,1939.0,10.83773,10837.73 +35970,2025-03-11T13:09:13.452285-07:00,1962.0,10.840303,10840.303 +35971,2025-03-11T13:09:24.300964-07:00,1929.0,10.848679,10848.679 +35972,2025-03-11T13:09:35.140949-07:00,1936.0,10.839985,10839.985 +35973,2025-03-11T13:09:45.978001-07:00,1936.0,10.837052,10837.052 +35974,2025-03-11T13:09:56.814213-07:00,1890.0,10.836212,10836.212 +35975,2025-03-11T13:10:07.659207-07:00,1897.0,10.844994,10844.994 +35976,2025-03-11T13:10:18.498280-07:00,1919.0,10.839073,10839.073 +35977,2025-03-11T13:10:29.345165-07:00,1965.0,10.846885,10846.885 +35978,2025-03-11T13:10:40.190090-07:00,1949.0,10.844925,10844.925 +35979,2025-03-11T13:10:51.025967-07:00,1873.0,10.835877,10835.877 +35980,2025-03-11T13:11:01.868311-07:00,1967.0,10.842344,10842.344 +35981,2025-03-11T13:11:12.711091-07:00,1968.0,10.84278,10842.78 +35982,2025-03-11T13:11:23.555226-07:00,1969.0,10.844135,10844.135 +35983,2025-03-11T13:11:34.396966-07:00,1963.0,10.84174,10841.74 +35984,2025-03-11T13:11:45.241608-07:00,1961.0,10.844642,10844.642 +35985,2025-03-11T13:11:56.077958-07:00,1943.0,10.83635,10836.35 +35986,2025-03-11T13:12:06.920984-07:00,1936.0,10.843026,10843.026 +35987,2025-03-11T13:12:17.749299-07:00,1904.0,10.828315,10828.315 +35988,2025-03-11T13:12:28.592013-07:00,1935.0,10.842714,10842.714 +35989,2025-03-11T13:12:39.426952-07:00,1906.0,10.834939,10834.939 +35990,2025-03-11T13:12:50.267421-07:00,1968.0,10.840469,10840.469 +35991,2025-03-11T13:13:01.107708-07:00,1973.0,10.840287,10840.287 +35992,2025-03-11T13:13:11.949263-07:00,2063.0,10.841555,10841.555 +35993,2025-03-11T13:13:22.793967-07:00,2054.0,10.844704,10844.704 +35994,2025-03-11T13:13:33.639568-07:00,2070.0,10.845601,10845.601 +35995,2025-03-11T13:13:44.468123-07:00,2086.0,10.828555,10828.555 +35996,2025-03-11T13:13:55.310997-07:00,2086.0,10.842874,10842.874 +35997,2025-03-11T13:14:06.156971-07:00,2079.0,10.845974,10845.974 +35998,2025-03-11T13:14:16.990516-07:00,1983.0,10.833545,10833.545 +35999,2025-03-11T13:14:27.840805-07:00,1963.0,10.850289,10850.289 +36000,2025-03-11T13:14:38.677955-07:00,1963.0,10.83715,10837.15 +36001,2025-03-11T13:14:49.522957-07:00,1990.0,10.845002,10845.002 +36002,2025-03-11T13:15:00.360299-07:00,1977.0,10.837342,10837.342 +36003,2025-03-11T13:15:11.197204-07:00,1919.0,10.836905,10836.905 +36004,2025-03-11T13:15:22.029966-07:00,2017.0,10.832762,10832.762 +36005,2025-03-11T13:15:32.878290-07:00,2047.0,10.848324,10848.324 +36006,2025-03-11T13:15:43.715216-07:00,2015.0,10.836926,10836.926 +36007,2025-03-11T13:15:54.551954-07:00,1941.0,10.836738,10836.738 +36008,2025-03-11T13:16:05.398954-07:00,1845.0,10.847,10847.0 +36009,2025-03-11T13:16:16.237303-07:00,1889.0,10.838349,10838.349 +36010,2025-03-11T13:16:27.066108-07:00,1924.0,10.828805,10828.805 +36011,2025-03-11T13:16:37.902345-07:00,1913.0,10.836237,10836.237 +36012,2025-03-11T13:16:48.738965-07:00,1836.0,10.83662,10836.62 +36013,2025-03-11T13:16:59.580962-07:00,1919.0,10.841997,10841.997 +36014,2025-03-11T13:17:10.421255-07:00,1918.0,10.840293,10840.293 +36015,2025-03-11T13:17:21.252485-07:00,1833.0,10.83123,10831.23 +36016,2025-03-11T13:17:32.093583-07:00,1845.0,10.841098,10841.098 +36017,2025-03-11T13:17:53.781318-07:00,1920.0,21.687735,21687.735 +36018,2025-03-11T13:18:04.611956-07:00,1922.0,10.830638,10830.638 +36019,2025-03-11T13:18:15.456031-07:00,1946.0,10.844075,10844.075 +36020,2025-03-11T13:18:26.293022-07:00,1839.0,10.836991,10836.991 +36021,2025-03-11T13:18:37.125968-07:00,1853.0,10.832946,10832.946 +36022,2025-03-11T13:18:47.959605-07:00,1905.0,10.833637,10833.637 +36023,2025-03-11T13:18:58.788965-07:00,1901.0,10.82936,10829.36 +36024,2025-03-11T13:19:09.620967-07:00,1826.0,10.832002,10832.002 +36025,2025-03-11T13:19:20.458255-07:00,1909.0,10.837288,10837.288 +36026,2025-03-11T13:19:31.297303-07:00,1860.0,10.839048,10839.048 +36027,2025-03-11T13:19:42.131794-07:00,1904.0,10.834491,10834.491 +36028,2025-03-11T13:19:52.969120-07:00,1915.0,10.837326,10837.326 +36029,2025-03-11T13:20:03.806962-07:00,1840.0,10.837842,10837.842 +36030,2025-03-11T13:20:14.642191-07:00,1919.0,10.835229,10835.229 +36031,2025-03-11T13:20:25.480247-07:00,1918.0,10.838056,10838.056 +36032,2025-03-11T13:20:36.308218-07:00,2019.0,10.827971,10827.971 +36033,2025-03-11T13:20:47.151964-07:00,1904.0,10.843746,10843.746 +36034,2025-03-11T13:20:57.988398-07:00,1917.0,10.836434,10836.434 +36035,2025-03-11T13:21:08.820659-07:00,1850.0,10.832261,10832.261 +36036,2025-03-11T13:21:19.660945-07:00,1923.0,10.840286,10840.286 +36037,2025-03-11T13:21:30.497303-07:00,1974.0,10.836358,10836.358 +36038,2025-03-11T13:21:41.327210-07:00,1880.0,10.829907,10829.907 +36039,2025-03-11T13:21:52.153975-07:00,1865.0,10.826765,10826.765 +36040,2025-03-11T13:22:02.989941-07:00,1877.0,10.835966,10835.966 +36041,2025-03-11T13:22:13.822268-07:00,1901.0,10.832327,10832.327 +36042,2025-03-11T13:22:24.653113-07:00,1817.0,10.830845,10830.845 +36043,2025-03-11T13:22:35.479985-07:00,1835.0,10.826872,10826.872 +36044,2025-03-11T13:22:46.309229-07:00,1911.0,10.829244,10829.244 +36045,2025-03-11T13:22:57.143971-07:00,1875.0,10.834742,10834.742 +36046,2025-03-11T13:23:07.981005-07:00,1869.0,10.837034,10837.034 +36047,2025-03-11T13:23:18.806213-07:00,1919.0,10.825208,10825.208 +36048,2025-03-11T13:23:29.644950-07:00,1867.0,10.838737,10838.737 +36049,2025-03-11T13:23:40.477208-07:00,1857.0,10.832258,10832.258 +36050,2025-03-11T13:23:51.304273-07:00,1863.0,10.827065,10827.065 +36051,2025-03-11T13:24:02.141252-07:00,1901.0,10.836979,10836.979 +36052,2025-03-11T13:24:12.982181-07:00,1835.0,10.840929,10840.929 +36053,2025-03-11T13:24:23.814649-07:00,1904.0,10.832468,10832.468 +36054,2025-03-11T13:24:34.634968-07:00,1865.0,10.820319,10820.319 +36055,2025-03-11T13:24:45.473123-07:00,1907.0,10.838155,10838.155 +36056,2025-03-11T13:24:56.302965-07:00,1904.0,10.829842,10829.842 +36057,2025-03-11T13:25:07.129726-07:00,1869.0,10.826761,10826.761 +36058,2025-03-11T13:25:17.963029-07:00,1821.0,10.833303,10833.303 +36059,2025-03-11T13:25:28.797307-07:00,1902.0,10.834278,10834.278 +36060,2025-03-11T13:25:39.636376-07:00,1875.0,10.839069,10839.069 +36061,2025-03-11T13:25:50.478947-07:00,1911.0,10.842571,10842.571 +36062,2025-03-11T13:26:01.317517-07:00,1843.0,10.83857,10838.57 +36063,2025-03-11T13:26:12.155252-07:00,1985.0,10.837735,10837.735 +36064,2025-03-11T13:26:22.985000-07:00,2014.0,10.829748,10829.748 +36065,2025-03-11T13:26:33.824330-07:00,1922.0,10.83933,10839.33 +36066,2025-03-11T13:26:44.660013-07:00,2027.0,10.835683,10835.683 +36067,2025-03-11T13:26:55.498040-07:00,1936.0,10.838027,10838.027 +36068,2025-03-11T13:27:06.329226-07:00,1889.0,10.831186,10831.186 +36069,2025-03-11T13:27:17.160964-07:00,1996.0,10.831738,10831.738 +36070,2025-03-11T13:27:27.986326-07:00,2031.0,10.825362,10825.362 +36071,2025-03-11T13:27:38.830007-07:00,2041.0,10.843681,10843.681 +36072,2025-03-11T13:27:49.661522-07:00,2021.0,10.831515,10831.515 +36073,2025-03-11T13:28:00.500095-07:00,1965.0,10.838573,10838.573 +36074,2025-03-11T13:28:11.330964-07:00,2033.0,10.830869,10830.869 +36075,2025-03-11T13:28:22.164256-07:00,2023.0,10.833292,10833.292 +36076,2025-03-11T13:28:33.002141-07:00,2004.0,10.837885,10837.885 +36077,2025-03-11T13:28:43.837967-07:00,2032.0,10.835826,10835.826 +36078,2025-03-11T13:28:54.675316-07:00,1939.0,10.837349,10837.349 +36079,2025-03-11T13:29:05.513941-07:00,1919.0,10.838625,10838.625 +36080,2025-03-11T13:29:16.348967-07:00,2020.0,10.835026,10835.026 +36081,2025-03-11T13:29:27.182335-07:00,1984.0,10.833368,10833.368 +36082,2025-03-11T13:29:38.025684-07:00,2029.0,10.843349,10843.349 +36083,2025-03-11T13:29:48.850245-07:00,2015.0,10.824561,10824.561 +36084,2025-03-11T13:29:59.694802-07:00,2031.0,10.844557,10844.557 +36085,2025-03-11T13:30:10.518962-07:00,1999.0,10.82416,10824.16 +36086,2025-03-11T13:30:21.361956-07:00,2002.0,10.842994,10842.994 +36087,2025-03-11T13:30:32.202703-07:00,2001.0,10.840747,10840.747 +36088,2025-03-11T13:30:43.035968-07:00,1955.0,10.833265,10833.265 +36089,2025-03-11T13:30:53.870524-07:00,2029.0,10.834556,10834.556 +36090,2025-03-11T13:31:04.711845-07:00,2000.0,10.841321,10841.321 +36091,2025-03-11T13:31:15.547970-07:00,2011.0,10.836125,10836.125 +36092,2025-03-11T13:31:26.383285-07:00,2023.0,10.835315,10835.315 +36093,2025-03-11T13:31:37.226154-07:00,1982.0,10.842869,10842.869 +36094,2025-03-11T13:31:48.058967-07:00,2029.0,10.832813,10832.813 +36095,2025-03-11T13:31:58.900968-07:00,1981.0,10.842001,10842.001 +36096,2025-03-11T13:32:09.738242-07:00,2026.0,10.837274,10837.274 +36097,2025-03-11T13:32:20.584990-07:00,1975.0,10.846748,10846.748 +36098,2025-03-11T13:32:31.422099-07:00,2022.0,10.837109,10837.109 +36099,2025-03-11T13:32:42.263010-07:00,1904.0,10.840911,10840.911 +36100,2025-03-11T13:32:53.088954-07:00,1993.0,10.825944,10825.944 +36101,2025-03-11T13:33:03.924329-07:00,2014.0,10.835375,10835.375 +36102,2025-03-11T13:33:14.768305-07:00,2023.0,10.843976,10843.976 +36103,2025-03-11T13:33:25.600236-07:00,1960.0,10.831931,10831.931 +36104,2025-03-11T13:33:36.445968-07:00,2005.0,10.845732,10845.732 +36105,2025-03-11T13:33:47.276407-07:00,1991.0,10.830439,10830.439 +36106,2025-03-11T13:33:58.118628-07:00,1813.0,10.842221,10842.221 +36107,2025-03-11T13:34:08.966042-07:00,1861.0,10.847414,10847.414 +36108,2025-03-11T13:34:19.798542-07:00,1857.0,10.8325,10832.5 +36109,2025-03-11T13:34:30.641289-07:00,1857.0,10.842747,10842.747 +36110,2025-03-11T13:34:41.484180-07:00,1851.0,10.842891,10842.891 +36111,2025-03-11T13:34:52.321990-07:00,1839.0,10.83781,10837.81 +36112,2025-03-11T13:35:03.161172-07:00,1755.0,10.839182,10839.182 +36113,2025-03-11T13:35:14.004165-07:00,1808.0,10.842993,10842.993 +36114,2025-03-11T13:35:24.844967-07:00,1855.0,10.840802,10840.802 +36115,2025-03-11T13:35:35.683529-07:00,1963.0,10.838562,10838.562 +36116,2025-03-11T13:35:46.527223-07:00,1925.0,10.843694,10843.694 +36117,2025-03-11T13:35:57.361969-07:00,1840.0,10.834746,10834.746 +36118,2025-03-11T13:36:08.204209-07:00,1766.0,10.84224,10842.24 +36119,2025-03-11T13:36:19.044121-07:00,1829.0,10.839912,10839.912 +36120,2025-03-11T13:36:29.881169-07:00,1799.0,10.837048,10837.048 +36121,2025-03-11T13:36:40.730075-07:00,1833.0,10.848906,10848.906 +36122,2025-03-11T13:36:51.563188-07:00,1803.0,10.833113,10833.113 +36123,2025-03-11T13:37:02.410575-07:00,1933.0,10.847387,10847.387 +36124,2025-03-11T13:37:13.253165-07:00,1872.0,10.84259,10842.59 +36125,2025-03-11T13:37:24.091967-07:00,1907.0,10.838802,10838.802 +36126,2025-03-11T13:37:34.938941-07:00,1834.0,10.846974,10846.974 +36127,2025-03-11T13:37:45.783203-07:00,1943.0,10.844262,10844.262 +36128,2025-03-11T13:37:56.615162-07:00,1968.0,10.831959,10831.959 +36129,2025-03-11T13:38:07.449136-07:00,1941.0,10.833974,10833.974 +36130,2025-03-11T13:38:18.290299-07:00,1859.0,10.841163,10841.163 +36131,2025-03-11T13:38:29.127967-07:00,1929.0,10.837668,10837.668 +36132,2025-03-11T13:38:39.972073-07:00,1991.0,10.844106,10844.106 +36133,2025-03-11T13:38:50.803170-07:00,2013.0,10.831097,10831.097 +36134,2025-03-11T13:39:01.646247-07:00,2019.0,10.843077,10843.077 +36135,2025-03-11T13:39:12.477071-07:00,1942.0,10.830824,10830.824 +36136,2025-03-11T13:39:23.324971-07:00,2000.0,10.8479,10847.9 +36137,2025-03-11T13:39:34.158210-07:00,1997.0,10.833239,10833.239 +36138,2025-03-11T13:39:45.003957-07:00,1995.0,10.845747,10845.747 +36139,2025-03-11T13:39:55.844945-07:00,2019.0,10.840988,10840.988 +36140,2025-03-11T13:40:06.687600-07:00,1935.0,10.842655,10842.655 +36141,2025-03-11T13:40:17.524704-07:00,1995.0,10.837104,10837.104 +36142,2025-03-11T13:40:28.363526-07:00,1951.0,10.838822,10838.822 +36143,2025-03-11T13:40:39.202970-07:00,1845.0,10.839444,10839.444 +36144,2025-03-11T13:40:50.048559-07:00,1862.0,10.845589,10845.589 +36145,2025-03-11T13:41:00.900397-07:00,1814.0,10.851838,10851.838 +36146,2025-03-11T13:41:11.744687-07:00,1809.0,10.84429,10844.29 +36147,2025-03-11T13:41:22.574964-07:00,1853.0,10.830277,10830.277 +36148,2025-03-11T13:41:33.420967-07:00,2007.0,10.846003,10846.003 +36149,2025-03-11T13:41:44.258632-07:00,2022.0,10.837665,10837.665 +36150,2025-03-11T13:41:55.095105-07:00,1908.0,10.836473,10836.473 +36151,2025-03-11T13:42:05.943967-07:00,1906.0,10.848862,10848.862 +36152,2025-03-11T13:42:27.625627-07:00,1809.0,21.68166,21681.66 +36153,2025-03-11T13:42:38.470555-07:00,1819.0,10.844928,10844.928 +36154,2025-03-11T13:42:49.310182-07:00,1956.0,10.839627,10839.627 +36155,2025-03-11T13:43:00.160006-07:00,2016.0,10.849824,10849.824 +36156,2025-03-11T13:43:10.998962-07:00,2020.0,10.838956,10838.956 +36157,2025-03-11T13:43:21.847319-07:00,1919.0,10.848357,10848.357 +36158,2025-03-11T13:43:32.687754-07:00,1936.0,10.840435,10840.435 +36159,2025-03-11T13:43:43.527095-07:00,1904.0,10.839341,10839.341 +36160,2025-03-11T13:43:54.362872-07:00,1877.0,10.835777,10835.777 +36161,2025-03-11T13:44:05.200921-07:00,1970.0,10.838049,10838.049 +36162,2025-03-11T13:44:16.038105-07:00,1949.0,10.837184,10837.184 +36163,2025-03-11T13:44:26.875303-07:00,1984.0,10.837198,10837.198 +36164,2025-03-11T13:44:37.720150-07:00,1861.0,10.844847,10844.847 +36165,2025-03-11T13:44:48.558227-07:00,1775.0,10.838077,10838.077 +36166,2025-03-11T13:44:59.394418-07:00,1817.0,10.836191,10836.191 +36167,2025-03-11T13:45:10.228008-07:00,1852.0,10.83359,10833.59 +36168,2025-03-11T13:45:21.062017-07:00,1808.0,10.834009,10834.009 +36169,2025-03-11T13:45:31.902238-07:00,1936.0,10.840221,10840.221 +36170,2025-03-11T13:45:42.744004-07:00,1903.0,10.841766,10841.766 +36171,2025-03-11T13:45:53.580966-07:00,1872.0,10.836962,10836.962 +36172,2025-03-11T13:46:04.418295-07:00,1885.0,10.837329,10837.329 +36173,2025-03-11T13:46:15.256019-07:00,1872.0,10.837724,10837.724 +36174,2025-03-11T13:46:26.099945-07:00,1862.0,10.843926,10843.926 +36175,2025-03-11T13:46:36.934229-07:00,1931.0,10.834284,10834.284 +36176,2025-03-11T13:46:47.781237-07:00,1854.0,10.847008,10847.008 +36177,2025-03-11T13:46:58.622435-07:00,1861.0,10.841198,10841.198 +36178,2025-03-11T13:47:09.466104-07:00,1866.0,10.843669,10843.669 +36179,2025-03-11T13:47:20.297286-07:00,1776.0,10.831182,10831.182 +36180,2025-03-11T13:47:31.137933-07:00,1795.0,10.840647,10840.647 +36181,2025-03-11T13:47:41.980025-07:00,1837.0,10.842092,10842.092 +36182,2025-03-11T13:47:52.815102-07:00,1767.0,10.835077,10835.077 +36183,2025-03-11T13:48:03.647117-07:00,1790.0,10.832015,10832.015 +36184,2025-03-11T13:48:14.492966-07:00,1835.0,10.845849,10845.849 +36185,2025-03-11T13:48:25.335541-07:00,1854.0,10.842575,10842.575 +36186,2025-03-11T13:48:36.170341-07:00,1854.0,10.8348,10834.8 +36187,2025-03-11T13:48:47.002968-07:00,1853.0,10.832627,10832.627 +36188,2025-03-11T13:48:57.846192-07:00,1777.0,10.843224,10843.224 +36189,2025-03-11T13:49:08.683238-07:00,1835.0,10.837046,10837.046 +36190,2025-03-11T13:49:19.528008-07:00,1847.0,10.84477,10844.77 +36191,2025-03-11T13:49:30.359367-07:00,1894.0,10.831359,10831.359 +36192,2025-03-11T13:49:40.550437-07:00,1945.0,10.19107,10191.07 +36193,2025-03-11T13:49:41.201662-07:00,1945.0,0.651225,651.225 +36194,2025-03-11T13:49:52.038198-07:00,1969.0,10.836536,10836.536 +36195,2025-03-11T13:50:02.874965-07:00,1990.0,10.836767,10836.767 +36196,2025-03-11T13:50:13.719142-07:00,2013.0,10.844177,10844.177 +36197,2025-03-11T13:50:24.552052-07:00,2014.0,10.83291,10832.91 +36198,2025-03-11T13:50:35.403678-07:00,1919.0,10.851626,10851.626 +36199,2025-03-11T13:50:46.236276-07:00,1968.0,10.832598,10832.598 +36200,2025-03-11T13:50:57.080268-07:00,2005.0,10.843992,10843.992 +36201,2025-03-11T13:51:07.929501-07:00,1982.0,10.849233,10849.233 +36202,2025-03-11T13:51:18.759963-07:00,1941.0,10.830462,10830.462 +36203,2025-03-11T13:51:29.605956-07:00,1963.0,10.845993,10845.993 +36204,2025-03-11T13:51:40.435438-07:00,1782.0,10.829482,10829.482 +36205,2025-03-11T13:51:51.277958-07:00,1837.0,10.84252,10842.52 +36206,2025-03-11T13:52:02.118153-07:00,1849.0,10.840195,10840.195 +36207,2025-03-11T13:52:12.957362-07:00,1833.0,10.839209,10839.209 +36208,2025-03-11T13:52:23.801537-07:00,1840.0,10.844175,10844.175 +36209,2025-03-11T13:52:34.635349-07:00,1964.0,10.833812,10833.812 +36210,2025-03-11T13:52:45.473956-07:00,1906.0,10.838607,10838.607 +36211,2025-03-11T13:52:56.320224-07:00,1981.0,10.846268,10846.268 +36212,2025-03-11T13:53:07.151247-07:00,1986.0,10.831023,10831.023 +36213,2025-03-11T13:53:17.998173-07:00,1984.0,10.846926,10846.926 +36214,2025-03-11T13:53:28.837576-07:00,1999.0,10.839403,10839.403 +36215,2025-03-11T13:53:39.668960-07:00,2004.0,10.831384,10831.384 +36216,2025-03-11T13:53:50.510946-07:00,2000.0,10.841986,10841.986 +36217,2025-03-11T13:54:01.354226-07:00,2018.0,10.84328,10843.28 +36218,2025-03-11T13:54:12.198635-07:00,2001.0,10.844409,10844.409 +36219,2025-03-11T13:54:23.030966-07:00,1989.0,10.832331,10832.331 +36220,2025-03-11T13:54:33.871958-07:00,1984.0,10.840992,10840.992 +36221,2025-03-11T13:54:44.716346-07:00,2013.0,10.844388,10844.388 +36222,2025-03-11T13:54:55.549270-07:00,1933.0,10.832924,10832.924 +36223,2025-03-11T13:55:06.397962-07:00,1949.0,10.848692,10848.692 +36224,2025-03-11T13:55:17.229787-07:00,2005.0,10.831825,10831.825 +36225,2025-03-11T13:55:28.073110-07:00,1938.0,10.843323,10843.323 +36226,2025-03-11T13:55:38.910124-07:00,1965.0,10.837014,10837.014 +36227,2025-03-11T13:55:49.747390-07:00,2019.0,10.837266,10837.266 +36228,2025-03-11T13:56:00.596319-07:00,2000.0,10.848929,10848.929 +36229,2025-03-11T13:56:11.421967-07:00,1982.0,10.825648,10825.648 +36230,2025-03-11T13:56:22.269965-07:00,1936.0,10.847998,10847.998 +36231,2025-03-11T13:56:33.101265-07:00,2003.0,10.8313,10831.3 +36232,2025-03-11T13:56:43.932968-07:00,1982.0,10.831703,10831.703 +36233,2025-03-11T13:56:54.761299-07:00,1979.0,10.828331,10828.331 +36234,2025-03-11T13:57:05.603941-07:00,1950.0,10.842642,10842.642 +36235,2025-03-11T13:57:16.439860-07:00,1979.0,10.835919,10835.919 +36236,2025-03-11T13:57:27.277449-07:00,1970.0,10.837589,10837.589 +36237,2025-03-11T13:57:38.111357-07:00,2001.0,10.833908,10833.908 +36238,2025-03-11T13:57:48.952967-07:00,1935.0,10.84161,10841.61 +36239,2025-03-11T13:57:59.785506-07:00,1963.0,10.832539,10832.539 +36240,2025-03-11T13:58:10.627953-07:00,2010.0,10.842447,10842.447 +36241,2025-03-11T13:58:21.464965-07:00,1969.0,10.837012,10837.012 +36242,2025-03-11T13:58:32.295301-07:00,1991.0,10.830336,10830.336 +36243,2025-03-11T13:58:43.137320-07:00,2021.0,10.842019,10842.019 +36244,2025-03-11T13:58:53.973956-07:00,2003.0,10.836636,10836.636 +36245,2025-03-11T13:59:04.812380-07:00,2011.0,10.838424,10838.424 +36246,2025-03-11T13:59:15.646591-07:00,2014.0,10.834211,10834.211 +36247,2025-03-11T13:59:26.488489-07:00,1986.0,10.841898,10841.898 +36248,2025-03-11T13:59:37.321317-07:00,2000.0,10.832828,10832.828 +36249,2025-03-11T13:59:48.163162-07:00,2000.0,10.841845,10841.845 +36250,2025-03-11T13:59:59.017180-07:00,1978.0,10.854018,10854.018 +36251,2025-03-11T14:00:09.851311-07:00,1951.0,10.834131,10834.131 +36252,2025-03-11T14:00:20.693630-07:00,1947.0,10.842319,10842.319 +36253,2025-03-11T14:00:31.536437-07:00,2026.0,10.842807,10842.807 +36254,2025-03-11T14:00:42.368204-07:00,1955.0,10.831767,10831.767 +36255,2025-03-11T14:00:53.217060-07:00,1947.0,10.848856,10848.856 +36256,2025-03-11T14:01:04.055270-07:00,1964.0,10.83821,10838.21 +36257,2025-03-11T14:01:14.885484-07:00,2026.0,10.830214,10830.214 +36258,2025-03-11T14:01:25.723972-07:00,1930.0,10.838488,10838.488 +36259,2025-03-11T14:01:36.567931-07:00,2014.0,10.843959,10843.959 +36260,2025-03-11T14:01:47.398204-07:00,2026.0,10.830273,10830.273 +36261,2025-03-11T14:01:58.243005-07:00,2003.0,10.844801,10844.801 +36262,2025-03-11T14:02:09.086185-07:00,2023.0,10.84318,10843.18 +36263,2025-03-11T14:02:19.922700-07:00,2025.0,10.836515,10836.515 +36264,2025-03-11T14:02:30.771229-07:00,2016.0,10.848529,10848.529 +36265,2025-03-11T14:02:41.607968-07:00,1968.0,10.836739,10836.739 +36266,2025-03-11T14:02:52.455625-07:00,1961.0,10.847657,10847.657 +36267,2025-03-11T14:03:03.296720-07:00,1975.0,10.841095,10841.095 +36268,2025-03-11T14:03:14.132013-07:00,2015.0,10.835293,10835.293 +36269,2025-03-11T14:03:24.980204-07:00,1982.0,10.848191,10848.191 +36270,2025-03-11T14:03:35.816266-07:00,2022.0,10.836062,10836.062 +36271,2025-03-11T14:03:46.657374-07:00,1963.0,10.841108,10841.108 +36272,2025-03-11T14:03:57.498973-07:00,1983.0,10.841599,10841.599 +36273,2025-03-11T14:04:08.337328-07:00,2019.0,10.838355,10838.355 +36274,2025-03-11T14:04:19.180355-07:00,1990.0,10.843027,10843.027 +36275,2025-03-11T14:04:30.026905-07:00,1965.0,10.84655,10846.55 +36276,2025-03-11T14:04:40.858964-07:00,2013.0,10.832059,10832.059 +36277,2025-03-11T14:04:51.701225-07:00,1980.0,10.842261,10842.261 +36278,2025-03-11T14:05:02.537015-07:00,1985.0,10.83579,10835.79 +36279,2025-03-11T14:05:13.378045-07:00,1969.0,10.84103,10841.03 +36280,2025-03-11T14:05:24.221941-07:00,2015.0,10.843896,10843.896 +36281,2025-03-11T14:05:35.061425-07:00,1936.0,10.839484,10839.484 +36282,2025-03-11T14:05:45.908026-07:00,1984.0,10.846601,10846.601 +36283,2025-03-11T14:05:56.746009-07:00,2015.0,10.837983,10837.983 +36284,2025-03-11T14:06:07.589969-07:00,1939.0,10.84396,10843.96 +36285,2025-03-11T14:06:18.436970-07:00,2015.0,10.847001,10847.001 +36286,2025-03-11T14:06:29.279297-07:00,2014.0,10.842327,10842.327 +36287,2025-03-11T14:06:40.119214-07:00,1993.0,10.839917,10839.917 +36288,2025-03-11T14:06:50.960968-07:00,1990.0,10.841754,10841.754 +36289,2025-03-11T14:07:01.800537-07:00,1959.0,10.839569,10839.569 +36290,2025-03-11T14:07:12.670079-07:00,1981.0,10.869542,10869.542 +36291,2025-03-11T14:07:23.507652-07:00,1959.0,10.837573,10837.573 +36292,2025-03-11T14:07:34.349847-07:00,2007.0,10.842195,10842.195 +36293,2025-03-11T14:07:45.187959-07:00,1985.0,10.838112,10838.112 +36294,2025-03-11T14:07:56.023699-07:00,1935.0,10.83574,10835.74 +36295,2025-03-11T14:08:06.863657-07:00,2001.0,10.839958,10839.958 +36296,2025-03-11T14:08:17.702116-07:00,1958.0,10.838459,10838.459 +36297,2025-03-11T14:08:28.536657-07:00,2015.0,10.834541,10834.541 +36298,2025-03-11T14:08:39.379365-07:00,2011.0,10.842708,10842.708 +36299,2025-03-11T14:08:50.213942-07:00,1941.0,10.834577,10834.577 +36300,2025-03-11T14:09:01.052419-07:00,2015.0,10.838477,10838.477 +36301,2025-03-11T14:09:11.899171-07:00,2017.0,10.846752,10846.752 +36302,2025-03-11T14:09:22.742695-07:00,1977.0,10.843524,10843.524 +36303,2025-03-11T14:09:33.584963-07:00,1963.0,10.842268,10842.268 +36304,2025-03-11T14:09:44.415651-07:00,2017.0,10.830688,10830.688 +36305,2025-03-11T14:09:55.258649-07:00,1967.0,10.842998,10842.998 +36306,2025-03-11T14:10:06.092956-07:00,1971.0,10.834307,10834.307 +36307,2025-03-11T14:10:16.932992-07:00,1963.0,10.840036,10840.036 +36308,2025-03-11T14:10:27.772657-07:00,1961.0,10.839665,10839.665 +36309,2025-03-11T14:10:38.615665-07:00,2016.0,10.843008,10843.008 +36310,2025-03-11T14:10:49.445976-07:00,2005.0,10.830311,10830.311 +36311,2025-03-11T14:11:00.289656-07:00,1978.0,10.84368,10843.68 +36312,2025-03-11T14:11:11.127686-07:00,1982.0,10.83803,10838.03 +36313,2025-03-11T14:11:21.966036-07:00,2000.0,10.83835,10838.35 +36314,2025-03-11T14:11:32.802654-07:00,2015.0,10.836618,10836.618 +36315,2025-03-11T14:11:43.645345-07:00,2011.0,10.842691,10842.691 +36316,2025-03-11T14:11:54.478990-07:00,2014.0,10.833645,10833.645 +36317,2025-03-11T14:12:05.319636-07:00,1968.0,10.840646,10840.646 +36318,2025-03-11T14:12:16.151967-07:00,1997.0,10.832331,10832.331 +36319,2025-03-11T14:12:26.993998-07:00,1959.0,10.842031,10842.031 +36320,2025-03-11T14:12:37.823670-07:00,2013.0,10.829672,10829.672 +36321,2025-03-11T14:12:48.658247-07:00,1995.0,10.834577,10834.577 +36322,2025-03-11T14:12:59.494641-07:00,1947.0,10.836394,10836.394 +36323,2025-03-11T14:13:10.327899-07:00,2011.0,10.833258,10833.258 +36324,2025-03-11T14:13:21.167243-07:00,1939.0,10.839344,10839.344 +36325,2025-03-11T14:13:32.008688-07:00,2013.0,10.841445,10841.445 +36326,2025-03-11T14:13:42.839798-07:00,1954.0,10.83111,10831.11 +36327,2025-03-11T14:13:53.688961-07:00,1997.0,10.849163,10849.163 +36328,2025-03-11T14:14:04.518785-07:00,2017.0,10.829824,10829.824 +36329,2025-03-11T14:14:15.364913-07:00,1949.0,10.846128,10846.128 +36330,2025-03-11T14:14:26.201638-07:00,1937.0,10.836725,10836.725 +36331,2025-03-11T14:14:37.043067-07:00,2017.0,10.841429,10841.429 +36332,2025-03-11T14:14:47.887348-07:00,2015.0,10.844281,10844.281 +36333,2025-03-11T14:14:58.730648-07:00,2015.0,10.8433,10843.3 +36334,2025-03-11T14:15:09.561947-07:00,1973.0,10.831299,10831.299 +36335,2025-03-11T14:15:20.406936-07:00,1959.0,10.844989,10844.989 +36336,2025-03-11T14:15:31.246704-07:00,1985.0,10.839768,10839.768 +36337,2025-03-11T14:15:42.085659-07:00,2014.0,10.838955,10838.955 +36338,2025-03-11T14:15:52.924947-07:00,1951.0,10.839288,10839.288 +36339,2025-03-11T14:16:03.771516-07:00,2011.0,10.846569,10846.569 +36340,2025-03-11T14:16:14.604976-07:00,1933.0,10.83346,10833.46 +36341,2025-03-11T14:16:25.447669-07:00,1927.0,10.842693,10842.693 +36342,2025-03-11T14:16:36.297305-07:00,1947.0,10.849636,10849.636 +36343,2025-03-11T14:16:47.143089-07:00,1920.0,10.845784,10845.784 +36344,2025-03-11T14:16:57.979668-07:00,1994.0,10.836579,10836.579 +36345,2025-03-11T14:17:08.825655-07:00,1971.0,10.845987,10845.987 +36346,2025-03-11T14:17:19.662660-07:00,2009.0,10.837005,10837.005 +36347,2025-03-11T14:17:30.498957-07:00,2013.0,10.836297,10836.297 +36348,2025-03-11T14:17:41.344662-07:00,1967.0,10.845705,10845.705 +36349,2025-03-11T14:17:52.186655-07:00,1965.0,10.841993,10841.993 +36350,2025-03-11T14:18:03.024035-07:00,1959.0,10.83738,10837.38 +36351,2025-03-11T14:18:13.871290-07:00,2000.0,10.847255,10847.255 +36352,2025-03-11T14:18:24.709872-07:00,2000.0,10.838582,10838.582 +36353,2025-03-11T14:18:35.544721-07:00,2007.0,10.834849,10834.849 +36354,2025-03-11T14:18:46.384661-07:00,1950.0,10.83994,10839.94 +36355,2025-03-11T14:18:57.233990-07:00,2011.0,10.849329,10849.329 +36356,2025-03-11T14:19:08.070851-07:00,2012.0,10.836861,10836.861 +36357,2025-03-11T14:19:18.911469-07:00,1947.0,10.840618,10840.618 +36358,2025-03-11T14:19:29.753926-07:00,2009.0,10.842457,10842.457 +36359,2025-03-11T14:19:40.592660-07:00,2011.0,10.838734,10838.734 +36360,2025-03-11T14:19:51.431712-07:00,1931.0,10.839052,10839.052 +36361,2025-03-11T14:20:02.268946-07:00,1993.0,10.837234,10837.234 +36362,2025-03-11T14:20:13.113096-07:00,2007.0,10.84415,10844.15 +36363,2025-03-11T14:20:23.944658-07:00,1917.0,10.831562,10831.562 +36364,2025-03-11T14:20:34.785156-07:00,2006.0,10.840498,10840.498 +36365,2025-03-11T14:20:45.629420-07:00,2011.0,10.844264,10844.264 +36366,2025-03-11T14:20:56.472637-07:00,1920.0,10.843217,10843.217 +36367,2025-03-11T14:21:07.312905-07:00,2000.0,10.840268,10840.268 +36368,2025-03-11T14:21:18.154984-07:00,2009.0,10.842079,10842.079 +36369,2025-03-11T14:21:28.990805-07:00,2002.0,10.835821,10835.821 +36370,2025-03-11T14:21:39.839207-07:00,1936.0,10.848402,10848.402 +36371,2025-03-11T14:21:50.673807-07:00,1991.0,10.8346,10834.6 +36372,2025-03-11T14:22:01.509126-07:00,1968.0,10.835319,10835.319 +36373,2025-03-11T14:22:12.338888-07:00,1989.0,10.829762,10829.762 +36374,2025-03-11T14:22:23.178664-07:00,1985.0,10.839776,10839.776 +36375,2025-03-11T14:22:34.015698-07:00,1973.0,10.837034,10837.034 +36376,2025-03-11T14:22:44.847363-07:00,1934.0,10.831665,10831.665 +36377,2025-03-11T14:22:55.690228-07:00,1958.0,10.842865,10842.865 +36378,2025-03-11T14:23:06.521795-07:00,1970.0,10.831567,10831.567 +36379,2025-03-11T14:23:17.351660-07:00,1929.0,10.829865,10829.865 +36380,2025-03-11T14:23:28.191971-07:00,1987.0,10.840311,10840.311 +36381,2025-03-11T14:23:39.040900-07:00,1963.0,10.848929,10848.929 +36382,2025-03-11T14:23:49.873748-07:00,1994.0,10.832848,10832.848 +36383,2025-03-11T14:24:00.715004-07:00,1953.0,10.841256,10841.256 +36384,2025-03-11T14:24:11.544772-07:00,2011.0,10.829768,10829.768 +36385,2025-03-11T14:24:22.387655-07:00,1968.0,10.842883,10842.883 +36386,2025-03-11T14:24:33.221989-07:00,1931.0,10.834334,10834.334 +36387,2025-03-11T14:24:44.064835-07:00,1984.0,10.842846,10842.846 +36388,2025-03-11T14:24:54.894891-07:00,1948.0,10.830056,10830.056 +36389,2025-03-11T14:25:05.739002-07:00,2011.0,10.844111,10844.111 +36390,2025-03-11T14:25:16.582172-07:00,1937.0,10.84317,10843.17 +36391,2025-03-11T14:25:27.423788-07:00,2004.0,10.841616,10841.616 +36392,2025-03-11T14:25:38.262660-07:00,2000.0,10.838872,10838.872 +36393,2025-03-11T14:25:49.100998-07:00,2011.0,10.838338,10838.338 +36394,2025-03-11T14:25:59.944977-07:00,1967.0,10.843979,10843.979 +36395,2025-03-11T14:26:10.777840-07:00,1975.0,10.832863,10832.863 +36396,2025-03-11T14:26:21.613631-07:00,1971.0,10.835791,10835.791 +36397,2025-03-11T14:26:32.455309-07:00,2013.0,10.841678,10841.678 +36398,2025-03-11T14:26:43.292279-07:00,2013.0,10.83697,10836.97 +36399,2025-03-11T14:26:54.140123-07:00,1947.0,10.847844,10847.844 +36400,2025-03-11T14:27:04.976945-07:00,2009.0,10.836822,10836.822 +36401,2025-03-11T14:27:15.819685-07:00,1989.0,10.84274,10842.74 +36402,2025-03-11T14:27:26.654644-07:00,2011.0,10.834959,10834.959 +36403,2025-03-11T14:27:37.503888-07:00,1975.0,10.849244,10849.244 +36404,2025-03-11T14:27:48.340371-07:00,2011.0,10.836483,10836.483 +36405,2025-03-11T14:27:59.183659-07:00,1959.0,10.843288,10843.288 +36406,2025-03-11T14:28:10.016896-07:00,1943.0,10.833237,10833.237 +36407,2025-03-11T14:28:20.855980-07:00,1936.0,10.839084,10839.084 +36408,2025-03-11T14:28:31.689765-07:00,1975.0,10.833785,10833.785 +36409,2025-03-11T14:28:42.532748-07:00,1979.0,10.842983,10842.983 +36410,2025-03-11T14:28:53.376996-07:00,2008.0,10.844248,10844.248 +36411,2025-03-11T14:29:04.213634-07:00,1962.0,10.836638,10836.638 +36412,2025-03-11T14:29:15.060653-07:00,2010.0,10.847019,10847.019 +36413,2025-03-11T14:29:25.903659-07:00,1943.0,10.843006,10843.006 +36414,2025-03-11T14:29:36.747657-07:00,2003.0,10.843998,10843.998 +36415,2025-03-11T14:29:47.578043-07:00,1937.0,10.830386,10830.386 +36416,2025-03-11T14:29:58.416693-07:00,1968.0,10.83865,10838.65 +36417,2025-03-11T14:30:09.251137-07:00,1972.0,10.834444,10834.444 +36418,2025-03-11T14:30:20.099928-07:00,2021.0,10.848791,10848.791 +36419,2025-03-11T14:30:30.939898-07:00,1979.0,10.83997,10839.97 +36420,2025-03-11T14:30:41.783657-07:00,1962.0,10.843759,10843.759 +36421,2025-03-11T14:30:52.623699-07:00,2015.0,10.840042,10840.042 +36422,2025-03-11T14:31:03.467000-07:00,1938.0,10.843301,10843.301 +36423,2025-03-11T14:31:14.313726-07:00,1967.0,10.846726,10846.726 +36424,2025-03-11T14:31:25.158638-07:00,2001.0,10.844912,10844.912 +36425,2025-03-11T14:31:36.000862-07:00,2017.0,10.842224,10842.224 +36426,2025-03-11T14:31:46.837499-07:00,1946.0,10.836637,10836.637 +36427,2025-03-11T14:31:57.674651-07:00,2005.0,10.837152,10837.152 +36428,2025-03-11T14:32:08.511752-07:00,1926.0,10.837101,10837.101 +36429,2025-03-11T14:32:19.343664-07:00,2015.0,10.831912,10831.912 +36430,2025-03-11T14:32:30.182743-07:00,2015.0,10.839079,10839.079 +36431,2025-03-11T14:32:41.025672-07:00,2018.0,10.842929,10842.929 +36432,2025-03-11T14:32:51.873035-07:00,1938.0,10.847363,10847.363 +36433,2025-03-11T14:33:02.712277-07:00,2021.0,10.839242,10839.242 +36434,2025-03-11T14:33:13.542550-07:00,2011.0,10.830273,10830.273 +36435,2025-03-11T14:33:24.383903-07:00,2019.0,10.841353,10841.353 +36436,2025-03-11T14:33:35.227976-07:00,1937.0,10.844073,10844.073 +36437,2025-03-11T14:33:46.070813-07:00,2020.0,10.842837,10842.837 +36438,2025-03-11T14:33:56.910672-07:00,2018.0,10.839859,10839.859 +36439,2025-03-11T14:34:07.745998-07:00,1999.0,10.835326,10835.326 +36440,2025-03-11T14:34:18.596885-07:00,1998.0,10.850887,10850.887 +36441,2025-03-11T14:34:29.439957-07:00,2011.0,10.843072,10843.072 +36442,2025-03-11T14:34:40.270646-07:00,2015.0,10.830689,10830.689 +36443,2025-03-11T14:34:51.114986-07:00,2010.0,10.84434,10844.34 +36444,2025-03-11T14:35:01.957410-07:00,1950.0,10.842424,10842.424 +36445,2025-03-11T14:35:12.794844-07:00,2011.0,10.837434,10837.434 +36446,2025-03-11T14:35:23.641653-07:00,1983.0,10.846809,10846.809 +36447,2025-03-11T14:35:34.480468-07:00,1939.0,10.838815,10838.815 +36448,2025-03-11T14:35:45.322529-07:00,1994.0,10.842061,10842.061 +36449,2025-03-11T14:35:56.164651-07:00,1955.0,10.842122,10842.122 +36450,2025-03-11T14:36:06.996655-07:00,2019.0,10.832004,10832.004 +36451,2025-03-11T14:36:17.840007-07:00,1979.0,10.843352,10843.352 +36452,2025-03-11T14:36:28.681658-07:00,2005.0,10.841651,10841.651 +36453,2025-03-11T14:36:39.527818-07:00,2019.0,10.84616,10846.16 +36454,2025-03-11T14:36:50.370670-07:00,2015.0,10.842852,10842.852 +36455,2025-03-11T14:37:01.209166-07:00,2017.0,10.838496,10838.496 +36456,2025-03-11T14:37:12.052428-07:00,1989.0,10.843262,10843.262 +36457,2025-03-11T14:37:22.900627-07:00,1963.0,10.848199,10848.199 +36458,2025-03-11T14:37:33.742655-07:00,2011.0,10.842028,10842.028 +36459,2025-03-11T14:37:44.580702-07:00,2011.0,10.838047,10838.047 +36460,2025-03-11T14:37:55.416273-07:00,2004.0,10.835571,10835.571 +36461,2025-03-11T14:38:06.260783-07:00,2013.0,10.84451,10844.51 +36462,2025-03-11T14:38:17.098857-07:00,1966.0,10.838074,10838.074 +36463,2025-03-11T14:38:27.947996-07:00,2000.0,10.849139,10849.139 +36464,2025-03-11T14:38:38.777661-07:00,1933.0,10.829665,10829.665 +36465,2025-03-11T14:38:49.619598-07:00,1946.0,10.841937,10841.937 +36466,2025-03-11T14:39:00.464659-07:00,1937.0,10.845061,10845.061 +36467,2025-03-11T14:39:11.309303-07:00,2011.0,10.844644,10844.644 +36468,2025-03-11T14:39:22.158000-07:00,1965.0,10.848697,10848.697 +36469,2025-03-11T14:39:32.995622-07:00,2003.0,10.837622,10837.622 +36470,2025-03-11T14:39:43.839903-07:00,2001.0,10.844281,10844.281 +36471,2025-03-11T14:39:54.687662-07:00,1999.0,10.847759,10847.759 +36472,2025-03-11T14:40:05.530279-07:00,2010.0,10.842617,10842.617 +36473,2025-03-11T14:40:16.362837-07:00,1987.0,10.832558,10832.558 +36474,2025-03-11T14:40:27.207906-07:00,1927.0,10.845069,10845.069 +36475,2025-03-11T14:40:38.047800-07:00,1989.0,10.839894,10839.894 +36476,2025-03-11T14:40:48.892990-07:00,1930.0,10.84519,10845.19 +36477,2025-03-11T14:40:59.733658-07:00,1978.0,10.840668,10840.668 +36478,2025-03-11T14:41:10.573745-07:00,1997.0,10.840087,10840.087 +36479,2025-03-11T14:41:21.409747-07:00,2000.0,10.836002,10836.002 +36480,2025-03-11T14:41:32.244893-07:00,1993.0,10.835146,10835.146 +36481,2025-03-11T14:41:43.083928-07:00,1969.0,10.839035,10839.035 +36482,2025-03-11T14:41:53.928446-07:00,2011.0,10.844518,10844.518 +36483,2025-03-11T14:42:04.770759-07:00,1926.0,10.842313,10842.313 +36484,2025-03-11T14:42:15.615659-07:00,1922.0,10.8449,10844.9 +36485,2025-03-11T14:42:26.458967-07:00,2005.0,10.843308,10843.308 +36486,2025-03-11T14:42:37.303717-07:00,2013.0,10.84475,10844.75 +36487,2025-03-11T14:42:48.152936-07:00,1929.0,10.849219,10849.219 +36488,2025-03-11T14:42:59.002088-07:00,1970.0,10.849152,10849.152 +36489,2025-03-11T14:43:09.846743-07:00,2013.0,10.844655,10844.655 +36490,2025-03-11T14:43:20.687660-07:00,1963.0,10.840917,10840.917 +36491,2025-03-11T14:43:31.530998-07:00,2004.0,10.843338,10843.338 +36492,2025-03-11T14:43:42.379660-07:00,2002.0,10.848662,10848.662 +36493,2025-03-11T14:43:53.230051-07:00,2016.0,10.850391,10850.391 +36494,2025-03-11T14:44:04.068976-07:00,2014.0,10.838925,10838.925 +36495,2025-03-11T14:44:14.905875-07:00,2011.0,10.836899,10836.899 +36496,2025-03-11T14:44:25.753656-07:00,2015.0,10.847781,10847.781 +36497,2025-03-11T14:44:36.588061-07:00,1962.0,10.834405,10834.405 +36498,2025-03-11T14:44:47.443054-07:00,1999.0,10.854993,10854.993 +36499,2025-03-11T14:44:58.283798-07:00,1989.0,10.840744,10840.744 +36500,2025-03-11T14:45:09.125920-07:00,1938.0,10.842122,10842.122 +36501,2025-03-11T14:45:19.969633-07:00,2005.0,10.843713,10843.713 +36502,2025-03-11T14:45:30.806103-07:00,2015.0,10.83647,10836.47 +36503,2025-03-11T14:45:41.648996-07:00,1979.0,10.842893,10842.893 +36504,2025-03-11T14:45:52.503544-07:00,1989.0,10.854548,10854.548 +36505,2025-03-11T14:46:03.345651-07:00,1937.0,10.842107,10842.107 +36506,2025-03-11T14:46:14.189853-07:00,1977.0,10.844202,10844.202 +36507,2025-03-11T14:46:25.032200-07:00,1957.0,10.842347,10842.347 +36508,2025-03-11T14:46:35.873364-07:00,1934.0,10.841164,10841.164 +36509,2025-03-11T14:46:46.712658-07:00,1927.0,10.839294,10839.294 +36510,2025-03-11T14:46:57.553661-07:00,1968.0,10.841003,10841.003 +36511,2025-03-11T14:47:08.401405-07:00,1961.0,10.847744,10847.744 +36512,2025-03-11T14:47:19.238704-07:00,1931.0,10.837299,10837.299 +36513,2025-03-11T14:47:30.080656-07:00,1937.0,10.841952,10841.952 +36514,2025-03-11T14:47:40.919054-07:00,1968.0,10.838398,10838.398 +36515,2025-03-11T14:47:51.753423-07:00,1968.0,10.834369,10834.369 +36516,2025-03-11T14:48:02.602897-07:00,1953.0,10.849474,10849.474 +36517,2025-03-11T14:48:13.446811-07:00,1968.0,10.843914,10843.914 +36518,2025-03-11T14:48:24.289709-07:00,1955.0,10.842898,10842.898 +36519,2025-03-11T14:48:35.128934-07:00,1967.0,10.839225,10839.225 +36520,2025-03-11T14:48:45.979945-07:00,2015.0,10.851011,10851.011 +36521,2025-03-11T14:48:56.822810-07:00,2007.0,10.842865,10842.865 +36522,2025-03-11T14:49:07.666719-07:00,2013.0,10.843909,10843.909 +36523,2025-03-11T14:49:18.512878-07:00,2003.0,10.846159,10846.159 +36524,2025-03-11T14:49:29.359463-07:00,1998.0,10.846585,10846.585 +36525,2025-03-11T14:49:40.204268-07:00,2006.0,10.844805,10844.805 +36526,2025-03-11T14:49:51.039253-07:00,1965.0,10.834985,10834.985 +36527,2025-03-11T14:50:01.882125-07:00,2012.0,10.842872,10842.872 +36528,2025-03-11T14:50:12.730661-07:00,2003.0,10.848536,10848.536 +36529,2025-03-11T14:50:23.569267-07:00,2002.0,10.838606,10838.606 +36530,2025-03-11T14:50:34.412961-07:00,2015.0,10.843694,10843.694 +36531,2025-03-11T14:50:45.255755-07:00,2015.0,10.842794,10842.794 +36532,2025-03-11T14:50:56.096854-07:00,1948.0,10.841099,10841.099 +36533,2025-03-11T14:51:06.948649-07:00,1977.0,10.851795,10851.795 +36534,2025-03-11T14:51:17.786992-07:00,2004.0,10.838343,10838.343 +36535,2025-03-11T14:51:28.621654-07:00,1967.0,10.834662,10834.662 +36536,2025-03-11T14:51:39.465885-07:00,1961.0,10.844231,10844.231 +36537,2025-03-11T14:51:50.311832-07:00,1973.0,10.845947,10845.947 +36538,2025-03-11T14:52:01.153198-07:00,1991.0,10.841366,10841.366 +36539,2025-03-11T14:52:11.991652-07:00,1937.0,10.838454,10838.454 +36540,2025-03-11T14:52:22.833662-07:00,1968.0,10.84201,10842.01 +36541,2025-03-11T14:52:33.682825-07:00,1983.0,10.849163,10849.163 +36542,2025-03-11T14:52:44.525119-07:00,2016.0,10.842294,10842.294 +36543,2025-03-11T14:52:55.373607-07:00,1936.0,10.848488,10848.488 +36544,2025-03-11T14:53:06.222443-07:00,1939.0,10.848836,10848.836 +36545,2025-03-11T14:53:17.065722-07:00,2014.0,10.843279,10843.279 +36546,2025-03-11T14:53:27.899796-07:00,1957.0,10.834074,10834.074 +36547,2025-03-11T14:53:38.749201-07:00,2015.0,10.849405,10849.405 +36548,2025-03-11T14:53:49.587733-07:00,1982.0,10.838532,10838.532 +36549,2025-03-11T14:54:00.431817-07:00,2015.0,10.844084,10844.084 +36550,2025-03-11T14:54:11.262911-07:00,1982.0,10.831094,10831.094 +36551,2025-03-11T14:54:22.108963-07:00,1970.0,10.846052,10846.052 +36552,2025-03-11T14:54:32.945900-07:00,2012.0,10.836937,10836.937 +36553,2025-03-11T14:54:43.790654-07:00,2015.0,10.844754,10844.754 +36554,2025-03-11T14:54:54.638662-07:00,2014.0,10.848008,10848.008 +36555,2025-03-11T14:55:05.478961-07:00,1993.0,10.840299,10840.299 +36556,2025-03-11T14:55:16.326749-07:00,1983.0,10.847788,10847.788 +36557,2025-03-11T14:55:27.176132-07:00,2009.0,10.849383,10849.383 +36558,2025-03-11T14:55:38.019659-07:00,1938.0,10.843527,10843.527 +36559,2025-03-11T14:55:48.862955-07:00,2018.0,10.843296,10843.296 +36560,2025-03-11T14:55:59.694652-07:00,1973.0,10.831697,10831.697 +36561,2025-03-11T14:56:10.535879-07:00,2018.0,10.841227,10841.227 +36562,2025-03-11T14:56:21.385658-07:00,1973.0,10.849779,10849.779 +36563,2025-03-11T14:56:32.218661-07:00,1984.0,10.833003,10833.003 +36564,2025-03-11T14:56:43.062272-07:00,1995.0,10.843611,10843.611 +36565,2025-03-11T14:56:53.902653-07:00,1975.0,10.840381,10840.381 +36566,2025-03-11T14:57:04.744956-07:00,2007.0,10.842303,10842.303 +36567,2025-03-11T14:57:15.590941-07:00,1983.0,10.845985,10845.985 +36568,2025-03-11T14:57:26.438961-07:00,2021.0,10.84802,10848.02 +36569,2025-03-11T14:57:37.282334-07:00,1995.0,10.843373,10843.373 +36570,2025-03-11T14:57:48.124875-07:00,1943.0,10.842541,10842.541 +36571,2025-03-11T14:57:58.961792-07:00,1995.0,10.836917,10836.917 +36572,2025-03-11T14:58:09.800051-07:00,1979.0,10.838259,10838.259 +36573,2025-03-11T14:58:20.643751-07:00,1979.0,10.8437,10843.7 +36574,2025-03-11T14:58:31.489043-07:00,1973.0,10.845292,10845.292 +36575,2025-03-11T14:58:42.340681-07:00,2025.0,10.851638,10851.638 +36576,2025-03-11T14:58:53.182667-07:00,1968.0,10.841986,10841.986 +36577,2025-03-11T14:59:04.016086-07:00,1984.0,10.833419,10833.419 +36578,2025-03-11T14:59:14.865634-07:00,1998.0,10.849548,10849.548 +36579,2025-03-11T14:59:25.712787-07:00,1969.0,10.847153,10847.153 +36580,2025-03-11T14:59:36.552658-07:00,2005.0,10.839871,10839.871 +36581,2025-03-11T14:59:47.405778-07:00,2031.0,10.85312,10853.12 +36582,2025-03-11T14:59:58.248659-07:00,1997.0,10.842881,10842.881 +36583,2025-03-11T15:00:09.102708-07:00,2037.0,10.854049,10854.049 +36584,2025-03-11T15:00:19.952000-07:00,1965.0,10.849292,10849.292 +36585,2025-03-11T15:00:30.793706-07:00,1975.0,10.841706,10841.706 +36586,2025-03-11T15:00:41.642657-07:00,2015.0,10.848951,10848.951 +36587,2025-03-11T15:00:52.490896-07:00,1968.0,10.848239,10848.239 +36588,2025-03-11T15:01:03.339433-07:00,1990.0,10.848537,10848.537 +36589,2025-03-11T15:01:14.197665-07:00,2035.0,10.858232,10858.232 +36590,2025-03-11T15:01:25.037887-07:00,1994.0,10.840222,10840.222 +36591,2025-03-11T15:01:35.887040-07:00,2038.0,10.849153,10849.153 +36592,2025-03-11T15:01:46.738142-07:00,1966.0,10.851102,10851.102 +36593,2025-03-11T15:01:57.595689-07:00,1997.0,10.857547,10857.547 +36594,2025-03-11T15:02:08.449727-07:00,1986.0,10.854038,10854.038 +36595,2025-03-11T15:02:19.303964-07:00,2018.0,10.854237,10854.237 +36596,2025-03-11T15:02:30.142748-07:00,2029.0,10.838784,10838.784 +36597,2025-03-11T15:02:41.004941-07:00,2026.0,10.862193,10862.193 +36598,2025-03-11T15:02:51.851657-07:00,2035.0,10.846716,10846.716 +36599,2025-03-11T15:03:02.700653-07:00,2038.0,10.848996,10848.996 +36600,2025-03-11T15:03:13.547657-07:00,1953.0,10.847004,10847.004 +36601,2025-03-11T15:03:24.392777-07:00,2030.0,10.84512,10845.12 +36602,2025-03-11T15:03:35.248885-07:00,2027.0,10.856108,10856.108 +36603,2025-03-11T15:03:46.094656-07:00,2032.0,10.845771,10845.771 +36604,2025-03-11T15:03:56.936907-07:00,1994.0,10.842251,10842.251 +36605,2025-03-11T15:04:07.789205-07:00,2024.0,10.852298,10852.298 +36606,2025-03-11T15:04:18.633914-07:00,2021.0,10.844709,10844.709 +36607,2025-03-11T15:04:29.473973-07:00,2035.0,10.840059,10840.059 +36608,2025-03-11T15:04:40.328513-07:00,2032.0,10.85454,10854.54 +36609,2025-03-11T15:04:51.171961-07:00,2034.0,10.843448,10843.448 +36610,2025-03-11T15:05:02.025976-07:00,2039.0,10.854015,10854.015 +36611,2025-03-11T15:05:12.871886-07:00,2036.0,10.84591,10845.91 +36612,2025-03-11T15:05:23.728659-07:00,1997.0,10.856773,10856.773 +36613,2025-03-11T15:05:34.580939-07:00,2023.0,10.85228,10852.28 +36614,2025-03-11T15:05:45.428980-07:00,2033.0,10.848041,10848.041 +36615,2025-03-11T15:05:56.286197-07:00,2029.0,10.857217,10857.217 +36616,2025-03-11T15:06:07.135454-07:00,2001.0,10.849257,10849.257 +36617,2025-03-11T15:06:17.976915-07:00,2010.0,10.841461,10841.461 +36618,2025-03-11T15:06:28.832703-07:00,1967.0,10.855788,10855.788 +36619,2025-03-11T15:06:39.684651-07:00,2018.0,10.851948,10851.948 +36620,2025-03-11T15:06:50.530636-07:00,1984.0,10.845985,10845.985 +36621,2025-03-11T15:07:01.387653-07:00,2006.0,10.857017,10857.017 +36622,2025-03-11T15:07:12.195613-07:00,2044.0,10.80796,10807.96 +36623,2025-03-11T15:07:23.045426-07:00,2047.0,10.849813,10849.813 +36624,2025-03-11T15:07:33.898351-07:00,1981.0,10.852925,10852.925 +36625,2025-03-11T15:07:44.751350-07:00,2045.0,10.852999,10852.999 +36626,2025-03-11T15:07:55.597711-07:00,2015.0,10.846361,10846.361 +36627,2025-03-11T15:08:06.457606-07:00,2007.0,10.859895,10859.895 +36628,2025-03-11T15:08:17.304631-07:00,2017.0,10.847025,10847.025 +36629,2025-03-11T15:08:28.158673-07:00,2000.0,10.854042,10854.042 +36630,2025-03-11T15:08:39.013656-07:00,1973.0,10.854983,10854.983 +36631,2025-03-11T15:08:49.868732-07:00,2046.0,10.855076,10855.076 +36632,2025-03-11T15:09:00.715088-07:00,2033.0,10.846356,10846.356 +36633,2025-03-11T15:09:11.573056-07:00,2003.0,10.857968,10857.968 +36634,2025-03-11T15:09:22.420703-07:00,1995.0,10.847647,10847.647 +36635,2025-03-11T15:09:33.264350-07:00,2030.0,10.843647,10843.647 +36636,2025-03-11T15:09:44.122517-07:00,1962.0,10.858167,10858.167 +36637,2025-03-11T15:09:54.971654-07:00,2003.0,10.849137,10849.137 +36638,2025-03-11T15:10:05.822739-07:00,2042.0,10.851085,10851.085 +36639,2025-03-11T15:10:16.670666-07:00,2028.0,10.847927,10847.927 +36640,2025-03-11T15:10:27.516997-07:00,1984.0,10.846331,10846.331 +36641,2025-03-11T15:10:38.367594-07:00,2017.0,10.850597,10850.597 +36642,2025-03-11T15:10:49.214642-07:00,2013.0,10.847048,10847.048 +36643,2025-03-11T15:11:00.070552-07:00,2012.0,10.85591,10855.91 +36644,2025-03-11T15:11:10.920370-07:00,1999.0,10.849818,10849.818 +36645,2025-03-11T15:11:21.779612-07:00,2054.0,10.859242,10859.242 +36646,2025-03-11T15:11:32.623584-07:00,2029.0,10.843972,10843.972 +36647,2025-03-11T15:11:43.482446-07:00,2031.0,10.858862,10858.862 +36648,2025-03-11T15:11:54.325336-07:00,1991.0,10.84289,10842.89 +36649,2025-03-11T15:12:05.185329-07:00,2032.0,10.859993,10859.993 +36650,2025-03-11T15:12:16.035347-07:00,2034.0,10.850018,10850.018 +36651,2025-03-11T15:12:26.878768-07:00,2035.0,10.843421,10843.421 +36652,2025-03-11T15:12:37.735601-07:00,1970.0,10.856833,10856.833 +36653,2025-03-11T15:12:48.593599-07:00,2060.0,10.857998,10857.998 +36654,2025-03-11T15:12:59.440957-07:00,2032.0,10.847358,10847.358 +36655,2025-03-11T15:13:10.298391-07:00,2057.0,10.857434,10857.434 +36656,2025-03-11T15:13:21.139608-07:00,2059.0,10.841217,10841.217 +36657,2025-03-11T15:13:31.993348-07:00,2002.0,10.85374,10853.74 +36658,2025-03-11T15:13:42.837681-07:00,2053.0,10.844333,10844.333 +36659,2025-03-11T15:13:53.690669-07:00,2003.0,10.852988,10852.988 +36660,2025-03-11T15:14:04.534498-07:00,1969.0,10.843829,10843.829 +36661,2025-03-11T15:14:15.388940-07:00,2041.0,10.854442,10854.442 +36662,2025-03-11T15:14:26.243487-07:00,2018.0,10.854547,10854.547 +36663,2025-03-11T15:14:37.088724-07:00,2018.0,10.845237,10845.237 +36664,2025-03-11T15:14:47.946589-07:00,2003.0,10.857865,10857.865 +36665,2025-03-11T15:14:58.794400-07:00,2047.0,10.847811,10847.811 +36666,2025-03-11T15:15:09.645353-07:00,2033.0,10.850953,10850.953 +36667,2025-03-11T15:15:20.497569-07:00,2045.0,10.852216,10852.216 +36668,2025-03-11T15:15:31.351727-07:00,1965.0,10.854158,10854.158 +36669,2025-03-11T15:15:42.192456-07:00,2045.0,10.840729,10840.729 +36670,2025-03-11T15:15:53.045466-07:00,2046.0,10.85301,10853.01 +36671,2025-03-11T15:16:03.889650-07:00,2007.0,10.844184,10844.184 +36672,2025-03-11T15:16:14.742553-07:00,2047.0,10.852903,10852.903 +36673,2025-03-11T15:16:25.585344-07:00,1983.0,10.842791,10842.791 +36674,2025-03-11T15:16:36.444354-07:00,2019.0,10.85901,10859.01 +36675,2025-03-11T15:16:47.285262-07:00,1977.0,10.840908,10840.908 +36676,2025-03-11T15:16:58.139352-07:00,2013.0,10.85409,10854.09 +36677,2025-03-11T15:17:08.985480-07:00,2045.0,10.846128,10846.128 +36678,2025-03-11T15:17:19.836331-07:00,2032.0,10.850851,10850.851 +36679,2025-03-11T15:17:30.684547-07:00,1997.0,10.848216,10848.216 +36680,2025-03-11T15:17:41.533013-07:00,2015.0,10.848466,10848.466 +36681,2025-03-11T15:17:52.383738-07:00,2032.0,10.850725,10850.725 +36682,2025-03-11T15:18:03.227666-07:00,2045.0,10.843928,10843.928 +36683,2025-03-11T15:18:14.082351-07:00,2005.0,10.854685,10854.685 +36684,2025-03-11T15:18:24.929665-07:00,2043.0,10.847314,10847.314 +36685,2025-03-11T15:18:35.784722-07:00,1957.0,10.855057,10855.057 +36686,2025-03-11T15:18:46.627381-07:00,2029.0,10.842659,10842.659 +36687,2025-03-11T15:18:57.481096-07:00,1979.0,10.853715,10853.715 +36688,2025-03-11T15:19:08.325673-07:00,2018.0,10.844577,10844.577 +36689,2025-03-11T15:19:19.180658-07:00,2033.0,10.854985,10854.985 +36690,2025-03-11T15:19:30.022627-07:00,2004.0,10.841969,10841.969 +36691,2025-03-11T15:19:40.875747-07:00,2045.0,10.85312,10853.12 +36692,2025-03-11T15:19:51.723591-07:00,2006.0,10.847844,10847.844 +36693,2025-03-11T15:20:02.579012-07:00,2035.0,10.855421,10855.421 +36694,2025-03-11T15:20:13.420599-07:00,2027.0,10.841587,10841.587 +36695,2025-03-11T15:20:20.811970-07:00,1984.0,7.391371,7391.371 +36696,2025-03-11T15:20:24.270348-07:00,1975.0,3.458378,3458.378 +36697,2025-03-11T15:20:35.113582-07:00,2022.0,10.843234,10843.234 +36698,2025-03-11T15:20:45.957702-07:00,1989.0,10.84412,10844.12 +36699,2025-03-11T15:20:56.812687-07:00,2039.0,10.854985,10854.985 +36700,2025-03-11T15:21:07.647343-07:00,2011.0,10.834656,10834.656 +36701,2025-03-11T15:21:18.496713-07:00,1949.0,10.84937,10849.37 +36702,2025-03-11T15:21:29.346350-07:00,2000.0,10.849637,10849.637 +36703,2025-03-11T15:21:40.198777-07:00,2014.0,10.852427,10852.427 +36704,2025-03-11T15:21:51.056434-07:00,2001.0,10.857657,10857.657 +36705,2025-03-11T15:22:01.905469-07:00,2004.0,10.849035,10849.035 +36706,2025-03-11T15:22:12.747391-07:00,1984.0,10.841922,10841.922 +36707,2025-03-11T15:22:23.601736-07:00,2022.0,10.854345,10854.345 +36708,2025-03-11T15:22:34.446847-07:00,2032.0,10.845111,10845.111 +36709,2025-03-11T15:22:45.300385-07:00,1999.0,10.853538,10853.538 +36710,2025-03-11T15:22:56.147344-07:00,2023.0,10.846959,10846.959 +36711,2025-03-11T15:23:06.992471-07:00,2001.0,10.845127,10845.127 +36712,2025-03-11T15:23:17.841423-07:00,1993.0,10.848952,10848.952 +36713,2025-03-11T15:23:28.689333-07:00,2036.0,10.84791,10847.91 +36714,2025-03-11T15:23:39.538353-07:00,2017.0,10.84902,10849.02 +36715,2025-03-11T15:23:50.390530-07:00,1955.0,10.852177,10852.177 +36716,2025-03-11T15:24:01.236656-07:00,2033.0,10.846126,10846.126 +36717,2025-03-11T15:24:12.088936-07:00,1998.0,10.85228,10852.28 +36718,2025-03-11T15:24:22.933401-07:00,2034.0,10.844465,10844.465 +36719,2025-03-11T15:24:33.776351-07:00,2022.0,10.84295,10842.95 +36720,2025-03-11T15:24:44.629473-07:00,1958.0,10.853122,10853.122 +36721,2025-03-11T15:24:55.485834-07:00,1986.0,10.856361,10856.361 +36722,2025-03-11T15:25:06.332667-07:00,2024.0,10.846833,10846.833 +36723,2025-03-11T15:25:17.182350-07:00,2027.0,10.849683,10849.683 +36724,2025-03-11T15:25:28.026635-07:00,1989.0,10.844285,10844.285 +36725,2025-03-11T15:25:38.880693-07:00,1955.0,10.854058,10854.058 +36726,2025-03-11T15:25:49.724406-07:00,1949.0,10.843713,10843.713 +36727,2025-03-11T15:26:00.577860-07:00,2019.0,10.853454,10853.454 +36728,2025-03-11T15:26:11.419350-07:00,2002.0,10.84149,10841.49 +36729,2025-03-11T15:26:22.263357-07:00,2032.0,10.844007,10844.007 +36730,2025-03-11T15:26:33.107428-07:00,2027.0,10.844071,10844.071 +36731,2025-03-11T15:26:43.960538-07:00,1969.0,10.85311,10853.11 +36732,2025-03-11T15:26:54.816350-07:00,1986.0,10.855812,10855.812 +36733,2025-03-11T15:27:05.664361-07:00,1987.0,10.848011,10848.011 +36734,2025-03-11T15:27:16.508905-07:00,2025.0,10.844544,10844.544 +36735,2025-03-11T15:27:27.355441-07:00,1984.0,10.846536,10846.536 +36736,2025-03-11T15:27:38.199344-07:00,2019.0,10.843903,10843.903 +36737,2025-03-11T15:27:49.058561-07:00,1968.0,10.859217,10859.217 +36738,2025-03-11T15:27:59.910432-07:00,2009.0,10.851871,10851.871 +36739,2025-03-11T15:28:10.751360-07:00,2005.0,10.840928,10840.928 +36740,2025-03-11T15:28:21.606486-07:00,2033.0,10.855126,10855.126 +36741,2025-03-11T15:28:32.448739-07:00,1982.0,10.842253,10842.253 +36742,2025-03-11T15:28:43.303833-07:00,2032.0,10.855094,10855.094 +36743,2025-03-11T15:28:54.147600-07:00,2030.0,10.843767,10843.767 +36744,2025-03-11T15:29:04.991514-07:00,2033.0,10.843914,10843.914 +36745,2025-03-11T15:29:15.843589-07:00,2005.0,10.852075,10852.075 +36746,2025-03-11T15:29:26.685403-07:00,2029.0,10.841814,10841.814 +36747,2025-03-11T15:29:37.530274-07:00,1947.0,10.844871,10844.871 +36748,2025-03-11T15:29:48.384406-07:00,2037.0,10.854132,10854.132 +36749,2025-03-11T15:29:59.226917-07:00,2006.0,10.842511,10842.511 +36750,2025-03-11T15:30:10.084759-07:00,1990.0,10.857842,10857.842 +36751,2025-03-11T15:30:20.924575-07:00,2032.0,10.839816,10839.816 +36752,2025-03-11T15:30:31.781751-07:00,2019.0,10.857176,10857.176 +36753,2025-03-11T15:30:42.629712-07:00,2035.0,10.847961,10847.961 +36754,2025-03-11T15:30:53.471540-07:00,2000.0,10.841828,10841.828 +36755,2025-03-11T15:31:04.320340-07:00,1969.0,10.8488,10848.8 +36756,2025-03-11T15:31:15.164639-07:00,2032.0,10.844299,10844.299 +36757,2025-03-11T15:31:26.019625-07:00,2032.0,10.854986,10854.986 +36758,2025-03-11T15:31:36.864907-07:00,2033.0,10.845282,10845.282 +36759,2025-03-11T15:31:47.721546-07:00,2016.0,10.856639,10856.639 +36760,2025-03-11T15:31:58.570759-07:00,1968.0,10.849213,10849.213 +36761,2025-03-11T15:32:09.410350-07:00,1957.0,10.839591,10839.591 +36762,2025-03-11T15:32:20.256471-07:00,1995.0,10.846121,10846.121 +36763,2025-03-11T15:32:31.099358-07:00,1990.0,10.842887,10842.887 +36764,2025-03-11T15:32:41.951636-07:00,1937.0,10.852278,10852.278 +36765,2025-03-11T15:32:52.796687-07:00,1979.0,10.845051,10845.051 +36766,2025-03-11T15:33:03.652093-07:00,1984.0,10.855406,10855.406 +36767,2025-03-11T15:33:14.494524-07:00,1997.0,10.842431,10842.431 +36768,2025-03-11T15:33:25.344348-07:00,1967.0,10.849824,10849.824 +36769,2025-03-11T15:33:36.199724-07:00,1955.0,10.855376,10855.376 +36770,2025-03-11T15:33:47.054346-07:00,2015.0,10.854622,10854.622 +36771,2025-03-11T15:33:57.901429-07:00,1997.0,10.847083,10847.083 +36772,2025-03-11T15:34:08.743876-07:00,2026.0,10.842447,10842.447 +36773,2025-03-11T15:34:19.592704-07:00,1973.0,10.848828,10848.828 +36774,2025-03-11T15:34:30.442562-07:00,2018.0,10.849858,10849.858 +36775,2025-03-11T15:34:41.286628-07:00,1990.0,10.844066,10844.066 +36776,2025-03-11T15:34:52.128350-07:00,2032.0,10.841722,10841.722 +36777,2025-03-11T15:35:02.979548-07:00,1968.0,10.851198,10851.198 +36778,2025-03-11T15:35:13.826543-07:00,1979.0,10.846995,10846.995 +36779,2025-03-11T15:35:24.665499-07:00,2019.0,10.838956,10838.956 +36780,2025-03-11T15:35:35.510604-07:00,1994.0,10.845105,10845.105 +36781,2025-03-11T15:35:46.343347-07:00,2011.0,10.832743,10832.743 +36782,2025-03-11T15:35:57.196518-07:00,1986.0,10.853171,10853.171 +36783,2025-03-11T15:36:08.036712-07:00,1955.0,10.840194,10840.194 +36784,2025-03-11T15:36:18.880613-07:00,2003.0,10.843901,10843.901 +36785,2025-03-11T15:36:29.716600-07:00,2031.0,10.835987,10835.987 +36786,2025-03-11T15:36:40.563491-07:00,2003.0,10.846891,10846.891 +36787,2025-03-11T15:36:51.407595-07:00,1979.0,10.844104,10844.104 +36788,2025-03-11T15:37:02.251377-07:00,1998.0,10.843782,10843.782 +36789,2025-03-11T15:37:13.089519-07:00,2032.0,10.838142,10838.142 +36790,2025-03-11T15:37:23.938353-07:00,2025.0,10.848834,10848.834 +36791,2025-03-11T15:37:34.793547-07:00,1983.0,10.855194,10855.194 +36792,2025-03-11T15:37:45.630352-07:00,2034.0,10.836805,10836.805 +36793,2025-03-11T15:37:56.484499-07:00,1986.0,10.854147,10854.147 +36794,2025-03-11T15:38:07.327712-07:00,1989.0,10.843213,10843.213 +36795,2025-03-11T15:38:18.170691-07:00,2022.0,10.842979,10842.979 +36796,2025-03-11T15:38:18.989231-07:00,2022.0,0.81854,818.54 +36797,2025-03-11T15:38:29.014015-07:00,2027.0,10.024784,10024.784 +36798,2025-03-11T15:38:39.859230-07:00,1989.0,10.845215,10845.215 +36799,2025-03-11T15:38:50.699349-07:00,1993.0,10.840119,10840.119 +36800,2025-03-11T15:39:01.536337-07:00,1956.0,10.836988,10836.988 +36801,2025-03-11T15:39:12.384397-07:00,2000.0,10.84806,10848.06 +36802,2025-03-11T15:39:23.228354-07:00,2019.0,10.843957,10843.957 +36803,2025-03-11T15:39:34.082344-07:00,2014.0,10.85399,10853.99 +36804,2025-03-11T15:39:44.925630-07:00,2032.0,10.843286,10843.286 +36805,2025-03-11T15:39:55.768884-07:00,2010.0,10.843254,10843.254 +36806,2025-03-11T15:40:06.620928-07:00,1973.0,10.852044,10852.044 +36807,2025-03-11T15:40:17.454493-07:00,1999.0,10.833565,10833.565 +36808,2025-03-11T15:40:28.308585-07:00,1969.0,10.854092,10854.092 +36809,2025-03-11T15:40:39.150351-07:00,1965.0,10.841766,10841.766 +36810,2025-03-11T15:40:49.997727-07:00,2041.0,10.847376,10847.376 +36811,2025-03-11T15:41:00.841671-07:00,2032.0,10.843944,10843.944 +36812,2025-03-11T15:41:11.692914-07:00,1981.0,10.851243,10851.243 +36813,2025-03-11T15:41:22.536563-07:00,1999.0,10.843649,10843.649 +36814,2025-03-11T15:41:33.385350-07:00,2023.0,10.848787,10848.787 +36815,2025-03-11T15:41:44.223354-07:00,2038.0,10.838004,10838.004 +36816,2025-03-11T15:41:55.065707-07:00,1986.0,10.842353,10842.353 +36817,2025-03-11T15:42:05.904348-07:00,2032.0,10.838641,10838.641 +36818,2025-03-11T15:42:16.751861-07:00,2033.0,10.847513,10847.513 +36819,2025-03-11T15:42:27.598329-07:00,2037.0,10.846468,10846.468 +36820,2025-03-11T15:42:38.432484-07:00,2005.0,10.834155,10834.155 +36821,2025-03-11T15:42:49.277508-07:00,2019.0,10.845024,10845.024 +36822,2025-03-11T15:43:00.115496-07:00,2031.0,10.837988,10837.988 +36823,2025-03-11T15:43:10.958517-07:00,1990.0,10.843021,10843.021 +36824,2025-03-11T15:43:21.797787-07:00,2000.0,10.83927,10839.27 +36825,2025-03-11T15:43:32.642516-07:00,2020.0,10.844729,10844.729 +36826,2025-03-11T15:43:43.486585-07:00,1981.0,10.844069,10844.069 +36827,2025-03-11T15:43:54.338346-07:00,2001.0,10.851761,10851.761 +36828,2025-03-11T15:44:05.179329-07:00,1958.0,10.840983,10840.983 +36829,2025-03-11T15:44:16.027488-07:00,1977.0,10.848159,10848.159 +36830,2025-03-11T15:44:26.873649-07:00,1973.0,10.846161,10846.161 +36831,2025-03-11T15:44:37.719685-07:00,1969.0,10.846036,10846.036 +36832,2025-03-11T15:44:48.566438-07:00,1997.0,10.846753,10846.753 +36833,2025-03-11T15:44:59.398961-07:00,2000.0,10.832523,10832.523 +36834,2025-03-11T15:45:10.243851-07:00,1999.0,10.84489,10844.89 +36835,2025-03-11T15:45:21.100250-07:00,2036.0,10.856399,10856.399 +36836,2025-03-11T15:45:31.942810-07:00,2046.0,10.84256,10842.56 +36837,2025-03-11T15:45:42.792025-07:00,2011.0,10.849215,10849.215 +36838,2025-03-11T15:45:53.642342-07:00,2054.0,10.850317,10850.317 +36839,2025-03-11T15:46:04.492351-07:00,2047.0,10.850009,10850.009 +36840,2025-03-11T15:46:15.333488-07:00,2023.0,10.841137,10841.137 +36841,2025-03-11T15:46:26.172765-07:00,2026.0,10.839277,10839.277 +36842,2025-03-11T15:46:37.020683-07:00,2013.0,10.847918,10847.918 +36843,2025-03-11T15:46:47.861650-07:00,1983.0,10.840967,10840.967 +36844,2025-03-11T15:46:58.714494-07:00,2058.0,10.852844,10852.844 +36845,2025-03-11T15:47:09.550613-07:00,2039.0,10.836119,10836.119 +36846,2025-03-11T15:47:20.393748-07:00,2059.0,10.843135,10843.135 +36847,2025-03-11T15:47:31.236697-07:00,2058.0,10.842949,10842.949 +36848,2025-03-11T15:47:42.080413-07:00,2059.0,10.843716,10843.716 +36849,2025-03-11T15:47:52.918352-07:00,2055.0,10.837939,10837.939 +36850,2025-03-11T15:48:03.765496-07:00,2029.0,10.847144,10847.144 +36851,2025-03-11T15:48:14.606624-07:00,2057.0,10.841128,10841.128 +36852,2025-03-11T15:48:25.450573-07:00,2013.0,10.843949,10843.949 +36853,2025-03-11T15:48:36.294351-07:00,1963.0,10.843778,10843.778 +36854,2025-03-11T15:48:47.138801-07:00,1974.0,10.84445,10844.45 +36855,2025-03-11T15:48:57.976808-07:00,2038.0,10.838007,10838.007 +36856,2025-03-11T15:49:08.824697-07:00,2041.0,10.847889,10847.889 +36857,2025-03-11T15:49:19.666609-07:00,1973.0,10.841912,10841.912 +36858,2025-03-11T15:49:30.520350-07:00,2039.0,10.853741,10853.741 +36859,2025-03-11T15:49:41.364347-07:00,1997.0,10.843997,10843.997 +36860,2025-03-11T15:49:52.208604-07:00,2014.0,10.844257,10844.257 +36861,2025-03-11T15:50:03.049743-07:00,2036.0,10.841139,10841.139 +36862,2025-03-11T15:50:13.893654-07:00,2031.0,10.843911,10843.911 +36863,2025-03-11T15:50:24.737581-07:00,2027.0,10.843927,10843.927 +36864,2025-03-11T15:50:35.580545-07:00,2018.0,10.842964,10842.964 +36865,2025-03-11T15:50:46.422743-07:00,2007.0,10.842198,10842.198 +36866,2025-03-11T15:50:57.269612-07:00,2029.0,10.846869,10846.869 +36867,2025-03-11T15:51:08.110935-07:00,2007.0,10.841323,10841.323 +36868,2025-03-11T15:51:18.959581-07:00,1962.0,10.848646,10848.646 +36869,2025-03-11T15:51:29.798350-07:00,2038.0,10.838769,10838.769 +36870,2025-03-11T15:51:40.648453-07:00,2005.0,10.850103,10850.103 +36871,2025-03-11T15:51:51.489023-07:00,1965.0,10.84057,10840.57 +36872,2025-03-11T15:52:02.335436-07:00,2001.0,10.846413,10846.413 +36873,2025-03-11T15:52:13.191380-07:00,1998.0,10.855944,10855.944 +36874,2025-03-11T15:52:24.029637-07:00,2042.0,10.838257,10838.257 +36875,2025-03-11T15:52:34.877726-07:00,1979.0,10.848089,10848.089 +36876,2025-03-11T15:52:45.730601-07:00,2043.0,10.852875,10852.875 +36877,2025-03-11T15:52:56.572812-07:00,2044.0,10.842211,10842.211 +36878,2025-03-11T15:53:07.418207-07:00,2014.0,10.845395,10845.395 +36879,2025-03-11T15:53:18.268349-07:00,1994.0,10.850142,10850.142 +36880,2025-03-11T15:53:29.114345-07:00,1989.0,10.845996,10845.996 +36881,2025-03-11T15:53:39.970494-07:00,2046.0,10.856149,10856.149 +36882,2025-03-11T15:53:50.808351-07:00,2023.0,10.837857,10837.857 +36883,2025-03-11T15:54:01.655355-07:00,2021.0,10.847004,10847.004 +36884,2025-03-11T15:54:12.498678-07:00,2031.0,10.843323,10843.323 +36885,2025-03-11T15:54:23.331390-07:00,2009.0,10.832712,10832.712 +36886,2025-03-11T15:54:34.179516-07:00,2006.0,10.848126,10848.126 +36887,2025-03-11T15:54:45.028652-07:00,2032.0,10.849136,10849.136 +36888,2025-03-11T15:54:55.870766-07:00,2054.0,10.842114,10842.114 +36889,2025-03-11T15:55:06.714951-07:00,1984.0,10.844185,10844.185 +36890,2025-03-11T15:55:17.570342-07:00,2047.0,10.855391,10855.391 +36891,2025-03-11T15:55:28.406351-07:00,1969.0,10.836009,10836.009 +36892,2025-03-11T15:55:39.254500-07:00,2041.0,10.848149,10848.149 +36893,2025-03-11T15:55:50.098331-07:00,2001.0,10.843831,10843.831 +36894,2025-03-11T15:56:00.941695-07:00,2054.0,10.843364,10843.364 +36895,2025-03-11T15:56:11.791394-07:00,2010.0,10.849699,10849.699 +36896,2025-03-11T15:56:22.637488-07:00,2034.0,10.846094,10846.094 +36897,2025-03-11T15:56:33.475701-07:00,2047.0,10.838213,10838.213 +36898,2025-03-11T15:56:44.326355-07:00,2047.0,10.850654,10850.654 +36899,2025-03-11T15:56:55.180853-07:00,2010.0,10.854498,10854.498 +36900,2025-03-11T15:57:06.011709-07:00,2000.0,10.830856,10830.856 +36901,2025-03-11T15:57:16.865725-07:00,2045.0,10.854016,10854.016 +36902,2025-03-11T15:57:27.706574-07:00,2022.0,10.840849,10840.849 +36903,2025-03-11T15:57:38.552493-07:00,2006.0,10.845919,10845.919 +36904,2025-03-11T15:57:49.394352-07:00,2032.0,10.841859,10841.859 +36905,2025-03-11T15:58:00.228639-07:00,1969.0,10.834287,10834.287 +36906,2025-03-11T15:58:11.080383-07:00,1991.0,10.851744,10851.744 +36907,2025-03-11T15:58:21.913771-07:00,2022.0,10.833388,10833.388 +36908,2025-03-11T15:58:32.758664-07:00,2006.0,10.844893,10844.893 +36909,2025-03-11T15:58:43.604876-07:00,2041.0,10.846212,10846.212 +36910,2025-03-11T15:58:54.453848-07:00,1975.0,10.848972,10848.972 +36911,2025-03-11T15:59:05.293533-07:00,2037.0,10.839685,10839.685 +36912,2025-03-11T15:59:16.129350-07:00,2043.0,10.835817,10835.817 +36913,2025-03-11T15:59:26.978413-07:00,2005.0,10.849063,10849.063 +36914,2025-03-11T15:59:37.821966-07:00,1999.0,10.843553,10843.553 +36915,2025-03-11T15:59:48.657353-07:00,2047.0,10.835387,10835.387 +36916,2025-03-11T15:59:59.507579-07:00,2053.0,10.850226,10850.226 +36917,2025-03-11T16:00:10.345743-07:00,2045.0,10.838164,10838.164 +36918,2025-03-11T16:00:21.198431-07:00,2015.0,10.852688,10852.688 +36919,2025-03-11T16:00:32.041805-07:00,2041.0,10.843374,10843.374 +36920,2025-03-11T16:00:42.884624-07:00,1963.0,10.842819,10842.819 +36921,2025-03-11T16:00:53.723345-07:00,2042.0,10.838721,10838.721 +36922,2025-03-11T16:01:04.571422-07:00,2043.0,10.848077,10848.077 +36923,2025-03-11T16:01:15.416594-07:00,2035.0,10.845172,10845.172 +36924,2025-03-11T16:01:26.268744-07:00,2015.0,10.85215,10852.15 +36925,2025-03-11T16:01:37.116434-07:00,1958.0,10.84769,10847.69 +36926,2025-03-11T16:01:47.965393-07:00,2038.0,10.848959,10848.959 +36927,2025-03-11T16:01:58.804499-07:00,2027.0,10.839106,10839.106 +36928,2025-03-11T16:02:09.652567-07:00,2021.0,10.848068,10848.068 +36929,2025-03-11T16:02:20.485216-07:00,2001.0,10.832649,10832.649 +36930,2025-03-11T16:02:31.322921-07:00,2046.0,10.837705,10837.705 +36931,2025-03-11T16:02:42.166346-07:00,1999.0,10.843425,10843.425 +36932,2025-03-11T16:02:53.011755-07:00,2007.0,10.845409,10845.409 +36933,2025-03-11T16:03:03.846443-07:00,2007.0,10.834688,10834.688 +36934,2025-03-11T16:03:14.693638-07:00,2017.0,10.847195,10847.195 +36935,2025-03-11T16:03:25.531768-07:00,2061.0,10.83813,10838.13 +36936,2025-03-11T16:03:36.372738-07:00,2015.0,10.84097,10840.97 +36937,2025-03-11T16:03:47.217163-07:00,2063.0,10.844425,10844.425 +36938,2025-03-11T16:03:58.061329-07:00,2032.0,10.844166,10844.166 +36939,2025-03-11T16:04:08.894348-07:00,2000.0,10.833019,10833.019 +36940,2025-03-11T16:04:19.739620-07:00,1987.0,10.845272,10845.272 +36941,2025-03-11T16:04:30.578663-07:00,2015.0,10.839043,10839.043 +36942,2025-03-11T16:04:41.429486-07:00,2064.0,10.850823,10850.823 +36943,2025-03-11T16:04:52.276513-07:00,2021.0,10.847027,10847.027 +36944,2025-03-11T16:05:03.117341-07:00,2046.0,10.840828,10840.828 +36945,2025-03-11T16:05:13.963306-07:00,2015.0,10.845965,10845.965 +36946,2025-03-11T16:05:24.812803-07:00,1968.0,10.849497,10849.497 +36947,2025-03-11T16:05:35.659496-07:00,2055.0,10.846693,10846.693 +36948,2025-03-11T16:05:46.500346-07:00,2043.0,10.84085,10840.85 +36949,2025-03-11T16:05:57.352593-07:00,2047.0,10.852247,10852.247 +36950,2025-03-11T16:06:08.189619-07:00,2039.0,10.837026,10837.026 +36951,2025-03-11T16:06:19.032876-07:00,2037.0,10.843257,10843.257 +36952,2025-03-11T16:06:29.879443-07:00,2045.0,10.846567,10846.567 +36953,2025-03-11T16:06:40.728514-07:00,2043.0,10.849071,10849.071 +36954,2025-03-11T16:06:51.583397-07:00,1997.0,10.854883,10854.883 +36955,2025-03-11T16:07:02.432361-07:00,1968.0,10.848964,10848.964 +36956,2025-03-11T16:07:13.334385-07:00,1975.0,10.902024,10902.024 +36957,2025-03-11T16:07:24.181439-07:00,2034.0,10.847054,10847.054 +36958,2025-03-11T16:07:35.031316-07:00,2022.0,10.849877,10849.877 +36959,2025-03-11T16:07:45.888433-07:00,2018.0,10.857117,10857.117 +36960,2025-03-11T16:07:56.732061-07:00,2004.0,10.843628,10843.628 +36961,2025-03-11T16:08:07.580630-07:00,2014.0,10.848569,10848.569 +36962,2025-03-11T16:08:18.426859-07:00,2046.0,10.846229,10846.229 +36963,2025-03-11T16:08:29.273131-07:00,2045.0,10.846272,10846.272 +36964,2025-03-11T16:08:40.124144-07:00,2042.0,10.851013,10851.013 +36965,2025-03-11T16:08:50.980039-07:00,1983.0,10.855895,10855.895 +36966,2025-03-11T16:09:01.825113-07:00,1999.0,10.845074,10845.074 +36967,2025-03-11T16:09:12.676876-07:00,2013.0,10.851763,10851.763 +36968,2025-03-11T16:09:23.521864-07:00,1968.0,10.844988,10844.988 +36969,2025-03-11T16:09:34.375876-07:00,2055.0,10.854012,10854.012 +36970,2025-03-11T16:09:45.216553-07:00,1967.0,10.840677,10840.677 +36971,2025-03-11T16:09:56.073196-07:00,1968.0,10.856643,10856.643 +36972,2025-03-11T16:10:06.908863-07:00,2021.0,10.835667,10835.667 +36973,2025-03-11T16:10:17.751876-07:00,1980.0,10.843013,10843.013 +36974,2025-03-11T16:10:28.592902-07:00,2043.0,10.841026,10841.026 +36975,2025-03-11T16:10:39.437433-07:00,1991.0,10.844531,10844.531 +36976,2025-03-11T16:10:50.292745-07:00,2045.0,10.855312,10855.312 +36977,2025-03-11T16:11:01.135857-07:00,2021.0,10.843112,10843.112 +36978,2025-03-11T16:11:11.986866-07:00,2002.0,10.851009,10851.009 +36979,2025-03-11T16:11:22.838860-07:00,2029.0,10.851994,10851.994 +36980,2025-03-11T16:11:33.683073-07:00,2029.0,10.844213,10844.213 +36981,2025-03-11T16:11:44.539864-07:00,2036.0,10.856791,10856.791 +36982,2025-03-11T16:11:55.386113-07:00,1964.0,10.846249,10846.249 +36983,2025-03-11T16:12:06.238865-07:00,2009.0,10.852752,10852.752 +36984,2025-03-11T16:12:17.082470-07:00,1995.0,10.843605,10843.605 +36985,2025-03-11T16:12:27.934130-07:00,2029.0,10.85166,10851.66 +36986,2025-03-11T16:12:38.778332-07:00,1951.0,10.844202,10844.202 +36987,2025-03-11T16:12:49.629863-07:00,2035.0,10.851531,10851.531 +36988,2025-03-11T16:13:00.475917-07:00,1990.0,10.846054,10846.054 +36989,2025-03-11T16:13:11.329354-07:00,2031.0,10.853437,10853.437 +36990,2025-03-11T16:13:22.176161-07:00,2033.0,10.846807,10846.807 +36991,2025-03-11T16:13:33.016246-07:00,2035.0,10.840085,10840.085 +36992,2025-03-11T16:13:43.855098-07:00,2034.0,10.838852,10838.852 +36993,2025-03-11T16:13:54.703754-07:00,2031.0,10.848656,10848.656 +36994,2025-03-11T16:14:05.543063-07:00,1975.0,10.839309,10839.309 +36995,2025-03-11T16:14:16.396863-07:00,1950.0,10.8538,10853.8 +36996,2025-03-11T16:14:27.242858-07:00,2025.0,10.845995,10845.995 +36997,2025-03-11T16:14:38.087195-07:00,1967.0,10.844337,10844.337 +36998,2025-03-11T16:14:48.942215-07:00,2034.0,10.85502,10855.02 +36999,2025-03-11T16:14:59.775896-07:00,1982.0,10.833681,10833.681 +37000,2025-03-11T16:15:10.631844-07:00,1963.0,10.855948,10855.948 +37001,2025-03-11T16:15:21.472180-07:00,2002.0,10.840336,10840.336 +37002,2025-03-11T16:15:32.326169-07:00,2003.0,10.853989,10853.989 +37003,2025-03-11T16:15:43.171217-07:00,1999.0,10.845048,10845.048 +37004,2025-03-11T16:15:54.020299-07:00,2045.0,10.849082,10849.082 +37005,2025-03-11T16:16:04.866861-07:00,2023.0,10.846562,10846.562 +37006,2025-03-11T16:16:15.714872-07:00,1983.0,10.848011,10848.011 +37007,2025-03-11T16:16:26.563069-07:00,2059.0,10.848197,10848.197 +37008,2025-03-11T16:16:37.406903-07:00,2061.0,10.843834,10843.834 +37009,2025-03-11T16:16:48.249859-07:00,2057.0,10.842956,10842.956 +37010,2025-03-11T16:16:59.095143-07:00,2001.0,10.845284,10845.284 +37011,2025-03-11T16:17:09.937903-07:00,2058.0,10.84276,10842.76 +37012,2025-03-11T16:17:20.785852-07:00,2058.0,10.847949,10847.949 +37013,2025-03-11T16:17:31.631123-07:00,1989.0,10.845271,10845.271 +37014,2025-03-11T16:17:42.474459-07:00,1977.0,10.843336,10843.336 +37015,2025-03-11T16:17:53.325099-07:00,2033.0,10.85064,10850.64 +37016,2025-03-11T16:18:04.170548-07:00,1986.0,10.845449,10845.449 +37017,2025-03-11T16:18:15.018112-07:00,2047.0,10.847564,10847.564 +37018,2025-03-11T16:18:25.860830-07:00,1979.0,10.842718,10842.718 +37019,2025-03-11T16:18:36.716212-07:00,2054.0,10.855382,10855.382 +37020,2025-03-11T16:18:47.556870-07:00,2034.0,10.840658,10840.658 +37021,2025-03-11T16:18:58.405198-07:00,2015.0,10.848328,10848.328 +37022,2025-03-11T16:19:09.252866-07:00,1970.0,10.847668,10847.668 +37023,2025-03-11T16:19:20.095505-07:00,2038.0,10.842639,10842.639 +37024,2025-03-11T16:19:30.943917-07:00,2057.0,10.848412,10848.412 +37025,2025-03-11T16:19:41.780864-07:00,2000.0,10.836947,10836.947 +37026,2025-03-11T16:19:52.633860-07:00,2000.0,10.852996,10852.996 +37027,2025-03-11T16:20:03.477170-07:00,2039.0,10.84331,10843.31 +37028,2025-03-11T16:20:14.326633-07:00,2011.0,10.849463,10849.463 +37029,2025-03-11T16:20:25.167356-07:00,1984.0,10.840723,10840.723 +37030,2025-03-11T16:20:36.020125-07:00,2000.0,10.852769,10852.769 +37031,2025-03-11T16:20:46.858595-07:00,2042.0,10.83847,10838.47 +37032,2025-03-11T16:20:57.698390-07:00,2001.0,10.839795,10839.795 +37033,2025-03-11T16:21:08.555852-07:00,1978.0,10.857462,10857.462 +37034,2025-03-11T16:21:19.392177-07:00,1962.0,10.836325,10836.325 +37035,2025-03-11T16:21:30.238909-07:00,1959.0,10.846732,10846.732 +37036,2025-03-11T16:21:41.073127-07:00,2000.0,10.834218,10834.218 +37037,2025-03-11T16:21:51.919029-07:00,1991.0,10.845902,10845.902 +37038,2025-03-11T16:22:02.756705-07:00,2027.0,10.837676,10837.676 +37039,2025-03-11T16:22:13.596162-07:00,2019.0,10.839457,10839.457 +37040,2025-03-11T16:22:24.441856-07:00,2007.0,10.845694,10845.694 +37041,2025-03-11T16:22:35.285839-07:00,1982.0,10.843983,10843.983 +37042,2025-03-11T16:22:46.130159-07:00,2015.0,10.84432,10844.32 +37043,2025-03-11T16:22:56.975180-07:00,2025.0,10.845021,10845.021 +37044,2025-03-11T16:23:07.816895-07:00,1968.0,10.841715,10841.715 +37045,2025-03-11T16:23:18.663943-07:00,1993.0,10.847048,10847.048 +37046,2025-03-11T16:23:29.508190-07:00,1989.0,10.844247,10844.247 +37047,2025-03-11T16:23:40.353615-07:00,1957.0,10.845425,10845.425 +37048,2025-03-11T16:23:51.190860-07:00,2031.0,10.837245,10837.245 +37049,2025-03-11T16:24:02.038997-07:00,2005.0,10.848137,10848.137 +37050,2025-03-11T16:24:12.874863-07:00,1982.0,10.835866,10835.866 +37051,2025-03-11T16:24:23.718146-07:00,2032.0,10.843283,10843.283 +37052,2025-03-11T16:24:34.558162-07:00,2002.0,10.840016,10840.016 +37053,2025-03-11T16:24:45.397077-07:00,2015.0,10.838915,10838.915 +37054,2025-03-11T16:24:56.247238-07:00,2027.0,10.850161,10850.161 +37055,2025-03-11T16:25:07.090243-07:00,2031.0,10.843005,10843.005 +37056,2025-03-11T16:25:17.939177-07:00,1938.0,10.848934,10848.934 +37057,2025-03-11T16:25:28.787035-07:00,2031.0,10.847858,10847.858 +37058,2025-03-11T16:25:39.628862-07:00,2017.0,10.841827,10841.827 +37059,2025-03-11T16:25:50.478841-07:00,1943.0,10.849979,10849.979 +37060,2025-03-11T16:26:01.330254-07:00,1983.0,10.851413,10851.413 +37061,2025-03-11T16:26:12.172863-07:00,2016.0,10.842609,10842.609 +37062,2025-03-11T16:26:23.019970-07:00,1999.0,10.847107,10847.107 +37063,2025-03-11T16:26:33.857933-07:00,2011.0,10.837963,10837.963 +37064,2025-03-11T16:26:44.701863-07:00,2018.0,10.84393,10843.93 +37065,2025-03-11T16:26:55.549148-07:00,1941.0,10.847285,10847.285 +37066,2025-03-11T16:27:06.389755-07:00,2017.0,10.840607,10840.607 +37067,2025-03-11T16:27:17.225079-07:00,1997.0,10.835324,10835.324 +37068,2025-03-11T16:27:28.073837-07:00,1954.0,10.848758,10848.758 +37069,2025-03-11T16:27:38.916106-07:00,1999.0,10.842269,10842.269 +37070,2025-03-11T16:27:49.759438-07:00,2001.0,10.843332,10843.332 +37071,2025-03-11T16:28:00.608867-07:00,1970.0,10.849429,10849.429 +37072,2025-03-11T16:28:11.446933-07:00,1996.0,10.838066,10838.066 +37073,2025-03-11T16:28:22.288859-07:00,2011.0,10.841926,10841.926 +37074,2025-03-11T16:28:33.131639-07:00,1999.0,10.84278,10842.78 +37075,2025-03-11T16:28:43.974241-07:00,1970.0,10.842602,10842.602 +37076,2025-03-11T16:28:54.824043-07:00,2007.0,10.849802,10849.802 +37077,2025-03-11T16:29:05.666925-07:00,1955.0,10.842882,10842.882 +37078,2025-03-11T16:29:16.511862-07:00,2013.0,10.844937,10844.937 +37079,2025-03-11T16:29:27.357862-07:00,1959.0,10.846,10846.0 +37080,2025-03-11T16:29:38.190886-07:00,1964.0,10.833024,10833.024 +37081,2025-03-11T16:29:49.045272-07:00,2017.0,10.854386,10854.386 +37082,2025-03-11T16:29:59.890141-07:00,1945.0,10.844869,10844.869 +37083,2025-03-11T16:30:10.742199-07:00,1968.0,10.852058,10852.058 +37084,2025-03-11T16:30:21.595908-07:00,1942.0,10.853709,10853.709 +37085,2025-03-11T16:30:32.446902-07:00,1991.0,10.850994,10850.994 +37086,2025-03-11T16:30:43.297106-07:00,1963.0,10.850204,10850.204 +37087,2025-03-11T16:30:54.148919-07:00,2007.0,10.851813,10851.813 +37088,2025-03-11T16:31:05.002159-07:00,1916.0,10.85324,10853.24 +37089,2025-03-11T16:31:15.861864-07:00,2011.0,10.859705,10859.705 +37090,2025-03-11T16:31:26.705995-07:00,2010.0,10.844131,10844.131 +37091,2025-03-11T16:31:37.563142-07:00,1984.0,10.857147,10857.147 +37092,2025-03-11T16:31:48.409864-07:00,1979.0,10.846722,10846.722 +37093,2025-03-11T16:31:59.256190-07:00,2019.0,10.846326,10846.326 +37094,2025-03-11T16:32:10.114053-07:00,2015.0,10.857863,10857.863 +37095,2025-03-11T16:32:20.956751-07:00,1997.0,10.842698,10842.698 +37096,2025-03-11T16:32:31.811201-07:00,1980.0,10.85445,10854.45 +37097,2025-03-11T16:32:42.659728-07:00,2022.0,10.848527,10848.527 +37098,2025-03-11T16:32:53.501540-07:00,2014.0,10.841812,10841.812 +37099,2025-03-11T16:33:04.351000-07:00,2005.0,10.84946,10849.46 +37100,2025-03-11T16:33:15.201361-07:00,1984.0,10.850361,10850.361 +37101,2025-03-11T16:33:26.050378-07:00,2029.0,10.849017,10849.017 +37102,2025-03-11T16:33:36.893124-07:00,2021.0,10.842746,10842.746 +37103,2025-03-11T16:33:47.743103-07:00,2023.0,10.849979,10849.979 +37104,2025-03-11T16:33:58.590273-07:00,1972.0,10.84717,10847.17 +37105,2025-03-11T16:34:09.436990-07:00,1983.0,10.846717,10846.717 +37106,2025-03-11T16:34:20.282837-07:00,1999.0,10.845847,10845.847 +37107,2025-03-11T16:34:31.133835-07:00,2006.0,10.850998,10850.998 +37108,2025-03-11T16:34:41.976441-07:00,1935.0,10.842606,10842.606 +37109,2025-03-11T16:34:52.822254-07:00,1945.0,10.845813,10845.813 +37110,2025-03-11T16:35:03.666331-07:00,1931.0,10.844077,10844.077 +37111,2025-03-11T16:35:14.519928-07:00,1936.0,10.853597,10853.597 +37112,2025-03-11T16:35:25.362061-07:00,2013.0,10.842133,10842.133 +37113,2025-03-11T16:35:36.201223-07:00,1930.0,10.839162,10839.162 +37114,2025-03-11T16:35:47.056870-07:00,1977.0,10.855647,10855.647 +37115,2025-03-11T16:35:57.910112-07:00,1936.0,10.853242,10853.242 +37116,2025-03-11T16:36:08.750262-07:00,1966.0,10.84015,10840.15 +37117,2025-03-11T16:36:19.603193-07:00,1938.0,10.852931,10852.931 +37118,2025-03-11T16:36:30.451506-07:00,1971.0,10.848313,10848.313 +37119,2025-03-11T16:36:41.298038-07:00,1993.0,10.846532,10846.532 +37120,2025-03-11T16:36:52.142911-07:00,1933.0,10.844873,10844.873 +37121,2025-03-11T16:37:02.990072-07:00,1989.0,10.847161,10847.161 +37122,2025-03-11T16:37:13.838923-07:00,1962.0,10.848851,10848.851 +37123,2025-03-11T16:37:24.694110-07:00,1953.0,10.855187,10855.187 +37124,2025-03-11T16:37:35.546939-07:00,2026.0,10.852829,10852.829 +37125,2025-03-11T16:37:46.392149-07:00,2014.0,10.84521,10845.21 +37126,2025-03-11T16:37:57.246181-07:00,2019.0,10.854032,10854.032 +37127,2025-03-11T16:38:08.089452-07:00,2021.0,10.843271,10843.271 +37128,2025-03-11T16:38:18.941657-07:00,1983.0,10.852205,10852.205 +37129,2025-03-11T16:38:29.783866-07:00,2026.0,10.842209,10842.209 +37130,2025-03-11T16:38:40.635911-07:00,1997.0,10.852045,10852.045 +37131,2025-03-11T16:38:51.493847-07:00,1995.0,10.857936,10857.936 +37132,2025-03-11T16:39:02.342864-07:00,1976.0,10.849017,10849.017 +37133,2025-03-11T16:39:13.193492-07:00,2025.0,10.850628,10850.628 +37134,2025-03-11T16:39:24.042864-07:00,2022.0,10.849372,10849.372 +37135,2025-03-11T16:39:34.890410-07:00,2015.0,10.847546,10847.546 +37136,2025-03-11T16:39:45.732203-07:00,1926.0,10.841793,10841.793 +37137,2025-03-11T16:39:56.576909-07:00,2007.0,10.844706,10844.706 +37138,2025-03-11T16:40:07.425851-07:00,2015.0,10.848942,10848.942 +37139,2025-03-11T16:40:18.273859-07:00,2000.0,10.848008,10848.008 +37140,2025-03-11T16:40:29.129247-07:00,2007.0,10.855388,10855.388 +37141,2025-03-11T16:40:39.984863-07:00,1936.0,10.855616,10855.616 +37142,2025-03-11T16:40:50.837865-07:00,1996.0,10.853002,10853.002 +37143,2025-03-11T16:41:01.689999-07:00,1979.0,10.852134,10852.134 +37144,2025-03-11T16:41:12.540864-07:00,1991.0,10.850865,10850.865 +37145,2025-03-11T16:41:23.391361-07:00,2000.0,10.850497,10850.497 +37146,2025-03-11T16:41:34.244869-07:00,2015.0,10.853508,10853.508 +37147,2025-03-11T16:41:45.088583-07:00,2019.0,10.843714,10843.714 +37148,2025-03-11T16:41:55.937743-07:00,1982.0,10.84916,10849.16 +37149,2025-03-11T16:42:06.795917-07:00,2021.0,10.858174,10858.174 +37150,2025-03-11T16:42:17.640766-07:00,1947.0,10.844849,10844.849 +37151,2025-03-11T16:42:28.493473-07:00,1947.0,10.852707,10852.707 +37152,2025-03-11T16:42:39.349143-07:00,1986.0,10.85567,10855.67 +37153,2025-03-11T16:42:50.198841-07:00,2015.0,10.849698,10849.698 +37154,2025-03-11T16:43:01.044856-07:00,1991.0,10.846015,10846.015 +37155,2025-03-11T16:43:11.895857-07:00,1969.0,10.851001,10851.001 +37156,2025-03-11T16:43:22.742858-07:00,1934.0,10.847001,10847.001 +37157,2025-03-11T16:43:33.581975-07:00,2029.0,10.839117,10839.117 +37158,2025-03-11T16:43:44.431229-07:00,2028.0,10.849254,10849.254 +37159,2025-03-11T16:43:55.279949-07:00,1955.0,10.84872,10848.72 +37160,2025-03-11T16:44:06.116104-07:00,1982.0,10.836155,10836.155 +37161,2025-03-11T16:44:16.964255-07:00,1936.0,10.848151,10848.151 +37162,2025-03-11T16:44:27.813100-07:00,2021.0,10.848845,10848.845 +37163,2025-03-11T16:44:38.668125-07:00,1947.0,10.855025,10855.025 +37164,2025-03-11T16:44:49.518835-07:00,1853.0,10.85071,10850.71 +37165,2025-03-11T16:45:00.365866-07:00,1891.0,10.847031,10847.031 +37166,2025-03-11T16:45:11.208875-07:00,1869.0,10.843009,10843.009 +37167,2025-03-11T16:45:22.059298-07:00,1963.0,10.850423,10850.423 +37168,2025-03-11T16:45:32.906861-07:00,1917.0,10.847563,10847.563 +37169,2025-03-11T16:45:43.748365-07:00,2003.0,10.841504,10841.504 +37170,2025-03-11T16:45:54.597856-07:00,1998.0,10.849491,10849.491 +37171,2025-03-11T16:46:05.446089-07:00,1967.0,10.848233,10848.233 +37172,2025-03-11T16:46:16.290160-07:00,2013.0,10.844071,10844.071 +37173,2025-03-11T16:46:27.129256-07:00,2015.0,10.839096,10839.096 +37174,2025-03-11T16:46:37.986905-07:00,2023.0,10.857649,10857.649 +37175,2025-03-11T16:46:48.830854-07:00,1983.0,10.843949,10843.949 +37176,2025-03-11T16:46:59.686852-07:00,1997.0,10.855998,10855.998 +37177,2025-03-11T16:47:10.528080-07:00,2032.0,10.841228,10841.228 +37178,2025-03-11T16:47:21.369274-07:00,2020.0,10.841194,10841.194 +37179,2025-03-11T16:47:32.215986-07:00,1963.0,10.846712,10846.712 +37180,2025-03-11T16:47:43.055864-07:00,1986.0,10.839878,10839.878 +37181,2025-03-11T16:47:53.907085-07:00,2027.0,10.851221,10851.221 +37182,2025-03-11T16:48:04.754842-07:00,1984.0,10.847757,10847.757 +37183,2025-03-11T16:48:15.594864-07:00,2030.0,10.840022,10840.022 +37184,2025-03-11T16:48:26.440190-07:00,2009.0,10.845326,10845.326 +37185,2025-03-11T16:48:37.285035-07:00,1971.0,10.844845,10844.845 +37186,2025-03-11T16:48:48.139044-07:00,2019.0,10.854009,10854.009 +37187,2025-03-11T16:48:58.983837-07:00,1987.0,10.844793,10844.793 +37188,2025-03-11T16:49:09.829050-07:00,2025.0,10.845213,10845.213 +37189,2025-03-11T16:49:20.668197-07:00,1951.0,10.839147,10839.147 +37190,2025-03-11T16:49:31.523276-07:00,1951.0,10.855079,10855.079 +37191,2025-03-11T16:49:42.367433-07:00,2015.0,10.844157,10844.157 +37192,2025-03-11T16:49:53.219986-07:00,1995.0,10.852553,10852.553 +37193,2025-03-11T16:50:04.075191-07:00,2031.0,10.855205,10855.205 +37194,2025-03-11T16:50:14.916162-07:00,2003.0,10.840971,10840.971 +37195,2025-03-11T16:50:25.770858-07:00,1997.0,10.854696,10854.696 +37196,2025-03-11T16:50:36.614901-07:00,2003.0,10.844043,10844.043 +37197,2025-03-11T16:50:47.465864-07:00,2016.0,10.850963,10850.963 +37198,2025-03-11T16:50:58.318885-07:00,2032.0,10.853021,10853.021 +37199,2025-03-11T16:51:09.167484-07:00,2015.0,10.848599,10848.599 +37200,2025-03-11T16:51:20.021847-07:00,2027.0,10.854363,10854.363 +37201,2025-03-11T16:51:30.865181-07:00,2032.0,10.843334,10843.334 +37202,2025-03-11T16:51:41.714617-07:00,2011.0,10.849436,10849.436 +37203,2025-03-11T16:51:52.551103-07:00,2015.0,10.836486,10836.486 +37204,2025-03-11T16:52:03.392133-07:00,1937.0,10.84103,10841.03 +37205,2025-03-11T16:52:14.238454-07:00,1993.0,10.846321,10846.321 +37206,2025-03-11T16:52:25.080162-07:00,2029.0,10.841708,10841.708 +37207,2025-03-11T16:52:35.924313-07:00,2030.0,10.844151,10844.151 +37208,2025-03-11T16:52:46.766478-07:00,2030.0,10.842165,10842.165 +37209,2025-03-11T16:52:57.607948-07:00,1968.0,10.84147,10841.47 +37210,2025-03-11T16:53:08.452222-07:00,2027.0,10.844274,10844.274 +37211,2025-03-11T16:53:19.298026-07:00,1953.0,10.845804,10845.804 +37212,2025-03-11T16:53:30.151909-07:00,1991.0,10.853883,10853.883 +37213,2025-03-11T16:53:40.997387-07:00,1978.0,10.845478,10845.478 +37214,2025-03-11T16:53:51.847857-07:00,2010.0,10.85047,10850.47 +37215,2025-03-11T16:54:02.696939-07:00,1967.0,10.849082,10849.082 +37216,2025-03-11T16:54:13.537927-07:00,1951.0,10.840988,10840.988 +37217,2025-03-11T16:54:24.388195-07:00,2029.0,10.850268,10850.268 +37218,2025-03-11T16:54:35.230191-07:00,1968.0,10.841996,10841.996 +37219,2025-03-11T16:54:46.080850-07:00,1944.0,10.850659,10850.659 +37220,2025-03-11T16:54:56.922863-07:00,2036.0,10.842013,10842.013 +37221,2025-03-11T16:55:07.771862-07:00,1969.0,10.848999,10848.999 +37222,2025-03-11T16:55:18.626864-07:00,1969.0,10.855002,10855.002 +37223,2025-03-11T16:55:29.469859-07:00,1996.0,10.842995,10842.995 +37224,2025-03-11T16:55:40.320820-07:00,2026.0,10.850961,10850.961 +37225,2025-03-11T16:55:51.172974-07:00,2032.0,10.852154,10852.154 +37226,2025-03-11T16:56:02.024175-07:00,2000.0,10.851201,10851.201 +37227,2025-03-11T16:56:12.876177-07:00,2032.0,10.852002,10852.002 +37228,2025-03-11T16:56:23.720905-07:00,2023.0,10.844728,10844.728 +37229,2025-03-11T16:56:34.568855-07:00,2018.0,10.84795,10847.95 +37230,2025-03-11T16:56:45.423863-07:00,1967.0,10.855008,10855.008 +37231,2025-03-11T16:56:56.272121-07:00,1934.0,10.848258,10848.258 +37232,2025-03-11T16:57:07.120060-07:00,1989.0,10.847939,10847.939 +37233,2025-03-11T16:57:17.970984-07:00,1941.0,10.850924,10850.924 +37234,2025-03-11T16:57:28.816249-07:00,2003.0,10.845265,10845.265 +37235,2025-03-11T16:57:39.672001-07:00,2003.0,10.855752,10855.752 +37236,2025-03-11T16:57:50.522148-07:00,1990.0,10.850147,10850.147 +37237,2025-03-11T16:58:01.370509-07:00,1984.0,10.848361,10848.361 +37238,2025-03-11T16:58:12.220134-07:00,2023.0,10.849625,10849.625 +37239,2025-03-11T16:58:23.073587-07:00,2029.0,10.853453,10853.453 +37240,2025-03-11T16:58:33.923024-07:00,2025.0,10.849437,10849.437 +37241,2025-03-11T16:58:44.778041-07:00,2009.0,10.855017,10855.017 +37242,2025-03-11T16:58:55.625858-07:00,2029.0,10.847817,10847.817 +37243,2025-03-11T16:59:06.474090-07:00,1951.0,10.848232,10848.232 +37244,2025-03-11T16:59:17.321857-07:00,2014.0,10.847767,10847.767 +37245,2025-03-11T16:59:28.173001-07:00,2017.0,10.851144,10851.144 +37246,2025-03-11T16:59:39.021865-07:00,2029.0,10.848864,10848.864 +37247,2025-03-11T16:59:49.878842-07:00,1998.0,10.856977,10856.977 +37248,2025-03-11T17:00:00.719124-07:00,1962.0,10.840282,10840.282 +37249,2025-03-11T17:00:11.562913-07:00,2029.0,10.843789,10843.789 +37250,2025-03-11T17:00:22.422694-07:00,1941.0,10.859781,10859.781 +37251,2025-03-11T17:00:33.265863-07:00,1965.0,10.843169,10843.169 +37252,2025-03-11T17:00:44.109892-07:00,1973.0,10.844029,10844.029 +37253,2025-03-11T17:00:54.962863-07:00,1973.0,10.852971,10852.971 +37254,2025-03-11T17:01:05.806417-07:00,2029.0,10.843554,10843.554 +37255,2025-03-11T17:01:16.660976-07:00,1980.0,10.854559,10854.559 +37256,2025-03-11T17:01:27.498586-07:00,2027.0,10.83761,10837.61 +37257,2025-03-11T17:01:38.351964-07:00,2032.0,10.853378,10853.378 +37258,2025-03-11T17:01:49.197911-07:00,1980.0,10.845947,10845.947 +37259,2025-03-11T17:02:00.048858-07:00,2005.0,10.850947,10850.947 +37260,2025-03-11T17:02:10.892067-07:00,2032.0,10.843209,10843.209 +37261,2025-03-11T17:02:21.745891-07:00,1961.0,10.853824,10853.824 +37262,2025-03-11T17:02:32.595912-07:00,2029.0,10.850021,10850.021 +37263,2025-03-11T17:02:43.440917-07:00,2031.0,10.845005,10845.005 +37264,2025-03-11T17:02:54.290027-07:00,1986.0,10.84911,10849.11 +37265,2025-03-11T17:03:05.140424-07:00,2025.0,10.850397,10850.397 +37266,2025-03-11T17:03:15.985207-07:00,1981.0,10.844783,10844.783 +37267,2025-03-11T17:03:26.828114-07:00,1968.0,10.842907,10842.907 +37268,2025-03-11T17:03:37.681866-07:00,1983.0,10.853752,10853.752 +37269,2025-03-11T17:03:48.520180-07:00,2017.0,10.838314,10838.314 +37270,2025-03-11T17:03:59.367515-07:00,2010.0,10.847335,10847.335 +37271,2025-03-11T17:04:10.206107-07:00,2029.0,10.838592,10838.592 +37272,2025-03-11T17:04:21.049859-07:00,1998.0,10.843752,10843.752 +37273,2025-03-11T17:04:31.893418-07:00,1984.0,10.843559,10843.559 +37274,2025-03-11T17:04:42.740865-07:00,1978.0,10.847447,10847.447 +37275,2025-03-11T17:04:53.589258-07:00,1995.0,10.848393,10848.393 +37276,2025-03-11T17:05:04.432816-07:00,1987.0,10.843558,10843.558 +37277,2025-03-11T17:05:15.288850-07:00,2023.0,10.856034,10856.034 +37278,2025-03-11T17:05:26.125118-07:00,2030.0,10.836268,10836.268 +37279,2025-03-11T17:05:36.980889-07:00,2014.0,10.855771,10855.771 +37280,2025-03-11T17:05:47.822867-07:00,2029.0,10.841978,10841.978 +37281,2025-03-11T17:05:58.669195-07:00,1999.0,10.846328,10846.328 +37282,2025-03-11T17:06:09.520439-07:00,2015.0,10.851244,10851.244 +37283,2025-03-11T17:06:20.363616-07:00,1973.0,10.843177,10843.177 +37284,2025-03-11T17:06:31.213243-07:00,2027.0,10.849627,10849.627 +37285,2025-03-11T17:06:42.056137-07:00,1987.0,10.842894,10842.894 +37286,2025-03-11T17:06:52.911861-07:00,1982.0,10.855724,10855.724 +37287,2025-03-11T17:07:03.756864-07:00,1983.0,10.845003,10845.003 +37288,2025-03-11T17:07:14.595689-07:00,1993.0,10.838825,10838.825 +37289,2025-03-11T17:07:25.445693-07:00,1954.0,10.850004,10850.004 +37290,2025-03-11T17:07:36.286689-07:00,2007.0,10.840996,10840.996 +37291,2025-03-11T17:07:47.126692-07:00,2015.0,10.840003,10840.003 +37292,2025-03-11T17:07:57.970039-07:00,1958.0,10.843347,10843.347 +37293,2025-03-11T17:08:08.822696-07:00,1943.0,10.852657,10852.657 +37294,2025-03-11T17:08:19.664478-07:00,1967.0,10.841782,10841.782 +37295,2025-03-11T17:08:30.512034-07:00,2022.0,10.847556,10847.556 +37296,2025-03-11T17:08:41.349895-07:00,1973.0,10.837861,10837.861 +37297,2025-03-11T17:08:52.198688-07:00,1975.0,10.848793,10848.793 +37298,2025-03-11T17:09:03.042688-07:00,1981.0,10.844,10844.0 +37299,2025-03-11T17:09:13.892445-07:00,1991.0,10.849757,10849.757 +37300,2025-03-11T17:09:24.740700-07:00,2001.0,10.848255,10848.255 +37301,2025-03-11T17:09:35.582679-07:00,2010.0,10.841979,10841.979 +37302,2025-03-11T17:09:46.427022-07:00,2005.0,10.844343,10844.343 +37303,2025-03-11T17:09:57.281978-07:00,1956.0,10.854956,10854.956 +37304,2025-03-11T17:10:08.128691-07:00,1969.0,10.846713,10846.713 +37305,2025-03-11T17:10:18.972956-07:00,2000.0,10.844265,10844.265 +37306,2025-03-11T17:10:29.811384-07:00,2000.0,10.838428,10838.428 +37307,2025-03-11T17:10:40.661229-07:00,1953.0,10.849845,10849.845 +37308,2025-03-11T17:10:51.507681-07:00,1943.0,10.846452,10846.452 +37309,2025-03-11T17:11:02.349935-07:00,2000.0,10.842254,10842.254 +37310,2025-03-11T17:11:13.198690-07:00,2017.0,10.848755,10848.755 +37311,2025-03-11T17:11:24.039081-07:00,1942.0,10.840391,10840.391 +37312,2025-03-11T17:11:34.886004-07:00,1971.0,10.846923,10846.923 +37313,2025-03-11T17:11:45.734431-07:00,1974.0,10.848427,10848.427 +37314,2025-03-11T17:11:56.570021-07:00,1937.0,10.83559,10835.59 +37315,2025-03-11T17:12:07.421930-07:00,1963.0,10.851909,10851.909 +37316,2025-03-11T17:12:18.265695-07:00,1993.0,10.843765,10843.765 +37317,2025-03-11T17:12:29.102725-07:00,1971.0,10.83703,10837.03 +37318,2025-03-11T17:12:39.955971-07:00,2011.0,10.853246,10853.246 +37319,2025-03-11T17:12:50.797912-07:00,2013.0,10.841941,10841.941 +37320,2025-03-11T17:13:01.640960-07:00,1946.0,10.843048,10843.048 +37321,2025-03-11T17:13:12.495372-07:00,1984.0,10.854412,10854.412 +37322,2025-03-11T17:13:23.333816-07:00,2008.0,10.838444,10838.444 +37323,2025-03-11T17:13:34.176595-07:00,1982.0,10.842779,10842.779 +37324,2025-03-11T17:13:45.025788-07:00,1941.0,10.849193,10849.193 +37325,2025-03-11T17:13:55.880731-07:00,1953.0,10.854943,10854.943 +37326,2025-03-11T17:14:06.724690-07:00,1981.0,10.843959,10843.959 +37327,2025-03-11T17:14:17.574840-07:00,1985.0,10.85015,10850.15 +37328,2025-03-11T17:14:28.415724-07:00,1962.0,10.840884,10840.884 +37329,2025-03-11T17:14:39.264035-07:00,1967.0,10.848311,10848.311 +37330,2025-03-11T17:14:50.113176-07:00,1985.0,10.849141,10849.141 +37331,2025-03-11T17:15:00.967562-07:00,1998.0,10.854386,10854.386 +37332,2025-03-11T17:15:11.817987-07:00,2006.0,10.850425,10850.425 +37333,2025-03-11T17:15:22.654691-07:00,1993.0,10.836704,10836.704 +37334,2025-03-11T17:15:33.506683-07:00,2004.0,10.851992,10851.992 +37335,2025-03-11T17:15:44.351698-07:00,1945.0,10.845015,10845.015 +37336,2025-03-11T17:15:55.188461-07:00,1953.0,10.836763,10836.763 +37337,2025-03-11T17:16:06.039097-07:00,1966.0,10.850636,10850.636 +37338,2025-03-11T17:16:16.874939-07:00,1965.0,10.835842,10835.842 +37339,2025-03-11T17:16:27.728684-07:00,1959.0,10.853745,10853.745 +37340,2025-03-11T17:16:38.570997-07:00,2000.0,10.842313,10842.313 +37341,2025-03-11T17:16:49.421974-07:00,1963.0,10.850977,10850.977 +37342,2025-03-11T17:17:00.270022-07:00,1978.0,10.848048,10848.048 +37343,2025-03-11T17:17:11.107686-07:00,1943.0,10.837664,10837.664 +37344,2025-03-11T17:17:21.959658-07:00,1935.0,10.851972,10851.972 +37345,2025-03-11T17:17:32.804969-07:00,1952.0,10.845311,10845.311 +37346,2025-03-11T17:17:43.653879-07:00,2000.0,10.84891,10848.91 +37347,2025-03-11T17:17:54.496691-07:00,1998.0,10.842812,10842.812 +37348,2025-03-11T17:18:05.339957-07:00,1974.0,10.843266,10843.266 +37349,2025-03-11T17:18:16.183726-07:00,1939.0,10.843769,10843.769 +37350,2025-03-11T17:18:27.039845-07:00,2000.0,10.856119,10856.119 +37351,2025-03-11T17:18:37.889688-07:00,1999.0,10.849843,10849.843 +37352,2025-03-11T17:18:48.729685-07:00,1986.0,10.839997,10839.997 +37353,2025-03-11T17:18:59.579750-07:00,1987.0,10.850065,10850.065 +37354,2025-03-11T17:19:10.421967-07:00,1965.0,10.842217,10842.217 +37355,2025-03-11T17:19:21.276309-07:00,1957.0,10.854342,10854.342 +37356,2025-03-11T17:19:32.125525-07:00,1996.0,10.849216,10849.216 +37357,2025-03-11T17:19:42.973524-07:00,1929.0,10.847999,10847.999 +37358,2025-03-11T17:19:53.815818-07:00,1999.0,10.842294,10842.294 +37359,2025-03-11T17:20:04.665364-07:00,1996.0,10.849546,10849.546 +37360,2025-03-11T17:20:15.513689-07:00,1990.0,10.848325,10848.325 +37361,2025-03-11T17:20:26.357863-07:00,1943.0,10.844174,10844.174 +37362,2025-03-11T17:20:37.206817-07:00,1907.0,10.848954,10848.954 +37363,2025-03-11T17:20:48.049915-07:00,1936.0,10.843098,10843.098 +37364,2025-03-11T17:20:58.897698-07:00,1907.0,10.847783,10847.783 +37365,2025-03-11T17:21:09.743352-07:00,1994.0,10.845654,10845.654 +37366,2025-03-11T17:21:20.587852-07:00,1987.0,10.8445,10844.5 +37367,2025-03-11T17:21:31.427214-07:00,1987.0,10.839362,10839.362 +37368,2025-03-11T17:21:42.270252-07:00,1952.0,10.843038,10843.038 +37369,2025-03-11T17:21:53.117681-07:00,1993.0,10.847429,10847.429 +37370,2025-03-11T17:22:03.965699-07:00,1943.0,10.848018,10848.018 +37371,2025-03-11T17:22:14.806837-07:00,1986.0,10.841138,10841.138 +37372,2025-03-11T17:22:25.652710-07:00,1987.0,10.845873,10845.873 +37373,2025-03-11T17:22:36.501851-07:00,1988.0,10.849141,10849.141 +37374,2025-03-11T17:22:47.340738-07:00,1951.0,10.838887,10838.887 +37375,2025-03-11T17:22:58.183433-07:00,1987.0,10.842695,10842.695 +37376,2025-03-11T17:23:09.029024-07:00,1982.0,10.845591,10845.591 +37377,2025-03-11T17:23:19.869986-07:00,1895.0,10.840962,10840.962 +37378,2025-03-11T17:23:30.724085-07:00,1955.0,10.854099,10854.099 +37379,2025-03-11T17:23:41.567039-07:00,1898.0,10.842954,10842.954 +37380,2025-03-11T17:23:52.416685-07:00,1939.0,10.849646,10849.646 +37381,2025-03-11T17:24:03.249658-07:00,1973.0,10.832973,10832.973 +37382,2025-03-11T17:24:14.106191-07:00,1939.0,10.856533,10856.533 +37383,2025-03-11T17:24:24.946765-07:00,1901.0,10.840574,10840.574 +37384,2025-03-11T17:24:35.788815-07:00,1983.0,10.84205,10842.05 +37385,2025-03-11T17:24:46.640950-07:00,1954.0,10.852135,10852.135 +37386,2025-03-11T17:24:57.489874-07:00,1955.0,10.848924,10848.924 +37387,2025-03-11T17:25:08.330681-07:00,1915.0,10.840807,10840.807 +37388,2025-03-11T17:25:19.177866-07:00,1938.0,10.847185,10847.185 +37389,2025-03-11T17:25:30.027166-07:00,1892.0,10.8493,10849.3 +37390,2025-03-11T17:25:40.879681-07:00,1931.0,10.852515,10852.515 +37391,2025-03-11T17:25:51.729032-07:00,1978.0,10.849351,10849.351 +37392,2025-03-11T17:26:02.585024-07:00,1974.0,10.855992,10855.992 +37393,2025-03-11T17:26:13.427252-07:00,1977.0,10.842228,10842.228 +37394,2025-03-11T17:26:24.279666-07:00,1974.0,10.852414,10852.414 +37395,2025-03-11T17:26:35.134148-07:00,1975.0,10.854482,10854.482 +37396,2025-03-11T17:26:45.978687-07:00,1971.0,10.844539,10844.539 +37397,2025-03-11T17:26:56.829925-07:00,1971.0,10.851238,10851.238 +37398,2025-03-11T17:27:07.680680-07:00,1902.0,10.850755,10850.755 +37399,2025-03-11T17:27:18.526690-07:00,1973.0,10.84601,10846.01 +37400,2025-03-11T17:27:29.384669-07:00,1971.0,10.857979,10857.979 +37401,2025-03-11T17:27:40.227951-07:00,1925.0,10.843282,10843.282 +37402,2025-03-11T17:27:51.086954-07:00,1886.0,10.859003,10859.003 +37403,2025-03-11T17:28:01.928866-07:00,1963.0,10.841912,10841.912 +37404,2025-03-11T17:28:12.787899-07:00,1963.0,10.859033,10859.033 +37405,2025-03-11T17:28:23.641950-07:00,1934.0,10.854051,10854.051 +37406,2025-03-11T17:28:34.490036-07:00,1969.0,10.848086,10848.086 +37407,2025-03-11T17:28:45.343117-07:00,1925.0,10.853081,10853.081 +37408,2025-03-11T17:28:56.195268-07:00,1968.0,10.852151,10852.151 +37409,2025-03-11T17:29:07.049010-07:00,1903.0,10.853742,10853.742 +37410,2025-03-11T17:29:17.907022-07:00,1926.0,10.858012,10858.012 +37411,2025-03-11T17:29:28.751913-07:00,1945.0,10.844891,10844.891 +37412,2025-03-11T17:29:39.607220-07:00,1967.0,10.855307,10855.307 +37413,2025-03-11T17:29:50.460289-07:00,1920.0,10.853069,10853.069 +37414,2025-03-11T17:30:01.301950-07:00,1886.0,10.841661,10841.661 +37415,2025-03-11T17:30:12.158875-07:00,1967.0,10.856925,10856.925 +37416,2025-03-11T17:30:23.006989-07:00,1956.0,10.848114,10848.114 +37417,2025-03-11T17:30:33.868057-07:00,1924.0,10.861068,10861.068 +37418,2025-03-11T17:30:44.720687-07:00,1967.0,10.85263,10852.63 +37419,2025-03-11T17:30:55.574935-07:00,1927.0,10.854248,10854.248 +37420,2025-03-11T17:31:06.434935-07:00,1937.0,10.86,10860.0 +37421,2025-03-11T17:31:17.284008-07:00,1955.0,10.849073,10849.073 +37422,2025-03-11T17:31:28.128914-07:00,1918.0,10.844906,10844.906 +37423,2025-03-11T17:31:38.986691-07:00,1922.0,10.857777,10857.777 +37424,2025-03-11T17:31:49.838283-07:00,1958.0,10.851592,10851.592 +37425,2025-03-11T17:32:00.687018-07:00,1947.0,10.848735,10848.735 +37426,2025-03-11T17:32:11.535004-07:00,1881.0,10.847986,10847.986 +37427,2025-03-11T17:32:22.378319-07:00,1950.0,10.843315,10843.315 +37428,2025-03-11T17:32:33.231324-07:00,1936.0,10.853005,10853.005 +37429,2025-03-11T17:32:44.072934-07:00,1936.0,10.84161,10841.61 +37430,2025-03-11T17:32:54.919814-07:00,1923.0,10.84688,10846.88 +37431,2025-03-11T17:33:05.772947-07:00,1951.0,10.853133,10853.133 +37432,2025-03-11T17:33:16.618693-07:00,1903.0,10.845746,10845.746 +37433,2025-03-11T17:33:27.470690-07:00,1917.0,10.851997,10851.997 +37434,2025-03-11T17:33:38.323961-07:00,1904.0,10.853271,10853.271 +37435,2025-03-11T17:33:49.168988-07:00,1922.0,10.845027,10845.027 +37436,2025-03-11T17:34:00.020245-07:00,1859.0,10.851257,10851.257 +37437,2025-03-11T17:34:10.877944-07:00,1951.0,10.857699,10857.699 +37438,2025-03-11T17:34:21.725010-07:00,1890.0,10.847066,10847.066 +37439,2025-03-11T17:34:32.573790-07:00,1927.0,10.84878,10848.78 +37440,2025-03-11T17:34:43.435154-07:00,1932.0,10.861364,10861.364 +37441,2025-03-11T17:34:54.289022-07:00,1873.0,10.853868,10853.868 +37442,2025-03-11T17:35:05.139894-07:00,1937.0,10.850872,10850.872 +37443,2025-03-11T17:35:15.984683-07:00,1922.0,10.844789,10844.789 +37444,2025-03-11T17:35:26.839873-07:00,1909.0,10.85519,10855.19 +37445,2025-03-11T17:35:37.689686-07:00,1901.0,10.849813,10849.813 +37446,2025-03-11T17:35:48.531850-07:00,1907.0,10.842164,10842.164 +37447,2025-03-11T17:35:59.385777-07:00,1943.0,10.853927,10853.927 +37448,2025-03-11T17:36:10.230965-07:00,1879.0,10.845188,10845.188 +37449,2025-03-11T17:36:21.078502-07:00,1949.0,10.847537,10847.537 +37450,2025-03-11T17:36:31.925847-07:00,1898.0,10.847345,10847.345 +37451,2025-03-11T17:36:42.769698-07:00,1904.0,10.843851,10843.851 +37452,2025-03-11T17:36:53.624683-07:00,1938.0,10.854985,10854.985 +37453,2025-03-11T17:37:04.466693-07:00,1935.0,10.84201,10842.01 +37454,2025-03-11T17:37:15.317686-07:00,1891.0,10.850993,10850.993 +37455,2025-03-11T17:37:26.166691-07:00,1904.0,10.849005,10849.005 +37456,2025-03-11T17:37:37.015694-07:00,1930.0,10.849003,10849.003 +37457,2025-03-11T17:37:47.874933-07:00,1934.0,10.859239,10859.239 +37458,2025-03-11T17:37:58.730738-07:00,1858.0,10.855805,10855.805 +37459,2025-03-11T17:38:09.573059-07:00,1939.0,10.842321,10842.321 +37460,2025-03-11T17:38:20.434725-07:00,1939.0,10.861666,10861.666 +37461,2025-03-11T17:38:31.290902-07:00,1936.0,10.856177,10856.177 +37462,2025-03-11T17:38:42.141976-07:00,1852.0,10.851074,10851.074 +37463,2025-03-11T17:38:52.995944-07:00,1842.0,10.853968,10853.968 +37464,2025-03-11T17:39:03.840260-07:00,1894.0,10.844316,10844.316 +37465,2025-03-11T17:39:14.699244-07:00,1883.0,10.858984,10858.984 +37466,2025-03-11T17:39:25.541730-07:00,1907.0,10.842486,10842.486 +37467,2025-03-11T17:39:36.396724-07:00,1899.0,10.854994,10854.994 +37468,2025-03-11T17:39:47.246684-07:00,1842.0,10.84996,10849.96 +37469,2025-03-11T17:39:58.100903-07:00,1934.0,10.854219,10854.219 +37470,2025-03-11T17:40:08.960821-07:00,1931.0,10.859918,10859.918 +37471,2025-03-11T17:40:19.805820-07:00,1900.0,10.844999,10844.999 +37472,2025-03-11T17:40:30.657791-07:00,1866.0,10.851971,10851.971 +37473,2025-03-11T17:40:41.501784-07:00,1853.0,10.843993,10843.993 +37474,2025-03-11T17:40:52.356008-07:00,1907.0,10.854224,10854.224 +37475,2025-03-11T17:41:03.210819-07:00,1917.0,10.854811,10854.811 +37476,2025-03-11T17:41:14.070690-07:00,1930.0,10.859871,10859.871 +37477,2025-03-11T17:41:24.915022-07:00,1887.0,10.844332,10844.332 +37478,2025-03-11T17:41:35.773677-07:00,1924.0,10.858655,10858.655 +37479,2025-03-11T17:41:46.629180-07:00,1855.0,10.855503,10855.503 +37480,2025-03-11T17:41:57.483842-07:00,1858.0,10.854662,10854.662 +37481,2025-03-11T17:42:08.340692-07:00,1919.0,10.85685,10856.85 +37482,2025-03-11T17:42:19.191693-07:00,1918.0,10.851001,10851.001 +37483,2025-03-11T17:42:30.047295-07:00,1899.0,10.855602,10855.602 +37484,2025-03-11T17:42:40.906689-07:00,1920.0,10.859394,10859.394 +37485,2025-03-11T17:42:51.766692-07:00,1876.0,10.860003,10860.003 +37486,2025-03-11T17:43:02.617408-07:00,1838.0,10.850716,10850.716 +37487,2025-03-11T17:43:13.474068-07:00,1838.0,10.85666,10856.66 +37488,2025-03-11T17:43:24.328834-07:00,1887.0,10.854766,10854.766 +37489,2025-03-11T17:43:35.181668-07:00,1863.0,10.852834,10852.834 +37490,2025-03-11T17:43:46.039931-07:00,1915.0,10.858263,10858.263 +37491,2025-03-11T17:43:56.899688-07:00,1885.0,10.859757,10859.757 +37492,2025-03-11T17:44:07.752961-07:00,1832.0,10.853273,10853.273 +37493,2025-03-11T17:44:18.602868-07:00,1909.0,10.849907,10849.907 +37494,2025-03-11T17:44:29.468777-07:00,1897.0,10.865909,10865.909 +37495,2025-03-11T17:44:40.320976-07:00,1907.0,10.852199,10852.199 +37496,2025-03-11T17:44:51.172690-07:00,1815.0,10.851714,10851.714 +37497,2025-03-11T17:45:02.019738-07:00,1849.0,10.847048,10847.048 +37498,2025-03-11T17:45:12.874832-07:00,1861.0,10.855094,10855.094 +37499,2025-03-11T17:45:23.728685-07:00,1893.0,10.853853,10853.853 +37500,2025-03-11T17:45:34.570909-07:00,1902.0,10.842224,10842.224 +37501,2025-03-11T17:45:45.428020-07:00,1904.0,10.857111,10857.111 +37502,2025-03-11T17:45:56.275007-07:00,1904.0,10.846987,10846.987 +37503,2025-03-11T17:46:07.124053-07:00,1885.0,10.849046,10849.046 +37504,2025-03-11T17:46:17.989694-07:00,1883.0,10.865641,10865.641 +37505,2025-03-11T17:46:28.834991-07:00,1845.0,10.845297,10845.297 +37506,2025-03-11T17:46:39.688768-07:00,1808.0,10.853777,10853.777 +37507,2025-03-11T17:46:50.552790-07:00,1902.0,10.864022,10864.022 +37508,2025-03-11T17:47:01.419008-07:00,1822.0,10.866218,10866.218 +37509,2025-03-11T17:47:12.273689-07:00,1819.0,10.854681,10854.681 +37510,2025-03-11T17:47:23.125676-07:00,1857.0,10.851987,10851.987 +37511,2025-03-11T17:47:33.984151-07:00,1822.0,10.858475,10858.475 +37512,2025-03-11T17:47:44.837691-07:00,1840.0,10.85354,10853.54 +37513,2025-03-11T17:47:55.696688-07:00,1871.0,10.858997,10858.997 +37514,2025-03-11T17:48:06.557989-07:00,1801.0,10.861301,10861.301 +37515,2025-03-11T17:48:17.405767-07:00,1853.0,10.847778,10847.778 +37516,2025-03-11T17:48:28.265778-07:00,1853.0,10.860011,10860.011 +37517,2025-03-11T17:48:39.131633-07:00,1774.0,10.865855,10865.855 +37518,2025-03-11T17:48:49.976898-07:00,1839.0,10.845265,10845.265 +37519,2025-03-11T17:49:00.840980-07:00,1752.0,10.864082,10864.082 +37520,2025-03-11T17:49:11.697297-07:00,1810.0,10.856317,10856.317 +37521,2025-03-11T17:49:22.551971-07:00,1810.0,10.854674,10854.674 +37522,2025-03-11T17:49:33.407946-07:00,1801.0,10.855975,10855.975 +37523,2025-03-11T17:49:44.271218-07:00,1840.0,10.863272,10863.272 +37524,2025-03-11T17:49:55.124692-07:00,1840.0,10.853474,10853.474 +37525,2025-03-11T17:50:05.979835-07:00,1809.0,10.855143,10855.143 +37526,2025-03-11T17:50:16.833746-07:00,1855.0,10.853911,10853.911 +37527,2025-03-11T17:50:27.685932-07:00,1809.0,10.852186,10852.186 +37528,2025-03-11T17:50:38.540946-07:00,1850.0,10.855014,10855.014 +37529,2025-03-11T17:50:49.397691-07:00,1855.0,10.856745,10856.745 +37530,2025-03-11T17:51:00.241004-07:00,1839.0,10.843313,10843.313 +37531,2025-03-11T17:51:11.101691-07:00,1795.0,10.860687,10860.687 +37532,2025-03-11T17:51:21.944939-07:00,1843.0,10.843248,10843.248 +37533,2025-03-11T17:51:32.803235-07:00,1759.0,10.858296,10858.296 +37534,2025-03-11T17:51:43.657448-07:00,1781.0,10.854213,10854.213 +37535,2025-03-11T17:51:54.519694-07:00,1767.0,10.862246,10862.246 +37536,2025-03-11T17:52:05.374668-07:00,1808.0,10.854974,10854.974 +37537,2025-03-11T17:52:16.232692-07:00,1794.0,10.858024,10858.024 +37538,2025-03-11T17:52:27.092683-07:00,1814.0,10.859991,10859.991 +37539,2025-03-11T17:52:37.952917-07:00,1815.0,10.860234,10860.234 +37540,2025-03-11T17:52:48.806881-07:00,1858.0,10.853964,10853.964 +37541,2025-03-11T17:52:59.667666-07:00,1845.0,10.860785,10860.785 +37542,2025-03-11T17:53:10.517681-07:00,1817.0,10.850015,10850.015 +37543,2025-03-11T17:53:21.381298-07:00,1862.0,10.863617,10863.617 +37544,2025-03-11T17:53:32.235881-07:00,1813.0,10.854583,10854.583 +37545,2025-03-11T17:53:43.092411-07:00,1857.0,10.85653,10856.53 +37546,2025-03-11T17:53:53.942688-07:00,1859.0,10.850277,10850.277 +37547,2025-03-11T17:54:04.796963-07:00,1762.0,10.854275,10854.275 +37548,2025-03-11T17:54:15.654684-07:00,1856.0,10.857721,10857.721 +37549,2025-03-11T17:54:26.508742-07:00,1799.0,10.854058,10854.058 +37550,2025-03-11T17:54:37.361685-07:00,1818.0,10.852943,10852.943 +37551,2025-03-11T17:54:48.207742-07:00,1856.0,10.846057,10846.057 +37552,2025-03-11T17:54:59.060916-07:00,1844.0,10.853174,10853.174 +37553,2025-03-11T17:55:09.916694-07:00,1825.0,10.855778,10855.778 +37554,2025-03-11T17:55:20.769689-07:00,1821.0,10.852995,10852.995 +37555,2025-03-11T17:55:31.625686-07:00,1767.0,10.855997,10855.997 +37556,2025-03-11T17:55:42.478930-07:00,1851.0,10.853244,10853.244 +37557,2025-03-11T17:55:53.332682-07:00,1850.0,10.853752,10853.752 +37558,2025-03-11T17:56:04.188686-07:00,1767.0,10.856004,10856.004 +37559,2025-03-11T17:56:15.043686-07:00,1831.0,10.855,10855.0 +37560,2025-03-11T17:56:25.896883-07:00,1829.0,10.853197,10853.197 +37561,2025-03-11T17:56:36.751691-07:00,1844.0,10.854808,10854.808 +37562,2025-03-11T17:56:47.604738-07:00,1773.0,10.853047,10853.047 +37563,2025-03-11T17:56:58.460323-07:00,1798.0,10.855585,10855.585 +37564,2025-03-11T17:57:09.312690-07:00,1825.0,10.852367,10852.367 +37565,2025-03-11T17:57:20.161925-07:00,1805.0,10.849235,10849.235 +37566,2025-03-11T17:57:31.025878-07:00,1783.0,10.863953,10863.953 +37567,2025-03-11T17:57:41.876939-07:00,1841.0,10.851061,10851.061 +37568,2025-03-11T17:57:52.743690-07:00,1839.0,10.866751,10866.751 +37569,2025-03-11T17:58:03.599244-07:00,1845.0,10.855554,10855.554 +37570,2025-03-11T17:58:14.452689-07:00,1744.0,10.853445,10853.445 +37571,2025-03-11T17:58:25.307934-07:00,1776.0,10.855245,10855.245 +37572,2025-03-11T17:58:36.162834-07:00,1757.0,10.8549,10854.9 +37573,2025-03-11T17:58:47.027414-07:00,1830.0,10.86458,10864.58 +37574,2025-03-11T17:58:57.882830-07:00,1839.0,10.855416,10855.416 +37575,2025-03-11T17:59:08.748963-07:00,1776.0,10.866133,10866.133 +37576,2025-03-11T17:59:19.605104-07:00,1814.0,10.856141,10856.141 +37577,2025-03-11T17:59:30.458020-07:00,1825.0,10.852916,10852.916 +37578,2025-03-11T17:59:41.320017-07:00,1842.0,10.861997,10861.997 +37579,2025-03-11T17:59:52.179557-07:00,1808.0,10.85954,10859.54 +37580,2025-03-11T18:00:03.041722-07:00,1840.0,10.862165,10862.165 +37581,2025-03-11T18:00:13.903705-07:00,1779.0,10.861983,10861.983 +37582,2025-03-11T18:00:14.732854-07:00,1779.0,0.829149,829.149 +37583,2025-03-11T18:00:24.763740-07:00,1795.0,10.030886,10030.886 +37584,2025-03-11T18:00:35.629224-07:00,1795.0,10.865484,10865.484 +37585,2025-03-11T18:00:46.487017-07:00,1837.0,10.857793,10857.793 +37586,2025-03-11T18:00:57.349837-07:00,1776.0,10.86282,10862.82 +37587,2025-03-11T18:01:08.206689-07:00,1836.0,10.856852,10856.852 +37588,2025-03-11T18:01:19.071691-07:00,1791.0,10.865002,10865.002 +37589,2025-03-11T18:01:29.937935-07:00,1791.0,10.866244,10866.244 +37590,2025-03-11T18:01:40.802186-07:00,1789.0,10.864251,10864.251 +37591,2025-03-11T18:01:51.656849-07:00,1834.0,10.854663,10854.663 +37592,2025-03-11T18:02:02.518988-07:00,1791.0,10.862139,10862.139 +37593,2025-03-11T18:02:13.387663-07:00,1797.0,10.868675,10868.675 +37594,2025-03-11T18:02:24.242683-07:00,1792.0,10.85502,10855.02 +37595,2025-03-11T18:02:35.107664-07:00,1839.0,10.864981,10864.981 +37596,2025-03-11T18:02:45.974189-07:00,1840.0,10.866525,10866.525 +37597,2025-03-11T18:02:56.828732-07:00,1758.0,10.854543,10854.543 +37598,2025-03-11T18:03:07.689284-07:00,1831.0,10.860552,10860.552 +37599,2025-03-11T18:03:18.549274-07:00,1837.0,10.85999,10859.99 +37600,2025-03-11T18:03:29.404008-07:00,1799.0,10.854734,10854.734 +37601,2025-03-11T18:03:40.269502-07:00,1808.0,10.865494,10865.494 +37602,2025-03-11T18:03:51.124690-07:00,1780.0,10.855188,10855.188 +37603,2025-03-11T18:04:01.988719-07:00,1815.0,10.864029,10864.029 +37604,2025-03-11T18:04:12.851690-07:00,1769.0,10.862971,10862.971 +37605,2025-03-11T18:04:23.708681-07:00,1829.0,10.856991,10856.991 +37606,2025-03-11T18:04:34.566020-07:00,1733.0,10.857339,10857.339 +37607,2025-03-11T18:04:45.430383-07:00,1773.0,10.864363,10864.363 +37608,2025-03-11T18:04:56.284448-07:00,1807.0,10.854065,10854.065 +37609,2025-03-11T18:05:07.140117-07:00,1725.0,10.855669,10855.669 +37610,2025-03-11T18:05:17.989744-07:00,1799.0,10.849627,10849.627 +37611,2025-03-11T18:05:28.850092-07:00,1760.0,10.860348,10860.348 +37612,2025-03-11T18:05:39.705369-07:00,1745.0,10.855277,10855.277 +37613,2025-03-11T18:05:50.568831-07:00,1772.0,10.863462,10863.462 +37614,2025-03-11T18:06:01.423820-07:00,1782.0,10.854989,10854.989 +37615,2025-03-11T18:06:12.279024-07:00,1778.0,10.855204,10855.204 +37616,2025-03-11T18:06:33.999963-07:00,1780.0,21.720939,21720.939 +37617,2025-03-11T18:06:44.853731-07:00,1744.0,10.853768,10853.768 +37618,2025-03-11T18:06:55.702130-07:00,1716.0,10.848399,10848.399 +37619,2025-03-11T18:07:06.613071-07:00,1771.0,10.910941,10910.941 +37620,2025-03-11T18:07:17.467145-07:00,1775.0,10.854074,10854.074 +37621,2025-03-11T18:07:28.322108-07:00,1777.0,10.854963,10854.963 +37622,2025-03-11T18:07:39.176139-07:00,1722.0,10.854031,10854.031 +37623,2025-03-11T18:07:50.029870-07:00,1778.0,10.853731,10853.731 +37624,2025-03-11T18:08:00.898130-07:00,1737.0,10.86826,10868.26 +37625,2025-03-11T18:08:11.751890-07:00,1713.0,10.85376,10853.76 +37626,2025-03-11T18:08:22.606889-07:00,1709.0,10.854999,10854.999 +37627,2025-03-11T18:08:33.459028-07:00,1681.0,10.852139,10852.139 +37628,2025-03-11T18:08:44.321548-07:00,1717.0,10.86252,10862.52 +37629,2025-03-11T18:08:55.181168-07:00,1679.0,10.85962,10859.62 +37630,2025-03-11T18:09:06.035442-07:00,1712.0,10.854274,10854.274 +37631,2025-03-11T18:09:16.895136-07:00,1759.0,10.859694,10859.694 +37632,2025-03-11T18:09:27.754829-07:00,1712.0,10.859693,10859.693 +37633,2025-03-11T18:09:38.612976-07:00,1776.0,10.858147,10858.147 +37634,2025-03-11T18:09:49.472840-07:00,1761.0,10.859864,10859.864 +37635,2025-03-11T18:10:00.330841-07:00,1753.0,10.858001,10858.001 +37636,2025-03-11T18:10:11.184824-07:00,1771.0,10.853983,10853.983 +37637,2025-03-11T18:10:22.038837-07:00,1680.0,10.854013,10854.013 +37638,2025-03-11T18:10:32.900051-07:00,1776.0,10.861214,10861.214 +37639,2025-03-11T18:10:43.759061-07:00,1723.0,10.85901,10859.01 +37640,2025-03-11T18:10:54.623180-07:00,1719.0,10.864119,10864.119 +37641,2025-03-11T18:11:05.479018-07:00,1730.0,10.855838,10855.838 +37642,2025-03-11T18:11:16.345906-07:00,1776.0,10.866888,10866.888 +37643,2025-03-11T18:11:27.201362-07:00,1726.0,10.855456,10855.456 +37644,2025-03-11T18:11:38.054842-07:00,1776.0,10.85348,10853.48 +37645,2025-03-11T18:11:48.915193-07:00,1687.0,10.860351,10860.351 +37646,2025-03-11T18:11:59.767874-07:00,1709.0,10.852681,10852.681 +37647,2025-03-11T18:12:10.626835-07:00,1691.0,10.858961,10858.961 +37648,2025-03-11T18:12:21.485839-07:00,1726.0,10.859004,10859.004 +37649,2025-03-11T18:12:32.342844-07:00,1719.0,10.857005,10857.005 +37650,2025-03-11T18:12:43.204399-07:00,1732.0,10.861555,10861.555 +37651,2025-03-11T18:12:54.058840-07:00,1710.0,10.854441,10854.441 +37652,2025-03-11T18:13:04.920867-07:00,1691.0,10.862027,10862.027 +37653,2025-03-11T18:13:15.789202-07:00,1702.0,10.868335,10868.335 +37654,2025-03-11T18:13:26.651840-07:00,1753.0,10.862638,10862.638 +37655,2025-03-11T18:13:37.511060-07:00,1744.0,10.85922,10859.22 +37656,2025-03-11T18:13:48.361841-07:00,1766.0,10.850781,10850.781 +37657,2025-03-11T18:13:59.226842-07:00,1732.0,10.865001,10865.001 +37658,2025-03-11T18:14:10.089831-07:00,1752.0,10.862989,10862.989 +37659,2025-03-11T18:14:20.953113-07:00,1759.0,10.863282,10863.282 +37660,2025-03-11T18:14:31.817865-07:00,1723.0,10.864752,10864.752 +37661,2025-03-11T18:14:42.671188-07:00,1779.0,10.853323,10853.323 +37662,2025-03-11T18:14:53.538524-07:00,1711.0,10.867336,10867.336 +37663,2025-03-11T18:15:04.393167-07:00,1714.0,10.854643,10854.643 +37664,2025-03-11T18:15:15.260044-07:00,1744.0,10.866877,10866.877 +37665,2025-03-11T18:15:26.111215-07:00,1759.0,10.851171,10851.171 +37666,2025-03-11T18:15:36.966949-07:00,1770.0,10.855734,10855.734 +37667,2025-03-11T18:15:47.825623-07:00,1734.0,10.858674,10858.674 +37668,2025-03-11T18:15:58.689841-07:00,1691.0,10.864218,10864.218 +37669,2025-03-11T18:16:09.542827-07:00,1750.0,10.852986,10852.986 +37670,2025-03-11T18:16:20.406075-07:00,1718.0,10.863248,10863.248 +37671,2025-03-11T18:16:31.261287-07:00,1770.0,10.855212,10855.212 +37672,2025-03-11T18:16:42.116936-07:00,1769.0,10.855649,10855.649 +37673,2025-03-11T18:16:52.970024-07:00,1776.0,10.853088,10853.088 +37674,2025-03-11T18:17:03.837182-07:00,1781.0,10.867158,10867.158 +37675,2025-03-11T18:17:14.697120-07:00,1781.0,10.859938,10859.938 +37676,2025-03-11T18:17:25.547174-07:00,1703.0,10.850054,10850.054 +37677,2025-03-11T18:17:36.412894-07:00,1735.0,10.86572,10865.72 +37678,2025-03-11T18:17:47.262250-07:00,1743.0,10.849356,10849.356 +37679,2025-03-11T18:17:58.121982-07:00,1767.0,10.859732,10859.732 +37680,2025-03-11T18:18:08.975981-07:00,1758.0,10.853999,10853.999 +37681,2025-03-11T18:18:19.842925-07:00,1726.0,10.866944,10866.944 +37682,2025-03-11T18:18:30.694834-07:00,1779.0,10.851909,10851.909 +37683,2025-03-11T18:18:41.551840-07:00,1712.0,10.857006,10857.006 +37684,2025-03-11T18:18:52.414925-07:00,1757.0,10.863085,10863.085 +37685,2025-03-11T18:19:03.272083-07:00,1725.0,10.857158,10857.158 +37686,2025-03-11T18:19:14.145557-07:00,1702.0,10.873474,10873.474 +37687,2025-03-11T18:19:25.008079-07:00,1701.0,10.862522,10862.522 +37688,2025-03-11T18:19:35.875184-07:00,1774.0,10.867105,10867.105 +37689,2025-03-11T18:19:46.733200-07:00,1776.0,10.858016,10858.016 +37690,2025-03-11T18:19:57.590079-07:00,1720.0,10.856879,10856.879 +37691,2025-03-11T18:20:08.448847-07:00,1785.0,10.858768,10858.768 +37692,2025-03-11T18:20:19.315639-07:00,1726.0,10.866792,10866.792 +37693,2025-03-11T18:20:30.175554-07:00,1716.0,10.859915,10859.915 +37694,2025-03-11T18:20:41.029320-07:00,1786.0,10.853766,10853.766 +37695,2025-03-11T18:20:51.893842-07:00,1747.0,10.864522,10864.522 +37696,2025-03-11T18:21:02.760841-07:00,1744.0,10.866999,10866.999 +37697,2025-03-11T18:21:13.623835-07:00,1702.0,10.862994,10862.994 +37698,2025-03-11T18:21:24.484839-07:00,1747.0,10.861004,10861.004 +37699,2025-03-11T18:21:35.358077-07:00,1744.0,10.873238,10873.238 +37700,2025-03-11T18:21:46.210036-07:00,1738.0,10.851959,10851.959 +37701,2025-03-11T18:21:57.080841-07:00,1785.0,10.870805,10870.805 +37702,2025-03-11T18:22:07.938431-07:00,1743.0,10.85759,10857.59 +37703,2025-03-11T18:22:18.799200-07:00,1701.0,10.860769,10860.769 +37704,2025-03-11T18:22:29.662465-07:00,1773.0,10.863265,10863.265 +37705,2025-03-11T18:22:40.536167-07:00,1744.0,10.873702,10873.702 +37706,2025-03-11T18:22:51.396863-07:00,1694.0,10.860696,10860.696 +37707,2025-03-11T18:23:02.250113-07:00,1758.0,10.85325,10853.25 +37708,2025-03-11T18:23:13.114838-07:00,1763.0,10.864725,10864.725 +37709,2025-03-11T18:23:23.980249-07:00,1782.0,10.865411,10865.411 +37710,2025-03-11T18:23:34.837128-07:00,1689.0,10.856879,10856.879 +37711,2025-03-11T18:23:45.701526-07:00,1744.0,10.864398,10864.398 +37712,2025-03-11T18:23:56.556202-07:00,1781.0,10.854676,10854.676 +37713,2025-03-11T18:24:07.422836-07:00,1778.0,10.866634,10866.634 +37714,2025-03-11T18:24:18.282121-07:00,1743.0,10.859285,10859.285 +37715,2025-03-11T18:24:29.137191-07:00,1776.0,10.85507,10855.07 +37716,2025-03-11T18:24:39.999954-07:00,1696.0,10.862763,10862.763 +37717,2025-03-11T18:24:50.852410-07:00,1739.0,10.852456,10852.456 +37718,2025-03-11T18:25:01.712069-07:00,1767.0,10.859659,10859.659 +37719,2025-03-11T18:25:12.578449-07:00,1765.0,10.86638,10866.38 +37720,2025-03-11T18:25:23.437943-07:00,1723.0,10.859494,10859.494 +37721,2025-03-11T18:25:34.299475-07:00,1766.0,10.861532,10861.532 +37722,2025-03-11T18:25:45.161163-07:00,1700.0,10.861688,10861.688 +37723,2025-03-11T18:25:56.023839-07:00,1767.0,10.862676,10862.676 +37724,2025-03-11T18:26:06.879842-07:00,1754.0,10.856003,10856.003 +37725,2025-03-11T18:26:17.735842-07:00,1764.0,10.856,10856.0 +37726,2025-03-11T18:26:28.596896-07:00,1713.0,10.861054,10861.054 +37727,2025-03-11T18:26:39.458996-07:00,1744.0,10.8621,10862.1 +37728,2025-03-11T18:26:50.321959-07:00,1759.0,10.862963,10862.963 +37729,2025-03-11T18:27:01.174078-07:00,1755.0,10.852119,10852.119 +37730,2025-03-11T18:27:12.033978-07:00,1671.0,10.8599,10859.9 +37731,2025-03-11T18:27:22.891791-07:00,1692.0,10.857813,10857.813 +37732,2025-03-11T18:27:33.747931-07:00,1757.0,10.85614,10856.14 +37733,2025-03-11T18:27:44.610396-07:00,1746.0,10.862465,10862.465 +37734,2025-03-11T18:27:55.460078-07:00,1765.0,10.849682,10849.682 +37735,2025-03-11T18:28:06.317110-07:00,1762.0,10.857032,10857.032 +37736,2025-03-11T18:28:17.184024-07:00,1744.0,10.866914,10866.914 +37737,2025-03-11T18:28:28.044512-07:00,1744.0,10.860488,10860.488 +37738,2025-03-11T18:28:38.902844-07:00,1762.0,10.858332,10858.332 +37739,2025-03-11T18:28:49.749074-07:00,1761.0,10.84623,10846.23 +37740,2025-03-11T18:29:00.614647-07:00,1763.0,10.865573,10865.573 +37741,2025-03-11T18:29:11.472839-07:00,1732.0,10.858192,10858.192 +37742,2025-03-11T18:29:22.334840-07:00,1737.0,10.862001,10862.001 +37743,2025-03-11T18:29:33.182817-07:00,1715.0,10.847977,10847.977 +37744,2025-03-11T18:29:44.039845-07:00,1674.0,10.857028,10857.028 +37745,2025-03-11T18:29:54.895029-07:00,1738.0,10.855184,10855.184 +37746,2025-03-11T18:30:05.751958-07:00,1769.0,10.856929,10856.929 +37747,2025-03-11T18:30:16.610221-07:00,1770.0,10.858263,10858.263 +37748,2025-03-11T18:30:27.464888-07:00,1766.0,10.854667,10854.667 +37749,2025-03-11T18:30:38.331172-07:00,1733.0,10.866284,10866.284 +37750,2025-03-11T18:30:49.181635-07:00,1728.0,10.850463,10850.463 +37751,2025-03-11T18:31:00.038156-07:00,1744.0,10.856521,10856.521 +37752,2025-03-11T18:31:10.900020-07:00,1682.0,10.861864,10861.864 +37753,2025-03-11T18:31:21.760842-07:00,1762.0,10.860822,10860.822 +37754,2025-03-11T18:31:32.614093-07:00,1718.0,10.853251,10853.251 +37755,2025-03-11T18:31:43.468842-07:00,1723.0,10.854749,10854.749 +37756,2025-03-11T18:31:54.329834-07:00,1763.0,10.860992,10860.992 +37757,2025-03-11T18:32:05.195897-07:00,1747.0,10.866063,10866.063 +37758,2025-03-11T18:32:16.051021-07:00,1764.0,10.855124,10855.124 +37759,2025-03-11T18:32:26.919743-07:00,1677.0,10.868722,10868.722 +37760,2025-03-11T18:32:37.781145-07:00,1707.0,10.861402,10861.402 +37761,2025-03-11T18:32:48.643841-07:00,1712.0,10.862696,10862.696 +37762,2025-03-11T18:32:59.502452-07:00,1757.0,10.858611,10858.611 +37763,2025-03-11T18:33:10.367015-07:00,1742.0,10.864563,10864.563 +37764,2025-03-11T18:33:21.234147-07:00,1711.0,10.867132,10867.132 +37765,2025-03-11T18:33:32.091023-07:00,1734.0,10.856876,10856.876 +37766,2025-03-11T18:33:42.954813-07:00,1765.0,10.86379,10863.79 +37767,2025-03-11T18:33:53.821136-07:00,1666.0,10.866323,10866.323 +37768,2025-03-11T18:34:04.685927-07:00,1742.0,10.864791,10864.791 +37769,2025-03-11T18:34:15.546266-07:00,1715.0,10.860339,10860.339 +37770,2025-03-11T18:34:26.416835-07:00,1744.0,10.870569,10870.569 +37771,2025-03-11T18:34:37.275937-07:00,1757.0,10.859102,10859.102 +37772,2025-03-11T18:34:48.145857-07:00,1761.0,10.86992,10869.92 +37773,2025-03-11T18:34:59.002686-07:00,1719.0,10.856829,10856.829 +37774,2025-03-11T18:35:09.870841-07:00,1665.0,10.868155,10868.155 +37775,2025-03-11T18:35:20.723928-07:00,1698.0,10.853087,10853.087 +37776,2025-03-11T18:35:31.590988-07:00,1675.0,10.86706,10867.06 +37777,2025-03-11T18:35:42.450018-07:00,1711.0,10.85903,10859.03 +37778,2025-03-11T18:35:53.311172-07:00,1689.0,10.861154,10861.154 +37779,2025-03-11T18:36:04.180359-07:00,1739.0,10.869187,10869.187 +37780,2025-03-11T18:36:15.035977-07:00,1747.0,10.855618,10855.618 +37781,2025-03-11T18:36:25.901240-07:00,1712.0,10.865263,10865.263 +37782,2025-03-11T18:36:36.756843-07:00,1755.0,10.855603,10855.603 +37783,2025-03-11T18:36:47.621978-07:00,1701.0,10.865135,10865.135 +37784,2025-03-11T18:36:58.492147-07:00,1759.0,10.870169,10870.169 +37785,2025-03-11T18:37:09.349805-07:00,1750.0,10.857658,10857.658 +37786,2025-03-11T18:37:20.219054-07:00,1749.0,10.869249,10869.249 +37787,2025-03-11T18:37:31.073019-07:00,1679.0,10.853965,10853.965 +37788,2025-03-11T18:37:41.935940-07:00,1706.0,10.862921,10862.921 +37789,2025-03-11T18:37:52.790083-07:00,1712.0,10.854143,10854.143 +37790,2025-03-11T18:38:03.654840-07:00,1746.0,10.864757,10864.757 +37791,2025-03-11T18:38:14.511056-07:00,1698.0,10.856216,10856.216 +37792,2025-03-11T18:38:25.369865-07:00,1717.0,10.858809,10858.809 +37793,2025-03-11T18:38:36.231359-07:00,1699.0,10.861494,10861.494 +37794,2025-03-11T18:38:47.089149-07:00,1736.0,10.85779,10857.79 +37795,2025-03-11T18:38:57.945189-07:00,1746.0,10.85604,10856.04 +37796,2025-03-11T18:39:08.798399-07:00,1701.0,10.85321,10853.21 +37797,2025-03-11T18:39:19.660847-07:00,1712.0,10.862448,10862.448 +37798,2025-03-11T18:39:30.518819-07:00,1716.0,10.857972,10857.972 +37799,2025-03-11T18:39:41.378890-07:00,1745.0,10.860071,10860.071 +37800,2025-03-11T18:39:52.231397-07:00,1735.0,10.852507,10852.507 +37801,2025-03-11T18:40:03.089231-07:00,1744.0,10.857834,10857.834 +37802,2025-03-11T18:40:13.949582-07:00,1744.0,10.860351,10860.351 +37803,2025-03-11T18:40:24.790837-07:00,1703.0,10.841255,10841.255 +37804,2025-03-11T18:40:35.645820-07:00,1702.0,10.854983,10854.983 +37805,2025-03-11T18:40:46.501840-07:00,1697.0,10.85602,10856.02 +37806,2025-03-11T18:40:57.346188-07:00,1695.0,10.844348,10844.348 +37807,2025-03-11T18:41:08.198248-07:00,1699.0,10.85206,10852.06 +37808,2025-03-11T18:41:19.050198-07:00,1705.0,10.85195,10851.95 +37809,2025-03-11T18:41:29.895856-07:00,1667.0,10.845658,10845.658 +37810,2025-03-11T18:41:40.750192-07:00,1683.0,10.854336,10854.336 +37811,2025-03-11T18:41:51.604864-07:00,1726.0,10.854672,10854.672 +37812,2025-03-11T18:42:02.459259-07:00,1695.0,10.854395,10854.395 +37813,2025-03-11T18:42:13.315154-07:00,1669.0,10.855895,10855.895 +37814,2025-03-11T18:42:24.160844-07:00,1745.0,10.84569,10845.69 +37815,2025-03-11T18:42:35.010814-07:00,1703.0,10.84997,10849.97 +37816,2025-03-11T18:42:45.864020-07:00,1729.0,10.853206,10853.206 +37817,2025-03-11T18:42:56.714309-07:00,1663.0,10.850289,10850.289 +37818,2025-03-11T18:43:07.562298-07:00,1712.0,10.847989,10847.989 +37819,2025-03-11T18:43:18.418080-07:00,1650.0,10.855782,10855.782 +37820,2025-03-11T18:43:29.264444-07:00,1743.0,10.846364,10846.364 +37821,2025-03-11T18:43:40.115147-07:00,1734.0,10.850703,10850.703 +37822,2025-03-11T18:43:50.969249-07:00,1743.0,10.854102,10854.102 +37823,2025-03-11T18:44:01.819518-07:00,1727.0,10.850269,10850.269 +37824,2025-03-11T18:44:12.670389-07:00,1659.0,10.850871,10850.871 +37825,2025-03-11T18:44:23.511083-07:00,1673.0,10.840694,10840.694 +37826,2025-03-11T18:44:34.364890-07:00,1742.0,10.853807,10853.807 +37827,2025-03-11T18:44:45.213988-07:00,1704.0,10.849098,10849.098 +37828,2025-03-11T18:44:56.071124-07:00,1741.0,10.857136,10857.136 +37829,2025-03-11T18:45:06.921831-07:00,1648.0,10.850707,10850.707 +37830,2025-03-11T18:45:06.921831-07:00,1648.0,0.0,0.0 +37831,2025-03-11T18:45:17.769890-07:00,1743.0,10.848059,10848.059 +37832,2025-03-11T18:45:28.614844-07:00,1684.0,10.844954,10844.954 +37833,2025-03-11T18:45:39.475051-07:00,1675.0,10.860207,10860.207 +37834,2025-03-11T18:45:50.322818-07:00,1694.0,10.847767,10847.767 +37835,2025-03-11T18:46:01.173968-07:00,1699.0,10.85115,10851.15 +37836,2025-03-11T18:46:12.031834-07:00,1731.0,10.857866,10857.866 +37837,2025-03-11T18:46:22.877013-07:00,1663.0,10.845179,10845.179 +37838,2025-03-11T18:46:33.728170-07:00,1726.0,10.851157,10851.157 +37839,2025-03-11T18:46:44.572878-07:00,1695.0,10.844708,10844.708 +37840,2025-03-11T18:46:55.427875-07:00,1737.0,10.854997,10854.997 +37841,2025-03-11T18:47:06.274091-07:00,1654.0,10.846216,10846.216 +37842,2025-03-11T18:47:17.131840-07:00,1719.0,10.857749,10857.749 +37843,2025-03-11T18:47:27.983839-07:00,1742.0,10.851999,10851.999 +37844,2025-03-11T18:47:38.822842-07:00,1714.0,10.839003,10839.003 +37845,2025-03-11T18:48:00.519186-07:00,1648.0,21.696344,21696.344 +37846,2025-03-11T18:48:11.362616-07:00,1733.0,10.84343,10843.43 +37847,2025-03-11T18:48:22.200837-07:00,1725.0,10.838221,10838.221 +37848,2025-03-11T18:48:33.059087-07:00,1712.0,10.85825,10858.25 +37849,2025-03-11T18:48:43.905036-07:00,1657.0,10.845949,10845.949 +37850,2025-03-11T18:48:54.741836-07:00,1713.0,10.8368,10836.8 +37851,2025-03-11T18:49:05.594130-07:00,1711.0,10.852294,10852.294 +37852,2025-03-11T18:49:16.437777-07:00,1676.0,10.843647,10843.647 +37853,2025-03-11T18:49:27.282834-07:00,1666.0,10.845057,10845.057 +37854,2025-03-11T18:49:38.130051-07:00,1679.0,10.847217,10847.217 +37855,2025-03-11T18:49:48.976010-07:00,1693.0,10.845959,10845.959 +37856,2025-03-11T18:49:59.825844-07:00,1646.0,10.849834,10849.834 +37857,2025-03-11T18:50:10.672197-07:00,1648.0,10.846353,10846.353 +37858,2025-03-11T18:50:21.515616-07:00,1715.0,10.843419,10843.419 +37859,2025-03-11T18:50:32.363846-07:00,1735.0,10.84823,10848.23 +37860,2025-03-11T18:50:43.207837-07:00,1734.0,10.843991,10843.991 +37861,2025-03-11T18:50:54.056054-07:00,1726.0,10.848217,10848.217 +37862,2025-03-11T18:51:04.907815-07:00,1731.0,10.851761,10851.761 +37863,2025-03-11T18:51:15.763067-07:00,1699.0,10.855252,10855.252 +37864,2025-03-11T18:51:26.608841-07:00,1688.0,10.845774,10845.774 +37865,2025-03-11T18:51:37.462445-07:00,1686.0,10.853604,10853.604 +37866,2025-03-11T18:51:48.316916-07:00,1647.0,10.854471,10854.471 +37867,2025-03-11T18:51:59.166844-07:00,1681.0,10.849928,10849.928 +37868,2025-03-11T18:52:10.015139-07:00,1698.0,10.848295,10848.295 +37869,2025-03-11T18:52:20.864620-07:00,1709.0,10.849481,10849.481 +37870,2025-03-11T18:52:31.711877-07:00,1733.0,10.847257,10847.257 +37871,2025-03-11T18:52:42.564031-07:00,1644.0,10.852154,10852.154 +37872,2025-03-11T18:52:53.408842-07:00,1727.0,10.844811,10844.811 +37873,2025-03-11T18:53:04.260141-07:00,1729.0,10.851299,10851.299 +37874,2025-03-11T18:53:15.098182-07:00,1735.0,10.838041,10838.041 +37875,2025-03-11T18:53:25.946277-07:00,1663.0,10.848095,10848.095 +37876,2025-03-11T18:53:36.799000-07:00,1678.0,10.852723,10852.723 +37877,2025-03-11T18:53:47.652090-07:00,1738.0,10.85309,10853.09 +37878,2025-03-11T18:53:58.491108-07:00,1722.0,10.839018,10839.018 +37879,2025-03-11T18:54:09.342824-07:00,1719.0,10.851716,10851.716 +37880,2025-03-11T18:54:20.191003-07:00,1718.0,10.848179,10848.179 +37881,2025-03-11T18:54:31.039842-07:00,1694.0,10.848839,10848.839 +37882,2025-03-11T18:54:41.882098-07:00,1703.0,10.842256,10842.256 +37883,2025-03-11T18:54:52.734832-07:00,1679.0,10.852734,10852.734 +37884,2025-03-11T18:55:03.578965-07:00,1720.0,10.844133,10844.133 +37885,2025-03-11T18:55:14.423973-07:00,1647.0,10.845008,10845.008 +37886,2025-03-11T18:55:25.269070-07:00,1639.0,10.845097,10845.097 +37887,2025-03-11T18:55:36.123837-07:00,1731.0,10.854767,10854.767 +37888,2025-03-11T18:55:46.968517-07:00,1683.0,10.84468,10844.68 +37889,2025-03-11T18:55:57.813111-07:00,1715.0,10.844594,10844.594 +37890,2025-03-11T18:56:08.667163-07:00,1674.0,10.854052,10854.052 +37891,2025-03-11T18:56:19.519162-07:00,1682.0,10.851999,10851.999 +37892,2025-03-11T18:56:30.368612-07:00,1730.0,10.84945,10849.45 +37893,2025-03-11T18:56:41.211066-07:00,1697.0,10.842454,10842.454 +37894,2025-03-11T18:56:52.058963-07:00,1643.0,10.847897,10847.897 +37895,2025-03-11T18:57:02.903066-07:00,1727.0,10.844103,10844.103 +37896,2025-03-11T18:57:13.757117-07:00,1671.0,10.854051,10854.051 +37897,2025-03-11T18:57:24.605839-07:00,1705.0,10.848722,10848.722 +37898,2025-03-11T18:57:35.449882-07:00,1717.0,10.844043,10844.043 +37899,2025-03-11T18:57:46.293530-07:00,1707.0,10.843648,10843.648 +37900,2025-03-11T18:57:57.139945-07:00,1728.0,10.846415,10846.415 +37901,2025-03-11T18:58:07.996878-07:00,1728.0,10.856933,10856.933 +37902,2025-03-11T18:58:18.843892-07:00,1659.0,10.847014,10847.014 +37903,2025-03-11T18:58:29.692949-07:00,1718.0,10.849057,10849.057 +37904,2025-03-11T18:58:40.546141-07:00,1695.0,10.853192,10853.192 +37905,2025-03-11T18:58:51.385836-07:00,1728.0,10.839695,10839.695 +37906,2025-03-11T18:59:02.234385-07:00,1724.0,10.848549,10848.549 +37907,2025-03-11T18:59:13.076436-07:00,1728.0,10.842051,10842.051 +37908,2025-03-11T18:59:23.925833-07:00,1727.0,10.849397,10849.397 +37909,2025-03-11T18:59:34.773818-07:00,1681.0,10.847985,10847.985 +37910,2025-03-11T18:59:45.623695-07:00,1687.0,10.849877,10849.877 +37911,2025-03-11T18:59:56.469841-07:00,1651.0,10.846146,10846.146 +37912,2025-03-11T19:00:07.318852-07:00,1673.0,10.849011,10849.011 +37913,2025-03-11T19:00:18.164085-07:00,1683.0,10.845233,10845.233 +37914,2025-03-11T19:00:29.010195-07:00,1719.0,10.84611,10846.11 +37915,2025-03-11T19:00:39.863153-07:00,1712.0,10.852958,10852.958 +37916,2025-03-11T19:00:50.697810-07:00,1679.0,10.834657,10834.657 +37917,2025-03-11T19:01:01.551838-07:00,1724.0,10.854028,10854.028 +37918,2025-03-11T19:01:12.392931-07:00,1635.0,10.841093,10841.093 +37919,2025-03-11T19:01:23.235426-07:00,1626.0,10.842495,10842.495 +37920,2025-03-11T19:01:34.082844-07:00,1722.0,10.847418,10847.418 +37921,2025-03-11T19:01:44.936693-07:00,1677.0,10.853849,10853.849 +37922,2025-03-11T19:01:55.778285-07:00,1664.0,10.841592,10841.592 +37923,2025-03-11T19:02:06.628835-07:00,1721.0,10.85055,10850.55 +37924,2025-03-11T19:02:17.476917-07:00,1718.0,10.848082,10848.082 +37925,2025-03-11T19:02:28.327160-07:00,1680.0,10.850243,10850.243 +37926,2025-03-11T19:02:39.170837-07:00,1673.0,10.843677,10843.677 +37927,2025-03-11T19:02:50.025071-07:00,1673.0,10.854234,10854.234 +37928,2025-03-11T19:03:00.878952-07:00,1723.0,10.853881,10853.881 +37929,2025-03-11T19:03:11.727157-07:00,1681.0,10.848205,10848.205 +37930,2025-03-11T19:03:22.570274-07:00,1719.0,10.843117,10843.117 +37931,2025-03-11T19:03:33.420835-07:00,1713.0,10.850561,10850.561 +37932,2025-03-11T19:03:44.270826-07:00,1667.0,10.849991,10849.991 +37933,2025-03-11T19:03:55.122837-07:00,1655.0,10.852011,10852.011 +37934,2025-03-11T19:04:05.966983-07:00,1713.0,10.844146,10844.146 +37935,2025-03-11T19:04:16.819964-07:00,1635.0,10.852981,10852.981 +37936,2025-03-11T19:04:27.663414-07:00,1703.0,10.84345,10843.45 +37937,2025-03-11T19:04:38.506309-07:00,1661.0,10.842895,10842.895 +37938,2025-03-11T19:04:49.355077-07:00,1700.0,10.848768,10848.768 +37939,2025-03-11T19:05:00.208814-07:00,1718.0,10.853737,10853.737 +37940,2025-03-11T19:05:11.052836-07:00,1713.0,10.844022,10844.022 +37941,2025-03-11T19:05:21.901841-07:00,1639.0,10.849005,10849.005 +37942,2025-03-11T19:05:32.753838-07:00,1695.0,10.851997,10851.997 +37943,2025-03-11T19:05:43.597839-07:00,1680.0,10.844001,10844.001 +37944,2025-03-11T19:05:54.452776-07:00,1655.0,10.854937,10854.937 +37945,2025-03-11T19:06:05.303792-07:00,1643.0,10.851016,10851.016 +37946,2025-03-11T19:06:16.155857-07:00,1623.0,10.852065,10852.065 +37947,2025-03-11T19:06:27.000350-07:00,1712.0,10.844493,10844.493 +37948,2025-03-11T19:06:37.847874-07:00,1712.0,10.847524,10847.524 +37949,2025-03-11T19:06:48.701886-07:00,1712.0,10.854012,10854.012 +37950,2025-03-11T19:06:59.553053-07:00,1650.0,10.851167,10851.167 +37951,2025-03-11T19:07:10.432661-07:00,1670.0,10.879608,10879.608 +37952,2025-03-11T19:07:21.271249-07:00,1712.0,10.838588,10838.588 +37953,2025-03-11T19:07:32.130363-07:00,1712.0,10.859114,10859.114 +37954,2025-03-11T19:07:42.974903-07:00,1712.0,10.84454,10844.54 +37955,2025-03-11T19:07:53.829795-07:00,1667.0,10.854892,10854.892 +37956,2025-03-11T19:08:04.672556-07:00,1680.0,10.842761,10842.761 +37957,2025-03-11T19:08:15.521245-07:00,1625.0,10.848689,10848.689 +37958,2025-03-11T19:08:26.364357-07:00,1667.0,10.843112,10843.112 +37959,2025-03-11T19:08:37.211770-07:00,1695.0,10.847413,10847.413 +37960,2025-03-11T19:08:48.049305-07:00,1627.0,10.837535,10837.535 +37961,2025-03-11T19:08:58.901556-07:00,1697.0,10.852251,10852.251 +37962,2025-03-11T19:09:09.753622-07:00,1647.0,10.852066,10852.066 +37963,2025-03-11T19:09:20.602389-07:00,1712.0,10.848767,10848.767 +37964,2025-03-11T19:09:31.444251-07:00,1680.0,10.841862,10841.862 +37965,2025-03-11T19:09:42.289567-07:00,1712.0,10.845316,10845.316 +37966,2025-03-11T19:09:53.135424-07:00,1709.0,10.845857,10845.857 +37967,2025-03-11T19:10:03.990854-07:00,1709.0,10.85543,10855.43 +37968,2025-03-11T19:10:14.834595-07:00,1629.0,10.843741,10843.741 +37969,2025-03-11T19:10:25.683852-07:00,1711.0,10.849257,10849.257 +37970,2025-03-11T19:10:36.531556-07:00,1625.0,10.847704,10847.704 +37971,2025-03-11T19:10:47.374500-07:00,1673.0,10.842944,10842.944 +37972,2025-03-11T19:10:58.224326-07:00,1623.0,10.849826,10849.826 +37973,2025-03-11T19:11:09.071686-07:00,1629.0,10.84736,10847.36 +37974,2025-03-11T19:11:19.915234-07:00,1669.0,10.843548,10843.548 +37975,2025-03-11T19:11:30.769225-07:00,1671.0,10.853991,10853.991 +37976,2025-03-11T19:11:41.612142-07:00,1665.0,10.842917,10842.917 +37977,2025-03-11T19:11:52.455659-07:00,1616.0,10.843517,10843.517 +37978,2025-03-11T19:12:03.299245-07:00,1651.0,10.843586,10843.586 +37979,2025-03-11T19:12:14.143498-07:00,1711.0,10.844253,10844.253 +37980,2025-03-11T19:12:24.996250-07:00,1621.0,10.852752,10852.752 +37981,2025-03-11T19:12:35.844374-07:00,1619.0,10.848124,10848.124 +37982,2025-03-11T19:12:46.690715-07:00,1707.0,10.846341,10846.341 +37983,2025-03-11T19:12:57.527460-07:00,1707.0,10.836745,10836.745 +37984,2025-03-11T19:13:08.379248-07:00,1620.0,10.851788,10851.788 +37985,2025-03-11T19:13:19.225460-07:00,1695.0,10.846212,10846.212 +37986,2025-03-11T19:13:30.072246-07:00,1661.0,10.846786,10846.786 +37987,2025-03-11T19:13:40.919440-07:00,1629.0,10.847194,10847.194 +37988,2025-03-11T19:13:51.763587-07:00,1627.0,10.844147,10844.147 +37989,2025-03-11T19:14:02.606550-07:00,1706.0,10.842963,10842.963 +37990,2025-03-11T19:14:13.465462-07:00,1631.0,10.858912,10858.912 +37991,2025-03-11T19:14:24.311244-07:00,1626.0,10.845782,10845.782 +37992,2025-03-11T19:14:35.154278-07:00,1645.0,10.843034,10843.034 +37993,2025-03-11T19:14:46.003248-07:00,1667.0,10.84897,10848.97 +37994,2025-03-11T19:14:56.845732-07:00,1673.0,10.842484,10842.484 +37995,2025-03-11T19:15:07.692780-07:00,1698.0,10.847048,10847.048 +37996,2025-03-11T19:15:18.538249-07:00,1685.0,10.845469,10845.469 +37997,2025-03-11T19:15:29.381248-07:00,1696.0,10.842999,10842.999 +37998,2025-03-11T19:15:40.226319-07:00,1657.0,10.845071,10845.071 +37999,2025-03-11T19:15:51.072253-07:00,1658.0,10.845934,10845.934 +38000,2025-03-11T19:16:01.925255-07:00,1665.0,10.853002,10853.002 +38001,2025-03-11T19:16:12.781260-07:00,1681.0,10.856005,10856.005 +38002,2025-03-11T19:16:23.631690-07:00,1666.0,10.85043,10850.43 +38003,2025-03-11T19:16:34.478589-07:00,1679.0,10.846899,10846.899 +38004,2025-03-11T19:16:45.333558-07:00,1646.0,10.854969,10854.969 +38005,2025-03-11T19:16:56.183593-07:00,1691.0,10.850035,10850.035 +38006,2025-03-11T19:17:07.042693-07:00,1694.0,10.8591,10859.1 +38007,2025-03-11T19:17:17.892838-07:00,1690.0,10.850145,10850.145 +38008,2025-03-11T19:17:28.737256-07:00,1697.0,10.844418,10844.418 +38009,2025-03-11T19:17:39.597894-07:00,1680.0,10.860638,10860.638 +38010,2025-03-11T19:17:50.444297-07:00,1663.0,10.846403,10846.403 +38011,2025-03-11T19:18:01.303282-07:00,1702.0,10.858985,10858.985 +38012,2025-03-11T19:18:12.164429-07:00,1616.0,10.861147,10861.147 +38013,2025-03-11T19:18:23.009245-07:00,1702.0,10.844816,10844.816 +38014,2025-03-11T19:18:33.865277-07:00,1654.0,10.856032,10856.032 +38015,2025-03-11T19:18:44.721441-07:00,1705.0,10.856164,10856.164 +38016,2025-03-11T19:18:55.569239-07:00,1702.0,10.847798,10847.798 +38017,2025-03-11T19:19:06.416485-07:00,1699.0,10.847246,10847.246 +38018,2025-03-11T19:19:17.262238-07:00,1665.0,10.845753,10845.753 +38019,2025-03-11T19:19:28.105810-07:00,1703.0,10.843572,10843.572 +38020,2025-03-11T19:19:38.953278-07:00,1667.0,10.847468,10847.468 +38021,2025-03-11T19:19:49.809358-07:00,1658.0,10.85608,10856.08 +38022,2025-03-11T19:20:00.656857-07:00,1662.0,10.847499,10847.499 +38023,2025-03-11T19:20:11.505989-07:00,1653.0,10.849132,10849.132 +38024,2025-03-11T19:20:22.360250-07:00,1683.0,10.854261,10854.261 +38025,2025-03-11T19:20:33.219780-07:00,1704.0,10.85953,10859.53 +38026,2025-03-11T19:20:44.071246-07:00,1702.0,10.851466,10851.466 +38027,2025-03-11T19:20:54.923480-07:00,1684.0,10.852234,10852.234 +38028,2025-03-11T19:21:05.774251-07:00,1653.0,10.850771,10850.771 +38029,2025-03-11T19:21:16.624745-07:00,1683.0,10.850494,10850.494 +38030,2025-03-11T19:21:27.475240-07:00,1619.0,10.850495,10850.495 +38031,2025-03-11T19:21:38.318502-07:00,1662.0,10.843262,10843.262 +38032,2025-03-11T19:21:49.173396-07:00,1693.0,10.854894,10854.894 +38033,2025-03-11T19:22:00.020506-07:00,1695.0,10.84711,10847.11 +38034,2025-03-11T19:22:10.876314-07:00,1703.0,10.855808,10855.808 +38035,2025-03-11T19:22:21.726240-07:00,1700.0,10.849926,10849.926 +38036,2025-03-11T19:22:32.573550-07:00,1616.0,10.84731,10847.31 +38037,2025-03-11T19:22:43.424173-07:00,1648.0,10.850623,10850.623 +38038,2025-03-11T19:22:54.271953-07:00,1674.0,10.84778,10847.78 +38039,2025-03-11T19:23:05.125606-07:00,1702.0,10.853653,10853.653 +38040,2025-03-11T19:23:15.974616-07:00,1641.0,10.84901,10849.01 +38041,2025-03-11T19:23:26.834326-07:00,1641.0,10.85971,10859.71 +38042,2025-03-11T19:23:37.685581-07:00,1655.0,10.851255,10851.255 +38043,2025-03-11T19:23:48.533684-07:00,1535.0,10.848103,10848.103 +38044,2025-03-11T19:23:59.387466-07:00,1687.0,10.853782,10853.782 +38045,2025-03-11T19:24:10.240657-07:00,1665.0,10.853191,10853.191 +38046,2025-03-11T19:24:21.091249-07:00,1666.0,10.850592,10850.592 +38047,2025-03-11T19:24:31.938304-07:00,1690.0,10.847055,10847.055 +38048,2025-03-11T19:24:42.798782-07:00,1673.0,10.860478,10860.478 +38049,2025-03-11T19:24:53.643307-07:00,1663.0,10.844525,10844.525 +38050,2025-03-11T19:25:04.491531-07:00,1618.0,10.848224,10848.224 +38051,2025-03-11T19:25:15.347532-07:00,1669.0,10.856001,10856.001 +38052,2025-03-11T19:25:26.192558-07:00,1685.0,10.845026,10845.026 +38053,2025-03-11T19:25:37.038298-07:00,1660.0,10.84574,10845.74 +38054,2025-03-11T19:25:47.901499-07:00,1649.0,10.863201,10863.201 +38055,2025-03-11T19:25:58.758234-07:00,1619.0,10.856735,10856.735 +38056,2025-03-11T19:26:09.602251-07:00,1689.0,10.844017,10844.017 +38057,2025-03-11T19:26:20.460654-07:00,1702.0,10.858403,10858.403 +38058,2025-03-11T19:26:31.301227-07:00,1707.0,10.840573,10840.573 +38059,2025-03-11T19:26:42.156453-07:00,1698.0,10.855226,10855.226 +38060,2025-03-11T19:26:53.003532-07:00,1680.0,10.847079,10847.079 +38061,2025-03-11T19:27:03.856250-07:00,1703.0,10.852718,10852.718 +38062,2025-03-11T19:27:14.713245-07:00,1679.0,10.856995,10856.995 +38063,2025-03-11T19:27:25.574240-07:00,1641.0,10.860995,10860.995 +38064,2025-03-11T19:27:36.418351-07:00,1643.0,10.844111,10844.111 +38065,2025-03-11T19:27:47.273382-07:00,1699.0,10.855031,10855.031 +38066,2025-03-11T19:27:58.123482-07:00,1702.0,10.8501,10850.1 +38067,2025-03-11T19:28:08.967251-07:00,1683.0,10.843769,10843.769 +38068,2025-03-11T19:28:19.824634-07:00,1654.0,10.857383,10857.383 +38069,2025-03-11T19:28:30.680361-07:00,1618.0,10.855727,10855.727 +38070,2025-03-11T19:28:41.523649-07:00,1684.0,10.843288,10843.288 +38071,2025-03-11T19:28:52.382616-07:00,1687.0,10.858967,10858.967 +38072,2025-03-11T19:29:03.228467-07:00,1685.0,10.845851,10845.851 +38073,2025-03-11T19:29:14.083847-07:00,1622.0,10.85538,10855.38 +38074,2025-03-11T19:29:24.941550-07:00,1695.0,10.857703,10857.703 +38075,2025-03-11T19:29:35.784294-07:00,1617.0,10.842744,10842.744 +38076,2025-03-11T19:29:46.637244-07:00,1616.0,10.85295,10852.95 +38077,2025-03-11T19:29:57.491240-07:00,1610.0,10.853996,10853.996 +38078,2025-03-11T19:30:08.341249-07:00,1629.0,10.850009,10850.009 +38079,2025-03-11T19:30:19.187532-07:00,1664.0,10.846283,10846.283 +38080,2025-03-11T19:30:30.046501-07:00,1699.0,10.858969,10858.969 +38081,2025-03-11T19:30:40.895799-07:00,1625.0,10.849298,10849.298 +38082,2025-03-11T19:30:51.743255-07:00,1690.0,10.847456,10847.456 +38083,2025-03-11T19:31:02.599245-07:00,1627.0,10.85599,10855.99 +38084,2025-03-11T19:31:13.454674-07:00,1681.0,10.855429,10855.429 +38085,2025-03-11T19:31:24.305244-07:00,1690.0,10.85057,10850.57 +38086,2025-03-11T19:31:35.150901-07:00,1701.0,10.845657,10845.657 +38087,2025-03-11T19:31:46.016344-07:00,1694.0,10.865443,10865.443 +38088,2025-03-11T19:31:56.870337-07:00,1703.0,10.853993,10853.993 +38089,2025-03-11T19:32:07.713795-07:00,1658.0,10.843458,10843.458 +38090,2025-03-11T19:32:18.568523-07:00,1681.0,10.854728,10854.728 +38091,2025-03-11T19:32:29.424066-07:00,1662.0,10.855543,10855.543 +38092,2025-03-11T19:32:40.272725-07:00,1645.0,10.848659,10848.659 +38093,2025-03-11T19:32:51.119642-07:00,1639.0,10.846917,10846.917 +38094,2025-03-11T19:33:01.963581-07:00,1674.0,10.843939,10843.939 +38095,2025-03-11T19:33:12.806246-07:00,1703.0,10.842665,10842.665 +38096,2025-03-11T19:33:23.659629-07:00,1615.0,10.853383,10853.383 +38097,2025-03-11T19:33:34.502250-07:00,1699.0,10.842621,10842.621 +38098,2025-03-11T19:33:45.356398-07:00,1696.0,10.854148,10854.148 +38099,2025-03-11T19:33:56.203515-07:00,1702.0,10.847117,10847.117 +38100,2025-03-11T19:34:07.062238-07:00,1664.0,10.858723,10858.723 +38101,2025-03-11T19:34:17.910538-07:00,1703.0,10.8483,10848.3 +38102,2025-03-11T19:34:28.769473-07:00,1686.0,10.858935,10858.935 +38103,2025-03-11T19:34:39.609807-07:00,1663.0,10.840334,10840.334 +38104,2025-03-11T19:34:50.461675-07:00,1681.0,10.851868,10851.868 +38105,2025-03-11T19:35:01.299456-07:00,1659.0,10.837781,10837.781 +38106,2025-03-11T19:35:12.147245-07:00,1675.0,10.847789,10847.789 +38107,2025-03-11T19:35:22.994150-07:00,1641.0,10.846905,10846.905 +38108,2025-03-11T19:35:33.838589-07:00,1650.0,10.844439,10844.439 +38109,2025-03-11T19:35:44.685488-07:00,1694.0,10.846899,10846.899 +38110,2025-03-11T19:35:55.540486-07:00,1645.0,10.854998,10854.998 +38111,2025-03-11T19:36:06.386352-07:00,1663.0,10.845866,10845.866 +38112,2025-03-11T19:36:17.239248-07:00,1673.0,10.852896,10852.896 +38113,2025-03-11T19:36:28.096989-07:00,1700.0,10.857741,10857.741 +38114,2025-03-11T19:36:38.946473-07:00,1659.0,10.849484,10849.484 +38115,2025-03-11T19:36:49.803227-07:00,1700.0,10.856754,10856.754 +38116,2025-03-11T19:37:00.657223-07:00,1701.0,10.853996,10853.996 +38117,2025-03-11T19:37:11.508227-07:00,1680.0,10.851004,10851.004 +38118,2025-03-11T19:37:22.356240-07:00,1658.0,10.848013,10848.013 +38119,2025-03-11T19:37:33.205740-07:00,1701.0,10.8495,10849.5 +38120,2025-03-11T19:37:44.061238-07:00,1698.0,10.855498,10855.498 +38121,2025-03-11T19:37:54.916301-07:00,1664.0,10.855063,10855.063 +38122,2025-03-11T19:38:05.759227-07:00,1705.0,10.842926,10842.926 +38123,2025-03-11T19:38:16.609554-07:00,1693.0,10.850327,10850.327 +38124,2025-03-11T19:38:27.461530-07:00,1626.0,10.851976,10851.976 +38125,2025-03-11T19:38:38.312602-07:00,1701.0,10.851072,10851.072 +38126,2025-03-11T19:38:49.170823-07:00,1704.0,10.858221,10858.221 +38127,2025-03-11T19:39:00.014468-07:00,1695.0,10.843645,10843.645 +38128,2025-03-11T19:39:10.866687-07:00,1623.0,10.852219,10852.219 +38129,2025-03-11T19:39:21.716533-07:00,1615.0,10.849846,10849.846 +38130,2025-03-11T19:39:32.564240-07:00,1637.0,10.847707,10847.707 +38131,2025-03-11T19:39:43.418248-07:00,1620.0,10.854008,10854.008 +38132,2025-03-11T19:39:54.263246-07:00,1636.0,10.844998,10844.998 +38133,2025-03-11T19:40:05.121325-07:00,1707.0,10.858079,10858.079 +38134,2025-03-11T19:40:15.960178-07:00,1610.0,10.838853,10838.853 +38135,2025-03-11T19:40:26.812745-07:00,1703.0,10.852567,10852.567 +38136,2025-03-11T19:40:37.661664-07:00,1685.0,10.848919,10848.919 +38137,2025-03-11T19:40:48.506296-07:00,1689.0,10.844632,10844.632 +38138,2025-03-11T19:40:59.350235-07:00,1648.0,10.843939,10843.939 +38139,2025-03-11T19:41:10.194376-07:00,1658.0,10.844141,10844.141 +38140,2025-03-11T19:41:21.044693-07:00,1629.0,10.850317,10850.317 +38141,2025-03-11T19:41:31.895462-07:00,1677.0,10.850769,10850.769 +38142,2025-03-11T19:41:42.741537-07:00,1617.0,10.846075,10846.075 +38143,2025-03-11T19:41:53.582283-07:00,1655.0,10.840746,10840.746 +38144,2025-03-11T19:42:04.430498-07:00,1659.0,10.848215,10848.215 +38145,2025-03-11T19:42:15.275241-07:00,1671.0,10.844743,10844.743 +38146,2025-03-11T19:42:26.125488-07:00,1703.0,10.850247,10850.247 +38147,2025-03-11T19:42:36.978843-07:00,1693.0,10.853355,10853.355 +38148,2025-03-11T19:42:47.820537-07:00,1660.0,10.841694,10841.694 +38149,2025-03-11T19:42:58.668601-07:00,1646.0,10.848064,10848.064 +38150,2025-03-11T19:43:09.525310-07:00,1657.0,10.856709,10856.709 +38151,2025-03-11T19:43:20.359310-07:00,1661.0,10.834,10834.0 +38152,2025-03-11T19:43:31.210274-07:00,1699.0,10.850964,10850.964 +38153,2025-03-11T19:43:42.058246-07:00,1670.0,10.847972,10847.972 +38154,2025-03-11T19:43:52.901423-07:00,1680.0,10.843177,10843.177 +38155,2025-03-11T19:44:03.752249-07:00,1679.0,10.850826,10850.826 +38156,2025-03-11T19:44:14.598652-07:00,1659.0,10.846403,10846.403 +38157,2025-03-11T19:44:25.451595-07:00,1664.0,10.852943,10852.943 +38158,2025-03-11T19:44:36.295387-07:00,1659.0,10.843792,10843.792 +38159,2025-03-11T19:44:47.145295-07:00,1616.0,10.849908,10849.908 +38160,2025-03-11T19:44:57.994248-07:00,1673.0,10.848953,10848.953 +38161,2025-03-11T19:45:08.837251-07:00,1700.0,10.843003,10843.003 +38162,2025-03-11T19:45:19.687519-07:00,1632.0,10.850268,10850.268 +38163,2025-03-11T19:45:30.547252-07:00,1610.0,10.859733,10859.733 +38164,2025-03-11T19:45:41.392606-07:00,1655.0,10.845354,10845.354 +38165,2025-03-11T19:45:52.245451-07:00,1651.0,10.852845,10852.845 +38166,2025-03-11T19:46:03.094669-07:00,1629.0,10.849218,10849.218 +38167,2025-03-11T19:46:13.937242-07:00,1679.0,10.842573,10842.573 +38168,2025-03-11T19:46:24.789245-07:00,1680.0,10.852003,10852.003 +38169,2025-03-11T19:46:35.633219-07:00,1614.0,10.843974,10843.974 +38170,2025-03-11T19:46:46.482038-07:00,1627.0,10.848819,10848.819 +38171,2025-03-11T19:46:57.336248-07:00,1703.0,10.85421,10854.21 +38172,2025-03-11T19:47:08.179862-07:00,1655.0,10.843614,10843.614 +38173,2025-03-11T19:47:19.031505-07:00,1664.0,10.851643,10851.643 +38174,2025-03-11T19:47:29.873518-07:00,1668.0,10.842013,10842.013 +38175,2025-03-11T19:47:40.730548-07:00,1668.0,10.85703,10857.03 +38176,2025-03-11T19:47:51.575462-07:00,1617.0,10.844914,10844.914 +38177,2025-03-11T19:48:02.424507-07:00,1675.0,10.849045,10849.045 +38178,2025-03-11T19:48:13.273390-07:00,1648.0,10.848883,10848.883 +38179,2025-03-11T19:48:24.109530-07:00,1629.0,10.83614,10836.14 +38180,2025-03-11T19:48:34.954382-07:00,1678.0,10.844852,10844.852 +38181,2025-03-11T19:48:45.801044-07:00,1673.0,10.846662,10846.662 +38182,2025-03-11T19:48:56.644453-07:00,1637.0,10.843409,10843.409 +38183,2025-03-11T19:49:07.489223-07:00,1663.0,10.84477,10844.77 +38184,2025-03-11T19:49:18.325723-07:00,1705.0,10.8365,10836.5 +38185,2025-03-11T19:49:29.170093-07:00,1682.0,10.84437,10844.37 +38186,2025-03-11T19:49:40.017714-07:00,1632.0,10.847621,10847.621 +38187,2025-03-11T19:49:50.867681-07:00,1622.0,10.849967,10849.967 +38188,2025-03-11T19:50:01.714227-07:00,1648.0,10.846546,10846.546 +38189,2025-03-11T19:50:12.560251-07:00,1703.0,10.846024,10846.024 +38190,2025-03-11T19:50:23.402367-07:00,1697.0,10.842116,10842.116 +38191,2025-03-11T19:50:34.250490-07:00,1651.0,10.848123,10848.123 +38192,2025-03-11T19:50:45.090277-07:00,1685.0,10.839787,10839.787 +38193,2025-03-11T19:50:55.940489-07:00,1701.0,10.850212,10850.212 +38194,2025-03-11T19:51:06.784777-07:00,1661.0,10.844288,10844.288 +38195,2025-03-11T19:51:17.628246-07:00,1673.0,10.843469,10843.469 +38196,2025-03-11T19:51:28.471579-07:00,1701.0,10.843333,10843.333 +38197,2025-03-11T19:51:39.314283-07:00,1653.0,10.842704,10842.704 +38198,2025-03-11T19:51:50.153722-07:00,1655.0,10.839439,10839.439 +38199,2025-03-11T19:52:01.000231-07:00,1706.0,10.846509,10846.509 +38200,2025-03-11T19:52:11.851485-07:00,1699.0,10.851254,10851.254 +38201,2025-03-11T19:52:22.698752-07:00,1698.0,10.847267,10847.267 +38202,2025-03-11T19:52:33.542774-07:00,1603.0,10.844022,10844.022 +38203,2025-03-11T19:52:44.384231-07:00,1674.0,10.841457,10841.457 +38204,2025-03-11T19:52:55.229319-07:00,1641.0,10.845088,10845.088 +38205,2025-03-11T19:53:06.081223-07:00,1696.0,10.851904,10851.904 +38206,2025-03-11T19:53:16.926249-07:00,1621.0,10.845026,10845.026 +38207,2025-03-11T19:53:27.765825-07:00,1654.0,10.839576,10839.576 +38208,2025-03-11T19:53:38.620587-07:00,1690.0,10.854762,10854.762 +38209,2025-03-11T19:53:49.466465-07:00,1655.0,10.845878,10845.878 +38210,2025-03-11T19:54:00.310241-07:00,1666.0,10.843776,10843.776 +38211,2025-03-11T19:54:11.157538-07:00,1654.0,10.847297,10847.297 +38212,2025-03-11T19:54:21.995600-07:00,1664.0,10.838062,10838.062 +38213,2025-03-11T19:54:32.845722-07:00,1627.0,10.850122,10850.122 +38214,2025-03-11T19:54:43.686429-07:00,1653.0,10.840707,10840.707 +38215,2025-03-11T19:54:54.528249-07:00,1659.0,10.84182,10841.82 +38216,2025-03-11T19:55:05.374581-07:00,1684.0,10.846332,10846.332 +38217,2025-03-11T19:55:16.211605-07:00,1694.0,10.837024,10837.024 +38218,2025-03-11T19:55:27.053287-07:00,1666.0,10.841682,10841.682 +38219,2025-03-11T19:55:37.897235-07:00,1691.0,10.843948,10843.948 +38220,2025-03-11T19:55:48.729385-07:00,1706.0,10.83215,10832.15 +38221,2025-03-11T19:55:59.573750-07:00,1609.0,10.844365,10844.365 +38222,2025-03-11T19:56:10.416190-07:00,1618.0,10.84244,10842.44 +38223,2025-03-11T19:56:21.253249-07:00,1659.0,10.837059,10837.059 +38224,2025-03-11T19:56:32.101451-07:00,1668.0,10.848202,10848.202 +38225,2025-03-11T19:56:42.935419-07:00,1606.0,10.833968,10833.968 +38226,2025-03-11T19:56:53.776263-07:00,1707.0,10.840844,10840.844 +38227,2025-03-11T19:57:04.620973-07:00,1697.0,10.84471,10844.71 +38228,2025-03-11T19:57:15.464484-07:00,1666.0,10.843511,10843.511 +38229,2025-03-11T19:57:26.305278-07:00,1699.0,10.840794,10840.794 +38230,2025-03-11T19:57:37.153678-07:00,1681.0,10.8484,10848.4 +38231,2025-03-11T19:57:48.001471-07:00,1667.0,10.847793,10847.793 +38232,2025-03-11T19:57:58.841244-07:00,1616.0,10.839773,10839.773 +38233,2025-03-11T19:58:09.685822-07:00,1661.0,10.844578,10844.578 +38234,2025-03-11T19:58:20.527550-07:00,1703.0,10.841728,10841.728 +38235,2025-03-11T19:58:31.374702-07:00,1632.0,10.847152,10847.152 +38236,2025-03-11T19:58:42.212251-07:00,1697.0,10.837549,10837.549 +38237,2025-03-11T19:58:53.048417-07:00,1700.0,10.836166,10836.166 +38238,2025-03-11T19:59:03.898384-07:00,1628.0,10.849967,10849.967 +38239,2025-03-11T19:59:14.746223-07:00,1625.0,10.847839,10847.839 +38240,2025-03-11T19:59:25.589250-07:00,1616.0,10.843027,10843.027 +38241,2025-03-11T19:59:36.429488-07:00,1691.0,10.840238,10840.238 +38242,2025-03-11T19:59:47.264522-07:00,1653.0,10.835034,10835.034 +38243,2025-03-11T19:59:58.107281-07:00,1655.0,10.842759,10842.759 +38244,2025-03-11T20:00:08.958397-07:00,1616.0,10.851116,10851.116 +38245,2025-03-11T20:00:19.800094-07:00,1695.0,10.841697,10841.697 +38246,2025-03-11T20:00:30.637447-07:00,1657.0,10.837353,10837.353 +38247,2025-03-11T20:00:41.481322-07:00,1707.0,10.843875,10843.875 +38248,2025-03-11T20:00:52.323397-07:00,1701.0,10.842075,10842.075 +38249,2025-03-11T20:01:03.162803-07:00,1707.0,10.839406,10839.406 +38250,2025-03-11T20:01:14.005391-07:00,1707.0,10.842588,10842.588 +38251,2025-03-11T20:01:24.841519-07:00,1674.0,10.836128,10836.128 +38252,2025-03-11T20:01:35.691225-07:00,1680.0,10.849706,10849.706 +38253,2025-03-11T20:01:46.529320-07:00,1663.0,10.838095,10838.095 +38254,2025-03-11T20:01:57.376458-07:00,1693.0,10.847138,10847.138 +38255,2025-03-11T20:02:08.225620-07:00,1703.0,10.849162,10849.162 +38256,2025-03-11T20:02:19.072563-07:00,1662.0,10.846943,10846.943 +38257,2025-03-11T20:02:29.925515-07:00,1618.0,10.852952,10852.952 +38258,2025-03-11T20:02:40.774303-07:00,1651.0,10.848788,10848.788 +38259,2025-03-11T20:02:51.620242-07:00,1625.0,10.845939,10845.939 +38260,2025-03-11T20:03:02.462244-07:00,1662.0,10.842002,10842.002 +38261,2025-03-11T20:03:24.157304-07:00,1665.0,21.69506,21695.06 +38262,2025-03-11T20:03:35.003556-07:00,1703.0,10.846252,10846.252 +38263,2025-03-11T20:03:45.841241-07:00,1648.0,10.837685,10837.685 +38264,2025-03-11T20:03:56.680257-07:00,1695.0,10.839016,10839.016 +38265,2025-03-11T20:04:07.530248-07:00,1678.0,10.849991,10849.991 +38266,2025-03-11T20:04:18.366016-07:00,1618.0,10.835768,10835.768 +38267,2025-03-11T20:04:29.207245-07:00,1694.0,10.841229,10841.229 +38268,2025-03-11T20:04:40.047246-07:00,1665.0,10.840001,10840.001 +38269,2025-03-11T20:04:50.894245-07:00,1678.0,10.846999,10846.999 +38270,2025-03-11T20:05:01.732587-07:00,1648.0,10.838342,10838.342 +38271,2025-03-11T20:05:12.577242-07:00,1657.0,10.844655,10844.655 +38272,2025-03-11T20:05:23.418747-07:00,1701.0,10.841505,10841.505 +38273,2025-03-11T20:05:34.263215-07:00,1709.0,10.844468,10844.468 +38274,2025-03-11T20:05:45.105187-07:00,1653.0,10.841972,10841.972 +38275,2025-03-11T20:05:55.953272-07:00,1702.0,10.848085,10848.085 +38276,2025-03-11T20:06:06.796250-07:00,1699.0,10.842978,10842.978 +38277,2025-03-11T20:06:17.634558-07:00,1618.0,10.838308,10838.308 +38278,2025-03-11T20:06:28.479245-07:00,1633.0,10.844687,10844.687 +38279,2025-03-11T20:06:39.329523-07:00,1638.0,10.850278,10850.278 +38280,2025-03-11T20:06:50.174558-07:00,1673.0,10.845035,10845.035 +38281,2025-03-11T20:07:01.015223-07:00,1619.0,10.840665,10840.665 +38282,2025-03-11T20:07:11.770259-07:00,1671.0,10.755036,10755.036 +38283,2025-03-11T20:07:22.621250-07:00,1658.0,10.850991,10850.991 +38284,2025-03-11T20:07:33.461513-07:00,1621.0,10.840263,10840.263 +38285,2025-03-11T20:07:44.311813-07:00,1661.0,10.8503,10850.3 +38286,2025-03-11T20:07:55.163745-07:00,1709.0,10.851932,10851.932 +38287,2025-03-11T20:08:06.008760-07:00,1709.0,10.845015,10845.015 +38288,2025-03-11T20:08:16.850247-07:00,1651.0,10.841487,10841.487 +38289,2025-03-11T20:08:27.704251-07:00,1666.0,10.854004,10854.004 +38290,2025-03-11T20:08:38.540530-07:00,1697.0,10.836279,10836.279 +38291,2025-03-11T20:08:49.391639-07:00,1708.0,10.851109,10851.109 +38292,2025-03-11T20:09:00.233657-07:00,1674.0,10.842018,10842.018 +38293,2025-03-11T20:09:11.085415-07:00,1673.0,10.851758,10851.758 +38294,2025-03-11T20:09:21.925256-07:00,1686.0,10.839841,10839.841 +38295,2025-03-11T20:09:32.774434-07:00,1657.0,10.849178,10849.178 +38296,2025-03-11T20:09:43.612768-07:00,1698.0,10.838334,10838.334 +38297,2025-03-11T20:09:54.456494-07:00,1707.0,10.843726,10843.726 +38298,2025-03-11T20:10:05.308420-07:00,1655.0,10.851926,10851.926 +38299,2025-03-11T20:10:16.147257-07:00,1693.0,10.838837,10838.837 +38300,2025-03-11T20:10:26.994255-07:00,1696.0,10.846998,10846.998 +38301,2025-03-11T20:10:37.843261-07:00,1620.0,10.849006,10849.006 +38302,2025-03-11T20:10:48.675681-07:00,1684.0,10.83242,10832.42 +38303,2025-03-11T20:10:59.524251-07:00,1682.0,10.84857,10848.57 +38304,2025-03-11T20:11:10.362711-07:00,1661.0,10.83846,10838.46 +38305,2025-03-11T20:11:21.202029-07:00,1658.0,10.839318,10839.318 +38306,2025-03-11T20:11:32.042246-07:00,1619.0,10.840217,10840.217 +38307,2025-03-11T20:11:42.880254-07:00,1691.0,10.838008,10838.008 +38308,2025-03-11T20:11:53.719502-07:00,1625.0,10.839248,10839.248 +38309,2025-03-11T20:12:04.561460-07:00,1650.0,10.841958,10841.958 +38310,2025-03-11T20:12:15.405366-07:00,1691.0,10.843906,10843.906 +38311,2025-03-11T20:12:26.242486-07:00,1611.0,10.83712,10837.12 +38312,2025-03-11T20:12:37.076632-07:00,1708.0,10.834146,10834.146 +38313,2025-03-11T20:12:47.910252-07:00,1698.0,10.83362,10833.62 +38314,2025-03-11T20:12:58.759762-07:00,1612.0,10.84951,10849.51 +38315,2025-03-11T20:13:09.599251-07:00,1631.0,10.839489,10839.489 +38316,2025-03-11T20:13:20.432341-07:00,1705.0,10.83309,10833.09 +38317,2025-03-11T20:13:31.274291-07:00,1703.0,10.84195,10841.95 +38318,2025-03-11T20:13:42.114397-07:00,1677.0,10.840106,10840.106 +38319,2025-03-11T20:13:52.962621-07:00,1649.0,10.848224,10848.224 +38320,2025-03-11T20:14:03.800490-07:00,1707.0,10.837869,10837.869 +38321,2025-03-11T20:14:14.649381-07:00,1674.0,10.848891,10848.891 +38322,2025-03-11T20:14:25.487245-07:00,1680.0,10.837864,10837.864 +38323,2025-03-11T20:14:36.330383-07:00,1681.0,10.843138,10843.138 +38324,2025-03-11T20:14:47.173628-07:00,1701.0,10.843245,10843.245 +38325,2025-03-11T20:14:58.020557-07:00,1619.0,10.846929,10846.929 +38326,2025-03-11T20:15:08.861340-07:00,1631.0,10.840783,10840.783 +38327,2025-03-11T20:15:19.708238-07:00,1669.0,10.846898,10846.898 +38328,2025-03-11T20:15:30.546602-07:00,1702.0,10.838364,10838.364 +38329,2025-03-11T20:15:41.394270-07:00,1677.0,10.847668,10847.668 +38330,2025-03-11T20:15:52.236743-07:00,1703.0,10.842473,10842.473 +38331,2025-03-11T20:16:03.085311-07:00,1690.0,10.848568,10848.568 +38332,2025-03-11T20:16:13.935498-07:00,1630.0,10.850187,10850.187 +38333,2025-03-11T20:16:24.773410-07:00,1628.0,10.837912,10837.912 +38334,2025-03-11T20:16:35.617525-07:00,1705.0,10.844115,10844.115 +38335,2025-03-11T20:16:46.465821-07:00,1682.0,10.848296,10848.296 +38336,2025-03-11T20:16:57.311379-07:00,1655.0,10.845558,10845.558 +38337,2025-03-11T20:17:08.161745-07:00,1706.0,10.850366,10850.366 +38338,2025-03-11T20:17:19.005255-07:00,1709.0,10.84351,10843.51 +38339,2025-03-11T20:17:29.849502-07:00,1631.0,10.844247,10844.247 +38340,2025-03-11T20:17:40.701600-07:00,1689.0,10.852098,10852.098 +38341,2025-03-11T20:17:47.551886-07:00,1706.0,6.850286,6850.286 +38342,2025-03-11T20:17:51.543308-07:00,1661.0,3.991422,3991.422 +38343,2025-03-11T20:18:02.384479-07:00,1701.0,10.841171,10841.171 +38344,2025-03-11T20:18:13.228505-07:00,1689.0,10.844026,10844.026 +38345,2025-03-11T20:18:24.064349-07:00,1703.0,10.835844,10835.844 +38346,2025-03-11T20:18:34.908683-07:00,1706.0,10.844334,10844.334 +38347,2025-03-11T20:18:45.749253-07:00,1622.0,10.84057,10840.57 +38348,2025-03-11T20:18:56.587366-07:00,1669.0,10.838113,10838.113 +38349,2025-03-11T20:19:07.436622-07:00,1658.0,10.849256,10849.256 +38350,2025-03-11T20:19:18.279090-07:00,1683.0,10.842468,10842.468 +38351,2025-03-11T20:19:29.119477-07:00,1654.0,10.840387,10840.387 +38352,2025-03-11T20:19:39.971252-07:00,1677.0,10.851775,10851.775 +38353,2025-03-11T20:19:50.818251-07:00,1704.0,10.846999,10846.999 +38354,2025-03-11T20:20:01.658287-07:00,1648.0,10.840036,10840.036 +38355,2025-03-11T20:20:12.500324-07:00,1663.0,10.842037,10842.037 +38356,2025-03-11T20:20:23.343259-07:00,1693.0,10.842935,10842.935 +38357,2025-03-11T20:20:34.181559-07:00,1706.0,10.8383,10838.3 +38358,2025-03-11T20:20:45.024590-07:00,1645.0,10.843031,10843.031 +38359,2025-03-11T20:20:55.863308-07:00,1683.0,10.838718,10838.718 +38360,2025-03-11T20:21:06.697235-07:00,1707.0,10.833927,10833.927 +38361,2025-03-11T20:21:17.538312-07:00,1667.0,10.841077,10841.077 +38362,2025-03-11T20:21:28.386810-07:00,1668.0,10.848498,10848.498 +38363,2025-03-11T20:21:39.223251-07:00,1669.0,10.836441,10836.441 +38364,2025-03-11T20:21:50.059496-07:00,1707.0,10.836245,10836.245 +38365,2025-03-11T20:22:00.902592-07:00,1708.0,10.843096,10843.096 +38366,2025-03-11T20:22:11.746168-07:00,1664.0,10.843576,10843.576 +38367,2025-03-11T20:22:22.585305-07:00,1609.0,10.839137,10839.137 +38368,2025-03-11T20:22:33.421257-07:00,1618.0,10.835952,10835.952 +38369,2025-03-11T20:22:44.263563-07:00,1703.0,10.842306,10842.306 +38370,2025-03-11T20:22:55.107290-07:00,1647.0,10.843727,10843.727 +38371,2025-03-11T20:23:05.943252-07:00,1640.0,10.835962,10835.962 +38372,2025-03-11T20:23:16.798247-07:00,1612.0,10.854995,10854.995 +38373,2025-03-11T20:23:27.632483-07:00,1691.0,10.834236,10834.236 +38374,2025-03-11T20:23:38.478395-07:00,1677.0,10.845912,10845.912 +38375,2025-03-11T20:23:49.319252-07:00,1666.0,10.840857,10840.857 +38376,2025-03-11T20:24:00.153306-07:00,1680.0,10.834054,10834.054 +38377,2025-03-11T20:24:10.991943-07:00,1621.0,10.838637,10838.637 +38378,2025-03-11T20:24:21.830247-07:00,1669.0,10.838304,10838.304 +38379,2025-03-11T20:24:32.674467-07:00,1623.0,10.84422,10844.22 +38380,2025-03-11T20:24:43.515588-07:00,1691.0,10.841121,10841.121 +38381,2025-03-11T20:24:54.352304-07:00,1655.0,10.836716,10836.716 +38382,2025-03-11T20:25:05.200473-07:00,1653.0,10.848169,10848.169 +38383,2025-03-11T20:25:16.041257-07:00,1618.0,10.840784,10840.784 +38384,2025-03-11T20:25:26.874570-07:00,1708.0,10.833313,10833.313 +38385,2025-03-11T20:25:37.720304-07:00,1707.0,10.845734,10845.734 +38386,2025-03-11T20:25:48.561251-07:00,1664.0,10.840947,10840.947 +38387,2025-03-11T20:25:59.408357-07:00,1663.0,10.847106,10847.106 +38388,2025-03-11T20:26:10.248618-07:00,1697.0,10.840261,10840.261 +38389,2025-03-11T20:26:21.086672-07:00,1660.0,10.838054,10838.054 +38390,2025-03-11T20:26:31.929230-07:00,1710.0,10.842558,10842.558 +38391,2025-03-11T20:26:42.765257-07:00,1625.0,10.836027,10836.027 +38392,2025-03-11T20:26:53.611839-07:00,1625.0,10.846582,10846.582 +38393,2025-03-11T20:27:04.441234-07:00,1634.0,10.829395,10829.395 +38394,2025-03-11T20:27:15.285250-07:00,1689.0,10.844016,10844.016 +38395,2025-03-11T20:27:26.123016-07:00,1698.0,10.837766,10837.766 +38396,2025-03-11T20:27:36.959472-07:00,1697.0,10.836456,10836.456 +38397,2025-03-11T20:27:47.793488-07:00,1697.0,10.834016,10834.016 +38398,2025-03-11T20:27:58.639412-07:00,1618.0,10.845924,10845.924 +38399,2025-03-11T20:28:09.483075-07:00,1616.0,10.843663,10843.663 +38400,2025-03-11T20:28:20.319230-07:00,1689.0,10.836155,10836.155 +38401,2025-03-11T20:28:31.164250-07:00,1646.0,10.84502,10845.02 +38402,2025-03-11T20:28:42.009779-07:00,1653.0,10.845529,10845.529 +38403,2025-03-11T20:28:52.845396-07:00,1678.0,10.835617,10835.617 +38404,2025-03-11T20:29:03.692255-07:00,1707.0,10.846859,10846.859 +38405,2025-03-11T20:29:14.533509-07:00,1706.0,10.841254,10841.254 +38406,2025-03-11T20:29:25.374259-07:00,1705.0,10.84075,10840.75 +38407,2025-03-11T20:29:36.222584-07:00,1651.0,10.848325,10848.325 +38408,2025-03-11T20:29:47.064293-07:00,1643.0,10.841709,10841.709 +38409,2025-03-11T20:29:57.908253-07:00,1680.0,10.84396,10843.96 +38410,2025-03-11T20:30:08.758706-07:00,1653.0,10.850453,10850.453 +38411,2025-03-11T20:30:19.601256-07:00,1707.0,10.84255,10842.55 +38412,2025-03-11T20:30:30.437653-07:00,1690.0,10.836397,10836.397 +38413,2025-03-11T20:30:41.282486-07:00,1696.0,10.844833,10844.833 +38414,2025-03-11T20:30:52.125409-07:00,1706.0,10.842923,10842.923 +38415,2025-03-11T20:31:02.970258-07:00,1703.0,10.844849,10844.849 +38416,2025-03-11T20:31:13.808797-07:00,1682.0,10.838539,10838.539 +38417,2025-03-11T20:31:24.653286-07:00,1654.0,10.844489,10844.489 +38418,2025-03-11T20:31:35.491352-07:00,1616.0,10.838066,10838.066 +38419,2025-03-11T20:31:46.335068-07:00,1703.0,10.843716,10843.716 +38420,2025-03-11T20:31:57.164240-07:00,1684.0,10.829172,10829.172 +38421,2025-03-11T20:32:08.013464-07:00,1663.0,10.849224,10849.224 +38422,2025-03-11T20:32:18.847382-07:00,1651.0,10.833918,10833.918 +38423,2025-03-11T20:32:29.696746-07:00,1648.0,10.849364,10849.364 +38424,2025-03-11T20:32:40.531387-07:00,1706.0,10.834641,10834.641 +38425,2025-03-11T20:32:51.379304-07:00,1686.0,10.847917,10847.917 +38426,2025-03-11T20:33:02.234934-07:00,1648.0,10.85563,10855.63 +38427,2025-03-11T20:33:13.072600-07:00,1689.0,10.837666,10837.666 +38428,2025-03-11T20:33:23.927458-07:00,1616.0,10.854858,10854.858 +38429,2025-03-11T20:33:34.769632-07:00,1683.0,10.842174,10842.174 +38430,2025-03-11T20:33:45.619424-07:00,1650.0,10.849792,10849.792 +38431,2025-03-11T20:33:56.463240-07:00,1679.0,10.843816,10843.816 +38432,2025-03-11T20:34:07.309457-07:00,1659.0,10.846217,10846.217 +38433,2025-03-11T20:34:18.154254-07:00,1698.0,10.844797,10844.797 +38434,2025-03-11T20:34:28.996278-07:00,1710.0,10.842024,10842.024 +38435,2025-03-11T20:34:39.838521-07:00,1676.0,10.842243,10842.243 +38436,2025-03-11T20:34:50.679235-07:00,1706.0,10.840714,10840.714 +38437,2025-03-11T20:35:01.526230-07:00,1680.0,10.846995,10846.995 +38438,2025-03-11T20:35:12.365562-07:00,1663.0,10.839332,10839.332 +38439,2025-03-11T20:35:23.212611-07:00,1702.0,10.847049,10847.049 +38440,2025-03-11T20:35:34.046714-07:00,1675.0,10.834103,10834.103 +38441,2025-03-11T20:35:44.898517-07:00,1656.0,10.851803,10851.803 +38442,2025-03-11T20:35:55.743255-07:00,1693.0,10.844738,10844.738 +38443,2025-03-11T20:36:06.580264-07:00,1651.0,10.837009,10837.009 +38444,2025-03-11T20:36:17.423774-07:00,1691.0,10.84351,10843.51 +38445,2025-03-11T20:36:28.266504-07:00,1701.0,10.84273,10842.73 +38446,2025-03-11T20:36:39.109418-07:00,1661.0,10.842914,10842.914 +38447,2025-03-11T20:36:49.953248-07:00,1696.0,10.84383,10843.83 +38448,2025-03-11T20:37:00.795147-07:00,1662.0,10.841899,10841.899 +38449,2025-03-11T20:37:11.630545-07:00,1701.0,10.835398,10835.398 +38450,2025-03-11T20:37:22.475390-07:00,1660.0,10.844845,10844.845 +38451,2025-03-11T20:37:33.319240-07:00,1614.0,10.84385,10843.85 +38452,2025-03-11T20:37:44.162932-07:00,1654.0,10.843692,10843.692 +38453,2025-03-11T20:37:55.002246-07:00,1622.0,10.839314,10839.314 +38454,2025-03-11T20:38:05.847362-07:00,1629.0,10.845116,10845.116 +38455,2025-03-11T20:38:16.691477-07:00,1706.0,10.844115,10844.115 +38456,2025-03-11T20:38:27.528517-07:00,1699.0,10.83704,10837.04 +38457,2025-03-11T20:38:38.368334-07:00,1687.0,10.839817,10839.817 +38458,2025-03-11T20:38:49.209760-07:00,1706.0,10.841426,10841.426 +38459,2025-03-11T20:39:00.047249-07:00,1694.0,10.837489,10837.489 +38460,2025-03-11T20:39:10.895830-07:00,1707.0,10.848581,10848.581 +38461,2025-03-11T20:39:21.738296-07:00,1703.0,10.842466,10842.466 +38462,2025-03-11T20:39:32.575257-07:00,1673.0,10.836961,10836.961 +38463,2025-03-11T20:39:43.413742-07:00,1651.0,10.838485,10838.485 +38464,2025-03-11T20:39:54.251128-07:00,1702.0,10.837386,10837.386 +38465,2025-03-11T20:40:05.083230-07:00,1710.0,10.832102,10832.102 +38466,2025-03-11T20:40:15.922520-07:00,1695.0,10.83929,10839.29 +38467,2025-03-11T20:40:26.764192-07:00,1703.0,10.841672,10841.672 +38468,2025-03-11T20:40:37.599797-07:00,1676.0,10.835605,10835.605 +38469,2025-03-11T20:40:48.437584-07:00,1705.0,10.837787,10837.787 +38470,2025-03-11T20:40:59.269253-07:00,1697.0,10.831669,10831.669 +38471,2025-03-11T20:41:10.113463-07:00,1614.0,10.84421,10844.21 +38472,2025-03-11T20:41:20.953260-07:00,1665.0,10.839797,10839.797 +38473,2025-03-11T20:41:31.797811-07:00,1710.0,10.844551,10844.551 +38474,2025-03-11T20:41:42.630300-07:00,1664.0,10.832489,10832.489 +38475,2025-03-11T20:41:53.475391-07:00,1669.0,10.845091,10845.091 +38476,2025-03-11T20:42:04.316625-07:00,1709.0,10.841234,10841.234 +38477,2025-03-11T20:42:15.161041-07:00,1700.0,10.844416,10844.416 +38478,2025-03-11T20:42:26.000503-07:00,1673.0,10.839462,10839.462 +38479,2025-03-11T20:42:36.830621-07:00,1617.0,10.830118,10830.118 +38480,2025-03-11T20:42:47.682465-07:00,1647.0,10.851844,10851.844 +38481,2025-03-11T20:42:58.515252-07:00,1648.0,10.832787,10832.787 +38482,2025-03-11T20:43:09.354268-07:00,1662.0,10.839016,10839.016 +38483,2025-03-11T20:43:20.190714-07:00,1669.0,10.836446,10836.446 +38484,2025-03-11T20:43:31.037743-07:00,1666.0,10.847029,10847.029 +38485,2025-03-11T20:43:41.877594-07:00,1706.0,10.839851,10839.851 +38486,2025-03-11T20:43:52.707578-07:00,1680.0,10.829984,10829.984 +38487,2025-03-11T20:44:03.551436-07:00,1701.0,10.843858,10843.858 +38488,2025-03-11T20:44:14.389257-07:00,1699.0,10.837821,10837.821 +38489,2025-03-11T20:44:25.232732-07:00,1657.0,10.843475,10843.475 +38490,2025-03-11T20:44:36.068561-07:00,1669.0,10.835829,10835.829 +38491,2025-03-11T20:44:46.917584-07:00,1665.0,10.849023,10849.023 +38492,2025-03-11T20:44:57.750058-07:00,1625.0,10.832474,10832.474 +38493,2025-03-11T20:45:08.590251-07:00,1653.0,10.840193,10840.193 +38494,2025-03-11T20:45:19.437642-07:00,1653.0,10.847391,10847.391 +38495,2025-03-11T20:45:30.276510-07:00,1683.0,10.838868,10838.868 +38496,2025-03-11T20:45:41.117345-07:00,1667.0,10.840835,10840.835 +38497,2025-03-11T20:45:51.948879-07:00,1664.0,10.831534,10831.534 +38498,2025-03-11T20:46:02.790251-07:00,1677.0,10.841372,10841.372 +38499,2025-03-11T20:46:13.628244-07:00,1623.0,10.837993,10837.993 +38500,2025-03-11T20:46:24.471258-07:00,1697.0,10.843014,10843.014 +38501,2025-03-11T20:46:35.303276-07:00,1665.0,10.832018,10832.018 +38502,2025-03-11T20:46:46.148287-07:00,1658.0,10.845011,10845.011 +38503,2025-03-11T20:46:56.995401-07:00,1705.0,10.847114,10847.114 +38504,2025-03-11T20:47:07.827602-07:00,1695.0,10.832201,10832.201 +38505,2025-03-11T20:47:18.669255-07:00,1709.0,10.841653,10841.653 +38506,2025-03-11T20:47:29.513617-07:00,1703.0,10.844362,10844.362 +38507,2025-03-11T20:47:40.357256-07:00,1695.0,10.843639,10843.639 +38508,2025-03-11T20:47:51.194576-07:00,1685.0,10.83732,10837.32 +38509,2025-03-11T20:48:02.030230-07:00,1621.0,10.835654,10835.654 +38510,2025-03-11T20:48:12.868612-07:00,1697.0,10.838382,10838.382 +38511,2025-03-11T20:48:23.715343-07:00,1705.0,10.846731,10846.731 +38512,2025-03-11T20:48:34.555237-07:00,1665.0,10.839894,10839.894 +38513,2025-03-11T20:48:45.386259-07:00,1623.0,10.831022,10831.022 +38514,2025-03-11T20:48:56.224758-07:00,1693.0,10.838499,10838.499 +38515,2025-03-11T20:49:07.051241-07:00,1645.0,10.826483,10826.483 +38516,2025-03-11T20:49:17.882600-07:00,1706.0,10.831359,10831.359 +38517,2025-03-11T20:49:28.723096-07:00,1706.0,10.840496,10840.496 +38518,2025-03-11T20:49:39.551246-07:00,1703.0,10.82815,10828.15 +38519,2025-03-11T20:49:50.388561-07:00,1695.0,10.837315,10837.315 +38520,2025-03-11T20:50:01.220251-07:00,1655.0,10.83169,10831.69 +38521,2025-03-11T20:50:12.059270-07:00,1707.0,10.839019,10839.019 +38522,2025-03-11T20:50:22.881255-07:00,1662.0,10.821985,10821.985 +38523,2025-03-11T20:50:33.723642-07:00,1634.0,10.842387,10842.387 +38524,2025-03-11T20:50:44.553872-07:00,1704.0,10.83023,10830.23 +38525,2025-03-11T20:50:55.395256-07:00,1710.0,10.841384,10841.384 +38526,2025-03-11T20:51:06.233855-07:00,1708.0,10.838599,10838.599 +38527,2025-03-11T20:51:17.071732-07:00,1691.0,10.837877,10837.877 +38528,2025-03-11T20:51:27.901546-07:00,1680.0,10.829814,10829.814 +38529,2025-03-11T20:51:38.745247-07:00,1639.0,10.843701,10843.701 +38530,2025-03-11T20:51:49.582555-07:00,1621.0,10.837308,10837.308 +38531,2025-03-11T20:52:00.421257-07:00,1662.0,10.838702,10838.702 +38532,2025-03-11T20:52:11.257257-07:00,1674.0,10.836,10836.0 +38533,2025-03-11T20:52:22.094812-07:00,1630.0,10.837555,10837.555 +38534,2025-03-11T20:52:32.932368-07:00,1706.0,10.837556,10837.556 +38535,2025-03-11T20:52:43.775245-07:00,1619.0,10.842877,10842.877 +38536,2025-03-11T20:52:54.602563-07:00,1677.0,10.827318,10827.318 +38537,2025-03-11T20:53:05.444230-07:00,1615.0,10.841667,10841.667 +38538,2025-03-11T20:53:16.283400-07:00,1707.0,10.83917,10839.17 +38539,2025-03-11T20:53:27.121127-07:00,1710.0,10.837727,10837.727 +38540,2025-03-11T20:53:37.955538-07:00,1631.0,10.834411,10834.411 +38541,2025-03-11T20:53:48.798582-07:00,1678.0,10.843044,10843.044 +38542,2025-03-11T20:53:59.634668-07:00,1627.0,10.836086,10836.086 +38543,2025-03-11T20:54:10.461499-07:00,1694.0,10.826831,10826.831 +38544,2025-03-11T20:54:21.295622-07:00,1707.0,10.834123,10834.123 +38545,2025-03-11T20:54:32.133387-07:00,1629.0,10.837765,10837.765 +38546,2025-03-11T20:54:42.969255-07:00,1628.0,10.835868,10835.868 +38547,2025-03-11T20:54:53.797360-07:00,1663.0,10.828105,10828.105 +38548,2025-03-11T20:55:04.638261-07:00,1709.0,10.840901,10840.901 +38549,2025-03-11T20:55:15.470483-07:00,1689.0,10.832222,10832.222 +38550,2025-03-11T20:55:26.314584-07:00,1705.0,10.844101,10844.101 +38551,2025-03-11T20:55:37.150255-07:00,1652.0,10.835671,10835.671 +38552,2025-03-11T20:55:47.984261-07:00,1697.0,10.834006,10834.006 +38553,2025-03-11T20:55:58.813463-07:00,1665.0,10.829202,10829.202 +38554,2025-03-11T20:56:09.657497-07:00,1711.0,10.844034,10844.034 +38555,2025-03-11T20:56:20.496338-07:00,1663.0,10.838841,10838.841 +38556,2025-03-11T20:56:31.333222-07:00,1707.0,10.836884,10836.884 +38557,2025-03-11T20:56:42.163257-07:00,1680.0,10.830035,10830.035 +38558,2025-03-11T20:56:53.003308-07:00,1625.0,10.840051,10840.051 +38559,2025-03-11T20:57:03.828542-07:00,1696.0,10.825234,10825.234 +38560,2025-03-11T20:57:14.670253-07:00,1658.0,10.841711,10841.711 +38561,2025-03-11T20:57:25.501831-07:00,1691.0,10.831578,10831.578 +38562,2025-03-11T20:57:36.344256-07:00,1617.0,10.842425,10842.425 +38563,2025-03-11T20:57:47.176257-07:00,1702.0,10.832001,10832.001 +38564,2025-03-11T20:57:58.011443-07:00,1707.0,10.835186,10835.186 +38565,2025-03-11T20:58:08.853253-07:00,1699.0,10.84181,10841.81 +38566,2025-03-11T20:58:19.690495-07:00,1662.0,10.837242,10837.242 +38567,2025-03-11T20:58:30.530557-07:00,1712.0,10.840062,10840.062 +38568,2025-03-11T20:58:41.364243-07:00,1622.0,10.833686,10833.686 +38569,2025-03-11T20:58:52.201230-07:00,1650.0,10.836987,10836.987 +38570,2025-03-11T20:59:03.039402-07:00,1691.0,10.838172,10838.172 +38571,2025-03-11T20:59:13.880536-07:00,1677.0,10.841134,10841.134 +38572,2025-03-11T20:59:24.711710-07:00,1621.0,10.831174,10831.174 +38573,2025-03-11T20:59:35.550765-07:00,1669.0,10.839055,10839.055 +38574,2025-03-11T20:59:46.391461-07:00,1681.0,10.840696,10840.696 +38575,2025-03-11T20:59:57.222260-07:00,1712.0,10.830799,10830.799 +38576,2025-03-11T21:00:08.058285-07:00,1631.0,10.836025,10836.025 +38577,2025-03-11T21:00:18.890594-07:00,1680.0,10.832309,10832.309 +38578,2025-03-11T21:00:29.726701-07:00,1619.0,10.836107,10836.107 +38579,2025-03-11T21:00:40.557241-07:00,1670.0,10.83054,10830.54 +38580,2025-03-11T21:00:51.380651-07:00,1683.0,10.82341,10823.41 +38581,2025-03-11T21:01:02.215505-07:00,1622.0,10.834854,10834.854 +38582,2025-03-11T21:01:13.040517-07:00,1631.0,10.825012,10825.012 +38583,2025-03-11T21:01:23.884576-07:00,1702.0,10.844059,10844.059 +38584,2025-03-11T21:01:34.712473-07:00,1669.0,10.827897,10827.897 +38585,2025-03-11T21:01:45.557559-07:00,1707.0,10.845086,10845.086 +38586,2025-03-11T21:01:56.382312-07:00,1665.0,10.824753,10824.753 +38587,2025-03-11T21:02:07.226532-07:00,1710.0,10.84422,10844.22 +38588,2025-03-11T21:02:18.067701-07:00,1703.0,10.841169,10841.169 +38589,2025-03-11T21:02:28.899257-07:00,1682.0,10.831556,10831.556 +38590,2025-03-11T21:02:39.730476-07:00,1667.0,10.831219,10831.219 +38591,2025-03-11T21:02:50.560480-07:00,1659.0,10.830004,10830.004 +38592,2025-03-11T21:03:01.395367-07:00,1689.0,10.834887,10834.887 +38593,2025-03-11T21:03:12.243598-07:00,1631.0,10.848231,10848.231 +38594,2025-03-11T21:03:33.918251-07:00,1711.0,21.674653,21674.653 +38595,2025-03-11T21:03:44.748574-07:00,1703.0,10.830323,10830.323 +38596,2025-03-11T21:03:55.591501-07:00,1650.0,10.842927,10842.927 +38597,2025-03-11T21:04:06.431239-07:00,1675.0,10.839738,10839.738 +38598,2025-03-11T21:04:17.268677-07:00,1702.0,10.837438,10837.438 +38599,2025-03-11T21:04:28.098491-07:00,1691.0,10.829814,10829.814 +38600,2025-03-11T21:04:38.936253-07:00,1648.0,10.837762,10837.762 +38601,2025-03-11T21:04:49.768797-07:00,1630.0,10.832544,10832.544 +38602,2025-03-11T21:05:00.605255-07:00,1629.0,10.836458,10836.458 +38603,2025-03-11T21:05:11.448258-07:00,1707.0,10.843003,10843.003 +38604,2025-03-11T21:05:22.281990-07:00,1706.0,10.833732,10833.732 +38605,2025-03-11T21:05:33.117253-07:00,1661.0,10.835263,10835.263 +38606,2025-03-11T21:05:43.950259-07:00,1619.0,10.833006,10833.006 +38607,2025-03-11T21:05:54.786350-07:00,1691.0,10.836091,10836.091 +38608,2025-03-11T21:06:05.619723-07:00,1655.0,10.833373,10833.373 +38609,2025-03-11T21:06:16.450565-07:00,1677.0,10.830842,10830.842 +38610,2025-03-11T21:06:27.292298-07:00,1708.0,10.841733,10841.733 +38611,2025-03-11T21:06:38.120435-07:00,1666.0,10.828137,10828.137 +38612,2025-03-11T21:06:48.956681-07:00,1621.0,10.836246,10836.246 +38613,2025-03-11T21:06:59.794253-07:00,1695.0,10.837572,10837.572 +38614,2025-03-11T21:07:10.755976-07:00,1691.0,10.961723,10961.723 +38615,2025-03-11T21:07:21.591655-07:00,1695.0,10.835679,10835.679 +38616,2025-03-11T21:07:32.425756-07:00,1663.0,10.834101,10834.101 +38617,2025-03-11T21:07:43.267879-07:00,1681.0,10.842123,10842.123 +38618,2025-03-11T21:07:54.097521-07:00,1705.0,10.829642,10829.642 +38619,2025-03-11T21:08:04.939730-07:00,1706.0,10.842209,10842.209 +38620,2025-03-11T21:08:15.773482-07:00,1706.0,10.833752,10833.752 +38621,2025-03-11T21:08:26.616745-07:00,1707.0,10.843263,10843.263 +38622,2025-03-11T21:08:37.458764-07:00,1647.0,10.842019,10842.019 +38623,2025-03-11T21:08:48.297762-07:00,1649.0,10.838998,10838.998 +38624,2025-03-11T21:08:59.141130-07:00,1706.0,10.843368,10843.368 +38625,2025-03-11T21:09:09.968519-07:00,1707.0,10.827389,10827.389 +38626,2025-03-11T21:09:20.808891-07:00,1695.0,10.840372,10840.372 +38627,2025-03-11T21:09:31.652058-07:00,1666.0,10.843167,10843.167 +38628,2025-03-11T21:09:42.484273-07:00,1701.0,10.832215,10832.215 +38629,2025-03-11T21:09:53.321829-07:00,1706.0,10.837556,10837.556 +38630,2025-03-11T21:10:04.164739-07:00,1665.0,10.84291,10842.91 +38631,2025-03-11T21:10:14.995529-07:00,1674.0,10.83079,10830.79 +38632,2025-03-11T21:10:25.840842-07:00,1648.0,10.845313,10845.313 +38633,2025-03-11T21:10:36.670656-07:00,1696.0,10.829814,10829.814 +38634,2025-03-11T21:10:47.513630-07:00,1652.0,10.842974,10842.974 +38635,2025-03-11T21:10:58.363522-07:00,1681.0,10.849892,10849.892 +38636,2025-03-11T21:11:09.204717-07:00,1623.0,10.841195,10841.195 +38637,2025-03-11T21:11:20.039068-07:00,1629.0,10.834351,10834.351 +38638,2025-03-11T21:11:30.879888-07:00,1630.0,10.84082,10840.82 +38639,2025-03-11T21:11:41.718665-07:00,1685.0,10.838777,10838.777 +38640,2025-03-11T21:11:52.561505-07:00,1653.0,10.84284,10842.84 +38641,2025-03-11T21:12:03.395530-07:00,1682.0,10.834025,10834.025 +38642,2025-03-11T21:12:14.235528-07:00,1705.0,10.839998,10839.998 +38643,2025-03-11T21:12:25.080784-07:00,1665.0,10.845256,10845.256 +38644,2025-03-11T21:12:35.916558-07:00,1648.0,10.835774,10835.774 +38645,2025-03-11T21:12:46.747765-07:00,1616.0,10.831207,10831.207 +38646,2025-03-11T21:12:57.584072-07:00,1705.0,10.836307,10836.307 +38647,2025-03-11T21:13:08.433950-07:00,1655.0,10.849878,10849.878 +38648,2025-03-11T21:13:19.271608-07:00,1648.0,10.837658,10837.658 +38649,2025-03-11T21:13:30.109119-07:00,1649.0,10.837511,10837.511 +38650,2025-03-11T21:13:40.958729-07:00,1687.0,10.84961,10849.61 +38651,2025-03-11T21:13:51.790227-07:00,1619.0,10.831498,10831.498 +38652,2025-03-11T21:14:02.637580-07:00,1680.0,10.847353,10847.353 +38653,2025-03-11T21:14:13.476642-07:00,1607.0,10.839062,10839.062 +38654,2025-03-11T21:14:24.323915-07:00,1650.0,10.847273,10847.273 +38655,2025-03-11T21:14:35.167107-07:00,1685.0,10.843192,10843.192 +38656,2025-03-11T21:14:45.999605-07:00,1705.0,10.832498,10832.498 +38657,2025-03-11T21:14:56.854762-07:00,1643.0,10.855157,10855.157 +38658,2025-03-11T21:15:07.695512-07:00,1687.0,10.84075,10840.75 +38659,2025-03-11T21:15:18.527955-07:00,1647.0,10.832443,10832.443 +38660,2025-03-11T21:15:29.378515-07:00,1636.0,10.85056,10850.56 +38661,2025-03-11T21:15:40.215671-07:00,1706.0,10.837156,10837.156 +38662,2025-03-11T21:15:51.047008-07:00,1648.0,10.831337,10831.337 +38663,2025-03-11T21:16:01.895596-07:00,1694.0,10.848588,10848.588 +38664,2025-03-11T21:16:12.727780-07:00,1697.0,10.832184,10832.184 +38665,2025-03-11T21:16:23.571857-07:00,1618.0,10.844077,10844.077 +38666,2025-03-11T21:16:34.419865-07:00,1677.0,10.848008,10848.008 +38667,2025-03-11T21:16:45.268253-07:00,1635.0,10.848388,10848.388 +38668,2025-03-11T21:16:56.105532-07:00,1658.0,10.837279,10837.279 +38669,2025-03-11T21:17:06.942806-07:00,1626.0,10.837274,10837.274 +38670,2025-03-11T21:17:17.787055-07:00,1645.0,10.844249,10844.249 +38671,2025-03-11T21:17:28.621527-07:00,1657.0,10.834472,10834.472 +38672,2025-03-11T21:17:39.468747-07:00,1659.0,10.84722,10847.22 +38673,2025-03-11T21:17:50.311511-07:00,1699.0,10.842764,10842.764 +38674,2025-03-11T21:18:01.151865-07:00,1687.0,10.840354,10840.354 +38675,2025-03-11T21:18:11.994620-07:00,1641.0,10.842755,10842.755 +38676,2025-03-11T21:18:22.837532-07:00,1703.0,10.842912,10842.912 +38677,2025-03-11T21:18:33.677817-07:00,1694.0,10.840285,10840.285 +38678,2025-03-11T21:18:44.519717-07:00,1648.0,10.8419,10841.9 +38679,2025-03-11T21:18:55.363018-07:00,1651.0,10.843301,10843.301 +38680,2025-03-11T21:19:06.206528-07:00,1701.0,10.84351,10843.51 +38681,2025-03-11T21:19:17.044528-07:00,1657.0,10.838,10838.0 +38682,2025-03-11T21:19:27.886076-07:00,1703.0,10.841548,10841.548 +38683,2025-03-11T21:19:38.729566-07:00,1691.0,10.84349,10843.49 +38684,2025-03-11T21:19:49.573595-07:00,1669.0,10.844029,10844.029 +38685,2025-03-11T21:20:00.416708-07:00,1655.0,10.843113,10843.113 +38686,2025-03-11T21:20:11.270726-07:00,1701.0,10.854018,10854.018 +38687,2025-03-11T21:20:22.105191-07:00,1702.0,10.834465,10834.465 +38688,2025-03-11T21:20:32.956187-07:00,1655.0,10.850996,10850.996 +38689,2025-03-11T21:20:43.804768-07:00,1691.0,10.848581,10848.581 +38690,2025-03-11T21:20:54.644527-07:00,1667.0,10.839759,10839.759 +38691,2025-03-11T21:21:05.497707-07:00,1610.0,10.85318,10853.18 +38692,2025-03-11T21:21:16.336534-07:00,1698.0,10.838827,10838.827 +38693,2025-03-11T21:21:27.178832-07:00,1620.0,10.842298,10842.298 +38694,2025-03-11T21:21:38.025638-07:00,1605.0,10.846806,10846.806 +38695,2025-03-11T21:21:48.858612-07:00,1668.0,10.832974,10832.974 +38696,2025-03-11T21:21:59.702832-07:00,1648.0,10.84422,10844.22 +38697,2025-03-11T21:22:10.543430-07:00,1645.0,10.840598,10840.598 +38698,2025-03-11T21:22:21.386557-07:00,1610.0,10.843127,10843.127 +38699,2025-03-11T21:22:32.235507-07:00,1693.0,10.84895,10848.95 +38700,2025-03-11T21:22:43.072527-07:00,1616.0,10.83702,10837.02 +38701,2025-03-11T21:22:53.922956-07:00,1645.0,10.850429,10850.429 +38702,2025-03-11T21:23:04.759563-07:00,1675.0,10.836607,10836.607 +38703,2025-03-11T21:23:15.608663-07:00,1687.0,10.8491,10849.1 +38704,2025-03-11T21:23:26.445526-07:00,1645.0,10.836863,10836.863 +38705,2025-03-11T21:23:37.287961-07:00,1637.0,10.842435,10842.435 +38706,2025-03-11T21:23:48.126749-07:00,1647.0,10.838788,10838.788 +38707,2025-03-11T21:23:58.977522-07:00,1698.0,10.850773,10850.773 +38708,2025-03-11T21:24:09.824765-07:00,1675.0,10.847243,10847.243 +38709,2025-03-11T21:24:20.664646-07:00,1678.0,10.839881,10839.881 +38710,2025-03-11T21:24:31.510522-07:00,1689.0,10.845876,10845.876 +38711,2025-03-11T21:24:42.357955-07:00,1688.0,10.847433,10847.433 +38712,2025-03-11T21:24:53.196531-07:00,1700.0,10.838576,10838.576 +38713,2025-03-11T21:25:04.045529-07:00,1699.0,10.848998,10848.998 +38714,2025-03-11T21:25:14.887589-07:00,1648.0,10.84206,10842.06 +38715,2025-03-11T21:25:25.732570-07:00,1685.0,10.844981,10844.981 +38716,2025-03-11T21:25:36.572405-07:00,1659.0,10.839835,10839.835 +38717,2025-03-11T21:25:47.404527-07:00,1614.0,10.832122,10832.122 +38718,2025-03-11T21:25:58.253530-07:00,1611.0,10.849003,10849.003 +38719,2025-03-11T21:26:09.083617-07:00,1697.0,10.830087,10830.087 +38720,2025-03-11T21:26:19.935800-07:00,1680.0,10.852183,10852.183 +38721,2025-03-11T21:26:30.774534-07:00,1692.0,10.838734,10838.734 +38722,2025-03-11T21:26:41.621848-07:00,1648.0,10.847314,10847.314 +38723,2025-03-11T21:26:52.476758-07:00,1699.0,10.85491,10854.91 +38724,2025-03-11T21:27:03.314690-07:00,1703.0,10.837932,10837.932 +38725,2025-03-11T21:27:14.156528-07:00,1683.0,10.841838,10841.838 +38726,2025-03-11T21:27:25.000456-07:00,1617.0,10.843928,10843.928 +38727,2025-03-11T21:27:35.847528-07:00,1680.0,10.847072,10847.072 +38728,2025-03-11T21:27:46.685636-07:00,1627.0,10.838108,10838.108 +38729,2025-03-11T21:27:57.531258-07:00,1648.0,10.845622,10845.622 +38730,2025-03-11T21:28:08.378618-07:00,1641.0,10.84736,10847.36 +38731,2025-03-11T21:28:19.215797-07:00,1665.0,10.837179,10837.179 +38732,2025-03-11T21:28:30.052880-07:00,1701.0,10.837083,10837.083 +38733,2025-03-11T21:28:40.907894-07:00,1617.0,10.855014,10855.014 +38734,2025-03-11T21:28:51.749557-07:00,1696.0,10.841663,10841.663 +38735,2025-03-11T21:29:02.592649-07:00,1701.0,10.843092,10843.092 +38736,2025-03-11T21:29:13.430794-07:00,1654.0,10.838145,10838.145 +38737,2025-03-11T21:29:24.268896-07:00,1670.0,10.838102,10838.102 +38738,2025-03-11T21:29:35.123732-07:00,1696.0,10.854836,10854.836 +38739,2025-03-11T21:29:45.965571-07:00,1649.0,10.841839,10841.839 +38740,2025-03-11T21:29:56.803531-07:00,1663.0,10.83796,10837.96 +38741,2025-03-11T21:30:07.656528-07:00,1663.0,10.852997,10852.997 +38742,2025-03-11T21:30:18.505533-07:00,1635.0,10.849005,10849.005 +38743,2025-03-11T21:30:29.351101-07:00,1689.0,10.845568,10845.568 +38744,2025-03-11T21:30:40.184523-07:00,1680.0,10.833422,10833.422 +38745,2025-03-11T21:30:51.034838-07:00,1621.0,10.850315,10850.315 +38746,2025-03-11T21:31:01.873571-07:00,1695.0,10.838733,10838.733 +38747,2025-03-11T21:31:12.722630-07:00,1679.0,10.849059,10849.059 +38748,2025-03-11T21:31:23.565850-07:00,1699.0,10.84322,10843.22 +38749,2025-03-11T21:31:34.415901-07:00,1648.0,10.850051,10850.051 +38750,2025-03-11T21:31:45.258647-07:00,1670.0,10.842746,10842.746 +38751,2025-03-11T21:31:56.111832-07:00,1698.0,10.853185,10853.185 +38752,2025-03-11T21:32:06.951535-07:00,1674.0,10.839703,10839.703 +38753,2025-03-11T21:32:17.797578-07:00,1665.0,10.846043,10846.043 +38754,2025-03-11T21:32:28.646410-07:00,1637.0,10.848832,10848.832 +38755,2025-03-11T21:32:39.490715-07:00,1699.0,10.844305,10844.305 +38756,2025-03-11T21:32:50.338717-07:00,1666.0,10.848002,10848.002 +38757,2025-03-11T21:33:01.186525-07:00,1698.0,10.847808,10847.808 +38758,2025-03-11T21:33:12.036876-07:00,1643.0,10.850351,10850.351 +38759,2025-03-11T21:33:22.877832-07:00,1628.0,10.840956,10840.956 +38760,2025-03-11T21:33:33.723533-07:00,1698.0,10.845701,10845.701 +38761,2025-03-11T21:33:44.576596-07:00,1677.0,10.853063,10853.063 +38762,2025-03-11T21:33:55.423875-07:00,1629.0,10.847279,10847.279 +38763,2025-03-11T21:34:06.273675-07:00,1696.0,10.8498,10849.8 +38764,2025-03-11T21:34:17.122718-07:00,1631.0,10.849043,10849.043 +38765,2025-03-11T21:34:27.964504-07:00,1702.0,10.841786,10841.786 +38766,2025-03-11T21:34:38.816925-07:00,1657.0,10.852421,10852.421 +38767,2025-03-11T21:34:49.659812-07:00,1649.0,10.842887,10842.887 +38768,2025-03-11T21:35:00.505918-07:00,1651.0,10.846106,10846.106 +38769,2025-03-11T21:35:11.345677-07:00,1655.0,10.839759,10839.759 +38770,2025-03-11T21:35:22.204005-07:00,1626.0,10.858328,10858.328 +38771,2025-03-11T21:35:33.045510-07:00,1648.0,10.841505,10841.505 +38772,2025-03-11T21:35:43.890528-07:00,1663.0,10.845018,10845.018 +38773,2025-03-11T21:35:54.732719-07:00,1648.0,10.842191,10842.191 +38774,2025-03-11T21:36:05.576783-07:00,1616.0,10.844064,10844.064 +38775,2025-03-11T21:36:16.426629-07:00,1699.0,10.849846,10849.846 +38776,2025-03-11T21:36:27.280961-07:00,1698.0,10.854332,10854.332 +38777,2025-03-11T21:36:38.117527-07:00,1680.0,10.836566,10836.566 +38778,2025-03-11T21:36:48.966765-07:00,1702.0,10.849238,10849.238 +38779,2025-03-11T21:36:59.821675-07:00,1609.0,10.85491,10854.91 +38780,2025-03-11T21:37:10.663861-07:00,1705.0,10.842186,10842.186 +38781,2025-03-11T21:37:21.506838-07:00,1623.0,10.842977,10842.977 +38782,2025-03-11T21:37:32.355446-07:00,1665.0,10.848608,10848.608 +38783,2025-03-11T21:37:43.195774-07:00,1665.0,10.840328,10840.328 +38784,2025-03-11T21:37:54.042603-07:00,1648.0,10.846829,10846.829 +38785,2025-03-11T21:38:04.883761-07:00,1697.0,10.841158,10841.158 +38786,2025-03-11T21:38:15.733540-07:00,1661.0,10.849779,10849.779 +38787,2025-03-11T21:38:26.588532-07:00,1678.0,10.854992,10854.992 +38788,2025-03-11T21:38:37.431510-07:00,1703.0,10.842978,10842.978 +38789,2025-03-11T21:38:48.292781-07:00,1669.0,10.861271,10861.271 +38790,2025-03-11T21:38:59.140642-07:00,1646.0,10.847861,10847.861 +38791,2025-03-11T21:39:09.983522-07:00,1702.0,10.84288,10842.88 +38792,2025-03-11T21:39:20.826782-07:00,1646.0,10.84326,10843.26 +38793,2025-03-11T21:39:31.681533-07:00,1651.0,10.854751,10854.751 +38794,2025-03-11T21:39:42.523700-07:00,1690.0,10.842167,10842.167 +38795,2025-03-11T21:39:53.379810-07:00,1661.0,10.85611,10856.11 +38796,2025-03-11T21:40:04.224949-07:00,1679.0,10.845139,10845.139 +38797,2025-03-11T21:40:15.064812-07:00,1694.0,10.839863,10839.863 +38798,2025-03-11T21:40:25.912696-07:00,1612.0,10.847884,10847.884 +38799,2025-03-11T21:40:36.761466-07:00,1661.0,10.84877,10848.77 +38800,2025-03-11T21:40:47.610765-07:00,1680.0,10.849299,10849.299 +38801,2025-03-11T21:40:58.455555-07:00,1674.0,10.84479,10844.79 +38802,2025-03-11T21:41:09.301705-07:00,1655.0,10.84615,10846.15 +38803,2025-03-11T21:41:20.154981-07:00,1677.0,10.853276,10853.276 +38804,2025-03-11T21:41:31.003101-07:00,1623.0,10.84812,10848.12 +38805,2025-03-11T21:41:41.843524-07:00,1695.0,10.840423,10840.423 +38806,2025-03-11T21:41:52.698518-07:00,1698.0,10.854994,10854.994 +38807,2025-03-11T21:42:03.546582-07:00,1699.0,10.848064,10848.064 +38808,2025-03-11T21:42:14.401527-07:00,1669.0,10.854945,10854.945 +38809,2025-03-11T21:42:25.251907-07:00,1651.0,10.85038,10850.38 +38810,2025-03-11T21:42:36.098805-07:00,1680.0,10.846898,10846.898 +38811,2025-03-11T21:42:46.952617-07:00,1616.0,10.853812,10853.812 +38812,2025-03-11T21:42:57.795894-07:00,1661.0,10.843277,10843.277 +38813,2025-03-11T21:43:08.646003-07:00,1697.0,10.850109,10850.109 +38814,2025-03-11T21:43:19.497123-07:00,1679.0,10.85112,10851.12 +38815,2025-03-11T21:43:30.350818-07:00,1655.0,10.853695,10853.695 +38816,2025-03-11T21:43:41.196532-07:00,1699.0,10.845714,10845.714 +38817,2025-03-11T21:43:52.044940-07:00,1648.0,10.848408,10848.408 +38818,2025-03-11T21:44:02.894727-07:00,1702.0,10.849787,10849.787 +38819,2025-03-11T21:44:13.743530-07:00,1613.0,10.848803,10848.803 +38820,2025-03-11T21:44:24.592529-07:00,1691.0,10.848999,10848.999 +38821,2025-03-11T21:44:35.447140-07:00,1701.0,10.854611,10854.611 +38822,2025-03-11T21:44:46.293690-07:00,1615.0,10.84655,10846.55 +38823,2025-03-11T21:44:57.143685-07:00,1672.0,10.849995,10849.995 +38824,2025-03-11T21:45:07.987702-07:00,1699.0,10.844017,10844.017 +38825,2025-03-11T21:45:18.831528-07:00,1649.0,10.843826,10843.826 +38826,2025-03-11T21:45:29.679528-07:00,1695.0,10.848,10848.0 +38827,2025-03-11T21:45:40.539778-07:00,1647.0,10.86025,10860.25 +38828,2025-03-11T21:45:51.389563-07:00,1680.0,10.849785,10849.785 +38829,2025-03-11T21:46:02.241528-07:00,1641.0,10.851965,10851.965 +38830,2025-03-11T21:46:13.084735-07:00,1695.0,10.843207,10843.207 +38831,2025-03-11T21:46:23.938535-07:00,1659.0,10.8538,10853.8 +38832,2025-03-11T21:46:34.796058-07:00,1671.0,10.857523,10857.523 +38833,2025-03-11T21:46:45.650757-07:00,1680.0,10.854699,10854.699 +38834,2025-03-11T21:46:56.498621-07:00,1600.0,10.847864,10847.864 +38835,2025-03-11T21:47:07.345843-07:00,1669.0,10.847222,10847.222 +38836,2025-03-11T21:47:18.196995-07:00,1617.0,10.851152,10851.152 +38837,2025-03-11T21:47:29.050051-07:00,1682.0,10.853056,10853.056 +38838,2025-03-11T21:47:39.899997-07:00,1645.0,10.849946,10849.946 +38839,2025-03-11T21:47:50.763861-07:00,1680.0,10.863864,10863.864 +38840,2025-03-11T21:48:01.607052-07:00,1696.0,10.843191,10843.191 +38841,2025-03-11T21:48:12.461819-07:00,1604.0,10.854767,10854.767 +38842,2025-03-11T21:48:23.316583-07:00,1698.0,10.854764,10854.764 +38843,2025-03-11T21:48:34.166523-07:00,1625.0,10.84994,10849.94 +38844,2025-03-11T21:48:45.023590-07:00,1600.0,10.857067,10857.067 +38845,2025-03-11T21:48:55.863516-07:00,1698.0,10.839926,10839.926 +38846,2025-03-11T21:49:06.718651-07:00,1669.0,10.855135,10855.135 +38847,2025-03-11T21:49:17.574525-07:00,1665.0,10.855874,10855.874 +38848,2025-03-11T21:49:28.420523-07:00,1698.0,10.845998,10845.998 +38849,2025-03-11T21:49:39.278533-07:00,1659.0,10.85801,10858.01 +38850,2025-03-11T21:49:50.132509-07:00,1648.0,10.853976,10853.976 +38851,2025-03-11T21:50:00.986671-07:00,1615.0,10.854162,10854.162 +38852,2025-03-11T21:50:11.834750-07:00,1649.0,10.848079,10848.079 +38853,2025-03-11T21:50:22.692159-07:00,1619.0,10.857409,10857.409 +38854,2025-03-11T21:50:33.548587-07:00,1681.0,10.856428,10856.428 +38855,2025-03-11T21:50:44.401019-07:00,1648.0,10.852432,10852.432 +38856,2025-03-11T21:50:55.244585-07:00,1684.0,10.843566,10843.566 +38857,2025-03-11T21:51:06.099530-07:00,1666.0,10.854945,10854.945 +38858,2025-03-11T21:51:16.954529-07:00,1680.0,10.854999,10854.999 +38859,2025-03-11T21:51:27.807580-07:00,1651.0,10.853051,10853.051 +38860,2025-03-11T21:51:38.662787-07:00,1681.0,10.855207,10855.207 +38861,2025-03-11T21:51:49.514652-07:00,1651.0,10.851865,10851.865 +38862,2025-03-11T21:52:00.360849-07:00,1654.0,10.846197,10846.197 +38863,2025-03-11T21:52:11.214832-07:00,1664.0,10.853983,10853.983 +38864,2025-03-11T21:52:22.064419-07:00,1667.0,10.849587,10849.587 +38865,2025-03-11T21:52:32.918781-07:00,1691.0,10.854362,10854.362 +38866,2025-03-11T21:52:43.773761-07:00,1616.0,10.85498,10854.98 +38867,2025-03-11T21:52:54.620560-07:00,1674.0,10.846799,10846.799 +38868,2025-03-11T21:53:05.469510-07:00,1695.0,10.84895,10848.95 +38869,2025-03-11T21:53:16.329693-07:00,1696.0,10.860183,10860.183 +38870,2025-03-11T21:53:27.173367-07:00,1664.0,10.843674,10843.674 +38871,2025-03-11T21:53:38.021532-07:00,1667.0,10.848165,10848.165 +38872,2025-03-11T21:53:48.871743-07:00,1693.0,10.850211,10850.211 +38873,2025-03-11T21:53:59.726701-07:00,1657.0,10.854958,10854.958 +38874,2025-03-11T21:54:10.574678-07:00,1695.0,10.847977,10847.977 +38875,2025-03-11T21:54:21.436002-07:00,1634.0,10.861324,10861.324 +38876,2025-03-11T21:54:32.289249-07:00,1648.0,10.853247,10853.247 +38877,2025-03-11T21:54:43.141850-07:00,1633.0,10.852601,10852.601 +38878,2025-03-11T21:54:53.997780-07:00,1600.0,10.85593,10855.93 +38879,2025-03-11T21:55:04.853726-07:00,1600.0,10.855946,10855.946 +38880,2025-03-11T21:55:15.705526-07:00,1691.0,10.8518,10851.8 +38881,2025-03-11T21:55:26.557754-07:00,1664.0,10.852228,10852.228 +38882,2025-03-11T21:55:37.416754-07:00,1661.0,10.859,10859.0 +38883,2025-03-11T21:55:48.270591-07:00,1661.0,10.853837,10853.837 +38884,2025-03-11T21:55:59.125634-07:00,1627.0,10.855043,10855.043 +38885,2025-03-11T21:56:09.978525-07:00,1698.0,10.852891,10852.891 +38886,2025-03-11T21:56:20.833992-07:00,1694.0,10.855467,10855.467 +38887,2025-03-11T21:56:31.682550-07:00,1610.0,10.848558,10848.558 +38888,2025-03-11T21:56:42.538578-07:00,1665.0,10.856028,10856.028 +38889,2025-03-11T21:56:53.382010-07:00,1699.0,10.843432,10843.432 +38890,2025-03-11T21:57:04.235775-07:00,1618.0,10.853765,10853.765 +38891,2025-03-11T21:57:15.096075-07:00,1613.0,10.8603,10860.3 +38892,2025-03-11T21:57:25.947926-07:00,1701.0,10.851851,10851.851 +38893,2025-03-11T21:57:36.804094-07:00,1615.0,10.856168,10856.168 +38894,2025-03-11T21:57:47.659115-07:00,1680.0,10.855021,10855.021 +38895,2025-03-11T21:57:58.516786-07:00,1692.0,10.857671,10857.671 +38896,2025-03-11T21:58:09.369836-07:00,1693.0,10.85305,10853.05 +38897,2025-03-11T21:58:20.228962-07:00,1687.0,10.859126,10859.126 +38898,2025-03-11T21:58:31.085529-07:00,1655.0,10.856567,10856.567 +38899,2025-03-11T21:58:41.931902-07:00,1661.0,10.846373,10846.373 +38900,2025-03-11T21:58:52.791579-07:00,1687.0,10.859677,10859.677 +38901,2025-03-11T21:59:03.650578-07:00,1651.0,10.858999,10858.999 +38902,2025-03-11T21:59:14.506722-07:00,1645.0,10.856144,10856.144 +38903,2025-03-11T21:59:25.359645-07:00,1664.0,10.852923,10852.923 +38904,2025-03-11T21:59:36.209534-07:00,1699.0,10.849889,10849.889 +38905,2025-03-11T21:59:47.068600-07:00,1695.0,10.859066,10859.066 +38906,2025-03-11T21:59:57.918525-07:00,1648.0,10.849925,10849.925 +38907,2025-03-11T22:00:08.775535-07:00,1606.0,10.85701,10857.01 +38908,2025-03-11T22:00:19.638568-07:00,1685.0,10.863033,10863.033 +38909,2025-03-11T22:00:30.492557-07:00,1696.0,10.853989,10853.989 +38910,2025-03-11T22:00:41.351888-07:00,1603.0,10.859331,10859.331 +38911,2025-03-11T22:00:52.197668-07:00,1648.0,10.84578,10845.78 +38912,2025-03-11T22:01:03.056505-07:00,1650.0,10.858837,10858.837 +38913,2025-03-11T22:01:13.913779-07:00,1687.0,10.857274,10857.274 +38914,2025-03-11T22:01:24.771521-07:00,1698.0,10.857742,10857.742 +38915,2025-03-11T22:01:35.624568-07:00,1680.0,10.853047,10853.047 +38916,2025-03-11T22:01:46.489908-07:00,1671.0,10.86534,10865.34 +38917,2025-03-11T22:01:57.338533-07:00,1697.0,10.848625,10848.625 +38918,2025-03-11T22:02:08.200574-07:00,1687.0,10.862041,10862.041 +38919,2025-03-11T22:02:19.059894-07:00,1657.0,10.85932,10859.32 +38920,2025-03-11T22:02:29.902528-07:00,1647.0,10.842634,10842.634 +38921,2025-03-11T22:02:40.762725-07:00,1680.0,10.860197,10860.197 +38922,2025-03-11T22:02:51.619545-07:00,1697.0,10.85682,10856.82 +38923,2025-03-11T22:03:02.470731-07:00,1619.0,10.851186,10851.186 +38924,2025-03-11T22:03:13.333883-07:00,1649.0,10.863152,10863.152 +38925,2025-03-11T22:03:24.188850-07:00,1693.0,10.854967,10854.967 +38926,2025-03-11T22:03:35.047092-07:00,1696.0,10.858242,10858.242 +38927,2025-03-11T22:03:45.907580-07:00,1648.0,10.860488,10860.488 +38928,2025-03-11T22:03:56.761585-07:00,1679.0,10.854005,10854.005 +38929,2025-03-11T22:04:07.611078-07:00,1691.0,10.849493,10849.493 +38930,2025-03-11T22:04:18.459621-07:00,1698.0,10.848543,10848.543 +38931,2025-03-11T22:04:29.302771-07:00,1690.0,10.84315,10843.15 +38932,2025-03-11T22:04:40.162573-07:00,1653.0,10.859802,10859.802 +38933,2025-03-11T22:04:51.011527-07:00,1654.0,10.848954,10848.954 +38934,2025-03-11T22:05:01.876612-07:00,1622.0,10.865085,10865.085 +38935,2025-03-11T22:05:12.725605-07:00,1634.0,10.848993,10848.993 +38936,2025-03-11T22:05:23.587018-07:00,1645.0,10.861413,10861.413 +38937,2025-03-11T22:05:34.433574-07:00,1675.0,10.846556,10846.556 +38938,2025-03-11T22:05:45.283840-07:00,1681.0,10.850266,10850.266 +38939,2025-03-11T22:05:56.139528-07:00,1689.0,10.855688,10855.688 +38940,2025-03-11T22:06:06.997677-07:00,1675.0,10.858149,10858.149 +38941,2025-03-11T22:06:17.846520-07:00,1697.0,10.848843,10848.843 +38942,2025-03-11T22:06:28.702237-07:00,1699.0,10.855717,10855.717 +38943,2025-03-11T22:06:39.556533-07:00,1647.0,10.854296,10854.296 +38944,2025-03-11T22:06:50.416759-07:00,1616.0,10.860226,10860.226 +38945,2025-03-11T22:07:01.258836-07:00,1655.0,10.842077,10842.077 +38946,2025-03-11T22:07:12.130861-07:00,1694.0,10.872025,10872.025 +38947,2025-03-11T22:07:22.982647-07:00,1630.0,10.851786,10851.786 +38948,2025-03-11T22:07:33.842955-07:00,1617.0,10.860308,10860.308 +38949,2025-03-11T22:07:44.699525-07:00,1649.0,10.85657,10856.57 +38950,2025-03-11T22:07:55.555984-07:00,1654.0,10.856459,10856.459 +38951,2025-03-11T22:08:06.402936-07:00,1691.0,10.846952,10846.952 +38952,2025-03-11T22:08:17.253654-07:00,1665.0,10.850718,10850.718 +38953,2025-03-11T22:08:28.114918-07:00,1664.0,10.861264,10861.264 +38954,2025-03-11T22:08:38.972431-07:00,1670.0,10.857513,10857.513 +38955,2025-03-11T22:08:49.824411-07:00,1648.0,10.85198,10851.98 +38956,2025-03-11T22:09:00.672653-07:00,1697.0,10.848242,10848.242 +38957,2025-03-11T22:09:11.536437-07:00,1675.0,10.863784,10863.784 +38958,2025-03-11T22:09:22.378653-07:00,1670.0,10.842216,10842.216 +38959,2025-03-11T22:09:33.239682-07:00,1690.0,10.861029,10861.029 +38960,2025-03-11T22:09:44.096835-07:00,1692.0,10.857153,10857.153 +38961,2025-03-11T22:09:54.947957-07:00,1618.0,10.851122,10851.122 +38962,2025-03-11T22:10:05.801664-07:00,1641.0,10.853707,10853.707 +38963,2025-03-11T22:10:16.658033-07:00,1697.0,10.856369,10856.369 +38964,2025-03-11T22:10:27.510813-07:00,1698.0,10.85278,10852.78 +38965,2025-03-11T22:10:38.363690-07:00,1615.0,10.852877,10852.877 +38966,2025-03-11T22:10:49.217602-07:00,1639.0,10.853912,10853.912 +38967,2025-03-11T22:11:00.075930-07:00,1647.0,10.858328,10858.328 +38968,2025-03-11T22:11:10.927702-07:00,1623.0,10.851772,10851.772 +38969,2025-03-11T22:11:21.781963-07:00,1695.0,10.854261,10854.261 +38970,2025-03-11T22:11:32.633807-07:00,1665.0,10.851844,10851.844 +38971,2025-03-11T22:11:43.485884-07:00,1696.0,10.852077,10852.077 +38972,2025-03-11T22:11:54.346900-07:00,1691.0,10.861016,10861.016 +38973,2025-03-11T22:12:05.201670-07:00,1642.0,10.85477,10854.77 +38974,2025-03-11T22:12:16.045893-07:00,1685.0,10.844223,10844.223 +38975,2025-03-11T22:12:26.903783-07:00,1690.0,10.85789,10857.89 +38976,2025-03-11T22:12:37.753647-07:00,1655.0,10.849864,10849.864 +38977,2025-03-11T22:12:48.607633-07:00,1666.0,10.853986,10853.986 +38978,2025-03-11T22:12:59.462652-07:00,1670.0,10.855019,10855.019 +38979,2025-03-11T22:13:10.318065-07:00,1639.0,10.855413,10855.413 +38980,2025-03-11T22:13:21.167211-07:00,1616.0,10.849146,10849.146 +38981,2025-03-11T22:13:32.026815-07:00,1625.0,10.859604,10859.604 +38982,2025-03-11T22:13:42.886625-07:00,1683.0,10.85981,10859.81 +38983,2025-03-11T22:13:53.736642-07:00,1689.0,10.850017,10850.017 +38984,2025-03-11T22:14:04.583694-07:00,1680.0,10.847052,10847.052 +38985,2025-03-11T22:14:15.436757-07:00,1654.0,10.853063,10853.063 +38986,2025-03-11T22:14:26.287898-07:00,1698.0,10.851141,10851.141 +38987,2025-03-11T22:14:37.149114-07:00,1622.0,10.861216,10861.216 +38988,2025-03-11T22:14:47.992657-07:00,1701.0,10.843543,10843.543 +38989,2025-03-11T22:14:58.849657-07:00,1701.0,10.857,10857.0 +38990,2025-03-11T22:15:09.699518-07:00,1659.0,10.849861,10849.861 +38991,2025-03-11T22:15:20.558839-07:00,1680.0,10.859321,10859.321 +38992,2025-03-11T22:15:31.412974-07:00,1670.0,10.854135,10854.135 +38993,2025-03-11T22:15:42.267658-07:00,1701.0,10.854684,10854.684 +38994,2025-03-11T22:15:53.112260-07:00,1659.0,10.844602,10844.602 +38995,2025-03-11T22:16:03.959990-07:00,1617.0,10.84773,10847.73 +38996,2025-03-11T22:16:14.808087-07:00,1701.0,10.848097,10848.097 +38997,2025-03-11T22:16:25.669813-07:00,1617.0,10.861726,10861.726 +38998,2025-03-11T22:16:36.512708-07:00,1678.0,10.842895,10842.895 +38999,2025-03-11T22:16:47.365062-07:00,1614.0,10.852354,10852.354 +39000,2025-03-11T22:16:58.215692-07:00,1611.0,10.85063,10850.63 +39001,2025-03-11T22:17:09.067871-07:00,1686.0,10.852179,10852.179 +39002,2025-03-11T22:17:19.918733-07:00,1693.0,10.850862,10850.862 +39003,2025-03-11T22:17:30.765649-07:00,1658.0,10.846916,10846.916 +39004,2025-03-11T22:17:41.617355-07:00,1693.0,10.851706,10851.706 +39005,2025-03-11T22:17:52.471652-07:00,1693.0,10.854297,10854.297 +39006,2025-03-11T22:18:03.330046-07:00,1607.0,10.858394,10858.394 +39007,2025-03-11T22:18:14.182807-07:00,1659.0,10.852761,10852.761 +39008,2025-03-11T22:18:25.025907-07:00,1635.0,10.8431,10843.1 +39009,2025-03-11T22:18:35.876791-07:00,1697.0,10.850884,10850.884 +39010,2025-03-11T22:18:46.735976-07:00,1683.0,10.859185,10859.185 +39011,2025-03-11T22:18:57.598867-07:00,1674.0,10.862891,10862.891 +39012,2025-03-11T22:19:08.454803-07:00,1699.0,10.855936,10855.936 +39013,2025-03-11T22:19:19.301787-07:00,1626.0,10.846984,10846.984 +39014,2025-03-11T22:19:30.153899-07:00,1701.0,10.852112,10852.112 +39015,2025-03-11T22:19:41.004764-07:00,1657.0,10.850865,10850.865 +39016,2025-03-11T22:19:51.851440-07:00,1684.0,10.846676,10846.676 +39017,2025-03-11T22:20:02.706000-07:00,1671.0,10.85456,10854.56 +39018,2025-03-11T22:20:13.557148-07:00,1687.0,10.851148,10851.148 +39019,2025-03-11T22:20:24.399968-07:00,1680.0,10.84282,10842.82 +39020,2025-03-11T22:20:35.254175-07:00,1648.0,10.854207,10854.207 +39021,2025-03-11T22:20:46.101704-07:00,1656.0,10.847529,10847.529 +39022,2025-03-11T22:20:56.952662-07:00,1687.0,10.850958,10850.958 +39023,2025-03-11T22:21:07.805704-07:00,1655.0,10.853042,10853.042 +39024,2025-03-11T22:21:18.659794-07:00,1698.0,10.85409,10854.09 +39025,2025-03-11T22:21:29.501802-07:00,1636.0,10.842008,10842.008 +39026,2025-03-11T22:21:40.351955-07:00,1701.0,10.850153,10850.153 +39027,2025-03-11T22:21:51.195912-07:00,1615.0,10.843957,10843.957 +39028,2025-03-11T22:22:02.061051-07:00,1605.0,10.865139,10865.139 +39029,2025-03-11T22:22:12.910491-07:00,1651.0,10.84944,10849.44 +39030,2025-03-11T22:22:23.770998-07:00,1655.0,10.860507,10860.507 +39031,2025-03-11T22:22:34.620154-07:00,1648.0,10.849156,10849.156 +39032,2025-03-11T22:22:45.476376-07:00,1699.0,10.856222,10856.222 +39033,2025-03-11T22:22:56.321506-07:00,1639.0,10.84513,10845.13 +39034,2025-03-11T22:23:07.172036-07:00,1696.0,10.85053,10850.53 +39035,2025-03-11T22:23:18.029475-07:00,1634.0,10.857439,10857.439 +39036,2025-03-11T22:23:28.878655-07:00,1654.0,10.84918,10849.18 +39037,2025-03-11T22:23:39.731651-07:00,1680.0,10.852996,10852.996 +39038,2025-03-11T22:23:50.586838-07:00,1701.0,10.855187,10855.187 +39039,2025-03-11T22:24:01.441891-07:00,1698.0,10.855053,10855.053 +39040,2025-03-11T22:24:12.301986-07:00,1705.0,10.860095,10860.095 +39041,2025-03-11T22:24:23.156114-07:00,1697.0,10.854128,10854.128 +39042,2025-03-11T22:24:34.010640-07:00,1691.0,10.854526,10854.526 +39043,2025-03-11T22:24:44.853652-07:00,1663.0,10.843012,10843.012 +39044,2025-03-11T22:24:55.707907-07:00,1702.0,10.854255,10854.255 +39045,2025-03-11T22:25:06.568785-07:00,1680.0,10.860878,10860.878 +39046,2025-03-11T22:25:17.421653-07:00,1630.0,10.852868,10852.868 +39047,2025-03-11T22:25:28.271004-07:00,1667.0,10.849351,10849.351 +39048,2025-03-11T22:25:39.139335-07:00,1653.0,10.868331,10868.331 +39049,2025-03-11T22:25:49.993073-07:00,1690.0,10.853738,10853.738 +39050,2025-03-11T22:26:00.848416-07:00,1701.0,10.855343,10855.343 +39051,2025-03-11T22:26:11.701107-07:00,1701.0,10.852691,10852.691 +39052,2025-03-11T22:26:22.554168-07:00,1679.0,10.853061,10853.061 +39053,2025-03-11T22:26:33.410615-07:00,1698.0,10.856447,10856.447 +39054,2025-03-11T22:26:44.264393-07:00,1677.0,10.853778,10853.778 +39055,2025-03-11T22:26:55.117708-07:00,1698.0,10.853315,10853.315 +39056,2025-03-11T22:27:05.974085-07:00,1702.0,10.856377,10856.377 +39057,2025-03-11T22:27:16.817304-07:00,1648.0,10.843219,10843.219 +39058,2025-03-11T22:27:27.669772-07:00,1695.0,10.852468,10852.468 +39059,2025-03-11T22:27:38.524647-07:00,1667.0,10.854875,10854.875 +39060,2025-03-11T22:27:49.376028-07:00,1697.0,10.851381,10851.381 +39061,2025-03-11T22:28:00.222657-07:00,1691.0,10.846629,10846.629 +39062,2025-03-11T22:28:11.076641-07:00,1702.0,10.853984,10853.984 +39063,2025-03-11T22:28:21.926657-07:00,1701.0,10.850016,10850.016 +39064,2025-03-11T22:28:32.779657-07:00,1665.0,10.853,10853.0 +39065,2025-03-11T22:28:43.630692-07:00,1674.0,10.851035,10851.035 +39066,2025-03-11T22:28:54.486717-07:00,1703.0,10.856025,10856.025 +39067,2025-03-11T22:29:05.350838-07:00,1687.0,10.864121,10864.121 +39068,2025-03-11T22:29:16.203051-07:00,1643.0,10.852213,10852.213 +39069,2025-03-11T22:29:27.063650-07:00,1698.0,10.860599,10860.599 +39070,2025-03-11T22:29:37.913653-07:00,1667.0,10.850003,10850.003 +39071,2025-03-11T22:29:48.772899-07:00,1604.0,10.859246,10859.246 +39072,2025-03-11T22:29:59.624658-07:00,1650.0,10.851759,10851.759 +39073,2025-03-11T22:30:10.476798-07:00,1702.0,10.85214,10852.14 +39074,2025-03-11T22:30:21.329905-07:00,1698.0,10.853107,10853.107 +39075,2025-03-11T22:30:32.185701-07:00,1698.0,10.855796,10855.796 +39076,2025-03-11T22:30:43.034653-07:00,1696.0,10.848952,10848.952 +39077,2025-03-11T22:30:53.888698-07:00,1601.0,10.854045,10854.045 +39078,2025-03-11T22:31:04.746656-07:00,1702.0,10.857958,10857.958 +39079,2025-03-11T22:31:15.597197-07:00,1699.0,10.850541,10850.541 +39080,2025-03-11T22:31:26.442992-07:00,1700.0,10.845795,10845.795 +39081,2025-03-11T22:31:37.301657-07:00,1659.0,10.858665,10858.665 +39082,2025-03-11T22:31:48.159580-07:00,1643.0,10.857923,10857.923 +39083,2025-03-11T22:31:59.016656-07:00,1695.0,10.857076,10857.076 +39084,2025-03-11T22:32:09.865649-07:00,1702.0,10.848993,10848.993 +39085,2025-03-11T22:32:20.720778-07:00,1699.0,10.855129,10855.129 +39086,2025-03-11T22:32:31.571900-07:00,1665.0,10.851122,10851.122 +39087,2025-03-11T22:32:42.417239-07:00,1664.0,10.845339,10845.339 +39088,2025-03-11T22:32:53.272009-07:00,1613.0,10.85477,10854.77 +39089,2025-03-11T22:33:04.120734-07:00,1662.0,10.848725,10848.725 +39090,2025-03-11T22:33:14.968868-07:00,1648.0,10.848134,10848.134 +39091,2025-03-11T22:33:25.824824-07:00,1701.0,10.855956,10855.956 +39092,2025-03-11T22:33:36.674347-07:00,1686.0,10.849523,10849.523 +39093,2025-03-11T22:33:47.516043-07:00,1619.0,10.841696,10841.696 +39094,2025-03-11T22:33:58.369647-07:00,1623.0,10.853604,10853.604 +39095,2025-03-11T22:34:09.218653-07:00,1700.0,10.849006,10849.006 +39096,2025-03-11T22:34:20.064230-07:00,1680.0,10.845577,10845.577 +39097,2025-03-11T22:34:30.914077-07:00,1645.0,10.849847,10849.847 +39098,2025-03-11T22:34:41.766163-07:00,1646.0,10.852086,10852.086 +39099,2025-03-11T22:34:52.607707-07:00,1697.0,10.841544,10841.544 +39100,2025-03-11T22:35:03.462630-07:00,1615.0,10.854923,10854.923 +39101,2025-03-11T22:35:14.318894-07:00,1703.0,10.856264,10856.264 +39102,2025-03-11T22:35:25.160801-07:00,1633.0,10.841907,10841.907 +39103,2025-03-11T22:35:36.015649-07:00,1678.0,10.854848,10854.848 +39104,2025-03-11T22:35:46.861657-07:00,1703.0,10.846008,10846.008 +39105,2025-03-11T22:35:57.712653-07:00,1663.0,10.850996,10850.996 +39106,2025-03-11T22:36:08.565652-07:00,1649.0,10.852999,10852.999 +39107,2025-03-11T22:36:19.418651-07:00,1667.0,10.852999,10852.999 +39108,2025-03-11T22:36:30.268576-07:00,1680.0,10.849925,10849.925 +39109,2025-03-11T22:36:41.124567-07:00,1648.0,10.855991,10855.991 +39110,2025-03-11T22:36:51.970923-07:00,1615.0,10.846356,10846.356 +39111,2025-03-11T22:37:02.820916-07:00,1612.0,10.849993,10849.993 +39112,2025-03-11T22:37:13.672060-07:00,1665.0,10.851144,10851.144 +39113,2025-03-11T22:37:24.530944-07:00,1698.0,10.858884,10858.884 +39114,2025-03-11T22:37:35.373717-07:00,1663.0,10.842773,10842.773 +39115,2025-03-11T22:37:46.224655-07:00,1703.0,10.850938,10850.938 +39116,2025-03-11T22:37:57.081899-07:00,1695.0,10.857244,10857.244 +39117,2025-03-11T22:38:07.931654-07:00,1671.0,10.849755,10849.755 +39118,2025-03-11T22:38:18.778708-07:00,1640.0,10.847054,10847.054 +39119,2025-03-11T22:38:29.638652-07:00,1605.0,10.859944,10859.944 +39120,2025-03-11T22:38:40.485930-07:00,1699.0,10.847278,10847.278 +39121,2025-03-11T22:38:51.332795-07:00,1639.0,10.846865,10846.865 +39122,2025-03-11T22:39:02.186657-07:00,1693.0,10.853862,10853.862 +39123,2025-03-11T22:39:13.035656-07:00,1691.0,10.848999,10848.999 +39124,2025-03-11T22:39:23.884005-07:00,1695.0,10.848349,10848.349 +39125,2025-03-11T22:39:34.744540-07:00,1651.0,10.860535,10860.535 +39126,2025-03-11T22:39:45.593051-07:00,1701.0,10.848511,10848.511 +39127,2025-03-11T22:39:56.442567-07:00,1699.0,10.849516,10849.516 +39128,2025-03-11T22:40:07.290679-07:00,1617.0,10.848112,10848.112 +39129,2025-03-11T22:40:18.138652-07:00,1691.0,10.847973,10847.973 +39130,2025-03-11T22:40:28.998751-07:00,1603.0,10.860099,10860.099 +39131,2025-03-11T22:40:39.845656-07:00,1651.0,10.846905,10846.905 +39132,2025-03-11T22:40:50.696632-07:00,1663.0,10.850976,10850.976 +39133,2025-03-11T22:41:01.544656-07:00,1702.0,10.848024,10848.024 +39134,2025-03-11T22:41:12.399801-07:00,1702.0,10.855145,10855.145 +39135,2025-03-11T22:41:23.243651-07:00,1701.0,10.84385,10843.85 +39136,2025-03-11T22:41:34.094393-07:00,1705.0,10.850742,10850.742 +39137,2025-03-11T22:41:44.931969-07:00,1687.0,10.837576,10837.576 +39138,2025-03-11T22:41:55.787976-07:00,1659.0,10.856007,10856.007 +39139,2025-03-11T22:42:06.630719-07:00,1654.0,10.842743,10842.743 +39140,2025-03-11T22:42:17.486825-07:00,1698.0,10.856106,10856.106 +39141,2025-03-11T22:42:28.340109-07:00,1621.0,10.853284,10853.284 +39142,2025-03-11T22:42:39.185762-07:00,1696.0,10.845653,10845.653 +39143,2025-03-11T22:42:50.027170-07:00,1680.0,10.841408,10841.408 +39144,2025-03-11T22:43:00.877647-07:00,1618.0,10.850477,10850.477 +39145,2025-03-11T22:43:11.732651-07:00,1690.0,10.855004,10855.004 +39146,2025-03-11T22:43:22.580035-07:00,1701.0,10.847384,10847.384 +39147,2025-03-11T22:43:33.434476-07:00,1690.0,10.854441,10854.441 +39148,2025-03-11T22:43:44.289064-07:00,1643.0,10.854588,10854.588 +39149,2025-03-11T22:43:55.132971-07:00,1666.0,10.843907,10843.907 +39150,2025-03-11T22:44:05.973886-07:00,1695.0,10.840915,10840.915 +39151,2025-03-11T22:44:16.818889-07:00,1669.0,10.845003,10845.003 +39152,2025-03-11T22:44:27.671662-07:00,1670.0,10.852773,10852.773 +39153,2025-03-11T22:44:38.521652-07:00,1653.0,10.84999,10849.99 +39154,2025-03-11T22:44:49.362895-07:00,1702.0,10.841243,10841.243 +39155,2025-03-11T22:45:00.212916-07:00,1667.0,10.850021,10850.021 +39156,2025-03-11T22:45:11.055709-07:00,1631.0,10.842793,10842.793 +39157,2025-03-11T22:45:21.906811-07:00,1648.0,10.851102,10851.102 +39158,2025-03-11T22:45:32.750147-07:00,1685.0,10.843336,10843.336 +39159,2025-03-11T22:45:43.591365-07:00,1614.0,10.841218,10841.218 +39160,2025-03-11T22:45:54.439974-07:00,1691.0,10.848609,10848.609 +39161,2025-03-11T22:46:05.277963-07:00,1695.0,10.837989,10837.989 +39162,2025-03-11T22:46:16.125646-07:00,1621.0,10.847683,10847.683 +39163,2025-03-11T22:46:26.968248-07:00,1670.0,10.842602,10842.602 +39164,2025-03-11T22:46:37.811658-07:00,1705.0,10.84341,10843.41 +39165,2025-03-11T22:46:48.650527-07:00,1678.0,10.838869,10838.869 +39166,2025-03-11T22:46:59.499828-07:00,1705.0,10.849301,10849.301 +39167,2025-03-11T22:47:10.345364-07:00,1651.0,10.845536,10845.536 +39168,2025-03-11T22:47:21.194789-07:00,1699.0,10.849425,10849.425 +39169,2025-03-11T22:47:32.037894-07:00,1617.0,10.843105,10843.105 +39170,2025-03-11T22:47:42.876393-07:00,1700.0,10.838499,10838.499 +39171,2025-03-11T22:47:53.724692-07:00,1630.0,10.848299,10848.299 +39172,2025-03-11T22:48:04.561701-07:00,1650.0,10.837009,10837.009 +39173,2025-03-11T22:48:15.413880-07:00,1689.0,10.852179,10852.179 +39174,2025-03-11T22:48:26.257885-07:00,1701.0,10.844005,10844.005 +39175,2025-03-11T22:48:37.098914-07:00,1655.0,10.841029,10841.029 +39176,2025-03-11T22:48:47.937789-07:00,1664.0,10.838875,10838.875 +39177,2025-03-11T22:48:58.789860-07:00,1701.0,10.852071,10852.071 +39178,2025-03-11T22:49:09.626983-07:00,1603.0,10.837123,10837.123 +39179,2025-03-11T22:49:20.476634-07:00,1648.0,10.849651,10849.651 +39180,2025-03-11T22:49:31.320139-07:00,1703.0,10.843505,10843.505 +39181,2025-03-11T22:49:42.166752-07:00,1680.0,10.846613,10846.613 +39182,2025-03-11T22:49:53.008775-07:00,1703.0,10.842023,10842.023 +39183,2025-03-11T22:50:03.852692-07:00,1702.0,10.843917,10843.917 +39184,2025-03-11T22:50:14.691657-07:00,1662.0,10.838965,10838.965 +39185,2025-03-11T22:50:25.534366-07:00,1652.0,10.842709,10842.709 +39186,2025-03-11T22:50:36.372895-07:00,1692.0,10.838529,10838.529 +39187,2025-03-11T22:50:47.220651-07:00,1627.0,10.847756,10847.756 +39188,2025-03-11T22:50:58.056086-07:00,1680.0,10.835435,10835.435 +39189,2025-03-11T22:51:08.907139-07:00,1630.0,10.851053,10851.053 +39190,2025-03-11T22:51:19.748634-07:00,1706.0,10.841495,10841.495 +39191,2025-03-11T22:51:30.590656-07:00,1699.0,10.842022,10842.022 +39192,2025-03-11T22:51:41.428657-07:00,1648.0,10.838001,10838.001 +39193,2025-03-11T22:51:52.280440-07:00,1666.0,10.851783,10851.783 +39194,2025-03-11T22:52:03.112736-07:00,1685.0,10.832296,10832.296 +39195,2025-03-11T22:52:13.958698-07:00,1621.0,10.845962,10845.962 +39196,2025-03-11T22:52:24.795705-07:00,1692.0,10.837007,10837.007 +39197,2025-03-11T22:52:35.637901-07:00,1680.0,10.842196,10842.196 +39198,2025-03-11T22:52:46.476652-07:00,1699.0,10.838751,10838.751 +39199,2025-03-11T22:52:57.319658-07:00,1701.0,10.843006,10843.006 +39200,2025-03-11T22:53:08.151937-07:00,1677.0,10.832279,10832.279 +39201,2025-03-11T22:53:19.001257-07:00,1703.0,10.84932,10849.32 +39202,2025-03-11T22:53:29.848734-07:00,1693.0,10.847477,10847.477 +39203,2025-03-11T22:53:40.683785-07:00,1703.0,10.835051,10835.051 +39204,2025-03-11T22:53:51.528973-07:00,1657.0,10.845188,10845.188 +39205,2025-03-11T22:54:02.377957-07:00,1701.0,10.848984,10848.984 +39206,2025-03-11T22:54:13.221286-07:00,1698.0,10.843329,10843.329 +39207,2025-03-11T22:54:24.075356-07:00,1662.0,10.85407,10854.07 +39208,2025-03-11T22:54:34.913630-07:00,1702.0,10.838274,10838.274 +39209,2025-03-11T22:54:45.748691-07:00,1701.0,10.835061,10835.061 +39210,2025-03-11T22:54:56.588374-07:00,1708.0,10.839683,10839.683 +39211,2025-03-11T22:55:07.431844-07:00,1637.0,10.84347,10843.47 +39212,2025-03-11T22:55:18.281768-07:00,1680.0,10.849924,10849.924 +39213,2025-03-11T22:55:29.122897-07:00,1667.0,10.841129,10841.129 +39214,2025-03-11T22:55:39.966051-07:00,1659.0,10.843154,10843.154 +39215,2025-03-11T22:55:50.820057-07:00,1659.0,10.854006,10854.006 +39216,2025-03-11T22:56:01.663660-07:00,1699.0,10.843603,10843.603 +39217,2025-03-11T22:56:12.511653-07:00,1659.0,10.847993,10847.993 +39218,2025-03-11T22:56:23.359072-07:00,1687.0,10.847419,10847.419 +39219,2025-03-11T22:56:34.204775-07:00,1655.0,10.845703,10845.703 +39220,2025-03-11T22:56:45.054893-07:00,1685.0,10.850118,10850.118 +39221,2025-03-11T22:56:55.900894-07:00,1691.0,10.846001,10846.001 +39222,2025-03-11T22:57:06.739267-07:00,1690.0,10.838373,10838.373 +39223,2025-03-11T22:57:17.577647-07:00,1697.0,10.83838,10838.38 +39224,2025-03-11T22:57:28.415649-07:00,1627.0,10.838002,10838.002 +39225,2025-03-11T22:57:39.265092-07:00,1669.0,10.849443,10849.443 +39226,2025-03-11T22:57:50.104920-07:00,1703.0,10.839828,10839.828 +39227,2025-03-11T22:58:00.940923-07:00,1673.0,10.836003,10836.003 +39228,2025-03-11T22:58:11.790657-07:00,1658.0,10.849734,10849.734 +39229,2025-03-11T22:58:22.633917-07:00,1663.0,10.84326,10843.26 +39230,2025-03-11T22:58:33.477862-07:00,1705.0,10.843945,10843.945 +39231,2025-03-11T22:58:44.313652-07:00,1678.0,10.83579,10835.79 +39232,2025-03-11T22:58:55.146245-07:00,1680.0,10.832593,10832.593 +39233,2025-03-11T22:59:05.990776-07:00,1706.0,10.844531,10844.531 +39234,2025-03-11T22:59:16.826654-07:00,1707.0,10.835878,10835.878 +39235,2025-03-11T22:59:27.676650-07:00,1665.0,10.849996,10849.996 +39236,2025-03-11T22:59:38.520653-07:00,1707.0,10.844003,10844.003 +39237,2025-03-11T22:59:49.358014-07:00,1674.0,10.837361,10837.361 +39238,2025-03-11T23:00:00.205818-07:00,1662.0,10.847804,10847.804 +39239,2025-03-11T23:00:11.047134-07:00,1680.0,10.841316,10841.316 +39240,2025-03-11T23:00:21.893063-07:00,1689.0,10.845929,10845.929 +39241,2025-03-11T23:00:32.740010-07:00,1690.0,10.846947,10846.947 +39242,2025-03-11T23:00:43.580094-07:00,1682.0,10.840084,10840.084 +39243,2025-03-11T23:00:54.429189-07:00,1700.0,10.849095,10849.095 +39244,2025-03-11T23:01:05.276486-07:00,1665.0,10.847297,10847.297 +39245,2025-03-11T23:01:16.118729-07:00,1697.0,10.842243,10842.243 +39246,2025-03-11T23:01:26.967087-07:00,1639.0,10.848358,10848.358 +39247,2025-03-11T23:01:37.809659-07:00,1663.0,10.842572,10842.572 +39248,2025-03-11T23:01:48.659046-07:00,1666.0,10.849387,10849.387 +39249,2025-03-11T23:01:59.497700-07:00,1703.0,10.838654,10838.654 +39250,2025-03-11T23:02:10.345899-07:00,1631.0,10.848199,10848.199 +39251,2025-03-11T23:02:21.186961-07:00,1626.0,10.841062,10841.062 +39252,2025-03-11T23:02:32.036936-07:00,1647.0,10.849975,10849.975 +39253,2025-03-11T23:02:42.886656-07:00,1620.0,10.84972,10849.72 +39254,2025-03-11T23:02:53.729236-07:00,1658.0,10.84258,10842.58 +39255,2025-03-11T23:03:04.571652-07:00,1653.0,10.842416,10842.416 +39256,2025-03-11T23:03:15.416891-07:00,1616.0,10.845239,10845.239 +39257,2025-03-11T23:03:26.264210-07:00,1679.0,10.847319,10847.319 +39258,2025-03-11T23:03:37.105900-07:00,1691.0,10.84169,10841.69 +39259,2025-03-11T23:03:47.949992-07:00,1691.0,10.844092,10844.092 +39260,2025-03-11T23:03:58.799317-07:00,1679.0,10.849325,10849.325 +39261,2025-03-11T23:04:09.647698-07:00,1705.0,10.848381,10848.381 +39262,2025-03-11T23:04:20.484634-07:00,1707.0,10.836936,10836.936 +39263,2025-03-11T23:04:31.333711-07:00,1673.0,10.849077,10849.077 +39264,2025-03-11T23:04:42.183241-07:00,1669.0,10.84953,10849.53 +39265,2025-03-11T23:04:53.019545-07:00,1615.0,10.836304,10836.304 +39266,2025-03-11T23:05:03.862634-07:00,1706.0,10.843089,10843.089 +39267,2025-03-11T23:05:14.714653-07:00,1663.0,10.852019,10852.019 +39268,2025-03-11T23:05:25.556881-07:00,1659.0,10.842228,10842.228 +39269,2025-03-11T23:05:36.401652-07:00,1702.0,10.844771,10844.771 +39270,2025-03-11T23:05:47.241732-07:00,1681.0,10.84008,10840.08 +39271,2025-03-11T23:05:58.084651-07:00,1703.0,10.842919,10842.919 +39272,2025-03-11T23:06:08.924760-07:00,1642.0,10.840109,10840.109 +39273,2025-03-11T23:06:19.775083-07:00,1647.0,10.850323,10850.323 +39274,2025-03-11T23:06:30.612815-07:00,1705.0,10.837732,10837.732 +39275,2025-03-11T23:06:41.462812-07:00,1639.0,10.849997,10849.997 +39276,2025-03-11T23:06:52.293641-07:00,1662.0,10.830829,10830.829 +39277,2025-03-11T23:07:03.140653-07:00,1670.0,10.847012,10847.012 +39278,2025-03-11T23:07:14.020506-07:00,1698.0,10.879853,10879.853 +39279,2025-03-11T23:07:24.861766-07:00,1695.0,10.84126,10841.26 +39280,2025-03-11T23:07:35.699512-07:00,1611.0,10.837746,10837.746 +39281,2025-03-11T23:07:46.549440-07:00,1610.0,10.849928,10849.928 +39282,2025-03-11T23:07:57.385596-07:00,1633.0,10.836156,10836.156 +39283,2025-03-11T23:08:08.235740-07:00,1693.0,10.850144,10850.144 +39284,2025-03-11T23:08:19.065332-07:00,1680.0,10.829592,10829.592 +39285,2025-03-11T23:08:29.903594-07:00,1699.0,10.838262,10838.262 +39286,2025-03-11T23:08:40.745619-07:00,1616.0,10.842025,10842.025 +39287,2025-03-11T23:08:51.589317-07:00,1706.0,10.843698,10843.698 +39288,2025-03-11T23:09:02.428429-07:00,1703.0,10.839112,10839.112 +39289,2025-03-11T23:09:13.268676-07:00,1701.0,10.840247,10840.247 +39290,2025-03-11T23:09:24.106470-07:00,1662.0,10.837794,10837.794 +39291,2025-03-11T23:09:34.949263-07:00,1708.0,10.842793,10842.793 +39292,2025-03-11T23:09:45.798289-07:00,1664.0,10.849026,10849.026 +39293,2025-03-11T23:09:56.631283-07:00,1655.0,10.832994,10832.994 +39294,2025-03-11T23:10:07.479631-07:00,1704.0,10.848348,10848.348 +39295,2025-03-11T23:10:18.319251-07:00,1664.0,10.83962,10839.62 +39296,2025-03-11T23:10:29.161779-07:00,1662.0,10.842528,10842.528 +39297,2025-03-11T23:10:39.997625-07:00,1673.0,10.835846,10835.846 +39298,2025-03-11T23:10:50.836265-07:00,1678.0,10.83864,10838.64 +39299,2025-03-11T23:11:01.678282-07:00,1706.0,10.842017,10842.017 +39300,2025-03-11T23:11:12.521516-07:00,1631.0,10.843234,10843.234 +39301,2025-03-11T23:11:23.359330-07:00,1627.0,10.837814,10837.814 +39302,2025-03-11T23:11:34.190377-07:00,1627.0,10.831047,10831.047 +39303,2025-03-11T23:11:45.033524-07:00,1693.0,10.843147,10843.147 +39304,2025-03-11T23:11:55.876606-07:00,1693.0,10.843082,10843.082 +39305,2025-03-11T23:12:06.725121-07:00,1703.0,10.848515,10848.515 +39306,2025-03-11T23:12:17.561555-07:00,1705.0,10.836434,10836.434 +39307,2025-03-11T23:12:28.403596-07:00,1620.0,10.842041,10842.041 +39308,2025-03-11T23:12:39.249691-07:00,1639.0,10.846095,10846.095 +39309,2025-03-11T23:12:50.090825-07:00,1678.0,10.841134,10841.134 +39310,2025-03-11T23:13:00.929279-07:00,1702.0,10.838454,10838.454 +39311,2025-03-11T23:13:11.773382-07:00,1706.0,10.844103,10844.103 +39312,2025-03-11T23:13:22.617285-07:00,1698.0,10.843903,10843.903 +39313,2025-03-11T23:13:33.455607-07:00,1694.0,10.838322,10838.322 +39314,2025-03-11T23:13:44.295276-07:00,1631.0,10.839669,10839.669 +39315,2025-03-11T23:13:55.137290-07:00,1684.0,10.842014,10842.014 +39316,2025-03-11T23:14:05.974817-07:00,1682.0,10.837527,10837.527 +39317,2025-03-11T23:14:16.824607-07:00,1708.0,10.84979,10849.79 +39318,2025-03-11T23:14:27.662598-07:00,1702.0,10.837991,10837.991 +39319,2025-03-11T23:14:38.498760-07:00,1648.0,10.836162,10836.162 +39320,2025-03-11T23:14:49.344533-07:00,1665.0,10.845773,10845.773 +39321,2025-03-11T23:15:00.180287-07:00,1709.0,10.835754,10835.754 +39322,2025-03-11T23:15:11.013431-07:00,1680.0,10.833144,10833.144 +39323,2025-03-11T23:15:21.859789-07:00,1631.0,10.846358,10846.358 +39324,2025-03-11T23:15:32.699470-07:00,1710.0,10.839681,10839.681 +39325,2025-03-11T23:15:43.534761-07:00,1667.0,10.835291,10835.291 +39326,2025-03-11T23:15:54.380289-07:00,1701.0,10.845528,10845.528 +39327,2025-03-11T23:16:05.217747-07:00,1619.0,10.837458,10837.458 +39328,2025-03-11T23:16:16.058795-07:00,1680.0,10.841048,10841.048 +39329,2025-03-11T23:16:26.908337-07:00,1674.0,10.849542,10849.542 +39330,2025-03-11T23:16:37.747208-07:00,1611.0,10.838871,10838.871 +39331,2025-03-11T23:16:48.595290-07:00,1709.0,10.848082,10848.082 +39332,2025-03-11T23:16:59.427333-07:00,1707.0,10.832043,10832.043 +39333,2025-03-11T23:17:10.269279-07:00,1707.0,10.841946,10841.946 +39334,2025-03-11T23:17:21.111289-07:00,1615.0,10.84201,10842.01 +39335,2025-03-11T23:17:31.944315-07:00,1640.0,10.833026,10833.026 +39336,2025-03-11T23:17:42.793287-07:00,1686.0,10.848972,10848.972 +39337,2025-03-11T23:17:53.629290-07:00,1697.0,10.836003,10836.003 +39338,2025-03-11T23:18:04.476450-07:00,1667.0,10.84716,10847.16 +39339,2025-03-11T23:18:15.316607-07:00,1635.0,10.840157,10840.157 +39340,2025-03-11T23:18:26.155480-07:00,1657.0,10.838873,10838.873 +39341,2025-03-11T23:18:36.984615-07:00,1605.0,10.829135,10829.135 +39342,2025-03-11T23:18:47.828607-07:00,1618.0,10.843992,10843.992 +39343,2025-03-11T23:18:58.665935-07:00,1618.0,10.837328,10837.328 +39344,2025-03-11T23:19:09.503425-07:00,1676.0,10.83749,10837.49 +39345,2025-03-11T23:19:20.340693-07:00,1635.0,10.837268,10837.268 +39346,2025-03-11T23:19:31.188944-07:00,1703.0,10.848251,10848.251 +39347,2025-03-11T23:19:42.020284-07:00,1693.0,10.83134,10831.34 +39348,2025-03-11T23:19:52.863571-07:00,1662.0,10.843287,10843.287 +39349,2025-03-11T23:20:03.708763-07:00,1611.0,10.845192,10845.192 +39350,2025-03-11T23:20:14.543456-07:00,1699.0,10.834693,10834.693 +39351,2025-03-11T23:20:25.375432-07:00,1630.0,10.831976,10831.976 +39352,2025-03-11T23:20:36.219621-07:00,1616.0,10.844189,10844.189 +39353,2025-03-11T23:20:47.055534-07:00,1694.0,10.835913,10835.913 +39354,2025-03-11T23:20:57.892752-07:00,1615.0,10.837218,10837.218 +39355,2025-03-11T23:21:08.736569-07:00,1703.0,10.843817,10843.817 +39356,2025-03-11T23:21:19.580607-07:00,1641.0,10.844038,10844.038 +39357,2025-03-11T23:21:30.427282-07:00,1662.0,10.846675,10846.675 +39358,2025-03-11T23:21:41.266467-07:00,1702.0,10.839185,10839.185 +39359,2025-03-11T23:21:52.114285-07:00,1616.0,10.847818,10847.818 +39360,2025-03-11T23:22:02.951893-07:00,1702.0,10.837608,10837.608 +39361,2025-03-11T23:22:13.802099-07:00,1704.0,10.850206,10850.206 +39362,2025-03-11T23:22:24.634347-07:00,1674.0,10.832248,10832.248 +39363,2025-03-11T23:22:35.477267-07:00,1697.0,10.84292,10842.92 +39364,2025-03-11T23:22:46.306339-07:00,1694.0,10.829072,10829.072 +39365,2025-03-11T23:22:57.149932-07:00,1668.0,10.843593,10843.593 +39366,2025-03-11T23:23:07.983290-07:00,1706.0,10.833358,10833.358 +39367,2025-03-11T23:23:18.826275-07:00,1679.0,10.842985,10842.985 +39368,2025-03-11T23:23:29.673555-07:00,1703.0,10.84728,10847.28 +39369,2025-03-11T23:23:40.511287-07:00,1648.0,10.837732,10837.732 +39370,2025-03-11T23:24:02.192017-07:00,1638.0,21.68073,21680.73 +39371,2025-03-11T23:24:13.040339-07:00,1661.0,10.848322,10848.322 +39372,2025-03-11T23:24:23.874280-07:00,1657.0,10.833941,10833.941 +39373,2025-03-11T23:24:34.715281-07:00,1677.0,10.841001,10841.001 +39374,2025-03-11T23:24:45.552713-07:00,1701.0,10.837432,10837.432 +39375,2025-03-11T23:24:56.389479-07:00,1680.0,10.836766,10836.766 +39376,2025-03-11T23:25:07.229016-07:00,1697.0,10.839537,10839.537 +39377,2025-03-11T23:25:18.068470-07:00,1648.0,10.839454,10839.454 +39378,2025-03-11T23:25:28.902508-07:00,1694.0,10.834038,10834.038 +39379,2025-03-11T23:25:39.734619-07:00,1698.0,10.832111,10832.111 +39380,2025-03-11T23:25:50.571513-07:00,1629.0,10.836894,10836.894 +39381,2025-03-11T23:26:01.412287-07:00,1692.0,10.840774,10840.774 +39382,2025-03-11T23:26:12.259493-07:00,1616.0,10.847206,10847.206 +39383,2025-03-11T23:26:23.096604-07:00,1706.0,10.837111,10837.111 +39384,2025-03-11T23:26:33.931578-07:00,1657.0,10.834974,10834.974 +39385,2025-03-11T23:26:44.775546-07:00,1687.0,10.843968,10843.968 +39386,2025-03-11T23:26:55.622291-07:00,1621.0,10.846745,10846.745 +39387,2025-03-11T23:27:06.465860-07:00,1688.0,10.843569,10843.569 +39388,2025-03-11T23:27:17.300488-07:00,1707.0,10.834628,10834.628 +39389,2025-03-11T23:27:28.145288-07:00,1705.0,10.8448,10844.8 +39390,2025-03-11T23:27:38.993426-07:00,1703.0,10.848138,10848.138 +39391,2025-03-11T23:27:49.828465-07:00,1691.0,10.835039,10835.039 +39392,2025-03-11T23:28:00.659521-07:00,1707.0,10.831056,10831.056 +39393,2025-03-11T23:28:11.502844-07:00,1690.0,10.843323,10843.323 +39394,2025-03-11T23:28:22.346625-07:00,1695.0,10.843781,10843.781 +39395,2025-03-11T23:28:33.189327-07:00,1649.0,10.842702,10842.702 +39396,2025-03-11T23:28:44.030422-07:00,1705.0,10.841095,10841.095 +39397,2025-03-11T23:28:54.865178-07:00,1651.0,10.834756,10834.756 +39398,2025-03-11T23:29:05.712138-07:00,1664.0,10.84696,10846.96 +39399,2025-03-11T23:29:16.546292-07:00,1664.0,10.834154,10834.154 +39400,2025-03-11T23:29:27.390280-07:00,1701.0,10.843988,10843.988 +39401,2025-03-11T23:29:38.240286-07:00,1694.0,10.850006,10850.006 +39402,2025-03-11T23:29:49.079873-07:00,1696.0,10.839587,10839.587 +39403,2025-03-11T23:29:59.923565-07:00,1653.0,10.843692,10843.692 +39404,2025-03-11T23:30:10.771705-07:00,1709.0,10.84814,10848.14 +39405,2025-03-11T23:30:21.607400-07:00,1625.0,10.835695,10835.695 +39406,2025-03-11T23:30:32.457763-07:00,1633.0,10.850363,10850.363 +39407,2025-03-11T23:30:43.306685-07:00,1663.0,10.848922,10848.922 +39408,2025-03-11T23:30:54.144280-07:00,1615.0,10.837595,10837.595 +39409,2025-03-11T23:31:04.985257-07:00,1675.0,10.840977,10840.977 +39410,2025-03-11T23:31:15.831304-07:00,1695.0,10.846047,10846.047 +39411,2025-03-11T23:31:26.678588-07:00,1675.0,10.847284,10847.284 +39412,2025-03-11T23:31:37.516722-07:00,1710.0,10.838134,10838.134 +39413,2025-03-11T23:31:48.364680-07:00,1661.0,10.847958,10847.958 +39414,2025-03-11T23:31:59.203278-07:00,1657.0,10.838598,10838.598 +39415,2025-03-11T23:32:10.045288-07:00,1709.0,10.84201,10842.01 +39416,2025-03-11T23:32:20.893663-07:00,1702.0,10.848375,10848.375 +39417,2025-03-11T23:32:31.723337-07:00,1709.0,10.829674,10829.674 +39418,2025-03-11T23:32:42.564284-07:00,1685.0,10.840947,10840.947 +39419,2025-03-11T23:32:53.411289-07:00,1690.0,10.847005,10847.005 +39420,2025-03-11T23:33:04.249479-07:00,1688.0,10.83819,10838.19 +39421,2025-03-11T23:33:15.093644-07:00,1709.0,10.844165,10844.165 +39422,2025-03-11T23:33:25.934650-07:00,1654.0,10.841006,10841.006 +39423,2025-03-11T23:33:36.783494-07:00,1696.0,10.848844,10848.844 +39424,2025-03-11T23:33:47.622559-07:00,1703.0,10.839065,10839.065 +39425,2025-03-11T23:33:58.476918-07:00,1663.0,10.854359,10854.359 +39426,2025-03-11T23:34:09.316372-07:00,1682.0,10.839454,10839.454 +39427,2025-03-11T23:34:20.162269-07:00,1704.0,10.845897,10845.897 +39428,2025-03-11T23:34:30.999694-07:00,1680.0,10.837425,10837.425 +39429,2025-03-11T23:34:41.850439-07:00,1664.0,10.850745,10850.745 +39430,2025-03-11T23:34:52.695885-07:00,1690.0,10.845446,10845.446 +39431,2025-03-11T23:35:03.538494-07:00,1666.0,10.842609,10842.609 +39432,2025-03-11T23:35:14.375617-07:00,1698.0,10.837123,10837.123 +39433,2025-03-11T23:35:25.221864-07:00,1706.0,10.846247,10846.247 +39434,2025-03-11T23:35:36.068879-07:00,1663.0,10.847015,10847.015 +39435,2025-03-11T23:35:46.900290-07:00,1703.0,10.831411,10831.411 +39436,2025-03-11T23:35:57.749416-07:00,1669.0,10.849126,10849.126 +39437,2025-03-11T23:36:08.588296-07:00,1642.0,10.83888,10838.88 +39438,2025-03-11T23:36:19.432640-07:00,1621.0,10.844344,10844.344 +39439,2025-03-11T23:36:30.271326-07:00,1698.0,10.838686,10838.686 +39440,2025-03-11T23:36:41.116915-07:00,1677.0,10.845589,10845.589 +39441,2025-03-11T23:36:51.969834-07:00,1709.0,10.852919,10852.919 +39442,2025-03-11T23:37:02.809508-07:00,1623.0,10.839674,10839.674 +39443,2025-03-11T23:37:13.651255-07:00,1709.0,10.841747,10841.747 +39444,2025-03-11T23:37:24.488522-07:00,1685.0,10.837267,10837.267 +39445,2025-03-11T23:37:35.330257-07:00,1654.0,10.841735,10841.735 +39446,2025-03-11T23:37:46.174286-07:00,1707.0,10.844029,10844.029 +39447,2025-03-11T23:37:57.016930-07:00,1709.0,10.842644,10842.644 +39448,2025-03-11T23:38:07.859454-07:00,1664.0,10.842524,10842.524 +39449,2025-03-11T23:38:18.704425-07:00,1659.0,10.844971,10844.971 +39450,2025-03-11T23:38:29.536535-07:00,1633.0,10.83211,10832.11 +39451,2025-03-11T23:38:40.372286-07:00,1695.0,10.835751,10835.751 +39452,2025-03-11T23:38:51.206265-07:00,1662.0,10.833979,10833.979 +39453,2025-03-11T23:39:02.039865-07:00,1618.0,10.8336,10833.6 +39454,2025-03-11T23:39:12.884404-07:00,1669.0,10.844539,10844.539 +39455,2025-03-11T23:39:23.713542-07:00,1675.0,10.829138,10829.138 +39456,2025-03-11T23:39:34.559601-07:00,1685.0,10.846059,10846.059 +39457,2025-03-11T23:39:45.387283-07:00,1660.0,10.827682,10827.682 +39458,2025-03-11T23:39:56.223285-07:00,1616.0,10.836002,10836.002 +39459,2025-03-11T23:40:07.065625-07:00,1650.0,10.84234,10842.34 +39460,2025-03-11T23:40:17.897596-07:00,1678.0,10.831971,10831.971 +39461,2025-03-11T23:40:28.725769-07:00,1688.0,10.828173,10828.173 +39462,2025-03-11T23:40:39.569332-07:00,1706.0,10.843563,10843.563 +39463,2025-03-11T23:40:50.402262-07:00,1695.0,10.83293,10832.93 +39464,2025-03-11T23:41:01.244283-07:00,1661.0,10.842021,10842.021 +39465,2025-03-11T23:41:12.085603-07:00,1691.0,10.84132,10841.32 +39466,2025-03-11T23:41:22.911348-07:00,1707.0,10.825745,10825.745 +39467,2025-03-11T23:41:33.750718-07:00,1663.0,10.83937,10839.37 +39468,2025-03-11T23:41:44.586700-07:00,1637.0,10.835982,10835.982 +39469,2025-03-11T23:41:55.423431-07:00,1634.0,10.836731,10836.731 +39470,2025-03-11T23:42:06.262611-07:00,1690.0,10.83918,10839.18 +39471,2025-03-11T23:42:17.111472-07:00,1710.0,10.848861,10848.861 +39472,2025-03-11T23:42:27.947294-07:00,1665.0,10.835822,10835.822 +39473,2025-03-11T23:42:38.785884-07:00,1702.0,10.83859,10838.59 +39474,2025-03-11T23:42:49.628772-07:00,1709.0,10.842888,10842.888 +39475,2025-03-11T23:43:00.477189-07:00,1710.0,10.848417,10848.417 +39476,2025-03-11T23:43:11.309658-07:00,1677.0,10.832469,10832.469 +39477,2025-03-11T23:43:22.161292-07:00,1698.0,10.851634,10851.634 +39478,2025-03-11T23:43:33.000259-07:00,1703.0,10.838967,10838.967 +39479,2025-03-11T23:43:43.844377-07:00,1709.0,10.844118,10844.118 +39480,2025-03-11T23:43:54.692384-07:00,1706.0,10.848007,10848.007 +39481,2025-03-11T23:44:05.530257-07:00,1662.0,10.837873,10837.873 +39482,2025-03-11T23:44:16.377357-07:00,1631.0,10.8471,10847.1 +39483,2025-03-11T23:44:27.214739-07:00,1689.0,10.837382,10837.382 +39484,2025-03-11T23:44:38.063577-07:00,1611.0,10.848838,10848.838 +39485,2025-03-11T23:44:48.901329-07:00,1680.0,10.837752,10837.752 +39486,2025-03-11T23:44:59.745791-07:00,1708.0,10.844462,10844.462 +39487,2025-03-11T23:45:10.589433-07:00,1695.0,10.843642,10843.642 +39488,2025-03-11T23:45:21.426592-07:00,1709.0,10.837159,10837.159 +39489,2025-03-11T23:45:32.273275-07:00,1706.0,10.846683,10846.683 +39490,2025-03-11T23:45:43.101387-07:00,1627.0,10.828112,10828.112 +39491,2025-03-11T23:45:53.949916-07:00,1698.0,10.848529,10848.529 +39492,2025-03-11T23:46:04.784263-07:00,1706.0,10.834347,10834.347 +39493,2025-03-11T23:46:15.624293-07:00,1683.0,10.84003,10840.03 +39494,2025-03-11T23:46:26.467285-07:00,1658.0,10.842992,10842.992 +39495,2025-03-11T23:46:37.310848-07:00,1711.0,10.843563,10843.563 +39496,2025-03-11T23:46:48.154527-07:00,1686.0,10.843679,10843.679 +39497,2025-03-11T23:46:58.990283-07:00,1708.0,10.835756,10835.756 +39498,2025-03-11T23:47:09.839913-07:00,1693.0,10.84963,10849.63 +39499,2025-03-11T23:47:20.682155-07:00,1693.0,10.842242,10842.242 +39500,2025-03-11T23:47:31.513287-07:00,1709.0,10.831132,10831.132 +39501,2025-03-11T23:47:42.358243-07:00,1710.0,10.844956,10844.956 +39502,2025-03-11T23:47:53.206291-07:00,1679.0,10.848048,10848.048 +39503,2025-03-11T23:48:04.038037-07:00,1647.0,10.831746,10831.746 +39504,2025-03-11T23:48:14.879541-07:00,1639.0,10.841504,10841.504 +39505,2025-03-11T23:48:25.722284-07:00,1680.0,10.842743,10842.743 +39506,2025-03-11T23:48:36.567275-07:00,1637.0,10.844991,10844.991 +39507,2025-03-11T23:48:47.404662-07:00,1643.0,10.837387,10837.387 +39508,2025-03-11T23:48:58.248290-07:00,1701.0,10.843628,10843.628 +39509,2025-03-11T23:49:09.084537-07:00,1707.0,10.836247,10836.247 +39510,2025-03-11T23:49:19.922850-07:00,1695.0,10.838313,10838.313 +39511,2025-03-11T23:49:30.757290-07:00,1670.0,10.83444,10834.44 +39512,2025-03-11T23:49:41.614285-07:00,1663.0,10.856995,10856.995 +39513,2025-03-11T23:49:52.457292-07:00,1617.0,10.843007,10843.007 +39514,2025-03-11T23:50:03.294645-07:00,1683.0,10.837353,10837.353 +39515,2025-03-11T23:50:14.143592-07:00,1615.0,10.848947,10848.947 +39516,2025-03-11T23:50:24.990545-07:00,1698.0,10.846953,10846.953 +39517,2025-03-11T23:50:33.087456-07:00,1695.0,8.096911,8096.911 +39518,2025-03-11T23:50:35.830263-07:00,1661.0,2.742807,2742.807 +39519,2025-03-11T23:50:46.671284-07:00,1677.0,10.841021,10841.021 +39520,2025-03-11T23:50:57.516594-07:00,1675.0,10.84531,10845.31 +39521,2025-03-11T23:51:08.359333-07:00,1636.0,10.842739,10842.739 +39522,2025-03-11T23:51:19.203705-07:00,1661.0,10.844372,10844.372 +39523,2025-03-11T23:51:30.044290-07:00,1664.0,10.840585,10840.585 +39524,2025-03-11T23:51:40.888726-07:00,1687.0,10.844436,10844.436 +39525,2025-03-11T23:51:51.737986-07:00,1658.0,10.84926,10849.26 +39526,2025-03-11T23:52:02.572286-07:00,1682.0,10.8343,10834.3 +39527,2025-03-11T23:52:13.412289-07:00,1643.0,10.840003,10840.003 +39528,2025-03-11T23:52:24.261292-07:00,1705.0,10.849003,10849.003 +39529,2025-03-11T23:52:35.103569-07:00,1679.0,10.842277,10842.277 +39530,2025-03-11T23:52:45.944319-07:00,1645.0,10.84075,10840.75 +39531,2025-03-11T23:52:56.790340-07:00,1661.0,10.846021,10846.021 +39532,2025-03-11T23:53:07.628852-07:00,1632.0,10.838512,10838.512 +39533,2025-03-11T23:53:18.471766-07:00,1682.0,10.842914,10842.914 +39534,2025-03-11T23:53:29.325899-07:00,1709.0,10.854133,10854.133 +39535,2025-03-11T23:53:40.159601-07:00,1651.0,10.833702,10833.702 +39536,2025-03-11T23:53:51.001521-07:00,1706.0,10.84192,10841.92 +39537,2025-03-11T23:54:01.848609-07:00,1616.0,10.847088,10847.088 +39538,2025-03-11T23:54:12.690951-07:00,1683.0,10.842342,10842.342 +39539,2025-03-11T23:54:23.537941-07:00,1709.0,10.84699,10846.99 +39540,2025-03-11T23:54:34.376504-07:00,1638.0,10.838563,10838.563 +39541,2025-03-11T23:54:45.225498-07:00,1617.0,10.848994,10848.994 +39542,2025-03-11T23:54:56.070019-07:00,1668.0,10.844521,10844.521 +39543,2025-03-11T23:55:06.913476-07:00,1709.0,10.843457,10843.457 +39544,2025-03-11T23:55:17.747280-07:00,1700.0,10.833804,10833.804 +39545,2025-03-11T23:55:28.598288-07:00,1690.0,10.851008,10851.008 +39546,2025-03-11T23:55:39.434542-07:00,1699.0,10.836254,10836.254 +39547,2025-03-11T23:55:50.281735-07:00,1667.0,10.847193,10847.193 +39548,2025-03-11T23:56:01.123337-07:00,1668.0,10.841602,10841.602 +39549,2025-03-11T23:56:11.971289-07:00,1698.0,10.847952,10847.952 +39550,2025-03-11T23:56:22.808805-07:00,1696.0,10.837516,10837.516 +39551,2025-03-11T23:56:33.648772-07:00,1673.0,10.839967,10839.967 +39552,2025-03-11T23:56:44.500625-07:00,1707.0,10.851853,10851.853 +39553,2025-03-11T23:56:55.342949-07:00,1646.0,10.842324,10842.324 +39554,2025-03-11T23:57:06.177282-07:00,1659.0,10.834333,10834.333 +39555,2025-03-11T23:57:17.022685-07:00,1702.0,10.845403,10845.403 +39556,2025-03-11T23:57:27.866578-07:00,1667.0,10.843893,10843.893 +39557,2025-03-11T23:57:38.709332-07:00,1680.0,10.842754,10842.754 +39558,2025-03-11T23:57:49.553568-07:00,1693.0,10.844236,10844.236 +39559,2025-03-11T23:58:00.395281-07:00,1625.0,10.841713,10841.713 +39560,2025-03-11T23:58:11.237723-07:00,1664.0,10.842442,10842.442 +39561,2025-03-11T23:58:22.071343-07:00,1622.0,10.83362,10833.62 +39562,2025-03-11T23:58:32.912290-07:00,1694.0,10.840947,10840.947 +39563,2025-03-11T23:58:43.757290-07:00,1648.0,10.845,10845.0 +39564,2025-03-11T23:58:54.608293-07:00,1684.0,10.851003,10851.003 +39565,2025-03-11T23:59:05.450497-07:00,1653.0,10.842204,10842.204 +39566,2025-03-11T23:59:16.288286-07:00,1646.0,10.837789,10837.789 +39567,2025-03-11T23:59:27.136280-07:00,1677.0,10.847994,10847.994 +39568,2025-03-11T23:59:37.974620-07:00,1618.0,10.83834,10838.34 +39569,2025-03-11T23:59:48.816177-07:00,1641.0,10.841557,10841.557 +39570,2025-03-11T23:59:59.659556-07:00,1711.0,10.843379,10843.379 diff --git a/time_differences_light_524.csv b/time_differences_light_524.csv new file mode 100644 index 0000000..aaf2df8 --- /dev/null +++ b/time_differences_light_524.csv @@ -0,0 +1,40058 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-03-07T00:00:08.868398-08:00,0.0,0,0 +1,2025-03-07T00:00:19.596482-08:00,0.0,10.728084,10728.084 +2,2025-03-07T00:00:30.339480-08:00,0.0,10.742998,10742.998 +3,2025-03-07T00:00:41.066376-08:00,0.0,10.726896,10726.896 +4,2025-03-07T00:00:51.801529-08:00,0.0,10.735153,10735.153 +5,2025-03-07T00:01:02.532797-08:00,0.0,10.731268,10731.268 +6,2025-03-07T00:01:13.269461-08:00,0.0,10.736664,10736.664 +7,2025-03-07T00:01:23.994467-08:00,0.0,10.725006,10725.006 +8,2025-03-07T00:01:34.734493-08:00,0.0,10.740026,10740.026 +9,2025-03-07T00:01:45.466289-08:00,0.0,10.731796,10731.796 +10,2025-03-07T00:01:56.205523-08:00,0.0,10.739234,10739.234 +11,2025-03-07T00:02:06.937065-08:00,0.0,10.731542,10731.542 +12,2025-03-07T00:02:17.680976-08:00,0.0,10.743911,10743.911 +13,2025-03-07T00:02:28.405366-08:00,0.0,10.72439,10724.39 +14,2025-03-07T00:02:39.138237-08:00,0.0,10.732871,10732.871 +15,2025-03-07T00:02:49.878663-08:00,0.0,10.740426,10740.426 +16,2025-03-07T00:03:00.607296-08:00,0.0,10.728633,10728.633 +17,2025-03-07T00:03:11.344409-08:00,0.0,10.737113,10737.113 +18,2025-03-07T00:03:22.073464-08:00,0.0,10.729055,10729.055 +19,2025-03-07T00:03:32.810535-08:00,0.0,10.737071,10737.071 +20,2025-03-07T00:03:43.542288-08:00,0.0,10.731753,10731.753 +21,2025-03-07T00:03:54.285502-08:00,0.0,10.743214,10743.214 +22,2025-03-07T00:04:05.016487-08:00,0.0,10.730985,10730.985 +23,2025-03-07T00:04:15.746288-08:00,0.0,10.729801,10729.801 +24,2025-03-07T00:04:26.488286-08:00,0.0,10.741998,10741.998 +25,2025-03-07T00:04:37.220395-08:00,0.0,10.732109,10732.109 +26,2025-03-07T00:04:47.956650-08:00,0.0,10.736255,10736.255 +27,2025-03-07T00:04:58.687398-08:00,0.0,10.730748,10730.748 +28,2025-03-07T00:05:09.423389-08:00,0.0,10.735991,10735.991 +29,2025-03-07T00:05:20.155473-08:00,0.0,10.732084,10732.084 +30,2025-03-07T00:05:30.891677-08:00,0.0,10.736204,10736.204 +31,2025-03-07T00:05:41.618285-08:00,0.0,10.726608,10726.608 +32,2025-03-07T00:05:52.352289-08:00,0.0,10.734004,10734.004 +33,2025-03-07T00:06:03.087804-08:00,0.0,10.735515,10735.515 +34,2025-03-07T00:06:13.818305-08:00,0.0,10.730501,10730.501 +35,2025-03-07T00:06:24.548287-08:00,0.0,10.729982,10729.982 +36,2025-03-07T00:06:35.286471-08:00,0.0,10.738184,10738.184 +37,2025-03-07T00:06:46.019475-08:00,0.0,10.733004,10733.004 +38,2025-03-07T00:06:56.749286-08:00,0.0,10.729811,10729.811 +39,2025-03-07T00:07:07.481289-08:00,0.0,10.732003,10732.003 +40,2025-03-07T00:07:18.207255-08:00,0.0,10.725966,10725.966 +41,2025-03-07T00:07:28.938486-08:00,0.0,10.731231,10731.231 +42,2025-03-07T00:07:39.667699-08:00,0.0,10.729213,10729.213 +43,2025-03-07T00:07:50.403469-08:00,0.0,10.73577,10735.77 +44,2025-03-07T00:08:01.142549-08:00,0.0,10.73908,10739.08 +45,2025-03-07T00:08:11.876286-08:00,0.0,10.733737,10733.737 +46,2025-03-07T00:08:22.604313-08:00,0.0,10.728027,10728.027 +47,2025-03-07T00:08:33.344478-08:00,0.0,10.740165,10740.165 +48,2025-03-07T00:08:44.073289-08:00,0.0,10.728811,10728.811 +49,2025-03-07T00:08:54.814491-08:00,0.0,10.741202,10741.202 +50,2025-03-07T00:09:05.544588-08:00,0.0,10.730097,10730.097 +51,2025-03-07T00:09:16.276168-08:00,0.0,10.73158,10731.58 +52,2025-03-07T00:09:27.015287-08:00,0.0,10.739119,10739.119 +53,2025-03-07T00:09:37.747677-08:00,0.0,10.73239,10732.39 +54,2025-03-07T00:09:48.482285-08:00,0.0,10.734608,10734.608 +55,2025-03-07T00:09:59.219682-08:00,0.0,10.737397,10737.397 +56,2025-03-07T00:10:09.956339-08:00,0.0,10.736657,10736.657 +57,2025-03-07T00:10:20.688502-08:00,0.0,10.732163,10732.163 +58,2025-03-07T00:10:31.418016-08:00,0.0,10.729514,10729.514 +59,2025-03-07T00:10:42.150624-08:00,0.0,10.732608,10732.608 +60,2025-03-07T00:10:52.887397-08:00,0.0,10.736773,10736.773 +61,2025-03-07T00:11:03.619289-08:00,0.0,10.731892,10731.892 +62,2025-03-07T00:11:14.352456-08:00,0.0,10.733167,10733.167 +63,2025-03-07T00:11:25.085385-08:00,0.0,10.732929,10732.929 +64,2025-03-07T00:11:35.822288-08:00,0.0,10.736903,10736.903 +65,2025-03-07T00:11:46.554487-08:00,0.0,10.732199,10732.199 +66,2025-03-07T00:11:57.282071-08:00,0.0,10.727584,10727.584 +67,2025-03-07T00:12:08.020288-08:00,0.0,10.738217,10738.217 +68,2025-03-07T00:12:18.747501-08:00,0.0,10.727213,10727.213 +69,2025-03-07T00:12:29.480460-08:00,0.0,10.732959,10732.959 +70,2025-03-07T00:12:40.212289-08:00,0.0,10.731829,10731.829 +71,2025-03-07T00:12:50.939492-08:00,0.0,10.727203,10727.203 +72,2025-03-07T00:13:01.680632-08:00,0.0,10.74114,10741.14 +73,2025-03-07T00:13:12.414469-08:00,0.0,10.733837,10733.837 +74,2025-03-07T00:13:23.141288-08:00,0.0,10.726819,10726.819 +75,2025-03-07T00:13:33.877500-08:00,0.0,10.736212,10736.212 +76,2025-03-07T00:13:44.613455-08:00,0.0,10.735955,10735.955 +77,2025-03-07T00:13:55.341358-08:00,0.0,10.727903,10727.903 +78,2025-03-07T00:14:06.074393-08:00,0.0,10.733035,10733.035 +79,2025-03-07T00:14:16.814519-08:00,0.0,10.740126,10740.126 +80,2025-03-07T00:14:27.548466-08:00,0.0,10.733947,10733.947 +81,2025-03-07T00:14:38.278482-08:00,0.0,10.730016,10730.016 +82,2025-03-07T00:14:49.004287-08:00,0.0,10.725805,10725.805 +83,2025-03-07T00:14:59.738473-08:00,0.0,10.734186,10734.186 +84,2025-03-07T00:15:10.463493-08:00,0.0,10.72502,10725.02 +85,2025-03-07T00:15:21.196492-08:00,0.0,10.732999,10732.999 +86,2025-03-07T00:15:31.930466-08:00,0.0,10.733974,10733.974 +87,2025-03-07T00:15:42.659363-08:00,0.0,10.728897,10728.897 +88,2025-03-07T00:15:53.390501-08:00,0.0,10.731138,10731.138 +89,2025-03-07T00:16:04.121474-08:00,0.0,10.730973,10730.973 +90,2025-03-07T00:16:14.848285-08:00,0.0,10.726811,10726.811 +91,2025-03-07T00:16:25.587573-08:00,0.0,10.739288,10739.288 +92,2025-03-07T00:16:36.320495-08:00,0.0,10.732922,10732.922 +93,2025-03-07T00:16:47.052438-08:00,0.0,10.731943,10731.943 +94,2025-03-07T00:16:57.781289-08:00,0.0,10.728851,10728.851 +95,2025-03-07T00:17:08.511301-08:00,0.0,10.730012,10730.012 +96,2025-03-07T00:17:19.238612-08:00,0.0,10.727311,10727.311 +97,2025-03-07T00:17:29.965478-08:00,0.0,10.726866,10726.866 +98,2025-03-07T00:17:40.703752-08:00,0.0,10.738274,10738.274 +99,2025-03-07T00:17:51.428289-08:00,0.0,10.724537,10724.537 +100,2025-03-07T00:18:02.160288-08:00,0.0,10.731999,10731.999 +101,2025-03-07T00:18:12.889701-08:00,0.0,10.729413,10729.413 +102,2025-03-07T00:18:23.616286-08:00,0.0,10.726585,10726.585 +103,2025-03-07T00:18:34.356493-08:00,0.0,10.740207,10740.207 +104,2025-03-07T00:18:45.082491-08:00,0.0,10.725998,10725.998 +105,2025-03-07T00:18:55.809289-08:00,0.0,10.726798,10726.798 +106,2025-03-07T00:19:06.539576-08:00,0.0,10.730287,10730.287 +107,2025-03-07T00:19:17.277303-08:00,0.0,10.737727,10737.727 +108,2025-03-07T00:19:28.003490-08:00,0.0,10.726187,10726.187 +109,2025-03-07T00:19:38.727491-08:00,0.0,10.724001,10724.001 +110,2025-03-07T00:19:49.465467-08:00,0.0,10.737976,10737.976 +111,2025-03-07T00:20:00.193440-08:00,0.0,10.727973,10727.973 +112,2025-03-07T00:20:10.928285-08:00,0.0,10.734845,10734.845 +113,2025-03-07T00:20:21.661284-08:00,0.0,10.732999,10732.999 +114,2025-03-07T00:20:32.386099-08:00,0.0,10.724815,10724.815 +115,2025-03-07T00:20:43.116496-08:00,0.0,10.730397,10730.397 +116,2025-03-07T00:20:53.850851-08:00,0.0,10.734355,10734.355 +117,2025-03-07T00:21:04.579322-08:00,0.0,10.728471,10728.471 +118,2025-03-07T00:21:15.310967-08:00,0.0,10.731645,10731.645 +119,2025-03-07T00:21:26.034471-08:00,0.0,10.723504,10723.504 +120,2025-03-07T00:21:36.763496-08:00,0.0,10.729025,10729.025 +121,2025-03-07T00:21:47.498289-08:00,0.0,10.734793,10734.793 +122,2025-03-07T00:21:58.234474-08:00,0.0,10.736185,10736.185 +123,2025-03-07T00:22:08.956323-08:00,0.0,10.721849,10721.849 +124,2025-03-07T00:22:19.685315-08:00,0.0,10.728992,10728.992 +125,2025-03-07T00:22:30.415490-08:00,0.0,10.730175,10730.175 +126,2025-03-07T00:22:41.134499-08:00,0.0,10.719009,10719.009 +127,2025-03-07T00:22:51.864468-08:00,0.0,10.729969,10729.969 +128,2025-03-07T00:23:02.594400-08:00,0.0,10.729932,10729.932 +129,2025-03-07T00:23:13.315477-08:00,0.0,10.721077,10721.077 +130,2025-03-07T00:23:24.036288-08:00,0.0,10.720811,10720.811 +131,2025-03-07T00:23:34.760727-08:00,0.0,10.724439,10724.439 +132,2025-03-07T00:23:45.495464-08:00,0.0,10.734737,10734.737 +133,2025-03-07T00:23:56.215288-08:00,0.0,10.719824,10719.824 +134,2025-03-07T00:24:06.941451-08:00,0.0,10.726163,10726.163 +135,2025-03-07T00:24:17.671297-08:00,0.0,10.729846,10729.846 +136,2025-03-07T00:24:28.394477-08:00,0.0,10.72318,10723.18 +137,2025-03-07T00:24:39.119284-08:00,0.0,10.724807,10724.807 +138,2025-03-07T00:24:49.851290-08:00,0.0,10.732006,10732.006 +139,2025-03-07T00:25:00.568569-08:00,0.0,10.717279,10717.279 +140,2025-03-07T00:25:11.299291-08:00,0.0,10.730722,10730.722 +141,2025-03-07T00:25:22.030477-08:00,0.0,10.731186,10731.186 +142,2025-03-07T00:25:32.747490-08:00,0.0,10.717013,10717.013 +143,2025-03-07T00:25:43.475316-08:00,0.0,10.727826,10727.826 +144,2025-03-07T00:25:54.200308-08:00,0.0,10.724992,10724.992 +145,2025-03-07T00:26:04.930467-08:00,0.0,10.730159,10730.159 +146,2025-03-07T00:26:15.646362-08:00,0.0,10.715895,10715.895 +147,2025-03-07T00:26:23.101917-08:00,0.0,7.455555,7455.555 +148,2025-03-07T00:26:26.364283-08:00,0.0,3.262366,3262.366 +149,2025-03-07T00:26:37.091627-08:00,0.0,10.727344,10727.344 +150,2025-03-07T00:26:47.812344-08:00,0.0,10.720717,10720.717 +151,2025-03-07T00:26:58.538472-08:00,0.0,10.726128,10726.128 +152,2025-03-07T00:27:09.260289-08:00,0.0,10.721817,10721.817 +153,2025-03-07T00:27:19.985467-08:00,0.0,10.725178,10725.178 +154,2025-03-07T00:27:30.714328-08:00,0.0,10.728861,10728.861 +155,2025-03-07T00:27:41.431460-08:00,0.0,10.717132,10717.132 +156,2025-03-07T00:27:52.159448-08:00,0.0,10.727988,10727.988 +157,2025-03-07T00:28:02.883538-08:00,0.0,10.72409,10724.09 +158,2025-03-07T00:28:24.341106-08:00,0.0,21.457568,21457.568 +159,2025-03-07T00:28:35.058745-08:00,0.0,10.717639,10717.639 +160,2025-03-07T00:28:45.785488-08:00,0.0,10.726743,10726.743 +161,2025-03-07T00:28:56.502861-08:00,0.0,10.717373,10717.373 +162,2025-03-07T00:29:07.237289-08:00,0.0,10.734428,10734.428 +163,2025-03-07T00:29:17.965526-08:00,0.0,10.728237,10728.237 +164,2025-03-07T00:29:28.686285-08:00,0.0,10.720759,10720.759 +165,2025-03-07T00:29:39.412356-08:00,0.0,10.726071,10726.071 +166,2025-03-07T00:29:50.136977-08:00,0.0,10.724621,10724.621 +167,2025-03-07T00:30:00.857313-08:00,0.0,10.720336,10720.336 +168,2025-03-07T00:30:11.585578-08:00,0.0,10.728265,10728.265 +169,2025-03-07T00:30:22.314282-08:00,0.0,10.728704,10728.704 +170,2025-03-07T00:30:33.036304-08:00,0.0,10.722022,10722.022 +171,2025-03-07T00:30:43.767449-08:00,0.0,10.731145,10731.145 +172,2025-03-07T00:30:54.494283-08:00,0.0,10.726834,10726.834 +173,2025-03-07T00:31:05.224453-08:00,0.0,10.73017,10730.17 +174,2025-03-07T00:31:15.951487-08:00,0.0,10.727034,10727.034 +175,2025-03-07T00:31:26.683287-08:00,0.0,10.7318,10731.8 +176,2025-03-07T00:31:37.408518-08:00,0.0,10.725231,10725.231 +177,2025-03-07T00:31:48.137500-08:00,0.0,10.728982,10728.982 +178,2025-03-07T00:31:58.866503-08:00,0.0,10.729003,10729.003 +179,2025-03-07T00:32:09.584286-08:00,0.0,10.717783,10717.783 +180,2025-03-07T00:32:20.319392-08:00,0.0,10.735106,10735.106 +181,2025-03-07T00:32:31.043187-08:00,0.0,10.723795,10723.795 +182,2025-03-07T00:32:41.762903-08:00,0.0,10.719716,10719.716 +183,2025-03-07T00:32:52.486742-08:00,0.0,10.723839,10723.839 +184,2025-03-07T00:33:03.216340-08:00,0.0,10.729598,10729.598 +185,2025-03-07T00:33:13.942291-08:00,0.0,10.725951,10725.951 +186,2025-03-07T00:33:24.659491-08:00,0.0,10.7172,10717.2 +187,2025-03-07T00:33:35.388565-08:00,0.0,10.729074,10729.074 +188,2025-03-07T00:33:46.114289-08:00,0.0,10.725724,10725.724 +189,2025-03-07T00:33:56.836287-08:00,0.0,10.721998,10721.998 +190,2025-03-07T00:34:07.565681-08:00,0.0,10.729394,10729.394 +191,2025-03-07T00:34:18.282477-08:00,0.0,10.716796,10716.796 +192,2025-03-07T00:34:29.013469-08:00,0.0,10.730992,10730.992 +193,2025-03-07T00:34:39.738399-08:00,0.0,10.72493,10724.93 +194,2025-03-07T00:34:50.459391-08:00,0.0,10.720992,10720.992 +195,2025-03-07T00:35:01.189286-08:00,0.0,10.729895,10729.895 +196,2025-03-07T00:35:11.906889-08:00,0.0,10.717603,10717.603 +197,2025-03-07T00:35:22.639494-08:00,0.0,10.732605,10732.605 +198,2025-03-07T00:35:33.362311-08:00,0.0,10.722817,10722.817 +199,2025-03-07T00:35:44.083481-08:00,0.0,10.72117,10721.17 +200,2025-03-07T00:35:54.810497-08:00,0.0,10.727016,10727.016 +201,2025-03-07T00:36:05.530843-08:00,0.0,10.720346,10720.346 +202,2025-03-07T00:36:16.261423-08:00,0.0,10.73058,10730.58 +203,2025-03-07T00:36:26.979678-08:00,0.0,10.718255,10718.255 +204,2025-03-07T00:36:37.707282-08:00,0.0,10.727604,10727.604 +205,2025-03-07T00:36:48.430474-08:00,0.0,10.723192,10723.192 +206,2025-03-07T00:36:59.154814-08:00,0.0,10.72434,10724.34 +207,2025-03-07T00:37:09.874281-08:00,0.0,10.719467,10719.467 +208,2025-03-07T00:37:20.593291-08:00,0.0,10.71901,10719.01 +209,2025-03-07T00:37:31.324467-08:00,0.0,10.731176,10731.176 +210,2025-03-07T00:37:42.040572-08:00,0.0,10.716105,10716.105 +211,2025-03-07T00:37:52.765313-08:00,0.0,10.724741,10724.741 +212,2025-03-07T00:38:03.482288-08:00,0.0,10.716975,10716.975 +213,2025-03-07T00:38:14.210699-08:00,0.0,10.728411,10728.411 +214,2025-03-07T00:38:24.930286-08:00,0.0,10.719587,10719.587 +215,2025-03-07T00:38:35.648291-08:00,0.0,10.718005,10718.005 +216,2025-03-07T00:38:46.372512-08:00,0.0,10.724221,10724.221 +217,2025-03-07T00:38:57.089952-08:00,0.0,10.71744,10717.44 +218,2025-03-07T00:39:07.813421-08:00,0.0,10.723469,10723.469 +219,2025-03-07T00:39:18.534341-08:00,0.0,10.72092,10720.92 +220,2025-03-07T00:39:29.260586-08:00,0.0,10.726245,10726.245 +221,2025-03-07T00:39:39.989286-08:00,0.0,10.7287,10728.7 +222,2025-03-07T00:39:50.716719-08:00,0.0,10.727433,10727.433 +223,2025-03-07T00:40:01.435502-08:00,0.0,10.718783,10718.783 +224,2025-03-07T00:40:12.157161-08:00,0.0,10.721659,10721.659 +225,2025-03-07T00:40:22.881478-08:00,0.0,10.724317,10724.317 +226,2025-03-07T00:40:33.602642-08:00,0.0,10.721164,10721.164 +227,2025-03-07T00:40:44.331285-08:00,0.0,10.728643,10728.643 +228,2025-03-07T00:40:55.057114-08:00,0.0,10.725829,10725.829 +229,2025-03-07T00:41:05.777289-08:00,0.0,10.720175,10720.175 +230,2025-03-07T00:41:16.504972-08:00,0.0,10.727683,10727.683 +231,2025-03-07T00:41:27.233401-08:00,0.0,10.728429,10728.429 +232,2025-03-07T00:41:37.962826-08:00,0.0,10.729425,10729.425 +233,2025-03-07T00:41:48.689465-08:00,0.0,10.726639,10726.639 +234,2025-03-07T00:41:59.411289-08:00,0.0,10.721824,10721.824 +235,2025-03-07T00:42:10.134407-08:00,0.0,10.723118,10723.118 +236,2025-03-07T00:42:20.864642-08:00,0.0,10.730235,10730.235 +237,2025-03-07T00:42:31.583289-08:00,0.0,10.718647,10718.647 +238,2025-03-07T00:42:42.314396-08:00,0.0,10.731107,10731.107 +239,2025-03-07T00:42:53.045500-08:00,0.0,10.731104,10731.104 +240,2025-03-07T00:43:03.771565-08:00,0.0,10.726065,10726.065 +241,2025-03-07T00:43:14.490068-08:00,0.0,10.718503,10718.503 +242,2025-03-07T00:43:25.217394-08:00,0.0,10.727326,10727.326 +243,2025-03-07T00:43:35.945325-08:00,0.0,10.727931,10727.931 +244,2025-03-07T00:43:46.676286-08:00,0.0,10.730961,10730.961 +245,2025-03-07T00:43:57.401668-08:00,0.0,10.725382,10725.382 +246,2025-03-07T00:44:08.128348-08:00,0.0,10.72668,10726.68 +247,2025-03-07T00:44:18.855313-08:00,0.0,10.726965,10726.965 +248,2025-03-07T00:44:29.578625-08:00,0.0,10.723312,10723.312 +249,2025-03-07T00:44:40.303312-08:00,0.0,10.724687,10724.687 +250,2025-03-07T00:44:51.026306-08:00,0.0,10.722994,10722.994 +251,2025-03-07T00:45:01.751315-08:00,0.0,10.725009,10725.009 +252,2025-03-07T00:45:12.478464-08:00,0.0,10.727149,10727.149 +253,2025-03-07T00:45:23.204498-08:00,0.0,10.726034,10726.034 +254,2025-03-07T00:45:33.931483-08:00,0.0,10.726985,10726.985 +255,2025-03-07T00:45:44.653394-08:00,0.0,10.721911,10721.911 +256,2025-03-07T00:45:55.384288-08:00,0.0,10.730894,10730.894 +257,2025-03-07T00:46:06.113468-08:00,0.0,10.72918,10729.18 +258,2025-03-07T00:46:16.836285-08:00,0.0,10.722817,10722.817 +259,2025-03-07T00:46:27.563610-08:00,0.0,10.727325,10727.325 +260,2025-03-07T00:46:38.285288-08:00,0.0,10.721678,10721.678 +261,2025-03-07T00:46:49.018286-08:00,0.0,10.732998,10732.998 +262,2025-03-07T00:46:59.742181-08:00,0.0,10.723895,10723.895 +263,2025-03-07T00:47:10.466420-08:00,0.0,10.724239,10724.239 +264,2025-03-07T00:47:21.194461-08:00,0.0,10.728041,10728.041 +265,2025-03-07T00:47:31.919818-08:00,0.0,10.725357,10725.357 +266,2025-03-07T00:47:42.649313-08:00,0.0,10.729495,10729.495 +267,2025-03-07T00:47:53.374523-08:00,0.0,10.72521,10725.21 +268,2025-03-07T00:48:04.101289-08:00,0.0,10.726766,10726.766 +269,2025-03-07T00:48:14.833379-08:00,0.0,10.73209,10732.09 +270,2025-03-07T00:48:25.551287-08:00,0.0,10.717908,10717.908 +271,2025-03-07T00:48:36.276301-08:00,0.0,10.725014,10725.014 +272,2025-03-07T00:48:47.006698-08:00,0.0,10.730397,10730.397 +273,2025-03-07T00:48:57.730414-08:00,0.0,10.723716,10723.716 +274,2025-03-07T00:49:08.457561-08:00,0.0,10.727147,10727.147 +275,2025-03-07T00:49:19.178487-08:00,0.0,10.720926,10720.926 +276,2025-03-07T00:49:29.907454-08:00,0.0,10.728967,10728.967 +277,2025-03-07T00:49:40.632286-08:00,0.0,10.724832,10724.832 +278,2025-03-07T00:49:51.360669-08:00,0.0,10.728383,10728.383 +279,2025-03-07T00:50:02.085287-08:00,0.0,10.724618,10724.618 +280,2025-03-07T00:50:12.813288-08:00,0.0,10.728001,10728.001 +281,2025-03-07T00:50:23.539732-08:00,0.0,10.726444,10726.444 +282,2025-03-07T00:50:34.262283-08:00,0.0,10.722551,10722.551 +283,2025-03-07T00:50:44.986467-08:00,0.0,10.724184,10724.184 +284,2025-03-07T00:50:55.704356-08:00,0.0,10.717889,10717.889 +285,2025-03-07T00:51:06.432390-08:00,0.0,10.728034,10728.034 +286,2025-03-07T00:51:17.153359-08:00,0.0,10.720969,10720.969 +287,2025-03-07T00:51:27.887415-08:00,0.0,10.734056,10734.056 +288,2025-03-07T00:51:38.602486-08:00,0.0,10.715071,10715.071 +289,2025-03-07T00:51:49.325285-08:00,0.0,10.722799,10722.799 +290,2025-03-07T00:52:00.061475-08:00,0.0,10.73619,10736.19 +291,2025-03-07T00:52:10.779500-08:00,0.0,10.718025,10718.025 +292,2025-03-07T00:52:21.581653-08:00,0.0,10.802153,10802.153 +293,2025-03-07T00:52:32.302524-08:00,0.0,10.720871,10720.871 +294,2025-03-07T00:52:43.033935-08:00,0.0,10.731411,10731.411 +295,2025-03-07T00:52:53.757448-08:00,0.0,10.723513,10723.513 +296,2025-03-07T00:53:04.478628-08:00,0.0,10.72118,10721.18 +297,2025-03-07T00:53:15.207287-08:00,0.0,10.728659,10728.659 +298,2025-03-07T00:53:25.930449-08:00,0.0,10.723162,10723.162 +299,2025-03-07T00:53:36.661659-08:00,0.0,10.73121,10731.21 +300,2025-03-07T00:53:47.382447-08:00,0.0,10.720788,10720.788 +301,2025-03-07T00:53:58.116538-08:00,0.0,10.734091,10734.091 +302,2025-03-07T00:54:08.835451-08:00,0.0,10.718913,10718.913 +303,2025-03-07T00:54:19.566448-08:00,0.0,10.730997,10730.997 +304,2025-03-07T00:54:30.291800-08:00,0.0,10.725352,10725.352 +305,2025-03-07T00:54:41.016821-08:00,0.0,10.725021,10725.021 +306,2025-03-07T00:54:51.742718-08:00,0.0,10.725897,10725.897 +307,2025-03-07T00:55:02.467448-08:00,0.0,10.72473,10724.73 +308,2025-03-07T00:55:13.190450-08:00,0.0,10.723002,10723.002 +309,2025-03-07T00:55:23.923636-08:00,0.0,10.733186,10733.186 +310,2025-03-07T00:55:34.649449-08:00,0.0,10.725813,10725.813 +311,2025-03-07T00:55:45.379309-08:00,0.0,10.72986,10729.86 +312,2025-03-07T00:55:56.105474-08:00,0.0,10.726165,10726.165 +313,2025-03-07T00:56:06.834450-08:00,0.0,10.728976,10728.976 +314,2025-03-07T00:56:17.557147-08:00,0.0,10.722697,10722.697 +315,2025-03-07T00:56:28.291522-08:00,0.0,10.734375,10734.375 +316,2025-03-07T00:56:39.016683-08:00,0.0,10.725161,10725.161 +317,2025-03-07T00:56:49.748673-08:00,0.0,10.73199,10731.99 +318,2025-03-07T00:57:00.478461-08:00,0.0,10.729788,10729.788 +319,2025-03-07T00:57:11.195593-08:00,0.0,10.717132,10717.132 +320,2025-03-07T00:57:21.931450-08:00,0.0,10.735857,10735.857 +321,2025-03-07T00:57:32.657448-08:00,0.0,10.725998,10725.998 +322,2025-03-07T00:57:43.380655-08:00,0.0,10.723207,10723.207 +323,2025-03-07T00:57:54.107598-08:00,0.0,10.726943,10726.943 +324,2025-03-07T00:58:04.839448-08:00,0.0,10.73185,10731.85 +325,2025-03-07T00:58:15.567768-08:00,0.0,10.72832,10728.32 +326,2025-03-07T00:58:26.289813-08:00,0.0,10.722045,10722.045 +327,2025-03-07T00:58:37.013448-08:00,0.0,10.723635,10723.635 +328,2025-03-07T00:58:47.741451-08:00,0.0,10.728003,10728.003 +329,2025-03-07T00:58:58.472559-08:00,0.0,10.731108,10731.108 +330,2025-03-07T00:59:09.198484-08:00,0.0,10.725925,10725.925 +331,2025-03-07T00:59:19.929918-08:00,0.0,10.731434,10731.434 +332,2025-03-07T00:59:30.654618-08:00,0.0,10.7247,10724.7 +333,2025-03-07T00:59:41.378474-08:00,0.0,10.723856,10723.856 +334,2025-03-07T00:59:52.111661-08:00,0.0,10.733187,10733.187 +335,2025-03-07T01:00:02.837579-08:00,0.0,10.725918,10725.918 +336,2025-03-07T01:00:13.557633-08:00,0.0,10.720054,10720.054 +337,2025-03-07T01:00:24.282512-08:00,0.0,10.724879,10724.879 +338,2025-03-07T01:00:35.018444-08:00,0.0,10.735932,10735.932 +339,2025-03-07T01:00:45.744447-08:00,0.0,10.726003,10726.003 +340,2025-03-07T01:00:56.466451-08:00,0.0,10.722004,10722.004 +341,2025-03-07T01:01:07.199713-08:00,0.0,10.733262,10733.262 +342,2025-03-07T01:01:17.922993-08:00,0.0,10.72328,10723.28 +343,2025-03-07T01:01:28.644450-08:00,0.0,10.721457,10721.457 +344,2025-03-07T01:01:39.363471-08:00,0.0,10.719021,10719.021 +345,2025-03-07T01:01:50.095473-08:00,0.0,10.732002,10732.002 +346,2025-03-07T01:02:00.816625-08:00,0.0,10.721152,10721.152 +347,2025-03-07T01:02:11.550485-08:00,0.0,10.73386,10733.86 +348,2025-03-07T01:02:22.281448-08:00,0.0,10.730963,10730.963 +349,2025-03-07T01:02:32.998623-08:00,0.0,10.717175,10717.175 +350,2025-03-07T01:02:43.726451-08:00,0.0,10.727828,10727.828 +351,2025-03-07T01:02:54.452839-08:00,0.0,10.726388,10726.388 +352,2025-03-07T01:03:05.177448-08:00,0.0,10.724609,10724.609 +353,2025-03-07T01:03:15.904451-08:00,0.0,10.727003,10727.003 +354,2025-03-07T01:03:26.633684-08:00,0.0,10.729233,10729.233 +355,2025-03-07T01:03:37.363449-08:00,0.0,10.729765,10729.765 +356,2025-03-07T01:03:48.084633-08:00,0.0,10.721184,10721.184 +357,2025-03-07T01:03:58.809655-08:00,0.0,10.725022,10725.022 +358,2025-03-07T01:04:09.536448-08:00,0.0,10.726793,10726.793 +359,2025-03-07T01:04:20.269610-08:00,0.0,10.733162,10733.162 +360,2025-03-07T01:04:30.991933-08:00,0.0,10.722323,10722.323 +361,2025-03-07T01:04:41.720629-08:00,0.0,10.728696,10728.696 +362,2025-03-07T01:04:52.450450-08:00,0.0,10.729821,10729.821 +363,2025-03-07T01:05:03.175659-08:00,0.0,10.725209,10725.209 +364,2025-03-07T01:05:13.902471-08:00,0.0,10.726812,10726.812 +365,2025-03-07T01:05:24.629509-08:00,0.0,10.727038,10727.038 +366,2025-03-07T01:05:35.342450-08:00,0.0,10.712941,10712.941 +367,2025-03-07T01:05:46.074454-08:00,0.0,10.732004,10732.004 +368,2025-03-07T01:05:56.798666-08:00,0.0,10.724212,10724.212 +369,2025-03-07T01:06:07.525518-08:00,0.0,10.726852,10726.852 +370,2025-03-07T01:06:18.242838-08:00,0.0,10.71732,10717.32 +371,2025-03-07T01:06:28.966521-08:00,0.0,10.723683,10723.683 +372,2025-03-07T01:06:39.687651-08:00,0.0,10.72113,10721.13 +373,2025-03-07T01:06:50.410450-08:00,0.0,10.722799,10722.799 +374,2025-03-07T01:07:01.136875-08:00,0.0,10.726425,10726.425 +375,2025-03-07T01:07:11.863448-08:00,0.0,10.726573,10726.573 +376,2025-03-07T01:07:22.590474-08:00,0.0,10.727026,10727.026 +377,2025-03-07T01:07:33.320619-08:00,0.0,10.730145,10730.145 +378,2025-03-07T01:07:44.051483-08:00,0.0,10.730864,10730.864 +379,2025-03-07T01:07:54.783687-08:00,0.0,10.732204,10732.204 +380,2025-03-07T01:08:05.503444-08:00,0.0,10.719757,10719.757 +381,2025-03-07T01:08:16.235450-08:00,0.0,10.732006,10732.006 +382,2025-03-07T01:08:26.959548-08:00,0.0,10.724098,10724.098 +383,2025-03-07T01:08:37.688474-08:00,0.0,10.728926,10728.926 +384,2025-03-07T01:08:48.415677-08:00,0.0,10.727203,10727.203 +385,2025-03-07T01:08:59.143649-08:00,0.0,10.727972,10727.972 +386,2025-03-07T01:09:09.863654-08:00,0.0,10.720005,10720.005 +387,2025-03-07T01:09:20.589665-08:00,0.0,10.726011,10726.011 +388,2025-03-07T01:09:31.313611-08:00,0.0,10.723946,10723.946 +389,2025-03-07T01:09:42.042685-08:00,0.0,10.729074,10729.074 +390,2025-03-07T01:09:52.766608-08:00,0.0,10.723923,10723.923 +391,2025-03-07T01:10:03.485477-08:00,0.0,10.718869,10718.869 +392,2025-03-07T01:10:14.209450-08:00,0.0,10.723973,10723.973 +393,2025-03-07T01:10:24.939443-08:00,0.0,10.729993,10729.993 +394,2025-03-07T01:10:35.665039-08:00,0.0,10.725596,10725.596 +395,2025-03-07T01:10:46.390449-08:00,0.0,10.72541,10725.41 +396,2025-03-07T01:10:57.115686-08:00,0.0,10.725237,10725.237 +397,2025-03-07T01:11:07.839449-08:00,0.0,10.723763,10723.763 +398,2025-03-07T01:11:18.564644-08:00,0.0,10.725195,10725.195 +399,2025-03-07T01:11:29.287474-08:00,0.0,10.72283,10722.83 +400,2025-03-07T01:11:40.017516-08:00,0.0,10.730042,10730.042 +401,2025-03-07T01:11:50.738041-08:00,0.0,10.720525,10720.525 +402,2025-03-07T01:12:01.464660-08:00,0.0,10.726619,10726.619 +403,2025-03-07T01:12:12.188850-08:00,0.0,10.72419,10724.19 +404,2025-03-07T01:12:22.916450-08:00,0.0,10.7276,10727.6 +405,2025-03-07T01:12:33.646006-08:00,0.0,10.729556,10729.556 +406,2025-03-07T01:12:44.365607-08:00,0.0,10.719601,10719.601 +407,2025-03-07T01:12:55.096451-08:00,0.0,10.730844,10730.844 +408,2025-03-07T01:13:05.814445-08:00,0.0,10.717994,10717.994 +409,2025-03-07T01:13:16.540667-08:00,0.0,10.726222,10726.222 +410,2025-03-07T01:13:27.268641-08:00,0.0,10.727974,10727.974 +411,2025-03-07T01:13:37.991520-08:00,0.0,10.722879,10722.879 +412,2025-03-07T01:13:48.713594-08:00,0.0,10.722074,10722.074 +413,2025-03-07T01:13:59.441510-08:00,0.0,10.727916,10727.916 +414,2025-03-07T01:14:10.166452-08:00,0.0,10.724942,10724.942 +415,2025-03-07T01:14:20.888451-08:00,0.0,10.721999,10721.999 +416,2025-03-07T01:14:31.611861-08:00,0.0,10.72341,10723.41 +417,2025-03-07T01:14:42.345899-08:00,0.0,10.734038,10734.038 +418,2025-03-07T01:14:53.067450-08:00,0.0,10.721551,10721.551 +419,2025-03-07T01:15:03.791886-08:00,0.0,10.724436,10724.436 +420,2025-03-07T01:15:14.518448-08:00,0.0,10.726562,10726.562 +421,2025-03-07T01:15:25.251539-08:00,0.0,10.733091,10733.091 +422,2025-03-07T01:15:35.976493-08:00,0.0,10.724954,10724.954 +423,2025-03-07T01:15:46.698448-08:00,0.0,10.721955,10721.955 +424,2025-03-07T01:15:57.422387-08:00,0.0,10.723939,10723.939 +425,2025-03-07T01:16:08.142451-08:00,0.0,10.720064,10720.064 +426,2025-03-07T01:16:18.867636-08:00,0.0,10.725185,10725.185 +427,2025-03-07T01:16:29.587626-08:00,0.0,10.71999,10719.99 +428,2025-03-07T01:16:40.313634-08:00,0.0,10.726008,10726.008 +429,2025-03-07T01:16:51.046715-08:00,0.0,10.733081,10733.081 +430,2025-03-07T01:17:01.768652-08:00,0.0,10.721937,10721.937 +431,2025-03-07T01:17:12.495554-08:00,0.0,10.726902,10726.902 +432,2025-03-07T01:17:23.222654-08:00,0.0,10.7271,10727.1 +433,2025-03-07T01:17:33.943642-08:00,0.0,10.720988,10720.988 +434,2025-03-07T01:17:44.673501-08:00,0.0,10.729859,10729.859 +435,2025-03-07T01:17:55.403914-08:00,0.0,10.730413,10730.413 +436,2025-03-07T01:18:06.120445-08:00,0.0,10.716531,10716.531 +437,2025-03-07T01:18:16.853545-08:00,0.0,10.7331,10733.1 +438,2025-03-07T01:18:27.573867-08:00,0.0,10.720322,10720.322 +439,2025-03-07T01:18:38.303642-08:00,0.0,10.729775,10729.775 +440,2025-03-07T01:18:49.023024-08:00,0.0,10.719382,10719.382 +441,2025-03-07T01:18:59.759654-08:00,0.0,10.73663,10736.63 +442,2025-03-07T01:19:10.485451-08:00,0.0,10.725797,10725.797 +443,2025-03-07T01:19:21.209473-08:00,0.0,10.724022,10724.022 +444,2025-03-07T01:19:31.934653-08:00,0.0,10.72518,10725.18 +445,2025-03-07T01:19:42.665687-08:00,0.0,10.731034,10731.034 +446,2025-03-07T01:19:53.384451-08:00,0.0,10.718764,10718.764 +447,2025-03-07T01:20:04.118647-08:00,0.0,10.734196,10734.196 +448,2025-03-07T01:20:14.836514-08:00,0.0,10.717867,10717.867 +449,2025-03-07T01:20:25.567555-08:00,0.0,10.731041,10731.041 +450,2025-03-07T01:20:36.293840-08:00,0.0,10.726285,10726.285 +451,2025-03-07T01:20:47.018445-08:00,0.0,10.724605,10724.605 +452,2025-03-07T01:20:57.746568-08:00,0.0,10.728123,10728.123 +453,2025-03-07T01:21:08.465476-08:00,0.0,10.718908,10718.908 +454,2025-03-07T01:21:19.196853-08:00,0.0,10.731377,10731.377 +455,2025-03-07T01:21:29.919570-08:00,0.0,10.722717,10722.717 +456,2025-03-07T01:21:40.643447-08:00,0.0,10.723877,10723.877 +457,2025-03-07T01:21:51.369244-08:00,0.0,10.725797,10725.797 +458,2025-03-07T01:22:02.095450-08:00,0.0,10.726206,10726.206 +459,2025-03-07T01:22:12.812548-08:00,0.0,10.717098,10717.098 +460,2025-03-07T01:22:23.538451-08:00,0.0,10.725903,10725.903 +461,2025-03-07T01:22:34.264649-08:00,0.0,10.726198,10726.198 +462,2025-03-07T01:22:44.985514-08:00,0.0,10.720865,10720.865 +463,2025-03-07T01:22:55.718189-08:00,0.0,10.732675,10732.675 +464,2025-03-07T01:23:06.437450-08:00,0.0,10.719261,10719.261 +465,2025-03-07T01:23:17.164703-08:00,0.0,10.727253,10727.253 +466,2025-03-07T01:23:27.897638-08:00,0.0,10.732935,10732.935 +467,2025-03-07T01:23:38.616452-08:00,0.0,10.718814,10718.814 +468,2025-03-07T01:23:49.345848-08:00,0.0,10.729396,10729.396 +469,2025-03-07T01:24:00.074616-08:00,0.0,10.728768,10728.768 +470,2025-03-07T01:24:10.804588-08:00,0.0,10.729972,10729.972 +471,2025-03-07T01:24:21.532848-08:00,0.0,10.72826,10728.26 +472,2025-03-07T01:24:32.249698-08:00,0.0,10.71685,10716.85 +473,2025-03-07T01:24:42.979610-08:00,0.0,10.729912,10729.912 +474,2025-03-07T01:24:53.698597-08:00,0.0,10.718987,10718.987 +475,2025-03-07T01:25:04.425110-08:00,0.0,10.726513,10726.513 +476,2025-03-07T01:25:15.151447-08:00,0.0,10.726337,10726.337 +477,2025-03-07T01:25:25.871879-08:00,0.0,10.720432,10720.432 +478,2025-03-07T01:25:36.592450-08:00,0.0,10.720571,10720.571 +479,2025-03-07T01:25:47.323973-08:00,0.0,10.731523,10731.523 +480,2025-03-07T01:25:58.046475-08:00,0.0,10.722502,10722.502 +481,2025-03-07T01:26:08.769450-08:00,0.0,10.722975,10722.975 +482,2025-03-07T01:26:19.498629-08:00,0.0,10.729179,10729.179 +483,2025-03-07T01:26:30.213516-08:00,0.0,10.714887,10714.887 +484,2025-03-07T01:26:40.942641-08:00,0.0,10.729125,10729.125 +485,2025-03-07T01:26:51.657532-08:00,0.0,10.714891,10714.891 +486,2025-03-07T01:27:02.381490-08:00,0.0,10.723958,10723.958 +487,2025-03-07T01:27:13.103592-08:00,0.0,10.722102,10722.102 +488,2025-03-07T01:27:23.835606-08:00,0.0,10.732014,10732.014 +489,2025-03-07T01:27:34.550453-08:00,0.0,10.714847,10714.847 +490,2025-03-07T01:27:45.277621-08:00,0.0,10.727168,10727.168 +491,2025-03-07T01:27:55.996449-08:00,0.0,10.718828,10718.828 +492,2025-03-07T01:28:06.721553-08:00,0.0,10.725104,10725.104 +493,2025-03-07T01:28:17.448454-08:00,0.0,10.726901,10726.901 +494,2025-03-07T01:28:28.171672-08:00,0.0,10.723218,10723.218 +495,2025-03-07T01:28:38.900450-08:00,0.0,10.728778,10728.778 +496,2025-03-07T01:28:49.622448-08:00,0.0,10.721998,10721.998 +497,2025-03-07T01:29:00.346686-08:00,0.0,10.724238,10724.238 +498,2025-03-07T01:29:11.072453-08:00,0.0,10.725767,10725.767 +499,2025-03-07T01:29:21.791199-08:00,0.0,10.718746,10718.746 +500,2025-03-07T01:29:32.516449-08:00,0.0,10.72525,10725.25 +501,2025-03-07T01:29:43.238630-08:00,0.0,10.722181,10722.181 +502,2025-03-07T01:29:53.959476-08:00,0.0,10.720846,10720.846 +503,2025-03-07T01:30:04.676760-08:00,0.0,10.717284,10717.284 +504,2025-03-07T01:30:15.406448-08:00,0.0,10.729688,10729.688 +505,2025-03-07T01:30:26.122296-08:00,0.0,10.715848,10715.848 +506,2025-03-07T01:30:36.845521-08:00,0.0,10.723225,10723.225 +507,2025-03-07T01:30:47.569886-08:00,0.0,10.724365,10724.365 +508,2025-03-07T01:30:58.290450-08:00,0.0,10.720564,10720.564 +509,2025-03-07T01:31:09.007471-08:00,0.0,10.717021,10717.021 +510,2025-03-07T01:31:19.733654-08:00,0.0,10.726183,10726.183 +511,2025-03-07T01:31:30.455284-08:00,0.0,10.72163,10721.63 +512,2025-03-07T01:31:41.178450-08:00,0.0,10.723166,10723.166 +513,2025-03-07T01:31:51.906815-08:00,0.0,10.728365,10728.365 +514,2025-03-07T01:32:02.625484-08:00,0.0,10.718669,10718.669 +515,2025-03-07T01:32:13.353671-08:00,0.0,10.728187,10728.187 +516,2025-03-07T01:32:24.071685-08:00,0.0,10.718014,10718.014 +517,2025-03-07T01:32:34.798500-08:00,0.0,10.726815,10726.815 +518,2025-03-07T01:32:45.518002-08:00,0.0,10.719502,10719.502 +519,2025-03-07T01:32:56.239669-08:00,0.0,10.721667,10721.667 +520,2025-03-07T01:33:06.967446-08:00,0.0,10.727777,10727.777 +521,2025-03-07T01:33:17.691451-08:00,0.0,10.724005,10724.005 +522,2025-03-07T01:33:28.412579-08:00,0.0,10.721128,10721.128 +523,2025-03-07T01:33:39.131915-08:00,0.0,10.719336,10719.336 +524,2025-03-07T01:33:49.862461-08:00,0.0,10.730546,10730.546 +525,2025-03-07T01:34:00.577451-08:00,0.0,10.71499,10714.99 +526,2025-03-07T01:34:11.302690-08:00,0.0,10.725239,10725.239 +527,2025-03-07T01:34:22.018650-08:00,0.0,10.71596,10715.96 +528,2025-03-07T01:34:32.745569-08:00,0.0,10.726919,10726.919 +529,2025-03-07T01:34:43.461446-08:00,0.0,10.715877,10715.877 +530,2025-03-07T01:34:54.184654-08:00,0.0,10.723208,10723.208 +531,2025-03-07T01:35:04.902629-08:00,0.0,10.717975,10717.975 +532,2025-03-07T01:35:15.633448-08:00,0.0,10.730819,10730.819 +533,2025-03-07T01:35:26.350478-08:00,0.0,10.71703,10717.03 +534,2025-03-07T01:35:37.065653-08:00,0.0,10.715175,10715.175 +535,2025-03-07T01:35:47.790699-08:00,0.0,10.725046,10725.046 +536,2025-03-07T01:35:58.515447-08:00,0.0,10.724748,10724.748 +537,2025-03-07T01:36:09.235515-08:00,0.0,10.720068,10720.068 +538,2025-03-07T01:36:19.956660-08:00,0.0,10.721145,10721.145 +539,2025-03-07T01:36:30.681734-08:00,0.0,10.725074,10725.074 +540,2025-03-07T01:36:41.408447-08:00,0.0,10.726713,10726.713 +541,2025-03-07T01:36:52.120451-08:00,0.0,10.712004,10712.004 +542,2025-03-07T01:37:02.842474-08:00,0.0,10.722023,10722.023 +543,2025-03-07T01:37:13.565944-08:00,0.0,10.72347,10723.47 +544,2025-03-07T01:37:24.293513-08:00,0.0,10.727569,10727.569 +545,2025-03-07T01:37:35.018628-08:00,0.0,10.725115,10725.115 +546,2025-03-07T01:37:45.736545-08:00,0.0,10.717917,10717.917 +547,2025-03-07T01:37:56.467732-08:00,0.0,10.731187,10731.187 +548,2025-03-07T01:38:07.196039-08:00,0.0,10.728307,10728.307 +549,2025-03-07T01:38:17.914447-08:00,0.0,10.718408,10718.408 +550,2025-03-07T01:38:28.638657-08:00,0.0,10.72421,10724.21 +551,2025-03-07T01:38:39.361656-08:00,0.0,10.722999,10722.999 +552,2025-03-07T01:38:50.087632-08:00,0.0,10.725976,10725.976 +553,2025-03-07T01:39:00.809648-08:00,0.0,10.722016,10722.016 +554,2025-03-07T01:39:11.530448-08:00,0.0,10.7208,10720.8 +555,2025-03-07T01:39:22.253523-08:00,0.0,10.723075,10723.075 +556,2025-03-07T01:39:32.977628-08:00,0.0,10.724105,10724.105 +557,2025-03-07T01:39:43.704705-08:00,0.0,10.727077,10727.077 +558,2025-03-07T01:39:54.432738-08:00,0.0,10.728033,10728.033 +559,2025-03-07T01:40:05.157626-08:00,0.0,10.724888,10724.888 +560,2025-03-07T01:40:15.871448-08:00,0.0,10.713822,10713.822 +561,2025-03-07T01:40:26.601848-08:00,0.0,10.7304,10730.4 +562,2025-03-07T01:40:37.324444-08:00,0.0,10.722596,10722.596 +563,2025-03-07T01:40:48.051469-08:00,0.0,10.727025,10727.025 +564,2025-03-07T01:40:58.778677-08:00,0.0,10.727208,10727.208 +565,2025-03-07T01:41:09.501631-08:00,0.0,10.722954,10722.954 +566,2025-03-07T01:41:20.223449-08:00,0.0,10.721818,10721.818 +567,2025-03-07T01:41:30.946450-08:00,0.0,10.723001,10723.001 +568,2025-03-07T01:41:41.671728-08:00,0.0,10.725278,10725.278 +569,2025-03-07T01:41:52.394516-08:00,0.0,10.722788,10722.788 +570,2025-03-07T01:42:03.124626-08:00,0.0,10.73011,10730.11 +571,2025-03-07T01:42:13.842655-08:00,0.0,10.718029,10718.029 +572,2025-03-07T01:42:24.579491-08:00,0.0,10.736836,10736.836 +573,2025-03-07T01:42:35.294004-08:00,0.0,10.714513,10714.513 +574,2025-03-07T01:42:46.028669-08:00,0.0,10.734665,10734.665 +575,2025-03-07T01:42:56.747446-08:00,0.0,10.718777,10718.777 +576,2025-03-07T01:43:07.476524-08:00,0.0,10.729078,10729.078 +577,2025-03-07T01:43:18.204549-08:00,0.0,10.728025,10728.025 +578,2025-03-07T01:43:28.927660-08:00,0.0,10.723111,10723.111 +579,2025-03-07T01:43:39.648623-08:00,0.0,10.720963,10720.963 +580,2025-03-07T01:43:50.375450-08:00,0.0,10.726827,10726.827 +581,2025-03-07T01:44:01.101656-08:00,0.0,10.726206,10726.206 +582,2025-03-07T01:44:11.828275-08:00,0.0,10.726619,10726.619 +583,2025-03-07T01:44:22.555453-08:00,0.0,10.727178,10727.178 +584,2025-03-07T01:44:33.286916-08:00,0.0,10.731463,10731.463 +585,2025-03-07T01:44:44.006449-08:00,0.0,10.719533,10719.533 +586,2025-03-07T01:44:54.731496-08:00,0.0,10.725047,10725.047 +587,2025-03-07T01:45:05.463678-08:00,0.0,10.732182,10732.182 +588,2025-03-07T01:45:16.183594-08:00,0.0,10.719916,10719.916 +589,2025-03-07T01:45:26.904459-08:00,0.0,10.720865,10720.865 +590,2025-03-07T01:45:37.636486-08:00,0.0,10.732027,10732.027 +591,2025-03-07T01:45:48.358642-08:00,0.0,10.722156,10722.156 +592,2025-03-07T01:45:59.083450-08:00,0.0,10.724808,10724.808 +593,2025-03-07T01:46:09.818775-08:00,0.0,10.735325,10735.325 +594,2025-03-07T01:46:20.541448-08:00,0.0,10.722673,10722.673 +595,2025-03-07T01:46:31.268450-08:00,0.0,10.727002,10727.002 +596,2025-03-07T01:46:41.986688-08:00,0.0,10.718238,10718.238 +597,2025-03-07T01:46:52.718450-08:00,0.0,10.731762,10731.762 +598,2025-03-07T01:47:03.445644-08:00,0.0,10.727194,10727.194 +599,2025-03-07T01:47:14.162657-08:00,0.0,10.717013,10717.013 +600,2025-03-07T01:47:24.889454-08:00,0.0,10.726797,10726.797 +601,2025-03-07T01:47:35.617599-08:00,0.0,10.728145,10728.145 +602,2025-03-07T01:47:46.349749-08:00,0.0,10.73215,10732.15 +603,2025-03-07T01:47:57.068012-08:00,0.0,10.718263,10718.263 +604,2025-03-07T01:48:07.800452-08:00,0.0,10.73244,10732.44 +605,2025-03-07T01:48:18.525693-08:00,0.0,10.725241,10725.241 +606,2025-03-07T01:48:29.249449-08:00,0.0,10.723756,10723.756 +607,2025-03-07T01:48:39.977451-08:00,0.0,10.728002,10728.002 +608,2025-03-07T01:48:50.704326-08:00,0.0,10.726875,10726.875 +609,2025-03-07T01:49:01.435447-08:00,0.0,10.731121,10731.121 +610,2025-03-07T01:49:12.156608-08:00,0.0,10.721161,10721.161 +611,2025-03-07T01:49:22.885445-08:00,0.0,10.728837,10728.837 +612,2025-03-07T01:49:33.603639-08:00,0.0,10.718194,10718.194 +613,2025-03-07T01:49:44.327476-08:00,0.0,10.723837,10723.837 +614,2025-03-07T01:49:55.058447-08:00,0.0,10.730971,10730.971 +615,2025-03-07T01:50:05.782136-08:00,0.0,10.723689,10723.689 +616,2025-03-07T01:50:16.506612-08:00,0.0,10.724476,10724.476 +617,2025-03-07T01:50:27.226523-08:00,0.0,10.719911,10719.911 +618,2025-03-07T01:50:37.943449-08:00,0.0,10.716926,10716.926 +619,2025-03-07T01:50:48.666617-08:00,0.0,10.723168,10723.168 +620,2025-03-07T01:50:59.399661-08:00,0.0,10.733044,10733.044 +621,2025-03-07T01:51:10.118703-08:00,0.0,10.719042,10719.042 +622,2025-03-07T01:51:20.844448-08:00,0.0,10.725745,10725.745 +623,2025-03-07T01:51:31.564746-08:00,0.0,10.720298,10720.298 +624,2025-03-07T01:51:42.292779-08:00,0.0,10.728033,10728.033 +625,2025-03-07T01:51:53.018669-08:00,0.0,10.72589,10725.89 +626,2025-03-07T01:52:03.744521-08:00,0.0,10.725852,10725.852 +627,2025-03-07T01:52:14.337108-08:00,0.0,10.592587,10592.587 +628,2025-03-07T01:52:25.058062-08:00,0.0,10.720954,10720.954 +629,2025-03-07T01:52:35.778140-08:00,0.0,10.720078,10720.078 +630,2025-03-07T01:52:46.511192-08:00,0.0,10.733052,10733.052 +631,2025-03-07T01:52:57.232894-08:00,0.0,10.721702,10721.702 +632,2025-03-07T01:53:07.961999-08:00,0.0,10.729105,10729.105 +633,2025-03-07T01:53:18.678893-08:00,0.0,10.716894,10716.894 +634,2025-03-07T01:53:29.407287-08:00,0.0,10.728394,10728.394 +635,2025-03-07T01:53:40.127888-08:00,0.0,10.720601,10720.601 +636,2025-03-07T01:53:50.856892-08:00,0.0,10.729004,10729.004 +637,2025-03-07T01:54:01.579145-08:00,0.0,10.722253,10722.253 +638,2025-03-07T01:54:12.311896-08:00,0.0,10.732751,10732.751 +639,2025-03-07T01:54:23.033074-08:00,0.0,10.721178,10721.178 +640,2025-03-07T01:54:33.758105-08:00,0.0,10.725031,10725.031 +641,2025-03-07T01:54:44.488922-08:00,0.0,10.730817,10730.817 +642,2025-03-07T01:54:55.208895-08:00,0.0,10.719973,10719.973 +643,2025-03-07T01:55:05.941288-08:00,0.0,10.732393,10732.393 +644,2025-03-07T01:55:16.659893-08:00,0.0,10.718605,10718.605 +645,2025-03-07T01:55:27.384919-08:00,0.0,10.725026,10725.026 +646,2025-03-07T01:55:38.110072-08:00,0.0,10.725153,10725.153 +647,2025-03-07T01:55:48.831894-08:00,0.0,10.721822,10721.822 +648,2025-03-07T01:55:59.557070-08:00,0.0,10.725176,10725.176 +649,2025-03-07T01:56:10.285922-08:00,0.0,10.728852,10728.852 +650,2025-03-07T01:56:21.017372-08:00,0.0,10.73145,10731.45 +651,2025-03-07T01:56:31.741182-08:00,0.0,10.72381,10723.81 +652,2025-03-07T01:56:42.466892-08:00,0.0,10.72571,10725.71 +653,2025-03-07T01:56:53.194088-08:00,0.0,10.727196,10727.196 +654,2025-03-07T01:57:03.920965-08:00,0.0,10.726877,10726.877 +655,2025-03-07T01:57:14.651256-08:00,0.0,10.730291,10730.291 +656,2025-03-07T01:57:25.369062-08:00,0.0,10.717806,10717.806 +657,2025-03-07T01:57:36.103139-08:00,0.0,10.734077,10734.077 +658,2025-03-07T01:57:46.829140-08:00,0.0,10.726001,10726.001 +659,2025-03-07T01:57:57.547103-08:00,0.0,10.717963,10717.963 +660,2025-03-07T01:58:08.275069-08:00,0.0,10.727966,10727.966 +661,2025-03-07T01:58:19.004974-08:00,0.0,10.729905,10729.905 +662,2025-03-07T01:58:29.726459-08:00,0.0,10.721485,10721.485 +663,2025-03-07T01:58:40.452893-08:00,0.0,10.726434,10726.434 +664,2025-03-07T01:58:51.175893-08:00,0.0,10.723,10723.0 +665,2025-03-07T01:59:01.893919-08:00,0.0,10.718026,10718.026 +666,2025-03-07T01:59:12.619111-08:00,0.0,10.725192,10725.192 +667,2025-03-07T01:59:23.343936-08:00,0.0,10.724825,10724.825 +668,2025-03-07T01:59:34.066895-08:00,0.0,10.722959,10722.959 +669,2025-03-07T01:59:44.790033-08:00,0.0,10.723138,10723.138 +670,2025-03-07T01:59:55.515892-08:00,0.0,10.725859,10725.859 +671,2025-03-07T02:00:06.243217-08:00,0.0,10.727325,10727.325 +672,2025-03-07T02:00:16.961253-08:00,0.0,10.718036,10718.036 +673,2025-03-07T02:00:27.689116-08:00,0.0,10.727863,10727.863 +674,2025-03-07T02:00:38.411893-08:00,0.0,10.722777,10722.777 +675,2025-03-07T02:00:49.132164-08:00,0.0,10.720271,10720.271 +676,2025-03-07T02:00:59.863029-08:00,0.0,10.730865,10730.865 +677,2025-03-07T02:01:10.579148-08:00,0.0,10.716119,10716.119 +678,2025-03-07T02:01:21.304117-08:00,0.0,10.724969,10724.969 +679,2025-03-07T02:01:27.921095-08:00,0.0,6.616978,6616.978 +680,2025-03-07T02:01:32.029897-08:00,0.0,4.108802,4108.802 +681,2025-03-07T02:01:42.758062-08:00,0.0,10.728165,10728.165 +682,2025-03-07T02:01:53.480922-08:00,0.0,10.72286,10722.86 +683,2025-03-07T02:02:04.212086-08:00,0.0,10.731164,10731.164 +684,2025-03-07T02:02:14.939011-08:00,0.0,10.726925,10726.925 +685,2025-03-07T02:02:25.657351-08:00,0.0,10.71834,10718.34 +686,2025-03-07T02:02:36.382921-08:00,0.0,10.72557,10725.57 +687,2025-03-07T02:02:47.107043-08:00,0.0,10.724122,10724.122 +688,2025-03-07T02:02:57.835128-08:00,0.0,10.728085,10728.085 +689,2025-03-07T02:03:08.558100-08:00,0.0,10.722972,10722.972 +690,2025-03-07T02:03:19.281101-08:00,0.0,10.723001,10723.001 +691,2025-03-07T02:03:30.001895-08:00,0.0,10.720794,10720.794 +692,2025-03-07T02:03:40.726061-08:00,0.0,10.724166,10724.166 +693,2025-03-07T02:03:51.453117-08:00,0.0,10.727056,10727.056 +694,2025-03-07T02:04:02.175110-08:00,0.0,10.721993,10721.993 +695,2025-03-07T02:04:12.895988-08:00,0.0,10.720878,10720.878 +696,2025-03-07T02:04:23.616971-08:00,0.0,10.720983,10720.983 +697,2025-03-07T02:04:34.348918-08:00,0.0,10.731947,10731.947 +698,2025-03-07T02:04:45.075926-08:00,0.0,10.727008,10727.008 +699,2025-03-07T02:04:55.789892-08:00,0.0,10.713966,10713.966 +700,2025-03-07T02:05:06.524096-08:00,0.0,10.734204,10734.204 +701,2025-03-07T02:05:17.236920-08:00,0.0,10.712824,10712.824 +702,2025-03-07T02:05:27.960895-08:00,0.0,10.723975,10723.975 +703,2025-03-07T02:05:38.694804-08:00,0.0,10.733909,10733.909 +704,2025-03-07T02:05:49.411099-08:00,0.0,10.716295,10716.295 +705,2025-03-07T02:06:00.135080-08:00,0.0,10.723981,10723.981 +706,2025-03-07T02:06:10.858896-08:00,0.0,10.723816,10723.816 +707,2025-03-07T02:06:21.584686-08:00,0.0,10.72579,10725.79 +708,2025-03-07T02:06:32.309889-08:00,0.0,10.725203,10725.203 +709,2025-03-07T02:06:43.026996-08:00,0.0,10.717107,10717.107 +710,2025-03-07T02:06:53.758022-08:00,0.0,10.731026,10731.026 +711,2025-03-07T02:07:04.477097-08:00,0.0,10.719075,10719.075 +712,2025-03-07T02:07:15.202941-08:00,0.0,10.725844,10725.844 +713,2025-03-07T02:07:25.926032-08:00,0.0,10.723091,10723.091 +714,2025-03-07T02:07:36.657059-08:00,0.0,10.731027,10731.027 +715,2025-03-07T02:07:47.372587-08:00,0.0,10.715528,10715.528 +716,2025-03-07T02:07:58.097077-08:00,0.0,10.72449,10724.49 +717,2025-03-07T02:08:08.823043-08:00,0.0,10.725966,10725.966 +718,2025-03-07T02:08:19.553896-08:00,0.0,10.730853,10730.853 +719,2025-03-07T02:08:30.274918-08:00,0.0,10.721022,10721.022 +720,2025-03-07T02:08:41.001096-08:00,0.0,10.726178,10726.178 +721,2025-03-07T02:08:51.722893-08:00,0.0,10.721797,10721.797 +722,2025-03-07T02:09:02.442895-08:00,0.0,10.720002,10720.002 +723,2025-03-07T02:09:13.166941-08:00,0.0,10.724046,10724.046 +724,2025-03-07T02:09:23.895115-08:00,0.0,10.728174,10728.174 +725,2025-03-07T02:09:34.616930-08:00,0.0,10.721815,10721.815 +726,2025-03-07T02:09:45.339806-08:00,0.0,10.722876,10722.876 +727,2025-03-07T02:09:56.064022-08:00,0.0,10.724216,10724.216 +728,2025-03-07T02:10:06.789895-08:00,0.0,10.725873,10725.873 +729,2025-03-07T02:10:17.516149-08:00,0.0,10.726254,10726.254 +730,2025-03-07T02:10:28.231649-08:00,0.0,10.7155,10715.5 +731,2025-03-07T02:10:38.956080-08:00,0.0,10.724431,10724.431 +732,2025-03-07T02:10:49.680901-08:00,0.0,10.724821,10724.821 +733,2025-03-07T02:11:00.403348-08:00,0.0,10.722447,10722.447 +734,2025-03-07T02:11:11.128893-08:00,0.0,10.725545,10725.545 +735,2025-03-07T02:11:21.847895-08:00,0.0,10.719002,10719.002 +736,2025-03-07T02:11:32.574896-08:00,0.0,10.727001,10727.001 +737,2025-03-07T02:11:43.292306-08:00,0.0,10.71741,10717.41 +738,2025-03-07T02:11:54.013893-08:00,0.0,10.721587,10721.587 +739,2025-03-07T02:12:04.728088-08:00,0.0,10.714195,10714.195 +740,2025-03-07T02:12:15.449925-08:00,0.0,10.721837,10721.837 +741,2025-03-07T02:12:26.179296-08:00,0.0,10.729371,10729.371 +742,2025-03-07T02:12:36.889893-08:00,0.0,10.710597,10710.597 +743,2025-03-07T02:12:47.620077-08:00,0.0,10.730184,10730.184 +744,2025-03-07T02:12:58.336896-08:00,0.0,10.716819,10716.819 +745,2025-03-07T02:13:09.057358-08:00,0.0,10.720462,10720.462 +746,2025-03-07T02:13:19.787892-08:00,0.0,10.730534,10730.534 +747,2025-03-07T02:13:30.508910-08:00,0.0,10.721018,10721.018 +748,2025-03-07T02:13:41.229896-08:00,0.0,10.720986,10720.986 +749,2025-03-07T02:13:51.952988-08:00,0.0,10.723092,10723.092 +750,2025-03-07T02:14:02.673893-08:00,0.0,10.720905,10720.905 +751,2025-03-07T02:14:13.390064-08:00,0.0,10.716171,10716.171 +752,2025-03-07T02:14:24.109924-08:00,0.0,10.71986,10719.86 +753,2025-03-07T02:14:34.834271-08:00,0.0,10.724347,10724.347 +754,2025-03-07T02:14:45.562920-08:00,0.0,10.728649,10728.649 +755,2025-03-07T02:14:56.279079-08:00,0.0,10.716159,10716.159 +756,2025-03-07T02:15:07.001978-08:00,0.0,10.722899,10722.899 +757,2025-03-07T02:15:17.720294-08:00,0.0,10.718316,10718.316 +758,2025-03-07T02:15:28.448893-08:00,0.0,10.728599,10728.599 +759,2025-03-07T02:15:39.170912-08:00,0.0,10.722019,10722.019 +760,2025-03-07T02:15:49.900247-08:00,0.0,10.729335,10729.335 +761,2025-03-07T02:16:00.626888-08:00,0.0,10.726641,10726.641 +762,2025-03-07T02:16:11.351790-08:00,0.0,10.724902,10724.902 +763,2025-03-07T02:16:22.074895-08:00,0.0,10.723105,10723.105 +764,2025-03-07T02:16:32.796298-08:00,0.0,10.721403,10721.403 +765,2025-03-07T02:16:43.510159-08:00,0.0,10.713861,10713.861 +766,2025-03-07T02:16:54.238447-08:00,0.0,10.728288,10728.288 +767,2025-03-07T02:17:04.959953-08:00,0.0,10.721506,10721.506 +768,2025-03-07T02:17:15.679510-08:00,0.0,10.719557,10719.557 +769,2025-03-07T02:17:26.399895-08:00,0.0,10.720385,10720.385 +770,2025-03-07T02:17:37.129067-08:00,0.0,10.729172,10729.172 +771,2025-03-07T02:17:47.846391-08:00,0.0,10.717324,10717.324 +772,2025-03-07T02:17:58.569708-08:00,0.0,10.723317,10723.317 +773,2025-03-07T02:18:09.292892-08:00,0.0,10.723184,10723.184 +774,2025-03-07T02:18:20.012158-08:00,0.0,10.719266,10719.266 +775,2025-03-07T02:18:30.739895-08:00,0.0,10.727737,10727.737 +776,2025-03-07T02:18:41.456150-08:00,0.0,10.716255,10716.255 +777,2025-03-07T02:18:52.178076-08:00,0.0,10.721926,10721.926 +778,2025-03-07T02:19:02.894960-08:00,0.0,10.716884,10716.884 +779,2025-03-07T02:19:13.622896-08:00,0.0,10.727936,10727.936 +780,2025-03-07T02:19:24.346067-08:00,0.0,10.723171,10723.171 +781,2025-03-07T02:19:35.063892-08:00,0.0,10.717825,10717.825 +782,2025-03-07T02:19:45.783892-08:00,0.0,10.72,10720.0 +783,2025-03-07T02:19:56.508370-08:00,0.0,10.724478,10724.478 +784,2025-03-07T02:20:07.233292-08:00,0.0,10.724922,10724.922 +785,2025-03-07T02:20:17.964893-08:00,0.0,10.731601,10731.601 +786,2025-03-07T02:20:28.682081-08:00,0.0,10.717188,10717.188 +787,2025-03-07T02:20:39.404895-08:00,0.0,10.722814,10722.814 +788,2025-03-07T02:20:50.128048-08:00,0.0,10.723153,10723.153 +789,2025-03-07T02:21:00.860917-08:00,0.0,10.732869,10732.869 +790,2025-03-07T02:21:11.585212-08:00,0.0,10.724295,10724.295 +791,2025-03-07T02:21:22.313078-08:00,0.0,10.727866,10727.866 +792,2025-03-07T02:21:33.034895-08:00,0.0,10.721817,10721.817 +793,2025-03-07T02:21:43.758065-08:00,0.0,10.72317,10723.17 +794,2025-03-07T02:21:54.484961-08:00,0.0,10.726896,10726.896 +795,2025-03-07T02:22:05.208626-08:00,0.0,10.723665,10723.665 +796,2025-03-07T02:22:15.937895-08:00,0.0,10.729269,10729.269 +797,2025-03-07T02:22:26.667947-08:00,0.0,10.730052,10730.052 +798,2025-03-07T02:22:37.394089-08:00,0.0,10.726142,10726.142 +799,2025-03-07T02:22:48.110962-08:00,0.0,10.716873,10716.873 +800,2025-03-07T02:22:58.844935-08:00,0.0,10.733973,10733.973 +801,2025-03-07T02:23:09.563892-08:00,0.0,10.718957,10718.957 +802,2025-03-07T02:23:20.297106-08:00,0.0,10.733214,10733.214 +803,2025-03-07T02:23:31.014889-08:00,0.0,10.717783,10717.783 +804,2025-03-07T02:23:41.748097-08:00,0.0,10.733208,10733.208 +805,2025-03-07T02:23:52.474894-08:00,0.0,10.726797,10726.797 +806,2025-03-07T02:24:03.196892-08:00,0.0,10.721998,10721.998 +807,2025-03-07T02:24:13.926892-08:00,0.0,10.73,10730.0 +808,2025-03-07T02:24:24.646931-08:00,0.0,10.720039,10720.039 +809,2025-03-07T02:24:35.383075-08:00,0.0,10.736144,10736.144 +810,2025-03-07T02:24:46.103074-08:00,0.0,10.719999,10719.999 +811,2025-03-07T02:24:56.829895-08:00,0.0,10.726821,10726.821 +812,2025-03-07T02:25:07.550142-08:00,0.0,10.720247,10720.247 +813,2025-03-07T02:25:18.280892-08:00,0.0,10.73075,10730.75 +814,2025-03-07T02:25:29.003111-08:00,0.0,10.722219,10722.219 +815,2025-03-07T02:25:39.728894-08:00,0.0,10.725783,10725.783 +816,2025-03-07T02:25:50.454033-08:00,0.0,10.725139,10725.139 +817,2025-03-07T02:26:01.176920-08:00,0.0,10.722887,10722.887 +818,2025-03-07T02:26:11.909891-08:00,0.0,10.732971,10732.971 +819,2025-03-07T02:26:22.630069-08:00,0.0,10.720178,10720.178 +820,2025-03-07T02:26:33.356895-08:00,0.0,10.726826,10726.826 +821,2025-03-07T02:26:44.082893-08:00,0.0,10.725998,10725.998 +822,2025-03-07T02:26:54.811004-08:00,0.0,10.728111,10728.111 +823,2025-03-07T02:27:05.530981-08:00,0.0,10.719977,10719.977 +824,2025-03-07T02:27:16.255938-08:00,0.0,10.724957,10724.957 +825,2025-03-07T02:27:26.980896-08:00,0.0,10.724958,10724.958 +826,2025-03-07T02:27:37.704481-08:00,0.0,10.723585,10723.585 +827,2025-03-07T02:27:48.421335-08:00,0.0,10.716854,10716.854 +828,2025-03-07T02:27:59.146788-08:00,0.0,10.725453,10725.453 +829,2025-03-07T02:28:09.872896-08:00,0.0,10.726108,10726.108 +830,2025-03-07T02:28:20.602114-08:00,0.0,10.729218,10729.218 +831,2025-03-07T02:28:31.326131-08:00,0.0,10.724017,10724.017 +832,2025-03-07T02:28:42.045141-08:00,0.0,10.71901,10719.01 +833,2025-03-07T02:28:52.768896-08:00,0.0,10.723755,10723.755 +834,2025-03-07T02:29:03.494894-08:00,0.0,10.725998,10725.998 +835,2025-03-07T02:29:14.219495-08:00,0.0,10.724601,10724.601 +836,2025-03-07T02:29:24.948893-08:00,0.0,10.729398,10729.398 +837,2025-03-07T02:29:35.668532-08:00,0.0,10.719639,10719.639 +838,2025-03-07T02:29:46.396981-08:00,0.0,10.728449,10728.449 +839,2025-03-07T02:29:57.116022-08:00,0.0,10.719041,10719.041 +840,2025-03-07T02:30:07.835923-08:00,0.0,10.719901,10719.901 +841,2025-03-07T02:30:18.563079-08:00,0.0,10.727156,10727.156 +842,2025-03-07T02:30:29.296893-08:00,0.0,10.733814,10733.814 +843,2025-03-07T02:30:40.021219-08:00,0.0,10.724326,10724.326 +844,2025-03-07T02:30:50.745234-08:00,0.0,10.724015,10724.015 +845,2025-03-07T02:31:01.471117-08:00,0.0,10.725883,10725.883 +846,2025-03-07T02:31:12.192070-08:00,0.0,10.720953,10720.953 +847,2025-03-07T02:31:22.923893-08:00,0.0,10.731823,10731.823 +848,2025-03-07T02:31:33.644907-08:00,0.0,10.721014,10721.014 +849,2025-03-07T02:31:44.368895-08:00,0.0,10.723988,10723.988 +850,2025-03-07T02:31:55.100895-08:00,0.0,10.732,10732.0 +851,2025-03-07T02:32:05.819073-08:00,0.0,10.718178,10718.178 +852,2025-03-07T02:32:16.547895-08:00,0.0,10.728822,10728.822 +853,2025-03-07T02:32:27.263666-08:00,0.0,10.715771,10715.771 +854,2025-03-07T02:32:37.996893-08:00,0.0,10.733227,10733.227 +855,2025-03-07T02:32:48.721381-08:00,0.0,10.724488,10724.488 +856,2025-03-07T02:32:59.441895-08:00,0.0,10.720514,10720.514 +857,2025-03-07T02:33:10.164077-08:00,0.0,10.722182,10722.182 +858,2025-03-07T02:33:20.879897-08:00,0.0,10.71582,10715.82 +859,2025-03-07T02:33:31.603052-08:00,0.0,10.723155,10723.155 +860,2025-03-07T02:33:42.333129-08:00,0.0,10.730077,10730.077 +861,2025-03-07T02:33:53.050081-08:00,0.0,10.716952,10716.952 +862,2025-03-07T02:34:03.771959-08:00,0.0,10.721878,10721.878 +863,2025-03-07T02:34:14.500115-08:00,0.0,10.728156,10728.156 +864,2025-03-07T02:34:25.220890-08:00,0.0,10.720775,10720.775 +865,2025-03-07T02:34:35.942893-08:00,0.0,10.722003,10722.003 +866,2025-03-07T02:34:46.664946-08:00,0.0,10.722053,10722.053 +867,2025-03-07T02:34:57.387647-08:00,0.0,10.722701,10722.701 +868,2025-03-07T02:35:08.115963-08:00,0.0,10.728316,10728.316 +869,2025-03-07T02:35:18.840969-08:00,0.0,10.725006,10725.006 +870,2025-03-07T02:35:29.555895-08:00,0.0,10.714926,10714.926 +871,2025-03-07T02:35:40.277064-08:00,0.0,10.721169,10721.169 +872,2025-03-07T02:35:51.011076-08:00,0.0,10.734012,10734.012 +873,2025-03-07T02:36:01.734892-08:00,0.0,10.723816,10723.816 +874,2025-03-07T02:36:12.449233-08:00,0.0,10.714341,10714.341 +875,2025-03-07T02:36:23.176890-08:00,0.0,10.727657,10727.657 +876,2025-03-07T02:36:33.905688-08:00,0.0,10.728798,10728.798 +877,2025-03-07T02:36:44.621946-08:00,0.0,10.716258,10716.258 +878,2025-03-07T02:36:55.349359-08:00,0.0,10.727413,10727.413 +879,2025-03-07T02:37:06.070974-08:00,0.0,10.721615,10721.615 +880,2025-03-07T02:37:16.796664-08:00,0.0,10.72569,10725.69 +881,2025-03-07T02:37:27.518887-08:00,0.0,10.722223,10722.223 +882,2025-03-07T02:37:38.242895-08:00,0.0,10.724008,10724.008 +883,2025-03-07T02:37:48.966926-08:00,0.0,10.724031,10724.031 +884,2025-03-07T02:37:59.684335-08:00,0.0,10.717409,10717.409 +885,2025-03-07T02:38:10.401889-08:00,0.0,10.717554,10717.554 +886,2025-03-07T02:38:21.123029-08:00,0.0,10.72114,10721.14 +887,2025-03-07T02:38:31.843895-08:00,0.0,10.720866,10720.866 +888,2025-03-07T02:38:42.563269-08:00,0.0,10.719374,10719.374 +889,2025-03-07T02:38:53.284957-08:00,0.0,10.721688,10721.688 +890,2025-03-07T02:39:04.014900-08:00,0.0,10.729943,10729.943 +891,2025-03-07T02:39:14.737329-08:00,0.0,10.722429,10722.429 +892,2025-03-07T02:39:25.456161-08:00,0.0,10.718832,10718.832 +893,2025-03-07T02:39:36.180896-08:00,0.0,10.724735,10724.735 +894,2025-03-07T02:39:46.901124-08:00,0.0,10.720228,10720.228 +895,2025-03-07T02:39:57.619260-08:00,0.0,10.718136,10718.136 +896,2025-03-07T02:40:08.340145-08:00,0.0,10.720885,10720.885 +897,2025-03-07T02:40:19.063895-08:00,0.0,10.72375,10723.75 +898,2025-03-07T02:40:29.788904-08:00,0.0,10.725009,10725.009 +899,2025-03-07T02:40:40.506892-08:00,0.0,10.717988,10717.988 +900,2025-03-07T02:40:51.232114-08:00,0.0,10.725222,10725.222 +901,2025-03-07T02:41:01.952182-08:00,0.0,10.720068,10720.068 +902,2025-03-07T02:41:12.674917-08:00,0.0,10.722735,10722.735 +903,2025-03-07T02:41:23.395903-08:00,0.0,10.720986,10720.986 +904,2025-03-07T02:41:34.117364-08:00,0.0,10.721461,10721.461 +905,2025-03-07T02:41:44.830894-08:00,0.0,10.71353,10713.53 +906,2025-03-07T02:41:55.551611-08:00,0.0,10.720717,10720.717 +907,2025-03-07T02:42:06.268960-08:00,0.0,10.717349,10717.349 +908,2025-03-07T02:42:16.980329-08:00,0.0,10.711369,10711.369 +909,2025-03-07T02:42:27.700275-08:00,0.0,10.719946,10719.946 +910,2025-03-07T02:42:38.425893-08:00,0.0,10.725618,10725.618 +911,2025-03-07T02:42:49.138076-08:00,0.0,10.712183,10712.183 +912,2025-03-07T02:42:59.855895-08:00,0.0,10.717819,10717.819 +913,2025-03-07T02:43:10.576363-08:00,0.0,10.720468,10720.468 +914,2025-03-07T02:43:21.296972-08:00,0.0,10.720609,10720.609 +915,2025-03-07T02:43:32.017919-08:00,0.0,10.720947,10720.947 +916,2025-03-07T02:43:42.733897-08:00,0.0,10.715978,10715.978 +917,2025-03-07T02:43:53.458917-08:00,0.0,10.72502,10725.02 +918,2025-03-07T02:44:04.173230-08:00,0.0,10.714313,10714.313 +919,2025-03-07T02:44:14.893893-08:00,0.0,10.720663,10720.663 +920,2025-03-07T02:44:25.611091-08:00,0.0,10.717198,10717.198 +921,2025-03-07T02:44:36.332096-08:00,0.0,10.721005,10721.005 +922,2025-03-07T02:44:47.053095-08:00,0.0,10.720999,10720.999 +923,2025-03-07T02:44:57.769895-08:00,0.0,10.7168,10716.8 +924,2025-03-07T02:45:08.496080-08:00,0.0,10.726185,10726.185 +925,2025-03-07T02:45:19.215150-08:00,0.0,10.71907,10719.07 +926,2025-03-07T02:45:29.928903-08:00,0.0,10.713753,10713.753 +927,2025-03-07T02:45:40.646895-08:00,0.0,10.717992,10717.992 +928,2025-03-07T02:45:51.361896-08:00,0.0,10.715001,10715.001 +929,2025-03-07T02:46:02.079083-08:00,0.0,10.717187,10717.187 +930,2025-03-07T02:46:12.795891-08:00,0.0,10.716808,10716.808 +931,2025-03-07T02:46:23.520676-08:00,0.0,10.724785,10724.785 +932,2025-03-07T02:46:34.230068-08:00,0.0,10.709392,10709.392 +933,2025-03-07T02:46:44.951958-08:00,0.0,10.72189,10721.89 +934,2025-03-07T02:46:55.671906-08:00,0.0,10.719948,10719.948 +935,2025-03-07T02:47:06.391954-08:00,0.0,10.720048,10720.048 +936,2025-03-07T02:47:17.111419-08:00,0.0,10.719465,10719.465 +937,2025-03-07T02:47:27.829896-08:00,0.0,10.718477,10718.477 +938,2025-03-07T02:47:38.543404-08:00,0.0,10.713508,10713.508 +939,2025-03-07T02:47:46.848452-08:00,0.0,8.305048,8305.048 +940,2025-03-07T02:47:49.265895-08:00,0.0,2.417443,2417.443 +941,2025-03-07T02:47:59.981893-08:00,0.0,10.715998,10715.998 +942,2025-03-07T02:48:10.701903-08:00,0.0,10.72001,10720.01 +943,2025-03-07T02:48:21.419895-08:00,0.0,10.717992,10717.992 +944,2025-03-07T02:48:32.130475-08:00,0.0,10.71058,10710.58 +945,2025-03-07T02:48:42.848890-08:00,0.0,10.718415,10718.415 +946,2025-03-07T02:48:53.567915-08:00,0.0,10.719025,10719.025 +947,2025-03-07T02:49:04.281099-08:00,0.0,10.713184,10713.184 +948,2025-03-07T02:49:15.002903-08:00,0.0,10.721804,10721.804 +949,2025-03-07T02:49:25.711093-08:00,0.0,10.70819,10708.19 +950,2025-03-07T02:49:36.435962-08:00,0.0,10.724869,10724.869 +951,2025-03-07T02:49:47.149897-08:00,0.0,10.713935,10713.935 +952,2025-03-07T02:49:57.862961-08:00,0.0,10.713064,10713.064 +953,2025-03-07T02:50:08.580895-08:00,0.0,10.717934,10717.934 +954,2025-03-07T02:50:19.309319-08:00,0.0,10.728424,10728.424 +955,2025-03-07T02:50:30.026893-08:00,0.0,10.717574,10717.574 +956,2025-03-07T02:50:40.750968-08:00,0.0,10.724075,10724.075 +957,2025-03-07T02:50:51.462069-08:00,0.0,10.711101,10711.101 +958,2025-03-07T02:51:02.188082-08:00,0.0,10.726013,10726.013 +959,2025-03-07T02:51:12.908923-08:00,0.0,10.720841,10720.841 +960,2025-03-07T02:51:23.622920-08:00,0.0,10.713997,10713.997 +961,2025-03-07T02:51:34.343029-08:00,0.0,10.720109,10720.109 +962,2025-03-07T02:51:45.066890-08:00,0.0,10.723861,10723.861 +963,2025-03-07T02:51:55.793895-08:00,0.0,10.727005,10727.005 +964,2025-03-07T02:52:06.516090-08:00,0.0,10.722195,10722.195 +965,2025-03-07T02:52:17.305446-08:00,0.0,10.789356,10789.356 +966,2025-03-07T02:52:28.018452-08:00,0.0,10.713006,10713.006 +967,2025-03-07T02:52:38.743249-08:00,0.0,10.724797,10724.797 +968,2025-03-07T02:52:49.465260-08:00,0.0,10.722011,10722.011 +969,2025-03-07T02:53:00.179844-08:00,0.0,10.714584,10714.584 +970,2025-03-07T02:53:10.906243-08:00,0.0,10.726399,10726.399 +971,2025-03-07T02:53:21.620422-08:00,0.0,10.714179,10714.179 +972,2025-03-07T02:53:32.349315-08:00,0.0,10.728893,10728.893 +973,2025-03-07T02:53:43.070137-08:00,0.0,10.720822,10720.822 +974,2025-03-07T02:53:53.778273-08:00,0.0,10.708136,10708.136 +975,2025-03-07T02:54:04.501652-08:00,0.0,10.723379,10723.379 +976,2025-03-07T02:54:15.223247-08:00,0.0,10.721595,10721.595 +977,2025-03-07T02:54:25.933249-08:00,0.0,10.710002,10710.002 +978,2025-03-07T02:54:36.656537-08:00,0.0,10.723288,10723.288 +979,2025-03-07T02:54:47.383438-08:00,0.0,10.726901,10726.901 +980,2025-03-07T02:54:58.097562-08:00,0.0,10.714124,10714.124 +981,2025-03-07T02:55:08.810247-08:00,0.0,10.712685,10712.685 +982,2025-03-07T02:55:19.536575-08:00,0.0,10.726328,10726.328 +983,2025-03-07T02:55:30.257310-08:00,0.0,10.720735,10720.735 +984,2025-03-07T02:55:40.966318-08:00,0.0,10.709008,10709.008 +985,2025-03-07T02:55:51.692247-08:00,0.0,10.725929,10725.929 +986,2025-03-07T02:56:02.406753-08:00,0.0,10.714506,10714.506 +987,2025-03-07T02:56:13.130407-08:00,0.0,10.723654,10723.654 +988,2025-03-07T02:56:23.846246-08:00,0.0,10.715839,10715.839 +989,2025-03-07T02:56:34.569343-08:00,0.0,10.723097,10723.097 +990,2025-03-07T02:56:45.283455-08:00,0.0,10.714112,10714.112 +991,2025-03-07T02:56:56.001663-08:00,0.0,10.718208,10718.208 +992,2025-03-07T02:57:06.719312-08:00,0.0,10.717649,10717.649 +993,2025-03-07T02:57:17.436489-08:00,0.0,10.717177,10717.177 +994,2025-03-07T02:57:28.160451-08:00,0.0,10.723962,10723.962 +995,2025-03-07T02:57:38.870647-08:00,0.0,10.710196,10710.196 +996,2025-03-07T02:57:49.597248-08:00,0.0,10.726601,10726.601 +997,2025-03-07T02:58:00.314805-08:00,0.0,10.717557,10717.557 +998,2025-03-07T02:58:11.030428-08:00,0.0,10.715623,10715.623 +999,2025-03-07T02:58:21.751242-08:00,0.0,10.720814,10720.814 +1000,2025-03-07T02:58:32.470449-08:00,0.0,10.719207,10719.207 +1001,2025-03-07T02:58:43.187365-08:00,0.0,10.716916,10716.916 +1002,2025-03-07T02:58:53.905244-08:00,0.0,10.717879,10717.879 +1003,2025-03-07T02:59:04.627240-08:00,0.0,10.721996,10721.996 +1004,2025-03-07T02:59:15.342248-08:00,0.0,10.715008,10715.008 +1005,2025-03-07T02:59:26.060172-08:00,0.0,10.717924,10717.924 +1006,2025-03-07T02:59:36.775247-08:00,0.0,10.715075,10715.075 +1007,2025-03-07T02:59:47.489940-08:00,0.0,10.714693,10714.693 +1008,2025-03-07T02:59:58.215246-08:00,0.0,10.725306,10725.306 +1009,2025-03-07T03:00:08.926368-08:00,0.0,10.711122,10711.122 +1010,2025-03-07T03:00:19.650316-08:00,0.0,10.723948,10723.948 +1011,2025-03-07T03:00:30.365489-08:00,0.0,10.715173,10715.173 +1012,2025-03-07T03:00:41.083449-08:00,0.0,10.71796,10717.96 +1013,2025-03-07T03:00:51.803247-08:00,0.0,10.719798,10719.798 +1014,2025-03-07T03:01:02.516138-08:00,0.0,10.712891,10712.891 +1015,2025-03-07T03:01:13.241595-08:00,0.0,10.725457,10725.457 +1016,2025-03-07T03:01:23.956247-08:00,0.0,10.714652,10714.652 +1017,2025-03-07T03:01:34.667416-08:00,0.0,10.711169,10711.169 +1018,2025-03-07T03:01:45.390247-08:00,0.0,10.722831,10722.831 +1019,2025-03-07T03:01:56.105590-08:00,0.0,10.715343,10715.343 +1020,2025-03-07T03:02:06.818463-08:00,0.0,10.712873,10712.873 +1021,2025-03-07T03:02:17.545588-08:00,0.0,10.727125,10727.125 +1022,2025-03-07T03:02:28.260281-08:00,0.0,10.714693,10714.693 +1023,2025-03-07T03:02:38.974248-08:00,0.0,10.713967,10713.967 +1024,2025-03-07T03:02:49.693636-08:00,0.0,10.719388,10719.388 +1025,2025-03-07T03:03:00.413316-08:00,0.0,10.71968,10719.68 +1026,2025-03-07T03:03:11.134426-08:00,0.0,10.72111,10721.11 +1027,2025-03-07T03:03:21.842244-08:00,0.0,10.707818,10707.818 +1028,2025-03-07T03:03:32.559276-08:00,0.0,10.717032,10717.032 +1029,2025-03-07T03:03:43.281569-08:00,0.0,10.722293,10722.293 +1030,2025-03-07T03:03:53.999245-08:00,0.0,10.717676,10717.676 +1031,2025-03-07T03:04:04.711273-08:00,0.0,10.712028,10712.028 +1032,2025-03-07T03:04:15.431396-08:00,0.0,10.720123,10720.123 +1033,2025-03-07T03:04:26.152811-08:00,0.0,10.721415,10721.415 +1034,2025-03-07T03:04:36.867346-08:00,0.0,10.714535,10714.535 +1035,2025-03-07T03:04:47.584526-08:00,0.0,10.71718,10717.18 +1036,2025-03-07T03:04:58.300059-08:00,0.0,10.715533,10715.533 +1037,2025-03-07T03:05:09.016444-08:00,0.0,10.716385,10716.385 +1038,2025-03-07T03:05:19.737316-08:00,0.0,10.720872,10720.872 +1039,2025-03-07T03:05:30.458363-08:00,0.0,10.721047,10721.047 +1040,2025-03-07T03:05:41.171784-08:00,0.0,10.713421,10713.421 +1041,2025-03-07T03:05:51.893281-08:00,0.0,10.721497,10721.497 +1042,2025-03-07T03:06:02.607456-08:00,0.0,10.714175,10714.175 +1043,2025-03-07T03:06:13.331550-08:00,0.0,10.724094,10724.094 +1044,2025-03-07T03:06:24.047292-08:00,0.0,10.715742,10715.742 +1045,2025-03-07T03:06:34.770442-08:00,0.0,10.72315,10723.15 +1046,2025-03-07T03:06:45.490450-08:00,0.0,10.720008,10720.008 +1047,2025-03-07T03:06:56.205304-08:00,0.0,10.714854,10714.854 +1048,2025-03-07T03:07:06.930245-08:00,0.0,10.724941,10724.941 +1049,2025-03-07T03:07:17.642282-08:00,0.0,10.712037,10712.037 +1050,2025-03-07T03:07:28.353353-08:00,0.0,10.711071,10711.071 +1051,2025-03-07T03:07:39.075244-08:00,0.0,10.721891,10721.891 +1052,2025-03-07T03:07:49.793500-08:00,0.0,10.718256,10718.256 +1053,2025-03-07T03:08:00.509295-08:00,0.0,10.715795,10715.795 +1054,2025-03-07T03:08:11.225244-08:00,0.0,10.715949,10715.949 +1055,2025-03-07T03:08:21.940637-08:00,0.0,10.715393,10715.393 +1056,2025-03-07T03:08:32.658245-08:00,0.0,10.717608,10717.608 +1057,2025-03-07T03:08:43.384416-08:00,0.0,10.726171,10726.171 +1058,2025-03-07T03:08:54.098248-08:00,0.0,10.713832,10713.832 +1059,2025-03-07T03:09:04.820701-08:00,0.0,10.722453,10722.453 +1060,2025-03-07T03:09:15.533436-08:00,0.0,10.712735,10712.735 +1061,2025-03-07T03:09:26.258652-08:00,0.0,10.725216,10725.216 +1062,2025-03-07T03:09:36.976995-08:00,0.0,10.718343,10718.343 +1063,2025-03-07T03:09:47.691293-08:00,0.0,10.714298,10714.298 +1064,2025-03-07T03:09:58.410638-08:00,0.0,10.719345,10719.345 +1065,2025-03-07T03:10:09.136244-08:00,0.0,10.725606,10725.606 +1066,2025-03-07T03:10:19.852461-08:00,0.0,10.716217,10716.217 +1067,2025-03-07T03:10:30.579247-08:00,0.0,10.726786,10726.786 +1068,2025-03-07T03:10:41.295663-08:00,0.0,10.716416,10716.416 +1069,2025-03-07T03:10:52.014242-08:00,0.0,10.718579,10718.579 +1070,2025-03-07T03:11:02.743477-08:00,0.0,10.729235,10729.235 +1071,2025-03-07T03:11:13.457310-08:00,0.0,10.713833,10713.833 +1072,2025-03-07T03:11:24.181469-08:00,0.0,10.724159,10724.159 +1073,2025-03-07T03:11:34.896247-08:00,0.0,10.714778,10714.778 +1074,2025-03-07T03:11:45.621273-08:00,0.0,10.725026,10725.026 +1075,2025-03-07T03:11:56.338447-08:00,0.0,10.717174,10717.174 +1076,2025-03-07T03:12:07.060247-08:00,0.0,10.7218,10721.8 +1077,2025-03-07T03:12:17.778654-08:00,0.0,10.718407,10718.407 +1078,2025-03-07T03:12:28.489399-08:00,0.0,10.710745,10710.745 +1079,2025-03-07T03:12:39.213421-08:00,0.0,10.724022,10724.022 +1080,2025-03-07T03:12:49.930422-08:00,0.0,10.717001,10717.001 +1081,2025-03-07T03:13:00.655635-08:00,0.0,10.725213,10725.213 +1082,2025-03-07T03:13:11.365735-08:00,0.0,10.7101,10710.1 +1083,2025-03-07T03:13:22.082245-08:00,0.0,10.71651,10716.51 +1084,2025-03-07T03:13:32.802413-08:00,0.0,10.720168,10720.168 +1085,2025-03-07T03:13:43.519247-08:00,0.0,10.716834,10716.834 +1086,2025-03-07T03:13:54.247729-08:00,0.0,10.728482,10728.482 +1087,2025-03-07T03:14:04.956450-08:00,0.0,10.708721,10708.721 +1088,2025-03-07T03:14:15.676316-08:00,0.0,10.719866,10719.866 +1089,2025-03-07T03:14:26.398329-08:00,0.0,10.722013,10722.013 +1090,2025-03-07T03:14:37.109245-08:00,0.0,10.710916,10710.916 +1091,2025-03-07T03:14:47.825352-08:00,0.0,10.716107,10716.107 +1092,2025-03-07T03:14:58.547484-08:00,0.0,10.722132,10722.132 +1093,2025-03-07T03:15:09.268432-08:00,0.0,10.720948,10720.948 +1094,2025-03-07T03:15:19.981246-08:00,0.0,10.712814,10712.814 +1095,2025-03-07T03:15:30.701273-08:00,0.0,10.720027,10720.027 +1096,2025-03-07T03:15:41.416472-08:00,0.0,10.715199,10715.199 +1097,2025-03-07T03:15:52.136569-08:00,0.0,10.720097,10720.097 +1098,2025-03-07T03:16:02.846285-08:00,0.0,10.709716,10709.716 +1099,2025-03-07T03:16:13.559468-08:00,0.0,10.713183,10713.183 +1100,2025-03-07T03:16:24.271245-08:00,0.0,10.711777,10711.777 +1101,2025-03-07T03:16:34.989413-08:00,0.0,10.718168,10718.168 +1102,2025-03-07T03:16:45.707808-08:00,0.0,10.718395,10718.395 +1103,2025-03-07T03:16:56.433008-08:00,0.0,10.7252,10725.2 +1104,2025-03-07T03:17:07.150242-08:00,0.0,10.717234,10717.234 +1105,2025-03-07T03:17:17.868740-08:00,0.0,10.718498,10718.498 +1106,2025-03-07T03:17:28.583430-08:00,0.0,10.71469,10714.69 +1107,2025-03-07T03:17:39.297292-08:00,0.0,10.713862,10713.862 +1108,2025-03-07T03:17:50.022670-08:00,0.0,10.725378,10725.378 +1109,2025-03-07T03:18:00.735330-08:00,0.0,10.71266,10712.66 +1110,2025-03-07T03:18:11.450432-08:00,0.0,10.715102,10715.102 +1111,2025-03-07T03:18:22.168250-08:00,0.0,10.717818,10717.818 +1112,2025-03-07T03:18:32.887247-08:00,0.0,10.718997,10718.997 +1113,2025-03-07T03:18:43.602412-08:00,0.0,10.715165,10715.165 +1114,2025-03-07T03:18:54.318445-08:00,0.0,10.716033,10716.033 +1115,2025-03-07T03:19:05.043411-08:00,0.0,10.724966,10724.966 +1116,2025-03-07T03:19:15.756310-08:00,0.0,10.712899,10712.899 +1117,2025-03-07T03:19:26.476245-08:00,0.0,10.719935,10719.935 +1118,2025-03-07T03:19:37.193496-08:00,0.0,10.717251,10717.251 +1119,2025-03-07T03:19:47.913242-08:00,0.0,10.719746,10719.746 +1120,2025-03-07T03:19:58.625418-08:00,0.0,10.712176,10712.176 +1121,2025-03-07T03:20:09.347248-08:00,0.0,10.72183,10721.83 +1122,2025-03-07T03:20:20.063312-08:00,0.0,10.716064,10716.064 +1123,2025-03-07T03:20:30.781544-08:00,0.0,10.718232,10718.232 +1124,2025-03-07T03:20:41.497243-08:00,0.0,10.715699,10715.699 +1125,2025-03-07T03:20:52.214320-08:00,0.0,10.717077,10717.077 +1126,2025-03-07T03:21:02.930393-08:00,0.0,10.716073,10716.073 +1127,2025-03-07T03:21:13.652626-08:00,0.0,10.722233,10722.233 +1128,2025-03-07T03:21:24.369389-08:00,0.0,10.716763,10716.763 +1129,2025-03-07T03:21:35.095439-08:00,0.0,10.72605,10726.05 +1130,2025-03-07T03:21:45.806441-08:00,0.0,10.711002,10711.002 +1131,2025-03-07T03:21:56.522253-08:00,0.0,10.715812,10715.812 +1132,2025-03-07T03:22:07.235675-08:00,0.0,10.713422,10713.422 +1133,2025-03-07T03:22:17.962411-08:00,0.0,10.726736,10726.736 +1134,2025-03-07T03:22:28.670252-08:00,0.0,10.707841,10707.841 +1135,2025-03-07T03:22:39.393316-08:00,0.0,10.723064,10723.064 +1136,2025-03-07T03:22:50.105617-08:00,0.0,10.712301,10712.301 +1137,2025-03-07T03:23:00.827844-08:00,0.0,10.722227,10722.227 +1138,2025-03-07T03:23:11.534271-08:00,0.0,10.706427,10706.427 +1139,2025-03-07T03:23:22.254272-08:00,0.0,10.720001,10720.001 +1140,2025-03-07T03:23:32.970717-08:00,0.0,10.716445,10716.445 +1141,2025-03-07T03:23:43.693273-08:00,0.0,10.722556,10722.556 +1142,2025-03-07T03:23:54.407325-08:00,0.0,10.714052,10714.052 +1143,2025-03-07T03:24:05.125438-08:00,0.0,10.718113,10718.113 +1144,2025-03-07T03:24:15.851556-08:00,0.0,10.726118,10726.118 +1145,2025-03-07T03:24:26.566246-08:00,0.0,10.71469,10714.69 +1146,2025-03-07T03:24:37.282276-08:00,0.0,10.71603,10716.03 +1147,2025-03-07T03:24:47.999421-08:00,0.0,10.717145,10717.145 +1148,2025-03-07T03:24:58.718472-08:00,0.0,10.719051,10719.051 +1149,2025-03-07T03:25:09.431443-08:00,0.0,10.712971,10712.971 +1150,2025-03-07T03:25:20.150491-08:00,0.0,10.719048,10719.048 +1151,2025-03-07T03:25:30.874427-08:00,0.0,10.723936,10723.936 +1152,2025-03-07T03:25:41.592244-08:00,0.0,10.717817,10717.817 +1153,2025-03-07T03:25:52.314432-08:00,0.0,10.722188,10722.188 +1154,2025-03-07T03:26:03.035030-08:00,0.0,10.720598,10720.598 +1155,2025-03-07T03:26:13.750241-08:00,0.0,10.715211,10715.211 +1156,2025-03-07T03:26:24.468248-08:00,0.0,10.718007,10718.007 +1157,2025-03-07T03:26:35.189249-08:00,0.0,10.721001,10721.001 +1158,2025-03-07T03:26:45.907719-08:00,0.0,10.71847,10718.47 +1159,2025-03-07T03:26:56.621271-08:00,0.0,10.713552,10713.552 +1160,2025-03-07T03:27:07.346520-08:00,0.0,10.725249,10725.249 +1161,2025-03-07T03:27:18.059249-08:00,0.0,10.712729,10712.729 +1162,2025-03-07T03:27:28.776245-08:00,0.0,10.716996,10716.996 +1163,2025-03-07T03:27:39.484410-08:00,0.0,10.708165,10708.165 +1164,2025-03-07T03:27:50.199455-08:00,0.0,10.715045,10715.045 +1165,2025-03-07T03:28:00.918311-08:00,0.0,10.718856,10718.856 +1166,2025-03-07T03:28:11.634248-08:00,0.0,10.715937,10715.937 +1167,2025-03-07T03:28:22.355248-08:00,0.0,10.721,10721.0 +1168,2025-03-07T03:28:33.069428-08:00,0.0,10.71418,10714.18 +1169,2025-03-07T03:28:43.790246-08:00,0.0,10.720818,10720.818 +1170,2025-03-07T03:28:54.499488-08:00,0.0,10.709242,10709.242 +1171,2025-03-07T03:29:05.224944-08:00,0.0,10.725456,10725.456 +1172,2025-03-07T03:29:15.938308-08:00,0.0,10.713364,10713.364 +1173,2025-03-07T03:29:26.657474-08:00,0.0,10.719166,10719.166 +1174,2025-03-07T03:29:37.371244-08:00,0.0,10.71377,10713.77 +1175,2025-03-07T03:29:48.094431-08:00,0.0,10.723187,10723.187 +1176,2025-03-07T03:29:58.807284-08:00,0.0,10.712853,10712.853 +1177,2025-03-07T03:30:09.525367-08:00,0.0,10.718083,10718.083 +1178,2025-03-07T03:30:20.246852-08:00,0.0,10.721485,10721.485 +1179,2025-03-07T03:30:30.964246-08:00,0.0,10.717394,10717.394 +1180,2025-03-07T03:30:41.681419-08:00,0.0,10.717173,10717.173 +1181,2025-03-07T03:30:52.391248-08:00,0.0,10.709829,10709.829 +1182,2025-03-07T03:31:03.112714-08:00,0.0,10.721466,10721.466 +1183,2025-03-07T03:31:13.834246-08:00,0.0,10.721532,10721.532 +1184,2025-03-07T03:31:24.545309-08:00,0.0,10.711063,10711.063 +1185,2025-03-07T03:31:35.266481-08:00,0.0,10.721172,10721.172 +1186,2025-03-07T03:31:45.978319-08:00,0.0,10.711838,10711.838 +1187,2025-03-07T03:31:56.694058-08:00,0.0,10.715739,10715.739 +1188,2025-03-07T03:32:07.407485-08:00,0.0,10.713427,10713.427 +1189,2025-03-07T03:32:18.124244-08:00,0.0,10.716759,10716.759 +1190,2025-03-07T03:32:28.841449-08:00,0.0,10.717205,10717.205 +1191,2025-03-07T03:32:39.558468-08:00,0.0,10.717019,10717.019 +1192,2025-03-07T03:32:50.282587-08:00,0.0,10.724119,10724.119 +1193,2025-03-07T03:33:00.996245-08:00,0.0,10.713658,10713.658 +1194,2025-03-07T03:33:11.713447-08:00,0.0,10.717202,10717.202 +1195,2025-03-07T03:33:22.422273-08:00,0.0,10.708826,10708.826 +1196,2025-03-07T03:33:33.144247-08:00,0.0,10.721974,10721.974 +1197,2025-03-07T03:33:43.860384-08:00,0.0,10.716137,10716.137 +1198,2025-03-07T03:33:54.575735-08:00,0.0,10.715351,10715.351 +1199,2025-03-07T03:34:05.291245-08:00,0.0,10.71551,10715.51 +1200,2025-03-07T03:34:16.014443-08:00,0.0,10.723198,10723.198 +1201,2025-03-07T03:34:26.724401-08:00,0.0,10.709958,10709.958 +1202,2025-03-07T03:34:37.443337-08:00,0.0,10.718936,10718.936 +1203,2025-03-07T03:34:48.165462-08:00,0.0,10.722125,10722.125 +1204,2025-03-07T03:34:58.876421-08:00,0.0,10.710959,10710.959 +1205,2025-03-07T03:35:09.600468-08:00,0.0,10.724047,10724.047 +1206,2025-03-07T03:35:20.319248-08:00,0.0,10.71878,10718.78 +1207,2025-03-07T03:35:31.035423-08:00,0.0,10.716175,10716.175 +1208,2025-03-07T03:35:41.750453-08:00,0.0,10.71503,10715.03 +1209,2025-03-07T03:35:52.473245-08:00,0.0,10.722792,10722.792 +1210,2025-03-07T03:36:03.195247-08:00,0.0,10.722002,10722.002 +1211,2025-03-07T03:36:13.907353-08:00,0.0,10.712106,10712.106 +1212,2025-03-07T03:36:24.630638-08:00,0.0,10.723285,10723.285 +1213,2025-03-07T03:36:35.341457-08:00,0.0,10.710819,10710.819 +1214,2025-03-07T03:36:46.068327-08:00,0.0,10.72687,10726.87 +1215,2025-03-07T03:36:56.780259-08:00,0.0,10.711932,10711.932 +1216,2025-03-07T03:37:07.500322-08:00,0.0,10.720063,10720.063 +1217,2025-03-07T03:37:18.226245-08:00,0.0,10.725923,10725.923 +1218,2025-03-07T03:37:28.943268-08:00,0.0,10.717023,10717.023 +1219,2025-03-07T03:37:39.658449-08:00,0.0,10.715181,10715.181 +1220,2025-03-07T03:37:50.391029-08:00,0.0,10.73258,10732.58 +1221,2025-03-07T03:38:01.110279-08:00,0.0,10.71925,10719.25 +1222,2025-03-07T03:38:11.826812-08:00,0.0,10.716533,10716.533 +1223,2025-03-07T03:38:22.550455-08:00,0.0,10.723643,10723.643 +1224,2025-03-07T03:38:33.266649-08:00,0.0,10.716194,10716.194 +1225,2025-03-07T03:38:43.990243-08:00,0.0,10.723594,10723.594 +1226,2025-03-07T03:38:54.716263-08:00,0.0,10.72602,10726.02 +1227,2025-03-07T03:39:05.429427-08:00,0.0,10.713164,10713.164 +1228,2025-03-07T03:39:16.150449-08:00,0.0,10.721022,10721.022 +1229,2025-03-07T03:39:26.870400-08:00,0.0,10.719951,10719.951 +1230,2025-03-07T03:39:37.592300-08:00,0.0,10.7219,10721.9 +1231,2025-03-07T03:39:48.317636-08:00,0.0,10.725336,10725.336 +1232,2025-03-07T03:39:59.037245-08:00,0.0,10.719609,10719.609 +1233,2025-03-07T03:40:09.753431-08:00,0.0,10.716186,10716.186 +1234,2025-03-07T03:40:20.482450-08:00,0.0,10.729019,10729.019 +1235,2025-03-07T03:40:31.200879-08:00,0.0,10.718429,10718.429 +1236,2025-03-07T03:40:41.923245-08:00,0.0,10.722366,10722.366 +1237,2025-03-07T03:40:52.647317-08:00,0.0,10.724072,10724.072 +1238,2025-03-07T03:41:03.365448-08:00,0.0,10.718131,10718.131 +1239,2025-03-07T03:41:14.092818-08:00,0.0,10.72737,10727.37 +1240,2025-03-07T03:41:24.814247-08:00,0.0,10.721429,10721.429 +1241,2025-03-07T03:41:35.534473-08:00,0.0,10.720226,10720.226 +1242,2025-03-07T03:41:46.257413-08:00,0.0,10.72294,10722.94 +1243,2025-03-07T03:41:56.979429-08:00,0.0,10.722016,10722.016 +1244,2025-03-07T03:42:07.707587-08:00,0.0,10.728158,10728.158 +1245,2025-03-07T03:42:18.421552-08:00,0.0,10.713965,10713.965 +1246,2025-03-07T03:42:29.146315-08:00,0.0,10.724763,10724.763 +1247,2025-03-07T03:42:39.874428-08:00,0.0,10.728113,10728.113 +1248,2025-03-07T03:42:50.590681-08:00,0.0,10.716253,10716.253 +1249,2025-03-07T03:43:01.319341-08:00,0.0,10.72866,10728.66 +1250,2025-03-07T03:43:12.040271-08:00,0.0,10.72093,10720.93 +1251,2025-03-07T03:43:22.762455-08:00,0.0,10.722184,10722.184 +1252,2025-03-07T03:43:33.483324-08:00,0.0,10.720869,10720.869 +1253,2025-03-07T03:43:44.210244-08:00,0.0,10.72692,10726.92 +1254,2025-03-07T03:43:54.932840-08:00,0.0,10.722596,10722.596 +1255,2025-03-07T03:44:05.650240-08:00,0.0,10.7174,10717.4 +1256,2025-03-07T03:44:16.380427-08:00,0.0,10.730187,10730.187 +1257,2025-03-07T03:44:27.098273-08:00,0.0,10.717846,10717.846 +1258,2025-03-07T03:44:37.826446-08:00,0.0,10.728173,10728.173 +1259,2025-03-07T03:44:48.547245-08:00,0.0,10.720799,10720.799 +1260,2025-03-07T03:44:59.268421-08:00,0.0,10.721176,10721.176 +1261,2025-03-07T03:45:09.993484-08:00,0.0,10.725063,10725.063 +1262,2025-03-07T03:45:20.711502-08:00,0.0,10.718018,10718.018 +1263,2025-03-07T03:45:31.440245-08:00,0.0,10.728743,10728.743 +1264,2025-03-07T03:45:42.157424-08:00,0.0,10.717179,10717.179 +1265,2025-03-07T03:45:52.883744-08:00,0.0,10.72632,10726.32 +1266,2025-03-07T03:46:03.600461-08:00,0.0,10.716717,10716.717 +1267,2025-03-07T03:46:14.324247-08:00,0.0,10.723786,10723.786 +1268,2025-03-07T03:46:25.056469-08:00,0.0,10.732222,10732.222 +1269,2025-03-07T03:46:35.773412-08:00,0.0,10.716943,10716.943 +1270,2025-03-07T03:46:46.503530-08:00,0.0,10.730118,10730.118 +1271,2025-03-07T03:46:57.225481-08:00,0.0,10.721951,10721.951 +1272,2025-03-07T03:47:07.951313-08:00,0.0,10.725832,10725.832 +1273,2025-03-07T03:47:18.670329-08:00,0.0,10.719016,10719.016 +1274,2025-03-07T03:47:29.396485-08:00,0.0,10.726156,10726.156 +1275,2025-03-07T03:47:40.118415-08:00,0.0,10.72193,10721.93 +1276,2025-03-07T03:47:50.836246-08:00,0.0,10.717831,10717.831 +1277,2025-03-07T03:48:01.556282-08:00,0.0,10.720036,10720.036 +1278,2025-03-07T03:48:12.287502-08:00,0.0,10.73122,10731.22 +1279,2025-03-07T03:48:23.001547-08:00,0.0,10.714045,10714.045 +1280,2025-03-07T03:48:33.723247-08:00,0.0,10.7217,10721.7 +1281,2025-03-07T03:48:44.447207-08:00,0.0,10.72396,10723.96 +1282,2025-03-07T03:48:55.166536-08:00,0.0,10.719329,10719.329 +1283,2025-03-07T03:49:05.894443-08:00,0.0,10.727907,10727.907 +1284,2025-03-07T03:49:16.618312-08:00,0.0,10.723869,10723.869 +1285,2025-03-07T03:49:27.336191-08:00,0.0,10.717879,10717.879 +1286,2025-03-07T03:49:38.053380-08:00,0.0,10.717189,10717.189 +1287,2025-03-07T03:49:48.786448-08:00,0.0,10.733068,10733.068 +1288,2025-03-07T03:49:59.507247-08:00,0.0,10.720799,10720.799 +1289,2025-03-07T03:50:10.226646-08:00,0.0,10.719399,10719.399 +1290,2025-03-07T03:50:31.677260-08:00,0.0,21.450614,21450.614 +1291,2025-03-07T03:50:42.398821-08:00,0.0,10.721561,10721.561 +1292,2025-03-07T03:50:53.125488-08:00,0.0,10.726667,10726.667 +1293,2025-03-07T03:51:03.853245-08:00,0.0,10.727757,10727.757 +1294,2025-03-07T03:51:14.570247-08:00,0.0,10.717002,10717.002 +1295,2025-03-07T03:51:25.297474-08:00,0.0,10.727227,10727.227 +1296,2025-03-07T03:51:36.007489-08:00,0.0,10.710015,10710.015 +1297,2025-03-07T03:51:46.733498-08:00,0.0,10.726009,10726.009 +1298,2025-03-07T03:51:57.458312-08:00,0.0,10.724814,10724.814 +1299,2025-03-07T03:52:08.179451-08:00,0.0,10.721139,10721.139 +1300,2025-03-07T03:52:18.968222-08:00,0.0,10.788771,10788.771 +1301,2025-03-07T03:52:29.688169-08:00,0.0,10.719947,10719.947 +1302,2025-03-07T03:52:40.416396-08:00,0.0,10.728227,10728.227 +1303,2025-03-07T03:52:51.133375-08:00,0.0,10.716979,10716.979 +1304,2025-03-07T03:53:01.860106-08:00,0.0,10.726731,10726.731 +1305,2025-03-07T03:53:12.578103-08:00,0.0,10.717997,10717.997 +1306,2025-03-07T03:53:23.300309-08:00,0.0,10.722206,10722.206 +1307,2025-03-07T03:53:34.025126-08:00,0.0,10.724817,10724.817 +1308,2025-03-07T03:53:44.750134-08:00,0.0,10.725008,10725.008 +1309,2025-03-07T03:53:55.472478-08:00,0.0,10.722344,10722.344 +1310,2025-03-07T03:54:06.190289-08:00,0.0,10.717811,10717.811 +1311,2025-03-07T03:54:16.920287-08:00,0.0,10.729998,10729.998 +1312,2025-03-07T03:54:27.632220-08:00,0.0,10.711933,10711.933 +1313,2025-03-07T03:54:38.362504-08:00,0.0,10.730284,10730.284 +1314,2025-03-07T03:54:49.077103-08:00,0.0,10.714599,10714.599 +1315,2025-03-07T03:54:59.806308-08:00,0.0,10.729205,10729.205 +1316,2025-03-07T03:55:10.519192-08:00,0.0,10.712884,10712.884 +1317,2025-03-07T03:55:21.242388-08:00,0.0,10.723196,10723.196 +1318,2025-03-07T03:55:31.967104-08:00,0.0,10.724716,10724.716 +1319,2025-03-07T03:55:42.688198-08:00,0.0,10.721094,10721.094 +1320,2025-03-07T03:55:53.408103-08:00,0.0,10.719905,10719.905 +1321,2025-03-07T03:56:04.133707-08:00,0.0,10.725604,10725.604 +1322,2025-03-07T03:56:14.859867-08:00,0.0,10.72616,10726.16 +1323,2025-03-07T03:56:25.577756-08:00,0.0,10.717889,10717.889 +1324,2025-03-07T03:56:36.296107-08:00,0.0,10.718351,10718.351 +1325,2025-03-07T03:56:47.018100-08:00,0.0,10.721993,10721.993 +1326,2025-03-07T03:56:57.740135-08:00,0.0,10.722035,10722.035 +1327,2025-03-07T03:57:08.459124-08:00,0.0,10.718989,10718.989 +1328,2025-03-07T03:57:19.183134-08:00,0.0,10.72401,10724.01 +1329,2025-03-07T03:57:29.902221-08:00,0.0,10.719087,10719.087 +1330,2025-03-07T03:57:40.621898-08:00,0.0,10.719677,10719.677 +1331,2025-03-07T03:57:51.348152-08:00,0.0,10.726254,10726.254 +1332,2025-03-07T03:58:02.068239-08:00,0.0,10.720087,10720.087 +1333,2025-03-07T03:58:12.786651-08:00,0.0,10.718412,10718.412 +1334,2025-03-07T03:58:23.503117-08:00,0.0,10.716466,10716.466 +1335,2025-03-07T03:58:34.223103-08:00,0.0,10.719986,10719.986 +1336,2025-03-07T03:58:44.939300-08:00,0.0,10.716197,10716.197 +1337,2025-03-07T03:58:55.656103-08:00,0.0,10.716803,10716.803 +1338,2025-03-07T03:59:06.372386-08:00,0.0,10.716283,10716.283 +1339,2025-03-07T03:59:17.097105-08:00,0.0,10.724719,10724.719 +1340,2025-03-07T03:59:27.815100-08:00,0.0,10.717995,10717.995 +1341,2025-03-07T03:59:38.535241-08:00,0.0,10.720141,10720.141 +1342,2025-03-07T03:59:49.250102-08:00,0.0,10.714861,10714.861 +1343,2025-03-07T03:59:59.968481-08:00,0.0,10.718379,10718.379 +1344,2025-03-07T04:00:10.685183-08:00,0.0,10.716702,10716.702 +1345,2025-03-07T04:00:21.410284-08:00,0.0,10.725101,10725.101 +1346,2025-03-07T04:00:32.126193-08:00,0.0,10.715909,10715.909 +1347,2025-03-07T04:00:42.836134-08:00,0.0,10.709941,10709.941 +1348,2025-03-07T04:00:53.562098-08:00,0.0,10.725964,10725.964 +1349,2025-03-07T04:01:04.276103-08:00,0.0,10.714005,10714.005 +1350,2025-03-07T04:01:14.989626-08:00,0.0,10.713523,10713.523 +1351,2025-03-07T04:01:25.704345-08:00,0.0,10.714719,10714.719 +1352,2025-03-07T04:01:36.424106-08:00,0.0,10.719761,10719.761 +1353,2025-03-07T04:01:47.136302-08:00,0.0,10.712196,10712.196 +1354,2025-03-07T04:01:57.856543-08:00,0.0,10.720241,10720.241 +1355,2025-03-07T04:02:08.575297-08:00,0.0,10.718754,10718.754 +1356,2025-03-07T04:02:19.292106-08:00,0.0,10.716809,10716.809 +1357,2025-03-07T04:02:30.010687-08:00,0.0,10.718581,10718.581 +1358,2025-03-07T04:02:40.717282-08:00,0.0,10.706595,10706.595 +1359,2025-03-07T04:02:51.442478-08:00,0.0,10.725196,10725.196 +1360,2025-03-07T04:03:02.154001-08:00,0.0,10.711523,10711.523 +1361,2025-03-07T04:03:12.867104-08:00,0.0,10.713103,10713.103 +1362,2025-03-07T04:03:23.581105-08:00,0.0,10.714001,10714.001 +1363,2025-03-07T04:03:34.301222-08:00,0.0,10.720117,10720.117 +1364,2025-03-07T04:03:45.017105-08:00,0.0,10.715883,10715.883 +1365,2025-03-07T04:03:55.735306-08:00,0.0,10.718201,10718.201 +1366,2025-03-07T04:04:06.458108-08:00,0.0,10.722802,10722.802 +1367,2025-03-07T04:04:17.182444-08:00,0.0,10.724336,10724.336 +1368,2025-03-07T04:04:27.891105-08:00,0.0,10.708661,10708.661 +1369,2025-03-07T04:04:38.615105-08:00,0.0,10.724,10724.0 +1370,2025-03-07T04:04:49.329520-08:00,0.0,10.714415,10714.415 +1371,2025-03-07T04:05:00.054103-08:00,0.0,10.724583,10724.583 +1372,2025-03-07T04:05:10.769294-08:00,0.0,10.715191,10715.191 +1373,2025-03-07T04:05:21.486170-08:00,0.0,10.716876,10716.876 +1374,2025-03-07T04:05:32.199268-08:00,0.0,10.713098,10713.098 +1375,2025-03-07T04:05:42.919315-08:00,0.0,10.720047,10720.047 +1376,2025-03-07T04:05:53.636128-08:00,0.0,10.716813,10716.813 +1377,2025-03-07T04:06:04.351291-08:00,0.0,10.715163,10715.163 +1378,2025-03-07T04:06:15.072106-08:00,0.0,10.720815,10720.815 +1379,2025-03-07T04:06:25.787127-08:00,0.0,10.715021,10715.021 +1380,2025-03-07T04:06:36.502516-08:00,0.0,10.715389,10715.389 +1381,2025-03-07T04:06:47.224181-08:00,0.0,10.721665,10721.665 +1382,2025-03-07T04:06:57.936298-08:00,0.0,10.712117,10712.117 +1383,2025-03-07T04:07:08.655107-08:00,0.0,10.718809,10718.809 +1384,2025-03-07T04:07:19.374472-08:00,0.0,10.719365,10719.365 +1385,2025-03-07T04:07:30.095405-08:00,0.0,10.720933,10720.933 +1386,2025-03-07T04:07:40.819632-08:00,0.0,10.724227,10724.227 +1387,2025-03-07T04:07:51.528336-08:00,0.0,10.708704,10708.704 +1388,2025-03-07T04:08:02.250105-08:00,0.0,10.721769,10721.769 +1389,2025-03-07T04:08:12.964494-08:00,0.0,10.714389,10714.389 +1390,2025-03-07T04:08:23.682106-08:00,0.0,10.717612,10717.612 +1391,2025-03-07T04:08:34.403592-08:00,0.0,10.721486,10721.486 +1392,2025-03-07T04:08:45.118109-08:00,0.0,10.714517,10714.517 +1393,2025-03-07T04:08:55.839388-08:00,0.0,10.721279,10721.279 +1394,2025-03-07T04:09:06.554530-08:00,0.0,10.715142,10715.142 +1395,2025-03-07T04:09:17.279102-08:00,0.0,10.724572,10724.572 +1396,2025-03-07T04:09:27.998121-08:00,0.0,10.719019,10719.019 +1397,2025-03-07T04:09:38.718103-08:00,0.0,10.719982,10719.982 +1398,2025-03-07T04:09:49.436304-08:00,0.0,10.718201,10718.201 +1399,2025-03-07T04:10:00.153102-08:00,0.0,10.716798,10716.798 +1400,2025-03-07T04:10:10.866696-08:00,0.0,10.713594,10713.594 +1401,2025-03-07T04:10:21.591247-08:00,0.0,10.724551,10724.551 +1402,2025-03-07T04:10:32.311168-08:00,0.0,10.719921,10719.921 +1403,2025-03-07T04:10:43.024186-08:00,0.0,10.713018,10713.018 +1404,2025-03-07T04:10:53.747873-08:00,0.0,10.723687,10723.687 +1405,2025-03-07T04:11:04.465282-08:00,0.0,10.717409,10717.409 +1406,2025-03-07T04:11:15.175302-08:00,0.0,10.71002,10710.02 +1407,2025-03-07T04:11:25.893218-08:00,0.0,10.717916,10717.916 +1408,2025-03-07T04:11:36.609312-08:00,0.0,10.716094,10716.094 +1409,2025-03-07T04:11:47.332107-08:00,0.0,10.722795,10722.795 +1410,2025-03-07T04:11:58.046287-08:00,0.0,10.71418,10714.18 +1411,2025-03-07T04:12:08.762311-08:00,0.0,10.716024,10716.024 +1412,2025-03-07T04:12:19.488295-08:00,0.0,10.725984,10725.984 +1413,2025-03-07T04:12:30.205106-08:00,0.0,10.716811,10716.811 +1414,2025-03-07T04:12:40.922155-08:00,0.0,10.717049,10717.049 +1415,2025-03-07T04:12:51.636555-08:00,0.0,10.7144,10714.4 +1416,2025-03-07T04:13:02.358165-08:00,0.0,10.72161,10721.61 +1417,2025-03-07T04:13:13.072271-08:00,0.0,10.714106,10714.106 +1418,2025-03-07T04:13:23.792214-08:00,0.0,10.719943,10719.943 +1419,2025-03-07T04:13:34.508106-08:00,0.0,10.715892,10715.892 +1420,2025-03-07T04:13:45.232104-08:00,0.0,10.723998,10723.998 +1421,2025-03-07T04:13:55.947312-08:00,0.0,10.715208,10715.208 +1422,2025-03-07T04:14:06.666301-08:00,0.0,10.718989,10718.989 +1423,2025-03-07T04:14:17.386158-08:00,0.0,10.719857,10719.857 +1424,2025-03-07T04:14:28.107320-08:00,0.0,10.721162,10721.162 +1425,2025-03-07T04:14:38.825170-08:00,0.0,10.71785,10717.85 +1426,2025-03-07T04:14:49.545218-08:00,0.0,10.720048,10720.048 +1427,2025-03-07T04:15:00.259106-08:00,0.0,10.713888,10713.888 +1428,2025-03-07T04:15:10.983514-08:00,0.0,10.724408,10724.408 +1429,2025-03-07T04:15:21.701188-08:00,0.0,10.717674,10717.674 +1430,2025-03-07T04:15:32.418198-08:00,0.0,10.71701,10717.01 +1431,2025-03-07T04:15:43.148616-08:00,0.0,10.730418,10730.418 +1432,2025-03-07T04:15:53.870002-08:00,0.0,10.721386,10721.386 +1433,2025-03-07T04:16:04.580266-08:00,0.0,10.710264,10710.264 +1434,2025-03-07T04:16:15.310950-08:00,0.0,10.730684,10730.684 +1435,2025-03-07T04:16:26.022101-08:00,0.0,10.711151,10711.151 +1436,2025-03-07T04:16:36.748311-08:00,0.0,10.72621,10726.21 +1437,2025-03-07T04:16:47.463370-08:00,0.0,10.715059,10715.059 +1438,2025-03-07T04:16:58.174103-08:00,0.0,10.710733,10710.733 +1439,2025-03-07T04:17:08.894969-08:00,0.0,10.720866,10720.866 +1440,2025-03-07T04:17:19.615336-08:00,0.0,10.720367,10720.367 +1441,2025-03-07T04:17:30.335103-08:00,0.0,10.719767,10719.767 +1442,2025-03-07T04:17:41.046143-08:00,0.0,10.71104,10711.04 +1443,2025-03-07T04:17:51.770105-08:00,0.0,10.723962,10723.962 +1444,2025-03-07T04:18:02.488190-08:00,0.0,10.718085,10718.085 +1445,2025-03-07T04:18:13.203175-08:00,0.0,10.714985,10714.985 +1446,2025-03-07T04:18:23.918154-08:00,0.0,10.714979,10714.979 +1447,2025-03-07T04:18:34.632517-08:00,0.0,10.714363,10714.363 +1448,2025-03-07T04:18:45.352623-08:00,0.0,10.720106,10720.106 +1449,2025-03-07T04:18:56.071508-08:00,0.0,10.718885,10718.885 +1450,2025-03-07T04:19:06.798623-08:00,0.0,10.727115,10727.115 +1451,2025-03-07T04:19:17.518287-08:00,0.0,10.719664,10719.664 +1452,2025-03-07T04:19:28.244305-08:00,0.0,10.726018,10726.018 +1453,2025-03-07T04:19:38.962105-08:00,0.0,10.7178,10717.8 +1454,2025-03-07T04:19:49.677105-08:00,0.0,10.715,10715.0 +1455,2025-03-07T04:20:00.406593-08:00,0.0,10.729488,10729.488 +1456,2025-03-07T04:20:11.116308-08:00,0.0,10.709715,10709.715 +1457,2025-03-07T04:20:21.844279-08:00,0.0,10.727971,10727.971 +1458,2025-03-07T04:20:32.555183-08:00,0.0,10.710904,10710.904 +1459,2025-03-07T04:20:43.282504-08:00,0.0,10.727321,10727.321 +1460,2025-03-07T04:20:53.997104-08:00,0.0,10.7146,10714.6 +1461,2025-03-07T04:21:04.708136-08:00,0.0,10.711032,10711.032 +1462,2025-03-07T04:21:15.434268-08:00,0.0,10.726132,10726.132 +1463,2025-03-07T04:21:26.151106-08:00,0.0,10.716838,10716.838 +1464,2025-03-07T04:21:36.873252-08:00,0.0,10.722146,10722.146 +1465,2025-03-07T04:21:47.593107-08:00,0.0,10.719855,10719.855 +1466,2025-03-07T04:21:58.301110-08:00,0.0,10.708003,10708.003 +1467,2025-03-07T04:22:09.022271-08:00,0.0,10.721161,10721.161 +1468,2025-03-07T04:22:19.744126-08:00,0.0,10.721855,10721.855 +1469,2025-03-07T04:22:30.464671-08:00,0.0,10.720545,10720.545 +1470,2025-03-07T04:22:41.180105-08:00,0.0,10.715434,10715.434 +1471,2025-03-07T04:22:51.898681-08:00,0.0,10.718576,10718.576 +1472,2025-03-07T04:23:02.610297-08:00,0.0,10.711616,10711.616 +1473,2025-03-07T04:23:13.337290-08:00,0.0,10.726993,10726.993 +1474,2025-03-07T04:23:24.049252-08:00,0.0,10.711962,10711.962 +1475,2025-03-07T04:23:34.763312-08:00,0.0,10.71406,10714.06 +1476,2025-03-07T04:23:45.485873-08:00,0.0,10.722561,10722.561 +1477,2025-03-07T04:23:56.206131-08:00,0.0,10.720258,10720.258 +1478,2025-03-07T04:24:06.922273-08:00,0.0,10.716142,10716.142 +1479,2025-03-07T04:24:17.638293-08:00,0.0,10.71602,10716.02 +1480,2025-03-07T04:24:28.361338-08:00,0.0,10.723045,10723.045 +1481,2025-03-07T04:24:39.082105-08:00,0.0,10.720767,10720.767 +1482,2025-03-07T04:24:49.795306-08:00,0.0,10.713201,10713.201 +1483,2025-03-07T04:25:00.511335-08:00,0.0,10.716029,10716.029 +1484,2025-03-07T04:25:11.232103-08:00,0.0,10.720768,10720.768 +1485,2025-03-07T04:25:21.961317-08:00,0.0,10.729214,10729.214 +1486,2025-03-07T04:25:32.675098-08:00,0.0,10.713781,10713.781 +1487,2025-03-07T04:25:43.401346-08:00,0.0,10.726248,10726.248 +1488,2025-03-07T04:25:54.120187-08:00,0.0,10.718841,10718.841 +1489,2025-03-07T04:26:04.831129-08:00,0.0,10.710942,10710.942 +1490,2025-03-07T04:26:15.559638-08:00,0.0,10.728509,10728.509 +1491,2025-03-07T04:26:26.272099-08:00,0.0,10.712461,10712.461 +1492,2025-03-07T04:26:36.998338-08:00,0.0,10.726239,10726.239 +1493,2025-03-07T04:26:47.716127-08:00,0.0,10.717789,10717.789 +1494,2025-03-07T04:26:58.433294-08:00,0.0,10.717167,10717.167 +1495,2025-03-07T04:27:09.156267-08:00,0.0,10.722973,10722.973 +1496,2025-03-07T04:27:19.873320-08:00,0.0,10.717053,10717.053 +1497,2025-03-07T04:27:30.592105-08:00,0.0,10.718785,10718.785 +1498,2025-03-07T04:27:41.307284-08:00,0.0,10.715179,10715.179 +1499,2025-03-07T04:27:52.023249-08:00,0.0,10.715965,10715.965 +1500,2025-03-07T04:28:02.739896-08:00,0.0,10.716647,10716.647 +1501,2025-03-07T04:28:13.463209-08:00,0.0,10.723313,10723.313 +1502,2025-03-07T04:28:24.181105-08:00,0.0,10.717896,10717.896 +1503,2025-03-07T04:28:34.902343-08:00,0.0,10.721238,10721.238 +1504,2025-03-07T04:28:45.612425-08:00,0.0,10.710082,10710.082 +1505,2025-03-07T04:28:56.335280-08:00,0.0,10.722855,10722.855 +1506,2025-03-07T04:29:07.050179-08:00,0.0,10.714899,10714.899 +1507,2025-03-07T04:29:17.766337-08:00,0.0,10.716158,10716.158 +1508,2025-03-07T04:29:28.485372-08:00,0.0,10.719035,10719.035 +1509,2025-03-07T04:29:39.204104-08:00,0.0,10.718732,10718.732 +1510,2025-03-07T04:29:49.917403-08:00,0.0,10.713299,10713.299 +1511,2025-03-07T04:30:00.641346-08:00,0.0,10.723943,10723.943 +1512,2025-03-07T04:30:11.352103-08:00,0.0,10.710757,10710.757 +1513,2025-03-07T04:30:22.075180-08:00,0.0,10.723077,10723.077 +1514,2025-03-07T04:30:32.793227-08:00,0.0,10.718047,10718.047 +1515,2025-03-07T04:30:43.509550-08:00,0.0,10.716323,10716.323 +1516,2025-03-07T04:30:54.224099-08:00,0.0,10.714549,10714.549 +1517,2025-03-07T04:31:04.939345-08:00,0.0,10.715246,10715.246 +1518,2025-03-07T04:31:15.657101-08:00,0.0,10.717756,10717.756 +1519,2025-03-07T04:31:26.381137-08:00,0.0,10.724036,10724.036 +1520,2025-03-07T04:31:37.102098-08:00,0.0,10.720961,10720.961 +1521,2025-03-07T04:31:47.820125-08:00,0.0,10.718027,10718.027 +1522,2025-03-07T04:31:58.541367-08:00,0.0,10.721242,10721.242 +1523,2025-03-07T04:32:09.253229-08:00,0.0,10.711862,10711.862 +1524,2025-03-07T04:32:19.977118-08:00,0.0,10.723889,10723.889 +1525,2025-03-07T04:32:30.700103-08:00,0.0,10.722985,10722.985 +1526,2025-03-07T04:32:41.413268-08:00,0.0,10.713165,10713.165 +1527,2025-03-07T04:32:52.128105-08:00,0.0,10.714837,10714.837 +1528,2025-03-07T04:33:02.856288-08:00,0.0,10.728183,10728.183 +1529,2025-03-07T04:33:13.565105-08:00,0.0,10.708817,10708.817 +1530,2025-03-07T04:33:24.294169-08:00,0.0,10.729064,10729.064 +1531,2025-03-07T04:33:35.009316-08:00,0.0,10.715147,10715.147 +1532,2025-03-07T04:33:45.723098-08:00,0.0,10.713782,10713.782 +1533,2025-03-07T04:33:56.450282-08:00,0.0,10.727184,10727.184 +1534,2025-03-07T04:34:07.159105-08:00,0.0,10.708823,10708.823 +1535,2025-03-07T04:34:17.884539-08:00,0.0,10.725434,10725.434 +1536,2025-03-07T04:34:28.603103-08:00,0.0,10.718564,10718.564 +1537,2025-03-07T04:34:39.320516-08:00,0.0,10.717413,10717.413 +1538,2025-03-07T04:34:50.034247-08:00,0.0,10.713731,10713.731 +1539,2025-03-07T04:35:00.756874-08:00,0.0,10.722627,10722.627 +1540,2025-03-07T04:35:11.485145-08:00,0.0,10.728271,10728.271 +1541,2025-03-07T04:35:22.198858-08:00,0.0,10.713713,10713.713 +1542,2025-03-07T04:35:32.919455-08:00,0.0,10.720597,10720.597 +1543,2025-03-07T04:35:43.640135-08:00,0.0,10.72068,10720.68 +1544,2025-03-07T04:35:54.368327-08:00,0.0,10.728192,10728.192 +1545,2025-03-07T04:36:05.084128-08:00,0.0,10.715801,10715.801 +1546,2025-03-07T04:36:15.797698-08:00,0.0,10.71357,10713.57 +1547,2025-03-07T04:36:26.518159-08:00,0.0,10.720461,10720.461 +1548,2025-03-07T04:36:37.246881-08:00,0.0,10.728722,10728.722 +1549,2025-03-07T04:36:47.959306-08:00,0.0,10.712425,10712.425 +1550,2025-03-07T04:36:58.685323-08:00,0.0,10.726017,10726.017 +1551,2025-03-07T04:37:09.405107-08:00,0.0,10.719784,10719.784 +1552,2025-03-07T04:37:20.121249-08:00,0.0,10.716142,10716.142 +1553,2025-03-07T04:37:30.842104-08:00,0.0,10.720855,10720.855 +1554,2025-03-07T04:37:41.566448-08:00,0.0,10.724344,10724.344 +1555,2025-03-07T04:37:52.287299-08:00,0.0,10.720851,10720.851 +1556,2025-03-07T04:38:03.007099-08:00,0.0,10.7198,10719.8 +1557,2025-03-07T04:38:13.723105-08:00,0.0,10.716006,10716.006 +1558,2025-03-07T04:38:24.447179-08:00,0.0,10.724074,10724.074 +1559,2025-03-07T04:38:35.163108-08:00,0.0,10.715929,10715.929 +1560,2025-03-07T04:38:45.889154-08:00,0.0,10.726046,10726.046 +1561,2025-03-07T04:38:56.605174-08:00,0.0,10.71602,10716.02 +1562,2025-03-07T04:39:07.327394-08:00,0.0,10.72222,10722.22 +1563,2025-03-07T04:39:18.047284-08:00,0.0,10.71989,10719.89 +1564,2025-03-07T04:39:28.768104-08:00,0.0,10.72082,10720.82 +1565,2025-03-07T04:39:39.478166-08:00,0.0,10.710062,10710.062 +1566,2025-03-07T04:39:50.204616-08:00,0.0,10.72645,10726.45 +1567,2025-03-07T04:40:00.921102-08:00,0.0,10.716486,10716.486 +1568,2025-03-07T04:40:11.638459-08:00,0.0,10.717357,10717.357 +1569,2025-03-07T04:40:22.363548-08:00,0.0,10.725089,10725.089 +1570,2025-03-07T04:40:33.078313-08:00,0.0,10.714765,10714.765 +1571,2025-03-07T04:40:43.792102-08:00,0.0,10.713789,10713.789 +1572,2025-03-07T04:40:54.510754-08:00,0.0,10.718652,10718.652 +1573,2025-03-07T04:41:05.238101-08:00,0.0,10.727347,10727.347 +1574,2025-03-07T04:41:15.952563-08:00,0.0,10.714462,10714.462 +1575,2025-03-07T04:41:26.669110-08:00,0.0,10.716547,10716.547 +1576,2025-03-07T04:41:37.391673-08:00,0.0,10.722563,10722.563 +1577,2025-03-07T04:41:48.105329-08:00,0.0,10.713656,10713.656 +1578,2025-03-07T04:41:58.826105-08:00,0.0,10.720776,10720.776 +1579,2025-03-07T04:42:09.542282-08:00,0.0,10.716177,10716.177 +1580,2025-03-07T04:42:20.268355-08:00,0.0,10.726073,10726.073 +1581,2025-03-07T04:42:30.985291-08:00,0.0,10.716936,10716.936 +1582,2025-03-07T04:42:41.703105-08:00,0.0,10.717814,10717.814 +1583,2025-03-07T04:42:52.417420-08:00,0.0,10.714315,10714.315 +1584,2025-03-07T04:43:03.137323-08:00,0.0,10.719903,10719.903 +1585,2025-03-07T04:43:13.861171-08:00,0.0,10.723848,10723.848 +1586,2025-03-07T04:43:24.587102-08:00,0.0,10.725931,10725.931 +1587,2025-03-07T04:43:35.306125-08:00,0.0,10.719023,10719.023 +1588,2025-03-07T04:43:46.026278-08:00,0.0,10.720153,10720.153 +1589,2025-03-07T04:43:56.741104-08:00,0.0,10.714826,10714.826 +1590,2025-03-07T04:44:07.458743-08:00,0.0,10.717639,10717.639 +1591,2025-03-07T04:44:18.177777-08:00,0.0,10.719034,10719.034 +1592,2025-03-07T04:44:28.902462-08:00,0.0,10.724685,10724.685 +1593,2025-03-07T04:44:39.628369-08:00,0.0,10.725907,10725.907 +1594,2025-03-07T04:44:50.344309-08:00,0.0,10.71594,10715.94 +1595,2025-03-07T04:45:01.059454-08:00,0.0,10.715145,10715.145 +1596,2025-03-07T04:45:11.780856-08:00,0.0,10.721402,10721.402 +1597,2025-03-07T04:45:22.501105-08:00,0.0,10.720249,10720.249 +1598,2025-03-07T04:45:33.220427-08:00,0.0,10.719322,10719.322 +1599,2025-03-07T04:45:43.946170-08:00,0.0,10.725743,10725.743 +1600,2025-03-07T04:45:54.666162-08:00,0.0,10.719992,10719.992 +1601,2025-03-07T04:46:05.384105-08:00,0.0,10.717943,10717.943 +1602,2025-03-07T04:46:16.101103-08:00,0.0,10.716998,10716.998 +1603,2025-03-07T04:46:26.819220-08:00,0.0,10.718117,10718.117 +1604,2025-03-07T04:46:37.538297-08:00,0.0,10.719077,10719.077 +1605,2025-03-07T04:46:48.258276-08:00,0.0,10.719979,10719.979 +1606,2025-03-07T04:46:58.984101-08:00,0.0,10.725825,10725.825 +1607,2025-03-07T04:47:09.703504-08:00,0.0,10.719403,10719.403 +1608,2025-03-07T04:47:20.418099-08:00,0.0,10.714595,10714.595 +1609,2025-03-07T04:47:31.138229-08:00,0.0,10.72013,10720.13 +1610,2025-03-07T04:47:41.858106-08:00,0.0,10.719877,10719.877 +1611,2025-03-07T04:47:52.580099-08:00,0.0,10.721993,10721.993 +1612,2025-03-07T04:48:03.303105-08:00,0.0,10.723006,10723.006 +1613,2025-03-07T04:48:14.024126-08:00,0.0,10.721021,10721.021 +1614,2025-03-07T04:48:24.746167-08:00,0.0,10.722041,10722.041 +1615,2025-03-07T04:48:35.471554-08:00,0.0,10.725387,10725.387 +1616,2025-03-07T04:48:46.187104-08:00,0.0,10.71555,10715.55 +1617,2025-03-07T04:48:56.905403-08:00,0.0,10.718299,10718.299 +1618,2025-03-07T04:49:07.620968-08:00,0.0,10.715565,10715.565 +1619,2025-03-07T04:49:18.334105-08:00,0.0,10.713137,10713.137 +1620,2025-03-07T04:49:29.057306-08:00,0.0,10.723201,10723.201 +1621,2025-03-07T04:49:39.773393-08:00,0.0,10.716087,10716.087 +1622,2025-03-07T04:49:50.498294-08:00,0.0,10.724901,10724.901 +1623,2025-03-07T04:50:01.218210-08:00,0.0,10.719916,10719.916 +1624,2025-03-07T04:50:11.928310-08:00,0.0,10.7101,10710.1 +1625,2025-03-07T04:50:22.642254-08:00,0.0,10.713944,10713.944 +1626,2025-03-07T04:50:33.365139-08:00,0.0,10.722885,10722.885 +1627,2025-03-07T04:50:44.086284-08:00,0.0,10.721145,10721.145 +1628,2025-03-07T04:50:54.805161-08:00,0.0,10.718877,10718.877 +1629,2025-03-07T04:51:05.536432-08:00,0.0,10.731271,10731.271 +1630,2025-03-07T04:51:16.248105-08:00,0.0,10.711673,10711.673 +1631,2025-03-07T04:51:26.965376-08:00,0.0,10.717271,10717.271 +1632,2025-03-07T04:51:37.696105-08:00,0.0,10.730729,10730.729 +1633,2025-03-07T04:51:48.413958-08:00,0.0,10.717853,10717.853 +1634,2025-03-07T04:51:59.138173-08:00,0.0,10.724215,10724.215 +1635,2025-03-07T04:52:09.859319-08:00,0.0,10.721146,10721.146 +1636,2025-03-07T04:52:20.579821-08:00,0.0,10.720502,10720.502 +1637,2025-03-07T04:52:31.298223-08:00,0.0,10.718402,10718.402 +1638,2025-03-07T04:52:42.025827-08:00,0.0,10.727604,10727.604 +1639,2025-03-07T04:52:52.741962-08:00,0.0,10.716135,10716.135 +1640,2025-03-07T04:53:03.465941-08:00,0.0,10.723979,10723.979 +1641,2025-03-07T04:53:14.185955-08:00,0.0,10.720014,10720.014 +1642,2025-03-07T04:53:24.904932-08:00,0.0,10.718977,10718.977 +1643,2025-03-07T04:53:35.627952-08:00,0.0,10.72302,10723.02 +1644,2025-03-07T04:53:46.346234-08:00,0.0,10.718282,10718.282 +1645,2025-03-07T04:53:57.061849-08:00,0.0,10.715615,10715.615 +1646,2025-03-07T04:54:07.785842-08:00,0.0,10.723993,10723.993 +1647,2025-03-07T04:54:18.510399-08:00,0.0,10.724557,10724.557 +1648,2025-03-07T04:54:29.231583-08:00,0.0,10.721184,10721.184 +1649,2025-03-07T04:54:39.951825-08:00,0.0,10.720242,10720.242 +1650,2025-03-07T04:54:50.667030-08:00,0.0,10.715205,10715.205 +1651,2025-03-07T04:55:01.387039-08:00,0.0,10.720009,10720.009 +1652,2025-03-07T04:55:12.111001-08:00,0.0,10.723962,10723.962 +1653,2025-03-07T04:55:22.835488-08:00,0.0,10.724487,10724.487 +1654,2025-03-07T04:55:33.559914-08:00,0.0,10.724426,10724.426 +1655,2025-03-07T04:55:44.284823-08:00,0.0,10.724909,10724.909 +1656,2025-03-07T04:55:55.007007-08:00,0.0,10.722184,10722.184 +1657,2025-03-07T04:56:05.726021-08:00,0.0,10.719014,10719.014 +1658,2025-03-07T04:56:16.448825-08:00,0.0,10.722804,10722.804 +1659,2025-03-07T04:56:27.171004-08:00,0.0,10.722179,10722.179 +1660,2025-03-07T04:56:37.892168-08:00,0.0,10.721164,10721.164 +1661,2025-03-07T04:56:48.604823-08:00,0.0,10.712655,10712.655 +1662,2025-03-07T04:56:59.330003-08:00,0.0,10.72518,10725.18 +1663,2025-03-07T04:57:10.048824-08:00,0.0,10.718821,10718.821 +1664,2025-03-07T04:57:20.770229-08:00,0.0,10.721405,10721.405 +1665,2025-03-07T04:57:31.483823-08:00,0.0,10.713594,10713.594 +1666,2025-03-07T04:57:42.209030-08:00,0.0,10.725207,10725.207 +1667,2025-03-07T04:57:52.923017-08:00,0.0,10.713987,10713.987 +1668,2025-03-07T04:58:03.648828-08:00,0.0,10.725811,10725.811 +1669,2025-03-07T04:58:14.370821-08:00,0.0,10.721993,10721.993 +1670,2025-03-07T04:58:25.091958-08:00,0.0,10.721137,10721.137 +1671,2025-03-07T04:58:35.805099-08:00,0.0,10.713141,10713.141 +1672,2025-03-07T04:58:46.522817-08:00,0.0,10.717718,10717.718 +1673,2025-03-07T04:58:57.246991-08:00,0.0,10.724174,10724.174 +1674,2025-03-07T04:59:07.966890-08:00,0.0,10.719899,10719.899 +1675,2025-03-07T04:59:18.686192-08:00,0.0,10.719302,10719.302 +1676,2025-03-07T04:59:29.414826-08:00,0.0,10.728634,10728.634 +1677,2025-03-07T04:59:40.131922-08:00,0.0,10.717096,10717.096 +1678,2025-03-07T04:59:50.856070-08:00,0.0,10.724148,10724.148 +1679,2025-03-07T05:00:01.580028-08:00,0.0,10.723958,10723.958 +1680,2025-03-07T05:00:12.294974-08:00,0.0,10.714946,10714.946 +1681,2025-03-07T05:00:23.017003-08:00,0.0,10.722029,10722.029 +1682,2025-03-07T05:00:33.743823-08:00,0.0,10.72682,10726.82 +1683,2025-03-07T05:00:44.460017-08:00,0.0,10.716194,10716.194 +1684,2025-03-07T05:00:55.178825-08:00,0.0,10.718808,10718.808 +1685,2025-03-07T05:01:05.905395-08:00,0.0,10.72657,10726.57 +1686,2025-03-07T05:01:16.623821-08:00,0.0,10.718426,10718.426 +1687,2025-03-07T05:01:27.345017-08:00,0.0,10.721196,10721.196 +1688,2025-03-07T05:01:38.062825-08:00,0.0,10.717808,10717.808 +1689,2025-03-07T05:01:48.787306-08:00,0.0,10.724481,10724.481 +1690,2025-03-07T05:01:59.510828-08:00,0.0,10.723522,10723.522 +1691,2025-03-07T05:02:10.241345-08:00,0.0,10.730517,10730.517 +1692,2025-03-07T05:02:20.965864-08:00,0.0,10.724519,10724.519 +1693,2025-03-07T05:02:31.687899-08:00,0.0,10.722035,10722.035 +1694,2025-03-07T05:02:42.409311-08:00,0.0,10.721412,10721.412 +1695,2025-03-07T05:02:53.138855-08:00,0.0,10.729544,10729.544 +1696,2025-03-07T05:03:03.852849-08:00,0.0,10.713994,10713.994 +1697,2025-03-07T05:03:14.574822-08:00,0.0,10.721973,10721.973 +1698,2025-03-07T05:03:25.298820-08:00,0.0,10.723998,10723.998 +1699,2025-03-07T05:03:36.017018-08:00,0.0,10.718198,10718.198 +1700,2025-03-07T05:03:46.736825-08:00,0.0,10.719807,10719.807 +1701,2025-03-07T05:03:57.459228-08:00,0.0,10.722403,10722.403 +1702,2025-03-07T05:04:08.179821-08:00,0.0,10.720593,10720.593 +1703,2025-03-07T05:04:18.908056-08:00,0.0,10.728235,10728.235 +1704,2025-03-07T05:04:29.627027-08:00,0.0,10.718971,10718.971 +1705,2025-03-07T05:04:40.343058-08:00,0.0,10.716031,10716.031 +1706,2025-03-07T05:04:51.074822-08:00,0.0,10.731764,10731.764 +1707,2025-03-07T05:05:01.792019-08:00,0.0,10.717197,10717.197 +1708,2025-03-07T05:05:12.512108-08:00,0.0,10.720089,10720.089 +1709,2025-03-07T05:05:23.226995-08:00,0.0,10.714887,10714.887 +1710,2025-03-07T05:05:33.951857-08:00,0.0,10.724862,10724.862 +1711,2025-03-07T05:05:34.723565-08:00,0.0,0.771708,771.708 +1712,2025-03-07T05:05:44.668218-08:00,0.0,9.944653,9944.653 +1713,2025-03-07T05:05:55.389821-08:00,0.0,10.721603,10721.603 +1714,2025-03-07T05:06:06.114996-08:00,0.0,10.725175,10725.175 +1715,2025-03-07T05:06:06.114996-08:00,0.0,0.0,0.0 +1716,2025-03-07T05:06:16.831826-08:00,0.0,10.71683,10716.83 +1717,2025-03-07T05:06:27.558136-08:00,0.0,10.72631,10726.31 +1718,2025-03-07T05:06:38.274824-08:00,0.0,10.716688,10716.688 +1719,2025-03-07T05:06:49.000966-08:00,0.0,10.726142,10726.142 +1720,2025-03-07T05:06:59.717824-08:00,0.0,10.716858,10716.858 +1721,2025-03-07T05:07:10.438829-08:00,0.0,10.721005,10721.005 +1722,2025-03-07T05:07:21.164859-08:00,0.0,10.72603,10726.03 +1723,2025-03-07T05:07:31.882063-08:00,0.0,10.717204,10717.204 +1724,2025-03-07T05:07:42.610837-08:00,0.0,10.728774,10728.774 +1725,2025-03-07T05:07:53.333998-08:00,0.0,10.723161,10723.161 +1726,2025-03-07T05:08:04.052025-08:00,0.0,10.718027,10718.027 +1727,2025-03-07T05:08:14.765941-08:00,0.0,10.713916,10713.916 +1728,2025-03-07T05:08:25.482010-08:00,0.0,10.716069,10716.069 +1729,2025-03-07T05:08:36.211825-08:00,0.0,10.729815,10729.815 +1730,2025-03-07T05:08:46.929039-08:00,0.0,10.717214,10717.214 +1731,2025-03-07T05:08:57.652944-08:00,0.0,10.723905,10723.905 +1732,2025-03-07T05:09:08.375068-08:00,0.0,10.722124,10722.124 +1733,2025-03-07T05:09:19.100027-08:00,0.0,10.724959,10724.959 +1734,2025-03-07T05:09:29.811891-08:00,0.0,10.711864,10711.864 +1735,2025-03-07T05:09:40.542874-08:00,0.0,10.730983,10730.983 +1736,2025-03-07T05:09:51.262037-08:00,0.0,10.719163,10719.163 +1737,2025-03-07T05:10:01.978025-08:00,0.0,10.715988,10715.988 +1738,2025-03-07T05:10:12.704822-08:00,0.0,10.726797,10726.797 +1739,2025-03-07T05:10:23.422586-08:00,0.0,10.717764,10717.764 +1740,2025-03-07T05:10:34.139692-08:00,0.0,10.717106,10717.106 +1741,2025-03-07T05:10:44.859822-08:00,0.0,10.72013,10720.13 +1742,2025-03-07T05:10:55.578009-08:00,0.0,10.718187,10718.187 +1743,2025-03-07T05:11:06.295820-08:00,0.0,10.717811,10717.811 +1744,2025-03-07T05:11:17.019784-08:00,0.0,10.723964,10723.964 +1745,2025-03-07T05:11:27.736850-08:00,0.0,10.717066,10717.066 +1746,2025-03-07T05:11:38.451822-08:00,0.0,10.714972,10714.972 +1747,2025-03-07T05:11:49.176044-08:00,0.0,10.724222,10724.222 +1748,2025-03-07T05:11:59.891023-08:00,0.0,10.714979,10714.979 +1749,2025-03-07T05:12:10.610004-08:00,0.0,10.718981,10718.981 +1750,2025-03-07T05:12:21.335998-08:00,0.0,10.725994,10725.994 +1751,2025-03-07T05:12:32.049003-08:00,0.0,10.713005,10713.005 +1752,2025-03-07T05:12:42.768025-08:00,0.0,10.719022,10719.022 +1753,2025-03-07T05:12:53.495987-08:00,0.0,10.727962,10727.962 +1754,2025-03-07T05:13:04.217824-08:00,0.0,10.721837,10721.837 +1755,2025-03-07T05:13:14.936268-08:00,0.0,10.718444,10718.444 +1756,2025-03-07T05:13:25.662962-08:00,0.0,10.726694,10726.694 +1757,2025-03-07T05:13:36.384994-08:00,0.0,10.722032,10722.032 +1758,2025-03-07T05:13:47.104105-08:00,0.0,10.719111,10719.111 +1759,2025-03-07T05:13:57.824021-08:00,0.0,10.719916,10719.916 +1760,2025-03-07T05:14:08.551894-08:00,0.0,10.727873,10727.873 +1761,2025-03-07T05:14:19.268023-08:00,0.0,10.716129,10716.129 +1762,2025-03-07T05:14:29.985538-08:00,0.0,10.717515,10717.515 +1763,2025-03-07T05:14:40.711023-08:00,0.0,10.725485,10725.485 +1764,2025-03-07T05:14:51.430189-08:00,0.0,10.719166,10719.166 +1765,2025-03-07T05:15:02.149102-08:00,0.0,10.718913,10718.913 +1766,2025-03-07T05:15:12.864223-08:00,0.0,10.715121,10715.121 +1767,2025-03-07T05:15:23.587823-08:00,0.0,10.7236,10723.6 +1768,2025-03-07T05:15:34.309024-08:00,0.0,10.721201,10721.201 +1769,2025-03-07T05:15:45.027038-08:00,0.0,10.718014,10718.014 +1770,2025-03-07T05:15:55.747009-08:00,0.0,10.719971,10719.971 +1771,2025-03-07T05:16:06.472306-08:00,0.0,10.725297,10725.297 +1772,2025-03-07T05:16:17.188839-08:00,0.0,10.716533,10716.533 +1773,2025-03-07T05:16:27.908144-08:00,0.0,10.719305,10719.305 +1774,2025-03-07T05:16:38.627016-08:00,0.0,10.718872,10718.872 +1775,2025-03-07T05:16:49.351860-08:00,0.0,10.724844,10724.844 +1776,2025-03-07T05:17:00.069005-08:00,0.0,10.717145,10717.145 +1777,2025-03-07T05:17:10.782903-08:00,0.0,10.713898,10713.898 +1778,2025-03-07T05:17:21.505906-08:00,0.0,10.723003,10723.003 +1779,2025-03-07T05:17:32.231849-08:00,0.0,10.725943,10725.943 +1780,2025-03-07T05:17:42.953510-08:00,0.0,10.721661,10721.661 +1781,2025-03-07T05:17:53.676002-08:00,0.0,10.722492,10722.492 +1782,2025-03-07T05:18:04.391822-08:00,0.0,10.71582,10715.82 +1783,2025-03-07T05:18:15.106900-08:00,0.0,10.715078,10715.078 +1784,2025-03-07T05:18:25.821435-08:00,0.0,10.714535,10714.535 +1785,2025-03-07T05:18:36.544811-08:00,0.0,10.723376,10723.376 +1786,2025-03-07T05:18:47.267823-08:00,0.0,10.723012,10723.012 +1787,2025-03-07T05:18:57.989912-08:00,0.0,10.722089,10722.089 +1788,2025-03-07T05:19:08.709237-08:00,0.0,10.719325,10719.325 +1789,2025-03-07T05:19:19.427250-08:00,0.0,10.718013,10718.013 +1790,2025-03-07T05:19:30.150822-08:00,0.0,10.723572,10723.572 +1791,2025-03-07T05:19:40.870981-08:00,0.0,10.720159,10720.159 +1792,2025-03-07T05:19:51.595825-08:00,0.0,10.724844,10724.844 +1793,2025-03-07T05:20:02.312235-08:00,0.0,10.71641,10716.41 +1794,2025-03-07T05:20:13.033822-08:00,0.0,10.721587,10721.587 +1795,2025-03-07T05:20:23.757942-08:00,0.0,10.72412,10724.12 +1796,2025-03-07T05:20:34.483430-08:00,0.0,10.725488,10725.488 +1797,2025-03-07T05:20:45.204020-08:00,0.0,10.72059,10720.59 +1798,2025-03-07T05:20:55.930827-08:00,0.0,10.726807,10726.807 +1799,2025-03-07T05:21:06.647995-08:00,0.0,10.717168,10717.168 +1800,2025-03-07T05:21:17.373821-08:00,0.0,10.725826,10725.826 +1801,2025-03-07T05:21:28.093875-08:00,0.0,10.720054,10720.054 +1802,2025-03-07T05:21:38.809931-08:00,0.0,10.716056,10716.056 +1803,2025-03-07T05:21:49.539117-08:00,0.0,10.729186,10729.186 +1804,2025-03-07T05:22:00.258822-08:00,0.0,10.719705,10719.705 +1805,2025-03-07T05:22:10.982161-08:00,0.0,10.723339,10723.339 +1806,2025-03-07T05:22:21.706027-08:00,0.0,10.723866,10723.866 +1807,2025-03-07T05:22:32.425031-08:00,0.0,10.719004,10719.004 +1808,2025-03-07T05:22:43.155847-08:00,0.0,10.730816,10730.816 +1809,2025-03-07T05:22:53.872010-08:00,0.0,10.716163,10716.163 +1810,2025-03-07T05:23:04.592819-08:00,0.0,10.720809,10720.809 +1811,2025-03-07T05:23:15.321854-08:00,0.0,10.729035,10729.035 +1812,2025-03-07T05:23:26.040825-08:00,0.0,10.718971,10718.971 +1813,2025-03-07T05:23:36.755281-08:00,0.0,10.714456,10714.456 +1814,2025-03-07T05:23:47.479823-08:00,0.0,10.724542,10724.542 +1815,2025-03-07T05:23:58.197021-08:00,0.0,10.717198,10717.198 +1816,2025-03-07T05:24:08.920899-08:00,0.0,10.723878,10723.878 +1817,2025-03-07T05:24:19.641200-08:00,0.0,10.720301,10720.301 +1818,2025-03-07T05:24:30.358891-08:00,0.0,10.717691,10717.691 +1819,2025-03-07T05:24:41.088860-08:00,0.0,10.729969,10729.969 +1820,2025-03-07T05:24:51.805076-08:00,0.0,10.716216,10716.216 +1821,2025-03-07T05:25:02.525005-08:00,0.0,10.719929,10719.929 +1822,2025-03-07T05:25:13.247825-08:00,0.0,10.72282,10722.82 +1823,2025-03-07T05:25:23.964762-08:00,0.0,10.716937,10716.937 +1824,2025-03-07T05:25:34.686823-08:00,0.0,10.722061,10722.061 +1825,2025-03-07T05:25:45.401822-08:00,0.0,10.714999,10714.999 +1826,2025-03-07T05:25:56.118852-08:00,0.0,10.71703,10717.03 +1827,2025-03-07T05:26:06.843826-08:00,0.0,10.724974,10724.974 +1828,2025-03-07T05:26:17.561072-08:00,0.0,10.717246,10717.246 +1829,2025-03-07T05:26:28.288819-08:00,0.0,10.727747,10727.747 +1830,2025-03-07T05:26:39.007823-08:00,0.0,10.719004,10719.004 +1831,2025-03-07T05:26:49.729037-08:00,0.0,10.721214,10721.214 +1832,2025-03-07T05:27:00.456821-08:00,0.0,10.727784,10727.784 +1833,2025-03-07T05:27:11.179824-08:00,0.0,10.723003,10723.003 +1834,2025-03-07T05:27:21.898040-08:00,0.0,10.718216,10718.216 +1835,2025-03-07T05:27:32.627719-08:00,0.0,10.729679,10729.679 +1836,2025-03-07T05:27:43.349854-08:00,0.0,10.722135,10722.135 +1837,2025-03-07T05:27:54.060825-08:00,0.0,10.710971,10710.971 +1838,2025-03-07T05:28:04.788822-08:00,0.0,10.727997,10727.997 +1839,2025-03-07T05:28:15.508880-08:00,0.0,10.720058,10720.058 +1840,2025-03-07T05:28:26.237109-08:00,0.0,10.728229,10728.229 +1841,2025-03-07T05:28:36.961008-08:00,0.0,10.723899,10723.899 +1842,2025-03-07T05:28:47.676825-08:00,0.0,10.715817,10715.817 +1843,2025-03-07T05:28:58.397000-08:00,0.0,10.720175,10720.175 +1844,2025-03-07T05:29:09.114290-08:00,0.0,10.71729,10717.29 +1845,2025-03-07T05:29:19.839045-08:00,0.0,10.724755,10724.755 +1846,2025-03-07T05:29:30.563824-08:00,0.0,10.724779,10724.779 +1847,2025-03-07T05:29:41.287100-08:00,0.0,10.723276,10723.276 +1848,2025-03-07T05:29:52.006882-08:00,0.0,10.719782,10719.782 +1849,2025-03-07T05:30:02.734009-08:00,0.0,10.727127,10727.127 +1850,2025-03-07T05:30:13.447887-08:00,0.0,10.713878,10713.878 +1851,2025-03-07T05:30:24.179046-08:00,0.0,10.731159,10731.159 +1852,2025-03-07T05:30:34.894913-08:00,0.0,10.715867,10715.867 +1853,2025-03-07T05:30:45.622006-08:00,0.0,10.727093,10727.093 +1854,2025-03-07T05:30:56.344022-08:00,0.0,10.722016,10722.016 +1855,2025-03-07T05:31:07.062741-08:00,0.0,10.718719,10718.719 +1856,2025-03-07T05:31:17.786374-08:00,0.0,10.723633,10723.633 +1857,2025-03-07T05:31:28.495825-08:00,0.0,10.709451,10709.451 +1858,2025-03-07T05:31:39.217100-08:00,0.0,10.721275,10721.275 +1859,2025-03-07T05:31:49.940817-08:00,0.0,10.723717,10723.717 +1860,2025-03-07T05:32:00.659009-08:00,0.0,10.718192,10718.192 +1861,2025-03-07T05:32:11.377825-08:00,0.0,10.718816,10718.816 +1862,2025-03-07T05:32:22.100848-08:00,0.0,10.723023,10723.023 +1863,2025-03-07T05:32:32.813020-08:00,0.0,10.712172,10712.172 +1864,2025-03-07T05:32:43.538133-08:00,0.0,10.725113,10725.113 +1865,2025-03-07T05:32:54.253020-08:00,0.0,10.714887,10714.887 +1866,2025-03-07T05:33:04.969955-08:00,0.0,10.716935,10716.935 +1867,2025-03-07T05:33:15.692019-08:00,0.0,10.722064,10722.064 +1868,2025-03-07T05:33:26.412828-08:00,0.0,10.720809,10720.809 +1869,2025-03-07T05:33:37.135823-08:00,0.0,10.722995,10722.995 +1870,2025-03-07T05:33:47.851825-08:00,0.0,10.716002,10716.002 +1871,2025-03-07T05:33:58.575012-08:00,0.0,10.723187,10723.187 +1872,2025-03-07T05:34:09.302147-08:00,0.0,10.727135,10727.135 +1873,2025-03-07T05:34:20.012684-08:00,0.0,10.710537,10710.537 +1874,2025-03-07T05:34:30.734821-08:00,0.0,10.722137,10722.137 +1875,2025-03-07T05:34:41.458497-08:00,0.0,10.723676,10723.676 +1876,2025-03-07T05:34:52.179032-08:00,0.0,10.720535,10720.535 +1877,2025-03-07T05:35:02.893277-08:00,0.0,10.714245,10714.245 +1878,2025-03-07T05:35:13.613009-08:00,0.0,10.719732,10719.732 +1879,2025-03-07T05:35:24.334778-08:00,0.0,10.721769,10721.769 +1880,2025-03-07T05:35:35.062257-08:00,0.0,10.727479,10727.479 +1881,2025-03-07T05:35:45.778661-08:00,0.0,10.716404,10716.404 +1882,2025-03-07T05:35:56.502856-08:00,0.0,10.724195,10724.195 +1883,2025-03-07T05:36:07.214828-08:00,0.0,10.711972,10711.972 +1884,2025-03-07T05:36:17.934039-08:00,0.0,10.719211,10719.211 +1885,2025-03-07T05:36:28.659851-08:00,0.0,10.725812,10725.812 +1886,2025-03-07T05:36:39.373529-08:00,0.0,10.713678,10713.678 +1887,2025-03-07T05:36:50.094051-08:00,0.0,10.720522,10720.522 +1888,2025-03-07T05:37:00.814991-08:00,0.0,10.72094,10720.94 +1889,2025-03-07T05:37:11.529885-08:00,0.0,10.714894,10714.894 +1890,2025-03-07T05:37:22.259521-08:00,0.0,10.729636,10729.636 +1891,2025-03-07T05:37:32.971022-08:00,0.0,10.711501,10711.501 +1892,2025-03-07T05:37:43.698957-08:00,0.0,10.727935,10727.935 +1893,2025-03-07T05:37:54.422862-08:00,0.0,10.723905,10723.905 +1894,2025-03-07T05:38:05.137859-08:00,0.0,10.714997,10714.997 +1895,2025-03-07T05:38:15.859825-08:00,0.0,10.721966,10721.966 +1896,2025-03-07T05:38:26.573849-08:00,0.0,10.714024,10714.024 +1897,2025-03-07T05:38:37.300087-08:00,0.0,10.726238,10726.238 +1898,2025-03-07T05:38:48.012820-08:00,0.0,10.712733,10712.733 +1899,2025-03-07T05:38:58.741824-08:00,0.0,10.729004,10729.004 +1900,2025-03-07T05:39:09.462852-08:00,0.0,10.721028,10721.028 +1901,2025-03-07T05:39:20.182997-08:00,0.0,10.720145,10720.145 +1902,2025-03-07T05:39:30.900854-08:00,0.0,10.717857,10717.857 +1903,2025-03-07T05:39:41.619821-08:00,0.0,10.718967,10718.967 +1904,2025-03-07T05:39:52.341023-08:00,0.0,10.721202,10721.202 +1905,2025-03-07T05:40:03.064571-08:00,0.0,10.723548,10723.548 +1906,2025-03-07T05:40:13.776916-08:00,0.0,10.712345,10712.345 +1907,2025-03-07T05:40:24.498016-08:00,0.0,10.7211,10721.1 +1908,2025-03-07T05:40:35.220031-08:00,0.0,10.722015,10722.015 +1909,2025-03-07T05:40:45.937119-08:00,0.0,10.717088,10717.088 +1910,2025-03-07T05:40:56.660825-08:00,0.0,10.723706,10723.706 +1911,2025-03-07T05:41:07.378010-08:00,0.0,10.717185,10717.185 +1912,2025-03-07T05:41:18.100029-08:00,0.0,10.722019,10722.019 +1913,2025-03-07T05:41:28.827109-08:00,0.0,10.72708,10727.08 +1914,2025-03-07T05:41:39.548824-08:00,0.0,10.721715,10721.715 +1915,2025-03-07T05:41:50.269115-08:00,0.0,10.720291,10720.291 +1916,2025-03-07T05:42:00.989647-08:00,0.0,10.720532,10720.532 +1917,2025-03-07T05:42:11.713413-08:00,0.0,10.723766,10723.766 +1918,2025-03-07T05:42:22.427868-08:00,0.0,10.714455,10714.455 +1919,2025-03-07T05:42:33.147824-08:00,0.0,10.719956,10719.956 +1920,2025-03-07T05:42:43.868016-08:00,0.0,10.720192,10720.192 +1921,2025-03-07T05:42:54.593850-08:00,0.0,10.725834,10725.834 +1922,2025-03-07T05:43:05.309823-08:00,0.0,10.715973,10715.973 +1923,2025-03-07T05:43:16.031824-08:00,0.0,10.722001,10722.001 +1924,2025-03-07T05:43:26.752007-08:00,0.0,10.720183,10720.183 +1925,2025-03-07T05:43:37.474818-08:00,0.0,10.722811,10722.811 +1926,2025-03-07T05:43:48.199832-08:00,0.0,10.725014,10725.014 +1927,2025-03-07T05:43:58.912821-08:00,0.0,10.712989,10712.989 +1928,2025-03-07T05:44:09.633996-08:00,0.0,10.721175,10721.175 +1929,2025-03-07T05:44:20.350029-08:00,0.0,10.716033,10716.033 +1930,2025-03-07T05:44:31.068908-08:00,0.0,10.718879,10718.879 +1931,2025-03-07T05:44:41.793852-08:00,0.0,10.724944,10724.944 +1932,2025-03-07T05:44:52.521007-08:00,0.0,10.727155,10727.155 +1933,2025-03-07T05:45:03.239033-08:00,0.0,10.718026,10718.026 +1934,2025-03-07T05:45:13.961941-08:00,0.0,10.722908,10722.908 +1935,2025-03-07T05:45:24.678869-08:00,0.0,10.716928,10716.928 +1936,2025-03-07T05:45:35.395888-08:00,0.0,10.717019,10717.019 +1937,2025-03-07T05:45:46.124017-08:00,0.0,10.728129,10728.129 +1938,2025-03-07T05:45:56.847995-08:00,0.0,10.723978,10723.978 +1939,2025-03-07T05:46:07.564824-08:00,0.0,10.716829,10716.829 +1940,2025-03-07T05:46:18.292028-08:00,0.0,10.727204,10727.204 +1941,2025-03-07T05:46:29.016031-08:00,0.0,10.724003,10724.003 +1942,2025-03-07T05:46:39.733193-08:00,0.0,10.717162,10717.162 +1943,2025-03-07T05:46:50.465824-08:00,0.0,10.732631,10732.631 +1944,2025-03-07T05:47:01.193369-08:00,0.0,10.727545,10727.545 +1945,2025-03-07T05:47:11.910823-08:00,0.0,10.717454,10717.454 +1946,2025-03-07T05:47:22.633824-08:00,0.0,10.723001,10723.001 +1947,2025-03-07T05:47:33.358323-08:00,0.0,10.724499,10724.499 +1948,2025-03-07T05:47:44.082999-08:00,0.0,10.724676,10724.676 +1949,2025-03-07T05:47:54.809428-08:00,0.0,10.726429,10726.429 +1950,2025-03-07T05:48:05.534825-08:00,0.0,10.725397,10725.397 +1951,2025-03-07T05:48:16.256223-08:00,0.0,10.721398,10721.398 +1952,2025-03-07T05:48:26.976980-08:00,0.0,10.720757,10720.757 +1953,2025-03-07T05:48:37.698847-08:00,0.0,10.721867,10721.867 +1954,2025-03-07T05:48:48.418824-08:00,0.0,10.719977,10719.977 +1955,2025-03-07T05:48:59.142954-08:00,0.0,10.72413,10724.13 +1956,2025-03-07T05:49:09.861848-08:00,0.0,10.718894,10718.894 +1957,2025-03-07T05:49:20.593000-08:00,0.0,10.731152,10731.152 +1958,2025-03-07T05:49:31.315824-08:00,0.0,10.722824,10722.824 +1959,2025-03-07T05:49:42.040827-08:00,0.0,10.725003,10725.003 +1960,2025-03-07T05:49:52.771460-08:00,0.0,10.730633,10730.633 +1961,2025-03-07T05:50:03.490049-08:00,0.0,10.718589,10718.589 +1962,2025-03-07T05:50:14.219473-08:00,0.0,10.729424,10729.424 +1963,2025-03-07T05:50:24.939822-08:00,0.0,10.720349,10720.349 +1964,2025-03-07T05:50:35.661372-08:00,0.0,10.72155,10721.55 +1965,2025-03-07T05:50:46.393405-08:00,0.0,10.732033,10732.033 +1966,2025-03-07T05:50:57.114997-08:00,0.0,10.721592,10721.592 +1967,2025-03-07T05:51:07.830980-08:00,0.0,10.715983,10715.983 +1968,2025-03-07T05:51:18.555976-08:00,0.0,10.724996,10724.996 +1969,2025-03-07T05:51:29.284896-08:00,0.0,10.72892,10728.92 +1970,2025-03-07T05:51:40.011007-08:00,0.0,10.726111,10726.111 +1971,2025-03-07T05:51:50.729824-08:00,0.0,10.718817,10718.817 +1972,2025-03-07T05:52:01.452896-08:00,0.0,10.723072,10723.072 +1973,2025-03-07T05:52:12.183352-08:00,0.0,10.730456,10730.456 +1974,2025-03-07T05:52:22.825631-08:00,0.0,10.642279,10642.279 +1975,2025-03-07T05:52:33.557054-08:00,0.0,10.731423,10731.423 +1976,2025-03-07T05:52:44.277951-08:00,0.0,10.720897,10720.897 +1977,2025-03-07T05:52:55.003138-08:00,0.0,10.725187,10725.187 +1978,2025-03-07T05:53:16.451223-08:00,0.0,21.448085,21448.085 +1979,2025-03-07T05:53:27.179948-08:00,0.0,10.728725,10728.725 +1980,2025-03-07T05:53:37.903945-08:00,0.0,10.723997,10723.997 +1981,2025-03-07T05:53:48.625968-08:00,0.0,10.722023,10722.023 +1982,2025-03-07T05:53:59.352145-08:00,0.0,10.726177,10726.177 +1983,2025-03-07T05:54:10.081905-08:00,0.0,10.72976,10729.76 +1984,2025-03-07T05:54:20.801940-08:00,0.0,10.720035,10720.035 +1985,2025-03-07T05:54:31.525108-08:00,0.0,10.723168,10723.168 +1986,2025-03-07T05:54:42.254161-08:00,0.0,10.729053,10729.053 +1987,2025-03-07T05:54:52.976136-08:00,0.0,10.721975,10721.975 +1988,2025-03-07T05:55:14.428153-08:00,0.0,21.452017,21452.017 +1989,2025-03-07T05:55:25.146974-08:00,0.0,10.718821,10718.821 +1990,2025-03-07T05:55:35.874949-08:00,0.0,10.727975,10727.975 +1991,2025-03-07T05:55:46.601129-08:00,0.0,10.72618,10726.18 +1992,2025-03-07T05:55:57.319152-08:00,0.0,10.718023,10718.023 +1993,2025-03-07T05:56:08.045137-08:00,0.0,10.725985,10725.985 +1994,2025-03-07T05:56:18.765947-08:00,0.0,10.72081,10720.81 +1995,2025-03-07T05:56:29.490063-08:00,0.0,10.724116,10724.116 +1996,2025-03-07T05:56:40.214941-08:00,0.0,10.724878,10724.878 +1997,2025-03-07T05:56:50.940947-08:00,0.0,10.726006,10726.006 +1998,2025-03-07T05:57:01.671038-08:00,0.0,10.730091,10730.091 +1999,2025-03-07T05:57:12.398950-08:00,0.0,10.727912,10727.912 +2000,2025-03-07T05:57:23.128160-08:00,0.0,10.72921,10729.21 +2001,2025-03-07T05:57:33.845116-08:00,0.0,10.716956,10716.956 +2002,2025-03-07T05:57:44.566323-08:00,0.0,10.721207,10721.207 +2003,2025-03-07T05:57:55.298942-08:00,0.0,10.732619,10732.619 +2004,2025-03-07T05:58:06.018137-08:00,0.0,10.719195,10719.195 +2005,2025-03-07T05:58:16.738155-08:00,0.0,10.720018,10720.018 +2006,2025-03-07T05:58:27.459960-08:00,0.0,10.721805,10721.805 +2007,2025-03-07T05:58:38.189997-08:00,0.0,10.730037,10730.037 +2008,2025-03-07T05:58:48.910169-08:00,0.0,10.720172,10720.172 +2009,2025-03-07T05:58:59.634142-08:00,0.0,10.723973,10723.973 +2010,2025-03-07T05:59:10.357944-08:00,0.0,10.723802,10723.802 +2011,2025-03-07T05:59:21.080311-08:00,0.0,10.722367,10722.367 +2012,2025-03-07T05:59:31.809941-08:00,0.0,10.72963,10729.63 +2013,2025-03-07T05:59:42.529131-08:00,0.0,10.71919,10719.19 +2014,2025-03-07T05:59:53.258711-08:00,0.0,10.72958,10729.58 +2015,2025-03-07T06:00:03.987195-08:00,0.0,10.728484,10728.484 +2016,2025-03-07T06:00:14.704942-08:00,0.0,10.717747,10717.747 +2017,2025-03-07T06:00:25.433245-08:00,0.0,10.728303,10728.303 +2018,2025-03-07T06:00:36.155947-08:00,0.0,10.722702,10722.702 +2019,2025-03-07T06:00:46.882970-08:00,0.0,10.727023,10727.023 +2020,2025-03-07T06:00:57.614137-08:00,0.0,10.731167,10731.167 +2021,2025-03-07T06:01:08.337011-08:00,0.0,10.722874,10722.874 +2022,2025-03-07T06:01:19.059194-08:00,0.0,10.722183,10722.183 +2023,2025-03-07T06:01:29.789970-08:00,0.0,10.730776,10730.776 +2024,2025-03-07T06:01:40.508947-08:00,0.0,10.718977,10718.977 +2025,2025-03-07T06:01:51.233151-08:00,0.0,10.724204,10724.204 +2026,2025-03-07T06:02:01.957037-08:00,0.0,10.723886,10723.886 +2027,2025-03-07T06:02:12.677949-08:00,0.0,10.720912,10720.912 +2028,2025-03-07T06:02:23.400948-08:00,0.0,10.722999,10722.999 +2029,2025-03-07T06:02:34.126091-08:00,0.0,10.725143,10725.143 +2030,2025-03-07T06:02:44.845136-08:00,0.0,10.719045,10719.045 +2031,2025-03-07T06:02:55.560944-08:00,0.0,10.715808,10715.808 +2032,2025-03-07T06:03:06.285975-08:00,0.0,10.725031,10725.031 +2033,2025-03-07T06:03:17.014722-08:00,0.0,10.728747,10728.747 +2034,2025-03-07T06:03:27.734004-08:00,0.0,10.719282,10719.282 +2035,2025-03-07T06:03:38.459810-08:00,0.0,10.725806,10725.806 +2036,2025-03-07T06:03:49.180191-08:00,0.0,10.720381,10720.381 +2037,2025-03-07T06:03:59.906119-08:00,0.0,10.725928,10725.928 +2038,2025-03-07T06:04:10.635946-08:00,0.0,10.729827,10729.827 +2039,2025-03-07T06:04:21.354656-08:00,0.0,10.71871,10718.71 +2040,2025-03-07T06:04:32.085945-08:00,0.0,10.731289,10731.289 +2041,2025-03-07T06:04:42.801079-08:00,0.0,10.715134,10715.134 +2042,2025-03-07T06:04:53.523944-08:00,0.0,10.722865,10722.865 +2043,2025-03-07T06:05:04.252133-08:00,0.0,10.728189,10728.189 +2044,2025-03-07T06:05:14.975384-08:00,0.0,10.723251,10723.251 +2045,2025-03-07T06:05:25.703946-08:00,0.0,10.728562,10728.562 +2046,2025-03-07T06:05:36.431109-08:00,0.0,10.727163,10727.163 +2047,2025-03-07T06:05:47.158942-08:00,0.0,10.727833,10727.833 +2048,2025-03-07T06:05:57.883172-08:00,0.0,10.72423,10724.23 +2049,2025-03-07T06:06:08.613102-08:00,0.0,10.72993,10729.93 +2050,2025-03-07T06:06:19.333945-08:00,0.0,10.720843,10720.843 +2051,2025-03-07T06:06:30.054050-08:00,0.0,10.720105,10720.105 +2052,2025-03-07T06:06:40.786948-08:00,0.0,10.732898,10732.898 +2053,2025-03-07T06:06:51.514401-08:00,0.0,10.727453,10727.453 +2054,2025-03-07T06:07:02.236943-08:00,0.0,10.722542,10722.542 +2055,2025-03-07T06:07:12.958947-08:00,0.0,10.722004,10722.004 +2056,2025-03-07T06:07:23.683945-08:00,0.0,10.724998,10724.998 +2057,2025-03-07T06:07:34.413944-08:00,0.0,10.729999,10729.999 +2058,2025-03-07T06:07:45.138115-08:00,0.0,10.724171,10724.171 +2059,2025-03-07T06:07:55.859943-08:00,0.0,10.721828,10721.828 +2060,2025-03-07T06:08:06.580414-08:00,0.0,10.720471,10720.471 +2061,2025-03-07T06:08:17.300945-08:00,0.0,10.720531,10720.531 +2062,2025-03-07T06:08:28.027137-08:00,0.0,10.726192,10726.192 +2063,2025-03-07T06:08:38.744946-08:00,0.0,10.717809,10717.809 +2064,2025-03-07T06:08:49.470157-08:00,0.0,10.725211,10725.211 +2065,2025-03-07T06:09:00.194968-08:00,0.0,10.724811,10724.811 +2066,2025-03-07T06:09:10.908944-08:00,0.0,10.713976,10713.976 +2067,2025-03-07T06:09:21.634184-08:00,0.0,10.72524,10725.24 +2068,2025-03-07T06:09:32.352239-08:00,0.0,10.718055,10718.055 +2069,2025-03-07T06:09:43.069164-08:00,0.0,10.716925,10716.925 +2070,2025-03-07T06:09:53.789944-08:00,0.0,10.72078,10720.78 +2071,2025-03-07T06:10:04.514167-08:00,0.0,10.724223,10724.223 +2072,2025-03-07T06:10:15.223945-08:00,0.0,10.709778,10709.778 +2073,2025-03-07T06:10:25.946322-08:00,0.0,10.722377,10722.377 +2074,2025-03-07T06:10:36.670972-08:00,0.0,10.72465,10724.65 +2075,2025-03-07T06:10:47.385132-08:00,0.0,10.71416,10714.16 +2076,2025-03-07T06:10:58.102974-08:00,0.0,10.717842,10717.842 +2077,2025-03-07T06:11:08.825729-08:00,0.0,10.722755,10722.755 +2078,2025-03-07T06:11:19.549945-08:00,0.0,10.724216,10724.216 +2079,2025-03-07T06:11:30.265093-08:00,0.0,10.715148,10715.148 +2080,2025-03-07T06:11:40.982867-08:00,0.0,10.717774,10717.774 +2081,2025-03-07T06:11:51.714334-08:00,0.0,10.731467,10731.467 +2082,2025-03-07T06:12:02.425160-08:00,0.0,10.710826,10710.826 +2083,2025-03-07T06:12:13.146945-08:00,0.0,10.721785,10721.785 +2084,2025-03-07T06:12:23.875951-08:00,0.0,10.729006,10729.006 +2085,2025-03-07T06:12:34.596347-08:00,0.0,10.720396,10720.396 +2086,2025-03-07T06:12:45.315165-08:00,0.0,10.718818,10718.818 +2087,2025-03-07T06:12:56.045692-08:00,0.0,10.730527,10730.527 +2088,2025-03-07T06:13:06.767975-08:00,0.0,10.722283,10722.283 +2089,2025-03-07T06:13:17.487577-08:00,0.0,10.719602,10719.602 +2090,2025-03-07T06:13:28.207940-08:00,0.0,10.720363,10720.363 +2091,2025-03-07T06:13:38.927011-08:00,0.0,10.719071,10719.071 +2092,2025-03-07T06:13:49.643131-08:00,0.0,10.71612,10716.12 +2093,2025-03-07T06:14:00.361002-08:00,0.0,10.717871,10717.871 +2094,2025-03-07T06:14:11.087947-08:00,0.0,10.726945,10726.945 +2095,2025-03-07T06:14:21.802315-08:00,0.0,10.714368,10714.368 +2096,2025-03-07T06:14:32.526316-08:00,0.0,10.724001,10724.001 +2097,2025-03-07T06:14:43.239733-08:00,0.0,10.713417,10713.417 +2098,2025-03-07T06:14:53.965158-08:00,0.0,10.725425,10725.425 +2099,2025-03-07T06:15:04.690148-08:00,0.0,10.72499,10724.99 +2100,2025-03-07T06:15:15.405347-08:00,0.0,10.715199,10715.199 +2101,2025-03-07T06:15:26.126944-08:00,0.0,10.721597,10721.597 +2102,2025-03-07T06:15:36.849297-08:00,0.0,10.722353,10722.353 +2103,2025-03-07T06:15:47.577146-08:00,0.0,10.727849,10727.849 +2104,2025-03-07T06:15:58.290521-08:00,0.0,10.713375,10713.375 +2105,2025-03-07T06:16:09.012944-08:00,0.0,10.722423,10722.423 +2106,2025-03-07T06:16:19.733834-08:00,0.0,10.72089,10720.89 +2107,2025-03-07T06:16:30.466975-08:00,0.0,10.733141,10733.141 +2108,2025-03-07T06:16:41.185324-08:00,0.0,10.718349,10718.349 +2109,2025-03-07T06:16:51.902939-08:00,0.0,10.717615,10717.615 +2110,2025-03-07T06:17:02.622827-08:00,0.0,10.719888,10719.888 +2111,2025-03-07T06:17:13.349994-08:00,0.0,10.727167,10727.167 +2112,2025-03-07T06:17:24.075078-08:00,0.0,10.725084,10725.084 +2113,2025-03-07T06:17:34.793943-08:00,0.0,10.718865,10718.865 +2114,2025-03-07T06:17:45.518092-08:00,0.0,10.724149,10724.149 +2115,2025-03-07T06:17:56.233948-08:00,0.0,10.715856,10715.856 +2116,2025-03-07T06:18:06.963291-08:00,0.0,10.729343,10729.343 +2117,2025-03-07T06:18:17.675477-08:00,0.0,10.712186,10712.186 +2118,2025-03-07T06:18:28.394076-08:00,0.0,10.718599,10718.599 +2119,2025-03-07T06:18:39.119947-08:00,0.0,10.725871,10725.871 +2120,2025-03-07T06:18:49.838208-08:00,0.0,10.718261,10718.261 +2121,2025-03-07T06:19:00.552249-08:00,0.0,10.714041,10714.041 +2122,2025-03-07T06:19:11.276985-08:00,0.0,10.724736,10724.736 +2123,2025-03-07T06:19:21.991946-08:00,0.0,10.714961,10714.961 +2124,2025-03-07T06:19:32.721081-08:00,0.0,10.729135,10729.135 +2125,2025-03-07T06:19:43.438161-08:00,0.0,10.71708,10717.08 +2126,2025-03-07T06:19:54.157976-08:00,0.0,10.719815,10719.815 +2127,2025-03-07T06:20:04.882138-08:00,0.0,10.724162,10724.162 +2128,2025-03-07T06:20:15.600108-08:00,0.0,10.71797,10717.97 +2129,2025-03-07T06:20:26.313130-08:00,0.0,10.713022,10713.022 +2130,2025-03-07T06:20:37.037945-08:00,0.0,10.724815,10724.815 +2131,2025-03-07T06:20:47.752273-08:00,0.0,10.714328,10714.328 +2132,2025-03-07T06:20:58.477946-08:00,0.0,10.725673,10725.673 +2133,2025-03-07T06:21:09.199341-08:00,0.0,10.721395,10721.395 +2134,2025-03-07T06:21:19.917100-08:00,0.0,10.717759,10717.759 +2135,2025-03-07T06:21:30.642149-08:00,0.0,10.725049,10725.049 +2136,2025-03-07T06:21:41.359086-08:00,0.0,10.716937,10716.937 +2137,2025-03-07T06:21:52.078041-08:00,0.0,10.718955,10718.955 +2138,2025-03-07T06:22:02.801944-08:00,0.0,10.723903,10723.903 +2139,2025-03-07T06:22:13.520945-08:00,0.0,10.719001,10719.001 +2140,2025-03-07T06:22:24.237016-08:00,0.0,10.716071,10716.071 +2141,2025-03-07T06:22:34.959184-08:00,0.0,10.722168,10722.168 +2142,2025-03-07T06:22:45.678068-08:00,0.0,10.718884,10718.884 +2143,2025-03-07T06:22:56.404944-08:00,0.0,10.726876,10726.876 +2144,2025-03-07T06:23:07.119157-08:00,0.0,10.714213,10714.213 +2145,2025-03-07T06:23:17.845150-08:00,0.0,10.725993,10725.993 +2146,2025-03-07T06:23:28.556830-08:00,0.0,10.71168,10711.68 +2147,2025-03-07T06:23:39.276943-08:00,0.0,10.720113,10720.113 +2148,2025-03-07T06:23:49.999827-08:00,0.0,10.722884,10722.884 +2149,2025-03-07T06:24:00.721341-08:00,0.0,10.721514,10721.514 +2150,2025-03-07T06:24:11.434943-08:00,0.0,10.713602,10713.602 +2151,2025-03-07T06:24:22.148136-08:00,0.0,10.713193,10713.193 +2152,2025-03-07T06:24:32.874943-08:00,0.0,10.726807,10726.807 +2153,2025-03-07T06:24:43.588114-08:00,0.0,10.713171,10713.171 +2154,2025-03-07T06:24:54.315154-08:00,0.0,10.72704,10727.04 +2155,2025-03-07T06:25:05.037947-08:00,0.0,10.722793,10722.793 +2156,2025-03-07T06:25:15.760077-08:00,0.0,10.72213,10722.13 +2157,2025-03-07T06:25:26.476125-08:00,0.0,10.716048,10716.048 +2158,2025-03-07T06:25:37.203941-08:00,0.0,10.727816,10727.816 +2159,2025-03-07T06:25:47.924956-08:00,0.0,10.721015,10721.015 +2160,2025-03-07T06:25:58.644972-08:00,0.0,10.720016,10720.016 +2161,2025-03-07T06:26:09.372549-08:00,0.0,10.727577,10727.577 +2162,2025-03-07T06:26:20.093084-08:00,0.0,10.720535,10720.535 +2163,2025-03-07T06:26:30.818947-08:00,0.0,10.725863,10725.863 +2164,2025-03-07T06:26:41.549101-08:00,0.0,10.730154,10730.154 +2165,2025-03-07T06:26:52.267021-08:00,0.0,10.71792,10717.92 +2166,2025-03-07T06:27:02.993530-08:00,0.0,10.726509,10726.509 +2167,2025-03-07T06:27:13.705943-08:00,0.0,10.712413,10712.413 +2168,2025-03-07T06:27:24.433451-08:00,0.0,10.727508,10727.508 +2169,2025-03-07T06:27:35.155006-08:00,0.0,10.721555,10721.555 +2170,2025-03-07T06:27:45.877727-08:00,0.0,10.722721,10722.721 +2171,2025-03-07T06:27:56.601083-08:00,0.0,10.723356,10723.356 +2172,2025-03-07T06:28:07.326125-08:00,0.0,10.725042,10725.042 +2173,2025-03-07T06:28:18.042966-08:00,0.0,10.716841,10716.841 +2174,2025-03-07T06:28:28.773050-08:00,0.0,10.730084,10730.084 +2175,2025-03-07T06:28:39.499943-08:00,0.0,10.726893,10726.893 +2176,2025-03-07T06:28:50.217816-08:00,0.0,10.717873,10717.873 +2177,2025-03-07T06:29:00.938975-08:00,0.0,10.721159,10721.159 +2178,2025-03-07T06:29:11.656126-08:00,0.0,10.717151,10717.151 +2179,2025-03-07T06:29:22.379940-08:00,0.0,10.723814,10723.814 +2180,2025-03-07T06:29:33.107248-08:00,0.0,10.727308,10727.308 +2181,2025-03-07T06:29:43.819943-08:00,0.0,10.712695,10712.695 +2182,2025-03-07T06:29:54.542751-08:00,0.0,10.722808,10722.808 +2183,2025-03-07T06:30:05.260269-08:00,0.0,10.717518,10717.518 +2184,2025-03-07T06:30:15.985706-08:00,0.0,10.725437,10725.437 +2185,2025-03-07T06:30:26.704141-08:00,0.0,10.718435,10718.435 +2186,2025-03-07T06:30:37.433134-08:00,0.0,10.728993,10728.993 +2187,2025-03-07T06:30:48.158943-08:00,0.0,10.725809,10725.809 +2188,2025-03-07T06:30:58.876124-08:00,0.0,10.717181,10717.181 +2189,2025-03-07T06:31:09.593878-08:00,0.0,10.717754,10717.754 +2190,2025-03-07T06:31:20.322177-08:00,0.0,10.728299,10728.299 +2191,2025-03-07T06:31:31.046943-08:00,0.0,10.724766,10724.766 +2192,2025-03-07T06:31:41.775942-08:00,0.0,10.728999,10728.999 +2193,2025-03-07T06:31:52.501978-08:00,0.0,10.726036,10726.036 +2194,2025-03-07T06:32:03.227948-08:00,0.0,10.72597,10725.97 +2195,2025-03-07T06:32:13.948896-08:00,0.0,10.720948,10720.948 +2196,2025-03-07T06:32:24.678123-08:00,0.0,10.729227,10729.227 +2197,2025-03-07T06:32:35.398117-08:00,0.0,10.719994,10719.994 +2198,2025-03-07T06:32:46.116981-08:00,0.0,10.718864,10718.864 +2199,2025-03-07T06:32:56.845129-08:00,0.0,10.728148,10728.148 +2200,2025-03-07T06:33:07.574559-08:00,0.0,10.72943,10729.43 +2201,2025-03-07T06:33:18.289202-08:00,0.0,10.714643,10714.643 +2202,2025-03-07T06:33:29.016240-08:00,0.0,10.727038,10727.038 +2203,2025-03-07T06:33:39.742171-08:00,0.0,10.725931,10725.931 +2204,2025-03-07T06:33:50.465142-08:00,0.0,10.722971,10722.971 +2205,2025-03-07T06:34:01.184417-08:00,0.0,10.719275,10719.275 +2206,2025-03-07T06:34:11.914300-08:00,0.0,10.729883,10729.883 +2207,2025-03-07T06:34:22.637971-08:00,0.0,10.723671,10723.671 +2208,2025-03-07T06:34:33.368904-08:00,0.0,10.730933,10730.933 +2209,2025-03-07T06:34:44.088946-08:00,0.0,10.720042,10720.042 +2210,2025-03-07T06:34:54.809111-08:00,0.0,10.720165,10720.165 +2211,2025-03-07T06:35:05.540182-08:00,0.0,10.731071,10731.071 +2212,2025-03-07T06:35:16.265130-08:00,0.0,10.724948,10724.948 +2213,2025-03-07T06:35:26.990942-08:00,0.0,10.725812,10725.812 +2214,2025-03-07T06:35:37.719945-08:00,0.0,10.729003,10729.003 +2215,2025-03-07T06:35:48.447132-08:00,0.0,10.727187,10727.187 +2216,2025-03-07T06:35:59.175175-08:00,0.0,10.728043,10728.043 +2217,2025-03-07T06:36:09.889322-08:00,0.0,10.714147,10714.147 +2218,2025-03-07T06:36:20.615181-08:00,0.0,10.725859,10725.859 +2219,2025-03-07T06:36:31.347946-08:00,0.0,10.732765,10732.765 +2220,2025-03-07T06:36:42.064252-08:00,0.0,10.716306,10716.306 +2221,2025-03-07T06:36:52.790973-08:00,0.0,10.726721,10726.721 +2222,2025-03-07T06:37:03.517229-08:00,0.0,10.726256,10726.256 +2223,2025-03-07T06:37:14.229126-08:00,0.0,10.711897,10711.897 +2224,2025-03-07T06:37:24.953151-08:00,0.0,10.724025,10724.025 +2225,2025-03-07T06:37:35.675132-08:00,0.0,10.721981,10721.981 +2226,2025-03-07T06:37:46.400016-08:00,0.0,10.724884,10724.884 +2227,2025-03-07T06:37:57.129977-08:00,0.0,10.729961,10729.961 +2228,2025-03-07T06:38:07.849484-08:00,0.0,10.719507,10719.507 +2229,2025-03-07T06:38:18.572947-08:00,0.0,10.723463,10723.463 +2230,2025-03-07T06:38:29.289226-08:00,0.0,10.716279,10716.279 +2231,2025-03-07T06:38:40.014939-08:00,0.0,10.725713,10725.713 +2232,2025-03-07T06:38:50.739130-08:00,0.0,10.724191,10724.191 +2233,2025-03-07T06:39:01.458944-08:00,0.0,10.719814,10719.814 +2234,2025-03-07T06:39:12.182338-08:00,0.0,10.723394,10723.394 +2235,2025-03-07T06:39:22.902943-08:00,0.0,10.720605,10720.605 +2236,2025-03-07T06:39:33.626156-08:00,0.0,10.723213,10723.213 +2237,2025-03-07T06:39:44.345948-08:00,0.0,10.719792,10719.792 +2238,2025-03-07T06:39:55.074107-08:00,0.0,10.728159,10728.159 +2239,2025-03-07T06:40:05.789093-08:00,0.0,10.714986,10714.986 +2240,2025-03-07T06:40:16.519105-08:00,0.0,10.730012,10730.012 +2241,2025-03-07T06:40:27.232985-08:00,0.0,10.71388,10713.88 +2242,2025-03-07T06:40:37.957138-08:00,0.0,10.724153,10724.153 +2243,2025-03-07T06:40:48.680946-08:00,0.0,10.723808,10723.808 +2244,2025-03-07T06:40:59.405132-08:00,0.0,10.724186,10724.186 +2245,2025-03-07T06:41:10.120190-08:00,0.0,10.715058,10715.058 +2246,2025-03-07T06:41:20.851474-08:00,0.0,10.731284,10731.284 +2247,2025-03-07T06:41:31.570944-08:00,0.0,10.71947,10719.47 +2248,2025-03-07T06:41:42.294101-08:00,0.0,10.723157,10723.157 +2249,2025-03-07T06:41:53.011155-08:00,0.0,10.717054,10717.054 +2250,2025-03-07T06:42:03.732154-08:00,0.0,10.720999,10720.999 +2251,2025-03-07T06:42:14.456942-08:00,0.0,10.724788,10724.788 +2252,2025-03-07T06:42:25.181314-08:00,0.0,10.724372,10724.372 +2253,2025-03-07T06:42:35.892155-08:00,0.0,10.710841,10710.841 +2254,2025-03-07T06:42:46.624828-08:00,0.0,10.732673,10732.673 +2255,2025-03-07T06:42:57.338949-08:00,0.0,10.714121,10714.121 +2256,2025-03-07T06:43:08.058738-08:00,0.0,10.719789,10719.789 +2257,2025-03-07T06:43:18.786707-08:00,0.0,10.727969,10727.969 +2258,2025-03-07T06:43:29.503251-08:00,0.0,10.716544,10716.544 +2259,2025-03-07T06:43:40.228945-08:00,0.0,10.725694,10725.694 +2260,2025-03-07T06:43:50.951335-08:00,0.0,10.72239,10722.39 +2261,2025-03-07T06:44:01.676947-08:00,0.0,10.725612,10725.612 +2262,2025-03-07T06:44:12.404149-08:00,0.0,10.727202,10727.202 +2263,2025-03-07T06:44:23.130157-08:00,0.0,10.726008,10726.008 +2264,2025-03-07T06:44:33.846943-08:00,0.0,10.716786,10716.786 +2265,2025-03-07T06:44:44.574149-08:00,0.0,10.727206,10727.206 +2266,2025-03-07T06:44:55.304572-08:00,0.0,10.730423,10730.423 +2267,2025-03-07T06:45:16.749055-08:00,0.0,21.444483,21444.483 +2268,2025-03-07T06:45:27.472132-08:00,0.0,10.723077,10723.077 +2269,2025-03-07T06:45:38.198154-08:00,0.0,10.726022,10726.022 +2270,2025-03-07T06:45:48.927134-08:00,0.0,10.72898,10728.98 +2271,2025-03-07T06:45:59.641943-08:00,0.0,10.714809,10714.809 +2272,2025-03-07T06:46:10.373164-08:00,0.0,10.731221,10731.221 +2273,2025-03-07T06:46:21.087941-08:00,0.0,10.714777,10714.777 +2274,2025-03-07T06:46:31.817160-08:00,0.0,10.729219,10729.219 +2275,2025-03-07T06:46:42.536715-08:00,0.0,10.719555,10719.555 +2276,2025-03-07T06:46:53.265718-08:00,0.0,10.729003,10729.003 +2277,2025-03-07T06:47:03.987970-08:00,0.0,10.722252,10722.252 +2278,2025-03-07T06:47:14.708107-08:00,0.0,10.720137,10720.137 +2279,2025-03-07T06:47:25.440323-08:00,0.0,10.732216,10732.216 +2280,2025-03-07T06:47:36.161944-08:00,0.0,10.721621,10721.621 +2281,2025-03-07T06:47:46.890948-08:00,0.0,10.729004,10729.004 +2282,2025-03-07T06:47:57.610424-08:00,0.0,10.719476,10719.476 +2283,2025-03-07T06:48:08.339285-08:00,0.0,10.728861,10728.861 +2284,2025-03-07T06:48:19.071115-08:00,0.0,10.73183,10731.83 +2285,2025-03-07T06:48:29.788159-08:00,0.0,10.717044,10717.044 +2286,2025-03-07T06:48:40.513455-08:00,0.0,10.725296,10725.296 +2287,2025-03-07T06:48:51.236945-08:00,0.0,10.72349,10723.49 +2288,2025-03-07T06:49:01.965722-08:00,0.0,10.728777,10728.777 +2289,2025-03-07T06:49:12.689946-08:00,0.0,10.724224,10724.224 +2290,2025-03-07T06:49:23.419945-08:00,0.0,10.729999,10729.999 +2291,2025-03-07T06:49:34.147348-08:00,0.0,10.727403,10727.403 +2292,2025-03-07T06:49:44.871081-08:00,0.0,10.723733,10723.733 +2293,2025-03-07T06:49:55.593422-08:00,0.0,10.722341,10722.341 +2294,2025-03-07T06:50:06.321157-08:00,0.0,10.727735,10727.735 +2295,2025-03-07T06:50:17.045813-08:00,0.0,10.724656,10724.656 +2296,2025-03-07T06:50:27.762946-08:00,0.0,10.717133,10717.133 +2297,2025-03-07T06:50:38.492126-08:00,0.0,10.72918,10729.18 +2298,2025-03-07T06:50:49.209188-08:00,0.0,10.717062,10717.062 +2299,2025-03-07T06:50:59.933944-08:00,0.0,10.724756,10724.756 +2300,2025-03-07T06:51:10.661946-08:00,0.0,10.728002,10728.002 +2301,2025-03-07T06:51:21.384337-08:00,0.0,10.722391,10722.391 +2302,2025-03-07T06:51:32.110969-08:00,0.0,10.726632,10726.632 +2303,2025-03-07T06:51:42.835946-08:00,0.0,10.724977,10724.977 +2304,2025-03-07T06:51:53.564321-08:00,0.0,10.728375,10728.375 +2305,2025-03-07T06:52:04.285943-08:00,0.0,10.721622,10721.622 +2306,2025-03-07T06:52:15.140900-08:00,0.0,10.854957,10854.957 +2307,2025-03-07T06:52:25.868261-08:00,0.0,10.727361,10727.361 +2308,2025-03-07T06:52:36.584970-08:00,0.0,10.716709,10716.709 +2309,2025-03-07T06:52:47.302971-08:00,0.0,10.718001,10718.001 +2310,2025-03-07T06:52:58.032237-08:00,0.0,10.729266,10729.266 +2311,2025-03-07T06:53:08.752077-08:00,0.0,10.71984,10719.84 +2312,2025-03-07T06:53:19.476186-08:00,0.0,10.724109,10724.109 +2313,2025-03-07T06:53:30.201003-08:00,0.0,10.724817,10724.817 +2314,2025-03-07T06:53:40.920163-08:00,0.0,10.71916,10719.16 +2315,2025-03-07T06:53:51.644551-08:00,0.0,10.724388,10724.388 +2316,2025-03-07T06:54:02.376975-08:00,0.0,10.732424,10732.424 +2317,2025-03-07T06:54:13.100167-08:00,0.0,10.723192,10723.192 +2318,2025-03-07T06:54:23.824980-08:00,0.0,10.724813,10724.813 +2319,2025-03-07T06:54:34.546367-08:00,0.0,10.721387,10721.387 +2320,2025-03-07T06:54:45.266043-08:00,0.0,10.719676,10719.676 +2321,2025-03-07T06:54:55.991131-08:00,0.0,10.725088,10725.088 +2322,2025-03-07T06:55:06.722277-08:00,0.0,10.731146,10731.146 +2323,2025-03-07T06:55:17.450974-08:00,0.0,10.728697,10728.697 +2324,2025-03-07T06:55:28.170128-08:00,0.0,10.719154,10719.154 +2325,2025-03-07T06:55:38.893043-08:00,0.0,10.722915,10722.915 +2326,2025-03-07T06:55:49.614414-08:00,0.0,10.721371,10721.371 +2327,2025-03-07T06:56:00.348030-08:00,0.0,10.733616,10733.616 +2328,2025-03-07T06:56:11.068174-08:00,0.0,10.720144,10720.144 +2329,2025-03-07T06:56:21.786185-08:00,0.0,10.718011,10718.011 +2330,2025-03-07T06:56:32.518055-08:00,0.0,10.73187,10731.87 +2331,2025-03-07T06:56:43.236002-08:00,0.0,10.717947,10717.947 +2332,2025-03-07T06:56:53.961163-08:00,0.0,10.725161,10725.161 +2333,2025-03-07T06:57:04.687976-08:00,0.0,10.726813,10726.813 +2334,2025-03-07T06:57:15.406978-08:00,0.0,10.719002,10719.002 +2335,2025-03-07T06:57:26.133026-08:00,0.0,10.726048,10726.048 +2336,2025-03-07T06:57:36.859216-08:00,0.0,10.72619,10726.19 +2337,2025-03-07T06:57:47.579109-08:00,0.0,10.719893,10719.893 +2338,2025-03-07T06:57:58.308977-08:00,0.0,10.729868,10729.868 +2339,2025-03-07T06:58:09.026844-08:00,0.0,10.717867,10717.867 +2340,2025-03-07T06:58:19.756975-08:00,0.0,10.730131,10730.131 +2341,2025-03-07T06:58:30.471866-08:00,0.0,10.714891,10714.891 +2342,2025-03-07T06:58:41.191978-08:00,0.0,10.720112,10720.112 +2343,2025-03-07T06:58:51.918153-08:00,0.0,10.726175,10726.175 +2344,2025-03-07T06:59:02.636977-08:00,0.0,10.718824,10718.824 +2345,2025-03-07T06:59:13.364157-08:00,0.0,10.72718,10727.18 +2346,2025-03-07T06:59:24.085183-08:00,0.0,10.721026,10721.026 +2347,2025-03-07T06:59:34.798203-08:00,0.0,10.71302,10713.02 +2348,2025-03-07T06:59:45.518009-08:00,0.0,10.719806,10719.806 +2349,2025-03-07T06:59:56.245794-08:00,0.0,10.727785,10727.785 +2350,2025-03-07T07:00:06.964051-08:00,0.0,10.718257,10718.257 +2351,2025-03-07T07:00:17.688907-08:00,0.0,10.724856,10724.856 +2352,2025-03-07T07:00:28.412978-08:00,0.0,10.724071,10724.071 +2353,2025-03-07T07:00:39.137156-08:00,0.0,10.724178,10724.178 +2354,2025-03-07T07:00:49.850343-08:00,0.0,10.713187,10713.187 +2355,2025-03-07T07:01:00.576441-08:00,0.0,10.726098,10726.098 +2356,2025-03-07T07:01:11.295974-08:00,0.0,10.719533,10719.533 +2357,2025-03-07T07:01:22.023394-08:00,0.0,10.72742,10727.42 +2358,2025-03-07T07:01:32.739106-08:00,0.0,10.715712,10715.712 +2359,2025-03-07T07:01:43.470155-08:00,0.0,10.731049,10731.049 +2360,2025-03-07T07:01:54.192977-08:00,0.0,10.722822,10722.822 +2361,2025-03-07T07:02:04.915762-08:00,0.0,10.722785,10722.785 +2362,2025-03-07T07:02:15.638975-08:00,0.0,10.723213,10723.213 +2363,2025-03-07T07:02:26.356154-08:00,0.0,10.717179,10717.179 +2364,2025-03-07T07:02:37.081192-08:00,0.0,10.725038,10725.038 +2365,2025-03-07T07:02:47.813157-08:00,0.0,10.731965,10731.965 +2366,2025-03-07T07:02:58.535975-08:00,0.0,10.722818,10722.818 +2367,2025-03-07T07:03:09.255009-08:00,0.0,10.719034,10719.034 +2368,2025-03-07T07:03:19.976971-08:00,0.0,10.721962,10721.962 +2369,2025-03-07T07:03:30.708982-08:00,0.0,10.732011,10732.011 +2370,2025-03-07T07:03:41.425004-08:00,0.0,10.716022,10716.022 +2371,2025-03-07T07:03:52.153183-08:00,0.0,10.728179,10728.179 +2372,2025-03-07T07:04:02.878165-08:00,0.0,10.724982,10724.982 +2373,2025-03-07T07:04:13.602977-08:00,0.0,10.724812,10724.812 +2374,2025-03-07T07:04:24.320184-08:00,0.0,10.717207,10717.207 +2375,2025-03-07T07:04:35.047045-08:00,0.0,10.726861,10726.861 +2376,2025-03-07T07:04:45.771978-08:00,0.0,10.724933,10724.933 +2377,2025-03-07T07:04:56.499323-08:00,0.0,10.727345,10727.345 +2378,2025-03-07T07:05:07.218551-08:00,0.0,10.719228,10719.228 +2379,2025-03-07T07:05:17.943046-08:00,0.0,10.724495,10724.495 +2380,2025-03-07T07:05:28.673977-08:00,0.0,10.730931,10730.931 +2381,2025-03-07T07:05:39.393582-08:00,0.0,10.719605,10719.605 +2382,2025-03-07T07:05:50.116001-08:00,0.0,10.722419,10722.419 +2383,2025-03-07T07:06:00.842162-08:00,0.0,10.726161,10726.161 +2384,2025-03-07T07:06:11.569185-08:00,0.0,10.727023,10727.023 +2385,2025-03-07T07:06:22.293989-08:00,0.0,10.724804,10724.804 +2386,2025-03-07T07:06:33.018000-08:00,0.0,10.724011,10724.011 +2387,2025-03-07T07:06:43.741357-08:00,0.0,10.723357,10723.357 +2388,2025-03-07T07:06:54.465974-08:00,0.0,10.724617,10724.617 +2389,2025-03-07T07:07:05.194977-08:00,0.0,10.729003,10729.003 +2390,2025-03-07T07:07:15.911174-08:00,0.0,10.716197,10716.197 +2391,2025-03-07T07:07:26.640977-08:00,0.0,10.729803,10729.803 +2392,2025-03-07T07:07:37.361703-08:00,0.0,10.720726,10720.726 +2393,2025-03-07T07:07:48.086131-08:00,0.0,10.724428,10724.428 +2394,2025-03-07T07:07:58.807150-08:00,0.0,10.721019,10721.019 +2395,2025-03-07T07:08:09.523978-08:00,0.0,10.716828,10716.828 +2396,2025-03-07T07:08:20.256176-08:00,0.0,10.732198,10732.198 +2397,2025-03-07T07:08:30.977971-08:00,0.0,10.721795,10721.795 +2398,2025-03-07T07:08:41.698161-08:00,0.0,10.72019,10720.19 +2399,2025-03-07T07:08:52.425978-08:00,0.0,10.727817,10727.817 +2400,2025-03-07T07:09:03.145110-08:00,0.0,10.719132,10719.132 +2401,2025-03-07T07:09:13.865970-08:00,0.0,10.72086,10720.86 +2402,2025-03-07T07:09:13.987738-08:00,0.0,0.121768,121.768 +2403,2025-03-07T07:09:24.590978-08:00,0.0,10.60324,10603.24 +2404,2025-03-07T07:09:35.309999-08:00,0.0,10.719021,10719.021 +2405,2025-03-07T07:09:46.040198-08:00,0.0,10.730199,10730.199 +2406,2025-03-07T07:09:56.760225-08:00,0.0,10.720027,10720.027 +2407,2025-03-07T07:10:07.479977-08:00,0.0,10.719752,10719.752 +2408,2025-03-07T07:10:18.195182-08:00,0.0,10.715205,10715.205 +2409,2025-03-07T07:10:28.914191-08:00,0.0,10.719009,10719.009 +2410,2025-03-07T07:10:39.633137-08:00,0.0,10.718946,10718.946 +2411,2025-03-07T07:10:50.366707-08:00,0.0,10.73357,10733.57 +2412,2025-03-07T07:11:01.080974-08:00,0.0,10.714267,10714.267 +2413,2025-03-07T07:11:11.802142-08:00,0.0,10.721168,10721.168 +2414,2025-03-07T07:11:22.529977-08:00,0.0,10.727835,10727.835 +2415,2025-03-07T07:11:33.252400-08:00,0.0,10.722423,10722.423 +2416,2025-03-07T07:11:43.974980-08:00,0.0,10.72258,10722.58 +2417,2025-03-07T07:11:54.689078-08:00,0.0,10.714098,10714.098 +2418,2025-03-07T07:12:05.418171-08:00,0.0,10.729093,10729.093 +2419,2025-03-07T07:12:16.131163-08:00,0.0,10.712992,10712.992 +2420,2025-03-07T07:12:26.854025-08:00,0.0,10.722862,10722.862 +2421,2025-03-07T07:12:37.580141-08:00,0.0,10.726116,10726.116 +2422,2025-03-07T07:12:48.309186-08:00,0.0,10.729045,10729.045 +2423,2025-03-07T07:12:59.028117-08:00,0.0,10.718931,10718.931 +2424,2025-03-07T07:13:09.749973-08:00,0.0,10.721856,10721.856 +2425,2025-03-07T07:13:20.480986-08:00,0.0,10.731013,10731.013 +2426,2025-03-07T07:13:31.199179-08:00,0.0,10.718193,10718.193 +2427,2025-03-07T07:13:41.917975-08:00,0.0,10.718796,10718.796 +2428,2025-03-07T07:13:52.631735-08:00,0.0,10.71376,10713.76 +2429,2025-03-07T07:14:03.353576-08:00,0.0,10.721841,10721.841 +2430,2025-03-07T07:14:14.080132-08:00,0.0,10.726556,10726.556 +2431,2025-03-07T07:14:24.794159-08:00,0.0,10.714027,10714.027 +2432,2025-03-07T07:14:35.520045-08:00,0.0,10.725886,10725.886 +2433,2025-03-07T07:14:46.230977-08:00,0.0,10.710932,10710.932 +2434,2025-03-07T07:14:56.956970-08:00,0.0,10.725993,10725.993 +2435,2025-03-07T07:15:07.684150-08:00,0.0,10.72718,10727.18 +2436,2025-03-07T07:15:18.406010-08:00,0.0,10.72186,10721.86 +2437,2025-03-07T07:15:29.129765-08:00,0.0,10.723755,10723.755 +2438,2025-03-07T07:15:39.843048-08:00,0.0,10.713283,10713.283 +2439,2025-03-07T07:15:50.563218-08:00,0.0,10.72017,10720.17 +2440,2025-03-07T07:16:01.286979-08:00,0.0,10.723761,10723.761 +2441,2025-03-07T07:16:12.010203-08:00,0.0,10.723224,10723.224 +2442,2025-03-07T07:16:22.727975-08:00,0.0,10.717772,10717.772 +2443,2025-03-07T07:16:33.445029-08:00,0.0,10.717054,10717.054 +2444,2025-03-07T07:16:44.168120-08:00,0.0,10.723091,10723.091 +2445,2025-03-07T07:16:54.893001-08:00,0.0,10.724881,10724.881 +2446,2025-03-07T07:17:05.610977-08:00,0.0,10.717976,10717.976 +2447,2025-03-07T07:17:16.329974-08:00,0.0,10.718997,10718.997 +2448,2025-03-07T07:17:27.056402-08:00,0.0,10.726428,10726.428 +2449,2025-03-07T07:17:37.769178-08:00,0.0,10.712776,10712.776 +2450,2025-03-07T07:17:48.487169-08:00,0.0,10.717991,10717.991 +2451,2025-03-07T07:17:59.218145-08:00,0.0,10.730976,10730.976 +2452,2025-03-07T07:18:09.936394-08:00,0.0,10.718249,10718.249 +2453,2025-03-07T07:18:20.655976-08:00,0.0,10.719582,10719.582 +2454,2025-03-07T07:18:31.375047-08:00,0.0,10.719071,10719.071 +2455,2025-03-07T07:18:42.102168-08:00,0.0,10.727121,10727.121 +2456,2025-03-07T07:18:52.824380-08:00,0.0,10.722212,10722.212 +2457,2025-03-07T07:19:03.537007-08:00,0.0,10.712627,10712.627 +2458,2025-03-07T07:19:14.266080-08:00,0.0,10.729073,10729.073 +2459,2025-03-07T07:19:24.976996-08:00,0.0,10.710916,10710.916 +2460,2025-03-07T07:19:35.697748-08:00,0.0,10.720752,10720.752 +2461,2025-03-07T07:19:46.420975-08:00,0.0,10.723227,10723.227 +2462,2025-03-07T07:19:57.144278-08:00,0.0,10.723303,10723.303 +2463,2025-03-07T07:20:07.862032-08:00,0.0,10.717754,10717.754 +2464,2025-03-07T07:20:18.580979-08:00,0.0,10.718947,10718.947 +2465,2025-03-07T07:20:29.298220-08:00,0.0,10.717241,10717.241 +2466,2025-03-07T07:20:40.025169-08:00,0.0,10.726949,10726.949 +2467,2025-03-07T07:20:50.737187-08:00,0.0,10.712018,10712.018 +2468,2025-03-07T07:21:01.458977-08:00,0.0,10.72179,10721.79 +2469,2025-03-07T07:21:12.184190-08:00,0.0,10.725213,10725.213 +2470,2025-03-07T07:21:22.903050-08:00,0.0,10.71886,10718.86 +2471,2025-03-07T07:21:33.623167-08:00,0.0,10.720117,10720.117 +2472,2025-03-07T07:21:44.342978-08:00,0.0,10.719811,10719.811 +2473,2025-03-07T07:21:55.057163-08:00,0.0,10.714185,10714.185 +2474,2025-03-07T07:22:05.779194-08:00,0.0,10.722031,10722.031 +2475,2025-03-07T07:22:16.503155-08:00,0.0,10.723961,10723.961 +2476,2025-03-07T07:22:27.218976-08:00,0.0,10.715821,10715.821 +2477,2025-03-07T07:22:37.943637-08:00,0.0,10.724661,10724.661 +2478,2025-03-07T07:22:48.656167-08:00,0.0,10.71253,10712.53 +2479,2025-03-07T07:22:59.379180-08:00,0.0,10.723013,10723.013 +2480,2025-03-07T07:23:10.096004-08:00,0.0,10.716824,10716.824 +2481,2025-03-07T07:23:20.814975-08:00,0.0,10.718971,10718.971 +2482,2025-03-07T07:23:31.541437-08:00,0.0,10.726462,10726.462 +2483,2025-03-07T07:23:42.252341-08:00,0.0,10.710904,10710.904 +2484,2025-03-07T07:23:52.974368-08:00,0.0,10.722027,10722.027 +2485,2025-03-07T07:24:03.692824-08:00,0.0,10.718456,10718.456 +2486,2025-03-07T07:24:14.414665-08:00,0.0,10.721841,10721.841 +2487,2025-03-07T07:24:25.135051-08:00,0.0,10.720386,10720.386 +2488,2025-03-07T07:24:35.856977-08:00,0.0,10.721926,10721.926 +2489,2025-03-07T07:24:46.582152-08:00,0.0,10.725175,10725.175 +2490,2025-03-07T07:24:57.300176-08:00,0.0,10.718024,10718.024 +2491,2025-03-07T07:25:08.016626-08:00,0.0,10.71645,10716.45 +2492,2025-03-07T07:25:18.737267-08:00,0.0,10.720641,10720.641 +2493,2025-03-07T07:25:29.463252-08:00,0.0,10.725985,10725.985 +2494,2025-03-07T07:25:40.187379-08:00,0.0,10.724127,10724.127 +2495,2025-03-07T07:25:50.904978-08:00,0.0,10.717599,10717.599 +2496,2025-03-07T07:26:01.616977-08:00,0.0,10.711999,10711.999 +2497,2025-03-07T07:26:12.339833-08:00,0.0,10.722856,10722.856 +2498,2025-03-07T07:26:23.067129-08:00,0.0,10.727296,10727.296 +2499,2025-03-07T07:26:33.778685-08:00,0.0,10.711556,10711.556 +2500,2025-03-07T07:26:44.503977-08:00,0.0,10.725292,10725.292 +2501,2025-03-07T07:26:55.225477-08:00,0.0,10.7215,10721.5 +2502,2025-03-07T07:27:05.951093-08:00,0.0,10.725616,10725.616 +2503,2025-03-07T07:27:16.670062-08:00,0.0,10.718969,10718.969 +2504,2025-03-07T07:27:27.396192-08:00,0.0,10.72613,10726.13 +2505,2025-03-07T07:27:38.116899-08:00,0.0,10.720707,10720.707 +2506,2025-03-07T07:27:48.834976-08:00,0.0,10.718077,10718.077 +2507,2025-03-07T07:27:59.551159-08:00,0.0,10.716183,10716.183 +2508,2025-03-07T07:28:10.272976-08:00,0.0,10.721817,10721.817 +2509,2025-03-07T07:28:20.993356-08:00,0.0,10.72038,10720.38 +2510,2025-03-07T07:28:31.720975-08:00,0.0,10.727619,10727.619 +2511,2025-03-07T07:28:42.440172-08:00,0.0,10.719197,10719.197 +2512,2025-03-07T07:28:53.159977-08:00,0.0,10.719805,10719.805 +2513,2025-03-07T07:29:03.882412-08:00,0.0,10.722435,10722.435 +2514,2025-03-07T07:29:14.601976-08:00,0.0,10.719564,10719.564 +2515,2025-03-07T07:29:25.326146-08:00,0.0,10.72417,10724.17 +2516,2025-03-07T07:29:36.043976-08:00,0.0,10.71783,10717.83 +2517,2025-03-07T07:29:46.765647-08:00,0.0,10.721671,10721.671 +2518,2025-03-07T07:29:57.488971-08:00,0.0,10.723324,10723.324 +2519,2025-03-07T07:30:08.210166-08:00,0.0,10.721195,10721.195 +2520,2025-03-07T07:30:18.931147-08:00,0.0,10.720981,10720.981 +2521,2025-03-07T07:30:29.654377-08:00,0.0,10.72323,10723.23 +2522,2025-03-07T07:30:40.374056-08:00,0.0,10.719679,10719.679 +2523,2025-03-07T07:30:51.091001-08:00,0.0,10.716945,10716.945 +2524,2025-03-07T07:31:01.816979-08:00,0.0,10.725978,10725.978 +2525,2025-03-07T07:31:12.544073-08:00,0.0,10.727094,10727.094 +2526,2025-03-07T07:31:23.267447-08:00,0.0,10.723374,10723.374 +2527,2025-03-07T07:31:33.988111-08:00,0.0,10.720664,10720.664 +2528,2025-03-07T07:31:44.707976-08:00,0.0,10.719865,10719.865 +2529,2025-03-07T07:31:55.435042-08:00,0.0,10.727066,10727.066 +2530,2025-03-07T07:32:06.154290-08:00,0.0,10.719248,10719.248 +2531,2025-03-07T07:32:16.881005-08:00,0.0,10.726715,10726.715 +2532,2025-03-07T07:32:27.610998-08:00,0.0,10.729993,10729.993 +2533,2025-03-07T07:32:38.333978-08:00,0.0,10.72298,10722.98 +2534,2025-03-07T07:32:49.053974-08:00,0.0,10.719996,10719.996 +2535,2025-03-07T07:32:59.779007-08:00,0.0,10.725033,10725.033 +2536,2025-03-07T07:33:10.510142-08:00,0.0,10.731135,10731.135 +2537,2025-03-07T07:33:21.231978-08:00,0.0,10.721836,10721.836 +2538,2025-03-07T07:33:31.963160-08:00,0.0,10.731182,10731.182 +2539,2025-03-07T07:33:42.688089-08:00,0.0,10.724929,10724.929 +2540,2025-03-07T07:33:53.409050-08:00,0.0,10.720961,10720.961 +2541,2025-03-07T07:34:04.132002-08:00,0.0,10.722952,10722.952 +2542,2025-03-07T07:34:14.856024-08:00,0.0,10.724022,10724.022 +2543,2025-03-07T07:34:25.576203-08:00,0.0,10.720179,10720.179 +2544,2025-03-07T07:34:36.304975-08:00,0.0,10.728772,10728.772 +2545,2025-03-07T07:34:47.026817-08:00,0.0,10.721842,10721.842 +2546,2025-03-07T07:34:57.757011-08:00,0.0,10.730194,10730.194 +2547,2025-03-07T07:35:08.483162-08:00,0.0,10.726151,10726.151 +2548,2025-03-07T07:35:19.204975-08:00,0.0,10.721813,10721.813 +2549,2025-03-07T07:35:29.924996-08:00,0.0,10.720021,10720.021 +2550,2025-03-07T07:35:40.655335-08:00,0.0,10.730339,10730.339 +2551,2025-03-07T07:35:51.375202-08:00,0.0,10.719867,10719.867 +2552,2025-03-07T07:36:02.103415-08:00,0.0,10.728213,10728.213 +2553,2025-03-07T07:36:12.821978-08:00,0.0,10.718563,10718.563 +2554,2025-03-07T07:36:23.549378-08:00,0.0,10.7274,10727.4 +2555,2025-03-07T07:36:34.273223-08:00,0.0,10.723845,10723.845 +2556,2025-03-07T07:36:44.991257-08:00,0.0,10.718034,10718.034 +2557,2025-03-07T07:36:55.718180-08:00,0.0,10.726923,10726.923 +2558,2025-03-07T07:37:06.444154-08:00,0.0,10.725974,10725.974 +2559,2025-03-07T07:37:17.166092-08:00,0.0,10.721938,10721.938 +2560,2025-03-07T07:37:27.887157-08:00,0.0,10.721065,10721.065 +2561,2025-03-07T07:37:38.604310-08:00,0.0,10.717153,10717.153 +2562,2025-03-07T07:37:49.336981-08:00,0.0,10.732671,10732.671 +2563,2025-03-07T07:38:00.053975-08:00,0.0,10.716994,10716.994 +2564,2025-03-07T07:38:10.778180-08:00,0.0,10.724205,10724.205 +2565,2025-03-07T07:38:21.509040-08:00,0.0,10.73086,10730.86 +2566,2025-03-07T07:38:32.227977-08:00,0.0,10.718937,10718.937 +2567,2025-03-07T07:38:42.958663-08:00,0.0,10.730686,10730.686 +2568,2025-03-07T07:38:53.676184-08:00,0.0,10.717521,10717.521 +2569,2025-03-07T07:39:04.405143-08:00,0.0,10.728959,10728.959 +2570,2025-03-07T07:39:15.127973-08:00,0.0,10.72283,10722.83 +2571,2025-03-07T07:39:25.851156-08:00,0.0,10.723183,10723.183 +2572,2025-03-07T07:39:36.568748-08:00,0.0,10.717592,10717.592 +2573,2025-03-07T07:39:47.293149-08:00,0.0,10.724401,10724.401 +2574,2025-03-07T07:39:58.019044-08:00,0.0,10.725895,10725.895 +2575,2025-03-07T07:40:08.742337-08:00,0.0,10.723293,10723.293 +2576,2025-03-07T07:40:19.471005-08:00,0.0,10.728668,10728.668 +2577,2025-03-07T07:40:30.194286-08:00,0.0,10.723281,10723.281 +2578,2025-03-07T07:40:40.920463-08:00,0.0,10.726177,10726.177 +2579,2025-03-07T07:40:51.637006-08:00,0.0,10.716543,10716.543 +2580,2025-03-07T07:41:02.371179-08:00,0.0,10.734173,10734.173 +2581,2025-03-07T07:41:13.095178-08:00,0.0,10.723999,10723.999 +2582,2025-03-07T07:41:23.810332-08:00,0.0,10.715154,10715.154 +2583,2025-03-07T07:41:34.531978-08:00,0.0,10.721646,10721.646 +2584,2025-03-07T07:41:45.259190-08:00,0.0,10.727212,10727.212 +2585,2025-03-07T07:41:55.981395-08:00,0.0,10.722205,10722.205 +2586,2025-03-07T07:42:06.696812-08:00,0.0,10.715417,10715.417 +2587,2025-03-07T07:42:17.419978-08:00,0.0,10.723166,10723.166 +2588,2025-03-07T07:42:28.142874-08:00,0.0,10.722896,10722.896 +2589,2025-03-07T07:42:38.866002-08:00,0.0,10.723128,10723.128 +2590,2025-03-07T07:42:49.586418-08:00,0.0,10.720416,10720.416 +2591,2025-03-07T07:43:00.310977-08:00,0.0,10.724559,10724.559 +2592,2025-03-07T07:43:11.032392-08:00,0.0,10.721415,10721.415 +2593,2025-03-07T07:43:21.758026-08:00,0.0,10.725634,10725.634 +2594,2025-03-07T07:43:32.481775-08:00,0.0,10.723749,10723.749 +2595,2025-03-07T07:43:43.208974-08:00,0.0,10.727199,10727.199 +2596,2025-03-07T07:43:53.924076-08:00,0.0,10.715102,10715.102 +2597,2025-03-07T07:44:04.648977-08:00,0.0,10.724901,10724.901 +2598,2025-03-07T07:44:15.370641-08:00,0.0,10.721664,10721.664 +2599,2025-03-07T07:44:26.097974-08:00,0.0,10.727333,10727.333 +2600,2025-03-07T07:44:36.819977-08:00,0.0,10.722003,10722.003 +2601,2025-03-07T07:44:47.545999-08:00,0.0,10.726022,10726.022 +2602,2025-03-07T07:44:58.268169-08:00,0.0,10.72217,10722.17 +2603,2025-03-07T07:45:08.990972-08:00,0.0,10.722803,10722.803 +2604,2025-03-07T07:45:19.708981-08:00,0.0,10.718009,10718.009 +2605,2025-03-07T07:45:30.431179-08:00,0.0,10.722198,10722.198 +2606,2025-03-07T07:45:41.158003-08:00,0.0,10.726824,10726.824 +2607,2025-03-07T07:45:51.882380-08:00,0.0,10.724377,10724.377 +2608,2025-03-07T07:46:02.598118-08:00,0.0,10.715738,10715.738 +2609,2025-03-07T07:46:13.326470-08:00,0.0,10.728352,10728.352 +2610,2025-03-07T07:46:24.048974-08:00,0.0,10.722504,10722.504 +2611,2025-03-07T07:46:34.773279-08:00,0.0,10.724305,10724.305 +2612,2025-03-07T07:46:45.493183-08:00,0.0,10.719904,10719.904 +2613,2025-03-07T07:46:56.227978-08:00,0.0,10.734795,10734.795 +2614,2025-03-07T07:47:06.947977-08:00,0.0,10.719999,10719.999 +2615,2025-03-07T07:47:17.666520-08:00,0.0,10.718543,10718.543 +2616,2025-03-07T07:47:28.399047-08:00,0.0,10.732527,10732.527 +2617,2025-03-07T07:47:39.119973-08:00,0.0,10.720926,10720.926 +2618,2025-03-07T07:47:49.843073-08:00,0.0,10.7231,10723.1 +2619,2025-03-07T07:48:00.567971-08:00,0.0,10.724898,10724.898 +2620,2025-03-07T07:48:11.295159-08:00,0.0,10.727188,10727.188 +2621,2025-03-07T07:48:22.024026-08:00,0.0,10.728867,10728.867 +2622,2025-03-07T07:48:32.744578-08:00,0.0,10.720552,10720.552 +2623,2025-03-07T07:48:43.469043-08:00,0.0,10.724465,10724.465 +2624,2025-03-07T07:48:54.187159-08:00,0.0,10.718116,10718.116 +2625,2025-03-07T07:49:04.905977-08:00,0.0,10.718818,10718.818 +2626,2025-03-07T07:49:15.637977-08:00,0.0,10.732,10732.0 +2627,2025-03-07T07:49:26.360976-08:00,0.0,10.722999,10722.999 +2628,2025-03-07T07:49:37.080188-08:00,0.0,10.719212,10719.212 +2629,2025-03-07T07:49:47.807056-08:00,0.0,10.726868,10726.868 +2630,2025-03-07T07:49:58.526023-08:00,0.0,10.718967,10718.967 +2631,2025-03-07T07:50:09.253024-08:00,0.0,10.727001,10727.001 +2632,2025-03-07T07:50:19.978373-08:00,0.0,10.725349,10725.349 +2633,2025-03-07T07:50:30.694976-08:00,0.0,10.716603,10716.603 +2634,2025-03-07T07:50:41.422978-08:00,0.0,10.728002,10728.002 +2635,2025-03-07T07:50:52.145010-08:00,0.0,10.722032,10722.032 +2636,2025-03-07T07:51:02.863972-08:00,0.0,10.718962,10718.962 +2637,2025-03-07T07:51:13.584974-08:00,0.0,10.721002,10721.002 +2638,2025-03-07T07:51:24.313179-08:00,0.0,10.728205,10728.205 +2639,2025-03-07T07:51:35.025017-08:00,0.0,10.711838,10711.838 +2640,2025-03-07T07:51:45.746509-08:00,0.0,10.721492,10721.492 +2641,2025-03-07T07:51:56.475278-08:00,0.0,10.728769,10728.769 +2642,2025-03-07T07:52:07.193103-08:00,0.0,10.717825,10717.825 +2643,2025-03-07T07:52:17.945187-08:00,0.0,10.752084,10752.084 +2644,2025-03-07T07:52:28.674091-08:00,0.0,10.728904,10728.904 +2645,2025-03-07T07:52:39.393100-08:00,0.0,10.719009,10719.009 +2646,2025-03-07T07:52:50.118172-08:00,0.0,10.725072,10725.072 +2647,2025-03-07T07:53:00.844256-08:00,0.0,10.726084,10726.084 +2648,2025-03-07T07:53:11.563082-08:00,0.0,10.718826,10718.826 +2649,2025-03-07T07:53:22.294351-08:00,0.0,10.731269,10731.269 +2650,2025-03-07T07:53:33.003083-08:00,0.0,10.708732,10708.732 +2651,2025-03-07T07:53:43.728487-08:00,0.0,10.725404,10725.404 +2652,2025-03-07T07:53:54.444106-08:00,0.0,10.715619,10715.619 +2653,2025-03-07T07:54:05.166187-08:00,0.0,10.722081,10722.081 +2654,2025-03-07T07:54:15.889138-08:00,0.0,10.722951,10722.951 +2655,2025-03-07T07:54:26.608311-08:00,0.0,10.719173,10719.173 +2656,2025-03-07T07:54:37.331081-08:00,0.0,10.72277,10722.77 +2657,2025-03-07T07:54:48.052301-08:00,0.0,10.72122,10721.22 +2658,2025-03-07T07:54:58.776318-08:00,0.0,10.724017,10724.017 +2659,2025-03-07T07:55:09.497322-08:00,0.0,10.721004,10721.004 +2660,2025-03-07T07:55:20.215448-08:00,0.0,10.718126,10718.126 +2661,2025-03-07T07:55:30.941156-08:00,0.0,10.725708,10725.708 +2662,2025-03-07T07:55:41.664077-08:00,0.0,10.722921,10722.921 +2663,2025-03-07T07:55:52.378111-08:00,0.0,10.714034,10714.034 +2664,2025-03-07T07:56:03.103280-08:00,0.0,10.725169,10725.169 +2665,2025-03-07T07:56:13.821083-08:00,0.0,10.717803,10717.803 +2666,2025-03-07T07:56:24.546082-08:00,0.0,10.724999,10724.999 +2667,2025-03-07T07:56:35.262080-08:00,0.0,10.715998,10715.998 +2668,2025-03-07T07:56:45.983306-08:00,0.0,10.721226,10721.226 +2669,2025-03-07T07:56:56.710366-08:00,0.0,10.72706,10727.06 +2670,2025-03-07T07:57:07.429151-08:00,0.0,10.718785,10718.785 +2671,2025-03-07T07:57:18.151160-08:00,0.0,10.722009,10722.009 +2672,2025-03-07T07:57:28.872284-08:00,0.0,10.721124,10721.124 +2673,2025-03-07T07:57:39.593146-08:00,0.0,10.720862,10720.862 +2674,2025-03-07T07:57:50.308285-08:00,0.0,10.715139,10715.139 +2675,2025-03-07T07:58:01.022640-08:00,0.0,10.714355,10714.355 +2676,2025-03-07T07:58:11.740157-08:00,0.0,10.717517,10717.517 +2677,2025-03-07T07:58:22.459084-08:00,0.0,10.718927,10718.927 +2678,2025-03-07T07:58:33.179076-08:00,0.0,10.719992,10719.992 +2679,2025-03-07T07:58:43.897822-08:00,0.0,10.718746,10718.746 +2680,2025-03-07T07:58:54.616080-08:00,0.0,10.718258,10718.258 +2681,2025-03-07T07:59:05.338937-08:00,0.0,10.722857,10722.857 +2682,2025-03-07T07:59:16.059134-08:00,0.0,10.720197,10720.197 +2683,2025-03-07T07:59:26.777268-08:00,0.0,10.718134,10718.134 +2684,2025-03-07T07:59:37.499083-08:00,0.0,10.721815,10721.815 +2685,2025-03-07T07:59:48.223279-08:00,0.0,10.724196,10724.196 +2686,2025-03-07T07:59:58.941082-08:00,0.0,10.717803,10717.803 +2687,2025-03-07T08:00:09.665322-08:00,0.0,10.72424,10724.24 +2688,2025-03-07T08:00:20.379143-08:00,0.0,10.713821,10713.821 +2689,2025-03-07T08:00:31.092130-08:00,0.0,10.712987,10712.987 +2690,2025-03-07T08:00:41.815515-08:00,0.0,10.723385,10723.385 +2691,2025-03-07T08:00:52.526077-08:00,0.0,10.710562,10710.562 +2692,2025-03-07T08:01:03.255097-08:00,0.0,10.72902,10729.02 +2693,2025-03-07T08:01:13.969117-08:00,0.0,10.71402,10714.02 +2694,2025-03-07T08:01:24.691459-08:00,0.0,10.722342,10722.342 +2695,2025-03-07T08:01:35.410158-08:00,0.0,10.718699,10718.699 +2696,2025-03-07T08:01:46.124280-08:00,0.0,10.714122,10714.122 +2697,2025-03-07T08:01:56.842265-08:00,0.0,10.717985,10717.985 +2698,2025-03-07T08:02:07.559264-08:00,0.0,10.716999,10716.999 +2699,2025-03-07T08:02:16.565935-08:00,0.0,9.006671,9006.671 +2700,2025-03-07T08:02:18.278476-08:00,0.0,1.712541,1712.541 +2701,2025-03-07T08:02:29.000080-08:00,0.0,10.721604,10721.604 +2702,2025-03-07T08:02:39.722248-08:00,0.0,10.722168,10722.168 +2703,2025-03-07T08:02:50.447660-08:00,0.0,10.725412,10725.412 +2704,2025-03-07T08:03:01.159339-08:00,0.0,10.711679,10711.679 +2705,2025-03-07T08:03:11.890189-08:00,0.0,10.73085,10730.85 +2706,2025-03-07T08:03:22.607261-08:00,0.0,10.717072,10717.072 +2707,2025-03-07T08:03:33.334080-08:00,0.0,10.726819,10726.819 +2708,2025-03-07T08:03:44.052272-08:00,0.0,10.718192,10718.192 +2709,2025-03-07T08:03:54.772151-08:00,0.0,10.719879,10719.879 +2710,2025-03-07T08:04:05.485240-08:00,0.0,10.713089,10713.089 +2711,2025-03-07T08:04:16.203326-08:00,0.0,10.718086,10718.086 +2712,2025-03-07T08:04:26.925303-08:00,0.0,10.721977,10721.977 +2713,2025-03-07T08:04:37.645081-08:00,0.0,10.719778,10719.778 +2714,2025-03-07T08:04:48.363111-08:00,0.0,10.71803,10718.03 +2715,2025-03-07T08:04:59.088076-08:00,0.0,10.724965,10724.965 +2716,2025-03-07T08:05:09.800520-08:00,0.0,10.712444,10712.444 +2717,2025-03-07T08:05:20.524566-08:00,0.0,10.724046,10724.046 +2718,2025-03-07T08:05:31.241083-08:00,0.0,10.716517,10716.517 +2719,2025-03-07T08:05:41.959762-08:00,0.0,10.718679,10718.679 +2720,2025-03-07T08:05:52.682078-08:00,0.0,10.722316,10722.316 +2721,2025-03-07T08:06:03.401539-08:00,0.0,10.719461,10719.461 +2722,2025-03-07T08:06:14.125285-08:00,0.0,10.723746,10723.746 +2723,2025-03-07T08:06:24.840167-08:00,0.0,10.714882,10714.882 +2724,2025-03-07T08:06:35.558108-08:00,0.0,10.717941,10717.941 +2725,2025-03-07T08:06:46.276080-08:00,0.0,10.717972,10717.972 +2726,2025-03-07T08:06:57.002452-08:00,0.0,10.726372,10726.372 +2727,2025-03-07T08:07:07.724077-08:00,0.0,10.721625,10721.625 +2728,2025-03-07T08:07:18.443058-08:00,0.0,10.718981,10718.981 +2729,2025-03-07T08:07:29.168173-08:00,0.0,10.725115,10725.115 +2730,2025-03-07T08:07:39.883454-08:00,0.0,10.715281,10715.281 +2731,2025-03-07T08:07:50.613081-08:00,0.0,10.729627,10729.627 +2732,2025-03-07T08:08:01.330238-08:00,0.0,10.717157,10717.157 +2733,2025-03-07T08:08:12.058315-08:00,0.0,10.728077,10728.077 +2734,2025-03-07T08:08:22.776092-08:00,0.0,10.717777,10717.777 +2735,2025-03-07T08:08:33.502108-08:00,0.0,10.726016,10726.016 +2736,2025-03-07T08:08:44.222265-08:00,0.0,10.720157,10720.157 +2737,2025-03-07T08:08:54.949077-08:00,0.0,10.726812,10726.812 +2738,2025-03-07T08:09:05.671081-08:00,0.0,10.722004,10722.004 +2739,2025-03-07T08:09:16.396667-08:00,0.0,10.725586,10725.586 +2740,2025-03-07T08:09:27.110453-08:00,0.0,10.713786,10713.786 +2741,2025-03-07T08:09:37.841273-08:00,0.0,10.73082,10730.82 +2742,2025-03-07T08:09:48.565183-08:00,0.0,10.72391,10723.91 +2743,2025-03-07T08:09:59.283947-08:00,0.0,10.718764,10718.764 +2744,2025-03-07T08:10:10.009081-08:00,0.0,10.725134,10725.134 +2745,2025-03-07T08:10:20.732571-08:00,0.0,10.72349,10723.49 +2746,2025-03-07T08:10:31.453255-08:00,0.0,10.720684,10720.684 +2747,2025-03-07T08:10:42.176275-08:00,0.0,10.72302,10723.02 +2748,2025-03-07T08:10:52.902155-08:00,0.0,10.72588,10725.88 +2749,2025-03-07T08:11:03.617257-08:00,0.0,10.715102,10715.102 +2750,2025-03-07T08:11:14.343373-08:00,0.0,10.726116,10726.116 +2751,2025-03-07T08:11:25.072598-08:00,0.0,10.729225,10729.225 +2752,2025-03-07T08:11:35.794076-08:00,0.0,10.721478,10721.478 +2753,2025-03-07T08:11:46.514413-08:00,0.0,10.720337,10720.337 +2754,2025-03-07T08:11:57.239078-08:00,0.0,10.724665,10724.665 +2755,2025-03-07T08:12:07.962084-08:00,0.0,10.723006,10723.006 +2756,2025-03-07T08:12:18.681083-08:00,0.0,10.718999,10718.999 +2757,2025-03-07T08:12:29.412289-08:00,0.0,10.731206,10731.206 +2758,2025-03-07T08:12:40.132585-08:00,0.0,10.720296,10720.296 +2759,2025-03-07T08:12:50.859084-08:00,0.0,10.726499,10726.499 +2760,2025-03-07T08:13:01.582267-08:00,0.0,10.723183,10723.183 +2761,2025-03-07T08:13:12.303314-08:00,0.0,10.721047,10721.047 +2762,2025-03-07T08:13:23.029251-08:00,0.0,10.725937,10725.937 +2763,2025-03-07T08:13:33.754113-08:00,0.0,10.724862,10724.862 +2764,2025-03-07T08:13:44.476448-08:00,0.0,10.722335,10722.335 +2765,2025-03-07T08:13:55.201157-08:00,0.0,10.724709,10724.709 +2766,2025-03-07T08:14:05.926268-08:00,0.0,10.725111,10725.111 +2767,2025-03-07T08:14:16.647321-08:00,0.0,10.721053,10721.053 +2768,2025-03-07T08:14:27.371142-08:00,0.0,10.723821,10723.821 +2769,2025-03-07T08:14:38.086082-08:00,0.0,10.71494,10714.94 +2770,2025-03-07T08:14:48.811128-08:00,0.0,10.725046,10725.046 +2771,2025-03-07T08:14:59.535284-08:00,0.0,10.724156,10724.156 +2772,2025-03-07T08:15:10.255082-08:00,0.0,10.719798,10719.798 +2773,2025-03-07T08:15:20.979081-08:00,0.0,10.723999,10723.999 +2774,2025-03-07T08:15:31.703276-08:00,0.0,10.724195,10724.195 +2775,2025-03-07T08:15:42.429080-08:00,0.0,10.725804,10725.804 +2776,2025-03-07T08:15:53.154083-08:00,0.0,10.725003,10725.003 +2777,2025-03-07T08:16:03.875962-08:00,0.0,10.721879,10721.879 +2778,2025-03-07T08:16:14.598203-08:00,0.0,10.722241,10722.241 +2779,2025-03-07T08:16:25.328281-08:00,0.0,10.730078,10730.078 +2780,2025-03-07T08:16:36.043185-08:00,0.0,10.714904,10714.904 +2781,2025-03-07T08:16:46.770461-08:00,0.0,10.727276,10727.276 +2782,2025-03-07T08:16:57.494080-08:00,0.0,10.723619,10723.619 +2783,2025-03-07T08:17:08.208307-08:00,0.0,10.714227,10714.227 +2784,2025-03-07T08:17:18.935177-08:00,0.0,10.72687,10726.87 +2785,2025-03-07T08:17:29.656459-08:00,0.0,10.721282,10721.282 +2786,2025-03-07T08:17:40.381081-08:00,0.0,10.724622,10724.622 +2787,2025-03-07T08:17:51.107251-08:00,0.0,10.72617,10726.17 +2788,2025-03-07T08:18:01.821115-08:00,0.0,10.713864,10713.864 +2789,2025-03-07T08:18:12.542526-08:00,0.0,10.721411,10721.411 +2790,2025-03-07T08:18:23.274080-08:00,0.0,10.731554,10731.554 +2791,2025-03-07T08:18:33.992133-08:00,0.0,10.718053,10718.053 +2792,2025-03-07T08:18:44.711509-08:00,0.0,10.719376,10719.376 +2793,2025-03-07T08:18:55.437242-08:00,0.0,10.725733,10725.733 +2794,2025-03-07T08:19:06.159081-08:00,0.0,10.721839,10721.839 +2795,2025-03-07T08:19:16.878825-08:00,0.0,10.719744,10719.744 +2796,2025-03-07T08:19:27.593288-08:00,0.0,10.714463,10714.463 +2797,2025-03-07T08:19:38.324127-08:00,0.0,10.730839,10730.839 +2798,2025-03-07T08:19:49.043111-08:00,0.0,10.718984,10718.984 +2799,2025-03-07T08:19:59.761256-08:00,0.0,10.718145,10718.145 +2800,2025-03-07T08:20:10.487843-08:00,0.0,10.726587,10726.587 +2801,2025-03-07T08:20:21.217291-08:00,0.0,10.729448,10729.448 +2802,2025-03-07T08:20:31.932087-08:00,0.0,10.714796,10714.796 +2803,2025-03-07T08:20:42.658267-08:00,0.0,10.72618,10726.18 +2804,2025-03-07T08:20:53.378079-08:00,0.0,10.719812,10719.812 +2805,2025-03-07T08:21:04.102084-08:00,0.0,10.724005,10724.005 +2806,2025-03-07T08:21:14.821403-08:00,0.0,10.719319,10719.319 +2807,2025-03-07T08:21:25.545568-08:00,0.0,10.724165,10724.165 +2808,2025-03-07T08:21:36.271081-08:00,0.0,10.725513,10725.513 +2809,2025-03-07T08:21:47.001088-08:00,0.0,10.730007,10730.007 +2810,2025-03-07T08:21:57.723644-08:00,0.0,10.722556,10722.556 +2811,2025-03-07T08:22:08.445203-08:00,0.0,10.721559,10721.559 +2812,2025-03-07T08:22:19.161081-08:00,0.0,10.715878,10715.878 +2813,2025-03-07T08:22:29.890138-08:00,0.0,10.729057,10729.057 +2814,2025-03-07T08:22:40.616168-08:00,0.0,10.72603,10726.03 +2815,2025-03-07T08:22:51.336105-08:00,0.0,10.719937,10719.937 +2816,2025-03-07T08:23:02.058272-08:00,0.0,10.722167,10722.167 +2817,2025-03-07T08:23:12.779295-08:00,0.0,10.721023,10721.023 +2818,2025-03-07T08:23:23.504274-08:00,0.0,10.724979,10724.979 +2819,2025-03-07T08:23:34.223734-08:00,0.0,10.71946,10719.46 +2820,2025-03-07T08:23:44.955821-08:00,0.0,10.732087,10732.087 +2821,2025-03-07T08:23:55.677080-08:00,0.0,10.721259,10721.259 +2822,2025-03-07T08:24:06.396084-08:00,0.0,10.719004,10719.004 +2823,2025-03-07T08:24:17.120156-08:00,0.0,10.724072,10724.072 +2824,2025-03-07T08:24:27.855083-08:00,0.0,10.734927,10734.927 +2825,2025-03-07T08:24:38.573882-08:00,0.0,10.718799,10718.799 +2826,2025-03-07T08:24:49.300083-08:00,0.0,10.726201,10726.201 +2827,2025-03-07T08:25:00.024291-08:00,0.0,10.724208,10724.208 +2828,2025-03-07T08:25:10.752272-08:00,0.0,10.727981,10727.981 +2829,2025-03-07T08:25:21.473770-08:00,0.0,10.721498,10721.498 +2830,2025-03-07T08:25:32.205080-08:00,0.0,10.73131,10731.31 +2831,2025-03-07T08:25:42.924092-08:00,0.0,10.719012,10719.012 +2832,2025-03-07T08:25:53.650107-08:00,0.0,10.726015,10726.015 +2833,2025-03-07T08:26:04.374515-08:00,0.0,10.724408,10724.408 +2834,2025-03-07T08:26:15.103266-08:00,0.0,10.728751,10728.751 +2835,2025-03-07T08:26:25.827328-08:00,0.0,10.724062,10724.062 +2836,2025-03-07T08:26:36.554076-08:00,0.0,10.726748,10726.748 +2837,2025-03-07T08:26:47.273081-08:00,0.0,10.719005,10719.005 +2838,2025-03-07T08:26:57.998298-08:00,0.0,10.725217,10725.217 +2839,2025-03-07T08:27:08.725318-08:00,0.0,10.72702,10727.02 +2840,2025-03-07T08:27:19.452081-08:00,0.0,10.726763,10726.763 +2841,2025-03-07T08:27:30.178277-08:00,0.0,10.726196,10726.196 +2842,2025-03-07T08:27:40.904287-08:00,0.0,10.72601,10726.01 +2843,2025-03-07T08:27:51.632128-08:00,0.0,10.727841,10727.841 +2844,2025-03-07T08:28:02.351084-08:00,0.0,10.718956,10718.956 +2845,2025-03-07T08:28:13.077431-08:00,0.0,10.726347,10726.347 +2846,2025-03-07T08:28:23.809338-08:00,0.0,10.731907,10731.907 +2847,2025-03-07T08:28:34.531671-08:00,0.0,10.722333,10722.333 +2848,2025-03-07T08:28:45.251084-08:00,0.0,10.719413,10719.413 +2849,2025-03-07T08:28:55.985081-08:00,0.0,10.733997,10733.997 +2850,2025-03-07T08:29:06.709196-08:00,0.0,10.724115,10724.115 +2851,2025-03-07T08:29:17.426115-08:00,0.0,10.716919,10716.919 +2852,2025-03-07T08:29:28.159283-08:00,0.0,10.733168,10733.168 +2853,2025-03-07T08:29:38.883153-08:00,0.0,10.72387,10723.87 +2854,2025-03-07T08:29:49.609084-08:00,0.0,10.725931,10725.931 +2855,2025-03-07T08:30:00.342278-08:00,0.0,10.733194,10733.194 +2856,2025-03-07T08:30:11.065159-08:00,0.0,10.722881,10722.881 +2857,2025-03-07T08:30:21.791484-08:00,0.0,10.726325,10726.325 +2858,2025-03-07T08:30:32.527290-08:00,0.0,10.735806,10735.806 +2859,2025-03-07T08:30:43.250083-08:00,0.0,10.722793,10722.793 +2860,2025-03-07T08:30:53.979148-08:00,0.0,10.729065,10729.065 +2861,2025-03-07T08:31:04.702081-08:00,0.0,10.722933,10722.933 +2862,2025-03-07T08:31:15.425573-08:00,0.0,10.723492,10723.492 +2863,2025-03-07T08:31:26.153240-08:00,0.0,10.727667,10727.667 +2864,2025-03-07T08:31:36.878081-08:00,0.0,10.724841,10724.841 +2865,2025-03-07T08:31:47.612238-08:00,0.0,10.734157,10734.157 +2866,2025-03-07T08:31:58.328442-08:00,0.0,10.716204,10716.204 +2867,2025-03-07T08:32:09.056150-08:00,0.0,10.727708,10727.708 +2868,2025-03-07T08:32:19.781084-08:00,0.0,10.724934,10724.934 +2869,2025-03-07T08:32:30.507292-08:00,0.0,10.726208,10726.208 +2870,2025-03-07T08:32:41.236178-08:00,0.0,10.728886,10728.886 +2871,2025-03-07T08:33:02.688261-08:00,0.0,21.452083,21452.083 +2872,2025-03-07T08:33:13.407080-08:00,0.0,10.718819,10718.819 +2873,2025-03-07T08:33:24.141084-08:00,0.0,10.734004,10734.004 +2874,2025-03-07T08:33:34.859161-08:00,0.0,10.718077,10718.077 +2875,2025-03-07T08:33:45.585302-08:00,0.0,10.726141,10726.141 +2876,2025-03-07T08:33:56.317414-08:00,0.0,10.732112,10732.112 +2877,2025-03-07T08:34:07.036082-08:00,0.0,10.718668,10718.668 +2878,2025-03-07T08:34:17.762268-08:00,0.0,10.726186,10726.186 +2879,2025-03-07T08:34:28.484141-08:00,0.0,10.721873,10721.873 +2880,2025-03-07T08:34:39.212293-08:00,0.0,10.728152,10728.152 +2881,2025-03-07T08:34:49.938083-08:00,0.0,10.72579,10725.79 +2882,2025-03-07T08:35:00.665084-08:00,0.0,10.727001,10727.001 +2883,2025-03-07T08:35:11.388421-08:00,0.0,10.723337,10723.337 +2884,2025-03-07T08:35:22.110293-08:00,0.0,10.721872,10721.872 +2885,2025-03-07T08:35:32.832168-08:00,0.0,10.721875,10721.875 +2886,2025-03-07T08:35:43.553382-08:00,0.0,10.721214,10721.214 +2887,2025-03-07T08:35:54.283005-08:00,0.0,10.729623,10729.623 +2888,2025-03-07T08:36:05.005084-08:00,0.0,10.722079,10722.079 +2889,2025-03-07T08:36:15.735078-08:00,0.0,10.729994,10729.994 +2890,2025-03-07T08:36:26.456080-08:00,0.0,10.721002,10721.002 +2891,2025-03-07T08:36:37.184085-08:00,0.0,10.728005,10728.005 +2892,2025-03-07T08:36:47.911347-08:00,0.0,10.727262,10727.262 +2893,2025-03-07T08:36:58.638517-08:00,0.0,10.72717,10727.17 +2894,2025-03-07T08:37:09.367269-08:00,0.0,10.728752,10728.752 +2895,2025-03-07T08:37:20.084346-08:00,0.0,10.717077,10717.077 +2896,2025-03-07T08:37:30.816142-08:00,0.0,10.731796,10731.796 +2897,2025-03-07T08:37:41.539155-08:00,0.0,10.723013,10723.013 +2898,2025-03-07T08:37:52.263495-08:00,0.0,10.72434,10724.34 +2899,2025-03-07T08:38:02.987081-08:00,0.0,10.723586,10723.586 +2900,2025-03-07T08:38:13.709221-08:00,0.0,10.72214,10722.14 +2901,2025-03-07T08:38:24.435815-08:00,0.0,10.726594,10726.594 +2902,2025-03-07T08:38:35.155262-08:00,0.0,10.719447,10719.447 +2903,2025-03-07T08:38:45.890294-08:00,0.0,10.735032,10735.032 +2904,2025-03-07T08:38:56.610115-08:00,0.0,10.719821,10719.821 +2905,2025-03-07T08:39:07.332280-08:00,0.0,10.722165,10722.165 +2906,2025-03-07T08:39:18.055254-08:00,0.0,10.722974,10722.974 +2907,2025-03-07T08:39:28.771222-08:00,0.0,10.715968,10715.968 +2908,2025-03-07T08:39:39.501289-08:00,0.0,10.730067,10730.067 +2909,2025-03-07T08:39:50.219269-08:00,0.0,10.71798,10717.98 +2910,2025-03-07T08:40:00.943302-08:00,0.0,10.724033,10724.033 +2911,2025-03-07T08:40:11.658267-08:00,0.0,10.714965,10714.965 +2912,2025-03-07T08:40:22.380294-08:00,0.0,10.722027,10722.027 +2913,2025-03-07T08:40:33.107297-08:00,0.0,10.727003,10727.003 +2914,2025-03-07T08:40:43.821266-08:00,0.0,10.713969,10713.969 +2915,2025-03-07T08:40:54.546686-08:00,0.0,10.72542,10725.42 +2916,2025-03-07T08:41:05.266292-08:00,0.0,10.719606,10719.606 +2917,2025-03-07T08:41:15.991556-08:00,0.0,10.725264,10725.264 +2918,2025-03-07T08:41:26.708134-08:00,0.0,10.716578,10716.578 +2919,2025-03-07T08:41:37.426087-08:00,0.0,10.717953,10717.953 +2920,2025-03-07T08:41:48.146674-08:00,0.0,10.720587,10720.587 +2921,2025-03-07T08:41:58.873143-08:00,0.0,10.726469,10726.469 +2922,2025-03-07T08:42:09.593305-08:00,0.0,10.720162,10720.162 +2923,2025-03-07T08:42:20.319690-08:00,0.0,10.726385,10726.385 +2924,2025-03-07T08:42:31.035076-08:00,0.0,10.715386,10715.386 +2925,2025-03-07T08:42:41.759173-08:00,0.0,10.724097,10724.097 +2926,2025-03-07T08:42:52.476342-08:00,0.0,10.717169,10717.169 +2927,2025-03-07T08:43:03.196279-08:00,0.0,10.719937,10719.937 +2928,2025-03-07T08:43:13.918161-08:00,0.0,10.721882,10721.882 +2929,2025-03-07T08:43:24.635084-08:00,0.0,10.716923,10716.923 +2930,2025-03-07T08:43:35.366881-08:00,0.0,10.731797,10731.797 +2931,2025-03-07T08:43:46.089704-08:00,0.0,10.722823,10722.823 +2932,2025-03-07T08:43:56.809113-08:00,0.0,10.719409,10719.409 +2933,2025-03-07T08:44:07.538570-08:00,0.0,10.729457,10729.457 +2934,2025-03-07T08:44:18.264190-08:00,0.0,10.72562,10725.62 +2935,2025-03-07T08:44:28.989180-08:00,0.0,10.72499,10724.99 +2936,2025-03-07T08:44:39.713083-08:00,0.0,10.723903,10723.903 +2937,2025-03-07T08:44:50.439793-08:00,0.0,10.72671,10726.71 +2938,2025-03-07T08:45:01.156295-08:00,0.0,10.716502,10716.502 +2939,2025-03-07T08:45:11.881655-08:00,0.0,10.72536,10725.36 +2940,2025-03-07T08:45:22.599105-08:00,0.0,10.71745,10717.45 +2941,2025-03-07T08:45:33.328161-08:00,0.0,10.729056,10729.056 +2942,2025-03-07T08:45:44.053989-08:00,0.0,10.725828,10725.828 +2943,2025-03-07T08:45:54.764260-08:00,0.0,10.710271,10710.271 +2944,2025-03-07T08:46:05.493291-08:00,0.0,10.729031,10729.031 +2945,2025-03-07T08:46:16.219083-08:00,0.0,10.725792,10725.792 +2946,2025-03-07T08:46:26.942102-08:00,0.0,10.723019,10723.019 +2947,2025-03-07T08:46:37.661265-08:00,0.0,10.719163,10719.163 +2948,2025-03-07T08:46:48.389837-08:00,0.0,10.728572,10728.572 +2949,2025-03-07T08:46:59.116083-08:00,0.0,10.726246,10726.246 +2950,2025-03-07T08:47:09.836013-08:00,0.0,10.71993,10719.93 +2951,2025-03-07T08:47:20.564293-08:00,0.0,10.72828,10728.28 +2952,2025-03-07T08:47:31.288917-08:00,0.0,10.724624,10724.624 +2953,2025-03-07T08:47:42.009080-08:00,0.0,10.720163,10720.163 +2954,2025-03-07T08:47:52.734305-08:00,0.0,10.725225,10725.225 +2955,2025-03-07T08:48:03.457288-08:00,0.0,10.722983,10722.983 +2956,2025-03-07T08:48:14.187170-08:00,0.0,10.729882,10729.882 +2957,2025-03-07T08:48:24.902180-08:00,0.0,10.71501,10715.01 +2958,2025-03-07T08:48:35.634287-08:00,0.0,10.732107,10732.107 +2959,2025-03-07T08:48:46.349292-08:00,0.0,10.715005,10715.005 +2960,2025-03-07T08:48:57.072365-08:00,0.0,10.723073,10723.073 +2961,2025-03-07T08:49:07.801373-08:00,0.0,10.729008,10729.008 +2962,2025-03-07T08:49:18.520083-08:00,0.0,10.71871,10718.71 +2963,2025-03-07T08:49:29.243844-08:00,0.0,10.723761,10723.761 +2964,2025-03-07T08:49:39.970084-08:00,0.0,10.72624,10726.24 +2965,2025-03-07T08:49:50.693282-08:00,0.0,10.723198,10723.198 +2966,2025-03-07T08:50:01.424286-08:00,0.0,10.731004,10731.004 +2967,2025-03-07T08:50:12.144081-08:00,0.0,10.719795,10719.795 +2968,2025-03-07T08:50:22.869081-08:00,0.0,10.725,10725.0 +2969,2025-03-07T08:50:33.588193-08:00,0.0,10.719112,10719.112 +2970,2025-03-07T08:50:44.306287-08:00,0.0,10.718094,10718.094 +2971,2025-03-07T08:50:55.035161-08:00,0.0,10.728874,10728.874 +2972,2025-03-07T08:51:05.755081-08:00,0.0,10.71992,10719.92 +2973,2025-03-07T08:51:16.485113-08:00,0.0,10.730032,10730.032 +2974,2025-03-07T08:51:27.208323-08:00,0.0,10.72321,10723.21 +2975,2025-03-07T08:51:37.936083-08:00,0.0,10.72776,10727.76 +2976,2025-03-07T08:51:48.651106-08:00,0.0,10.715023,10715.023 +2977,2025-03-07T08:51:59.376191-08:00,0.0,10.725085,10725.085 +2978,2025-03-07T08:52:10.106265-08:00,0.0,10.730074,10730.074 +2979,2025-03-07T08:52:20.824594-08:00,0.0,10.718329,10718.329 +2980,2025-03-07T08:52:31.550291-08:00,0.0,10.725697,10725.697 +2981,2025-03-07T08:52:42.276699-08:00,0.0,10.726408,10726.408 +2982,2025-03-07T08:52:53.005583-08:00,0.0,10.728884,10728.884 +2983,2025-03-07T08:53:03.722583-08:00,0.0,10.717,10717.0 +2984,2025-03-07T08:53:14.457057-08:00,0.0,10.734474,10734.474 +2985,2025-03-07T08:53:25.182613-08:00,0.0,10.725556,10725.556 +2986,2025-03-07T08:53:35.898587-08:00,0.0,10.715974,10715.974 +2987,2025-03-07T08:53:46.629998-08:00,0.0,10.731411,10731.411 +2988,2025-03-07T08:53:57.347583-08:00,0.0,10.717585,10717.585 +2989,2025-03-07T08:54:08.072595-08:00,0.0,10.725012,10725.012 +2990,2025-03-07T08:54:18.789583-08:00,0.0,10.716988,10716.988 +2991,2025-03-07T08:54:29.511156-08:00,0.0,10.721573,10721.573 +2992,2025-03-07T08:54:40.235584-08:00,0.0,10.724428,10724.428 +2993,2025-03-07T08:54:50.952750-08:00,0.0,10.717166,10717.166 +2994,2025-03-07T08:55:01.682379-08:00,0.0,10.729629,10729.629 +2995,2025-03-07T08:55:12.399946-08:00,0.0,10.717567,10717.567 +2996,2025-03-07T08:55:23.122728-08:00,0.0,10.722782,10722.782 +2997,2025-03-07T08:55:33.837782-08:00,0.0,10.715054,10715.054 +2998,2025-03-07T08:55:44.562585-08:00,0.0,10.724803,10724.803 +2999,2025-03-07T08:55:55.279990-08:00,0.0,10.717405,10717.405 +3000,2025-03-07T08:56:05.999581-08:00,0.0,10.719591,10719.591 +3001,2025-03-07T08:56:16.716918-08:00,0.0,10.717337,10717.337 +3002,2025-03-07T08:56:27.441730-08:00,0.0,10.724812,10724.812 +3003,2025-03-07T08:56:38.166933-08:00,0.0,10.725203,10725.203 +3004,2025-03-07T08:56:48.884629-08:00,0.0,10.717696,10717.696 +3005,2025-03-07T08:56:59.608765-08:00,0.0,10.724136,10724.136 +3006,2025-03-07T08:57:10.328700-08:00,0.0,10.719935,10719.935 +3007,2025-03-07T08:57:21.056127-08:00,0.0,10.727427,10727.427 +3008,2025-03-07T08:57:31.779611-08:00,0.0,10.723484,10723.484 +3009,2025-03-07T08:57:42.498779-08:00,0.0,10.719168,10719.168 +3010,2025-03-07T08:57:53.219586-08:00,0.0,10.720807,10720.807 +3011,2025-03-07T08:58:03.941964-08:00,0.0,10.722378,10722.378 +3012,2025-03-07T08:58:14.666583-08:00,0.0,10.724619,10724.619 +3013,2025-03-07T08:58:25.384758-08:00,0.0,10.718175,10718.175 +3014,2025-03-07T08:58:36.115241-08:00,0.0,10.730483,10730.483 +3015,2025-03-07T08:58:46.828985-08:00,0.0,10.713744,10713.744 +3016,2025-03-07T08:58:57.558582-08:00,0.0,10.729597,10729.597 +3017,2025-03-07T08:59:08.283585-08:00,0.0,10.725003,10725.003 +3018,2025-03-07T08:59:19.004585-08:00,0.0,10.721,10721.0 +3019,2025-03-07T08:59:29.730800-08:00,0.0,10.726215,10726.215 +3020,2025-03-07T08:59:40.448583-08:00,0.0,10.717783,10717.783 +3021,2025-03-07T08:59:51.171612-08:00,0.0,10.723029,10723.029 +3022,2025-03-07T09:00:01.899822-08:00,0.0,10.72821,10728.21 +3023,2025-03-07T09:00:12.625584-08:00,0.0,10.725762,10725.762 +3024,2025-03-07T09:00:23.351783-08:00,0.0,10.726199,10726.199 +3025,2025-03-07T09:00:34.074822-08:00,0.0,10.723039,10723.039 +3026,2025-03-07T09:00:44.800737-08:00,0.0,10.725915,10725.915 +3027,2025-03-07T09:00:55.520354-08:00,0.0,10.719617,10719.617 +3028,2025-03-07T09:01:06.244826-08:00,0.0,10.724472,10724.472 +3029,2025-03-07T09:01:16.966942-08:00,0.0,10.722116,10722.116 +3030,2025-03-07T09:01:27.692586-08:00,0.0,10.725644,10725.644 +3031,2025-03-07T09:01:38.408582-08:00,0.0,10.715996,10715.996 +3032,2025-03-07T09:01:49.135802-08:00,0.0,10.72722,10727.22 +3033,2025-03-07T09:01:59.852585-08:00,0.0,10.716783,10716.783 +3034,2025-03-07T09:02:10.577580-08:00,0.0,10.724995,10724.995 +3035,2025-03-07T09:02:21.297583-08:00,0.0,10.720003,10720.003 +3036,2025-03-07T09:02:32.028777-08:00,0.0,10.731194,10731.194 +3037,2025-03-07T09:02:42.753600-08:00,0.0,10.724823,10724.823 +3038,2025-03-07T09:02:53.475585-08:00,0.0,10.721985,10721.985 +3039,2025-03-07T09:03:04.195607-08:00,0.0,10.720022,10720.022 +3040,2025-03-07T09:03:14.915777-08:00,0.0,10.72017,10720.17 +3041,2025-03-07T09:03:25.646759-08:00,0.0,10.730982,10730.982 +3042,2025-03-07T09:03:36.366605-08:00,0.0,10.719846,10719.846 +3043,2025-03-07T09:03:47.087386-08:00,0.0,10.720781,10720.781 +3044,2025-03-07T09:03:57.817790-08:00,0.0,10.730404,10730.404 +3045,2025-03-07T09:04:08.538761-08:00,0.0,10.720971,10720.971 +3046,2025-03-07T09:04:19.255583-08:00,0.0,10.716822,10716.822 +3047,2025-03-07T09:04:29.985674-08:00,0.0,10.730091,10730.091 +3048,2025-03-07T09:04:40.700754-08:00,0.0,10.71508,10715.08 +3049,2025-03-07T09:04:51.428715-08:00,0.0,10.727961,10727.961 +3050,2025-03-07T09:05:02.142832-08:00,0.0,10.714117,10714.117 +3051,2025-03-07T09:05:12.869705-08:00,0.0,10.726873,10726.873 +3052,2025-03-07T09:05:23.590639-08:00,0.0,10.720934,10720.934 +3053,2025-03-07T09:05:34.306087-08:00,0.0,10.715448,10715.448 +3054,2025-03-07T09:05:45.031582-08:00,0.0,10.725495,10725.495 +3055,2025-03-07T09:05:55.750220-08:00,0.0,10.718638,10718.638 +3056,2025-03-07T09:06:06.465786-08:00,0.0,10.715566,10715.566 +3057,2025-03-07T09:06:17.193408-08:00,0.0,10.727622,10727.622 +3058,2025-03-07T09:06:27.912581-08:00,0.0,10.719173,10719.173 +3059,2025-03-07T09:06:38.629693-08:00,0.0,10.717112,10717.112 +3060,2025-03-07T09:06:49.350764-08:00,0.0,10.721071,10721.071 +3061,2025-03-07T09:07:00.068615-08:00,0.0,10.717851,10717.851 +3062,2025-03-07T09:07:10.793583-08:00,0.0,10.724968,10724.968 +3063,2025-03-07T09:07:21.508581-08:00,0.0,10.714998,10714.998 +3064,2025-03-07T09:07:32.228742-08:00,0.0,10.720161,10720.161 +3065,2025-03-07T09:07:42.949585-08:00,0.0,10.720843,10720.843 +3066,2025-03-07T09:07:53.675578-08:00,0.0,10.725993,10725.993 +3067,2025-03-07T09:08:04.396771-08:00,0.0,10.721193,10721.193 +3068,2025-03-07T09:08:11.077102-08:00,0.0,6.680331,6680.331 +3069,2025-03-07T09:08:15.111769-08:00,0.0,4.034667,4034.667 +3070,2025-03-07T09:08:25.837780-08:00,0.0,10.726011,10726.011 +3071,2025-03-07T09:08:36.560736-08:00,0.0,10.722956,10722.956 +3072,2025-03-07T09:08:47.283585-08:00,0.0,10.722849,10722.849 +3073,2025-03-07T09:08:58.006809-08:00,0.0,10.723224,10723.224 +3074,2025-03-07T09:09:08.728711-08:00,0.0,10.721902,10721.902 +3075,2025-03-07T09:09:19.445760-08:00,0.0,10.717049,10717.049 +3076,2025-03-07T09:09:30.166586-08:00,0.0,10.720826,10720.826 +3077,2025-03-07T09:09:40.897775-08:00,0.0,10.731189,10731.189 +3078,2025-03-07T09:09:51.614582-08:00,0.0,10.716807,10716.807 +3079,2025-03-07T09:10:02.336618-08:00,0.0,10.722036,10722.036 +3080,2025-03-07T09:10:13.053920-08:00,0.0,10.717302,10717.302 +3081,2025-03-07T09:10:23.772965-08:00,0.0,10.719045,10719.045 +3082,2025-03-07T09:10:34.501739-08:00,0.0,10.728774,10728.774 +3083,2025-03-07T09:10:45.224581-08:00,0.0,10.722842,10722.842 +3084,2025-03-07T09:10:55.942692-08:00,0.0,10.718111,10718.111 +3085,2025-03-07T09:11:06.659791-08:00,0.0,10.717099,10717.099 +3086,2025-03-07T09:11:17.383585-08:00,0.0,10.723794,10723.794 +3087,2025-03-07T09:11:28.103779-08:00,0.0,10.720194,10720.194 +3088,2025-03-07T09:11:38.830128-08:00,0.0,10.726349,10726.349 +3089,2025-03-07T09:11:49.548699-08:00,0.0,10.718571,10718.571 +3090,2025-03-07T09:12:00.276585-08:00,0.0,10.727886,10727.886 +3091,2025-03-07T09:12:10.994909-08:00,0.0,10.718324,10718.324 +3092,2025-03-07T09:12:21.724583-08:00,0.0,10.729674,10729.674 +3093,2025-03-07T09:12:32.444767-08:00,0.0,10.720184,10720.184 +3094,2025-03-07T09:12:43.179103-08:00,0.0,10.734336,10734.336 +3095,2025-03-07T09:12:53.892586-08:00,0.0,10.713483,10713.483 +3096,2025-03-07T09:13:04.613585-08:00,0.0,10.720999,10720.999 +3097,2025-03-07T09:13:15.345687-08:00,0.0,10.732102,10732.102 +3098,2025-03-07T09:13:26.059322-08:00,0.0,10.713635,10713.635 +3099,2025-03-07T09:13:36.786728-08:00,0.0,10.727406,10727.406 +3100,2025-03-07T09:13:47.506879-08:00,0.0,10.720151,10720.151 +3101,2025-03-07T09:13:58.232744-08:00,0.0,10.725865,10725.865 +3102,2025-03-07T09:14:08.951370-08:00,0.0,10.718626,10718.626 +3103,2025-03-07T09:14:19.676585-08:00,0.0,10.725215,10725.215 +3104,2025-03-07T09:14:30.403777-08:00,0.0,10.727192,10727.192 +3105,2025-03-07T09:14:41.122589-08:00,0.0,10.718812,10718.812 +3106,2025-03-07T09:14:51.843804-08:00,0.0,10.721215,10721.215 +3107,2025-03-07T09:15:02.570332-08:00,0.0,10.726528,10726.528 +3108,2025-03-07T09:15:13.297585-08:00,0.0,10.727253,10727.253 +3109,2025-03-07T09:15:24.013583-08:00,0.0,10.715998,10715.998 +3110,2025-03-07T09:15:34.743998-08:00,0.0,10.730415,10730.415 +3111,2025-03-07T09:15:45.462656-08:00,0.0,10.718658,10718.658 +3112,2025-03-07T09:15:56.185585-08:00,0.0,10.722929,10722.929 +3113,2025-03-07T09:16:06.907138-08:00,0.0,10.721553,10721.553 +3114,2025-03-07T09:16:17.638588-08:00,0.0,10.73145,10731.45 +3115,2025-03-07T09:16:28.362143-08:00,0.0,10.723555,10723.555 +3116,2025-03-07T09:16:39.088585-08:00,0.0,10.726442,10726.442 +3117,2025-03-07T09:16:49.807988-08:00,0.0,10.719403,10719.403 +3118,2025-03-07T09:17:00.535582-08:00,0.0,10.727594,10727.594 +3119,2025-03-07T09:17:11.260406-08:00,0.0,10.724824,10724.824 +3120,2025-03-07T09:17:21.982586-08:00,0.0,10.72218,10722.18 +3121,2025-03-07T09:17:32.706657-08:00,0.0,10.724071,10724.071 +3122,2025-03-07T09:17:43.428584-08:00,0.0,10.721927,10721.927 +3123,2025-03-07T09:17:54.153811-08:00,0.0,10.725227,10725.227 +3124,2025-03-07T09:18:04.889775-08:00,0.0,10.735964,10735.964 +3125,2025-03-07T09:18:15.607651-08:00,0.0,10.717876,10717.876 +3126,2025-03-07T09:18:26.334977-08:00,0.0,10.727326,10727.326 +3127,2025-03-07T09:18:37.058662-08:00,0.0,10.723685,10723.685 +3128,2025-03-07T09:18:47.785932-08:00,0.0,10.72727,10727.27 +3129,2025-03-07T09:18:58.516974-08:00,0.0,10.731042,10731.042 +3130,2025-03-07T09:19:09.233734-08:00,0.0,10.71676,10716.76 +3131,2025-03-07T09:19:19.956611-08:00,0.0,10.722877,10722.877 +3132,2025-03-07T09:19:30.685824-08:00,0.0,10.729213,10729.213 +3133,2025-03-07T09:19:41.411689-08:00,0.0,10.725865,10725.865 +3134,2025-03-07T09:19:52.134588-08:00,0.0,10.722899,10722.899 +3135,2025-03-07T09:20:02.868886-08:00,0.0,10.734298,10734.298 +3136,2025-03-07T09:20:13.593977-08:00,0.0,10.725091,10725.091 +3137,2025-03-07T09:20:24.312769-08:00,0.0,10.718792,10718.792 +3138,2025-03-07T09:20:35.048981-08:00,0.0,10.736212,10736.212 +3139,2025-03-07T09:20:45.765581-08:00,0.0,10.7166,10716.6 +3140,2025-03-07T09:20:56.493751-08:00,0.0,10.72817,10728.17 +3141,2025-03-07T09:21:07.227251-08:00,0.0,10.7335,10733.5 +3142,2025-03-07T09:21:17.950593-08:00,0.0,10.723342,10723.342 +3143,2025-03-07T09:21:28.675153-08:00,0.0,10.72456,10724.56 +3144,2025-03-07T09:21:39.402789-08:00,0.0,10.727636,10727.636 +3145,2025-03-07T09:21:50.126783-08:00,0.0,10.723994,10723.994 +3146,2025-03-07T09:22:00.848786-08:00,0.0,10.722003,10722.003 +3147,2025-03-07T09:22:11.576772-08:00,0.0,10.727986,10727.986 +3148,2025-03-07T09:22:22.305583-08:00,0.0,10.728811,10728.811 +3149,2025-03-07T09:22:33.026659-08:00,0.0,10.721076,10721.076 +3150,2025-03-07T09:22:43.753852-08:00,0.0,10.727193,10727.193 +3151,2025-03-07T09:22:54.487585-08:00,0.0,10.733733,10733.733 +3152,2025-03-07T09:23:05.204750-08:00,0.0,10.717165,10717.165 +3153,2025-03-07T09:23:15.934933-08:00,463.0,10.730183,10730.183 +3154,2025-03-07T09:23:26.659585-08:00,457.0,10.724652,10724.652 +3155,2025-03-07T09:23:37.384610-08:00,503.0,10.725025,10725.025 +3156,2025-03-07T09:23:48.104879-08:00,437.0,10.720269,10720.269 +3157,2025-03-07T09:23:58.842307-08:00,480.0,10.737428,10737.428 +3158,2025-03-07T09:24:09.557740-08:00,368.0,10.715433,10715.433 +3159,2025-03-07T09:24:20.293798-08:00,463.0,10.736058,10736.058 +3160,2025-03-07T09:24:31.018611-08:00,461.0,10.724813,10724.813 +3161,2025-03-07T09:24:41.738806-08:00,473.0,10.720195,10720.195 +3162,2025-03-07T09:24:52.465787-08:00,454.0,10.726981,10726.981 +3163,2025-03-07T09:25:03.194582-08:00,379.0,10.728795,10728.795 +3164,2025-03-07T09:25:13.923595-08:00,431.0,10.729013,10729.013 +3165,2025-03-07T09:25:24.649612-08:00,414.0,10.726017,10726.017 +3166,2025-03-07T09:25:35.373882-08:00,431.0,10.72427,10724.27 +3167,2025-03-07T09:25:46.100694-08:00,448.0,10.726812,10726.812 +3168,2025-03-07T09:25:56.819794-08:00,461.0,10.7191,10719.1 +3169,2025-03-07T09:26:07.551751-08:00,448.0,10.731957,10731.957 +3170,2025-03-07T09:26:18.283782-08:00,361.0,10.732031,10732.031 +3171,2025-03-07T09:26:29.003630-08:00,380.0,10.719848,10719.848 +3172,2025-03-07T09:26:39.730807-08:00,346.0,10.727177,10727.177 +3173,2025-03-07T09:26:50.462797-08:00,476.0,10.73199,10731.99 +3174,2025-03-07T09:27:01.186774-08:00,446.0,10.723977,10723.977 +3175,2025-03-07T09:27:11.915585-08:00,350.0,10.728811,10728.811 +3176,2025-03-07T09:27:22.645428-08:00,430.0,10.729843,10729.843 +3177,2025-03-07T09:27:33.365640-08:00,462.0,10.720212,10720.212 +3178,2025-03-07T09:27:44.094585-08:00,465.0,10.728945,10728.945 +3179,2025-03-07T09:27:54.828667-08:00,465.0,10.734082,10734.082 +3180,2025-03-07T09:28:05.548582-08:00,464.0,10.719915,10719.915 +3181,2025-03-07T09:28:16.271317-08:00,451.0,10.722735,10722.735 +3182,2025-03-07T09:28:27.005877-08:00,415.0,10.73456,10734.56 +3183,2025-03-07T09:28:37.734616-08:00,421.0,10.728739,10728.739 +3184,2025-03-07T09:28:48.457091-08:00,383.0,10.722475,10722.475 +3185,2025-03-07T09:28:59.187584-08:00,457.0,10.730493,10730.493 +3186,2025-03-07T09:29:09.917581-08:00,449.0,10.729997,10729.997 +3187,2025-03-07T09:29:20.646890-08:00,399.0,10.729309,10729.309 +3188,2025-03-07T09:29:31.378649-08:00,313.0,10.731759,10731.759 +3189,2025-03-07T09:29:42.101692-08:00,464.0,10.723043,10723.043 +3190,2025-03-07T09:29:52.821661-08:00,335.0,10.719969,10719.969 +3191,2025-03-07T09:29:52.821661-08:00,335.0,0.0,0.0 +3192,2025-03-07T09:30:03.550727-08:00,455.0,10.729066,10729.066 +3193,2025-03-07T09:30:14.279167-08:00,474.0,10.72844,10728.44 +3194,2025-03-07T09:30:25.008591-08:00,466.0,10.729424,10729.424 +3195,2025-03-07T09:30:35.725788-08:00,368.0,10.717197,10717.197 +3196,2025-03-07T09:30:46.454793-08:00,377.0,10.729005,10729.005 +3197,2025-03-07T09:30:57.178062-08:00,457.0,10.723269,10723.269 +3198,2025-03-07T09:31:07.905582-08:00,440.0,10.72752,10727.52 +3199,2025-03-07T09:31:18.635789-08:00,464.0,10.730207,10730.207 +3200,2025-03-07T09:31:29.360791-08:00,387.0,10.725002,10725.002 +3201,2025-03-07T09:31:40.086650-08:00,395.0,10.725859,10725.859 +3202,2025-03-07T09:31:50.813998-08:00,406.0,10.727348,10727.348 +3203,2025-03-07T09:32:01.538583-08:00,427.0,10.724585,10724.585 +3204,2025-03-07T09:32:12.256585-08:00,382.0,10.718002,10718.002 +3205,2025-03-07T09:32:22.982664-08:00,454.0,10.726079,10726.079 +3206,2025-03-07T09:32:33.705765-08:00,458.0,10.723101,10723.101 +3207,2025-03-07T09:32:44.440773-08:00,454.0,10.735008,10735.008 +3208,2025-03-07T09:32:55.157586-08:00,390.0,10.716813,10716.813 +3209,2025-03-07T09:33:05.884799-08:00,363.0,10.727213,10727.213 +3210,2025-03-07T09:33:16.610644-08:00,469.0,10.725845,10725.845 +3211,2025-03-07T09:33:27.326783-08:00,463.0,10.716139,10716.139 +3212,2025-03-07T09:33:38.061632-08:00,454.0,10.734849,10734.849 +3213,2025-03-07T09:33:48.772685-08:00,427.0,10.711053,10711.053 +3214,2025-03-07T09:33:59.501583-08:00,460.0,10.728898,10728.898 +3215,2025-03-07T09:34:10.225812-08:00,405.0,10.724229,10724.229 +3216,2025-03-07T09:34:20.945788-08:00,346.0,10.719976,10719.976 +3217,2025-03-07T09:34:31.661746-08:00,367.0,10.715958,10715.958 +3218,2025-03-07T09:34:42.394373-08:00,183.0,10.732627,10732.627 +3219,2025-03-07T09:34:53.111763-08:00,439.0,10.71739,10717.39 +3220,2025-03-07T09:35:03.829783-08:00,435.0,10.71802,10718.02 +3221,2025-03-07T09:35:14.557581-08:00,458.0,10.727798,10727.798 +3222,2025-03-07T09:35:25.282728-08:00,451.0,10.725147,10725.147 +3223,2025-03-07T09:35:36.003768-08:00,456.0,10.72104,10721.04 +3224,2025-03-07T09:35:46.731441-08:00,433.0,10.727673,10727.673 +3225,2025-03-07T09:35:57.446595-08:00,432.0,10.715154,10715.154 +3226,2025-03-07T09:36:08.169720-08:00,464.0,10.723125,10723.125 +3227,2025-03-07T09:36:18.900796-08:00,448.0,10.731076,10731.076 +3228,2025-03-07T09:36:29.628409-08:00,450.0,10.727613,10727.613 +3229,2025-03-07T09:36:40.352720-08:00,365.0,10.724311,10724.311 +3230,2025-03-07T09:36:51.076581-08:00,465.0,10.723861,10723.861 +3231,2025-03-07T09:37:01.788789-08:00,480.0,10.712208,10712.208 +3232,2025-03-07T09:37:12.518948-08:00,448.0,10.730159,10730.159 +3233,2025-03-07T09:37:23.236657-08:00,459.0,10.717709,10717.709 +3234,2025-03-07T09:37:33.958755-08:00,0.0,10.722098,10722.098 +3235,2025-03-07T09:37:44.681795-08:00,0.0,10.72304,10723.04 +3236,2025-03-07T09:37:55.415625-08:00,0.0,10.73383,10733.83 +3237,2025-03-07T09:38:06.133583-08:00,0.0,10.717958,10717.958 +3238,2025-03-07T09:38:16.859618-08:00,0.0,10.726035,10726.035 +3239,2025-03-07T09:38:27.589772-08:00,0.0,10.730154,10730.154 +3240,2025-03-07T09:38:38.314615-08:00,0.0,10.724843,10724.843 +3241,2025-03-07T09:38:49.028271-08:00,0.0,10.713656,10713.656 +3242,2025-03-07T09:38:59.755783-08:00,0.0,10.727512,10727.512 +3243,2025-03-07T09:39:10.471190-08:00,0.0,10.715407,10715.407 +3244,2025-03-07T09:39:21.194639-08:00,0.0,10.723449,10723.449 +3245,2025-03-07T09:39:31.919788-08:00,0.0,10.725149,10725.149 +3246,2025-03-07T09:39:42.642586-08:00,0.0,10.722798,10722.798 +3247,2025-03-07T09:39:53.373584-08:00,0.0,10.730998,10730.998 +3248,2025-03-07T09:40:04.096582-08:00,0.0,10.722998,10722.998 +3249,2025-03-07T09:40:14.815360-08:00,0.0,10.718778,10718.778 +3250,2025-03-07T09:40:25.547138-08:00,0.0,10.731778,10731.778 +3251,2025-03-07T09:40:36.266644-08:00,0.0,10.719506,10719.506 +3252,2025-03-07T09:40:46.994104-08:00,0.0,10.72746,10727.46 +3253,2025-03-07T09:40:57.719652-08:00,0.0,10.725548,10725.548 +3254,2025-03-07T09:41:08.443696-08:00,0.0,10.724044,10724.044 +3255,2025-03-07T09:41:19.162740-08:00,0.0,10.719044,10719.044 +3256,2025-03-07T09:41:29.891865-08:00,0.0,10.729125,10729.125 +3257,2025-03-07T09:41:40.616867-08:00,0.0,10.725002,10725.002 +3258,2025-03-07T09:41:51.331980-08:00,0.0,10.715113,10715.113 +3259,2025-03-07T09:42:02.059582-08:00,0.0,10.727602,10727.602 +3260,2025-03-07T09:42:12.776756-08:00,0.0,10.717174,10717.174 +3261,2025-03-07T09:42:23.506648-08:00,0.0,10.729892,10729.892 +3262,2025-03-07T09:42:34.227992-08:00,0.0,10.721344,10721.344 +3263,2025-03-07T09:42:44.950583-08:00,0.0,10.722591,10722.591 +3264,2025-03-07T09:42:55.676582-08:00,0.0,10.725999,10725.999 +3265,2025-03-07T09:43:06.397598-08:00,0.0,10.721016,10721.016 +3266,2025-03-07T09:43:17.121798-08:00,0.0,10.7242,10724.2 +3267,2025-03-07T09:43:27.848896-08:00,0.0,10.727098,10727.098 +3268,2025-03-07T09:43:38.578585-08:00,0.0,10.729689,10729.689 +3269,2025-03-07T09:43:49.305822-08:00,0.0,10.727237,10727.237 +3270,2025-03-07T09:44:00.026657-08:00,0.0,10.720835,10720.835 +3271,2025-03-07T09:44:10.752846-08:00,0.0,10.726189,10726.189 +3272,2025-03-07T09:44:21.471582-08:00,0.0,10.718736,10718.736 +3273,2025-03-07T09:44:32.199587-08:00,0.0,10.728005,10728.005 +3274,2025-03-07T09:44:42.920100-08:00,0.0,10.720513,10720.513 +3275,2025-03-07T09:44:53.639763-08:00,0.0,10.719663,10719.663 +3276,2025-03-07T09:45:04.363584-08:00,0.0,10.723821,10723.821 +3277,2025-03-07T09:45:15.087801-08:00,0.0,10.724217,10724.217 +3278,2025-03-07T09:45:25.815768-08:00,0.0,10.727967,10727.967 +3279,2025-03-07T09:45:36.536638-08:00,0.0,10.72087,10720.87 +3280,2025-03-07T09:45:47.256234-08:00,0.0,10.719596,10719.596 +3281,2025-03-07T09:45:57.983584-08:00,0.0,10.72735,10727.35 +3282,2025-03-07T09:46:08.711717-08:00,0.0,10.728133,10728.133 +3283,2025-03-07T09:46:19.435585-08:00,0.0,10.723868,10723.868 +3284,2025-03-07T09:46:30.165771-08:00,0.0,10.730186,10730.186 +3285,2025-03-07T09:46:40.880622-08:00,0.0,10.714851,10714.851 +3286,2025-03-07T09:46:51.613591-08:00,0.0,10.732969,10732.969 +3287,2025-03-07T09:47:02.331774-08:00,0.0,10.718183,10718.183 +3288,2025-03-07T09:47:13.061664-08:00,0.0,10.72989,10729.89 +3289,2025-03-07T09:47:23.783794-08:00,0.0,10.72213,10722.13 +3290,2025-03-07T09:47:34.503608-08:00,0.0,10.719814,10719.814 +3291,2025-03-07T09:47:45.232958-08:00,0.0,10.72935,10729.35 +3292,2025-03-07T09:47:55.958706-08:00,0.0,10.725748,10725.748 +3293,2025-03-07T09:48:06.678250-08:00,0.0,10.719544,10719.544 +3294,2025-03-07T09:48:17.397611-08:00,0.0,10.719361,10719.361 +3295,2025-03-07T09:48:28.122795-08:00,0.0,10.725184,10725.184 +3296,2025-03-07T09:48:38.853740-08:00,0.0,10.730945,10730.945 +3297,2025-03-07T09:48:49.573764-08:00,0.0,10.720024,10720.024 +3298,2025-03-07T09:49:00.300373-08:00,0.0,10.726609,10726.609 +3299,2025-03-07T09:49:11.021579-08:00,0.0,10.721206,10721.206 +3300,2025-03-07T09:49:21.745905-08:00,0.0,10.724326,10724.326 +3301,2025-03-07T09:49:32.475586-08:00,0.0,10.729681,10729.681 +3302,2025-03-07T09:49:43.197005-08:00,0.0,10.721419,10721.419 +3303,2025-03-07T09:49:53.921581-08:00,0.0,10.724576,10724.576 +3304,2025-03-07T09:50:04.649585-08:00,0.0,10.728004,10728.004 +3305,2025-03-07T09:50:15.371586-08:00,0.0,10.722001,10722.001 +3306,2025-03-07T09:50:26.095036-08:00,0.0,10.72345,10723.45 +3307,2025-03-07T09:50:36.810584-08:00,0.0,10.715548,10715.548 +3308,2025-03-07T09:50:47.542649-08:00,0.0,10.732065,10732.065 +3309,2025-03-07T09:50:58.260702-08:00,0.0,10.718053,10718.053 +3310,2025-03-07T09:51:08.982852-08:00,0.0,10.72215,10722.15 +3311,2025-03-07T09:51:19.712063-08:00,0.0,10.729211,10729.211 +3312,2025-03-07T09:51:30.436585-08:00,0.0,10.724522,10724.522 +3313,2025-03-07T09:51:41.151768-08:00,0.0,10.715183,10715.183 +3314,2025-03-07T09:51:51.874590-08:00,0.0,10.722822,10722.822 +3315,2025-03-07T09:52:02.606789-08:00,0.0,10.732199,10732.199 +3316,2025-03-07T09:52:13.319591-08:00,0.0,10.712802,10712.802 +3317,2025-03-07T09:52:24.063023-08:00,0.0,10.743432,10743.432 +3318,2025-03-07T09:52:34.780139-08:00,0.0,10.717116,10717.116 +3319,2025-03-07T09:52:45.500335-08:00,0.0,10.720196,10720.196 +3320,2025-03-07T09:52:56.224247-08:00,0.0,10.723912,10723.912 +3321,2025-03-07T09:53:06.941735-08:00,0.0,10.717488,10717.488 +3322,2025-03-07T09:53:17.664213-08:00,0.0,10.722478,10722.478 +3323,2025-03-07T09:53:28.386494-08:00,0.0,10.722281,10722.281 +3324,2025-03-07T09:53:39.111221-08:00,0.0,10.724727,10724.727 +3325,2025-03-07T09:53:49.840157-08:00,0.0,10.728936,10728.936 +3326,2025-03-07T09:54:00.559140-08:00,0.0,10.718983,10718.983 +3327,2025-03-07T09:54:11.285319-08:00,0.0,10.726179,10726.179 +3328,2025-03-07T09:54:21.998148-08:00,0.0,10.712829,10712.829 +3329,2025-03-07T09:54:32.720354-08:00,0.0,10.722206,10722.206 +3330,2025-03-07T09:54:43.446136-08:00,0.0,10.725782,10725.782 +3331,2025-03-07T09:54:54.162320-08:00,0.0,10.716184,10716.184 +3332,2025-03-07T09:55:04.887141-08:00,0.0,10.724821,10724.821 +3333,2025-03-07T09:55:15.615376-08:00,0.0,10.728235,10728.235 +3334,2025-03-07T09:55:26.330407-08:00,0.0,10.715031,10715.031 +3335,2025-03-07T09:55:37.053444-08:00,0.0,10.723037,10723.037 +3336,2025-03-07T09:55:47.782310-08:00,0.0,10.728866,10728.866 +3337,2025-03-07T09:55:58.502235-08:00,0.0,10.719925,10719.925 +3338,2025-03-07T09:56:09.223140-08:00,0.0,10.720905,10720.905 +3339,2025-03-07T09:56:19.936464-08:00,0.0,10.713324,10713.324 +3340,2025-03-07T09:56:30.655142-08:00,0.0,10.718678,10718.678 +3341,2025-03-07T09:56:41.376514-08:00,0.0,10.721372,10721.372 +3342,2025-03-07T09:56:52.093342-08:00,0.0,10.716828,10716.828 +3343,2025-03-07T09:57:02.819888-08:00,0.0,10.726546,10726.546 +3344,2025-03-07T09:57:13.544141-08:00,0.0,10.724253,10724.253 +3345,2025-03-07T09:57:24.265253-08:00,0.0,10.721112,10721.112 +3346,2025-03-07T09:57:34.985137-08:00,0.0,10.719884,10719.884 +3347,2025-03-07T09:57:45.705391-08:00,0.0,10.720254,10720.254 +3348,2025-03-07T09:57:56.428449-08:00,0.0,10.723058,10723.058 +3349,2025-03-07T09:58:07.149303-08:00,0.0,10.720854,10720.854 +3350,2025-03-07T09:58:17.871175-08:00,0.0,10.721872,10721.872 +3351,2025-03-07T09:58:28.592922-08:00,0.0,10.721747,10721.747 +3352,2025-03-07T09:58:39.319137-08:00,0.0,10.726215,10726.215 +3353,2025-03-07T09:58:50.046349-08:00,0.0,10.727212,10727.212 +3354,2025-03-07T09:59:00.771148-08:00,0.0,10.724799,10724.799 +3355,2025-03-07T09:59:11.486521-08:00,0.0,10.715373,10715.373 +3356,2025-03-07T09:59:22.213305-08:00,0.0,10.726784,10726.784 +3357,2025-03-07T09:59:32.942265-08:00,0.0,10.72896,10728.96 +3358,2025-03-07T09:59:43.668165-08:00,0.0,10.7259,10725.9 +3359,2025-03-07T09:59:54.392229-08:00,0.0,10.724064,10724.064 +3360,2025-03-07T10:00:05.111140-08:00,0.0,10.718911,10718.911 +3361,2025-03-07T10:00:15.832211-08:00,0.0,10.721071,10721.071 +3362,2025-03-07T10:00:26.548348-08:00,0.0,10.716137,10716.137 +3363,2025-03-07T10:00:37.279290-08:00,0.0,10.730942,10730.942 +3364,2025-03-07T10:00:48.004786-08:00,0.0,10.725496,10725.496 +3365,2025-03-07T10:00:58.726450-08:00,0.0,10.721664,10721.664 +3366,2025-03-07T10:01:09.447499-08:00,0.0,10.721049,10721.049 +3367,2025-03-07T10:01:20.169339-08:00,0.0,10.72184,10721.84 +3368,2025-03-07T10:01:30.897584-08:00,0.0,10.728245,10728.245 +3369,2025-03-07T10:01:41.613139-08:00,0.0,10.715555,10715.555 +3370,2025-03-07T10:01:52.340324-08:00,0.0,10.727185,10727.185 +3371,2025-03-07T10:02:03.071350-08:00,0.0,10.731026,10731.026 +3372,2025-03-07T10:02:13.787366-08:00,0.0,10.716016,10716.016 +3373,2025-03-07T10:02:24.517213-08:00,0.0,10.729847,10729.847 +3374,2025-03-07T10:02:35.243143-08:00,0.0,10.72593,10725.93 +3375,2025-03-07T10:02:45.964163-08:00,0.0,10.72102,10721.02 +3376,2025-03-07T10:02:56.695285-08:00,0.0,10.731122,10731.122 +3377,2025-03-07T10:03:07.415586-08:00,0.0,10.720301,10720.301 +3378,2025-03-07T10:03:18.141138-08:00,0.0,10.725552,10725.552 +3379,2025-03-07T10:03:28.867232-08:00,0.0,10.726094,10726.094 +3380,2025-03-07T10:03:39.589168-08:00,0.0,10.721936,10721.936 +3381,2025-03-07T10:03:50.316570-08:00,0.0,10.727402,10727.402 +3382,2025-03-07T10:04:01.047139-08:00,0.0,10.730569,10730.569 +3383,2025-03-07T10:04:11.768141-08:00,0.0,10.721002,10721.002 +3384,2025-03-07T10:04:22.487440-08:00,0.0,10.719299,10719.299 +3385,2025-03-07T10:04:33.213141-08:00,0.0,10.725701,10725.701 +3386,2025-03-07T10:04:43.934313-08:00,0.0,10.721172,10721.172 +3387,2025-03-07T10:04:54.666143-08:00,0.0,10.73183,10731.83 +3388,2025-03-07T10:05:05.384399-08:00,0.0,10.718256,10718.256 +3389,2025-03-07T10:05:16.112138-08:00,0.0,10.727739,10727.739 +3390,2025-03-07T10:05:26.831309-08:00,0.0,10.719171,10719.171 +3391,2025-03-07T10:05:37.560473-08:00,0.0,10.729164,10729.164 +3392,2025-03-07T10:05:48.280160-08:00,0.0,10.719687,10719.687 +3393,2025-03-07T10:05:59.002139-08:00,0.0,10.721979,10721.979 +3394,2025-03-07T10:06:09.722400-08:00,0.0,10.720261,10720.261 +3395,2025-03-07T10:06:20.449334-08:00,0.0,10.726934,10726.934 +3396,2025-03-07T10:06:31.176141-08:00,0.0,10.726807,10726.807 +3397,2025-03-07T10:06:41.900175-08:00,0.0,10.724034,10724.034 +3398,2025-03-07T10:06:52.619291-08:00,0.0,10.719116,10719.116 +3399,2025-03-07T10:07:03.343136-08:00,0.0,10.723845,10723.845 +3400,2025-03-07T10:07:14.070251-08:00,0.0,10.727115,10727.115 +3401,2025-03-07T10:07:24.786197-08:00,0.0,10.715946,10715.946 +3402,2025-03-07T10:07:35.506383-08:00,0.0,10.720186,10720.186 +3403,2025-03-07T10:07:46.236312-08:00,0.0,10.729929,10729.929 +3404,2025-03-07T10:07:56.951337-08:00,0.0,10.715025,10715.025 +3405,2025-03-07T10:08:07.669138-08:00,0.0,10.717801,10717.801 +3406,2025-03-07T10:08:18.390341-08:00,0.0,10.721203,10721.203 +3407,2025-03-07T10:08:29.118135-08:00,0.0,10.727794,10727.794 +3408,2025-03-07T10:08:39.837141-08:00,0.0,10.719006,10719.006 +3409,2025-03-07T10:08:50.558167-08:00,0.0,10.721026,10721.026 +3410,2025-03-07T10:09:01.278235-08:00,0.0,10.720068,10720.068 +3411,2025-03-07T10:09:12.006373-08:00,0.0,10.728138,10728.138 +3412,2025-03-07T10:09:22.724147-08:00,0.0,10.717774,10717.774 +3413,2025-03-07T10:09:33.447160-08:00,0.0,10.723013,10723.013 +3414,2025-03-07T10:09:44.172566-08:00,0.0,10.725406,10725.406 +3415,2025-03-07T10:09:54.895797-08:00,0.0,10.723231,10723.231 +3416,2025-03-07T10:10:05.615141-08:00,0.0,10.719344,10719.344 +3417,2025-03-07T10:10:16.334826-08:00,0.0,10.719685,10719.685 +3418,2025-03-07T10:10:27.059357-08:00,0.0,10.724531,10724.531 +3419,2025-03-07T10:10:37.786325-08:00,0.0,10.726968,10726.968 +3420,2025-03-07T10:10:48.509142-08:00,0.0,10.722817,10722.817 +3421,2025-03-07T10:10:59.228724-08:00,0.0,10.719582,10719.582 +3422,2025-03-07T10:11:09.958138-08:00,0.0,10.729414,10729.414 +3423,2025-03-07T10:11:20.683385-08:00,0.0,10.725247,10725.247 +3424,2025-03-07T10:11:31.404347-08:00,0.0,10.720962,10720.962 +3425,2025-03-07T10:11:42.132685-08:00,0.0,10.728338,10728.338 +3426,2025-03-07T10:11:52.867318-08:00,0.0,10.734633,10734.633 +3427,2025-03-07T10:12:03.587355-08:00,0.0,10.720037,10720.037 +3428,2025-03-07T10:12:14.319337-08:00,0.0,10.731982,10731.982 +3429,2025-03-07T10:12:25.043141-08:00,0.0,10.723804,10723.804 +3430,2025-03-07T10:12:35.758502-08:00,0.0,10.715361,10715.361 +3431,2025-03-07T10:12:46.489139-08:00,0.0,10.730637,10730.637 +3432,2025-03-07T10:12:57.217206-08:00,0.0,10.728067,10728.067 +3433,2025-03-07T10:13:07.945248-08:00,0.0,10.728042,10728.042 +3434,2025-03-07T10:13:18.673164-08:00,0.0,10.727916,10727.916 +3435,2025-03-07T10:13:29.395432-08:00,0.0,10.722268,10722.268 +3436,2025-03-07T10:13:40.125008-08:00,0.0,10.729576,10729.576 +3437,2025-03-07T10:13:50.848351-08:00,0.0,10.723343,10723.343 +3438,2025-03-07T10:14:01.582533-08:00,0.0,10.734182,10734.182 +3439,2025-03-07T10:14:12.306287-08:00,0.0,10.723754,10723.754 +3440,2025-03-07T10:14:23.030217-08:00,0.0,10.72393,10723.93 +3441,2025-03-07T10:14:33.755141-08:00,0.0,10.724924,10724.924 +3442,2025-03-07T10:14:44.486136-08:00,0.0,10.730995,10730.995 +3443,2025-03-07T10:14:55.212323-08:00,0.0,10.726187,10726.187 +3444,2025-03-07T10:15:05.931342-08:00,0.0,10.719019,10719.019 +3445,2025-03-07T10:15:16.659317-08:00,0.0,10.727975,10727.975 +3446,2025-03-07T10:15:27.383175-08:00,0.0,10.723858,10723.858 +3447,2025-03-07T10:15:38.112533-08:00,0.0,10.729358,10729.358 +3448,2025-03-07T10:15:48.842139-08:00,0.0,10.729606,10729.606 +3449,2025-03-07T10:15:59.563242-08:00,0.0,10.721103,10721.103 +3450,2025-03-07T10:16:10.289414-08:00,0.0,10.726172,10726.172 +3451,2025-03-07T10:16:21.018207-08:00,0.0,10.728793,10728.793 +3452,2025-03-07T10:16:31.745339-08:00,0.0,10.727132,10727.132 +3453,2025-03-07T10:16:42.476168-08:00,0.0,10.730829,10730.829 +3454,2025-03-07T10:16:53.205141-08:00,0.0,10.728973,10728.973 +3455,2025-03-07T10:17:03.925052-08:00,0.0,10.719911,10719.911 +3456,2025-03-07T10:17:14.649141-08:00,0.0,10.724089,10724.089 +3457,2025-03-07T10:17:25.379327-08:00,0.0,10.730186,10730.186 +3458,2025-03-07T10:17:36.112342-08:00,0.0,10.733015,10733.015 +3459,2025-03-07T10:17:46.836140-08:00,0.0,10.723798,10723.798 +3460,2025-03-07T10:17:57.564391-08:00,0.0,10.728251,10728.251 +3461,2025-03-07T10:18:08.291353-08:00,0.0,10.726962,10726.962 +3462,2025-03-07T10:18:19.012963-08:00,0.0,10.72161,10721.61 +3463,2025-03-07T10:18:29.737289-08:00,0.0,10.724326,10724.326 +3464,2025-03-07T10:18:40.457245-08:00,0.0,10.719956,10719.956 +3465,2025-03-07T10:18:51.187250-08:00,0.0,10.730005,10730.005 +3466,2025-03-07T10:19:01.915143-08:00,0.0,10.727893,10727.893 +3467,2025-03-07T10:19:12.633189-08:00,0.0,10.718046,10718.046 +3468,2025-03-07T10:19:23.357359-08:00,0.0,10.72417,10724.17 +3469,2025-03-07T10:19:34.082038-08:00,0.0,10.724679,10724.679 +3470,2025-03-07T10:19:44.813141-08:00,0.0,10.731103,10731.103 +3471,2025-03-07T10:19:55.535063-08:00,0.0,10.721922,10721.922 +3472,2025-03-07T10:20:06.258175-08:00,0.0,10.723112,10723.112 +3473,2025-03-07T10:20:16.987143-08:00,0.0,10.728968,10728.968 +3474,2025-03-07T10:20:27.711386-08:00,0.0,10.724243,10724.243 +3475,2025-03-07T10:20:38.442142-08:00,0.0,10.730756,10730.756 +3476,2025-03-07T10:20:49.165349-08:00,0.0,10.723207,10723.207 +3477,2025-03-07T10:20:59.885474-08:00,0.0,10.720125,10720.125 +3478,2025-03-07T10:21:10.608314-08:00,0.0,10.72284,10722.84 +3479,2025-03-07T10:21:21.337159-08:00,0.0,10.728845,10728.845 +3480,2025-03-07T10:21:32.061349-08:00,0.0,10.72419,10724.19 +3481,2025-03-07T10:21:42.792210-08:00,0.0,10.730861,10730.861 +3482,2025-03-07T10:21:53.514141-08:00,0.0,10.721931,10721.931 +3483,2025-03-07T10:22:04.243308-08:00,0.0,10.729167,10729.167 +3484,2025-03-07T10:22:14.963174-08:00,0.0,10.719866,10719.866 +3485,2025-03-07T10:22:25.689542-08:00,0.0,10.726368,10726.368 +3486,2025-03-07T10:22:36.420606-08:00,0.0,10.731064,10731.064 +3487,2025-03-07T10:22:47.151217-08:00,0.0,10.730611,10730.611 +3488,2025-03-07T10:22:57.875329-08:00,0.0,10.724112,10724.112 +3489,2025-03-07T10:23:08.595135-08:00,0.0,10.719806,10719.806 +3490,2025-03-07T10:23:19.326275-08:00,0.0,10.73114,10731.14 +3491,2025-03-07T10:23:30.049136-08:00,0.0,10.722861,10722.861 +3492,2025-03-07T10:23:40.775143-08:00,0.0,10.726007,10726.007 +3493,2025-03-07T10:23:51.496142-08:00,0.0,10.720999,10720.999 +3494,2025-03-07T10:24:02.226141-08:00,0.0,10.729999,10729.999 +3495,2025-03-07T10:24:12.941150-08:00,0.0,10.715009,10715.009 +3496,2025-03-07T10:24:23.665170-08:00,0.0,10.72402,10724.02 +3497,2025-03-07T10:24:34.391371-08:00,0.0,10.726201,10726.201 +3498,2025-03-07T10:24:45.115772-08:00,0.0,10.724401,10724.401 +3499,2025-03-07T10:24:55.841617-08:00,0.0,10.725845,10725.845 +3500,2025-03-07T10:25:06.570171-08:00,0.0,10.728554,10728.554 +3501,2025-03-07T10:25:17.285336-08:00,0.0,10.715165,10715.165 +3502,2025-03-07T10:25:28.014143-08:00,0.0,10.728807,10728.807 +3503,2025-03-07T10:25:38.737596-08:00,0.0,10.723453,10723.453 +3504,2025-03-07T10:25:49.464141-08:00,0.0,10.726545,10726.545 +3505,2025-03-07T10:26:00.182158-08:00,0.0,10.718017,10718.017 +3506,2025-03-07T10:26:10.899194-08:00,0.0,10.717036,10717.036 +3507,2025-03-07T10:26:21.628325-08:00,0.0,10.729131,10729.131 +3508,2025-03-07T10:26:32.358165-08:00,0.0,10.72984,10729.84 +3509,2025-03-07T10:26:43.077357-08:00,0.0,10.719192,10719.192 +3510,2025-03-07T10:26:53.797313-08:00,0.0,10.719956,10719.956 +3511,2025-03-07T10:27:04.524211-08:00,0.0,10.726898,10726.898 +3512,2025-03-07T10:27:15.255363-08:00,0.0,10.731152,10731.152 +3513,2025-03-07T10:27:25.977144-08:00,0.0,10.721781,10721.781 +3514,2025-03-07T10:27:36.708149-08:00,0.0,10.731005,10731.005 +3515,2025-03-07T10:27:47.428138-08:00,0.0,10.719989,10719.989 +3516,2025-03-07T10:27:58.154347-08:00,0.0,10.726209,10726.209 +3517,2025-03-07T10:28:08.874144-08:00,0.0,10.719797,10719.797 +3518,2025-03-07T10:28:19.602138-08:00,0.0,10.727994,10727.994 +3519,2025-03-07T10:28:30.329323-08:00,0.0,10.727185,10727.185 +3520,2025-03-07T10:28:41.046544-08:00,0.0,10.717221,10717.221 +3521,2025-03-07T10:28:51.771329-08:00,0.0,10.724785,10724.785 +3522,2025-03-07T10:29:02.501141-08:00,0.0,10.729812,10729.812 +3523,2025-03-07T10:29:13.223531-08:00,0.0,10.72239,10722.39 +3524,2025-03-07T10:29:23.951163-08:00,0.0,10.727632,10727.632 +3525,2025-03-07T10:29:34.676572-08:00,0.0,10.725409,10725.409 +3526,2025-03-07T10:29:45.395345-08:00,0.0,10.718773,10718.773 +3527,2025-03-07T10:29:56.119144-08:00,0.0,10.723799,10723.799 +3528,2025-03-07T10:30:06.844169-08:00,0.0,10.725025,10725.025 +3529,2025-03-07T10:30:17.578219-08:00,0.0,10.73405,10734.05 +3530,2025-03-07T10:30:28.299358-08:00,0.0,10.721139,10721.139 +3531,2025-03-07T10:30:39.027141-08:00,0.0,10.727783,10727.783 +3532,2025-03-07T10:30:49.749399-08:00,0.0,10.722258,10722.258 +3533,2025-03-07T10:31:00.480166-08:00,0.0,10.730767,10730.767 +3534,2025-03-07T10:31:11.204209-08:00,0.0,10.724043,10724.043 +3535,2025-03-07T10:31:21.933322-08:00,0.0,10.729113,10729.113 +3536,2025-03-07T10:31:32.661136-08:00,0.0,10.727814,10727.814 +3537,2025-03-07T10:31:43.389185-08:00,0.0,10.728049,10728.049 +3538,2025-03-07T10:31:54.116167-08:00,0.0,10.726982,10726.982 +3539,2025-03-07T10:32:04.845177-08:00,0.0,10.72901,10729.01 +3540,2025-03-07T10:32:15.568531-08:00,0.0,10.723354,10723.354 +3541,2025-03-07T10:32:26.297138-08:00,0.0,10.728607,10728.607 +3542,2025-03-07T10:32:37.025146-08:00,0.0,10.728008,10728.008 +3543,2025-03-07T10:32:47.747410-08:00,0.0,10.722264,10722.264 +3544,2025-03-07T10:32:58.466478-08:00,0.0,10.719068,10719.068 +3545,2025-03-07T10:33:09.196649-08:00,0.0,10.730171,10730.171 +3546,2025-03-07T10:33:19.918352-08:00,0.0,10.721703,10721.703 +3547,2025-03-07T10:33:30.643400-08:00,0.0,10.725048,10725.048 +3548,2025-03-07T10:33:41.375142-08:00,0.0,10.731742,10731.742 +3549,2025-03-07T10:33:52.090319-08:00,0.0,10.715177,10715.177 +3550,2025-03-07T10:34:02.814139-08:00,0.0,10.72382,10723.82 +3551,2025-03-07T10:34:13.543281-08:00,0.0,10.729142,10729.142 +3552,2025-03-07T10:34:24.259141-08:00,0.0,10.71586,10715.86 +3553,2025-03-07T10:34:34.982976-08:00,0.0,10.723835,10723.835 +3554,2025-03-07T10:34:45.711138-08:00,0.0,10.728162,10728.162 +3555,2025-03-07T10:34:56.429141-08:00,0.0,10.718003,10718.003 +3556,2025-03-07T10:35:07.152694-08:00,0.0,10.723553,10723.553 +3557,2025-03-07T10:35:17.878328-08:00,0.0,10.725634,10725.634 +3558,2025-03-07T10:35:28.610542-08:00,0.0,10.732214,10732.214 +3559,2025-03-07T10:35:39.326140-08:00,0.0,10.715598,10715.598 +3560,2025-03-07T10:35:50.056385-08:00,0.0,10.730245,10730.245 +3561,2025-03-07T10:36:00.770200-08:00,0.0,10.713815,10713.815 +3562,2025-03-07T10:36:11.497323-08:00,0.0,10.727123,10727.123 +3563,2025-03-07T10:36:22.217141-08:00,0.0,10.719818,10719.818 +3564,2025-03-07T10:36:32.944368-08:00,0.0,10.727227,10727.227 +3565,2025-03-07T10:36:43.672207-08:00,0.0,10.727839,10727.839 +3566,2025-03-07T10:36:54.397336-08:00,0.0,10.725129,10725.129 +3567,2025-03-07T10:37:05.130622-08:00,0.0,10.733286,10733.286 +3568,2025-03-07T10:37:15.853139-08:00,0.0,10.722517,10722.517 +3569,2025-03-07T10:37:26.578303-08:00,0.0,10.725164,10725.164 +3570,2025-03-07T10:37:37.303410-08:00,0.0,10.725107,10725.107 +3571,2025-03-07T10:37:48.025965-08:00,0.0,10.722555,10722.555 +3572,2025-03-07T10:37:58.749143-08:00,0.0,10.723178,10723.178 +3573,2025-03-07T10:38:09.472376-08:00,0.0,10.723233,10723.233 +3574,2025-03-07T10:38:20.197139-08:00,0.0,10.724763,10724.763 +3575,2025-03-07T10:38:30.914835-08:00,0.0,10.717696,10717.696 +3576,2025-03-07T10:38:41.642208-08:00,0.0,10.727373,10727.373 +3577,2025-03-07T10:38:52.365139-08:00,0.0,10.722931,10722.931 +3578,2025-03-07T10:39:03.091317-08:00,0.0,10.726178,10726.178 +3579,2025-03-07T10:39:13.811345-08:00,0.0,10.720028,10720.028 +3580,2025-03-07T10:39:24.527141-08:00,0.0,10.715796,10715.796 +3581,2025-03-07T10:39:35.255141-08:00,0.0,10.728,10728.0 +3582,2025-03-07T10:39:45.974139-08:00,0.0,10.718998,10718.998 +3583,2025-03-07T10:39:56.697644-08:00,0.0,10.723505,10723.505 +3584,2025-03-07T10:40:07.425908-08:00,0.0,10.728264,10728.264 +3585,2025-03-07T10:40:18.147141-08:00,0.0,10.721233,10721.233 +3586,2025-03-07T10:40:28.871613-08:00,0.0,10.724472,10724.472 +3587,2025-03-07T10:40:39.589137-08:00,0.0,10.717524,10717.524 +3588,2025-03-07T10:40:50.314365-08:00,0.0,10.725228,10725.228 +3589,2025-03-07T10:41:01.036167-08:00,0.0,10.721802,10721.802 +3590,2025-03-07T10:41:11.753166-08:00,0.0,10.716999,10716.999 +3591,2025-03-07T10:41:22.480348-08:00,0.0,10.727182,10727.182 +3592,2025-03-07T10:41:33.205318-08:00,0.0,10.72497,10724.97 +3593,2025-03-07T10:41:43.922311-08:00,0.0,10.716993,10716.993 +3594,2025-03-07T10:41:54.649325-08:00,0.0,10.727014,10727.014 +3595,2025-03-07T10:42:05.374121-08:00,0.0,10.724796,10724.796 +3596,2025-03-07T10:42:16.098177-08:00,0.0,10.724056,10724.056 +3597,2025-03-07T10:42:26.822141-08:00,0.0,10.723964,10723.964 +3598,2025-03-07T10:42:37.551354-08:00,0.0,10.729213,10729.213 +3599,2025-03-07T10:42:48.270135-08:00,0.0,10.718781,10718.781 +3600,2025-03-07T10:42:58.992330-08:00,0.0,10.722195,10722.195 +3601,2025-03-07T10:43:09.716141-08:00,0.0,10.723811,10723.811 +3602,2025-03-07T10:43:20.449136-08:00,0.0,10.732995,10732.995 +3603,2025-03-07T10:43:31.164230-08:00,0.0,10.715094,10715.094 +3604,2025-03-07T10:43:41.889361-08:00,0.0,10.725131,10725.131 +3605,2025-03-07T10:43:52.615328-08:00,0.0,10.725967,10725.967 +3606,2025-03-07T10:44:03.335166-08:00,0.0,10.719838,10719.838 +3607,2025-03-07T10:44:14.055358-08:00,0.0,10.720192,10720.192 +3608,2025-03-07T10:44:24.785141-08:00,0.0,10.729783,10729.783 +3609,2025-03-07T10:44:35.503322-08:00,0.0,10.718181,10718.181 +3610,2025-03-07T10:44:46.225368-08:00,0.0,10.722046,10722.046 +3611,2025-03-07T10:44:56.948492-08:00,0.0,10.723124,10723.124 +3612,2025-03-07T10:45:07.664139-08:00,0.0,10.715647,10715.647 +3613,2025-03-07T10:45:18.395584-08:00,0.0,10.731445,10731.445 +3614,2025-03-07T10:45:29.113142-08:00,0.0,10.717558,10717.558 +3615,2025-03-07T10:45:39.835531-08:00,0.0,10.722389,10722.389 +3616,2025-03-07T10:45:50.560138-08:00,0.0,10.724607,10724.607 +3617,2025-03-07T10:46:01.282941-08:00,0.0,10.722803,10722.803 +3618,2025-03-07T10:46:12.006343-08:00,0.0,10.723402,10723.402 +3619,2025-03-07T10:46:22.731236-08:00,0.0,10.724893,10724.893 +3620,2025-03-07T10:46:33.457156-08:00,0.0,10.72592,10725.92 +3621,2025-03-07T10:46:44.177325-08:00,0.0,10.720169,10720.169 +3622,2025-03-07T10:46:54.901142-08:00,0.0,10.723817,10723.817 +3623,2025-03-07T10:47:05.627167-08:00,0.0,10.726025,10726.025 +3624,2025-03-07T10:47:16.357469-08:00,0.0,10.730302,10730.302 +3625,2025-03-07T10:47:27.081181-08:00,0.0,10.723712,10723.712 +3626,2025-03-07T10:47:37.805400-08:00,0.0,10.724219,10724.219 +3627,2025-03-07T10:47:48.533141-08:00,0.0,10.727741,10727.741 +3628,2025-03-07T10:47:59.261139-08:00,0.0,10.727998,10727.998 +3629,2025-03-07T10:48:09.982335-08:00,0.0,10.721196,10721.196 +3630,2025-03-07T10:48:20.708225-08:00,0.0,10.72589,10725.89 +3631,2025-03-07T10:48:31.428254-08:00,0.0,10.720029,10720.029 +3632,2025-03-07T10:48:42.148183-08:00,0.0,10.719929,10719.929 +3633,2025-03-07T10:48:52.871187-08:00,0.0,10.723004,10723.004 +3634,2025-03-07T10:49:03.602142-08:00,0.0,10.730955,10730.955 +3635,2025-03-07T10:49:14.314635-08:00,0.0,10.712493,10712.493 +3636,2025-03-07T10:49:25.043139-08:00,0.0,10.728504,10728.504 +3637,2025-03-07T10:49:35.767302-08:00,0.0,10.724163,10724.163 +3638,2025-03-07T10:49:46.489436-08:00,0.0,10.722134,10722.134 +3639,2025-03-07T10:49:57.211335-08:00,0.0,10.721899,10721.899 +3640,2025-03-07T10:50:07.940216-08:00,0.0,10.728881,10728.881 +3641,2025-03-07T10:50:18.660209-08:00,0.0,10.719993,10719.993 +3642,2025-03-07T10:50:29.389165-08:00,0.0,10.728956,10728.956 +3643,2025-03-07T10:50:40.106327-08:00,0.0,10.717162,10717.162 +3644,2025-03-07T10:50:50.836139-08:00,0.0,10.729812,10729.812 +3645,2025-03-07T10:51:01.564341-08:00,0.0,10.728202,10728.202 +3646,2025-03-07T10:51:12.282821-08:00,0.0,10.71848,10718.48 +3647,2025-03-07T10:51:23.013148-08:00,0.0,10.730327,10730.327 +3648,2025-03-07T10:51:33.728644-08:00,0.0,10.715496,10715.496 +3649,2025-03-07T10:51:44.461140-08:00,0.0,10.732496,10732.496 +3650,2025-03-07T10:51:55.182237-08:00,0.0,10.721097,10721.097 +3651,2025-03-07T10:52:05.910143-08:00,0.0,10.727906,10727.906 +3652,2025-03-07T10:52:16.685002-08:00,0.0,10.774859,10774.859 +3653,2025-03-07T10:52:27.402505-08:00,0.0,10.717503,10717.503 +3654,2025-03-07T10:52:38.132919-08:00,0.0,10.730414,10730.414 +3655,2025-03-07T10:52:48.852530-08:00,0.0,10.719611,10719.611 +3656,2025-03-07T10:52:59.577716-08:00,0.0,10.725186,10725.186 +3657,2025-03-07T10:53:10.304682-08:00,0.0,10.726966,10726.966 +3658,2025-03-07T10:53:21.026506-08:00,0.0,10.721824,10721.824 +3659,2025-03-07T10:53:31.756714-08:00,0.0,10.730208,10730.208 +3660,2025-03-07T10:53:42.483501-08:00,0.0,10.726787,10726.787 +3661,2025-03-07T10:53:53.204734-08:00,0.0,10.721233,10721.233 +3662,2025-03-07T10:54:03.929505-08:00,0.0,10.724771,10724.771 +3663,2025-03-07T10:54:14.650715-08:00,0.0,10.72121,10721.21 +3664,2025-03-07T10:54:25.386210-08:00,0.0,10.735495,10735.495 +3665,2025-03-07T10:54:36.100617-08:00,0.0,10.714407,10714.407 +3666,2025-03-07T10:54:46.833017-08:00,0.0,10.7324,10732.4 +3667,2025-03-07T10:54:57.556577-08:00,0.0,10.72356,10723.56 +3668,2025-03-07T10:55:08.280884-08:00,0.0,10.724307,10724.307 +3669,2025-03-07T10:55:19.009258-08:00,0.0,10.728374,10728.374 +3670,2025-03-07T10:55:29.733736-08:00,0.0,10.724478,10724.478 +3671,2025-03-07T10:55:40.465719-08:00,0.0,10.731983,10731.983 +3672,2025-03-07T10:55:51.187508-08:00,0.0,10.721789,10721.789 +3673,2025-03-07T10:56:01.908695-08:00,0.0,10.721187,10721.187 +3674,2025-03-07T10:56:12.634502-08:00,0.0,10.725807,10725.807 +3675,2025-03-07T10:56:23.365559-08:00,0.0,10.731057,10731.057 +3676,2025-03-07T10:56:34.088507-08:00,0.0,10.722948,10722.948 +3677,2025-03-07T10:56:44.811713-08:00,0.0,10.723206,10723.206 +3678,2025-03-07T10:56:55.529629-08:00,0.0,10.717916,10717.916 +3679,2025-03-07T10:57:06.258573-08:00,0.0,10.728944,10728.944 +3680,2025-03-07T10:57:16.992102-08:00,0.0,10.733529,10733.529 +3681,2025-03-07T10:57:27.709550-08:00,0.0,10.717448,10717.448 +3682,2025-03-07T10:57:38.437503-08:00,0.0,10.727953,10727.953 +3683,2025-03-07T10:57:49.164640-08:00,0.0,10.727137,10727.137 +3684,2025-03-07T10:57:59.890190-08:00,0.0,10.72555,10725.55 +3685,2025-03-07T10:58:10.611577-08:00,0.0,10.721387,10721.387 +3686,2025-03-07T10:58:21.336577-08:00,0.0,10.725,10725.0 +3687,2025-03-07T10:58:32.062917-08:00,0.0,10.72634,10726.34 +3688,2025-03-07T10:58:42.789504-08:00,0.0,10.726587,10726.587 +3689,2025-03-07T10:58:53.512764-08:00,0.0,10.72326,10723.26 +3690,2025-03-07T10:59:04.239507-08:00,0.0,10.726743,10726.743 +3691,2025-03-07T10:59:14.963608-08:00,0.0,10.724101,10724.101 +3692,2025-03-07T10:59:25.692609-08:00,0.0,10.729001,10729.001 +3693,2025-03-07T10:59:36.412708-08:00,0.0,10.720099,10720.099 +3694,2025-03-07T10:59:47.132711-08:00,0.0,10.720003,10720.003 +3695,2025-03-07T10:59:57.857536-08:00,0.0,10.724825,10724.825 +3696,2025-03-07T11:00:08.584698-08:00,0.0,10.727162,10727.162 +3697,2025-03-07T11:00:19.303570-08:00,0.0,10.718872,10718.872 +3698,2025-03-07T11:00:30.033350-08:00,0.0,10.72978,10729.78 +3699,2025-03-07T11:00:40.757597-08:00,0.0,10.724247,10724.247 +3700,2025-03-07T11:00:51.479591-08:00,0.0,10.721994,10721.994 +3701,2025-03-07T11:01:02.200801-08:00,0.0,10.72121,10721.21 +3702,2025-03-07T11:01:12.923725-08:00,0.0,10.722924,10722.924 +3703,2025-03-07T11:01:23.645505-08:00,0.0,10.72178,10721.78 +3704,2025-03-07T11:01:34.366526-08:00,0.0,10.721021,10721.021 +3705,2025-03-07T11:01:45.093504-08:00,0.0,10.726978,10726.978 +3706,2025-03-07T11:01:55.813727-08:00,0.0,10.720223,10720.223 +3707,2025-03-07T11:02:06.528506-08:00,0.0,10.714779,10714.779 +3708,2025-03-07T11:02:17.258011-08:00,0.0,10.729505,10729.505 +3709,2025-03-07T11:02:27.982720-08:00,0.0,10.724709,10724.709 +3710,2025-03-07T11:02:38.700689-08:00,0.0,10.717969,10717.969 +3711,2025-03-07T11:02:49.423647-08:00,0.0,10.722958,10722.958 +3712,2025-03-07T11:03:00.150689-08:00,0.0,10.727042,10727.042 +3713,2025-03-07T11:03:10.871818-08:00,0.0,10.721129,10721.129 +3714,2025-03-07T11:03:21.594817-08:00,0.0,10.722999,10722.999 +3715,2025-03-07T11:03:32.318525-08:00,0.0,10.723708,10723.708 +3716,2025-03-07T11:03:43.044506-08:00,0.0,10.725981,10725.981 +3717,2025-03-07T11:03:53.769674-08:00,0.0,10.725168,10725.168 +3718,2025-03-07T11:04:04.493506-08:00,0.0,10.723832,10723.832 +3719,2025-03-07T11:04:15.216692-08:00,0.0,10.723186,10723.186 +3720,2025-03-07T11:04:25.945766-08:00,0.0,10.729074,10729.074 +3721,2025-03-07T11:04:36.665506-08:00,0.0,10.71974,10719.74 +3722,2025-03-07T11:04:47.388532-08:00,0.0,10.723026,10723.026 +3723,2025-03-07T11:04:58.108694-08:00,0.0,10.720162,10720.162 +3724,2025-03-07T11:05:08.830001-08:00,0.0,10.721307,10721.307 +3725,2025-03-07T11:05:19.551543-08:00,0.0,10.721542,10721.542 +3726,2025-03-07T11:05:30.283529-08:00,0.0,10.731986,10731.986 +3727,2025-03-07T11:05:40.999696-08:00,0.0,10.716167,10716.167 +3728,2025-03-07T11:05:51.726872-08:00,0.0,10.727176,10727.176 +3729,2025-03-07T11:06:02.454777-08:00,0.0,10.727905,10727.905 +3730,2025-03-07T11:06:13.177705-08:00,0.0,10.722928,10722.928 +3731,2025-03-07T11:06:23.905525-08:00,0.0,10.72782,10727.82 +3732,2025-03-07T11:06:34.622906-08:00,0.0,10.717381,10717.381 +3733,2025-03-07T11:06:45.358506-08:00,0.0,10.7356,10735.6 +3734,2025-03-07T11:06:56.076507-08:00,0.0,10.718001,10718.001 +3735,2025-03-07T11:07:06.804529-08:00,0.0,10.728022,10728.022 +3736,2025-03-07T11:07:17.527532-08:00,0.0,10.723003,10723.003 +3737,2025-03-07T11:07:28.254689-08:00,0.0,10.727157,10727.157 +3738,2025-03-07T11:07:38.978507-08:00,0.0,10.723818,10723.818 +3739,2025-03-07T11:07:49.707948-08:00,0.0,10.729441,10729.441 +3740,2025-03-07T11:08:00.429505-08:00,0.0,10.721557,10721.557 +3741,2025-03-07T11:08:11.151738-08:00,0.0,10.722233,10722.233 +3742,2025-03-07T11:08:21.872570-08:00,0.0,10.720832,10720.832 +3743,2025-03-07T11:08:32.599713-08:00,0.0,10.727143,10727.143 +3744,2025-03-07T11:08:43.320501-08:00,0.0,10.720788,10720.788 +3745,2025-03-07T11:08:54.047708-08:00,0.0,10.727207,10727.207 +3746,2025-03-07T11:09:04.768505-08:00,0.0,10.720797,10720.797 +3747,2025-03-07T11:09:15.494887-08:00,0.0,10.726382,10726.382 +3748,2025-03-07T11:09:26.220715-08:00,0.0,10.725828,10725.828 +3749,2025-03-07T11:09:36.938505-08:00,0.0,10.71779,10717.79 +3750,2025-03-07T11:09:47.667672-08:00,0.0,10.729167,10729.167 +3751,2025-03-07T11:09:58.389710-08:00,0.0,10.722038,10722.038 +3752,2025-03-07T11:10:09.115650-08:00,0.0,10.72594,10725.94 +3753,2025-03-07T11:10:19.838604-08:00,0.0,10.722954,10722.954 +3754,2025-03-07T11:10:30.564697-08:00,0.0,10.726093,10726.093 +3755,2025-03-07T11:10:41.296035-08:00,0.0,10.731338,10731.338 +3756,2025-03-07T11:10:52.012504-08:00,0.0,10.716469,10716.469 +3757,2025-03-07T11:11:02.736612-08:00,0.0,10.724108,10724.108 +3758,2025-03-07T11:11:13.460540-08:00,0.0,10.723928,10723.928 +3759,2025-03-07T11:11:24.186309-08:00,0.0,10.725769,10725.769 +3760,2025-03-07T11:11:34.907505-08:00,0.0,10.721196,10721.196 +3761,2025-03-07T11:11:45.636711-08:00,0.0,10.729206,10729.206 +3762,2025-03-07T11:11:56.358674-08:00,0.0,10.721963,10721.963 +3763,2025-03-07T11:12:07.084693-08:00,0.0,10.726019,10726.019 +3764,2025-03-07T11:12:17.805506-08:00,0.0,10.720813,10720.813 +3765,2025-03-07T11:12:28.524675-08:00,0.0,10.719169,10719.169 +3766,2025-03-07T11:12:39.260535-08:00,0.0,10.73586,10735.86 +3767,2025-03-07T11:12:49.983507-08:00,0.0,10.722972,10722.972 +3768,2025-03-07T11:13:00.710688-08:00,0.0,10.727181,10727.181 +3769,2025-03-07T11:13:11.425507-08:00,0.0,10.714819,10714.819 +3770,2025-03-07T11:13:22.157916-08:00,0.0,10.732409,10732.409 +3771,2025-03-07T11:13:32.877569-08:00,0.0,10.719653,10719.653 +3772,2025-03-07T11:13:43.604764-08:00,0.0,10.727195,10727.195 +3773,2025-03-07T11:13:54.327583-08:00,0.0,10.722819,10722.819 +3774,2025-03-07T11:14:05.053720-08:00,0.0,10.726137,10726.137 +3775,2025-03-07T11:14:15.782531-08:00,0.0,10.728811,10728.811 +3776,2025-03-07T11:14:26.496692-08:00,0.0,10.714161,10714.161 +3777,2025-03-07T11:14:37.229801-08:00,0.0,10.733109,10733.109 +3778,2025-03-07T11:14:47.953505-08:00,0.0,10.723704,10723.704 +3779,2025-03-07T11:14:58.679691-08:00,0.0,10.726186,10726.186 +3780,2025-03-07T11:15:09.401507-08:00,0.0,10.721816,10721.816 +3781,2025-03-07T11:15:20.128833-08:00,0.0,10.727326,10727.326 +3782,2025-03-07T11:15:30.853505-08:00,0.0,10.724672,10724.672 +3783,2025-03-07T11:15:41.577508-08:00,0.0,10.724003,10724.003 +3784,2025-03-07T11:15:52.304699-08:00,0.0,10.727191,10727.191 +3785,2025-03-07T11:16:03.036611-08:00,0.0,10.731912,10731.912 +3786,2025-03-07T11:16:13.764922-08:00,0.0,10.728311,10728.311 +3787,2025-03-07T11:16:24.487506-08:00,0.0,10.722584,10722.584 +3788,2025-03-07T11:16:35.215607-08:00,0.0,10.728101,10728.101 +3789,2025-03-07T11:16:45.945727-08:00,0.0,10.73012,10730.12 +3790,2025-03-07T11:16:56.672506-08:00,0.0,10.726779,10726.779 +3791,2025-03-07T11:17:07.396600-08:00,0.0,10.724094,10724.094 +3792,2025-03-07T11:17:18.129535-08:00,0.0,10.732935,10732.935 +3793,2025-03-07T11:17:28.850508-08:00,0.0,10.720973,10720.973 +3794,2025-03-07T11:17:39.574532-08:00,0.0,10.724024,10724.024 +3795,2025-03-07T11:17:50.296653-08:00,0.0,10.722121,10722.121 +3796,2025-03-07T11:18:01.021675-08:00,0.0,10.725022,10725.022 +3797,2025-03-07T11:18:11.756309-08:00,0.0,10.734634,10734.634 +3798,2025-03-07T11:18:22.482509-08:00,0.0,10.7262,10726.2 +3799,2025-03-07T11:18:33.209583-08:00,0.0,10.727074,10727.074 +3800,2025-03-07T11:18:43.927223-08:00,0.0,10.71764,10717.64 +3801,2025-03-07T11:18:54.650807-08:00,0.0,10.723584,10723.584 +3802,2025-03-07T11:19:05.380580-08:00,0.0,10.729773,10729.773 +3803,2025-03-07T11:19:16.109906-08:00,0.0,10.729326,10729.326 +3804,2025-03-07T11:19:26.833882-08:00,0.0,10.723976,10723.976 +3805,2025-03-07T11:19:37.554748-08:00,0.0,10.720866,10720.866 +3806,2025-03-07T11:19:48.287703-08:00,0.0,10.732955,10732.955 +3807,2025-03-07T11:19:59.014582-08:00,0.0,10.726879,10726.879 +3808,2025-03-07T11:20:09.733698-08:00,0.0,10.719116,10719.116 +3809,2025-03-07T11:20:20.464755-08:00,0.0,10.731057,10731.057 +3810,2025-03-07T11:20:31.184677-08:00,0.0,10.719922,10719.922 +3811,2025-03-07T11:20:41.913507-08:00,0.0,10.72883,10728.83 +3812,2025-03-07T11:20:52.633577-08:00,0.0,10.72007,10720.07 +3813,2025-03-07T11:21:03.363689-08:00,0.0,10.730112,10730.112 +3814,2025-03-07T11:21:14.088509-08:00,0.0,10.72482,10724.82 +3815,2025-03-07T11:21:24.819883-08:00,0.0,10.731374,10731.374 +3816,2025-03-07T11:21:35.549505-08:00,0.0,10.729622,10729.622 +3817,2025-03-07T11:21:46.273507-08:00,0.0,10.724002,10724.002 +3818,2025-03-07T11:21:56.991584-08:00,0.0,10.718077,10718.077 +3819,2025-03-07T11:22:07.725592-08:00,0.0,10.734008,10734.008 +3820,2025-03-07T11:22:18.447185-08:00,0.0,10.721593,10721.593 +3821,2025-03-07T11:22:29.174507-08:00,0.0,10.727322,10727.322 +3822,2025-03-07T11:22:39.895682-08:00,0.0,10.721175,10721.175 +3823,2025-03-07T11:22:50.622627-08:00,0.0,10.726945,10726.945 +3824,2025-03-07T11:23:01.346369-08:00,0.0,10.723742,10723.742 +3825,2025-03-07T11:23:12.072711-08:00,0.0,10.726342,10726.342 +3826,2025-03-07T11:23:22.799508-08:00,0.0,10.726797,10726.797 +3827,2025-03-07T11:23:33.529697-08:00,0.0,10.730189,10730.189 +3828,2025-03-07T11:23:44.246565-08:00,0.0,10.716868,10716.868 +3829,2025-03-07T11:23:54.977690-08:00,0.0,10.731125,10731.125 +3830,2025-03-07T11:24:05.698505-08:00,0.0,10.720815,10720.815 +3831,2025-03-07T11:24:16.432507-08:00,0.0,10.734002,10734.002 +3832,2025-03-07T11:24:27.157112-08:00,0.0,10.724605,10724.605 +3833,2025-03-07T11:24:37.880507-08:00,0.0,10.723395,10723.395 +3834,2025-03-07T11:24:48.616414-08:00,0.0,10.735907,10735.907 +3835,2025-03-07T11:24:59.342504-08:00,0.0,10.72609,10726.09 +3836,2025-03-07T11:25:10.068507-08:00,0.0,10.726003,10726.003 +3837,2025-03-07T11:25:20.788508-08:00,0.0,10.720001,10720.001 +3838,2025-03-07T11:25:31.519746-08:00,0.0,10.731238,10731.238 +3839,2025-03-07T11:25:42.243694-08:00,0.0,10.723948,10723.948 +3840,2025-03-07T11:25:52.977638-08:00,0.0,10.733944,10733.944 +3841,2025-03-07T11:26:03.698720-08:00,0.0,10.721082,10721.082 +3842,2025-03-07T11:26:14.426529-08:00,0.0,10.727809,10727.809 +3843,2025-03-07T11:26:25.150508-08:00,0.0,10.723979,10723.979 +3844,2025-03-07T11:26:35.876355-08:00,0.0,10.725847,10725.847 +3845,2025-03-07T11:26:46.605500-08:00,0.0,10.729145,10729.145 +3846,2025-03-07T11:26:57.330555-08:00,0.0,10.725055,10725.055 +3847,2025-03-07T11:27:08.057507-08:00,0.0,10.726952,10726.952 +3848,2025-03-07T11:27:18.787504-08:00,0.0,10.729997,10729.997 +3849,2025-03-07T11:27:29.512413-08:00,0.0,10.724909,10724.909 +3850,2025-03-07T11:27:40.242507-08:00,0.0,10.730094,10730.094 +3851,2025-03-07T11:27:50.968545-08:00,0.0,10.726038,10726.038 +3852,2025-03-07T11:28:01.699862-08:00,0.0,10.731317,10731.317 +3853,2025-03-07T11:28:12.424509-08:00,0.0,10.724647,10724.647 +3854,2025-03-07T11:28:23.147102-08:00,0.0,10.722593,10722.593 +3855,2025-03-07T11:28:33.874509-08:00,0.0,10.727407,10727.407 +3856,2025-03-07T11:28:44.600649-08:00,0.0,10.72614,10726.14 +3857,2025-03-07T11:28:55.325967-08:00,0.0,10.725318,10725.318 +3858,2025-03-07T11:29:06.055571-08:00,0.0,10.729604,10729.604 +3859,2025-03-07T11:29:16.784675-08:00,0.0,10.729104,10729.104 +3860,2025-03-07T11:29:27.504711-08:00,0.0,10.720036,10720.036 +3861,2025-03-07T11:29:38.239508-08:00,0.0,10.734797,10734.797 +3862,2025-03-07T11:29:48.965682-08:00,0.0,10.726174,10726.174 +3863,2025-03-07T11:29:59.689508-08:00,0.0,10.723826,10723.826 +3864,2025-03-07T11:30:10.414183-08:00,0.0,10.724675,10724.675 +3865,2025-03-07T11:30:21.135582-08:00,0.0,10.721399,10721.399 +3866,2025-03-07T11:30:31.861944-08:00,0.0,10.726362,10726.362 +3867,2025-03-07T11:30:42.592576-08:00,0.0,10.730632,10730.632 +3868,2025-03-07T11:30:53.315733-08:00,0.0,10.723157,10723.157 +3869,2025-03-07T11:31:04.051044-08:00,0.0,10.735311,10735.311 +3870,2025-03-07T11:31:14.768503-08:00,0.0,10.717459,10717.459 +3871,2025-03-07T11:31:25.501673-08:00,0.0,10.73317,10733.17 +3872,2025-03-07T11:31:36.224710-08:00,0.0,10.723037,10723.037 +3873,2025-03-07T11:31:46.949740-08:00,0.0,10.72503,10725.03 +3874,2025-03-07T11:31:57.678505-08:00,0.0,10.728765,10728.765 +3875,2025-03-07T11:32:08.409678-08:00,0.0,10.731173,10731.173 +3876,2025-03-07T11:32:19.138661-08:00,0.0,10.728983,10728.983 +3877,2025-03-07T11:32:29.859508-08:00,0.0,10.720847,10720.847 +3878,2025-03-07T11:32:40.588507-08:00,0.0,10.728999,10728.999 +3879,2025-03-07T11:32:51.314526-08:00,0.0,10.726019,10726.019 +3880,2025-03-07T11:33:02.050504-08:00,0.0,10.735978,10735.978 +3881,2025-03-07T11:33:12.775529-08:00,0.0,10.725025,10725.025 +3882,2025-03-07T11:33:23.504630-08:00,0.0,10.729101,10729.101 +3883,2025-03-07T11:33:34.229508-08:00,0.0,10.724878,10724.878 +3884,2025-03-07T11:33:44.953970-08:00,0.0,10.724462,10724.462 +3885,2025-03-07T11:33:55.685504-08:00,0.0,10.731534,10731.534 +3886,2025-03-07T11:34:06.411534-08:00,0.0,10.72603,10726.03 +3887,2025-03-07T11:34:17.140533-08:00,0.0,10.728999,10728.999 +3888,2025-03-07T11:34:27.858899-08:00,0.0,10.718366,10718.366 +3889,2025-03-07T11:34:38.584668-08:00,0.0,10.725769,10725.769 +3890,2025-03-07T11:34:49.321048-08:00,0.0,10.73638,10736.38 +3891,2025-03-07T11:35:00.047722-08:00,0.0,10.726674,10726.674 +3892,2025-03-07T11:35:10.765506-08:00,0.0,10.717784,10717.784 +3893,2025-03-07T11:35:21.496709-08:00,0.0,10.731203,10731.203 +3894,2025-03-07T11:35:32.223866-08:00,0.0,10.727157,10727.157 +3895,2025-03-07T11:35:42.951506-08:00,0.0,10.72764,10727.64 +3896,2025-03-07T11:35:53.671693-08:00,0.0,10.720187,10720.187 +3897,2025-03-07T11:36:04.401111-08:00,0.0,10.729418,10729.418 +3898,2025-03-07T11:36:15.123094-08:00,0.0,10.721983,10721.983 +3899,2025-03-07T11:36:25.860819-08:00,0.0,10.737725,10737.725 +3900,2025-03-07T11:36:36.581508-08:00,0.0,10.720689,10720.689 +3901,2025-03-07T11:36:47.314843-08:00,0.0,10.733335,10733.335 +3902,2025-03-07T11:36:58.033504-08:00,0.0,10.718661,10718.661 +3903,2025-03-07T11:37:08.763703-08:00,0.0,10.730199,10730.199 +3904,2025-03-07T11:37:19.487504-08:00,0.0,10.723801,10723.801 +3905,2025-03-07T11:37:30.218603-08:00,0.0,10.731099,10731.099 +3906,2025-03-07T11:37:40.940964-08:00,0.0,10.722361,10722.361 +3907,2025-03-07T11:37:51.669692-08:00,0.0,10.728728,10728.728 +3908,2025-03-07T11:38:02.399936-08:00,0.0,10.730244,10730.244 +3909,2025-03-07T11:38:13.121571-08:00,0.0,10.721635,10721.635 +3910,2025-03-07T11:38:23.853507-08:00,0.0,10.731936,10731.936 +3911,2025-03-07T11:38:34.574137-08:00,0.0,10.72063,10720.63 +3912,2025-03-07T11:38:45.295755-08:00,0.0,10.721618,10721.618 +3913,2025-03-07T11:38:56.026262-08:00,0.0,10.730507,10730.507 +3914,2025-03-07T11:39:06.751645-08:00,0.0,10.725383,10725.383 +3915,2025-03-07T11:39:17.473504-08:00,0.0,10.721859,10721.859 +3916,2025-03-07T11:39:28.193708-08:00,0.0,10.720204,10720.204 +3917,2025-03-07T11:39:38.919720-08:00,0.0,10.726012,10726.012 +3918,2025-03-07T11:39:49.645274-08:00,0.0,10.725554,10725.554 +3919,2025-03-07T11:40:00.373709-08:00,0.0,10.728435,10728.435 +3920,2025-03-07T11:40:11.097709-08:00,0.0,10.724,10724.0 +3921,2025-03-07T11:40:21.821509-08:00,0.0,10.7238,10723.8 +3922,2025-03-07T11:40:32.555918-08:00,0.0,10.734409,10734.409 +3923,2025-03-07T11:40:43.282502-08:00,0.0,10.726584,10726.584 +3924,2025-03-07T11:40:54.009691-08:00,0.0,10.727189,10727.189 +3925,2025-03-07T11:41:04.731314-08:00,0.0,10.721623,10721.623 +3926,2025-03-07T11:41:15.453714-08:00,0.0,10.7224,10722.4 +3927,2025-03-07T11:41:26.185031-08:00,0.0,10.731317,10731.317 +3928,2025-03-07T11:41:36.904505-08:00,0.0,10.719474,10719.474 +3929,2025-03-07T11:41:47.640508-08:00,0.0,10.736003,10736.003 +3930,2025-03-07T11:41:58.363091-08:00,0.0,10.722583,10722.583 +3931,2025-03-07T11:42:09.080719-08:00,0.0,10.717628,10717.628 +3932,2025-03-07T11:42:19.811281-08:00,0.0,10.730562,10730.562 +3933,2025-03-07T11:42:30.527504-08:00,0.0,10.716223,10716.223 +3934,2025-03-07T11:42:41.257899-08:00,0.0,10.730395,10730.395 +3935,2025-03-07T11:42:51.980505-08:00,0.0,10.722606,10722.606 +3936,2025-03-07T11:43:02.702687-08:00,0.0,10.722182,10722.182 +3937,2025-03-07T11:43:13.432064-08:00,0.0,10.729377,10729.377 +3938,2025-03-07T11:43:24.153510-08:00,0.0,10.721446,10721.446 +3939,2025-03-07T11:43:34.880939-08:00,0.0,10.727429,10727.429 +3940,2025-03-07T11:43:45.606509-08:00,0.0,10.72557,10725.57 +3941,2025-03-07T11:43:56.335669-08:00,0.0,10.72916,10729.16 +3942,2025-03-07T11:44:07.063470-08:00,0.0,10.727801,10727.801 +3943,2025-03-07T11:44:17.791534-08:00,0.0,10.728064,10728.064 +3944,2025-03-07T11:44:28.518026-08:00,0.0,10.726492,10726.492 +3945,2025-03-07T11:44:39.238686-08:00,0.0,10.72066,10720.66 +3946,2025-03-07T11:44:49.968627-08:00,0.0,10.729941,10729.941 +3947,2025-03-07T11:45:00.687157-08:00,0.0,10.71853,10718.53 +3948,2025-03-07T11:45:11.416683-08:00,0.0,10.729526,10729.526 +3949,2025-03-07T11:45:22.138507-08:00,0.0,10.721824,10721.824 +3950,2025-03-07T11:45:32.861885-08:00,0.0,10.723378,10723.378 +3951,2025-03-07T11:45:43.584581-08:00,0.0,10.722696,10722.696 +3952,2025-03-07T11:45:54.302697-08:00,0.0,10.718116,10718.116 +3953,2025-03-07T11:46:05.033507-08:00,0.0,10.73081,10730.81 +3954,2025-03-07T11:46:15.751873-08:00,0.0,10.718366,10718.366 +3955,2025-03-07T11:46:26.489734-08:00,0.0,10.737861,10737.861 +3956,2025-03-07T11:46:37.209241-08:00,0.0,10.719507,10719.507 +3957,2025-03-07T11:46:47.932952-08:00,0.0,10.723711,10723.711 +3958,2025-03-07T11:46:58.656822-08:00,0.0,10.72387,10723.87 +3959,2025-03-07T11:47:09.389705-08:00,0.0,10.732883,10732.883 +3960,2025-03-07T11:47:20.104508-08:00,0.0,10.714803,10714.803 +3961,2025-03-07T11:47:30.832576-08:00,0.0,10.728068,10728.068 +3962,2025-03-07T11:47:41.559715-08:00,0.0,10.727139,10727.139 +3963,2025-03-07T11:47:52.285612-08:00,0.0,10.725897,10725.897 +3964,2025-03-07T11:48:03.021948-08:00,0.0,10.736336,10736.336 +3965,2025-03-07T11:48:13.743713-08:00,0.0,10.721765,10721.765 +3966,2025-03-07T11:48:24.475541-08:00,0.0,10.731828,10731.828 +3967,2025-03-07T11:48:35.198527-08:00,0.0,10.722986,10722.986 +3968,2025-03-07T11:48:45.927666-08:00,0.0,10.729139,10729.139 +3969,2025-03-07T11:48:56.652683-08:00,0.0,10.725017,10725.017 +3970,2025-03-07T11:49:07.379580-08:00,0.0,10.726897,10726.897 +3971,2025-03-07T11:49:18.113508-08:00,0.0,10.733928,10733.928 +3972,2025-03-07T11:49:28.837835-08:00,0.0,10.724327,10724.327 +3973,2025-03-07T11:49:39.560501-08:00,0.0,10.722666,10722.666 +3974,2025-03-07T11:49:50.293705-08:00,0.0,10.733204,10733.204 +3975,2025-03-07T11:50:01.022773-08:00,0.0,10.729068,10729.068 +3976,2025-03-07T11:50:11.753505-08:00,0.0,10.730732,10730.732 +3977,2025-03-07T11:50:22.480724-08:00,0.0,10.727219,10727.219 +3978,2025-03-07T11:50:33.203714-08:00,0.0,10.72299,10722.99 +3979,2025-03-07T11:50:43.939576-08:00,0.0,10.735862,10735.862 +3980,2025-03-07T11:50:54.668669-08:00,0.0,10.729093,10729.093 +3981,2025-03-07T11:51:05.389704-08:00,0.0,10.721035,10721.035 +3982,2025-03-07T11:51:16.119526-08:00,0.0,10.729822,10729.822 +3983,2025-03-07T11:51:26.850059-08:00,0.0,10.730533,10730.533 +3984,2025-03-07T11:51:37.570691-08:00,0.0,10.720632,10720.632 +3985,2025-03-07T11:51:48.303687-08:00,0.0,10.732996,10732.996 +3986,2025-03-07T11:51:59.025507-08:00,0.0,10.72182,10721.82 +3987,2025-03-07T11:52:09.758710-08:00,0.0,10.733203,10733.203 +3988,2025-03-07T11:52:20.485699-08:00,0.0,10.726989,10726.989 +3989,2025-03-07T11:52:31.221836-08:00,0.0,10.736137,10736.137 +3990,2025-03-07T11:52:41.945566-08:00,0.0,10.72373,10723.73 +3991,2025-03-07T11:52:52.678567-08:00,0.0,10.733001,10733.001 +3992,2025-03-07T11:53:03.398544-08:00,0.0,10.719977,10719.977 +3993,2025-03-07T11:53:14.129738-08:00,0.0,10.731194,10731.194 +3994,2025-03-07T11:53:24.857541-08:00,0.0,10.727803,10727.803 +3995,2025-03-07T11:53:35.583788-08:00,0.0,10.726247,10726.247 +3996,2025-03-07T11:53:46.307543-08:00,0.0,10.723755,10723.755 +3997,2025-03-07T11:53:57.039614-08:00,0.0,10.732071,10732.071 +3998,2025-03-07T11:54:07.767719-08:00,0.0,10.728105,10728.105 +3999,2025-03-07T11:54:18.496544-08:00,0.0,10.728825,10728.825 +4000,2025-03-07T11:54:29.222924-08:00,0.0,10.72638,10726.38 +4001,2025-03-07T11:54:39.956708-08:00,0.0,10.733784,10733.784 +4002,2025-03-07T11:54:50.678567-08:00,0.0,10.721859,10721.859 +4003,2025-03-07T11:55:01.404914-08:00,0.0,10.726347,10726.347 +4004,2025-03-07T11:55:12.134542-08:00,0.0,10.729628,10729.628 +4005,2025-03-07T11:55:22.857727-08:00,0.0,10.723185,10723.185 +4006,2025-03-07T11:55:33.579847-08:00,0.0,10.72212,10722.12 +4007,2025-03-07T11:55:44.307541-08:00,0.0,10.727694,10727.694 +4008,2025-03-07T11:55:55.036718-08:00,0.0,10.729177,10729.177 +4009,2025-03-07T11:56:05.763539-08:00,0.0,10.726821,10726.821 +4010,2025-03-07T11:56:16.490740-08:00,0.0,10.727201,10727.201 +4011,2025-03-07T11:56:27.215541-08:00,0.0,10.724801,10724.801 +4012,2025-03-07T11:56:37.939546-08:00,0.0,10.724005,10724.005 +4013,2025-03-07T11:56:48.660895-08:00,0.0,10.721349,10721.349 +4014,2025-03-07T11:56:59.389542-08:00,0.0,10.728647,10728.647 +4015,2025-03-07T11:57:10.123207-08:00,0.0,10.733665,10733.665 +4016,2025-03-07T11:57:20.839544-08:00,0.0,10.716337,10716.337 +4017,2025-03-07T11:57:31.567546-08:00,0.0,10.728002,10728.002 +4018,2025-03-07T11:57:42.290613-08:00,0.0,10.723067,10723.067 +4019,2025-03-07T11:57:53.015725-08:00,0.0,10.725112,10725.112 +4020,2025-03-07T11:58:03.741751-08:00,0.0,10.726026,10726.026 +4021,2025-03-07T11:58:14.469684-08:00,0.0,10.727933,10727.933 +4022,2025-03-07T11:58:25.196714-08:00,0.0,10.72703,10727.03 +4023,2025-03-07T11:58:35.913540-08:00,0.0,10.716826,10716.826 +4024,2025-03-07T11:58:46.644362-08:00,0.0,10.730822,10730.822 +4025,2025-03-07T11:58:57.372314-08:00,0.0,10.727952,10727.952 +4026,2025-03-07T11:59:08.096544-08:00,0.0,10.72423,10724.23 +4027,2025-03-07T11:59:18.816144-08:00,0.0,10.7196,10719.6 +4028,2025-03-07T11:59:29.547539-08:00,0.0,10.731395,10731.395 +4029,2025-03-07T11:59:40.270958-08:00,0.0,10.723419,10723.419 +4030,2025-03-07T11:59:50.995751-08:00,0.0,10.724793,10724.793 +4031,2025-03-07T12:00:01.726721-08:00,0.0,10.73097,10730.97 +4032,2025-03-07T12:00:12.450543-08:00,0.0,10.723822,10723.822 +4033,2025-03-07T12:00:23.185746-08:00,0.0,10.735203,10735.203 +4034,2025-03-07T12:00:33.907718-08:00,0.0,10.721972,10721.972 +4035,2025-03-07T12:00:44.633541-08:00,0.0,10.725823,10725.823 +4036,2025-03-07T12:00:55.359551-08:00,0.0,10.72601,10726.01 +4037,2025-03-07T12:01:06.082905-08:00,0.0,10.723354,10723.354 +4038,2025-03-07T12:01:16.814749-08:00,0.0,10.731844,10731.844 +4039,2025-03-07T12:01:27.534541-08:00,0.0,10.719792,10719.792 +4040,2025-03-07T12:01:38.266777-08:00,0.0,10.732236,10732.236 +4041,2025-03-07T12:01:48.994562-08:00,0.0,10.727785,10727.785 +4042,2025-03-07T12:01:59.716541-08:00,0.0,10.721979,10721.979 +4043,2025-03-07T12:02:10.441714-08:00,0.0,10.725173,10725.173 +4044,2025-03-07T12:02:21.169569-08:00,0.0,10.727855,10727.855 +4045,2025-03-07T12:02:31.891544-08:00,0.0,10.721975,10721.975 +4046,2025-03-07T12:02:42.614599-08:00,0.0,10.723055,10723.055 +4047,2025-03-07T12:02:53.343750-08:00,0.0,10.729151,10729.151 +4048,2025-03-07T12:03:04.072738-08:00,0.0,10.728988,10728.988 +4049,2025-03-07T12:03:14.793543-08:00,0.0,10.720805,10720.805 +4050,2025-03-07T12:03:25.520756-08:00,0.0,10.727213,10727.213 +4051,2025-03-07T12:03:36.246563-08:00,0.0,10.725807,10725.807 +4052,2025-03-07T12:03:46.979573-08:00,0.0,10.73301,10733.01 +4053,2025-03-07T12:03:57.695353-08:00,0.0,10.71578,10715.78 +4054,2025-03-07T12:04:08.429541-08:00,0.0,10.734188,10734.188 +4055,2025-03-07T12:04:19.151613-08:00,0.0,10.722072,10722.072 +4056,2025-03-07T12:04:29.880871-08:00,0.0,10.729258,10729.258 +4057,2025-03-07T12:04:40.606739-08:00,0.0,10.725868,10725.868 +4058,2025-03-07T12:04:51.328682-08:00,0.0,10.721943,10721.943 +4059,2025-03-07T12:05:02.060575-08:00,0.0,10.731893,10731.893 +4060,2025-03-07T12:05:12.779736-08:00,0.0,10.719161,10719.161 +4061,2025-03-07T12:05:23.511539-08:00,0.0,10.731803,10731.803 +4062,2025-03-07T12:05:34.241713-08:00,0.0,10.730174,10730.174 +4063,2025-03-07T12:05:44.969721-08:00,0.0,10.728008,10728.008 +4064,2025-03-07T12:05:55.696544-08:00,0.0,10.726823,10726.823 +4065,2025-03-07T12:06:06.420837-08:00,0.0,10.724293,10724.293 +4066,2025-03-07T12:06:17.158483-08:00,0.0,10.737646,10737.646 +4067,2025-03-07T12:06:27.881540-08:00,0.0,10.723057,10723.057 +4068,2025-03-07T12:06:38.605918-08:00,0.0,10.724378,10724.378 +4069,2025-03-07T12:06:49.338541-08:00,0.0,10.732623,10732.623 +4070,2025-03-07T12:07:00.068544-08:00,0.0,10.730003,10730.003 +4071,2025-03-07T12:07:10.803727-08:00,0.0,10.735183,10735.183 +4072,2025-03-07T12:07:21.525542-08:00,0.0,10.721815,10721.815 +4073,2025-03-07T12:07:32.259786-08:00,0.0,10.734244,10734.244 +4074,2025-03-07T12:07:42.989728-08:00,0.0,10.729942,10729.942 +4075,2025-03-07T12:07:53.721544-08:00,0.0,10.731816,10731.816 +4076,2025-03-07T12:08:04.449542-08:00,0.0,10.727998,10727.998 +4077,2025-03-07T12:08:15.181753-08:00,0.0,10.732211,10732.211 +4078,2025-03-07T12:08:25.905745-08:00,0.0,10.723992,10723.992 +4079,2025-03-07T12:08:36.641542-08:00,0.0,10.735797,10735.797 +4080,2025-03-07T12:08:47.372709-08:00,0.0,10.731167,10731.167 +4081,2025-03-07T12:08:58.100539-08:00,0.0,10.72783,10727.83 +4082,2025-03-07T12:09:08.822627-08:00,0.0,10.722088,10722.088 +4083,2025-03-07T12:09:19.550575-08:00,0.0,10.727948,10727.948 +4084,2025-03-07T12:09:30.287541-08:00,0.0,10.736966,10736.966 +4085,2025-03-07T12:09:41.017718-08:00,0.0,10.730177,10730.177 +4086,2025-03-07T12:09:51.733547-08:00,0.0,10.715829,10715.829 +4087,2025-03-07T12:10:02.465544-08:00,0.0,10.731997,10731.997 +4088,2025-03-07T12:10:13.198737-08:00,0.0,10.733193,10733.193 +4089,2025-03-07T12:10:23.917755-08:00,0.0,10.719018,10719.018 +4090,2025-03-07T12:10:34.651835-08:00,0.0,10.73408,10734.08 +4091,2025-03-07T12:10:45.380543-08:00,0.0,10.728708,10728.708 +4092,2025-03-07T12:10:56.109536-08:00,0.0,10.728993,10728.993 +4093,2025-03-07T12:11:06.833676-08:00,0.0,10.72414,10724.14 +4094,2025-03-07T12:11:17.568997-08:00,0.0,10.735321,10735.321 +4095,2025-03-07T12:11:28.295542-08:00,0.0,10.726545,10726.545 +4096,2025-03-07T12:11:39.023716-08:00,0.0,10.728174,10728.174 +4097,2025-03-07T12:11:49.745731-08:00,0.0,10.722015,10722.015 +4098,2025-03-07T12:12:00.471700-08:00,0.0,10.725969,10725.969 +4099,2025-03-07T12:12:11.198541-08:00,0.0,10.726841,10726.841 +4100,2025-03-07T12:12:21.928916-08:00,0.0,10.730375,10730.375 +4101,2025-03-07T12:12:32.661646-08:00,0.0,10.73273,10732.73 +4102,2025-03-07T12:12:43.384542-08:00,0.0,10.722896,10722.896 +4103,2025-03-07T12:12:54.108556-08:00,0.0,10.724014,10724.014 +4104,2025-03-07T12:13:04.831616-08:00,0.0,10.72306,10723.06 +4105,2025-03-07T12:13:15.561633-08:00,0.0,10.730017,10730.017 +4106,2025-03-07T12:13:26.292694-08:00,0.0,10.731061,10731.061 +4107,2025-03-07T12:13:37.012752-08:00,0.0,10.720058,10720.058 +4108,2025-03-07T12:13:47.737720-08:00,0.0,10.724968,10724.968 +4109,2025-03-07T12:13:58.467544-08:00,0.0,10.729824,10729.824 +4110,2025-03-07T12:14:09.193953-08:00,0.0,10.726409,10726.409 +4111,2025-03-07T12:14:19.925725-08:00,0.0,10.731772,10731.772 +4112,2025-03-07T12:14:30.644656-08:00,0.0,10.718931,10718.931 +4113,2025-03-07T12:14:41.378690-08:00,0.0,10.734034,10734.034 +4114,2025-03-07T12:14:52.108696-08:00,0.0,10.730006,10730.006 +4115,2025-03-07T12:15:02.838096-08:00,0.0,10.7294,10729.4 +4116,2025-03-07T12:15:13.569086-08:00,0.0,10.73099,10730.99 +4117,2025-03-07T12:15:24.302542-08:00,0.0,10.733456,10733.456 +4118,2025-03-07T12:15:35.021725-08:00,0.0,10.719183,10719.183 +4119,2025-03-07T12:15:45.753797-08:00,0.0,10.732072,10732.072 +4120,2025-03-07T12:15:56.486573-08:00,0.0,10.732776,10732.776 +4121,2025-03-07T12:16:07.211953-08:00,0.0,10.72538,10725.38 +4122,2025-03-07T12:16:17.936539-08:00,0.0,10.724586,10724.586 +4123,2025-03-07T12:16:28.662610-08:00,0.0,10.726071,10726.071 +4124,2025-03-07T12:16:39.397547-08:00,0.0,10.734937,10734.937 +4125,2025-03-07T12:16:50.118539-08:00,0.0,10.720992,10720.992 +4126,2025-03-07T12:17:00.844947-08:00,0.0,10.726408,10726.408 +4127,2025-03-07T12:17:11.571542-08:00,0.0,10.726595,10726.595 +4128,2025-03-07T12:17:22.306538-08:00,0.0,10.734996,10734.996 +4129,2025-03-07T12:17:33.035955-08:00,0.0,10.729417,10729.417 +4130,2025-03-07T12:17:43.764734-08:00,0.0,10.728779,10728.779 +4131,2025-03-07T12:17:54.488236-08:00,0.0,10.723502,10723.502 +4132,2025-03-07T12:18:05.223727-08:00,0.0,10.735491,10735.491 +4133,2025-03-07T12:18:15.948823-08:00,0.0,10.725096,10725.096 +4134,2025-03-07T12:18:26.678538-08:00,0.0,10.729715,10729.715 +4135,2025-03-07T12:18:37.402567-08:00,0.0,10.724029,10724.029 +4136,2025-03-07T12:18:48.137885-08:00,0.0,10.735318,10735.318 +4137,2025-03-07T12:18:58.856786-08:00,0.0,10.718901,10718.901 +4138,2025-03-07T12:19:09.583736-08:00,0.0,10.72695,10726.95 +4139,2025-03-07T12:19:31.040747-08:00,0.0,21.457011,21457.011 +4140,2025-03-07T12:19:41.773543-08:00,0.0,10.732796,10732.796 +4141,2025-03-07T12:19:52.496941-08:00,0.0,10.723398,10723.398 +4142,2025-03-07T12:20:03.224685-08:00,0.0,10.727744,10727.744 +4143,2025-03-07T12:20:13.963117-08:00,0.0,10.738432,10738.432 +4144,2025-03-07T12:20:24.683826-08:00,0.0,10.720709,10720.709 +4145,2025-03-07T12:20:35.421736-08:00,0.0,10.73791,10737.91 +4146,2025-03-07T12:20:46.140571-08:00,0.0,10.718835,10718.835 +4147,2025-03-07T12:20:56.874074-08:00,0.0,10.733503,10733.503 +4148,2025-03-07T12:21:07.598566-08:00,0.0,10.724492,10724.492 +4149,2025-03-07T12:21:18.332755-08:00,0.0,10.734189,10734.189 +4150,2025-03-07T12:21:29.053391-08:00,0.0,10.720636,10720.636 +4151,2025-03-07T12:21:39.779545-08:00,0.0,10.726154,10726.154 +4152,2025-03-07T12:21:50.519933-08:00,0.0,10.740388,10740.388 +4153,2025-03-07T12:22:01.240575-08:00,0.0,10.720642,10720.642 +4154,2025-03-07T12:22:11.967543-08:00,0.0,10.726968,10726.968 +4155,2025-03-07T12:22:22.706756-08:00,0.0,10.739213,10739.213 +4156,2025-03-07T12:22:33.429782-08:00,0.0,10.723026,10723.026 +4157,2025-03-07T12:22:44.160544-08:00,0.0,10.730762,10730.762 +4158,2025-03-07T12:22:54.888920-08:00,0.0,10.728376,10728.376 +4159,2025-03-07T12:23:05.621543-08:00,0.0,10.732623,10732.623 +4160,2025-03-07T12:23:16.355544-08:00,0.0,10.734001,10734.001 +4161,2025-03-07T12:23:27.080969-08:00,0.0,10.725425,10725.425 +4162,2025-03-07T12:23:37.803541-08:00,0.0,10.722572,10722.572 +4163,2025-03-07T12:23:48.532762-08:00,0.0,10.729221,10729.221 +4164,2025-03-07T12:23:59.256543-08:00,0.0,10.723781,10723.781 +4165,2025-03-07T12:24:09.986573-08:00,0.0,10.73003,10730.03 +4166,2025-03-07T12:24:20.719616-08:00,0.0,10.733043,10733.043 +4167,2025-03-07T12:24:31.441633-08:00,0.0,10.722017,10722.017 +4168,2025-03-07T12:24:42.175609-08:00,0.0,10.733976,10733.976 +4169,2025-03-07T12:25:03.621544-08:00,0.0,21.445935,21445.935 +4170,2025-03-07T12:25:14.349726-08:00,0.0,10.728182,10728.182 +4171,2025-03-07T12:25:25.084566-08:00,0.0,10.73484,10734.84 +4172,2025-03-07T12:25:35.815749-08:00,0.0,10.731183,10731.183 +4173,2025-03-07T12:25:46.538732-08:00,0.0,10.722983,10722.983 +4174,2025-03-07T12:25:57.274543-08:00,0.0,10.735811,10735.811 +4175,2025-03-07T12:26:07.994754-08:00,0.0,10.720211,10720.211 +4176,2025-03-07T12:26:18.731737-08:00,0.0,10.736983,10736.983 +4177,2025-03-07T12:26:29.450546-08:00,0.0,10.718809,10718.809 +4178,2025-03-07T12:26:40.179285-08:00,0.0,10.728739,10728.739 +4179,2025-03-07T12:26:50.915152-08:00,0.0,10.735867,10735.867 +4180,2025-03-07T12:27:01.635572-08:00,0.0,10.72042,10720.42 +4181,2025-03-07T12:27:12.364934-08:00,0.0,10.729362,10729.362 +4182,2025-03-07T12:27:23.090541-08:00,0.0,10.725607,10725.607 +4183,2025-03-07T12:27:33.815729-08:00,0.0,10.725188,10725.188 +4184,2025-03-07T12:27:44.552612-08:00,0.0,10.736883,10736.883 +4185,2025-03-07T12:27:55.275682-08:00,0.0,10.72307,10723.07 +4186,2025-03-07T12:28:06.006622-08:00,0.0,10.73094,10730.94 +4187,2025-03-07T12:28:16.741348-08:00,0.0,10.734726,10734.726 +4188,2025-03-07T12:28:27.461542-08:00,0.0,10.720194,10720.194 +4189,2025-03-07T12:28:38.199734-08:00,0.0,10.738192,10738.192 +4190,2025-03-07T12:28:48.922537-08:00,0.0,10.722803,10722.803 +4191,2025-03-07T12:28:59.657544-08:00,0.0,10.735007,10735.007 +4192,2025-03-07T12:29:10.381738-08:00,0.0,10.724194,10724.194 +4193,2025-03-07T12:29:21.106541-08:00,0.0,10.724803,10724.803 +4194,2025-03-07T12:29:31.833740-08:00,0.0,10.727199,10727.199 +4195,2025-03-07T12:29:31.833740-08:00,0.0,0.0,0.0 +4196,2025-03-07T12:29:42.565540-08:00,0.0,10.7318,10731.8 +4197,2025-03-07T12:29:53.297540-08:00,0.0,10.732,10732.0 +4198,2025-03-07T12:30:04.026748-08:00,0.0,10.729208,10729.208 +4199,2025-03-07T12:30:14.755567-08:00,0.0,10.728819,10728.819 +4200,2025-03-07T12:30:25.479544-08:00,0.0,10.723977,10723.977 +4201,2025-03-07T12:30:36.216758-08:00,0.0,10.737214,10737.214 +4202,2025-03-07T12:30:46.938612-08:00,0.0,10.721854,10721.854 +4203,2025-03-07T12:30:57.669711-08:00,0.0,10.731099,10731.099 +4204,2025-03-07T12:31:08.401720-08:00,0.0,10.732009,10732.009 +4205,2025-03-07T12:31:19.124574-08:00,0.0,10.722854,10722.854 +4206,2025-03-07T12:31:29.856962-08:00,0.0,10.732388,10732.388 +4207,2025-03-07T12:31:40.576541-08:00,0.0,10.719579,10719.579 +4208,2025-03-07T12:31:51.307763-08:00,0.0,10.731222,10731.222 +4209,2025-03-07T12:32:02.034714-08:00,0.0,10.726951,10726.951 +4210,2025-03-07T12:32:12.765543-08:00,0.0,10.730829,10730.829 +4211,2025-03-07T12:32:23.489226-08:00,0.0,10.723683,10723.683 +4212,2025-03-07T12:32:34.213543-08:00,0.0,10.724317,10724.317 +4213,2025-03-07T12:32:44.938544-08:00,0.0,10.725001,10725.001 +4214,2025-03-07T12:32:55.671721-08:00,0.0,10.733177,10733.177 +4215,2025-03-07T12:33:06.400536-08:00,0.0,10.728815,10728.815 +4216,2025-03-07T12:33:17.127729-08:00,0.0,10.727193,10727.193 +4217,2025-03-07T12:33:27.855552-08:00,0.0,10.727823,10727.823 +4218,2025-03-07T12:33:38.575753-08:00,0.0,10.720201,10720.201 +4219,2025-03-07T12:33:49.303732-08:00,0.0,10.727979,10727.979 +4220,2025-03-07T12:34:00.025572-08:00,0.0,10.72184,10721.84 +4221,2025-03-07T12:34:10.751689-08:00,0.0,10.726117,10726.117 +4222,2025-03-07T12:34:21.477743-08:00,0.0,10.726054,10726.054 +4223,2025-03-07T12:34:32.201543-08:00,0.0,10.7238,10723.8 +4224,2025-03-07T12:34:42.934565-08:00,0.0,10.733022,10733.022 +4225,2025-03-07T12:34:53.659748-08:00,0.0,10.725183,10725.183 +4226,2025-03-07T12:35:04.390731-08:00,0.0,10.730983,10730.983 +4227,2025-03-07T12:35:15.112550-08:00,0.0,10.721819,10721.819 +4228,2025-03-07T12:35:25.845538-08:00,0.0,10.732988,10732.988 +4229,2025-03-07T12:35:36.580616-08:00,0.0,10.735078,10735.078 +4230,2025-03-07T12:35:47.301544-08:00,0.0,10.720928,10720.928 +4231,2025-03-07T12:35:58.027146-08:00,0.0,10.725602,10725.602 +4232,2025-03-07T12:36:08.763733-08:00,0.0,10.736587,10736.587 +4233,2025-03-07T12:36:19.483544-08:00,0.0,10.719811,10719.811 +4234,2025-03-07T12:36:30.212730-08:00,0.0,10.729186,10729.186 +4235,2025-03-07T12:36:40.945793-08:00,0.0,10.733063,10733.063 +4236,2025-03-07T12:36:51.675748-08:00,0.0,10.729955,10729.955 +4237,2025-03-07T12:37:02.402703-08:00,0.0,10.726955,10726.955 +4238,2025-03-07T12:37:13.124543-08:00,0.0,10.72184,10721.84 +4239,2025-03-07T12:37:23.855614-08:00,0.0,10.731071,10731.071 +4240,2025-03-07T12:37:34.584565-08:00,0.0,10.728951,10728.951 +4241,2025-03-07T12:37:45.313569-08:00,0.0,10.729004,10729.004 +4242,2025-03-07T12:37:56.035729-08:00,0.0,10.72216,10722.16 +4243,2025-03-07T12:38:06.766539-08:00,0.0,10.73081,10730.81 +4244,2025-03-07T12:38:17.495635-08:00,0.0,10.729096,10729.096 +4245,2025-03-07T12:38:28.222717-08:00,0.0,10.727082,10727.082 +4246,2025-03-07T12:38:38.954543-08:00,0.0,10.731826,10731.826 +4247,2025-03-07T12:38:49.671719-08:00,0.0,10.717176,10717.176 +4248,2025-03-07T12:39:00.399543-08:00,0.0,10.727824,10727.824 +4249,2025-03-07T12:39:11.132542-08:00,0.0,10.732999,10732.999 +4250,2025-03-07T12:39:21.856017-08:00,0.0,10.723475,10723.475 +4251,2025-03-07T12:39:32.586744-08:00,0.0,10.730727,10730.727 +4252,2025-03-07T12:39:43.316751-08:00,0.0,10.730007,10730.007 +4253,2025-03-07T12:39:54.042543-08:00,0.0,10.725792,10725.792 +4254,2025-03-07T12:40:04.765536-08:00,0.0,10.722993,10722.993 +4255,2025-03-07T12:40:15.492875-08:00,0.0,10.727339,10727.339 +4256,2025-03-07T12:40:26.226726-08:00,0.0,10.733851,10733.851 +4257,2025-03-07T12:40:36.948744-08:00,0.0,10.722018,10722.018 +4258,2025-03-07T12:40:47.681562-08:00,0.0,10.732818,10732.818 +4259,2025-03-07T12:40:58.410864-08:00,0.0,10.729302,10729.302 +4260,2025-03-07T12:41:09.131819-08:00,0.0,10.720955,10720.955 +4261,2025-03-07T12:41:19.861541-08:00,0.0,10.729722,10729.722 +4262,2025-03-07T12:41:30.585755-08:00,0.0,10.724214,10724.214 +4263,2025-03-07T12:41:41.314540-08:00,0.0,10.728785,10728.785 +4264,2025-03-07T12:41:52.043614-08:00,0.0,10.729074,10729.074 +4265,2025-03-07T12:42:02.759740-08:00,0.0,10.716126,10716.126 +4266,2025-03-07T12:42:13.490574-08:00,0.0,10.730834,10730.834 +4267,2025-03-07T12:42:24.211752-08:00,0.0,10.721178,10721.178 +4268,2025-03-07T12:42:34.938543-08:00,0.0,10.726791,10726.791 +4269,2025-03-07T12:42:45.665755-08:00,0.0,10.727212,10727.212 +4270,2025-03-07T12:42:56.393564-08:00,0.0,10.727809,10727.809 +4271,2025-03-07T12:43:07.116544-08:00,0.0,10.72298,10722.98 +4272,2025-03-07T12:43:17.839375-08:00,0.0,10.722831,10722.831 +4273,2025-03-07T12:43:28.566541-08:00,0.0,10.727166,10727.166 +4274,2025-03-07T12:43:39.291744-08:00,0.0,10.725203,10725.203 +4275,2025-03-07T12:43:50.015543-08:00,0.0,10.723799,10723.799 +4276,2025-03-07T12:44:00.751542-08:00,0.0,10.735999,10735.999 +4277,2025-03-07T12:44:11.481036-08:00,0.0,10.729494,10729.494 +4278,2025-03-07T12:44:22.198547-08:00,0.0,10.717511,10717.511 +4279,2025-03-07T12:44:32.927733-08:00,0.0,10.729186,10729.186 +4280,2025-03-07T12:44:43.660568-08:00,0.0,10.732835,10732.835 +4281,2025-03-07T12:44:54.381764-08:00,0.0,10.721196,10721.196 +4282,2025-03-07T12:45:05.111600-08:00,0.0,10.729836,10729.836 +4283,2025-03-07T12:45:15.837543-08:00,0.0,10.725943,10725.943 +4284,2025-03-07T12:45:26.570744-08:00,0.0,10.733201,10733.201 +4285,2025-03-07T12:45:37.295990-08:00,0.0,10.725246,10725.246 +4286,2025-03-07T12:45:48.020628-08:00,0.0,10.724638,10724.638 +4287,2025-03-07T12:45:58.752880-08:00,0.0,10.732252,10732.252 +4288,2025-03-07T12:46:09.470541-08:00,0.0,10.717661,10717.661 +4289,2025-03-07T12:46:20.206575-08:00,0.0,10.736034,10736.034 +4290,2025-03-07T12:46:30.924770-08:00,0.0,10.718195,10718.195 +4291,2025-03-07T12:46:41.657605-08:00,0.0,10.732835,10732.835 +4292,2025-03-07T12:46:52.382418-08:00,0.0,10.724813,10724.813 +4293,2025-03-07T12:47:03.113743-08:00,0.0,10.731325,10731.325 +4294,2025-03-07T12:47:13.837542-08:00,0.0,10.723799,10723.799 +4295,2025-03-07T12:47:24.570757-08:00,0.0,10.733215,10733.215 +4296,2025-03-07T12:47:35.286731-08:00,0.0,10.715974,10715.974 +4297,2025-03-07T12:47:46.020731-08:00,0.0,10.734,10734.0 +4298,2025-03-07T12:47:56.745589-08:00,0.0,10.724858,10724.858 +4299,2025-03-07T12:48:07.477750-08:00,0.0,10.732161,10732.161 +4300,2025-03-07T12:48:18.197571-08:00,0.0,10.719821,10719.821 +4301,2025-03-07T12:48:28.921078-08:00,0.0,10.723507,10723.507 +4302,2025-03-07T12:48:39.651875-08:00,0.0,10.730797,10730.797 +4303,2025-03-07T12:48:50.375010-08:00,0.0,10.723135,10723.135 +4304,2025-03-07T12:49:01.100740-08:00,0.0,10.72573,10725.73 +4305,2025-03-07T12:49:11.828745-08:00,0.0,10.728005,10728.005 +4306,2025-03-07T12:49:22.552969-08:00,0.0,10.724224,10724.224 +4307,2025-03-07T12:49:33.285923-08:00,0.0,10.732954,10732.954 +4308,2025-03-07T12:49:44.011544-08:00,0.0,10.725621,10725.621 +4309,2025-03-07T12:49:54.731937-08:00,0.0,10.720393,10720.393 +4310,2025-03-07T12:50:05.461559-08:00,0.0,10.729622,10729.622 +4311,2025-03-07T12:50:16.191800-08:00,0.0,10.730241,10730.241 +4312,2025-03-07T12:50:26.915751-08:00,0.0,10.723951,10723.951 +4313,2025-03-07T12:50:37.638623-08:00,0.0,10.722872,10722.872 +4314,2025-03-07T12:50:48.369715-08:00,0.0,10.731092,10731.092 +4315,2025-03-07T12:50:59.095571-08:00,0.0,10.725856,10725.856 +4316,2025-03-07T12:51:09.826709-08:00,0.0,10.731138,10731.138 +4317,2025-03-07T12:51:20.557734-08:00,0.0,10.731025,10731.025 +4318,2025-03-07T12:51:31.275543-08:00,0.0,10.717809,10717.809 +4319,2025-03-07T12:51:42.011561-08:00,0.0,10.736018,10736.018 +4320,2025-03-07T12:51:52.742038-08:00,0.0,10.730477,10730.477 +4321,2025-03-07T12:52:03.472818-08:00,0.0,10.73078,10730.78 +4322,2025-03-07T12:52:14.201315-08:00,0.0,10.728497,10728.497 +4323,2025-03-07T12:52:24.965670-08:00,0.0,10.764355,10764.355 +4324,2025-03-07T12:52:35.697049-08:00,0.0,10.731379,10731.379 +4325,2025-03-07T12:52:46.420909-08:00,0.0,10.72386,10723.86 +4326,2025-03-07T12:52:57.152671-08:00,0.0,10.731762,10731.762 +4327,2025-03-07T12:53:07.887670-08:00,0.0,10.734999,10734.999 +4328,2025-03-07T12:53:18.611848-08:00,0.0,10.724178,10724.178 +4329,2025-03-07T12:53:29.341742-08:00,0.0,10.729894,10729.894 +4330,2025-03-07T12:53:40.075669-08:00,0.0,10.733927,10733.927 +4331,2025-03-07T12:53:50.796690-08:00,0.0,10.721021,10721.021 +4332,2025-03-07T12:54:01.532106-08:00,0.0,10.735416,10735.416 +4333,2025-03-07T12:54:12.265207-08:00,0.0,10.733101,10733.101 +4334,2025-03-07T12:54:23.001888-08:00,0.0,10.736681,10736.681 +4335,2025-03-07T12:54:33.726696-08:00,0.0,10.724808,10724.808 +4336,2025-03-07T12:54:44.463671-08:00,0.0,10.736975,10736.975 +4337,2025-03-07T12:54:55.196667-08:00,0.0,10.732996,10732.996 +4338,2025-03-07T12:55:05.925879-08:00,0.0,10.729212,10729.212 +4339,2025-03-07T12:55:16.658212-08:00,0.0,10.732333,10732.333 +4340,2025-03-07T12:55:27.389669-08:00,0.0,10.731457,10731.457 +4341,2025-03-07T12:55:38.121242-08:00,0.0,10.731573,10731.573 +4342,2025-03-07T12:55:48.857669-08:00,0.0,10.736427,10736.427 +4343,2025-03-07T12:55:59.587672-08:00,0.0,10.730003,10730.003 +4344,2025-03-07T12:56:10.320888-08:00,0.0,10.733216,10733.216 +4345,2025-03-07T12:56:21.050672-08:00,0.0,10.729784,10729.784 +4346,2025-03-07T12:56:31.776923-08:00,0.0,10.726251,10726.251 +4347,2025-03-07T12:56:42.506834-08:00,0.0,10.729911,10729.911 +4348,2025-03-07T12:56:53.252771-08:00,0.0,10.745937,10745.937 +4349,2025-03-07T12:57:03.978913-08:00,0.0,10.726142,10726.142 +4350,2025-03-07T12:57:14.717913-08:00,0.0,10.739,10739.0 +4351,2025-03-07T12:57:25.451840-08:00,0.0,10.733927,10733.927 +4352,2025-03-07T12:57:36.183694-08:00,0.0,10.731854,10731.854 +4353,2025-03-07T12:57:46.924676-08:00,0.0,10.740982,10740.982 +4354,2025-03-07T12:57:57.657673-08:00,0.0,10.732997,10732.997 +4355,2025-03-07T12:58:08.388849-08:00,0.0,10.731176,10731.176 +4356,2025-03-07T12:58:19.130179-08:00,0.0,10.74133,10741.33 +4357,2025-03-07T12:58:29.854989-08:00,0.0,10.72481,10724.81 +4358,2025-03-07T12:58:40.592415-08:00,0.0,10.737426,10737.426 +4359,2025-03-07T12:58:51.335665-08:00,0.0,10.74325,10743.25 +4360,2025-03-07T12:59:02.059740-08:00,423.0,10.724075,10724.075 +4361,2025-03-07T12:59:11.781541-08:00,462.0,9.721801,9721.801 +4362,2025-03-07T12:59:12.796676-08:00,459.0,1.015135,1015.135 +4363,2025-03-07T12:59:23.537839-08:00,462.0,10.741163,10741.163 +4364,2025-03-07T12:59:34.277987-08:00,272.0,10.740148,10740.148 +4365,2025-03-07T12:59:45.009868-08:00,393.0,10.731881,10731.881 +4366,2025-03-07T12:59:55.743672-08:00,304.0,10.733804,10733.804 +4367,2025-03-07T13:00:06.472980-08:00,0.0,10.729308,10729.308 +4368,2025-03-07T13:00:17.209748-08:00,0.0,10.736768,10736.768 +4369,2025-03-07T13:00:27.949072-08:00,0.0,10.739324,10739.324 +4370,2025-03-07T13:00:38.681671-08:00,0.0,10.732599,10732.599 +4371,2025-03-07T13:00:49.423101-08:00,0.0,10.74143,10741.43 +4372,2025-03-07T13:01:00.153897-08:00,0.0,10.730796,10730.796 +4373,2025-03-07T13:01:10.880928-08:00,0.0,10.727031,10727.031 +4374,2025-03-07T13:01:21.621666-08:00,0.0,10.740738,10740.738 +4375,2025-03-07T13:01:32.351765-08:00,0.0,10.730099,10730.099 +4376,2025-03-07T13:01:43.089887-08:00,0.0,10.738122,10738.122 +4377,2025-03-07T13:01:53.820786-08:00,0.0,10.730899,10730.899 +4378,2025-03-07T13:02:04.562966-08:00,0.0,10.74218,10742.18 +4379,2025-03-07T13:02:15.295667-08:00,0.0,10.732701,10732.701 +4380,2025-03-07T13:02:26.036936-08:00,0.0,10.741269,10741.269 +4381,2025-03-07T13:02:36.770036-08:00,0.0,10.7331,10733.1 +4382,2025-03-07T13:02:47.510614-08:00,0.0,10.740578,10740.578 +4383,2025-03-07T13:02:58.242668-08:00,0.0,10.732054,10732.054 +4384,2025-03-07T13:03:08.981716-08:00,0.0,10.739048,10739.048 +4385,2025-03-07T13:03:19.718670-08:00,0.0,10.736954,10736.954 +4386,2025-03-07T13:03:30.445698-08:00,0.0,10.727028,10727.028 +4387,2025-03-07T13:03:41.184891-08:00,0.0,10.739193,10739.193 +4388,2025-03-07T13:03:51.917852-08:00,0.0,10.732961,10732.961 +4389,2025-03-07T13:04:02.651865-08:00,0.0,10.734013,10734.013 +4390,2025-03-07T13:04:13.391927-08:00,0.0,10.740062,10740.062 +4391,2025-03-07T13:04:24.135978-08:00,0.0,10.744051,10744.051 +4392,2025-03-07T13:04:34.869673-08:00,0.0,10.733695,10733.695 +4393,2025-03-07T13:04:45.601680-08:00,0.0,10.732007,10732.007 +4394,2025-03-07T13:04:56.340665-08:00,0.0,10.738985,10738.985 +4395,2025-03-07T13:05:07.078009-08:00,0.0,10.737344,10737.344 +4396,2025-03-07T13:05:17.808535-08:00,0.0,10.730526,10730.526 +4397,2025-03-07T13:05:28.549734-08:00,0.0,10.741199,10741.199 +4398,2025-03-07T13:05:39.281042-08:00,0.0,10.731308,10731.308 +4399,2025-03-07T13:05:50.015036-08:00,0.0,10.733994,10733.994 +4400,2025-03-07T13:06:00.753673-08:00,0.0,10.738637,10738.637 +4401,2025-03-07T13:06:11.494670-08:00,0.0,10.740997,10740.997 +4402,2025-03-07T13:06:22.224673-08:00,0.0,10.730003,10730.003 +4403,2025-03-07T13:06:32.957855-08:00,0.0,10.733182,10733.182 +4404,2025-03-07T13:06:43.693700-08:00,0.0,10.735845,10735.845 +4405,2025-03-07T13:06:54.434846-08:00,0.0,10.741146,10741.146 +4406,2025-03-07T13:07:05.168675-08:00,0.0,10.733829,10733.829 +4407,2025-03-07T13:07:15.901773-08:00,0.0,10.733098,10733.098 +4408,2025-03-07T13:07:26.637222-08:00,0.0,10.735449,10735.449 +4409,2025-03-07T13:07:37.380668-08:00,0.0,10.743446,10743.446 +4410,2025-03-07T13:07:48.111131-08:00,0.0,10.730463,10730.463 +4411,2025-03-07T13:07:58.849665-08:00,0.0,10.738534,10738.534 +4412,2025-03-07T13:08:09.590673-08:00,0.0,10.741008,10741.008 +4413,2025-03-07T13:08:20.324320-08:00,0.0,10.733647,10733.647 +4414,2025-03-07T13:08:31.070852-08:00,0.0,10.746532,10746.532 +4415,2025-03-07T13:08:41.808671-08:00,0.0,10.737819,10737.819 +4416,2025-03-07T13:08:52.546676-08:00,0.0,10.738005,10738.005 +4417,2025-03-07T13:09:03.287780-08:00,0.0,10.741104,10741.104 +4418,2025-03-07T13:09:14.027854-08:00,0.0,10.740074,10740.074 +4419,2025-03-07T13:09:24.760035-08:00,0.0,10.732181,10732.181 +4420,2025-03-07T13:09:35.506176-08:00,0.0,10.746141,10746.141 +4421,2025-03-07T13:09:46.242794-08:00,0.0,10.736618,10736.618 +4422,2025-03-07T13:09:56.979720-08:00,0.0,10.736926,10736.926 +4423,2025-03-07T13:10:07.720665-08:00,0.0,10.740945,10740.945 +4424,2025-03-07T13:10:18.460674-08:00,0.0,10.740009,10740.009 +4425,2025-03-07T13:10:29.200882-08:00,0.0,10.740208,10740.208 +4426,2025-03-07T13:10:39.933813-08:00,0.0,10.732931,10732.931 +4427,2025-03-07T13:10:50.672895-08:00,0.0,10.739082,10739.082 +4428,2025-03-07T13:11:01.414133-08:00,0.0,10.741238,10741.238 +4429,2025-03-07T13:11:12.150087-08:00,0.0,10.735954,10735.954 +4430,2025-03-07T13:11:22.880133-08:00,0.0,10.730046,10730.046 +4431,2025-03-07T13:11:33.615680-08:00,0.0,10.735547,10735.547 +4432,2025-03-07T13:11:44.356671-08:00,0.0,10.740991,10740.991 +4433,2025-03-07T13:11:55.098700-08:00,0.0,10.742029,10742.029 +4434,2025-03-07T13:12:05.835741-08:00,0.0,10.737041,10737.041 +4435,2025-03-07T13:12:16.571914-08:00,0.0,10.736173,10736.173 +4436,2025-03-07T13:12:27.301673-08:00,0.0,10.729759,10729.759 +4437,2025-03-07T13:12:38.040708-08:00,0.0,10.739035,10739.035 +4438,2025-03-07T13:12:48.783727-08:00,0.0,10.743019,10743.019 +4439,2025-03-07T13:12:58.915409-08:00,0.0,10.131682,10131.682 +4440,2025-03-07T13:12:59.515377-08:00,0.0,0.599968,599.968 +4441,2025-03-07T13:13:10.257859-08:00,0.0,10.742482,10742.482 +4442,2025-03-07T13:13:20.998699-08:00,0.0,10.74084,10740.84 +4443,2025-03-07T13:13:31.738668-08:00,0.0,10.739969,10739.969 +4444,2025-03-07T13:13:42.473673-08:00,0.0,10.735005,10735.005 +4445,2025-03-07T13:13:53.215671-08:00,320.0,10.741998,10741.998 +4446,2025-03-07T13:14:03.949752-08:00,422.0,10.734081,10734.081 +4447,2025-03-07T13:14:14.693043-08:00,462.0,10.743291,10743.291 +4448,2025-03-07T13:14:25.425795-08:00,438.0,10.732752,10732.752 +4449,2025-03-07T13:14:36.165123-08:00,407.0,10.739328,10739.328 +4450,2025-03-07T13:14:46.905749-08:00,443.0,10.740626,10740.626 +4451,2025-03-07T13:14:57.647071-08:00,357.0,10.741322,10741.322 +4452,2025-03-07T13:15:08.385768-08:00,421.0,10.738697,10738.697 +4453,2025-03-07T13:15:19.119669-08:00,240.0,10.733901,10733.901 +4454,2025-03-07T13:15:29.854667-08:00,351.0,10.734998,10734.998 +4455,2025-03-07T13:15:40.600673-08:00,338.0,10.746006,10746.006 +4456,2025-03-07T13:15:51.328668-08:00,205.0,10.727995,10727.995 +4457,2025-03-07T13:16:02.076671-08:00,432.0,10.748003,10748.003 +4458,2025-03-07T13:16:12.805903-08:00,319.0,10.729232,10729.232 +4459,2025-03-07T13:16:23.545671-08:00,425.0,10.739768,10739.768 +4460,2025-03-07T13:16:34.286745-08:00,374.0,10.741074,10741.074 +4461,2025-03-07T13:16:45.021915-08:00,291.0,10.73517,10735.17 +4462,2025-03-07T13:16:55.763086-08:00,365.0,10.741171,10741.171 +4463,2025-03-07T13:17:06.492710-08:00,357.0,10.729624,10729.624 +4464,2025-03-07T13:17:17.231670-08:00,422.0,10.73896,10738.96 +4465,2025-03-07T13:17:27.977922-08:00,273.0,10.746252,10746.252 +4466,2025-03-07T13:17:38.713675-08:00,358.0,10.735753,10735.753 +4467,2025-03-07T13:17:49.445691-08:00,406.0,10.732016,10732.016 +4468,2025-03-07T13:18:00.188891-08:00,314.0,10.7432,10743.2 +4469,2025-03-07T13:18:10.928148-08:00,272.0,10.739257,10739.257 +4470,2025-03-07T13:18:21.654673-08:00,347.0,10.726525,10726.525 +4471,2025-03-07T13:18:32.400889-08:00,369.0,10.746216,10746.216 +4472,2025-03-07T13:18:43.128818-08:00,335.0,10.727929,10727.929 +4473,2025-03-07T13:18:53.867404-08:00,335.0,10.738586,10738.586 +4474,2025-03-07T13:19:04.609669-08:00,347.0,10.742265,10742.265 +4475,2025-03-07T13:19:15.346670-08:00,337.0,10.737001,10737.001 +4476,2025-03-07T13:19:26.083704-08:00,337.0,10.737034,10737.034 +4477,2025-03-07T13:19:36.815790-08:00,298.0,10.732086,10732.086 +4478,2025-03-07T13:19:47.543705-08:00,320.0,10.727915,10727.915 +4479,2025-03-07T13:19:58.289840-08:00,341.0,10.746135,10746.135 +4480,2025-03-07T13:20:09.018677-08:00,282.0,10.728837,10728.837 +4481,2025-03-07T13:20:19.750845-08:00,353.0,10.732168,10732.168 +4482,2025-03-07T13:20:30.495414-08:00,256.0,10.744569,10744.569 +4483,2025-03-07T13:20:41.228673-08:00,269.0,10.733259,10733.259 +4484,2025-03-07T13:20:51.973889-08:00,396.0,10.745216,10745.216 +4485,2025-03-07T13:21:02.712674-08:00,405.0,10.738785,10738.785 +4486,2025-03-07T13:21:13.448622-08:00,388.0,10.735948,10735.948 +4487,2025-03-07T13:21:24.190832-08:00,399.0,10.74221,10742.21 +4488,2025-03-07T13:21:34.941693-08:00,406.0,10.750861,10750.861 +4489,2025-03-07T13:21:45.673698-08:00,406.0,10.732005,10732.005 +4490,2025-03-07T13:21:56.417920-08:00,420.0,10.744222,10744.222 +4491,2025-03-07T13:22:07.158667-08:00,416.0,10.740747,10740.747 +4492,2025-03-07T13:22:17.900728-08:00,339.0,10.742061,10742.061 +4493,2025-03-07T13:22:28.642165-08:00,413.0,10.741437,10741.437 +4494,2025-03-07T13:22:39.391674-08:00,414.0,10.749509,10749.509 +4495,2025-03-07T13:22:50.134922-08:00,419.0,10.743248,10743.248 +4496,2025-03-07T13:23:00.868423-08:00,400.0,10.733501,10733.501 +4497,2025-03-07T13:23:11.616718-08:00,273.0,10.748295,10748.295 +4498,2025-03-07T13:23:22.364881-08:00,229.0,10.748163,10748.163 +4499,2025-03-07T13:23:33.104860-08:00,432.0,10.739979,10739.979 +4500,2025-03-07T13:23:43.849408-08:00,333.0,10.744548,10744.548 +4501,2025-03-07T13:23:54.583787-08:00,428.0,10.734379,10734.379 +4502,2025-03-07T13:24:05.330671-08:00,398.0,10.746884,10746.884 +4503,2025-03-07T13:24:16.063673-08:00,384.0,10.733002,10733.002 +4504,2025-03-07T13:24:26.810733-08:00,400.0,10.74706,10747.06 +4505,2025-03-07T13:24:37.551831-08:00,413.0,10.741098,10741.098 +4506,2025-03-07T13:24:48.287751-08:00,362.0,10.73592,10735.92 +4507,2025-03-07T13:24:57.767282-08:00,373.0,9.479531,9479.531 +4508,2025-03-07T13:24:59.026699-08:00,399.0,1.259417,1259.417 +4509,2025-03-07T13:25:09.765671-08:00,384.0,10.738972,10738.972 +4510,2025-03-07T13:25:20.511960-08:00,417.0,10.746289,10746.289 +4511,2025-03-07T13:25:31.249849-08:00,375.0,10.737889,10737.889 +4512,2025-03-07T13:25:41.986975-08:00,251.0,10.737126,10737.126 +4513,2025-03-07T13:25:52.740134-08:00,207.0,10.753159,10753.159 +4514,2025-03-07T13:26:03.479706-08:00,377.0,10.739572,10739.572 +4515,2025-03-07T13:26:14.225675-08:00,353.0,10.745969,10745.969 +4516,2025-03-07T13:26:24.967850-08:00,383.0,10.742175,10742.175 +4517,2025-03-07T13:26:35.706412-08:00,371.0,10.738562,10738.562 +4518,2025-03-07T13:26:46.457174-08:00,390.0,10.750762,10750.762 +4519,2025-03-07T13:26:57.197117-08:00,391.0,10.739943,10739.943 +4520,2025-03-07T13:27:07.943866-08:00,332.0,10.746749,10746.749 +4521,2025-03-07T13:27:18.694739-08:00,306.0,10.750873,10750.873 +4522,2025-03-07T13:27:29.441002-08:00,415.0,10.746263,10746.263 +4523,2025-03-07T13:27:40.189674-08:00,401.0,10.748672,10748.672 +4524,2025-03-07T13:27:50.931670-08:00,394.0,10.741996,10741.996 +4525,2025-03-07T13:28:01.682674-08:00,422.0,10.751004,10751.004 +4526,2025-03-07T13:28:12.428671-08:00,353.0,10.745997,10745.997 +4527,2025-03-07T13:28:23.172706-08:00,331.0,10.744035,10744.035 +4528,2025-03-07T13:28:33.919670-08:00,415.0,10.746964,10746.964 +4529,2025-03-07T13:28:44.664207-08:00,418.0,10.744537,10744.537 +4530,2025-03-07T13:28:55.405673-08:00,383.0,10.741466,10741.466 +4531,2025-03-07T13:29:06.157665-08:00,398.0,10.751992,10751.992 +4532,2025-03-07T13:29:16.903971-08:00,415.0,10.746306,10746.306 +4533,2025-03-07T13:29:27.655671-08:00,365.0,10.7517,10751.7 +4534,2025-03-07T13:29:38.403671-08:00,304.0,10.748,10748.0 +4535,2025-03-07T13:29:49.146680-08:00,400.0,10.743009,10743.009 +4536,2025-03-07T13:29:59.891671-08:00,403.0,10.744991,10744.991 +4537,2025-03-07T13:30:10.648877-08:00,315.0,10.757206,10757.206 +4538,2025-03-07T13:30:21.388752-08:00,387.0,10.739875,10739.875 +4539,2025-03-07T13:30:32.142670-08:00,308.0,10.753918,10753.918 +4540,2025-03-07T13:30:42.888671-08:00,427.0,10.746001,10746.001 +4541,2025-03-07T13:30:53.630670-08:00,427.0,10.741999,10741.999 +4542,2025-03-07T13:31:04.386833-08:00,420.0,10.756163,10756.163 +4543,2025-03-07T13:31:15.129870-08:00,365.0,10.743037,10743.037 +4544,2025-03-07T13:31:25.875673-08:00,435.0,10.745803,10745.803 +4545,2025-03-07T13:31:36.619813-08:00,419.0,10.74414,10744.14 +4546,2025-03-07T13:31:47.367701-08:00,367.0,10.747888,10747.888 +4547,2025-03-07T13:31:58.105676-08:00,367.0,10.737975,10737.975 +4548,2025-03-07T13:32:08.852670-08:00,410.0,10.746994,10746.994 +4549,2025-03-07T13:32:19.593890-08:00,385.0,10.74122,10741.22 +4550,2025-03-07T13:32:30.340691-08:00,384.0,10.746801,10746.801 +4551,2025-03-07T13:32:41.079078-08:00,422.0,10.738387,10738.387 +4552,2025-03-07T13:32:51.822554-08:00,295.0,10.743476,10743.476 +4553,2025-03-07T13:33:02.566192-08:00,417.0,10.743638,10743.638 +4554,2025-03-07T13:33:13.311985-08:00,294.0,10.745793,10745.793 +4555,2025-03-07T13:33:24.063526-08:00,373.0,10.751541,10751.541 +4556,2025-03-07T13:33:34.800722-08:00,311.0,10.737196,10737.196 +4557,2025-03-07T13:33:45.546801-08:00,399.0,10.746079,10746.079 +4558,2025-03-07T13:33:56.301727-08:00,429.0,10.754926,10754.926 +4559,2025-03-07T13:34:07.041157-08:00,336.0,10.73943,10739.43 +4560,2025-03-07T13:34:17.784676-08:00,291.0,10.743519,10743.519 +4561,2025-03-07T13:34:28.528715-08:00,368.0,10.744039,10744.039 +4562,2025-03-07T13:34:39.274825-08:00,343.0,10.74611,10746.11 +4563,2025-03-07T13:34:50.027063-08:00,416.0,10.752238,10752.238 +4564,2025-03-07T13:35:00.771672-08:00,418.0,10.744609,10744.609 +4565,2025-03-07T13:35:11.515761-08:00,365.0,10.744089,10744.089 +4566,2025-03-07T13:35:22.259787-08:00,414.0,10.744026,10744.026 +4567,2025-03-07T13:36:26.736509-08:00,336.0,64.476722,64476.722 +4568,2025-03-07T13:36:37.482974-08:00,399.0,10.746465,10746.465 +4569,2025-03-07T13:36:48.223861-08:00,389.0,10.740887,10740.887 +4570,2025-03-07T13:36:58.979889-08:00,361.0,10.756028,10756.028 +4571,2025-03-07T13:37:09.726407-08:00,368.0,10.746518,10746.518 +4572,2025-03-07T13:37:20.470840-08:00,302.0,10.744433,10744.433 +4573,2025-03-07T13:37:31.223889-08:00,385.0,10.753049,10753.049 +4574,2025-03-07T13:37:41.970874-08:00,393.0,10.746985,10746.985 +4575,2025-03-07T13:37:52.713863-08:00,406.0,10.742989,10742.989 +4576,2025-03-07T13:38:03.453930-08:00,398.0,10.740067,10740.067 +4577,2025-03-07T13:38:14.200512-08:00,369.0,10.746582,10746.582 +4578,2025-03-07T13:38:24.949292-08:00,289.0,10.74878,10748.78 +4579,2025-03-07T13:38:35.692670-08:00,295.0,10.743378,10743.378 +4580,2025-03-07T13:38:46.440872-08:00,340.0,10.748202,10748.202 +4581,2025-03-07T13:38:57.189802-08:00,339.0,10.74893,10748.93 +4582,2025-03-07T13:39:07.936674-08:00,411.0,10.746872,10746.872 +4583,2025-03-07T13:40:01.699854-08:00,383.0,53.76318,53763.18 +4584,2025-03-07T13:40:12.457697-08:00,305.0,10.757843,10757.843 +4585,2025-03-07T13:40:23.216875-08:00,285.0,10.759178,10759.178 +4586,2025-03-07T13:40:33.974136-08:00,350.0,10.757261,10757.261 +4587,2025-03-07T13:40:44.735749-08:00,363.0,10.761613,10761.613 +4588,2025-03-07T13:40:55.491745-08:00,385.0,10.755996,10755.996 +4589,2025-03-07T13:41:06.258911-08:00,399.0,10.767166,10767.166 +4590,2025-03-07T13:41:17.013895-08:00,370.0,10.754984,10754.984 +4591,2025-03-07T13:41:27.773887-08:00,365.0,10.759992,10759.992 +4592,2025-03-07T13:41:38.537843-08:00,358.0,10.763956,10763.956 +4593,2025-03-07T13:41:49.302825-08:00,286.0,10.764982,10764.982 +4594,2025-03-07T13:42:00.062003-08:00,390.0,10.759178,10759.178 +4595,2025-03-07T13:42:10.817738-08:00,381.0,10.755735,10755.735 +4596,2025-03-07T13:42:21.576891-08:00,396.0,10.759153,10759.153 +4597,2025-03-07T13:42:32.329676-08:00,363.0,10.752785,10752.785 +4598,2025-03-07T13:42:43.081139-08:00,335.0,10.751463,10751.463 +4599,2025-03-07T13:42:53.840669-08:00,289.0,10.75953,10759.53 +4600,2025-03-07T13:43:04.586676-08:00,325.0,10.746007,10746.007 +4601,2025-03-07T13:43:15.343186-08:00,351.0,10.75651,10756.51 +4602,2025-03-07T13:43:26.095860-08:00,391.0,10.752674,10752.674 +4603,2025-03-07T13:43:36.839266-08:00,354.0,10.743406,10743.406 +4604,2025-03-07T13:43:47.590859-08:00,359.0,10.751593,10751.593 +4605,2025-03-07T13:43:58.346481-08:00,267.0,10.755622,10755.622 +4606,2025-03-07T13:44:09.088864-08:00,278.0,10.742383,10742.383 +4607,2025-03-07T13:44:19.843703-08:00,307.0,10.754839,10754.839 +4608,2025-03-07T13:44:30.593074-08:00,336.0,10.749371,10749.371 +4609,2025-03-07T13:44:41.339769-08:00,414.0,10.746695,10746.695 +4610,2025-03-07T13:44:52.089682-08:00,349.0,10.749913,10749.913 +4611,2025-03-07T13:45:02.840702-08:00,393.0,10.75102,10751.02 +4612,2025-03-07T13:45:13.584170-08:00,365.0,10.743468,10743.468 +4613,2025-03-07T13:45:24.330877-08:00,304.0,10.746707,10746.707 +4614,2025-03-07T13:45:35.082969-08:00,299.0,10.752092,10752.092 +4615,2025-03-07T13:45:45.830856-08:00,369.0,10.747887,10747.887 +4616,2025-03-07T13:45:56.577082-08:00,377.0,10.746226,10746.226 +4617,2025-03-07T13:46:07.331806-08:00,398.0,10.754724,10754.724 +4618,2025-03-07T13:46:18.080858-08:00,365.0,10.749052,10749.052 +4619,2025-03-07T13:46:28.821779-08:00,307.0,10.740921,10740.921 +4620,2025-03-07T13:46:39.572757-08:00,407.0,10.750978,10750.978 +4621,2025-03-07T13:46:50.326842-08:00,381.0,10.754085,10754.085 +4622,2025-03-07T13:47:01.076711-08:00,402.0,10.749869,10749.869 +4623,2025-03-07T13:47:11.823749-08:00,347.0,10.747038,10747.038 +4624,2025-03-07T13:47:22.571026-08:00,405.0,10.747277,10747.277 +4625,2025-03-07T13:47:33.315728-08:00,346.0,10.744702,10744.702 +4626,2025-03-07T13:47:44.068736-08:00,348.0,10.753008,10753.008 +4627,2025-03-07T13:47:54.819675-08:00,330.0,10.750939,10750.939 +4628,2025-03-07T13:48:05.568738-08:00,393.0,10.749063,10749.063 +4629,2025-03-07T13:48:16.312889-08:00,357.0,10.744151,10744.151 +4630,2025-03-07T13:48:27.070254-08:00,371.0,10.757365,10757.365 +4631,2025-03-07T13:48:37.809911-08:00,335.0,10.739657,10739.657 +4632,2025-03-07T13:48:48.558874-08:00,336.0,10.748963,10748.963 +4633,2025-03-07T13:48:59.301727-08:00,368.0,10.742853,10742.853 +4634,2025-03-07T13:49:10.053687-08:00,283.0,10.75196,10751.96 +4635,2025-03-07T13:49:20.797742-08:00,403.0,10.744055,10744.055 +4636,2025-03-07T13:49:31.536715-08:00,383.0,10.738973,10738.973 +4637,2025-03-07T13:49:42.279679-08:00,410.0,10.742964,10742.964 +4638,2025-03-07T13:49:53.031913-08:00,371.0,10.752234,10752.234 +4639,2025-03-07T13:50:03.772120-08:00,398.0,10.740207,10740.207 +4640,2025-03-07T13:50:14.525848-08:00,383.0,10.753728,10753.728 +4641,2025-03-07T13:50:25.272874-08:00,399.0,10.747026,10747.026 +4642,2025-03-07T13:50:36.024879-08:00,350.0,10.752005,10752.005 +4643,2025-03-07T13:50:46.762878-08:00,399.0,10.737999,10737.999 +4644,2025-03-07T13:50:57.516724-08:00,399.0,10.753846,10753.846 +4645,2025-03-07T13:51:08.259857-08:00,390.0,10.743133,10743.133 +4646,2025-03-07T13:51:19.010470-08:00,367.0,10.750613,10750.613 +4647,2025-03-07T13:51:29.757048-08:00,356.0,10.746578,10746.578 +4648,2025-03-07T13:51:40.500674-08:00,429.0,10.743626,10743.626 +4649,2025-03-07T13:51:51.250862-08:00,0.0,10.750188,10750.188 +4650,2025-03-07T13:52:01.995865-08:00,0.0,10.745003,10745.003 +4651,2025-03-07T13:52:12.749670-08:00,0.0,10.753805,10753.805 +4652,2025-03-07T13:52:23.469486-08:00,0.0,10.719816,10719.816 +4653,2025-03-07T13:52:34.223328-08:00,0.0,10.753842,10753.842 +4654,2025-03-07T13:52:44.967271-08:00,0.0,10.743943,10743.943 +4655,2025-03-07T13:52:55.717479-08:00,0.0,10.750208,10750.208 +4656,2025-03-07T13:53:06.464269-08:00,0.0,10.74679,10746.79 +4657,2025-03-07T13:53:17.207746-08:00,0.0,10.743477,10743.477 +4658,2025-03-07T13:53:27.965113-08:00,0.0,10.757367,10757.367 +4659,2025-03-07T13:53:38.703889-08:00,0.0,10.738776,10738.776 +4660,2025-03-07T13:53:49.451605-08:00,0.0,10.747716,10747.716 +4661,2025-03-07T13:54:00.204559-08:00,0.0,10.752954,10752.954 +4662,2025-03-07T13:54:10.950273-08:00,0.0,10.745714,10745.714 +4663,2025-03-07T13:54:21.695279-08:00,0.0,10.745006,10745.006 +4664,2025-03-07T13:54:32.439452-08:00,0.0,10.744173,10744.173 +4665,2025-03-07T13:54:43.195577-08:00,0.0,10.756125,10756.125 +4666,2025-03-07T13:54:53.943270-08:00,0.0,10.747693,10747.693 +4667,2025-03-07T13:55:04.688456-08:00,0.0,10.745186,10745.186 +4668,2025-03-07T13:55:15.436452-08:00,0.0,10.747996,10747.996 +4669,2025-03-07T13:55:26.190275-08:00,0.0,10.753823,10753.823 +4670,2025-03-07T13:55:36.938363-08:00,0.0,10.748088,10748.088 +4671,2025-03-07T13:55:47.687281-08:00,0.0,10.748918,10748.918 +4672,2025-03-07T13:55:58.430458-08:00,0.0,10.743177,10743.177 +4673,2025-03-07T13:56:09.188484-08:00,0.0,10.758026,10758.026 +4674,2025-03-07T13:56:19.929267-08:00,0.0,10.740783,10740.783 +4675,2025-03-07T13:56:30.686270-08:00,0.0,10.757003,10757.003 +4676,2025-03-07T13:56:41.425272-08:00,0.0,10.739002,10739.002 +4677,2025-03-07T13:56:52.176274-08:00,0.0,10.751002,10751.002 +4678,2025-03-07T13:57:02.924278-08:00,0.0,10.748004,10748.004 +4679,2025-03-07T13:57:13.677319-08:00,0.0,10.753041,10753.041 +4680,2025-03-07T13:57:24.428304-08:00,0.0,10.750985,10750.985 +4681,2025-03-07T13:57:35.171270-08:00,0.0,10.742966,10742.966 +4682,2025-03-07T13:57:45.917271-08:00,0.0,10.746001,10746.001 +4683,2025-03-07T13:57:56.669361-08:00,0.0,10.75209,10752.09 +4684,2025-03-07T13:58:07.424604-08:00,0.0,10.755243,10755.243 +4685,2025-03-07T13:58:18.172465-08:00,0.0,10.747861,10747.861 +4686,2025-03-07T13:58:28.920467-08:00,0.0,10.748002,10748.002 +4687,2025-03-07T13:58:39.674602-08:00,0.0,10.754135,10754.135 +4688,2025-03-07T13:58:50.431278-08:00,0.0,10.756676,10756.676 +4689,2025-03-07T13:59:01.183276-08:00,0.0,10.751998,10751.998 +4690,2025-03-07T13:59:11.934560-08:00,0.0,10.751284,10751.284 +4691,2025-03-07T13:59:22.683436-08:00,0.0,10.748876,10748.876 +4692,2025-03-07T13:59:33.432276-08:00,0.0,10.74884,10748.84 +4693,2025-03-07T13:59:44.174271-08:00,0.0,10.741995,10741.995 +4694,2025-03-07T13:59:54.932476-08:00,0.0,10.758205,10758.205 +4695,2025-03-07T14:00:05.678481-08:00,0.0,10.746005,10746.005 +4696,2025-03-07T14:00:16.417438-08:00,0.0,10.738957,10738.957 +4697,2025-03-07T14:00:27.171343-08:00,0.0,10.753905,10753.905 +4698,2025-03-07T14:00:37.912270-08:00,0.0,10.740927,10740.927 +4699,2025-03-07T14:00:48.666269-08:00,0.0,10.753999,10753.999 +4700,2025-03-07T14:00:59.413555-08:00,0.0,10.747286,10747.286 +4701,2025-03-07T14:01:10.155271-08:00,0.0,10.741716,10741.716 +4702,2025-03-07T14:01:20.904419-08:00,0.0,10.749148,10749.148 +4703,2025-03-07T14:01:31.652273-08:00,0.0,10.747854,10747.854 +4704,2025-03-07T14:01:42.396302-08:00,0.0,10.744029,10744.029 +4705,2025-03-07T14:01:53.143487-08:00,0.0,10.747185,10747.185 +4706,2025-03-07T14:02:03.893454-08:00,0.0,10.749967,10749.967 +4707,2025-03-07T14:02:14.643274-08:00,0.0,10.74982,10749.82 +4708,2025-03-07T14:02:25.379301-08:00,0.0,10.736027,10736.027 +4709,2025-03-07T14:02:36.131269-08:00,0.0,10.751968,10751.968 +4710,2025-03-07T14:02:46.868496-08:00,0.0,10.737227,10737.227 +4711,2025-03-07T14:02:57.619352-08:00,0.0,10.750856,10750.856 +4712,2025-03-07T14:03:08.370486-08:00,0.0,10.751134,10751.134 +4713,2025-03-07T14:03:19.113548-08:00,0.0,10.743062,10743.062 +4714,2025-03-07T14:03:29.855473-08:00,0.0,10.741925,10741.925 +4715,2025-03-07T14:03:40.608446-08:00,0.0,10.752973,10752.973 +4716,2025-03-07T14:03:51.360271-08:00,0.0,10.751825,10751.825 +4717,2025-03-07T14:04:02.099663-08:00,0.0,10.739392,10739.392 +4718,2025-03-07T14:04:12.845457-08:00,0.0,10.745794,10745.794 +4719,2025-03-07T14:04:23.600448-08:00,0.0,10.754991,10754.991 +4720,2025-03-07T14:04:34.340458-08:00,0.0,10.74001,10740.01 +4721,2025-03-07T14:04:45.087490-08:00,0.0,10.747032,10747.032 +4722,2025-03-07T14:04:55.835191-08:00,0.0,10.747701,10747.701 +4723,2025-03-07T14:05:06.588511-08:00,0.0,10.75332,10753.32 +4724,2025-03-07T14:05:17.330494-08:00,0.0,10.741983,10741.983 +4725,2025-03-07T14:05:28.082419-08:00,0.0,10.751925,10751.925 +4726,2025-03-07T14:05:38.817363-08:00,0.0,10.734944,10734.944 +4727,2025-03-07T14:05:49.569551-08:00,0.0,10.752188,10752.188 +4728,2025-03-07T14:06:00.310486-08:00,0.0,10.740935,10740.935 +4729,2025-03-07T14:06:11.064335-08:00,0.0,10.753849,10753.849 +4730,2025-03-07T14:06:21.810858-08:00,0.0,10.746523,10746.523 +4731,2025-03-07T14:06:32.550272-08:00,0.0,10.739414,10739.414 +4732,2025-03-07T14:06:43.298342-08:00,0.0,10.74807,10748.07 +4733,2025-03-07T14:06:54.043273-08:00,0.0,10.744931,10744.931 +4734,2025-03-07T14:07:04.784518-08:00,0.0,10.741245,10741.245 +4735,2025-03-07T14:07:15.534292-08:00,0.0,10.749774,10749.774 +4736,2025-03-07T14:07:26.271364-08:00,0.0,10.737072,10737.072 +4737,2025-03-07T14:07:37.025590-08:00,0.0,10.754226,10754.226 +4738,2025-03-07T14:07:47.761478-08:00,0.0,10.735888,10735.888 +4739,2025-03-07T14:07:58.509461-08:00,0.0,10.747983,10747.983 +4740,2025-03-07T14:08:09.258455-08:00,0.0,10.748994,10748.994 +4741,2025-03-07T14:08:19.998521-08:00,0.0,10.740066,10740.066 +4742,2025-03-07T14:08:30.732544-08:00,0.0,10.734023,10734.023 +4743,2025-03-07T14:08:41.484507-08:00,0.0,10.751963,10751.963 +4744,2025-03-07T14:08:52.228922-08:00,0.0,10.744415,10744.415 +4745,2025-03-07T14:09:02.974294-08:00,0.0,10.745372,10745.372 +4746,2025-03-07T14:09:13.716271-08:00,0.0,10.741977,10741.977 +4747,2025-03-07T14:09:24.456345-08:00,0.0,10.740074,10740.074 +4748,2025-03-07T14:09:35.200475-08:00,0.0,10.74413,10744.13 +4749,2025-03-07T14:09:45.942271-08:00,0.0,10.741796,10741.796 +4750,2025-03-07T14:09:56.683515-08:00,0.0,10.741244,10741.244 +4751,2025-03-07T14:10:07.434271-08:00,0.0,10.750756,10750.756 +4752,2025-03-07T14:10:18.174297-08:00,0.0,10.740026,10740.026 +4753,2025-03-07T14:10:28.919340-08:00,0.0,10.745043,10745.043 +4754,2025-03-07T14:10:39.660436-08:00,0.0,10.741096,10741.096 +4755,2025-03-07T14:10:50.404052-08:00,0.0,10.743616,10743.616 +4756,2025-03-07T14:11:01.137458-08:00,0.0,10.733406,10733.406 +4757,2025-03-07T14:11:11.885513-08:00,0.0,10.748055,10748.055 +4758,2025-03-07T14:11:22.620498-08:00,0.0,10.734985,10734.985 +4759,2025-03-07T14:11:33.366603-08:00,0.0,10.746105,10746.105 +4760,2025-03-07T14:11:44.097459-08:00,0.0,10.730856,10730.856 +4761,2025-03-07T14:11:54.837448-08:00,0.0,10.739989,10739.989 +4762,2025-03-07T14:12:05.582413-08:00,0.0,10.744965,10744.965 +4763,2025-03-07T14:12:16.323544-08:00,0.0,10.741131,10741.131 +4764,2025-03-07T14:12:27.067421-08:00,0.0,10.743877,10743.877 +4765,2025-03-07T14:12:37.808266-08:00,0.0,10.740845,10740.845 +4766,2025-03-07T14:12:48.553329-08:00,0.0,10.745063,10745.063 +4767,2025-03-07T14:12:59.296269-08:00,0.0,10.74294,10742.94 +4768,2025-03-07T14:13:10.038271-08:00,0.0,10.742002,10742.002 +4769,2025-03-07T14:13:20.775482-08:00,0.0,10.737211,10737.211 +4770,2025-03-07T14:13:31.524665-08:00,0.0,10.749183,10749.183 +4771,2025-03-07T14:13:42.257298-08:00,0.0,10.732633,10732.633 +4772,2025-03-07T14:13:53.003636-08:00,0.0,10.746338,10746.338 +4773,2025-03-07T14:14:03.747267-08:00,0.0,10.743631,10743.631 +4774,2025-03-07T14:14:14.489480-08:00,0.0,10.742213,10742.213 +4775,2025-03-07T14:14:25.229292-08:00,0.0,10.739812,10739.812 +4776,2025-03-07T14:14:35.973293-08:00,0.0,10.744001,10744.001 +4777,2025-03-07T14:14:46.710452-08:00,0.0,10.737159,10737.159 +4778,2025-03-07T14:14:57.449444-08:00,0.0,10.738992,10738.992 +4779,2025-03-07T14:15:08.192091-08:00,0.0,10.742647,10742.647 +4780,2025-03-07T14:15:18.929468-08:00,0.0,10.737377,10737.377 +4781,2025-03-07T14:15:29.677375-08:00,0.0,10.747907,10747.907 +4782,2025-03-07T14:15:40.414270-08:00,0.0,10.736895,10736.895 +4783,2025-03-07T14:15:51.159780-08:00,0.0,10.74551,10745.51 +4784,2025-03-07T14:16:01.908268-08:00,0.0,10.748488,10748.488 +4785,2025-03-07T14:16:12.654469-08:00,0.0,10.746201,10746.201 +4786,2025-03-07T14:16:23.387270-08:00,0.0,10.732801,10732.801 +4787,2025-03-07T14:16:34.137551-08:00,0.0,10.750281,10750.281 +4788,2025-03-07T14:16:44.873453-08:00,0.0,10.735902,10735.902 +4789,2025-03-07T14:16:55.616768-08:00,0.0,10.743315,10743.315 +4790,2025-03-07T14:17:06.366495-08:00,0.0,10.749727,10749.727 +4791,2025-03-07T14:17:17.113511-08:00,0.0,10.747016,10747.016 +4792,2025-03-07T14:17:27.855297-08:00,0.0,10.741786,10741.786 +4793,2025-03-07T14:17:38.602297-08:00,0.0,10.747,10747.0 +4794,2025-03-07T14:17:49.344272-08:00,0.0,10.741975,10741.975 +4795,2025-03-07T14:18:00.090447-08:00,0.0,10.746175,10746.175 +4796,2025-03-07T14:18:10.833275-08:00,0.0,10.742828,10742.828 +4797,2025-03-07T14:18:21.576309-08:00,0.0,10.743034,10743.034 +4798,2025-03-07T14:18:32.320687-08:00,0.0,10.744378,10744.378 +4799,2025-03-07T14:18:43.072302-08:00,0.0,10.751615,10751.615 +4800,2025-03-07T14:18:53.812364-08:00,0.0,10.740062,10740.062 +4801,2025-03-07T14:19:04.555485-08:00,0.0,10.743121,10743.121 +4802,2025-03-07T14:19:15.299269-08:00,0.0,10.743784,10743.784 +4803,2025-03-07T14:19:26.044469-08:00,0.0,10.7452,10745.2 +4804,2025-03-07T14:19:36.785599-08:00,0.0,10.74113,10741.13 +4805,2025-03-07T14:19:47.527498-08:00,0.0,10.741899,10741.899 +4806,2025-03-07T14:19:58.268435-08:00,0.0,10.740937,10740.937 +4807,2025-03-07T14:20:09.003272-08:00,0.0,10.734837,10734.837 +4808,2025-03-07T14:20:19.751263-08:00,0.0,10.747991,10747.991 +4809,2025-03-07T14:20:30.498268-08:00,0.0,10.747005,10747.005 +4810,2025-03-07T14:20:41.240271-08:00,0.0,10.742003,10742.003 +4811,2025-03-07T14:20:51.983643-08:00,0.0,10.743372,10743.372 +4812,2025-03-07T14:21:02.728271-08:00,0.0,10.744628,10744.628 +4813,2025-03-07T14:21:13.472569-08:00,0.0,10.744298,10744.298 +4814,2025-03-07T14:21:24.212435-08:00,0.0,10.739866,10739.866 +4815,2025-03-07T14:21:34.952255-08:00,0.0,10.73982,10739.82 +4816,2025-03-07T14:21:45.693289-08:00,0.0,10.741034,10741.034 +4817,2025-03-07T14:21:56.433482-08:00,0.0,10.740193,10740.193 +4818,2025-03-07T14:22:07.176806-08:00,0.0,10.743324,10743.324 +4819,2025-03-07T14:22:17.913476-08:00,0.0,10.73667,10736.67 +4820,2025-03-07T14:22:28.661300-08:00,0.0,10.747824,10747.824 +4821,2025-03-07T14:22:39.409269-08:00,0.0,10.747969,10747.969 +4822,2025-03-07T14:22:50.146472-08:00,0.0,10.737203,10737.203 +4823,2025-03-07T14:23:00.885767-08:00,0.0,10.739295,10739.295 +4824,2025-03-07T14:23:11.631466-08:00,0.0,10.745699,10745.699 +4825,2025-03-07T14:23:22.368268-08:00,0.0,10.736802,10736.802 +4826,2025-03-07T14:23:33.116271-08:00,0.0,10.748003,10748.003 +4827,2025-03-07T14:23:43.849423-08:00,0.0,10.733152,10733.152 +4828,2025-03-07T14:23:54.592270-08:00,0.0,10.742847,10742.847 +4829,2025-03-07T14:24:05.333469-08:00,0.0,10.741199,10741.199 +4830,2025-03-07T14:24:16.071576-08:00,0.0,10.738107,10738.107 +4831,2025-03-07T14:24:26.817469-08:00,0.0,10.745893,10745.893 +4832,2025-03-07T14:24:37.557517-08:00,0.0,10.740048,10740.048 +4833,2025-03-07T14:24:48.290267-08:00,0.0,10.73275,10732.75 +4834,2025-03-07T14:24:59.031382-08:00,0.0,10.741115,10741.115 +4835,2025-03-07T14:25:09.781267-08:00,0.0,10.749885,10749.885 +4836,2025-03-07T14:25:20.519685-08:00,0.0,10.738418,10738.418 +4837,2025-03-07T14:25:31.249474-08:00,0.0,10.729789,10729.789 +4838,2025-03-07T14:25:41.993279-08:00,0.0,10.743805,10743.805 +4839,2025-03-07T14:25:52.725268-08:00,0.0,10.731989,10731.989 +4840,2025-03-07T14:26:03.455299-08:00,0.0,10.730031,10730.031 +4841,2025-03-07T14:26:14.196270-08:00,0.0,10.740971,10740.971 +4842,2025-03-07T14:26:24.929298-08:00,0.0,10.733028,10733.028 +4843,2025-03-07T14:26:35.672385-08:00,0.0,10.743087,10743.087 +4844,2025-03-07T14:26:46.408337-08:00,0.0,10.735952,10735.952 +4845,2025-03-07T14:26:57.147595-08:00,0.0,10.739258,10739.258 +4846,2025-03-07T14:27:07.882110-08:00,0.0,10.734515,10734.515 +4847,2025-03-07T14:27:18.625657-08:00,0.0,10.743547,10743.547 +4848,2025-03-07T14:27:29.359262-08:00,0.0,10.733605,10733.605 +4849,2025-03-07T14:27:40.090423-08:00,0.0,10.731161,10731.161 +4850,2025-03-07T14:27:50.831308-08:00,0.0,10.740885,10740.885 +4851,2025-03-07T14:28:01.562444-08:00,0.0,10.731136,10731.136 +4852,2025-03-07T14:28:12.297264-08:00,331.0,10.73482,10734.82 +4853,2025-03-07T14:28:23.034266-08:00,351.0,10.737002,10737.002 +4854,2025-03-07T14:28:33.775270-08:00,426.0,10.741004,10741.004 +4855,2025-03-07T14:28:44.508432-08:00,461.0,10.733162,10733.162 +4856,2025-03-07T14:28:55.237554-08:00,341.0,10.729122,10729.122 +4857,2025-03-07T14:29:05.978378-08:00,328.0,10.740824,10740.824 +4858,2025-03-07T14:29:16.717475-08:00,303.0,10.739097,10739.097 +4859,2025-03-07T14:29:27.453276-08:00,434.0,10.735801,10735.801 +4860,2025-03-07T14:29:38.189760-08:00,354.0,10.736484,10736.484 +4861,2025-03-07T14:29:48.926295-08:00,445.0,10.736535,10736.535 +4862,2025-03-07T14:29:59.670477-08:00,434.0,10.744182,10744.182 +4863,2025-03-07T14:30:10.405265-08:00,0.0,10.734788,10734.788 +4864,2025-03-07T14:30:21.144514-08:00,0.0,10.739249,10739.249 +4865,2025-03-07T14:30:31.874437-08:00,0.0,10.729923,10729.923 +4866,2025-03-07T14:30:42.616410-08:00,0.0,10.741973,10741.973 +4867,2025-03-07T14:30:53.343294-08:00,0.0,10.726884,10726.884 +4868,2025-03-07T14:31:04.080366-08:00,0.0,10.737072,10737.072 +4869,2025-03-07T14:31:14.825123-08:00,0.0,10.744757,10744.757 +4870,2025-03-07T14:31:25.554386-08:00,0.0,10.729263,10729.263 +4871,2025-03-07T14:31:36.287380-08:00,0.0,10.732994,10732.994 +4872,2025-03-07T14:31:47.026271-08:00,0.0,10.738891,10738.891 +4873,2025-03-07T14:31:57.760726-08:00,0.0,10.734455,10734.455 +4874,2025-03-07T14:32:08.499440-08:00,0.0,10.738714,10738.714 +4875,2025-03-07T14:32:19.238511-08:00,0.0,10.739071,10739.071 +4876,2025-03-07T14:32:29.970268-08:00,0.0,10.731757,10731.757 +4877,2025-03-07T14:32:40.704265-08:00,0.0,10.733997,10733.997 +4878,2025-03-07T14:32:51.445320-08:00,0.0,10.741055,10741.055 +4879,2025-03-07T14:33:02.175292-08:00,0.0,10.729972,10729.972 +4880,2025-03-07T14:33:12.917434-08:00,0.0,10.742142,10742.142 +4881,2025-03-07T14:33:23.649338-08:00,0.0,10.731904,10731.904 +4882,2025-03-07T14:33:34.385686-08:00,0.0,10.736348,10736.348 +4883,2025-03-07T14:33:45.133474-08:00,0.0,10.747788,10747.788 +4884,2025-03-07T14:33:55.873442-08:00,0.0,10.739968,10739.968 +4885,2025-03-07T14:34:06.612271-08:00,0.0,10.738829,10738.829 +4886,2025-03-07T14:34:17.345266-08:00,0.0,10.732995,10732.995 +4887,2025-03-07T14:34:28.086335-08:00,0.0,10.741069,10741.069 +4888,2025-03-07T14:34:38.825434-08:00,0.0,10.739099,10739.099 +4889,2025-03-07T14:34:49.568326-08:00,0.0,10.742892,10742.892 +4890,2025-03-07T14:35:00.310408-08:00,0.0,10.742082,10742.082 +4891,2025-03-07T14:35:11.039643-08:00,0.0,10.729235,10729.235 +4892,2025-03-07T14:35:21.779446-08:00,0.0,10.739803,10739.803 +4893,2025-03-07T14:35:32.516364-08:00,0.0,10.736918,10736.918 +4894,2025-03-07T14:35:43.254884-08:00,0.0,10.73852,10738.52 +4895,2025-03-07T14:35:53.987941-08:00,0.0,10.733057,10733.057 +4896,2025-03-07T14:36:04.734417-08:00,0.0,10.746476,10746.476 +4897,2025-03-07T14:36:15.467470-08:00,0.0,10.733053,10733.053 +4898,2025-03-07T14:36:26.204729-08:00,0.0,10.737259,10737.259 +4899,2025-03-07T14:36:36.937451-08:00,0.0,10.732722,10732.722 +4900,2025-03-07T14:36:47.668266-08:00,0.0,10.730815,10730.815 +4901,2025-03-07T14:36:58.411270-08:00,0.0,10.743004,10743.004 +4902,2025-03-07T14:37:09.135558-08:00,0.0,10.724288,10724.288 +4903,2025-03-07T14:37:19.869039-08:00,0.0,10.733481,10733.481 +4904,2025-03-07T14:37:30.600479-08:00,0.0,10.73144,10731.44 +4905,2025-03-07T14:37:41.346472-08:00,0.0,10.745993,10745.993 +4906,2025-03-07T14:37:52.078624-08:00,0.0,10.732152,10732.152 +4907,2025-03-07T14:38:02.810455-08:00,0.0,10.731831,10731.831 +4908,2025-03-07T14:38:13.547368-08:00,0.0,10.736913,10736.913 +4909,2025-03-07T14:38:24.278264-08:00,0.0,10.730896,10730.896 +4910,2025-03-07T14:38:35.021337-08:00,0.0,10.743073,10743.073 +4911,2025-03-07T14:38:45.757458-08:00,0.0,10.736121,10736.121 +4912,2025-03-07T14:38:56.486329-08:00,0.0,10.728871,10728.871 +4913,2025-03-07T14:39:07.220600-08:00,0.0,10.734271,10734.271 +4914,2025-03-07T14:39:17.950449-08:00,0.0,10.729849,10729.849 +4915,2025-03-07T14:39:28.681329-08:00,0.0,10.73088,10730.88 +4916,2025-03-07T14:39:39.422271-08:00,0.0,10.740942,10740.942 +4917,2025-03-07T14:39:50.151268-08:00,0.0,10.728997,10728.997 +4918,2025-03-07T14:40:00.894458-08:00,0.0,10.74319,10743.19 +4919,2025-03-07T14:40:11.628516-08:00,0.0,10.734058,10734.058 +4920,2025-03-07T14:40:22.358816-08:00,0.0,10.7303,10730.3 +4921,2025-03-07T14:40:33.096266-08:00,0.0,10.73745,10737.45 +4922,2025-03-07T14:40:43.831335-08:00,0.0,10.735069,10735.069 +4923,2025-03-07T14:40:54.571432-08:00,0.0,10.740097,10740.097 +4924,2025-03-07T14:41:05.307299-08:00,0.0,10.735867,10735.867 +4925,2025-03-07T14:41:16.043270-08:00,0.0,10.735971,10735.971 +4926,2025-03-07T14:41:26.776606-08:00,0.0,10.733336,10733.336 +4927,2025-03-07T14:41:37.513511-08:00,0.0,10.736905,10736.905 +4928,2025-03-07T14:41:48.245474-08:00,0.0,10.731963,10731.963 +4929,2025-03-07T14:41:58.987267-08:00,0.0,10.741793,10741.793 +4930,2025-03-07T14:42:09.719268-08:00,0.0,10.732001,10732.001 +4931,2025-03-07T14:42:20.462268-08:00,0.0,10.743,10743.0 +4932,2025-03-07T14:42:31.192441-08:00,0.0,10.730173,10730.173 +4933,2025-03-07T14:42:41.935621-08:00,0.0,10.74318,10743.18 +4934,2025-03-07T14:42:52.677403-08:00,0.0,10.741782,10741.782 +4935,2025-03-07T14:43:03.414328-08:00,0.0,10.736925,10736.925 +4936,2025-03-07T14:43:14.144629-08:00,0.0,10.730301,10730.301 +4937,2025-03-07T14:43:24.880659-08:00,0.0,10.73603,10736.03 +4938,2025-03-07T14:43:35.616486-08:00,0.0,10.735827,10735.827 +4939,2025-03-07T14:43:46.348270-08:00,0.0,10.731784,10731.784 +4940,2025-03-07T14:43:57.081470-08:00,0.0,10.7332,10733.2 +4941,2025-03-07T14:44:07.826300-08:00,0.0,10.74483,10744.83 +4942,2025-03-07T14:44:18.558293-08:00,0.0,10.731993,10731.993 +4943,2025-03-07T14:44:29.292269-08:00,0.0,10.733976,10733.976 +4944,2025-03-07T14:44:40.029294-08:00,0.0,10.737025,10737.025 +4945,2025-03-07T14:44:50.763681-08:00,0.0,10.734387,10734.387 +4946,2025-03-07T14:45:01.499867-08:00,0.0,10.736186,10736.186 +4947,2025-03-07T14:45:12.229268-08:00,0.0,10.729401,10729.401 +4948,2025-03-07T14:45:22.970475-08:00,0.0,10.741207,10741.207 +4949,2025-03-07T14:45:24.094795-08:00,0.0,1.12432,1124.32 +4950,2025-03-07T14:45:33.703265-08:00,0.0,9.60847,9608.47 +4951,2025-03-07T14:45:44.442659-08:00,0.0,10.739394,10739.394 +4952,2025-03-07T14:45:55.180292-08:00,0.0,10.737633,10737.633 +4953,2025-03-07T14:46:05.922327-08:00,0.0,10.742035,10742.035 +4954,2025-03-07T14:46:16.648439-08:00,0.0,10.726112,10726.112 +4955,2025-03-07T14:46:27.389695-08:00,0.0,10.741256,10741.256 +4956,2025-03-07T14:46:38.126488-08:00,0.0,10.736793,10736.793 +4957,2025-03-07T14:46:48.859625-08:00,0.0,10.733137,10733.137 +4958,2025-03-07T14:46:59.599348-08:00,0.0,10.739723,10739.723 +4959,2025-03-07T14:47:10.333681-08:00,0.0,10.734333,10734.333 +4960,2025-03-07T14:47:21.075369-08:00,0.0,10.741688,10741.688 +4961,2025-03-07T14:47:31.801271-08:00,0.0,10.725902,10725.902 +4962,2025-03-07T14:47:42.545268-08:00,0.0,10.743997,10743.997 +4963,2025-03-07T14:47:53.277278-08:00,0.0,10.73201,10732.01 +4964,2025-03-07T14:48:04.003526-08:00,0.0,10.726248,10726.248 +4965,2025-03-07T14:48:14.738332-08:00,0.0,10.734806,10734.806 +4966,2025-03-07T14:48:25.476264-08:00,0.0,10.737932,10737.932 +4967,2025-03-07T14:48:36.206283-08:00,0.0,10.730019,10730.019 +4968,2025-03-07T14:48:46.942873-08:00,0.0,10.73659,10736.59 +4969,2025-03-07T14:48:57.677271-08:00,0.0,10.734398,10734.398 +4970,2025-03-07T14:49:08.411346-08:00,0.0,10.734075,10734.075 +4971,2025-03-07T14:49:19.144515-08:00,0.0,10.733169,10733.169 +4972,2025-03-07T14:49:29.879971-08:00,0.0,10.735456,10735.456 +4973,2025-03-07T14:49:40.610269-08:00,0.0,10.730298,10730.298 +4974,2025-03-07T14:49:51.356274-08:00,0.0,10.746005,10746.005 +4975,2025-03-07T14:50:02.090300-08:00,0.0,10.734026,10734.026 +4976,2025-03-07T14:50:12.823671-08:00,0.0,10.733371,10733.371 +4977,2025-03-07T14:50:23.552332-08:00,0.0,10.728661,10728.661 +4978,2025-03-07T14:50:34.290481-08:00,0.0,10.738149,10738.149 +4979,2025-03-07T14:50:45.027536-08:00,0.0,10.737055,10737.055 +4980,2025-03-07T14:50:55.759907-08:00,0.0,10.732371,10732.371 +4981,2025-03-07T14:51:06.486266-08:00,0.0,10.726359,10726.359 +4982,2025-03-07T14:51:17.221265-08:00,0.0,10.734999,10734.999 +4983,2025-03-07T14:51:27.955480-08:00,0.0,10.734215,10734.215 +4984,2025-03-07T14:51:38.681334-08:00,0.0,10.725854,10725.854 +4985,2025-03-07T14:51:49.417504-08:00,0.0,10.73617,10736.17 +4986,2025-03-07T14:52:00.151453-08:00,0.0,10.733949,10733.949 +4987,2025-03-07T14:52:10.879270-08:00,0.0,10.727817,10727.817 +4988,2025-03-07T14:52:21.661686-08:00,0.0,10.782416,10782.416 +4989,2025-03-07T14:52:32.398512-08:00,0.0,10.736826,10736.826 +4990,2025-03-07T14:52:43.137727-08:00,0.0,10.739215,10739.215 +4991,2025-03-07T14:52:53.878272-08:00,0.0,10.740545,10740.545 +4992,2025-03-07T14:53:04.604511-08:00,0.0,10.726239,10726.239 +4993,2025-03-07T14:53:15.345513-08:00,0.0,10.741002,10741.002 +4994,2025-03-07T14:53:26.072916-08:00,0.0,10.727403,10727.403 +4995,2025-03-07T14:53:36.817513-08:00,0.0,10.744597,10744.597 +4996,2025-03-07T14:53:47.547885-08:00,0.0,10.730372,10730.372 +4997,2025-03-07T14:53:58.284511-08:00,0.0,10.736626,10736.626 +4998,2025-03-07T14:54:09.010725-08:00,0.0,10.726214,10726.214 +4999,2025-03-07T14:54:19.750870-08:00,0.0,10.740145,10740.145 +5000,2025-03-07T14:54:30.487515-08:00,0.0,10.736645,10736.645 +5001,2025-03-07T14:54:41.215385-08:00,0.0,10.72787,10727.87 +5002,2025-03-07T14:54:51.956777-08:00,0.0,10.741392,10741.392 +5003,2025-03-07T14:55:02.689708-08:00,0.0,10.732931,10732.931 +5004,2025-03-07T14:55:13.425122-08:00,0.0,10.735414,10735.414 +5005,2025-03-07T14:55:24.153618-08:00,0.0,10.728496,10728.496 +5006,2025-03-07T14:55:34.899517-08:00,0.0,10.745899,10745.899 +5007,2025-03-07T14:55:45.626584-08:00,0.0,10.727067,10727.067 +5008,2025-03-07T14:55:56.369515-08:00,0.0,10.742931,10742.931 +5009,2025-03-07T14:56:07.104516-08:00,0.0,10.735001,10735.001 +5010,2025-03-07T14:56:17.837703-08:00,0.0,10.733187,10733.187 +5011,2025-03-07T14:56:28.566574-08:00,0.0,10.728871,10728.871 +5012,2025-03-07T14:56:39.306722-08:00,0.0,10.740148,10740.148 +5013,2025-03-07T14:56:50.040619-08:00,0.0,10.733897,10733.897 +5014,2025-03-07T14:57:00.769701-08:00,0.0,10.729082,10729.082 +5015,2025-03-07T14:57:11.507541-08:00,0.0,10.73784,10737.84 +5016,2025-03-07T14:57:22.245519-08:00,0.0,10.737978,10737.978 +5017,2025-03-07T14:57:32.985512-08:00,0.0,10.739993,10739.993 +5018,2025-03-07T14:57:43.719709-08:00,0.0,10.734197,10734.197 +5019,2025-03-07T14:57:54.452295-08:00,0.0,10.732586,10732.586 +5020,2025-03-07T14:58:05.188709-08:00,0.0,10.736414,10736.414 +5021,2025-03-07T14:58:15.923720-08:00,0.0,10.735011,10735.011 +5022,2025-03-07T14:58:26.653730-08:00,0.0,10.73001,10730.01 +5023,2025-03-07T14:58:37.383653-08:00,0.0,10.729923,10729.923 +5024,2025-03-07T14:58:48.116516-08:00,0.0,10.732863,10732.863 +5025,2025-03-07T14:58:58.851712-08:00,0.0,10.735196,10735.196 +5026,2025-03-07T14:59:09.578511-08:00,0.0,10.726799,10726.799 +5027,2025-03-07T14:59:20.314609-08:00,0.0,10.736098,10736.098 +5028,2025-03-07T14:59:31.045716-08:00,0.0,10.731107,10731.107 +5029,2025-03-07T14:59:41.777695-08:00,0.0,10.731979,10731.979 +5030,2025-03-07T14:59:52.505726-08:00,0.0,10.728031,10728.031 +5031,2025-03-07T15:00:03.243779-08:00,0.0,10.738053,10738.053 +5032,2025-03-07T15:00:13.975721-08:00,0.0,10.731942,10731.942 +5033,2025-03-07T15:00:24.711319-08:00,0.0,10.735598,10735.598 +5034,2025-03-07T15:00:35.434513-08:00,0.0,10.723194,10723.194 +5035,2025-03-07T15:00:46.173515-08:00,0.0,10.739002,10739.002 +5036,2025-03-07T15:00:56.898532-08:00,0.0,10.725017,10725.017 +5037,2025-03-07T15:01:07.636589-08:00,0.0,10.738057,10738.057 +5038,2025-03-07T15:01:18.366769-08:00,0.0,10.73018,10730.18 +5039,2025-03-07T15:01:29.105127-08:00,0.0,10.738358,10738.358 +5040,2025-03-07T15:01:39.839516-08:00,0.0,10.734389,10734.389 +5041,2025-03-07T15:01:50.568513-08:00,0.0,10.728997,10728.997 +5042,2025-03-07T15:02:01.304664-08:00,0.0,10.736151,10736.151 +5043,2025-03-07T15:02:12.045547-08:00,0.0,10.740883,10740.883 +5044,2025-03-07T15:02:22.768513-08:00,0.0,10.722966,10722.966 +5045,2025-03-07T15:02:33.512580-08:00,0.0,10.744067,10744.067 +5046,2025-03-07T15:02:44.242749-08:00,0.0,10.730169,10730.169 +5047,2025-03-07T15:02:54.985289-08:00,0.0,10.74254,10742.54 +5048,2025-03-07T15:03:05.717513-08:00,0.0,10.732224,10732.224 +5049,2025-03-07T15:03:16.456514-08:00,0.0,10.739001,10739.001 +5050,2025-03-07T15:03:27.190515-08:00,0.0,10.734001,10734.001 +5051,2025-03-07T15:03:37.925731-08:00,0.0,10.735216,10735.216 +5052,2025-03-07T15:03:48.665681-08:00,0.0,10.73995,10739.95 +5053,2025-03-07T15:03:59.398312-08:00,0.0,10.732631,10732.631 +5054,2025-03-07T15:04:10.132514-08:00,0.0,10.734202,10734.202 +5055,2025-03-07T15:04:20.862741-08:00,0.0,10.730227,10730.227 +5056,2025-03-07T15:04:31.600684-08:00,0.0,10.737943,10737.943 +5057,2025-03-07T15:04:42.334509-08:00,0.0,10.733825,10733.825 +5058,2025-03-07T15:04:53.074627-08:00,0.0,10.740118,10740.118 +5059,2025-03-07T15:05:03.801514-08:00,0.0,10.726887,10726.887 +5060,2025-03-07T15:05:14.542926-08:00,0.0,10.741412,10741.412 +5061,2025-03-07T15:05:25.277540-08:00,0.0,10.734614,10734.614 +5062,2025-03-07T15:05:36.013520-08:00,0.0,10.73598,10735.98 +5063,2025-03-07T15:05:46.739105-08:00,0.0,10.725585,10725.585 +5064,2025-03-07T15:05:57.476913-08:00,0.0,10.737808,10737.808 +5065,2025-03-07T15:06:08.208043-08:00,0.0,10.73113,10731.13 +5066,2025-03-07T15:06:18.944548-08:00,0.0,10.736505,10736.505 +5067,2025-03-07T15:06:29.679599-08:00,0.0,10.735051,10735.051 +5068,2025-03-07T15:06:40.409031-08:00,0.0,10.729432,10729.432 +5069,2025-03-07T15:06:51.141630-08:00,0.0,10.732599,10732.599 +5070,2025-03-07T15:07:01.874685-08:00,0.0,10.733055,10733.055 +5071,2025-03-07T15:07:12.606703-08:00,0.0,10.732018,10732.018 +5072,2025-03-07T15:07:23.348516-08:00,0.0,10.741813,10741.813 +5073,2025-03-07T15:07:34.084509-08:00,0.0,10.735993,10735.993 +5074,2025-03-07T15:07:44.819515-08:00,0.0,10.735006,10735.006 +5075,2025-03-07T15:07:55.556744-08:00,0.0,10.737229,10737.229 +5076,2025-03-07T15:08:06.283514-08:00,0.0,10.72677,10726.77 +5077,2025-03-07T15:08:17.015517-08:00,0.0,10.732003,10732.003 +5078,2025-03-07T15:08:27.750920-08:00,0.0,10.735403,10735.403 +5079,2025-03-07T15:08:38.490690-08:00,0.0,10.73977,10739.77 +5080,2025-03-07T15:08:49.222719-08:00,0.0,10.732029,10732.029 +5081,2025-03-07T15:08:58.913693-08:00,0.0,9.690974,9690.974 +5082,2025-03-07T15:08:59.960516-08:00,0.0,1.046823,1046.823 +5083,2025-03-07T15:09:10.697582-08:00,0.0,10.737066,10737.066 +5084,2025-03-07T15:09:21.421797-08:00,0.0,10.724215,10724.215 +5085,2025-03-07T15:09:32.156515-08:00,0.0,10.734718,10734.718 +5086,2025-03-07T15:09:42.896577-08:00,0.0,10.740062,10740.062 +5087,2025-03-07T15:09:53.625138-08:00,0.0,10.728561,10728.561 +5088,2025-03-07T15:10:04.366904-08:00,0.0,10.741766,10741.766 +5089,2025-03-07T15:10:15.096578-08:00,0.0,10.729674,10729.674 +5090,2025-03-07T15:10:25.825509-08:00,0.0,10.728931,10728.931 +5091,2025-03-07T15:10:36.559708-08:00,0.0,10.734199,10734.199 +5092,2025-03-07T15:10:47.295617-08:00,0.0,10.735909,10735.909 +5093,2025-03-07T15:10:58.024526-08:00,0.0,10.728909,10728.909 +5094,2025-03-07T15:11:08.763724-08:00,0.0,10.739198,10739.198 +5095,2025-03-07T15:11:19.492927-08:00,0.0,10.729203,10729.203 +5096,2025-03-07T15:11:30.224511-08:00,0.0,10.731584,10731.584 +5097,2025-03-07T15:11:40.962519-08:00,0.0,10.738008,10738.008 +5098,2025-03-07T15:11:51.689683-08:00,0.0,10.727164,10727.164 +5099,2025-03-07T15:12:02.423518-08:00,0.0,10.733835,10733.835 +5100,2025-03-07T15:12:13.151761-08:00,0.0,10.728243,10728.243 +5101,2025-03-07T15:12:23.879686-08:00,0.0,10.727925,10727.925 +5102,2025-03-07T15:12:34.613515-08:00,0.0,10.733829,10733.829 +5103,2025-03-07T15:12:45.348574-08:00,0.0,10.735059,10735.059 +5104,2025-03-07T15:12:56.073691-08:00,0.0,10.725117,10725.117 +5105,2025-03-07T15:13:06.807146-08:00,0.0,10.733455,10733.455 +5106,2025-03-07T15:13:17.534540-08:00,0.0,10.727394,10727.394 +5107,2025-03-07T15:13:28.269723-08:00,0.0,10.735183,10735.183 +5108,2025-03-07T15:13:38.996575-08:00,0.0,10.726852,10726.852 +5109,2025-03-07T15:13:49.727829-08:00,0.0,10.731254,10731.254 +5110,2025-03-07T15:14:00.465717-08:00,0.0,10.737888,10737.888 +5111,2025-03-07T15:14:11.191538-08:00,0.0,10.725821,10725.821 +5112,2025-03-07T15:14:21.920579-08:00,0.0,10.729041,10729.041 +5113,2025-03-07T15:14:32.650940-08:00,0.0,10.730361,10730.361 +5114,2025-03-07T15:14:43.382514-08:00,0.0,10.731574,10731.574 +5115,2025-03-07T15:14:54.119607-08:00,0.0,10.737093,10737.093 +5116,2025-03-07T15:15:04.844725-08:00,0.0,10.725118,10725.118 +5117,2025-03-07T15:15:15.573662-08:00,0.0,10.728937,10728.937 +5118,2025-03-07T15:15:26.302517-08:00,0.0,10.728855,10728.855 +5119,2025-03-07T15:15:37.043547-08:00,0.0,10.74103,10741.03 +5120,2025-03-07T15:15:47.767513-08:00,0.0,10.723966,10723.966 +5121,2025-03-07T15:15:58.503516-08:00,0.0,10.736003,10736.003 +5122,2025-03-07T15:16:09.236512-08:00,0.0,10.732996,10732.996 +5123,2025-03-07T15:16:19.958704-08:00,0.0,10.722192,10722.192 +5124,2025-03-07T15:16:30.691515-08:00,0.0,10.732811,10732.811 +5125,2025-03-07T15:16:41.425666-08:00,0.0,10.734151,10734.151 +5126,2025-03-07T15:16:52.152090-08:00,0.0,10.726424,10726.424 +5127,2025-03-07T15:17:02.883516-08:00,0.0,10.731426,10731.426 +5128,2025-03-07T15:17:13.610508-08:00,0.0,10.726992,10726.992 +5129,2025-03-07T15:17:24.341543-08:00,0.0,10.731035,10731.035 +5130,2025-03-07T15:17:35.080742-08:00,0.0,10.739199,10739.199 +5131,2025-03-07T15:17:45.815668-08:00,0.0,10.734926,10734.926 +5132,2025-03-07T15:17:56.538016-08:00,0.0,10.722348,10722.348 +5133,2025-03-07T15:18:07.278622-08:00,0.0,10.740606,10740.606 +5134,2025-03-07T15:18:18.012574-08:00,0.0,10.733952,10733.952 +5135,2025-03-07T15:18:28.744709-08:00,0.0,10.732135,10732.135 +5136,2025-03-07T15:18:39.468538-08:00,0.0,10.723829,10723.829 +5137,2025-03-07T15:18:50.205578-08:00,0.0,10.73704,10737.04 +5138,2025-03-07T15:19:00.937920-08:00,0.0,10.732342,10732.342 +5139,2025-03-07T15:19:11.664992-08:00,0.0,10.727072,10727.072 +5140,2025-03-07T15:19:22.395940-08:00,0.0,10.730948,10730.948 +5141,2025-03-07T15:19:33.127726-08:00,0.0,10.731786,10731.786 +5142,2025-03-07T15:19:43.868661-08:00,0.0,10.740935,10740.935 +5143,2025-03-07T15:19:54.590516-08:00,0.0,10.721855,10721.855 +5144,2025-03-07T15:20:05.331573-08:00,0.0,10.741057,10741.057 +5145,2025-03-07T15:20:16.055698-08:00,0.0,10.724125,10724.125 +5146,2025-03-07T15:20:26.791517-08:00,0.0,10.735819,10735.819 +5147,2025-03-07T15:20:37.519615-08:00,0.0,10.728098,10728.098 +5148,2025-03-07T15:20:48.254511-08:00,0.0,10.734896,10734.896 +5149,2025-03-07T15:20:58.983721-08:00,0.0,10.72921,10729.21 +5150,2025-03-07T15:21:09.711585-08:00,0.0,10.727864,10727.864 +5151,2025-03-07T15:21:20.445702-08:00,0.0,10.734117,10734.117 +5152,2025-03-07T15:21:31.175516-08:00,0.0,10.729814,10729.814 +5153,2025-03-07T15:21:41.908514-08:00,0.0,10.732998,10732.998 +5154,2025-03-07T15:21:52.636224-08:00,0.0,10.72771,10727.71 +5155,2025-03-07T15:22:03.364664-08:00,0.0,10.72844,10728.44 +5156,2025-03-07T15:22:14.098574-08:00,0.0,10.73391,10733.91 +5157,2025-03-07T15:22:24.827697-08:00,0.0,10.729123,10729.123 +5158,2025-03-07T15:22:35.558515-08:00,0.0,10.730818,10730.818 +5159,2025-03-07T15:22:46.282862-08:00,0.0,10.724347,10724.347 +5160,2025-03-07T15:22:57.018545-08:00,0.0,10.735683,10735.683 +5161,2025-03-07T15:23:07.750752-08:00,0.0,10.732207,10732.207 +5162,2025-03-07T15:23:18.478516-08:00,0.0,10.727764,10727.764 +5163,2025-03-07T15:23:29.204705-08:00,0.0,10.726189,10726.189 +5164,2025-03-07T15:23:39.934578-08:00,0.0,10.729873,10729.873 +5165,2025-03-07T15:23:50.669621-08:00,0.0,10.735043,10735.043 +5166,2025-03-07T15:24:01.394688-08:00,0.0,10.725067,10725.067 +5167,2025-03-07T15:24:12.132761-08:00,0.0,10.738073,10738.073 +5168,2025-03-07T15:24:22.855825-08:00,0.0,10.723064,10723.064 +5169,2025-03-07T15:24:33.592736-08:00,0.0,10.736911,10736.911 +5170,2025-03-07T15:24:44.312540-08:00,0.0,10.719804,10719.804 +5171,2025-03-07T15:24:55.046508-08:00,0.0,10.733968,10733.968 +5172,2025-03-07T15:25:05.776702-08:00,0.0,10.730194,10730.194 +5173,2025-03-07T15:25:16.501516-08:00,0.0,10.724814,10724.814 +5174,2025-03-07T15:25:27.232697-08:00,0.0,10.731181,10731.181 +5175,2025-03-07T15:25:37.972748-08:00,0.0,10.740051,10740.051 +5176,2025-03-07T15:25:48.698714-08:00,0.0,10.725966,10725.966 +5177,2025-03-07T15:25:59.435618-08:00,0.0,10.736904,10736.904 +5178,2025-03-07T15:26:10.167518-08:00,0.0,10.7319,10731.9 +5179,2025-03-07T15:26:20.895533-08:00,0.0,10.728015,10728.015 +5180,2025-03-07T15:26:31.626241-08:00,0.0,10.730708,10730.708 +5181,2025-03-07T15:26:42.357410-08:00,0.0,10.731169,10731.169 +5182,2025-03-07T15:26:53.084509-08:00,0.0,10.727099,10727.099 +5183,2025-03-07T15:27:03.816515-08:00,0.0,10.732006,10732.006 +5184,2025-03-07T15:27:14.547765-08:00,0.0,10.73125,10731.25 +5185,2025-03-07T15:27:25.268582-08:00,0.0,10.720817,10720.817 +5186,2025-03-07T15:27:36.005599-08:00,0.0,10.737017,10737.017 +5187,2025-03-07T15:27:46.738185-08:00,0.0,10.732586,10732.586 +5188,2025-03-07T15:27:57.462584-08:00,0.0,10.724399,10724.399 +5189,2025-03-07T15:28:08.191512-08:00,0.0,10.728928,10728.928 +5190,2025-03-07T15:28:18.916749-08:00,0.0,10.725237,10725.237 +5191,2025-03-07T15:28:29.644516-08:00,0.0,10.727767,10727.767 +5192,2025-03-07T15:28:40.373729-08:00,0.0,10.729213,10729.213 +5193,2025-03-07T15:28:51.101548-08:00,0.0,10.727819,10727.819 +5194,2025-03-07T15:29:01.828515-08:00,0.0,10.726967,10726.967 +5195,2025-03-07T15:29:12.561687-08:00,0.0,10.733172,10733.172 +5196,2025-03-07T15:29:23.286516-08:00,0.0,10.724829,10724.829 +5197,2025-03-07T15:29:34.017604-08:00,0.0,10.731088,10731.088 +5198,2025-03-07T15:29:44.747712-08:00,0.0,10.730108,10730.108 +5199,2025-03-07T15:29:55.470588-08:00,0.0,10.722876,10722.876 +5200,2025-03-07T15:30:06.206544-08:00,0.0,10.735956,10735.956 +5201,2025-03-07T15:30:16.931540-08:00,0.0,10.724996,10724.996 +5202,2025-03-07T15:30:27.660733-08:00,0.0,10.729193,10729.193 +5203,2025-03-07T15:30:38.400760-08:00,0.0,10.740027,10740.027 +5204,2025-03-07T15:30:49.126249-08:00,0.0,10.725489,10725.489 +5205,2025-03-07T15:30:59.856516-08:00,0.0,10.730267,10730.267 +5206,2025-03-07T15:31:10.583508-08:00,0.0,10.726992,10726.992 +5207,2025-03-07T15:31:21.311719-08:00,0.0,10.728211,10728.211 +5208,2025-03-07T15:31:32.050515-08:00,0.0,10.738796,10738.796 +5209,2025-03-07T15:31:42.777736-08:00,0.0,10.727221,10727.221 +5210,2025-03-07T15:31:53.510534-08:00,0.0,10.732798,10732.798 +5211,2025-03-07T15:32:04.233515-08:00,0.0,10.722981,10722.981 +5212,2025-03-07T15:32:14.967513-08:00,0.0,10.733998,10733.998 +5213,2025-03-07T15:32:25.696608-08:00,0.0,10.729095,10729.095 +5214,2025-03-07T15:32:36.432718-08:00,0.0,10.73611,10736.11 +5215,2025-03-07T15:32:47.157727-08:00,0.0,10.725009,10725.009 +5216,2025-03-07T15:32:57.897734-08:00,0.0,10.740007,10740.007 +5217,2025-03-07T15:33:08.629717-08:00,0.0,10.731983,10731.983 +5218,2025-03-07T15:33:19.355515-08:00,0.0,10.725798,10725.798 +5219,2025-03-07T15:33:30.094139-08:00,0.0,10.738624,10738.624 +5220,2025-03-07T15:33:40.823810-08:00,0.0,10.729671,10729.671 +5221,2025-03-07T15:33:51.559512-08:00,0.0,10.735702,10735.702 +5222,2025-03-07T15:34:02.293270-08:00,0.0,10.733758,10733.758 +5223,2025-03-07T15:34:13.023002-08:00,0.0,10.729732,10729.732 +5224,2025-03-07T15:34:23.751640-08:00,0.0,10.728638,10728.638 +5225,2025-03-07T15:34:34.489509-08:00,0.0,10.737869,10737.869 +5226,2025-03-07T15:34:45.213017-08:00,0.0,10.723508,10723.508 +5227,2025-03-07T15:34:55.949718-08:00,0.0,10.736701,10736.701 +5228,2025-03-07T15:35:06.681633-08:00,0.0,10.731915,10731.915 +5229,2025-03-07T15:35:17.416401-08:00,0.0,10.734768,10734.768 +5230,2025-03-07T15:35:28.144516-08:00,0.0,10.728115,10728.115 +5231,2025-03-07T15:35:38.879513-08:00,0.0,10.734997,10734.997 +5232,2025-03-07T15:35:49.605686-08:00,0.0,10.726173,10726.173 +5233,2025-03-07T15:36:00.342951-08:00,0.0,10.737265,10737.265 +5234,2025-03-07T15:36:11.069510-08:00,0.0,10.726559,10726.559 +5235,2025-03-07T15:36:21.799731-08:00,0.0,10.730221,10730.221 +5236,2025-03-07T15:36:32.537832-08:00,0.0,10.738101,10738.101 +5237,2025-03-07T15:36:43.264545-08:00,0.0,10.726713,10726.713 +5238,2025-03-07T15:36:53.998540-08:00,0.0,10.733995,10733.995 +5239,2025-03-07T15:37:04.732712-08:00,0.0,10.734172,10734.172 +5240,2025-03-07T15:37:15.461515-08:00,0.0,10.728803,10728.803 +5241,2025-03-07T15:37:26.195316-08:00,0.0,10.733801,10733.801 +5242,2025-03-07T15:37:36.920700-08:00,0.0,10.725384,10725.384 +5243,2025-03-07T15:37:47.653651-08:00,0.0,10.732951,10732.951 +5244,2025-03-07T15:37:58.382733-08:00,0.0,10.729082,10729.082 +5245,2025-03-07T15:38:09.114610-08:00,0.0,10.731877,10731.877 +5246,2025-03-07T15:38:19.844516-08:00,0.0,10.729906,10729.906 +5247,2025-03-07T15:38:30.578508-08:00,0.0,10.733992,10733.992 +5248,2025-03-07T15:38:41.317702-08:00,0.0,10.739194,10739.194 +5249,2025-03-07T15:38:52.050690-08:00,0.0,10.732988,10732.988 +5250,2025-03-07T15:39:02.782512-08:00,0.0,10.731822,10731.822 +5251,2025-03-07T15:39:13.509516-08:00,0.0,10.727004,10727.004 +5252,2025-03-07T15:39:24.244606-08:00,0.0,10.73509,10735.09 +5253,2025-03-07T15:39:34.976516-08:00,0.0,10.73191,10731.91 +5254,2025-03-07T15:39:45.707012-08:00,0.0,10.730496,10730.496 +5255,2025-03-07T15:39:56.439620-08:00,0.0,10.732608,10732.608 +5256,2025-03-07T15:40:07.179928-08:00,0.0,10.740308,10740.308 +5257,2025-03-07T15:40:17.908557-08:00,0.0,10.728629,10728.629 +5258,2025-03-07T15:40:28.645515-08:00,0.0,10.736958,10736.958 +5259,2025-03-07T15:40:39.379685-08:00,0.0,10.73417,10734.17 +5260,2025-03-07T15:40:50.110512-08:00,0.0,10.730827,10730.827 +5261,2025-03-07T15:41:00.848515-08:00,0.0,10.738003,10738.003 +5262,2025-03-07T15:41:11.583708-08:00,0.0,10.735193,10735.193 +5263,2025-03-07T15:41:22.310294-08:00,0.0,10.726586,10726.586 +5264,2025-03-07T15:41:33.043513-08:00,0.0,10.733219,10733.219 +5265,2025-03-07T15:41:43.780528-08:00,0.0,10.737015,10737.015 +5266,2025-03-07T15:41:54.513516-08:00,0.0,10.732988,10732.988 +5267,2025-03-07T15:42:05.242655-08:00,0.0,10.729139,10729.139 +5268,2025-03-07T15:42:15.975805-08:00,0.0,10.73315,10733.15 +5269,2025-03-07T15:42:26.702758-08:00,0.0,10.726953,10726.953 +5270,2025-03-07T15:42:37.441373-08:00,0.0,10.738615,10738.615 +5271,2025-03-07T15:42:48.171631-08:00,0.0,10.730258,10730.258 +5272,2025-03-07T15:42:58.900515-08:00,0.0,10.728884,10728.884 +5273,2025-03-07T15:43:09.632625-08:00,0.0,10.73211,10732.11 +5274,2025-03-07T15:43:20.367583-08:00,0.0,10.734958,10734.958 +5275,2025-03-07T15:43:31.099667-08:00,0.0,10.732084,10732.084 +5276,2025-03-07T15:43:41.836737-08:00,0.0,10.73707,10737.07 +5277,2025-03-07T15:43:52.565513-08:00,0.0,10.728776,10728.776 +5278,2025-03-07T15:44:03.292730-08:00,0.0,10.727217,10727.217 +5279,2025-03-07T15:44:14.030769-08:00,0.0,10.738039,10738.039 +5280,2025-03-07T15:44:24.765684-08:00,0.0,10.734915,10734.915 +5281,2025-03-07T15:44:35.491510-08:00,0.0,10.725826,10725.826 +5282,2025-03-07T15:44:46.226516-08:00,0.0,10.735006,10735.006 +5283,2025-03-07T15:44:56.951412-08:00,0.0,10.724896,10724.896 +5284,2025-03-07T15:45:07.682537-08:00,0.0,10.731125,10731.125 +5285,2025-03-07T15:45:18.421515-08:00,0.0,10.738978,10738.978 +5286,2025-03-07T15:45:29.151711-08:00,0.0,10.730196,10730.196 +5287,2025-03-07T15:45:39.886537-08:00,0.0,10.734826,10734.826 +5288,2025-03-07T15:45:50.622717-08:00,0.0,10.73618,10736.18 +5289,2025-03-07T15:46:01.348833-08:00,0.0,10.726116,10726.116 +5290,2025-03-07T15:46:12.079546-08:00,0.0,10.730713,10730.713 +5291,2025-03-07T15:46:22.818591-08:00,0.0,10.739045,10739.045 +5292,2025-03-07T15:46:33.549584-08:00,0.0,10.730993,10730.993 +5293,2025-03-07T15:46:44.290739-08:00,0.0,10.741155,10741.155 +5294,2025-03-07T15:46:55.016662-08:00,0.0,10.725923,10725.923 +5295,2025-03-07T15:47:05.752517-08:00,0.0,10.735855,10735.855 +5296,2025-03-07T15:47:16.489011-08:00,0.0,10.736494,10736.494 +5297,2025-03-07T15:47:27.220699-08:00,0.0,10.731688,10731.688 +5298,2025-03-07T15:47:37.959393-08:00,0.0,10.738694,10738.694 +5299,2025-03-07T15:47:48.694710-08:00,0.0,10.735317,10735.317 +5300,2025-03-07T15:47:59.429523-08:00,0.0,10.734813,10734.813 +5301,2025-03-07T15:48:10.164547-08:00,0.0,10.735024,10735.024 +5302,2025-03-07T15:48:20.905704-08:00,0.0,10.741157,10741.157 +5303,2025-03-07T15:48:31.632515-08:00,0.0,10.726811,10726.811 +5304,2025-03-07T15:48:42.368748-08:00,0.0,10.736233,10736.233 +5305,2025-03-07T15:48:53.112731-08:00,0.0,10.743983,10743.983 +5306,2025-03-07T15:49:03.844705-08:00,0.0,10.731974,10731.974 +5307,2025-03-07T15:49:14.579834-08:00,0.0,10.735129,10735.129 +5308,2025-03-07T15:49:25.320510-08:00,0.0,10.740676,10740.676 +5309,2025-03-07T15:49:36.056716-08:00,0.0,10.736206,10736.206 +5310,2025-03-07T15:49:46.788584-08:00,0.0,10.731868,10731.868 +5311,2025-03-07T15:49:57.523735-08:00,0.0,10.735151,10735.151 +5312,2025-03-07T15:50:08.246218-08:00,0.0,10.722483,10722.483 +5313,2025-03-07T15:50:18.980739-08:00,0.0,10.734521,10734.521 +5314,2025-03-07T15:50:29.710516-08:00,0.0,10.729777,10729.777 +5315,2025-03-07T15:50:40.447595-08:00,0.0,10.737079,10737.079 +5316,2025-03-07T15:50:51.176620-08:00,0.0,10.729025,10729.025 +5317,2025-03-07T15:51:01.920519-08:00,0.0,10.743899,10743.899 +5318,2025-03-07T15:51:12.652539-08:00,0.0,10.73202,10732.02 +5319,2025-03-07T15:51:23.387918-08:00,0.0,10.735379,10735.379 +5320,2025-03-07T15:51:34.122537-08:00,0.0,10.734619,10734.619 +5321,2025-03-07T15:51:44.850688-08:00,0.0,10.728151,10728.151 +5322,2025-03-07T15:51:55.585511-08:00,0.0,10.734823,10734.823 +5323,2025-03-07T15:52:06.318516-08:00,0.0,10.733005,10733.005 +5324,2025-03-07T15:52:17.099712-08:00,0.0,10.781196,10781.196 +5325,2025-03-07T15:52:27.827691-08:00,0.0,10.727979,10727.979 +5326,2025-03-07T15:52:38.569702-08:00,0.0,10.742011,10742.011 +5327,2025-03-07T15:52:49.300036-08:00,0.0,10.730334,10730.334 +5328,2025-03-07T15:53:00.034764-08:00,0.0,10.734728,10734.728 +5329,2025-03-07T15:53:10.759700-08:00,0.0,10.724936,10724.936 +5330,2025-03-07T15:53:21.499493-08:00,0.0,10.739793,10739.793 +5331,2025-03-07T15:53:32.228710-08:00,0.0,10.729217,10729.217 +5332,2025-03-07T15:53:42.957676-08:00,0.0,10.728966,10728.966 +5333,2025-03-07T15:53:53.698565-08:00,0.0,10.740889,10740.889 +5334,2025-03-07T15:54:04.425669-08:00,0.0,10.727104,10727.104 +5335,2025-03-07T15:54:15.158670-08:00,0.0,10.733001,10733.001 +5336,2025-03-07T15:54:25.888496-08:00,0.0,10.729826,10729.826 +5337,2025-03-07T15:54:36.621496-08:00,0.0,10.733,10733.0 +5338,2025-03-07T15:54:47.354670-08:00,0.0,10.733174,10733.174 +5339,2025-03-07T15:54:48.435712-08:00,0.0,1.081042,1081.042 +5340,2025-03-07T15:54:58.089517-08:00,0.0,9.653805,9653.805 +5341,2025-03-07T15:55:08.817594-08:00,0.0,10.728077,10728.077 +5342,2025-03-07T15:55:19.549906-08:00,0.0,10.732312,10732.312 +5343,2025-03-07T15:55:30.278494-08:00,0.0,10.728588,10728.588 +5344,2025-03-07T15:55:41.008522-08:00,0.0,10.730028,10730.028 +5345,2025-03-07T15:55:51.739518-08:00,0.0,10.730996,10730.996 +5346,2025-03-07T15:56:02.477689-08:00,0.0,10.738171,10738.171 +5347,2025-03-07T15:56:13.204712-08:00,0.0,10.727023,10727.023 +5348,2025-03-07T15:56:23.930370-08:00,0.0,10.725658,10725.658 +5349,2025-03-07T15:56:34.661597-08:00,0.0,10.731227,10731.227 +5350,2025-03-07T15:56:45.394695-08:00,0.0,10.733098,10733.098 +5351,2025-03-07T15:56:56.118667-08:00,0.0,10.723972,10723.972 +5352,2025-03-07T15:57:06.860676-08:00,0.0,10.742009,10742.009 +5353,2025-03-07T15:57:17.586494-08:00,0.0,10.725818,10725.818 +5354,2025-03-07T15:57:28.318695-08:00,0.0,10.732201,10732.201 +5355,2025-03-07T15:57:39.049155-08:00,0.0,10.73046,10730.46 +5356,2025-03-07T15:57:49.776494-08:00,0.0,10.727339,10727.339 +5357,2025-03-07T15:58:00.509528-08:00,0.0,10.733034,10733.034 +5358,2025-03-07T15:58:11.235578-08:00,0.0,10.72605,10726.05 +5359,2025-03-07T15:58:21.974494-08:00,0.0,10.738916,10738.916 +5360,2025-03-07T15:58:32.703763-08:00,0.0,10.729269,10729.269 +5361,2025-03-07T15:58:43.433907-08:00,0.0,10.730144,10730.144 +5362,2025-03-07T15:58:54.174494-08:00,0.0,10.740587,10740.587 +5363,2025-03-07T15:59:04.895491-08:00,0.0,10.720997,10720.997 +5364,2025-03-07T15:59:15.630675-08:00,0.0,10.735184,10735.184 +5365,2025-03-07T15:59:26.356495-08:00,0.0,10.72582,10725.82 +5366,2025-03-07T15:59:37.087673-08:00,0.0,10.731178,10731.178 +5367,2025-03-07T15:59:47.823610-08:00,0.0,10.735937,10735.937 +5368,2025-03-07T15:59:58.564337-08:00,0.0,10.740727,10740.727 +5369,2025-03-07T16:00:09.294676-08:00,0.0,10.730339,10730.339 +5370,2025-03-07T16:00:20.022496-08:00,0.0,10.72782,10727.82 +5371,2025-03-07T16:00:30.759898-08:00,0.0,10.737402,10737.402 +5372,2025-03-07T16:00:41.496552-08:00,0.0,10.736654,10736.654 +5373,2025-03-07T16:00:52.222532-08:00,0.0,10.72598,10725.98 +5374,2025-03-07T16:01:02.958709-08:00,0.0,10.736177,10736.177 +5375,2025-03-07T16:01:13.698711-08:00,0.0,10.740002,10740.002 +5376,2025-03-07T16:01:24.430764-08:00,0.0,10.732053,10732.053 +5377,2025-03-07T16:01:35.166496-08:00,0.0,10.735732,10735.732 +5378,2025-03-07T16:01:45.899525-08:00,0.0,10.733029,10733.029 +5379,2025-03-07T16:01:56.626899-08:00,0.0,10.727374,10727.374 +5380,2025-03-07T16:02:07.359586-08:00,0.0,10.732687,10732.687 +5381,2025-03-07T16:02:18.096668-08:00,0.0,10.737082,10737.082 +5382,2025-03-07T16:02:28.831675-08:00,0.0,10.735007,10735.007 +5383,2025-03-07T16:02:39.565650-08:00,0.0,10.733975,10733.975 +5384,2025-03-07T16:02:50.298530-08:00,0.0,10.73288,10732.88 +5385,2025-03-07T16:03:01.033697-08:00,0.0,10.735167,10735.167 +5386,2025-03-07T16:03:11.766684-08:00,0.0,10.732987,10732.987 +5387,2025-03-07T16:03:22.494564-08:00,0.0,10.72788,10727.88 +5388,2025-03-07T16:03:33.227889-08:00,0.0,10.733325,10733.325 +5389,2025-03-07T16:03:43.961744-08:00,0.0,10.733855,10733.855 +5390,2025-03-07T16:03:54.687560-08:00,0.0,10.725816,10725.816 +5391,2025-03-07T16:04:05.427493-08:00,0.0,10.739933,10739.933 +5392,2025-03-07T16:04:16.153670-08:00,0.0,10.726177,10726.177 +5393,2025-03-07T16:04:26.890523-08:00,0.0,10.736853,10736.853 +5394,2025-03-07T16:04:37.624493-08:00,0.0,10.73397,10733.97 +5395,2025-03-07T16:04:48.352671-08:00,0.0,10.728178,10728.178 +5396,2025-03-07T16:04:59.088914-08:00,0.0,10.736243,10736.243 +5397,2025-03-07T16:05:09.814494-08:00,0.0,10.72558,10725.58 +5398,2025-03-07T16:05:20.548491-08:00,0.0,10.733997,10733.997 +5399,2025-03-07T16:05:31.277518-08:00,0.0,10.729027,10729.027 +5400,2025-03-07T16:05:42.004496-08:00,0.0,10.726978,10726.978 +5401,2025-03-07T16:05:52.741520-08:00,0.0,10.737024,10737.024 +5402,2025-03-07T16:06:03.471714-08:00,0.0,10.730194,10730.194 +5403,2025-03-07T16:06:14.200517-08:00,0.0,10.728803,10728.803 +5404,2025-03-07T16:06:24.937498-08:00,0.0,10.736981,10736.981 +5405,2025-03-07T16:06:35.668673-08:00,0.0,10.731175,10731.175 +5406,2025-03-07T16:06:46.400587-08:00,0.0,10.731914,10731.914 +5407,2025-03-07T16:06:57.140771-08:00,0.0,10.740184,10740.184 +5408,2025-03-07T16:07:07.868787-08:00,0.0,10.728016,10728.016 +5409,2025-03-07T16:07:18.605869-08:00,0.0,10.737082,10737.082 +5410,2025-03-07T16:07:29.337493-08:00,0.0,10.731624,10731.624 +5411,2025-03-07T16:07:40.061497-08:00,0.0,10.724004,10724.004 +5412,2025-03-07T16:07:50.799511-08:00,0.0,10.738014,10738.014 +5413,2025-03-07T16:08:01.534841-08:00,0.0,10.73533,10735.33 +5414,2025-03-07T16:08:12.257492-08:00,0.0,10.722651,10722.651 +5415,2025-03-07T16:08:22.989943-08:00,0.0,10.732451,10732.451 +5416,2025-03-07T16:08:33.720524-08:00,0.0,10.730581,10730.581 +5417,2025-03-07T16:08:44.452699-08:00,0.0,10.732175,10732.175 +5418,2025-03-07T16:08:55.179663-08:00,0.0,10.726964,10726.964 +5419,2025-03-07T16:09:05.914519-08:00,0.0,10.734856,10734.856 +5420,2025-03-07T16:09:16.641716-08:00,0.0,10.727197,10727.197 +5421,2025-03-07T16:09:27.375673-08:00,0.0,10.733957,10733.957 +5422,2025-03-07T16:09:38.104500-08:00,0.0,10.728827,10728.827 +5423,2025-03-07T16:09:48.837490-08:00,0.0,10.73299,10732.99 +5424,2025-03-07T16:09:59.565567-08:00,0.0,10.728077,10728.077 +5425,2025-03-07T16:10:10.293525-08:00,0.0,10.727958,10727.958 +5426,2025-03-07T16:10:21.019631-08:00,0.0,10.726106,10726.106 +5427,2025-03-07T16:10:31.757541-08:00,0.0,10.73791,10737.91 +5428,2025-03-07T16:10:42.485928-08:00,0.0,10.728387,10728.387 +5429,2025-03-07T16:10:53.217703-08:00,0.0,10.731775,10731.775 +5430,2025-03-07T16:11:03.953492-08:00,0.0,10.735789,10735.789 +5431,2025-03-07T16:11:14.685705-08:00,0.0,10.732213,10732.213 +5432,2025-03-07T16:11:25.415492-08:00,0.0,10.729787,10729.787 +5433,2025-03-07T16:11:36.145873-08:00,0.0,10.730381,10730.381 +5434,2025-03-07T16:11:46.883968-08:00,0.0,10.738095,10738.095 +5435,2025-03-07T16:11:57.611493-08:00,0.0,10.727525,10727.525 +5436,2025-03-07T16:12:08.342493-08:00,0.0,10.731,10731.0 +5437,2025-03-07T16:12:19.079505-08:00,0.0,10.737012,10737.012 +5438,2025-03-07T16:12:29.807523-08:00,0.0,10.728018,10728.018 +5439,2025-03-07T16:12:40.544493-08:00,0.0,10.73697,10736.97 +5440,2025-03-07T16:12:51.270700-08:00,0.0,10.726207,10726.207 +5441,2025-03-07T16:13:02.002701-08:00,0.0,10.732001,10732.001 +5442,2025-03-07T16:13:12.729495-08:00,0.0,10.726794,10726.794 +5443,2025-03-07T16:13:23.461496-08:00,0.0,10.732001,10732.001 +5444,2025-03-07T16:13:34.188733-08:00,0.0,10.727237,10727.237 +5445,2025-03-07T16:13:44.922045-08:00,0.0,10.733312,10733.312 +5446,2025-03-07T16:13:55.659940-08:00,0.0,10.737895,10737.895 +5447,2025-03-07T16:14:06.389967-08:00,0.0,10.730027,10730.027 +5448,2025-03-07T16:14:17.118694-08:00,0.0,10.728727,10728.727 +5449,2025-03-07T16:14:27.847708-08:00,0.0,10.729014,10729.014 +5450,2025-03-07T16:14:38.570493-08:00,0.0,10.722785,10722.785 +5451,2025-03-07T16:14:49.305498-08:00,0.0,10.735005,10735.005 +5452,2025-03-07T16:15:00.041673-08:00,0.0,10.736175,10736.175 +5453,2025-03-07T16:15:10.765493-08:00,0.0,10.72382,10723.82 +5454,2025-03-07T16:15:21.494491-08:00,0.0,10.728998,10728.998 +5455,2025-03-07T16:15:32.231530-08:00,0.0,10.737039,10737.039 +5456,2025-03-07T16:15:42.956796-08:00,0.0,10.725266,10725.266 +5457,2025-03-07T16:15:53.686708-08:00,0.0,10.729912,10729.912 +5458,2025-03-07T16:16:04.418671-08:00,0.0,10.731963,10731.963 +5459,2025-03-07T16:16:15.152254-08:00,0.0,10.733583,10733.583 +5460,2025-03-07T16:16:25.879524-08:00,0.0,10.72727,10727.27 +5461,2025-03-07T16:16:36.614494-08:00,0.0,10.73497,10734.97 +5462,2025-03-07T16:16:47.345575-08:00,0.0,10.731081,10731.081 +5463,2025-03-07T16:16:58.068495-08:00,0.0,10.72292,10722.92 +5464,2025-03-07T16:17:08.798564-08:00,0.0,10.730069,10730.069 +5465,2025-03-07T16:17:19.528678-08:00,0.0,10.730114,10730.114 +5466,2025-03-07T16:17:30.261496-08:00,0.0,10.732818,10732.818 +5467,2025-03-07T16:17:40.995886-08:00,0.0,10.73439,10734.39 +5468,2025-03-07T16:17:51.728796-08:00,0.0,10.73291,10732.91 +5469,2025-03-07T16:18:02.457496-08:00,0.0,10.7287,10728.7 +5470,2025-03-07T16:18:13.190689-08:00,0.0,10.733193,10733.193 +5471,2025-03-07T16:18:23.924674-08:00,0.0,10.733985,10733.985 +5472,2025-03-07T16:18:34.642566-08:00,0.0,10.717892,10717.892 +5473,2025-03-07T16:18:45.378573-08:00,0.0,10.736007,10736.007 +5474,2025-03-07T16:18:56.109567-08:00,0.0,10.730994,10730.994 +5475,2025-03-07T16:19:06.839705-08:00,0.0,10.730138,10730.138 +5476,2025-03-07T16:19:17.568709-08:00,0.0,10.729004,10729.004 +5477,2025-03-07T16:19:28.295563-08:00,0.0,10.726854,10726.854 +5478,2025-03-07T16:19:39.027490-08:00,0.0,10.731927,10731.927 +5479,2025-03-07T16:19:49.759495-08:00,0.0,10.732005,10732.005 +5480,2025-03-07T16:20:00.493358-08:00,0.0,10.733863,10733.863 +5481,2025-03-07T16:20:11.224493-08:00,0.0,10.731135,10731.135 +5482,2025-03-07T16:20:21.958711-08:00,0.0,10.734218,10734.218 +5483,2025-03-07T16:20:32.687687-08:00,0.0,10.728976,10728.976 +5484,2025-03-07T16:20:43.415558-08:00,0.0,10.727871,10727.871 +5485,2025-03-07T16:20:54.152475-08:00,0.0,10.736917,10736.917 +5486,2025-03-07T16:21:04.875555-08:00,0.0,10.72308,10723.08 +5487,2025-03-07T16:21:15.612496-08:00,0.0,10.736941,10736.941 +5488,2025-03-07T16:21:26.341656-08:00,0.0,10.72916,10729.16 +5489,2025-03-07T16:21:37.070701-08:00,0.0,10.729045,10729.045 +5490,2025-03-07T16:21:47.793495-08:00,0.0,10.722794,10722.794 +5491,2025-03-07T16:21:58.520669-08:00,0.0,10.727174,10727.174 +5492,2025-03-07T16:22:09.259377-08:00,0.0,10.738708,10738.708 +5493,2025-03-07T16:22:19.984752-08:00,0.0,10.725375,10725.375 +5494,2025-03-07T16:22:30.713091-08:00,0.0,10.728339,10728.339 +5495,2025-03-07T16:22:41.443493-08:00,0.0,10.730402,10730.402 +5496,2025-03-07T16:22:52.164741-08:00,0.0,10.721248,10721.248 +5497,2025-03-07T16:23:02.894311-08:00,0.0,10.72957,10729.57 +5498,2025-03-07T16:23:13.624497-08:00,0.0,10.730186,10730.186 +5499,2025-03-07T16:23:24.352671-08:00,0.0,10.728174,10728.174 +5500,2025-03-07T16:23:35.078493-08:00,0.0,10.725822,10725.822 +5501,2025-03-07T16:23:45.812692-08:00,0.0,10.734199,10734.199 +5502,2025-03-07T16:23:56.544676-08:00,0.0,10.731984,10731.984 +5503,2025-03-07T16:23:56.602604-08:00,0.0,0.057928,57.928 +5504,2025-03-07T16:24:07.265614-08:00,0.0,10.66301,10663.01 +5505,2025-03-07T16:24:18.001496-08:00,0.0,10.735882,10735.882 +5506,2025-03-07T16:24:28.727841-08:00,0.0,10.726345,10726.345 +5507,2025-03-07T16:24:39.460021-08:00,0.0,10.73218,10732.18 +5508,2025-03-07T16:24:50.195497-08:00,0.0,10.735476,10735.476 +5509,2025-03-07T16:25:00.921826-08:00,0.0,10.726329,10726.329 +5510,2025-03-07T16:25:11.648489-08:00,0.0,10.726663,10726.663 +5511,2025-03-07T16:25:22.379614-08:00,0.0,10.731125,10731.125 +5512,2025-03-07T16:25:33.102856-08:00,0.0,10.723242,10723.242 +5513,2025-03-07T16:25:43.831642-08:00,0.0,10.728786,10728.786 +5514,2025-03-07T16:25:54.558621-08:00,0.0,10.726979,10726.979 +5515,2025-03-07T16:26:05.287600-08:00,0.0,10.728979,10728.979 +5516,2025-03-07T16:26:16.010678-08:00,0.0,10.723078,10723.078 +5517,2025-03-07T16:26:26.748431-08:00,0.0,10.737753,10737.753 +5518,2025-03-07T16:26:37.470496-08:00,0.0,10.722065,10722.065 +5519,2025-03-07T16:26:48.192495-08:00,0.0,10.721999,10721.999 +5520,2025-03-07T16:26:58.924517-08:00,0.0,10.732022,10732.022 +5521,2025-03-07T16:27:09.645519-08:00,0.0,10.721002,10721.002 +5522,2025-03-07T16:27:20.373953-08:00,0.0,10.728434,10728.434 +5523,2025-03-07T16:27:31.104686-08:00,416.0,10.730733,10730.733 +5524,2025-03-07T16:27:41.832498-08:00,393.0,10.727812,10727.812 +5525,2025-03-07T16:27:52.554598-08:00,374.0,10.7221,10722.1 +5526,2025-03-07T16:28:03.282494-08:00,322.0,10.727896,10727.896 +5527,2025-03-07T16:28:14.008701-08:00,378.0,10.726207,10726.207 +5528,2025-03-07T16:28:24.737958-08:00,397.0,10.729257,10729.257 +5529,2025-03-07T16:28:35.473497-08:00,370.0,10.735539,10735.539 +5530,2025-03-07T16:28:46.203657-08:00,410.0,10.73016,10730.16 +5531,2025-03-07T16:28:56.933488-08:00,304.0,10.729831,10729.831 +5532,2025-03-07T16:29:07.653735-08:00,0.0,10.720247,10720.247 +5533,2025-03-07T16:29:18.382495-08:00,0.0,10.72876,10728.76 +5534,2025-03-07T16:29:29.113523-08:00,0.0,10.731028,10731.028 +5535,2025-03-07T16:29:39.845500-08:00,0.0,10.731977,10731.977 +5536,2025-03-07T16:29:50.566491-08:00,0.0,10.720991,10720.991 +5537,2025-03-07T16:30:01.290686-08:00,0.0,10.724195,10724.195 +5538,2025-03-07T16:30:12.019493-08:00,0.0,10.728807,10728.807 +5539,2025-03-07T16:30:22.750497-08:00,0.0,10.731004,10731.004 +5540,2025-03-07T16:30:33.476666-08:00,0.0,10.726169,10726.169 +5541,2025-03-07T16:30:44.201493-08:00,0.0,10.724827,10724.827 +5542,2025-03-07T16:30:54.933696-08:00,0.0,10.732203,10732.203 +5543,2025-03-07T16:31:05.660367-08:00,0.0,10.726671,10726.671 +5544,2025-03-07T16:31:16.392496-08:00,0.0,10.732129,10732.129 +5545,2025-03-07T16:31:27.122648-08:00,0.0,10.730152,10730.152 +5546,2025-03-07T16:31:37.846526-08:00,0.0,10.723878,10723.878 +5547,2025-03-07T16:31:48.568498-08:00,0.0,10.721972,10721.972 +5548,2025-03-07T16:31:59.296356-08:00,0.0,10.727858,10727.858 +5549,2025-03-07T16:32:10.027493-08:00,0.0,10.731137,10731.137 +5550,2025-03-07T16:32:20.756528-08:00,0.0,10.729035,10729.035 +5551,2025-03-07T16:32:31.479686-08:00,0.0,10.723158,10723.158 +5552,2025-03-07T16:32:42.210711-08:00,0.0,10.731025,10731.025 +5553,2025-03-07T16:32:52.932666-08:00,0.0,10.721955,10721.955 +5554,2025-03-07T16:33:03.665611-08:00,0.0,10.732945,10732.945 +5555,2025-03-07T16:33:14.389239-08:00,0.0,10.723628,10723.628 +5556,2025-03-07T16:33:25.120305-08:00,0.0,10.731066,10731.066 +5557,2025-03-07T16:33:35.844013-08:00,0.0,10.723708,10723.708 +5558,2025-03-07T16:33:46.571798-08:00,0.0,10.727785,10727.785 +5559,2025-03-07T16:33:57.309719-08:00,0.0,10.737921,10737.921 +5560,2025-03-07T16:34:08.036493-08:00,0.0,10.726774,10726.774 +5561,2025-03-07T16:34:18.758682-08:00,0.0,10.722189,10722.189 +5562,2025-03-07T16:34:29.497771-08:00,0.0,10.739089,10739.089 +5563,2025-03-07T16:34:40.221668-08:00,0.0,10.723897,10723.897 +5564,2025-03-07T16:34:50.959676-08:00,0.0,10.738008,10738.008 +5565,2025-03-07T16:35:01.681701-08:00,0.0,10.722025,10722.025 +5566,2025-03-07T16:35:12.413494-08:00,0.0,10.731793,10731.793 +5567,2025-03-07T16:35:23.152906-08:00,0.0,10.739412,10739.412 +5568,2025-03-07T16:35:33.877657-08:00,0.0,10.724751,10724.751 +5569,2025-03-07T16:35:44.607498-08:00,0.0,10.729841,10729.841 +5570,2025-03-07T16:35:55.340205-08:00,0.0,10.732707,10732.707 +5571,2025-03-07T16:36:06.063494-08:00,0.0,10.723289,10723.289 +5572,2025-03-07T16:36:16.789557-08:00,0.0,10.726063,10726.063 +5573,2025-03-07T16:36:27.530654-08:00,0.0,10.741097,10741.097 +5574,2025-03-07T16:36:38.257497-08:00,0.0,10.726843,10726.843 +5575,2025-03-07T16:36:48.979899-08:00,0.0,10.722402,10722.402 +5576,2025-03-07T16:36:59.709810-08:00,0.0,10.729911,10729.911 +5577,2025-03-07T16:37:10.441498-08:00,0.0,10.731688,10731.688 +5578,2025-03-07T16:37:21.177494-08:00,0.0,10.735996,10735.996 +5579,2025-03-07T16:37:31.905012-08:00,0.0,10.727518,10727.518 +5580,2025-03-07T16:37:42.636704-08:00,0.0,10.731692,10731.692 +5581,2025-03-07T16:37:53.370571-08:00,0.0,10.733867,10733.867 +5582,2025-03-07T16:38:04.097679-08:00,0.0,10.727108,10727.108 +5583,2025-03-07T16:38:14.821490-08:00,0.0,10.723811,10723.811 +5584,2025-03-07T16:38:25.560497-08:00,0.0,10.739007,10739.007 +5585,2025-03-07T16:38:36.289875-08:00,0.0,10.729378,10729.378 +5586,2025-03-07T16:38:47.020494-08:00,0.0,10.730619,10730.619 +5587,2025-03-07T16:38:57.749764-08:00,0.0,10.72927,10729.27 +5588,2025-03-07T16:39:08.474494-08:00,0.0,10.72473,10724.73 +5589,2025-03-07T16:39:19.201032-08:00,0.0,10.726538,10726.538 +5590,2025-03-07T16:39:29.933496-08:00,0.0,10.732464,10732.464 +5591,2025-03-07T16:39:40.667716-08:00,0.0,10.73422,10734.22 +5592,2025-03-07T16:39:51.399492-08:00,0.0,10.731776,10731.776 +5593,2025-03-07T16:40:02.129937-08:00,0.0,10.730445,10730.445 +5594,2025-03-07T16:40:12.863676-08:00,0.0,10.733739,10733.739 +5595,2025-03-07T16:40:23.590495-08:00,0.0,10.726819,10726.819 +5596,2025-03-07T16:40:34.316714-08:00,0.0,10.726219,10726.219 +5597,2025-03-07T16:40:45.056704-08:00,0.0,10.73999,10739.99 +5598,2025-03-07T16:40:55.786708-08:00,0.0,10.730004,10730.004 +5599,2025-03-07T16:41:06.515668-08:00,0.0,10.72896,10728.96 +5600,2025-03-07T16:41:17.254720-08:00,0.0,10.739052,10739.052 +5601,2025-03-07T16:41:27.977494-08:00,0.0,10.722774,10722.774 +5602,2025-03-07T16:41:38.715254-08:00,0.0,10.73776,10737.76 +5603,2025-03-07T16:41:49.441959-08:00,0.0,10.726705,10726.705 +5604,2025-03-07T16:42:00.172493-08:00,0.0,10.730534,10730.534 +5605,2025-03-07T16:42:10.893682-08:00,0.0,10.721189,10721.189 +5606,2025-03-07T16:42:21.630686-08:00,0.0,10.737004,10737.004 +5607,2025-03-07T16:42:32.362495-08:00,0.0,10.731809,10731.809 +5608,2025-03-07T16:42:43.092708-08:00,0.0,10.730213,10730.213 +5609,2025-03-07T16:42:53.817058-08:00,0.0,10.72435,10724.35 +5610,2025-03-07T16:43:04.552496-08:00,0.0,10.735438,10735.438 +5611,2025-03-07T16:43:15.280679-08:00,0.0,10.728183,10728.183 +5612,2025-03-07T16:43:26.011679-08:00,0.0,10.731,10731.0 +5613,2025-03-07T16:43:36.740771-08:00,0.0,10.729092,10729.092 +5614,2025-03-07T16:43:47.474495-08:00,0.0,10.733724,10733.724 +5615,2025-03-07T16:43:58.199924-08:00,0.0,10.725429,10725.429 +5616,2025-03-07T16:44:08.936593-08:00,0.0,10.736669,10736.669 +5617,2025-03-07T16:44:19.665556-08:00,0.0,10.728963,10728.963 +5618,2025-03-07T16:44:30.392282-08:00,0.0,10.726726,10726.726 +5619,2025-03-07T16:44:41.132552-08:00,0.0,10.74027,10740.27 +5620,2025-03-07T16:44:51.858831-08:00,0.0,10.726279,10726.279 +5621,2025-03-07T16:45:02.585670-08:00,0.0,10.726839,10726.839 +5622,2025-03-07T16:45:13.323516-08:00,0.0,10.737846,10737.846 +5623,2025-03-07T16:45:24.047492-08:00,0.0,10.723976,10723.976 +5624,2025-03-07T16:45:34.785271-08:00,0.0,10.737779,10737.779 +5625,2025-03-07T16:45:45.509698-08:00,0.0,10.724427,10724.427 +5626,2025-03-07T16:45:56.237593-08:00,0.0,10.727895,10727.895 +5627,2025-03-07T16:46:06.975550-08:00,0.0,10.737957,10737.957 +5628,2025-03-07T16:46:17.695699-08:00,0.0,10.720149,10720.149 +5629,2025-03-07T16:46:28.428830-08:00,0.0,10.733131,10733.131 +5630,2025-03-07T16:46:39.154899-08:00,0.0,10.726069,10726.069 +5631,2025-03-07T16:46:49.886493-08:00,0.0,10.731594,10731.594 +5632,2025-03-07T16:47:00.618496-08:00,0.0,10.732003,10732.003 +5633,2025-03-07T16:47:11.347363-08:00,0.0,10.728867,10728.867 +5634,2025-03-07T16:47:22.078655-08:00,0.0,10.731292,10731.292 +5635,2025-03-07T16:47:32.806725-08:00,0.0,10.72807,10728.07 +5636,2025-03-07T16:47:43.535727-08:00,0.0,10.729002,10729.002 +5637,2025-03-07T16:47:54.267918-08:00,0.0,10.732191,10732.191 +5638,2025-03-07T16:48:04.991689-08:00,0.0,10.723771,10723.771 +5639,2025-03-07T16:48:15.719708-08:00,0.0,10.728019,10728.019 +5640,2025-03-07T16:48:26.453499-08:00,0.0,10.733791,10733.791 +5641,2025-03-07T16:48:37.178664-08:00,0.0,10.725165,10725.165 +5642,2025-03-07T16:48:47.898697-08:00,0.0,10.720033,10720.033 +5643,2025-03-07T16:48:58.631520-08:00,0.0,10.732823,10732.823 +5644,2025-03-07T16:49:09.355586-08:00,0.0,10.724066,10724.066 +5645,2025-03-07T16:49:20.082498-08:00,0.0,10.726912,10726.912 +5646,2025-03-07T16:49:30.814954-08:00,0.0,10.732456,10732.456 +5647,2025-03-07T16:49:41.538559-08:00,0.0,10.723605,10723.605 +5648,2025-03-07T16:49:52.275602-08:00,0.0,10.737043,10737.043 +5649,2025-03-07T16:50:03.006667-08:00,0.0,10.731065,10731.065 +5650,2025-03-07T16:50:13.726731-08:00,0.0,10.720064,10720.064 +5651,2025-03-07T16:50:24.465497-08:00,0.0,10.738766,10738.766 +5652,2025-03-07T16:50:35.185620-08:00,0.0,10.720123,10720.123 +5653,2025-03-07T16:50:45.926642-08:00,0.0,10.741022,10741.022 +5654,2025-03-07T16:50:56.650559-08:00,0.0,10.723917,10723.917 +5655,2025-03-07T16:51:07.379812-08:00,0.0,10.729253,10729.253 +5656,2025-03-07T16:51:18.119719-08:00,0.0,10.739907,10739.907 +5657,2025-03-07T16:51:28.843763-08:00,0.0,10.724044,10724.044 +5658,2025-03-07T16:51:39.586669-08:00,0.0,10.742906,10742.906 +5659,2025-03-07T16:51:50.313493-08:00,0.0,10.726824,10726.824 +5660,2025-03-07T16:52:01.042911-08:00,0.0,10.729418,10729.418 +5661,2025-03-07T16:52:11.777495-08:00,0.0,10.734584,10734.584 +5662,2025-03-07T16:52:22.511205-08:00,0.0,10.73371,10733.71 +5663,2025-03-07T16:52:33.244777-08:00,0.0,10.733572,10733.572 +5664,2025-03-07T16:52:43.968922-08:00,0.0,10.724145,10724.145 +5665,2025-03-07T16:52:54.701930-08:00,0.0,10.733008,10733.008 +5666,2025-03-07T16:53:05.432745-08:00,0.0,10.730815,10730.815 +5667,2025-03-07T16:53:16.170083-08:00,0.0,10.737338,10737.338 +5668,2025-03-07T16:53:26.901906-08:00,0.0,10.731823,10731.823 +5669,2025-03-07T16:53:37.633051-08:00,0.0,10.731145,10731.145 +5670,2025-03-07T16:53:48.357753-08:00,0.0,10.724702,10724.702 +5671,2025-03-07T16:53:59.088924-08:00,0.0,10.731171,10731.171 +5672,2025-03-07T16:54:09.825745-08:00,0.0,10.736821,10736.821 +5673,2025-03-07T16:54:20.556746-08:00,0.0,10.731001,10731.001 +5674,2025-03-07T16:54:31.290747-08:00,0.0,10.734001,10734.001 +5675,2025-03-07T16:54:42.024926-08:00,0.0,10.734179,10734.179 +5676,2025-03-07T16:54:52.749748-08:00,0.0,10.724822,10724.822 +5677,2025-03-07T16:55:03.481083-08:00,0.0,10.731335,10731.335 +5678,2025-03-07T16:55:14.216157-08:00,0.0,10.735074,10735.074 +5679,2025-03-07T16:55:24.948743-08:00,0.0,10.732586,10732.586 +5680,2025-03-07T16:55:35.677881-08:00,0.0,10.729138,10729.138 +5681,2025-03-07T16:55:46.402947-08:00,0.0,10.725066,10725.066 +5682,2025-03-07T16:55:57.136746-08:00,0.0,10.733799,10733.799 +5683,2025-03-07T16:56:07.858135-08:00,0.0,10.721389,10721.389 +5684,2025-03-07T16:56:18.587753-08:00,0.0,10.729618,10729.618 +5685,2025-03-07T16:56:29.322746-08:00,0.0,10.734993,10734.993 +5686,2025-03-07T16:56:40.050934-08:00,0.0,10.728188,10728.188 +5687,2025-03-07T16:56:50.788455-08:00,0.0,10.737521,10737.521 +5688,2025-03-07T16:57:01.519769-08:00,0.0,10.731314,10731.314 +5689,2025-03-07T16:57:12.245027-08:00,0.0,10.725258,10725.258 +5690,2025-03-07T16:57:22.982937-08:00,0.0,10.73791,10737.91 +5691,2025-03-07T16:57:33.712772-08:00,0.0,10.729835,10729.835 +5692,2025-03-07T16:57:44.438962-08:00,0.0,10.72619,10726.19 +5693,2025-03-07T16:57:55.169077-08:00,0.0,10.730115,10730.115 +5694,2025-03-07T16:58:05.899746-08:00,0.0,10.730669,10730.669 +5695,2025-03-07T16:58:16.624588-08:00,0.0,10.724842,10724.842 +5696,2025-03-07T16:58:27.362577-08:00,0.0,10.737989,10737.989 +5697,2025-03-07T16:58:38.090752-08:00,0.0,10.728175,10728.175 +5698,2025-03-07T16:58:48.819812-08:00,0.0,10.72906,10729.06 +5699,2025-03-07T16:58:59.547982-08:00,0.0,10.72817,10728.17 +5700,2025-03-07T16:59:10.278750-08:00,0.0,10.730768,10730.768 +5701,2025-03-07T16:59:21.013172-08:00,0.0,10.734422,10734.422 +5702,2025-03-07T16:59:31.746143-08:00,0.0,10.732971,10732.971 +5703,2025-03-07T16:59:42.471746-08:00,0.0,10.725603,10725.603 +5704,2025-03-07T16:59:53.203748-08:00,0.0,10.732002,10732.002 +5705,2025-03-07T17:00:03.930768-08:00,0.0,10.72702,10727.02 +5706,2025-03-07T17:00:14.665041-08:00,0.0,10.734273,10734.273 +5707,2025-03-07T17:00:25.386972-08:00,0.0,10.721931,10721.931 +5708,2025-03-07T17:00:36.117746-08:00,0.0,10.730774,10730.774 +5709,2025-03-07T17:00:46.849739-08:00,0.0,10.731993,10731.993 +5710,2025-03-07T17:00:57.580899-08:00,0.0,10.73116,10731.16 +5711,2025-03-07T17:01:08.312874-08:00,0.0,10.731975,10731.975 +5712,2025-03-07T17:01:19.032940-08:00,0.0,10.720066,10720.066 +5713,2025-03-07T17:01:29.761593-08:00,0.0,10.728653,10728.653 +5714,2025-03-07T17:01:40.492265-08:00,0.0,10.730672,10730.672 +5715,2025-03-07T17:01:51.214894-08:00,0.0,10.722629,10722.629 +5716,2025-03-07T17:02:01.945952-08:00,0.0,10.731058,10731.058 +5717,2025-03-07T17:02:12.677740-08:00,0.0,10.731788,10731.788 +5718,2025-03-07T17:02:23.406610-08:00,0.0,10.72887,10728.87 +5719,2025-03-07T17:02:34.141363-08:00,0.0,10.734753,10734.753 +5720,2025-03-07T17:02:44.871745-08:00,0.0,10.730382,10730.382 +5721,2025-03-07T17:02:55.604773-08:00,0.0,10.733028,10733.028 +5722,2025-03-07T17:03:06.326746-08:00,0.0,10.721973,10721.973 +5723,2025-03-07T17:03:17.054793-08:00,0.0,10.728047,10728.047 +5724,2025-03-07T17:03:27.791935-08:00,0.0,10.737142,10737.142 +5725,2025-03-07T17:03:38.513287-08:00,0.0,10.721352,10721.352 +5726,2025-03-07T17:03:49.241013-08:00,0.0,10.727726,10727.726 +5727,2025-03-07T17:03:59.974919-08:00,0.0,10.733906,10733.906 +5728,2025-03-07T17:04:10.704773-08:00,0.0,10.729854,10729.854 +5729,2025-03-07T17:04:21.441740-08:00,0.0,10.736967,10736.967 +5730,2025-03-07T17:04:32.166916-08:00,0.0,10.725176,10725.176 +5731,2025-03-07T17:04:42.900773-08:00,0.0,10.733857,10733.857 +5732,2025-03-07T17:04:53.629746-08:00,0.0,10.728973,10728.973 +5733,2025-03-07T17:05:04.353524-08:00,0.0,10.723778,10723.778 +5734,2025-03-07T17:05:15.087743-08:00,0.0,10.734219,10734.219 +5735,2025-03-07T17:05:25.820745-08:00,0.0,10.733002,10733.002 +5736,2025-03-07T17:05:36.545988-08:00,0.0,10.725243,10725.243 +5737,2025-03-07T17:05:47.274744-08:00,0.0,10.728756,10728.756 +5738,2025-03-07T17:05:58.012747-08:00,0.0,10.738003,10738.003 +5739,2025-03-07T17:06:08.738936-08:00,0.0,10.726189,10726.189 +5740,2025-03-07T17:06:19.470928-08:00,0.0,10.731992,10731.992 +5741,2025-03-07T17:06:30.203076-08:00,0.0,10.732148,10732.148 +5742,2025-03-07T17:06:40.929604-08:00,0.0,10.726528,10726.528 +5743,2025-03-07T17:06:51.661741-08:00,0.0,10.732137,10732.137 +5744,2025-03-07T17:07:02.398774-08:00,0.0,10.737033,10737.033 +5745,2025-03-07T17:07:13.122943-08:00,0.0,10.724169,10724.169 +5746,2025-03-07T17:07:23.861057-08:00,0.0,10.738114,10738.114 +5747,2025-03-07T17:07:34.588745-08:00,0.0,10.727688,10727.688 +5748,2025-03-07T17:07:45.316923-08:00,0.0,10.728178,10728.178 +5749,2025-03-07T17:07:56.048788-08:00,0.0,10.731865,10731.865 +5750,2025-03-07T17:08:06.774747-08:00,0.0,10.725959,10725.959 +5751,2025-03-07T17:08:17.501910-08:00,0.0,10.727163,10727.163 +5752,2025-03-07T17:08:28.228748-08:00,0.0,10.726838,10726.838 +5753,2025-03-07T17:08:38.959942-08:00,0.0,10.731194,10731.194 +5754,2025-03-07T17:08:49.694806-08:00,0.0,10.734864,10734.864 +5755,2025-03-07T17:09:00.432743-08:00,0.0,10.737937,10737.937 +5756,2025-03-07T17:09:11.161961-08:00,0.0,10.729218,10729.218 +5757,2025-03-07T17:09:21.893942-08:00,0.0,10.731981,10731.981 +5758,2025-03-07T17:09:32.626765-08:00,0.0,10.732823,10732.823 +5759,2025-03-07T17:09:43.360746-08:00,0.0,10.733981,10733.981 +5760,2025-03-07T17:09:54.092952-08:00,0.0,10.732206,10732.206 +5761,2025-03-07T17:10:04.823232-08:00,0.0,10.73028,10730.28 +5762,2025-03-07T17:10:15.547743-08:00,0.0,10.724511,10724.511 +5763,2025-03-07T17:10:26.272913-08:00,0.0,10.72517,10725.17 +5764,2025-03-07T17:10:37.003210-08:00,0.0,10.730297,10730.297 +5765,2025-03-07T17:10:47.729014-08:00,0.0,10.725804,10725.804 +5766,2025-03-07T17:10:58.466097-08:00,0.0,10.737083,10737.083 +5767,2025-03-07T17:11:09.193280-08:00,0.0,10.727183,10727.183 +5768,2025-03-07T17:11:19.917747-08:00,0.0,10.724467,10724.467 +5769,2025-03-07T17:11:30.646772-08:00,0.0,10.729025,10729.025 +5770,2025-03-07T17:11:41.381743-08:00,0.0,10.734971,10734.971 +5771,2025-03-07T17:11:52.104952-08:00,0.0,10.723209,10723.209 +5772,2025-03-07T17:12:02.837943-08:00,0.0,10.732991,10732.991 +5773,2025-03-07T17:12:13.569743-08:00,0.0,10.7318,10731.8 +5774,2025-03-07T17:12:24.298752-08:00,0.0,10.729009,10729.009 +5775,2025-03-07T17:12:35.033570-08:00,0.0,10.734818,10734.818 +5776,2025-03-07T17:12:45.750830-08:00,0.0,10.71726,10717.26 +5777,2025-03-07T17:12:56.478053-08:00,0.0,10.727223,10727.223 +5778,2025-03-07T17:13:07.206035-08:00,0.0,10.727982,10727.982 +5779,2025-03-07T17:13:17.933746-08:00,0.0,10.727711,10727.711 +5780,2025-03-07T17:13:28.672909-08:00,0.0,10.739163,10739.163 +5781,2025-03-07T17:13:39.394006-08:00,0.0,10.721097,10721.097 +5782,2025-03-07T17:13:50.124076-08:00,0.0,10.73007,10730.07 +5783,2025-03-07T17:14:00.841743-08:00,0.0,10.717667,10717.667 +5784,2025-03-07T17:14:11.576952-08:00,0.0,10.735209,10735.209 +5785,2025-03-07T17:14:22.298942-08:00,0.0,10.72199,10721.99 +5786,2025-03-07T17:14:33.031746-08:00,0.0,10.732804,10732.804 +5787,2025-03-07T17:14:43.758927-08:00,0.0,10.727181,10727.181 +5788,2025-03-07T17:14:54.482808-08:00,0.0,10.723881,10723.881 +5789,2025-03-07T17:15:05.210746-08:00,0.0,10.727938,10727.938 +5790,2025-03-07T17:15:15.942925-08:00,0.0,10.732179,10732.179 +5791,2025-03-07T17:15:26.666960-08:00,0.0,10.724035,10724.035 +5792,2025-03-07T17:15:37.393415-08:00,0.0,10.726455,10726.455 +5793,2025-03-07T17:15:48.122771-08:00,0.0,10.729356,10729.356 +5794,2025-03-07T17:15:58.846369-08:00,0.0,10.723598,10723.598 +5795,2025-03-07T17:16:09.577921-08:00,0.0,10.731552,10731.552 +5796,2025-03-07T17:16:20.307745-08:00,0.0,10.729824,10729.824 +5797,2025-03-07T17:16:31.043501-08:00,0.0,10.735756,10735.756 +5798,2025-03-07T17:16:41.772541-08:00,0.0,10.72904,10729.04 +5799,2025-03-07T17:16:52.496947-08:00,0.0,10.724406,10724.406 +5800,2025-03-07T17:17:03.221821-08:00,0.0,10.724874,10724.874 +5801,2025-03-07T17:17:13.952916-08:00,0.0,10.731095,10731.095 +5802,2025-03-07T17:17:24.686770-08:00,0.0,10.733854,10733.854 +5803,2025-03-07T17:17:35.416694-08:00,0.0,10.729924,10729.924 +5804,2025-03-07T17:17:46.143764-08:00,0.0,10.72707,10727.07 +5805,2025-03-07T17:17:56.859954-08:00,0.0,10.71619,10716.19 +5806,2025-03-07T17:18:07.590431-08:00,0.0,10.730477,10730.477 +5807,2025-03-07T17:18:18.318746-08:00,0.0,10.728315,10728.315 +5808,2025-03-07T17:18:29.053415-08:00,0.0,10.734669,10734.669 +5809,2025-03-07T17:18:39.776969-08:00,0.0,10.723554,10723.554 +5810,2025-03-07T17:18:50.499910-08:00,0.0,10.722941,10722.941 +5811,2025-03-07T17:19:01.236002-08:00,0.0,10.736092,10736.092 +5812,2025-03-07T17:19:11.954749-08:00,0.0,10.718747,10718.747 +5813,2025-03-07T17:19:22.680943-08:00,0.0,10.726194,10726.194 +5814,2025-03-07T17:19:33.409743-08:00,0.0,10.7288,10728.8 +5815,2025-03-07T17:19:44.132746-08:00,0.0,10.723003,10723.003 +5816,2025-03-07T17:19:54.866835-08:00,0.0,10.734089,10734.089 +5817,2025-03-07T17:20:05.584986-08:00,0.0,10.718151,10718.151 +5818,2025-03-07T17:20:16.308913-08:00,0.0,10.723927,10723.927 +5819,2025-03-07T17:20:27.039745-08:00,0.0,10.730832,10730.832 +5820,2025-03-07T17:20:37.768621-08:00,0.0,10.728876,10728.876 +5821,2025-03-07T17:20:48.497918-08:00,0.0,10.729297,10729.297 +5822,2025-03-07T17:20:59.217746-08:00,0.0,10.719828,10719.828 +5823,2025-03-07T17:21:09.942923-08:00,0.0,10.725177,10725.177 +5824,2025-03-07T17:21:20.671868-08:00,0.0,10.728945,10728.945 +5825,2025-03-07T17:21:31.389849-08:00,0.0,10.717981,10717.981 +5826,2025-03-07T17:21:42.118745-08:00,0.0,10.728896,10728.896 +5827,2025-03-07T17:21:52.838175-08:00,0.0,10.71943,10719.43 +5828,2025-03-07T17:22:03.563748-08:00,0.0,10.725573,10725.573 +5829,2025-03-07T17:22:14.284745-08:00,0.0,10.720997,10720.997 +5830,2025-03-07T17:22:25.017630-08:00,0.0,10.732885,10732.885 +5831,2025-03-07T17:22:35.737810-08:00,0.0,10.72018,10720.18 +5832,2025-03-07T17:22:46.461644-08:00,0.0,10.723834,10723.834 +5833,2025-03-07T17:22:57.186746-08:00,0.0,10.725102,10725.102 +5834,2025-03-07T17:23:07.917740-08:00,0.0,10.730994,10730.994 +5835,2025-03-07T17:23:18.646892-08:00,0.0,10.729152,10729.152 +5836,2025-03-07T17:23:29.368952-08:00,0.0,10.72206,10722.06 +5837,2025-03-07T17:23:40.096394-08:00,0.0,10.727442,10727.442 +5838,2025-03-07T17:23:50.821746-08:00,0.0,10.725352,10725.352 +5839,2025-03-07T17:24:01.548910-08:00,0.0,10.727164,10727.164 +5840,2025-03-07T17:24:12.269771-08:00,0.0,10.720861,10720.861 +5841,2025-03-07T17:24:22.997923-08:00,0.0,10.728152,10728.152 +5842,2025-03-07T17:24:33.728078-08:00,0.0,10.730155,10730.155 +5843,2025-03-07T17:24:44.445744-08:00,0.0,10.717666,10717.666 +5844,2025-03-07T17:24:55.175002-08:00,0.0,10.729258,10729.258 +5845,2025-03-07T17:25:05.905120-08:00,0.0,10.730118,10730.118 +5846,2025-03-07T17:25:16.640747-08:00,0.0,10.735627,10735.627 +5847,2025-03-07T17:25:27.369942-08:00,0.0,10.729195,10729.195 +5848,2025-03-07T17:25:38.100903-08:00,0.0,10.730961,10730.961 +5849,2025-03-07T17:25:48.823743-08:00,0.0,10.72284,10722.84 +5850,2025-03-07T17:25:59.545746-08:00,0.0,10.722003,10722.003 +5851,2025-03-07T17:26:10.279932-08:00,0.0,10.734186,10734.186 +5852,2025-03-07T17:26:21.001922-08:00,0.0,10.72199,10721.99 +5853,2025-03-07T17:26:31.730747-08:00,0.0,10.728825,10728.825 +5854,2025-03-07T17:26:42.466769-08:00,0.0,10.736022,10736.022 +5855,2025-03-07T17:26:53.187946-08:00,0.0,10.721177,10721.177 +5856,2025-03-07T17:27:03.919949-08:00,0.0,10.732003,10732.003 +5857,2025-03-07T17:27:14.647947-08:00,0.0,10.727998,10727.998 +5858,2025-03-07T17:27:25.374744-08:00,0.0,10.726797,10726.797 +5859,2025-03-07T17:27:36.108741-08:00,0.0,10.733997,10733.997 +5860,2025-03-07T17:27:46.831846-08:00,0.0,10.723105,10723.105 +5861,2025-03-07T17:27:57.566950-08:00,0.0,10.735104,10735.104 +5862,2025-03-07T17:28:08.286922-08:00,0.0,10.719972,10719.972 +5863,2025-03-07T17:28:19.008794-08:00,0.0,10.721872,10721.872 +5864,2025-03-07T17:28:29.737746-08:00,0.0,10.728952,10728.952 +5865,2025-03-07T17:28:40.468942-08:00,0.0,10.731196,10731.196 +5866,2025-03-07T17:28:51.188743-08:00,0.0,10.719801,10719.801 +5867,2025-03-07T17:29:01.912921-08:00,0.0,10.724178,10724.178 +5868,2025-03-07T17:29:12.639743-08:00,0.0,10.726822,10726.822 +5869,2025-03-07T17:29:23.363780-08:00,0.0,10.724037,10724.037 +5870,2025-03-07T17:29:34.096943-08:00,0.0,10.733163,10733.163 +5871,2025-03-07T17:29:44.820745-08:00,0.0,10.723802,10723.802 +5872,2025-03-07T17:29:55.548234-08:00,0.0,10.727489,10727.489 +5873,2025-03-07T17:30:06.273030-08:00,0.0,10.724796,10724.796 +5874,2025-03-07T17:30:17.002747-08:00,0.0,10.729717,10729.717 +5875,2025-03-07T17:30:27.728775-08:00,0.0,10.726028,10726.028 +5876,2025-03-07T17:30:38.458809-08:00,0.0,10.730034,10730.034 +5877,2025-03-07T17:30:49.176019-08:00,0.0,10.71721,10717.21 +5878,2025-03-07T17:30:59.903746-08:00,0.0,10.727727,10727.727 +5879,2025-03-07T17:31:10.640815-08:00,0.0,10.737069,10737.069 +5880,2025-03-07T17:31:21.362794-08:00,0.0,10.721979,10721.979 +5881,2025-03-07T17:31:32.095740-08:00,0.0,10.732946,10732.946 +5882,2025-03-07T17:31:42.814908-08:00,0.0,10.719168,10719.168 +5883,2025-03-07T17:31:53.548947-08:00,0.0,10.734039,10734.039 +5884,2025-03-07T17:32:04.276744-08:00,0.0,10.727797,10727.797 +5885,2025-03-07T17:32:15.000067-08:00,0.0,10.723323,10723.323 +5886,2025-03-07T17:32:25.728969-08:00,0.0,10.728902,10728.902 +5887,2025-03-07T17:32:36.456216-08:00,0.0,10.727247,10727.247 +5888,2025-03-07T17:32:47.186943-08:00,0.0,10.730727,10730.727 +5889,2025-03-07T17:32:57.926746-08:00,0.0,10.739803,10739.803 +5890,2025-03-07T17:33:08.647776-08:00,0.0,10.72103,10721.03 +5891,2025-03-07T17:33:19.374744-08:00,0.0,10.726968,10726.968 +5892,2025-03-07T17:33:30.096924-08:00,0.0,10.72218,10722.18 +5893,2025-03-07T17:33:40.825609-08:00,0.0,10.728685,10728.685 +5894,2025-03-07T17:33:51.558772-08:00,0.0,10.733163,10733.163 +5895,2025-03-07T17:34:02.288744-08:00,0.0,10.729972,10729.972 +5896,2025-03-07T17:34:13.011805-08:00,0.0,10.723061,10723.061 +5897,2025-03-07T17:34:23.738748-08:00,0.0,10.726943,10726.943 +5898,2025-03-07T17:34:34.474920-08:00,0.0,10.736172,10736.172 +5899,2025-03-07T17:34:45.198744-08:00,0.0,10.723824,10723.824 +5900,2025-03-07T17:34:55.922226-08:00,0.0,10.723482,10723.482 +5901,2025-03-07T17:35:06.656378-08:00,0.0,10.734152,10734.152 +5902,2025-03-07T17:35:17.384934-08:00,0.0,10.728556,10728.556 +5903,2025-03-07T17:35:28.110935-08:00,0.0,10.726001,10726.001 +5904,2025-03-07T17:35:38.832743-08:00,0.0,10.721808,10721.808 +5905,2025-03-07T17:35:49.563817-08:00,0.0,10.731074,10731.074 +5906,2025-03-07T17:36:00.294123-08:00,0.0,10.730306,10730.306 +5907,2025-03-07T17:36:11.021776-08:00,0.0,10.727653,10727.653 +5908,2025-03-07T17:36:21.751775-08:00,0.0,10.729999,10729.999 +5909,2025-03-07T17:36:32.479243-08:00,0.0,10.727468,10727.468 +5910,2025-03-07T17:36:43.212747-08:00,0.0,10.733504,10733.504 +5911,2025-03-07T17:36:53.940132-08:00,0.0,10.727385,10727.385 +5912,2025-03-07T17:37:04.673434-08:00,0.0,10.733302,10733.302 +5913,2025-03-07T17:37:15.405961-08:00,0.0,10.732527,10732.527 +5914,2025-03-07T17:37:26.144737-08:00,0.0,10.738776,10738.776 +5915,2025-03-07T17:37:36.874873-08:00,0.0,10.730136,10730.136 +5916,2025-03-07T17:37:47.608525-08:00,0.0,10.733652,10733.652 +5917,2025-03-07T17:37:58.341749-08:00,0.0,10.733224,10733.224 +5918,2025-03-07T17:38:09.067752-08:00,0.0,10.726003,10726.003 +5919,2025-03-07T17:38:19.806943-08:00,0.0,10.739191,10739.191 +5920,2025-03-07T17:38:30.541815-08:00,0.0,10.734872,10734.872 +5921,2025-03-07T17:38:41.274746-08:00,0.0,10.732931,10732.931 +5922,2025-03-07T17:38:52.009112-08:00,0.0,10.734366,10734.366 +5923,2025-03-07T17:39:02.746017-08:00,0.0,10.736905,10736.905 +5924,2025-03-07T17:39:13.475950-08:00,0.0,10.729933,10729.933 +5925,2025-03-07T17:39:24.218900-08:00,0.0,10.74295,10742.95 +5926,2025-03-07T17:39:34.952986-08:00,0.0,10.734086,10734.086 +5927,2025-03-07T17:39:45.684920-08:00,0.0,10.731934,10731.934 +5928,2025-03-07T17:39:56.415819-08:00,0.0,10.730899,10730.899 +5929,2025-03-07T17:40:07.149872-08:00,0.0,10.734053,10734.053 +5930,2025-03-07T17:40:17.887753-08:00,0.0,10.737881,10737.881 +5931,2025-03-07T17:40:28.615953-08:00,0.0,10.7282,10728.2 +5932,2025-03-07T17:40:39.354056-08:00,0.0,10.738103,10738.103 +5933,2025-03-07T17:40:50.095976-08:00,0.0,10.74192,10741.92 +5934,2025-03-07T17:41:00.837825-08:00,0.0,10.741849,10741.849 +5935,2025-03-07T17:41:11.573965-08:00,0.0,10.73614,10736.14 +5936,2025-03-07T17:41:22.308943-08:00,0.0,10.734978,10734.978 +5937,2025-03-07T17:41:33.039750-08:00,0.0,10.730807,10730.807 +5938,2025-03-07T17:41:43.779757-08:00,0.0,10.740007,10740.007 +5939,2025-03-07T17:41:54.524953-08:00,0.0,10.745196,10745.196 +5940,2025-03-07T17:42:05.252950-08:00,0.0,10.727997,10727.997 +5941,2025-03-07T17:42:15.994278-08:00,0.0,10.741328,10741.328 +5942,2025-03-07T17:42:26.736754-08:00,0.0,10.742476,10742.476 +5943,2025-03-07T17:42:37.466750-08:00,0.0,10.729996,10729.996 +5944,2025-03-07T17:42:48.209751-08:00,0.0,10.743001,10743.001 +5945,2025-03-07T17:42:58.945857-08:00,0.0,10.736106,10736.106 +5946,2025-03-07T17:43:09.683003-08:00,0.0,10.737146,10737.146 +5947,2025-03-07T17:43:20.415751-08:00,0.0,10.732748,10732.748 +5948,2025-03-07T17:43:31.159746-08:00,0.0,10.743995,10743.995 +5949,2025-03-07T17:43:41.900155-08:00,0.0,10.740409,10740.409 +5950,2025-03-07T17:43:52.640844-08:00,0.0,10.740689,10740.689 +5951,2025-03-07T17:44:03.377968-08:00,0.0,10.737124,10737.124 +5952,2025-03-07T17:44:14.112922-08:00,0.0,10.734954,10734.954 +5953,2025-03-07T17:44:24.859190-08:00,0.0,10.746268,10746.268 +5954,2025-03-07T17:44:35.590748-08:00,0.0,10.731558,10731.558 +5955,2025-03-07T17:44:46.333942-08:00,0.0,10.743194,10743.194 +5956,2025-03-07T17:44:57.067751-08:00,0.0,10.733809,10733.809 +5957,2025-03-07T17:45:07.801394-08:00,0.0,10.733643,10733.643 +5958,2025-03-07T17:45:18.547559-08:00,0.0,10.746165,10746.165 +5959,2025-03-07T17:45:29.288775-08:00,0.0,10.741216,10741.216 +5960,2025-03-07T17:45:40.023792-08:00,0.0,10.735017,10735.017 +5961,2025-03-07T17:45:50.768870-08:00,0.0,10.745078,10745.078 +5962,2025-03-07T17:46:01.513780-08:00,0.0,10.74491,10744.91 +5963,2025-03-07T17:46:12.246943-08:00,0.0,10.733163,10733.163 +5964,2025-03-07T17:46:22.987009-08:00,0.0,10.740066,10740.066 +5965,2025-03-07T17:46:33.730599-08:00,0.0,10.74359,10743.59 +5966,2025-03-07T17:46:44.463748-08:00,0.0,10.733149,10733.149 +5967,2025-03-07T17:46:55.200350-08:00,0.0,10.736602,10736.602 +5968,2025-03-07T17:47:05.946082-08:00,0.0,10.745732,10745.732 +5969,2025-03-07T17:47:16.684829-08:00,0.0,10.738747,10738.747 +5970,2025-03-07T17:47:27.421213-08:00,0.0,10.736384,10736.384 +5971,2025-03-07T17:47:38.165923-08:00,0.0,10.74471,10744.71 +5972,2025-03-07T17:47:48.906778-08:00,0.0,10.740855,10740.855 +5973,2025-03-07T17:47:59.646876-08:00,0.0,10.740098,10740.098 +5974,2025-03-07T17:48:10.390957-08:00,0.0,10.744081,10744.081 +5975,2025-03-07T17:48:21.130825-08:00,0.0,10.739868,10739.868 +5976,2025-03-07T17:48:31.878811-08:00,0.0,10.747986,10747.986 +5977,2025-03-07T17:48:42.619954-08:00,0.0,10.741143,10741.143 +5978,2025-03-07T17:48:53.357768-08:00,0.0,10.737814,10737.814 +5979,2025-03-07T17:49:04.101145-08:00,0.0,10.743377,10743.377 +5980,2025-03-07T17:49:14.837796-08:00,0.0,10.736651,10736.651 +5981,2025-03-07T17:49:25.587563-08:00,0.0,10.749767,10749.767 +5982,2025-03-07T17:49:36.322747-08:00,0.0,10.735184,10735.184 +5983,2025-03-07T17:49:47.062750-08:00,0.0,10.740003,10740.003 +5984,2025-03-07T17:49:57.804751-08:00,0.0,10.742001,10742.001 +5985,2025-03-07T17:50:08.549748-08:00,0.0,10.744997,10744.997 +5986,2025-03-07T17:50:19.287929-08:00,0.0,10.738181,10738.181 +5987,2025-03-07T17:50:30.024201-08:00,0.0,10.736272,10736.272 +5988,2025-03-07T17:50:40.764769-08:00,0.0,10.740568,10740.568 +5989,2025-03-07T17:50:51.503764-08:00,0.0,10.738995,10738.995 +5990,2025-03-07T17:51:02.245955-08:00,0.0,10.742191,10742.191 +5991,2025-03-07T17:51:12.984739-08:00,0.0,10.738784,10738.784 +5992,2025-03-07T17:51:23.722062-08:00,0.0,10.737323,10737.323 +5993,2025-03-07T17:51:34.468765-08:00,0.0,10.746703,10746.703 +5994,2025-03-07T17:51:45.200955-08:00,0.0,10.73219,10732.19 +5995,2025-03-07T17:51:55.945745-08:00,0.0,10.74479,10744.79 +5996,2025-03-07T17:52:06.686744-08:00,0.0,10.740999,10740.999 +5997,2025-03-07T17:52:17.417812-08:00,0.0,10.731068,10731.068 +5998,2025-03-07T17:52:28.095410-08:00,0.0,10.677598,10677.598 +5999,2025-03-07T17:52:38.833739-08:00,0.0,10.738329,10738.329 +6000,2025-03-07T17:52:49.575439-08:00,0.0,10.7417,10741.7 +6001,2025-03-07T17:53:00.309411-08:00,0.0,10.733972,10733.972 +6002,2025-03-07T17:53:11.055481-08:00,0.0,10.74607,10746.07 +6003,2025-03-07T17:53:21.793600-08:00,0.0,10.738119,10738.119 +6004,2025-03-07T17:53:32.526494-08:00,0.0,10.732894,10732.894 +6005,2025-03-07T17:53:43.267622-08:00,0.0,10.741128,10741.128 +6006,2025-03-07T17:53:53.998627-08:00,0.0,10.731005,10731.005 +6007,2025-03-07T17:54:04.739419-08:00,0.0,10.740792,10740.792 +6008,2025-03-07T17:54:15.476408-08:00,0.0,10.736989,10736.989 +6009,2025-03-07T17:54:26.207600-08:00,0.0,10.731192,10731.192 +6010,2025-03-07T17:54:36.942747-08:00,0.0,10.735147,10735.147 +6011,2025-03-07T17:54:47.682415-08:00,0.0,10.739668,10739.668 +6012,2025-03-07T17:54:58.418413-08:00,0.0,10.735998,10735.998 +6013,2025-03-07T17:55:09.157586-08:00,0.0,10.739173,10739.173 +6014,2025-03-07T17:55:19.888080-08:00,0.0,10.730494,10730.494 +6015,2025-03-07T17:55:30.629413-08:00,0.0,10.741333,10741.333 +6016,2025-03-07T17:55:41.365439-08:00,0.0,10.736026,10736.026 +6017,2025-03-07T17:55:52.099407-08:00,0.0,10.733968,10733.968 +6018,2025-03-07T17:56:02.829797-08:00,0.0,10.73039,10730.39 +6019,2025-03-07T17:56:13.572439-08:00,0.0,10.742642,10742.642 +6020,2025-03-07T17:56:24.307621-08:00,0.0,10.735182,10735.182 +6021,2025-03-07T17:56:35.046391-08:00,0.0,10.73877,10738.77 +6022,2025-03-07T17:56:45.780854-08:00,0.0,10.734463,10734.463 +6023,2025-03-07T17:56:56.518712-08:00,0.0,10.737858,10737.858 +6024,2025-03-07T17:57:07.253602-08:00,0.0,10.73489,10734.89 +6025,2025-03-07T17:57:17.991459-08:00,0.0,10.737857,10737.857 +6026,2025-03-07T17:57:28.724632-08:00,0.0,10.733173,10733.173 +6027,2025-03-07T17:57:39.471537-08:00,0.0,10.746905,10746.905 +6028,2025-03-07T17:57:50.208570-08:00,0.0,10.737033,10737.033 +6029,2025-03-07T17:58:00.937527-08:00,0.0,10.728957,10728.957 +6030,2025-03-07T17:58:11.676626-08:00,0.0,10.739099,10739.099 +6031,2025-03-07T17:58:22.420409-08:00,0.0,10.743783,10743.783 +6032,2025-03-07T17:58:33.151719-08:00,0.0,10.73131,10731.31 +6033,2025-03-07T17:58:43.889672-08:00,0.0,10.737953,10737.953 +6034,2025-03-07T17:58:54.627409-08:00,0.0,10.737737,10737.737 +6035,2025-03-07T17:59:05.366411-08:00,0.0,10.739002,10739.002 +6036,2025-03-07T17:59:16.102412-08:00,0.0,10.736001,10736.001 +6037,2025-03-07T17:59:26.844562-08:00,0.0,10.74215,10742.15 +6038,2025-03-07T17:59:37.581598-08:00,0.0,10.737036,10737.036 +6039,2025-03-07T17:59:48.314201-08:00,0.0,10.732603,10732.603 +6040,2025-03-07T17:59:59.046818-08:00,0.0,10.732617,10732.617 +6041,2025-03-07T18:00:09.784595-08:00,0.0,10.737777,10737.777 +6042,2025-03-07T18:00:20.516410-08:00,0.0,10.731815,10731.815 +6043,2025-03-07T18:00:31.260925-08:00,0.0,10.744515,10744.515 +6044,2025-03-07T18:00:41.995449-08:00,0.0,10.734524,10734.524 +6045,2025-03-07T18:00:52.724451-08:00,0.0,10.729002,10729.002 +6046,2025-03-07T18:01:03.457854-08:00,0.0,10.733403,10733.403 +6047,2025-03-07T18:01:14.195430-08:00,0.0,10.737576,10737.576 +6048,2025-03-07T18:01:24.930716-08:00,0.0,10.735286,10735.286 +6049,2025-03-07T18:01:35.668058-08:00,0.0,10.737342,10737.342 +6050,2025-03-07T18:01:46.394654-08:00,0.0,10.726596,10726.596 +6051,2025-03-07T18:01:57.133408-08:00,0.0,10.738754,10738.754 +6052,2025-03-07T18:02:07.865167-08:00,0.0,10.731759,10731.759 +6053,2025-03-07T18:02:18.603596-08:00,0.0,10.738429,10738.429 +6054,2025-03-07T18:02:29.334588-08:00,0.0,10.730992,10730.992 +6055,2025-03-07T18:02:40.077462-08:00,0.0,10.742874,10742.874 +6056,2025-03-07T18:02:50.804440-08:00,0.0,10.726978,10726.978 +6057,2025-03-07T18:03:01.542672-08:00,0.0,10.738232,10738.232 +6058,2025-03-07T18:03:12.284600-08:00,0.0,10.741928,10741.928 +6059,2025-03-07T18:03:23.016891-08:00,0.0,10.732291,10732.291 +6060,2025-03-07T18:03:33.750436-08:00,0.0,10.733545,10733.545 +6061,2025-03-07T18:03:44.488474-08:00,0.0,10.738038,10738.038 +6062,2025-03-07T18:03:55.221460-08:00,0.0,10.732986,10732.986 +6063,2025-03-07T18:04:05.959701-08:00,0.0,10.738241,10738.241 +6064,2025-03-07T18:04:16.696587-08:00,0.0,10.736886,10736.886 +6065,2025-03-07T18:04:27.422628-08:00,0.0,10.726041,10726.041 +6066,2025-03-07T18:04:38.160783-08:00,0.0,10.738155,10738.155 +6067,2025-03-07T18:04:48.898578-08:00,0.0,10.737795,10737.795 +6068,2025-03-07T18:04:59.629409-08:00,0.0,10.730831,10730.831 +6069,2025-03-07T18:05:10.363618-08:00,0.0,10.734209,10734.209 +6070,2025-03-07T18:05:21.101407-08:00,0.0,10.737789,10737.789 +6071,2025-03-07T18:05:31.835297-08:00,0.0,10.73389,10733.89 +6072,2025-03-07T18:05:42.572573-08:00,0.0,10.737276,10737.276 +6073,2025-03-07T18:05:53.304635-08:00,0.0,10.732062,10732.062 +6074,2025-03-07T18:06:04.045544-08:00,0.0,10.740909,10740.909 +6075,2025-03-07T18:06:14.777797-08:00,0.0,10.732253,10732.253 +6076,2025-03-07T18:06:25.507408-08:00,0.0,10.729611,10729.611 +6077,2025-03-07T18:06:36.245708-08:00,0.0,10.7383,10738.3 +6078,2025-03-07T18:06:46.978681-08:00,0.0,10.732973,10732.973 +6079,2025-03-07T18:06:57.715603-08:00,0.0,10.736922,10736.922 +6080,2025-03-07T18:07:08.447437-08:00,0.0,10.731834,10731.834 +6081,2025-03-07T18:07:19.190410-08:00,0.0,10.742973,10742.973 +6082,2025-03-07T18:07:29.926409-08:00,0.0,10.735999,10735.999 +6083,2025-03-07T18:07:40.657590-08:00,0.0,10.731181,10731.181 +6084,2025-03-07T18:07:51.395181-08:00,0.0,10.737591,10737.591 +6085,2025-03-07T18:08:02.132410-08:00,0.0,10.737229,10737.229 +6086,2025-03-07T18:08:12.864408-08:00,0.0,10.731998,10731.998 +6087,2025-03-07T18:08:23.605510-08:00,0.0,10.741102,10741.102 +6088,2025-03-07T18:08:34.336290-08:00,0.0,10.73078,10730.78 +6089,2025-03-07T18:08:45.080430-08:00,0.0,10.74414,10744.14 +6090,2025-03-07T18:08:55.808625-08:00,0.0,10.728195,10728.195 +6091,2025-03-07T18:09:06.542382-08:00,0.0,10.733757,10733.757 +6092,2025-03-07T18:09:17.282824-08:00,0.0,10.740442,10740.442 +6093,2025-03-07T18:09:28.012408-08:00,0.0,10.729584,10729.584 +6094,2025-03-07T18:09:38.747439-08:00,0.0,10.735031,10735.031 +6095,2025-03-07T18:09:49.489410-08:00,0.0,10.741971,10741.971 +6096,2025-03-07T18:10:00.227513-08:00,0.0,10.738103,10738.103 +6097,2025-03-07T18:10:10.963523-08:00,0.0,10.73601,10736.01 +6098,2025-03-07T18:10:21.696477-08:00,0.0,10.732954,10732.954 +6099,2025-03-07T18:10:32.432415-08:00,0.0,10.735938,10735.938 +6100,2025-03-07T18:10:43.166087-08:00,0.0,10.733672,10733.672 +6101,2025-03-07T18:10:53.900428-08:00,0.0,10.734341,10734.341 +6102,2025-03-07T18:11:04.639940-08:00,0.0,10.739512,10739.512 +6103,2025-03-07T18:11:15.381409-08:00,0.0,10.741469,10741.469 +6104,2025-03-07T18:11:26.117409-08:00,0.0,10.736,10736.0 +6105,2025-03-07T18:11:36.854618-08:00,0.0,10.737209,10737.209 +6106,2025-03-07T18:11:47.587842-08:00,0.0,10.733224,10733.224 +6107,2025-03-07T18:11:58.327643-08:00,0.0,10.739801,10739.801 +6108,2025-03-07T18:12:09.057663-08:00,0.0,10.73002,10730.02 +6109,2025-03-07T18:12:19.795582-08:00,0.0,10.737919,10737.919 +6110,2025-03-07T18:12:30.535617-08:00,0.0,10.740035,10740.035 +6111,2025-03-07T18:12:41.263480-08:00,0.0,10.727863,10727.863 +6112,2025-03-07T18:12:52.006408-08:00,0.0,10.742928,10742.928 +6113,2025-03-07T18:13:02.735439-08:00,0.0,10.729031,10729.031 +6114,2025-03-07T18:13:13.473614-08:00,0.0,10.738175,10738.175 +6115,2025-03-07T18:13:24.213557-08:00,0.0,10.739943,10739.943 +6116,2025-03-07T18:13:34.948411-08:00,0.0,10.734854,10734.854 +6117,2025-03-07T18:13:45.671578-08:00,0.0,10.723167,10723.167 +6118,2025-03-07T18:13:56.407005-08:00,0.0,10.735427,10735.427 +6119,2025-03-07T18:14:07.146568-08:00,0.0,10.739563,10739.563 +6120,2025-03-07T18:14:17.885620-08:00,0.0,10.739052,10739.052 +6121,2025-03-07T18:14:28.617412-08:00,0.0,10.731792,10731.792 +6122,2025-03-07T18:14:39.353586-08:00,0.0,10.736174,10736.174 +6123,2025-03-07T18:14:50.088560-08:00,0.0,10.734974,10734.974 +6124,2025-03-07T18:15:00.821548-08:00,0.0,10.732988,10732.988 +6125,2025-03-07T18:15:11.558265-08:00,0.0,10.736717,10736.717 +6126,2025-03-07T18:15:22.292896-08:00,0.0,10.734631,10734.631 +6127,2025-03-07T18:15:33.036621-08:00,0.0,10.743725,10743.725 +6128,2025-03-07T18:15:43.763410-08:00,0.0,10.726789,10726.789 +6129,2025-03-07T18:15:54.503407-08:00,0.0,10.739997,10739.997 +6130,2025-03-07T18:16:05.239410-08:00,0.0,10.736003,10736.003 +6131,2025-03-07T18:16:15.974738-08:00,0.0,10.735328,10735.328 +6132,2025-03-07T18:16:26.713675-08:00,0.0,10.738937,10738.937 +6133,2025-03-07T18:16:37.446818-08:00,0.0,10.733143,10733.143 +6134,2025-03-07T18:16:48.186434-08:00,0.0,10.739616,10739.616 +6135,2025-03-07T18:16:58.928443-08:00,0.0,10.742009,10742.009 +6136,2025-03-07T18:17:09.666214-08:00,0.0,10.737771,10737.771 +6137,2025-03-07T18:17:20.404926-08:00,0.0,10.738712,10738.712 +6138,2025-03-07T18:17:31.139410-08:00,0.0,10.734484,10734.484 +6139,2025-03-07T18:17:41.876404-08:00,0.0,10.736994,10736.994 +6140,2025-03-07T18:17:52.607433-08:00,0.0,10.731029,10731.029 +6141,2025-03-07T18:18:03.349582-08:00,0.0,10.742149,10742.149 +6142,2025-03-07T18:18:14.082477-08:00,0.0,10.732895,10732.895 +6143,2025-03-07T18:18:24.817758-08:00,0.0,10.735281,10735.281 +6144,2025-03-07T18:18:35.550630-08:00,0.0,10.732872,10732.872 +6145,2025-03-07T18:18:46.285144-08:00,0.0,10.734514,10734.514 +6146,2025-03-07T18:18:57.020574-08:00,0.0,10.73543,10735.43 +6147,2025-03-07T18:19:07.752415-08:00,0.0,10.731841,10731.841 +6148,2025-03-07T18:19:18.499413-08:00,0.0,10.746998,10746.998 +6149,2025-03-07T18:19:29.229608-08:00,0.0,10.730195,10730.195 +6150,2025-03-07T18:19:39.962611-08:00,0.0,10.733003,10733.003 +6151,2025-03-07T18:19:50.700485-08:00,0.0,10.737874,10737.874 +6152,2025-03-07T18:20:01.433445-08:00,0.0,10.73296,10732.96 +6153,2025-03-07T18:20:12.171173-08:00,0.0,10.737728,10737.728 +6154,2025-03-07T18:20:22.901554-08:00,0.0,10.730381,10730.381 +6155,2025-03-07T18:20:33.641412-08:00,0.0,10.739858,10739.858 +6156,2025-03-07T18:20:44.385411-08:00,0.0,10.743999,10743.999 +6157,2025-03-07T18:20:55.115545-08:00,0.0,10.730134,10730.134 +6158,2025-03-07T18:21:05.851612-08:00,0.0,10.736067,10736.067 +6159,2025-03-07T18:21:16.591436-08:00,0.0,10.739824,10739.824 +6160,2025-03-07T18:21:27.326505-08:00,0.0,10.735069,10735.069 +6161,2025-03-07T18:21:38.063589-08:00,0.0,10.737084,10737.084 +6162,2025-03-07T18:21:48.798615-08:00,0.0,10.735026,10735.026 +6163,2025-03-07T18:21:59.533701-08:00,0.0,10.735086,10735.086 +6164,2025-03-07T18:22:10.259612-08:00,0.0,10.725911,10725.911 +6165,2025-03-07T18:22:20.996560-08:00,0.0,10.736948,10736.948 +6166,2025-03-07T18:22:31.732910-08:00,0.0,10.73635,10736.35 +6167,2025-03-07T18:22:42.460604-08:00,0.0,10.727694,10727.694 +6168,2025-03-07T18:22:53.201623-08:00,0.0,10.741019,10741.019 +6169,2025-03-07T18:23:03.940415-08:00,0.0,10.738792,10738.792 +6170,2025-03-07T18:23:14.676815-08:00,0.0,10.7364,10736.4 +6171,2025-03-07T18:23:25.410227-08:00,0.0,10.733412,10733.412 +6172,2025-03-07T18:23:36.147746-08:00,0.0,10.737519,10737.519 +6173,2025-03-07T18:23:46.882555-08:00,0.0,10.734809,10734.809 +6174,2025-03-07T18:23:57.614425-08:00,0.0,10.73187,10731.87 +6175,2025-03-07T18:24:08.343477-08:00,0.0,10.729052,10729.052 +6176,2025-03-07T18:24:19.071406-08:00,0.0,10.727929,10727.929 +6177,2025-03-07T18:24:29.808611-08:00,0.0,10.737205,10737.205 +6178,2025-03-07T18:24:40.541034-08:00,0.0,10.732423,10732.423 +6179,2025-03-07T18:24:51.272730-08:00,0.0,10.731696,10731.696 +6180,2025-03-07T18:25:02.006404-08:00,0.0,10.733674,10733.674 +6181,2025-03-07T18:25:12.738604-08:00,0.0,10.7322,10732.2 +6182,2025-03-07T18:25:23.470518-08:00,0.0,10.731914,10731.914 +6183,2025-03-07T18:25:34.206413-08:00,0.0,10.735895,10735.895 +6184,2025-03-07T18:25:44.934737-08:00,0.0,10.728324,10728.324 +6185,2025-03-07T18:25:55.675578-08:00,0.0,10.740841,10740.841 +6186,2025-03-07T18:26:06.408605-08:00,0.0,10.733027,10733.027 +6187,2025-03-07T18:26:17.144414-08:00,0.0,10.735809,10735.809 +6188,2025-03-07T18:26:27.883408-08:00,0.0,10.738994,10738.994 +6189,2025-03-07T18:26:38.616037-08:00,0.0,10.732629,10732.629 +6190,2025-03-07T18:26:49.351800-08:00,0.0,10.735763,10735.763 +6191,2025-03-07T18:27:00.092411-08:00,0.0,10.740611,10740.611 +6192,2025-03-07T18:27:10.829481-08:00,0.0,10.73707,10737.07 +6193,2025-03-07T18:27:21.553593-08:00,0.0,10.724112,10724.112 +6194,2025-03-07T18:27:32.293716-08:00,0.0,10.740123,10740.123 +6195,2025-03-07T18:27:43.025407-08:00,0.0,10.731691,10731.691 +6196,2025-03-07T18:27:53.768605-08:00,0.0,10.743198,10743.198 +6197,2025-03-07T18:28:04.501410-08:00,0.0,10.732805,10732.805 +6198,2025-03-07T18:28:15.234554-08:00,0.0,10.733144,10733.144 +6199,2025-03-07T18:28:25.974484-08:00,0.0,10.73993,10739.93 +6200,2025-03-07T18:28:36.704610-08:00,0.0,10.730126,10730.126 +6201,2025-03-07T18:28:47.442734-08:00,0.0,10.738124,10738.124 +6202,2025-03-07T18:28:58.178586-08:00,0.0,10.735852,10735.852 +6203,2025-03-07T18:29:08.905406-08:00,0.0,10.72682,10726.82 +6204,2025-03-07T18:29:19.642411-08:00,0.0,10.737005,10737.005 +6205,2025-03-07T18:29:30.377735-08:00,0.0,10.735324,10735.324 +6206,2025-03-07T18:29:41.108727-08:00,0.0,10.730992,10730.992 +6207,2025-03-07T18:29:51.844776-08:00,0.0,10.736049,10736.049 +6208,2025-03-07T18:30:02.576595-08:00,0.0,10.731819,10731.819 +6209,2025-03-07T18:30:13.307633-08:00,0.0,10.731038,10731.038 +6210,2025-03-07T18:30:24.034405-08:00,0.0,10.726772,10726.772 +6211,2025-03-07T18:30:34.764411-08:00,0.0,10.730006,10730.006 +6212,2025-03-07T18:30:56.231739-08:00,0.0,21.467328,21467.328 +6213,2025-03-07T18:31:06.965616-08:00,0.0,10.733877,10733.877 +6214,2025-03-07T18:31:17.692594-08:00,0.0,10.726978,10726.978 +6215,2025-03-07T18:31:28.418488-08:00,0.0,10.725894,10725.894 +6216,2025-03-07T18:31:39.150410-08:00,0.0,10.731922,10731.922 +6217,2025-03-07T18:31:49.887592-08:00,0.0,10.737182,10737.182 +6218,2025-03-07T18:32:00.613413-08:00,0.0,10.725821,10725.821 +6219,2025-03-07T18:32:11.351164-08:00,0.0,10.737751,10737.751 +6220,2025-03-07T18:32:22.083592-08:00,0.0,10.732428,10732.428 +6221,2025-03-07T18:32:32.813608-08:00,0.0,10.730016,10730.016 +6222,2025-03-07T18:32:43.550407-08:00,0.0,10.736799,10736.799 +6223,2025-03-07T18:32:54.277410-08:00,0.0,10.727003,10727.003 +6224,2025-03-07T18:33:05.015574-08:00,0.0,10.738164,10738.164 +6225,2025-03-07T18:33:15.744442-08:00,0.0,10.728868,10728.868 +6226,2025-03-07T18:33:26.475673-08:00,0.0,10.731231,10731.231 +6227,2025-03-07T18:33:37.211813-08:00,0.0,10.73614,10736.14 +6228,2025-03-07T18:33:47.945106-08:00,0.0,10.733293,10733.293 +6229,2025-03-07T18:33:58.677405-08:00,0.0,10.732299,10732.299 +6230,2025-03-07T18:34:09.409745-08:00,0.0,10.73234,10732.34 +6231,2025-03-07T18:34:20.140292-08:00,0.0,10.730547,10730.547 +6232,2025-03-07T18:34:30.875622-08:00,0.0,10.73533,10735.33 +6233,2025-03-07T18:34:41.610406-08:00,0.0,10.734784,10734.784 +6234,2025-03-07T18:34:52.343754-08:00,0.0,10.733348,10733.348 +6235,2025-03-07T18:35:03.073469-08:00,0.0,10.729715,10729.715 +6236,2025-03-07T18:35:13.812412-08:00,0.0,10.738943,10738.943 +6237,2025-03-07T18:35:24.537627-08:00,0.0,10.725215,10725.215 +6238,2025-03-07T18:35:35.279580-08:00,0.0,10.741953,10741.953 +6239,2025-03-07T18:35:46.011723-08:00,0.0,10.732143,10732.143 +6240,2025-03-07T18:35:56.747653-08:00,0.0,10.73593,10735.93 +6241,2025-03-07T18:36:07.471464-08:00,0.0,10.723811,10723.811 +6242,2025-03-07T18:36:18.210048-08:00,0.0,10.738584,10738.584 +6243,2025-03-07T18:36:28.938407-08:00,0.0,10.728359,10728.359 +6244,2025-03-07T18:36:39.670618-08:00,0.0,10.732211,10732.211 +6245,2025-03-07T18:36:50.403956-08:00,0.0,10.733338,10733.338 +6246,2025-03-07T18:37:01.142431-08:00,0.0,10.738475,10738.475 +6247,2025-03-07T18:37:11.866431-08:00,0.0,10.724,10724.0 +6248,2025-03-07T18:37:22.602666-08:00,0.0,10.736235,10736.235 +6249,2025-03-07T18:37:33.339186-08:00,0.0,10.73652,10736.52 +6250,2025-03-07T18:37:44.071557-08:00,0.0,10.732371,10732.371 +6251,2025-03-07T18:37:54.798588-08:00,0.0,10.727031,10727.031 +6252,2025-03-07T18:38:05.530909-08:00,0.0,10.732321,10732.321 +6253,2025-03-07T18:38:16.266469-08:00,0.0,10.73556,10735.56 +6254,2025-03-07T18:38:27.002439-08:00,0.0,10.73597,10735.97 +6255,2025-03-07T18:38:37.732624-08:00,0.0,10.730185,10730.185 +6256,2025-03-07T18:38:48.463623-08:00,0.0,10.730999,10730.999 +6257,2025-03-07T18:38:59.197431-08:00,0.0,10.733808,10733.808 +6258,2025-03-07T18:39:09.919593-08:00,0.0,10.722162,10722.162 +6259,2025-03-07T18:39:20.648614-08:00,0.0,10.729021,10729.021 +6260,2025-03-07T18:39:31.384410-08:00,0.0,10.735796,10735.796 +6261,2025-03-07T18:39:42.110594-08:00,0.0,10.726184,10726.184 +6262,2025-03-07T18:39:52.837618-08:00,0.0,10.727024,10727.024 +6263,2025-03-07T18:40:03.564411-08:00,0.0,10.726793,10726.793 +6264,2025-03-07T18:40:14.304580-08:00,0.0,10.740169,10740.169 +6265,2025-03-07T18:40:25.024404-08:00,0.0,10.719824,10719.824 +6266,2025-03-07T18:40:35.759568-08:00,0.0,10.735164,10735.164 +6267,2025-03-07T18:40:46.488681-08:00,0.0,10.729113,10729.113 +6268,2025-03-07T18:40:57.211554-08:00,0.0,10.722873,10722.873 +6269,2025-03-07T18:41:07.943143-08:00,0.0,10.731589,10731.589 +6270,2025-03-07T18:41:18.673430-08:00,0.0,10.730287,10730.287 +6271,2025-03-07T18:41:29.398439-08:00,0.0,10.725009,10725.009 +6272,2025-03-07T18:41:40.136806-08:00,0.0,10.738367,10738.367 +6273,2025-03-07T18:41:50.866615-08:00,0.0,10.729809,10729.809 +6274,2025-03-07T18:42:01.593468-08:00,0.0,10.726853,10726.853 +6275,2025-03-07T18:42:12.325410-08:00,0.0,10.731942,10731.942 +6276,2025-03-07T18:42:23.051789-08:00,0.0,10.726379,10726.379 +6277,2025-03-07T18:42:33.782539-08:00,0.0,10.73075,10730.75 +6278,2025-03-07T18:42:44.513211-08:00,0.0,10.730672,10730.672 +6279,2025-03-07T18:42:55.238674-08:00,0.0,10.725463,10725.463 +6280,2025-03-07T18:43:05.971409-08:00,0.0,10.732735,10732.735 +6281,2025-03-07T18:43:16.694623-08:00,0.0,10.723214,10723.214 +6282,2025-03-07T18:43:27.427609-08:00,0.0,10.732986,10732.986 +6283,2025-03-07T18:43:38.150627-08:00,0.0,10.723018,10723.018 +6284,2025-03-07T18:43:48.884593-08:00,0.0,10.733966,10733.966 +6285,2025-03-07T18:43:59.607738-08:00,0.0,10.723145,10723.145 +6286,2025-03-07T18:44:10.345410-08:00,0.0,10.737672,10737.672 +6287,2025-03-07T18:44:21.064403-08:00,0.0,10.718993,10718.993 +6288,2025-03-07T18:44:31.795078-08:00,0.0,10.730675,10730.675 +6289,2025-03-07T18:44:42.523841-08:00,0.0,10.728763,10728.763 +6290,2025-03-07T18:44:53.253474-08:00,0.0,10.729633,10729.633 +6291,2025-03-07T18:45:03.977424-08:00,0.0,10.72395,10723.95 +6292,2025-03-07T18:45:14.705407-08:00,0.0,10.727983,10727.983 +6293,2025-03-07T18:45:25.427594-08:00,0.0,10.722187,10722.187 +6294,2025-03-07T18:45:36.161622-08:00,0.0,10.734028,10734.028 +6295,2025-03-07T18:45:46.884650-08:00,0.0,10.723028,10723.028 +6296,2025-03-07T18:45:57.609557-08:00,0.0,10.724907,10724.907 +6297,2025-03-07T18:46:08.336405-08:00,0.0,10.726848,10726.848 +6298,2025-03-07T18:46:19.058584-08:00,0.0,10.722179,10722.179 +6299,2025-03-07T18:46:29.782649-08:00,0.0,10.724065,10724.065 +6300,2025-03-07T18:46:40.513478-08:00,0.0,10.730829,10730.829 +6301,2025-03-07T18:46:51.249447-08:00,0.0,10.735969,10735.969 +6302,2025-03-07T18:47:01.970402-08:00,0.0,10.720955,10720.955 +6303,2025-03-07T18:47:12.706479-08:00,0.0,10.736077,10736.077 +6304,2025-03-07T18:47:23.424428-08:00,0.0,10.717949,10717.949 +6305,2025-03-07T18:47:34.157402-08:00,0.0,10.732974,10732.974 +6306,2025-03-07T18:47:44.885439-08:00,0.0,10.728037,10728.037 +6307,2025-03-07T18:47:55.616776-08:00,0.0,10.731337,10731.337 +6308,2025-03-07T18:48:06.338622-08:00,0.0,10.721846,10721.846 +6309,2025-03-07T18:48:17.073621-08:00,0.0,10.734999,10734.999 +6310,2025-03-07T18:48:27.806521-08:00,0.0,10.7329,10732.9 +6311,2025-03-07T18:48:38.530404-08:00,0.0,10.723883,10723.883 +6312,2025-03-07T18:48:49.258580-08:00,0.0,10.728176,10728.176 +6313,2025-03-07T18:48:59.987657-08:00,0.0,10.729077,10729.077 +6314,2025-03-07T18:49:10.722408-08:00,0.0,10.734751,10734.751 +6315,2025-03-07T18:49:21.442826-08:00,0.0,10.720418,10720.418 +6316,2025-03-07T18:49:32.175539-08:00,0.0,10.732713,10732.713 +6317,2025-03-07T18:49:42.908402-08:00,0.0,10.732863,10732.863 +6318,2025-03-07T18:49:53.637597-08:00,0.0,10.729195,10729.195 +6319,2025-03-07T18:50:04.369612-08:00,0.0,10.732015,10732.015 +6320,2025-03-07T18:50:15.100505-08:00,0.0,10.730893,10730.893 +6321,2025-03-07T18:50:25.832589-08:00,0.0,10.732084,10732.084 +6322,2025-03-07T18:50:36.559609-08:00,0.0,10.72702,10727.02 +6323,2025-03-07T18:50:47.286409-08:00,0.0,10.7268,10726.8 +6324,2025-03-07T18:50:58.014429-08:00,0.0,10.72802,10728.02 +6325,2025-03-07T18:51:08.751437-08:00,0.0,10.737008,10737.008 +6326,2025-03-07T18:51:19.477617-08:00,0.0,10.72618,10726.18 +6327,2025-03-07T18:51:30.209557-08:00,0.0,10.73194,10731.94 +6328,2025-03-07T18:51:40.934623-08:00,0.0,10.725066,10725.066 +6329,2025-03-07T18:51:51.653544-08:00,0.0,10.718921,10718.921 +6330,2025-03-07T18:52:02.381512-08:00,0.0,10.727968,10727.968 +6331,2025-03-07T18:52:13.104675-08:00,0.0,10.723163,10723.163 +6332,2025-03-07T18:52:23.928678-08:00,0.0,10.824003,10824.003 +6333,2025-03-07T18:52:34.655332-08:00,0.0,10.726654,10726.654 +6334,2025-03-07T18:52:45.378360-08:00,0.0,10.723028,10723.028 +6335,2025-03-07T18:52:56.108391-08:00,0.0,10.730031,10730.031 +6336,2025-03-07T18:53:06.827532-08:00,0.0,10.719141,10719.141 +6337,2025-03-07T18:53:17.552328-08:00,0.0,10.724796,10724.796 +6338,2025-03-07T18:53:28.285527-08:00,0.0,10.733199,10733.199 +6339,2025-03-07T18:53:39.010543-08:00,0.0,10.725016,10725.016 +6340,2025-03-07T18:53:49.741418-08:00,0.0,10.730875,10730.875 +6341,2025-03-07T18:54:00.473544-08:00,0.0,10.732126,10732.126 +6342,2025-03-07T18:54:11.206490-08:00,0.0,10.732946,10732.946 +6343,2025-03-07T18:54:21.935331-08:00,0.0,10.728841,10728.841 +6344,2025-03-07T18:54:32.661510-08:00,0.0,10.726179,10726.179 +6345,2025-03-07T18:54:43.390327-08:00,0.0,10.728817,10728.817 +6346,2025-03-07T18:54:54.120544-08:00,0.0,10.730217,10730.217 +6347,2025-03-07T18:55:04.847466-08:00,0.0,10.726922,10726.922 +6348,2025-03-07T18:55:15.565529-08:00,0.0,10.718063,10718.063 +6349,2025-03-07T18:55:26.295110-08:00,0.0,10.729581,10729.581 +6350,2025-03-07T18:55:37.021332-08:00,0.0,10.726222,10726.222 +6351,2025-03-07T18:55:47.754503-08:00,0.0,10.733171,10733.171 +6352,2025-03-07T18:55:58.479476-08:00,0.0,10.724973,10724.973 +6353,2025-03-07T18:56:09.204331-08:00,0.0,10.724855,10724.855 +6354,2025-03-07T18:56:19.925561-08:00,0.0,10.72123,10721.23 +6355,2025-03-07T18:56:30.662332-08:00,0.0,10.736771,10736.771 +6356,2025-03-07T18:56:41.381511-08:00,0.0,10.719179,10719.179 +6357,2025-03-07T18:56:52.111428-08:00,0.0,10.729917,10729.917 +6358,2025-03-07T18:57:02.839331-08:00,0.0,10.727903,10727.903 +6359,2025-03-07T18:57:13.561366-08:00,0.0,10.722035,10722.035 +6360,2025-03-07T18:57:24.296343-08:00,0.0,10.734977,10734.977 +6361,2025-03-07T18:57:35.019539-08:00,0.0,10.723196,10723.196 +6362,2025-03-07T18:57:45.741331-08:00,0.0,10.721792,10721.792 +6363,2025-03-07T18:57:56.467578-08:00,0.0,10.726247,10726.247 +6364,2025-03-07T18:58:07.193354-08:00,0.0,10.725776,10725.776 +6365,2025-03-07T18:58:17.922937-08:00,0.0,10.729583,10729.583 +6366,2025-03-07T18:58:28.650729-08:00,0.0,10.727792,10727.792 +6367,2025-03-07T18:58:39.369363-08:00,0.0,10.718634,10718.634 +6368,2025-03-07T18:58:50.099534-08:00,0.0,10.730171,10730.171 +6369,2025-03-07T18:59:00.823398-08:00,0.0,10.723864,10723.864 +6370,2025-03-07T18:59:11.548514-08:00,0.0,10.725116,10725.116 +6371,2025-03-07T18:59:22.267351-08:00,0.0,10.718837,10718.837 +6372,2025-03-07T18:59:32.991326-08:00,0.0,10.723975,10723.975 +6373,2025-03-07T18:59:43.721408-08:00,0.0,10.730082,10730.082 +6374,2025-03-07T18:59:54.441442-08:00,0.0,10.720034,10720.034 +6375,2025-03-07T19:00:05.162353-08:00,0.0,10.720911,10720.911 +6376,2025-03-07T19:00:15.885331-08:00,0.0,10.722978,10722.978 +6377,2025-03-07T19:00:26.614522-08:00,0.0,10.729191,10729.191 +6378,2025-03-07T19:00:37.343329-08:00,0.0,10.728807,10728.807 +6379,2025-03-07T19:00:48.059529-08:00,0.0,10.7162,10716.2 +6380,2025-03-07T19:00:58.784641-08:00,0.0,10.725112,10725.112 +6381,2025-03-07T19:01:09.515330-08:00,0.0,10.730689,10730.689 +6382,2025-03-07T19:01:20.233400-08:00,0.0,10.71807,10718.07 +6383,2025-03-07T19:01:30.955514-08:00,0.0,10.722114,10722.114 +6384,2025-03-07T19:01:41.681323-08:00,0.0,10.725809,10725.809 +6385,2025-03-07T19:01:52.407330-08:00,0.0,10.726007,10726.007 +6386,2025-03-07T19:02:03.138440-08:00,0.0,10.73111,10731.11 +6387,2025-03-07T19:02:13.856330-08:00,0.0,10.71789,10717.89 +6388,2025-03-07T19:02:24.584116-08:00,0.0,10.727786,10727.786 +6389,2025-03-07T19:02:35.306328-08:00,0.0,10.722212,10722.212 +6390,2025-03-07T19:02:46.030407-08:00,0.0,10.724079,10724.079 +6391,2025-03-07T19:02:56.762449-08:00,0.0,10.732042,10732.042 +6392,2025-03-07T19:03:07.485331-08:00,0.0,10.722882,10722.882 +6393,2025-03-07T19:03:18.217513-08:00,0.0,10.732182,10732.182 +6394,2025-03-07T19:03:28.940923-08:00,0.0,10.72341,10723.41 +6395,2025-03-07T19:03:39.665416-08:00,0.0,10.724493,10724.493 +6396,2025-03-07T19:03:50.395940-08:00,0.0,10.730524,10730.524 +6397,2025-03-07T19:04:01.120535-08:00,0.0,10.724595,10724.595 +6398,2025-03-07T19:04:11.849503-08:00,0.0,10.728968,10728.968 +6399,2025-03-07T19:04:22.578331-08:00,0.0,10.728828,10728.828 +6400,2025-03-07T19:04:33.305537-08:00,0.0,10.727206,10727.206 +6401,2025-03-07T19:04:44.029401-08:00,0.0,10.723864,10723.864 +6402,2025-03-07T19:04:54.759416-08:00,0.0,10.730015,10730.015 +6403,2025-03-07T19:05:05.485788-08:00,0.0,10.726372,10726.372 +6404,2025-03-07T19:05:16.209848-08:00,0.0,10.72406,10724.06 +6405,2025-03-07T19:05:26.937402-08:00,0.0,10.727554,10727.554 +6406,2025-03-07T19:05:37.657366-08:00,0.0,10.719964,10719.964 +6407,2025-03-07T19:05:48.380517-08:00,0.0,10.723151,10723.151 +6408,2025-03-07T19:05:59.104427-08:00,0.0,10.72391,10723.91 +6409,2025-03-07T19:06:09.837365-08:00,0.0,10.732938,10732.938 +6410,2025-03-07T19:06:20.559235-08:00,0.0,10.72187,10721.87 +6411,2025-03-07T19:06:31.284331-08:00,0.0,10.725096,10725.096 +6412,2025-03-07T19:06:42.008500-08:00,0.0,10.724169,10724.169 +6413,2025-03-07T19:06:52.739328-08:00,0.0,10.730828,10730.828 +6414,2025-03-07T19:07:03.460359-08:00,0.0,10.721031,10721.031 +6415,2025-03-07T19:07:14.186620-08:00,0.0,10.726261,10726.261 +6416,2025-03-07T19:07:24.916786-08:00,0.0,10.730166,10730.166 +6417,2025-03-07T19:07:35.636605-08:00,0.0,10.719819,10719.819 +6418,2025-03-07T19:07:46.363334-08:00,0.0,10.726729,10726.729 +6419,2025-03-07T19:07:57.088772-08:00,0.0,10.725438,10725.438 +6420,2025-03-07T19:08:07.812504-08:00,0.0,10.723732,10723.732 +6421,2025-03-07T19:08:18.539122-08:00,0.0,10.726618,10726.618 +6422,2025-03-07T19:08:29.278448-08:00,0.0,10.739326,10739.326 +6423,2025-03-07T19:08:39.999331-08:00,0.0,10.720883,10720.883 +6424,2025-03-07T19:08:50.732543-08:00,0.0,10.733212,10733.212 +6425,2025-03-07T19:09:01.465100-08:00,0.0,10.732557,10732.557 +6426,2025-03-07T19:09:12.192554-08:00,0.0,10.727454,10727.454 +6427,2025-03-07T19:09:22.912499-08:00,0.0,10.719945,10719.945 +6428,2025-03-07T19:09:33.641512-08:00,0.0,10.729013,10729.013 +6429,2025-03-07T19:09:44.373616-08:00,0.0,10.732104,10732.104 +6430,2025-03-07T19:09:55.104675-08:00,0.0,10.731059,10731.059 +6431,2025-03-07T19:10:05.827423-08:00,0.0,10.722748,10722.748 +6432,2025-03-07T19:10:16.554811-08:00,0.0,10.727388,10727.388 +6433,2025-03-07T19:10:27.282482-08:00,0.0,10.727671,10727.671 +6434,2025-03-07T19:10:38.012332-08:00,0.0,10.72985,10729.85 +6435,2025-03-07T19:10:48.737740-08:00,0.0,10.725408,10725.408 +6436,2025-03-07T19:10:59.457335-08:00,0.0,10.719595,10719.595 +6437,2025-03-07T19:11:10.187624-08:00,0.0,10.730289,10730.289 +6438,2025-03-07T19:11:20.912534-08:00,0.0,10.72491,10724.91 +6439,2025-03-07T19:11:31.644356-08:00,0.0,10.731822,10731.822 +6440,2025-03-07T19:11:42.372535-08:00,0.0,10.728179,10728.179 +6441,2025-03-07T19:11:53.101484-08:00,0.0,10.728949,10728.949 +6442,2025-03-07T19:12:03.827559-08:00,0.0,10.726075,10726.075 +6443,2025-03-07T19:12:14.553357-08:00,0.0,10.725798,10725.798 +6444,2025-03-07T19:12:25.284042-08:00,0.0,10.730685,10730.685 +6445,2025-03-07T19:12:36.010543-08:00,0.0,10.726501,10726.501 +6446,2025-03-07T19:12:46.742363-08:00,0.0,10.73182,10731.82 +6447,2025-03-07T19:12:57.465520-08:00,0.0,10.723157,10723.157 +6448,2025-03-07T19:13:08.199524-08:00,0.0,10.734004,10734.004 +6449,2025-03-07T19:13:18.927331-08:00,0.0,10.727807,10727.807 +6450,2025-03-07T19:13:29.656486-08:00,0.0,10.729155,10729.155 +6451,2025-03-07T19:13:40.386398-08:00,0.0,10.729912,10729.912 +6452,2025-03-07T19:13:51.112598-08:00,0.0,10.7262,10726.2 +6453,2025-03-07T19:14:01.850500-08:00,0.0,10.737902,10737.902 +6454,2025-03-07T19:14:12.570392-08:00,0.0,10.719892,10719.892 +6455,2025-03-07T19:14:23.308329-08:00,0.0,10.737937,10737.937 +6456,2025-03-07T19:14:34.033326-08:00,0.0,10.724997,10724.997 +6457,2025-03-07T19:14:44.757331-08:00,0.0,10.724005,10724.005 +6458,2025-03-07T19:14:55.480778-08:00,0.0,10.723447,10723.447 +6459,2025-03-07T19:15:06.211563-08:00,0.0,10.730785,10730.785 +6460,2025-03-07T19:15:16.938401-08:00,0.0,10.726838,10726.838 +6461,2025-03-07T19:15:27.668542-08:00,0.0,10.730141,10730.141 +6462,2025-03-07T19:15:38.397360-08:00,0.0,10.728818,10728.818 +6463,2025-03-07T19:15:49.124335-08:00,0.0,10.726975,10726.975 +6464,2025-03-07T19:15:59.843362-08:00,0.0,10.719027,10719.027 +6465,2025-03-07T19:16:10.573325-08:00,0.0,10.729963,10729.963 +6466,2025-03-07T19:16:21.299508-08:00,0.0,10.726183,10726.183 +6467,2025-03-07T19:16:32.024955-08:00,0.0,10.725447,10725.447 +6468,2025-03-07T19:16:42.759394-08:00,0.0,10.734439,10734.439 +6469,2025-03-07T19:16:53.482866-08:00,0.0,10.723472,10723.472 +6470,2025-03-07T19:17:04.217392-08:00,0.0,10.734526,10734.526 +6471,2025-03-07T19:17:14.943510-08:00,0.0,10.726118,10726.118 +6472,2025-03-07T19:17:25.666590-08:00,0.0,10.72308,10723.08 +6473,2025-03-07T19:17:36.393329-08:00,0.0,10.726739,10726.739 +6474,2025-03-07T19:17:47.118770-08:00,0.0,10.725441,10725.441 +6475,2025-03-07T19:17:57.851488-08:00,0.0,10.732718,10732.718 +6476,2025-03-07T19:18:08.573329-08:00,0.0,10.721841,10721.841 +6477,2025-03-07T19:18:19.297545-08:00,0.0,10.724216,10724.216 +6478,2025-03-07T19:18:30.026385-08:00,0.0,10.72884,10728.84 +6479,2025-03-07T19:18:40.755556-08:00,0.0,10.729171,10729.171 +6480,2025-03-07T19:18:51.484534-08:00,0.0,10.728978,10728.978 +6481,2025-03-07T19:19:02.212404-08:00,0.0,10.72787,10727.87 +6482,2025-03-07T19:19:12.936378-08:00,0.0,10.723974,10723.974 +6483,2025-03-07T19:19:23.663332-08:00,0.0,10.726954,10726.954 +6484,2025-03-07T19:19:34.391501-08:00,0.0,10.728169,10728.169 +6485,2025-03-07T19:19:45.119369-08:00,0.0,10.727868,10727.868 +6486,2025-03-07T19:19:55.846415-08:00,0.0,10.727046,10727.046 +6487,2025-03-07T19:20:06.570326-08:00,0.0,10.723911,10723.911 +6488,2025-03-07T19:20:17.292504-08:00,0.0,10.722178,10722.178 +6489,2025-03-07T19:20:28.025502-08:00,0.0,10.732998,10732.998 +6490,2025-03-07T19:20:38.755827-08:00,0.0,10.730325,10730.325 +6491,2025-03-07T19:20:49.479330-08:00,0.0,10.723503,10723.503 +6492,2025-03-07T19:21:00.206638-08:00,0.0,10.727308,10727.308 +6493,2025-03-07T19:21:10.926526-08:00,0.0,10.719888,10719.888 +6494,2025-03-07T19:21:21.660509-08:00,0.0,10.733983,10733.983 +6495,2025-03-07T19:21:32.382330-08:00,0.0,10.721821,10721.821 +6496,2025-03-07T19:21:43.105515-08:00,0.0,10.723185,10723.185 +6497,2025-03-07T19:21:53.830585-08:00,0.0,10.72507,10725.07 +6498,2025-03-07T19:22:04.564900-08:00,0.0,10.734315,10734.315 +6499,2025-03-07T19:22:15.292596-08:00,0.0,10.727696,10727.696 +6500,2025-03-07T19:22:26.015395-08:00,0.0,10.722799,10722.799 +6501,2025-03-07T19:22:36.751407-08:00,0.0,10.736012,10736.012 +6502,2025-03-07T19:22:47.475331-08:00,0.0,10.723924,10723.924 +6503,2025-03-07T19:22:58.195407-08:00,0.0,10.720076,10720.076 +6504,2025-03-07T19:23:08.924492-08:00,0.0,10.729085,10729.085 +6505,2025-03-07T19:23:19.657331-08:00,0.0,10.732839,10732.839 +6506,2025-03-07T19:23:30.383323-08:00,0.0,10.725992,10725.992 +6507,2025-03-07T19:23:41.113401-08:00,0.0,10.730078,10730.078 +6508,2025-03-07T19:23:51.838329-08:00,0.0,10.724928,10724.928 +6509,2025-03-07T19:24:02.566514-08:00,0.0,10.728185,10728.185 +6510,2025-03-07T19:24:13.290328-08:00,0.0,10.723814,10723.814 +6511,2025-03-07T19:24:24.012504-08:00,0.0,10.722176,10722.176 +6512,2025-03-07T19:24:34.738530-08:00,0.0,10.726026,10726.026 +6513,2025-03-07T19:24:45.467513-08:00,0.0,10.728983,10728.983 +6514,2025-03-07T19:24:56.200508-08:00,0.0,10.732995,10732.995 +6515,2025-03-07T19:25:06.922534-08:00,0.0,10.722026,10722.026 +6516,2025-03-07T19:25:17.645509-08:00,0.0,10.722975,10722.975 +6517,2025-03-07T19:25:28.371331-08:00,0.0,10.725822,10725.822 +6518,2025-03-07T19:25:39.105561-08:00,0.0,10.73423,10734.23 +6519,2025-03-07T19:25:49.821328-08:00,0.0,10.715767,10715.767 +6520,2025-03-07T19:26:00.555334-08:00,0.0,10.734006,10734.006 +6521,2025-03-07T19:26:11.287572-08:00,0.0,10.732238,10732.238 +6522,2025-03-07T19:26:22.009490-08:00,0.0,10.721918,10721.918 +6523,2025-03-07T19:26:32.742400-08:00,0.0,10.73291,10732.91 +6524,2025-03-07T19:26:43.467570-08:00,0.0,10.72517,10725.17 +6525,2025-03-07T19:26:54.196478-08:00,0.0,10.728908,10728.908 +6526,2025-03-07T19:27:04.922356-08:00,0.0,10.725878,10725.878 +6527,2025-03-07T19:27:15.645333-08:00,0.0,10.722977,10722.977 +6528,2025-03-07T19:27:26.378331-08:00,0.0,10.732998,10732.998 +6529,2025-03-07T19:27:37.103143-08:00,0.0,10.724812,10724.812 +6530,2025-03-07T19:27:47.828421-08:00,0.0,10.725278,10725.278 +6531,2025-03-07T19:27:58.557334-08:00,0.0,10.728913,10728.913 +6532,2025-03-07T19:28:09.288355-08:00,0.0,10.731021,10731.021 +6533,2025-03-07T19:28:20.015430-08:00,0.0,10.727075,10727.075 +6534,2025-03-07T19:28:30.747066-08:00,0.0,10.731636,10731.636 +6535,2025-03-07T19:28:41.467329-08:00,0.0,10.720263,10720.263 +6536,2025-03-07T19:28:52.192352-08:00,0.0,10.725023,10725.023 +6537,2025-03-07T19:29:02.927471-08:00,0.0,10.735119,10735.119 +6538,2025-03-07T19:29:13.652333-08:00,0.0,10.724862,10724.862 +6539,2025-03-07T19:29:24.378498-08:00,0.0,10.726165,10726.165 +6540,2025-03-07T19:29:35.104331-08:00,0.0,10.725833,10725.833 +6541,2025-03-07T19:29:45.827546-08:00,0.0,10.723215,10723.215 +6542,2025-03-07T19:29:56.556473-08:00,0.0,10.728927,10728.927 +6543,2025-03-07T19:30:07.285335-08:00,0.0,10.728862,10728.862 +6544,2025-03-07T19:30:18.013522-08:00,0.0,10.728187,10728.187 +6545,2025-03-07T19:30:28.740389-08:00,0.0,10.726867,10726.867 +6546,2025-03-07T19:30:39.466330-08:00,0.0,10.725941,10725.941 +6547,2025-03-07T19:30:50.184403-08:00,0.0,10.718073,10718.073 +6548,2025-03-07T19:31:00.916463-08:00,0.0,10.73206,10732.06 +6549,2025-03-07T19:31:11.643506-08:00,0.0,10.727043,10727.043 +6550,2025-03-07T19:31:22.371366-08:00,0.0,10.72786,10727.86 +6551,2025-03-07T19:31:33.103329-08:00,0.0,10.731963,10731.963 +6552,2025-03-07T19:31:43.837502-08:00,0.0,10.734173,10734.173 +6553,2025-03-07T19:31:54.566540-08:00,0.0,10.729038,10729.038 +6554,2025-03-07T19:32:05.295788-08:00,0.0,10.729248,10729.248 +6555,2025-03-07T19:32:16.025509-08:00,0.0,10.729721,10729.721 +6556,2025-03-07T19:32:26.746617-08:00,0.0,10.721108,10721.108 +6557,2025-03-07T19:32:37.481332-08:00,0.0,10.734715,10734.715 +6558,2025-03-07T19:32:48.209357-08:00,0.0,10.728025,10728.025 +6559,2025-03-07T19:32:58.928509-08:00,0.0,10.719152,10719.152 +6560,2025-03-07T19:33:09.662515-08:00,0.0,10.734006,10734.006 +6561,2025-03-07T19:33:20.392495-08:00,0.0,10.72998,10729.98 +6562,2025-03-07T19:33:31.122586-08:00,0.0,10.730091,10730.091 +6563,2025-03-07T19:33:41.845389-08:00,0.0,10.722803,10722.803 +6564,2025-03-07T19:33:52.577358-08:00,0.0,10.731969,10731.969 +6565,2025-03-07T19:34:03.306744-08:00,0.0,10.729386,10729.386 +6566,2025-03-07T19:34:14.036328-08:00,0.0,10.729584,10729.584 +6567,2025-03-07T19:34:24.768331-08:00,0.0,10.732003,10732.003 +6568,2025-03-07T19:34:35.496653-08:00,0.0,10.728322,10728.322 +6569,2025-03-07T19:34:46.224450-08:00,0.0,10.727797,10727.797 +6570,2025-03-07T19:34:56.960963-08:00,0.0,10.736513,10736.513 +6571,2025-03-07T19:35:07.685322-08:00,0.0,10.724359,10724.359 +6572,2025-03-07T19:35:18.410884-08:00,0.0,10.725562,10725.562 +6573,2025-03-07T19:35:29.138328-08:00,0.0,10.727444,10727.444 +6574,2025-03-07T19:35:30.629759-08:00,226.0,1.491431,1491.431 +6575,2025-03-07T19:35:39.873523-08:00,389.0,9.243764,9243.764 +6576,2025-03-07T19:35:50.591326-08:00,448.0,10.717803,10717.803 +6577,2025-03-07T19:36:01.323349-08:00,371.0,10.732023,10732.023 +6578,2025-03-07T19:36:12.059247-08:00,400.0,10.735898,10735.898 +6579,2025-03-07T19:36:22.781055-08:00,433.0,10.721808,10721.808 +6580,2025-03-07T19:36:33.515818-08:00,426.0,10.734763,10734.763 +6581,2025-03-07T19:36:44.247352-08:00,355.0,10.731534,10731.534 +6582,2025-03-07T19:36:54.973333-08:00,451.0,10.725981,10725.981 +6583,2025-03-07T19:37:05.707967-08:00,407.0,10.734634,10734.634 +6584,2025-03-07T19:37:16.444648-08:00,314.0,10.736681,10736.681 +6585,2025-03-07T19:37:27.167330-08:00,304.0,10.722682,10722.682 +6586,2025-03-07T19:37:37.905476-08:00,245.0,10.738146,10738.146 +6587,2025-03-07T19:37:48.631366-08:00,432.0,10.72589,10725.89 +6588,2025-03-07T19:37:59.366574-08:00,331.0,10.735208,10735.208 +6589,2025-03-07T19:38:10.091545-08:00,409.0,10.724971,10724.971 +6590,2025-03-07T19:38:20.819329-08:00,322.0,10.727784,10727.784 +6591,2025-03-07T19:38:25.065680-08:00,0.0,4.246351,4246.351 +6592,2025-03-07T19:38:31.550536-08:00,0.0,6.484856,6484.856 +6593,2025-03-07T19:38:42.277650-08:00,0.0,10.727114,10727.114 +6594,2025-03-07T19:38:53.010376-08:00,0.0,10.732726,10732.726 +6595,2025-03-07T19:39:03.745325-08:00,0.0,10.734949,10734.949 +6596,2025-03-07T19:39:14.476507-08:00,0.0,10.731182,10731.182 +6597,2025-03-07T19:39:25.205816-08:00,0.0,10.729309,10729.309 +6598,2025-03-07T19:39:35.943394-08:00,0.0,10.737578,10737.578 +6599,2025-03-07T19:39:46.673332-08:00,0.0,10.729938,10729.938 +6600,2025-03-07T19:39:57.402576-08:00,0.0,10.729244,10729.244 +6601,2025-03-07T19:40:08.132325-08:00,0.0,10.729749,10729.749 +6602,2025-03-07T19:40:18.865423-08:00,0.0,10.733098,10733.098 +6603,2025-03-07T19:40:29.603562-08:00,0.0,10.738139,10738.139 +6604,2025-03-07T19:40:40.334329-08:00,0.0,10.730767,10730.767 +6605,2025-03-07T19:40:51.068329-08:00,0.0,10.734,10734.0 +6606,2025-03-07T19:41:01.796333-08:00,0.0,10.728004,10728.004 +6607,2025-03-07T19:41:12.523359-08:00,0.0,10.727026,10727.026 +6608,2025-03-07T19:41:23.258331-08:00,0.0,10.734972,10734.972 +6609,2025-03-07T19:41:34.000367-08:00,0.0,10.742036,10742.036 +6610,2025-03-07T19:41:44.731596-08:00,0.0,10.731229,10731.229 +6611,2025-03-07T19:41:55.468457-08:00,0.0,10.736861,10736.861 +6612,2025-03-07T19:42:06.202434-08:00,0.0,10.733977,10733.977 +6613,2025-03-07T19:42:16.932334-08:00,0.0,10.7299,10729.9 +6614,2025-03-07T19:42:27.671427-08:00,0.0,10.739093,10739.093 +6615,2025-03-07T19:42:38.406866-08:00,0.0,10.735439,10735.439 +6616,2025-03-07T19:42:49.145516-08:00,0.0,10.73865,10738.65 +6617,2025-03-07T19:42:59.878336-08:00,0.0,10.73282,10732.82 +6618,2025-03-07T19:43:10.611537-08:00,0.0,10.733201,10733.201 +6619,2025-03-07T19:43:21.345505-08:00,0.0,10.733968,10733.968 +6620,2025-03-07T19:43:32.079332-08:00,0.0,10.733827,10733.827 +6621,2025-03-07T19:43:42.816329-08:00,0.0,10.736997,10736.997 +6622,2025-03-07T19:43:53.547392-08:00,0.0,10.731063,10731.063 +6623,2025-03-07T19:44:04.279357-08:00,0.0,10.731965,10731.965 +6624,2025-03-07T19:44:15.017529-08:00,0.0,10.738172,10738.172 +6625,2025-03-07T19:44:25.750403-08:00,0.0,10.732874,10732.874 +6626,2025-03-07T19:44:36.480749-08:00,0.0,10.730346,10730.346 +6627,2025-03-07T19:44:47.216329-08:00,0.0,10.73558,10735.58 +6628,2025-03-07T19:44:57.948543-08:00,0.0,10.732214,10732.214 +6629,2025-03-07T19:45:08.684334-08:00,0.0,10.735791,10735.791 +6630,2025-03-07T19:45:19.417611-08:00,0.0,10.733277,10733.277 +6631,2025-03-07T19:45:30.148769-08:00,0.0,10.731158,10731.158 +6632,2025-03-07T19:45:40.885330-08:00,0.0,10.736561,10736.561 +6633,2025-03-07T19:45:51.626014-08:00,0.0,10.740684,10740.684 +6634,2025-03-07T19:46:02.352944-08:00,0.0,10.72693,10726.93 +6635,2025-03-07T19:46:13.092412-08:00,0.0,10.739468,10739.468 +6636,2025-03-07T19:46:23.827497-08:00,0.0,10.735085,10735.085 +6637,2025-03-07T19:46:34.560328-08:00,0.0,10.732831,10732.831 +6638,2025-03-07T19:46:45.295753-08:00,0.0,10.735425,10735.425 +6639,2025-03-07T19:46:56.036529-08:00,0.0,10.740776,10740.776 +6640,2025-03-07T19:47:06.767331-08:00,0.0,10.730802,10730.802 +6641,2025-03-07T19:47:17.503340-08:00,0.0,10.736009,10736.009 +6642,2025-03-07T19:47:28.247514-08:00,0.0,10.744174,10744.174 +6643,2025-03-07T19:47:38.982018-08:00,0.0,10.734504,10734.504 +6644,2025-03-07T19:47:49.724475-08:00,0.0,10.742457,10742.457 +6645,2025-03-07T19:48:00.461544-08:00,0.0,10.737069,10737.069 +6646,2025-03-07T19:48:11.199360-08:00,0.0,10.737816,10737.816 +6647,2025-03-07T19:48:21.938327-08:00,0.0,10.738967,10738.967 +6648,2025-03-07T19:48:32.672514-08:00,0.0,10.734187,10734.187 +6649,2025-03-07T19:48:43.414932-08:00,0.0,10.742418,10742.418 +6650,2025-03-07T19:48:54.151391-08:00,0.0,10.736459,10736.459 +6651,2025-03-07T19:49:04.894364-08:00,0.0,10.742973,10742.973 +6652,2025-03-07T19:49:15.634334-08:00,0.0,10.73997,10739.97 +6653,2025-03-07T19:49:26.368419-08:00,0.0,10.734085,10734.085 +6654,2025-03-07T19:49:37.104721-08:00,0.0,10.736302,10736.302 +6655,2025-03-07T19:49:47.841329-08:00,0.0,10.736608,10736.608 +6656,2025-03-07T19:49:58.585745-08:00,0.0,10.744416,10744.416 +6657,2025-03-07T19:50:09.324486-08:00,0.0,10.738741,10738.741 +6658,2025-03-07T19:50:20.059396-08:00,0.0,10.73491,10734.91 +6659,2025-03-07T19:50:30.798561-08:00,0.0,10.739165,10739.165 +6660,2025-03-07T19:50:41.538921-08:00,0.0,10.74036,10740.36 +6661,2025-03-07T19:50:52.277361-08:00,0.0,10.73844,10738.44 +6662,2025-03-07T19:50:55.122859-08:00,279.0,2.845498,2845.498 +6663,2025-03-07T19:51:03.012333-08:00,414.0,7.889474,7889.474 +6664,2025-03-07T19:51:13.754331-08:00,335.0,10.741998,10741.998 +6665,2025-03-07T19:51:24.484488-08:00,370.0,10.730157,10730.157 +6666,2025-03-07T19:51:35.229797-08:00,414.0,10.745309,10745.309 +6667,2025-03-07T19:51:45.965974-08:00,420.0,10.736177,10736.177 +6668,2025-03-07T19:51:56.706541-08:00,347.0,10.740567,10740.567 +6669,2025-03-07T19:52:07.435331-08:00,416.0,10.72879,10728.79 +6670,2025-03-07T19:52:18.183602-08:00,380.0,10.748271,10748.271 +6671,2025-03-07T19:52:28.924771-08:00,406.0,10.741169,10741.169 +6672,2025-03-07T19:52:39.668803-08:00,389.0,10.744032,10744.032 +6673,2025-03-07T19:52:50.405652-08:00,400.0,10.736849,10736.849 +6674,2025-03-07T19:53:01.142632-08:00,407.0,10.73698,10736.98 +6675,2025-03-07T19:53:11.879820-08:00,384.0,10.737188,10737.188 +6676,2025-03-07T19:53:22.617763-08:00,407.0,10.737943,10737.943 +6677,2025-03-07T19:53:33.356781-08:00,285.0,10.739018,10739.018 +6678,2025-03-07T19:53:44.094622-08:00,265.0,10.737841,10737.841 +6679,2025-03-07T19:53:54.831796-08:00,390.0,10.737174,10737.174 +6680,2025-03-07T19:54:05.575599-08:00,285.0,10.743803,10743.803 +6681,2025-03-07T19:54:16.308937-08:00,402.0,10.733338,10733.338 +6682,2025-03-07T19:54:27.043798-08:00,368.0,10.734861,10734.861 +6683,2025-03-07T19:54:37.778599-08:00,305.0,10.734801,10734.801 +6684,2025-03-07T19:54:43.810320-08:00,0.0,6.031721,6031.721 +6685,2025-03-07T19:54:48.523598-08:00,0.0,4.713278,4713.278 +6686,2025-03-07T19:54:59.255787-08:00,0.0,10.732189,10732.189 +6687,2025-03-07T19:55:09.992626-08:00,0.0,10.736839,10736.839 +6688,2025-03-07T19:55:20.736641-08:00,0.0,10.744015,10744.015 +6689,2025-03-07T19:55:31.467595-08:00,0.0,10.730954,10730.954 +6690,2025-03-07T19:55:42.207766-08:00,0.0,10.740171,10740.171 +6691,2025-03-07T19:55:52.943805-08:00,0.0,10.736039,10736.039 +6692,2025-03-07T19:56:03.680602-08:00,0.0,10.736797,10736.797 +6693,2025-03-07T19:56:14.425811-08:00,0.0,10.745209,10745.209 +6694,2025-03-07T19:56:25.154774-08:00,0.0,10.728963,10728.963 +6695,2025-03-07T19:56:35.889651-08:00,0.0,10.734877,10734.877 +6696,2025-03-07T19:56:46.633756-08:00,0.0,10.744105,10744.105 +6697,2025-03-07T19:56:57.372599-08:00,0.0,10.738843,10738.843 +6698,2025-03-07T19:57:08.098741-08:00,0.0,10.726142,10726.142 +6699,2025-03-07T19:57:18.836603-08:00,0.0,10.737862,10737.862 +6700,2025-03-07T19:57:29.579128-08:00,0.0,10.742525,10742.525 +6701,2025-03-07T19:57:40.311599-08:00,0.0,10.732471,10732.471 +6702,2025-03-07T19:57:51.049871-08:00,0.0,10.738272,10738.272 +6703,2025-03-07T19:58:01.784458-08:00,0.0,10.734587,10734.587 +6704,2025-03-07T19:58:12.520599-08:00,0.0,10.736141,10736.141 +6705,2025-03-07T19:58:23.252600-08:00,0.0,10.732001,10732.001 +6706,2025-03-07T19:58:33.991635-08:00,0.0,10.739035,10739.035 +6707,2025-03-07T19:58:44.726972-08:00,0.0,10.735337,10735.337 +6708,2025-03-07T19:58:55.459599-08:00,0.0,10.732627,10732.627 +6709,2025-03-07T19:59:06.202344-08:00,0.0,10.742745,10742.745 +6710,2025-03-07T19:59:16.927596-08:00,0.0,10.725252,10725.252 +6711,2025-03-07T19:59:27.666802-08:00,0.0,10.739206,10739.206 +6712,2025-03-07T19:59:38.400597-08:00,0.0,10.733795,10733.795 +6713,2025-03-07T19:59:49.136667-08:00,0.0,10.73607,10736.07 +6714,2025-03-07T19:59:59.873320-08:00,0.0,10.736653,10736.653 +6715,2025-03-07T20:00:10.608769-08:00,0.0,10.735449,10735.449 +6716,2025-03-07T20:00:21.349861-08:00,0.0,10.741092,10741.092 +6717,2025-03-07T20:00:32.083624-08:00,0.0,10.733763,10733.763 +6718,2025-03-07T20:00:42.823806-08:00,0.0,10.740182,10740.182 +6719,2025-03-07T20:00:53.560600-08:00,0.0,10.736794,10736.794 +6720,2025-03-07T20:01:04.292769-08:00,0.0,10.732169,10732.169 +6721,2025-03-07T20:01:15.023298-08:00,0.0,10.730529,10730.529 +6722,2025-03-07T20:01:25.762603-08:00,0.0,10.739305,10739.305 +6723,2025-03-07T20:01:36.502705-08:00,0.0,10.740102,10740.102 +6724,2025-03-07T20:01:47.235768-08:00,0.0,10.733063,10733.063 +6725,2025-03-07T20:01:57.982798-08:00,0.0,10.74703,10747.03 +6726,2025-03-07T20:02:08.714598-08:00,0.0,10.7318,10731.8 +6727,2025-03-07T20:02:19.450814-08:00,0.0,10.736216,10736.216 +6728,2025-03-07T20:02:30.199599-08:00,0.0,10.748785,10748.785 +6729,2025-03-07T20:02:40.931809-08:00,0.0,10.73221,10732.21 +6730,2025-03-07T20:02:51.666796-08:00,0.0,10.734987,10734.987 +6731,2025-03-07T20:03:02.405847-08:00,0.0,10.739051,10739.051 +6732,2025-03-07T20:03:13.148779-08:00,0.0,10.742932,10742.932 +6733,2025-03-07T20:03:23.879912-08:00,0.0,10.731133,10731.133 +6734,2025-03-07T20:03:34.624597-08:00,0.0,10.744685,10744.685 +6735,2025-03-07T20:03:45.362169-08:00,0.0,10.737572,10737.572 +6736,2025-03-07T20:03:56.092666-08:00,0.0,10.730497,10730.497 +6737,2025-03-07T20:04:06.828594-08:00,0.0,10.735928,10735.928 +6738,2025-03-07T20:04:17.564597-08:00,0.0,10.736003,10736.003 +6739,2025-03-07T20:04:28.297749-08:00,0.0,10.733152,10733.152 +6740,2025-03-07T20:04:39.035237-08:00,0.0,10.737488,10737.488 +6741,2025-03-07T20:04:49.771600-08:00,0.0,10.736363,10736.363 +6742,2025-03-07T20:05:00.500682-08:00,0.0,10.729082,10729.082 +6743,2025-03-07T20:05:11.244176-08:00,0.0,10.743494,10743.494 +6744,2025-03-07T20:05:21.979809-08:00,0.0,10.735633,10735.633 +6745,2025-03-07T20:05:32.713607-08:00,0.0,10.733798,10733.798 +6746,2025-03-07T20:05:43.443594-08:00,0.0,10.729987,10729.987 +6747,2025-03-07T20:05:54.181700-08:00,0.0,10.738106,10738.106 +6748,2025-03-07T20:06:04.914795-08:00,0.0,10.733095,10733.095 +6749,2025-03-07T20:06:15.649800-08:00,0.0,10.735005,10735.005 +6750,2025-03-07T20:06:26.379024-08:00,0.0,10.729224,10729.224 +6751,2025-03-07T20:06:37.109775-08:00,0.0,10.730751,10730.751 +6752,2025-03-07T20:06:47.843600-08:00,0.0,10.733825,10733.825 +6753,2025-03-07T20:06:58.570856-08:00,0.0,10.727256,10727.256 +6754,2025-03-07T20:07:09.306601-08:00,0.0,10.735745,10735.745 +6755,2025-03-07T20:07:20.038625-08:00,0.0,10.732024,10732.024 +6756,2025-03-07T20:07:30.772627-08:00,0.0,10.734002,10734.002 +6757,2025-03-07T20:07:41.502598-08:00,0.0,10.729971,10729.971 +6758,2025-03-07T20:07:52.238970-08:00,0.0,10.736372,10736.372 +6759,2025-03-07T20:08:02.971969-08:00,0.0,10.732999,10732.999 +6760,2025-03-07T20:08:13.697595-08:00,0.0,10.725626,10725.626 +6761,2025-03-07T20:08:24.431024-08:00,0.0,10.733429,10733.429 +6762,2025-03-07T20:08:35.171945-08:00,0.0,10.740921,10740.921 +6763,2025-03-07T20:08:45.898601-08:00,0.0,10.726656,10726.656 +6764,2025-03-07T20:08:56.629799-08:00,0.0,10.731198,10731.198 +6765,2025-03-07T20:09:07.363277-08:00,0.0,10.733478,10733.478 +6766,2025-03-07T20:09:18.097884-08:00,0.0,10.734607,10734.607 +6767,2025-03-07T20:09:28.831591-08:00,0.0,10.733707,10733.707 +6768,2025-03-07T20:09:39.562809-08:00,0.0,10.731218,10731.218 +6769,2025-03-07T20:09:50.298439-08:00,0.0,10.73563,10735.63 +6770,2025-03-07T20:10:01.021596-08:00,0.0,10.723157,10723.157 +6771,2025-03-07T20:10:11.758612-08:00,0.0,10.737016,10737.016 +6772,2025-03-07T20:10:22.493421-08:00,0.0,10.734809,10734.809 +6773,2025-03-07T20:10:33.229601-08:00,0.0,10.73618,10736.18 +6774,2025-03-07T20:10:43.954814-08:00,0.0,10.725213,10725.213 +6775,2025-03-07T20:10:54.692780-08:00,0.0,10.737966,10737.966 +6776,2025-03-07T20:11:05.418599-08:00,0.0,10.725819,10725.819 +6777,2025-03-07T20:11:16.150802-08:00,0.0,10.732203,10732.203 +6778,2025-03-07T20:11:26.889919-08:00,0.0,10.739117,10739.117 +6779,2025-03-07T20:11:37.623713-08:00,0.0,10.733794,10733.794 +6780,2025-03-07T20:11:48.351663-08:00,0.0,10.72795,10727.95 +6781,2025-03-07T20:11:59.079663-08:00,0.0,10.728,10728.0 +6782,2025-03-07T20:12:09.816471-08:00,0.0,10.736808,10736.808 +6783,2025-03-07T20:12:20.542592-08:00,0.0,10.726121,10726.121 +6784,2025-03-07T20:12:31.281598-08:00,0.0,10.739006,10739.006 +6785,2025-03-07T20:12:42.008053-08:00,0.0,10.726455,10726.455 +6786,2025-03-07T20:12:52.734596-08:00,0.0,10.726543,10726.543 +6787,2025-03-07T20:13:03.470954-08:00,0.0,10.736358,10736.358 +6788,2025-03-07T20:13:14.204777-08:00,0.0,10.733823,10733.823 +6789,2025-03-07T20:13:24.934604-08:00,0.0,10.729827,10729.827 +6790,2025-03-07T20:13:35.664630-08:00,0.0,10.730026,10730.026 +6791,2025-03-07T20:13:46.402599-08:00,0.0,10.737969,10737.969 +6792,2025-03-07T20:13:57.128601-08:00,0.0,10.726002,10726.002 +6793,2025-03-07T20:14:07.860830-08:00,0.0,10.732229,10732.229 +6794,2025-03-07T20:14:18.583798-08:00,0.0,10.722968,10722.968 +6795,2025-03-07T20:14:29.317796-08:00,0.0,10.733998,10733.998 +6796,2025-03-07T20:14:40.048010-08:00,0.0,10.730214,10730.214 +6797,2025-03-07T20:14:50.782774-08:00,0.0,10.734764,10734.764 +6798,2025-03-07T20:15:01.512595-08:00,0.0,10.729821,10729.821 +6799,2025-03-07T20:15:12.247593-08:00,0.0,10.734998,10734.998 +6800,2025-03-07T20:15:22.978054-08:00,0.0,10.730461,10730.461 +6801,2025-03-07T20:15:33.711378-08:00,0.0,10.733324,10733.324 +6802,2025-03-07T20:15:44.448781-08:00,0.0,10.737403,10737.403 +6803,2025-03-07T20:15:55.179756-08:00,0.0,10.730975,10730.975 +6804,2025-03-07T20:16:05.910992-08:00,0.0,10.731236,10731.236 +6805,2025-03-07T20:16:16.640638-08:00,0.0,10.729646,10729.646 +6806,2025-03-07T20:16:27.374598-08:00,0.0,10.73396,10733.96 +6807,2025-03-07T20:16:38.104700-08:00,0.0,10.730102,10730.102 +6808,2025-03-07T20:16:48.843782-08:00,0.0,10.739082,10739.082 +6809,2025-03-07T20:16:59.570679-08:00,0.0,10.726897,10726.897 +6810,2025-03-07T20:17:10.305685-08:00,0.0,10.735006,10735.006 +6811,2025-03-07T20:17:21.033895-08:00,0.0,10.72821,10728.21 +6812,2025-03-07T20:17:31.774246-08:00,0.0,10.740351,10740.351 +6813,2025-03-07T20:17:42.501595-08:00,0.0,10.727349,10727.349 +6814,2025-03-07T20:17:53.230766-08:00,0.0,10.729171,10729.171 +6815,2025-03-07T20:18:03.972464-08:00,0.0,10.741698,10741.698 +6816,2025-03-07T20:18:14.703598-08:00,0.0,10.731134,10731.134 +6817,2025-03-07T20:18:25.431597-08:00,0.0,10.727999,10727.999 +6818,2025-03-07T20:18:36.168889-08:00,0.0,10.737292,10737.292 +6819,2025-03-07T20:18:46.906596-08:00,0.0,10.737707,10737.707 +6820,2025-03-07T20:18:57.640641-08:00,0.0,10.734045,10734.045 +6821,2025-03-07T20:19:08.370360-08:00,0.0,10.729719,10729.719 +6822,2025-03-07T20:19:19.107037-08:00,0.0,10.736677,10736.677 +6823,2025-03-07T20:19:29.833597-08:00,0.0,10.72656,10726.56 +6824,2025-03-07T20:19:40.575790-08:00,0.0,10.742193,10742.193 +6825,2025-03-07T20:19:51.306815-08:00,0.0,10.731025,10731.025 +6826,2025-03-07T20:20:02.033712-08:00,0.0,10.726897,10726.897 +6827,2025-03-07T20:20:12.776109-08:00,0.0,10.742397,10742.397 +6828,2025-03-07T20:20:23.511599-08:00,0.0,10.73549,10735.49 +6829,2025-03-07T20:20:34.240775-08:00,0.0,10.729176,10729.176 +6830,2025-03-07T20:20:44.972595-08:00,0.0,10.73182,10731.82 +6831,2025-03-07T20:20:55.698595-08:00,0.0,10.726,10726.0 +6832,2025-03-07T20:21:06.437585-08:00,0.0,10.73899,10738.99 +6833,2025-03-07T20:21:17.160597-08:00,0.0,10.723012,10723.012 +6834,2025-03-07T20:21:27.896756-08:00,0.0,10.736159,10736.159 +6835,2025-03-07T20:21:38.624684-08:00,0.0,10.727928,10727.928 +6836,2025-03-07T20:21:49.361015-08:00,0.0,10.736331,10736.331 +6837,2025-03-07T20:22:00.100957-08:00,0.0,10.739942,10739.942 +6838,2025-03-07T20:22:10.833596-08:00,0.0,10.732639,10732.639 +6839,2025-03-07T20:22:21.567627-08:00,0.0,10.734031,10734.031 +6840,2025-03-07T20:22:32.300865-08:00,0.0,10.733238,10733.238 +6841,2025-03-07T20:22:43.030598-08:00,0.0,10.729733,10729.733 +6842,2025-03-07T20:22:53.768597-08:00,0.0,10.737999,10737.999 +6843,2025-03-07T20:23:04.504674-08:00,0.0,10.736077,10736.077 +6844,2025-03-07T20:23:15.239112-08:00,0.0,10.734438,10734.438 +6845,2025-03-07T20:23:25.969810-08:00,0.0,10.730698,10730.698 +6846,2025-03-07T20:23:36.709659-08:00,0.0,10.739849,10739.849 +6847,2025-03-07T20:23:47.446637-08:00,0.0,10.736978,10736.978 +6848,2025-03-07T20:23:58.172598-08:00,0.0,10.725961,10725.961 +6849,2025-03-07T20:24:08.911596-08:00,0.0,10.738998,10738.998 +6850,2025-03-07T20:24:19.639737-08:00,0.0,10.728141,10728.141 +6851,2025-03-07T20:24:30.376788-08:00,0.0,10.737051,10737.051 +6852,2025-03-07T20:24:41.110597-08:00,0.0,10.733809,10733.809 +6853,2025-03-07T20:24:51.838613-08:00,0.0,10.728016,10728.016 +6854,2025-03-07T20:25:02.576772-08:00,0.0,10.738159,10738.159 +6855,2025-03-07T20:25:13.313784-08:00,0.0,10.737012,10737.012 +6856,2025-03-07T20:25:24.046831-08:00,0.0,10.733047,10733.047 +6857,2025-03-07T20:25:34.791597-08:00,0.0,10.744766,10744.766 +6858,2025-03-07T20:25:45.531811-08:00,0.0,10.740214,10740.214 +6859,2025-03-07T20:25:56.269689-08:00,0.0,10.737878,10737.878 +6860,2025-03-07T20:26:06.996320-08:00,0.0,10.726631,10726.631 +6861,2025-03-07T20:26:17.742929-08:00,0.0,10.746609,10746.609 +6862,2025-03-07T20:26:28.480810-08:00,0.0,10.737881,10737.881 +6863,2025-03-07T20:26:39.215751-08:00,0.0,10.734941,10734.941 +6864,2025-03-07T20:26:49.951602-08:00,0.0,10.735851,10735.851 +6865,2025-03-07T20:27:00.686792-08:00,0.0,10.73519,10735.19 +6866,2025-03-07T20:27:11.418597-08:00,0.0,10.731805,10731.805 +6867,2025-03-07T20:27:22.160805-08:00,0.0,10.742208,10742.208 +6868,2025-03-07T20:27:32.890164-08:00,0.0,10.729359,10729.359 +6869,2025-03-07T20:27:43.634820-08:00,0.0,10.744656,10744.656 +6870,2025-03-07T20:27:54.369821-08:00,0.0,10.735001,10735.001 +6871,2025-03-07T20:28:05.108690-08:00,0.0,10.738869,10738.869 +6872,2025-03-07T20:28:15.841631-08:00,0.0,10.732941,10732.941 +6873,2025-03-07T20:28:26.579776-08:00,0.0,10.738145,10738.145 +6874,2025-03-07T20:28:37.320691-08:00,0.0,10.740915,10740.915 +6875,2025-03-07T20:28:48.059769-08:00,0.0,10.739078,10739.078 +6876,2025-03-07T20:28:58.797596-08:00,0.0,10.737827,10737.827 +6877,2025-03-07T20:29:09.540813-08:00,0.0,10.743217,10743.217 +6878,2025-03-07T20:29:20.273593-08:00,0.0,10.73278,10732.78 +6879,2025-03-07T20:29:31.006681-08:00,0.0,10.733088,10733.088 +6880,2025-03-07T20:29:41.747988-08:00,0.0,10.741307,10741.307 +6881,2025-03-07T20:29:52.487620-08:00,0.0,10.739632,10739.632 +6882,2025-03-07T20:30:03.230806-08:00,0.0,10.743186,10743.186 +6883,2025-03-07T20:30:13.966793-08:00,0.0,10.735987,10735.987 +6884,2025-03-07T20:30:24.709027-08:00,0.0,10.742234,10742.234 +6885,2025-03-07T20:30:35.452795-08:00,0.0,10.743768,10743.768 +6886,2025-03-07T20:30:46.199032-08:00,0.0,10.746237,10746.237 +6887,2025-03-07T20:30:56.941820-08:00,0.0,10.742788,10742.788 +6888,2025-03-07T20:31:07.682917-08:00,0.0,10.741097,10741.097 +6889,2025-03-07T20:31:18.428796-08:00,0.0,10.745879,10745.879 +6890,2025-03-07T20:31:29.167692-08:00,0.0,10.738896,10738.896 +6891,2025-03-07T20:31:39.912844-08:00,0.0,10.745152,10745.152 +6892,2025-03-07T20:31:50.652303-08:00,0.0,10.739459,10739.459 +6893,2025-03-07T20:32:01.397159-08:00,0.0,10.744856,10744.856 +6894,2025-03-07T20:32:12.129589-08:00,0.0,10.73243,10732.43 +6895,2025-03-07T20:32:22.874594-08:00,0.0,10.745005,10745.005 +6896,2025-03-07T20:32:33.609714-08:00,0.0,10.73512,10735.12 +6897,2025-03-07T20:32:44.343620-08:00,0.0,10.733906,10733.906 +6898,2025-03-07T20:32:55.080958-08:00,0.0,10.737338,10737.338 +6899,2025-03-07T20:33:05.821601-08:00,0.0,10.740643,10740.643 +6900,2025-03-07T20:33:16.555791-08:00,0.0,10.73419,10734.19 +6901,2025-03-07T20:33:27.289052-08:00,0.0,10.733261,10733.261 +6902,2025-03-07T20:33:38.023599-08:00,0.0,10.734547,10734.547 +6903,2025-03-07T20:33:48.769600-08:00,0.0,10.746001,10746.001 +6904,2025-03-07T20:33:59.499602-08:00,0.0,10.730002,10730.002 +6905,2025-03-07T20:34:10.246596-08:00,0.0,10.746994,10746.994 +6906,2025-03-07T20:34:20.976790-08:00,0.0,10.730194,10730.194 +6907,2025-03-07T20:34:31.717882-08:00,0.0,10.741092,10741.092 +6908,2025-03-07T20:34:42.456312-08:00,0.0,10.73843,10738.43 +6909,2025-03-07T20:34:53.188957-08:00,0.0,10.732645,10732.645 +6910,2025-03-07T20:35:03.922777-08:00,0.0,10.73382,10733.82 +6911,2025-03-07T20:35:14.665781-08:00,0.0,10.743004,10743.004 +6912,2025-03-07T20:35:25.397735-08:00,0.0,10.731954,10731.954 +6913,2025-03-07T20:35:36.133700-08:00,0.0,10.735965,10735.965 +6914,2025-03-07T20:35:46.875815-08:00,0.0,10.742115,10742.115 +6915,2025-03-07T20:35:57.616601-08:00,0.0,10.740786,10740.786 +6916,2025-03-07T20:36:08.351006-08:00,0.0,10.734405,10734.405 +6917,2025-03-07T20:36:19.087302-08:00,0.0,10.736296,10736.296 +6918,2025-03-07T20:36:29.834838-08:00,0.0,10.747536,10747.536 +6919,2025-03-07T20:36:40.563776-08:00,0.0,10.728938,10728.938 +6920,2025-03-07T20:36:51.307685-08:00,0.0,10.743909,10743.909 +6921,2025-03-07T20:37:02.047638-08:00,0.0,10.739953,10739.953 +6922,2025-03-07T20:37:12.793827-08:00,0.0,10.746189,10746.189 +6923,2025-03-07T20:37:23.529172-08:00,0.0,10.735345,10735.345 +6924,2025-03-07T20:37:34.267599-08:00,0.0,10.738427,10738.427 +6925,2025-03-07T20:37:45.008594-08:00,0.0,10.740995,10740.995 +6926,2025-03-07T20:37:55.751599-08:00,0.0,10.743005,10743.005 +6927,2025-03-07T20:38:06.485806-08:00,0.0,10.734207,10734.207 +6928,2025-03-07T20:38:17.232683-08:00,0.0,10.746877,10746.877 +6929,2025-03-07T20:38:27.972779-08:00,0.0,10.740096,10740.096 +6930,2025-03-07T20:38:38.705755-08:00,0.0,10.732976,10732.976 +6931,2025-03-07T20:38:49.444794-08:00,0.0,10.739039,10739.039 +6932,2025-03-07T20:39:00.192683-08:00,0.0,10.747889,10747.889 +6933,2025-03-07T20:39:10.930028-08:00,0.0,10.737345,10737.345 +6934,2025-03-07T20:39:21.666788-08:00,0.0,10.73676,10736.76 +6935,2025-03-07T20:39:32.409710-08:00,0.0,10.742922,10742.922 +6936,2025-03-07T20:39:43.143730-08:00,0.0,10.73402,10734.02 +6937,2025-03-07T20:39:53.890803-08:00,0.0,10.747073,10747.073 +6938,2025-03-07T20:40:04.624649-08:00,0.0,10.733846,10733.846 +6939,2025-03-07T20:40:15.360599-08:00,0.0,10.73595,10735.95 +6940,2025-03-07T20:40:26.099843-08:00,0.0,10.739244,10739.244 +6941,2025-03-07T20:40:36.837790-08:00,0.0,10.737947,10737.947 +6942,2025-03-07T20:40:47.571596-08:00,0.0,10.733806,10733.806 +6943,2025-03-07T20:40:58.305600-08:00,0.0,10.734004,10734.004 +6944,2025-03-07T20:41:09.044624-08:00,0.0,10.739024,10739.024 +6945,2025-03-07T20:41:19.773768-08:00,0.0,10.729144,10729.144 +6946,2025-03-07T20:41:30.508806-08:00,0.0,10.735038,10735.038 +6947,2025-03-07T20:41:41.253669-08:00,0.0,10.744863,10744.863 +6948,2025-03-07T20:41:51.986880-08:00,0.0,10.733211,10733.211 +6949,2025-03-07T20:42:02.722656-08:00,0.0,10.735776,10735.776 +6950,2025-03-07T20:42:13.455794-08:00,0.0,10.733138,10733.138 +6951,2025-03-07T20:42:24.192599-08:00,0.0,10.736805,10736.805 +6952,2025-03-07T20:42:34.932598-08:00,0.0,10.739999,10739.999 +6953,2025-03-07T20:42:45.661784-08:00,0.0,10.729186,10729.186 +6954,2025-03-07T20:42:56.401030-08:00,0.0,10.739246,10739.246 +6955,2025-03-07T20:43:07.132804-08:00,0.0,10.731774,10731.774 +6956,2025-03-07T20:43:17.866596-08:00,0.0,10.733792,10733.792 +6957,2025-03-07T20:43:28.604171-08:00,0.0,10.737575,10737.575 +6958,2025-03-07T20:43:39.342767-08:00,0.0,10.738596,10738.596 +6959,2025-03-07T20:43:50.075598-08:00,0.0,10.732831,10732.831 +6960,2025-03-07T20:44:00.809756-08:00,0.0,10.734158,10734.158 +6961,2025-03-07T20:44:11.538820-08:00,0.0,10.729064,10729.064 +6962,2025-03-07T20:44:22.270796-08:00,0.0,10.731976,10731.976 +6963,2025-03-07T20:44:33.010600-08:00,0.0,10.739804,10739.804 +6964,2025-03-07T20:44:43.741599-08:00,0.0,10.730999,10730.999 +6965,2025-03-07T20:44:54.474792-08:00,0.0,10.733193,10733.193 +6966,2025-03-07T20:45:05.211854-08:00,0.0,10.737062,10737.062 +6967,2025-03-07T20:45:15.947595-08:00,0.0,10.735741,10735.741 +6968,2025-03-07T20:45:26.674775-08:00,0.0,10.72718,10727.18 +6969,2025-03-07T20:45:37.403290-08:00,0.0,10.728515,10728.515 +6970,2025-03-07T20:45:48.135595-08:00,0.0,10.732305,10732.305 +6971,2025-03-07T20:45:58.870598-08:00,0.0,10.735003,10735.003 +6972,2025-03-07T20:46:09.597212-08:00,0.0,10.726614,10726.614 +6973,2025-03-07T20:46:20.323711-08:00,0.0,10.726499,10726.499 +6974,2025-03-07T20:46:31.059848-08:00,0.0,10.736137,10736.137 +6975,2025-03-07T20:46:41.788142-08:00,0.0,10.728294,10728.294 +6976,2025-03-07T20:46:52.521592-08:00,0.0,10.73345,10733.45 +6977,2025-03-07T20:47:03.255799-08:00,0.0,10.734207,10734.207 +6978,2025-03-07T20:47:13.988747-08:00,0.0,10.732948,10732.948 +6979,2025-03-07T20:47:24.715699-08:00,0.0,10.726952,10726.952 +6980,2025-03-07T20:47:35.453593-08:00,0.0,10.737894,10737.894 +6981,2025-03-07T20:47:46.181301-08:00,0.0,10.727708,10727.708 +6982,2025-03-07T20:47:56.921004-08:00,0.0,10.739703,10739.703 +6983,2025-03-07T20:48:07.648595-08:00,0.0,10.727591,10727.591 +6984,2025-03-07T20:48:18.374818-08:00,0.0,10.726223,10726.223 +6985,2025-03-07T20:48:29.106957-08:00,0.0,10.732139,10732.139 +6986,2025-03-07T20:48:39.844595-08:00,0.0,10.737638,10737.638 +6987,2025-03-07T20:48:50.575824-08:00,0.0,10.731229,10731.229 +6988,2025-03-07T20:49:01.302476-08:00,0.0,10.726652,10726.652 +6989,2025-03-07T20:49:12.038785-08:00,0.0,10.736309,10736.309 +6990,2025-03-07T20:49:22.773799-08:00,0.0,10.735014,10735.014 +6991,2025-03-07T20:49:33.499795-08:00,0.0,10.725996,10725.996 +6992,2025-03-07T20:49:44.231599-08:00,0.0,10.731804,10731.804 +6993,2025-03-07T20:49:54.962891-08:00,0.0,10.731292,10731.292 +6994,2025-03-07T20:50:05.699805-08:00,0.0,10.736914,10736.914 +6995,2025-03-07T20:50:16.432113-08:00,0.0,10.732308,10732.308 +6996,2025-03-07T20:50:27.161262-08:00,0.0,10.729149,10729.149 +6997,2025-03-07T20:50:37.899603-08:00,0.0,10.738341,10738.341 +6998,2025-03-07T20:50:48.622606-08:00,0.0,10.723003,10723.003 +6999,2025-03-07T20:50:59.357920-08:00,0.0,10.735314,10735.314 +7000,2025-03-07T20:51:10.091598-08:00,0.0,10.733678,10733.678 +7001,2025-03-07T20:51:20.815770-08:00,0.0,10.724172,10724.172 +7002,2025-03-07T20:51:31.555111-08:00,0.0,10.739341,10739.341 +7003,2025-03-07T20:51:42.287806-08:00,0.0,10.732695,10732.695 +7004,2025-03-07T20:51:53.011779-08:00,0.0,10.723973,10723.973 +7005,2025-03-07T20:52:03.743598-08:00,0.0,10.731819,10731.819 +7006,2025-03-07T20:52:14.485592-08:00,0.0,10.741994,10741.994 +7007,2025-03-07T20:52:25.251913-08:00,0.0,10.766321,10766.321 +7008,2025-03-07T20:52:35.974842-08:00,0.0,10.722929,10722.929 +7009,2025-03-07T20:52:46.716438-08:00,0.0,10.741596,10741.596 +7010,2025-03-07T20:52:57.438375-08:00,0.0,10.721937,10721.937 +7011,2025-03-07T20:53:08.177994-08:00,0.0,10.739619,10739.619 +7012,2025-03-07T20:53:18.901909-08:00,0.0,10.723915,10723.915 +7013,2025-03-07T20:53:29.637321-08:00,0.0,10.735412,10735.412 +7014,2025-03-07T20:53:40.368570-08:00,0.0,10.731249,10731.249 +7015,2025-03-07T20:53:51.094911-08:00,0.0,10.726341,10726.341 +7016,2025-03-07T20:54:01.828967-08:00,0.0,10.734056,10734.056 +7017,2025-03-07T20:54:12.557094-08:00,0.0,10.728127,10728.127 +7018,2025-03-07T20:54:23.291234-08:00,0.0,10.73414,10734.14 +7019,2025-03-07T20:54:34.021911-08:00,0.0,10.730677,10730.677 +7020,2025-03-07T20:54:44.753087-08:00,0.0,10.731176,10731.176 +7021,2025-03-07T20:54:55.486014-08:00,0.0,10.732927,10732.927 +7022,2025-03-07T20:55:06.216912-08:00,0.0,10.730898,10730.898 +7023,2025-03-07T20:55:16.937113-08:00,0.0,10.720201,10720.201 +7024,2025-03-07T20:55:27.674216-08:00,0.0,10.737103,10737.103 +7025,2025-03-07T20:55:38.394170-08:00,0.0,10.719954,10719.954 +7026,2025-03-07T20:55:49.128324-08:00,0.0,10.734154,10734.154 +7027,2025-03-07T20:55:59.858908-08:00,0.0,10.730584,10730.584 +7028,2025-03-07T20:56:10.590913-08:00,0.0,10.732005,10732.005 +7029,2025-03-07T20:56:21.327013-08:00,0.0,10.7361,10736.1 +7030,2025-03-07T20:56:32.048908-08:00,0.0,10.721895,10721.895 +7031,2025-03-07T20:56:42.782714-08:00,0.0,10.733806,10733.806 +7032,2025-03-07T20:56:53.514603-08:00,0.0,10.731889,10731.889 +7033,2025-03-07T20:57:04.243911-08:00,0.0,10.729308,10729.308 +7034,2025-03-07T20:57:14.969331-08:00,0.0,10.72542,10725.42 +7035,2025-03-07T20:57:25.692117-08:00,0.0,10.722786,10722.786 +7036,2025-03-07T20:57:36.428951-08:00,0.0,10.736834,10736.834 +7037,2025-03-07T20:57:47.154309-08:00,0.0,10.725358,10725.358 +7038,2025-03-07T20:57:57.887348-08:00,0.0,10.733039,10733.039 +7039,2025-03-07T20:58:08.608911-08:00,0.0,10.721563,10721.563 +7040,2025-03-07T20:58:19.348257-08:00,0.0,10.739346,10739.346 +7041,2025-03-07T20:58:30.075930-08:00,0.0,10.727673,10727.673 +7042,2025-03-07T20:58:40.800923-08:00,0.0,10.724993,10724.993 +7043,2025-03-07T20:58:51.541084-08:00,0.0,10.740161,10740.161 +7044,2025-03-07T20:59:02.260908-08:00,0.0,10.719824,10719.824 +7045,2025-03-07T20:59:13.001102-08:00,0.0,10.740194,10740.194 +7046,2025-03-07T20:59:34.455932-08:00,0.0,21.45483,21454.83 +7047,2025-03-07T20:59:45.179949-08:00,0.0,10.724017,10724.017 +7048,2025-03-07T20:59:55.914092-08:00,0.0,10.734143,10734.143 +7049,2025-03-07T21:00:06.639905-08:00,0.0,10.725813,10725.813 +7050,2025-03-07T21:00:17.374911-08:00,0.0,10.735006,10735.006 +7051,2025-03-07T21:00:28.103108-08:00,0.0,10.728197,10728.197 +7052,2025-03-07T21:00:38.829119-08:00,0.0,10.726011,10726.011 +7053,2025-03-07T21:00:49.558129-08:00,0.0,10.72901,10729.01 +7054,2025-03-07T21:01:00.289253-08:00,0.0,10.731124,10731.124 +7055,2025-03-07T21:01:11.025939-08:00,0.0,10.736686,10736.686 +7056,2025-03-07T21:01:21.752125-08:00,0.0,10.726186,10726.186 +7057,2025-03-07T21:01:32.478258-08:00,0.0,10.726133,10726.133 +7058,2025-03-07T21:01:43.206909-08:00,0.0,10.728651,10728.651 +7059,2025-03-07T21:01:53.939319-08:00,0.0,10.73241,10732.41 +7060,2025-03-07T21:02:04.667687-08:00,0.0,10.728368,10728.368 +7061,2025-03-07T21:02:15.390911-08:00,0.0,10.723224,10723.224 +7062,2025-03-07T21:02:26.127240-08:00,0.0,10.736329,10736.329 +7063,2025-03-07T21:02:36.845903-08:00,0.0,10.718663,10718.663 +7064,2025-03-07T21:02:47.577096-08:00,0.0,10.731193,10731.193 +7065,2025-03-07T21:02:58.309314-08:00,0.0,10.732218,10732.218 +7066,2025-03-07T21:03:09.033905-08:00,0.0,10.724591,10724.591 +7067,2025-03-07T21:03:19.767910-08:00,0.0,10.734005,10734.005 +7068,2025-03-07T21:03:30.499039-08:00,0.0,10.731129,10731.129 +7069,2025-03-07T21:03:41.216941-08:00,0.0,10.717902,10717.902 +7070,2025-03-07T21:03:51.953126-08:00,0.0,10.736185,10736.185 +7071,2025-03-07T21:04:02.678911-08:00,0.0,10.725785,10725.785 +7072,2025-03-07T21:04:13.405969-08:00,0.0,10.727058,10727.058 +7073,2025-03-07T21:04:24.128935-08:00,0.0,10.722966,10722.966 +7074,2025-03-07T21:04:34.856908-08:00,0.0,10.727973,10727.973 +7075,2025-03-07T21:04:35.036495-08:00,0.0,0.179587,179.587 +7076,2025-03-07T21:04:45.582291-08:00,0.0,10.545796,10545.796 +7077,2025-03-07T21:04:56.309912-08:00,0.0,10.727621,10727.621 +7078,2025-03-07T21:05:07.032911-08:00,0.0,10.722999,10722.999 +7079,2025-03-07T21:05:17.767046-08:00,0.0,10.734135,10734.135 +7080,2025-03-07T21:05:28.494908-08:00,0.0,10.727862,10727.862 +7081,2025-03-07T21:05:39.217134-08:00,0.0,10.722226,10722.226 +7082,2025-03-07T21:05:49.948146-08:00,0.0,10.731012,10731.012 +7083,2025-03-07T21:06:00.674913-08:00,0.0,10.726767,10726.767 +7084,2025-03-07T21:06:11.399935-08:00,0.0,10.725022,10725.022 +7085,2025-03-07T21:06:22.128906-08:00,0.0,10.728971,10728.971 +7086,2025-03-07T21:06:32.851092-08:00,0.0,10.722186,10722.186 +7087,2025-03-07T21:06:43.584908-08:00,0.0,10.733816,10733.816 +7088,2025-03-07T21:06:54.308937-08:00,0.0,10.724029,10724.029 +7089,2025-03-07T21:07:05.034934-08:00,0.0,10.725997,10725.997 +7090,2025-03-07T21:07:15.761911-08:00,0.0,10.726977,10726.977 +7091,2025-03-07T21:07:26.494207-08:00,0.0,10.732296,10732.296 +7092,2025-03-07T21:07:37.220908-08:00,0.0,10.726701,10726.701 +7093,2025-03-07T21:07:47.943910-08:00,0.0,10.723002,10723.002 +7094,2025-03-07T21:07:58.668936-08:00,0.0,10.725026,10725.026 +7095,2025-03-07T21:08:09.392983-08:00,0.0,10.724047,10724.047 +7096,2025-03-07T21:08:20.121089-08:00,0.0,10.728106,10728.106 +7097,2025-03-07T21:08:30.850908-08:00,0.0,10.729819,10729.819 +7098,2025-03-07T21:08:41.571018-08:00,0.0,10.72011,10720.11 +7099,2025-03-07T21:08:52.301142-08:00,0.0,10.730124,10730.124 +7100,2025-03-07T21:09:03.022095-08:00,0.0,10.720953,10720.953 +7101,2025-03-07T21:09:13.749657-08:00,0.0,10.727562,10727.562 +7102,2025-03-07T21:09:24.485109-08:00,0.0,10.735452,10735.452 +7103,2025-03-07T21:09:35.209939-08:00,0.0,10.72483,10724.83 +7104,2025-03-07T21:09:45.938939-08:00,0.0,10.729,10729.0 +7105,2025-03-07T21:09:56.663985-08:00,0.0,10.725046,10725.046 +7106,2025-03-07T21:10:07.387146-08:00,0.0,10.723161,10723.161 +7107,2025-03-07T21:10:18.118908-08:00,0.0,10.731762,10731.762 +7108,2025-03-07T21:10:28.838104-08:00,0.0,10.719196,10719.196 +7109,2025-03-07T21:10:39.571233-08:00,0.0,10.733129,10733.129 +7110,2025-03-07T21:10:50.296021-08:00,0.0,10.724788,10724.788 +7111,2025-03-07T21:11:01.022093-08:00,0.0,10.726072,10726.072 +7112,2025-03-07T21:11:11.752119-08:00,0.0,10.730026,10730.026 +7113,2025-03-07T21:11:22.482986-08:00,0.0,10.730867,10730.867 +7114,2025-03-07T21:11:33.205262-08:00,0.0,10.722276,10722.276 +7115,2025-03-07T21:11:43.931078-08:00,0.0,10.725816,10725.816 +7116,2025-03-07T21:11:54.654672-08:00,0.0,10.723594,10723.594 +7117,2025-03-07T21:12:05.378911-08:00,0.0,10.724239,10724.239 +7118,2025-03-07T21:12:16.109154-08:00,0.0,10.730243,10730.243 +7119,2025-03-07T21:12:26.833910-08:00,0.0,10.724756,10724.756 +7120,2025-03-07T21:12:37.564006-08:00,0.0,10.730096,10730.096 +7121,2025-03-07T21:12:48.292791-08:00,0.0,10.728785,10728.785 +7122,2025-03-07T21:12:59.024909-08:00,0.0,10.732118,10732.118 +7123,2025-03-07T21:13:09.754915-08:00,0.0,10.730006,10730.006 +7124,2025-03-07T21:13:20.475103-08:00,0.0,10.720188,10720.188 +7125,2025-03-07T21:13:31.207020-08:00,0.0,10.731917,10731.917 +7126,2025-03-07T21:13:41.937926-08:00,0.0,10.730906,10730.906 +7127,2025-03-07T21:13:52.664108-08:00,0.0,10.726182,10726.182 +7128,2025-03-07T21:14:03.385904-08:00,0.0,10.721796,10721.796 +7129,2025-03-07T21:14:14.118675-08:00,0.0,10.732771,10732.771 +7130,2025-03-07T21:14:24.842113-08:00,0.0,10.723438,10723.438 +7131,2025-03-07T21:14:35.577102-08:00,0.0,10.734989,10734.989 +7132,2025-03-07T21:14:46.295919-08:00,0.0,10.718817,10718.817 +7133,2025-03-07T21:14:57.028319-08:00,0.0,10.7324,10732.4 +7134,2025-03-07T21:15:07.763074-08:00,0.0,10.734755,10734.755 +7135,2025-03-07T21:15:18.495130-08:00,0.0,10.732056,10732.056 +7136,2025-03-07T21:15:29.220910-08:00,0.0,10.72578,10725.78 +7137,2025-03-07T21:15:39.944743-08:00,0.0,10.723833,10723.833 +7138,2025-03-07T21:15:50.682115-08:00,0.0,10.737372,10737.372 +7139,2025-03-07T21:16:01.413911-08:00,0.0,10.731796,10731.796 +7140,2025-03-07T21:16:12.143093-08:00,0.0,10.729182,10729.182 +7141,2025-03-07T21:16:22.877935-08:00,0.0,10.734842,10734.842 +7142,2025-03-07T21:16:33.606911-08:00,0.0,10.728976,10728.976 +7143,2025-03-07T21:16:44.331298-08:00,0.0,10.724387,10724.387 +7144,2025-03-07T21:16:55.061023-08:00,0.0,10.729725,10729.725 +7145,2025-03-07T21:17:05.783908-08:00,0.0,10.722885,10722.885 +7146,2025-03-07T21:17:16.514936-08:00,0.0,10.731028,10731.028 +7147,2025-03-07T21:17:27.240911-08:00,0.0,10.725975,10725.975 +7148,2025-03-07T21:17:37.971814-08:00,0.0,10.730903,10730.903 +7149,2025-03-07T21:17:48.691120-08:00,0.0,10.719306,10719.306 +7150,2025-03-07T21:17:59.426912-08:00,0.0,10.735792,10735.792 +7151,2025-03-07T21:18:10.147934-08:00,0.0,10.721022,10721.022 +7152,2025-03-07T21:18:20.870910-08:00,0.0,10.722976,10722.976 +7153,2025-03-07T21:18:31.600108-08:00,0.0,10.729198,10729.198 +7154,2025-03-07T21:18:42.326906-08:00,0.0,10.726798,10726.798 +7155,2025-03-07T21:18:53.059912-08:00,0.0,10.733006,10733.006 +7156,2025-03-07T21:19:03.779217-08:00,0.0,10.719305,10719.305 +7157,2025-03-07T21:19:14.505969-08:00,0.0,10.726752,10726.752 +7158,2025-03-07T21:19:25.241745-08:00,0.0,10.735776,10735.776 +7159,2025-03-07T21:19:35.961909-08:00,0.0,10.720164,10720.164 +7160,2025-03-07T21:19:46.693943-08:00,0.0,10.732034,10732.034 +7161,2025-03-07T21:19:57.415936-08:00,0.0,10.721993,10721.993 +7162,2025-03-07T21:20:08.140946-08:00,0.0,10.72501,10725.01 +7163,2025-03-07T21:20:18.872080-08:00,0.0,10.731134,10731.134 +7164,2025-03-07T21:20:29.604119-08:00,0.0,10.732039,10732.039 +7165,2025-03-07T21:20:40.321984-08:00,0.0,10.717865,10717.865 +7166,2025-03-07T21:20:51.048911-08:00,0.0,10.726927,10726.927 +7167,2025-03-07T21:21:01.783552-08:00,0.0,10.734641,10734.641 +7168,2025-03-07T21:21:12.503092-08:00,0.0,10.71954,10719.54 +7169,2025-03-07T21:21:23.235976-08:00,0.0,10.732884,10732.884 +7170,2025-03-07T21:21:33.961906-08:00,0.0,10.72593,10725.93 +7171,2025-03-07T21:21:44.700265-08:00,0.0,10.738359,10738.359 +7172,2025-03-07T21:21:55.421904-08:00,0.0,10.721639,10721.639 +7173,2025-03-07T21:22:06.150134-08:00,0.0,10.72823,10728.23 +7174,2025-03-07T21:22:16.881181-08:00,0.0,10.731047,10731.047 +7175,2025-03-07T21:22:27.611908-08:00,0.0,10.730727,10730.727 +7176,2025-03-07T21:22:38.337929-08:00,0.0,10.726021,10726.021 +7177,2025-03-07T21:22:49.067932-08:00,0.0,10.730003,10730.003 +7178,2025-03-07T21:22:59.797973-08:00,0.0,10.730041,10730.041 +7179,2025-03-07T21:23:10.527605-08:00,0.0,10.729632,10729.632 +7180,2025-03-07T21:23:21.255913-08:00,0.0,10.728308,10728.308 +7181,2025-03-07T21:23:31.982920-08:00,0.0,10.727007,10727.007 +7182,2025-03-07T21:23:42.714301-08:00,0.0,10.731381,10731.381 +7183,2025-03-07T21:23:53.443908-08:00,0.0,10.729607,10729.607 +7184,2025-03-07T21:24:04.180109-08:00,0.0,10.736201,10736.201 +7185,2025-03-07T21:24:14.913146-08:00,0.0,10.733037,10733.037 +7186,2025-03-07T21:24:25.645079-08:00,0.0,10.731933,10731.933 +7187,2025-03-07T21:24:36.380911-08:00,0.0,10.735832,10735.832 +7188,2025-03-07T21:24:47.107979-08:00,0.0,10.727068,10727.068 +7189,2025-03-07T21:24:57.840559-08:00,0.0,10.73258,10732.58 +7190,2025-03-07T21:25:08.570389-08:00,0.0,10.72983,10729.83 +7191,2025-03-07T21:25:19.295080-08:00,0.0,10.724691,10724.691 +7192,2025-03-07T21:25:30.029081-08:00,0.0,10.734001,10734.001 +7193,2025-03-07T21:25:40.751909-08:00,0.0,10.722828,10722.828 +7194,2025-03-07T21:25:51.488936-08:00,0.0,10.737027,10737.027 +7195,2025-03-07T21:26:02.219930-08:00,0.0,10.730994,10730.994 +7196,2025-03-07T21:26:12.941909-08:00,0.0,10.721979,10721.979 +7197,2025-03-07T21:26:23.670088-08:00,0.0,10.728179,10728.179 +7198,2025-03-07T21:26:34.403907-08:00,0.0,10.733819,10733.819 +7199,2025-03-07T21:26:45.134171-08:00,0.0,10.730264,10730.264 +7200,2025-03-07T21:26:55.865092-08:00,0.0,10.730921,10730.921 +7201,2025-03-07T21:27:06.591911-08:00,0.0,10.726819,10726.819 +7202,2025-03-07T21:27:17.324988-08:00,0.0,10.733077,10733.077 +7203,2025-03-07T21:27:28.052091-08:00,0.0,10.727103,10727.103 +7204,2025-03-07T21:27:38.779149-08:00,0.0,10.727058,10727.058 +7205,2025-03-07T21:27:49.508912-08:00,0.0,10.729763,10729.763 +7206,2025-03-07T21:28:00.236935-08:00,0.0,10.728023,10728.023 +7207,2025-03-07T21:28:10.972916-08:00,0.0,10.735981,10735.981 +7208,2025-03-07T21:28:21.700099-08:00,0.0,10.727183,10727.183 +7209,2025-03-07T21:28:32.424908-08:00,0.0,10.724809,10724.809 +7210,2025-03-07T21:28:43.154906-08:00,0.0,10.729998,10729.998 +7211,2025-03-07T21:28:53.887137-08:00,0.0,10.732231,10732.231 +7212,2025-03-07T21:29:04.617317-08:00,0.0,10.73018,10730.18 +7213,2025-03-07T21:29:15.346910-08:00,0.0,10.729593,10729.593 +7214,2025-03-07T21:29:26.074085-08:00,0.0,10.727175,10727.175 +7215,2025-03-07T21:29:36.808906-08:00,0.0,10.734821,10734.821 +7216,2025-03-07T21:29:47.532912-08:00,0.0,10.724006,10724.006 +7217,2025-03-07T21:29:58.262078-08:00,0.0,10.729166,10729.166 +7218,2025-03-07T21:30:08.990907-08:00,0.0,10.728829,10728.829 +7219,2025-03-07T21:30:19.726913-08:00,0.0,10.736006,10736.006 +7220,2025-03-07T21:30:30.450980-08:00,0.0,10.724067,10724.067 +7221,2025-03-07T21:30:41.184907-08:00,0.0,10.733927,10733.927 +7222,2025-03-07T21:30:51.911906-08:00,0.0,10.726999,10726.999 +7223,2025-03-07T21:31:02.636156-08:00,0.0,10.72425,10724.25 +7224,2025-03-07T21:31:13.365910-08:00,0.0,10.729754,10729.754 +7225,2025-03-07T21:31:24.099361-08:00,0.0,10.733451,10733.451 +7226,2025-03-07T21:31:34.829879-08:00,0.0,10.730518,10730.518 +7227,2025-03-07T21:31:45.554979-08:00,0.0,10.7251,10725.1 +7228,2025-03-07T21:31:56.279223-08:00,0.0,10.724244,10724.244 +7229,2025-03-07T21:32:07.016933-08:00,0.0,10.73771,10737.71 +7230,2025-03-07T21:32:17.745913-08:00,0.0,10.72898,10728.98 +7231,2025-03-07T21:32:28.470332-08:00,0.0,10.724419,10724.419 +7232,2025-03-07T21:32:39.207957-08:00,0.0,10.737625,10737.625 +7233,2025-03-07T21:32:49.929018-08:00,0.0,10.721061,10721.061 +7234,2025-03-07T21:33:00.666103-08:00,0.0,10.737085,10737.085 +7235,2025-03-07T21:33:11.400064-08:00,0.0,10.733961,10733.961 +7236,2025-03-07T21:33:22.130363-08:00,0.0,10.730299,10730.299 +7237,2025-03-07T21:33:32.862452-08:00,0.0,10.732089,10732.089 +7238,2025-03-07T21:33:43.591911-08:00,0.0,10.729459,10729.459 +7239,2025-03-07T21:33:54.314904-08:00,0.0,10.722993,10722.993 +7240,2025-03-07T21:34:05.038129-08:00,0.0,10.723225,10723.225 +7241,2025-03-07T21:34:15.776944-08:00,0.0,10.738815,10738.815 +7242,2025-03-07T21:34:26.503092-08:00,0.0,10.726148,10726.148 +7243,2025-03-07T21:34:37.225905-08:00,0.0,10.722813,10722.813 +7244,2025-03-07T21:34:47.954048-08:00,0.0,10.728143,10728.143 +7245,2025-03-07T21:34:58.681309-08:00,0.0,10.727261,10727.261 +7246,2025-03-07T21:35:09.405909-08:00,0.0,10.7246,10724.6 +7247,2025-03-07T21:35:20.135116-08:00,0.0,10.729207,10729.207 +7248,2025-03-07T21:35:30.869035-08:00,0.0,10.733919,10733.919 +7249,2025-03-07T21:35:41.588908-08:00,0.0,10.719873,10719.873 +7250,2025-03-07T21:35:52.321943-08:00,0.0,10.733035,10733.035 +7251,2025-03-07T21:36:03.045120-08:00,0.0,10.723177,10723.177 +7252,2025-03-07T21:36:13.767759-08:00,0.0,10.722639,10722.639 +7253,2025-03-07T21:36:24.489970-08:00,0.0,10.722211,10722.211 +7254,2025-03-07T21:36:35.220980-08:00,0.0,10.73101,10731.01 +7255,2025-03-07T21:36:45.947309-08:00,0.0,10.726329,10726.329 +7256,2025-03-07T21:36:56.676356-08:00,0.0,10.729047,10729.047 +7257,2025-03-07T21:37:07.399535-08:00,0.0,10.723179,10723.179 +7258,2025-03-07T21:37:18.122115-08:00,0.0,10.72258,10722.58 +7259,2025-03-07T21:37:28.844098-08:00,0.0,10.721983,10721.983 +7260,2025-03-07T21:37:39.576931-08:00,0.0,10.732833,10732.833 +7261,2025-03-07T21:37:50.299914-08:00,0.0,10.722983,10722.983 +7262,2025-03-07T21:38:01.028086-08:00,0.0,10.728172,10728.172 +7263,2025-03-07T21:38:11.755014-08:00,0.0,10.726928,10726.928 +7264,2025-03-07T21:38:22.485915-08:00,0.0,10.730901,10730.901 +7265,2025-03-07T21:38:33.207952-08:00,0.0,10.722037,10722.037 +7266,2025-03-07T21:38:43.935079-08:00,0.0,10.727127,10727.127 +7267,2025-03-07T21:38:54.671601-08:00,0.0,10.736522,10736.522 +7268,2025-03-07T21:39:05.395909-08:00,0.0,10.724308,10724.308 +7269,2025-03-07T21:39:16.112980-08:00,0.0,10.717071,10717.071 +7270,2025-03-07T21:39:26.849082-08:00,0.0,10.736102,10736.102 +7271,2025-03-07T21:39:37.565328-08:00,0.0,10.716246,10716.246 +7272,2025-03-07T21:39:48.299090-08:00,0.0,10.733762,10733.762 +7273,2025-03-07T21:39:59.025911-08:00,0.0,10.726821,10726.821 +7274,2025-03-07T21:40:09.749201-08:00,0.0,10.72329,10723.29 +7275,2025-03-07T21:40:20.471908-08:00,0.0,10.722707,10722.707 +7276,2025-03-07T21:40:31.205100-08:00,0.0,10.733192,10733.192 +7277,2025-03-07T21:40:41.930359-08:00,0.0,10.725259,10725.259 +7278,2025-03-07T21:40:52.651141-08:00,0.0,10.720782,10720.782 +7279,2025-03-07T21:41:03.376095-08:00,0.0,10.724954,10724.954 +7280,2025-03-07T21:41:14.102911-08:00,0.0,10.726816,10726.816 +7281,2025-03-07T21:41:24.837910-08:00,0.0,10.734999,10734.999 +7282,2025-03-07T21:41:35.568085-08:00,0.0,10.730175,10730.175 +7283,2025-03-07T21:41:46.293118-08:00,0.0,10.725033,10725.033 +7284,2025-03-07T21:41:57.028911-08:00,0.0,10.735793,10735.793 +7285,2025-03-07T21:42:07.755606-08:00,0.0,10.726695,10726.695 +7286,2025-03-07T21:42:18.484905-08:00,0.0,10.729299,10729.299 +7287,2025-03-07T21:42:29.221906-08:00,0.0,10.737001,10737.001 +7288,2025-03-07T21:42:39.946386-08:00,0.0,10.72448,10724.48 +7289,2025-03-07T21:42:50.675908-08:00,0.0,10.729522,10729.522 +7290,2025-03-07T21:43:01.402911-08:00,0.0,10.727003,10727.003 +7291,2025-03-07T21:43:12.137696-08:00,0.0,10.734785,10734.785 +7292,2025-03-07T21:43:22.856936-08:00,0.0,10.71924,10719.24 +7293,2025-03-07T21:43:33.586107-08:00,0.0,10.729171,10729.171 +7294,2025-03-07T21:43:44.307116-08:00,0.0,10.721009,10721.009 +7295,2025-03-07T21:43:55.039981-08:00,0.0,10.732865,10732.865 +7296,2025-03-07T21:44:05.769104-08:00,0.0,10.729123,10729.123 +7297,2025-03-07T21:44:16.495112-08:00,0.0,10.726008,10726.008 +7298,2025-03-07T21:44:27.222017-08:00,0.0,10.726905,10726.905 +7299,2025-03-07T21:44:37.951944-08:00,0.0,10.729927,10729.927 +7300,2025-03-07T21:44:48.676124-08:00,0.0,10.72418,10724.18 +7301,2025-03-07T21:44:59.407748-08:00,0.0,10.731624,10731.624 +7302,2025-03-07T21:45:10.136958-08:00,0.0,10.72921,10729.21 +7303,2025-03-07T21:45:20.863098-08:00,0.0,10.72614,10726.14 +7304,2025-03-07T21:45:31.584090-08:00,0.0,10.720992,10720.992 +7305,2025-03-07T21:45:42.313912-08:00,0.0,10.729822,10729.822 +7306,2025-03-07T21:45:53.047109-08:00,0.0,10.733197,10733.197 +7307,2025-03-07T21:46:03.773908-08:00,0.0,10.726799,10726.799 +7308,2025-03-07T21:46:14.506996-08:00,0.0,10.733088,10733.088 +7309,2025-03-07T21:46:25.237099-08:00,0.0,10.730103,10730.103 +7310,2025-03-07T21:46:35.958938-08:00,0.0,10.721839,10721.839 +7311,2025-03-07T21:46:46.697189-08:00,0.0,10.738251,10738.251 +7312,2025-03-07T21:46:57.418999-08:00,0.0,10.72181,10721.81 +7313,2025-03-07T21:47:08.148052-08:00,0.0,10.729053,10729.053 +7314,2025-03-07T21:47:18.877928-08:00,0.0,10.729876,10729.876 +7315,2025-03-07T21:47:29.606909-08:00,0.0,10.728981,10728.981 +7316,2025-03-07T21:47:40.330983-08:00,0.0,10.724074,10724.074 +7317,2025-03-07T21:47:51.059335-08:00,0.0,10.728352,10728.352 +7318,2025-03-07T21:48:01.785906-08:00,0.0,10.726571,10726.571 +7319,2025-03-07T21:48:12.517102-08:00,0.0,10.731196,10731.196 +7320,2025-03-07T21:48:23.238117-08:00,0.0,10.721015,10721.015 +7321,2025-03-07T21:48:33.966030-08:00,0.0,10.727913,10727.913 +7322,2025-03-07T21:48:44.690940-08:00,0.0,10.72491,10724.91 +7323,2025-03-07T21:48:55.416910-08:00,0.0,10.72597,10725.97 +7324,2025-03-07T21:49:06.145248-08:00,0.0,10.728338,10728.338 +7325,2025-03-07T21:49:16.859908-08:00,0.0,10.71466,10714.66 +7326,2025-03-07T21:49:27.593362-08:00,0.0,10.733454,10733.454 +7327,2025-03-07T21:49:38.313127-08:00,0.0,10.719765,10719.765 +7328,2025-03-07T21:49:49.036510-08:00,0.0,10.723383,10723.383 +7329,2025-03-07T21:49:59.763090-08:00,0.0,10.72658,10726.58 +7330,2025-03-07T21:50:10.492116-08:00,0.0,10.729026,10729.026 +7331,2025-03-07T21:50:21.214991-08:00,0.0,10.722875,10722.875 +7332,2025-03-07T21:50:31.948120-08:00,0.0,10.733129,10733.129 +7333,2025-03-07T21:50:42.679314-08:00,0.0,10.731194,10731.194 +7334,2025-03-07T21:50:53.413089-08:00,0.0,10.733775,10733.775 +7335,2025-03-07T21:51:04.132958-08:00,0.0,10.719869,10719.869 +7336,2025-03-07T21:51:14.858349-08:00,0.0,10.725391,10725.391 +7337,2025-03-07T21:51:25.586909-08:00,0.0,10.72856,10728.56 +7338,2025-03-07T21:51:36.317910-08:00,0.0,10.731001,10731.001 +7339,2025-03-07T21:51:47.043830-08:00,0.0,10.72592,10725.92 +7340,2025-03-07T21:51:57.778015-08:00,0.0,10.734185,10734.185 +7341,2025-03-07T21:52:08.500914-08:00,0.0,10.722899,10722.899 +7342,2025-03-07T21:52:19.243301-08:00,0.0,10.742387,10742.387 +7343,2025-03-07T21:52:29.971243-08:00,0.0,10.727942,10727.942 +7344,2025-03-07T21:52:40.703216-08:00,0.0,10.731973,10731.973 +7345,2025-03-07T21:52:51.427033-08:00,0.0,10.723817,10723.817 +7346,2025-03-07T21:53:02.155225-08:00,0.0,10.728192,10728.192 +7347,2025-03-07T21:53:12.877036-08:00,0.0,10.721811,10721.811 +7348,2025-03-07T21:53:23.613039-08:00,0.0,10.736003,10736.003 +7349,2025-03-07T21:53:34.333035-08:00,0.0,10.719996,10719.996 +7350,2025-03-07T21:53:45.058253-08:00,0.0,10.725218,10725.218 +7351,2025-03-07T21:53:55.791149-08:00,0.0,10.732896,10732.896 +7352,2025-03-07T21:54:06.517036-08:00,0.0,10.725887,10725.887 +7353,2025-03-07T21:54:17.240266-08:00,0.0,10.72323,10723.23 +7354,2025-03-07T21:54:27.973371-08:00,0.0,10.733105,10733.105 +7355,2025-03-07T21:54:38.698038-08:00,0.0,10.724667,10724.667 +7356,2025-03-07T21:54:49.419214-08:00,0.0,10.721176,10721.176 +7357,2025-03-07T21:55:00.149702-08:00,0.0,10.730488,10730.488 +7358,2025-03-07T21:55:10.874264-08:00,0.0,10.724562,10724.562 +7359,2025-03-07T21:55:21.610426-08:00,0.0,10.736162,10736.162 +7360,2025-03-07T21:55:32.343171-08:00,0.0,10.732745,10732.745 +7361,2025-03-07T21:55:43.074806-08:00,0.0,10.731635,10731.635 +7362,2025-03-07T21:55:53.809182-08:00,0.0,10.734376,10734.376 +7363,2025-03-07T21:56:04.534038-08:00,0.0,10.724856,10724.856 +7364,2025-03-07T21:56:15.267094-08:00,0.0,10.733056,10733.056 +7365,2025-03-07T21:56:25.990506-08:00,0.0,10.723412,10723.412 +7366,2025-03-07T21:56:36.717038-08:00,0.0,10.726532,10726.532 +7367,2025-03-07T21:56:47.447109-08:00,0.0,10.730071,10730.071 +7368,2025-03-07T21:56:58.180109-08:00,315.0,10.733,10733.0 +7369,2025-03-07T21:57:08.906239-08:00,451.0,10.72613,10726.13 +7370,2025-03-07T21:57:19.633218-08:00,443.0,10.726979,10726.979 +7371,2025-03-07T21:57:30.360127-08:00,435.0,10.726909,10726.909 +7372,2025-03-07T21:57:41.091032-08:00,342.0,10.730905,10730.905 +7373,2025-03-07T21:57:51.823205-08:00,445.0,10.732173,10732.173 +7374,2025-03-07T21:58:02.545038-08:00,444.0,10.721833,10721.833 +7375,2025-03-07T21:58:13.278228-08:00,439.0,10.73319,10733.19 +7376,2025-03-07T21:58:23.998041-08:00,341.0,10.719813,10719.813 +7377,2025-03-07T21:58:34.728039-08:00,464.0,10.729998,10729.998 +7378,2025-03-07T21:58:37.705613-08:00,0.0,2.977574,2977.574 +7379,2025-03-07T21:58:45.456252-08:00,0.0,7.750639,7750.639 +7380,2025-03-07T21:58:56.181040-08:00,0.0,10.724788,10724.788 +7381,2025-03-07T21:59:06.917254-08:00,0.0,10.736214,10736.214 +7382,2025-03-07T21:59:17.642586-08:00,0.0,10.725332,10725.332 +7383,2025-03-07T21:59:28.371035-08:00,0.0,10.728449,10728.449 +7384,2025-03-07T21:59:39.100342-08:00,0.0,10.729307,10729.307 +7385,2025-03-07T21:59:49.824037-08:00,0.0,10.723695,10723.695 +7386,2025-03-07T22:00:00.559078-08:00,0.0,10.735041,10735.041 +7387,2025-03-07T22:00:11.284437-08:00,0.0,10.725359,10725.359 +7388,2025-03-07T22:00:22.010100-08:00,0.0,10.725663,10725.663 +7389,2025-03-07T22:00:32.743087-08:00,0.0,10.732987,10732.987 +7390,2025-03-07T22:00:43.470428-08:00,0.0,10.727341,10727.341 +7391,2025-03-07T22:00:54.199035-08:00,0.0,10.728607,10728.607 +7392,2025-03-07T22:01:04.929258-08:00,0.0,10.730223,10730.223 +7393,2025-03-07T22:01:15.649138-08:00,0.0,10.71988,10719.88 +7394,2025-03-07T22:01:26.384037-08:00,0.0,10.734899,10734.899 +7395,2025-03-07T22:01:37.112204-08:00,0.0,10.728167,10728.167 +7396,2025-03-07T22:01:47.843208-08:00,0.0,10.731004,10731.004 +7397,2025-03-07T22:01:58.566225-08:00,0.0,10.723017,10723.017 +7398,2025-03-07T22:02:09.299402-08:00,0.0,10.733177,10733.177 +7399,2025-03-07T22:02:20.020112-08:00,0.0,10.72071,10720.71 +7400,2025-03-07T22:02:30.743247-08:00,0.0,10.723135,10723.135 +7401,2025-03-07T22:02:41.472037-08:00,0.0,10.72879,10728.79 +7402,2025-03-07T22:02:52.194457-08:00,0.0,10.72242,10722.42 +7403,2025-03-07T22:03:02.912036-08:00,0.0,10.717579,10717.579 +7404,2025-03-07T22:03:13.648104-08:00,0.0,10.736068,10736.068 +7405,2025-03-07T22:03:24.373233-08:00,0.0,10.725129,10725.129 +7406,2025-03-07T22:03:35.094033-08:00,0.0,10.7208,10720.8 +7407,2025-03-07T22:03:45.826713-08:00,0.0,10.73268,10732.68 +7408,2025-03-07T22:03:56.543039-08:00,0.0,10.716326,10716.326 +7409,2025-03-07T22:04:07.273040-08:00,0.0,10.730001,10730.001 +7410,2025-03-07T22:04:18.002189-08:00,0.0,10.729149,10729.149 +7411,2025-03-07T22:04:28.730236-08:00,0.0,10.728047,10728.047 +7412,2025-03-07T22:04:39.458212-08:00,0.0,10.727976,10727.976 +7413,2025-03-07T22:04:50.185038-08:00,0.0,10.726826,10726.826 +7414,2025-03-07T22:05:00.911334-08:00,0.0,10.726296,10726.296 +7415,2025-03-07T22:05:11.640075-08:00,0.0,10.728741,10728.741 +7416,2025-03-07T22:05:22.362371-08:00,0.0,10.722296,10722.296 +7417,2025-03-07T22:05:33.087834-08:00,0.0,10.725463,10725.463 +7418,2025-03-07T22:05:43.813032-08:00,0.0,10.725198,10725.198 +7419,2025-03-07T22:05:54.537686-08:00,0.0,10.724654,10724.654 +7420,2025-03-07T22:06:05.255164-08:00,0.0,10.717478,10717.478 +7421,2025-03-07T22:06:15.984468-08:00,0.0,10.729304,10729.304 +7422,2025-03-07T22:06:26.712563-08:00,0.0,10.728095,10728.095 +7423,2025-03-07T22:06:37.432119-08:00,0.0,10.719556,10719.556 +7424,2025-03-07T22:06:48.158342-08:00,0.0,10.726223,10726.223 +7425,2025-03-07T22:06:58.892036-08:00,0.0,10.733694,10733.694 +7426,2025-03-07T22:07:09.620234-08:00,0.0,10.728198,10728.198 +7427,2025-03-07T22:07:20.343427-08:00,0.0,10.723193,10723.193 +7428,2025-03-07T22:07:31.071037-08:00,0.0,10.72761,10727.61 +7429,2025-03-07T22:07:41.793060-08:00,0.0,10.722023,10722.023 +7430,2025-03-07T22:07:52.517417-08:00,0.0,10.724357,10724.357 +7431,2025-03-07T22:08:03.248255-08:00,0.0,10.730838,10730.838 +7432,2025-03-07T22:08:13.981037-08:00,0.0,10.732782,10732.782 +7433,2025-03-07T22:08:24.700481-08:00,0.0,10.719444,10719.444 +7434,2025-03-07T22:08:35.435827-08:00,0.0,10.735346,10735.346 +7435,2025-03-07T22:08:46.159450-08:00,0.0,10.723623,10723.623 +7436,2025-03-07T22:08:56.884436-08:00,0.0,10.724986,10724.986 +7437,2025-03-07T22:09:07.619096-08:00,0.0,10.73466,10734.66 +7438,2025-03-07T22:09:18.345063-08:00,0.0,10.725967,10725.967 +7439,2025-03-07T22:09:29.070616-08:00,0.0,10.725553,10725.553 +7440,2025-03-07T22:09:39.790096-08:00,0.0,10.71948,10719.48 +7441,2025-03-07T22:09:50.519234-08:00,0.0,10.729138,10729.138 +7442,2025-03-07T22:10:01.243102-08:00,0.0,10.723868,10723.868 +7443,2025-03-07T22:10:11.971038-08:00,0.0,10.727936,10727.936 +7444,2025-03-07T22:10:22.696038-08:00,0.0,10.725,10725.0 +7445,2025-03-07T22:10:33.418452-08:00,0.0,10.722414,10722.414 +7446,2025-03-07T22:10:44.143132-08:00,0.0,10.72468,10724.68 +7447,2025-03-07T22:10:54.874038-08:00,0.0,10.730906,10730.906 +7448,2025-03-07T22:11:05.610039-08:00,0.0,10.736001,10736.001 +7449,2025-03-07T22:11:16.337278-08:00,0.0,10.727239,10727.239 +7450,2025-03-07T22:11:27.063044-08:00,0.0,10.725766,10725.766 +7451,2025-03-07T22:11:37.797220-08:00,0.0,10.734176,10734.176 +7452,2025-03-07T22:11:48.528105-08:00,0.0,10.730885,10730.885 +7453,2025-03-07T22:11:59.251040-08:00,0.0,10.722935,10722.935 +7454,2025-03-07T22:12:09.982281-08:00,0.0,10.731241,10731.241 +7455,2025-03-07T22:12:20.716312-08:00,0.0,10.734031,10734.031 +7456,2025-03-07T22:12:31.441721-08:00,0.0,10.725409,10725.409 +7457,2025-03-07T22:12:42.173227-08:00,0.0,10.731506,10731.506 +7458,2025-03-07T22:12:52.901098-08:00,0.0,10.727871,10727.871 +7459,2025-03-07T22:13:03.627250-08:00,0.0,10.726152,10726.152 +7460,2025-03-07T22:13:14.360215-08:00,0.0,10.732965,10732.965 +7461,2025-03-07T22:13:25.090039-08:00,0.0,10.729824,10729.824 +7462,2025-03-07T22:13:35.820208-08:00,0.0,10.730169,10730.169 +7463,2025-03-07T22:13:46.547718-08:00,0.0,10.72751,10727.51 +7464,2025-03-07T22:13:57.275039-08:00,0.0,10.727321,10727.321 +7465,2025-03-07T22:14:08.004057-08:00,0.0,10.729018,10729.018 +7466,2025-03-07T22:14:18.734156-08:00,0.0,10.730099,10730.099 +7467,2025-03-07T22:14:29.461525-08:00,0.0,10.727369,10727.369 +7468,2025-03-07T22:14:40.196219-08:00,0.0,10.734694,10734.694 +7469,2025-03-07T22:14:50.924239-08:00,0.0,10.72802,10728.02 +7470,2025-03-07T22:15:01.651178-08:00,0.0,10.726939,10726.939 +7471,2025-03-07T22:15:12.389039-08:00,0.0,10.737861,10737.861 +7472,2025-03-07T22:15:23.111035-08:00,0.0,10.721996,10721.996 +7473,2025-03-07T22:15:33.843238-08:00,0.0,10.732203,10732.203 +7474,2025-03-07T22:15:44.568450-08:00,0.0,10.725212,10725.212 +7475,2025-03-07T22:15:55.295038-08:00,0.0,10.726588,10726.588 +7476,2025-03-07T22:16:06.027100-08:00,0.0,10.732062,10732.062 +7477,2025-03-07T22:16:16.755063-08:00,0.0,10.727963,10727.963 +7478,2025-03-07T22:16:27.485151-08:00,0.0,10.730088,10730.088 +7479,2025-03-07T22:16:38.216516-08:00,0.0,10.731365,10731.365 +7480,2025-03-07T22:16:48.938164-08:00,0.0,10.721648,10721.648 +7481,2025-03-07T22:16:59.671037-08:00,0.0,10.732873,10732.873 +7482,2025-03-07T22:17:10.401415-08:00,0.0,10.730378,10730.378 +7483,2025-03-07T22:17:21.133299-08:00,0.0,10.731884,10731.884 +7484,2025-03-07T22:17:31.855355-08:00,0.0,10.722056,10722.056 +7485,2025-03-07T22:17:42.586217-08:00,0.0,10.730862,10730.862 +7486,2025-03-07T22:17:53.322033-08:00,0.0,10.735816,10735.816 +7487,2025-03-07T22:18:04.055107-08:00,0.0,10.733074,10733.074 +7488,2025-03-07T22:18:14.785400-08:00,0.0,10.730293,10730.293 +7489,2025-03-07T22:18:25.516174-08:00,0.0,10.730774,10730.774 +7490,2025-03-07T22:18:36.244127-08:00,0.0,10.727953,10727.953 +7491,2025-03-07T22:18:46.967433-08:00,0.0,10.723306,10723.306 +7492,2025-03-07T22:18:57.697110-08:00,0.0,10.729677,10729.677 +7493,2025-03-07T22:19:08.423115-08:00,0.0,10.726005,10726.005 +7494,2025-03-07T22:19:19.154331-08:00,0.0,10.731216,10731.216 +7495,2025-03-07T22:19:29.891036-08:00,0.0,10.736705,10736.705 +7496,2025-03-07T22:19:40.614209-08:00,0.0,10.723173,10723.173 +7497,2025-03-07T22:19:51.346033-08:00,0.0,10.731824,10731.824 +7498,2025-03-07T22:20:02.075320-08:00,0.0,10.729287,10729.287 +7499,2025-03-07T22:20:12.799202-08:00,0.0,10.723882,10723.882 +7500,2025-03-07T22:20:23.537123-08:00,0.0,10.737921,10737.921 +7501,2025-03-07T22:20:34.262248-08:00,0.0,10.725125,10725.125 +7502,2025-03-07T22:20:44.998221-08:00,0.0,10.735973,10735.973 +7503,2025-03-07T22:20:55.726223-08:00,0.0,10.728002,10728.002 +7504,2025-03-07T22:21:06.451250-08:00,0.0,10.725027,10725.027 +7505,2025-03-07T22:21:17.181208-08:00,0.0,10.729958,10729.958 +7506,2025-03-07T22:21:27.908039-08:00,0.0,10.726831,10726.831 +7507,2025-03-07T22:21:38.641346-08:00,0.0,10.733307,10733.307 +7508,2025-03-07T22:21:49.367377-08:00,0.0,10.726031,10726.031 +7509,2025-03-07T22:22:00.098038-08:00,0.0,10.730661,10730.661 +7510,2025-03-07T22:22:10.824288-08:00,0.0,10.72625,10726.25 +7511,2025-03-07T22:22:21.554063-08:00,0.0,10.729775,10729.775 +7512,2025-03-07T22:22:32.289045-08:00,0.0,10.734982,10734.982 +7513,2025-03-07T22:22:43.016460-08:00,0.0,10.727415,10727.415 +7514,2025-03-07T22:22:53.747178-08:00,0.0,10.730718,10730.718 +7515,2025-03-07T22:23:04.469038-08:00,0.0,10.72186,10721.86 +7516,2025-03-07T22:23:15.200437-08:00,0.0,10.731399,10731.399 +7517,2025-03-07T22:23:25.933036-08:00,0.0,10.732599,10732.599 +7518,2025-03-07T22:23:36.664034-08:00,0.0,10.730998,10730.998 +7519,2025-03-07T22:23:47.389413-08:00,0.0,10.725379,10725.379 +7520,2025-03-07T22:23:58.123064-08:00,0.0,10.733651,10733.651 +7521,2025-03-07T22:24:08.846219-08:00,0.0,10.723155,10723.155 +7522,2025-03-07T22:24:19.581427-08:00,0.0,10.735208,10735.208 +7523,2025-03-07T22:24:30.303036-08:00,0.0,10.721609,10721.609 +7524,2025-03-07T22:24:41.029894-08:00,0.0,10.726858,10726.858 +7525,2025-03-07T22:24:51.764246-08:00,0.0,10.734352,10734.352 +7526,2025-03-07T22:25:02.499071-08:00,0.0,10.734825,10734.825 +7527,2025-03-07T22:25:13.226117-08:00,0.0,10.727046,10727.046 +7528,2025-03-07T22:25:23.955638-08:00,0.0,10.729521,10729.521 +7529,2025-03-07T22:25:34.692465-08:00,0.0,10.736827,10736.827 +7530,2025-03-07T22:25:45.424253-08:00,0.0,10.731788,10731.788 +7531,2025-03-07T22:25:56.156362-08:00,0.0,10.732109,10732.109 +7532,2025-03-07T22:26:06.884038-08:00,0.0,10.727676,10727.676 +7533,2025-03-07T22:26:17.617063-08:00,0.0,10.733025,10733.025 +7534,2025-03-07T22:26:28.348230-08:00,0.0,10.731167,10731.167 +7535,2025-03-07T22:26:39.078454-08:00,0.0,10.730224,10730.224 +7536,2025-03-07T22:26:49.813074-08:00,0.0,10.73462,10734.62 +7537,2025-03-07T22:27:00.544622-08:00,0.0,10.731548,10731.548 +7538,2025-03-07T22:27:11.269246-08:00,0.0,10.724624,10724.624 +7539,2025-03-07T22:27:22.005078-08:00,0.0,10.735832,10735.832 +7540,2025-03-07T22:27:32.735334-08:00,0.0,10.730256,10730.256 +7541,2025-03-07T22:27:43.463154-08:00,0.0,10.72782,10727.82 +7542,2025-03-07T22:27:54.202038-08:00,0.0,10.738884,10738.884 +7543,2025-03-07T22:28:04.930210-08:00,0.0,10.728172,10728.172 +7544,2025-03-07T22:28:15.659139-08:00,0.0,10.728929,10728.929 +7545,2025-03-07T22:28:26.388036-08:00,0.0,10.728897,10728.897 +7546,2025-03-07T22:28:37.122043-08:00,0.0,10.734007,10734.007 +7547,2025-03-07T22:28:47.855484-08:00,0.0,10.733441,10733.441 +7548,2025-03-07T22:28:58.583032-08:00,0.0,10.727548,10727.548 +7549,2025-03-07T22:29:09.313247-08:00,0.0,10.730215,10730.215 +7550,2025-03-07T22:29:20.050427-08:00,0.0,10.73718,10737.18 +7551,2025-03-07T22:29:30.787103-08:00,0.0,10.736676,10736.676 +7552,2025-03-07T22:29:41.519217-08:00,0.0,10.732114,10732.114 +7553,2025-03-07T22:29:52.253842-08:00,0.0,10.734625,10734.625 +7554,2025-03-07T22:30:02.984336-08:00,0.0,10.730494,10730.494 +7555,2025-03-07T22:30:13.715268-08:00,0.0,10.730932,10730.932 +7556,2025-03-07T22:30:24.448204-08:00,0.0,10.732936,10732.936 +7557,2025-03-07T22:30:35.187531-08:00,0.0,10.739327,10739.327 +7558,2025-03-07T22:30:45.918036-08:00,0.0,10.730505,10730.505 +7559,2025-03-07T22:30:56.649037-08:00,0.0,10.731001,10731.001 +7560,2025-03-07T22:31:07.375418-08:00,0.0,10.726381,10726.381 +7561,2025-03-07T22:31:18.105061-08:00,0.0,10.729643,10729.643 +7562,2025-03-07T22:31:28.840102-08:00,0.0,10.735041,10735.041 +7563,2025-03-07T22:31:39.579068-08:00,0.0,10.738966,10738.966 +7564,2025-03-07T22:31:50.307005-08:00,0.0,10.727937,10727.937 +7565,2025-03-07T22:32:01.040246-08:00,0.0,10.733241,10733.241 +7566,2025-03-07T22:32:11.772038-08:00,0.0,10.731792,10731.792 +7567,2025-03-07T22:32:22.497853-08:00,0.0,10.725815,10725.815 +7568,2025-03-07T22:32:33.234103-08:00,0.0,10.73625,10736.25 +7569,2025-03-07T22:32:43.968037-08:00,0.0,10.733934,10733.934 +7570,2025-03-07T22:32:54.690405-08:00,0.0,10.722368,10722.368 +7571,2025-03-07T22:33:05.422036-08:00,0.0,10.731631,10731.631 +7572,2025-03-07T22:33:16.149037-08:00,0.0,10.727001,10727.001 +7573,2025-03-07T22:33:26.887397-08:00,0.0,10.73836,10738.36 +7574,2025-03-07T22:33:37.615036-08:00,0.0,10.727639,10727.639 +7575,2025-03-07T22:33:48.345039-08:00,0.0,10.730003,10730.003 +7576,2025-03-07T22:33:59.072821-08:00,0.0,10.727782,10727.782 +7577,2025-03-07T22:34:09.809061-08:00,0.0,10.73624,10736.24 +7578,2025-03-07T22:34:20.540037-08:00,0.0,10.730976,10730.976 +7579,2025-03-07T22:34:31.262521-08:00,0.0,10.722484,10722.484 +7580,2025-03-07T22:34:42.001060-08:00,0.0,10.738539,10738.539 +7581,2025-03-07T22:34:52.732034-08:00,0.0,10.730974,10730.974 +7582,2025-03-07T22:35:03.456224-08:00,0.0,10.72419,10724.19 +7583,2025-03-07T22:35:14.188035-08:00,0.0,10.731811,10731.811 +7584,2025-03-07T22:35:24.918038-08:00,0.0,10.730003,10730.003 +7585,2025-03-07T22:35:35.639169-08:00,0.0,10.721131,10721.131 +7586,2025-03-07T22:35:46.369035-08:00,0.0,10.729866,10729.866 +7587,2025-03-07T22:35:57.095226-08:00,0.0,10.726191,10726.191 +7588,2025-03-07T22:36:07.830038-08:00,0.0,10.734812,10734.812 +7589,2025-03-07T22:36:18.563035-08:00,0.0,10.732997,10732.997 +7590,2025-03-07T22:36:29.283221-08:00,0.0,10.720186,10720.186 +7591,2025-03-07T22:36:40.016224-08:00,0.0,10.733003,10733.003 +7592,2025-03-07T22:36:50.747183-08:00,0.0,10.730959,10730.959 +7593,2025-03-07T22:37:01.471969-08:00,0.0,10.724786,10724.786 +7594,2025-03-07T22:37:12.200073-08:00,0.0,10.728104,10728.104 +7595,2025-03-07T22:37:22.930407-08:00,0.0,10.730334,10730.334 +7596,2025-03-07T22:37:33.657060-08:00,0.0,10.726653,10726.653 +7597,2025-03-07T22:37:44.386038-08:00,0.0,10.728978,10728.978 +7598,2025-03-07T22:37:55.121464-08:00,0.0,10.735426,10735.426 +7599,2025-03-07T22:38:05.845031-08:00,0.0,10.723567,10723.567 +7600,2025-03-07T22:38:16.575042-08:00,0.0,10.730011,10730.011 +7601,2025-03-07T22:38:27.303223-08:00,0.0,10.728181,10728.181 +7602,2025-03-07T22:38:38.022375-08:00,0.0,10.719152,10719.152 +7603,2025-03-07T22:38:48.751660-08:00,0.0,10.729285,10729.285 +7604,2025-03-07T22:38:59.481036-08:00,0.0,10.729376,10729.376 +7605,2025-03-07T22:39:10.210237-08:00,0.0,10.729201,10729.201 +7606,2025-03-07T22:39:20.939402-08:00,0.0,10.729165,10729.165 +7607,2025-03-07T22:39:31.662032-08:00,0.0,10.72263,10722.63 +7608,2025-03-07T22:39:42.390016-08:00,0.0,10.727984,10727.984 +7609,2025-03-07T22:39:53.123529-08:00,0.0,10.733513,10733.513 +7610,2025-03-07T22:40:03.846035-08:00,0.0,10.722506,10722.506 +7611,2025-03-07T22:40:14.580039-08:00,0.0,10.734004,10734.004 +7612,2025-03-07T22:40:25.307329-08:00,0.0,10.72729,10727.29 +7613,2025-03-07T22:40:36.036097-08:00,0.0,10.728768,10728.768 +7614,2025-03-07T22:40:46.759463-08:00,0.0,10.723366,10723.366 +7615,2025-03-07T22:40:57.495274-08:00,0.0,10.735811,10735.811 +7616,2025-03-07T22:41:08.216118-08:00,0.0,10.720844,10720.844 +7617,2025-03-07T22:41:18.947071-08:00,0.0,10.730953,10730.953 +7618,2025-03-07T22:41:29.670269-08:00,0.0,10.723198,10723.198 +7619,2025-03-07T22:41:40.405305-08:00,0.0,10.735036,10735.036 +7620,2025-03-07T22:41:51.126035-08:00,0.0,10.72073,10720.73 +7621,2025-03-07T22:42:01.857532-08:00,0.0,10.731497,10731.497 +7622,2025-03-07T22:42:12.591447-08:00,0.0,10.733915,10733.915 +7623,2025-03-07T22:42:23.314096-08:00,0.0,10.722649,10722.649 +7624,2025-03-07T22:42:34.042225-08:00,0.0,10.728129,10728.129 +7625,2025-03-07T22:42:44.766086-08:00,0.0,10.723861,10723.861 +7626,2025-03-07T22:42:55.500031-08:00,0.0,10.733945,10733.945 +7627,2025-03-07T22:43:06.228236-08:00,0.0,10.728205,10728.205 +7628,2025-03-07T22:43:16.954233-08:00,0.0,10.725997,10725.997 +7629,2025-03-07T22:43:27.685251-08:00,0.0,10.731018,10731.018 +7630,2025-03-07T22:43:38.417209-08:00,0.0,10.731958,10731.958 +7631,2025-03-07T22:43:49.135037-08:00,0.0,10.717828,10717.828 +7632,2025-03-07T22:43:59.871252-08:00,0.0,10.736215,10736.215 +7633,2025-03-07T22:44:10.594066-08:00,0.0,10.722814,10722.814 +7634,2025-03-07T22:44:21.323034-08:00,0.0,10.728968,10728.968 +7635,2025-03-07T22:44:32.049213-08:00,0.0,10.726179,10726.179 +7636,2025-03-07T22:44:42.780036-08:00,0.0,10.730823,10730.823 +7637,2025-03-07T22:44:53.504109-08:00,0.0,10.724073,10724.073 +7638,2025-03-07T22:45:04.230118-08:00,0.0,10.726009,10726.009 +7639,2025-03-07T22:45:14.955332-08:00,0.0,10.725214,10725.214 +7640,2025-03-07T22:45:25.681219-08:00,0.0,10.725887,10725.887 +7641,2025-03-07T22:45:36.412038-08:00,0.0,10.730819,10730.819 +7642,2025-03-07T22:45:47.136051-08:00,0.0,10.724013,10724.013 +7643,2025-03-07T22:45:57.870338-08:00,0.0,10.734287,10734.287 +7644,2025-03-07T22:46:08.595045-08:00,0.0,10.724707,10724.707 +7645,2025-03-07T22:46:19.324227-08:00,0.0,10.729182,10729.182 +7646,2025-03-07T22:46:30.050032-08:00,0.0,10.725805,10725.805 +7647,2025-03-07T22:46:40.780047-08:00,0.0,10.730015,10730.015 +7648,2025-03-07T22:46:51.504271-08:00,0.0,10.724224,10724.224 +7649,2025-03-07T22:47:02.238406-08:00,0.0,10.734135,10734.135 +7650,2025-03-07T22:47:12.961467-08:00,0.0,10.723061,10723.061 +7651,2025-03-07T22:47:23.696174-08:00,0.0,10.734707,10734.707 +7652,2025-03-07T22:47:34.422033-08:00,0.0,10.725859,10725.859 +7653,2025-03-07T22:47:45.146293-08:00,0.0,10.72426,10724.26 +7654,2025-03-07T22:47:55.876116-08:00,0.0,10.729823,10729.823 +7655,2025-03-07T22:48:06.599461-08:00,0.0,10.723345,10723.345 +7656,2025-03-07T22:48:17.321032-08:00,0.0,10.721571,10721.571 +7657,2025-03-07T22:48:28.048039-08:00,0.0,10.727007,10727.007 +7658,2025-03-07T22:48:38.776873-08:00,0.0,10.728834,10728.834 +7659,2025-03-07T22:48:49.501313-08:00,0.0,10.72444,10724.44 +7660,2025-03-07T22:49:00.231358-08:00,0.0,10.730045,10730.045 +7661,2025-03-07T22:49:10.962103-08:00,0.0,10.730745,10730.745 +7662,2025-03-07T22:49:21.689035-08:00,0.0,10.726932,10726.932 +7663,2025-03-07T22:49:32.412343-08:00,0.0,10.723308,10723.308 +7664,2025-03-07T22:49:43.135040-08:00,0.0,10.722697,10722.697 +7665,2025-03-07T22:49:53.866093-08:00,0.0,10.731053,10731.053 +7666,2025-03-07T22:50:04.593035-08:00,0.0,10.726942,10726.942 +7667,2025-03-07T22:50:15.316033-08:00,0.0,10.722998,10722.998 +7668,2025-03-07T22:50:26.052509-08:00,0.0,10.736476,10736.476 +7669,2025-03-07T22:50:36.770260-08:00,0.0,10.717751,10717.751 +7670,2025-03-07T22:50:47.499759-08:00,0.0,10.729499,10729.499 +7671,2025-03-07T22:50:58.225101-08:00,0.0,10.725342,10725.342 +7672,2025-03-07T22:51:08.961435-08:00,0.0,10.736334,10736.334 +7673,2025-03-07T22:51:19.689230-08:00,0.0,10.727795,10727.795 +7674,2025-03-07T22:51:30.413036-08:00,0.0,10.723806,10723.806 +7675,2025-03-07T22:51:41.141432-08:00,0.0,10.728396,10728.396 +7676,2025-03-07T22:51:51.867036-08:00,0.0,10.725604,10725.604 +7677,2025-03-07T22:52:02.594039-08:00,0.0,10.727003,10727.003 +7678,2025-03-07T22:52:13.322409-08:00,0.0,10.72837,10728.37 +7679,2025-03-07T22:52:24.118218-08:00,0.0,10.795809,10795.809 +7680,2025-03-07T22:52:34.842432-08:00,0.0,10.724214,10724.214 +7681,2025-03-07T22:52:45.576632-08:00,0.0,10.7342,10734.2 +7682,2025-03-07T22:52:56.303408-08:00,0.0,10.726776,10726.776 +7683,2025-03-07T22:53:07.030664-08:00,0.0,10.727256,10727.256 +7684,2025-03-07T22:53:17.756426-08:00,0.0,10.725762,10725.762 +7685,2025-03-07T22:53:28.480357-08:00,0.0,10.723931,10723.931 +7686,2025-03-07T22:53:39.201216-08:00,0.0,10.720859,10720.859 +7687,2025-03-07T22:53:49.930426-08:00,0.0,10.72921,10729.21 +7688,2025-03-07T22:54:00.662324-08:00,0.0,10.731898,10731.898 +7689,2025-03-07T22:54:11.381218-08:00,0.0,10.718894,10718.894 +7690,2025-03-07T22:54:22.106241-08:00,0.0,10.725023,10725.023 +7691,2025-03-07T22:54:32.842433-08:00,0.0,10.736192,10736.192 +7692,2025-03-07T22:54:43.565220-08:00,0.0,10.722787,10722.787 +7693,2025-03-07T22:54:54.294456-08:00,0.0,10.729236,10729.236 +7694,2025-03-07T22:55:05.007426-08:00,0.0,10.71297,10712.97 +7695,2025-03-07T22:55:15.732431-08:00,0.0,10.725005,10725.005 +7696,2025-03-07T22:55:26.464218-08:00,0.0,10.731787,10731.787 +7697,2025-03-07T22:55:37.185231-08:00,0.0,10.721013,10721.013 +7698,2025-03-07T22:55:47.909217-08:00,0.0,10.723986,10723.986 +7699,2025-03-07T22:55:58.628455-08:00,0.0,10.719238,10719.238 +7700,2025-03-07T22:56:09.362240-08:00,0.0,10.733785,10733.785 +7701,2025-03-07T22:56:20.087255-08:00,0.0,10.725015,10725.015 +7702,2025-03-07T22:56:30.808463-08:00,0.0,10.721208,10721.208 +7703,2025-03-07T22:56:41.533248-08:00,0.0,10.724785,10724.785 +7704,2025-03-07T22:56:52.260911-08:00,0.0,10.727663,10727.663 +7705,2025-03-07T22:57:02.986216-08:00,0.0,10.725305,10725.305 +7706,2025-03-07T22:57:13.714220-08:00,0.0,10.728004,10728.004 +7707,2025-03-07T22:57:24.434356-08:00,0.0,10.720136,10720.136 +7708,2025-03-07T22:57:35.161429-08:00,0.0,10.727073,10727.073 +7709,2025-03-07T22:57:45.884507-08:00,0.0,10.723078,10723.078 +7710,2025-03-07T22:57:56.608221-08:00,0.0,10.723714,10723.714 +7711,2025-03-07T22:58:07.336441-08:00,0.0,10.72822,10728.22 +7712,2025-03-07T22:58:18.065216-08:00,0.0,10.728775,10728.775 +7713,2025-03-07T22:58:28.790405-08:00,0.0,10.725189,10725.189 +7714,2025-03-07T22:58:39.518221-08:00,0.0,10.727816,10727.816 +7715,2025-03-07T22:58:50.241436-08:00,0.0,10.723215,10723.215 +7716,2025-03-07T22:59:00.971384-08:00,0.0,10.729948,10729.948 +7717,2025-03-07T22:59:11.692221-08:00,0.0,10.720837,10720.837 +7718,2025-03-07T22:59:22.429663-08:00,0.0,10.737442,10737.442 +7719,2025-03-07T22:59:33.152215-08:00,0.0,10.722552,10722.552 +7720,2025-03-07T22:59:43.873221-08:00,0.0,10.721006,10721.006 +7721,2025-03-07T22:59:54.606309-08:00,0.0,10.733088,10733.088 +7722,2025-03-07T23:00:05.331659-08:00,0.0,10.72535,10725.35 +7723,2025-03-07T23:00:16.056729-08:00,0.0,10.72507,10725.07 +7724,2025-03-07T23:00:26.789349-08:00,0.0,10.73262,10732.62 +7725,2025-03-07T23:00:37.511221-08:00,0.0,10.721872,10721.872 +7726,2025-03-07T23:00:48.237401-08:00,0.0,10.72618,10726.18 +7727,2025-03-07T23:00:58.965218-08:00,0.0,10.727817,10727.817 +7728,2025-03-07T23:01:09.695411-08:00,0.0,10.730193,10730.193 +7729,2025-03-07T23:01:20.419218-08:00,0.0,10.723807,10723.807 +7730,2025-03-07T23:01:31.152717-08:00,0.0,10.733499,10733.499 +7731,2025-03-07T23:01:41.876389-08:00,0.0,10.723672,10723.672 +7732,2025-03-07T23:01:52.602222-08:00,0.0,10.725833,10725.833 +7733,2025-03-07T23:02:03.333432-08:00,0.0,10.73121,10731.21 +7734,2025-03-07T23:02:14.058709-08:00,0.0,10.725277,10725.277 +7735,2025-03-07T23:02:24.780434-08:00,0.0,10.721725,10721.725 +7736,2025-03-07T23:02:35.510407-08:00,0.0,10.729973,10729.973 +7737,2025-03-07T23:02:46.235293-08:00,0.0,10.724886,10724.886 +7738,2025-03-07T23:02:56.962906-08:00,0.0,10.727613,10727.613 +7739,2025-03-07T23:03:07.697462-08:00,0.0,10.734556,10734.556 +7740,2025-03-07T23:03:18.427253-08:00,0.0,10.729791,10729.791 +7741,2025-03-07T23:03:29.147324-08:00,0.0,10.720071,10720.071 +7742,2025-03-07T23:03:39.876219-08:00,0.0,10.728895,10728.895 +7743,2025-03-07T23:03:50.604251-08:00,0.0,10.728032,10728.032 +7744,2025-03-07T23:04:01.339367-08:00,0.0,10.735116,10735.116 +7745,2025-03-07T23:04:12.064218-08:00,0.0,10.724851,10724.851 +7746,2025-03-07T23:04:22.793294-08:00,0.0,10.729076,10729.076 +7747,2025-03-07T23:04:33.518694-08:00,0.0,10.7254,10725.4 +7748,2025-03-07T23:04:44.243214-08:00,0.0,10.72452,10724.52 +7749,2025-03-07T23:04:54.971402-08:00,0.0,10.728188,10728.188 +7750,2025-03-07T23:05:05.699513-08:00,0.0,10.728111,10728.111 +7751,2025-03-07T23:05:16.425306-08:00,0.0,10.725793,10725.793 +7752,2025-03-07T23:05:27.155240-08:00,0.0,10.729934,10729.934 +7753,2025-03-07T23:05:37.880426-08:00,0.0,10.725186,10725.186 +7754,2025-03-07T23:05:48.602394-08:00,0.0,10.721968,10721.968 +7755,2025-03-07T23:05:59.332390-08:00,0.0,10.729996,10729.996 +7756,2025-03-07T23:06:10.053413-08:00,0.0,10.721023,10721.023 +7757,2025-03-07T23:06:20.780218-08:00,0.0,10.726805,10726.805 +7758,2025-03-07T23:06:31.505451-08:00,0.0,10.725233,10725.233 +7759,2025-03-07T23:06:42.229371-08:00,0.0,10.72392,10723.92 +7760,2025-03-07T23:06:52.949425-08:00,0.0,10.720054,10720.054 +7761,2025-03-07T23:07:03.676441-08:00,0.0,10.727016,10727.016 +7762,2025-03-07T23:07:14.404308-08:00,0.0,10.727867,10727.867 +7763,2025-03-07T23:07:25.133308-08:00,0.0,10.729,10729.0 +7764,2025-03-07T23:07:35.860218-08:00,0.0,10.72691,10726.91 +7765,2025-03-07T23:07:46.587253-08:00,0.0,10.727035,10727.035 +7766,2025-03-07T23:07:57.307220-08:00,0.0,10.719967,10719.967 +7767,2025-03-07T23:08:08.039219-08:00,0.0,10.731999,10731.999 +7768,2025-03-07T23:08:18.758738-08:00,0.0,10.719519,10719.519 +7769,2025-03-07T23:08:29.483221-08:00,0.0,10.724483,10724.483 +7770,2025-03-07T23:08:40.215247-08:00,0.0,10.732026,10732.026 +7771,2025-03-07T23:08:50.937406-08:00,0.0,10.722159,10722.159 +7772,2025-03-07T23:09:01.669488-08:00,0.0,10.732082,10732.082 +7773,2025-03-07T23:09:12.399562-08:00,0.0,10.730074,10730.074 +7774,2025-03-07T23:09:23.124218-08:00,0.0,10.724656,10724.656 +7775,2025-03-07T23:09:33.861417-08:00,0.0,10.737199,10737.199 +7776,2025-03-07T23:09:44.589428-08:00,0.0,10.728011,10728.011 +7777,2025-03-07T23:09:55.314243-08:00,0.0,10.724815,10724.815 +7778,2025-03-07T23:10:06.041611-08:00,0.0,10.727368,10727.368 +7779,2025-03-07T23:10:16.771216-08:00,0.0,10.729605,10729.605 +7780,2025-03-07T23:10:27.509228-08:00,0.0,10.738012,10738.012 +7781,2025-03-07T23:10:38.228521-08:00,0.0,10.719293,10719.293 +7782,2025-03-07T23:10:48.958296-08:00,0.0,10.729775,10729.775 +7783,2025-03-07T23:10:59.681491-08:00,0.0,10.723195,10723.195 +7784,2025-03-07T23:11:10.416631-08:00,0.0,10.73514,10735.14 +7785,2025-03-07T23:11:21.143241-08:00,0.0,10.72661,10726.61 +7786,2025-03-07T23:11:31.862423-08:00,0.0,10.719182,10719.182 +7787,2025-03-07T23:11:42.597457-08:00,0.0,10.735034,10735.034 +7788,2025-03-07T23:11:53.320331-08:00,0.0,10.722874,10722.874 +7789,2025-03-07T23:12:04.048395-08:00,0.0,10.728064,10728.064 +7790,2025-03-07T23:12:14.766424-08:00,0.0,10.718029,10718.029 +7791,2025-03-07T23:12:25.494386-08:00,0.0,10.727962,10727.962 +7792,2025-03-07T23:12:36.228302-08:00,0.0,10.733916,10733.916 +7793,2025-03-07T23:12:46.952825-08:00,0.0,10.724523,10724.523 +7794,2025-03-07T23:12:57.677218-08:00,0.0,10.724393,10724.393 +7795,2025-03-07T23:13:08.404228-08:00,0.0,10.72701,10727.01 +7796,2025-03-07T23:13:19.133400-08:00,0.0,10.729172,10729.172 +7797,2025-03-07T23:13:29.860219-08:00,0.0,10.726819,10726.819 +7798,2025-03-07T23:13:40.591052-08:00,0.0,10.730833,10730.833 +7799,2025-03-07T23:13:51.317953-08:00,0.0,10.726901,10726.901 +7800,2025-03-07T23:14:02.051220-08:00,0.0,10.733267,10733.267 +7801,2025-03-07T23:14:12.777295-08:00,0.0,10.726075,10726.075 +7802,2025-03-07T23:14:23.510416-08:00,0.0,10.733121,10733.121 +7803,2025-03-07T23:14:34.231422-08:00,0.0,10.721006,10721.006 +7804,2025-03-07T23:14:44.957395-08:00,0.0,10.725973,10725.973 +7805,2025-03-07T23:14:55.694220-08:00,0.0,10.736825,10736.825 +7806,2025-03-07T23:15:06.419213-08:00,0.0,10.724993,10724.993 +7807,2025-03-07T23:15:17.154629-08:00,0.0,10.735416,10735.416 +7808,2025-03-07T23:15:27.875521-08:00,0.0,10.720892,10720.892 +7809,2025-03-07T23:15:38.610408-08:00,0.0,10.734887,10734.887 +7810,2025-03-07T23:15:49.329402-08:00,0.0,10.718994,10718.994 +7811,2025-03-07T23:16:00.061221-08:00,0.0,10.731819,10731.819 +7812,2025-03-07T23:16:10.790221-08:00,0.0,10.729,10729.0 +7813,2025-03-07T23:16:21.520632-08:00,0.0,10.730411,10730.411 +7814,2025-03-07T23:16:32.250220-08:00,0.0,10.729588,10729.588 +7815,2025-03-07T23:16:42.982433-08:00,0.0,10.732213,10732.213 +7816,2025-03-07T23:16:53.710994-08:00,0.0,10.728561,10728.561 +7817,2025-03-07T23:17:04.438221-08:00,0.0,10.727227,10727.227 +7818,2025-03-07T23:17:15.161107-08:00,0.0,10.722886,10722.886 +7819,2025-03-07T23:17:25.894222-08:00,0.0,10.733115,10733.115 +7820,2025-03-07T23:17:36.624409-08:00,0.0,10.730187,10730.187 +7821,2025-03-07T23:17:47.344476-08:00,0.0,10.720067,10720.067 +7822,2025-03-07T23:17:58.074451-08:00,0.0,10.729975,10729.975 +7823,2025-03-07T23:18:08.806457-08:00,0.0,10.732006,10732.006 +7824,2025-03-07T23:18:19.537239-08:00,0.0,10.730782,10730.782 +7825,2025-03-07T23:18:30.265326-08:00,0.0,10.728087,10728.087 +7826,2025-03-07T23:18:40.991597-08:00,0.0,10.726271,10726.271 +7827,2025-03-07T23:18:51.713214-08:00,0.0,10.721617,10721.617 +7828,2025-03-07T23:19:02.443221-08:00,0.0,10.730007,10730.007 +7829,2025-03-07T23:19:13.166221-08:00,0.0,10.723,10723.0 +7830,2025-03-07T23:19:23.895357-08:00,0.0,10.729136,10729.136 +7831,2025-03-07T23:19:34.615218-08:00,0.0,10.719861,10719.861 +7832,2025-03-07T23:19:45.342269-08:00,0.0,10.727051,10727.051 +7833,2025-03-07T23:19:56.077222-08:00,0.0,10.734953,10734.953 +7834,2025-03-07T23:20:06.795296-08:00,0.0,10.718074,10718.074 +7835,2025-03-07T23:20:17.523629-08:00,0.0,10.728333,10728.333 +7836,2025-03-07T23:20:28.251218-08:00,0.0,10.727589,10727.589 +7837,2025-03-07T23:20:38.978221-08:00,0.0,10.727003,10727.003 +7838,2025-03-07T23:20:49.697274-08:00,0.0,10.719053,10719.053 +7839,2025-03-07T23:21:00.430218-08:00,0.0,10.732944,10732.944 +7840,2025-03-07T23:21:11.154144-08:00,0.0,10.723926,10723.926 +7841,2025-03-07T23:21:21.877423-08:00,0.0,10.723279,10723.279 +7842,2025-03-07T23:21:32.600281-08:00,0.0,10.722858,10722.858 +7843,2025-03-07T23:21:43.332243-08:00,0.0,10.731962,10731.962 +7844,2025-03-07T23:21:54.058441-08:00,0.0,10.726198,10726.198 +7845,2025-03-07T23:22:04.783415-08:00,0.0,10.724974,10724.974 +7846,2025-03-07T23:22:15.511222-08:00,0.0,10.727807,10727.807 +7847,2025-03-07T23:22:26.249215-08:00,0.0,10.737993,10737.993 +7848,2025-03-07T23:22:36.973400-08:00,0.0,10.724185,10724.185 +7849,2025-03-07T23:22:47.697791-08:00,0.0,10.724391,10724.391 +7850,2025-03-07T23:22:58.425478-08:00,0.0,10.727687,10727.687 +7851,2025-03-07T23:23:09.154290-08:00,0.0,10.728812,10728.812 +7852,2025-03-07T23:23:19.887405-08:00,0.0,10.733115,10733.115 +7853,2025-03-07T23:23:30.620221-08:00,0.0,10.732816,10732.816 +7854,2025-03-07T23:23:41.345397-08:00,0.0,10.725176,10725.176 +7855,2025-03-07T23:23:52.071310-08:00,0.0,10.725913,10725.913 +7856,2025-03-07T23:24:02.806477-08:00,0.0,10.735167,10735.167 +7857,2025-03-07T23:24:13.531599-08:00,0.0,10.725122,10725.122 +7858,2025-03-07T23:24:24.263218-08:00,0.0,10.731619,10731.619 +7859,2025-03-07T23:24:34.994430-08:00,0.0,10.731212,10731.212 +7860,2025-03-07T23:24:45.728341-08:00,0.0,10.733911,10733.911 +7861,2025-03-07T23:24:56.456261-08:00,0.0,10.72792,10727.92 +7862,2025-03-07T23:25:07.193674-08:00,0.0,10.737413,10737.413 +7863,2025-03-07T23:25:17.919219-08:00,0.0,10.725545,10725.545 +7864,2025-03-07T23:25:28.646371-08:00,0.0,10.727152,10727.152 +7865,2025-03-07T23:25:39.375670-08:00,0.0,10.729299,10729.299 +7866,2025-03-07T23:25:50.111246-08:00,0.0,10.735576,10735.576 +7867,2025-03-07T23:26:00.849478-08:00,0.0,10.738232,10738.232 +7868,2025-03-07T23:26:11.579406-08:00,0.0,10.729928,10729.928 +7869,2025-03-07T23:26:22.308702-08:00,0.0,10.729296,10729.296 +7870,2025-03-07T23:26:33.042222-08:00,0.0,10.73352,10733.52 +7871,2025-03-07T23:26:43.765004-08:00,0.0,10.722782,10722.782 +7872,2025-03-07T23:26:54.497685-08:00,0.0,10.732681,10732.681 +7873,2025-03-07T23:27:05.228224-08:00,0.0,10.730539,10730.539 +7874,2025-03-07T23:27:15.955419-08:00,0.0,10.727195,10727.195 +7875,2025-03-07T23:27:26.690722-08:00,0.0,10.735303,10735.303 +7876,2025-03-07T23:27:37.420366-08:00,0.0,10.729644,10729.644 +7877,2025-03-07T23:27:48.154436-08:00,0.0,10.73407,10734.07 +7878,2025-03-07T23:27:58.887451-08:00,0.0,10.733015,10733.015 +7879,2025-03-07T23:28:09.616296-08:00,0.0,10.728845,10728.845 +7880,2025-03-07T23:28:20.344462-08:00,0.0,10.728166,10728.166 +7881,2025-03-07T23:28:31.072685-08:00,0.0,10.728223,10728.223 +7882,2025-03-07T23:28:41.801421-08:00,0.0,10.728736,10728.736 +7883,2025-03-07T23:28:52.527387-08:00,0.0,10.725966,10725.966 +7884,2025-03-07T23:29:03.264895-08:00,0.0,10.737508,10737.508 +7885,2025-03-07T23:29:13.992435-08:00,0.0,10.72754,10727.54 +7886,2025-03-07T23:29:24.716405-08:00,0.0,10.72397,10723.97 +7887,2025-03-07T23:29:35.455873-08:00,0.0,10.739468,10739.468 +7888,2025-03-07T23:29:46.176587-08:00,0.0,10.720714,10720.714 +7889,2025-03-07T23:29:56.911396-08:00,0.0,10.734809,10734.809 +7890,2025-03-07T23:30:07.641366-08:00,0.0,10.72997,10729.97 +7891,2025-03-07T23:30:18.375296-08:00,0.0,10.73393,10733.93 +7892,2025-03-07T23:30:29.104485-08:00,0.0,10.729189,10729.189 +7893,2025-03-07T23:30:39.835509-08:00,0.0,10.731024,10731.024 +7894,2025-03-07T23:30:50.566219-08:00,0.0,10.73071,10730.71 +7895,2025-03-07T23:31:01.301222-08:00,0.0,10.735003,10735.003 +7896,2025-03-07T23:31:12.026445-08:00,0.0,10.725223,10725.223 +7897,2025-03-07T23:31:22.755220-08:00,0.0,10.728775,10728.775 +7898,2025-03-07T23:31:33.483041-08:00,0.0,10.727821,10727.821 +7899,2025-03-07T23:31:44.212432-08:00,0.0,10.729391,10729.391 +7900,2025-03-07T23:31:54.940219-08:00,0.0,10.727787,10727.787 +7901,2025-03-07T23:32:05.670391-08:00,0.0,10.730172,10730.172 +7902,2025-03-07T23:32:16.405775-08:00,0.0,10.735384,10735.384 +7903,2025-03-07T23:32:27.135412-08:00,0.0,10.729637,10729.637 +7904,2025-03-07T23:32:37.857784-08:00,0.0,10.722372,10722.372 +7905,2025-03-07T23:32:48.590219-08:00,0.0,10.732435,10732.435 +7906,2025-03-07T23:32:59.327221-08:00,0.0,10.737002,10737.002 +7907,2025-03-07T23:33:10.059437-08:00,0.0,10.732216,10732.216 +7908,2025-03-07T23:33:20.790324-08:00,0.0,10.730887,10730.887 +7909,2025-03-07T23:33:31.521226-08:00,0.0,10.730902,10730.902 +7910,2025-03-07T23:33:42.255221-08:00,0.0,10.733995,10733.995 +7911,2025-03-07T23:33:52.990402-08:00,0.0,10.735181,10735.181 +7912,2025-03-07T23:34:03.731376-08:00,0.0,10.740974,10740.974 +7913,2025-03-07T23:34:14.469233-08:00,0.0,10.737857,10737.857 +7914,2025-03-07T23:34:25.200421-08:00,0.0,10.731188,10731.188 +7915,2025-03-07T23:34:35.942218-08:00,0.0,10.741797,10741.797 +7916,2025-03-07T23:34:46.680633-08:00,0.0,10.738415,10738.415 +7917,2025-03-07T23:34:57.406292-08:00,0.0,10.725659,10725.659 +7918,2025-03-07T23:35:08.144410-08:00,0.0,10.738118,10738.118 +7919,2025-03-07T23:35:18.883543-08:00,0.0,10.739133,10739.133 +7920,2025-03-07T23:35:29.616415-08:00,0.0,10.732872,10732.872 +7921,2025-03-07T23:35:40.346426-08:00,0.0,10.730011,10730.011 +7922,2025-03-07T23:35:51.083219-08:00,0.0,10.736793,10736.793 +7923,2025-03-07T23:36:01.816239-08:00,0.0,10.73302,10733.02 +7924,2025-03-07T23:36:12.557396-08:00,0.0,10.741157,10741.157 +7925,2025-03-07T23:36:23.285283-08:00,0.0,10.727887,10727.887 +7926,2025-03-07T23:36:34.030220-08:00,0.0,10.744937,10744.937 +7927,2025-03-07T23:36:44.762267-08:00,0.0,10.732047,10732.047 +7928,2025-03-07T23:36:55.502522-08:00,0.0,10.740255,10740.255 +7929,2025-03-07T23:37:06.231295-08:00,0.0,10.728773,10728.773 +7930,2025-03-07T23:37:16.970451-08:00,0.0,10.739156,10739.156 +7931,2025-03-07T23:37:27.696417-08:00,0.0,10.725966,10725.966 +7932,2025-03-07T23:37:38.435412-08:00,0.0,10.738995,10738.995 +7933,2025-03-07T23:37:49.177116-08:00,0.0,10.741704,10741.704 +7934,2025-03-07T23:37:59.908221-08:00,0.0,10.731105,10731.105 +7935,2025-03-07T23:38:10.646427-08:00,0.0,10.738206,10738.206 +7936,2025-03-07T23:38:21.373440-08:00,0.0,10.727013,10727.013 +7937,2025-03-07T23:38:32.109441-08:00,0.0,10.736001,10736.001 +7938,2025-03-07T23:38:42.847410-08:00,0.0,10.737969,10737.969 +7939,2025-03-07T23:38:53.579377-08:00,0.0,10.731967,10731.967 +7940,2025-03-07T23:39:04.306870-08:00,0.0,10.727493,10727.493 +7941,2025-03-07T23:39:15.043220-08:00,0.0,10.73635,10736.35 +7942,2025-03-07T23:39:25.777405-08:00,0.0,10.734185,10734.185 +7943,2025-03-07T23:39:36.508396-08:00,0.0,10.730991,10730.991 +7944,2025-03-07T23:39:47.246779-08:00,0.0,10.738383,10738.383 +7945,2025-03-07T23:39:57.970251-08:00,0.0,10.723472,10723.472 +7946,2025-03-07T23:40:08.713223-08:00,0.0,10.742972,10742.972 +7947,2025-03-07T23:40:19.437893-08:00,0.0,10.72467,10724.67 +7948,2025-03-07T23:40:30.176401-08:00,0.0,10.738508,10738.508 +7949,2025-03-07T23:40:40.904142-08:00,0.0,10.727741,10727.741 +7950,2025-03-07T23:40:51.637394-08:00,0.0,10.733252,10733.252 +7951,2025-03-07T23:41:02.371243-08:00,0.0,10.733849,10733.849 +7952,2025-03-07T23:41:13.102257-08:00,0.0,10.731014,10731.014 +7953,2025-03-07T23:41:23.823410-08:00,0.0,10.721153,10721.153 +7954,2025-03-07T23:41:34.552433-08:00,0.0,10.729023,10729.023 +7955,2025-03-07T23:41:45.288311-08:00,0.0,10.735878,10735.878 +7956,2025-03-07T23:41:56.015518-08:00,0.0,10.727207,10727.207 +7957,2025-03-07T23:42:06.760748-08:00,0.0,10.74523,10745.23 +7958,2025-03-07T23:42:17.485223-08:00,0.0,10.724475,10724.475 +7959,2025-03-07T23:42:28.218467-08:00,0.0,10.733244,10733.244 +7960,2025-03-07T23:42:38.959411-08:00,0.0,10.740944,10740.944 +7961,2025-03-07T23:42:49.693244-08:00,0.0,10.733833,10733.833 +7962,2025-03-07T23:43:00.421480-08:00,0.0,10.728236,10728.236 +7963,2025-03-07T23:43:11.161254-08:00,0.0,10.739774,10739.774 +7964,2025-03-07T23:43:21.888919-08:00,0.0,10.727665,10727.665 +7965,2025-03-07T23:43:32.629220-08:00,0.0,10.740301,10740.301 +7966,2025-03-07T23:43:43.358814-08:00,0.0,10.729594,10729.594 +7967,2025-03-07T23:43:54.087401-08:00,0.0,10.728587,10728.587 +7968,2025-03-07T23:44:04.829108-08:00,0.0,10.741707,10741.707 +7969,2025-03-07T23:44:15.559442-08:00,0.0,10.730334,10730.334 +7970,2025-03-07T23:44:26.296655-08:00,0.0,10.737213,10737.213 +7971,2025-03-07T23:44:37.021702-08:00,0.0,10.725047,10725.047 +7972,2025-03-07T23:44:47.765788-08:00,0.0,10.744086,10744.086 +7973,2025-03-07T23:44:58.491287-08:00,0.0,10.725499,10725.499 +7974,2025-03-07T23:45:09.224268-08:00,0.0,10.732981,10732.981 +7975,2025-03-07T23:45:19.964336-08:00,0.0,10.740068,10740.068 +7976,2025-03-07T23:45:30.692266-08:00,0.0,10.72793,10727.93 +7977,2025-03-07T23:45:41.424599-08:00,0.0,10.732333,10732.333 +7978,2025-03-07T23:45:52.164657-08:00,0.0,10.740058,10740.058 +7979,2025-03-07T23:46:02.891281-08:00,0.0,10.726624,10726.624 +7980,2025-03-07T23:46:13.627418-08:00,0.0,10.736137,10736.137 +7981,2025-03-07T23:46:24.356281-08:00,0.0,10.728863,10728.863 +7982,2025-03-07T23:46:35.094405-08:00,0.0,10.738124,10738.124 +7983,2025-03-07T23:46:45.826443-08:00,0.0,10.732038,10732.038 +7984,2025-03-07T23:46:56.553506-08:00,0.0,10.727063,10727.063 +7985,2025-03-07T23:47:07.288394-08:00,0.0,10.734888,10734.888 +7986,2025-03-07T23:47:18.017215-08:00,0.0,10.728821,10728.821 +7987,2025-03-07T23:47:28.748221-08:00,0.0,10.731006,10731.006 +7988,2025-03-07T23:47:39.483433-08:00,0.0,10.735212,10735.212 +7989,2025-03-07T23:47:50.212363-08:00,0.0,10.72893,10728.93 +7990,2025-03-07T23:48:00.947220-08:00,0.0,10.734857,10734.857 +7991,2025-03-07T23:48:11.684754-08:00,0.0,10.737534,10737.534 +7992,2025-03-07T23:48:22.412395-08:00,0.0,10.727641,10727.641 +7993,2025-03-07T23:48:33.147598-08:00,0.0,10.735203,10735.203 +7994,2025-03-07T23:48:43.882219-08:00,0.0,10.734621,10734.621 +7995,2025-03-07T23:48:54.609409-08:00,0.0,10.72719,10727.19 +7996,2025-03-07T23:49:05.348868-08:00,0.0,10.739459,10739.459 +7997,2025-03-07T23:49:16.069508-08:00,0.0,10.72064,10720.64 +7998,2025-03-07T23:49:26.808633-08:00,0.0,10.739125,10739.125 +7999,2025-03-07T23:49:37.537380-08:00,0.0,10.728747,10728.747 +8000,2025-03-07T23:49:48.269221-08:00,0.0,10.731841,10731.841 +8001,2025-03-07T23:49:58.997440-08:00,0.0,10.728219,10728.219 +8002,2025-03-07T23:50:09.738408-08:00,0.0,10.740968,10740.968 +8003,2025-03-07T23:50:20.462926-08:00,0.0,10.724518,10724.518 +8004,2025-03-07T23:50:31.193951-08:00,0.0,10.731025,10731.025 +8005,2025-03-07T23:50:41.926399-08:00,0.0,10.732448,10732.448 +8006,2025-03-07T23:50:52.662871-08:00,0.0,10.736472,10736.472 +8007,2025-03-07T23:51:03.396216-08:00,0.0,10.733345,10733.345 +8008,2025-03-07T23:51:14.120403-08:00,0.0,10.724187,10724.187 +8009,2025-03-07T23:51:24.848290-08:00,0.0,10.727887,10727.887 +8010,2025-03-07T23:51:35.582441-08:00,0.0,10.734151,10734.151 +8011,2025-03-07T23:51:46.318250-08:00,0.0,10.735809,10735.809 +8012,2025-03-07T23:51:57.046300-08:00,0.0,10.72805,10728.05 +8013,2025-03-07T23:52:07.771221-08:00,0.0,10.724921,10724.921 +8014,2025-03-07T23:52:18.501450-08:00,0.0,10.730229,10730.229 +8015,2025-03-07T23:52:29.206154-08:00,0.0,10.704704,10704.704 +8016,2025-03-07T23:52:39.942370-08:00,0.0,10.736216,10736.216 +8017,2025-03-07T23:52:50.669342-08:00,0.0,10.726972,10726.972 +8018,2025-03-07T23:53:01.401183-08:00,0.0,10.731841,10731.841 +8019,2025-03-07T23:53:12.133154-08:00,0.0,10.731971,10731.971 +8020,2025-03-07T23:53:22.860344-08:00,0.0,10.72719,10727.19 +8021,2025-03-07T23:53:33.590239-08:00,0.0,10.729895,10729.895 +8022,2025-03-07T23:53:44.322395-08:00,0.0,10.732156,10732.156 +8023,2025-03-07T23:53:55.047972-08:00,0.0,10.725577,10725.577 +8024,2025-03-07T23:54:05.773151-08:00,0.0,10.725179,10725.179 +8025,2025-03-07T23:54:16.500193-08:00,0.0,10.727042,10727.042 +8026,2025-03-07T23:54:27.230329-08:00,0.0,10.730136,10730.136 +8027,2025-03-07T23:54:37.953346-08:00,0.0,10.723017,10723.017 +8028,2025-03-07T23:54:48.689336-08:00,0.0,10.73599,10735.99 +8029,2025-03-07T23:54:59.418183-08:00,0.0,10.728847,10728.847 +8030,2025-03-07T23:55:10.149577-08:00,0.0,10.731394,10731.394 +8031,2025-03-07T23:55:20.876346-08:00,0.0,10.726769,10726.769 +8032,2025-03-07T23:55:31.605151-08:00,0.0,10.728805,10728.805 +8033,2025-03-07T23:55:42.334641-08:00,0.0,10.72949,10729.49 +8034,2025-03-07T23:55:53.062790-08:00,0.0,10.728149,10728.149 +8035,2025-03-07T23:56:03.787298-08:00,0.0,10.724508,10724.508 +8036,2025-03-07T23:56:14.517884-08:00,0.0,10.730586,10730.586 +8037,2025-03-07T23:56:25.239155-08:00,0.0,10.721271,10721.271 +8038,2025-03-07T23:56:35.980292-08:00,0.0,10.741137,10741.137 +8039,2025-03-07T23:56:46.706332-08:00,0.0,10.72604,10726.04 +8040,2025-03-07T23:56:57.440153-08:00,0.0,10.733821,10733.821 +8041,2025-03-07T23:57:08.167156-08:00,0.0,10.727003,10727.003 +8042,2025-03-07T23:57:18.898331-08:00,0.0,10.731175,10731.175 +8043,2025-03-07T23:57:29.627156-08:00,0.0,10.728825,10728.825 +8044,2025-03-07T23:57:40.361365-08:00,0.0,10.734209,10734.209 +8045,2025-03-07T23:57:51.094328-08:00,0.0,10.732963,10732.963 +8046,2025-03-07T23:58:01.822184-08:00,0.0,10.727856,10727.856 +8047,2025-03-07T23:58:12.553677-08:00,0.0,10.731493,10731.493 +8048,2025-03-07T23:58:23.285172-08:00,0.0,10.731495,10731.495 +8049,2025-03-07T23:58:34.018884-08:00,0.0,10.733712,10733.712 +8050,2025-03-07T23:58:44.750159-08:00,0.0,10.731275,10731.275 +8051,2025-03-07T23:58:55.479158-08:00,0.0,10.728999,10728.999 +8052,2025-03-07T23:59:06.217358-08:00,0.0,10.7382,10738.2 +8053,2025-03-07T23:59:16.945264-08:00,0.0,10.727906,10727.906 +8054,2025-03-07T23:59:27.686367-08:00,0.0,10.741103,10741.103 +8055,2025-03-07T23:59:38.419187-08:00,0.0,10.73282,10732.82 +8056,2025-03-07T23:59:49.144441-08:00,0.0,10.725254,10725.254 +8057,2025-03-07T23:59:59.878151-08:00,0.0,10.73371,10733.71 +8058,2025-03-08T00:00:10.612359-08:00,0.0,10.734208,10734.208 +8059,2025-03-08T00:00:21.333221-08:00,0.0,10.720862,10720.862 +8060,2025-03-08T00:00:32.064229-08:00,0.0,10.731008,10731.008 +8061,2025-03-08T00:00:42.793410-08:00,0.0,10.729181,10729.181 +8062,2025-03-08T00:00:53.533717-08:00,0.0,10.740307,10740.307 +8063,2025-03-08T00:01:04.260737-08:00,0.0,10.72702,10727.02 +8064,2025-03-08T00:01:14.989998-08:00,0.0,10.729261,10729.261 +8065,2025-03-08T00:01:25.718385-08:00,0.0,10.728387,10728.387 +8066,2025-03-08T00:01:36.448156-08:00,0.0,10.729771,10729.771 +8067,2025-03-08T00:01:47.173348-08:00,0.0,10.725192,10725.192 +8068,2025-03-08T00:01:57.906469-08:00,0.0,10.733121,10733.121 +8069,2025-03-08T00:02:08.638156-08:00,0.0,10.731687,10731.687 +8070,2025-03-08T00:02:19.361782-08:00,0.0,10.723626,10723.626 +8071,2025-03-08T00:02:30.091191-08:00,0.0,10.729409,10729.409 +8072,2025-03-08T00:02:40.820156-08:00,0.0,10.728965,10728.965 +8073,2025-03-08T00:02:51.556255-08:00,0.0,10.736099,10736.099 +8074,2025-03-08T00:03:02.290503-08:00,0.0,10.734248,10734.248 +8075,2025-03-08T00:03:13.026160-08:00,0.0,10.735657,10735.657 +8076,2025-03-08T00:03:23.754396-08:00,0.0,10.728236,10728.236 +8077,2025-03-08T00:03:34.498327-08:00,0.0,10.743931,10743.931 +8078,2025-03-08T00:03:45.229360-08:00,0.0,10.731033,10731.033 +8079,2025-03-08T00:03:55.968208-08:00,0.0,10.738848,10738.848 +8080,2025-03-08T00:04:06.697155-08:00,0.0,10.728947,10728.947 +8081,2025-03-08T00:04:17.426415-08:00,0.0,10.72926,10729.26 +8082,2025-03-08T00:04:28.166624-08:00,0.0,10.740209,10740.209 +8083,2025-03-08T00:04:38.897078-08:00,0.0,10.730454,10730.454 +8084,2025-03-08T00:04:49.630328-08:00,0.0,10.73325,10733.25 +8085,2025-03-08T00:05:00.364236-08:00,0.0,10.733908,10733.908 +8086,2025-03-08T00:05:11.094196-08:00,0.0,10.72996,10729.96 +8087,2025-03-08T00:05:21.823238-08:00,0.0,10.729042,10729.042 +8088,2025-03-08T00:05:32.562545-08:00,0.0,10.739307,10739.307 +8089,2025-03-08T00:05:43.296156-08:00,0.0,10.733611,10733.611 +8090,2025-03-08T00:05:54.029161-08:00,0.0,10.733005,10733.005 +8091,2025-03-08T00:06:04.768343-08:00,0.0,10.739182,10739.182 +8092,2025-03-08T00:06:15.495150-08:00,0.0,10.726807,10726.807 +8093,2025-03-08T00:06:26.230152-08:00,0.0,10.735002,10735.002 +8094,2025-03-08T00:06:36.967163-08:00,0.0,10.737011,10737.011 +8095,2025-03-08T00:06:47.705190-08:00,0.0,10.738027,10738.027 +8096,2025-03-08T00:06:58.442325-08:00,0.0,10.737135,10737.135 +8097,2025-03-08T00:07:09.182459-08:00,0.0,10.740134,10740.134 +8098,2025-03-08T00:07:19.912393-08:00,0.0,10.729934,10729.934 +8099,2025-03-08T00:07:30.652470-08:00,0.0,10.740077,10740.077 +8100,2025-03-08T00:07:41.385324-08:00,0.0,10.732854,10732.854 +8101,2025-03-08T00:07:52.124544-08:00,0.0,10.73922,10739.22 +8102,2025-03-08T00:08:02.857155-08:00,0.0,10.732611,10732.611 +8103,2025-03-08T00:08:13.601461-08:00,0.0,10.744306,10744.306 +8104,2025-03-08T00:08:24.336324-08:00,0.0,10.734863,10734.863 +8105,2025-03-08T00:08:35.081373-08:00,0.0,10.745049,10745.049 +8106,2025-03-08T00:08:45.820329-08:00,0.0,10.738956,10738.956 +8107,2025-03-08T00:08:56.555609-08:00,0.0,10.73528,10735.28 +8108,2025-03-08T00:09:07.291351-08:00,0.0,10.735742,10735.742 +8109,2025-03-08T00:09:18.018336-08:00,0.0,10.726985,10726.985 +8110,2025-03-08T00:09:28.760181-08:00,0.0,10.741845,10741.845 +8111,2025-03-08T00:09:39.498025-08:00,0.0,10.737844,10737.844 +8112,2025-03-08T00:09:50.234153-08:00,0.0,10.736128,10736.128 +8113,2025-03-08T00:10:00.967155-08:00,0.0,10.733002,10733.002 +8114,2025-03-08T00:10:11.703401-08:00,0.0,10.736246,10736.246 +8115,2025-03-08T00:10:22.441319-08:00,0.0,10.737918,10737.918 +8116,2025-03-08T00:10:33.178790-08:00,0.0,10.737471,10737.471 +8117,2025-03-08T00:10:43.905156-08:00,0.0,10.726366,10726.366 +8118,2025-03-08T00:10:54.644165-08:00,0.0,10.739009,10739.009 +8119,2025-03-08T00:11:05.374282-08:00,0.0,10.730117,10730.117 +8120,2025-03-08T00:11:16.109159-08:00,0.0,10.734877,10734.877 +8121,2025-03-08T00:11:26.842509-08:00,0.0,10.73335,10733.35 +8122,2025-03-08T00:11:37.571407-08:00,0.0,10.728898,10728.898 +8123,2025-03-08T00:11:48.307178-08:00,0.0,10.735771,10735.771 +8124,2025-03-08T00:11:59.039158-08:00,0.0,10.73198,10731.98 +8125,2025-03-08T00:12:09.767292-08:00,0.0,10.728134,10728.134 +8126,2025-03-08T00:12:20.506347-08:00,0.0,10.739055,10739.055 +8127,2025-03-08T00:12:31.240571-08:00,0.0,10.734224,10734.224 +8128,2025-03-08T00:12:41.965160-08:00,0.0,10.724589,10724.589 +8129,2025-03-08T00:12:52.704329-08:00,0.0,10.739169,10739.169 +8130,2025-03-08T00:13:03.426332-08:00,0.0,10.722003,10722.003 +8131,2025-03-08T00:13:14.163161-08:00,0.0,10.736829,10736.829 +8132,2025-03-08T00:13:24.899535-08:00,0.0,10.736374,10736.374 +8133,2025-03-08T00:13:35.628493-08:00,0.0,10.728958,10728.958 +8134,2025-03-08T00:13:46.362155-08:00,0.0,10.733662,10733.662 +8135,2025-03-08T00:13:57.092215-08:00,0.0,10.73006,10730.06 +8136,2025-03-08T00:14:07.822403-08:00,0.0,10.730188,10730.188 +8137,2025-03-08T00:14:18.553156-08:00,0.0,10.730753,10730.753 +8138,2025-03-08T00:14:29.286362-08:00,0.0,10.733206,10733.206 +8139,2025-03-08T00:14:40.016041-08:00,0.0,10.729679,10729.679 +8140,2025-03-08T00:14:50.748155-08:00,0.0,10.732114,10732.114 +8141,2025-03-08T00:15:01.477152-08:00,0.0,10.728997,10728.997 +8142,2025-03-08T00:15:12.203274-08:00,0.0,10.726122,10726.122 +8143,2025-03-08T00:15:22.933157-08:00,0.0,10.729883,10729.883 +8144,2025-03-08T00:15:33.663808-08:00,0.0,10.730651,10730.651 +8145,2025-03-08T00:15:44.394178-08:00,0.0,10.73037,10730.37 +8146,2025-03-08T00:15:55.124156-08:00,0.0,10.729978,10729.978 +8147,2025-03-08T00:16:05.851593-08:00,0.0,10.727437,10727.437 +8148,2025-03-08T00:16:16.577371-08:00,0.0,10.725778,10725.778 +8149,2025-03-08T00:16:27.308342-08:00,0.0,10.730971,10730.971 +8150,2025-03-08T00:16:38.045936-08:00,0.0,10.737594,10737.594 +8151,2025-03-08T00:16:48.766357-08:00,0.0,10.720421,10720.421 +8152,2025-03-08T00:16:59.498237-08:00,0.0,10.73188,10731.88 +8153,2025-03-08T00:17:10.222245-08:00,0.0,10.724008,10724.008 +8154,2025-03-08T00:17:20.947443-08:00,0.0,10.725198,10725.198 +8155,2025-03-08T00:17:31.675337-08:00,0.0,10.727894,10727.894 +8156,2025-03-08T00:17:42.403156-08:00,0.0,10.727819,10727.819 +8157,2025-03-08T00:17:53.137372-08:00,0.0,10.734216,10734.216 +8158,2025-03-08T00:18:03.858246-08:00,0.0,10.720874,10720.874 +8159,2025-03-08T00:18:14.593192-08:00,0.0,10.734946,10734.946 +8160,2025-03-08T00:18:25.319559-08:00,0.0,10.726367,10726.367 +8161,2025-03-08T00:18:36.053774-08:00,0.0,10.734215,10734.215 +8162,2025-03-08T00:18:46.783185-08:00,0.0,10.729411,10729.411 +8163,2025-03-08T00:18:57.512149-08:00,0.0,10.728964,10728.964 +8164,2025-03-08T00:19:08.245333-08:00,0.0,10.733184,10733.184 +8165,2025-03-08T00:19:18.969162-08:00,0.0,10.723829,10723.829 +8166,2025-03-08T00:19:29.706155-08:00,0.0,10.736993,10736.993 +8167,2025-03-08T00:19:40.426158-08:00,0.0,10.720003,10720.003 +8168,2025-03-08T00:19:51.160162-08:00,0.0,10.734004,10734.004 +8169,2025-03-08T00:20:01.894157-08:00,0.0,10.733995,10733.995 +8170,2025-03-08T00:20:12.625961-08:00,0.0,10.731804,10731.804 +8171,2025-03-08T00:20:23.356375-08:00,0.0,10.730414,10730.414 +8172,2025-03-08T00:20:34.089413-08:00,0.0,10.733038,10733.038 +8173,2025-03-08T00:20:44.819627-08:00,0.0,10.730214,10730.214 +8174,2025-03-08T00:20:55.555159-08:00,0.0,10.735532,10735.532 +8175,2025-03-08T00:21:06.292158-08:00,0.0,10.736999,10736.999 +8176,2025-03-08T00:21:17.022371-08:00,0.0,10.730213,10730.213 +8177,2025-03-08T00:21:27.752179-08:00,0.0,10.729808,10729.808 +8178,2025-03-08T00:21:38.486189-08:00,0.0,10.73401,10734.01 +8179,2025-03-08T00:21:49.220344-08:00,0.0,10.734155,10734.155 +8180,2025-03-08T00:21:59.959174-08:00,0.0,10.73883,10738.83 +8181,2025-03-08T00:22:10.697049-08:00,0.0,10.737875,10737.875 +8182,2025-03-08T00:22:21.434154-08:00,0.0,10.737105,10737.105 +8183,2025-03-08T00:22:32.167154-08:00,0.0,10.733,10733.0 +8184,2025-03-08T00:22:42.900159-08:00,0.0,10.733005,10733.005 +8185,2025-03-08T00:22:53.636350-08:00,0.0,10.736191,10736.191 +8186,2025-03-08T00:23:04.363235-08:00,0.0,10.726885,10726.885 +8187,2025-03-08T00:23:15.099441-08:00,0.0,10.736206,10736.206 +8188,2025-03-08T00:23:25.838334-08:00,0.0,10.738893,10738.893 +8189,2025-03-08T00:23:36.566155-08:00,0.0,10.727821,10727.821 +8190,2025-03-08T00:23:47.299353-08:00,0.0,10.733198,10733.198 +8191,2025-03-08T00:23:58.026324-08:00,0.0,10.726971,10726.971 +8192,2025-03-08T00:24:08.760765-08:00,0.0,10.734441,10734.441 +8193,2025-03-08T00:24:19.492221-08:00,0.0,10.731456,10731.456 +8194,2025-03-08T00:24:30.226406-08:00,0.0,10.734185,10734.185 +8195,2025-03-08T00:24:40.950157-08:00,0.0,10.723751,10723.751 +8196,2025-03-08T00:24:51.687154-08:00,0.0,10.736997,10736.997 +8197,2025-03-08T00:25:02.418157-08:00,0.0,10.731003,10731.003 +8198,2025-03-08T00:25:13.144389-08:00,0.0,10.726232,10726.232 +8199,2025-03-08T00:25:23.872187-08:00,0.0,10.727798,10727.798 +8200,2025-03-08T00:25:34.602381-08:00,0.0,10.730194,10730.194 +8201,2025-03-08T00:25:45.329352-08:00,0.0,10.726971,10726.971 +8202,2025-03-08T00:25:56.066160-08:00,0.0,10.736808,10736.808 +8203,2025-03-08T00:26:06.786342-08:00,0.0,10.720182,10720.182 +8204,2025-03-08T00:26:17.516153-08:00,0.0,10.729811,10729.811 +8205,2025-03-08T00:26:28.243353-08:00,0.0,10.7272,10727.2 +8206,2025-03-08T00:26:38.976359-08:00,0.0,10.733006,10733.006 +8207,2025-03-08T00:26:49.704150-08:00,0.0,10.727791,10727.791 +8208,2025-03-08T00:27:00.432167-08:00,0.0,10.728017,10728.017 +8209,2025-03-08T00:27:11.168564-08:00,0.0,10.736397,10736.397 +8210,2025-03-08T00:27:21.896302-08:00,0.0,10.727738,10727.738 +8211,2025-03-08T00:27:32.626373-08:00,0.0,10.730071,10730.071 +8212,2025-03-08T00:27:43.355815-08:00,0.0,10.729442,10729.442 +8213,2025-03-08T00:27:54.086227-08:00,0.0,10.730412,10730.412 +8214,2025-03-08T00:28:04.811328-08:00,0.0,10.725101,10725.101 +8215,2025-03-08T00:28:15.541644-08:00,0.0,10.730316,10730.316 +8216,2025-03-08T00:28:26.265419-08:00,0.0,10.723775,10723.775 +8217,2025-03-08T00:28:36.997322-08:00,0.0,10.731903,10731.903 +8218,2025-03-08T00:28:47.725306-08:00,0.0,10.727984,10727.984 +8219,2025-03-08T00:28:58.453258-08:00,0.0,10.727952,10727.952 +8220,2025-03-08T00:29:09.176382-08:00,0.0,10.723124,10723.124 +8221,2025-03-08T00:29:19.897391-08:00,0.0,10.721009,10721.009 +8222,2025-03-08T00:29:30.629532-08:00,0.0,10.732141,10732.141 +8223,2025-03-08T00:29:41.356217-08:00,0.0,10.726685,10726.685 +8224,2025-03-08T00:29:52.071364-08:00,0.0,10.715147,10715.147 +8225,2025-03-08T00:30:02.792747-08:00,0.0,10.721383,10721.383 +8226,2025-03-08T00:30:13.520544-08:00,0.0,10.727797,10727.797 +8227,2025-03-08T00:30:24.247153-08:00,0.0,10.726609,10726.609 +8228,2025-03-08T00:30:34.973155-08:00,0.0,10.726002,10726.002 +8229,2025-03-08T00:30:45.698181-08:00,0.0,10.725026,10725.026 +8230,2025-03-08T00:30:56.427159-08:00,0.0,10.728978,10728.978 +8231,2025-03-08T00:31:07.153264-08:00,0.0,10.726105,10726.105 +8232,2025-03-08T00:31:17.883156-08:00,0.0,10.729892,10729.892 +8233,2025-03-08T00:31:28.599566-08:00,0.0,10.71641,10716.41 +8234,2025-03-08T00:31:39.333184-08:00,0.0,10.733618,10733.618 +8235,2025-03-08T00:31:50.051338-08:00,0.0,10.718154,10718.154 +8236,2025-03-08T00:32:00.785711-08:00,0.0,10.734373,10734.373 +8237,2025-03-08T00:32:11.509150-08:00,0.0,10.723439,10723.439 +8238,2025-03-08T00:32:22.222753-08:00,0.0,10.713603,10713.603 +8239,2025-03-08T00:32:32.952155-08:00,0.0,10.729402,10729.402 +8240,2025-03-08T00:32:43.675536-08:00,0.0,10.723381,10723.381 +8241,2025-03-08T00:32:54.397148-08:00,0.0,10.721612,10721.612 +8242,2025-03-08T00:33:05.119396-08:00,0.0,10.722248,10722.248 +8243,2025-03-08T00:33:15.849202-08:00,0.0,10.729806,10729.806 +8244,2025-03-08T00:33:26.574568-08:00,0.0,10.725366,10725.366 +8245,2025-03-08T00:33:37.303896-08:00,0.0,10.729328,10729.328 +8246,2025-03-08T00:33:48.041158-08:00,0.0,10.737262,10737.262 +8247,2025-03-08T00:33:58.769159-08:00,0.0,10.728001,10728.001 +8248,2025-03-08T00:34:09.496957-08:00,0.0,10.727798,10727.798 +8249,2025-03-08T00:34:20.216157-08:00,0.0,10.7192,10719.2 +8250,2025-03-08T00:34:30.943332-08:00,0.0,10.727175,10727.175 +8251,2025-03-08T00:34:41.673233-08:00,0.0,10.729901,10729.901 +8252,2025-03-08T00:34:52.397228-08:00,0.0,10.723995,10723.995 +8253,2025-03-08T00:35:03.128184-08:00,0.0,10.730956,10730.956 +8254,2025-03-08T00:35:13.854197-08:00,0.0,10.726013,10726.013 +8255,2025-03-08T00:35:24.583321-08:00,0.0,10.729124,10729.124 +8256,2025-03-08T00:35:35.307619-08:00,0.0,10.724298,10724.298 +8257,2025-03-08T00:35:46.042152-08:00,0.0,10.734533,10734.533 +8258,2025-03-08T00:35:56.765827-08:00,0.0,10.723675,10723.675 +8259,2025-03-08T00:36:07.486217-08:00,0.0,10.72039,10720.39 +8260,2025-03-08T00:36:18.210759-08:00,0.0,10.724542,10724.542 +8261,2025-03-08T00:36:28.936361-08:00,0.0,10.725602,10725.602 +8262,2025-03-08T00:36:39.666155-08:00,0.0,10.729794,10729.794 +8263,2025-03-08T00:36:50.390178-08:00,0.0,10.724023,10724.023 +8264,2025-03-08T00:37:01.119702-08:00,0.0,10.729524,10729.524 +8265,2025-03-08T00:37:11.846212-08:00,0.0,10.72651,10726.51 +8266,2025-03-08T00:37:22.578155-08:00,0.0,10.731943,10731.943 +8267,2025-03-08T00:37:33.302226-08:00,0.0,10.724071,10724.071 +8268,2025-03-08T00:37:44.030233-08:00,0.0,10.728007,10728.007 +8269,2025-03-08T00:37:54.756184-08:00,0.0,10.725951,10725.951 +8270,2025-03-08T00:38:05.475153-08:00,0.0,10.718969,10718.969 +8271,2025-03-08T00:38:16.203464-08:00,0.0,10.728311,10728.311 +8272,2025-03-08T00:38:26.933303-08:00,0.0,10.729839,10729.839 +8273,2025-03-08T00:38:37.661211-08:00,0.0,10.727908,10727.908 +8274,2025-03-08T00:38:48.383374-08:00,0.0,10.722163,10722.163 +8275,2025-03-08T00:38:59.111155-08:00,0.0,10.727781,10727.781 +8276,2025-03-08T00:39:09.839156-08:00,0.0,10.728001,10728.001 +8277,2025-03-08T00:39:20.559364-08:00,0.0,10.720208,10720.208 +8278,2025-03-08T00:39:31.291462-08:00,0.0,10.732098,10732.098 +8279,2025-03-08T00:39:42.024157-08:00,0.0,10.732695,10732.695 +8280,2025-03-08T00:39:52.743153-08:00,0.0,10.718996,10718.996 +8281,2025-03-08T00:40:03.468156-08:00,0.0,10.725003,10725.003 +8282,2025-03-08T00:40:14.201352-08:00,0.0,10.733196,10733.196 +8283,2025-03-08T00:40:24.922314-08:00,0.0,10.720962,10720.962 +8284,2025-03-08T00:40:35.649865-08:00,0.0,10.727551,10727.551 +8285,2025-03-08T00:40:46.383032-08:00,0.0,10.733167,10733.167 +8286,2025-03-08T00:40:57.101188-08:00,0.0,10.718156,10718.156 +8287,2025-03-08T00:41:07.833341-08:00,0.0,10.732153,10732.153 +8288,2025-03-08T00:41:18.560409-08:00,0.0,10.727068,10727.068 +8289,2025-03-08T00:41:29.292246-08:00,0.0,10.731837,10731.837 +8290,2025-03-08T00:41:40.015154-08:00,0.0,10.722908,10722.908 +8291,2025-03-08T00:41:50.745181-08:00,0.0,10.730027,10730.027 +8292,2025-03-08T00:42:01.467329-08:00,0.0,10.722148,10722.148 +8293,2025-03-08T00:42:12.188363-08:00,0.0,10.721034,10721.034 +8294,2025-03-08T00:42:22.915997-08:00,0.0,10.727634,10727.634 +8295,2025-03-08T00:42:33.638357-08:00,0.0,10.72236,10722.36 +8296,2025-03-08T00:42:44.367260-08:00,0.0,10.728903,10728.903 +8297,2025-03-08T00:42:55.092297-08:00,0.0,10.725037,10725.037 +8298,2025-03-08T00:43:05.818216-08:00,0.0,10.725919,10725.919 +8299,2025-03-08T00:43:16.541721-08:00,0.0,10.723505,10723.505 +8300,2025-03-08T00:43:27.261154-08:00,0.0,10.719433,10719.433 +8301,2025-03-08T00:43:37.984231-08:00,0.0,10.723077,10723.077 +8302,2025-03-08T00:43:48.703325-08:00,0.0,10.719094,10719.094 +8303,2025-03-08T00:43:59.429794-08:00,0.0,10.726469,10726.469 +8304,2025-03-08T00:44:10.153225-08:00,0.0,10.723431,10723.431 +8305,2025-03-08T00:44:20.873912-08:00,0.0,10.720687,10720.687 +8306,2025-03-08T00:44:31.602189-08:00,0.0,10.728277,10728.277 +8307,2025-03-08T00:44:42.327793-08:00,0.0,10.725604,10725.604 +8308,2025-03-08T00:44:53.044177-08:00,0.0,10.716384,10716.384 +8309,2025-03-08T00:45:03.772171-08:00,0.0,10.727994,10727.994 +8310,2025-03-08T00:45:14.502045-08:00,0.0,10.729874,10729.874 +8311,2025-03-08T00:45:25.221895-08:00,0.0,10.71985,10719.85 +8312,2025-03-08T00:45:35.937156-08:00,0.0,10.715261,10715.261 +8313,2025-03-08T00:45:46.669156-08:00,0.0,10.732,10732.0 +8314,2025-03-08T00:45:57.390181-08:00,0.0,10.721025,10721.025 +8315,2025-03-08T00:46:08.116158-08:00,0.0,10.725977,10725.977 +8316,2025-03-08T00:46:18.837773-08:00,0.0,10.721615,10721.615 +8317,2025-03-08T00:46:29.563601-08:00,0.0,10.725828,10725.828 +8318,2025-03-08T00:46:40.279181-08:00,0.0,10.71558,10715.58 +8319,2025-03-08T00:46:51.008158-08:00,0.0,10.728977,10728.977 +8320,2025-03-08T00:47:01.731271-08:00,0.0,10.723113,10723.113 +8321,2025-03-08T00:47:12.452797-08:00,0.0,10.721526,10721.526 +8322,2025-03-08T00:47:23.177336-08:00,0.0,10.724539,10724.539 +8323,2025-03-08T00:47:33.892007-08:00,0.0,10.714671,10714.671 +8324,2025-03-08T00:47:44.624361-08:00,0.0,10.732354,10732.354 +8325,2025-03-08T00:47:55.344184-08:00,0.0,10.719823,10719.823 +8326,2025-03-08T00:48:06.074148-08:00,0.0,10.729964,10729.964 +8327,2025-03-08T00:48:16.801180-08:00,0.0,10.727032,10727.032 +8328,2025-03-08T00:48:27.522597-08:00,0.0,10.721417,10721.417 +8329,2025-03-08T00:48:38.240396-08:00,0.0,10.717799,10717.799 +8330,2025-03-08T00:48:48.969153-08:00,0.0,10.728757,10728.757 +8331,2025-03-08T00:48:59.688179-08:00,0.0,10.719026,10719.026 +8332,2025-03-08T00:49:10.415153-08:00,0.0,10.726974,10726.974 +8333,2025-03-08T00:49:21.137288-08:00,0.0,10.722135,10722.135 +8334,2025-03-08T00:49:31.861152-08:00,0.0,10.723864,10723.864 +8335,2025-03-08T00:49:42.582353-08:00,0.0,10.721201,10721.201 +8336,2025-03-08T00:49:53.307156-08:00,0.0,10.724803,10724.803 +8337,2025-03-08T00:50:04.030562-08:00,0.0,10.723406,10723.406 +8338,2025-03-08T00:50:14.747155-08:00,0.0,10.716593,10716.593 +8339,2025-03-08T00:50:25.469348-08:00,0.0,10.722193,10722.193 +8340,2025-03-08T00:50:36.196206-08:00,0.0,10.726858,10726.858 +8341,2025-03-08T00:50:46.910919-08:00,0.0,10.714713,10714.713 +8342,2025-03-08T00:50:57.641264-08:00,0.0,10.730345,10730.345 +8343,2025-03-08T00:51:08.358367-08:00,0.0,10.717103,10717.103 +8344,2025-03-08T00:51:19.083156-08:00,0.0,10.724789,10724.789 +8345,2025-03-08T00:51:29.809160-08:00,0.0,10.726004,10726.004 +8346,2025-03-08T00:51:40.534187-08:00,0.0,10.725027,10725.027 +8347,2025-03-08T00:51:51.260152-08:00,0.0,10.725965,10725.965 +8348,2025-03-08T00:52:01.980156-08:00,0.0,10.720004,10720.004 +8349,2025-03-08T00:52:12.701547-08:00,0.0,10.721391,10721.391 +8350,2025-03-08T00:52:23.472665-08:00,0.0,10.771118,10771.118 +8351,2025-03-08T00:52:34.199668-08:00,0.0,10.727003,10727.003 +8352,2025-03-08T00:52:44.924858-08:00,0.0,10.72519,10725.19 +8353,2025-03-08T00:52:55.650880-08:00,0.0,10.726022,10726.022 +8354,2025-03-08T00:53:06.371683-08:00,0.0,10.720803,10720.803 +8355,2025-03-08T00:53:17.094668-08:00,0.0,10.722985,10722.985 +8356,2025-03-08T00:53:27.817871-08:00,0.0,10.723203,10723.203 +8357,2025-03-08T00:53:38.534671-08:00,0.0,10.7168,10716.8 +8358,2025-03-08T00:53:49.263060-08:00,0.0,10.728389,10728.389 +8359,2025-03-08T00:53:59.988690-08:00,0.0,10.72563,10725.63 +8360,2025-03-08T00:54:10.711819-08:00,0.0,10.723129,10723.129 +8361,2025-03-08T00:54:21.430671-08:00,0.0,10.718852,10718.852 +8362,2025-03-08T00:54:32.153864-08:00,0.0,10.723193,10723.193 +8363,2025-03-08T00:54:42.879704-08:00,0.0,10.72584,10725.84 +8364,2025-03-08T00:54:53.596845-08:00,0.0,10.717141,10717.141 +8365,2025-03-08T00:55:04.325668-08:00,0.0,10.728823,10728.823 +8366,2025-03-08T00:55:15.039779-08:00,0.0,10.714111,10714.111 +8367,2025-03-08T00:55:25.763671-08:00,0.0,10.723892,10723.892 +8368,2025-03-08T00:55:36.490795-08:00,0.0,10.727124,10727.124 +8369,2025-03-08T00:55:47.219690-08:00,0.0,10.728895,10728.895 +8370,2025-03-08T00:55:57.940007-08:00,0.0,10.720317,10720.317 +8371,2025-03-08T00:56:08.655837-08:00,0.0,10.71583,10715.83 +8372,2025-03-08T00:56:19.376919-08:00,0.0,10.721082,10721.082 +8373,2025-03-08T00:56:30.099664-08:00,0.0,10.722745,10722.745 +8374,2025-03-08T00:56:40.823863-08:00,0.0,10.724199,10724.199 +8375,2025-03-08T00:56:51.548880-08:00,0.0,10.725017,10725.017 +8376,2025-03-08T00:57:02.269682-08:00,0.0,10.720802,10720.802 +8377,2025-03-08T00:57:12.992694-08:00,0.0,10.723012,10723.012 +8378,2025-03-08T00:57:23.712850-08:00,0.0,10.720156,10720.156 +8379,2025-03-08T00:57:34.438668-08:00,0.0,10.725818,10725.818 +8380,2025-03-08T00:57:45.160701-08:00,0.0,10.722033,10722.033 +8381,2025-03-08T00:57:55.892868-08:00,0.0,10.732167,10732.167 +8382,2025-03-08T00:58:06.608665-08:00,0.0,10.715797,10715.797 +8383,2025-03-08T00:58:17.341122-08:00,0.0,10.732457,10732.457 +8384,2025-03-08T00:58:28.064673-08:00,0.0,10.723551,10723.551 +8385,2025-03-08T00:58:38.790669-08:00,0.0,10.725996,10725.996 +8386,2025-03-08T00:58:49.507668-08:00,0.0,10.716999,10716.999 +8387,2025-03-08T00:59:00.239739-08:00,0.0,10.732071,10732.071 +8388,2025-03-08T00:59:10.962208-08:00,0.0,10.722469,10722.469 +8389,2025-03-08T00:59:21.683664-08:00,0.0,10.721456,10721.456 +8390,2025-03-08T00:59:32.403860-08:00,0.0,10.720196,10720.196 +8391,2025-03-08T00:59:43.126666-08:00,0.0,10.722806,10722.806 +8392,2025-03-08T00:59:53.860049-08:00,0.0,10.733383,10733.383 +8393,2025-03-08T01:00:04.574702-08:00,0.0,10.714653,10714.653 +8394,2025-03-08T01:00:15.293918-08:00,0.0,10.719216,10719.216 +8395,2025-03-08T01:00:26.017732-08:00,0.0,10.723814,10723.814 +8396,2025-03-08T01:00:36.741842-08:00,0.0,10.72411,10724.11 +8397,2025-03-08T01:00:47.469670-08:00,0.0,10.727828,10727.828 +8398,2025-03-08T01:00:58.195666-08:00,0.0,10.725996,10725.996 +8399,2025-03-08T01:01:08.919738-08:00,0.0,10.724072,10724.072 +8400,2025-03-08T01:01:19.642079-08:00,0.0,10.722341,10722.341 +8401,2025-03-08T01:01:30.361665-08:00,0.0,10.719586,10719.586 +8402,2025-03-08T01:01:41.090670-08:00,0.0,10.729005,10729.005 +8403,2025-03-08T01:01:51.810877-08:00,0.0,10.720207,10720.207 +8404,2025-03-08T01:02:02.535876-08:00,0.0,10.724999,10724.999 +8405,2025-03-08T01:02:13.262125-08:00,0.0,10.726249,10726.249 +8406,2025-03-08T01:02:23.974776-08:00,0.0,10.712651,10712.651 +8407,2025-03-08T01:02:34.705342-08:00,0.0,10.730566,10730.566 +8408,2025-03-08T01:02:45.421803-08:00,0.0,10.716461,10716.461 +8409,2025-03-08T01:02:56.144869-08:00,0.0,10.723066,10723.066 +8410,2025-03-08T01:03:06.863673-08:00,0.0,10.718804,10718.804 +8411,2025-03-08T01:03:17.584670-08:00,0.0,10.720997,10720.997 +8412,2025-03-08T01:03:28.311739-08:00,0.0,10.727069,10727.069 +8413,2025-03-08T01:03:39.035407-08:00,0.0,10.723668,10723.668 +8414,2025-03-08T01:03:49.758874-08:00,0.0,10.723467,10723.467 +8415,2025-03-08T01:04:00.478734-08:00,0.0,10.71986,10719.86 +8416,2025-03-08T01:04:11.197695-08:00,0.0,10.718961,10718.961 +8417,2025-03-08T01:04:21.920664-08:00,0.0,10.722969,10722.969 +8418,2025-03-08T01:04:32.646866-08:00,0.0,10.726202,10726.202 +8419,2025-03-08T01:04:43.366549-08:00,0.0,10.719683,10719.683 +8420,2025-03-08T01:04:54.081942-08:00,0.0,10.715393,10715.393 +8421,2025-03-08T01:05:04.809388-08:00,0.0,10.727446,10727.446 +8422,2025-03-08T01:05:15.529671-08:00,0.0,10.720283,10720.283 +8423,2025-03-08T01:05:26.250098-08:00,0.0,10.720427,10720.427 +8424,2025-03-08T01:05:36.965839-08:00,0.0,10.715741,10715.741 +8425,2025-03-08T01:05:47.692670-08:00,0.0,10.726831,10726.831 +8426,2025-03-08T01:05:58.419671-08:00,0.0,10.727001,10727.001 +8427,2025-03-08T01:06:09.141240-08:00,0.0,10.721569,10721.569 +8428,2025-03-08T01:06:19.855094-08:00,0.0,10.713854,10713.854 +8429,2025-03-08T01:06:30.580666-08:00,0.0,10.725572,10725.572 +8430,2025-03-08T01:06:41.313674-08:00,0.0,10.733008,10733.008 +8431,2025-03-08T01:06:52.029373-08:00,0.0,10.715699,10715.699 +8432,2025-03-08T01:07:02.753884-08:00,0.0,10.724511,10724.511 +8433,2025-03-08T01:07:13.481494-08:00,0.0,10.72761,10727.61 +8434,2025-03-08T01:07:24.204669-08:00,0.0,10.723175,10723.175 +8435,2025-03-08T01:07:34.931675-08:00,0.0,10.727006,10727.006 +8436,2025-03-08T01:07:45.653140-08:00,0.0,10.721465,10721.465 +8437,2025-03-08T01:07:56.376878-08:00,0.0,10.723738,10723.738 +8438,2025-03-08T01:07:57.161978-08:00,0.0,0.7851,785.1 +8439,2025-03-08T01:08:07.097669-08:00,0.0,9.935691,9935.691 +8440,2025-03-08T01:08:17.825850-08:00,0.0,10.728181,10728.181 +8441,2025-03-08T01:08:28.549096-08:00,0.0,10.723246,10723.246 +8442,2025-03-08T01:08:39.280665-08:00,0.0,10.731569,10731.569 +8443,2025-03-08T01:08:50.005319-08:00,0.0,10.724654,10724.654 +8444,2025-03-08T01:09:00.735672-08:00,0.0,10.730353,10730.353 +8445,2025-03-08T01:09:11.461450-08:00,0.0,10.725778,10725.778 +8446,2025-03-08T01:09:22.179859-08:00,0.0,10.718409,10718.409 +8447,2025-03-08T01:09:32.910897-08:00,0.0,10.731038,10731.038 +8448,2025-03-08T01:09:43.629836-08:00,0.0,10.718939,10718.939 +8449,2025-03-08T01:09:54.358692-08:00,0.0,10.728856,10728.856 +8450,2025-03-08T01:10:05.084720-08:00,0.0,10.726028,10726.028 +8451,2025-03-08T01:10:15.805671-08:00,0.0,10.720951,10720.951 +8452,2025-03-08T01:10:26.538491-08:00,0.0,10.73282,10732.82 +8453,2025-03-08T01:10:37.265502-08:00,0.0,10.727011,10727.011 +8454,2025-03-08T01:10:47.986671-08:00,0.0,10.721169,10721.169 +8455,2025-03-08T01:10:58.709841-08:00,0.0,10.72317,10723.17 +8456,2025-03-08T01:11:09.443668-08:00,0.0,10.733827,10733.827 +8457,2025-03-08T01:11:20.162520-08:00,0.0,10.718852,10718.852 +8458,2025-03-08T01:11:30.890733-08:00,0.0,10.728213,10728.213 +8459,2025-03-08T01:11:41.619864-08:00,0.0,10.729131,10729.131 +8460,2025-03-08T01:11:52.344853-08:00,0.0,10.724989,10724.989 +8461,2025-03-08T01:12:03.072671-08:00,0.0,10.727818,10727.818 +8462,2025-03-08T01:12:13.795663-08:00,0.0,10.722992,10722.992 +8463,2025-03-08T01:12:24.531668-08:00,0.0,10.736005,10736.005 +8464,2025-03-08T01:12:35.255705-08:00,0.0,10.724037,10724.037 +8465,2025-03-08T01:12:45.985869-08:00,0.0,10.730164,10730.164 +8466,2025-03-08T01:12:56.706666-08:00,0.0,10.720797,10720.797 +8467,2025-03-08T01:13:07.426850-08:00,0.0,10.720184,10720.184 +8468,2025-03-08T01:13:18.156910-08:00,0.0,10.73006,10730.06 +8469,2025-03-08T01:13:28.875850-08:00,0.0,10.71894,10718.94 +8470,2025-03-08T01:13:39.609696-08:00,0.0,10.733846,10733.846 +8471,2025-03-08T01:13:50.333844-08:00,0.0,10.724148,10724.148 +8472,2025-03-08T01:14:01.056821-08:00,0.0,10.722977,10722.977 +8473,2025-03-08T01:14:11.785668-08:00,0.0,10.728847,10728.847 +8474,2025-03-08T01:14:22.517673-08:00,0.0,10.732005,10732.005 +8475,2025-03-08T01:14:33.238893-08:00,0.0,10.72122,10721.22 +8476,2025-03-08T01:14:43.970669-08:00,0.0,10.731776,10731.776 +8477,2025-03-08T01:14:54.700481-08:00,0.0,10.729812,10729.812 +8478,2025-03-08T01:15:05.416715-08:00,0.0,10.716234,10716.234 +8479,2025-03-08T01:15:16.140897-08:00,0.0,10.724182,10724.182 +8480,2025-03-08T01:15:26.867671-08:00,0.0,10.726774,10726.774 +8481,2025-03-08T01:15:37.592294-08:00,0.0,10.724623,10724.623 +8482,2025-03-08T01:15:48.320920-08:00,0.0,10.728626,10728.626 +8483,2025-03-08T01:15:59.044777-08:00,0.0,10.723857,10723.857 +8484,2025-03-08T01:16:09.767065-08:00,0.0,10.722288,10722.288 +8485,2025-03-08T01:16:20.489670-08:00,0.0,10.722605,10722.605 +8486,2025-03-08T01:16:31.215941-08:00,0.0,10.726271,10726.271 +8487,2025-03-08T01:16:41.942884-08:00,0.0,10.726943,10726.943 +8488,2025-03-08T01:16:52.672673-08:00,0.0,10.729789,10729.789 +8489,2025-03-08T01:17:03.388835-08:00,0.0,10.716162,10716.162 +8490,2025-03-08T01:17:14.115751-08:00,0.0,10.726916,10726.916 +8491,2025-03-08T01:17:24.850584-08:00,0.0,10.734833,10734.833 +8492,2025-03-08T01:17:35.574673-08:00,0.0,10.724089,10724.089 +8493,2025-03-08T01:17:46.299050-08:00,0.0,10.724377,10724.377 +8494,2025-03-08T01:17:57.023953-08:00,0.0,10.724903,10724.903 +8495,2025-03-08T01:18:07.743878-08:00,0.0,10.719925,10719.925 +8496,2025-03-08T01:18:18.472875-08:00,0.0,10.728997,10728.997 +8497,2025-03-08T01:18:29.197672-08:00,0.0,10.724797,10724.797 +8498,2025-03-08T01:18:39.921810-08:00,0.0,10.724138,10724.138 +8499,2025-03-08T01:18:50.644984-08:00,0.0,10.723174,10723.174 +8500,2025-03-08T01:19:01.376841-08:00,0.0,10.731857,10731.857 +8501,2025-03-08T01:19:12.095671-08:00,0.0,10.71883,10718.83 +8502,2025-03-08T01:19:22.820933-08:00,0.0,10.725262,10725.262 +8503,2025-03-08T01:19:33.543919-08:00,0.0,10.722986,10722.986 +8504,2025-03-08T01:19:44.274862-08:00,0.0,10.730943,10730.943 +8505,2025-03-08T01:19:54.993736-08:00,0.0,10.718874,10718.874 +8506,2025-03-08T01:20:05.720008-08:00,0.0,10.726272,10726.272 +8507,2025-03-08T01:20:16.443721-08:00,0.0,10.723713,10723.713 +8508,2025-03-08T01:20:27.167705-08:00,0.0,10.723984,10723.984 +8509,2025-03-08T01:20:37.899782-08:00,0.0,10.732077,10732.077 +8510,2025-03-08T01:20:48.624669-08:00,0.0,10.724887,10724.887 +8511,2025-03-08T01:20:59.342860-08:00,0.0,10.718191,10718.191 +8512,2025-03-08T01:21:10.076666-08:00,0.0,10.733806,10733.806 +8513,2025-03-08T01:21:20.798944-08:00,0.0,10.722278,10722.278 +8514,2025-03-08T01:21:31.536066-08:00,0.0,10.737122,10737.122 +8515,2025-03-08T01:21:42.260828-08:00,0.0,10.724762,10724.762 +8516,2025-03-08T01:21:52.986672-08:00,0.0,10.725844,10725.844 +8517,2025-03-08T01:22:03.718313-08:00,0.0,10.731641,10731.641 +8518,2025-03-08T01:22:14.443704-08:00,0.0,10.725391,10725.391 +8519,2025-03-08T01:22:25.173513-08:00,0.0,10.729809,10729.809 +8520,2025-03-08T01:22:35.895669-08:00,0.0,10.722156,10722.156 +8521,2025-03-08T01:22:46.622809-08:00,0.0,10.72714,10727.14 +8522,2025-03-08T01:22:57.347806-08:00,0.0,10.724997,10724.997 +8523,2025-03-08T01:23:08.063115-08:00,0.0,10.715309,10715.309 +8524,2025-03-08T01:23:18.794669-08:00,0.0,10.731554,10731.554 +8525,2025-03-08T01:23:29.513671-08:00,0.0,10.719002,10719.002 +8526,2025-03-08T01:23:40.236930-08:00,0.0,10.723259,10723.259 +8527,2025-03-08T01:23:50.962669-08:00,0.0,10.725739,10725.739 +8528,2025-03-08T01:24:01.684236-08:00,0.0,10.721567,10721.567 +8529,2025-03-08T01:24:12.406955-08:00,0.0,10.722719,10722.719 +8530,2025-03-08T01:24:23.126761-08:00,0.0,10.719806,10719.806 +8531,2025-03-08T01:24:33.853677-08:00,0.0,10.726916,10726.916 +8532,2025-03-08T01:24:44.581670-08:00,0.0,10.727993,10727.993 +8533,2025-03-08T01:24:55.295668-08:00,0.0,10.713998,10713.998 +8534,2025-03-08T01:25:06.024857-08:00,0.0,10.729189,10729.189 +8535,2025-03-08T01:25:16.749671-08:00,0.0,10.724814,10724.814 +8536,2025-03-08T01:25:27.469071-08:00,0.0,10.7194,10719.4 +8537,2025-03-08T01:25:38.190825-08:00,0.0,10.721754,10721.754 +8538,2025-03-08T01:25:48.912861-08:00,0.0,10.722036,10722.036 +8539,2025-03-08T01:25:59.645981-08:00,0.0,10.73312,10733.12 +8540,2025-03-08T01:26:10.364855-08:00,0.0,10.718874,10718.874 +8541,2025-03-08T01:26:21.086668-08:00,0.0,10.721813,10721.813 +8542,2025-03-08T01:26:31.814670-08:00,0.0,10.728002,10728.002 +8543,2025-03-08T01:26:42.533934-08:00,0.0,10.719264,10719.264 +8544,2025-03-08T01:26:53.256788-08:00,0.0,10.722854,10722.854 +8545,2025-03-08T01:27:03.982993-08:00,0.0,10.726205,10726.205 +8546,2025-03-08T01:27:14.711877-08:00,0.0,10.728884,10728.884 +8547,2025-03-08T01:27:25.429879-08:00,0.0,10.718002,10718.002 +8548,2025-03-08T01:27:36.154672-08:00,0.0,10.724793,10724.793 +8549,2025-03-08T01:27:46.872853-08:00,0.0,10.718181,10718.181 +8550,2025-03-08T01:27:57.599875-08:00,0.0,10.727022,10727.022 +8551,2025-03-08T01:28:08.328695-08:00,0.0,10.72882,10728.82 +8552,2025-03-08T01:28:19.054218-08:00,0.0,10.725523,10725.523 +8553,2025-03-08T01:28:29.778984-08:00,0.0,10.724766,10724.766 +8554,2025-03-08T01:28:40.494669-08:00,0.0,10.715685,10715.685 +8555,2025-03-08T01:28:51.216671-08:00,0.0,10.722002,10722.002 +8556,2025-03-08T01:29:01.938669-08:00,0.0,10.721998,10721.998 +8557,2025-03-08T01:29:12.668047-08:00,0.0,10.729378,10729.378 +8558,2025-03-08T01:29:23.385866-08:00,0.0,10.717819,10717.819 +8559,2025-03-08T01:29:34.110855-08:00,0.0,10.724989,10724.989 +8560,2025-03-08T01:29:44.832786-08:00,0.0,10.721931,10721.931 +8561,2025-03-08T01:29:55.562675-08:00,0.0,10.729889,10729.889 +8562,2025-03-08T01:30:06.279143-08:00,0.0,10.716468,10716.468 +8563,2025-03-08T01:30:17.001814-08:00,0.0,10.722671,10722.671 +8564,2025-03-08T01:30:27.728888-08:00,0.0,10.727074,10727.074 +8565,2025-03-08T01:30:38.449668-08:00,0.0,10.72078,10720.78 +8566,2025-03-08T01:30:49.163702-08:00,0.0,10.714034,10714.034 +8567,2025-03-08T01:30:59.891671-08:00,0.0,10.727969,10727.969 +8568,2025-03-08T01:31:10.605917-08:00,0.0,10.714246,10714.246 +8569,2025-03-08T01:31:21.330698-08:00,0.0,10.724781,10724.781 +8570,2025-03-08T01:31:32.060777-08:00,0.0,10.730079,10730.079 +8571,2025-03-08T01:31:42.782872-08:00,0.0,10.722095,10722.095 +8572,2025-03-08T01:31:53.500861-08:00,0.0,10.717989,10717.989 +8573,2025-03-08T01:32:04.226767-08:00,0.0,10.725906,10725.906 +8574,2025-03-08T01:32:14.943853-08:00,0.0,10.717086,10717.086 +8575,2025-03-08T01:32:25.666910-08:00,0.0,10.723057,10723.057 +8576,2025-03-08T01:32:36.391854-08:00,0.0,10.724944,10724.944 +8577,2025-03-08T01:32:47.124698-08:00,0.0,10.732844,10732.844 +8578,2025-03-08T01:32:57.844147-08:00,0.0,10.719449,10719.449 +8579,2025-03-08T01:33:08.574354-08:00,0.0,10.730207,10730.207 +8580,2025-03-08T01:33:19.298673-08:00,0.0,10.724319,10724.319 +8581,2025-03-08T01:33:30.015894-08:00,0.0,10.717221,10717.221 +8582,2025-03-08T01:33:40.740665-08:00,0.0,10.724771,10724.771 +8583,2025-03-08T01:33:51.471840-08:00,0.0,10.731175,10731.175 +8584,2025-03-08T01:34:02.200870-08:00,0.0,10.72903,10729.03 +8585,2025-03-08T01:34:12.917863-08:00,0.0,10.716993,10716.993 +8586,2025-03-08T01:34:23.651690-08:00,0.0,10.733827,10733.827 +8587,2025-03-08T01:34:34.372877-08:00,0.0,10.721187,10721.187 +8588,2025-03-08T01:34:45.098111-08:00,0.0,10.725234,10725.234 +8589,2025-03-08T01:34:55.819933-08:00,0.0,10.721822,10721.822 +8590,2025-03-08T01:35:06.532668-08:00,0.0,10.712735,10712.735 +8591,2025-03-08T01:35:17.258038-08:00,0.0,10.72537,10725.37 +8592,2025-03-08T01:35:27.979667-08:00,0.0,10.721629,10721.629 +8593,2025-03-08T01:35:38.707693-08:00,0.0,10.728026,10728.026 +8594,2025-03-08T01:35:49.424765-08:00,0.0,10.717072,10717.072 +8595,2025-03-08T01:36:00.151886-08:00,0.0,10.727121,10727.121 +8596,2025-03-08T01:36:10.874319-08:00,0.0,10.722433,10722.433 +8597,2025-03-08T01:36:21.606671-08:00,0.0,10.732352,10732.352 +8598,2025-03-08T01:36:32.330663-08:00,0.0,10.723992,10723.992 +8599,2025-03-08T01:36:43.047667-08:00,0.0,10.717004,10717.004 +8600,2025-03-08T01:36:53.771878-08:00,0.0,10.724211,10724.211 +8601,2025-03-08T01:37:04.504898-08:00,0.0,10.73302,10733.02 +8602,2025-03-08T01:37:15.222700-08:00,0.0,10.717802,10717.802 +8603,2025-03-08T01:37:25.946929-08:00,0.0,10.724229,10724.229 +8604,2025-03-08T01:37:36.672915-08:00,0.0,10.725986,10725.986 +8605,2025-03-08T01:37:47.395014-08:00,0.0,10.722099,10722.099 +8606,2025-03-08T01:37:58.115701-08:00,0.0,10.720687,10720.687 +8607,2025-03-08T01:38:08.846832-08:00,0.0,10.731131,10731.131 +8608,2025-03-08T01:38:19.569669-08:00,0.0,10.722837,10722.837 +8609,2025-03-08T01:38:30.295045-08:00,0.0,10.725376,10725.376 +8610,2025-03-08T01:38:41.012758-08:00,0.0,10.717713,10717.713 +8611,2025-03-08T01:38:51.738151-08:00,0.0,10.725393,10725.393 +8612,2025-03-08T01:39:02.462668-08:00,0.0,10.724517,10724.517 +8613,2025-03-08T01:39:13.184847-08:00,0.0,10.722179,10722.179 +8614,2025-03-08T01:39:23.903671-08:00,0.0,10.718824,10718.824 +8615,2025-03-08T01:39:34.624006-08:00,0.0,10.720335,10720.335 +8616,2025-03-08T01:39:45.345872-08:00,0.0,10.721866,10721.866 +8617,2025-03-08T01:39:56.078694-08:00,0.0,10.732822,10732.822 +8618,2025-03-08T01:40:06.800861-08:00,0.0,10.722167,10722.167 +8619,2025-03-08T01:40:17.526665-08:00,0.0,10.725804,10725.804 +8620,2025-03-08T01:40:28.242693-08:00,0.0,10.716028,10716.028 +8621,2025-03-08T01:40:38.970297-08:00,0.0,10.727604,10727.604 +8622,2025-03-08T01:40:49.696851-08:00,0.0,10.726554,10726.554 +8623,2025-03-08T01:41:00.418109-08:00,0.0,10.721258,10721.258 +8624,2025-03-08T01:41:11.143841-08:00,0.0,10.725732,10725.732 +8625,2025-03-08T01:41:21.861745-08:00,0.0,10.717904,10717.904 +8626,2025-03-08T01:41:32.588462-08:00,0.0,10.726717,10726.717 +8627,2025-03-08T01:41:43.316471-08:00,0.0,10.728009,10728.009 +8628,2025-03-08T01:41:54.038765-08:00,0.0,10.722294,10722.294 +8629,2025-03-08T01:42:04.757668-08:00,0.0,10.718903,10718.903 +8630,2025-03-08T01:42:15.477594-08:00,0.0,10.719926,10719.926 +8631,2025-03-08T01:42:26.199671-08:00,0.0,10.722077,10722.077 +8632,2025-03-08T01:42:36.922723-08:00,0.0,10.723052,10723.052 +8633,2025-03-08T01:42:47.641668-08:00,0.0,10.718945,10718.945 +8634,2025-03-08T01:42:58.366895-08:00,0.0,10.725227,10725.227 +8635,2025-03-08T01:43:09.090678-08:00,0.0,10.723783,10723.783 +8636,2025-03-08T01:43:19.813702-08:00,0.0,10.723024,10723.024 +8637,2025-03-08T01:43:30.536667-08:00,0.0,10.722965,10722.965 +8638,2025-03-08T01:43:41.254989-08:00,0.0,10.718322,10718.322 +8639,2025-03-08T01:43:51.978671-08:00,0.0,10.723682,10723.682 +8640,2025-03-08T01:44:02.703924-08:00,0.0,10.725253,10725.253 +8641,2025-03-08T01:44:13.420709-08:00,0.0,10.716785,10716.785 +8642,2025-03-08T01:44:24.139933-08:00,0.0,10.719224,10719.224 +8643,2025-03-08T01:44:34.860735-08:00,0.0,10.720802,10720.802 +8644,2025-03-08T01:44:45.586670-08:00,0.0,10.725935,10725.935 +8645,2025-03-08T01:44:56.305914-08:00,0.0,10.719244,10719.244 +8646,2025-03-08T01:45:07.028857-08:00,0.0,10.722943,10722.943 +8647,2025-03-08T01:45:17.751671-08:00,0.0,10.722814,10722.814 +8648,2025-03-08T01:45:28.470829-08:00,0.0,10.719158,10719.158 +8649,2025-03-08T01:45:39.202913-08:00,0.0,10.732084,10732.084 +8650,2025-03-08T01:45:49.920891-08:00,0.0,10.717978,10717.978 +8651,2025-03-08T01:46:00.641669-08:00,0.0,10.720778,10720.778 +8652,2025-03-08T01:46:11.360696-08:00,0.0,10.719027,10719.027 +8653,2025-03-08T01:46:22.091903-08:00,0.0,10.731207,10731.207 +8654,2025-03-08T01:46:32.809898-08:00,0.0,10.717995,10717.995 +8655,2025-03-08T01:46:43.530667-08:00,0.0,10.720769,10720.769 +8656,2025-03-08T01:46:54.253730-08:00,0.0,10.723063,10723.063 +8657,2025-03-08T01:47:04.973882-08:00,0.0,10.720152,10720.152 +8658,2025-03-08T01:47:15.690905-08:00,0.0,10.717023,10717.023 +8659,2025-03-08T01:47:26.415818-08:00,0.0,10.724913,10724.913 +8660,2025-03-08T01:47:37.139671-08:00,0.0,10.723853,10723.853 +8661,2025-03-08T01:47:47.856876-08:00,0.0,10.717205,10717.205 +8662,2025-03-08T01:47:58.581866-08:00,0.0,10.72499,10724.99 +8663,2025-03-08T01:48:09.307667-08:00,0.0,10.725801,10725.801 +8664,2025-03-08T01:48:20.022671-08:00,0.0,10.715004,10715.004 +8665,2025-03-08T01:48:30.745869-08:00,0.0,10.723198,10723.198 +8666,2025-03-08T01:48:41.466652-08:00,0.0,10.720783,10720.783 +8667,2025-03-08T01:48:52.183669-08:00,0.0,10.717017,10717.017 +8668,2025-03-08T01:49:02.903869-08:00,0.0,10.7202,10720.2 +8669,2025-03-08T01:49:13.618671-08:00,0.0,10.714802,10714.802 +8670,2025-03-08T01:49:24.343040-08:00,0.0,10.724369,10724.369 +8671,2025-03-08T01:49:35.061393-08:00,0.0,10.718353,10718.353 +8672,2025-03-08T01:49:45.782504-08:00,0.0,10.721111,10721.111 +8673,2025-03-08T01:49:56.499732-08:00,0.0,10.717228,10717.228 +8674,2025-03-08T01:50:07.214731-08:00,0.0,10.714999,10714.999 +8675,2025-03-08T01:50:17.926897-08:00,0.0,10.712166,10712.166 +8676,2025-03-08T01:50:28.653871-08:00,0.0,10.726974,10726.974 +8677,2025-03-08T01:50:39.363873-08:00,0.0,10.710002,10710.002 +8678,2025-03-08T01:50:50.089748-08:00,0.0,10.725875,10725.875 +8679,2025-03-08T01:51:00.802706-08:00,0.0,10.712958,10712.958 +8680,2025-03-08T01:51:11.518041-08:00,0.0,10.715335,10715.335 +8681,2025-03-08T01:51:22.238670-08:00,0.0,10.720629,10720.629 +8682,2025-03-08T01:51:32.954059-08:00,0.0,10.715389,10715.389 +8683,2025-03-08T01:51:43.681671-08:00,0.0,10.727612,10727.612 +8684,2025-03-08T01:51:54.397875-08:00,0.0,10.716204,10716.204 +8685,2025-03-08T01:52:05.114670-08:00,0.0,10.716795,10716.795 +8686,2025-03-08T01:52:15.835148-08:00,0.0,10.720478,10720.478 +8687,2025-03-08T01:52:26.528004-08:00,0.0,10.692856,10692.856 +8688,2025-03-08T01:52:37.254185-08:00,0.0,10.726181,10726.181 +8689,2025-03-08T01:52:47.971985-08:00,0.0,10.7178,10717.8 +8690,2025-03-08T01:52:58.688095-08:00,0.0,10.71611,10716.11 +8691,2025-03-08T01:53:09.409476-08:00,0.0,10.721381,10721.381 +8692,2025-03-08T01:53:20.121332-08:00,0.0,10.711856,10711.856 +8693,2025-03-08T01:53:30.843064-08:00,0.0,10.721732,10721.732 +8694,2025-03-08T01:53:41.562087-08:00,0.0,10.719023,10719.023 +8695,2025-03-08T01:53:52.274980-08:00,0.0,10.712893,10712.893 +8696,2025-03-08T01:54:02.999984-08:00,0.0,10.725004,10725.004 +8697,2025-03-08T01:54:13.712234-08:00,0.0,10.71225,10712.25 +8698,2025-03-08T01:54:24.439984-08:00,0.0,10.72775,10727.75 +8699,2025-03-08T01:54:35.151981-08:00,0.0,10.711997,10711.997 +8700,2025-03-08T01:54:45.871054-08:00,0.0,10.719073,10719.073 +8701,2025-03-08T01:54:56.595105-08:00,0.0,10.724051,10724.051 +8702,2025-03-08T01:55:07.309373-08:00,0.0,10.714268,10714.268 +8703,2025-03-08T01:55:18.025978-08:00,0.0,10.716605,10716.605 +8704,2025-03-08T01:55:28.748854-08:00,0.0,10.722876,10722.876 +8705,2025-03-08T01:55:39.467986-08:00,0.0,10.719132,10719.132 +8706,2025-03-08T01:55:50.183984-08:00,0.0,10.715998,10715.998 +8707,2025-03-08T01:56:00.900225-08:00,0.0,10.716241,10716.241 +8708,2025-03-08T01:56:11.622046-08:00,0.0,10.721821,10721.821 +8709,2025-03-08T01:56:22.336169-08:00,0.0,10.714123,10714.123 +8710,2025-03-08T01:56:33.055010-08:00,0.0,10.718841,10718.841 +8711,2025-03-08T01:56:43.765981-08:00,0.0,10.710971,10710.971 +8712,2025-03-08T01:56:54.486361-08:00,0.0,10.72038,10720.38 +8713,2025-03-08T01:57:05.202272-08:00,0.0,10.715911,10715.911 +8714,2025-03-08T01:57:15.914501-08:00,0.0,10.712229,10712.229 +8715,2025-03-08T01:57:26.632982-08:00,0.0,10.718481,10718.481 +8716,2025-03-08T01:57:37.351984-08:00,0.0,10.719002,10719.002 +8717,2025-03-08T01:57:48.069985-08:00,0.0,10.718001,10718.001 +8718,2025-03-08T01:57:58.789189-08:00,0.0,10.719204,10719.204 +8719,2025-03-08T01:58:09.515312-08:00,0.0,10.726123,10726.123 +8720,2025-03-08T01:58:20.228983-08:00,0.0,10.713671,10713.671 +8721,2025-03-08T01:58:30.949174-08:00,0.0,10.720191,10720.191 +8722,2025-03-08T01:58:41.663043-08:00,0.0,10.713869,10713.869 +8723,2025-03-08T01:58:52.386321-08:00,0.0,10.723278,10723.278 +8724,2025-03-08T01:59:03.109126-08:00,0.0,10.722805,10722.805 +8725,2025-03-08T01:59:13.825009-08:00,0.0,10.715883,10715.883 +8726,2025-03-08T01:59:24.544196-08:00,0.0,10.719187,10719.187 +8727,2025-03-08T01:59:35.258214-08:00,0.0,10.714018,10714.018 +8728,2025-03-08T01:59:45.985984-08:00,0.0,10.72777,10727.77 +8729,2025-03-08T01:59:56.700983-08:00,0.0,10.714999,10714.999 +8730,2025-03-08T02:00:07.425399-08:00,0.0,10.724416,10724.416 +8731,2025-03-08T02:00:18.150224-08:00,0.0,10.724825,10724.825 +8732,2025-03-08T02:00:28.869982-08:00,0.0,10.719758,10719.758 +8733,2025-03-08T02:00:39.597008-08:00,0.0,10.727026,10727.026 +8734,2025-03-08T02:00:50.310483-08:00,0.0,10.713475,10713.475 +8735,2025-03-08T02:01:01.032981-08:00,0.0,10.722498,10722.498 +8736,2025-03-08T02:01:22.469133-08:00,0.0,21.436152,21436.152 +8737,2025-03-08T02:01:33.192373-08:00,0.0,10.72324,10723.24 +8738,2025-03-08T02:01:43.910978-08:00,0.0,10.718605,10718.605 +8739,2025-03-08T02:01:54.630717-08:00,0.0,10.719739,10719.739 +8740,2025-03-08T02:02:05.356015-08:00,0.0,10.725298,10725.298 +8741,2025-03-08T02:02:16.079358-08:00,0.0,10.723343,10723.343 +8742,2025-03-08T02:02:26.794179-08:00,0.0,10.714821,10714.821 +8743,2025-03-08T02:02:37.518915-08:00,0.0,10.724736,10724.736 +8744,2025-03-08T02:02:48.247171-08:00,0.0,10.728256,10728.256 +8745,2025-03-08T02:02:58.967355-08:00,0.0,10.720184,10720.184 +8746,2025-03-08T02:03:09.695045-08:00,0.0,10.72769,10727.69 +8747,2025-03-08T02:03:20.417000-08:00,0.0,10.721955,10721.955 +8748,2025-03-08T02:03:31.136983-08:00,0.0,10.719983,10719.983 +8749,2025-03-08T02:03:41.861420-08:00,0.0,10.724437,10724.437 +8750,2025-03-08T02:03:52.584989-08:00,0.0,10.723569,10723.569 +8751,2025-03-08T02:04:03.301168-08:00,0.0,10.716179,10716.179 +8752,2025-03-08T02:04:14.019196-08:00,0.0,10.718028,10718.028 +8753,2025-03-08T02:04:24.750179-08:00,0.0,10.730983,10730.983 +8754,2025-03-08T02:04:35.473590-08:00,0.0,10.723411,10723.411 +8755,2025-03-08T02:04:46.191984-08:00,0.0,10.718394,10718.394 +8756,2025-03-08T02:04:56.915089-08:00,0.0,10.723105,10723.105 +8757,2025-03-08T02:05:07.643361-08:00,0.0,10.728272,10728.272 +8758,2025-03-08T02:05:18.368053-08:00,0.0,10.724692,10724.692 +8759,2025-03-08T02:05:29.093129-08:00,0.0,10.725076,10725.076 +8760,2025-03-08T02:05:39.817162-08:00,0.0,10.724033,10724.033 +8761,2025-03-08T02:05:50.541046-08:00,0.0,10.723884,10723.884 +8762,2025-03-08T02:06:01.256046-08:00,0.0,10.715,10715.0 +8763,2025-03-08T02:06:11.980984-08:00,0.0,10.724938,10724.938 +8764,2025-03-08T02:06:22.708156-08:00,0.0,10.727172,10727.172 +8765,2025-03-08T02:06:33.432993-08:00,0.0,10.724837,10724.837 +8766,2025-03-08T02:06:44.153168-08:00,0.0,10.720175,10720.175 +8767,2025-03-08T02:06:54.872985-08:00,0.0,10.719817,10719.817 +8768,2025-03-08T02:07:05.598080-08:00,0.0,10.725095,10725.095 +8769,2025-03-08T02:07:16.320984-08:00,0.0,10.722904,10722.904 +8770,2025-03-08T02:07:27.039174-08:00,0.0,10.71819,10718.19 +8771,2025-03-08T02:07:37.756127-08:00,0.0,10.716953,10716.953 +8772,2025-03-08T02:07:48.483371-08:00,0.0,10.727244,10727.244 +8773,2025-03-08T02:07:59.202983-08:00,0.0,10.719612,10719.612 +8774,2025-03-08T02:08:09.925162-08:00,0.0,10.722179,10722.179 +8775,2025-03-08T02:08:20.650984-08:00,0.0,10.725822,10725.822 +8776,2025-03-08T02:08:31.371359-08:00,0.0,10.720375,10720.375 +8777,2025-03-08T02:08:42.087062-08:00,0.0,10.715703,10715.703 +8778,2025-03-08T02:08:52.813163-08:00,0.0,10.726101,10726.101 +8779,2025-03-08T02:09:03.533986-08:00,0.0,10.720823,10720.823 +8780,2025-03-08T02:09:14.257165-08:00,0.0,10.723179,10723.179 +8781,2025-03-08T02:09:24.984052-08:00,0.0,10.726887,10726.887 +8782,2025-03-08T02:09:35.707305-08:00,0.0,10.723253,10723.253 +8783,2025-03-08T02:09:46.420984-08:00,0.0,10.713679,10713.679 +8784,2025-03-08T02:09:57.148167-08:00,0.0,10.727183,10727.183 +8785,2025-03-08T02:10:07.863186-08:00,0.0,10.715019,10715.019 +8786,2025-03-08T02:10:18.589160-08:00,0.0,10.725974,10725.974 +8787,2025-03-08T02:10:29.302981-08:00,0.0,10.713821,10713.821 +8788,2025-03-08T02:10:40.032181-08:00,0.0,10.7292,10729.2 +8789,2025-03-08T02:10:50.746156-08:00,0.0,10.713975,10713.975 +8790,2025-03-08T02:11:01.468766-08:00,0.0,10.72261,10722.61 +8791,2025-03-08T02:11:12.192982-08:00,0.0,10.724216,10724.216 +8792,2025-03-08T02:11:22.910004-08:00,0.0,10.717022,10717.022 +8793,2025-03-08T02:11:33.630074-08:00,0.0,10.72007,10720.07 +8794,2025-03-08T02:11:44.357272-08:00,0.0,10.727198,10727.198 +8795,2025-03-08T02:11:55.075981-08:00,0.0,10.718709,10718.709 +8796,2025-03-08T02:12:05.807109-08:00,0.0,10.731128,10731.128 +8797,2025-03-08T02:12:16.526194-08:00,0.0,10.719085,10719.085 +8798,2025-03-08T02:12:27.250157-08:00,0.0,10.723963,10723.963 +8799,2025-03-08T02:12:37.961983-08:00,0.0,10.711826,10711.826 +8800,2025-03-08T02:12:48.693085-08:00,0.0,10.731102,10731.102 +8801,2025-03-08T02:12:59.409331-08:00,0.0,10.716246,10716.246 +8802,2025-03-08T02:13:10.139274-08:00,0.0,10.729943,10729.943 +8803,2025-03-08T02:13:20.856505-08:00,0.0,10.717231,10717.231 +8804,2025-03-08T02:13:31.572006-08:00,0.0,10.715501,10715.501 +8805,2025-03-08T02:13:42.300196-08:00,0.0,10.72819,10728.19 +8806,2025-03-08T02:13:53.029297-08:00,0.0,10.729101,10729.101 +8807,2025-03-08T02:14:03.744983-08:00,0.0,10.715686,10715.686 +8808,2025-03-08T02:14:14.469157-08:00,0.0,10.724174,10724.174 +8809,2025-03-08T02:14:25.200976-08:00,0.0,10.731819,10731.819 +8810,2025-03-08T02:14:35.920191-08:00,0.0,10.719215,10719.215 +8811,2025-03-08T02:14:46.643130-08:00,0.0,10.722939,10722.939 +8812,2025-03-08T02:14:57.357550-08:00,0.0,10.71442,10714.42 +8813,2025-03-08T02:15:08.086981-08:00,0.0,10.729431,10729.431 +8814,2025-03-08T02:15:18.806168-08:00,0.0,10.719187,10719.187 +8815,2025-03-08T02:15:29.530013-08:00,0.0,10.723845,10723.845 +8816,2025-03-08T02:15:40.254200-08:00,0.0,10.724187,10724.187 +8817,2025-03-08T02:15:50.973979-08:00,0.0,10.719779,10719.779 +8818,2025-03-08T02:16:01.699247-08:00,0.0,10.725268,10725.268 +8819,2025-03-08T02:16:12.415041-08:00,0.0,10.715794,10715.794 +8820,2025-03-08T02:16:23.146022-08:00,0.0,10.730981,10730.981 +8821,2025-03-08T02:16:33.869004-08:00,0.0,10.722982,10722.982 +8822,2025-03-08T02:16:44.586163-08:00,0.0,10.717159,10717.159 +8823,2025-03-08T02:16:55.313082-08:00,0.0,10.726919,10726.919 +8824,2025-03-08T02:17:06.036976-08:00,0.0,10.723894,10723.894 +8825,2025-03-08T02:17:16.754009-08:00,0.0,10.717033,10717.033 +8826,2025-03-08T02:17:27.483228-08:00,0.0,10.729219,10729.219 +8827,2025-03-08T02:17:38.203653-08:00,0.0,10.720425,10720.425 +8828,2025-03-08T02:17:48.927009-08:00,0.0,10.723356,10723.356 +8829,2025-03-08T02:17:59.650189-08:00,0.0,10.72318,10723.18 +8830,2025-03-08T02:18:10.372268-08:00,0.0,10.722079,10722.079 +8831,2025-03-08T02:18:21.092170-08:00,0.0,10.719902,10719.902 +8832,2025-03-08T02:18:31.815092-08:00,0.0,10.722922,10722.922 +8833,2025-03-08T02:18:42.538291-08:00,0.0,10.723199,10723.199 +8834,2025-03-08T02:18:53.263547-08:00,0.0,10.725256,10725.256 +8835,2025-03-08T02:19:03.989992-08:00,0.0,10.726445,10726.445 +8836,2025-03-08T02:19:14.707981-08:00,0.0,10.717989,10717.989 +8837,2025-03-08T02:19:25.433186-08:00,0.0,10.725205,10725.205 +8838,2025-03-08T02:19:36.157154-08:00,0.0,10.723968,10723.968 +8839,2025-03-08T02:19:46.880359-08:00,0.0,10.723205,10723.205 +8840,2025-03-08T02:19:57.604980-08:00,0.0,10.724621,10724.621 +8841,2025-03-08T02:20:08.329011-08:00,0.0,10.724031,10724.031 +8842,2025-03-08T02:20:19.049672-08:00,0.0,10.720661,10720.661 +8843,2025-03-08T02:20:29.776388-08:00,0.0,10.726716,10726.716 +8844,2025-03-08T02:20:40.510373-08:00,0.0,10.733985,10733.985 +8845,2025-03-08T02:20:51.233984-08:00,0.0,10.723611,10723.611 +8846,2025-03-08T02:21:01.954117-08:00,0.0,10.720133,10720.133 +8847,2025-03-08T02:21:12.678981-08:00,0.0,10.724864,10724.864 +8848,2025-03-08T02:21:23.400212-08:00,0.0,10.721231,10721.231 +8849,2025-03-08T02:21:34.122215-08:00,0.0,10.722003,10722.003 +8850,2025-03-08T02:21:44.849158-08:00,0.0,10.726943,10726.943 +8851,2025-03-08T02:21:55.571267-08:00,0.0,10.722109,10722.109 +8852,2025-03-08T02:22:06.300191-08:00,0.0,10.728924,10728.924 +8853,2025-03-08T02:22:17.026181-08:00,0.0,10.72599,10725.99 +8854,2025-03-08T02:22:27.745983-08:00,0.0,10.719802,10719.802 +8855,2025-03-08T02:22:38.475354-08:00,0.0,10.729371,10729.371 +8856,2025-03-08T02:22:49.188986-08:00,0.0,10.713632,10713.632 +8857,2025-03-08T02:22:59.915179-08:00,0.0,10.726193,10726.193 +8858,2025-03-08T02:23:10.640190-08:00,0.0,10.725011,10725.011 +8859,2025-03-08T02:23:21.361163-08:00,0.0,10.720973,10720.973 +8860,2025-03-08T02:23:32.087984-08:00,0.0,10.726821,10726.821 +8861,2025-03-08T02:23:42.815463-08:00,0.0,10.727479,10727.479 +8862,2025-03-08T02:23:53.538981-08:00,0.0,10.723518,10723.518 +8863,2025-03-08T02:24:04.267983-08:00,0.0,10.729002,10729.002 +8864,2025-03-08T02:24:14.986035-08:00,0.0,10.718052,10718.052 +8865,2025-03-08T02:24:25.710991-08:00,0.0,10.724956,10724.956 +8866,2025-03-08T02:24:36.438170-08:00,0.0,10.727179,10727.179 +8867,2025-03-08T02:24:47.164984-08:00,0.0,10.726814,10726.814 +8868,2025-03-08T02:24:57.884079-08:00,0.0,10.719095,10719.095 +8869,2025-03-08T02:25:08.610182-08:00,0.0,10.726103,10726.103 +8870,2025-03-08T02:25:19.343249-08:00,0.0,10.733067,10733.067 +8871,2025-03-08T02:25:30.065647-08:00,0.0,10.722398,10722.398 +8872,2025-03-08T02:25:40.785981-08:00,0.0,10.720334,10720.334 +8873,2025-03-08T02:25:51.505009-08:00,0.0,10.719028,10719.028 +8874,2025-03-08T02:26:02.230173-08:00,0.0,10.725164,10725.164 +8875,2025-03-08T02:26:12.957187-08:00,0.0,10.727014,10727.014 +8876,2025-03-08T02:26:23.678984-08:00,0.0,10.721797,10721.797 +8877,2025-03-08T02:26:34.404192-08:00,0.0,10.725208,10725.208 +8878,2025-03-08T02:26:45.132979-08:00,0.0,10.728787,10728.787 +8879,2025-03-08T02:26:55.849266-08:00,0.0,10.716287,10716.287 +8880,2025-03-08T02:27:06.572982-08:00,0.0,10.723716,10723.716 +8881,2025-03-08T02:27:17.298983-08:00,0.0,10.726001,10726.001 +8882,2025-03-08T02:27:28.025101-08:00,0.0,10.726118,10726.118 +8883,2025-03-08T02:27:38.749984-08:00,0.0,10.724883,10724.883 +8884,2025-03-08T02:27:49.478160-08:00,0.0,10.728176,10728.176 +8885,2025-03-08T02:28:00.195977-08:00,0.0,10.717817,10717.817 +8886,2025-03-08T02:28:10.925176-08:00,0.0,10.729199,10729.199 +8887,2025-03-08T02:28:21.648015-08:00,0.0,10.722839,10722.839 +8888,2025-03-08T02:28:32.382165-08:00,0.0,10.73415,10734.15 +8889,2025-03-08T02:28:43.097980-08:00,0.0,10.715815,10715.815 +8890,2025-03-08T02:28:53.824980-08:00,0.0,10.727,10727.0 +8891,2025-03-08T02:29:04.554044-08:00,0.0,10.729064,10729.064 +8892,2025-03-08T02:29:15.285134-08:00,0.0,10.73109,10731.09 +8893,2025-03-08T02:29:26.009244-08:00,0.0,10.72411,10724.11 +8894,2025-03-08T02:29:36.739266-08:00,0.0,10.730022,10730.022 +8895,2025-03-08T02:29:47.460168-08:00,0.0,10.720902,10720.902 +8896,2025-03-08T02:29:58.192165-08:00,0.0,10.731997,10731.997 +8897,2025-03-08T02:30:08.907021-08:00,0.0,10.714856,10714.856 +8898,2025-03-08T02:30:19.638153-08:00,0.0,10.731132,10731.132 +8899,2025-03-08T02:30:30.359980-08:00,0.0,10.721827,10721.827 +8900,2025-03-08T02:30:41.085150-08:00,0.0,10.72517,10725.17 +8901,2025-03-08T02:30:51.817217-08:00,0.0,10.732067,10732.067 +8902,2025-03-08T02:31:02.536168-08:00,0.0,10.718951,10718.951 +8903,2025-03-08T02:31:13.255980-08:00,0.0,10.719812,10719.812 +8904,2025-03-08T02:31:23.977981-08:00,0.0,10.722001,10722.001 +8905,2025-03-08T02:31:34.703224-08:00,0.0,10.725243,10725.243 +8906,2025-03-08T02:31:45.426264-08:00,0.0,10.72304,10723.04 +8907,2025-03-08T02:31:56.147123-08:00,0.0,10.720859,10720.859 +8908,2025-03-08T02:32:06.870984-08:00,0.0,10.723861,10723.861 +8909,2025-03-08T02:32:17.591898-08:00,0.0,10.720914,10720.914 +8910,2025-03-08T02:32:28.308188-08:00,0.0,10.71629,10716.29 +8911,2025-03-08T02:32:39.028981-08:00,0.0,10.720793,10720.793 +8912,2025-03-08T02:32:49.754984-08:00,0.0,10.726003,10726.003 +8913,2025-03-08T02:33:00.473108-08:00,0.0,10.718124,10718.124 +8914,2025-03-08T02:33:11.192593-08:00,0.0,10.719485,10719.485 +8915,2025-03-08T02:33:21.914976-08:00,0.0,10.722383,10722.383 +8916,2025-03-08T02:33:32.641396-08:00,0.0,10.72642,10726.42 +8917,2025-03-08T02:33:43.367222-08:00,0.0,10.725826,10725.826 +8918,2025-03-08T02:33:54.096176-08:00,0.0,10.728954,10728.954 +8919,2025-03-08T02:34:04.818819-08:00,0.0,10.722643,10722.643 +8920,2025-03-08T02:34:15.534984-08:00,0.0,10.716165,10716.165 +8921,2025-03-08T02:34:26.257007-08:00,0.0,10.722023,10722.023 +8922,2025-03-08T02:34:36.982191-08:00,0.0,10.725184,10725.184 +8923,2025-03-08T02:34:47.704476-08:00,0.0,10.722285,10722.285 +8924,2025-03-08T02:34:58.427981-08:00,0.0,10.723505,10723.505 +8925,2025-03-08T02:35:09.152182-08:00,0.0,10.724201,10724.201 +8926,2025-03-08T02:35:19.877422-08:00,0.0,10.72524,10725.24 +8927,2025-03-08T02:35:30.599399-08:00,0.0,10.721977,10721.977 +8928,2025-03-08T02:35:41.324981-08:00,0.0,10.725582,10725.582 +8929,2025-03-08T02:35:52.039185-08:00,0.0,10.714204,10714.204 +8930,2025-03-08T02:36:02.769282-08:00,0.0,10.730097,10730.097 +8931,2025-03-08T02:36:13.495225-08:00,0.0,10.725943,10725.943 +8932,2025-03-08T02:36:24.212981-08:00,0.0,10.717756,10717.756 +8933,2025-03-08T02:36:34.936984-08:00,0.0,10.724003,10724.003 +8934,2025-03-08T02:36:45.667007-08:00,0.0,10.730023,10730.023 +8935,2025-03-08T02:36:56.387165-08:00,0.0,10.720158,10720.158 +8936,2025-03-08T02:37:07.102011-08:00,0.0,10.714846,10714.846 +8937,2025-03-08T02:37:17.828199-08:00,0.0,10.726188,10726.188 +8938,2025-03-08T02:37:28.546980-08:00,0.0,10.718781,10718.781 +8939,2025-03-08T02:37:39.271207-08:00,0.0,10.724227,10724.227 +8940,2025-03-08T02:37:49.999685-08:00,0.0,10.728478,10728.478 +8941,2025-03-08T02:38:00.720197-08:00,0.0,10.720512,10720.512 +8942,2025-03-08T02:38:11.444802-08:00,0.0,10.724605,10724.605 +8943,2025-03-08T02:38:22.171059-08:00,0.0,10.726257,10726.257 +8944,2025-03-08T02:38:32.886996-08:00,0.0,10.715937,10715.937 +8945,2025-03-08T02:38:43.607393-08:00,0.0,10.720397,10720.397 +8946,2025-03-08T02:38:54.337163-08:00,0.0,10.72977,10729.77 +8947,2025-03-08T02:39:05.057981-08:00,0.0,10.720818,10720.818 +8948,2025-03-08T02:39:15.780654-08:00,0.0,10.722673,10722.673 +8949,2025-03-08T02:39:26.501980-08:00,0.0,10.721326,10721.326 +8950,2025-03-08T02:39:37.223209-08:00,0.0,10.721229,10721.229 +8951,2025-03-08T02:39:47.948983-08:00,0.0,10.725774,10725.774 +8952,2025-03-08T02:39:58.674185-08:00,0.0,10.725202,10725.202 +8953,2025-03-08T02:40:09.399014-08:00,0.0,10.724829,10724.829 +8954,2025-03-08T02:40:20.115146-08:00,0.0,10.716132,10716.132 +8955,2025-03-08T02:40:30.841621-08:00,0.0,10.726475,10726.475 +8956,2025-03-08T02:40:41.567160-08:00,0.0,10.725539,10725.539 +8957,2025-03-08T02:40:52.291009-08:00,0.0,10.723849,10723.849 +8958,2025-03-08T02:41:03.005484-08:00,0.0,10.714475,10714.475 +8959,2025-03-08T02:41:13.737010-08:00,0.0,10.731526,10731.526 +8960,2025-03-08T02:41:24.460161-08:00,0.0,10.723151,10723.151 +8961,2025-03-08T02:41:35.175983-08:00,0.0,10.715822,10715.822 +8962,2025-03-08T02:41:45.908152-08:00,0.0,10.732169,10732.169 +8963,2025-03-08T02:41:56.627184-08:00,0.0,10.719032,10719.032 +8964,2025-03-08T02:42:07.355981-08:00,0.0,10.728797,10728.797 +8965,2025-03-08T02:42:18.083446-08:00,0.0,10.727465,10727.465 +8966,2025-03-08T02:42:28.805978-08:00,0.0,10.722532,10722.532 +8967,2025-03-08T02:42:39.530979-08:00,0.0,10.725001,10725.001 +8968,2025-03-08T02:42:50.252193-08:00,0.0,10.721214,10721.214 +8969,2025-03-08T02:43:00.982085-08:00,0.0,10.729892,10729.892 +8970,2025-03-08T02:43:11.707185-08:00,0.0,10.7251,10725.1 +8971,2025-03-08T02:43:22.430183-08:00,0.0,10.722998,10722.998 +8972,2025-03-08T02:43:33.154174-08:00,0.0,10.723991,10723.991 +8973,2025-03-08T02:43:43.872985-08:00,0.0,10.718811,10718.811 +8974,2025-03-08T02:43:54.596830-08:00,0.0,10.723845,10723.845 +8975,2025-03-08T02:44:05.323981-08:00,0.0,10.727151,10727.151 +8976,2025-03-08T02:44:16.045145-08:00,0.0,10.721164,10721.164 +8977,2025-03-08T02:44:26.762984-08:00,0.0,10.717839,10717.839 +8978,2025-03-08T02:44:37.494472-08:00,0.0,10.731488,10731.488 +8979,2025-03-08T02:44:48.212981-08:00,0.0,10.718509,10718.509 +8980,2025-03-08T02:44:58.941983-08:00,0.0,10.729002,10729.002 +8981,2025-03-08T02:45:09.661653-08:00,0.0,10.71967,10719.67 +8982,2025-03-08T02:45:20.387197-08:00,0.0,10.725544,10725.544 +8983,2025-03-08T02:45:31.111132-08:00,0.0,10.723935,10723.935 +8984,2025-03-08T02:45:41.831984-08:00,0.0,10.720852,10720.852 +8985,2025-03-08T02:45:52.558352-08:00,0.0,10.726368,10726.368 +8986,2025-03-08T02:46:03.280330-08:00,0.0,10.721978,10721.978 +8987,2025-03-08T02:46:14.002049-08:00,0.0,10.721719,10721.719 +8988,2025-03-08T02:46:24.735981-08:00,0.0,10.733932,10733.932 +8989,2025-03-08T02:46:35.452158-08:00,0.0,10.716177,10716.177 +8990,2025-03-08T02:46:46.184013-08:00,0.0,10.731855,10731.855 +8991,2025-03-08T02:46:56.899289-08:00,0.0,10.715276,10715.276 +8992,2025-03-08T02:47:04.378701-08:00,0.0,7.479412,7479.412 +8993,2025-03-08T02:47:07.626981-08:00,0.0,3.24828,3248.28 +8994,2025-03-08T02:47:18.355395-08:00,0.0,10.728414,10728.414 +8995,2025-03-08T02:47:29.067214-08:00,0.0,10.711819,10711.819 +8996,2025-03-08T02:47:39.791414-08:00,0.0,10.7242,10724.2 +8997,2025-03-08T02:47:50.515056-08:00,0.0,10.723642,10723.642 +8998,2025-03-08T02:48:01.244983-08:00,0.0,10.729927,10729.927 +8999,2025-03-08T02:48:11.971871-08:00,0.0,10.726888,10726.888 +9000,2025-03-08T02:48:22.690982-08:00,0.0,10.719111,10719.111 +9001,2025-03-08T02:48:33.410039-08:00,0.0,10.719057,10719.057 +9002,2025-03-08T02:48:44.140136-08:00,0.0,10.730097,10730.097 +9003,2025-03-08T02:48:54.869057-08:00,0.0,10.728921,10728.921 +9004,2025-03-08T02:49:05.588173-08:00,0.0,10.719116,10719.116 +9005,2025-03-08T02:49:16.312046-08:00,0.0,10.723873,10723.873 +9006,2025-03-08T02:49:27.037406-08:00,0.0,10.72536,10725.36 +9007,2025-03-08T02:49:37.757981-08:00,0.0,10.720575,10720.575 +9008,2025-03-08T02:49:48.487007-08:00,0.0,10.729026,10729.026 +9009,2025-03-08T02:49:59.200032-08:00,0.0,10.713025,10713.025 +9010,2025-03-08T02:50:09.922184-08:00,0.0,10.722152,10722.152 +9011,2025-03-08T02:50:20.656072-08:00,0.0,10.733888,10733.888 +9012,2025-03-08T02:50:31.377027-08:00,0.0,10.720955,10720.955 +9013,2025-03-08T02:50:42.102442-08:00,0.0,10.725415,10725.415 +9014,2025-03-08T02:50:52.824272-08:00,0.0,10.72183,10721.83 +9015,2025-03-08T02:51:03.553981-08:00,0.0,10.729709,10729.709 +9016,2025-03-08T02:51:14.275195-08:00,0.0,10.721214,10721.214 +9017,2025-03-08T02:51:25.007158-08:00,0.0,10.731963,10731.963 +9018,2025-03-08T02:51:35.737980-08:00,0.0,10.730822,10730.822 +9019,2025-03-08T02:51:46.455165-08:00,0.0,10.717185,10717.185 +9020,2025-03-08T02:51:57.185981-08:00,0.0,10.730816,10730.816 +9021,2025-03-08T02:52:07.904176-08:00,0.0,10.718195,10718.195 +9022,2025-03-08T02:52:18.623986-08:00,0.0,10.71981,10719.81 +9023,2025-03-08T02:52:29.387756-08:00,0.0,10.76377,10763.77 +9024,2025-03-08T02:52:40.112599-08:00,0.0,10.724843,10724.843 +9025,2025-03-08T02:52:50.832730-08:00,0.0,10.720131,10720.131 +9026,2025-03-08T02:53:01.550649-08:00,0.0,10.717919,10717.919 +9027,2025-03-08T02:53:12.284795-08:00,0.0,10.734146,10734.146 +9028,2025-03-08T02:53:23.005666-08:00,0.0,10.720871,10720.871 +9029,2025-03-08T02:53:33.726573-08:00,0.0,10.720907,10720.907 +9030,2025-03-08T02:53:44.451598-08:00,0.0,10.725025,10725.025 +9031,2025-03-08T02:53:55.169746-08:00,0.0,10.718148,10718.148 +9032,2025-03-08T02:54:05.898570-08:00,0.0,10.728824,10728.824 +9033,2025-03-08T02:54:16.619785-08:00,0.0,10.721215,10721.215 +9034,2025-03-08T02:54:27.348774-08:00,0.0,10.728989,10728.989 +9035,2025-03-08T02:54:38.075637-08:00,0.0,10.726863,10726.863 +9036,2025-03-08T02:54:48.792962-08:00,0.0,10.717325,10717.325 +9037,2025-03-08T02:54:59.519112-08:00,0.0,10.72615,10726.15 +9038,2025-03-08T02:55:10.250681-08:00,0.0,10.731569,10731.569 +9039,2025-03-08T02:55:20.978070-08:00,0.0,10.727389,10727.389 +9040,2025-03-08T02:55:31.698680-08:00,0.0,10.72061,10720.61 +9041,2025-03-08T02:55:42.420755-08:00,0.0,10.722075,10722.075 +9042,2025-03-08T02:55:53.150776-08:00,0.0,10.730021,10730.021 +9043,2025-03-08T02:56:03.878683-08:00,0.0,10.727907,10727.907 +9044,2025-03-08T02:56:14.601595-08:00,0.0,10.722912,10722.912 +9045,2025-03-08T02:56:25.325792-08:00,0.0,10.724197,10724.197 +9046,2025-03-08T02:56:36.054569-08:00,0.0,10.728777,10728.777 +9047,2025-03-08T02:56:46.772574-08:00,0.0,10.718005,10718.005 +9048,2025-03-08T02:56:57.508012-08:00,0.0,10.735438,10735.438 +9049,2025-03-08T02:57:08.224572-08:00,0.0,10.71656,10716.56 +9050,2025-03-08T02:57:18.950776-08:00,0.0,10.726204,10726.204 +9051,2025-03-08T02:57:29.673575-08:00,0.0,10.722799,10722.799 +9052,2025-03-08T02:57:40.403818-08:00,0.0,10.730243,10730.243 +9053,2025-03-08T02:57:51.131715-08:00,0.0,10.727897,10727.897 +9054,2025-03-08T02:58:01.855578-08:00,0.0,10.723863,10723.863 +9055,2025-03-08T02:58:12.581823-08:00,0.0,10.726245,10726.245 +9056,2025-03-08T02:58:23.310572-08:00,0.0,10.728749,10728.749 +9057,2025-03-08T02:58:34.031749-08:00,0.0,10.721177,10721.177 +9058,2025-03-08T02:58:44.757795-08:00,0.0,10.726046,10726.046 +9059,2025-03-08T02:58:55.485747-08:00,0.0,10.727952,10727.952 +9060,2025-03-08T02:59:06.203600-08:00,0.0,10.717853,10717.853 +9061,2025-03-08T02:59:16.935001-08:00,0.0,10.731401,10731.401 +9062,2025-03-08T02:59:27.663829-08:00,0.0,10.728828,10728.828 +9063,2025-03-08T02:59:38.382575-08:00,0.0,10.718746,10718.746 +9064,2025-03-08T02:59:49.110962-08:00,0.0,10.728387,10728.387 +9065,2025-03-08T02:59:59.830571-08:00,0.0,10.719609,10719.609 +9066,2025-03-08T03:00:10.559574-08:00,0.0,10.729003,10729.003 +9067,2025-03-08T03:00:21.287888-08:00,0.0,10.728314,10728.314 +9068,2025-03-08T03:00:32.005756-08:00,0.0,10.717868,10717.868 +9069,2025-03-08T03:00:42.728743-08:00,0.0,10.722987,10722.987 +9070,2025-03-08T03:00:53.452644-08:00,0.0,10.723901,10723.901 +9071,2025-03-08T03:01:04.185761-08:00,0.0,10.733117,10733.117 +9072,2025-03-08T03:01:14.904738-08:00,0.0,10.718977,10718.977 +9073,2025-03-08T03:01:25.639103-08:00,0.0,10.734365,10734.365 +9074,2025-03-08T03:01:36.361570-08:00,0.0,10.722467,10722.467 +9075,2025-03-08T03:01:47.081576-08:00,0.0,10.720006,10720.006 +9076,2025-03-08T03:01:57.814910-08:00,0.0,10.733334,10733.334 +9077,2025-03-08T03:02:08.537641-08:00,0.0,10.722731,10722.731 +9078,2025-03-08T03:02:19.265756-08:00,0.0,10.728115,10728.115 +9079,2025-03-08T03:02:29.990872-08:00,0.0,10.725116,10725.116 +9080,2025-03-08T03:02:40.708772-08:00,0.0,10.7179,10717.9 +9081,2025-03-08T03:02:51.432571-08:00,0.0,10.723799,10723.799 +9082,2025-03-08T03:03:02.166898-08:00,0.0,10.734327,10734.327 +9083,2025-03-08T03:03:12.890595-08:00,0.0,10.723697,10723.697 +9084,2025-03-08T03:03:23.613573-08:00,0.0,10.722978,10722.978 +9085,2025-03-08T03:03:34.343739-08:00,0.0,10.730166,10730.166 +9086,2025-03-08T03:03:45.073576-08:00,0.0,10.729837,10729.837 +9087,2025-03-08T03:03:55.798742-08:00,0.0,10.725166,10725.166 +9088,2025-03-08T03:04:06.522573-08:00,0.0,10.723831,10723.831 +9089,2025-03-08T03:04:17.244572-08:00,0.0,10.721999,10721.999 +9090,2025-03-08T03:04:27.969765-08:00,0.0,10.725193,10725.193 +9091,2025-03-08T03:04:38.696624-08:00,0.0,10.726859,10726.859 +9092,2025-03-08T03:04:49.429772-08:00,0.0,10.733148,10733.148 +9093,2025-03-08T03:05:00.149572-08:00,0.0,10.7198,10719.8 +9094,2025-03-08T03:05:10.873914-08:00,0.0,10.724342,10724.342 +9095,2025-03-08T03:05:21.603818-08:00,0.0,10.729904,10729.904 +9096,2025-03-08T03:05:32.327566-08:00,0.0,10.723748,10723.748 +9097,2025-03-08T03:05:43.053052-08:00,0.0,10.725486,10725.486 +9098,2025-03-08T03:05:53.777947-08:00,0.0,10.724895,10724.895 +9099,2025-03-08T03:06:04.498749-08:00,0.0,10.720802,10720.802 +9100,2025-03-08T03:06:15.224573-08:00,0.0,10.725824,10725.824 +9101,2025-03-08T03:06:25.951789-08:00,0.0,10.727216,10727.216 +9102,2025-03-08T03:06:36.681578-08:00,0.0,10.729789,10729.789 +9103,2025-03-08T03:06:47.400045-08:00,0.0,10.718467,10718.467 +9104,2025-03-08T03:06:58.121574-08:00,0.0,10.721529,10721.529 +9105,2025-03-08T03:07:08.845063-08:00,0.0,10.723489,10723.489 +9106,2025-03-08T03:07:19.568571-08:00,0.0,10.723508,10723.508 +9107,2025-03-08T03:07:30.295573-08:00,0.0,10.727002,10727.002 +9108,2025-03-08T03:07:41.026962-08:00,0.0,10.731389,10731.389 +9109,2025-03-08T03:07:51.744631-08:00,0.0,10.717669,10717.669 +9110,2025-03-08T03:08:02.469758-08:00,0.0,10.725127,10725.127 +9111,2025-03-08T03:08:13.195768-08:00,0.0,10.72601,10726.01 +9112,2025-03-08T03:08:23.917584-08:00,0.0,10.721816,10721.816 +9113,2025-03-08T03:08:34.635743-08:00,0.0,10.718159,10718.159 +9114,2025-03-08T03:08:45.368758-08:00,0.0,10.733015,10733.015 +9115,2025-03-08T03:08:56.095794-08:00,0.0,10.727036,10727.036 +9116,2025-03-08T03:09:06.816572-08:00,0.0,10.720778,10720.778 +9117,2025-03-08T03:09:17.534711-08:00,0.0,10.718139,10718.139 +9118,2025-03-08T03:09:28.261575-08:00,0.0,10.726864,10726.864 +9119,2025-03-08T03:09:38.985460-08:00,0.0,10.723885,10723.885 +9120,2025-03-08T03:09:49.709575-08:00,0.0,10.724115,10724.115 +9121,2025-03-08T03:10:00.429747-08:00,0.0,10.720172,10720.172 +9122,2025-03-08T03:10:11.153961-08:00,0.0,10.724214,10724.214 +9123,2025-03-08T03:10:21.873117-08:00,0.0,10.719156,10719.156 +9124,2025-03-08T03:10:32.594676-08:00,0.0,10.721559,10721.559 +9125,2025-03-08T03:10:43.324053-08:00,0.0,10.729377,10729.377 +9126,2025-03-08T03:10:54.045642-08:00,0.0,10.721589,10721.589 +9127,2025-03-08T03:11:04.761735-08:00,0.0,10.716093,10716.093 +9128,2025-03-08T03:11:15.481267-08:00,0.0,10.719532,10719.532 +9129,2025-03-08T03:11:26.202982-08:00,0.0,10.721715,10721.715 +9130,2025-03-08T03:11:36.925829-08:00,0.0,10.722847,10722.847 +9131,2025-03-08T03:11:47.650753-08:00,0.0,10.724924,10724.924 +9132,2025-03-08T03:11:58.361575-08:00,0.0,10.710822,10710.822 +9133,2025-03-08T03:12:09.084081-08:00,0.0,10.722506,10722.506 +9134,2025-03-08T03:12:19.809780-08:00,0.0,10.725699,10725.699 +9135,2025-03-08T03:12:30.526735-08:00,0.0,10.716955,10716.955 +9136,2025-03-08T03:12:41.246575-08:00,0.0,10.71984,10719.84 +9137,2025-03-08T03:12:51.965572-08:00,0.0,10.718997,10718.997 +9138,2025-03-08T03:13:02.681781-08:00,0.0,10.716209,10716.209 +9139,2025-03-08T03:13:13.400780-08:00,0.0,10.718999,10718.999 +9140,2025-03-08T03:13:24.129575-08:00,0.0,10.728795,10728.795 +9141,2025-03-08T03:13:34.841640-08:00,0.0,10.712065,10712.065 +9142,2025-03-08T03:13:45.567753-08:00,0.0,10.726113,10726.113 +9143,2025-03-08T03:13:56.282607-08:00,0.0,10.714854,10714.854 +9144,2025-03-08T03:14:07.014631-08:00,0.0,10.732024,10732.024 +9145,2025-03-08T03:14:17.733570-08:00,0.0,10.718939,10718.939 +9146,2025-03-08T03:14:28.457996-08:00,0.0,10.724426,10724.426 +9147,2025-03-08T03:14:39.174682-08:00,0.0,10.716686,10716.686 +9148,2025-03-08T03:14:49.894963-08:00,0.0,10.720281,10720.281 +9149,2025-03-08T03:15:00.610668-08:00,0.0,10.715705,10715.705 +9150,2025-03-08T03:15:11.340676-08:00,0.0,10.730008,10730.008 +9151,2025-03-08T03:15:22.063573-08:00,0.0,10.722897,10722.897 +9152,2025-03-08T03:15:32.789883-08:00,0.0,10.72631,10726.31 +9153,2025-03-08T03:15:43.509635-08:00,0.0,10.719752,10719.752 +9154,2025-03-08T03:15:54.234774-08:00,0.0,10.725139,10725.139 +9155,2025-03-08T03:16:04.954810-08:00,0.0,10.720036,10720.036 +9156,2025-03-08T03:16:15.673849-08:00,0.0,10.719039,10719.039 +9157,2025-03-08T03:16:26.406598-08:00,0.0,10.732749,10732.749 +9158,2025-03-08T03:16:37.121775-08:00,0.0,10.715177,10715.177 +9159,2025-03-08T03:16:47.843581-08:00,0.0,10.721806,10721.806 +9160,2025-03-08T03:16:58.566578-08:00,0.0,10.722997,10722.997 +9161,2025-03-08T03:17:09.290800-08:00,0.0,10.724222,10724.222 +9162,2025-03-08T03:17:20.008848-08:00,0.0,10.718048,10718.048 +9163,2025-03-08T03:17:30.723570-08:00,0.0,10.714722,10714.722 +9164,2025-03-08T03:17:41.448935-08:00,0.0,10.725365,10725.365 +9165,2025-03-08T03:17:52.167596-08:00,0.0,10.718661,10718.661 +9166,2025-03-08T03:18:02.890758-08:00,0.0,10.723162,10723.162 +9167,2025-03-08T03:18:13.603576-08:00,0.0,10.712818,10712.818 +9168,2025-03-08T03:18:24.334739-08:00,0.0,10.731163,10731.163 +9169,2025-03-08T03:18:35.056573-08:00,0.0,10.721834,10721.834 +9170,2025-03-08T03:18:45.783941-08:00,0.0,10.727368,10727.368 +9171,2025-03-08T03:18:56.508571-08:00,0.0,10.72463,10724.63 +9172,2025-03-08T03:19:07.222769-08:00,0.0,10.714198,10714.198 +9173,2025-03-08T03:19:17.955984-08:00,0.0,10.733215,10733.215 +9174,2025-03-08T03:19:28.675753-08:00,0.0,10.719769,10719.769 +9175,2025-03-08T03:19:39.392570-08:00,0.0,10.716817,10716.817 +9176,2025-03-08T03:19:40.629108-08:00,0.0,1.236538,1236.538 +9177,2025-03-08T03:19:50.119280-08:00,0.0,9.490172,9490.172 +9178,2025-03-08T03:20:00.840573-08:00,0.0,10.721293,10721.293 +9179,2025-03-08T03:20:11.554499-08:00,0.0,10.713926,10713.926 +9180,2025-03-08T03:20:22.283570-08:00,0.0,10.729071,10729.071 +9181,2025-03-08T03:20:33.005648-08:00,0.0,10.722078,10722.078 +9182,2025-03-08T03:20:43.731595-08:00,0.0,10.725947,10725.947 +9183,2025-03-08T03:20:54.460589-08:00,0.0,10.728994,10728.994 +9184,2025-03-08T03:21:05.186731-08:00,0.0,10.726142,10726.142 +9185,2025-03-08T03:21:15.906663-08:00,0.0,10.719932,10719.932 +9186,2025-03-08T03:21:26.631971-08:00,0.0,10.725308,10725.308 +9187,2025-03-08T03:21:37.360641-08:00,0.0,10.72867,10728.67 +9188,2025-03-08T03:21:48.083748-08:00,0.0,10.723107,10723.107 +9189,2025-03-08T03:21:58.809769-08:00,0.0,10.726021,10726.021 +9190,2025-03-08T03:22:09.525572-08:00,0.0,10.715803,10715.803 +9191,2025-03-08T03:22:20.253835-08:00,0.0,10.728263,10728.263 +9192,2025-03-08T03:22:30.981972-08:00,0.0,10.728137,10728.137 +9193,2025-03-08T03:22:41.695776-08:00,0.0,10.713804,10713.804 +9194,2025-03-08T03:22:52.423571-08:00,0.0,10.727795,10727.795 +9195,2025-03-08T03:23:03.149747-08:00,0.0,10.726176,10726.176 +9196,2025-03-08T03:23:13.868607-08:00,0.0,10.71886,10718.86 +9197,2025-03-08T03:23:24.591621-08:00,0.0,10.723014,10723.014 +9198,2025-03-08T03:23:35.311572-08:00,0.0,10.719951,10719.951 +9199,2025-03-08T03:23:46.035759-08:00,0.0,10.724187,10724.187 +9200,2025-03-08T03:23:56.762604-08:00,0.0,10.726845,10726.845 +9201,2025-03-08T03:24:07.478404-08:00,0.0,10.7158,10715.8 +9202,2025-03-08T03:24:18.201605-08:00,0.0,10.723201,10723.201 +9203,2025-03-08T03:24:28.934574-08:00,0.0,10.732969,10732.969 +9204,2025-03-08T03:24:39.656823-08:00,0.0,10.722249,10722.249 +9205,2025-03-08T03:24:50.386668-08:00,0.0,10.729845,10729.845 +9206,2025-03-08T03:25:01.111222-08:00,0.0,10.724554,10724.554 +9207,2025-03-08T03:25:11.832573-08:00,0.0,10.721351,10721.351 +9208,2025-03-08T03:25:22.558776-08:00,0.0,10.726203,10726.203 +9209,2025-03-08T03:25:33.280634-08:00,0.0,10.721858,10721.858 +9210,2025-03-08T03:25:44.011771-08:00,0.0,10.731137,10731.137 +9211,2025-03-08T03:25:54.744574-08:00,0.0,10.732803,10732.803 +9212,2025-03-08T03:26:05.462680-08:00,0.0,10.718106,10718.106 +9213,2025-03-08T03:26:16.195754-08:00,0.0,10.733074,10733.074 +9214,2025-03-08T03:26:26.923754-08:00,0.0,10.728,10728.0 +9215,2025-03-08T03:26:37.645243-08:00,0.0,10.721489,10721.489 +9216,2025-03-08T03:26:48.368573-08:00,0.0,10.72333,10723.33 +9217,2025-03-08T03:26:59.098649-08:00,0.0,10.730076,10730.076 +9218,2025-03-08T03:27:09.829047-08:00,0.0,10.730398,10730.398 +9219,2025-03-08T03:27:20.551582-08:00,0.0,10.722535,10722.535 +9220,2025-03-08T03:27:31.270263-08:00,0.0,10.718681,10718.681 +9221,2025-03-08T03:27:41.997571-08:00,0.0,10.727308,10727.308 +9222,2025-03-08T03:27:52.725571-08:00,0.0,10.728,10728.0 +9223,2025-03-08T03:28:03.455074-08:00,0.0,10.729503,10729.503 +9224,2025-03-08T03:28:14.179757-08:00,0.0,10.724683,10724.683 +9225,2025-03-08T03:28:24.901737-08:00,0.0,10.72198,10721.98 +9226,2025-03-08T03:28:35.630931-08:00,0.0,10.729194,10729.194 +9227,2025-03-08T03:28:46.356785-08:00,0.0,10.725854,10725.854 +9228,2025-03-08T03:28:57.075573-08:00,0.0,10.718788,10718.788 +9229,2025-03-08T03:29:07.807761-08:00,0.0,10.732188,10732.188 +9230,2025-03-08T03:29:18.523770-08:00,0.0,10.716009,10716.009 +9231,2025-03-08T03:29:29.254702-08:00,0.0,10.730932,10730.932 +9232,2025-03-08T03:29:39.967573-08:00,0.0,10.712871,10712.871 +9233,2025-03-08T03:29:50.699880-08:00,0.0,10.732307,10732.307 +9234,2025-03-08T03:30:01.419571-08:00,0.0,10.719691,10719.691 +9235,2025-03-08T03:30:12.139647-08:00,0.0,10.720076,10720.076 +9236,2025-03-08T03:30:22.870618-08:00,0.0,10.730971,10730.971 +9237,2025-03-08T03:30:33.595571-08:00,0.0,10.724953,10724.953 +9238,2025-03-08T03:30:44.315858-08:00,0.0,10.720287,10720.287 +9239,2025-03-08T03:30:55.042585-08:00,0.0,10.726727,10726.727 +9240,2025-03-08T03:31:05.763730-08:00,0.0,10.721145,10721.145 +9241,2025-03-08T03:31:16.481575-08:00,0.0,10.717845,10717.845 +9242,2025-03-08T03:31:27.214748-08:00,0.0,10.733173,10733.173 +9243,2025-03-08T03:31:37.933949-08:00,0.0,10.719201,10719.201 +9244,2025-03-08T03:31:48.658746-08:00,0.0,10.724797,10724.797 +9245,2025-03-08T03:31:59.379573-08:00,0.0,10.720827,10720.827 +9246,2025-03-08T03:32:10.105986-08:00,0.0,10.726413,10726.413 +9247,2025-03-08T03:32:20.830632-08:00,0.0,10.724646,10724.646 +9248,2025-03-08T03:32:31.555571-08:00,0.0,10.724939,10724.939 +9249,2025-03-08T03:32:42.278832-08:00,0.0,10.723261,10723.261 +9250,2025-03-08T03:32:52.998871-08:00,0.0,10.720039,10720.039 +9251,2025-03-08T03:33:03.722383-08:00,0.0,10.723512,10723.512 +9252,2025-03-08T03:33:14.441576-08:00,0.0,10.719193,10719.193 +9253,2025-03-08T03:33:25.171069-08:00,0.0,10.729493,10729.493 +9254,2025-03-08T03:33:35.898122-08:00,0.0,10.727053,10727.053 +9255,2025-03-08T03:33:46.614750-08:00,0.0,10.716628,10716.628 +9256,2025-03-08T03:33:57.335574-08:00,0.0,10.720824,10720.824 +9257,2025-03-08T03:34:08.066041-08:00,0.0,10.730467,10730.467 +9258,2025-03-08T03:34:18.781572-08:00,0.0,10.715531,10715.531 +9259,2025-03-08T03:34:29.504750-08:00,0.0,10.723178,10723.178 +9260,2025-03-08T03:34:40.220646-08:00,0.0,10.715896,10715.896 +9261,2025-03-08T03:34:50.949800-08:00,0.0,10.729154,10729.154 +9262,2025-03-08T03:35:01.660637-08:00,0.0,10.710837,10710.837 +9263,2025-03-08T03:35:12.389754-08:00,0.0,10.729117,10729.117 +9264,2025-03-08T03:35:23.111782-08:00,0.0,10.722028,10722.028 +9265,2025-03-08T03:35:33.830754-08:00,0.0,10.718972,10718.972 +9266,2025-03-08T03:35:44.552576-08:00,0.0,10.721822,10721.822 +9267,2025-03-08T03:35:55.269571-08:00,0.0,10.716995,10716.995 +9268,2025-03-08T03:36:05.997783-08:00,0.0,10.728212,10728.212 +9269,2025-03-08T03:36:16.708811-08:00,0.0,10.711028,10711.028 +9270,2025-03-08T03:36:27.435575-08:00,0.0,10.726764,10726.764 +9271,2025-03-08T03:36:38.152571-08:00,0.0,10.716996,10716.996 +9272,2025-03-08T03:36:48.870572-08:00,0.0,10.718001,10718.001 +9273,2025-03-08T03:36:59.596595-08:00,0.0,10.726023,10726.023 +9274,2025-03-08T03:37:10.314762-08:00,0.0,10.718167,10718.167 +9275,2025-03-08T03:37:21.034576-08:00,0.0,10.719814,10719.814 +9276,2025-03-08T03:37:31.755580-08:00,0.0,10.721004,10721.004 +9277,2025-03-08T03:37:42.475025-08:00,0.0,10.719445,10719.445 +9278,2025-03-08T03:37:53.193749-08:00,0.0,10.718724,10718.724 +9279,2025-03-08T03:38:03.910567-08:00,0.0,10.716818,10716.818 +9280,2025-03-08T03:38:14.638799-08:00,0.0,10.728232,10728.232 +9281,2025-03-08T03:38:25.356779-08:00,0.0,10.71798,10717.98 +9282,2025-03-08T03:38:36.078761-08:00,0.0,10.721982,10721.982 +9283,2025-03-08T03:38:46.792571-08:00,0.0,10.71381,10713.81 +9284,2025-03-08T03:38:57.511597-08:00,0.0,10.719026,10719.026 +9285,2025-03-08T03:39:08.230761-08:00,0.0,10.719164,10719.164 +9286,2025-03-08T03:39:18.961922-08:00,0.0,10.731161,10731.161 +9287,2025-03-08T03:39:29.681574-08:00,0.0,10.719652,10719.652 +9288,2025-03-08T03:39:40.397574-08:00,0.0,10.716,10716.0 +9289,2025-03-08T03:39:51.122984-08:00,0.0,10.72541,10725.41 +9290,2025-03-08T03:40:01.844733-08:00,0.0,10.721749,10721.749 +9291,2025-03-08T03:40:12.561574-08:00,0.0,10.716841,10716.841 +9292,2025-03-08T03:40:23.284650-08:00,0.0,10.723076,10723.076 +9293,2025-03-08T03:40:34.008963-08:00,0.0,10.724313,10724.313 +9294,2025-03-08T03:40:44.730578-08:00,0.0,10.721615,10721.615 +9295,2025-03-08T03:40:55.453574-08:00,0.0,10.722996,10722.996 +9296,2025-03-08T03:41:06.179440-08:00,0.0,10.725866,10725.866 +9297,2025-03-08T03:41:16.904906-08:00,0.0,10.725466,10725.466 +9298,2025-03-08T03:41:27.631780-08:00,0.0,10.726874,10726.874 +9299,2025-03-08T03:41:38.345574-08:00,0.0,10.713794,10713.794 +9300,2025-03-08T03:41:49.075948-08:00,0.0,10.730374,10730.374 +9301,2025-03-08T03:41:59.791573-08:00,0.0,10.715625,10715.625 +9302,2025-03-08T03:42:10.514757-08:00,0.0,10.723184,10723.184 +9303,2025-03-08T03:42:21.243574-08:00,0.0,10.728817,10728.817 +9304,2025-03-08T03:42:31.968787-08:00,0.0,10.725213,10725.213 +9305,2025-03-08T03:42:42.696163-08:00,0.0,10.727376,10727.376 +9306,2025-03-08T03:42:53.410827-08:00,0.0,10.714664,10714.664 +9307,2025-03-08T03:43:04.140574-08:00,0.0,10.729747,10729.747 +9308,2025-03-08T03:43:14.857787-08:00,0.0,10.717213,10717.213 +9309,2025-03-08T03:43:25.579568-08:00,0.0,10.721781,10721.781 +9310,2025-03-08T03:43:36.308580-08:00,0.0,10.729012,10729.012 +9311,2025-03-08T03:43:47.030734-08:00,0.0,10.722154,10722.154 +9312,2025-03-08T03:43:57.749784-08:00,0.0,10.71905,10719.05 +9313,2025-03-08T03:44:08.473599-08:00,0.0,10.723815,10723.815 +9314,2025-03-08T03:44:19.191533-08:00,0.0,10.717934,10717.934 +9315,2025-03-08T03:44:29.914619-08:00,0.0,10.723086,10723.086 +9316,2025-03-08T03:44:40.641780-08:00,0.0,10.727161,10727.161 +9317,2025-03-08T03:44:51.365754-08:00,0.0,10.723974,10723.974 +9318,2025-03-08T03:45:02.092574-08:00,0.0,10.72682,10726.82 +9319,2025-03-08T03:45:12.810872-08:00,0.0,10.718298,10718.298 +9320,2025-03-08T03:45:23.529802-08:00,0.0,10.71893,10718.93 +9321,2025-03-08T03:45:34.254803-08:00,0.0,10.725001,10725.001 +9322,2025-03-08T03:45:44.981089-08:00,0.0,10.726286,10726.286 +9323,2025-03-08T03:45:55.706795-08:00,0.0,10.725706,10725.706 +9324,2025-03-08T03:46:06.431598-08:00,0.0,10.724803,10724.803 +9325,2025-03-08T03:46:17.149656-08:00,0.0,10.718058,10718.058 +9326,2025-03-08T03:46:27.868869-08:00,0.0,10.719213,10719.213 +9327,2025-03-08T03:46:38.596754-08:00,0.0,10.727885,10727.885 +9328,2025-03-08T03:46:49.317572-08:00,0.0,10.720818,10720.818 +9329,2025-03-08T03:47:00.038574-08:00,0.0,10.721002,10721.002 +9330,2025-03-08T03:47:10.767710-08:00,0.0,10.729136,10729.136 +9331,2025-03-08T03:47:21.488314-08:00,0.0,10.720604,10720.604 +9332,2025-03-08T03:47:31.696841-08:00,0.0,10.208527,10208.527 +9333,2025-03-08T03:47:32.211741-08:00,0.0,0.5149,514.9 +9334,2025-03-08T03:47:42.934107-08:00,0.0,10.722366,10722.366 +9335,2025-03-08T03:47:53.655594-08:00,0.0,10.721487,10721.487 +9336,2025-03-08T03:48:04.382570-08:00,0.0,10.726976,10726.976 +9337,2025-03-08T03:48:15.111754-08:00,0.0,10.729184,10729.184 +9338,2025-03-08T03:48:25.830730-08:00,0.0,10.718976,10718.976 +9339,2025-03-08T03:48:36.551766-08:00,0.0,10.721036,10721.036 +9340,2025-03-08T03:48:47.270775-08:00,0.0,10.719009,10719.009 +9341,2025-03-08T03:48:57.998804-08:00,0.0,10.728029,10728.029 +9342,2025-03-08T03:49:08.717620-08:00,0.0,10.718816,10718.816 +9343,2025-03-08T03:49:19.444939-08:00,0.0,10.727319,10727.319 +9344,2025-03-08T03:49:30.157779-08:00,0.0,10.71284,10712.84 +9345,2025-03-08T03:49:40.886749-08:00,0.0,10.72897,10728.97 +9346,2025-03-08T03:49:51.599574-08:00,0.0,10.712825,10712.825 +9347,2025-03-08T03:50:02.328769-08:00,0.0,10.729195,10729.195 +9348,2025-03-08T03:50:13.047382-08:00,0.0,10.718613,10718.613 +9349,2025-03-08T03:50:23.769761-08:00,0.0,10.722379,10722.379 +9350,2025-03-08T03:50:34.482637-08:00,0.0,10.712876,10712.876 +9351,2025-03-08T03:50:45.204706-08:00,0.0,10.722069,10722.069 +9352,2025-03-08T03:50:55.930612-08:00,0.0,10.725906,10725.906 +9353,2025-03-08T03:51:06.655758-08:00,0.0,10.725146,10725.146 +9354,2025-03-08T03:51:17.375573-08:00,0.0,10.719815,10719.815 +9355,2025-03-08T03:51:28.096157-08:00,0.0,10.720584,10720.584 +9356,2025-03-08T03:51:38.820676-08:00,0.0,10.724519,10724.519 +9357,2025-03-08T03:51:49.540832-08:00,0.0,10.720156,10720.156 +9358,2025-03-08T03:52:00.271998-08:00,0.0,10.731166,10731.166 +9359,2025-03-08T03:52:10.995637-08:00,0.0,10.723639,10723.639 +9360,2025-03-08T03:52:21.733000-08:00,0.0,10.737363,10737.363 +9361,2025-03-08T03:52:32.452041-08:00,0.0,10.719041,10719.041 +9362,2025-03-08T03:52:43.168065-08:00,0.0,10.716024,10716.024 +9363,2025-03-08T03:52:53.897102-08:00,0.0,10.729037,10729.037 +9364,2025-03-08T03:53:04.610949-08:00,0.0,10.713847,10713.847 +9365,2025-03-08T03:53:15.339162-08:00,0.0,10.728213,10728.213 +9366,2025-03-08T03:53:26.061153-08:00,0.0,10.721991,10721.991 +9367,2025-03-08T03:53:36.778125-08:00,0.0,10.716972,10716.972 +9368,2025-03-08T03:53:47.505090-08:00,0.0,10.726965,10726.965 +9369,2025-03-08T03:53:58.223118-08:00,0.0,10.718028,10718.028 +9370,2025-03-08T03:54:08.938203-08:00,0.0,10.715085,10715.085 +9371,2025-03-08T03:54:19.666131-08:00,0.0,10.727928,10727.928 +9372,2025-03-08T03:54:30.385945-08:00,0.0,10.719814,10719.814 +9373,2025-03-08T03:54:41.119374-08:00,0.0,10.733429,10733.429 +9374,2025-03-08T03:54:51.837939-08:00,0.0,10.718565,10718.565 +9375,2025-03-08T03:55:02.561955-08:00,0.0,10.724016,10724.016 +9376,2025-03-08T03:55:13.279943-08:00,0.0,10.717988,10717.988 +9377,2025-03-08T03:55:24.010116-08:00,0.0,10.730173,10730.173 +9378,2025-03-08T03:55:34.726115-08:00,0.0,10.715999,10715.999 +9379,2025-03-08T03:55:45.451943-08:00,0.0,10.725828,10725.828 +9380,2025-03-08T03:55:56.180526-08:00,0.0,10.728583,10728.583 +9381,2025-03-08T03:56:06.901041-08:00,0.0,10.720515,10720.515 +9382,2025-03-08T03:56:17.629804-08:00,0.0,10.728763,10728.763 +9383,2025-03-08T03:56:28.341942-08:00,0.0,10.712138,10712.138 +9384,2025-03-08T03:56:39.064943-08:00,0.0,10.723001,10723.001 +9385,2025-03-08T03:56:49.789050-08:00,0.0,10.724107,10724.107 +9386,2025-03-08T03:57:00.513008-08:00,0.0,10.723958,10723.958 +9387,2025-03-08T03:57:11.237067-08:00,0.0,10.724059,10724.059 +9388,2025-03-08T03:57:21.958223-08:00,0.0,10.721156,10721.156 +9389,2025-03-08T03:57:32.684942-08:00,0.0,10.726719,10726.719 +9390,2025-03-08T03:57:43.403114-08:00,0.0,10.718172,10718.172 +9391,2025-03-08T03:57:54.123019-08:00,0.0,10.719905,10719.905 +9392,2025-03-08T03:58:04.849346-08:00,0.0,10.726327,10726.327 +9393,2025-03-08T03:58:15.571213-08:00,0.0,10.721867,10721.867 +9394,2025-03-08T03:58:26.292140-08:00,0.0,10.720927,10720.927 +9395,2025-03-08T03:58:37.013942-08:00,0.0,10.721802,10721.802 +9396,2025-03-08T03:58:47.733887-08:00,0.0,10.719945,10719.945 +9397,2025-03-08T03:58:58.462941-08:00,0.0,10.729054,10729.054 +9398,2025-03-08T03:59:09.184119-08:00,0.0,10.721178,10721.178 +9399,2025-03-08T03:59:19.907147-08:00,0.0,10.723028,10723.028 +9400,2025-03-08T03:59:30.629156-08:00,0.0,10.722009,10722.009 +9401,2025-03-08T03:59:41.355400-08:00,0.0,10.726244,10726.244 +9402,2025-03-08T03:59:52.073941-08:00,0.0,10.718541,10718.541 +9403,2025-03-08T04:00:02.794940-08:00,0.0,10.720999,10720.999 +9404,2025-03-08T04:00:13.512355-08:00,0.0,10.717415,10717.415 +9405,2025-03-08T04:00:24.234147-08:00,0.0,10.721792,10721.792 +9406,2025-03-08T04:00:34.960134-08:00,0.0,10.725987,10725.987 +9407,2025-03-08T04:00:45.680940-08:00,0.0,10.720806,10720.806 +9408,2025-03-08T04:00:56.407958-08:00,0.0,10.727018,10727.018 +9409,2025-03-08T04:01:07.135937-08:00,0.0,10.727979,10727.979 +9410,2025-03-08T04:01:17.858158-08:00,0.0,10.722221,10722.221 +9411,2025-03-08T04:01:28.581943-08:00,0.0,10.723785,10723.785 +9412,2025-03-08T04:01:39.305937-08:00,0.0,10.723994,10723.994 +9413,2025-03-08T04:01:50.029078-08:00,0.0,10.723141,10723.141 +9414,2025-03-08T04:02:00.753945-08:00,0.0,10.724867,10724.867 +9415,2025-03-08T04:02:11.486186-08:00,0.0,10.732241,10732.241 +9416,2025-03-08T04:02:22.205106-08:00,0.0,10.71892,10718.92 +9417,2025-03-08T04:02:32.928310-08:00,0.0,10.723204,10723.204 +9418,2025-03-08T04:02:43.659087-08:00,0.0,10.730777,10730.777 +9419,2025-03-08T04:02:54.383115-08:00,0.0,10.724028,10724.028 +9420,2025-03-08T04:03:05.107210-08:00,0.0,10.724095,10724.095 +9421,2025-03-08T04:03:15.832944-08:00,0.0,10.725734,10725.734 +9422,2025-03-08T04:03:26.551720-08:00,0.0,10.718776,10718.776 +9423,2025-03-08T04:03:37.273203-08:00,0.0,10.721483,10721.483 +9424,2025-03-08T04:03:47.997247-08:00,0.0,10.724044,10724.044 +9425,2025-03-08T04:03:58.714973-08:00,0.0,10.717726,10717.726 +9426,2025-03-08T04:04:09.433308-08:00,0.0,10.718335,10718.335 +9427,2025-03-08T04:04:20.157071-08:00,0.0,10.723763,10723.763 +9428,2025-03-08T04:04:30.870940-08:00,0.0,10.713869,10713.869 +9429,2025-03-08T04:04:41.593946-08:00,0.0,10.723006,10723.006 +9430,2025-03-08T04:04:52.316174-08:00,0.0,10.722228,10722.228 +9431,2025-03-08T04:05:03.031130-08:00,0.0,10.714956,10714.956 +9432,2025-03-08T04:05:13.751943-08:00,0.0,10.720813,10720.813 +9433,2025-03-08T04:05:24.479147-08:00,0.0,10.727204,10727.204 +9434,2025-03-08T04:05:35.196125-08:00,0.0,10.716978,10716.978 +9435,2025-03-08T04:05:45.913171-08:00,0.0,10.717046,10717.046 +9436,2025-03-08T04:05:56.631953-08:00,0.0,10.718782,10718.782 +9437,2025-03-08T04:06:07.360330-08:00,0.0,10.728377,10728.377 +9438,2025-03-08T04:06:18.075942-08:00,0.0,10.715612,10715.612 +9439,2025-03-08T04:06:28.798949-08:00,0.0,10.723007,10723.007 +9440,2025-03-08T04:06:39.518129-08:00,0.0,10.71918,10719.18 +9441,2025-03-08T04:06:50.233182-08:00,0.0,10.715053,10715.053 +9442,2025-03-08T04:07:00.962133-08:00,0.0,10.728951,10728.951 +9443,2025-03-08T04:07:11.676053-08:00,0.0,10.71392,10713.92 +9444,2025-03-08T04:07:22.399943-08:00,0.0,10.72389,10723.89 +9445,2025-03-08T04:07:33.121372-08:00,0.0,10.721429,10721.429 +9446,2025-03-08T04:07:43.845089-08:00,0.0,10.723717,10723.717 +9447,2025-03-08T04:07:54.569941-08:00,0.0,10.724852,10724.852 +9448,2025-03-08T04:08:05.295150-08:00,0.0,10.725209,10725.209 +9449,2025-03-08T04:08:16.017432-08:00,0.0,10.722282,10722.282 +9450,2025-03-08T04:08:26.734972-08:00,0.0,10.71754,10717.54 +9451,2025-03-08T04:08:37.456942-08:00,0.0,10.72197,10721.97 +9452,2025-03-08T04:08:48.175159-08:00,0.0,10.718217,10718.217 +9453,2025-03-08T04:08:58.891940-08:00,0.0,10.716781,10716.781 +9454,2025-03-08T04:09:09.620033-08:00,0.0,10.728093,10728.093 +9455,2025-03-08T04:09:20.336943-08:00,0.0,10.71691,10716.91 +9456,2025-03-08T04:09:31.055942-08:00,0.0,10.718999,10718.999 +9457,2025-03-08T04:09:41.771149-08:00,0.0,10.715207,10715.207 +9458,2025-03-08T04:09:52.490125-08:00,0.0,10.718976,10718.976 +9459,2025-03-08T04:10:03.219942-08:00,0.0,10.729817,10729.817 +9460,2025-03-08T04:10:13.938108-08:00,0.0,10.718166,10718.166 +9461,2025-03-08T04:10:24.652149-08:00,0.0,10.714041,10714.041 +9462,2025-03-08T04:10:35.377142-08:00,0.0,10.724993,10724.993 +9463,2025-03-08T04:10:46.090950-08:00,0.0,10.713808,10713.808 +9464,2025-03-08T04:10:56.811060-08:00,0.0,10.72011,10720.11 +9465,2025-03-08T04:11:07.537967-08:00,0.0,10.726907,10726.907 +9466,2025-03-08T04:11:18.246937-08:00,0.0,10.70897,10708.97 +9467,2025-03-08T04:11:28.968994-08:00,0.0,10.722057,10722.057 +9468,2025-03-08T04:11:39.698963-08:00,0.0,10.729969,10729.969 +9469,2025-03-08T04:11:50.417321-08:00,0.0,10.718358,10718.358 +9470,2025-03-08T04:12:01.135941-08:00,0.0,10.71862,10718.62 +9471,2025-03-08T04:12:11.860942-08:00,0.0,10.725001,10725.001 +9472,2025-03-08T04:12:22.586962-08:00,0.0,10.72602,10726.02 +9473,2025-03-08T04:12:33.307145-08:00,0.0,10.720183,10720.183 +9474,2025-03-08T04:12:44.026006-08:00,0.0,10.718861,10718.861 +9475,2025-03-08T04:12:54.750692-08:00,0.0,10.724686,10724.686 +9476,2025-03-08T04:13:05.463944-08:00,0.0,10.713252,10713.252 +9477,2025-03-08T04:13:16.193293-08:00,0.0,10.729349,10729.349 +9478,2025-03-08T04:13:26.908965-08:00,0.0,10.715672,10715.672 +9479,2025-03-08T04:13:37.634943-08:00,0.0,10.725978,10725.978 +9480,2025-03-08T04:13:48.347231-08:00,0.0,10.712288,10712.288 +9481,2025-03-08T04:13:59.073667-08:00,0.0,10.726436,10726.436 +9482,2025-03-08T04:14:09.795948-08:00,0.0,10.722281,10722.281 +9483,2025-03-08T04:14:20.511136-08:00,0.0,10.715188,10715.188 +9484,2025-03-08T04:14:31.238974-08:00,0.0,10.727838,10727.838 +9485,2025-03-08T04:14:41.955120-08:00,0.0,10.716146,10716.146 +9486,2025-03-08T04:14:52.672943-08:00,0.0,10.717823,10717.823 +9487,2025-03-08T04:15:03.405025-08:00,0.0,10.732082,10732.082 +9488,2025-03-08T04:15:14.129942-08:00,0.0,10.724917,10724.917 +9489,2025-03-08T04:15:24.844127-08:00,0.0,10.714185,10714.185 +9490,2025-03-08T04:15:35.571146-08:00,0.0,10.727019,10727.019 +9491,2025-03-08T04:15:46.285141-08:00,0.0,10.713995,10713.995 +9492,2025-03-08T04:15:57.004142-08:00,0.0,10.719001,10719.001 +9493,2025-03-08T04:16:07.729108-08:00,0.0,10.724966,10724.966 +9494,2025-03-08T04:16:18.445149-08:00,0.0,10.716041,10716.041 +9495,2025-03-08T04:16:29.172143-08:00,0.0,10.726994,10726.994 +9496,2025-03-08T04:16:39.886945-08:00,0.0,10.714802,10714.802 +9497,2025-03-08T04:16:50.610674-08:00,0.0,10.723729,10723.729 +9498,2025-03-08T04:17:01.331936-08:00,0.0,10.721262,10721.262 +9499,2025-03-08T04:17:12.051968-08:00,0.0,10.720032,10720.032 +9500,2025-03-08T04:17:22.778008-08:00,0.0,10.72604,10726.04 +9501,2025-03-08T04:17:33.492954-08:00,0.0,10.714946,10714.946 +9502,2025-03-08T04:17:44.210275-08:00,0.0,10.717321,10717.321 +9503,2025-03-08T04:17:54.938968-08:00,0.0,10.728693,10728.693 +9504,2025-03-08T04:18:05.653385-08:00,0.0,10.714417,10714.417 +9505,2025-03-08T04:18:16.381149-08:00,0.0,10.727764,10727.764 +9506,2025-03-08T04:18:27.101969-08:00,0.0,10.72082,10720.82 +9507,2025-03-08T04:18:37.818014-08:00,0.0,10.716045,10716.045 +9508,2025-03-08T04:18:48.547031-08:00,0.0,10.729017,10729.017 +9509,2025-03-08T04:18:59.259317-08:00,0.0,10.712286,10712.286 +9510,2025-03-08T04:19:09.981024-08:00,0.0,10.721707,10721.707 +9511,2025-03-08T04:19:20.712162-08:00,0.0,10.731138,10731.138 +9512,2025-03-08T04:19:31.425150-08:00,0.0,10.712988,10712.988 +9513,2025-03-08T04:19:42.146149-08:00,0.0,10.720999,10720.999 +9514,2025-03-08T04:19:52.877009-08:00,0.0,10.73086,10730.86 +9515,2025-03-08T04:20:03.600965-08:00,0.0,10.723956,10723.956 +9516,2025-03-08T04:20:14.316159-08:00,0.0,10.715194,10715.194 +9517,2025-03-08T04:20:25.040135-08:00,0.0,10.723976,10723.976 +9518,2025-03-08T04:20:35.760945-08:00,0.0,10.72081,10720.81 +9519,2025-03-08T04:20:46.494158-08:00,0.0,10.733213,10733.213 +9520,2025-03-08T04:20:57.214283-08:00,0.0,10.720125,10720.125 +9521,2025-03-08T04:21:07.933101-08:00,0.0,10.718818,10718.818 +9522,2025-03-08T04:21:18.659013-08:00,0.0,10.725912,10725.912 +9523,2025-03-08T04:21:29.382362-08:00,0.0,10.723349,10723.349 +9524,2025-03-08T04:21:40.109011-08:00,0.0,10.726649,10726.649 +9525,2025-03-08T04:21:50.831064-08:00,0.0,10.722053,10722.053 +9526,2025-03-08T04:22:01.545942-08:00,0.0,10.714878,10714.878 +9527,2025-03-08T04:22:12.268934-08:00,0.0,10.722992,10722.992 +9528,2025-03-08T04:22:22.986313-08:00,0.0,10.717379,10717.379 +9529,2025-03-08T04:22:33.706941-08:00,0.0,10.720628,10720.628 +9530,2025-03-08T04:22:44.425943-08:00,0.0,10.719002,10719.002 +9531,2025-03-08T04:22:55.154654-08:00,0.0,10.728711,10728.711 +9532,2025-03-08T04:23:05.876943-08:00,0.0,10.722289,10722.289 +9533,2025-03-08T04:23:16.593968-08:00,0.0,10.717025,10717.025 +9534,2025-03-08T04:23:27.324942-08:00,0.0,10.730974,10730.974 +9535,2025-03-08T04:23:38.038261-08:00,0.0,10.713319,10713.319 +9536,2025-03-08T04:23:48.763019-08:00,0.0,10.724758,10724.758 +9537,2025-03-08T04:23:59.486878-08:00,0.0,10.723859,10723.859 +9538,2025-03-08T04:24:10.200940-08:00,0.0,10.714062,10714.062 +9539,2025-03-08T04:24:20.929092-08:00,0.0,10.728152,10728.152 +9540,2025-03-08T04:24:31.652942-08:00,0.0,10.72385,10723.85 +9541,2025-03-08T04:24:42.373475-08:00,0.0,10.720533,10720.533 +9542,2025-03-08T04:24:53.088968-08:00,0.0,10.715493,10715.493 +9543,2025-03-08T04:25:03.819119-08:00,0.0,10.730151,10730.151 +9544,2025-03-08T04:25:14.540732-08:00,0.0,10.721613,10721.613 +9545,2025-03-08T04:25:25.262115-08:00,0.0,10.721383,10721.383 +9546,2025-03-08T04:25:35.986008-08:00,0.0,10.723893,10723.893 +9547,2025-03-08T04:25:46.708113-08:00,0.0,10.722105,10722.105 +9548,2025-03-08T04:25:57.428014-08:00,0.0,10.719901,10719.901 +9549,2025-03-08T04:26:08.154337-08:00,0.0,10.726323,10726.323 +9550,2025-03-08T04:26:18.872012-08:00,0.0,10.717675,10717.675 +9551,2025-03-08T04:26:29.599101-08:00,0.0,10.727089,10727.089 +9552,2025-03-08T04:26:40.317310-08:00,0.0,10.718209,10718.209 +9553,2025-03-08T04:26:51.038321-08:00,0.0,10.721011,10721.011 +9554,2025-03-08T04:27:01.764940-08:00,0.0,10.726619,10726.619 +9555,2025-03-08T04:27:12.478820-08:00,0.0,10.71388,10713.88 +9556,2025-03-08T04:27:23.207117-08:00,0.0,10.728297,10728.297 +9557,2025-03-08T04:27:33.921639-08:00,0.0,10.714522,10714.522 +9558,2025-03-08T04:27:44.634941-08:00,0.0,10.713302,10713.302 +9559,2025-03-08T04:27:55.354940-08:00,0.0,10.719999,10719.999 +9560,2025-03-08T04:28:06.077148-08:00,0.0,10.722208,10722.208 +9561,2025-03-08T04:28:16.792018-08:00,0.0,10.71487,10714.87 +9562,2025-03-08T04:28:27.509454-08:00,0.0,10.717436,10717.436 +9563,2025-03-08T04:28:38.231189-08:00,0.0,10.721735,10721.735 +9564,2025-03-08T04:28:48.955123-08:00,0.0,10.723934,10723.934 +9565,2025-03-08T04:28:59.670009-08:00,0.0,10.714886,10714.886 +9566,2025-03-08T04:29:10.386180-08:00,0.0,10.716171,10716.171 +9567,2025-03-08T04:29:21.110940-08:00,0.0,10.72476,10724.76 +9568,2025-03-08T04:29:31.828940-08:00,0.0,10.718,10718.0 +9569,2025-03-08T04:29:42.543943-08:00,0.0,10.715003,10715.003 +9570,2025-03-08T04:29:53.261160-08:00,0.0,10.717217,10717.217 +9571,2025-03-08T04:30:03.988302-08:00,0.0,10.727142,10727.142 +9572,2025-03-08T04:30:14.695946-08:00,0.0,10.707644,10707.644 +9573,2025-03-08T04:30:25.420538-08:00,0.0,10.724592,10724.592 +9574,2025-03-08T04:30:36.140000-08:00,0.0,10.719462,10719.462 +9575,2025-03-08T04:30:46.859941-08:00,0.0,10.719941,10719.941 +9576,2025-03-08T04:30:57.578104-08:00,0.0,10.718163,10718.163 +9577,2025-03-08T04:31:08.292009-08:00,0.0,10.713905,10713.905 +9578,2025-03-08T04:31:19.017403-08:00,0.0,10.725394,10725.394 +9579,2025-03-08T04:31:29.739073-08:00,0.0,10.72167,10721.67 +9580,2025-03-08T04:31:40.452029-08:00,0.0,10.712956,10712.956 +9581,2025-03-08T04:31:51.170012-08:00,0.0,10.717983,10717.983 +9582,2025-03-08T04:32:01.890583-08:00,0.0,10.720571,10720.571 +9583,2025-03-08T04:32:12.611143-08:00,0.0,10.72056,10720.56 +9584,2025-03-08T04:32:23.333811-08:00,0.0,10.722668,10722.668 +9585,2025-03-08T04:32:34.047119-08:00,0.0,10.713308,10713.308 +9586,2025-03-08T04:32:44.769949-08:00,0.0,10.72283,10722.83 +9587,2025-03-08T04:32:55.479069-08:00,0.0,10.70912,10709.12 +9588,2025-03-08T04:33:06.203936-08:00,0.0,10.724867,10724.867 +9589,2025-03-08T04:33:16.920129-08:00,0.0,10.716193,10716.193 +9590,2025-03-08T04:33:27.636943-08:00,0.0,10.716814,10716.814 +9591,2025-03-08T04:33:38.354035-08:00,0.0,10.717092,10717.092 +9592,2025-03-08T04:33:49.072369-08:00,0.0,10.718334,10718.334 +9593,2025-03-08T04:33:59.796940-08:00,0.0,10.724571,10724.571 +9594,2025-03-08T04:34:10.514944-08:00,0.0,10.718004,10718.004 +9595,2025-03-08T04:34:21.234943-08:00,0.0,10.719999,10719.999 +9596,2025-03-08T04:34:31.950343-08:00,0.0,10.7154,10715.4 +9597,2025-03-08T04:34:42.665944-08:00,0.0,10.715601,10715.601 +9598,2025-03-08T04:34:53.392116-08:00,0.0,10.726172,10726.172 +9599,2025-03-08T04:35:04.104940-08:00,0.0,10.712824,10712.824 +9600,2025-03-08T04:35:14.823942-08:00,0.0,10.719002,10719.002 +9601,2025-03-08T04:35:25.542143-08:00,0.0,10.718201,10718.201 +9602,2025-03-08T04:35:36.272029-08:00,0.0,10.729886,10729.886 +9603,2025-03-08T04:35:46.983158-08:00,0.0,10.711129,10711.129 +9604,2025-03-08T04:35:57.706943-08:00,0.0,10.723785,10723.785 +9605,2025-03-08T04:36:08.433158-08:00,0.0,10.726215,10726.215 +9606,2025-03-08T04:36:19.152006-08:00,0.0,10.718848,10718.848 +9607,2025-03-08T04:36:29.872142-08:00,0.0,10.720136,10720.136 +9608,2025-03-08T04:36:40.591941-08:00,0.0,10.719799,10719.799 +9609,2025-03-08T04:36:51.309165-08:00,0.0,10.717224,10717.224 +9610,2025-03-08T04:37:02.026944-08:00,0.0,10.717779,10717.779 +9611,2025-03-08T04:37:12.757769-08:00,0.0,10.730825,10730.825 +9612,2025-03-08T04:37:23.474945-08:00,0.0,10.717176,10717.176 +9613,2025-03-08T04:37:34.187045-08:00,0.0,10.7121,10712.1 +9614,2025-03-08T04:37:44.911945-08:00,0.0,10.7249,10724.9 +9615,2025-03-08T04:37:55.627226-08:00,0.0,10.715281,10715.281 +9616,2025-03-08T04:38:06.351940-08:00,0.0,10.724714,10724.714 +9617,2025-03-08T04:38:17.072063-08:00,0.0,10.720123,10720.123 +9618,2025-03-08T04:38:27.788140-08:00,0.0,10.716077,10716.077 +9619,2025-03-08T04:38:38.505213-08:00,0.0,10.717073,10717.073 +9620,2025-03-08T04:38:49.219138-08:00,0.0,10.713925,10713.925 +9621,2025-03-08T04:38:59.938390-08:00,0.0,10.719252,10719.252 +9622,2025-03-08T04:39:10.664248-08:00,0.0,10.725858,10725.858 +9623,2025-03-08T04:39:21.378943-08:00,0.0,10.714695,10714.695 +9624,2025-03-08T04:39:32.107120-08:00,0.0,10.728177,10728.177 +9625,2025-03-08T04:39:42.830165-08:00,0.0,10.723045,10723.045 +9626,2025-03-08T04:39:53.551118-08:00,0.0,10.720953,10720.953 +9627,2025-03-08T04:40:04.270008-08:00,0.0,10.71889,10718.89 +9628,2025-03-08T04:40:14.994139-08:00,0.0,10.724131,10724.131 +9629,2025-03-08T04:40:25.711021-08:00,0.0,10.716882,10716.882 +9630,2025-03-08T04:40:36.432602-08:00,0.0,10.721581,10721.581 +9631,2025-03-08T04:40:47.148941-08:00,0.0,10.716339,10716.339 +9632,2025-03-08T04:40:57.863978-08:00,0.0,10.715037,10715.037 +9633,2025-03-08T04:41:08.593125-08:00,0.0,10.729147,10729.147 +9634,2025-03-08T04:41:19.310943-08:00,0.0,10.717818,10717.818 +9635,2025-03-08T04:41:30.031127-08:00,0.0,10.720184,10720.184 +9636,2025-03-08T04:41:40.747976-08:00,0.0,10.716849,10716.849 +9637,2025-03-08T04:41:51.473154-08:00,0.0,10.725178,10725.178 +9638,2025-03-08T04:42:02.197017-08:00,0.0,10.723863,10723.863 +9639,2025-03-08T04:42:12.914302-08:00,0.0,10.717285,10717.285 +9640,2025-03-08T04:42:23.635961-08:00,0.0,10.721659,10721.659 +9641,2025-03-08T04:42:34.352128-08:00,0.0,10.716167,10716.167 +9642,2025-03-08T04:42:45.077943-08:00,0.0,10.725815,10725.815 +9643,2025-03-08T04:42:55.798474-08:00,0.0,10.720531,10720.531 +9644,2025-03-08T04:43:06.505346-08:00,0.0,10.706872,10706.872 +9645,2025-03-08T04:43:17.225059-08:00,0.0,10.719713,10719.713 +9646,2025-03-08T04:43:27.949943-08:00,0.0,10.724884,10724.884 +9647,2025-03-08T04:43:38.668943-08:00,0.0,10.719,10719.0 +9648,2025-03-08T04:43:49.385956-08:00,0.0,10.717013,10717.013 +9649,2025-03-08T04:44:00.106003-08:00,0.0,10.720047,10720.047 +9650,2025-03-08T04:44:10.830944-08:00,0.0,10.724941,10724.941 +9651,2025-03-08T04:44:21.552952-08:00,0.0,10.722008,10722.008 +9652,2025-03-08T04:44:32.270974-08:00,0.0,10.718022,10718.022 +9653,2025-03-08T04:44:42.996098-08:00,0.0,10.725124,10725.124 +9654,2025-03-08T04:44:53.708119-08:00,0.0,10.712021,10712.021 +9655,2025-03-08T04:45:04.436942-08:00,0.0,10.728823,10728.823 +9656,2025-03-08T04:45:15.155334-08:00,0.0,10.718392,10718.392 +9657,2025-03-08T04:45:25.869940-08:00,0.0,10.714606,10714.606 +9658,2025-03-08T04:45:36.587634-08:00,0.0,10.717694,10717.694 +9659,2025-03-08T04:45:47.313126-08:00,0.0,10.725492,10725.492 +9660,2025-03-08T04:45:58.025943-08:00,0.0,10.712817,10712.817 +9661,2025-03-08T04:46:08.752044-08:00,0.0,10.726101,10726.101 +9662,2025-03-08T04:46:19.468941-08:00,0.0,10.716897,10716.897 +9663,2025-03-08T04:46:30.188208-08:00,0.0,10.719267,10719.267 +9664,2025-03-08T04:46:40.918607-08:00,0.0,10.730399,10730.399 +9665,2025-03-08T04:46:51.638936-08:00,0.0,10.720329,10720.329 +9666,2025-03-08T04:47:02.360967-08:00,0.0,10.722031,10722.031 +9667,2025-03-08T04:47:13.084945-08:00,0.0,10.723978,10723.978 +9668,2025-03-08T04:47:23.804140-08:00,0.0,10.719195,10719.195 +9669,2025-03-08T04:47:34.524941-08:00,0.0,10.720801,10720.801 +9670,2025-03-08T04:47:45.240942-08:00,0.0,10.716001,10716.001 +9671,2025-03-08T04:47:55.961563-08:00,0.0,10.720621,10720.621 +9672,2025-03-08T04:48:06.676943-08:00,0.0,10.71538,10715.38 +9673,2025-03-08T04:48:17.402111-08:00,0.0,10.725168,10725.168 +9674,2025-03-08T04:48:28.115944-08:00,0.0,10.713833,10713.833 +9675,2025-03-08T04:48:38.834129-08:00,0.0,10.718185,10718.185 +9676,2025-03-08T04:48:49.557942-08:00,0.0,10.723813,10723.813 +9677,2025-03-08T04:49:00.275224-08:00,0.0,10.717282,10717.282 +9678,2025-03-08T04:49:11.002042-08:00,0.0,10.726818,10726.818 +9679,2025-03-08T04:49:21.714941-08:00,0.0,10.712899,10712.899 +9680,2025-03-08T04:49:32.428104-08:00,0.0,10.713163,10713.163 +9681,2025-03-08T04:49:43.148968-08:00,0.0,10.720864,10720.864 +9682,2025-03-08T04:49:53.867014-08:00,0.0,10.718046,10718.046 +9683,2025-03-08T04:50:04.593019-08:00,0.0,10.726005,10726.005 +9684,2025-03-08T04:50:15.309818-08:00,0.0,10.716799,10716.799 +9685,2025-03-08T04:50:26.030098-08:00,0.0,10.72028,10720.28 +9686,2025-03-08T04:50:36.746275-08:00,0.0,10.716177,10716.177 +9687,2025-03-08T04:50:47.467944-08:00,0.0,10.721669,10721.669 +9688,2025-03-08T04:50:58.191967-08:00,0.0,10.724023,10724.023 +9689,2025-03-08T04:51:08.906120-08:00,0.0,10.714153,10714.153 +9690,2025-03-08T04:51:19.626050-08:00,0.0,10.71993,10719.93 +9691,2025-03-08T04:51:30.345349-08:00,0.0,10.719299,10719.299 +9692,2025-03-08T04:51:41.054937-08:00,0.0,10.709588,10709.588 +9693,2025-03-08T04:51:51.772940-08:00,0.0,10.718003,10718.003 +9694,2025-03-08T04:52:02.496054-08:00,0.0,10.723114,10723.114 +9695,2025-03-08T04:52:13.211111-08:00,0.0,10.715057,10715.057 +9696,2025-03-08T04:52:23.929750-08:00,0.0,10.718639,10718.639 +9697,2025-03-08T04:52:34.649809-08:00,0.0,10.720059,10720.059 +9698,2025-03-08T04:52:45.361884-08:00,0.0,10.712075,10712.075 +9699,2025-03-08T04:52:56.080756-08:00,0.0,10.718872,10718.872 +9700,2025-03-08T04:53:06.800646-08:00,0.0,10.71989,10719.89 +9701,2025-03-08T04:53:17.523573-08:00,0.0,10.722927,10722.927 +9702,2025-03-08T04:53:28.232778-08:00,0.0,10.709205,10709.205 +9703,2025-03-08T04:53:38.956767-08:00,0.0,10.723989,10723.989 +9704,2025-03-08T04:53:49.677575-08:00,0.0,10.720808,10720.808 +9705,2025-03-08T04:54:00.387571-08:00,0.0,10.709996,10709.996 +9706,2025-03-08T04:54:11.106758-08:00,0.0,10.719187,10719.187 +9707,2025-03-08T04:54:21.826779-08:00,0.0,10.720021,10720.021 +9708,2025-03-08T04:54:32.550604-08:00,0.0,10.723825,10723.825 +9709,2025-03-08T04:54:43.264603-08:00,0.0,10.713999,10713.999 +9710,2025-03-08T04:54:53.984829-08:00,0.0,10.720226,10720.226 +9711,2025-03-08T04:55:04.701728-08:00,0.0,10.716899,10716.899 +9712,2025-03-08T04:55:15.415697-08:00,0.0,10.713969,10713.969 +9713,2025-03-08T04:55:26.141658-08:00,0.0,10.725961,10725.961 +9714,2025-03-08T04:55:36.858573-08:00,0.0,10.716915,10716.915 +9715,2025-03-08T04:55:47.577575-08:00,0.0,10.719002,10719.002 +9716,2025-03-08T04:55:58.295644-08:00,0.0,10.718069,10718.069 +9717,2025-03-08T04:56:09.011999-08:00,0.0,10.716355,10716.355 +9718,2025-03-08T04:56:19.728570-08:00,0.0,10.716571,10716.571 +9719,2025-03-08T04:56:30.456669-08:00,0.0,10.728099,10728.099 +9720,2025-03-08T04:56:41.168573-08:00,0.0,10.711904,10711.904 +9721,2025-03-08T04:56:51.889576-08:00,0.0,10.721003,10721.003 +9722,2025-03-08T04:57:02.615570-08:00,0.0,10.725994,10725.994 +9723,2025-03-08T04:57:13.334615-08:00,0.0,10.719045,10719.045 +9724,2025-03-08T04:57:24.050868-08:00,0.0,10.716253,10716.253 +9725,2025-03-08T04:57:34.764613-08:00,0.0,10.713745,10713.745 +9726,2025-03-08T04:57:45.480971-08:00,0.0,10.716358,10716.358 +9727,2025-03-08T04:57:56.197574-08:00,0.0,10.716603,10716.603 +9728,2025-03-08T04:58:06.915570-08:00,0.0,10.717996,10717.996 +9729,2025-03-08T04:58:17.628801-08:00,0.0,10.713231,10713.231 +9730,2025-03-08T04:58:28.349578-08:00,0.0,10.720777,10720.777 +9731,2025-03-08T04:58:39.063753-08:00,0.0,10.714175,10714.175 +9732,2025-03-08T04:58:49.778789-08:00,0.0,10.715036,10715.036 +9733,2025-03-08T04:59:00.504372-08:00,0.0,10.725583,10725.583 +9734,2025-03-08T04:59:11.222577-08:00,0.0,10.718205,10718.205 +9735,2025-03-08T04:59:21.939664-08:00,0.0,10.717087,10717.087 +9736,2025-03-08T04:59:32.662788-08:00,0.0,10.723124,10723.124 +9737,2025-03-08T04:59:43.376570-08:00,0.0,10.713782,10713.782 +9738,2025-03-08T04:59:54.095209-08:00,0.0,10.718639,10718.639 +9739,2025-03-08T05:00:04.811576-08:00,0.0,10.716367,10716.367 +9740,2025-03-08T05:00:15.533763-08:00,0.0,10.722187,10722.187 +9741,2025-03-08T05:00:26.255575-08:00,0.0,10.721812,10721.812 +9742,2025-03-08T05:00:36.972205-08:00,0.0,10.71663,10716.63 +9743,2025-03-08T05:00:47.691575-08:00,0.0,10.71937,10719.37 +9744,2025-03-08T05:00:58.411142-08:00,0.0,10.719567,10719.567 +9745,2025-03-08T05:01:09.128763-08:00,0.0,10.717621,10717.621 +9746,2025-03-08T05:01:19.854569-08:00,0.0,10.725806,10725.806 +9747,2025-03-08T05:01:30.579753-08:00,0.0,10.725184,10725.184 +9748,2025-03-08T05:01:41.298686-08:00,0.0,10.718933,10718.933 +9749,2025-03-08T05:01:52.018939-08:00,0.0,10.720253,10720.253 +9750,2025-03-08T05:02:02.734805-08:00,0.0,10.715866,10715.866 +9751,2025-03-08T05:02:13.460575-08:00,0.0,10.72577,10725.77 +9752,2025-03-08T05:02:24.177642-08:00,0.0,10.717067,10717.067 +9753,2025-03-08T05:02:34.899778-08:00,0.0,10.722136,10722.136 +9754,2025-03-08T05:02:45.618767-08:00,0.0,10.718989,10718.989 +9755,2025-03-08T05:02:56.345735-08:00,0.0,10.726968,10726.968 +9756,2025-03-08T05:03:07.069575-08:00,0.0,10.72384,10723.84 +9757,2025-03-08T05:03:17.782739-08:00,0.0,10.713164,10713.164 +9758,2025-03-08T05:03:28.505782-08:00,0.0,10.723043,10723.043 +9759,2025-03-08T05:03:39.220773-08:00,0.0,10.714991,10714.991 +9760,2025-03-08T05:03:49.944572-08:00,0.0,10.723799,10723.799 +9761,2025-03-08T05:04:00.668760-08:00,0.0,10.724188,10724.188 +9762,2025-03-08T05:04:11.386614-08:00,0.0,10.717854,10717.854 +9763,2025-03-08T05:04:22.099919-08:00,0.0,10.713305,10713.305 +9764,2025-03-08T05:04:32.820806-08:00,0.0,10.720887,10720.887 +9765,2025-03-08T05:04:43.548235-08:00,0.0,10.727429,10727.429 +9766,2025-03-08T05:04:54.261713-08:00,0.0,10.713478,10713.478 +9767,2025-03-08T05:05:04.986717-08:00,0.0,10.725004,10725.004 +9768,2025-03-08T05:05:15.702830-08:00,0.0,10.716113,10716.113 +9769,2025-03-08T05:05:26.425574-08:00,0.0,10.722744,10722.744 +9770,2025-03-08T05:05:37.145577-08:00,0.0,10.720003,10720.003 +9771,2025-03-08T05:05:47.867573-08:00,0.0,10.721996,10721.996 +9772,2025-03-08T05:05:58.581756-08:00,0.0,10.714183,10714.183 +9773,2025-03-08T05:06:09.295573-08:00,0.0,10.713817,10713.817 +9774,2025-03-08T05:06:20.021791-08:00,0.0,10.726218,10726.218 +9775,2025-03-08T05:06:30.738871-08:00,0.0,10.71708,10717.08 +9776,2025-03-08T05:06:41.455779-08:00,0.0,10.716908,10716.908 +9777,2025-03-08T05:06:52.172573-08:00,0.0,10.716794,10716.794 +9778,2025-03-08T05:07:02.890573-08:00,0.0,10.718,10718.0 +9779,2025-03-08T05:07:13.610734-08:00,0.0,10.720161,10720.161 +9780,2025-03-08T05:07:24.328701-08:00,0.0,10.717967,10717.967 +9781,2025-03-08T05:07:35.037774-08:00,0.0,10.709073,10709.073 +9782,2025-03-08T05:07:45.753966-08:00,0.0,10.716192,10716.192 +9783,2025-03-08T05:07:56.478573-08:00,0.0,10.724607,10724.607 +9784,2025-03-08T05:08:07.190826-08:00,0.0,10.712253,10712.253 +9785,2025-03-08T05:08:17.914600-08:00,0.0,10.723774,10723.774 +9786,2025-03-08T05:08:28.631779-08:00,0.0,10.717179,10717.179 +9787,2025-03-08T05:08:39.352573-08:00,0.0,10.720794,10720.794 +9788,2025-03-08T05:08:50.069601-08:00,0.0,10.717028,10717.028 +9789,2025-03-08T05:09:00.780780-08:00,0.0,10.711179,10711.179 +9790,2025-03-08T05:09:11.500576-08:00,0.0,10.719796,10719.796 +9791,2025-03-08T05:09:22.223855-08:00,0.0,10.723279,10723.279 +9792,2025-03-08T05:09:32.937569-08:00,0.0,10.713714,10713.714 +9793,2025-03-08T05:09:43.656484-08:00,0.0,10.718915,10718.915 +9794,2025-03-08T05:09:54.378735-08:00,0.0,10.722251,10722.251 +9795,2025-03-08T05:10:05.087789-08:00,0.0,10.709054,10709.054 +9796,2025-03-08T05:10:15.807424-08:00,0.0,10.719635,10719.635 +9797,2025-03-08T05:10:26.533573-08:00,0.0,10.726149,10726.149 +9798,2025-03-08T05:10:37.248758-08:00,0.0,10.715185,10715.185 +9799,2025-03-08T05:10:47.963790-08:00,0.0,10.715032,10715.032 +9800,2025-03-08T05:10:58.681781-08:00,0.0,10.717991,10717.991 +9801,2025-03-08T05:11:09.395577-08:00,0.0,10.713796,10713.796 +9802,2025-03-08T05:11:20.113573-08:00,0.0,10.717996,10717.996 +9803,2025-03-08T05:11:30.834803-08:00,0.0,10.72123,10721.23 +9804,2025-03-08T05:11:41.556934-08:00,0.0,10.722131,10722.131 +9805,2025-03-08T05:11:52.271950-08:00,0.0,10.715016,10715.016 +9806,2025-03-08T05:12:02.984678-08:00,0.0,10.712728,10712.728 +9807,2025-03-08T05:12:13.706776-08:00,0.0,10.722098,10722.098 +9808,2025-03-08T05:12:24.427602-08:00,0.0,10.720826,10720.826 +9809,2025-03-08T05:12:35.140772-08:00,0.0,10.71317,10713.17 +9810,2025-03-08T05:12:45.855757-08:00,0.0,10.714985,10714.985 +9811,2025-03-08T05:12:56.574573-08:00,0.0,10.718816,10718.816 +9812,2025-03-08T05:13:07.299757-08:00,0.0,10.725184,10725.184 +9813,2025-03-08T05:13:18.009619-08:00,0.0,10.709862,10709.862 +9814,2025-03-08T05:13:28.738691-08:00,0.0,10.729072,10729.072 +9815,2025-03-08T05:13:39.449574-08:00,0.0,10.710883,10710.883 +9816,2025-03-08T05:13:50.172575-08:00,0.0,10.723001,10723.001 +9817,2025-03-08T05:14:00.881765-08:00,0.0,10.70919,10709.19 +9818,2025-03-08T05:14:11.599576-08:00,0.0,10.717811,10717.811 +9819,2025-03-08T05:14:22.314814-08:00,0.0,10.715238,10715.238 +9820,2025-03-08T05:14:33.034301-08:00,0.0,10.719487,10719.487 +9821,2025-03-08T05:14:43.744786-08:00,0.0,10.710485,10710.485 +9822,2025-03-08T05:14:54.465761-08:00,0.0,10.720975,10720.975 +9823,2025-03-08T05:15:05.187034-08:00,0.0,10.721273,10721.273 +9824,2025-03-08T05:15:15.903239-08:00,0.0,10.716205,10716.205 +9825,2025-03-08T05:15:26.626576-08:00,0.0,10.723337,10723.337 +9826,2025-03-08T05:15:37.338784-08:00,0.0,10.712208,10712.208 +9827,2025-03-08T05:15:48.064601-08:00,0.0,10.725817,10725.817 +9828,2025-03-08T05:15:58.792682-08:00,0.0,10.728081,10728.081 +9829,2025-03-08T05:16:09.504341-08:00,0.0,10.711659,10711.659 +9830,2025-03-08T05:16:20.223572-08:00,0.0,10.719231,10719.231 +9831,2025-03-08T05:16:30.945802-08:00,0.0,10.72223,10722.23 +9832,2025-03-08T05:16:41.672637-08:00,0.0,10.726835,10726.835 +9833,2025-03-08T05:16:52.387571-08:00,0.0,10.714934,10714.934 +9834,2025-03-08T05:17:03.110650-08:00,0.0,10.723079,10723.079 +9835,2025-03-08T05:17:13.820772-08:00,0.0,10.710122,10710.122 +9836,2025-03-08T05:17:24.543574-08:00,0.0,10.722802,10722.802 +9837,2025-03-08T05:17:35.265906-08:00,0.0,10.722332,10722.332 +9838,2025-03-08T05:17:45.979576-08:00,0.0,10.71367,10713.67 +9839,2025-03-08T05:17:56.701603-08:00,0.0,10.722027,10722.027 +9840,2025-03-08T05:18:07.419786-08:00,0.0,10.718183,10718.183 +9841,2025-03-08T05:18:18.133787-08:00,0.0,10.714001,10714.001 +9842,2025-03-08T05:18:28.856800-08:00,0.0,10.723013,10723.013 +9843,2025-03-08T05:18:39.565572-08:00,0.0,10.708772,10708.772 +9844,2025-03-08T05:18:50.294792-08:00,0.0,10.72922,10729.22 +9845,2025-03-08T05:19:01.010782-08:00,0.0,10.71599,10715.99 +9846,2025-03-08T05:19:11.729573-08:00,0.0,10.718791,10718.791 +9847,2025-03-08T05:19:22.441568-08:00,0.0,10.711995,10711.995 +9848,2025-03-08T05:19:33.158572-08:00,0.0,10.717004,10717.004 +9849,2025-03-08T05:19:43.883760-08:00,0.0,10.725188,10725.188 +9850,2025-03-08T05:19:54.597575-08:00,0.0,10.713815,10713.815 +9851,2025-03-08T05:20:05.314010-08:00,0.0,10.716435,10716.435 +9852,2025-03-08T05:20:16.034576-08:00,0.0,10.720566,10720.566 +9853,2025-03-08T05:20:26.756573-08:00,0.0,10.721997,10721.997 +9854,2025-03-08T05:20:37.467713-08:00,0.0,10.71114,10711.14 +9855,2025-03-08T05:20:48.180577-08:00,0.0,10.712864,10712.864 +9856,2025-03-08T05:20:58.898850-08:00,0.0,10.718273,10718.273 +9857,2025-03-08T05:21:09.623572-08:00,0.0,10.724722,10724.722 +9858,2025-03-08T05:21:20.331573-08:00,0.0,10.708001,10708.001 +9859,2025-03-08T05:21:31.053753-08:00,0.0,10.72218,10722.18 +9860,2025-03-08T05:21:41.766776-08:00,0.0,10.713023,10713.023 +9861,2025-03-08T05:21:52.486041-08:00,0.0,10.719265,10719.265 +9862,2025-03-08T05:22:03.212606-08:00,0.0,10.726565,10726.565 +9863,2025-03-08T05:22:13.931748-08:00,0.0,10.719142,10719.142 +9864,2025-03-08T05:22:24.644576-08:00,0.0,10.712828,10712.828 +9865,2025-03-08T05:22:35.360775-08:00,0.0,10.716199,10716.199 +9866,2025-03-08T05:22:46.078759-08:00,0.0,10.717984,10717.984 +9867,2025-03-08T05:22:56.796572-08:00,0.0,10.717813,10717.813 +9868,2025-03-08T05:23:07.517764-08:00,0.0,10.721192,10721.192 +9869,2025-03-08T05:23:10.135860-08:00,0.0,2.618096,2618.096 +9870,2025-03-08T05:23:18.233572-08:00,0.0,8.097712,8097.712 +9871,2025-03-08T05:23:28.953300-08:00,0.0,10.719728,10719.728 +9872,2025-03-08T05:23:39.675573-08:00,0.0,10.722273,10722.273 +9873,2025-03-08T05:23:50.392041-08:00,0.0,10.716468,10716.468 +9874,2025-03-08T05:24:01.114587-08:00,0.0,10.722546,10722.546 +9875,2025-03-08T05:24:11.826770-08:00,0.0,10.712183,10712.183 +9876,2025-03-08T05:24:22.548574-08:00,0.0,10.721804,10721.804 +9877,2025-03-08T05:24:33.265641-08:00,0.0,10.717067,10717.067 +9878,2025-03-08T05:24:43.987755-08:00,0.0,10.722114,10722.114 +9879,2025-03-08T05:24:54.704755-08:00,0.0,10.717,10717.0 +9880,2025-03-08T05:25:05.419815-08:00,0.0,10.71506,10715.06 +9881,2025-03-08T05:25:16.138774-08:00,0.0,10.718959,10718.959 +9882,2025-03-08T05:25:26.854572-08:00,0.0,10.715798,10715.798 +9883,2025-03-08T05:25:37.572717-08:00,0.0,10.718145,10718.145 +9884,2025-03-08T05:25:48.290736-08:00,0.0,10.718019,10718.019 +9885,2025-03-08T05:25:59.011748-08:00,0.0,10.721012,10721.012 +9886,2025-03-08T05:26:09.728574-08:00,0.0,10.716826,10716.826 +9887,2025-03-08T05:26:20.446598-08:00,0.0,10.718024,10718.024 +9888,2025-03-08T05:26:31.157262-08:00,0.0,10.710664,10710.664 +9889,2025-03-08T05:26:41.873576-08:00,0.0,10.716314,10716.314 +9890,2025-03-08T05:26:52.585807-08:00,0.0,10.712231,10712.231 +9891,2025-03-08T05:27:03.303780-08:00,0.0,10.717973,10717.973 +9892,2025-03-08T05:27:14.017573-08:00,0.0,10.713793,10713.793 +9893,2025-03-08T05:27:24.739802-08:00,0.0,10.722229,10722.229 +9894,2025-03-08T05:27:35.459575-08:00,0.0,10.719773,10719.773 +9895,2025-03-08T05:27:46.174279-08:00,0.0,10.714704,10714.704 +9896,2025-03-08T05:27:56.894688-08:00,0.0,10.720409,10720.409 +9897,2025-03-08T05:28:07.609569-08:00,0.0,10.714881,10714.881 +9898,2025-03-08T05:28:18.327846-08:00,0.0,10.718277,10718.277 +9899,2025-03-08T05:28:29.038576-08:00,0.0,10.71073,10710.73 +9900,2025-03-08T05:28:39.757160-08:00,0.0,10.718584,10718.584 +9901,2025-03-08T05:28:50.471988-08:00,0.0,10.714828,10714.828 +9902,2025-03-08T05:29:01.200699-08:00,0.0,10.728711,10728.711 +9903,2025-03-08T05:29:11.910644-08:00,0.0,10.709945,10709.945 +9904,2025-03-08T05:29:22.630576-08:00,0.0,10.719932,10719.932 +9905,2025-03-08T05:29:33.342115-08:00,0.0,10.711539,10711.539 +9906,2025-03-08T05:29:44.064574-08:00,0.0,10.722459,10722.459 +9907,2025-03-08T05:29:54.793762-08:00,0.0,10.729188,10729.188 +9908,2025-03-08T05:30:05.509580-08:00,0.0,10.715818,10715.818 +9909,2025-03-08T05:30:16.224576-08:00,0.0,10.714996,10714.996 +9910,2025-03-08T05:30:26.949574-08:00,0.0,10.724998,10724.998 +9911,2025-03-08T05:30:37.672757-08:00,0.0,10.723183,10723.183 +9912,2025-03-08T05:30:48.392604-08:00,0.0,10.719847,10719.847 +9913,2025-03-08T05:30:59.107778-08:00,0.0,10.715174,10715.174 +9914,2025-03-08T05:31:09.825575-08:00,0.0,10.717797,10717.797 +9915,2025-03-08T05:31:20.544575-08:00,0.0,10.719,10719.0 +9916,2025-03-08T05:31:31.265816-08:00,0.0,10.721241,10721.241 +9917,2025-03-08T05:31:41.988843-08:00,0.0,10.723027,10723.027 +9918,2025-03-08T05:31:52.705742-08:00,0.0,10.716899,10716.899 +9919,2025-03-08T05:32:03.423576-08:00,0.0,10.717834,10717.834 +9920,2025-03-08T05:32:14.143282-08:00,0.0,10.719706,10719.706 +9921,2025-03-08T05:32:24.866317-08:00,0.0,10.723035,10723.035 +9922,2025-03-08T05:32:35.577633-08:00,0.0,10.711316,10711.316 +9923,2025-03-08T05:32:46.298760-08:00,0.0,10.721127,10721.127 +9924,2025-03-08T05:32:57.011571-08:00,0.0,10.712811,10712.811 +9925,2025-03-08T05:33:07.740682-08:00,0.0,10.729111,10729.111 +9926,2025-03-08T05:33:18.457784-08:00,0.0,10.717102,10717.102 +9927,2025-03-08T05:33:29.168217-08:00,0.0,10.710433,10710.433 +9928,2025-03-08T05:33:39.893603-08:00,0.0,10.725386,10725.386 +9929,2025-03-08T05:33:50.612286-08:00,0.0,10.718683,10718.683 +9930,2025-03-08T05:34:01.331871-08:00,0.0,10.719585,10719.585 +9931,2025-03-08T05:34:12.053652-08:00,0.0,10.721781,10721.781 +9932,2025-03-08T05:34:22.764574-08:00,0.0,10.710922,10710.922 +9933,2025-03-08T05:34:33.491616-08:00,0.0,10.727042,10727.042 +9934,2025-03-08T05:34:44.207767-08:00,0.0,10.716151,10716.151 +9935,2025-03-08T05:34:54.928725-08:00,0.0,10.720958,10720.958 +9936,2025-03-08T05:35:05.650661-08:00,0.0,10.721936,10721.936 +9937,2025-03-08T05:35:16.374576-08:00,0.0,10.723915,10723.915 +9938,2025-03-08T05:35:27.086773-08:00,0.0,10.712197,10712.197 +9939,2025-03-08T05:35:37.809973-08:00,0.0,10.7232,10723.2 +9940,2025-03-08T05:35:48.530776-08:00,0.0,10.720803,10720.803 +9941,2025-03-08T05:35:59.244786-08:00,0.0,10.71401,10714.01 +9942,2025-03-08T05:36:09.965573-08:00,0.0,10.720787,10720.787 +9943,2025-03-08T05:36:20.683599-08:00,0.0,10.718026,10718.026 +9944,2025-03-08T05:36:31.406695-08:00,0.0,10.723096,10723.096 +9945,2025-03-08T05:36:42.126756-08:00,0.0,10.720061,10720.061 +9946,2025-03-08T05:36:52.841575-08:00,0.0,10.714819,10714.819 +9947,2025-03-08T05:37:03.556776-08:00,0.0,10.715201,10715.201 +9948,2025-03-08T05:37:14.284604-08:00,0.0,10.727828,10727.828 +9949,2025-03-08T05:37:25.003745-08:00,0.0,10.719141,10719.141 +9950,2025-03-08T05:37:35.720894-08:00,0.0,10.717149,10717.149 +9951,2025-03-08T05:37:46.452803-08:00,0.0,10.731909,10731.909 +9952,2025-03-08T05:37:57.168572-08:00,0.0,10.715769,10715.769 +9953,2025-03-08T05:38:07.892754-08:00,0.0,10.724182,10724.182 +9954,2025-03-08T05:38:18.614575-08:00,0.0,10.721821,10721.821 +9955,2025-03-08T05:38:29.340858-08:00,0.0,10.726283,10726.283 +9956,2025-03-08T05:38:40.061575-08:00,0.0,10.720717,10720.717 +9957,2025-03-08T05:38:50.784797-08:00,0.0,10.723222,10723.222 +9958,2025-03-08T05:39:01.501548-08:00,0.0,10.716751,10716.751 +9959,2025-03-08T05:39:12.218745-08:00,0.0,10.717197,10717.197 +9960,2025-03-08T05:39:22.947746-08:00,0.0,10.729001,10729.001 +9961,2025-03-08T05:39:33.663748-08:00,0.0,10.716002,10716.002 +9962,2025-03-08T05:39:44.383805-08:00,0.0,10.720057,10720.057 +9963,2025-03-08T05:39:55.097594-08:00,0.0,10.713789,10713.789 +9964,2025-03-08T05:40:05.822595-08:00,0.0,10.725001,10725.001 +9965,2025-03-08T05:40:16.531622-08:00,0.0,10.709027,10709.027 +9966,2025-03-08T05:40:27.258785-08:00,0.0,10.727163,10727.163 +9967,2025-03-08T05:40:37.970584-08:00,0.0,10.711799,10711.799 +9968,2025-03-08T05:40:48.690758-08:00,0.0,10.720174,10720.174 +9969,2025-03-08T05:40:59.408575-08:00,0.0,10.717817,10717.817 +9970,2025-03-08T05:41:10.134961-08:00,0.0,10.726386,10726.386 +9971,2025-03-08T05:41:20.858576-08:00,0.0,10.723615,10723.615 +9972,2025-03-08T05:41:31.576778-08:00,0.0,10.718202,10718.202 +9973,2025-03-08T05:41:42.298575-08:00,0.0,10.721797,10721.797 +9974,2025-03-08T05:41:53.017540-08:00,0.0,10.718965,10718.965 +9975,2025-03-08T05:42:03.736576-08:00,0.0,10.719036,10719.036 +9976,2025-03-08T05:42:14.455573-08:00,0.0,10.718997,10718.997 +9977,2025-03-08T05:42:25.161765-08:00,0.0,10.706192,10706.192 +9978,2025-03-08T05:42:35.879601-08:00,0.0,10.717836,10717.836 +9979,2025-03-08T05:42:46.593777-08:00,0.0,10.714176,10714.176 +9980,2025-03-08T05:42:57.307589-08:00,0.0,10.713812,10713.812 +9981,2025-03-08T05:43:08.021574-08:00,0.0,10.713985,10713.985 +9982,2025-03-08T05:43:18.744754-08:00,0.0,10.72318,10723.18 +9983,2025-03-08T05:43:29.451647-08:00,0.0,10.706893,10706.893 +9984,2025-03-08T05:43:40.164576-08:00,0.0,10.712929,10712.929 +9985,2025-03-08T05:43:50.885760-08:00,0.0,10.721184,10721.184 +9986,2025-03-08T05:44:01.604807-08:00,0.0,10.719047,10719.047 +9987,2025-03-08T05:44:12.320879-08:00,0.0,10.716072,10716.072 +9988,2025-03-08T05:44:23.039743-08:00,0.0,10.718864,10718.864 +9989,2025-03-08T05:44:33.757776-08:00,0.0,10.718033,10718.033 +9990,2025-03-08T05:44:44.476604-08:00,0.0,10.718828,10718.828 +9991,2025-03-08T05:44:55.195641-08:00,0.0,10.719037,10719.037 +9992,2025-03-08T05:45:05.909755-08:00,0.0,10.714114,10714.114 +9993,2025-03-08T05:45:16.628577-08:00,0.0,10.718822,10718.822 +9994,2025-03-08T05:45:27.348090-08:00,0.0,10.719513,10719.513 +9995,2025-03-08T05:45:38.067654-08:00,0.0,10.719564,10719.564 +9996,2025-03-08T05:45:48.783669-08:00,0.0,10.716015,10716.015 +9997,2025-03-08T05:45:59.500873-08:00,0.0,10.717204,10717.204 +9998,2025-03-08T05:46:10.219789-08:00,0.0,10.718916,10718.916 +9999,2025-03-08T05:46:20.936754-08:00,0.0,10.716965,10716.965 +10000,2025-03-08T05:46:31.660944-08:00,0.0,10.72419,10724.19 +10001,2025-03-08T05:46:42.381749-08:00,0.0,10.720805,10720.805 +10002,2025-03-08T05:46:53.094779-08:00,0.0,10.71303,10713.03 +10003,2025-03-08T05:47:03.815573-08:00,0.0,10.720794,10720.794 +10004,2025-03-08T05:47:14.534812-08:00,0.0,10.719239,10719.239 +10005,2025-03-08T05:47:25.254739-08:00,0.0,10.719927,10719.927 +10006,2025-03-08T05:47:35.980999-08:00,0.0,10.72626,10726.26 +10007,2025-03-08T05:47:46.695573-08:00,0.0,10.714574,10714.574 +10008,2025-03-08T05:47:57.418739-08:00,0.0,10.723166,10723.166 +10009,2025-03-08T05:48:08.143572-08:00,0.0,10.724833,10724.833 +10010,2025-03-08T05:48:18.858119-08:00,0.0,10.714547,10714.547 +10011,2025-03-08T05:48:29.574572-08:00,0.0,10.716453,10716.453 +10012,2025-03-08T05:48:40.292774-08:00,0.0,10.718202,10718.202 +10013,2025-03-08T05:48:51.017578-08:00,0.0,10.724804,10724.804 +10014,2025-03-08T05:49:01.731784-08:00,0.0,10.714206,10714.206 +10015,2025-03-08T05:49:12.461076-08:00,0.0,10.729292,10729.292 +10016,2025-03-08T05:49:23.178625-08:00,0.0,10.717549,10717.549 +10017,2025-03-08T05:49:33.886778-08:00,0.0,10.708153,10708.153 +10018,2025-03-08T05:49:44.607768-08:00,0.0,10.72099,10720.99 +10019,2025-03-08T05:49:55.327732-08:00,0.0,10.719964,10719.964 +10020,2025-03-08T05:50:06.054576-08:00,0.0,10.726844,10726.844 +10021,2025-03-08T05:50:16.773026-08:00,0.0,10.71845,10718.45 +10022,2025-03-08T05:50:27.492574-08:00,0.0,10.719548,10719.548 +10023,2025-03-08T05:50:38.212765-08:00,0.0,10.720191,10720.191 +10024,2025-03-08T05:50:48.928576-08:00,0.0,10.715811,10715.811 +10025,2025-03-08T05:50:59.643576-08:00,0.0,10.715,10715.0 +10026,2025-03-08T05:51:10.356814-08:00,0.0,10.713238,10713.238 +10027,2025-03-08T05:51:21.084575-08:00,0.0,10.727761,10727.761 +10028,2025-03-08T05:51:31.799777-08:00,0.0,10.715202,10715.202 +10029,2025-03-08T05:51:42.517576-08:00,0.0,10.717799,10717.799 +10030,2025-03-08T05:51:53.246574-08:00,0.0,10.728998,10728.998 +10031,2025-03-08T05:52:03.966597-08:00,0.0,10.720023,10720.023 +10032,2025-03-08T05:52:14.683684-08:00,0.0,10.717087,10717.087 +10033,2025-03-08T05:52:25.487784-08:00,0.0,10.8041,10804.1 +10034,2025-03-08T05:52:36.199695-08:00,0.0,10.711911,10711.911 +10035,2025-03-08T05:52:46.930701-08:00,0.0,10.731006,10731.006 +10036,2025-03-08T05:52:57.648695-08:00,0.0,10.717994,10717.994 +10037,2025-03-08T05:53:08.361745-08:00,0.0,10.71305,10713.05 +10038,2025-03-08T05:53:19.087761-08:00,0.0,10.726016,10726.016 +10039,2025-03-08T05:53:29.803510-08:00,0.0,10.715749,10715.749 +10040,2025-03-08T05:53:40.520510-08:00,0.0,10.717,10717.0 +10041,2025-03-08T05:53:51.245724-08:00,0.0,10.725214,10725.214 +10042,2025-03-08T05:54:01.963627-08:00,0.0,10.717903,10717.903 +10043,2025-03-08T05:54:12.684689-08:00,0.0,10.721062,10721.062 +10044,2025-03-08T05:54:23.401645-08:00,0.0,10.716956,10716.956 +10045,2025-03-08T05:54:34.122747-08:00,0.0,10.721102,10721.102 +10046,2025-03-08T05:54:44.846510-08:00,0.0,10.723763,10723.763 +10047,2025-03-08T05:54:55.568674-08:00,0.0,10.722164,10722.164 +10048,2025-03-08T05:55:06.292713-08:00,0.0,10.724039,10724.039 +10049,2025-03-08T05:55:17.010510-08:00,0.0,10.717797,10717.797 +10050,2025-03-08T05:55:27.733727-08:00,0.0,10.723217,10723.217 +10051,2025-03-08T05:55:38.445693-08:00,0.0,10.711966,10711.966 +10052,2025-03-08T05:55:49.167718-08:00,0.0,10.722025,10722.025 +10053,2025-03-08T05:55:59.887710-08:00,0.0,10.719992,10719.992 +10054,2025-03-08T05:56:10.603706-08:00,0.0,10.715996,10715.996 +10055,2025-03-08T05:56:21.327308-08:00,0.0,10.723602,10723.602 +10056,2025-03-08T05:56:32.042726-08:00,0.0,10.715418,10715.418 +10057,2025-03-08T05:56:42.767534-08:00,0.0,10.724808,10724.808 +10058,2025-03-08T05:56:53.486692-08:00,0.0,10.719158,10719.158 +10059,2025-03-08T05:57:04.203513-08:00,0.0,10.716821,10716.821 +10060,2025-03-08T05:57:14.917938-08:00,0.0,10.714425,10714.425 +10061,2025-03-08T05:57:25.642577-08:00,0.0,10.724639,10724.639 +10062,2025-03-08T05:57:36.355707-08:00,0.0,10.71313,10713.13 +10063,2025-03-08T05:57:47.075576-08:00,0.0,10.719869,10719.869 +10064,2025-03-08T05:57:57.792844-08:00,0.0,10.717268,10717.268 +10065,2025-03-08T05:58:08.515598-08:00,0.0,10.722754,10722.754 +10066,2025-03-08T05:58:19.234536-08:00,0.0,10.718938,10718.938 +10067,2025-03-08T05:58:29.942692-08:00,0.0,10.708156,10708.156 +10068,2025-03-08T05:58:40.668727-08:00,0.0,10.726035,10726.035 +10069,2025-03-08T05:58:51.389696-08:00,0.0,10.720969,10720.969 +10070,2025-03-08T05:59:02.108676-08:00,0.0,10.71898,10718.98 +10071,2025-03-08T05:59:12.818510-08:00,0.0,10.709834,10709.834 +10072,2025-03-08T05:59:23.547587-08:00,0.0,10.729077,10729.077 +10073,2025-03-08T05:59:34.266928-08:00,0.0,10.719341,10719.341 +10074,2025-03-08T05:59:44.983513-08:00,0.0,10.716585,10716.585 +10075,2025-03-08T05:59:55.706819-08:00,0.0,10.723306,10723.306 +10076,2025-03-08T06:00:06.422777-08:00,0.0,10.715958,10715.958 +10077,2025-03-08T06:00:17.153506-08:00,0.0,10.730729,10730.729 +10078,2025-03-08T06:00:27.871516-08:00,0.0,10.71801,10718.01 +10079,2025-03-08T06:00:38.594581-08:00,0.0,10.723065,10723.065 +10080,2025-03-08T06:00:49.312929-08:00,0.0,10.718348,10718.348 +10081,2025-03-08T06:01:00.030719-08:00,0.0,10.71779,10717.79 +10082,2025-03-08T06:01:10.752648-08:00,0.0,10.721929,10721.929 +10083,2025-03-08T06:01:19.594340-08:00,0.0,8.841692,8841.692 +10084,2025-03-08T06:01:21.471305-08:00,0.0,1.876965,1876.965 +10085,2025-03-08T06:01:32.184627-08:00,0.0,10.713322,10713.322 +10086,2025-03-08T06:01:42.906508-08:00,0.0,10.721881,10721.881 +10087,2025-03-08T06:01:53.624789-08:00,0.0,10.718281,10718.281 +10088,2025-03-08T06:02:04.350627-08:00,0.0,10.725838,10725.838 +10089,2025-03-08T06:02:15.065575-08:00,0.0,10.714948,10714.948 +10090,2025-03-08T06:02:25.794183-08:00,0.0,10.728608,10728.608 +10091,2025-03-08T06:02:36.515475-08:00,0.0,10.721292,10721.292 +10092,2025-03-08T06:02:47.225718-08:00,0.0,10.710243,10710.243 +10093,2025-03-08T06:02:57.946513-08:00,0.0,10.720795,10720.795 +10094,2025-03-08T06:03:08.671506-08:00,0.0,10.724993,10724.993 +10095,2025-03-08T06:03:19.390511-08:00,0.0,10.719005,10719.005 +10096,2025-03-08T06:03:30.100712-08:00,0.0,10.710201,10710.201 +10097,2025-03-08T06:03:40.828525-08:00,0.0,10.727813,10727.813 +10098,2025-03-08T06:03:51.542101-08:00,0.0,10.713576,10713.576 +10099,2025-03-08T06:04:02.261507-08:00,0.0,10.719406,10719.406 +10100,2025-03-08T06:04:12.984286-08:00,0.0,10.722779,10722.779 +10101,2025-03-08T06:04:23.699513-08:00,0.0,10.715227,10715.227 +10102,2025-03-08T06:04:34.414517-08:00,0.0,10.715004,10715.004 +10103,2025-03-08T06:04:45.129924-08:00,0.0,10.715407,10715.407 +10104,2025-03-08T06:04:55.848508-08:00,0.0,10.718584,10718.584 +10105,2025-03-08T06:05:06.562533-08:00,0.0,10.714025,10714.025 +10106,2025-03-08T06:05:17.283699-08:00,0.0,10.721166,10721.166 +10107,2025-03-08T06:05:28.000513-08:00,0.0,10.716814,10716.814 +10108,2025-03-08T06:05:38.721760-08:00,0.0,10.721247,10721.247 +10109,2025-03-08T06:05:49.442510-08:00,0.0,10.72075,10720.75 +10110,2025-03-08T06:06:00.164808-08:00,0.0,10.722298,10722.298 +10111,2025-03-08T06:06:10.882625-08:00,0.0,10.717817,10717.817 +10112,2025-03-08T06:06:21.597902-08:00,0.0,10.715277,10715.277 +10113,2025-03-08T06:06:32.309732-08:00,0.0,10.71183,10711.83 +10114,2025-03-08T06:06:43.027515-08:00,0.0,10.717783,10717.783 +10115,2025-03-08T06:06:53.744687-08:00,0.0,10.717172,10717.172 +10116,2025-03-08T06:07:04.472584-08:00,0.0,10.727897,10727.897 +10117,2025-03-08T06:07:15.183886-08:00,0.0,10.711302,10711.302 +10118,2025-03-08T06:07:25.901510-08:00,0.0,10.717624,10717.624 +10119,2025-03-08T06:07:36.623369-08:00,0.0,10.721859,10721.859 +10120,2025-03-08T06:07:47.329738-08:00,0.0,10.706369,10706.369 +10121,2025-03-08T06:07:58.048653-08:00,0.0,10.718915,10718.915 +10122,2025-03-08T06:08:08.767894-08:00,0.0,10.719241,10719.241 +10123,2025-03-08T06:08:19.479609-08:00,0.0,10.711715,10711.715 +10124,2025-03-08T06:08:30.202509-08:00,0.0,10.7229,10722.9 +10125,2025-03-08T06:08:40.917540-08:00,0.0,10.715031,10715.031 +10126,2025-03-08T06:08:51.640513-08:00,0.0,10.722973,10722.973 +10127,2025-03-08T06:09:02.365623-08:00,0.0,10.72511,10725.11 +10128,2025-03-08T06:09:13.080571-08:00,0.0,10.714948,10714.948 +10129,2025-03-08T06:09:23.801580-08:00,0.0,10.721009,10721.009 +10130,2025-03-08T06:09:34.520689-08:00,0.0,10.719109,10719.109 +10131,2025-03-08T06:09:45.243310-08:00,0.0,10.722621,10722.621 +10132,2025-03-08T06:09:55.964580-08:00,0.0,10.72127,10721.27 +10133,2025-03-08T06:10:06.679688-08:00,0.0,10.715108,10715.108 +10134,2025-03-08T06:10:17.407775-08:00,0.0,10.728087,10728.087 +10135,2025-03-08T06:10:28.124704-08:00,0.0,10.716929,10716.929 +10136,2025-03-08T06:10:38.849510-08:00,0.0,10.724806,10724.806 +10137,2025-03-08T06:10:49.563352-08:00,0.0,10.713842,10713.842 +10138,2025-03-08T06:11:00.283514-08:00,0.0,10.720162,10720.162 +10139,2025-03-08T06:11:11.004802-08:00,0.0,10.721288,10721.288 +10140,2025-03-08T06:11:21.726511-08:00,0.0,10.721709,10721.709 +10141,2025-03-08T06:11:32.454702-08:00,0.0,10.728191,10728.191 +10142,2025-03-08T06:11:43.172514-08:00,0.0,10.717812,10717.812 +10143,2025-03-08T06:11:53.889358-08:00,0.0,10.716844,10716.844 +10144,2025-03-08T06:12:04.614580-08:00,0.0,10.725222,10725.222 +10145,2025-03-08T06:12:15.333684-08:00,0.0,10.719104,10719.104 +10146,2025-03-08T06:12:26.060910-08:00,0.0,10.727226,10727.226 +10147,2025-03-08T06:12:36.772715-08:00,0.0,10.711805,10711.805 +10148,2025-03-08T06:12:47.496513-08:00,0.0,10.723798,10723.798 +10149,2025-03-08T06:12:58.214541-08:00,0.0,10.718028,10718.028 +10150,2025-03-08T06:13:08.936699-08:00,0.0,10.722158,10722.158 +10151,2025-03-08T06:13:19.659511-08:00,0.0,10.722812,10722.812 +10152,2025-03-08T06:13:30.377592-08:00,0.0,10.718081,10718.081 +10153,2025-03-08T06:13:41.093512-08:00,0.0,10.71592,10715.92 +10154,2025-03-08T06:13:51.812721-08:00,0.0,10.719209,10719.209 +10155,2025-03-08T06:14:02.539510-08:00,0.0,10.726789,10726.789 +10156,2025-03-08T06:14:13.250692-08:00,0.0,10.711182,10711.182 +10157,2025-03-08T06:14:23.972514-08:00,0.0,10.721822,10721.822 +10158,2025-03-08T06:14:34.693849-08:00,0.0,10.721335,10721.335 +10159,2025-03-08T06:14:45.415507-08:00,0.0,10.721658,10721.658 +10160,2025-03-08T06:14:56.129510-08:00,0.0,10.714003,10714.003 +10161,2025-03-08T06:15:06.849510-08:00,0.0,10.72,10720.0 +10162,2025-03-08T06:15:17.576722-08:00,0.0,10.727212,10727.212 +10163,2025-03-08T06:15:28.286677-08:00,0.0,10.709955,10709.955 +10164,2025-03-08T06:15:39.016513-08:00,0.0,10.729836,10729.836 +10165,2025-03-08T06:15:49.727907-08:00,0.0,10.711394,10711.394 +10166,2025-03-08T06:16:00.449521-08:00,0.0,10.721614,10721.614 +10167,2025-03-08T06:16:11.166408-08:00,0.0,10.716887,10716.887 +10168,2025-03-08T06:16:21.888510-08:00,0.0,10.722102,10722.102 +10169,2025-03-08T06:16:32.612681-08:00,0.0,10.724171,10724.171 +10170,2025-03-08T06:16:43.323587-08:00,0.0,10.710906,10710.906 +10171,2025-03-08T06:16:54.047661-08:00,0.0,10.724074,10724.074 +10172,2025-03-08T06:17:04.762944-08:00,0.0,10.715283,10715.283 +10173,2025-03-08T06:17:15.484007-08:00,0.0,10.721063,10721.063 +10174,2025-03-08T06:17:26.200710-08:00,0.0,10.716703,10716.703 +10175,2025-03-08T06:17:36.924513-08:00,0.0,10.723803,10723.803 +10176,2025-03-08T06:17:47.646318-08:00,0.0,10.721805,10721.805 +10177,2025-03-08T06:17:58.360513-08:00,0.0,10.714195,10714.195 +10178,2025-03-08T06:18:09.086706-08:00,0.0,10.726193,10726.193 +10179,2025-03-08T06:18:19.810506-08:00,0.0,10.7238,10723.8 +10180,2025-03-08T06:18:30.531697-08:00,0.0,10.721191,10721.191 +10181,2025-03-08T06:18:41.250513-08:00,0.0,10.718816,10718.816 +10182,2025-03-08T06:18:51.969630-08:00,0.0,10.719117,10719.117 +10183,2025-03-08T06:19:02.686511-08:00,0.0,10.716881,10716.881 +10184,2025-03-08T06:19:13.408511-08:00,0.0,10.722,10722.0 +10185,2025-03-08T06:19:24.124562-08:00,0.0,10.716051,10716.051 +10186,2025-03-08T06:19:34.852537-08:00,0.0,10.727975,10727.975 +10187,2025-03-08T06:19:45.573518-08:00,0.0,10.720981,10720.981 +10188,2025-03-08T06:19:56.294534-08:00,0.0,10.721016,10721.016 +10189,2025-03-08T06:20:07.010505-08:00,0.0,10.715971,10715.971 +10190,2025-03-08T06:20:17.727511-08:00,0.0,10.717006,10717.006 +10191,2025-03-08T06:20:28.454697-08:00,0.0,10.727186,10727.186 +10192,2025-03-08T06:20:39.169792-08:00,0.0,10.715095,10715.095 +10193,2025-03-08T06:20:49.896689-08:00,0.0,10.726897,10726.897 +10194,2025-03-08T06:21:00.612680-08:00,0.0,10.715991,10715.991 +10195,2025-03-08T06:21:11.337966-08:00,0.0,10.725286,10725.286 +10196,2025-03-08T06:21:22.055508-08:00,0.0,10.717542,10717.542 +10197,2025-03-08T06:21:32.781595-08:00,0.0,10.726087,10726.087 +10198,2025-03-08T06:21:43.499543-08:00,0.0,10.717948,10717.948 +10199,2025-03-08T06:21:54.215695-08:00,0.0,10.716152,10716.152 +10200,2025-03-08T06:22:04.930513-08:00,0.0,10.714818,10714.818 +10201,2025-03-08T06:22:15.656674-08:00,0.0,10.726161,10726.161 +10202,2025-03-08T06:22:26.370784-08:00,0.0,10.71411,10714.11 +10203,2025-03-08T06:22:37.088514-08:00,0.0,10.71773,10717.73 +10204,2025-03-08T06:22:47.811567-08:00,0.0,10.723053,10723.053 +10205,2025-03-08T06:22:58.531720-08:00,0.0,10.720153,10720.153 +10206,2025-03-08T06:23:09.251719-08:00,0.0,10.719999,10719.999 +10207,2025-03-08T06:23:19.970510-08:00,0.0,10.718791,10718.791 +10208,2025-03-08T06:23:30.688722-08:00,0.0,10.718212,10718.212 +10209,2025-03-08T06:23:41.406718-08:00,0.0,10.717996,10717.996 +10210,2025-03-08T06:23:52.129719-08:00,0.0,10.723001,10723.001 +10211,2025-03-08T06:24:02.846512-08:00,0.0,10.716793,10716.793 +10212,2025-03-08T06:24:13.568538-08:00,0.0,10.722026,10722.026 +10213,2025-03-08T06:24:24.294652-08:00,0.0,10.726114,10726.114 +10214,2025-03-08T06:24:35.009511-08:00,0.0,10.714859,10714.859 +10215,2025-03-08T06:24:45.724518-08:00,0.0,10.715007,10715.007 +10216,2025-03-08T06:24:56.442675-08:00,0.0,10.718157,10718.157 +10217,2025-03-08T06:25:07.167742-08:00,0.0,10.725067,10725.067 +10218,2025-03-08T06:25:17.879511-08:00,0.0,10.711769,10711.769 +10219,2025-03-08T06:25:28.598776-08:00,0.0,10.719265,10719.265 +10220,2025-03-08T06:25:39.314641-08:00,0.0,10.715865,10715.865 +10221,2025-03-08T06:25:50.030510-08:00,0.0,10.715869,10715.869 +10222,2025-03-08T06:26:00.756512-08:00,0.0,10.726002,10726.002 +10223,2025-03-08T06:26:11.476512-08:00,0.0,10.72,10720.0 +10224,2025-03-08T06:26:22.196902-08:00,0.0,10.72039,10720.39 +10225,2025-03-08T06:26:32.912510-08:00,0.0,10.715608,10715.608 +10226,2025-03-08T06:26:43.629707-08:00,0.0,10.717197,10717.197 +10227,2025-03-08T06:26:54.348759-08:00,0.0,10.719052,10719.052 +10228,2025-03-08T06:27:05.058513-08:00,0.0,10.709754,10709.754 +10229,2025-03-08T06:27:15.776590-08:00,0.0,10.718077,10718.077 +10230,2025-03-08T06:27:26.496509-08:00,0.0,10.719919,10719.919 +10231,2025-03-08T06:27:37.218092-08:00,0.0,10.721583,10721.583 +10232,2025-03-08T06:27:47.939730-08:00,0.0,10.721638,10721.638 +10233,2025-03-08T06:27:58.655688-08:00,0.0,10.715958,10715.958 +10234,2025-03-08T06:28:09.369627-08:00,0.0,10.713939,10713.939 +10235,2025-03-08T06:28:20.091598-08:00,0.0,10.721971,10721.971 +10236,2025-03-08T06:28:30.809723-08:00,0.0,10.718125,10718.125 +10237,2025-03-08T06:28:41.526509-08:00,0.0,10.716786,10716.786 +10238,2025-03-08T06:28:52.246716-08:00,0.0,10.720207,10720.207 +10239,2025-03-08T06:29:02.970991-08:00,0.0,10.724275,10724.275 +10240,2025-03-08T06:29:13.687086-08:00,0.0,10.716095,10716.095 +10241,2025-03-08T06:29:24.408510-08:00,0.0,10.721424,10721.424 +10242,2025-03-08T06:29:35.125725-08:00,0.0,10.717215,10717.215 +10243,2025-03-08T06:29:45.853793-08:00,0.0,10.728068,10728.068 +10244,2025-03-08T06:29:56.569730-08:00,0.0,10.715937,10715.937 +10245,2025-03-08T06:30:07.298512-08:00,0.0,10.728782,10728.782 +10246,2025-03-08T06:30:18.011781-08:00,0.0,10.713269,10713.269 +10247,2025-03-08T06:30:28.743510-08:00,0.0,10.731729,10731.729 +10248,2025-03-08T06:30:39.456686-08:00,0.0,10.713176,10713.176 +10249,2025-03-08T06:30:50.182544-08:00,0.0,10.725858,10725.858 +10250,2025-03-08T06:31:00.904695-08:00,0.0,10.722151,10722.151 +10251,2025-03-08T06:31:11.617765-08:00,0.0,10.71307,10713.07 +10252,2025-03-08T06:31:22.348916-08:00,0.0,10.731151,10731.151 +10253,2025-03-08T06:31:33.066505-08:00,0.0,10.717589,10717.589 +10254,2025-03-08T06:31:43.783281-08:00,0.0,10.716776,10716.776 +10255,2025-03-08T06:31:54.510513-08:00,0.0,10.727232,10727.232 +10256,2025-03-08T06:32:05.234692-08:00,0.0,10.724179,10724.179 +10257,2025-03-08T06:32:15.947580-08:00,0.0,10.712888,10712.888 +10258,2025-03-08T06:32:26.675725-08:00,0.0,10.728145,10728.145 +10259,2025-03-08T06:32:37.396508-08:00,0.0,10.720783,10720.783 +10260,2025-03-08T06:32:48.112533-08:00,0.0,10.716025,10716.025 +10261,2025-03-08T06:32:58.840514-08:00,0.0,10.727981,10727.981 +10262,2025-03-08T06:33:09.554061-08:00,0.0,10.713547,10713.547 +10263,2025-03-08T06:33:20.279682-08:00,0.0,10.725621,10725.621 +10264,2025-03-08T06:33:31.002333-08:00,0.0,10.722651,10722.651 +10265,2025-03-08T06:33:41.720583-08:00,0.0,10.71825,10718.25 +10266,2025-03-08T06:33:52.438510-08:00,0.0,10.717927,10717.927 +10267,2025-03-08T06:34:03.169677-08:00,0.0,10.731167,10731.167 +10268,2025-03-08T06:34:13.890410-08:00,0.0,10.720733,10720.733 +10269,2025-03-08T06:34:24.612512-08:00,0.0,10.722102,10722.102 +10270,2025-03-08T06:34:35.333678-08:00,0.0,10.721166,10721.166 +10271,2025-03-08T06:34:46.060512-08:00,0.0,10.726834,10726.834 +10272,2025-03-08T06:34:56.780733-08:00,0.0,10.720221,10720.221 +10273,2025-03-08T06:35:07.500520-08:00,0.0,10.719787,10719.787 +10274,2025-03-08T06:35:18.225688-08:00,0.0,10.725168,10725.168 +10275,2025-03-08T06:35:28.951659-08:00,0.0,10.725971,10725.971 +10276,2025-03-08T06:35:39.673709-08:00,0.0,10.72205,10722.05 +10277,2025-03-08T06:35:50.401514-08:00,0.0,10.727805,10727.805 +10278,2025-03-08T06:36:01.119866-08:00,0.0,10.718352,10718.352 +10279,2025-03-08T06:36:11.841510-08:00,0.0,10.721644,10721.644 +10280,2025-03-08T06:36:22.563564-08:00,0.0,10.722054,10722.054 +10281,2025-03-08T06:36:33.288510-08:00,0.0,10.724946,10724.946 +10282,2025-03-08T06:36:44.011725-08:00,0.0,10.723215,10723.215 +10283,2025-03-08T06:36:54.727512-08:00,0.0,10.715787,10715.787 +10284,2025-03-08T06:37:05.448907-08:00,0.0,10.721395,10721.395 +10285,2025-03-08T06:37:16.171541-08:00,0.0,10.722634,10722.634 +10286,2025-03-08T06:37:26.894699-08:00,0.0,10.723158,10723.158 +10287,2025-03-08T06:37:37.613512-08:00,0.0,10.718813,10718.813 +10288,2025-03-08T06:37:48.345514-08:00,0.0,10.732002,10732.002 +10289,2025-03-08T06:37:59.066730-08:00,0.0,10.721216,10721.216 +10290,2025-03-08T06:38:09.787177-08:00,0.0,10.720447,10720.447 +10291,2025-03-08T06:38:20.513619-08:00,0.0,10.726442,10726.442 +10292,2025-03-08T06:38:31.229512-08:00,0.0,10.715893,10715.893 +10293,2025-03-08T06:38:41.962678-08:00,0.0,10.733166,10733.166 +10294,2025-03-08T06:38:52.681517-08:00,0.0,10.718839,10718.839 +10295,2025-03-08T06:39:03.401282-08:00,0.0,10.719765,10719.765 +10296,2025-03-08T06:39:14.125562-08:00,0.0,10.72428,10724.28 +10297,2025-03-08T06:39:24.842775-08:00,0.0,10.717213,10717.213 +10298,2025-03-08T06:39:35.571789-08:00,0.0,10.729014,10729.014 +10299,2025-03-08T06:39:46.286505-08:00,0.0,10.714716,10714.716 +10300,2025-03-08T06:39:57.015714-08:00,0.0,10.729209,10729.209 +10301,2025-03-08T06:40:07.740707-08:00,0.0,10.724993,10724.993 +10302,2025-03-08T06:40:18.463534-08:00,0.0,10.722827,10722.827 +10303,2025-03-08T06:40:29.182665-08:00,0.0,10.719131,10719.131 +10304,2025-03-08T06:40:39.903043-08:00,0.0,10.720378,10720.378 +10305,2025-03-08T06:40:50.627724-08:00,0.0,10.724681,10724.681 +10306,2025-03-08T06:41:01.347752-08:00,0.0,10.720028,10720.028 +10307,2025-03-08T06:41:12.073697-08:00,0.0,10.725945,10725.945 +10308,2025-03-08T06:41:22.791845-08:00,0.0,10.718148,10718.148 +10309,2025-03-08T06:41:33.516694-08:00,0.0,10.724849,10724.849 +10310,2025-03-08T06:41:44.235722-08:00,0.0,10.719028,10719.028 +10311,2025-03-08T06:41:54.963226-08:00,0.0,10.727504,10727.504 +10312,2025-03-08T06:42:05.684514-08:00,0.0,10.721288,10721.288 +10313,2025-03-08T06:42:16.405891-08:00,0.0,10.721377,10721.377 +10314,2025-03-08T06:42:27.133091-08:00,0.0,10.7272,10727.2 +10315,2025-03-08T06:42:37.845683-08:00,0.0,10.712592,10712.592 +10316,2025-03-08T06:42:48.575717-08:00,0.0,10.730034,10730.034 +10317,2025-03-08T06:42:59.289678-08:00,0.0,10.713961,10713.961 +10318,2025-03-08T06:43:10.015513-08:00,0.0,10.725835,10725.835 +10319,2025-03-08T06:43:20.736617-08:00,0.0,10.721104,10721.104 +10320,2025-03-08T06:43:31.459527-08:00,0.0,10.72291,10722.91 +10321,2025-03-08T06:43:42.180679-08:00,0.0,10.721152,10721.152 +10322,2025-03-08T06:43:52.906513-08:00,0.0,10.725834,10725.834 +10323,2025-03-08T06:44:03.627098-08:00,0.0,10.720585,10720.585 +10324,2025-03-08T06:44:14.354568-08:00,0.0,10.72747,10727.47 +10325,2025-03-08T06:44:25.073596-08:00,0.0,10.719028,10719.028 +10326,2025-03-08T06:44:35.794722-08:00,0.0,10.721126,10721.126 +10327,2025-03-08T06:44:46.515716-08:00,0.0,10.720994,10720.994 +10328,2025-03-08T06:44:57.237513-08:00,0.0,10.721797,10721.797 +10329,2025-03-08T06:45:07.963760-08:00,0.0,10.726247,10726.247 +10330,2025-03-08T06:45:18.686510-08:00,0.0,10.72275,10722.75 +10331,2025-03-08T06:45:29.409195-08:00,0.0,10.722685,10722.685 +10332,2025-03-08T06:45:40.132567-08:00,0.0,10.723372,10723.372 +10333,2025-03-08T06:45:50.854603-08:00,0.0,10.722036,10722.036 +10334,2025-03-08T06:46:01.578704-08:00,0.0,10.724101,10724.101 +10335,2025-03-08T06:46:12.302514-08:00,0.0,10.72381,10723.81 +10336,2025-03-08T06:46:23.029692-08:00,0.0,10.727178,10727.178 +10337,2025-03-08T06:46:33.754529-08:00,0.0,10.724837,10724.837 +10338,2025-03-08T06:46:44.475883-08:00,0.0,10.721354,10721.354 +10339,2025-03-08T06:46:55.207511-08:00,0.0,10.731628,10731.628 +10340,2025-03-08T06:47:05.930692-08:00,0.0,10.723181,10723.181 +10341,2025-03-08T06:47:16.653746-08:00,0.0,10.723054,10723.054 +10342,2025-03-08T06:47:27.379537-08:00,0.0,10.725791,10725.791 +10343,2025-03-08T06:47:38.109681-08:00,0.0,10.730144,10730.144 +10344,2025-03-08T06:47:48.825902-08:00,0.0,10.716221,10716.221 +10345,2025-03-08T06:47:59.558611-08:00,0.0,10.732709,10732.709 +10346,2025-03-08T06:48:10.272591-08:00,0.0,10.71398,10713.98 +10347,2025-03-08T06:48:20.996952-08:00,0.0,10.724361,10724.361 +10348,2025-03-08T06:48:31.725699-08:00,0.0,10.728747,10728.747 +10349,2025-03-08T06:48:42.439681-08:00,0.0,10.713982,10713.982 +10350,2025-03-08T06:48:53.160555-08:00,0.0,10.720874,10720.874 +10351,2025-03-08T06:49:03.884710-08:00,0.0,10.724155,10724.155 +10352,2025-03-08T06:49:14.611512-08:00,0.0,10.726802,10726.802 +10353,2025-03-08T06:49:25.332824-08:00,0.0,10.721312,10721.312 +10354,2025-03-08T06:49:36.049752-08:00,0.0,10.716928,10716.928 +10355,2025-03-08T06:49:46.771679-08:00,0.0,10.721927,10721.927 +10356,2025-03-08T06:49:57.497510-08:00,0.0,10.725831,10725.831 +10357,2025-03-08T06:49:59.891154-08:00,0.0,2.393644,2393.644 +10358,2025-03-08T06:50:08.213698-08:00,0.0,8.322544,8322.544 +10359,2025-03-08T06:50:18.931798-08:00,0.0,10.7181,10718.1 +10360,2025-03-08T06:50:29.648622-08:00,0.0,10.716824,10716.824 +10361,2025-03-08T06:50:40.372678-08:00,0.0,10.724056,10724.056 +10362,2025-03-08T06:50:51.095882-08:00,0.0,10.723204,10723.204 +10363,2025-03-08T06:51:01.808728-08:00,0.0,10.712846,10712.846 +10364,2025-03-08T06:51:12.529580-08:00,0.0,10.720852,10720.852 +10365,2025-03-08T06:51:23.258513-08:00,0.0,10.728933,10728.933 +10366,2025-03-08T06:51:33.981633-08:00,0.0,10.72312,10723.12 +10367,2025-03-08T06:51:44.700744-08:00,0.0,10.719111,10719.111 +10368,2025-03-08T06:51:55.414512-08:00,0.0,10.713768,10713.768 +10369,2025-03-08T06:52:06.135272-08:00,0.0,10.72076,10720.76 +10370,2025-03-08T06:52:16.857975-08:00,0.0,10.722703,10722.703 +10371,2025-03-08T06:52:27.555456-08:00,0.0,10.697481,10697.481 +10372,2025-03-08T06:52:38.278947-08:00,0.0,10.723491,10723.491 +10373,2025-03-08T06:52:48.997707-08:00,0.0,10.71876,10718.76 +10374,2025-03-08T06:52:59.720776-08:00,0.0,10.723069,10723.069 +10375,2025-03-08T06:53:10.440621-08:00,0.0,10.719845,10719.845 +10376,2025-03-08T06:53:21.166461-08:00,0.0,10.72584,10725.84 +10377,2025-03-08T06:53:31.884588-08:00,0.0,10.718127,10718.127 +10378,2025-03-08T06:53:42.602714-08:00,0.0,10.718126,10718.126 +10379,2025-03-08T06:53:53.321675-08:00,0.0,10.718961,10718.961 +10380,2025-03-08T06:54:04.032648-08:00,0.0,10.710973,10710.973 +10381,2025-03-08T06:54:14.755461-08:00,0.0,10.722813,10722.813 +10382,2025-03-08T06:54:25.474674-08:00,0.0,10.719213,10719.213 +10383,2025-03-08T06:54:36.193461-08:00,0.0,10.718787,10718.787 +10384,2025-03-08T06:54:46.909637-08:00,0.0,10.716176,10716.176 +10385,2025-03-08T06:54:57.633463-08:00,0.0,10.723826,10723.826 +10386,2025-03-08T06:55:08.358552-08:00,0.0,10.725089,10725.089 +10387,2025-03-08T06:55:19.077459-08:00,0.0,10.718907,10718.907 +10388,2025-03-08T06:55:29.799079-08:00,0.0,10.72162,10721.62 +10389,2025-03-08T06:55:40.514469-08:00,0.0,10.71539,10715.39 +10390,2025-03-08T06:55:51.227701-08:00,0.0,10.713232,10713.232 +10391,2025-03-08T06:56:01.954475-08:00,0.0,10.726774,10726.774 +10392,2025-03-08T06:56:12.673511-08:00,0.0,10.719036,10719.036 +10393,2025-03-08T06:56:23.392464-08:00,0.0,10.718953,10718.953 +10394,2025-03-08T06:56:32.252923-08:00,0.0,8.860459,8860.459 +10395,2025-03-08T06:56:34.102725-08:00,0.0,1.849802,1849.802 +10396,2025-03-08T06:56:44.823665-08:00,0.0,10.72094,10720.94 +10397,2025-03-08T06:56:55.540461-08:00,0.0,10.716796,10716.796 +10398,2025-03-08T06:57:06.265634-08:00,0.0,10.725173,10725.173 +10399,2025-03-08T06:57:16.983676-08:00,0.0,10.718042,10718.042 +10400,2025-03-08T06:57:27.697461-08:00,0.0,10.713785,10713.785 +10401,2025-03-08T06:57:38.416502-08:00,0.0,10.719041,10719.041 +10402,2025-03-08T06:57:49.136641-08:00,0.0,10.720139,10720.139 +10403,2025-03-08T06:57:59.858661-08:00,0.0,10.72202,10722.02 +10404,2025-03-08T06:58:10.583462-08:00,0.0,10.724801,10724.801 +10405,2025-03-08T06:58:21.305459-08:00,0.0,10.721997,10721.997 +10406,2025-03-08T06:58:32.021491-08:00,0.0,10.716032,10716.032 +10407,2025-03-08T06:58:42.746423-08:00,0.0,10.724932,10724.932 +10408,2025-03-08T06:58:53.464462-08:00,0.0,10.718039,10718.039 +10409,2025-03-08T06:59:04.177636-08:00,0.0,10.713174,10713.174 +10410,2025-03-08T06:59:14.894572-08:00,0.0,10.716936,10716.936 +10411,2025-03-08T06:59:25.624656-08:00,0.0,10.730084,10730.084 +10412,2025-03-08T06:59:36.334795-08:00,0.0,10.710139,10710.139 +10413,2025-03-08T06:59:47.063649-08:00,0.0,10.728854,10728.854 +10414,2025-03-08T06:59:57.775723-08:00,0.0,10.712074,10712.074 +10415,2025-03-08T07:00:08.506813-08:00,0.0,10.73109,10731.09 +10416,2025-03-08T07:00:19.216492-08:00,0.0,10.709679,10709.679 +10417,2025-03-08T07:00:29.936461-08:00,0.0,10.719969,10719.969 +10418,2025-03-08T07:00:40.655664-08:00,0.0,10.719203,10719.203 +10419,2025-03-08T07:00:51.380043-08:00,0.0,10.724379,10724.379 +10420,2025-03-08T07:01:02.093872-08:00,0.0,10.713829,10713.829 +10421,2025-03-08T07:01:12.820645-08:00,0.0,10.726773,10726.773 +10422,2025-03-08T07:01:23.541128-08:00,0.0,10.720483,10720.483 +10423,2025-03-08T07:01:34.255463-08:00,0.0,10.714335,10714.335 +10424,2025-03-08T07:01:44.971709-08:00,0.0,10.716246,10716.246 +10425,2025-03-08T07:01:55.692527-08:00,0.0,10.720818,10720.818 +10426,2025-03-08T07:02:06.412235-08:00,0.0,10.719708,10719.708 +10427,2025-03-08T07:02:17.131464-08:00,0.0,10.719229,10719.229 +10428,2025-03-08T07:02:27.855071-08:00,0.0,10.723607,10723.607 +10429,2025-03-08T07:02:38.569809-08:00,0.0,10.714738,10714.738 +10430,2025-03-08T07:02:49.291461-08:00,0.0,10.721652,10721.652 +10431,2025-03-08T07:03:00.014572-08:00,0.0,10.723111,10723.111 +10432,2025-03-08T07:03:10.731757-08:00,0.0,10.717185,10717.185 +10433,2025-03-08T07:03:21.449644-08:00,0.0,10.717887,10717.887 +10434,2025-03-08T07:03:32.164461-08:00,0.0,10.714817,10714.817 +10435,2025-03-08T07:03:42.885485-08:00,0.0,10.721024,10721.024 +10436,2025-03-08T07:03:53.602872-08:00,0.0,10.717387,10717.387 +10437,2025-03-08T07:04:04.317672-08:00,0.0,10.7148,10714.8 +10438,2025-03-08T07:04:15.031705-08:00,0.0,10.714033,10714.033 +10439,2025-03-08T07:04:25.748566-08:00,0.0,10.716861,10716.861 +10440,2025-03-08T07:04:36.475633-08:00,0.0,10.727067,10727.067 +10441,2025-03-08T07:04:47.189678-08:00,0.0,10.714045,10714.045 +10442,2025-03-08T07:04:57.907100-08:00,0.0,10.717422,10717.422 +10443,2025-03-08T07:05:08.624079-08:00,0.0,10.716979,10716.979 +10444,2025-03-08T07:05:19.345463-08:00,0.0,10.721384,10721.384 +10445,2025-03-08T07:05:30.068672-08:00,0.0,10.723209,10723.209 +10446,2025-03-08T07:05:40.784465-08:00,0.0,10.715793,10715.793 +10447,2025-03-08T07:05:51.501760-08:00,0.0,10.717295,10717.295 +10448,2025-03-08T07:06:02.221459-08:00,0.0,10.719699,10719.699 +10449,2025-03-08T07:06:12.952548-08:00,0.0,10.731089,10731.089 +10450,2025-03-08T07:06:23.667520-08:00,0.0,10.714972,10714.972 +10451,2025-03-08T07:06:34.386532-08:00,0.0,10.719012,10719.012 +10452,2025-03-08T07:06:45.116675-08:00,0.0,10.730143,10730.143 +10453,2025-03-08T07:06:55.833709-08:00,0.0,10.717034,10717.034 +10454,2025-03-08T07:07:06.554598-08:00,0.0,10.720889,10720.889 +10455,2025-03-08T07:07:17.274256-08:00,0.0,10.719658,10719.658 +10456,2025-03-08T07:07:27.998463-08:00,0.0,10.724207,10724.207 +10457,2025-03-08T07:07:38.721628-08:00,0.0,10.723165,10723.165 +10458,2025-03-08T07:07:49.446663-08:00,0.0,10.725035,10725.035 +10459,2025-03-08T07:08:00.163638-08:00,0.0,10.716975,10716.975 +10460,2025-03-08T07:08:10.891461-08:00,0.0,10.727823,10727.823 +10461,2025-03-08T07:08:21.615544-08:00,0.0,10.724083,10724.083 +10462,2025-03-08T07:08:32.337459-08:00,0.0,10.721915,10721.915 +10463,2025-03-08T07:08:43.058899-08:00,0.0,10.72144,10721.44 +10464,2025-03-08T07:08:53.782461-08:00,0.0,10.723562,10723.562 +10465,2025-03-08T07:09:04.499910-08:00,0.0,10.717449,10717.449 +10466,2025-03-08T07:09:15.226528-08:00,0.0,10.726618,10726.618 +10467,2025-03-08T07:09:25.939635-08:00,0.0,10.713107,10713.107 +10468,2025-03-08T07:09:36.666677-08:00,0.0,10.727042,10727.042 +10469,2025-03-08T07:09:47.379471-08:00,0.0,10.712794,10712.794 +10470,2025-03-08T07:09:58.108511-08:00,0.0,10.72904,10729.04 +10471,2025-03-08T07:10:08.823779-08:00,0.0,10.715268,10715.268 +10472,2025-03-08T07:10:19.542887-08:00,0.0,10.719108,10719.108 +10473,2025-03-08T07:10:30.266315-08:00,0.0,10.723428,10723.428 +10474,2025-03-08T07:10:40.985462-08:00,0.0,10.719147,10719.147 +10475,2025-03-08T07:10:51.706458-08:00,0.0,10.720996,10720.996 +10476,2025-03-08T07:11:02.417497-08:00,0.0,10.711039,10711.039 +10477,2025-03-08T07:11:13.138672-08:00,0.0,10.721175,10721.175 +10478,2025-03-08T07:11:23.852768-08:00,0.0,10.714096,10714.096 +10479,2025-03-08T07:11:34.569464-08:00,0.0,10.716696,10716.696 +10480,2025-03-08T07:11:45.285463-08:00,0.0,10.715999,10715.999 +10481,2025-03-08T07:11:56.009822-08:00,0.0,10.724359,10724.359 +10482,2025-03-08T07:12:06.722659-08:00,0.0,10.712837,10712.837 +10483,2025-03-08T07:12:17.441633-08:00,0.0,10.718974,10718.974 +10484,2025-03-08T07:12:28.155465-08:00,0.0,10.713832,10713.832 +10485,2025-03-08T07:12:38.883628-08:00,0.0,10.728163,10728.163 +10486,2025-03-08T07:12:49.598699-08:00,0.0,10.715071,10715.071 +10487,2025-03-08T07:13:00.315484-08:00,0.0,10.716785,10716.785 +10488,2025-03-08T07:13:11.034981-08:00,0.0,10.719497,10719.497 +10489,2025-03-08T07:13:21.761587-08:00,0.0,10.726606,10726.606 +10490,2025-03-08T07:13:32.474755-08:00,0.0,10.713168,10713.168 +10491,2025-03-08T07:13:43.197045-08:00,0.0,10.72229,10722.29 +10492,2025-03-08T07:13:53.914508-08:00,0.0,10.717463,10717.463 +10493,2025-03-08T07:14:04.629463-08:00,0.0,10.714955,10714.955 +10494,2025-03-08T07:14:15.344695-08:00,0.0,10.715232,10715.232 +10495,2025-03-08T07:14:26.065523-08:00,0.0,10.720828,10720.828 +10496,2025-03-08T07:14:36.789540-08:00,0.0,10.724017,10724.017 +10497,2025-03-08T07:14:47.499467-08:00,0.0,10.709927,10709.927 +10498,2025-03-08T07:14:58.227609-08:00,0.0,10.728142,10728.142 +10499,2025-03-08T07:15:08.945645-08:00,0.0,10.718036,10718.036 +10500,2025-03-08T07:15:19.658574-08:00,0.0,10.712929,10712.929 +10501,2025-03-08T07:15:30.375666-08:00,0.0,10.717092,10717.092 +10502,2025-03-08T07:15:41.099461-08:00,0.0,10.723795,10723.795 +10503,2025-03-08T07:15:51.813533-08:00,0.0,10.714072,10714.072 +10504,2025-03-08T07:16:02.529464-08:00,0.0,10.715931,10715.931 +10505,2025-03-08T07:16:13.253622-08:00,0.0,10.724158,10724.158 +10506,2025-03-08T07:16:23.970895-08:00,0.0,10.717273,10717.273 +10507,2025-03-08T07:16:34.680457-08:00,0.0,10.709562,10709.562 +10508,2025-03-08T07:16:45.405693-08:00,0.0,10.725236,10725.236 +10509,2025-03-08T07:16:56.126476-08:00,0.0,10.720783,10720.783 +10510,2025-03-08T07:17:06.843408-08:00,0.0,10.716932,10716.932 +10511,2025-03-08T07:17:17.560524-08:00,0.0,10.717116,10717.116 +10512,2025-03-08T07:17:28.284547-08:00,0.0,10.724023,10724.023 +10513,2025-03-08T07:17:39.002648-08:00,0.0,10.718101,10718.101 +10514,2025-03-08T07:17:49.714762-08:00,0.0,10.712114,10712.114 +10515,2025-03-08T07:18:00.434645-08:00,0.0,10.719883,10719.883 +10516,2025-03-08T07:18:11.158523-08:00,0.0,10.723878,10723.878 +10517,2025-03-08T07:18:21.878649-08:00,0.0,10.720126,10720.126 +10518,2025-03-08T07:18:32.594873-08:00,0.0,10.716224,10716.224 +10519,2025-03-08T07:18:43.310483-08:00,0.0,10.71561,10715.61 +10520,2025-03-08T07:18:54.023641-08:00,0.0,10.713158,10713.158 +10521,2025-03-08T07:19:04.750183-08:00,0.0,10.726542,10726.542 +10522,2025-03-08T07:19:15.460889-08:00,0.0,10.710706,10710.706 +10523,2025-03-08T07:19:26.182525-08:00,0.0,10.721636,10721.636 +10524,2025-03-08T07:19:36.899159-08:00,0.0,10.716634,10716.634 +10525,2025-03-08T07:19:47.619464-08:00,0.0,10.720305,10720.305 +10526,2025-03-08T07:19:58.335490-08:00,0.0,10.716026,10716.026 +10527,2025-03-08T07:20:09.056638-08:00,0.0,10.721148,10721.148 +10528,2025-03-08T07:20:19.771199-08:00,0.0,10.714561,10714.561 +10529,2025-03-08T07:20:30.494464-08:00,0.0,10.723265,10723.265 +10530,2025-03-08T07:20:41.205590-08:00,0.0,10.711126,10711.126 +10531,2025-03-08T07:20:51.927299-08:00,0.0,10.721709,10721.709 +10532,2025-03-08T07:21:02.651463-08:00,0.0,10.724164,10724.164 +10533,2025-03-08T07:21:13.370647-08:00,0.0,10.719184,10719.184 +10534,2025-03-08T07:21:24.088700-08:00,0.0,10.718053,10718.053 +10535,2025-03-08T07:21:34.802540-08:00,0.0,10.71384,10713.84 +10536,2025-03-08T07:21:45.524541-08:00,0.0,10.722001,10722.001 +10537,2025-03-08T07:21:56.245267-08:00,0.0,10.720726,10720.726 +10538,2025-03-08T07:22:06.963928-08:00,0.0,10.718661,10718.661 +10539,2025-03-08T07:22:17.681159-08:00,0.0,10.717231,10717.231 +10540,2025-03-08T07:22:28.392489-08:00,0.0,10.71133,10711.33 +10541,2025-03-08T07:22:35.681470-08:00,0.0,7.288981,7288.981 +10542,2025-03-08T07:22:39.118562-08:00,0.0,3.437092,3437.092 +10543,2025-03-08T07:22:49.836457-08:00,0.0,10.717895,10717.895 +10544,2025-03-08T07:23:00.554463-08:00,0.0,10.718006,10718.006 +10545,2025-03-08T07:23:11.266464-08:00,0.0,10.712001,10712.001 +10546,2025-03-08T07:23:21.984667-08:00,0.0,10.718203,10718.203 +10547,2025-03-08T07:23:32.701673-08:00,0.0,10.717006,10717.006 +10548,2025-03-08T07:23:43.418073-08:00,0.0,10.7164,10716.4 +10549,2025-03-08T07:23:54.141538-08:00,0.0,10.723465,10723.465 +10550,2025-03-08T07:24:04.859600-08:00,0.0,10.718062,10718.062 +10551,2025-03-08T07:24:15.580718-08:00,0.0,10.721118,10721.118 +10552,2025-03-08T07:24:26.298535-08:00,0.0,10.717817,10717.817 +10553,2025-03-08T07:24:37.013658-08:00,0.0,10.715123,10715.123 +10554,2025-03-08T07:24:47.740463-08:00,0.0,10.726805,10726.805 +10555,2025-03-08T07:24:58.455855-08:00,0.0,10.715392,10715.392 +10556,2025-03-08T07:25:09.172518-08:00,0.0,10.716663,10716.663 +10557,2025-03-08T07:25:19.900649-08:00,0.0,10.728131,10728.131 +10558,2025-03-08T07:25:30.616505-08:00,0.0,10.715856,10715.856 +10559,2025-03-08T07:25:41.333745-08:00,0.0,10.71724,10717.24 +10560,2025-03-08T07:25:52.055461-08:00,0.0,10.721716,10721.716 +10561,2025-03-08T07:26:02.778557-08:00,0.0,10.723096,10723.096 +10562,2025-03-08T07:26:13.495460-08:00,0.0,10.716903,10716.903 +10563,2025-03-08T07:26:24.215969-08:00,0.0,10.720509,10720.509 +10564,2025-03-08T07:26:34.940703-08:00,0.0,10.724734,10724.734 +10565,2025-03-08T07:26:45.660463-08:00,0.0,10.71976,10719.76 +10566,2025-03-08T07:26:56.387677-08:00,0.0,10.727214,10727.214 +10567,2025-03-08T07:27:07.103459-08:00,0.0,10.715782,10715.782 +10568,2025-03-08T07:27:17.820645-08:00,0.0,10.717186,10717.186 +10569,2025-03-08T07:27:28.535463-08:00,0.0,10.714818,10714.818 +10570,2025-03-08T07:27:39.256691-08:00,0.0,10.721228,10721.228 +10571,2025-03-08T07:27:49.981538-08:00,0.0,10.724847,10724.847 +10572,2025-03-08T07:28:00.706741-08:00,0.0,10.725203,10725.203 +10573,2025-03-08T07:28:11.417537-08:00,0.0,10.710796,10710.796 +10574,2025-03-08T07:28:22.140061-08:00,0.0,10.722524,10722.524 +10575,2025-03-08T07:28:32.862660-08:00,0.0,10.722599,10722.599 +10576,2025-03-08T07:28:43.582680-08:00,0.0,10.72002,10720.02 +10577,2025-03-08T07:28:54.293531-08:00,0.0,10.710851,10710.851 +10578,2025-03-08T07:29:05.015664-08:00,0.0,10.722133,10722.133 +10579,2025-03-08T07:29:15.728863-08:00,0.0,10.713199,10713.199 +10580,2025-03-08T07:29:26.444458-08:00,0.0,10.715595,10715.595 +10581,2025-03-08T07:29:37.169673-08:00,0.0,10.725215,10725.215 +10582,2025-03-08T07:29:47.876819-08:00,0.0,10.707146,10707.146 +10583,2025-03-08T07:29:58.599465-08:00,0.0,10.722646,10722.646 +10584,2025-03-08T07:30:09.312863-08:00,0.0,10.713398,10713.398 +10585,2025-03-08T07:30:20.034538-08:00,0.0,10.721675,10721.675 +10586,2025-03-08T07:30:30.751758-08:00,0.0,10.71722,10717.22 +10587,2025-03-08T07:30:41.471494-08:00,0.0,10.719736,10719.736 +10588,2025-03-08T07:30:52.187707-08:00,0.0,10.716213,10716.213 +10589,2025-03-08T07:31:02.916639-08:00,0.0,10.728932,10728.932 +10590,2025-03-08T07:31:13.636734-08:00,0.0,10.720095,10720.095 +10591,2025-03-08T07:31:24.357461-08:00,0.0,10.720727,10720.727 +10592,2025-03-08T07:31:35.072836-08:00,0.0,10.715375,10715.375 +10593,2025-03-08T07:31:45.792661-08:00,0.0,10.719825,10719.825 +10594,2025-03-08T07:31:56.514467-08:00,0.0,10.721806,10721.806 +10595,2025-03-08T07:32:07.226645-08:00,0.0,10.712178,10712.178 +10596,2025-03-08T07:32:17.945673-08:00,0.0,10.719028,10719.028 +10597,2025-03-08T07:32:28.664859-08:00,0.0,10.719186,10719.186 +10598,2025-03-08T07:32:39.385464-08:00,0.0,10.720605,10720.605 +10599,2025-03-08T07:32:50.102483-08:00,0.0,10.717019,10717.019 +10600,2025-03-08T07:33:00.823872-08:00,0.0,10.721389,10721.389 +10601,2025-03-08T07:33:11.543490-08:00,0.0,10.719618,10719.618 +10602,2025-03-08T07:33:22.264681-08:00,0.0,10.721191,10721.191 +10603,2025-03-08T07:33:32.990483-08:00,0.0,10.725802,10725.802 +10604,2025-03-08T07:33:43.713672-08:00,0.0,10.723189,10723.189 +10605,2025-03-08T07:33:54.430645-08:00,0.0,10.716973,10716.973 +10606,2025-03-08T07:34:05.149464-08:00,0.0,10.718819,10718.819 +10607,2025-03-08T07:34:15.868521-08:00,0.0,10.719057,10719.057 +10608,2025-03-08T07:34:26.591835-08:00,0.0,10.723314,10723.314 +10609,2025-03-08T07:34:37.304458-08:00,0.0,10.712623,10712.623 +10610,2025-03-08T07:34:48.029692-08:00,0.0,10.725234,10725.234 +10611,2025-03-08T07:34:58.750616-08:00,0.0,10.720924,10720.924 +10612,2025-03-08T07:35:09.470863-08:00,0.0,10.720247,10720.247 +10613,2025-03-08T07:35:20.193461-08:00,0.0,10.722598,10722.598 +10614,2025-03-08T07:35:30.911655-08:00,0.0,10.718194,10718.194 +10615,2025-03-08T07:35:41.631466-08:00,0.0,10.719811,10719.811 +10616,2025-03-08T07:35:52.355827-08:00,0.0,10.724361,10724.361 +10617,2025-03-08T07:36:03.071599-08:00,0.0,10.715772,10715.772 +10618,2025-03-08T07:36:13.800680-08:00,0.0,10.729081,10729.081 +10619,2025-03-08T07:36:24.515667-08:00,0.0,10.714987,10714.987 +10620,2025-03-08T07:36:35.235662-08:00,0.0,10.719995,10719.995 +10621,2025-03-08T07:36:45.962488-08:00,0.0,10.726826,10726.826 +10622,2025-03-08T07:36:56.677490-08:00,0.0,10.715002,10715.002 +10623,2025-03-08T07:37:07.403670-08:00,0.0,10.72618,10726.18 +10624,2025-03-08T07:37:18.121730-08:00,0.0,10.71806,10718.06 +10625,2025-03-08T07:37:28.840457-08:00,0.0,10.718727,10718.727 +10626,2025-03-08T07:37:39.570330-08:00,0.0,10.729873,10729.873 +10627,2025-03-08T07:37:50.292556-08:00,0.0,10.722226,10722.226 +10628,2025-03-08T07:38:01.014602-08:00,0.0,10.722046,10722.046 +10629,2025-03-08T07:38:11.741463-08:00,0.0,10.726861,10726.861 +10630,2025-03-08T07:38:22.461672-08:00,0.0,10.720209,10720.209 +10631,2025-03-08T07:38:33.190858-08:00,0.0,10.729186,10729.186 +10632,2025-03-08T07:38:43.908637-08:00,0.0,10.717779,10717.779 +10633,2025-03-08T07:38:54.630463-08:00,0.0,10.721826,10721.826 +10634,2025-03-08T07:39:05.358568-08:00,0.0,10.728105,10728.105 +10635,2025-03-08T07:39:16.087481-08:00,0.0,10.728913,10728.913 +10636,2025-03-08T07:39:26.804881-08:00,0.0,10.7174,10717.4 +10637,2025-03-08T07:39:37.533569-08:00,0.0,10.728688,10728.688 +10638,2025-03-08T07:39:48.251780-08:00,0.0,10.718211,10718.211 +10639,2025-03-08T07:39:58.969598-08:00,0.0,10.717818,10717.818 +10640,2025-03-08T07:40:09.698556-08:00,0.0,10.728958,10728.958 +10641,2025-03-08T07:40:20.411531-08:00,0.0,10.712975,10712.975 +10642,2025-03-08T07:40:31.135677-08:00,0.0,10.724146,10724.146 +10643,2025-03-08T07:40:41.859499-08:00,0.0,10.723822,10723.822 +10644,2025-03-08T07:40:52.590463-08:00,0.0,10.730964,10730.964 +10645,2025-03-08T07:41:03.312561-08:00,0.0,10.722098,10722.098 +10646,2025-03-08T07:41:14.037461-08:00,0.0,10.7249,10724.9 +10647,2025-03-08T07:41:24.757680-08:00,0.0,10.720219,10720.219 +10648,2025-03-08T07:41:35.477516-08:00,0.0,10.719836,10719.836 +10649,2025-03-08T07:41:46.200639-08:00,0.0,10.723123,10723.123 +10650,2025-03-08T07:41:56.919461-08:00,0.0,10.718822,10718.822 +10651,2025-03-08T07:42:07.642645-08:00,0.0,10.723184,10723.184 +10652,2025-03-08T07:42:18.371699-08:00,0.0,10.729054,10729.054 +10653,2025-03-08T07:42:29.082464-08:00,0.0,10.710765,10710.765 +10654,2025-03-08T07:42:39.802537-08:00,0.0,10.720073,10720.073 +10655,2025-03-08T07:42:50.523808-08:00,0.0,10.721271,10721.271 +10656,2025-03-08T07:43:01.245929-08:00,0.0,10.722121,10722.121 +10657,2025-03-08T07:43:11.971065-08:00,0.0,10.725136,10725.136 +10658,2025-03-08T07:43:22.686566-08:00,0.0,10.715501,10715.501 +10659,2025-03-08T07:43:33.408001-08:00,0.0,10.721435,10721.435 +10660,2025-03-08T07:43:44.126667-08:00,0.0,10.718666,10718.666 +10661,2025-03-08T07:43:54.850494-08:00,0.0,10.723827,10723.827 +10662,2025-03-08T07:44:05.571467-08:00,0.0,10.720973,10720.973 +10663,2025-03-08T07:44:16.297825-08:00,0.0,10.726358,10726.358 +10664,2025-03-08T07:44:27.018153-08:00,0.0,10.720328,10720.328 +10665,2025-03-08T07:44:37.741463-08:00,0.0,10.72331,10723.31 +10666,2025-03-08T07:44:48.462462-08:00,0.0,10.720999,10720.999 +10667,2025-03-08T07:44:59.193652-08:00,0.0,10.73119,10731.19 +10668,2025-03-08T07:45:09.917467-08:00,0.0,10.723815,10723.815 +10669,2025-03-08T07:45:20.638669-08:00,0.0,10.721202,10721.202 +10670,2025-03-08T07:45:31.358675-08:00,0.0,10.720006,10720.006 +10671,2025-03-08T07:45:42.083639-08:00,0.0,10.724964,10724.964 +10672,2025-03-08T07:45:52.797465-08:00,0.0,10.713826,10713.826 +10673,2025-03-08T07:46:03.525874-08:00,0.0,10.728409,10728.409 +10674,2025-03-08T07:46:14.245492-08:00,0.0,10.719618,10719.618 +10675,2025-03-08T07:46:24.969658-08:00,0.0,10.724166,10724.166 +10676,2025-03-08T07:46:35.691465-08:00,0.0,10.721807,10721.807 +10677,2025-03-08T07:46:46.405671-08:00,0.0,10.714206,10714.206 +10678,2025-03-08T07:46:57.127461-08:00,0.0,10.72179,10721.79 +10679,2025-03-08T07:47:07.842494-08:00,0.0,10.715033,10715.033 +10680,2025-03-08T07:47:18.568758-08:00,0.0,10.726264,10726.264 +10681,2025-03-08T07:47:29.280456-08:00,0.0,10.711698,10711.698 +10682,2025-03-08T07:47:40.008459-08:00,0.0,10.728003,10728.003 +10683,2025-03-08T07:47:50.728464-08:00,0.0,10.720005,10720.005 +10684,2025-03-08T07:48:01.443883-08:00,0.0,10.715419,10715.419 +10685,2025-03-08T07:48:12.158461-08:00,0.0,10.714578,10714.578 +10686,2025-03-08T07:48:21.536157-08:00,0.0,9.377696,9377.696 +10687,2025-03-08T07:48:22.879945-08:00,0.0,1.343788,1343.788 +10688,2025-03-08T07:48:33.609667-08:00,0.0,10.729722,10729.722 +10689,2025-03-08T07:48:44.324868-08:00,0.0,10.715201,10715.201 +10690,2025-03-08T07:48:55.040497-08:00,0.0,10.715629,10715.629 +10691,2025-03-08T07:49:05.766190-08:00,0.0,10.725693,10725.693 +10692,2025-03-08T07:49:16.487868-08:00,0.0,10.721678,10721.678 +10693,2025-03-08T07:49:27.203463-08:00,0.0,10.715595,10715.595 +10694,2025-03-08T07:49:37.931538-08:00,0.0,10.728075,10728.075 +10695,2025-03-08T07:49:48.652757-08:00,0.0,10.721219,10721.219 +10696,2025-03-08T07:49:59.373501-08:00,0.0,10.720744,10720.744 +10697,2025-03-08T07:50:10.094461-08:00,0.0,10.72096,10720.96 +10698,2025-03-08T07:50:20.809469-08:00,0.0,10.715008,10715.008 +10699,2025-03-08T07:50:31.526540-08:00,0.0,10.717071,10717.071 +10700,2025-03-08T07:50:42.251960-08:00,0.0,10.72542,10725.42 +10701,2025-03-08T07:50:52.967115-08:00,0.0,10.715155,10715.155 +10702,2025-03-08T07:51:03.693602-08:00,0.0,10.726487,10726.487 +10703,2025-03-08T07:51:14.405672-08:00,0.0,10.71207,10712.07 +10704,2025-03-08T07:51:25.134867-08:00,0.0,10.729195,10729.195 +10705,2025-03-08T07:51:35.855465-08:00,0.0,10.720598,10720.598 +10706,2025-03-08T07:51:46.573637-08:00,0.0,10.718172,10718.172 +10707,2025-03-08T07:51:57.291557-08:00,0.0,10.71792,10717.92 +10708,2025-03-08T07:52:08.005462-08:00,0.0,10.713905,10713.905 +10709,2025-03-08T07:52:18.728475-08:00,0.0,10.723013,10723.013 +10710,2025-03-08T07:52:29.450509-08:00,0.0,10.722034,10722.034 +10711,2025-03-08T07:52:40.167335-08:00,0.0,10.716826,10716.826 +10712,2025-03-08T07:52:50.888906-08:00,0.0,10.721571,10721.571 +10713,2025-03-08T07:53:01.620064-08:00,0.0,10.731158,10731.158 +10714,2025-03-08T07:53:12.344580-08:00,0.0,10.724516,10724.516 +10715,2025-03-08T07:53:23.063932-08:00,0.0,10.719352,10719.352 +10716,2025-03-08T07:53:33.775054-08:00,0.0,10.711122,10711.122 +10717,2025-03-08T07:53:44.504124-08:00,0.0,10.72907,10729.07 +10718,2025-03-08T07:53:55.220903-08:00,0.0,10.716779,10716.779 +10719,2025-03-08T07:54:05.939936-08:00,0.0,10.719033,10719.033 +10720,2025-03-08T07:54:16.660910-08:00,0.0,10.720974,10720.974 +10721,2025-03-08T07:54:27.390055-08:00,0.0,10.729145,10729.145 +10722,2025-03-08T07:54:38.111156-08:00,0.0,10.721101,10721.101 +10723,2025-03-08T07:54:48.827507-08:00,0.0,10.716351,10716.351 +10724,2025-03-08T07:54:59.551115-08:00,0.0,10.723608,10723.608 +10725,2025-03-08T07:55:10.280909-08:00,0.0,10.729794,10729.794 +10726,2025-03-08T07:55:20.999930-08:00,0.0,10.719021,10719.021 +10727,2025-03-08T07:55:31.716749-08:00,0.0,10.716819,10716.819 +10728,2025-03-08T07:55:42.441907-08:00,0.0,10.725158,10725.158 +10729,2025-03-08T07:55:53.158912-08:00,0.0,10.717005,10717.005 +10730,2025-03-08T07:56:03.886270-08:00,0.0,10.727358,10727.358 +10731,2025-03-08T07:56:14.604540-08:00,0.0,10.71827,10718.27 +10732,2025-03-08T07:56:25.334402-08:00,0.0,10.729862,10729.862 +10733,2025-03-08T07:56:36.048905-08:00,0.0,10.714503,10714.503 +10734,2025-03-08T07:56:46.764119-08:00,0.0,10.715214,10715.214 +10735,2025-03-08T07:56:57.489138-08:00,0.0,10.725019,10725.019 +10736,2025-03-08T07:57:08.206910-08:00,0.0,10.717772,10717.772 +10737,2025-03-08T07:57:18.935158-08:00,0.0,10.728248,10728.248 +10738,2025-03-08T07:57:29.648907-08:00,0.0,10.713749,10713.749 +10739,2025-03-08T07:57:40.371114-08:00,0.0,10.722207,10722.207 +10740,2025-03-08T07:57:51.096062-08:00,0.0,10.724948,10724.948 +10741,2025-03-08T07:58:01.814093-08:00,0.0,10.718031,10718.031 +10742,2025-03-08T07:58:12.533942-08:00,0.0,10.719849,10719.849 +10743,2025-03-08T07:58:23.253090-08:00,0.0,10.719148,10719.148 +10744,2025-03-08T07:58:33.971068-08:00,0.0,10.717978,10717.978 +10745,2025-03-08T07:58:44.691931-08:00,0.0,10.720863,10720.863 +10746,2025-03-08T07:58:55.417924-08:00,0.0,10.725993,10725.993 +10747,2025-03-08T07:59:06.134328-08:00,0.0,10.716404,10716.404 +10748,2025-03-08T07:59:16.852111-08:00,0.0,10.717783,10717.783 +10749,2025-03-08T07:59:27.570906-08:00,0.0,10.718795,10718.795 +10750,2025-03-08T07:59:38.290956-08:00,0.0,10.72005,10720.05 +10751,2025-03-08T07:59:49.008910-08:00,0.0,10.717954,10717.954 +10752,2025-03-08T07:59:59.737099-08:00,0.0,10.728189,10728.189 +10753,2025-03-08T08:00:10.455907-08:00,0.0,10.718808,10718.808 +10754,2025-03-08T08:00:21.169100-08:00,0.0,10.713193,10713.193 +10755,2025-03-08T08:00:31.895110-08:00,0.0,10.72601,10726.01 +10756,2025-03-08T08:00:42.610362-08:00,0.0,10.715252,10715.252 +10757,2025-03-08T08:00:53.333030-08:00,0.0,10.722668,10722.668 +10758,2025-03-08T08:01:04.060080-08:00,0.0,10.72705,10727.05 +10759,2025-03-08T08:01:14.781907-08:00,0.0,10.721827,10721.827 +10760,2025-03-08T08:01:25.494355-08:00,0.0,10.712448,10712.448 +10761,2025-03-08T08:01:36.219096-08:00,0.0,10.724741,10724.741 +10762,2025-03-08T08:01:46.937115-08:00,0.0,10.718019,10718.019 +10763,2025-03-08T08:01:57.653908-08:00,0.0,10.716793,10716.793 +10764,2025-03-08T08:02:08.372942-08:00,0.0,10.719034,10719.034 +10765,2025-03-08T08:02:19.091098-08:00,0.0,10.718156,10718.156 +10766,2025-03-08T08:02:29.816240-08:00,0.0,10.725142,10725.142 +10767,2025-03-08T08:02:40.535909-08:00,0.0,10.719669,10719.669 +10768,2025-03-08T08:02:51.245907-08:00,0.0,10.709998,10709.998 +10769,2025-03-08T08:03:01.977752-08:00,0.0,10.731845,10731.845 +10770,2025-03-08T08:03:12.693905-08:00,0.0,10.716153,10716.153 +10771,2025-03-08T08:03:23.415131-08:00,0.0,10.721226,10721.226 +10772,2025-03-08T08:03:34.126150-08:00,0.0,10.711019,10711.019 +10773,2025-03-08T08:03:44.854823-08:00,0.0,10.728673,10728.673 +10774,2025-03-08T08:03:55.576970-08:00,0.0,10.722147,10722.147 +10775,2025-03-08T08:04:06.293931-08:00,0.0,10.716961,10716.961 +10776,2025-03-08T08:04:17.008091-08:00,0.0,10.71416,10714.16 +10777,2025-03-08T08:04:27.736176-08:00,0.0,10.728085,10728.085 +10778,2025-03-08T08:04:38.455902-08:00,0.0,10.719726,10719.726 +10779,2025-03-08T08:04:49.170075-08:00,0.0,10.714173,10714.173 +10780,2025-03-08T08:04:59.889087-08:00,0.0,10.719012,10719.012 +10781,2025-03-08T08:05:10.608118-08:00,0.0,10.719031,10719.031 +10782,2025-03-08T08:05:21.328148-08:00,0.0,10.72003,10720.03 +10783,2025-03-08T08:05:32.050911-08:00,0.0,10.722763,10722.763 +10784,2025-03-08T08:05:42.769163-08:00,0.0,10.718252,10718.252 +10785,2025-03-08T08:05:53.486120-08:00,0.0,10.716957,10716.957 +10786,2025-03-08T08:06:04.210125-08:00,0.0,10.724005,10724.005 +10787,2025-03-08T08:06:14.928048-08:00,0.0,10.717923,10717.923 +10788,2025-03-08T08:06:25.641910-08:00,0.0,10.713862,10713.862 +10789,2025-03-08T08:06:36.358301-08:00,0.0,10.716391,10716.391 +10790,2025-03-08T08:06:47.077965-08:00,0.0,10.719664,10719.664 +10791,2025-03-08T08:06:57.807511-08:00,0.0,10.729546,10729.546 +10792,2025-03-08T08:07:08.528117-08:00,0.0,10.720606,10720.606 +10793,2025-03-08T08:07:19.247104-08:00,0.0,10.718987,10718.987 +10794,2025-03-08T08:07:29.964158-08:00,0.0,10.717054,10717.054 +10795,2025-03-08T08:07:40.691016-08:00,0.0,10.726858,10726.858 +10796,2025-03-08T08:07:51.409123-08:00,0.0,10.718107,10718.107 +10797,2025-03-08T08:08:02.132091-08:00,0.0,10.722968,10722.968 +10798,2025-03-08T08:08:12.855911-08:00,0.0,10.72382,10723.82 +10799,2025-03-08T08:08:23.574087-08:00,0.0,10.718176,10718.176 +10800,2025-03-08T08:08:34.299407-08:00,0.0,10.72532,10725.32 +10801,2025-03-08T08:08:45.019122-08:00,0.0,10.719715,10719.715 +10802,2025-03-08T08:08:55.733912-08:00,0.0,10.71479,10714.79 +10803,2025-03-08T08:09:06.450910-08:00,0.0,10.716998,10716.998 +10804,2025-03-08T08:09:17.169212-08:00,0.0,10.718302,10718.302 +10805,2025-03-08T08:09:27.895021-08:00,0.0,10.725809,10725.809 +10806,2025-03-08T08:09:38.619932-08:00,0.0,10.724911,10724.911 +10807,2025-03-08T08:09:49.331956-08:00,0.0,10.712024,10712.024 +10808,2025-03-08T08:10:00.047297-08:00,0.0,10.715341,10715.341 +10809,2025-03-08T08:10:10.772909-08:00,0.0,10.725612,10725.612 +10810,2025-03-08T08:10:21.496692-08:00,0.0,10.723783,10723.783 +10811,2025-03-08T08:10:32.207019-08:00,0.0,10.710327,10710.327 +10812,2025-03-08T08:10:42.932118-08:00,0.0,10.725099,10725.099 +10813,2025-03-08T08:10:53.659007-08:00,0.0,10.726889,10726.889 +10814,2025-03-08T08:11:04.384256-08:00,0.0,10.725249,10725.249 +10815,2025-03-08T08:11:15.095524-08:00,0.0,10.711268,10711.268 +10816,2025-03-08T08:11:25.823082-08:00,0.0,10.727558,10727.558 +10817,2025-03-08T08:11:36.533048-08:00,0.0,10.709966,10709.966 +10818,2025-03-08T08:11:47.252917-08:00,0.0,10.719869,10719.869 +10819,2025-03-08T08:11:57.982113-08:00,0.0,10.729196,10729.196 +10820,2025-03-08T08:12:08.695928-08:00,0.0,10.713815,10713.815 +10821,2025-03-08T08:12:19.421103-08:00,0.0,10.725175,10725.175 +10822,2025-03-08T08:12:30.138907-08:00,0.0,10.717804,10717.804 +10823,2025-03-08T08:12:40.861119-08:00,0.0,10.722212,10722.212 +10824,2025-03-08T08:12:51.582982-08:00,0.0,10.721863,10721.863 +10825,2025-03-08T08:13:02.293309-08:00,0.0,10.710327,10710.327 +10826,2025-03-08T08:13:13.013913-08:00,0.0,10.720604,10720.604 +10827,2025-03-08T08:13:23.741144-08:00,0.0,10.727231,10727.231 +10828,2025-03-08T08:13:34.457907-08:00,0.0,10.716763,10716.763 +10829,2025-03-08T08:13:45.177109-08:00,0.0,10.719202,10719.202 +10830,2025-03-08T08:13:55.901938-08:00,0.0,10.724829,10724.829 +10831,2025-03-08T08:14:06.621303-08:00,0.0,10.719365,10719.365 +10832,2025-03-08T08:14:17.336305-08:00,0.0,10.715002,10715.002 +10833,2025-03-08T08:14:28.060752-08:00,0.0,10.724447,10724.447 +10834,2025-03-08T08:14:38.775910-08:00,0.0,10.715158,10715.158 +10835,2025-03-08T08:14:49.494910-08:00,0.0,10.719,10719.0 +10836,2025-03-08T08:15:00.215313-08:00,0.0,10.720403,10720.403 +10837,2025-03-08T08:15:10.932670-08:00,0.0,10.717357,10717.357 +10838,2025-03-08T08:15:21.652088-08:00,0.0,10.719418,10719.418 +10839,2025-03-08T08:15:32.368387-08:00,0.0,10.716299,10716.299 +10840,2025-03-08T08:15:43.090070-08:00,0.0,10.721683,10721.683 +10841,2025-03-08T08:15:53.810111-08:00,0.0,10.720041,10720.041 +10842,2025-03-08T08:16:04.535078-08:00,0.0,10.724967,10724.967 +10843,2025-03-08T08:16:15.248906-08:00,0.0,10.713828,10713.828 +10844,2025-03-08T08:16:25.972883-08:00,0.0,10.723977,10723.977 +10845,2025-03-08T08:16:36.693119-08:00,0.0,10.720236,10720.236 +10846,2025-03-08T08:16:47.412038-08:00,0.0,10.718919,10718.919 +10847,2025-03-08T08:16:58.125617-08:00,0.0,10.713579,10713.579 +10848,2025-03-08T08:17:08.846910-08:00,0.0,10.721293,10721.293 +10849,2025-03-08T08:17:19.568943-08:00,0.0,10.722033,10722.033 +10850,2025-03-08T08:17:30.285114-08:00,0.0,10.716171,10716.171 +10851,2025-03-08T08:17:40.999789-08:00,0.0,10.714675,10714.675 +10852,2025-03-08T08:17:51.721573-08:00,0.0,10.721784,10721.784 +10853,2025-03-08T08:18:02.437035-08:00,0.0,10.715462,10715.462 +10854,2025-03-08T08:18:13.157087-08:00,0.0,10.720052,10720.052 +10855,2025-03-08T08:18:23.876159-08:00,0.0,10.719072,10719.072 +10856,2025-03-08T08:18:34.589111-08:00,0.0,10.712952,10712.952 +10857,2025-03-08T08:18:45.316907-08:00,0.0,10.727796,10727.796 +10858,2025-03-08T08:18:56.030066-08:00,0.0,10.713159,10713.159 +10859,2025-03-08T08:19:06.743246-08:00,0.0,10.71318,10713.18 +10860,2025-03-08T08:19:17.462907-08:00,0.0,10.719661,10719.661 +10861,2025-03-08T08:19:28.189098-08:00,0.0,10.726191,10726.191 +10862,2025-03-08T08:19:38.901940-08:00,0.0,10.712842,10712.842 +10863,2025-03-08T08:19:49.618289-08:00,0.0,10.716349,10716.349 +10864,2025-03-08T08:20:00.333484-08:00,0.0,10.715195,10715.195 +10865,2025-03-08T08:20:11.055575-08:00,0.0,10.722091,10722.091 +10866,2025-03-08T08:20:21.774910-08:00,0.0,10.719335,10719.335 +10867,2025-03-08T08:20:32.485909-08:00,0.0,10.710999,10710.999 +10868,2025-03-08T08:20:43.213091-08:00,0.0,10.727182,10727.182 +10869,2025-03-08T08:20:53.923906-08:00,0.0,10.710815,10710.815 +10870,2025-03-08T08:21:04.642094-08:00,0.0,10.718188,10718.188 +10871,2025-03-08T08:21:15.361056-08:00,0.0,10.718962,10718.962 +10872,2025-03-08T08:21:26.083946-08:00,0.0,10.72289,10722.89 +10873,2025-03-08T08:21:36.799936-08:00,0.0,10.71599,10715.99 +10874,2025-03-08T08:21:47.522932-08:00,0.0,10.722996,10722.996 +10875,2025-03-08T08:21:58.236251-08:00,0.0,10.713319,10713.319 +10876,2025-03-08T08:22:08.954194-08:00,0.0,10.717943,10717.943 +10877,2025-03-08T08:22:19.670085-08:00,0.0,10.715891,10715.891 +10878,2025-03-08T08:22:30.393013-08:00,0.0,10.722928,10722.928 +10879,2025-03-08T08:22:41.113088-08:00,0.0,10.720075,10720.075 +10880,2025-03-08T08:22:51.833111-08:00,0.0,10.720023,10720.023 +10881,2025-03-08T08:23:02.553645-08:00,0.0,10.720534,10720.534 +10882,2025-03-08T08:23:13.268200-08:00,0.0,10.714555,10714.555 +10883,2025-03-08T08:23:23.993007-08:00,0.0,10.724807,10724.807 +10884,2025-03-08T08:23:34.714902-08:00,4.0,10.721895,10721.895 +10885,2025-03-08T08:23:45.429907-08:00,0.0,10.715005,10715.005 +10886,2025-03-08T08:23:56.143093-08:00,0.0,10.713186,10713.186 +10887,2025-03-08T08:24:06.866111-08:00,0.0,10.723018,10723.018 +10888,2025-03-08T08:24:17.591940-08:00,5.0,10.725829,10725.829 +10889,2025-03-08T08:24:28.310909-08:00,4.0,10.718969,10718.969 +10890,2025-03-08T08:24:39.023087-08:00,0.0,10.712178,10712.178 +10891,2025-03-08T08:24:49.744908-08:00,0.0,10.721821,10721.821 +10892,2025-03-08T08:25:00.466989-08:00,2.0,10.722081,10722.081 +10893,2025-03-08T08:25:11.186937-08:00,0.0,10.719948,10719.948 +10894,2025-03-08T08:25:21.908995-08:00,0.0,10.722058,10722.058 +10895,2025-03-08T08:25:32.632139-08:00,0.0,10.723144,10723.144 +10896,2025-03-08T08:25:40.873750-08:00,0.0,8.241611,8241.611 +10897,2025-03-08T08:25:43.343076-08:00,0.0,2.469326,2469.326 +10898,2025-03-08T08:25:54.073907-08:00,0.0,10.730831,10730.831 +10899,2025-03-08T08:26:04.797438-08:00,0.0,10.723531,10723.531 +10900,2025-03-08T08:26:15.510907-08:00,0.0,10.713469,10713.469 +10901,2025-03-08T08:26:26.227594-08:00,0.0,10.716687,10716.687 +10902,2025-03-08T08:26:36.946081-08:00,0.0,10.718487,10718.487 +10903,2025-03-08T08:26:47.674906-08:00,0.0,10.728825,10728.825 +10904,2025-03-08T08:26:58.392959-08:00,0.0,10.718053,10718.053 +10905,2025-03-08T08:27:09.115385-08:00,0.0,10.722426,10722.426 +10906,2025-03-08T08:27:19.826627-08:00,0.0,10.711242,10711.242 +10907,2025-03-08T08:27:30.549062-08:00,0.0,10.722435,10722.435 +10908,2025-03-08T08:27:41.268797-08:00,0.0,10.719735,10719.735 +10909,2025-03-08T08:27:51.985935-08:00,0.0,10.717138,10717.138 +10910,2025-03-08T08:28:02.705112-08:00,0.0,10.719177,10719.177 +10911,2025-03-08T08:28:13.420910-08:00,0.0,10.715798,10715.798 +10912,2025-03-08T08:28:24.134009-08:00,0.0,10.713099,10713.099 +10913,2025-03-08T08:28:34.856078-08:00,0.0,10.722069,10722.069 +10914,2025-03-08T08:28:45.572200-08:00,0.0,10.716122,10716.122 +10915,2025-03-08T08:28:56.292493-08:00,0.0,10.720293,10720.293 +10916,2025-03-08T08:29:07.014907-08:00,0.0,10.722414,10722.414 +10917,2025-03-08T08:29:17.732983-08:00,0.0,10.718076,10718.076 +10918,2025-03-08T08:29:28.450908-08:00,0.0,10.717925,10717.925 +10919,2025-03-08T08:29:39.177945-08:00,0.0,10.727037,10727.037 +10920,2025-03-08T08:29:49.899910-08:00,0.0,10.721965,10721.965 +10921,2025-03-08T08:30:00.613112-08:00,0.0,10.713202,10713.202 +10922,2025-03-08T08:30:11.336910-08:00,0.0,10.723798,10723.798 +10923,2025-03-08T08:30:22.052910-08:00,0.0,10.716,10716.0 +10924,2025-03-08T08:30:32.780122-08:00,0.0,10.727212,10727.212 +10925,2025-03-08T08:30:43.496121-08:00,0.0,10.715999,10715.999 +10926,2025-03-08T08:30:54.223909-08:00,0.0,10.727788,10727.788 +10927,2025-03-08T08:31:04.942976-08:00,0.0,10.719067,10719.067 +10928,2025-03-08T08:31:15.661908-08:00,0.0,10.718932,10718.932 +10929,2025-03-08T08:31:26.380010-08:00,0.0,10.718102,10718.102 +10930,2025-03-08T08:31:37.111910-08:00,0.0,10.7319,10731.9 +10931,2025-03-08T08:31:47.835309-08:00,0.0,10.723399,10723.399 +10932,2025-03-08T08:31:58.552078-08:00,0.0,10.716769,10716.769 +10933,2025-03-08T08:32:09.281929-08:00,0.0,10.729851,10729.851 +10934,2025-03-08T08:32:20.006338-08:00,0.0,10.724409,10724.409 +10935,2025-03-08T08:32:30.727053-08:00,0.0,10.720715,10720.715 +10936,2025-03-08T08:32:41.449914-08:00,0.0,10.722861,10722.861 +10937,2025-03-08T08:32:52.168112-08:00,0.0,10.718198,10718.198 +10938,2025-03-08T08:33:02.894260-08:00,0.0,10.726148,10726.148 +10939,2025-03-08T08:33:13.611933-08:00,0.0,10.717673,10717.673 +10940,2025-03-08T08:33:24.337406-08:00,0.0,10.725473,10725.473 +10941,2025-03-08T08:33:35.055905-08:00,0.0,10.718499,10718.499 +10942,2025-03-08T08:33:45.774121-08:00,0.0,10.718216,10718.216 +10943,2025-03-08T08:33:56.493434-08:00,0.0,10.719313,10719.313 +10944,2025-03-08T08:34:07.211975-08:00,0.0,10.718541,10718.541 +10945,2025-03-08T08:34:17.931010-08:00,0.0,10.719035,10719.035 +10946,2025-03-08T08:34:28.649096-08:00,0.0,10.718086,10718.086 +10947,2025-03-08T08:34:39.369920-08:00,0.0,10.720824,10720.824 +10948,2025-03-08T08:34:50.084104-08:00,0.0,10.714184,10714.184 +10949,2025-03-08T08:35:00.811908-08:00,0.0,10.727804,10727.804 +10950,2025-03-08T08:35:11.519968-08:00,0.0,10.70806,10708.06 +10951,2025-03-08T08:35:22.239032-08:00,0.0,10.719064,10719.064 +10952,2025-03-08T08:35:32.962109-08:00,0.0,10.723077,10723.077 +10953,2025-03-08T08:35:43.681009-08:00,0.0,10.7189,10718.9 +10954,2025-03-08T08:35:54.404978-08:00,0.0,10.723969,10723.969 +10955,2025-03-08T08:36:05.128134-08:00,0.0,10.723156,10723.156 +10956,2025-03-08T08:36:15.842907-08:00,0.0,10.714773,10714.773 +10957,2025-03-08T08:36:26.565103-08:00,0.0,10.722196,10722.196 +10958,2025-03-08T08:36:37.286685-08:00,0.0,10.721582,10721.582 +10959,2025-03-08T08:36:48.009090-08:00,0.0,10.722405,10722.405 +10960,2025-03-08T08:36:58.722907-08:00,0.0,10.713817,10713.817 +10961,2025-03-08T08:37:09.440929-08:00,0.0,10.718022,10718.022 +10962,2025-03-08T08:37:20.153944-08:00,0.0,10.713015,10713.015 +10963,2025-03-08T08:37:30.875139-08:00,0.0,10.721195,10721.195 +10964,2025-03-08T08:37:41.595118-08:00,0.0,10.719979,10719.979 +10965,2025-03-08T08:37:52.318907-08:00,0.0,10.723789,10723.789 +10966,2025-03-08T08:38:03.038086-08:00,0.0,10.719179,10719.179 +10967,2025-03-08T08:38:13.761122-08:00,0.0,10.723036,10723.036 +10968,2025-03-08T08:38:24.478118-08:00,0.0,10.716996,10716.996 +10969,2025-03-08T08:38:35.193069-08:00,0.0,10.714951,10714.951 +10970,2025-03-08T08:38:45.912907-08:00,0.0,10.719838,10719.838 +10971,2025-03-08T08:38:56.636084-08:00,0.0,10.723177,10723.177 +10972,2025-03-08T08:39:07.345116-08:00,0.0,10.709032,10709.032 +10973,2025-03-08T08:39:18.075159-08:00,0.0,10.730043,10730.043 +10974,2025-03-08T08:39:28.790974-08:00,0.0,10.715815,10715.815 +10975,2025-03-08T08:39:39.504102-08:00,0.0,10.713128,10713.128 +10976,2025-03-08T08:39:50.230752-08:00,0.0,10.72665,10726.65 +10977,2025-03-08T08:40:00.945475-08:00,0.0,10.714723,10714.723 +10978,2025-03-08T08:40:11.673909-08:00,0.0,10.728434,10728.434 +10979,2025-03-08T08:40:22.392103-08:00,0.0,10.718194,10718.194 +10980,2025-03-08T08:40:33.109024-08:00,0.0,10.716921,10716.921 +10981,2025-03-08T08:40:43.824904-08:00,0.0,10.71588,10715.88 +10982,2025-03-08T08:40:54.543386-08:00,0.0,10.718482,10718.482 +10983,2025-03-08T08:41:05.271030-08:00,0.0,10.727644,10727.644 +10984,2025-03-08T08:41:15.983558-08:00,0.0,10.712528,10712.528 +10985,2025-03-08T08:41:26.710902-08:00,0.0,10.727344,10727.344 +10986,2025-03-08T08:41:37.426928-08:00,0.0,10.716026,10716.026 +10987,2025-03-08T08:41:48.144961-08:00,0.0,10.718033,10718.033 +10988,2025-03-08T08:41:58.862115-08:00,0.0,10.717154,10717.154 +10989,2025-03-08T08:42:09.578290-08:00,0.0,10.716175,10716.175 +10990,2025-03-08T08:42:20.311079-08:00,0.0,10.732789,10732.789 +10991,2025-03-08T08:42:31.028685-08:00,0.0,10.717606,10717.606 +10992,2025-03-08T08:42:41.742907-08:00,0.0,10.714222,10714.222 +10993,2025-03-08T08:42:52.465227-08:00,0.0,10.72232,10722.32 +10994,2025-03-08T08:43:03.176970-08:00,0.0,10.711743,10711.743 +10995,2025-03-08T08:43:13.907910-08:00,0.0,10.73094,10730.94 +10996,2025-03-08T08:43:24.620450-08:00,0.0,10.71254,10712.54 +10997,2025-03-08T08:43:35.342125-08:00,0.0,10.721675,10721.675 +10998,2025-03-08T08:43:46.061939-08:00,0.0,10.719814,10719.814 +10999,2025-03-08T08:43:56.780090-08:00,0.0,10.718151,10718.151 +11000,2025-03-08T08:44:07.495612-08:00,0.0,10.715522,10715.522 +11001,2025-03-08T08:44:18.217826-08:00,0.0,10.722214,10722.214 +11002,2025-03-08T08:44:28.937908-08:00,0.0,10.720082,10720.082 +11003,2025-03-08T08:44:39.655985-08:00,0.0,10.718077,10718.077 +11004,2025-03-08T08:44:50.374911-08:00,0.0,10.718926,10718.926 +11005,2025-03-08T08:45:01.089909-08:00,0.0,10.714998,10714.998 +11006,2025-03-08T08:45:11.810840-08:00,0.0,10.720931,10720.931 +11007,2025-03-08T08:45:22.530910-08:00,0.0,10.72007,10720.07 +11008,2025-03-08T08:45:33.247103-08:00,0.0,10.716193,10716.193 +11009,2025-03-08T08:45:43.962102-08:00,0.0,10.714999,10714.999 +11010,2025-03-08T08:45:54.680911-08:00,0.0,10.718809,10718.809 +11011,2025-03-08T08:46:05.401907-08:00,0.0,10.720996,10720.996 +11012,2025-03-08T08:46:16.124049-08:00,0.0,10.722142,10722.142 +11013,2025-03-08T08:46:26.844092-08:00,0.0,10.720043,10720.043 +11014,2025-03-08T08:46:37.565113-08:00,0.0,10.721021,10721.021 +11015,2025-03-08T08:46:48.282906-08:00,0.0,10.717793,10717.793 +11016,2025-03-08T08:46:58.998908-08:00,0.0,10.716002,10716.002 +11017,2025-03-08T08:47:09.716088-08:00,0.0,10.71718,10717.18 +11018,2025-03-08T08:47:20.429909-08:00,0.0,10.713821,10713.821 +11019,2025-03-08T08:47:31.151330-08:00,0.0,10.721421,10721.421 +11020,2025-03-08T08:47:41.866321-08:00,0.0,10.714991,10714.991 +11021,2025-03-08T08:47:52.583907-08:00,0.0,10.717586,10717.586 +11022,2025-03-08T08:48:03.299080-08:00,0.0,10.715173,10715.173 +11023,2025-03-08T08:48:14.019911-08:00,0.0,10.720831,10720.831 +11024,2025-03-08T08:48:24.731910-08:00,0.0,10.711999,10711.999 +11025,2025-03-08T08:48:35.453153-08:00,0.0,10.721243,10721.243 +11026,2025-03-08T08:48:46.163902-08:00,0.0,10.710749,10710.749 +11027,2025-03-08T08:48:56.884092-08:00,0.0,10.72019,10720.19 +11028,2025-03-08T08:49:07.601909-08:00,0.0,10.717817,10717.817 +11029,2025-03-08T08:49:18.316980-08:00,0.0,10.715071,10715.071 +11030,2025-03-08T08:49:29.034335-08:00,0.0,10.717355,10717.355 +11031,2025-03-08T08:49:39.758936-08:00,0.0,10.724601,10724.601 +11032,2025-03-08T08:49:50.469262-08:00,0.0,10.710326,10710.326 +11033,2025-03-08T08:50:01.191906-08:00,0.0,10.722644,10722.644 +11034,2025-03-08T08:50:11.906699-08:00,0.0,10.714793,10714.793 +11035,2025-03-08T08:50:22.630673-08:00,0.0,10.723974,10723.974 +11036,2025-03-08T08:50:33.340061-08:00,0.0,10.709388,10709.388 +11037,2025-03-08T08:50:44.064092-08:00,0.0,10.724031,10724.031 +11038,2025-03-08T08:50:54.778909-08:00,0.0,10.714817,10714.817 +11039,2025-03-08T08:51:05.495166-08:00,0.0,10.716257,10716.257 +11040,2025-03-08T08:51:16.207321-08:00,0.0,10.712155,10712.155 +11041,2025-03-08T08:51:26.927908-08:00,0.0,10.720587,10720.587 +11042,2025-03-08T08:51:37.645976-08:00,0.0,10.718068,10718.068 +11043,2025-03-08T08:51:48.366911-08:00,0.0,10.720935,10720.935 +11044,2025-03-08T08:51:59.082105-08:00,0.0,10.715194,10715.194 +11045,2025-03-08T08:52:09.790122-08:00,0.0,10.708017,10708.017 +11046,2025-03-08T08:52:20.541954-08:00,0.0,10.751832,10751.832 +11047,2025-03-08T08:52:31.260202-08:00,0.0,10.718248,10718.248 +11048,2025-03-08T08:52:41.974961-08:00,0.0,10.714759,10714.759 +11049,2025-03-08T08:52:52.685731-08:00,0.0,10.71077,10710.77 +11050,2025-03-08T08:53:03.401957-08:00,0.0,10.716226,10716.226 +11051,2025-03-08T08:53:14.118133-08:00,0.0,10.716176,10716.176 +11052,2025-03-08T08:53:24.843118-08:00,0.0,10.724985,10724.985 +11053,2025-03-08T08:53:35.554974-08:00,0.0,10.711856,10711.856 +11054,2025-03-08T08:53:46.279513-08:00,0.0,10.724539,10724.539 +11055,2025-03-08T08:53:56.993942-08:00,0.0,10.714429,10714.429 +11056,2025-03-08T08:54:07.708167-08:00,0.0,10.714225,10714.225 +11057,2025-03-08T08:54:18.425130-08:00,0.0,10.716963,10716.963 +11058,2025-03-08T08:54:29.146932-08:00,0.0,10.721802,10721.802 +11059,2025-03-08T08:54:39.864936-08:00,0.0,10.718004,10718.004 +11060,2025-03-08T08:54:50.579933-08:00,0.0,10.714997,10714.997 +11061,2025-03-08T08:55:01.299307-08:00,0.0,10.719374,10719.374 +11062,2025-03-08T08:55:12.017007-08:00,0.0,10.7177,10717.7 +11063,2025-03-08T08:55:22.734154-08:00,0.0,10.717147,10717.147 +11064,2025-03-08T08:55:33.449118-08:00,0.0,10.714964,10714.964 +11065,2025-03-08T08:55:44.164940-08:00,0.0,10.715822,10715.822 +11066,2025-03-08T08:55:54.890161-08:00,0.0,10.725221,10725.221 +11067,2025-03-08T08:56:05.605996-08:00,0.0,10.715835,10715.835 +11068,2025-03-08T08:56:16.320613-08:00,0.0,10.714617,10714.617 +11069,2025-03-08T08:56:27.037035-08:00,0.0,10.716422,10716.422 +11070,2025-03-08T08:56:37.743935-08:00,0.0,10.7069,10706.9 +11071,2025-03-08T08:56:48.461171-08:00,0.0,10.717236,10717.236 +11072,2025-03-08T08:56:59.173012-08:00,0.0,10.711841,10711.841 +11073,2025-03-08T08:57:09.889138-08:00,0.0,10.716126,10716.126 +11074,2025-03-08T08:57:20.609326-08:00,0.0,10.720188,10720.188 +11075,2025-03-08T08:57:31.322932-08:00,0.0,10.713606,10713.606 +11076,2025-03-08T08:57:42.043668-08:00,0.0,10.720736,10720.736 +11077,2025-03-08T08:57:52.753145-08:00,0.0,10.709477,10709.477 +11078,2025-03-08T08:58:03.462937-08:00,0.0,10.709792,10709.792 +11079,2025-03-08T08:58:14.188325-08:00,0.0,10.725388,10725.388 +11080,2025-03-08T08:58:24.906007-08:00,0.0,10.717682,10717.682 +11081,2025-03-08T08:58:35.621000-08:00,0.0,10.714993,10714.993 +11082,2025-03-08T08:58:46.338941-08:00,0.0,10.717941,10717.941 +11083,2025-03-08T08:58:57.053934-08:00,0.0,10.714993,10714.993 +11084,2025-03-08T08:59:07.776298-08:00,0.0,10.722364,10722.364 +11085,2025-03-08T08:59:18.490932-08:00,0.0,10.714634,10714.634 +11086,2025-03-08T08:59:29.210372-08:00,0.0,10.71944,10719.44 +11087,2025-03-08T08:59:39.930936-08:00,0.0,10.720564,10720.564 +11088,2025-03-08T08:59:50.655527-08:00,0.0,10.724591,10724.591 +11089,2025-03-08T09:00:01.368035-08:00,0.0,10.712508,10712.508 +11090,2025-03-08T09:00:12.084931-08:00,0.0,10.716896,10716.896 +11091,2025-03-08T09:00:22.806231-08:00,0.0,10.7213,10721.3 +11092,2025-03-08T09:00:33.526934-08:00,0.0,10.720703,10720.703 +11093,2025-03-08T09:00:44.250036-08:00,0.0,10.723102,10723.102 +11094,2025-03-08T09:00:54.965958-08:00,0.0,10.715922,10715.922 +11095,2025-03-08T09:01:05.686123-08:00,0.0,10.720165,10720.165 +11096,2025-03-08T09:01:16.399934-08:00,0.0,10.713811,10713.811 +11097,2025-03-08T09:01:27.118447-08:00,0.0,10.718513,10718.513 +11098,2025-03-08T09:01:37.837118-08:00,0.0,10.718671,10718.671 +11099,2025-03-08T09:01:48.559955-08:00,0.0,10.722837,10722.837 +11100,2025-03-08T09:01:59.283137-08:00,0.0,10.723182,10723.182 +11101,2025-03-08T09:02:10.002932-08:00,0.0,10.719795,10719.795 +11102,2025-03-08T09:02:20.722149-08:00,0.0,10.719217,10719.217 +11103,2025-03-08T09:02:31.436296-08:00,0.0,10.714147,10714.147 +11104,2025-03-08T09:02:42.155127-08:00,0.0,10.718831,10718.831 +11105,2025-03-08T09:02:52.878960-08:00,0.0,10.723833,10723.833 +11106,2025-03-08T09:03:03.596412-08:00,0.0,10.717452,10717.452 +11107,2025-03-08T09:03:14.320935-08:00,0.0,10.724523,10724.523 +11108,2025-03-08T09:03:25.034170-08:00,0.0,10.713235,10713.235 +11109,2025-03-08T09:03:35.756370-08:00,0.0,10.7222,10722.2 +11110,2025-03-08T09:03:46.478003-08:00,0.0,10.721633,10721.633 +11111,2025-03-08T09:03:57.190935-08:00,0.0,10.712932,10712.932 +11112,2025-03-08T09:04:07.908138-08:00,0.0,10.717203,10717.203 +11113,2025-03-08T09:04:18.623627-08:00,0.0,10.715489,10715.489 +11114,2025-03-08T09:04:29.341931-08:00,0.0,10.718304,10718.304 +11115,2025-03-08T09:04:40.060979-08:00,0.0,10.719048,10719.048 +11116,2025-03-08T09:04:50.787220-08:00,0.0,10.726241,10726.241 +11117,2025-03-08T09:05:01.504933-08:00,0.0,10.717713,10717.713 +11118,2025-03-08T09:05:12.218932-08:00,0.0,10.713999,10713.999 +11119,2025-03-08T09:05:22.933933-08:00,0.0,10.715001,10715.001 +11120,2025-03-08T09:05:33.653125-08:00,0.0,10.719192,10719.192 +11121,2025-03-08T09:05:44.369223-08:00,0.0,10.716098,10716.098 +11122,2025-03-08T09:05:55.093577-08:00,0.0,10.724354,10724.354 +11123,2025-03-08T09:06:05.804116-08:00,0.0,10.710539,10710.539 +11124,2025-03-08T09:06:16.522076-08:00,0.0,10.71796,10717.96 +11125,2025-03-08T09:06:27.237114-08:00,0.0,10.715038,10715.038 +11126,2025-03-08T09:06:37.962295-08:00,0.0,10.725181,10725.181 +11127,2025-03-08T09:06:48.677835-08:00,0.0,10.71554,10715.54 +11128,2025-03-08T09:06:59.395935-08:00,0.0,10.7181,10718.1 +11129,2025-03-08T09:07:10.113957-08:00,0.0,10.718022,10718.022 +11130,2025-03-08T09:07:20.827441-08:00,0.0,10.713484,10713.484 +11131,2025-03-08T09:07:31.549199-08:00,0.0,10.721758,10721.758 +11132,2025-03-08T09:07:42.268112-08:00,0.0,10.718913,10718.913 +11133,2025-03-08T09:07:52.986999-08:00,0.0,10.718887,10718.887 +11134,2025-03-08T09:08:03.707109-08:00,0.0,10.72011,10720.11 +11135,2025-03-08T09:08:14.421728-08:00,0.0,10.714619,10714.619 +11136,2025-03-08T09:08:25.133143-08:00,0.0,10.711415,10711.415 +11137,2025-03-08T09:08:35.850134-08:00,0.0,10.716991,10716.991 +11138,2025-03-08T09:08:46.569932-08:00,0.0,10.719798,10719.798 +11139,2025-03-08T09:08:57.286634-08:00,0.0,10.716702,10716.702 +11140,2025-03-08T09:09:08.001114-08:00,0.0,10.71448,10714.48 +11141,2025-03-08T09:09:18.716135-08:00,0.0,10.715021,10715.021 +11142,2025-03-08T09:09:29.431341-08:00,0.0,10.715206,10715.206 +11143,2025-03-08T09:09:37.444455-08:00,0.0,8.013114,8013.114 +11144,2025-03-08T09:09:40.152045-08:00,0.0,2.70759,2707.59 +11145,2025-03-08T09:09:50.868743-08:00,0.0,10.716698,10716.698 +11146,2025-03-08T09:10:01.591939-08:00,0.0,10.723196,10723.196 +11147,2025-03-08T09:10:12.297934-08:00,0.0,10.705995,10705.995 +11148,2025-03-08T09:10:23.019920-08:00,0.0,10.721986,10721.986 +11149,2025-03-08T09:10:33.747119-08:00,0.0,10.727199,10727.199 +11150,2025-03-08T09:10:44.462115-08:00,0.0,10.714996,10714.996 +11151,2025-03-08T09:10:55.184224-08:00,0.0,10.722109,10722.109 +11152,2025-03-08T09:11:05.897895-08:00,0.0,10.713671,10713.671 +11153,2025-03-08T09:11:16.620933-08:00,0.0,10.723038,10723.038 +11154,2025-03-08T09:11:27.347138-08:00,0.0,10.726205,10726.205 +11155,2025-03-08T09:11:38.063938-08:00,0.0,10.7168,10716.8 +11156,2025-03-08T09:11:48.780130-08:00,0.0,10.716192,10716.192 +11157,2025-03-08T09:11:59.502932-08:00,0.0,10.722802,10722.802 +11158,2025-03-08T09:12:10.222957-08:00,0.0,10.720025,10720.025 +11159,2025-03-08T09:12:20.942454-08:00,0.0,10.719497,10719.497 +11160,2025-03-08T09:12:31.665563-08:00,0.0,10.723109,10723.109 +11161,2025-03-08T09:12:42.377011-08:00,0.0,10.711448,10711.448 +11162,2025-03-08T09:12:53.097009-08:00,0.0,10.719998,10719.998 +11163,2025-03-08T09:13:03.816102-08:00,0.0,10.719093,10719.093 +11164,2025-03-08T09:13:14.541652-08:00,0.0,10.72555,10725.55 +11165,2025-03-08T09:13:25.256276-08:00,0.0,10.714624,10714.624 +11166,2025-03-08T09:13:35.973008-08:00,0.0,10.716732,10716.732 +11167,2025-03-08T09:13:46.696068-08:00,0.0,10.72306,10723.06 +11168,2025-03-08T09:13:57.410935-08:00,0.0,10.714867,10714.867 +11169,2025-03-08T09:14:08.132158-08:00,0.0,10.721223,10721.223 +11170,2025-03-08T09:14:18.846127-08:00,0.0,10.713969,10713.969 +11171,2025-03-08T09:14:29.561933-08:00,0.0,10.715806,10715.806 +11172,2025-03-08T09:14:40.286114-08:00,0.0,10.724181,10724.181 +11173,2025-03-08T09:14:51.001106-08:00,0.0,10.714992,10714.992 +11174,2025-03-08T09:15:01.718136-08:00,0.0,10.71703,10717.03 +11175,2025-03-08T09:15:12.441960-08:00,0.0,10.723824,10723.824 +11176,2025-03-08T09:15:23.164960-08:00,0.0,10.723,10723.0 +11177,2025-03-08T09:15:33.874994-08:00,0.0,10.710034,10710.034 +11178,2025-03-08T09:15:44.601139-08:00,0.0,10.726145,10726.145 +11179,2025-03-08T09:15:55.312232-08:00,0.0,10.711093,10711.093 +11180,2025-03-08T09:16:06.031931-08:00,0.0,10.719699,10719.699 +11181,2025-03-08T09:16:16.760114-08:00,0.0,10.728183,10728.183 +11182,2025-03-08T09:16:27.482003-08:00,0.0,10.721889,10721.889 +11183,2025-03-08T09:16:38.202097-08:00,0.0,10.720094,10720.094 +11184,2025-03-08T09:16:48.915935-08:00,0.0,10.713838,10713.838 +11185,2025-03-08T09:16:59.643133-08:00,0.0,10.727198,10727.198 +11186,2025-03-08T09:17:10.362201-08:00,0.0,10.719068,10719.068 +11187,2025-03-08T09:17:21.077956-08:00,0.0,10.715755,10715.755 +11188,2025-03-08T09:17:31.795208-08:00,0.0,10.717252,10717.252 +11189,2025-03-08T09:17:42.518931-08:00,0.0,10.723723,10723.723 +11190,2025-03-08T09:17:53.236177-08:00,0.0,10.717246,10717.246 +11191,2025-03-08T09:18:03.957933-08:00,0.0,10.721756,10721.756 +11192,2025-03-08T09:18:14.675598-08:00,0.0,10.717665,10717.665 +11193,2025-03-08T09:18:25.396164-08:00,0.0,10.720566,10720.566 +11194,2025-03-08T09:18:36.106161-08:00,0.0,10.709997,10709.997 +11195,2025-03-08T09:18:46.821544-08:00,0.0,10.715383,10715.383 +11196,2025-03-08T09:18:57.539963-08:00,0.0,10.718419,10718.419 +11197,2025-03-08T09:19:08.266106-08:00,0.0,10.726143,10726.143 +11198,2025-03-08T09:19:18.984147-08:00,0.0,10.718041,10718.041 +11199,2025-03-08T09:19:29.695635-08:00,0.0,10.711488,10711.488 +11200,2025-03-08T09:19:40.423140-08:00,0.0,10.727505,10727.505 +11201,2025-03-08T09:19:51.139148-08:00,0.0,10.716008,10716.008 +11202,2025-03-08T09:20:01.856011-08:00,0.0,10.716863,10716.863 +11203,2025-03-08T09:20:12.570293-08:00,0.0,10.714282,10714.282 +11204,2025-03-08T09:20:23.295040-08:00,0.0,10.724747,10724.747 +11205,2025-03-08T09:20:34.005933-08:00,0.0,10.710893,10710.893 +11206,2025-03-08T09:20:44.724171-08:00,0.0,10.718238,10718.238 +11207,2025-03-08T09:20:55.443146-08:00,0.0,10.718975,10718.975 +11208,2025-03-08T09:21:06.155142-08:00,0.0,10.711996,10711.996 +11209,2025-03-08T09:21:16.870512-08:00,0.0,10.71537,10715.37 +11210,2025-03-08T09:21:27.590932-08:00,0.0,10.72042,10720.42 +11211,2025-03-08T09:21:38.310174-08:00,0.0,10.719242,10719.242 +11212,2025-03-08T09:21:49.022935-08:00,0.0,10.712761,10712.761 +11213,2025-03-08T09:21:59.741133-08:00,0.0,10.718198,10718.198 +11214,2025-03-08T09:22:10.461935-08:00,0.0,10.720802,10720.802 +11215,2025-03-08T09:22:21.180000-08:00,0.0,10.718065,10718.065 +11216,2025-03-08T09:22:31.895713-08:00,0.0,10.715713,10715.713 +11217,2025-03-08T09:22:42.607934-08:00,0.0,10.712221,10712.221 +11218,2025-03-08T09:22:53.325226-08:00,0.0,10.717292,10717.292 +11219,2025-03-08T09:23:04.042125-08:00,0.0,10.716899,10716.899 +11220,2025-03-08T09:23:14.754932-08:00,0.0,10.712807,10712.807 +11221,2025-03-08T09:23:25.474226-08:00,0.0,10.719294,10719.294 +11222,2025-03-08T09:23:36.191053-08:00,0.0,10.716827,10716.827 +11223,2025-03-08T09:23:46.907133-08:00,0.0,10.71608,10716.08 +11224,2025-03-08T09:23:57.615119-08:00,0.0,10.707986,10707.986 +11225,2025-03-08T09:23:59.138594-08:00,394.0,1.523475,1523.475 +11226,2025-03-08T09:24:08.339932-08:00,396.0,9.201338,9201.338 +11227,2025-03-08T09:24:19.054494-08:00,491.0,10.714562,10714.562 +11228,2025-03-08T09:24:29.763936-08:00,479.0,10.709442,10709.442 +11229,2025-03-08T09:24:40.483135-08:00,389.0,10.719199,10719.199 +11230,2025-03-08T09:24:51.203064-08:00,470.0,10.719929,10719.929 +11231,2025-03-08T09:25:01.923027-08:00,408.0,10.719963,10719.963 +11232,2025-03-08T09:25:12.641110-08:00,359.0,10.718083,10718.083 +11233,2025-03-08T09:25:23.354196-08:00,458.0,10.713086,10713.086 +11234,2025-03-08T09:25:34.078839-08:00,487.0,10.724643,10724.643 +11235,2025-03-08T09:25:44.791934-08:00,390.0,10.713095,10713.095 +11236,2025-03-08T09:25:55.498938-08:00,467.0,10.707004,10707.004 +11237,2025-03-08T09:26:06.220226-08:00,481.0,10.721288,10721.288 +11238,2025-03-08T09:26:16.941146-08:00,371.0,10.72092,10720.92 +11239,2025-03-08T09:26:27.646137-08:00,471.0,10.704991,10704.991 +11240,2025-03-08T09:26:38.363105-08:00,445.0,10.716968,10716.968 +11241,2025-03-08T09:26:49.078932-08:00,457.0,10.715827,10715.827 +11242,2025-03-08T09:26:59.798956-08:00,451.0,10.720024,10720.024 +11243,2025-03-08T09:27:10.518287-08:00,426.0,10.719331,10719.331 +11244,2025-03-08T09:27:21.229174-08:00,449.0,10.710887,10710.887 +11245,2025-03-08T09:27:31.947128-08:00,412.0,10.717954,10717.954 +11246,2025-03-08T09:27:42.670996-08:00,465.0,10.723868,10723.868 +11247,2025-03-08T09:27:53.383122-08:00,479.0,10.712126,10712.126 +11248,2025-03-08T09:28:04.105935-08:00,414.0,10.722813,10722.813 +11249,2025-03-08T09:28:14.821184-08:00,359.0,10.715249,10715.249 +11250,2025-03-08T09:28:25.533120-08:00,384.0,10.711936,10711.936 +11251,2025-03-08T09:28:36.254933-08:00,335.0,10.721813,10721.813 +11252,2025-03-08T09:28:46.974131-08:00,364.0,10.719198,10719.198 +11253,2025-03-08T09:28:57.691936-08:00,325.0,10.717805,10717.805 +11254,2025-03-08T09:29:08.408190-08:00,446.0,10.716254,10716.254 +11255,2025-03-08T09:29:19.132423-08:00,400.0,10.724233,10724.233 +11256,2025-03-08T09:29:29.851026-08:00,343.0,10.718603,10718.603 +11257,2025-03-08T09:29:40.570936-08:00,445.0,10.71991,10719.91 +11258,2025-03-08T09:29:51.290930-08:00,464.0,10.719994,10719.994 +11259,2025-03-08T09:30:02.011948-08:00,430.0,10.721018,10721.018 +11260,2025-03-08T09:30:12.738955-08:00,445.0,10.727007,10727.007 +11261,2025-03-08T09:30:23.466934-08:00,413.0,10.727979,10727.979 +11262,2025-03-08T09:30:34.190219-08:00,385.0,10.723285,10723.285 +11263,2025-03-08T09:30:44.911308-08:00,437.0,10.721089,10721.089 +11264,2025-03-08T09:30:55.634562-08:00,396.0,10.723254,10723.254 +11265,2025-03-08T09:31:06.361161-08:00,400.0,10.726599,10726.599 +11266,2025-03-08T09:31:17.087938-08:00,441.0,10.726777,10726.777 +11267,2025-03-08T09:31:27.821713-08:00,320.0,10.733775,10733.775 +11268,2025-03-08T09:31:38.551669-08:00,304.0,10.729956,10729.956 +11269,2025-03-08T09:31:49.274121-08:00,265.0,10.722452,10722.452 +11270,2025-03-08T09:32:00.008970-08:00,406.0,10.734849,10734.849 +11271,2025-03-08T09:32:10.735031-08:00,339.0,10.726061,10726.061 +11272,2025-03-08T09:32:21.466060-08:00,432.0,10.731029,10731.029 +11273,2025-03-08T09:32:32.192003-08:00,400.0,10.725943,10725.943 +11274,2025-03-08T09:32:42.925131-08:00,441.0,10.733128,10733.128 +11275,2025-03-08T09:32:53.642963-08:00,405.0,10.717832,10717.832 +11276,2025-03-08T09:33:04.373933-08:00,448.0,10.73097,10730.97 +11277,2025-03-08T09:33:15.105174-08:00,436.0,10.731241,10731.241 +11278,2025-03-08T09:33:25.830996-08:00,442.0,10.725822,10725.822 +11279,2025-03-08T09:33:36.558935-08:00,395.0,10.727939,10727.939 +11280,2025-03-08T09:33:47.292323-08:00,426.0,10.733388,10733.388 +11281,2025-03-08T09:33:58.018958-08:00,400.0,10.726635,10726.635 +11282,2025-03-08T09:34:06.645121-08:00,0.0,8.626163,8626.163 +11283,2025-03-08T09:34:08.744138-08:00,0.0,2.099017,2099.017 +11284,2025-03-08T09:34:19.474790-08:00,0.0,10.730652,10730.652 +11285,2025-03-08T09:34:30.208057-08:00,0.0,10.733267,10733.267 +11286,2025-03-08T09:34:40.933064-08:00,0.0,10.725007,10725.007 +11287,2025-03-08T09:34:51.666946-08:00,0.0,10.733882,10733.882 +11288,2025-03-08T09:35:02.393134-08:00,0.0,10.726188,10726.188 +11289,2025-03-08T09:35:13.118157-08:00,0.0,10.725023,10725.023 +11290,2025-03-08T09:35:23.850137-08:00,0.0,10.73198,10731.98 +11291,2025-03-08T09:35:34.570152-08:00,0.0,10.720015,10720.015 +11292,2025-03-08T09:35:45.298219-08:00,0.0,10.728067,10728.067 +11293,2025-03-08T09:35:56.031141-08:00,0.0,10.732922,10732.922 +11294,2025-03-08T09:36:06.753130-08:00,0.0,10.721989,10721.989 +11295,2025-03-08T09:36:17.478934-08:00,0.0,10.725804,10725.804 +11296,2025-03-08T09:36:28.199475-08:00,0.0,10.720541,10720.541 +11297,2025-03-08T09:36:29.003118-08:00,303.0,0.803643,803.643 +11298,2025-03-08T09:36:38.927300-08:00,440.0,9.924182,9924.182 +11299,2025-03-08T09:36:49.651198-08:00,447.0,10.723898,10723.898 +11300,2025-03-08T09:37:00.375636-08:00,381.0,10.724438,10724.438 +11301,2025-03-08T09:37:11.097935-08:00,413.0,10.722299,10722.299 +11302,2025-03-08T09:37:21.822280-08:00,443.0,10.724345,10724.345 +11303,2025-03-08T09:37:32.547123-08:00,413.0,10.724843,10724.843 +11304,2025-03-08T09:37:43.271107-08:00,339.0,10.723984,10723.984 +11305,2025-03-08T09:37:53.991126-08:00,400.0,10.720019,10720.019 +11306,2025-03-08T09:38:04.721583-08:00,423.0,10.730457,10730.457 +11307,2025-03-08T09:38:15.442154-08:00,410.0,10.720571,10720.571 +11308,2025-03-08T09:38:26.166013-08:00,415.0,10.723859,10723.859 +11309,2025-03-08T09:38:36.892151-08:00,432.0,10.726138,10726.138 +11310,2025-03-08T09:38:47.621000-08:00,339.0,10.728849,10728.849 +11311,2025-03-08T09:38:58.350124-08:00,432.0,10.729124,10729.124 +11312,2025-03-08T09:39:09.076146-08:00,422.0,10.726022,10726.022 +11313,2025-03-08T09:39:19.800976-08:00,432.0,10.72483,10724.83 +11314,2025-03-08T09:39:30.526934-08:00,326.0,10.725958,10725.958 +11315,2025-03-08T09:39:41.260129-08:00,403.0,10.733195,10733.195 +11316,2025-03-08T09:39:51.981837-08:00,335.0,10.721708,10721.708 +11317,2025-03-08T09:39:53.552118-08:00,0.0,1.570281,1570.281 +11318,2025-03-08T09:40:02.717636-08:00,0.0,9.165518,9165.518 +11319,2025-03-08T09:40:13.435632-08:00,0.0,10.717996,10717.996 +11320,2025-03-08T09:40:24.171934-08:00,0.0,10.736302,10736.302 +11321,2025-03-08T09:40:34.898937-08:00,0.0,10.727003,10727.003 +11322,2025-03-08T09:40:45.620136-08:00,0.0,10.721199,10721.199 +11323,2025-03-08T09:40:56.345352-08:00,0.0,10.725216,10725.216 +11324,2025-03-08T09:41:07.074936-08:00,0.0,10.729584,10729.584 +11325,2025-03-08T09:41:17.808767-08:00,0.0,10.733831,10733.831 +11326,2025-03-08T09:41:28.530147-08:00,0.0,10.72138,10721.38 +11327,2025-03-08T09:41:39.267937-08:00,0.0,10.73779,10737.79 +11328,2025-03-08T09:41:49.993970-08:00,0.0,10.726033,10726.033 +11329,2025-03-08T09:42:00.724338-08:00,0.0,10.730368,10730.368 +11330,2025-03-08T09:42:11.455143-08:00,0.0,10.730805,10730.805 +11331,2025-03-08T09:42:22.178016-08:00,0.0,10.722873,10722.873 +11332,2025-03-08T09:42:32.905191-08:00,0.0,10.727175,10727.175 +11333,2025-03-08T09:42:43.644012-08:00,0.0,10.738821,10738.821 +11334,2025-03-08T09:42:54.372007-08:00,0.0,10.727995,10727.995 +11335,2025-03-08T09:43:05.093143-08:00,0.0,10.721136,10721.136 +11336,2025-03-08T09:43:15.830128-08:00,0.0,10.736985,10736.985 +11337,2025-03-08T09:43:26.559936-08:00,0.0,10.729808,10729.808 +11338,2025-03-08T09:43:37.285154-08:00,0.0,10.725218,10725.218 +11339,2025-03-08T09:43:48.012964-08:00,0.0,10.72781,10727.81 +11340,2025-03-08T09:43:58.740418-08:00,0.0,10.727454,10727.454 +11341,2025-03-08T09:44:09.474191-08:00,0.0,10.733773,10733.773 +11342,2025-03-08T09:44:20.194968-08:00,0.0,10.720777,10720.777 +11343,2025-03-08T09:44:30.929105-08:00,0.0,10.734137,10734.137 +11344,2025-03-08T09:44:41.663146-08:00,0.0,10.734041,10734.041 +11345,2025-03-08T09:44:52.394986-08:00,0.0,10.73184,10731.84 +11346,2025-03-08T09:45:03.124125-08:00,0.0,10.729139,10729.139 +11347,2025-03-08T09:45:13.847314-08:00,0.0,10.723189,10723.189 +11348,2025-03-08T09:45:24.581959-08:00,0.0,10.734645,10734.645 +11349,2025-03-08T09:45:35.299966-08:00,0.0,10.718007,10718.007 +11350,2025-03-08T09:45:46.034132-08:00,0.0,10.734166,10734.166 +11351,2025-03-08T09:45:56.764957-08:00,0.0,10.730825,10730.825 +11352,2025-03-08T09:46:07.484030-08:00,0.0,10.719073,10719.073 +11353,2025-03-08T09:46:18.210929-08:00,0.0,10.726899,10726.899 +11354,2025-03-08T09:46:28.947089-08:00,0.0,10.73616,10736.16 +11355,2025-03-08T09:46:39.664965-08:00,0.0,10.717876,10717.876 +11356,2025-03-08T09:46:50.396962-08:00,0.0,10.731997,10731.997 +11357,2025-03-08T09:47:01.126932-08:00,0.0,10.72997,10729.97 +11358,2025-03-08T09:47:11.844935-08:00,0.0,10.718003,10718.003 +11359,2025-03-08T09:47:22.581929-08:00,0.0,10.736994,10736.994 +11360,2025-03-08T09:47:33.308208-08:00,0.0,10.726279,10726.279 +11361,2025-03-08T09:47:44.031216-08:00,0.0,10.723008,10723.008 +11362,2025-03-08T09:47:54.766111-08:00,0.0,10.734895,10734.895 +11363,2025-03-08T09:48:05.494747-08:00,0.0,10.728636,10728.636 +11364,2025-03-08T09:48:16.216009-08:00,0.0,10.721262,10721.262 +11365,2025-03-08T09:48:26.946328-08:00,0.0,10.730319,10730.319 +11366,2025-03-08T09:48:37.678987-08:00,0.0,10.732659,10732.659 +11367,2025-03-08T09:48:48.408965-08:00,0.0,10.729978,10729.978 +11368,2025-03-08T09:48:59.132324-08:00,0.0,10.723359,10723.359 +11369,2025-03-08T09:49:09.855930-08:00,0.0,10.723606,10723.606 +11370,2025-03-08T09:49:20.587956-08:00,0.0,10.732026,10732.026 +11371,2025-03-08T09:49:31.306936-08:00,0.0,10.71898,10718.98 +11372,2025-03-08T09:49:42.035936-08:00,0.0,10.729,10729.0 +11373,2025-03-08T09:49:52.772112-08:00,0.0,10.736176,10736.176 +11374,2025-03-08T09:50:03.493031-08:00,0.0,10.720919,10720.919 +11375,2025-03-08T09:50:14.222928-08:00,0.0,10.729897,10729.897 +11376,2025-03-08T09:50:24.957132-08:00,0.0,10.734204,10734.204 +11377,2025-03-08T09:50:35.684008-08:00,0.0,10.726876,10726.876 +11378,2025-03-08T09:50:46.412087-08:00,0.0,10.728079,10728.079 +11379,2025-03-08T09:50:57.132933-08:00,0.0,10.720846,10720.846 +11380,2025-03-08T09:51:07.855936-08:00,0.0,10.723003,10723.003 +11381,2025-03-08T09:51:18.584208-08:00,0.0,10.728272,10728.272 +11382,2025-03-08T09:51:29.314935-08:00,0.0,10.730727,10730.727 +11383,2025-03-08T09:51:40.037125-08:00,0.0,10.72219,10722.19 +11384,2025-03-08T09:51:50.769149-08:00,0.0,10.732024,10732.024 +11385,2025-03-08T09:52:01.492614-08:00,0.0,10.723465,10723.465 +11386,2025-03-08T09:52:12.214935-08:00,0.0,10.722321,10722.321 +11387,2025-03-08T09:52:22.919352-08:00,0.0,10.704417,10704.417 +11388,2025-03-08T09:52:33.653490-08:00,0.0,10.734138,10734.138 +11389,2025-03-08T09:52:44.373451-08:00,0.0,10.719961,10719.961 +11390,2025-03-08T09:52:55.098423-08:00,0.0,10.724972,10724.972 +11391,2025-03-08T09:53:05.819521-08:00,0.0,10.721098,10721.098 +11392,2025-03-08T09:53:16.542487-08:00,0.0,10.722966,10722.966 +11393,2025-03-08T09:53:27.275319-08:00,0.0,10.732832,10732.832 +11394,2025-03-08T09:53:38.004313-08:00,0.0,10.728994,10728.994 +11395,2025-03-08T09:53:48.726454-08:00,0.0,10.722141,10722.141 +11396,2025-03-08T09:53:59.452565-08:00,0.0,10.726111,10726.111 +11397,2025-03-08T09:54:10.184314-08:00,0.0,10.731749,10731.749 +11398,2025-03-08T09:54:20.917594-08:00,0.0,10.73328,10733.28 +11399,2025-03-08T09:54:31.639316-08:00,0.0,10.721722,10721.722 +11400,2025-03-08T09:54:42.369501-08:00,0.0,10.730185,10730.185 +11401,2025-03-08T09:54:53.092315-08:00,0.0,10.722814,10722.814 +11402,2025-03-08T09:55:03.819361-08:00,0.0,10.727046,10727.046 +11403,2025-03-08T09:55:14.557547-08:00,0.0,10.738186,10738.186 +11404,2025-03-08T09:55:25.279317-08:00,0.0,10.72177,10721.77 +11405,2025-03-08T09:55:36.014523-08:00,0.0,10.735206,10735.206 +11406,2025-03-08T09:55:46.739429-08:00,0.0,10.724906,10724.906 +11407,2025-03-08T09:55:57.470333-08:00,0.0,10.730904,10730.904 +11408,2025-03-08T09:56:08.191743-08:00,0.0,10.72141,10721.41 +11409,2025-03-08T09:56:18.919351-08:00,0.0,10.727608,10727.608 +11410,2025-03-08T09:56:29.650320-08:00,0.0,10.730969,10730.969 +11411,2025-03-08T09:56:40.372813-08:00,0.0,10.722493,10722.493 +11412,2025-03-08T09:56:51.103593-08:00,0.0,10.73078,10730.78 +11413,2025-03-08T09:57:01.836676-08:00,0.0,10.733083,10733.083 +11414,2025-03-08T09:57:12.557338-08:00,0.0,10.720662,10720.662 +11415,2025-03-08T09:57:23.279386-08:00,0.0,10.722048,10722.048 +11416,2025-03-08T09:57:34.008340-08:00,0.0,10.728954,10728.954 +11417,2025-03-08T09:57:44.736558-08:00,0.0,10.728218,10728.218 +11418,2025-03-08T09:57:55.468154-08:00,0.0,10.731596,10731.596 +11419,2025-03-08T09:58:06.193313-08:00,0.0,10.725159,10725.159 +11420,2025-03-08T09:58:16.915316-08:00,0.0,10.722003,10722.003 +11421,2025-03-08T09:58:27.642849-08:00,0.0,10.727533,10727.533 +11422,2025-03-08T09:58:38.374750-08:00,0.0,10.731901,10731.901 +11423,2025-03-08T09:58:49.108538-08:00,0.0,10.733788,10733.788 +11424,2025-03-08T09:58:59.834515-08:00,0.0,10.725977,10725.977 +11425,2025-03-08T09:59:10.560347-08:00,0.0,10.725832,10725.832 +11426,2025-03-08T09:59:21.296386-08:00,0.0,10.736039,10736.039 +11427,2025-03-08T09:59:32.016523-08:00,0.0,10.720137,10720.137 +11428,2025-03-08T09:59:42.754553-08:00,0.0,10.73803,10738.03 +11429,2025-03-08T09:59:53.478198-08:00,0.0,10.723645,10723.645 +11430,2025-03-08T10:00:04.207381-08:00,0.0,10.729183,10729.183 +11431,2025-03-08T10:00:14.941406-08:00,0.0,10.734025,10734.025 +11432,2025-03-08T10:00:25.667802-08:00,0.0,10.726396,10726.396 +11433,2025-03-08T10:00:36.398313-08:00,0.0,10.730511,10730.511 +11434,2025-03-08T10:00:47.127313-08:00,0.0,10.729,10729.0 +11435,2025-03-08T10:00:57.853348-08:00,0.0,10.726035,10726.035 +11436,2025-03-08T10:01:08.581762-08:00,0.0,10.728414,10728.414 +11437,2025-03-08T10:01:19.313428-08:00,0.0,10.731666,10731.666 +11438,2025-03-08T10:01:30.043452-08:00,0.0,10.730024,10730.024 +11439,2025-03-08T10:01:40.778318-08:00,0.0,10.734866,10734.866 +11440,2025-03-08T10:01:51.504557-08:00,0.0,10.726239,10726.239 +11441,2025-03-08T10:02:02.228456-08:00,0.0,10.723899,10723.899 +11442,2025-03-08T10:02:12.966315-08:00,0.0,10.737859,10737.859 +11443,2025-03-08T10:02:23.694485-08:00,0.0,10.72817,10728.17 +11444,2025-03-08T10:02:34.416536-08:00,0.0,10.722051,10722.051 +11445,2025-03-08T10:02:45.151585-08:00,0.0,10.735049,10735.049 +11446,2025-03-08T10:02:55.881503-08:00,0.0,10.729918,10729.918 +11447,2025-03-08T10:03:06.608309-08:00,0.0,10.726806,10726.806 +11448,2025-03-08T10:03:17.343543-08:00,0.0,10.735234,10735.234 +11449,2025-03-08T10:03:28.071490-08:00,0.0,10.727947,10727.947 +11450,2025-03-08T10:03:38.798315-08:00,0.0,10.726825,10726.825 +11451,2025-03-08T10:03:49.521659-08:00,0.0,10.723344,10723.344 +11452,2025-03-08T10:04:00.248347-08:00,0.0,10.726688,10726.688 +11453,2025-03-08T10:04:10.983315-08:00,0.0,10.734968,10734.968 +11454,2025-03-08T10:04:21.705735-08:00,0.0,10.72242,10722.42 +11455,2025-03-08T10:04:32.442306-08:00,0.0,10.736571,10736.571 +11456,2025-03-08T10:04:43.169727-08:00,0.0,10.727421,10727.421 +11457,2025-03-08T10:04:53.904342-08:00,0.0,10.734615,10734.615 +11458,2025-03-08T10:05:04.630313-08:00,0.0,10.725971,10725.971 +11459,2025-03-08T10:05:15.354313-08:00,0.0,10.724,10724.0 +11460,2025-03-08T10:05:26.086500-08:00,0.0,10.732187,10732.187 +11461,2025-03-08T10:05:36.818309-08:00,0.0,10.731809,10731.809 +11462,2025-03-08T10:05:47.539330-08:00,0.0,10.721021,10721.021 +11463,2025-03-08T10:05:58.278495-08:00,0.0,10.739165,10739.165 +11464,2025-03-08T10:06:08.999315-08:00,0.0,10.72082,10720.82 +11465,2025-03-08T10:06:19.729475-08:00,0.0,10.73016,10730.16 +11466,2025-03-08T10:06:30.458310-08:00,0.0,10.728835,10728.835 +11467,2025-03-08T10:06:41.199398-08:00,0.0,10.741088,10741.088 +11468,2025-03-08T10:06:51.925741-08:00,0.0,10.726343,10726.343 +11469,2025-03-08T10:07:02.659204-08:00,0.0,10.733463,10733.463 +11470,2025-03-08T10:07:13.385315-08:00,0.0,10.726111,10726.111 +11471,2025-03-08T10:07:24.116523-08:00,0.0,10.731208,10731.208 +11472,2025-03-08T10:07:34.844483-08:00,0.0,10.72796,10727.96 +11473,2025-03-08T10:07:56.317493-08:00,0.0,21.47301,21473.01 +11474,2025-03-08T10:08:07.042315-08:00,0.0,10.724822,10724.822 +11475,2025-03-08T10:08:17.771513-08:00,0.0,10.729198,10729.198 +11476,2025-03-08T10:08:28.505317-08:00,0.0,10.733804,10733.804 +11477,2025-03-08T10:08:39.231673-08:00,0.0,10.726356,10726.356 +11478,2025-03-08T10:08:49.958738-08:00,0.0,10.727065,10727.065 +11479,2025-03-08T10:09:00.680523-08:00,0.0,10.721785,10721.785 +11480,2025-03-08T10:09:11.413373-08:00,0.0,10.73285,10732.85 +11481,2025-03-08T10:09:22.134528-08:00,0.0,10.721155,10721.155 +11482,2025-03-08T10:09:32.869004-08:00,0.0,10.734476,10734.476 +11483,2025-03-08T10:09:43.596435-08:00,0.0,10.727431,10727.431 +11484,2025-03-08T10:09:54.318475-08:00,0.0,10.72204,10722.04 +11485,2025-03-08T10:10:05.054313-08:00,0.0,10.735838,10735.838 +11486,2025-03-08T10:10:15.773315-08:00,0.0,10.719002,10719.002 +11487,2025-03-08T10:10:26.503806-08:00,0.0,10.730491,10730.491 +11488,2025-03-08T10:10:37.236547-08:00,0.0,10.732741,10732.741 +11489,2025-03-08T10:10:47.961498-08:00,0.0,10.724951,10724.951 +11490,2025-03-08T10:10:58.698717-08:00,0.0,10.737219,10737.219 +11491,2025-03-08T10:11:09.427347-08:00,0.0,10.72863,10728.63 +11492,2025-03-08T10:11:20.154316-08:00,0.0,10.726969,10726.969 +11493,2025-03-08T10:11:30.885529-08:00,0.0,10.731213,10731.213 +11494,2025-03-08T10:11:41.605725-08:00,0.0,10.720196,10720.196 +11495,2025-03-08T10:11:52.339442-08:00,0.0,10.733717,10733.717 +11496,2025-03-08T10:12:03.058684-08:00,0.0,10.719242,10719.242 +11497,2025-03-08T10:12:13.791315-08:00,0.0,10.732631,10732.631 +11498,2025-03-08T10:12:24.520317-08:00,0.0,10.729002,10729.002 +11499,2025-03-08T10:12:35.253439-08:00,0.0,10.733122,10733.122 +11500,2025-03-08T10:12:45.974399-08:00,0.0,10.72096,10720.96 +11501,2025-03-08T10:12:56.704316-08:00,0.0,10.729917,10729.917 +11502,2025-03-08T10:13:07.434342-08:00,0.0,10.730026,10730.026 +11503,2025-03-08T10:13:18.162591-08:00,0.0,10.728249,10728.249 +11504,2025-03-08T10:13:28.886315-08:00,0.0,10.723724,10723.724 +11505,2025-03-08T10:13:39.622316-08:00,0.0,10.736001,10736.001 +11506,2025-03-08T10:13:50.347235-08:00,0.0,10.724919,10724.919 +11507,2025-03-08T10:14:01.080312-08:00,0.0,10.733077,10733.077 +11508,2025-03-08T10:14:11.806311-08:00,0.0,10.725999,10725.999 +11509,2025-03-08T10:14:22.536483-08:00,0.0,10.730172,10730.172 +11510,2025-03-08T10:14:33.266313-08:00,0.0,10.72983,10729.83 +11511,2025-03-08T10:14:43.991443-08:00,0.0,10.72513,10725.13 +11512,2025-03-08T10:14:54.718312-08:00,0.0,10.726869,10726.869 +11513,2025-03-08T10:15:05.443316-08:00,0.0,10.725004,10725.004 +11514,2025-03-08T10:15:16.173021-08:00,0.0,10.729705,10729.705 +11515,2025-03-08T10:15:26.901314-08:00,0.0,10.728293,10728.293 +11516,2025-03-08T10:15:37.636347-08:00,0.0,10.735033,10735.033 +11517,2025-03-08T10:15:48.367493-08:00,0.0,10.731146,10731.146 +11518,2025-03-08T10:15:59.088315-08:00,0.0,10.720822,10720.822 +11519,2025-03-08T10:16:09.828306-08:00,0.0,10.739991,10739.991 +11520,2025-03-08T10:16:20.549413-08:00,0.0,10.721107,10721.107 +11521,2025-03-08T10:16:31.280311-08:00,0.0,10.730898,10730.898 +11522,2025-03-08T10:16:42.006508-08:00,0.0,10.726197,10726.197 +11523,2025-03-08T10:16:52.746948-08:00,0.0,10.74044,10740.44 +11524,2025-03-08T10:17:03.472520-08:00,0.0,10.725572,10725.572 +11525,2025-03-08T10:17:14.202532-08:00,0.0,10.730012,10730.012 +11526,2025-03-08T10:17:24.927375-08:00,0.0,10.724843,10724.843 +11527,2025-03-08T10:17:35.658497-08:00,0.0,10.731122,10731.122 +11528,2025-03-08T10:17:46.390431-08:00,0.0,10.731934,10731.934 +11529,2025-03-08T10:17:57.110312-08:00,0.0,10.719881,10719.881 +11530,2025-03-08T10:18:07.848325-08:00,0.0,10.738013,10738.013 +11531,2025-03-08T10:18:18.569337-08:00,0.0,10.721012,10721.012 +11532,2025-03-08T10:18:29.297526-08:00,0.0,10.728189,10728.189 +11533,2025-03-08T10:18:40.037736-08:00,0.0,10.74021,10740.21 +11534,2025-03-08T10:18:50.767484-08:00,0.0,10.729748,10729.748 +11535,2025-03-08T10:19:01.489388-08:00,0.0,10.721904,10721.904 +11536,2025-03-08T10:19:12.226559-08:00,0.0,10.737171,10737.171 +11537,2025-03-08T10:19:22.957505-08:00,0.0,10.730946,10730.946 +11538,2025-03-08T10:19:33.683328-08:00,0.0,10.725823,10725.823 +11539,2025-03-08T10:19:44.421342-08:00,0.0,10.738014,10738.014 +11540,2025-03-08T10:19:55.147756-08:00,0.0,10.726414,10726.414 +11541,2025-03-08T10:20:05.881316-08:00,0.0,10.73356,10733.56 +11542,2025-03-08T10:20:16.614313-08:00,0.0,10.732997,10732.997 +11543,2025-03-08T10:20:27.343510-08:00,0.0,10.729197,10729.197 +11544,2025-03-08T10:20:38.071725-08:00,0.0,10.728215,10728.215 +11545,2025-03-08T10:20:48.811362-08:00,0.0,10.739637,10739.637 +11546,2025-03-08T10:20:59.538408-08:00,0.0,10.727046,10727.046 +11547,2025-03-08T10:21:10.263310-08:00,0.0,10.724902,10724.902 +11548,2025-03-08T10:21:20.999316-08:00,0.0,10.736006,10736.006 +11549,2025-03-08T10:21:31.725725-08:00,0.0,10.726409,10726.409 +11550,2025-03-08T10:21:42.455315-08:00,0.0,10.72959,10729.59 +11551,2025-03-08T10:21:53.183323-08:00,0.0,10.728008,10728.008 +11552,2025-03-08T10:22:03.918532-08:00,0.0,10.735209,10735.209 +11553,2025-03-08T10:22:14.641314-08:00,0.0,10.722782,10722.782 +11554,2025-03-08T10:22:25.373316-08:00,0.0,10.732002,10732.002 +11555,2025-03-08T10:22:36.113484-08:00,0.0,10.740168,10740.168 +11556,2025-03-08T10:22:46.843339-08:00,0.0,10.729855,10729.855 +11557,2025-03-08T10:22:57.573530-08:00,0.0,10.730191,10730.191 +11558,2025-03-08T10:23:08.298497-08:00,0.0,10.724967,10724.967 +11559,2025-03-08T10:23:19.031311-08:00,0.0,10.732814,10732.814 +11560,2025-03-08T10:23:29.766314-08:00,0.0,10.735003,10735.003 +11561,2025-03-08T10:23:40.491505-08:00,0.0,10.725191,10725.191 +11562,2025-03-08T10:23:51.230550-08:00,0.0,10.739045,10739.045 +11563,2025-03-08T10:24:01.969319-08:00,0.0,10.738769,10738.769 +11564,2025-03-08T10:24:12.699374-08:00,0.0,10.730055,10730.055 +11565,2025-03-08T10:24:23.425111-08:00,0.0,10.725737,10725.737 +11566,2025-03-08T10:24:34.158312-08:00,0.0,10.733201,10733.201 +11567,2025-03-08T10:24:44.890511-08:00,0.0,10.732199,10732.199 +11568,2025-03-08T10:24:55.613645-08:00,0.0,10.723134,10723.134 +11569,2025-03-08T10:25:06.340362-08:00,0.0,10.726717,10726.717 +11570,2025-03-08T10:25:17.068054-08:00,0.0,10.727692,10727.692 +11571,2025-03-08T10:25:27.803312-08:00,0.0,10.735258,10735.258 +11572,2025-03-08T10:25:38.529315-08:00,0.0,10.726003,10726.003 +11573,2025-03-08T10:25:49.258705-08:00,0.0,10.72939,10729.39 +11574,2025-03-08T10:25:59.987314-08:00,0.0,10.728609,10728.609 +11575,2025-03-08T10:26:10.721348-08:00,0.0,10.734034,10734.034 +11576,2025-03-08T10:26:21.457495-08:00,0.0,10.736147,10736.147 +11577,2025-03-08T10:26:32.183365-08:00,0.0,10.72587,10725.87 +11578,2025-03-08T10:26:42.919343-08:00,0.0,10.735978,10735.978 +11579,2025-03-08T10:26:53.658313-08:00,0.0,10.73897,10738.97 +11580,2025-03-08T10:27:04.385490-08:00,0.0,10.727177,10727.177 +11581,2025-03-08T10:27:15.120954-08:00,0.0,10.735464,10735.464 +11582,2025-03-08T10:27:25.858319-08:00,0.0,10.737365,10737.365 +11583,2025-03-08T10:27:36.603333-08:00,0.0,10.745014,10745.014 +11584,2025-03-08T10:27:47.330374-08:00,0.0,10.727041,10727.041 +11585,2025-03-08T10:27:58.065954-08:00,0.0,10.73558,10735.58 +11586,2025-03-08T10:28:08.804309-08:00,0.0,10.738355,10738.355 +11587,2025-03-08T10:28:19.545596-08:00,0.0,10.741287,10741.287 +11588,2025-03-08T10:28:30.270330-08:00,0.0,10.724734,10724.734 +11589,2025-03-08T10:28:41.009511-08:00,0.0,10.739181,10739.181 +11590,2025-03-08T10:28:51.736519-08:00,0.0,10.727008,10727.008 +11591,2025-03-08T10:29:02.475486-08:00,0.0,10.738967,10738.967 +11592,2025-03-08T10:29:13.207673-08:00,0.0,10.732187,10732.187 +11593,2025-03-08T10:29:23.938350-08:00,0.0,10.730677,10730.677 +11594,2025-03-08T10:29:34.677312-08:00,0.0,10.738962,10738.962 +11595,2025-03-08T10:29:45.407343-08:00,0.0,10.730031,10730.031 +11596,2025-03-08T10:29:56.144559-08:00,0.0,10.737216,10737.216 +11597,2025-03-08T10:30:06.881414-08:00,0.0,10.736855,10736.855 +11598,2025-03-08T10:30:17.610350-08:00,0.0,10.728936,10728.936 +11599,2025-03-08T10:30:28.339580-08:00,0.0,10.72923,10729.23 +11600,2025-03-08T10:30:39.079485-08:00,0.0,10.739905,10739.905 +11601,2025-03-08T10:30:49.810027-08:00,0.0,10.730542,10730.542 +11602,2025-03-08T10:31:00.535524-08:00,0.0,10.725497,10725.497 +11603,2025-03-08T10:31:11.278793-08:00,0.0,10.743269,10743.269 +11604,2025-03-08T10:31:22.001317-08:00,0.0,10.722524,10722.524 +11605,2025-03-08T10:31:32.738463-08:00,0.0,10.737146,10737.146 +11606,2025-03-08T10:31:43.473315-08:00,0.0,10.734852,10734.852 +11607,2025-03-08T10:31:54.202554-08:00,0.0,10.729239,10729.239 +11608,2025-03-08T10:32:04.940313-08:00,0.0,10.737759,10737.759 +11609,2025-03-08T10:32:15.675516-08:00,0.0,10.735203,10735.203 +11610,2025-03-08T10:32:26.405549-08:00,0.0,10.730033,10730.033 +11611,2025-03-08T10:32:37.136446-08:00,0.0,10.730897,10730.897 +11612,2025-03-08T10:32:47.207908-08:00,0.0,10.071462,10071.462 +11613,2025-03-08T10:32:47.873523-08:00,0.0,0.665615,665.615 +11614,2025-03-08T10:32:58.611481-08:00,0.0,10.737958,10737.958 +11615,2025-03-08T10:33:09.342694-08:00,0.0,10.731213,10731.213 +11616,2025-03-08T10:33:20.073313-08:00,0.0,10.730619,10730.619 +11617,2025-03-08T10:33:30.805420-08:00,0.0,10.732107,10732.107 +11618,2025-03-08T10:33:41.541310-08:00,0.0,10.73589,10735.89 +11619,2025-03-08T10:33:52.265389-08:00,0.0,10.724079,10724.079 +11620,2025-03-08T10:33:58.888064-08:00,0.0,6.622675,6622.675 +11621,2025-03-08T10:34:02.997389-08:00,0.0,4.109325,4109.325 +11622,2025-03-08T10:34:13.726521-08:00,0.0,10.729132,10729.132 +11623,2025-03-08T10:34:24.459307-08:00,0.0,10.732786,10732.786 +11624,2025-03-08T10:34:35.195096-08:00,0.0,10.735789,10735.789 +11625,2025-03-08T10:34:45.928450-08:00,0.0,10.733354,10733.354 +11626,2025-03-08T10:34:56.651602-08:00,0.0,10.723152,10723.152 +11627,2025-03-08T10:35:07.388310-08:00,0.0,10.736708,10736.708 +11628,2025-03-08T10:35:18.116503-08:00,0.0,10.728193,10728.193 +11629,2025-03-08T10:35:28.859370-08:00,0.0,10.742867,10742.867 +11630,2025-03-08T10:35:39.580313-08:00,0.0,10.720943,10720.943 +11631,2025-03-08T10:35:50.310315-08:00,0.0,10.730002,10730.002 +11632,2025-03-08T10:36:01.047730-08:00,0.0,10.737415,10737.415 +11633,2025-03-08T10:36:11.772313-08:00,0.0,10.724583,10724.583 +11634,2025-03-08T10:36:22.504528-08:00,0.0,10.732215,10732.215 +11635,2025-03-08T10:36:33.236509-08:00,0.0,10.731981,10731.981 +11636,2025-03-08T10:36:43.960314-08:00,0.0,10.723805,10723.805 +11637,2025-03-08T10:36:54.687192-08:00,0.0,10.726878,10726.878 +11638,2025-03-08T10:37:05.417730-08:00,0.0,10.730538,10730.538 +11639,2025-03-08T10:37:16.152311-08:00,0.0,10.734581,10734.581 +11640,2025-03-08T10:37:26.880738-08:00,0.0,10.728427,10728.427 +11641,2025-03-08T10:37:37.601341-08:00,0.0,10.720603,10720.603 +11642,2025-03-08T10:37:48.335423-08:00,0.0,10.734082,10734.082 +11643,2025-03-08T10:37:59.064685-08:00,0.0,10.729262,10729.262 +11644,2025-03-08T10:38:09.792420-08:00,0.0,10.727735,10727.735 +11645,2025-03-08T10:38:20.516534-08:00,0.0,10.724114,10724.114 +11646,2025-03-08T10:38:31.250712-08:00,0.0,10.734178,10734.178 +11647,2025-03-08T10:38:41.982035-08:00,0.0,10.731323,10731.323 +11648,2025-03-08T10:38:52.705311-08:00,0.0,10.723276,10723.276 +11649,2025-03-08T10:39:03.430525-08:00,0.0,10.725214,10725.214 +11650,2025-03-08T10:39:14.166373-08:00,0.0,10.735848,10735.848 +11651,2025-03-08T10:39:24.888487-08:00,0.0,10.722114,10722.114 +11652,2025-03-08T10:39:35.618308-08:00,0.0,10.729821,10729.821 +11653,2025-03-08T10:39:46.346331-08:00,0.0,10.728023,10728.023 +11654,2025-03-08T10:39:57.068459-08:00,0.0,10.722128,10722.128 +11655,2025-03-08T10:40:07.792587-08:00,0.0,10.724128,10724.128 +11656,2025-03-08T10:40:18.531089-08:00,0.0,10.738502,10738.502 +11657,2025-03-08T10:40:29.254316-08:00,0.0,10.723227,10723.227 +11658,2025-03-08T10:40:39.985634-08:00,0.0,10.731318,10731.318 +11659,2025-03-08T10:40:50.707339-08:00,0.0,10.721705,10721.705 +11660,2025-03-08T10:41:01.440411-08:00,0.0,10.733072,10733.072 +11661,2025-03-08T10:41:12.174498-08:00,0.0,10.734087,10734.087 +11662,2025-03-08T10:41:22.898312-08:00,0.0,10.723814,10723.814 +11663,2025-03-08T10:41:33.636516-08:00,0.0,10.738204,10738.204 +11664,2025-03-08T10:41:44.364315-08:00,0.0,10.727799,10727.799 +11665,2025-03-08T10:41:55.100496-08:00,0.0,10.736181,10736.181 +11666,2025-03-08T10:42:05.825521-08:00,0.0,10.725025,10725.025 +11667,2025-03-08T10:42:16.556535-08:00,0.0,10.731014,10731.014 +11668,2025-03-08T10:42:27.284383-08:00,0.0,10.727848,10727.848 +11669,2025-03-08T10:42:38.022312-08:00,0.0,10.737929,10737.929 +11670,2025-03-08T10:42:48.749317-08:00,0.0,10.727005,10727.005 +11671,2025-03-08T10:42:59.480691-08:00,0.0,10.731374,10731.374 +11672,2025-03-08T10:43:10.207502-08:00,0.0,10.726811,10726.811 +11673,2025-03-08T10:43:20.930529-08:00,0.0,10.723027,10723.027 +11674,2025-03-08T10:43:31.657527-08:00,0.0,10.726998,10726.998 +11675,2025-03-08T10:43:42.389348-08:00,0.0,10.731821,10731.821 +11676,2025-03-08T10:43:53.111026-08:00,0.0,10.721678,10721.678 +11677,2025-03-08T10:44:03.848316-08:00,0.0,10.73729,10737.29 +11678,2025-03-08T10:44:14.572581-08:00,0.0,10.724265,10724.265 +11679,2025-03-08T10:44:25.303824-08:00,0.0,10.731243,10731.243 +11680,2025-03-08T10:44:36.025312-08:00,0.0,10.721488,10721.488 +11681,2025-03-08T10:44:46.757316-08:00,0.0,10.732004,10732.004 +11682,2025-03-08T10:44:57.479589-08:00,0.0,10.722273,10722.273 +11683,2025-03-08T10:45:08.211314-08:00,0.0,10.731725,10731.725 +11684,2025-03-08T10:45:18.935398-08:00,0.0,10.724084,10724.084 +11685,2025-03-08T10:45:29.659518-08:00,0.0,10.72412,10724.12 +11686,2025-03-08T10:45:40.388624-08:00,0.0,10.729106,10729.106 +11687,2025-03-08T10:45:51.118659-08:00,0.0,10.730035,10730.035 +11688,2025-03-08T10:46:01.851684-08:00,0.0,10.733025,10733.025 +11689,2025-03-08T10:46:12.580155-08:00,0.0,10.728471,10728.471 +11690,2025-03-08T10:46:23.301314-08:00,0.0,10.721159,10721.159 +11691,2025-03-08T10:46:34.029525-08:00,0.0,10.728211,10728.211 +11692,2025-03-08T10:46:44.759333-08:00,0.0,10.729808,10729.808 +11693,2025-03-08T10:46:55.482345-08:00,0.0,10.723012,10723.012 +11694,2025-03-08T10:47:06.210686-08:00,0.0,10.728341,10728.341 +11695,2025-03-08T10:47:16.941346-08:00,0.0,10.73066,10730.66 +11696,2025-03-08T10:47:27.667310-08:00,0.0,10.725964,10725.964 +11697,2025-03-08T10:47:38.385343-08:00,0.0,10.718033,10718.033 +11698,2025-03-08T10:47:49.117402-08:00,0.0,10.732059,10732.059 +11699,2025-03-08T10:47:59.838623-08:00,0.0,10.721221,10721.221 +11700,2025-03-08T10:48:10.563315-08:00,0.0,10.724692,10724.692 +11701,2025-03-08T10:48:21.294467-08:00,0.0,10.731152,10731.152 +11702,2025-03-08T10:48:32.014389-08:00,0.0,10.719922,10719.922 +11703,2025-03-08T10:48:42.739050-08:00,0.0,10.724661,10724.661 +11704,2025-03-08T10:48:53.469323-08:00,0.0,10.730273,10730.273 +11705,2025-03-08T10:49:04.195361-08:00,0.0,10.726038,10726.038 +11706,2025-03-08T10:49:14.921723-08:00,0.0,10.726362,10726.362 +11707,2025-03-08T10:49:25.655314-08:00,0.0,10.733591,10733.591 +11708,2025-03-08T10:49:36.378536-08:00,0.0,10.723222,10723.222 +11709,2025-03-08T10:49:47.100509-08:00,0.0,10.721973,10721.973 +11710,2025-03-08T10:49:57.829313-08:00,0.0,10.728804,10728.804 +11711,2025-03-08T10:50:08.560218-08:00,0.0,10.730905,10730.905 +11712,2025-03-08T10:50:19.280734-08:00,0.0,10.720516,10720.516 +11713,2025-03-08T10:50:30.011311-08:00,0.0,10.730577,10730.577 +11714,2025-03-08T10:50:40.738407-08:00,0.0,10.727096,10727.096 +11715,2025-03-08T10:50:51.463527-08:00,0.0,10.72512,10725.12 +11716,2025-03-08T10:51:02.190088-08:00,0.0,10.726561,10726.561 +11717,2025-03-08T10:51:12.916378-08:00,0.0,10.72629,10726.29 +11718,2025-03-08T10:51:23.650539-08:00,0.0,10.734161,10734.161 +11719,2025-03-08T10:51:34.373335-08:00,0.0,10.722796,10722.796 +11720,2025-03-08T10:51:45.100316-08:00,0.0,10.726981,10726.981 +11721,2025-03-08T10:51:55.829494-08:00,0.0,10.729178,10729.178 +11722,2025-03-08T10:52:06.558315-08:00,0.0,10.728821,10728.821 +11723,2025-03-08T10:52:17.288609-08:00,0.0,10.730294,10730.294 +11724,2025-03-08T10:52:28.046634-08:00,0.0,10.758025,10758.025 +11725,2025-03-08T10:52:38.777567-08:00,0.0,10.730933,10730.933 +11726,2025-03-08T10:52:49.497165-08:00,0.0,10.719598,10719.598 +11727,2025-03-08T10:53:00.235636-08:00,0.0,10.738471,10738.471 +11728,2025-03-08T10:53:10.958569-08:00,0.0,10.722933,10722.933 +11729,2025-03-08T10:53:21.697695-08:00,0.0,10.739126,10739.126 +11730,2025-03-08T10:53:32.422731-08:00,0.0,10.725036,10725.036 +11731,2025-03-08T10:53:43.154778-08:00,0.0,10.732047,10732.047 +11732,2025-03-08T10:53:53.886747-08:00,0.0,10.731969,10731.969 +11733,2025-03-08T10:54:04.609597-08:00,0.0,10.72285,10722.85 +11734,2025-03-08T10:54:15.345827-08:00,0.0,10.73623,10736.23 +11735,2025-03-08T10:54:26.073739-08:00,0.0,10.727912,10727.912 +11736,2025-03-08T10:54:36.797562-08:00,0.0,10.723823,10723.823 +11737,2025-03-08T10:54:47.533568-08:00,0.0,10.736006,10736.006 +11738,2025-03-08T10:54:58.260643-08:00,0.0,10.727075,10727.075 +11739,2025-03-08T10:55:08.991650-08:00,0.0,10.731007,10731.007 +11740,2025-03-08T10:55:19.723605-08:00,0.0,10.731955,10731.955 +11741,2025-03-08T10:55:30.451628-08:00,0.0,10.728023,10728.023 +11742,2025-03-08T10:55:41.180772-08:00,0.0,10.729144,10729.144 +11743,2025-03-08T10:55:51.911594-08:00,0.0,10.730822,10730.822 +11744,2025-03-08T10:56:02.641034-08:00,0.0,10.72944,10729.44 +11745,2025-03-08T10:56:13.372614-08:00,0.0,10.73158,10731.58 +11746,2025-03-08T10:56:24.110598-08:00,0.0,10.737984,10737.984 +11747,2025-03-08T10:56:34.835147-08:00,0.0,10.724549,10724.549 +11748,2025-03-08T10:56:45.574630-08:00,0.0,10.739483,10739.483 +11749,2025-03-08T10:56:56.302590-08:00,0.0,10.72796,10727.96 +11750,2025-03-08T10:57:07.029745-08:00,0.0,10.727155,10727.155 +11751,2025-03-08T10:57:17.769141-08:00,0.0,10.739396,10739.396 +11752,2025-03-08T10:57:28.494838-08:00,0.0,10.725697,10725.697 +11753,2025-03-08T10:57:39.224732-08:00,0.0,10.729894,10729.894 +11754,2025-03-08T10:57:49.965432-08:00,0.0,10.7407,10740.7 +11755,2025-03-08T10:58:00.689565-08:00,0.0,10.724133,10724.133 +11756,2025-03-08T10:58:11.417750-08:00,0.0,10.728185,10728.185 +11757,2025-03-08T10:58:22.145778-08:00,0.0,10.728028,10728.028 +11758,2025-03-08T10:58:32.880573-08:00,0.0,10.734795,10734.795 +11759,2025-03-08T10:58:43.605774-08:00,0.0,10.725201,10725.201 +11760,2025-03-08T10:58:54.339145-08:00,0.0,10.733371,10733.371 +11761,2025-03-08T10:59:05.067629-08:00,0.0,10.728484,10728.484 +11762,2025-03-08T10:59:15.797837-08:00,0.0,10.730208,10730.208 +11763,2025-03-08T10:59:26.521771-08:00,0.0,10.723934,10723.934 +11764,2025-03-08T10:59:37.249770-08:00,0.0,10.727999,10727.999 +11765,2025-03-08T10:59:47.980702-08:00,0.0,10.730932,10730.932 +11766,2025-03-08T10:59:58.701819-08:00,0.0,10.721117,10721.117 +11767,2025-03-08T11:00:09.438642-08:00,0.0,10.736823,10736.823 +11768,2025-03-08T11:00:20.168930-08:00,0.0,10.730288,10730.288 +11769,2025-03-08T11:00:30.895838-08:00,0.0,10.726908,10726.908 +11770,2025-03-08T11:00:41.617115-08:00,0.0,10.721277,10721.277 +11771,2025-03-08T11:00:52.347675-08:00,0.0,10.73056,10730.56 +11772,2025-03-08T11:01:03.073801-08:00,0.0,10.726126,10726.126 +11773,2025-03-08T11:01:13.796589-08:00,0.0,10.722788,10722.788 +11774,2025-03-08T11:01:24.525048-08:00,0.0,10.728459,10728.459 +11775,2025-03-08T11:01:35.259866-08:00,0.0,10.734818,10734.818 +11776,2025-03-08T11:01:45.982661-08:00,0.0,10.722795,10722.795 +11777,2025-03-08T11:01:56.713567-08:00,0.0,10.730906,10730.906 +11778,2025-03-08T11:02:07.438926-08:00,0.0,10.725359,10725.359 +11779,2025-03-08T11:02:18.163564-08:00,0.0,10.724638,10724.638 +11780,2025-03-08T11:02:28.885563-08:00,0.0,10.721999,10721.999 +11781,2025-03-08T11:02:39.609566-08:00,0.0,10.724003,10724.003 +11782,2025-03-08T11:02:50.336823-08:00,0.0,10.727257,10727.257 +11783,2025-03-08T11:03:01.057563-08:00,0.0,10.72074,10720.74 +11784,2025-03-08T11:03:11.788770-08:00,0.0,10.731207,10731.207 +11785,2025-03-08T11:03:22.520692-08:00,0.0,10.731922,10731.922 +11786,2025-03-08T11:03:33.247633-08:00,0.0,10.726941,10726.941 +11787,2025-03-08T11:03:43.972953-08:00,0.0,10.72532,10725.32 +11788,2025-03-08T11:03:54.700593-08:00,0.0,10.72764,10727.64 +11789,2025-03-08T11:04:05.421448-08:00,0.0,10.720855,10720.855 +11790,2025-03-08T11:04:16.152764-08:00,0.0,10.731316,10731.316 +11791,2025-03-08T11:04:26.870564-08:00,0.0,10.7178,10717.8 +11792,2025-03-08T11:04:37.596608-08:00,0.0,10.726044,10726.044 +11793,2025-03-08T11:04:48.317735-08:00,0.0,10.721127,10721.127 +11794,2025-03-08T11:04:59.044819-08:00,0.0,10.727084,10727.084 +11795,2025-03-08T11:05:09.768563-08:00,0.0,10.723744,10723.744 +11796,2025-03-08T11:05:20.500590-08:00,0.0,10.732027,10732.027 +11797,2025-03-08T11:05:31.223560-08:00,0.0,10.72297,10722.97 +11798,2025-03-08T11:05:41.950757-08:00,0.0,10.727197,10727.197 +11799,2025-03-08T11:05:52.675563-08:00,0.0,10.724806,10724.806 +11800,2025-03-08T11:06:03.400816-08:00,0.0,10.725253,10725.253 +11801,2025-03-08T11:06:14.121799-08:00,0.0,10.720983,10720.983 +11802,2025-03-08T11:06:24.853566-08:00,0.0,10.731767,10731.767 +11803,2025-03-08T11:06:35.578502-08:00,0.0,10.724936,10724.936 +11804,2025-03-08T11:06:46.294670-08:00,0.0,10.716168,10716.168 +11805,2025-03-08T11:06:57.018665-08:00,0.0,10.723995,10723.995 +11806,2025-03-08T11:07:07.744629-08:00,0.0,10.725964,10725.964 +11807,2025-03-08T11:07:18.477568-08:00,0.0,10.732939,10732.939 +11808,2025-03-08T11:07:29.204743-08:00,0.0,10.727175,10727.175 +11809,2025-03-08T11:07:39.932135-08:00,0.0,10.727392,10727.392 +11810,2025-03-08T11:07:50.650975-08:00,0.0,10.71884,10718.84 +11811,2025-03-08T11:08:01.381741-08:00,0.0,10.730766,10730.766 +11812,2025-03-08T11:08:12.106748-08:00,0.0,10.725007,10725.007 +11813,2025-03-08T11:08:22.836340-08:00,0.0,10.729592,10729.592 +11814,2025-03-08T11:08:33.561561-08:00,0.0,10.725221,10725.221 +11815,2025-03-08T11:08:44.286765-08:00,0.0,10.725204,10725.204 +11816,2025-03-08T11:08:55.014561-08:00,0.0,10.727796,10727.796 +11817,2025-03-08T11:09:05.736871-08:00,0.0,10.72231,10722.31 +11818,2025-03-08T11:09:16.462566-08:00,0.0,10.725695,10725.695 +11819,2025-03-08T11:09:27.192807-08:00,0.0,10.730241,10730.241 +11820,2025-03-08T11:09:37.922731-08:00,0.0,10.729924,10729.924 +11821,2025-03-08T11:09:48.644690-08:00,0.0,10.721959,10721.959 +11822,2025-03-08T11:09:59.373010-08:00,0.0,10.72832,10728.32 +11823,2025-03-08T11:10:10.101563-08:00,0.0,10.728553,10728.553 +11824,2025-03-08T11:10:20.834576-08:00,0.0,10.733013,10733.013 +11825,2025-03-08T11:10:31.556805-08:00,0.0,10.722229,10722.229 +11826,2025-03-08T11:10:42.293583-08:00,0.0,10.736778,10736.778 +11827,2025-03-08T11:10:53.017776-08:00,0.0,10.724193,10724.193 +11828,2025-03-08T11:11:03.744038-08:00,0.0,10.726262,10726.262 +11829,2025-03-08T11:11:14.479163-08:00,0.0,10.735125,10735.125 +11830,2025-03-08T11:11:25.203875-08:00,0.0,10.724712,10724.712 +11831,2025-03-08T11:11:35.938743-08:00,0.0,10.734868,10734.868 +11832,2025-03-08T11:11:46.662566-08:00,0.0,10.723823,10723.823 +11833,2025-03-08T11:11:57.391064-08:00,0.0,10.728498,10728.498 +11834,2025-03-08T11:12:08.118563-08:00,0.0,10.727499,10727.499 +11835,2025-03-08T11:12:18.848566-08:00,0.0,10.730003,10730.003 +11836,2025-03-08T11:12:29.574740-08:00,0.0,10.726174,10726.174 +11837,2025-03-08T11:12:40.310790-08:00,0.0,10.73605,10736.05 +11838,2025-03-08T11:12:51.030176-08:00,0.0,10.719386,10719.386 +11839,2025-03-08T11:13:01.761025-08:00,0.0,10.730849,10730.849 +11840,2025-03-08T11:13:12.489588-08:00,0.0,10.728563,10728.563 +11841,2025-03-08T11:13:23.218776-08:00,0.0,10.729188,10729.188 +11842,2025-03-08T11:13:33.944592-08:00,0.0,10.725816,10725.816 +11843,2025-03-08T11:13:44.681591-08:00,0.0,10.736999,10736.999 +11844,2025-03-08T11:13:55.401961-08:00,0.0,10.72037,10720.37 +11845,2025-03-08T11:14:06.127679-08:00,0.0,10.725718,10725.718 +11846,2025-03-08T11:14:16.855566-08:00,0.0,10.727887,10727.887 +11847,2025-03-08T11:14:27.578965-08:00,0.0,10.723399,10723.399 +11848,2025-03-08T11:14:38.307562-08:00,0.0,10.728597,10728.597 +11849,2025-03-08T11:14:49.038735-08:00,0.0,10.731173,10731.173 +11850,2025-03-08T11:14:59.765343-08:00,0.0,10.726608,10726.608 +11851,2025-03-08T11:15:10.488598-08:00,0.0,10.723255,10723.255 +11852,2025-03-08T11:15:21.219963-08:00,0.0,10.731365,10731.365 +11853,2025-03-08T11:15:31.939564-08:00,0.0,10.719601,10719.601 +11854,2025-03-08T11:15:42.665796-08:00,0.0,10.726232,10726.232 +11855,2025-03-08T11:15:53.395761-08:00,0.0,10.729965,10729.965 +11856,2025-03-08T11:16:04.125566-08:00,0.0,10.729805,10729.805 +11857,2025-03-08T11:16:14.851594-08:00,0.0,10.726028,10726.028 +11858,2025-03-08T11:16:25.581749-08:00,0.0,10.730155,10730.155 +11859,2025-03-08T11:16:36.312782-08:00,0.0,10.731033,10731.033 +11860,2025-03-08T11:16:47.035567-08:00,0.0,10.722785,10722.785 +11861,2025-03-08T11:16:57.763559-08:00,0.0,10.727992,10727.992 +11862,2025-03-08T11:17:08.497747-08:00,0.0,10.734188,10734.188 +11863,2025-03-08T11:17:19.227773-08:00,0.0,10.730026,10730.026 +11864,2025-03-08T11:17:29.960558-08:00,0.0,10.732785,10732.785 +11865,2025-03-08T11:17:40.686737-08:00,0.0,10.726179,10726.179 +11866,2025-03-08T11:17:51.416562-08:00,0.0,10.729825,10729.825 +11867,2025-03-08T11:18:02.142562-08:00,0.0,10.726,10726.0 +11868,2025-03-08T11:18:12.874015-08:00,0.0,10.731453,10731.453 +11869,2025-03-08T11:18:23.606563-08:00,0.0,10.732548,10732.548 +11870,2025-03-08T11:18:34.339567-08:00,0.0,10.733004,10733.004 +11871,2025-03-08T11:18:45.062700-08:00,0.0,10.723133,10723.133 +11872,2025-03-08T11:18:55.796563-08:00,0.0,10.733863,10733.863 +11873,2025-03-08T11:19:06.523989-08:00,0.0,10.727426,10727.426 +11874,2025-03-08T11:19:17.256348-08:00,0.0,10.732359,10732.359 +11875,2025-03-08T11:19:27.978569-08:00,0.0,10.722221,10722.221 +11876,2025-03-08T11:19:38.703933-08:00,0.0,10.725364,10725.364 +11877,2025-03-08T11:19:49.429635-08:00,0.0,10.725702,10725.702 +11878,2025-03-08T11:20:00.158700-08:00,0.0,10.729065,10729.065 +11879,2025-03-08T11:20:10.894955-08:00,0.0,10.736255,10736.255 +11880,2025-03-08T11:20:21.621564-08:00,0.0,10.726609,10726.609 +11881,2025-03-08T11:20:32.357568-08:00,0.0,10.736004,10736.004 +11882,2025-03-08T11:20:43.090753-08:00,0.0,10.733185,10733.185 +11883,2025-03-08T11:20:53.816565-08:00,0.0,10.725812,10725.812 +11884,2025-03-08T11:21:04.549775-08:00,0.0,10.73321,10733.21 +11885,2025-03-08T11:21:15.276882-08:00,0.0,10.727107,10727.107 +11886,2025-03-08T11:21:26.003566-08:00,0.0,10.726684,10726.684 +11887,2025-03-08T11:21:36.737694-08:00,0.0,10.734128,10734.128 +11888,2025-03-08T11:21:47.466771-08:00,0.0,10.729077,10729.077 +11889,2025-03-08T11:21:58.193565-08:00,0.0,10.726794,10726.794 +11890,2025-03-08T11:22:08.918634-08:00,0.0,10.725069,10725.069 +11891,2025-03-08T11:22:19.652592-08:00,0.0,10.733958,10733.958 +11892,2025-03-08T11:22:30.375657-08:00,0.0,10.723065,10723.065 +11893,2025-03-08T11:22:41.114770-08:00,0.0,10.739113,10739.113 +11894,2025-03-08T11:22:51.839565-08:00,0.0,10.724795,10724.795 +11895,2025-03-08T11:23:02.571752-08:00,0.0,10.732187,10732.187 +11896,2025-03-08T11:23:13.306567-08:00,0.0,10.734815,10734.815 +11897,2025-03-08T11:23:24.041058-08:00,0.0,10.734491,10734.491 +11898,2025-03-08T11:23:34.770798-08:00,0.0,10.72974,10729.74 +11899,2025-03-08T11:23:45.501752-08:00,0.0,10.730954,10730.954 +11900,2025-03-08T11:23:56.233777-08:00,0.0,10.732025,10732.025 +11901,2025-03-08T11:24:06.964667-08:00,0.0,10.73089,10730.89 +11902,2025-03-08T11:24:17.686784-08:00,0.0,10.722117,10722.117 +11903,2025-03-08T11:24:28.416656-08:00,0.0,10.729872,10729.872 +11904,2025-03-08T11:24:39.151774-08:00,0.0,10.735118,10735.118 +11905,2025-03-08T11:24:49.876613-08:00,0.0,10.724839,10724.839 +11906,2025-03-08T11:25:00.601566-08:00,0.0,10.724953,10724.953 +11907,2025-03-08T11:25:11.334782-08:00,0.0,10.733216,10733.216 +11908,2025-03-08T11:25:22.068611-08:00,0.0,10.733829,10733.829 +11909,2025-03-08T11:25:32.799057-08:00,0.0,10.730446,10730.446 +11910,2025-03-08T11:25:43.518751-08:00,0.0,10.719694,10719.694 +11911,2025-03-08T11:25:54.252734-08:00,0.0,10.733983,10733.983 +11912,2025-03-08T11:26:04.979768-08:00,0.0,10.727034,10727.034 +11913,2025-03-08T11:26:15.706561-08:00,0.0,10.726793,10726.793 +11914,2025-03-08T11:26:26.426564-08:00,0.0,10.720003,10720.003 +11915,2025-03-08T11:26:37.158892-08:00,0.0,10.732328,10732.328 +11916,2025-03-08T11:26:47.889748-08:00,0.0,10.730856,10730.856 +11917,2025-03-08T11:26:58.617059-08:00,0.0,10.727311,10727.311 +11918,2025-03-08T11:27:09.341782-08:00,0.0,10.724723,10724.723 +11919,2025-03-08T11:27:20.067920-08:00,0.0,10.726138,10726.138 +11920,2025-03-08T11:27:30.798751-08:00,0.0,10.730831,10730.831 +11921,2025-03-08T11:27:41.530956-08:00,0.0,10.732205,10732.205 +11922,2025-03-08T11:27:52.257716-08:00,0.0,10.72676,10726.76 +11923,2025-03-08T11:28:02.980566-08:00,0.0,10.72285,10722.85 +11924,2025-03-08T11:28:13.706588-08:00,0.0,10.726022,10726.022 +11925,2025-03-08T11:28:24.445566-08:00,0.0,10.738978,10738.978 +11926,2025-03-08T11:28:35.169018-08:00,0.0,10.723452,10723.452 +11927,2025-03-08T11:28:45.897563-08:00,0.0,10.728545,10728.545 +11928,2025-03-08T11:28:56.626562-08:00,0.0,10.728999,10728.999 +11929,2025-03-08T11:29:07.351978-08:00,0.0,10.725416,10725.416 +11930,2025-03-08T11:29:18.085281-08:00,0.0,10.733303,10733.303 +11931,2025-03-08T11:29:28.811690-08:00,0.0,10.726409,10726.409 +11932,2025-03-08T11:29:39.544375-08:00,0.0,10.732685,10732.685 +11933,2025-03-08T11:29:50.268074-08:00,0.0,10.723699,10723.699 +11934,2025-03-08T11:30:00.999563-08:00,0.0,10.731489,10731.489 +11935,2025-03-08T11:30:11.724737-08:00,0.0,10.725174,10725.174 +11936,2025-03-08T11:30:22.463561-08:00,0.0,10.738824,10738.824 +11937,2025-03-08T11:30:33.193767-08:00,0.0,10.730206,10730.206 +11938,2025-03-08T11:30:43.923767-08:00,0.0,10.73,10730.0 +11939,2025-03-08T11:30:54.642565-08:00,0.0,10.718798,10718.798 +11940,2025-03-08T11:31:05.378706-08:00,0.0,10.736141,10736.141 +11941,2025-03-08T11:31:16.103720-08:00,0.0,10.725014,10725.014 +11942,2025-03-08T11:31:26.827567-08:00,0.0,10.723847,10723.847 +11943,2025-03-08T11:31:37.554435-08:00,0.0,10.726868,10726.868 +11944,2025-03-08T11:31:48.282709-08:00,0.0,10.728274,10728.274 +11945,2025-03-08T11:31:59.014783-08:00,0.0,10.732074,10732.074 +11946,2025-03-08T11:32:09.738787-08:00,0.0,10.724004,10724.004 +11947,2025-03-08T11:32:20.465569-08:00,0.0,10.726782,10726.782 +11948,2025-03-08T11:32:31.203752-08:00,0.0,10.738183,10738.183 +11949,2025-03-08T11:32:41.928564-08:00,0.0,10.724812,10724.812 +11950,2025-03-08T11:32:52.651672-08:00,0.0,10.723108,10723.108 +11951,2025-03-08T11:33:03.385667-08:00,0.0,10.733995,10733.995 +11952,2025-03-08T11:33:14.115566-08:00,0.0,10.729899,10729.899 +11953,2025-03-08T11:33:24.840965-08:00,0.0,10.725399,10725.399 +11954,2025-03-08T11:33:35.571578-08:00,0.0,10.730613,10730.613 +11955,2025-03-08T11:33:46.290566-08:00,0.0,10.718988,10718.988 +11956,2025-03-08T11:33:57.023115-08:00,0.0,10.732549,10732.549 +11957,2025-03-08T11:34:07.744678-08:00,0.0,10.721563,10721.563 +11958,2025-03-08T11:34:18.476786-08:00,0.0,10.732108,10732.108 +11959,2025-03-08T11:34:29.199766-08:00,0.0,10.72298,10722.98 +11960,2025-03-08T11:34:39.932565-08:00,0.0,10.732799,10732.799 +11961,2025-03-08T11:34:50.663642-08:00,0.0,10.731077,10731.077 +11962,2025-03-08T11:35:01.384561-08:00,0.0,10.720919,10720.919 +11963,2025-03-08T11:35:12.118567-08:00,0.0,10.734006,10734.006 +11964,2025-03-08T11:35:22.845959-08:00,0.0,10.727392,10727.392 +11965,2025-03-08T11:35:33.576563-08:00,0.0,10.730604,10730.604 +11966,2025-03-08T11:35:44.306562-08:00,0.0,10.729999,10729.999 +11967,2025-03-08T11:35:55.034741-08:00,0.0,10.728179,10728.179 +11968,2025-03-08T11:36:05.756567-08:00,0.0,10.721826,10721.826 +11969,2025-03-08T11:36:16.488791-08:00,0.0,10.732224,10732.224 +11970,2025-03-08T11:36:27.218562-08:00,0.0,10.729771,10729.771 +11971,2025-03-08T11:36:37.943678-08:00,0.0,10.725116,10725.116 +11972,2025-03-08T11:36:48.671721-08:00,0.0,10.728043,10728.043 +11973,2025-03-08T11:36:59.405729-08:00,0.0,10.734008,10734.008 +11974,2025-03-08T11:37:10.132568-08:00,0.0,10.726839,10726.839 +11975,2025-03-08T11:37:20.859151-08:00,0.0,10.726583,10726.583 +11976,2025-03-08T11:37:31.594641-08:00,0.0,10.73549,10735.49 +11977,2025-03-08T11:37:42.329769-08:00,0.0,10.735128,10735.128 +11978,2025-03-08T11:37:53.054754-08:00,0.0,10.724985,10724.985 +11979,2025-03-08T11:38:03.792592-08:00,0.0,10.737838,10737.838 +11980,2025-03-08T11:38:14.513977-08:00,0.0,10.721385,10721.385 +11981,2025-03-08T11:38:25.242597-08:00,0.0,10.72862,10728.62 +11982,2025-03-08T11:38:35.974566-08:00,0.0,10.731969,10731.969 +11983,2025-03-08T11:38:46.699558-08:00,0.0,10.724992,10724.992 +11984,2025-03-08T11:38:57.425703-08:00,0.0,10.726145,10726.145 +11985,2025-03-08T11:39:08.155568-08:00,0.0,10.729865,10729.865 +11986,2025-03-08T11:39:18.887787-08:00,0.0,10.732219,10732.219 +11987,2025-03-08T11:39:29.611564-08:00,0.0,10.723777,10723.777 +11988,2025-03-08T11:39:40.339802-08:00,0.0,10.728238,10728.238 +11989,2025-03-08T11:39:51.073763-08:00,0.0,10.733961,10733.961 +11990,2025-03-08T11:40:01.806566-08:00,0.0,10.732803,10732.803 +11991,2025-03-08T11:40:12.533572-08:00,0.0,10.727006,10727.006 +11992,2025-03-08T11:40:23.262736-08:00,0.0,10.729164,10729.164 +11993,2025-03-08T11:40:33.991808-08:00,0.0,10.729072,10729.072 +11994,2025-03-08T11:40:44.717561-08:00,0.0,10.725753,10725.753 +11995,2025-03-08T11:40:55.446596-08:00,0.0,10.729035,10729.035 +11996,2025-03-08T11:41:06.175780-08:00,0.0,10.729184,10729.184 +11997,2025-03-08T11:41:16.904093-08:00,0.0,10.728313,10728.313 +11998,2025-03-08T11:41:27.642689-08:00,0.0,10.738596,10738.596 +11999,2025-03-08T11:41:38.373619-08:00,0.0,10.73093,10730.93 +12000,2025-03-08T11:41:49.095636-08:00,0.0,10.722017,10722.017 +12001,2025-03-08T11:41:59.829591-08:00,0.0,10.733955,10733.955 +12002,2025-03-08T11:42:10.560568-08:00,0.0,10.730977,10730.977 +12003,2025-03-08T11:42:21.288751-08:00,0.0,10.728183,10728.183 +12004,2025-03-08T11:42:32.020586-08:00,0.0,10.731835,10731.835 +12005,2025-03-08T11:42:42.759566-08:00,0.0,10.73898,10738.98 +12006,2025-03-08T11:42:53.479902-08:00,0.0,10.720336,10720.336 +12007,2025-03-08T11:43:04.213659-08:00,0.0,10.733757,10733.757 +12008,2025-03-08T11:43:14.947015-08:00,0.0,10.733356,10733.356 +12009,2025-03-08T11:43:25.678756-08:00,0.0,10.731741,10731.741 +12010,2025-03-08T11:43:36.407748-08:00,0.0,10.728992,10728.992 +12011,2025-03-08T11:43:47.146564-08:00,0.0,10.738816,10738.816 +12012,2025-03-08T11:43:57.876567-08:00,0.0,10.730003,10730.003 +12013,2025-03-08T11:44:08.608860-08:00,0.0,10.732293,10732.293 +12014,2025-03-08T11:44:19.332597-08:00,0.0,10.723737,10723.737 +12015,2025-03-08T11:44:30.071566-08:00,0.0,10.738969,10738.969 +12016,2025-03-08T11:44:40.802752-08:00,0.0,10.731186,10731.186 +12017,2025-03-08T11:44:51.527827-08:00,0.0,10.725075,10725.075 +12018,2025-03-08T11:45:02.259782-08:00,0.0,10.731955,10731.955 +12019,2025-03-08T11:45:12.992596-08:00,0.0,10.732814,10732.814 +12020,2025-03-08T11:45:23.727423-08:00,0.0,10.734827,10734.827 +12021,2025-03-08T11:45:34.456563-08:00,0.0,10.72914,10729.14 +12022,2025-03-08T11:45:45.186776-08:00,0.0,10.730213,10730.213 +12023,2025-03-08T11:45:55.920602-08:00,0.0,10.733826,10733.826 +12024,2025-03-08T11:46:06.643564-08:00,0.0,10.722962,10722.962 +12025,2025-03-08T11:46:17.378616-08:00,0.0,10.735052,10735.052 +12026,2025-03-08T11:46:28.105139-08:00,0.0,10.726523,10726.523 +12027,2025-03-08T11:46:38.837564-08:00,0.0,10.732425,10732.425 +12028,2025-03-08T11:46:49.571786-08:00,0.0,10.734222,10734.222 +12029,2025-03-08T11:47:00.303300-08:00,0.0,10.731514,10731.514 +12030,2025-03-08T11:47:11.036599-08:00,0.0,10.733299,10733.299 +12031,2025-03-08T11:47:21.767563-08:00,0.0,10.730964,10730.964 +12032,2025-03-08T11:47:32.494325-08:00,0.0,10.726762,10726.762 +12033,2025-03-08T11:47:35.075528-08:00,0.0,2.581203,2581.203 +12034,2025-03-08T11:47:43.235009-08:00,0.0,8.159481,8159.481 +12035,2025-03-08T11:47:53.959768-08:00,0.0,10.724759,10724.759 +12036,2025-03-08T11:48:04.685870-08:00,0.0,10.726102,10726.102 +12037,2025-03-08T11:48:15.424582-08:00,0.0,10.738712,10738.712 +12038,2025-03-08T11:48:26.149567-08:00,0.0,10.724985,10724.985 +12039,2025-03-08T11:48:36.887136-08:00,0.0,10.737569,10737.569 +12040,2025-03-08T11:48:47.620595-08:00,0.0,10.733459,10733.459 +12041,2025-03-08T11:48:58.351566-08:00,0.0,10.730971,10730.971 +12042,2025-03-08T11:49:09.077394-08:00,0.0,10.725828,10725.828 +12043,2025-03-08T11:49:19.806699-08:00,0.0,10.729305,10729.305 +12044,2025-03-08T11:49:30.545770-08:00,0.0,10.739071,10739.071 +12045,2025-03-08T11:49:41.279602-08:00,0.0,10.733832,10733.832 +12046,2025-03-08T11:49:52.011960-08:00,0.0,10.732358,10732.358 +12047,2025-03-08T11:50:02.736563-08:00,0.0,10.724603,10724.603 +12048,2025-03-08T11:50:13.477770-08:00,0.0,10.741207,10741.207 +12049,2025-03-08T11:50:24.199819-08:00,0.0,10.722049,10722.049 +12050,2025-03-08T11:50:34.932564-08:00,0.0,10.732745,10732.745 +12051,2025-03-08T11:50:45.670563-08:00,0.0,10.737999,10737.999 +12052,2025-03-08T11:50:56.400652-08:00,0.0,10.730089,10730.089 +12053,2025-03-08T11:51:07.133589-08:00,0.0,10.732937,10732.937 +12054,2025-03-08T11:51:17.855565-08:00,0.0,10.721976,10721.976 +12055,2025-03-08T11:51:28.586743-08:00,0.0,10.731178,10731.178 +12056,2025-03-08T11:51:39.326301-08:00,0.0,10.739558,10739.558 +12057,2025-03-08T11:51:50.050566-08:00,0.0,10.724265,10724.265 +12058,2025-03-08T11:52:00.786565-08:00,0.0,10.735999,10735.999 +12059,2025-03-08T11:52:11.521783-08:00,0.0,10.735218,10735.218 +12060,2025-03-08T11:52:22.228722-08:00,0.0,10.706939,10706.939 +12061,2025-03-08T11:52:32.960460-08:00,0.0,10.731738,10731.738 +12062,2025-03-08T11:52:43.693861-08:00,0.0,10.733401,10733.401 +12063,2025-03-08T11:52:54.427456-08:00,0.0,10.733595,10733.595 +12064,2025-03-08T11:53:05.161461-08:00,0.0,10.734005,10734.005 +12065,2025-03-08T11:53:15.892479-08:00,0.0,10.731018,10731.018 +12066,2025-03-08T11:53:26.619030-08:00,0.0,10.726551,10726.551 +12067,2025-03-08T11:53:37.354613-08:00,0.0,10.735583,10735.583 +12068,2025-03-08T11:53:48.087646-08:00,0.0,10.733033,10733.033 +12069,2025-03-08T11:53:58.821848-08:00,0.0,10.734202,10734.202 +12070,2025-03-08T11:54:09.542456-08:00,0.0,10.720608,10720.608 +12071,2025-03-08T11:54:20.276619-08:00,0.0,10.734163,10734.163 +12072,2025-03-08T11:54:31.006679-08:00,0.0,10.73006,10730.06 +12073,2025-03-08T11:54:41.737459-08:00,0.0,10.73078,10730.78 +12074,2025-03-08T11:54:52.469873-08:00,0.0,10.732414,10732.414 +12075,2025-03-08T11:55:03.203713-08:00,0.0,10.73384,10733.84 +12076,2025-03-08T11:55:13.931459-08:00,0.0,10.727746,10727.746 +12077,2025-03-08T11:55:24.662459-08:00,0.0,10.731,10731.0 +12078,2025-03-08T11:55:35.393659-08:00,0.0,10.7312,10731.2 +12079,2025-03-08T11:55:46.131572-08:00,0.0,10.737913,10737.913 +12080,2025-03-08T11:55:56.856457-08:00,0.0,10.724885,10724.885 +12081,2025-03-08T11:56:07.588915-08:00,0.0,10.732458,10732.458 +12082,2025-03-08T11:56:18.320237-08:00,0.0,10.731322,10731.322 +12083,2025-03-08T11:56:29.047611-08:00,0.0,10.727374,10727.374 +12084,2025-03-08T11:56:39.778826-08:00,0.0,10.731215,10731.215 +12085,2025-03-08T11:56:50.514832-08:00,0.0,10.736006,10736.006 +12086,2025-03-08T11:57:01.249673-08:00,0.0,10.734841,10734.841 +12087,2025-03-08T11:57:11.970655-08:00,0.0,10.720982,10720.982 +12088,2025-03-08T11:57:22.704650-08:00,0.0,10.733995,10733.995 +12089,2025-03-08T11:57:33.435456-08:00,0.0,10.730806,10730.806 +12090,2025-03-08T11:57:44.169535-08:00,0.0,10.734079,10734.079 +12091,2025-03-08T11:57:54.895836-08:00,0.0,10.726301,10726.301 +12092,2025-03-08T11:58:05.622534-08:00,0.0,10.726698,10726.698 +12093,2025-03-08T11:58:16.358665-08:00,0.0,10.736131,10736.131 +12094,2025-03-08T11:58:27.089487-08:00,0.0,10.730822,10730.822 +12095,2025-03-08T11:58:37.812459-08:00,0.0,10.722972,10722.972 +12096,2025-03-08T11:58:48.551672-08:00,0.0,10.739213,10739.213 +12097,2025-03-08T11:58:59.275461-08:00,0.0,10.723789,10723.789 +12098,2025-03-08T11:59:20.730155-08:00,0.0,21.454694,21454.694 +12099,2025-03-08T11:59:31.464517-08:00,0.0,10.734362,10734.362 +12100,2025-03-08T11:59:42.186487-08:00,0.0,10.72197,10721.97 +12101,2025-03-08T11:59:52.921200-08:00,0.0,10.734713,10734.713 +12102,2025-03-08T12:00:03.652211-08:00,0.0,10.731011,10731.011 +12103,2025-03-08T12:00:14.379892-08:00,0.0,10.727681,10727.681 +12104,2025-03-08T12:00:25.105457-08:00,0.0,10.725565,10725.565 +12105,2025-03-08T12:00:35.827039-08:00,0.0,10.721582,10721.582 +12106,2025-03-08T12:00:46.555959-08:00,0.0,10.72892,10728.92 +12107,2025-03-08T12:00:57.282487-08:00,0.0,10.726528,10726.528 +12108,2025-03-08T12:01:08.015639-08:00,0.0,10.733152,10733.152 +12109,2025-03-08T12:01:18.740880-08:00,0.0,10.725241,10725.241 +12110,2025-03-08T12:01:29.467596-08:00,0.0,10.726716,10726.716 +12111,2025-03-08T12:01:40.194639-08:00,0.0,10.727043,10727.043 +12112,2025-03-08T12:01:50.927453-08:00,0.0,10.732814,10732.814 +12113,2025-03-08T12:02:01.654697-08:00,0.0,10.727244,10727.244 +12114,2025-03-08T12:02:12.377465-08:00,0.0,10.722768,10722.768 +12115,2025-03-08T12:02:23.107571-08:00,0.0,10.730106,10730.106 +12116,2025-03-08T12:02:33.831624-08:00,0.0,10.724053,10724.053 +12117,2025-03-08T12:02:44.568687-08:00,0.0,10.737063,10737.063 +12118,2025-03-08T12:02:55.296462-08:00,0.0,10.727775,10727.775 +12119,2025-03-08T12:03:06.016974-08:00,0.0,10.720512,10720.512 +12120,2025-03-08T12:03:16.753457-08:00,0.0,10.736483,10736.483 +12121,2025-03-08T12:03:27.471718-08:00,0.0,10.718261,10718.261 +12122,2025-03-08T12:03:38.205693-08:00,0.0,10.733975,10733.975 +12123,2025-03-08T12:03:48.929454-08:00,0.0,10.723761,10723.761 +12124,2025-03-08T12:03:59.667640-08:00,0.0,10.738186,10738.186 +12125,2025-03-08T12:04:10.392457-08:00,0.0,10.724817,10724.817 +12126,2025-03-08T12:04:21.122459-08:00,0.0,10.730002,10730.002 +12127,2025-03-08T12:04:31.844519-08:00,0.0,10.72206,10722.06 +12128,2025-03-08T12:04:42.578118-08:00,0.0,10.733599,10733.599 +12129,2025-03-08T12:04:53.305794-08:00,0.0,10.727676,10727.676 +12130,2025-03-08T12:05:04.031452-08:00,0.0,10.725658,10725.658 +12131,2025-03-08T12:05:14.766459-08:00,0.0,10.735007,10735.007 +12132,2025-03-08T12:05:25.493672-08:00,0.0,10.727213,10727.213 +12133,2025-03-08T12:05:36.226092-08:00,0.0,10.73242,10732.42 +12134,2025-03-08T12:05:46.956665-08:00,0.0,10.730573,10730.573 +12135,2025-03-08T12:05:57.688671-08:00,0.0,10.732006,10732.006 +12136,2025-03-08T12:06:08.419045-08:00,0.0,10.730374,10730.374 +12137,2025-03-08T12:06:19.151456-08:00,0.0,10.732411,10732.411 +12138,2025-03-08T12:06:29.877490-08:00,0.0,10.726034,10726.034 +12139,2025-03-08T12:06:40.609271-08:00,0.0,10.731781,10731.781 +12140,2025-03-08T12:06:51.339457-08:00,0.0,10.730186,10730.186 +12141,2025-03-08T12:07:02.064640-08:00,0.0,10.725183,10725.183 +12142,2025-03-08T12:07:12.794456-08:00,0.0,10.729816,10729.816 +12143,2025-03-08T12:07:23.522459-08:00,0.0,10.728003,10728.003 +12144,2025-03-08T12:07:34.258527-08:00,0.0,10.736068,10736.068 +12145,2025-03-08T12:07:44.989427-08:00,0.0,10.7309,10730.9 +12146,2025-03-08T12:07:55.715664-08:00,0.0,10.726237,10726.237 +12147,2025-03-08T12:08:06.439918-08:00,0.0,10.724254,10724.254 +12148,2025-03-08T12:08:17.170477-08:00,0.0,10.730559,10730.559 +12149,2025-03-08T12:08:27.909526-08:00,0.0,10.739049,10739.049 +12150,2025-03-08T12:08:38.637487-08:00,0.0,10.727961,10727.961 +12151,2025-03-08T12:08:49.368554-08:00,0.0,10.731067,10731.067 +12152,2025-03-08T12:09:00.091461-08:00,0.0,10.722907,10722.907 +12153,2025-03-08T12:09:10.826248-08:00,0.0,10.734787,10734.787 +12154,2025-03-08T12:09:21.554669-08:00,0.0,10.728421,10728.421 +12155,2025-03-08T12:09:32.290657-08:00,0.0,10.735988,10735.988 +12156,2025-03-08T12:09:43.023458-08:00,0.0,10.732801,10732.801 +12157,2025-03-08T12:09:53.748459-08:00,0.0,10.725001,10725.001 +12158,2025-03-08T12:10:04.486455-08:00,0.0,10.737996,10737.996 +12159,2025-03-08T12:10:15.211674-08:00,0.0,10.725219,10725.219 +12160,2025-03-08T12:10:25.949251-08:00,0.0,10.737577,10737.577 +12161,2025-03-08T12:10:36.677619-08:00,0.0,10.728368,10728.368 +12162,2025-03-08T12:10:47.414460-08:00,0.0,10.736841,10736.841 +12163,2025-03-08T12:10:58.147645-08:00,0.0,10.733185,10733.185 +12164,2025-03-08T12:11:08.871485-08:00,0.0,10.72384,10723.84 +12165,2025-03-08T12:11:19.606459-08:00,0.0,10.734974,10734.974 +12166,2025-03-08T12:11:30.332241-08:00,0.0,10.725782,10725.782 +12167,2025-03-08T12:11:41.061456-08:00,0.0,10.729215,10729.215 +12168,2025-03-08T12:11:51.793810-08:00,0.0,10.732354,10732.354 +12169,2025-03-08T12:12:02.530752-08:00,0.0,10.736942,10736.942 +12170,2025-03-08T12:12:13.252669-08:00,0.0,10.721917,10721.917 +12171,2025-03-08T12:12:23.980661-08:00,0.0,10.727992,10727.992 +12172,2025-03-08T12:12:34.719570-08:00,0.0,10.738909,10738.909 +12173,2025-03-08T12:12:45.445456-08:00,0.0,10.725886,10725.886 +12174,2025-03-08T12:12:56.180458-08:00,0.0,10.735002,10735.002 +12175,2025-03-08T12:13:06.907664-08:00,0.0,10.727206,10727.206 +12176,2025-03-08T12:13:17.636455-08:00,0.0,10.728791,10728.791 +12177,2025-03-08T12:13:28.374525-08:00,0.0,10.73807,10738.07 +12178,2025-03-08T12:13:39.111648-08:00,0.0,10.737123,10737.123 +12179,2025-03-08T12:13:49.845640-08:00,0.0,10.733992,10733.992 +12180,2025-03-08T12:14:00.569491-08:00,0.0,10.723851,10723.851 +12181,2025-03-08T12:14:11.310453-08:00,0.0,10.740962,10740.962 +12182,2025-03-08T12:14:22.042562-08:00,0.0,10.732109,10732.109 +12183,2025-03-08T12:14:32.770687-08:00,0.0,10.728125,10728.125 +12184,2025-03-08T12:14:43.507626-08:00,0.0,10.736939,10736.939 +12185,2025-03-08T12:14:54.237875-08:00,0.0,10.730249,10730.249 +12186,2025-03-08T12:15:04.970685-08:00,0.0,10.73281,10732.81 +12187,2025-03-08T12:15:15.706662-08:00,0.0,10.735977,10735.977 +12188,2025-03-08T12:15:26.432459-08:00,0.0,10.725797,10725.797 +12189,2025-03-08T12:15:37.163640-08:00,0.0,10.731181,10731.181 +12190,2025-03-08T12:15:47.889457-08:00,0.0,10.725817,10725.817 +12191,2025-03-08T12:15:58.619968-08:00,0.0,10.730511,10730.511 +12192,2025-03-08T12:16:09.360654-08:00,0.0,10.740686,10740.686 +12193,2025-03-08T12:16:20.082460-08:00,0.0,10.721806,10721.806 +12194,2025-03-08T12:16:30.822461-08:00,0.0,10.740001,10740.001 +12195,2025-03-08T12:16:41.551638-08:00,0.0,10.729177,10729.177 +12196,2025-03-08T12:16:52.281459-08:00,0.0,10.729821,10729.821 +12197,2025-03-08T12:17:03.013526-08:00,0.0,10.732067,10732.067 +12198,2025-03-08T12:17:13.744849-08:00,0.0,10.731323,10731.323 +12199,2025-03-08T12:17:24.480492-08:00,0.0,10.735643,10735.643 +12200,2025-03-08T12:17:35.210461-08:00,0.0,10.729969,10729.969 +12201,2025-03-08T12:17:45.948529-08:00,0.0,10.738068,10738.068 +12202,2025-03-08T12:17:56.679645-08:00,0.0,10.731116,10731.116 +12203,2025-03-08T12:18:07.406560-08:00,0.0,10.726915,10726.915 +12204,2025-03-08T12:18:18.134794-08:00,0.0,10.728234,10728.234 +12205,2025-03-08T12:18:28.865822-08:00,0.0,10.731028,10731.028 +12206,2025-03-08T12:18:39.593456-08:00,0.0,10.727634,10727.634 +12207,2025-03-08T12:18:50.328530-08:00,0.0,10.735074,10735.074 +12208,2025-03-08T12:19:01.052459-08:00,0.0,10.723929,10723.929 +12209,2025-03-08T12:19:11.783459-08:00,0.0,10.731,10731.0 +12210,2025-03-08T12:19:22.515904-08:00,0.0,10.732445,10732.445 +12211,2025-03-08T12:19:33.248885-08:00,0.0,10.732981,10732.981 +12212,2025-03-08T12:19:43.970458-08:00,0.0,10.721573,10721.573 +12213,2025-03-08T12:19:54.695732-08:00,0.0,10.725274,10725.274 +12214,2025-03-08T12:20:05.422536-08:00,0.0,10.726804,10726.804 +12215,2025-03-08T12:20:16.159785-08:00,0.0,10.737249,10737.249 +12216,2025-03-08T12:20:26.882527-08:00,0.0,10.722742,10722.742 +12217,2025-03-08T12:20:37.604458-08:00,0.0,10.721931,10721.931 +12218,2025-03-08T12:20:48.339827-08:00,0.0,10.735369,10735.369 +12219,2025-03-08T12:20:59.065456-08:00,0.0,10.725629,10725.629 +12220,2025-03-08T12:21:09.798722-08:00,0.0,10.733266,10733.266 +12221,2025-03-08T12:21:20.532018-08:00,0.0,10.733296,10733.296 +12222,2025-03-08T12:21:31.254676-08:00,0.0,10.722658,10722.658 +12223,2025-03-08T12:21:41.994666-08:00,0.0,10.73999,10739.99 +12224,2025-03-08T12:21:52.724472-08:00,0.0,10.729806,10729.806 +12225,2025-03-08T12:22:03.456505-08:00,0.0,10.732033,10732.033 +12226,2025-03-08T12:22:14.181285-08:00,0.0,10.72478,10724.78 +12227,2025-03-08T12:22:24.908644-08:00,0.0,10.727359,10727.359 +12228,2025-03-08T12:22:35.639661-08:00,0.0,10.731017,10731.017 +12229,2025-03-08T12:22:46.369073-08:00,0.0,10.729412,10729.412 +12230,2025-03-08T12:22:49.034305-08:00,0.0,2.665232,2665.232 +12231,2025-03-08T12:22:57.107460-08:00,0.0,8.073155,8073.155 +12232,2025-03-08T12:23:07.835457-08:00,0.0,10.727997,10727.997 +12233,2025-03-08T12:23:18.567460-08:00,0.0,10.732003,10732.003 +12234,2025-03-08T12:23:29.295436-08:00,0.0,10.727976,10727.976 +12235,2025-03-08T12:23:40.029096-08:00,0.0,10.73366,10733.66 +12236,2025-03-08T12:23:50.753488-08:00,0.0,10.724392,10724.392 +12237,2025-03-08T12:24:01.484626-08:00,0.0,10.731138,10731.138 +12238,2025-03-08T12:24:12.216456-08:00,0.0,10.73183,10731.83 +12239,2025-03-08T12:24:22.947778-08:00,0.0,10.731322,10731.322 +12240,2025-03-08T12:24:33.679812-08:00,0.0,10.732034,10732.034 +12241,2025-03-08T12:24:44.415544-08:00,0.0,10.735732,10735.732 +12242,2025-03-08T12:24:55.140656-08:00,0.0,10.725112,10725.112 +12243,2025-03-08T12:25:05.879455-08:00,0.0,10.738799,10738.799 +12244,2025-03-08T12:25:16.604483-08:00,0.0,10.725028,10725.028 +12245,2025-03-08T12:25:27.335459-08:00,0.0,10.730976,10730.976 +12246,2025-03-08T12:25:38.064869-08:00,0.0,10.72941,10729.41 +12247,2025-03-08T12:25:48.798208-08:00,0.0,10.733339,10733.339 +12248,2025-03-08T12:25:59.531530-08:00,0.0,10.733322,10733.322 +12249,2025-03-08T12:26:10.254474-08:00,0.0,10.722944,10722.944 +12250,2025-03-08T12:26:20.994772-08:00,0.0,10.740298,10740.298 +12251,2025-03-08T12:26:31.716735-08:00,0.0,10.721963,10721.963 +12252,2025-03-08T12:26:42.453637-08:00,0.0,10.736902,10736.902 +12253,2025-03-08T12:26:53.178453-08:00,0.0,10.724816,10724.816 +12254,2025-03-08T12:27:03.915454-08:00,0.0,10.737001,10737.001 +12255,2025-03-08T12:27:14.637481-08:00,0.0,10.722027,10722.027 +12256,2025-03-08T12:27:25.371911-08:00,0.0,10.73443,10734.43 +12257,2025-03-08T12:27:36.097453-08:00,0.0,10.725542,10725.542 +12258,2025-03-08T12:27:46.832691-08:00,0.0,10.735238,10735.238 +12259,2025-03-08T12:27:57.552453-08:00,0.0,10.719762,10719.762 +12260,2025-03-08T12:28:08.289652-08:00,0.0,10.737199,10737.199 +12261,2025-03-08T12:28:19.011656-08:00,0.0,10.722004,10722.004 +12262,2025-03-08T12:28:29.742494-08:00,0.0,10.730838,10730.838 +12263,2025-03-08T12:28:40.470701-08:00,0.0,10.728207,10728.207 +12264,2025-03-08T12:28:51.201779-08:00,0.0,10.731078,10731.078 +12265,2025-03-08T12:29:01.931462-08:00,0.0,10.729683,10729.683 +12266,2025-03-08T12:29:12.662192-08:00,0.0,10.73073,10730.73 +12267,2025-03-08T12:29:23.387484-08:00,0.0,10.725292,10725.292 +12268,2025-03-08T12:29:34.121458-08:00,0.0,10.733974,10733.974 +12269,2025-03-08T12:29:44.849715-08:00,0.0,10.728257,10728.257 +12270,2025-03-08T12:29:55.579457-08:00,0.0,10.729742,10729.742 +12271,2025-03-08T12:30:06.304630-08:00,0.0,10.725173,10725.173 +12272,2025-03-08T12:30:17.035632-08:00,0.0,10.731002,10731.002 +12273,2025-03-08T12:30:27.767480-08:00,0.0,10.731848,10731.848 +12274,2025-03-08T12:30:38.491695-08:00,0.0,10.724215,10724.215 +12275,2025-03-08T12:30:49.222635-08:00,0.0,10.73094,10730.94 +12276,2025-03-08T12:30:59.959659-08:00,0.0,10.737024,10737.024 +12277,2025-03-08T12:31:10.686472-08:00,0.0,10.726813,10726.813 +12278,2025-03-08T12:31:21.420535-08:00,0.0,10.734063,10734.063 +12279,2025-03-08T12:31:32.150618-08:00,0.0,10.730083,10730.083 +12280,2025-03-08T12:31:42.874459-08:00,0.0,10.723841,10723.841 +12281,2025-03-08T12:31:53.602631-08:00,0.0,10.728172,10728.172 +12282,2025-03-08T12:32:04.330457-08:00,0.0,10.727826,10727.826 +12283,2025-03-08T12:32:15.060459-08:00,0.0,10.730002,10730.002 +12284,2025-03-08T12:32:25.788088-08:00,0.0,10.727629,10727.629 +12285,2025-03-08T12:32:36.524451-08:00,0.0,10.736363,10736.363 +12286,2025-03-08T12:32:47.252637-08:00,0.0,10.728186,10728.186 +12287,2025-03-08T12:32:57.978790-08:00,0.0,10.726153,10726.153 +12288,2025-03-08T12:33:08.710460-08:00,0.0,10.73167,10731.67 +12289,2025-03-08T12:33:19.443878-08:00,0.0,10.733418,10733.418 +12290,2025-03-08T12:33:30.171479-08:00,0.0,10.727601,10727.601 +12291,2025-03-08T12:33:40.900519-08:00,0.0,10.72904,10729.04 +12292,2025-03-08T12:33:51.630435-08:00,0.0,10.729916,10729.916 +12293,2025-03-08T12:34:02.354508-08:00,0.0,10.724073,10724.073 +12294,2025-03-08T12:34:13.091459-08:00,0.0,10.736951,10736.951 +12295,2025-03-08T12:34:23.821457-08:00,0.0,10.729998,10729.998 +12296,2025-03-08T12:34:34.557011-08:00,0.0,10.735554,10735.554 +12297,2025-03-08T12:34:45.279673-08:00,0.0,10.722662,10722.662 +12298,2025-03-08T12:34:56.010744-08:00,0.0,10.731071,10731.071 +12299,2025-03-08T12:35:06.735652-08:00,0.0,10.724908,10724.908 +12300,2025-03-08T12:35:17.472456-08:00,0.0,10.736804,10736.804 +12301,2025-03-08T12:35:28.202474-08:00,0.0,10.730018,10730.018 +12302,2025-03-08T12:35:38.932519-08:00,0.0,10.730045,10730.045 +12303,2025-03-08T12:35:49.657457-08:00,0.0,10.724938,10724.938 +12304,2025-03-08T12:36:00.390835-08:00,0.0,10.733378,10733.378 +12305,2025-03-08T12:36:11.122456-08:00,0.0,10.731621,10731.621 +12306,2025-03-08T12:36:21.855456-08:00,0.0,10.733,10733.0 +12307,2025-03-08T12:36:32.587548-08:00,0.0,10.732092,10732.092 +12308,2025-03-08T12:36:43.317485-08:00,0.0,10.729937,10729.937 +12309,2025-03-08T12:36:54.043667-08:00,0.0,10.726182,10726.182 +12310,2025-03-08T12:37:04.768644-08:00,0.0,10.724977,10724.977 +12311,2025-03-08T12:37:15.490495-08:00,0.0,10.721851,10721.851 +12312,2025-03-08T12:37:26.227691-08:00,0.0,10.737196,10737.196 +12313,2025-03-08T12:37:36.947452-08:00,0.0,10.719761,10719.761 +12314,2025-03-08T12:37:47.683585-08:00,0.0,10.736133,10736.133 +12315,2025-03-08T12:37:58.414649-08:00,0.0,10.731064,10731.064 +12316,2025-03-08T12:38:09.143565-08:00,0.0,10.728916,10728.916 +12317,2025-03-08T12:38:19.875666-08:00,0.0,10.732101,10732.101 +12318,2025-03-08T12:38:30.605454-08:00,0.0,10.729788,10729.788 +12319,2025-03-08T12:38:41.344631-08:00,0.0,10.739177,10739.177 +12320,2025-03-08T12:38:52.072459-08:00,0.0,10.727828,10727.828 +12321,2025-03-08T12:39:02.793708-08:00,0.0,10.721249,10721.249 +12322,2025-03-08T12:39:13.524494-08:00,0.0,10.730786,10730.786 +12323,2025-03-08T12:39:24.260108-08:00,0.0,10.735614,10735.614 +12324,2025-03-08T12:39:34.990759-08:00,0.0,10.730651,10730.651 +12325,2025-03-08T12:39:45.721342-08:00,0.0,10.730583,10730.583 +12326,2025-03-08T12:39:56.442529-08:00,0.0,10.721187,10721.187 +12327,2025-03-08T12:40:07.172642-08:00,0.0,10.730113,10730.113 +12328,2025-03-08T12:40:17.910583-08:00,0.0,10.737941,10737.941 +12329,2025-03-08T12:40:28.636526-08:00,0.0,10.725943,10725.943 +12330,2025-03-08T12:40:39.368709-08:00,0.0,10.732183,10732.183 +12331,2025-03-08T12:40:50.093523-08:00,0.0,10.724814,10724.814 +12332,2025-03-08T12:41:00.833458-08:00,0.0,10.739935,10739.935 +12333,2025-03-08T12:41:11.562641-08:00,0.0,10.729183,10729.183 +12334,2025-03-08T12:41:22.289456-08:00,0.0,10.726815,10726.815 +12335,2025-03-08T12:41:33.015172-08:00,0.0,10.725716,10725.716 +12336,2025-03-08T12:41:43.744623-08:00,0.0,10.729451,10729.451 +12337,2025-03-08T12:41:54.476460-08:00,0.0,10.731837,10731.837 +12338,2025-03-08T12:42:05.203547-08:00,0.0,10.727087,10727.087 +12339,2025-03-08T12:42:15.934642-08:00,0.0,10.731095,10731.095 +12340,2025-03-08T12:42:26.664661-08:00,0.0,10.730019,10730.019 +12341,2025-03-08T12:42:37.398459-08:00,0.0,10.733798,10733.798 +12342,2025-03-08T12:42:48.126668-08:00,0.0,10.728209,10728.209 +12343,2025-03-08T12:42:58.852456-08:00,0.0,10.725788,10725.788 +12344,2025-03-08T12:43:09.584640-08:00,0.0,10.732184,10732.184 +12345,2025-03-08T12:43:20.312335-08:00,0.0,10.727695,10727.695 +12346,2025-03-08T12:43:31.035526-08:00,0.0,10.723191,10723.191 +12347,2025-03-08T12:43:41.774464-08:00,0.0,10.738938,10738.938 +12348,2025-03-08T12:43:52.498539-08:00,0.0,10.724075,10724.075 +12349,2025-03-08T12:44:03.232458-08:00,0.0,10.733919,10733.919 +12350,2025-03-08T12:44:13.957477-08:00,0.0,10.725019,10725.019 +12351,2025-03-08T12:44:24.690457-08:00,0.0,10.73298,10732.98 +12352,2025-03-08T12:44:35.418487-08:00,0.0,10.72803,10728.03 +12353,2025-03-08T12:44:46.148632-08:00,0.0,10.730145,10730.145 +12354,2025-03-08T12:44:56.879645-08:00,0.0,10.731013,10731.013 +12355,2025-03-08T12:45:07.605675-08:00,0.0,10.72603,10726.03 +12356,2025-03-08T12:45:18.332128-08:00,0.0,10.726453,10726.453 +12357,2025-03-08T12:45:29.064459-08:00,0.0,10.732331,10732.331 +12358,2025-03-08T12:45:39.788679-08:00,0.0,10.72422,10724.22 +12359,2025-03-08T12:45:50.518826-08:00,0.0,10.730147,10730.147 +12360,2025-03-08T12:46:01.246714-08:00,0.0,10.727888,10727.888 +12361,2025-03-08T12:46:11.975255-08:00,0.0,10.728541,10728.541 +12362,2025-03-08T12:46:22.702459-08:00,0.0,10.727204,10727.204 +12363,2025-03-08T12:46:33.427455-08:00,0.0,10.724996,10724.996 +12364,2025-03-08T12:46:44.156938-08:00,0.0,10.729483,10729.483 +12365,2025-03-08T12:46:54.889661-08:00,0.0,10.732723,10732.723 +12366,2025-03-08T12:47:05.619671-08:00,0.0,10.73001,10730.01 +12367,2025-03-08T12:47:16.340457-08:00,0.0,10.720786,10720.786 +12368,2025-03-08T12:47:27.071457-08:00,0.0,10.731,10731.0 +12369,2025-03-08T12:47:37.799632-08:00,0.0,10.728175,10728.175 +12370,2025-03-08T12:47:48.529681-08:00,0.0,10.730049,10730.049 +12371,2025-03-08T12:47:59.256625-08:00,0.0,10.726944,10726.944 +12372,2025-03-08T12:48:09.988849-08:00,0.0,10.732224,10732.224 +12373,2025-03-08T12:48:20.706459-08:00,0.0,10.71761,10717.61 +12374,2025-03-08T12:48:31.443462-08:00,0.0,10.737003,10737.003 +12375,2025-03-08T12:48:42.168600-08:00,0.0,10.725138,10725.138 +12376,2025-03-08T12:48:52.899459-08:00,0.0,10.730859,10730.859 +12377,2025-03-08T12:49:03.625604-08:00,0.0,10.726145,10726.145 +12378,2025-03-08T12:49:14.352562-08:00,0.0,10.726958,10726.958 +12379,2025-03-08T12:49:25.090510-08:00,0.0,10.737948,10737.948 +12380,2025-03-08T12:49:35.819616-08:00,0.0,10.729106,10729.106 +12381,2025-03-08T12:49:46.555761-08:00,0.0,10.736145,10736.145 +12382,2025-03-08T12:49:57.280848-08:00,0.0,10.725087,10725.087 +12383,2025-03-08T12:50:08.014672-08:00,0.0,10.733824,10733.824 +12384,2025-03-08T12:50:18.745639-08:00,0.0,10.730967,10730.967 +12385,2025-03-08T12:50:29.476457-08:00,0.0,10.730818,10730.818 +12386,2025-03-08T12:50:40.205567-08:00,0.0,10.72911,10729.11 +12387,2025-03-08T12:50:50.932456-08:00,0.0,10.726889,10726.889 +12388,2025-03-08T12:51:01.660460-08:00,0.0,10.728004,10728.004 +12389,2025-03-08T12:51:12.386641-08:00,0.0,10.726181,10726.181 +12390,2025-03-08T12:51:23.113481-08:00,0.0,10.72684,10726.84 +12391,2025-03-08T12:51:33.839459-08:00,0.0,10.725978,10725.978 +12392,2025-03-08T12:51:44.567876-08:00,0.0,10.728417,10728.417 +12393,2025-03-08T12:51:55.292480-08:00,0.0,10.724604,10724.604 +12394,2025-03-08T12:52:06.022638-08:00,0.0,10.730158,10730.158 +12395,2025-03-08T12:52:16.755678-08:00,0.0,10.73304,10733.04 +12396,2025-03-08T12:52:27.496288-08:00,0.0,10.74061,10740.61 +12397,2025-03-08T12:52:38.222335-08:00,0.0,10.726047,10726.047 +12398,2025-03-08T12:52:48.947497-08:00,0.0,10.725162,10725.162 +12399,2025-03-08T12:52:59.674437-08:00,0.0,10.72694,10726.94 +12400,2025-03-08T12:53:10.399289-08:00,0.0,10.724852,10724.852 +12401,2025-03-08T12:53:21.130285-08:00,0.0,10.730996,10730.996 +12402,2025-03-08T12:53:31.857433-08:00,0.0,10.727148,10727.148 +12403,2025-03-08T12:53:42.589289-08:00,0.0,10.731856,10731.856 +12404,2025-03-08T12:53:53.307614-08:00,0.0,10.718325,10718.325 +12405,2025-03-08T12:54:04.038287-08:00,0.0,10.730673,10730.673 +12406,2025-03-08T12:54:14.763340-08:00,0.0,10.725053,10725.053 +12407,2025-03-08T12:54:25.498682-08:00,0.0,10.735342,10735.342 +12408,2025-03-08T12:54:36.227288-08:00,0.0,10.728606,10728.606 +12409,2025-03-08T12:54:46.959455-08:00,0.0,10.732167,10732.167 +12410,2025-03-08T12:54:57.678287-08:00,0.0,10.718832,10718.832 +12411,2025-03-08T12:55:08.407501-08:00,0.0,10.729214,10729.214 +12412,2025-03-08T12:55:19.133685-08:00,0.0,10.726184,10726.184 +12413,2025-03-08T12:55:29.860286-08:00,0.0,10.726601,10726.601 +12414,2025-03-08T12:55:40.585492-08:00,0.0,10.725206,10725.206 +12415,2025-03-08T12:55:51.321952-08:00,0.0,10.73646,10736.46 +12416,2025-03-08T12:56:02.045437-08:00,0.0,10.723485,10723.485 +12417,2025-03-08T12:56:12.777310-08:00,0.0,10.731873,10731.873 +12418,2025-03-08T12:56:23.505282-08:00,0.0,10.727972,10727.972 +12419,2025-03-08T12:56:34.235289-08:00,0.0,10.730007,10730.007 +12420,2025-03-08T12:56:44.968684-08:00,0.0,10.733395,10733.395 +12421,2025-03-08T12:56:55.689286-08:00,0.0,10.720602,10720.602 +12422,2025-03-08T12:57:06.425284-08:00,0.0,10.735998,10735.998 +12423,2025-03-08T12:57:17.153453-08:00,0.0,10.728169,10728.169 +12424,2025-03-08T12:57:27.884288-08:00,0.0,10.730835,10730.835 +12425,2025-03-08T12:57:38.613523-08:00,0.0,10.729235,10729.235 +12426,2025-03-08T12:57:49.340473-08:00,0.0,10.72695,10726.95 +12427,2025-03-08T12:58:00.065289-08:00,0.0,10.724816,10724.816 +12428,2025-03-08T12:58:10.803287-08:00,0.0,10.737998,10737.998 +12429,2025-03-08T12:58:21.532487-08:00,0.0,10.7292,10729.2 +12430,2025-03-08T12:58:32.260490-08:00,0.0,10.728003,10728.003 +12431,2025-03-08T12:58:42.990494-08:00,0.0,10.730004,10730.004 +12432,2025-03-08T12:58:53.708383-08:00,0.0,10.717889,10717.889 +12433,2025-03-08T12:59:04.440499-08:00,0.0,10.732116,10732.116 +12434,2025-03-08T12:59:15.170545-08:00,0.0,10.730046,10730.046 +12435,2025-03-08T12:59:25.905646-08:00,0.0,10.735101,10735.101 +12436,2025-03-08T12:59:36.626472-08:00,0.0,10.720826,10720.826 +12437,2025-03-08T12:59:47.363485-08:00,0.0,10.737013,10737.013 +12438,2025-03-08T12:59:58.087485-08:00,0.0,10.724,10724.0 +12439,2025-03-08T13:00:08.816318-08:00,0.0,10.728833,10728.833 +12440,2025-03-08T13:00:19.550474-08:00,0.0,10.734156,10734.156 +12441,2025-03-08T13:00:30.276464-08:00,0.0,10.72599,10725.99 +12442,2025-03-08T13:00:41.006514-08:00,0.0,10.73005,10730.05 +12443,2025-03-08T13:00:51.743464-08:00,0.0,10.73695,10736.95 +12444,2025-03-08T13:01:02.469287-08:00,0.0,10.725823,10725.823 +12445,2025-03-08T13:01:13.206521-08:00,0.0,10.737234,10737.234 +12446,2025-03-08T13:01:23.928578-08:00,0.0,10.722057,10722.057 +12447,2025-03-08T13:01:34.666290-08:00,0.0,10.737712,10737.712 +12448,2025-03-08T13:01:45.391786-08:00,0.0,10.725496,10725.496 +12449,2025-03-08T13:01:56.122347-08:00,0.0,10.730561,10730.561 +12450,2025-03-08T13:02:06.857493-08:00,0.0,10.735146,10735.146 +12451,2025-03-08T13:02:17.590432-08:00,0.0,10.732939,10732.939 +12452,2025-03-08T13:02:28.327588-08:00,0.0,10.737156,10737.156 +12453,2025-03-08T13:02:39.063462-08:00,0.0,10.735874,10735.874 +12454,2025-03-08T13:02:49.791286-08:00,0.0,10.727824,10727.824 +12455,2025-03-08T13:03:00.526289-08:00,0.0,10.735003,10735.003 +12456,2025-03-08T13:03:11.254473-08:00,0.0,10.728184,10728.184 +12457,2025-03-08T13:03:21.986283-08:00,0.0,10.73181,10731.81 +12458,2025-03-08T13:03:32.720284-08:00,0.0,10.734001,10734.001 +12459,2025-03-08T13:03:43.448669-08:00,0.0,10.728385,10728.385 +12460,2025-03-08T13:03:54.185574-08:00,0.0,10.736905,10736.905 +12461,2025-03-08T13:04:04.913592-08:00,0.0,10.728018,10728.018 +12462,2025-03-08T13:04:15.647491-08:00,145.0,10.733899,10733.899 +12463,2025-03-08T13:04:16.472493-08:00,355.0,0.825002,825.002 +12464,2025-03-08T13:04:26.387471-08:00,403.0,9.914978,9914.978 +12465,2025-03-08T13:04:37.117284-08:00,423.0,10.729813,10729.813 +12466,2025-03-08T13:04:47.842288-08:00,326.0,10.725004,10725.004 +12467,2025-03-08T13:04:58.583469-08:00,451.0,10.741181,10741.181 +12468,2025-03-08T13:05:09.316310-08:00,432.0,10.732841,10732.841 +12469,2025-03-08T13:05:20.051495-08:00,365.0,10.735185,10735.185 +12470,2025-03-08T13:05:20.656647-08:00,0.0,0.605152,605.152 +12471,2025-03-08T13:05:30.781732-08:00,0.0,10.125085,10125.085 +12472,2025-03-08T13:05:41.523775-08:00,0.0,10.742043,10742.043 +12473,2025-03-08T13:05:52.261230-08:00,0.0,10.737455,10737.455 +12474,2025-03-08T13:06:02.997521-08:00,0.0,10.736291,10736.291 +12475,2025-03-08T13:06:13.731465-08:00,0.0,10.733944,10733.944 +12476,2025-03-08T13:06:24.464292-08:00,0.0,10.732827,10732.827 +12477,2025-03-08T13:06:35.204496-08:00,0.0,10.740204,10740.204 +12478,2025-03-08T13:06:45.934029-08:00,0.0,10.729533,10729.533 +12479,2025-03-08T13:06:56.665488-08:00,0.0,10.731459,10731.459 +12480,2025-03-08T13:07:07.402502-08:00,0.0,10.737014,10737.014 +12481,2025-03-08T13:07:18.132316-08:00,0.0,10.729814,10729.814 +12482,2025-03-08T13:07:28.875285-08:00,0.0,10.742969,10742.969 +12483,2025-03-08T13:07:39.607289-08:00,0.0,10.732004,10732.004 +12484,2025-03-08T13:07:50.333689-08:00,0.0,10.7264,10726.4 +12485,2025-03-08T13:08:01.077352-08:00,0.0,10.743663,10743.663 +12486,2025-03-08T13:08:11.800320-08:00,0.0,10.722968,10722.968 +12487,2025-03-08T13:08:22.527461-08:00,0.0,10.727141,10727.141 +12488,2025-03-08T13:08:33.270162-08:00,0.0,10.742701,10742.701 +12489,2025-03-08T13:08:43.994518-08:00,0.0,10.724356,10724.356 +12490,2025-03-08T13:08:54.729286-08:00,0.0,10.734768,10734.768 +12491,2025-03-08T13:09:05.462705-08:00,0.0,10.733419,10733.419 +12492,2025-03-08T13:09:16.190295-08:00,0.0,10.72759,10727.59 +12493,2025-03-08T13:09:26.927352-08:00,0.0,10.737057,10737.057 +12494,2025-03-08T13:09:37.652851-08:00,0.0,10.725499,10725.499 +12495,2025-03-08T13:09:48.381353-08:00,0.0,10.728502,10728.502 +12496,2025-03-08T13:09:59.122625-08:00,0.0,10.741272,10741.272 +12497,2025-03-08T13:10:09.854301-08:00,0.0,10.731676,10731.676 +12498,2025-03-08T13:10:20.587694-08:00,0.0,10.733393,10733.393 +12499,2025-03-08T13:10:31.309879-08:00,0.0,10.722185,10722.185 +12500,2025-03-08T13:10:42.050469-08:00,0.0,10.74059,10740.59 +12501,2025-03-08T13:10:52.773556-08:00,0.0,10.723087,10723.087 +12502,2025-03-08T13:11:03.508284-08:00,0.0,10.734728,10734.728 +12503,2025-03-08T13:11:14.236301-08:00,0.0,10.728017,10728.017 +12504,2025-03-08T13:11:24.968488-08:00,0.0,10.732187,10732.187 +12505,2025-03-08T13:11:35.709289-08:00,0.0,10.740801,10740.801 +12506,2025-03-08T13:11:46.440402-08:00,0.0,10.731113,10731.113 +12507,2025-03-08T13:11:57.177516-08:00,0.0,10.737114,10737.114 +12508,2025-03-08T13:12:07.912713-08:00,0.0,10.735197,10735.197 +12509,2025-03-08T13:12:18.643290-08:00,0.0,10.730577,10730.577 +12510,2025-03-08T13:12:29.378287-08:00,0.0,10.734997,10734.997 +12511,2025-03-08T13:12:40.111471-08:00,0.0,10.733184,10733.184 +12512,2025-03-08T13:12:50.839499-08:00,0.0,10.728028,10728.028 +12513,2025-03-08T13:13:01.574357-08:00,0.0,10.734858,10734.858 +12514,2025-03-08T13:13:12.305519-08:00,0.0,10.731162,10731.162 +12515,2025-03-08T13:13:23.032284-08:00,0.0,10.726765,10726.765 +12516,2025-03-08T13:13:33.764365-08:00,0.0,10.732081,10732.081 +12517,2025-03-08T13:13:44.500506-08:00,0.0,10.736141,10736.141 +12518,2025-03-08T13:13:55.235473-08:00,0.0,10.734967,10734.967 +12519,2025-03-08T13:14:05.962498-08:00,0.0,10.727025,10727.025 +12520,2025-03-08T13:14:16.698355-08:00,0.0,10.735857,10735.857 +12521,2025-03-08T13:14:27.432466-08:00,0.0,10.734111,10734.111 +12522,2025-03-08T13:14:38.162975-08:00,0.0,10.730509,10730.509 +12523,2025-03-08T13:14:48.900289-08:00,0.0,10.737314,10737.314 +12524,2025-03-08T13:14:59.635290-08:00,0.0,10.735001,10735.001 +12525,2025-03-08T13:15:10.370499-08:00,0.0,10.735209,10735.209 +12526,2025-03-08T13:15:21.103362-08:00,0.0,10.732863,10732.863 +12527,2025-03-08T13:15:31.829402-08:00,0.0,10.72604,10726.04 +12528,2025-03-08T13:15:42.566480-08:00,0.0,10.737078,10737.078 +12529,2025-03-08T13:15:53.307475-08:00,0.0,10.740995,10740.995 +12530,2025-03-08T13:16:04.041283-08:00,0.0,10.733808,10733.808 +12531,2025-03-08T13:16:14.774337-08:00,0.0,10.733054,10733.054 +12532,2025-03-08T13:16:25.513503-08:00,0.0,10.739166,10739.166 +12533,2025-03-08T13:16:36.245463-08:00,0.0,10.73196,10731.96 +12534,2025-03-08T13:16:46.984539-08:00,0.0,10.739076,10739.076 +12535,2025-03-08T13:16:57.719291-08:00,0.0,10.734752,10734.752 +12536,2025-03-08T13:17:08.445472-08:00,0.0,10.726181,10726.181 +12537,2025-03-08T13:17:19.185490-08:00,0.0,10.740018,10740.018 +12538,2025-03-08T13:17:29.919289-08:00,0.0,10.733799,10733.799 +12539,2025-03-08T13:17:40.641289-08:00,0.0,10.722,10722.0 +12540,2025-03-08T13:17:51.375483-08:00,0.0,10.734194,10734.194 +12541,2025-03-08T13:18:02.113618-08:00,0.0,10.738135,10738.135 +12542,2025-03-08T13:18:12.847289-08:00,0.0,10.733671,10733.671 +12543,2025-03-08T13:18:23.572006-08:00,0.0,10.724717,10724.717 +12544,2025-03-08T13:18:34.307493-08:00,0.0,10.735487,10735.487 +12545,2025-03-08T13:18:45.045350-08:00,0.0,10.737857,10737.857 +12546,2025-03-08T13:18:55.771395-08:00,0.0,10.726045,10726.045 +12547,2025-03-08T13:19:06.512435-08:00,0.0,10.74104,10741.04 +12548,2025-03-08T13:19:17.243533-08:00,0.0,10.731098,10731.098 +12549,2025-03-08T13:19:27.969358-08:00,0.0,10.725825,10725.825 +12550,2025-03-08T13:19:38.704055-08:00,0.0,10.734697,10734.697 +12551,2025-03-08T13:19:49.442481-08:00,0.0,10.738426,10738.426 +12552,2025-03-08T13:20:00.178457-08:00,0.0,10.735976,10735.976 +12553,2025-03-08T13:20:10.906518-08:00,0.0,10.728061,10728.061 +12554,2025-03-08T13:20:21.644307-08:00,0.0,10.737789,10737.789 +12555,2025-03-08T13:20:32.364338-08:00,0.0,10.720031,10720.031 +12556,2025-03-08T13:20:43.100497-08:00,0.0,10.736159,10736.159 +12557,2025-03-08T13:20:53.832852-08:00,0.0,10.732355,10732.355 +12558,2025-03-08T13:21:04.571526-08:00,0.0,10.738674,10738.674 +12559,2025-03-08T13:21:15.303290-08:00,0.0,10.731764,10731.764 +12560,2025-03-08T13:21:26.032581-08:00,0.0,10.729291,10729.291 +12561,2025-03-08T13:21:36.759311-08:00,0.0,10.72673,10726.73 +12562,2025-03-08T13:21:47.498594-08:00,0.0,10.739283,10739.283 +12563,2025-03-08T13:21:58.236458-08:00,0.0,10.737864,10737.864 +12564,2025-03-08T13:22:08.965043-08:00,0.0,10.728585,10728.585 +12565,2025-03-08T13:22:19.706483-08:00,0.0,10.74144,10741.44 +12566,2025-03-08T13:22:30.441290-08:00,0.0,10.734807,10734.807 +12567,2025-03-08T13:22:41.175312-08:00,0.0,10.734022,10734.022 +12568,2025-03-08T13:22:51.913286-08:00,0.0,10.737974,10737.974 +12569,2025-03-08T13:23:02.645467-08:00,0.0,10.732181,10732.181 +12570,2025-03-08T13:23:13.382315-08:00,0.0,10.736848,10736.848 +12571,2025-03-08T13:23:24.117288-08:00,0.0,10.734973,10734.973 +12572,2025-03-08T13:23:34.853293-08:00,0.0,10.736005,10736.005 +12573,2025-03-08T13:23:45.587481-08:00,0.0,10.734188,10734.188 +12574,2025-03-08T13:23:56.329459-08:00,0.0,10.741978,10741.978 +12575,2025-03-08T13:24:07.065285-08:00,0.0,10.735826,10735.826 +12576,2025-03-08T13:24:17.801289-08:00,0.0,10.736004,10736.004 +12577,2025-03-08T13:24:28.531503-08:00,0.0,10.730214,10730.214 +12578,2025-03-08T13:24:39.270514-08:00,0.0,10.739011,10739.011 +12579,2025-03-08T13:24:50.010519-08:00,0.0,10.740005,10740.005 +12580,2025-03-08T13:25:00.745286-08:00,0.0,10.734767,10734.767 +12581,2025-03-08T13:25:11.470499-08:00,0.0,10.725213,10725.213 +12582,2025-03-08T13:25:22.214165-08:00,0.0,10.743666,10743.666 +12583,2025-03-08T13:25:32.950289-08:00,0.0,10.736124,10736.124 +12584,2025-03-08T13:25:43.683286-08:00,0.0,10.732997,10732.997 +12585,2025-03-08T13:25:54.419289-08:00,0.0,10.736003,10736.003 +12586,2025-03-08T13:26:05.149482-08:00,0.0,10.730193,10730.193 +12587,2025-03-08T13:26:15.887312-08:00,0.0,10.73783,10737.83 +12588,2025-03-08T13:26:26.627288-08:00,0.0,10.739976,10739.976 +12589,2025-03-08T13:26:37.361766-08:00,0.0,10.734478,10734.478 +12590,2025-03-08T13:26:48.095487-08:00,0.0,10.733721,10733.721 +12591,2025-03-08T13:26:58.833474-08:00,0.0,10.737987,10737.987 +12592,2025-03-08T13:27:09.567319-08:00,0.0,10.733845,10733.845 +12593,2025-03-08T13:27:20.310736-08:00,0.0,10.743417,10743.417 +12594,2025-03-08T13:27:31.045358-08:00,0.0,10.734622,10734.622 +12595,2025-03-08T13:27:41.775498-08:00,0.0,10.73014,10730.14 +12596,2025-03-08T13:27:52.510290-08:00,0.0,10.734792,10734.792 +12597,2025-03-08T13:28:03.247286-08:00,0.0,10.736996,10736.996 +12598,2025-03-08T13:28:13.977497-08:00,0.0,10.730211,10730.211 +12599,2025-03-08T13:28:24.720862-08:00,0.0,10.743365,10743.365 +12600,2025-03-08T13:28:35.452287-08:00,0.0,10.731425,10731.425 +12601,2025-03-08T13:28:46.183282-08:00,0.0,10.730995,10730.995 +12602,2025-03-08T13:28:56.919288-08:00,0.0,10.736006,10736.006 +12603,2025-03-08T13:29:07.654678-08:00,0.0,10.73539,10735.39 +12604,2025-03-08T13:29:18.386286-08:00,0.0,10.731608,10731.608 +12605,2025-03-08T13:29:29.120100-08:00,0.0,10.733814,10733.814 +12606,2025-03-08T13:29:39.860324-08:00,0.0,10.740224,10740.224 +12607,2025-03-08T13:29:50.594477-08:00,0.0,10.734153,10734.153 +12608,2025-03-08T13:30:01.327351-08:00,0.0,10.732874,10732.874 +12609,2025-03-08T13:30:12.057510-08:00,0.0,10.730159,10730.159 +12610,2025-03-08T13:30:22.792502-08:00,0.0,10.734992,10734.992 +12611,2025-03-08T13:30:33.525939-08:00,0.0,10.733437,10733.437 +12612,2025-03-08T13:30:44.264528-08:00,0.0,10.738589,10738.589 +12613,2025-03-08T13:30:54.993289-08:00,0.0,10.728761,10728.761 +12614,2025-03-08T13:31:05.734749-08:00,0.0,10.74146,10741.46 +12615,2025-03-08T13:31:16.460316-08:00,0.0,10.725567,10725.567 +12616,2025-03-08T13:31:27.199289-08:00,0.0,10.738973,10738.973 +12617,2025-03-08T13:31:37.929291-08:00,0.0,10.730002,10730.002 +12618,2025-03-08T13:31:48.661498-08:00,0.0,10.732207,10732.207 +12619,2025-03-08T13:31:59.404126-08:00,0.0,10.742628,10742.628 +12620,2025-03-08T13:32:10.140290-08:00,0.0,10.736164,10736.164 +12621,2025-03-08T13:32:20.867720-08:00,0.0,10.72743,10727.43 +12622,2025-03-08T13:32:31.596153-08:00,0.0,10.728433,10728.433 +12623,2025-03-08T13:32:42.335354-08:00,0.0,10.739201,10739.201 +12624,2025-03-08T13:32:53.067291-08:00,0.0,10.731937,10731.937 +12625,2025-03-08T13:33:03.799289-08:00,0.0,10.731998,10731.998 +12626,2025-03-08T13:33:14.525316-08:00,0.0,10.726027,10726.027 +12627,2025-03-08T13:33:25.263314-08:00,0.0,10.737998,10737.998 +12628,2025-03-08T13:33:35.998374-08:00,0.0,10.73506,10735.06 +12629,2025-03-08T13:33:46.728469-08:00,0.0,10.730095,10730.095 +12630,2025-03-08T13:33:57.462384-08:00,0.0,10.733915,10733.915 +12631,2025-03-08T13:34:08.188502-08:00,0.0,10.726118,10726.118 +12632,2025-03-08T13:34:18.925460-08:00,0.0,10.736958,10736.958 +12633,2025-03-08T13:34:29.657336-08:00,0.0,10.731876,10731.876 +12634,2025-03-08T13:34:40.389288-08:00,0.0,10.731952,10731.952 +12635,2025-03-08T13:34:51.120499-08:00,0.0,10.731211,10731.211 +12636,2025-03-08T13:35:01.849286-08:00,0.0,10.728787,10728.787 +12637,2025-03-08T13:35:12.576285-08:00,0.0,10.726999,10726.999 +12638,2025-03-08T13:35:23.307617-08:00,0.0,10.731332,10731.332 +12639,2025-03-08T13:35:34.039526-08:00,0.0,10.731909,10731.909 +12640,2025-03-08T13:35:44.776339-08:00,0.0,10.736813,10736.813 +12641,2025-03-08T13:35:55.503512-08:00,0.0,10.727173,10727.173 +12642,2025-03-08T13:36:06.241461-08:00,0.0,10.737949,10737.949 +12643,2025-03-08T13:36:16.976364-08:00,0.0,10.734903,10734.903 +12644,2025-03-08T13:36:27.706310-08:00,0.0,10.729946,10729.946 +12645,2025-03-08T13:36:38.440357-08:00,0.0,10.734047,10734.047 +12646,2025-03-08T13:36:49.177961-08:00,0.0,10.737604,10737.604 +12647,2025-03-08T13:36:59.919569-08:00,0.0,10.741608,10741.608 +12648,2025-03-08T13:37:10.654314-08:00,0.0,10.734745,10734.745 +12649,2025-03-08T13:37:21.381680-08:00,0.0,10.727366,10727.366 +12650,2025-03-08T13:37:32.118454-08:00,0.0,10.736774,10736.774 +12651,2025-03-08T13:37:42.860285-08:00,0.0,10.741831,10741.831 +12652,2025-03-08T13:37:53.590289-08:00,0.0,10.730004,10730.004 +12653,2025-03-08T13:38:04.337283-08:00,0.0,10.746994,10746.994 +12654,2025-03-08T13:38:15.073291-08:00,0.0,10.736008,10736.008 +12655,2025-03-08T13:38:25.809462-08:00,0.0,10.736171,10736.171 +12656,2025-03-08T13:38:36.541287-08:00,0.0,10.731825,10731.825 +12657,2025-03-08T13:38:47.275876-08:00,0.0,10.734589,10734.589 +12658,2025-03-08T13:38:58.010477-08:00,0.0,10.734601,10734.601 +12659,2025-03-08T13:39:08.745650-08:00,0.0,10.735173,10735.173 +12660,2025-03-08T13:39:19.483284-08:00,0.0,10.737634,10737.634 +12661,2025-03-08T13:39:30.224520-08:00,0.0,10.741236,10741.236 +12662,2025-03-08T13:39:40.953319-08:00,0.0,10.728799,10728.799 +12663,2025-03-08T13:39:51.692354-08:00,0.0,10.739035,10739.035 +12664,2025-03-08T13:40:02.430486-08:00,0.0,10.738132,10738.132 +12665,2025-03-08T13:40:13.158285-08:00,0.0,10.727799,10727.799 +12666,2025-03-08T13:40:23.901489-08:00,0.0,10.743204,10743.204 +12667,2025-03-08T13:40:34.635451-08:00,0.0,10.733962,10733.962 +12668,2025-03-08T13:40:45.373478-08:00,0.0,10.738027,10738.027 +12669,2025-03-08T13:40:56.107289-08:00,0.0,10.733811,10733.811 +12670,2025-03-08T13:41:06.838498-08:00,0.0,10.731209,10731.209 +12671,2025-03-08T13:41:17.577512-08:00,0.0,10.739014,10739.014 +12672,2025-03-08T13:41:28.311679-08:00,0.0,10.734167,10734.167 +12673,2025-03-08T13:41:39.054143-08:00,0.0,10.742464,10742.464 +12674,2025-03-08T13:41:49.789491-08:00,0.0,10.735348,10735.348 +12675,2025-03-08T13:42:00.531322-08:00,0.0,10.741831,10741.831 +12676,2025-03-08T13:42:11.269496-08:00,0.0,10.738174,10738.174 +12677,2025-03-08T13:42:21.998469-08:00,0.0,10.728973,10728.973 +12678,2025-03-08T13:42:32.744487-08:00,0.0,10.746018,10746.018 +12679,2025-03-08T13:42:43.475286-08:00,0.0,10.730799,10730.799 +12680,2025-03-08T13:42:54.219290-08:00,0.0,10.744004,10744.004 +12681,2025-03-08T13:43:04.951031-08:00,0.0,10.731741,10731.741 +12682,2025-03-08T13:43:15.684462-08:00,0.0,10.733431,10733.431 +12683,2025-03-08T13:43:26.416493-08:00,0.0,10.732031,10732.031 +12684,2025-03-08T13:43:37.150314-08:00,0.0,10.733821,10733.821 +12685,2025-03-08T13:43:47.889499-08:00,0.0,10.739185,10739.185 +12686,2025-03-08T13:43:58.627448-08:00,0.0,10.737949,10737.949 +12687,2025-03-08T13:44:09.361529-08:00,0.0,10.734081,10734.081 +12688,2025-03-08T13:44:20.096283-08:00,0.0,10.734754,10734.754 +12689,2025-03-08T13:44:30.841439-08:00,0.0,10.745156,10745.156 +12690,2025-03-08T13:44:41.566689-08:00,0.0,10.72525,10725.25 +12691,2025-03-08T13:44:52.301382-08:00,0.0,10.734693,10734.693 +12692,2025-03-08T13:44:59.182647-08:00,410.0,6.881265,6881.265 +12693,2025-03-08T13:45:03.047870-08:00,438.0,3.865223,3865.223 +12694,2025-03-08T13:45:13.774288-08:00,394.0,10.726418,10726.418 +12695,2025-03-08T13:45:24.517743-08:00,474.0,10.743455,10743.455 +12696,2025-03-08T13:45:35.245158-08:00,456.0,10.727415,10727.415 +12697,2025-03-08T13:45:45.978468-08:00,462.0,10.73331,10733.31 +12698,2025-03-08T13:45:56.718292-08:00,405.0,10.739824,10739.824 +12699,2025-03-08T13:46:07.454285-08:00,447.0,10.735993,10735.993 +12700,2025-03-08T13:46:18.183925-08:00,412.0,10.72964,10729.64 +12701,2025-03-08T13:46:28.924311-08:00,258.0,10.740386,10740.386 +12702,2025-03-08T13:46:39.663494-08:00,303.0,10.739183,10739.183 +12703,2025-03-08T13:46:50.391443-08:00,218.0,10.727949,10727.949 +12704,2025-03-08T13:47:01.126467-08:00,413.0,10.735024,10735.024 +12705,2025-03-08T13:47:11.861402-08:00,343.0,10.734935,10734.935 +12706,2025-03-08T13:47:22.603456-08:00,421.0,10.742054,10742.054 +12707,2025-03-08T13:47:33.337510-08:00,290.0,10.734054,10734.054 +12708,2025-03-08T13:47:44.068131-08:00,421.0,10.730621,10730.621 +12709,2025-03-08T13:47:54.804522-08:00,342.0,10.736391,10736.391 +12710,2025-03-08T13:48:05.535350-08:00,415.0,10.730828,10730.828 +12711,2025-03-08T13:48:16.268482-08:00,319.0,10.733132,10733.132 +12712,2025-03-08T13:48:27.003465-08:00,402.0,10.734983,10734.983 +12713,2025-03-08T13:48:37.742316-08:00,439.0,10.738851,10738.851 +12714,2025-03-08T13:48:48.475497-08:00,307.0,10.733181,10733.181 +12715,2025-03-08T13:48:59.211288-08:00,373.0,10.735791,10735.791 +12716,2025-03-08T13:49:09.940731-08:00,437.0,10.729443,10729.443 +12717,2025-03-08T13:49:20.680311-08:00,448.0,10.73958,10739.58 +12718,2025-03-08T13:49:31.404291-08:00,397.0,10.72398,10723.98 +12719,2025-03-08T13:49:42.142687-08:00,420.0,10.738396,10738.396 +12720,2025-03-08T13:49:52.880729-08:00,425.0,10.738042,10738.042 +12721,2025-03-08T13:50:03.613284-08:00,341.0,10.732555,10732.555 +12722,2025-03-08T13:50:14.339323-08:00,435.0,10.726039,10726.039 +12723,2025-03-08T13:50:25.071598-08:00,391.0,10.732275,10732.275 +12724,2025-03-08T13:50:35.811308-08:00,337.0,10.73971,10739.71 +12725,2025-03-08T13:50:46.543290-08:00,272.0,10.731982,10731.982 +12726,2025-03-08T13:50:57.282347-08:00,272.0,10.739057,10739.057 +12727,2025-03-08T13:51:08.013473-08:00,327.0,10.731126,10731.126 +12728,2025-03-08T13:51:18.749893-08:00,320.0,10.73642,10736.42 +12729,2025-03-08T13:51:29.481289-08:00,398.0,10.731396,10731.396 +12730,2025-03-08T13:51:40.223287-08:00,320.0,10.741998,10741.998 +12731,2025-03-08T13:51:50.953456-08:00,421.0,10.730169,10730.169 +12732,2025-03-08T13:52:01.696249-08:00,417.0,10.742793,10742.793 +12733,2025-03-08T13:52:12.423602-08:00,395.0,10.727353,10727.353 +12734,2025-03-08T13:52:23.270453-08:00,413.0,10.846851,10846.851 +12735,2025-03-08T13:52:34.004859-08:00,324.0,10.734406,10734.406 +12736,2025-03-08T13:52:44.731734-08:00,430.0,10.726875,10726.875 +12737,2025-03-08T13:52:55.472687-08:00,351.0,10.740953,10740.953 +12738,2025-03-08T13:53:06.203705-08:00,377.0,10.731018,10731.018 +12739,2025-03-08T13:53:16.936852-08:00,409.0,10.733147,10733.147 +12740,2025-03-08T13:53:27.674728-08:00,424.0,10.737876,10737.876 +12741,2025-03-08T13:53:38.410757-08:00,422.0,10.736029,10736.029 +12742,2025-03-08T13:53:49.137760-08:00,423.0,10.727003,10727.003 +12743,2025-03-08T13:53:59.872720-08:00,406.0,10.73496,10734.96 +12744,2025-03-08T13:54:10.612638-08:00,358.0,10.739918,10739.918 +12745,2025-03-08T13:54:21.337668-08:00,396.0,10.72503,10725.03 +12746,2025-03-08T13:54:32.075640-08:00,348.0,10.737972,10737.972 +12747,2025-03-08T13:54:42.806667-08:00,373.0,10.731027,10731.027 +12748,2025-03-08T13:54:53.535873-08:00,367.0,10.729206,10729.206 +12749,2025-03-08T13:55:04.270857-08:00,427.0,10.734984,10734.984 +12750,2025-03-08T13:55:15.001559-08:00,399.0,10.730702,10730.702 +12751,2025-03-08T13:55:25.733736-08:00,322.0,10.732177,10732.177 +12752,2025-03-08T13:55:36.458637-08:00,282.0,10.724901,10724.901 +12753,2025-03-08T13:55:47.191997-08:00,401.0,10.73336,10733.36 +12754,2025-03-08T13:55:57.929706-08:00,411.0,10.737709,10737.709 +12755,2025-03-08T13:56:08.652855-08:00,366.0,10.723149,10723.149 +12756,2025-03-08T13:56:19.394156-08:00,416.0,10.741301,10741.301 +12757,2025-03-08T13:56:30.115748-08:00,400.0,10.721592,10721.592 +12758,2025-03-08T13:56:40.853986-08:00,337.0,10.738238,10738.238 +12759,2025-03-08T13:56:51.584734-08:00,413.0,10.730748,10730.748 +12760,2025-03-08T13:57:02.316986-08:00,407.0,10.732252,10732.252 +12761,2025-03-08T13:57:13.054638-08:00,349.0,10.737652,10737.652 +12762,2025-03-08T13:57:23.789845-08:00,391.0,10.735207,10735.207 +12763,2025-03-08T13:57:34.528671-08:00,395.0,10.738826,10738.826 +12764,2025-03-08T13:57:45.258832-08:00,401.0,10.730161,10730.161 +12765,2025-03-08T13:57:55.996784-08:00,357.0,10.737952,10737.952 +12766,2025-03-08T13:58:06.725805-08:00,426.0,10.729021,10729.021 +12767,2025-03-08T13:58:17.465716-08:00,416.0,10.739911,10739.911 +12768,2025-03-08T13:58:28.197808-08:00,414.0,10.732092,10732.092 +12769,2025-03-08T13:58:38.938638-08:00,303.0,10.74083,10740.83 +12770,2025-03-08T13:58:49.664819-08:00,338.0,10.726181,10726.181 +12771,2025-03-08T13:59:00.398850-08:00,400.0,10.734031,10734.031 +12772,2025-03-08T13:59:11.141653-08:00,359.0,10.742803,10742.803 +12773,2025-03-08T13:59:21.873633-08:00,363.0,10.73198,10731.98 +12774,2025-03-08T13:59:32.609642-08:00,400.0,10.736009,10736.009 +12775,2025-03-08T13:59:43.348778-08:00,405.0,10.739136,10739.136 +12776,2025-03-08T13:59:54.085819-08:00,318.0,10.737041,10737.041 +12777,2025-03-08T14:00:04.814638-08:00,431.0,10.728819,10728.819 +12778,2025-03-08T14:00:15.547018-08:00,410.0,10.73238,10732.38 +12779,2025-03-08T14:00:26.286819-08:00,422.0,10.739801,10739.801 +12780,2025-03-08T14:00:37.022843-08:00,431.0,10.736024,10736.024 +12781,2025-03-08T14:00:47.759635-08:00,375.0,10.736792,10736.792 +12782,2025-03-08T14:00:58.498639-08:00,464.0,10.739004,10739.004 +12783,2025-03-08T14:01:09.230671-08:00,426.0,10.732032,10732.032 +12784,2025-03-08T14:01:19.964807-08:00,464.0,10.734136,10734.136 +12785,2025-03-08T14:01:23.889014-08:00,0.0,3.924207,3924.207 +12786,2025-03-08T14:01:30.699999-08:00,0.0,6.810985,6810.985 +12787,2025-03-08T14:01:41.425666-08:00,0.0,10.725667,10725.667 +12788,2025-03-08T14:01:52.162131-08:00,0.0,10.736465,10736.465 +12789,2025-03-08T14:02:02.901823-08:00,0.0,10.739692,10739.692 +12790,2025-03-08T14:02:13.627750-08:00,0.0,10.725927,10725.927 +12791,2025-03-08T14:02:24.361633-08:00,0.0,10.733883,10733.883 +12792,2025-03-08T14:02:35.095884-08:00,0.0,10.734251,10734.251 +12793,2025-03-08T14:02:45.838814-08:00,0.0,10.74293,10742.93 +12794,2025-03-08T14:02:56.564640-08:00,0.0,10.725826,10725.826 +12795,2025-03-08T14:03:07.299132-08:00,0.0,10.734492,10734.492 +12796,2025-03-08T14:03:18.033740-08:00,0.0,10.734608,10734.608 +12797,2025-03-08T14:03:28.776433-08:00,0.0,10.742693,10742.693 +12798,2025-03-08T14:03:39.502776-08:00,0.0,10.726343,10726.343 +12799,2025-03-08T14:03:50.240851-08:00,0.0,10.738075,10738.075 +12800,2025-03-08T14:04:00.974807-08:00,0.0,10.733956,10733.956 +12801,2025-03-08T14:04:11.704644-08:00,0.0,10.729837,10729.837 +12802,2025-03-08T14:04:22.450640-08:00,0.0,10.745996,10745.996 +12803,2025-03-08T14:04:33.179638-08:00,0.0,10.728998,10728.998 +12804,2025-03-08T14:04:43.916900-08:00,0.0,10.737262,10737.262 +12805,2025-03-08T14:04:54.645669-08:00,0.0,10.728769,10728.769 +12806,2025-03-08T14:05:05.379638-08:00,0.0,10.733969,10733.969 +12807,2025-03-08T14:05:16.112648-08:00,0.0,10.73301,10733.01 +12808,2025-03-08T14:05:26.852814-08:00,0.0,10.740166,10740.166 +12809,2025-03-08T14:05:37.583033-08:00,0.0,10.730219,10730.219 +12810,2025-03-08T14:05:48.325639-08:00,0.0,10.742606,10742.606 +12811,2025-03-08T14:05:59.057797-08:00,0.0,10.732158,10732.158 +12812,2025-03-08T14:06:09.795068-08:00,0.0,10.737271,10737.271 +12813,2025-03-08T14:06:20.529761-08:00,0.0,10.734693,10734.693 +12814,2025-03-08T14:06:31.263299-08:00,0.0,10.733538,10733.538 +12815,2025-03-08T14:06:41.999633-08:00,0.0,10.736334,10736.334 +12816,2025-03-08T14:06:52.738854-08:00,0.0,10.739221,10739.221 +12817,2025-03-08T14:07:03.472852-08:00,0.0,10.733998,10733.998 +12818,2025-03-08T14:07:14.210677-08:00,0.0,10.737825,10737.825 +12819,2025-03-08T14:07:24.940641-08:00,0.0,10.729964,10729.964 +12820,2025-03-08T14:07:35.673116-08:00,0.0,10.732475,10732.475 +12821,2025-03-08T14:07:46.410036-08:00,0.0,10.73692,10736.92 +12822,2025-03-08T14:07:57.144675-08:00,0.0,10.734639,10734.639 +12823,2025-03-08T14:08:07.879636-08:00,0.0,10.734961,10734.961 +12824,2025-03-08T14:08:18.615664-08:00,0.0,10.736028,10736.028 +12825,2025-03-08T14:08:29.346985-08:00,0.0,10.731321,10731.321 +12826,2025-03-08T14:08:40.076643-08:00,0.0,10.729658,10729.658 +12827,2025-03-08T14:08:50.809846-08:00,0.0,10.733203,10733.203 +12828,2025-03-08T14:09:01.548679-08:00,0.0,10.738833,10738.833 +12829,2025-03-08T14:09:12.292052-08:00,0.0,10.743373,10743.373 +12830,2025-03-08T14:09:23.020637-08:00,0.0,10.728585,10728.585 +12831,2025-03-08T14:09:33.759840-08:00,0.0,10.739203,10739.203 +12832,2025-03-08T14:09:44.498640-08:00,0.0,10.7388,10738.8 +12833,2025-03-08T14:09:55.226355-08:00,0.0,10.727715,10727.715 +12834,2025-03-08T14:10:05.961706-08:00,0.0,10.735351,10735.351 +12835,2025-03-08T14:10:16.696635-08:00,0.0,10.734929,10734.929 +12836,2025-03-08T14:10:27.428859-08:00,0.0,10.732224,10732.224 +12837,2025-03-08T14:10:38.161633-08:00,0.0,10.732774,10732.774 +12838,2025-03-08T14:10:48.889577-08:00,0.0,10.727944,10727.944 +12839,2025-03-08T14:10:59.622339-08:00,0.0,10.732762,10732.762 +12840,2025-03-08T14:11:10.351927-08:00,0.0,10.729588,10729.588 +12841,2025-03-08T14:11:21.086639-08:00,0.0,10.734712,10734.712 +12842,2025-03-08T14:11:31.826933-08:00,0.0,10.740294,10740.294 +12843,2025-03-08T14:11:42.555817-08:00,0.0,10.728884,10728.884 +12844,2025-03-08T14:11:53.295160-08:00,0.0,10.739343,10739.343 +12845,2025-03-08T14:12:04.025713-08:00,0.0,10.730553,10730.553 +12846,2025-03-08T14:12:14.755644-08:00,0.0,10.729931,10729.931 +12847,2025-03-08T14:12:25.492802-08:00,0.0,10.737158,10737.158 +12848,2025-03-08T14:12:36.227661-08:00,0.0,10.734859,10734.859 +12849,2025-03-08T14:12:46.953851-08:00,0.0,10.72619,10726.19 +12850,2025-03-08T14:12:57.689838-08:00,0.0,10.735987,10735.987 +12851,2025-03-08T14:13:08.436494-08:00,0.0,10.746656,10746.656 +12852,2025-03-08T14:13:19.165833-08:00,0.0,10.729339,10729.339 +12853,2025-03-08T14:13:29.897055-08:00,0.0,10.731222,10731.222 +12854,2025-03-08T14:13:40.635667-08:00,0.0,10.738612,10738.612 +12855,2025-03-08T14:13:51.370028-08:00,0.0,10.734361,10734.361 +12856,2025-03-08T14:14:02.106679-08:00,0.0,10.736651,10736.651 +12857,2025-03-08T14:14:12.844850-08:00,0.0,10.738171,10738.171 +12858,2025-03-08T14:14:23.578641-08:00,0.0,10.733791,10733.791 +12859,2025-03-08T14:14:34.321042-08:00,0.0,10.742401,10742.401 +12860,2025-03-08T14:14:45.052976-08:00,0.0,10.731934,10731.934 +12861,2025-03-08T14:14:55.794980-08:00,0.0,10.742004,10742.004 +12862,2025-03-08T14:15:06.530638-08:00,0.0,10.735658,10735.658 +12863,2025-03-08T14:15:17.262098-08:00,0.0,10.73146,10731.46 +12864,2025-03-08T14:15:28.001756-08:00,0.0,10.739658,10739.658 +12865,2025-03-08T14:15:38.732269-08:00,0.0,10.730513,10730.513 +12866,2025-03-08T14:15:49.470870-08:00,0.0,10.738601,10738.601 +12867,2025-03-08T14:16:00.213715-08:00,0.0,10.742845,10742.845 +12868,2025-03-08T14:16:10.939695-08:00,0.0,10.72598,10725.98 +12869,2025-03-08T14:16:21.675428-08:00,0.0,10.735733,10735.733 +12870,2025-03-08T14:16:32.409648-08:00,0.0,10.73422,10734.22 +12871,2025-03-08T14:16:43.153890-08:00,0.0,10.744242,10744.242 +12872,2025-03-08T14:16:53.892772-08:00,0.0,10.738882,10738.882 +12873,2025-03-08T14:17:04.619037-08:00,0.0,10.726265,10726.265 +12874,2025-03-08T14:17:15.358667-08:00,0.0,10.73963,10739.63 +12875,2025-03-08T14:17:26.097878-08:00,0.0,10.739211,10739.211 +12876,2025-03-08T14:17:36.830708-08:00,0.0,10.73283,10732.83 +12877,2025-03-08T14:17:47.566131-08:00,0.0,10.735423,10735.423 +12878,2025-03-08T14:17:58.306825-08:00,0.0,10.740694,10740.694 +12879,2025-03-08T14:18:09.046210-08:00,0.0,10.739385,10739.385 +12880,2025-03-08T14:18:19.791640-08:00,0.0,10.74543,10745.43 +12881,2025-03-08T14:18:30.530635-08:00,0.0,10.738995,10738.995 +12882,2025-03-08T14:18:41.269641-08:00,0.0,10.739006,10739.006 +12883,2025-03-08T14:18:52.008638-08:00,0.0,10.738997,10738.997 +12884,2025-03-08T14:19:02.742820-08:00,0.0,10.734182,10734.182 +12885,2025-03-08T14:19:13.488831-08:00,0.0,10.746011,10746.011 +12886,2025-03-08T14:19:24.218640-08:00,0.0,10.729809,10729.809 +12887,2025-03-08T14:19:34.954658-08:00,0.0,10.736018,10736.018 +12888,2025-03-08T14:19:45.698839-08:00,0.0,10.744181,10744.181 +12889,2025-03-08T14:19:56.429820-08:00,0.0,10.730981,10730.981 +12890,2025-03-08T14:20:07.168658-08:00,0.0,10.738838,10738.838 +12891,2025-03-08T14:20:17.902229-08:00,0.0,10.733571,10733.571 +12892,2025-03-08T14:20:28.639641-08:00,0.0,10.737412,10737.412 +12893,2025-03-08T14:20:39.370751-08:00,0.0,10.73111,10731.11 +12894,2025-03-08T14:20:50.100669-08:00,0.0,10.729918,10729.918 +12895,2025-03-08T14:21:00.838635-08:00,0.0,10.737966,10737.966 +12896,2025-03-08T14:21:11.570860-08:00,0.0,10.732225,10732.225 +12897,2025-03-08T14:21:22.312847-08:00,0.0,10.741987,10741.987 +12898,2025-03-08T14:21:33.050514-08:00,0.0,10.737667,10737.667 +12899,2025-03-08T14:21:43.785640-08:00,0.0,10.735126,10735.126 +12900,2025-03-08T14:21:54.526641-08:00,0.0,10.741001,10741.001 +12901,2025-03-08T14:22:05.255852-08:00,0.0,10.729211,10729.211 +12902,2025-03-08T14:22:15.992855-08:00,0.0,10.737003,10737.003 +12903,2025-03-08T14:22:26.727640-08:00,0.0,10.734785,10734.785 +12904,2025-03-08T14:22:37.464634-08:00,0.0,10.736994,10736.994 +12905,2025-03-08T14:22:48.194877-08:00,0.0,10.730243,10730.243 +12906,2025-03-08T14:22:58.927822-08:00,0.0,10.732945,10732.945 +12907,2025-03-08T14:23:09.667640-08:00,0.0,10.739818,10739.818 +12908,2025-03-08T14:23:20.408682-08:00,0.0,10.741042,10741.042 +12909,2025-03-08T14:23:31.136641-08:00,0.0,10.727959,10727.959 +12910,2025-03-08T14:23:41.886753-08:00,0.0,10.750112,10750.112 +12911,2025-03-08T14:23:52.629645-08:00,0.0,10.742892,10742.892 +12912,2025-03-08T14:24:03.362238-08:00,0.0,10.732593,10732.593 +12913,2025-03-08T14:24:14.105813-08:00,0.0,10.743575,10743.575 +12914,2025-03-08T14:24:24.854750-08:00,0.0,10.748937,10748.937 +12915,2025-03-08T14:24:35.599880-08:00,0.0,10.74513,10745.13 +12916,2025-03-08T14:24:46.339644-08:00,0.0,10.739764,10739.764 +12917,2025-03-08T14:24:57.085671-08:00,0.0,10.746027,10746.027 +12918,2025-03-08T14:25:07.823669-08:00,0.0,10.737998,10737.998 +12919,2025-03-08T14:25:18.576643-08:00,0.0,10.752974,10752.974 +12920,2025-03-08T14:25:29.317639-08:00,0.0,10.740996,10740.996 +12921,2025-03-08T14:25:40.061877-08:00,0.0,10.744238,10744.238 +12922,2025-03-08T14:25:50.812855-08:00,0.0,10.750978,10750.978 +12923,2025-03-08T14:26:01.563641-08:00,0.0,10.750786,10750.786 +12924,2025-03-08T14:26:12.305690-08:00,0.0,10.742049,10742.049 +12925,2025-03-08T14:26:23.051847-08:00,0.0,10.746157,10746.157 +12926,2025-03-08T14:26:33.799691-08:00,0.0,10.747844,10747.844 +12927,2025-03-08T14:26:44.548182-08:00,0.0,10.748491,10748.491 +12928,2025-03-08T14:26:55.287845-08:00,0.0,10.739663,10739.663 +12929,2025-03-08T14:27:06.032823-08:00,0.0,10.744978,10744.978 +12930,2025-03-08T14:27:16.773038-08:00,0.0,10.740215,10740.215 +12931,2025-03-08T14:27:27.516909-08:00,0.0,10.743871,10743.871 +12932,2025-03-08T14:27:38.263452-08:00,0.0,10.746543,10746.543 +12933,2025-03-08T14:27:49.007756-08:00,0.0,10.744304,10744.304 +12934,2025-03-08T14:27:59.757377-08:00,0.0,10.749621,10749.621 +12935,2025-03-08T14:28:10.502635-08:00,0.0,10.745258,10745.258 +12936,2025-03-08T14:28:21.249713-08:00,0.0,10.747078,10747.078 +12937,2025-03-08T14:28:31.992639-08:00,0.0,10.742926,10742.926 +12938,2025-03-08T14:28:42.733640-08:00,0.0,10.741001,10741.001 +12939,2025-03-08T14:28:53.482666-08:00,0.0,10.749026,10749.026 +12940,2025-03-08T14:29:04.232638-08:00,0.0,10.749972,10749.972 +12941,2025-03-08T14:29:14.975646-08:00,0.0,10.743008,10743.008 +12942,2025-03-08T14:29:25.712703-08:00,0.0,10.737057,10737.057 +12943,2025-03-08T14:29:36.465852-08:00,0.0,10.753149,10753.149 +12944,2025-03-08T14:29:47.207640-08:00,0.0,10.741788,10741.788 +12945,2025-03-08T14:29:57.957638-08:00,0.0,10.749998,10749.998 +12946,2025-03-08T14:30:08.700640-08:00,0.0,10.743002,10743.002 +12947,2025-03-08T14:30:19.441641-08:00,0.0,10.741001,10741.001 +12948,2025-03-08T14:30:30.180066-08:00,0.0,10.738425,10738.425 +12949,2025-03-08T14:30:40.927813-08:00,0.0,10.747747,10747.747 +12950,2025-03-08T14:30:51.663039-08:00,0.0,10.735226,10735.226 +12951,2025-03-08T14:31:02.404641-08:00,0.0,10.741602,10741.602 +12952,2025-03-08T14:31:13.145824-08:00,0.0,10.741183,10741.183 +12953,2025-03-08T14:31:23.894640-08:00,0.0,10.748816,10748.816 +12954,2025-03-08T14:31:34.631837-08:00,0.0,10.737197,10737.197 +12955,2025-03-08T14:31:45.374903-08:00,0.0,10.743066,10743.066 +12956,2025-03-08T14:31:54.858387-08:00,399.0,9.483484,9483.484 +12957,2025-03-08T14:31:56.115856-08:00,399.0,1.257469,1257.469 +12958,2025-03-08T14:32:06.852840-08:00,390.0,10.736984,10736.984 +12959,2025-03-08T14:32:17.597421-08:00,265.0,10.744581,10744.581 +12960,2025-03-08T14:32:28.332842-08:00,383.0,10.735421,10735.421 +12961,2025-03-08T14:32:39.075666-08:00,383.0,10.742824,10742.824 +12962,2025-03-08T14:32:49.817638-08:00,288.0,10.741972,10741.972 +12963,2025-03-08T14:33:00.560710-08:00,305.0,10.743072,10743.072 +12964,2025-03-08T14:33:11.307638-08:00,0.0,10.746928,10746.928 +12965,2025-03-08T14:33:22.038837-08:00,0.0,10.731199,10731.199 +12966,2025-03-08T14:33:32.789522-08:00,0.0,10.750685,10750.685 +12967,2025-03-08T14:33:43.527755-08:00,0.0,10.738233,10738.233 +12968,2025-03-08T14:33:54.263638-08:00,0.0,10.735883,10735.883 +12969,2025-03-08T14:34:05.007645-08:00,0.0,10.744007,10744.007 +12970,2025-03-08T14:34:15.749642-08:00,0.0,10.741997,10741.997 +12971,2025-03-08T14:34:26.498639-08:00,0.0,10.748997,10748.997 +12972,2025-03-08T14:34:37.246702-08:00,0.0,10.748063,10748.063 +12973,2025-03-08T14:34:47.987644-08:00,0.0,10.740942,10740.942 +12974,2025-03-08T14:34:58.730818-08:00,0.0,10.743174,10743.174 +12975,2025-03-08T14:35:09.470874-08:00,0.0,10.740056,10740.056 +12976,2025-03-08T14:35:20.220674-08:00,0.0,10.7498,10749.8 +12977,2025-03-08T14:35:30.955232-08:00,0.0,10.734558,10734.558 +12978,2025-03-08T14:35:41.705833-08:00,0.0,10.750601,10750.601 +12979,2025-03-08T14:35:52.440638-08:00,0.0,10.734805,10734.805 +12980,2025-03-08T14:36:03.189384-08:00,0.0,10.748746,10748.746 +12981,2025-03-08T14:36:13.924640-08:00,0.0,10.735256,10735.256 +12982,2025-03-08T14:36:24.672756-08:00,0.0,10.748116,10748.116 +12983,2025-03-08T14:36:35.409031-08:00,0.0,10.736275,10736.275 +12984,2025-03-08T14:36:46.147641-08:00,0.0,10.73861,10738.61 +12985,2025-03-08T14:36:56.897638-08:00,0.0,10.749997,10749.997 +12986,2025-03-08T14:37:07.630754-08:00,0.0,10.733116,10733.116 +12987,2025-03-08T14:37:18.374695-08:00,0.0,10.743941,10743.941 +12988,2025-03-08T14:37:29.126528-08:00,0.0,10.751833,10751.833 +12989,2025-03-08T14:37:39.860693-08:00,0.0,10.734165,10734.165 +12990,2025-03-08T14:37:50.605643-08:00,0.0,10.74495,10744.95 +12991,2025-03-08T14:38:01.343641-08:00,0.0,10.737998,10737.998 +12992,2025-03-08T14:38:12.092633-08:00,0.0,10.748992,10748.992 +12993,2025-03-08T14:38:22.834642-08:00,0.0,10.742009,10742.009 +12994,2025-03-08T14:38:33.573097-08:00,0.0,10.738455,10738.455 +12995,2025-03-08T14:38:44.319852-08:00,0.0,10.746755,10746.755 +12996,2025-03-08T14:38:55.051633-08:00,0.0,10.731781,10731.781 +12997,2025-03-08T14:39:05.789641-08:00,0.0,10.738008,10738.008 +12998,2025-03-08T14:39:16.536640-08:00,0.0,10.746999,10746.999 +12999,2025-03-08T14:39:27.273641-08:00,0.0,10.737001,10737.001 +13000,2025-03-08T14:39:38.009637-08:00,0.0,10.735996,10735.996 +13001,2025-03-08T14:39:48.748028-08:00,0.0,10.738391,10738.391 +13002,2025-03-08T14:39:59.477682-08:00,0.0,10.729654,10729.654 +13003,2025-03-08T14:40:10.220056-08:00,0.0,10.742374,10742.374 +13004,2025-03-08T14:40:20.956733-08:00,0.0,10.736677,10736.677 +13005,2025-03-08T14:40:31.694059-08:00,0.0,10.737326,10737.326 +13006,2025-03-08T14:40:42.432836-08:00,0.0,10.738777,10738.777 +13007,2025-03-08T14:40:53.163694-08:00,0.0,10.730858,10730.858 +13008,2025-03-08T14:41:03.904640-08:00,0.0,10.740946,10740.946 +13009,2025-03-08T14:41:14.637640-08:00,0.0,10.733,10733.0 +13010,2025-03-08T14:41:25.368135-08:00,0.0,10.730495,10730.495 +13011,2025-03-08T14:41:36.107641-08:00,0.0,10.739506,10739.506 +13012,2025-03-08T14:41:46.837372-08:00,0.0,10.729731,10729.731 +13013,2025-03-08T14:41:57.574897-08:00,0.0,10.737525,10737.525 +13014,2025-03-08T14:42:08.311740-08:00,0.0,10.736843,10736.843 +13015,2025-03-08T14:42:19.056169-08:00,0.0,10.744429,10744.429 +13016,2025-03-08T14:42:29.793303-08:00,0.0,10.737134,10737.134 +13017,2025-03-08T14:42:40.531641-08:00,0.0,10.738338,10738.338 +13018,2025-03-08T14:42:51.264662-08:00,0.0,10.733021,10733.021 +13019,2025-03-08T14:43:02.003790-08:00,0.0,10.739128,10739.128 +13020,2025-03-08T14:43:12.738666-08:00,0.0,10.734876,10734.876 +13021,2025-03-08T14:43:23.480637-08:00,0.0,10.741971,10741.971 +13022,2025-03-08T14:43:34.221635-08:00,0.0,10.740998,10740.998 +13023,2025-03-08T14:43:44.960670-08:00,0.0,10.739035,10739.035 +13024,2025-03-08T14:43:55.691854-08:00,0.0,10.731184,10731.184 +13025,2025-03-08T14:44:06.426304-08:00,0.0,10.73445,10734.45 +13026,2025-03-08T14:44:17.162843-08:00,0.0,10.736539,10736.539 +13027,2025-03-08T14:44:27.902644-08:00,0.0,10.739801,10739.801 +13028,2025-03-08T14:44:38.642709-08:00,0.0,10.740065,10740.065 +13029,2025-03-08T14:44:49.391951-08:00,0.0,10.749242,10749.242 +13030,2025-03-08T14:45:00.123820-08:00,0.0,10.731869,10731.869 +13031,2025-03-08T14:45:10.868037-08:00,0.0,10.744217,10744.217 +13032,2025-03-08T14:45:21.611171-08:00,0.0,10.743134,10743.134 +13033,2025-03-08T14:45:32.343859-08:00,0.0,10.732688,10732.688 +13034,2025-03-08T14:45:43.085642-08:00,0.0,10.741783,10741.783 +13035,2025-03-08T14:45:53.837636-08:00,0.0,10.751994,10751.994 +13036,2025-03-08T14:46:04.570715-08:00,0.0,10.733079,10733.079 +13037,2025-03-08T14:46:15.319794-08:00,0.0,10.749079,10749.079 +13038,2025-03-08T14:46:26.050869-08:00,0.0,10.731075,10731.075 +13039,2025-03-08T14:46:36.785637-08:00,0.0,10.734768,10734.768 +13040,2025-03-08T14:46:47.528644-08:00,0.0,10.743007,10743.007 +13041,2025-03-08T14:46:58.263637-08:00,0.0,10.734993,10734.993 +13042,2025-03-08T14:47:09.006641-08:00,0.0,10.743004,10743.004 +13043,2025-03-08T14:47:19.747638-08:00,0.0,10.740997,10740.997 +13044,2025-03-08T14:47:30.491644-08:00,0.0,10.744006,10744.006 +13045,2025-03-08T14:47:41.229812-08:00,0.0,10.738168,10738.168 +13046,2025-03-08T14:47:51.964845-08:00,0.0,10.735033,10735.033 +13047,2025-03-08T14:48:02.705637-08:00,0.0,10.740792,10740.792 +13048,2025-03-08T14:48:13.446424-08:00,0.0,10.740787,10740.787 +13049,2025-03-08T14:48:24.186670-08:00,0.0,10.740246,10740.246 +13050,2025-03-08T14:48:34.936684-08:00,0.0,10.750014,10750.014 +13051,2025-03-08T14:48:45.674840-08:00,0.0,10.738156,10738.156 +13052,2025-03-08T14:48:56.418736-08:00,0.0,10.743896,10743.896 +13053,2025-03-08T14:49:07.154176-08:00,0.0,10.73544,10735.44 +13054,2025-03-08T14:49:17.898640-08:00,0.0,10.744464,10744.464 +13055,2025-03-08T14:49:28.642642-08:00,0.0,10.744002,10744.002 +13056,2025-03-08T14:49:39.386853-08:00,0.0,10.744211,10744.211 +13057,2025-03-08T14:49:50.118709-08:00,0.0,10.731856,10731.856 +13058,2025-03-08T14:50:00.862853-08:00,0.0,10.744144,10744.144 +13059,2025-03-08T14:50:11.612642-08:00,0.0,10.749789,10749.789 +13060,2025-03-08T14:50:22.352773-08:00,0.0,10.740131,10740.131 +13061,2025-03-08T14:50:33.091733-08:00,0.0,10.73896,10738.96 +13062,2025-03-08T14:50:43.836812-08:00,0.0,10.745079,10745.079 +13063,2025-03-08T14:50:54.575966-08:00,0.0,10.739154,10739.154 +13064,2025-03-08T14:51:05.315764-08:00,0.0,10.739798,10739.798 +13065,2025-03-08T14:51:16.059815-08:00,0.0,10.744051,10744.051 +13066,2025-03-08T14:51:26.800705-08:00,0.0,10.74089,10740.89 +13067,2025-03-08T14:51:37.534642-08:00,0.0,10.733937,10733.937 +13068,2025-03-08T14:51:48.282041-08:00,0.0,10.747399,10747.399 +13069,2025-03-08T14:51:59.014290-08:00,0.0,10.732249,10732.249 +13070,2025-03-08T14:52:09.756839-08:00,0.0,10.742549,10742.549 +13071,2025-03-08T14:52:20.502713-08:00,0.0,10.745874,10745.874 +13072,2025-03-08T14:52:31.216340-08:00,0.0,10.713627,10713.627 +13073,2025-03-08T14:52:41.955496-08:00,0.0,10.739156,10739.156 +13074,2025-03-08T14:52:52.704667-08:00,0.0,10.749171,10749.171 +13075,2025-03-08T14:53:03.449648-08:00,0.0,10.744981,10744.981 +13076,2025-03-08T14:53:14.197495-08:00,0.0,10.747847,10747.847 +13077,2025-03-08T14:53:24.934603-08:00,0.0,10.737108,10737.108 +13078,2025-03-08T14:53:35.670670-08:00,0.0,10.736067,10736.067 +13079,2025-03-08T14:53:46.416707-08:00,0.0,10.746037,10746.037 +13080,2025-03-08T14:53:57.162329-08:00,0.0,10.745622,10745.622 +13081,2025-03-08T14:54:07.901046-08:00,0.0,10.738717,10738.717 +13082,2025-03-08T14:54:18.640632-08:00,0.0,10.739586,10739.586 +13083,2025-03-08T14:54:29.377495-08:00,0.0,10.736863,10736.863 +13084,2025-03-08T14:54:40.128312-08:00,0.0,10.750817,10750.817 +13085,2025-03-08T14:54:50.864428-08:00,0.0,10.736116,10736.116 +13086,2025-03-08T14:55:01.606623-08:00,0.0,10.742195,10742.195 +13087,2025-03-08T14:55:12.345820-08:00,0.0,10.739197,10739.197 +13088,2025-03-08T14:55:23.087525-08:00,0.0,10.741705,10741.705 +13089,2025-03-08T14:55:33.836648-08:00,0.0,10.749123,10749.123 +13090,2025-03-08T14:55:44.583492-08:00,0.0,10.746844,10746.844 +13091,2025-03-08T14:55:55.319581-08:00,0.0,10.736089,10736.089 +13092,2025-03-08T14:56:06.069493-08:00,0.0,10.749912,10749.912 +13093,2025-03-08T14:56:16.801685-08:00,0.0,10.732192,10732.192 +13094,2025-03-08T14:56:27.550250-08:00,0.0,10.748565,10748.565 +13095,2025-03-08T14:56:38.292490-08:00,0.0,10.74224,10742.24 +13096,2025-03-08T14:56:49.037494-08:00,0.0,10.745004,10745.004 +13097,2025-03-08T14:56:59.769369-08:00,0.0,10.731875,10731.875 +13098,2025-03-08T14:57:10.506494-08:00,0.0,10.737125,10737.125 +13099,2025-03-08T14:57:21.244871-08:00,0.0,10.738377,10738.377 +13100,2025-03-08T14:57:31.986738-08:00,0.0,10.741867,10741.867 +13101,2025-03-08T14:57:42.725671-08:00,0.0,10.738933,10738.933 +13102,2025-03-08T14:57:53.459684-08:00,0.0,10.734013,10734.013 +13103,2025-03-08T14:58:04.206670-08:00,0.0,10.746986,10746.986 +13104,2025-03-08T14:58:14.951551-08:00,0.0,10.744881,10744.881 +13105,2025-03-08T14:58:25.694785-08:00,0.0,10.743234,10743.234 +13106,2025-03-08T14:58:36.433494-08:00,0.0,10.738709,10738.709 +13107,2025-03-08T14:58:47.176492-08:00,0.0,10.742998,10742.998 +13108,2025-03-08T14:58:57.924699-08:00,0.0,10.748207,10748.207 +13109,2025-03-08T14:59:19.416523-08:00,0.0,21.491824,21491.824 +13110,2025-03-08T14:59:30.152496-08:00,0.0,10.735973,10735.973 +13111,2025-03-08T14:59:40.896536-08:00,0.0,10.74404,10744.04 +13112,2025-03-08T14:59:51.640516-08:00,0.0,10.74398,10743.98 +13113,2025-03-08T15:00:02.383683-08:00,0.0,10.743167,10743.167 +13114,2025-03-08T15:00:13.121517-08:00,0.0,10.737834,10737.834 +13115,2025-03-08T15:00:23.867734-08:00,0.0,10.746217,10746.217 +13116,2025-03-08T15:00:34.611822-08:00,0.0,10.744088,10744.088 +13117,2025-03-08T15:00:45.356491-08:00,0.0,10.744669,10744.669 +13118,2025-03-08T15:00:56.095496-08:00,0.0,10.739005,10739.005 +13119,2025-03-08T15:01:06.839492-08:00,0.0,10.743996,10743.996 +13120,2025-03-08T15:01:17.581783-08:00,0.0,10.742291,10742.291 +13121,2025-03-08T15:01:28.330009-08:00,0.0,10.748226,10748.226 +13122,2025-03-08T15:01:39.072839-08:00,0.0,10.74283,10742.83 +13123,2025-03-08T15:01:49.814672-08:00,0.0,10.741833,10741.833 +13124,2025-03-08T15:02:00.554663-08:00,0.0,10.739991,10739.991 +13125,2025-03-08T15:02:11.304690-08:00,0.0,10.750027,10750.027 +13126,2025-03-08T15:02:22.043088-08:00,0.0,10.738398,10738.398 +13127,2025-03-08T15:02:32.777495-08:00,0.0,10.734407,10734.407 +13128,2025-03-08T15:02:43.519494-08:00,0.0,10.741999,10741.999 +13129,2025-03-08T15:02:54.270634-08:00,0.0,10.75114,10751.14 +13130,2025-03-08T15:03:05.010528-08:00,0.0,10.739894,10739.894 +13131,2025-03-08T15:03:15.750495-08:00,0.0,10.739967,10739.967 +13132,2025-03-08T15:03:26.485694-08:00,0.0,10.735199,10735.199 +13133,2025-03-08T15:03:37.232684-08:00,0.0,10.74699,10746.99 +13134,2025-03-08T15:03:47.978663-08:00,0.0,10.745979,10745.979 +13135,2025-03-08T15:03:58.712704-08:00,0.0,10.734041,10734.041 +13136,2025-03-08T15:04:09.451539-08:00,0.0,10.738835,10738.835 +13137,2025-03-08T15:04:20.199511-08:00,0.0,10.747972,10747.972 +13138,2025-03-08T15:04:30.934712-08:00,0.0,10.735201,10735.201 +13139,2025-03-08T15:04:41.677685-08:00,0.0,10.742973,10742.973 +13140,2025-03-08T15:04:52.420703-08:00,0.0,10.743018,10743.018 +13141,2025-03-08T15:05:03.160684-08:00,0.0,10.739981,10739.981 +13142,2025-03-08T15:05:13.903419-08:00,0.0,10.742735,10742.735 +13143,2025-03-08T15:05:24.637493-08:00,0.0,10.734074,10734.074 +13144,2025-03-08T15:05:35.384494-08:00,0.0,10.747001,10747.001 +13145,2025-03-08T15:05:46.126697-08:00,0.0,10.742203,10742.203 +13146,2025-03-08T15:05:56.861496-08:00,0.0,10.734799,10734.799 +13147,2025-03-08T15:06:07.613486-08:00,0.0,10.75199,10751.99 +13148,2025-03-08T15:06:18.352492-08:00,0.0,10.739006,10739.006 +13149,2025-03-08T15:06:29.090684-08:00,0.0,10.738192,10738.192 +13150,2025-03-08T15:06:39.844508-08:00,0.0,10.753824,10753.824 +13151,2025-03-08T15:06:50.586642-08:00,0.0,10.742134,10742.134 +13152,2025-03-08T15:07:01.331692-08:00,0.0,10.74505,10745.05 +13153,2025-03-08T15:07:12.070836-08:00,0.0,10.739144,10739.144 +13154,2025-03-08T15:07:22.816594-08:00,0.0,10.745758,10745.758 +13155,2025-03-08T15:07:33.560670-08:00,0.0,10.744076,10744.076 +13156,2025-03-08T15:07:44.305701-08:00,0.0,10.745031,10745.031 +13157,2025-03-08T15:07:55.048512-08:00,0.0,10.742811,10742.811 +13158,2025-03-08T15:08:05.798527-08:00,0.0,10.750015,10750.015 +13159,2025-03-08T15:08:16.540497-08:00,0.0,10.74197,10741.97 +13160,2025-03-08T15:08:27.290502-08:00,0.0,10.750005,10750.005 +13161,2025-03-08T15:08:38.027562-08:00,0.0,10.73706,10737.06 +13162,2025-03-08T15:08:48.774499-08:00,0.0,10.746937,10746.937 +13163,2025-03-08T15:08:59.522496-08:00,0.0,10.747997,10747.997 +13164,2025-03-08T15:09:10.259960-08:00,0.0,10.737464,10737.464 +13165,2025-03-08T15:09:21.008667-08:00,0.0,10.748707,10748.707 +13166,2025-03-08T15:09:31.748608-08:00,0.0,10.739941,10739.941 +13167,2025-03-08T15:09:42.503254-08:00,0.0,10.754646,10754.646 +13168,2025-03-08T15:09:53.241685-08:00,0.0,10.738431,10738.431 +13169,2025-03-08T15:10:03.983490-08:00,0.0,10.741805,10741.805 +13170,2025-03-08T15:10:14.725494-08:00,0.0,10.742004,10742.004 +13171,2025-03-08T15:10:25.468560-08:00,0.0,10.743066,10743.066 +13172,2025-03-08T15:10:36.219694-08:00,0.0,10.751134,10751.134 +13173,2025-03-08T15:10:46.959497-08:00,0.0,10.739803,10739.803 +13174,2025-03-08T15:10:57.706486-08:00,0.0,10.746989,10746.989 +13175,2025-03-08T15:11:08.443917-08:00,0.0,10.737431,10737.431 +13176,2025-03-08T15:11:19.188517-08:00,0.0,10.7446,10744.6 +13177,2025-03-08T15:11:29.931709-08:00,0.0,10.743192,10743.192 +13178,2025-03-08T15:11:40.676903-08:00,0.0,10.745194,10745.194 +13179,2025-03-08T15:11:51.415675-08:00,0.0,10.738772,10738.772 +13180,2025-03-08T15:12:02.161673-08:00,0.0,10.745998,10745.998 +13181,2025-03-08T15:12:12.902567-08:00,0.0,10.740894,10740.894 +13182,2025-03-08T15:12:23.648035-08:00,0.0,10.745468,10745.468 +13183,2025-03-08T15:12:34.387592-08:00,0.0,10.739557,10739.557 +13184,2025-03-08T15:12:45.121710-08:00,0.0,10.734118,10734.118 +13185,2025-03-08T15:12:55.858677-08:00,0.0,10.736967,10736.967 +13186,2025-03-08T15:13:06.599890-08:00,0.0,10.741213,10741.213 +13187,2025-03-08T15:13:17.339064-08:00,0.0,10.739174,10739.174 +13188,2025-03-08T15:13:28.072922-08:00,0.0,10.733858,10733.858 +13189,2025-03-08T15:13:38.813491-08:00,0.0,10.740569,10740.569 +13190,2025-03-08T15:13:49.558668-08:00,0.0,10.745177,10745.177 +13191,2025-03-08T15:14:00.295494-08:00,0.0,10.736826,10736.826 +13192,2025-03-08T15:14:11.042495-08:00,0.0,10.747001,10747.001 +13193,2025-03-08T15:14:21.777683-08:00,0.0,10.735188,10735.188 +13194,2025-03-08T15:14:32.515656-08:00,0.0,10.737973,10737.973 +13195,2025-03-08T15:14:43.259281-08:00,0.0,10.743625,10743.625 +13196,2025-03-08T15:14:54.008491-08:00,0.0,10.74921,10749.21 +13197,2025-03-08T15:15:04.748494-08:00,0.0,10.740003,10740.003 +13198,2025-03-08T15:15:15.484721-08:00,0.0,10.736227,10736.227 +13199,2025-03-08T15:15:26.228900-08:00,0.0,10.744179,10744.179 +13200,2025-03-08T15:15:36.963679-08:00,0.0,10.734779,10734.779 +13201,2025-03-08T15:15:47.705558-08:00,0.0,10.741879,10741.879 +13202,2025-03-08T15:15:58.449602-08:00,0.0,10.744044,10744.044 +13203,2025-03-08T15:16:09.195494-08:00,0.0,10.745892,10745.892 +13204,2025-03-08T15:16:19.928494-08:00,0.0,10.733,10733.0 +13205,2025-03-08T15:16:30.671497-08:00,0.0,10.743003,10743.003 +13206,2025-03-08T15:16:41.410506-08:00,0.0,10.739009,10739.009 +13207,2025-03-08T15:16:52.152587-08:00,0.0,10.742081,10742.081 +13208,2025-03-08T15:17:02.892686-08:00,0.0,10.740099,10740.099 +13209,2025-03-08T15:17:13.630816-08:00,0.0,10.73813,10738.13 +13210,2025-03-08T15:17:24.373715-08:00,0.0,10.742899,10742.899 +13211,2025-03-08T15:17:35.105494-08:00,0.0,10.731779,10731.779 +13212,2025-03-08T15:17:45.847707-08:00,0.0,10.742213,10742.213 +13213,2025-03-08T15:17:56.590676-08:00,0.0,10.742969,10742.969 +13214,2025-03-08T15:18:07.328892-08:00,0.0,10.738216,10738.216 +13215,2025-03-08T15:18:18.070694-08:00,0.0,10.741802,10741.802 +13216,2025-03-08T15:18:28.803697-08:00,0.0,10.733003,10733.003 +13217,2025-03-08T15:18:39.549494-08:00,0.0,10.745797,10745.797 +13218,2025-03-08T15:18:50.285567-08:00,0.0,10.736073,10736.073 +13219,2025-03-08T15:19:01.028667-08:00,0.0,10.7431,10743.1 +13220,2025-03-08T15:19:11.767493-08:00,0.0,10.738826,10738.826 +13221,2025-03-08T15:19:22.508682-08:00,0.0,10.741189,10741.189 +13222,2025-03-08T15:19:33.245514-08:00,0.0,10.736832,10736.832 +13223,2025-03-08T15:19:43.993821-08:00,0.0,10.748307,10748.307 +13224,2025-03-08T15:19:54.731493-08:00,0.0,10.737672,10737.672 +13225,2025-03-08T15:20:05.471639-08:00,0.0,10.740146,10740.146 +13226,2025-03-08T15:20:16.213490-08:00,0.0,10.741851,10741.851 +13227,2025-03-08T15:20:37.703902-08:00,0.0,21.490412,21490.412 +13228,2025-03-08T15:20:48.443816-08:00,0.0,10.739914,10739.914 +13229,2025-03-08T15:20:59.181929-08:00,0.0,10.738113,10738.113 +13230,2025-03-08T15:21:09.931691-08:00,0.0,10.749762,10749.762 +13231,2025-03-08T15:21:20.676333-08:00,0.0,10.744642,10744.642 +13232,2025-03-08T15:21:31.413714-08:00,0.0,10.737381,10737.381 +13233,2025-03-08T15:21:42.167493-08:00,0.0,10.753779,10753.779 +13234,2025-03-08T15:21:52.902880-08:00,0.0,10.735387,10735.387 +13235,2025-03-08T15:22:03.643571-08:00,0.0,10.740691,10740.691 +13236,2025-03-08T15:22:14.388486-08:00,0.0,10.744915,10744.915 +13237,2025-03-08T15:22:25.131497-08:00,0.0,10.743011,10743.011 +13238,2025-03-08T15:22:35.876524-08:00,0.0,10.745027,10745.027 +13239,2025-03-08T15:22:46.613968-08:00,0.0,10.737444,10737.444 +13240,2025-03-08T15:22:57.351863-08:00,0.0,10.737895,10737.895 +13241,2025-03-08T15:23:08.096587-08:00,0.0,10.744724,10744.724 +13242,2025-03-08T15:23:18.841630-08:00,0.0,10.745043,10745.043 +13243,2025-03-08T15:23:29.582494-08:00,0.0,10.740864,10740.864 +13244,2025-03-08T15:23:40.313669-08:00,0.0,10.731175,10731.175 +13245,2025-03-08T15:23:51.052463-08:00,0.0,10.738794,10738.794 +13246,2025-03-08T15:24:01.798657-08:00,0.0,10.746194,10746.194 +13247,2025-03-08T15:24:12.541690-08:00,0.0,10.743033,10743.033 +13248,2025-03-08T15:24:23.276629-08:00,0.0,10.734939,10734.939 +13249,2025-03-08T15:24:34.012503-08:00,0.0,10.735874,10735.874 +13250,2025-03-08T15:24:44.753487-08:00,0.0,10.740984,10740.984 +13251,2025-03-08T15:24:55.488572-08:00,0.0,10.735085,10735.085 +13252,2025-03-08T15:25:06.225662-08:00,0.0,10.73709,10737.09 +13253,2025-03-08T15:25:16.963741-08:00,0.0,10.738079,10738.079 +13254,2025-03-08T15:25:27.706489-08:00,0.0,10.742748,10742.748 +13255,2025-03-08T15:25:38.436702-08:00,0.0,10.730213,10730.213 +13256,2025-03-08T15:25:49.176015-08:00,0.0,10.739313,10739.313 +13257,2025-03-08T15:25:59.919759-08:00,0.0,10.743744,10743.744 +13258,2025-03-08T15:26:10.652630-08:00,0.0,10.732871,10732.871 +13259,2025-03-08T15:26:21.390703-08:00,0.0,10.738073,10738.073 +13260,2025-03-08T15:26:32.123492-08:00,0.0,10.732789,10732.789 +13261,2025-03-08T15:26:42.861839-08:00,0.0,10.738347,10738.347 +13262,2025-03-08T15:26:53.603508-08:00,0.0,10.741669,10741.669 +13263,2025-03-08T15:27:04.338723-08:00,0.0,10.735215,10735.215 +13264,2025-03-08T15:27:15.069593-08:00,0.0,10.73087,10730.87 +13265,2025-03-08T15:27:25.808938-08:00,0.0,10.739345,10739.345 +13266,2025-03-08T15:27:36.551115-08:00,0.0,10.742177,10742.177 +13267,2025-03-08T15:27:47.283584-08:00,0.0,10.732469,10732.469 +13268,2025-03-08T15:27:58.018493-08:00,0.0,10.734909,10734.909 +13269,2025-03-08T15:28:08.763530-08:00,0.0,10.745037,10745.037 +13270,2025-03-08T15:28:19.500496-08:00,0.0,10.736966,10736.966 +13271,2025-03-08T15:28:30.240495-08:00,0.0,10.739999,10739.999 +13272,2025-03-08T15:28:40.977659-08:00,0.0,10.737164,10737.164 +13273,2025-03-08T15:28:51.710587-08:00,0.0,10.732928,10732.928 +13274,2025-03-08T15:29:02.450543-08:00,0.0,10.739956,10739.956 +13275,2025-03-08T15:29:13.191892-08:00,0.0,10.741349,10741.349 +13276,2025-03-08T15:29:23.919669-08:00,0.0,10.727777,10727.777 +13277,2025-03-08T15:29:34.665586-08:00,0.0,10.745917,10745.917 +13278,2025-03-08T15:29:45.398644-08:00,0.0,10.733058,10733.058 +13279,2025-03-08T15:29:56.138972-08:00,0.0,10.740328,10740.328 +13280,2025-03-08T15:30:06.872494-08:00,0.0,10.733522,10733.522 +13281,2025-03-08T15:30:17.606495-08:00,0.0,10.734001,10734.001 +13282,2025-03-08T15:30:28.347672-08:00,0.0,10.741177,10741.177 +13283,2025-03-08T15:30:39.077488-08:00,0.0,10.729816,10729.816 +13284,2025-03-08T15:30:49.816500-08:00,0.0,10.739012,10739.012 +13285,2025-03-08T15:31:00.550748-08:00,0.0,10.734248,10734.248 +13286,2025-03-08T15:31:11.288672-08:00,0.0,10.737924,10737.924 +13287,2025-03-08T15:31:22.025617-08:00,0.0,10.736945,10736.945 +13288,2025-03-08T15:31:32.761521-08:00,0.0,10.735904,10735.904 +13289,2025-03-08T15:31:43.498495-08:00,0.0,10.736974,10736.974 +13290,2025-03-08T15:31:54.231498-08:00,0.0,10.733003,10733.003 +13291,2025-03-08T15:32:04.960781-08:00,0.0,10.729283,10729.283 +13292,2025-03-08T15:32:15.702495-08:00,0.0,10.741714,10741.714 +13293,2025-03-08T15:32:26.432817-08:00,0.0,10.730322,10730.322 +13294,2025-03-08T15:32:37.166678-08:00,0.0,10.733861,10733.861 +13295,2025-03-08T15:32:47.895494-08:00,0.0,10.728816,10728.816 +13296,2025-03-08T15:32:58.633496-08:00,0.0,10.738002,10738.002 +13297,2025-03-08T15:33:09.367836-08:00,0.0,10.73434,10734.34 +13298,2025-03-08T15:33:20.102677-08:00,0.0,10.734841,10734.841 +13299,2025-03-08T15:33:30.833496-08:00,0.0,10.730819,10730.819 +13300,2025-03-08T15:33:41.570494-08:00,0.0,10.736998,10736.998 +13301,2025-03-08T15:33:52.305667-08:00,0.0,10.735173,10735.173 +13302,2025-03-08T15:34:03.040660-08:00,0.0,10.734993,10734.993 +13303,2025-03-08T15:34:13.769494-08:00,0.0,10.728834,10728.834 +13304,2025-03-08T15:34:24.511488-08:00,0.0,10.741994,10741.994 +13305,2025-03-08T15:34:35.240498-08:00,0.0,10.72901,10729.01 +13306,2025-03-08T15:34:45.981826-08:00,0.0,10.741328,10741.328 +13307,2025-03-08T15:34:56.722303-08:00,0.0,10.740477,10740.477 +13308,2025-03-08T15:35:07.459470-08:00,0.0,10.737167,10737.167 +13309,2025-03-08T15:35:18.190498-08:00,0.0,10.731028,10731.028 +13310,2025-03-08T15:35:28.930896-08:00,0.0,10.740398,10740.398 +13311,2025-03-08T15:35:39.677683-08:00,0.0,10.746787,10746.787 +13312,2025-03-08T15:35:50.413668-08:00,0.0,10.735985,10735.985 +13313,2025-03-08T15:36:01.151522-08:00,0.0,10.737854,10737.854 +13314,2025-03-08T15:36:11.890620-08:00,0.0,10.739098,10739.098 +13315,2025-03-08T15:36:22.630495-08:00,0.0,10.739875,10739.875 +13316,2025-03-08T15:36:33.361044-08:00,0.0,10.730549,10730.549 +13317,2025-03-08T15:36:44.105685-08:00,0.0,10.744641,10744.641 +13318,2025-03-08T15:36:54.840652-08:00,0.0,10.734967,10734.967 +13319,2025-03-08T15:37:05.576493-08:00,0.0,10.735841,10735.841 +13320,2025-03-08T15:37:16.305682-08:00,0.0,10.729189,10729.189 +13321,2025-03-08T15:37:27.047014-08:00,0.0,10.741332,10741.332 +13322,2025-03-08T15:37:37.783536-08:00,0.0,10.736522,10736.522 +13323,2025-03-08T15:37:48.523486-08:00,0.0,10.73995,10739.95 +13324,2025-03-08T15:37:59.263492-08:00,0.0,10.740006,10740.006 +13325,2025-03-08T15:38:10.003495-08:00,0.0,10.740003,10740.003 +13326,2025-03-08T15:38:20.731648-08:00,0.0,10.728153,10728.153 +13327,2025-03-08T15:38:31.466580-08:00,0.0,10.734932,10734.932 +13328,2025-03-08T15:38:42.210522-08:00,0.0,10.743942,10743.942 +13329,2025-03-08T15:38:52.952737-08:00,0.0,10.742215,10742.215 +13330,2025-03-08T15:39:03.684494-08:00,0.0,10.731757,10731.757 +13331,2025-03-08T15:39:14.416672-08:00,0.0,10.732178,10732.178 +13332,2025-03-08T15:39:25.156792-08:00,0.0,10.74012,10740.12 +13333,2025-03-08T15:39:35.891692-08:00,0.0,10.7349,10734.9 +13334,2025-03-08T15:39:46.628497-08:00,0.0,10.736805,10736.805 +13335,2025-03-08T15:39:57.369710-08:00,0.0,10.741213,10741.213 +13336,2025-03-08T15:40:08.096372-08:00,0.0,10.726662,10726.662 +13337,2025-03-08T15:40:18.837243-08:00,0.0,10.740871,10740.871 +13338,2025-03-08T15:40:29.573557-08:00,0.0,10.736314,10736.314 +13339,2025-03-08T15:40:40.305908-08:00,0.0,10.732351,10732.351 +13340,2025-03-08T15:40:51.047691-08:00,0.0,10.741783,10741.783 +13341,2025-03-08T15:41:01.785679-08:00,0.0,10.737988,10737.988 +13342,2025-03-08T15:41:12.528199-08:00,0.0,10.74252,10742.52 +13343,2025-03-08T15:41:23.266696-08:00,0.0,10.738497,10738.497 +13344,2025-03-08T15:41:33.996495-08:00,0.0,10.729799,10729.799 +13345,2025-03-08T15:41:44.735508-08:00,0.0,10.739013,10739.013 +13346,2025-03-08T15:41:55.483713-08:00,0.0,10.748205,10748.205 +13347,2025-03-08T15:42:06.219681-08:00,0.0,10.735968,10735.968 +13348,2025-03-08T15:42:16.958584-08:00,0.0,10.738903,10738.903 +13349,2025-03-08T15:42:27.700494-08:00,0.0,10.74191,10741.91 +13350,2025-03-08T15:42:38.433557-08:00,0.0,10.733063,10733.063 +13351,2025-03-08T15:42:49.178698-08:00,0.0,10.745141,10745.141 +13352,2025-03-08T15:42:59.908836-08:00,0.0,10.730138,10730.138 +13353,2025-03-08T15:43:10.651123-08:00,0.0,10.742287,10742.287 +13354,2025-03-08T15:43:21.391629-08:00,0.0,10.740506,10740.506 +13355,2025-03-08T15:43:32.128492-08:00,0.0,10.736863,10736.863 +13356,2025-03-08T15:43:42.858494-08:00,0.0,10.730002,10730.002 +13357,2025-03-08T15:43:53.600504-08:00,0.0,10.74201,10742.01 +13358,2025-03-08T15:44:04.341671-08:00,0.0,10.741167,10741.167 +13359,2025-03-08T15:44:15.084311-08:00,0.0,10.74264,10742.64 +13360,2025-03-08T15:44:25.821861-08:00,0.0,10.73755,10737.55 +13361,2025-03-08T15:44:36.559542-08:00,0.0,10.737681,10737.681 +13362,2025-03-08T15:44:47.295905-08:00,0.0,10.736363,10736.363 +13363,2025-03-08T15:44:58.031693-08:00,0.0,10.735788,10735.788 +13364,2025-03-08T15:45:08.768828-08:00,0.0,10.737135,10737.135 +13365,2025-03-08T15:45:19.504040-08:00,0.0,10.735212,10735.212 +13366,2025-03-08T15:45:30.241521-08:00,0.0,10.737481,10737.481 +13367,2025-03-08T15:45:40.978491-08:00,0.0,10.73697,10736.97 +13368,2025-03-08T15:45:51.709597-08:00,0.0,10.731106,10731.106 +13369,2025-03-08T15:46:02.448534-08:00,0.0,10.738937,10738.937 +13370,2025-03-08T15:46:13.184494-08:00,0.0,10.73596,10735.96 +13371,2025-03-08T15:46:23.925553-08:00,0.0,10.741059,10741.059 +13372,2025-03-08T15:46:34.662723-08:00,0.0,10.73717,10737.17 +13373,2025-03-08T15:46:45.401657-08:00,0.0,10.738934,10738.934 +13374,2025-03-08T15:46:56.132516-08:00,0.0,10.730859,10730.859 +13375,2025-03-08T15:47:06.874688-08:00,0.0,10.742172,10742.172 +13376,2025-03-08T15:47:17.607498-08:00,0.0,10.73281,10732.81 +13377,2025-03-08T15:47:28.346576-08:00,0.0,10.739078,10739.078 +13378,2025-03-08T15:47:39.077516-08:00,0.0,10.73094,10730.94 +13379,2025-03-08T15:47:49.813572-08:00,0.0,10.736056,10736.056 +13380,2025-03-08T15:48:00.557670-08:00,0.0,10.744098,10744.098 +13381,2025-03-08T15:48:11.293899-08:00,0.0,10.736229,10736.229 +13382,2025-03-08T15:48:22.033346-08:00,0.0,10.739447,10739.447 +13383,2025-03-08T15:48:32.767209-08:00,0.0,10.733863,10733.863 +13384,2025-03-08T15:48:43.500491-08:00,0.0,10.733282,10733.282 +13385,2025-03-08T15:48:54.233746-08:00,0.0,10.733255,10733.255 +13386,2025-03-08T15:49:04.967705-08:00,0.0,10.733959,10733.959 +13387,2025-03-08T15:49:15.710896-08:00,0.0,10.743191,10743.191 +13388,2025-03-08T15:49:26.443739-08:00,0.0,10.732843,10732.843 +13389,2025-03-08T15:49:37.186837-08:00,0.0,10.743098,10743.098 +13390,2025-03-08T15:49:47.920132-08:00,0.0,10.733295,10733.295 +13391,2025-03-08T15:49:58.655660-08:00,0.0,10.735528,10735.528 +13392,2025-03-08T15:50:09.396351-08:00,0.0,10.740691,10740.691 +13393,2025-03-08T15:50:20.131736-08:00,0.0,10.735385,10735.385 +13394,2025-03-08T15:50:30.871493-08:00,0.0,10.739757,10739.757 +13395,2025-03-08T15:50:41.602834-08:00,0.0,10.731341,10731.341 +13396,2025-03-08T15:50:52.338691-08:00,0.0,10.735857,10735.857 +13397,2025-03-08T15:51:03.076025-08:00,0.0,10.737334,10737.334 +13398,2025-03-08T15:51:13.818658-08:00,0.0,10.742633,10742.633 +13399,2025-03-08T15:51:24.545886-08:00,0.0,10.727228,10727.228 +13400,2025-03-08T15:51:35.286671-08:00,0.0,10.740785,10740.785 +13401,2025-03-08T15:51:46.032866-08:00,0.0,10.746195,10746.195 +13402,2025-03-08T15:51:56.770292-08:00,0.0,10.737426,10737.426 +13403,2025-03-08T15:52:07.502649-08:00,0.0,10.732357,10732.357 +13404,2025-03-08T15:52:18.245494-08:00,0.0,10.742845,10742.845 +13405,2025-03-08T15:52:29.001791-08:00,0.0,10.756297,10756.297 +13406,2025-03-08T15:52:39.745905-08:00,0.0,10.744114,10744.114 +13407,2025-03-08T15:52:50.472423-08:00,0.0,10.726518,10726.518 +13408,2025-03-08T15:53:01.203956-08:00,0.0,10.731533,10731.533 +13409,2025-03-08T15:53:11.945123-08:00,0.0,10.741167,10741.167 +13410,2025-03-08T15:53:22.673542-08:00,0.0,10.728419,10728.419 +13411,2025-03-08T15:53:33.407994-08:00,0.0,10.734452,10734.452 +13412,2025-03-08T15:53:44.145796-08:00,0.0,10.737802,10737.802 +13413,2025-03-08T15:53:54.874214-08:00,0.0,10.728418,10728.418 +13414,2025-03-08T15:54:05.609816-08:00,0.0,10.735602,10735.602 +13415,2025-03-08T15:54:16.344008-08:00,0.0,10.734192,10734.192 +13416,2025-03-08T15:54:27.087786-08:00,0.0,10.743778,10743.778 +13417,2025-03-08T15:54:37.819195-08:00,0.0,10.731409,10731.409 +13418,2025-03-08T15:54:48.551556-08:00,0.0,10.732361,10732.361 +13419,2025-03-08T15:54:59.287517-08:00,0.0,10.735961,10735.961 +13420,2025-03-08T15:55:10.020794-08:00,0.0,10.733277,10733.277 +13421,2025-03-08T15:55:20.760011-08:00,0.0,10.739217,10739.217 +13422,2025-03-08T15:55:31.496998-08:00,0.0,10.736987,10736.987 +13423,2025-03-08T15:55:42.231862-08:00,0.0,10.734864,10734.864 +13424,2025-03-08T15:55:52.967788-08:00,0.0,10.735926,10735.926 +13425,2025-03-08T15:56:03.703035-08:00,0.0,10.735247,10735.247 +13426,2025-03-08T15:56:14.435967-08:00,0.0,10.732932,10732.932 +13427,2025-03-08T15:56:25.175112-08:00,0.0,10.739145,10739.145 +13428,2025-03-08T15:56:35.904986-08:00,0.0,10.729874,10729.874 +13429,2025-03-08T15:56:46.640014-08:00,0.0,10.735028,10735.028 +13430,2025-03-08T15:56:57.375967-08:00,0.0,10.735953,10735.953 +13431,2025-03-08T15:57:08.105006-08:00,0.0,10.729039,10729.039 +13432,2025-03-08T15:57:18.848823-08:00,0.0,10.743817,10743.817 +13433,2025-03-08T15:57:29.581209-08:00,0.0,10.732386,10732.386 +13434,2025-03-08T15:57:40.313971-08:00,0.0,10.732762,10732.762 +13435,2025-03-08T15:57:51.056436-08:00,0.0,10.742465,10742.465 +13436,2025-03-08T15:58:01.788890-08:00,0.0,10.732454,10732.454 +13437,2025-03-08T15:58:12.528998-08:00,0.0,10.740108,10740.108 +13438,2025-03-08T15:58:23.264796-08:00,0.0,10.735798,10735.798 +13439,2025-03-08T15:58:34.003169-08:00,0.0,10.738373,10738.373 +13440,2025-03-08T15:58:43.478673-08:00,0.0,9.475504,9475.504 +13441,2025-03-08T15:58:44.742579-08:00,0.0,1.263906,1263.906 +13442,2025-03-08T15:58:55.473039-08:00,0.0,10.73046,10730.46 +13443,2025-03-08T15:59:06.211975-08:00,0.0,10.738936,10738.936 +13444,2025-03-08T15:59:16.955951-08:00,0.0,10.743976,10743.976 +13445,2025-03-08T15:59:27.684982-08:00,0.0,10.729031,10729.031 +13446,2025-03-08T15:59:38.427648-08:00,0.0,10.742666,10742.666 +13447,2025-03-08T15:59:49.159795-08:00,0.0,10.732147,10732.147 +13448,2025-03-08T15:59:59.892868-08:00,0.0,10.733073,10733.073 +13449,2025-03-08T16:00:10.631809-08:00,0.0,10.738941,10738.941 +13450,2025-03-08T16:00:21.377946-08:00,0.0,10.746137,10746.137 +13451,2025-03-08T16:00:32.108823-08:00,0.0,10.730877,10730.877 +13452,2025-03-08T16:00:42.852792-08:00,0.0,10.743969,10743.969 +13453,2025-03-08T16:00:53.585005-08:00,0.0,10.732213,10732.213 +13454,2025-03-08T16:01:04.326004-08:00,0.0,10.740999,10740.999 +13455,2025-03-08T16:01:15.061982-08:00,0.0,10.735978,10735.978 +13456,2025-03-08T16:01:25.803673-08:00,0.0,10.741691,10741.691 +13457,2025-03-08T16:01:36.536839-08:00,0.0,10.733166,10733.166 +13458,2025-03-08T16:01:47.268793-08:00,0.0,10.731954,10731.954 +13459,2025-03-08T16:01:58.007872-08:00,0.0,10.739079,10739.079 +13460,2025-03-08T16:02:08.752878-08:00,0.0,10.745006,10745.006 +13461,2025-03-08T16:02:19.479836-08:00,0.0,10.726958,10726.958 +13462,2025-03-08T16:02:30.220788-08:00,0.0,10.740952,10740.952 +13463,2025-03-08T16:02:40.952341-08:00,0.0,10.731553,10731.553 +13464,2025-03-08T16:02:51.692266-08:00,0.0,10.739925,10739.925 +13465,2025-03-08T16:03:02.424860-08:00,0.0,10.732594,10732.594 +13466,2025-03-08T16:03:13.161794-08:00,0.0,10.736934,10736.934 +13467,2025-03-08T16:03:23.901792-08:00,0.0,10.739998,10739.998 +13468,2025-03-08T16:03:34.634894-08:00,0.0,10.733102,10733.102 +13469,2025-03-08T16:03:45.371965-08:00,0.0,10.737071,10737.071 +13470,2025-03-08T16:03:56.107813-08:00,0.0,10.735848,10735.848 +13471,2025-03-08T16:04:06.841824-08:00,0.0,10.734011,10734.011 +13472,2025-03-08T16:04:17.585003-08:00,0.0,10.743179,10743.179 +13473,2025-03-08T16:04:28.318321-08:00,0.0,10.733318,10733.318 +13474,2025-03-08T16:04:39.057183-08:00,0.0,10.738862,10738.862 +13475,2025-03-08T16:04:49.795791-08:00,0.0,10.738608,10738.608 +13476,2025-03-08T16:05:00.531908-08:00,0.0,10.736117,10736.117 +13477,2025-03-08T16:05:11.267938-08:00,0.0,10.73603,10736.03 +13478,2025-03-08T16:05:22.008352-08:00,0.0,10.740414,10740.414 +13479,2025-03-08T16:05:32.751876-08:00,0.0,10.743524,10743.524 +13480,2025-03-08T16:05:43.487578-08:00,0.0,10.735702,10735.702 +13481,2025-03-08T16:05:54.222859-08:00,0.0,10.735281,10735.281 +13482,2025-03-08T16:06:04.957866-08:00,0.0,10.735007,10735.007 +13483,2025-03-08T16:06:15.701038-08:00,0.0,10.743172,10743.172 +13484,2025-03-08T16:06:26.434987-08:00,0.0,10.733949,10733.949 +13485,2025-03-08T16:06:37.169995-08:00,0.0,10.735008,10735.008 +13486,2025-03-08T16:06:47.910855-08:00,0.0,10.74086,10740.86 +13487,2025-03-08T16:06:58.647861-08:00,0.0,10.737006,10737.006 +13488,2025-03-08T16:07:09.381793-08:00,0.0,10.733932,10733.932 +13489,2025-03-08T16:07:20.118958-08:00,0.0,10.737165,10737.165 +13490,2025-03-08T16:07:30.851969-08:00,0.0,10.733011,10733.011 +13491,2025-03-08T16:07:41.588934-08:00,0.0,10.736965,10736.965 +13492,2025-03-08T16:07:52.329825-08:00,0.0,10.740891,10740.891 +13493,2025-03-08T16:08:03.070966-08:00,0.0,10.741141,10741.141 +13494,2025-03-08T16:08:13.799426-08:00,0.0,10.72846,10728.46 +13495,2025-03-08T16:08:24.540791-08:00,0.0,10.741365,10741.365 +13496,2025-03-08T16:08:35.274990-08:00,0.0,10.734199,10734.199 +13497,2025-03-08T16:08:46.020793-08:00,0.0,10.745803,10745.803 +13498,2025-03-08T16:08:56.757786-08:00,0.0,10.736993,10736.993 +13499,2025-03-08T16:09:07.497807-08:00,0.0,10.740021,10740.021 +13500,2025-03-08T16:09:18.235981-08:00,0.0,10.738174,10738.174 +13501,2025-03-08T16:09:28.970794-08:00,0.0,10.734813,10734.813 +13502,2025-03-08T16:09:39.705793-08:00,0.0,10.734999,10734.999 +13503,2025-03-08T16:09:50.443269-08:00,0.0,10.737476,10737.476 +13504,2025-03-08T16:10:01.185994-08:00,0.0,10.742725,10742.725 +13505,2025-03-08T16:10:11.914793-08:00,0.0,10.728799,10728.799 +13506,2025-03-08T16:10:22.644984-08:00,0.0,10.730191,10730.191 +13507,2025-03-08T16:10:33.379791-08:00,0.0,10.734807,10734.807 +13508,2025-03-08T16:10:44.125823-08:00,0.0,10.746032,10746.032 +13509,2025-03-08T16:10:54.855319-08:00,0.0,10.729496,10729.496 +13510,2025-03-08T16:11:05.594794-08:00,0.0,10.739475,10739.475 +13511,2025-03-08T16:11:16.331035-08:00,0.0,10.736241,10736.241 +13512,2025-03-08T16:11:27.060325-08:00,0.0,10.72929,10729.29 +13513,2025-03-08T16:11:37.800972-08:00,0.0,10.740647,10740.647 +13514,2025-03-08T16:11:48.534792-08:00,0.0,10.73382,10733.82 +13515,2025-03-08T16:11:59.270798-08:00,0.0,10.736006,10736.006 +13516,2025-03-08T16:12:10.007869-08:00,0.0,10.737071,10737.071 +13517,2025-03-08T16:12:20.751008-08:00,0.0,10.743139,10743.139 +13518,2025-03-08T16:12:31.489988-08:00,0.0,10.73898,10738.98 +13519,2025-03-08T16:12:42.219829-08:00,0.0,10.729841,10729.841 +13520,2025-03-08T16:12:52.956792-08:00,0.0,10.736963,10736.963 +13521,2025-03-08T16:13:03.696018-08:00,0.0,10.739226,10739.226 +13522,2025-03-08T16:13:14.425158-08:00,0.0,10.72914,10729.14 +13523,2025-03-08T16:13:25.156794-08:00,0.0,10.731636,10731.636 +13524,2025-03-08T16:13:35.899889-08:00,0.0,10.743095,10743.095 +13525,2025-03-08T16:13:46.631791-08:00,0.0,10.731902,10731.902 +13526,2025-03-08T16:13:57.363434-08:00,0.0,10.731643,10731.643 +13527,2025-03-08T16:14:08.095795-08:00,0.0,10.732361,10732.361 +13528,2025-03-08T16:14:18.834797-08:00,0.0,10.739002,10739.002 +13529,2025-03-08T16:14:29.568015-08:00,0.0,10.733218,10733.218 +13530,2025-03-08T16:14:40.308972-08:00,0.0,10.740957,10740.957 +13531,2025-03-08T16:14:51.043786-08:00,0.0,10.734814,10734.814 +13532,2025-03-08T16:15:01.782793-08:00,0.0,10.739007,10739.007 +13533,2025-03-08T16:15:12.520826-08:00,0.0,10.738033,10738.033 +13534,2025-03-08T16:15:23.249992-08:00,0.0,10.729166,10729.166 +13535,2025-03-08T16:15:33.995975-08:00,0.0,10.745983,10745.983 +13536,2025-03-08T16:15:44.728095-08:00,0.0,10.73212,10732.12 +13537,2025-03-08T16:15:55.473221-08:00,0.0,10.745126,10745.126 +13538,2025-03-08T16:16:06.207791-08:00,0.0,10.73457,10734.57 +13539,2025-03-08T16:16:16.941203-08:00,0.0,10.733412,10733.412 +13540,2025-03-08T16:16:27.672790-08:00,0.0,10.731587,10731.587 +13541,2025-03-08T16:16:38.409804-08:00,0.0,10.737014,10737.014 +13542,2025-03-08T16:16:49.145791-08:00,0.0,10.735987,10735.987 +13543,2025-03-08T16:16:59.886073-08:00,0.0,10.740282,10740.282 +13544,2025-03-08T16:17:10.616004-08:00,0.0,10.729931,10729.931 +13545,2025-03-08T16:17:21.351857-08:00,0.0,10.735853,10735.853 +13546,2025-03-08T16:17:32.095790-08:00,0.0,10.743933,10743.933 +13547,2025-03-08T16:17:42.829791-08:00,0.0,10.734001,10734.001 +13548,2025-03-08T16:17:53.572022-08:00,0.0,10.742231,10742.231 +13549,2025-03-08T16:18:04.303013-08:00,0.0,10.730991,10730.991 +13550,2025-03-08T16:18:15.033790-08:00,0.0,10.730777,10730.777 +13551,2025-03-08T16:18:36.512820-08:00,0.0,21.47903,21479.03 +13552,2025-03-08T16:18:47.247181-08:00,0.0,10.734361,10734.361 +13553,2025-03-08T16:18:57.981821-08:00,0.0,10.73464,10734.64 +13554,2025-03-08T16:19:08.711820-08:00,0.0,10.729999,10729.999 +13555,2025-03-08T16:19:19.456872-08:00,0.0,10.745052,10745.052 +13556,2025-03-08T16:19:30.195060-08:00,0.0,10.738188,10738.188 +13557,2025-03-08T16:19:40.926923-08:00,0.0,10.731863,10731.863 +13558,2025-03-08T16:19:51.659992-08:00,0.0,10.733069,10733.069 +13559,2025-03-08T16:20:02.397862-08:00,0.0,10.73787,10737.87 +13560,2025-03-08T16:20:13.130110-08:00,0.0,10.732248,10732.248 +13561,2025-03-08T16:20:23.867971-08:00,0.0,10.737861,10737.861 +13562,2025-03-08T16:20:34.603005-08:00,0.0,10.735034,10735.034 +13563,2025-03-08T16:20:45.342959-08:00,0.0,10.739954,10739.954 +13564,2025-03-08T16:20:56.077984-08:00,0.0,10.735025,10735.025 +13565,2025-03-08T16:21:06.819974-08:00,0.0,10.74199,10741.99 +13566,2025-03-08T16:21:17.548788-08:00,0.0,10.728814,10728.814 +13567,2025-03-08T16:21:28.281793-08:00,0.0,10.733005,10733.005 +13568,2025-03-08T16:21:39.016866-08:00,0.0,10.735073,10735.073 +13569,2025-03-08T16:21:49.760788-08:00,0.0,10.743922,10743.922 +13570,2025-03-08T16:22:00.493975-08:00,0.0,10.733187,10733.187 +13571,2025-03-08T16:22:11.231794-08:00,0.0,10.737819,10737.819 +13572,2025-03-08T16:22:21.962790-08:00,0.0,10.730996,10730.996 +13573,2025-03-08T16:22:32.695998-08:00,0.0,10.733208,10733.208 +13574,2025-03-08T16:22:43.432118-08:00,0.0,10.73612,10736.12 +13575,2025-03-08T16:22:54.170794-08:00,0.0,10.738676,10738.676 +13576,2025-03-08T16:23:04.909825-08:00,0.0,10.739031,10739.031 +13577,2025-03-08T16:23:15.640790-08:00,0.0,10.730965,10730.965 +13578,2025-03-08T16:23:26.380812-08:00,0.0,10.740022,10740.022 +13579,2025-03-08T16:23:37.111211-08:00,0.0,10.730399,10730.399 +13580,2025-03-08T16:23:47.845795-08:00,0.0,10.734584,10734.584 +13581,2025-03-08T16:23:58.577332-08:00,0.0,10.731537,10731.537 +13582,2025-03-08T16:24:09.314991-08:00,0.0,10.737659,10737.659 +13583,2025-03-08T16:24:20.045794-08:00,0.0,10.730803,10730.803 +13584,2025-03-08T16:24:30.779792-08:00,0.0,10.733998,10733.998 +13585,2025-03-08T16:24:41.516902-08:00,0.0,10.73711,10737.11 +13586,2025-03-08T16:24:52.257874-08:00,0.0,10.740972,10740.972 +13587,2025-03-08T16:25:02.988139-08:00,0.0,10.730265,10730.265 +13588,2025-03-08T16:25:13.716792-08:00,0.0,10.728653,10728.653 +13589,2025-03-08T16:25:24.457252-08:00,0.0,10.74046,10740.46 +13590,2025-03-08T16:25:35.182787-08:00,0.0,10.725535,10725.535 +13591,2025-03-08T16:25:45.920065-08:00,0.0,10.737278,10737.278 +13592,2025-03-08T16:25:56.649793-08:00,0.0,10.729728,10729.728 +13593,2025-03-08T16:26:07.386168-08:00,0.0,10.736375,10736.375 +13594,2025-03-08T16:26:18.115794-08:00,0.0,10.729626,10729.626 +13595,2025-03-08T16:26:28.857995-08:00,0.0,10.742201,10742.201 +13596,2025-03-08T16:26:39.582789-08:00,0.0,10.724794,10724.794 +13597,2025-03-08T16:26:50.320963-08:00,0.0,10.738174,10738.174 +13598,2025-03-08T16:27:01.049788-08:00,0.0,10.728825,10728.825 +13599,2025-03-08T16:27:11.785948-08:00,0.0,10.73616,10736.16 +13600,2025-03-08T16:27:22.524859-08:00,0.0,10.738911,10738.911 +13601,2025-03-08T16:27:33.253940-08:00,0.0,10.729081,10729.081 +13602,2025-03-08T16:27:43.993798-08:00,0.0,10.739858,10739.858 +13603,2025-03-08T16:27:54.723807-08:00,0.0,10.730009,10730.009 +13604,2025-03-08T16:28:05.466010-08:00,0.0,10.742203,10742.203 +13605,2025-03-08T16:28:16.196618-08:00,0.0,10.730608,10730.608 +13606,2025-03-08T16:28:26.927786-08:00,0.0,10.731168,10731.168 +13607,2025-03-08T16:28:37.664793-08:00,0.0,10.737007,10737.007 +13608,2025-03-08T16:28:48.394604-08:00,0.0,10.729811,10729.811 +13609,2025-03-08T16:28:59.129817-08:00,0.0,10.735213,10735.213 +13610,2025-03-08T16:29:09.855370-08:00,0.0,10.725553,10725.553 +13611,2025-03-08T16:29:20.585966-08:00,0.0,10.730596,10730.596 +13612,2025-03-08T16:29:31.322032-08:00,0.0,10.736066,10736.066 +13613,2025-03-08T16:29:42.044790-08:00,0.0,10.722758,10722.758 +13614,2025-03-08T16:29:52.773971-08:00,0.0,10.729181,10729.181 +13615,2025-03-08T16:30:03.509935-08:00,0.0,10.735964,10735.964 +13616,2025-03-08T16:30:14.239278-08:00,0.0,10.729343,10729.343 +13617,2025-03-08T16:30:24.972348-08:00,0.0,10.73307,10733.07 +13618,2025-03-08T16:30:35.712110-08:00,0.0,10.739762,10739.762 +13619,2025-03-08T16:30:46.444789-08:00,0.0,10.732679,10732.679 +13620,2025-03-08T16:30:57.177790-08:00,0.0,10.733001,10733.001 +13621,2025-03-08T16:31:07.906960-08:00,0.0,10.72917,10729.17 +13622,2025-03-08T16:31:18.643814-08:00,0.0,10.736854,10736.854 +13623,2025-03-08T16:31:29.377790-08:00,0.0,10.733976,10733.976 +13624,2025-03-08T16:31:40.104975-08:00,0.0,10.727185,10727.185 +13625,2025-03-08T16:31:50.846901-08:00,0.0,10.741926,10741.926 +13626,2025-03-08T16:32:01.576858-08:00,0.0,10.729957,10729.957 +13627,2025-03-08T16:32:12.314997-08:00,0.0,10.738139,10738.139 +13628,2025-03-08T16:32:23.048982-08:00,0.0,10.733985,10733.985 +13629,2025-03-08T16:32:33.785188-08:00,0.0,10.736206,10736.206 +13630,2025-03-08T16:32:44.520886-08:00,0.0,10.735698,10735.698 +13631,2025-03-08T16:32:55.256008-08:00,0.0,10.735122,10735.122 +13632,2025-03-08T16:33:05.986997-08:00,0.0,10.730989,10730.989 +13633,2025-03-08T16:33:16.715945-08:00,0.0,10.728948,10728.948 +13634,2025-03-08T16:33:27.444786-08:00,0.0,10.728841,10728.841 +13635,2025-03-08T16:33:38.175790-08:00,0.0,10.731004,10731.004 +13636,2025-03-08T16:33:48.912959-08:00,0.0,10.737169,10737.169 +13637,2025-03-08T16:33:59.647817-08:00,0.0,10.734858,10734.858 +13638,2025-03-08T16:34:10.386551-08:00,0.0,10.738734,10738.734 +13639,2025-03-08T16:34:21.116975-08:00,0.0,10.730424,10730.424 +13640,2025-03-08T16:34:31.848973-08:00,0.0,10.731998,10731.998 +13641,2025-03-08T16:34:42.580790-08:00,0.0,10.731817,10731.817 +13642,2025-03-08T16:34:53.312792-08:00,0.0,10.732002,10732.002 +13643,2025-03-08T16:35:04.048919-08:00,0.0,10.736127,10736.127 +13644,2025-03-08T16:35:14.786170-08:00,0.0,10.737251,10737.251 +13645,2025-03-08T16:35:25.515791-08:00,0.0,10.729621,10729.621 +13646,2025-03-08T16:35:36.250999-08:00,0.0,10.735208,10735.208 +13647,2025-03-08T16:35:46.979988-08:00,0.0,10.728989,10728.989 +13648,2025-03-08T16:35:57.710832-08:00,0.0,10.730844,10730.844 +13649,2025-03-08T16:36:08.440793-08:00,0.0,10.729961,10729.961 +13650,2025-03-08T16:36:19.175975-08:00,0.0,10.735182,10735.182 +13651,2025-03-08T16:36:29.911877-08:00,0.0,10.735902,10735.902 +13652,2025-03-08T16:36:40.640377-08:00,0.0,10.7285,10728.5 +13653,2025-03-08T16:36:51.372969-08:00,0.0,10.732592,10732.592 +13654,2025-03-08T16:37:02.100422-08:00,0.0,10.727453,10727.453 +13655,2025-03-08T16:37:12.837788-08:00,0.0,10.737366,10737.366 +13656,2025-03-08T16:37:23.567794-08:00,0.0,10.730006,10730.006 +13657,2025-03-08T16:37:34.302578-08:00,0.0,10.734784,10734.784 +13658,2025-03-08T16:37:45.031814-08:00,0.0,10.729236,10729.236 +13659,2025-03-08T16:37:55.769002-08:00,0.0,10.737188,10737.188 +13660,2025-03-08T16:38:06.495969-08:00,0.0,10.726967,10726.967 +13661,2025-03-08T16:38:17.231901-08:00,0.0,10.735932,10735.932 +13662,2025-03-08T16:38:27.966860-08:00,0.0,10.734959,10734.959 +13663,2025-03-08T16:38:38.699866-08:00,0.0,10.733006,10733.006 +13664,2025-03-08T16:38:49.432982-08:00,0.0,10.733116,10733.116 +13665,2025-03-08T16:39:00.166793-08:00,0.0,10.733811,10733.811 +13666,2025-03-08T16:39:10.889009-08:00,0.0,10.722216,10722.216 +13667,2025-03-08T16:39:21.632135-08:00,0.0,10.743126,10743.126 +13668,2025-03-08T16:39:32.367298-08:00,0.0,10.735163,10735.163 +13669,2025-03-08T16:39:43.098793-08:00,0.0,10.731495,10731.495 +13670,2025-03-08T16:39:53.832791-08:00,0.0,10.733998,10733.998 +13671,2025-03-08T16:40:04.566054-08:00,0.0,10.733263,10733.263 +13672,2025-03-08T16:40:15.297935-08:00,0.0,10.731881,10731.881 +13673,2025-03-08T16:40:26.031794-08:00,0.0,10.733859,10733.859 +13674,2025-03-08T16:40:36.758787-08:00,0.0,10.726993,10726.993 +13675,2025-03-08T16:40:36.758787-08:00,0.0,0.0,0.0 +13676,2025-03-08T16:40:47.499973-08:00,0.0,10.741186,10741.186 +13677,2025-03-08T16:40:47.499973-08:00,0.0,0.0,0.0 +13678,2025-03-08T16:40:58.225083-08:00,0.0,10.72511,10725.11 +13679,2025-03-08T16:41:08.957839-08:00,0.0,10.732756,10732.756 +13680,2025-03-08T16:41:19.695963-08:00,0.0,10.738124,10738.124 +13681,2025-03-08T16:41:30.429817-08:00,0.0,10.733854,10733.854 +13682,2025-03-08T16:41:41.155973-08:00,0.0,10.726156,10726.156 +13683,2025-03-08T16:41:51.892067-08:00,0.0,10.736094,10736.094 +13684,2025-03-08T16:42:02.629666-08:00,0.0,10.737599,10737.599 +13685,2025-03-08T16:42:13.358001-08:00,0.0,10.728335,10728.335 +13686,2025-03-08T16:42:24.091795-08:00,0.0,10.733794,10733.794 +13687,2025-03-08T16:42:34.826141-08:00,0.0,10.734346,10734.346 +13688,2025-03-08T16:42:45.559920-08:00,0.0,10.733779,10733.779 +13689,2025-03-08T16:42:56.289797-08:00,0.0,10.729877,10729.877 +13690,2025-03-08T16:43:07.021104-08:00,0.0,10.731307,10731.307 +13691,2025-03-08T16:43:17.761973-08:00,0.0,10.740869,10740.869 +13692,2025-03-08T16:43:28.487955-08:00,0.0,10.725982,10725.982 +13693,2025-03-08T16:43:39.227936-08:00,0.0,10.739981,10739.981 +13694,2025-03-08T16:43:49.959193-08:00,0.0,10.731257,10731.257 +13695,2025-03-08T16:44:00.697597-08:00,0.0,10.738404,10738.404 +13696,2025-03-08T16:44:11.432991-08:00,0.0,10.735394,10735.394 +13697,2025-03-08T16:44:22.167864-08:00,0.0,10.734873,10734.873 +13698,2025-03-08T16:44:32.900220-08:00,0.0,10.732356,10732.356 +13699,2025-03-08T16:44:43.637655-08:00,0.0,10.737435,10737.435 +13700,2025-03-08T16:44:54.373021-08:00,0.0,10.735366,10735.366 +13701,2025-03-08T16:45:05.105793-08:00,0.0,10.732772,10732.772 +13702,2025-03-08T16:45:15.843006-08:00,0.0,10.737213,10737.213 +13703,2025-03-08T16:45:26.569880-08:00,0.0,10.726874,10726.874 +13704,2025-03-08T16:45:37.305793-08:00,0.0,10.735913,10735.913 +13705,2025-03-08T16:45:48.044793-08:00,0.0,10.739,10739.0 +13706,2025-03-08T16:45:58.774907-08:00,0.0,10.730114,10730.114 +13707,2025-03-08T16:46:09.505791-08:00,0.0,10.730884,10730.884 +13708,2025-03-08T16:46:20.240793-08:00,0.0,10.735002,10735.002 +13709,2025-03-08T16:46:30.972823-08:00,0.0,10.73203,10732.03 +13710,2025-03-08T16:46:41.708089-08:00,0.0,10.735266,10735.266 +13711,2025-03-08T16:46:52.444005-08:00,0.0,10.735916,10735.916 +13712,2025-03-08T16:47:03.177873-08:00,0.0,10.733868,10733.868 +13713,2025-03-08T16:47:13.905168-08:00,0.0,10.727295,10727.295 +13714,2025-03-08T16:47:24.647969-08:00,0.0,10.742801,10742.801 +13715,2025-03-08T16:47:35.377021-08:00,0.0,10.729052,10729.052 +13716,2025-03-08T16:47:46.109857-08:00,0.0,10.732836,10732.836 +13717,2025-03-08T16:47:56.848019-08:00,0.0,10.738162,10738.162 +13718,2025-03-08T16:48:07.583849-08:00,0.0,10.73583,10735.83 +13719,2025-03-08T16:48:18.315085-08:00,0.0,10.731236,10731.236 +13720,2025-03-08T16:48:29.045094-08:00,0.0,10.730009,10730.009 +13721,2025-03-08T16:48:39.787347-08:00,0.0,10.742253,10742.253 +13722,2025-03-08T16:48:50.517516-08:00,0.0,10.730169,10730.169 +13723,2025-03-08T16:49:01.244936-08:00,0.0,10.72742,10727.42 +13724,2025-03-08T16:49:11.984798-08:00,0.0,10.739862,10739.862 +13725,2025-03-08T16:49:22.713673-08:00,0.0,10.728875,10728.875 +13726,2025-03-08T16:49:33.443788-08:00,0.0,10.730115,10730.115 +13727,2025-03-08T16:49:44.180793-08:00,0.0,10.737005,10737.005 +13728,2025-03-08T16:49:54.915500-08:00,0.0,10.734707,10734.707 +13729,2025-03-08T16:50:05.635865-08:00,0.0,10.720365,10720.365 +13730,2025-03-08T16:50:16.371035-08:00,0.0,10.73517,10735.17 +13731,2025-03-08T16:50:27.099985-08:00,0.0,10.72895,10728.95 +13732,2025-03-08T16:50:37.838815-08:00,0.0,10.73883,10738.83 +13733,2025-03-08T16:50:48.563538-08:00,0.0,10.724723,10724.723 +13734,2025-03-08T16:50:59.294975-08:00,0.0,10.731437,10731.437 +13735,2025-03-08T16:51:10.031787-08:00,0.0,10.736812,10736.812 +13736,2025-03-08T16:51:20.761924-08:00,0.0,10.730137,10730.137 +13737,2025-03-08T16:51:31.496945-08:00,0.0,10.735021,10735.021 +13738,2025-03-08T16:51:42.229971-08:00,0.0,10.733026,10733.026 +13739,2025-03-08T16:51:52.963081-08:00,0.0,10.73311,10733.11 +13740,2025-03-08T16:52:03.696790-08:00,0.0,10.733709,10733.709 +13741,2025-03-08T16:52:14.430018-08:00,0.0,10.733228,10733.228 +13742,2025-03-08T16:52:25.201954-08:00,0.0,10.771936,10771.936 +13743,2025-03-08T16:52:35.934933-08:00,0.0,10.732979,10732.979 +13744,2025-03-08T16:52:46.675930-08:00,0.0,10.740997,10740.997 +13745,2025-03-08T16:52:57.407123-08:00,0.0,10.731193,10731.193 +13746,2025-03-08T16:53:08.140953-08:00,0.0,10.73383,10733.83 +13747,2025-03-08T16:53:18.874955-08:00,0.0,10.734002,10734.002 +13748,2025-03-08T16:53:29.606357-08:00,0.0,10.731402,10731.402 +13749,2025-03-08T16:53:40.344130-08:00,0.0,10.737773,10737.773 +13750,2025-03-08T16:53:51.074141-08:00,0.0,10.730011,10730.011 +13751,2025-03-08T16:54:01.809956-08:00,0.0,10.735815,10735.815 +13752,2025-03-08T16:54:12.545128-08:00,0.0,10.735172,10735.172 +13753,2025-03-08T16:54:23.282208-08:00,0.0,10.73708,10737.08 +13754,2025-03-08T16:54:34.015412-08:00,0.0,10.733204,10733.204 +13755,2025-03-08T16:54:44.750932-08:00,0.0,10.73552,10735.52 +13756,2025-03-08T16:54:55.488336-08:00,0.0,10.737404,10737.404 +13757,2025-03-08T16:55:06.215881-08:00,0.0,10.727545,10727.545 +13758,2025-03-08T16:55:16.956933-08:00,0.0,10.741052,10741.052 +13759,2025-03-08T16:55:27.682931-08:00,0.0,10.725998,10725.998 +13760,2025-03-08T16:55:38.420934-08:00,0.0,10.738003,10738.003 +13761,2025-03-08T16:55:49.151953-08:00,0.0,10.731019,10731.019 +13762,2025-03-08T16:55:59.890144-08:00,0.0,10.738191,10738.191 +13763,2025-03-08T16:56:10.623005-08:00,0.0,10.732861,10732.861 +13764,2025-03-08T16:56:21.359128-08:00,0.0,10.736123,10736.123 +13765,2025-03-08T16:56:32.091936-08:00,0.0,10.732808,10732.808 +13766,2025-03-08T16:56:42.828933-08:00,0.0,10.736997,10736.997 +13767,2025-03-08T16:56:53.565090-08:00,0.0,10.736157,10736.157 +13768,2025-03-08T16:57:04.302037-08:00,0.0,10.736947,10736.947 +13769,2025-03-08T16:57:15.031406-08:00,0.0,10.729369,10729.369 +13770,2025-03-08T16:57:25.766962-08:00,0.0,10.735556,10735.556 +13771,2025-03-08T16:57:36.504168-08:00,0.0,10.737206,10737.206 +13772,2025-03-08T16:57:47.237603-08:00,0.0,10.733435,10733.435 +13773,2025-03-08T16:57:57.967092-08:00,0.0,10.729489,10729.489 +13774,2025-03-08T16:58:08.696950-08:00,0.0,10.729858,10729.858 +13775,2025-03-08T16:58:19.430933-08:00,0.0,10.733983,10733.983 +13776,2025-03-08T16:58:30.164685-08:00,0.0,10.733752,10733.752 +13777,2025-03-08T16:58:40.907954-08:00,0.0,10.743269,10743.269 +13778,2025-03-08T16:58:51.641929-08:00,0.0,10.733975,10733.975 +13779,2025-03-08T16:59:02.378001-08:00,0.0,10.736072,10736.072 +13780,2025-03-08T16:59:13.115387-08:00,0.0,10.737386,10737.386 +13781,2025-03-08T16:59:23.847932-08:00,0.0,10.732545,10732.545 +13782,2025-03-08T16:59:34.585077-08:00,0.0,10.737145,10737.145 +13783,2025-03-08T16:59:45.321102-08:00,0.0,10.736025,10736.025 +13784,2025-03-08T16:59:56.054931-08:00,0.0,10.733829,10733.829 +13785,2025-03-08T17:00:06.792136-08:00,0.0,10.737205,10737.205 +13786,2025-03-08T17:00:17.519976-08:00,0.0,10.72784,10727.84 +13787,2025-03-08T17:00:28.251271-08:00,0.0,10.731295,10731.295 +13788,2025-03-08T17:00:38.983302-08:00,0.0,10.732031,10732.031 +13789,2025-03-08T17:00:49.723931-08:00,0.0,10.740629,10740.629 +13790,2025-03-08T17:01:00.455138-08:00,0.0,10.731207,10731.207 +13791,2025-03-08T17:01:11.183022-08:00,0.0,10.727884,10727.884 +13792,2025-03-08T17:01:21.920549-08:00,0.0,10.737527,10737.527 +13793,2025-03-08T17:01:32.648931-08:00,0.0,10.728382,10728.382 +13794,2025-03-08T17:01:43.390058-08:00,0.0,10.741127,10741.127 +13795,2025-03-08T17:01:54.122991-08:00,0.0,10.732933,10732.933 +13796,2025-03-08T17:02:04.855933-08:00,0.0,10.732942,10732.942 +13797,2025-03-08T17:02:15.584930-08:00,0.0,10.728997,10728.997 +13798,2025-03-08T17:02:26.311110-08:00,0.0,10.72618,10726.18 +13799,2025-03-08T17:02:37.050940-08:00,0.0,10.73983,10739.83 +13800,2025-03-08T17:02:47.778932-08:00,0.0,10.727992,10727.992 +13801,2025-03-08T17:02:58.510296-08:00,0.0,10.731364,10731.364 +13802,2025-03-08T17:03:09.239253-08:00,0.0,10.728957,10728.957 +13803,2025-03-08T17:03:19.974934-08:00,0.0,10.735681,10735.681 +13804,2025-03-08T17:03:30.710930-08:00,0.0,10.735996,10735.996 +13805,2025-03-08T17:03:41.444948-08:00,0.0,10.734018,10734.018 +13806,2025-03-08T17:03:52.175961-08:00,0.0,10.731013,10731.013 +13807,2025-03-08T17:04:02.901934-08:00,0.0,10.725973,10725.973 +13808,2025-03-08T17:04:13.638368-08:00,0.0,10.736434,10736.434 +13809,2025-03-08T17:04:24.365931-08:00,0.0,10.727563,10727.563 +13810,2025-03-08T17:04:35.096933-08:00,0.0,10.731002,10731.002 +13811,2025-03-08T17:04:45.831007-08:00,0.0,10.734074,10734.074 +13812,2025-03-08T17:04:56.568105-08:00,0.0,10.737098,10737.098 +13813,2025-03-08T17:05:07.292956-08:00,0.0,10.724851,10724.851 +13814,2025-03-08T17:05:18.024474-08:00,0.0,10.731518,10731.518 +13815,2025-03-08T17:05:28.767185-08:00,0.0,10.742711,10742.711 +13816,2025-03-08T17:05:39.490264-08:00,0.0,10.723079,10723.079 +13817,2025-03-08T17:05:50.222934-08:00,0.0,10.73267,10732.67 +13818,2025-03-08T17:06:00.960936-08:00,0.0,10.738002,10738.002 +13819,2025-03-08T17:06:11.695248-08:00,0.0,10.734312,10734.312 +13820,2025-03-08T17:06:22.431931-08:00,0.0,10.736683,10736.683 +13821,2025-03-08T17:06:33.156134-08:00,0.0,10.724203,10724.203 +13822,2025-03-08T17:06:43.897137-08:00,0.0,10.741003,10741.003 +13823,2025-03-08T17:06:54.633032-08:00,0.0,10.735895,10735.895 +13824,2025-03-08T17:07:05.355132-08:00,0.0,10.7221,10722.1 +13825,2025-03-08T17:07:16.097151-08:00,0.0,10.742019,10742.019 +13826,2025-03-08T17:07:26.829743-08:00,0.0,10.732592,10732.592 +13827,2025-03-08T17:07:37.560931-08:00,0.0,10.731188,10731.188 +13828,2025-03-08T17:07:48.301135-08:00,0.0,10.740204,10740.204 +13829,2025-03-08T17:07:59.038035-08:00,0.0,10.7369,10736.9 +13830,2025-03-08T17:08:09.764404-08:00,0.0,10.726369,10726.369 +13831,2025-03-08T17:08:20.499926-08:00,0.0,10.735522,10735.522 +13832,2025-03-08T17:08:31.233931-08:00,0.0,10.734005,10734.005 +13833,2025-03-08T17:08:41.968945-08:00,0.0,10.735014,10735.014 +13834,2025-03-08T17:08:52.702350-08:00,0.0,10.733405,10733.405 +13835,2025-03-08T17:09:01.493772-08:00,0.0,8.791422,8791.422 +13836,2025-03-08T17:09:03.439229-08:00,0.0,1.945457,1945.457 +13837,2025-03-08T17:09:14.179958-08:00,0.0,10.740729,10740.729 +13838,2025-03-08T17:09:24.908110-08:00,0.0,10.728152,10728.152 +13839,2025-03-08T17:09:35.644113-08:00,0.0,10.736003,10736.003 +13840,2025-03-08T17:09:46.376966-08:00,0.0,10.732853,10732.853 +13841,2025-03-08T17:09:57.114928-08:00,0.0,10.737962,10737.962 +13842,2025-03-08T17:10:07.847928-08:00,0.0,10.733,10733.0 +13843,2025-03-08T17:10:18.582149-08:00,0.0,10.734221,10734.221 +13844,2025-03-08T17:10:29.309931-08:00,0.0,10.727782,10727.782 +13845,2025-03-08T17:10:40.046995-08:00,0.0,10.737064,10737.064 +13846,2025-03-08T17:10:50.784141-08:00,0.0,10.737146,10737.146 +13847,2025-03-08T17:11:01.519333-08:00,0.0,10.735192,10735.192 +13848,2025-03-08T17:11:12.249087-08:00,0.0,10.729754,10729.754 +13849,2025-03-08T17:11:22.991934-08:00,0.0,10.742847,10742.847 +13850,2025-03-08T17:11:33.721943-08:00,0.0,10.730009,10730.009 +13851,2025-03-08T17:11:44.458218-08:00,0.0,10.736275,10736.275 +13852,2025-03-08T17:11:55.191269-08:00,0.0,10.733051,10733.051 +13853,2025-03-08T17:12:05.929934-08:00,0.0,10.738665,10738.665 +13854,2025-03-08T17:12:16.659561-08:00,0.0,10.729627,10729.627 +13855,2025-03-08T17:12:27.397509-08:00,0.0,10.737948,10737.948 +13856,2025-03-08T17:12:38.133933-08:00,0.0,10.736424,10736.424 +13857,2025-03-08T17:12:48.864931-08:00,0.0,10.730998,10730.998 +13858,2025-03-08T17:12:59.596132-08:00,0.0,10.731201,10731.201 +13859,2025-03-08T17:13:10.331046-08:00,0.0,10.734914,10734.914 +13860,2025-03-08T17:13:21.073968-08:00,0.0,10.742922,10742.922 +13861,2025-03-08T17:13:31.798111-08:00,0.0,10.724143,10724.143 +13862,2025-03-08T17:13:42.540148-08:00,0.0,10.742037,10742.037 +13863,2025-03-08T17:13:53.272104-08:00,0.0,10.731956,10731.956 +13864,2025-03-08T17:14:04.000042-08:00,0.0,10.727938,10727.938 +13865,2025-03-08T17:14:14.741936-08:00,0.0,10.741894,10741.894 +13866,2025-03-08T17:14:25.477968-08:00,0.0,10.736032,10736.032 +13867,2025-03-08T17:14:36.212081-08:00,0.0,10.734113,10734.113 +13868,2025-03-08T17:14:46.935968-08:00,0.0,10.723887,10723.887 +13869,2025-03-08T17:14:57.681181-08:00,0.0,10.745213,10745.213 +13870,2025-03-08T17:15:08.415094-08:00,0.0,10.733913,10733.913 +13871,2025-03-08T17:15:19.148932-08:00,0.0,10.733838,10733.838 +13872,2025-03-08T17:15:29.892933-08:00,0.0,10.744001,10744.001 +13873,2025-03-08T17:15:40.624132-08:00,0.0,10.731199,10731.199 +13874,2025-03-08T17:15:51.370956-08:00,0.0,10.746824,10746.824 +13875,2025-03-08T17:16:02.107009-08:00,0.0,10.736053,10736.053 +13876,2025-03-08T17:16:12.850949-08:00,0.0,10.74394,10743.94 +13877,2025-03-08T17:16:23.581029-08:00,0.0,10.73008,10730.08 +13878,2025-03-08T17:16:34.324998-08:00,0.0,10.743969,10743.969 +13879,2025-03-08T17:16:45.062950-08:00,0.0,10.737952,10737.952 +13880,2025-03-08T17:16:55.801937-08:00,0.0,10.738987,10738.987 +13881,2025-03-08T17:17:06.540934-08:00,0.0,10.738997,10738.997 +13882,2025-03-08T17:17:17.278116-08:00,0.0,10.737182,10737.182 +13883,2025-03-08T17:17:28.017997-08:00,0.0,10.739881,10739.881 +13884,2025-03-08T17:17:38.757932-08:00,0.0,10.739935,10739.935 +13885,2025-03-08T17:17:49.497008-08:00,0.0,10.739076,10739.076 +13886,2025-03-08T17:18:00.241935-08:00,0.0,10.744927,10744.927 +13887,2025-03-08T17:18:10.975934-08:00,0.0,10.733999,10733.999 +13888,2025-03-08T17:18:21.712133-08:00,0.0,10.736199,10736.199 +13889,2025-03-08T17:18:32.450202-08:00,0.0,10.738069,10738.069 +13890,2025-03-08T17:18:43.198955-08:00,0.0,10.748753,10748.753 +13891,2025-03-08T17:18:53.930935-08:00,0.0,10.73198,10731.98 +13892,2025-03-08T17:19:04.677128-08:00,0.0,10.746193,10746.193 +13893,2025-03-08T17:19:15.415934-08:00,0.0,10.738806,10738.806 +13894,2025-03-08T17:19:26.158127-08:00,0.0,10.742193,10742.193 +13895,2025-03-08T17:19:36.901345-08:00,0.0,10.743218,10743.218 +13896,2025-03-08T17:19:47.651544-08:00,0.0,10.750199,10750.199 +13897,2025-03-08T17:19:58.385628-08:00,0.0,10.734084,10734.084 +13898,2025-03-08T17:20:09.128930-08:00,0.0,10.743302,10743.302 +13899,2025-03-08T17:20:19.869933-08:00,0.0,10.741003,10741.003 +13900,2025-03-08T17:20:30.601003-08:00,0.0,10.73107,10731.07 +13901,2025-03-08T17:20:41.348674-08:00,0.0,10.747671,10747.671 +13902,2025-03-08T17:20:52.078188-08:00,0.0,10.729514,10729.514 +13903,2025-03-08T17:21:02.824120-08:00,0.0,10.745932,10745.932 +13904,2025-03-08T17:21:13.553941-08:00,0.0,10.729821,10729.821 +13905,2025-03-08T17:21:24.295933-08:00,0.0,10.741992,10741.992 +13906,2025-03-08T17:21:35.033936-08:00,0.0,10.738003,10738.003 +13907,2025-03-08T17:21:45.769170-08:00,0.0,10.735234,10735.234 +13908,2025-03-08T17:21:56.506147-08:00,0.0,10.736977,10736.977 +13909,2025-03-08T17:22:07.234935-08:00,0.0,10.728788,10728.788 +13910,2025-03-08T17:22:17.972928-08:00,0.0,10.737993,10737.993 +13911,2025-03-08T17:22:28.713934-08:00,0.0,10.741006,10741.006 +13912,2025-03-08T17:22:39.451094-08:00,0.0,10.73716,10737.16 +13913,2025-03-08T17:22:50.183001-08:00,0.0,10.731907,10731.907 +13914,2025-03-08T17:23:00.912142-08:00,0.0,10.729141,10729.141 +13915,2025-03-08T17:23:11.652171-08:00,0.0,10.740029,10740.029 +13916,2025-03-08T17:23:22.385343-08:00,0.0,10.733172,10733.172 +13917,2025-03-08T17:23:33.124091-08:00,0.0,10.738748,10738.748 +13918,2025-03-08T17:23:43.863961-08:00,0.0,10.73987,10739.87 +13919,2025-03-08T17:23:54.597932-08:00,0.0,10.733971,10733.971 +13920,2025-03-08T17:24:05.327103-08:00,0.0,10.729171,10729.171 +13921,2025-03-08T17:24:16.072120-08:00,0.0,10.745017,10745.017 +13922,2025-03-08T17:24:26.801094-08:00,0.0,10.728974,10728.974 +13923,2025-03-08T17:24:37.541960-08:00,0.0,10.740866,10740.866 +13924,2025-03-08T17:24:48.277156-08:00,0.0,10.735196,10735.196 +13925,2025-03-08T17:24:59.015107-08:00,0.0,10.737951,10737.951 +13926,2025-03-08T17:25:09.751438-08:00,0.0,10.736331,10736.331 +13927,2025-03-08T17:25:20.488933-08:00,0.0,10.737495,10737.495 +13928,2025-03-08T17:25:31.223934-08:00,0.0,10.735001,10735.001 +13929,2025-03-08T17:25:41.965933-08:00,0.0,10.741999,10741.999 +13930,2025-03-08T17:25:52.690953-08:00,0.0,10.72502,10725.02 +13931,2025-03-08T17:26:03.435927-08:00,0.0,10.744974,10744.974 +13932,2025-03-08T17:26:14.173004-08:00,0.0,10.737077,10737.077 +13933,2025-03-08T17:26:24.905108-08:00,0.0,10.732104,10732.104 +13934,2025-03-08T17:26:35.645051-08:00,0.0,10.739943,10739.943 +13935,2025-03-08T17:26:46.372136-08:00,0.0,10.727085,10727.085 +13936,2025-03-08T17:26:57.111937-08:00,0.0,10.739801,10739.801 +13937,2025-03-08T17:27:07.842933-08:00,0.0,10.730996,10730.996 +13938,2025-03-08T17:27:18.577182-08:00,0.0,10.734249,10734.249 +13939,2025-03-08T17:27:29.308009-08:00,0.0,10.730827,10730.827 +13940,2025-03-08T17:27:40.046541-08:00,0.0,10.738532,10738.532 +13941,2025-03-08T17:27:50.777007-08:00,0.0,10.730466,10730.466 +13942,2025-03-08T17:28:01.522581-08:00,0.0,10.745574,10745.574 +13943,2025-03-08T17:28:12.252958-08:00,0.0,10.730377,10730.377 +13944,2025-03-08T17:28:22.990139-08:00,0.0,10.737181,10737.181 +13945,2025-03-08T17:28:33.719934-08:00,0.0,10.729795,10729.795 +13946,2025-03-08T17:28:44.457307-08:00,0.0,10.737373,10737.373 +13947,2025-03-08T17:28:55.198860-08:00,0.0,10.741553,10741.553 +13948,2025-03-08T17:29:05.933993-08:00,0.0,10.735133,10735.133 +13949,2025-03-08T17:29:16.672929-08:00,0.0,10.738936,10738.936 +13950,2025-03-08T17:29:27.401006-08:00,0.0,10.728077,10728.077 +13951,2025-03-08T17:29:38.142120-08:00,0.0,10.741114,10741.114 +13952,2025-03-08T17:29:48.879933-08:00,0.0,10.737813,10737.813 +13953,2025-03-08T17:29:59.614079-08:00,0.0,10.734146,10734.146 +13954,2025-03-08T17:30:10.347960-08:00,0.0,10.733881,10733.881 +13955,2025-03-08T17:30:21.090937-08:00,0.0,10.742977,10742.977 +13956,2025-03-08T17:30:31.823224-08:00,0.0,10.732287,10732.287 +13957,2025-03-08T17:30:42.562935-08:00,0.0,10.739711,10739.711 +13958,2025-03-08T17:30:53.295929-08:00,0.0,10.732994,10732.994 +13959,2025-03-08T17:31:04.033934-08:00,0.0,10.738005,10738.005 +13960,2025-03-08T17:31:14.780157-08:00,0.0,10.746223,10746.223 +13961,2025-03-08T17:31:25.513759-08:00,0.0,10.733602,10733.602 +13962,2025-03-08T17:31:36.252967-08:00,0.0,10.739208,10739.208 +13963,2025-03-08T17:31:46.988931-08:00,0.0,10.735964,10735.964 +13964,2025-03-08T17:31:57.733933-08:00,0.0,10.745002,10745.002 +13965,2025-03-08T17:32:08.472933-08:00,0.0,10.739,10739.0 +13966,2025-03-08T17:32:19.207100-08:00,0.0,10.734167,10734.167 +13967,2025-03-08T17:32:29.948135-08:00,0.0,10.741035,10741.035 +13968,2025-03-08T17:32:40.684929-08:00,0.0,10.736794,10736.794 +13969,2025-03-08T17:32:51.425458-08:00,0.0,10.740529,10740.529 +13970,2025-03-08T17:33:02.168274-08:00,0.0,10.742816,10742.816 +13971,2025-03-08T17:33:12.903210-08:00,0.0,10.734936,10734.936 +13972,2025-03-08T17:33:23.637109-08:00,0.0,10.733899,10733.899 +13973,2025-03-08T17:33:34.384114-08:00,0.0,10.747005,10747.005 +13974,2025-03-08T17:33:45.117147-08:00,0.0,10.733033,10733.033 +13975,2025-03-08T17:33:55.858998-08:00,0.0,10.741851,10741.851 +13976,2025-03-08T17:34:06.593238-08:00,0.0,10.73424,10734.24 +13977,2025-03-08T17:34:17.335941-08:00,0.0,10.742703,10742.703 +13978,2025-03-08T17:34:28.072071-08:00,0.0,10.73613,10736.13 +13979,2025-03-08T17:34:38.810960-08:00,0.0,10.738889,10738.889 +13980,2025-03-08T17:34:49.557957-08:00,0.0,10.746997,10746.997 +13981,2025-03-08T17:35:00.292933-08:00,0.0,10.734976,10734.976 +13982,2025-03-08T17:35:11.039015-08:00,0.0,10.746082,10746.082 +13983,2025-03-08T17:35:21.772121-08:00,0.0,10.733106,10733.106 +13984,2025-03-08T17:35:32.513200-08:00,0.0,10.741079,10741.079 +13985,2025-03-08T17:35:43.257333-08:00,0.0,10.744133,10744.133 +13986,2025-03-08T17:35:53.997187-08:00,0.0,10.739854,10739.854 +13987,2025-03-08T17:36:04.735230-08:00,0.0,10.738043,10738.043 +13988,2025-03-08T17:36:15.478931-08:00,0.0,10.743701,10743.701 +13989,2025-03-08T17:36:26.215146-08:00,0.0,10.736215,10736.215 +13990,2025-03-08T17:36:36.951001-08:00,0.0,10.735855,10735.855 +13991,2025-03-08T17:36:47.698936-08:00,0.0,10.747935,10747.935 +13992,2025-03-08T17:36:58.436200-08:00,0.0,10.737264,10737.264 +13993,2025-03-08T17:37:09.167992-08:00,0.0,10.731792,10731.792 +13994,2025-03-08T17:37:19.914003-08:00,0.0,10.746011,10746.011 +13995,2025-03-08T17:37:30.657123-08:00,0.0,10.74312,10743.12 +13996,2025-03-08T17:37:41.396934-08:00,0.0,10.739811,10739.811 +13997,2025-03-08T17:37:52.139964-08:00,0.0,10.74303,10743.03 +13998,2025-03-08T17:38:02.886934-08:00,0.0,10.74697,10746.97 +13999,2025-03-08T17:38:13.621983-08:00,0.0,10.735049,10735.049 +14000,2025-03-08T17:38:24.363115-08:00,0.0,10.741132,10741.132 +14001,2025-03-08T17:38:35.101933-08:00,0.0,10.738818,10738.818 +14002,2025-03-08T17:38:45.845039-08:00,0.0,10.743106,10743.106 +14003,2025-03-08T17:38:56.591651-08:00,0.0,10.746612,10746.612 +14004,2025-03-08T17:39:07.325942-08:00,0.0,10.734291,10734.291 +14005,2025-03-08T17:39:18.069933-08:00,0.0,10.743991,10743.991 +14006,2025-03-08T17:39:28.804083-08:00,0.0,10.73415,10734.15 +14007,2025-03-08T17:39:39.549333-08:00,0.0,10.74525,10745.25 +14008,2025-03-08T17:39:50.289078-08:00,0.0,10.739745,10739.745 +14009,2025-03-08T17:40:01.025424-08:00,0.0,10.736346,10736.346 +14010,2025-03-08T17:40:11.772970-08:00,0.0,10.747546,10747.546 +14011,2025-03-08T17:40:22.506298-08:00,0.0,10.733328,10733.328 +14012,2025-03-08T17:40:33.245113-08:00,0.0,10.738815,10738.815 +14013,2025-03-08T17:40:43.987992-08:00,0.0,10.742879,10742.879 +14014,2025-03-08T17:40:54.729267-08:00,0.0,10.741275,10741.275 +14015,2025-03-08T17:41:05.470427-08:00,0.0,10.74116,10741.16 +14016,2025-03-08T17:41:16.205934-08:00,0.0,10.735507,10735.507 +14017,2025-03-08T17:41:26.949931-08:00,0.0,10.743997,10743.997 +14018,2025-03-08T17:41:37.686001-08:00,0.0,10.73607,10736.07 +14019,2025-03-08T17:41:48.428966-08:00,0.0,10.742965,10742.965 +14020,2025-03-08T17:41:59.167101-08:00,0.0,10.738135,10738.135 +14021,2025-03-08T17:42:09.902110-08:00,0.0,10.735009,10735.009 +14022,2025-03-08T17:42:20.639931-08:00,0.0,10.737821,10737.821 +14023,2025-03-08T17:42:31.373943-08:00,0.0,10.734012,10734.012 +14024,2025-03-08T17:42:42.110116-08:00,0.0,10.736173,10736.173 +14025,2025-03-08T17:42:52.855290-08:00,0.0,10.745174,10745.174 +14026,2025-03-08T17:43:03.589927-08:00,0.0,10.734637,10734.637 +14027,2025-03-08T17:43:14.325958-08:00,0.0,10.736031,10736.031 +14028,2025-03-08T17:43:25.060930-08:00,0.0,10.734972,10734.972 +14029,2025-03-08T17:43:35.791099-08:00,0.0,10.730169,10730.169 +14030,2025-03-08T17:43:46.536043-08:00,0.0,10.744944,10744.944 +14031,2025-03-08T17:43:57.270933-08:00,0.0,10.73489,10734.89 +14032,2025-03-08T17:44:08.009995-08:00,0.0,10.739062,10739.062 +14033,2025-03-08T17:44:18.739116-08:00,0.0,10.729121,10729.121 +14034,2025-03-08T17:44:29.475118-08:00,0.0,10.736002,10736.002 +14035,2025-03-08T17:44:40.217678-08:00,0.0,10.74256,10742.56 +14036,2025-03-08T17:44:50.956931-08:00,0.0,10.739253,10739.253 +14037,2025-03-08T17:45:01.687933-08:00,0.0,10.731002,10731.002 +14038,2025-03-08T17:45:12.426957-08:00,0.0,10.739024,10739.024 +14039,2025-03-08T17:45:23.159267-08:00,0.0,10.73231,10732.31 +14040,2025-03-08T17:45:33.898513-08:00,0.0,10.739246,10739.246 +14041,2025-03-08T17:45:44.640199-08:00,0.0,10.741686,10741.686 +14042,2025-03-08T17:45:55.376933-08:00,0.0,10.736734,10736.734 +14043,2025-03-08T17:46:06.108127-08:00,0.0,10.731194,10731.194 +14044,2025-03-08T17:46:16.846112-08:00,0.0,10.737985,10737.985 +14045,2025-03-08T17:46:27.581933-08:00,0.0,10.735821,10735.821 +14046,2025-03-08T17:46:38.315598-08:00,0.0,10.733665,10733.665 +14047,2025-03-08T17:46:49.051939-08:00,0.0,10.736341,10736.341 +14048,2025-03-08T17:46:59.786131-08:00,0.0,10.734192,10734.192 +14049,2025-03-08T17:47:10.523000-08:00,0.0,10.736869,10736.869 +14050,2025-03-08T17:47:21.254931-08:00,0.0,10.731931,10731.931 +14051,2025-03-08T17:47:31.986146-08:00,0.0,10.731215,10731.215 +14052,2025-03-08T17:47:42.714929-08:00,0.0,10.728783,10728.783 +14053,2025-03-08T17:47:53.449932-08:00,0.0,10.735003,10735.003 +14054,2025-03-08T17:48:04.182144-08:00,0.0,10.732212,10732.212 +14055,2025-03-08T17:48:14.919124-08:00,0.0,10.73698,10736.98 +14056,2025-03-08T17:48:25.650138-08:00,0.0,10.731014,10731.014 +14057,2025-03-08T17:48:36.380102-08:00,0.0,10.729964,10729.964 +14058,2025-03-08T17:48:38.709300-08:00,254.0,2.329198,2329.198 +14059,2025-03-08T17:48:47.110115-08:00,400.0,8.400815,8400.815 +14060,2025-03-08T17:48:57.841928-08:00,229.0,10.731813,10731.813 +14061,2025-03-08T17:49:08.573932-08:00,336.0,10.732004,10732.004 +14062,2025-03-08T17:49:19.316146-08:00,291.0,10.742214,10742.214 +14063,2025-03-08T17:49:30.048107-08:00,409.0,10.731961,10731.961 +14064,2025-03-08T17:49:40.775058-08:00,311.0,10.726951,10726.951 +14065,2025-03-08T17:49:51.508934-08:00,415.0,10.733876,10733.876 +14066,2025-03-08T17:49:54.938117-08:00,0.0,3.429183,3429.183 +14067,2025-03-08T17:50:02.253096-08:00,0.0,7.314979,7314.979 +14068,2025-03-08T17:50:12.977930-08:00,0.0,10.724834,10724.834 +14069,2025-03-08T17:50:23.716771-08:00,0.0,10.738841,10738.841 +14070,2025-03-08T17:50:34.446000-08:00,0.0,10.729229,10729.229 +14071,2025-03-08T17:50:45.185222-08:00,0.0,10.739222,10739.222 +14072,2025-03-08T17:50:55.914119-08:00,0.0,10.728897,10728.897 +14073,2025-03-08T17:51:06.651113-08:00,0.0,10.736994,10736.994 +14074,2025-03-08T17:51:17.391936-08:00,0.0,10.740823,10740.823 +14075,2025-03-08T17:51:28.117122-08:00,0.0,10.725186,10725.186 +14076,2025-03-08T17:51:38.855930-08:00,0.0,10.738808,10738.808 +14077,2025-03-08T17:51:49.588952-08:00,0.0,10.733022,10733.022 +14078,2025-03-08T17:52:00.327070-08:00,0.0,10.738118,10738.118 +14079,2025-03-08T17:52:11.053293-08:00,0.0,10.726223,10726.223 +14080,2025-03-08T17:52:21.792956-08:00,0.0,10.739663,10739.663 +14081,2025-03-08T17:52:32.552405-08:00,0.0,10.759449,10759.449 +14082,2025-03-08T17:52:43.286545-08:00,0.0,10.73414,10734.14 +14083,2025-03-08T17:52:54.028159-08:00,0.0,10.741614,10741.614 +14084,2025-03-08T17:53:04.763363-08:00,0.0,10.735204,10735.204 +14085,2025-03-08T17:53:15.500367-08:00,0.0,10.737004,10737.004 +14086,2025-03-08T17:53:26.236391-08:00,0.0,10.736024,10736.024 +14087,2025-03-08T17:53:36.966365-08:00,0.0,10.729974,10729.974 +14088,2025-03-08T17:53:47.706564-08:00,0.0,10.740199,10740.199 +14089,2025-03-08T17:53:58.442949-08:00,0.0,10.736385,10736.385 +14090,2025-03-08T17:54:09.180366-08:00,0.0,10.737417,10737.417 +14091,2025-03-08T17:54:19.920575-08:00,0.0,10.740209,10740.209 +14092,2025-03-08T17:54:30.660552-08:00,0.0,10.739977,10739.977 +14093,2025-03-08T17:54:41.398727-08:00,0.0,10.738175,10738.175 +14094,2025-03-08T17:54:52.133822-08:00,0.0,10.735095,10735.095 +14095,2025-03-08T17:55:02.874434-08:00,0.0,10.740612,10740.612 +14096,2025-03-08T17:55:13.616427-08:00,0.0,10.741993,10741.993 +14097,2025-03-08T17:55:24.347364-08:00,0.0,10.730937,10730.937 +14098,2025-03-08T17:55:35.094361-08:00,0.0,10.746997,10746.997 +14099,2025-03-08T17:55:45.828617-08:00,0.0,10.734256,10734.256 +14100,2025-03-08T17:55:56.571696-08:00,0.0,10.743079,10743.079 +14101,2025-03-08T17:56:07.315455-08:00,0.0,10.743759,10743.759 +14102,2025-03-08T17:56:18.049575-08:00,0.0,10.73412,10734.12 +14103,2025-03-08T17:56:28.792727-08:00,0.0,10.743152,10743.152 +14104,2025-03-08T17:56:39.535563-08:00,0.0,10.742836,10742.836 +14105,2025-03-08T17:56:50.273363-08:00,0.0,10.7378,10737.8 +14106,2025-03-08T17:57:01.022561-08:00,0.0,10.749198,10749.198 +14107,2025-03-08T17:57:11.759552-08:00,0.0,10.736991,10736.991 +14108,2025-03-08T17:57:22.494365-08:00,0.0,10.734813,10734.813 +14109,2025-03-08T17:57:33.233391-08:00,0.0,10.739026,10739.026 +14110,2025-03-08T17:57:43.979430-08:00,0.0,10.746039,10746.039 +14111,2025-03-08T17:57:54.725556-08:00,0.0,10.746126,10746.126 +14112,2025-03-08T17:58:05.461518-08:00,0.0,10.735962,10735.962 +14113,2025-03-08T17:58:16.213363-08:00,0.0,10.751845,10751.845 +14114,2025-03-08T17:58:26.958737-08:00,0.0,10.745374,10745.374 +14115,2025-03-08T17:58:37.695369-08:00,0.0,10.736632,10736.632 +14116,2025-03-08T17:58:48.437551-08:00,0.0,10.742182,10742.182 +14117,2025-03-08T17:58:59.186540-08:00,0.0,10.748989,10748.989 +14118,2025-03-08T17:59:09.930569-08:00,0.0,10.744029,10744.029 +14119,2025-03-08T17:59:20.677696-08:00,0.0,10.747127,10747.127 +14120,2025-03-08T17:59:31.416390-08:00,0.0,10.738694,10738.694 +14121,2025-03-08T17:59:42.163389-08:00,0.0,10.746999,10746.999 +14122,2025-03-08T17:59:52.911434-08:00,0.0,10.748045,10748.045 +14123,2025-03-08T18:00:03.650436-08:00,0.0,10.739002,10739.002 +14124,2025-03-08T18:00:14.392186-08:00,0.0,10.74175,10741.75 +14125,2025-03-08T18:00:25.146366-08:00,0.0,10.75418,10754.18 +14126,2025-03-08T18:00:46.630612-08:00,0.0,21.484246,21484.246 +14127,2025-03-08T18:00:57.373000-08:00,0.0,10.742388,10742.388 +14128,2025-03-08T18:01:08.123972-08:00,0.0,10.750972,10750.972 +14129,2025-03-08T18:01:18.865612-08:00,0.0,10.74164,10741.64 +14130,2025-03-08T18:01:29.614561-08:00,0.0,10.748949,10748.949 +14131,2025-03-08T18:01:40.350430-08:00,0.0,10.735869,10735.869 +14132,2025-03-08T18:01:51.099364-08:00,0.0,10.748934,10748.934 +14133,2025-03-08T18:02:01.846243-08:00,0.0,10.746879,10746.879 +14134,2025-03-08T18:02:12.588769-08:00,0.0,10.742526,10742.526 +14135,2025-03-08T18:02:23.332732-08:00,0.0,10.743963,10743.963 +14136,2025-03-08T18:02:34.083481-08:00,0.0,10.750749,10750.749 +14137,2025-03-08T18:02:44.830893-08:00,0.0,10.747412,10747.412 +14138,2025-03-08T18:02:55.575638-08:00,0.0,10.744745,10744.745 +14139,2025-03-08T18:03:06.315373-08:00,0.0,10.739735,10739.735 +14140,2025-03-08T18:03:17.063409-08:00,0.0,10.748036,10748.036 +14141,2025-03-08T18:03:27.798364-08:00,0.0,10.734955,10734.955 +14142,2025-03-08T18:03:38.551427-08:00,0.0,10.753063,10753.063 +14143,2025-03-08T18:03:49.289362-08:00,0.0,10.737935,10737.935 +14144,2025-03-08T18:04:00.036374-08:00,0.0,10.747012,10747.012 +14145,2025-03-08T18:04:10.784574-08:00,0.0,10.7482,10748.2 +14146,2025-03-08T18:04:21.526508-08:00,0.0,10.741934,10741.934 +14147,2025-03-08T18:04:32.263365-08:00,0.0,10.736857,10736.857 +14148,2025-03-08T18:04:43.004452-08:00,0.0,10.741087,10741.087 +14149,2025-03-08T18:04:53.749549-08:00,0.0,10.745097,10745.097 +14150,2025-03-08T18:05:04.494357-08:00,0.0,10.744808,10744.808 +14151,2025-03-08T18:05:15.243069-08:00,0.0,10.748712,10748.712 +14152,2025-03-08T18:05:25.978108-08:00,0.0,10.735039,10735.039 +14153,2025-03-08T18:05:36.726366-08:00,0.0,10.748258,10748.258 +14154,2025-03-08T18:05:47.466363-08:00,0.0,10.739997,10739.997 +14155,2025-03-08T18:05:58.215456-08:00,0.0,10.749093,10749.093 +14156,2025-03-08T18:06:08.957367-08:00,0.0,10.741911,10741.911 +14157,2025-03-08T18:06:19.690072-08:00,0.0,10.732705,10732.705 +14158,2025-03-08T18:06:30.435643-08:00,0.0,10.745571,10745.571 +14159,2025-03-08T18:06:41.181489-08:00,0.0,10.745846,10745.846 +14160,2025-03-08T18:06:51.921568-08:00,0.0,10.740079,10740.079 +14161,2025-03-08T18:07:02.668775-08:00,0.0,10.747207,10747.207 +14162,2025-03-08T18:07:13.409367-08:00,0.0,10.740592,10740.592 +14163,2025-03-08T18:07:24.156367-08:00,0.0,10.747,10747.0 +14164,2025-03-08T18:07:34.897528-08:00,0.0,10.741161,10741.161 +14165,2025-03-08T18:07:45.643576-08:00,0.0,10.746048,10746.048 +14166,2025-03-08T18:07:56.383535-08:00,0.0,10.739959,10739.959 +14167,2025-03-08T18:08:07.127362-08:00,0.0,10.743827,10743.827 +14168,2025-03-08T18:08:17.872370-08:00,0.0,10.745008,10745.008 +14169,2025-03-08T18:08:28.615477-08:00,0.0,10.743107,10743.107 +14170,2025-03-08T18:08:39.354765-08:00,0.0,10.739288,10739.288 +14171,2025-03-08T18:08:50.099532-08:00,0.0,10.744767,10744.767 +14172,2025-03-08T18:09:00.839109-08:00,0.0,10.739577,10739.577 +14173,2025-03-08T18:09:11.583388-08:00,0.0,10.744279,10744.279 +14174,2025-03-08T18:09:22.331547-08:00,0.0,10.748159,10748.159 +14175,2025-03-08T18:09:33.081910-08:00,0.0,10.750363,10750.363 +14176,2025-03-08T18:09:43.822427-08:00,0.0,10.740517,10740.517 +14177,2025-03-08T18:09:54.568409-08:00,0.0,10.745982,10745.982 +14178,2025-03-08T18:10:05.310634-08:00,0.0,10.742225,10742.225 +14179,2025-03-08T18:10:16.061407-08:00,0.0,10.750773,10750.773 +14180,2025-03-08T18:10:26.800365-08:00,0.0,10.738958,10738.958 +14181,2025-03-08T18:10:37.542412-08:00,0.0,10.742047,10742.047 +14182,2025-03-08T18:10:48.286558-08:00,0.0,10.744146,10744.146 +14183,2025-03-08T18:10:59.034368-08:00,0.0,10.74781,10747.81 +14184,2025-03-08T18:11:09.780543-08:00,0.0,10.746175,10746.175 +14185,2025-03-08T18:11:20.521983-08:00,0.0,10.74144,10741.44 +14186,2025-03-08T18:11:31.272569-08:00,0.0,10.750586,10750.586 +14187,2025-03-08T18:11:42.013459-08:00,0.0,10.74089,10740.89 +14188,2025-03-08T18:11:52.756573-08:00,0.0,10.743114,10743.114 +14189,2025-03-08T18:12:03.498216-08:00,0.0,10.741643,10741.643 +14190,2025-03-08T18:12:14.250553-08:00,0.0,10.752337,10752.337 +14191,2025-03-08T18:12:24.981367-08:00,0.0,10.730814,10730.814 +14192,2025-03-08T18:12:35.730364-08:00,0.0,10.748997,10748.997 +14193,2025-03-08T18:12:46.477361-08:00,0.0,10.746997,10746.997 +14194,2025-03-08T18:12:57.219400-08:00,0.0,10.742039,10742.039 +14195,2025-03-08T18:13:07.955469-08:00,0.0,10.736069,10736.069 +14196,2025-03-08T18:13:18.705395-08:00,0.0,10.749926,10749.926 +14197,2025-03-08T18:13:29.447378-08:00,0.0,10.741983,10741.983 +14198,2025-03-08T18:13:40.190577-08:00,0.0,10.743199,10743.199 +14199,2025-03-08T18:13:50.937368-08:00,0.0,10.746791,10746.791 +14200,2025-03-08T18:14:01.673576-08:00,0.0,10.736208,10736.208 +14201,2025-03-08T18:14:12.425531-08:00,0.0,10.751955,10751.955 +14202,2025-03-08T18:14:23.167555-08:00,0.0,10.742024,10742.024 +14203,2025-03-08T18:14:33.917678-08:00,0.0,10.750123,10750.123 +14204,2025-03-08T18:14:44.658722-08:00,0.0,10.741044,10741.044 +14205,2025-03-08T18:14:55.402417-08:00,0.0,10.743695,10743.695 +14206,2025-03-08T18:15:06.148567-08:00,0.0,10.74615,10746.15 +14207,2025-03-08T18:15:16.895544-08:00,0.0,10.746977,10746.977 +14208,2025-03-08T18:15:27.640367-08:00,0.0,10.744823,10744.823 +14209,2025-03-08T18:15:38.377463-08:00,0.0,10.737096,10737.096 +14210,2025-03-08T18:15:49.115367-08:00,0.0,10.737904,10737.904 +14211,2025-03-08T18:15:59.863457-08:00,0.0,10.74809,10748.09 +14212,2025-03-08T18:16:10.603428-08:00,0.0,10.739971,10739.971 +14213,2025-03-08T18:16:21.350782-08:00,0.0,10.747354,10747.354 +14214,2025-03-08T18:16:32.083385-08:00,0.0,10.732603,10732.603 +14215,2025-03-08T18:16:42.835560-08:00,0.0,10.752175,10752.175 +14216,2025-03-08T18:16:53.574365-08:00,0.0,10.738805,10738.805 +14217,2025-03-08T18:17:04.305593-08:00,0.0,10.731228,10731.228 +14218,2025-03-08T18:17:15.047379-08:00,0.0,10.741786,10741.786 +14219,2025-03-08T18:17:25.784368-08:00,0.0,10.736989,10736.989 +14220,2025-03-08T18:17:36.524727-08:00,0.0,10.740359,10740.359 +14221,2025-03-08T18:17:47.273531-08:00,0.0,10.748804,10748.804 +14222,2025-03-08T18:17:58.013834-08:00,0.0,10.740303,10740.303 +14223,2025-03-08T18:18:08.746439-08:00,0.0,10.732605,10732.605 +14224,2025-03-08T18:18:19.487578-08:00,0.0,10.741139,10741.139 +14225,2025-03-08T18:18:30.230563-08:00,0.0,10.742985,10742.985 +14226,2025-03-08T18:18:40.972572-08:00,0.0,10.742009,10742.009 +14227,2025-03-08T18:18:51.717362-08:00,0.0,10.74479,10744.79 +14228,2025-03-08T18:19:02.456543-08:00,0.0,10.739181,10739.181 +14229,2025-03-08T18:19:13.197540-08:00,0.0,10.740997,10740.997 +14230,2025-03-08T18:19:23.942385-08:00,0.0,10.744845,10744.845 +14231,2025-03-08T18:19:34.689568-08:00,0.0,10.747183,10747.183 +14232,2025-03-08T18:19:45.433440-08:00,0.0,10.743872,10743.872 +14233,2025-03-08T18:19:56.171782-08:00,0.0,10.738342,10738.342 +14234,2025-03-08T18:20:06.910361-08:00,0.0,10.738579,10738.579 +14235,2025-03-08T18:20:17.651359-08:00,0.0,10.740998,10740.998 +14236,2025-03-08T18:20:28.394465-08:00,0.0,10.743106,10743.106 +14237,2025-03-08T18:20:39.136546-08:00,0.0,10.742081,10742.081 +14238,2025-03-08T18:20:49.883508-08:00,0.0,10.746962,10746.962 +14239,2025-03-08T18:21:00.622568-08:00,0.0,10.73906,10739.06 +14240,2025-03-08T18:21:11.366387-08:00,0.0,10.743819,10743.819 +14241,2025-03-08T18:21:22.102360-08:00,0.0,10.735973,10735.973 +14242,2025-03-08T18:21:32.851577-08:00,0.0,10.749217,10749.217 +14243,2025-03-08T18:21:43.596392-08:00,0.0,10.744815,10744.815 +14244,2025-03-08T18:21:54.339534-08:00,0.0,10.743142,10743.142 +14245,2025-03-08T18:22:05.079369-08:00,0.0,10.739835,10739.835 +14246,2025-03-08T18:22:15.817412-08:00,0.0,10.738043,10738.043 +14247,2025-03-08T18:22:26.566642-08:00,0.0,10.74923,10749.23 +14248,2025-03-08T18:22:37.308496-08:00,0.0,10.741854,10741.854 +14249,2025-03-08T18:22:48.056426-08:00,0.0,10.74793,10747.93 +14250,2025-03-08T18:22:58.799549-08:00,0.0,10.743123,10743.123 +14251,2025-03-08T18:23:09.545583-08:00,0.0,10.746034,10746.034 +14252,2025-03-08T18:23:20.283524-08:00,0.0,10.737941,10737.941 +14253,2025-03-08T18:23:31.030364-08:00,0.0,10.74684,10746.84 +14254,2025-03-08T18:23:41.768831-08:00,0.0,10.738467,10738.467 +14255,2025-03-08T18:23:52.509362-08:00,0.0,10.740531,10740.531 +14256,2025-03-08T18:24:03.255367-08:00,0.0,10.746005,10746.005 +14257,2025-03-08T18:24:13.992402-08:00,0.0,10.737035,10737.035 +14258,2025-03-08T18:24:24.744833-08:00,0.0,10.752431,10752.431 +14259,2025-03-08T18:24:35.482200-08:00,0.0,10.737367,10737.367 +14260,2025-03-08T18:24:46.224609-08:00,0.0,10.742409,10742.409 +14261,2025-03-08T18:24:56.964394-08:00,0.0,10.739785,10739.785 +14262,2025-03-08T18:25:07.717658-08:00,0.0,10.753264,10753.264 +14263,2025-03-08T18:25:18.463082-08:00,0.0,10.745424,10745.424 +14264,2025-03-08T18:25:29.206598-08:00,0.0,10.743516,10743.516 +14265,2025-03-08T18:25:39.949945-08:00,0.0,10.743347,10743.347 +14266,2025-03-08T18:25:50.697538-08:00,0.0,10.747593,10747.593 +14267,2025-03-08T18:26:01.436369-08:00,0.0,10.738831,10738.831 +14268,2025-03-08T18:26:12.176369-08:00,0.0,10.74,10740.0 +14269,2025-03-08T18:26:22.919433-08:00,0.0,10.743064,10743.064 +14270,2025-03-08T18:26:33.657819-08:00,0.0,10.738386,10738.386 +14271,2025-03-08T18:26:44.409648-08:00,0.0,10.751829,10751.829 +14272,2025-03-08T18:26:55.150335-08:00,0.0,10.740687,10740.687 +14273,2025-03-08T18:27:05.890569-08:00,0.0,10.740234,10740.234 +14274,2025-03-08T18:27:16.631360-08:00,0.0,10.740791,10740.791 +14275,2025-03-08T18:27:27.383164-08:00,0.0,10.751804,10751.804 +14276,2025-03-08T18:27:38.123365-08:00,0.0,10.740201,10740.201 +14277,2025-03-08T18:27:48.867359-08:00,0.0,10.743994,10743.994 +14278,2025-03-08T18:27:59.605363-08:00,0.0,10.738004,10738.004 +14279,2025-03-08T18:28:10.353499-08:00,0.0,10.748136,10748.136 +14280,2025-03-08T18:28:21.088395-08:00,0.0,10.734896,10734.896 +14281,2025-03-08T18:28:31.835370-08:00,0.0,10.746975,10746.975 +14282,2025-03-08T18:28:42.587396-08:00,0.0,10.752026,10752.026 +14283,2025-03-08T18:28:53.328402-08:00,0.0,10.741006,10741.006 +14284,2025-03-08T18:29:04.075404-08:00,0.0,10.747002,10747.002 +14285,2025-03-08T18:29:14.811258-08:00,0.0,10.735854,10735.854 +14286,2025-03-08T18:29:25.557559-08:00,0.0,10.746301,10746.301 +14287,2025-03-08T18:29:36.297612-08:00,0.0,10.740053,10740.053 +14288,2025-03-08T18:29:47.043525-08:00,0.0,10.745913,10745.913 +14289,2025-03-08T18:29:57.781613-08:00,0.0,10.738088,10738.088 +14290,2025-03-08T18:30:08.533576-08:00,0.0,10.751963,10751.963 +14291,2025-03-08T18:30:19.270376-08:00,0.0,10.7368,10736.8 +14292,2025-03-08T18:30:30.014445-08:00,0.0,10.744069,10744.069 +14293,2025-03-08T18:30:40.765365-08:00,0.0,10.75092,10750.92 +14294,2025-03-08T18:30:51.509360-08:00,0.0,10.743995,10743.995 +14295,2025-03-08T18:31:02.246369-08:00,0.0,10.737009,10737.009 +14296,2025-03-08T18:31:12.991441-08:00,0.0,10.745072,10745.072 +14297,2025-03-08T18:31:23.739191-08:00,0.0,10.74775,10747.75 +14298,2025-03-08T18:31:34.486387-08:00,0.0,10.747196,10747.196 +14299,2025-03-08T18:31:45.232541-08:00,0.0,10.746154,10746.154 +14300,2025-03-08T18:31:55.974583-08:00,0.0,10.742042,10742.042 +14301,2025-03-08T18:32:06.718596-08:00,0.0,10.744013,10744.013 +14302,2025-03-08T18:32:17.469731-08:00,0.0,10.751135,10751.135 +14303,2025-03-08T18:32:28.213149-08:00,0.0,10.743418,10743.418 +14304,2025-03-08T18:32:38.951362-08:00,0.0,10.738213,10738.213 +14305,2025-03-08T18:32:49.691729-08:00,0.0,10.740367,10740.367 +14306,2025-03-08T18:33:00.438361-08:00,0.0,10.746632,10746.632 +14307,2025-03-08T18:33:11.182368-08:00,0.0,10.744007,10744.007 +14308,2025-03-08T18:33:21.934361-08:00,0.0,10.751993,10751.993 +14309,2025-03-08T18:33:32.678601-08:00,0.0,10.74424,10744.24 +14310,2025-03-08T18:33:43.421367-08:00,0.0,10.742766,10742.766 +14311,2025-03-08T18:33:54.159580-08:00,0.0,10.738213,10738.213 +14312,2025-03-08T18:34:04.909370-08:00,0.0,10.74979,10749.79 +14313,2025-03-08T18:34:15.649543-08:00,0.0,10.740173,10740.173 +14314,2025-03-08T18:34:26.395515-08:00,0.0,10.745972,10745.972 +14315,2025-03-08T18:34:37.138554-08:00,0.0,10.743039,10743.039 +14316,2025-03-08T18:34:47.884564-08:00,0.0,10.74601,10746.01 +14317,2025-03-08T18:34:58.630258-08:00,0.0,10.745694,10745.694 +14318,2025-03-08T18:35:09.365354-08:00,0.0,10.735096,10735.096 +14319,2025-03-08T18:35:20.111584-08:00,0.0,10.74623,10746.23 +14320,2025-03-08T18:35:30.861683-08:00,0.0,10.750099,10750.099 +14321,2025-03-08T18:35:41.594392-08:00,0.0,10.732709,10732.709 +14322,2025-03-08T18:35:52.340445-08:00,0.0,10.746053,10746.053 +14323,2025-03-08T18:36:03.083366-08:00,0.0,10.742921,10742.921 +14324,2025-03-08T18:36:13.829586-08:00,0.0,10.74622,10746.22 +14325,2025-03-08T18:36:24.572443-08:00,0.0,10.742857,10742.857 +14326,2025-03-08T18:36:35.324793-08:00,0.0,10.75235,10752.35 +14327,2025-03-08T18:36:46.058553-08:00,0.0,10.73376,10733.76 +14328,2025-03-08T18:36:56.808545-08:00,0.0,10.749992,10749.992 +14329,2025-03-08T18:37:07.553546-08:00,0.0,10.745001,10745.001 +14330,2025-03-08T18:37:18.290424-08:00,0.0,10.736878,10736.878 +14331,2025-03-08T18:37:29.045173-08:00,0.0,10.754749,10754.749 +14332,2025-03-08T18:37:39.790864-08:00,0.0,10.745691,10745.691 +14333,2025-03-08T18:37:50.524566-08:00,0.0,10.733702,10733.702 +14334,2025-03-08T18:38:01.278366-08:00,0.0,10.7538,10753.8 +14335,2025-03-08T18:38:12.019365-08:00,0.0,10.740999,10740.999 +14336,2025-03-08T18:38:22.768741-08:00,0.0,10.749376,10749.376 +14337,2025-03-08T18:38:33.504892-08:00,0.0,10.736151,10736.151 +14338,2025-03-08T18:38:44.251917-08:00,0.0,10.747025,10747.025 +14339,2025-03-08T18:38:54.999394-08:00,0.0,10.747477,10747.477 +14340,2025-03-08T18:39:05.740581-08:00,0.0,10.741187,10741.187 +14341,2025-03-08T18:39:16.481586-08:00,0.0,10.741005,10741.005 +14342,2025-03-08T18:39:27.231467-08:00,0.0,10.749881,10749.881 +14343,2025-03-08T18:39:37.971535-08:00,0.0,10.740068,10740.068 +14344,2025-03-08T18:39:48.713560-08:00,0.0,10.742025,10742.025 +14345,2025-03-08T18:39:59.463564-08:00,0.0,10.750004,10750.004 +14346,2025-03-08T18:40:10.209546-08:00,0.0,10.745982,10745.982 +14347,2025-03-08T18:40:20.952399-08:00,0.0,10.742853,10742.853 +14348,2025-03-08T18:40:31.697944-08:00,0.0,10.745545,10745.545 +14349,2025-03-08T18:40:42.432366-08:00,0.0,10.734422,10734.422 +14350,2025-03-08T18:40:53.182364-08:00,0.0,10.749998,10749.998 +14351,2025-03-08T18:41:03.917731-08:00,0.0,10.735367,10735.367 +14352,2025-03-08T18:41:14.664399-08:00,0.0,10.746668,10746.668 +14353,2025-03-08T18:41:25.405754-08:00,0.0,10.741355,10741.355 +14354,2025-03-08T18:41:36.148912-08:00,0.0,10.743158,10743.158 +14355,2025-03-08T18:41:46.882405-08:00,0.0,10.733493,10733.493 +14356,2025-03-08T18:41:57.629367-08:00,0.0,10.746962,10746.962 +14357,2025-03-08T18:42:08.366391-08:00,0.0,10.737024,10737.024 +14358,2025-03-08T18:42:19.116565-08:00,0.0,10.750174,10750.174 +14359,2025-03-08T18:42:29.850367-08:00,0.0,10.733802,10733.802 +14360,2025-03-08T18:42:40.587662-08:00,0.0,10.737295,10737.295 +14361,2025-03-08T18:42:51.335363-08:00,0.0,10.747701,10747.701 +14362,2025-03-08T18:43:02.074687-08:00,0.0,10.739324,10739.324 +14363,2025-03-08T18:43:12.821536-08:00,0.0,10.746849,10746.849 +14364,2025-03-08T18:43:23.558524-08:00,0.0,10.736988,10736.988 +14365,2025-03-08T18:43:34.298570-08:00,0.0,10.740046,10740.046 +14366,2025-03-08T18:43:45.043367-08:00,0.0,10.744797,10744.797 +14367,2025-03-08T18:43:55.789365-08:00,0.0,10.745998,10745.998 +14368,2025-03-08T18:44:06.521602-08:00,0.0,10.732237,10732.237 +14369,2025-03-08T18:44:17.270368-08:00,0.0,10.748766,10748.766 +14370,2025-03-08T18:44:28.012770-08:00,0.0,10.742402,10742.402 +14371,2025-03-08T18:44:38.755852-08:00,0.0,10.743082,10743.082 +14372,2025-03-08T18:44:49.503564-08:00,0.0,10.747712,10747.712 +14373,2025-03-08T18:45:00.244548-08:00,0.0,10.740984,10740.984 +14374,2025-03-08T18:45:10.997585-08:00,0.0,10.753037,10753.037 +14375,2025-03-08T18:45:21.742464-08:00,0.0,10.744879,10744.879 +14376,2025-03-08T18:45:32.475365-08:00,0.0,10.732901,10732.901 +14377,2025-03-08T18:45:43.220360-08:00,0.0,10.744995,10744.995 +14378,2025-03-08T18:45:53.964366-08:00,0.0,10.744006,10744.006 +14379,2025-03-08T18:46:04.701364-08:00,0.0,10.736998,10736.998 +14380,2025-03-08T18:46:15.439572-08:00,0.0,10.738208,10738.208 +14381,2025-03-08T18:46:26.183367-08:00,0.0,10.743795,10743.795 +14382,2025-03-08T18:46:36.921530-08:00,0.0,10.738163,10738.163 +14383,2025-03-08T18:46:47.654556-08:00,0.0,10.733026,10733.026 +14384,2025-03-08T18:46:58.394995-08:00,0.0,10.740439,10740.439 +14385,2025-03-08T18:47:09.137560-08:00,0.0,10.742565,10742.565 +14386,2025-03-08T18:47:19.878516-08:00,0.0,10.740956,10740.956 +14387,2025-03-08T18:47:30.613848-08:00,0.0,10.735332,10735.332 +14388,2025-03-08T18:47:41.355560-08:00,0.0,10.741712,10741.712 +14389,2025-03-08T18:47:52.094568-08:00,0.0,10.739008,10739.008 +14390,2025-03-08T18:48:02.836363-08:00,0.0,10.741795,10741.795 +14391,2025-03-08T18:48:13.577406-08:00,0.0,10.741043,10741.043 +14392,2025-03-08T18:48:24.304365-08:00,0.0,10.726959,10726.959 +14393,2025-03-08T18:48:35.049418-08:00,0.0,10.745053,10745.053 +14394,2025-03-08T18:48:45.781391-08:00,0.0,10.731973,10731.973 +14395,2025-03-08T18:48:56.525361-08:00,0.0,10.74397,10743.97 +14396,2025-03-08T18:49:07.262371-08:00,0.0,10.73701,10737.01 +14397,2025-03-08T18:49:18.007363-08:00,0.0,10.744992,10744.992 +14398,2025-03-08T18:49:28.738570-08:00,0.0,10.731207,10731.207 +14399,2025-03-08T18:49:39.478546-08:00,0.0,10.739976,10739.976 +14400,2025-03-08T18:49:50.230300-08:00,0.0,10.751754,10751.754 +14401,2025-03-08T18:50:00.962363-08:00,0.0,10.732063,10732.063 +14402,2025-03-08T18:50:11.701552-08:00,0.0,10.739189,10739.189 +14403,2025-03-08T18:50:22.445466-08:00,0.0,10.743914,10743.914 +14404,2025-03-08T18:50:33.183430-08:00,0.0,10.737964,10737.964 +14405,2025-03-08T18:50:43.923363-08:00,0.0,10.739933,10739.933 +14406,2025-03-08T18:50:54.669439-08:00,0.0,10.746076,10746.076 +14407,2025-03-08T18:51:05.405761-08:00,0.0,10.736322,10736.322 +14408,2025-03-08T18:51:16.145412-08:00,0.0,10.739651,10739.651 +14409,2025-03-08T18:51:26.892385-08:00,0.0,10.746973,10746.973 +14410,2025-03-08T18:51:37.638071-08:00,0.0,10.745686,10745.686 +14411,2025-03-08T18:51:48.377363-08:00,0.0,10.739292,10739.292 +14412,2025-03-08T18:51:59.108670-08:00,0.0,10.731307,10731.307 +14413,2025-03-08T18:52:09.852554-08:00,0.0,10.743884,10743.884 +14414,2025-03-08T18:52:20.587036-08:00,0.0,10.734482,10734.482 +14415,2025-03-08T18:52:31.356402-08:00,0.0,10.769366,10769.366 +14416,2025-03-08T18:52:42.096568-08:00,0.0,10.740166,10740.166 +14417,2025-03-08T18:52:52.833197-08:00,0.0,10.736629,10736.629 +14418,2025-03-08T18:53:03.570232-08:00,0.0,10.737035,10737.035 +14419,2025-03-08T18:53:14.314402-08:00,0.0,10.74417,10744.17 +14420,2025-03-08T18:53:25.053198-08:00,0.0,10.738796,10738.796 +14421,2025-03-08T18:53:35.791370-08:00,0.0,10.738172,10738.172 +14422,2025-03-08T18:53:46.540380-08:00,0.0,10.74901,10749.01 +14423,2025-03-08T18:53:57.278219-08:00,0.0,10.737839,10737.839 +14424,2025-03-08T18:54:08.023487-08:00,0.0,10.745268,10745.268 +14425,2025-03-08T18:54:18.768224-08:00,0.0,10.744737,10744.737 +14426,2025-03-08T18:54:29.510195-08:00,0.0,10.741971,10741.971 +14427,2025-03-08T18:54:40.254209-08:00,0.0,10.744014,10744.014 +14428,2025-03-08T18:54:50.986390-08:00,0.0,10.732181,10732.181 +14429,2025-03-08T18:55:01.732616-08:00,0.0,10.746226,10746.226 +14430,2025-03-08T18:55:12.465876-08:00,0.0,10.73326,10733.26 +14431,2025-03-08T18:55:19.715175-08:00,0.0,7.249299,7249.299 +14432,2025-03-08T18:55:23.207360-08:00,0.0,3.492185,3492.185 +14433,2025-03-08T18:55:33.936197-08:00,0.0,10.728837,10728.837 +14434,2025-03-08T18:55:44.678196-08:00,0.0,10.741999,10741.999 +14435,2025-03-08T18:55:55.415213-08:00,0.0,10.737017,10737.017 +14436,2025-03-08T18:56:06.155367-08:00,0.0,10.740154,10740.154 +14437,2025-03-08T18:56:16.893219-08:00,0.0,10.737852,10737.852 +14438,2025-03-08T18:56:27.633265-08:00,0.0,10.740046,10740.046 +14439,2025-03-08T18:56:38.373414-08:00,0.0,10.740149,10740.149 +14440,2025-03-08T18:56:49.108386-08:00,0.0,10.734972,10734.972 +14441,2025-03-08T18:56:59.846176-08:00,0.0,10.73779,10737.79 +14442,2025-03-08T18:57:10.582194-08:00,0.0,10.736018,10736.018 +14443,2025-03-08T18:57:21.322197-08:00,0.0,10.740003,10740.003 +14444,2025-03-08T18:57:32.060219-08:00,0.0,10.738022,10738.022 +14445,2025-03-08T18:57:42.799264-08:00,0.0,10.739045,10739.045 +14446,2025-03-08T18:57:53.543197-08:00,0.0,10.743933,10743.933 +14447,2025-03-08T18:58:04.286198-08:00,0.0,10.743001,10743.001 +14448,2025-03-08T18:58:15.022591-08:00,0.0,10.736393,10736.393 +14449,2025-03-08T18:58:25.761368-08:00,0.0,10.738777,10738.777 +14450,2025-03-08T18:58:36.499408-08:00,0.0,10.73804,10738.04 +14451,2025-03-08T18:58:47.240285-08:00,0.0,10.740877,10740.877 +14452,2025-03-08T18:58:57.986195-08:00,0.0,10.74591,10745.91 +14453,2025-03-08T18:59:08.720380-08:00,0.0,10.734185,10734.185 +14454,2025-03-08T18:59:19.464831-08:00,0.0,10.744451,10744.451 +14455,2025-03-08T18:59:30.198195-08:00,0.0,10.733364,10733.364 +14456,2025-03-08T18:59:40.942194-08:00,0.0,10.743999,10743.999 +14457,2025-03-08T18:59:51.675197-08:00,0.0,10.733003,10733.003 +14458,2025-03-08T19:00:02.411192-08:00,0.0,10.735995,10735.995 +14459,2025-03-08T19:00:13.154530-08:00,0.0,10.743338,10743.338 +14460,2025-03-08T19:00:23.888214-08:00,0.0,10.733684,10733.684 +14461,2025-03-08T19:00:34.629525-08:00,0.0,10.741311,10741.311 +14462,2025-03-08T19:00:45.371963-08:00,0.0,10.742438,10742.438 +14463,2025-03-08T19:00:56.106256-08:00,0.0,10.734293,10734.293 +14464,2025-03-08T19:01:06.844433-08:00,0.0,10.738177,10738.177 +14465,2025-03-08T19:01:17.581378-08:00,0.0,10.736945,10736.945 +14466,2025-03-08T19:01:28.328551-08:00,0.0,10.747173,10747.173 +14467,2025-03-08T19:01:39.062194-08:00,0.0,10.733643,10733.643 +14468,2025-03-08T19:01:49.799587-08:00,0.0,10.737393,10737.393 +14469,2025-03-08T19:02:00.530197-08:00,0.0,10.73061,10730.61 +14470,2025-03-08T19:02:11.274491-08:00,0.0,10.744294,10744.294 +14471,2025-03-08T19:02:22.007448-08:00,0.0,10.732957,10732.957 +14472,2025-03-08T19:02:30.820713-08:00,0.0,8.813265,8813.265 +14473,2025-03-08T19:02:32.755387-08:00,0.0,1.934674,1934.674 +14474,2025-03-08T19:02:43.496194-08:00,0.0,10.740807,10740.807 +14475,2025-03-08T19:02:54.228194-08:00,0.0,10.732,10732.0 +14476,2025-03-08T19:03:04.966382-08:00,0.0,10.738188,10738.188 +14477,2025-03-08T19:03:15.709384-08:00,0.0,10.743002,10743.002 +14478,2025-03-08T19:03:26.446663-08:00,0.0,10.737279,10737.279 +14479,2025-03-08T19:03:37.178194-08:00,0.0,10.731531,10731.531 +14480,2025-03-08T19:03:47.916401-08:00,0.0,10.738207,10738.207 +14481,2025-03-08T19:03:58.649225-08:00,0.0,10.732824,10732.824 +14482,2025-03-08T19:04:09.387596-08:00,0.0,10.738371,10738.371 +14483,2025-03-08T19:04:20.122313-08:00,0.0,10.734717,10734.717 +14484,2025-03-08T19:04:30.862235-08:00,0.0,10.739922,10739.922 +14485,2025-03-08T19:04:41.597195-08:00,0.0,10.73496,10734.96 +14486,2025-03-08T19:04:52.331329-08:00,0.0,10.734134,10734.134 +14487,2025-03-08T19:05:03.061194-08:00,0.0,10.729865,10729.865 +14488,2025-03-08T19:05:13.796912-08:00,0.0,10.735718,10735.718 +14489,2025-03-08T19:05:24.533197-08:00,0.0,10.736285,10736.285 +14490,2025-03-08T19:05:35.267369-08:00,0.0,10.734172,10734.172 +14491,2025-03-08T19:05:46.005828-08:00,0.0,10.738459,10738.459 +14492,2025-03-08T19:05:56.738190-08:00,0.0,10.732362,10732.362 +14493,2025-03-08T19:06:07.478195-08:00,0.0,10.740005,10740.005 +14494,2025-03-08T19:06:18.214418-08:00,0.0,10.736223,10736.223 +14495,2025-03-08T19:06:28.950603-08:00,0.0,10.736185,10736.185 +14496,2025-03-08T19:06:38.626583-08:00,0.0,9.67598,9675.98 +14497,2025-03-08T19:06:39.679195-08:00,0.0,1.052612,1052.612 +14498,2025-03-08T19:06:50.414401-08:00,0.0,10.735206,10735.206 +14499,2025-03-08T19:07:01.147708-08:00,0.0,10.733307,10733.307 +14500,2025-03-08T19:07:11.883600-08:00,0.0,10.735892,10735.892 +14501,2025-03-08T19:07:22.629223-08:00,0.0,10.745623,10745.623 +14502,2025-03-08T19:07:33.358623-08:00,0.0,10.7294,10729.4 +14503,2025-03-08T19:07:44.100263-08:00,0.0,10.74164,10741.64 +14504,2025-03-08T19:07:54.836422-08:00,0.0,10.736159,10736.159 +14505,2025-03-08T19:08:05.562254-08:00,0.0,10.725832,10725.832 +14506,2025-03-08T19:08:16.296872-08:00,0.0,10.734618,10734.618 +14507,2025-03-08T19:08:27.032192-08:00,0.0,10.73532,10735.32 +14508,2025-03-08T19:08:37.776845-08:00,0.0,10.744653,10744.653 +14509,2025-03-08T19:08:48.511024-08:00,0.0,10.734179,10734.179 +14510,2025-03-08T19:08:59.244222-08:00,0.0,10.733198,10733.198 +14511,2025-03-08T19:09:09.992197-08:00,0.0,10.747975,10747.975 +14512,2025-03-08T19:09:20.724203-08:00,0.0,10.732006,10732.006 +14513,2025-03-08T19:09:31.463426-08:00,0.0,10.739223,10739.223 +14514,2025-03-08T19:09:42.202376-08:00,0.0,10.73895,10738.95 +14515,2025-03-08T19:09:52.935475-08:00,0.0,10.733099,10733.099 +14516,2025-03-08T19:10:03.679200-08:00,0.0,10.743725,10743.725 +14517,2025-03-08T19:10:14.413195-08:00,0.0,10.733995,10733.995 +14518,2025-03-08T19:10:25.151274-08:00,419.0,10.738079,10738.079 +14519,2025-03-08T19:10:35.879517-08:00,342.0,10.728243,10728.243 +14520,2025-03-08T19:10:46.620270-08:00,445.0,10.740753,10740.753 +14521,2025-03-08T19:10:57.353364-08:00,355.0,10.733094,10733.094 +14522,2025-03-08T19:11:08.091379-08:00,272.0,10.738015,10738.015 +14523,2025-03-08T19:11:18.823464-08:00,289.0,10.732085,10732.085 +14524,2025-03-08T19:11:29.557196-08:00,350.0,10.733732,10733.732 +14525,2025-03-08T19:11:40.284408-08:00,435.0,10.727212,10727.212 +14526,2025-03-08T19:11:51.018432-08:00,426.0,10.734024,10734.024 +14527,2025-03-08T19:11:54.215406-08:00,0.0,3.196974,3196.974 +14528,2025-03-08T19:12:01.756222-08:00,0.0,7.540816,7540.816 +14529,2025-03-08T19:12:12.487198-08:00,0.0,10.730976,10730.976 +14530,2025-03-08T19:12:23.221389-08:00,0.0,10.734191,10734.191 +14531,2025-03-08T19:12:33.960377-08:00,0.0,10.738988,10738.988 +14532,2025-03-08T19:12:44.687403-08:00,0.0,10.727026,10727.026 +14533,2025-03-08T19:12:55.424196-08:00,0.0,10.736793,10736.793 +14534,2025-03-08T19:13:06.154566-08:00,0.0,10.73037,10730.37 +14535,2025-03-08T19:13:16.882194-08:00,0.0,10.727628,10727.628 +14536,2025-03-08T19:13:27.616458-08:00,0.0,10.734264,10734.264 +14537,2025-03-08T19:13:38.353734-08:00,0.0,10.737276,10737.276 +14538,2025-03-08T19:13:49.090570-08:00,0.0,10.736836,10736.836 +14539,2025-03-08T19:13:59.819257-08:00,0.0,10.728687,10728.687 +14540,2025-03-08T19:14:10.555401-08:00,0.0,10.736144,10736.144 +14541,2025-03-08T19:14:21.291192-08:00,0.0,10.735791,10735.791 +14542,2025-03-08T19:14:32.020425-08:00,0.0,10.729233,10729.233 +14543,2025-03-08T19:14:42.750191-08:00,0.0,10.729766,10729.766 +14544,2025-03-08T19:14:53.484603-08:00,0.0,10.734412,10734.412 +14545,2025-03-08T19:15:04.220374-08:00,0.0,10.735771,10735.771 +14546,2025-03-08T19:15:14.962663-08:00,0.0,10.742289,10742.289 +14547,2025-03-08T19:15:25.697195-08:00,0.0,10.734532,10734.532 +14548,2025-03-08T19:15:35.936491-08:00,0.0,10.239296,10239.296 +14549,2025-03-08T19:15:36.428441-08:00,0.0,0.49195,491.95 +14550,2025-03-08T19:15:47.164287-08:00,0.0,10.735846,10735.846 +14551,2025-03-08T19:15:57.907386-08:00,0.0,10.743099,10743.099 +14552,2025-03-08T19:16:08.642218-08:00,0.0,10.734832,10734.832 +14553,2025-03-08T19:16:19.368284-08:00,0.0,10.726066,10726.066 +14554,2025-03-08T19:16:30.105385-08:00,0.0,10.737101,10737.101 +14555,2025-03-08T19:16:40.846392-08:00,0.0,10.741007,10741.007 +14556,2025-03-08T19:16:51.584197-08:00,0.0,10.737805,10737.805 +14557,2025-03-08T19:17:02.318194-08:00,0.0,10.733997,10733.997 +14558,2025-03-08T19:17:13.052194-08:00,0.0,10.734,10734.0 +14559,2025-03-08T19:17:23.794198-08:00,0.0,10.742004,10742.004 +14560,2025-03-08T19:17:34.527403-08:00,0.0,10.733205,10733.205 +14561,2025-03-08T19:17:45.267315-08:00,0.0,10.739912,10739.912 +14562,2025-03-08T19:17:55.998463-08:00,0.0,10.731148,10731.148 +14563,2025-03-08T19:18:06.735429-08:00,0.0,10.736966,10736.966 +14564,2025-03-08T19:18:17.475044-08:00,0.0,10.739615,10739.615 +14565,2025-03-08T19:18:28.202196-08:00,0.0,10.727152,10727.152 +14566,2025-03-08T19:18:38.942194-08:00,0.0,10.739998,10739.998 +14567,2025-03-08T19:18:39.065178-08:00,0.0,0.122984,122.984 +14568,2025-03-08T19:18:49.678192-08:00,0.0,10.613014,10613.014 +14569,2025-03-08T19:19:00.413669-08:00,0.0,10.735477,10735.477 +14570,2025-03-08T19:19:11.149379-08:00,0.0,10.73571,10735.71 +14571,2025-03-08T19:19:21.888193-08:00,0.0,10.738814,10738.814 +14572,2025-03-08T19:19:32.617250-08:00,0.0,10.729057,10729.057 +14573,2025-03-08T19:19:43.356396-08:00,0.0,10.739146,10739.146 +14574,2025-03-08T19:19:54.093370-08:00,0.0,10.736974,10736.974 +14575,2025-03-08T19:20:04.820218-08:00,0.0,10.726848,10726.848 +14576,2025-03-08T19:20:15.552197-08:00,0.0,10.731979,10731.979 +14577,2025-03-08T19:20:26.288359-08:00,0.0,10.736162,10736.162 +14578,2025-03-08T19:20:37.015202-08:00,0.0,10.726843,10726.843 +14579,2025-03-08T19:20:47.748198-08:00,0.0,10.732996,10732.996 +14580,2025-03-08T19:20:58.486691-08:00,0.0,10.738493,10738.493 +14581,2025-03-08T19:21:09.219976-08:00,258.0,10.733285,10733.285 +14582,2025-03-08T19:21:19.954196-08:00,351.0,10.73422,10734.22 +14583,2025-03-08T19:21:30.686198-08:00,435.0,10.732002,10732.002 +14584,2025-03-08T19:21:41.425448-08:00,434.0,10.73925,10739.25 +14585,2025-03-08T19:21:52.149194-08:00,322.0,10.723746,10723.746 +14586,2025-03-08T19:22:02.886198-08:00,430.0,10.737004,10737.004 +14587,2025-03-08T19:22:13.617444-08:00,406.0,10.731246,10731.246 +14588,2025-03-08T19:22:24.362900-08:00,396.0,10.745456,10745.456 +14589,2025-03-08T19:22:35.094194-08:00,418.0,10.731294,10731.294 +14590,2025-03-08T19:22:45.823434-08:00,427.0,10.72924,10729.24 +14591,2025-03-08T19:22:56.563440-08:00,412.0,10.740006,10740.006 +14592,2025-03-08T19:23:07.290856-08:00,335.0,10.727416,10727.416 +14593,2025-03-08T19:23:18.032220-08:00,318.0,10.741364,10741.364 +14594,2025-03-08T19:23:28.762198-08:00,373.0,10.729978,10729.978 +14595,2025-03-08T19:23:39.506229-08:00,389.0,10.744031,10744.031 +14596,2025-03-08T19:23:50.240444-08:00,293.0,10.734215,10734.215 +14597,2025-03-08T19:24:00.966988-08:00,393.0,10.726544,10726.544 +14598,2025-03-08T19:24:11.699268-08:00,371.0,10.73228,10732.28 +14599,2025-03-08T19:24:22.437198-08:00,399.0,10.73793,10737.93 +14600,2025-03-08T19:24:33.166474-08:00,397.0,10.729276,10729.276 +14601,2025-03-08T19:24:43.906193-08:00,406.0,10.739719,10739.719 +14602,2025-03-08T19:24:54.639192-08:00,390.0,10.732999,10732.999 +14603,2025-03-08T19:25:05.371407-08:00,289.0,10.732215,10732.215 +14604,2025-03-08T19:25:16.112454-08:00,417.0,10.741047,10741.047 +14605,2025-03-08T19:25:26.849402-08:00,353.0,10.736948,10736.948 +14606,2025-03-08T19:25:37.583197-08:00,219.0,10.733795,10733.795 +14607,2025-03-08T19:25:48.311592-08:00,315.0,10.728395,10728.395 +14608,2025-03-08T19:25:59.052363-08:00,414.0,10.740771,10740.771 +14609,2025-03-08T19:26:09.789432-08:00,419.0,10.737069,10737.069 +14610,2025-03-08T19:26:20.528260-08:00,350.0,10.738828,10738.828 +14611,2025-03-08T19:26:31.264193-08:00,374.0,10.735933,10735.933 +14612,2025-03-08T19:26:41.998418-08:00,399.0,10.734225,10734.225 +14613,2025-03-08T19:26:52.739446-08:00,413.0,10.741028,10741.028 +14614,2025-03-08T19:27:03.477402-08:00,423.0,10.737956,10737.956 +14615,2025-03-08T19:27:14.211295-08:00,176.0,10.733893,10733.893 +14616,2025-03-08T19:27:24.945479-08:00,341.0,10.734184,10734.184 +14617,2025-03-08T19:27:35.675368-08:00,304.0,10.729889,10729.889 +14618,2025-03-08T19:27:46.414450-08:00,400.0,10.739082,10739.082 +14619,2025-03-08T19:27:57.148196-08:00,384.0,10.733746,10733.746 +14620,2025-03-08T19:28:07.881604-08:00,317.0,10.733408,10733.408 +14621,2025-03-08T19:28:18.623423-08:00,385.0,10.741819,10741.819 +14622,2025-03-08T19:28:29.354403-08:00,389.0,10.73098,10730.98 +14623,2025-03-08T19:28:40.094197-08:00,367.0,10.739794,10739.794 +14624,2025-03-08T19:28:50.828337-08:00,416.0,10.73414,10734.14 +14625,2025-03-08T19:29:01.566643-08:00,388.0,10.738306,10738.306 +14626,2025-03-08T19:29:12.303377-08:00,407.0,10.736734,10736.734 +14627,2025-03-08T19:29:23.034197-08:00,395.0,10.73082,10730.82 +14628,2025-03-08T19:29:33.767267-08:00,421.0,10.73307,10733.07 +14629,2025-03-08T19:29:44.511692-08:00,297.0,10.744425,10744.425 +14630,2025-03-08T19:29:55.247988-08:00,259.0,10.736296,10736.296 +14631,2025-03-08T19:30:05.978196-08:00,396.0,10.730208,10730.208 +14632,2025-03-08T19:30:16.714378-08:00,366.0,10.736182,10736.182 +14633,2025-03-08T19:30:27.447195-08:00,403.0,10.732817,10732.817 +14634,2025-03-08T19:30:38.177067-08:00,314.0,10.729872,10729.872 +14635,2025-03-08T19:30:48.911276-08:00,392.0,10.734209,10734.209 +14636,2025-03-08T19:30:59.646201-08:00,416.0,10.734925,10734.925 +14637,2025-03-08T19:31:10.385548-08:00,408.0,10.739347,10739.347 +14638,2025-03-08T19:31:19.413595-08:00,0.0,9.028047,9028.047 +14639,2025-03-08T19:31:21.117406-08:00,0.0,1.703811,1703.811 +14640,2025-03-08T19:31:31.859419-08:00,0.0,10.742013,10742.013 +14641,2025-03-08T19:31:42.593267-08:00,0.0,10.733848,10733.848 +14642,2025-03-08T19:31:53.326304-08:00,0.0,10.733037,10733.037 +14643,2025-03-08T19:32:04.062390-08:00,0.0,10.736086,10736.086 +14644,2025-03-08T19:32:14.795567-08:00,0.0,10.733177,10733.177 +14645,2025-03-08T19:32:25.534194-08:00,0.0,10.738627,10738.627 +14646,2025-03-08T19:32:36.267198-08:00,0.0,10.733004,10733.004 +14647,2025-03-08T19:32:47.005409-08:00,0.0,10.738211,10738.211 +14648,2025-03-08T19:32:57.744380-08:00,0.0,10.738971,10738.971 +14649,2025-03-08T19:33:08.476617-08:00,0.0,10.732237,10732.237 +14650,2025-03-08T19:33:19.217197-08:00,0.0,10.74058,10740.58 +14651,2025-03-08T19:33:29.955194-08:00,0.0,10.737997,10737.997 +14652,2025-03-08T19:33:40.693403-08:00,0.0,10.738209,10738.209 +14653,2025-03-08T19:33:51.423219-08:00,0.0,10.729816,10729.816 +14654,2025-03-08T19:34:02.156198-08:00,0.0,10.732979,10732.979 +14655,2025-03-08T19:34:12.890451-08:00,0.0,10.734253,10734.253 +14656,2025-03-08T19:34:23.625416-08:00,0.0,10.734965,10734.965 +14657,2025-03-08T19:34:34.361191-08:00,0.0,10.735775,10735.775 +14658,2025-03-08T19:34:45.107226-08:00,0.0,10.746035,10746.035 +14659,2025-03-08T19:34:55.836336-08:00,0.0,10.72911,10729.11 +14660,2025-03-08T19:35:06.574195-08:00,0.0,10.737859,10737.859 +14661,2025-03-08T19:35:17.320273-08:00,0.0,10.746078,10746.078 +14662,2025-03-08T19:35:28.055331-08:00,0.0,10.735058,10735.058 +14663,2025-03-08T19:35:38.795227-08:00,0.0,10.739896,10739.896 +14664,2025-03-08T19:35:49.524201-08:00,0.0,10.728974,10728.974 +14665,2025-03-08T19:36:00.270353-08:00,0.0,10.746152,10746.152 +14666,2025-03-08T19:36:11.003780-08:00,0.0,10.733427,10733.427 +14667,2025-03-08T19:36:21.745381-08:00,0.0,10.741601,10741.601 +14668,2025-03-08T19:36:32.475257-08:00,0.0,10.729876,10729.876 +14669,2025-03-08T19:36:43.221194-08:00,0.0,10.745937,10745.937 +14670,2025-03-08T19:36:53.965401-08:00,0.0,10.744207,10744.207 +14671,2025-03-08T19:37:04.694231-08:00,0.0,10.72883,10728.83 +14672,2025-03-08T19:37:15.446259-08:00,0.0,10.752028,10752.028 +14673,2025-03-08T19:37:26.178374-08:00,0.0,10.732115,10732.115 +14674,2025-03-08T19:37:36.917758-08:00,0.0,10.739384,10739.384 +14675,2025-03-08T19:37:47.659197-08:00,0.0,10.741439,10741.439 +14676,2025-03-08T19:37:58.398224-08:00,0.0,10.739027,10739.027 +14677,2025-03-08T19:38:09.139259-08:00,0.0,10.741035,10741.035 +14678,2025-03-08T19:38:19.881198-08:00,0.0,10.741939,10741.939 +14679,2025-03-08T19:38:30.620651-08:00,0.0,10.739453,10739.453 +14680,2025-03-08T19:38:41.366690-08:00,0.0,10.746039,10746.039 +14681,2025-03-08T19:38:52.111912-08:00,0.0,10.745222,10745.222 +14682,2025-03-08T19:39:02.845194-08:00,0.0,10.733282,10733.282 +14683,2025-03-08T19:39:13.587344-08:00,0.0,10.74215,10742.15 +14684,2025-03-08T19:39:24.331225-08:00,0.0,10.743881,10743.881 +14685,2025-03-08T19:39:35.067258-08:00,0.0,10.736033,10736.033 +14686,2025-03-08T19:39:45.806202-08:00,0.0,10.738944,10738.944 +14687,2025-03-08T19:39:56.553198-08:00,0.0,10.746996,10746.996 +14688,2025-03-08T19:40:07.288714-08:00,0.0,10.735516,10735.516 +14689,2025-03-08T19:40:18.025710-08:00,0.0,10.736996,10736.996 +14690,2025-03-08T19:40:28.762197-08:00,0.0,10.736487,10736.487 +14691,2025-03-08T19:40:39.502201-08:00,0.0,10.740004,10740.004 +14692,2025-03-08T19:40:50.238606-08:00,0.0,10.736405,10736.405 +14693,2025-03-08T19:41:00.979376-08:00,0.0,10.74077,10740.77 +14694,2025-03-08T19:41:11.708271-08:00,0.0,10.728895,10728.895 +14695,2025-03-08T19:41:22.456194-08:00,0.0,10.747923,10747.923 +14696,2025-03-08T19:41:33.193424-08:00,0.0,10.73723,10737.23 +14697,2025-03-08T19:41:43.926198-08:00,0.0,10.732774,10732.774 +14698,2025-03-08T19:41:54.666942-08:00,0.0,10.740744,10740.744 +14699,2025-03-08T19:42:05.407386-08:00,0.0,10.740444,10740.444 +14700,2025-03-08T19:42:16.135398-08:00,0.0,10.728012,10728.012 +14701,2025-03-08T19:42:26.872293-08:00,0.0,10.736895,10736.895 +14702,2025-03-08T19:42:37.608661-08:00,0.0,10.736368,10736.368 +14703,2025-03-08T19:42:48.356397-08:00,0.0,10.747736,10747.736 +14704,2025-03-08T19:42:59.089433-08:00,0.0,10.733036,10733.036 +14705,2025-03-08T19:43:09.834316-08:00,0.0,10.744883,10744.883 +14706,2025-03-08T19:43:20.562458-08:00,0.0,10.728142,10728.142 +14707,2025-03-08T19:43:31.309939-08:00,0.0,10.747481,10747.481 +14708,2025-03-08T19:43:42.045490-08:00,0.0,10.735551,10735.551 +14709,2025-03-08T19:43:52.776287-08:00,0.0,10.730797,10730.797 +14710,2025-03-08T19:44:03.509215-08:00,0.0,10.732928,10732.928 +14711,2025-03-08T19:44:14.250489-08:00,0.0,10.741274,10741.274 +14712,2025-03-08T19:44:24.986691-08:00,0.0,10.736202,10736.202 +14713,2025-03-08T19:44:35.726952-08:00,0.0,10.740261,10740.261 +14714,2025-03-08T19:44:46.457194-08:00,0.0,10.730242,10730.242 +14715,2025-03-08T19:44:57.198194-08:00,0.0,10.741,10741.0 +14716,2025-03-08T19:45:07.929197-08:00,0.0,10.731003,10731.003 +14717,2025-03-08T19:45:18.661586-08:00,0.0,10.732389,10732.389 +14718,2025-03-08T19:45:29.401224-08:00,0.0,10.739638,10739.638 +14719,2025-03-08T19:45:40.138577-08:00,0.0,10.737353,10737.353 +14720,2025-03-08T19:45:50.870328-08:00,0.0,10.731751,10731.751 +14721,2025-03-08T19:46:01.603367-08:00,0.0,10.733039,10733.039 +14722,2025-03-08T19:46:12.340195-08:00,0.0,10.736828,10736.828 +14723,2025-03-08T19:46:23.080223-08:00,0.0,10.740028,10740.028 +14724,2025-03-08T19:46:33.815194-08:00,0.0,10.734971,10734.971 +14725,2025-03-08T19:46:44.552199-08:00,0.0,10.737005,10737.005 +14726,2025-03-08T19:46:55.294208-08:00,0.0,10.742009,10742.009 +14727,2025-03-08T19:47:06.024299-08:00,0.0,10.730091,10730.091 +14728,2025-03-08T19:47:16.758746-08:00,0.0,10.734447,10734.447 +14729,2025-03-08T19:47:27.501194-08:00,0.0,10.742448,10742.448 +14730,2025-03-08T19:47:38.244319-08:00,0.0,10.743125,10743.125 +14731,2025-03-08T19:47:48.985391-08:00,0.0,10.741072,10741.072 +14732,2025-03-08T19:47:59.723372-08:00,0.0,10.737981,10737.981 +14733,2025-03-08T19:48:10.459194-08:00,0.0,10.735822,10735.822 +14734,2025-03-08T19:48:21.202194-08:00,0.0,10.743,10743.0 +14735,2025-03-08T19:48:31.937265-08:00,0.0,10.735071,10735.071 +14736,2025-03-08T19:48:32.787140-08:00,0.0,0.849875,849.875 +14737,2025-03-08T19:48:42.689194-08:00,0.0,9.902054,9902.054 +14738,2025-03-08T19:48:53.420197-08:00,0.0,10.731003,10731.003 +14739,2025-03-08T19:49:04.163198-08:00,0.0,10.743001,10743.001 +14740,2025-03-08T19:49:14.901393-08:00,0.0,10.738195,10738.195 +14741,2025-03-08T19:49:25.640252-08:00,0.0,10.738859,10738.859 +14742,2025-03-08T19:49:36.387549-08:00,0.0,10.747297,10747.297 +14743,2025-03-08T19:49:47.123477-08:00,0.0,10.735928,10735.928 +14744,2025-03-08T19:49:57.861490-08:00,0.0,10.738013,10738.013 +14745,2025-03-08T19:50:08.601501-08:00,0.0,10.740011,10740.011 +14746,2025-03-08T19:50:19.337568-08:00,0.0,10.736067,10736.067 +14747,2025-03-08T19:50:30.084385-08:00,0.0,10.746817,10746.817 +14748,2025-03-08T19:50:40.819397-08:00,0.0,10.735012,10735.012 +14749,2025-03-08T19:50:51.561247-08:00,0.0,10.74185,10741.85 +14750,2025-03-08T19:51:02.296499-08:00,0.0,10.735252,10735.252 +14751,2025-03-08T19:51:13.032306-08:00,0.0,10.735807,10735.807 +14752,2025-03-08T19:51:23.765497-08:00,0.0,10.733191,10733.191 +14753,2025-03-08T19:51:34.500196-08:00,0.0,10.734699,10734.699 +14754,2025-03-08T19:51:45.241461-08:00,0.0,10.741265,10741.265 +14755,2025-03-08T19:51:55.985425-08:00,0.0,10.743964,10743.964 +14756,2025-03-08T19:52:06.724407-08:00,0.0,10.738982,10738.982 +14757,2025-03-08T19:52:17.466373-08:00,0.0,10.741966,10741.966 +14758,2025-03-08T19:52:28.222321-08:00,0.0,10.755948,10755.948 +14759,2025-03-08T19:52:38.964733-08:00,0.0,10.742412,10742.412 +14760,2025-03-08T19:52:49.700763-08:00,0.0,10.73603,10736.03 +14761,2025-03-08T19:53:00.441810-08:00,0.0,10.741047,10741.047 +14762,2025-03-08T19:53:11.176732-08:00,0.0,10.734922,10734.922 +14763,2025-03-08T19:53:21.921964-08:00,0.0,10.745232,10745.232 +14764,2025-03-08T19:53:32.659555-08:00,0.0,10.737591,10737.591 +14765,2025-03-08T19:53:43.392971-08:00,0.0,10.733416,10733.416 +14766,2025-03-08T19:53:54.137734-08:00,0.0,10.744763,10744.763 +14767,2025-03-08T19:54:04.872948-08:00,0.0,10.735214,10735.214 +14768,2025-03-08T19:54:15.612921-08:00,0.0,10.739973,10739.973 +14769,2025-03-08T19:54:26.348125-08:00,0.0,10.735204,10735.204 +14770,2025-03-08T19:54:37.083734-08:00,0.0,10.735609,10735.609 +14771,2025-03-08T19:54:47.824878-08:00,0.0,10.741144,10741.144 +14772,2025-03-08T19:54:58.560737-08:00,0.0,10.735859,10735.859 +14773,2025-03-08T19:55:09.296757-08:00,0.0,10.73602,10736.02 +14774,2025-03-08T19:55:20.042878-08:00,0.0,10.746121,10746.121 +14775,2025-03-08T19:55:30.769733-08:00,0.0,10.726855,10726.855 +14776,2025-03-08T19:55:41.514764-08:00,0.0,10.745031,10745.031 +14777,2025-03-08T19:55:52.241912-08:00,0.0,10.727148,10727.148 +14778,2025-03-08T19:56:02.989025-08:00,0.0,10.747113,10747.113 +14779,2025-03-08T19:56:13.723960-08:00,0.0,10.734935,10734.935 +14780,2025-03-08T19:56:24.458737-08:00,0.0,10.734777,10734.777 +14781,2025-03-08T19:56:35.197494-08:00,0.0,10.738757,10738.757 +14782,2025-03-08T19:56:45.929928-08:00,0.0,10.732434,10732.434 +14783,2025-03-08T19:56:56.666210-08:00,0.0,10.736282,10736.282 +14784,2025-03-08T19:57:07.399792-08:00,0.0,10.733582,10733.582 +14785,2025-03-08T19:57:18.131735-08:00,0.0,10.731943,10731.943 +14786,2025-03-08T19:57:28.873737-08:00,0.0,10.742002,10742.002 +14787,2025-03-08T19:57:39.607782-08:00,0.0,10.734045,10734.045 +14788,2025-03-08T19:57:50.335731-08:00,0.0,10.727949,10727.949 +14789,2025-03-08T19:58:01.069944-08:00,0.0,10.734213,10734.213 +14790,2025-03-08T19:58:11.813871-08:00,0.0,10.743927,10743.927 +14791,2025-03-08T19:58:22.544083-08:00,0.0,10.730212,10730.212 +14792,2025-03-08T19:58:33.276763-08:00,0.0,10.73268,10732.68 +14793,2025-03-08T19:58:44.016735-08:00,0.0,10.739972,10739.972 +14794,2025-03-08T19:58:54.747738-08:00,0.0,10.731003,10731.003 +14795,2025-03-08T19:59:05.486193-08:00,0.0,10.738455,10738.455 +14796,2025-03-08T19:59:16.222608-08:00,0.0,10.736415,10736.415 +14797,2025-03-08T19:59:26.960800-08:00,0.0,10.738192,10738.192 +14798,2025-03-08T19:59:37.694733-08:00,0.0,10.733933,10733.933 +14799,2025-03-08T19:59:48.424963-08:00,0.0,10.73023,10730.23 +14800,2025-03-08T19:59:59.154076-08:00,0.0,10.729113,10729.113 +14801,2025-03-08T20:00:09.891758-08:00,0.0,10.737682,10737.682 +14802,2025-03-08T20:00:20.630742-08:00,0.0,10.738984,10738.984 +14803,2025-03-08T20:00:31.362954-08:00,0.0,10.732212,10732.212 +14804,2025-03-08T20:00:42.098427-08:00,0.0,10.735473,10735.473 +14805,2025-03-08T20:00:52.836736-08:00,0.0,10.738309,10738.309 +14806,2025-03-08T20:01:03.574500-08:00,0.0,10.737764,10737.764 +14807,2025-03-08T20:01:14.303930-08:00,0.0,10.72943,10729.43 +14808,2025-03-08T20:01:25.049019-08:00,0.0,10.745089,10745.089 +14809,2025-03-08T20:01:35.775817-08:00,0.0,10.726798,10726.798 +14810,2025-03-08T20:01:46.518796-08:00,0.0,10.742979,10742.979 +14811,2025-03-08T20:01:57.253515-08:00,0.0,10.734719,10734.719 +14812,2025-03-08T20:02:07.990921-08:00,0.0,10.737406,10737.406 +14813,2025-03-08T20:02:18.725979-08:00,0.0,10.735058,10735.058 +14814,2025-03-08T20:02:29.458734-08:00,0.0,10.732755,10732.755 +14815,2025-03-08T20:02:40.191737-08:00,0.0,10.733003,10733.003 +14816,2025-03-08T20:02:50.930737-08:00,0.0,10.739,10739.0 +14817,2025-03-08T20:03:01.663584-08:00,0.0,10.732847,10732.847 +14818,2025-03-08T20:03:12.401770-08:00,0.0,10.738186,10738.186 +14819,2025-03-08T20:03:23.135739-08:00,0.0,10.733969,10733.969 +14820,2025-03-08T20:03:33.869373-08:00,0.0,10.733634,10733.634 +14821,2025-03-08T20:03:44.599735-08:00,0.0,10.730362,10730.362 +14822,2025-03-08T20:03:55.334095-08:00,0.0,10.73436,10734.36 +14823,2025-03-08T20:04:06.076890-08:00,0.0,10.742795,10742.795 +14824,2025-03-08T20:04:16.807951-08:00,0.0,10.731061,10731.061 +14825,2025-03-08T20:04:27.543921-08:00,0.0,10.73597,10735.97 +14826,2025-03-08T20:04:38.272944-08:00,0.0,10.729023,10729.023 +14827,2025-03-08T20:04:49.013900-08:00,0.0,10.740956,10740.956 +14828,2025-03-08T20:04:59.751147-08:00,0.0,10.737247,10737.247 +14829,2025-03-08T20:05:10.484932-08:00,0.0,10.733785,10733.785 +14830,2025-03-08T20:05:21.219935-08:00,0.0,10.735003,10735.003 +14831,2025-03-08T20:05:31.954759-08:00,0.0,10.734824,10734.824 +14832,2025-03-08T20:05:42.684103-08:00,0.0,10.729344,10729.344 +14833,2025-03-08T20:05:53.418957-08:00,0.0,10.734854,10734.854 +14834,2025-03-08T20:06:04.160815-08:00,0.0,10.741858,10741.858 +14835,2025-03-08T20:06:14.892740-08:00,0.0,10.731925,10731.925 +14836,2025-03-08T20:06:25.631827-08:00,0.0,10.739087,10739.087 +14837,2025-03-08T20:06:36.375945-08:00,0.0,10.744118,10744.118 +14838,2025-03-08T20:06:47.112074-08:00,0.0,10.736129,10736.129 +14839,2025-03-08T20:06:57.843734-08:00,0.0,10.73166,10731.66 +14840,2025-03-08T20:07:08.582167-08:00,0.0,10.738433,10738.433 +14841,2025-03-08T20:07:19.316738-08:00,0.0,10.734571,10734.571 +14842,2025-03-08T20:07:30.054111-08:00,0.0,10.737373,10737.373 +14843,2025-03-08T20:07:40.787888-08:00,0.0,10.733777,10733.777 +14844,2025-03-08T20:07:51.524015-08:00,0.0,10.736127,10736.127 +14845,2025-03-08T20:08:02.258739-08:00,0.0,10.734724,10734.724 +14846,2025-03-08T20:08:12.996373-08:00,0.0,10.737634,10737.634 +14847,2025-03-08T20:08:23.733004-08:00,0.0,10.736631,10736.631 +14848,2025-03-08T20:08:34.462736-08:00,0.0,10.729732,10729.732 +14849,2025-03-08T20:08:45.205880-08:00,0.0,10.743144,10743.144 +14850,2025-03-08T20:08:55.942948-08:00,0.0,10.737068,10737.068 +14851,2025-03-08T20:09:06.683737-08:00,0.0,10.740789,10740.789 +14852,2025-03-08T20:09:17.418765-08:00,0.0,10.735028,10735.028 +14853,2025-03-08T20:09:28.148736-08:00,0.0,10.729971,10729.971 +14854,2025-03-08T20:09:38.883065-08:00,0.0,10.734329,10734.329 +14855,2025-03-08T20:09:49.622739-08:00,0.0,10.739674,10739.674 +14856,2025-03-08T20:10:00.356721-08:00,0.0,10.733982,10733.982 +14857,2025-03-08T20:10:11.091734-08:00,0.0,10.735013,10735.013 +14858,2025-03-08T20:10:21.829938-08:00,0.0,10.738204,10738.204 +14859,2025-03-08T20:10:32.565990-08:00,0.0,10.736052,10736.052 +14860,2025-03-08T20:10:43.297027-08:00,0.0,10.731037,10731.037 +14861,2025-03-08T20:10:54.027734-08:00,0.0,10.730707,10730.707 +14862,2025-03-08T20:11:04.764813-08:00,0.0,10.737079,10737.079 +14863,2025-03-08T20:11:15.500925-08:00,0.0,10.736112,10736.112 +14864,2025-03-08T20:11:26.227734-08:00,0.0,10.726809,10726.809 +14865,2025-03-08T20:11:36.965758-08:00,0.0,10.738024,10738.024 +14866,2025-03-08T20:11:47.695737-08:00,0.0,10.729979,10729.979 +14867,2025-03-08T20:11:58.435124-08:00,0.0,10.739387,10739.387 +14868,2025-03-08T20:12:09.171926-08:00,0.0,10.736802,10736.802 +14869,2025-03-08T20:12:19.907982-08:00,0.0,10.736056,10736.056 +14870,2025-03-08T20:12:30.644802-08:00,0.0,10.73682,10736.82 +14871,2025-03-08T20:12:41.380189-08:00,0.0,10.735387,10735.387 +14872,2025-03-08T20:12:52.120919-08:00,0.0,10.74073,10740.73 +14873,2025-03-08T20:13:02.849799-08:00,0.0,10.72888,10728.88 +14874,2025-03-08T20:13:13.577729-08:00,0.0,10.72793,10727.93 +14875,2025-03-08T20:13:24.311290-08:00,0.0,10.733561,10733.561 +14876,2025-03-08T20:13:35.047908-08:00,0.0,10.736618,10736.618 +14877,2025-03-08T20:13:45.783736-08:00,0.0,10.735828,10735.828 +14878,2025-03-08T20:13:56.513924-08:00,0.0,10.730188,10730.188 +14879,2025-03-08T20:14:07.249910-08:00,0.0,10.735986,10735.986 +14880,2025-03-08T20:14:17.979938-08:00,0.0,10.730028,10730.028 +14881,2025-03-08T20:14:28.712736-08:00,0.0,10.732798,10732.798 +14882,2025-03-08T20:14:39.444889-08:00,0.0,10.732153,10732.153 +14883,2025-03-08T20:14:50.184136-08:00,0.0,10.739247,10739.247 +14884,2025-03-08T20:15:00.919941-08:00,0.0,10.735805,10735.805 +14885,2025-03-08T20:15:11.649735-08:00,0.0,10.729794,10729.794 +14886,2025-03-08T20:15:22.383475-08:00,0.0,10.73374,10733.74 +14887,2025-03-08T20:15:33.117732-08:00,0.0,10.734257,10734.257 +14888,2025-03-08T20:15:43.852737-08:00,0.0,10.735005,10735.005 +14889,2025-03-08T20:15:54.584003-08:00,0.0,10.731266,10731.266 +14890,2025-03-08T20:16:05.318917-08:00,0.0,10.734914,10734.914 +14891,2025-03-08T20:16:16.054105-08:00,0.0,10.735188,10735.188 +14892,2025-03-08T20:16:26.782802-08:00,0.0,10.728697,10728.697 +14893,2025-03-08T20:16:37.513452-08:00,0.0,10.73065,10730.65 +14894,2025-03-08T20:16:48.245729-08:00,0.0,10.732277,10732.277 +14895,2025-03-08T20:16:58.976737-08:00,0.0,10.731008,10731.008 +14896,2025-03-08T20:17:09.698899-08:00,0.0,10.722162,10722.162 +14897,2025-03-08T20:17:20.433733-08:00,0.0,10.734834,10734.834 +14898,2025-03-08T20:17:31.159921-08:00,0.0,10.726188,10726.188 +14899,2025-03-08T20:17:41.896254-08:00,0.0,10.736333,10736.333 +14900,2025-03-08T20:17:52.625729-08:00,0.0,10.729475,10729.475 +14901,2025-03-08T20:18:03.360972-08:00,0.0,10.735243,10735.243 +14902,2025-03-08T20:18:14.084107-08:00,0.0,10.723135,10723.135 +14903,2025-03-08T20:18:24.816738-08:00,0.0,10.732631,10732.631 +14904,2025-03-08T20:18:35.552741-08:00,0.0,10.736003,10736.003 +14905,2025-03-08T20:18:46.285922-08:00,0.0,10.733181,10733.181 +14906,2025-03-08T20:18:57.011940-08:00,0.0,10.726018,10726.018 +14907,2025-03-08T20:19:07.741878-08:00,0.0,10.729938,10729.938 +14908,2025-03-08T20:19:18.475811-08:00,0.0,10.733933,10733.933 +14909,2025-03-08T20:19:29.209222-08:00,0.0,10.733411,10733.411 +14910,2025-03-08T20:19:39.945738-08:00,0.0,10.736516,10736.516 +14911,2025-03-08T20:19:50.668895-08:00,0.0,10.723157,10723.157 +14912,2025-03-08T20:20:01.409279-08:00,0.0,10.740384,10740.384 +14913,2025-03-08T20:20:12.130935-08:00,0.0,10.721656,10721.656 +14914,2025-03-08T20:20:22.862732-08:00,0.0,10.731797,10731.797 +14915,2025-03-08T20:20:33.597904-08:00,0.0,10.735172,10735.172 +14916,2025-03-08T20:20:44.332786-08:00,0.0,10.734882,10734.882 +14917,2025-03-08T20:20:55.055853-08:00,0.0,10.723067,10723.067 +14918,2025-03-08T20:21:05.795936-08:00,0.0,10.740083,10740.083 +14919,2025-03-08T20:21:16.519735-08:00,0.0,10.723799,10723.799 +14920,2025-03-08T20:21:27.258977-08:00,0.0,10.739242,10739.242 +14921,2025-03-08T20:21:38.000848-08:00,0.0,10.741871,10741.871 +14922,2025-03-08T20:21:48.733049-08:00,0.0,10.732201,10732.201 +14923,2025-03-08T20:21:59.462629-08:00,0.0,10.72958,10729.58 +14924,2025-03-08T20:22:10.201984-08:00,0.0,10.739355,10739.355 +14925,2025-03-08T20:22:20.934741-08:00,0.0,10.732757,10732.757 +14926,2025-03-08T20:22:31.672313-08:00,0.0,10.737572,10737.572 +14927,2025-03-08T20:22:42.409929-08:00,0.0,10.737616,10737.616 +14928,2025-03-08T20:22:53.139090-08:00,0.0,10.729161,10729.161 +14929,2025-03-08T20:23:03.876734-08:00,0.0,10.737644,10737.644 +14930,2025-03-08T20:23:14.607847-08:00,0.0,10.731113,10731.113 +14931,2025-03-08T20:23:25.343832-08:00,0.0,10.735985,10735.985 +14932,2025-03-08T20:23:36.070738-08:00,0.0,10.726906,10726.906 +14933,2025-03-08T20:23:46.803911-08:00,0.0,10.733173,10733.173 +14934,2025-03-08T20:23:57.547557-08:00,0.0,10.743646,10743.646 +14935,2025-03-08T20:24:08.280934-08:00,0.0,10.733377,10733.377 +14936,2025-03-08T20:24:19.007284-08:00,0.0,10.72635,10726.35 +14937,2025-03-08T20:24:29.748773-08:00,0.0,10.741489,10741.489 +14938,2025-03-08T20:24:40.474760-08:00,0.0,10.725987,10725.987 +14939,2025-03-08T20:24:51.210022-08:00,0.0,10.735262,10735.262 +14940,2025-03-08T20:25:01.948767-08:00,0.0,10.738745,10738.745 +14941,2025-03-08T20:25:12.677705-08:00,0.0,10.728938,10728.938 +14942,2025-03-08T20:25:23.411841-08:00,0.0,10.734136,10734.136 +14943,2025-03-08T20:25:34.149966-08:00,0.0,10.738125,10738.125 +14944,2025-03-08T20:25:44.876737-08:00,0.0,10.726771,10726.771 +14945,2025-03-08T20:25:55.618778-08:00,0.0,10.742041,10742.041 +14946,2025-03-08T20:26:06.350783-08:00,0.0,10.732005,10732.005 +14947,2025-03-08T20:26:17.077944-08:00,0.0,10.727161,10727.161 +14948,2025-03-08T20:26:27.820096-08:00,0.0,10.742152,10742.152 +14949,2025-03-08T20:26:38.555729-08:00,0.0,10.735633,10735.633 +14950,2025-03-08T20:26:49.287734-08:00,0.0,10.732005,10732.005 +14951,2025-03-08T20:27:00.024943-08:00,0.0,10.737209,10737.209 +14952,2025-03-08T20:27:10.754740-08:00,0.0,10.729797,10729.797 +14953,2025-03-08T20:27:21.491128-08:00,0.0,10.736388,10736.388 +14954,2025-03-08T20:27:32.232034-08:00,0.0,10.740906,10740.906 +14955,2025-03-08T20:27:42.966938-08:00,0.0,10.734904,10734.904 +14956,2025-03-08T20:27:53.693946-08:00,0.0,10.727008,10727.008 +14957,2025-03-08T20:28:04.428908-08:00,0.0,10.734962,10734.962 +14958,2025-03-08T20:28:15.163783-08:00,0.0,10.734875,10734.875 +14959,2025-03-08T20:28:25.893805-08:00,0.0,10.730022,10730.022 +14960,2025-03-08T20:28:36.631811-08:00,0.0,10.738006,10738.006 +14961,2025-03-08T20:28:47.360761-08:00,0.0,10.72895,10728.95 +14962,2025-03-08T20:28:58.092941-08:00,0.0,10.73218,10732.18 +14963,2025-03-08T20:29:08.829737-08:00,0.0,10.736796,10736.796 +14964,2025-03-08T20:29:19.558920-08:00,0.0,10.729183,10729.183 +14965,2025-03-08T20:29:30.299731-08:00,0.0,10.740811,10740.811 +14966,2025-03-08T20:29:41.028802-08:00,0.0,10.729071,10729.071 +14967,2025-03-08T20:29:51.761737-08:00,0.0,10.732935,10732.935 +14968,2025-03-08T20:30:02.492860-08:00,0.0,10.731123,10731.123 +14969,2025-03-08T20:30:13.235853-08:00,0.0,10.742993,10742.993 +14970,2025-03-08T20:30:23.963794-08:00,0.0,10.727941,10727.941 +14971,2025-03-08T20:30:34.696210-08:00,0.0,10.732416,10732.416 +14972,2025-03-08T20:30:45.435024-08:00,0.0,10.738814,10738.814 +14973,2025-03-08T20:30:56.167068-08:00,0.0,10.732044,10732.044 +14974,2025-03-08T20:31:06.907738-08:00,0.0,10.74067,10740.67 +14975,2025-03-08T20:31:17.638766-08:00,0.0,10.731028,10731.028 +14976,2025-03-08T20:31:28.382812-08:00,0.0,10.744046,10744.046 +14977,2025-03-08T20:31:39.117148-08:00,0.0,10.734336,10734.336 +14978,2025-03-08T20:31:49.848735-08:00,0.0,10.731587,10731.587 +14979,2025-03-08T20:32:00.583974-08:00,0.0,10.735239,10735.239 +14980,2025-03-08T20:32:11.318839-08:00,0.0,10.734865,10734.865 +14981,2025-03-08T20:32:22.060908-08:00,0.0,10.742069,10742.069 +14982,2025-03-08T20:32:32.793730-08:00,0.0,10.732822,10732.822 +14983,2025-03-08T20:32:43.529739-08:00,0.0,10.736009,10736.009 +14984,2025-03-08T20:32:54.269737-08:00,0.0,10.739998,10739.998 +14985,2025-03-08T20:33:05.008763-08:00,0.0,10.739026,10739.026 +14986,2025-03-08T20:33:15.739782-08:00,0.0,10.731019,10731.019 +14987,2025-03-08T20:33:26.478737-08:00,0.0,10.738955,10738.955 +14988,2025-03-08T20:33:37.217902-08:00,0.0,10.739165,10739.165 +14989,2025-03-08T20:33:47.951926-08:00,0.0,10.734024,10734.024 +14990,2025-03-08T20:33:58.688918-08:00,0.0,10.736992,10736.992 +14991,2025-03-08T20:34:09.427753-08:00,0.0,10.738835,10738.835 +14992,2025-03-08T20:34:20.164783-08:00,0.0,10.73703,10737.03 +14993,2025-03-08T20:34:30.902739-08:00,0.0,10.737956,10737.956 +14994,2025-03-08T20:34:41.646737-08:00,0.0,10.743998,10743.998 +14995,2025-03-08T20:34:52.384951-08:00,0.0,10.738214,10738.214 +14996,2025-03-08T20:35:03.122914-08:00,0.0,10.737963,10737.963 +14997,2025-03-08T20:35:13.852738-08:00,0.0,10.729824,10729.824 +14998,2025-03-08T20:35:24.585957-08:00,0.0,10.733219,10733.219 +14999,2025-03-08T20:35:35.322923-08:00,0.0,10.736966,10736.966 +15000,2025-03-08T20:35:46.063915-08:00,0.0,10.740992,10740.992 +15001,2025-03-08T20:35:56.805922-08:00,0.0,10.742007,10742.007 +15002,2025-03-08T20:36:07.536763-08:00,0.0,10.730841,10730.841 +15003,2025-03-08T20:36:18.279738-08:00,0.0,10.742975,10742.975 +15004,2025-03-08T20:36:29.019797-08:00,0.0,10.740059,10740.059 +15005,2025-03-08T20:36:39.752906-08:00,0.0,10.733109,10733.109 +15006,2025-03-08T20:36:50.487086-08:00,0.0,10.73418,10734.18 +15007,2025-03-08T20:37:01.221726-08:00,0.0,10.73464,10734.64 +15008,2025-03-08T20:37:11.957944-08:00,0.0,10.736218,10736.218 +15009,2025-03-08T20:37:22.696108-08:00,0.0,10.738164,10738.164 +15010,2025-03-08T20:37:33.427961-08:00,0.0,10.731853,10731.853 +15011,2025-03-08T20:37:44.165829-08:00,0.0,10.737868,10737.868 +15012,2025-03-08T20:37:54.896891-08:00,0.0,10.731062,10731.062 +15013,2025-03-08T20:38:05.635739-08:00,0.0,10.738848,10738.848 +15014,2025-03-08T20:38:16.372925-08:00,0.0,10.737186,10737.186 +15015,2025-03-08T20:38:27.112516-08:00,0.0,10.739591,10739.591 +15016,2025-03-08T20:38:37.848760-08:00,0.0,10.736244,10736.244 +15017,2025-03-08T20:38:48.581978-08:00,0.0,10.733218,10733.218 +15018,2025-03-08T20:38:59.316925-08:00,0.0,10.734947,10734.947 +15019,2025-03-08T20:39:10.056253-08:00,0.0,10.739328,10739.328 +15020,2025-03-08T20:39:20.781737-08:00,0.0,10.725484,10725.484 +15021,2025-03-08T20:39:31.515953-08:00,0.0,10.734216,10734.216 +15022,2025-03-08T20:39:42.251912-08:00,0.0,10.735959,10735.959 +15023,2025-03-08T20:39:52.993332-08:00,0.0,10.74142,10741.42 +15024,2025-03-08T20:40:03.730761-08:00,0.0,10.737429,10737.429 +15025,2025-03-08T20:40:14.460738-08:00,0.0,10.729977,10729.977 +15026,2025-03-08T20:40:25.192939-08:00,0.0,10.732201,10732.201 +15027,2025-03-08T20:40:35.931303-08:00,0.0,10.738364,10738.364 +15028,2025-03-08T20:40:46.671895-08:00,0.0,10.740592,10740.592 +15029,2025-03-08T20:40:57.402737-08:00,0.0,10.730842,10730.842 +15030,2025-03-08T20:41:08.140735-08:00,0.0,10.737998,10737.998 +15031,2025-03-08T20:41:18.877231-08:00,0.0,10.736496,10736.496 +15032,2025-03-08T20:41:29.607737-08:00,0.0,10.730506,10730.506 +15033,2025-03-08T20:41:40.346826-08:00,0.0,10.739089,10739.089 +15034,2025-03-08T20:41:51.075960-08:00,0.0,10.729134,10729.134 +15035,2025-03-08T20:42:01.810924-08:00,0.0,10.734964,10734.964 +15036,2025-03-08T20:42:12.550734-08:00,0.0,10.73981,10739.81 +15037,2025-03-08T20:42:23.278939-08:00,0.0,10.728205,10728.205 +15038,2025-03-08T20:42:34.011837-08:00,0.0,10.732898,10732.898 +15039,2025-03-08T20:42:44.744777-08:00,0.0,10.73294,10732.94 +15040,2025-03-08T20:42:55.477737-08:00,0.0,10.73296,10732.96 +15041,2025-03-08T20:43:06.213942-08:00,0.0,10.736205,10736.205 +15042,2025-03-08T20:43:16.943835-08:00,0.0,10.729893,10729.893 +15043,2025-03-08T20:43:27.676880-08:00,0.0,10.733045,10733.045 +15044,2025-03-08T20:43:38.421006-08:00,0.0,10.744126,10744.126 +15045,2025-03-08T20:43:49.147737-08:00,0.0,10.726731,10726.731 +15046,2025-03-08T20:43:59.887922-08:00,0.0,10.740185,10740.185 +15047,2025-03-08T20:44:10.616760-08:00,0.0,10.728838,10728.838 +15048,2025-03-08T20:44:21.348733-08:00,0.0,10.731973,10731.973 +15049,2025-03-08T20:44:32.089143-08:00,0.0,10.74041,10740.41 +15050,2025-03-08T20:44:42.821577-08:00,0.0,10.732434,10732.434 +15051,2025-03-08T20:44:53.553737-08:00,0.0,10.73216,10732.16 +15052,2025-03-08T20:45:04.284738-08:00,0.0,10.731001,10731.001 +15053,2025-03-08T20:45:15.022787-08:00,0.0,10.738049,10738.049 +15054,2025-03-08T20:45:25.752968-08:00,0.0,10.730181,10730.181 +15055,2025-03-08T20:45:36.489967-08:00,0.0,10.736999,10736.999 +15056,2025-03-08T20:45:47.224962-08:00,0.0,10.734995,10734.995 +15057,2025-03-08T20:45:57.956221-08:00,0.0,10.731259,10731.259 +15058,2025-03-08T20:46:08.690944-08:00,0.0,10.734723,10734.723 +15059,2025-03-08T20:46:19.432734-08:00,0.0,10.74179,10741.79 +15060,2025-03-08T20:46:30.164737-08:00,0.0,10.732003,10732.003 +15061,2025-03-08T20:46:40.901741-08:00,0.0,10.737004,10737.004 +15062,2025-03-08T20:46:51.629734-08:00,0.0,10.727993,10727.993 +15063,2025-03-08T20:47:02.370885-08:00,0.0,10.741151,10741.151 +15064,2025-03-08T20:47:13.105005-08:00,0.0,10.73412,10734.12 +15065,2025-03-08T20:47:23.841154-08:00,0.0,10.736149,10736.149 +15066,2025-03-08T20:47:34.576418-08:00,0.0,10.735264,10735.264 +15067,2025-03-08T20:47:45.316959-08:00,0.0,10.740541,10740.541 +15068,2025-03-08T20:47:56.047734-08:00,0.0,10.730775,10730.775 +15069,2025-03-08T20:48:06.785882-08:00,0.0,10.738148,10738.148 +15070,2025-03-08T20:48:17.524903-08:00,0.0,10.739021,10739.021 +15071,2025-03-08T20:48:28.254736-08:00,0.0,10.729833,10729.833 +15072,2025-03-08T20:48:38.992058-08:00,0.0,10.737322,10737.322 +15073,2025-03-08T20:48:49.721004-08:00,0.0,10.728946,10728.946 +15074,2025-03-08T20:49:00.450418-08:00,0.0,10.729414,10729.414 +15075,2025-03-08T20:49:11.184735-08:00,0.0,10.734317,10734.317 +15076,2025-03-08T20:49:21.921768-08:00,0.0,10.737033,10737.033 +15077,2025-03-08T20:49:32.661732-08:00,0.0,10.739964,10739.964 +15078,2025-03-08T20:49:43.399905-08:00,0.0,10.738173,10738.173 +15079,2025-03-08T20:49:54.131734-08:00,0.0,10.731829,10731.829 +15080,2025-03-08T20:50:04.862733-08:00,0.0,10.730999,10730.999 +15081,2025-03-08T20:50:15.599663-08:00,0.0,10.73693,10736.93 +15082,2025-03-08T20:50:22.454296-08:00,0.0,6.854633,6854.633 +15083,2025-03-08T20:50:26.332926-08:00,0.0,3.87863,3878.63 +15084,2025-03-08T20:50:37.066939-08:00,0.0,10.734013,10734.013 +15085,2025-03-08T20:50:47.798990-08:00,0.0,10.732051,10732.051 +15086,2025-03-08T20:50:58.528922-08:00,0.0,10.729932,10729.932 +15087,2025-03-08T20:51:09.258734-08:00,0.0,10.729812,10729.812 +15088,2025-03-08T20:51:20.000744-08:00,0.0,10.74201,10742.01 +15089,2025-03-08T20:51:30.725249-08:00,0.0,10.724505,10724.505 +15090,2025-03-08T20:51:41.468916-08:00,0.0,10.743667,10743.667 +15091,2025-03-08T20:51:52.195732-08:00,0.0,10.726816,10726.816 +15092,2025-03-08T20:52:02.927766-08:00,0.0,10.732034,10732.034 +15093,2025-03-08T20:52:13.667949-08:00,0.0,10.740183,10740.183 +15094,2025-03-08T20:52:24.426169-08:00,0.0,10.75822,10758.22 +15095,2025-03-08T20:52:35.169609-08:00,0.0,10.74344,10743.44 +15096,2025-03-08T20:52:45.899042-08:00,0.0,10.729433,10729.433 +15097,2025-03-08T20:52:56.628616-08:00,0.0,10.729574,10729.574 +15098,2025-03-08T20:53:07.364167-08:00,0.0,10.735551,10735.551 +15099,2025-03-08T20:53:18.098032-08:00,0.0,10.733865,10733.865 +15100,2025-03-08T20:53:28.821256-08:00,0.0,10.723224,10723.224 +15101,2025-03-08T20:53:39.556105-08:00,0.0,10.734849,10734.849 +15102,2025-03-08T20:53:50.285079-08:00,0.0,10.728974,10728.974 +15103,2025-03-08T20:54:01.021453-08:00,0.0,10.736374,10736.374 +15104,2025-03-08T20:54:11.757209-08:00,0.0,10.735756,10735.756 +15105,2025-03-08T20:54:22.487034-08:00,0.0,10.729825,10729.825 +15106,2025-03-08T20:54:33.215030-08:00,0.0,10.727996,10727.996 +15107,2025-03-08T20:54:43.949230-08:00,0.0,10.7342,10734.2 +15108,2025-03-08T20:54:54.671030-08:00,0.0,10.7218,10721.8 +15109,2025-03-08T20:55:05.410031-08:00,0.0,10.739001,10739.001 +15110,2025-03-08T20:55:16.136215-08:00,0.0,10.726184,10726.184 +15111,2025-03-08T20:55:26.867236-08:00,0.0,10.731021,10731.021 +15112,2025-03-08T20:55:37.590210-08:00,0.0,10.722974,10722.974 +15113,2025-03-08T20:55:48.327239-08:00,0.0,10.737029,10737.029 +15114,2025-03-08T20:55:59.052236-08:00,0.0,10.724997,10724.997 +15115,2025-03-08T20:56:09.789035-08:00,0.0,10.736799,10736.799 +15116,2025-03-08T20:56:20.517215-08:00,0.0,10.72818,10728.18 +15117,2025-03-08T20:56:31.249026-08:00,0.0,10.731811,10731.811 +15118,2025-03-08T20:56:41.980029-08:00,0.0,10.731003,10731.003 +15119,2025-03-08T20:56:52.712427-08:00,0.0,10.732398,10732.398 +15120,2025-03-08T20:57:03.443030-08:00,0.0,10.730603,10730.603 +15121,2025-03-08T20:57:14.171095-08:00,0.0,10.728065,10728.065 +15122,2025-03-08T20:57:24.903422-08:00,0.0,10.732327,10732.327 +15123,2025-03-08T20:57:35.641190-08:00,0.0,10.737768,10737.768 +15124,2025-03-08T20:57:46.371033-08:00,0.0,10.729843,10729.843 +15125,2025-03-08T20:57:57.101036-08:00,0.0,10.730003,10730.003 +15126,2025-03-08T20:58:07.830059-08:00,0.0,10.729023,10729.023 +15127,2025-03-08T20:58:18.559235-08:00,0.0,10.729176,10729.176 +15128,2025-03-08T20:58:29.286205-08:00,0.0,10.72697,10726.97 +15129,2025-03-08T20:58:40.022130-08:00,0.0,10.735925,10735.925 +15130,2025-03-08T20:58:50.752807-08:00,0.0,10.730677,10730.677 +15131,2025-03-08T20:59:01.480188-08:00,0.0,10.727381,10727.381 +15132,2025-03-08T20:59:12.212175-08:00,0.0,10.731987,10731.987 +15133,2025-03-08T20:59:22.945093-08:00,0.0,10.732918,10732.918 +15134,2025-03-08T20:59:33.668210-08:00,0.0,10.723117,10723.117 +15135,2025-03-08T20:59:44.405229-08:00,0.0,10.737019,10737.019 +15136,2025-03-08T20:59:55.131030-08:00,0.0,10.725801,10725.801 +15137,2025-03-08T21:00:05.867030-08:00,0.0,10.736,10736.0 +15138,2025-03-08T21:00:16.595132-08:00,0.0,10.728102,10728.102 +15139,2025-03-08T21:00:27.331110-08:00,0.0,10.735978,10735.978 +15140,2025-03-08T21:00:38.061222-08:00,0.0,10.730112,10730.112 +15141,2025-03-08T21:00:48.786031-08:00,0.0,10.724809,10724.809 +15142,2025-03-08T21:00:59.522439-08:00,0.0,10.736408,10736.408 +15143,2025-03-08T21:01:10.249250-08:00,0.0,10.726811,10726.811 +15144,2025-03-08T21:01:20.981059-08:00,0.0,10.731809,10731.809 +15145,2025-03-08T21:01:31.708148-08:00,0.0,10.727089,10727.089 +15146,2025-03-08T21:01:42.440977-08:00,0.0,10.732829,10732.829 +15147,2025-03-08T21:01:53.171550-08:00,0.0,10.730573,10730.573 +15148,2025-03-08T21:02:03.900032-08:00,0.0,10.728482,10728.482 +15149,2025-03-08T21:02:14.634359-08:00,0.0,10.734327,10734.327 +15150,2025-03-08T21:02:25.366941-08:00,0.0,10.732582,10732.582 +15151,2025-03-08T21:02:36.086313-08:00,0.0,10.719372,10719.372 +15152,2025-03-08T21:02:46.823471-08:00,0.0,10.737158,10737.158 +15153,2025-03-08T21:02:57.546032-08:00,0.0,10.722561,10722.561 +15154,2025-03-08T21:03:08.284031-08:00,0.0,10.737999,10737.999 +15155,2025-03-08T21:03:19.014059-08:00,432.0,10.730028,10730.028 +15156,2025-03-08T21:03:29.732202-08:00,448.0,10.718143,10718.143 +15157,2025-03-08T21:03:40.459274-08:00,451.0,10.727072,10727.072 +15158,2025-03-08T21:03:51.191483-08:00,462.0,10.732209,10732.209 +15159,2025-03-08T21:04:01.916132-08:00,459.0,10.724649,10724.649 +15160,2025-03-08T21:04:12.654034-08:00,353.0,10.737902,10737.902 +15161,2025-03-08T21:04:23.378070-08:00,353.0,10.724036,10724.036 +15162,2025-03-08T21:04:34.115058-08:00,403.0,10.736988,10736.988 +15163,2025-03-08T21:04:44.846219-08:00,389.0,10.731161,10731.161 +15164,2025-03-08T21:04:55.566034-08:00,455.0,10.719815,10719.815 +15165,2025-03-08T21:05:06.295121-08:00,407.0,10.729087,10729.087 +15166,2025-03-08T21:05:06.699386-08:00,0.0,0.404265,404.265 +15167,2025-03-08T21:05:17.023202-08:00,0.0,10.323816,10323.816 +15168,2025-03-08T21:05:27.752234-08:00,0.0,10.729032,10729.032 +15169,2025-03-08T21:05:38.486233-08:00,0.0,10.733999,10733.999 +15170,2025-03-08T21:05:49.214233-08:00,0.0,10.728,10728.0 +15171,2025-03-08T21:05:59.948030-08:00,0.0,10.733797,10733.797 +15172,2025-03-08T21:06:10.673034-08:00,0.0,10.725004,10725.004 +15173,2025-03-08T21:06:21.410242-08:00,0.0,10.737208,10737.208 +15174,2025-03-08T21:06:32.144126-08:00,0.0,10.733884,10733.884 +15175,2025-03-08T21:06:42.869200-08:00,0.0,10.725074,10725.074 +15176,2025-03-08T21:06:53.603536-08:00,0.0,10.734336,10734.336 +15177,2025-03-08T21:07:04.328033-08:00,0.0,10.724497,10724.497 +15178,2025-03-08T21:07:15.067033-08:00,0.0,10.739,10739.0 +15179,2025-03-08T21:07:25.797030-08:00,0.0,10.729997,10729.997 +15180,2025-03-08T21:07:36.526525-08:00,0.0,10.729495,10729.495 +15181,2025-03-08T21:07:47.256088-08:00,0.0,10.729563,10729.563 +15182,2025-03-08T21:07:57.984609-08:00,0.0,10.728521,10728.521 +15183,2025-03-08T21:08:08.724164-08:00,0.0,10.739555,10739.555 +15184,2025-03-08T21:08:19.452168-08:00,0.0,10.728004,10728.004 +15185,2025-03-08T21:08:30.182028-08:00,0.0,10.72986,10729.86 +15186,2025-03-08T21:08:40.926110-08:00,0.0,10.744082,10744.082 +15187,2025-03-08T21:08:51.654334-08:00,0.0,10.728224,10728.224 +15188,2025-03-08T21:09:02.383034-08:00,0.0,10.7287,10728.7 +15189,2025-03-08T21:09:13.125526-08:00,0.0,10.742492,10742.492 +15190,2025-03-08T21:09:23.854027-08:00,0.0,10.728501,10728.501 +15191,2025-03-08T21:09:34.584035-08:00,0.0,10.730008,10730.008 +15192,2025-03-08T21:09:45.313371-08:00,0.0,10.729336,10729.336 +15193,2025-03-08T21:09:56.042058-08:00,0.0,10.728687,10728.687 +15194,2025-03-08T21:10:06.779028-08:00,0.0,10.73697,10736.97 +15195,2025-03-08T21:10:17.507304-08:00,0.0,10.728276,10728.276 +15196,2025-03-08T21:10:28.238215-08:00,0.0,10.730911,10730.911 +15197,2025-03-08T21:10:38.968031-08:00,0.0,10.729816,10729.816 +15198,2025-03-08T21:10:49.691046-08:00,0.0,10.723015,10723.015 +15199,2025-03-08T21:11:00.423262-08:00,0.0,10.732216,10732.216 +15200,2025-03-08T21:11:11.153029-08:00,0.0,10.729767,10729.767 +15201,2025-03-08T21:11:21.879720-08:00,0.0,10.726691,10726.691 +15202,2025-03-08T21:11:32.613080-08:00,0.0,10.73336,10733.36 +15203,2025-03-08T21:11:43.335029-08:00,0.0,10.721949,10721.949 +15204,2025-03-08T21:11:54.068169-08:00,0.0,10.73314,10733.14 +15205,2025-03-08T21:12:04.800059-08:00,0.0,10.73189,10731.89 +15206,2025-03-08T21:12:15.530034-08:00,0.0,10.729975,10729.975 +15207,2025-03-08T21:12:26.258199-08:00,0.0,10.728165,10728.165 +15208,2025-03-08T21:12:36.986030-08:00,0.0,10.727831,10727.831 +15209,2025-03-08T21:12:47.719247-08:00,0.0,10.733217,10733.217 +15210,2025-03-08T21:12:58.442242-08:00,0.0,10.722995,10722.995 +15211,2025-03-08T21:13:09.174033-08:00,0.0,10.731791,10731.791 +15212,2025-03-08T21:13:19.909194-08:00,0.0,10.735161,10735.161 +15213,2025-03-08T21:13:30.629030-08:00,0.0,10.719836,10719.836 +15214,2025-03-08T21:13:41.362236-08:00,0.0,10.733206,10733.206 +15215,2025-03-08T21:13:52.091097-08:00,0.0,10.728861,10728.861 +15216,2025-03-08T21:14:02.825119-08:00,0.0,10.734022,10734.022 +15217,2025-03-08T21:14:13.558030-08:00,0.0,10.732911,10732.911 +15218,2025-03-08T21:14:24.287215-08:00,0.0,10.729185,10729.185 +15219,2025-03-08T21:14:35.006200-08:00,0.0,10.718985,10718.985 +15220,2025-03-08T21:14:45.744095-08:00,0.0,10.737895,10737.895 +15221,2025-03-08T21:14:56.473158-08:00,0.0,10.729063,10729.063 +15222,2025-03-08T21:15:07.202131-08:00,0.0,10.728973,10728.973 +15223,2025-03-08T21:15:17.925337-08:00,0.0,10.723206,10723.206 +15224,2025-03-08T21:15:28.661411-08:00,0.0,10.736074,10736.074 +15225,2025-03-08T21:15:39.388033-08:00,0.0,10.726622,10726.622 +15226,2025-03-08T21:15:50.123097-08:00,0.0,10.735064,10735.064 +15227,2025-03-08T21:16:00.854137-08:00,0.0,10.73104,10731.04 +15228,2025-03-08T21:16:11.576029-08:00,0.0,10.721892,10721.892 +15229,2025-03-08T21:16:22.304221-08:00,0.0,10.728192,10728.192 +15230,2025-03-08T21:16:33.041214-08:00,0.0,10.736993,10736.993 +15231,2025-03-08T21:16:43.771034-08:00,0.0,10.72982,10729.82 +15232,2025-03-08T21:16:54.502031-08:00,0.0,10.730997,10730.997 +15233,2025-03-08T21:17:05.228866-08:00,0.0,10.726835,10726.835 +15234,2025-03-08T21:17:15.955321-08:00,0.0,10.726455,10726.455 +15235,2025-03-08T21:17:26.679207-08:00,0.0,10.723886,10723.886 +15236,2025-03-08T21:17:37.416033-08:00,0.0,10.736826,10736.826 +15237,2025-03-08T21:17:48.146221-08:00,0.0,10.730188,10730.188 +15238,2025-03-08T21:17:58.882032-08:00,0.0,10.735811,10735.811 +15239,2025-03-08T21:18:09.604269-08:00,0.0,10.722237,10722.237 +15240,2025-03-08T21:18:20.336035-08:00,0.0,10.731766,10731.766 +15241,2025-03-08T21:18:31.067199-08:00,0.0,10.731164,10731.164 +15242,2025-03-08T21:18:41.800517-08:00,0.0,10.733318,10733.318 +15243,2025-03-08T21:18:52.536486-08:00,0.0,10.735969,10735.969 +15244,2025-03-08T21:19:03.269030-08:00,0.0,10.732544,10732.544 +15245,2025-03-08T21:19:13.993219-08:00,0.0,10.724189,10724.189 +15246,2025-03-08T21:19:24.729094-08:00,0.0,10.735875,10735.875 +15247,2025-03-08T21:19:35.454278-08:00,0.0,10.725184,10725.184 +15248,2025-03-08T21:19:46.194026-08:00,0.0,10.739748,10739.748 +15249,2025-03-08T21:19:56.918032-08:00,0.0,10.724006,10724.006 +15250,2025-03-08T21:20:07.648034-08:00,0.0,10.730002,10730.002 +15251,2025-03-08T21:20:18.382134-08:00,0.0,10.7341,10734.1 +15252,2025-03-08T21:20:29.114032-08:00,0.0,10.731898,10731.898 +15253,2025-03-08T21:20:39.848031-08:00,0.0,10.733999,10733.999 +15254,2025-03-08T21:20:50.572209-08:00,0.0,10.724178,10724.178 +15255,2025-03-08T21:21:01.313333-08:00,0.0,10.741124,10741.124 +15256,2025-03-08T21:21:12.045030-08:00,0.0,10.731697,10731.697 +15257,2025-03-08T21:21:22.778245-08:00,0.0,10.733215,10733.215 +15258,2025-03-08T21:21:33.499044-08:00,0.0,10.720799,10720.799 +15259,2025-03-08T21:21:44.229045-08:00,0.0,10.730001,10730.001 +15260,2025-03-08T21:21:54.965238-08:00,0.0,10.736193,10736.193 +15261,2025-03-08T21:22:05.699223-08:00,0.0,10.733985,10733.985 +15262,2025-03-08T21:22:16.428026-08:00,0.0,10.728803,10728.803 +15263,2025-03-08T21:22:27.167142-08:00,0.0,10.739116,10739.116 +15264,2025-03-08T21:22:37.894913-08:00,0.0,10.727771,10727.771 +15265,2025-03-08T21:22:48.629156-08:00,0.0,10.734243,10734.243 +15266,2025-03-08T21:22:59.355240-08:00,0.0,10.726084,10726.084 +15267,2025-03-08T21:23:10.091249-08:00,0.0,10.736009,10736.009 +15268,2025-03-08T21:23:20.831212-08:00,0.0,10.739963,10739.963 +15269,2025-03-08T21:23:31.561566-08:00,0.0,10.730354,10730.354 +15270,2025-03-08T21:23:42.295604-08:00,0.0,10.734038,10734.038 +15271,2025-03-08T21:23:53.024194-08:00,0.0,10.72859,10728.59 +15272,2025-03-08T21:24:03.754033-08:00,0.0,10.729839,10729.839 +15273,2025-03-08T21:24:14.485060-08:00,0.0,10.731027,10731.027 +15274,2025-03-08T21:24:25.230486-08:00,0.0,10.745426,10745.426 +15275,2025-03-08T21:24:35.954255-08:00,0.0,10.723769,10723.769 +15276,2025-03-08T21:24:46.692032-08:00,0.0,10.737777,10737.777 +15277,2025-03-08T21:24:57.425029-08:00,0.0,10.732997,10732.997 +15278,2025-03-08T21:25:08.165316-08:00,0.0,10.740287,10740.287 +15279,2025-03-08T21:25:18.893056-08:00,0.0,10.72774,10727.74 +15280,2025-03-08T21:25:29.626034-08:00,0.0,10.732978,10732.978 +15281,2025-03-08T21:25:40.358214-08:00,0.0,10.73218,10732.18 +15282,2025-03-08T21:25:51.093129-08:00,0.0,10.734915,10734.915 +15283,2025-03-08T21:26:01.828271-08:00,0.0,10.735142,10735.142 +15284,2025-03-08T21:26:12.566093-08:00,0.0,10.737822,10737.822 +15285,2025-03-08T21:26:23.300032-08:00,0.0,10.733939,10733.939 +15286,2025-03-08T21:26:34.033198-08:00,0.0,10.733166,10733.166 +15287,2025-03-08T21:26:44.767030-08:00,0.0,10.733832,10733.832 +15288,2025-03-08T21:26:55.511244-08:00,0.0,10.744214,10744.214 +15289,2025-03-08T21:27:06.242032-08:00,0.0,10.730788,10730.788 +15290,2025-03-08T21:27:16.981797-08:00,0.0,10.739765,10739.765 +15291,2025-03-08T21:27:27.721388-08:00,0.0,10.739591,10739.591 +15292,2025-03-08T21:27:38.449096-08:00,0.0,10.727708,10727.708 +15293,2025-03-08T21:27:49.188102-08:00,0.0,10.739006,10739.006 +15294,2025-03-08T21:27:59.921035-08:00,0.0,10.732933,10732.933 +15295,2025-03-08T21:28:10.648053-08:00,0.0,10.727018,10727.018 +15296,2025-03-08T21:28:21.387033-08:00,0.0,10.73898,10738.98 +15297,2025-03-08T21:28:32.113444-08:00,0.0,10.726411,10726.411 +15298,2025-03-08T21:28:42.852229-08:00,0.0,10.738785,10738.785 +15299,2025-03-08T21:28:53.576270-08:00,0.0,10.724041,10724.041 +15300,2025-03-08T21:29:04.314034-08:00,0.0,10.737764,10737.764 +15301,2025-03-08T21:29:15.041201-08:00,0.0,10.727167,10727.167 +15302,2025-03-08T21:29:25.776193-08:00,0.0,10.734992,10734.992 +15303,2025-03-08T21:29:36.514028-08:00,0.0,10.737835,10737.835 +15304,2025-03-08T21:29:47.243215-08:00,0.0,10.729187,10729.187 +15305,2025-03-08T21:29:57.975918-08:00,0.0,10.732703,10732.703 +15306,2025-03-08T21:30:08.709032-08:00,0.0,10.733114,10733.114 +15307,2025-03-08T21:30:19.451033-08:00,0.0,10.742001,10742.001 +15308,2025-03-08T21:30:30.183027-08:00,0.0,10.731994,10731.994 +15309,2025-03-08T21:30:40.912807-08:00,0.0,10.72978,10729.78 +15310,2025-03-08T21:30:51.648325-08:00,0.0,10.735518,10735.518 +15311,2025-03-08T21:31:02.386038-08:00,0.0,10.737713,10737.713 +15312,2025-03-08T21:31:13.123445-08:00,0.0,10.737407,10737.407 +15313,2025-03-08T21:31:23.860210-08:00,0.0,10.736765,10736.765 +15314,2025-03-08T21:31:34.589226-08:00,0.0,10.729016,10729.016 +15315,2025-03-08T21:31:45.324031-08:00,0.0,10.734805,10734.805 +15316,2025-03-08T21:31:56.055142-08:00,0.0,10.731111,10731.111 +15317,2025-03-08T21:32:06.788056-08:00,0.0,10.732914,10732.914 +15318,2025-03-08T21:32:17.529104-08:00,0.0,10.741048,10741.048 +15319,2025-03-08T21:32:28.264035-08:00,0.0,10.734931,10734.931 +15320,2025-03-08T21:32:38.990217-08:00,0.0,10.726182,10726.182 +15321,2025-03-08T21:32:49.726031-08:00,0.0,10.735814,10735.814 +15322,2025-03-08T21:33:00.465080-08:00,0.0,10.739049,10739.049 +15323,2025-03-08T21:33:11.208565-08:00,0.0,10.743485,10743.485 +15324,2025-03-08T21:33:21.940030-08:00,0.0,10.731465,10731.465 +15325,2025-03-08T21:33:32.675163-08:00,0.0,10.735133,10735.133 +15326,2025-03-08T21:33:43.412056-08:00,0.0,10.736893,10736.893 +15327,2025-03-08T21:33:54.144246-08:00,0.0,10.73219,10732.19 +15328,2025-03-08T21:34:04.877228-08:00,0.0,10.732982,10732.982 +15329,2025-03-08T21:34:15.611214-08:00,0.0,10.733986,10733.986 +15330,2025-03-08T21:34:26.356476-08:00,0.0,10.745262,10745.262 +15331,2025-03-08T21:34:37.085062-08:00,0.0,10.728586,10728.586 +15332,2025-03-08T21:34:47.822782-08:00,0.0,10.73772,10737.72 +15333,2025-03-08T21:34:58.559045-08:00,0.0,10.736263,10736.263 +15334,2025-03-08T21:35:09.288309-08:00,0.0,10.729264,10729.264 +15335,2025-03-08T21:35:20.022033-08:00,0.0,10.733724,10733.724 +15336,2025-03-08T21:35:30.758911-08:00,0.0,10.736878,10736.878 +15337,2025-03-08T21:35:41.494853-08:00,0.0,10.735942,10735.942 +15338,2025-03-08T21:35:52.229028-08:00,0.0,10.734175,10734.175 +15339,2025-03-08T21:36:02.963065-08:00,0.0,10.734037,10734.037 +15340,2025-03-08T21:36:13.700225-08:00,0.0,10.73716,10737.16 +15341,2025-03-08T21:36:24.433287-08:00,0.0,10.733062,10733.062 +15342,2025-03-08T21:36:35.166262-08:00,0.0,10.732975,10732.975 +15343,2025-03-08T21:36:45.899186-08:00,0.0,10.732924,10732.924 +15344,2025-03-08T21:36:56.639033-08:00,0.0,10.739847,10739.847 +15345,2025-03-08T21:37:07.376352-08:00,0.0,10.737319,10737.319 +15346,2025-03-08T21:37:18.112316-08:00,0.0,10.735964,10735.964 +15347,2025-03-08T21:37:28.841033-08:00,0.0,10.728717,10728.717 +15348,2025-03-08T21:37:39.584027-08:00,0.0,10.742994,10742.994 +15349,2025-03-08T21:37:50.314078-08:00,0.0,10.730051,10730.051 +15350,2025-03-08T21:38:01.052460-08:00,0.0,10.738382,10738.382 +15351,2025-03-08T21:38:11.787097-08:00,0.0,10.734637,10734.637 +15352,2025-03-08T21:38:22.517234-08:00,0.0,10.730137,10730.137 +15353,2025-03-08T21:38:33.258895-08:00,0.0,10.741661,10741.661 +15354,2025-03-08T21:38:43.986235-08:00,0.0,10.72734,10727.34 +15355,2025-03-08T21:38:54.716207-08:00,0.0,10.729972,10729.972 +15356,2025-03-08T21:39:05.456230-08:00,0.0,10.740023,10740.023 +15357,2025-03-08T21:39:16.189133-08:00,0.0,10.732903,10732.903 +15358,2025-03-08T21:39:26.917101-08:00,0.0,10.727968,10727.968 +15359,2025-03-08T21:39:37.648143-08:00,0.0,10.731042,10731.042 +15360,2025-03-08T21:39:48.386375-08:00,0.0,10.738232,10738.232 +15361,2025-03-08T21:39:59.117030-08:00,0.0,10.730655,10730.655 +15362,2025-03-08T21:40:09.853040-08:00,0.0,10.73601,10736.01 +15363,2025-03-08T21:40:20.593030-08:00,0.0,10.73999,10739.99 +15364,2025-03-08T21:40:31.325158-08:00,0.0,10.732128,10732.128 +15365,2025-03-08T21:40:42.062236-08:00,0.0,10.737078,10737.078 +15366,2025-03-08T21:40:52.795032-08:00,0.0,10.732796,10732.796 +15367,2025-03-08T21:41:03.529032-08:00,0.0,10.734,10734.0 +15368,2025-03-08T21:41:14.271200-08:00,0.0,10.742168,10742.168 +15369,2025-03-08T21:41:25.003205-08:00,0.0,10.732005,10732.005 +15370,2025-03-08T21:41:35.742031-08:00,0.0,10.738826,10738.826 +15371,2025-03-08T21:41:46.473068-08:00,0.0,10.731037,10731.037 +15372,2025-03-08T21:41:57.212034-08:00,0.0,10.738966,10738.966 +15373,2025-03-08T21:42:07.945197-08:00,0.0,10.733163,10733.163 +15374,2025-03-08T21:42:18.678208-08:00,0.0,10.733011,10733.011 +15375,2025-03-08T21:42:29.410240-08:00,0.0,10.732032,10732.032 +15376,2025-03-08T21:42:40.151090-08:00,0.0,10.74085,10740.85 +15377,2025-03-08T21:42:50.887692-08:00,0.0,10.736602,10736.602 +15378,2025-03-08T21:43:01.612137-08:00,0.0,10.724445,10724.445 +15379,2025-03-08T21:43:12.350039-08:00,0.0,10.737902,10737.902 +15380,2025-03-08T21:43:23.081033-08:00,0.0,10.730994,10730.994 +15381,2025-03-08T21:43:33.813287-08:00,0.0,10.732254,10732.254 +15382,2025-03-08T21:43:44.546093-08:00,0.0,10.732806,10732.806 +15383,2025-03-08T21:43:55.282050-08:00,0.0,10.735957,10735.957 +15384,2025-03-08T21:44:06.013216-08:00,0.0,10.731166,10731.166 +15385,2025-03-08T21:44:16.746032-08:00,0.0,10.732816,10732.816 +15386,2025-03-08T21:44:27.484031-08:00,0.0,10.737999,10737.999 +15387,2025-03-08T21:44:38.222143-08:00,0.0,10.738112,10738.112 +15388,2025-03-08T21:44:48.957078-08:00,0.0,10.734935,10734.935 +15389,2025-03-08T21:44:59.687054-08:00,0.0,10.729976,10729.976 +15390,2025-03-08T21:45:10.417031-08:00,0.0,10.729977,10729.977 +15391,2025-03-08T21:45:21.151311-08:00,0.0,10.73428,10734.28 +15392,2025-03-08T21:45:31.891428-08:00,0.0,10.740117,10740.117 +15393,2025-03-08T21:45:42.625031-08:00,0.0,10.733603,10733.603 +15394,2025-03-08T21:45:53.358033-08:00,0.0,10.733002,10733.002 +15395,2025-03-08T21:46:04.087142-08:00,0.0,10.729109,10729.109 +15396,2025-03-08T21:46:14.817177-08:00,0.0,10.730035,10730.035 +15397,2025-03-08T21:46:25.547063-08:00,0.0,10.729886,10729.886 +15398,2025-03-08T21:46:36.282550-08:00,0.0,10.735487,10735.487 +15399,2025-03-08T21:46:47.012823-08:00,0.0,10.730273,10730.273 +15400,2025-03-08T21:46:57.750061-08:00,0.0,10.737238,10737.238 +15401,2025-03-08T21:47:08.484153-08:00,0.0,10.734092,10734.092 +15402,2025-03-08T21:47:19.227086-08:00,0.0,10.742933,10742.933 +15403,2025-03-08T21:47:29.959211-08:00,0.0,10.732125,10732.125 +15404,2025-03-08T21:47:40.695136-08:00,0.0,10.735925,10735.925 +15405,2025-03-08T21:47:51.427034-08:00,0.0,10.731898,10731.898 +15406,2025-03-08T21:48:02.163224-08:00,0.0,10.73619,10736.19 +15407,2025-03-08T21:48:12.907212-08:00,0.0,10.743988,10743.988 +15408,2025-03-08T21:48:23.635104-08:00,0.0,10.727892,10727.892 +15409,2025-03-08T21:48:34.378032-08:00,0.0,10.742928,10742.928 +15410,2025-03-08T21:48:45.112719-08:00,0.0,10.734687,10734.687 +15411,2025-03-08T21:48:55.853142-08:00,0.0,10.740423,10740.423 +15412,2025-03-08T21:49:06.588206-08:00,0.0,10.735064,10735.064 +15413,2025-03-08T21:49:17.323058-08:00,0.0,10.734852,10734.852 +15414,2025-03-08T21:49:28.061031-08:00,0.0,10.737973,10737.973 +15415,2025-03-08T21:49:38.800033-08:00,0.0,10.739002,10739.002 +15416,2025-03-08T21:49:49.530210-08:00,0.0,10.730177,10730.177 +15417,2025-03-08T21:50:00.271210-08:00,0.0,10.741,10741.0 +15418,2025-03-08T21:50:11.010157-08:00,0.0,10.738947,10738.947 +15419,2025-03-08T21:50:21.747056-08:00,0.0,10.736899,10736.899 +15420,2025-03-08T21:50:32.476063-08:00,0.0,10.729007,10729.007 +15421,2025-03-08T21:50:43.211118-08:00,0.0,10.735055,10735.055 +15422,2025-03-08T21:50:53.945074-08:00,0.0,10.733956,10733.956 +15423,2025-03-08T21:51:04.678035-08:00,0.0,10.732961,10732.961 +15424,2025-03-08T21:51:15.414210-08:00,0.0,10.736175,10736.175 +15425,2025-03-08T21:51:26.141744-08:00,0.0,10.727534,10727.534 +15426,2025-03-08T21:51:36.876102-08:00,0.0,10.734358,10734.358 +15427,2025-03-08T21:51:47.614086-08:00,0.0,10.737984,10737.984 +15428,2025-03-08T21:51:58.342251-08:00,0.0,10.728165,10728.165 +15429,2025-03-08T21:52:09.078058-08:00,0.0,10.735807,10735.807 +15430,2025-03-08T21:52:19.807242-08:00,0.0,10.729184,10729.184 +15431,2025-03-08T21:52:30.558391-08:00,0.0,10.751149,10751.149 +15432,2025-03-08T21:52:41.294170-08:00,0.0,10.735779,10735.779 +15433,2025-03-08T21:52:52.022305-08:00,0.0,10.728135,10728.135 +15434,2025-03-08T21:53:02.756546-08:00,0.0,10.734241,10734.241 +15435,2025-03-08T21:53:13.489346-08:00,0.0,10.7328,10732.8 +15436,2025-03-08T21:53:24.223317-08:00,0.0,10.733971,10733.971 +15437,2025-03-08T21:53:34.957309-08:00,0.0,10.733992,10733.992 +15438,2025-03-08T21:53:45.699516-08:00,0.0,10.742207,10742.207 +15439,2025-03-08T21:53:56.432494-08:00,0.0,10.732978,10732.978 +15440,2025-03-08T21:54:07.161982-08:00,0.0,10.729488,10729.488 +15441,2025-03-08T21:54:17.892309-08:00,0.0,10.730327,10730.327 +15442,2025-03-08T21:54:28.630516-08:00,0.0,10.738207,10738.207 +15443,2025-03-08T21:54:39.367311-08:00,0.0,10.736795,10736.795 +15444,2025-03-08T21:54:50.108722-08:00,0.0,10.741411,10741.411 +15445,2025-03-08T21:55:00.843368-08:00,0.0,10.734646,10734.646 +15446,2025-03-08T21:55:11.571521-08:00,0.0,10.728153,10728.153 +15447,2025-03-08T21:55:22.310491-08:00,0.0,10.73897,10738.97 +15448,2025-03-08T21:55:33.045664-08:00,0.0,10.735173,10735.173 +15449,2025-03-08T21:55:43.778773-08:00,0.0,10.733109,10733.109 +15450,2025-03-08T21:55:54.521507-08:00,0.0,10.742734,10742.734 +15451,2025-03-08T21:56:05.248341-08:00,0.0,10.726834,10726.834 +15452,2025-03-08T21:56:15.987709-08:00,0.0,10.739368,10739.368 +15453,2025-03-08T21:56:26.721337-08:00,0.0,10.733628,10733.628 +15454,2025-03-08T21:56:37.466309-08:00,0.0,10.744972,10744.972 +15455,2025-03-08T21:56:48.192311-08:00,0.0,10.726002,10726.002 +15456,2025-03-08T21:56:58.926478-08:00,0.0,10.734167,10734.167 +15457,2025-03-08T21:57:09.665835-08:00,0.0,10.739357,10739.357 +15458,2025-03-08T21:57:20.402517-08:00,0.0,10.736682,10736.682 +15459,2025-03-08T21:57:31.136315-08:00,0.0,10.733798,10733.798 +15460,2025-03-08T21:57:41.868539-08:00,0.0,10.732224,10732.224 +15461,2025-03-08T21:57:52.593309-08:00,0.0,10.72477,10724.77 +15462,2025-03-08T21:58:03.337518-08:00,0.0,10.744209,10744.209 +15463,2025-03-08T21:58:14.066408-08:00,0.0,10.72889,10728.89 +15464,2025-03-08T21:58:24.801702-08:00,0.0,10.735294,10735.294 +15465,2025-03-08T21:58:35.540404-08:00,0.0,10.738702,10738.702 +15466,2025-03-08T21:58:46.272513-08:00,0.0,10.732109,10732.109 +15467,2025-03-08T21:58:57.010312-08:00,0.0,10.737799,10737.799 +15468,2025-03-08T21:59:07.750310-08:00,0.0,10.739998,10739.998 +15469,2025-03-08T21:59:18.483901-08:00,0.0,10.733591,10733.591 +15470,2025-03-08T21:59:29.213309-08:00,0.0,10.729408,10729.408 +15471,2025-03-08T21:59:39.944533-08:00,0.0,10.731224,10731.224 +15472,2025-03-08T21:59:50.685573-08:00,0.0,10.74104,10741.04 +15473,2025-03-08T22:00:01.417542-08:00,0.0,10.731969,10731.969 +15474,2025-03-08T22:00:12.150309-08:00,0.0,10.732767,10732.767 +15475,2025-03-08T22:00:22.877325-08:00,0.0,10.727016,10727.016 +15476,2025-03-08T22:00:33.615487-08:00,0.0,10.738162,10738.162 +15477,2025-03-08T22:00:44.353715-08:00,0.0,10.738228,10738.228 +15478,2025-03-08T22:00:55.080378-08:00,0.0,10.726663,10726.663 +15479,2025-03-08T22:01:05.815514-08:00,0.0,10.735136,10735.136 +15480,2025-03-08T22:01:16.554490-08:00,0.0,10.738976,10738.976 +15481,2025-03-08T22:01:27.296642-08:00,0.0,10.742152,10742.152 +15482,2025-03-08T22:01:38.033339-08:00,0.0,10.736697,10736.697 +15483,2025-03-08T22:01:48.766524-08:00,0.0,10.733185,10733.185 +15484,2025-03-08T22:01:59.506312-08:00,0.0,10.739788,10739.788 +15485,2025-03-08T22:02:10.236952-08:00,0.0,10.73064,10730.64 +15486,2025-03-08T22:02:20.973312-08:00,0.0,10.73636,10736.36 +15487,2025-03-08T22:02:31.720370-08:00,0.0,10.747058,10747.058 +15488,2025-03-08T22:02:42.453373-08:00,0.0,10.733003,10733.003 +15489,2025-03-08T22:02:53.184491-08:00,0.0,10.731118,10731.118 +15490,2025-03-08T22:03:03.920312-08:00,0.0,10.735821,10735.821 +15491,2025-03-08T22:03:14.658310-08:00,0.0,10.737998,10737.998 +15492,2025-03-08T22:03:25.392814-08:00,0.0,10.734504,10734.504 +15493,2025-03-08T22:03:36.128321-08:00,0.0,10.735507,10735.507 +15494,2025-03-08T22:03:46.865680-08:00,0.0,10.737359,10737.359 +15495,2025-03-08T22:03:57.592312-08:00,0.0,10.726632,10726.632 +15496,2025-03-08T22:04:08.327795-08:00,0.0,10.735483,10735.483 +15497,2025-03-08T22:04:19.054818-08:00,0.0,10.727023,10727.023 +15498,2025-03-08T22:04:29.787313-08:00,0.0,10.732495,10732.495 +15499,2025-03-08T22:04:40.521463-08:00,0.0,10.73415,10734.15 +15500,2025-03-08T22:04:51.249510-08:00,0.0,10.728047,10728.047 +15501,2025-03-08T22:05:01.986455-08:00,0.0,10.736945,10736.945 +15502,2025-03-08T22:05:12.719390-08:00,0.0,10.732935,10732.935 +15503,2025-03-08T22:05:23.451012-08:00,0.0,10.731622,10731.622 +15504,2025-03-08T22:05:34.181406-08:00,0.0,10.730394,10730.394 +15505,2025-03-08T22:05:44.915798-08:00,0.0,10.734392,10734.392 +15506,2025-03-08T22:05:55.642313-08:00,0.0,10.726515,10726.515 +15507,2025-03-08T22:06:06.378017-08:00,0.0,10.735704,10735.704 +15508,2025-03-08T22:06:17.112744-08:00,0.0,10.734727,10734.727 +15509,2025-03-08T22:06:27.840481-08:00,0.0,10.727737,10727.737 +15510,2025-03-08T22:06:38.568655-08:00,0.0,10.728174,10728.174 +15511,2025-03-08T22:06:49.298507-08:00,0.0,10.729852,10729.852 +15512,2025-03-08T22:07:00.031339-08:00,0.0,10.732832,10732.832 +15513,2025-03-08T22:07:10.764705-08:00,0.0,10.733366,10733.366 +15514,2025-03-08T22:07:21.502350-08:00,0.0,10.737645,10737.645 +15515,2025-03-08T22:07:32.237727-08:00,0.0,10.735377,10735.377 +15516,2025-03-08T22:07:42.972314-08:00,0.0,10.734587,10734.587 +15517,2025-03-08T22:07:53.700208-08:00,0.0,10.727894,10727.894 +15518,2025-03-08T22:08:04.437309-08:00,0.0,10.737101,10737.101 +15519,2025-03-08T22:08:15.174241-08:00,0.0,10.736932,10736.932 +15520,2025-03-08T22:08:25.903312-08:00,0.0,10.729071,10729.071 +15521,2025-03-08T22:08:36.634336-08:00,0.0,10.731024,10731.024 +15522,2025-03-08T22:08:47.368381-08:00,0.0,10.734045,10734.045 +15523,2025-03-08T22:08:58.097720-08:00,0.0,10.729339,10729.339 +15524,2025-03-08T22:09:08.835500-08:00,0.0,10.73778,10737.78 +15525,2025-03-08T22:09:19.566060-08:00,0.0,10.73056,10730.56 +15526,2025-03-08T22:09:30.299310-08:00,0.0,10.73325,10733.25 +15527,2025-03-08T22:09:41.032308-08:00,0.0,10.732998,10732.998 +15528,2025-03-08T22:09:51.767150-08:00,0.0,10.734842,10734.842 +15529,2025-03-08T22:10:02.500384-08:00,0.0,10.733234,10733.234 +15530,2025-03-08T22:10:13.242361-08:00,0.0,10.741977,10741.977 +15531,2025-03-08T22:10:23.964478-08:00,0.0,10.722117,10722.117 +15532,2025-03-08T22:10:34.705527-08:00,0.0,10.741049,10741.049 +15533,2025-03-08T22:10:45.439519-08:00,0.0,10.733992,10733.992 +15534,2025-03-08T22:10:56.168386-08:00,0.0,10.728867,10728.867 +15535,2025-03-08T22:11:06.895337-08:00,0.0,10.726951,10726.951 +15536,2025-03-08T22:11:17.627541-08:00,0.0,10.732204,10732.204 +15537,2025-03-08T22:11:28.366535-08:00,0.0,10.738994,10738.994 +15538,2025-03-08T22:11:39.100531-08:00,0.0,10.733996,10733.996 +15539,2025-03-08T22:11:49.828428-08:00,0.0,10.727897,10727.897 +15540,2025-03-08T22:12:00.558309-08:00,0.0,10.729881,10729.881 +15541,2025-03-08T22:12:11.297311-08:00,0.0,10.739002,10739.002 +15542,2025-03-08T22:12:22.031493-08:00,0.0,10.734182,10734.182 +15543,2025-03-08T22:12:32.765383-08:00,0.0,10.73389,10733.89 +15544,2025-03-08T22:12:43.495341-08:00,0.0,10.729958,10729.958 +15545,2025-03-08T22:12:54.228447-08:00,0.0,10.733106,10733.106 +15546,2025-03-08T22:13:04.967881-08:00,0.0,10.739434,10739.434 +15547,2025-03-08T22:13:15.701658-08:00,0.0,10.733777,10733.777 +15548,2025-03-08T22:13:26.431313-08:00,0.0,10.729655,10729.655 +15549,2025-03-08T22:13:37.161483-08:00,0.0,10.73017,10730.17 +15550,2025-03-08T22:13:47.895310-08:00,0.0,10.733827,10733.827 +15551,2025-03-08T22:13:58.626357-08:00,0.0,10.731047,10731.047 +15552,2025-03-08T22:14:09.360659-08:00,0.0,10.734302,10734.302 +15553,2025-03-08T22:14:20.093387-08:00,0.0,10.732728,10732.728 +15554,2025-03-08T22:14:30.829309-08:00,0.0,10.735922,10735.922 +15555,2025-03-08T22:14:41.560310-08:00,0.0,10.731001,10731.001 +15556,2025-03-08T22:14:52.288724-08:00,0.0,10.728414,10728.414 +15557,2025-03-08T22:15:03.019409-08:00,0.0,10.730685,10730.685 +15558,2025-03-08T22:15:13.751493-08:00,0.0,10.732084,10732.084 +15559,2025-03-08T22:15:24.488416-08:00,0.0,10.736923,10736.923 +15560,2025-03-08T22:15:35.222492-08:00,0.0,10.734076,10734.076 +15561,2025-03-08T22:15:45.953390-08:00,0.0,10.730898,10730.898 +15562,2025-03-08T22:15:56.681484-08:00,0.0,10.728094,10728.094 +15563,2025-03-08T22:16:07.411377-08:00,0.0,10.729893,10729.893 +15564,2025-03-08T22:16:18.147307-08:00,0.0,10.73593,10735.93 +15565,2025-03-08T22:16:28.878499-08:00,0.0,10.731192,10731.192 +15566,2025-03-08T22:16:39.614514-08:00,0.0,10.736015,10736.015 +15567,2025-03-08T22:16:50.351312-08:00,0.0,10.736798,10736.798 +15568,2025-03-08T22:17:01.080382-08:00,0.0,10.72907,10729.07 +15569,2025-03-08T22:17:11.814338-08:00,0.0,10.733956,10733.956 +15570,2025-03-08T22:17:22.537551-08:00,0.0,10.723213,10723.213 +15571,2025-03-08T22:17:33.270315-08:00,0.0,10.732764,10732.764 +15572,2025-03-08T22:17:44.005511-08:00,0.0,10.735196,10735.196 +15573,2025-03-08T22:17:54.736309-08:00,0.0,10.730798,10730.798 +15574,2025-03-08T22:18:05.470468-08:00,0.0,10.734159,10734.159 +15575,2025-03-08T22:18:16.201313-08:00,0.0,10.730845,10730.845 +15576,2025-03-08T22:18:26.935502-08:00,0.0,10.734189,10734.189 +15577,2025-03-08T22:18:37.671798-08:00,0.0,10.736296,10736.296 +15578,2025-03-08T22:18:48.395827-08:00,0.0,10.724029,10724.029 +15579,2025-03-08T22:18:59.131999-08:00,0.0,10.736172,10736.172 +15580,2025-03-08T22:19:09.865036-08:00,0.0,10.733037,10733.037 +15581,2025-03-08T22:19:20.601312-08:00,0.0,10.736276,10736.276 +15582,2025-03-08T22:19:31.339306-08:00,0.0,10.737994,10737.994 +15583,2025-03-08T22:19:42.067478-08:00,0.0,10.728172,10728.172 +15584,2025-03-08T22:19:52.805361-08:00,0.0,10.737883,10737.883 +15585,2025-03-08T22:20:03.545312-08:00,0.0,10.739951,10739.951 +15586,2025-03-08T22:20:14.269724-08:00,0.0,10.724412,10724.412 +15587,2025-03-08T22:20:25.001630-08:00,0.0,10.731906,10731.906 +15588,2025-03-08T22:20:35.736645-08:00,0.0,10.735015,10735.015 +15589,2025-03-08T22:20:46.467316-08:00,0.0,10.730671,10730.671 +15590,2025-03-08T22:20:57.198726-08:00,0.0,10.73141,10731.41 +15591,2025-03-08T22:21:07.927388-08:00,0.0,10.728662,10728.662 +15592,2025-03-08T22:21:18.660437-08:00,0.0,10.733049,10733.049 +15593,2025-03-08T22:21:29.394047-08:00,0.0,10.73361,10733.61 +15594,2025-03-08T22:21:40.131654-08:00,0.0,10.737607,10737.607 +15595,2025-03-08T22:21:50.856424-08:00,0.0,10.72477,10724.77 +15596,2025-03-08T22:22:01.587391-08:00,0.0,10.730967,10730.967 +15597,2025-03-08T22:22:12.315674-08:00,0.0,10.728283,10728.283 +15598,2025-03-08T22:22:23.055379-08:00,0.0,10.739705,10739.705 +15599,2025-03-08T22:22:33.781746-08:00,0.0,10.726367,10726.367 +15600,2025-03-08T22:22:44.517621-08:00,0.0,10.735875,10735.875 +15601,2025-03-08T22:22:55.253514-08:00,0.0,10.735893,10735.893 +15602,2025-03-08T22:23:05.986342-08:00,0.0,10.732828,10732.828 +15603,2025-03-08T22:23:16.709526-08:00,0.0,10.723184,10723.184 +15604,2025-03-08T22:23:27.444383-08:00,0.0,10.734857,10734.857 +15605,2025-03-08T22:23:38.177516-08:00,0.0,10.733133,10733.133 +15606,2025-03-08T22:23:48.909539-08:00,0.0,10.732023,10732.023 +15607,2025-03-08T22:23:59.649691-08:00,0.0,10.740152,10740.152 +15608,2025-03-08T22:24:10.389364-08:00,0.0,10.739673,10739.673 +15609,2025-03-08T22:24:21.114511-08:00,0.0,10.725147,10725.147 +15610,2025-03-08T22:24:31.850319-08:00,0.0,10.735808,10735.808 +15611,2025-03-08T22:24:42.584402-08:00,0.0,10.734083,10734.083 +15612,2025-03-08T22:24:53.320309-08:00,0.0,10.735907,10735.907 +15613,2025-03-08T22:25:04.051602-08:00,0.0,10.731293,10731.293 +15614,2025-03-08T22:25:14.789624-08:00,0.0,10.738022,10738.022 +15615,2025-03-08T22:25:25.531370-08:00,0.0,10.741746,10741.746 +15616,2025-03-08T22:25:36.264336-08:00,0.0,10.732966,10732.966 +15617,2025-03-08T22:25:47.000657-08:00,0.0,10.736321,10736.321 +15618,2025-03-08T22:25:57.728312-08:00,0.0,10.727655,10727.655 +15619,2025-03-08T22:26:08.462510-08:00,0.0,10.734198,10734.198 +15620,2025-03-08T22:26:19.197891-08:00,0.0,10.735381,10735.381 +15621,2025-03-08T22:26:29.922489-08:00,0.0,10.724598,10724.598 +15622,2025-03-08T22:26:40.661100-08:00,0.0,10.738611,10738.611 +15623,2025-03-08T22:26:51.389312-08:00,0.0,10.728212,10728.212 +15624,2025-03-08T22:27:02.126306-08:00,0.0,10.736994,10736.994 +15625,2025-03-08T22:27:12.863313-08:00,0.0,10.737007,10737.007 +15626,2025-03-08T22:27:23.592246-08:00,0.0,10.728933,10728.933 +15627,2025-03-08T22:27:34.322312-08:00,0.0,10.730066,10730.066 +15628,2025-03-08T22:27:45.055658-08:00,0.0,10.733346,10733.346 +15629,2025-03-08T22:27:55.798514-08:00,0.0,10.742856,10742.856 +15630,2025-03-08T22:28:06.525510-08:00,0.0,10.726996,10726.996 +15631,2025-03-08T22:28:17.266383-08:00,0.0,10.740873,10740.873 +15632,2025-03-08T22:28:27.991603-08:00,0.0,10.72522,10725.22 +15633,2025-03-08T22:28:38.734035-08:00,0.0,10.742432,10742.432 +15634,2025-03-08T22:28:49.462662-08:00,0.0,10.728627,10728.627 +15635,2025-03-08T22:29:00.194341-08:00,0.0,10.731679,10731.679 +15636,2025-03-08T22:29:10.936517-08:00,0.0,10.742176,10742.176 +15637,2025-03-08T22:29:21.659811-08:00,0.0,10.723294,10723.294 +15638,2025-03-08T22:29:32.393346-08:00,0.0,10.733535,10733.535 +15639,2025-03-08T22:29:43.131310-08:00,0.0,10.737964,10737.964 +15640,2025-03-08T22:29:53.866309-08:00,0.0,10.734999,10734.999 +15641,2025-03-08T22:30:04.603493-08:00,0.0,10.737184,10737.184 +15642,2025-03-08T22:30:15.328463-08:00,0.0,10.72497,10724.97 +15643,2025-03-08T22:30:26.066312-08:00,0.0,10.737849,10737.849 +15644,2025-03-08T22:30:36.798435-08:00,0.0,10.732123,10732.123 +15645,2025-03-08T22:30:47.533386-08:00,0.0,10.734951,10734.951 +15646,2025-03-08T22:30:58.263319-08:00,0.0,10.729933,10729.933 +15647,2025-03-08T22:31:09.007454-08:00,0.0,10.744135,10744.135 +15648,2025-03-08T22:31:19.742312-08:00,0.0,10.734858,10734.858 +15649,2025-03-08T22:31:30.470330-08:00,0.0,10.728018,10728.018 +15650,2025-03-08T22:31:41.210313-08:00,0.0,10.739983,10739.983 +15651,2025-03-08T22:31:51.944312-08:00,0.0,10.733999,10733.999 +15652,2025-03-08T22:32:02.680532-08:00,0.0,10.73622,10736.22 +15653,2025-03-08T22:32:13.418508-08:00,0.0,10.737976,10737.976 +15654,2025-03-08T22:32:24.154510-08:00,0.0,10.736002,10736.002 +15655,2025-03-08T22:32:34.891343-08:00,0.0,10.736833,10736.833 +15656,2025-03-08T22:32:45.634310-08:00,0.0,10.742967,10742.967 +15657,2025-03-08T22:32:56.369884-08:00,0.0,10.735574,10735.574 +15658,2025-03-08T22:33:07.110485-08:00,0.0,10.740601,10740.601 +15659,2025-03-08T22:33:17.843312-08:00,0.0,10.732827,10732.827 +15660,2025-03-08T22:33:28.584342-08:00,0.0,10.74103,10741.03 +15661,2025-03-08T22:33:39.310594-08:00,0.0,10.726252,10726.252 +15662,2025-03-08T22:33:50.046493-08:00,0.0,10.735899,10735.899 +15663,2025-03-08T22:34:00.784588-08:00,0.0,10.738095,10738.095 +15664,2025-03-08T22:34:11.521382-08:00,0.0,10.736794,10736.794 +15665,2025-03-08T22:34:22.252594-08:00,0.0,10.731212,10731.212 +15666,2025-03-08T22:34:32.986528-08:00,0.0,10.733934,10733.934 +15667,2025-03-08T22:34:43.723559-08:00,0.0,10.737031,10737.031 +15668,2025-03-08T22:34:54.459312-08:00,0.0,10.735753,10735.753 +15669,2025-03-08T22:35:05.196312-08:00,0.0,10.737,10737.0 +15670,2025-03-08T22:35:15.935488-08:00,0.0,10.739176,10739.176 +15671,2025-03-08T22:35:26.673488-08:00,0.0,10.738,10738.0 +15672,2025-03-08T22:35:37.404452-08:00,0.0,10.730964,10730.964 +15673,2025-03-08T22:35:48.148372-08:00,0.0,10.74392,10743.92 +15674,2025-03-08T22:35:58.877515-08:00,0.0,10.729143,10729.143 +15675,2025-03-08T22:36:09.618623-08:00,0.0,10.741108,10741.108 +15676,2025-03-08T22:36:20.350433-08:00,0.0,10.73181,10731.81 +15677,2025-03-08T22:36:31.092436-08:00,0.0,10.742003,10742.003 +15678,2025-03-08T22:36:41.825312-08:00,0.0,10.732876,10732.876 +15679,2025-03-08T22:36:52.559548-08:00,0.0,10.734236,10734.236 +15680,2025-03-08T22:37:03.287340-08:00,0.0,10.727792,10727.792 +15681,2025-03-08T22:37:14.030312-08:00,0.0,10.742972,10742.972 +15682,2025-03-08T22:37:24.768537-08:00,0.0,10.738225,10738.225 +15683,2025-03-08T22:37:35.496346-08:00,0.0,10.727809,10727.809 +15684,2025-03-08T22:37:46.236479-08:00,0.0,10.740133,10740.133 +15685,2025-03-08T22:37:56.971549-08:00,0.0,10.73507,10735.07 +15686,2025-03-08T22:38:07.712316-08:00,0.0,10.740767,10740.767 +15687,2025-03-08T22:38:18.448602-08:00,0.0,10.736286,10736.286 +15688,2025-03-08T22:38:29.184292-08:00,0.0,10.73569,10735.69 +15689,2025-03-08T22:38:39.914312-08:00,0.0,10.73002,10730.02 +15690,2025-03-08T22:38:50.654307-08:00,0.0,10.739995,10739.995 +15691,2025-03-08T22:39:01.393520-08:00,0.0,10.739213,10739.213 +15692,2025-03-08T22:39:12.126307-08:00,0.0,10.732787,10732.787 +15693,2025-03-08T22:39:22.862701-08:00,0.0,10.736394,10736.394 +15694,2025-03-08T22:39:33.594310-08:00,0.0,10.731609,10731.609 +15695,2025-03-08T22:39:44.328527-08:00,0.0,10.734217,10734.217 +15696,2025-03-08T22:39:55.056568-08:00,0.0,10.728041,10728.041 +15697,2025-03-08T22:40:05.787309-08:00,0.0,10.730741,10730.741 +15698,2025-03-08T22:40:16.521310-08:00,0.0,10.734001,10734.001 +15699,2025-03-08T22:40:27.257317-08:00,0.0,10.736007,10736.007 +15700,2025-03-08T22:40:37.988304-08:00,0.0,10.730987,10730.987 +15701,2025-03-08T22:40:48.725312-08:00,0.0,10.737008,10737.008 +15702,2025-03-08T22:40:59.459310-08:00,0.0,10.733998,10733.998 +15703,2025-03-08T22:41:10.196648-08:00,0.0,10.737338,10737.338 +15704,2025-03-08T22:41:20.933499-08:00,0.0,10.736851,10736.851 +15705,2025-03-08T22:41:31.673071-08:00,0.0,10.739572,10739.572 +15706,2025-03-08T22:41:42.410309-08:00,0.0,10.737238,10737.238 +15707,2025-03-08T22:41:53.149376-08:00,0.0,10.739067,10739.067 +15708,2025-03-08T22:42:03.877420-08:00,0.0,10.728044,10728.044 +15709,2025-03-08T22:42:14.621520-08:00,0.0,10.7441,10744.1 +15710,2025-03-08T22:42:25.353486-08:00,0.0,10.731966,10731.966 +15711,2025-03-08T22:42:36.089309-08:00,0.0,10.735823,10735.823 +15712,2025-03-08T22:42:46.818496-08:00,0.0,10.729187,10729.187 +15713,2025-03-08T22:42:57.554010-08:00,0.0,10.735514,10735.514 +15714,2025-03-08T22:43:08.285312-08:00,0.0,10.731302,10731.302 +15715,2025-03-08T22:43:19.019387-08:00,0.0,10.734075,10734.075 +15716,2025-03-08T22:43:29.757425-08:00,0.0,10.738038,10738.038 +15717,2025-03-08T22:43:40.488407-08:00,0.0,10.730982,10730.982 +15718,2025-03-08T22:43:51.225458-08:00,0.0,10.737051,10737.051 +15719,2025-03-08T22:44:01.958308-08:00,0.0,10.73285,10732.85 +15720,2025-03-08T22:44:12.697489-08:00,0.0,10.739181,10739.181 +15721,2025-03-08T22:44:23.432183-08:00,0.0,10.734694,10734.694 +15722,2025-03-08T22:44:34.160312-08:00,0.0,10.728129,10728.129 +15723,2025-03-08T22:44:44.895304-08:00,0.0,10.734992,10734.992 +15724,2025-03-08T22:44:55.630490-08:00,0.0,10.735186,10735.186 +15725,2025-03-08T22:45:06.352517-08:00,0.0,10.722027,10722.027 +15726,2025-03-08T22:45:17.087316-08:00,0.0,10.734799,10734.799 +15727,2025-03-08T22:45:27.820665-08:00,0.0,10.733349,10733.349 +15728,2025-03-08T22:45:38.559652-08:00,0.0,10.738987,10738.987 +15729,2025-03-08T22:45:49.294306-08:00,0.0,10.734654,10734.654 +15730,2025-03-08T22:46:00.021384-08:00,0.0,10.727078,10727.078 +15731,2025-03-08T22:46:10.759690-08:00,0.0,10.738306,10738.306 +15732,2025-03-08T22:46:21.486310-08:00,0.0,10.72662,10726.62 +15733,2025-03-08T22:46:32.224598-08:00,0.0,10.738288,10738.288 +15734,2025-03-08T22:46:42.956532-08:00,0.0,10.731934,10731.934 +15735,2025-03-08T22:46:53.694490-08:00,0.0,10.737958,10737.958 +15736,2025-03-08T22:47:04.426310-08:00,0.0,10.73182,10731.82 +15737,2025-03-08T22:47:15.152521-08:00,0.0,10.726211,10726.211 +15738,2025-03-08T22:47:25.888491-08:00,0.0,10.73597,10735.97 +15739,2025-03-08T22:47:36.623599-08:00,0.0,10.735108,10735.108 +15740,2025-03-08T22:47:47.358989-08:00,0.0,10.73539,10735.39 +15741,2025-03-08T22:47:58.096719-08:00,0.0,10.73773,10737.73 +15742,2025-03-08T22:48:08.826487-08:00,0.0,10.729768,10729.768 +15743,2025-03-08T22:48:19.567360-08:00,0.0,10.740873,10740.873 +15744,2025-03-08T22:48:30.303312-08:00,0.0,10.735952,10735.952 +15745,2025-03-08T22:48:41.034312-08:00,0.0,10.731,10731.0 +15746,2025-03-08T22:48:51.760937-08:00,0.0,10.726625,10726.625 +15747,2025-03-08T22:49:02.496047-08:00,0.0,10.73511,10735.11 +15748,2025-03-08T22:49:13.232493-08:00,0.0,10.736446,10736.446 +15749,2025-03-08T22:49:23.958722-08:00,0.0,10.726229,10726.229 +15750,2025-03-08T22:49:34.700493-08:00,0.0,10.741771,10741.771 +15751,2025-03-08T22:49:45.431515-08:00,0.0,10.731022,10731.022 +15752,2025-03-08T22:49:56.160327-08:00,0.0,10.728812,10728.812 +15753,2025-03-08T22:50:06.893505-08:00,0.0,10.733178,10733.178 +15754,2025-03-08T22:50:17.633395-08:00,0.0,10.73989,10739.89 +15755,2025-03-08T22:50:28.365775-08:00,0.0,10.73238,10732.38 +15756,2025-03-08T22:50:39.098651-08:00,0.0,10.732876,10732.876 +15757,2025-03-08T22:50:49.821313-08:00,0.0,10.722662,10722.662 +15758,2025-03-08T22:51:00.552306-08:00,0.0,10.730993,10730.993 +15759,2025-03-08T22:51:11.292312-08:00,0.0,10.740006,10740.006 +15760,2025-03-08T22:51:22.024499-08:00,0.0,10.732187,10732.187 +15761,2025-03-08T22:51:32.759341-08:00,0.0,10.734842,10734.842 +15762,2025-03-08T22:51:43.497440-08:00,0.0,10.738099,10738.099 +15763,2025-03-08T22:51:54.229485-08:00,0.0,10.732045,10732.045 +15764,2025-03-08T22:52:04.963509-08:00,0.0,10.734024,10734.024 +15765,2025-03-08T22:52:15.698324-08:00,0.0,10.734815,10734.815 +15766,2025-03-08T22:52:26.453773-08:00,0.0,10.755449,10755.449 +15767,2025-03-08T22:52:37.185986-08:00,0.0,10.732213,10732.213 +15768,2025-03-08T22:52:47.919772-08:00,0.0,10.733786,10733.786 +15769,2025-03-08T22:52:58.650828-08:00,0.0,10.731056,10731.056 +15770,2025-03-08T22:53:09.383006-08:00,0.0,10.732178,10732.178 +15771,2025-03-08T22:53:20.122955-08:00,0.0,10.739949,10739.949 +15772,2025-03-08T22:53:30.852770-08:00,0.0,10.729815,10729.815 +15773,2025-03-08T22:53:41.578775-08:00,0.0,10.726005,10726.005 +15774,2025-03-08T22:53:52.311458-08:00,0.0,10.732683,10732.683 +15775,2025-03-08T22:54:03.049886-08:00,0.0,10.738428,10738.428 +15776,2025-03-08T22:54:13.780063-08:00,0.0,10.730177,10730.177 +15777,2025-03-08T22:54:24.513251-08:00,0.0,10.733188,10733.188 +15778,2025-03-08T22:54:35.241994-08:00,0.0,10.728743,10728.743 +15779,2025-03-08T22:54:45.976879-08:00,0.0,10.734885,10734.885 +15780,2025-03-08T22:54:56.710776-08:00,0.0,10.733897,10733.897 +15781,2025-03-08T22:55:07.438201-08:00,0.0,10.727425,10727.425 +15782,2025-03-08T22:55:18.168897-08:00,0.0,10.730696,10730.696 +15783,2025-03-08T22:55:28.906950-08:00,0.0,10.738053,10738.053 +15784,2025-03-08T22:55:39.628398-08:00,0.0,10.721448,10721.448 +15785,2025-03-08T22:55:50.359978-08:00,0.0,10.73158,10731.58 +15786,2025-03-08T22:56:01.096776-08:00,0.0,10.736798,10736.798 +15787,2025-03-08T22:56:11.820770-08:00,0.0,10.723994,10723.994 +15788,2025-03-08T22:56:22.549771-08:00,0.0,10.729001,10729.001 +15789,2025-03-08T22:56:33.286686-08:00,0.0,10.736915,10736.915 +15790,2025-03-08T22:56:44.015544-08:00,0.0,10.728858,10728.858 +15791,2025-03-08T22:56:54.754771-08:00,0.0,10.739227,10739.227 +15792,2025-03-08T22:57:05.476833-08:00,0.0,10.722062,10722.062 +15793,2025-03-08T22:57:16.210942-08:00,0.0,10.734109,10734.109 +15794,2025-03-08T22:57:26.941067-08:00,0.0,10.730125,10730.125 +15795,2025-03-08T22:57:37.669965-08:00,0.0,10.728898,10728.898 +15796,2025-03-08T22:57:48.400953-08:00,0.0,10.730988,10730.988 +15797,2025-03-08T22:57:59.133931-08:00,0.0,10.732978,10732.978 +15798,2025-03-08T22:58:09.860777-08:00,0.0,10.726846,10726.846 +15799,2025-03-08T22:58:20.586553-08:00,0.0,10.725776,10725.776 +15800,2025-03-08T22:58:31.324772-08:00,0.0,10.738219,10738.219 +15801,2025-03-08T22:58:42.053187-08:00,0.0,10.728415,10728.415 +15802,2025-03-08T22:58:52.788890-08:00,0.0,10.735703,10735.703 +15803,2025-03-08T22:59:03.514220-08:00,0.0,10.72533,10725.33 +15804,2025-03-08T22:59:14.244772-08:00,0.0,10.730552,10730.552 +15805,2025-03-08T22:59:24.966865-08:00,0.0,10.722093,10722.093 +15806,2025-03-08T22:59:35.702969-08:00,0.0,10.736104,10736.104 +15807,2025-03-08T22:59:46.432977-08:00,0.0,10.730008,10730.008 +15808,2025-03-08T22:59:57.155773-08:00,0.0,10.722796,10722.796 +15809,2025-03-08T23:00:07.887964-08:00,0.0,10.732191,10732.191 +15810,2025-03-08T23:00:18.624777-08:00,0.0,10.736813,10736.813 +15811,2025-03-08T23:00:29.354471-08:00,0.0,10.729694,10729.694 +15812,2025-03-08T23:00:40.084776-08:00,0.0,10.730305,10730.305 +15813,2025-03-08T23:00:50.819778-08:00,0.0,10.735002,10735.002 +15814,2025-03-08T23:01:01.545060-08:00,0.0,10.725282,10725.282 +15815,2025-03-08T23:01:12.278871-08:00,0.0,10.733811,10733.811 +15816,2025-03-08T23:01:23.001850-08:00,0.0,10.722979,10722.979 +15817,2025-03-08T23:01:33.734313-08:00,0.0,10.732463,10732.463 +15818,2025-03-08T23:01:44.468778-08:00,0.0,10.734465,10734.465 +15819,2025-03-08T23:01:55.201976-08:00,0.0,10.733198,10733.198 +15820,2025-03-08T23:02:05.926964-08:00,0.0,10.724988,10724.988 +15821,2025-03-08T23:02:16.660782-08:00,0.0,10.733818,10733.818 +15822,2025-03-08T23:02:27.394768-08:00,0.0,10.733986,10733.986 +15823,2025-03-08T23:02:38.116951-08:00,0.0,10.722183,10722.183 +15824,2025-03-08T23:02:48.853773-08:00,0.0,10.736822,10736.822 +15825,2025-03-08T23:02:59.578976-08:00,0.0,10.725203,10725.203 +15826,2025-03-08T23:03:10.303775-08:00,0.0,10.724799,10724.799 +15827,2025-03-08T23:03:21.032988-08:00,0.0,10.729213,10729.213 +15828,2025-03-08T23:03:31.758948-08:00,0.0,10.72596,10725.96 +15829,2025-03-08T23:03:42.491772-08:00,0.0,10.732824,10732.824 +15830,2025-03-08T23:03:53.222772-08:00,0.0,10.731,10731.0 +15831,2025-03-08T23:04:03.956619-08:00,0.0,10.733847,10733.847 +15832,2025-03-08T23:04:14.684924-08:00,0.0,10.728305,10728.305 +15833,2025-03-08T23:04:25.417987-08:00,0.0,10.733063,10733.063 +15834,2025-03-08T23:04:36.139961-08:00,0.0,10.721974,10721.974 +15835,2025-03-08T23:04:46.869803-08:00,0.0,10.729842,10729.842 +15836,2025-03-08T23:04:57.604857-08:00,0.0,10.735054,10735.054 +15837,2025-03-08T23:05:08.338969-08:00,0.0,10.734112,10734.112 +15838,2025-03-08T23:05:19.067807-08:00,0.0,10.728838,10728.838 +15839,2025-03-08T23:05:29.797774-08:00,0.0,10.729967,10729.967 +15840,2025-03-08T23:05:40.519434-08:00,0.0,10.72166,10721.66 +15841,2025-03-08T23:05:51.254773-08:00,0.0,10.735339,10735.339 +15842,2025-03-08T23:06:01.987977-08:00,0.0,10.733204,10733.204 +15843,2025-03-08T23:06:12.714934-08:00,0.0,10.726957,10726.957 +15844,2025-03-08T23:06:23.455053-08:00,0.0,10.740119,10740.119 +15845,2025-03-08T23:06:34.184775-08:00,0.0,10.729722,10729.722 +15846,2025-03-08T23:06:44.910851-08:00,0.0,10.726076,10726.076 +15847,2025-03-08T23:06:55.650990-08:00,0.0,10.740139,10740.139 +15848,2025-03-08T23:07:06.382851-08:00,0.0,10.731861,10731.861 +15849,2025-03-08T23:07:17.116787-08:00,0.0,10.733936,10733.936 +15850,2025-03-08T23:07:27.847955-08:00,0.0,10.731168,10731.168 +15851,2025-03-08T23:07:38.573773-08:00,0.0,10.725818,10725.818 +15852,2025-03-08T23:07:49.300778-08:00,0.0,10.727005,10727.005 +15853,2025-03-08T23:08:00.032558-08:00,0.0,10.73178,10731.78 +15854,2025-03-08T23:08:10.759844-08:00,0.0,10.727286,10727.286 +15855,2025-03-08T23:08:21.498984-08:00,0.0,10.73914,10739.14 +15856,2025-03-08T23:08:32.232446-08:00,0.0,10.733462,10733.462 +15857,2025-03-08T23:08:42.965510-08:00,0.0,10.733064,10733.064 +15858,2025-03-08T23:08:53.693775-08:00,0.0,10.728265,10728.265 +15859,2025-03-08T23:09:04.426018-08:00,0.0,10.732243,10732.243 +15860,2025-03-08T23:09:15.152773-08:00,0.0,10.726755,10726.755 +15861,2025-03-08T23:09:25.883777-08:00,0.0,10.731004,10731.004 +15862,2025-03-08T23:09:36.610971-08:00,0.0,10.727194,10727.194 +15863,2025-03-08T23:09:47.345772-08:00,0.0,10.734801,10734.801 +15864,2025-03-08T23:09:58.072834-08:00,0.0,10.727062,10727.062 +15865,2025-03-08T23:10:08.811278-08:00,0.0,10.738444,10738.444 +15866,2025-03-08T23:10:19.537835-08:00,0.0,10.726557,10726.557 +15867,2025-03-08T23:10:30.269833-08:00,0.0,10.731998,10731.998 +15868,2025-03-08T23:10:40.993956-08:00,0.0,10.724123,10724.123 +15869,2025-03-08T23:10:51.723496-08:00,0.0,10.72954,10729.54 +15870,2025-03-08T23:11:02.454010-08:00,0.0,10.730514,10730.514 +15871,2025-03-08T23:11:13.186979-08:00,0.0,10.732969,10732.969 +15872,2025-03-08T23:11:23.916775-08:00,0.0,10.729796,10729.796 +15873,2025-03-08T23:11:34.648829-08:00,0.0,10.732054,10732.054 +15874,2025-03-08T23:11:45.383327-08:00,0.0,10.734498,10734.498 +15875,2025-03-08T23:11:56.105978-08:00,0.0,10.722651,10722.651 +15876,2025-03-08T23:12:06.834847-08:00,0.0,10.728869,10728.869 +15877,2025-03-08T23:12:17.567164-08:00,0.0,10.732317,10732.317 +15878,2025-03-08T23:12:28.297773-08:00,0.0,10.730609,10730.609 +15879,2025-03-08T23:12:39.038022-08:00,0.0,10.740249,10740.249 +15880,2025-03-08T23:12:49.763616-08:00,0.0,10.725594,10725.594 +15881,2025-03-08T23:13:00.494837-08:00,0.0,10.731221,10731.221 +15882,2025-03-08T23:13:11.225839-08:00,0.0,10.731002,10731.002 +15883,2025-03-08T23:13:21.949943-08:00,0.0,10.724104,10724.104 +15884,2025-03-08T23:13:32.682767-08:00,0.0,10.732824,10732.824 +15885,2025-03-08T23:13:43.416777-08:00,0.0,10.73401,10734.01 +15886,2025-03-08T23:13:54.155977-08:00,0.0,10.7392,10739.2 +15887,2025-03-08T23:14:04.884946-08:00,0.0,10.728969,10728.969 +15888,2025-03-08T23:14:15.618981-08:00,0.0,10.734035,10734.035 +15889,2025-03-08T23:14:26.353801-08:00,0.0,10.73482,10734.82 +15890,2025-03-08T23:14:37.080942-08:00,0.0,10.727141,10727.141 +15891,2025-03-08T23:14:47.811772-08:00,0.0,10.73083,10730.83 +15892,2025-03-08T23:14:58.540812-08:00,0.0,10.72904,10729.04 +15893,2025-03-08T23:15:09.276647-08:00,0.0,10.735835,10735.835 +15894,2025-03-08T23:15:19.999771-08:00,0.0,10.723124,10723.124 +15895,2025-03-08T23:15:30.738769-08:00,0.0,10.738998,10738.998 +15896,2025-03-08T23:15:41.468789-08:00,0.0,10.73002,10730.02 +15897,2025-03-08T23:15:52.199141-08:00,0.0,10.730352,10730.352 +15898,2025-03-08T23:16:02.928774-08:00,0.0,10.729633,10729.633 +15899,2025-03-08T23:16:13.659981-08:00,0.0,10.731207,10731.207 +15900,2025-03-08T23:16:24.385771-08:00,0.0,10.72579,10725.79 +15901,2025-03-08T23:16:35.110797-08:00,0.0,10.725026,10725.026 +15902,2025-03-08T23:16:45.844168-08:00,0.0,10.733371,10733.371 +15903,2025-03-08T23:16:56.571772-08:00,0.0,10.727604,10727.604 +15904,2025-03-08T23:17:07.301958-08:00,0.0,10.730186,10730.186 +15905,2025-03-08T23:17:18.036963-08:00,0.0,10.735005,10735.005 +15906,2025-03-08T23:17:28.761776-08:00,0.0,10.724813,10724.813 +15907,2025-03-08T23:17:39.486003-08:00,0.0,10.724227,10724.227 +15908,2025-03-08T23:17:50.224072-08:00,0.0,10.738069,10738.069 +15909,2025-03-08T23:18:00.945817-08:00,0.0,10.721745,10721.745 +15910,2025-03-08T23:18:11.679091-08:00,0.0,10.733274,10733.274 +15911,2025-03-08T23:18:22.404775-08:00,0.0,10.725684,10725.684 +15912,2025-03-08T23:18:33.137769-08:00,0.0,10.732994,10732.994 +15913,2025-03-08T23:18:43.868786-08:00,0.0,10.731017,10731.017 +15914,2025-03-08T23:18:54.595177-08:00,0.0,10.726391,10726.391 +15915,2025-03-08T23:19:05.319203-08:00,0.0,10.724026,10724.026 +15916,2025-03-08T23:19:16.047520-08:00,0.0,10.728317,10728.317 +15917,2025-03-08T23:19:26.784943-08:00,0.0,10.737423,10737.423 +15918,2025-03-08T23:19:37.513778-08:00,0.0,10.728835,10728.835 +15919,2025-03-08T23:19:48.235021-08:00,0.0,10.721243,10721.243 +15920,2025-03-08T23:19:58.965795-08:00,0.0,10.730774,10730.774 +15921,2025-03-08T23:20:09.694552-08:00,0.0,10.728757,10728.757 +15922,2025-03-08T23:20:20.418399-08:00,0.0,10.723847,10723.847 +15923,2025-03-08T23:20:31.146805-08:00,0.0,10.728406,10728.406 +15924,2025-03-08T23:20:41.876504-08:00,0.0,10.729699,10729.699 +15925,2025-03-08T23:20:52.608777-08:00,0.0,10.732273,10732.273 +15926,2025-03-08T23:21:03.330053-08:00,0.0,10.721276,10721.276 +15927,2025-03-08T23:21:14.056978-08:00,0.0,10.726925,10726.925 +15928,2025-03-08T23:21:24.791998-08:00,0.0,10.73502,10735.02 +15929,2025-03-08T23:21:35.518469-08:00,0.0,10.726471,10726.471 +15930,2025-03-08T23:21:46.246804-08:00,0.0,10.728335,10728.335 +15931,2025-03-08T23:21:56.978988-08:00,0.0,10.732184,10732.184 +15932,2025-03-08T23:22:07.702302-08:00,0.0,10.723314,10723.314 +15933,2025-03-08T23:22:18.437775-08:00,0.0,10.735473,10735.473 +15934,2025-03-08T23:22:29.161993-08:00,0.0,10.724218,10724.218 +15935,2025-03-08T23:22:39.900942-08:00,0.0,10.738949,10738.949 +15936,2025-03-08T23:22:50.623983-08:00,0.0,10.723041,10723.041 +15937,2025-03-08T23:23:01.358841-08:00,0.0,10.734858,10734.858 +15938,2025-03-08T23:23:12.082982-08:00,0.0,10.724141,10724.141 +15939,2025-03-08T23:23:22.809895-08:00,0.0,10.726913,10726.913 +15940,2025-03-08T23:23:33.549775-08:00,0.0,10.73988,10739.88 +15941,2025-03-08T23:23:44.276336-08:00,0.0,10.726561,10726.561 +15942,2025-03-08T23:23:55.007840-08:00,0.0,10.731504,10731.504 +15943,2025-03-08T23:24:05.736005-08:00,0.0,10.728165,10728.165 +15944,2025-03-08T23:24:16.466290-08:00,0.0,10.730285,10730.285 +15945,2025-03-08T23:24:27.194770-08:00,0.0,10.72848,10728.48 +15946,2025-03-08T23:24:37.929775-08:00,0.0,10.735005,10735.005 +15947,2025-03-08T23:24:48.652133-08:00,0.0,10.722358,10722.358 +15948,2025-03-08T23:24:59.392022-08:00,0.0,10.739889,10739.889 +15949,2025-03-08T23:25:10.120191-08:00,0.0,10.728169,10728.169 +15950,2025-03-08T23:25:20.838800-08:00,0.0,10.718609,10718.609 +15951,2025-03-08T23:25:31.575839-08:00,0.0,10.737039,10737.039 +15952,2025-03-08T23:25:42.302927-08:00,0.0,10.727088,10727.088 +15953,2025-03-08T23:25:53.036859-08:00,0.0,10.733932,10733.932 +15954,2025-03-08T23:26:03.768772-08:00,0.0,10.731913,10731.913 +15955,2025-03-08T23:26:14.495518-08:00,0.0,10.726746,10726.746 +15956,2025-03-08T23:26:25.227778-08:00,0.0,10.73226,10732.26 +15957,2025-03-08T23:26:35.965771-08:00,0.0,10.737993,10737.993 +15958,2025-03-08T23:26:46.698849-08:00,0.0,10.733078,10733.078 +15959,2025-03-08T23:26:57.433938-08:00,0.0,10.735089,10735.089 +15960,2025-03-08T23:27:08.164885-08:00,0.0,10.730947,10730.947 +15961,2025-03-08T23:27:18.900771-08:00,0.0,10.735886,10735.886 +15962,2025-03-08T23:27:29.633016-08:00,0.0,10.732245,10732.245 +15963,2025-03-08T23:27:40.358884-08:00,0.0,10.725868,10725.868 +15964,2025-03-08T23:27:51.089973-08:00,0.0,10.731089,10731.089 +15965,2025-03-08T23:28:01.827777-08:00,0.0,10.737804,10737.804 +15966,2025-03-08T23:28:12.554566-08:00,0.0,10.726789,10726.789 +15967,2025-03-08T23:28:23.289822-08:00,0.0,10.735256,10735.256 +15968,2025-03-08T23:28:34.021984-08:00,0.0,10.732162,10732.162 +15969,2025-03-08T23:28:44.757219-08:00,0.0,10.735235,10735.235 +15970,2025-03-08T23:28:55.487971-08:00,0.0,10.730752,10730.752 +15971,2025-03-08T23:29:06.216769-08:00,0.0,10.728798,10728.798 +15972,2025-03-08T23:29:16.951127-08:00,0.0,10.734358,10734.358 +15973,2025-03-08T23:29:27.675772-08:00,0.0,10.724645,10724.645 +15974,2025-03-08T23:29:38.414230-08:00,0.0,10.738458,10738.458 +15975,2025-03-08T23:29:49.143963-08:00,0.0,10.729733,10729.733 +15976,2025-03-08T23:29:59.869775-08:00,0.0,10.725812,10725.812 +15977,2025-03-08T23:30:10.608773-08:00,0.0,10.738998,10738.998 +15978,2025-03-08T23:30:21.335964-08:00,0.0,10.727191,10727.191 +15979,2025-03-08T23:30:32.074026-08:00,0.0,10.738062,10738.062 +15980,2025-03-08T23:30:42.804984-08:00,0.0,10.730958,10730.958 +15981,2025-03-08T23:30:53.533798-08:00,0.0,10.728814,10728.814 +15982,2025-03-08T23:31:04.273216-08:00,0.0,10.739418,10739.418 +15983,2025-03-08T23:31:15.000768-08:00,0.0,10.727552,10727.552 +15984,2025-03-08T23:31:25.729312-08:00,0.0,10.728544,10728.544 +15985,2025-03-08T23:31:36.465843-08:00,0.0,10.736531,10736.531 +15986,2025-03-08T23:31:47.198975-08:00,0.0,10.733132,10733.132 +15987,2025-03-08T23:31:57.922782-08:00,0.0,10.723807,10723.807 +15988,2025-03-08T23:32:08.663777-08:00,0.0,10.740995,10740.995 +15989,2025-03-08T23:32:19.392955-08:00,0.0,10.729178,10729.178 +15990,2025-03-08T23:32:30.123797-08:00,0.0,10.730842,10730.842 +15991,2025-03-08T23:32:40.860772-08:00,0.0,10.736975,10736.975 +15992,2025-03-08T23:32:51.596776-08:00,0.0,10.736004,10736.004 +15993,2025-03-08T23:33:02.324626-08:00,0.0,10.72785,10727.85 +15994,2025-03-08T23:33:13.057847-08:00,0.0,10.733221,10733.221 +15995,2025-03-08T23:33:23.782374-08:00,0.0,10.724527,10724.527 +15996,2025-03-08T23:33:34.516638-08:00,0.0,10.734264,10734.264 +15997,2025-03-08T23:33:45.245769-08:00,0.0,10.729131,10729.131 +15998,2025-03-08T23:33:55.980775-08:00,0.0,10.735006,10735.006 +15999,2025-03-08T23:34:06.714038-08:00,0.0,10.733263,10733.263 +16000,2025-03-08T23:34:17.443506-08:00,0.0,10.729468,10729.468 +16001,2025-03-08T23:34:28.174861-08:00,0.0,10.731355,10731.355 +16002,2025-03-08T23:34:38.914465-08:00,0.0,10.739604,10739.604 +16003,2025-03-08T23:34:49.646892-08:00,0.0,10.732427,10732.427 +16004,2025-03-08T23:35:00.374775-08:00,0.0,10.727883,10727.883 +16005,2025-03-08T23:35:11.108848-08:00,0.0,10.734073,10734.073 +16006,2025-03-08T23:35:21.845962-08:00,0.0,10.737114,10737.114 +16007,2025-03-08T23:35:32.577773-08:00,0.0,10.731811,10731.811 +16008,2025-03-08T23:35:43.321020-08:00,0.0,10.743247,10743.247 +16009,2025-03-08T23:35:54.049991-08:00,0.0,10.728971,10728.971 +16010,2025-03-08T23:36:04.782154-08:00,0.0,10.732163,10732.163 +16011,2025-03-08T23:36:15.512784-08:00,0.0,10.73063,10730.63 +16012,2025-03-08T23:36:26.244987-08:00,0.0,10.732203,10732.203 +16013,2025-03-08T23:36:36.983773-08:00,0.0,10.738786,10738.786 +16014,2025-03-08T23:36:47.712008-08:00,0.0,10.728235,10728.235 +16015,2025-03-08T23:36:58.449772-08:00,0.0,10.737764,10737.764 +16016,2025-03-08T23:37:09.176362-08:00,0.0,10.72659,10726.59 +16017,2025-03-08T23:37:19.909270-08:00,0.0,10.732908,10732.908 +16018,2025-03-08T23:37:30.641070-08:00,0.0,10.7318,10731.8 +16019,2025-03-08T23:37:41.369776-08:00,0.0,10.728706,10728.706 +16020,2025-03-08T23:37:52.104166-08:00,0.0,10.73439,10734.39 +16021,2025-03-08T23:38:02.832773-08:00,0.0,10.728607,10728.607 +16022,2025-03-08T23:38:13.571196-08:00,0.0,10.738423,10738.423 +16023,2025-03-08T23:38:24.304026-08:00,0.0,10.73283,10732.83 +16024,2025-03-08T23:38:35.037692-08:00,0.0,10.733666,10733.666 +16025,2025-03-08T23:38:45.762773-08:00,0.0,10.725081,10725.081 +16026,2025-03-08T23:38:56.506061-08:00,0.0,10.743288,10743.288 +16027,2025-03-08T23:39:07.227797-08:00,0.0,10.721736,10721.736 +16028,2025-03-08T23:39:17.964775-08:00,0.0,10.736978,10736.978 +16029,2025-03-08T23:39:28.699836-08:00,0.0,10.735061,10735.061 +16030,2025-03-08T23:39:38.738185-08:00,0.0,10.038349,10038.349 +16031,2025-03-08T23:39:39.422395-08:00,0.0,0.68421,684.21 +16032,2025-03-08T23:39:50.151955-08:00,0.0,10.72956,10729.56 +16033,2025-03-08T23:40:00.891838-08:00,0.0,10.739883,10739.883 +16034,2025-03-08T23:40:11.623864-08:00,0.0,10.732026,10732.026 +16035,2025-03-08T23:40:22.355441-08:00,0.0,10.731577,10731.577 +16036,2025-03-08T23:40:33.079805-08:00,0.0,10.724364,10724.364 +16037,2025-03-08T23:40:43.817059-08:00,0.0,10.737254,10737.254 +16038,2025-03-08T23:40:54.537884-08:00,0.0,10.720825,10720.825 +16039,2025-03-08T23:41:05.276772-08:00,0.0,10.738888,10738.888 +16040,2025-03-08T23:41:16.006853-08:00,0.0,10.730081,10730.081 +16041,2025-03-08T23:41:26.732773-08:00,0.0,10.72592,10725.92 +16042,2025-03-08T23:41:37.473846-08:00,0.0,10.741073,10741.073 +16043,2025-03-08T23:41:48.200221-08:00,0.0,10.726375,10726.375 +16044,2025-03-08T23:41:58.933728-08:00,0.0,10.733507,10733.507 +16045,2025-03-08T23:42:09.662184-08:00,0.0,10.728456,10728.456 +16046,2025-03-08T23:42:20.393774-08:00,0.0,10.73159,10731.59 +16047,2025-03-08T23:42:31.126332-08:00,0.0,10.732558,10732.558 +16048,2025-03-08T23:42:41.861840-08:00,0.0,10.735508,10735.508 +16049,2025-03-08T23:42:52.594444-08:00,0.0,10.732604,10732.604 +16050,2025-03-08T23:43:03.318963-08:00,0.0,10.724519,10724.519 +16051,2025-03-08T23:43:14.053767-08:00,0.0,10.734804,10734.804 +16052,2025-03-08T23:43:24.789840-08:00,0.0,10.736073,10736.073 +16053,2025-03-08T23:43:35.516956-08:00,0.0,10.727116,10727.116 +16054,2025-03-08T23:43:46.250009-08:00,0.0,10.733053,10733.053 +16055,2025-03-08T23:43:56.968964-08:00,0.0,10.718955,10718.955 +16056,2025-03-08T23:44:07.708608-08:00,0.0,10.739644,10739.644 +16057,2025-03-08T23:44:18.435849-08:00,0.0,10.727241,10727.241 +16058,2025-03-08T23:44:29.158952-08:00,0.0,10.723103,10723.103 +16059,2025-03-08T23:44:39.891574-08:00,0.0,10.732622,10732.622 +16060,2025-03-08T23:44:50.622772-08:00,0.0,10.731198,10731.198 +16061,2025-03-08T23:45:01.348953-08:00,0.0,10.726181,10726.181 +16062,2025-03-08T23:45:12.076771-08:00,0.0,10.727818,10727.818 +16063,2025-03-08T23:45:22.793927-08:00,0.0,10.717156,10717.156 +16064,2025-03-08T23:45:33.527961-08:00,0.0,10.734034,10734.034 +16065,2025-03-08T23:45:44.251847-08:00,0.0,10.723886,10723.886 +16066,2025-03-08T23:45:54.981959-08:00,0.0,10.730112,10730.112 +16067,2025-03-08T23:46:05.711007-08:00,0.0,10.729048,10729.048 +16068,2025-03-08T23:46:16.436774-08:00,0.0,10.725767,10725.767 +16069,2025-03-08T23:46:27.165963-08:00,0.0,10.729189,10729.189 +16070,2025-03-08T23:46:37.902990-08:00,0.0,10.737027,10737.027 +16071,2025-03-08T23:46:48.630882-08:00,0.0,10.727892,10727.892 +16072,2025-03-08T23:46:59.359164-08:00,0.0,10.728282,10728.282 +16073,2025-03-08T23:47:10.085895-08:00,0.0,10.726731,10726.731 +16074,2025-03-08T23:47:20.810803-08:00,0.0,10.724908,10724.908 +16075,2025-03-08T23:47:31.531774-08:00,0.0,10.720971,10720.971 +16076,2025-03-08T23:47:42.263770-08:00,0.0,10.731996,10731.996 +16077,2025-03-08T23:47:52.984793-08:00,0.0,10.721023,10721.023 +16078,2025-03-08T23:48:03.720771-08:00,0.0,10.735978,10735.978 +16079,2025-03-08T23:48:14.446777-08:00,0.0,10.726006,10726.006 +16080,2025-03-08T23:48:25.169775-08:00,0.0,10.722998,10722.998 +16081,2025-03-08T23:48:35.893717-08:00,0.0,10.723942,10723.942 +16082,2025-03-08T23:48:46.628960-08:00,0.0,10.735243,10735.243 +16083,2025-03-08T23:48:57.348774-08:00,0.0,10.719814,10719.814 +16084,2025-03-08T23:49:08.081774-08:00,0.0,10.733,10733.0 +16085,2025-03-08T23:49:18.804059-08:00,0.0,10.722285,10722.285 +16086,2025-03-08T23:49:29.538974-08:00,0.0,10.734915,10734.915 +16087,2025-03-08T23:49:40.259083-08:00,0.0,10.720109,10720.109 +16088,2025-03-08T23:49:50.991067-08:00,0.0,10.731984,10731.984 +16089,2025-03-08T23:50:01.716986-08:00,0.0,10.725919,10725.919 +16090,2025-03-08T23:50:12.444859-08:00,0.0,10.727873,10727.873 +16091,2025-03-08T23:50:23.166773-08:00,0.0,10.721914,10721.914 +16092,2025-03-08T23:50:33.891362-08:00,0.0,10.724589,10724.589 +16093,2025-03-08T23:50:44.622831-08:00,0.0,10.731469,10731.469 +16094,2025-03-08T23:50:55.354848-08:00,0.0,10.732017,10732.017 +16095,2025-03-08T23:51:06.085961-08:00,0.0,10.731113,10731.113 +16096,2025-03-08T23:51:16.813836-08:00,0.0,10.727875,10727.875 +16097,2025-03-08T23:51:27.537768-08:00,0.0,10.723932,10723.932 +16098,2025-03-08T23:51:38.262773-08:00,0.0,10.725005,10725.005 +16099,2025-03-08T23:51:49.000866-08:00,0.0,10.738093,10738.093 +16100,2025-03-08T23:51:59.721952-08:00,0.0,10.721086,10721.086 +16101,2025-03-08T23:52:10.456960-08:00,0.0,10.735008,10735.008 +16102,2025-03-08T23:52:21.178168-08:00,0.0,10.721208,10721.208 +16103,2025-03-08T23:52:31.915018-08:00,0.0,10.73685,10736.85 +16104,2025-03-08T23:52:42.641846-08:00,0.0,10.726828,10726.828 +16105,2025-03-08T23:52:53.375910-08:00,0.0,10.734064,10734.064 +16106,2025-03-08T23:53:04.100687-08:00,0.0,10.724777,10724.777 +16107,2025-03-08T23:53:14.833841-08:00,0.0,10.733154,10733.154 +16108,2025-03-08T23:53:25.553641-08:00,0.0,10.7198,10719.8 +16109,2025-03-08T23:53:36.288854-08:00,0.0,10.735213,10735.213 +16110,2025-03-08T23:53:47.014844-08:00,0.0,10.72599,10725.99 +16111,2025-03-08T23:53:57.740031-08:00,0.0,10.725187,10725.187 +16112,2025-03-08T23:54:08.461849-08:00,0.0,10.721818,10721.818 +16113,2025-03-08T23:54:19.190440-08:00,0.0,10.728591,10728.591 +16114,2025-03-08T23:54:29.926522-08:00,0.0,10.736082,10736.082 +16115,2025-03-08T23:54:40.653222-08:00,0.0,10.7267,10726.7 +16116,2025-03-08T23:54:51.376009-08:00,0.0,10.722787,10722.787 +16117,2025-03-08T23:55:02.107062-08:00,0.0,10.731053,10731.053 +16118,2025-03-08T23:55:12.837917-08:00,0.0,10.730855,10730.855 +16119,2025-03-08T23:55:23.562114-08:00,0.0,10.724197,10724.197 +16120,2025-03-08T23:55:34.287252-08:00,0.0,10.725138,10725.138 +16121,2025-03-08T23:55:45.021842-08:00,0.0,10.73459,10734.59 +16122,2025-03-08T23:55:55.748958-08:00,0.0,10.727116,10727.116 +16123,2025-03-08T23:56:06.472124-08:00,0.0,10.723166,10723.166 +16124,2025-03-08T23:56:17.200029-08:00,0.0,10.727905,10727.905 +16125,2025-03-08T23:56:27.933048-08:00,0.0,10.733019,10733.019 +16126,2025-03-08T23:56:38.660846-08:00,0.0,10.727798,10727.798 +16127,2025-03-08T23:56:49.390050-08:00,0.0,10.729204,10729.204 +16128,2025-03-08T23:57:00.116050-08:00,0.0,10.726,10726.0 +16129,2025-03-08T23:57:10.844346-08:00,0.0,10.728296,10728.296 +16130,2025-03-08T23:57:21.562847-08:00,0.0,10.718501,10718.501 +16131,2025-03-08T23:57:32.293121-08:00,0.0,10.730274,10730.274 +16132,2025-03-08T23:57:43.025031-08:00,0.0,10.73191,10731.91 +16133,2025-03-08T23:57:53.741921-08:00,0.0,10.71689,10716.89 +16134,2025-03-08T23:58:04.479039-08:00,0.0,10.737118,10737.118 +16135,2025-03-08T23:58:15.203844-08:00,0.0,10.724805,10724.805 +16136,2025-03-08T23:58:25.925392-08:00,0.0,10.721548,10721.548 +16137,2025-03-08T23:58:36.655990-08:00,0.0,10.730598,10730.598 +16138,2025-03-08T23:58:47.373049-08:00,0.0,10.717059,10717.059 +16139,2025-03-08T23:58:58.109227-08:00,0.0,10.736178,10736.178 +16140,2025-03-08T23:59:08.837843-08:00,0.0,10.728616,10728.616 +16141,2025-03-08T23:59:19.568846-08:00,0.0,10.731003,10731.003 +16142,2025-03-08T23:59:30.287890-08:00,0.0,10.719044,10719.044 +16143,2025-03-08T23:59:41.015847-08:00,0.0,10.727957,10727.957 +16144,2025-03-08T23:59:51.747901-08:00,0.0,10.732054,10732.054 +16145,2025-03-09T00:00:02.469844-08:00,0.0,10.721943,10721.943 +16146,2025-03-09T00:00:13.200847-08:00,0.0,10.731003,10731.003 +16147,2025-03-09T00:00:23.933947-08:00,0.0,10.7331,10733.1 +16148,2025-03-09T00:00:34.663845-08:00,0.0,10.729898,10729.898 +16149,2025-03-09T00:00:45.392244-08:00,0.0,10.728399,10728.399 +16150,2025-03-09T00:00:56.120707-08:00,0.0,10.728463,10728.463 +16151,2025-03-09T00:01:06.845913-08:00,0.0,10.725206,10725.206 +16152,2025-03-09T00:01:17.575923-08:00,0.0,10.73001,10730.01 +16153,2025-03-09T00:01:28.307918-08:00,0.0,10.731995,10731.995 +16154,2025-03-09T00:01:39.042047-08:00,0.0,10.734129,10734.129 +16155,2025-03-09T00:01:49.767118-08:00,0.0,10.725071,10725.071 +16156,2025-03-09T00:02:00.501471-08:00,0.0,10.734353,10734.353 +16157,2025-03-09T00:02:11.236936-08:00,0.0,10.735465,10735.465 +16158,2025-03-09T00:02:21.968915-08:00,0.0,10.731979,10731.979 +16159,2025-03-09T00:02:32.691981-08:00,0.0,10.723066,10723.066 +16160,2025-03-09T00:02:43.434912-08:00,0.0,10.742931,10742.931 +16161,2025-03-09T00:02:54.160850-08:00,0.0,10.725938,10725.938 +16162,2025-03-09T00:03:04.895341-08:00,0.0,10.734491,10734.491 +16163,2025-03-09T00:03:15.625597-08:00,0.0,10.730256,10730.256 +16164,2025-03-09T00:03:26.357847-08:00,0.0,10.73225,10732.25 +16165,2025-03-09T00:03:37.095007-08:00,0.0,10.73716,10737.16 +16166,2025-03-09T00:03:47.822422-08:00,0.0,10.727415,10727.415 +16167,2025-03-09T00:03:58.557094-08:00,0.0,10.734672,10734.672 +16168,2025-03-09T00:04:09.285088-08:00,0.0,10.727994,10727.994 +16169,2025-03-09T00:04:20.014970-08:00,0.0,10.729882,10729.882 +16170,2025-03-09T00:04:30.739842-08:00,0.0,10.724872,10724.872 +16171,2025-03-09T00:04:41.472845-08:00,0.0,10.733003,10733.003 +16172,2025-03-09T00:04:52.200864-08:00,0.0,10.728019,10728.019 +16173,2025-03-09T00:05:02.931848-08:00,0.0,10.730984,10730.984 +16174,2025-03-09T00:05:13.667039-08:00,0.0,10.735191,10735.191 +16175,2025-03-09T00:05:24.397608-08:00,0.0,10.730569,10730.569 +16176,2025-03-09T00:05:35.122841-08:00,0.0,10.725233,10725.233 +16177,2025-03-09T00:05:45.848014-08:00,0.0,10.725173,10725.173 +16178,2025-03-09T00:05:56.587129-08:00,0.0,10.739115,10739.115 +16179,2025-03-09T00:06:07.319847-08:00,0.0,10.732718,10732.718 +16180,2025-03-09T00:06:18.047021-08:00,0.0,10.727174,10727.174 +16181,2025-03-09T00:06:28.776876-08:00,0.0,10.729855,10729.855 +16182,2025-03-09T00:06:39.503845-08:00,0.0,10.726969,10726.969 +16183,2025-03-09T00:06:50.239847-08:00,0.0,10.736002,10736.002 +16184,2025-03-09T00:07:00.971942-08:00,0.0,10.732095,10732.095 +16185,2025-03-09T00:07:11.702126-08:00,0.0,10.730184,10730.184 +16186,2025-03-09T00:07:22.431082-08:00,0.0,10.728956,10728.956 +16187,2025-03-09T00:07:33.159843-08:00,0.0,10.728761,10728.761 +16188,2025-03-09T00:07:43.887065-08:00,0.0,10.727222,10727.222 +16189,2025-03-09T00:07:54.621846-08:00,0.0,10.734781,10734.781 +16190,2025-03-09T00:08:05.351079-08:00,0.0,10.729233,10729.233 +16191,2025-03-09T00:08:16.085844-08:00,0.0,10.734765,10734.765 +16192,2025-03-09T00:08:26.818227-08:00,0.0,10.732383,10732.383 +16193,2025-03-09T00:08:37.549030-08:00,0.0,10.730803,10730.803 +16194,2025-03-09T00:08:48.280054-08:00,0.0,10.731024,10731.024 +16195,2025-03-09T00:08:59.013846-08:00,0.0,10.733792,10733.792 +16196,2025-03-09T00:09:09.741008-08:00,0.0,10.727162,10727.162 +16197,2025-03-09T00:09:20.483237-08:00,0.0,10.742229,10742.229 +16198,2025-03-09T00:09:31.207050-08:00,0.0,10.723813,10723.813 +16199,2025-03-09T00:09:41.939067-08:00,0.0,10.732017,10732.017 +16200,2025-03-09T00:09:52.673072-08:00,0.0,10.734005,10734.005 +16201,2025-03-09T00:10:03.404843-08:00,0.0,10.731771,10731.771 +16202,2025-03-09T00:10:14.138847-08:00,0.0,10.734004,10734.004 +16203,2025-03-09T00:10:24.879849-08:00,0.0,10.741002,10741.002 +16204,2025-03-09T00:10:35.609195-08:00,0.0,10.729346,10729.346 +16205,2025-03-09T00:10:46.341911-08:00,0.0,10.732716,10732.716 +16206,2025-03-09T00:10:57.075080-08:00,0.0,10.733169,10733.169 +16207,2025-03-09T00:11:07.816603-08:00,0.0,10.741523,10741.523 +16208,2025-03-09T00:11:18.552296-08:00,0.0,10.735693,10735.693 +16209,2025-03-09T00:11:29.277999-08:00,0.0,10.725703,10725.703 +16210,2025-03-09T00:11:40.007101-08:00,0.0,10.729102,10729.102 +16211,2025-03-09T00:11:50.738179-08:00,0.0,10.731078,10731.078 +16212,2025-03-09T00:12:01.477049-08:00,0.0,10.73887,10738.87 +16213,2025-03-09T00:12:12.210902-08:00,0.0,10.733853,10733.853 +16214,2025-03-09T00:12:22.937132-08:00,0.0,10.72623,10726.23 +16215,2025-03-09T00:12:33.672871-08:00,0.0,10.735739,10735.739 +16216,2025-03-09T00:12:44.407849-08:00,0.0,10.734978,10734.978 +16217,2025-03-09T00:12:55.146847-08:00,0.0,10.738998,10738.998 +16218,2025-03-09T00:13:05.875110-08:00,0.0,10.728263,10728.263 +16219,2025-03-09T00:13:16.603915-08:00,0.0,10.728805,10728.805 +16220,2025-03-09T00:13:27.342848-08:00,0.0,10.738933,10738.933 +16221,2025-03-09T00:13:38.072958-08:00,0.0,10.73011,10730.11 +16222,2025-03-09T00:13:48.811962-08:00,0.0,10.739004,10739.004 +16223,2025-03-09T00:13:59.538227-08:00,0.0,10.726265,10726.265 +16224,2025-03-09T00:14:10.273849-08:00,0.0,10.735622,10735.622 +16225,2025-03-09T00:14:21.014157-08:00,0.0,10.740308,10740.308 +16226,2025-03-09T00:14:31.740914-08:00,0.0,10.726757,10726.757 +16227,2025-03-09T00:14:42.476911-08:00,0.0,10.735997,10735.997 +16228,2025-03-09T00:14:53.218849-08:00,0.0,10.741938,10741.938 +16229,2025-03-09T00:15:03.952029-08:00,0.0,10.73318,10733.18 +16230,2025-03-09T00:15:14.684844-08:00,0.0,10.732815,10732.815 +16231,2025-03-09T00:15:25.414842-08:00,0.0,10.729998,10729.998 +16232,2025-03-09T00:15:36.150371-08:00,0.0,10.735529,10735.529 +16233,2025-03-09T00:15:46.884054-08:00,0.0,10.733683,10733.683 +16234,2025-03-09T00:15:57.613960-08:00,0.0,10.729906,10729.906 +16235,2025-03-09T00:16:08.351123-08:00,0.0,10.737163,10737.163 +16236,2025-03-09T00:16:19.088024-08:00,0.0,10.736901,10736.901 +16237,2025-03-09T00:16:29.815307-08:00,0.0,10.727283,10727.283 +16238,2025-03-09T00:16:40.550844-08:00,0.0,10.735537,10735.537 +16239,2025-03-09T00:16:51.282942-08:00,0.0,10.732098,10732.098 +16240,2025-03-09T00:17:02.018024-08:00,0.0,10.735082,10735.082 +16241,2025-03-09T00:17:12.745847-08:00,0.0,10.727823,10727.823 +16242,2025-03-09T00:17:23.479923-08:00,0.0,10.734076,10734.076 +16243,2025-03-09T00:17:34.221071-08:00,0.0,10.741148,10741.148 +16244,2025-03-09T00:17:44.945051-08:00,0.0,10.72398,10723.98 +16245,2025-03-09T00:17:55.682843-08:00,0.0,10.737792,10737.792 +16246,2025-03-09T00:18:06.406014-08:00,0.0,10.723171,10723.171 +16247,2025-03-09T00:18:17.144245-08:00,0.0,10.738231,10738.231 +16248,2025-03-09T00:18:27.878847-08:00,0.0,10.734602,10734.602 +16249,2025-03-09T00:18:38.606028-08:00,0.0,10.727181,10727.181 +16250,2025-03-09T00:18:49.341021-08:00,0.0,10.734993,10734.993 +16251,2025-03-09T00:19:00.078844-08:00,0.0,10.737823,10737.823 +16252,2025-03-09T00:19:10.810900-08:00,0.0,10.732056,10732.056 +16253,2025-03-09T00:19:21.539057-08:00,0.0,10.728157,10728.157 +16254,2025-03-09T00:19:32.276149-08:00,0.0,10.737092,10737.092 +16255,2025-03-09T00:19:43.004137-08:00,0.0,10.727988,10727.988 +16256,2025-03-09T00:19:53.745846-08:00,0.0,10.741709,10741.709 +16257,2025-03-09T00:20:04.472241-08:00,0.0,10.726395,10726.395 +16258,2025-03-09T00:20:15.206840-08:00,0.0,10.734599,10734.599 +16259,2025-03-09T00:20:25.947040-08:00,0.0,10.7402,10740.2 +16260,2025-03-09T00:20:36.671845-08:00,0.0,10.724805,10724.805 +16261,2025-03-09T00:20:47.410240-08:00,0.0,10.738395,10738.395 +16262,2025-03-09T00:20:58.149182-08:00,0.0,10.738942,10738.942 +16263,2025-03-09T00:21:08.877132-08:00,0.0,10.72795,10727.95 +16264,2025-03-09T00:21:19.613066-08:00,0.0,10.735934,10735.934 +16265,2025-03-09T00:21:30.352649-08:00,0.0,10.739583,10739.583 +16266,2025-03-09T00:21:41.080845-08:00,0.0,10.728196,10728.196 +16267,2025-03-09T00:21:51.814108-08:00,0.0,10.733263,10733.263 +16268,2025-03-09T00:22:02.547877-08:00,0.0,10.733769,10733.769 +16269,2025-03-09T00:22:13.281510-08:00,0.0,10.733633,10733.633 +16270,2025-03-09T00:22:24.015846-08:00,0.0,10.734336,10734.336 +16271,2025-03-09T00:22:34.755083-08:00,0.0,10.739237,10739.237 +16272,2025-03-09T00:22:45.486038-08:00,0.0,10.730955,10730.955 +16273,2025-03-09T00:22:56.217845-08:00,0.0,10.731807,10731.807 +16274,2025-03-09T00:23:06.956872-08:00,0.0,10.739027,10739.027 +16275,2025-03-09T00:23:17.688919-08:00,0.0,10.732047,10732.047 +16276,2025-03-09T00:23:28.419021-08:00,0.0,10.730102,10730.102 +16277,2025-03-09T00:23:39.155896-08:00,0.0,10.736875,10736.875 +16278,2025-03-09T00:23:49.885843-08:00,0.0,10.729947,10729.947 +16279,2025-03-09T00:24:00.625027-08:00,0.0,10.739184,10739.184 +16280,2025-03-09T00:24:11.359030-08:00,0.0,10.734003,10734.003 +16281,2025-03-09T00:24:22.096971-08:00,0.0,10.737941,10737.941 +16282,2025-03-09T00:24:32.828844-08:00,0.0,10.731873,10731.873 +16283,2025-03-09T00:24:43.557944-08:00,0.0,10.7291,10729.1 +16284,2025-03-09T00:24:54.296057-08:00,0.0,10.738113,10738.113 +16285,2025-03-09T00:25:05.030956-08:00,0.0,10.734899,10734.899 +16286,2025-03-09T00:25:15.759845-08:00,0.0,10.728889,10728.889 +16287,2025-03-09T00:25:26.495030-08:00,0.0,10.735185,10735.185 +16288,2025-03-09T00:25:37.230677-08:00,0.0,10.735647,10735.647 +16289,2025-03-09T00:25:47.965847-08:00,0.0,10.73517,10735.17 +16290,2025-03-09T00:25:58.699845-08:00,0.0,10.733998,10733.998 +16291,2025-03-09T00:26:09.435851-08:00,0.0,10.736006,10736.006 +16292,2025-03-09T00:26:20.174015-08:00,0.0,10.738164,10738.164 +16293,2025-03-09T00:26:30.906844-08:00,0.0,10.732829,10732.829 +16294,2025-03-09T00:26:41.641874-08:00,0.0,10.73503,10735.03 +16295,2025-03-09T00:26:52.379093-08:00,0.0,10.737219,10737.219 +16296,2025-03-09T00:27:03.115031-08:00,0.0,10.735938,10735.938 +16297,2025-03-09T00:27:13.842986-08:00,0.0,10.727955,10727.955 +16298,2025-03-09T00:27:24.585839-08:00,0.0,10.742853,10742.853 +16299,2025-03-09T00:27:35.317921-08:00,0.0,10.732082,10732.082 +16300,2025-03-09T00:27:46.047221-08:00,0.0,10.7293,10729.3 +16301,2025-03-09T00:27:56.782843-08:00,0.0,10.735622,10735.622 +16302,2025-03-09T00:28:07.515056-08:00,0.0,10.732213,10732.213 +16303,2025-03-09T00:28:18.251030-08:00,0.0,10.735974,10735.974 +16304,2025-03-09T00:28:28.986900-08:00,0.0,10.73587,10735.87 +16305,2025-03-09T00:28:39.711908-08:00,0.0,10.725008,10725.008 +16306,2025-03-09T00:28:50.442880-08:00,0.0,10.730972,10730.972 +16307,2025-03-09T00:29:01.177738-08:00,0.0,10.734858,10734.858 +16308,2025-03-09T00:29:11.909879-08:00,0.0,10.732141,10732.141 +16309,2025-03-09T00:29:22.641063-08:00,0.0,10.731184,10731.184 +16310,2025-03-09T00:29:33.373002-08:00,0.0,10.731939,10731.939 +16311,2025-03-09T00:29:44.094045-08:00,0.0,10.721043,10721.043 +16312,2025-03-09T00:29:54.821006-08:00,0.0,10.726961,10726.961 +16313,2025-03-09T00:30:05.556290-08:00,0.0,10.735284,10735.284 +16314,2025-03-09T00:30:16.284842-08:00,0.0,10.728552,10728.552 +16315,2025-03-09T00:30:27.022124-08:00,0.0,10.737282,10737.282 +16316,2025-03-09T00:30:37.755028-08:00,0.0,10.732904,10732.904 +16317,2025-03-09T00:30:48.484847-08:00,0.0,10.729819,10729.819 +16318,2025-03-09T00:30:59.212840-08:00,0.0,10.727993,10727.993 +16319,2025-03-09T00:31:09.953859-08:00,0.0,10.741019,10741.019 +16320,2025-03-09T00:31:20.677841-08:00,0.0,10.723982,10723.982 +16321,2025-03-09T00:31:31.409849-08:00,0.0,10.732008,10732.008 +16322,2025-03-09T00:31:42.144520-08:00,0.0,10.734671,10734.671 +16323,2025-03-09T00:31:52.872844-08:00,0.0,10.728324,10728.324 +16324,2025-03-09T00:32:03.614039-08:00,0.0,10.741195,10741.195 +16325,2025-03-09T00:32:14.345847-08:00,0.0,10.731808,10731.808 +16326,2025-03-09T00:32:25.081225-08:00,0.0,10.735378,10735.378 +16327,2025-03-09T00:32:35.816918-08:00,0.0,10.735693,10735.693 +16328,2025-03-09T00:32:46.552147-08:00,0.0,10.735229,10735.229 +16329,2025-03-09T00:32:57.290363-08:00,0.0,10.738216,10738.216 +16330,2025-03-09T00:33:08.014029-08:00,0.0,10.723666,10723.666 +16331,2025-03-09T00:33:18.747844-08:00,0.0,10.733815,10733.815 +16332,2025-03-09T00:33:29.477033-08:00,0.0,10.729189,10729.189 +16333,2025-03-09T00:33:40.207090-08:00,0.0,10.730057,10730.057 +16334,2025-03-09T00:33:50.944106-08:00,0.0,10.737016,10737.016 +16335,2025-03-09T00:34:01.671051-08:00,0.0,10.726945,10726.945 +16336,2025-03-09T00:34:12.409031-08:00,0.0,10.73798,10737.98 +16337,2025-03-09T00:34:23.138489-08:00,0.0,10.729458,10729.458 +16338,2025-03-09T00:34:33.866915-08:00,0.0,10.728426,10728.426 +16339,2025-03-09T00:34:36.353360-08:00,0.0,2.486445,2486.445 +16340,2025-03-09T00:34:44.603060-08:00,0.0,8.2497,8249.7 +16341,2025-03-09T00:34:55.341018-08:00,0.0,10.737958,10737.958 +16342,2025-03-09T00:35:06.064874-08:00,0.0,10.723856,10723.856 +16343,2025-03-09T00:35:16.803848-08:00,0.0,10.738974,10738.974 +16344,2025-03-09T00:35:27.531042-08:00,0.0,10.727194,10727.194 +16345,2025-03-09T00:35:38.265221-08:00,0.0,10.734179,10734.179 +16346,2025-03-09T00:35:48.995012-08:00,0.0,10.729791,10729.791 +16347,2025-03-09T00:35:59.731874-08:00,0.0,10.736862,10736.862 +16348,2025-03-09T00:36:10.461194-08:00,0.0,10.72932,10729.32 +16349,2025-03-09T00:36:21.202844-08:00,0.0,10.74165,10741.65 +16350,2025-03-09T00:36:31.934399-08:00,0.0,10.731555,10731.555 +16351,2025-03-09T00:36:42.669051-08:00,0.0,10.734652,10734.652 +16352,2025-03-09T00:36:53.404020-08:00,0.0,10.734969,10734.969 +16353,2025-03-09T00:37:04.133161-08:00,0.0,10.729141,10729.141 +16354,2025-03-09T00:37:14.865925-08:00,0.0,10.732764,10732.764 +16355,2025-03-09T00:37:25.599246-08:00,0.0,10.733321,10733.321 +16356,2025-03-09T00:37:36.328945-08:00,0.0,10.729699,10729.699 +16357,2025-03-09T00:37:47.069846-08:00,0.0,10.740901,10740.901 +16358,2025-03-09T00:37:57.797071-08:00,0.0,10.727225,10727.225 +16359,2025-03-09T00:38:08.536018-08:00,0.0,10.738947,10738.947 +16360,2025-03-09T00:38:19.262843-08:00,0.0,10.726825,10726.825 +16361,2025-03-09T00:38:29.995445-08:00,0.0,10.732602,10732.602 +16362,2025-03-09T00:38:40.730273-08:00,0.0,10.734828,10734.828 +16363,2025-03-09T00:38:42.101388-08:00,0.0,1.371115,1371.115 +16364,2025-03-09T00:38:51.467870-08:00,0.0,9.366482,9366.482 +16365,2025-03-09T00:39:02.205056-08:00,0.0,10.737186,10737.186 +16366,2025-03-09T00:39:12.941848-08:00,0.0,10.736792,10736.792 +16367,2025-03-09T00:39:23.671702-08:00,0.0,10.729854,10729.854 +16368,2025-03-09T00:39:34.398845-08:00,0.0,10.727143,10727.143 +16369,2025-03-09T00:39:45.132851-08:00,0.0,10.734006,10734.006 +16370,2025-03-09T00:39:55.872845-08:00,0.0,10.739994,10739.994 +16371,2025-03-09T00:40:06.607017-08:00,0.0,10.734172,10734.172 +16372,2025-03-09T00:40:17.343107-08:00,0.0,10.73609,10736.09 +16373,2025-03-09T00:40:28.076847-08:00,0.0,10.73374,10733.74 +16374,2025-03-09T00:40:38.807449-08:00,0.0,10.730602,10730.602 +16375,2025-03-09T00:40:49.544025-08:00,0.0,10.736576,10736.576 +16376,2025-03-09T00:41:00.281850-08:00,0.0,10.737825,10737.825 +16377,2025-03-09T00:41:11.009920-08:00,0.0,10.72807,10728.07 +16378,2025-03-09T00:41:21.747056-08:00,0.0,10.737136,10737.136 +16379,2025-03-09T00:41:32.471844-08:00,0.0,10.724788,10724.788 +16380,2025-03-09T00:41:43.209846-08:00,0.0,10.738002,10738.002 +16381,2025-03-09T00:41:53.946019-08:00,0.0,10.736173,10736.173 +16382,2025-03-09T00:42:04.676021-08:00,0.0,10.730002,10730.002 +16383,2025-03-09T00:42:15.405840-08:00,0.0,10.729819,10729.819 +16384,2025-03-09T00:42:26.136847-08:00,0.0,10.731007,10731.007 +16385,2025-03-09T00:42:36.868014-08:00,0.0,10.731167,10731.167 +16386,2025-03-09T00:42:47.601847-08:00,0.0,10.733833,10733.833 +16387,2025-03-09T00:42:58.333609-08:00,0.0,10.731762,10731.762 +16388,2025-03-09T00:43:09.063125-08:00,0.0,10.729516,10729.516 +16389,2025-03-09T00:43:19.800058-08:00,0.0,10.736933,10736.933 +16390,2025-03-09T00:43:30.530844-08:00,0.0,10.730786,10730.786 +16391,2025-03-09T00:43:41.261847-08:00,0.0,10.731003,10731.003 +16392,2025-03-09T00:43:51.996034-08:00,0.0,10.734187,10734.187 +16393,2025-03-09T00:44:02.722874-08:00,0.0,10.72684,10726.84 +16394,2025-03-09T00:44:13.455039-08:00,0.0,10.732165,10732.165 +16395,2025-03-09T00:44:24.194225-08:00,0.0,10.739186,10739.186 +16396,2025-03-09T00:44:34.924844-08:00,0.0,10.730619,10730.619 +16397,2025-03-09T00:44:45.653891-08:00,0.0,10.729047,10729.047 +16398,2025-03-09T00:44:56.382227-08:00,0.0,10.728336,10728.336 +16399,2025-03-09T00:45:07.117020-08:00,0.0,10.734793,10734.793 +16400,2025-03-09T00:45:17.842844-08:00,0.0,10.725824,10725.824 +16401,2025-03-09T00:45:28.575036-08:00,0.0,10.732192,10732.192 +16402,2025-03-09T00:45:39.301047-08:00,0.0,10.726011,10726.011 +16403,2025-03-09T00:45:50.031067-08:00,0.0,10.73002,10730.02 +16404,2025-03-09T00:46:00.765011-08:00,0.0,10.733944,10733.944 +16405,2025-03-09T00:46:11.497052-08:00,0.0,10.732041,10732.041 +16406,2025-03-09T00:46:22.233847-08:00,0.0,10.736795,10736.795 +16407,2025-03-09T00:46:32.964005-08:00,0.0,10.730158,10730.158 +16408,2025-03-09T00:46:43.697274-08:00,0.0,10.733269,10733.269 +16409,2025-03-09T00:46:54.429600-08:00,0.0,10.732326,10732.326 +16410,2025-03-09T00:47:05.156591-08:00,0.0,10.726991,10726.991 +16411,2025-03-09T00:47:15.890031-08:00,0.0,10.73344,10733.44 +16412,2025-03-09T00:47:26.625918-08:00,0.0,10.735887,10735.887 +16413,2025-03-09T00:47:37.357845-08:00,0.0,10.731927,10731.927 +16414,2025-03-09T00:47:48.081028-08:00,0.0,10.723183,10723.183 +16415,2025-03-09T00:47:58.819850-08:00,0.0,10.738822,10738.822 +16416,2025-03-09T00:48:09.559113-08:00,0.0,10.739263,10739.263 +16417,2025-03-09T00:48:20.284848-08:00,0.0,10.725735,10725.735 +16418,2025-03-09T00:48:31.027019-08:00,0.0,10.742171,10742.171 +16419,2025-03-09T00:48:41.754841-08:00,0.0,10.727822,10727.822 +16420,2025-03-09T00:48:52.490019-08:00,0.0,10.735178,10735.178 +16421,2025-03-09T00:49:03.229933-08:00,0.0,10.739914,10739.914 +16422,2025-03-09T00:49:13.963031-08:00,0.0,10.733098,10733.098 +16423,2025-03-09T00:49:24.690844-08:00,0.0,10.727813,10727.813 +16424,2025-03-09T00:49:35.424846-08:00,0.0,10.734002,10734.002 +16425,2025-03-09T00:49:46.167844-08:00,0.0,10.742998,10742.998 +16426,2025-03-09T00:49:56.901015-08:00,0.0,10.733171,10733.171 +16427,2025-03-09T00:50:07.636868-08:00,0.0,10.735853,10735.853 +16428,2025-03-09T00:50:18.375847-08:00,0.0,10.738979,10738.979 +16429,2025-03-09T00:50:29.103440-08:00,0.0,10.727593,10727.593 +16430,2025-03-09T00:50:39.841015-08:00,0.0,10.737575,10737.575 +16431,2025-03-09T00:50:50.580046-08:00,0.0,10.739031,10739.031 +16432,2025-03-09T00:51:01.311909-08:00,0.0,10.731863,10731.863 +16433,2025-03-09T00:51:12.049154-08:00,0.0,10.737245,10737.245 +16434,2025-03-09T00:51:22.778018-08:00,0.0,10.728864,10728.864 +16435,2025-03-09T00:51:33.521837-08:00,0.0,10.743819,10743.819 +16436,2025-03-09T00:51:44.252845-08:00,0.0,10.731008,10731.008 +16437,2025-03-09T00:51:54.993054-08:00,0.0,10.740209,10740.209 +16438,2025-03-09T00:52:05.732033-08:00,0.0,10.738979,10738.979 +16439,2025-03-09T00:52:16.469639-08:00,0.0,10.737606,10737.606 +16440,2025-03-09T00:52:27.236605-08:00,0.0,10.766966,10766.966 +16441,2025-03-09T00:52:37.965646-08:00,0.0,10.729041,10729.041 +16442,2025-03-09T00:52:48.705446-08:00,0.0,10.7398,10739.8 +16443,2025-03-09T00:52:59.435004-08:00,0.0,10.729558,10729.558 +16444,2025-03-09T00:53:10.168442-08:00,0.0,10.733438,10733.438 +16445,2025-03-09T00:53:20.906653-08:00,0.0,10.738211,10738.211 +16446,2025-03-09T00:53:31.640800-08:00,0.0,10.734147,10734.147 +16447,2025-03-09T00:53:42.378299-08:00,0.0,10.737499,10737.499 +16448,2025-03-09T00:53:53.109443-08:00,0.0,10.731144,10731.144 +16449,2025-03-09T00:54:03.847498-08:00,0.0,10.738055,10738.055 +16450,2025-03-09T00:54:14.575441-08:00,0.0,10.727943,10727.943 +16451,2025-03-09T00:54:25.311842-08:00,0.0,10.736401,10736.401 +16452,2025-03-09T00:54:36.037470-08:00,0.0,10.725628,10725.628 +16453,2025-03-09T00:54:46.778776-08:00,0.0,10.741306,10741.306 +16454,2025-03-09T00:54:57.516623-08:00,0.0,10.737847,10737.847 +16455,2025-03-09T00:55:08.251776-08:00,0.0,10.735153,10735.153 +16456,2025-03-09T00:55:18.976695-08:00,0.0,10.724919,10724.919 +16457,2025-03-09T00:55:29.718640-08:00,0.0,10.741945,10741.945 +16458,2025-03-09T00:55:40.447571-08:00,0.0,10.728931,10728.931 +16459,2025-03-09T00:55:51.176522-08:00,0.0,10.728951,10728.951 +16460,2025-03-09T00:56:01.918446-08:00,0.0,10.741924,10741.924 +16461,2025-03-09T00:56:12.653743-08:00,0.0,10.735297,10735.297 +16462,2025-03-09T00:56:23.386303-08:00,0.0,10.73256,10732.56 +16463,2025-03-09T00:56:34.125161-08:00,0.0,10.738858,10738.858 +16464,2025-03-09T00:56:44.855444-08:00,0.0,10.730283,10730.283 +16465,2025-03-09T00:56:55.588927-08:00,0.0,10.733483,10733.483 +16466,2025-03-09T00:57:06.322648-08:00,0.0,10.733721,10733.721 +16467,2025-03-09T00:57:17.049446-08:00,0.0,10.726798,10726.798 +16468,2025-03-09T00:57:27.783444-08:00,0.0,10.733998,10733.998 +16469,2025-03-09T00:57:38.518649-08:00,0.0,10.735205,10735.205 +16470,2025-03-09T00:57:49.249653-08:00,0.0,10.731004,10731.004 +16471,2025-03-09T00:57:59.981553-08:00,0.0,10.7319,10731.9 +16472,2025-03-09T00:58:10.713647-08:00,0.0,10.732094,10732.094 +16473,2025-03-09T00:58:21.435442-08:00,0.0,10.721795,10721.795 +16474,2025-03-09T00:58:32.169507-08:00,0.0,10.734065,10734.065 +16475,2025-03-09T00:58:42.903874-08:00,0.0,10.734367,10734.367 +16476,2025-03-09T00:58:53.632558-08:00,0.0,10.728684,10728.684 +16477,2025-03-09T00:59:04.361730-08:00,0.0,10.729172,10729.172 +16478,2025-03-09T00:59:15.085621-08:00,0.0,10.723891,10723.891 +16479,2025-03-09T00:59:25.816445-08:00,0.0,10.730824,10730.824 +16480,2025-03-09T00:59:36.552443-08:00,0.0,10.735998,10735.998 +16481,2025-03-09T00:59:47.284849-08:00,0.0,10.732406,10732.406 +16482,2025-03-09T00:59:58.005513-08:00,0.0,10.720664,10720.664 +16483,2025-03-09T01:00:08.734445-08:00,0.0,10.728932,10728.932 +16484,2025-03-09T01:00:19.470630-08:00,0.0,10.736185,10736.185 +16485,2025-03-09T01:00:30.199510-08:00,0.0,10.72888,10728.88 +16486,2025-03-09T01:00:40.925644-08:00,0.0,10.726134,10726.134 +16487,2025-03-09T01:00:51.648440-08:00,0.0,10.722796,10722.796 +16488,2025-03-09T01:01:02.386438-08:00,0.0,10.737998,10737.998 +16489,2025-03-09T01:01:13.104632-08:00,0.0,10.718194,10718.194 +16490,2025-03-09T01:01:23.840395-08:00,0.0,10.735763,10735.763 +16491,2025-03-09T01:01:34.566445-08:00,0.0,10.72605,10726.05 +16492,2025-03-09T01:01:45.300579-08:00,0.0,10.734134,10734.134 +16493,2025-03-09T01:01:56.020687-08:00,0.0,10.720108,10720.108 +16494,2025-03-09T01:02:06.757634-08:00,0.0,10.736947,10736.947 +16495,2025-03-09T01:02:17.487680-08:00,0.0,10.730046,10730.046 +16496,2025-03-09T01:02:28.215670-08:00,0.0,10.72799,10727.99 +16497,2025-03-09T01:02:38.947666-08:00,0.0,10.731996,10731.996 +16498,2025-03-09T01:02:49.679658-08:00,0.0,10.731992,10731.992 +16499,2025-03-09T01:03:00.408765-08:00,0.0,10.729107,10729.107 +16500,2025-03-09T01:03:11.140660-08:00,0.0,10.731895,10731.895 +16501,2025-03-09T01:03:21.860239-08:00,0.0,10.719579,10719.579 +16502,2025-03-09T01:03:32.590448-08:00,0.0,10.730209,10730.209 +16503,2025-03-09T01:03:43.319346-08:00,0.0,10.728898,10728.898 +16504,2025-03-09T01:03:54.052508-08:00,0.0,10.733162,10733.162 +16505,2025-03-09T01:04:04.777445-08:00,0.0,10.724937,10724.937 +16506,2025-03-09T01:04:15.504621-08:00,0.0,10.727176,10727.176 +16507,2025-03-09T01:04:26.240645-08:00,0.0,10.736024,10736.024 +16508,2025-03-09T01:04:36.970439-08:00,0.0,10.729794,10729.794 +16509,2025-03-09T01:04:47.692285-08:00,0.0,10.721846,10721.846 +16510,2025-03-09T01:04:58.430644-08:00,0.0,10.738359,10738.359 +16511,2025-03-09T01:05:09.160443-08:00,0.0,10.729799,10729.799 +16512,2025-03-09T01:05:19.890612-08:00,0.0,10.730169,10730.169 +16513,2025-03-09T01:05:30.615472-08:00,0.0,10.72486,10724.86 +16514,2025-03-09T01:05:41.338633-08:00,0.0,10.723161,10723.161 +16515,2025-03-09T01:05:52.063446-08:00,0.0,10.724813,10724.813 +16516,2025-03-09T01:06:02.794444-08:00,0.0,10.730998,10730.998 +16517,2025-03-09T01:06:13.521665-08:00,0.0,10.727221,10727.221 +16518,2025-03-09T01:06:24.246449-08:00,0.0,10.724784,10724.784 +16519,2025-03-09T01:06:34.972719-08:00,0.0,10.72627,10726.27 +16520,2025-03-09T01:06:45.694440-08:00,0.0,10.721721,10721.721 +16521,2025-03-09T01:06:56.426651-08:00,0.0,10.732211,10732.211 +16522,2025-03-09T01:07:07.144442-08:00,0.0,10.717791,10717.791 +16523,2025-03-09T01:07:17.876446-08:00,0.0,10.732004,10732.004 +16524,2025-03-09T01:07:28.602817-08:00,0.0,10.726371,10726.371 +16525,2025-03-09T01:07:39.328442-08:00,0.0,10.725625,10725.625 +16526,2025-03-09T01:07:50.063567-08:00,0.0,10.735125,10735.125 +16527,2025-03-09T01:08:00.783467-08:00,0.0,10.7199,10719.9 +16528,2025-03-09T01:08:11.511479-08:00,0.0,10.728012,10728.012 +16529,2025-03-09T01:08:22.243873-08:00,0.0,10.732394,10732.394 +16530,2025-03-09T01:08:32.962443-08:00,0.0,10.71857,10718.57 +16531,2025-03-09T01:08:43.690447-08:00,0.0,10.728004,10728.004 +16532,2025-03-09T01:08:54.419964-08:00,0.0,10.729517,10729.517 +16533,2025-03-09T01:09:05.152444-08:00,0.0,10.73248,10732.48 +16534,2025-03-09T01:09:15.875994-08:00,0.0,10.72355,10723.55 +16535,2025-03-09T01:09:26.600890-08:00,0.0,10.724896,10724.896 +16536,2025-03-09T01:09:37.329446-08:00,0.0,10.728556,10728.556 +16537,2025-03-09T01:09:48.054878-08:00,0.0,10.725432,10725.432 +16538,2025-03-09T01:09:58.784443-08:00,0.0,10.729565,10729.565 +16539,2025-03-09T01:10:09.513652-08:00,0.0,10.729209,10729.209 +16540,2025-03-09T01:10:20.242650-08:00,0.0,10.728998,10728.998 +16541,2025-03-09T01:10:30.967443-08:00,0.0,10.724793,10724.793 +16542,2025-03-09T01:10:41.699614-08:00,0.0,10.732171,10732.171 +16543,2025-03-09T01:10:52.416653-08:00,0.0,10.717039,10717.039 +16544,2025-03-09T01:11:03.151627-08:00,0.0,10.734974,10734.974 +16545,2025-03-09T01:11:13.876450-08:00,0.0,10.724823,10724.823 +16546,2025-03-09T01:11:24.604504-08:00,0.0,10.728054,10728.054 +16547,2025-03-09T01:11:35.337543-08:00,0.0,10.733039,10733.039 +16548,2025-03-09T01:11:46.062645-08:00,0.0,10.725102,10725.102 +16549,2025-03-09T01:11:56.793514-08:00,0.0,10.730869,10730.869 +16550,2025-03-09T01:12:07.522633-08:00,0.0,10.729119,10729.119 +16551,2025-03-09T01:12:18.242608-08:00,0.0,10.719975,10719.975 +16552,2025-03-09T01:12:28.977441-08:00,0.0,10.734833,10734.833 +16553,2025-03-09T01:12:39.711656-08:00,0.0,10.734215,10734.215 +16554,2025-03-09T01:12:50.440443-08:00,0.0,10.728787,10728.787 +16555,2025-03-09T01:13:01.173817-08:00,0.0,10.733374,10733.374 +16556,2025-03-09T01:13:11.903955-08:00,0.0,10.730138,10730.138 +16557,2025-03-09T01:13:22.633650-08:00,0.0,10.729695,10729.695 +16558,2025-03-09T01:13:33.369444-08:00,0.0,10.735794,10735.794 +16559,2025-03-09T01:13:44.100672-08:00,0.0,10.731228,10731.228 +16560,2025-03-09T01:13:54.824440-08:00,0.0,10.723768,10723.768 +16561,2025-03-09T01:14:05.553709-08:00,0.0,10.729269,10729.269 +16562,2025-03-09T01:14:16.287877-08:00,0.0,10.734168,10734.168 +16563,2025-03-09T01:14:27.015442-08:00,0.0,10.727565,10727.565 +16564,2025-03-09T01:14:37.746445-08:00,0.0,10.731003,10731.003 +16565,2025-03-09T01:14:48.467485-08:00,0.0,10.72104,10721.04 +16566,2025-03-09T01:14:59.203473-08:00,0.0,10.735988,10735.988 +16567,2025-03-09T01:15:09.927240-08:00,0.0,10.723767,10723.767 +16568,2025-03-09T01:15:20.665135-08:00,0.0,10.737895,10737.895 +16569,2025-03-09T01:15:31.389514-08:00,0.0,10.724379,10724.379 +16570,2025-03-09T01:15:42.124447-08:00,0.0,10.734933,10734.933 +16571,2025-03-09T01:15:52.843603-08:00,0.0,10.719156,10719.156 +16572,2025-03-09T01:16:03.580142-08:00,0.0,10.736539,10736.539 +16573,2025-03-09T01:16:14.305775-08:00,0.0,10.725633,10725.633 +16574,2025-03-09T01:16:25.039446-08:00,0.0,10.733671,10733.671 +16575,2025-03-09T01:16:35.768443-08:00,0.0,10.728997,10728.997 +16576,2025-03-09T01:16:46.495702-08:00,0.0,10.727259,10727.259 +16577,2025-03-09T01:16:57.223122-08:00,0.0,10.72742,10727.42 +16578,2025-03-09T01:17:07.954645-08:00,0.0,10.731523,10731.523 +16579,2025-03-09T01:17:16.156795-08:00,0.0,8.20215,8202.15 +16580,2025-03-09T01:17:18.685861-08:00,0.0,2.529066,2529.066 +16581,2025-03-09T01:17:29.421443-08:00,0.0,10.735582,10735.582 +16582,2025-03-09T01:17:40.146445-08:00,0.0,10.725002,10725.002 +16583,2025-03-09T01:17:50.880679-08:00,0.0,10.734234,10734.234 +16584,2025-03-09T01:18:01.607556-08:00,0.0,10.726877,10726.877 +16585,2025-03-09T01:18:12.335817-08:00,0.0,10.728261,10728.261 +16586,2025-03-09T01:18:23.066821-08:00,0.0,10.731004,10731.004 +16587,2025-03-09T01:18:33.793464-08:00,0.0,10.726643,10726.643 +16588,2025-03-09T01:18:44.523658-08:00,0.0,10.730194,10730.194 +16589,2025-03-09T01:18:55.262610-08:00,0.0,10.738952,10738.952 +16590,2025-03-09T01:19:05.985515-08:00,0.0,10.722905,10722.905 +16591,2025-03-09T01:19:16.722456-08:00,0.0,10.736941,10736.941 +16592,2025-03-09T01:19:27.456631-08:00,0.0,10.734175,10734.175 +16593,2025-03-09T01:19:38.182450-08:00,0.0,10.725819,10725.819 +16594,2025-03-09T01:19:48.904522-08:00,0.0,10.722072,10722.072 +16595,2025-03-09T01:19:59.641651-08:00,0.0,10.737129,10737.129 +16596,2025-03-09T01:20:10.368444-08:00,0.0,10.726793,10726.793 +16597,2025-03-09T01:20:21.106481-08:00,0.0,10.738037,10738.037 +16598,2025-03-09T01:20:31.831175-08:00,0.0,10.724694,10724.694 +16599,2025-03-09T01:20:42.564444-08:00,0.0,10.733269,10733.269 +16600,2025-03-09T01:20:53.286467-08:00,0.0,10.722023,10722.023 +16601,2025-03-09T01:21:04.019475-08:00,0.0,10.733008,10733.008 +16602,2025-03-09T01:21:14.758447-08:00,0.0,10.738972,10738.972 +16603,2025-03-09T01:21:25.489543-08:00,0.0,10.731096,10731.096 +16604,2025-03-09T01:21:36.214582-08:00,0.0,10.725039,10725.039 +16605,2025-03-09T01:21:46.945445-08:00,0.0,10.730863,10730.863 +16606,2025-03-09T01:21:57.673444-08:00,0.0,10.727999,10727.999 +16607,2025-03-09T01:22:08.411899-08:00,0.0,10.738455,10738.455 +16608,2025-03-09T01:22:19.131881-08:00,0.0,10.719982,10719.982 +16609,2025-03-09T01:22:29.871574-08:00,0.0,10.739693,10739.693 +16610,2025-03-09T01:22:40.598624-08:00,0.0,10.72705,10727.05 +16611,2025-03-09T01:22:51.331444-08:00,0.0,10.73282,10732.82 +16612,2025-03-09T01:23:02.058446-08:00,0.0,10.727002,10727.002 +16613,2025-03-09T01:23:12.791885-08:00,0.0,10.733439,10733.439 +16614,2025-03-09T01:23:23.516443-08:00,0.0,10.724558,10724.558 +16615,2025-03-09T01:23:34.254492-08:00,0.0,10.738049,10738.049 +16616,2025-03-09T01:23:44.979725-08:00,0.0,10.725233,10725.233 +16617,2025-03-09T01:23:55.708519-08:00,0.0,10.728794,10728.794 +16618,2025-03-09T01:24:06.438652-08:00,0.0,10.730133,10730.133 +16619,2025-03-09T01:24:17.160440-08:00,0.0,10.721788,10721.788 +16620,2025-03-09T01:24:27.888549-08:00,0.0,10.728109,10728.109 +16621,2025-03-09T01:24:38.619824-08:00,0.0,10.731275,10731.275 +16622,2025-03-09T01:24:49.350746-08:00,0.0,10.730922,10730.922 +16623,2025-03-09T01:25:00.068573-08:00,0.0,10.717827,10717.827 +16624,2025-03-09T01:25:10.799865-08:00,0.0,10.731292,10731.292 +16625,2025-03-09T01:25:21.521534-08:00,0.0,10.721669,10721.669 +16626,2025-03-09T01:25:29.010991-08:00,0.0,7.489457,7489.457 +16627,2025-03-09T01:25:32.256553-08:00,0.0,3.245562,3245.562 +16628,2025-03-09T01:25:42.979637-08:00,0.0,10.723084,10723.084 +16629,2025-03-09T01:25:53.715527-08:00,0.0,10.73589,10735.89 +16630,2025-03-09T01:26:04.436001-08:00,0.0,10.720474,10720.474 +16631,2025-03-09T01:26:15.170444-08:00,0.0,10.734443,10734.443 +16632,2025-03-09T01:26:25.890641-08:00,0.0,10.720197,10720.197 +16633,2025-03-09T01:26:36.626225-08:00,0.0,10.735584,10735.584 +16634,2025-03-09T01:26:47.347439-08:00,0.0,10.721214,10721.214 +16635,2025-03-09T01:26:58.079624-08:00,0.0,10.732185,10732.185 +16636,2025-03-09T01:27:08.805650-08:00,0.0,10.726026,10726.026 +16637,2025-03-09T01:27:19.540523-08:00,0.0,10.734873,10734.873 +16638,2025-03-09T01:27:30.272617-08:00,0.0,10.732094,10732.094 +16639,2025-03-09T01:27:41.000448-08:00,0.0,10.727831,10727.831 +16640,2025-03-09T01:27:51.726443-08:00,0.0,10.725995,10725.995 +16641,2025-03-09T01:28:02.446447-08:00,0.0,10.720004,10720.004 +16642,2025-03-09T01:28:13.183474-08:00,0.0,10.737027,10737.027 +16643,2025-03-09T01:28:23.908619-08:00,0.0,10.725145,10725.145 +16644,2025-03-09T01:28:34.630446-08:00,0.0,10.721827,10721.827 +16645,2025-03-09T01:28:45.358544-08:00,0.0,10.728098,10728.098 +16646,2025-03-09T01:28:56.090685-08:00,0.0,10.732141,10732.141 +16647,2025-03-09T01:29:06.812443-08:00,0.0,10.721758,10721.758 +16648,2025-03-09T01:29:17.547179-08:00,0.0,10.734736,10734.736 +16649,2025-03-09T01:29:28.269447-08:00,0.0,10.722268,10722.268 +16650,2025-03-09T01:29:38.997656-08:00,0.0,10.728209,10728.209 +16651,2025-03-09T01:29:49.722545-08:00,0.0,10.724889,10724.889 +16652,2025-03-09T01:30:00.450886-08:00,0.0,10.728341,10728.341 +16653,2025-03-09T01:30:11.175927-08:00,0.0,10.725041,10725.041 +16654,2025-03-09T01:30:21.903580-08:00,0.0,10.727653,10727.653 +16655,2025-03-09T01:30:32.637445-08:00,0.0,10.733865,10733.865 +16656,2025-03-09T01:30:43.367642-08:00,0.0,10.730197,10730.197 +16657,2025-03-09T01:30:54.089678-08:00,0.0,10.722036,10722.036 +16658,2025-03-09T01:31:04.813624-08:00,0.0,10.723946,10723.946 +16659,2025-03-09T01:31:15.548444-08:00,0.0,10.73482,10734.82 +16660,2025-03-09T01:31:26.271452-08:00,0.0,10.723008,10723.008 +16661,2025-03-09T01:31:36.999957-08:00,0.0,10.728505,10728.505 +16662,2025-03-09T01:31:47.728446-08:00,0.0,10.728489,10728.489 +16663,2025-03-09T01:31:58.452651-08:00,0.0,10.724205,10724.205 +16664,2025-03-09T01:32:09.185444-08:00,0.0,10.732793,10732.793 +16665,2025-03-09T01:32:19.904446-08:00,0.0,10.719002,10719.002 +16666,2025-03-09T01:32:30.636820-08:00,0.0,10.732374,10732.374 +16667,2025-03-09T01:32:41.361490-08:00,0.0,10.72467,10724.67 +16668,2025-03-09T01:32:52.093622-08:00,0.0,10.732132,10732.132 +16669,2025-03-09T01:33:02.814651-08:00,0.0,10.721029,10721.029 +16670,2025-03-09T01:33:13.541620-08:00,0.0,10.726969,10726.969 +16671,2025-03-09T01:33:24.272751-08:00,0.0,10.731131,10731.131 +16672,2025-03-09T01:33:34.996514-08:00,0.0,10.723763,10723.763 +16673,2025-03-09T01:33:45.722695-08:00,0.0,10.726181,10726.181 +16674,2025-03-09T01:33:56.454446-08:00,0.0,10.731751,10731.751 +16675,2025-03-09T01:34:07.180174-08:00,0.0,10.725728,10725.728 +16676,2025-03-09T01:34:17.906629-08:00,0.0,10.726455,10726.455 +16677,2025-03-09T01:34:28.635651-08:00,0.0,10.729022,10729.022 +16678,2025-03-09T01:34:39.360662-08:00,0.0,10.725011,10725.011 +16679,2025-03-09T01:34:50.088451-08:00,0.0,10.727789,10727.789 +16680,2025-03-09T01:35:00.818440-08:00,0.0,10.729989,10729.989 +16681,2025-03-09T01:35:11.549459-08:00,0.0,10.731019,10731.019 +16682,2025-03-09T01:35:22.273469-08:00,0.0,10.72401,10724.01 +16683,2025-03-09T01:35:33.010659-08:00,0.0,10.73719,10737.19 +16684,2025-03-09T01:35:43.736652-08:00,0.0,10.725993,10725.993 +16685,2025-03-09T01:35:54.470477-08:00,0.0,10.733825,10733.825 +16686,2025-03-09T01:36:05.198446-08:00,0.0,10.727969,10727.969 +16687,2025-03-09T01:36:15.926835-08:00,0.0,10.728389,10728.389 +16688,2025-03-09T01:36:26.655446-08:00,0.0,10.728611,10728.611 +16689,2025-03-09T01:36:37.387511-08:00,0.0,10.732065,10732.065 +16690,2025-03-09T01:36:48.115642-08:00,0.0,10.728131,10728.131 +16691,2025-03-09T01:36:58.853446-08:00,0.0,10.737804,10737.804 +16692,2025-03-09T01:37:09.578444-08:00,0.0,10.724998,10724.998 +16693,2025-03-09T01:37:20.308620-08:00,0.0,10.730176,10730.176 +16694,2025-03-09T01:37:31.032858-08:00,0.0,10.724238,10724.238 +16695,2025-03-09T01:37:41.771476-08:00,0.0,10.738618,10738.618 +16696,2025-03-09T01:37:52.500609-08:00,0.0,10.729133,10729.133 +16697,2025-03-09T01:38:03.228503-08:00,0.0,10.727894,10727.894 +16698,2025-03-09T01:38:13.962443-08:00,0.0,10.73394,10733.94 +16699,2025-03-09T01:38:24.682521-08:00,0.0,10.720078,10720.078 +16700,2025-03-09T01:38:35.415443-08:00,0.0,10.732922,10732.922 +16701,2025-03-09T01:38:46.144849-08:00,0.0,10.729406,10729.406 +16702,2025-03-09T01:38:56.881647-08:00,0.0,10.736798,10736.798 +16703,2025-03-09T01:39:07.607794-08:00,0.0,10.726147,10726.147 +16704,2025-03-09T01:39:18.339445-08:00,0.0,10.731651,10731.651 +16705,2025-03-09T01:39:29.072862-08:00,0.0,10.733417,10733.417 +16706,2025-03-09T01:39:39.803508-08:00,0.0,10.730646,10730.646 +16707,2025-03-09T01:39:50.534154-08:00,0.0,10.730646,10730.646 +16708,2025-03-09T01:40:01.265647-08:00,0.0,10.731493,10731.493 +16709,2025-03-09T01:40:11.994445-08:00,0.0,10.728798,10728.798 +16710,2025-03-09T01:40:22.719652-08:00,0.0,10.725207,10725.207 +16711,2025-03-09T01:40:33.450507-08:00,0.0,10.730855,10730.855 +16712,2025-03-09T01:40:44.184449-08:00,0.0,10.733942,10733.942 +16713,2025-03-09T01:40:54.907982-08:00,0.0,10.723533,10723.533 +16714,2025-03-09T01:41:05.638444-08:00,0.0,10.730462,10730.462 +16715,2025-03-09T01:41:16.371786-08:00,0.0,10.733342,10733.342 +16716,2025-03-09T01:41:27.097577-08:00,0.0,10.725791,10725.791 +16717,2025-03-09T01:41:37.829473-08:00,0.0,10.731896,10731.896 +16718,2025-03-09T01:41:48.559045-08:00,0.0,10.729572,10729.572 +16719,2025-03-09T01:41:59.287271-08:00,0.0,10.728226,10728.226 +16720,2025-03-09T01:42:10.006446-08:00,0.0,10.719175,10719.175 +16721,2025-03-09T01:42:20.736445-08:00,0.0,10.729999,10729.999 +16722,2025-03-09T01:42:31.465965-08:00,0.0,10.72952,10729.52 +16723,2025-03-09T01:42:42.200525-08:00,0.0,10.73456,10734.56 +16724,2025-03-09T01:42:52.930620-08:00,0.0,10.730095,10730.095 +16725,2025-03-09T01:43:03.656823-08:00,0.0,10.726203,10726.203 +16726,2025-03-09T01:43:14.382442-08:00,0.0,10.725619,10725.619 +16727,2025-03-09T01:43:25.107764-08:00,0.0,10.725322,10725.322 +16728,2025-03-09T01:43:35.836650-08:00,0.0,10.728886,10728.886 +16729,2025-03-09T01:43:46.558772-08:00,0.0,10.722122,10722.122 +16730,2025-03-09T01:43:57.280439-08:00,0.0,10.721667,10721.667 +16731,2025-03-09T01:44:08.013658-08:00,0.0,10.733219,10733.219 +16732,2025-03-09T01:44:18.740653-08:00,0.0,10.726995,10726.995 +16733,2025-03-09T01:44:29.461674-08:00,0.0,10.721021,10721.021 +16734,2025-03-09T01:44:40.191786-08:00,0.0,10.730112,10730.112 +16735,2025-03-09T01:44:50.928109-08:00,0.0,10.736323,10736.323 +16736,2025-03-09T01:45:01.653820-08:00,0.0,10.725711,10725.711 +16737,2025-03-09T01:45:12.375626-08:00,0.0,10.721806,10721.806 +16738,2025-03-09T01:45:23.106449-08:00,0.0,10.730823,10730.823 +16739,2025-03-09T01:45:33.836572-08:00,0.0,10.730123,10730.123 +16740,2025-03-09T01:45:44.569644-08:00,0.0,10.733072,10733.072 +16741,2025-03-09T01:45:55.296663-08:00,0.0,10.727019,10727.019 +16742,2025-03-09T01:46:06.032449-08:00,0.0,10.735786,10735.786 +16743,2025-03-09T01:46:16.755278-08:00,0.0,10.722829,10722.829 +16744,2025-03-09T01:46:27.485445-08:00,0.0,10.730167,10730.167 +16745,2025-03-09T01:46:38.214626-08:00,0.0,10.729181,10729.181 +16746,2025-03-09T01:46:48.942440-08:00,0.0,10.727814,10727.814 +16747,2025-03-09T01:46:59.674447-08:00,0.0,10.732007,10732.007 +16748,2025-03-09T01:47:10.408444-08:00,0.0,10.733997,10733.997 +16749,2025-03-09T01:47:21.133467-08:00,0.0,10.725023,10725.023 +16750,2025-03-09T01:47:31.871656-08:00,0.0,10.738189,10738.189 +16751,2025-03-09T01:47:42.593638-08:00,0.0,10.721982,10721.982 +16752,2025-03-09T01:47:53.326446-08:00,0.0,10.732808,10732.808 +16753,2025-03-09T01:48:04.056542-08:00,0.0,10.730096,10730.096 +16754,2025-03-09T01:48:14.776625-08:00,0.0,10.720083,10720.083 +16755,2025-03-09T01:48:25.504656-08:00,0.0,10.728031,10728.031 +16756,2025-03-09T01:48:36.231645-08:00,0.0,10.726989,10726.989 +16757,2025-03-09T01:48:46.960443-08:00,0.0,10.728798,10728.798 +16758,2025-03-09T01:48:57.694443-08:00,0.0,10.734,10734.0 +16759,2025-03-09T01:49:08.425449-08:00,0.0,10.731006,10731.006 +16760,2025-03-09T01:49:19.155881-08:00,0.0,10.730432,10730.432 +16761,2025-03-09T01:49:29.877443-08:00,0.0,10.721562,10721.562 +16762,2025-03-09T01:49:40.610129-08:00,0.0,10.732686,10732.686 +16763,2025-03-09T01:49:51.333443-08:00,0.0,10.723314,10723.314 +16764,2025-03-09T01:50:02.063447-08:00,0.0,10.730004,10730.004 +16765,2025-03-09T01:50:12.797611-08:00,0.0,10.734164,10734.164 +16766,2025-03-09T01:50:23.524598-08:00,0.0,10.726987,10726.987 +16767,2025-03-09T01:50:34.257447-08:00,0.0,10.732849,10732.849 +16768,2025-03-09T01:50:44.982751-08:00,0.0,10.725304,10725.304 +16769,2025-03-09T01:50:55.707649-08:00,0.0,10.724898,10724.898 +16770,2025-03-09T01:51:06.433620-08:00,0.0,10.725971,10725.971 +16771,2025-03-09T01:51:17.166494-08:00,0.0,10.732874,10732.874 +16772,2025-03-09T01:51:27.897439-08:00,0.0,10.730945,10730.945 +16773,2025-03-09T01:51:37.979986-08:00,0.0,10.082547,10082.547 +16774,2025-03-09T01:51:38.624640-08:00,0.0,0.644654,644.654 +16775,2025-03-09T01:51:49.355440-08:00,0.0,10.7308,10730.8 +16776,2025-03-09T01:52:00.086445-08:00,0.0,10.731005,10731.005 +16777,2025-03-09T01:52:10.808593-08:00,0.0,10.722148,10722.148 +16778,2025-03-09T01:52:21.541447-08:00,0.0,10.732854,10732.854 +16779,2025-03-09T01:52:32.328490-08:00,0.0,10.787043,10787.043 +16780,2025-03-09T01:52:43.058300-08:00,0.0,10.72981,10729.81 +16781,2025-03-09T01:52:53.786306-08:00,0.0,10.728006,10728.006 +16782,2025-03-09T01:53:04.509734-08:00,0.0,10.723428,10723.428 +16783,2025-03-09T01:53:15.236307-08:00,0.0,10.726573,10726.573 +16784,2025-03-09T01:53:25.961526-08:00,0.0,10.725219,10725.219 +16785,2025-03-09T01:53:36.696657-08:00,0.0,10.735131,10735.131 +16786,2025-03-09T01:53:47.415302-08:00,0.0,10.718645,10718.645 +16787,2025-03-09T01:53:58.153757-08:00,0.0,10.738455,10738.455 +16788,2025-03-09T01:54:08.876376-08:00,0.0,10.722619,10722.619 +16789,2025-03-09T01:54:19.600509-08:00,0.0,10.724133,10724.133 +16790,2025-03-09T01:54:30.334041-08:00,0.0,10.733532,10733.532 +16791,2025-03-09T01:54:41.065302-08:00,0.0,10.731261,10731.261 +16792,2025-03-09T01:54:51.792519-08:00,0.0,10.727217,10727.217 +16793,2025-03-09T01:55:02.516430-08:00,0.0,10.723911,10723.911 +16794,2025-03-09T01:55:13.240493-08:00,0.0,10.724063,10724.063 +16795,2025-03-09T01:55:23.974482-08:00,0.0,10.733989,10733.989 +16796,2025-03-09T01:55:34.701339-08:00,0.0,10.726857,10726.857 +16797,2025-03-09T01:55:45.421643-08:00,0.0,10.720304,10720.304 +16798,2025-03-09T01:55:56.156591-08:00,0.0,10.734948,10734.948 +16799,2025-03-09T01:56:06.878642-08:00,0.0,10.722051,10722.051 +16800,2025-03-09T01:56:17.607497-08:00,0.0,10.728855,10728.855 +16801,2025-03-09T01:56:28.324307-08:00,0.0,10.71681,10716.81 +16802,2025-03-09T01:56:39.053695-08:00,0.0,10.729388,10729.388 +16803,2025-03-09T01:56:49.773304-08:00,0.0,10.719609,10719.609 +16804,2025-03-09T01:57:00.502526-08:00,0.0,10.729222,10729.222 +16805,2025-03-09T01:57:11.232304-08:00,0.0,10.729778,10729.778 +16806,2025-03-09T01:57:21.960308-08:00,0.0,10.728004,10728.004 +16807,2025-03-09T01:57:32.677576-08:00,0.0,10.717268,10717.268 +16808,2025-03-09T01:57:43.412305-08:00,0.0,10.734729,10734.729 +16809,2025-03-09T01:57:54.141537-08:00,0.0,10.729232,10729.232 +16810,2025-03-09T01:58:04.858369-08:00,0.0,10.716832,10716.832 +16811,2025-03-09T01:58:15.585308-08:00,0.0,10.726939,10726.939 +16812,2025-03-09T01:58:26.309333-08:00,0.0,10.724025,10724.025 +16813,2025-03-09T01:58:37.041302-08:00,0.0,10.731969,10731.969 +16814,2025-03-09T01:58:47.764497-08:00,0.0,10.723195,10723.195 +16815,2025-03-09T01:58:58.497340-08:00,0.0,10.732843,10732.843 +16816,2025-03-09T01:59:09.219055-08:00,0.0,10.721715,10721.715 +16817,2025-03-09T01:59:19.943370-08:00,0.0,10.724315,10724.315 +16818,2025-03-09T01:59:30.665491-08:00,0.0,10.722121,10722.121 +16819,2025-03-09T01:59:41.396035-08:00,0.0,10.730544,10730.544 +16820,2025-03-09T01:59:52.124518-08:00,0.0,10.728483,10728.483 +16821,2025-03-09T03:00:02.842479-07:00,0.0,10.717961,10717.961 +16822,2025-03-09T03:00:13.573308-07:00,0.0,10.730829,10730.829 +16823,2025-03-09T03:00:24.305303-07:00,0.0,10.731995,10731.995 +16824,2025-03-09T03:00:35.029871-07:00,0.0,10.724568,10724.568 +16825,2025-03-09T03:00:45.750716-07:00,0.0,10.720845,10720.845 +16826,2025-03-09T03:00:56.480401-07:00,0.0,10.729685,10729.685 +16827,2025-03-09T03:01:07.213618-07:00,0.0,10.733217,10733.217 +16828,2025-03-09T03:01:17.940307-07:00,0.0,10.726689,10726.689 +16829,2025-03-09T03:01:28.669488-07:00,0.0,10.729181,10729.181 +16830,2025-03-09T03:01:39.388536-07:00,0.0,10.719048,10719.048 +16831,2025-03-09T03:01:50.115497-07:00,0.0,10.726961,10726.961 +16832,2025-03-09T03:02:00.848614-07:00,0.0,10.733117,10733.117 +16833,2025-03-09T03:02:11.579338-07:00,0.0,10.730724,10730.724 +16834,2025-03-09T03:02:22.303488-07:00,0.0,10.72415,10724.15 +16835,2025-03-09T03:02:33.026449-07:00,0.0,10.722961,10722.961 +16836,2025-03-09T03:02:43.753455-07:00,0.0,10.727006,10727.006 +16837,2025-03-09T03:02:54.479517-07:00,0.0,10.726062,10726.062 +16838,2025-03-09T03:03:05.210382-07:00,0.0,10.730865,10730.865 +16839,2025-03-09T03:03:15.934741-07:00,0.0,10.724359,10724.359 +16840,2025-03-09T03:03:26.664301-07:00,0.0,10.72956,10729.56 +16841,2025-03-09T03:03:37.395336-07:00,0.0,10.731035,10731.035 +16842,2025-03-09T03:03:48.119659-07:00,0.0,10.724323,10724.323 +16843,2025-03-09T03:03:58.846316-07:00,0.0,10.726657,10726.657 +16844,2025-03-09T03:04:09.584534-07:00,0.0,10.738218,10738.218 +16845,2025-03-09T03:04:20.312304-07:00,0.0,10.72777,10727.77 +16846,2025-03-09T03:04:31.033307-07:00,0.0,10.721003,10721.003 +16847,2025-03-09T03:04:41.767475-07:00,0.0,10.734168,10734.168 +16848,2025-03-09T03:04:52.490454-07:00,0.0,10.722979,10722.979 +16849,2025-03-09T03:05:03.220710-07:00,0.0,10.730256,10730.256 +16850,2025-03-09T03:05:13.948305-07:00,0.0,10.727595,10727.595 +16851,2025-03-09T03:05:24.670302-07:00,0.0,10.721997,10721.997 +16852,2025-03-09T03:05:35.399476-07:00,0.0,10.729174,10729.174 +16853,2025-03-09T03:05:46.131307-07:00,0.0,10.731831,10731.831 +16854,2025-03-09T03:05:56.861303-07:00,0.0,10.729996,10729.996 +16855,2025-03-09T03:06:07.587436-07:00,0.0,10.726133,10726.133 +16856,2025-03-09T03:06:18.312307-07:00,0.0,10.724871,10724.871 +16857,2025-03-09T03:06:29.048310-07:00,0.0,10.736003,10736.003 +16858,2025-03-09T03:06:39.773331-07:00,0.0,10.725021,10725.021 +16859,2025-03-09T03:06:50.503311-07:00,0.0,10.72998,10729.98 +16860,2025-03-09T03:07:01.233323-07:00,0.0,10.730012,10730.012 +16861,2025-03-09T03:07:11.959509-07:00,0.0,10.726186,10726.186 +16862,2025-03-09T03:07:22.699308-07:00,0.0,10.739799,10739.799 +16863,2025-03-09T03:07:33.429343-07:00,0.0,10.730035,10730.035 +16864,2025-03-09T03:07:44.156499-07:00,0.0,10.727156,10727.156 +16865,2025-03-09T03:07:54.886543-07:00,0.0,10.730044,10730.044 +16866,2025-03-09T03:08:05.616481-07:00,0.0,10.729938,10729.938 +16867,2025-03-09T03:08:16.347302-07:00,0.0,10.730821,10730.821 +16868,2025-03-09T03:08:27.071300-07:00,0.0,10.723998,10723.998 +16869,2025-03-09T03:08:37.793588-07:00,0.0,10.722288,10722.288 +16870,2025-03-09T03:08:48.524511-07:00,0.0,10.730923,10730.923 +16871,2025-03-09T03:08:59.248112-07:00,0.0,10.723601,10723.601 +16872,2025-03-09T03:09:09.986817-07:00,0.0,10.738705,10738.705 +16873,2025-03-09T03:09:20.704300-07:00,0.0,10.717483,10717.483 +16874,2025-03-09T03:09:31.437506-07:00,0.0,10.733206,10733.206 +16875,2025-03-09T03:09:42.165520-07:00,0.0,10.728014,10728.014 +16876,2025-03-09T03:09:52.890521-07:00,0.0,10.725001,10725.001 +16877,2025-03-09T03:10:03.619407-07:00,0.0,10.728886,10728.886 +16878,2025-03-09T03:10:14.343309-07:00,0.0,10.723902,10723.902 +16879,2025-03-09T03:10:25.073493-07:00,0.0,10.730184,10730.184 +16880,2025-03-09T03:10:35.792517-07:00,0.0,10.719024,10719.024 +16881,2025-03-09T03:10:46.531307-07:00,0.0,10.73879,10738.79 +16882,2025-03-09T03:10:57.256866-07:00,0.0,10.725559,10725.559 +16883,2025-03-09T03:11:07.991458-07:00,0.0,10.734592,10734.592 +16884,2025-03-09T03:11:18.720514-07:00,0.0,10.729056,10729.056 +16885,2025-03-09T03:11:29.449499-07:00,0.0,10.728985,10728.985 +16886,2025-03-09T03:11:40.169309-07:00,0.0,10.71981,10719.81 +16887,2025-03-09T03:11:50.904523-07:00,0.0,10.735214,10735.214 +16888,2025-03-09T03:12:01.629304-07:00,0.0,10.724781,10724.781 +16889,2025-03-09T03:12:12.362303-07:00,0.0,10.732999,10732.999 +16890,2025-03-09T03:12:23.091501-07:00,0.0,10.729198,10729.198 +16891,2025-03-09T03:12:33.816515-07:00,0.0,10.725014,10725.014 +16892,2025-03-09T03:12:44.538524-07:00,0.0,10.722009,10722.009 +16893,2025-03-09T03:12:55.266405-07:00,0.0,10.727881,10727.881 +16894,2025-03-09T03:13:06.000301-07:00,0.0,10.733896,10733.896 +16895,2025-03-09T03:13:16.723403-07:00,0.0,10.723102,10723.102 +16896,2025-03-09T03:13:27.452600-07:00,0.0,10.729197,10729.197 +16897,2025-03-09T03:13:38.183363-07:00,0.0,10.730763,10730.763 +16898,2025-03-09T03:13:48.913484-07:00,0.0,10.730121,10730.121 +16899,2025-03-09T03:13:59.641303-07:00,0.0,10.727819,10727.819 +16900,2025-03-09T03:14:10.365318-07:00,0.0,10.724015,10724.015 +16901,2025-03-09T03:14:21.102361-07:00,0.0,10.737043,10737.043 +16902,2025-03-09T03:14:31.832305-07:00,0.0,10.729944,10729.944 +16903,2025-03-09T03:14:42.561493-07:00,0.0,10.729188,10729.188 +16904,2025-03-09T03:14:53.284309-07:00,0.0,10.722816,10722.816 +16905,2025-03-09T03:15:04.015375-07:00,0.0,10.731066,10731.066 +16906,2025-03-09T03:15:14.752310-07:00,0.0,10.736935,10736.935 +16907,2025-03-09T03:15:25.481386-07:00,0.0,10.729076,10729.076 +16908,2025-03-09T03:15:36.210514-07:00,0.0,10.729128,10729.128 +16909,2025-03-09T03:15:46.933520-07:00,0.0,10.723006,10723.006 +16910,2025-03-09T03:15:57.669485-07:00,0.0,10.735965,10735.965 +16911,2025-03-09T03:16:08.391519-07:00,0.0,10.722034,10722.034 +16912,2025-03-09T03:16:19.121813-07:00,0.0,10.730294,10730.294 +16913,2025-03-09T03:16:29.847310-07:00,0.0,10.725497,10725.497 +16914,2025-03-09T03:16:40.565486-07:00,0.0,10.718176,10718.176 +16915,2025-03-09T03:16:51.293304-07:00,0.0,10.727818,10727.818 +16916,2025-03-09T03:17:02.024519-07:00,0.0,10.731215,10731.215 +16917,2025-03-09T03:17:12.746516-07:00,0.0,10.721997,10721.997 +16918,2025-03-09T03:17:23.478308-07:00,0.0,10.731792,10731.792 +16919,2025-03-09T03:17:34.199867-07:00,0.0,10.721559,10721.559 +16920,2025-03-09T03:17:44.925307-07:00,0.0,10.72544,10725.44 +16921,2025-03-09T03:17:55.656309-07:00,0.0,10.731002,10731.002 +16922,2025-03-09T03:18:06.388180-07:00,0.0,10.731871,10731.871 +16923,2025-03-09T03:18:17.111309-07:00,0.0,10.723129,10723.129 +16924,2025-03-09T03:18:27.844605-07:00,0.0,10.733296,10733.296 +16925,2025-03-09T03:18:38.565336-07:00,0.0,10.720731,10720.731 +16926,2025-03-09T03:18:49.293304-07:00,0.0,10.727968,10727.968 +16927,2025-03-09T03:19:00.018567-07:00,0.0,10.725263,10725.263 +16928,2025-03-09T03:19:10.752307-07:00,0.0,10.73374,10733.74 +16929,2025-03-09T03:19:21.471716-07:00,0.0,10.719409,10719.409 +16930,2025-03-09T03:19:32.206304-07:00,0.0,10.734588,10734.588 +16931,2025-03-09T03:19:42.932357-07:00,0.0,10.726053,10726.053 +16932,2025-03-09T03:19:53.661475-07:00,0.0,10.729118,10729.118 +16933,2025-03-09T03:20:04.390374-07:00,0.0,10.728899,10728.899 +16934,2025-03-09T03:20:15.115128-07:00,0.0,10.724754,10724.754 +16935,2025-03-09T03:20:25.846305-07:00,0.0,10.731177,10731.177 +16936,2025-03-09T03:20:36.565335-07:00,0.0,10.71903,10719.03 +16937,2025-03-09T03:20:47.293006-07:00,0.0,10.727671,10727.671 +16938,2025-03-09T03:20:58.023304-07:00,0.0,10.730298,10730.298 +16939,2025-03-09T03:21:08.755497-07:00,0.0,10.732193,10732.193 +16940,2025-03-09T03:21:19.478926-07:00,0.0,10.723429,10723.429 +16941,2025-03-09T03:21:30.207306-07:00,0.0,10.72838,10728.38 +16942,2025-03-09T03:21:40.928214-07:00,0.0,10.720908,10720.908 +16943,2025-03-09T03:21:51.658305-07:00,0.0,10.730091,10730.091 +16944,2025-03-09T03:22:02.387487-07:00,0.0,10.729182,10729.182 +16945,2025-03-09T03:22:13.113575-07:00,0.0,10.726088,10726.088 +16946,2025-03-09T03:22:23.843305-07:00,0.0,10.72973,10729.73 +16947,2025-03-09T03:22:34.564061-07:00,0.0,10.720756,10720.756 +16948,2025-03-09T03:22:45.298721-07:00,0.0,10.73466,10734.66 +16949,2025-03-09T03:22:56.022499-07:00,0.0,10.723778,10723.778 +16950,2025-03-09T03:23:06.750347-07:00,0.0,10.727848,10727.848 +16951,2025-03-09T03:23:17.480504-07:00,0.0,10.730157,10730.157 +16952,2025-03-09T03:23:28.218307-07:00,0.0,10.737803,10737.803 +16953,2025-03-09T03:23:38.945149-07:00,0.0,10.726842,10726.842 +16954,2025-03-09T03:23:49.676304-07:00,0.0,10.731155,10731.155 +16955,2025-03-09T03:24:00.401529-07:00,0.0,10.725225,10725.225 +16956,2025-03-09T03:24:11.132308-07:00,0.0,10.730779,10730.779 +16957,2025-03-09T03:24:21.858544-07:00,0.0,10.726236,10726.236 +16958,2025-03-09T03:24:32.591322-07:00,0.0,10.732778,10732.778 +16959,2025-03-09T03:24:43.309306-07:00,0.0,10.717984,10717.984 +16960,2025-03-09T03:24:54.037507-07:00,0.0,10.728201,10728.201 +16961,2025-03-09T03:25:04.770912-07:00,0.0,10.733405,10733.405 +16962,2025-03-09T03:25:15.498311-07:00,0.0,10.727399,10727.399 +16963,2025-03-09T03:25:26.229441-07:00,0.0,10.73113,10731.13 +16964,2025-03-09T03:25:36.947305-07:00,0.0,10.717864,10717.864 +16965,2025-03-09T03:25:47.674760-07:00,0.0,10.727455,10727.455 +16966,2025-03-09T03:25:58.407372-07:00,0.0,10.732612,10732.612 +16967,2025-03-09T03:26:09.132057-07:00,0.0,10.724685,10724.685 +16968,2025-03-09T03:26:19.859913-07:00,0.0,10.727856,10727.856 +16969,2025-03-09T03:26:30.579301-07:00,0.0,10.719388,10719.388 +16970,2025-03-09T03:26:41.312547-07:00,0.0,10.733246,10733.246 +16971,2025-03-09T03:26:52.035453-07:00,0.0,10.722906,10722.906 +16972,2025-03-09T03:27:02.765305-07:00,0.0,10.729852,10729.852 +16973,2025-03-09T03:27:13.490500-07:00,0.0,10.725195,10725.195 +16974,2025-03-09T03:27:24.213305-07:00,0.0,10.722805,10722.805 +16975,2025-03-09T03:27:34.940530-07:00,0.0,10.727225,10727.225 +16976,2025-03-09T03:27:45.675124-07:00,0.0,10.734594,10734.594 +16977,2025-03-09T03:27:56.395307-07:00,0.0,10.720183,10720.183 +16978,2025-03-09T03:28:07.120148-07:00,0.0,10.724841,10724.841 +16979,2025-03-09T03:28:17.843304-07:00,0.0,10.723156,10723.156 +16980,2025-03-09T03:28:28.567490-07:00,0.0,10.724186,10724.186 +16981,2025-03-09T03:28:39.297302-07:00,0.0,10.729812,10729.812 +16982,2025-03-09T03:28:50.016131-07:00,0.0,10.718829,10718.829 +16983,2025-03-09T03:29:00.744382-07:00,0.0,10.728251,10728.251 +16984,2025-03-09T03:29:11.461771-07:00,0.0,10.717389,10717.389 +16985,2025-03-09T03:29:22.194308-07:00,0.0,10.732537,10732.537 +16986,2025-03-09T03:29:32.926308-07:00,0.0,10.732,10732.0 +16987,2025-03-09T03:29:43.648783-07:00,0.0,10.722475,10722.475 +16988,2025-03-09T03:29:54.371304-07:00,0.0,10.722521,10722.521 +16989,2025-03-09T03:30:05.107308-07:00,0.0,10.736004,10736.004 +16990,2025-03-09T03:30:15.831980-07:00,0.0,10.724672,10724.672 +16991,2025-03-09T03:30:26.556335-07:00,0.0,10.724355,10724.355 +16992,2025-03-09T03:30:37.282487-07:00,0.0,10.726152,10726.152 +16993,2025-03-09T03:30:48.004306-07:00,0.0,10.721819,10721.819 +16994,2025-03-09T03:30:58.737609-07:00,0.0,10.733303,10733.303 +16995,2025-03-09T03:31:09.464304-07:00,0.0,10.726695,10726.695 +16996,2025-03-09T03:31:20.188670-07:00,0.0,10.724366,10724.366 +16997,2025-03-09T03:31:30.909401-07:00,0.0,10.720731,10720.731 +16998,2025-03-09T03:31:41.637392-07:00,0.0,10.727991,10727.991 +16999,2025-03-09T03:31:52.366532-07:00,0.0,10.72914,10729.14 +17000,2025-03-09T03:32:03.090302-07:00,0.0,10.72377,10723.77 +17001,2025-03-09T03:32:13.817307-07:00,0.0,10.727005,10727.005 +17002,2025-03-09T03:32:24.543562-07:00,0.0,10.726255,10726.255 +17003,2025-03-09T03:32:35.278304-07:00,0.0,10.734742,10734.742 +17004,2025-03-09T03:32:46.009484-07:00,0.0,10.73118,10731.18 +17005,2025-03-09T03:32:56.733305-07:00,0.0,10.723821,10723.821 +17006,2025-03-09T03:33:07.458502-07:00,0.0,10.725197,10725.197 +17007,2025-03-09T03:33:18.187499-07:00,0.0,10.728997,10728.997 +17008,2025-03-09T03:33:28.920305-07:00,0.0,10.732806,10732.806 +17009,2025-03-09T03:33:39.642572-07:00,0.0,10.722267,10722.267 +17010,2025-03-09T03:33:50.370512-07:00,0.0,10.72794,10727.94 +17011,2025-03-09T03:34:01.103829-07:00,0.0,10.733317,10733.317 +17012,2025-03-09T03:34:11.826478-07:00,0.0,10.722649,10722.649 +17013,2025-03-09T03:34:22.557597-07:00,0.0,10.731119,10731.119 +17014,2025-03-09T03:34:33.275496-07:00,0.0,10.717899,10717.899 +17015,2025-03-09T03:34:44.001304-07:00,0.0,10.725808,10725.808 +17016,2025-03-09T03:34:54.730305-07:00,0.0,10.729001,10729.001 +17017,2025-03-09T03:35:05.457479-07:00,0.0,10.727174,10727.174 +17018,2025-03-09T03:35:16.177371-07:00,0.0,10.719892,10719.892 +17019,2025-03-09T03:35:26.913482-07:00,0.0,10.736111,10736.111 +17020,2025-03-09T03:35:37.639374-07:00,0.0,10.725892,10725.892 +17021,2025-03-09T03:35:48.354447-07:00,0.0,10.715073,10715.073 +17022,2025-03-09T03:35:59.080549-07:00,0.0,10.726102,10726.102 +17023,2025-03-09T03:36:09.811808-07:00,0.0,10.731259,10731.259 +17024,2025-03-09T03:36:20.537481-07:00,0.0,10.725673,10725.673 +17025,2025-03-09T03:36:31.272304-07:00,0.0,10.734823,10734.823 +17026,2025-03-09T03:36:41.993334-07:00,0.0,10.72103,10721.03 +17027,2025-03-09T03:36:52.718415-07:00,0.0,10.725081,10725.081 +17028,2025-03-09T03:37:03.446487-07:00,0.0,10.728072,10728.072 +17029,2025-03-09T03:37:14.177483-07:00,0.0,10.730996,10730.996 +17030,2025-03-09T03:37:24.898503-07:00,0.0,10.72102,10721.02 +17031,2025-03-09T03:37:35.625371-07:00,0.0,10.726868,10726.868 +17032,2025-03-09T03:37:46.348304-07:00,0.0,10.722933,10722.933 +17033,2025-03-09T03:37:57.068493-07:00,0.0,10.720189,10720.189 +17034,2025-03-09T03:38:07.794301-07:00,0.0,10.725808,10725.808 +17035,2025-03-09T03:38:18.527307-07:00,0.0,10.733006,10733.006 +17036,2025-03-09T03:38:29.252680-07:00,0.0,10.725373,10725.373 +17037,2025-03-09T03:38:39.976304-07:00,0.0,10.723624,10723.624 +17038,2025-03-09T03:38:50.698932-07:00,0.0,10.722628,10722.628 +17039,2025-03-09T03:39:01.424307-07:00,0.0,10.725375,10725.375 +17040,2025-03-09T03:39:12.154305-07:00,0.0,10.729998,10729.998 +17041,2025-03-09T03:39:22.876568-07:00,0.0,10.722263,10722.263 +17042,2025-03-09T03:39:33.608514-07:00,0.0,10.731946,10731.946 +17043,2025-03-09T03:39:44.331495-07:00,0.0,10.722981,10722.981 +17044,2025-03-09T03:39:55.058493-07:00,0.0,10.726998,10726.998 +17045,2025-03-09T03:40:05.782302-07:00,0.0,10.723809,10723.809 +17046,2025-03-09T03:40:16.514085-07:00,0.0,10.731783,10731.783 +17047,2025-03-09T03:40:27.237333-07:00,0.0,10.723248,10723.248 +17048,2025-03-09T03:40:37.961496-07:00,0.0,10.724163,10724.163 +17049,2025-03-09T03:40:48.690335-07:00,0.0,10.728839,10728.839 +17050,2025-03-09T03:40:59.416317-07:00,0.0,10.725982,10725.982 +17051,2025-03-09T03:41:10.141638-07:00,0.0,10.725321,10725.321 +17052,2025-03-09T03:41:20.857913-07:00,0.0,10.716275,10716.275 +17053,2025-03-09T03:41:31.592629-07:00,0.0,10.734716,10734.716 +17054,2025-03-09T03:41:42.315773-07:00,0.0,10.723144,10723.144 +17055,2025-03-09T03:41:53.030709-07:00,0.0,10.714936,10714.936 +17056,2025-03-09T03:42:03.755304-07:00,0.0,10.724595,10724.595 +17057,2025-03-09T03:42:14.487487-07:00,0.0,10.732183,10732.183 +17058,2025-03-09T03:42:25.209514-07:00,0.0,10.722027,10722.027 +17059,2025-03-09T03:42:35.937375-07:00,0.0,10.727861,10727.861 +17060,2025-03-09T03:42:46.665345-07:00,0.0,10.72797,10727.97 +17061,2025-03-09T03:42:57.390508-07:00,0.0,10.725163,10725.163 +17062,2025-03-09T03:43:08.115537-07:00,0.0,10.725029,10725.029 +17063,2025-03-09T03:43:18.850307-07:00,0.0,10.73477,10734.77 +17064,2025-03-09T03:43:29.574563-07:00,0.0,10.724256,10724.256 +17065,2025-03-09T03:43:40.300428-07:00,0.0,10.725865,10725.865 +17066,2025-03-09T03:43:51.023548-07:00,0.0,10.72312,10723.12 +17067,2025-03-09T03:44:01.747587-07:00,0.0,10.724039,10724.039 +17068,2025-03-09T03:44:12.477304-07:00,0.0,10.729717,10729.717 +17069,2025-03-09T03:44:23.197498-07:00,0.0,10.720194,10720.194 +17070,2025-03-09T03:44:33.929529-07:00,0.0,10.732031,10732.031 +17071,2025-03-09T03:44:44.654507-07:00,0.0,10.724978,10724.978 +17072,2025-03-09T03:44:55.373036-07:00,0.0,10.718529,10718.529 +17073,2025-03-09T03:45:06.097518-07:00,0.0,10.724482,10724.482 +17074,2025-03-09T03:45:16.829846-07:00,0.0,10.732328,10732.328 +17075,2025-03-09T03:45:27.550307-07:00,0.0,10.720461,10720.461 +17076,2025-03-09T03:45:38.283595-07:00,0.0,10.733288,10733.288 +17077,2025-03-09T03:45:49.002412-07:00,0.0,10.718817,10718.817 +17078,2025-03-09T03:45:59.732337-07:00,0.0,10.729925,10729.925 +17079,2025-03-09T03:46:10.458326-07:00,0.0,10.725989,10725.989 +17080,2025-03-09T03:46:21.183415-07:00,0.0,10.725089,10725.089 +17081,2025-03-09T03:46:31.904304-07:00,0.0,10.720889,10720.889 +17082,2025-03-09T03:46:42.631621-07:00,0.0,10.727317,10727.317 +17083,2025-03-09T03:46:53.353507-07:00,0.0,10.721886,10721.886 +17084,2025-03-09T03:47:04.082371-07:00,0.0,10.728864,10728.864 +17085,2025-03-09T03:47:14.808764-07:00,0.0,10.726393,10726.393 +17086,2025-03-09T03:47:25.537304-07:00,0.0,10.72854,10728.54 +17087,2025-03-09T03:47:36.266306-07:00,0.0,10.729002,10729.002 +17088,2025-03-09T03:47:46.990484-07:00,0.0,10.724178,10724.178 +17089,2025-03-09T03:47:57.708306-07:00,0.0,10.717822,10717.822 +17090,2025-03-09T03:48:08.442542-07:00,0.0,10.734236,10734.236 +17091,2025-03-09T03:48:19.163508-07:00,0.0,10.720966,10720.966 +17092,2025-03-09T03:48:29.896306-07:00,0.0,10.732798,10732.798 +17093,2025-03-09T03:48:40.618569-07:00,0.0,10.722263,10722.263 +17094,2025-03-09T03:48:51.343487-07:00,0.0,10.724918,10724.918 +17095,2025-03-09T03:49:02.066490-07:00,0.0,10.723003,10723.003 +17096,2025-03-09T03:49:12.798315-07:00,0.0,10.731825,10731.825 +17097,2025-03-09T03:49:23.515705-07:00,0.0,10.71739,10717.39 +17098,2025-03-09T03:49:34.249755-07:00,0.0,10.73405,10734.05 +17099,2025-03-09T03:49:44.975492-07:00,0.0,10.725737,10725.737 +17100,2025-03-09T03:49:55.694343-07:00,0.0,10.718851,10718.851 +17101,2025-03-09T03:50:06.429304-07:00,0.0,10.734961,10734.961 +17102,2025-03-09T03:50:17.154325-07:00,0.0,10.725021,10725.021 +17103,2025-03-09T03:50:27.870510-07:00,0.0,10.716185,10716.185 +17104,2025-03-09T03:50:38.596479-07:00,0.0,10.725969,10725.969 +17105,2025-03-09T03:50:49.324454-07:00,0.0,10.727975,10727.975 +17106,2025-03-09T03:51:00.056304-07:00,0.0,10.73185,10731.85 +17107,2025-03-09T03:51:10.782467-07:00,0.0,10.726163,10726.163 +17108,2025-03-09T03:51:11.707153-07:00,0.0,0.924686,924.686 +17109,2025-03-09T03:51:21.508307-07:00,0.0,9.801154,9801.154 +17110,2025-03-09T03:51:32.234494-07:00,0.0,10.726187,10726.187 +17111,2025-03-09T03:51:42.967867-07:00,0.0,10.733373,10733.373 +17112,2025-03-09T03:51:53.695545-07:00,0.0,10.727678,10727.678 +17113,2025-03-09T03:52:04.417508-07:00,0.0,10.721963,10721.963 +17114,2025-03-09T03:52:15.144477-07:00,0.0,10.726969,10726.969 +17115,2025-03-09T03:52:25.845732-07:00,0.0,10.701255,10701.255 +17116,2025-03-09T03:52:36.567279-07:00,0.0,10.721547,10721.547 +17117,2025-03-09T03:52:47.296740-07:00,0.0,10.729461,10729.461 +17118,2025-03-09T03:52:58.016378-07:00,0.0,10.719638,10719.638 +17119,2025-03-09T03:53:08.749282-07:00,0.0,10.732904,10732.904 +17120,2025-03-09T03:53:19.471045-07:00,0.0,10.721763,10721.763 +17121,2025-03-09T03:53:30.196648-07:00,0.0,10.725603,10725.603 +17122,2025-03-09T03:53:40.920284-07:00,0.0,10.723636,10723.636 +17123,2025-03-09T03:53:51.647429-07:00,0.0,10.727145,10727.145 +17124,2025-03-09T03:54:02.382289-07:00,0.0,10.73486,10734.86 +17125,2025-03-09T03:54:13.102453-07:00,0.0,10.720164,10720.164 +17126,2025-03-09T03:54:23.829358-07:00,0.0,10.726905,10726.905 +17127,2025-03-09T03:54:34.560283-07:00,0.0,10.730925,10730.925 +17128,2025-03-09T03:54:45.283776-07:00,0.0,10.723493,10723.493 +17129,2025-03-09T03:54:56.017486-07:00,0.0,10.73371,10733.71 +17130,2025-03-09T03:55:06.749517-07:00,0.0,10.732031,10732.031 +17131,2025-03-09T03:55:17.477441-07:00,0.0,10.727924,10727.924 +17132,2025-03-09T03:55:28.212283-07:00,0.0,10.734842,10734.842 +17133,2025-03-09T03:55:38.935296-07:00,0.0,10.723013,10723.013 +17134,2025-03-09T03:55:49.666553-07:00,0.0,10.731257,10731.257 +17135,2025-03-09T03:56:00.391290-07:00,0.0,10.724737,10724.737 +17136,2025-03-09T03:56:11.123897-07:00,0.0,10.732607,10732.607 +17137,2025-03-09T03:56:21.847488-07:00,0.0,10.723591,10723.591 +17138,2025-03-09T03:56:32.584309-07:00,0.0,10.736821,10736.821 +17139,2025-03-09T03:56:43.311456-07:00,0.0,10.727147,10727.147 +17140,2025-03-09T03:56:54.037279-07:00,0.0,10.725823,10725.823 +17141,2025-03-09T03:57:04.775480-07:00,0.0,10.738201,10738.201 +17142,2025-03-09T03:57:15.498454-07:00,0.0,10.722974,10722.974 +17143,2025-03-09T03:57:26.232348-07:00,0.0,10.733894,10733.894 +17144,2025-03-09T03:57:36.959498-07:00,0.0,10.72715,10727.15 +17145,2025-03-09T03:57:46.448956-07:00,0.0,9.489458,9489.458 +17146,2025-03-09T03:57:47.693471-07:00,0.0,1.244515,1244.515 +17147,2025-03-09T03:57:58.418325-07:00,0.0,10.724854,10724.854 +17148,2025-03-09T03:58:09.155281-07:00,0.0,10.736956,10736.956 +17149,2025-03-09T03:58:19.884491-07:00,0.0,10.72921,10729.21 +17150,2025-03-09T03:58:30.612451-07:00,0.0,10.72796,10727.96 +17151,2025-03-09T03:58:41.336356-07:00,0.0,10.723905,10723.905 +17152,2025-03-09T03:58:52.073685-07:00,0.0,10.737329,10737.329 +17153,2025-03-09T03:59:02.795336-07:00,0.0,10.721651,10721.651 +17154,2025-03-09T03:59:13.524151-07:00,0.0,10.728815,10728.815 +17155,2025-03-09T03:59:24.263685-07:00,0.0,10.739534,10739.534 +17156,2025-03-09T03:59:34.983313-07:00,0.0,10.719628,10719.628 +17157,2025-03-09T03:59:45.713796-07:00,0.0,10.730483,10730.483 +17158,2025-03-09T03:59:56.450312-07:00,0.0,10.736516,10736.516 +17159,2025-03-09T04:00:07.182501-07:00,0.0,10.732189,10732.189 +17160,2025-03-09T04:00:17.902467-07:00,0.0,10.719966,10719.966 +17161,2025-03-09T04:00:28.635392-07:00,0.0,10.732925,10732.925 +17162,2025-03-09T04:00:39.361283-07:00,0.0,10.725891,10725.891 +17163,2025-03-09T04:00:50.083997-07:00,0.0,10.722714,10722.714 +17164,2025-03-09T04:01:00.816571-07:00,0.0,10.732574,10732.574 +17165,2025-03-09T04:01:11.540459-07:00,0.0,10.723888,10723.888 +17166,2025-03-09T04:01:22.263020-07:00,0.0,10.722561,10722.561 +17167,2025-03-09T04:01:32.995647-07:00,0.0,10.732627,10732.627 +17168,2025-03-09T04:01:43.729470-07:00,0.0,10.733823,10733.823 +17169,2025-03-09T04:01:54.450289-07:00,0.0,10.720819,10720.819 +17170,2025-03-09T04:02:05.179026-07:00,0.0,10.728737,10728.737 +17171,2025-03-09T04:02:15.912471-07:00,0.0,10.733445,10733.445 +17172,2025-03-09T04:02:26.634496-07:00,0.0,10.722025,10722.025 +17173,2025-03-09T04:02:37.366457-07:00,0.0,10.731961,10731.961 +17174,2025-03-09T04:02:48.092285-07:00,0.0,10.725828,10725.828 +17175,2025-03-09T04:02:58.815737-07:00,0.0,10.723452,10723.452 +17176,2025-03-09T04:03:09.552467-07:00,0.0,10.73673,10736.73 +17177,2025-03-09T04:03:20.282491-07:00,0.0,10.730024,10730.024 +17178,2025-03-09T04:03:31.010287-07:00,0.0,10.727796,10727.796 +17179,2025-03-09T04:03:41.731280-07:00,0.0,10.720993,10720.993 +17180,2025-03-09T04:03:52.467358-07:00,0.0,10.736078,10736.078 +17181,2025-03-09T04:04:03.185817-07:00,0.0,10.718459,10718.459 +17182,2025-03-09T04:04:13.918548-07:00,0.0,10.732731,10732.731 +17183,2025-03-09T04:04:24.644286-07:00,0.0,10.725738,10725.738 +17184,2025-03-09T04:04:35.379477-07:00,0.0,10.735191,10735.191 +17185,2025-03-09T04:04:46.100281-07:00,0.0,10.720804,10720.804 +17186,2025-03-09T04:04:56.832596-07:00,0.0,10.732315,10732.315 +17187,2025-03-09T04:05:07.561568-07:00,0.0,10.728972,10728.972 +17188,2025-03-09T04:05:18.290285-07:00,0.0,10.728717,10728.717 +17189,2025-03-09T04:05:29.022584-07:00,0.0,10.732299,10732.299 +17190,2025-03-09T04:05:39.755309-07:00,0.0,10.732725,10732.725 +17191,2025-03-09T04:05:50.480287-07:00,0.0,10.724978,10724.978 +17192,2025-03-09T04:06:01.215507-07:00,0.0,10.73522,10735.22 +17193,2025-03-09T04:06:11.938485-07:00,0.0,10.722978,10722.978 +17194,2025-03-09T04:06:22.676281-07:00,0.0,10.737796,10737.796 +17195,2025-03-09T04:06:33.397529-07:00,0.0,10.721248,10721.248 +17196,2025-03-09T04:06:44.133564-07:00,0.0,10.736035,10736.035 +17197,2025-03-09T04:06:54.866487-07:00,0.0,10.732923,10732.923 +17198,2025-03-09T04:07:05.594210-07:00,0.0,10.727723,10727.723 +17199,2025-03-09T04:07:16.329283-07:00,0.0,10.735073,10735.073 +17200,2025-03-09T04:07:27.061498-07:00,0.0,10.732215,10732.215 +17201,2025-03-09T04:07:37.789285-07:00,0.0,10.727787,10727.787 +17202,2025-03-09T04:07:48.525405-07:00,0.0,10.73612,10736.12 +17203,2025-03-09T04:07:59.262364-07:00,0.0,10.736959,10736.959 +17204,2025-03-09T04:08:09.990495-07:00,0.0,10.728131,10728.131 +17205,2025-03-09T04:08:20.731474-07:00,0.0,10.740979,10740.979 +17206,2025-03-09T04:08:31.460559-07:00,0.0,10.729085,10729.085 +17207,2025-03-09T04:08:42.187282-07:00,0.0,10.726723,10726.723 +17208,2025-03-09T04:08:52.919337-07:00,0.0,10.732055,10732.055 +17209,2025-03-09T04:09:03.656031-07:00,0.0,10.736694,10736.694 +17210,2025-03-09T04:09:14.374285-07:00,0.0,10.718254,10718.254 +17211,2025-03-09T04:09:25.108616-07:00,0.0,10.734331,10734.331 +17212,2025-03-09T04:09:35.838282-07:00,0.0,10.729666,10729.666 +17213,2025-03-09T04:09:46.564320-07:00,0.0,10.726038,10726.038 +17214,2025-03-09T04:09:57.304462-07:00,0.0,10.740142,10740.142 +17215,2025-03-09T04:10:08.034548-07:00,0.0,10.730086,10730.086 +17216,2025-03-09T04:10:18.764313-07:00,0.0,10.729765,10729.765 +17217,2025-03-09T04:10:29.489826-07:00,0.0,10.725513,10725.513 +17218,2025-03-09T04:10:40.219279-07:00,0.0,10.729453,10729.453 +17219,2025-03-09T04:10:50.952284-07:00,0.0,10.733005,10733.005 +17220,2025-03-09T04:11:01.688283-07:00,0.0,10.735999,10735.999 +17221,2025-03-09T04:11:12.411282-07:00,0.0,10.722999,10722.999 +17222,2025-03-09T04:11:23.143287-07:00,0.0,10.732005,10732.005 +17223,2025-03-09T04:11:33.883421-07:00,0.0,10.740134,10740.134 +17224,2025-03-09T04:11:44.611827-07:00,0.0,10.728406,10728.406 +17225,2025-03-09T04:11:55.349283-07:00,0.0,10.737456,10737.456 +17226,2025-03-09T04:12:06.078285-07:00,0.0,10.729002,10729.002 +17227,2025-03-09T04:12:16.814305-07:00,0.0,10.73602,10736.02 +17228,2025-03-09T04:12:27.538435-07:00,0.0,10.72413,10724.13 +17229,2025-03-09T04:12:38.279586-07:00,0.0,10.741151,10741.151 +17230,2025-03-09T04:12:49.003389-07:00,0.0,10.723803,10723.803 +17231,2025-03-09T04:12:59.739778-07:00,0.0,10.736389,10736.389 +17232,2025-03-09T04:13:10.471350-07:00,0.0,10.731572,10731.572 +17233,2025-03-09T04:13:21.199282-07:00,0.0,10.727932,10727.932 +17234,2025-03-09T04:13:31.935697-07:00,0.0,10.736415,10736.415 +17235,2025-03-09T04:13:42.673721-07:00,0.0,10.738024,10738.024 +17236,2025-03-09T04:13:53.398285-07:00,0.0,10.724564,10724.564 +17237,2025-03-09T04:14:04.133077-07:00,0.0,10.734792,10734.792 +17238,2025-03-09T04:14:14.866359-07:00,0.0,10.733282,10733.282 +17239,2025-03-09T04:14:25.602282-07:00,0.0,10.735923,10735.923 +17240,2025-03-09T04:14:36.334282-07:00,0.0,10.732,10732.0 +17241,2025-03-09T04:14:47.062397-07:00,0.0,10.728115,10728.115 +17242,2025-03-09T04:14:57.803423-07:00,0.0,10.741026,10741.026 +17243,2025-03-09T04:15:08.523597-07:00,0.0,10.720174,10720.174 +17244,2025-03-09T04:15:19.255587-07:00,0.0,10.73199,10731.99 +17245,2025-03-09T04:15:29.994282-07:00,0.0,10.738695,10738.695 +17246,2025-03-09T04:15:40.724285-07:00,0.0,10.730003,10730.003 +17247,2025-03-09T04:15:51.450533-07:00,0.0,10.726248,10726.248 +17248,2025-03-09T04:16:02.185493-07:00,0.0,10.73496,10734.96 +17249,2025-03-09T04:16:12.920326-07:00,0.0,10.734833,10734.833 +17250,2025-03-09T04:16:23.645824-07:00,0.0,10.725498,10725.498 +17251,2025-03-09T04:16:34.375019-07:00,0.0,10.729195,10729.195 +17252,2025-03-09T04:16:45.104286-07:00,0.0,10.729267,10729.267 +17253,2025-03-09T04:16:55.836598-07:00,0.0,10.732312,10732.312 +17254,2025-03-09T04:17:06.565280-07:00,0.0,10.728682,10728.682 +17255,2025-03-09T04:17:17.288460-07:00,0.0,10.72318,10723.18 +17256,2025-03-09T04:17:28.018680-07:00,0.0,10.73022,10730.22 +17257,2025-03-09T04:17:38.752312-07:00,0.0,10.733632,10733.632 +17258,2025-03-09T04:17:49.485496-07:00,0.0,10.733184,10733.184 +17259,2025-03-09T04:18:00.210134-07:00,0.0,10.724638,10724.638 +17260,2025-03-09T04:18:10.947306-07:00,0.0,10.737172,10737.172 +17261,2025-03-09T04:18:21.679279-07:00,0.0,10.731973,10731.973 +17262,2025-03-09T04:18:32.405479-07:00,0.0,10.7262,10726.2 +17263,2025-03-09T04:18:43.135279-07:00,0.0,10.7298,10729.8 +17264,2025-03-09T04:18:53.865354-07:00,0.0,10.730075,10730.075 +17265,2025-03-09T04:19:04.597674-07:00,0.0,10.73232,10732.32 +17266,2025-03-09T04:19:15.328290-07:00,0.0,10.730616,10730.616 +17267,2025-03-09T04:19:26.060341-07:00,0.0,10.732051,10732.051 +17268,2025-03-09T04:19:36.782140-07:00,0.0,10.721799,10721.799 +17269,2025-03-09T04:19:47.514278-07:00,0.0,10.732138,10732.138 +17270,2025-03-09T04:19:58.247534-07:00,0.0,10.733256,10733.256 +17271,2025-03-09T04:20:08.982449-07:00,0.0,10.734915,10734.915 +17272,2025-03-09T04:20:19.700346-07:00,0.0,10.717897,10717.897 +17273,2025-03-09T04:20:30.428209-07:00,0.0,10.727863,10727.863 +17274,2025-03-09T04:20:41.156283-07:00,0.0,10.728074,10728.074 +17275,2025-03-09T04:20:51.891286-07:00,0.0,10.735003,10735.003 +17276,2025-03-09T04:21:02.612175-07:00,0.0,10.720889,10720.889 +17277,2025-03-09T04:21:13.339294-07:00,0.0,10.727119,10727.119 +17278,2025-03-09T04:21:24.067493-07:00,0.0,10.728199,10728.199 +17279,2025-03-09T04:21:34.803889-07:00,0.0,10.736396,10736.396 +17280,2025-03-09T04:21:45.537294-07:00,0.0,10.733405,10733.405 +17281,2025-03-09T04:21:56.268282-07:00,0.0,10.730988,10730.988 +17282,2025-03-09T04:22:06.989510-07:00,0.0,10.721228,10721.228 +17283,2025-03-09T04:22:17.728505-07:00,0.0,10.738995,10738.995 +17284,2025-03-09T04:22:28.457372-07:00,0.0,10.728867,10728.867 +17285,2025-03-09T04:22:39.175316-07:00,0.0,10.717944,10717.944 +17286,2025-03-09T04:22:49.908497-07:00,0.0,10.733181,10733.181 +17287,2025-03-09T04:23:00.632446-07:00,0.0,10.723949,10723.949 +17288,2025-03-09T04:23:11.365286-07:00,0.0,10.73284,10732.84 +17289,2025-03-09T04:23:22.092585-07:00,0.0,10.727299,10727.299 +17290,2025-03-09T04:23:32.828886-07:00,0.0,10.736301,10736.301 +17291,2025-03-09T04:23:43.546437-07:00,0.0,10.717551,10717.551 +17292,2025-03-09T04:23:54.274570-07:00,0.0,10.728133,10728.133 +17293,2025-03-09T04:24:05.009501-07:00,0.0,10.734931,10734.931 +17294,2025-03-09T04:24:15.734418-07:00,0.0,10.724917,10724.917 +17295,2025-03-09T04:24:26.465532-07:00,0.0,10.731114,10731.114 +17296,2025-03-09T04:24:37.190282-07:00,0.0,10.72475,10724.75 +17297,2025-03-09T04:24:47.916486-07:00,0.0,10.726204,10726.204 +17298,2025-03-09T04:24:58.656380-07:00,0.0,10.739894,10739.894 +17299,2025-03-09T04:25:09.381350-07:00,0.0,10.72497,10724.97 +17300,2025-03-09T04:25:20.105695-07:00,0.0,10.724345,10724.345 +17301,2025-03-09T04:25:30.837730-07:00,0.0,10.732035,10732.035 +17302,2025-03-09T04:25:41.562359-07:00,0.0,10.724629,10724.629 +17303,2025-03-09T04:25:52.300278-07:00,0.0,10.737919,10737.919 +17304,2025-03-09T04:26:03.025305-07:00,0.0,10.725027,10725.027 +17305,2025-03-09T04:26:13.749350-07:00,0.0,10.724045,10724.045 +17306,2025-03-09T04:26:24.486485-07:00,0.0,10.737135,10737.135 +17307,2025-03-09T04:26:35.217555-07:00,0.0,10.73107,10731.07 +17308,2025-03-09T04:26:45.942317-07:00,0.0,10.724762,10724.762 +17309,2025-03-09T04:26:56.676320-07:00,0.0,10.734003,10734.003 +17310,2025-03-09T04:27:07.401354-07:00,0.0,10.725034,10725.034 +17311,2025-03-09T04:27:18.130500-07:00,0.0,10.729146,10729.146 +17312,2025-03-09T04:27:28.867456-07:00,0.0,10.736956,10736.956 +17313,2025-03-09T04:27:39.596501-07:00,0.0,10.729045,10729.045 +17314,2025-03-09T04:27:50.324485-07:00,0.0,10.727984,10727.984 +17315,2025-03-09T04:28:01.054477-07:00,0.0,10.729992,10729.992 +17316,2025-03-09T04:28:11.775285-07:00,0.0,10.720808,10720.808 +17317,2025-03-09T04:28:22.506075-07:00,0.0,10.73079,10730.79 +17318,2025-03-09T04:28:33.237481-07:00,0.0,10.731406,10731.406 +17319,2025-03-09T04:28:43.966286-07:00,0.0,10.728805,10728.805 +17320,2025-03-09T04:28:54.694277-07:00,0.0,10.727991,10727.991 +17321,2025-03-09T04:29:05.423467-07:00,0.0,10.72919,10729.19 +17322,2025-03-09T04:29:16.151345-07:00,0.0,10.727878,10727.878 +17323,2025-03-09T04:29:26.875451-07:00,0.0,10.724106,10724.106 +17324,2025-03-09T04:29:37.604282-07:00,0.0,10.728831,10728.831 +17325,2025-03-09T04:29:48.339520-07:00,0.0,10.735238,10735.238 +17326,2025-03-09T04:29:59.060309-07:00,0.0,10.720789,10720.789 +17327,2025-03-09T04:30:09.792284-07:00,0.0,10.731975,10731.975 +17328,2025-03-09T04:30:20.514460-07:00,0.0,10.722176,10722.176 +17329,2025-03-09T04:30:31.249282-07:00,0.0,10.734822,10734.822 +17330,2025-03-09T04:30:41.975288-07:00,0.0,10.726006,10726.006 +17331,2025-03-09T04:30:52.697564-07:00,0.0,10.722276,10722.276 +17332,2025-03-09T04:31:03.433358-07:00,0.0,10.735794,10735.794 +17333,2025-03-09T04:31:14.155449-07:00,0.0,10.722091,10722.091 +17334,2025-03-09T04:31:24.887544-07:00,0.0,10.732095,10732.095 +17335,2025-03-09T04:31:35.613426-07:00,0.0,10.725882,10725.882 +17336,2025-03-09T04:31:46.337452-07:00,0.0,10.724026,10724.026 +17337,2025-03-09T04:31:57.067489-07:00,0.0,10.730037,10730.037 +17338,2025-03-09T04:32:07.790467-07:00,0.0,10.722978,10722.978 +17339,2025-03-09T04:32:18.518436-07:00,0.0,10.727969,10727.969 +17340,2025-03-09T04:32:29.249483-07:00,0.0,10.731047,10731.047 +17341,2025-03-09T04:32:39.979429-07:00,0.0,10.729946,10729.946 +17342,2025-03-09T04:32:50.705453-07:00,0.0,10.726024,10726.024 +17343,2025-03-09T04:33:01.425883-07:00,0.0,10.72043,10720.43 +17344,2025-03-09T04:33:12.154311-07:00,0.0,10.728428,10728.428 +17345,2025-03-09T04:33:22.882285-07:00,0.0,10.727974,10727.974 +17346,2025-03-09T04:33:33.611477-07:00,0.0,10.729192,10729.192 +17347,2025-03-09T04:33:44.338286-07:00,0.0,10.726809,10726.809 +17348,2025-03-09T04:33:55.064460-07:00,0.0,10.726174,10726.174 +17349,2025-03-09T04:34:05.790285-07:00,0.0,10.725825,10725.825 +17350,2025-03-09T04:34:16.519357-07:00,0.0,10.729072,10729.072 +17351,2025-03-09T04:34:27.241462-07:00,0.0,10.722105,10722.105 +17352,2025-03-09T04:34:37.974285-07:00,0.0,10.732823,10732.823 +17353,2025-03-09T04:34:48.700474-07:00,0.0,10.726189,10726.189 +17354,2025-03-09T04:34:59.431544-07:00,0.0,10.73107,10731.07 +17355,2025-03-09T04:35:10.155284-07:00,0.0,10.72374,10723.74 +17356,2025-03-09T04:35:20.889359-07:00,0.0,10.734075,10734.075 +17357,2025-03-09T04:35:31.619549-07:00,0.0,10.73019,10730.19 +17358,2025-03-09T04:35:42.345284-07:00,0.0,10.725735,10725.735 +17359,2025-03-09T04:35:53.070451-07:00,0.0,10.725167,10725.167 +17360,2025-03-09T04:36:03.803773-07:00,0.0,10.733322,10733.322 +17361,2025-03-09T04:36:14.528314-07:00,0.0,10.724541,10724.541 +17362,2025-03-09T04:36:25.259461-07:00,0.0,10.731147,10731.147 +17363,2025-03-09T04:36:35.987282-07:00,0.0,10.727821,10727.821 +17364,2025-03-09T04:36:46.712530-07:00,0.0,10.725248,10725.248 +17365,2025-03-09T04:36:57.447889-07:00,0.0,10.735359,10735.359 +17366,2025-03-09T04:37:08.171285-07:00,0.0,10.723396,10723.396 +17367,2025-03-09T04:37:18.897875-07:00,0.0,10.72659,10726.59 +17368,2025-03-09T04:37:29.632308-07:00,0.0,10.734433,10734.433 +17369,2025-03-09T04:37:40.359353-07:00,0.0,10.727045,10727.045 +17370,2025-03-09T04:37:51.081036-07:00,0.0,10.721683,10721.683 +17371,2025-03-09T04:38:01.815518-07:00,0.0,10.734482,10734.482 +17372,2025-03-09T04:38:12.544285-07:00,0.0,10.728767,10728.767 +17373,2025-03-09T04:38:23.271764-07:00,0.0,10.727479,10727.479 +17374,2025-03-09T04:38:33.994324-07:00,0.0,10.72256,10722.56 +17375,2025-03-09T04:38:44.722507-07:00,0.0,10.728183,10728.183 +17376,2025-03-09T04:38:55.451284-07:00,0.0,10.728777,10728.777 +17377,2025-03-09T04:39:06.173501-07:00,0.0,10.722217,10722.217 +17378,2025-03-09T04:39:16.903306-07:00,0.0,10.729805,10729.805 +17379,2025-03-09T04:39:27.629393-07:00,0.0,10.726087,10726.087 +17380,2025-03-09T04:39:38.349284-07:00,0.0,10.719891,10719.891 +17381,2025-03-09T04:39:49.076789-07:00,0.0,10.727505,10727.505 +17382,2025-03-09T04:39:59.799498-07:00,0.0,10.722709,10722.709 +17383,2025-03-09T04:40:10.526414-07:00,0.0,10.726916,10726.916 +17384,2025-03-09T04:40:21.255689-07:00,0.0,10.729275,10729.275 +17385,2025-03-09T04:40:31.981282-07:00,0.0,10.725593,10725.593 +17386,2025-03-09T04:40:42.705284-07:00,0.0,10.724002,10724.002 +17387,2025-03-09T04:40:53.432717-07:00,0.0,10.727433,10727.433 +17388,2025-03-09T04:41:04.161282-07:00,0.0,10.728565,10728.565 +17389,2025-03-09T04:41:14.885539-07:00,0.0,10.724257,10724.257 +17390,2025-03-09T04:41:25.607360-07:00,0.0,10.721821,10721.821 +17391,2025-03-09T04:41:36.333278-07:00,0.0,10.725918,10725.918 +17392,2025-03-09T04:41:47.058428-07:00,0.0,10.72515,10725.15 +17393,2025-03-09T04:41:57.783286-07:00,0.0,10.724858,10724.858 +17394,2025-03-09T04:42:08.518093-07:00,0.0,10.734807,10734.807 +17395,2025-03-09T04:42:19.247281-07:00,0.0,10.729188,10729.188 +17396,2025-03-09T04:42:29.976442-07:00,0.0,10.729161,10729.161 +17397,2025-03-09T04:42:40.698586-07:00,0.0,10.722144,10722.144 +17398,2025-03-09T04:42:51.424343-07:00,0.0,10.725757,10725.757 +17399,2025-03-09T04:43:02.160474-07:00,0.0,10.736131,10736.131 +17400,2025-03-09T04:43:12.887283-07:00,0.0,10.726809,10726.809 +17401,2025-03-09T04:43:23.614314-07:00,0.0,10.727031,10727.031 +17402,2025-03-09T04:43:34.331475-07:00,0.0,10.717161,10717.161 +17403,2025-03-09T04:43:45.066657-07:00,0.0,10.735182,10735.182 +17404,2025-03-09T04:43:55.791486-07:00,0.0,10.724829,10724.829 +17405,2025-03-09T04:44:06.516312-07:00,0.0,10.724826,10724.826 +17406,2025-03-09T04:44:17.248581-07:00,0.0,10.732269,10732.269 +17407,2025-03-09T04:44:27.975468-07:00,0.0,10.726887,10726.887 +17408,2025-03-09T04:44:38.702284-07:00,0.0,10.726816,10726.816 +17409,2025-03-09T04:44:49.428815-07:00,0.0,10.726531,10726.531 +17410,2025-03-09T04:45:00.158283-07:00,0.0,10.729468,10729.468 +17411,2025-03-09T04:45:10.884424-07:00,0.0,10.726141,10726.141 +17412,2025-03-09T04:45:21.610412-07:00,0.0,10.725988,10725.988 +17413,2025-03-09T04:45:32.342278-07:00,0.0,10.731866,10731.866 +17414,2025-03-09T04:45:43.065572-07:00,0.0,10.723294,10723.294 +17415,2025-03-09T04:45:53.790286-07:00,0.0,10.724714,10724.714 +17416,2025-03-09T04:46:04.521356-07:00,0.0,10.73107,10731.07 +17417,2025-03-09T04:46:15.246445-07:00,0.0,10.725089,10725.089 +17418,2025-03-09T04:46:25.966302-07:00,0.0,10.719857,10719.857 +17419,2025-03-09T04:46:36.693460-07:00,0.0,10.727158,10727.158 +17420,2025-03-09T04:46:47.418434-07:00,0.0,10.724974,10724.974 +17421,2025-03-09T04:46:58.144479-07:00,0.0,10.726045,10726.045 +17422,2025-03-09T04:47:08.879753-07:00,0.0,10.735274,10735.274 +17423,2025-03-09T04:47:19.601289-07:00,0.0,10.721536,10721.536 +17424,2025-03-09T04:47:30.330767-07:00,0.0,10.729478,10729.478 +17425,2025-03-09T04:47:41.048283-07:00,0.0,10.717516,10717.516 +17426,2025-03-09T04:47:51.778353-07:00,0.0,10.73007,10730.07 +17427,2025-03-09T04:48:02.505405-07:00,0.0,10.727052,10727.052 +17428,2025-03-09T04:48:13.230283-07:00,0.0,10.724878,10724.878 +17429,2025-03-09T04:48:23.953391-07:00,0.0,10.723108,10723.108 +17430,2025-03-09T04:48:34.683554-07:00,0.0,10.730163,10730.163 +17431,2025-03-09T04:48:45.404497-07:00,0.0,10.720943,10720.943 +17432,2025-03-09T04:48:56.127285-07:00,0.0,10.722788,10722.788 +17433,2025-03-09T04:49:06.850311-07:00,0.0,10.723026,10723.026 +17434,2025-03-09T04:49:17.584820-07:00,0.0,10.734509,10734.509 +17435,2025-03-09T04:49:28.307312-07:00,0.0,10.722492,10722.492 +17436,2025-03-09T04:49:39.022898-07:00,0.0,10.715586,10715.586 +17437,2025-03-09T04:49:49.755286-07:00,0.0,10.732388,10732.388 +17438,2025-03-09T04:50:00.470432-07:00,0.0,10.715146,10715.146 +17439,2025-03-09T04:50:11.198347-07:00,0.0,10.727915,10727.915 +17440,2025-03-09T04:50:21.931360-07:00,0.0,10.733013,10733.013 +17441,2025-03-09T04:50:32.644287-07:00,0.0,10.712927,10712.927 +17442,2025-03-09T04:50:43.371478-07:00,0.0,10.727191,10727.191 +17443,2025-03-09T04:50:54.098296-07:00,0.0,10.726818,10726.818 +17444,2025-03-09T04:51:04.815468-07:00,0.0,10.717172,10717.172 +17445,2025-03-09T04:51:15.550319-07:00,0.0,10.734851,10734.851 +17446,2025-03-09T04:51:26.268496-07:00,0.0,10.718177,10718.177 +17447,2025-03-09T04:51:36.988349-07:00,0.0,10.719853,10719.853 +17448,2025-03-09T04:51:47.710585-07:00,0.0,10.722236,10722.236 +17449,2025-03-09T04:51:58.440510-07:00,0.0,10.729925,10729.925 +17450,2025-03-09T04:52:09.162347-07:00,0.0,10.721837,10721.837 +17451,2025-03-09T04:52:19.882487-07:00,0.0,10.72014,10720.14 +17452,2025-03-09T04:52:30.674447-07:00,0.0,10.79196,10791.96 +17453,2025-03-09T04:52:41.403614-07:00,0.0,10.729167,10729.167 +17454,2025-03-09T04:52:52.124517-07:00,0.0,10.720903,10720.903 +17455,2025-03-09T04:53:02.858657-07:00,0.0,10.73414,10734.14 +17456,2025-03-09T04:53:13.584456-07:00,0.0,10.725799,10725.799 +17457,2025-03-09T04:53:24.303448-07:00,0.0,10.718992,10718.992 +17458,2025-03-09T04:53:35.026944-07:00,0.0,10.723496,10723.496 +17459,2025-03-09T04:53:45.748450-07:00,0.0,10.721506,10721.506 +17460,2025-03-09T04:53:56.467839-07:00,0.0,10.719389,10719.389 +17461,2025-03-09T04:54:07.189449-07:00,0.0,10.72161,10721.61 +17462,2025-03-09T04:54:17.912469-07:00,0.0,10.72302,10723.02 +17463,2025-03-09T04:54:28.636450-07:00,0.0,10.723981,10723.981 +17464,2025-03-09T04:54:39.364647-07:00,0.0,10.728197,10728.197 +17465,2025-03-09T04:54:50.087448-07:00,0.0,10.722801,10722.801 +17466,2025-03-09T04:55:00.805232-07:00,0.0,10.717784,10717.784 +17467,2025-03-09T04:55:11.526655-07:00,0.0,10.721423,10721.423 +17468,2025-03-09T04:55:22.254605-07:00,0.0,10.72795,10727.95 +17469,2025-03-09T04:55:32.980600-07:00,0.0,10.725995,10725.995 +17470,2025-03-09T04:55:43.698618-07:00,0.0,10.718018,10718.018 +17471,2025-03-09T04:55:54.430446-07:00,0.0,10.731828,10731.828 +17472,2025-03-09T04:56:05.149159-07:00,0.0,10.718713,10718.713 +17473,2025-03-09T04:56:15.884906-07:00,0.0,10.735747,10735.747 +17474,2025-03-09T04:56:26.609512-07:00,0.0,10.724606,10724.606 +17475,2025-03-09T04:56:37.333629-07:00,0.0,10.724117,10724.117 +17476,2025-03-09T04:56:48.054722-07:00,0.0,10.721093,10721.093 +17477,2025-03-09T04:56:58.775618-07:00,0.0,10.720896,10720.896 +17478,2025-03-09T04:57:09.495451-07:00,0.0,10.719833,10719.833 +17479,2025-03-09T04:57:20.225805-07:00,0.0,10.730354,10730.354 +17480,2025-03-09T04:57:30.945446-07:00,0.0,10.719641,10719.641 +17481,2025-03-09T04:57:41.670703-07:00,0.0,10.725257,10725.257 +17482,2025-03-09T04:57:52.402652-07:00,0.0,10.731949,10731.949 +17483,2025-03-09T04:58:03.127448-07:00,0.0,10.724796,10724.796 +17484,2025-03-09T04:58:13.849870-07:00,0.0,10.722422,10722.422 +17485,2025-03-09T04:58:24.572798-07:00,0.0,10.722928,10722.928 +17486,2025-03-09T04:58:35.299627-07:00,0.0,10.726829,10726.829 +17487,2025-03-09T04:58:46.019446-07:00,0.0,10.719819,10719.819 +17488,2025-03-09T04:58:56.748674-07:00,0.0,10.729228,10729.228 +17489,2025-03-09T04:59:07.470447-07:00,0.0,10.721773,10721.773 +17490,2025-03-09T04:59:18.187620-07:00,0.0,10.717173,10717.173 +17491,2025-03-09T04:59:28.912448-07:00,0.0,10.724828,10724.828 +17492,2025-03-09T04:59:39.643449-07:00,0.0,10.731001,10731.001 +17493,2025-03-09T04:59:50.360474-07:00,0.0,10.717025,10717.025 +17494,2025-03-09T05:00:01.083638-07:00,0.0,10.723164,10723.164 +17495,2025-03-09T05:00:11.811514-07:00,0.0,10.727876,10727.876 +17496,2025-03-09T05:00:22.535446-07:00,0.0,10.723932,10723.932 +17497,2025-03-09T05:00:33.256554-07:00,0.0,10.721108,10721.108 +17498,2025-03-09T05:00:43.987661-07:00,0.0,10.731107,10731.107 +17499,2025-03-09T05:00:54.714651-07:00,0.0,10.72699,10726.99 +17500,2025-03-09T05:01:05.428449-07:00,0.0,10.713798,10713.798 +17501,2025-03-09T05:01:16.163655-07:00,0.0,10.735206,10735.206 +17502,2025-03-09T05:01:26.884446-07:00,0.0,10.720791,10720.791 +17503,2025-03-09T05:01:37.607706-07:00,0.0,10.72326,10723.26 +17504,2025-03-09T05:01:48.334449-07:00,0.0,10.726743,10726.743 +17505,2025-03-09T05:01:59.057449-07:00,0.0,10.723,10723.0 +17506,2025-03-09T05:02:09.789613-07:00,0.0,10.732164,10732.164 +17507,2025-03-09T05:02:20.511459-07:00,0.0,10.721846,10721.846 +17508,2025-03-09T05:02:31.232827-07:00,0.0,10.721368,10721.368 +17509,2025-03-09T05:02:41.962446-07:00,0.0,10.729619,10729.619 +17510,2025-03-09T05:02:52.694448-07:00,0.0,10.732002,10732.002 +17511,2025-03-09T05:03:03.416166-07:00,0.0,10.721718,10721.718 +17512,2025-03-09T05:03:14.139449-07:00,0.0,10.723283,10723.283 +17513,2025-03-09T05:03:24.868621-07:00,0.0,10.729172,10729.172 +17514,2025-03-09T05:03:35.591414-07:00,0.0,10.722793,10722.793 +17515,2025-03-09T05:03:46.309620-07:00,0.0,10.718206,10718.206 +17516,2025-03-09T05:03:57.041044-07:00,0.0,10.731424,10731.424 +17517,2025-03-09T05:04:07.760658-07:00,0.0,10.719614,10719.614 +17518,2025-03-09T05:04:18.480647-07:00,0.0,10.719989,10719.989 +17519,2025-03-09T05:04:29.207444-07:00,0.0,10.726797,10726.797 +17520,2025-03-09T05:04:39.935472-07:00,0.0,10.728028,10728.028 +17521,2025-03-09T05:04:50.657650-07:00,0.0,10.722178,10722.178 +17522,2025-03-09T05:05:01.380958-07:00,0.0,10.723308,10723.308 +17523,2025-03-09T05:05:12.114448-07:00,0.0,10.73349,10733.49 +17524,2025-03-09T05:05:22.841741-07:00,0.0,10.727293,10727.293 +17525,2025-03-09T05:05:33.561511-07:00,0.0,10.71977,10719.77 +17526,2025-03-09T05:05:44.286657-07:00,0.0,10.725146,10725.146 +17527,2025-03-09T05:05:55.022624-07:00,0.0,10.735967,10735.967 +17528,2025-03-09T05:06:05.752477-07:00,0.0,10.729853,10729.853 +17529,2025-03-09T05:06:16.481449-07:00,0.0,10.728972,10728.972 +17530,2025-03-09T05:06:27.202469-07:00,0.0,10.72102,10721.02 +17531,2025-03-09T05:06:37.935467-07:00,0.0,10.732998,10732.998 +17532,2025-03-09T05:06:48.658628-07:00,0.0,10.723161,10723.161 +17533,2025-03-09T05:06:59.385449-07:00,0.0,10.726821,10726.821 +17534,2025-03-09T05:07:10.106939-07:00,0.0,10.72149,10721.49 +17535,2025-03-09T05:07:20.843999-07:00,0.0,10.73706,10737.06 +17536,2025-03-09T05:07:31.565450-07:00,0.0,10.721451,10721.451 +17537,2025-03-09T05:07:42.290821-07:00,0.0,10.725371,10725.371 +17538,2025-03-09T05:07:53.011452-07:00,0.0,10.720631,10720.631 +17539,2025-03-09T05:08:03.742698-07:00,0.0,10.731246,10731.246 +17540,2025-03-09T05:08:14.472712-07:00,0.0,10.730014,10730.014 +17541,2025-03-09T05:08:25.200450-07:00,0.0,10.727738,10727.738 +17542,2025-03-09T05:08:35.928629-07:00,0.0,10.728179,10728.179 +17543,2025-03-09T05:08:46.656646-07:00,0.0,10.728017,10728.017 +17544,2025-03-09T05:08:57.370619-07:00,0.0,10.713973,10713.973 +17545,2025-03-09T05:09:08.098446-07:00,0.0,10.727827,10727.827 +17546,2025-03-09T05:09:18.827948-07:00,0.0,10.729502,10729.502 +17547,2025-03-09T05:09:29.543477-07:00,0.0,10.715529,10715.529 +17548,2025-03-09T05:09:40.275514-07:00,0.0,10.732037,10732.037 +17549,2025-03-09T05:09:50.993581-07:00,0.0,10.718067,10718.067 +17550,2025-03-09T05:10:01.719625-07:00,0.0,10.726044,10726.044 +17551,2025-03-09T05:10:12.445653-07:00,0.0,10.726028,10726.028 +17552,2025-03-09T05:10:23.168574-07:00,0.0,10.722921,10722.921 +17553,2025-03-09T05:10:33.892828-07:00,0.0,10.724254,10724.254 +17554,2025-03-09T05:10:44.618449-07:00,0.0,10.725621,10725.621 +17555,2025-03-09T05:10:55.342390-07:00,0.0,10.723941,10723.941 +17556,2025-03-09T05:11:06.067651-07:00,0.0,10.725261,10725.261 +17557,2025-03-09T05:11:16.790634-07:00,0.0,10.722983,10722.983 +17558,2025-03-09T05:11:27.512734-07:00,0.0,10.7221,10722.1 +17559,2025-03-09T05:11:38.239600-07:00,0.0,10.726866,10726.866 +17560,2025-03-09T05:11:48.968642-07:00,0.0,10.729042,10729.042 +17561,2025-03-09T05:11:59.690963-07:00,0.0,10.722321,10722.321 +17562,2025-03-09T05:12:10.411146-07:00,0.0,10.720183,10720.183 +17563,2025-03-09T05:12:21.138686-07:00,0.0,10.72754,10727.54 +17564,2025-03-09T05:12:31.863120-07:00,0.0,10.724434,10724.434 +17565,2025-03-09T05:12:42.589448-07:00,0.0,10.726328,10726.328 +17566,2025-03-09T05:12:53.313828-07:00,0.0,10.72438,10724.38 +17567,2025-03-09T05:13:04.035659-07:00,0.0,10.721831,10721.831 +17568,2025-03-09T05:13:14.759722-07:00,0.0,10.724063,10724.063 +17569,2025-03-09T05:13:25.477449-07:00,0.0,10.717727,10717.727 +17570,2025-03-09T05:13:36.200450-07:00,0.0,10.723001,10723.001 +17571,2025-03-09T05:13:46.936654-07:00,0.0,10.736204,10736.204 +17572,2025-03-09T05:13:57.662656-07:00,0.0,10.726002,10726.002 +17573,2025-03-09T05:14:08.387673-07:00,0.0,10.725017,10725.017 +17574,2025-03-09T05:14:19.103449-07:00,0.0,10.715776,10715.776 +17575,2025-03-09T05:14:20.106118-07:00,0.0,1.002669,1002.669 +17576,2025-03-09T05:14:29.834774-07:00,0.0,9.728656,9728.656 +17577,2025-03-09T05:14:40.555443-07:00,0.0,10.720669,10720.669 +17578,2025-03-09T05:14:51.284448-07:00,0.0,10.729005,10729.005 +17579,2025-03-09T05:15:02.004621-07:00,0.0,10.720173,10720.173 +17580,2025-03-09T05:15:12.733476-07:00,0.0,10.728855,10728.855 +17581,2025-03-09T05:15:23.459627-07:00,0.0,10.726151,10726.151 +17582,2025-03-09T05:15:34.177455-07:00,0.0,10.717828,10717.828 +17583,2025-03-09T05:15:44.909642-07:00,0.0,10.732187,10732.187 +17584,2025-03-09T05:15:55.620512-07:00,0.0,10.71087,10710.87 +17585,2025-03-09T05:16:06.346612-07:00,0.0,10.7261,10726.1 +17586,2025-03-09T05:16:17.070518-07:00,0.0,10.723906,10723.906 +17587,2025-03-09T05:16:27.790633-07:00,0.0,10.720115,10720.115 +17588,2025-03-09T05:16:38.507498-07:00,0.0,10.716865,10716.865 +17589,2025-03-09T05:16:49.230661-07:00,0.0,10.723163,10723.163 +17590,2025-03-09T05:16:59.959660-07:00,0.0,10.728999,10728.999 +17591,2025-03-09T05:17:10.676629-07:00,0.0,10.716969,10716.969 +17592,2025-03-09T05:17:21.402118-07:00,0.0,10.725489,10725.489 +17593,2025-03-09T05:17:32.121623-07:00,0.0,10.719505,10719.505 +17594,2025-03-09T05:17:42.850471-07:00,0.0,10.728848,10728.848 +17595,2025-03-09T05:17:53.573647-07:00,0.0,10.723176,10723.176 +17596,2025-03-09T05:18:04.286543-07:00,0.0,10.712896,10712.896 +17597,2025-03-09T05:18:15.009653-07:00,0.0,10.72311,10723.11 +17598,2025-03-09T05:18:25.743443-07:00,0.0,10.73379,10733.79 +17599,2025-03-09T05:18:36.458673-07:00,0.0,10.71523,10715.23 +17600,2025-03-09T05:18:47.185449-07:00,0.0,10.726776,10726.776 +17601,2025-03-09T05:18:57.906520-07:00,0.0,10.721071,10721.071 +17602,2025-03-09T05:19:08.633472-07:00,0.0,10.726952,10726.952 +17603,2025-03-09T05:19:19.356529-07:00,0.0,10.723057,10723.057 +17604,2025-03-09T05:19:30.076642-07:00,0.0,10.720113,10720.113 +17605,2025-03-09T05:19:40.796449-07:00,0.0,10.719807,10719.807 +17606,2025-03-09T05:19:51.520503-07:00,0.0,10.724054,10724.054 +17607,2025-03-09T05:20:02.247816-07:00,0.0,10.727313,10727.313 +17608,2025-03-09T05:20:12.976629-07:00,0.0,10.728813,10728.813 +17609,2025-03-09T05:20:23.689519-07:00,0.0,10.71289,10712.89 +17610,2025-03-09T05:20:34.413745-07:00,0.0,10.724226,10724.226 +17611,2025-03-09T05:20:45.144442-07:00,0.0,10.730697,10730.697 +17612,2025-03-09T05:20:55.865887-07:00,0.0,10.721445,10721.445 +17613,2025-03-09T05:21:06.579449-07:00,0.0,10.713562,10713.562 +17614,2025-03-09T05:21:17.302588-07:00,0.0,10.723139,10723.139 +17615,2025-03-09T05:21:28.035445-07:00,0.0,10.732857,10732.857 +17616,2025-03-09T05:21:38.748620-07:00,0.0,10.713175,10713.175 +17617,2025-03-09T05:21:49.476448-07:00,0.0,10.727828,10727.828 +17618,2025-03-09T05:22:00.198723-07:00,0.0,10.722275,10722.275 +17619,2025-03-09T05:22:10.921511-07:00,0.0,10.722788,10722.788 +17620,2025-03-09T05:22:21.635632-07:00,0.0,10.714121,10714.121 +17621,2025-03-09T05:22:32.366449-07:00,0.0,10.730817,10730.817 +17622,2025-03-09T05:22:43.087772-07:00,0.0,10.721323,10721.323 +17623,2025-03-09T05:22:53.807442-07:00,0.0,10.71967,10719.67 +17624,2025-03-09T05:23:04.531449-07:00,0.0,10.724007,10724.007 +17625,2025-03-09T05:23:15.250454-07:00,0.0,10.719005,10719.005 +17626,2025-03-09T05:23:25.973738-07:00,0.0,10.723284,10723.284 +17627,2025-03-09T05:23:36.695444-07:00,0.0,10.721706,10721.706 +17628,2025-03-09T05:23:47.420767-07:00,0.0,10.725323,10725.323 +17629,2025-03-09T05:23:58.142448-07:00,0.0,10.721681,10721.681 +17630,2025-03-09T05:24:08.871439-07:00,0.0,10.728991,10728.991 +17631,2025-03-09T05:24:19.599637-07:00,0.0,10.728198,10728.198 +17632,2025-03-09T05:24:30.320539-07:00,0.0,10.720902,10720.902 +17633,2025-03-09T05:24:41.038642-07:00,0.0,10.718103,10718.103 +17634,2025-03-09T05:24:51.764480-07:00,0.0,10.725838,10725.838 +17635,2025-03-09T05:25:02.492633-07:00,0.0,10.728153,10728.153 +17636,2025-03-09T05:25:13.210455-07:00,0.0,10.717822,10717.822 +17637,2025-03-09T05:25:23.941775-07:00,0.0,10.73132,10731.32 +17638,2025-03-09T05:25:34.659446-07:00,0.0,10.717671,10717.671 +17639,2025-03-09T05:25:45.385450-07:00,0.0,10.726004,10726.004 +17640,2025-03-09T05:25:56.119785-07:00,0.0,10.734335,10734.335 +17641,2025-03-09T05:26:06.838441-07:00,0.0,10.718656,10718.656 +17642,2025-03-09T05:26:17.560446-07:00,0.0,10.722005,10722.005 +17643,2025-03-09T05:26:28.289602-07:00,0.0,10.729156,10729.156 +17644,2025-03-09T05:26:39.011896-07:00,0.0,10.722294,10722.294 +17645,2025-03-09T05:26:49.748472-07:00,0.0,10.736576,10736.576 +17646,2025-03-09T05:27:00.472506-07:00,0.0,10.724034,10724.034 +17647,2025-03-09T05:27:11.197152-07:00,0.0,10.724646,10724.646 +17648,2025-03-09T05:27:21.928446-07:00,0.0,10.731294,10731.294 +17649,2025-03-09T05:27:32.649611-07:00,0.0,10.721165,10721.165 +17650,2025-03-09T05:27:43.371740-07:00,0.0,10.722129,10722.129 +17651,2025-03-09T05:27:54.101641-07:00,0.0,10.729901,10729.901 +17652,2025-03-09T05:28:04.824448-07:00,0.0,10.722807,10722.807 +17653,2025-03-09T05:28:15.552658-07:00,0.0,10.72821,10728.21 +17654,2025-03-09T05:28:26.273533-07:00,0.0,10.720875,10720.875 +17655,2025-03-09T05:28:37.003462-07:00,0.0,10.729929,10729.929 +17656,2025-03-09T05:28:47.732306-07:00,0.0,10.728844,10728.844 +17657,2025-03-09T05:28:58.451518-07:00,0.0,10.719212,10719.212 +17658,2025-03-09T05:29:09.182448-07:00,0.0,10.73093,10730.93 +17659,2025-03-09T05:29:19.916827-07:00,0.0,10.734379,10734.379 +17660,2025-03-09T05:29:30.634446-07:00,0.0,10.717619,10717.619 +17661,2025-03-09T05:29:41.360939-07:00,0.0,10.726493,10726.493 +17662,2025-03-09T05:29:52.090839-07:00,0.0,10.7299,10729.9 +17663,2025-03-09T05:30:02.814690-07:00,0.0,10.723851,10723.851 +17664,2025-03-09T05:30:13.542538-07:00,0.0,10.727848,10727.848 +17665,2025-03-09T05:30:24.264529-07:00,0.0,10.721991,10721.991 +17666,2025-03-09T05:30:34.998841-07:00,0.0,10.734312,10734.312 +17667,2025-03-09T05:30:45.722512-07:00,0.0,10.723671,10723.671 +17668,2025-03-09T05:30:56.447448-07:00,0.0,10.724936,10724.936 +17669,2025-03-09T05:31:07.175641-07:00,0.0,10.728193,10728.193 +17670,2025-03-09T05:31:17.899520-07:00,0.0,10.723879,10723.879 +17671,2025-03-09T05:31:28.628638-07:00,0.0,10.729118,10729.118 +17672,2025-03-09T05:31:39.352448-07:00,0.0,10.72381,10723.81 +17673,2025-03-09T05:31:50.079793-07:00,0.0,10.727345,10727.345 +17674,2025-03-09T05:32:00.795629-07:00,0.0,10.715836,10715.836 +17675,2025-03-09T05:32:11.520659-07:00,0.0,10.72503,10725.03 +17676,2025-03-09T05:32:22.250655-07:00,0.0,10.729996,10729.996 +17677,2025-03-09T05:32:32.963614-07:00,0.0,10.712959,10712.959 +17678,2025-03-09T05:32:43.692681-07:00,0.0,10.729067,10729.067 +17679,2025-03-09T05:32:54.415378-07:00,0.0,10.722697,10722.697 +17680,2025-03-09T05:33:05.142972-07:00,0.0,10.727594,10727.594 +17681,2025-03-09T05:33:15.868448-07:00,0.0,10.725476,10725.476 +17682,2025-03-09T05:33:26.596628-07:00,0.0,10.72818,10728.18 +17683,2025-03-09T05:33:37.326446-07:00,0.0,10.729818,10729.818 +17684,2025-03-09T05:33:48.055538-07:00,0.0,10.729092,10729.092 +17685,2025-03-09T05:33:58.781273-07:00,0.0,10.725735,10725.735 +17686,2025-03-09T05:34:09.505596-07:00,0.0,10.724323,10724.323 +17687,2025-03-09T05:34:20.233636-07:00,0.0,10.72804,10728.04 +17688,2025-03-09T05:34:30.954654-07:00,0.0,10.721018,10721.018 +17689,2025-03-09T05:34:41.677620-07:00,0.0,10.722966,10722.966 +17690,2025-03-09T05:34:52.412446-07:00,0.0,10.734826,10734.826 +17691,2025-03-09T05:35:03.131443-07:00,0.0,10.718997,10718.997 +17692,2025-03-09T05:35:13.859780-07:00,0.0,10.728337,10728.337 +17693,2025-03-09T05:35:24.585450-07:00,0.0,10.72567,10725.67 +17694,2025-03-09T05:35:35.310790-07:00,0.0,10.72534,10725.34 +17695,2025-03-09T05:35:46.032595-07:00,0.0,10.721805,10721.805 +17696,2025-03-09T05:35:56.756621-07:00,0.0,10.724026,10724.026 +17697,2025-03-09T05:35:57.612996-07:00,0.0,0.856375,856.375 +17698,2025-03-09T05:36:07.490680-07:00,0.0,9.877684,9877.684 +17699,2025-03-09T05:36:18.216849-07:00,0.0,10.726169,10726.169 +17700,2025-03-09T05:36:28.939896-07:00,0.0,10.723047,10723.047 +17701,2025-03-09T05:36:39.663656-07:00,0.0,10.72376,10723.76 +17702,2025-03-09T05:36:50.391653-07:00,0.0,10.727997,10727.997 +17703,2025-03-09T05:37:01.128468-07:00,0.0,10.736815,10736.815 +17704,2025-03-09T05:37:11.852448-07:00,0.0,10.72398,10723.98 +17705,2025-03-09T05:37:22.581631-07:00,0.0,10.729183,10729.183 +17706,2025-03-09T05:37:33.310643-07:00,0.0,10.729012,10729.012 +17707,2025-03-09T05:37:44.036449-07:00,0.0,10.725806,10725.806 +17708,2025-03-09T05:37:54.758448-07:00,0.0,10.721999,10721.999 +17709,2025-03-09T05:38:05.487725-07:00,0.0,10.729277,10729.277 +17710,2025-03-09T05:38:16.215620-07:00,0.0,10.727895,10727.895 +17711,2025-03-09T05:38:26.944451-07:00,0.0,10.728831,10728.831 +17712,2025-03-09T05:38:37.666142-07:00,0.0,10.721691,10721.691 +17713,2025-03-09T05:38:48.390034-07:00,0.0,10.723892,10723.892 +17714,2025-03-09T05:38:59.125449-07:00,0.0,10.735415,10735.415 +17715,2025-03-09T05:39:09.848838-07:00,0.0,10.723389,10723.389 +17716,2025-03-09T05:39:20.579447-07:00,0.0,10.730609,10730.609 +17717,2025-03-09T05:39:31.301222-07:00,0.0,10.721775,10721.775 +17718,2025-03-09T05:39:42.037835-07:00,0.0,10.736613,10736.613 +17719,2025-03-09T05:39:52.757451-07:00,0.0,10.719616,10719.616 +17720,2025-03-09T05:40:03.481243-07:00,0.0,10.723792,10723.792 +17721,2025-03-09T05:40:14.215448-07:00,0.0,10.734205,10734.205 +17722,2025-03-09T05:40:24.940451-07:00,0.0,10.725003,10725.003 +17723,2025-03-09T05:40:35.664474-07:00,0.0,10.724023,10724.023 +17724,2025-03-09T05:40:46.390781-07:00,0.0,10.726307,10726.307 +17725,2025-03-09T05:40:57.126710-07:00,0.0,10.735929,10735.929 +17726,2025-03-09T05:41:07.848642-07:00,0.0,10.721932,10721.932 +17727,2025-03-09T05:41:18.578450-07:00,0.0,10.729808,10729.808 +17728,2025-03-09T05:41:29.302472-07:00,0.0,10.724022,10724.022 +17729,2025-03-09T05:41:40.027704-07:00,0.0,10.725232,10725.232 +17730,2025-03-09T05:41:50.756622-07:00,0.0,10.728918,10728.918 +17731,2025-03-09T05:42:01.485455-07:00,0.0,10.728833,10728.833 +17732,2025-03-09T05:42:12.207660-07:00,0.0,10.722205,10722.205 +17733,2025-03-09T05:42:22.935211-07:00,0.0,10.727551,10727.551 +17734,2025-03-09T05:42:33.659451-07:00,0.0,10.72424,10724.24 +17735,2025-03-09T05:42:44.387648-07:00,0.0,10.728197,10728.197 +17736,2025-03-09T05:42:55.118446-07:00,0.0,10.730798,10730.798 +17737,2025-03-09T05:43:05.836629-07:00,0.0,10.718183,10718.183 +17738,2025-03-09T05:43:16.562829-07:00,0.0,10.7262,10726.2 +17739,2025-03-09T05:43:27.296583-07:00,0.0,10.733754,10733.754 +17740,2025-03-09T05:43:38.015448-07:00,0.0,10.718865,10718.865 +17741,2025-03-09T05:43:48.745446-07:00,0.0,10.729998,10729.998 +17742,2025-03-09T05:43:59.463344-07:00,0.0,10.717898,10717.898 +17743,2025-03-09T05:44:10.188689-07:00,0.0,10.725345,10725.345 +17744,2025-03-09T05:44:20.908328-07:00,0.0,10.719639,10719.639 +17745,2025-03-09T05:44:31.636448-07:00,0.0,10.72812,10728.12 +17746,2025-03-09T05:44:42.360710-07:00,0.0,10.724262,10724.262 +17747,2025-03-09T05:44:53.088543-07:00,0.0,10.727833,10727.833 +17748,2025-03-09T05:45:03.812629-07:00,0.0,10.724086,10724.086 +17749,2025-03-09T05:45:14.531651-07:00,0.0,10.719022,10719.022 +17750,2025-03-09T05:45:25.252523-07:00,0.0,10.720872,10720.872 +17751,2025-03-09T05:45:35.979604-07:00,0.0,10.727081,10727.081 +17752,2025-03-09T05:45:46.706728-07:00,0.0,10.727124,10727.124 +17753,2025-03-09T05:45:57.435630-07:00,0.0,10.728902,10728.902 +17754,2025-03-09T05:46:08.158744-07:00,0.0,10.723114,10723.114 +17755,2025-03-09T05:46:18.886788-07:00,0.0,10.728044,10728.044 +17756,2025-03-09T05:46:29.606445-07:00,0.0,10.719657,10719.657 +17757,2025-03-09T05:46:40.329449-07:00,0.0,10.723004,10723.004 +17758,2025-03-09T05:46:51.050652-07:00,0.0,10.721203,10721.203 +17759,2025-03-09T05:47:01.783257-07:00,0.0,10.732605,10732.605 +17760,2025-03-09T05:47:12.503471-07:00,0.0,10.720214,10720.214 +17761,2025-03-09T05:47:23.229742-07:00,0.0,10.726271,10726.271 +17762,2025-03-09T05:47:33.957761-07:00,0.0,10.728019,10728.019 +17763,2025-03-09T05:47:44.677458-07:00,0.0,10.719697,10719.697 +17764,2025-03-09T05:47:55.402840-07:00,0.0,10.725382,10725.382 +17765,2025-03-09T05:48:06.125446-07:00,0.0,10.722606,10722.606 +17766,2025-03-09T05:48:16.847249-07:00,0.0,10.721803,10721.803 +17767,2025-03-09T05:48:27.574638-07:00,0.0,10.727389,10727.389 +17768,2025-03-09T05:48:38.300450-07:00,0.0,10.725812,10725.812 +17769,2025-03-09T05:48:49.025518-07:00,0.0,10.725068,10725.068 +17770,2025-03-09T05:48:59.739656-07:00,0.0,10.714138,10714.138 +17771,2025-03-09T05:49:10.467705-07:00,0.0,10.728049,10728.049 +17772,2025-03-09T05:49:21.192448-07:00,0.0,10.724743,10724.743 +17773,2025-03-09T05:49:31.915930-07:00,0.0,10.723482,10723.482 +17774,2025-03-09T05:49:42.636471-07:00,0.0,10.720541,10720.541 +17775,2025-03-09T05:49:53.360689-07:00,0.0,10.724218,10724.218 +17776,2025-03-09T05:50:04.085827-07:00,0.0,10.725138,10725.138 +17777,2025-03-09T05:50:14.818445-07:00,0.0,10.732618,10732.618 +17778,2025-03-09T05:50:25.543449-07:00,0.0,10.725004,10725.004 +17779,2025-03-09T05:50:36.265627-07:00,0.0,10.722178,10722.178 +17780,2025-03-09T05:50:46.992778-07:00,0.0,10.727151,10727.151 +17781,2025-03-09T05:50:57.720448-07:00,0.0,10.72767,10727.67 +17782,2025-03-09T05:51:08.443633-07:00,0.0,10.723185,10723.185 +17783,2025-03-09T05:51:19.169526-07:00,0.0,10.725893,10725.893 +17784,2025-03-09T05:51:29.893241-07:00,0.0,10.723715,10723.715 +17785,2025-03-09T05:51:40.620447-07:00,0.0,10.727206,10727.206 +17786,2025-03-09T05:51:51.351449-07:00,0.0,10.731002,10731.002 +17787,2025-03-09T05:52:02.075600-07:00,0.0,10.724151,10724.151 +17788,2025-03-09T05:52:12.793447-07:00,0.0,10.717847,10717.847 +17789,2025-03-09T05:52:23.528345-07:00,0.0,10.734898,10734.898 +17790,2025-03-09T05:52:34.220638-07:00,0.0,10.692293,10692.293 +17791,2025-03-09T05:52:44.943509-07:00,0.0,10.722871,10722.871 +17792,2025-03-09T05:52:55.665481-07:00,0.0,10.721972,10721.972 +17793,2025-03-09T05:53:06.382850-07:00,0.0,10.717369,10717.369 +17794,2025-03-09T05:53:17.116081-07:00,0.0,10.733231,10733.231 +17795,2025-03-09T05:53:27.840508-07:00,0.0,10.724427,10724.427 +17796,2025-03-09T05:53:38.563505-07:00,0.0,10.722997,10722.997 +17797,2025-03-09T05:53:49.287504-07:00,0.0,10.723999,10723.999 +17798,2025-03-09T05:54:00.023108-07:00,0.0,10.735604,10735.604 +17799,2025-03-09T05:54:10.745297-07:00,0.0,10.722189,10722.189 +17800,2025-03-09T05:54:21.476686-07:00,0.0,10.731389,10731.389 +17801,2025-03-09T05:54:32.199953-07:00,0.0,10.723267,10723.267 +17802,2025-03-09T05:54:42.931478-07:00,0.0,10.731525,10731.525 +17803,2025-03-09T05:54:53.660055-07:00,0.0,10.728577,10728.577 +17804,2025-03-09T05:55:04.382480-07:00,0.0,10.722425,10722.425 +17805,2025-03-09T05:55:15.108481-07:00,0.0,10.726001,10726.001 +17806,2025-03-09T05:55:25.844690-07:00,0.0,10.736209,10736.209 +17807,2025-03-09T05:55:36.571552-07:00,0.0,10.726862,10726.862 +17808,2025-03-09T05:55:47.297667-07:00,0.0,10.726115,10726.115 +17809,2025-03-09T05:55:58.034659-07:00,0.0,10.736992,10736.992 +17810,2025-03-09T05:56:08.762603-07:00,0.0,10.727944,10727.944 +17811,2025-03-09T05:56:19.488480-07:00,0.0,10.725877,10725.877 +17812,2025-03-09T05:56:30.220239-07:00,0.0,10.731759,10731.759 +17813,2025-03-09T05:56:40.944894-07:00,0.0,10.724655,10724.655 +17814,2025-03-09T05:56:51.675663-07:00,0.0,10.730769,10730.769 +17815,2025-03-09T05:57:02.404482-07:00,0.0,10.728819,10728.819 +17816,2025-03-09T05:57:13.123480-07:00,0.0,10.718998,10718.998 +17817,2025-03-09T05:57:23.850767-07:00,0.0,10.727287,10727.287 +17818,2025-03-09T05:57:34.580690-07:00,0.0,10.729923,10729.923 +17819,2025-03-09T05:57:45.307621-07:00,0.0,10.726931,10726.931 +17820,2025-03-09T05:57:52.586837-07:00,0.0,7.279216,7279.216 +17821,2025-03-09T05:57:56.031668-07:00,0.0,3.444831,3444.831 +17822,2025-03-09T05:58:06.767475-07:00,0.0,10.735807,10735.807 +17823,2025-03-09T05:58:17.493826-07:00,0.0,10.726351,10726.351 +17824,2025-03-09T05:58:28.216482-07:00,0.0,10.722656,10722.656 +17825,2025-03-09T05:58:38.947695-07:00,0.0,10.731213,10731.213 +17826,2025-03-09T05:58:49.673479-07:00,0.0,10.725784,10725.784 +17827,2025-03-09T05:59:00.393483-07:00,0.0,10.720004,10720.004 +17828,2025-03-09T05:59:11.121930-07:00,0.0,10.728447,10728.447 +17829,2025-03-09T05:59:21.847505-07:00,0.0,10.725575,10725.575 +17830,2025-03-09T05:59:32.580853-07:00,0.0,10.733348,10733.348 +17831,2025-03-09T05:59:43.294673-07:00,0.0,10.71382,10713.82 +17832,2025-03-09T05:59:54.024482-07:00,0.0,10.729809,10729.809 +17833,2025-03-09T06:00:04.749538-07:00,0.0,10.725056,10725.056 +17834,2025-03-09T06:00:15.484498-07:00,0.0,10.73496,10734.96 +17835,2025-03-09T06:00:26.211345-07:00,0.0,10.726847,10726.847 +17836,2025-03-09T06:00:36.935510-07:00,0.0,10.724165,10724.165 +17837,2025-03-09T06:00:47.662481-07:00,0.0,10.726971,10726.971 +17838,2025-03-09T06:00:58.384482-07:00,0.0,10.722001,10722.001 +17839,2025-03-09T06:01:09.113693-07:00,0.0,10.729211,10729.211 +17840,2025-03-09T06:01:19.834505-07:00,0.0,10.720812,10720.812 +17841,2025-03-09T06:01:30.561482-07:00,0.0,10.726977,10726.977 +17842,2025-03-09T06:01:41.282190-07:00,0.0,10.720708,10720.708 +17843,2025-03-09T06:01:52.011475-07:00,0.0,10.729285,10729.285 +17844,2025-03-09T06:02:02.740892-07:00,0.0,10.729417,10729.417 +17845,2025-03-09T06:02:13.459970-07:00,0.0,10.719078,10719.078 +17846,2025-03-09T06:02:24.182547-07:00,0.0,10.722577,10722.577 +17847,2025-03-09T06:02:34.916645-07:00,0.0,10.734098,10734.098 +17848,2025-03-09T06:02:45.635508-07:00,0.0,10.718863,10718.863 +17849,2025-03-09T06:02:56.370054-07:00,0.0,10.734546,10734.546 +17850,2025-03-09T06:03:07.089769-07:00,0.0,10.719715,10719.715 +17851,2025-03-09T06:03:17.818130-07:00,0.0,10.728361,10728.361 +17852,2025-03-09T06:03:28.549609-07:00,0.0,10.731479,10731.479 +17853,2025-03-09T06:03:39.271551-07:00,0.0,10.721942,10721.942 +17854,2025-03-09T06:03:50.009669-07:00,0.0,10.738118,10738.118 +17855,2025-03-09T06:04:00.735848-07:00,0.0,10.726179,10726.179 +17856,2025-03-09T06:04:11.464558-07:00,0.0,10.72871,10728.71 +17857,2025-03-09T06:04:22.190679-07:00,0.0,10.726121,10726.121 +17858,2025-03-09T06:04:32.918683-07:00,0.0,10.728004,10728.004 +17859,2025-03-09T06:04:43.646849-07:00,0.0,10.728166,10728.166 +17860,2025-03-09T06:04:54.369577-07:00,0.0,10.722728,10722.728 +17861,2025-03-09T06:05:05.101690-07:00,0.0,10.732113,10732.113 +17862,2025-03-09T06:05:15.832596-07:00,0.0,10.730906,10730.906 +17863,2025-03-09T06:05:26.559028-07:00,0.0,10.726432,10726.432 +17864,2025-03-09T06:05:37.291578-07:00,0.0,10.73255,10732.55 +17865,2025-03-09T06:05:48.013667-07:00,0.0,10.722089,10722.089 +17866,2025-03-09T06:05:58.746718-07:00,0.0,10.733051,10733.051 +17867,2025-03-09T06:06:09.478611-07:00,0.0,10.731893,10731.893 +17868,2025-03-09T06:06:20.211872-07:00,0.0,10.733261,10733.261 +17869,2025-03-09T06:06:30.944589-07:00,0.0,10.732717,10732.717 +17870,2025-03-09T06:06:41.669483-07:00,0.0,10.724894,10724.894 +17871,2025-03-09T06:06:52.402657-07:00,0.0,10.733174,10733.174 +17872,2025-03-09T06:07:03.131553-07:00,0.0,10.728896,10728.896 +17873,2025-03-09T06:07:13.867692-07:00,0.0,10.736139,10736.139 +17874,2025-03-09T06:07:24.588676-07:00,0.0,10.720984,10720.984 +17875,2025-03-09T06:07:35.324514-07:00,0.0,10.735838,10735.838 +17876,2025-03-09T06:07:46.049621-07:00,0.0,10.725107,10725.107 +17877,2025-03-09T06:07:56.788847-07:00,0.0,10.739226,10739.226 +17878,2025-03-09T06:08:07.519009-07:00,0.0,10.730162,10730.162 +17879,2025-03-09T06:08:18.242482-07:00,0.0,10.723473,10723.473 +17880,2025-03-09T06:08:28.974858-07:00,0.0,10.732376,10732.376 +17881,2025-03-09T06:08:39.704479-07:00,0.0,10.729621,10729.621 +17882,2025-03-09T06:08:50.433569-07:00,0.0,10.72909,10729.09 +17883,2025-03-09T06:09:01.165648-07:00,0.0,10.732079,10732.079 +17884,2025-03-09T06:09:11.901547-07:00,0.0,10.735899,10735.899 +17885,2025-03-09T06:09:22.621619-07:00,0.0,10.720072,10720.072 +17886,2025-03-09T06:09:33.357587-07:00,0.0,10.735968,10735.968 +17887,2025-03-09T06:09:44.089491-07:00,0.0,10.731904,10731.904 +17888,2025-03-09T06:09:54.819646-07:00,0.0,10.730155,10730.155 +17889,2025-03-09T06:10:05.552998-07:00,0.0,10.733352,10733.352 +17890,2025-03-09T06:10:16.269481-07:00,0.0,10.716483,10716.483 +17891,2025-03-09T06:10:26.997801-07:00,0.0,10.72832,10728.32 +17892,2025-03-09T06:10:37.734327-07:00,0.0,10.736526,10736.526 +17893,2025-03-09T06:10:48.458485-07:00,0.0,10.724158,10724.158 +17894,2025-03-09T06:10:59.189738-07:00,0.0,10.731253,10731.253 +17895,2025-03-09T06:11:09.920509-07:00,0.0,10.730771,10730.771 +17896,2025-03-09T06:11:20.653477-07:00,0.0,10.732968,10732.968 +17897,2025-03-09T06:11:31.376645-07:00,0.0,10.723168,10723.168 +17898,2025-03-09T06:11:42.112807-07:00,0.0,10.736162,10736.162 +17899,2025-03-09T06:11:52.837645-07:00,0.0,10.724838,10724.838 +17900,2025-03-09T06:12:03.563649-07:00,0.0,10.726004,10726.004 +17901,2025-03-09T06:12:14.289614-07:00,0.0,10.725965,10725.965 +17902,2025-03-09T06:12:25.021504-07:00,0.0,10.73189,10731.89 +17903,2025-03-09T06:12:35.746218-07:00,0.0,10.724714,10724.714 +17904,2025-03-09T06:12:46.473761-07:00,0.0,10.727543,10727.543 +17905,2025-03-09T06:12:57.201660-07:00,0.0,10.727899,10727.899 +17906,2025-03-09T06:13:07.939481-07:00,0.0,10.737821,10737.821 +17907,2025-03-09T06:13:18.668479-07:00,0.0,10.728998,10728.998 +17908,2025-03-09T06:13:29.391669-07:00,0.0,10.72319,10723.19 +17909,2025-03-09T06:13:40.123772-07:00,0.0,10.732103,10732.103 +17910,2025-03-09T06:13:50.854484-07:00,0.0,10.730712,10730.712 +17911,2025-03-09T06:14:01.578078-07:00,0.0,10.723594,10723.594 +17912,2025-03-09T06:14:12.301432-07:00,0.0,10.723354,10723.354 +17913,2025-03-09T06:14:23.032496-07:00,0.0,10.731064,10731.064 +17914,2025-03-09T06:14:33.762567-07:00,0.0,10.730071,10730.071 +17915,2025-03-09T06:14:44.492480-07:00,0.0,10.729913,10729.913 +17916,2025-03-09T06:14:55.213206-07:00,0.0,10.720726,10720.726 +17917,2025-03-09T06:15:05.942609-07:00,0.0,10.729403,10729.403 +17918,2025-03-09T06:15:16.669478-07:00,0.0,10.726869,10726.869 +17919,2025-03-09T06:15:27.392660-07:00,0.0,10.723182,10723.182 +17920,2025-03-09T06:15:38.123687-07:00,0.0,10.731027,10731.027 +17921,2025-03-09T06:15:48.845936-07:00,0.0,10.722249,10722.249 +17922,2025-03-09T06:15:59.569621-07:00,0.0,10.723685,10723.685 +17923,2025-03-09T06:16:10.305538-07:00,0.0,10.735917,10735.917 +17924,2025-03-09T06:16:21.030481-07:00,0.0,10.724943,10724.943 +17925,2025-03-09T06:16:31.755562-07:00,0.0,10.725081,10725.081 +17926,2025-03-09T06:16:42.485660-07:00,0.0,10.730098,10730.098 +17927,2025-03-09T06:16:53.207504-07:00,0.0,10.721844,10721.844 +17928,2025-03-09T06:17:03.934911-07:00,0.0,10.727407,10727.407 +17929,2025-03-09T06:17:14.666611-07:00,0.0,10.7317,10731.7 +17930,2025-03-09T06:17:25.397483-07:00,0.0,10.730872,10730.872 +17931,2025-03-09T06:17:36.122659-07:00,0.0,10.725176,10725.176 +17932,2025-03-09T06:17:46.839482-07:00,0.0,10.716823,10716.823 +17933,2025-03-09T06:17:57.576690-07:00,0.0,10.737208,10737.208 +17934,2025-03-09T06:18:08.294542-07:00,0.0,10.717852,10717.852 +17935,2025-03-09T06:18:19.026478-07:00,0.0,10.731936,10731.936 +17936,2025-03-09T06:18:29.754698-07:00,0.0,10.72822,10728.22 +17937,2025-03-09T06:18:40.480482-07:00,0.0,10.725784,10725.784 +17938,2025-03-09T06:18:51.208517-07:00,0.0,10.728035,10728.035 +17939,2025-03-09T06:19:01.935478-07:00,0.0,10.726961,10726.961 +17940,2025-03-09T06:19:12.663478-07:00,0.0,10.728,10728.0 +17941,2025-03-09T06:19:23.383684-07:00,0.0,10.720206,10720.206 +17942,2025-03-09T06:19:34.106052-07:00,0.0,10.722368,10722.368 +17943,2025-03-09T06:19:44.838689-07:00,0.0,10.732637,10732.637 +17944,2025-03-09T06:19:55.554548-07:00,0.0,10.715859,10715.859 +17945,2025-03-09T06:20:06.290705-07:00,0.0,10.736157,10736.157 +17946,2025-03-09T06:20:17.015482-07:00,0.0,10.724777,10724.777 +17947,2025-03-09T06:20:27.746478-07:00,0.0,10.730996,10730.996 +17948,2025-03-09T06:20:38.471666-07:00,0.0,10.725188,10725.188 +17949,2025-03-09T06:20:49.192686-07:00,0.0,10.72102,10721.02 +17950,2025-03-09T06:20:59.924660-07:00,0.0,10.731974,10731.974 +17951,2025-03-09T06:21:10.650482-07:00,0.0,10.725822,10725.822 +17952,2025-03-09T06:21:21.376480-07:00,0.0,10.725998,10725.998 +17953,2025-03-09T06:21:32.101258-07:00,0.0,10.724778,10724.778 +17954,2025-03-09T06:21:42.823484-07:00,0.0,10.722226,10722.226 +17955,2025-03-09T06:21:53.551651-07:00,0.0,10.728167,10728.167 +17956,2025-03-09T06:22:04.275482-07:00,0.0,10.723831,10723.831 +17957,2025-03-09T06:22:15.004771-07:00,0.0,10.729289,10729.289 +17958,2025-03-09T06:22:25.735985-07:00,0.0,10.731214,10731.214 +17959,2025-03-09T06:22:36.459482-07:00,0.0,10.723497,10723.497 +17960,2025-03-09T06:22:47.176923-07:00,0.0,10.717441,10717.441 +17961,2025-03-09T06:22:57.910480-07:00,0.0,10.733557,10733.557 +17962,2025-03-09T06:23:08.629660-07:00,0.0,10.71918,10719.18 +17963,2025-03-09T06:23:19.353479-07:00,0.0,10.723819,10723.819 +17964,2025-03-09T06:23:30.074659-07:00,0.0,10.72118,10721.18 +17965,2025-03-09T06:23:40.804709-07:00,0.0,10.73005,10730.05 +17966,2025-03-09T06:23:51.530700-07:00,0.0,10.725991,10725.991 +17967,2025-03-09T06:24:02.248479-07:00,0.0,10.717779,10717.779 +17968,2025-03-09T06:24:12.976483-07:00,0.0,10.728004,10728.004 +17969,2025-03-09T06:24:23.703459-07:00,0.0,10.726976,10726.976 +17970,2025-03-09T06:24:34.423479-07:00,0.0,10.72002,10720.02 +17971,2025-03-09T06:24:45.146784-07:00,0.0,10.723305,10723.305 +17972,2025-03-09T06:24:55.871692-07:00,0.0,10.724908,10724.908 +17973,2025-03-09T06:25:06.601682-07:00,0.0,10.72999,10729.99 +17974,2025-03-09T06:25:17.319481-07:00,0.0,10.717799,10717.799 +17975,2025-03-09T06:25:28.043797-07:00,0.0,10.724316,10724.316 +17976,2025-03-09T06:25:38.773630-07:00,0.0,10.729833,10729.833 +17977,2025-03-09T06:25:49.500590-07:00,0.0,10.72696,10726.96 +17978,2025-03-09T06:26:00.220482-07:00,0.0,10.719892,10719.892 +17979,2025-03-09T06:26:10.949546-07:00,0.0,10.729064,10729.064 +17980,2025-03-09T06:26:21.675646-07:00,0.0,10.7261,10726.1 +17981,2025-03-09T06:26:32.396630-07:00,0.0,10.720984,10720.984 +17982,2025-03-09T06:26:43.129665-07:00,0.0,10.733035,10733.035 +17983,2025-03-09T06:26:53.852482-07:00,0.0,10.722817,10722.817 +17984,2025-03-09T06:27:04.579482-07:00,0.0,10.727,10727.0 +17985,2025-03-09T06:27:15.303805-07:00,0.0,10.724323,10724.323 +17986,2025-03-09T06:27:26.027478-07:00,0.0,10.723673,10723.673 +17987,2025-03-09T06:27:36.753733-07:00,0.0,10.726255,10726.255 +17988,2025-03-09T06:27:47.479645-07:00,0.0,10.725912,10725.912 +17989,2025-03-09T06:27:58.200557-07:00,0.0,10.720912,10720.912 +17990,2025-03-09T06:28:08.927481-07:00,0.0,10.726924,10726.924 +17991,2025-03-09T06:28:19.644697-07:00,0.0,10.717216,10717.216 +17992,2025-03-09T06:28:30.373479-07:00,0.0,10.728782,10728.782 +17993,2025-03-09T06:28:41.086699-07:00,0.0,10.71322,10713.22 +17994,2025-03-09T06:28:51.813500-07:00,0.0,10.726801,10726.801 +17995,2025-03-09T06:29:02.544695-07:00,0.0,10.731195,10731.195 +17996,2025-03-09T06:29:13.261691-07:00,0.0,10.716996,10716.996 +17997,2025-03-09T06:29:23.981485-07:00,0.0,10.719794,10719.794 +17998,2025-03-09T06:29:34.704825-07:00,0.0,10.72334,10723.34 +17999,2025-03-09T06:29:45.431540-07:00,0.0,10.726715,10726.715 +18000,2025-03-09T06:29:56.152509-07:00,0.0,10.720969,10720.969 +18001,2025-03-09T06:30:06.877686-07:00,0.0,10.725177,10725.177 +18002,2025-03-09T06:30:17.602670-07:00,0.0,10.724984,10724.984 +18003,2025-03-09T06:30:28.321581-07:00,0.0,10.718911,10718.911 +18004,2025-03-09T06:30:39.038479-07:00,0.0,10.716898,10716.898 +18005,2025-03-09T06:30:49.770683-07:00,0.0,10.732204,10732.204 +18006,2025-03-09T06:31:00.490692-07:00,0.0,10.720009,10720.009 +18007,2025-03-09T06:31:11.211622-07:00,0.0,10.72093,10720.93 +18008,2025-03-09T06:31:21.937663-07:00,0.0,10.726041,10726.041 +18009,2025-03-09T06:31:32.661476-07:00,0.0,10.723813,10723.813 +18010,2025-03-09T06:31:43.380685-07:00,0.0,10.719209,10719.209 +18011,2025-03-09T06:31:54.109687-07:00,0.0,10.729002,10729.002 +18012,2025-03-09T06:32:04.835885-07:00,0.0,10.726198,10726.198 +18013,2025-03-09T06:32:15.552476-07:00,0.0,10.716591,10716.591 +18014,2025-03-09T06:32:26.275478-07:00,0.0,10.723002,10723.002 +18015,2025-03-09T06:32:37.005647-07:00,0.0,10.730169,10730.169 +18016,2025-03-09T06:32:47.720034-07:00,0.0,10.714387,10714.387 +18017,2025-03-09T06:32:58.446540-07:00,0.0,10.726506,10726.506 +18018,2025-03-09T06:33:09.174669-07:00,0.0,10.728129,10728.129 +18019,2025-03-09T06:33:19.893721-07:00,0.0,10.719052,10719.052 +18020,2025-03-09T06:33:30.619630-07:00,0.0,10.725909,10725.909 +18021,2025-03-09T06:33:41.336479-07:00,0.0,10.716849,10716.849 +18022,2025-03-09T06:33:52.063622-07:00,0.0,10.727143,10727.143 +18023,2025-03-09T06:34:02.794765-07:00,0.0,10.731143,10731.143 +18024,2025-03-09T06:34:13.515482-07:00,0.0,10.720717,10720.717 +18025,2025-03-09T06:34:24.236481-07:00,0.0,10.720999,10720.999 +18026,2025-03-09T06:34:34.965484-07:00,0.0,10.729003,10729.003 +18027,2025-03-09T06:34:45.687245-07:00,0.0,10.721761,10721.761 +18028,2025-03-09T06:34:56.402479-07:00,0.0,10.715234,10715.234 +18029,2025-03-09T06:35:07.126669-07:00,0.0,10.72419,10724.19 +18030,2025-03-09T06:35:17.855476-07:00,0.0,10.728807,10728.807 +18031,2025-03-09T06:35:28.575774-07:00,0.0,10.720298,10720.298 +18032,2025-03-09T06:35:39.300504-07:00,0.0,10.72473,10724.73 +18033,2025-03-09T06:35:50.032697-07:00,0.0,10.732193,10732.193 +18034,2025-03-09T06:36:00.760741-07:00,0.0,10.728044,10728.044 +18035,2025-03-09T06:36:11.484506-07:00,0.0,10.723765,10723.765 +18036,2025-03-09T06:36:22.207480-07:00,0.0,10.722974,10722.974 +18037,2025-03-09T06:36:32.926481-07:00,0.0,10.719001,10719.001 +18038,2025-03-09T06:36:43.654892-07:00,0.0,10.728411,10728.411 +18039,2025-03-09T06:36:54.370486-07:00,0.0,10.715594,10715.594 +18040,2025-03-09T06:37:05.092549-07:00,0.0,10.722063,10722.063 +18041,2025-03-09T06:37:15.821819-07:00,0.0,10.72927,10729.27 +18042,2025-03-09T06:37:26.549688-07:00,0.0,10.727869,10727.869 +18043,2025-03-09T06:37:37.270904-07:00,0.0,10.721216,10721.216 +18044,2025-03-09T06:37:47.998481-07:00,0.0,10.727577,10727.577 +18045,2025-03-09T06:37:58.720659-07:00,0.0,10.722178,10722.178 +18046,2025-03-09T06:38:09.451480-07:00,0.0,10.730821,10730.821 +18047,2025-03-09T06:38:20.174735-07:00,0.0,10.723255,10723.255 +18048,2025-03-09T06:38:30.894481-07:00,0.0,10.719746,10719.746 +18049,2025-03-09T06:38:41.625482-07:00,0.0,10.731001,10731.001 +18050,2025-03-09T06:38:52.339477-07:00,0.0,10.713995,10713.995 +18051,2025-03-09T06:39:03.067484-07:00,0.0,10.728007,10728.007 +18052,2025-03-09T06:39:24.513534-07:00,0.0,21.44605,21446.05 +18053,2025-03-09T06:39:35.244644-07:00,0.0,10.73111,10731.11 +18054,2025-03-09T06:39:45.964482-07:00,0.0,10.719838,10719.838 +18055,2025-03-09T06:39:56.692928-07:00,0.0,10.728446,10728.446 +18056,2025-03-09T06:40:07.417476-07:00,0.0,10.724548,10724.548 +18057,2025-03-09T06:40:18.145482-07:00,0.0,10.728006,10728.006 +18058,2025-03-09T06:40:28.872649-07:00,0.0,10.727167,10727.167 +18059,2025-03-09T06:40:39.595481-07:00,0.0,10.722832,10722.832 +18060,2025-03-09T06:40:50.320589-07:00,0.0,10.725108,10725.108 +18061,2025-03-09T06:41:01.039481-07:00,0.0,10.718892,10718.892 +18062,2025-03-09T06:41:11.760195-07:00,0.0,10.720714,10720.714 +18063,2025-03-09T06:41:22.493642-07:00,0.0,10.733447,10733.447 +18064,2025-03-09T06:41:33.213954-07:00,0.0,10.720312,10720.312 +18065,2025-03-09T06:41:43.938546-07:00,0.0,10.724592,10724.592 +18066,2025-03-09T06:41:54.662480-07:00,0.0,10.723934,10723.934 +18067,2025-03-09T06:41:55.422663-07:00,0.0,0.760183,760.183 +18068,2025-03-09T06:42:05.391504-07:00,0.0,9.968841,9968.841 +18069,2025-03-09T06:42:16.114478-07:00,0.0,10.722974,10722.974 +18070,2025-03-09T06:42:26.828481-07:00,0.0,10.714003,10714.003 +18071,2025-03-09T06:42:37.559544-07:00,0.0,10.731063,10731.063 +18072,2025-03-09T06:42:48.283359-07:00,0.0,10.723815,10723.815 +18073,2025-03-09T06:42:59.002479-07:00,0.0,10.71912,10719.12 +18074,2025-03-09T06:43:09.730662-07:00,0.0,10.728183,10728.183 +18075,2025-03-09T06:43:20.444593-07:00,0.0,10.713931,10713.931 +18076,2025-03-09T06:43:31.173686-07:00,0.0,10.729093,10729.093 +18077,2025-03-09T06:43:41.890651-07:00,0.0,10.716965,10716.965 +18078,2025-03-09T06:43:52.611419-07:00,0.0,10.720768,10720.768 +18079,2025-03-09T06:44:03.336478-07:00,0.0,10.725059,10725.059 +18080,2025-03-09T06:44:14.068509-07:00,0.0,10.732031,10732.031 +18081,2025-03-09T06:44:24.790687-07:00,0.0,10.722178,10722.178 +18082,2025-03-09T06:44:35.509229-07:00,0.0,10.718542,10718.542 +18083,2025-03-09T06:44:46.239481-07:00,0.0,10.730252,10730.252 +18084,2025-03-09T06:44:56.956558-07:00,0.0,10.717077,10717.077 +18085,2025-03-09T06:45:07.680693-07:00,0.0,10.724135,10724.135 +18086,2025-03-09T06:45:18.404662-07:00,0.0,10.723969,10723.969 +18087,2025-03-09T06:45:29.136097-07:00,0.0,10.731435,10731.435 +18088,2025-03-09T06:45:39.854683-07:00,0.0,10.718586,10718.586 +18089,2025-03-09T06:45:50.578009-07:00,0.0,10.723326,10723.326 +18090,2025-03-09T06:46:01.297483-07:00,0.0,10.719474,10719.474 +18091,2025-03-09T06:46:12.018522-07:00,0.0,10.721039,10721.039 +18092,2025-03-09T06:46:22.744684-07:00,0.0,10.726162,10726.162 +18093,2025-03-09T06:46:33.466372-07:00,0.0,10.721688,10721.688 +18094,2025-03-09T06:46:44.180695-07:00,0.0,10.714323,10714.323 +18095,2025-03-09T06:46:54.899543-07:00,0.0,10.718848,10718.848 +18096,2025-03-09T06:47:05.622005-07:00,0.0,10.722462,10722.462 +18097,2025-03-09T06:47:16.342476-07:00,0.0,10.720471,10720.471 +18098,2025-03-09T06:47:27.065678-07:00,0.0,10.723202,10723.202 +18099,2025-03-09T06:47:37.793481-07:00,0.0,10.727803,10727.803 +18100,2025-03-09T06:47:48.511756-07:00,0.0,10.718275,10718.275 +18101,2025-03-09T06:47:59.229476-07:00,0.0,10.71772,10717.72 +18102,2025-03-09T06:48:09.954708-07:00,0.0,10.725232,10725.232 +18103,2025-03-09T06:48:20.680482-07:00,0.0,10.725774,10725.774 +18104,2025-03-09T06:48:31.402557-07:00,0.0,10.722075,10722.075 +18105,2025-03-09T06:48:42.120081-07:00,0.0,10.717524,10717.524 +18106,2025-03-09T06:48:52.846482-07:00,0.0,10.726401,10726.401 +18107,2025-03-09T06:49:03.556524-07:00,0.0,10.710042,10710.042 +18108,2025-03-09T06:49:14.283480-07:00,0.0,10.726956,10726.956 +18109,2025-03-09T06:49:24.996968-07:00,0.0,10.713488,10713.488 +18110,2025-03-09T06:49:35.717667-07:00,0.0,10.720699,10720.699 +18111,2025-03-09T06:49:46.435481-07:00,0.0,10.717814,10717.814 +18112,2025-03-09T06:49:57.162691-07:00,0.0,10.72721,10727.21 +18113,2025-03-09T06:50:07.879477-07:00,0.0,10.716786,10716.786 +18114,2025-03-09T06:50:18.600655-07:00,0.0,10.721178,10721.178 +18115,2025-03-09T06:50:29.320552-07:00,0.0,10.719897,10719.897 +18116,2025-03-09T06:50:40.047648-07:00,0.0,10.727096,10727.096 +18117,2025-03-09T06:50:50.767510-07:00,0.0,10.719862,10719.862 +18118,2025-03-09T06:51:01.489663-07:00,0.0,10.722153,10722.153 +18119,2025-03-09T06:51:12.205782-07:00,0.0,10.716119,10716.119 +18120,2025-03-09T06:51:22.932945-07:00,0.0,10.727163,10727.163 +18121,2025-03-09T06:51:33.655750-07:00,0.0,10.722805,10722.805 +18122,2025-03-09T06:51:44.372994-07:00,0.0,10.717244,10717.244 +18123,2025-03-09T06:51:55.092665-07:00,0.0,10.719671,10719.671 +18124,2025-03-09T06:52:05.817601-07:00,0.0,10.724936,10724.936 +18125,2025-03-09T06:52:16.540481-07:00,0.0,10.72288,10722.88 +18126,2025-03-09T06:52:27.263662-07:00,0.0,10.723181,10723.181 +18127,2025-03-09T06:52:37.991576-07:00,0.0,10.727914,10727.914 +18128,2025-03-09T06:52:48.709024-07:00,0.0,10.717448,10717.448 +18129,2025-03-09T06:52:59.433046-07:00,0.0,10.724022,10724.022 +18130,2025-03-09T06:53:10.149049-07:00,0.0,10.716003,10716.003 +18131,2025-03-09T06:53:20.878051-07:00,0.0,10.729002,10729.002 +18132,2025-03-09T06:53:31.599237-07:00,0.0,10.721186,10721.186 +18133,2025-03-09T06:53:42.329049-07:00,0.0,10.729812,10729.812 +18134,2025-03-09T06:53:53.047243-07:00,0.0,10.718194,10718.194 +18135,2025-03-09T06:54:03.772289-07:00,0.0,10.725046,10725.046 +18136,2025-03-09T06:54:14.489238-07:00,0.0,10.716949,10716.949 +18137,2025-03-09T06:54:25.214226-07:00,0.0,10.724988,10724.988 +18138,2025-03-09T06:54:35.935841-07:00,0.0,10.721615,10721.615 +18139,2025-03-09T06:54:46.661840-07:00,0.0,10.725999,10725.999 +18140,2025-03-09T06:54:57.378240-07:00,0.0,10.7164,10716.4 +18141,2025-03-09T06:55:08.109049-07:00,0.0,10.730809,10730.809 +18142,2025-03-09T06:55:18.828247-07:00,0.0,10.719198,10719.198 +18143,2025-03-09T06:55:29.558076-07:00,0.0,10.729829,10729.829 +18144,2025-03-09T06:55:40.282188-07:00,0.0,10.724112,10724.112 +18145,2025-03-09T06:55:50.998049-07:00,0.0,10.715861,10715.861 +18146,2025-03-09T06:56:01.727330-07:00,0.0,10.729281,10729.281 +18147,2025-03-09T06:56:12.449621-07:00,0.0,10.722291,10722.291 +18148,2025-03-09T06:56:23.175200-07:00,0.0,10.725579,10725.579 +18149,2025-03-09T06:56:33.896381-07:00,0.0,10.721181,10721.181 +18150,2025-03-09T06:56:44.623047-07:00,0.0,10.726666,10726.666 +18151,2025-03-09T06:56:55.351306-07:00,0.0,10.728259,10728.259 +18152,2025-03-09T06:57:06.083737-07:00,0.0,10.732431,10732.431 +18153,2025-03-09T06:57:16.802264-07:00,0.0,10.718527,10718.527 +18154,2025-03-09T06:57:27.529242-07:00,0.0,10.726978,10726.978 +18155,2025-03-09T06:57:38.253082-07:00,0.0,10.72384,10723.84 +18156,2025-03-09T06:57:48.981995-07:00,0.0,10.728913,10728.913 +18157,2025-03-09T06:57:59.706050-07:00,0.0,10.724055,10724.055 +18158,2025-03-09T06:58:10.431052-07:00,0.0,10.725002,10725.002 +18159,2025-03-09T06:58:21.155520-07:00,0.0,10.724468,10724.468 +18160,2025-03-09T06:58:31.882050-07:00,0.0,10.72653,10726.53 +18161,2025-03-09T06:58:42.600049-07:00,0.0,10.717999,10717.999 +18162,2025-03-09T06:58:53.331260-07:00,0.0,10.731211,10731.211 +18163,2025-03-09T06:59:04.055289-07:00,0.0,10.724029,10724.029 +18164,2025-03-09T06:59:14.772078-07:00,0.0,10.716789,10716.789 +18165,2025-03-09T06:59:25.497230-07:00,0.0,10.725152,10725.152 +18166,2025-03-09T06:59:36.230046-07:00,0.0,10.732816,10732.816 +18167,2025-03-09T06:59:46.953078-07:00,0.0,10.723032,10723.032 +18168,2025-03-09T06:59:57.679198-07:00,0.0,10.72612,10726.12 +18169,2025-03-09T07:00:08.400610-07:00,0.0,10.721412,10721.412 +18170,2025-03-09T07:00:19.129497-07:00,0.0,10.728887,10728.887 +18171,2025-03-09T07:00:29.851161-07:00,0.0,10.721664,10721.664 +18172,2025-03-09T07:00:40.572651-07:00,0.0,10.72149,10721.49 +18173,2025-03-09T07:00:51.304048-07:00,0.0,10.731397,10731.397 +18174,2025-03-09T07:01:02.028269-07:00,0.0,10.724221,10724.221 +18175,2025-03-09T07:01:12.753314-07:00,0.0,10.725045,10725.045 +18176,2025-03-09T07:01:23.481049-07:00,0.0,10.727735,10727.735 +18177,2025-03-09T07:01:34.207477-07:00,0.0,10.726428,10726.428 +18178,2025-03-09T07:01:44.932053-07:00,0.0,10.724576,10724.576 +18179,2025-03-09T07:01:55.659738-07:00,0.0,10.727685,10727.685 +18180,2025-03-09T07:02:06.384049-07:00,0.0,10.724311,10724.311 +18181,2025-03-09T07:02:17.109047-07:00,0.0,10.724998,10724.998 +18182,2025-03-09T07:02:27.831258-07:00,0.0,10.722211,10722.211 +18183,2025-03-09T07:02:38.554231-07:00,0.0,10.722973,10722.973 +18184,2025-03-09T07:02:49.290222-07:00,0.0,10.735991,10735.991 +18185,2025-03-09T07:03:00.005233-07:00,0.0,10.715011,10715.011 +18186,2025-03-09T07:03:10.739381-07:00,0.0,10.734148,10734.148 +18187,2025-03-09T07:03:21.459050-07:00,0.0,10.719669,10719.669 +18188,2025-03-09T07:03:32.194334-07:00,0.0,10.735284,10735.284 +18189,2025-03-09T07:03:42.913113-07:00,0.0,10.718779,10718.779 +18190,2025-03-09T07:03:53.634047-07:00,0.0,10.720934,10720.934 +18191,2025-03-09T07:04:04.358145-07:00,0.0,10.724098,10724.098 +18192,2025-03-09T07:04:15.085044-07:00,0.0,10.726899,10726.899 +18193,2025-03-09T07:04:25.813236-07:00,0.0,10.728192,10728.192 +18194,2025-03-09T07:04:36.534199-07:00,0.0,10.720963,10720.963 +18195,2025-03-09T07:04:47.263066-07:00,0.0,10.728867,10728.867 +18196,2025-03-09T07:04:57.989049-07:00,0.0,10.725983,10725.983 +18197,2025-03-09T07:05:08.708346-07:00,0.0,10.719297,10719.297 +18198,2025-03-09T07:05:19.441249-07:00,0.0,10.732903,10732.903 +18199,2025-03-09T07:05:30.155045-07:00,0.0,10.713796,10713.796 +18200,2025-03-09T07:05:40.886873-07:00,0.0,10.731828,10731.828 +18201,2025-03-09T07:05:51.609117-07:00,0.0,10.722244,10722.244 +18202,2025-03-09T07:06:02.333249-07:00,0.0,10.724132,10724.132 +18203,2025-03-09T07:06:13.056052-07:00,0.0,10.722803,10722.803 +18204,2025-03-09T07:06:23.779596-07:00,0.0,10.723544,10723.544 +18205,2025-03-09T07:06:34.504398-07:00,0.0,10.724802,10724.802 +18206,2025-03-09T07:06:45.227872-07:00,0.0,10.723474,10723.474 +18207,2025-03-09T07:06:55.959051-07:00,0.0,10.731179,10731.179 +18208,2025-03-09T07:07:06.683776-07:00,0.0,10.724725,10724.725 +18209,2025-03-09T07:07:17.417222-07:00,0.0,10.733446,10733.446 +18210,2025-03-09T07:07:28.136083-07:00,0.0,10.718861,10718.861 +18211,2025-03-09T07:07:38.861916-07:00,0.0,10.725833,10725.833 +18212,2025-03-09T07:07:49.595049-07:00,0.0,10.733133,10733.133 +18213,2025-03-09T07:08:00.315261-07:00,0.0,10.720212,10720.212 +18214,2025-03-09T07:08:11.043987-07:00,0.0,10.728726,10728.726 +18215,2025-03-09T07:08:21.776151-07:00,0.0,10.732164,10732.164 +18216,2025-03-09T07:08:32.503234-07:00,0.0,10.727083,10727.083 +18217,2025-03-09T07:08:43.227049-07:00,0.0,10.723815,10723.815 +18218,2025-03-09T07:08:53.959048-07:00,0.0,10.731999,10731.999 +18219,2025-03-09T07:09:04.683242-07:00,0.0,10.724194,10724.194 +18220,2025-03-09T07:09:15.404060-07:00,0.0,10.720818,10720.818 +18221,2025-03-09T07:09:26.134275-07:00,0.0,10.730215,10730.215 +18222,2025-03-09T07:09:36.862052-07:00,0.0,10.727777,10727.777 +18223,2025-03-09T07:09:47.592482-07:00,0.0,10.73043,10730.43 +18224,2025-03-09T07:09:58.325834-07:00,0.0,10.733352,10733.352 +18225,2025-03-09T07:10:09.043688-07:00,0.0,10.717854,10717.854 +18226,2025-03-09T07:10:19.781108-07:00,0.0,10.73742,10737.42 +18227,2025-03-09T07:10:30.501049-07:00,0.0,10.719941,10719.941 +18228,2025-03-09T07:10:41.229279-07:00,0.0,10.72823,10728.23 +18229,2025-03-09T07:10:51.957147-07:00,0.0,10.727868,10727.868 +18230,2025-03-09T07:11:02.690413-07:00,0.0,10.733266,10733.266 +18231,2025-03-09T07:11:13.415078-07:00,0.0,10.724665,10724.665 +18232,2025-03-09T07:11:24.141283-07:00,0.0,10.726205,10726.205 +18233,2025-03-09T07:11:34.860216-07:00,0.0,10.718933,10718.933 +18234,2025-03-09T07:11:45.583571-07:00,0.0,10.723355,10723.355 +18235,2025-03-09T07:11:56.312052-07:00,0.0,10.728481,10728.481 +18236,2025-03-09T07:12:07.036620-07:00,0.0,10.724568,10724.568 +18237,2025-03-09T07:12:17.760101-07:00,0.0,10.723481,10723.481 +18238,2025-03-09T07:12:28.488451-07:00,0.0,10.72835,10728.35 +18239,2025-03-09T07:12:39.219850-07:00,0.0,10.731399,10731.399 +18240,2025-03-09T07:12:49.947053-07:00,0.0,10.727203,10727.203 +18241,2025-03-09T07:13:00.669237-07:00,0.0,10.722184,10722.184 +18242,2025-03-09T07:13:11.396049-07:00,0.0,10.726812,10726.812 +18243,2025-03-09T07:13:22.126348-07:00,0.0,10.730299,10730.299 +18244,2025-03-09T07:13:32.852768-07:00,0.0,10.72642,10726.42 +18245,2025-03-09T07:13:43.573053-07:00,0.0,10.720285,10720.285 +18246,2025-03-09T07:13:54.298017-07:00,0.0,10.724964,10724.964 +18247,2025-03-09T07:14:05.015048-07:00,0.0,10.717031,10717.031 +18248,2025-03-09T07:14:15.748214-07:00,0.0,10.733166,10733.166 +18249,2025-03-09T07:14:26.472049-07:00,0.0,10.723835,10723.835 +18250,2025-03-09T07:14:37.196067-07:00,0.0,10.724018,10724.018 +18251,2025-03-09T07:14:47.917052-07:00,0.0,10.720985,10720.985 +18252,2025-03-09T07:14:58.648050-07:00,0.0,10.730998,10730.998 +18253,2025-03-09T07:15:09.369198-07:00,0.0,10.721148,10721.148 +18254,2025-03-09T07:15:20.090233-07:00,0.0,10.721035,10721.035 +18255,2025-03-09T07:15:30.816048-07:00,0.0,10.725815,10725.815 +18256,2025-03-09T07:15:41.539190-07:00,0.0,10.723142,10723.142 +18257,2025-03-09T07:15:52.269160-07:00,0.0,10.72997,10729.97 +18258,2025-03-09T07:16:02.999047-07:00,0.0,10.729887,10729.887 +18259,2025-03-09T07:16:13.718273-07:00,0.0,10.719226,10719.226 +18260,2025-03-09T07:16:24.450250-07:00,0.0,10.731977,10731.977 +18261,2025-03-09T07:16:35.167050-07:00,0.0,10.7168,10716.8 +18262,2025-03-09T07:16:45.894082-07:00,0.0,10.727032,10727.032 +18263,2025-03-09T07:16:56.617300-07:00,0.0,10.723218,10723.218 +18264,2025-03-09T07:17:07.340429-07:00,0.0,10.723129,10723.129 +18265,2025-03-09T07:17:18.069117-07:00,0.0,10.728688,10728.688 +18266,2025-03-09T07:17:28.799353-07:00,0.0,10.730236,10730.236 +18267,2025-03-09T07:17:39.514060-07:00,0.0,10.714707,10714.707 +18268,2025-03-09T07:17:50.237670-07:00,0.0,10.72361,10723.61 +18269,2025-03-09T07:18:00.966052-07:00,0.0,10.728382,10728.382 +18270,2025-03-09T07:18:11.696049-07:00,0.0,10.729997,10729.997 +18271,2025-03-09T07:18:22.414974-07:00,0.0,10.718925,10718.925 +18272,2025-03-09T07:18:33.140052-07:00,0.0,10.725078,10725.078 +18273,2025-03-09T07:18:43.864405-07:00,0.0,10.724353,10724.353 +18274,2025-03-09T07:18:54.593051-07:00,0.0,10.728646,10728.646 +18275,2025-03-09T07:19:05.314458-07:00,0.0,10.721407,10721.407 +18276,2025-03-09T07:19:16.039223-07:00,0.0,10.724765,10724.765 +18277,2025-03-09T07:19:26.751991-07:00,0.0,10.712768,10712.768 +18278,2025-03-09T07:19:37.480060-07:00,0.0,10.728069,10728.069 +18279,2025-03-09T07:19:48.198242-07:00,0.0,10.718182,10718.182 +18280,2025-03-09T07:19:58.925071-07:00,0.0,10.726829,10726.829 +18281,2025-03-09T07:20:09.651224-07:00,0.0,10.726153,10726.153 +18282,2025-03-09T07:20:20.373044-07:00,0.0,10.72182,10721.82 +18283,2025-03-09T07:20:31.096053-07:00,0.0,10.723009,10723.009 +18284,2025-03-09T07:20:41.818081-07:00,0.0,10.722028,10722.028 +18285,2025-03-09T07:20:52.544246-07:00,0.0,10.726165,10726.165 +18286,2025-03-09T07:21:03.271796-07:00,0.0,10.72755,10727.55 +18287,2025-03-09T07:21:13.994335-07:00,0.0,10.722539,10722.539 +18288,2025-03-09T07:21:24.729066-07:00,0.0,10.734731,10734.731 +18289,2025-03-09T07:21:35.451051-07:00,0.0,10.721985,10721.985 +18290,2025-03-09T07:21:46.179375-07:00,0.0,10.728324,10728.324 +18291,2025-03-09T07:21:56.913282-07:00,0.0,10.733907,10733.907 +18292,2025-03-09T07:22:07.636252-07:00,0.0,10.72297,10722.97 +18293,2025-03-09T07:22:18.371241-07:00,0.0,10.734989,10734.989 +18294,2025-03-09T07:22:29.098210-07:00,0.0,10.726969,10726.969 +18295,2025-03-09T07:22:39.829797-07:00,0.0,10.731587,10731.587 +18296,2025-03-09T07:22:50.556174-07:00,0.0,10.726377,10726.377 +18297,2025-03-09T07:23:01.281230-07:00,0.0,10.725056,10725.056 +18298,2025-03-09T07:23:12.015259-07:00,0.0,10.734029,10734.029 +18299,2025-03-09T07:23:22.737441-07:00,0.0,10.722182,10722.182 +18300,2025-03-09T07:23:33.470152-07:00,0.0,10.732711,10732.711 +18301,2025-03-09T07:23:44.194404-07:00,0.0,10.724252,10724.252 +18302,2025-03-09T07:23:54.923173-07:00,0.0,10.728769,10728.769 +18303,2025-03-09T07:24:05.644052-07:00,0.0,10.720879,10720.879 +18304,2025-03-09T07:24:16.372223-07:00,0.0,10.728171,10728.171 +18305,2025-03-09T07:24:27.098534-07:00,0.0,10.726311,10726.311 +18306,2025-03-09T07:24:37.829238-07:00,0.0,10.730704,10730.704 +18307,2025-03-09T07:24:48.550254-07:00,0.0,10.721016,10721.016 +18308,2025-03-09T07:24:59.279086-07:00,0.0,10.728832,10728.832 +18309,2025-03-09T07:25:09.998075-07:00,0.0,10.718989,10718.989 +18310,2025-03-09T07:25:20.730045-07:00,0.0,10.73197,10731.97 +18311,2025-03-09T07:25:31.453229-07:00,0.0,10.723184,10723.184 +18312,2025-03-09T07:25:42.183319-07:00,0.0,10.73009,10730.09 +18313,2025-03-09T07:25:52.902196-07:00,0.0,10.718877,10718.877 +18314,2025-03-09T07:26:03.632177-07:00,0.0,10.729981,10729.981 +18315,2025-03-09T07:26:14.357251-07:00,0.0,10.725074,10725.074 +18316,2025-03-09T07:26:25.083522-07:00,0.0,10.726271,10726.271 +18317,2025-03-09T07:26:35.810077-07:00,0.0,10.726555,10726.555 +18318,2025-03-09T07:26:46.542051-07:00,0.0,10.731974,10731.974 +18319,2025-03-09T07:26:57.270073-07:00,0.0,10.728022,10728.022 +18320,2025-03-09T07:27:07.994052-07:00,0.0,10.723979,10723.979 +18321,2025-03-09T07:27:18.729275-07:00,0.0,10.735223,10735.223 +18322,2025-03-09T07:27:29.452123-07:00,0.0,10.722848,10722.848 +18323,2025-03-09T07:27:40.182050-07:00,0.0,10.729927,10729.927 +18324,2025-03-09T07:27:50.904294-07:00,0.0,10.722244,10722.244 +18325,2025-03-09T07:28:01.638259-07:00,0.0,10.733965,10733.965 +18326,2025-03-09T07:28:12.358252-07:00,0.0,10.719993,10719.993 +18327,2025-03-09T07:28:23.096051-07:00,0.0,10.737799,10737.799 +18328,2025-03-09T07:28:33.814262-07:00,0.0,10.718211,10718.211 +18329,2025-03-09T07:28:44.541079-07:00,0.0,10.726817,10726.817 +18330,2025-03-09T07:28:55.279489-07:00,0.0,10.73841,10738.41 +18331,2025-03-09T07:29:06.006276-07:00,0.0,10.726787,10726.787 +18332,2025-03-09T07:29:16.733055-07:00,0.0,10.726779,10726.779 +18333,2025-03-09T07:29:27.459253-07:00,0.0,10.726198,10726.198 +18334,2025-03-09T07:29:38.190181-07:00,0.0,10.730928,10730.928 +18335,2025-03-09T07:29:48.915053-07:00,0.0,10.724872,10724.872 +18336,2025-03-09T07:29:59.635635-07:00,0.0,10.720582,10720.582 +18337,2025-03-09T07:30:10.357048-07:00,0.0,10.721413,10721.413 +18338,2025-03-09T07:30:21.092258-07:00,0.0,10.73521,10735.21 +18339,2025-03-09T07:30:31.811074-07:00,0.0,10.718816,10718.816 +18340,2025-03-09T07:30:42.542051-07:00,0.0,10.730977,10730.977 +18341,2025-03-09T07:30:53.264215-07:00,0.0,10.722164,10722.164 +18342,2025-03-09T07:31:03.994183-07:00,0.0,10.729968,10729.968 +18343,2025-03-09T07:31:14.713084-07:00,0.0,10.718901,10718.901 +18344,2025-03-09T07:31:25.441049-07:00,0.0,10.727965,10727.965 +18345,2025-03-09T07:31:36.165371-07:00,0.0,10.724322,10724.322 +18346,2025-03-09T07:31:46.890254-07:00,0.0,10.724883,10724.883 +18347,2025-03-09T07:31:57.623351-07:00,0.0,10.733097,10733.097 +18348,2025-03-09T07:32:08.340244-07:00,0.0,10.716893,10716.893 +18349,2025-03-09T07:32:19.072052-07:00,0.0,10.731808,10731.808 +18350,2025-03-09T07:32:29.802296-07:00,0.0,10.730244,10730.244 +18351,2025-03-09T07:32:40.526865-07:00,0.0,10.724569,10724.569 +18352,2025-03-09T07:32:51.252052-07:00,0.0,10.725187,10725.187 +18353,2025-03-09T07:33:01.975422-07:00,0.0,10.72337,10723.37 +18354,2025-03-09T07:33:12.698202-07:00,0.0,10.72278,10722.78 +18355,2025-03-09T07:33:23.422236-07:00,0.0,10.724034,10724.034 +18356,2025-03-09T07:33:34.143295-07:00,0.0,10.721059,10721.059 +18357,2025-03-09T07:33:44.874202-07:00,0.0,10.730907,10730.907 +18358,2025-03-09T07:33:55.602258-07:00,0.0,10.728056,10728.056 +18359,2025-03-09T07:34:06.325171-07:00,0.0,10.722913,10722.913 +18360,2025-03-09T07:34:17.051240-07:00,0.0,10.726069,10726.069 +18361,2025-03-09T07:34:27.780290-07:00,0.0,10.72905,10729.05 +18362,2025-03-09T07:34:38.509052-07:00,0.0,10.728762,10728.762 +18363,2025-03-09T07:34:49.240652-07:00,0.0,10.7316,10731.6 +18364,2025-03-09T07:34:59.959327-07:00,0.0,10.718675,10718.675 +18365,2025-03-09T07:35:10.685581-07:00,0.0,10.726254,10726.254 +18366,2025-03-09T07:35:21.418258-07:00,0.0,10.732677,10732.677 +18367,2025-03-09T07:35:32.136225-07:00,0.0,10.717967,10717.967 +18368,2025-03-09T07:35:42.867126-07:00,0.0,10.730901,10730.901 +18369,2025-03-09T07:35:53.592539-07:00,0.0,10.725413,10725.413 +18370,2025-03-09T07:36:04.317253-07:00,0.0,10.724714,10724.714 +18371,2025-03-09T07:36:15.046051-07:00,0.0,10.728798,10728.798 +18372,2025-03-09T07:36:25.768440-07:00,0.0,10.722389,10722.389 +18373,2025-03-09T07:36:36.493075-07:00,0.0,10.724635,10724.635 +18374,2025-03-09T07:36:47.218392-07:00,0.0,10.725317,10725.317 +18375,2025-03-09T07:36:57.950119-07:00,0.0,10.731727,10731.727 +18376,2025-03-09T07:37:08.676052-07:00,0.0,10.725933,10725.933 +18377,2025-03-09T07:37:19.401240-07:00,0.0,10.725188,10725.188 +18378,2025-03-09T07:37:30.117420-07:00,0.0,10.71618,10716.18 +18379,2025-03-09T07:37:40.850878-07:00,0.0,10.733458,10733.458 +18380,2025-03-09T07:37:51.574047-07:00,0.0,10.723169,10723.169 +18381,2025-03-09T07:38:02.291493-07:00,0.0,10.717446,10717.446 +18382,2025-03-09T07:38:13.023049-07:00,0.0,10.731556,10731.556 +18383,2025-03-09T07:38:23.745216-07:00,0.0,10.722167,10722.167 +18384,2025-03-09T07:38:34.475572-07:00,0.0,10.730356,10730.356 +18385,2025-03-09T07:38:45.195078-07:00,0.0,10.719506,10719.506 +18386,2025-03-09T07:38:55.915146-07:00,0.0,10.720068,10720.068 +18387,2025-03-09T07:39:06.643048-07:00,0.0,10.727902,10727.902 +18388,2025-03-09T07:39:17.365918-07:00,0.0,10.72287,10722.87 +18389,2025-03-09T07:39:28.090149-07:00,0.0,10.724231,10724.231 +18390,2025-03-09T07:39:38.816143-07:00,0.0,10.725994,10725.994 +18391,2025-03-09T07:39:49.544231-07:00,0.0,10.728088,10728.088 +18392,2025-03-09T07:40:00.277258-07:00,0.0,10.733027,10733.027 +18393,2025-03-09T07:40:10.999118-07:00,0.0,10.72186,10721.86 +18394,2025-03-09T07:40:21.724052-07:00,0.0,10.724934,10724.934 +18395,2025-03-09T07:40:32.457050-07:00,0.0,10.732998,10732.998 +18396,2025-03-09T07:40:43.188307-07:00,0.0,10.731257,10731.257 +18397,2025-03-09T07:40:53.907488-07:00,0.0,10.719181,10719.181 +18398,2025-03-09T07:41:04.638248-07:00,0.0,10.73076,10730.76 +18399,2025-03-09T07:41:15.357058-07:00,0.0,10.71881,10718.81 +18400,2025-03-09T07:41:26.086471-07:00,0.0,10.729413,10729.413 +18401,2025-03-09T07:41:36.807052-07:00,0.0,10.720581,10720.581 +18402,2025-03-09T07:41:47.539256-07:00,0.0,10.732204,10732.204 +18403,2025-03-09T07:41:58.259251-07:00,0.0,10.719995,10719.995 +18404,2025-03-09T07:42:08.978054-07:00,0.0,10.718803,10718.803 +18405,2025-03-09T07:42:19.708075-07:00,0.0,10.730021,10730.021 +18406,2025-03-09T07:42:30.431255-07:00,0.0,10.72318,10723.18 +18407,2025-03-09T07:42:41.157751-07:00,0.0,10.726496,10726.496 +18408,2025-03-09T07:42:51.876047-07:00,0.0,10.718296,10718.296 +18409,2025-03-09T07:43:02.603452-07:00,0.0,10.727405,10727.405 +18410,2025-03-09T07:43:13.331051-07:00,0.0,10.727599,10727.599 +18411,2025-03-09T07:43:24.053317-07:00,0.0,10.722266,10722.266 +18412,2025-03-09T07:43:34.784185-07:00,0.0,10.730868,10730.868 +18413,2025-03-09T07:43:45.507052-07:00,0.0,10.722867,10722.867 +18414,2025-03-09T07:43:56.226051-07:00,0.0,10.718999,10718.999 +18415,2025-03-09T07:44:06.958047-07:00,0.0,10.731996,10731.996 +18416,2025-03-09T07:44:17.676942-07:00,0.0,10.718895,10718.895 +18417,2025-03-09T07:44:28.400128-07:00,0.0,10.723186,10723.186 +18418,2025-03-09T07:44:39.122295-07:00,0.0,10.722167,10722.167 +18419,2025-03-09T07:44:49.847151-07:00,0.0,10.724856,10724.856 +18420,2025-03-09T07:45:00.569249-07:00,0.0,10.722098,10722.098 +18421,2025-03-09T07:45:11.288312-07:00,0.0,10.719063,10719.063 +18422,2025-03-09T07:45:22.011230-07:00,0.0,10.722918,10722.918 +18423,2025-03-09T07:45:32.739124-07:00,0.0,10.727894,10727.894 +18424,2025-03-09T07:45:43.465274-07:00,0.0,10.72615,10726.15 +18425,2025-03-09T07:45:54.180267-07:00,0.0,10.714993,10714.993 +18426,2025-03-09T07:46:04.908125-07:00,0.0,10.727858,10727.858 +18427,2025-03-09T07:46:15.628056-07:00,0.0,10.719931,10719.931 +18428,2025-03-09T07:46:26.340376-07:00,0.0,10.71232,10712.32 +18429,2025-03-09T07:46:37.067049-07:00,0.0,10.726673,10726.673 +18430,2025-03-09T07:46:47.788262-07:00,0.0,10.721213,10721.213 +18431,2025-03-09T07:46:58.513051-07:00,0.0,10.724789,10724.789 +18432,2025-03-09T07:47:09.231227-07:00,0.0,10.718176,10718.176 +18433,2025-03-09T07:47:19.961149-07:00,0.0,10.729922,10729.922 +18434,2025-03-09T07:47:30.683102-07:00,0.0,10.721953,10721.953 +18435,2025-03-09T07:47:41.396243-07:00,0.0,10.713141,10713.141 +18436,2025-03-09T07:47:52.116582-07:00,0.0,10.720339,10720.339 +18437,2025-03-09T07:48:02.847203-07:00,0.0,10.730621,10730.621 +18438,2025-03-09T07:48:13.565230-07:00,0.0,10.718027,10718.027 +18439,2025-03-09T07:48:24.290081-07:00,0.0,10.724851,10724.851 +18440,2025-03-09T07:48:35.014063-07:00,0.0,10.723982,10723.982 +18441,2025-03-09T07:48:45.738723-07:00,0.0,10.72466,10724.66 +18442,2025-03-09T07:48:56.471127-07:00,0.0,10.732404,10732.404 +18443,2025-03-09T07:49:07.193653-07:00,0.0,10.722526,10722.526 +18444,2025-03-09T07:49:17.920776-07:00,0.0,10.727123,10727.123 +18445,2025-03-09T07:49:28.648115-07:00,0.0,10.727339,10727.339 +18446,2025-03-09T07:49:39.371134-07:00,0.0,10.723019,10723.019 +18447,2025-03-09T07:49:50.105264-07:00,0.0,10.73413,10734.13 +18448,2025-03-09T07:50:00.832305-07:00,0.0,10.727041,10727.041 +18449,2025-03-09T07:50:11.559126-07:00,0.0,10.726821,10726.821 +18450,2025-03-09T07:50:22.283086-07:00,0.0,10.72396,10723.96 +18451,2025-03-09T07:50:33.011049-07:00,0.0,10.727963,10727.963 +18452,2025-03-09T07:50:43.735123-07:00,0.0,10.724074,10724.074 +18453,2025-03-09T07:50:54.458721-07:00,0.0,10.723598,10723.598 +18454,2025-03-09T07:51:05.194050-07:00,0.0,10.735329,10735.329 +18455,2025-03-09T07:51:15.915858-07:00,0.0,10.721808,10721.808 +18456,2025-03-09T07:51:26.637259-07:00,0.0,10.721401,10721.401 +18457,2025-03-09T07:51:37.365133-07:00,0.0,10.727874,10727.874 +18458,2025-03-09T07:51:48.087259-07:00,0.0,10.722126,10722.126 +18459,2025-03-09T07:51:58.812509-07:00,0.0,10.72525,10725.25 +18460,2025-03-09T07:52:09.544290-07:00,0.0,10.731781,10731.781 +18461,2025-03-09T07:52:20.269086-07:00,0.0,10.724796,10724.796 +18462,2025-03-09T07:52:31.017365-07:00,0.0,10.748279,10748.279 +18463,2025-03-09T07:52:41.740036-07:00,0.0,10.722671,10722.671 +18464,2025-03-09T07:52:52.463084-07:00,0.0,10.723048,10723.048 +18465,2025-03-09T07:53:03.181976-07:00,0.0,10.718892,10718.892 +18466,2025-03-09T07:53:13.911056-07:00,0.0,10.72908,10729.08 +18467,2025-03-09T07:53:24.633963-07:00,0.0,10.722907,10722.907 +18468,2025-03-09T07:53:35.356004-07:00,0.0,10.722041,10722.041 +18469,2025-03-09T07:53:46.078172-07:00,0.0,10.722168,10722.168 +18470,2025-03-09T07:53:56.805966-07:00,0.0,10.727794,10727.794 +18471,2025-03-09T07:54:07.534370-07:00,0.0,10.728404,10728.404 +18472,2025-03-09T07:54:18.261968-07:00,0.0,10.727598,10727.598 +18473,2025-03-09T07:54:28.990224-07:00,0.0,10.728256,10728.256 +18474,2025-03-09T07:54:39.705389-07:00,0.0,10.715165,10715.165 +18475,2025-03-09T07:54:50.431345-07:00,0.0,10.725956,10725.956 +18476,2025-03-09T07:55:01.154062-07:00,0.0,10.722717,10722.717 +18477,2025-03-09T07:55:11.883154-07:00,0.0,10.729092,10729.092 +18478,2025-03-09T07:55:22.609168-07:00,0.0,10.726014,10726.014 +18479,2025-03-09T07:55:33.336963-07:00,0.0,10.727795,10727.795 +18480,2025-03-09T07:55:44.062154-07:00,0.0,10.725191,10725.191 +18481,2025-03-09T07:55:54.791218-07:00,0.0,10.729064,10729.064 +18482,2025-03-09T07:56:05.515152-07:00,0.0,10.723934,10723.934 +18483,2025-03-09T07:56:16.247674-07:00,0.0,10.732522,10732.522 +18484,2025-03-09T07:56:26.968965-07:00,0.0,10.721291,10721.291 +18485,2025-03-09T07:56:37.702145-07:00,0.0,10.73318,10733.18 +18486,2025-03-09T07:56:48.426965-07:00,0.0,10.72482,10724.82 +18487,2025-03-09T07:56:59.155344-07:00,0.0,10.728379,10728.379 +18488,2025-03-09T07:57:09.884229-07:00,0.0,10.728885,10728.885 +18489,2025-03-09T07:57:20.606966-07:00,0.0,10.722737,10722.737 +18490,2025-03-09T07:57:31.328734-07:00,0.0,10.721768,10721.768 +18491,2025-03-09T07:57:42.067170-07:00,0.0,10.738436,10738.436 +18492,2025-03-09T07:57:52.788026-07:00,0.0,10.720856,10720.856 +18493,2025-03-09T07:58:03.527139-07:00,0.0,10.739113,10739.113 +18494,2025-03-09T07:58:14.250964-07:00,0.0,10.723825,10723.825 +18495,2025-03-09T07:58:24.977965-07:00,0.0,10.727001,10727.001 +18496,2025-03-09T07:58:35.702964-07:00,0.0,10.724999,10724.999 +18497,2025-03-09T07:58:46.436126-07:00,0.0,10.733162,10733.162 +18498,2025-03-09T07:58:57.164003-07:00,0.0,10.727877,10727.877 +18499,2025-03-09T07:59:07.888990-07:00,0.0,10.724987,10724.987 +18500,2025-03-09T07:59:18.612966-07:00,0.0,10.723976,10723.976 +18501,2025-03-09T07:59:29.333041-07:00,0.0,10.720075,10720.075 +18502,2025-03-09T07:59:40.062266-07:00,0.0,10.729225,10729.225 +18503,2025-03-09T07:59:50.795252-07:00,0.0,10.732986,10732.986 +18504,2025-03-09T08:00:01.521965-07:00,0.0,10.726713,10726.713 +18505,2025-03-09T08:00:12.246188-07:00,0.0,10.724223,10724.223 +18506,2025-03-09T08:00:22.974985-07:00,0.0,10.728797,10728.797 +18507,2025-03-09T08:00:33.701038-07:00,0.0,10.726053,10726.053 +18508,2025-03-09T08:00:44.422495-07:00,0.0,10.721457,10721.457 +18509,2025-03-09T08:00:55.156963-07:00,0.0,10.734468,10734.468 +18510,2025-03-09T08:01:05.883994-07:00,0.0,10.727031,10727.031 +18511,2025-03-09T08:01:16.612992-07:00,0.0,10.728998,10728.998 +18512,2025-03-09T08:01:27.333964-07:00,0.0,10.720972,10720.972 +18513,2025-03-09T08:01:38.064068-07:00,0.0,10.730104,10730.104 +18514,2025-03-09T08:01:48.788171-07:00,0.0,10.724103,10724.103 +18515,2025-03-09T08:01:59.514977-07:00,0.0,10.726806,10726.806 +18516,2025-03-09T08:02:10.245990-07:00,0.0,10.731013,10731.013 +18517,2025-03-09T08:02:20.970155-07:00,0.0,10.724165,10724.165 +18518,2025-03-09T08:02:31.695723-07:00,0.0,10.725568,10725.568 +18519,2025-03-09T08:02:42.421966-07:00,0.0,10.726243,10726.243 +18520,2025-03-09T08:02:53.152964-07:00,0.0,10.730998,10730.998 +18521,2025-03-09T08:03:03.879523-07:00,0.0,10.726559,10726.559 +18522,2025-03-09T08:03:14.602966-07:00,0.0,10.723443,10723.443 +18523,2025-03-09T08:03:25.334141-07:00,0.0,10.731175,10731.175 +18524,2025-03-09T08:03:36.051966-07:00,0.0,10.717825,10717.825 +18525,2025-03-09T08:03:46.787257-07:00,0.0,10.735291,10735.291 +18526,2025-03-09T08:03:57.514163-07:00,0.0,10.726906,10726.906 +18527,2025-03-09T08:04:08.237963-07:00,0.0,10.7238,10723.8 +18528,2025-03-09T08:04:18.968341-07:00,0.0,10.730378,10730.378 +18529,2025-03-09T08:04:29.692963-07:00,0.0,10.724622,10724.622 +18530,2025-03-09T08:04:40.419001-07:00,0.0,10.726038,10726.038 +18531,2025-03-09T08:04:51.144966-07:00,0.0,10.725965,10725.965 +18532,2025-03-09T08:05:01.868156-07:00,0.0,10.72319,10723.19 +18533,2025-03-09T08:05:12.594963-07:00,0.0,10.726807,10726.807 +18534,2025-03-09T08:05:23.321965-07:00,0.0,10.727002,10727.002 +18535,2025-03-09T08:05:34.045370-07:00,0.0,10.723405,10723.405 +18536,2025-03-09T08:05:44.773033-07:00,0.0,10.727663,10727.663 +18537,2025-03-09T08:05:55.498009-07:00,0.0,10.724976,10724.976 +18538,2025-03-09T08:06:06.231276-07:00,0.0,10.733267,10733.267 +18539,2025-03-09T08:06:15.077688-07:00,0.0,8.846412,8846.412 +18540,2025-03-09T08:06:16.954111-07:00,0.0,1.876423,1876.423 +18541,2025-03-09T08:06:27.681176-07:00,0.0,10.727065,10727.065 +18542,2025-03-09T08:06:38.405174-07:00,0.0,10.723998,10723.998 +18543,2025-03-09T08:06:49.140152-07:00,0.0,10.734978,10734.978 +18544,2025-03-09T08:06:59.864966-07:00,0.0,10.724814,10724.814 +18545,2025-03-09T08:07:10.593185-07:00,0.0,10.728219,10728.219 +18546,2025-03-09T08:07:21.313787-07:00,0.0,10.720602,10720.602 +18547,2025-03-09T08:07:32.048965-07:00,0.0,10.735178,10735.178 +18548,2025-03-09T08:07:42.773680-07:00,0.0,10.724715,10724.715 +18549,2025-03-09T08:07:53.504366-07:00,0.0,10.730686,10730.686 +18550,2025-03-09T08:08:04.227965-07:00,0.0,10.723599,10723.599 +18551,2025-03-09T08:08:14.956445-07:00,0.0,10.72848,10728.48 +18552,2025-03-09T08:08:25.686966-07:00,0.0,10.730521,10730.521 +18553,2025-03-09T08:08:36.413206-07:00,0.0,10.72624,10726.24 +18554,2025-03-09T08:08:47.134964-07:00,0.0,10.721758,10721.758 +18555,2025-03-09T08:08:57.861074-07:00,0.0,10.72611,10726.11 +18556,2025-03-09T08:09:08.594181-07:00,0.0,10.733107,10733.107 +18557,2025-03-09T08:09:19.317966-07:00,0.0,10.723785,10723.785 +18558,2025-03-09T08:09:30.037751-07:00,0.0,10.719785,10719.785 +18559,2025-03-09T08:09:40.768169-07:00,0.0,10.730418,10730.418 +18560,2025-03-09T08:09:51.494964-07:00,0.0,10.726795,10726.795 +18561,2025-03-09T08:10:02.215249-07:00,0.0,10.720285,10720.285 +18562,2025-03-09T08:10:12.936329-07:00,0.0,10.72108,10721.08 +18563,2025-03-09T08:10:23.661450-07:00,0.0,10.725121,10725.121 +18564,2025-03-09T08:10:34.392037-07:00,0.0,10.730587,10730.587 +18565,2025-03-09T08:10:45.116963-07:00,0.0,10.724926,10724.926 +18566,2025-03-09T08:10:55.839963-07:00,0.0,10.723,10723.0 +18567,2025-03-09T08:11:06.569174-07:00,0.0,10.729211,10729.211 +18568,2025-03-09T08:11:17.288962-07:00,0.0,10.719788,10719.788 +18569,2025-03-09T08:11:28.018960-07:00,0.0,10.729998,10729.998 +18570,2025-03-09T08:11:38.743133-07:00,0.0,10.724173,10724.173 +18571,2025-03-09T08:11:49.468050-07:00,0.0,10.724917,10724.917 +18572,2025-03-09T08:12:00.199142-07:00,0.0,10.731092,10731.092 +18573,2025-03-09T08:12:10.919964-07:00,0.0,10.720822,10720.822 +18574,2025-03-09T08:12:21.647970-07:00,0.0,10.728006,10728.006 +18575,2025-03-09T08:12:32.379195-07:00,0.0,10.731225,10731.225 +18576,2025-03-09T08:12:43.099966-07:00,0.0,10.720771,10720.771 +18577,2025-03-09T08:12:53.828782-07:00,0.0,10.728816,10728.816 +18578,2025-03-09T08:13:04.548126-07:00,0.0,10.719344,10719.344 +18579,2025-03-09T08:13:15.275963-07:00,0.0,10.727837,10727.837 +18580,2025-03-09T08:13:26.002106-07:00,0.0,10.726143,10726.143 +18581,2025-03-09T08:13:36.727148-07:00,0.0,10.725042,10725.042 +18582,2025-03-09T08:13:47.449158-07:00,0.0,10.72201,10722.01 +18583,2025-03-09T08:13:58.173964-07:00,0.0,10.724806,10724.806 +18584,2025-03-09T08:14:08.894565-07:00,0.0,10.720601,10720.601 +18585,2025-03-09T08:14:19.620959-07:00,0.0,10.726394,10726.394 +18586,2025-03-09T08:14:30.354148-07:00,0.0,10.733189,10733.189 +18587,2025-03-09T08:14:41.075112-07:00,0.0,10.720964,10720.964 +18588,2025-03-09T08:14:51.807966-07:00,0.0,10.732854,10732.854 +18589,2025-03-09T08:15:02.529439-07:00,0.0,10.721473,10721.473 +18590,2025-03-09T08:15:13.256542-07:00,0.0,10.727103,10727.103 +18591,2025-03-09T08:15:23.971961-07:00,0.0,10.715419,10715.419 +18592,2025-03-09T08:15:34.696966-07:00,0.0,10.725005,10725.005 +18593,2025-03-09T08:15:45.426153-07:00,0.0,10.729187,10729.187 +18594,2025-03-09T08:15:56.155964-07:00,0.0,10.729811,10729.811 +18595,2025-03-09T08:16:06.877161-07:00,0.0,10.721197,10721.197 +18596,2025-03-09T08:16:17.608712-07:00,0.0,10.731551,10731.551 +18597,2025-03-09T08:16:28.324469-07:00,0.0,10.715757,10715.757 +18598,2025-03-09T08:16:39.058514-07:00,0.0,10.734045,10734.045 +18599,2025-03-09T08:16:49.783010-07:00,0.0,10.724496,10724.496 +18600,2025-03-09T08:17:00.502133-07:00,0.0,10.719123,10719.123 +18601,2025-03-09T08:17:11.227965-07:00,0.0,10.725832,10725.832 +18602,2025-03-09T08:17:21.952360-07:00,0.0,10.724395,10724.395 +18603,2025-03-09T08:17:32.674962-07:00,0.0,10.722602,10722.602 +18604,2025-03-09T08:17:43.401147-07:00,0.0,10.726185,10726.185 +18605,2025-03-09T08:17:54.124961-07:00,0.0,10.723814,10723.814 +18606,2025-03-09T08:18:04.851037-07:00,0.0,10.726076,10726.076 +18607,2025-03-09T08:18:15.579276-07:00,0.0,10.728239,10728.239 +18608,2025-03-09T08:18:26.295369-07:00,0.0,10.716093,10716.093 +18609,2025-03-09T08:18:37.020228-07:00,0.0,10.724859,10724.859 +18610,2025-03-09T08:18:47.748966-07:00,0.0,10.728738,10728.738 +18611,2025-03-09T08:18:58.471339-07:00,0.0,10.722373,10722.373 +18612,2025-03-09T08:19:09.194963-07:00,0.0,10.723624,10723.624 +18613,2025-03-09T08:19:19.915140-07:00,0.0,10.720177,10720.177 +18614,2025-03-09T08:19:30.644325-07:00,0.0,10.729185,10729.185 +18615,2025-03-09T08:19:41.373966-07:00,0.0,10.729641,10729.641 +18616,2025-03-09T08:19:52.098234-07:00,0.0,10.724268,10724.268 +18617,2025-03-09T08:20:02.817397-07:00,0.0,10.719163,10719.163 +18618,2025-03-09T08:20:13.543144-07:00,0.0,10.725747,10725.747 +18619,2025-03-09T08:20:24.267994-07:00,0.0,10.72485,10724.85 +18620,2025-03-09T08:20:34.999962-07:00,0.0,10.731968,10731.968 +18621,2025-03-09T08:20:45.715965-07:00,0.0,10.716003,10716.003 +18622,2025-03-09T08:20:56.441713-07:00,0.0,10.725748,10725.748 +18623,2025-03-09T08:21:07.166075-07:00,0.0,10.724362,10724.362 +18624,2025-03-09T08:21:17.889966-07:00,0.0,10.723891,10723.891 +18625,2025-03-09T08:21:28.607153-07:00,0.0,10.717187,10717.187 +18626,2025-03-09T08:21:39.329483-07:00,0.0,10.72233,10722.33 +18627,2025-03-09T08:21:50.050990-07:00,0.0,10.721507,10721.507 +18628,2025-03-09T08:22:00.770978-07:00,0.0,10.719988,10719.988 +18629,2025-03-09T08:22:11.499166-07:00,0.0,10.728188,10728.188 +18630,2025-03-09T08:22:22.220151-07:00,0.0,10.720985,10720.985 +18631,2025-03-09T08:22:32.936963-07:00,0.0,10.716812,10716.812 +18632,2025-03-09T08:22:43.657191-07:00,0.0,10.720228,10720.228 +18633,2025-03-09T08:22:54.383336-07:00,0.0,10.726145,10726.145 +18634,2025-03-09T08:23:05.106148-07:00,0.0,10.722812,10722.812 +18635,2025-03-09T08:23:15.829033-07:00,0.0,10.722885,10722.885 +18636,2025-03-09T08:23:26.552332-07:00,0.0,10.723299,10723.299 +18637,2025-03-09T08:23:37.277988-07:00,0.0,10.725656,10725.656 +18638,2025-03-09T08:23:48.001043-07:00,0.0,10.723055,10723.055 +18639,2025-03-09T08:23:58.726269-07:00,0.0,10.725226,10725.226 +18640,2025-03-09T08:24:09.448988-07:00,0.0,10.722719,10722.719 +18641,2025-03-09T08:24:20.173223-07:00,0.0,10.724235,10724.235 +18642,2025-03-09T08:24:30.895079-07:00,0.0,10.721856,10721.856 +18643,2025-03-09T08:24:41.610170-07:00,0.0,10.715091,10715.091 +18644,2025-03-09T08:24:52.332060-07:00,0.0,10.72189,10721.89 +18645,2025-03-09T08:25:03.046994-07:00,0.0,10.714934,10714.934 +18646,2025-03-09T08:25:13.775039-07:00,0.0,10.728045,10728.045 +18647,2025-03-09T08:25:24.493963-07:00,0.0,10.718924,10718.924 +18648,2025-03-09T08:25:35.218966-07:00,0.0,10.725003,10725.003 +18649,2025-03-09T08:25:45.940171-07:00,0.0,10.721205,10721.205 +18650,2025-03-09T08:25:56.662259-07:00,0.0,10.722088,10722.088 +18651,2025-03-09T08:26:07.383963-07:00,0.0,10.721704,10721.704 +18652,2025-03-09T08:26:18.107084-07:00,0.0,10.723121,10723.121 +18653,2025-03-09T08:26:28.837168-07:00,0.0,10.730084,10730.084 +18654,2025-03-09T08:26:39.553664-07:00,0.0,10.716496,10716.496 +18655,2025-03-09T08:26:50.279145-07:00,0.0,10.725481,10725.481 +18656,2025-03-09T08:27:01.002168-07:00,0.0,10.723023,10723.023 +18657,2025-03-09T08:27:11.723137-07:00,0.0,10.720969,10720.969 +18658,2025-03-09T08:27:22.449990-07:00,0.0,10.726853,10726.853 +18659,2025-03-09T08:27:33.175377-07:00,0.0,10.725387,10725.387 +18660,2025-03-09T08:27:43.897089-07:00,0.0,10.721712,10721.712 +18661,2025-03-09T08:27:54.618962-07:00,0.0,10.721873,10721.873 +18662,2025-03-09T08:28:05.343377-07:00,0.0,10.724415,10724.415 +18663,2025-03-09T08:28:26.792959-07:00,0.0,21.449582,21449.582 +18664,2025-03-09T08:28:37.512988-07:00,0.0,10.720029,10720.029 +18665,2025-03-09T08:28:48.242326-07:00,0.0,10.729338,10729.338 +18666,2025-03-09T08:28:58.958101-07:00,0.0,10.715775,10715.775 +18667,2025-03-09T08:29:09.686129-07:00,0.0,10.728028,10728.028 +18668,2025-03-09T08:29:20.410960-07:00,0.0,10.724831,10724.831 +18669,2025-03-09T08:29:31.128359-07:00,0.0,10.717399,10717.399 +18670,2025-03-09T08:29:41.849971-07:00,0.0,10.721612,10721.612 +18671,2025-03-09T08:29:52.582023-07:00,0.0,10.732052,10732.052 +18672,2025-03-09T08:30:03.300963-07:00,0.0,10.71894,10718.94 +18673,2025-03-09T08:30:14.021128-07:00,0.0,10.720165,10720.165 +18674,2025-03-09T08:30:24.751320-07:00,0.0,10.730192,10730.192 +18675,2025-03-09T08:30:35.480190-07:00,0.0,10.72887,10728.87 +18676,2025-03-09T08:30:46.199307-07:00,0.0,10.719117,10719.117 +18677,2025-03-09T08:30:56.923962-07:00,0.0,10.724655,10724.655 +18678,2025-03-09T08:31:07.651521-07:00,0.0,10.727559,10727.559 +18679,2025-03-09T08:31:18.380973-07:00,0.0,10.729452,10729.452 +18680,2025-03-09T08:31:29.106282-07:00,0.0,10.725309,10725.309 +18681,2025-03-09T08:31:39.830964-07:00,0.0,10.724682,10724.682 +18682,2025-03-09T08:31:50.555069-07:00,0.0,10.724105,10724.105 +18683,2025-03-09T08:32:01.281989-07:00,0.0,10.72692,10726.92 +18684,2025-03-09T08:32:12.011082-07:00,0.0,10.729093,10729.093 +18685,2025-03-09T08:32:22.735571-07:00,0.0,10.724489,10724.489 +18686,2025-03-09T08:32:33.460962-07:00,0.0,10.725391,10725.391 +18687,2025-03-09T08:32:44.178582-07:00,0.0,10.71762,10717.62 +18688,2025-03-09T08:32:54.910174-07:00,0.0,10.731592,10731.592 +18689,2025-03-09T08:33:05.628638-07:00,0.0,10.718464,10718.464 +18690,2025-03-09T08:33:16.354962-07:00,0.0,10.726324,10726.324 +18691,2025-03-09T08:33:27.087264-07:00,0.0,10.732302,10732.302 +18692,2025-03-09T08:33:37.804987-07:00,0.0,10.717723,10717.723 +18693,2025-03-09T08:33:48.527077-07:00,0.0,10.72209,10722.09 +18694,2025-03-09T08:33:59.259146-07:00,0.0,10.732069,10732.069 +18695,2025-03-09T08:34:09.980964-07:00,0.0,10.721818,10721.818 +18696,2025-03-09T08:34:20.705981-07:00,0.0,10.725017,10725.017 +18697,2025-03-09T08:34:31.432071-07:00,0.0,10.72609,10726.09 +18698,2025-03-09T08:34:42.152144-07:00,0.0,10.720073,10720.073 +18699,2025-03-09T08:34:52.872963-07:00,0.0,10.720819,10720.819 +18700,2025-03-09T08:35:03.600966-07:00,0.0,10.728003,10728.003 +18701,2025-03-09T08:35:14.329266-07:00,0.0,10.7283,10728.3 +18702,2025-03-09T08:35:25.050091-07:00,0.0,10.720825,10720.825 +18703,2025-03-09T08:35:35.775250-07:00,0.0,10.725159,10725.159 +18704,2025-03-09T08:35:46.500162-07:00,0.0,10.724912,10724.912 +18705,2025-03-09T08:35:57.216815-07:00,0.0,10.716653,10716.653 +18706,2025-03-09T08:36:07.947032-07:00,0.0,10.730217,10730.217 +18707,2025-03-09T08:36:18.664141-07:00,0.0,10.717109,10717.109 +18708,2025-03-09T08:36:29.394987-07:00,0.0,10.730846,10730.846 +18709,2025-03-09T08:36:40.116141-07:00,0.0,10.721154,10721.154 +18710,2025-03-09T08:36:50.845455-07:00,0.0,10.729314,10729.314 +18711,2025-03-09T08:37:01.564170-07:00,0.0,10.718715,10718.715 +18712,2025-03-09T08:37:12.288962-07:00,0.0,10.724792,10724.792 +18713,2025-03-09T08:37:23.011962-07:00,0.0,10.723,10723.0 +18714,2025-03-09T08:37:33.744231-07:00,0.0,10.732269,10732.269 +18715,2025-03-09T08:37:44.470963-07:00,0.0,10.726732,10726.732 +18716,2025-03-09T08:37:55.199438-07:00,0.0,10.728475,10728.475 +18717,2025-03-09T08:38:05.916963-07:00,0.0,10.717525,10717.525 +18718,2025-03-09T08:38:16.638042-07:00,0.0,10.721079,10721.079 +18719,2025-03-09T08:38:27.359965-07:00,0.0,10.721923,10721.923 +18720,2025-03-09T08:38:38.094795-07:00,0.0,10.73483,10734.83 +18721,2025-03-09T08:38:48.815086-07:00,0.0,10.720291,10720.291 +18722,2025-03-09T08:38:59.538965-07:00,0.0,10.723879,10723.879 +18723,2025-03-09T08:39:10.263000-07:00,0.0,10.724035,10724.035 +18724,2025-03-09T08:39:20.994962-07:00,0.0,10.731962,10731.962 +18725,2025-03-09T08:39:31.716021-07:00,0.0,10.721059,10721.059 +18726,2025-03-09T08:39:42.439255-07:00,0.0,10.723234,10723.234 +18727,2025-03-09T08:39:53.162158-07:00,0.0,10.722903,10722.903 +18728,2025-03-09T08:40:03.891544-07:00,0.0,10.729386,10729.386 +18729,2025-03-09T08:40:14.617098-07:00,0.0,10.725554,10725.554 +18730,2025-03-09T08:40:25.342201-07:00,0.0,10.725103,10725.103 +18731,2025-03-09T08:40:36.056030-07:00,0.0,10.713829,10713.829 +18732,2025-03-09T08:40:46.784765-07:00,0.0,10.728735,10728.735 +18733,2025-03-09T08:40:57.512963-07:00,0.0,10.728198,10728.198 +18734,2025-03-09T08:41:08.232173-07:00,0.0,10.71921,10719.21 +18735,2025-03-09T08:41:18.965562-07:00,0.0,10.733389,10733.389 +18736,2025-03-09T08:41:29.683967-07:00,0.0,10.718405,10718.405 +18737,2025-03-09T08:41:40.408962-07:00,0.0,10.724995,10724.995 +18738,2025-03-09T08:41:51.134218-07:00,0.0,10.725256,10725.256 +18739,2025-03-09T08:42:01.858960-07:00,0.0,10.724742,10724.742 +18740,2025-03-09T08:42:12.592008-07:00,0.0,10.733048,10733.048 +18741,2025-03-09T08:42:23.314339-07:00,0.0,10.722331,10722.331 +18742,2025-03-09T08:42:34.041964-07:00,0.0,10.727625,10727.625 +18743,2025-03-09T08:42:44.771174-07:00,0.0,10.72921,10729.21 +18744,2025-03-09T08:42:55.491891-07:00,0.0,10.720717,10720.717 +18745,2025-03-09T08:43:06.211965-07:00,0.0,10.720074,10720.074 +18746,2025-03-09T08:43:16.944156-07:00,0.0,10.732191,10732.191 +18747,2025-03-09T08:43:27.668593-07:00,0.0,10.724437,10724.437 +18748,2025-03-09T08:43:38.397141-07:00,0.0,10.728548,10728.548 +18749,2025-03-09T08:43:49.111965-07:00,0.0,10.714824,10714.824 +18750,2025-03-09T08:43:59.845306-07:00,0.0,10.733341,10733.341 +18751,2025-03-09T08:44:10.567961-07:00,0.0,10.722655,10722.655 +18752,2025-03-09T08:44:21.285141-07:00,0.0,10.71718,10717.18 +18753,2025-03-09T08:44:32.021020-07:00,0.0,10.735879,10735.879 +18754,2025-03-09T08:44:42.743964-07:00,0.0,10.722944,10722.944 +18755,2025-03-09T08:44:53.461843-07:00,0.0,10.717879,10717.879 +18756,2025-03-09T08:45:04.196966-07:00,0.0,10.735123,10735.123 +18757,2025-03-09T08:45:14.920507-07:00,0.0,10.723541,10723.541 +18758,2025-03-09T08:45:25.644962-07:00,0.0,10.724455,10724.455 +18759,2025-03-09T08:45:36.366965-07:00,0.0,10.722003,10722.003 +18760,2025-03-09T08:45:47.087702-07:00,0.0,10.720737,10720.737 +18761,2025-03-09T08:45:57.812163-07:00,0.0,10.724461,10724.461 +18762,2025-03-09T08:46:08.543227-07:00,0.0,10.731064,10731.064 +18763,2025-03-09T08:46:19.264453-07:00,0.0,10.721226,10721.226 +18764,2025-03-09T08:46:29.992149-07:00,0.0,10.727696,10727.696 +18765,2025-03-09T08:46:40.715990-07:00,0.0,10.723841,10723.841 +18766,2025-03-09T08:46:51.430778-07:00,0.0,10.714788,10714.788 +18767,2025-03-09T08:47:02.158965-07:00,0.0,10.728187,10728.187 +18768,2025-03-09T08:47:12.883125-07:00,0.0,10.72416,10724.16 +18769,2025-03-09T08:47:23.604508-07:00,0.0,10.721383,10721.383 +18770,2025-03-09T08:47:34.324242-07:00,0.0,10.719734,10719.734 +18771,2025-03-09T08:47:45.052169-07:00,0.0,10.727927,10727.927 +18772,2025-03-09T08:47:55.771136-07:00,0.0,10.718967,10718.967 +18773,2025-03-09T08:48:06.497963-07:00,0.0,10.726827,10726.827 +18774,2025-03-09T08:48:17.226992-07:00,0.0,10.729029,10729.029 +18775,2025-03-09T08:48:27.953137-07:00,0.0,10.726145,10726.145 +18776,2025-03-09T08:48:38.672963-07:00,0.0,10.719826,10719.826 +18777,2025-03-09T08:48:49.406968-07:00,0.0,10.734005,10734.005 +18778,2025-03-09T08:49:00.134961-07:00,0.0,10.727993,10727.993 +18779,2025-03-09T08:49:10.868965-07:00,0.0,10.734004,10734.004 +18780,2025-03-09T08:49:21.591303-07:00,0.0,10.722338,10722.338 +18781,2025-03-09T08:49:32.325961-07:00,0.0,10.734658,10734.658 +18782,2025-03-09T08:49:43.056966-07:00,0.0,10.731005,10731.005 +18783,2025-03-09T08:49:53.786440-07:00,0.0,10.729474,10729.474 +18784,2025-03-09T08:50:04.515998-07:00,0.0,10.729558,10729.558 +18785,2025-03-09T08:50:15.236200-07:00,0.0,10.720202,10720.202 +18786,2025-03-09T08:50:25.969033-07:00,0.0,10.732833,10732.833 +18787,2025-03-09T08:50:36.700112-07:00,0.0,10.731079,10731.079 +18788,2025-03-09T08:50:42.897150-07:00,273.0,6.197038,6197.038 +18789,2025-03-09T08:50:47.427965-07:00,411.0,4.530815,4530.815 +18790,2025-03-09T08:50:58.155198-07:00,271.0,10.727233,10727.233 +18791,2025-03-09T08:51:08.882964-07:00,498.0,10.727766,10727.766 +18792,2025-03-09T08:51:19.615381-07:00,485.0,10.732417,10732.417 +18793,2025-03-09T08:51:30.341236-07:00,447.0,10.725855,10725.855 +18794,2025-03-09T08:51:41.070963-07:00,400.0,10.729727,10729.727 +18795,2025-03-09T08:51:51.800140-07:00,393.0,10.729177,10729.177 +18796,2025-03-09T08:52:02.528963-07:00,336.0,10.728823,10728.823 +18797,2025-03-09T08:52:13.255299-07:00,451.0,10.726336,10726.336 +18798,2025-03-09T08:52:23.984944-07:00,426.0,10.729645,10729.645 +18799,2025-03-09T08:52:34.775019-07:00,449.0,10.790075,10790.075 +18800,2025-03-09T08:52:45.502970-07:00,474.0,10.727951,10727.951 +18801,2025-03-09T08:52:56.236021-07:00,401.0,10.733051,10733.051 +18802,2025-03-09T08:53:06.964880-07:00,389.0,10.728859,10728.859 +18803,2025-03-09T08:53:17.704635-07:00,423.0,10.739755,10739.755 +18804,2025-03-09T08:53:28.436971-07:00,474.0,10.732336,10732.336 +18805,2025-03-09T08:53:39.165892-07:00,409.0,10.728921,10728.921 +18806,2025-03-09T08:53:49.895867-07:00,372.0,10.729975,10729.975 +18807,2025-03-09T08:54:00.635816-07:00,386.0,10.739949,10739.949 +18808,2025-03-09T08:54:11.363802-07:00,378.0,10.727986,10727.986 +18809,2025-03-09T08:54:22.107799-07:00,330.0,10.743997,10743.997 +18810,2025-03-09T08:54:32.834193-07:00,375.0,10.726394,10726.394 +18811,2025-03-09T08:54:43.571010-07:00,416.0,10.736817,10736.817 +18812,2025-03-09T08:54:54.302221-07:00,448.0,10.731211,10731.211 +18813,2025-03-09T08:55:05.033881-07:00,461.0,10.73166,10731.66 +18814,2025-03-09T08:55:15.766836-07:00,432.0,10.732955,10732.955 +18815,2025-03-09T08:55:26.496826-07:00,432.0,10.72999,10729.99 +18816,2025-03-09T08:55:37.221981-07:00,271.0,10.725155,10725.155 +18817,2025-03-09T08:55:47.948985-07:00,385.0,10.727004,10727.004 +18818,2025-03-09T08:55:58.678804-07:00,336.0,10.729819,10729.819 +18819,2025-03-09T08:56:09.419804-07:00,400.0,10.741,10741.0 +18820,2025-03-09T08:56:20.150802-07:00,408.0,10.730998,10730.998 +18821,2025-03-09T08:56:30.879826-07:00,383.0,10.729024,10729.024 +18822,2025-03-09T08:56:41.606815-07:00,389.0,10.726989,10726.989 +18823,2025-03-09T08:56:52.334981-07:00,361.0,10.728166,10728.166 +18824,2025-03-09T08:57:03.075059-07:00,473.0,10.740078,10740.078 +18825,2025-03-09T08:57:13.800802-07:00,406.0,10.725743,10725.743 +18826,2025-03-09T08:57:24.531801-07:00,464.0,10.730999,10730.999 +18827,2025-03-09T08:57:35.271207-07:00,467.0,10.739406,10739.406 +18828,2025-03-09T08:57:45.996801-07:00,381.0,10.725594,10725.594 +18829,2025-03-09T08:57:56.727975-07:00,482.0,10.731174,10731.174 +18830,2025-03-09T08:58:07.459236-07:00,390.0,10.731261,10731.261 +18831,2025-03-09T08:58:18.191876-07:00,435.0,10.73264,10732.64 +18832,2025-03-09T08:58:28.914840-07:00,370.0,10.722964,10722.964 +18833,2025-03-09T08:58:39.655244-07:00,394.0,10.740404,10740.404 +18834,2025-03-09T08:58:50.380258-07:00,385.0,10.725014,10725.014 +18835,2025-03-09T08:59:01.119007-07:00,465.0,10.738749,10738.749 +18836,2025-03-09T08:59:11.851908-07:00,367.0,10.732901,10732.901 +18837,2025-03-09T08:59:22.577804-07:00,379.0,10.725896,10725.896 +18838,2025-03-09T08:59:33.306955-07:00,368.0,10.729151,10729.151 +18839,2025-03-09T08:59:44.044803-07:00,369.0,10.737848,10737.848 +18840,2025-03-09T08:59:54.774139-07:00,391.0,10.729336,10729.336 +18841,2025-03-09T09:00:05.501934-07:00,287.0,10.727795,10727.795 +18842,2025-03-09T09:00:16.232635-07:00,336.0,10.730701,10730.701 +18843,2025-03-09T09:00:26.967981-07:00,470.0,10.735346,10735.346 +18844,2025-03-09T09:00:34.578076-07:00,0.0,7.610095,7610.095 +18845,2025-03-09T09:00:37.697874-07:00,0.0,3.119798,3119.798 +18846,2025-03-09T09:00:48.429214-07:00,0.0,10.73134,10731.34 +18847,2025-03-09T09:00:59.156302-07:00,0.0,10.727088,10727.088 +18848,2025-03-09T09:01:09.884047-07:00,0.0,10.727745,10727.745 +18849,2025-03-09T09:01:20.620026-07:00,0.0,10.735979,10735.979 +18850,2025-03-09T09:01:31.347800-07:00,0.0,10.727774,10727.774 +18851,2025-03-09T09:01:42.071873-07:00,0.0,10.724073,10724.073 +18852,2025-03-09T09:01:52.802993-07:00,0.0,10.73112,10731.12 +18853,2025-03-09T09:02:03.535804-07:00,0.0,10.732811,10732.811 +18854,2025-03-09T09:02:14.262086-07:00,0.0,10.726282,10726.282 +18855,2025-03-09T09:02:24.990509-07:00,0.0,10.728423,10728.423 +18856,2025-03-09T09:02:35.722803-07:00,0.0,10.732294,10732.294 +18857,2025-03-09T09:02:46.449801-07:00,0.0,10.726998,10726.998 +18858,2025-03-09T09:02:57.185291-07:00,0.0,10.73549,10735.49 +18859,2025-03-09T09:03:07.916041-07:00,0.0,10.73075,10730.75 +18860,2025-03-09T09:03:18.644993-07:00,0.0,10.728952,10728.952 +18861,2025-03-09T09:03:29.373100-07:00,0.0,10.728107,10728.107 +18862,2025-03-09T09:03:40.112801-07:00,0.0,10.739701,10739.701 +18863,2025-03-09T09:03:50.841804-07:00,0.0,10.729003,10729.003 +18864,2025-03-09T09:04:01.570976-07:00,0.0,10.729172,10729.172 +18865,2025-03-09T09:04:12.302952-07:00,0.0,10.731976,10731.976 +18866,2025-03-09T09:04:23.025025-07:00,0.0,10.722073,10722.073 +18867,2025-03-09T09:04:33.761364-07:00,0.0,10.736339,10736.339 +18868,2025-03-09T09:04:44.486801-07:00,0.0,10.725437,10725.437 +18869,2025-03-09T09:04:55.222803-07:00,0.0,10.736002,10736.002 +18870,2025-03-09T09:05:05.953313-07:00,0.0,10.73051,10730.51 +18871,2025-03-09T09:05:16.681800-07:00,0.0,10.728487,10728.487 +18872,2025-03-09T09:05:27.417046-07:00,0.0,10.735246,10735.246 +18873,2025-03-09T09:05:38.147684-07:00,0.0,10.730638,10730.638 +18874,2025-03-09T09:05:48.880803-07:00,0.0,10.733119,10733.119 +18875,2025-03-09T09:05:59.618801-07:00,0.0,10.737998,10737.998 +18876,2025-03-09T09:06:10.351834-07:00,0.0,10.733033,10733.033 +18877,2025-03-09T09:06:21.081976-07:00,0.0,10.730142,10730.142 +18878,2025-03-09T09:06:31.810803-07:00,0.0,10.728827,10728.827 +18879,2025-03-09T09:06:42.545136-07:00,0.0,10.734333,10734.333 +18880,2025-03-09T09:06:53.277533-07:00,0.0,10.732397,10732.397 +18881,2025-03-09T09:07:04.003803-07:00,0.0,10.72627,10726.27 +18882,2025-03-09T09:07:14.744803-07:00,0.0,10.741,10741.0 +18883,2025-03-09T09:07:25.475800-07:00,0.0,10.730997,10730.997 +18884,2025-03-09T09:07:36.200114-07:00,0.0,10.724314,10724.314 +18885,2025-03-09T09:07:57.669267-07:00,0.0,21.469153,21469.153 +18886,2025-03-09T09:08:08.402990-07:00,0.0,10.733723,10733.723 +18887,2025-03-09T09:08:19.135804-07:00,0.0,10.732814,10732.814 +18888,2025-03-09T09:08:29.858797-07:00,0.0,10.722993,10722.993 +18889,2025-03-09T09:08:40.594898-07:00,0.0,10.736101,10736.101 +18890,2025-03-09T09:08:51.323106-07:00,0.0,10.728208,10728.208 +18891,2025-03-09T09:09:02.053835-07:00,0.0,10.730729,10730.729 +18892,2025-03-09T09:09:12.790769-07:00,0.0,10.736934,10736.934 +18893,2025-03-09T09:09:23.513801-07:00,0.0,10.723032,10723.032 +18894,2025-03-09T09:09:34.241102-07:00,0.0,10.727301,10727.301 +18895,2025-03-09T09:09:44.977993-07:00,0.0,10.736891,10736.891 +18896,2025-03-09T09:09:55.703800-07:00,0.0,10.725807,10725.807 +18897,2025-03-09T09:10:06.432983-07:00,0.0,10.729183,10729.183 +18898,2025-03-09T09:10:17.168988-07:00,0.0,10.736005,10736.005 +18899,2025-03-09T09:10:27.897840-07:00,0.0,10.728852,10728.852 +18900,2025-03-09T09:10:38.618033-07:00,0.0,10.720193,10720.193 +18901,2025-03-09T09:10:49.346841-07:00,0.0,10.728808,10728.808 +18902,2025-03-09T09:11:00.077804-07:00,0.0,10.730963,10730.963 +18903,2025-03-09T09:11:10.810981-07:00,0.0,10.733177,10733.177 +18904,2025-03-09T09:11:21.538924-07:00,0.0,10.727943,10727.943 +18905,2025-03-09T09:11:32.272004-07:00,0.0,10.73308,10733.08 +18906,2025-03-09T09:11:43.006941-07:00,0.0,10.734937,10734.937 +18907,2025-03-09T09:11:53.728870-07:00,0.0,10.721929,10721.929 +18908,2025-03-09T09:12:04.461802-07:00,0.0,10.732932,10732.932 +18909,2025-03-09T09:12:15.190312-07:00,0.0,10.72851,10728.51 +18910,2025-03-09T09:12:25.921866-07:00,0.0,10.731554,10731.554 +18911,2025-03-09T09:12:36.647906-07:00,0.0,10.72604,10726.04 +18912,2025-03-09T09:12:47.385014-07:00,0.0,10.737108,10737.108 +18913,2025-03-09T09:12:58.108800-07:00,0.0,10.723786,10723.786 +18914,2025-03-09T09:13:08.845874-07:00,0.0,10.737074,10737.074 +18915,2025-03-09T09:13:19.571433-07:00,0.0,10.725559,10725.559 +18916,2025-03-09T09:13:30.295800-07:00,0.0,10.724367,10724.367 +18917,2025-03-09T09:13:41.030004-07:00,0.0,10.734204,10734.204 +18918,2025-03-09T09:13:51.760967-07:00,0.0,10.730963,10730.963 +18919,2025-03-09T09:14:02.492804-07:00,0.0,10.731837,10731.837 +18920,2025-03-09T09:14:13.219980-07:00,0.0,10.727176,10727.176 +18921,2025-03-09T09:14:23.952989-07:00,0.0,10.733009,10733.009 +18922,2025-03-09T09:14:34.685173-07:00,0.0,10.732184,10732.184 +18923,2025-03-09T09:14:45.414934-07:00,0.0,10.729761,10729.761 +18924,2025-03-09T09:14:56.144940-07:00,0.0,10.730006,10730.006 +18925,2025-03-09T09:15:06.880827-07:00,0.0,10.735887,10735.887 +18926,2025-03-09T09:15:17.613804-07:00,0.0,10.732977,10732.977 +18927,2025-03-09T09:15:28.344073-07:00,0.0,10.730269,10730.269 +18928,2025-03-09T09:15:39.069801-07:00,0.0,10.725728,10725.728 +18929,2025-03-09T09:15:40.391314-07:00,0.0,1.321513,1321.513 +18930,2025-03-09T09:15:49.806008-07:00,0.0,9.414694,9414.694 +18931,2025-03-09T09:16:00.527959-07:00,0.0,10.721951,10721.951 +18932,2025-03-09T09:16:11.265815-07:00,0.0,10.737856,10737.856 +18933,2025-03-09T09:16:21.996801-07:00,0.0,10.730986,10730.986 +18934,2025-03-09T09:16:32.725013-07:00,0.0,10.728212,10728.212 +18935,2025-03-09T09:16:43.454000-07:00,0.0,10.728987,10728.987 +18936,2025-03-09T09:16:54.186868-07:00,0.0,10.732868,10732.868 +18937,2025-03-09T09:17:04.912907-07:00,0.0,10.726039,10726.039 +18938,2025-03-09T09:17:15.644824-07:00,0.0,10.731917,10731.917 +18939,2025-03-09T09:17:26.379803-07:00,0.0,10.734979,10734.979 +18940,2025-03-09T09:17:37.104268-07:00,0.0,10.724465,10724.465 +18941,2025-03-09T09:17:47.827801-07:00,0.0,10.723533,10723.533 +18942,2025-03-09T09:17:58.556801-07:00,0.0,10.729,10729.0 +18943,2025-03-09T09:18:09.297796-07:00,0.0,10.740995,10740.995 +18944,2025-03-09T09:18:20.025830-07:00,0.0,10.728034,10728.034 +18945,2025-03-09T09:18:30.757160-07:00,0.0,10.73133,10731.33 +18946,2025-03-09T09:18:41.487179-07:00,0.0,10.730019,10730.019 +18947,2025-03-09T09:18:52.215958-07:00,0.0,10.728779,10728.779 +18948,2025-03-09T09:19:02.946935-07:00,0.0,10.730977,10730.977 +18949,2025-03-09T09:19:13.677886-07:00,0.0,10.730951,10730.951 +18950,2025-03-09T09:19:24.407099-07:00,0.0,10.729213,10729.213 +18951,2025-03-09T09:19:35.135891-07:00,0.0,10.728792,10728.792 +18952,2025-03-09T09:19:45.861973-07:00,0.0,10.726082,10726.082 +18953,2025-03-09T09:19:56.597796-07:00,0.0,10.735823,10735.823 +18954,2025-03-09T09:20:07.320800-07:00,0.0,10.723004,10723.004 +18955,2025-03-09T09:20:18.058182-07:00,0.0,10.737382,10737.382 +18956,2025-03-09T09:20:28.780798-07:00,0.0,10.722616,10722.616 +18957,2025-03-09T09:20:39.515805-07:00,0.0,10.735007,10735.007 +18958,2025-03-09T09:20:50.241300-07:00,0.0,10.725495,10725.495 +18959,2025-03-09T09:21:00.972801-07:00,0.0,10.731501,10731.501 +18960,2025-03-09T09:21:11.697804-07:00,0.0,10.725003,10725.003 +18961,2025-03-09T09:21:22.424007-07:00,0.0,10.726203,10726.203 +18962,2025-03-09T09:21:33.155817-07:00,0.0,10.73181,10731.81 +18963,2025-03-09T09:21:43.878107-07:00,0.0,10.72229,10722.29 +18964,2025-03-09T09:21:54.608990-07:00,0.0,10.730883,10730.883 +18965,2025-03-09T09:22:05.333901-07:00,0.0,10.724911,10724.911 +18966,2025-03-09T09:22:16.067175-07:00,0.0,10.733274,10733.274 +18967,2025-03-09T09:22:26.800801-07:00,0.0,10.733626,10733.626 +18968,2025-03-09T09:22:37.532835-07:00,0.0,10.732034,10732.034 +18969,2025-03-09T09:22:48.259271-07:00,0.0,10.726436,10726.436 +18970,2025-03-09T09:22:58.987993-07:00,0.0,10.728722,10728.722 +18971,2025-03-09T09:23:09.725044-07:00,0.0,10.737051,10737.051 +18972,2025-03-09T09:23:20.445830-07:00,0.0,10.720786,10720.786 +18973,2025-03-09T09:23:31.177803-07:00,0.0,10.731973,10731.973 +18974,2025-03-09T09:23:41.914949-07:00,0.0,10.737146,10737.146 +18975,2025-03-09T09:23:52.638006-07:00,0.0,10.723057,10723.057 +18976,2025-03-09T09:24:03.375210-07:00,0.0,10.737204,10737.204 +18977,2025-03-09T09:24:14.099831-07:00,0.0,10.724621,10724.621 +18978,2025-03-09T09:24:24.831039-07:00,0.0,10.731208,10731.208 +18979,2025-03-09T09:24:35.562799-07:00,0.0,10.73176,10731.76 +18980,2025-03-09T09:24:46.293230-07:00,0.0,10.730431,10730.431 +18981,2025-03-09T09:24:57.021062-07:00,0.0,10.727832,10727.832 +18982,2025-03-09T09:25:07.761964-07:00,0.0,10.740902,10740.902 +18983,2025-03-09T09:25:18.485148-07:00,0.0,10.723184,10723.184 +18984,2025-03-09T09:25:29.218009-07:00,0.0,10.732861,10732.861 +18985,2025-03-09T09:25:39.943804-07:00,0.0,10.725795,10725.795 +18986,2025-03-09T09:25:50.667224-07:00,0.0,10.72342,10723.42 +18987,2025-03-09T09:26:01.392802-07:00,5.0,10.725578,10725.578 +18988,2025-03-09T09:26:12.128939-07:00,0.0,10.736137,10736.137 +18989,2025-03-09T09:26:22.858300-07:00,0.0,10.729361,10729.361 +18990,2025-03-09T09:26:33.590903-07:00,0.0,10.732603,10732.603 +18991,2025-03-09T09:26:44.312257-07:00,0.0,10.721354,10721.354 +18992,2025-03-09T09:26:55.052833-07:00,0.0,10.740576,10740.576 +18993,2025-03-09T09:27:05.777807-07:00,0.0,10.724974,10724.974 +18994,2025-03-09T09:27:16.501007-07:00,0.0,10.7232,10723.2 +18995,2025-03-09T09:27:27.227828-07:00,0.0,10.726821,10726.821 +18996,2025-03-09T09:27:37.965803-07:00,0.0,10.737975,10737.975 +18997,2025-03-09T09:27:48.689060-07:00,0.0,10.723257,10723.257 +18998,2025-03-09T09:27:59.420980-07:00,0.0,10.73192,10731.92 +18999,2025-03-09T09:28:10.149803-07:00,0.0,10.728823,10728.823 +19000,2025-03-09T09:28:20.876969-07:00,0.0,10.727166,10727.166 +19001,2025-03-09T09:28:31.608917-07:00,0.0,10.731948,10731.948 +19002,2025-03-09T09:28:42.339133-07:00,0.0,10.730216,10730.216 +19003,2025-03-09T09:28:53.063976-07:00,0.0,10.724843,10724.843 +19004,2025-03-09T09:29:03.782805-07:00,0.0,10.718829,10718.829 +19005,2025-03-09T09:29:14.519054-07:00,0.0,10.736249,10736.249 +19006,2025-03-09T09:29:25.249533-07:00,0.0,10.730479,10730.479 +19007,2025-03-09T09:29:35.972873-07:00,0.0,10.72334,10723.34 +19008,2025-03-09T09:29:46.708018-07:00,0.0,10.735145,10735.145 +19009,2025-03-09T09:29:57.435803-07:00,0.0,10.727785,10727.785 +19010,2025-03-09T09:30:08.166058-07:00,0.0,10.730255,10730.255 +19011,2025-03-09T09:30:18.900870-07:00,0.0,10.734812,10734.812 +19012,2025-03-09T09:30:29.622804-07:00,0.0,10.721934,10721.934 +19013,2025-03-09T09:30:40.350181-07:00,0.0,10.727377,10727.377 +19014,2025-03-09T09:30:51.086527-07:00,0.0,10.736346,10736.346 +19015,2025-03-09T09:31:01.818114-07:00,0.0,10.731587,10731.587 +19016,2025-03-09T09:31:12.541802-07:00,0.0,10.723688,10723.688 +19017,2025-03-09T09:31:23.272895-07:00,0.0,10.731093,10731.093 +19018,2025-03-09T09:31:34.004070-07:00,0.0,10.731175,10731.175 +19019,2025-03-09T09:31:44.729994-07:00,0.0,10.725924,10725.924 +19020,2025-03-09T09:31:55.454999-07:00,0.0,10.725005,10725.005 +19021,2025-03-09T09:32:06.182800-07:00,0.0,10.727801,10727.801 +19022,2025-03-09T09:32:16.905983-07:00,0.0,10.723183,10723.183 +19023,2025-03-09T09:32:27.635799-07:00,0.0,10.729816,10729.816 +19024,2025-03-09T09:32:38.369810-07:00,0.0,10.734011,10734.011 +19025,2025-03-09T09:32:49.101282-07:00,0.0,10.731472,10731.472 +19026,2025-03-09T09:32:59.825801-07:00,0.0,10.724519,10724.519 +19027,2025-03-09T09:33:10.559803-07:00,0.0,10.734002,10734.002 +19028,2025-03-09T09:33:21.287007-07:00,0.0,10.727204,10727.204 +19029,2025-03-09T09:33:32.015374-07:00,0.0,10.728367,10728.367 +19030,2025-03-09T09:33:42.748893-07:00,0.0,10.733519,10733.519 +19031,2025-03-09T09:33:53.478002-07:00,0.0,10.729109,10729.109 +19032,2025-03-09T09:34:04.201803-07:00,0.0,10.723801,10723.801 +19033,2025-03-09T09:34:14.925983-07:00,0.0,10.72418,10724.18 +19034,2025-03-09T09:34:25.656870-07:00,0.0,10.730887,10730.887 +19035,2025-03-09T09:34:36.390019-07:00,0.0,10.733149,10733.149 +19036,2025-03-09T09:34:47.113001-07:00,0.0,10.722982,10722.982 +19037,2025-03-09T09:34:57.835805-07:00,0.0,10.722804,10722.804 +19038,2025-03-09T09:35:08.565822-07:00,0.0,10.730017,10730.017 +19039,2025-03-09T09:35:19.301069-07:00,0.0,10.735247,10735.247 +19040,2025-03-09T09:35:30.028015-07:00,0.0,10.726946,10726.946 +19041,2025-03-09T09:35:40.751978-07:00,0.0,10.723963,10723.963 +19042,2025-03-09T09:35:51.481804-07:00,0.0,10.729826,10729.826 +19043,2025-03-09T09:36:02.215931-07:00,0.0,10.734127,10734.127 +19044,2025-03-09T09:36:12.942220-07:00,0.0,10.726289,10726.289 +19045,2025-03-09T09:36:23.665091-07:00,0.0,10.722871,10722.871 +19046,2025-03-09T09:36:34.396976-07:00,0.0,10.731885,10731.885 +19047,2025-03-09T09:36:45.127368-07:00,0.0,10.730392,10730.392 +19048,2025-03-09T09:36:55.850844-07:00,0.0,10.723476,10723.476 +19049,2025-03-09T09:37:06.578969-07:00,0.0,10.728125,10728.125 +19050,2025-03-09T09:37:17.305837-07:00,0.0,10.726868,10726.868 +19051,2025-03-09T09:37:28.038063-07:00,0.0,10.732226,10732.226 +19052,2025-03-09T09:37:38.764347-07:00,0.0,10.726284,10726.284 +19053,2025-03-09T09:37:49.494004-07:00,0.0,10.729657,10729.657 +19054,2025-03-09T09:38:00.224804-07:00,0.0,10.7308,10730.8 +19055,2025-03-09T09:38:10.948348-07:00,0.0,10.723544,10723.544 +19056,2025-03-09T09:38:21.683878-07:00,0.0,10.73553,10735.53 +19057,2025-03-09T09:38:32.411485-07:00,0.0,10.727607,10727.607 +19058,2025-03-09T09:38:43.135803-07:00,0.0,10.724318,10724.318 +19059,2025-03-09T09:38:53.859886-07:00,0.0,10.724083,10724.083 +19060,2025-03-09T09:39:04.591979-07:00,0.0,10.732093,10732.093 +19061,2025-03-09T09:39:15.313894-07:00,0.0,10.721915,10721.915 +19062,2025-03-09T09:39:26.048004-07:00,0.0,10.73411,10734.11 +19063,2025-03-09T09:39:36.776005-07:00,0.0,10.728001,10728.001 +19064,2025-03-09T09:39:47.502904-07:00,0.0,10.726899,10726.899 +19065,2025-03-09T09:39:58.231994-07:00,0.0,10.72909,10729.09 +19066,2025-03-09T09:40:08.968830-07:00,0.0,10.736836,10736.836 +19067,2025-03-09T09:40:19.689162-07:00,0.0,10.720332,10720.332 +19068,2025-03-09T09:40:30.421026-07:00,0.0,10.731864,10731.864 +19069,2025-03-09T09:40:41.146803-07:00,0.0,10.725777,10725.777 +19070,2025-03-09T09:40:51.877144-07:00,0.0,10.730341,10730.341 +19071,2025-03-09T09:41:02.612982-07:00,0.0,10.735838,10735.838 +19072,2025-03-09T09:41:13.334811-07:00,0.0,10.721829,10721.829 +19073,2025-03-09T09:41:24.063988-07:00,0.0,10.729177,10729.177 +19074,2025-03-09T09:41:34.800046-07:00,0.0,10.736058,10736.058 +19075,2025-03-09T09:41:45.531148-07:00,0.0,10.731102,10731.102 +19076,2025-03-09T09:41:56.254817-07:00,0.0,10.723669,10723.669 +19077,2025-03-09T09:42:06.985830-07:00,0.0,10.731013,10731.013 +19078,2025-03-09T09:42:17.715170-07:00,0.0,10.72934,10729.34 +19079,2025-03-09T09:42:28.439978-07:00,0.0,10.724808,10724.808 +19080,2025-03-09T09:42:39.175810-07:00,0.0,10.735832,10735.832 +19081,2025-03-09T09:42:49.908797-07:00,0.0,10.732987,10732.987 +19082,2025-03-09T09:43:00.628999-07:00,0.0,10.720202,10720.202 +19083,2025-03-09T09:43:11.358956-07:00,0.0,10.729957,10729.957 +19084,2025-03-09T09:43:22.086999-07:00,0.0,10.728043,10728.043 +19085,2025-03-09T09:43:32.823986-07:00,0.0,10.736987,10736.987 +19086,2025-03-09T09:43:43.552004-07:00,0.0,10.728018,10728.018 +19087,2025-03-09T09:43:54.283804-07:00,0.0,10.7318,10731.8 +19088,2025-03-09T09:44:05.013968-07:00,0.0,10.730164,10730.164 +19089,2025-03-09T09:44:15.734581-07:00,0.0,10.720613,10720.613 +19090,2025-03-09T09:44:26.463988-07:00,0.0,10.729407,10729.407 +19091,2025-03-09T09:44:37.196271-07:00,0.0,10.732283,10732.283 +19092,2025-03-09T09:44:47.927801-07:00,0.0,10.73153,10731.53 +19093,2025-03-09T09:44:58.647967-07:00,0.0,10.720166,10720.166 +19094,2025-03-09T09:45:09.378015-07:00,0.0,10.730048,10730.048 +19095,2025-03-09T09:45:20.109802-07:00,0.0,10.731787,10731.787 +19096,2025-03-09T09:45:30.835366-07:00,0.0,10.725564,10725.564 +19097,2025-03-09T09:45:41.563801-07:00,0.0,10.728435,10728.435 +19098,2025-03-09T09:45:52.295827-07:00,0.0,10.732026,10732.026 +19099,2025-03-09T09:46:03.023619-07:00,0.0,10.727792,10727.792 +19100,2025-03-09T09:46:13.748799-07:00,0.0,10.72518,10725.18 +19101,2025-03-09T09:46:24.485011-07:00,0.0,10.736212,10736.212 +19102,2025-03-09T09:46:35.217007-07:00,0.0,10.731996,10731.996 +19103,2025-03-09T09:46:45.934801-07:00,0.0,10.717794,10717.794 +19104,2025-03-09T09:46:56.666124-07:00,0.0,10.731323,10731.323 +19105,2025-03-09T09:47:07.401922-07:00,0.0,10.735798,10735.798 +19106,2025-03-09T09:47:18.121020-07:00,0.0,10.719098,10719.098 +19107,2025-03-09T09:47:28.858171-07:00,0.0,10.737151,10737.151 +19108,2025-03-09T09:47:39.582801-07:00,0.0,10.72463,10724.63 +19109,2025-03-09T09:47:50.309804-07:00,0.0,10.727003,10727.003 +19110,2025-03-09T09:48:01.047989-07:00,0.0,10.738185,10738.185 +19111,2025-03-09T09:48:11.778800-07:00,0.0,10.730811,10730.811 +19112,2025-03-09T09:48:22.504246-07:00,0.0,10.725446,10725.446 +19113,2025-03-09T09:48:33.239986-07:00,0.0,10.73574,10735.74 +19114,2025-03-09T09:48:43.967804-07:00,0.0,10.727818,10727.818 +19115,2025-03-09T09:48:54.697805-07:00,0.0,10.730001,10730.001 +19116,2025-03-09T09:49:05.436876-07:00,0.0,10.739071,10739.071 +19117,2025-03-09T09:49:16.163880-07:00,0.0,10.727004,10727.004 +19118,2025-03-09T09:49:26.902804-07:00,0.0,10.738924,10738.924 +19119,2025-03-09T09:49:37.636949-07:00,0.0,10.734145,10734.145 +19120,2025-03-09T09:49:48.371981-07:00,0.0,10.735032,10735.032 +19121,2025-03-09T09:49:59.102005-07:00,0.0,10.730024,10730.024 +19122,2025-03-09T09:50:09.837872-07:00,0.0,10.735867,10735.867 +19123,2025-03-09T09:50:20.563967-07:00,0.0,10.726095,10726.095 +19124,2025-03-09T09:50:31.299822-07:00,0.0,10.735855,10735.855 +19125,2025-03-09T09:50:42.034477-07:00,0.0,10.734655,10734.655 +19126,2025-03-09T09:50:52.769802-07:00,0.0,10.735325,10735.325 +19127,2025-03-09T09:51:03.498987-07:00,0.0,10.729185,10729.185 +19128,2025-03-09T09:51:14.231802-07:00,0.0,10.732815,10732.815 +19129,2025-03-09T09:51:24.964836-07:00,0.0,10.733034,10733.034 +19130,2025-03-09T09:51:35.696082-07:00,0.0,10.731246,10731.246 +19131,2025-03-09T09:51:46.430070-07:00,0.0,10.733988,10733.988 +19132,2025-03-09T09:51:57.155052-07:00,0.0,10.724982,10724.982 +19133,2025-03-09T09:52:07.883006-07:00,0.0,10.727954,10727.954 +19134,2025-03-09T09:52:18.618008-07:00,0.0,10.735002,10735.002 +19135,2025-03-09T09:52:29.343811-07:00,0.0,10.725803,10725.803 +19136,2025-03-09T09:52:40.076843-07:00,0.0,10.733032,10733.032 +19137,2025-03-09T09:52:50.801837-07:00,0.0,10.724994,10724.994 +19138,2025-03-09T09:53:01.534816-07:00,0.0,10.732979,10732.979 +19139,2025-03-09T09:53:12.265017-07:00,0.0,10.730201,10730.201 +19140,2025-03-09T09:53:23.004991-07:00,0.0,10.739974,10739.974 +19141,2025-03-09T09:53:33.732937-07:00,0.0,10.727946,10727.946 +19142,2025-03-09T09:53:44.466869-07:00,0.0,10.733932,10733.932 +19143,2025-03-09T09:53:55.201584-07:00,0.0,10.734715,10734.715 +19144,2025-03-09T09:54:05.933006-07:00,0.0,10.731422,10731.422 +19145,2025-03-09T09:54:16.655318-07:00,0.0,10.722312,10722.312 +19146,2025-03-09T09:54:27.394997-07:00,0.0,10.739679,10739.679 +19147,2025-03-09T09:54:38.123570-07:00,0.0,10.728573,10728.573 +19148,2025-03-09T09:54:48.857914-07:00,0.0,10.734344,10734.344 +19149,2025-03-09T09:54:59.595010-07:00,0.0,10.737096,10737.096 +19150,2025-03-09T09:55:10.321990-07:00,0.0,10.72698,10726.98 +19151,2025-03-09T09:55:21.061049-07:00,0.0,10.739059,10739.059 +19152,2025-03-09T09:55:31.786809-07:00,0.0,10.72576,10725.76 +19153,2025-03-09T09:55:42.522011-07:00,0.0,10.735202,10735.202 +19154,2025-03-09T09:55:53.252812-07:00,0.0,10.730801,10730.801 +19155,2025-03-09T09:56:03.991814-07:00,0.0,10.739002,10739.002 +19156,2025-03-09T09:56:14.719812-07:00,0.0,10.727998,10727.998 +19157,2025-03-09T09:56:25.457001-07:00,0.0,10.737189,10737.189 +19158,2025-03-09T09:56:36.188879-07:00,0.0,10.731878,10731.878 +19159,2025-03-09T09:56:46.919851-07:00,0.0,10.730972,10730.972 +19160,2025-03-09T09:56:57.655035-07:00,0.0,10.735184,10735.184 +19161,2025-03-09T09:57:08.378814-07:00,0.0,10.723779,10723.779 +19162,2025-03-09T09:57:19.113812-07:00,0.0,10.734998,10734.998 +19163,2025-03-09T09:57:29.847892-07:00,0.0,10.73408,10734.08 +19164,2025-03-09T09:57:40.587346-07:00,0.0,10.739454,10739.454 +19165,2025-03-09T09:57:51.320985-07:00,0.0,10.733639,10733.639 +19166,2025-03-09T09:58:02.049814-07:00,0.0,10.728829,10728.829 +19167,2025-03-09T09:58:12.783991-07:00,0.0,10.734177,10734.177 +19168,2025-03-09T09:58:23.520083-07:00,0.0,10.736092,10736.092 +19169,2025-03-09T09:58:34.249961-07:00,0.0,10.729878,10729.878 +19170,2025-03-09T09:58:44.975154-07:00,0.0,10.725193,10725.193 +19171,2025-03-09T09:58:55.707862-07:00,0.0,10.732708,10732.708 +19172,2025-03-09T09:59:06.441814-07:00,0.0,10.733952,10733.952 +19173,2025-03-09T09:59:17.167052-07:00,0.0,10.725238,10725.238 +19174,2025-03-09T09:59:27.904990-07:00,0.0,10.737938,10737.938 +19175,2025-03-09T09:59:38.631157-07:00,0.0,10.726167,10726.167 +19176,2025-03-09T09:59:49.369813-07:00,0.0,10.738656,10738.656 +19177,2025-03-09T10:00:00.096236-07:00,0.0,10.726423,10726.423 +19178,2025-03-09T10:00:10.832958-07:00,0.0,10.736722,10736.722 +19179,2025-03-09T10:00:21.559624-07:00,0.0,10.726666,10726.666 +19180,2025-03-09T10:00:32.292450-07:00,0.0,10.732826,10732.826 +19181,2025-03-09T10:00:43.017814-07:00,0.0,10.725364,10725.364 +19182,2025-03-09T10:00:53.755894-07:00,0.0,10.73808,10738.08 +19183,2025-03-09T10:01:04.479002-07:00,0.0,10.723108,10723.108 +19184,2025-03-09T10:01:15.217838-07:00,0.0,10.738836,10738.836 +19185,2025-03-09T10:01:25.951815-07:00,0.0,10.733977,10733.977 +19186,2025-03-09T10:01:36.680083-07:00,0.0,10.728268,10728.268 +19187,2025-03-09T10:01:47.406814-07:00,0.0,10.726731,10726.731 +19188,2025-03-09T10:01:58.143224-07:00,0.0,10.73641,10736.41 +19189,2025-03-09T10:02:08.883814-07:00,0.0,10.74059,10740.59 +19190,2025-03-09T10:02:19.616070-07:00,0.0,10.732256,10732.256 +19191,2025-03-09T10:02:30.338811-07:00,0.0,10.722741,10722.741 +19192,2025-03-09T10:02:41.069016-07:00,0.0,10.730205,10730.205 +19193,2025-03-09T10:02:51.804993-07:00,0.0,10.735977,10735.977 +19194,2025-03-09T10:03:02.536811-07:00,0.0,10.731818,10731.818 +19195,2025-03-09T10:03:13.272016-07:00,0.0,10.735205,10735.205 +19196,2025-03-09T10:03:24.002078-07:00,0.0,10.730062,10730.062 +19197,2025-03-09T10:03:34.732003-07:00,0.0,10.729925,10729.925 +19198,2025-03-09T10:03:45.462845-07:00,0.0,10.730842,10730.842 +19199,2025-03-09T10:03:56.194993-07:00,0.0,10.732148,10732.148 +19200,2025-03-09T10:04:06.928042-07:00,0.0,10.733049,10733.049 +19201,2025-03-09T10:04:17.661824-07:00,0.0,10.733782,10733.782 +19202,2025-03-09T10:04:28.393026-07:00,0.0,10.731202,10731.202 +19203,2025-03-09T10:04:39.128897-07:00,0.0,10.735871,10735.871 +19204,2025-03-09T10:04:49.857921-07:00,0.0,10.729024,10729.024 +19205,2025-03-09T10:05:00.598813-07:00,0.0,10.740892,10740.892 +19206,2025-03-09T10:05:11.327999-07:00,0.0,10.729186,10729.186 +19207,2025-03-09T10:05:22.060997-07:00,0.0,10.732998,10732.998 +19208,2025-03-09T10:05:32.802009-07:00,0.0,10.741012,10741.012 +19209,2025-03-09T10:05:43.538932-07:00,0.0,10.736923,10736.923 +19210,2025-03-09T10:05:54.270813-07:00,0.0,10.731881,10731.881 +19211,2025-03-09T10:06:04.995612-07:00,0.0,10.724799,10724.799 +19212,2025-03-09T10:06:15.733816-07:00,0.0,10.738204,10738.204 +19213,2025-03-09T10:06:26.462885-07:00,0.0,10.729069,10729.069 +19214,2025-03-09T10:06:37.191000-07:00,0.0,10.728115,10728.115 +19215,2025-03-09T10:06:47.922234-07:00,0.0,10.731234,10731.234 +19216,2025-03-09T10:06:58.660813-07:00,0.0,10.738579,10738.579 +19217,2025-03-09T10:07:09.395213-07:00,0.0,10.7344,10734.4 +19218,2025-03-09T10:07:20.120836-07:00,0.0,10.725623,10725.623 +19219,2025-03-09T10:07:30.850854-07:00,0.0,10.730018,10730.018 +19220,2025-03-09T10:07:41.584974-07:00,0.0,10.73412,10734.12 +19221,2025-03-09T10:07:52.313807-07:00,0.0,10.728833,10728.833 +19222,2025-03-09T10:08:03.040825-07:00,0.0,10.727018,10727.018 +19223,2025-03-09T10:08:13.777079-07:00,0.0,10.736254,10736.254 +19224,2025-03-09T10:08:24.508769-07:00,0.0,10.73169,10731.69 +19225,2025-03-09T10:08:35.236911-07:00,0.0,10.728142,10728.142 +19226,2025-03-09T10:08:45.975033-07:00,0.0,10.738122,10738.122 +19227,2025-03-09T10:08:56.706981-07:00,0.0,10.731948,10731.948 +19228,2025-03-09T10:09:07.435811-07:00,0.0,10.72883,10728.83 +19229,2025-03-09T10:09:18.177808-07:00,0.0,10.741997,10741.997 +19230,2025-03-09T10:09:28.913887-07:00,0.0,10.736079,10736.079 +19231,2025-03-09T10:09:39.645029-07:00,0.0,10.731142,10731.142 +19232,2025-03-09T10:09:50.380951-07:00,0.0,10.735922,10735.922 +19233,2025-03-09T10:10:01.112815-07:00,0.0,10.731864,10731.864 +19234,2025-03-09T10:10:11.843044-07:00,0.0,10.730229,10730.229 +19235,2025-03-09T10:10:22.574814-07:00,0.0,10.73177,10731.77 +19236,2025-03-09T10:10:33.310815-07:00,0.0,10.736001,10736.001 +19237,2025-03-09T10:10:44.042830-07:00,0.0,10.732015,10732.015 +19238,2025-03-09T10:10:54.769527-07:00,0.0,10.726697,10726.697 +19239,2025-03-09T10:11:05.499811-07:00,0.0,10.730284,10730.284 +19240,2025-03-09T10:11:16.230238-07:00,0.0,10.730427,10730.427 +19241,2025-03-09T10:11:26.962993-07:00,0.0,10.732755,10732.755 +19242,2025-03-09T10:11:33.965212-07:00,342.0,7.002219,7002.219 +19243,2025-03-09T10:11:37.694014-07:00,463.0,3.728802,3728.802 +19244,2025-03-09T10:11:48.429324-07:00,470.0,10.73531,10735.31 +19245,2025-03-09T10:11:59.152174-07:00,439.0,10.72285,10722.85 +19246,2025-03-09T10:12:09.882021-07:00,479.0,10.729847,10729.847 +19247,2025-03-09T10:12:20.618914-07:00,372.0,10.736893,10736.893 +19248,2025-03-09T10:12:31.354109-07:00,464.0,10.735195,10735.195 +19249,2025-03-09T10:12:32.118831-07:00,0.0,0.764722,764.722 +19250,2025-03-09T10:12:42.083811-07:00,0.0,9.96498,9964.98 +19251,2025-03-09T10:12:52.812840-07:00,0.0,10.729029,10729.029 +19252,2025-03-09T10:13:03.541734-07:00,0.0,10.728894,10728.894 +19253,2025-03-09T10:13:14.273811-07:00,0.0,10.732077,10732.077 +19254,2025-03-09T10:13:25.006587-07:00,0.0,10.732776,10732.776 +19255,2025-03-09T10:13:35.731984-07:00,0.0,10.725397,10725.397 +19256,2025-03-09T10:13:46.465877-07:00,0.0,10.733893,10733.893 +19257,2025-03-09T10:13:57.192806-07:00,0.0,10.726929,10726.929 +19258,2025-03-09T10:14:07.928993-07:00,0.0,10.736187,10736.187 +19259,2025-03-09T10:14:18.660837-07:00,0.0,10.731844,10731.844 +19260,2025-03-09T10:14:29.390000-07:00,0.0,10.729163,10729.163 +19261,2025-03-09T10:14:40.125220-07:00,0.0,10.73522,10735.22 +19262,2025-03-09T10:14:50.848879-07:00,0.0,10.723659,10723.659 +19263,2025-03-09T10:15:01.582569-07:00,0.0,10.73369,10733.69 +19264,2025-03-09T10:15:12.305912-07:00,0.0,10.723343,10723.343 +19265,2025-03-09T10:15:23.031886-07:00,0.0,10.725974,10725.974 +19266,2025-03-09T10:15:33.755020-07:00,0.0,10.723134,10723.134 +19267,2025-03-09T10:15:44.487928-07:00,0.0,10.732908,10732.908 +19268,2025-03-09T10:15:55.217813-07:00,0.0,10.729885,10729.885 +19269,2025-03-09T10:16:05.941245-07:00,0.0,10.723432,10723.432 +19270,2025-03-09T10:16:16.667974-07:00,0.0,10.726729,10726.729 +19271,2025-03-09T10:16:27.398846-07:00,0.0,10.730872,10730.872 +19272,2025-03-09T10:16:38.119809-07:00,0.0,10.720963,10720.963 +19273,2025-03-09T10:16:48.847814-07:00,0.0,10.728005,10728.005 +19274,2025-03-09T10:16:59.575201-07:00,0.0,10.727387,10727.387 +19275,2025-03-09T10:17:10.303028-07:00,0.0,10.727827,10727.827 +19276,2025-03-09T10:17:21.024026-07:00,0.0,10.720998,10720.998 +19277,2025-03-09T10:17:31.752224-07:00,0.0,10.728198,10728.198 +19278,2025-03-09T10:17:42.483880-07:00,0.0,10.731656,10731.656 +19279,2025-03-09T10:17:53.213973-07:00,0.0,10.730093,10730.093 +19280,2025-03-09T10:18:03.934844-07:00,0.0,10.720871,10720.871 +19281,2025-03-09T10:18:14.658520-07:00,0.0,10.723676,10723.676 +19282,2025-03-09T10:18:25.385327-07:00,0.0,10.726807,10726.807 +19283,2025-03-09T10:18:36.116991-07:00,0.0,10.731664,10731.664 +19284,2025-03-09T10:18:46.842040-07:00,0.0,10.725049,10725.049 +19285,2025-03-09T10:18:57.572813-07:00,0.0,10.730773,10730.773 +19286,2025-03-09T10:19:08.310809-07:00,0.0,10.737996,10737.996 +19287,2025-03-09T10:19:19.034939-07:00,0.0,10.72413,10724.13 +19288,2025-03-09T10:19:29.770978-07:00,0.0,10.736039,10736.039 +19289,2025-03-09T10:19:40.501810-07:00,0.0,10.730832,10730.832 +19290,2025-03-09T10:19:51.223223-07:00,0.0,10.721413,10721.413 +19291,2025-03-09T10:20:01.954811-07:00,0.0,10.731588,10731.588 +19292,2025-03-09T10:20:12.684010-07:00,0.0,10.729199,10729.199 +19293,2025-03-09T10:20:23.422289-07:00,0.0,10.738279,10738.279 +19294,2025-03-09T10:20:34.149885-07:00,0.0,10.727596,10727.596 +19295,2025-03-09T10:20:44.882811-07:00,0.0,10.732926,10732.926 +19296,2025-03-09T10:20:55.616809-07:00,0.0,10.733998,10733.998 +19297,2025-03-09T10:21:17.082812-07:00,0.0,21.466003,21466.003 +19298,2025-03-09T10:21:27.813290-07:00,0.0,10.730478,10730.478 +19299,2025-03-09T10:21:38.535811-07:00,0.0,10.722521,10722.521 +19300,2025-03-09T10:21:49.263813-07:00,0.0,10.728002,10728.002 +19301,2025-03-09T10:21:59.997054-07:00,0.0,10.733241,10733.241 +19302,2025-03-09T10:22:10.724850-07:00,0.0,10.727796,10727.796 +19303,2025-03-09T10:22:20.343698-07:00,0.0,9.618848,9618.848 +19304,2025-03-09T10:22:21.458013-07:00,0.0,1.114315,1114.315 +19305,2025-03-09T10:22:32.191041-07:00,0.0,10.733028,10733.028 +19306,2025-03-09T10:22:42.911814-07:00,0.0,10.720773,10720.773 +19307,2025-03-09T10:22:53.640111-07:00,0.0,10.728297,10728.297 +19308,2025-03-09T10:23:04.367952-07:00,0.0,10.727841,10727.841 +19309,2025-03-09T10:23:15.107019-07:00,0.0,10.739067,10739.067 +19310,2025-03-09T10:23:25.835859-07:00,0.0,10.72884,10728.84 +19311,2025-03-09T10:23:36.564978-07:00,0.0,10.729119,10729.119 +19312,2025-03-09T10:23:47.286010-07:00,0.0,10.721032,10721.032 +19313,2025-03-09T10:23:58.013940-07:00,0.0,10.72793,10727.93 +19314,2025-03-09T10:24:08.744813-07:00,0.0,10.730873,10730.873 +19315,2025-03-09T10:24:19.472879-07:00,0.0,10.728066,10728.066 +19316,2025-03-09T10:24:30.200974-07:00,0.0,10.728095,10728.095 +19317,2025-03-09T10:24:40.939011-07:00,0.0,10.738037,10738.037 +19318,2025-03-09T10:24:51.657813-07:00,0.0,10.718802,10718.802 +19319,2025-03-09T10:25:02.392984-07:00,0.0,10.735171,10735.171 +19320,2025-03-09T10:25:13.119838-07:00,0.0,10.726854,10726.854 +19321,2025-03-09T10:25:23.849990-07:00,0.0,10.730152,10730.152 +19322,2025-03-09T10:25:34.581204-07:00,0.0,10.731214,10731.214 +19323,2025-03-09T10:25:45.301956-07:00,0.0,10.720752,10720.752 +19324,2025-03-09T10:25:56.034812-07:00,0.0,10.732856,10732.856 +19325,2025-03-09T10:26:06.764941-07:00,0.0,10.730129,10730.129 +19326,2025-03-09T10:26:17.492816-07:00,0.0,10.727875,10727.875 +19327,2025-03-09T10:26:28.214117-07:00,0.0,10.721301,10721.301 +19328,2025-03-09T10:26:38.941883-07:00,0.0,10.727766,10727.766 +19329,2025-03-09T10:26:49.673992-07:00,0.0,10.732109,10732.109 +19330,2025-03-09T10:27:00.398839-07:00,0.0,10.724847,10724.847 +19331,2025-03-09T10:27:11.135806-07:00,0.0,10.736967,10736.967 +19332,2025-03-09T10:27:21.863809-07:00,0.0,10.728003,10728.003 +19333,2025-03-09T10:27:32.592807-07:00,0.0,10.728998,10728.998 +19334,2025-03-09T10:27:43.320839-07:00,0.0,10.728032,10728.032 +19335,2025-03-09T10:27:54.056012-07:00,0.0,10.735173,10735.173 +19336,2025-03-09T10:28:04.781880-07:00,0.0,10.725868,10725.868 +19337,2025-03-09T10:28:15.508816-07:00,0.0,10.726936,10726.936 +19338,2025-03-09T10:28:26.233009-07:00,0.0,10.724193,10724.193 +19339,2025-03-09T10:28:36.964811-07:00,0.0,10.731802,10731.802 +19340,2025-03-09T10:28:47.694813-07:00,0.0,10.730002,10730.002 +19341,2025-03-09T10:28:58.417186-07:00,0.0,10.722373,10722.373 +19342,2025-03-09T10:29:09.141810-07:00,0.0,10.724624,10724.624 +19343,2025-03-09T10:29:19.866819-07:00,0.0,10.725009,10725.009 +19344,2025-03-09T10:29:30.584813-07:00,0.0,10.717994,10717.994 +19345,2025-03-09T10:29:41.307019-07:00,0.0,10.722206,10722.206 +19346,2025-03-09T10:29:52.035875-07:00,0.0,10.728856,10728.856 +19347,2025-03-09T10:30:02.751082-07:00,0.0,10.715207,10715.207 +19348,2025-03-09T10:30:13.481015-07:00,0.0,10.729933,10729.933 +19349,2025-03-09T10:30:24.197615-07:00,0.0,10.7166,10716.6 +19350,2025-03-09T10:30:33.150431-07:00,0.0,8.952816,8952.816 +19351,2025-03-09T10:30:34.926846-07:00,0.0,1.776415,1776.415 +19352,2025-03-09T10:30:45.644981-07:00,0.0,10.718135,10718.135 +19353,2025-03-09T10:30:56.372304-07:00,0.0,10.727323,10727.323 +19354,2025-03-09T10:31:07.093887-07:00,0.0,10.721583,10721.583 +19355,2025-03-09T10:31:17.813922-07:00,0.0,10.720035,10720.035 +19356,2025-03-09T10:31:28.536815-07:00,0.0,10.722893,10722.893 +19357,2025-03-09T10:31:39.264811-07:00,0.0,10.727996,10727.996 +19358,2025-03-09T10:31:49.995175-07:00,0.0,10.730364,10730.364 +19359,2025-03-09T10:32:00.719966-07:00,0.0,10.724791,10724.791 +19360,2025-03-09T10:32:11.439813-07:00,0.0,10.719847,10719.847 +19361,2025-03-09T10:32:22.164998-07:00,0.0,10.725185,10725.185 +19362,2025-03-09T10:32:32.892020-07:00,0.0,10.727022,10727.022 +19363,2025-03-09T10:32:43.612043-07:00,0.0,10.720023,10720.023 +19364,2025-03-09T10:32:54.339811-07:00,0.0,10.727768,10727.768 +19365,2025-03-09T10:33:05.066007-07:00,0.0,10.726196,10726.196 +19366,2025-03-09T10:33:15.792982-07:00,0.0,10.726975,10726.975 +19367,2025-03-09T10:33:26.513842-07:00,0.0,10.72086,10720.86 +19368,2025-03-09T10:33:37.236150-07:00,0.0,10.722308,10722.308 +19369,2025-03-09T10:33:47.963103-07:00,0.0,10.726953,10726.953 +19370,2025-03-09T10:33:58.673852-07:00,0.0,10.710749,10710.749 +19371,2025-03-09T10:34:09.395547-07:00,0.0,10.721695,10721.695 +19372,2025-03-09T10:34:20.122906-07:00,0.0,10.727359,10727.359 +19373,2025-03-09T10:34:30.846910-07:00,0.0,10.724004,10724.004 +19374,2025-03-09T10:34:41.564810-07:00,0.0,10.7179,10717.9 +19375,2025-03-09T10:34:52.291809-07:00,0.0,10.726999,10726.999 +19376,2025-03-09T10:35:03.013080-07:00,0.0,10.721271,10721.271 +19377,2025-03-09T10:35:13.738882-07:00,0.0,10.725802,10725.802 +19378,2025-03-09T10:35:24.463993-07:00,0.0,10.725111,10725.111 +19379,2025-03-09T10:35:35.181864-07:00,0.0,10.717871,10717.871 +19380,2025-03-09T10:35:45.908016-07:00,0.0,10.726152,10726.152 +19381,2025-03-09T10:35:56.628004-07:00,0.0,10.719988,10719.988 +19382,2025-03-09T10:36:07.348664-07:00,0.0,10.72066,10720.66 +19383,2025-03-09T10:36:18.073011-07:00,0.0,10.724347,10724.347 +19384,2025-03-09T10:36:28.797993-07:00,0.0,10.724982,10724.982 +19385,2025-03-09T10:36:39.532413-07:00,0.0,10.73442,10734.42 +19386,2025-03-09T10:36:50.249316-07:00,0.0,10.716903,10716.903 +19387,2025-03-09T10:37:00.980508-07:00,0.0,10.731192,10731.192 +19388,2025-03-09T10:37:11.700819-07:00,0.0,10.720311,10720.311 +19389,2025-03-09T10:37:22.417106-07:00,0.0,10.716287,10716.287 +19390,2025-03-09T10:37:33.141899-07:00,0.0,10.724793,10724.793 +19391,2025-03-09T10:37:43.865810-07:00,0.0,10.723911,10723.911 +19392,2025-03-09T10:37:54.585814-07:00,0.0,10.720004,10720.004 +19393,2025-03-09T10:38:05.314408-07:00,0.0,10.728594,10728.594 +19394,2025-03-09T10:38:16.036812-07:00,0.0,10.722404,10722.404 +19395,2025-03-09T10:38:26.755280-07:00,0.0,10.718468,10718.468 +19396,2025-03-09T10:38:37.483016-07:00,0.0,10.727736,10727.736 +19397,2025-03-09T10:38:48.209018-07:00,0.0,10.726002,10726.002 +19398,2025-03-09T10:38:58.929958-07:00,0.0,10.72094,10720.94 +19399,2025-03-09T10:39:09.653976-07:00,0.0,10.724018,10724.018 +19400,2025-03-09T10:39:20.378806-07:00,0.0,10.72483,10724.83 +19401,2025-03-09T10:39:31.097952-07:00,0.0,10.719146,10719.146 +19402,2025-03-09T10:39:41.823813-07:00,0.0,10.725861,10725.861 +19403,2025-03-09T10:39:52.545018-07:00,0.0,10.721205,10721.205 +19404,2025-03-09T10:40:03.261811-07:00,0.0,10.716793,10716.793 +19405,2025-03-09T10:40:13.992825-07:00,0.0,10.731014,10731.014 +19406,2025-03-09T10:40:24.715033-07:00,0.0,10.722208,10722.208 +19407,2025-03-09T10:40:35.441812-07:00,0.0,10.726779,10726.779 +19408,2025-03-09T10:40:46.162919-07:00,0.0,10.721107,10721.107 +19409,2025-03-09T10:40:56.888009-07:00,0.0,10.72509,10725.09 +19410,2025-03-09T10:41:07.609627-07:00,0.0,10.721618,10721.618 +19411,2025-03-09T10:41:18.333816-07:00,0.0,10.724189,10724.189 +19412,2025-03-09T10:41:29.062886-07:00,0.0,10.72907,10729.07 +19413,2025-03-09T10:41:39.789812-07:00,0.0,10.726926,10726.926 +19414,2025-03-09T10:41:50.508957-07:00,0.0,10.719145,10719.145 +19415,2025-03-09T10:42:01.244981-07:00,0.0,10.736024,10736.024 +19416,2025-03-09T10:42:11.968876-07:00,0.0,10.723895,10723.895 +19417,2025-03-09T10:42:22.697305-07:00,0.0,10.728429,10728.429 +19418,2025-03-09T10:42:33.422021-07:00,0.0,10.724716,10724.716 +19419,2025-03-09T10:42:44.148814-07:00,0.0,10.726793,10726.793 +19420,2025-03-09T10:42:54.873960-07:00,0.0,10.725146,10725.146 +19421,2025-03-09T10:43:05.596135-07:00,0.0,10.722175,10722.175 +19422,2025-03-09T10:43:16.327989-07:00,0.0,10.731854,10731.854 +19423,2025-03-09T10:43:27.046813-07:00,0.0,10.718824,10718.824 +19424,2025-03-09T10:43:37.774202-07:00,0.0,10.727389,10727.389 +19425,2025-03-09T10:43:48.507840-07:00,0.0,10.733638,10733.638 +19426,2025-03-09T10:43:59.226990-07:00,0.0,10.71915,10719.15 +19427,2025-03-09T10:44:09.958862-07:00,0.0,10.731872,10731.872 +19428,2025-03-09T10:44:20.683855-07:00,0.0,10.724993,10724.993 +19429,2025-03-09T10:44:31.415814-07:00,0.0,10.731959,10731.959 +19430,2025-03-09T10:44:42.143941-07:00,0.0,10.728127,10728.127 +19431,2025-03-09T10:44:52.872810-07:00,0.0,10.728869,10728.869 +19432,2025-03-09T10:45:03.594384-07:00,0.0,10.721574,10721.574 +19433,2025-03-09T10:45:14.323812-07:00,0.0,10.729428,10729.428 +19434,2025-03-09T10:45:25.050821-07:00,0.0,10.727009,10727.009 +19435,2025-03-09T10:45:35.783017-07:00,0.0,10.732196,10732.196 +19436,2025-03-09T10:45:46.505872-07:00,0.0,10.722855,10722.855 +19437,2025-03-09T10:45:57.235049-07:00,0.0,10.729177,10729.177 +19438,2025-03-09T10:46:07.961816-07:00,0.0,10.726767,10726.767 +19439,2025-03-09T10:46:18.694837-07:00,0.0,10.733021,10733.021 +19440,2025-03-09T10:46:29.420087-07:00,0.0,10.72525,10725.25 +19441,2025-03-09T10:46:40.148029-07:00,0.0,10.727942,10727.942 +19442,2025-03-09T10:46:50.876005-07:00,0.0,10.727976,10727.976 +19443,2025-03-09T10:47:01.603812-07:00,0.0,10.727807,10727.807 +19444,2025-03-09T10:47:12.326024-07:00,0.0,10.722212,10722.212 +19445,2025-03-09T10:47:23.050862-07:00,0.0,10.724838,10724.838 +19446,2025-03-09T10:47:33.782892-07:00,0.0,10.73203,10732.03 +19447,2025-03-09T10:47:44.516999-07:00,0.0,10.734107,10734.107 +19448,2025-03-09T10:47:55.242953-07:00,0.0,10.725954,10725.954 +19449,2025-03-09T10:48:05.967883-07:00,0.0,10.72493,10724.93 +19450,2025-03-09T10:48:16.701811-07:00,0.0,10.733928,10733.928 +19451,2025-03-09T10:48:27.430870-07:00,0.0,10.729059,10729.059 +19452,2025-03-09T10:48:38.158815-07:00,0.0,10.727945,10727.945 +19453,2025-03-09T10:48:48.886014-07:00,0.0,10.727199,10727.199 +19454,2025-03-09T10:48:59.617921-07:00,0.0,10.731907,10731.907 +19455,2025-03-09T10:49:10.343111-07:00,0.0,10.72519,10725.19 +19456,2025-03-09T10:49:21.072019-07:00,0.0,10.728908,10728.908 +19457,2025-03-09T10:49:31.792845-07:00,0.0,10.720826,10720.826 +19458,2025-03-09T10:49:42.526679-07:00,0.0,10.733834,10733.834 +19459,2025-03-09T10:49:53.253876-07:00,0.0,10.727197,10727.197 +19460,2025-03-09T10:50:03.977813-07:00,0.0,10.723937,10723.937 +19461,2025-03-09T10:50:14.710986-07:00,0.0,10.733173,10733.173 +19462,2025-03-09T10:50:25.440811-07:00,0.0,10.729825,10729.825 +19463,2025-03-09T10:50:36.168013-07:00,0.0,10.727202,10727.202 +19464,2025-03-09T10:50:46.890841-07:00,0.0,10.722828,10722.828 +19465,2025-03-09T10:50:57.624390-07:00,0.0,10.733549,10733.549 +19466,2025-03-09T10:51:08.347012-07:00,0.0,10.722622,10722.622 +19467,2025-03-09T10:51:19.078001-07:00,0.0,10.730989,10730.989 +19468,2025-03-09T10:51:29.811811-07:00,0.0,10.73381,10733.81 +19469,2025-03-09T10:51:40.540205-07:00,0.0,10.728394,10728.394 +19470,2025-03-09T10:51:51.270443-07:00,0.0,10.730238,10730.238 +19471,2025-03-09T10:52:01.998887-07:00,0.0,10.728444,10728.444 +19472,2025-03-09T10:52:12.718850-07:00,0.0,10.719963,10719.963 +19473,2025-03-09T10:52:23.455397-07:00,0.0,10.736547,10736.547 +19474,2025-03-09T10:52:34.192645-07:00,0.0,10.737248,10737.248 +19475,2025-03-09T10:52:44.918389-07:00,0.0,10.725744,10725.744 +19476,2025-03-09T10:52:55.649392-07:00,0.0,10.731003,10731.003 +19477,2025-03-09T10:53:06.378556-07:00,0.0,10.729164,10729.164 +19478,2025-03-09T10:53:17.102457-07:00,0.0,10.723901,10723.901 +19479,2025-03-09T10:53:27.831583-07:00,0.0,10.729126,10729.126 +19480,2025-03-09T10:53:38.558465-07:00,0.0,10.726882,10726.882 +19481,2025-03-09T10:53:49.286391-07:00,0.0,10.727926,10727.926 +19482,2025-03-09T10:54:00.021545-07:00,0.0,10.735154,10735.154 +19483,2025-03-09T10:54:10.751730-07:00,0.0,10.730185,10730.185 +19484,2025-03-09T10:54:21.471457-07:00,0.0,10.719727,10719.727 +19485,2025-03-09T10:54:32.208140-07:00,0.0,10.736683,10736.683 +19486,2025-03-09T10:54:42.936682-07:00,0.0,10.728542,10728.542 +19487,2025-03-09T10:54:53.657394-07:00,0.0,10.720712,10720.712 +19488,2025-03-09T10:55:04.391715-07:00,0.0,10.734321,10734.321 +19489,2025-03-09T10:55:15.111790-07:00,0.0,10.720075,10720.075 +19490,2025-03-09T10:55:25.845340-07:00,0.0,10.73355,10733.55 +19491,2025-03-09T10:55:36.573532-07:00,0.0,10.728192,10728.192 +19492,2025-03-09T10:55:47.304390-07:00,0.0,10.730858,10730.858 +19493,2025-03-09T10:55:58.025587-07:00,0.0,10.721197,10721.197 +19494,2025-03-09T10:56:08.766624-07:00,0.0,10.741037,10741.037 +19495,2025-03-09T10:56:19.492424-07:00,0.0,10.7258,10725.8 +19496,2025-03-09T10:56:30.216579-07:00,0.0,10.724155,10724.155 +19497,2025-03-09T10:56:40.946813-07:00,0.0,10.730234,10730.234 +19498,2025-03-09T10:56:51.671384-07:00,0.0,10.724571,10724.571 +19499,2025-03-09T10:57:02.396687-07:00,0.0,10.725303,10725.303 +19500,2025-03-09T10:57:13.129509-07:00,0.0,10.732822,10732.822 +19501,2025-03-09T10:57:23.857571-07:00,0.0,10.728062,10728.062 +19502,2025-03-09T10:57:34.584412-07:00,0.0,10.726841,10726.841 +19503,2025-03-09T10:57:45.320275-07:00,0.0,10.735863,10735.863 +19504,2025-03-09T10:57:56.046561-07:00,0.0,10.726286,10726.286 +19505,2025-03-09T10:58:06.779425-07:00,0.0,10.732864,10732.864 +19506,2025-03-09T10:58:17.503823-07:00,0.0,10.724398,10724.398 +19507,2025-03-09T10:58:28.232792-07:00,0.0,10.728969,10728.969 +19508,2025-03-09T10:58:38.955391-07:00,0.0,10.722599,10722.599 +19509,2025-03-09T10:58:49.681685-07:00,0.0,10.726294,10726.294 +19510,2025-03-09T10:59:00.412539-07:00,0.0,10.730854,10730.854 +19511,2025-03-09T10:59:11.138930-07:00,0.0,10.726391,10726.391 +19512,2025-03-09T10:59:21.871789-07:00,0.0,10.732859,10732.859 +19513,2025-03-09T10:59:32.601389-07:00,0.0,10.7296,10729.6 +19514,2025-03-09T10:59:43.328153-07:00,0.0,10.726764,10726.764 +19515,2025-03-09T10:59:54.048392-07:00,0.0,10.720239,10720.239 +19516,2025-03-09T11:00:04.785421-07:00,0.0,10.737029,10737.029 +19517,2025-03-09T11:00:15.505700-07:00,0.0,10.720279,10720.279 +19518,2025-03-09T11:00:26.237807-07:00,0.0,10.732107,10732.107 +19519,2025-03-09T11:00:36.964465-07:00,0.0,10.726658,10726.658 +19520,2025-03-09T11:00:47.690582-07:00,0.0,10.726117,10726.117 +19521,2025-03-09T11:00:58.414593-07:00,0.0,10.724011,10724.011 +19522,2025-03-09T11:01:09.137693-07:00,0.0,10.7231,10723.1 +19523,2025-03-09T11:01:19.862457-07:00,0.0,10.724764,10724.764 +19524,2025-03-09T11:01:30.597392-07:00,0.0,10.734935,10734.935 +19525,2025-03-09T11:01:41.315603-07:00,0.0,10.718211,10718.211 +19526,2025-03-09T11:01:52.048462-07:00,0.0,10.732859,10732.859 +19527,2025-03-09T11:02:02.771916-07:00,0.0,10.723454,10723.454 +19528,2025-03-09T11:02:13.499676-07:00,0.0,10.72776,10727.76 +19529,2025-03-09T11:02:24.228392-07:00,0.0,10.728716,10728.716 +19530,2025-03-09T11:02:34.960418-07:00,0.0,10.732026,10732.026 +19531,2025-03-09T11:02:45.681636-07:00,0.0,10.721218,10721.218 +19532,2025-03-09T11:02:56.407839-07:00,0.0,10.726203,10726.203 +19533,2025-03-09T11:03:07.137392-07:00,0.0,10.729553,10729.553 +19534,2025-03-09T11:03:17.866600-07:00,0.0,10.729208,10729.208 +19535,2025-03-09T11:03:28.590389-07:00,0.0,10.723789,10723.789 +19536,2025-03-09T11:03:39.317570-07:00,0.0,10.727181,10727.181 +19537,2025-03-09T11:03:50.046779-07:00,0.0,10.729209,10729.209 +19538,2025-03-09T11:04:00.779415-07:00,0.0,10.732636,10732.636 +19539,2025-03-09T11:04:11.501391-07:00,0.0,10.721976,10721.976 +19540,2025-03-09T11:04:22.226733-07:00,0.0,10.725342,10725.342 +19541,2025-03-09T11:04:32.957387-07:00,0.0,10.730654,10730.654 +19542,2025-03-09T11:04:43.679716-07:00,0.0,10.722329,10722.329 +19543,2025-03-09T11:04:54.406741-07:00,0.0,10.727025,10727.025 +19544,2025-03-09T11:05:05.140392-07:00,0.0,10.733651,10733.651 +19545,2025-03-09T11:05:15.874592-07:00,0.0,10.7342,10734.2 +19546,2025-03-09T11:05:26.601389-07:00,0.0,10.726797,10726.797 +19547,2025-03-09T11:05:37.329617-07:00,0.0,10.728228,10728.228 +19548,2025-03-09T11:05:48.052394-07:00,0.0,10.722777,10722.777 +19549,2025-03-09T11:05:58.781500-07:00,0.0,10.729106,10729.106 +19550,2025-03-09T11:06:09.511475-07:00,0.0,10.729975,10729.975 +19551,2025-03-09T11:06:20.237392-07:00,0.0,10.725917,10725.917 +19552,2025-03-09T11:06:30.971544-07:00,0.0,10.734152,10734.152 +19553,2025-03-09T11:06:41.695361-07:00,0.0,10.723817,10723.817 +19554,2025-03-09T11:06:52.420387-07:00,0.0,10.725026,10725.026 +19555,2025-03-09T11:07:03.151017-07:00,0.0,10.73063,10730.63 +19556,2025-03-09T11:07:13.878423-07:00,0.0,10.727406,10727.406 +19557,2025-03-09T11:07:24.603589-07:00,0.0,10.725166,10725.166 +19558,2025-03-09T11:07:35.340137-07:00,0.0,10.736548,10736.548 +19559,2025-03-09T11:07:46.063394-07:00,0.0,10.723257,10723.257 +19560,2025-03-09T11:07:56.789682-07:00,0.0,10.726288,10726.288 +19561,2025-03-09T11:08:07.518416-07:00,0.0,10.728734,10728.734 +19562,2025-03-09T11:08:18.243393-07:00,0.0,10.724977,10724.977 +19563,2025-03-09T11:08:28.978576-07:00,0.0,10.735183,10735.183 +19564,2025-03-09T11:08:39.693739-07:00,0.0,10.715163,10715.163 +19565,2025-03-09T11:08:50.427461-07:00,0.0,10.733722,10733.722 +19566,2025-03-09T11:09:01.149690-07:00,0.0,10.722229,10722.229 +19567,2025-03-09T11:09:11.869602-07:00,0.0,10.719912,10719.912 +19568,2025-03-09T11:09:22.593386-07:00,0.0,10.723784,10723.784 +19569,2025-03-09T11:09:33.328590-07:00,0.0,10.735204,10735.204 +19570,2025-03-09T11:09:44.046573-07:00,0.0,10.717983,10717.983 +19571,2025-03-09T11:09:54.775388-07:00,0.0,10.728815,10728.815 +19572,2025-03-09T11:10:05.502804-07:00,0.0,10.727416,10727.416 +19573,2025-03-09T11:10:16.227389-07:00,0.0,10.724585,10724.585 +19574,2025-03-09T11:10:26.953390-07:00,0.0,10.726001,10726.001 +19575,2025-03-09T11:10:37.679337-07:00,0.0,10.725947,10725.947 +19576,2025-03-09T11:10:48.402459-07:00,0.0,10.723122,10723.122 +19577,2025-03-09T11:10:59.129561-07:00,0.0,10.727102,10727.102 +19578,2025-03-09T11:11:09.860394-07:00,0.0,10.730833,10730.833 +19579,2025-03-09T11:11:20.582392-07:00,0.0,10.721998,10721.998 +19580,2025-03-09T11:11:31.302391-07:00,0.0,10.719999,10719.999 +19581,2025-03-09T11:11:42.032679-07:00,0.0,10.730288,10730.288 +19582,2025-03-09T11:11:52.758585-07:00,0.0,10.725906,10725.906 +19583,2025-03-09T11:12:03.485931-07:00,0.0,10.727346,10727.346 +19584,2025-03-09T11:12:14.211624-07:00,0.0,10.725693,10725.693 +19585,2025-03-09T11:12:24.933508-07:00,0.0,10.721884,10721.884 +19586,2025-03-09T11:12:35.659594-07:00,0.0,10.726086,10726.086 +19587,2025-03-09T11:12:46.375485-07:00,0.0,10.715891,10715.891 +19588,2025-03-09T11:12:57.103384-07:00,0.0,10.727899,10727.899 +19589,2025-03-09T11:13:07.832698-07:00,0.0,10.729314,10729.314 +19590,2025-03-09T11:13:18.556594-07:00,0.0,10.723896,10723.896 +19591,2025-03-09T11:13:29.273390-07:00,0.0,10.716796,10716.796 +19592,2025-03-09T11:13:39.999402-07:00,0.0,10.726012,10726.012 +19593,2025-03-09T11:13:50.727568-07:00,0.0,10.728166,10728.166 +19594,2025-03-09T11:14:01.449422-07:00,0.0,10.721854,10721.854 +19595,2025-03-09T11:14:12.169576-07:00,0.0,10.720154,10720.154 +19596,2025-03-09T11:14:22.887392-07:00,0.0,10.717816,10717.816 +19597,2025-03-09T11:14:33.615940-07:00,0.0,10.728548,10728.548 +19598,2025-03-09T11:14:44.341390-07:00,0.0,10.72545,10725.45 +19599,2025-03-09T11:14:55.059593-07:00,0.0,10.718203,10718.203 +19600,2025-03-09T11:15:05.790595-07:00,0.0,10.731002,10731.002 +19601,2025-03-09T11:15:16.515893-07:00,0.0,10.725298,10725.298 +19602,2025-03-09T11:15:27.238410-07:00,0.0,10.722517,10722.517 +19603,2025-03-09T11:15:37.955637-07:00,0.0,10.717227,10717.227 +19604,2025-03-09T11:15:48.682388-07:00,0.0,10.726751,10726.751 +19605,2025-03-09T11:15:59.406390-07:00,0.0,10.724002,10724.002 +19606,2025-03-09T11:16:10.133574-07:00,0.0,10.727184,10727.184 +19607,2025-03-09T11:16:20.856328-07:00,0.0,10.722754,10722.754 +19608,2025-03-09T11:16:31.582555-07:00,0.0,10.726227,10726.227 +19609,2025-03-09T11:16:42.308391-07:00,0.0,10.725836,10725.836 +19610,2025-03-09T11:16:53.026781-07:00,0.0,10.71839,10718.39 +19611,2025-03-09T11:17:03.744390-07:00,0.0,10.717609,10717.609 +19612,2025-03-09T11:17:14.474214-07:00,0.0,10.729824,10729.824 +19613,2025-03-09T11:17:25.191391-07:00,0.0,10.717177,10717.177 +19614,2025-03-09T11:17:35.916762-07:00,0.0,10.725371,10725.371 +19615,2025-03-09T11:17:46.648537-07:00,0.0,10.731775,10731.775 +19616,2025-03-09T11:17:57.370480-07:00,0.0,10.721943,10721.943 +19617,2025-03-09T11:18:08.099459-07:00,0.0,10.728979,10728.979 +19618,2025-03-09T11:18:18.819390-07:00,0.0,10.719931,10719.931 +19619,2025-03-09T11:18:29.541956-07:00,0.0,10.722566,10722.566 +19620,2025-03-09T11:18:40.261479-07:00,0.0,10.719523,10719.523 +19621,2025-03-09T11:18:50.984721-07:00,0.0,10.723242,10723.242 +19622,2025-03-09T11:19:01.703626-07:00,0.0,10.718905,10718.905 +19623,2025-03-09T11:19:12.428873-07:00,0.0,10.725247,10725.247 +19624,2025-03-09T11:19:23.150540-07:00,0.0,10.721667,10721.667 +19625,2025-03-09T11:19:33.869676-07:00,0.0,10.719136,10719.136 +19626,2025-03-09T11:19:44.584390-07:00,0.0,10.714714,10714.714 +19627,2025-03-09T11:19:55.309542-07:00,0.0,10.725152,10725.152 +19628,2025-03-09T11:20:06.025573-07:00,0.0,10.716031,10716.031 +19629,2025-03-09T11:20:16.748982-07:00,0.0,10.723409,10723.409 +19630,2025-03-09T11:20:27.469390-07:00,0.0,10.720408,10720.408 +19631,2025-03-09T11:20:38.195386-07:00,0.0,10.725996,10725.996 +19632,2025-03-09T11:20:48.912569-07:00,0.0,10.717183,10717.183 +19633,2025-03-09T11:20:59.637679-07:00,0.0,10.72511,10725.11 +19634,2025-03-09T11:21:10.355417-07:00,0.0,10.717738,10717.738 +19635,2025-03-09T11:21:21.075391-07:00,0.0,10.719974,10719.974 +19636,2025-03-09T11:21:31.809177-07:00,0.0,10.733786,10733.786 +19637,2025-03-09T11:21:42.528586-07:00,0.0,10.719409,10719.409 +19638,2025-03-09T11:21:53.248414-07:00,0.0,10.719828,10719.828 +19639,2025-03-09T11:22:03.969391-07:00,0.0,10.720977,10720.977 +19640,2025-03-09T11:22:14.696593-07:00,0.0,10.727202,10727.202 +19641,2025-03-09T11:22:25.412387-07:00,0.0,10.715794,10715.794 +19642,2025-03-09T11:22:36.142390-07:00,0.0,10.730003,10730.003 +19643,2025-03-09T11:22:46.863505-07:00,0.0,10.721115,10721.115 +19644,2025-03-09T11:22:57.590563-07:00,0.0,10.727058,10727.058 +19645,2025-03-09T11:23:08.313565-07:00,0.0,10.723002,10723.002 +19646,2025-03-09T11:23:19.039521-07:00,0.0,10.725956,10725.956 +19647,2025-03-09T11:23:29.764410-07:00,0.0,10.724889,10724.889 +19648,2025-03-09T11:23:40.483388-07:00,0.0,10.718978,10718.978 +19649,2025-03-09T11:23:51.203612-07:00,0.0,10.720224,10720.224 +19650,2025-03-09T11:24:01.925386-07:00,0.0,10.721774,10721.774 +19651,2025-03-09T11:24:12.653562-07:00,0.0,10.728176,10728.176 +19652,2025-03-09T11:24:23.375420-07:00,0.0,10.721858,10721.858 +19653,2025-03-09T11:24:34.089768-07:00,0.0,10.714348,10714.348 +19654,2025-03-09T11:24:44.819464-07:00,0.0,10.729696,10729.696 +19655,2025-03-09T11:24:55.544606-07:00,0.0,10.725142,10725.142 +19656,2025-03-09T11:25:06.263391-07:00,0.0,10.718785,10718.785 +19657,2025-03-09T11:25:16.995390-07:00,0.0,10.731999,10731.999 +19658,2025-03-09T11:25:27.712387-07:00,0.0,10.716997,10716.997 +19659,2025-03-09T11:25:38.444616-07:00,0.0,10.732229,10732.229 +19660,2025-03-09T11:25:49.174016-07:00,0.0,10.7294,10729.4 +19661,2025-03-09T11:25:59.887392-07:00,0.0,10.713376,10713.376 +19662,2025-03-09T11:26:10.612558-07:00,0.0,10.725166,10725.166 +19663,2025-03-09T11:26:21.342420-07:00,0.0,10.729862,10729.862 +19664,2025-03-09T11:26:32.065391-07:00,0.0,10.722971,10722.971 +19665,2025-03-09T11:26:42.792413-07:00,0.0,10.727022,10727.022 +19666,2025-03-09T11:26:53.516391-07:00,0.0,10.723978,10723.978 +19667,2025-03-09T11:27:04.240096-07:00,0.0,10.723705,10723.705 +19668,2025-03-09T11:27:14.966391-07:00,0.0,10.726295,10726.295 +19669,2025-03-09T11:27:25.695461-07:00,0.0,10.72907,10729.07 +19670,2025-03-09T11:27:36.417450-07:00,0.0,10.721989,10721.989 +19671,2025-03-09T11:27:47.149889-07:00,0.0,10.732439,10732.439 +19672,2025-03-09T11:27:57.877593-07:00,0.0,10.727704,10727.704 +19673,2025-03-09T11:28:08.599391-07:00,0.0,10.721798,10721.798 +19674,2025-03-09T11:28:19.323796-07:00,0.0,10.724405,10724.405 +19675,2025-03-09T11:28:30.048391-07:00,0.0,10.724595,10724.595 +19676,2025-03-09T11:28:40.775403-07:00,0.0,10.727012,10727.012 +19677,2025-03-09T11:28:51.506559-07:00,0.0,10.731156,10731.156 +19678,2025-03-09T11:29:02.235466-07:00,0.0,10.728907,10728.907 +19679,2025-03-09T11:29:12.960601-07:00,0.0,10.725135,10725.135 +19680,2025-03-09T11:29:23.684663-07:00,0.0,10.724062,10724.062 +19681,2025-03-09T11:29:34.411916-07:00,0.0,10.727253,10727.253 +19682,2025-03-09T11:29:45.136534-07:00,0.0,10.724618,10724.618 +19683,2025-03-09T11:29:55.868384-07:00,0.0,10.73185,10731.85 +19684,2025-03-09T11:30:06.596566-07:00,0.0,10.728182,10728.182 +19685,2025-03-09T11:30:17.317390-07:00,0.0,10.720824,10720.824 +19686,2025-03-09T11:30:28.046574-07:00,0.0,10.729184,10729.184 +19687,2025-03-09T11:30:38.768456-07:00,0.0,10.721882,10721.882 +19688,2025-03-09T11:30:49.493467-07:00,0.0,10.725011,10725.011 +19689,2025-03-09T11:31:00.218769-07:00,0.0,10.725302,10725.302 +19690,2025-03-09T11:31:10.948453-07:00,0.0,10.729684,10729.684 +19691,2025-03-09T11:31:21.677221-07:00,0.0,10.728768,10728.768 +19692,2025-03-09T11:31:32.403755-07:00,0.0,10.726534,10726.534 +19693,2025-03-09T11:31:43.126391-07:00,0.0,10.722636,10722.636 +19694,2025-03-09T11:31:53.859438-07:00,0.0,10.733047,10733.047 +19695,2025-03-09T11:32:04.574802-07:00,0.0,10.715364,10715.364 +19696,2025-03-09T11:32:15.306573-07:00,0.0,10.731771,10731.771 +19697,2025-03-09T11:32:26.038421-07:00,0.0,10.731848,10731.848 +19698,2025-03-09T11:32:36.767524-07:00,0.0,10.729103,10729.103 +19699,2025-03-09T11:32:47.495580-07:00,0.0,10.728056,10728.056 +19700,2025-03-09T11:32:58.217393-07:00,0.0,10.721813,10721.813 +19701,2025-03-09T11:33:08.945572-07:00,0.0,10.728179,10728.179 +19702,2025-03-09T11:33:19.671455-07:00,0.0,10.725883,10725.883 +19703,2025-03-09T11:33:30.396387-07:00,0.0,10.724932,10724.932 +19704,2025-03-09T11:33:41.120384-07:00,0.0,10.723997,10723.997 +19705,2025-03-09T11:33:51.853447-07:00,0.0,10.733063,10733.063 +19706,2025-03-09T11:34:02.577783-07:00,0.0,10.724336,10724.336 +19707,2025-03-09T11:34:13.297390-07:00,0.0,10.719607,10719.607 +19708,2025-03-09T11:34:24.025543-07:00,0.0,10.728153,10728.153 +19709,2025-03-09T11:34:34.751590-07:00,0.0,10.726047,10726.047 +19710,2025-03-09T11:34:45.467572-07:00,0.0,10.715982,10715.982 +19711,2025-03-09T11:34:56.194388-07:00,0.0,10.726816,10726.816 +19712,2025-03-09T11:35:06.914460-07:00,0.0,10.720072,10720.072 +19713,2025-03-09T11:35:17.641464-07:00,0.0,10.727004,10727.004 +19714,2025-03-09T11:35:28.364688-07:00,0.0,10.723224,10723.224 +19715,2025-03-09T11:35:39.084391-07:00,0.0,10.719703,10719.703 +19716,2025-03-09T11:35:49.814385-07:00,0.0,10.729994,10729.994 +19717,2025-03-09T11:36:00.535438-07:00,0.0,10.721053,10721.053 +19718,2025-03-09T11:36:11.263394-07:00,0.0,10.727956,10727.956 +19719,2025-03-09T11:36:21.982611-07:00,0.0,10.719217,10719.217 +19720,2025-03-09T11:36:32.705530-07:00,0.0,10.722919,10722.919 +19721,2025-03-09T11:36:43.432707-07:00,0.0,10.727177,10727.177 +19722,2025-03-09T11:36:54.149394-07:00,0.0,10.716687,10716.687 +19723,2025-03-09T11:37:04.874558-07:00,0.0,10.725164,10725.164 +19724,2025-03-09T11:37:15.601389-07:00,0.0,10.726831,10726.831 +19725,2025-03-09T11:37:26.329508-07:00,0.0,10.728119,10728.119 +19726,2025-03-09T11:37:37.055486-07:00,0.0,10.725978,10725.978 +19727,2025-03-09T11:37:47.782397-07:00,0.0,10.726911,10726.911 +19728,2025-03-09T11:37:58.499391-07:00,0.0,10.716994,10716.994 +19729,2025-03-09T11:38:09.224421-07:00,0.0,10.72503,10725.03 +19730,2025-03-09T11:38:19.945614-07:00,0.0,10.721193,10721.193 +19731,2025-03-09T11:38:30.677506-07:00,0.0,10.731892,10731.892 +19732,2025-03-09T11:38:52.119398-07:00,0.0,21.441892,21441.892 +19733,2025-03-09T11:39:02.840637-07:00,0.0,10.721239,10721.239 +19734,2025-03-09T11:39:13.562425-07:00,0.0,10.721788,10721.788 +19735,2025-03-09T11:39:24.283573-07:00,0.0,10.721148,10721.148 +19736,2025-03-09T11:39:35.006387-07:00,0.0,10.722814,10722.814 +19737,2025-03-09T11:39:45.735392-07:00,0.0,10.729005,10729.005 +19738,2025-03-09T11:39:56.455388-07:00,0.0,10.719996,10719.996 +19739,2025-03-09T11:40:07.184564-07:00,0.0,10.729176,10729.176 +19740,2025-03-09T11:40:17.915936-07:00,0.0,10.731372,10731.372 +19741,2025-03-09T11:40:28.637388-07:00,0.0,10.721452,10721.452 +19742,2025-03-09T11:40:39.365570-07:00,0.0,10.728182,10728.182 +19743,2025-03-09T11:40:50.091594-07:00,0.0,10.726024,10726.024 +19744,2025-03-09T11:41:00.812593-07:00,0.0,10.720999,10720.999 +19745,2025-03-09T11:41:11.542389-07:00,0.0,10.729796,10729.796 +19746,2025-03-09T11:41:22.271717-07:00,0.0,10.729328,10729.328 +19747,2025-03-09T11:41:32.994724-07:00,0.0,10.723007,10723.007 +19748,2025-03-09T11:41:43.710447-07:00,0.0,10.715723,10715.723 +19749,2025-03-09T11:41:54.437381-07:00,0.0,10.726934,10726.934 +19750,2025-03-09T11:42:05.159385-07:00,0.0,10.722004,10722.004 +19751,2025-03-09T11:42:15.896737-07:00,0.0,10.737352,10737.352 +19752,2025-03-09T11:42:26.621727-07:00,0.0,10.72499,10724.99 +19753,2025-03-09T11:42:37.338575-07:00,0.0,10.716848,10716.848 +19754,2025-03-09T11:42:48.069300-07:00,0.0,10.730725,10730.725 +19755,2025-03-09T11:42:58.789392-07:00,0.0,10.720092,10720.092 +19756,2025-03-09T11:43:09.522585-07:00,0.0,10.733193,10733.193 +19757,2025-03-09T11:43:20.244393-07:00,0.0,10.721808,10721.808 +19758,2025-03-09T11:43:30.976857-07:00,0.0,10.732464,10732.464 +19759,2025-03-09T11:43:41.705885-07:00,0.0,10.729028,10729.028 +19760,2025-03-09T11:43:52.427454-07:00,0.0,10.721569,10721.569 +19761,2025-03-09T11:44:03.165562-07:00,0.0,10.738108,10738.108 +19762,2025-03-09T11:44:13.892413-07:00,0.0,10.726851,10726.851 +19763,2025-03-09T11:44:24.615507-07:00,0.0,10.723094,10723.094 +19764,2025-03-09T11:44:35.350027-07:00,0.0,10.73452,10734.52 +19765,2025-03-09T11:44:46.071456-07:00,0.0,10.721429,10721.429 +19766,2025-03-09T11:44:56.797389-07:00,0.0,10.725933,10725.933 +19767,2025-03-09T11:45:07.530487-07:00,0.0,10.733098,10733.098 +19768,2025-03-09T11:45:18.258515-07:00,0.0,10.728028,10728.028 +19769,2025-03-09T11:45:28.990574-07:00,0.0,10.732059,10732.059 +19770,2025-03-09T11:45:39.719457-07:00,0.0,10.728883,10728.883 +19771,2025-03-09T11:45:50.452601-07:00,0.0,10.733144,10733.144 +19772,2025-03-09T11:46:01.184392-07:00,0.0,10.731791,10731.791 +19773,2025-03-09T11:46:11.918590-07:00,0.0,10.734198,10734.198 +19774,2025-03-09T11:46:22.645389-07:00,0.0,10.726799,10726.799 +19775,2025-03-09T11:46:33.370574-07:00,0.0,10.725185,10725.185 +19776,2025-03-09T11:46:44.107160-07:00,0.0,10.736586,10736.586 +19777,2025-03-09T11:46:54.838389-07:00,0.0,10.731229,10731.229 +19778,2025-03-09T11:47:05.567464-07:00,0.0,10.729075,10729.075 +19779,2025-03-09T11:47:16.299581-07:00,0.0,10.732117,10732.117 +19780,2025-03-09T11:47:27.026459-07:00,0.0,10.726878,10726.878 +19781,2025-03-09T11:47:37.754578-07:00,0.0,10.728119,10728.119 +19782,2025-03-09T11:47:48.493569-07:00,0.0,10.738991,10738.991 +19783,2025-03-09T11:47:59.216467-07:00,0.0,10.722898,10722.898 +19784,2025-03-09T11:48:09.947387-07:00,0.0,10.73092,10730.92 +19785,2025-03-09T11:48:20.681095-07:00,0.0,10.733708,10733.708 +19786,2025-03-09T11:48:31.409631-07:00,0.0,10.728536,10728.536 +19787,2025-03-09T11:48:42.140614-07:00,0.0,10.730983,10730.983 +19788,2025-03-09T11:48:52.865389-07:00,0.0,10.724775,10724.775 +19789,2025-03-09T11:49:03.595680-07:00,0.0,10.730291,10730.291 +19790,2025-03-09T11:49:14.323558-07:00,0.0,10.727878,10727.878 +19791,2025-03-09T11:49:25.052392-07:00,0.0,10.728834,10728.834 +19792,2025-03-09T11:49:35.781969-07:00,0.0,10.729577,10729.577 +19793,2025-03-09T11:49:46.507061-07:00,0.0,10.725092,10725.092 +19794,2025-03-09T11:49:57.236391-07:00,0.0,10.72933,10729.33 +19795,2025-03-09T11:50:07.965638-07:00,0.0,10.729247,10729.247 +19796,2025-03-09T11:50:18.695571-07:00,0.0,10.729933,10729.933 +19797,2025-03-09T11:50:29.422394-07:00,0.0,10.726823,10726.823 +19798,2025-03-09T11:50:40.148759-07:00,0.0,10.726365,10726.365 +19799,2025-03-09T11:50:50.885463-07:00,0.0,10.736704,10736.704 +19800,2025-03-09T11:51:01.605490-07:00,0.0,10.720027,10720.027 +19801,2025-03-09T11:51:12.335545-07:00,0.0,10.730055,10730.055 +19802,2025-03-09T11:51:23.059965-07:00,0.0,10.72442,10724.42 +19803,2025-03-09T11:51:33.782568-07:00,0.0,10.722603,10722.603 +19804,2025-03-09T11:51:44.517490-07:00,0.0,10.734922,10734.922 +19805,2025-03-09T11:51:55.237608-07:00,0.0,10.720118,10720.118 +19806,2025-03-09T11:52:05.968289-07:00,0.0,10.730681,10730.681 +19807,2025-03-09T11:52:16.682576-07:00,0.0,10.714287,10714.287 +19808,2025-03-09T11:52:27.443461-07:00,0.0,10.760885,10760.885 +19809,2025-03-09T11:52:38.174937-07:00,0.0,10.731476,10731.476 +19810,2025-03-09T11:52:48.897942-07:00,0.0,10.723005,10723.005 +19811,2025-03-09T11:52:59.617941-07:00,0.0,10.719999,10719.999 +19812,2025-03-09T11:53:10.353934-07:00,0.0,10.735993,10735.993 +19813,2025-03-09T11:53:21.081118-07:00,0.0,10.727184,10727.184 +19814,2025-03-09T11:53:31.806943-07:00,0.0,10.725825,10725.825 +19815,2025-03-09T11:53:42.530422-07:00,0.0,10.723479,10723.479 +19816,2025-03-09T11:53:53.259179-07:00,0.0,10.728757,10728.757 +19817,2025-03-09T11:54:03.979276-07:00,0.0,10.720097,10720.097 +19818,2025-03-09T11:54:14.715331-07:00,0.0,10.736055,10736.055 +19819,2025-03-09T11:54:25.434120-07:00,0.0,10.718789,10718.789 +19820,2025-03-09T11:54:36.166956-07:00,0.0,10.732836,10732.836 +19821,2025-03-09T11:54:46.897301-07:00,0.0,10.730345,10730.345 +19822,2025-03-09T11:54:57.625945-07:00,0.0,10.728644,10728.644 +19823,2025-03-09T11:55:08.352123-07:00,0.0,10.726178,10726.178 +19824,2025-03-09T11:55:19.082147-07:00,0.0,10.730024,10730.024 +19825,2025-03-09T11:55:29.805945-07:00,0.0,10.723798,10723.798 +19826,2025-03-09T11:55:40.532981-07:00,0.0,10.727036,10727.036 +19827,2025-03-09T11:55:51.267060-07:00,0.0,10.734079,10734.079 +19828,2025-03-09T11:56:01.990108-07:00,0.0,10.723048,10723.048 +19829,2025-03-09T11:56:12.715939-07:00,0.0,10.725831,10725.831 +19830,2025-03-09T11:56:23.438953-07:00,0.0,10.723014,10723.014 +19831,2025-03-09T11:56:34.167267-07:00,0.0,10.728314,10728.314 +19832,2025-03-09T11:56:44.896964-07:00,0.0,10.729697,10729.697 +19833,2025-03-09T11:56:55.613939-07:00,0.0,10.716975,10716.975 +19834,2025-03-09T11:57:06.342942-07:00,0.0,10.729003,10729.003 +19835,2025-03-09T11:57:17.075943-07:00,0.0,10.733001,10733.001 +19836,2025-03-09T11:57:27.798937-07:00,0.0,10.722994,10722.994 +19837,2025-03-09T11:57:38.533255-07:00,0.0,10.734318,10734.318 +19838,2025-03-09T11:57:49.251475-07:00,0.0,10.71822,10718.22 +19839,2025-03-09T11:57:59.979942-07:00,0.0,10.728467,10728.467 +19840,2025-03-09T11:58:10.711158-07:00,0.0,10.731216,10731.216 +19841,2025-03-09T11:58:21.442782-07:00,0.0,10.731624,10731.624 +19842,2025-03-09T11:58:32.172065-07:00,0.0,10.729283,10729.283 +19843,2025-03-09T11:58:42.905221-07:00,0.0,10.733156,10733.156 +19844,2025-03-09T11:58:53.630969-07:00,0.0,10.725748,10725.748 +19845,2025-03-09T11:59:04.352941-07:00,0.0,10.721972,10721.972 +19846,2025-03-09T11:59:15.086106-07:00,0.0,10.733165,10733.165 +19847,2025-03-09T11:59:25.817942-07:00,0.0,10.731836,10731.836 +19848,2025-03-09T11:59:36.542071-07:00,0.0,10.724129,10724.129 +19849,2025-03-09T11:59:47.274116-07:00,0.0,10.732045,10732.045 +19850,2025-03-09T11:59:58.006941-07:00,0.0,10.732825,10732.825 +19851,2025-03-09T12:00:08.728966-07:00,0.0,10.722025,10722.025 +19852,2025-03-09T12:00:19.465113-07:00,0.0,10.736147,10736.147 +19853,2025-03-09T12:00:30.184943-07:00,0.0,10.71983,10719.83 +19854,2025-03-09T12:00:40.919380-07:00,0.0,10.734437,10734.437 +19855,2025-03-09T12:00:51.649033-07:00,0.0,10.729653,10729.653 +19856,2025-03-09T12:01:02.370941-07:00,0.0,10.721908,10721.908 +19857,2025-03-09T12:01:13.107945-07:00,0.0,10.737004,10737.004 +19858,2025-03-09T12:01:23.838961-07:00,0.0,10.731016,10731.016 +19859,2025-03-09T12:01:34.564942-07:00,0.0,10.725981,10725.981 +19860,2025-03-09T12:01:45.288142-07:00,0.0,10.7232,10723.2 +19861,2025-03-09T12:01:56.021041-07:00,0.0,10.732899,10732.899 +19862,2025-03-09T12:02:06.747198-07:00,0.0,10.726157,10726.157 +19863,2025-03-09T12:02:17.480131-07:00,0.0,10.732933,10732.933 +19864,2025-03-09T12:02:28.207942-07:00,0.0,10.727811,10727.811 +19865,2025-03-09T12:02:38.930585-07:00,0.0,10.722643,10722.643 +19866,2025-03-09T12:02:49.650001-07:00,0.0,10.719416,10719.416 +19867,2025-03-09T12:03:00.383942-07:00,0.0,10.733941,10733.941 +19868,2025-03-09T12:03:11.105143-07:00,0.0,10.721201,10721.201 +19869,2025-03-09T12:03:21.832001-07:00,0.0,10.726858,10726.858 +19870,2025-03-09T12:03:32.554079-07:00,0.0,10.722078,10722.078 +19871,2025-03-09T12:03:43.277873-07:00,0.0,10.723794,10723.794 +19872,2025-03-09T12:03:54.000363-07:00,0.0,10.72249,10722.49 +19873,2025-03-09T12:04:04.719969-07:00,0.0,10.719606,10719.606 +19874,2025-03-09T12:04:15.449105-07:00,0.0,10.729136,10729.136 +19875,2025-03-09T12:04:26.177144-07:00,0.0,10.728039,10728.039 +19876,2025-03-09T12:04:36.900340-07:00,0.0,10.723196,10723.196 +19877,2025-03-09T12:04:47.628969-07:00,0.0,10.728629,10728.629 +19878,2025-03-09T12:04:58.347128-07:00,0.0,10.718159,10718.159 +19879,2025-03-09T12:05:09.079448-07:00,0.0,10.73232,10732.32 +19880,2025-03-09T12:05:19.803007-07:00,0.0,10.723559,10723.559 +19881,2025-03-09T12:05:30.531476-07:00,0.0,10.728469,10728.469 +19882,2025-03-09T12:05:41.248997-07:00,0.0,10.717521,10717.521 +19883,2025-03-09T12:05:51.983135-07:00,0.0,10.734138,10734.138 +19884,2025-03-09T12:06:02.702942-07:00,0.0,10.719807,10719.807 +19885,2025-03-09T12:06:13.426942-07:00,0.0,10.724,10724.0 +19886,2025-03-09T12:06:24.150064-07:00,0.0,10.723122,10723.122 +19887,2025-03-09T12:06:34.883001-07:00,0.0,10.732937,10732.937 +19888,2025-03-09T12:06:45.612225-07:00,0.0,10.729224,10729.224 +19889,2025-03-09T12:06:56.332939-07:00,0.0,10.720714,10720.714 +19890,2025-03-09T12:07:07.062937-07:00,0.0,10.729998,10729.998 +19891,2025-03-09T12:07:17.783935-07:00,0.0,10.720998,10720.998 +19892,2025-03-09T12:07:28.522939-07:00,0.0,10.739004,10739.004 +19893,2025-03-09T12:07:39.244722-07:00,0.0,10.721783,10721.783 +19894,2025-03-09T12:07:49.965940-07:00,0.0,10.721218,10721.218 +19895,2025-03-09T12:08:00.690958-07:00,0.0,10.725018,10725.018 +19896,2025-03-09T12:08:11.425214-07:00,0.0,10.734256,10734.256 +19897,2025-03-09T12:08:22.151128-07:00,0.0,10.725914,10725.914 +19898,2025-03-09T12:08:32.871841-07:00,0.0,10.720713,10720.713 +19899,2025-03-09T12:08:43.592287-07:00,0.0,10.720446,10720.446 +19900,2025-03-09T12:08:54.317365-07:00,0.0,10.725078,10725.078 +19901,2025-03-09T12:09:05.044940-07:00,0.0,10.727575,10727.575 +19902,2025-03-09T12:09:15.771118-07:00,0.0,10.726178,10726.178 +19903,2025-03-09T12:09:26.489154-07:00,0.0,10.718036,10718.036 +19904,2025-03-09T12:09:37.218942-07:00,0.0,10.729788,10729.788 +19905,2025-03-09T12:09:47.944033-07:00,0.0,10.725091,10725.091 +19906,2025-03-09T12:09:58.661199-07:00,0.0,10.717166,10717.166 +19907,2025-03-09T12:10:09.383936-07:00,0.0,10.722737,10722.737 +19908,2025-03-09T12:10:20.119147-07:00,0.0,10.735211,10735.211 +19909,2025-03-09T12:10:30.837227-07:00,0.0,10.71808,10718.08 +19910,2025-03-09T12:10:41.568939-07:00,0.0,10.731712,10731.712 +19911,2025-03-09T12:10:52.292377-07:00,0.0,10.723438,10723.438 +19912,2025-03-09T12:11:03.023941-07:00,0.0,10.731564,10731.564 +19913,2025-03-09T12:11:13.741741-07:00,0.0,10.7178,10717.8 +19914,2025-03-09T12:11:24.472352-07:00,0.0,10.730611,10730.611 +19915,2025-03-09T12:11:35.190133-07:00,0.0,10.717781,10717.781 +19916,2025-03-09T12:11:45.919322-07:00,0.0,10.729189,10729.189 +19917,2025-03-09T12:11:56.646939-07:00,0.0,10.727617,10727.617 +19918,2025-03-09T12:12:07.369094-07:00,0.0,10.722155,10722.155 +19919,2025-03-09T12:12:18.095144-07:00,0.0,10.72605,10726.05 +19920,2025-03-09T12:12:28.815170-07:00,0.0,10.720026,10720.026 +19921,2025-03-09T12:12:39.544939-07:00,0.0,10.729769,10729.769 +19922,2025-03-09T12:12:50.269942-07:00,0.0,10.725003,10725.003 +19923,2025-03-09T12:13:00.986148-07:00,0.0,10.716206,10716.206 +19924,2025-03-09T12:13:11.708185-07:00,0.0,10.722037,10722.037 +19925,2025-03-09T12:13:22.431939-07:00,0.0,10.723754,10723.754 +19926,2025-03-09T12:13:33.161146-07:00,0.0,10.729207,10729.207 +19927,2025-03-09T12:13:43.889115-07:00,0.0,10.727969,10727.969 +19928,2025-03-09T12:13:54.609938-07:00,0.0,10.720823,10720.823 +19929,2025-03-09T12:14:05.327134-07:00,0.0,10.717196,10717.196 +19930,2025-03-09T12:14:16.060012-07:00,0.0,10.732878,10732.878 +19931,2025-03-09T12:14:26.784942-07:00,0.0,10.72493,10724.93 +19932,2025-03-09T12:14:37.497968-07:00,0.0,10.713026,10713.026 +19933,2025-03-09T12:14:48.231139-07:00,0.0,10.733171,10733.171 +19934,2025-03-09T12:14:58.954130-07:00,0.0,10.722991,10722.991 +19935,2025-03-09T12:15:09.682145-07:00,0.0,10.728015,10728.015 +19936,2025-03-09T12:15:20.402173-07:00,0.0,10.720028,10720.028 +19937,2025-03-09T12:15:31.125943-07:00,0.0,10.72377,10723.77 +19938,2025-03-09T12:15:41.857918-07:00,0.0,10.731975,10731.975 +19939,2025-03-09T12:15:52.574120-07:00,0.0,10.716202,10716.202 +19940,2025-03-09T12:16:03.301983-07:00,0.0,10.727863,10727.863 +19941,2025-03-09T12:16:14.025941-07:00,0.0,10.723958,10723.958 +19942,2025-03-09T12:16:24.747357-07:00,0.0,10.721416,10721.416 +19943,2025-03-09T12:16:35.469019-07:00,0.0,10.721662,10721.662 +19944,2025-03-09T12:16:46.195988-07:00,0.0,10.726969,10726.969 +19945,2025-03-09T12:16:56.924095-07:00,0.0,10.728107,10728.107 +19946,2025-03-09T12:17:07.646942-07:00,0.0,10.722847,10722.847 +19947,2025-03-09T12:17:18.372084-07:00,0.0,10.725142,10725.142 +19948,2025-03-09T12:17:29.092941-07:00,0.0,10.720857,10720.857 +19949,2025-03-09T12:17:39.817129-07:00,0.0,10.724188,10724.188 +19950,2025-03-09T12:17:50.536941-07:00,0.0,10.719812,10719.812 +19951,2025-03-09T12:18:01.264342-07:00,0.0,10.727401,10727.401 +19952,2025-03-09T12:18:11.986049-07:00,0.0,10.721707,10721.707 +19953,2025-03-09T12:18:22.716938-07:00,0.0,10.730889,10730.889 +19954,2025-03-09T12:18:33.437234-07:00,0.0,10.720296,10720.296 +19955,2025-03-09T12:18:44.163161-07:00,0.0,10.725927,10725.927 +19956,2025-03-09T12:18:54.892594-07:00,0.0,10.729433,10729.433 +19957,2025-03-09T12:19:05.617938-07:00,0.0,10.725344,10725.344 +19958,2025-03-09T12:19:16.343129-07:00,0.0,10.725191,10725.191 +19959,2025-03-09T12:19:27.060942-07:00,0.0,10.717813,10717.813 +19960,2025-03-09T12:19:37.786103-07:00,0.0,10.725161,10725.161 +19961,2025-03-09T12:19:48.513938-07:00,0.0,10.727835,10727.835 +19962,2025-03-09T12:19:59.239942-07:00,0.0,10.726004,10726.004 +19963,2025-03-09T12:20:09.957015-07:00,0.0,10.717073,10717.073 +19964,2025-03-09T12:20:20.687976-07:00,0.0,10.730961,10730.961 +19965,2025-03-09T12:20:31.409942-07:00,0.0,10.721966,10721.966 +19966,2025-03-09T12:20:42.136939-07:00,0.0,10.726997,10726.997 +19967,2025-03-09T12:20:52.872938-07:00,0.0,10.735999,10735.999 +19968,2025-03-09T12:21:03.593186-07:00,0.0,10.720248,10720.248 +19969,2025-03-09T12:21:14.322028-07:00,0.0,10.728842,10728.842 +19970,2025-03-09T12:21:25.047317-07:00,0.0,10.725289,10725.289 +19971,2025-03-09T12:21:35.771935-07:00,0.0,10.724618,10724.618 +19972,2025-03-09T12:21:46.489057-07:00,0.0,10.717122,10717.122 +19973,2025-03-09T12:21:57.214965-07:00,0.0,10.725908,10725.908 +19974,2025-03-09T12:22:07.936611-07:00,0.0,10.721646,10721.646 +19975,2025-03-09T12:22:18.656593-07:00,0.0,10.719982,10719.982 +19976,2025-03-09T12:22:29.388154-07:00,0.0,10.731561,10731.561 +19977,2025-03-09T12:22:40.111937-07:00,0.0,10.723783,10723.783 +19978,2025-03-09T12:22:50.835156-07:00,0.0,10.723219,10723.219 +19979,2025-03-09T12:23:01.558942-07:00,0.0,10.723786,10723.786 +19980,2025-03-09T12:23:12.279119-07:00,0.0,10.720177,10720.177 +19981,2025-03-09T12:23:23.001009-07:00,0.0,10.72189,10721.89 +19982,2025-03-09T12:23:33.726352-07:00,0.0,10.725343,10725.343 +19983,2025-03-09T12:23:44.453939-07:00,0.0,10.727587,10727.587 +19984,2025-03-09T12:23:55.180650-07:00,0.0,10.726711,10726.711 +19985,2025-03-09T12:24:05.902808-07:00,0.0,10.722158,10722.158 +19986,2025-03-09T12:24:16.624952-07:00,0.0,10.722144,10722.144 +19987,2025-03-09T12:24:27.354763-07:00,0.0,10.729811,10729.811 +19988,2025-03-09T12:24:38.077012-07:00,0.0,10.722249,10722.249 +19989,2025-03-09T12:24:48.795110-07:00,0.0,10.718098,10718.098 +19990,2025-03-09T12:24:59.525075-07:00,0.0,10.729965,10729.965 +19991,2025-03-09T12:25:10.241920-07:00,0.0,10.716845,10716.845 +19992,2025-03-09T12:25:20.972937-07:00,0.0,10.731017,10731.017 +19993,2025-03-09T12:25:31.693937-07:00,0.0,10.721,10721.0 +19994,2025-03-09T12:25:42.417970-07:00,0.0,10.724033,10724.033 +19995,2025-03-09T12:25:53.139161-07:00,0.0,10.721191,10721.191 +19996,2025-03-09T12:26:03.863942-07:00,0.0,10.724781,10724.781 +19997,2025-03-09T12:26:14.581965-07:00,0.0,10.718023,10718.023 +19998,2025-03-09T12:26:25.306970-07:00,0.0,10.725005,10725.005 +19999,2025-03-09T12:26:36.030089-07:00,0.0,10.723119,10723.119 +20000,2025-03-09T12:26:46.764786-07:00,0.0,10.734697,10734.697 +20001,2025-03-09T12:26:57.485964-07:00,0.0,10.721178,10721.178 +20002,2025-03-09T12:27:08.212935-07:00,0.0,10.726971,10726.971 +20003,2025-03-09T12:27:18.932939-07:00,0.0,10.720004,10720.004 +20004,2025-03-09T12:27:29.654157-07:00,0.0,10.721218,10721.218 +20005,2025-03-09T12:27:40.371140-07:00,0.0,10.716983,10716.983 +20006,2025-03-09T12:27:51.100940-07:00,0.0,10.7298,10729.8 +20007,2025-03-09T12:28:01.834240-07:00,0.0,10.7333,10733.3 +20008,2025-03-09T12:28:12.548110-07:00,0.0,10.71387,10713.87 +20009,2025-03-09T12:28:23.278085-07:00,0.0,10.729975,10729.975 +20010,2025-03-09T12:28:34.003151-07:00,0.0,10.725066,10725.066 +20011,2025-03-09T12:28:44.728114-07:00,0.0,10.724963,10724.963 +20012,2025-03-09T12:28:55.453007-07:00,0.0,10.724893,10724.893 +20013,2025-03-09T12:29:06.173880-07:00,0.0,10.720873,10720.873 +20014,2025-03-09T12:29:16.906940-07:00,0.0,10.73306,10733.06 +20015,2025-03-09T12:29:27.634152-07:00,0.0,10.727212,10727.212 +20016,2025-03-09T12:29:38.358134-07:00,0.0,10.723982,10723.982 +20017,2025-03-09T12:29:49.088942-07:00,0.0,10.730808,10730.808 +20018,2025-03-09T12:29:59.811950-07:00,0.0,10.723008,10723.008 +20019,2025-03-09T12:30:10.542939-07:00,0.0,10.730989,10730.989 +20020,2025-03-09T12:30:21.273148-07:00,0.0,10.730209,10730.209 +20021,2025-03-09T12:30:32.000110-07:00,0.0,10.726962,10726.962 +20022,2025-03-09T12:30:42.732307-07:00,0.0,10.732197,10732.197 +20023,2025-03-09T12:30:53.455939-07:00,0.0,10.723632,10723.632 +20024,2025-03-09T12:31:04.183606-07:00,0.0,10.727667,10727.667 +20025,2025-03-09T12:31:14.905115-07:00,0.0,10.721509,10721.509 +20026,2025-03-09T12:31:25.634108-07:00,0.0,10.728993,10728.993 +20027,2025-03-09T12:31:36.359157-07:00,0.0,10.725049,10725.049 +20028,2025-03-09T12:31:47.088170-07:00,0.0,10.729013,10729.013 +20029,2025-03-09T12:31:57.811939-07:00,0.0,10.723769,10723.769 +20030,2025-03-09T12:32:08.540937-07:00,0.0,10.728998,10728.998 +20031,2025-03-09T12:32:19.268155-07:00,0.0,10.727218,10727.218 +20032,2025-03-09T12:32:29.990937-07:00,0.0,10.722782,10722.782 +20033,2025-03-09T12:32:40.723130-07:00,0.0,10.732193,10732.193 +20034,2025-03-09T12:32:51.447049-07:00,0.0,10.723919,10723.919 +20035,2025-03-09T12:33:02.171171-07:00,0.0,10.724122,10724.122 +20036,2025-03-09T12:33:12.905084-07:00,0.0,10.733913,10733.913 +20037,2025-03-09T12:33:23.629937-07:00,0.0,10.724853,10724.853 +20038,2025-03-09T12:33:34.360032-07:00,0.0,10.730095,10730.095 +20039,2025-03-09T12:33:45.088158-07:00,0.0,10.728126,10728.126 +20040,2025-03-09T12:33:55.806151-07:00,0.0,10.717993,10717.993 +20041,2025-03-09T12:34:06.534133-07:00,0.0,10.727982,10727.982 +20042,2025-03-09T12:34:17.262147-07:00,0.0,10.728014,10728.014 +20043,2025-03-09T12:34:27.992409-07:00,0.0,10.730262,10730.262 +20044,2025-03-09T12:34:38.720754-07:00,0.0,10.728345,10728.345 +20045,2025-03-09T12:34:49.438140-07:00,0.0,10.717386,10717.386 +20046,2025-03-09T12:35:00.170302-07:00,0.0,10.732162,10732.162 +20047,2025-03-09T12:35:10.890943-07:00,0.0,10.720641,10720.641 +20048,2025-03-09T12:35:21.621209-07:00,0.0,10.730266,10730.266 +20049,2025-03-09T12:35:32.345939-07:00,0.0,10.72473,10724.73 +20050,2025-03-09T12:35:43.073393-07:00,0.0,10.727454,10727.454 +20051,2025-03-09T12:35:53.807044-07:00,0.0,10.733651,10733.651 +20052,2025-03-09T12:36:04.534943-07:00,0.0,10.727899,10727.899 +20053,2025-03-09T12:36:15.257143-07:00,0.0,10.7222,10722.2 +20054,2025-03-09T12:36:25.985940-07:00,0.0,10.728797,10728.797 +20055,2025-03-09T12:36:36.713143-07:00,0.0,10.727203,10727.203 +20056,2025-03-09T12:36:47.447947-07:00,0.0,10.734804,10734.804 +20057,2025-03-09T12:36:58.171978-07:00,0.0,10.724031,10724.031 +20058,2025-03-09T12:37:08.903941-07:00,0.0,10.731963,10731.963 +20059,2025-03-09T12:37:19.625696-07:00,0.0,10.721755,10721.755 +20060,2025-03-09T12:37:30.354144-07:00,0.0,10.728448,10728.448 +20061,2025-03-09T12:37:41.075118-07:00,0.0,10.720974,10720.974 +20062,2025-03-09T12:37:51.802006-07:00,0.0,10.726888,10726.888 +20063,2025-03-09T12:38:02.536053-07:00,0.0,10.734047,10734.047 +20064,2025-03-09T12:38:13.261292-07:00,0.0,10.725239,10725.239 +20065,2025-03-09T12:38:23.987940-07:00,0.0,10.726648,10726.648 +20066,2025-03-09T12:38:34.710107-07:00,0.0,10.722167,10722.167 +20067,2025-03-09T12:38:45.446957-07:00,0.0,10.73685,10736.85 +20068,2025-03-09T12:38:56.171001-07:00,0.0,10.724044,10724.044 +20069,2025-03-09T12:39:06.895757-07:00,0.0,10.724756,10724.756 +20070,2025-03-09T12:39:17.624943-07:00,0.0,10.729186,10729.186 +20071,2025-03-09T12:39:28.349108-07:00,0.0,10.724165,10724.165 +20072,2025-03-09T12:39:39.076937-07:00,0.0,10.727829,10727.829 +20073,2025-03-09T12:39:49.800143-07:00,0.0,10.723206,10723.206 +20074,2025-03-09T12:40:00.532514-07:00,0.0,10.732371,10732.371 +20075,2025-03-09T12:40:11.252942-07:00,0.0,10.720428,10720.428 +20076,2025-03-09T12:40:21.975005-07:00,0.0,10.722063,10722.063 +20077,2025-03-09T12:40:32.702942-07:00,0.0,10.727937,10727.937 +20078,2025-03-09T12:40:43.427247-07:00,0.0,10.724305,10724.305 +20079,2025-03-09T12:40:54.161967-07:00,0.0,10.73472,10734.72 +20080,2025-03-09T12:41:04.886943-07:00,0.0,10.724976,10724.976 +20081,2025-03-09T12:41:15.619105-07:00,0.0,10.732162,10732.162 +20082,2025-03-09T12:41:26.340939-07:00,0.0,10.721834,10721.834 +20083,2025-03-09T12:41:37.067374-07:00,0.0,10.726435,10726.435 +20084,2025-03-09T12:41:47.801924-07:00,0.0,10.73455,10734.55 +20085,2025-03-09T12:41:58.538373-07:00,0.0,10.736449,10736.449 +20086,2025-03-09T12:42:09.262019-07:00,0.0,10.723646,10723.646 +20087,2025-03-09T12:42:19.989434-07:00,0.0,10.727415,10727.415 +20088,2025-03-09T12:42:30.710935-07:00,0.0,10.721501,10721.501 +20089,2025-03-09T12:42:41.442129-07:00,0.0,10.731194,10731.194 +20090,2025-03-09T12:42:52.169144-07:00,0.0,10.727015,10727.015 +20091,2025-03-09T12:43:02.894941-07:00,0.0,10.725797,10725.797 +20092,2025-03-09T12:43:13.619943-07:00,0.0,10.725002,10725.002 +20093,2025-03-09T12:43:24.351157-07:00,0.0,10.731214,10731.214 +20094,2025-03-09T12:43:35.075181-07:00,0.0,10.724024,10724.024 +20095,2025-03-09T12:43:45.797942-07:00,0.0,10.722761,10722.761 +20096,2025-03-09T12:43:56.527008-07:00,0.0,10.729066,10729.066 +20097,2025-03-09T12:44:07.258330-07:00,0.0,10.731322,10731.322 +20098,2025-03-09T12:44:17.977184-07:00,0.0,10.718854,10718.854 +20099,2025-03-09T12:44:28.708404-07:00,0.0,10.73122,10731.22 +20100,2025-03-09T12:44:39.440942-07:00,0.0,10.732538,10732.538 +20101,2025-03-09T12:44:50.162216-07:00,0.0,10.721274,10721.274 +20102,2025-03-09T12:45:00.884986-07:00,0.0,10.72277,10722.77 +20103,2025-03-09T12:45:11.611427-07:00,0.0,10.726441,10726.441 +20104,2025-03-09T12:45:22.347111-07:00,0.0,10.735684,10735.684 +20105,2025-03-09T12:45:33.064942-07:00,0.0,10.717831,10717.831 +20106,2025-03-09T12:45:43.796260-07:00,0.0,10.731318,10731.318 +20107,2025-03-09T12:45:54.515028-07:00,0.0,10.718768,10718.768 +20108,2025-03-09T12:46:05.239478-07:00,0.0,10.72445,10724.45 +20109,2025-03-09T12:46:15.962154-07:00,0.0,10.722676,10722.676 +20110,2025-03-09T12:46:26.683953-07:00,0.0,10.721799,10721.799 +20111,2025-03-09T12:46:37.408942-07:00,0.0,10.724989,10724.989 +20112,2025-03-09T12:46:48.130115-07:00,0.0,10.721173,10721.173 +20113,2025-03-09T12:46:58.852166-07:00,0.0,10.722051,10722.051 +20114,2025-03-09T12:47:09.574110-07:00,0.0,10.721944,10721.944 +20115,2025-03-09T12:47:20.307750-07:00,0.0,10.73364,10733.64 +20116,2025-03-09T12:47:31.030001-07:00,0.0,10.722251,10722.251 +20117,2025-03-09T12:47:41.755225-07:00,0.0,10.725224,10725.224 +20118,2025-03-09T12:47:52.474155-07:00,0.0,10.71893,10718.93 +20119,2025-03-09T12:48:03.193123-07:00,0.0,10.718968,10718.968 +20120,2025-03-09T12:48:13.919946-07:00,0.0,10.726823,10726.823 +20121,2025-03-09T12:48:24.641113-07:00,0.0,10.721167,10721.167 +20122,2025-03-09T12:48:35.369007-07:00,0.0,10.727894,10727.894 +20123,2025-03-09T12:48:46.094942-07:00,0.0,10.725935,10725.935 +20124,2025-03-09T12:48:56.823071-07:00,0.0,10.728129,10728.129 +20125,2025-03-09T12:49:07.549972-07:00,0.0,10.726901,10726.901 +20126,2025-03-09T12:49:18.266041-07:00,0.0,10.716069,10716.069 +20127,2025-03-09T12:49:28.988946-07:00,0.0,10.722905,10722.905 +20128,2025-03-09T12:49:39.714145-07:00,0.0,10.725199,10725.199 +20129,2025-03-09T12:49:50.442970-07:00,0.0,10.728825,10728.825 +20130,2025-03-09T12:50:01.164122-07:00,0.0,10.721152,10721.152 +20131,2025-03-09T12:50:11.895940-07:00,0.0,10.731818,10731.818 +20132,2025-03-09T12:50:22.622946-07:00,0.0,10.727006,10727.006 +20133,2025-03-09T12:50:33.341151-07:00,0.0,10.718205,10718.205 +20134,2025-03-09T12:50:44.065165-07:00,0.0,10.724014,10724.014 +20135,2025-03-09T12:50:54.782940-07:00,0.0,10.717775,10717.775 +20136,2025-03-09T12:51:05.512196-07:00,0.0,10.729256,10729.256 +20137,2025-03-09T12:51:16.234972-07:00,0.0,10.722776,10722.776 +20138,2025-03-09T12:51:26.958942-07:00,0.0,10.72397,10723.97 +20139,2025-03-09T12:51:37.687122-07:00,0.0,10.72818,10728.18 +20140,2025-03-09T12:51:48.416680-07:00,0.0,10.729558,10729.558 +20141,2025-03-09T12:51:59.143224-07:00,0.0,10.726544,10726.544 +20142,2025-03-09T12:52:09.861940-07:00,0.0,10.718716,10718.716 +20143,2025-03-09T12:52:20.593946-07:00,0.0,10.732006,10732.006 +20144,2025-03-09T12:52:31.370205-07:00,0.0,10.776259,10776.259 +20145,2025-03-09T12:52:42.091172-07:00,0.0,10.720967,10720.967 +20146,2025-03-09T12:52:52.815390-07:00,0.0,10.724218,10724.218 +20147,2025-03-09T12:53:03.540389-07:00,0.0,10.724999,10724.999 +20148,2025-03-09T12:53:14.267439-07:00,0.0,10.72705,10727.05 +20149,2025-03-09T12:53:24.997208-07:00,0.0,10.729769,10729.769 +20150,2025-03-09T12:53:35.722242-07:00,0.0,10.725034,10725.034 +20151,2025-03-09T12:53:46.450347-07:00,0.0,10.728105,10728.105 +20152,2025-03-09T12:53:57.171180-07:00,0.0,10.720833,10720.833 +20153,2025-03-09T12:54:07.896380-07:00,0.0,10.7252,10725.2 +20154,2025-03-09T12:54:18.623174-07:00,0.0,10.726794,10726.794 +20155,2025-03-09T12:54:29.355530-07:00,0.0,10.732356,10732.356 +20156,2025-03-09T12:54:40.079202-07:00,0.0,10.723672,10723.672 +20157,2025-03-09T12:54:50.808249-07:00,0.0,10.729047,10729.047 +20158,2025-03-09T12:55:01.526538-07:00,0.0,10.718289,10718.289 +20159,2025-03-09T12:55:12.257174-07:00,0.0,10.730636,10730.636 +20160,2025-03-09T12:55:22.983177-07:00,0.0,10.726003,10726.003 +20161,2025-03-09T12:55:33.715332-07:00,0.0,10.732155,10732.155 +20162,2025-03-09T12:55:44.442338-07:00,0.0,10.727006,10727.006 +20163,2025-03-09T12:55:55.171948-07:00,0.0,10.72961,10729.61 +20164,2025-03-09T12:56:05.893207-07:00,0.0,10.721259,10721.259 +20165,2025-03-09T12:56:16.612275-07:00,0.0,10.719068,10719.068 +20166,2025-03-09T12:56:27.340173-07:00,0.0,10.727898,10727.898 +20167,2025-03-09T12:56:38.063500-07:00,0.0,10.723327,10723.327 +20168,2025-03-09T12:56:48.795000-07:00,0.0,10.7315,10731.5 +20169,2025-03-09T12:56:59.521318-07:00,0.0,10.726318,10726.318 +20170,2025-03-09T12:57:10.245343-07:00,0.0,10.724025,10724.025 +20171,2025-03-09T12:57:20.967176-07:00,0.0,10.721833,10721.833 +20172,2025-03-09T12:57:31.691376-07:00,0.0,10.7242,10724.2 +20173,2025-03-09T12:57:42.407178-07:00,0.0,10.715802,10715.802 +20174,2025-03-09T12:57:53.133362-07:00,0.0,10.726184,10726.184 +20175,2025-03-09T12:58:03.858242-07:00,0.0,10.72488,10724.88 +20176,2025-03-09T12:58:14.586473-07:00,0.0,10.728231,10728.231 +20177,2025-03-09T12:58:25.307177-07:00,0.0,10.720704,10720.704 +20178,2025-03-09T12:58:36.037251-07:00,0.0,10.730074,10730.074 +20179,2025-03-09T12:58:46.755229-07:00,0.0,10.717978,10717.978 +20180,2025-03-09T12:58:57.481331-07:00,0.0,10.726102,10726.102 +20181,2025-03-09T12:59:08.214847-07:00,0.0,10.733516,10733.516 +20182,2025-03-09T12:59:18.938181-07:00,0.0,10.723334,10723.334 +20183,2025-03-09T12:59:29.662175-07:00,0.0,10.723994,10723.994 +20184,2025-03-09T12:59:40.389209-07:00,0.0,10.727034,10727.034 +20185,2025-03-09T12:59:51.107447-07:00,0.0,10.718238,10718.238 +20186,2025-03-09T13:00:01.833178-07:00,0.0,10.725731,10725.731 +20187,2025-03-09T13:00:12.564207-07:00,0.0,10.731029,10731.029 +20188,2025-03-09T13:00:23.292345-07:00,0.0,10.728138,10728.138 +20189,2025-03-09T13:00:34.021579-07:00,0.0,10.729234,10729.234 +20190,2025-03-09T13:00:44.742402-07:00,0.0,10.720823,10720.823 +20191,2025-03-09T13:00:55.467178-07:00,0.0,10.724776,10724.776 +20192,2025-03-09T13:01:06.195392-07:00,0.0,10.728214,10728.214 +20193,2025-03-09T13:01:16.925348-07:00,0.0,10.729956,10729.956 +20194,2025-03-09T13:01:27.656242-07:00,0.0,10.730894,10730.894 +20195,2025-03-09T13:01:38.376446-07:00,0.0,10.720204,10720.204 +20196,2025-03-09T13:01:49.104174-07:00,0.0,10.727728,10727.728 +20197,2025-03-09T13:01:59.841387-07:00,0.0,10.737213,10737.213 +20198,2025-03-09T13:02:10.566229-07:00,0.0,10.724842,10724.842 +20199,2025-03-09T13:02:21.291363-07:00,0.0,10.725134,10725.134 +20200,2025-03-09T13:02:32.021200-07:00,0.0,10.729837,10729.837 +20201,2025-03-09T13:02:42.752355-07:00,0.0,10.731155,10731.155 +20202,2025-03-09T13:02:53.483437-07:00,0.0,10.731082,10731.082 +20203,2025-03-09T13:03:04.205175-07:00,0.0,10.721738,10721.738 +20204,2025-03-09T13:03:14.930300-07:00,0.0,10.725125,10725.125 +20205,2025-03-09T13:03:25.658368-07:00,0.0,10.728068,10728.068 +20206,2025-03-09T13:03:36.382676-07:00,0.0,10.724308,10724.308 +20207,2025-03-09T13:03:47.110170-07:00,0.0,10.727494,10727.494 +20208,2025-03-09T13:03:57.837389-07:00,0.0,10.727219,10727.219 +20209,2025-03-09T13:04:08.566595-07:00,0.0,10.729206,10729.206 +20210,2025-03-09T13:04:19.291362-07:00,0.0,10.724767,10724.767 +20211,2025-03-09T13:04:30.018575-07:00,0.0,10.727213,10727.213 +20212,2025-03-09T13:04:40.737921-07:00,0.0,10.719346,10719.346 +20213,2025-03-09T13:04:51.465354-07:00,0.0,10.727433,10727.433 +20214,2025-03-09T13:05:02.193373-07:00,0.0,10.728019,10728.019 +20215,2025-03-09T13:05:12.922355-07:00,0.0,10.728982,10728.982 +20216,2025-03-09T13:05:23.650566-07:00,0.0,10.728211,10728.211 +20217,2025-03-09T13:05:34.376546-07:00,0.0,10.72598,10725.98 +20218,2025-03-09T13:05:45.099425-07:00,0.0,10.722879,10722.879 +20219,2025-03-09T13:05:55.828177-07:00,0.0,10.728752,10728.752 +20220,2025-03-09T13:06:06.554587-07:00,0.0,10.72641,10726.41 +20221,2025-03-09T13:06:17.282286-07:00,0.0,10.727699,10727.699 +20222,2025-03-09T13:06:28.003699-07:00,0.0,10.721413,10721.413 +20223,2025-03-09T13:06:38.735259-07:00,0.0,10.73156,10731.56 +20224,2025-03-09T13:06:49.459348-07:00,0.0,10.724089,10724.089 +20225,2025-03-09T13:07:00.195178-07:00,0.0,10.73583,10735.83 +20226,2025-03-09T13:07:10.921301-07:00,0.0,10.726123,10726.123 +20227,2025-03-09T13:07:21.640172-07:00,0.0,10.718871,10718.871 +20228,2025-03-09T13:07:32.369376-07:00,0.0,10.729204,10729.204 +20229,2025-03-09T13:07:43.094176-07:00,0.0,10.7248,10724.8 +20230,2025-03-09T13:07:53.819658-07:00,0.0,10.725482,10725.482 +20231,2025-03-09T13:08:04.543243-07:00,0.0,10.723585,10723.585 +20232,2025-03-09T13:08:15.276278-07:00,0.0,10.733035,10733.035 +20233,2025-03-09T13:08:26.001564-07:00,0.0,10.725286,10725.286 +20234,2025-03-09T13:08:36.722772-07:00,0.0,10.721208,10721.208 +20235,2025-03-09T13:08:47.449349-07:00,0.0,10.726577,10726.577 +20236,2025-03-09T13:08:58.177070-07:00,0.0,10.727721,10727.721 +20237,2025-03-09T13:09:08.906177-07:00,0.0,10.729107,10729.107 +20238,2025-03-09T13:09:19.640344-07:00,0.0,10.734167,10734.167 +20239,2025-03-09T13:09:30.363586-07:00,0.0,10.723242,10723.242 +20240,2025-03-09T13:09:41.087088-07:00,0.0,10.723502,10723.502 +20241,2025-03-09T13:09:51.824037-07:00,0.0,10.736949,10736.949 +20242,2025-03-09T13:10:02.555359-07:00,0.0,10.731322,10731.322 +20243,2025-03-09T13:10:13.280194-07:00,0.0,10.724835,10724.835 +20244,2025-03-09T13:10:24.006386-07:00,0.0,10.726192,10726.192 +20245,2025-03-09T13:10:34.734202-07:00,0.0,10.727816,10727.816 +20246,2025-03-09T13:10:45.465590-07:00,0.0,10.731388,10731.388 +20247,2025-03-09T13:10:56.193369-07:00,0.0,10.727779,10727.779 +20248,2025-03-09T13:11:06.923688-07:00,0.0,10.730319,10730.319 +20249,2025-03-09T13:11:17.654350-07:00,0.0,10.730662,10730.662 +20250,2025-03-09T13:11:28.381174-07:00,0.0,10.726824,10726.824 +20251,2025-03-09T13:11:39.111415-07:00,0.0,10.730241,10730.241 +20252,2025-03-09T13:11:49.844249-07:00,0.0,10.732834,10732.834 +20253,2025-03-09T13:12:00.572231-07:00,0.0,10.727982,10727.982 +20254,2025-03-09T13:12:11.302177-07:00,0.0,10.729946,10729.946 +20255,2025-03-09T13:12:22.037367-07:00,0.0,10.73519,10735.19 +20256,2025-03-09T13:12:32.765203-07:00,0.0,10.727836,10727.836 +20257,2025-03-09T13:12:43.492438-07:00,0.0,10.727235,10727.235 +20258,2025-03-09T13:12:54.227011-07:00,0.0,10.734573,10734.573 +20259,2025-03-09T13:13:04.959172-07:00,0.0,10.732161,10732.161 +20260,2025-03-09T13:13:15.685314-07:00,0.0,10.726142,10726.142 +20261,2025-03-09T13:13:26.422343-07:00,0.0,10.737029,10737.029 +20262,2025-03-09T13:13:37.144386-07:00,0.0,10.722043,10722.043 +20263,2025-03-09T13:13:47.879406-07:00,0.0,10.73502,10735.02 +20264,2025-03-09T13:13:58.610352-07:00,0.0,10.730946,10730.946 +20265,2025-03-09T13:14:09.331376-07:00,0.0,10.721024,10721.024 +20266,2025-03-09T13:14:15.117479-07:00,381.0,5.786103,5786.103 +20267,2025-03-09T13:14:20.066209-07:00,434.0,4.94873,4948.73 +20268,2025-03-09T13:14:30.796200-07:00,368.0,10.729991,10729.991 +20269,2025-03-09T13:14:41.529179-07:00,413.0,10.732979,10732.979 +20270,2025-03-09T13:14:52.265280-07:00,442.0,10.736101,10736.101 +20271,2025-03-09T13:15:02.994365-07:00,400.0,10.729085,10729.085 +20272,2025-03-09T13:15:13.723312-07:00,406.0,10.728947,10728.947 +20273,2025-03-09T13:15:24.445190-07:00,413.0,10.721878,10721.878 +20274,2025-03-09T13:15:35.173175-07:00,389.0,10.727985,10727.985 +20275,2025-03-09T13:15:45.906180-07:00,357.0,10.733005,10733.005 +20276,2025-03-09T13:15:56.630350-07:00,464.0,10.72417,10724.17 +20277,2025-03-09T13:16:07.361204-07:00,464.0,10.730854,10730.854 +20278,2025-03-09T13:16:18.092177-07:00,432.0,10.730973,10730.973 +20279,2025-03-09T13:16:28.817177-07:00,432.0,10.725,10725.0 +20280,2025-03-09T13:16:39.547251-07:00,359.0,10.730074,10730.074 +20281,2025-03-09T13:16:50.270632-07:00,253.0,10.723381,10723.381 +20282,2025-03-09T13:17:00.993376-07:00,341.0,10.722744,10722.744 +20283,2025-03-09T13:17:11.721178-07:00,441.0,10.727802,10727.802 +20284,2025-03-09T13:17:22.451952-07:00,336.0,10.730774,10730.774 +20285,2025-03-09T13:17:33.176176-07:00,347.0,10.724224,10724.224 +20286,2025-03-09T13:17:43.903350-07:00,433.0,10.727174,10727.174 +20287,2025-03-09T13:17:54.632378-07:00,323.0,10.729028,10729.028 +20288,2025-03-09T13:18:05.356210-07:00,349.0,10.723832,10723.832 +20289,2025-03-09T13:18:16.090362-07:00,391.0,10.734152,10734.152 +20290,2025-03-09T13:18:26.814453-07:00,337.0,10.724091,10724.091 +20291,2025-03-09T13:18:37.542377-07:00,371.0,10.727924,10727.924 +20292,2025-03-09T13:18:48.272177-07:00,430.0,10.7298,10729.8 +20293,2025-03-09T13:18:58.998169-07:00,305.0,10.725992,10725.992 +20294,2025-03-09T13:19:09.725367-07:00,240.0,10.727198,10727.198 +20295,2025-03-09T13:19:20.452428-07:00,413.0,10.727061,10727.061 +20296,2025-03-09T13:19:31.177376-07:00,350.0,10.724948,10724.948 +20297,2025-03-09T13:19:41.902177-07:00,375.0,10.724801,10724.801 +20298,2025-03-09T13:19:52.628170-07:00,421.0,10.725993,10725.993 +20299,2025-03-09T13:20:03.360432-07:00,409.0,10.732262,10732.262 +20300,2025-03-09T13:20:14.079179-07:00,367.0,10.718747,10718.747 +20301,2025-03-09T13:20:24.810021-07:00,441.0,10.730842,10730.842 +20302,2025-03-09T13:20:35.540177-07:00,367.0,10.730156,10730.156 +20303,2025-03-09T13:20:46.260426-07:00,407.0,10.720249,10720.249 +20304,2025-03-09T13:20:56.986280-07:00,368.0,10.725854,10725.854 +20305,2025-03-09T13:21:07.715177-07:00,448.0,10.728897,10728.897 +20306,2025-03-09T13:21:08.263498-07:00,227.0,0.548321,548.321 +20307,2025-03-09T13:21:18.448383-07:00,325.0,10.184885,10184.885 +20308,2025-03-09T13:21:29.176174-07:00,387.0,10.727791,10727.791 +20309,2025-03-09T13:21:39.899390-07:00,429.0,10.723216,10723.216 +20310,2025-03-09T13:21:48.388370-07:00,12.0,8.48898,8488.98 +20311,2025-03-09T13:21:50.628538-07:00,0.0,2.240168,2240.168 +20312,2025-03-09T13:22:01.355210-07:00,0.0,10.726672,10726.672 +20313,2025-03-09T13:22:12.085509-07:00,0.0,10.730299,10730.299 +20314,2025-03-09T13:22:22.810236-07:00,0.0,10.724727,10724.727 +20315,2025-03-09T13:22:33.536371-07:00,0.0,10.726135,10726.135 +20316,2025-03-09T13:22:44.259204-07:00,0.0,10.722833,10722.833 +20317,2025-03-09T13:22:54.985178-07:00,0.0,10.725974,10725.974 +20318,2025-03-09T13:23:05.716802-07:00,0.0,10.731624,10731.624 +20319,2025-03-09T13:23:16.438236-07:00,0.0,10.721434,10721.434 +20320,2025-03-09T13:23:27.163319-07:00,0.0,10.725083,10725.083 +20321,2025-03-09T13:23:37.890320-07:00,0.0,10.727001,10727.001 +20322,2025-03-09T13:23:48.628176-07:00,0.0,10.737856,10737.856 +20323,2025-03-09T13:23:59.348608-07:00,0.0,10.720432,10720.432 +20324,2025-03-09T13:24:10.074801-07:00,0.0,10.726193,10726.193 +20325,2025-03-09T13:24:20.803176-07:00,0.0,10.728375,10728.375 +20326,2025-03-09T13:24:31.525274-07:00,0.0,10.722098,10722.098 +20327,2025-03-09T13:24:42.258173-07:00,0.0,10.732899,10732.899 +20328,2025-03-09T13:24:52.979566-07:00,0.0,10.721393,10721.393 +20329,2025-03-09T13:25:03.700174-07:00,0.0,10.720608,10720.608 +20330,2025-03-09T13:25:14.436177-07:00,0.0,10.736003,10736.003 +20331,2025-03-09T13:25:25.160251-07:00,0.0,10.724074,10724.074 +20332,2025-03-09T13:25:35.886277-07:00,0.0,10.726026,10726.026 +20333,2025-03-09T13:25:46.614551-07:00,0.0,10.728274,10728.274 +20334,2025-03-09T13:25:57.332179-07:00,0.0,10.717628,10717.628 +20335,2025-03-09T13:26:08.057365-07:00,0.0,10.725186,10725.186 +20336,2025-03-09T13:26:18.784169-07:00,0.0,10.726804,10726.804 +20337,2025-03-09T13:26:29.515370-07:00,0.0,10.731201,10731.201 +20338,2025-03-09T13:26:40.241473-07:00,0.0,10.726103,10726.103 +20339,2025-03-09T13:26:50.974246-07:00,0.0,10.732773,10732.773 +20340,2025-03-09T13:27:01.698322-07:00,0.0,10.724076,10724.076 +20341,2025-03-09T13:27:12.430201-07:00,0.0,10.731879,10731.879 +20342,2025-03-09T13:27:23.153332-07:00,0.0,10.723131,10723.131 +20343,2025-03-09T13:27:33.882144-07:00,0.0,10.728812,10728.812 +20344,2025-03-09T13:27:44.610709-07:00,0.0,10.728565,10728.565 +20345,2025-03-09T13:27:55.347408-07:00,0.0,10.736699,10736.699 +20346,2025-03-09T13:28:06.070404-07:00,0.0,10.722996,10722.996 +20347,2025-03-09T13:28:16.796720-07:00,0.0,10.726316,10726.316 +20348,2025-03-09T13:28:27.530775-07:00,0.0,10.734055,10734.055 +20349,2025-03-09T13:28:38.257173-07:00,0.0,10.726398,10726.398 +20350,2025-03-09T13:28:48.977691-07:00,0.0,10.720518,10720.518 +20351,2025-03-09T13:28:59.710347-07:00,0.0,10.732656,10732.656 +20352,2025-03-09T13:29:10.440207-07:00,0.0,10.72986,10729.86 +20353,2025-03-09T13:29:21.166356-07:00,0.0,10.726149,10726.149 +20354,2025-03-09T13:29:31.891174-07:00,0.0,10.724818,10724.818 +20355,2025-03-09T13:29:42.625176-07:00,0.0,10.734002,10734.002 +20356,2025-03-09T13:29:53.348658-07:00,0.0,10.723482,10723.482 +20357,2025-03-09T13:30:04.072375-07:00,0.0,10.723717,10723.717 +20358,2025-03-09T13:30:14.801373-07:00,0.0,10.728998,10728.998 +20359,2025-03-09T13:30:25.526380-07:00,0.0,10.725007,10725.007 +20360,2025-03-09T13:30:36.257174-07:00,0.0,10.730794,10730.794 +20361,2025-03-09T13:30:46.989177-07:00,0.0,10.732003,10732.003 +20362,2025-03-09T13:30:57.720202-07:00,0.0,10.731025,10731.025 +20363,2025-03-09T13:31:08.447236-07:00,0.0,10.727034,10727.034 +20364,2025-03-09T13:31:19.172875-07:00,0.0,10.725639,10725.639 +20365,2025-03-09T13:31:27.383800-07:00,0.0,8.210925,8210.925 +20366,2025-03-09T13:31:29.905175-07:00,0.0,2.521375,2521.375 +20367,2025-03-09T13:31:40.628178-07:00,0.0,10.723003,10723.003 +20368,2025-03-09T13:31:51.358961-07:00,0.0,10.730783,10730.783 +20369,2025-03-09T13:32:02.088207-07:00,0.0,10.729246,10729.246 +20370,2025-03-09T13:32:12.823365-07:00,0.0,10.735158,10735.158 +20371,2025-03-09T13:32:23.549999-07:00,0.0,10.726634,10726.634 +20372,2025-03-09T13:32:34.285678-07:00,0.0,10.735679,10735.679 +20373,2025-03-09T13:32:45.008174-07:00,0.0,10.722496,10722.496 +20374,2025-03-09T13:32:55.736220-07:00,0.0,10.728046,10728.046 +20375,2025-03-09T13:33:06.474171-07:00,0.0,10.737951,10737.951 +20376,2025-03-09T13:33:17.201516-07:00,0.0,10.727345,10727.345 +20377,2025-03-09T13:33:27.933042-07:00,0.0,10.731526,10731.526 +20378,2025-03-09T13:33:38.660175-07:00,0.0,10.727133,10727.133 +20379,2025-03-09T13:33:49.383344-07:00,0.0,10.723169,10723.169 +20380,2025-03-09T13:34:00.119196-07:00,0.0,10.735852,10735.852 +20381,2025-03-09T13:34:10.839372-07:00,0.0,10.720176,10720.176 +20382,2025-03-09T13:34:21.579268-07:00,0.0,10.739896,10739.896 +20383,2025-03-09T13:34:32.297174-07:00,0.0,10.717906,10717.906 +20384,2025-03-09T13:34:43.035208-07:00,0.0,10.738034,10738.034 +20385,2025-03-09T13:34:53.765341-07:00,0.0,10.730133,10730.133 +20386,2025-03-09T13:35:04.497254-07:00,0.0,10.731913,10731.913 +20387,2025-03-09T13:35:15.218715-07:00,0.0,10.721461,10721.461 +20388,2025-03-09T13:35:25.948195-07:00,0.0,10.72948,10729.48 +20389,2025-03-09T13:35:36.682177-07:00,0.0,10.733982,10733.982 +20390,2025-03-09T13:35:47.406191-07:00,0.0,10.724014,10724.014 +20391,2025-03-09T13:35:58.140853-07:00,0.0,10.734662,10734.662 +20392,2025-03-09T13:36:08.867172-07:00,0.0,10.726319,10726.319 +20393,2025-03-09T13:36:19.598411-07:00,0.0,10.731239,10731.239 +20394,2025-03-09T13:36:30.323179-07:00,0.0,10.724768,10724.768 +20395,2025-03-09T13:36:41.058362-07:00,0.0,10.735183,10735.183 +20396,2025-03-09T13:36:51.787261-07:00,0.0,10.728899,10728.899 +20397,2025-03-09T13:37:02.519194-07:00,0.0,10.731933,10731.933 +20398,2025-03-09T13:37:13.250178-07:00,0.0,10.730984,10730.984 +20399,2025-03-09T13:37:23.976351-07:00,0.0,10.726173,10726.173 +20400,2025-03-09T13:37:34.702176-07:00,0.0,10.725825,10725.825 +20401,2025-03-09T13:37:45.424062-07:00,0.0,10.721886,10721.886 +20402,2025-03-09T13:37:56.153782-07:00,0.0,10.72972,10729.72 +20403,2025-03-09T13:38:06.885174-07:00,0.0,10.731392,10731.392 +20404,2025-03-09T13:38:17.611967-07:00,0.0,10.726793,10726.793 +20405,2025-03-09T13:38:28.337235-07:00,0.0,10.725268,10725.268 +20406,2025-03-09T13:38:39.066383-07:00,0.0,10.729148,10729.148 +20407,2025-03-09T13:38:49.788197-07:00,0.0,10.721814,10721.814 +20408,2025-03-09T13:39:00.514245-07:00,0.0,10.726048,10726.048 +20409,2025-03-09T13:39:11.247086-07:00,0.0,10.732841,10732.841 +20410,2025-03-09T13:39:21.973174-07:00,0.0,10.726088,10726.088 +20411,2025-03-09T13:39:32.691339-07:00,0.0,10.718165,10718.165 +20412,2025-03-09T13:39:43.423818-07:00,0.0,10.732479,10732.479 +20413,2025-03-09T13:39:54.148280-07:00,0.0,10.724462,10724.462 +20414,2025-03-09T13:40:04.879552-07:00,0.0,10.731272,10731.272 +20415,2025-03-09T13:40:15.614174-07:00,0.0,10.734622,10734.622 +20416,2025-03-09T13:40:26.341176-07:00,0.0,10.727002,10727.002 +20417,2025-03-09T13:40:37.064385-07:00,0.0,10.723209,10723.209 +20418,2025-03-09T13:40:47.799174-07:00,0.0,10.734789,10734.789 +20419,2025-03-09T13:40:58.530379-07:00,0.0,10.731205,10731.205 +20420,2025-03-09T13:41:09.260326-07:00,0.0,10.729947,10729.947 +20421,2025-03-09T13:41:19.986397-07:00,0.0,10.726071,10726.071 +20422,2025-03-09T13:41:30.721203-07:00,0.0,10.734806,10734.806 +20423,2025-03-09T13:41:41.448755-07:00,0.0,10.727552,10727.552 +20424,2025-03-09T13:41:52.172171-07:00,0.0,10.723416,10723.416 +20425,2025-03-09T13:42:02.906603-07:00,0.0,10.734432,10734.432 +20426,2025-03-09T13:42:13.632537-07:00,0.0,10.725934,10725.934 +20427,2025-03-09T13:42:24.362179-07:00,0.0,10.729642,10729.642 +20428,2025-03-09T13:42:35.088351-07:00,0.0,10.726172,10726.172 +20429,2025-03-09T13:42:45.821204-07:00,0.0,10.732853,10732.853 +20430,2025-03-09T13:42:56.558386-07:00,0.0,10.737182,10737.182 +20431,2025-03-09T13:43:07.288395-07:00,0.0,10.730009,10730.009 +20432,2025-03-09T13:43:18.014174-07:00,0.0,10.725779,10725.779 +20433,2025-03-09T13:43:28.741475-07:00,0.0,10.727301,10727.301 +20434,2025-03-09T13:43:39.475190-07:00,0.0,10.733715,10733.715 +20435,2025-03-09T13:43:50.207404-07:00,0.0,10.732214,10732.214 +20436,2025-03-09T13:44:00.942375-07:00,0.0,10.734971,10734.971 +20437,2025-03-09T13:44:11.671583-07:00,0.0,10.729208,10729.208 +20438,2025-03-09T13:44:22.405358-07:00,0.0,10.733775,10733.775 +20439,2025-03-09T13:44:33.136495-07:00,0.0,10.731137,10731.137 +20440,2025-03-09T13:44:43.856355-07:00,0.0,10.71986,10719.86 +20441,2025-03-09T13:44:54.596059-07:00,0.0,10.739704,10739.704 +20442,2025-03-09T13:45:05.323371-07:00,0.0,10.727312,10727.312 +20443,2025-03-09T13:45:16.050377-07:00,0.0,10.727006,10727.006 +20444,2025-03-09T13:45:26.780176-07:00,0.0,10.729799,10729.799 +20445,2025-03-09T13:45:37.518201-07:00,0.0,10.738025,10738.025 +20446,2025-03-09T13:45:48.245173-07:00,0.0,10.726972,10726.972 +20447,2025-03-09T13:45:58.975476-07:00,0.0,10.730303,10730.303 +20448,2025-03-09T13:46:09.714205-07:00,0.0,10.738729,10738.729 +20449,2025-03-09T13:46:20.449248-07:00,0.0,10.735043,10735.043 +20450,2025-03-09T13:46:31.170058-07:00,0.0,10.72081,10720.81 +20451,2025-03-09T13:46:41.913215-07:00,0.0,10.743157,10743.157 +20452,2025-03-09T13:46:52.641177-07:00,0.0,10.727962,10727.962 +20453,2025-03-09T13:47:03.375252-07:00,0.0,10.734075,10734.075 +20454,2025-03-09T13:47:14.106426-07:00,0.0,10.731174,10731.174 +20455,2025-03-09T13:47:24.839213-07:00,0.0,10.732787,10732.787 +20456,2025-03-09T13:47:35.574358-07:00,0.0,10.735145,10735.145 +20457,2025-03-09T13:47:46.303354-07:00,0.0,10.728996,10728.996 +20458,2025-03-09T13:47:57.040174-07:00,0.0,10.73682,10736.82 +20459,2025-03-09T13:48:07.768176-07:00,0.0,10.728002,10728.002 +20460,2025-03-09T13:48:18.505179-07:00,0.0,10.737003,10737.003 +20461,2025-03-09T13:48:29.234197-07:00,0.0,10.729018,10729.018 +20462,2025-03-09T13:48:39.966387-07:00,0.0,10.73219,10732.19 +20463,2025-03-09T13:48:50.701193-07:00,0.0,10.734806,10734.806 +20464,2025-03-09T13:49:01.441453-07:00,0.0,10.74026,10740.26 +20465,2025-03-09T13:49:12.170173-07:00,0.0,10.72872,10728.72 +20466,2025-03-09T13:49:22.897370-07:00,0.0,10.727197,10727.197 +20467,2025-03-09T13:49:33.624565-07:00,0.0,10.727195,10727.195 +20468,2025-03-09T13:49:44.360176-07:00,0.0,10.735611,10735.611 +20469,2025-03-09T13:49:55.096391-07:00,0.0,10.736215,10736.215 +20470,2025-03-09T13:50:05.827471-07:00,0.0,10.73108,10731.08 +20471,2025-03-09T13:50:16.553188-07:00,0.0,10.725717,10725.717 +20472,2025-03-09T13:50:27.285170-07:00,0.0,10.731982,10731.982 +20473,2025-03-09T13:50:38.022519-07:00,0.0,10.737349,10737.349 +20474,2025-03-09T13:50:48.754351-07:00,0.0,10.731832,10731.832 +20475,2025-03-09T13:50:59.478173-07:00,0.0,10.723822,10723.822 +20476,2025-03-09T13:51:10.211385-07:00,0.0,10.733212,10733.212 +20477,2025-03-09T13:51:20.951836-07:00,0.0,10.740451,10740.451 +20478,2025-03-09T13:51:31.676172-07:00,0.0,10.724336,10724.336 +20479,2025-03-09T13:51:42.412201-07:00,0.0,10.736029,10736.029 +20480,2025-03-09T13:51:53.136343-07:00,0.0,10.724142,10724.142 +20481,2025-03-09T13:52:03.875199-07:00,0.0,10.738856,10738.856 +20482,2025-03-09T13:52:14.601611-07:00,0.0,10.726412,10726.412 +20483,2025-03-09T13:52:25.359020-07:00,0.0,10.757409,10757.409 +20484,2025-03-09T13:52:36.092833-07:00,0.0,10.733813,10733.813 +20485,2025-03-09T13:52:46.826812-07:00,0.0,10.733979,10733.979 +20486,2025-03-09T13:52:57.561787-07:00,0.0,10.734975,10734.975 +20487,2025-03-09T13:53:08.290971-07:00,0.0,10.729184,10729.184 +20488,2025-03-09T13:53:19.033442-07:00,0.0,10.742471,10742.471 +20489,2025-03-09T13:53:29.756790-07:00,0.0,10.723348,10723.348 +20490,2025-03-09T13:53:40.496880-07:00,0.0,10.74009,10740.09 +20491,2025-03-09T13:53:51.224992-07:00,0.0,10.728112,10728.112 +20492,2025-03-09T13:54:01.952073-07:00,0.0,10.727081,10727.081 +20493,2025-03-09T13:54:12.685789-07:00,0.0,10.733716,10733.716 +20494,2025-03-09T13:54:23.422773-07:00,0.0,10.736984,10736.984 +20495,2025-03-09T13:54:34.149380-07:00,0.0,10.726607,10726.607 +20496,2025-03-09T13:54:44.882882-07:00,0.0,10.733502,10733.502 +20497,2025-03-09T13:54:55.607549-07:00,0.0,10.724667,10724.667 +20498,2025-03-09T13:55:06.339789-07:00,0.0,10.73224,10732.24 +20499,2025-03-09T13:55:17.074003-07:00,0.0,10.734214,10734.214 +20500,2025-03-09T13:55:27.806969-07:00,0.0,10.732966,10732.966 +20501,2025-03-09T13:55:38.539323-07:00,0.0,10.732354,10732.354 +20502,2025-03-09T13:55:49.263899-07:00,0.0,10.724576,10724.576 +20503,2025-03-09T13:56:00.000392-07:00,0.0,10.736493,10736.493 +20504,2025-03-09T13:56:10.728797-07:00,0.0,10.728405,10728.405 +20505,2025-03-09T13:56:21.452790-07:00,0.0,10.723993,10723.993 +20506,2025-03-09T13:56:32.184958-07:00,0.0,10.732168,10732.168 +20507,2025-03-09T13:56:42.919832-07:00,0.0,10.734874,10734.874 +20508,2025-03-09T13:56:53.645274-07:00,0.0,10.725442,10725.442 +20509,2025-03-09T13:57:04.384458-07:00,0.0,10.739184,10739.184 +20510,2025-03-09T13:57:15.103789-07:00,0.0,10.719331,10719.331 +20511,2025-03-09T13:57:25.842973-07:00,0.0,10.739184,10739.184 +20512,2025-03-09T13:57:36.569957-07:00,0.0,10.726984,10726.984 +20513,2025-03-09T13:57:47.294862-07:00,0.0,10.724905,10724.905 +20514,2025-03-09T13:57:58.030857-07:00,0.0,10.735995,10735.995 +20515,2025-03-09T13:58:08.757157-07:00,0.0,10.7263,10726.3 +20516,2025-03-09T13:58:19.484787-07:00,0.0,10.72763,10727.63 +20517,2025-03-09T13:58:30.204968-07:00,0.0,10.720181,10720.181 +20518,2025-03-09T13:58:40.939119-07:00,0.0,10.734151,10734.151 +20519,2025-03-09T13:58:51.663882-07:00,0.0,10.724763,10724.763 +20520,2025-03-09T13:59:02.393973-07:00,0.0,10.730091,10730.091 +20521,2025-03-09T13:59:13.119813-07:00,0.0,10.72584,10725.84 +20522,2025-03-09T13:59:23.849862-07:00,0.0,10.730049,10730.049 +20523,2025-03-09T13:59:34.582963-07:00,0.0,10.733101,10733.101 +20524,2025-03-09T13:59:45.310936-07:00,0.0,10.727973,10727.973 +20525,2025-03-09T13:59:56.041197-07:00,0.0,10.730261,10730.261 +20526,2025-03-09T14:00:06.769981-07:00,0.0,10.728784,10728.784 +20527,2025-03-09T14:00:17.499862-07:00,0.0,10.729881,10729.881 +20528,2025-03-09T14:00:28.223163-07:00,0.0,10.723301,10723.301 +20529,2025-03-09T14:00:38.952105-07:00,0.0,10.728942,10728.942 +20530,2025-03-09T14:00:49.689123-07:00,0.0,10.737018,10737.018 +20531,2025-03-09T14:01:00.419031-07:00,0.0,10.729908,10729.908 +20532,2025-03-09T14:01:11.139789-07:00,0.0,10.720758,10720.758 +20533,2025-03-09T14:01:21.876908-07:00,0.0,10.737119,10737.119 +20534,2025-03-09T14:01:32.603893-07:00,0.0,10.726985,10726.985 +20535,2025-03-09T14:01:43.338785-07:00,0.0,10.734892,10734.892 +20536,2025-03-09T14:01:54.069847-07:00,0.0,10.731062,10731.062 +20537,2025-03-09T14:02:04.798117-07:00,0.0,10.72827,10728.27 +20538,2025-03-09T14:02:15.531861-07:00,0.0,10.733744,10733.744 +20539,2025-03-09T14:02:26.268790-07:00,0.0,10.736929,10736.929 +20540,2025-03-09T14:02:37.004918-07:00,0.0,10.736128,10736.128 +20541,2025-03-09T14:02:58.465782-07:00,0.0,21.460864,21460.864 +20542,2025-03-09T14:03:09.191416-07:00,0.0,10.725634,10725.634 +20543,2025-03-09T14:03:19.929988-07:00,0.0,10.738572,10738.572 +20544,2025-03-09T14:03:30.663785-07:00,0.0,10.733797,10733.797 +20545,2025-03-09T14:03:41.393789-07:00,0.0,10.730004,10730.004 +20546,2025-03-09T14:03:52.127783-07:00,0.0,10.733994,10733.994 +20547,2025-03-09T14:04:02.853071-07:00,0.0,10.725288,10725.288 +20548,2025-03-09T14:04:13.589005-07:00,0.0,10.735934,10735.934 +20549,2025-03-09T14:04:24.324801-07:00,0.0,10.735796,10735.796 +20550,2025-03-09T14:04:35.051357-07:00,0.0,10.726556,10726.556 +20551,2025-03-09T14:04:45.432365-07:00,0.0,10.381008,10381.008 +20552,2025-03-09T14:04:45.780856-07:00,0.0,0.348491,348.491 +20553,2025-03-09T14:04:56.508815-07:00,0.0,10.727959,10727.959 +20554,2025-03-09T14:05:07.245972-07:00,0.0,10.737157,10737.157 +20555,2025-03-09T14:05:17.977784-07:00,0.0,10.731812,10731.812 +20556,2025-03-09T14:05:28.714023-07:00,0.0,10.736239,10736.239 +20557,2025-03-09T14:05:39.445025-07:00,0.0,10.731002,10731.002 +20558,2025-03-09T14:05:50.168790-07:00,0.0,10.723765,10723.765 +20559,2025-03-09T14:06:00.907148-07:00,0.0,10.738358,10738.358 +20560,2025-03-09T14:06:11.630051-07:00,0.0,10.722903,10722.903 +20561,2025-03-09T14:06:22.372836-07:00,0.0,10.742785,10742.785 +20562,2025-03-09T14:06:33.091859-07:00,0.0,10.719023,10719.023 +20563,2025-03-09T14:06:43.830989-07:00,0.0,10.73913,10739.13 +20564,2025-03-09T14:06:54.560919-07:00,0.0,10.72993,10729.93 +20565,2025-03-09T14:07:05.295789-07:00,0.0,10.73487,10734.87 +20566,2025-03-09T14:07:16.023997-07:00,0.0,10.728208,10728.208 +20567,2025-03-09T14:07:26.764942-07:00,0.0,10.740945,10740.945 +20568,2025-03-09T14:07:37.492083-07:00,0.0,10.727141,10727.141 +20569,2025-03-09T14:07:39.939979-07:00,331.0,2.447896,2447.896 +20570,2025-03-09T14:07:48.218880-07:00,398.0,8.278901,8278.901 +20571,2025-03-09T14:07:58.953995-07:00,317.0,10.735115,10735.115 +20572,2025-03-09T14:08:09.683786-07:00,353.0,10.729791,10729.791 +20573,2025-03-09T14:08:20.407575-07:00,336.0,10.723789,10723.789 +20574,2025-03-09T14:08:31.144882-07:00,400.0,10.737307,10737.307 +20575,2025-03-09T14:08:41.877796-07:00,369.0,10.732914,10732.914 +20576,2025-03-09T14:08:46.102378-07:00,0.0,4.224582,4224.582 +20577,2025-03-09T14:08:52.603908-07:00,0.0,6.50153,6501.53 +20578,2025-03-09T14:09:03.328923-07:00,0.0,10.725015,10725.015 +20579,2025-03-09T14:09:14.061857-07:00,0.0,10.732934,10732.934 +20580,2025-03-09T14:09:24.793005-07:00,0.0,10.731148,10731.148 +20581,2025-03-09T14:09:35.523975-07:00,0.0,10.73097,10730.97 +20582,2025-03-09T14:09:46.258998-07:00,0.0,10.735023,10735.023 +20583,2025-03-09T14:09:56.978978-07:00,0.0,10.71998,10719.98 +20584,2025-03-09T14:10:07.708786-07:00,0.0,10.729808,10729.808 +20585,2025-03-09T14:10:18.447783-07:00,0.0,10.738997,10738.997 +20586,2025-03-09T14:10:29.169791-07:00,0.0,10.722008,10722.008 +20587,2025-03-09T14:10:39.905991-07:00,0.0,10.7362,10736.2 +20588,2025-03-09T14:10:50.636782-07:00,0.0,10.730791,10730.791 +20589,2025-03-09T14:11:01.352969-07:00,0.0,10.716187,10716.187 +20590,2025-03-09T14:11:12.088133-07:00,0.0,10.735164,10735.164 +20591,2025-03-09T14:11:22.811787-07:00,0.0,10.723654,10723.654 +20592,2025-03-09T14:11:33.541091-07:00,0.0,10.729304,10729.304 +20593,2025-03-09T14:11:44.268995-07:00,0.0,10.727904,10727.904 +20594,2025-03-09T14:11:55.004793-07:00,0.0,10.735798,10735.798 +20595,2025-03-09T14:12:05.732969-07:00,0.0,10.728176,10728.176 +20596,2025-03-09T14:12:16.465784-07:00,0.0,10.732815,10732.815 +20597,2025-03-09T14:12:27.192798-07:00,0.0,10.727014,10727.014 +20598,2025-03-09T14:12:37.921119-07:00,0.0,10.728321,10728.321 +20599,2025-03-09T14:12:48.652786-07:00,0.0,10.731667,10731.667 +20600,2025-03-09T14:12:59.376965-07:00,0.0,10.724179,10724.179 +20601,2025-03-09T14:13:10.110801-07:00,0.0,10.733836,10733.836 +20602,2025-03-09T14:13:20.843937-07:00,0.0,10.733136,10733.136 +20603,2025-03-09T14:13:31.579021-07:00,0.0,10.735084,10735.084 +20604,2025-03-09T14:13:42.308966-07:00,0.0,10.729945,10729.945 +20605,2025-03-09T14:13:53.043875-07:00,0.0,10.734909,10734.909 +20606,2025-03-09T14:14:03.768997-07:00,0.0,10.725122,10725.122 +20607,2025-03-09T14:14:14.506981-07:00,0.0,10.737984,10737.984 +20608,2025-03-09T14:14:25.231217-07:00,0.0,10.724236,10724.236 +20609,2025-03-09T14:14:35.965787-07:00,0.0,10.73457,10734.57 +20610,2025-03-09T14:14:46.691025-07:00,0.0,10.725238,10725.238 +20611,2025-03-09T14:14:57.423997-07:00,0.0,10.732972,10732.972 +20612,2025-03-09T14:15:08.163787-07:00,0.0,10.73979,10739.79 +20613,2025-03-09T14:15:18.893027-07:00,0.0,10.72924,10729.24 +20614,2025-03-09T14:15:29.625611-07:00,0.0,10.732584,10732.584 +20615,2025-03-09T14:15:40.368047-07:00,0.0,10.742436,10742.436 +20616,2025-03-09T14:15:51.091814-07:00,0.0,10.723767,10723.767 +20617,2025-03-09T14:16:01.823955-07:00,0.0,10.732141,10732.141 +20618,2025-03-09T14:16:12.557923-07:00,0.0,10.733968,10733.968 +20619,2025-03-09T14:16:23.283008-07:00,0.0,10.725085,10725.085 +20620,2025-03-09T14:16:34.012963-07:00,0.0,10.729955,10729.955 +20621,2025-03-09T14:16:44.748786-07:00,0.0,10.735823,10735.823 +20622,2025-03-09T14:16:55.470278-07:00,0.0,10.721492,10721.492 +20623,2025-03-09T14:17:06.205152-07:00,0.0,10.734874,10734.874 +20624,2025-03-09T14:17:16.930786-07:00,0.0,10.725634,10725.634 +20625,2025-03-09T14:17:27.666861-07:00,0.0,10.736075,10736.075 +20626,2025-03-09T14:17:38.396975-07:00,0.0,10.730114,10730.114 +20627,2025-03-09T14:17:49.119823-07:00,0.0,10.722848,10722.848 +20628,2025-03-09T14:17:59.850997-07:00,0.0,10.731174,10731.174 +20629,2025-03-09T14:18:10.590004-07:00,0.0,10.739007,10739.007 +20630,2025-03-09T14:18:21.313854-07:00,0.0,10.72385,10723.85 +20631,2025-03-09T14:18:32.049843-07:00,0.0,10.735989,10735.989 +20632,2025-03-09T14:18:42.777964-07:00,0.0,10.728121,10728.121 +20633,2025-03-09T14:18:53.508000-07:00,0.0,10.730036,10730.036 +20634,2025-03-09T14:19:04.232790-07:00,0.0,10.72479,10724.79 +20635,2025-03-09T14:19:14.967970-07:00,0.0,10.73518,10735.18 +20636,2025-03-09T14:19:25.690099-07:00,0.0,10.722129,10722.129 +20637,2025-03-09T14:19:36.418990-07:00,0.0,10.728891,10728.891 +20638,2025-03-09T14:19:47.156739-07:00,0.0,10.737749,10737.749 +20639,2025-03-09T14:19:57.881820-07:00,0.0,10.725081,10725.081 +20640,2025-03-09T14:20:08.615594-07:00,0.0,10.733774,10733.774 +20641,2025-03-09T14:20:19.350012-07:00,0.0,10.734418,10734.418 +20642,2025-03-09T14:20:30.079823-07:00,0.0,10.729811,10729.811 +20643,2025-03-09T14:20:40.818991-07:00,0.0,10.739168,10739.168 +20644,2025-03-09T14:20:51.548967-07:00,0.0,10.729976,10729.976 +20645,2025-03-09T14:21:02.282822-07:00,0.0,10.733855,10733.855 +20646,2025-03-09T14:21:13.011998-07:00,0.0,10.729176,10729.176 +20647,2025-03-09T14:21:23.740880-07:00,0.0,10.728882,10728.882 +20648,2025-03-09T14:21:34.476600-07:00,0.0,10.73572,10735.72 +20649,2025-03-09T14:21:45.201781-07:00,0.0,10.725181,10725.181 +20650,2025-03-09T14:21:55.931985-07:00,0.0,10.730204,10730.204 +20651,2025-03-09T14:22:06.663992-07:00,0.0,10.732007,10732.007 +20652,2025-03-09T14:22:17.393788-07:00,0.0,10.729796,10729.796 +20653,2025-03-09T14:22:28.128789-07:00,0.0,10.735001,10735.001 +20654,2025-03-09T14:22:38.853066-07:00,0.0,10.724277,10724.277 +20655,2025-03-09T14:22:49.581820-07:00,0.0,10.728754,10728.754 +20656,2025-03-09T14:23:00.312576-07:00,0.0,10.730756,10730.756 +20657,2025-03-09T14:23:11.043995-07:00,0.0,10.731419,10731.419 +20658,2025-03-09T14:23:21.777854-07:00,0.0,10.733859,10733.859 +20659,2025-03-09T14:23:32.508925-07:00,0.0,10.731071,10731.071 +20660,2025-03-09T14:23:43.243453-07:00,0.0,10.734528,10734.528 +20661,2025-03-09T14:23:53.973166-07:00,0.0,10.729713,10729.713 +20662,2025-03-09T14:24:04.701269-07:00,0.0,10.728103,10728.103 +20663,2025-03-09T14:24:15.432258-07:00,0.0,10.730989,10730.989 +20664,2025-03-09T14:24:26.162856-07:00,0.0,10.730598,10730.598 +20665,2025-03-09T14:24:36.884203-07:00,0.0,10.721347,10721.347 +20666,2025-03-09T14:24:47.618901-07:00,0.0,10.734698,10734.698 +20667,2025-03-09T14:24:58.344793-07:00,0.0,10.725892,10725.892 +20668,2025-03-09T14:25:09.074029-07:00,0.0,10.729236,10729.236 +20669,2025-03-09T14:25:19.809787-07:00,0.0,10.735758,10735.758 +20670,2025-03-09T14:25:30.540985-07:00,0.0,10.731198,10731.198 +20671,2025-03-09T14:25:41.274813-07:00,0.0,10.733828,10733.828 +20672,2025-03-09T14:25:52.006221-07:00,0.0,10.731408,10731.408 +20673,2025-03-09T14:26:02.737786-07:00,0.0,10.731565,10731.565 +20674,2025-03-09T14:26:13.467997-07:00,0.0,10.730211,10730.211 +20675,2025-03-09T14:26:24.207592-07:00,0.0,10.739595,10739.595 +20676,2025-03-09T14:26:34.936431-07:00,0.0,10.728839,10728.839 +20677,2025-03-09T14:26:45.673043-07:00,0.0,10.736612,10736.612 +20678,2025-03-09T14:26:56.407970-07:00,0.0,10.734927,10734.927 +20679,2025-03-09T14:27:07.129785-07:00,0.0,10.721815,10721.815 +20680,2025-03-09T14:27:17.869838-07:00,0.0,10.740053,10740.053 +20681,2025-03-09T14:27:28.592994-07:00,0.0,10.723156,10723.156 +20682,2025-03-09T14:27:39.321787-07:00,0.0,10.728793,10728.793 +20683,2025-03-09T14:27:50.051786-07:00,0.0,10.729999,10729.999 +20684,2025-03-09T14:28:00.786179-07:00,0.0,10.734393,10734.393 +20685,2025-03-09T14:28:11.515038-07:00,0.0,10.728859,10728.859 +20686,2025-03-09T14:28:22.250787-07:00,0.0,10.735749,10735.749 +20687,2025-03-09T14:28:32.981160-07:00,0.0,10.730373,10730.373 +20688,2025-03-09T14:28:43.708786-07:00,0.0,10.727626,10727.626 +20689,2025-03-09T14:28:54.435787-07:00,0.0,10.727001,10727.001 +20690,2025-03-09T14:29:05.171814-07:00,0.0,10.736027,10736.027 +20691,2025-03-09T14:29:15.898811-07:00,0.0,10.726997,10726.997 +20692,2025-03-09T14:29:26.628791-07:00,0.0,10.72998,10729.98 +20693,2025-03-09T14:29:37.363977-07:00,0.0,10.735186,10735.186 +20694,2025-03-09T14:29:48.082937-07:00,0.0,10.71896,10718.96 +20695,2025-03-09T14:29:58.817789-07:00,0.0,10.734852,10734.852 +20696,2025-03-09T14:30:09.546945-07:00,0.0,10.729156,10729.156 +20697,2025-03-09T14:30:20.274048-07:00,0.0,10.727103,10727.103 +20698,2025-03-09T14:30:31.005890-07:00,0.0,10.731842,10731.842 +20699,2025-03-09T14:30:41.735972-07:00,0.0,10.730082,10730.082 +20700,2025-03-09T14:30:52.462796-07:00,0.0,10.726824,10726.824 +20701,2025-03-09T14:31:03.192190-07:00,0.0,10.729394,10729.394 +20702,2025-03-09T14:31:13.918856-07:00,0.0,10.726666,10726.666 +20703,2025-03-09T14:31:24.648788-07:00,0.0,10.729932,10729.932 +20704,2025-03-09T14:31:35.377169-07:00,0.0,10.728381,10728.381 +20705,2025-03-09T14:31:46.116968-07:00,0.0,10.739799,10739.799 +20706,2025-03-09T14:31:56.840985-07:00,0.0,10.724017,10724.017 +20707,2025-03-09T14:32:07.573819-07:00,0.0,10.732834,10732.834 +20708,2025-03-09T14:32:18.299810-07:00,0.0,10.725991,10725.991 +20709,2025-03-09T14:32:29.029999-07:00,0.0,10.730189,10730.189 +20710,2025-03-09T14:32:39.763058-07:00,0.0,10.733059,10733.059 +20711,2025-03-09T14:32:50.490790-07:00,0.0,10.727732,10727.732 +20712,2025-03-09T14:33:01.217782-07:00,0.0,10.726992,10726.992 +20713,2025-03-09T14:33:11.950050-07:00,0.0,10.732268,10732.268 +20714,2025-03-09T14:33:22.680810-07:00,0.0,10.73076,10730.76 +20715,2025-03-09T14:33:33.403793-07:00,0.0,10.722983,10722.983 +20716,2025-03-09T14:33:44.142177-07:00,0.0,10.738384,10738.384 +20717,2025-03-09T14:33:54.870997-07:00,0.0,10.72882,10728.82 +20718,2025-03-09T14:34:05.598971-07:00,0.0,10.727974,10727.974 +20719,2025-03-09T14:34:16.332805-07:00,0.0,10.733834,10733.834 +20720,2025-03-09T14:34:27.062925-07:00,0.0,10.73012,10730.12 +20721,2025-03-09T14:34:37.787999-07:00,0.0,10.725074,10725.074 +20722,2025-03-09T14:34:48.523017-07:00,0.0,10.735018,10735.018 +20723,2025-03-09T14:34:59.248789-07:00,0.0,10.725772,10725.772 +20724,2025-03-09T14:35:09.981787-07:00,0.0,10.732998,10732.998 +20725,2025-03-09T14:35:20.712945-07:00,0.0,10.731158,10731.158 +20726,2025-03-09T14:35:31.433997-07:00,0.0,10.721052,10721.052 +20727,2025-03-09T14:35:42.171786-07:00,0.0,10.737789,10737.789 +20728,2025-03-09T14:35:52.895382-07:00,0.0,10.723596,10723.596 +20729,2025-03-09T14:36:03.617783-07:00,0.0,10.722401,10722.401 +20730,2025-03-09T14:36:14.349803-07:00,0.0,10.73202,10732.02 +20731,2025-03-09T14:36:25.079152-07:00,0.0,10.729349,10729.349 +20732,2025-03-09T14:36:35.803791-07:00,0.0,10.724639,10724.639 +20733,2025-03-09T14:36:46.531611-07:00,0.0,10.72782,10727.82 +20734,2025-03-09T14:36:57.259020-07:00,0.0,10.727409,10727.409 +20735,2025-03-09T14:37:07.982942-07:00,0.0,10.723922,10723.922 +20736,2025-03-09T14:37:18.719141-07:00,0.0,10.736199,10736.199 +20737,2025-03-09T14:37:29.438809-07:00,0.0,10.719668,10719.668 +20738,2025-03-09T14:37:40.173583-07:00,0.0,10.734774,10734.774 +20739,2025-03-09T14:37:50.906074-07:00,0.0,10.732491,10732.491 +20740,2025-03-09T14:38:01.636790-07:00,0.0,10.730716,10730.716 +20741,2025-03-09T14:38:12.367159-07:00,0.0,10.730369,10730.369 +20742,2025-03-09T14:38:23.101182-07:00,0.0,10.734023,10734.023 +20743,2025-03-09T14:38:33.832790-07:00,0.0,10.731608,10731.608 +20744,2025-03-09T14:38:44.559995-07:00,0.0,10.727205,10727.205 +20745,2025-03-09T14:38:55.287787-07:00,0.0,10.727792,10727.792 +20746,2025-03-09T14:39:06.023788-07:00,0.0,10.736001,10736.001 +20747,2025-03-09T14:39:16.749802-07:00,0.0,10.726014,10726.014 +20748,2025-03-09T14:39:27.481982-07:00,0.0,10.73218,10732.18 +20749,2025-03-09T14:39:38.209786-07:00,0.0,10.727804,10727.804 +20750,2025-03-09T14:39:48.947988-07:00,0.0,10.738202,10738.202 +20751,2025-03-09T14:39:59.679963-07:00,0.0,10.731975,10731.975 +20752,2025-03-09T14:40:10.407786-07:00,0.0,10.727823,10727.823 +20753,2025-03-09T14:40:21.129901-07:00,0.0,10.722115,10722.115 +20754,2025-03-09T14:40:31.867096-07:00,0.0,10.737195,10737.195 +20755,2025-03-09T14:40:42.587789-07:00,0.0,10.720693,10720.693 +20756,2025-03-09T14:40:53.325206-07:00,0.0,10.737417,10737.417 +20757,2025-03-09T14:41:04.055817-07:00,0.0,10.730611,10730.611 +20758,2025-03-09T14:41:14.782941-07:00,0.0,10.727124,10727.124 +20759,2025-03-09T14:41:25.511955-07:00,0.0,10.729014,10729.014 +20760,2025-03-09T14:41:36.246544-07:00,0.0,10.734589,10734.589 +20761,2025-03-09T14:41:46.979999-07:00,0.0,10.733455,10733.455 +20762,2025-03-09T14:41:57.708974-07:00,0.0,10.728975,10728.975 +20763,2025-03-09T14:42:08.438545-07:00,0.0,10.729571,10729.571 +20764,2025-03-09T14:42:19.170991-07:00,0.0,10.732446,10732.446 +20765,2025-03-09T14:42:29.894965-07:00,0.0,10.723974,10723.974 +20766,2025-03-09T14:42:40.621789-07:00,0.0,10.726824,10726.824 +20767,2025-03-09T14:42:51.354029-07:00,0.0,10.73224,10732.24 +20768,2025-03-09T14:43:02.078425-07:00,0.0,10.724396,10724.396 +20769,2025-03-09T14:43:12.815789-07:00,0.0,10.737364,10737.364 +20770,2025-03-09T14:43:23.547820-07:00,0.0,10.732031,10732.031 +20771,2025-03-09T14:43:34.270971-07:00,0.0,10.723151,10723.151 +20772,2025-03-09T14:43:45.005910-07:00,0.0,10.734939,10734.939 +20773,2025-03-09T14:43:55.725969-07:00,0.0,10.720059,10720.059 +20774,2025-03-09T14:44:06.457786-07:00,0.0,10.731817,10731.817 +20775,2025-03-09T14:44:17.192994-07:00,0.0,10.735208,10735.208 +20776,2025-03-09T14:44:27.920926-07:00,0.0,10.727932,10727.932 +20777,2025-03-09T14:44:38.650084-07:00,0.0,10.729158,10729.158 +20778,2025-03-09T14:44:49.373993-07:00,0.0,10.723909,10723.909 +20779,2025-03-09T14:45:00.100980-07:00,0.0,10.726987,10726.987 +20780,2025-03-09T14:45:10.834792-07:00,0.0,10.733812,10733.812 +20781,2025-03-09T14:45:21.561997-07:00,0.0,10.727205,10727.205 +20782,2025-03-09T14:45:32.284951-07:00,0.0,10.722954,10722.954 +20783,2025-03-09T14:45:43.021790-07:00,0.0,10.736839,10736.839 +20784,2025-03-09T14:45:53.746225-07:00,0.0,10.724435,10724.435 +20785,2025-03-09T14:46:04.479611-07:00,0.0,10.733386,10733.386 +20786,2025-03-09T14:46:15.205789-07:00,0.0,10.726178,10726.178 +20787,2025-03-09T14:46:25.936858-07:00,0.0,10.731069,10731.069 +20788,2025-03-09T14:46:36.659786-07:00,0.0,10.722928,10722.928 +20789,2025-03-09T14:46:47.391063-07:00,0.0,10.731277,10731.277 +20790,2025-03-09T14:46:58.126110-07:00,0.0,10.735047,10735.047 +20791,2025-03-09T14:47:08.853789-07:00,0.0,10.727679,10727.679 +20792,2025-03-09T14:47:19.575787-07:00,0.0,10.721998,10721.998 +20793,2025-03-09T14:47:30.305578-07:00,0.0,10.729791,10729.791 +20794,2025-03-09T14:47:41.039005-07:00,0.0,10.733427,10733.427 +20795,2025-03-09T14:47:51.762963-07:00,0.0,10.723958,10723.958 +20796,2025-03-09T14:48:02.493416-07:00,0.0,10.730453,10730.453 +20797,2025-03-09T14:48:13.221990-07:00,0.0,10.728574,10728.574 +20798,2025-03-09T14:48:23.954840-07:00,0.0,10.73285,10732.85 +20799,2025-03-09T14:48:34.689178-07:00,0.0,10.734338,10734.338 +20800,2025-03-09T14:48:45.417787-07:00,0.0,10.728609,10728.609 +20801,2025-03-09T14:48:56.142012-07:00,0.0,10.724225,10724.225 +20802,2025-03-09T14:49:06.883003-07:00,0.0,10.740991,10740.991 +20803,2025-03-09T14:49:17.610786-07:00,0.0,10.727783,10727.783 +20804,2025-03-09T14:49:28.344035-07:00,0.0,10.733249,10733.249 +20805,2025-03-09T14:49:39.074977-07:00,0.0,10.730942,10730.942 +20806,2025-03-09T14:49:49.803294-07:00,0.0,10.728317,10728.317 +20807,2025-03-09T14:50:00.537809-07:00,0.0,10.734515,10734.515 +20808,2025-03-09T14:50:11.264952-07:00,0.0,10.727143,10727.143 +20809,2025-03-09T14:50:21.991789-07:00,0.0,10.726837,10726.837 +20810,2025-03-09T14:50:32.725789-07:00,0.0,10.734,10734.0 +20811,2025-03-09T14:50:43.454101-07:00,0.0,10.728312,10728.312 +20812,2025-03-09T14:50:54.181786-07:00,0.0,10.727685,10727.685 +20813,2025-03-09T14:51:04.917792-07:00,0.0,10.736006,10736.006 +20814,2025-03-09T14:51:15.647190-07:00,0.0,10.729398,10729.398 +20815,2025-03-09T14:51:26.378182-07:00,0.0,10.730992,10730.992 +20816,2025-03-09T14:51:37.110790-07:00,0.0,10.732608,10732.608 +20817,2025-03-09T14:51:47.835776-07:00,0.0,10.724986,10724.986 +20818,2025-03-09T14:51:58.569788-07:00,0.0,10.734012,10734.012 +20819,2025-03-09T14:52:09.304788-07:00,0.0,10.735,10735.0 +20820,2025-03-09T14:52:20.032065-07:00,0.0,10.727277,10727.277 +20821,2025-03-09T14:52:30.780590-07:00,0.0,10.748525,10748.525 +20822,2025-03-09T14:52:41.506384-07:00,0.0,10.725794,10725.794 +20823,2025-03-09T14:52:52.236557-07:00,0.0,10.730173,10730.173 +20824,2025-03-09T14:53:02.971430-07:00,0.0,10.734873,10734.873 +20825,2025-03-09T14:53:13.691566-07:00,0.0,10.720136,10720.136 +20826,2025-03-09T14:53:24.428084-07:00,0.0,10.736518,10736.518 +20827,2025-03-09T14:53:35.151412-07:00,0.0,10.723328,10723.328 +20828,2025-03-09T14:53:45.882540-07:00,0.0,10.731128,10731.128 +20829,2025-03-09T14:53:56.612059-07:00,0.0,10.729519,10729.519 +20830,2025-03-09T14:54:07.344414-07:00,0.0,10.732355,10732.355 +20831,2025-03-09T14:54:18.071040-07:00,0.0,10.726626,10726.626 +20832,2025-03-09T14:54:28.799381-07:00,0.0,10.728341,10728.341 +20833,2025-03-09T14:54:39.524386-07:00,0.0,10.725005,10725.005 +20834,2025-03-09T14:54:50.253837-07:00,0.0,10.729451,10729.451 +20835,2025-03-09T14:55:00.980445-07:00,0.0,10.726608,10726.608 +20836,2025-03-09T14:55:11.711654-07:00,0.0,10.731209,10731.209 +20837,2025-03-09T14:55:22.446590-07:00,0.0,10.734936,10734.936 +20838,2025-03-09T14:55:33.176384-07:00,0.0,10.729794,10729.794 +20839,2025-03-09T14:55:43.900391-07:00,0.0,10.724007,10724.007 +20840,2025-03-09T14:55:54.635573-07:00,0.0,10.735182,10735.182 +20841,2025-03-09T14:56:05.360455-07:00,0.0,10.724882,10724.882 +20842,2025-03-09T14:56:16.089583-07:00,0.0,10.729128,10729.128 +20843,2025-03-09T14:56:26.818385-07:00,0.0,10.728802,10728.802 +20844,2025-03-09T14:56:37.548619-07:00,0.0,10.730234,10730.234 +20845,2025-03-09T14:56:48.285387-07:00,0.0,10.736768,10736.768 +20846,2025-03-09T14:56:59.014333-07:00,0.0,10.728946,10728.946 +20847,2025-03-09T14:57:09.745410-07:00,0.0,10.731077,10731.077 +20848,2025-03-09T14:57:20.469592-07:00,0.0,10.724182,10724.182 +20849,2025-03-09T14:57:31.200587-07:00,0.0,10.730995,10730.995 +20850,2025-03-09T14:57:41.937381-07:00,0.0,10.736794,10736.794 +20851,2025-03-09T14:57:52.671603-07:00,0.0,10.734222,10734.222 +20852,2025-03-09T14:58:03.396414-07:00,0.0,10.724811,10724.811 +20853,2025-03-09T14:58:14.127386-07:00,0.0,10.730972,10730.972 +20854,2025-03-09T14:58:24.858586-07:00,0.0,10.7312,10731.2 +20855,2025-03-09T14:58:35.587910-07:00,0.0,10.729324,10729.324 +20856,2025-03-09T14:58:46.323384-07:00,0.0,10.735474,10735.474 +20857,2025-03-09T14:58:57.051389-07:00,0.0,10.728005,10728.005 +20858,2025-03-09T14:59:07.777477-07:00,0.0,10.726088,10726.088 +20859,2025-03-09T14:59:18.511383-07:00,0.0,10.733906,10733.906 +20860,2025-03-09T14:59:29.238162-07:00,0.0,10.726779,10726.779 +20861,2025-03-09T14:59:39.958593-07:00,0.0,10.720431,10720.431 +20862,2025-03-09T14:59:50.692458-07:00,0.0,10.733865,10733.865 +20863,2025-03-09T15:00:01.414883-07:00,0.0,10.722425,10722.425 +20864,2025-03-09T15:00:12.144443-07:00,0.0,10.72956,10729.56 +20865,2025-03-09T15:00:33.600575-07:00,0.0,21.456132,21456.132 +20866,2025-03-09T15:00:44.339933-07:00,0.0,10.739358,10739.358 +20867,2025-03-09T15:00:55.060426-07:00,0.0,10.720493,10720.493 +20868,2025-03-09T15:01:05.785591-07:00,0.0,10.725165,10725.165 +20869,2025-03-09T15:01:16.513571-07:00,0.0,10.72798,10727.98 +20870,2025-03-09T15:01:27.246777-07:00,0.0,10.733206,10733.206 +20871,2025-03-09T15:01:37.976384-07:00,0.0,10.729607,10729.607 +20872,2025-03-09T15:01:48.695465-07:00,0.0,10.719081,10719.081 +20873,2025-03-09T15:01:59.424687-07:00,0.0,10.729222,10729.222 +20874,2025-03-09T15:02:10.149419-07:00,0.0,10.724732,10724.732 +20875,2025-03-09T15:02:20.886190-07:00,0.0,10.736771,10736.771 +20876,2025-03-09T15:02:31.604384-07:00,0.0,10.718194,10718.194 +20877,2025-03-09T15:02:42.337559-07:00,0.0,10.733175,10733.175 +20878,2025-03-09T15:02:53.060534-07:00,0.0,10.722975,10722.975 +20879,2025-03-09T15:03:03.787933-07:00,0.0,10.727399,10727.399 +20880,2025-03-09T15:03:14.511257-07:00,0.0,10.723324,10723.324 +20881,2025-03-09T15:03:25.236415-07:00,0.0,10.725158,10725.158 +20882,2025-03-09T15:03:35.966435-07:00,0.0,10.73002,10730.02 +20883,2025-03-09T15:03:46.687383-07:00,0.0,10.720948,10720.948 +20884,2025-03-09T15:03:57.420747-07:00,0.0,10.733364,10733.364 +20885,2025-03-09T15:04:08.150589-07:00,0.0,10.729842,10729.842 +20886,2025-03-09T15:04:18.867096-07:00,0.0,10.716507,10716.507 +20887,2025-03-09T15:04:29.599158-07:00,0.0,10.732062,10732.062 +20888,2025-03-09T15:04:40.326390-07:00,0.0,10.727232,10727.232 +20889,2025-03-09T15:04:51.056463-07:00,0.0,10.730073,10730.073 +20890,2025-03-09T15:05:01.774578-07:00,0.0,10.718115,10718.115 +20891,2025-03-09T15:05:12.500383-07:00,0.0,10.725805,10725.805 +20892,2025-03-09T15:05:23.231024-07:00,0.0,10.730641,10730.641 +20893,2025-03-09T15:05:33.950593-07:00,0.0,10.719569,10719.569 +20894,2025-03-09T15:05:44.681587-07:00,0.0,10.730994,10730.994 +20895,2025-03-09T15:05:55.404424-07:00,0.0,10.722837,10722.837 +20896,2025-03-09T15:06:06.136482-07:00,0.0,10.732058,10732.058 +20897,2025-03-09T15:06:16.857629-07:00,0.0,10.721147,10721.147 +20898,2025-03-09T15:06:27.589594-07:00,0.0,10.731965,10731.965 +20899,2025-03-09T15:06:38.317563-07:00,0.0,10.727969,10727.969 +20900,2025-03-09T15:06:49.042574-07:00,0.0,10.725011,10725.011 +20901,2025-03-09T15:06:59.775383-07:00,0.0,10.732809,10732.809 +20902,2025-03-09T15:07:10.497567-07:00,0.0,10.722184,10722.184 +20903,2025-03-09T15:07:21.229708-07:00,0.0,10.732141,10732.141 +20904,2025-03-09T15:07:31.953566-07:00,0.0,10.723858,10723.858 +20905,2025-03-09T15:07:42.677383-07:00,0.0,10.723817,10723.817 +20906,2025-03-09T15:07:53.408584-07:00,0.0,10.731201,10731.201 +20907,2025-03-09T15:08:04.135688-07:00,0.0,10.727104,10727.104 +20908,2025-03-09T15:08:14.862140-07:00,0.0,10.726452,10726.452 +20909,2025-03-09T15:08:25.593408-07:00,0.0,10.731268,10731.268 +20910,2025-03-09T15:08:36.325584-07:00,0.0,10.732176,10732.176 +20911,2025-03-09T15:08:47.059740-07:00,0.0,10.734156,10734.156 +20912,2025-03-09T15:08:57.779384-07:00,0.0,10.719644,10719.644 +20913,2025-03-09T15:09:08.510470-07:00,0.0,10.731086,10731.086 +20914,2025-03-09T15:09:19.235592-07:00,0.0,10.725122,10725.122 +20915,2025-03-09T15:09:29.967611-07:00,0.0,10.732019,10732.019 +20916,2025-03-09T15:09:40.686384-07:00,0.0,10.718773,10718.773 +20917,2025-03-09T15:09:51.420820-07:00,0.0,10.734436,10734.436 +20918,2025-03-09T15:10:02.144618-07:00,0.0,10.723798,10723.798 +20919,2025-03-09T15:10:12.876386-07:00,0.0,10.731768,10731.768 +20920,2025-03-09T15:10:23.603808-07:00,0.0,10.727422,10727.422 +20921,2025-03-09T15:10:34.334383-07:00,0.0,10.730575,10730.575 +20922,2025-03-09T15:10:45.062495-07:00,0.0,10.728112,10728.112 +20923,2025-03-09T15:10:55.790765-07:00,0.0,10.72827,10728.27 +20924,2025-03-09T15:11:06.520415-07:00,0.0,10.72965,10729.65 +20925,2025-03-09T15:11:17.247387-07:00,0.0,10.726972,10726.972 +20926,2025-03-09T15:11:27.984558-07:00,0.0,10.737171,10737.171 +20927,2025-03-09T15:11:38.714378-07:00,0.0,10.72982,10729.82 +20928,2025-03-09T15:11:49.433386-07:00,0.0,10.719008,10719.008 +20929,2025-03-09T15:12:00.169578-07:00,0.0,10.736192,10736.192 +20930,2025-03-09T15:12:10.889442-07:00,0.0,10.719864,10719.864 +20931,2025-03-09T15:12:21.620588-07:00,0.0,10.731146,10731.146 +20932,2025-03-09T15:12:32.356358-07:00,0.0,10.73577,10735.77 +20933,2025-03-09T15:12:43.081385-07:00,0.0,10.725027,10725.027 +20934,2025-03-09T15:12:53.808537-07:00,0.0,10.727152,10727.152 +20935,2025-03-09T15:13:04.542410-07:00,0.0,10.733873,10733.873 +20936,2025-03-09T15:13:15.272390-07:00,0.0,10.72998,10729.98 +20937,2025-03-09T15:13:26.010656-07:00,0.0,10.738266,10738.266 +20938,2025-03-09T15:13:36.740566-07:00,0.0,10.72991,10729.91 +20939,2025-03-09T15:13:47.457385-07:00,0.0,10.716819,10716.819 +20940,2025-03-09T15:13:58.189786-07:00,0.0,10.732401,10732.401 +20941,2025-03-09T15:14:08.918408-07:00,0.0,10.728622,10728.622 +20942,2025-03-09T15:14:19.638591-07:00,0.0,10.720183,10720.183 +20943,2025-03-09T15:14:30.371138-07:00,0.0,10.732547,10732.547 +20944,2025-03-09T15:14:41.099659-07:00,0.0,10.728521,10728.521 +20945,2025-03-09T15:14:51.826549-07:00,0.0,10.72689,10726.89 +20946,2025-03-09T15:15:02.549685-07:00,0.0,10.723136,10723.136 +20947,2025-03-09T15:15:13.284389-07:00,0.0,10.734704,10734.704 +20948,2025-03-09T15:15:24.011602-07:00,0.0,10.727213,10727.213 +20949,2025-03-09T15:15:34.737590-07:00,0.0,10.725988,10725.988 +20950,2025-03-09T15:15:45.461545-07:00,0.0,10.723955,10723.955 +20951,2025-03-09T15:15:56.181576-07:00,0.0,10.720031,10720.031 +20952,2025-03-09T15:16:06.910792-07:00,0.0,10.729216,10729.216 +20953,2025-03-09T15:16:17.629452-07:00,0.0,10.71866,10718.66 +20954,2025-03-09T15:16:28.354859-07:00,0.0,10.725407,10725.407 +20955,2025-03-09T15:16:39.083405-07:00,0.0,10.728546,10728.546 +20956,2025-03-09T15:16:49.802803-07:00,0.0,10.719398,10719.398 +20957,2025-03-09T15:17:00.529178-07:00,0.0,10.726375,10726.375 +20958,2025-03-09T15:17:11.248155-07:00,0.0,10.718977,10718.977 +20959,2025-03-09T15:17:21.970606-07:00,0.0,10.722451,10722.451 +20960,2025-03-09T15:17:32.698546-07:00,0.0,10.72794,10727.94 +20961,2025-03-09T15:17:43.429302-07:00,0.0,10.730756,10730.756 +20962,2025-03-09T15:17:54.154422-07:00,0.0,10.72512,10725.12 +20963,2025-03-09T15:18:04.875385-07:00,0.0,10.720963,10720.963 +20964,2025-03-09T15:18:15.606468-07:00,0.0,10.731083,10731.083 +20965,2025-03-09T15:18:26.332382-07:00,0.0,10.725914,10725.914 +20966,2025-03-09T15:18:37.054478-07:00,0.0,10.722096,10722.096 +20967,2025-03-09T15:18:47.786380-07:00,0.0,10.731902,10731.902 +20968,2025-03-09T15:18:58.512414-07:00,0.0,10.726034,10726.034 +20969,2025-03-09T15:19:09.240631-07:00,0.0,10.728217,10728.217 +20970,2025-03-09T15:19:19.969439-07:00,0.0,10.728808,10728.808 +20971,2025-03-09T15:19:30.688868-07:00,0.0,10.719429,10719.429 +20972,2025-03-09T15:19:41.411403-07:00,0.0,10.722535,10722.535 +20973,2025-03-09T15:19:52.144382-07:00,0.0,10.732979,10732.979 +20974,2025-03-09T15:20:02.866386-07:00,0.0,10.722004,10722.004 +20975,2025-03-09T15:20:13.589583-07:00,0.0,10.723197,10723.197 +20976,2025-03-09T15:20:24.319546-07:00,0.0,10.729963,10729.963 +20977,2025-03-09T15:20:35.040386-07:00,0.0,10.72084,10720.84 +20978,2025-03-09T15:20:45.774982-07:00,0.0,10.734596,10734.596 +20979,2025-03-09T15:20:56.502519-07:00,0.0,10.727537,10727.537 +20980,2025-03-09T15:21:07.221589-07:00,0.0,10.71907,10719.07 +20981,2025-03-09T15:21:17.959566-07:00,0.0,10.737977,10737.977 +20982,2025-03-09T15:21:28.681868-07:00,0.0,10.722302,10722.302 +20983,2025-03-09T15:21:39.412934-07:00,0.0,10.731066,10731.066 +20984,2025-03-09T15:21:50.135382-07:00,0.0,10.722448,10722.448 +20985,2025-03-09T15:22:00.860565-07:00,0.0,10.725183,10725.183 +20986,2025-03-09T15:22:11.593917-07:00,0.0,10.733352,10733.352 +20987,2025-03-09T15:22:22.316383-07:00,0.0,10.722466,10722.466 +20988,2025-03-09T15:22:33.044569-07:00,0.0,10.728186,10728.186 +20989,2025-03-09T15:22:43.773596-07:00,0.0,10.729027,10729.027 +20990,2025-03-09T15:22:54.501404-07:00,0.0,10.727808,10727.808 +20991,2025-03-09T15:23:05.234555-07:00,0.0,10.733151,10733.151 +20992,2025-03-09T15:23:15.957598-07:00,0.0,10.723043,10723.043 +20993,2025-03-09T15:23:26.685385-07:00,0.0,10.727787,10727.787 +20994,2025-03-09T15:23:37.422581-07:00,0.0,10.737196,10737.196 +20995,2025-03-09T15:23:48.153422-07:00,0.0,10.730841,10730.841 +20996,2025-03-09T15:23:58.880560-07:00,0.0,10.727138,10727.138 +20997,2025-03-09T15:24:09.615765-07:00,0.0,10.735205,10735.205 +20998,2025-03-09T15:24:20.353383-07:00,0.0,10.737618,10737.618 +20999,2025-03-09T15:24:31.085709-07:00,0.0,10.732326,10732.326 +21000,2025-03-09T15:24:41.807606-07:00,0.0,10.721897,10721.897 +21001,2025-03-09T15:24:52.543407-07:00,0.0,10.735801,10735.801 +21002,2025-03-09T15:25:03.268604-07:00,0.0,10.725197,10725.197 +21003,2025-03-09T15:25:13.999573-07:00,0.0,10.730969,10730.969 +21004,2025-03-09T15:25:24.729386-07:00,0.0,10.729813,10729.813 +21005,2025-03-09T15:25:35.463384-07:00,0.0,10.733998,10733.998 +21006,2025-03-09T15:25:46.191578-07:00,0.0,10.728194,10728.194 +21007,2025-03-09T15:25:56.921590-07:00,0.0,10.730012,10730.012 +21008,2025-03-09T15:26:07.647564-07:00,0.0,10.725974,10725.974 +21009,2025-03-09T15:26:18.376438-07:00,0.0,10.728874,10728.874 +21010,2025-03-09T15:26:29.101692-07:00,0.0,10.725254,10725.254 +21011,2025-03-09T15:26:39.835386-07:00,0.0,10.733694,10733.694 +21012,2025-03-09T15:26:50.560530-07:00,0.0,10.725144,10725.144 +21013,2025-03-09T15:27:01.286590-07:00,0.0,10.72606,10726.06 +21014,2025-03-09T15:27:12.023579-07:00,0.0,10.736989,10736.989 +21015,2025-03-09T15:27:22.748385-07:00,0.0,10.724806,10724.806 +21016,2025-03-09T15:27:33.477383-07:00,0.0,10.728998,10728.998 +21017,2025-03-09T15:27:44.203580-07:00,0.0,10.726197,10726.197 +21018,2025-03-09T15:27:54.931386-07:00,0.0,10.727806,10727.806 +21019,2025-03-09T15:28:05.664688-07:00,0.0,10.733302,10733.302 +21020,2025-03-09T15:28:16.393889-07:00,0.0,10.729201,10729.201 +21021,2025-03-09T15:28:27.121597-07:00,0.0,10.727708,10727.708 +21022,2025-03-09T15:28:37.847456-07:00,0.0,10.725859,10725.859 +21023,2025-03-09T15:28:48.575386-07:00,0.0,10.72793,10727.93 +21024,2025-03-09T15:28:59.307578-07:00,0.0,10.732192,10732.192 +21025,2025-03-09T15:29:10.030566-07:00,0.0,10.722988,10722.988 +21026,2025-03-09T15:29:20.762387-07:00,0.0,10.731821,10731.821 +21027,2025-03-09T15:29:31.492412-07:00,0.0,10.730025,10730.025 +21028,2025-03-09T15:29:42.221565-07:00,0.0,10.729153,10729.153 +21029,2025-03-09T15:29:52.945389-07:00,0.0,10.723824,10723.824 +21030,2025-03-09T15:30:03.679775-07:00,0.0,10.734386,10734.386 +21031,2025-03-09T15:30:14.409175-07:00,0.0,10.7294,10729.4 +21032,2025-03-09T15:30:25.145876-07:00,0.0,10.736701,10736.701 +21033,2025-03-09T15:30:35.869488-07:00,0.0,10.723612,10723.612 +21034,2025-03-09T15:30:46.605786-07:00,0.0,10.736298,10736.298 +21035,2025-03-09T15:30:57.329914-07:00,0.0,10.724128,10724.128 +21036,2025-03-09T15:31:08.057587-07:00,0.0,10.727673,10727.673 +21037,2025-03-09T15:31:18.789700-07:00,0.0,10.732113,10732.113 +21038,2025-03-09T15:31:29.515539-07:00,0.0,10.725839,10725.839 +21039,2025-03-09T15:31:40.249387-07:00,0.0,10.733848,10733.848 +21040,2025-03-09T15:31:50.983125-07:00,0.0,10.733738,10733.738 +21041,2025-03-09T15:32:01.710392-07:00,0.0,10.727267,10727.267 +21042,2025-03-09T15:32:12.452588-07:00,0.0,10.742196,10742.196 +21043,2025-03-09T15:32:23.187731-07:00,0.0,10.735143,10735.143 +21044,2025-03-09T15:32:33.908654-07:00,0.0,10.720923,10720.923 +21045,2025-03-09T15:32:44.643483-07:00,0.0,10.734829,10734.829 +21046,2025-03-09T15:32:55.372580-07:00,0.0,10.729097,10729.097 +21047,2025-03-09T15:33:06.109505-07:00,0.0,10.736925,10736.925 +21048,2025-03-09T15:33:16.839387-07:00,0.0,10.729882,10729.882 +21049,2025-03-09T15:33:27.570838-07:00,0.0,10.731451,10731.451 +21050,2025-03-09T15:33:38.305355-07:00,0.0,10.734517,10734.517 +21051,2025-03-09T15:33:49.032386-07:00,0.0,10.727031,10727.031 +21052,2025-03-09T15:33:59.769543-07:00,0.0,10.737157,10737.157 +21053,2025-03-09T15:34:10.499277-07:00,0.0,10.729734,10729.734 +21054,2025-03-09T15:34:21.222594-07:00,0.0,10.723317,10723.317 +21055,2025-03-09T15:34:31.952585-07:00,0.0,10.729991,10729.991 +21056,2025-03-09T15:34:42.687154-07:00,0.0,10.734569,10734.569 +21057,2025-03-09T15:34:53.421383-07:00,0.0,10.734229,10734.229 +21058,2025-03-09T15:35:04.149456-07:00,0.0,10.728073,10728.073 +21059,2025-03-09T15:35:14.871386-07:00,0.0,10.72193,10721.93 +21060,2025-03-09T15:35:25.607380-07:00,0.0,10.735994,10735.994 +21061,2025-03-09T15:35:36.336575-07:00,0.0,10.729195,10729.195 +21062,2025-03-09T15:35:47.064591-07:00,0.0,10.728016,10728.016 +21063,2025-03-09T15:35:57.795383-07:00,0.0,10.730792,10730.792 +21064,2025-03-09T15:36:06.338755-07:00,427.0,8.543372,8543.372 +21065,2025-03-09T15:36:08.523552-07:00,441.0,2.184797,2184.797 +21066,2025-03-09T15:36:19.257539-07:00,452.0,10.733987,10733.987 +21067,2025-03-09T15:36:29.986409-07:00,453.0,10.72887,10728.87 +21068,2025-03-09T15:36:40.713558-07:00,423.0,10.727149,10727.149 +21069,2025-03-09T15:36:51.444585-07:00,436.0,10.731027,10731.027 +21070,2025-03-09T15:37:02.170386-07:00,333.0,10.725801,10725.801 +21071,2025-03-09T15:37:12.905684-07:00,432.0,10.735298,10735.298 +21072,2025-03-09T15:37:23.629597-07:00,289.0,10.723913,10723.913 +21073,2025-03-09T15:37:34.368383-07:00,446.0,10.738786,10738.786 +21074,2025-03-09T15:37:45.091229-07:00,437.0,10.722846,10722.846 +21075,2025-03-09T15:37:55.827523-07:00,331.0,10.736294,10736.294 +21076,2025-03-09T15:38:06.553386-07:00,408.0,10.725863,10725.863 +21077,2025-03-09T15:38:17.280701-07:00,420.0,10.727315,10727.315 +21078,2025-03-09T15:38:28.013383-07:00,426.0,10.732682,10732.682 +21079,2025-03-09T15:38:28.749864-07:00,19.0,0.736481,736.481 +21080,2025-03-09T15:38:38.742564-07:00,0.0,9.9927,9992.7 +21081,2025-03-09T15:38:49.468386-07:00,0.0,10.725822,10725.822 +21082,2025-03-09T15:39:00.196384-07:00,0.0,10.727998,10727.998 +21083,2025-03-09T15:39:10.929386-07:00,0.0,10.733002,10733.002 +21084,2025-03-09T15:39:21.660659-07:00,0.0,10.731273,10731.273 +21085,2025-03-09T15:39:32.387384-07:00,0.0,10.726725,10726.725 +21086,2025-03-09T15:39:43.110567-07:00,0.0,10.723183,10723.183 +21087,2025-03-09T15:39:53.840387-07:00,0.0,10.72982,10729.82 +21088,2025-03-09T15:40:04.569394-07:00,0.0,10.729007,10729.007 +21089,2025-03-09T15:40:15.298208-07:00,0.0,10.728814,10728.814 +21090,2025-03-09T15:40:26.018515-07:00,0.0,10.720307,10720.307 +21091,2025-03-09T15:40:36.742772-07:00,0.0,10.724257,10724.257 +21092,2025-03-09T15:40:47.475413-07:00,0.0,10.732641,10732.641 +21093,2025-03-09T15:40:58.200388-07:00,0.0,10.724975,10724.975 +21094,2025-03-09T15:41:08.928611-07:00,0.0,10.728223,10728.223 +21095,2025-03-09T15:41:19.653385-07:00,0.0,10.724774,10724.774 +21096,2025-03-09T15:41:30.382565-07:00,0.0,10.72918,10729.18 +21097,2025-03-09T15:41:41.111587-07:00,0.0,10.729022,10729.022 +21098,2025-03-09T15:41:51.838382-07:00,0.0,10.726795,10726.795 +21099,2025-03-09T15:42:02.574498-07:00,0.0,10.736116,10736.116 +21100,2025-03-09T15:42:13.300441-07:00,0.0,10.725943,10725.943 +21101,2025-03-09T15:42:24.027568-07:00,0.0,10.727127,10727.127 +21102,2025-03-09T15:42:34.755386-07:00,0.0,10.727818,10727.818 +21103,2025-03-09T15:42:45.478627-07:00,0.0,10.723241,10723.241 +21104,2025-03-09T15:42:56.209555-07:00,0.0,10.730928,10730.928 +21105,2025-03-09T15:43:06.937387-07:00,0.0,10.727832,10727.832 +21106,2025-03-09T15:43:17.662586-07:00,0.0,10.725199,10725.199 +21107,2025-03-09T15:43:28.388383-07:00,0.0,10.725797,10725.797 +21108,2025-03-09T15:43:39.116386-07:00,0.0,10.728003,10728.003 +21109,2025-03-09T15:43:49.843559-07:00,0.0,10.727173,10727.173 +21110,2025-03-09T15:44:00.573452-07:00,0.0,10.729893,10729.893 +21111,2025-03-09T15:44:11.297556-07:00,0.0,10.724104,10724.104 +21112,2025-03-09T15:44:22.023384-07:00,0.0,10.725828,10725.828 +21113,2025-03-09T15:44:32.751460-07:00,0.0,10.728076,10728.076 +21114,2025-03-09T15:44:43.484744-07:00,0.0,10.733284,10733.284 +21115,2025-03-09T15:44:54.210384-07:00,0.0,10.72564,10725.64 +21116,2025-03-09T15:45:04.934567-07:00,0.0,10.724183,10724.183 +21117,2025-03-09T15:45:15.658655-07:00,0.0,10.724088,10724.088 +21118,2025-03-09T15:45:26.390385-07:00,0.0,10.73173,10731.73 +21119,2025-03-09T15:45:37.117553-07:00,0.0,10.727168,10727.168 +21120,2025-03-09T15:45:47.835597-07:00,0.0,10.718044,10718.044 +21121,2025-03-09T15:45:58.565246-07:00,0.0,10.729649,10729.649 +21122,2025-03-09T15:46:09.287394-07:00,0.0,10.722148,10722.148 +21123,2025-03-09T15:46:20.019598-07:00,0.0,10.732204,10732.204 +21124,2025-03-09T15:46:30.738408-07:00,0.0,10.71881,10718.81 +21125,2025-03-09T15:46:41.465434-07:00,0.0,10.727026,10727.026 +21126,2025-03-09T15:46:52.191735-07:00,0.0,10.726301,10726.301 +21127,2025-03-09T15:47:02.920434-07:00,0.0,10.728699,10728.699 +21128,2025-03-09T15:47:13.643387-07:00,0.0,10.722953,10722.953 +21129,2025-03-09T15:47:24.367623-07:00,0.0,10.724236,10724.236 +21130,2025-03-09T15:47:35.098386-07:00,0.0,10.730763,10730.763 +21131,2025-03-09T15:47:45.826572-07:00,0.0,10.728186,10728.186 +21132,2025-03-09T15:47:56.547593-07:00,0.0,10.721021,10721.021 +21133,2025-03-09T15:48:07.278384-07:00,0.0,10.730791,10730.791 +21134,2025-03-09T15:48:18.007543-07:00,0.0,10.729159,10729.159 +21135,2025-03-09T15:48:28.735587-07:00,0.0,10.728044,10728.044 +21136,2025-03-09T15:48:39.462630-07:00,0.0,10.727043,10727.043 +21137,2025-03-09T15:48:50.187700-07:00,0.0,10.72507,10725.07 +21138,2025-03-09T15:49:00.910797-07:00,0.0,10.723097,10723.097 +21139,2025-03-09T15:49:11.644415-07:00,0.0,10.733618,10733.618 +21140,2025-03-09T15:49:22.368415-07:00,0.0,10.724,10724.0 +21141,2025-03-09T15:49:33.093826-07:00,0.0,10.725411,10725.411 +21142,2025-03-09T15:49:43.829491-07:00,0.0,10.735665,10735.665 +21143,2025-03-09T15:49:54.552388-07:00,0.0,10.722897,10722.897 +21144,2025-03-09T15:50:05.292557-07:00,0.0,10.740169,10740.169 +21145,2025-03-09T15:50:16.016384-07:00,0.0,10.723827,10723.827 +21146,2025-03-09T15:50:26.742550-07:00,0.0,10.726166,10726.166 +21147,2025-03-09T15:50:37.480874-07:00,0.0,10.738324,10738.324 +21148,2025-03-09T15:50:48.210387-07:00,0.0,10.729513,10729.513 +21149,2025-03-09T15:50:58.937452-07:00,0.0,10.727065,10727.065 +21150,2025-03-09T15:51:09.658415-07:00,0.0,10.720963,10720.963 +21151,2025-03-09T15:51:20.384572-07:00,0.0,10.726157,10726.157 +21152,2025-03-09T15:51:31.119506-07:00,0.0,10.734934,10734.934 +21153,2025-03-09T15:51:41.835385-07:00,0.0,10.715879,10715.879 +21154,2025-03-09T15:51:52.565434-07:00,0.0,10.730049,10730.049 +21155,2025-03-09T15:52:03.287602-07:00,0.0,10.722168,10722.168 +21156,2025-03-09T15:52:14.012629-07:00,0.0,10.725027,10725.027 +21157,2025-03-09T15:52:24.746565-07:00,0.0,10.733936,10733.936 +21158,2025-03-09T15:52:35.443717-07:00,0.0,10.697152,10697.152 +21159,2025-03-09T15:52:46.172658-07:00,0.0,10.728941,10728.941 +21160,2025-03-09T15:52:56.901523-07:00,0.0,10.728865,10728.865 +21161,2025-03-09T15:53:07.620842-07:00,0.0,10.719319,10719.319 +21162,2025-03-09T15:53:18.348501-07:00,0.0,10.727659,10727.659 +21163,2025-03-09T15:53:29.079472-07:00,0.0,10.730971,10730.971 +21164,2025-03-09T15:53:39.804440-07:00,0.0,10.724968,10724.968 +21165,2025-03-09T15:53:50.535504-07:00,0.0,10.731064,10731.064 +21166,2025-03-09T15:54:01.256643-07:00,0.0,10.721139,10721.139 +21167,2025-03-09T15:54:11.988468-07:00,0.0,10.731825,10731.825 +21168,2025-03-09T15:54:22.704472-07:00,0.0,10.716004,10716.004 +21169,2025-03-09T15:54:33.441066-07:00,0.0,10.736594,10736.594 +21170,2025-03-09T15:54:44.162535-07:00,0.0,10.721469,10721.469 +21171,2025-03-09T15:54:54.891634-07:00,0.0,10.729099,10729.099 +21172,2025-03-09T15:55:05.629315-07:00,0.0,10.737681,10737.681 +21173,2025-03-09T15:55:16.357466-07:00,0.0,10.728151,10728.151 +21174,2025-03-09T15:55:27.086684-07:00,0.0,10.729218,10729.218 +21175,2025-03-09T15:55:37.809469-07:00,0.0,10.722785,10722.785 +21176,2025-03-09T15:55:48.537717-07:00,0.0,10.728248,10728.248 +21177,2025-03-09T15:55:59.262590-07:00,0.0,10.724873,10724.873 +21178,2025-03-09T15:56:09.998472-07:00,0.0,10.735882,10735.882 +21179,2025-03-09T15:56:20.725851-07:00,0.0,10.727379,10727.379 +21180,2025-03-09T15:56:31.450488-07:00,0.0,10.724637,10724.637 +21181,2025-03-09T15:56:42.180540-07:00,0.0,10.730052,10730.052 +21182,2025-03-09T15:56:52.907645-07:00,0.0,10.727105,10727.105 +21183,2025-03-09T15:57:03.641655-07:00,0.0,10.73401,10734.01 +21184,2025-03-09T15:57:14.373479-07:00,0.0,10.731824,10731.824 +21185,2025-03-09T15:57:25.096575-07:00,0.0,10.723096,10723.096 +21186,2025-03-09T15:57:35.834857-07:00,0.0,10.738282,10738.282 +21187,2025-03-09T15:57:46.558489-07:00,0.0,10.723632,10723.632 +21188,2025-03-09T15:57:57.295486-07:00,0.0,10.736997,10736.997 +21189,2025-03-09T15:58:08.019474-07:00,0.0,10.723988,10723.988 +21190,2025-03-09T15:58:18.753471-07:00,0.0,10.733997,10733.997 +21191,2025-03-09T15:58:29.485520-07:00,0.0,10.732049,10732.049 +21192,2025-03-09T15:58:40.211469-07:00,0.0,10.725949,10725.949 +21193,2025-03-09T15:58:50.940799-07:00,0.0,10.72933,10729.33 +21194,2025-03-09T15:59:01.677483-07:00,0.0,10.736684,10736.684 +21195,2025-03-09T15:59:12.406466-07:00,0.0,10.728983,10728.983 +21196,2025-03-09T15:59:23.133631-07:00,0.0,10.727165,10727.165 +21197,2025-03-09T15:59:33.865723-07:00,0.0,10.732092,10732.092 +21198,2025-03-09T15:59:44.590683-07:00,0.0,10.72496,10724.96 +21199,2025-03-09T15:59:55.316646-07:00,0.0,10.725963,10725.963 +21200,2025-03-09T16:00:06.047098-07:00,0.0,10.730452,10730.452 +21201,2025-03-09T16:00:16.782469-07:00,0.0,10.735371,10735.371 +21202,2025-03-09T16:00:27.508474-07:00,0.0,10.726005,10726.005 +21203,2025-03-09T16:00:38.236793-07:00,0.0,10.728319,10728.319 +21204,2025-03-09T16:00:48.959536-07:00,0.0,10.722743,10722.743 +21205,2025-03-09T16:00:59.693800-07:00,0.0,10.734264,10734.264 +21206,2025-03-09T16:01:10.425498-07:00,0.0,10.731698,10731.698 +21207,2025-03-09T16:01:21.147509-07:00,0.0,10.722011,10722.011 +21208,2025-03-09T16:01:31.881874-07:00,0.0,10.734365,10734.365 +21209,2025-03-09T16:01:42.613469-07:00,0.0,10.731595,10731.595 +21210,2025-03-09T16:01:53.337641-07:00,0.0,10.724172,10724.172 +21211,2025-03-09T16:02:04.076532-07:00,0.0,10.738891,10738.891 +21212,2025-03-09T16:02:14.808471-07:00,0.0,10.731939,10731.939 +21213,2025-03-09T16:02:25.533465-07:00,0.0,10.724994,10724.994 +21214,2025-03-09T16:02:36.263662-07:00,0.0,10.730197,10730.197 +21215,2025-03-09T16:02:47.000496-07:00,0.0,10.736834,10736.834 +21216,2025-03-09T16:02:57.724497-07:00,0.0,10.724001,10724.001 +21217,2025-03-09T16:03:08.464683-07:00,0.0,10.740186,10740.186 +21218,2025-03-09T16:03:19.191470-07:00,0.0,10.726787,10726.787 +21219,2025-03-09T16:03:29.920706-07:00,0.0,10.729236,10729.236 +21220,2025-03-09T16:03:40.655473-07:00,0.0,10.734767,10734.767 +21221,2025-03-09T16:03:51.385752-07:00,0.0,10.730279,10730.279 +21222,2025-03-09T16:04:02.111470-07:00,0.0,10.725718,10725.718 +21223,2025-03-09T16:04:12.846652-07:00,0.0,10.735182,10735.182 +21224,2025-03-09T16:04:23.579663-07:00,0.0,10.733011,10733.011 +21225,2025-03-09T16:04:34.310466-07:00,0.0,10.730803,10730.803 +21226,2025-03-09T16:04:45.041835-07:00,0.0,10.731369,10731.369 +21227,2025-03-09T16:04:55.766494-07:00,0.0,10.724659,10724.659 +21228,2025-03-09T16:05:06.501678-07:00,0.0,10.735184,10735.184 +21229,2025-03-09T16:05:17.231699-07:00,0.0,10.730021,10730.021 +21230,2025-03-09T16:05:27.962106-07:00,0.0,10.730407,10730.407 +21231,2025-03-09T16:05:38.684468-07:00,0.0,10.722362,10722.362 +21232,2025-03-09T16:05:49.419506-07:00,0.0,10.735038,10735.038 +21233,2025-03-09T16:06:00.148738-07:00,0.0,10.729232,10729.232 +21234,2025-03-09T16:06:10.870657-07:00,0.0,10.721919,10721.919 +21235,2025-03-09T16:06:21.606562-07:00,0.0,10.735905,10735.905 +21236,2025-03-09T16:06:32.333468-07:00,0.0,10.726906,10726.906 +21237,2025-03-09T16:06:43.060474-07:00,0.0,10.727006,10727.006 +21238,2025-03-09T16:06:53.782488-07:00,0.0,10.722014,10722.014 +21239,2025-03-09T16:07:04.517498-07:00,0.0,10.73501,10735.01 +21240,2025-03-09T16:07:15.239642-07:00,0.0,10.722144,10722.144 +21241,2025-03-09T16:07:25.971760-07:00,0.0,10.732118,10732.118 +21242,2025-03-09T16:07:36.702468-07:00,0.0,10.730708,10730.708 +21243,2025-03-09T16:07:47.430640-07:00,0.0,10.728172,10728.172 +21244,2025-03-09T16:07:58.164496-07:00,0.0,10.733856,10733.856 +21245,2025-03-09T16:08:08.893472-07:00,0.0,10.728976,10728.976 +21246,2025-03-09T16:08:19.619874-07:00,0.0,10.726402,10726.402 +21247,2025-03-09T16:08:30.345470-07:00,0.0,10.725596,10725.596 +21248,2025-03-09T16:08:41.076475-07:00,0.0,10.731005,10731.005 +21249,2025-03-09T16:08:51.802718-07:00,0.0,10.726243,10726.243 +21250,2025-03-09T16:09:02.528556-07:00,0.0,10.725838,10725.838 +21251,2025-03-09T16:09:13.264689-07:00,0.0,10.736133,10736.133 +21252,2025-03-09T16:09:23.983677-07:00,0.0,10.718988,10718.988 +21253,2025-03-09T16:09:34.709488-07:00,0.0,10.725811,10725.811 +21254,2025-03-09T16:09:45.441664-07:00,0.0,10.732176,10732.176 +21255,2025-03-09T16:09:56.165929-07:00,0.0,10.724265,10724.265 +21256,2025-03-09T16:10:06.893584-07:00,0.0,10.727655,10727.655 +21257,2025-03-09T16:10:17.623634-07:00,0.0,10.73005,10730.05 +21258,2025-03-09T16:10:28.351421-07:00,0.0,10.727787,10727.787 +21259,2025-03-09T16:10:39.077655-07:00,0.0,10.726234,10726.234 +21260,2025-03-09T16:10:49.809500-07:00,0.0,10.731845,10731.845 +21261,2025-03-09T16:11:00.531648-07:00,0.0,10.722148,10722.148 +21262,2025-03-09T16:11:11.267544-07:00,0.0,10.735896,10735.896 +21263,2025-03-09T16:11:21.985466-07:00,0.0,10.717922,10717.922 +21264,2025-03-09T16:11:32.724549-07:00,0.0,10.739083,10739.083 +21265,2025-03-09T16:11:43.446474-07:00,0.0,10.721925,10721.925 +21266,2025-03-09T16:11:54.173881-07:00,0.0,10.727407,10727.407 +21267,2025-03-09T16:12:04.902333-07:00,0.0,10.728452,10728.452 +21268,2025-03-09T16:12:15.628472-07:00,0.0,10.726139,10726.139 +21269,2025-03-09T16:12:26.359689-07:00,0.0,10.731217,10731.217 +21270,2025-03-09T16:12:37.089490-07:00,0.0,10.729801,10729.801 +21271,2025-03-09T16:12:47.814497-07:00,0.0,10.725007,10725.007 +21272,2025-03-09T16:12:58.545656-07:00,0.0,10.731159,10731.159 +21273,2025-03-09T16:13:09.267470-07:00,0.0,10.721814,10721.814 +21274,2025-03-09T16:13:19.999482-07:00,0.0,10.732012,10732.012 +21275,2025-03-09T16:13:30.721639-07:00,0.0,10.722157,10722.157 +21276,2025-03-09T16:13:41.451550-07:00,0.0,10.729911,10729.911 +21277,2025-03-09T16:13:52.173342-07:00,0.0,10.721792,10721.792 +21278,2025-03-09T16:14:02.899737-07:00,0.0,10.726395,10726.395 +21279,2025-03-09T16:14:13.630471-07:00,0.0,10.730734,10730.734 +21280,2025-03-09T16:14:24.357496-07:00,0.0,10.727025,10727.025 +21281,2025-03-09T16:14:35.094469-07:00,0.0,10.736973,10736.973 +21282,2025-03-09T16:14:45.825651-07:00,0.0,10.731182,10731.182 +21283,2025-03-09T16:14:56.550670-07:00,0.0,10.725019,10725.019 +21284,2025-03-09T16:15:07.283464-07:00,0.0,10.732794,10732.794 +21285,2025-03-09T16:15:18.015472-07:00,0.0,10.732008,10732.008 +21286,2025-03-09T16:15:28.735777-07:00,0.0,10.720305,10720.305 +21287,2025-03-09T16:15:39.463502-07:00,0.0,10.727725,10727.725 +21288,2025-03-09T16:15:50.200886-07:00,0.0,10.737384,10737.384 +21289,2025-03-09T16:16:00.920678-07:00,0.0,10.719792,10719.792 +21290,2025-03-09T16:16:11.647473-07:00,0.0,10.726795,10726.795 +21291,2025-03-09T16:16:22.382662-07:00,0.0,10.735189,10735.189 +21292,2025-03-09T16:16:33.106155-07:00,0.0,10.723493,10723.493 +21293,2025-03-09T16:16:43.842693-07:00,0.0,10.736538,10736.538 +21294,2025-03-09T16:16:54.567472-07:00,0.0,10.724779,10724.779 +21295,2025-03-09T16:17:05.296463-07:00,0.0,10.728991,10728.991 +21296,2025-03-09T16:17:16.030471-07:00,0.0,10.734008,10734.008 +21297,2025-03-09T16:17:26.757832-07:00,0.0,10.727361,10727.361 +21298,2025-03-09T16:17:37.486540-07:00,0.0,10.728708,10728.708 +21299,2025-03-09T16:17:48.212601-07:00,0.0,10.726061,10726.061 +21300,2025-03-09T16:17:58.942676-07:00,0.0,10.730075,10730.075 +21301,2025-03-09T16:18:09.680471-07:00,0.0,10.737795,10737.795 +21302,2025-03-09T16:18:20.410711-07:00,0.0,10.73024,10730.24 +21303,2025-03-09T16:18:31.147647-07:00,0.0,10.736936,10736.936 +21304,2025-03-09T16:18:41.876474-07:00,0.0,10.728827,10728.827 +21305,2025-03-09T16:18:52.610815-07:00,0.0,10.734341,10734.341 +21306,2025-03-09T16:19:03.347971-07:00,0.0,10.737156,10737.156 +21307,2025-03-09T16:19:14.068675-07:00,0.0,10.720704,10720.704 +21308,2025-03-09T16:19:24.804503-07:00,0.0,10.735828,10735.828 +21309,2025-03-09T16:19:35.536882-07:00,0.0,10.732379,10732.379 +21310,2025-03-09T16:19:46.269588-07:00,0.0,10.732706,10732.706 +21311,2025-03-09T16:19:57.007543-07:00,0.0,10.737955,10737.955 +21312,2025-03-09T16:20:07.737645-07:00,0.0,10.730102,10730.102 +21313,2025-03-09T16:20:18.474654-07:00,0.0,10.737009,10737.009 +21314,2025-03-09T16:20:29.206536-07:00,0.0,10.731882,10731.882 +21315,2025-03-09T16:20:39.939535-07:00,0.0,10.732999,10732.999 +21316,2025-03-09T16:20:50.669537-07:00,0.0,10.730002,10730.002 +21317,2025-03-09T16:21:01.406861-07:00,0.0,10.737324,10737.324 +21318,2025-03-09T16:21:12.138468-07:00,0.0,10.731607,10731.607 +21319,2025-03-09T16:21:22.861861-07:00,0.0,10.723393,10723.393 +21320,2025-03-09T16:21:33.596204-07:00,0.0,10.734343,10734.343 +21321,2025-03-09T16:21:44.333533-07:00,0.0,10.737329,10737.329 +21322,2025-03-09T16:21:55.063603-07:00,0.0,10.73007,10730.07 +21323,2025-03-09T16:22:05.794671-07:00,0.0,10.731068,10731.068 +21324,2025-03-09T16:22:16.522468-07:00,0.0,10.727797,10727.797 +21325,2025-03-09T16:22:27.259177-07:00,0.0,10.736709,10736.709 +21326,2025-03-09T16:22:37.997674-07:00,0.0,10.738497,10738.497 +21327,2025-03-09T16:22:48.728762-07:00,0.0,10.731088,10731.088 +21328,2025-03-09T16:22:59.458471-07:00,0.0,10.729709,10729.709 +21329,2025-03-09T16:23:10.191260-07:00,0.0,10.732789,10732.789 +21330,2025-03-09T16:23:20.927646-07:00,0.0,10.736386,10736.386 +21331,2025-03-09T16:23:31.661558-07:00,0.0,10.733912,10733.912 +21332,2025-03-09T16:23:42.385473-07:00,0.0,10.723915,10723.915 +21333,2025-03-09T16:23:53.123079-07:00,0.0,10.737606,10737.606 +21334,2025-03-09T16:24:03.855472-07:00,0.0,10.732393,10732.393 +21335,2025-03-09T16:24:14.595497-07:00,0.0,10.740025,10740.025 +21336,2025-03-09T16:24:25.322475-07:00,0.0,10.726978,10726.978 +21337,2025-03-09T16:24:36.063466-07:00,0.0,10.740991,10740.991 +21338,2025-03-09T16:24:46.794520-07:00,0.0,10.731054,10731.054 +21339,2025-03-09T16:24:57.522474-07:00,0.0,10.727954,10727.954 +21340,2025-03-09T16:25:08.259648-07:00,0.0,10.737174,10737.174 +21341,2025-03-09T16:25:18.999142-07:00,0.0,10.739494,10739.494 +21342,2025-03-09T16:25:29.727472-07:00,0.0,10.72833,10728.33 +21343,2025-03-09T16:25:40.457614-07:00,0.0,10.730142,10730.142 +21344,2025-03-09T16:25:51.184723-07:00,0.0,10.727109,10727.109 +21345,2025-03-09T16:26:01.919469-07:00,0.0,10.734746,10734.746 +21346,2025-03-09T16:26:12.653470-07:00,0.0,10.734001,10734.001 +21347,2025-03-09T16:26:23.382779-07:00,0.0,10.729309,10729.309 +21348,2025-03-09T16:26:34.114470-07:00,0.0,10.731691,10731.691 +21349,2025-03-09T16:26:44.842672-07:00,0.0,10.728202,10728.202 +21350,2025-03-09T16:26:55.578479-07:00,0.0,10.735807,10735.807 +21351,2025-03-09T16:27:06.313661-07:00,0.0,10.735182,10735.182 +21352,2025-03-09T16:27:17.041466-07:00,0.0,10.727805,10727.805 +21353,2025-03-09T16:27:27.776744-07:00,0.0,10.735278,10735.278 +21354,2025-03-09T16:27:38.511671-07:00,0.0,10.734927,10734.927 +21355,2025-03-09T16:27:49.248681-07:00,0.0,10.73701,10737.01 +21356,2025-03-09T16:27:59.979470-07:00,0.0,10.730789,10730.789 +21357,2025-03-09T16:28:10.705471-07:00,0.0,10.726001,10726.001 +21358,2025-03-09T16:28:21.437497-07:00,0.0,10.732026,10732.026 +21359,2025-03-09T16:28:32.170641-07:00,0.0,10.733144,10733.144 +21360,2025-03-09T16:28:42.904895-07:00,0.0,10.734254,10734.254 +21361,2025-03-09T16:28:53.632973-07:00,0.0,10.728078,10728.078 +21362,2025-03-09T16:29:04.373470-07:00,0.0,10.740497,10740.497 +21363,2025-03-09T16:29:15.101838-07:00,0.0,10.728368,10728.368 +21364,2025-03-09T16:29:25.839472-07:00,0.0,10.737634,10737.634 +21365,2025-03-09T16:29:36.565495-07:00,0.0,10.726023,10726.023 +21366,2025-03-09T16:29:47.298533-07:00,0.0,10.733038,10733.038 +21367,2025-03-09T16:29:58.027651-07:00,0.0,10.729118,10729.118 +21368,2025-03-09T16:30:08.762734-07:00,0.0,10.735083,10735.083 +21369,2025-03-09T16:30:19.499610-07:00,0.0,10.736876,10736.876 +21370,2025-03-09T16:30:30.222472-07:00,0.0,10.722862,10722.862 +21371,2025-03-09T16:30:40.958671-07:00,0.0,10.736199,10736.199 +21372,2025-03-09T16:30:51.695578-07:00,0.0,10.736907,10736.907 +21373,2025-03-09T16:31:02.423470-07:00,0.0,10.727892,10727.892 +21374,2025-03-09T16:31:13.161662-07:00,0.0,10.738192,10738.192 +21375,2025-03-09T16:31:23.893144-07:00,0.0,10.731482,10731.482 +21376,2025-03-09T16:31:34.635470-07:00,0.0,10.742326,10742.326 +21377,2025-03-09T16:31:45.367544-07:00,0.0,10.732074,10732.074 +21378,2025-03-09T16:31:56.099468-07:00,0.0,10.731924,10731.924 +21379,2025-03-09T16:32:06.832040-07:00,0.0,10.732572,10732.572 +21380,2025-03-09T16:32:17.569474-07:00,0.0,10.737434,10737.434 +21381,2025-03-09T16:32:28.301551-07:00,0.0,10.732077,10732.077 +21382,2025-03-09T16:32:39.039480-07:00,0.0,10.737929,10737.929 +21383,2025-03-09T16:32:49.769694-07:00,0.0,10.730214,10730.214 +21384,2025-03-09T16:33:00.509498-07:00,0.0,10.739804,10739.804 +21385,2025-03-09T16:33:11.244548-07:00,0.0,10.73505,10735.05 +21386,2025-03-09T16:33:21.967800-07:00,0.0,10.723252,10723.252 +21387,2025-03-09T16:33:32.710662-07:00,0.0,10.742862,10742.862 +21388,2025-03-09T16:33:43.445470-07:00,0.0,10.734808,10734.808 +21389,2025-03-09T16:33:54.171684-07:00,0.0,10.726214,10726.214 +21390,2025-03-09T16:34:04.915930-07:00,0.0,10.744246,10744.246 +21391,2025-03-09T16:34:15.649896-07:00,0.0,10.733966,10733.966 +21392,2025-03-09T16:34:26.382472-07:00,0.0,10.732576,10732.576 +21393,2025-03-09T16:34:37.114470-07:00,0.0,10.731998,10731.998 +21394,2025-03-09T16:34:47.844582-07:00,0.0,10.730112,10730.112 +21395,2025-03-09T16:34:58.580520-07:00,0.0,10.735938,10735.938 +21396,2025-03-09T16:35:09.320539-07:00,0.0,10.740019,10740.019 +21397,2025-03-09T16:35:20.057471-07:00,0.0,10.736932,10736.932 +21398,2025-03-09T16:35:30.789988-07:00,0.0,10.732517,10732.517 +21399,2025-03-09T16:35:41.523936-07:00,0.0,10.733948,10733.948 +21400,2025-03-09T16:35:52.262467-07:00,0.0,10.738531,10738.531 +21401,2025-03-09T16:36:03.005469-07:00,0.0,10.743002,10743.002 +21402,2025-03-09T16:36:13.732467-07:00,0.0,10.726998,10726.998 +21403,2025-03-09T16:36:24.467879-07:00,0.0,10.735412,10735.412 +21404,2025-03-09T16:36:35.199470-07:00,0.0,10.731591,10731.591 +21405,2025-03-09T16:36:45.935677-07:00,0.0,10.736207,10736.207 +21406,2025-03-09T16:36:56.671034-07:00,0.0,10.735357,10735.357 +21407,2025-03-09T16:37:07.404785-07:00,0.0,10.733751,10733.751 +21408,2025-03-09T16:37:18.134470-07:00,0.0,10.729685,10729.685 +21409,2025-03-09T16:37:28.871505-07:00,0.0,10.737035,10737.035 +21410,2025-03-09T16:37:39.603565-07:00,0.0,10.73206,10732.06 +21411,2025-03-09T16:37:50.338500-07:00,0.0,10.734935,10734.935 +21412,2025-03-09T16:38:01.076713-07:00,0.0,10.738213,10738.213 +21413,2025-03-09T16:38:06.402861-07:00,337.0,5.326148,5326.148 +21414,2025-03-09T16:38:11.809469-07:00,303.0,5.406608,5406.608 +21415,2025-03-09T16:38:22.542767-07:00,283.0,10.733298,10733.298 +21416,2025-03-09T16:38:33.274501-07:00,307.0,10.731734,10731.734 +21417,2025-03-09T16:38:44.004476-07:00,337.0,10.729975,10729.975 +21418,2025-03-09T16:38:54.740471-07:00,384.0,10.735995,10735.995 +21419,2025-03-09T16:39:05.471753-07:00,378.0,10.731282,10731.282 +21420,2025-03-09T16:39:16.203695-07:00,401.0,10.731942,10731.942 +21421,2025-03-09T16:39:26.945626-07:00,272.0,10.741931,10741.931 +21422,2025-03-09T16:39:37.670692-07:00,354.0,10.725066,10725.066 +21423,2025-03-09T16:39:48.410635-07:00,371.0,10.739943,10739.943 +21424,2025-03-09T16:39:59.141545-07:00,371.0,10.73091,10730.91 +21425,2025-03-09T16:40:09.879466-07:00,404.0,10.737921,10737.921 +21426,2025-03-09T16:40:20.614608-07:00,313.0,10.735142,10735.142 +21427,2025-03-09T16:40:31.349921-07:00,430.0,10.735313,10735.313 +21428,2025-03-09T16:40:42.085470-07:00,433.0,10.735549,10735.549 +21429,2025-03-09T16:40:52.827224-07:00,429.0,10.741754,10741.754 +21430,2025-03-09T16:41:03.565670-07:00,400.0,10.738446,10738.446 +21431,2025-03-09T16:41:14.295649-07:00,323.0,10.729979,10729.979 +21432,2025-03-09T16:41:25.027673-07:00,385.0,10.732024,10732.024 +21433,2025-03-09T16:41:35.764502-07:00,410.0,10.736829,10736.829 +21434,2025-03-09T16:41:46.494492-07:00,400.0,10.72999,10729.99 +21435,2025-03-09T16:41:57.229973-07:00,387.0,10.735481,10735.481 +21436,2025-03-09T16:42:07.969678-07:00,401.0,10.739705,10739.705 +21437,2025-03-09T16:42:18.698538-07:00,410.0,10.72886,10728.86 +21438,2025-03-09T16:42:29.435875-07:00,395.0,10.737337,10737.337 +21439,2025-03-09T16:42:40.168734-07:00,355.0,10.732859,10732.859 +21440,2025-03-09T16:42:50.909472-07:00,368.0,10.740738,10740.738 +21441,2025-03-09T16:43:01.648470-07:00,307.0,10.738998,10738.998 +21442,2025-03-09T16:43:12.376472-07:00,369.0,10.728002,10728.002 +21443,2025-03-09T16:43:23.112685-07:00,289.0,10.736213,10736.213 +21444,2025-03-09T16:43:33.849494-07:00,308.0,10.736809,10736.809 +21445,2025-03-09T16:43:44.589469-07:00,274.0,10.739975,10739.975 +21446,2025-03-09T16:43:55.322632-07:00,289.0,10.733163,10733.163 +21447,2025-03-09T16:44:06.050642-07:00,378.0,10.72801,10728.01 +21448,2025-03-09T16:44:16.789242-07:00,383.0,10.7386,10738.6 +21449,2025-03-09T16:44:27.525482-07:00,352.0,10.73624,10736.24 +21450,2025-03-09T16:44:38.265504-07:00,304.0,10.740022,10740.022 +21451,2025-03-09T16:44:48.997473-07:00,367.0,10.731969,10731.969 +21452,2025-03-09T16:44:59.729496-07:00,339.0,10.732023,10732.023 +21453,2025-03-09T16:45:10.463530-07:00,390.0,10.734034,10734.034 +21454,2025-03-09T16:45:21.202963-07:00,356.0,10.739433,10739.433 +21455,2025-03-09T16:45:31.939655-07:00,384.0,10.736692,10736.692 +21456,2025-03-09T16:45:42.672983-07:00,304.0,10.733328,10733.328 +21457,2025-03-09T16:45:53.408470-07:00,282.0,10.735487,10735.487 +21458,2025-03-09T16:46:01.669874-07:00,0.0,8.261404,8261.404 +21459,2025-03-09T16:46:04.145676-07:00,0.0,2.475802,2475.802 +21460,2025-03-09T16:46:14.878475-07:00,0.0,10.732799,10732.799 +21461,2025-03-09T16:46:25.604511-07:00,0.0,10.726036,10726.036 +21462,2025-03-09T16:46:36.341469-07:00,0.0,10.736958,10736.958 +21463,2025-03-09T16:46:47.078529-07:00,0.0,10.73706,10737.06 +21464,2025-03-09T16:46:57.809885-07:00,0.0,10.731356,10731.356 +21465,2025-03-09T16:47:08.541473-07:00,0.0,10.731588,10731.588 +21466,2025-03-09T16:47:19.277679-07:00,0.0,10.736206,10736.206 +21467,2025-03-09T16:47:30.008473-07:00,0.0,10.730794,10730.794 +21468,2025-03-09T16:47:40.746659-07:00,0.0,10.738186,10738.186 +21469,2025-03-09T16:47:51.478469-07:00,0.0,10.73181,10731.81 +21470,2025-03-09T16:48:02.202648-07:00,0.0,10.724179,10724.179 +21471,2025-03-09T16:48:12.936885-07:00,0.0,10.734237,10734.237 +21472,2025-03-09T16:48:23.673505-07:00,0.0,10.73662,10736.62 +21473,2025-03-09T16:48:34.406547-07:00,0.0,10.733042,10733.042 +21474,2025-03-09T16:48:45.148472-07:00,0.0,10.741925,10741.925 +21475,2025-03-09T16:48:55.876663-07:00,0.0,10.728191,10728.191 +21476,2025-03-09T16:49:06.611469-07:00,0.0,10.734806,10734.806 +21477,2025-03-09T16:49:17.342473-07:00,0.0,10.731004,10731.004 +21478,2025-03-09T16:49:28.082750-07:00,0.0,10.740277,10740.277 +21479,2025-03-09T16:49:38.823656-07:00,0.0,10.740906,10740.906 +21480,2025-03-09T16:49:49.561646-07:00,0.0,10.73799,10737.99 +21481,2025-03-09T16:50:00.293580-07:00,0.0,10.731934,10731.934 +21482,2025-03-09T16:50:11.022687-07:00,0.0,10.729107,10729.107 +21483,2025-03-09T16:50:21.757681-07:00,0.0,10.734994,10734.994 +21484,2025-03-09T16:50:32.491795-07:00,0.0,10.734114,10734.114 +21485,2025-03-09T16:50:43.237479-07:00,0.0,10.745684,10745.684 +21486,2025-03-09T16:50:53.970753-07:00,0.0,10.733274,10733.274 +21487,2025-03-09T16:51:04.703659-07:00,0.0,10.732906,10732.906 +21488,2025-03-09T16:51:15.437506-07:00,0.0,10.733847,10733.847 +21489,2025-03-09T16:51:26.173531-07:00,0.0,10.736025,10736.025 +21490,2025-03-09T16:51:36.902535-07:00,0.0,10.729004,10729.004 +21491,2025-03-09T16:51:47.635657-07:00,0.0,10.733122,10733.122 +21492,2025-03-09T16:51:58.369536-07:00,0.0,10.733879,10733.879 +21493,2025-03-09T16:52:09.100475-07:00,0.0,10.730939,10730.939 +21494,2025-03-09T16:52:19.829701-07:00,0.0,10.729226,10729.226 +21495,2025-03-09T16:52:30.504707-07:00,0.0,10.675006,10675.006 +21496,2025-03-09T16:52:41.230278-07:00,0.0,10.725571,10725.571 +21497,2025-03-09T16:52:51.965431-07:00,0.0,10.735153,10735.153 +21498,2025-03-09T16:53:02.702560-07:00,0.0,10.737129,10737.129 +21499,2025-03-09T16:53:13.435311-07:00,0.0,10.732751,10732.751 +21500,2025-03-09T16:53:24.172280-07:00,0.0,10.736969,10736.969 +21501,2025-03-09T16:53:34.902195-07:00,0.0,10.729915,10729.915 +21502,2025-03-09T16:53:45.638660-07:00,0.0,10.736465,10736.465 +21503,2025-03-09T16:53:56.370281-07:00,0.0,10.731621,10731.621 +21504,2025-03-09T16:54:07.107520-07:00,0.0,10.737239,10737.239 +21505,2025-03-09T16:54:17.841284-07:00,0.0,10.733764,10733.764 +21506,2025-03-09T16:54:28.574490-07:00,0.0,10.733206,10733.206 +21507,2025-03-09T16:54:39.303279-07:00,0.0,10.728789,10728.789 +21508,2025-03-09T16:54:50.043280-07:00,0.0,10.740001,10740.001 +21509,2025-03-09T16:55:00.775677-07:00,0.0,10.732397,10732.397 +21510,2025-03-09T16:55:11.511493-07:00,0.0,10.735816,10735.816 +21511,2025-03-09T16:55:22.247431-07:00,0.0,10.735938,10735.938 +21512,2025-03-09T16:55:32.980511-07:00,0.0,10.73308,10733.08 +21513,2025-03-09T16:55:43.713650-07:00,0.0,10.733139,10733.139 +21514,2025-03-09T16:55:54.441277-07:00,0.0,10.727627,10727.627 +21515,2025-03-09T16:56:05.172540-07:00,0.0,10.731263,10731.263 +21516,2025-03-09T16:56:15.912870-07:00,0.0,10.74033,10740.33 +21517,2025-03-09T16:56:26.645457-07:00,0.0,10.732587,10732.587 +21518,2025-03-09T16:56:37.377304-07:00,0.0,10.731847,10731.847 +21519,2025-03-09T16:56:48.102541-07:00,0.0,10.725237,10725.237 +21520,2025-03-09T16:56:58.836689-07:00,0.0,10.734148,10734.148 +21521,2025-03-09T16:57:09.566285-07:00,0.0,10.729596,10729.596 +21522,2025-03-09T16:57:20.299306-07:00,0.0,10.733021,10733.021 +21523,2025-03-09T16:57:31.034418-07:00,0.0,10.735112,10735.112 +21524,2025-03-09T16:57:41.767280-07:00,0.0,10.732862,10732.862 +21525,2025-03-09T16:57:52.496254-07:00,0.0,10.728974,10728.974 +21526,2025-03-09T16:58:03.239346-07:00,0.0,10.743092,10743.092 +21527,2025-03-09T16:58:13.967694-07:00,0.0,10.728348,10728.348 +21528,2025-03-09T16:58:24.703281-07:00,0.0,10.735587,10735.587 +21529,2025-03-09T16:58:35.439500-07:00,0.0,10.736219,10736.219 +21530,2025-03-09T16:58:44.774838-07:00,0.0,9.335338,9335.338 +21531,2025-03-09T16:58:46.170496-07:00,0.0,1.395658,1395.658 +21532,2025-03-09T16:58:56.898435-07:00,0.0,10.727939,10727.939 +21533,2025-03-09T16:59:07.637282-07:00,0.0,10.738847,10738.847 +21534,2025-03-09T16:59:18.374309-07:00,0.0,10.737027,10737.027 +21535,2025-03-09T16:59:29.102997-07:00,0.0,10.728688,10728.688 +21536,2025-03-09T16:59:39.832437-07:00,0.0,10.72944,10729.44 +21537,2025-03-09T16:59:50.572313-07:00,0.0,10.739876,10739.876 +21538,2025-03-09T17:00:01.299633-07:00,0.0,10.72732,10727.32 +21539,2025-03-09T17:00:12.034357-07:00,0.0,10.734724,10734.724 +21540,2025-03-09T17:00:22.762432-07:00,0.0,10.728075,10728.075 +21541,2025-03-09T17:00:33.502284-07:00,0.0,10.739852,10739.852 +21542,2025-03-09T17:00:44.236651-07:00,0.0,10.734367,10734.367 +21543,2025-03-09T17:00:54.966483-07:00,0.0,10.729832,10729.832 +21544,2025-03-09T17:01:05.709281-07:00,0.0,10.742798,10742.798 +21545,2025-03-09T17:01:16.434469-07:00,0.0,10.725188,10725.188 +21546,2025-03-09T17:01:27.172016-07:00,0.0,10.737547,10737.547 +21547,2025-03-09T17:01:37.909058-07:00,0.0,10.737042,10737.042 +21548,2025-03-09T17:01:48.637494-07:00,0.0,10.728436,10728.436 +21549,2025-03-09T17:01:59.372308-07:00,0.0,10.734814,10734.814 +21550,2025-03-09T17:02:10.105882-07:00,0.0,10.733574,10733.574 +21551,2025-03-09T17:02:20.842572-07:00,0.0,10.73669,10736.69 +21552,2025-03-09T17:02:31.569311-07:00,0.0,10.726739,10726.739 +21553,2025-03-09T17:02:42.309469-07:00,0.0,10.740158,10740.158 +21554,2025-03-09T17:02:53.036297-07:00,0.0,10.726828,10726.828 +21555,2025-03-09T17:03:03.771314-07:00,0.0,10.735017,10735.017 +21556,2025-03-09T17:03:14.503283-07:00,0.0,10.731969,10731.969 +21557,2025-03-09T17:03:25.238467-07:00,0.0,10.735184,10735.184 +21558,2025-03-09T17:03:35.975315-07:00,0.0,10.736848,10736.848 +21559,2025-03-09T17:03:46.699686-07:00,0.0,10.724371,10724.371 +21560,2025-03-09T17:03:57.439282-07:00,0.0,10.739596,10739.596 +21561,2025-03-09T17:04:08.169854-07:00,0.0,10.730572,10730.572 +21562,2025-03-09T17:04:18.906436-07:00,0.0,10.736582,10736.582 +21563,2025-03-09T17:04:29.632285-07:00,0.0,10.725849,10725.849 +21564,2025-03-09T17:04:40.366532-07:00,0.0,10.734247,10734.247 +21565,2025-03-09T17:04:51.104471-07:00,0.0,10.737939,10737.939 +21566,2025-03-09T17:05:01.834283-07:00,0.0,10.729812,10729.812 +21567,2025-03-09T17:05:12.568494-07:00,0.0,10.734211,10734.211 +21568,2025-03-09T17:05:23.295479-07:00,0.0,10.726985,10726.985 +21569,2025-03-09T17:05:34.023511-07:00,0.0,10.728032,10728.032 +21570,2025-03-09T17:05:44.760314-07:00,0.0,10.736803,10736.803 +21571,2025-03-09T17:05:50.666499-07:00,394.0,5.906185,5906.185 +21572,2025-03-09T17:05:55.498459-07:00,440.0,4.83196,4831.96 +21573,2025-03-09T17:06:06.225284-07:00,402.0,10.726825,10726.825 +21574,2025-03-09T17:06:16.959448-07:00,421.0,10.734164,10734.164 +21575,2025-03-09T17:06:27.691463-07:00,448.0,10.732015,10732.015 +21576,2025-03-09T17:06:38.418490-07:00,379.0,10.727027,10727.027 +21577,2025-03-09T17:06:49.150777-07:00,415.0,10.732287,10732.287 +21578,2025-03-09T17:06:59.882425-07:00,366.0,10.731648,10731.648 +21579,2025-03-09T17:07:10.609640-07:00,432.0,10.727215,10727.215 +21580,2025-03-09T17:07:21.347281-07:00,375.0,10.737641,10737.641 +21581,2025-03-09T17:07:32.080911-07:00,437.0,10.73363,10733.63 +21582,2025-03-09T17:07:42.813816-07:00,345.0,10.732905,10732.905 +21583,2025-03-09T17:07:53.550508-07:00,401.0,10.736692,10736.692 +21584,2025-03-09T17:08:04.283284-07:00,434.0,10.732776,10732.776 +21585,2025-03-09T17:08:13.038717-07:00,0.0,8.755433,8755.433 +21586,2025-03-09T17:08:15.011450-07:00,0.0,1.972733,1972.733 +21587,2025-03-09T17:08:25.738281-07:00,0.0,10.726831,10726.831 +21588,2025-03-09T17:08:36.478279-07:00,0.0,10.739998,10739.998 +21589,2025-03-09T17:08:47.206193-07:00,0.0,10.727914,10727.914 +21590,2025-03-09T17:08:57.934281-07:00,0.0,10.728088,10728.088 +21591,2025-03-09T17:09:08.674284-07:00,0.0,10.740003,10740.003 +21592,2025-03-09T17:09:19.407283-07:00,0.0,10.732999,10732.999 +21593,2025-03-09T17:09:30.134333-07:00,0.0,10.72705,10727.05 +21594,2025-03-09T17:09:40.869810-07:00,0.0,10.735477,10735.477 +21595,2025-03-09T17:09:51.591912-07:00,0.0,10.722102,10722.102 +21596,2025-03-09T17:10:02.323358-07:00,0.0,10.731446,10731.446 +21597,2025-03-09T17:10:13.061314-07:00,0.0,10.737956,10737.956 +21598,2025-03-09T17:10:23.783464-07:00,0.0,10.72215,10722.15 +21599,2025-03-09T17:10:34.512521-07:00,0.0,10.729057,10729.057 +21600,2025-03-09T17:10:45.244454-07:00,0.0,10.731933,10731.933 +21601,2025-03-09T17:10:55.975288-07:00,0.0,10.730834,10730.834 +21602,2025-03-09T17:11:06.711481-07:00,0.0,10.736193,10736.193 +21603,2025-03-09T17:11:17.443284-07:00,0.0,10.731803,10731.803 +21604,2025-03-09T17:11:28.177281-07:00,0.0,10.733997,10733.997 +21605,2025-03-09T17:11:38.909457-07:00,0.0,10.732176,10732.176 +21606,2025-03-09T17:11:49.647012-07:00,0.0,10.737555,10737.555 +21607,2025-03-09T17:12:00.374300-07:00,0.0,10.727288,10727.288 +21608,2025-03-09T17:12:11.109596-07:00,0.0,10.735296,10735.296 +21609,2025-03-09T17:12:21.839040-07:00,0.0,10.729444,10729.444 +21610,2025-03-09T17:12:32.569283-07:00,0.0,10.730243,10730.243 +21611,2025-03-09T17:12:43.309281-07:00,0.0,10.739998,10739.998 +21612,2025-03-09T17:12:54.042403-07:00,0.0,10.733122,10733.122 +21613,2025-03-09T17:13:04.764283-07:00,0.0,10.72188,10721.88 +21614,2025-03-09T17:13:15.502282-07:00,0.0,10.737999,10737.999 +21615,2025-03-09T17:13:26.235510-07:00,0.0,10.733228,10733.228 +21616,2025-03-09T17:13:36.969506-07:00,0.0,10.733996,10733.996 +21617,2025-03-09T17:13:47.693283-07:00,0.0,10.723777,10723.777 +21618,2025-03-09T17:13:58.423440-07:00,0.0,10.730157,10730.157 +21619,2025-03-09T17:14:09.160412-07:00,0.0,10.736972,10736.972 +21620,2025-03-09T17:14:19.895283-07:00,0.0,10.734871,10734.871 +21621,2025-03-09T17:14:30.622507-07:00,0.0,10.727224,10727.224 +21622,2025-03-09T17:14:41.358464-07:00,0.0,10.735957,10735.957 +21623,2025-03-09T17:14:52.085491-07:00,0.0,10.727027,10727.027 +21624,2025-03-09T17:15:02.822387-07:00,0.0,10.736896,10736.896 +21625,2025-03-09T17:15:13.553496-07:00,0.0,10.731109,10731.109 +21626,2025-03-09T17:15:24.288308-07:00,0.0,10.734812,10734.812 +21627,2025-03-09T17:15:35.014879-07:00,0.0,10.726571,10726.571 +21628,2025-03-09T17:15:45.750486-07:00,0.0,10.735607,10735.607 +21629,2025-03-09T17:15:56.480303-07:00,0.0,10.729817,10729.817 +21630,2025-03-09T17:16:07.217483-07:00,0.0,10.73718,10737.18 +21631,2025-03-09T17:16:17.944312-07:00,0.0,10.726829,10726.829 +21632,2025-03-09T17:16:28.672486-07:00,0.0,10.728174,10728.174 +21633,2025-03-09T17:16:39.410285-07:00,0.0,10.737799,10737.799 +21634,2025-03-09T17:16:50.134461-07:00,0.0,10.724176,10724.176 +21635,2025-03-09T17:17:00.875206-07:00,0.0,10.740745,10740.745 +21636,2025-03-09T17:17:11.601286-07:00,0.0,10.72608,10726.08 +21637,2025-03-09T17:17:22.332480-07:00,0.0,10.731194,10731.194 +21638,2025-03-09T17:17:33.063510-07:00,0.0,10.73103,10731.03 +21639,2025-03-09T17:17:43.799436-07:00,0.0,10.735926,10735.926 +21640,2025-03-09T17:17:54.535280-07:00,0.0,10.735844,10735.844 +21641,2025-03-09T17:18:05.266473-07:00,0.0,10.731193,10731.193 +21642,2025-03-09T17:18:15.998457-07:00,0.0,10.731984,10731.984 +21643,2025-03-09T17:18:26.731280-07:00,0.0,10.732823,10732.823 +21644,2025-03-09T17:18:37.470283-07:00,0.0,10.739003,10739.003 +21645,2025-03-09T17:18:48.197439-07:00,0.0,10.727156,10727.156 +21646,2025-03-09T17:18:58.924284-07:00,0.0,10.726845,10726.845 +21647,2025-03-09T17:19:09.664518-07:00,0.0,10.740234,10740.234 +21648,2025-03-09T17:19:20.388390-07:00,0.0,10.723872,10723.872 +21649,2025-03-09T17:19:31.122282-07:00,0.0,10.733892,10733.892 +21650,2025-03-09T17:19:41.855404-07:00,0.0,10.733122,10733.122 +21651,2025-03-09T17:19:52.593283-07:00,0.0,10.737879,10737.879 +21652,2025-03-09T17:20:03.330299-07:00,0.0,10.737016,10737.016 +21653,2025-03-09T17:20:14.058622-07:00,0.0,10.728323,10728.323 +21654,2025-03-09T17:20:24.795486-07:00,0.0,10.736864,10736.864 +21655,2025-03-09T17:20:35.527582-07:00,0.0,10.732096,10732.096 +21656,2025-03-09T17:20:46.258132-07:00,0.0,10.73055,10730.55 +21657,2025-03-09T17:20:56.987281-07:00,0.0,10.729149,10729.149 +21658,2025-03-09T17:21:07.729283-07:00,0.0,10.742002,10742.002 +21659,2025-03-09T17:21:18.457645-07:00,0.0,10.728362,10728.362 +21660,2025-03-09T17:21:29.190594-07:00,0.0,10.732949,10732.949 +21661,2025-03-09T17:21:39.928490-07:00,0.0,10.737896,10737.896 +21662,2025-03-09T17:21:50.658473-07:00,0.0,10.729983,10729.983 +21663,2025-03-09T17:22:01.392452-07:00,0.0,10.733979,10733.979 +21664,2025-03-09T17:22:12.127276-07:00,0.0,10.734824,10734.824 +21665,2025-03-09T17:22:22.858283-07:00,0.0,10.731007,10731.007 +21666,2025-03-09T17:22:33.595278-07:00,0.0,10.736995,10736.995 +21667,2025-03-09T17:22:44.334520-07:00,0.0,10.739242,10739.242 +21668,2025-03-09T17:22:55.063497-07:00,0.0,10.728977,10728.977 +21669,2025-03-09T17:23:05.796337-07:00,0.0,10.73284,10732.84 +21670,2025-03-09T17:23:16.537147-07:00,0.0,10.74081,10740.81 +21671,2025-03-09T17:23:27.270482-07:00,0.0,10.733335,10733.335 +21672,2025-03-09T17:23:37.994283-07:00,0.0,10.723801,10723.801 +21673,2025-03-09T17:23:48.736308-07:00,0.0,10.742025,10742.025 +21674,2025-03-09T17:23:59.467392-07:00,0.0,10.731084,10731.084 +21675,2025-03-09T17:24:10.195583-07:00,0.0,10.728191,10728.191 +21676,2025-03-09T17:24:20.935867-07:00,0.0,10.740284,10740.284 +21677,2025-03-09T17:24:31.659496-07:00,0.0,10.723629,10723.629 +21678,2025-03-09T17:24:42.397482-07:00,0.0,10.737986,10737.986 +21679,2025-03-09T17:24:53.132315-07:00,0.0,10.734833,10734.833 +21680,2025-03-09T17:25:03.868388-07:00,0.0,10.736073,10736.073 +21681,2025-03-09T17:25:14.599359-07:00,0.0,10.730971,10730.971 +21682,2025-03-09T17:25:25.336751-07:00,0.0,10.737392,10737.392 +21683,2025-03-09T17:25:36.071282-07:00,0.0,10.734531,10734.531 +21684,2025-03-09T17:25:46.811491-07:00,0.0,10.740209,10740.209 +21685,2025-03-09T17:25:57.549278-07:00,0.0,10.737787,10737.787 +21686,2025-03-09T17:26:08.281465-07:00,0.0,10.732187,10732.187 +21687,2025-03-09T17:26:19.015279-07:00,0.0,10.733814,10733.814 +21688,2025-03-09T17:26:29.744730-07:00,0.0,10.729451,10729.451 +21689,2025-03-09T17:26:40.481682-07:00,0.0,10.736952,10736.952 +21690,2025-03-09T17:26:51.217454-07:00,0.0,10.735772,10735.772 +21691,2025-03-09T17:27:01.953530-07:00,0.0,10.736076,10736.076 +21692,2025-03-09T17:27:12.689455-07:00,0.0,10.735925,10735.925 +21693,2025-03-09T17:27:23.422284-07:00,0.0,10.732829,10732.829 +21694,2025-03-09T17:27:34.151906-07:00,0.0,10.729622,10729.622 +21695,2025-03-09T17:27:44.888637-07:00,0.0,10.736731,10736.731 +21696,2025-03-09T17:27:55.617544-07:00,0.0,10.728907,10728.907 +21697,2025-03-09T17:28:06.351453-07:00,0.0,10.733909,10733.909 +21698,2025-03-09T17:28:17.074283-07:00,0.0,10.72283,10722.83 +21699,2025-03-09T17:28:27.815283-07:00,0.0,10.741,10741.0 +21700,2025-03-09T17:28:38.544694-07:00,0.0,10.729411,10729.411 +21701,2025-03-09T17:28:49.271485-07:00,0.0,10.726791,10726.791 +21702,2025-03-09T17:29:00.001284-07:00,0.0,10.729799,10729.799 +21703,2025-03-09T17:29:10.737306-07:00,0.0,10.736022,10736.022 +21704,2025-03-09T17:29:21.464279-07:00,0.0,10.726973,10726.973 +21705,2025-03-09T17:29:32.192285-07:00,0.0,10.728006,10728.006 +21706,2025-03-09T17:29:42.932002-07:00,0.0,10.739717,10739.717 +21707,2025-03-09T17:29:53.660280-07:00,0.0,10.728278,10728.278 +21708,2025-03-09T17:30:04.390720-07:00,0.0,10.73044,10730.44 +21709,2025-03-09T17:30:15.119343-07:00,0.0,10.728623,10728.623 +21710,2025-03-09T17:30:25.853312-07:00,0.0,10.733969,10733.969 +21711,2025-03-09T17:30:36.585279-07:00,0.0,10.731967,10731.967 +21712,2025-03-09T17:30:47.318473-07:00,0.0,10.733194,10733.194 +21713,2025-03-09T17:30:58.045780-07:00,0.0,10.727307,10727.307 +21714,2025-03-09T17:31:08.781398-07:00,0.0,10.735618,10735.618 +21715,2025-03-09T17:31:19.508278-07:00,0.0,10.72688,10726.88 +21716,2025-03-09T17:31:30.244461-07:00,0.0,10.736183,10736.183 +21717,2025-03-09T17:31:40.968355-07:00,0.0,10.723894,10723.894 +21718,2025-03-09T17:31:51.704717-07:00,0.0,10.736362,10736.362 +21719,2025-03-09T17:32:02.442469-07:00,0.0,10.737752,10737.752 +21720,2025-03-09T17:32:13.171285-07:00,0.0,10.728816,10728.816 +21721,2025-03-09T17:32:23.908281-07:00,0.0,10.736996,10736.996 +21722,2025-03-09T17:32:34.639279-07:00,0.0,10.730998,10730.998 +21723,2025-03-09T17:32:45.370496-07:00,0.0,10.731217,10731.217 +21724,2025-03-09T17:32:56.105283-07:00,0.0,10.734787,10734.787 +21725,2025-03-09T17:33:06.836522-07:00,0.0,10.731239,10731.239 +21726,2025-03-09T17:33:17.561864-07:00,0.0,10.725342,10725.342 +21727,2025-03-09T17:33:28.301354-07:00,0.0,10.73949,10739.49 +21728,2025-03-09T17:33:39.034276-07:00,0.0,10.732922,10732.922 +21729,2025-03-09T17:33:49.765287-07:00,0.0,10.731011,10731.011 +21730,2025-03-09T17:34:00.497566-07:00,0.0,10.732279,10732.279 +21731,2025-03-09T17:34:11.226458-07:00,0.0,10.728892,10728.892 +21732,2025-03-09T17:34:21.967484-07:00,0.0,10.741026,10741.026 +21733,2025-03-09T17:34:32.695388-07:00,0.0,10.727904,10727.904 +21734,2025-03-09T17:34:43.437910-07:00,0.0,10.742522,10742.522 +21735,2025-03-09T17:34:54.168345-07:00,0.0,10.730435,10730.435 +21736,2025-03-09T17:35:04.899279-07:00,0.0,10.730934,10730.934 +21737,2025-03-09T17:35:15.641284-07:00,0.0,10.742005,10742.005 +21738,2025-03-09T17:35:26.378214-07:00,0.0,10.73693,10736.93 +21739,2025-03-09T17:35:37.113453-07:00,0.0,10.735239,10735.239 +21740,2025-03-09T17:35:47.848677-07:00,0.0,10.735224,10735.224 +21741,2025-03-09T17:35:58.582498-07:00,0.0,10.733821,10733.821 +21742,2025-03-09T17:36:09.316826-07:00,0.0,10.734328,10734.328 +21743,2025-03-09T17:36:20.050281-07:00,0.0,10.733455,10733.455 +21744,2025-03-09T17:36:30.785425-07:00,0.0,10.735144,10735.144 +21745,2025-03-09T17:36:41.524292-07:00,0.0,10.738867,10738.867 +21746,2025-03-09T17:36:52.260461-07:00,0.0,10.736169,10736.169 +21747,2025-03-09T17:37:02.997160-07:00,0.0,10.736699,10736.699 +21748,2025-03-09T17:37:13.734286-07:00,0.0,10.737126,10737.126 +21749,2025-03-09T17:37:24.468536-07:00,0.0,10.73425,10734.25 +21750,2025-03-09T17:37:35.199456-07:00,0.0,10.73092,10730.92 +21751,2025-03-09T17:37:45.930283-07:00,0.0,10.730827,10730.827 +21752,2025-03-09T17:37:56.670280-07:00,0.0,10.739997,10739.997 +21753,2025-03-09T17:38:07.403283-07:00,0.0,10.733003,10733.003 +21754,2025-03-09T17:38:18.137463-07:00,0.0,10.73418,10734.18 +21755,2025-03-09T17:38:28.870325-07:00,0.0,10.732862,10732.862 +21756,2025-03-09T17:38:39.601574-07:00,0.0,10.731249,10731.249 +21757,2025-03-09T17:38:50.334419-07:00,0.0,10.732845,10732.845 +21758,2025-03-09T17:39:01.072627-07:00,0.0,10.738208,10738.208 +21759,2025-03-09T17:39:11.802281-07:00,0.0,10.729654,10729.654 +21760,2025-03-09T17:39:22.541352-07:00,0.0,10.739071,10739.071 +21761,2025-03-09T17:39:33.273440-07:00,0.0,10.732088,10732.088 +21762,2025-03-09T17:39:44.003281-07:00,0.0,10.729841,10729.841 +21763,2025-03-09T17:39:54.744574-07:00,0.0,10.741293,10741.293 +21764,2025-03-09T17:40:05.473466-07:00,0.0,10.728892,10728.892 +21765,2025-03-09T17:40:16.206466-07:00,0.0,10.733,10733.0 +21766,2025-03-09T17:40:26.946281-07:00,0.0,10.739815,10739.815 +21767,2025-03-09T17:40:37.676284-07:00,0.0,10.730003,10730.003 +21768,2025-03-09T17:40:48.407464-07:00,0.0,10.73118,10731.18 +21769,2025-03-09T17:40:59.150514-07:00,0.0,10.74305,10743.05 +21770,2025-03-09T17:41:09.876542-07:00,0.0,10.726028,10726.028 +21771,2025-03-09T17:41:20.610496-07:00,0.0,10.733954,10733.954 +21772,2025-03-09T17:41:31.348146-07:00,0.0,10.73765,10737.65 +21773,2025-03-09T17:41:42.081614-07:00,0.0,10.733468,10733.468 +21774,2025-03-09T17:41:52.820483-07:00,0.0,10.738869,10738.869 +21775,2025-03-09T17:42:03.549495-07:00,0.0,10.729012,10729.012 +21776,2025-03-09T17:42:14.282316-07:00,0.0,10.732821,10732.821 +21777,2025-03-09T17:42:25.011312-07:00,0.0,10.728996,10728.996 +21778,2025-03-09T17:42:35.752283-07:00,0.0,10.740971,10740.971 +21779,2025-03-09T17:42:46.490285-07:00,0.0,10.738002,10738.002 +21780,2025-03-09T17:42:57.221682-07:00,0.0,10.731397,10731.397 +21781,2025-03-09T17:43:07.957292-07:00,0.0,10.73561,10735.61 +21782,2025-03-09T17:43:18.682419-07:00,0.0,10.725127,10725.127 +21783,2025-03-09T17:43:29.415365-07:00,0.0,10.732946,10732.946 +21784,2025-03-09T17:43:40.152505-07:00,0.0,10.73714,10737.14 +21785,2025-03-09T17:43:50.885598-07:00,0.0,10.733093,10733.093 +21786,2025-03-09T17:44:01.620319-07:00,0.0,10.734721,10734.721 +21787,2025-03-09T17:44:12.358458-07:00,0.0,10.738139,10738.139 +21788,2025-03-09T17:44:23.087335-07:00,0.0,10.728877,10728.877 +21789,2025-03-09T17:44:33.821018-07:00,0.0,10.733683,10733.683 +21790,2025-03-09T17:44:44.558482-07:00,0.0,10.737464,10737.464 +21791,2025-03-09T17:44:55.284525-07:00,0.0,10.726043,10726.043 +21792,2025-03-09T17:45:06.016283-07:00,0.0,10.731758,10731.758 +21793,2025-03-09T17:45:16.757284-07:00,0.0,10.741001,10741.001 +21794,2025-03-09T17:45:27.488510-07:00,0.0,10.731226,10731.226 +21795,2025-03-09T17:45:38.219743-07:00,0.0,10.731233,10731.233 +21796,2025-03-09T17:45:48.948280-07:00,0.0,10.728537,10728.537 +21797,2025-03-09T17:45:59.680490-07:00,0.0,10.73221,10732.21 +21798,2025-03-09T17:46:10.407334-07:00,0.0,10.726844,10726.844 +21799,2025-03-09T17:46:21.140281-07:00,0.0,10.732947,10732.947 +21800,2025-03-09T17:46:31.870899-07:00,0.0,10.730618,10730.618 +21801,2025-03-09T17:46:42.599942-07:00,0.0,10.729043,10729.043 +21802,2025-03-09T17:46:53.335284-07:00,0.0,10.735342,10735.342 +21803,2025-03-09T17:47:04.066279-07:00,0.0,10.730995,10730.995 +21804,2025-03-09T17:47:14.800491-07:00,0.0,10.734212,10734.212 +21805,2025-03-09T17:47:25.533308-07:00,0.0,10.732817,10732.817 +21806,2025-03-09T17:47:36.265288-07:00,0.0,10.73198,10731.98 +21807,2025-03-09T17:47:46.998809-07:00,0.0,10.733521,10733.521 +21808,2025-03-09T17:47:57.731841-07:00,0.0,10.733032,10733.032 +21809,2025-03-09T17:48:08.454354-07:00,0.0,10.722513,10722.513 +21810,2025-03-09T17:48:19.191294-07:00,0.0,10.73694,10736.94 +21811,2025-03-09T17:48:29.919305-07:00,0.0,10.728011,10728.011 +21812,2025-03-09T17:48:40.655831-07:00,0.0,10.736526,10736.526 +21813,2025-03-09T17:48:51.380511-07:00,0.0,10.72468,10724.68 +21814,2025-03-09T17:49:02.110283-07:00,0.0,10.729772,10729.772 +21815,2025-03-09T17:49:12.850281-07:00,0.0,10.739998,10739.998 +21816,2025-03-09T17:49:23.583345-07:00,0.0,10.733064,10733.064 +21817,2025-03-09T17:49:34.302568-07:00,0.0,10.719223,10719.223 +21818,2025-03-09T17:49:45.036894-07:00,0.0,10.734326,10734.326 +21819,2025-03-09T17:49:55.771281-07:00,0.0,10.734387,10734.387 +21820,2025-03-09T17:50:06.503467-07:00,0.0,10.732186,10732.186 +21821,2025-03-09T17:50:17.235283-07:00,0.0,10.731816,10731.816 +21822,2025-03-09T17:50:27.965497-07:00,0.0,10.730214,10730.214 +21823,2025-03-09T17:50:38.692525-07:00,0.0,10.727028,10727.028 +21824,2025-03-09T17:50:49.422283-07:00,0.0,10.729758,10729.758 +21825,2025-03-09T17:51:00.154277-07:00,0.0,10.731994,10731.994 +21826,2025-03-09T17:51:10.892501-07:00,0.0,10.738224,10738.224 +21827,2025-03-09T17:51:21.625826-07:00,0.0,10.733325,10733.325 +21828,2025-03-09T17:51:32.346280-07:00,0.0,10.720454,10720.454 +21829,2025-03-09T17:51:43.087493-07:00,0.0,10.741213,10741.213 +21830,2025-03-09T17:51:53.813304-07:00,0.0,10.725811,10725.811 +21831,2025-03-09T17:52:04.549886-07:00,0.0,10.736582,10736.582 +21832,2025-03-09T17:52:15.277463-07:00,0.0,10.727577,10727.577 +21833,2025-03-09T17:52:26.110927-07:00,0.0,10.833464,10833.464 +21834,2025-03-09T17:52:36.841947-07:00,0.0,10.73102,10731.02 +21835,2025-03-09T17:52:47.566740-07:00,0.0,10.724793,10724.793 +21836,2025-03-09T17:52:58.302913-07:00,0.0,10.736173,10736.173 +21837,2025-03-09T17:53:09.035739-07:00,0.0,10.732826,10732.826 +21838,2025-03-09T17:53:19.767182-07:00,0.0,10.731443,10731.443 +21839,2025-03-09T17:53:30.490791-07:00,0.0,10.723609,10723.609 +21840,2025-03-09T17:53:41.225880-07:00,0.0,10.735089,10735.089 +21841,2025-03-09T17:53:51.962096-07:00,0.0,10.736216,10736.216 +21842,2025-03-09T17:54:02.692773-07:00,0.0,10.730677,10730.677 +21843,2025-03-09T17:54:13.420764-07:00,0.0,10.727991,10727.991 +21844,2025-03-09T17:54:24.157741-07:00,0.0,10.736977,10736.977 +21845,2025-03-09T17:54:34.885973-07:00,0.0,10.728232,10728.232 +21846,2025-03-09T17:54:45.615943-07:00,0.0,10.72997,10729.97 +21847,2025-03-09T17:54:56.340737-07:00,0.0,10.724794,10724.794 +21848,2025-03-09T17:55:07.066925-07:00,0.0,10.726188,10726.188 +21849,2025-03-09T17:55:17.793942-07:00,0.0,10.727017,10727.017 +21850,2025-03-09T17:55:28.520965-07:00,0.0,10.727023,10727.023 +21851,2025-03-09T17:55:39.255096-07:00,0.0,10.734131,10734.131 +21852,2025-03-09T17:55:49.981832-07:00,0.0,10.726736,10726.736 +21853,2025-03-09T17:56:00.706897-07:00,0.0,10.725065,10725.065 +21854,2025-03-09T17:56:11.444167-07:00,0.0,10.73727,10737.27 +21855,2025-03-09T17:56:22.167845-07:00,0.0,10.723678,10723.678 +21856,2025-03-09T17:56:32.899567-07:00,0.0,10.731722,10731.722 +21857,2025-03-09T17:56:43.621944-07:00,0.0,10.722377,10722.377 +21858,2025-03-09T17:56:54.352743-07:00,0.0,10.730799,10730.799 +21859,2025-03-09T17:57:05.081938-07:00,0.0,10.729195,10729.195 +21860,2025-03-09T17:57:15.814806-07:00,0.0,10.732868,10732.868 +21861,2025-03-09T17:57:26.540927-07:00,0.0,10.726121,10726.121 +21862,2025-03-09T17:57:37.268045-07:00,0.0,10.727118,10727.118 +21863,2025-03-09T17:57:47.996738-07:00,0.0,10.728693,10728.693 +21864,2025-03-09T17:57:58.721909-07:00,0.0,10.725171,10725.171 +21865,2025-03-09T17:58:09.451943-07:00,0.0,10.730034,10730.034 +21866,2025-03-09T17:58:20.181770-07:00,0.0,10.729827,10729.827 +21867,2025-03-09T17:58:30.908591-07:00,0.0,10.726821,10726.821 +21868,2025-03-09T17:58:41.645144-07:00,0.0,10.736553,10736.553 +21869,2025-03-09T17:58:52.364740-07:00,0.0,10.719596,10719.596 +21870,2025-03-09T17:59:03.093931-07:00,0.0,10.729191,10729.191 +21871,2025-03-09T17:59:13.829738-07:00,0.0,10.735807,10735.807 +21872,2025-03-09T17:59:24.552216-07:00,0.0,10.722478,10722.478 +21873,2025-03-09T17:59:35.281973-07:00,0.0,10.729757,10729.757 +21874,2025-03-09T17:59:46.008315-07:00,0.0,10.726342,10726.342 +21875,2025-03-09T17:59:56.737929-07:00,0.0,10.729614,10729.614 +21876,2025-03-09T18:00:07.467295-07:00,0.0,10.729366,10729.366 +21877,2025-03-09T18:00:18.195299-07:00,0.0,10.728004,10728.004 +21878,2025-03-09T18:00:28.923571-07:00,0.0,10.728272,10728.272 +21879,2025-03-09T18:00:39.650738-07:00,0.0,10.727167,10727.167 +21880,2025-03-09T18:00:50.382843-07:00,0.0,10.732105,10732.105 +21881,2025-03-09T18:01:01.105944-07:00,0.0,10.723101,10723.101 +21882,2025-03-09T18:01:11.834779-07:00,0.0,10.728835,10728.835 +21883,2025-03-09T18:01:22.560906-07:00,0.0,10.726127,10726.127 +21884,2025-03-09T18:01:33.283935-07:00,0.0,10.723029,10723.029 +21885,2025-03-09T18:01:44.021741-07:00,0.0,10.737806,10737.806 +21886,2025-03-09T18:01:54.743777-07:00,0.0,10.722036,10722.036 +21887,2025-03-09T18:02:05.480807-07:00,0.0,10.73703,10737.03 +21888,2025-03-09T18:02:16.207931-07:00,0.0,10.727124,10727.124 +21889,2025-03-09T18:02:26.940476-07:00,0.0,10.732545,10732.545 +21890,2025-03-09T18:02:37.661833-07:00,0.0,10.721357,10721.357 +21891,2025-03-09T18:02:48.382762-07:00,0.0,10.720929,10720.929 +21892,2025-03-09T18:02:59.113739-07:00,0.0,10.730977,10730.977 +21893,2025-03-09T18:03:09.844928-07:00,0.0,10.731189,10731.189 +21894,2025-03-09T18:03:20.563149-07:00,0.0,10.718221,10718.221 +21895,2025-03-09T18:03:31.291738-07:00,0.0,10.728589,10728.589 +21896,2025-03-09T18:03:42.026906-07:00,0.0,10.735168,10735.168 +21897,2025-03-09T18:03:52.754107-07:00,0.0,10.727201,10727.201 +21898,2025-03-09T18:04:03.488949-07:00,0.0,10.734842,10734.842 +21899,2025-03-09T18:04:14.218116-07:00,0.0,10.729167,10729.167 +21900,2025-03-09T18:04:24.943738-07:00,0.0,10.725622,10725.622 +21901,2025-03-09T18:04:35.683735-07:00,0.0,10.739997,10739.997 +21902,2025-03-09T18:04:46.411915-07:00,0.0,10.72818,10728.18 +21903,2025-03-09T18:04:57.136743-07:00,0.0,10.724828,10724.828 +21904,2025-03-09T18:05:07.869058-07:00,0.0,10.732315,10732.315 +21905,2025-03-09T18:05:18.604211-07:00,0.0,10.735153,10735.153 +21906,2025-03-09T18:05:29.335941-07:00,0.0,10.73173,10731.73 +21907,2025-03-09T18:05:40.065971-07:00,0.0,10.73003,10730.03 +21908,2025-03-09T18:05:50.798741-07:00,0.0,10.73277,10732.77 +21909,2025-03-09T18:06:01.524743-07:00,0.0,10.726002,10726.002 +21910,2025-03-09T18:06:12.258741-07:00,0.0,10.733998,10733.998 +21911,2025-03-09T18:06:22.995919-07:00,0.0,10.737178,10737.178 +21912,2025-03-09T18:06:33.721807-07:00,0.0,10.725888,10725.888 +21913,2025-03-09T18:06:44.456889-07:00,0.0,10.735082,10735.082 +21914,2025-03-09T18:06:55.197815-07:00,0.0,10.740926,10740.926 +21915,2025-03-09T18:07:05.930343-07:00,0.0,10.732528,10732.528 +21916,2025-03-09T18:07:16.664721-07:00,0.0,10.734378,10734.378 +21917,2025-03-09T18:07:27.389840-07:00,0.0,10.725119,10725.119 +21918,2025-03-09T18:07:38.122924-07:00,0.0,10.733084,10733.084 +21919,2025-03-09T18:07:48.866433-07:00,0.0,10.743509,10743.509 +21920,2025-03-09T18:07:59.601473-07:00,0.0,10.73504,10735.04 +21921,2025-03-09T18:08:10.329740-07:00,0.0,10.728267,10728.267 +21922,2025-03-09T18:08:21.068762-07:00,0.0,10.739022,10739.022 +21923,2025-03-09T18:08:31.801906-07:00,0.0,10.733144,10733.144 +21924,2025-03-09T18:08:42.541587-07:00,0.0,10.739681,10739.681 +21925,2025-03-09T18:08:53.269769-07:00,0.0,10.728182,10728.182 +21926,2025-03-09T18:09:04.007740-07:00,0.0,10.737971,10737.971 +21927,2025-03-09T18:09:14.739907-07:00,0.0,10.732167,10732.167 +21928,2025-03-09T18:09:36.204740-07:00,0.0,21.464833,21464.833 +21929,2025-03-09T18:09:46.938741-07:00,0.0,10.734001,10734.001 +21930,2025-03-09T18:09:57.673429-07:00,0.0,10.734688,10734.688 +21931,2025-03-09T18:10:08.406948-07:00,0.0,10.733519,10733.519 +21932,2025-03-09T18:10:19.144741-07:00,0.0,10.737793,10737.793 +21933,2025-03-09T18:10:29.875155-07:00,0.0,10.730414,10730.414 +21934,2025-03-09T18:10:40.612567-07:00,0.0,10.737412,10737.412 +21935,2025-03-09T18:10:51.347174-07:00,0.0,10.734607,10734.607 +21936,2025-03-09T18:11:02.080738-07:00,0.0,10.733564,10733.564 +21937,2025-03-09T18:11:12.814965-07:00,0.0,10.734227,10734.227 +21938,2025-03-09T18:11:23.545960-07:00,0.0,10.730995,10730.995 +21939,2025-03-09T18:11:34.279740-07:00,0.0,10.73378,10733.78 +21940,2025-03-09T18:11:45.011138-07:00,0.0,10.731398,10731.398 +21941,2025-03-09T18:11:55.753946-07:00,0.0,10.742808,10742.808 +21942,2025-03-09T18:12:06.477897-07:00,0.0,10.723951,10723.951 +21943,2025-03-09T18:12:17.209737-07:00,0.0,10.73184,10731.84 +21944,2025-03-09T18:12:27.949736-07:00,0.0,10.739999,10739.999 +21945,2025-03-09T18:12:38.673971-07:00,0.0,10.724235,10724.235 +21946,2025-03-09T18:12:49.414813-07:00,0.0,10.740842,10740.842 +21947,2025-03-09T18:13:00.143134-07:00,0.0,10.728321,10728.321 +21948,2025-03-09T18:13:10.877923-07:00,0.0,10.734789,10734.789 +21949,2025-03-09T18:13:21.610741-07:00,0.0,10.732818,10732.818 +21950,2025-03-09T18:13:32.340735-07:00,0.0,10.729994,10729.994 +21951,2025-03-09T18:13:43.075875-07:00,0.0,10.73514,10735.14 +21952,2025-03-09T18:13:53.809081-07:00,0.0,10.733206,10733.206 +21953,2025-03-09T18:14:04.546737-07:00,0.0,10.737656,10737.656 +21954,2025-03-09T18:14:15.276831-07:00,0.0,10.730094,10730.094 +21955,2025-03-09T18:14:26.003923-07:00,0.0,10.727092,10727.092 +21956,2025-03-09T18:14:36.743734-07:00,0.0,10.739811,10739.811 +21957,2025-03-09T18:14:47.469954-07:00,0.0,10.72622,10726.22 +21958,2025-03-09T18:14:58.208740-07:00,0.0,10.738786,10738.786 +21959,2025-03-09T18:15:08.935205-07:00,0.0,10.726465,10726.465 +21960,2025-03-09T18:15:19.672741-07:00,0.0,10.737536,10737.536 +21961,2025-03-09T18:15:30.395953-07:00,0.0,10.723212,10723.212 +21962,2025-03-09T18:15:41.132190-07:00,0.0,10.736237,10736.237 +21963,2025-03-09T18:15:51.867735-07:00,0.0,10.735545,10735.545 +21964,2025-03-09T18:16:02.597945-07:00,0.0,10.73021,10730.21 +21965,2025-03-09T18:16:13.327914-07:00,0.0,10.729969,10729.969 +21966,2025-03-09T18:16:24.066758-07:00,0.0,10.738844,10738.844 +21967,2025-03-09T18:16:34.798738-07:00,0.0,10.73198,10731.98 +21968,2025-03-09T18:16:45.527459-07:00,0.0,10.728721,10728.721 +21969,2025-03-09T18:16:56.257970-07:00,0.0,10.730511,10730.511 +21970,2025-03-09T18:17:06.994961-07:00,0.0,10.736991,10736.991 +21971,2025-03-09T18:17:17.722743-07:00,0.0,10.727782,10727.782 +21972,2025-03-09T18:17:28.449783-07:00,0.0,10.72704,10727.04 +21973,2025-03-09T18:17:39.189814-07:00,0.0,10.740031,10740.031 +21974,2025-03-09T18:17:49.914143-07:00,0.0,10.724329,10724.329 +21975,2025-03-09T18:18:00.656935-07:00,0.0,10.742792,10742.792 +21976,2025-03-09T18:18:11.385939-07:00,0.0,10.729004,10729.004 +21977,2025-03-09T18:18:22.114738-07:00,0.0,10.728799,10728.799 +21978,2025-03-09T18:18:32.848788-07:00,0.0,10.73405,10734.05 +21979,2025-03-09T18:18:43.585931-07:00,0.0,10.737143,10737.143 +21980,2025-03-09T18:18:54.320070-07:00,0.0,10.734139,10734.139 +21981,2025-03-09T18:19:05.046181-07:00,0.0,10.726111,10726.111 +21982,2025-03-09T18:19:15.784543-07:00,0.0,10.738362,10738.362 +21983,2025-03-09T18:19:26.509740-07:00,0.0,10.725197,10725.197 +21984,2025-03-09T18:19:37.252836-07:00,0.0,10.743096,10743.096 +21985,2025-03-09T18:19:47.980799-07:00,0.0,10.727963,10727.963 +21986,2025-03-09T18:19:58.717049-07:00,0.0,10.73625,10736.25 +21987,2025-03-09T18:20:09.450770-07:00,0.0,10.733721,10733.721 +21988,2025-03-09T18:20:20.180949-07:00,0.0,10.730179,10730.179 +21989,2025-03-09T18:20:30.912911-07:00,0.0,10.731962,10731.962 +21990,2025-03-09T18:20:41.645764-07:00,0.0,10.732853,10732.853 +21991,2025-03-09T18:20:52.385739-07:00,0.0,10.739975,10739.975 +21992,2025-03-09T18:21:03.113743-07:00,0.0,10.728004,10728.004 +21993,2025-03-09T18:21:13.842023-07:00,0.0,10.72828,10728.28 +21994,2025-03-09T18:21:24.575738-07:00,0.0,10.733715,10733.715 +21995,2025-03-09T18:21:35.308954-07:00,0.0,10.733216,10733.216 +21996,2025-03-09T18:21:46.037923-07:00,0.0,10.728969,10728.969 +21997,2025-03-09T18:21:56.778741-07:00,0.0,10.740818,10740.818 +21998,2025-03-09T18:22:07.507399-07:00,0.0,10.728658,10728.658 +21999,2025-03-09T18:22:18.241864-07:00,0.0,10.734465,10734.465 +22000,2025-03-09T18:22:28.978981-07:00,0.0,10.737117,10737.117 +22001,2025-03-09T18:22:39.708742-07:00,0.0,10.729761,10729.761 +22002,2025-03-09T18:22:50.440939-07:00,0.0,10.732197,10732.197 +22003,2025-03-09T18:23:01.172929-07:00,0.0,10.73199,10731.99 +22004,2025-03-09T18:23:11.915913-07:00,0.0,10.742984,10742.984 +22005,2025-03-09T18:23:22.639840-07:00,0.0,10.723927,10723.927 +22006,2025-03-09T18:23:33.376744-07:00,0.0,10.736904,10736.904 +22007,2025-03-09T18:23:44.105839-07:00,0.0,10.729095,10729.095 +22008,2025-03-09T18:23:54.843844-07:00,0.0,10.738005,10738.005 +22009,2025-03-09T18:24:05.581958-07:00,0.0,10.738114,10738.114 +22010,2025-03-09T18:24:16.314924-07:00,0.0,10.732966,10732.966 +22011,2025-03-09T18:24:27.045863-07:00,0.0,10.730939,10730.939 +22012,2025-03-09T18:24:37.785738-07:00,0.0,10.739875,10739.875 +22013,2025-03-09T18:24:48.525860-07:00,0.0,10.740122,10740.122 +22014,2025-03-09T18:24:59.258741-07:00,0.0,10.732881,10732.881 +22015,2025-03-09T18:25:09.989335-07:00,0.0,10.730594,10730.594 +22016,2025-03-09T18:25:20.721738-07:00,0.0,10.732403,10732.403 +22017,2025-03-09T18:25:31.448735-07:00,0.0,10.726997,10726.997 +22018,2025-03-09T18:25:42.190945-07:00,0.0,10.74221,10742.21 +22019,2025-03-09T18:25:52.916801-07:00,0.0,10.725856,10725.856 +22020,2025-03-09T18:26:03.654734-07:00,0.0,10.737933,10737.933 +22021,2025-03-09T18:26:14.393892-07:00,0.0,10.739158,10739.158 +22022,2025-03-09T18:26:25.117923-07:00,0.0,10.724031,10724.031 +22023,2025-03-09T18:26:35.852740-07:00,0.0,10.734817,10734.817 +22024,2025-03-09T18:26:46.589734-07:00,0.0,10.736994,10736.994 +22025,2025-03-09T18:26:57.326877-07:00,0.0,10.737143,10737.143 +22026,2025-03-09T18:27:08.065959-07:00,0.0,10.739082,10739.082 +22027,2025-03-09T18:27:18.796739-07:00,0.0,10.73078,10730.78 +22028,2025-03-09T18:27:29.525943-07:00,0.0,10.729204,10729.204 +22029,2025-03-09T18:27:40.266740-07:00,0.0,10.740797,10740.797 +22030,2025-03-09T18:27:51.003978-07:00,0.0,10.737238,10737.238 +22031,2025-03-09T18:28:01.742940-07:00,0.0,10.738962,10738.962 +22032,2025-03-09T18:28:12.469740-07:00,0.0,10.7268,10726.8 +22033,2025-03-09T18:28:23.204791-07:00,0.0,10.735051,10735.051 +22034,2025-03-09T18:28:33.947933-07:00,0.0,10.743142,10743.142 +22035,2025-03-09T18:28:44.674734-07:00,0.0,10.726801,10726.801 +22036,2025-03-09T18:28:55.410144-07:00,0.0,10.73541,10735.41 +22037,2025-03-09T18:29:06.144737-07:00,0.0,10.734593,10734.593 +22038,2025-03-09T18:29:16.869658-07:00,0.0,10.724921,10724.921 +22039,2025-03-09T18:29:27.608137-07:00,0.0,10.738479,10738.479 +22040,2025-03-09T18:29:38.336770-07:00,0.0,10.728633,10728.633 +22041,2025-03-09T18:29:49.070861-07:00,0.0,10.734091,10734.091 +22042,2025-03-09T18:29:59.808996-07:00,0.0,10.738135,10738.135 +22043,2025-03-09T18:30:10.537912-07:00,0.0,10.728916,10728.916 +22044,2025-03-09T18:30:21.268954-07:00,0.0,10.731042,10731.042 +22045,2025-03-09T18:30:32.000090-07:00,0.0,10.731136,10731.136 +22046,2025-03-09T18:30:42.727814-07:00,0.0,10.727724,10727.724 +22047,2025-03-09T18:30:53.462002-07:00,0.0,10.734188,10734.188 +22048,2025-03-09T18:31:04.191549-07:00,0.0,10.729547,10729.547 +22049,2025-03-09T18:31:14.922736-07:00,0.0,10.731187,10731.187 +22050,2025-03-09T18:31:25.659737-07:00,0.0,10.737001,10737.001 +22051,2025-03-09T18:31:36.391895-07:00,0.0,10.732158,10732.158 +22052,2025-03-09T18:31:47.126789-07:00,0.0,10.734894,10734.894 +22053,2025-03-09T18:31:57.859740-07:00,0.0,10.732951,10732.951 +22054,2025-03-09T18:32:08.588192-07:00,0.0,10.728452,10728.452 +22055,2025-03-09T18:32:19.318876-07:00,0.0,10.730684,10730.684 +22056,2025-03-09T18:32:30.056322-07:00,0.0,10.737446,10737.446 +22057,2025-03-09T18:32:40.791738-07:00,0.0,10.735416,10735.416 +22058,2025-03-09T18:32:51.516925-07:00,0.0,10.725187,10725.187 +22059,2025-03-09T18:33:02.253842-07:00,0.0,10.736917,10736.917 +22060,2025-03-09T18:33:12.986972-07:00,0.0,10.73313,10733.13 +22061,2025-03-09T18:33:23.720144-07:00,0.0,10.733172,10733.172 +22062,2025-03-09T18:33:34.451882-07:00,0.0,10.731738,10731.738 +22063,2025-03-09T18:33:45.185805-07:00,0.0,10.733923,10733.923 +22064,2025-03-09T18:33:55.915741-07:00,0.0,10.729936,10729.936 +22065,2025-03-09T18:34:06.644390-07:00,0.0,10.728649,10728.649 +22066,2025-03-09T18:34:17.368736-07:00,0.0,10.724346,10724.346 +22067,2025-03-09T18:34:28.101928-07:00,0.0,10.733192,10733.192 +22068,2025-03-09T18:34:38.828767-07:00,0.0,10.726839,10726.839 +22069,2025-03-09T18:34:49.556738-07:00,0.0,10.727971,10727.971 +22070,2025-03-09T18:35:00.288860-07:00,0.0,10.732122,10732.122 +22071,2025-03-09T18:35:11.021983-07:00,0.0,10.733123,10733.123 +22072,2025-03-09T18:35:21.754943-07:00,0.0,10.73296,10732.96 +22073,2025-03-09T18:35:32.483960-07:00,0.0,10.729017,10729.017 +22074,2025-03-09T18:35:43.222049-07:00,0.0,10.738089,10738.089 +22075,2025-03-09T18:35:53.951740-07:00,0.0,10.729691,10729.691 +22076,2025-03-09T18:36:04.677738-07:00,0.0,10.725998,10725.998 +22077,2025-03-09T18:36:15.406209-07:00,0.0,10.728471,10728.471 +22078,2025-03-09T18:36:26.136741-07:00,0.0,10.730532,10730.532 +22079,2025-03-09T18:36:36.871916-07:00,0.0,10.735175,10735.175 +22080,2025-03-09T18:36:47.603904-07:00,0.0,10.731988,10731.988 +22081,2025-03-09T18:36:58.330803-07:00,0.0,10.726899,10726.899 +22082,2025-03-09T18:37:09.063738-07:00,0.0,10.732935,10732.935 +22083,2025-03-09T18:37:19.797128-07:00,0.0,10.73339,10733.39 +22084,2025-03-09T18:37:30.526770-07:00,0.0,10.729642,10729.642 +22085,2025-03-09T18:37:41.261741-07:00,0.0,10.734971,10734.971 +22086,2025-03-09T18:37:51.992477-07:00,0.0,10.730736,10730.736 +22087,2025-03-09T18:38:02.726737-07:00,0.0,10.73426,10734.26 +22088,2025-03-09T18:38:13.458735-07:00,0.0,10.731998,10731.998 +22089,2025-03-09T18:38:24.183811-07:00,0.0,10.725076,10725.076 +22090,2025-03-09T18:38:34.914831-07:00,0.0,10.73102,10731.02 +22091,2025-03-09T18:38:45.646738-07:00,0.0,10.731907,10731.907 +22092,2025-03-09T18:38:56.366921-07:00,0.0,10.720183,10720.183 +22093,2025-03-09T18:39:07.098943-07:00,0.0,10.732022,10732.022 +22094,2025-03-09T18:39:17.830867-07:00,0.0,10.731924,10731.924 +22095,2025-03-09T18:39:28.565814-07:00,0.0,10.734947,10734.947 +22096,2025-03-09T18:39:39.289734-07:00,0.0,10.72392,10723.92 +22097,2025-03-09T18:39:50.019911-07:00,0.0,10.730177,10730.177 +22098,2025-03-09T18:40:00.750129-07:00,0.0,10.730218,10730.218 +22099,2025-03-09T18:40:11.474734-07:00,0.0,10.724605,10724.605 +22100,2025-03-09T18:40:22.211773-07:00,0.0,10.737039,10737.039 +22101,2025-03-09T18:40:32.939851-07:00,0.0,10.728078,10728.078 +22102,2025-03-09T18:40:43.669737-07:00,0.0,10.729886,10729.886 +22103,2025-03-09T18:40:54.387920-07:00,0.0,10.718183,10718.183 +22104,2025-03-09T18:41:05.116000-07:00,0.0,10.72808,10728.08 +22105,2025-03-09T18:41:15.852737-07:00,0.0,10.736737,10736.737 +22106,2025-03-09T18:41:26.579908-07:00,0.0,10.727171,10727.171 +22107,2025-03-09T18:41:37.308326-07:00,0.0,10.728418,10728.418 +22108,2025-03-09T18:41:48.029939-07:00,0.0,10.721613,10721.613 +22109,2025-03-09T18:41:58.761736-07:00,0.0,10.731797,10731.797 +22110,2025-03-09T18:42:09.483809-07:00,0.0,10.722073,10722.073 +22111,2025-03-09T18:42:20.219855-07:00,0.0,10.736046,10736.046 +22112,2025-03-09T18:42:30.948882-07:00,0.0,10.729027,10729.027 +22113,2025-03-09T18:42:41.673074-07:00,0.0,10.724192,10724.192 +22114,2025-03-09T18:42:52.399872-07:00,0.0,10.726798,10726.798 +22115,2025-03-09T18:43:03.124742-07:00,0.0,10.72487,10724.87 +22116,2025-03-09T18:43:13.859961-07:00,0.0,10.735219,10735.219 +22117,2025-03-09T18:43:24.580745-07:00,0.0,10.720784,10720.784 +22118,2025-03-09T18:43:35.310774-07:00,0.0,10.730029,10730.029 +22119,2025-03-09T18:43:46.037185-07:00,0.0,10.726411,10726.411 +22120,2025-03-09T18:43:56.768738-07:00,0.0,10.731553,10731.553 +22121,2025-03-09T18:44:07.504750-07:00,0.0,10.736012,10736.012 +22122,2025-03-09T18:44:18.232910-07:00,0.0,10.72816,10728.16 +22123,2025-03-09T18:44:28.954737-07:00,0.0,10.721827,10721.827 +22124,2025-03-09T18:44:39.682924-07:00,0.0,10.728187,10728.187 +22125,2025-03-09T18:44:50.412769-07:00,0.0,10.729845,10729.845 +22126,2025-03-09T18:45:01.144741-07:00,0.0,10.731972,10731.972 +22127,2025-03-09T18:45:11.870813-07:00,0.0,10.726072,10726.072 +22128,2025-03-09T18:45:22.605937-07:00,0.0,10.735124,10735.124 +22129,2025-03-09T18:45:33.328935-07:00,0.0,10.722998,10722.998 +22130,2025-03-09T18:45:44.056920-07:00,0.0,10.727985,10727.985 +22131,2025-03-09T18:45:54.781813-07:00,0.0,10.724893,10724.893 +22132,2025-03-09T18:46:05.501925-07:00,0.0,10.720112,10720.112 +22133,2025-03-09T18:46:16.229903-07:00,0.0,10.727978,10727.978 +22134,2025-03-09T18:46:26.965740-07:00,0.0,10.735837,10735.837 +22135,2025-03-09T18:46:37.686226-07:00,0.0,10.720486,10720.486 +22136,2025-03-09T18:46:48.421740-07:00,0.0,10.735514,10735.514 +22137,2025-03-09T18:46:59.141793-07:00,0.0,10.720053,10720.053 +22138,2025-03-09T18:47:09.874765-07:00,0.0,10.732972,10732.972 +22139,2025-03-09T18:47:20.602996-07:00,0.0,10.728231,10728.231 +22140,2025-03-09T18:47:31.333940-07:00,0.0,10.730944,10730.944 +22141,2025-03-09T18:47:42.065811-07:00,0.0,10.731871,10731.871 +22142,2025-03-09T18:47:52.787742-07:00,0.0,10.721931,10721.931 +22143,2025-03-09T18:48:03.515936-07:00,0.0,10.728194,10728.194 +22144,2025-03-09T18:48:14.246770-07:00,0.0,10.730834,10730.834 +22145,2025-03-09T18:48:24.977626-07:00,0.0,10.730856,10730.856 +22146,2025-03-09T18:48:35.699263-07:00,0.0,10.721637,10721.637 +22147,2025-03-09T18:48:46.427922-07:00,0.0,10.728659,10728.659 +22148,2025-03-09T18:48:57.165986-07:00,0.0,10.738064,10738.064 +22149,2025-03-09T18:49:07.890027-07:00,0.0,10.724041,10724.041 +22150,2025-03-09T18:49:18.612918-07:00,0.0,10.722891,10722.891 +22151,2025-03-09T18:49:29.347110-07:00,0.0,10.734192,10734.192 +22152,2025-03-09T18:49:40.081738-07:00,0.0,10.734628,10734.628 +22153,2025-03-09T18:49:50.800765-07:00,0.0,10.719027,10719.027 +22154,2025-03-09T18:50:01.538911-07:00,0.0,10.738146,10738.146 +22155,2025-03-09T18:50:12.266805-07:00,0.0,10.727894,10727.894 +22156,2025-03-09T18:50:22.999023-07:00,0.0,10.732218,10732.218 +22157,2025-03-09T18:50:33.722916-07:00,0.0,10.723893,10723.893 +22158,2025-03-09T18:50:44.452738-07:00,0.0,10.729822,10729.822 +22159,2025-03-09T18:50:55.187114-07:00,0.0,10.734376,10734.376 +22160,2025-03-09T18:51:05.923823-07:00,0.0,10.736709,10736.709 +22161,2025-03-09T18:51:16.645741-07:00,0.0,10.721918,10721.918 +22162,2025-03-09T18:51:27.379740-07:00,0.0,10.733999,10733.999 +22163,2025-03-09T18:51:38.109900-07:00,0.0,10.73016,10730.16 +22164,2025-03-09T18:51:48.835026-07:00,0.0,10.725126,10725.126 +22165,2025-03-09T18:51:59.570740-07:00,0.0,10.735714,10735.714 +22166,2025-03-09T18:52:10.300950-07:00,0.0,10.73021,10730.21 +22167,2025-03-09T18:52:21.023737-07:00,0.0,10.722787,10722.787 +22168,2025-03-09T18:52:31.792923-07:00,0.0,10.769186,10769.186 +22169,2025-03-09T18:52:42.521681-07:00,0.0,10.728758,10728.758 +22170,2025-03-09T18:52:53.248797-07:00,0.0,10.727116,10727.116 +22171,2025-03-09T18:53:03.980738-07:00,0.0,10.731941,10731.941 +22172,2025-03-09T18:53:14.715560-07:00,0.0,10.734822,10734.822 +22173,2025-03-09T18:53:25.441736-07:00,0.0,10.726176,10726.176 +22174,2025-03-09T18:53:36.180075-07:00,0.0,10.738339,10738.339 +22175,2025-03-09T18:53:46.912904-07:00,0.0,10.732829,10732.829 +22176,2025-03-09T18:53:57.635760-07:00,0.0,10.722856,10722.856 +22177,2025-03-09T18:54:08.362732-07:00,0.0,10.726972,10726.972 +22178,2025-03-09T18:54:19.097992-07:00,0.0,10.73526,10735.26 +22179,2025-03-09T18:54:29.825767-07:00,0.0,10.727775,10727.775 +22180,2025-03-09T18:54:40.562914-07:00,0.0,10.737147,10737.147 +22181,2025-03-09T18:54:51.294927-07:00,0.0,10.732013,10732.013 +22182,2025-03-09T18:55:02.024859-07:00,0.0,10.729932,10729.932 +22183,2025-03-09T18:55:12.748735-07:00,0.0,10.723876,10723.876 +22184,2025-03-09T18:55:23.484904-07:00,0.0,10.736169,10736.169 +22185,2025-03-09T18:55:34.212736-07:00,0.0,10.727832,10727.832 +22186,2025-03-09T18:55:44.946736-07:00,0.0,10.734,10734.0 +22187,2025-03-09T18:55:55.678910-07:00,0.0,10.732174,10732.174 +22188,2025-03-09T18:56:06.407730-07:00,0.0,10.72882,10728.82 +22189,2025-03-09T18:56:17.138736-07:00,0.0,10.731006,10731.006 +22190,2025-03-09T18:56:27.863917-07:00,0.0,10.725181,10725.181 +22191,2025-03-09T18:56:38.594731-07:00,0.0,10.730814,10730.814 +22192,2025-03-09T18:56:49.326957-07:00,0.0,10.732226,10732.226 +22193,2025-03-09T18:57:00.057922-07:00,0.0,10.730965,10730.965 +22194,2025-03-09T18:57:10.785768-07:00,0.0,10.727846,10727.846 +22195,2025-03-09T18:57:21.514950-07:00,0.0,10.729182,10729.182 +22196,2025-03-09T18:57:32.249955-07:00,0.0,10.735005,10735.005 +22197,2025-03-09T18:57:42.983027-07:00,0.0,10.733072,10733.072 +22198,2025-03-09T18:57:53.711802-07:00,0.0,10.728775,10728.775 +22199,2025-03-09T18:58:04.438021-07:00,0.0,10.726219,10726.219 +22200,2025-03-09T18:58:15.167886-07:00,0.0,10.729865,10729.865 +22201,2025-03-09T18:58:25.904737-07:00,0.0,10.736851,10736.851 +22202,2025-03-09T18:58:36.632145-07:00,0.0,10.727408,10727.408 +22203,2025-03-09T18:58:47.361983-07:00,0.0,10.729838,10729.838 +22204,2025-03-09T18:58:58.090096-07:00,0.0,10.728113,10728.113 +22205,2025-03-09T18:59:08.820592-07:00,0.0,10.730496,10730.496 +22206,2025-03-09T18:59:19.552734-07:00,0.0,10.732142,10732.142 +22207,2025-03-09T18:59:30.279738-07:00,0.0,10.727004,10727.004 +22208,2025-03-09T18:59:41.010598-07:00,0.0,10.73086,10730.86 +22209,2025-03-09T18:59:51.737736-07:00,0.0,10.727138,10727.138 +22210,2025-03-09T19:00:02.467125-07:00,0.0,10.729389,10729.389 +22211,2025-03-09T19:00:13.200707-07:00,0.0,10.733582,10733.582 +22212,2025-03-09T19:00:23.931736-07:00,0.0,10.731029,10731.029 +22213,2025-03-09T19:00:34.666734-07:00,0.0,10.734998,10734.998 +22214,2025-03-09T19:00:45.394927-07:00,0.0,10.728193,10728.193 +22215,2025-03-09T19:00:56.123974-07:00,0.0,10.729047,10729.047 +22216,2025-03-09T19:01:06.856764-07:00,0.0,10.73279,10732.79 +22217,2025-03-09T19:01:17.580803-07:00,0.0,10.724039,10724.039 +22218,2025-03-09T19:01:28.306941-07:00,0.0,10.726138,10726.138 +22219,2025-03-09T19:01:39.045817-07:00,0.0,10.738876,10738.876 +22220,2025-03-09T19:01:49.775888-07:00,0.0,10.730071,10730.071 +22221,2025-03-09T19:02:00.505733-07:00,0.0,10.729845,10729.845 +22222,2025-03-09T19:02:11.231951-07:00,0.0,10.726218,10726.218 +22223,2025-03-09T19:02:21.960939-07:00,0.0,10.728988,10728.988 +22224,2025-03-09T19:02:32.688734-07:00,0.0,10.727795,10727.795 +22225,2025-03-09T19:02:43.425737-07:00,0.0,10.737003,10737.003 +22226,2025-03-09T19:02:54.156824-07:00,0.0,10.731087,10731.087 +22227,2025-03-09T19:03:04.880745-07:00,0.0,10.723921,10723.921 +22228,2025-03-09T19:03:15.618239-07:00,0.0,10.737494,10737.494 +22229,2025-03-09T19:03:26.346871-07:00,0.0,10.728632,10728.632 +22230,2025-03-09T19:03:37.073076-07:00,0.0,10.726205,10726.205 +22231,2025-03-09T19:03:47.804966-07:00,0.0,10.73189,10731.89 +22232,2025-03-09T19:03:58.538883-07:00,0.0,10.733917,10733.917 +22233,2025-03-09T19:04:09.271209-07:00,0.0,10.732326,10732.326 +22234,2025-03-09T19:04:19.996294-07:00,0.0,10.725085,10725.085 +22235,2025-03-09T19:04:30.728733-07:00,0.0,10.732439,10732.439 +22236,2025-03-09T19:04:41.456162-07:00,0.0,10.727429,10727.429 +22237,2025-03-09T19:04:52.191739-07:00,0.0,10.735577,10735.577 +22238,2025-03-09T19:05:02.913088-07:00,0.0,10.721349,10721.349 +22239,2025-03-09T19:05:13.648734-07:00,0.0,10.735646,10735.646 +22240,2025-03-09T19:05:24.371911-07:00,0.0,10.723177,10723.177 +22241,2025-03-09T19:05:35.108784-07:00,0.0,10.736873,10736.873 +22242,2025-03-09T19:05:45.832734-07:00,0.0,10.72395,10723.95 +22243,2025-03-09T19:05:56.562916-07:00,0.0,10.730182,10730.182 +22244,2025-03-09T19:06:07.299980-07:00,0.0,10.737064,10737.064 +22245,2025-03-09T19:06:18.020942-07:00,0.0,10.720962,10720.962 +22246,2025-03-09T19:06:28.758464-07:00,0.0,10.737522,10737.522 +22247,2025-03-09T19:06:39.486733-07:00,0.0,10.728269,10728.269 +22248,2025-03-09T19:06:50.216768-07:00,0.0,10.730035,10730.035 +22249,2025-03-09T19:07:00.949066-07:00,0.0,10.732298,10732.298 +22250,2025-03-09T19:07:11.672129-07:00,0.0,10.723063,10723.063 +22251,2025-03-09T19:07:22.408857-07:00,0.0,10.736728,10736.728 +22252,2025-03-09T19:07:33.132668-07:00,0.0,10.723811,10723.811 +22253,2025-03-09T19:07:43.861733-07:00,0.0,10.729065,10729.065 +22254,2025-03-09T19:07:54.598812-07:00,0.0,10.737079,10737.079 +22255,2025-03-09T19:08:05.324511-07:00,0.0,10.725699,10725.699 +22256,2025-03-09T19:08:16.060736-07:00,0.0,10.736225,10736.225 +22257,2025-03-09T19:08:26.793068-07:00,0.0,10.732332,10732.332 +22258,2025-03-09T19:08:37.519920-07:00,0.0,10.726852,10726.852 +22259,2025-03-09T19:08:48.256736-07:00,0.0,10.736816,10736.816 +22260,2025-03-09T19:08:58.984731-07:00,0.0,10.727995,10727.995 +22261,2025-03-09T19:09:09.718738-07:00,0.0,10.734007,10734.007 +22262,2025-03-09T19:09:20.448977-07:00,0.0,10.730239,10730.239 +22263,2025-03-09T19:09:31.176738-07:00,0.0,10.727761,10727.761 +22264,2025-03-09T19:09:41.901963-07:00,0.0,10.725225,10725.225 +22265,2025-03-09T19:09:52.634730-07:00,0.0,10.732767,10732.767 +22266,2025-03-09T19:10:03.363906-07:00,0.0,10.729176,10729.176 +22267,2025-03-09T19:10:14.096155-07:00,0.0,10.732249,10732.249 +22268,2025-03-09T19:10:24.827733-07:00,0.0,10.731578,10731.578 +22269,2025-03-09T19:10:35.565736-07:00,0.0,10.738003,10738.003 +22270,2025-03-09T19:10:46.294962-07:00,0.0,10.729226,10729.226 +22271,2025-03-09T19:10:57.024804-07:00,0.0,10.729842,10729.842 +22272,2025-03-09T19:11:07.756734-07:00,0.0,10.73193,10731.93 +22273,2025-03-09T19:11:18.496739-07:00,0.0,10.740005,10740.005 +22274,2025-03-09T19:11:29.228901-07:00,0.0,10.732162,10732.162 +22275,2025-03-09T19:11:39.958733-07:00,0.0,10.729832,10729.832 +22276,2025-03-09T19:11:50.686804-07:00,0.0,10.728071,10728.071 +22277,2025-03-09T19:12:01.423325-07:00,0.0,10.736521,10736.521 +22278,2025-03-09T19:12:12.151733-07:00,0.0,10.728408,10728.408 +22279,2025-03-09T19:12:22.893745-07:00,0.0,10.742012,10742.012 +22280,2025-03-09T19:12:33.617736-07:00,0.0,10.723991,10723.991 +22281,2025-03-09T19:12:44.353953-07:00,0.0,10.736217,10736.217 +22282,2025-03-09T19:12:55.092770-07:00,0.0,10.738817,10738.817 +22283,2025-03-09T19:13:05.816948-07:00,0.0,10.724178,10724.178 +22284,2025-03-09T19:13:16.558907-07:00,0.0,10.741959,10741.959 +22285,2025-03-09T19:13:27.281939-07:00,0.0,10.723032,10723.032 +22286,2025-03-09T19:13:35.619921-07:00,299.0,8.337982,8337.982 +22287,2025-03-09T19:13:38.021787-07:00,368.0,2.401866,2401.866 +22288,2025-03-09T19:13:48.749736-07:00,407.0,10.727949,10727.949 +22289,2025-03-09T19:13:59.473886-07:00,386.0,10.72415,10724.15 +22290,2025-03-09T19:14:10.206906-07:00,372.0,10.73302,10733.02 +22291,2025-03-09T19:14:17.710288-07:00,0.0,7.503382,7503.382 +22292,2025-03-09T19:14:20.935296-07:00,0.0,3.225008,3225.008 +22293,2025-03-09T19:14:31.674905-07:00,0.0,10.739609,10739.609 +22294,2025-03-09T19:14:42.400760-07:00,0.0,10.725855,10725.855 +22295,2025-03-09T19:14:53.143733-07:00,0.0,10.742973,10742.973 +22296,2025-03-09T19:15:03.867904-07:00,0.0,10.724171,10724.171 +22297,2025-03-09T19:15:14.606897-07:00,0.0,10.738993,10738.993 +22298,2025-03-09T19:15:25.340736-07:00,0.0,10.733839,10733.839 +22299,2025-03-09T19:15:36.073819-07:00,0.0,10.733083,10733.083 +22300,2025-03-09T19:15:46.804924-07:00,0.0,10.731105,10731.105 +22301,2025-03-09T19:15:57.531937-07:00,0.0,10.727013,10727.013 +22302,2025-03-09T19:16:08.266808-07:00,0.0,10.734871,10734.871 +22303,2025-03-09T19:16:19.007735-07:00,0.0,10.740927,10740.927 +22304,2025-03-09T19:16:29.743929-07:00,0.0,10.736194,10736.194 +22305,2025-03-09T19:16:40.475038-07:00,0.0,10.731109,10731.109 +22306,2025-03-09T19:16:51.207737-07:00,0.0,10.732699,10732.699 +22307,2025-03-09T19:17:01.942252-07:00,0.0,10.734515,10734.515 +22308,2025-03-09T19:17:12.681054-07:00,0.0,10.738802,10738.802 +22309,2025-03-09T19:17:23.415012-07:00,0.0,10.733958,10733.958 +22310,2025-03-09T19:17:34.149890-07:00,0.0,10.734878,10734.878 +22311,2025-03-09T19:17:44.881814-07:00,0.0,10.731924,10731.924 +22312,2025-03-09T19:17:55.610733-07:00,0.0,10.728919,10728.919 +22313,2025-03-09T19:18:06.339732-07:00,0.0,10.728999,10728.999 +22314,2025-03-09T19:18:17.078945-07:00,368.0,10.739213,10739.213 +22315,2025-03-09T19:18:20.331918-07:00,0.0,3.252973,3252.973 +22316,2025-03-09T19:18:27.804734-07:00,0.0,7.472816,7472.816 +22317,2025-03-09T19:18:38.544996-07:00,0.0,10.740262,10740.262 +22318,2025-03-09T19:18:49.275735-07:00,0.0,10.730739,10730.739 +22319,2025-03-09T19:19:00.005918-07:00,0.0,10.730183,10730.183 +22320,2025-03-09T19:19:10.734734-07:00,0.0,10.728816,10728.816 +22321,2025-03-09T19:19:21.468902-07:00,0.0,10.734168,10734.168 +22322,2025-03-09T19:19:32.204111-07:00,0.0,10.735209,10735.209 +22323,2025-03-09T19:19:42.944043-07:00,0.0,10.739932,10739.932 +22324,2025-03-09T19:19:53.669942-07:00,0.0,10.725899,10725.899 +22325,2025-03-09T19:20:04.406760-07:00,0.0,10.736818,10736.818 +22326,2025-03-09T19:20:15.142969-07:00,0.0,10.736209,10736.209 +22327,2025-03-09T19:20:25.875765-07:00,0.0,10.732796,10732.796 +22328,2025-03-09T19:20:36.601851-07:00,0.0,10.726086,10726.086 +22329,2025-03-09T19:20:47.331504-07:00,0.0,10.729653,10729.653 +22330,2025-03-09T19:20:58.064730-07:00,0.0,10.733226,10733.226 +22331,2025-03-09T19:21:08.804129-07:00,0.0,10.739399,10739.399 +22332,2025-03-09T19:21:19.537736-07:00,0.0,10.733607,10733.607 +22333,2025-03-09T19:21:30.269127-07:00,0.0,10.731391,10731.391 +22334,2025-03-09T19:21:41.003757-07:00,0.0,10.73463,10734.63 +22335,2025-03-09T19:21:51.738078-07:00,0.0,10.734321,10734.321 +22336,2025-03-09T19:22:02.476737-07:00,0.0,10.738659,10738.659 +22337,2025-03-09T19:22:13.208114-07:00,0.0,10.731377,10731.377 +22338,2025-03-09T19:22:23.948893-07:00,0.0,10.740779,10740.779 +22339,2025-03-09T19:22:34.679937-07:00,0.0,10.731044,10731.044 +22340,2025-03-09T19:22:45.420736-07:00,0.0,10.740799,10740.799 +22341,2025-03-09T19:22:56.147900-07:00,0.0,10.727164,10727.164 +22342,2025-03-09T19:23:06.881837-07:00,0.0,10.733937,10733.937 +22343,2025-03-09T19:23:17.617736-07:00,0.0,10.735899,10735.899 +22344,2025-03-09T19:23:28.356731-07:00,0.0,10.738995,10738.995 +22345,2025-03-09T19:23:39.093929-07:00,0.0,10.737198,10737.198 +22346,2025-03-09T19:23:49.825971-07:00,0.0,10.732042,10732.042 +22347,2025-03-09T19:24:00.556736-07:00,0.0,10.730765,10730.765 +22348,2025-03-09T19:24:11.295763-07:00,0.0,10.739027,10739.027 +22349,2025-03-09T19:24:22.028754-07:00,0.0,10.732991,10732.991 +22350,2025-03-09T19:24:32.766574-07:00,0.0,10.73782,10737.82 +22351,2025-03-09T19:24:43.495958-07:00,0.0,10.729384,10729.384 +22352,2025-03-09T19:24:54.226737-07:00,0.0,10.730779,10730.779 +22353,2025-03-09T19:25:04.968275-07:00,0.0,10.741538,10741.538 +22354,2025-03-09T19:25:15.702462-07:00,0.0,10.734187,10734.187 +22355,2025-03-09T19:25:26.435733-07:00,0.0,10.733271,10733.271 +22356,2025-03-09T19:25:37.168733-07:00,0.0,10.733,10733.0 +22357,2025-03-09T19:25:47.901129-07:00,0.0,10.732396,10732.396 +22358,2025-03-09T19:25:58.638755-07:00,0.0,10.737626,10737.626 +22359,2025-03-09T19:26:09.371737-07:00,0.0,10.732982,10732.982 +22360,2025-03-09T19:26:20.105004-07:00,0.0,10.733267,10733.267 +22361,2025-03-09T19:26:30.839891-07:00,0.0,10.734887,10734.887 +22362,2025-03-09T19:26:41.580540-07:00,0.0,10.740649,10740.649 +22363,2025-03-09T19:26:52.316482-07:00,0.0,10.735942,10735.942 +22364,2025-03-09T19:27:03.051769-07:00,0.0,10.735287,10735.287 +22365,2025-03-09T19:27:13.781949-07:00,0.0,10.73018,10730.18 +22366,2025-03-09T19:27:24.514791-07:00,0.0,10.732842,10732.842 +22367,2025-03-09T19:27:35.252733-07:00,0.0,10.737942,10737.942 +22368,2025-03-09T19:27:45.989951-07:00,0.0,10.737218,10737.218 +22369,2025-03-09T19:27:56.717914-07:00,0.0,10.727963,10727.963 +22370,2025-03-09T19:28:07.456737-07:00,0.0,10.738823,10738.823 +22371,2025-03-09T19:28:18.193730-07:00,0.0,10.736993,10736.993 +22372,2025-03-09T19:28:28.928832-07:00,0.0,10.735102,10735.102 +22373,2025-03-09T19:28:39.665810-07:00,0.0,10.736978,10736.978 +22374,2025-03-09T19:28:50.391820-07:00,0.0,10.72601,10726.01 +22375,2025-03-09T19:29:01.129012-07:00,0.0,10.737192,10737.192 +22376,2025-03-09T19:29:11.868968-07:00,0.0,10.739956,10739.956 +22377,2025-03-09T19:29:22.601414-07:00,0.0,10.732446,10732.446 +22378,2025-03-09T19:29:33.326741-07:00,0.0,10.725327,10725.327 +22379,2025-03-09T19:29:44.061740-07:00,0.0,10.734999,10734.999 +22380,2025-03-09T19:29:54.803959-07:00,0.0,10.742219,10742.219 +22381,2025-03-09T19:30:05.540750-07:00,0.0,10.736791,10736.791 +22382,2025-03-09T19:30:16.268772-07:00,0.0,10.728022,10728.022 +22383,2025-03-09T19:30:27.003732-07:00,0.0,10.73496,10734.96 +22384,2025-03-09T19:30:37.742741-07:00,0.0,10.739009,10739.009 +22385,2025-03-09T19:30:48.477640-07:00,0.0,10.734899,10734.899 +22386,2025-03-09T19:30:59.211734-07:00,0.0,10.734094,10734.094 +22387,2025-03-09T19:31:09.951103-07:00,0.0,10.739369,10739.369 +22388,2025-03-09T19:31:20.679739-07:00,0.0,10.728636,10728.636 +22389,2025-03-09T19:31:31.412925-07:00,0.0,10.733186,10733.186 +22390,2025-03-09T19:31:42.146730-07:00,0.0,10.733805,10733.805 +22391,2025-03-09T19:31:52.882949-07:00,0.0,10.736219,10736.219 +22392,2025-03-09T19:32:03.621748-07:00,0.0,10.738799,10738.799 +22393,2025-03-09T19:32:14.367959-07:00,0.0,10.746211,10746.211 +22394,2025-03-09T19:32:25.102237-07:00,0.0,10.734278,10734.278 +22395,2025-03-09T19:32:35.827733-07:00,0.0,10.725496,10725.496 +22396,2025-03-09T19:32:46.562940-07:00,0.0,10.735207,10735.207 +22397,2025-03-09T19:32:57.303737-07:00,0.0,10.740797,10740.797 +22398,2025-03-09T19:33:08.035922-07:00,0.0,10.732185,10732.185 +22399,2025-03-09T19:33:18.764908-07:00,0.0,10.728986,10728.986 +22400,2025-03-09T19:33:29.501736-07:00,0.0,10.736828,10736.828 +22401,2025-03-09T19:33:40.234767-07:00,0.0,10.733031,10733.031 +22402,2025-03-09T19:33:50.965783-07:00,0.0,10.731016,10731.016 +22403,2025-03-09T19:34:01.690735-07:00,0.0,10.724952,10724.952 +22404,2025-03-09T19:34:12.429729-07:00,0.0,10.738994,10738.994 +22405,2025-03-09T19:34:23.159774-07:00,0.0,10.730045,10730.045 +22406,2025-03-09T19:34:33.896944-07:00,0.0,10.73717,10737.17 +22407,2025-03-09T19:34:44.628731-07:00,0.0,10.731787,10731.787 +22408,2025-03-09T19:34:55.360928-07:00,0.0,10.732197,10732.197 +22409,2025-03-09T19:35:06.097845-07:00,0.0,10.736917,10736.917 +22410,2025-03-09T19:35:16.832737-07:00,0.0,10.734892,10734.892 +22411,2025-03-09T19:35:27.563540-07:00,0.0,10.730803,10730.803 +22412,2025-03-09T19:35:38.301293-07:00,0.0,10.737753,10737.753 +22413,2025-03-09T19:35:49.037934-07:00,0.0,10.736641,10736.641 +22414,2025-03-09T19:35:59.771367-07:00,0.0,10.733433,10733.433 +22415,2025-03-09T19:36:10.508944-07:00,0.0,10.737577,10737.577 +22416,2025-03-09T19:36:21.238880-07:00,0.0,10.729936,10729.936 +22417,2025-03-09T19:36:31.978570-07:00,0.0,10.73969,10739.69 +22418,2025-03-09T19:36:42.716736-07:00,0.0,10.738166,10738.166 +22419,2025-03-09T19:36:53.446939-07:00,0.0,10.730203,10730.203 +22420,2025-03-09T19:37:04.185804-07:00,0.0,10.738865,10738.865 +22421,2025-03-09T19:37:14.912757-07:00,0.0,10.726953,10726.953 +22422,2025-03-09T19:37:25.655744-07:00,0.0,10.742987,10742.987 +22423,2025-03-09T19:37:36.384733-07:00,0.0,10.728989,10728.989 +22424,2025-03-09T19:37:47.117916-07:00,0.0,10.733183,10733.183 +22425,2025-03-09T19:37:57.848733-07:00,0.0,10.730817,10730.817 +22426,2025-03-09T19:38:08.581941-07:00,0.0,10.733208,10733.208 +22427,2025-03-09T19:38:19.315837-07:00,0.0,10.733896,10733.896 +22428,2025-03-09T19:38:30.052270-07:00,0.0,10.736433,10736.433 +22429,2025-03-09T19:38:40.786733-07:00,0.0,10.734463,10734.463 +22430,2025-03-09T19:38:51.516734-07:00,0.0,10.730001,10730.001 +22431,2025-03-09T19:39:02.244928-07:00,0.0,10.728194,10728.194 +22432,2025-03-09T19:39:12.981731-07:00,0.0,10.736803,10736.803 +22433,2025-03-09T19:39:23.713943-07:00,0.0,10.732212,10732.212 +22434,2025-03-09T19:39:34.435926-07:00,0.0,10.721983,10721.983 +22435,2025-03-09T19:39:45.168805-07:00,0.0,10.732879,10732.879 +22436,2025-03-09T19:39:55.899735-07:00,0.0,10.73093,10730.93 +22437,2025-03-09T19:40:06.628919-07:00,0.0,10.729184,10729.184 +22438,2025-03-09T19:40:17.367942-07:00,0.0,10.739023,10739.023 +22439,2025-03-09T19:40:28.103733-07:00,0.0,10.735791,10735.791 +22440,2025-03-09T19:40:38.829738-07:00,0.0,10.726005,10726.005 +22441,2025-03-09T19:40:49.564944-07:00,0.0,10.735206,10735.206 +22442,2025-03-09T19:41:00.291742-07:00,0.0,10.726798,10726.798 +22443,2025-03-09T19:41:11.021295-07:00,0.0,10.729553,10729.553 +22444,2025-03-09T19:41:21.755147-07:00,0.0,10.733852,10733.852 +22445,2025-03-09T19:41:32.483736-07:00,0.0,10.728589,10728.589 +22446,2025-03-09T19:41:43.220734-07:00,0.0,10.736998,10736.998 +22447,2025-03-09T19:41:53.950911-07:00,0.0,10.730177,10730.177 +22448,2025-03-09T19:42:04.680487-07:00,0.0,10.729576,10729.576 +22449,2025-03-09T19:42:15.405104-07:00,0.0,10.724617,10724.617 +22450,2025-03-09T19:42:26.141125-07:00,0.0,10.736021,10736.021 +22451,2025-03-09T19:42:36.870733-07:00,0.0,10.729608,10729.608 +22452,2025-03-09T19:42:47.602736-07:00,0.0,10.732003,10732.003 +22453,2025-03-09T19:42:58.332927-07:00,0.0,10.730191,10730.191 +22454,2025-03-09T19:43:09.069760-07:00,0.0,10.736833,10736.833 +22455,2025-03-09T19:43:19.797975-07:00,0.0,10.728215,10728.215 +22456,2025-03-09T19:43:30.530911-07:00,0.0,10.732936,10732.936 +22457,2025-03-09T19:43:41.264541-07:00,0.0,10.73363,10733.63 +22458,2025-03-09T19:43:51.989996-07:00,0.0,10.725455,10725.455 +22459,2025-03-09T19:44:02.725739-07:00,0.0,10.735743,10735.743 +22460,2025-03-09T19:44:13.461966-07:00,0.0,10.736227,10736.227 +22461,2025-03-09T19:44:24.187803-07:00,0.0,10.725837,10725.837 +22462,2025-03-09T19:44:34.920299-07:00,0.0,10.732496,10732.496 +22463,2025-03-09T19:44:45.653945-07:00,0.0,10.733646,10733.646 +22464,2025-03-09T19:44:56.381736-07:00,0.0,10.727791,10727.791 +22465,2025-03-09T19:45:07.117729-07:00,0.0,10.735993,10735.993 +22466,2025-03-09T19:45:17.841636-07:00,0.0,10.723907,10723.907 +22467,2025-03-09T19:45:28.575736-07:00,0.0,10.7341,10734.1 +22468,2025-03-09T19:45:39.301188-07:00,0.0,10.725452,10725.452 +22469,2025-03-09T19:45:50.032281-07:00,0.0,10.731093,10731.093 +22470,2025-03-09T19:46:00.753763-07:00,0.0,10.721482,10721.482 +22471,2025-03-09T19:46:11.483125-07:00,0.0,10.729362,10729.362 +22472,2025-03-09T19:46:22.218760-07:00,0.0,10.735635,10735.635 +22473,2025-03-09T19:46:32.941740-07:00,0.0,10.72298,10722.98 +22474,2025-03-09T19:46:43.674912-07:00,0.0,10.733172,10733.172 +22475,2025-03-09T19:46:54.395733-07:00,0.0,10.720821,10720.821 +22476,2025-03-09T19:47:05.125738-07:00,0.0,10.730005,10730.005 +22477,2025-03-09T19:47:15.859918-07:00,0.0,10.73418,10734.18 +22478,2025-03-09T19:47:26.588759-07:00,0.0,10.728841,10728.841 +22479,2025-03-09T19:47:37.319193-07:00,0.0,10.730434,10730.434 +22480,2025-03-09T19:47:48.050285-07:00,0.0,10.731092,10731.092 +22481,2025-03-09T19:47:58.777733-07:00,0.0,10.727448,10727.448 +22482,2025-03-09T19:48:09.503098-07:00,0.0,10.725365,10725.365 +22483,2025-03-09T19:48:20.232734-07:00,0.0,10.729636,10729.636 +22484,2025-03-09T19:48:30.960737-07:00,0.0,10.728003,10728.003 +22485,2025-03-09T19:48:41.694973-07:00,0.0,10.734236,10734.236 +22486,2025-03-09T19:48:52.426733-07:00,0.0,10.73176,10731.76 +22487,2025-03-09T19:49:03.149871-07:00,0.0,10.723138,10723.138 +22488,2025-03-09T19:49:13.881125-07:00,0.0,10.731254,10731.254 +22489,2025-03-09T19:49:24.616282-07:00,0.0,10.735157,10735.157 +22490,2025-03-09T19:49:35.338945-07:00,0.0,10.722663,10722.663 +22491,2025-03-09T19:49:46.067593-07:00,0.0,10.728648,10728.648 +22492,2025-03-09T19:49:56.800768-07:00,0.0,10.733175,10733.175 +22493,2025-03-09T19:50:07.525910-07:00,0.0,10.725142,10725.142 +22494,2025-03-09T19:50:18.259521-07:00,0.0,10.733611,10733.611 +22495,2025-03-09T19:50:28.987849-07:00,0.0,10.728328,10728.328 +22496,2025-03-09T19:50:39.716931-07:00,0.0,10.729082,10729.082 +22497,2025-03-09T19:50:50.448558-07:00,0.0,10.731627,10731.627 +22498,2025-03-09T19:51:01.183480-07:00,0.0,10.734922,10734.922 +22499,2025-03-09T19:51:11.909738-07:00,0.0,10.726258,10726.258 +22500,2025-03-09T19:51:22.644932-07:00,0.0,10.735194,10735.194 +22501,2025-03-09T19:51:44.098196-07:00,0.0,21.453264,21453.264 +22502,2025-03-09T19:51:54.830409-07:00,0.0,10.732213,10732.213 +22503,2025-03-09T19:52:05.561901-07:00,0.0,10.731492,10731.492 +22504,2025-03-09T19:52:16.295737-07:00,0.0,10.733836,10733.836 +22505,2025-03-09T19:52:27.025992-07:00,0.0,10.730255,10730.255 +22506,2025-03-09T19:52:37.751247-07:00,0.0,10.725255,10725.255 +22507,2025-03-09T19:52:48.487443-07:00,0.0,10.736196,10736.196 +22508,2025-03-09T19:52:59.218825-07:00,0.0,10.731382,10731.382 +22509,2025-03-09T19:53:09.948351-07:00,0.0,10.729526,10729.526 +22510,2025-03-09T19:53:20.672365-07:00,0.0,10.724014,10724.014 +22511,2025-03-09T19:53:31.409921-07:00,0.0,10.737556,10737.556 +22512,2025-03-09T19:53:42.141484-07:00,0.0,10.731563,10731.563 +22513,2025-03-09T19:53:52.865419-07:00,0.0,10.723935,10723.935 +22514,2025-03-09T19:54:03.594320-07:00,0.0,10.728901,10728.901 +22515,2025-03-09T19:54:14.323459-07:00,0.0,10.729139,10729.139 +22516,2025-03-09T19:54:25.052580-07:00,0.0,10.729121,10729.121 +22517,2025-03-09T19:54:35.790338-07:00,0.0,10.737758,10737.758 +22518,2025-03-09T19:54:46.517252-07:00,0.0,10.726914,10726.914 +22519,2025-03-09T19:54:57.242455-07:00,0.0,10.725203,10725.203 +22520,2025-03-09T19:55:07.973461-07:00,0.0,10.731006,10731.006 +22521,2025-03-09T19:55:18.706743-07:00,0.0,10.733282,10733.282 +22522,2025-03-09T19:55:29.434437-07:00,0.0,10.727694,10727.694 +22523,2025-03-09T19:55:40.159251-07:00,0.0,10.724814,10724.814 +22524,2025-03-09T19:55:50.890474-07:00,0.0,10.731223,10731.223 +22525,2025-03-09T19:56:01.615251-07:00,0.0,10.724777,10724.777 +22526,2025-03-09T19:56:12.352248-07:00,0.0,10.736997,10736.997 +22527,2025-03-09T19:56:23.073297-07:00,0.0,10.721049,10721.049 +22528,2025-03-09T19:56:33.811690-07:00,0.0,10.738393,10738.393 +22529,2025-03-09T19:56:44.540444-07:00,0.0,10.728754,10728.754 +22530,2025-03-09T19:56:55.268508-07:00,0.0,10.728064,10728.064 +22531,2025-03-09T19:57:05.993454-07:00,0.0,10.724946,10724.946 +22532,2025-03-09T19:57:16.718250-07:00,0.0,10.724796,10724.796 +22533,2025-03-09T19:57:27.457466-07:00,0.0,10.739216,10739.216 +22534,2025-03-09T19:57:38.188277-07:00,0.0,10.730811,10730.811 +22535,2025-03-09T19:57:48.913252-07:00,0.0,10.724975,10724.975 +22536,2025-03-09T19:57:59.639951-07:00,0.0,10.726699,10726.699 +22537,2025-03-09T19:58:10.372410-07:00,0.0,10.732459,10732.459 +22538,2025-03-09T19:58:20.715556-07:00,337.0,10.343146,10343.146 +22539,2025-03-09T19:58:21.098252-07:00,337.0,0.382696,382.696 +22540,2025-03-09T19:58:31.827269-07:00,407.0,10.729017,10729.017 +22541,2025-03-09T19:58:42.563371-07:00,336.0,10.736102,10736.102 +22542,2025-03-09T19:58:53.286445-07:00,423.0,10.723074,10723.074 +22543,2025-03-09T19:59:04.010452-07:00,442.0,10.724007,10724.007 +22544,2025-03-09T19:59:14.746407-07:00,423.0,10.735955,10735.955 +22545,2025-03-09T19:59:25.476252-07:00,391.0,10.729845,10729.845 +22546,2025-03-09T19:59:36.206269-07:00,427.0,10.730017,10730.017 +22547,2025-03-09T19:59:46.929304-07:00,363.0,10.723035,10723.035 +22548,2025-03-09T19:59:57.662649-07:00,432.0,10.733345,10733.345 +22549,2025-03-09T20:00:08.390249-07:00,345.0,10.7276,10727.6 +22550,2025-03-09T20:00:19.122251-07:00,442.0,10.732002,10732.002 +22551,2025-03-09T20:00:29.850644-07:00,426.0,10.728393,10728.393 +22552,2025-03-09T20:00:40.585437-07:00,443.0,10.734793,10734.793 +22553,2025-03-09T20:00:51.310279-07:00,419.0,10.724842,10724.842 +22554,2025-03-09T20:01:02.048445-07:00,430.0,10.738166,10738.166 +22555,2025-03-09T20:01:12.777248-07:00,448.0,10.728803,10728.803 +22556,2025-03-09T20:01:23.502457-07:00,425.0,10.725209,10725.209 +22557,2025-03-09T20:01:34.244246-07:00,423.0,10.741789,10741.789 +22558,2025-03-09T20:01:44.972472-07:00,438.0,10.728226,10728.226 +22559,2025-03-09T20:01:55.706433-07:00,338.0,10.733961,10733.961 +22560,2025-03-09T20:02:06.434458-07:00,442.0,10.728025,10728.025 +22561,2025-03-09T20:02:17.173552-07:00,433.0,10.739094,10739.094 +22562,2025-03-09T20:02:27.901249-07:00,378.0,10.727697,10727.697 +22563,2025-03-09T20:02:38.633489-07:00,438.0,10.73224,10732.24 +22564,2025-03-09T20:02:49.366517-07:00,402.0,10.733028,10733.028 +22565,2025-03-09T20:03:00.099436-07:00,435.0,10.732919,10732.919 +22566,2025-03-09T20:03:10.830441-07:00,432.0,10.731005,10731.005 +22567,2025-03-09T20:03:21.557590-07:00,423.0,10.727149,10727.149 +22568,2025-03-09T20:03:32.298661-07:00,368.0,10.741071,10741.071 +22569,2025-03-09T20:03:43.025706-07:00,412.0,10.727045,10727.045 +22570,2025-03-09T20:03:53.752263-07:00,384.0,10.726557,10726.557 +22571,2025-03-09T20:04:04.483271-07:00,432.0,10.731008,10731.008 +22572,2025-03-09T20:04:15.222329-07:00,432.0,10.739058,10739.058 +22573,2025-03-09T20:04:25.950667-07:00,413.0,10.728338,10728.338 +22574,2025-03-09T20:04:36.674248-07:00,378.0,10.723581,10723.581 +22575,2025-03-09T20:04:47.413251-07:00,415.0,10.739003,10739.003 +22576,2025-03-09T20:04:58.140243-07:00,432.0,10.726992,10726.992 +22577,2025-03-09T20:05:08.871120-07:00,423.0,10.730877,10730.877 +22578,2025-03-09T20:05:19.606473-07:00,419.0,10.735353,10735.353 +22579,2025-03-09T20:05:30.336357-07:00,391.0,10.729884,10729.884 +22580,2025-03-09T20:05:41.063617-07:00,409.0,10.72726,10727.26 +22581,2025-03-09T20:05:51.791483-07:00,417.0,10.727866,10727.866 +22582,2025-03-09T20:06:02.524277-07:00,314.0,10.732794,10732.794 +22583,2025-03-09T20:06:13.254589-07:00,325.0,10.730312,10730.312 +22584,2025-03-09T20:06:23.996270-07:00,429.0,10.741681,10741.681 +22585,2025-03-09T20:06:34.723462-07:00,403.0,10.727192,10727.192 +22586,2025-03-09T20:06:45.453430-07:00,341.0,10.729968,10729.968 +22587,2025-03-09T20:06:56.186318-07:00,371.0,10.732888,10732.888 +22588,2025-03-09T20:07:06.923279-07:00,416.0,10.736961,10736.961 +22589,2025-03-09T20:07:17.659250-07:00,341.0,10.735971,10735.971 +22590,2025-03-09T20:07:28.390421-07:00,330.0,10.731171,10731.171 +22591,2025-03-09T20:07:39.115254-07:00,374.0,10.724833,10724.833 +22592,2025-03-09T20:07:49.845424-07:00,418.0,10.73017,10730.17 +22593,2025-03-09T20:08:00.572391-07:00,391.0,10.726967,10726.967 +22594,2025-03-09T20:08:11.307984-07:00,400.0,10.735593,10735.593 +22595,2025-03-09T20:08:22.034247-07:00,415.0,10.726263,10726.263 +22596,2025-03-09T20:08:32.763280-07:00,384.0,10.729033,10729.033 +22597,2025-03-09T20:08:43.488254-07:00,414.0,10.724974,10724.974 +22598,2025-03-09T20:08:54.219032-07:00,310.0,10.730778,10730.778 +22599,2025-03-09T20:09:04.948252-07:00,415.0,10.72922,10729.22 +22600,2025-03-09T20:09:15.682247-07:00,407.0,10.733995,10733.995 +22601,2025-03-09T20:09:26.409436-07:00,334.0,10.727189,10727.189 +22602,2025-03-09T20:09:37.142998-07:00,399.0,10.733562,10733.562 +22603,2025-03-09T20:09:47.873546-07:00,307.0,10.730548,10730.548 +22604,2025-03-09T20:09:58.604667-07:00,401.0,10.731121,10731.121 +22605,2025-03-09T20:10:09.342431-07:00,398.0,10.737764,10737.764 +22606,2025-03-09T20:10:20.069248-07:00,309.0,10.726817,10726.817 +22607,2025-03-09T20:10:30.795357-07:00,400.0,10.726109,10726.109 +22608,2025-03-09T20:10:41.530619-07:00,373.0,10.735262,10735.262 +22609,2025-03-09T20:10:52.265245-07:00,321.0,10.734626,10734.626 +22610,2025-03-09T20:11:02.997298-07:00,415.0,10.732053,10732.053 +22611,2025-03-09T20:11:13.723405-07:00,367.0,10.726107,10726.107 +22612,2025-03-09T20:11:24.457997-07:00,400.0,10.734592,10734.592 +22613,2025-03-09T20:11:35.181251-07:00,377.0,10.723254,10723.254 +22614,2025-03-09T20:11:45.908409-07:00,399.0,10.727158,10727.158 +22615,2025-03-09T20:11:56.647420-07:00,340.0,10.739011,10739.011 +22616,2025-03-09T20:12:07.380387-07:00,368.0,10.732967,10732.967 +22617,2025-03-09T20:12:08.837435-07:00,0.0,1.457048,1457.048 +22618,2025-03-09T20:12:18.099248-07:00,0.0,9.261813,9261.813 +22619,2025-03-09T20:12:28.832452-07:00,0.0,10.733204,10733.204 +22620,2025-03-09T20:12:39.565366-07:00,0.0,10.732914,10732.914 +22621,2025-03-09T20:12:50.286319-07:00,0.0,10.720953,10720.953 +22622,2025-03-09T20:13:01.026422-07:00,0.0,10.740103,10740.103 +22623,2025-03-09T20:13:11.752780-07:00,0.0,10.726358,10726.358 +22624,2025-03-09T20:13:22.488576-07:00,0.0,10.735796,10735.796 +22625,2025-03-09T20:13:33.220252-07:00,0.0,10.731676,10731.676 +22626,2025-03-09T20:13:43.944461-07:00,0.0,10.724209,10724.209 +22627,2025-03-09T20:13:54.680477-07:00,0.0,10.736016,10736.016 +22628,2025-03-09T20:14:05.402412-07:00,0.0,10.721935,10721.935 +22629,2025-03-09T20:14:16.139439-07:00,0.0,10.737027,10737.027 +22630,2025-03-09T20:14:26.868386-07:00,0.0,10.728947,10728.947 +22631,2025-03-09T20:14:37.600349-07:00,0.0,10.731963,10731.963 +22632,2025-03-09T20:14:48.328351-07:00,0.0,10.728002,10728.002 +22633,2025-03-09T20:14:59.066453-07:00,0.0,10.738102,10738.102 +22634,2025-03-09T20:15:09.792251-07:00,0.0,10.725798,10725.798 +22635,2025-03-09T20:15:20.520482-07:00,0.0,10.728231,10728.231 +22636,2025-03-09T20:15:31.250249-07:00,0.0,10.729767,10729.767 +22637,2025-03-09T20:15:32.542594-07:00,0.0,1.292345,1292.345 +22638,2025-03-09T20:15:41.987251-07:00,0.0,9.444657,9444.657 +22639,2025-03-09T20:15:49.429498-07:00,286.0,7.442247,7442.247 +22640,2025-03-09T20:15:52.719244-07:00,357.0,3.289746,3289.746 +22641,2025-03-09T20:16:03.443506-07:00,314.0,10.724262,10724.262 +22642,2025-03-09T20:16:14.173458-07:00,266.0,10.729952,10729.952 +22643,2025-03-09T20:16:24.904846-07:00,366.0,10.731388,10731.388 +22644,2025-03-09T20:16:35.643893-07:00,382.0,10.739047,10739.047 +22645,2025-03-09T20:16:46.373250-07:00,416.0,10.729357,10729.357 +22646,2025-03-09T20:16:57.095330-07:00,405.0,10.72208,10722.08 +22647,2025-03-09T20:17:07.829429-07:00,409.0,10.734099,10734.099 +22648,2025-03-09T20:17:09.620438-07:00,0.0,1.791009,1791.009 +22649,2025-03-09T20:17:18.557252-07:00,0.0,8.936814,8936.814 +22650,2025-03-09T20:17:29.295777-07:00,0.0,10.738525,10738.525 +22651,2025-03-09T20:17:40.031458-07:00,0.0,10.735681,10735.681 +22652,2025-03-09T20:17:50.760706-07:00,0.0,10.729248,10729.248 +22653,2025-03-09T20:18:01.490434-07:00,0.0,10.729728,10729.728 +22654,2025-03-09T20:18:12.227319-07:00,0.0,10.736885,10736.885 +22655,2025-03-09T20:18:22.964443-07:00,0.0,10.737124,10737.124 +22656,2025-03-09T20:18:33.692245-07:00,0.0,10.727802,10727.802 +22657,2025-03-09T20:18:44.427402-07:00,0.0,10.735157,10735.157 +22658,2025-03-09T20:18:55.161029-07:00,0.0,10.733627,10733.627 +22659,2025-03-09T20:19:05.889249-07:00,0.0,10.72822,10728.22 +22660,2025-03-09T20:19:16.621375-07:00,0.0,10.732126,10732.126 +22661,2025-03-09T20:19:27.352246-07:00,0.0,10.730871,10730.871 +22662,2025-03-09T20:19:38.080377-07:00,0.0,10.728131,10728.131 +22663,2025-03-09T20:19:48.817285-07:00,0.0,10.736908,10736.908 +22664,2025-03-09T20:19:59.543456-07:00,0.0,10.726171,10726.171 +22665,2025-03-09T20:20:10.281649-07:00,0.0,10.738193,10738.193 +22666,2025-03-09T20:20:21.015623-07:00,0.0,10.733974,10733.974 +22667,2025-03-09T20:20:31.746326-07:00,0.0,10.730703,10730.703 +22668,2025-03-09T20:20:42.483393-07:00,0.0,10.737067,10737.067 +22669,2025-03-09T20:20:53.216358-07:00,0.0,10.732965,10732.965 +22670,2025-03-09T20:21:03.941254-07:00,0.0,10.724896,10724.896 +22671,2025-03-09T20:21:14.675515-07:00,0.0,10.734261,10734.261 +22672,2025-03-09T20:21:25.417432-07:00,0.0,10.741917,10741.917 +22673,2025-03-09T20:21:36.146251-07:00,0.0,10.728819,10728.819 +22674,2025-03-09T20:21:46.873453-07:00,0.0,10.727202,10727.202 +22675,2025-03-09T20:21:57.612264-07:00,0.0,10.738811,10738.811 +22676,2025-03-09T20:22:08.342277-07:00,0.0,10.730013,10730.013 +22677,2025-03-09T20:22:19.073266-07:00,0.0,10.730989,10730.989 +22678,2025-03-09T20:22:29.816285-07:00,0.0,10.743019,10743.019 +22679,2025-03-09T20:22:40.546432-07:00,0.0,10.730147,10730.147 +22680,2025-03-09T20:22:51.281324-07:00,0.0,10.734892,10734.892 +22681,2025-03-09T20:23:02.014455-07:00,0.0,10.733131,10733.131 +22682,2025-03-09T20:23:12.748254-07:00,0.0,10.733799,10733.799 +22683,2025-03-09T20:23:23.473272-07:00,0.0,10.725018,10725.018 +22684,2025-03-09T20:23:34.207319-07:00,0.0,10.734047,10734.047 +22685,2025-03-09T20:23:44.945446-07:00,0.0,10.738127,10738.127 +22686,2025-03-09T20:23:55.670965-07:00,0.0,10.725519,10725.519 +22687,2025-03-09T20:24:06.414250-07:00,0.0,10.743285,10743.285 +22688,2025-03-09T20:24:17.140253-07:00,0.0,10.726003,10726.003 +22689,2025-03-09T20:24:27.873263-07:00,0.0,10.73301,10733.01 +22690,2025-03-09T20:24:38.605273-07:00,0.0,10.73201,10732.01 +22691,2025-03-09T20:24:49.345246-07:00,0.0,10.739973,10739.973 +22692,2025-03-09T20:25:00.082252-07:00,0.0,10.737006,10737.006 +22693,2025-03-09T20:25:10.809278-07:00,0.0,10.727026,10727.026 +22694,2025-03-09T20:25:21.545251-07:00,0.0,10.735973,10735.973 +22695,2025-03-09T20:25:32.270251-07:00,0.0,10.725,10725.0 +22696,2025-03-09T20:25:43.011250-07:00,0.0,10.740999,10740.999 +22697,2025-03-09T20:25:53.742444-07:00,0.0,10.731194,10731.194 +22698,2025-03-09T20:25:54.510938-07:00,0.0,0.768494,768.494 +22699,2025-03-09T20:26:04.468545-07:00,0.0,9.957607,9957.607 +22700,2025-03-09T20:26:15.203341-07:00,0.0,10.734796,10734.796 +22701,2025-03-09T20:26:25.936430-07:00,0.0,10.733089,10733.089 +22702,2025-03-09T20:26:36.677628-07:00,0.0,10.741198,10741.198 +22703,2025-03-09T20:26:47.408251-07:00,0.0,10.730623,10730.623 +22704,2025-03-09T20:26:58.137177-07:00,0.0,10.728926,10728.926 +22705,2025-03-09T20:27:08.870180-07:00,0.0,10.733003,10733.003 +22706,2025-03-09T20:27:19.606454-07:00,0.0,10.736274,10736.274 +22707,2025-03-09T20:27:30.339247-07:00,0.0,10.732793,10732.793 +22708,2025-03-09T20:27:41.069926-07:00,0.0,10.730679,10730.679 +22709,2025-03-09T20:27:51.796473-07:00,0.0,10.726547,10726.547 +22710,2025-03-09T20:28:02.530245-07:00,0.0,10.733772,10733.772 +22711,2025-03-09T20:28:13.263299-07:00,0.0,10.733054,10733.054 +22712,2025-03-09T20:28:24.005416-07:00,0.0,10.742117,10742.117 +22713,2025-03-09T20:28:34.734251-07:00,0.0,10.728835,10728.835 +22714,2025-03-09T20:28:45.465460-07:00,0.0,10.731209,10731.209 +22715,2025-03-09T20:28:56.198424-07:00,0.0,10.732964,10732.964 +22716,2025-03-09T20:29:06.923320-07:00,0.0,10.724896,10724.896 +22717,2025-03-09T20:29:17.662386-07:00,0.0,10.739066,10739.066 +22718,2025-03-09T20:29:28.396326-07:00,0.0,10.73394,10733.94 +22719,2025-03-09T20:29:39.127478-07:00,0.0,10.731152,10731.152 +22720,2025-03-09T20:29:49.852249-07:00,0.0,10.724771,10724.771 +22721,2025-03-09T20:30:00.581444-07:00,0.0,10.729195,10729.195 +22722,2025-03-09T20:30:11.322365-07:00,0.0,10.740921,10740.921 +22723,2025-03-09T20:30:22.048249-07:00,0.0,10.725884,10725.884 +22724,2025-03-09T20:30:32.782401-07:00,0.0,10.734152,10734.152 +22725,2025-03-09T20:30:43.517421-07:00,0.0,10.73502,10735.02 +22726,2025-03-09T20:30:54.243252-07:00,0.0,10.725831,10725.831 +22727,2025-03-09T20:31:04.984483-07:00,0.0,10.741231,10741.231 +22728,2025-03-09T20:31:15.719439-07:00,0.0,10.734956,10734.956 +22729,2025-03-09T20:31:26.452804-07:00,0.0,10.733365,10733.365 +22730,2025-03-09T20:31:37.186274-07:00,0.0,10.73347,10733.47 +22731,2025-03-09T20:31:47.917251-07:00,0.0,10.730977,10730.977 +22732,2025-03-09T20:31:58.653557-07:00,0.0,10.736306,10736.306 +22733,2025-03-09T20:32:09.394428-07:00,0.0,10.740871,10740.871 +22734,2025-03-09T20:32:20.124251-07:00,0.0,10.729823,10729.823 +22735,2025-03-09T20:32:30.853476-07:00,0.0,10.729225,10729.225 +22736,2025-03-09T20:32:41.592462-07:00,0.0,10.738986,10738.986 +22737,2025-03-09T20:32:52.328107-07:00,0.0,10.735645,10735.645 +22738,2025-03-09T20:33:03.059477-07:00,0.0,10.73137,10731.37 +22739,2025-03-09T20:33:13.789253-07:00,0.0,10.729776,10729.776 +22740,2025-03-09T20:33:24.525417-07:00,0.0,10.736164,10736.164 +22741,2025-03-09T20:33:35.259251-07:00,0.0,10.733834,10733.834 +22742,2025-03-09T20:33:45.990246-07:00,0.0,10.730995,10730.995 +22743,2025-03-09T20:33:56.727432-07:00,0.0,10.737186,10737.186 +22744,2025-03-09T20:34:07.460812-07:00,0.0,10.73338,10733.38 +22745,2025-03-09T20:34:18.194248-07:00,0.0,10.733436,10733.436 +22746,2025-03-09T20:34:28.926326-07:00,0.0,10.732078,10732.078 +22747,2025-03-09T20:34:39.663262-07:00,0.0,10.736936,10736.936 +22748,2025-03-09T20:34:50.395278-07:00,0.0,10.732016,10732.016 +22749,2025-03-09T20:35:01.126460-07:00,0.0,10.731182,10731.182 +22750,2025-03-09T20:35:11.860899-07:00,0.0,10.734439,10734.439 +22751,2025-03-09T20:35:22.589575-07:00,0.0,10.728676,10728.676 +22752,2025-03-09T20:35:33.327314-07:00,0.0,10.737739,10737.739 +22753,2025-03-09T20:35:44.060248-07:00,0.0,10.732934,10732.934 +22754,2025-03-09T20:35:54.794556-07:00,0.0,10.734308,10734.308 +22755,2025-03-09T20:36:05.532428-07:00,0.0,10.737872,10737.872 +22756,2025-03-09T20:36:16.267713-07:00,0.0,10.735285,10735.285 +22757,2025-03-09T20:36:27.001998-07:00,0.0,10.734285,10734.285 +22758,2025-03-09T20:36:37.743252-07:00,0.0,10.741254,10741.254 +22759,2025-03-09T20:36:48.479449-07:00,0.0,10.736197,10736.197 +22760,2025-03-09T20:36:59.209248-07:00,0.0,10.729799,10729.799 +22761,2025-03-09T20:37:09.945250-07:00,0.0,10.736002,10736.002 +22762,2025-03-09T20:37:20.682353-07:00,0.0,10.737103,10737.103 +22763,2025-03-09T20:37:31.416626-07:00,0.0,10.734273,10734.273 +22764,2025-03-09T20:37:42.156510-07:00,0.0,10.739884,10739.884 +22765,2025-03-09T20:37:52.888529-07:00,0.0,10.732019,10732.019 +22766,2025-03-09T20:38:03.614471-07:00,0.0,10.725942,10725.942 +22767,2025-03-09T20:38:14.356939-07:00,0.0,10.742468,10742.468 +22768,2025-03-09T20:38:25.083598-07:00,0.0,10.726659,10726.659 +22769,2025-03-09T20:38:35.828425-07:00,0.0,10.744827,10744.827 +22770,2025-03-09T20:38:46.554252-07:00,0.0,10.725827,10725.827 +22771,2025-03-09T20:38:57.289417-07:00,0.0,10.735165,10735.165 +22772,2025-03-09T20:39:08.023304-07:00,0.0,10.733887,10733.887 +22773,2025-03-09T20:39:18.766247-07:00,0.0,10.742943,10742.943 +22774,2025-03-09T20:39:29.498251-07:00,0.0,10.732004,10732.004 +22775,2025-03-09T20:39:40.233235-07:00,0.0,10.734984,10734.984 +22776,2025-03-09T20:39:50.963248-07:00,0.0,10.730013,10730.013 +22777,2025-03-09T20:40:01.706309-07:00,0.0,10.743061,10743.061 +22778,2025-03-09T20:40:12.440318-07:00,0.0,10.734009,10734.009 +22779,2025-03-09T20:40:23.175291-07:00,0.0,10.734973,10734.973 +22780,2025-03-09T20:40:33.905499-07:00,0.0,10.730208,10730.208 +22781,2025-03-09T20:40:44.641249-07:00,0.0,10.73575,10735.75 +22782,2025-03-09T20:40:55.366144-07:00,0.0,10.724895,10724.895 +22783,2025-03-09T20:41:06.105478-07:00,0.0,10.739334,10739.334 +22784,2025-03-09T20:41:16.841249-07:00,0.0,10.735771,10735.771 +22785,2025-03-09T20:41:27.571560-07:00,0.0,10.730311,10730.311 +22786,2025-03-09T20:41:38.308251-07:00,0.0,10.736691,10736.691 +22787,2025-03-09T20:41:49.047426-07:00,0.0,10.739175,10739.175 +22788,2025-03-09T20:41:59.776248-07:00,0.0,10.728822,10728.822 +22789,2025-03-09T20:42:10.518396-07:00,0.0,10.742148,10742.148 +22790,2025-03-09T20:42:21.254725-07:00,0.0,10.736329,10736.329 +22791,2025-03-09T20:42:31.991793-07:00,0.0,10.737068,10737.068 +22792,2025-03-09T20:42:42.722453-07:00,0.0,10.73066,10730.66 +22793,2025-03-09T20:42:53.460251-07:00,0.0,10.737798,10737.798 +22794,2025-03-09T20:43:04.205455-07:00,0.0,10.745204,10745.204 +22795,2025-03-09T20:43:14.939252-07:00,0.0,10.733797,10733.797 +22796,2025-03-09T20:43:25.680423-07:00,0.0,10.741171,10741.171 +22797,2025-03-09T20:43:36.416424-07:00,0.0,10.736001,10736.001 +22798,2025-03-09T20:43:47.149252-07:00,0.0,10.732828,10732.828 +22799,2025-03-09T20:43:57.888250-07:00,0.0,10.738998,10738.998 +22800,2025-03-09T20:44:08.618450-07:00,0.0,10.7302,10730.2 +22801,2025-03-09T20:44:19.354428-07:00,0.0,10.735978,10735.978 +22802,2025-03-09T20:44:30.097249-07:00,0.0,10.742821,10742.821 +22803,2025-03-09T20:44:40.826531-07:00,0.0,10.729282,10729.282 +22804,2025-03-09T20:44:51.565346-07:00,0.0,10.738815,10738.815 +22805,2025-03-09T20:45:02.309324-07:00,0.0,10.743978,10743.978 +22806,2025-03-09T20:45:13.044352-07:00,0.0,10.735028,10735.028 +22807,2025-03-09T20:45:23.775459-07:00,0.0,10.731107,10731.107 +22808,2025-03-09T20:45:34.510250-07:00,0.0,10.734791,10734.791 +22809,2025-03-09T20:45:45.245663-07:00,0.0,10.735413,10735.413 +22810,2025-03-09T20:45:55.984423-07:00,0.0,10.73876,10738.76 +22811,2025-03-09T20:46:06.723324-07:00,0.0,10.738901,10738.901 +22812,2025-03-09T20:46:17.456254-07:00,0.0,10.73293,10732.93 +22813,2025-03-09T20:46:28.195252-07:00,0.0,10.738998,10738.998 +22814,2025-03-09T20:46:38.933252-07:00,0.0,10.738,10738.0 +22815,2025-03-09T20:46:49.671425-07:00,0.0,10.738173,10738.173 +22816,2025-03-09T20:47:00.406388-07:00,0.0,10.734963,10734.963 +22817,2025-03-09T20:47:11.136247-07:00,0.0,10.729859,10729.859 +22818,2025-03-09T20:47:21.867760-07:00,0.0,10.731513,10731.513 +22819,2025-03-09T20:47:32.608427-07:00,0.0,10.740667,10740.667 +22820,2025-03-09T20:47:43.340493-07:00,0.0,10.732066,10732.066 +22821,2025-03-09T20:47:54.079252-07:00,0.0,10.738759,10738.759 +22822,2025-03-09T20:48:04.816454-07:00,0.0,10.737202,10737.202 +22823,2025-03-09T20:48:15.551416-07:00,0.0,10.734962,10734.962 +22824,2025-03-09T20:48:26.288280-07:00,0.0,10.736864,10736.864 +22825,2025-03-09T20:48:37.029250-07:00,0.0,10.74097,10740.97 +22826,2025-03-09T20:48:47.770648-07:00,0.0,10.741398,10741.398 +22827,2025-03-09T20:48:58.495964-07:00,0.0,10.725316,10725.316 +22828,2025-03-09T20:49:09.238979-07:00,0.0,10.743015,10743.015 +22829,2025-03-09T20:49:19.967243-07:00,0.0,10.728264,10728.264 +22830,2025-03-09T20:49:30.699251-07:00,0.0,10.732008,10732.008 +22831,2025-03-09T20:49:41.434254-07:00,0.0,10.735003,10735.003 +22832,2025-03-09T20:49:52.166425-07:00,0.0,10.732171,10732.171 +22833,2025-03-09T20:50:02.903246-07:00,0.0,10.736821,10736.821 +22834,2025-03-09T20:50:13.632433-07:00,0.0,10.729187,10729.187 +22835,2025-03-09T20:50:24.368646-07:00,0.0,10.736213,10736.213 +22836,2025-03-09T20:50:35.106571-07:00,0.0,10.737925,10737.925 +22837,2025-03-09T20:50:45.838591-07:00,0.0,10.73202,10732.02 +22838,2025-03-09T20:50:56.570317-07:00,0.0,10.731726,10731.726 +22839,2025-03-09T20:51:07.293270-07:00,0.0,10.722953,10722.953 +22840,2025-03-09T20:51:18.031250-07:00,0.0,10.73798,10737.98 +22841,2025-03-09T20:51:28.764251-07:00,0.0,10.733001,10733.001 +22842,2025-03-09T20:51:39.497432-07:00,0.0,10.733181,10733.181 +22843,2025-03-09T20:51:50.232249-07:00,0.0,10.734817,10734.817 +22844,2025-03-09T20:52:00.971249-07:00,0.0,10.739,10739.0 +22845,2025-03-09T20:52:11.698252-07:00,0.0,10.727003,10727.003 +22846,2025-03-09T20:52:22.437662-07:00,0.0,10.73941,10739.41 +22847,2025-03-09T20:52:33.234837-07:00,0.0,10.797175,10797.175 +22848,2025-03-09T20:52:43.967676-07:00,0.0,10.732839,10732.839 +22849,2025-03-09T20:52:54.702878-07:00,0.0,10.735202,10735.202 +22850,2025-03-09T20:53:05.426707-07:00,0.0,10.723829,10723.829 +22851,2025-03-09T20:53:16.168746-07:00,0.0,10.742039,10742.039 +22852,2025-03-09T20:53:26.896387-07:00,0.0,10.727641,10727.641 +22853,2025-03-09T20:53:37.635840-07:00,0.0,10.739453,10739.453 +22854,2025-03-09T20:53:48.363672-07:00,0.0,10.727832,10727.832 +22855,2025-03-09T20:53:59.095715-07:00,0.0,10.732043,10732.043 +22856,2025-03-09T20:54:09.833863-07:00,0.0,10.738148,10738.148 +22857,2025-03-09T20:54:20.559676-07:00,0.0,10.725813,10725.813 +22858,2025-03-09T20:54:31.288756-07:00,0.0,10.72908,10729.08 +22859,2025-03-09T20:54:42.019872-07:00,0.0,10.731116,10731.116 +22860,2025-03-09T20:54:52.754535-07:00,0.0,10.734663,10734.663 +22861,2025-03-09T20:55:03.491201-07:00,0.0,10.736666,10736.666 +22862,2025-03-09T20:55:14.225104-07:00,0.0,10.733903,10733.903 +22863,2025-03-09T20:55:24.951032-07:00,0.0,10.725928,10725.928 +22864,2025-03-09T20:55:35.686672-07:00,0.0,10.73564,10735.64 +22865,2025-03-09T20:55:46.411720-07:00,0.0,10.725048,10725.048 +22866,2025-03-09T20:55:57.148775-07:00,0.0,10.737055,10737.055 +22867,2025-03-09T20:56:07.878117-07:00,0.0,10.729342,10729.342 +22868,2025-03-09T20:56:18.608687-07:00,0.0,10.73057,10730.57 +22869,2025-03-09T20:56:29.340854-07:00,0.0,10.732167,10732.167 +22870,2025-03-09T20:56:40.078795-07:00,0.0,10.737941,10737.941 +22871,2025-03-09T20:56:50.807686-07:00,0.0,10.728891,10728.891 +22872,2025-03-09T20:57:01.536968-07:00,0.0,10.729282,10729.282 +22873,2025-03-09T20:57:12.274930-07:00,0.0,10.737962,10737.962 +22874,2025-03-09T20:57:23.001892-07:00,0.0,10.726962,10726.962 +22875,2025-03-09T20:57:33.741678-07:00,0.0,10.739786,10739.786 +22876,2025-03-09T20:57:44.466837-07:00,0.0,10.725159,10725.159 +22877,2025-03-09T20:57:55.204670-07:00,0.0,10.737833,10737.833 +22878,2025-03-09T20:58:05.931753-07:00,0.0,10.727083,10727.083 +22879,2025-03-09T20:58:16.664868-07:00,0.0,10.733115,10733.115 +22880,2025-03-09T20:58:27.397756-07:00,0.0,10.732888,10732.888 +22881,2025-03-09T20:58:38.133672-07:00,0.0,10.735916,10735.916 +22882,2025-03-09T20:58:48.863875-07:00,0.0,10.730203,10730.203 +22883,2025-03-09T20:58:59.591795-07:00,0.0,10.72792,10727.92 +22884,2025-03-09T20:59:10.313697-07:00,0.0,10.721902,10721.902 +22885,2025-03-09T20:59:21.039846-07:00,0.0,10.726149,10726.149 +22886,2025-03-09T20:59:31.777880-07:00,0.0,10.738034,10738.034 +22887,2025-03-09T20:59:42.505747-07:00,0.0,10.727867,10727.867 +22888,2025-03-09T20:59:53.235842-07:00,0.0,10.730095,10730.095 +22889,2025-03-09T21:00:03.964674-07:00,0.0,10.728832,10728.832 +22890,2025-03-09T21:00:14.696672-07:00,0.0,10.731998,10731.998 +22891,2025-03-09T21:00:25.425855-07:00,0.0,10.729183,10729.183 +22892,2025-03-09T21:00:36.155671-07:00,0.0,10.729816,10729.816 +22893,2025-03-09T21:00:46.888671-07:00,0.0,10.733,10733.0 +22894,2025-03-09T21:00:57.622890-07:00,0.0,10.734219,10734.219 +22895,2025-03-09T21:01:08.345675-07:00,0.0,10.722785,10722.785 +22896,2025-03-09T21:01:19.082674-07:00,0.0,10.736999,10736.999 +22897,2025-03-09T21:01:29.811874-07:00,0.0,10.7292,10729.2 +22898,2025-03-09T21:01:40.550496-07:00,0.0,10.738622,10738.622 +22899,2025-03-09T21:01:51.278735-07:00,0.0,10.728239,10728.239 +22900,2025-03-09T21:02:02.009875-07:00,0.0,10.73114,10731.14 +22901,2025-03-09T21:02:12.735745-07:00,0.0,10.72587,10725.87 +22902,2025-03-09T21:02:23.471878-07:00,0.0,10.736133,10736.133 +22903,2025-03-09T21:02:34.202681-07:00,0.0,10.730803,10730.803 +22904,2025-03-09T21:02:44.928705-07:00,0.0,10.726024,10726.024 +22905,2025-03-09T21:02:55.651999-07:00,0.0,10.723294,10723.294 +22906,2025-03-09T21:03:06.382852-07:00,0.0,10.730853,10730.853 +22907,2025-03-09T21:03:17.114125-07:00,0.0,10.731273,10731.273 +22908,2025-03-09T21:03:27.850673-07:00,0.0,10.736548,10736.548 +22909,2025-03-09T21:03:38.576844-07:00,0.0,10.726171,10726.171 +22910,2025-03-09T21:03:49.311723-07:00,0.0,10.734879,10734.879 +22911,2025-03-09T21:04:00.038743-07:00,0.0,10.72702,10727.02 +22912,2025-03-09T21:04:10.767064-07:00,0.0,10.728321,10728.321 +22913,2025-03-09T21:04:21.500957-07:00,0.0,10.733893,10733.893 +22914,2025-03-09T21:04:32.232876-07:00,0.0,10.731919,10731.919 +22915,2025-03-09T21:04:42.956880-07:00,0.0,10.724004,10724.004 +22916,2025-03-09T21:04:53.686743-07:00,0.0,10.729863,10729.863 +22917,2025-03-09T21:05:04.425676-07:00,0.0,10.738933,10738.933 +22918,2025-03-09T21:05:15.155026-07:00,0.0,10.72935,10729.35 +22919,2025-03-09T21:05:25.880677-07:00,0.0,10.725651,10725.651 +22920,2025-03-09T21:05:36.622673-07:00,0.0,10.741996,10741.996 +22921,2025-03-09T21:05:47.346676-07:00,0.0,10.724003,10724.003 +22922,2025-03-09T21:05:58.075781-07:00,0.0,10.729105,10729.105 +22923,2025-03-09T21:06:08.814671-07:00,0.0,10.73889,10738.89 +22924,2025-03-09T21:06:19.549745-07:00,0.0,10.735074,10735.074 +22925,2025-03-09T21:06:30.281454-07:00,0.0,10.731709,10731.709 +22926,2025-03-09T21:06:41.013673-07:00,0.0,10.732219,10732.219 +22927,2025-03-09T21:06:51.744675-07:00,0.0,10.731002,10731.002 +22928,2025-03-09T21:07:02.480891-07:00,0.0,10.736216,10736.216 +22929,2025-03-09T21:07:13.215847-07:00,0.0,10.734956,10734.956 +22930,2025-03-09T21:07:23.947230-07:00,0.0,10.731383,10731.383 +22931,2025-03-09T21:07:34.684734-07:00,0.0,10.737504,10737.504 +22932,2025-03-09T21:07:45.410977-07:00,0.0,10.726243,10726.243 +22933,2025-03-09T21:07:56.143673-07:00,0.0,10.732696,10732.696 +22934,2025-03-09T21:08:06.880675-07:00,0.0,10.737002,10737.002 +22935,2025-03-09T21:08:17.611841-07:00,0.0,10.731166,10731.166 +22936,2025-03-09T21:08:28.347888-07:00,0.0,10.736047,10736.047 +22937,2025-03-09T21:08:39.075976-07:00,0.0,10.728088,10728.088 +22938,2025-03-09T21:08:49.803957-07:00,0.0,10.727981,10727.981 +22939,2025-03-09T21:09:00.545064-07:00,0.0,10.741107,10741.107 +22940,2025-03-09T21:09:11.264672-07:00,0.0,10.719608,10719.608 +22941,2025-03-09T21:09:21.996710-07:00,0.0,10.732038,10732.038 +22942,2025-03-09T21:09:32.724974-07:00,0.0,10.728264,10728.264 +22943,2025-03-09T21:09:43.456673-07:00,0.0,10.731699,10731.699 +22944,2025-03-09T21:09:54.194710-07:00,0.0,10.738037,10738.037 +22945,2025-03-09T21:10:04.922876-07:00,0.0,10.728166,10728.166 +22946,2025-03-09T21:10:15.652673-07:00,0.0,10.729797,10729.797 +22947,2025-03-09T21:10:26.389082-07:00,0.0,10.736409,10736.409 +22948,2025-03-09T21:10:37.117802-07:00,0.0,10.72872,10728.72 +22949,2025-03-09T21:10:47.847801-07:00,0.0,10.729999,10729.999 +22950,2025-03-09T21:10:58.584673-07:00,0.0,10.736872,10736.872 +22951,2025-03-09T21:11:09.311855-07:00,0.0,10.727182,10727.182 +22952,2025-03-09T21:11:20.046919-07:00,0.0,10.735064,10735.064 +22953,2025-03-09T21:11:30.773674-07:00,0.0,10.726755,10726.755 +22954,2025-03-09T21:11:41.501867-07:00,0.0,10.728193,10728.193 +22955,2025-03-09T21:11:52.230698-07:00,0.0,10.728831,10728.831 +22956,2025-03-09T21:12:02.969678-07:00,0.0,10.73898,10738.98 +22957,2025-03-09T21:12:13.700078-07:00,0.0,10.7304,10730.4 +22958,2025-03-09T21:12:24.428745-07:00,0.0,10.728667,10728.667 +22959,2025-03-09T21:12:35.163854-07:00,0.0,10.735109,10735.109 +22960,2025-03-09T21:12:45.891707-07:00,0.0,10.727853,10727.853 +22961,2025-03-09T21:12:56.628842-07:00,0.0,10.737135,10737.135 +22962,2025-03-09T21:13:07.349706-07:00,0.0,10.720864,10720.864 +22963,2025-03-09T21:13:18.087789-07:00,0.0,10.738083,10738.083 +22964,2025-03-09T21:13:28.820796-07:00,0.0,10.733007,10733.007 +22965,2025-03-09T21:13:39.544670-07:00,0.0,10.723874,10723.874 +22966,2025-03-09T21:13:50.283682-07:00,0.0,10.739012,10739.012 +22967,2025-03-09T21:14:01.020668-07:00,0.0,10.736986,10736.986 +22968,2025-03-09T21:14:11.750401-07:00,0.0,10.729733,10729.733 +22969,2025-03-09T21:14:22.485914-07:00,0.0,10.735513,10735.513 +22970,2025-03-09T21:14:33.210855-07:00,0.0,10.724941,10724.941 +22971,2025-03-09T21:14:43.946848-07:00,0.0,10.735993,10735.993 +22972,2025-03-09T21:14:54.685820-07:00,0.0,10.738972,10738.972 +22973,2025-03-09T21:15:05.418784-07:00,0.0,10.732964,10732.964 +22974,2025-03-09T21:15:16.157674-07:00,0.0,10.73889,10738.89 +22975,2025-03-09T21:15:26.885885-07:00,0.0,10.728211,10728.211 +22976,2025-03-09T21:15:37.624914-07:00,0.0,10.739029,10739.029 +22977,2025-03-09T21:15:48.353674-07:00,0.0,10.72876,10728.76 +22978,2025-03-09T21:15:59.082486-07:00,0.0,10.728812,10728.812 +22979,2025-03-09T21:16:09.813675-07:00,0.0,10.731189,10731.189 +22980,2025-03-09T21:16:20.552676-07:00,0.0,10.739001,10739.001 +22981,2025-03-09T21:16:31.278880-07:00,0.0,10.726204,10726.204 +22982,2025-03-09T21:16:42.010909-07:00,0.0,10.732029,10732.029 +22983,2025-03-09T21:16:52.752044-07:00,0.0,10.741135,10741.135 +22984,2025-03-09T21:17:03.477743-07:00,0.0,10.725699,10725.699 +22985,2025-03-09T21:17:14.203864-07:00,0.0,10.726121,10726.121 +22986,2025-03-09T21:17:24.937880-07:00,0.0,10.734016,10734.016 +22987,2025-03-09T21:17:35.668887-07:00,0.0,10.731007,10731.007 +22988,2025-03-09T21:17:46.407889-07:00,0.0,10.739002,10739.002 +22989,2025-03-09T21:17:57.139911-07:00,0.0,10.732022,10732.022 +22990,2025-03-09T21:18:07.872675-07:00,0.0,10.732764,10732.764 +22991,2025-03-09T21:18:18.598156-07:00,0.0,10.725481,10725.481 +22992,2025-03-09T21:18:29.335848-07:00,0.0,10.737692,10737.692 +22993,2025-03-09T21:18:40.064675-07:00,0.0,10.728827,10728.827 +22994,2025-03-09T21:18:50.797678-07:00,0.0,10.733003,10733.003 +22995,2025-03-09T21:19:01.529864-07:00,0.0,10.732186,10732.186 +22996,2025-03-09T21:19:12.260887-07:00,0.0,10.731023,10731.023 +22997,2025-03-09T21:19:22.994757-07:00,0.0,10.73387,10733.87 +22998,2025-03-09T21:19:33.730055-07:00,0.0,10.735298,10735.298 +22999,2025-03-09T21:19:44.459673-07:00,0.0,10.729618,10729.618 +23000,2025-03-09T21:19:55.186773-07:00,0.0,10.7271,10727.1 +23001,2025-03-09T21:20:05.926749-07:00,0.0,10.739976,10739.976 +23002,2025-03-09T21:20:16.649771-07:00,0.0,10.723022,10723.022 +23003,2025-03-09T21:20:27.387672-07:00,0.0,10.737901,10737.901 +23004,2025-03-09T21:20:38.115850-07:00,0.0,10.728178,10728.178 +23005,2025-03-09T21:20:48.849856-07:00,0.0,10.734006,10734.006 +23006,2025-03-09T21:20:59.576078-07:00,0.0,10.726222,10726.222 +23007,2025-03-09T21:21:10.307847-07:00,0.0,10.731769,10731.769 +23008,2025-03-09T21:21:21.049888-07:00,0.0,10.742041,10742.041 +23009,2025-03-09T21:21:31.773804-07:00,0.0,10.723916,10723.916 +23010,2025-03-09T21:21:42.503074-07:00,0.0,10.72927,10729.27 +23011,2025-03-09T21:21:53.232857-07:00,0.0,10.729783,10729.783 +23012,2025-03-09T21:22:03.960672-07:00,0.0,10.727815,10727.815 +23013,2025-03-09T21:22:14.698972-07:00,0.0,10.7383,10738.3 +23014,2025-03-09T21:22:25.427195-07:00,0.0,10.728223,10728.223 +23015,2025-03-09T21:22:36.159675-07:00,0.0,10.73248,10732.48 +23016,2025-03-09T21:22:46.886055-07:00,0.0,10.72638,10726.38 +23017,2025-03-09T21:22:57.613863-07:00,0.0,10.727808,10727.808 +23018,2025-03-09T21:23:08.344735-07:00,0.0,10.730872,10730.872 +23019,2025-03-09T21:23:19.085924-07:00,0.0,10.741189,10741.189 +23020,2025-03-09T21:23:29.810836-07:00,0.0,10.724912,10724.912 +23021,2025-03-09T21:23:40.543935-07:00,0.0,10.733099,10733.099 +23022,2025-03-09T21:23:51.283674-07:00,0.0,10.739739,10739.739 +23023,2025-03-09T21:24:02.011753-07:00,0.0,10.728079,10728.079 +23024,2025-03-09T21:24:12.744856-07:00,0.0,10.733103,10733.103 +23025,2025-03-09T21:24:23.484880-07:00,0.0,10.740024,10740.024 +23026,2025-03-09T21:24:34.209670-07:00,0.0,10.72479,10724.79 +23027,2025-03-09T21:24:44.946676-07:00,0.0,10.737006,10737.006 +23028,2025-03-09T21:24:55.673759-07:00,0.0,10.727083,10727.083 +23029,2025-03-09T21:25:06.405673-07:00,0.0,10.731914,10731.914 +23030,2025-03-09T21:25:17.145697-07:00,0.0,10.740024,10740.024 +23031,2025-03-09T21:25:27.872460-07:00,0.0,10.726763,10726.763 +23032,2025-03-09T21:25:38.599751-07:00,0.0,10.727291,10727.291 +23033,2025-03-09T21:25:49.330668-07:00,0.0,10.730917,10730.917 +23034,2025-03-09T21:26:00.064094-07:00,0.0,10.733426,10733.426 +23035,2025-03-09T21:26:10.801680-07:00,0.0,10.737586,10737.586 +23036,2025-03-09T21:26:21.538081-07:00,0.0,10.736401,10736.401 +23037,2025-03-09T21:26:32.262696-07:00,0.0,10.724615,10724.615 +23038,2025-03-09T21:26:42.990674-07:00,0.0,10.727978,10727.978 +23039,2025-03-09T21:26:53.727676-07:00,0.0,10.737002,10737.002 +23040,2025-03-09T21:27:04.454852-07:00,0.0,10.727176,10727.176 +23041,2025-03-09T21:27:15.185795-07:00,0.0,10.730943,10730.943 +23042,2025-03-09T21:27:25.912673-07:00,0.0,10.726878,10726.878 +23043,2025-03-09T21:27:36.647902-07:00,0.0,10.735229,10735.229 +23044,2025-03-09T21:27:47.374698-07:00,0.0,10.726796,10726.796 +23045,2025-03-09T21:27:58.113669-07:00,0.0,10.738971,10738.971 +23046,2025-03-09T21:28:08.839696-07:00,0.0,10.726027,10726.027 +23047,2025-03-09T21:28:19.571724-07:00,0.0,10.732028,10732.028 +23048,2025-03-09T21:28:30.299892-07:00,0.0,10.728168,10728.168 +23049,2025-03-09T21:28:41.037893-07:00,0.0,10.738001,10738.001 +23050,2025-03-09T21:28:51.767699-07:00,0.0,10.729806,10729.806 +23051,2025-03-09T21:29:02.497672-07:00,0.0,10.729973,10729.973 +23052,2025-03-09T21:29:13.238886-07:00,0.0,10.741214,10741.214 +23053,2025-03-09T21:29:23.964874-07:00,0.0,10.725988,10725.988 +23054,2025-03-09T21:29:34.705948-07:00,0.0,10.741074,10741.074 +23055,2025-03-09T21:29:45.429678-07:00,0.0,10.72373,10723.73 +23056,2025-03-09T21:29:56.166033-07:00,0.0,10.736355,10736.355 +23057,2025-03-09T21:30:06.903853-07:00,0.0,10.73782,10737.82 +23058,2025-03-09T21:30:17.626825-07:00,0.0,10.722972,10722.972 +23059,2025-03-09T21:30:28.358670-07:00,0.0,10.731845,10731.845 +23060,2025-03-09T21:30:39.098416-07:00,0.0,10.739746,10739.746 +23061,2025-03-09T21:30:49.822855-07:00,0.0,10.724439,10724.439 +23062,2025-03-09T21:31:00.563701-07:00,0.0,10.740846,10740.846 +23063,2025-03-09T21:31:11.298042-07:00,0.0,10.734341,10734.341 +23064,2025-03-09T21:31:22.023672-07:00,0.0,10.72563,10725.63 +23065,2025-03-09T21:31:32.761495-07:00,0.0,10.737823,10737.823 +23066,2025-03-09T21:31:43.495856-07:00,0.0,10.734361,10734.361 +23067,2025-03-09T21:31:54.230678-07:00,0.0,10.734822,10734.822 +23068,2025-03-09T21:32:04.967866-07:00,0.0,10.737188,10737.188 +23069,2025-03-09T21:32:15.699669-07:00,0.0,10.731803,10731.803 +23070,2025-03-09T21:32:26.432678-07:00,0.0,10.733009,10733.009 +23071,2025-03-09T21:32:37.161869-07:00,0.0,10.729191,10729.191 +23072,2025-03-09T21:32:47.905349-07:00,0.0,10.74348,10743.48 +23073,2025-03-09T21:32:58.628804-07:00,0.0,10.723455,10723.455 +23074,2025-03-09T21:33:09.360064-07:00,0.0,10.73126,10731.26 +23075,2025-03-09T21:33:20.104025-07:00,0.0,10.743961,10743.961 +23076,2025-03-09T21:33:30.838013-07:00,0.0,10.733988,10733.988 +23077,2025-03-09T21:33:41.560889-07:00,0.0,10.722876,10722.876 +23078,2025-03-09T21:33:52.298346-07:00,0.0,10.737457,10737.457 +23079,2025-03-09T21:34:03.035325-07:00,0.0,10.736979,10736.979 +23080,2025-03-09T21:34:13.768678-07:00,0.0,10.733353,10733.353 +23081,2025-03-09T21:34:24.498675-07:00,0.0,10.729997,10729.997 +23082,2025-03-09T21:34:35.228845-07:00,0.0,10.73017,10730.17 +23083,2025-03-09T21:34:45.966889-07:00,0.0,10.738044,10738.044 +23084,2025-03-09T21:34:56.686854-07:00,0.0,10.719965,10719.965 +23085,2025-03-09T21:35:07.420011-07:00,0.0,10.733157,10733.157 +23086,2025-03-09T21:35:18.159709-07:00,0.0,10.739698,10739.698 +23087,2025-03-09T21:35:28.881676-07:00,0.0,10.721967,10721.967 +23088,2025-03-09T21:35:39.618977-07:00,0.0,10.737301,10737.301 +23089,2025-03-09T21:35:50.344669-07:00,0.0,10.725692,10725.692 +23090,2025-03-09T21:36:01.076673-07:00,0.0,10.732004,10732.004 +23091,2025-03-09T21:36:11.806045-07:00,0.0,10.729372,10729.372 +23092,2025-03-09T21:36:22.540673-07:00,0.0,10.734628,10734.628 +23093,2025-03-09T21:36:33.265676-07:00,0.0,10.725003,10725.003 +23094,2025-03-09T21:36:43.994856-07:00,0.0,10.72918,10729.18 +23095,2025-03-09T21:36:54.729675-07:00,0.0,10.734819,10734.819 +23096,2025-03-09T21:37:05.459908-07:00,0.0,10.730233,10730.233 +23097,2025-03-09T21:37:16.185859-07:00,0.0,10.725951,10725.951 +23098,2025-03-09T21:37:26.917675-07:00,0.0,10.731816,10731.816 +23099,2025-03-09T21:37:37.648671-07:00,0.0,10.730996,10730.996 +23100,2025-03-09T21:37:48.378847-07:00,0.0,10.730176,10730.176 +23101,2025-03-09T21:37:59.109882-07:00,0.0,10.731035,10731.035 +23102,2025-03-09T21:38:09.840671-07:00,0.0,10.730789,10730.789 +23103,2025-03-09T21:38:20.570862-07:00,0.0,10.730191,10730.191 +23104,2025-03-09T21:38:31.300747-07:00,0.0,10.729885,10729.885 +23105,2025-03-09T21:38:42.034675-07:00,0.0,10.733928,10733.928 +23106,2025-03-09T21:38:52.766206-07:00,0.0,10.731531,10731.531 +23107,2025-03-09T21:39:03.493672-07:00,0.0,10.727466,10727.466 +23108,2025-03-09T21:39:14.227852-07:00,0.0,10.73418,10734.18 +23109,2025-03-09T21:39:24.954081-07:00,0.0,10.726229,10726.229 +23110,2025-03-09T21:39:35.680671-07:00,0.0,10.72659,10726.59 +23111,2025-03-09T21:39:46.417675-07:00,0.0,10.737004,10737.004 +23112,2025-03-09T21:39:57.142086-07:00,0.0,10.724411,10724.411 +23113,2025-03-09T21:40:07.876672-07:00,0.0,10.734586,10734.586 +23114,2025-03-09T21:40:18.610678-07:00,0.0,10.734006,10734.006 +23115,2025-03-09T21:40:29.340291-07:00,0.0,10.729613,10729.613 +23116,2025-03-09T21:40:40.065672-07:00,0.0,10.725381,10725.381 +23117,2025-03-09T21:40:50.798967-07:00,0.0,10.733295,10733.295 +23118,2025-03-09T21:41:01.528809-07:00,0.0,10.729842,10729.842 +23119,2025-03-09T21:41:12.260766-07:00,0.0,10.731957,10731.957 +23120,2025-03-09T21:41:22.995674-07:00,0.0,10.734908,10734.908 +23121,2025-03-09T21:41:33.725884-07:00,0.0,10.73021,10730.21 +23122,2025-03-09T21:41:44.447702-07:00,0.0,10.721818,10721.818 +23123,2025-03-09T21:41:55.177942-07:00,0.0,10.73024,10730.24 +23124,2025-03-09T21:42:05.909848-07:00,0.0,10.731906,10731.906 +23125,2025-03-09T21:42:16.646049-07:00,0.0,10.736201,10736.201 +23126,2025-03-09T21:42:27.379738-07:00,0.0,10.733689,10733.689 +23127,2025-03-09T21:42:38.109857-07:00,0.0,10.730119,10730.119 +23128,2025-03-09T21:42:48.832675-07:00,0.0,10.722818,10722.818 +23129,2025-03-09T21:42:59.569672-07:00,0.0,10.736997,10736.997 +23130,2025-03-09T21:43:10.304670-07:00,0.0,10.734998,10734.998 +23131,2025-03-09T21:43:21.036963-07:00,0.0,10.732293,10732.293 +23132,2025-03-09T21:43:31.763672-07:00,0.0,10.726709,10726.709 +23133,2025-03-09T21:43:42.499862-07:00,0.0,10.73619,10736.19 +23134,2025-03-09T21:43:53.221670-07:00,0.0,10.721808,10721.808 +23135,2025-03-09T21:44:03.956675-07:00,0.0,10.735005,10735.005 +23136,2025-03-09T21:44:14.687671-07:00,0.0,10.730996,10730.996 +23137,2025-03-09T21:44:25.413700-07:00,0.0,10.726029,10726.029 +23138,2025-03-09T21:44:36.142703-07:00,0.0,10.729003,10729.003 +23139,2025-03-09T21:44:46.876122-07:00,0.0,10.733419,10733.419 +23140,2025-03-09T21:44:57.605669-07:00,0.0,10.729547,10729.547 +23141,2025-03-09T21:45:08.335760-07:00,0.0,10.730091,10730.091 +23142,2025-03-09T21:45:19.068673-07:00,0.0,10.732913,10732.913 +23143,2025-03-09T21:45:29.803858-07:00,0.0,10.735185,10735.185 +23144,2025-03-09T21:45:40.535781-07:00,0.0,10.731923,10731.923 +23145,2025-03-09T21:45:51.267672-07:00,0.0,10.731891,10731.891 +23146,2025-03-09T21:46:01.999848-07:00,0.0,10.732176,10732.176 +23147,2025-03-09T21:46:12.720884-07:00,0.0,10.721036,10721.036 +23148,2025-03-09T21:46:23.454221-07:00,0.0,10.733337,10733.337 +23149,2025-03-09T21:46:34.188868-07:00,0.0,10.734647,10734.647 +23150,2025-03-09T21:46:44.920673-07:00,0.0,10.731805,10731.805 +23151,2025-03-09T21:46:55.642235-07:00,0.0,10.721562,10721.562 +23152,2025-03-09T21:47:06.373421-07:00,0.0,10.731186,10731.186 +23153,2025-03-09T21:47:17.110668-07:00,0.0,10.737247,10737.247 +23154,2025-03-09T21:47:27.832868-07:00,0.0,10.7222,10722.2 +23155,2025-03-09T21:47:38.559007-07:00,0.0,10.726139,10726.139 +23156,2025-03-09T21:47:49.296672-07:00,0.0,10.737665,10737.665 +23157,2025-03-09T21:48:00.029906-07:00,0.0,10.733234,10733.234 +23158,2025-03-09T21:48:10.760869-07:00,0.0,10.730963,10730.963 +23159,2025-03-09T21:48:21.492827-07:00,0.0,10.731958,10731.958 +23160,2025-03-09T21:48:32.219889-07:00,0.0,10.727062,10727.062 +23161,2025-03-09T21:48:42.950979-07:00,0.0,10.73109,10731.09 +23162,2025-03-09T21:48:53.688676-07:00,0.0,10.737697,10737.697 +23163,2025-03-09T21:49:04.417668-07:00,0.0,10.728992,10728.992 +23164,2025-03-09T21:49:15.155944-07:00,0.0,10.738276,10738.276 +23165,2025-03-09T21:49:25.890865-07:00,0.0,10.734921,10734.921 +23166,2025-03-09T21:49:36.618678-07:00,0.0,10.727813,10727.813 +23167,2025-03-09T21:49:47.354890-07:00,0.0,10.736212,10736.212 +23168,2025-03-09T21:49:58.082902-07:00,0.0,10.728012,10728.012 +23169,2025-03-09T21:50:08.814672-07:00,0.0,10.73177,10731.77 +23170,2025-03-09T21:50:19.546674-07:00,0.0,10.732002,10732.002 +23171,2025-03-09T21:50:30.285002-07:00,0.0,10.738328,10738.328 +23172,2025-03-09T21:50:41.011874-07:00,0.0,10.726872,10726.872 +23173,2025-03-09T21:50:51.742672-07:00,0.0,10.730798,10730.798 +23174,2025-03-09T21:51:02.478892-07:00,0.0,10.73622,10736.22 +23175,2025-03-09T21:51:13.210539-07:00,0.0,10.731647,10731.647 +23176,2025-03-09T21:51:23.939751-07:00,0.0,10.729212,10729.212 +23177,2025-03-09T21:51:34.668853-07:00,0.0,10.729102,10729.102 +23178,2025-03-09T21:51:45.413208-07:00,0.0,10.744355,10744.355 +23179,2025-03-09T21:51:56.142970-07:00,0.0,10.729762,10729.762 +23180,2025-03-09T21:52:06.877672-07:00,0.0,10.734702,10734.702 +23181,2025-03-09T21:52:17.605676-07:00,0.0,10.728004,10728.004 +23182,2025-03-09T21:52:28.337908-07:00,0.0,10.732232,10732.232 +23183,2025-03-09T21:52:39.081693-07:00,0.0,10.743785,10743.785 +23184,2025-03-09T21:52:49.819678-07:00,0.0,10.737985,10737.985 +23185,2025-03-09T21:53:00.519490-07:00,0.0,10.699812,10699.812 +23186,2025-03-09T21:53:11.260545-07:00,0.0,10.741055,10741.055 +23187,2025-03-09T21:53:21.996799-07:00,0.0,10.736254,10736.254 +23188,2025-03-09T21:53:32.729696-07:00,0.0,10.732897,10732.897 +23189,2025-03-09T21:53:43.473491-07:00,0.0,10.743795,10743.795 +23190,2025-03-09T21:53:54.214601-07:00,0.0,10.74111,10741.11 +23191,2025-03-09T21:54:04.948489-07:00,0.0,10.733888,10733.888 +23192,2025-03-09T21:54:15.695521-07:00,0.0,10.747032,10747.032 +23193,2025-03-09T21:54:26.432672-07:00,0.0,10.737151,10737.151 +23194,2025-03-09T21:54:37.173270-07:00,0.0,10.740598,10740.598 +23195,2025-03-09T21:54:47.918724-07:00,0.0,10.745454,10745.454 +23196,2025-03-09T21:54:58.656036-07:00,0.0,10.737312,10737.312 +23197,2025-03-09T21:55:09.394763-07:00,0.0,10.738727,10738.727 +23198,2025-03-09T21:55:20.142537-07:00,0.0,10.747774,10747.774 +23199,2025-03-09T21:55:30.885501-07:00,0.0,10.742964,10742.964 +23200,2025-03-09T21:55:41.624492-07:00,0.0,10.738991,10738.991 +23201,2025-03-09T21:55:52.363671-07:00,0.0,10.739179,10739.179 +23202,2025-03-09T21:56:03.103298-07:00,0.0,10.739627,10739.627 +23203,2025-03-09T21:56:13.841488-07:00,0.0,10.73819,10738.19 +23204,2025-03-09T21:56:24.575490-07:00,0.0,10.734002,10734.002 +23205,2025-03-09T21:56:35.321493-07:00,0.0,10.746003,10746.003 +23206,2025-03-09T21:56:46.055764-07:00,0.0,10.734271,10734.271 +23207,2025-03-09T21:56:56.793749-07:00,0.0,10.737985,10737.985 +23208,2025-03-09T21:57:07.530692-07:00,0.0,10.736943,10736.943 +23209,2025-03-09T21:57:18.274716-07:00,0.0,10.744024,10744.024 +23210,2025-03-09T21:57:29.021720-07:00,0.0,10.747004,10747.004 +23211,2025-03-09T21:57:39.759148-07:00,0.0,10.737428,10737.428 +23212,2025-03-09T21:57:50.496668-07:00,0.0,10.73752,10737.52 +23213,2025-03-09T21:58:01.236713-07:00,0.0,10.740045,10740.045 +23214,2025-03-09T21:58:11.976754-07:00,0.0,10.740041,10740.041 +23215,2025-03-09T21:58:22.715701-07:00,0.0,10.738947,10738.947 +23216,2025-03-09T21:58:33.448571-07:00,0.0,10.73287,10732.87 +23217,2025-03-09T21:58:44.194803-07:00,0.0,10.746232,10746.232 +23218,2025-03-09T21:58:54.934494-07:00,0.0,10.739691,10739.691 +23219,2025-03-09T21:59:05.671492-07:00,0.0,10.736998,10736.998 +23220,2025-03-09T21:59:16.410681-07:00,0.0,10.739189,10739.189 +23221,2025-03-09T21:59:27.152809-07:00,0.0,10.742128,10742.128 +23222,2025-03-09T21:59:37.895761-07:00,0.0,10.742952,10742.952 +23223,2025-03-09T21:59:48.632582-07:00,0.0,10.736821,10736.821 +23224,2025-03-09T21:59:59.371684-07:00,0.0,10.739102,10739.102 +23225,2025-03-09T22:00:10.108683-07:00,0.0,10.736999,10736.999 +23226,2025-03-09T22:00:20.858995-07:00,0.0,10.750312,10750.312 +23227,2025-03-09T22:00:31.592668-07:00,0.0,10.733673,10733.673 +23228,2025-03-09T22:00:42.337549-07:00,0.0,10.744881,10744.881 +23229,2025-03-09T22:00:53.072492-07:00,0.0,10.734943,10734.943 +23230,2025-03-09T22:01:03.815552-07:00,0.0,10.74306,10743.06 +23231,2025-03-09T22:01:14.558492-07:00,0.0,10.74294,10742.94 +23232,2025-03-09T22:01:25.295555-07:00,0.0,10.737063,10737.063 +23233,2025-03-09T22:01:36.038492-07:00,0.0,10.742937,10742.937 +23234,2025-03-09T22:01:46.775685-07:00,0.0,10.737193,10737.193 +23235,2025-03-09T22:01:57.521879-07:00,0.0,10.746194,10746.194 +23236,2025-03-09T22:02:08.257489-07:00,0.0,10.73561,10735.61 +23237,2025-03-09T22:02:10.754903-07:00,253.0,2.497414,2497.414 +23238,2025-03-09T22:02:18.997427-07:00,436.0,8.242524,8242.524 +23239,2025-03-09T22:02:29.743497-07:00,442.0,10.74607,10746.07 +23240,2025-03-09T22:02:40.480767-07:00,464.0,10.73727,10737.27 +23241,2025-03-09T22:02:51.219522-07:00,455.0,10.738755,10738.755 +23242,2025-03-09T22:03:01.968522-07:00,410.0,10.749,10749.0 +23243,2025-03-09T22:03:12.702809-07:00,458.0,10.734287,10734.287 +23244,2025-03-09T22:03:23.457562-07:00,291.0,10.754753,10754.753 +23245,2025-03-09T22:03:34.192717-07:00,422.0,10.735155,10735.155 +23246,2025-03-09T22:03:44.936491-07:00,405.0,10.743774,10743.774 +23247,2025-03-09T22:03:55.684519-07:00,443.0,10.748028,10748.028 +23248,2025-03-09T22:03:57.060968-07:00,0.0,1.376449,1376.449 +23249,2025-03-09T22:04:06.429700-07:00,0.0,9.368732,9368.732 +23250,2025-03-09T22:04:17.169488-07:00,0.0,10.739788,10739.788 +23251,2025-03-09T22:04:27.910722-07:00,0.0,10.741234,10741.234 +23252,2025-03-09T22:04:38.661494-07:00,0.0,10.750772,10750.772 +23253,2025-03-09T22:04:49.404554-07:00,0.0,10.74306,10743.06 +23254,2025-03-09T22:05:00.148529-07:00,0.0,10.743975,10743.975 +23255,2025-03-09T22:05:10.885590-07:00,0.0,10.737061,10737.061 +23256,2025-03-09T22:05:21.633705-07:00,0.0,10.748115,10748.115 +23257,2025-03-09T22:05:32.369855-07:00,0.0,10.73615,10736.15 +23258,2025-03-09T22:05:43.112728-07:00,0.0,10.742873,10742.873 +23259,2025-03-09T22:05:53.858170-07:00,0.0,10.745442,10745.442 +23260,2025-03-09T22:06:04.604515-07:00,0.0,10.746345,10746.345 +23261,2025-03-09T22:06:15.360508-07:00,0.0,10.755993,10755.993 +23262,2025-03-09T22:06:26.105620-07:00,0.0,10.745112,10745.112 +23263,2025-03-09T22:06:36.848592-07:00,0.0,10.742972,10742.972 +23264,2025-03-09T22:06:47.586489-07:00,0.0,10.737897,10737.897 +23265,2025-03-09T22:06:58.334645-07:00,0.0,10.748156,10748.156 +23266,2025-03-09T22:07:09.074723-07:00,0.0,10.740078,10740.078 +23267,2025-03-09T22:07:19.824558-07:00,0.0,10.749835,10749.835 +23268,2025-03-09T22:07:30.560100-07:00,0.0,10.735542,10735.542 +23269,2025-03-09T22:07:41.310998-07:00,0.0,10.750898,10750.898 +23270,2025-03-09T22:07:52.052744-07:00,0.0,10.741746,10741.746 +23271,2025-03-09T22:08:02.792542-07:00,0.0,10.739798,10739.798 +23272,2025-03-09T22:08:13.534778-07:00,0.0,10.742236,10742.236 +23273,2025-03-09T22:08:24.288365-07:00,0.0,10.753587,10753.587 +23274,2025-03-09T22:08:35.026991-07:00,0.0,10.738626,10738.626 +23275,2025-03-09T22:08:45.774796-07:00,0.0,10.747805,10747.805 +23276,2025-03-09T22:08:56.523332-07:00,0.0,10.748536,10748.536 +23277,2025-03-09T22:09:07.263572-07:00,0.0,10.74024,10740.24 +23278,2025-03-09T22:09:18.003490-07:00,0.0,10.739918,10739.918 +23279,2025-03-09T22:09:28.750697-07:00,0.0,10.747207,10747.207 +23280,2025-03-09T22:09:39.499492-07:00,0.0,10.748795,10748.795 +23281,2025-03-09T22:09:50.236491-07:00,0.0,10.736999,10736.999 +23282,2025-03-09T22:10:00.981486-07:00,0.0,10.744995,10744.995 +23283,2025-03-09T22:10:11.721494-07:00,0.0,10.740008,10740.008 +23284,2025-03-09T22:10:22.465553-07:00,0.0,10.744059,10744.059 +23285,2025-03-09T22:10:33.206680-07:00,0.0,10.741127,10741.127 +23286,2025-03-09T22:10:43.950877-07:00,0.0,10.744197,10744.197 +23287,2025-03-09T22:10:54.698824-07:00,0.0,10.747947,10747.947 +23288,2025-03-09T22:11:05.434718-07:00,0.0,10.735894,10735.894 +23289,2025-03-09T22:11:16.182682-07:00,0.0,10.747964,10747.964 +23290,2025-03-09T22:11:26.921591-07:00,0.0,10.738909,10738.909 +23291,2025-03-09T22:11:37.665731-07:00,0.0,10.74414,10744.14 +23292,2025-03-09T22:11:48.404766-07:00,0.0,10.739035,10739.035 +23293,2025-03-09T22:11:59.145693-07:00,0.0,10.740927,10740.927 +23294,2025-03-09T22:12:09.893493-07:00,0.0,10.7478,10747.8 +23295,2025-03-09T22:12:20.632688-07:00,0.0,10.739195,10739.195 +23296,2025-03-09T22:12:31.375990-07:00,0.0,10.743302,10743.302 +23297,2025-03-09T22:12:42.113681-07:00,0.0,10.737691,10737.691 +23298,2025-03-09T22:12:52.856490-07:00,0.0,10.742809,10742.809 +23299,2025-03-09T22:13:03.594488-07:00,0.0,10.737998,10737.998 +23300,2025-03-09T22:13:14.334642-07:00,0.0,10.740154,10740.154 +23301,2025-03-09T22:13:25.076489-07:00,0.0,10.741847,10741.847 +23302,2025-03-09T22:13:46.561748-07:00,0.0,21.485259,21485.259 +23303,2025-03-09T22:13:57.308877-07:00,0.0,10.747129,10747.129 +23304,2025-03-09T22:14:08.050370-07:00,0.0,10.741493,10741.493 +23305,2025-03-09T22:14:18.799005-07:00,0.0,10.748635,10748.635 +23306,2025-03-09T22:14:29.542726-07:00,0.0,10.743721,10743.721 +23307,2025-03-09T22:14:40.284809-07:00,0.0,10.742083,10742.083 +23308,2025-03-09T22:14:51.033332-07:00,0.0,10.748523,10748.523 +23309,2025-03-09T22:15:01.767527-07:00,0.0,10.734195,10734.195 +23310,2025-03-09T22:15:12.519488-07:00,0.0,10.751961,10751.961 +23311,2025-03-09T22:15:23.259559-07:00,0.0,10.740071,10740.071 +23312,2025-03-09T22:15:34.005684-07:00,0.0,10.746125,10746.125 +23313,2025-03-09T22:15:44.747693-07:00,0.0,10.742009,10742.009 +23314,2025-03-09T22:15:55.488697-07:00,0.0,10.741004,10741.004 +23315,2025-03-09T22:16:06.229878-07:00,0.0,10.741181,10741.181 +23316,2025-03-09T22:16:16.970683-07:00,0.0,10.740805,10740.805 +23317,2025-03-09T22:16:27.713993-07:00,0.0,10.74331,10743.31 +23318,2025-03-09T22:16:38.463165-07:00,0.0,10.749172,10749.172 +23319,2025-03-09T22:16:49.203520-07:00,0.0,10.740355,10740.355 +23320,2025-03-09T22:16:59.942705-07:00,0.0,10.739185,10739.185 +23321,2025-03-09T22:17:10.684491-07:00,0.0,10.741786,10741.786 +23322,2025-03-09T22:17:21.423504-07:00,0.0,10.739013,10739.013 +23323,2025-03-09T22:17:32.156730-07:00,0.0,10.733226,10733.226 +23324,2025-03-09T22:17:42.908656-07:00,0.0,10.751926,10751.926 +23325,2025-03-09T22:17:53.640234-07:00,0.0,10.731578,10731.578 +23326,2025-03-09T22:18:04.386557-07:00,0.0,10.746323,10746.323 +23327,2025-03-09T22:18:15.116490-07:00,0.0,10.729933,10729.933 +23328,2025-03-09T22:18:25.866571-07:00,0.0,10.750081,10750.081 +23329,2025-03-09T22:18:36.596371-07:00,0.0,10.7298,10729.8 +23330,2025-03-09T22:18:47.336660-07:00,0.0,10.740289,10740.289 +23331,2025-03-09T22:18:58.073686-07:00,0.0,10.737026,10737.026 +23332,2025-03-09T22:19:08.822488-07:00,0.0,10.748802,10748.802 +23333,2025-03-09T22:19:19.554889-07:00,0.0,10.732401,10732.401 +23334,2025-03-09T22:19:30.289590-07:00,0.0,10.734701,10734.701 +23335,2025-03-09T22:19:41.033493-07:00,0.0,10.743903,10743.903 +23336,2025-03-09T22:19:51.771900-07:00,0.0,10.738407,10738.407 +23337,2025-03-09T22:20:02.512521-07:00,0.0,10.740621,10740.621 +23338,2025-03-09T22:20:13.251777-07:00,0.0,10.739256,10739.256 +23339,2025-03-09T22:20:23.993487-07:00,0.0,10.74171,10741.71 +23340,2025-03-09T22:20:34.729702-07:00,0.0,10.736215,10736.215 +23341,2025-03-09T22:20:45.460691-07:00,0.0,10.730989,10730.989 +23342,2025-03-09T22:20:56.198490-07:00,0.0,10.737799,10737.799 +23343,2025-03-09T22:21:06.935482-07:00,0.0,10.736992,10736.992 +23344,2025-03-09T22:21:17.682695-07:00,0.0,10.747213,10747.213 +23345,2025-03-09T22:21:28.413560-07:00,0.0,10.730865,10730.865 +23346,2025-03-09T22:21:39.151742-07:00,0.0,10.738182,10738.182 +23347,2025-03-09T22:21:49.883941-07:00,0.0,10.732199,10732.199 +23348,2025-03-09T22:22:00.617492-07:00,0.0,10.733551,10733.551 +23349,2025-03-09T22:22:11.355521-07:00,0.0,10.738029,10738.029 +23350,2025-03-09T22:22:22.093821-07:00,0.0,10.7383,10738.3 +23351,2025-03-09T22:22:32.834699-07:00,0.0,10.740878,10740.878 +23352,2025-03-09T22:22:43.575137-07:00,0.0,10.740438,10740.438 +23353,2025-03-09T22:22:54.310488-07:00,0.0,10.735351,10735.351 +23354,2025-03-09T22:23:05.049519-07:00,0.0,10.739031,10739.031 +23355,2025-03-09T22:23:15.785648-07:00,0.0,10.736129,10736.129 +23356,2025-03-09T22:23:26.529490-07:00,0.0,10.743842,10743.842 +23357,2025-03-09T22:23:37.258514-07:00,0.0,10.729024,10729.024 +23358,2025-03-09T22:23:48.002519-07:00,0.0,10.744005,10744.005 +23359,2025-03-09T22:23:58.733704-07:00,0.0,10.731185,10731.185 +23360,2025-03-09T22:24:09.472676-07:00,0.0,10.738972,10738.972 +23361,2025-03-09T22:24:20.212486-07:00,0.0,10.73981,10739.81 +23362,2025-03-09T22:24:30.944510-07:00,0.0,10.732024,10732.024 +23363,2025-03-09T22:24:41.682688-07:00,0.0,10.738178,10738.178 +23364,2025-03-09T22:24:52.427498-07:00,0.0,10.74481,10744.81 +23365,2025-03-09T22:25:03.159965-07:00,0.0,10.732467,10732.467 +23366,2025-03-09T22:25:13.900489-07:00,0.0,10.740524,10740.524 +23367,2025-03-09T22:25:24.638897-07:00,0.0,10.738408,10738.408 +23368,2025-03-09T22:25:35.370487-07:00,0.0,10.73159,10731.59 +23369,2025-03-09T22:25:46.116814-07:00,0.0,10.746327,10746.327 +23370,2025-03-09T22:25:56.850522-07:00,0.0,10.733708,10733.708 +23371,2025-03-09T22:26:07.580671-07:00,0.0,10.730149,10730.149 +23372,2025-03-09T22:26:18.318624-07:00,0.0,10.737953,10737.953 +23373,2025-03-09T22:26:29.065493-07:00,0.0,10.746869,10746.869 +23374,2025-03-09T22:26:39.799487-07:00,0.0,10.733994,10733.994 +23375,2025-03-09T22:26:50.539494-07:00,0.0,10.740007,10740.007 +23376,2025-03-09T22:27:01.270194-07:00,0.0,10.7307,10730.7 +23377,2025-03-09T22:27:12.012706-07:00,0.0,10.742512,10742.512 +23378,2025-03-09T22:27:22.741545-07:00,0.0,10.728839,10728.839 +23379,2025-03-09T22:27:33.477598-07:00,0.0,10.736053,10736.053 +23380,2025-03-09T22:27:44.214663-07:00,0.0,10.737065,10737.065 +23381,2025-03-09T22:27:54.958684-07:00,0.0,10.744021,10744.021 +23382,2025-03-09T22:28:05.695001-07:00,0.0,10.736317,10736.317 +23383,2025-03-09T22:28:16.431490-07:00,0.0,10.736489,10736.489 +23384,2025-03-09T22:28:27.161527-07:00,0.0,10.730037,10730.037 +23385,2025-03-09T22:28:37.899489-07:00,0.0,10.737962,10737.962 +23386,2025-03-09T22:28:48.643586-07:00,0.0,10.744097,10744.097 +23387,2025-03-09T22:28:59.381137-07:00,0.0,10.737551,10737.551 +23388,2025-03-09T22:29:10.108691-07:00,0.0,10.727554,10727.554 +23389,2025-03-09T22:29:20.846518-07:00,0.0,10.737827,10737.827 +23390,2025-03-09T22:29:31.596560-07:00,0.0,10.750042,10750.042 +23391,2025-03-09T22:29:42.329337-07:00,0.0,10.732777,10732.777 +23392,2025-03-09T22:29:53.069590-07:00,0.0,10.740253,10740.253 +23393,2025-03-09T22:30:03.808213-07:00,0.0,10.738623,10738.623 +23394,2025-03-09T22:30:14.539728-07:00,0.0,10.731515,10731.515 +23395,2025-03-09T22:30:25.274643-07:00,0.0,10.734915,10734.915 +23396,2025-03-09T22:30:36.010671-07:00,0.0,10.736028,10736.028 +23397,2025-03-09T22:30:46.746487-07:00,0.0,10.735816,10735.816 +23398,2025-03-09T22:30:57.490490-07:00,0.0,10.744003,10744.003 +23399,2025-03-09T22:31:08.224486-07:00,0.0,10.733996,10733.996 +23400,2025-03-09T22:31:18.958665-07:00,0.0,10.734179,10734.179 +23401,2025-03-09T22:31:29.704720-07:00,0.0,10.746055,10746.055 +23402,2025-03-09T22:31:40.437585-07:00,0.0,10.732865,10732.865 +23403,2025-03-09T22:31:51.179488-07:00,0.0,10.741903,10741.903 +23404,2025-03-09T22:32:01.911653-07:00,0.0,10.732165,10732.165 +23405,2025-03-09T22:32:12.643830-07:00,0.0,10.732177,10732.177 +23406,2025-03-09T22:32:23.380809-07:00,0.0,10.736979,10736.979 +23407,2025-03-09T22:32:34.113869-07:00,0.0,10.73306,10733.06 +23408,2025-03-09T22:32:44.850548-07:00,0.0,10.736679,10736.679 +23409,2025-03-09T22:32:55.585981-07:00,0.0,10.735433,10735.433 +23410,2025-03-09T22:33:06.331738-07:00,0.0,10.745757,10745.757 +23411,2025-03-09T22:33:17.059536-07:00,0.0,10.727798,10727.798 +23412,2025-03-09T22:33:27.801648-07:00,0.0,10.742112,10742.112 +23413,2025-03-09T22:33:38.535524-07:00,0.0,10.733876,10733.876 +23414,2025-03-09T22:33:49.269722-07:00,0.0,10.734198,10734.198 +23415,2025-03-09T22:34:00.010668-07:00,0.0,10.740946,10740.946 +23416,2025-03-09T22:34:10.739573-07:00,0.0,10.728905,10728.905 +23417,2025-03-09T22:34:21.474677-07:00,0.0,10.735104,10735.104 +23418,2025-03-09T22:34:32.217455-07:00,0.0,10.742778,10742.778 +23419,2025-03-09T22:34:42.951738-07:00,0.0,10.734283,10734.283 +23420,2025-03-09T22:34:53.689535-07:00,0.0,10.737797,10737.797 +23421,2025-03-09T22:35:04.422139-07:00,0.0,10.732604,10732.604 +23422,2025-03-09T22:35:15.162675-07:00,0.0,10.740536,10740.536 +23423,2025-03-09T22:35:25.894716-07:00,0.0,10.732041,10732.041 +23424,2025-03-09T22:35:36.634703-07:00,0.0,10.739987,10739.987 +23425,2025-03-09T22:35:47.366488-07:00,0.0,10.731785,10731.785 +23426,2025-03-09T22:35:58.102487-07:00,0.0,10.735999,10735.999 +23427,2025-03-09T22:36:08.841756-07:00,0.0,10.739269,10739.269 +23428,2025-03-09T22:36:19.572670-07:00,0.0,10.730914,10730.914 +23429,2025-03-09T22:36:30.304517-07:00,0.0,10.731847,10731.847 +23430,2025-03-09T22:36:41.038787-07:00,0.0,10.73427,10734.27 +23431,2025-03-09T22:36:51.784485-07:00,0.0,10.745698,10745.698 +23432,2025-03-09T22:37:02.523151-07:00,0.0,10.738666,10738.666 +23433,2025-03-09T22:37:13.261683-07:00,0.0,10.738532,10738.532 +23434,2025-03-09T22:37:23.986490-07:00,0.0,10.724807,10724.807 +23435,2025-03-09T22:37:34.730515-07:00,0.0,10.744025,10744.025 +23436,2025-03-09T22:37:45.459687-07:00,0.0,10.729172,10729.172 +23437,2025-03-09T22:37:56.197246-07:00,0.0,10.737559,10737.559 +23438,2025-03-09T22:38:06.936545-07:00,0.0,10.739299,10739.299 +23439,2025-03-09T22:38:17.669778-07:00,0.0,10.733233,10733.233 +23440,2025-03-09T22:38:28.399489-07:00,0.0,10.729711,10729.711 +23441,2025-03-09T22:38:39.132321-07:00,0.0,10.732832,10732.832 +23442,2025-03-09T22:38:49.862698-07:00,0.0,10.730377,10730.377 +23443,2025-03-09T22:39:00.600558-07:00,0.0,10.73786,10737.86 +23444,2025-03-09T22:39:11.334479-07:00,0.0,10.733921,10733.921 +23445,2025-03-09T22:39:22.061541-07:00,0.0,10.727062,10727.062 +23446,2025-03-09T22:39:32.797491-07:00,0.0,10.73595,10735.95 +23447,2025-03-09T22:39:43.534593-07:00,0.0,10.737102,10737.102 +23448,2025-03-09T22:39:54.265681-07:00,0.0,10.731088,10731.088 +23449,2025-03-09T22:40:04.993490-07:00,0.0,10.727809,10727.809 +23450,2025-03-09T22:40:15.724694-07:00,0.0,10.731204,10731.204 +23451,2025-03-09T22:40:26.466310-07:00,0.0,10.741616,10741.616 +23452,2025-03-09T22:40:37.196692-07:00,0.0,10.730382,10730.382 +23453,2025-03-09T22:40:47.926519-07:00,0.0,10.729827,10729.827 +23454,2025-03-09T22:40:58.661538-07:00,0.0,10.735019,10735.019 +23455,2025-03-09T22:41:09.399668-07:00,0.0,10.73813,10738.13 +23456,2025-03-09T22:41:20.123513-07:00,0.0,10.723845,10723.845 +23457,2025-03-09T22:41:30.860857-07:00,0.0,10.737344,10737.344 +23458,2025-03-09T22:41:41.598676-07:00,0.0,10.737819,10737.819 +23459,2025-03-09T22:41:52.323517-07:00,0.0,10.724841,10724.841 +23460,2025-03-09T22:42:03.060531-07:00,0.0,10.737014,10737.014 +23461,2025-03-09T22:42:13.799627-07:00,0.0,10.739096,10739.096 +23462,2025-03-09T22:42:24.529879-07:00,0.0,10.730252,10730.252 +23463,2025-03-09T22:42:35.256484-07:00,0.0,10.726605,10726.605 +23464,2025-03-09T22:42:45.993551-07:00,0.0,10.737067,10737.067 +23465,2025-03-09T22:42:56.728995-07:00,0.0,10.735444,10735.444 +23466,2025-03-09T22:43:07.453684-07:00,0.0,10.724689,10724.689 +23467,2025-03-09T22:43:18.186676-07:00,0.0,10.732992,10732.992 +23468,2025-03-09T22:43:28.926491-07:00,0.0,10.739815,10739.815 +23469,2025-03-09T22:43:39.655239-07:00,0.0,10.728748,10728.748 +23470,2025-03-09T22:43:50.385489-07:00,0.0,10.73025,10730.25 +23471,2025-03-09T22:44:01.118974-07:00,0.0,10.733485,10733.485 +23472,2025-03-09T22:44:11.843559-07:00,0.0,10.724585,10724.585 +23473,2025-03-09T22:44:22.582691-07:00,0.0,10.739132,10739.132 +23474,2025-03-09T22:44:33.316517-07:00,0.0,10.733826,10733.826 +23475,2025-03-09T22:44:44.047640-07:00,0.0,10.731123,10731.123 +23476,2025-03-09T22:44:54.776693-07:00,0.0,10.729053,10729.053 +23477,2025-03-09T22:45:05.505649-07:00,0.0,10.728956,10728.956 +23478,2025-03-09T22:45:16.231034-07:00,0.0,10.725385,10725.385 +23479,2025-03-09T22:45:26.970485-07:00,0.0,10.739451,10739.451 +23480,2025-03-09T22:45:37.701673-07:00,0.0,10.731188,10731.188 +23481,2025-03-09T22:45:48.428655-07:00,0.0,10.726982,10726.982 +23482,2025-03-09T22:45:59.168378-07:00,0.0,10.739723,10739.723 +23483,2025-03-09T22:46:09.903488-07:00,0.0,10.73511,10735.11 +23484,2025-03-09T22:46:20.627751-07:00,0.0,10.724263,10724.263 +23485,2025-03-09T22:46:31.360434-07:00,0.0,10.732683,10732.683 +23486,2025-03-09T22:46:42.092669-07:00,0.0,10.732235,10732.235 +23487,2025-03-09T22:46:52.831688-07:00,0.0,10.739019,10739.019 +23488,2025-03-09T22:47:03.564491-07:00,0.0,10.732803,10732.803 +23489,2025-03-09T22:47:14.291535-07:00,0.0,10.727044,10727.044 +23490,2025-03-09T22:47:25.022694-07:00,0.0,10.731159,10731.159 +23491,2025-03-09T22:47:35.755681-07:00,0.0,10.732987,10732.987 +23492,2025-03-09T22:47:46.490895-07:00,0.0,10.735214,10735.214 +23493,2025-03-09T22:47:57.224486-07:00,0.0,10.733591,10733.591 +23494,2025-03-09T22:48:07.954486-07:00,0.0,10.73,10730.0 +23495,2025-03-09T22:48:18.686761-07:00,0.0,10.732275,10732.275 +23496,2025-03-09T22:48:29.428299-07:00,0.0,10.741538,10741.538 +23497,2025-03-09T22:48:40.154496-07:00,0.0,10.726197,10726.197 +23498,2025-03-09T22:48:50.890976-07:00,0.0,10.73648,10736.48 +23499,2025-03-09T22:49:01.623671-07:00,0.0,10.732695,10732.695 +23500,2025-03-09T22:49:12.354489-07:00,0.0,10.730818,10730.818 +23501,2025-03-09T22:49:23.088557-07:00,0.0,10.734068,10734.068 +23502,2025-03-09T22:49:33.829642-07:00,0.0,10.741085,10741.085 +23503,2025-03-09T22:49:44.563740-07:00,0.0,10.734098,10734.098 +23504,2025-03-09T22:49:55.290486-07:00,0.0,10.726746,10726.746 +23505,2025-03-09T22:50:06.029780-07:00,0.0,10.739294,10739.294 +23506,2025-03-09T22:50:16.762674-07:00,0.0,10.732894,10732.894 +23507,2025-03-09T22:50:27.493486-07:00,0.0,10.730812,10730.812 +23508,2025-03-09T22:50:38.234486-07:00,0.0,10.741,10741.0 +23509,2025-03-09T22:50:48.966716-07:00,0.0,10.73223,10732.23 +23510,2025-03-09T22:50:59.701801-07:00,0.0,10.735085,10735.085 +23511,2025-03-09T22:51:10.441023-07:00,0.0,10.739222,10739.222 +23512,2025-03-09T22:51:21.173285-07:00,0.0,10.732262,10732.262 +23513,2025-03-09T22:51:31.901690-07:00,0.0,10.728405,10728.405 +23514,2025-03-09T22:51:42.641796-07:00,0.0,10.740106,10740.106 +23515,2025-03-09T22:51:53.371483-07:00,0.0,10.729687,10729.687 +23516,2025-03-09T22:52:04.099493-07:00,0.0,10.72801,10728.01 +23517,2025-03-09T22:52:14.835488-07:00,0.0,10.735995,10735.995 +23518,2025-03-09T22:52:25.577619-07:00,0.0,10.742131,10742.131 +23519,2025-03-09T22:52:36.301520-07:00,0.0,10.723901,10723.901 +23520,2025-03-09T22:52:47.043562-07:00,0.0,10.742042,10742.042 +23521,2025-03-09T22:52:57.799358-07:00,0.0,10.755796,10755.796 +23522,2025-03-09T22:53:08.530610-07:00,0.0,10.731252,10731.252 +23523,2025-03-09T22:53:19.267130-07:00,0.0,10.73652,10736.52 +23524,2025-03-09T22:53:29.993138-07:00,0.0,10.726008,10726.008 +23525,2025-03-09T22:53:40.729290-07:00,0.0,10.736152,10736.152 +23526,2025-03-09T22:53:51.468895-07:00,0.0,10.739605,10739.605 +23527,2025-03-09T22:54:02.206195-07:00,0.0,10.7373,10737.3 +23528,2025-03-09T22:54:12.934238-07:00,0.0,10.728043,10728.043 +23529,2025-03-09T22:54:23.670254-07:00,0.0,10.736016,10736.016 +23530,2025-03-09T22:54:34.397129-07:00,0.0,10.726875,10726.875 +23531,2025-03-09T22:54:45.134294-07:00,0.0,10.737165,10737.165 +23532,2025-03-09T22:54:55.863365-07:00,0.0,10.729071,10729.071 +23533,2025-03-09T22:55:06.608297-07:00,0.0,10.744932,10744.932 +23534,2025-03-09T22:55:17.334409-07:00,0.0,10.726112,10726.112 +23535,2025-03-09T22:55:28.061336-07:00,0.0,10.726927,10726.927 +23536,2025-03-09T22:55:38.794310-07:00,0.0,10.732974,10732.974 +23537,2025-03-09T22:55:49.528858-07:00,0.0,10.734548,10734.548 +23538,2025-03-09T22:56:00.256195-07:00,0.0,10.727337,10727.337 +23539,2025-03-09T22:56:10.991506-07:00,0.0,10.735311,10735.311 +23540,2025-03-09T22:56:21.714205-07:00,0.0,10.722699,10722.699 +23541,2025-03-09T22:56:32.448349-07:00,0.0,10.734144,10734.144 +23542,2025-03-09T22:56:43.182062-07:00,0.0,10.733713,10733.713 +23543,2025-03-09T22:56:53.905129-07:00,0.0,10.723067,10723.067 +23544,2025-03-09T22:57:04.640133-07:00,0.0,10.735004,10735.004 +23545,2025-03-09T22:57:15.380133-07:00,0.0,10.74,10740.0 +23546,2025-03-09T22:57:26.104132-07:00,0.0,10.723999,10723.999 +23547,2025-03-09T22:57:36.842341-07:00,0.0,10.738209,10738.209 +23548,2025-03-09T22:57:47.565956-07:00,0.0,10.723615,10723.615 +23549,2025-03-09T22:57:58.304301-07:00,0.0,10.738345,10738.345 +23550,2025-03-09T22:58:09.040159-07:00,0.0,10.735858,10735.858 +23551,2025-03-09T22:58:19.763133-07:00,0.0,10.722974,10722.974 +23552,2025-03-09T22:58:30.506369-07:00,0.0,10.743236,10743.236 +23553,2025-03-09T22:58:41.236244-07:00,0.0,10.729875,10729.875 +23554,2025-03-09T22:58:51.967132-07:00,0.0,10.730888,10730.888 +23555,2025-03-09T22:59:02.703396-07:00,0.0,10.736264,10736.264 +23556,2025-03-09T22:59:13.437436-07:00,0.0,10.73404,10734.04 +23557,2025-03-09T22:59:24.170498-07:00,0.0,10.733062,10733.062 +23558,2025-03-09T22:59:34.901129-07:00,0.0,10.730631,10730.631 +23559,2025-03-09T22:59:45.633306-07:00,0.0,10.732177,10732.177 +23560,2025-03-09T22:59:56.367320-07:00,0.0,10.734014,10734.014 +23561,2025-03-09T23:00:07.103133-07:00,0.0,10.735813,10735.813 +23562,2025-03-09T23:00:17.830549-07:00,0.0,10.727416,10727.416 +23563,2025-03-09T23:00:28.570317-07:00,0.0,10.739768,10739.768 +23564,2025-03-09T23:00:39.302326-07:00,0.0,10.732009,10732.009 +23565,2025-03-09T23:00:50.045133-07:00,0.0,10.742807,10742.807 +23566,2025-03-09T23:01:00.782127-07:00,0.0,10.736994,10736.994 +23567,2025-03-09T23:01:11.516157-07:00,0.0,10.73403,10734.03 +23568,2025-03-09T23:01:22.244365-07:00,0.0,10.728208,10728.208 +23569,2025-03-09T23:01:32.986135-07:00,0.0,10.74177,10741.77 +23570,2025-03-09T23:01:43.721449-07:00,0.0,10.735314,10735.314 +23571,2025-03-09T23:01:54.450781-07:00,0.0,10.729332,10729.332 +23572,2025-03-09T23:02:05.191554-07:00,0.0,10.740773,10740.773 +23573,2025-03-09T23:02:15.927129-07:00,0.0,10.735575,10735.575 +23574,2025-03-09T23:02:26.655237-07:00,0.0,10.728108,10728.108 +23575,2025-03-09T23:02:37.391302-07:00,0.0,10.736065,10736.065 +23576,2025-03-09T23:02:48.130315-07:00,0.0,10.739013,10739.013 +23577,2025-03-09T23:02:58.858338-07:00,0.0,10.728023,10728.023 +23578,2025-03-09T23:03:09.594135-07:00,0.0,10.735797,10735.797 +23579,2025-03-09T23:03:20.332390-07:00,0.0,10.738255,10738.255 +23580,2025-03-09T23:03:30.651637-07:00,0.0,10.319247,10319.247 +23581,2025-03-09T23:03:31.064131-07:00,0.0,0.412494,412.494 +23582,2025-03-09T23:03:41.802136-07:00,0.0,10.738005,10738.005 +23583,2025-03-09T23:03:52.541130-07:00,0.0,10.738994,10738.994 +23584,2025-03-09T23:04:03.276135-07:00,0.0,10.735005,10735.005 +23585,2025-03-09T23:04:14.008390-07:00,0.0,10.732255,10732.255 +23586,2025-03-09T23:04:24.746134-07:00,0.0,10.737744,10737.744 +23587,2025-03-09T23:04:35.489126-07:00,0.0,10.742992,10742.992 +23588,2025-03-09T23:04:46.219135-07:00,0.0,10.730009,10730.009 +23589,2025-03-09T23:04:56.958313-07:00,0.0,10.739178,10739.178 +23590,2025-03-09T23:05:18.427328-07:00,0.0,21.469015,21469.015 +23591,2025-03-09T23:05:29.164881-07:00,0.0,10.737553,10737.553 +23592,2025-03-09T23:05:39.904601-07:00,0.0,10.73972,10739.72 +23593,2025-03-09T23:05:50.637234-07:00,0.0,10.732633,10732.633 +23594,2025-03-09T23:06:01.363172-07:00,0.0,10.725938,10725.938 +23595,2025-03-09T23:06:12.103197-07:00,0.0,10.740025,10740.025 +23596,2025-03-09T23:06:22.833587-07:00,0.0,10.73039,10730.39 +23597,2025-03-09T23:06:33.572097-07:00,0.0,10.73851,10738.51 +23598,2025-03-09T23:06:44.305159-07:00,0.0,10.733062,10733.062 +23599,2025-03-09T23:06:55.038137-07:00,0.0,10.732978,10732.978 +23600,2025-03-09T23:07:05.770997-07:00,0.0,10.73286,10732.86 +23601,2025-03-09T23:07:16.507177-07:00,0.0,10.73618,10736.18 +23602,2025-03-09T23:07:27.237125-07:00,0.0,10.729948,10729.948 +23603,2025-03-09T23:07:37.977129-07:00,0.0,10.740004,10740.004 +23604,2025-03-09T23:07:48.706571-07:00,0.0,10.729442,10729.442 +23605,2025-03-09T23:07:59.449523-07:00,0.0,10.742952,10742.952 +23606,2025-03-09T23:08:10.183520-07:00,0.0,10.733997,10733.997 +23607,2025-03-09T23:08:20.919133-07:00,0.0,10.735613,10735.613 +23608,2025-03-09T23:08:31.657449-07:00,0.0,10.738316,10738.316 +23609,2025-03-09T23:08:42.389330-07:00,0.0,10.731881,10731.881 +23610,2025-03-09T23:08:53.123341-07:00,0.0,10.734011,10734.011 +23611,2025-03-09T23:09:03.855132-07:00,0.0,10.731791,10731.791 +23612,2025-03-09T23:09:14.590553-07:00,0.0,10.735421,10735.421 +23613,2025-03-09T23:09:25.319335-07:00,0.0,10.728782,10728.782 +23614,2025-03-09T23:09:36.060131-07:00,0.0,10.740796,10740.796 +23615,2025-03-09T23:09:46.793342-07:00,0.0,10.733211,10733.211 +23616,2025-03-09T23:09:57.523302-07:00,0.0,10.72996,10729.96 +23617,2025-03-09T23:10:08.262156-07:00,0.0,10.738854,10738.854 +23618,2025-03-09T23:10:18.996375-07:00,0.0,10.734219,10734.219 +23619,2025-03-09T23:10:29.727340-07:00,0.0,10.730965,10730.965 +23620,2025-03-09T23:10:40.469305-07:00,0.0,10.741965,10741.965 +23621,2025-03-09T23:10:51.206455-07:00,0.0,10.73715,10737.15 +23622,2025-03-09T23:11:01.934125-07:00,0.0,10.72767,10727.67 +23623,2025-03-09T23:11:12.668133-07:00,0.0,10.734008,10734.008 +23624,2025-03-09T23:11:23.411133-07:00,0.0,10.743,10743.0 +23625,2025-03-09T23:11:34.140160-07:00,0.0,10.729027,10729.027 +23626,2025-03-09T23:11:44.887216-07:00,0.0,10.747056,10747.056 +23627,2025-03-09T23:11:45.898943-07:00,0.0,1.011727,1011.727 +23628,2025-03-09T23:11:55.621133-07:00,0.0,9.72219,9722.19 +23629,2025-03-09T23:12:06.357132-07:00,0.0,10.735999,10735.999 +23630,2025-03-09T23:12:17.084542-07:00,0.0,10.72741,10727.41 +23631,2025-03-09T23:12:27.827270-07:00,0.0,10.742728,10742.728 +23632,2025-03-09T23:12:38.561128-07:00,0.0,10.733858,10733.858 +23633,2025-03-09T23:12:49.294434-07:00,0.0,10.733306,10733.306 +23634,2025-03-09T23:13:00.031301-07:00,0.0,10.736867,10736.867 +23635,2025-03-09T23:13:10.764462-07:00,0.0,10.733161,10733.161 +23636,2025-03-09T23:13:21.504169-07:00,0.0,10.739707,10739.707 +23637,2025-03-09T23:13:32.232651-07:00,0.0,10.728482,10728.482 +23638,2025-03-09T23:13:42.973337-07:00,0.0,10.740686,10740.686 +23639,2025-03-09T23:13:53.699328-07:00,0.0,10.725991,10725.991 +23640,2025-03-09T23:14:04.429190-07:00,0.0,10.729862,10729.862 +23641,2025-03-09T23:14:15.168135-07:00,0.0,10.738945,10738.945 +23642,2025-03-09T23:14:25.900108-07:00,0.0,10.731973,10731.973 +23643,2025-03-09T23:14:36.639130-07:00,0.0,10.739022,10739.022 +23644,2025-03-09T23:14:47.372705-07:00,0.0,10.733575,10733.575 +23645,2025-03-09T23:14:58.106365-07:00,0.0,10.73366,10733.66 +23646,2025-03-09T23:15:08.842309-07:00,0.0,10.735944,10735.944 +23647,2025-03-09T23:15:19.581130-07:00,0.0,10.738821,10738.821 +23648,2025-03-09T23:15:30.306129-07:00,0.0,10.724999,10724.999 +23649,2025-03-09T23:15:41.042346-07:00,0.0,10.736217,10736.217 +23650,2025-03-09T23:15:51.777325-07:00,0.0,10.734979,10734.979 +23651,2025-03-09T23:16:02.517134-07:00,0.0,10.739809,10739.809 +23652,2025-03-09T23:16:13.247284-07:00,0.0,10.73015,10730.15 +23653,2025-03-09T23:16:23.980313-07:00,0.0,10.733029,10733.029 +23654,2025-03-09T23:16:34.717029-07:00,0.0,10.736716,10736.716 +23655,2025-03-09T23:16:45.447162-07:00,0.0,10.730133,10730.133 +23656,2025-03-09T23:16:56.184290-07:00,0.0,10.737128,10737.128 +23657,2025-03-09T23:17:06.920128-07:00,0.0,10.735838,10735.838 +23658,2025-03-09T23:17:17.658308-07:00,0.0,10.73818,10738.18 +23659,2025-03-09T23:17:28.400159-07:00,0.0,10.741851,10741.851 +23660,2025-03-09T23:17:39.137701-07:00,0.0,10.737542,10737.542 +23661,2025-03-09T23:17:49.873931-07:00,0.0,10.73623,10736.23 +23662,2025-03-09T23:18:00.604255-07:00,0.0,10.730324,10730.324 +23663,2025-03-09T23:18:11.343415-07:00,0.0,10.73916,10739.16 +23664,2025-03-09T23:18:22.073129-07:00,0.0,10.729714,10729.714 +23665,2025-03-09T23:18:32.812344-07:00,0.0,10.739215,10739.215 +23666,2025-03-09T23:18:43.548203-07:00,0.0,10.735859,10735.859 +23667,2025-03-09T23:18:54.279340-07:00,0.0,10.731137,10731.137 +23668,2025-03-09T23:19:05.012129-07:00,0.0,10.732789,10732.789 +23669,2025-03-09T23:19:15.737370-07:00,0.0,10.725241,10725.241 +23670,2025-03-09T23:19:26.472803-07:00,0.0,10.735433,10735.433 +23671,2025-03-09T23:19:37.213130-07:00,0.0,10.740327,10740.327 +23672,2025-03-09T23:19:47.947229-07:00,0.0,10.734099,10734.099 +23673,2025-03-09T23:19:58.675125-07:00,0.0,10.727896,10727.896 +23674,2025-03-09T23:20:09.412052-07:00,0.0,10.736927,10736.927 +23675,2025-03-09T23:20:20.140133-07:00,0.0,10.728081,10728.081 +23676,2025-03-09T23:20:30.866912-07:00,0.0,10.726779,10726.779 +23677,2025-03-09T23:20:41.603999-07:00,0.0,10.737087,10737.087 +23678,2025-03-09T23:20:52.338328-07:00,0.0,10.734329,10734.329 +23679,2025-03-09T23:21:03.063136-07:00,0.0,10.724808,10724.808 +23680,2025-03-09T23:21:13.801299-07:00,0.0,10.738163,10738.163 +23681,2025-03-09T23:21:24.532127-07:00,0.0,10.730828,10730.828 +23682,2025-03-09T23:21:35.253313-07:00,0.0,10.721186,10721.186 +23683,2025-03-09T23:21:45.985901-07:00,0.0,10.732588,10732.588 +23684,2025-03-09T23:21:56.721193-07:00,0.0,10.735292,10735.292 +23685,2025-03-09T23:22:07.448225-07:00,0.0,10.727032,10727.032 +23686,2025-03-09T23:22:18.178383-07:00,0.0,10.730158,10730.158 +23687,2025-03-09T23:22:28.909131-07:00,0.0,10.730748,10730.748 +23688,2025-03-09T23:22:39.648302-07:00,0.0,10.739171,10739.171 +23689,2025-03-09T23:22:50.379357-07:00,0.0,10.731055,10731.055 +23690,2025-03-09T23:23:01.110130-07:00,0.0,10.730773,10730.773 +23691,2025-03-09T23:23:11.842342-07:00,0.0,10.732212,10732.212 +23692,2025-03-09T23:23:22.579601-07:00,0.0,10.737259,10737.259 +23693,2025-03-09T23:23:33.304154-07:00,0.0,10.724553,10724.553 +23694,2025-03-09T23:23:44.043130-07:00,0.0,10.738976,10738.976 +23695,2025-03-09T23:23:54.774129-07:00,0.0,10.730999,10730.999 +23696,2025-03-09T23:24:05.502511-07:00,0.0,10.728382,10728.382 +23697,2025-03-09T23:24:16.235311-07:00,0.0,10.7328,10732.8 +23698,2025-03-09T23:24:26.960132-07:00,0.0,10.724821,10724.821 +23699,2025-03-09T23:24:37.693357-07:00,0.0,10.733225,10733.225 +23700,2025-03-09T23:24:46.356441-07:00,0.0,8.663084,8663.084 +23701,2025-03-09T23:24:48.429131-07:00,0.0,2.07269,2072.69 +23702,2025-03-09T23:24:59.159202-07:00,0.0,10.730071,10730.071 +23703,2025-03-09T23:25:09.891203-07:00,0.0,10.732001,10732.001 +23704,2025-03-09T23:25:20.624328-07:00,0.0,10.733125,10733.125 +23705,2025-03-09T23:25:31.361129-07:00,0.0,10.736801,10736.801 +23706,2025-03-09T23:25:42.084250-07:00,0.0,10.723121,10723.121 +23707,2025-03-09T23:25:52.826345-07:00,0.0,10.742095,10742.095 +23708,2025-03-09T23:26:03.555132-07:00,0.0,10.728787,10728.787 +23709,2025-03-09T23:26:14.284544-07:00,0.0,10.729412,10729.412 +23710,2025-03-09T23:26:25.026313-07:00,0.0,10.741769,10741.769 +23711,2025-03-09T23:26:35.752133-07:00,0.0,10.72582,10725.82 +23712,2025-03-09T23:26:46.492129-07:00,0.0,10.739996,10739.996 +23713,2025-03-09T23:26:57.218134-07:00,0.0,10.726005,10726.005 +23714,2025-03-09T23:27:07.954339-07:00,0.0,10.736205,10736.205 +23715,2025-03-09T23:27:18.681653-07:00,0.0,10.727314,10727.314 +23716,2025-03-09T23:27:29.419717-07:00,0.0,10.738064,10738.064 +23717,2025-03-09T23:27:40.148404-07:00,0.0,10.728687,10728.687 +23718,2025-03-09T23:27:50.873160-07:00,0.0,10.724756,10724.756 +23719,2025-03-09T23:28:01.611127-07:00,0.0,10.737967,10737.967 +23720,2025-03-09T23:28:12.343287-07:00,0.0,10.73216,10732.16 +23721,2025-03-09T23:28:23.078378-07:00,0.0,10.735091,10735.091 +23722,2025-03-09T23:28:33.802135-07:00,0.0,10.723757,10723.757 +23723,2025-03-09T23:28:44.538322-07:00,0.0,10.736187,10736.187 +23724,2025-03-09T23:28:55.269927-07:00,0.0,10.731605,10731.605 +23725,2025-03-09T23:29:06.001130-07:00,0.0,10.731203,10731.203 +23726,2025-03-09T23:29:16.731349-07:00,0.0,10.730219,10730.219 +23727,2025-03-09T23:29:27.464324-07:00,0.0,10.732975,10732.975 +23728,2025-03-09T23:29:38.202175-07:00,0.0,10.737851,10737.851 +23729,2025-03-09T23:29:48.936126-07:00,0.0,10.733951,10733.951 +23730,2025-03-09T23:29:59.671345-07:00,0.0,10.735219,10735.219 +23731,2025-03-09T23:30:10.403232-07:00,0.0,10.731887,10731.887 +23732,2025-03-09T23:30:21.134130-07:00,0.0,10.730898,10730.898 +23733,2025-03-09T23:30:31.865131-07:00,0.0,10.731001,10731.001 +23734,2025-03-09T23:30:42.597317-07:00,0.0,10.732186,10732.186 +23735,2025-03-09T23:30:53.330133-07:00,0.0,10.732816,10732.816 +23736,2025-03-09T23:31:04.070160-07:00,0.0,10.740027,10740.027 +23737,2025-03-09T23:31:14.808351-07:00,0.0,10.738191,10738.191 +23738,2025-03-09T23:31:25.533001-07:00,0.0,10.72465,10724.65 +23739,2025-03-09T23:31:36.267163-07:00,0.0,10.734162,10734.162 +23740,2025-03-09T23:31:47.002209-07:00,0.0,10.735046,10735.046 +23741,2025-03-09T23:31:57.735147-07:00,0.0,10.732938,10732.938 +23742,2025-03-09T23:32:08.478323-07:00,0.0,10.743176,10743.176 +23743,2025-03-09T23:32:19.202316-07:00,0.0,10.723993,10723.993 +23744,2025-03-09T23:32:29.937364-07:00,0.0,10.735048,10735.048 +23745,2025-03-09T23:32:40.669342-07:00,0.0,10.731978,10731.978 +23746,2025-03-09T23:32:51.404896-07:00,0.0,10.735554,10735.554 +23747,2025-03-09T23:33:02.136125-07:00,0.0,10.731229,10731.229 +23748,2025-03-09T23:33:12.870189-07:00,0.0,10.734064,10734.064 +23749,2025-03-09T23:33:23.605321-07:00,0.0,10.735132,10735.132 +23750,2025-03-09T23:33:34.341132-07:00,0.0,10.735811,10735.811 +23751,2025-03-09T23:33:45.068378-07:00,0.0,10.727246,10727.246 +23752,2025-03-09T23:33:55.804351-07:00,0.0,10.735973,10735.973 +23753,2025-03-09T23:34:06.540315-07:00,0.0,10.735964,10735.964 +23754,2025-03-09T23:34:17.275129-07:00,0.0,10.734814,10734.814 +23755,2025-03-09T23:34:28.007132-07:00,0.0,10.732003,10732.003 +23756,2025-03-09T23:34:38.737306-07:00,0.0,10.730174,10730.174 +23757,2025-03-09T23:34:49.473442-07:00,0.0,10.736136,10736.136 +23758,2025-03-09T23:35:00.207178-07:00,0.0,10.733736,10733.736 +23759,2025-03-09T23:35:10.937310-07:00,0.0,10.730132,10730.132 +23760,2025-03-09T23:35:21.668945-07:00,0.0,10.731635,10731.635 +23761,2025-03-09T23:35:32.402194-07:00,0.0,10.733249,10733.249 +23762,2025-03-09T23:35:43.144132-07:00,0.0,10.741938,10741.938 +23763,2025-03-09T23:35:53.876132-07:00,0.0,10.732,10732.0 +23764,2025-03-09T23:36:04.604222-07:00,0.0,10.72809,10728.09 +23765,2025-03-09T23:36:15.330357-07:00,0.0,10.726135,10726.135 +23766,2025-03-09T23:36:26.066366-07:00,0.0,10.736009,10736.009 +23767,2025-03-09T23:36:36.805308-07:00,0.0,10.738942,10738.942 +23768,2025-03-09T23:36:47.537130-07:00,0.0,10.731822,10731.822 +23769,2025-03-09T23:36:58.265157-07:00,0.0,10.728027,10728.027 +23770,2025-03-09T23:37:09.006127-07:00,0.0,10.74097,10740.97 +23771,2025-03-09T23:37:19.741088-07:00,0.0,10.734961,10734.961 +23772,2025-03-09T23:37:30.481457-07:00,0.0,10.740369,10740.369 +23773,2025-03-09T23:37:41.215334-07:00,0.0,10.733877,10733.877 +23774,2025-03-09T23:37:49.307666-07:00,0.0,8.092332,8092.332 +23775,2025-03-09T23:37:51.944830-07:00,0.0,2.637164,2637.164 +23776,2025-03-09T23:38:02.682438-07:00,0.0,10.737608,10737.608 +23777,2025-03-09T23:38:13.410201-07:00,0.0,10.727763,10727.763 +23778,2025-03-09T23:38:24.145131-07:00,0.0,10.73493,10734.93 +23779,2025-03-09T23:38:34.882365-07:00,0.0,10.737234,10737.234 +23780,2025-03-09T23:38:45.621325-07:00,0.0,10.73896,10738.96 +23781,2025-03-09T23:38:56.350353-07:00,0.0,10.729028,10729.028 +23782,2025-03-09T23:39:07.080334-07:00,0.0,10.729981,10729.981 +23783,2025-03-09T23:39:17.813317-07:00,0.0,10.732983,10732.983 +23784,2025-03-09T23:39:28.553284-07:00,0.0,10.739967,10739.967 +23785,2025-03-09T23:39:39.281236-07:00,0.0,10.727952,10727.952 +23786,2025-03-09T23:39:50.018125-07:00,0.0,10.736889,10736.889 +23787,2025-03-09T23:40:00.751374-07:00,0.0,10.733249,10733.249 +23788,2025-03-09T23:40:11.481339-07:00,0.0,10.729965,10729.965 +23789,2025-03-09T23:40:22.213139-07:00,0.0,10.7318,10731.8 +23790,2025-03-09T23:40:32.945313-07:00,0.0,10.732174,10732.174 +23791,2025-03-09T23:40:43.684259-07:00,0.0,10.738946,10738.946 +23792,2025-03-09T23:40:54.417132-07:00,0.0,10.732873,10732.873 +23793,2025-03-09T23:41:05.152156-07:00,0.0,10.735024,10735.024 +23794,2025-03-09T23:41:15.886322-07:00,0.0,10.734166,10734.166 +23795,2025-03-09T23:41:26.621197-07:00,0.0,10.734875,10734.875 +23796,2025-03-09T23:41:37.341746-07:00,0.0,10.720549,10720.549 +23797,2025-03-09T23:41:48.072304-07:00,0.0,10.730558,10730.558 +23798,2025-03-09T23:41:58.807190-07:00,0.0,10.734886,10734.886 +23799,2025-03-09T23:42:09.537278-07:00,0.0,10.730088,10730.088 +23800,2025-03-09T23:42:20.266525-07:00,0.0,10.729247,10729.247 +23801,2025-03-09T23:42:31.003219-07:00,0.0,10.736694,10736.694 +23802,2025-03-09T23:42:41.728371-07:00,0.0,10.725152,10725.152 +23803,2025-03-09T23:42:52.457359-07:00,0.0,10.728988,10728.988 +23804,2025-03-09T23:43:03.190132-07:00,0.0,10.732773,10732.773 +23805,2025-03-09T23:43:13.923340-07:00,0.0,10.733208,10733.208 +23806,2025-03-09T23:43:24.649343-07:00,0.0,10.726003,10726.003 +23807,2025-03-09T23:43:35.382133-07:00,0.0,10.73279,10732.79 +23808,2025-03-09T23:43:46.113131-07:00,0.0,10.730998,10730.998 +23809,2025-03-09T23:43:56.837317-07:00,0.0,10.724186,10724.186 +23810,2025-03-09T23:44:07.573436-07:00,0.0,10.736119,10736.119 +23811,2025-03-09T23:44:18.297132-07:00,0.0,10.723696,10723.696 +23812,2025-03-09T23:44:29.028322-07:00,0.0,10.73119,10731.19 +23813,2025-03-09T23:44:39.756345-07:00,0.0,10.728023,10728.023 +23814,2025-03-09T23:44:50.486314-07:00,0.0,10.729969,10729.969 +23815,2025-03-09T23:45:01.221316-07:00,0.0,10.735002,10735.002 +23816,2025-03-09T23:45:11.952161-07:00,0.0,10.730845,10730.845 +23817,2025-03-09T23:45:22.678129-07:00,0.0,10.725968,10725.968 +23818,2025-03-09T23:45:33.418284-07:00,0.0,10.740155,10740.155 +23819,2025-03-09T23:45:44.149192-07:00,0.0,10.730908,10730.908 +23820,2025-03-09T23:45:54.875130-07:00,0.0,10.725938,10725.938 +23821,2025-03-09T23:46:05.604304-07:00,0.0,10.729174,10729.174 +23822,2025-03-09T23:46:16.337246-07:00,0.0,10.732942,10732.942 +23823,2025-03-09T23:46:27.063347-07:00,0.0,10.726101,10726.101 +23824,2025-03-09T23:46:37.793330-07:00,0.0,10.729983,10729.983 +23825,2025-03-09T23:46:48.520130-07:00,0.0,10.7268,10726.8 +23826,2025-03-09T23:46:59.259224-07:00,0.0,10.739094,10739.094 +23827,2025-03-09T23:47:09.980836-07:00,0.0,10.721612,10721.612 +23828,2025-03-09T23:47:20.717433-07:00,0.0,10.736597,10736.597 +23829,2025-03-09T23:47:31.441147-07:00,0.0,10.723714,10723.714 +23830,2025-03-09T23:47:42.173908-07:00,0.0,10.732761,10732.761 +23831,2025-03-09T23:47:52.900131-07:00,0.0,10.726223,10726.223 +23832,2025-03-09T23:48:03.638335-07:00,0.0,10.738204,10738.204 +23833,2025-03-09T23:48:14.369305-07:00,0.0,10.73097,10730.97 +23834,2025-03-09T23:48:25.095130-07:00,0.0,10.725825,10725.825 +23835,2025-03-09T23:48:35.827134-07:00,0.0,10.732004,10732.004 +23836,2025-03-09T23:48:46.563271-07:00,0.0,10.736137,10736.137 +23837,2025-03-09T23:48:57.287135-07:00,0.0,10.723864,10723.864 +23838,2025-03-09T23:49:08.013586-07:00,0.0,10.726451,10726.451 +23839,2025-03-09T23:49:18.746953-07:00,0.0,10.733367,10733.367 +23840,2025-03-09T23:49:29.472135-07:00,0.0,10.725182,10725.182 +23841,2025-03-09T23:49:40.209172-07:00,0.0,10.737037,10737.037 +23842,2025-03-09T23:49:50.934158-07:00,0.0,10.724986,10724.986 +23843,2025-03-09T23:50:01.667236-07:00,0.0,10.733078,10733.078 +23844,2025-03-09T23:50:12.394343-07:00,0.0,10.727107,10727.107 +23845,2025-03-09T23:50:23.123133-07:00,0.0,10.72879,10728.79 +23846,2025-03-09T23:50:33.857130-07:00,0.0,10.733997,10733.997 +23847,2025-03-09T23:50:44.584386-07:00,0.0,10.727256,10727.256 +23848,2025-03-09T23:50:55.315592-07:00,0.0,10.731206,10731.206 +23849,2025-03-09T23:51:06.051132-07:00,0.0,10.73554,10735.54 +23850,2025-03-09T23:51:16.781535-07:00,0.0,10.730403,10730.403 +23851,2025-03-09T23:51:27.511572-07:00,0.0,10.730037,10730.037 +23852,2025-03-09T23:51:38.243300-07:00,0.0,10.731728,10731.728 +23853,2025-03-09T23:51:48.968182-07:00,0.0,10.724882,10724.882 +23854,2025-03-09T23:51:59.699153-07:00,0.0,10.730971,10730.971 +23855,2025-03-09T23:52:10.427344-07:00,0.0,10.728191,10728.191 +23856,2025-03-09T23:52:21.151315-07:00,0.0,10.723971,10723.971 +23857,2025-03-09T23:52:31.890339-07:00,0.0,10.739024,10739.024 +23858,2025-03-09T23:52:42.609133-07:00,0.0,10.718794,10718.794 +23859,2025-03-09T23:52:53.346222-07:00,0.0,10.737089,10737.089 +23860,2025-03-09T23:53:04.103333-07:00,0.0,10.757111,10757.111 +23861,2025-03-09T23:53:14.834282-07:00,0.0,10.730949,10730.949 +23862,2025-03-09T23:53:25.562023-07:00,0.0,10.727741,10727.741 +23863,2025-03-09T23:53:36.295101-07:00,0.0,10.733078,10733.078 +23864,2025-03-09T23:53:47.024196-07:00,0.0,10.729095,10729.095 +23865,2025-03-09T23:53:57.750173-07:00,0.0,10.725977,10725.977 +23866,2025-03-09T23:54:08.480105-07:00,0.0,10.729932,10729.932 +23867,2025-03-09T23:54:19.215507-07:00,0.0,10.735402,10735.402 +23868,2025-03-09T23:54:29.946669-07:00,0.0,10.731162,10731.162 +23869,2025-03-09T23:54:40.674104-07:00,0.0,10.727435,10727.435 +23870,2025-03-09T23:54:51.403173-07:00,0.0,10.729069,10729.069 +23871,2025-03-09T23:55:02.134125-07:00,0.0,10.730952,10730.952 +23872,2025-03-09T23:55:12.860325-07:00,0.0,10.7262,10726.2 +23873,2025-03-09T23:55:23.593284-07:00,0.0,10.732959,10732.959 +23874,2025-03-09T23:55:34.321104-07:00,0.0,10.72782,10727.82 +23875,2025-03-09T23:55:45.050851-07:00,0.0,10.729747,10729.747 +23876,2025-03-09T23:55:55.789104-07:00,0.0,10.738253,10738.253 +23877,2025-03-09T23:56:06.523293-07:00,0.0,10.734189,10734.189 +23878,2025-03-09T23:56:17.253146-07:00,0.0,10.729853,10729.853 +23879,2025-03-09T23:56:27.984257-07:00,0.0,10.731111,10731.111 +23880,2025-03-09T23:56:38.708100-07:00,0.0,10.723843,10723.843 +23881,2025-03-09T23:56:49.445302-07:00,0.0,10.737202,10737.202 +23882,2025-03-09T23:57:00.177100-07:00,0.0,10.731798,10731.798 +23883,2025-03-09T23:57:10.908323-07:00,0.0,10.731223,10731.223 +23884,2025-03-09T23:57:21.637097-07:00,0.0,10.728774,10728.774 +23885,2025-03-09T23:57:32.367310-07:00,0.0,10.730213,10730.213 +23886,2025-03-09T23:57:43.098497-07:00,0.0,10.731187,10731.187 +23887,2025-03-09T23:57:53.826170-07:00,0.0,10.727673,10727.673 +23888,2025-03-09T23:58:04.559132-07:00,0.0,10.732962,10732.962 +23889,2025-03-09T23:58:15.288279-07:00,0.0,10.729147,10729.147 +23890,2025-03-09T23:58:26.011663-07:00,0.0,10.723384,10723.384 +23891,2025-03-09T23:58:36.741530-07:00,0.0,10.729867,10729.867 +23892,2025-03-09T23:58:47.472101-07:00,0.0,10.730571,10730.571 +23893,2025-03-09T23:58:58.203103-07:00,0.0,10.731002,10731.002 +23894,2025-03-09T23:59:08.935103-07:00,0.0,10.732,10732.0 +23895,2025-03-09T23:59:19.666421-07:00,0.0,10.731318,10731.318 +23896,2025-03-09T23:59:30.401282-07:00,0.0,10.734861,10734.861 +23897,2025-03-09T23:59:41.127285-07:00,0.0,10.726003,10726.003 +23898,2025-03-09T23:59:51.864516-07:00,0.0,10.737231,10737.231 +23899,2025-03-10T00:00:02.596247-07:00,0.0,10.731731,10731.731 +23900,2025-03-10T00:00:13.325103-07:00,0.0,10.728856,10728.856 +23901,2025-03-10T00:00:24.050697-07:00,0.0,10.725594,10725.594 +23902,2025-03-10T00:00:34.788103-07:00,0.0,10.737406,10737.406 +23903,2025-03-10T00:00:45.516104-07:00,0.0,10.728001,10728.001 +23904,2025-03-10T00:00:56.245463-07:00,0.0,10.729359,10729.359 +23905,2025-03-10T00:01:06.978210-07:00,0.0,10.732747,10732.747 +23906,2025-03-10T00:01:17.714101-07:00,0.0,10.735891,10735.891 +23907,2025-03-10T00:01:28.448108-07:00,0.0,10.734007,10734.007 +23908,2025-03-10T00:01:39.178554-07:00,0.0,10.730446,10730.446 +23909,2025-03-10T00:01:49.905097-07:00,0.0,10.726543,10726.543 +23910,2025-03-10T00:02:00.648578-07:00,0.0,10.743481,10743.481 +23911,2025-03-10T00:02:11.377268-07:00,0.0,10.72869,10728.69 +23912,2025-03-10T00:02:22.108356-07:00,0.0,10.731088,10731.088 +23913,2025-03-10T00:02:32.844096-07:00,0.0,10.73574,10735.74 +23914,2025-03-10T00:02:43.571279-07:00,0.0,10.727183,10727.183 +23915,2025-03-10T00:02:54.303393-07:00,0.0,10.732114,10732.114 +23916,2025-03-10T00:03:05.039103-07:00,0.0,10.73571,10735.71 +23917,2025-03-10T00:03:15.773513-07:00,0.0,10.73441,10734.41 +23918,2025-03-10T00:03:26.500948-07:00,0.0,10.727435,10727.435 +23919,2025-03-10T00:03:37.240205-07:00,0.0,10.739257,10739.257 +23920,2025-03-10T00:03:47.969100-07:00,0.0,10.728895,10728.895 +23921,2025-03-10T00:03:58.709181-07:00,0.0,10.740081,10740.081 +23922,2025-03-10T00:04:09.442804-07:00,0.0,10.733623,10733.623 +23923,2025-03-10T00:04:20.178103-07:00,0.0,10.735299,10735.299 +23924,2025-03-10T00:04:30.910291-07:00,0.0,10.732188,10732.188 +23925,2025-03-10T00:04:41.644321-07:00,0.0,10.73403,10734.03 +23926,2025-03-10T00:04:52.373303-07:00,0.0,10.728982,10728.982 +23927,2025-03-10T00:05:03.110154-07:00,0.0,10.736851,10736.851 +23928,2025-03-10T00:05:13.848123-07:00,0.0,10.737969,10737.969 +23929,2025-03-10T00:05:24.586252-07:00,0.0,10.738129,10738.129 +23930,2025-03-10T00:05:35.313476-07:00,0.0,10.727224,10727.224 +23931,2025-03-10T00:05:46.048125-07:00,0.0,10.734649,10734.649 +23932,2025-03-10T00:05:56.785558-07:00,0.0,10.737433,10737.433 +23933,2025-03-10T00:06:07.518293-07:00,0.0,10.732735,10732.735 +23934,2025-03-10T00:06:18.245135-07:00,0.0,10.726842,10726.842 +23935,2025-03-10T00:06:28.978257-07:00,0.0,10.733122,10733.122 +23936,2025-03-10T00:06:39.710271-07:00,0.0,10.732014,10732.014 +23937,2025-03-10T00:06:50.438568-07:00,0.0,10.728297,10728.297 +23938,2025-03-10T00:07:01.168195-07:00,0.0,10.729627,10729.627 +23939,2025-03-10T00:07:11.903222-07:00,0.0,10.735027,10735.027 +23940,2025-03-10T00:07:22.635258-07:00,0.0,10.732036,10732.036 +23941,2025-03-10T00:07:33.364103-07:00,0.0,10.728845,10728.845 +23942,2025-03-10T00:07:44.104104-07:00,0.0,10.740001,10740.001 +23943,2025-03-10T00:07:54.836276-07:00,0.0,10.732172,10732.172 +23944,2025-03-10T00:08:05.570099-07:00,0.0,10.733823,10733.823 +23945,2025-03-10T00:08:16.298190-07:00,0.0,10.728091,10728.091 +23946,2025-03-10T00:08:27.035680-07:00,0.0,10.73749,10737.49 +23947,2025-03-10T00:08:37.771371-07:00,0.0,10.735691,10735.691 +23948,2025-03-10T00:08:48.501137-07:00,0.0,10.729766,10729.766 +23949,2025-03-10T00:08:59.242285-07:00,0.0,10.741148,10741.148 +23950,2025-03-10T00:09:09.968306-07:00,0.0,10.726021,10726.021 +23951,2025-03-10T00:09:20.702256-07:00,0.0,10.73395,10733.95 +23952,2025-03-10T00:09:31.444129-07:00,0.0,10.741873,10741.873 +23953,2025-03-10T00:09:42.179110-07:00,0.0,10.734981,10734.981 +23954,2025-03-10T00:09:52.907440-07:00,0.0,10.72833,10728.33 +23955,2025-03-10T00:10:03.646251-07:00,0.0,10.738811,10738.811 +23956,2025-03-10T00:10:14.383303-07:00,0.0,10.737052,10737.052 +23957,2025-03-10T00:10:25.112152-07:00,0.0,10.728849,10728.849 +23958,2025-03-10T00:10:33.099941-07:00,0.0,7.987789,7987.789 +23959,2025-03-10T00:10:35.851320-07:00,0.0,2.751379,2751.379 +23960,2025-03-10T00:10:46.585132-07:00,0.0,10.733812,10733.812 +23961,2025-03-10T00:10:57.310166-07:00,0.0,10.725034,10725.034 +23962,2025-03-10T00:11:08.055129-07:00,0.0,10.744963,10744.963 +23963,2025-03-10T00:11:18.785502-07:00,0.0,10.730373,10730.373 +23964,2025-03-10T00:11:29.520162-07:00,0.0,10.73466,10734.66 +23965,2025-03-10T00:11:40.250356-07:00,0.0,10.730194,10730.194 +23966,2025-03-10T00:11:50.987103-07:00,0.0,10.736747,10736.747 +23967,2025-03-10T00:12:01.722285-07:00,0.0,10.735182,10735.182 +23968,2025-03-10T00:12:12.459123-07:00,0.0,10.736838,10736.838 +23969,2025-03-10T00:12:23.183127-07:00,0.0,10.724004,10724.004 +23970,2025-03-10T00:12:33.925282-07:00,0.0,10.742155,10742.155 +23971,2025-03-10T00:12:44.651095-07:00,0.0,10.725813,10725.813 +23972,2025-03-10T00:12:55.389200-07:00,0.0,10.738105,10738.105 +23973,2025-03-10T00:13:06.121104-07:00,0.0,10.731904,10731.904 +23974,2025-03-10T00:13:16.859156-07:00,0.0,10.738052,10738.052 +23975,2025-03-10T00:13:27.589985-07:00,0.0,10.730829,10730.829 +23976,2025-03-10T00:13:38.331109-07:00,0.0,10.741124,10741.124 +23977,2025-03-10T00:13:49.059280-07:00,0.0,10.728171,10728.171 +23978,2025-03-10T00:13:59.800285-07:00,0.0,10.741005,10741.005 +23979,2025-03-10T00:14:10.531873-07:00,0.0,10.731588,10731.588 +23980,2025-03-10T00:14:21.268259-07:00,0.0,10.736386,10736.386 +23981,2025-03-10T00:14:31.995103-07:00,0.0,10.726844,10726.844 +23982,2025-03-10T00:14:42.732563-07:00,0.0,10.73746,10737.46 +23983,2025-03-10T00:14:53.472156-07:00,0.0,10.739593,10739.593 +23984,2025-03-10T00:15:04.203305-07:00,0.0,10.731149,10731.149 +23985,2025-03-10T00:15:14.932332-07:00,0.0,10.729027,10729.027 +23986,2025-03-10T00:15:25.667273-07:00,0.0,10.734941,10734.941 +23987,2025-03-10T00:15:36.402101-07:00,0.0,10.734828,10734.828 +23988,2025-03-10T00:15:47.135232-07:00,0.0,10.733131,10733.131 +23989,2025-03-10T00:15:57.866280-07:00,0.0,10.731048,10731.048 +23990,2025-03-10T00:16:08.601190-07:00,0.0,10.73491,10734.91 +23991,2025-03-10T00:16:19.335134-07:00,0.0,10.733944,10733.944 +23992,2025-03-10T00:16:30.066292-07:00,0.0,10.731158,10731.158 +23993,2025-03-10T00:16:40.800493-07:00,0.0,10.734201,10734.201 +23994,2025-03-10T00:16:51.528161-07:00,0.0,10.727668,10727.668 +23995,2025-03-10T00:17:02.258149-07:00,0.0,10.729988,10729.988 +23996,2025-03-10T00:17:12.999104-07:00,0.0,10.740955,10740.955 +23997,2025-03-10T00:17:23.727464-07:00,0.0,10.72836,10728.36 +23998,2025-03-10T00:17:34.458767-07:00,0.0,10.731303,10731.303 +23999,2025-03-10T00:17:45.188221-07:00,0.0,10.729454,10729.454 +24000,2025-03-10T00:17:55.927179-07:00,0.0,10.738958,10738.958 +24001,2025-03-10T00:18:06.661100-07:00,0.0,10.733921,10733.921 +24002,2025-03-10T00:18:17.390395-07:00,0.0,10.729295,10729.295 +24003,2025-03-10T00:18:28.129130-07:00,0.0,10.738735,10738.735 +24004,2025-03-10T00:18:38.866286-07:00,0.0,10.737156,10737.156 +24005,2025-03-10T00:18:49.590102-07:00,0.0,10.723816,10723.816 +24006,2025-03-10T00:19:00.323298-07:00,0.0,10.733196,10733.196 +24007,2025-03-10T00:19:11.060277-07:00,0.0,10.736979,10736.979 +24008,2025-03-10T00:19:21.793105-07:00,0.0,10.732828,10732.828 +24009,2025-03-10T00:19:32.525130-07:00,0.0,10.732025,10732.025 +24010,2025-03-10T00:19:43.262275-07:00,0.0,10.737145,10737.145 +24011,2025-03-10T00:19:53.989460-07:00,0.0,10.727185,10727.185 +24012,2025-03-10T00:20:04.725282-07:00,0.0,10.735822,10735.822 +24013,2025-03-10T00:20:15.461400-07:00,0.0,10.736118,10736.118 +24014,2025-03-10T00:20:26.187079-07:00,0.0,10.725679,10725.679 +24015,2025-03-10T00:20:36.921187-07:00,0.0,10.734108,10734.108 +24016,2025-03-10T00:20:47.659254-07:00,0.0,10.738067,10738.067 +24017,2025-03-10T00:20:58.383268-07:00,0.0,10.724014,10724.014 +24018,2025-03-10T00:21:09.120354-07:00,0.0,10.737086,10737.086 +24019,2025-03-10T00:21:19.843103-07:00,0.0,10.722749,10722.749 +24020,2025-03-10T00:21:30.581305-07:00,0.0,10.738202,10738.202 +24021,2025-03-10T00:21:41.310096-07:00,0.0,10.728791,10728.791 +24022,2025-03-10T00:21:52.046103-07:00,0.0,10.736007,10736.007 +24023,2025-03-10T00:22:02.777170-07:00,0.0,10.731067,10731.067 +24024,2025-03-10T00:22:13.504129-07:00,0.0,10.726959,10726.959 +24025,2025-03-10T00:22:24.230376-07:00,0.0,10.726247,10726.247 +24026,2025-03-10T00:22:34.970449-07:00,0.0,10.740073,10740.073 +24027,2025-03-10T00:22:45.692806-07:00,0.0,10.722357,10722.357 +24028,2025-03-10T00:22:56.424332-07:00,0.0,10.731526,10731.526 +24029,2025-03-10T00:23:07.158830-07:00,0.0,10.734498,10734.498 +24030,2025-03-10T00:23:17.898336-07:00,0.0,10.739506,10739.506 +24031,2025-03-10T00:23:28.622398-07:00,0.0,10.724062,10724.062 +24032,2025-03-10T00:23:39.354264-07:00,0.0,10.731866,10731.866 +24033,2025-03-10T00:23:50.094369-07:00,0.0,10.740105,10740.105 +24034,2025-03-10T00:24:00.820131-07:00,0.0,10.725762,10725.762 +24035,2025-03-10T00:24:11.545101-07:00,0.0,10.72497,10724.97 +24036,2025-03-10T00:24:22.284263-07:00,0.0,10.739162,10739.162 +24037,2025-03-10T00:24:33.016141-07:00,0.0,10.731878,10731.878 +24038,2025-03-10T00:24:43.741222-07:00,0.0,10.725081,10725.081 +24039,2025-03-10T00:24:54.478554-07:00,0.0,10.737332,10737.332 +24040,2025-03-10T00:25:05.206219-07:00,0.0,10.727665,10727.665 +24041,2025-03-10T00:25:15.934616-07:00,0.0,10.728397,10728.397 +24042,2025-03-10T00:25:26.663694-07:00,0.0,10.729078,10729.078 +24043,2025-03-10T00:25:37.394101-07:00,0.0,10.730407,10730.407 +24044,2025-03-10T00:25:48.133313-07:00,0.0,10.739212,10739.212 +24045,2025-03-10T00:25:58.865287-07:00,0.0,10.731974,10731.974 +24046,2025-03-10T00:26:09.592232-07:00,0.0,10.726945,10726.945 +24047,2025-03-10T00:26:20.321133-07:00,0.0,10.728901,10728.901 +24048,2025-03-10T00:26:31.057103-07:00,0.0,10.73597,10735.97 +24049,2025-03-10T00:26:41.783130-07:00,0.0,10.726027,10726.027 +24050,2025-03-10T00:26:52.511358-07:00,0.0,10.728228,10728.228 +24051,2025-03-10T00:27:03.250437-07:00,0.0,10.739079,10739.079 +24052,2025-03-10T00:27:13.971100-07:00,0.0,10.720663,10720.663 +24053,2025-03-10T00:27:24.705110-07:00,0.0,10.73401,10734.01 +24054,2025-03-10T00:27:35.432131-07:00,0.0,10.727021,10727.021 +24055,2025-03-10T00:27:46.167436-07:00,0.0,10.735305,10735.305 +24056,2025-03-10T00:27:56.902097-07:00,0.0,10.734661,10734.661 +24057,2025-03-10T00:28:07.628328-07:00,0.0,10.726231,10726.231 +24058,2025-03-10T00:28:18.372301-07:00,0.0,10.743973,10743.973 +24059,2025-03-10T00:28:29.105192-07:00,0.0,10.732891,10732.891 +24060,2025-03-10T00:28:39.831300-07:00,0.0,10.726108,10726.108 +24061,2025-03-10T00:28:50.563121-07:00,0.0,10.731821,10731.821 +24062,2025-03-10T00:29:01.293241-07:00,0.0,10.73012,10730.12 +24063,2025-03-10T00:29:12.036101-07:00,0.0,10.74286,10742.86 +24064,2025-03-10T00:29:22.760322-07:00,0.0,10.724221,10724.221 +24065,2025-03-10T00:29:33.497277-07:00,0.0,10.736955,10736.955 +24066,2025-03-10T00:29:44.234100-07:00,0.0,10.736823,10736.823 +24067,2025-03-10T00:29:54.964098-07:00,0.0,10.729998,10729.998 +24068,2025-03-10T00:30:05.703101-07:00,0.0,10.739003,10739.003 +24069,2025-03-10T00:30:16.434483-07:00,0.0,10.731382,10731.382 +24070,2025-03-10T00:30:27.165857-07:00,0.0,10.731374,10731.374 +24071,2025-03-10T00:30:37.896819-07:00,0.0,10.730962,10730.962 +24072,2025-03-10T00:30:48.636278-07:00,0.0,10.739459,10739.459 +24073,2025-03-10T00:30:59.365241-07:00,0.0,10.728963,10728.963 +24074,2025-03-10T00:31:10.103134-07:00,0.0,10.737893,10737.893 +24075,2025-03-10T00:31:20.828103-07:00,0.0,10.724969,10724.969 +24076,2025-03-10T00:31:31.558237-07:00,0.0,10.730134,10730.134 +24077,2025-03-10T00:31:42.295104-07:00,0.0,10.736867,10736.867 +24078,2025-03-10T00:31:53.027097-07:00,0.0,10.731993,10731.993 +24079,2025-03-10T00:32:03.753288-07:00,0.0,10.726191,10726.191 +24080,2025-03-10T00:32:14.487371-07:00,0.0,10.734083,10734.083 +24081,2025-03-10T00:32:25.220101-07:00,0.0,10.73273,10732.73 +24082,2025-03-10T00:32:35.956535-07:00,0.0,10.736434,10736.434 +24083,2025-03-10T00:32:46.683211-07:00,0.0,10.726676,10726.676 +24084,2025-03-10T00:32:57.413133-07:00,0.0,10.729922,10729.922 +24085,2025-03-10T00:33:08.151288-07:00,0.0,10.738155,10738.155 +24086,2025-03-10T00:33:18.873101-07:00,0.0,10.721813,10721.813 +24087,2025-03-10T00:33:29.610134-07:00,0.0,10.737033,10737.033 +24088,2025-03-10T00:33:40.331341-07:00,0.0,10.721207,10721.207 +24089,2025-03-10T00:33:51.061103-07:00,0.0,10.729762,10729.762 +24090,2025-03-10T00:34:01.791095-07:00,0.0,10.729992,10729.992 +24091,2025-03-10T00:34:12.524363-07:00,0.0,10.733268,10733.268 +24092,2025-03-10T00:34:23.260682-07:00,0.0,10.736319,10736.319 +24093,2025-03-10T00:34:33.983105-07:00,0.0,10.722423,10722.423 +24094,2025-03-10T00:34:44.720410-07:00,0.0,10.737305,10737.305 +24095,2025-03-10T00:34:55.449224-07:00,0.0,10.728814,10728.814 +24096,2025-03-10T00:35:06.184333-07:00,0.0,10.735109,10735.109 +24097,2025-03-10T00:35:16.907587-07:00,0.0,10.723254,10723.254 +24098,2025-03-10T00:35:27.641102-07:00,0.0,10.733515,10733.515 +24099,2025-03-10T00:35:38.375101-07:00,0.0,10.733999,10733.999 +24100,2025-03-10T00:35:49.102129-07:00,0.0,10.727028,10727.028 +24101,2025-03-10T00:35:59.834129-07:00,0.0,10.732,10732.0 +24102,2025-03-10T00:36:10.558114-07:00,0.0,10.723985,10723.985 +24103,2025-03-10T00:36:21.294604-07:00,0.0,10.73649,10736.49 +24104,2025-03-10T00:36:32.026298-07:00,0.0,10.731694,10731.694 +24105,2025-03-10T00:36:42.762633-07:00,0.0,10.736335,10736.335 +24106,2025-03-10T00:36:53.492169-07:00,0.0,10.729536,10729.536 +24107,2025-03-10T00:37:04.224491-07:00,0.0,10.732322,10732.322 +24108,2025-03-10T00:37:14.954124-07:00,0.0,10.729633,10729.633 +24109,2025-03-10T00:37:25.687517-07:00,0.0,10.733393,10733.393 +24110,2025-03-10T00:37:36.425125-07:00,0.0,10.737608,10737.608 +24111,2025-03-10T00:37:47.156316-07:00,0.0,10.731191,10731.191 +24112,2025-03-10T00:37:57.886100-07:00,0.0,10.729784,10729.784 +24113,2025-03-10T00:38:08.615102-07:00,0.0,10.729002,10729.002 +24114,2025-03-10T00:38:19.350949-07:00,0.0,10.735847,10735.847 +24115,2025-03-10T00:38:30.080651-07:00,0.0,10.729702,10729.702 +24116,2025-03-10T00:38:40.812282-07:00,0.0,10.731631,10731.631 +24117,2025-03-10T00:38:51.554548-07:00,0.0,10.742266,10742.266 +24118,2025-03-10T00:39:02.285261-07:00,0.0,10.730713,10730.713 +24119,2025-03-10T00:39:13.012236-07:00,0.0,10.726975,10726.975 +24120,2025-03-10T00:39:23.750103-07:00,0.0,10.737867,10737.867 +24121,2025-03-10T00:39:34.477129-07:00,0.0,10.727026,10727.026 +24122,2025-03-10T00:39:45.208103-07:00,0.0,10.730974,10730.974 +24123,2025-03-10T00:39:55.936307-07:00,0.0,10.728204,10728.204 +24124,2025-03-10T00:40:06.672347-07:00,0.0,10.73604,10736.04 +24125,2025-03-10T00:40:17.402123-07:00,0.0,10.729776,10729.776 +24126,2025-03-10T00:40:28.135304-07:00,0.0,10.733181,10733.181 +24127,2025-03-10T00:40:38.865291-07:00,0.0,10.729987,10729.987 +24128,2025-03-10T00:40:49.596130-07:00,0.0,10.730839,10730.839 +24129,2025-03-10T00:41:00.325281-07:00,0.0,10.729151,10729.151 +24130,2025-03-10T00:41:11.062278-07:00,0.0,10.736997,10736.997 +24131,2025-03-10T00:41:21.796128-07:00,0.0,10.73385,10733.85 +24132,2025-03-10T00:41:32.522101-07:00,0.0,10.725973,10725.973 +24133,2025-03-10T00:41:43.263211-07:00,0.0,10.74111,10741.11 +24134,2025-03-10T00:41:53.991442-07:00,0.0,10.728231,10728.231 +24135,2025-03-10T00:42:04.719097-07:00,0.0,10.727655,10727.655 +24136,2025-03-10T00:42:15.444281-07:00,0.0,10.725184,10725.184 +24137,2025-03-10T00:42:26.175103-07:00,0.0,10.730822,10730.822 +24138,2025-03-10T00:42:36.910171-07:00,0.0,10.735068,10735.068 +24139,2025-03-10T00:42:47.636374-07:00,0.0,10.726203,10726.203 +24140,2025-03-10T00:42:58.368097-07:00,0.0,10.731723,10731.723 +24141,2025-03-10T00:43:09.100103-07:00,0.0,10.732006,10732.006 +24142,2025-03-10T00:43:19.826284-07:00,0.0,10.726181,10726.181 +24143,2025-03-10T00:43:30.558103-07:00,0.0,10.731819,10731.819 +24144,2025-03-10T00:43:41.290129-07:00,0.0,10.732026,10732.026 +24145,2025-03-10T00:43:52.025098-07:00,0.0,10.734969,10734.969 +24146,2025-03-10T00:44:02.756127-07:00,0.0,10.731029,10731.029 +24147,2025-03-10T00:44:13.486111-07:00,0.0,10.729984,10729.984 +24148,2025-03-10T00:44:24.215515-07:00,0.0,10.729404,10729.404 +24149,2025-03-10T00:44:34.949418-07:00,0.0,10.733903,10733.903 +24150,2025-03-10T00:44:45.680391-07:00,0.0,10.730973,10730.973 +24151,2025-03-10T00:44:56.406236-07:00,0.0,10.725845,10725.845 +24152,2025-03-10T00:45:07.139334-07:00,0.0,10.733098,10733.098 +24153,2025-03-10T00:45:17.865101-07:00,0.0,10.725767,10725.767 +24154,2025-03-10T00:45:28.600290-07:00,0.0,10.735189,10735.189 +24155,2025-03-10T00:45:39.323307-07:00,0.0,10.723017,10723.017 +24156,2025-03-10T00:45:50.056103-07:00,0.0,10.732796,10732.796 +24157,2025-03-10T00:46:00.793061-07:00,0.0,10.736958,10736.958 +24158,2025-03-10T00:46:11.522173-07:00,0.0,10.729112,10729.112 +24159,2025-03-10T00:46:22.242214-07:00,0.0,10.720041,10720.041 +24160,2025-03-10T00:46:32.975299-07:00,0.0,10.733085,10733.085 +24161,2025-03-10T00:46:43.707102-07:00,0.0,10.731803,10731.803 +24162,2025-03-10T00:46:54.429816-07:00,0.0,10.722714,10722.714 +24163,2025-03-10T00:47:05.165266-07:00,0.0,10.73545,10735.45 +24164,2025-03-10T00:47:15.891129-07:00,0.0,10.725863,10725.863 +24165,2025-03-10T00:47:26.620135-07:00,0.0,10.729006,10729.006 +24166,2025-03-10T00:47:37.348896-07:00,0.0,10.728761,10728.761 +24167,2025-03-10T00:47:48.087259-07:00,0.0,10.738363,10738.363 +24168,2025-03-10T00:47:58.810113-07:00,0.0,10.722854,10722.854 +24169,2025-03-10T00:48:09.540918-07:00,0.0,10.730805,10730.805 +24170,2025-03-10T00:48:20.272209-07:00,0.0,10.731291,10731.291 +24171,2025-03-10T00:48:30.999283-07:00,0.0,10.727074,10727.074 +24172,2025-03-10T00:48:41.730100-07:00,0.0,10.730817,10730.817 +24173,2025-03-10T00:48:52.457283-07:00,0.0,10.727183,10727.183 +24174,2025-03-10T00:49:03.191302-07:00,0.0,10.734019,10734.019 +24175,2025-03-10T00:49:13.917205-07:00,0.0,10.725903,10725.903 +24176,2025-03-10T00:49:24.651174-07:00,0.0,10.733969,10733.969 +24177,2025-03-10T00:49:35.379314-07:00,0.0,10.72814,10728.14 +24178,2025-03-10T00:49:46.109565-07:00,0.0,10.730251,10730.251 +24179,2025-03-10T00:49:56.850097-07:00,0.0,10.740532,10740.532 +24180,2025-03-10T00:50:07.584261-07:00,0.0,10.734164,10734.164 +24181,2025-03-10T00:50:18.310505-07:00,0.0,10.726244,10726.244 +24182,2025-03-10T00:50:29.040654-07:00,0.0,10.730149,10730.149 +24183,2025-03-10T00:50:39.772263-07:00,0.0,10.731609,10731.609 +24184,2025-03-10T00:50:50.509321-07:00,0.0,10.737058,10737.058 +24185,2025-03-10T00:51:01.239101-07:00,0.0,10.72978,10729.78 +24186,2025-03-10T00:51:11.970102-07:00,0.0,10.731001,10731.001 +24187,2025-03-10T00:51:22.707099-07:00,0.0,10.736997,10736.997 +24188,2025-03-10T00:51:33.434124-07:00,0.0,10.727025,10727.025 +24189,2025-03-10T00:51:44.167105-07:00,0.0,10.732981,10732.981 +24190,2025-03-10T00:51:54.901401-07:00,0.0,10.734296,10734.296 +24191,2025-03-10T00:52:05.629188-07:00,0.0,10.727787,10727.787 +24192,2025-03-10T00:52:16.360303-07:00,0.0,10.731115,10731.115 +24193,2025-03-10T00:52:27.080304-07:00,0.0,10.720001,10720.001 +24194,2025-03-10T00:52:37.816199-07:00,0.0,10.735895,10735.895 +24195,2025-03-10T00:52:48.542103-07:00,0.0,10.725904,10725.904 +24196,2025-03-10T00:52:59.287727-07:00,0.0,10.745624,10745.624 +24197,2025-03-10T00:53:10.022085-07:00,0.0,10.734358,10734.358 +24198,2025-03-10T00:53:20.748477-07:00,0.0,10.726392,10726.392 +24199,2025-03-10T00:53:31.485715-07:00,0.0,10.737238,10737.238 +24200,2025-03-10T00:53:42.219639-07:00,0.0,10.733924,10733.924 +24201,2025-03-10T00:53:52.951547-07:00,0.0,10.731908,10731.908 +24202,2025-03-10T00:54:03.677631-07:00,0.0,10.726084,10726.084 +24203,2025-03-10T00:54:14.411640-07:00,0.0,10.734009,10734.009 +24204,2025-03-10T00:54:25.148461-07:00,0.0,10.736821,10736.821 +24205,2025-03-10T00:54:35.880467-07:00,0.0,10.732006,10732.006 +24206,2025-03-10T00:54:46.604643-07:00,0.0,10.724176,10724.176 +24207,2025-03-10T00:54:57.338527-07:00,0.0,10.733884,10733.884 +24208,2025-03-10T00:55:08.066676-07:00,0.0,10.728149,10728.149 +24209,2025-03-10T00:55:18.794650-07:00,0.0,10.727974,10727.974 +24210,2025-03-10T00:55:29.528623-07:00,0.0,10.733973,10733.973 +24211,2025-03-10T00:55:40.258464-07:00,0.0,10.729841,10729.841 +24212,2025-03-10T00:55:50.991515-07:00,0.0,10.733051,10733.051 +24213,2025-03-10T00:56:01.721491-07:00,0.0,10.729976,10729.976 +24214,2025-03-10T00:56:12.448537-07:00,0.0,10.727046,10727.046 +24215,2025-03-10T00:56:23.178842-07:00,0.0,10.730305,10730.305 +24216,2025-03-10T00:56:33.908464-07:00,0.0,10.729622,10729.622 +24217,2025-03-10T00:56:44.637467-07:00,0.0,10.729003,10729.003 +24218,2025-03-10T00:56:55.363888-07:00,0.0,10.726421,10726.421 +24219,2025-03-10T00:57:06.093537-07:00,0.0,10.729649,10729.649 +24220,2025-03-10T00:57:16.829874-07:00,0.0,10.736337,10736.337 +24221,2025-03-10T00:57:27.558637-07:00,0.0,10.728763,10728.763 +24222,2025-03-10T00:57:38.286540-07:00,0.0,10.727903,10727.903 +24223,2025-03-10T00:57:49.023529-07:00,0.0,10.736989,10736.989 +24224,2025-03-10T00:57:59.750641-07:00,0.0,10.727112,10727.112 +24225,2025-03-10T00:58:10.488514-07:00,0.0,10.737873,10737.873 +24226,2025-03-10T00:58:21.215468-07:00,0.0,10.726954,10726.954 +24227,2025-03-10T00:58:31.946906-07:00,0.0,10.731438,10731.438 +24228,2025-03-10T00:58:42.683387-07:00,0.0,10.736481,10736.481 +24229,2025-03-10T00:58:53.409665-07:00,0.0,10.726278,10726.278 +24230,2025-03-10T00:59:04.143542-07:00,0.0,10.733877,10733.877 +24231,2025-03-10T00:59:14.881677-07:00,0.0,10.738135,10738.135 +24232,2025-03-10T00:59:25.609464-07:00,0.0,10.727787,10727.787 +24233,2025-03-10T00:59:36.343207-07:00,0.0,10.733743,10733.743 +24234,2025-03-10T00:59:47.069640-07:00,0.0,10.726433,10726.433 +24235,2025-03-10T00:59:57.813087-07:00,0.0,10.743447,10743.447 +24236,2025-03-10T01:00:08.537500-07:00,0.0,10.724413,10724.413 +24237,2025-03-10T01:00:19.278490-07:00,0.0,10.74099,10740.99 +24238,2025-03-10T01:00:30.013683-07:00,0.0,10.735193,10735.193 +24239,2025-03-10T01:00:40.737750-07:00,0.0,10.724067,10724.067 +24240,2025-03-10T01:00:51.472473-07:00,0.0,10.734723,10734.723 +24241,2025-03-10T01:01:02.212663-07:00,0.0,10.74019,10740.19 +24242,2025-03-10T01:01:12.941464-07:00,0.0,10.728801,10728.801 +24243,2025-03-10T01:01:23.671470-07:00,0.0,10.730006,10730.006 +24244,2025-03-10T01:01:34.406927-07:00,0.0,10.735457,10735.457 +24245,2025-03-10T01:01:45.137667-07:00,0.0,10.73074,10730.74 +24246,2025-03-10T01:01:55.867471-07:00,0.0,10.729804,10729.804 +24247,2025-03-10T01:02:06.597928-07:00,0.0,10.730457,10730.457 +24248,2025-03-10T01:02:17.332641-07:00,0.0,10.734713,10734.713 +24249,2025-03-10T01:02:28.057759-07:00,0.0,10.725118,10725.118 +24250,2025-03-10T01:02:38.797467-07:00,0.0,10.739708,10739.708 +24251,2025-03-10T01:02:49.518780-07:00,0.0,10.721313,10721.313 +24252,2025-03-10T01:03:00.258464-07:00,0.0,10.739684,10739.684 +24253,2025-03-10T01:03:10.988680-07:00,0.0,10.730216,10730.216 +24254,2025-03-10T01:03:21.719513-07:00,0.0,10.730833,10730.833 +24255,2025-03-10T01:03:32.450468-07:00,0.0,10.730955,10730.955 +24256,2025-03-10T01:03:43.179490-07:00,0.0,10.729022,10729.022 +24257,2025-03-10T01:03:53.915468-07:00,0.0,10.735978,10735.978 +24258,2025-03-10T01:04:04.650650-07:00,0.0,10.735182,10735.182 +24259,2025-03-10T01:04:15.378529-07:00,0.0,10.727879,10727.879 +24260,2025-03-10T01:04:26.113620-07:00,0.0,10.735091,10735.091 +24261,2025-03-10T01:04:36.850956-07:00,0.0,10.737336,10737.336 +24262,2025-03-10T01:04:47.580462-07:00,0.0,10.729506,10729.506 +24263,2025-03-10T01:04:58.319725-07:00,0.0,10.739263,10739.263 +24264,2025-03-10T01:05:09.047507-07:00,0.0,10.727782,10727.782 +24265,2025-03-10T01:05:19.776588-07:00,0.0,10.729081,10729.081 +24266,2025-03-10T01:05:30.509670-07:00,0.0,10.733082,10733.082 +24267,2025-03-10T01:05:41.252586-07:00,0.0,10.742916,10742.916 +24268,2025-03-10T01:05:51.985874-07:00,0.0,10.733288,10733.288 +24269,2025-03-10T01:06:02.722658-07:00,0.0,10.736784,10736.784 +24270,2025-03-10T01:06:13.456747-07:00,0.0,10.734089,10734.089 +24271,2025-03-10T01:06:24.187467-07:00,0.0,10.73072,10730.72 +24272,2025-03-10T01:06:34.922680-07:00,0.0,10.735213,10735.213 +24273,2025-03-10T01:06:45.654556-07:00,0.0,10.731876,10731.876 +24274,2025-03-10T01:06:56.384483-07:00,0.0,10.729927,10729.927 +24275,2025-03-10T01:07:07.115646-07:00,0.0,10.731163,10731.163 +24276,2025-03-10T01:07:17.848729-07:00,0.0,10.733083,10733.083 +24277,2025-03-10T01:07:28.582462-07:00,0.0,10.733733,10733.733 +24278,2025-03-10T01:07:39.316540-07:00,0.0,10.734078,10734.078 +24279,2025-03-10T01:07:50.040617-07:00,0.0,10.724077,10724.077 +24280,2025-03-10T01:08:00.776626-07:00,0.0,10.736009,10736.009 +24281,2025-03-10T01:08:11.515664-07:00,0.0,10.739038,10739.038 +24282,2025-03-10T01:08:22.248638-07:00,0.0,10.732974,10732.974 +24283,2025-03-10T01:08:32.975622-07:00,0.0,10.726984,10726.984 +24284,2025-03-10T01:08:43.712465-07:00,0.0,10.736843,10736.843 +24285,2025-03-10T01:08:54.438540-07:00,0.0,10.726075,10726.075 +24286,2025-03-10T01:09:05.179627-07:00,0.0,10.741087,10741.087 +24287,2025-03-10T01:09:15.910561-07:00,0.0,10.730934,10730.934 +24288,2025-03-10T01:09:26.643252-07:00,0.0,10.732691,10732.691 +24289,2025-03-10T01:09:37.373648-07:00,0.0,10.730396,10730.396 +24290,2025-03-10T01:09:48.110787-07:00,0.0,10.737139,10737.139 +24291,2025-03-10T01:09:58.848465-07:00,0.0,10.737678,10737.678 +24292,2025-03-10T01:10:09.582468-07:00,0.0,10.734003,10734.003 +24293,2025-03-10T01:10:20.310054-07:00,0.0,10.727586,10727.586 +24294,2025-03-10T01:10:31.045792-07:00,0.0,10.735738,10735.738 +24295,2025-03-10T01:10:41.780464-07:00,0.0,10.734672,10734.672 +24296,2025-03-10T01:10:52.508674-07:00,0.0,10.72821,10728.21 +24297,2025-03-10T01:11:03.241645-07:00,0.0,10.732971,10732.971 +24298,2025-03-10T01:11:13.977466-07:00,0.0,10.735821,10735.821 +24299,2025-03-10T01:11:24.709469-07:00,0.0,10.732003,10732.003 +24300,2025-03-10T01:11:35.446460-07:00,0.0,10.736991,10736.991 +24301,2025-03-10T01:11:46.171624-07:00,0.0,10.725164,10725.164 +24302,2025-03-10T01:11:56.907467-07:00,0.0,10.735843,10735.843 +24303,2025-03-10T01:12:07.638212-07:00,0.0,10.730745,10730.745 +24304,2025-03-10T01:12:18.380650-07:00,0.0,10.742438,10742.438 +24305,2025-03-10T01:12:29.114484-07:00,0.0,10.733834,10733.834 +24306,2025-03-10T01:12:39.839467-07:00,0.0,10.724983,10724.983 +24307,2025-03-10T01:12:50.579677-07:00,0.0,10.74021,10740.21 +24308,2025-03-10T01:13:01.311672-07:00,0.0,10.731995,10731.995 +24309,2025-03-10T01:13:12.047499-07:00,0.0,10.735827,10735.827 +24310,2025-03-10T01:13:22.785462-07:00,0.0,10.737963,10737.963 +24311,2025-03-10T01:13:33.512669-07:00,0.0,10.727207,10727.207 +24312,2025-03-10T01:13:44.251646-07:00,0.0,10.738977,10738.977 +24313,2025-03-10T01:13:54.990650-07:00,0.0,10.739004,10739.004 +24314,2025-03-10T01:14:05.720807-07:00,0.0,10.730157,10730.157 +24315,2025-03-10T01:14:16.453503-07:00,0.0,10.732696,10732.696 +24316,2025-03-10T01:14:27.186728-07:00,0.0,10.733225,10733.225 +24317,2025-03-10T01:14:37.926763-07:00,0.0,10.740035,10740.035 +24318,2025-03-10T01:14:48.654567-07:00,0.0,10.727804,10727.804 +24319,2025-03-10T01:14:59.384811-07:00,0.0,10.730244,10730.244 +24320,2025-03-10T01:15:10.124365-07:00,0.0,10.739554,10739.554 +24321,2025-03-10T01:15:20.851530-07:00,0.0,10.727165,10727.165 +24322,2025-03-10T01:15:31.592464-07:00,0.0,10.740934,10740.934 +24323,2025-03-10T01:15:42.324657-07:00,0.0,10.732193,10732.193 +24324,2025-03-10T01:15:53.050790-07:00,0.0,10.726133,10726.133 +24325,2025-03-10T01:16:03.781534-07:00,0.0,10.730744,10730.744 +24326,2025-03-10T01:16:14.518221-07:00,0.0,10.736687,10736.687 +24327,2025-03-10T01:16:25.256007-07:00,0.0,10.737786,10737.786 +24328,2025-03-10T01:16:35.985468-07:00,0.0,10.729461,10729.461 +24329,2025-03-10T01:16:46.715462-07:00,0.0,10.729994,10729.994 +24330,2025-03-10T01:16:57.455728-07:00,0.0,10.740266,10740.266 +24331,2025-03-10T01:17:08.188293-07:00,0.0,10.732565,10732.565 +24332,2025-03-10T01:17:18.926471-07:00,0.0,10.738178,10738.178 +24333,2025-03-10T01:17:29.658796-07:00,0.0,10.732325,10732.325 +24334,2025-03-10T01:17:40.387291-07:00,0.0,10.728495,10728.495 +24335,2025-03-10T01:17:51.125608-07:00,0.0,10.738317,10738.317 +24336,2025-03-10T01:18:01.856495-07:00,0.0,10.730887,10730.887 +24337,2025-03-10T01:18:12.584577-07:00,0.0,10.728082,10728.082 +24338,2025-03-10T01:18:23.320488-07:00,0.0,10.735911,10735.911 +24339,2025-03-10T01:18:34.053502-07:00,0.0,10.733014,10733.014 +24340,2025-03-10T01:18:44.784873-07:00,0.0,10.731371,10731.371 +24341,2025-03-10T01:18:55.511466-07:00,0.0,10.726593,10726.593 +24342,2025-03-10T01:19:06.238468-07:00,0.0,10.727002,10727.002 +24343,2025-03-10T01:19:16.971693-07:00,0.0,10.733225,10733.225 +24344,2025-03-10T01:19:27.702495-07:00,0.0,10.730802,10730.802 +24345,2025-03-10T01:19:38.436668-07:00,0.0,10.734173,10734.173 +24346,2025-03-10T01:19:49.164671-07:00,0.0,10.728003,10728.003 +24347,2025-03-10T01:19:59.901635-07:00,0.0,10.736964,10736.964 +24348,2025-03-10T01:20:10.633467-07:00,0.0,10.731832,10731.832 +24349,2025-03-10T01:20:21.367542-07:00,0.0,10.734075,10734.075 +24350,2025-03-10T01:20:32.099629-07:00,0.0,10.732087,10732.087 +24351,2025-03-10T01:20:42.828600-07:00,0.0,10.728971,10728.971 +24352,2025-03-10T01:20:53.555688-07:00,0.0,10.727088,10727.088 +24353,2025-03-10T01:21:04.286641-07:00,0.0,10.730953,10730.953 +24354,2025-03-10T01:21:15.015634-07:00,0.0,10.728993,10728.993 +24355,2025-03-10T01:21:25.751607-07:00,0.0,10.735973,10735.973 +24356,2025-03-10T01:21:36.479631-07:00,0.0,10.728024,10728.024 +24357,2025-03-10T01:21:47.213594-07:00,0.0,10.733963,10733.963 +24358,2025-03-10T01:21:57.939544-07:00,0.0,10.72595,10725.95 +24359,2025-03-10T01:22:08.670841-07:00,0.0,10.731297,10731.297 +24360,2025-03-10T01:22:19.411800-07:00,0.0,10.740959,10740.959 +24361,2025-03-10T01:22:30.142835-07:00,0.0,10.731035,10731.035 +24362,2025-03-10T01:22:40.866479-07:00,0.0,10.723644,10723.644 +24363,2025-03-10T01:22:51.594464-07:00,0.0,10.727985,10727.985 +24364,2025-03-10T01:23:23.790467-07:00,0.0,32.196003,32196.003 +24365,2025-03-10T01:23:34.526466-07:00,0.0,10.735999,10735.999 +24366,2025-03-10T01:23:45.250278-07:00,0.0,10.723812,10723.812 +24367,2025-03-10T01:23:55.990645-07:00,0.0,10.740367,10740.367 +24368,2025-03-10T01:24:06.712467-07:00,0.0,10.721822,10721.822 +24369,2025-03-10T01:24:17.454461-07:00,0.0,10.741994,10741.994 +24370,2025-03-10T01:24:28.185265-07:00,0.0,10.730804,10730.804 +24371,2025-03-10T01:24:38.920752-07:00,0.0,10.735487,10735.487 +24372,2025-03-10T01:24:49.646501-07:00,0.0,10.725749,10725.749 +24373,2025-03-10T01:25:00.385679-07:00,0.0,10.739178,10739.178 +24374,2025-03-10T01:25:11.109730-07:00,0.0,10.724051,10724.051 +24375,2025-03-10T01:25:21.845491-07:00,0.0,10.735761,10735.761 +24376,2025-03-10T01:25:32.575630-07:00,0.0,10.730139,10730.139 +24377,2025-03-10T01:25:43.308665-07:00,0.0,10.733035,10733.035 +24378,2025-03-10T01:25:54.034457-07:00,0.0,10.725792,10725.792 +24379,2025-03-10T01:26:04.763462-07:00,0.0,10.729005,10729.005 +24380,2025-03-10T01:26:15.494792-07:00,0.0,10.73133,10731.33 +24381,2025-03-10T01:26:26.228468-07:00,0.0,10.733676,10733.676 +24382,2025-03-10T01:26:36.965667-07:00,0.0,10.737199,10737.199 +24383,2025-03-10T01:26:47.689870-07:00,0.0,10.724203,10724.203 +24384,2025-03-10T01:26:58.423530-07:00,0.0,10.73366,10733.66 +24385,2025-03-10T01:27:09.158466-07:00,0.0,10.734936,10734.936 +24386,2025-03-10T01:27:19.881928-07:00,0.0,10.723462,10723.462 +24387,2025-03-10T01:27:30.617756-07:00,0.0,10.735828,10735.828 +24388,2025-03-10T01:27:41.346463-07:00,0.0,10.728707,10728.707 +24389,2025-03-10T01:27:52.085889-07:00,0.0,10.739426,10739.426 +24390,2025-03-10T01:28:02.815466-07:00,0.0,10.729577,10729.577 +24391,2025-03-10T01:28:13.550557-07:00,0.0,10.735091,10735.091 +24392,2025-03-10T01:28:24.272557-07:00,0.0,10.722,10722.0 +24393,2025-03-10T01:28:35.006490-07:00,0.0,10.733933,10733.933 +24394,2025-03-10T01:28:45.734025-07:00,0.0,10.727535,10727.535 +24395,2025-03-10T01:28:56.466710-07:00,0.0,10.732685,10732.685 +24396,2025-03-10T01:29:07.191530-07:00,0.0,10.72482,10724.82 +24397,2025-03-10T01:29:17.926476-07:00,0.0,10.734946,10734.946 +24398,2025-03-10T01:29:28.661607-07:00,0.0,10.735131,10735.131 +24399,2025-03-10T01:29:39.387490-07:00,0.0,10.725883,10725.883 +24400,2025-03-10T01:29:50.120708-07:00,0.0,10.733218,10733.218 +24401,2025-03-10T01:30:00.856647-07:00,0.0,10.735939,10735.939 +24402,2025-03-10T01:30:11.581465-07:00,0.0,10.724818,10724.818 +24403,2025-03-10T01:30:22.320670-07:00,0.0,10.739205,10739.205 +24404,2025-03-10T01:30:33.048467-07:00,0.0,10.727797,10727.797 +24405,2025-03-10T01:30:43.780633-07:00,0.0,10.732166,10732.166 +24406,2025-03-10T01:30:54.520706-07:00,0.0,10.740073,10740.073 +24407,2025-03-10T01:31:05.246528-07:00,0.0,10.725822,10725.822 +24408,2025-03-10T01:31:15.972651-07:00,0.0,10.726123,10726.123 +24409,2025-03-10T01:31:26.704469-07:00,0.0,10.731818,10731.818 +24410,2025-03-10T01:31:37.439465-07:00,0.0,10.734996,10734.996 +24411,2025-03-10T01:31:48.171470-07:00,0.0,10.732005,10732.005 +24412,2025-03-10T01:31:58.909659-07:00,0.0,10.738189,10738.189 +24413,2025-03-10T01:32:09.640467-07:00,0.0,10.730808,10730.808 +24414,2025-03-10T01:32:20.378466-07:00,0.0,10.737999,10737.999 +24415,2025-03-10T01:32:31.103646-07:00,0.0,10.72518,10725.18 +24416,2025-03-10T01:32:41.846158-07:00,0.0,10.742512,10742.512 +24417,2025-03-10T01:32:52.575534-07:00,0.0,10.729376,10729.376 +24418,2025-03-10T01:33:03.309740-07:00,0.0,10.734206,10734.206 +24419,2025-03-10T01:33:14.038651-07:00,0.0,10.728911,10728.911 +24420,2025-03-10T01:33:24.782966-07:00,0.0,10.744315,10744.315 +24421,2025-03-10T01:33:35.515464-07:00,0.0,10.732498,10732.498 +24422,2025-03-10T01:33:46.245887-07:00,0.0,10.730423,10730.423 +24423,2025-03-10T01:33:56.982644-07:00,0.0,10.736757,10736.757 +24424,2025-03-10T01:34:07.708468-07:00,0.0,10.725824,10725.824 +24425,2025-03-10T01:34:18.440536-07:00,0.0,10.732068,10732.068 +24426,2025-03-10T01:34:29.178540-07:00,0.0,10.738004,10738.004 +24427,2025-03-10T01:34:39.903710-07:00,0.0,10.72517,10725.17 +24428,2025-03-10T01:34:50.637637-07:00,0.0,10.733927,10733.927 +24429,2025-03-10T01:35:01.375932-07:00,0.0,10.738295,10738.295 +24430,2025-03-10T01:35:12.100465-07:00,0.0,10.724533,10724.533 +24431,2025-03-10T01:35:22.832467-07:00,0.0,10.732002,10732.002 +24432,2025-03-10T01:35:33.564461-07:00,0.0,10.731994,10731.994 +24433,2025-03-10T01:35:44.303675-07:00,0.0,10.739214,10739.214 +24434,2025-03-10T01:35:55.033461-07:00,0.0,10.729786,10729.786 +24435,2025-03-10T01:36:05.764645-07:00,0.0,10.731184,10731.184 +24436,2025-03-10T01:36:16.490231-07:00,0.0,10.725586,10725.586 +24437,2025-03-10T01:36:27.221492-07:00,0.0,10.731261,10731.261 +24438,2025-03-10T01:36:37.951000-07:00,0.0,10.729508,10729.508 +24439,2025-03-10T01:36:48.682658-07:00,0.0,10.731658,10731.658 +24440,2025-03-10T01:36:59.414478-07:00,0.0,10.73182,10731.82 +24441,2025-03-10T01:37:10.154584-07:00,0.0,10.740106,10740.106 +24442,2025-03-10T01:37:20.883671-07:00,0.0,10.729087,10729.087 +24443,2025-03-10T01:37:31.610235-07:00,0.0,10.726564,10726.564 +24444,2025-03-10T01:37:42.350467-07:00,0.0,10.740232,10740.232 +24445,2025-03-10T01:37:53.076964-07:00,0.0,10.726497,10726.497 +24446,2025-03-10T01:38:03.817680-07:00,0.0,10.740716,10740.716 +24447,2025-03-10T01:38:14.546462-07:00,0.0,10.728782,10728.782 +24448,2025-03-10T01:38:25.282512-07:00,0.0,10.73605,10736.05 +24449,2025-03-10T01:38:36.025497-07:00,0.0,10.742985,10742.985 +24450,2025-03-10T01:38:46.753647-07:00,0.0,10.72815,10728.15 +24451,2025-03-10T01:38:57.496533-07:00,0.0,10.742886,10742.886 +24452,2025-03-10T01:39:08.228467-07:00,0.0,10.731934,10731.934 +24453,2025-03-10T01:39:18.966600-07:00,0.0,10.738133,10738.133 +24454,2025-03-10T01:39:29.691646-07:00,0.0,10.725046,10725.046 +24455,2025-03-10T01:39:40.435304-07:00,0.0,10.743658,10743.658 +24456,2025-03-10T01:39:51.167469-07:00,0.0,10.732165,10732.165 +24457,2025-03-10T01:40:01.895641-07:00,0.0,10.728172,10728.172 +24458,2025-03-10T01:40:12.633765-07:00,0.0,10.738124,10738.124 +24459,2025-03-10T01:40:23.366466-07:00,0.0,10.732701,10732.701 +24460,2025-03-10T01:40:34.094621-07:00,0.0,10.728155,10728.155 +24461,2025-03-10T01:40:44.830461-07:00,0.0,10.73584,10735.84 +24462,2025-03-10T01:40:55.567318-07:00,0.0,10.736857,10736.857 +24463,2025-03-10T01:41:06.293668-07:00,0.0,10.72635,10726.35 +24464,2025-03-10T01:41:17.033468-07:00,0.0,10.7398,10739.8 +24465,2025-03-10T01:41:27.767930-07:00,0.0,10.734462,10734.462 +24466,2025-03-10T01:41:38.495629-07:00,0.0,10.727699,10727.699 +24467,2025-03-10T01:41:49.235542-07:00,0.0,10.739913,10739.913 +24468,2025-03-10T01:41:59.965466-07:00,0.0,10.729924,10729.924 +24469,2025-03-10T01:42:10.702645-07:00,0.0,10.737179,10737.179 +24470,2025-03-10T01:42:21.432533-07:00,0.0,10.729888,10729.888 +24471,2025-03-10T01:42:32.170470-07:00,0.0,10.737937,10737.937 +24472,2025-03-10T01:42:42.894832-07:00,0.0,10.724362,10724.362 +24473,2025-03-10T01:42:53.627529-07:00,0.0,10.732697,10732.697 +24474,2025-03-10T01:43:04.361467-07:00,0.0,10.733938,10733.938 +24475,2025-03-10T01:43:15.102656-07:00,0.0,10.741189,10741.189 +24476,2025-03-10T01:43:25.823491-07:00,0.0,10.720835,10720.835 +24477,2025-03-10T01:43:36.563493-07:00,0.0,10.740002,10740.002 +24478,2025-03-10T01:43:47.287676-07:00,0.0,10.724183,10724.183 +24479,2025-03-10T01:43:58.022861-07:00,0.0,10.735185,10735.185 +24480,2025-03-10T01:44:08.750977-07:00,0.0,10.728116,10728.116 +24481,2025-03-10T01:44:19.484652-07:00,0.0,10.733675,10733.675 +24482,2025-03-10T01:44:30.212748-07:00,0.0,10.728096,10728.096 +24483,2025-03-10T01:44:40.942550-07:00,0.0,10.729802,10729.802 +24484,2025-03-10T01:44:51.679683-07:00,0.0,10.737133,10737.133 +24485,2025-03-10T01:45:02.405644-07:00,0.0,10.725961,10725.961 +24486,2025-03-10T01:45:13.144467-07:00,0.0,10.738823,10738.823 +24487,2025-03-10T01:45:23.875466-07:00,0.0,10.730999,10730.999 +24488,2025-03-10T01:45:34.605493-07:00,0.0,10.730027,10730.027 +24489,2025-03-10T01:45:45.333543-07:00,0.0,10.72805,10728.05 +24490,2025-03-10T01:45:56.069548-07:00,0.0,10.736005,10736.005 +24491,2025-03-10T01:46:06.795197-07:00,0.0,10.725649,10725.649 +24492,2025-03-10T01:46:17.531657-07:00,0.0,10.73646,10736.46 +24493,2025-03-10T01:46:28.263468-07:00,0.0,10.731811,10731.811 +24494,2025-03-10T01:46:38.985483-07:00,0.0,10.722015,10722.015 +24495,2025-03-10T01:46:49.726727-07:00,0.0,10.741244,10741.244 +24496,2025-03-10T01:47:00.450666-07:00,0.0,10.723939,10723.939 +24497,2025-03-10T01:47:11.180648-07:00,0.0,10.729982,10729.982 +24498,2025-03-10T01:47:21.917650-07:00,0.0,10.737002,10737.002 +24499,2025-03-10T01:47:32.648464-07:00,0.0,10.730814,10730.814 +24500,2025-03-10T01:47:43.376471-07:00,0.0,10.728007,10728.007 +24501,2025-03-10T01:47:54.110668-07:00,0.0,10.734197,10734.197 +24502,2025-03-10T01:48:04.836467-07:00,0.0,10.725799,10725.799 +24503,2025-03-10T01:48:15.570678-07:00,0.0,10.734211,10734.211 +24504,2025-03-10T01:48:26.297652-07:00,0.0,10.726974,10726.974 +24505,2025-03-10T01:48:37.036467-07:00,0.0,10.738815,10738.815 +24506,2025-03-10T01:48:47.769465-07:00,0.0,10.732998,10732.998 +24507,2025-03-10T01:48:58.492660-07:00,0.0,10.723195,10723.195 +24508,2025-03-10T01:49:09.231488-07:00,0.0,10.738828,10738.828 +24509,2025-03-10T01:49:19.958680-07:00,0.0,10.727192,10727.192 +24510,2025-03-10T01:49:30.685860-07:00,0.0,10.72718,10727.18 +24511,2025-03-10T01:49:41.419466-07:00,0.0,10.733606,10733.606 +24512,2025-03-10T01:49:52.147464-07:00,0.0,10.727998,10727.998 +24513,2025-03-10T01:50:02.881469-07:00,0.0,10.734005,10734.005 +24514,2025-03-10T01:50:13.609463-07:00,0.0,10.727994,10727.994 +24515,2025-03-10T01:50:24.346464-07:00,0.0,10.737001,10737.001 +24516,2025-03-10T01:50:35.082465-07:00,0.0,10.736001,10736.001 +24517,2025-03-10T01:50:45.811672-07:00,0.0,10.729207,10729.207 +24518,2025-03-10T01:50:56.550617-07:00,0.0,10.738945,10738.945 +24519,2025-03-10T01:51:07.277461-07:00,0.0,10.726844,10726.844 +24520,2025-03-10T01:51:18.005668-07:00,0.0,10.728207,10728.207 +24521,2025-03-10T01:51:28.741821-07:00,0.0,10.736153,10736.153 +24522,2025-03-10T01:51:39.470469-07:00,0.0,10.728648,10728.648 +24523,2025-03-10T01:51:50.202935-07:00,0.0,10.732466,10732.466 +24524,2025-03-10T01:52:00.931478-07:00,0.0,10.728543,10728.543 +24525,2025-03-10T01:52:11.665466-07:00,0.0,10.733988,10733.988 +24526,2025-03-10T01:52:22.398533-07:00,0.0,10.733067,10733.067 +24527,2025-03-10T01:52:33.136268-07:00,0.0,10.737735,10737.735 +24528,2025-03-10T01:52:43.860466-07:00,0.0,10.724198,10724.198 +24529,2025-03-10T01:52:54.595746-07:00,0.0,10.73528,10735.28 +24530,2025-03-10T01:53:05.367664-07:00,0.0,10.771918,10771.918 +24531,2025-03-10T01:53:16.096452-07:00,0.0,10.728788,10728.788 +24532,2025-03-10T01:53:26.823422-07:00,0.0,10.72697,10726.97 +24533,2025-03-10T01:53:37.561420-07:00,0.0,10.737998,10737.998 +24534,2025-03-10T01:53:48.296297-07:00,0.0,10.734877,10734.877 +24535,2025-03-10T01:53:59.018427-07:00,0.0,10.72213,10722.13 +24536,2025-03-10T01:54:09.757932-07:00,0.0,10.739505,10739.505 +24537,2025-03-10T01:54:20.493538-07:00,0.0,10.735606,10735.606 +24538,2025-03-10T01:54:31.220425-07:00,0.0,10.726887,10726.887 +24539,2025-03-10T01:54:41.953422-07:00,0.0,10.732997,10732.997 +24540,2025-03-10T01:54:52.695757-07:00,0.0,10.742335,10742.335 +24541,2025-03-10T01:55:03.429635-07:00,0.0,10.733878,10733.878 +24542,2025-03-10T01:55:14.164523-07:00,0.0,10.734888,10734.888 +24543,2025-03-10T01:55:24.893424-07:00,0.0,10.728901,10728.901 +24544,2025-03-10T01:55:35.634750-07:00,0.0,10.741326,10741.326 +24545,2025-03-10T01:55:46.363342-07:00,0.0,10.728592,10728.592 +24546,2025-03-10T01:55:57.095520-07:00,0.0,10.732178,10732.178 +24547,2025-03-10T01:56:07.827860-07:00,0.0,10.73234,10732.34 +24548,2025-03-10T01:56:18.558619-07:00,0.0,10.730759,10730.759 +24549,2025-03-10T01:56:29.291629-07:00,0.0,10.73301,10733.01 +24550,2025-03-10T01:56:40.033453-07:00,0.0,10.741824,10741.824 +24551,2025-03-10T01:56:50.757885-07:00,0.0,10.724432,10724.432 +24552,2025-03-10T01:57:01.491420-07:00,0.0,10.733535,10733.535 +24553,2025-03-10T01:57:12.225453-07:00,0.0,10.734033,10734.033 +24554,2025-03-10T01:57:22.962419-07:00,0.0,10.736966,10736.966 +24555,2025-03-10T01:57:33.686710-07:00,0.0,10.724291,10724.291 +24556,2025-03-10T01:57:44.422650-07:00,0.0,10.73594,10735.94 +24557,2025-03-10T01:57:55.153427-07:00,0.0,10.730777,10730.777 +24558,2025-03-10T01:58:05.883605-07:00,0.0,10.730178,10730.178 +24559,2025-03-10T01:58:16.610420-07:00,0.0,10.726815,10726.815 +24560,2025-03-10T01:58:27.341420-07:00,0.0,10.731,10731.0 +24561,2025-03-10T01:58:38.071815-07:00,0.0,10.730395,10730.395 +24562,2025-03-10T01:58:48.805671-07:00,0.0,10.733856,10733.856 +24563,2025-03-10T01:58:59.536631-07:00,0.0,10.73096,10730.96 +24564,2025-03-10T01:59:10.280578-07:00,0.0,10.743947,10743.947 +24565,2025-03-10T01:59:21.009824-07:00,0.0,10.729246,10729.246 +24566,2025-03-10T01:59:31.745486-07:00,0.0,10.735662,10735.662 +24567,2025-03-10T01:59:42.469495-07:00,0.0,10.724009,10724.009 +24568,2025-03-10T01:59:53.205611-07:00,0.0,10.736116,10736.116 +24569,2025-03-10T02:00:03.929640-07:00,0.0,10.724029,10724.029 +24570,2025-03-10T02:00:14.664721-07:00,0.0,10.735081,10735.081 +24571,2025-03-10T02:00:25.393624-07:00,0.0,10.728903,10728.903 +24572,2025-03-10T02:00:36.123456-07:00,0.0,10.729832,10729.832 +24573,2025-03-10T02:00:46.856427-07:00,0.0,10.732971,10732.971 +24574,2025-03-10T02:00:57.581746-07:00,0.0,10.725319,10725.319 +24575,2025-03-10T02:01:08.316745-07:00,0.0,10.734999,10734.999 +24576,2025-03-10T02:01:19.049628-07:00,0.0,10.732883,10732.883 +24577,2025-03-10T02:01:29.777594-07:00,0.0,10.727966,10727.966 +24578,2025-03-10T02:01:40.514424-07:00,0.0,10.73683,10736.83 +24579,2025-03-10T02:01:51.246426-07:00,0.0,10.732002,10732.002 +24580,2025-03-10T02:02:01.974149-07:00,0.0,10.727723,10727.723 +24581,2025-03-10T02:02:12.709127-07:00,0.0,10.734978,10734.978 +24582,2025-03-10T02:02:23.444622-07:00,0.0,10.735495,10735.495 +24583,2025-03-10T02:02:34.174653-07:00,0.0,10.730031,10730.031 +24584,2025-03-10T02:02:44.900422-07:00,0.0,10.725769,10725.769 +24585,2025-03-10T02:02:55.633418-07:00,0.0,10.732996,10732.996 +24586,2025-03-10T02:03:06.373493-07:00,0.0,10.740075,10740.075 +24587,2025-03-10T02:03:17.098851-07:00,0.0,10.725358,10725.358 +24588,2025-03-10T02:03:27.836578-07:00,0.0,10.737727,10737.727 +24589,2025-03-10T02:03:38.568638-07:00,0.0,10.73206,10732.06 +24590,2025-03-10T02:03:49.305691-07:00,0.0,10.737053,10737.053 +24591,2025-03-10T02:04:00.035828-07:00,0.0,10.730137,10730.137 +24592,2025-03-10T02:04:10.768599-07:00,0.0,10.732771,10732.771 +24593,2025-03-10T02:04:21.500424-07:00,0.0,10.731825,10731.825 +24594,2025-03-10T02:04:32.228616-07:00,0.0,10.728192,10728.192 +24595,2025-03-10T02:04:42.965447-07:00,0.0,10.736831,10736.831 +24596,2025-03-10T02:04:53.692627-07:00,0.0,10.72718,10727.18 +24597,2025-03-10T02:05:04.428617-07:00,0.0,10.73599,10735.99 +24598,2025-03-10T02:05:15.162734-07:00,0.0,10.734117,10734.117 +24599,2025-03-10T02:05:25.892422-07:00,0.0,10.729688,10729.688 +24600,2025-03-10T02:05:36.619454-07:00,0.0,10.727032,10727.032 +24601,2025-03-10T02:05:47.348653-07:00,0.0,10.729199,10729.199 +24602,2025-03-10T02:05:58.078547-07:00,0.0,10.729894,10729.894 +24603,2025-03-10T02:06:08.814640-07:00,0.0,10.736093,10736.093 +24604,2025-03-10T02:06:19.539422-07:00,0.0,10.724782,10724.782 +24605,2025-03-10T02:06:30.273425-07:00,0.0,10.734003,10734.003 +24606,2025-03-10T02:06:41.005424-07:00,0.0,10.731999,10731.999 +24607,2025-03-10T02:06:51.731519-07:00,0.0,10.726095,10726.095 +24608,2025-03-10T02:07:02.471641-07:00,0.0,10.740122,10740.122 +24609,2025-03-10T02:07:13.199672-07:00,0.0,10.728031,10728.031 +24610,2025-03-10T02:07:23.933602-07:00,0.0,10.73393,10733.93 +24611,2025-03-10T02:07:34.662422-07:00,0.0,10.72882,10728.82 +24612,2025-03-10T02:07:45.390431-07:00,0.0,10.728009,10728.009 +24613,2025-03-10T02:07:56.115702-07:00,0.0,10.725271,10725.271 +24614,2025-03-10T02:08:06.853666-07:00,0.0,10.737964,10737.964 +24615,2025-03-10T02:08:17.577605-07:00,0.0,10.723939,10723.939 +24616,2025-03-10T02:08:28.313153-07:00,0.0,10.735548,10735.548 +24617,2025-03-10T02:08:39.046424-07:00,0.0,10.733271,10733.271 +24618,2025-03-10T02:08:49.773726-07:00,0.0,10.727302,10727.302 +24619,2025-03-10T02:09:00.511628-07:00,0.0,10.737902,10737.902 +24620,2025-03-10T02:09:11.243739-07:00,0.0,10.732111,10732.111 +24621,2025-03-10T02:09:21.972616-07:00,0.0,10.728877,10728.877 +24622,2025-03-10T02:09:32.700614-07:00,0.0,10.727998,10727.998 +24623,2025-03-10T02:09:43.434423-07:00,0.0,10.733809,10733.809 +24624,2025-03-10T02:09:54.163468-07:00,0.0,10.729045,10729.045 +24625,2025-03-10T02:10:04.892612-07:00,0.0,10.729144,10729.144 +24626,2025-03-10T02:10:15.623548-07:00,0.0,10.730936,10730.936 +24627,2025-03-10T02:10:26.349611-07:00,0.0,10.726063,10726.063 +24628,2025-03-10T02:10:37.089603-07:00,0.0,10.739992,10739.992 +24629,2025-03-10T02:10:47.814424-07:00,0.0,10.724821,10724.821 +24630,2025-03-10T02:10:58.548572-07:00,0.0,10.734148,10734.148 +24631,2025-03-10T02:11:09.275593-07:00,0.0,10.727021,10727.021 +24632,2025-03-10T02:11:19.999222-07:00,0.0,10.723629,10723.629 +24633,2025-03-10T02:11:30.737423-07:00,0.0,10.738201,10738.201 +24634,2025-03-10T02:11:41.461094-07:00,0.0,10.723671,10723.671 +24635,2025-03-10T02:11:52.194423-07:00,0.0,10.733329,10733.329 +24636,2025-03-10T02:12:02.926626-07:00,0.0,10.732203,10732.203 +24637,2025-03-10T02:12:13.653600-07:00,0.0,10.726974,10726.974 +24638,2025-03-10T02:12:24.390466-07:00,0.0,10.736866,10736.866 +24639,2025-03-10T02:12:35.121623-07:00,0.0,10.731157,10731.157 +24640,2025-03-10T02:12:45.851003-07:00,0.0,10.72938,10729.38 +24641,2025-03-10T02:12:56.574630-07:00,0.0,10.723627,10723.627 +24642,2025-03-10T02:13:07.312421-07:00,0.0,10.737791,10737.791 +24643,2025-03-10T02:13:18.038815-07:00,0.0,10.726394,10726.394 +24644,2025-03-10T02:13:28.768423-07:00,0.0,10.729608,10729.608 +24645,2025-03-10T02:13:39.507794-07:00,0.0,10.739371,10739.371 +24646,2025-03-10T02:13:50.232601-07:00,0.0,10.724807,10724.807 +24647,2025-03-10T02:14:00.972907-07:00,0.0,10.740306,10740.306 +24648,2025-03-10T02:14:11.697443-07:00,0.0,10.724536,10724.536 +24649,2025-03-10T02:14:22.428421-07:00,0.0,10.730978,10730.978 +24650,2025-03-10T02:14:33.158009-07:00,0.0,10.729588,10729.588 +24651,2025-03-10T02:14:43.887426-07:00,0.0,10.729417,10729.417 +24652,2025-03-10T02:14:54.617741-07:00,0.0,10.730315,10730.315 +24653,2025-03-10T02:15:05.352442-07:00,0.0,10.734701,10734.701 +24654,2025-03-10T02:15:16.088156-07:00,0.0,10.735714,10735.714 +24655,2025-03-10T02:15:26.819425-07:00,0.0,10.731269,10731.269 +24656,2025-03-10T02:15:37.550593-07:00,0.0,10.731168,10731.168 +24657,2025-03-10T02:15:48.281419-07:00,0.0,10.730826,10730.826 +24658,2025-03-10T02:15:59.023426-07:00,0.0,10.742007,10742.007 +24659,2025-03-10T02:16:09.759573-07:00,0.0,10.736147,10736.147 +24660,2025-03-10T02:16:20.497645-07:00,0.0,10.738072,10738.072 +24661,2025-03-10T02:16:31.226539-07:00,0.0,10.728894,10728.894 +24662,2025-03-10T02:16:41.962425-07:00,0.0,10.735886,10735.886 +24663,2025-03-10T02:16:52.692673-07:00,0.0,10.730248,10730.248 +24664,2025-03-10T02:17:03.416501-07:00,0.0,10.723828,10723.828 +24665,2025-03-10T02:17:14.153425-07:00,0.0,10.736924,10736.924 +24666,2025-03-10T02:17:24.880604-07:00,0.0,10.727179,10727.179 +24667,2025-03-10T02:17:35.606624-07:00,0.0,10.72602,10726.02 +24668,2025-03-10T02:17:46.345426-07:00,0.0,10.738802,10738.802 +24669,2025-03-10T02:17:57.073584-07:00,0.0,10.728158,10728.158 +24670,2025-03-10T02:18:07.804673-07:00,0.0,10.731089,10731.089 +24671,2025-03-10T02:18:18.528938-07:00,0.0,10.724265,10724.265 +24672,2025-03-10T02:18:29.267917-07:00,0.0,10.738979,10738.979 +24673,2025-03-10T02:18:39.991450-07:00,0.0,10.723533,10723.533 +24674,2025-03-10T02:18:50.725425-07:00,0.0,10.733975,10733.975 +24675,2025-03-10T02:19:01.456598-07:00,0.0,10.731173,10731.173 +24676,2025-03-10T02:19:12.189673-07:00,0.0,10.733075,10733.075 +24677,2025-03-10T02:19:22.920628-07:00,0.0,10.730955,10730.955 +24678,2025-03-10T02:19:33.650633-07:00,0.0,10.730005,10730.005 +24679,2025-03-10T02:19:44.387553-07:00,0.0,10.73692,10736.92 +24680,2025-03-10T02:19:55.114517-07:00,0.0,10.726964,10726.964 +24681,2025-03-10T02:20:05.850515-07:00,0.0,10.735998,10735.998 +24682,2025-03-10T02:20:16.584423-07:00,0.0,10.733908,10733.908 +24683,2025-03-10T02:20:27.319078-07:00,0.0,10.734655,10734.655 +24684,2025-03-10T02:20:38.045627-07:00,0.0,10.726549,10726.549 +24685,2025-03-10T02:20:48.778611-07:00,0.0,10.732984,10732.984 +24686,2025-03-10T02:20:59.508474-07:00,0.0,10.729863,10729.863 +24687,2025-03-10T02:21:10.229425-07:00,0.0,10.720951,10720.951 +24688,2025-03-10T02:21:20.967422-07:00,0.0,10.737997,10737.997 +24689,2025-03-10T02:21:31.694664-07:00,0.0,10.727242,10727.242 +24690,2025-03-10T02:21:42.429510-07:00,0.0,10.734846,10734.846 +24691,2025-03-10T02:21:53.166839-07:00,0.0,10.737329,10737.329 +24692,2025-03-10T02:22:03.897614-07:00,0.0,10.730775,10730.775 +24693,2025-03-10T02:22:14.628636-07:00,0.0,10.731022,10731.022 +24694,2025-03-10T02:22:25.356619-07:00,0.0,10.727983,10727.983 +24695,2025-03-10T02:22:36.085038-07:00,0.0,10.728419,10728.419 +24696,2025-03-10T02:22:46.815495-07:00,0.0,10.730457,10730.457 +24697,2025-03-10T02:22:57.546622-07:00,0.0,10.731127,10731.127 +24698,2025-03-10T02:23:08.288615-07:00,0.0,10.741993,10741.993 +24699,2025-03-10T02:23:19.011498-07:00,0.0,10.722883,10722.883 +24700,2025-03-10T02:23:29.748722-07:00,0.0,10.737224,10737.224 +24701,2025-03-10T02:23:40.481431-07:00,0.0,10.732709,10732.709 +24702,2025-03-10T02:23:51.213257-07:00,0.0,10.731826,10731.826 +24703,2025-03-10T02:24:01.945427-07:00,0.0,10.73217,10732.17 +24704,2025-03-10T02:24:12.669675-07:00,0.0,10.724248,10724.248 +24705,2025-03-10T02:24:23.406824-07:00,0.0,10.737149,10737.149 +24706,2025-03-10T02:24:34.144486-07:00,0.0,10.737662,10737.662 +24707,2025-03-10T02:24:44.871426-07:00,0.0,10.72694,10726.94 +24708,2025-03-10T02:24:55.597272-07:00,0.0,10.725846,10725.846 +24709,2025-03-10T02:25:06.329190-07:00,0.0,10.731918,10731.918 +24710,2025-03-10T02:25:17.063496-07:00,0.0,10.734306,10734.306 +24711,2025-03-10T02:25:27.795599-07:00,0.0,10.732103,10732.103 +24712,2025-03-10T02:25:38.527423-07:00,0.0,10.731824,10731.824 +24713,2025-03-10T02:25:49.264563-07:00,0.0,10.73714,10737.14 +24714,2025-03-10T02:25:59.992426-07:00,0.0,10.727863,10727.863 +24715,2025-03-10T02:26:10.725731-07:00,0.0,10.733305,10733.305 +24716,2025-03-10T02:26:21.456423-07:00,0.0,10.730692,10730.692 +24717,2025-03-10T02:26:32.188056-07:00,0.0,10.731633,10731.633 +24718,2025-03-10T02:26:42.930637-07:00,0.0,10.742581,10742.581 +24719,2025-03-10T02:26:53.652421-07:00,0.0,10.721784,10721.784 +24720,2025-03-10T02:27:04.390773-07:00,0.0,10.738352,10738.352 +24721,2025-03-10T02:27:15.123427-07:00,0.0,10.732654,10732.654 +24722,2025-03-10T02:27:25.848426-07:00,0.0,10.724999,10724.999 +24723,2025-03-10T02:27:36.588422-07:00,0.0,10.739996,10739.996 +24724,2025-03-10T02:27:47.319651-07:00,0.0,10.731229,10731.229 +24725,2025-03-10T02:27:58.046424-07:00,0.0,10.726773,10726.773 +24726,2025-03-10T02:28:08.783454-07:00,0.0,10.73703,10737.03 +24727,2025-03-10T02:28:19.509418-07:00,0.0,10.725964,10725.964 +24728,2025-03-10T02:28:30.241266-07:00,0.0,10.731848,10731.848 +24729,2025-03-10T02:28:40.974484-07:00,0.0,10.733218,10733.218 +24730,2025-03-10T02:28:51.706511-07:00,0.0,10.732027,10732.027 +24731,2025-03-10T02:29:02.434066-07:00,0.0,10.727555,10727.555 +24732,2025-03-10T02:29:13.163489-07:00,0.0,10.729423,10729.423 +24733,2025-03-10T02:29:23.898642-07:00,0.0,10.735153,10735.153 +24734,2025-03-10T02:29:34.627597-07:00,0.0,10.728955,10728.955 +24735,2025-03-10T02:29:45.366390-07:00,0.0,10.738793,10738.793 +24736,2025-03-10T02:29:56.090422-07:00,0.0,10.724032,10724.032 +24737,2025-03-10T02:30:06.819598-07:00,0.0,10.729176,10729.176 +24738,2025-03-10T02:30:17.551423-07:00,0.0,10.731825,10731.825 +24739,2025-03-10T02:30:28.285491-07:00,0.0,10.734068,10734.068 +24740,2025-03-10T02:30:39.018421-07:00,0.0,10.73293,10732.93 +24741,2025-03-10T02:30:49.745426-07:00,0.0,10.727005,10727.005 +24742,2025-03-10T02:31:00.474632-07:00,0.0,10.729206,10729.206 +24743,2025-03-10T02:31:11.208163-07:00,0.0,10.733531,10733.531 +24744,2025-03-10T02:31:21.936321-07:00,0.0,10.728158,10728.158 +24745,2025-03-10T02:31:32.664425-07:00,0.0,10.728104,10728.104 +24746,2025-03-10T02:31:43.403727-07:00,0.0,10.739302,10739.302 +24747,2025-03-10T02:31:54.133178-07:00,0.0,10.729451,10729.451 +24748,2025-03-10T02:32:04.858492-07:00,0.0,10.725314,10725.314 +24749,2025-03-10T02:32:15.586607-07:00,0.0,10.728115,10728.115 +24750,2025-03-10T02:32:26.317609-07:00,0.0,10.731002,10731.002 +24751,2025-03-10T02:32:37.049423-07:00,0.0,10.731814,10731.814 +24752,2025-03-10T02:32:47.787425-07:00,0.0,10.738002,10738.002 +24753,2025-03-10T02:32:58.507635-07:00,0.0,10.72021,10720.21 +24754,2025-03-10T02:33:09.243509-07:00,0.0,10.735874,10735.874 +24755,2025-03-10T02:33:19.971457-07:00,0.0,10.727948,10727.948 +24756,2025-03-10T02:33:30.691611-07:00,0.0,10.720154,10720.154 +24757,2025-03-10T02:33:41.424420-07:00,0.0,10.732809,10732.809 +24758,2025-03-10T02:33:52.150446-07:00,0.0,10.726026,10726.026 +24759,2025-03-10T02:34:02.878445-07:00,0.0,10.727999,10727.999 +24760,2025-03-10T02:34:13.604815-07:00,0.0,10.72637,10726.37 +24761,2025-03-10T02:34:24.327495-07:00,0.0,10.72268,10722.68 +24762,2025-03-10T02:34:35.060426-07:00,0.0,10.732931,10732.931 +24763,2025-03-10T02:34:45.784449-07:00,0.0,10.724023,10724.023 +24764,2025-03-10T02:34:56.513427-07:00,0.0,10.728978,10728.978 +24765,2025-03-10T02:35:07.236622-07:00,0.0,10.723195,10723.195 +24766,2025-03-10T02:35:17.961983-07:00,0.0,10.725361,10725.361 +24767,2025-03-10T02:35:28.695426-07:00,0.0,10.733443,10733.443 +24768,2025-03-10T02:35:39.422701-07:00,0.0,10.727275,10727.275 +24769,2025-03-10T02:35:50.147483-07:00,0.0,10.724782,10724.782 +24770,2025-03-10T02:36:00.879634-07:00,0.0,10.732151,10732.151 +24771,2025-03-10T02:36:11.600627-07:00,0.0,10.720993,10720.993 +24772,2025-03-10T02:36:22.326452-07:00,0.0,10.725825,10725.825 +24773,2025-03-10T02:36:33.059132-07:00,0.0,10.73268,10732.68 +24774,2025-03-10T02:36:43.788908-07:00,0.0,10.729776,10729.776 +24775,2025-03-10T02:36:54.520749-07:00,0.0,10.731841,10731.841 +24776,2025-03-10T02:37:05.246621-07:00,0.0,10.725872,10725.872 +24777,2025-03-10T02:37:15.969520-07:00,0.0,10.722899,10722.899 +24778,2025-03-10T02:37:26.700603-07:00,0.0,10.731083,10731.083 +24779,2025-03-10T02:37:37.426423-07:00,0.0,10.72582,10725.82 +24780,2025-03-10T02:37:48.162543-07:00,0.0,10.73612,10736.12 +24781,2025-03-10T02:37:58.881425-07:00,0.0,10.718882,10718.882 +24782,2025-03-10T02:38:09.605423-07:00,0.0,10.723998,10723.998 +24783,2025-03-10T02:38:20.333619-07:00,0.0,10.728196,10728.196 +24784,2025-03-10T02:38:31.059468-07:00,0.0,10.725849,10725.849 +24785,2025-03-10T02:38:41.796428-07:00,0.0,10.73696,10736.96 +24786,2025-03-10T02:38:52.520286-07:00,0.0,10.723858,10723.858 +24787,2025-03-10T02:39:03.245630-07:00,0.0,10.725344,10725.344 +24788,2025-03-10T02:39:13.971591-07:00,0.0,10.725961,10725.961 +24789,2025-03-10T02:39:24.700717-07:00,0.0,10.729126,10729.126 +24790,2025-03-10T02:39:35.436423-07:00,0.0,10.735706,10735.706 +24791,2025-03-10T02:39:46.162658-07:00,0.0,10.726235,10726.235 +24792,2025-03-10T02:39:56.884424-07:00,0.0,10.721766,10721.766 +24793,2025-03-10T02:40:07.614459-07:00,0.0,10.730035,10730.035 +24794,2025-03-10T02:40:18.337425-07:00,0.0,10.722966,10722.966 +24795,2025-03-10T02:40:29.067518-07:00,0.0,10.730093,10730.093 +24796,2025-03-10T02:40:39.795613-07:00,0.0,10.728095,10728.095 +24797,2025-03-10T02:40:50.529522-07:00,0.0,10.733909,10733.909 +24798,2025-03-10T02:41:01.259819-07:00,0.0,10.730297,10730.297 +24799,2025-03-10T02:41:11.986627-07:00,0.0,10.726808,10726.808 +24800,2025-03-10T02:41:22.706426-07:00,0.0,10.719799,10719.799 +24801,2025-03-10T02:41:33.435884-07:00,0.0,10.729458,10729.458 +24802,2025-03-10T02:41:44.168423-07:00,0.0,10.732539,10732.539 +24803,2025-03-10T02:41:54.896424-07:00,0.0,10.728001,10728.001 +24804,2025-03-10T02:42:05.617844-07:00,0.0,10.72142,10721.42 +24805,2025-03-10T02:42:16.346422-07:00,0.0,10.728578,10728.578 +24806,2025-03-10T02:42:27.078652-07:00,0.0,10.73223,10732.23 +24807,2025-03-10T02:42:37.811611-07:00,0.0,10.732959,10732.959 +24808,2025-03-10T02:42:48.529425-07:00,0.0,10.717814,10717.814 +24809,2025-03-10T02:42:59.258639-07:00,0.0,10.729214,10729.214 +24810,2025-03-10T02:43:09.987595-07:00,0.0,10.728956,10728.956 +24811,2025-03-10T02:43:20.719498-07:00,0.0,10.731903,10731.903 +24812,2025-03-10T02:43:31.447819-07:00,0.0,10.728321,10728.321 +24813,2025-03-10T02:43:42.181422-07:00,0.0,10.733603,10733.603 +24814,2025-03-10T02:43:52.906122-07:00,0.0,10.7247,10724.7 +24815,2025-03-10T02:44:03.633195-07:00,0.0,10.727073,10727.073 +24816,2025-03-10T02:44:14.352488-07:00,0.0,10.719293,10719.293 +24817,2025-03-10T02:44:25.078593-07:00,0.0,10.726105,10726.105 +24818,2025-03-10T02:44:35.810635-07:00,0.0,10.732042,10732.042 +24819,2025-03-10T02:44:46.533425-07:00,0.0,10.72279,10722.79 +24820,2025-03-10T02:44:57.265450-07:00,0.0,10.732025,10732.025 +24821,2025-03-10T02:45:07.994421-07:00,0.0,10.728971,10728.971 +24822,2025-03-10T02:45:18.716602-07:00,0.0,10.722181,10722.181 +24823,2025-03-10T02:45:29.454178-07:00,0.0,10.737576,10737.576 +24824,2025-03-10T02:45:40.170771-07:00,0.0,10.716593,10716.593 +24825,2025-03-10T02:45:50.904277-07:00,0.0,10.733506,10733.506 +24826,2025-03-10T02:46:01.635035-07:00,0.0,10.730758,10730.758 +24827,2025-03-10T02:46:12.369481-07:00,0.0,10.734446,10734.446 +24828,2025-03-10T02:46:23.093181-07:00,0.0,10.7237,10723.7 +24829,2025-03-10T02:46:33.827421-07:00,0.0,10.73424,10734.24 +24830,2025-03-10T02:46:44.554073-07:00,0.0,10.726652,10726.652 +24831,2025-03-10T02:46:55.281446-07:00,0.0,10.727373,10727.373 +24832,2025-03-10T02:47:06.009427-07:00,0.0,10.727981,10727.981 +24833,2025-03-10T02:47:16.744639-07:00,0.0,10.735212,10735.212 +24834,2025-03-10T02:47:27.463424-07:00,0.0,10.718785,10718.785 +24835,2025-03-10T02:47:38.195586-07:00,0.0,10.732162,10732.162 +24836,2025-03-10T02:47:48.918444-07:00,0.0,10.722858,10722.858 +24837,2025-03-10T02:47:59.639427-07:00,0.0,10.720983,10720.983 +24838,2025-03-10T02:48:10.364513-07:00,0.0,10.725086,10725.086 +24839,2025-03-10T02:48:21.097422-07:00,0.0,10.732909,10732.909 +24840,2025-03-10T02:48:31.815604-07:00,0.0,10.718182,10718.182 +24841,2025-03-10T02:48:42.541415-07:00,0.0,10.725811,10725.811 +24842,2025-03-10T02:48:53.266002-07:00,0.0,10.724587,10724.587 +24843,2025-03-10T02:49:03.996426-07:00,0.0,10.730424,10730.424 +24844,2025-03-10T02:49:14.717642-07:00,0.0,10.721216,10721.216 +24845,2025-03-10T02:49:25.441573-07:00,0.0,10.723931,10723.931 +24846,2025-03-10T02:49:36.167489-07:00,0.0,10.725916,10725.916 +24847,2025-03-10T02:49:46.895431-07:00,0.0,10.727942,10727.942 +24848,2025-03-10T02:49:57.616423-07:00,0.0,10.720992,10720.992 +24849,2025-03-10T02:50:08.339587-07:00,0.0,10.723164,10723.164 +24850,2025-03-10T02:50:19.064627-07:00,0.0,10.72504,10725.04 +24851,2025-03-10T02:50:29.789602-07:00,0.0,10.724975,10724.975 +24852,2025-03-10T02:50:40.514601-07:00,0.0,10.724999,10724.999 +24853,2025-03-10T02:50:51.239637-07:00,0.0,10.725036,10725.036 +24854,2025-03-10T02:51:01.962678-07:00,0.0,10.723041,10723.041 +24855,2025-03-10T02:51:12.683478-07:00,0.0,10.7208,10720.8 +24856,2025-03-10T02:51:23.406632-07:00,0.0,10.723154,10723.154 +24857,2025-03-10T02:51:34.131423-07:00,0.0,10.724791,10724.791 +24858,2025-03-10T02:51:44.859611-07:00,0.0,10.728188,10728.188 +24859,2025-03-10T02:51:55.586624-07:00,0.0,10.727013,10727.013 +24860,2025-03-10T02:52:06.315614-07:00,0.0,10.72899,10728.99 +24861,2025-03-10T02:52:17.040455-07:00,0.0,10.724841,10724.841 +24862,2025-03-10T02:52:27.769418-07:00,0.0,10.728963,10728.963 +24863,2025-03-10T02:52:38.488321-07:00,0.0,10.718903,10718.903 +24864,2025-03-10T02:52:49.216425-07:00,0.0,10.728104,10728.104 +24865,2025-03-10T02:52:59.879264-07:00,0.0,10.662839,10662.839 +24866,2025-03-10T02:53:10.604806-07:00,0.0,10.725542,10725.542 +24867,2025-03-10T02:53:21.322988-07:00,0.0,10.718182,10718.182 +24868,2025-03-10T02:53:32.049011-07:00,0.0,10.726023,10726.023 +24869,2025-03-10T02:53:42.771993-07:00,0.0,10.722982,10722.982 +24870,2025-03-10T02:53:53.495809-07:00,0.0,10.723816,10723.816 +24871,2025-03-10T02:54:04.221022-07:00,0.0,10.725213,10725.213 +24872,2025-03-10T02:54:14.944893-07:00,0.0,10.723871,10723.871 +24873,2025-03-10T02:54:25.661989-07:00,0.0,10.717096,10717.096 +24874,2025-03-10T02:54:36.383025-07:00,0.0,10.721036,10721.036 +24875,2025-03-10T02:54:47.104848-07:00,0.0,10.721823,10721.823 +24876,2025-03-10T02:54:57.821846-07:00,0.0,10.716998,10716.998 +24877,2025-03-10T02:55:08.550069-07:00,0.0,10.728223,10728.223 +24878,2025-03-10T02:55:19.269428-07:00,0.0,10.719359,10719.359 +24879,2025-03-10T02:55:29.992951-07:00,0.0,10.723523,10723.523 +24880,2025-03-10T02:55:40.718829-07:00,0.0,10.725878,10725.878 +24881,2025-03-10T02:55:51.446161-07:00,0.0,10.727332,10727.332 +24882,2025-03-10T02:56:02.157802-07:00,0.0,10.711641,10711.641 +24883,2025-03-10T02:56:12.878838-07:00,0.0,10.721036,10721.036 +24884,2025-03-10T02:56:23.605893-07:00,0.0,10.727055,10727.055 +24885,2025-03-10T02:56:34.331090-07:00,0.0,10.725197,10725.197 +24886,2025-03-10T02:56:45.048915-07:00,0.0,10.717825,10717.825 +24887,2025-03-10T02:56:55.775840-07:00,0.0,10.726925,10726.925 +24888,2025-03-10T02:57:06.491808-07:00,0.0,10.715968,10715.968 +24889,2025-03-10T02:57:17.218900-07:00,0.0,10.727092,10727.092 +24890,2025-03-10T02:57:27.931805-07:00,0.0,10.712905,10712.905 +24891,2025-03-10T02:57:38.658869-07:00,0.0,10.727064,10727.064 +24892,2025-03-10T02:57:49.372835-07:00,0.0,10.713966,10713.966 +24893,2025-03-10T02:58:00.104087-07:00,0.0,10.731252,10731.252 +24894,2025-03-10T02:58:10.816849-07:00,0.0,10.712762,10712.762 +24895,2025-03-10T02:58:21.537821-07:00,0.0,10.720972,10720.972 +24896,2025-03-10T02:58:32.261013-07:00,0.0,10.723192,10723.192 +24897,2025-03-10T02:58:42.982000-07:00,0.0,10.720987,10720.987 +24898,2025-03-10T02:58:53.706872-07:00,0.0,10.724872,10724.872 +24899,2025-03-10T02:59:04.419975-07:00,0.0,10.713103,10713.103 +24900,2025-03-10T02:59:15.146019-07:00,0.0,10.726044,10726.044 +24901,2025-03-10T02:59:25.866359-07:00,0.0,10.72034,10720.34 +24902,2025-03-10T02:59:36.589809-07:00,0.0,10.72345,10723.45 +24903,2025-03-10T02:59:47.316219-07:00,0.0,10.72641,10726.41 +24904,2025-03-10T02:59:58.029973-07:00,0.0,10.713754,10713.754 +24905,2025-03-10T03:00:08.758146-07:00,0.0,10.728173,10728.173 +24906,2025-03-10T03:00:19.477966-07:00,0.0,10.71982,10719.82 +24907,2025-03-10T03:00:30.198115-07:00,0.0,10.720149,10720.149 +24908,2025-03-10T03:00:40.916874-07:00,0.0,10.718759,10718.759 +24909,2025-03-10T03:00:51.643999-07:00,0.0,10.727125,10727.125 +24910,2025-03-10T03:01:02.362882-07:00,0.0,10.718883,10718.883 +24911,2025-03-10T03:01:13.084938-07:00,0.0,10.722056,10722.056 +24912,2025-03-10T03:01:23.805807-07:00,0.0,10.720869,10720.869 +24913,2025-03-10T03:01:34.522987-07:00,0.0,10.71718,10717.18 +24914,2025-03-10T03:01:45.251005-07:00,0.0,10.728018,10728.018 +24915,2025-03-10T03:01:55.966059-07:00,0.0,10.715054,10715.054 +24916,2025-03-10T03:02:06.693804-07:00,0.0,10.727745,10727.745 +24917,2025-03-10T03:02:17.410989-07:00,0.0,10.717185,10717.185 +24918,2025-03-10T03:02:28.131978-07:00,0.0,10.720989,10720.989 +24919,2025-03-10T03:02:38.863880-07:00,0.0,10.731902,10731.902 +24920,2025-03-10T03:02:49.585991-07:00,0.0,10.722111,10722.111 +24921,2025-03-10T03:03:00.307219-07:00,0.0,10.721228,10721.228 +24922,2025-03-10T03:03:11.022803-07:00,0.0,10.715584,10715.584 +24923,2025-03-10T03:03:21.751833-07:00,0.0,10.72903,10729.03 +24924,2025-03-10T03:03:32.469836-07:00,0.0,10.718003,10718.003 +24925,2025-03-10T03:03:43.196990-07:00,0.0,10.727154,10727.154 +24926,2025-03-10T03:03:53.917882-07:00,0.0,10.720892,10720.892 +24927,2025-03-10T03:04:04.649809-07:00,0.0,10.731927,10731.927 +24928,2025-03-10T03:04:15.371180-07:00,0.0,10.721371,10721.371 +24929,2025-03-10T03:04:26.094812-07:00,0.0,10.723632,10723.632 +24930,2025-03-10T03:04:36.811805-07:00,0.0,10.716993,10716.993 +24931,2025-03-10T03:04:47.537010-07:00,0.0,10.725205,10725.205 +24932,2025-03-10T03:04:58.263414-07:00,0.0,10.726404,10726.404 +24933,2025-03-10T03:05:08.982809-07:00,0.0,10.719395,10719.395 +24934,2025-03-10T03:05:19.709982-07:00,0.0,10.727173,10727.173 +24935,2025-03-10T03:05:30.428156-07:00,0.0,10.718174,10718.174 +24936,2025-03-10T03:05:41.152972-07:00,0.0,10.724816,10724.816 +24937,2025-03-10T03:05:51.879803-07:00,0.0,10.726831,10726.831 +24938,2025-03-10T03:06:02.601050-07:00,0.0,10.721247,10721.247 +24939,2025-03-10T03:06:13.322855-07:00,0.0,10.721805,10721.805 +24940,2025-03-10T03:06:24.045887-07:00,0.0,10.723032,10723.032 +24941,2025-03-10T03:06:34.780130-07:00,0.0,10.734243,10734.243 +24942,2025-03-10T03:06:45.501810-07:00,0.0,10.72168,10721.68 +24943,2025-03-10T03:06:56.229992-07:00,0.0,10.728182,10728.182 +24944,2025-03-10T03:07:06.958091-07:00,0.0,10.728099,10728.099 +24945,2025-03-10T03:07:17.673991-07:00,0.0,10.7159,10715.9 +24946,2025-03-10T03:07:28.405810-07:00,0.0,10.731819,10731.819 +24947,2025-03-10T03:07:39.135011-07:00,0.0,10.729201,10729.201 +24948,2025-03-10T03:07:49.853806-07:00,0.0,10.718795,10718.795 +24949,2025-03-10T03:08:00.589807-07:00,0.0,10.736001,10736.001 +24950,2025-03-10T03:08:11.316040-07:00,0.0,10.726233,10726.233 +24951,2025-03-10T03:08:22.041040-07:00,0.0,10.725,10725.0 +24952,2025-03-10T03:08:32.765815-07:00,0.0,10.724775,10724.775 +24953,2025-03-10T03:08:43.489881-07:00,0.0,10.724066,10724.066 +24954,2025-03-10T03:08:54.215807-07:00,0.0,10.725926,10725.926 +24955,2025-03-10T03:09:04.944000-07:00,0.0,10.728193,10728.193 +24956,2025-03-10T03:09:15.669885-07:00,0.0,10.725885,10725.885 +24957,2025-03-10T03:09:26.398161-07:00,0.0,10.728276,10728.276 +24958,2025-03-10T03:09:37.126801-07:00,0.0,10.72864,10728.64 +24959,2025-03-10T03:09:47.855019-07:00,0.0,10.728218,10728.218 +24960,2025-03-10T03:09:58.585816-07:00,0.0,10.730797,10730.797 +24961,2025-03-10T03:10:09.313808-07:00,0.0,10.727992,10727.992 +24962,2025-03-10T03:10:20.041023-07:00,0.0,10.727215,10727.215 +24963,2025-03-10T03:10:30.764603-07:00,0.0,10.72358,10723.58 +24964,2025-03-10T03:10:41.498872-07:00,0.0,10.734269,10734.269 +24965,2025-03-10T03:10:52.230803-07:00,0.0,10.731931,10731.931 +24966,2025-03-10T03:11:02.953861-07:00,0.0,10.723058,10723.058 +24967,2025-03-10T03:11:13.673004-07:00,0.0,10.719143,10719.143 +24968,2025-03-10T03:11:24.400420-07:00,0.0,10.727416,10727.416 +24969,2025-03-10T03:11:35.129802-07:00,0.0,10.729382,10729.382 +24970,2025-03-10T03:11:45.857843-07:00,0.0,10.728041,10728.041 +24971,2025-03-10T03:11:56.578901-07:00,0.0,10.721058,10721.058 +24972,2025-03-10T03:12:07.308831-07:00,0.0,10.72993,10729.93 +24973,2025-03-10T03:12:18.037006-07:00,0.0,10.728175,10728.175 +24974,2025-03-10T03:12:28.757841-07:00,0.0,10.720835,10720.835 +24975,2025-03-10T03:12:39.483993-07:00,0.0,10.726152,10726.152 +24976,2025-03-10T03:12:50.205954-07:00,0.0,10.721961,10721.961 +24977,2025-03-10T03:13:00.940014-07:00,0.0,10.73406,10734.06 +24978,2025-03-10T03:13:11.657047-07:00,0.0,10.717033,10717.033 +24979,2025-03-10T03:13:22.387808-07:00,0.0,10.730761,10730.761 +24980,2025-03-10T03:13:33.110833-07:00,0.0,10.723025,10723.025 +24981,2025-03-10T03:13:43.843804-07:00,0.0,10.732971,10732.971 +24982,2025-03-10T03:13:54.563987-07:00,0.0,10.720183,10720.183 +24983,2025-03-10T03:14:05.290808-07:00,0.0,10.726821,10726.821 +24984,2025-03-10T03:14:16.018023-07:00,0.0,10.727215,10727.215 +24985,2025-03-10T03:14:26.754015-07:00,0.0,10.735992,10735.992 +24986,2025-03-10T03:14:37.477604-07:00,0.0,10.723589,10723.589 +24987,2025-03-10T03:14:48.204268-07:00,0.0,10.726664,10726.664 +24988,2025-03-10T03:14:58.936349-07:00,0.0,10.732081,10732.081 +24989,2025-03-10T03:15:09.658805-07:00,0.0,10.722456,10722.456 +24990,2025-03-10T03:15:20.384699-07:00,0.0,10.725894,10725.894 +24991,2025-03-10T03:15:31.107969-07:00,0.0,10.72327,10723.27 +24992,2025-03-10T03:15:41.839026-07:00,0.0,10.731057,10731.057 +24993,2025-03-10T03:15:52.570944-07:00,0.0,10.731918,10731.918 +24994,2025-03-10T03:16:03.296803-07:00,0.0,10.725859,10725.859 +24995,2025-03-10T03:16:14.030095-07:00,0.0,10.733292,10733.292 +24996,2025-03-10T03:16:24.759829-07:00,0.0,10.729734,10729.734 +24997,2025-03-10T03:16:35.483808-07:00,0.0,10.723979,10723.979 +24998,2025-03-10T03:16:46.211196-07:00,0.0,10.727388,10727.388 +24999,2025-03-10T03:16:56.929984-07:00,0.0,10.718788,10718.788 +25000,2025-03-10T03:17:07.654992-07:00,0.0,10.725008,10725.008 +25001,2025-03-10T03:17:18.388108-07:00,0.0,10.733116,10733.116 +25002,2025-03-10T03:17:29.108050-07:00,0.0,10.719942,10719.942 +25003,2025-03-10T03:17:39.836017-07:00,0.0,10.727967,10727.967 +25004,2025-03-10T03:17:50.568108-07:00,0.0,10.732091,10732.091 +25005,2025-03-10T03:18:01.291931-07:00,0.0,10.723823,10723.823 +25006,2025-03-10T03:18:12.013808-07:00,0.0,10.721877,10721.877 +25007,2025-03-10T03:18:22.746242-07:00,0.0,10.732434,10732.434 +25008,2025-03-10T03:18:33.471805-07:00,0.0,10.725563,10725.563 +25009,2025-03-10T03:18:44.190808-07:00,0.0,10.719003,10719.003 +25010,2025-03-10T03:18:54.918894-07:00,0.0,10.728086,10728.086 +25011,2025-03-10T03:19:05.646831-07:00,0.0,10.727937,10727.937 +25012,2025-03-10T03:19:16.368983-07:00,0.0,10.722152,10722.152 +25013,2025-03-10T03:19:27.086808-07:00,0.0,10.717825,10717.825 +25014,2025-03-10T03:19:37.815995-07:00,0.0,10.729187,10729.187 +25015,2025-03-10T03:19:48.542833-07:00,0.0,10.726838,10726.838 +25016,2025-03-10T03:19:59.267003-07:00,0.0,10.72417,10724.17 +25017,2025-03-10T03:20:09.987012-07:00,0.0,10.720009,10720.009 +25018,2025-03-10T03:20:20.717803-07:00,0.0,10.730791,10730.791 +25019,2025-03-10T03:20:31.436863-07:00,0.0,10.71906,10719.06 +25020,2025-03-10T03:20:42.162107-07:00,0.0,10.725244,10725.244 +25021,2025-03-10T03:20:52.884803-07:00,0.0,10.722696,10722.696 +25022,2025-03-10T03:21:03.610808-07:00,0.0,10.726005,10726.005 +25023,2025-03-10T03:21:14.340223-07:00,0.0,10.729415,10729.415 +25024,2025-03-10T03:21:25.058818-07:00,0.0,10.718595,10718.595 +25025,2025-03-10T03:21:35.787110-07:00,0.0,10.728292,10728.292 +25026,2025-03-10T03:21:46.499812-07:00,0.0,10.712702,10712.702 +25027,2025-03-10T03:21:57.234909-07:00,0.0,10.735097,10735.097 +25028,2025-03-10T03:22:07.947808-07:00,0.0,10.712899,10712.899 +25029,2025-03-10T03:22:18.682035-07:00,0.0,10.734227,10734.227 +25030,2025-03-10T03:22:29.403803-07:00,0.0,10.721768,10721.768 +25031,2025-03-10T03:22:40.122939-07:00,0.0,10.719136,10719.136 +25032,2025-03-10T03:22:50.856618-07:00,0.0,10.733679,10733.679 +25033,2025-03-10T03:23:01.574054-07:00,0.0,10.717436,10717.436 +25034,2025-03-10T03:23:11.797144-07:00,0.0,10.22309,10223.09 +25035,2025-03-10T03:23:12.304134-07:00,0.0,0.50699,506.99 +25036,2025-03-10T03:23:23.033830-07:00,0.0,10.729696,10729.696 +25037,2025-03-10T03:23:33.760028-07:00,0.0,10.726198,10726.198 +25038,2025-03-10T03:23:44.490483-07:00,0.0,10.730455,10730.455 +25039,2025-03-10T03:23:55.209905-07:00,0.0,10.719422,10719.422 +25040,2025-03-10T03:24:05.930973-07:00,0.0,10.721068,10721.068 +25041,2025-03-10T03:24:16.662806-07:00,0.0,10.731833,10731.833 +25042,2025-03-10T03:24:27.389821-07:00,0.0,10.727015,10727.015 +25043,2025-03-10T03:24:38.121036-07:00,0.0,10.731215,10731.215 +25044,2025-03-10T03:24:48.848033-07:00,0.0,10.726997,10726.997 +25045,2025-03-10T03:24:59.573004-07:00,0.0,10.724971,10724.971 +25046,2025-03-10T03:25:10.306010-07:00,0.0,10.733006,10733.006 +25047,2025-03-10T03:25:21.023809-07:00,0.0,10.717799,10717.799 +25048,2025-03-10T03:25:31.747801-07:00,0.0,10.723992,10723.992 +25049,2025-03-10T03:25:42.477810-07:00,0.0,10.730009,10730.009 +25050,2025-03-10T03:25:53.205262-07:00,0.0,10.727452,10727.452 +25051,2025-03-10T03:26:03.929839-07:00,0.0,10.724577,10724.577 +25052,2025-03-10T03:26:14.656019-07:00,0.0,10.72618,10726.18 +25053,2025-03-10T03:26:25.377803-07:00,0.0,10.721784,10721.784 +25054,2025-03-10T03:26:36.109242-07:00,0.0,10.731439,10731.439 +25055,2025-03-10T03:26:46.830886-07:00,0.0,10.721644,10721.644 +25056,2025-03-10T03:26:57.560802-07:00,0.0,10.729916,10729.916 +25057,2025-03-10T03:27:08.279838-07:00,0.0,10.719036,10719.036 +25058,2025-03-10T03:27:19.011808-07:00,0.0,10.73197,10731.97 +25059,2025-03-10T03:27:29.736617-07:00,0.0,10.724809,10724.809 +25060,2025-03-10T03:27:40.461801-07:00,0.0,10.725184,10725.184 +25061,2025-03-10T03:27:51.188519-07:00,0.0,10.726718,10726.718 +25062,2025-03-10T03:28:01.912039-07:00,0.0,10.72352,10723.52 +25063,2025-03-10T03:28:12.632049-07:00,0.0,10.72001,10720.01 +25064,2025-03-10T03:28:23.363181-07:00,0.0,10.731132,10731.132 +25065,2025-03-10T03:28:34.079841-07:00,0.0,10.71666,10716.66 +25066,2025-03-10T03:28:44.803735-07:00,0.0,10.723894,10723.894 +25067,2025-03-10T03:28:55.526926-07:00,0.0,10.723191,10723.191 +25068,2025-03-10T03:29:06.261208-07:00,0.0,10.734282,10734.282 +25069,2025-03-10T03:29:16.987807-07:00,0.0,10.726599,10726.599 +25070,2025-03-10T03:29:27.709810-07:00,0.0,10.722003,10722.003 +25071,2025-03-10T03:29:38.432504-07:00,0.0,10.722694,10722.694 +25072,2025-03-10T03:29:49.162963-07:00,0.0,10.730459,10730.459 +25073,2025-03-10T03:29:59.884634-07:00,0.0,10.721671,10721.671 +25074,2025-03-10T03:30:10.613810-07:00,0.0,10.729176,10729.176 +25075,2025-03-10T03:30:21.332053-07:00,0.0,10.718243,10718.243 +25076,2025-03-10T03:30:32.061954-07:00,0.0,10.729901,10729.901 +25077,2025-03-10T03:30:42.792819-07:00,0.0,10.730865,10730.865 +25078,2025-03-10T03:30:53.512016-07:00,0.0,10.719197,10719.197 +25079,2025-03-10T03:31:04.236878-07:00,0.0,10.724862,10724.862 +25080,2025-03-10T03:31:14.972882-07:00,0.0,10.736004,10736.004 +25081,2025-03-10T03:31:25.699920-07:00,0.0,10.727038,10727.038 +25082,2025-03-10T03:31:36.418015-07:00,0.0,10.718095,10718.095 +25083,2025-03-10T03:31:47.149807-07:00,0.0,10.731792,10731.792 +25084,2025-03-10T03:31:57.872026-07:00,0.0,10.722219,10722.219 +25085,2025-03-10T03:32:08.597381-07:00,0.0,10.725355,10725.355 +25086,2025-03-10T03:32:19.315815-07:00,0.0,10.718434,10718.434 +25087,2025-03-10T03:32:30.036806-07:00,0.0,10.720991,10720.991 +25088,2025-03-10T03:32:40.761150-07:00,0.0,10.724344,10724.344 +25089,2025-03-10T03:32:51.488982-07:00,0.0,10.727832,10727.832 +25090,2025-03-10T03:33:02.221153-07:00,0.0,10.732171,10732.171 +25091,2025-03-10T03:33:12.938275-07:00,0.0,10.717122,10717.122 +25092,2025-03-10T03:33:23.676022-07:00,0.0,10.737747,10737.747 +25093,2025-03-10T03:33:34.397335-07:00,0.0,10.721313,10721.313 +25094,2025-03-10T03:33:45.126224-07:00,0.0,10.728889,10728.889 +25095,2025-03-10T03:33:55.852805-07:00,0.0,10.726581,10726.581 +25096,2025-03-10T03:34:06.576023-07:00,0.0,10.723218,10723.218 +25097,2025-03-10T03:34:17.304146-07:00,0.0,10.728123,10728.123 +25098,2025-03-10T03:34:28.037806-07:00,0.0,10.73366,10733.66 +25099,2025-03-10T03:34:38.757976-07:00,0.0,10.72017,10720.17 +25100,2025-03-10T03:34:49.482809-07:00,0.0,10.724833,10724.833 +25101,2025-03-10T03:35:00.210008-07:00,0.0,10.727199,10727.199 +25102,2025-03-10T03:35:10.924805-07:00,0.0,10.714797,10714.797 +25103,2025-03-10T03:35:21.650958-07:00,0.0,10.726153,10726.153 +25104,2025-03-10T03:35:32.384214-07:00,0.0,10.733256,10733.256 +25105,2025-03-10T03:35:43.109935-07:00,0.0,10.725721,10725.721 +25106,2025-03-10T03:35:53.835982-07:00,0.0,10.726047,10726.047 +25107,2025-03-10T03:36:04.555808-07:00,0.0,10.719826,10719.826 +25108,2025-03-10T03:36:15.279990-07:00,0.0,10.724182,10724.182 +25109,2025-03-10T03:36:26.001962-07:00,0.0,10.721972,10721.972 +25110,2025-03-10T03:36:36.731023-07:00,0.0,10.729061,10729.061 +25111,2025-03-10T03:36:47.456805-07:00,0.0,10.725782,10725.782 +25112,2025-03-10T03:36:58.180809-07:00,0.0,10.724004,10724.004 +25113,2025-03-10T03:37:08.912060-07:00,0.0,10.731251,10731.251 +25114,2025-03-10T03:37:19.638012-07:00,0.0,10.725952,10725.952 +25115,2025-03-10T03:37:30.360995-07:00,0.0,10.722983,10722.983 +25116,2025-03-10T03:37:41.087803-07:00,0.0,10.726808,10726.808 +25117,2025-03-10T03:37:51.809885-07:00,0.0,10.722082,10722.082 +25118,2025-03-10T03:38:02.539085-07:00,0.0,10.7292,10729.2 +25119,2025-03-10T03:38:13.268810-07:00,0.0,10.729725,10729.725 +25120,2025-03-10T03:38:23.985806-07:00,0.0,10.716996,10716.996 +25121,2025-03-10T03:38:34.714181-07:00,0.0,10.728375,10728.375 +25122,2025-03-10T03:38:45.437970-07:00,0.0,10.723789,10723.789 +25123,2025-03-10T03:38:56.165577-07:00,0.0,10.727607,10727.607 +25124,2025-03-10T03:39:06.882987-07:00,0.0,10.71741,10717.41 +25125,2025-03-10T03:39:17.607906-07:00,0.0,10.724919,10724.919 +25126,2025-03-10T03:39:28.334862-07:00,0.0,10.726956,10726.956 +25127,2025-03-10T03:39:39.063829-07:00,0.0,10.728967,10728.967 +25128,2025-03-10T03:39:49.783221-07:00,0.0,10.719392,10719.392 +25129,2025-03-10T03:40:00.504808-07:00,0.0,10.721587,10721.587 +25130,2025-03-10T03:40:11.233807-07:00,0.0,10.728999,10728.999 +25131,2025-03-10T03:40:21.956990-07:00,0.0,10.723183,10723.183 +25132,2025-03-10T03:40:32.678872-07:00,0.0,10.721882,10721.882 +25133,2025-03-10T03:40:43.402990-07:00,0.0,10.724118,10724.118 +25134,2025-03-10T03:40:54.122808-07:00,0.0,10.719818,10719.818 +25135,2025-03-10T03:41:04.842843-07:00,0.0,10.720035,10720.035 +25136,2025-03-10T03:41:15.569805-07:00,0.0,10.726962,10726.962 +25137,2025-03-10T03:41:26.289994-07:00,0.0,10.720189,10720.189 +25138,2025-03-10T03:41:37.015805-07:00,0.0,10.725811,10725.811 +25139,2025-03-10T03:41:47.747009-07:00,0.0,10.731204,10731.204 +25140,2025-03-10T03:41:58.471172-07:00,0.0,10.724163,10724.163 +25141,2025-03-10T03:42:09.196809-07:00,0.0,10.725637,10725.637 +25142,2025-03-10T03:42:19.921367-07:00,0.0,10.724558,10724.558 +25143,2025-03-10T03:42:30.651010-07:00,0.0,10.729643,10729.643 +25144,2025-03-10T03:42:41.376820-07:00,0.0,10.72581,10725.81 +25145,2025-03-10T03:42:52.106965-07:00,0.0,10.730145,10730.145 +25146,2025-03-10T03:43:02.824008-07:00,0.0,10.717043,10717.043 +25147,2025-03-10T03:43:13.553990-07:00,0.0,10.729982,10729.982 +25148,2025-03-10T03:43:24.281809-07:00,0.0,10.727819,10727.819 +25149,2025-03-10T03:43:34.999629-07:00,0.0,10.71782,10717.82 +25150,2025-03-10T03:43:45.731019-07:00,0.0,10.73139,10731.39 +25151,2025-03-10T03:43:56.458136-07:00,0.0,10.727117,10727.117 +25152,2025-03-10T03:44:07.179806-07:00,0.0,10.72167,10721.67 +25153,2025-03-10T03:44:17.903842-07:00,0.0,10.724036,10724.036 +25154,2025-03-10T03:44:28.629826-07:00,0.0,10.725984,10725.984 +25155,2025-03-10T03:44:39.351010-07:00,0.0,10.721184,10721.184 +25156,2025-03-10T03:44:50.070805-07:00,0.0,10.719795,10719.795 +25157,2025-03-10T03:45:00.791805-07:00,0.0,10.721,10721.0 +25158,2025-03-10T03:45:11.516140-07:00,0.0,10.724335,10724.335 +25159,2025-03-10T03:45:22.240811-07:00,0.0,10.724671,10724.671 +25160,2025-03-10T03:45:32.965802-07:00,0.0,10.724991,10724.991 +25161,2025-03-10T03:45:43.687807-07:00,0.0,10.722005,10722.005 +25162,2025-03-10T03:45:54.408898-07:00,0.0,10.721091,10721.091 +25163,2025-03-10T03:46:05.134972-07:00,0.0,10.726074,10726.074 +25164,2025-03-10T03:46:15.857987-07:00,0.0,10.723015,10723.015 +25165,2025-03-10T03:46:26.573687-07:00,0.0,10.7157,10715.7 +25166,2025-03-10T03:46:37.301001-07:00,0.0,10.727314,10727.314 +25167,2025-03-10T03:46:48.020809-07:00,0.0,10.719808,10719.808 +25168,2025-03-10T03:46:58.741774-07:00,0.0,10.720965,10720.965 +25169,2025-03-10T03:47:09.460018-07:00,0.0,10.718244,10718.244 +25170,2025-03-10T03:47:20.185978-07:00,0.0,10.72596,10725.96 +25171,2025-03-10T03:47:30.913808-07:00,0.0,10.72783,10727.83 +25172,2025-03-10T03:47:41.635194-07:00,0.0,10.721386,10721.386 +25173,2025-03-10T03:47:52.359803-07:00,0.0,10.724609,10724.609 +25174,2025-03-10T03:48:03.080011-07:00,0.0,10.720208,10720.208 +25175,2025-03-10T03:48:13.801834-07:00,0.0,10.721823,10721.823 +25176,2025-03-10T03:48:24.530610-07:00,0.0,10.728776,10728.776 +25177,2025-03-10T03:48:35.248805-07:00,0.0,10.718195,10718.195 +25178,2025-03-10T03:48:45.977882-07:00,0.0,10.729077,10729.077 +25179,2025-03-10T03:48:56.694834-07:00,0.0,10.716952,10716.952 +25180,2025-03-10T03:49:07.420860-07:00,0.0,10.726026,10726.026 +25181,2025-03-10T03:49:18.139805-07:00,0.0,10.718945,10718.945 +25182,2025-03-10T03:49:28.862018-07:00,0.0,10.722213,10722.213 +25183,2025-03-10T03:49:39.585836-07:00,0.0,10.723818,10723.818 +25184,2025-03-10T03:49:50.307987-07:00,0.0,10.722151,10722.151 +25185,2025-03-10T03:50:01.034847-07:00,0.0,10.72686,10726.86 +25186,2025-03-10T03:50:11.761804-07:00,0.0,10.726957,10726.957 +25187,2025-03-10T03:50:22.476974-07:00,0.0,10.71517,10715.17 +25188,2025-03-10T03:50:33.211805-07:00,0.0,10.734831,10734.831 +25189,2025-03-10T03:50:43.929992-07:00,0.0,10.718187,10718.187 +25190,2025-03-10T03:50:54.658808-07:00,0.0,10.728816,10728.816 +25191,2025-03-10T03:51:05.379822-07:00,0.0,10.721014,10721.014 +25192,2025-03-10T03:51:16.103480-07:00,0.0,10.723658,10723.658 +25193,2025-03-10T03:51:26.828393-07:00,0.0,10.724913,10724.913 +25194,2025-03-10T03:51:37.558826-07:00,0.0,10.730433,10730.433 +25195,2025-03-10T03:51:48.279805-07:00,0.0,10.720979,10720.979 +25196,2025-03-10T03:51:59.007999-07:00,0.0,10.728194,10728.194 +25197,2025-03-10T03:52:09.732385-07:00,0.0,10.724386,10724.386 +25198,2025-03-10T03:52:20.458979-07:00,0.0,10.726594,10726.594 +25199,2025-03-10T03:52:31.176806-07:00,0.0,10.717827,10717.827 +25200,2025-03-10T03:52:41.908808-07:00,0.0,10.732002,10732.002 +25201,2025-03-10T03:52:52.623809-07:00,0.0,10.715001,10715.001 +25202,2025-03-10T03:53:03.437521-07:00,0.0,10.813712,10813.712 +25203,2025-03-10T03:53:14.158684-07:00,0.0,10.721163,10721.163 +25204,2025-03-10T03:53:24.880390-07:00,0.0,10.721706,10721.706 +25205,2025-03-10T03:53:35.607595-07:00,0.0,10.727205,10727.205 +25206,2025-03-10T03:53:46.331365-07:00,0.0,10.72377,10723.77 +25207,2025-03-10T03:53:57.050425-07:00,0.0,10.71906,10719.06 +25208,2025-03-10T03:54:07.771370-07:00,0.0,10.720945,10720.945 +25209,2025-03-10T03:54:18.486364-07:00,0.0,10.714994,10714.994 +25210,2025-03-10T03:54:29.207798-07:00,0.0,10.721434,10721.434 +25211,2025-03-10T03:54:39.936361-07:00,0.0,10.728563,10728.563 +25212,2025-03-10T03:54:50.655366-07:00,0.0,10.719005,10719.005 +25213,2025-03-10T03:55:01.371442-07:00,0.0,10.716076,10716.076 +25214,2025-03-10T03:55:12.097541-07:00,0.0,10.726099,10726.099 +25215,2025-03-10T03:55:22.820362-07:00,0.0,10.722821,10722.821 +25216,2025-03-10T03:55:33.541501-07:00,0.0,10.721139,10721.139 +25217,2025-03-10T03:55:44.258363-07:00,0.0,10.716862,10716.862 +25218,2025-03-10T03:55:54.986542-07:00,0.0,10.728179,10728.179 +25219,2025-03-10T03:56:05.704533-07:00,0.0,10.717991,10717.991 +25220,2025-03-10T03:56:16.430371-07:00,0.0,10.725838,10725.838 +25221,2025-03-10T03:56:27.151501-07:00,0.0,10.72113,10721.13 +25222,2025-03-10T03:56:37.876639-07:00,0.0,10.725138,10725.138 +25223,2025-03-10T03:56:48.598426-07:00,0.0,10.721787,10721.787 +25224,2025-03-10T03:56:59.324364-07:00,0.0,10.725938,10725.938 +25225,2025-03-10T03:57:10.041364-07:00,0.0,10.717,10717.0 +25226,2025-03-10T03:57:20.768411-07:00,0.0,10.727047,10727.047 +25227,2025-03-10T03:57:31.494225-07:00,0.0,10.725814,10725.814 +25228,2025-03-10T03:57:42.217363-07:00,0.0,10.723138,10723.138 +25229,2025-03-10T03:57:52.933684-07:00,0.0,10.716321,10716.321 +25230,2025-03-10T03:58:03.661363-07:00,0.0,10.727679,10727.679 +25231,2025-03-10T03:58:14.377522-07:00,0.0,10.716159,10716.159 +25232,2025-03-10T03:58:25.102567-07:00,0.0,10.725045,10725.045 +25233,2025-03-10T03:58:35.832529-07:00,0.0,10.729962,10729.962 +25234,2025-03-10T03:58:46.554362-07:00,0.0,10.721833,10721.833 +25235,2025-03-10T03:58:57.273575-07:00,0.0,10.719213,10719.213 +25236,2025-03-10T03:59:08.001359-07:00,0.0,10.727784,10727.784 +25237,2025-03-10T03:59:18.726367-07:00,0.0,10.725008,10725.008 +25238,2025-03-10T03:59:29.446433-07:00,0.0,10.720066,10720.066 +25239,2025-03-10T03:59:40.177607-07:00,0.0,10.731174,10731.174 +25240,2025-03-10T03:59:50.895422-07:00,0.0,10.717815,10717.815 +25241,2025-03-10T04:00:01.617429-07:00,0.0,10.722007,10722.007 +25242,2025-03-10T04:00:12.341028-07:00,0.0,10.723599,10723.599 +25243,2025-03-10T04:00:23.072388-07:00,0.0,10.73136,10731.36 +25244,2025-03-10T04:00:33.794785-07:00,0.0,10.722397,10722.397 +25245,2025-03-10T04:00:44.509462-07:00,0.0,10.714677,10714.677 +25246,2025-03-10T04:00:55.239530-07:00,0.0,10.730068,10730.068 +25247,2025-03-10T04:01:05.962389-07:00,0.0,10.722859,10722.859 +25248,2025-03-10T04:01:16.688572-07:00,0.0,10.726183,10726.183 +25249,2025-03-10T04:01:27.412363-07:00,0.0,10.723791,10723.791 +25250,2025-03-10T04:01:38.130303-07:00,0.0,10.71794,10717.94 +25251,2025-03-10T04:01:48.857372-07:00,0.0,10.727069,10727.069 +25252,2025-03-10T04:01:59.576567-07:00,0.0,10.719195,10719.195 +25253,2025-03-10T04:02:10.305359-07:00,0.0,10.728792,10728.792 +25254,2025-03-10T04:02:21.027560-07:00,0.0,10.722201,10722.201 +25255,2025-03-10T04:02:31.751387-07:00,0.0,10.723827,10723.827 +25256,2025-03-10T04:02:42.475457-07:00,0.0,10.72407,10724.07 +25257,2025-03-10T04:02:53.200097-07:00,0.0,10.72464,10724.64 +25258,2025-03-10T04:03:03.919358-07:00,0.0,10.719261,10719.261 +25259,2025-03-10T04:03:14.641665-07:00,0.0,10.722307,10722.307 +25260,2025-03-10T04:03:25.368387-07:00,0.0,10.726722,10726.722 +25261,2025-03-10T04:03:36.091744-07:00,0.0,10.723357,10723.357 +25262,2025-03-10T04:03:46.814361-07:00,0.0,10.722617,10722.617 +25263,2025-03-10T04:03:57.543360-07:00,0.0,10.728999,10728.999 +25264,2025-03-10T04:04:08.270360-07:00,0.0,10.727,10727.0 +25265,2025-03-10T04:04:18.986767-07:00,0.0,10.716407,10716.407 +25266,2025-03-10T04:04:29.708361-07:00,0.0,10.721594,10721.594 +25267,2025-03-10T04:04:40.440364-07:00,0.0,10.732003,10732.003 +25268,2025-03-10T04:04:51.159510-07:00,0.0,10.719146,10719.146 +25269,2025-03-10T04:05:01.890565-07:00,0.0,10.731055,10731.055 +25270,2025-03-10T04:05:12.606496-07:00,0.0,10.715931,10715.931 +25271,2025-03-10T04:05:23.338365-07:00,0.0,10.731869,10731.869 +25272,2025-03-10T04:05:34.065390-07:00,0.0,10.727025,10727.025 +25273,2025-03-10T04:05:44.784361-07:00,0.0,10.718971,10718.971 +25274,2025-03-10T04:05:55.514547-07:00,0.0,10.730186,10730.186 +25275,2025-03-10T04:06:06.239533-07:00,0.0,10.724986,10724.986 +25276,2025-03-10T04:06:16.967360-07:00,0.0,10.727827,10727.827 +25277,2025-03-10T04:06:27.692554-07:00,0.0,10.725194,10725.194 +25278,2025-03-10T04:06:38.419575-07:00,0.0,10.727021,10727.021 +25279,2025-03-10T04:06:49.143570-07:00,0.0,10.723995,10723.995 +25280,2025-03-10T04:06:59.864381-07:00,0.0,10.720811,10720.811 +25281,2025-03-10T04:07:10.590365-07:00,0.0,10.725984,10725.984 +25282,2025-03-10T04:07:21.317607-07:00,0.0,10.727242,10727.242 +25283,2025-03-10T04:07:32.045546-07:00,0.0,10.727939,10727.939 +25284,2025-03-10T04:07:42.764875-07:00,0.0,10.719329,10719.329 +25285,2025-03-10T04:07:53.494565-07:00,0.0,10.72969,10729.69 +25286,2025-03-10T04:08:04.213542-07:00,0.0,10.718977,10718.977 +25287,2025-03-10T04:08:14.942364-07:00,0.0,10.728822,10728.822 +25288,2025-03-10T04:08:25.666576-07:00,0.0,10.724212,10724.212 +25289,2025-03-10T04:08:36.388567-07:00,0.0,10.721991,10721.991 +25290,2025-03-10T04:08:47.119430-07:00,0.0,10.730863,10730.863 +25291,2025-03-10T04:08:57.844204-07:00,0.0,10.724774,10724.774 +25292,2025-03-10T04:09:08.569730-07:00,0.0,10.725526,10725.526 +25293,2025-03-10T04:09:19.294540-07:00,0.0,10.72481,10724.81 +25294,2025-03-10T04:09:30.024562-07:00,0.0,10.730022,10730.022 +25295,2025-03-10T04:09:40.745724-07:00,0.0,10.721162,10721.162 +25296,2025-03-10T04:09:51.484527-07:00,0.0,10.738803,10738.803 +25297,2025-03-10T04:10:02.204425-07:00,0.0,10.719898,10719.898 +25298,2025-03-10T04:10:12.939542-07:00,0.0,10.735117,10735.117 +25299,2025-03-10T04:10:23.661369-07:00,0.0,10.721827,10721.827 +25300,2025-03-10T04:10:34.395438-07:00,0.0,10.734069,10734.069 +25301,2025-03-10T04:10:45.127503-07:00,0.0,10.732065,10732.065 +25302,2025-03-10T04:10:55.856529-07:00,0.0,10.729026,10729.026 +25303,2025-03-10T04:11:06.581365-07:00,0.0,10.724836,10724.836 +25304,2025-03-10T04:11:17.307577-07:00,0.0,10.726212,10726.212 +25305,2025-03-10T04:11:28.032361-07:00,0.0,10.724784,10724.784 +25306,2025-03-10T04:11:38.754487-07:00,0.0,10.722126,10722.126 +25307,2025-03-10T04:11:49.487363-07:00,0.0,10.732876,10732.876 +25308,2025-03-10T04:12:00.205546-07:00,0.0,10.718183,10718.183 +25309,2025-03-10T04:12:10.926421-07:00,0.0,10.720875,10720.875 +25310,2025-03-10T04:12:21.661564-07:00,0.0,10.735143,10735.143 +25311,2025-03-10T04:12:32.383012-07:00,0.0,10.721448,10721.448 +25312,2025-03-10T04:12:43.114362-07:00,0.0,10.73135,10731.35 +25313,2025-03-10T04:12:53.834547-07:00,0.0,10.720185,10720.185 +25314,2025-03-10T04:13:04.566362-07:00,0.0,10.731815,10731.815 +25315,2025-03-10T04:13:05.435558-07:00,0.0,0.869196,869.196 +25316,2025-03-10T04:13:15.287359-07:00,0.0,9.851801,9851.801 +25317,2025-03-10T04:13:26.022549-07:00,0.0,10.73519,10735.19 +25318,2025-03-10T04:13:36.749388-07:00,0.0,10.726839,10726.839 +25319,2025-03-10T04:13:47.470538-07:00,0.0,10.72115,10721.15 +25320,2025-03-10T04:13:58.192434-07:00,0.0,10.721896,10721.896 +25321,2025-03-10T04:14:08.919582-07:00,0.0,10.727148,10727.148 +25322,2025-03-10T04:14:19.652538-07:00,0.0,10.732956,10732.956 +25323,2025-03-10T04:14:30.377433-07:00,0.0,10.724895,10724.895 +25324,2025-03-10T04:14:41.107373-07:00,0.0,10.72994,10729.94 +25325,2025-03-10T04:14:51.829366-07:00,0.0,10.721993,10721.993 +25326,2025-03-10T04:15:02.561541-07:00,0.0,10.732175,10732.175 +25327,2025-03-10T04:15:13.285603-07:00,0.0,10.724062,10724.062 +25328,2025-03-10T04:15:24.012462-07:00,0.0,10.726859,10726.859 +25329,2025-03-10T04:15:34.739525-07:00,0.0,10.727063,10727.063 +25330,2025-03-10T04:15:45.470560-07:00,0.0,10.731035,10731.035 +25331,2025-03-10T04:15:56.199357-07:00,0.0,10.728797,10728.797 +25332,2025-03-10T04:16:06.932556-07:00,0.0,10.733199,10733.199 +25333,2025-03-10T04:16:17.657931-07:00,0.0,10.725375,10725.375 +25334,2025-03-10T04:16:28.396362-07:00,0.0,10.738431,10738.431 +25335,2025-03-10T04:16:39.118559-07:00,0.0,10.722197,10722.197 +25336,2025-03-10T04:16:49.851362-07:00,0.0,10.732803,10732.803 +25337,2025-03-10T04:17:00.579105-07:00,0.0,10.727743,10727.743 +25338,2025-03-10T04:17:11.305184-07:00,0.0,10.726079,10726.079 +25339,2025-03-10T04:17:22.045633-07:00,0.0,10.740449,10740.449 +25340,2025-03-10T04:17:32.776565-07:00,0.0,10.730932,10730.932 +25341,2025-03-10T04:17:43.504549-07:00,0.0,10.727984,10727.984 +25342,2025-03-10T04:17:54.236372-07:00,0.0,10.731823,10731.823 +25343,2025-03-10T04:18:04.965359-07:00,0.0,10.728987,10728.987 +25344,2025-03-10T04:18:15.691544-07:00,0.0,10.726185,10726.185 +25345,2025-03-10T04:18:26.415943-07:00,0.0,10.724399,10724.399 +25346,2025-03-10T04:18:37.152559-07:00,0.0,10.736616,10736.616 +25347,2025-03-10T04:18:47.881583-07:00,0.0,10.729024,10729.024 +25348,2025-03-10T04:18:58.606566-07:00,0.0,10.724983,10724.983 +25349,2025-03-10T04:19:09.333539-07:00,0.0,10.726973,10726.973 +25350,2025-03-10T04:19:20.061364-07:00,0.0,10.727825,10727.825 +25351,2025-03-10T04:19:30.786848-07:00,0.0,10.725484,10725.484 +25352,2025-03-10T04:19:41.515680-07:00,0.0,10.728832,10728.832 +25353,2025-03-10T04:19:52.238821-07:00,0.0,10.723141,10723.141 +25354,2025-03-10T04:20:02.975577-07:00,0.0,10.736756,10736.756 +25355,2025-03-10T04:20:13.702389-07:00,0.0,10.726812,10726.812 +25356,2025-03-10T04:20:24.431424-07:00,0.0,10.729035,10729.035 +25357,2025-03-10T04:20:35.154758-07:00,0.0,10.723334,10723.334 +25358,2025-03-10T04:20:45.885558-07:00,0.0,10.7308,10730.8 +25359,2025-03-10T04:20:56.619364-07:00,0.0,10.733806,10733.806 +25360,2025-03-10T04:21:07.354363-07:00,0.0,10.734999,10734.999 +25361,2025-03-10T04:21:18.082496-07:00,0.0,10.728133,10728.133 +25362,2025-03-10T04:21:28.814605-07:00,0.0,10.732109,10732.109 +25363,2025-03-10T04:21:39.537573-07:00,0.0,10.722968,10722.968 +25364,2025-03-10T04:21:50.267481-07:00,0.0,10.729908,10729.908 +25365,2025-03-10T04:22:01.004585-07:00,0.0,10.737104,10737.104 +25366,2025-03-10T04:22:11.736561-07:00,0.0,10.731976,10731.976 +25367,2025-03-10T04:22:22.472156-07:00,0.0,10.735595,10735.595 +25368,2025-03-10T04:22:33.204362-07:00,0.0,10.732206,10732.206 +25369,2025-03-10T04:22:43.928335-07:00,0.0,10.723973,10723.973 +25370,2025-03-10T04:22:54.662002-07:00,0.0,10.733667,10733.667 +25371,2025-03-10T04:23:05.390364-07:00,0.0,10.728362,10728.362 +25372,2025-03-10T04:23:16.114528-07:00,0.0,10.724164,10724.164 +25373,2025-03-10T04:23:26.848387-07:00,0.0,10.733859,10733.859 +25374,2025-03-10T04:23:37.580363-07:00,0.0,10.731976,10731.976 +25375,2025-03-10T04:23:48.313767-07:00,0.0,10.733404,10733.404 +25376,2025-03-10T04:23:59.038391-07:00,0.0,10.724624,10724.624 +25377,2025-03-10T04:24:09.765781-07:00,0.0,10.72739,10727.39 +25378,2025-03-10T04:24:20.497955-07:00,0.0,10.732174,10732.174 +25379,2025-03-10T04:24:31.221363-07:00,0.0,10.723408,10723.408 +25380,2025-03-10T04:24:41.955361-07:00,0.0,10.733998,10733.998 +25381,2025-03-10T04:24:52.676805-07:00,0.0,10.721444,10721.444 +25382,2025-03-10T04:25:03.412516-07:00,0.0,10.735711,10735.711 +25383,2025-03-10T04:25:14.137546-07:00,0.0,10.72503,10725.03 +25384,2025-03-10T04:25:24.866847-07:00,0.0,10.729301,10729.301 +25385,2025-03-10T04:25:35.597364-07:00,0.0,10.730517,10730.517 +25386,2025-03-10T04:25:46.328964-07:00,0.0,10.7316,10731.6 +25387,2025-03-10T04:25:57.054362-07:00,0.0,10.725398,10725.398 +25388,2025-03-10T04:26:07.790361-07:00,0.0,10.735999,10735.999 +25389,2025-03-10T04:26:18.513547-07:00,0.0,10.723186,10723.186 +25390,2025-03-10T04:26:29.241361-07:00,0.0,10.727814,10727.814 +25391,2025-03-10T04:26:39.967645-07:00,0.0,10.726284,10726.284 +25392,2025-03-10T04:26:50.703856-07:00,0.0,10.736211,10736.211 +25393,2025-03-10T04:27:01.434405-07:00,0.0,10.730549,10730.549 +25394,2025-03-10T04:27:12.167735-07:00,0.0,10.73333,10733.33 +25395,2025-03-10T04:27:22.895543-07:00,0.0,10.727808,10727.808 +25396,2025-03-10T04:27:33.621371-07:00,0.0,10.725828,10725.828 +25397,2025-03-10T04:27:44.356366-07:00,0.0,10.734995,10734.995 +25398,2025-03-10T04:27:55.078681-07:00,0.0,10.722315,10722.315 +25399,2025-03-10T04:28:05.807360-07:00,0.0,10.728679,10728.679 +25400,2025-03-10T04:28:16.545425-07:00,0.0,10.738065,10738.065 +25401,2025-03-10T04:28:27.271887-07:00,0.0,10.726462,10726.462 +25402,2025-03-10T04:28:38.007744-07:00,0.0,10.735857,10735.857 +25403,2025-03-10T04:28:48.740564-07:00,0.0,10.73282,10732.82 +25404,2025-03-10T04:28:59.461454-07:00,0.0,10.72089,10720.89 +25405,2025-03-10T04:29:10.195566-07:00,0.0,10.734112,10734.112 +25406,2025-03-10T04:29:20.930433-07:00,0.0,10.734867,10734.867 +25407,2025-03-10T04:29:31.653608-07:00,0.0,10.723175,10723.175 +25408,2025-03-10T04:29:42.391363-07:00,0.0,10.737755,10737.755 +25409,2025-03-10T04:29:53.122584-07:00,0.0,10.731221,10731.221 +25410,2025-03-10T04:30:03.851762-07:00,0.0,10.729178,10729.178 +25411,2025-03-10T04:30:14.578360-07:00,0.0,10.726598,10726.598 +25412,2025-03-10T04:30:25.309365-07:00,0.0,10.731005,10731.005 +25413,2025-03-10T04:30:36.030362-07:00,0.0,10.720997,10720.997 +25414,2025-03-10T04:30:46.759362-07:00,0.0,10.729,10729.0 +25415,2025-03-10T04:30:57.491495-07:00,0.0,10.732133,10732.133 +25416,2025-03-10T04:31:08.216369-07:00,0.0,10.724874,10724.874 +25417,2025-03-10T04:31:18.940362-07:00,0.0,10.723993,10723.993 +25418,2025-03-10T04:31:29.669384-07:00,0.0,10.729022,10729.022 +25419,2025-03-10T04:31:40.401364-07:00,0.0,10.73198,10731.98 +25420,2025-03-10T04:31:51.129542-07:00,0.0,10.728178,10728.178 +25421,2025-03-10T04:32:01.849361-07:00,0.0,10.719819,10719.819 +25422,2025-03-10T04:32:12.568506-07:00,0.0,10.719145,10719.145 +25423,2025-03-10T04:32:23.298582-07:00,0.0,10.730076,10730.076 +25424,2025-03-10T04:32:34.027363-07:00,0.0,10.728781,10728.781 +25425,2025-03-10T04:32:44.755551-07:00,0.0,10.728188,10728.188 +25426,2025-03-10T04:32:55.481411-07:00,0.0,10.72586,10725.86 +25427,2025-03-10T04:33:06.200756-07:00,0.0,10.719345,10719.345 +25428,2025-03-10T04:33:16.930414-07:00,0.0,10.729658,10729.658 +25429,2025-03-10T04:33:27.655546-07:00,0.0,10.725132,10725.132 +25430,2025-03-10T04:33:38.380563-07:00,0.0,10.725017,10725.017 +25431,2025-03-10T04:33:49.116614-07:00,0.0,10.736051,10736.051 +25432,2025-03-10T04:33:59.838531-07:00,0.0,10.721917,10721.917 +25433,2025-03-10T04:34:10.568564-07:00,0.0,10.730033,10730.033 +25434,2025-03-10T04:34:21.303362-07:00,0.0,10.734798,10734.798 +25435,2025-03-10T04:34:32.028537-07:00,0.0,10.725175,10725.175 +25436,2025-03-10T04:34:42.753764-07:00,0.0,10.725227,10725.227 +25437,2025-03-10T04:34:53.482360-07:00,0.0,10.728596,10728.596 +25438,2025-03-10T04:35:04.206386-07:00,0.0,10.724026,10724.026 +25439,2025-03-10T04:35:14.932490-07:00,0.0,10.726104,10726.104 +25440,2025-03-10T04:35:25.665052-07:00,0.0,10.732562,10732.562 +25441,2025-03-10T04:35:36.385362-07:00,0.0,10.72031,10720.31 +25442,2025-03-10T04:35:47.122753-07:00,0.0,10.737391,10737.391 +25443,2025-03-10T04:35:57.840388-07:00,0.0,10.717635,10717.635 +25444,2025-03-10T04:36:08.577365-07:00,0.0,10.736977,10736.977 +25445,2025-03-10T04:36:19.298536-07:00,0.0,10.721171,10721.171 +25446,2025-03-10T04:36:30.020575-07:00,0.0,10.722039,10722.039 +25447,2025-03-10T04:36:40.749364-07:00,0.0,10.728789,10728.789 +25448,2025-03-10T04:36:51.472364-07:00,0.0,10.723,10723.0 +25449,2025-03-10T04:37:02.207574-07:00,0.0,10.73521,10735.21 +25450,2025-03-10T04:37:12.929734-07:00,0.0,10.72216,10722.16 +25451,2025-03-10T04:37:23.659431-07:00,0.0,10.729697,10729.697 +25452,2025-03-10T04:37:34.385562-07:00,0.0,10.726131,10726.131 +25453,2025-03-10T04:37:45.109467-07:00,0.0,10.723905,10723.905 +25454,2025-03-10T04:37:55.833217-07:00,0.0,10.72375,10723.75 +25455,2025-03-10T04:38:06.565628-07:00,0.0,10.732411,10732.411 +25456,2025-03-10T04:38:17.291358-07:00,0.0,10.72573,10725.73 +25457,2025-03-10T04:38:28.017363-07:00,0.0,10.726005,10726.005 +25458,2025-03-10T04:38:38.737375-07:00,0.0,10.720012,10720.012 +25459,2025-03-10T04:38:49.463949-07:00,0.0,10.726574,10726.574 +25460,2025-03-10T04:39:00.197587-07:00,0.0,10.733638,10733.638 +25461,2025-03-10T04:39:10.921594-07:00,0.0,10.724007,10724.007 +25462,2025-03-10T04:39:21.650684-07:00,0.0,10.72909,10729.09 +25463,2025-03-10T04:39:32.380501-07:00,0.0,10.729817,10729.817 +25464,2025-03-10T04:39:43.105391-07:00,0.0,10.72489,10724.89 +25465,2025-03-10T04:39:53.832170-07:00,0.0,10.726779,10726.779 +25466,2025-03-10T04:40:04.562509-07:00,0.0,10.730339,10730.339 +25467,2025-03-10T04:40:15.281536-07:00,0.0,10.719027,10719.027 +25468,2025-03-10T04:40:26.016494-07:00,0.0,10.734958,10734.958 +25469,2025-03-10T04:40:36.743946-07:00,0.0,10.727452,10727.452 +25470,2025-03-10T04:40:47.466708-07:00,0.0,10.722762,10722.762 +25471,2025-03-10T04:40:58.188430-07:00,0.0,10.721722,10721.722 +25472,2025-03-10T04:41:08.912582-07:00,0.0,10.724152,10724.152 +25473,2025-03-10T04:41:19.638358-07:00,0.0,10.725776,10725.776 +25474,2025-03-10T04:41:30.360516-07:00,0.0,10.722158,10722.158 +25475,2025-03-10T04:41:41.082365-07:00,0.0,10.721849,10721.849 +25476,2025-03-10T04:41:51.803669-07:00,0.0,10.721304,10721.304 +25477,2025-03-10T04:42:02.537696-07:00,0.0,10.734027,10734.027 +25478,2025-03-10T04:42:13.256542-07:00,0.0,10.718846,10718.846 +25479,2025-03-10T04:42:23.973363-07:00,0.0,10.716821,10716.821 +25480,2025-03-10T04:42:34.705687-07:00,0.0,10.732324,10732.324 +25481,2025-03-10T04:42:45.424489-07:00,0.0,10.718802,10718.802 +25482,2025-03-10T04:42:56.150516-07:00,0.0,10.726027,10726.027 +25483,2025-03-10T04:43:06.877535-07:00,0.0,10.727019,10727.019 +25484,2025-03-10T04:43:17.596369-07:00,0.0,10.718834,10718.834 +25485,2025-03-10T04:43:28.327549-07:00,0.0,10.73118,10731.18 +25486,2025-03-10T04:43:39.044428-07:00,0.0,10.716879,10716.879 +25487,2025-03-10T04:43:49.779538-07:00,0.0,10.73511,10735.11 +25488,2025-03-10T04:44:00.506385-07:00,0.0,10.726847,10726.847 +25489,2025-03-10T04:44:11.232360-07:00,0.0,10.725975,10725.975 +25490,2025-03-10T04:44:21.951383-07:00,0.0,10.719023,10719.023 +25491,2025-03-10T04:44:32.679366-07:00,0.0,10.727983,10727.983 +25492,2025-03-10T04:44:43.399486-07:00,0.0,10.72012,10720.12 +25493,2025-03-10T04:44:54.120431-07:00,0.0,10.720945,10720.945 +25494,2025-03-10T04:45:04.847560-07:00,0.0,10.727129,10727.129 +25495,2025-03-10T04:45:15.571365-07:00,0.0,10.723805,10723.805 +25496,2025-03-10T04:45:26.299793-07:00,0.0,10.728428,10728.428 +25497,2025-03-10T04:45:37.024362-07:00,0.0,10.724569,10724.569 +25498,2025-03-10T04:45:47.745364-07:00,0.0,10.721002,10721.002 +25499,2025-03-10T04:45:58.470598-07:00,0.0,10.725234,10725.234 +25500,2025-03-10T04:46:09.203569-07:00,0.0,10.732971,10732.971 +25501,2025-03-10T04:46:19.924471-07:00,0.0,10.720902,10720.902 +25502,2025-03-10T04:46:30.641361-07:00,0.0,10.71689,10716.89 +25503,2025-03-10T04:46:41.370536-07:00,0.0,10.729175,10729.175 +25504,2025-03-10T04:46:52.092575-07:00,0.0,10.722039,10722.039 +25505,2025-03-10T04:47:02.819546-07:00,0.0,10.726971,10726.971 +25506,2025-03-10T04:47:13.542361-07:00,0.0,10.722815,10722.815 +25507,2025-03-10T04:47:24.273364-07:00,0.0,10.731003,10731.003 +25508,2025-03-10T04:47:34.996723-07:00,0.0,10.723359,10723.359 +25509,2025-03-10T04:47:45.717362-07:00,0.0,10.720639,10720.639 +25510,2025-03-10T04:47:56.435533-07:00,0.0,10.718171,10718.171 +25511,2025-03-10T04:48:07.158360-07:00,0.0,10.722827,10722.827 +25512,2025-03-10T04:48:17.890542-07:00,0.0,10.732182,10732.182 +25513,2025-03-10T04:48:28.612432-07:00,0.0,10.72189,10721.89 +25514,2025-03-10T04:48:39.329023-07:00,0.0,10.716591,10716.591 +25515,2025-03-10T04:48:50.050363-07:00,0.0,10.72134,10721.34 +25516,2025-03-10T04:49:00.783464-07:00,0.0,10.733101,10733.101 +25517,2025-03-10T04:49:11.506361-07:00,0.0,10.722897,10722.897 +25518,2025-03-10T04:49:22.221695-07:00,0.0,10.715334,10715.334 +25519,2025-03-10T04:49:32.948360-07:00,0.0,10.726665,10726.665 +25520,2025-03-10T04:49:43.676357-07:00,0.0,10.727997,10727.997 +25521,2025-03-10T04:49:54.401506-07:00,0.0,10.725149,10725.149 +25522,2025-03-10T04:50:05.127612-07:00,0.0,10.726106,10726.106 +25523,2025-03-10T04:50:15.853542-07:00,0.0,10.72593,10725.93 +25524,2025-03-10T04:50:26.575361-07:00,0.0,10.721819,10721.819 +25525,2025-03-10T04:50:37.303529-07:00,0.0,10.728168,10728.168 +25526,2025-03-10T04:50:48.035685-07:00,0.0,10.732156,10732.156 +25527,2025-03-10T04:50:58.756574-07:00,0.0,10.720889,10720.889 +25528,2025-03-10T04:51:09.485855-07:00,0.0,10.729281,10729.281 +25529,2025-03-10T04:51:20.218649-07:00,0.0,10.732794,10732.794 +25530,2025-03-10T04:51:30.944418-07:00,0.0,10.725769,10725.769 +25531,2025-03-10T04:51:41.664361-07:00,0.0,10.719943,10719.943 +25532,2025-03-10T04:51:52.394414-07:00,0.0,10.730053,10730.053 +25533,2025-03-10T04:52:03.120628-07:00,0.0,10.726214,10726.214 +25534,2025-03-10T04:52:13.844364-07:00,0.0,10.723736,10723.736 +25535,2025-03-10T04:52:24.573540-07:00,0.0,10.729176,10729.176 +25536,2025-03-10T04:52:35.290828-07:00,0.0,10.717288,10717.288 +25537,2025-03-10T04:52:46.020146-07:00,0.0,10.729318,10729.318 +25538,2025-03-10T04:52:56.747364-07:00,0.0,10.727218,10727.218 +25539,2025-03-10T04:53:07.539372-07:00,0.0,10.792008,10792.008 +25540,2025-03-10T04:53:18.260219-07:00,0.0,10.720847,10720.847 +25541,2025-03-10T04:53:28.990165-07:00,0.0,10.729946,10729.946 +25542,2025-03-10T04:53:39.708029-07:00,0.0,10.717864,10717.864 +25543,2025-03-10T04:53:50.440272-07:00,0.0,10.732243,10732.243 +25544,2025-03-10T04:54:01.168242-07:00,0.0,10.72797,10727.97 +25545,2025-03-10T04:54:11.891303-07:00,0.0,10.723061,10723.061 +25546,2025-03-10T04:54:22.616449-07:00,0.0,10.725146,10725.146 +25547,2025-03-10T04:54:33.338477-07:00,0.0,10.722028,10722.028 +25548,2025-03-10T04:54:44.064563-07:00,0.0,10.726086,10726.086 +25549,2025-03-10T04:54:54.797243-07:00,0.0,10.73268,10732.68 +25550,2025-03-10T04:55:05.525284-07:00,0.0,10.728041,10728.041 +25551,2025-03-10T04:55:16.249373-07:00,0.0,10.724089,10724.089 +25552,2025-03-10T04:55:26.981335-07:00,0.0,10.731962,10731.962 +25553,2025-03-10T04:55:37.706163-07:00,0.0,10.724828,10724.828 +25554,2025-03-10T04:55:48.423338-07:00,0.0,10.717175,10717.175 +25555,2025-03-10T04:55:59.154162-07:00,0.0,10.730824,10730.824 +25556,2025-03-10T04:56:09.877367-07:00,0.0,10.723205,10723.205 +25557,2025-03-10T04:56:20.606705-07:00,0.0,10.729338,10729.338 +25558,2025-03-10T04:56:31.329166-07:00,0.0,10.722461,10722.461 +25559,2025-03-10T04:56:42.059350-07:00,0.0,10.730184,10730.184 +25560,2025-03-10T04:56:52.788968-07:00,0.0,10.729618,10729.618 +25561,2025-03-10T04:57:03.509430-07:00,0.0,10.720462,10720.462 +25562,2025-03-10T04:57:14.232163-07:00,0.0,10.722733,10722.733 +25563,2025-03-10T04:57:24.962655-07:00,0.0,10.730492,10730.492 +25564,2025-03-10T04:57:35.684617-07:00,0.0,10.721962,10721.962 +25565,2025-03-10T04:57:46.409163-07:00,0.0,10.724546,10724.546 +25566,2025-03-10T04:57:57.134568-07:00,0.0,10.725405,10725.405 +25567,2025-03-10T04:58:07.856239-07:00,0.0,10.721671,10721.671 +25568,2025-03-10T04:58:18.590377-07:00,0.0,10.734138,10734.138 +25569,2025-03-10T04:58:29.306374-07:00,0.0,10.715997,10715.997 +25570,2025-03-10T04:58:40.032377-07:00,0.0,10.726003,10726.003 +25571,2025-03-10T04:58:50.755316-07:00,0.0,10.722939,10722.939 +25572,2025-03-10T04:59:01.481165-07:00,0.0,10.725849,10725.849 +25573,2025-03-10T04:59:12.212588-07:00,0.0,10.731423,10731.423 +25574,2025-03-10T04:59:22.933238-07:00,0.0,10.72065,10720.65 +25575,2025-03-10T04:59:33.661337-07:00,0.0,10.728099,10728.099 +25576,2025-03-10T04:59:44.384164-07:00,0.0,10.722827,10722.827 +25577,2025-03-10T04:59:55.103556-07:00,0.0,10.719392,10719.392 +25578,2025-03-10T05:00:05.829160-07:00,0.0,10.725604,10725.604 +25579,2025-03-10T05:00:16.549350-07:00,0.0,10.72019,10720.19 +25580,2025-03-10T05:00:27.276165-07:00,0.0,10.726815,10726.815 +25581,2025-03-10T05:00:37.999380-07:00,0.0,10.723215,10723.215 +25582,2025-03-10T05:00:48.734999-07:00,0.0,10.735619,10735.619 +25583,2025-03-10T05:00:59.459169-07:00,0.0,10.72417,10724.17 +25584,2025-03-10T05:01:10.183334-07:00,0.0,10.724165,10724.165 +25585,2025-03-10T05:01:20.906275-07:00,0.0,10.722941,10722.941 +25586,2025-03-10T05:01:31.625361-07:00,0.0,10.719086,10719.086 +25587,2025-03-10T05:01:42.355188-07:00,0.0,10.729827,10729.827 +25588,2025-03-10T05:01:53.081344-07:00,0.0,10.726156,10726.156 +25589,2025-03-10T05:02:03.810234-07:00,0.0,10.72889,10728.89 +25590,2025-03-10T05:02:14.526788-07:00,0.0,10.716554,10716.554 +25591,2025-03-10T05:02:25.258364-07:00,0.0,10.731576,10731.576 +25592,2025-03-10T05:02:35.982377-07:00,0.0,10.724013,10724.013 +25593,2025-03-10T05:02:46.702336-07:00,0.0,10.719959,10719.959 +25594,2025-03-10T05:02:57.432199-07:00,0.0,10.729863,10729.863 +25595,2025-03-10T05:03:08.160380-07:00,0.0,10.728181,10728.181 +25596,2025-03-10T05:03:18.877362-07:00,0.0,10.716982,10716.982 +25597,2025-03-10T05:03:29.613412-07:00,0.0,10.73605,10736.05 +25598,2025-03-10T05:03:40.333968-07:00,0.0,10.720556,10720.556 +25599,2025-03-10T05:03:51.060162-07:00,0.0,10.726194,10726.194 +25600,2025-03-10T05:04:01.783311-07:00,0.0,10.723149,10723.149 +25601,2025-03-10T05:04:12.506212-07:00,0.0,10.722901,10722.901 +25602,2025-03-10T05:04:23.230399-07:00,0.0,10.724187,10724.187 +25603,2025-03-10T05:04:33.966163-07:00,0.0,10.735764,10735.764 +25604,2025-03-10T05:04:44.690165-07:00,0.0,10.724002,10724.002 +25605,2025-03-10T05:04:55.417589-07:00,0.0,10.727424,10727.424 +25606,2025-03-10T05:05:06.136352-07:00,0.0,10.718763,10718.763 +25607,2025-03-10T05:05:16.870353-07:00,0.0,10.734001,10734.001 +25608,2025-03-10T05:05:27.595165-07:00,0.0,10.724812,10724.812 +25609,2025-03-10T05:05:38.318164-07:00,0.0,10.722999,10722.999 +25610,2025-03-10T05:05:49.041162-07:00,0.0,10.722998,10722.998 +25611,2025-03-10T05:05:59.775277-07:00,0.0,10.734115,10734.115 +25612,2025-03-10T05:06:10.494142-07:00,0.0,10.718865,10718.865 +25613,2025-03-10T05:06:21.216162-07:00,0.0,10.72202,10722.02 +25614,2025-03-10T05:06:31.948337-07:00,0.0,10.732175,10732.175 +25615,2025-03-10T05:06:42.672161-07:00,0.0,10.723824,10723.824 +25616,2025-03-10T05:06:53.400193-07:00,0.0,10.728032,10728.032 +25617,2025-03-10T05:07:04.120162-07:00,0.0,10.719969,10719.969 +25618,2025-03-10T05:07:14.851164-07:00,0.0,10.731002,10731.002 +25619,2025-03-10T05:07:25.566386-07:00,0.0,10.715222,10715.222 +25620,2025-03-10T05:07:36.293757-07:00,0.0,10.727371,10727.371 +25621,2025-03-10T05:07:47.013998-07:00,0.0,10.720241,10720.241 +25622,2025-03-10T05:07:57.742165-07:00,0.0,10.728167,10728.167 +25623,2025-03-10T05:08:08.470394-07:00,0.0,10.728229,10728.229 +25624,2025-03-10T05:08:19.191162-07:00,0.0,10.720768,10720.768 +25625,2025-03-10T05:08:29.920401-07:00,0.0,10.729239,10729.239 +25626,2025-03-10T05:08:40.642165-07:00,0.0,10.721764,10721.764 +25627,2025-03-10T05:08:51.367378-07:00,0.0,10.725213,10725.213 +25628,2025-03-10T05:09:02.090186-07:00,0.0,10.722808,10722.808 +25629,2025-03-10T05:09:12.813232-07:00,0.0,10.723046,10723.046 +25630,2025-03-10T05:09:23.542351-07:00,0.0,10.729119,10729.119 +25631,2025-03-10T05:09:34.266185-07:00,0.0,10.723834,10723.834 +25632,2025-03-10T05:09:44.988998-07:00,0.0,10.722813,10722.813 +25633,2025-03-10T05:09:55.716349-07:00,0.0,10.727351,10727.351 +25634,2025-03-10T05:10:06.447368-07:00,0.0,10.731019,10731.019 +25635,2025-03-10T05:10:17.168936-07:00,0.0,10.721568,10721.568 +25636,2025-03-10T05:10:27.897165-07:00,0.0,10.728229,10728.229 +25637,2025-03-10T05:10:38.622303-07:00,0.0,10.725138,10725.138 +25638,2025-03-10T05:10:49.355162-07:00,0.0,10.732859,10732.859 +25639,2025-03-10T05:11:00.077392-07:00,0.0,10.72223,10722.23 +25640,2025-03-10T05:11:10.802163-07:00,0.0,10.724771,10724.771 +25641,2025-03-10T05:11:21.534373-07:00,0.0,10.73221,10732.21 +25642,2025-03-10T05:11:32.262316-07:00,0.0,10.727943,10727.943 +25643,2025-03-10T05:11:42.992430-07:00,0.0,10.730114,10730.114 +25644,2025-03-10T05:11:53.716166-07:00,0.0,10.723736,10723.736 +25645,2025-03-10T05:12:04.446361-07:00,0.0,10.730195,10730.195 +25646,2025-03-10T05:12:15.165237-07:00,0.0,10.718876,10718.876 +25647,2025-03-10T05:12:25.897179-07:00,0.0,10.731942,10731.942 +25648,2025-03-10T05:12:36.625496-07:00,0.0,10.728317,10728.317 +25649,2025-03-10T05:12:47.345345-07:00,0.0,10.719849,10719.849 +25650,2025-03-10T05:12:58.077565-07:00,0.0,10.73222,10732.22 +25651,2025-03-10T05:13:08.804165-07:00,0.0,10.7266,10726.6 +25652,2025-03-10T05:13:19.536158-07:00,0.0,10.731993,10731.993 +25653,2025-03-10T05:13:30.259190-07:00,0.0,10.723032,10723.032 +25654,2025-03-10T05:13:40.991211-07:00,0.0,10.732021,10732.021 +25655,2025-03-10T05:13:51.713153-07:00,0.0,10.721942,10721.942 +25656,2025-03-10T05:14:02.442164-07:00,0.0,10.729011,10729.011 +25657,2025-03-10T05:14:13.172188-07:00,0.0,10.730024,10730.024 +25658,2025-03-10T05:14:23.907350-07:00,0.0,10.735162,10735.162 +25659,2025-03-10T05:14:34.635162-07:00,0.0,10.727812,10727.812 +25660,2025-03-10T05:14:45.364345-07:00,0.0,10.729183,10729.183 +25661,2025-03-10T05:14:56.094897-07:00,0.0,10.730552,10730.552 +25662,2025-03-10T05:15:06.817363-07:00,0.0,10.722466,10722.466 +25663,2025-03-10T05:15:17.547425-07:00,0.0,10.730062,10730.062 +25664,2025-03-10T05:15:28.276161-07:00,0.0,10.728736,10728.736 +25665,2025-03-10T05:15:39.000356-07:00,0.0,10.724195,10724.195 +25666,2025-03-10T05:15:49.726162-07:00,0.0,10.725806,10725.806 +25667,2025-03-10T05:16:00.455367-07:00,0.0,10.729205,10729.205 +25668,2025-03-10T05:16:11.188166-07:00,0.0,10.732799,10732.799 +25669,2025-03-10T05:16:21.920017-07:00,0.0,10.731851,10731.851 +25670,2025-03-10T05:16:32.647399-07:00,0.0,10.727382,10727.382 +25671,2025-03-10T05:16:43.375380-07:00,0.0,10.727981,10727.981 +25672,2025-03-10T05:16:54.100227-07:00,0.0,10.724847,10724.847 +25673,2025-03-10T05:17:04.823377-07:00,0.0,10.72315,10723.15 +25674,2025-03-10T05:17:15.548292-07:00,0.0,10.724915,10724.915 +25675,2025-03-10T05:17:26.283327-07:00,0.0,10.735035,10735.035 +25676,2025-03-10T05:17:37.005538-07:00,0.0,10.722211,10722.211 +25677,2025-03-10T05:17:47.732161-07:00,0.0,10.726623,10726.623 +25678,2025-03-10T05:17:58.470227-07:00,0.0,10.738066,10738.066 +25679,2025-03-10T05:18:09.194571-07:00,0.0,10.724344,10724.344 +25680,2025-03-10T05:18:19.924163-07:00,0.0,10.729592,10729.592 +25681,2025-03-10T05:18:30.642964-07:00,0.0,10.718801,10718.801 +25682,2025-03-10T05:18:41.378755-07:00,0.0,10.735791,10735.791 +25683,2025-03-10T05:18:52.104174-07:00,0.0,10.725419,10725.419 +25684,2025-03-10T05:19:02.831358-07:00,0.0,10.727184,10727.184 +25685,2025-03-10T05:19:13.558165-07:00,0.0,10.726807,10726.807 +25686,2025-03-10T05:19:24.286357-07:00,0.0,10.728192,10728.192 +25687,2025-03-10T05:19:35.013249-07:00,0.0,10.726892,10726.892 +25688,2025-03-10T05:19:45.741834-07:00,0.0,10.728585,10728.585 +25689,2025-03-10T05:19:56.467353-07:00,0.0,10.725519,10725.519 +25690,2025-03-10T05:20:07.189159-07:00,0.0,10.721806,10721.806 +25691,2025-03-10T05:20:17.925321-07:00,0.0,10.736162,10736.162 +25692,2025-03-10T05:20:28.654348-07:00,0.0,10.729027,10729.027 +25693,2025-03-10T05:20:39.386315-07:00,0.0,10.731967,10731.967 +25694,2025-03-10T05:20:50.111192-07:00,0.0,10.724877,10724.877 +25695,2025-03-10T05:21:00.839367-07:00,0.0,10.728175,10728.175 +25696,2025-03-10T05:21:11.576165-07:00,0.0,10.736798,10736.798 +25697,2025-03-10T05:21:22.298563-07:00,0.0,10.722398,10722.398 +25698,2025-03-10T05:21:33.028164-07:00,0.0,10.729601,10729.601 +25699,2025-03-10T05:21:43.761686-07:00,0.0,10.733522,10733.522 +25700,2025-03-10T05:21:54.496160-07:00,0.0,10.734474,10734.474 +25701,2025-03-10T05:22:05.225544-07:00,0.0,10.729384,10729.384 +25702,2025-03-10T05:22:15.945229-07:00,0.0,10.719685,10719.685 +25703,2025-03-10T05:22:26.674559-07:00,0.0,10.72933,10729.33 +25704,2025-03-10T05:22:37.413163-07:00,0.0,10.738604,10738.604 +25705,2025-03-10T05:22:48.140165-07:00,0.0,10.727002,10727.002 +25706,2025-03-10T05:22:58.868342-07:00,0.0,10.728177,10728.177 +25707,2025-03-10T05:23:09.602383-07:00,0.0,10.734041,10734.041 +25708,2025-03-10T05:23:20.335364-07:00,0.0,10.732981,10732.981 +25709,2025-03-10T05:23:31.058364-07:00,0.0,10.723,10723.0 +25710,2025-03-10T05:23:41.798707-07:00,0.0,10.740343,10740.343 +25711,2025-03-10T05:23:52.524166-07:00,0.0,10.725459,10725.459 +25712,2025-03-10T05:24:03.251380-07:00,0.0,10.727214,10727.214 +25713,2025-03-10T05:24:13.990370-07:00,0.0,10.73899,10738.99 +25714,2025-03-10T05:24:24.719165-07:00,0.0,10.728795,10728.795 +25715,2025-03-10T05:24:35.452424-07:00,0.0,10.733259,10733.259 +25716,2025-03-10T05:24:46.178163-07:00,0.0,10.725739,10725.739 +25717,2025-03-10T05:24:56.915367-07:00,0.0,10.737204,10737.204 +25718,2025-03-10T05:25:07.644161-07:00,0.0,10.728794,10728.794 +25719,2025-03-10T05:25:18.366210-07:00,0.0,10.722049,10722.049 +25720,2025-03-10T05:25:29.102387-07:00,0.0,10.736177,10736.177 +25721,2025-03-10T05:25:39.823559-07:00,0.0,10.721172,10721.172 +25722,2025-03-10T05:25:50.552163-07:00,0.0,10.728604,10728.604 +25723,2025-03-10T05:26:01.289186-07:00,0.0,10.737023,10737.023 +25724,2025-03-10T05:26:12.016370-07:00,0.0,10.727184,10727.184 +25725,2025-03-10T05:26:22.748291-07:00,0.0,10.731921,10731.921 +25726,2025-03-10T05:26:33.477416-07:00,0.0,10.729125,10729.125 +25727,2025-03-10T05:26:44.198640-07:00,0.0,10.721224,10721.224 +25728,2025-03-10T05:26:54.940316-07:00,0.0,10.741676,10741.676 +25729,2025-03-10T05:27:05.667166-07:00,0.0,10.72685,10726.85 +25730,2025-03-10T05:27:16.396356-07:00,0.0,10.72919,10729.19 +25731,2025-03-10T05:27:27.128227-07:00,0.0,10.731871,10731.871 +25732,2025-03-10T05:27:37.862379-07:00,0.0,10.734152,10734.152 +25733,2025-03-10T05:27:48.594397-07:00,0.0,10.732018,10732.018 +25734,2025-03-10T05:27:59.316813-07:00,0.0,10.722416,10722.416 +25735,2025-03-10T05:28:10.046376-07:00,0.0,10.729563,10729.563 +25736,2025-03-10T05:28:20.780345-07:00,0.0,10.733969,10733.969 +25737,2025-03-10T05:28:31.509164-07:00,0.0,10.728819,10728.819 +25738,2025-03-10T05:28:42.240411-07:00,0.0,10.731247,10731.247 +25739,2025-03-10T05:28:52.969363-07:00,0.0,10.728952,10728.952 +25740,2025-03-10T05:29:03.698195-07:00,0.0,10.728832,10728.832 +25741,2025-03-10T05:29:14.427161-07:00,0.0,10.728966,10728.966 +25742,2025-03-10T05:29:25.150311-07:00,0.0,10.72315,10723.15 +25743,2025-03-10T05:29:35.881246-07:00,0.0,10.730935,10730.935 +25744,2025-03-10T05:29:46.615341-07:00,0.0,10.734095,10734.095 +25745,2025-03-10T05:29:57.348850-07:00,0.0,10.733509,10733.509 +25746,2025-03-10T05:30:08.077451-07:00,0.0,10.728601,10728.601 +25747,2025-03-10T05:30:18.812158-07:00,0.0,10.734707,10734.707 +25748,2025-03-10T05:30:29.544357-07:00,0.0,10.732199,10732.199 +25749,2025-03-10T05:30:40.270254-07:00,0.0,10.725897,10725.897 +25750,2025-03-10T05:30:50.995388-07:00,0.0,10.725134,10725.134 +25751,2025-03-10T05:31:01.734544-07:00,0.0,10.739156,10739.156 +25752,2025-03-10T05:31:12.466163-07:00,0.0,10.731619,10731.619 +25753,2025-03-10T05:31:23.192203-07:00,0.0,10.72604,10726.04 +25754,2025-03-10T05:31:33.925555-07:00,0.0,10.733352,10733.352 +25755,2025-03-10T05:31:44.655163-07:00,0.0,10.729608,10729.608 +25756,2025-03-10T05:31:55.391197-07:00,0.0,10.736034,10736.034 +25757,2025-03-10T05:32:06.111651-07:00,0.0,10.720454,10720.454 +25758,2025-03-10T05:32:16.846162-07:00,0.0,10.734511,10734.511 +25759,2025-03-10T05:32:27.584522-07:00,0.0,10.73836,10738.36 +25760,2025-03-10T05:32:38.309344-07:00,0.0,10.724822,10724.822 +25761,2025-03-10T05:32:49.046263-07:00,0.0,10.736919,10736.919 +25762,2025-03-10T05:32:59.777167-07:00,0.0,10.730904,10730.904 +25763,2025-03-10T05:33:10.502266-07:00,0.0,10.725099,10725.099 +25764,2025-03-10T05:33:21.244271-07:00,0.0,10.742005,10742.005 +25765,2025-03-10T05:33:31.973163-07:00,0.0,10.728892,10728.892 +25766,2025-03-10T05:33:42.705170-07:00,0.0,10.732007,10732.007 +25767,2025-03-10T05:33:53.428494-07:00,0.0,10.723324,10723.324 +25768,2025-03-10T05:34:04.156293-07:00,0.0,10.727799,10727.799 +25769,2025-03-10T05:34:14.888418-07:00,0.0,10.732125,10732.125 +25770,2025-03-10T05:34:25.618767-07:00,0.0,10.730349,10730.349 +25771,2025-03-10T05:34:36.345239-07:00,0.0,10.726472,10726.472 +25772,2025-03-10T05:34:47.070046-07:00,0.0,10.724807,10724.807 +25773,2025-03-10T05:34:57.803165-07:00,0.0,10.733119,10733.119 +25774,2025-03-10T05:35:08.531351-07:00,0.0,10.728186,10728.186 +25775,2025-03-10T05:35:19.255211-07:00,0.0,10.72386,10723.86 +25776,2025-03-10T05:35:29.986188-07:00,0.0,10.730977,10730.977 +25777,2025-03-10T05:35:40.712540-07:00,0.0,10.726352,10726.352 +25778,2025-03-10T05:35:51.448398-07:00,0.0,10.735858,10735.858 +25779,2025-03-10T05:36:02.171236-07:00,0.0,10.722838,10722.838 +25780,2025-03-10T05:36:12.900559-07:00,0.0,10.729323,10729.323 +25781,2025-03-10T05:36:23.629160-07:00,0.0,10.728601,10728.601 +25782,2025-03-10T05:36:34.354167-07:00,0.0,10.725007,10725.007 +25783,2025-03-10T05:36:45.075165-07:00,0.0,10.720998,10720.998 +25784,2025-03-10T05:36:55.808172-07:00,0.0,10.733007,10733.007 +25785,2025-03-10T05:37:06.536412-07:00,0.0,10.72824,10728.24 +25786,2025-03-10T05:37:17.262269-07:00,0.0,10.725857,10725.857 +25787,2025-03-10T05:37:27.982641-07:00,0.0,10.720372,10720.372 +25788,2025-03-10T05:37:38.720247-07:00,0.0,10.737606,10737.606 +25789,2025-03-10T05:37:49.441258-07:00,0.0,10.721011,10721.011 +25790,2025-03-10T05:38:00.173501-07:00,0.0,10.732243,10732.243 +25791,2025-03-10T05:38:10.896163-07:00,0.0,10.722662,10722.662 +25792,2025-03-10T05:38:21.631923-07:00,0.0,10.73576,10735.76 +25793,2025-03-10T05:38:32.363380-07:00,0.0,10.731457,10731.457 +25794,2025-03-10T05:38:43.079278-07:00,0.0,10.715898,10715.898 +25795,2025-03-10T05:38:53.810652-07:00,0.0,10.731374,10731.374 +25796,2025-03-10T05:39:04.540551-07:00,0.0,10.729899,10729.899 +25797,2025-03-10T05:39:15.265252-07:00,0.0,10.724701,10724.701 +25798,2025-03-10T05:39:25.995357-07:00,0.0,10.730105,10730.105 +25799,2025-03-10T05:39:36.724163-07:00,0.0,10.728806,10728.806 +25800,2025-03-10T05:39:47.448143-07:00,0.0,10.72398,10723.98 +25801,2025-03-10T05:39:58.178187-07:00,0.0,10.730044,10730.044 +25802,2025-03-10T05:40:08.906445-07:00,0.0,10.728258,10728.258 +25803,2025-03-10T05:40:19.632363-07:00,0.0,10.725918,10725.918 +25804,2025-03-10T05:40:30.362157-07:00,0.0,10.729794,10729.794 +25805,2025-03-10T05:40:41.085360-07:00,0.0,10.723203,10723.203 +25806,2025-03-10T05:40:51.812160-07:00,0.0,10.7268,10726.8 +25807,2025-03-10T05:41:02.539364-07:00,0.0,10.727204,10727.204 +25808,2025-03-10T05:41:13.266361-07:00,0.0,10.726997,10726.997 +25809,2025-03-10T05:41:23.998316-07:00,0.0,10.731955,10731.955 +25810,2025-03-10T05:41:34.717425-07:00,0.0,10.719109,10719.109 +25811,2025-03-10T05:41:45.450173-07:00,0.0,10.732748,10732.748 +25812,2025-03-10T05:41:56.179268-07:00,0.0,10.729095,10729.095 +25813,2025-03-10T05:42:06.908160-07:00,0.0,10.728892,10728.892 +25814,2025-03-10T05:42:17.634240-07:00,0.0,10.72608,10726.08 +25815,2025-03-10T05:42:28.357579-07:00,0.0,10.723339,10723.339 +25816,2025-03-10T05:42:39.088393-07:00,0.0,10.730814,10730.814 +25817,2025-03-10T05:42:49.825348-07:00,0.0,10.736955,10736.955 +25818,2025-03-10T05:43:00.550163-07:00,0.0,10.724815,10724.815 +25819,2025-03-10T05:43:11.279864-07:00,0.0,10.729701,10729.701 +25820,2025-03-10T05:43:22.008165-07:00,0.0,10.728301,10728.301 +25821,2025-03-10T05:43:32.741419-07:00,0.0,10.733254,10733.254 +25822,2025-03-10T05:43:43.463159-07:00,0.0,10.72174,10721.74 +25823,2025-03-10T05:43:54.188166-07:00,0.0,10.725007,10725.007 +25824,2025-03-10T05:44:04.922340-07:00,0.0,10.734174,10734.174 +25825,2025-03-10T05:44:15.640165-07:00,0.0,10.717825,10717.825 +25826,2025-03-10T05:44:26.370383-07:00,0.0,10.730218,10730.218 +25827,2025-03-10T05:44:37.098158-07:00,0.0,10.727775,10727.775 +25828,2025-03-10T05:44:47.826165-07:00,0.0,10.728007,10728.007 +25829,2025-03-10T05:44:58.546673-07:00,0.0,10.720508,10720.508 +25830,2025-03-10T05:45:09.273437-07:00,0.0,10.726764,10726.764 +25831,2025-03-10T05:45:20.002853-07:00,0.0,10.729416,10729.416 +25832,2025-03-10T05:45:30.725165-07:00,0.0,10.722312,10722.312 +25833,2025-03-10T05:45:41.450473-07:00,0.0,10.725308,10725.308 +25834,2025-03-10T05:45:52.184887-07:00,0.0,10.734414,10734.414 +25835,2025-03-10T05:46:02.903167-07:00,0.0,10.71828,10718.28 +25836,2025-03-10T05:46:13.624369-07:00,0.0,10.721202,10721.202 +25837,2025-03-10T05:46:24.351162-07:00,0.0,10.726793,10726.793 +25838,2025-03-10T05:46:35.079364-07:00,0.0,10.728202,10728.202 +25839,2025-03-10T05:46:45.815185-07:00,0.0,10.735821,10735.821 +25840,2025-03-10T05:46:56.538161-07:00,0.0,10.722976,10722.976 +25841,2025-03-10T05:47:07.269385-07:00,0.0,10.731224,10731.224 +25842,2025-03-10T05:47:17.992162-07:00,0.0,10.722777,10722.777 +25843,2025-03-10T05:47:28.720165-07:00,0.0,10.728003,10728.003 +25844,2025-03-10T05:47:39.447295-07:00,0.0,10.72713,10727.13 +25845,2025-03-10T05:47:50.182163-07:00,0.0,10.734868,10734.868 +25846,2025-03-10T05:48:00.904350-07:00,0.0,10.722187,10722.187 +25847,2025-03-10T05:48:11.630166-07:00,0.0,10.725816,10725.816 +25848,2025-03-10T05:48:22.359162-07:00,0.0,10.728996,10728.996 +25849,2025-03-10T05:48:33.093425-07:00,0.0,10.734263,10734.263 +25850,2025-03-10T05:48:43.813219-07:00,0.0,10.719794,10719.794 +25851,2025-03-10T05:48:54.541676-07:00,0.0,10.728457,10728.457 +25852,2025-03-10T05:49:05.264193-07:00,0.0,10.722517,10722.517 +25853,2025-03-10T05:49:15.994322-07:00,0.0,10.730129,10730.129 +25854,2025-03-10T05:49:26.720903-07:00,0.0,10.726581,10726.581 +25855,2025-03-10T05:49:37.454160-07:00,0.0,10.733257,10733.257 +25856,2025-03-10T05:49:48.173338-07:00,0.0,10.719178,10719.178 +25857,2025-03-10T05:49:58.908157-07:00,0.0,10.734819,10734.819 +25858,2025-03-10T05:50:09.633165-07:00,0.0,10.725008,10725.008 +25859,2025-03-10T05:50:20.354190-07:00,0.0,10.721025,10721.025 +25860,2025-03-10T05:50:31.087227-07:00,0.0,10.733037,10733.037 +25861,2025-03-10T05:50:41.807339-07:00,0.0,10.720112,10720.112 +25862,2025-03-10T05:50:52.536355-07:00,0.0,10.729016,10729.016 +25863,2025-03-10T05:51:03.270212-07:00,0.0,10.733857,10733.857 +25864,2025-03-10T05:51:13.993632-07:00,0.0,10.72342,10723.42 +25865,2025-03-10T05:51:24.722373-07:00,0.0,10.728741,10728.741 +25866,2025-03-10T05:51:35.441344-07:00,0.0,10.718971,10718.971 +25867,2025-03-10T05:51:46.169359-07:00,0.0,10.728015,10728.015 +25868,2025-03-10T05:51:56.892203-07:00,0.0,10.722844,10722.844 +25869,2025-03-10T05:52:07.624185-07:00,0.0,10.731982,10731.982 +25870,2025-03-10T05:52:18.346351-07:00,0.0,10.722166,10722.166 +25871,2025-03-10T05:52:29.072788-07:00,0.0,10.726437,10726.437 +25872,2025-03-10T05:52:39.797372-07:00,0.0,10.724584,10724.584 +25873,2025-03-10T05:52:50.525365-07:00,0.0,10.727993,10727.993 +25874,2025-03-10T05:53:01.230947-07:00,0.0,10.705582,10705.582 +25875,2025-03-10T05:53:11.961110-07:00,0.0,10.730163,10730.163 +25876,2025-03-10T05:53:22.681889-07:00,0.0,10.720779,10720.779 +25877,2025-03-10T05:53:33.414895-07:00,0.0,10.733006,10733.006 +25878,2025-03-10T05:53:44.138101-07:00,0.0,10.723206,10723.206 +25879,2025-03-10T05:53:54.857893-07:00,0.0,10.719792,10719.792 +25880,2025-03-10T05:54:05.592081-07:00,0.0,10.734188,10734.188 +25881,2025-03-10T05:54:16.310895-07:00,0.0,10.718814,10718.814 +25882,2025-03-10T05:54:27.037919-07:00,0.0,10.727024,10727.024 +25883,2025-03-10T05:54:37.766701-07:00,0.0,10.728782,10728.782 +25884,2025-03-10T05:54:48.489896-07:00,0.0,10.723195,10723.195 +25885,2025-03-10T05:54:59.221077-07:00,0.0,10.731181,10731.181 +25886,2025-03-10T05:55:09.943911-07:00,0.0,10.722834,10722.834 +25887,2025-03-10T05:55:20.673975-07:00,0.0,10.730064,10730.064 +25888,2025-03-10T05:55:31.392894-07:00,0.0,10.718919,10718.919 +25889,2025-03-10T05:55:42.119893-07:00,0.0,10.726999,10726.999 +25890,2025-03-10T05:55:52.846081-07:00,0.0,10.726188,10726.188 +25891,2025-03-10T05:56:03.574033-07:00,0.0,10.727952,10727.952 +25892,2025-03-10T05:56:14.296066-07:00,0.0,10.722033,10722.033 +25893,2025-03-10T05:56:25.029074-07:00,0.0,10.733008,10733.008 +25894,2025-03-10T05:56:35.748322-07:00,0.0,10.719248,10719.248 +25895,2025-03-10T05:56:46.474892-07:00,0.0,10.72657,10726.57 +25896,2025-03-10T05:56:57.201895-07:00,0.0,10.727003,10727.003 +25897,2025-03-10T05:57:07.922853-07:00,0.0,10.720958,10720.958 +25898,2025-03-10T05:57:18.643362-07:00,0.0,10.720509,10720.509 +25899,2025-03-10T05:57:29.378088-07:00,0.0,10.734726,10734.726 +25900,2025-03-10T05:57:40.098894-07:00,0.0,10.720806,10720.806 +25901,2025-03-10T05:57:50.827972-07:00,0.0,10.729078,10729.078 +25902,2025-03-10T05:58:01.554922-07:00,0.0,10.72695,10726.95 +25903,2025-03-10T05:58:12.270066-07:00,0.0,10.715144,10715.144 +25904,2025-03-10T05:58:23.001944-07:00,0.0,10.731878,10731.878 +25905,2025-03-10T05:58:33.724897-07:00,0.0,10.722953,10722.953 +25906,2025-03-10T05:58:44.445169-07:00,0.0,10.720272,10720.272 +25907,2025-03-10T05:58:55.176898-07:00,0.0,10.731729,10731.729 +25908,2025-03-10T05:59:05.896067-07:00,0.0,10.719169,10719.169 +25909,2025-03-10T05:59:16.630919-07:00,0.0,10.734852,10734.852 +25910,2025-03-10T05:59:27.355109-07:00,0.0,10.72419,10724.19 +25911,2025-03-10T05:59:38.076914-07:00,0.0,10.721805,10721.805 +25912,2025-03-10T05:59:48.801961-07:00,0.0,10.725047,10725.047 +25913,2025-03-10T05:59:59.535336-07:00,0.0,10.733375,10733.375 +25914,2025-03-10T06:00:10.255324-07:00,0.0,10.719988,10719.988 +25915,2025-03-10T06:00:20.980895-07:00,0.0,10.725571,10725.571 +25916,2025-03-10T06:00:31.709372-07:00,0.0,10.728477,10728.477 +25917,2025-03-10T06:00:42.432930-07:00,0.0,10.723558,10723.558 +25918,2025-03-10T06:00:53.154959-07:00,0.0,10.722029,10722.029 +25919,2025-03-10T06:01:03.892102-07:00,0.0,10.737143,10737.143 +25920,2025-03-10T06:01:14.617895-07:00,0.0,10.725793,10725.793 +25921,2025-03-10T06:01:25.339893-07:00,0.0,10.721998,10721.998 +25922,2025-03-10T06:01:36.066190-07:00,0.0,10.726297,10726.297 +25923,2025-03-10T06:01:46.786893-07:00,0.0,10.720703,10720.703 +25924,2025-03-10T06:01:57.513410-07:00,0.0,10.726517,10726.517 +25925,2025-03-10T06:02:08.240297-07:00,0.0,10.726887,10726.887 +25926,2025-03-10T06:02:18.964058-07:00,0.0,10.723761,10723.761 +25927,2025-03-10T06:02:29.694066-07:00,0.0,10.730008,10730.008 +25928,2025-03-10T06:02:40.414093-07:00,0.0,10.720027,10720.027 +25929,2025-03-10T06:02:51.138072-07:00,0.0,10.723979,10723.979 +25930,2025-03-10T06:03:01.870004-07:00,0.0,10.731932,10731.932 +25931,2025-03-10T06:03:12.593889-07:00,0.0,10.723885,10723.885 +25932,2025-03-10T06:03:23.317086-07:00,0.0,10.723197,10723.197 +25933,2025-03-10T06:03:34.050895-07:00,0.0,10.733809,10733.809 +25934,2025-03-10T06:03:44.767292-07:00,0.0,10.716397,10716.397 +25935,2025-03-10T06:03:55.500075-07:00,0.0,10.732783,10732.783 +25936,2025-03-10T06:04:06.221149-07:00,0.0,10.721074,10721.074 +25937,2025-03-10T06:04:16.943096-07:00,0.0,10.721947,10721.947 +25938,2025-03-10T06:04:27.665959-07:00,0.0,10.722863,10722.863 +25939,2025-03-10T06:04:38.390915-07:00,0.0,10.724956,10724.956 +25940,2025-03-10T06:04:49.121418-07:00,0.0,10.730503,10730.503 +25941,2025-03-10T06:04:59.845070-07:00,0.0,10.723652,10723.652 +25942,2025-03-10T06:05:10.572072-07:00,0.0,10.727002,10727.002 +25943,2025-03-10T06:05:21.293122-07:00,0.0,10.72105,10721.05 +25944,2025-03-10T06:05:32.019929-07:00,0.0,10.726807,10726.807 +25945,2025-03-10T06:05:42.744117-07:00,0.0,10.724188,10724.188 +25946,2025-03-10T06:05:53.459457-07:00,0.0,10.71534,10715.34 +25947,2025-03-10T06:06:04.185887-07:00,0.0,10.72643,10726.43 +25948,2025-03-10T06:06:14.912923-07:00,0.0,10.727036,10727.036 +25949,2025-03-10T06:06:25.639897-07:00,0.0,10.726974,10726.974 +25950,2025-03-10T06:06:36.357097-07:00,0.0,10.7172,10717.2 +25951,2025-03-10T06:06:47.084959-07:00,0.0,10.727862,10727.862 +25952,2025-03-10T06:06:57.803864-07:00,0.0,10.718905,10718.905 +25953,2025-03-10T06:07:08.534908-07:00,0.0,10.731044,10731.044 +25954,2025-03-10T06:07:19.253084-07:00,0.0,10.718176,10718.176 +25955,2025-03-10T06:07:29.980896-07:00,0.0,10.727812,10727.812 +25956,2025-03-10T06:07:40.703125-07:00,0.0,10.722229,10722.229 +25957,2025-03-10T06:07:51.436085-07:00,0.0,10.73296,10732.96 +25958,2025-03-10T06:08:02.157954-07:00,0.0,10.721869,10721.869 +25959,2025-03-10T06:08:12.890895-07:00,0.0,10.732941,10732.941 +25960,2025-03-10T06:08:23.616914-07:00,0.0,10.726019,10726.019 +25961,2025-03-10T06:08:34.342085-07:00,0.0,10.725171,10725.171 +25962,2025-03-10T06:08:45.071341-07:00,0.0,10.729256,10729.256 +25963,2025-03-10T06:08:55.789917-07:00,0.0,10.718576,10718.576 +25964,2025-03-10T06:09:06.517840-07:00,0.0,10.727923,10727.923 +25965,2025-03-10T06:09:17.247444-07:00,0.0,10.729604,10729.604 +25966,2025-03-10T06:09:27.973108-07:00,0.0,10.725664,10725.664 +25967,2025-03-10T06:09:38.698892-07:00,0.0,10.725784,10725.784 +25968,2025-03-10T06:09:49.428101-07:00,0.0,10.729209,10729.209 +25969,2025-03-10T06:10:00.152485-07:00,0.0,10.724384,10724.384 +25970,2025-03-10T06:10:10.882892-07:00,0.0,10.730407,10730.407 +25971,2025-03-10T06:10:11.084059-07:00,0.0,0.201167,201.167 +25972,2025-03-10T06:10:21.606912-07:00,0.0,10.522853,10522.853 +25973,2025-03-10T06:10:32.325986-07:00,0.0,10.719074,10719.074 +25974,2025-03-10T06:10:43.052334-07:00,0.0,10.726348,10726.348 +25975,2025-03-10T06:10:53.772893-07:00,0.0,10.720559,10720.559 +25976,2025-03-10T06:11:04.499896-07:00,0.0,10.727003,10727.003 +25977,2025-03-10T06:11:15.224633-07:00,0.0,10.724737,10724.737 +25978,2025-03-10T06:11:25.951100-07:00,0.0,10.726467,10726.467 +25979,2025-03-10T06:11:36.682009-07:00,0.0,10.730909,10730.909 +25980,2025-03-10T06:11:47.406899-07:00,0.0,10.72489,10724.89 +25981,2025-03-10T06:11:58.140108-07:00,0.0,10.733209,10733.209 +25982,2025-03-10T06:12:08.865877-07:00,0.0,10.725769,10725.769 +25983,2025-03-10T06:12:19.592895-07:00,0.0,10.727018,10727.018 +25984,2025-03-10T06:12:30.319622-07:00,0.0,10.726727,10726.727 +25985,2025-03-10T06:12:41.056815-07:00,0.0,10.737193,10737.193 +25986,2025-03-10T06:12:51.783895-07:00,0.0,10.72708,10727.08 +25987,2025-03-10T06:13:02.518217-07:00,0.0,10.734322,10734.322 +25988,2025-03-10T06:13:13.241029-07:00,0.0,10.722812,10722.812 +25989,2025-03-10T06:13:23.975896-07:00,0.0,10.734867,10734.867 +25990,2025-03-10T06:13:34.706672-07:00,0.0,10.730776,10730.776 +25991,2025-03-10T06:13:45.434893-07:00,0.0,10.728221,10728.221 +25992,2025-03-10T06:13:56.160894-07:00,0.0,10.726001,10726.001 +25993,2025-03-10T06:14:06.885076-07:00,0.0,10.724182,10724.182 +25994,2025-03-10T06:14:17.613920-07:00,0.0,10.728844,10728.844 +25995,2025-03-10T06:14:28.343069-07:00,0.0,10.729149,10729.149 +25996,2025-03-10T06:14:39.072763-07:00,0.0,10.729694,10729.694 +25997,2025-03-10T06:14:49.797893-07:00,0.0,10.72513,10725.13 +25998,2025-03-10T06:15:00.526087-07:00,0.0,10.728194,10728.194 +25999,2025-03-10T06:15:11.260063-07:00,0.0,10.733976,10733.976 +26000,2025-03-10T06:15:21.986896-07:00,0.0,10.726833,10726.833 +26001,2025-03-10T06:15:32.714081-07:00,0.0,10.727185,10727.185 +26002,2025-03-10T06:15:43.434903-07:00,0.0,10.720822,10720.822 +26003,2025-03-10T06:15:54.157069-07:00,0.0,10.722166,10722.166 +26004,2025-03-10T06:16:04.890901-07:00,0.0,10.733832,10733.832 +26005,2025-03-10T06:16:15.616987-07:00,0.0,10.726086,10726.086 +26006,2025-03-10T06:16:26.340995-07:00,0.0,10.724008,10724.008 +26007,2025-03-10T06:16:37.067098-07:00,0.0,10.726103,10726.103 +26008,2025-03-10T06:16:47.803926-07:00,0.0,10.736828,10736.828 +26009,2025-03-10T06:16:58.530115-07:00,0.0,10.726189,10726.189 +26010,2025-03-10T06:17:09.258033-07:00,0.0,10.727918,10727.918 +26011,2025-03-10T06:17:19.981069-07:00,0.0,10.723036,10723.036 +26012,2025-03-10T06:17:30.713963-07:00,0.0,10.732894,10732.894 +26013,2025-03-10T06:17:41.441558-07:00,0.0,10.727595,10727.595 +26014,2025-03-10T06:17:52.177100-07:00,0.0,10.735542,10735.542 +26015,2025-03-10T06:18:02.902932-07:00,0.0,10.725832,10725.832 +26016,2025-03-10T06:18:13.632429-07:00,0.0,10.729497,10729.497 +26017,2025-03-10T06:18:24.363147-07:00,0.0,10.730718,10730.718 +26018,2025-03-10T06:18:35.086895-07:00,0.0,10.723748,10723.748 +26019,2025-03-10T06:18:45.821893-07:00,0.0,10.734998,10734.998 +26020,2025-03-10T06:18:56.548919-07:00,0.0,10.727026,10727.026 +26021,2025-03-10T06:19:07.275895-07:00,0.0,10.726976,10726.976 +26022,2025-03-10T06:19:17.998798-07:00,0.0,10.722903,10722.903 +26023,2025-03-10T06:19:28.730892-07:00,0.0,10.732094,10732.094 +26024,2025-03-10T06:19:39.453967-07:00,0.0,10.723075,10723.075 +26025,2025-03-10T06:19:50.182028-07:00,0.0,10.728061,10728.061 +26026,2025-03-10T06:20:00.910956-07:00,0.0,10.728928,10728.928 +26027,2025-03-10T06:20:11.634076-07:00,0.0,10.72312,10723.12 +26028,2025-03-10T06:20:22.359897-07:00,0.0,10.725821,10725.821 +26029,2025-03-10T06:20:33.091113-07:00,0.0,10.731216,10731.216 +26030,2025-03-10T06:20:43.815919-07:00,0.0,10.724806,10724.806 +26031,2025-03-10T06:20:54.546898-07:00,0.0,10.730979,10730.979 +26032,2025-03-10T06:21:05.278000-07:00,0.0,10.731102,10731.102 +26033,2025-03-10T06:21:16.002921-07:00,0.0,10.724921,10724.921 +26034,2025-03-10T06:21:26.728895-07:00,0.0,10.725974,10725.974 +26035,2025-03-10T06:21:37.449890-07:00,0.0,10.720995,10720.995 +26036,2025-03-10T06:21:48.178099-07:00,0.0,10.728209,10728.209 +26037,2025-03-10T06:21:58.906071-07:00,0.0,10.727972,10727.972 +26038,2025-03-10T06:22:09.639895-07:00,0.0,10.733824,10733.824 +26039,2025-03-10T06:22:20.361107-07:00,0.0,10.721212,10721.212 +26040,2025-03-10T06:22:31.095118-07:00,0.0,10.734011,10734.011 +26041,2025-03-10T06:22:41.820894-07:00,0.0,10.725776,10725.776 +26042,2025-03-10T06:22:52.548354-07:00,0.0,10.72746,10727.46 +26043,2025-03-10T06:23:03.277896-07:00,0.0,10.729542,10729.542 +26044,2025-03-10T06:23:14.003895-07:00,0.0,10.725999,10725.999 +26045,2025-03-10T06:23:24.733306-07:00,0.0,10.729411,10729.411 +26046,2025-03-10T06:23:35.461892-07:00,0.0,10.728586,10728.586 +26047,2025-03-10T06:23:46.183078-07:00,0.0,10.721186,10721.186 +26048,2025-03-10T06:23:56.914894-07:00,0.0,10.731816,10731.816 +26049,2025-03-10T06:24:07.641890-07:00,0.0,10.726996,10726.996 +26050,2025-03-10T06:24:18.368064-07:00,0.0,10.726174,10726.174 +26051,2025-03-10T06:24:29.090240-07:00,0.0,10.722176,10722.176 +26052,2025-03-10T06:24:39.820080-07:00,0.0,10.72984,10729.84 +26053,2025-03-10T06:24:50.547058-07:00,0.0,10.726978,10726.978 +26054,2025-03-10T06:25:01.280895-07:00,0.0,10.733837,10733.837 +26055,2025-03-10T06:25:12.011945-07:00,0.0,10.73105,10731.05 +26056,2025-03-10T06:25:22.736890-07:00,0.0,10.724945,10724.945 +26057,2025-03-10T06:25:33.464106-07:00,0.0,10.727216,10727.216 +26058,2025-03-10T06:25:44.189958-07:00,0.0,10.725852,10725.852 +26059,2025-03-10T06:25:54.906890-07:00,0.0,10.716932,10716.932 +26060,2025-03-10T06:26:05.639067-07:00,0.0,10.732177,10732.177 +26061,2025-03-10T06:26:16.362893-07:00,0.0,10.723826,10723.826 +26062,2025-03-10T06:26:27.097270-07:00,0.0,10.734377,10734.377 +26063,2025-03-10T06:26:37.815893-07:00,0.0,10.718623,10718.623 +26064,2025-03-10T06:26:48.542892-07:00,0.0,10.726999,10726.999 +26065,2025-03-10T06:26:59.269209-07:00,0.0,10.726317,10726.317 +26066,2025-03-10T06:27:09.989349-07:00,0.0,10.72014,10720.14 +26067,2025-03-10T06:27:20.723066-07:00,0.0,10.733717,10733.717 +26068,2025-03-10T06:27:31.443893-07:00,0.0,10.720827,10720.827 +26069,2025-03-10T06:27:42.172334-07:00,0.0,10.728441,10728.441 +26070,2025-03-10T06:27:52.887297-07:00,0.0,10.714963,10714.963 +26071,2025-03-10T06:28:03.621198-07:00,0.0,10.733901,10733.901 +26072,2025-03-10T06:28:14.337892-07:00,0.0,10.716694,10716.694 +26073,2025-03-10T06:28:25.069329-07:00,0.0,10.731437,10731.437 +26074,2025-03-10T06:28:35.789714-07:00,0.0,10.720385,10720.385 +26075,2025-03-10T06:28:46.522047-07:00,0.0,10.732333,10732.333 +26076,2025-03-10T06:28:57.237069-07:00,0.0,10.715022,10715.022 +26077,2025-03-10T06:29:07.962174-07:00,0.0,10.725105,10725.105 +26078,2025-03-10T06:29:18.688358-07:00,0.0,10.726184,10726.184 +26079,2025-03-10T06:29:29.407898-07:00,0.0,10.71954,10719.54 +26080,2025-03-10T06:29:40.136068-07:00,0.0,10.72817,10728.17 +26081,2025-03-10T06:29:50.867699-07:00,0.0,10.731631,10731.631 +26082,2025-03-10T06:30:01.585921-07:00,0.0,10.718222,10718.222 +26083,2025-03-10T06:30:12.317094-07:00,0.0,10.731173,10731.173 +26084,2025-03-10T06:30:23.043893-07:00,0.0,10.726799,10726.799 +26085,2025-03-10T06:30:33.767112-07:00,0.0,10.723219,10723.219 +26086,2025-03-10T06:30:44.501023-07:00,0.0,10.733911,10733.911 +26087,2025-03-10T06:30:55.221894-07:00,0.0,10.720871,10720.871 +26088,2025-03-10T06:31:05.951091-07:00,0.0,10.729197,10729.197 +26089,2025-03-10T06:31:16.679953-07:00,0.0,10.728862,10728.862 +26090,2025-03-10T06:31:27.413013-07:00,0.0,10.73306,10733.06 +26091,2025-03-10T06:31:38.145072-07:00,0.0,10.732059,10732.059 +26092,2025-03-10T06:31:48.868894-07:00,0.0,10.723822,10723.822 +26093,2025-03-10T06:31:59.596887-07:00,0.0,10.727993,10727.993 +26094,2025-03-10T06:32:10.324920-07:00,0.0,10.728033,10728.033 +26095,2025-03-10T06:32:21.057214-07:00,0.0,10.732294,10732.294 +26096,2025-03-10T06:32:31.786096-07:00,0.0,10.728882,10728.882 +26097,2025-03-10T06:32:42.513987-07:00,0.0,10.727891,10727.891 +26098,2025-03-10T06:32:53.241100-07:00,0.0,10.727113,10727.113 +26099,2025-03-10T06:33:03.963196-07:00,0.0,10.722096,10722.096 +26100,2025-03-10T06:33:14.694062-07:00,0.0,10.730866,10730.866 +26101,2025-03-10T06:33:25.418697-07:00,0.0,10.724635,10724.635 +26102,2025-03-10T06:33:36.154598-07:00,0.0,10.735901,10735.901 +26103,2025-03-10T06:33:46.875519-07:00,0.0,10.720921,10720.921 +26104,2025-03-10T06:33:57.612337-07:00,0.0,10.736818,10736.818 +26105,2025-03-10T06:34:08.337891-07:00,0.0,10.725554,10725.554 +26106,2025-03-10T06:34:19.070900-07:00,0.0,10.733009,10733.009 +26107,2025-03-10T06:34:29.801950-07:00,0.0,10.73105,10731.05 +26108,2025-03-10T06:34:40.524893-07:00,0.0,10.722943,10722.943 +26109,2025-03-10T06:34:51.244039-07:00,0.0,10.719146,10719.146 +26110,2025-03-10T06:35:01.975236-07:00,0.0,10.731197,10731.197 +26111,2025-03-10T06:35:12.701966-07:00,0.0,10.72673,10726.73 +26112,2025-03-10T06:35:23.427259-07:00,0.0,10.725293,10725.293 +26113,2025-03-10T06:35:34.150961-07:00,0.0,10.723702,10723.702 +26114,2025-03-10T06:35:44.876306-07:00,0.0,10.725345,10725.345 +26115,2025-03-10T06:35:55.601892-07:00,0.0,10.725586,10725.586 +26116,2025-03-10T06:36:06.332726-07:00,0.0,10.730834,10730.834 +26117,2025-03-10T06:36:17.057092-07:00,0.0,10.724366,10724.366 +26118,2025-03-10T06:36:27.783293-07:00,0.0,10.726201,10726.201 +26119,2025-03-10T06:36:38.511080-07:00,0.0,10.727787,10727.787 +26120,2025-03-10T06:36:49.228947-07:00,0.0,10.717867,10717.867 +26121,2025-03-10T06:36:59.961095-07:00,0.0,10.732148,10732.148 +26122,2025-03-10T06:37:10.682899-07:00,0.0,10.721804,10721.804 +26123,2025-03-10T06:37:21.405895-07:00,0.0,10.722996,10722.996 +26124,2025-03-10T06:37:32.137861-07:00,0.0,10.731966,10731.966 +26125,2025-03-10T06:37:42.866895-07:00,0.0,10.729034,10729.034 +26126,2025-03-10T06:37:53.585076-07:00,0.0,10.718181,10718.181 +26127,2025-03-10T06:38:04.318895-07:00,0.0,10.733819,10733.819 +26128,2025-03-10T06:38:15.042893-07:00,0.0,10.723998,10723.998 +26129,2025-03-10T06:38:25.762892-07:00,0.0,10.719999,10719.999 +26130,2025-03-10T06:38:36.490068-07:00,0.0,10.727176,10727.176 +26131,2025-03-10T06:38:47.215182-07:00,0.0,10.725114,10725.114 +26132,2025-03-10T06:38:57.936890-07:00,0.0,10.721708,10721.708 +26133,2025-03-10T06:39:08.665085-07:00,0.0,10.728195,10728.195 +26134,2025-03-10T06:39:19.394922-07:00,0.0,10.729837,10729.837 +26135,2025-03-10T06:39:30.123074-07:00,0.0,10.728152,10728.152 +26136,2025-03-10T06:39:40.851554-07:00,0.0,10.72848,10728.48 +26137,2025-03-10T06:39:51.573926-07:00,0.0,10.722372,10722.372 +26138,2025-03-10T06:40:02.299429-07:00,0.0,10.725503,10725.503 +26139,2025-03-10T06:40:13.026895-07:00,0.0,10.727466,10727.466 +26140,2025-03-10T06:40:23.752086-07:00,0.0,10.725191,10725.191 +26141,2025-03-10T06:40:34.484097-07:00,0.0,10.732011,10732.011 +26142,2025-03-10T06:40:45.201887-07:00,0.0,10.71779,10717.79 +26143,2025-03-10T06:40:55.927918-07:00,0.0,10.726031,10726.031 +26144,2025-03-10T06:41:06.654095-07:00,0.0,10.726177,10726.177 +26145,2025-03-10T06:41:17.383071-07:00,0.0,10.728976,10728.976 +26146,2025-03-10T06:41:28.108895-07:00,0.0,10.725824,10725.824 +26147,2025-03-10T06:41:38.836896-07:00,0.0,10.728001,10728.001 +26148,2025-03-10T06:41:49.553299-07:00,0.0,10.716403,10716.403 +26149,2025-03-10T06:42:00.281116-07:00,0.0,10.727817,10727.817 +26150,2025-03-10T06:42:11.012060-07:00,0.0,10.730944,10730.944 +26151,2025-03-10T06:42:21.730105-07:00,0.0,10.718045,10718.045 +26152,2025-03-10T06:42:32.457090-07:00,0.0,10.726985,10726.985 +26153,2025-03-10T06:42:43.177893-07:00,0.0,10.720803,10720.803 +26154,2025-03-10T06:42:53.908558-07:00,0.0,10.730665,10730.665 +26155,2025-03-10T06:43:04.622098-07:00,0.0,10.71354,10713.54 +26156,2025-03-10T06:43:15.349058-07:00,0.0,10.72696,10726.96 +26157,2025-03-10T06:43:26.070928-07:00,0.0,10.72187,10721.87 +26158,2025-03-10T06:43:36.794611-07:00,0.0,10.723683,10723.683 +26159,2025-03-10T06:43:47.526893-07:00,0.0,10.732282,10732.282 +26160,2025-03-10T06:43:58.246896-07:00,0.0,10.720003,10720.003 +26161,2025-03-10T06:44:08.969947-07:00,0.0,10.723051,10723.051 +26162,2025-03-10T06:44:19.701891-07:00,0.0,10.731944,10731.944 +26163,2025-03-10T06:44:30.426058-07:00,0.0,10.724167,10724.167 +26164,2025-03-10T06:44:41.142895-07:00,0.0,10.716837,10716.837 +26165,2025-03-10T06:44:51.868327-07:00,0.0,10.725432,10725.432 +26166,2025-03-10T06:45:02.596892-07:00,0.0,10.728565,10728.565 +26167,2025-03-10T06:45:13.324068-07:00,0.0,10.727176,10727.176 +26168,2025-03-10T06:45:24.038896-07:00,0.0,10.714828,10714.828 +26169,2025-03-10T06:45:34.766014-07:00,0.0,10.727118,10727.118 +26170,2025-03-10T06:45:45.486892-07:00,0.0,10.720878,10720.878 +26171,2025-03-10T06:45:56.212113-07:00,0.0,10.725221,10725.221 +26172,2025-03-10T06:46:06.928895-07:00,0.0,10.716782,10716.782 +26173,2025-03-10T06:46:17.658709-07:00,0.0,10.729814,10729.814 +26174,2025-03-10T06:46:28.378022-07:00,0.0,10.719313,10719.313 +26175,2025-03-10T06:46:39.099146-07:00,0.0,10.721124,10721.124 +26176,2025-03-10T06:46:49.830094-07:00,0.0,10.730948,10730.948 +26177,2025-03-10T06:47:00.552898-07:00,0.0,10.722804,10722.804 +26178,2025-03-10T06:47:11.278082-07:00,0.0,10.725184,10725.184 +26179,2025-03-10T06:47:21.996110-07:00,0.0,10.718028,10718.028 +26180,2025-03-10T06:47:32.728262-07:00,0.0,10.732152,10732.152 +26181,2025-03-10T06:47:43.446963-07:00,0.0,10.718701,10718.701 +26182,2025-03-10T06:47:54.177095-07:00,0.0,10.730132,10730.132 +26183,2025-03-10T06:48:04.904475-07:00,0.0,10.72738,10727.38 +26184,2025-03-10T06:48:15.625895-07:00,0.0,10.72142,10721.42 +26185,2025-03-10T06:48:26.355295-07:00,0.0,10.7294,10729.4 +26186,2025-03-10T06:48:37.070640-07:00,0.0,10.715345,10715.345 +26187,2025-03-10T06:48:47.797095-07:00,0.0,10.726455,10726.455 +26188,2025-03-10T06:48:58.511890-07:00,0.0,10.714795,10714.795 +26189,2025-03-10T06:49:09.239484-07:00,0.0,10.727594,10727.594 +26190,2025-03-10T06:49:19.961918-07:00,0.0,10.722434,10722.434 +26191,2025-03-10T06:49:30.682765-07:00,0.0,10.720847,10720.847 +26192,2025-03-10T06:49:41.406892-07:00,0.0,10.724127,10724.127 +26193,2025-03-10T06:49:52.129450-07:00,0.0,10.722558,10722.558 +26194,2025-03-10T06:50:02.844893-07:00,0.0,10.715443,10715.443 +26195,2025-03-10T06:50:13.564919-07:00,0.0,10.720026,10720.026 +26196,2025-03-10T06:50:24.291896-07:00,0.0,10.726977,10726.977 +26197,2025-03-10T06:50:35.014988-07:00,0.0,10.723092,10723.092 +26198,2025-03-10T06:50:45.735664-07:00,0.0,10.720676,10720.676 +26199,2025-03-10T06:50:56.455043-07:00,0.0,10.719379,10719.379 +26200,2025-03-10T06:51:07.176892-07:00,0.0,10.721849,10721.849 +26201,2025-03-10T06:51:17.891894-07:00,0.0,10.715002,10715.002 +26202,2025-03-10T06:51:28.614887-07:00,0.0,10.722993,10722.993 +26203,2025-03-10T06:51:39.338917-07:00,0.0,10.72403,10724.03 +26204,2025-03-10T06:51:50.064046-07:00,0.0,10.725129,10725.129 +26205,2025-03-10T06:52:00.783889-07:00,0.0,10.719843,10719.843 +26206,2025-03-10T06:52:11.506892-07:00,0.0,10.723003,10723.003 +26207,2025-03-10T06:52:22.229109-07:00,0.0,10.722217,10722.217 +26208,2025-03-10T06:52:32.954707-07:00,0.0,10.725598,10725.598 +26209,2025-03-10T06:52:43.668893-07:00,0.0,10.714186,10714.186 +26210,2025-03-10T06:52:54.398894-07:00,0.0,10.730001,10730.001 +26211,2025-03-10T06:53:05.143357-07:00,0.0,10.744463,10744.463 +26212,2025-03-10T06:53:15.869604-07:00,0.0,10.726247,10726.247 +26213,2025-03-10T06:53:26.588314-07:00,0.0,10.71871,10718.71 +26214,2025-03-10T06:53:37.312313-07:00,0.0,10.723999,10723.999 +26215,2025-03-10T06:53:48.032600-07:00,0.0,10.720287,10720.287 +26216,2025-03-10T06:53:58.764518-07:00,0.0,10.731918,10731.918 +26217,2025-03-10T06:54:09.493492-07:00,0.0,10.728974,10728.974 +26218,2025-03-10T06:54:20.214318-07:00,0.0,10.720826,10720.826 +26219,2025-03-10T06:54:30.938654-07:00,0.0,10.724336,10724.336 +26220,2025-03-10T06:54:41.663341-07:00,0.0,10.724687,10724.687 +26221,2025-03-10T06:54:52.392380-07:00,0.0,10.729039,10729.039 +26222,2025-03-10T06:55:03.118511-07:00,0.0,10.726131,10726.131 +26223,2025-03-10T06:55:13.844459-07:00,0.0,10.725948,10725.948 +26224,2025-03-10T06:55:24.570322-07:00,0.0,10.725863,10725.863 +26225,2025-03-10T06:55:35.299372-07:00,0.0,10.72905,10729.05 +26226,2025-03-10T06:55:46.029489-07:00,0.0,10.730117,10730.117 +26227,2025-03-10T06:55:56.751502-07:00,0.0,10.722013,10722.013 +26228,2025-03-10T06:56:07.483523-07:00,0.0,10.732021,10732.021 +26229,2025-03-10T06:56:18.211316-07:00,0.0,10.727793,10727.793 +26230,2025-03-10T06:56:28.930386-07:00,0.0,10.71907,10719.07 +26231,2025-03-10T06:56:39.657514-07:00,0.0,10.727128,10727.128 +26232,2025-03-10T06:56:50.389524-07:00,0.0,10.73201,10732.01 +26233,2025-03-10T06:57:01.117383-07:00,0.0,10.727859,10727.859 +26234,2025-03-10T06:57:11.843221-07:00,0.0,10.725838,10725.838 +26235,2025-03-10T06:57:22.571530-07:00,0.0,10.728309,10728.309 +26236,2025-03-10T06:57:33.298352-07:00,0.0,10.726822,10726.822 +26237,2025-03-10T06:57:44.023685-07:00,0.0,10.725333,10725.333 +26238,2025-03-10T06:57:54.740395-07:00,0.0,10.71671,10716.71 +26239,2025-03-10T06:58:05.461159-07:00,0.0,10.720764,10720.764 +26240,2025-03-10T06:58:16.190380-07:00,0.0,10.729221,10729.221 +26241,2025-03-10T06:58:26.913431-07:00,0.0,10.723051,10723.051 +26242,2025-03-10T06:58:37.639311-07:00,0.0,10.72588,10725.88 +26243,2025-03-10T06:58:48.356505-07:00,0.0,10.717194,10717.194 +26244,2025-03-10T06:58:59.077519-07:00,0.0,10.721014,10721.014 +26245,2025-03-10T06:59:09.803553-07:00,0.0,10.726034,10726.034 +26246,2025-03-10T06:59:20.519318-07:00,0.0,10.715765,10715.765 +26247,2025-03-10T06:59:31.250319-07:00,0.0,10.731001,10731.001 +26248,2025-03-10T06:59:41.966567-07:00,0.0,10.716248,10716.248 +26249,2025-03-10T06:59:52.691548-07:00,0.0,10.724981,10724.981 +26250,2025-03-10T07:00:03.419730-07:00,0.0,10.728182,10728.182 +26251,2025-03-10T07:00:14.136625-07:00,0.0,10.716895,10716.895 +26252,2025-03-10T07:00:24.865472-07:00,0.0,10.728847,10728.847 +26253,2025-03-10T07:00:35.588319-07:00,0.0,10.722847,10722.847 +26254,2025-03-10T07:00:46.307318-07:00,0.0,10.718999,10718.999 +26255,2025-03-10T07:00:57.030389-07:00,0.0,10.723071,10723.071 +26256,2025-03-10T07:01:07.752339-07:00,0.0,10.72195,10721.95 +26257,2025-03-10T07:01:18.480480-07:00,0.0,10.728141,10728.141 +26258,2025-03-10T07:01:29.202928-07:00,0.0,10.722448,10722.448 +26259,2025-03-10T07:01:39.922470-07:00,0.0,10.719542,10719.542 +26260,2025-03-10T07:01:50.646187-07:00,0.0,10.723717,10723.717 +26261,2025-03-10T07:02:01.373526-07:00,0.0,10.727339,10727.339 +26262,2025-03-10T07:02:12.098838-07:00,0.0,10.725312,10725.312 +26263,2025-03-10T07:02:22.820317-07:00,0.0,10.721479,10721.479 +26264,2025-03-10T07:02:33.546765-07:00,0.0,10.726448,10726.448 +26265,2025-03-10T07:02:44.266353-07:00,0.0,10.719588,10719.588 +26266,2025-03-10T07:02:54.989532-07:00,0.0,10.723179,10723.179 +26267,2025-03-10T07:03:05.713318-07:00,0.0,10.723786,10723.786 +26268,2025-03-10T07:03:16.432382-07:00,0.0,10.719064,10719.064 +26269,2025-03-10T07:03:27.155375-07:00,0.0,10.722993,10722.993 +26270,2025-03-10T07:03:37.878498-07:00,0.0,10.723123,10723.123 +26271,2025-03-10T07:03:48.600514-07:00,0.0,10.722016,10722.016 +26272,2025-03-10T07:03:59.328410-07:00,0.0,10.727896,10727.896 +26273,2025-03-10T07:04:10.048514-07:00,0.0,10.720104,10720.104 +26274,2025-03-10T07:04:20.771626-07:00,0.0,10.723112,10723.112 +26275,2025-03-10T07:04:31.499717-07:00,0.0,10.728091,10728.091 +26276,2025-03-10T07:04:42.223320-07:00,0.0,10.723603,10723.603 +26277,2025-03-10T07:04:52.942988-07:00,0.0,10.719668,10719.668 +26278,2025-03-10T07:05:03.671315-07:00,0.0,10.728327,10728.327 +26279,2025-03-10T07:05:14.395084-07:00,0.0,10.723769,10723.769 +26280,2025-03-10T07:05:25.112319-07:00,0.0,10.717235,10717.235 +26281,2025-03-10T07:05:35.834709-07:00,0.0,10.72239,10722.39 +26282,2025-03-10T07:05:46.560584-07:00,0.0,10.725875,10725.875 +26283,2025-03-10T07:05:57.278500-07:00,0.0,10.717916,10717.916 +26284,2025-03-10T07:06:07.996385-07:00,0.0,10.717885,10717.885 +26285,2025-03-10T07:06:18.725504-07:00,0.0,10.729119,10729.119 +26286,2025-03-10T07:06:29.450383-07:00,0.0,10.724879,10724.879 +26287,2025-03-10T07:06:40.179514-07:00,0.0,10.729131,10729.131 +26288,2025-03-10T07:06:50.901313-07:00,0.0,10.721799,10721.799 +26289,2025-03-10T07:07:12.345558-07:00,0.0,21.444245,21444.245 +26290,2025-03-10T07:07:23.065403-07:00,0.0,10.719845,10719.845 +26291,2025-03-10T07:07:33.794878-07:00,0.0,10.729475,10729.475 +26292,2025-03-10T07:07:44.510392-07:00,0.0,10.715514,10715.514 +26293,2025-03-10T07:07:55.226319-07:00,0.0,10.715927,10715.927 +26294,2025-03-10T07:08:05.948514-07:00,0.0,10.722195,10722.195 +26295,2025-03-10T07:08:16.669526-07:00,0.0,10.721012,10721.012 +26296,2025-03-10T07:08:27.391336-07:00,0.0,10.72181,10721.81 +26297,2025-03-10T07:08:38.113414-07:00,0.0,10.722078,10722.078 +26298,2025-03-10T07:08:48.830706-07:00,0.0,10.717292,10717.292 +26299,2025-03-10T07:08:59.551550-07:00,0.0,10.720844,10720.844 +26300,2025-03-10T07:09:10.282479-07:00,0.0,10.730929,10730.929 +26301,2025-03-10T07:09:20.996519-07:00,0.0,10.71404,10714.04 +26302,2025-03-10T07:09:31.718537-07:00,0.0,10.722018,10722.018 +26303,2025-03-10T07:09:42.441313-07:00,0.0,10.722776,10722.776 +26304,2025-03-10T07:09:53.159519-07:00,0.0,10.718206,10718.206 +26305,2025-03-10T07:10:03.885537-07:00,0.0,10.726018,10726.018 +26306,2025-03-10T07:10:14.608495-07:00,0.0,10.722958,10722.958 +26307,2025-03-10T07:10:25.326328-07:00,0.0,10.717833,10717.833 +26308,2025-03-10T07:10:36.047491-07:00,0.0,10.721163,10721.163 +26309,2025-03-10T07:10:46.779316-07:00,0.0,10.731825,10731.825 +26310,2025-03-10T07:10:57.500503-07:00,0.0,10.721187,10721.187 +26311,2025-03-10T07:11:08.220319-07:00,0.0,10.719816,10719.816 +26312,2025-03-10T07:11:18.941530-07:00,0.0,10.721211,10721.211 +26313,2025-03-10T07:11:29.664316-07:00,0.0,10.722786,10722.786 +26314,2025-03-10T07:11:40.388500-07:00,0.0,10.724184,10724.184 +26315,2025-03-10T07:11:51.121125-07:00,0.0,10.732625,10732.625 +26316,2025-03-10T07:12:01.838317-07:00,0.0,10.717192,10717.192 +26317,2025-03-10T07:12:12.556540-07:00,0.0,10.718223,10718.223 +26318,2025-03-10T07:12:23.281317-07:00,0.0,10.724777,10724.777 +26319,2025-03-10T07:12:34.003673-07:00,0.0,10.722356,10722.356 +26320,2025-03-10T07:12:44.728317-07:00,0.0,10.724644,10724.644 +26321,2025-03-10T07:12:55.451665-07:00,0.0,10.723348,10723.348 +26322,2025-03-10T07:13:06.182392-07:00,0.0,10.730727,10730.727 +26323,2025-03-10T07:13:16.900719-07:00,0.0,10.718327,10718.327 +26324,2025-03-10T07:13:27.625312-07:00,0.0,10.724593,10724.593 +26325,2025-03-10T07:13:38.344957-07:00,0.0,10.719645,10719.645 +26326,2025-03-10T07:13:49.066318-07:00,0.0,10.721361,10721.361 +26327,2025-03-10T07:13:59.793541-07:00,0.0,10.727223,10727.223 +26328,2025-03-10T07:14:10.514316-07:00,0.0,10.720775,10720.775 +26329,2025-03-10T07:14:21.235478-07:00,0.0,10.721162,10721.162 +26330,2025-03-10T07:14:31.966338-07:00,0.0,10.73086,10730.86 +26331,2025-03-10T07:14:42.690381-07:00,0.0,10.724043,10724.043 +26332,2025-03-10T07:14:53.413342-07:00,0.0,10.722961,10722.961 +26333,2025-03-10T07:15:04.141572-07:00,0.0,10.72823,10728.23 +26334,2025-03-10T07:15:14.860028-07:00,0.0,10.718456,10718.456 +26335,2025-03-10T07:15:25.584321-07:00,0.0,10.724293,10724.293 +26336,2025-03-10T07:15:36.300317-07:00,0.0,10.715996,10715.996 +26337,2025-03-10T07:15:47.032318-07:00,0.0,10.732001,10732.001 +26338,2025-03-10T07:15:57.755409-07:00,0.0,10.723091,10723.091 +26339,2025-03-10T07:16:08.478320-07:00,0.0,10.722911,10722.911 +26340,2025-03-10T07:16:19.200201-07:00,0.0,10.721881,10721.881 +26341,2025-03-10T07:16:29.920475-07:00,0.0,10.720274,10720.274 +26342,2025-03-10T07:16:40.646347-07:00,0.0,10.725872,10725.872 +26343,2025-03-10T07:16:51.375842-07:00,0.0,10.729495,10729.495 +26344,2025-03-10T07:17:02.103380-07:00,0.0,10.727538,10727.538 +26345,2025-03-10T07:17:12.819316-07:00,0.0,10.715936,10715.936 +26346,2025-03-10T07:17:23.537321-07:00,0.0,10.718005,10718.005 +26347,2025-03-10T07:17:34.266549-07:00,0.0,10.729228,10729.228 +26348,2025-03-10T07:17:44.985710-07:00,0.0,10.719161,10719.161 +26349,2025-03-10T07:17:55.702313-07:00,0.0,10.716603,10716.603 +26350,2025-03-10T07:18:06.431318-07:00,0.0,10.729005,10729.005 +26351,2025-03-10T07:18:17.156209-07:00,0.0,10.724891,10724.891 +26352,2025-03-10T07:18:27.870510-07:00,0.0,10.714301,10714.301 +26353,2025-03-10T07:18:38.588316-07:00,0.0,10.717806,10717.806 +26354,2025-03-10T07:18:49.312353-07:00,0.0,10.724037,10724.037 +26355,2025-03-10T07:19:00.034429-07:00,0.0,10.722076,10722.076 +26356,2025-03-10T07:19:10.752838-07:00,0.0,10.718409,10718.409 +26357,2025-03-10T07:19:21.475316-07:00,0.0,10.722478,10722.478 +26358,2025-03-10T07:19:32.199315-07:00,0.0,10.723999,10723.999 +26359,2025-03-10T07:19:42.912319-07:00,0.0,10.713004,10713.004 +26360,2025-03-10T07:19:53.639536-07:00,0.0,10.727217,10727.217 +26361,2025-03-10T07:20:04.357316-07:00,0.0,10.71778,10717.78 +26362,2025-03-10T07:20:15.081475-07:00,0.0,10.724159,10724.159 +26363,2025-03-10T07:20:25.806569-07:00,0.0,10.725094,10725.094 +26364,2025-03-10T07:20:36.528543-07:00,0.0,10.721974,10721.974 +26365,2025-03-10T07:20:47.248462-07:00,0.0,10.719919,10719.919 +26366,2025-03-10T07:20:57.973319-07:00,0.0,10.724857,10724.857 +26367,2025-03-10T07:21:08.692523-07:00,0.0,10.719204,10719.204 +26368,2025-03-10T07:21:19.423393-07:00,0.0,10.73087,10730.87 +26369,2025-03-10T07:21:30.138342-07:00,0.0,10.714949,10714.949 +26370,2025-03-10T07:21:40.858319-07:00,0.0,10.719977,10719.977 +26371,2025-03-10T07:21:51.587635-07:00,0.0,10.729316,10729.316 +26372,2025-03-10T07:22:02.312351-07:00,0.0,10.724716,10724.716 +26373,2025-03-10T07:22:13.029324-07:00,0.0,10.716973,10716.973 +26374,2025-03-10T07:22:23.747319-07:00,0.0,10.717995,10717.995 +26375,2025-03-10T07:22:34.478424-07:00,0.0,10.731105,10731.105 +26376,2025-03-10T07:22:45.192519-07:00,0.0,10.714095,10714.095 +26377,2025-03-10T07:22:55.916316-07:00,0.0,10.723797,10723.797 +26378,2025-03-10T07:23:06.642317-07:00,0.0,10.726001,10726.001 +26379,2025-03-10T07:23:17.361564-07:00,0.0,10.719247,10719.247 +26380,2025-03-10T07:23:28.081492-07:00,0.0,10.719928,10719.928 +26381,2025-03-10T07:23:38.803553-07:00,0.0,10.722061,10722.061 +26382,2025-03-10T07:23:49.534454-07:00,0.0,10.730901,10730.901 +26383,2025-03-10T07:24:00.254477-07:00,0.0,10.720023,10720.023 +26384,2025-03-10T07:24:10.971404-07:00,0.0,10.716927,10716.927 +26385,2025-03-10T07:24:21.695316-07:00,0.0,10.723912,10723.912 +26386,2025-03-10T07:24:32.416319-07:00,0.0,10.721003,10721.003 +26387,2025-03-10T07:24:43.148725-07:00,0.0,10.732406,10732.406 +26388,2025-03-10T07:24:53.861506-07:00,0.0,10.712781,10712.781 +26389,2025-03-10T07:25:04.593429-07:00,0.0,10.731923,10731.923 +26390,2025-03-10T07:25:15.308346-07:00,0.0,10.714917,10714.917 +26391,2025-03-10T07:25:26.033518-07:00,0.0,10.725172,10725.172 +26392,2025-03-10T07:25:36.756384-07:00,0.0,10.722866,10722.866 +26393,2025-03-10T07:25:47.479500-07:00,0.0,10.723116,10723.116 +26394,2025-03-10T07:25:58.197393-07:00,0.0,10.717893,10717.893 +26395,2025-03-10T07:26:08.928579-07:00,0.0,10.731186,10731.186 +26396,2025-03-10T07:26:19.647317-07:00,0.0,10.718738,10718.738 +26397,2025-03-10T07:26:30.365540-07:00,0.0,10.718223,10718.223 +26398,2025-03-10T07:26:41.095320-07:00,0.0,10.72978,10729.78 +26399,2025-03-10T07:26:51.816531-07:00,0.0,10.721211,10721.211 +26400,2025-03-10T07:27:02.539318-07:00,0.0,10.722787,10722.787 +26401,2025-03-10T07:27:13.252479-07:00,0.0,10.713161,10713.161 +26402,2025-03-10T07:27:23.981318-07:00,0.0,10.728839,10728.839 +26403,2025-03-10T07:27:34.693497-07:00,0.0,10.712179,10712.179 +26404,2025-03-10T07:27:45.419316-07:00,0.0,10.725819,10725.819 +26405,2025-03-10T07:27:56.140496-07:00,0.0,10.72118,10721.18 +26406,2025-03-10T07:28:06.868318-07:00,0.0,10.727822,10727.822 +26407,2025-03-10T07:28:17.594516-07:00,0.0,10.726198,10726.198 +26408,2025-03-10T07:28:28.311562-07:00,0.0,10.717046,10717.046 +26409,2025-03-10T07:28:39.030523-07:00,0.0,10.718961,10718.961 +26410,2025-03-10T07:28:49.755316-07:00,0.0,10.724793,10724.793 +26411,2025-03-10T07:29:00.483077-07:00,0.0,10.727761,10727.761 +26412,2025-03-10T07:29:11.204526-07:00,0.0,10.721449,10721.449 +26413,2025-03-10T07:29:21.932499-07:00,0.0,10.727973,10727.973 +26414,2025-03-10T07:29:32.651316-07:00,0.0,10.718817,10718.817 +26415,2025-03-10T07:29:43.373318-07:00,0.0,10.722002,10722.002 +26416,2025-03-10T07:29:54.102010-07:00,0.0,10.728692,10728.692 +26417,2025-03-10T07:30:04.814760-07:00,0.0,10.71275,10712.75 +26418,2025-03-10T07:30:15.543101-07:00,0.0,10.728341,10728.341 +26419,2025-03-10T07:30:26.267525-07:00,0.0,10.724424,10724.424 +26420,2025-03-10T07:30:36.985345-07:00,0.0,10.71782,10717.82 +26421,2025-03-10T07:30:47.710317-07:00,0.0,10.724972,10724.972 +26422,2025-03-10T07:30:58.439499-07:00,0.0,10.729182,10729.182 +26423,2025-03-10T07:31:09.156319-07:00,0.0,10.71682,10716.82 +26424,2025-03-10T07:31:19.875645-07:00,0.0,10.719326,10719.326 +26425,2025-03-10T07:31:30.595317-07:00,0.0,10.719672,10719.672 +26426,2025-03-10T07:31:41.323522-07:00,0.0,10.728205,10728.205 +26427,2025-03-10T07:31:52.049620-07:00,0.0,10.726098,10726.098 +26428,2025-03-10T07:32:02.764516-07:00,0.0,10.714896,10714.896 +26429,2025-03-10T07:32:13.497316-07:00,0.0,10.7328,10732.8 +26430,2025-03-10T07:32:24.210486-07:00,0.0,10.71317,10713.17 +26431,2025-03-10T07:32:34.932823-07:00,0.0,10.722337,10722.337 +26432,2025-03-10T07:32:45.655492-07:00,0.0,10.722669,10722.669 +26433,2025-03-10T07:32:56.375397-07:00,0.0,10.719905,10719.905 +26434,2025-03-10T07:33:07.102508-07:00,0.0,10.727111,10727.111 +26435,2025-03-10T07:33:17.813908-07:00,0.0,10.7114,10711.4 +26436,2025-03-10T07:33:28.542489-07:00,0.0,10.728581,10728.581 +26437,2025-03-10T07:33:39.257360-07:00,0.0,10.714871,10714.871 +26438,2025-03-10T07:33:49.973317-07:00,0.0,10.715957,10715.957 +26439,2025-03-10T07:34:00.695320-07:00,0.0,10.722003,10722.003 +26440,2025-03-10T07:34:11.408404-07:00,0.0,10.713084,10713.084 +26441,2025-03-10T07:34:22.133319-07:00,0.0,10.724915,10724.915 +26442,2025-03-10T07:34:32.849315-07:00,0.0,10.715996,10715.996 +26443,2025-03-10T07:34:43.579315-07:00,0.0,10.73,10730.0 +26444,2025-03-10T07:34:54.292354-07:00,0.0,10.713039,10713.039 +26445,2025-03-10T07:35:05.010494-07:00,0.0,10.71814,10718.14 +26446,2025-03-10T07:35:15.731454-07:00,0.0,10.72096,10720.96 +26447,2025-03-10T07:35:26.454507-07:00,0.0,10.723053,10723.053 +26448,2025-03-10T07:35:37.180588-07:00,0.0,10.726081,10726.081 +26449,2025-03-10T07:35:47.899656-07:00,0.0,10.719068,10719.068 +26450,2025-03-10T07:35:58.624315-07:00,0.0,10.724659,10724.659 +26451,2025-03-10T07:36:09.346559-07:00,0.0,10.722244,10722.244 +26452,2025-03-10T07:36:20.068319-07:00,0.0,10.72176,10721.76 +26453,2025-03-10T07:36:30.785698-07:00,0.0,10.717379,10717.379 +26454,2025-03-10T07:36:41.506801-07:00,0.0,10.721103,10721.103 +26455,2025-03-10T07:36:52.232467-07:00,0.0,10.725666,10725.666 +26456,2025-03-10T07:37:02.946315-07:00,0.0,10.713848,10713.848 +26457,2025-03-10T07:37:13.672722-07:00,0.0,10.726407,10726.407 +26458,2025-03-10T07:37:24.394346-07:00,0.0,10.721624,10721.624 +26459,2025-03-10T07:37:35.116524-07:00,0.0,10.722178,10722.178 +26460,2025-03-10T07:37:45.842318-07:00,0.0,10.725794,10725.794 +26461,2025-03-10T07:37:56.563515-07:00,0.0,10.721197,10721.197 +26462,2025-03-10T07:38:07.283319-07:00,0.0,10.719804,10719.804 +26463,2025-03-10T07:38:18.006560-07:00,0.0,10.723241,10723.241 +26464,2025-03-10T07:38:28.729599-07:00,0.0,10.723039,10723.039 +26465,2025-03-10T07:38:39.459659-07:00,0.0,10.73006,10730.06 +26466,2025-03-10T07:38:50.185313-07:00,0.0,10.725654,10725.654 +26467,2025-03-10T07:39:00.907641-07:00,0.0,10.722328,10722.328 +26468,2025-03-10T07:39:11.629414-07:00,0.0,10.721773,10721.773 +26469,2025-03-10T07:39:22.348531-07:00,0.0,10.719117,10719.117 +26470,2025-03-10T07:39:33.082728-07:00,0.0,10.734197,10734.197 +26471,2025-03-10T07:39:43.794531-07:00,0.0,10.711803,10711.803 +26472,2025-03-10T07:39:54.523149-07:00,0.0,10.728618,10728.618 +26473,2025-03-10T07:40:05.247390-07:00,0.0,10.724241,10724.241 +26474,2025-03-10T07:40:15.961319-07:00,0.0,10.713929,10713.929 +26475,2025-03-10T07:40:26.685318-07:00,0.0,10.723999,10723.999 +26476,2025-03-10T07:40:37.415501-07:00,0.0,10.730183,10730.183 +26477,2025-03-10T07:40:48.134385-07:00,0.0,10.718884,10718.884 +26478,2025-03-10T07:40:58.859699-07:00,0.0,10.725314,10725.314 +26479,2025-03-10T07:41:09.590316-07:00,0.0,10.730617,10730.617 +26480,2025-03-10T07:41:20.314541-07:00,0.0,10.724225,10724.225 +26481,2025-03-10T07:41:31.035529-07:00,0.0,10.720988,10720.988 +26482,2025-03-10T07:41:41.764317-07:00,0.0,10.728788,10728.788 +26483,2025-03-10T07:41:52.483317-07:00,0.0,10.719,10719.0 +26484,2025-03-10T07:42:03.207343-07:00,0.0,10.724026,10724.026 +26485,2025-03-10T07:42:13.937486-07:00,0.0,10.730143,10730.143 +26486,2025-03-10T07:42:24.663321-07:00,0.0,10.725835,10725.835 +26487,2025-03-10T07:42:35.384507-07:00,0.0,10.721186,10721.186 +26488,2025-03-10T07:42:46.109558-07:00,0.0,10.725051,10725.051 +26489,2025-03-10T07:42:56.825494-07:00,0.0,10.715936,10715.936 +26490,2025-03-10T07:43:07.553381-07:00,0.0,10.727887,10727.887 +26491,2025-03-10T07:43:18.276104-07:00,0.0,10.722723,10722.723 +26492,2025-03-10T07:43:29.000267-07:00,0.0,10.724163,10724.163 +26493,2025-03-10T07:43:39.724318-07:00,0.0,10.724051,10724.051 +26494,2025-03-10T07:43:50.449340-07:00,0.0,10.725022,10725.022 +26495,2025-03-10T07:44:01.172719-07:00,0.0,10.723379,10723.379 +26496,2025-03-10T07:44:11.899963-07:00,0.0,10.727244,10727.244 +26497,2025-03-10T07:44:22.626504-07:00,0.0,10.726541,10726.541 +26498,2025-03-10T07:44:33.358618-07:00,0.0,10.732114,10732.114 +26499,2025-03-10T07:44:44.084340-07:00,0.0,10.725722,10725.722 +26500,2025-03-10T07:44:54.804516-07:00,0.0,10.720176,10720.176 +26501,2025-03-10T07:45:05.534923-07:00,0.0,10.730407,10730.407 +26502,2025-03-10T07:45:16.256368-07:00,0.0,10.721445,10721.445 +26503,2025-03-10T07:45:26.987473-07:00,0.0,10.731105,10731.105 +26504,2025-03-10T07:45:37.708525-07:00,0.0,10.721052,10721.052 +26505,2025-03-10T07:45:48.435315-07:00,0.0,10.72679,10726.79 +26506,2025-03-10T07:45:59.158476-07:00,0.0,10.723161,10723.161 +26507,2025-03-10T07:46:09.887316-07:00,0.0,10.72884,10728.84 +26508,2025-03-10T07:46:20.606080-07:00,0.0,10.718764,10718.764 +26509,2025-03-10T07:46:31.334438-07:00,0.0,10.728358,10728.358 +26510,2025-03-10T07:46:42.058904-07:00,0.0,10.724466,10724.466 +26511,2025-03-10T07:46:52.785456-07:00,0.0,10.726552,10726.552 +26512,2025-03-10T07:47:03.506482-07:00,0.0,10.721026,10721.026 +26513,2025-03-10T07:47:14.234316-07:00,0.0,10.727834,10727.834 +26514,2025-03-10T07:47:24.955583-07:00,0.0,10.721267,10721.267 +26515,2025-03-10T07:47:35.678315-07:00,0.0,10.722732,10722.732 +26516,2025-03-10T07:47:46.400558-07:00,0.0,10.722243,10722.243 +26517,2025-03-10T07:47:57.127562-07:00,0.0,10.727004,10727.004 +26518,2025-03-10T07:48:07.852505-07:00,0.0,10.724943,10724.943 +26519,2025-03-10T07:48:18.574523-07:00,0.0,10.722018,10722.018 +26520,2025-03-10T07:48:29.290320-07:00,0.0,10.715797,10715.797 +26521,2025-03-10T07:48:40.013317-07:00,0.0,10.722997,10722.997 +26522,2025-03-10T07:48:50.736989-07:00,0.0,10.723672,10723.672 +26523,2025-03-10T07:49:01.468500-07:00,0.0,10.731511,10731.511 +26524,2025-03-10T07:49:12.184317-07:00,0.0,10.715817,10715.817 +26525,2025-03-10T07:49:22.910511-07:00,0.0,10.726194,10726.194 +26526,2025-03-10T07:49:33.630526-07:00,0.0,10.720015,10720.015 +26527,2025-03-10T07:49:44.356509-07:00,0.0,10.725983,10725.983 +26528,2025-03-10T07:49:55.086405-07:00,0.0,10.729896,10729.896 +26529,2025-03-10T07:50:05.813521-07:00,0.0,10.727116,10727.116 +26530,2025-03-10T07:50:16.536463-07:00,0.0,10.722942,10722.942 +26531,2025-03-10T07:50:27.257543-07:00,0.0,10.72108,10721.08 +26532,2025-03-10T07:50:37.985408-07:00,0.0,10.727865,10727.865 +26533,2025-03-10T07:50:48.705316-07:00,0.0,10.719908,10719.908 +26534,2025-03-10T07:50:59.427344-07:00,0.0,10.722028,10722.028 +26535,2025-03-10T07:51:10.154754-07:00,0.0,10.72741,10727.41 +26536,2025-03-10T07:51:20.875161-07:00,0.0,10.720407,10720.407 +26537,2025-03-10T07:51:31.603393-07:00,0.0,10.728232,10728.232 +26538,2025-03-10T07:51:42.323492-07:00,0.0,10.720099,10720.099 +26539,2025-03-10T07:51:53.050318-07:00,0.0,10.726826,10726.826 +26540,2025-03-10T07:52:03.773936-07:00,0.0,10.723618,10723.618 +26541,2025-03-10T07:52:14.492414-07:00,0.0,10.718478,10718.478 +26542,2025-03-10T07:52:25.221311-07:00,0.0,10.728897,10728.897 +26543,2025-03-10T07:52:35.944319-07:00,0.0,10.723008,10723.008 +26544,2025-03-10T07:52:46.665503-07:00,0.0,10.721184,10721.184 +26545,2025-03-10T07:52:57.388349-07:00,0.0,10.722846,10722.846 +26546,2025-03-10T07:53:08.119767-07:00,0.0,10.731418,10731.418 +26547,2025-03-10T07:53:18.845500-07:00,0.0,10.725733,10725.733 +26548,2025-03-10T07:53:29.573495-07:00,0.0,10.727995,10727.995 +26549,2025-03-10T07:53:40.291935-07:00,0.0,10.71844,10718.44 +26550,2025-03-10T07:53:51.015838-07:00,0.0,10.723903,10723.903 +26551,2025-03-10T07:54:01.742964-07:00,0.0,10.727126,10727.126 +26552,2025-03-10T07:54:12.464773-07:00,0.0,10.721809,10721.809 +26553,2025-03-10T07:54:23.188965-07:00,0.0,10.724192,10724.192 +26554,2025-03-10T07:54:33.916769-07:00,0.0,10.727804,10727.804 +26555,2025-03-10T07:54:44.641772-07:00,0.0,10.725003,10725.003 +26556,2025-03-10T07:54:55.374973-07:00,0.0,10.733201,10733.201 +26557,2025-03-10T07:55:06.095866-07:00,0.0,10.720893,10720.893 +26558,2025-03-10T07:55:16.822079-07:00,0.0,10.726213,10726.213 +26559,2025-03-10T07:55:27.546771-07:00,0.0,10.724692,10724.692 +26560,2025-03-10T07:55:38.271837-07:00,0.0,10.725066,10725.066 +26561,2025-03-10T07:55:49.004793-07:00,0.0,10.732956,10732.956 +26562,2025-03-10T07:55:59.727847-07:00,0.0,10.723054,10723.054 +26563,2025-03-10T07:56:10.449091-07:00,0.0,10.721244,10721.244 +26564,2025-03-10T07:56:21.176874-07:00,0.0,10.727783,10727.783 +26565,2025-03-10T07:56:31.903979-07:00,0.0,10.727105,10727.105 +26566,2025-03-10T07:56:42.626160-07:00,0.0,10.722181,10722.181 +26567,2025-03-10T07:56:53.352074-07:00,0.0,10.725914,10725.914 +26568,2025-03-10T07:57:04.075809-07:00,0.0,10.723735,10723.735 +26569,2025-03-10T07:57:14.796010-07:00,0.0,10.720201,10720.201 +26570,2025-03-10T07:57:25.524960-07:00,0.0,10.72895,10728.95 +26571,2025-03-10T07:57:36.244272-07:00,0.0,10.719312,10719.312 +26572,2025-03-10T07:57:46.966772-07:00,0.0,10.7225,10722.5 +26573,2025-03-10T07:57:57.686001-07:00,0.0,10.719229,10719.229 +26574,2025-03-10T07:58:08.412805-07:00,0.0,10.726804,10726.804 +26575,2025-03-10T07:58:19.142768-07:00,0.0,10.729963,10729.963 +26576,2025-03-10T07:58:29.863183-07:00,0.0,10.720415,10720.415 +26577,2025-03-10T07:58:40.587089-07:00,0.0,10.723906,10723.906 +26578,2025-03-10T07:58:51.310937-07:00,0.0,10.723848,10723.848 +26579,2025-03-10T07:59:02.038773-07:00,0.0,10.727836,10727.836 +26580,2025-03-10T07:59:12.755228-07:00,0.0,10.716455,10716.455 +26581,2025-03-10T07:59:23.481779-07:00,0.0,10.726551,10726.551 +26582,2025-03-10T07:59:34.209766-07:00,0.0,10.727987,10727.987 +26583,2025-03-10T07:59:44.934244-07:00,0.0,10.724478,10724.478 +26584,2025-03-10T07:59:55.652991-07:00,0.0,10.718747,10718.747 +26585,2025-03-10T08:00:06.379767-07:00,0.0,10.726776,10726.776 +26586,2025-03-10T08:00:17.095842-07:00,0.0,10.716075,10716.075 +26587,2025-03-10T08:00:27.817771-07:00,0.0,10.721929,10721.929 +26588,2025-03-10T08:00:38.547841-07:00,0.0,10.73007,10730.07 +26589,2025-03-10T08:00:49.269509-07:00,0.0,10.721668,10721.668 +26590,2025-03-10T08:00:59.989794-07:00,0.0,10.720285,10720.285 +26591,2025-03-10T08:01:10.718164-07:00,0.0,10.72837,10728.37 +26592,2025-03-10T08:01:21.438769-07:00,0.0,10.720605,10720.605 +26593,2025-03-10T08:01:32.163031-07:00,0.0,10.724262,10724.262 +26594,2025-03-10T08:01:42.891798-07:00,0.0,10.728767,10728.767 +26595,2025-03-10T08:01:53.613991-07:00,0.0,10.722193,10722.193 +26596,2025-03-10T08:02:04.345792-07:00,0.0,10.731801,10731.801 +26597,2025-03-10T08:02:15.063954-07:00,0.0,10.718162,10718.162 +26598,2025-03-10T08:02:25.783962-07:00,0.0,10.720008,10720.008 +26599,2025-03-10T08:02:36.517768-07:00,0.0,10.733806,10733.806 +26600,2025-03-10T08:02:47.236634-07:00,0.0,10.718866,10718.866 +26601,2025-03-10T08:02:57.957805-07:00,0.0,10.721171,10721.171 +26602,2025-03-10T08:03:08.683473-07:00,0.0,10.725668,10725.668 +26603,2025-03-10T08:03:19.406233-07:00,0.0,10.72276,10722.76 +26604,2025-03-10T08:03:30.130959-07:00,0.0,10.724726,10724.726 +26605,2025-03-10T08:03:40.856976-07:00,0.0,10.726017,10726.017 +26606,2025-03-10T08:03:51.587060-07:00,0.0,10.730084,10730.084 +26607,2025-03-10T08:04:02.305876-07:00,0.0,10.718816,10718.816 +26608,2025-03-10T08:04:13.040771-07:00,0.0,10.734895,10734.895 +26609,2025-03-10T08:04:23.762956-07:00,0.0,10.722185,10722.185 +26610,2025-03-10T08:04:34.481956-07:00,0.0,10.719,10719.0 +26611,2025-03-10T08:04:45.210963-07:00,0.0,10.729007,10729.007 +26612,2025-03-10T08:04:55.939285-07:00,0.0,10.728322,10728.322 +26613,2025-03-10T08:05:06.662135-07:00,0.0,10.72285,10722.85 +26614,2025-03-10T08:05:17.382800-07:00,0.0,10.720665,10720.665 +26615,2025-03-10T08:05:28.100962-07:00,0.0,10.718162,10718.162 +26616,2025-03-10T08:05:38.833244-07:00,0.0,10.732282,10732.282 +26617,2025-03-10T08:05:49.559771-07:00,0.0,10.726527,10726.527 +26618,2025-03-10T08:06:00.283975-07:00,0.0,10.724204,10724.204 +26619,2025-03-10T08:06:11.012767-07:00,0.0,10.728792,10728.792 +26620,2025-03-10T08:06:21.739768-07:00,0.0,10.727001,10727.001 +26621,2025-03-10T08:06:32.461767-07:00,0.0,10.721999,10721.999 +26622,2025-03-10T08:06:43.186982-07:00,0.0,10.725215,10725.215 +26623,2025-03-10T08:06:53.910792-07:00,0.0,10.72381,10723.81 +26624,2025-03-10T08:07:04.643772-07:00,0.0,10.73298,10732.98 +26625,2025-03-10T08:07:15.366151-07:00,0.0,10.722379,10722.379 +26626,2025-03-10T08:07:26.092768-07:00,0.0,10.726617,10726.617 +26627,2025-03-10T08:07:36.815771-07:00,0.0,10.723003,10723.003 +26628,2025-03-10T08:07:47.543793-07:00,0.0,10.728022,10728.022 +26629,2025-03-10T08:07:58.266996-07:00,0.0,10.723203,10723.203 +26630,2025-03-10T08:08:08.980812-07:00,0.0,10.713816,10713.816 +26631,2025-03-10T08:08:19.709772-07:00,0.0,10.72896,10728.96 +26632,2025-03-10T08:08:30.434793-07:00,0.0,10.725021,10725.021 +26633,2025-03-10T08:08:41.153197-07:00,0.0,10.718404,10718.404 +26634,2025-03-10T08:08:51.882053-07:00,0.0,10.728856,10728.856 +26635,2025-03-10T08:09:02.611778-07:00,0.0,10.729725,10729.725 +26636,2025-03-10T08:09:13.334976-07:00,0.0,10.723198,10723.198 +26637,2025-03-10T08:09:24.057766-07:00,0.0,10.72279,10722.79 +26638,2025-03-10T08:09:34.772986-07:00,0.0,10.71522,10715.22 +26639,2025-03-10T08:09:45.502971-07:00,0.0,10.729985,10729.985 +26640,2025-03-10T08:09:56.226772-07:00,0.0,10.723801,10723.801 +26641,2025-03-10T08:10:06.943982-07:00,0.0,10.71721,10717.21 +26642,2025-03-10T08:10:17.668575-07:00,0.0,10.724593,10724.593 +26643,2025-03-10T08:10:28.392917-07:00,0.0,10.724342,10724.342 +26644,2025-03-10T08:10:39.115771-07:00,0.0,10.722854,10722.854 +26645,2025-03-10T08:10:49.828973-07:00,0.0,10.713202,10713.202 +26646,2025-03-10T08:11:00.550954-07:00,0.0,10.721981,10721.981 +26647,2025-03-10T08:11:11.277833-07:00,0.0,10.726879,10726.879 +26648,2025-03-10T08:11:21.994126-07:00,0.0,10.716293,10716.293 +26649,2025-03-10T08:11:32.715935-07:00,0.0,10.721809,10721.809 +26650,2025-03-10T08:11:43.443306-07:00,0.0,10.727371,10727.371 +26651,2025-03-10T08:11:54.159768-07:00,0.0,10.716462,10716.462 +26652,2025-03-10T08:12:04.886770-07:00,0.0,10.727002,10727.002 +26653,2025-03-10T08:12:15.603769-07:00,0.0,10.716999,10716.999 +26654,2025-03-10T08:12:26.319674-07:00,0.0,10.715905,10715.905 +26655,2025-03-10T08:12:37.046768-07:00,0.0,10.727094,10727.094 +26656,2025-03-10T08:12:47.762963-07:00,0.0,10.716195,10716.195 +26657,2025-03-10T08:12:58.491844-07:00,0.0,10.728881,10728.881 +26658,2025-03-10T08:13:09.207265-07:00,0.0,10.715421,10715.421 +26659,2025-03-10T08:13:19.935768-07:00,0.0,10.728503,10728.503 +26660,2025-03-10T08:13:30.656959-07:00,0.0,10.721191,10721.191 +26661,2025-03-10T08:13:41.378041-07:00,0.0,10.721082,10721.082 +26662,2025-03-10T08:13:52.095430-07:00,0.0,10.717389,10717.389 +26663,2025-03-10T08:14:02.815765-07:00,0.0,10.720335,10720.335 +26664,2025-03-10T08:14:13.537655-07:00,0.0,10.72189,10721.89 +26665,2025-03-10T08:14:24.262011-07:00,0.0,10.724356,10724.356 +26666,2025-03-10T08:14:34.980658-07:00,0.0,10.718647,10718.647 +26667,2025-03-10T08:14:45.703926-07:00,0.0,10.723268,10723.268 +26668,2025-03-10T08:14:56.420949-07:00,0.0,10.717023,10717.023 +26669,2025-03-10T08:15:07.135951-07:00,0.0,10.715002,10715.002 +26670,2025-03-10T08:15:17.852767-07:00,0.0,10.716816,10716.816 +26671,2025-03-10T08:15:28.570965-07:00,0.0,10.718198,10718.198 +26672,2025-03-10T08:15:39.292116-07:00,0.0,10.721151,10721.151 +26673,2025-03-10T08:15:50.012885-07:00,0.0,10.720769,10720.769 +26674,2025-03-10T08:16:00.731770-07:00,0.0,10.718885,10718.885 +26675,2025-03-10T08:16:11.457976-07:00,0.0,10.726206,10726.206 +26676,2025-03-10T08:16:22.175132-07:00,0.0,10.717156,10717.156 +26677,2025-03-10T08:16:32.894035-07:00,0.0,10.718903,10718.903 +26678,2025-03-10T08:16:43.606770-07:00,0.0,10.712735,10712.735 +26679,2025-03-10T08:16:54.326771-07:00,0.0,10.720001,10720.001 +26680,2025-03-10T08:17:05.041065-07:00,0.0,10.714294,10714.294 +26681,2025-03-10T08:17:15.759847-07:00,0.0,10.718782,10718.782 +26682,2025-03-10T08:17:26.475222-07:00,0.0,10.715375,10715.375 +26683,2025-03-10T08:17:37.198838-07:00,0.0,10.723616,10723.616 +26684,2025-03-10T08:17:47.913767-07:00,0.0,10.714929,10714.929 +26685,2025-03-10T08:17:58.628876-07:00,0.0,10.715109,10715.109 +26686,2025-03-10T08:18:09.347771-07:00,0.0,10.718895,10718.895 +26687,2025-03-10T08:18:20.061196-07:00,0.0,10.713425,10713.425 +26688,2025-03-10T08:18:30.778981-07:00,0.0,10.717785,10717.785 +26689,2025-03-10T08:18:41.503000-07:00,0.0,10.724019,10724.019 +26690,2025-03-10T08:18:52.217967-07:00,0.0,10.714967,10714.967 +26691,2025-03-10T08:19:02.935875-07:00,0.0,10.717908,10717.908 +26692,2025-03-10T08:19:13.653570-07:00,0.0,10.717695,10717.695 +26693,2025-03-10T08:19:24.369981-07:00,0.0,10.716411,10716.411 +26694,2025-03-10T08:19:35.093970-07:00,0.0,10.723989,10723.989 +26695,2025-03-10T08:19:45.811997-07:00,0.0,10.718027,10718.027 +26696,2025-03-10T08:19:56.529952-07:00,0.0,10.717955,10717.955 +26697,2025-03-10T08:20:07.248316-07:00,0.0,10.718364,10718.364 +26698,2025-03-10T08:20:17.959006-07:00,0.0,10.71069,10710.69 +26699,2025-03-10T08:20:28.678938-07:00,0.0,10.719932,10719.932 +26700,2025-03-10T08:20:39.395829-07:00,0.0,10.716891,10716.891 +26701,2025-03-10T08:20:50.115096-07:00,0.0,10.719267,10719.267 +26702,2025-03-10T08:21:00.840005-07:00,0.0,10.724909,10724.909 +26703,2025-03-10T08:21:11.554996-07:00,0.0,10.714991,10714.991 +26704,2025-03-10T08:21:22.271982-07:00,0.0,10.716986,10716.986 +26705,2025-03-10T08:21:32.989770-07:00,0.0,10.717788,10717.788 +26706,2025-03-10T08:21:43.706345-07:00,0.0,10.716575,10716.575 +26707,2025-03-10T08:21:54.431834-07:00,0.0,10.725489,10725.489 +26708,2025-03-10T08:22:05.142554-07:00,0.0,10.71072,10710.72 +26709,2025-03-10T08:22:15.872771-07:00,0.0,10.730217,10730.217 +26710,2025-03-10T08:22:26.587142-07:00,0.0,10.714371,10714.371 +26711,2025-03-10T08:22:37.307765-07:00,0.0,10.720623,10720.623 +26712,2025-03-10T08:22:48.034241-07:00,0.0,10.726476,10726.476 +26713,2025-03-10T08:22:58.754875-07:00,0.0,10.720634,10720.634 +26714,2025-03-10T08:23:09.479146-07:00,0.0,10.724271,10724.271 +26715,2025-03-10T08:23:20.201952-07:00,0.0,10.722806,10722.806 +26716,2025-03-10T08:23:30.927786-07:00,0.0,10.725834,10725.834 +26717,2025-03-10T08:23:41.637772-07:00,0.0,10.709986,10709.986 +26718,2025-03-10T08:23:52.368976-07:00,0.0,10.731204,10731.204 +26719,2025-03-10T08:24:03.088810-07:00,0.0,10.719834,10719.834 +26720,2025-03-10T08:24:13.806997-07:00,0.0,10.718187,10718.187 +26721,2025-03-10T08:24:24.526863-07:00,0.0,10.719866,10719.866 +26722,2025-03-10T08:24:35.252964-07:00,0.0,10.726101,10726.101 +26723,2025-03-10T08:24:45.978768-07:00,0.0,10.725804,10725.804 +26724,2025-03-10T08:24:56.703958-07:00,0.0,10.72519,10725.19 +26725,2025-03-10T08:25:07.423969-07:00,0.0,10.720011,10720.011 +26726,2025-03-10T08:25:18.151801-07:00,0.0,10.727832,10727.832 +26727,2025-03-10T08:25:28.870794-07:00,0.0,10.718993,10718.993 +26728,2025-03-10T08:25:39.597234-07:00,0.0,10.72644,10726.44 +26729,2025-03-10T08:25:50.312976-07:00,0.0,10.715742,10715.742 +26730,2025-03-10T08:26:01.037772-07:00,0.0,10.724796,10724.796 +26731,2025-03-10T08:26:11.759771-07:00,0.0,10.721999,10721.999 +26732,2025-03-10T08:26:22.489164-07:00,0.0,10.729393,10729.393 +26733,2025-03-10T08:26:33.207384-07:00,0.0,10.71822,10718.22 +26734,2025-03-10T08:26:43.928772-07:00,0.0,10.721388,10721.388 +26735,2025-03-10T08:26:54.646801-07:00,0.0,10.718029,10718.029 +26736,2025-03-10T08:27:05.376405-07:00,0.0,10.729604,10729.604 +26737,2025-03-10T08:27:16.088590-07:00,0.0,10.712185,10712.185 +26738,2025-03-10T08:27:26.808771-07:00,0.0,10.720181,10720.181 +26739,2025-03-10T08:27:37.536985-07:00,0.0,10.728214,10728.214 +26740,2025-03-10T08:27:48.258190-07:00,0.0,10.721205,10721.205 +26741,2025-03-10T08:27:58.966980-07:00,0.0,10.70879,10708.79 +26742,2025-03-10T08:28:09.695772-07:00,0.0,10.728792,10728.792 +26743,2025-03-10T08:28:20.405772-07:00,0.0,10.71,10710.0 +26744,2025-03-10T08:28:31.131954-07:00,0.0,10.726182,10726.182 +26745,2025-03-10T08:28:41.856980-07:00,0.0,10.725026,10725.026 +26746,2025-03-10T08:28:52.571256-07:00,0.0,10.714276,10714.276 +26747,2025-03-10T08:29:03.298771-07:00,0.0,10.727515,10727.515 +26748,2025-03-10T08:29:14.016950-07:00,0.0,10.718179,10718.179 +26749,2025-03-10T08:29:24.742002-07:00,0.0,10.725052,10725.052 +26750,2025-03-10T08:29:35.457457-07:00,0.0,10.715455,10715.455 +26751,2025-03-10T08:29:46.188770-07:00,0.0,10.731313,10731.313 +26752,2025-03-10T08:29:56.904954-07:00,0.0,10.716184,10716.184 +26753,2025-03-10T08:30:07.627767-07:00,0.0,10.722813,10722.813 +26754,2025-03-10T08:30:18.357843-07:00,0.0,10.730076,10730.076 +26755,2025-03-10T08:30:29.074771-07:00,0.0,10.716928,10716.928 +26756,2025-03-10T08:30:39.799323-07:00,0.0,10.724552,10724.552 +26757,2025-03-10T08:30:50.521765-07:00,0.0,10.722442,10722.442 +26758,2025-03-10T08:31:01.233411-07:00,0.0,10.711646,10711.646 +26759,2025-03-10T08:31:11.958811-07:00,0.0,10.7254,10725.4 +26760,2025-03-10T08:31:22.681937-07:00,0.0,10.723126,10723.126 +26761,2025-03-10T08:31:33.398983-07:00,0.0,10.717046,10717.046 +26762,2025-03-10T08:31:44.130860-07:00,0.0,10.731877,10731.877 +26763,2025-03-10T08:31:54.848794-07:00,0.0,10.717934,10717.934 +26764,2025-03-10T08:32:05.569956-07:00,0.0,10.721162,10721.162 +26765,2025-03-10T08:32:16.290766-07:00,0.0,10.72081,10720.81 +26766,2025-03-10T08:32:27.021265-07:00,0.0,10.730499,10730.499 +26767,2025-03-10T08:32:37.743796-07:00,0.0,10.722531,10722.531 +26768,2025-03-10T08:32:48.470180-07:00,0.0,10.726384,10726.384 +26769,2025-03-10T08:32:59.192765-07:00,0.0,10.722585,10722.585 +26770,2025-03-10T08:33:09.906772-07:00,0.0,10.714007,10714.007 +26771,2025-03-10T08:33:20.626771-07:00,0.0,10.719999,10719.999 +26772,2025-03-10T08:33:31.356510-07:00,0.0,10.729739,10729.739 +26773,2025-03-10T08:33:42.073878-07:00,0.0,10.717368,10717.368 +26774,2025-03-10T08:33:52.798767-07:00,0.0,10.724889,10724.889 +26775,2025-03-10T08:34:03.525796-07:00,0.0,10.727029,10727.029 +26776,2025-03-10T08:34:14.246079-07:00,0.0,10.720283,10720.283 +26777,2025-03-10T08:34:24.966769-07:00,0.0,10.72069,10720.69 +26778,2025-03-10T08:34:35.686771-07:00,0.0,10.720002,10720.002 +26779,2025-03-10T08:34:46.410905-07:00,0.0,10.724134,10724.134 +26780,2025-03-10T08:34:57.135129-07:00,0.0,10.724224,10724.224 +26781,2025-03-10T08:35:07.859498-07:00,0.0,10.724369,10724.369 +26782,2025-03-10T08:35:18.576771-07:00,0.0,10.717273,10717.273 +26783,2025-03-10T08:35:29.307965-07:00,0.0,10.731194,10731.194 +26784,2025-03-10T08:35:40.029787-07:00,0.0,10.721822,10721.822 +26785,2025-03-10T08:35:50.744904-07:00,0.0,10.715117,10715.117 +26786,2025-03-10T08:36:01.468770-07:00,0.0,10.723866,10723.866 +26787,2025-03-10T08:36:12.192356-07:00,0.0,10.723586,10723.586 +26788,2025-03-10T08:36:22.914765-07:00,0.0,10.722409,10722.409 +26789,2025-03-10T08:36:33.635683-07:00,0.0,10.720918,10720.918 +26790,2025-03-10T08:36:44.353770-07:00,0.0,10.718087,10718.087 +26791,2025-03-10T08:36:55.078319-07:00,0.0,10.724549,10724.549 +26792,2025-03-10T08:37:05.790947-07:00,0.0,10.712628,10712.628 +26793,2025-03-10T08:37:16.518765-07:00,0.0,10.727818,10727.818 +26794,2025-03-10T08:37:27.237300-07:00,0.0,10.718535,10718.535 +26795,2025-03-10T08:37:37.960858-07:00,0.0,10.723558,10723.558 +26796,2025-03-10T08:37:48.674766-07:00,0.0,10.713908,10713.908 +26797,2025-03-10T08:37:59.395770-07:00,0.0,10.721004,10721.004 +26798,2025-03-10T08:38:10.121844-07:00,0.0,10.726074,10726.074 +26799,2025-03-10T08:38:20.846826-07:00,0.0,10.724982,10724.982 +26800,2025-03-10T08:38:31.565956-07:00,0.0,10.71913,10719.13 +26801,2025-03-10T08:38:42.292967-07:00,0.0,10.727011,10727.011 +26802,2025-03-10T08:38:53.006983-07:00,0.0,10.714016,10714.016 +26803,2025-03-10T08:39:03.736864-07:00,0.0,10.729881,10729.881 +26804,2025-03-10T08:39:14.452957-07:00,0.0,10.716093,10716.093 +26805,2025-03-10T08:39:25.171771-07:00,0.0,10.718814,10718.814 +26806,2025-03-10T08:39:35.892067-07:00,0.0,10.720296,10720.296 +26807,2025-03-10T08:39:46.614764-07:00,0.0,10.722697,10722.697 +26808,2025-03-10T08:39:57.328967-07:00,0.0,10.714203,10714.203 +26809,2025-03-10T08:40:08.053769-07:00,0.0,10.724802,10724.802 +26810,2025-03-10T08:40:18.767591-07:00,0.0,10.713822,10713.822 +26811,2025-03-10T08:40:29.493049-07:00,0.0,10.725458,10725.458 +26812,2025-03-10T08:40:40.205769-07:00,0.0,10.71272,10712.72 +26813,2025-03-10T08:40:50.923801-07:00,0.0,10.718032,10718.032 +26814,2025-03-10T08:41:01.641322-07:00,0.0,10.717521,10717.521 +26815,2025-03-10T08:41:12.368970-07:00,0.0,10.727648,10727.648 +26816,2025-03-10T08:41:23.081771-07:00,0.0,10.712801,10712.801 +26817,2025-03-10T08:41:33.802159-07:00,0.0,10.720388,10720.388 +26818,2025-03-10T08:41:44.525792-07:00,0.0,10.723633,10723.633 +26819,2025-03-10T08:41:55.247423-07:00,0.0,10.721631,10721.631 +26820,2025-03-10T08:42:05.960771-07:00,0.0,10.713348,10713.348 +26821,2025-03-10T08:42:16.685177-07:00,0.0,10.724406,10724.406 +26822,2025-03-10T08:42:27.403765-07:00,0.0,10.718588,10718.588 +26823,2025-03-10T08:42:38.129963-07:00,0.0,10.726198,10726.198 +26824,2025-03-10T08:42:48.847805-07:00,0.0,10.717842,10717.842 +26825,2025-03-10T08:42:59.563863-07:00,0.0,10.716058,10716.058 +26826,2025-03-10T08:43:10.287054-07:00,0.0,10.723191,10723.191 +26827,2025-03-10T08:43:21.016957-07:00,0.0,10.729903,10729.903 +26828,2025-03-10T08:43:31.731767-07:00,0.0,10.71481,10714.81 +26829,2025-03-10T08:43:42.461144-07:00,0.0,10.729377,10729.377 +26830,2025-03-10T08:43:53.176834-07:00,0.0,10.71569,10715.69 +26831,2025-03-10T08:44:03.903960-07:00,0.0,10.727126,10727.126 +26832,2025-03-10T08:44:14.622936-07:00,0.0,10.718976,10718.976 +26833,2025-03-10T08:44:25.334770-07:00,0.0,10.711834,10711.834 +26834,2025-03-10T08:44:36.058179-07:00,0.0,10.723409,10723.409 +26835,2025-03-10T08:44:46.781841-07:00,0.0,10.723662,10723.662 +26836,2025-03-10T08:44:57.503768-07:00,0.0,10.721927,10721.927 +26837,2025-03-10T08:45:08.219831-07:00,0.0,10.716063,10716.063 +26838,2025-03-10T08:45:18.942356-07:00,0.0,10.722525,10722.525 +26839,2025-03-10T08:45:29.664792-07:00,0.0,10.722436,10722.436 +26840,2025-03-10T08:45:40.376968-07:00,0.0,10.712176,10712.176 +26841,2025-03-10T08:45:51.094816-07:00,0.0,10.717848,10717.848 +26842,2025-03-10T08:46:01.816181-07:00,0.0,10.721365,10721.365 +26843,2025-03-10T08:46:12.537839-07:00,0.0,10.721658,10721.658 +26844,2025-03-10T08:46:23.255972-07:00,0.0,10.718133,10718.133 +26845,2025-03-10T08:46:33.980774-07:00,0.0,10.724802,10724.802 +26846,2025-03-10T08:46:44.702769-07:00,0.0,10.721995,10721.995 +26847,2025-03-10T08:46:55.416804-07:00,0.0,10.714035,10714.035 +26848,2025-03-10T08:47:06.135834-07:00,0.0,10.71903,10719.03 +26849,2025-03-10T08:47:16.854951-07:00,0.0,10.719117,10719.117 +26850,2025-03-10T08:47:27.580770-07:00,0.0,10.725819,10725.819 +26851,2025-03-10T08:47:38.299978-07:00,0.0,10.719208,10719.208 +26852,2025-03-10T08:47:49.015863-07:00,0.0,10.715885,10715.885 +26853,2025-03-10T08:47:59.742991-07:00,0.0,10.727128,10727.128 +26854,2025-03-10T08:48:10.463770-07:00,0.0,10.720779,10720.779 +26855,2025-03-10T08:48:21.177926-07:00,0.0,10.714156,10714.156 +26856,2025-03-10T08:48:31.901822-07:00,0.0,10.723896,10723.896 +26857,2025-03-10T08:48:42.620993-07:00,0.0,10.719171,10719.171 +26858,2025-03-10T08:48:53.340771-07:00,0.0,10.719778,10719.778 +26859,2025-03-10T08:49:04.057043-07:00,0.0,10.716272,10716.272 +26860,2025-03-10T08:49:14.777245-07:00,0.0,10.720202,10720.202 +26861,2025-03-10T08:49:25.506953-07:00,0.0,10.729708,10729.708 +26862,2025-03-10T08:49:36.220799-07:00,0.0,10.713846,10713.846 +26863,2025-03-10T08:49:46.946725-07:00,0.0,10.725926,10725.926 +26864,2025-03-10T08:49:57.659511-07:00,0.0,10.712786,10712.786 +26865,2025-03-10T08:50:08.379769-07:00,0.0,10.720258,10720.258 +26866,2025-03-10T08:50:19.100207-07:00,0.0,10.720438,10720.438 +26867,2025-03-10T08:50:29.810804-07:00,0.0,10.710597,10710.597 +26868,2025-03-10T08:50:40.538531-07:00,0.0,10.727727,10727.727 +26869,2025-03-10T08:50:51.252974-07:00,0.0,10.714443,10714.443 +26870,2025-03-10T08:51:01.974939-07:00,0.0,10.721965,10721.965 +26871,2025-03-10T08:51:12.695769-07:00,0.0,10.72083,10720.83 +26872,2025-03-10T08:51:23.415527-07:00,0.0,10.719758,10719.758 +26873,2025-03-10T08:51:34.126849-07:00,0.0,10.711322,10711.322 +26874,2025-03-10T08:51:44.853830-07:00,0.0,10.726981,10726.981 +26875,2025-03-10T08:51:55.574147-07:00,0.0,10.720317,10720.317 +26876,2025-03-10T08:52:06.294771-07:00,0.0,10.720624,10720.624 +26877,2025-03-10T08:52:17.008964-07:00,0.0,10.714193,10714.193 +26878,2025-03-10T08:52:27.730978-07:00,0.0,10.722014,10722.014 +26879,2025-03-10T08:52:38.445303-07:00,0.0,10.714325,10714.325 +26880,2025-03-10T08:52:49.170770-07:00,0.0,10.725467,10725.467 +26881,2025-03-10T08:52:59.946595-07:00,0.0,10.775825,10775.825 +26882,2025-03-10T08:53:10.666756-07:00,0.0,10.720161,10720.161 +26883,2025-03-10T08:53:21.384806-07:00,0.0,10.71805,10718.05 +26884,2025-03-10T08:53:32.103781-07:00,0.0,10.718975,10718.975 +26885,2025-03-10T08:53:42.821726-07:00,0.0,10.717945,10717.945 +26886,2025-03-10T08:53:53.541951-07:00,0.0,10.720225,10720.225 +26887,2025-03-10T08:54:04.261949-07:00,0.0,10.719998,10719.998 +26888,2025-03-10T08:54:14.987730-07:00,0.0,10.725781,10725.781 +26889,2025-03-10T08:54:25.705726-07:00,0.0,10.717996,10717.996 +26890,2025-03-10T08:54:36.420914-07:00,0.0,10.715188,10715.188 +26891,2025-03-10T08:54:47.143825-07:00,0.0,10.722911,10722.911 +26892,2025-03-10T08:54:57.860882-07:00,0.0,10.717057,10717.057 +26893,2025-03-10T08:55:08.587729-07:00,0.0,10.726847,10726.847 +26894,2025-03-10T08:55:19.303468-07:00,0.0,10.715739,10715.739 +26895,2025-03-10T08:55:30.024729-07:00,0.0,10.721261,10721.261 +26896,2025-03-10T08:55:40.754888-07:00,0.0,10.730159,10730.159 +26897,2025-03-10T08:55:51.467758-07:00,0.0,10.71287,10712.87 +26898,2025-03-10T08:56:02.188919-07:00,0.0,10.721161,10721.161 +26899,2025-03-10T08:56:12.915761-07:00,0.0,10.726842,10726.842 +26900,2025-03-10T08:56:23.628973-07:00,0.0,10.713212,10713.212 +26901,2025-03-10T08:56:34.350004-07:00,0.0,10.721031,10721.031 +26902,2025-03-10T08:56:45.071086-07:00,0.0,10.721082,10721.082 +26903,2025-03-10T08:56:55.789798-07:00,0.0,10.718712,10718.712 +26904,2025-03-10T08:57:06.512731-07:00,0.0,10.722933,10722.933 +26905,2025-03-10T08:57:17.236953-07:00,0.0,10.724222,10724.222 +26906,2025-03-10T08:57:27.950725-07:00,0.0,10.713772,10713.772 +26907,2025-03-10T08:57:38.674728-07:00,0.0,10.724003,10724.003 +26908,2025-03-10T08:57:49.390729-07:00,0.0,10.716001,10716.001 +26909,2025-03-10T08:58:00.108915-07:00,0.0,10.718186,10718.186 +26910,2025-03-10T08:58:10.837236-07:00,0.0,10.728321,10728.321 +26911,2025-03-10T08:58:21.552921-07:00,0.0,10.715685,10715.685 +26912,2025-03-10T08:58:32.279727-07:00,0.0,10.726806,10726.806 +26913,2025-03-10T08:58:42.996927-07:00,0.0,10.7172,10717.2 +26914,2025-03-10T08:58:53.715728-07:00,0.0,10.718801,10718.801 +26915,2025-03-10T08:59:04.432811-07:00,0.0,10.717083,10717.083 +26916,2025-03-10T08:59:15.155791-07:00,0.0,10.72298,10722.98 +26917,2025-03-10T08:59:25.869738-07:00,0.0,10.713947,10713.947 +26918,2025-03-10T08:59:36.585883-07:00,0.0,10.716145,10716.145 +26919,2025-03-10T08:59:47.303730-07:00,0.0,10.717847,10717.847 +26920,2025-03-10T08:59:58.035020-07:00,0.0,10.73129,10731.29 +26921,2025-03-10T09:00:08.756755-07:00,0.0,10.721735,10721.735 +26922,2025-03-10T09:00:19.474977-07:00,0.0,10.718222,10718.222 +26923,2025-03-10T09:00:30.190726-07:00,0.0,10.715749,10715.749 +26924,2025-03-10T09:00:40.919933-07:00,0.0,10.729207,10729.207 +26925,2025-03-10T09:00:51.639730-07:00,0.0,10.719797,10719.797 +26926,2025-03-10T09:01:02.361057-07:00,0.0,10.721327,10721.327 +26927,2025-03-10T09:01:13.077728-07:00,0.0,10.716671,10716.671 +26928,2025-03-10T09:01:23.799837-07:00,0.0,10.722109,10722.109 +26929,2025-03-10T09:01:34.523729-07:00,0.0,10.723892,10723.892 +26930,2025-03-10T09:01:45.250802-07:00,0.0,10.727073,10727.073 +26931,2025-03-10T09:01:55.968800-07:00,0.0,10.717998,10717.998 +26932,2025-03-10T09:02:06.686839-07:00,0.0,10.718039,10718.039 +26933,2025-03-10T09:02:07.711268-07:00,0.0,1.024429,1024.429 +26934,2025-03-10T09:02:17.408971-07:00,0.0,9.697703,9697.703 +26935,2025-03-10T09:02:28.129899-07:00,0.0,10.720928,10720.928 +26936,2025-03-10T09:02:38.850803-07:00,0.0,10.720904,10720.904 +26937,2025-03-10T09:02:49.576894-07:00,0.0,10.726091,10726.091 +26938,2025-03-10T09:03:00.303725-07:00,0.0,10.726831,10726.831 +26939,2025-03-10T09:03:11.017901-07:00,0.0,10.714176,10714.176 +26940,2025-03-10T09:03:21.744808-07:00,0.0,10.726907,10726.907 +26941,2025-03-10T09:03:32.464133-07:00,0.0,10.719325,10719.325 +26942,2025-03-10T09:03:43.184727-07:00,0.0,10.720594,10720.594 +26943,2025-03-10T09:03:53.913830-07:00,0.0,10.729103,10729.103 +26944,2025-03-10T09:04:04.630729-07:00,0.0,10.716899,10716.899 +26945,2025-03-10T09:04:15.358949-07:00,0.0,10.72822,10728.22 +26946,2025-03-10T09:04:26.073727-07:00,0.0,10.714778,10714.778 +26947,2025-03-10T09:04:36.795269-07:00,0.0,10.721542,10721.542 +26948,2025-03-10T09:04:47.519730-07:00,0.0,10.724461,10724.461 +26949,2025-03-10T09:04:58.238105-07:00,0.0,10.718375,10718.375 +26950,2025-03-10T09:05:08.962788-07:00,0.0,10.724683,10724.683 +26951,2025-03-10T09:05:19.679927-07:00,0.0,10.717139,10717.139 +26952,2025-03-10T09:05:30.402729-07:00,0.0,10.722802,10722.802 +26953,2025-03-10T09:05:41.126129-07:00,0.0,10.7234,10723.4 +26954,2025-03-10T09:05:51.847752-07:00,0.0,10.721623,10721.623 +26955,2025-03-10T09:06:02.564914-07:00,0.0,10.717162,10717.162 +26956,2025-03-10T09:06:13.281830-07:00,0.0,10.716916,10716.916 +26957,2025-03-10T09:06:24.006763-07:00,0.0,10.724933,10724.933 +26958,2025-03-10T09:06:34.723915-07:00,0.0,10.717152,10717.152 +26959,2025-03-10T09:06:45.453941-07:00,0.0,10.730026,10730.026 +26960,2025-03-10T09:06:56.168738-07:00,0.0,10.714797,10714.797 +26961,2025-03-10T09:07:06.886937-07:00,0.0,10.718199,10718.199 +26962,2025-03-10T09:07:17.606723-07:00,0.0,10.719786,10719.786 +26963,2025-03-10T09:07:28.333809-07:00,0.0,10.727086,10727.086 +26964,2025-03-10T09:07:39.046267-07:00,0.0,10.712458,10712.458 +26965,2025-03-10T09:07:49.765074-07:00,0.0,10.718807,10718.807 +26966,2025-03-10T09:08:00.489728-07:00,0.0,10.724654,10724.654 +26967,2025-03-10T09:08:11.206729-07:00,0.0,10.717001,10717.001 +26968,2025-03-10T09:08:21.936957-07:00,0.0,10.730228,10730.228 +26969,2025-03-10T09:08:32.651934-07:00,0.0,10.714977,10714.977 +26970,2025-03-10T09:08:43.375727-07:00,0.0,10.723793,10723.793 +26971,2025-03-10T09:08:54.086728-07:00,0.0,10.711001,10711.001 +26972,2025-03-10T09:09:04.814912-07:00,0.0,10.728184,10728.184 +26973,2025-03-10T09:09:15.532941-07:00,0.0,10.718029,10718.029 +26974,2025-03-10T09:09:26.249198-07:00,0.0,10.716257,10716.257 +26975,2025-03-10T09:09:36.974794-07:00,0.0,10.725596,10725.596 +26976,2025-03-10T09:09:47.698904-07:00,0.0,10.72411,10724.11 +26977,2025-03-10T09:09:58.419972-07:00,0.0,10.721068,10721.068 +26978,2025-03-10T09:10:09.132983-07:00,0.0,10.713011,10713.011 +26979,2025-03-10T09:10:19.861733-07:00,0.0,10.72875,10728.75 +26980,2025-03-10T09:10:30.578780-07:00,0.0,10.717047,10717.047 +26981,2025-03-10T09:10:41.297732-07:00,0.0,10.718952,10718.952 +26982,2025-03-10T09:10:52.019318-07:00,0.0,10.721586,10721.586 +26983,2025-03-10T09:11:02.744756-07:00,0.0,10.725438,10725.438 +26984,2025-03-10T09:11:13.468097-07:00,0.0,10.723341,10723.341 +26985,2025-03-10T09:11:24.190730-07:00,0.0,10.722633,10722.633 +26986,2025-03-10T09:11:34.906989-07:00,0.0,10.716259,10716.259 +26987,2025-03-10T09:11:45.631730-07:00,0.0,10.724741,10724.741 +26988,2025-03-10T09:11:56.352801-07:00,0.0,10.721071,10721.071 +26989,2025-03-10T09:12:07.070730-07:00,0.0,10.717929,10717.929 +26990,2025-03-10T09:12:17.798157-07:00,0.0,10.727427,10727.427 +26991,2025-03-10T09:12:28.519725-07:00,0.0,10.721568,10721.568 +26992,2025-03-10T09:12:39.240888-07:00,0.0,10.721163,10721.163 +26993,2025-03-10T09:12:49.956730-07:00,0.0,10.715842,10715.842 +26994,2025-03-10T09:13:00.672730-07:00,0.0,10.716,10716.0 +26995,2025-03-10T09:13:11.398910-07:00,0.0,10.72618,10726.18 +26996,2025-03-10T09:13:22.116728-07:00,0.0,10.717818,10717.818 +26997,2025-03-10T09:13:32.831934-07:00,0.0,10.715206,10715.206 +26998,2025-03-10T09:13:43.554729-07:00,0.0,10.722795,10722.795 +26999,2025-03-10T09:13:54.278087-07:00,0.0,10.723358,10723.358 +27000,2025-03-10T09:14:04.995730-07:00,0.0,10.717643,10717.643 +27001,2025-03-10T09:14:15.722908-07:00,0.0,10.727178,10727.178 +27002,2025-03-10T09:14:26.438825-07:00,0.0,10.715917,10715.917 +27003,2025-03-10T09:14:37.161263-07:00,0.0,10.722438,10722.438 +27004,2025-03-10T09:14:47.886724-07:00,0.0,10.725461,10725.461 +27005,2025-03-10T09:14:58.599850-07:00,0.0,10.713126,10713.126 +27006,2025-03-10T09:15:09.330861-07:00,0.0,10.731011,10731.011 +27007,2025-03-10T09:15:20.048891-07:00,0.0,10.71803,10718.03 +27008,2025-03-10T09:15:30.764924-07:00,0.0,10.716033,10716.033 +27009,2025-03-10T09:15:41.485755-07:00,0.0,10.720831,10720.831 +27010,2025-03-10T09:15:52.209776-07:00,0.0,10.724021,10724.021 +27011,2025-03-10T09:16:02.922766-07:00,0.0,10.71299,10712.99 +27012,2025-03-10T09:16:13.645945-07:00,0.0,10.723179,10723.179 +27013,2025-03-10T09:16:24.367725-07:00,0.0,10.72178,10721.78 +27014,2025-03-10T09:16:35.084275-07:00,0.0,10.71655,10716.55 +27015,2025-03-10T09:16:45.806801-07:00,0.0,10.722526,10722.526 +27016,2025-03-10T09:16:56.530752-07:00,0.0,10.723951,10723.951 +27017,2025-03-10T09:17:07.261301-07:00,0.0,10.730549,10730.549 +27018,2025-03-10T09:17:17.986765-07:00,0.0,10.725464,10725.464 +27019,2025-03-10T09:17:28.703727-07:00,0.0,10.716962,10716.962 +27020,2025-03-10T09:17:39.429754-07:00,0.0,10.726027,10726.027 +27021,2025-03-10T09:17:50.148220-07:00,0.0,10.718466,10718.466 +27022,2025-03-10T09:18:00.873729-07:00,0.0,10.725509,10725.509 +27023,2025-03-10T09:18:11.598892-07:00,0.0,10.725163,10725.163 +27024,2025-03-10T09:18:22.312731-07:00,0.0,10.713839,10713.839 +27025,2025-03-10T09:18:33.041117-07:00,0.0,10.728386,10728.386 +27026,2025-03-10T09:18:43.757725-07:00,0.0,10.716608,10716.608 +27027,2025-03-10T09:18:54.485915-07:00,0.0,10.72819,10728.19 +27028,2025-03-10T09:19:05.206765-07:00,0.0,10.72085,10720.85 +27029,2025-03-10T09:19:15.930541-07:00,0.0,10.723776,10723.776 +27030,2025-03-10T09:19:26.642900-07:00,0.0,10.712359,10712.359 +27031,2025-03-10T09:19:37.366994-07:00,0.0,10.724094,10724.094 +27032,2025-03-10T09:19:48.087730-07:00,0.0,10.720736,10720.736 +27033,2025-03-10T09:19:58.819126-07:00,0.0,10.731396,10731.396 +27034,2025-03-10T09:20:09.537786-07:00,0.0,10.71866,10718.66 +27035,2025-03-10T09:20:20.259908-07:00,0.0,10.722122,10722.122 +27036,2025-03-10T09:20:30.977730-07:00,0.0,10.717822,10717.822 +27037,2025-03-10T09:20:41.700790-07:00,0.0,10.72306,10723.06 +27038,2025-03-10T09:20:52.425763-07:00,0.0,10.724973,10724.973 +27039,2025-03-10T09:21:03.153951-07:00,0.0,10.728188,10728.188 +27040,2025-03-10T09:21:13.870729-07:00,0.0,10.716778,10716.778 +27041,2025-03-10T09:21:24.593077-07:00,0.0,10.722348,10722.348 +27042,2025-03-10T09:21:35.318804-07:00,0.0,10.725727,10725.727 +27043,2025-03-10T09:21:46.041939-07:00,0.0,10.723135,10723.135 +27044,2025-03-10T09:21:56.751730-07:00,0.0,10.709791,10709.791 +27045,2025-03-10T09:22:07.478144-07:00,0.0,10.726414,10726.414 +27046,2025-03-10T09:22:18.203727-07:00,0.0,10.725583,10725.583 +27047,2025-03-10T09:22:28.920986-07:00,0.0,10.717259,10717.259 +27048,2025-03-10T09:22:39.647796-07:00,0.0,10.72681,10726.81 +27049,2025-03-10T09:22:50.370830-07:00,0.0,10.723034,10723.034 +27050,2025-03-10T09:23:01.092541-07:00,0.0,10.721711,10721.711 +27051,2025-03-10T09:23:11.805899-07:00,0.0,10.713358,10713.358 +27052,2025-03-10T09:23:22.535023-07:00,0.0,10.729124,10729.124 +27053,2025-03-10T09:23:33.255918-07:00,0.0,10.720895,10720.895 +27054,2025-03-10T09:23:43.979727-07:00,0.0,10.723809,10723.809 +27055,2025-03-10T09:23:54.694148-07:00,0.0,10.714421,10714.421 +27056,2025-03-10T09:24:05.416010-07:00,0.0,10.721862,10721.862 +27057,2025-03-10T09:24:16.128940-07:00,0.0,10.71293,10712.93 +27058,2025-03-10T09:24:26.849944-07:00,0.0,10.721004,10721.004 +27059,2025-03-10T09:24:37.568929-07:00,0.0,10.718985,10718.985 +27060,2025-03-10T09:24:48.290732-07:00,0.0,10.721803,10721.803 +27061,2025-03-10T09:24:59.010729-07:00,0.0,10.719997,10719.997 +27062,2025-03-10T09:25:09.737001-07:00,0.0,10.726272,10726.272 +27063,2025-03-10T09:25:20.459911-07:00,0.0,10.72291,10722.91 +27064,2025-03-10T09:25:31.184793-07:00,0.0,10.724882,10724.882 +27065,2025-03-10T09:25:41.901801-07:00,0.0,10.717008,10717.008 +27066,2025-03-10T09:25:52.619933-07:00,0.0,10.718132,10718.132 +27067,2025-03-10T09:26:03.341727-07:00,0.0,10.721794,10721.794 +27068,2025-03-10T09:26:14.064808-07:00,0.0,10.723081,10723.081 +27069,2025-03-10T09:26:24.786730-07:00,0.0,10.721922,10721.922 +27070,2025-03-10T09:26:35.506957-07:00,0.0,10.720227,10720.227 +27071,2025-03-10T09:26:46.233727-07:00,0.0,10.72677,10726.77 +27072,2025-03-10T09:26:56.952729-07:00,0.0,10.719002,10719.002 +27073,2025-03-10T09:27:07.669787-07:00,0.0,10.717058,10717.058 +27074,2025-03-10T09:27:18.396906-07:00,0.0,10.727119,10727.119 +27075,2025-03-10T09:27:29.112797-07:00,0.0,10.715891,10715.891 +27076,2025-03-10T09:27:39.840729-07:00,0.0,10.727932,10727.932 +27077,2025-03-10T09:27:50.559725-07:00,0.0,10.718996,10718.996 +27078,2025-03-10T09:28:01.280197-07:00,0.0,10.720472,10720.472 +27079,2025-03-10T09:28:11.999728-07:00,0.0,10.719531,10719.531 +27080,2025-03-10T09:28:22.723502-07:00,0.0,10.723774,10723.774 +27081,2025-03-10T09:28:33.446799-07:00,0.0,10.723297,10723.297 +27082,2025-03-10T09:28:44.171950-07:00,0.0,10.725151,10725.151 +27083,2025-03-10T09:28:54.887735-07:00,0.0,10.715785,10715.785 +27084,2025-03-10T09:29:05.610823-07:00,0.0,10.723088,10723.088 +27085,2025-03-10T09:29:16.331780-07:00,0.0,10.720957,10720.957 +27086,2025-03-10T09:29:27.044775-07:00,0.0,10.712995,10712.995 +27087,2025-03-10T09:29:37.770728-07:00,0.0,10.725953,10725.953 +27088,2025-03-10T09:29:48.481667-07:00,0.0,10.710939,10710.939 +27089,2025-03-10T09:29:59.202868-07:00,0.0,10.721201,10721.201 +27090,2025-03-10T09:30:09.920755-07:00,0.0,10.717887,10717.887 +27091,2025-03-10T09:30:20.639731-07:00,0.0,10.718976,10718.976 +27092,2025-03-10T09:30:31.362801-07:00,0.0,10.72307,10723.07 +27093,2025-03-10T09:30:42.080463-07:00,0.0,10.717662,10717.662 +27094,2025-03-10T09:30:52.804098-07:00,0.0,10.723635,10723.635 +27095,2025-03-10T09:31:03.514048-07:00,0.0,10.70995,10709.95 +27096,2025-03-10T09:31:14.237729-07:00,0.0,10.723681,10723.681 +27097,2025-03-10T09:31:24.958513-07:00,0.0,10.720784,10720.784 +27098,2025-03-10T09:31:35.676780-07:00,0.0,10.718267,10718.267 +27099,2025-03-10T09:31:46.399087-07:00,0.0,10.722307,10722.307 +27100,2025-03-10T09:31:57.113152-07:00,0.0,10.714065,10714.065 +27101,2025-03-10T09:32:07.834728-07:00,0.0,10.721576,10721.576 +27102,2025-03-10T09:32:18.554730-07:00,0.0,10.720002,10720.002 +27103,2025-03-10T09:32:29.276730-07:00,0.0,10.722,10722.0 +27104,2025-03-10T09:32:39.999909-07:00,0.0,10.723179,10723.179 +27105,2025-03-10T09:32:50.717928-07:00,0.0,10.718019,10718.019 +27106,2025-03-10T09:33:01.433900-07:00,0.0,10.715972,10715.972 +27107,2025-03-10T09:33:12.154805-07:00,0.0,10.720905,10720.905 +27108,2025-03-10T09:33:22.872043-07:00,0.0,10.717238,10717.238 +27109,2025-03-10T09:33:33.597909-07:00,0.0,10.725866,10725.866 +27110,2025-03-10T09:33:44.315378-07:00,0.0,10.717469,10717.469 +27111,2025-03-10T09:33:55.035802-07:00,0.0,10.720424,10720.424 +27112,2025-03-10T09:34:05.764894-07:00,0.0,10.729092,10729.092 +27113,2025-03-10T09:34:16.485740-07:00,0.0,10.720846,10720.846 +27114,2025-03-10T09:34:27.208299-07:00,0.0,10.722559,10722.559 +27115,2025-03-10T09:34:37.931895-07:00,0.0,10.723596,10723.596 +27116,2025-03-10T09:34:48.647476-07:00,0.0,10.715581,10715.581 +27117,2025-03-10T09:34:59.369804-07:00,0.0,10.722328,10722.328 +27118,2025-03-10T09:35:10.098910-07:00,0.0,10.729106,10729.106 +27119,2025-03-10T09:35:20.816935-07:00,0.0,10.718025,10718.025 +27120,2025-03-10T09:35:31.537901-07:00,0.0,10.720966,10720.966 +27121,2025-03-10T09:35:42.257729-07:00,0.0,10.719828,10719.828 +27122,2025-03-10T09:35:52.978421-07:00,0.0,10.720692,10720.692 +27123,2025-03-10T09:36:03.700788-07:00,0.0,10.722367,10722.367 +27124,2025-03-10T09:36:14.420337-07:00,0.0,10.719549,10719.549 +27125,2025-03-10T09:36:25.141915-07:00,0.0,10.721578,10721.578 +27126,2025-03-10T09:36:35.859195-07:00,0.0,10.71728,10717.28 +27127,2025-03-10T09:36:46.582733-07:00,0.0,10.723538,10723.538 +27128,2025-03-10T09:36:57.300762-07:00,0.0,10.718029,10718.029 +27129,2025-03-10T09:37:08.020795-07:00,0.0,10.720033,10720.033 +27130,2025-03-10T09:37:18.746050-07:00,0.0,10.725255,10725.255 +27131,2025-03-10T09:37:29.467816-07:00,0.0,10.721766,10721.766 +27132,2025-03-10T09:37:40.191727-07:00,0.0,10.723911,10723.911 +27133,2025-03-10T09:37:50.907734-07:00,0.0,10.716007,10716.007 +27134,2025-03-10T09:38:01.630929-07:00,0.0,10.723195,10723.195 +27135,2025-03-10T09:38:12.352039-07:00,0.0,10.72111,10721.11 +27136,2025-03-10T09:38:23.076787-07:00,0.0,10.724748,10724.748 +27137,2025-03-10T09:38:33.793733-07:00,0.0,10.716946,10716.946 +27138,2025-03-10T09:38:44.519154-07:00,0.0,10.725421,10725.421 +27139,2025-03-10T09:38:55.240919-07:00,0.0,10.721765,10721.765 +27140,2025-03-10T09:39:05.960727-07:00,0.0,10.719808,10719.808 +27141,2025-03-10T09:39:16.687729-07:00,0.0,10.727002,10727.002 +27142,2025-03-10T09:39:27.403965-07:00,0.0,10.716236,10716.236 +27143,2025-03-10T09:39:38.121948-07:00,0.0,10.717983,10717.983 +27144,2025-03-10T09:39:48.846727-07:00,0.0,10.724779,10724.779 +27145,2025-03-10T09:39:59.565732-07:00,0.0,10.719005,10719.005 +27146,2025-03-10T09:40:10.292949-07:00,0.0,10.727217,10727.217 +27147,2025-03-10T09:40:21.006203-07:00,0.0,10.713254,10713.254 +27148,2025-03-10T09:40:31.731727-07:00,0.0,10.725524,10725.524 +27149,2025-03-10T09:40:42.458730-07:00,0.0,10.727003,10727.003 +27150,2025-03-10T09:40:53.173030-07:00,0.0,10.7143,10714.3 +27151,2025-03-10T09:41:03.894236-07:00,0.0,10.721206,10721.206 +27152,2025-03-10T09:41:14.616805-07:00,0.0,10.722569,10722.569 +27153,2025-03-10T09:41:25.338744-07:00,0.0,10.721939,10721.939 +27154,2025-03-10T09:41:36.066737-07:00,0.0,10.727993,10727.993 +27155,2025-03-10T09:41:46.783059-07:00,0.0,10.716322,10716.322 +27156,2025-03-10T09:41:57.504871-07:00,0.0,10.721812,10721.812 +27157,2025-03-10T09:42:08.229933-07:00,0.0,10.725062,10725.062 +27158,2025-03-10T09:42:18.945728-07:00,0.0,10.715795,10715.795 +27159,2025-03-10T09:42:29.675953-07:00,0.0,10.730225,10730.225 +27160,2025-03-10T09:42:40.387736-07:00,0.0,10.711783,10711.783 +27161,2025-03-10T09:42:51.113962-07:00,0.0,10.726226,10726.226 +27162,2025-03-10T09:42:56.712920-07:00,369.0,5.598958,5598.958 +27163,2025-03-10T09:43:01.830953-07:00,497.0,5.118033,5118.033 +27164,2025-03-10T09:43:12.552933-07:00,464.0,10.72198,10721.98 +27165,2025-03-10T09:43:23.274852-07:00,511.0,10.721919,10721.919 +27166,2025-03-10T09:43:33.999125-07:00,492.0,10.724273,10724.273 +27167,2025-03-10T09:43:44.722790-07:00,443.0,10.723665,10723.665 +27168,2025-03-10T09:43:55.443955-07:00,496.0,10.721165,10721.165 +27169,2025-03-10T09:44:06.169253-07:00,497.0,10.725298,10725.298 +27170,2025-03-10T09:44:16.892830-07:00,478.0,10.723577,10723.577 +27171,2025-03-10T09:44:27.618752-07:00,450.0,10.725922,10725.922 +27172,2025-03-10T09:44:38.346726-07:00,464.0,10.727974,10727.974 +27173,2025-03-10T09:44:49.061932-07:00,449.0,10.715206,10715.206 +27174,2025-03-10T09:44:59.792761-07:00,464.0,10.730829,10730.829 +27175,2025-03-10T09:45:10.512645-07:00,341.0,10.719884,10719.884 +27176,2025-03-10T09:45:21.240102-07:00,439.0,10.727457,10727.457 +27177,2025-03-10T09:45:31.967875-07:00,449.0,10.727773,10727.773 +27178,2025-03-10T09:45:42.684787-07:00,430.0,10.716912,10716.912 +27179,2025-03-10T09:45:53.415022-07:00,448.0,10.730235,10730.235 +27180,2025-03-10T09:46:04.141753-07:00,434.0,10.726731,10726.731 +27181,2025-03-10T09:46:14.862818-07:00,465.0,10.721065,10721.065 +27182,2025-03-10T09:46:25.587863-07:00,450.0,10.725045,10725.045 +27183,2025-03-10T09:46:36.311724-07:00,464.0,10.723861,10723.861 +27184,2025-03-10T09:46:47.038306-07:00,457.0,10.726582,10726.582 +27185,2025-03-10T09:46:57.770730-07:00,481.0,10.732424,10732.424 +27186,2025-03-10T09:47:08.494924-07:00,453.0,10.724194,10724.194 +27187,2025-03-10T09:47:19.224482-07:00,365.0,10.729558,10729.558 +27188,2025-03-10T09:47:29.946730-07:00,441.0,10.722248,10722.248 +27189,2025-03-10T09:47:40.676012-07:00,458.0,10.729282,10729.282 +27190,2025-03-10T09:47:51.399773-07:00,449.0,10.723761,10723.761 +27191,2025-03-10T09:48:02.133877-07:00,483.0,10.734104,10734.104 +27192,2025-03-10T09:48:12.857247-07:00,432.0,10.72337,10723.37 +27193,2025-03-10T09:48:23.580729-07:00,482.0,10.723482,10723.482 +27194,2025-03-10T09:48:34.305920-07:00,475.0,10.725191,10725.191 +27195,2025-03-10T09:48:45.029732-07:00,414.0,10.723812,10723.812 +27196,2025-03-10T09:48:55.759941-07:00,461.0,10.730209,10730.209 +27197,2025-03-10T09:49:06.481752-07:00,469.0,10.721811,10721.811 +27198,2025-03-10T09:49:17.209732-07:00,370.0,10.72798,10727.98 +27199,2025-03-10T09:49:27.930978-07:00,347.0,10.721246,10721.246 +27200,2025-03-10T09:49:38.654881-07:00,453.0,10.723903,10723.903 +27201,2025-03-10T09:49:49.386939-07:00,448.0,10.732058,10732.058 +27202,2025-03-10T09:50:00.113931-07:00,379.0,10.726992,10726.992 +27203,2025-03-10T09:50:10.832992-07:00,460.0,10.719061,10719.061 +27204,2025-03-10T09:50:21.559731-07:00,371.0,10.726739,10726.739 +27205,2025-03-10T09:50:32.286158-07:00,447.0,10.726427,10726.427 +27206,2025-03-10T09:50:43.012727-07:00,446.0,10.726569,10726.569 +27207,2025-03-10T09:50:53.742730-07:00,453.0,10.730003,10730.003 +27208,2025-03-10T09:51:04.470564-07:00,433.0,10.727834,10727.834 +27209,2025-03-10T09:51:15.196728-07:00,458.0,10.726164,10726.164 +27210,2025-03-10T09:51:25.915931-07:00,474.0,10.719203,10719.203 +27211,2025-03-10T09:51:36.636730-07:00,435.0,10.720799,10720.799 +27212,2025-03-10T09:51:47.365728-07:00,413.0,10.728998,10728.998 +27213,2025-03-10T09:51:58.096920-07:00,431.0,10.731192,10731.192 +27214,2025-03-10T09:52:08.813730-07:00,415.0,10.71681,10716.81 +27215,2025-03-10T09:52:19.549951-07:00,447.0,10.736221,10736.221 +27216,2025-03-10T09:52:30.272728-07:00,434.0,10.722777,10722.777 +27217,2025-03-10T09:52:40.997891-07:00,449.0,10.725163,10725.163 +27218,2025-03-10T09:52:51.728964-07:00,447.0,10.731073,10731.073 +27219,2025-03-10T09:53:02.363197-07:00,432.0,10.634233,10634.233 +27220,2025-03-10T09:53:13.083085-07:00,453.0,10.719888,10719.888 +27221,2025-03-10T09:53:23.813283-07:00,386.0,10.730198,10730.198 +27222,2025-03-10T09:53:34.534171-07:00,442.0,10.720888,10720.888 +27223,2025-03-10T09:53:45.264187-07:00,448.0,10.730016,10730.016 +27224,2025-03-10T09:53:55.984849-07:00,482.0,10.720662,10720.662 +27225,2025-03-10T09:54:06.721554-07:00,364.0,10.736705,10736.705 +27226,2025-03-10T09:54:17.441997-07:00,481.0,10.720443,10720.443 +27227,2025-03-10T09:54:28.167129-07:00,423.0,10.725132,10725.132 +27228,2025-03-10T09:54:38.883200-07:00,423.0,10.716071,10716.071 +27229,2025-03-10T09:54:49.614179-07:00,459.0,10.730979,10730.979 +27230,2025-03-10T09:55:00.333998-07:00,474.0,10.719819,10719.819 +27231,2025-03-10T09:55:11.059375-07:00,458.0,10.725377,10725.377 +27232,2025-03-10T09:55:21.785158-07:00,421.0,10.725783,10725.783 +27233,2025-03-10T09:55:32.512177-07:00,447.0,10.727019,10727.019 +27234,2025-03-10T09:55:43.245445-07:00,382.0,10.733268,10733.268 +27235,2025-03-10T09:55:53.962994-07:00,414.0,10.717549,10717.549 +27236,2025-03-10T09:56:04.688656-07:00,396.0,10.725662,10725.662 +27237,2025-03-10T09:56:15.417298-07:00,363.0,10.728642,10728.642 +27238,2025-03-10T09:56:26.136197-07:00,467.0,10.718899,10718.899 +27239,2025-03-10T09:56:36.862994-07:00,402.0,10.726797,10726.797 +27240,2025-03-10T09:56:47.587024-07:00,473.0,10.72403,10724.03 +27241,2025-03-10T09:56:58.305956-07:00,477.0,10.718932,10718.932 +27242,2025-03-10T09:57:09.041023-07:00,464.0,10.735067,10735.067 +27243,2025-03-10T09:57:19.762994-07:00,373.0,10.721971,10721.971 +27244,2025-03-10T09:57:30.490311-07:00,373.0,10.727317,10727.317 +27245,2025-03-10T09:57:41.214167-07:00,400.0,10.723856,10723.856 +27246,2025-03-10T09:57:51.934094-07:00,368.0,10.719927,10719.927 +27247,2025-03-10T09:58:02.661179-07:00,432.0,10.727085,10727.085 +27248,2025-03-10T09:58:13.386024-07:00,466.0,10.724845,10724.845 +27249,2025-03-10T09:58:24.114157-07:00,405.0,10.728133,10728.133 +27250,2025-03-10T09:58:34.831997-07:00,384.0,10.71784,10717.84 +27251,2025-03-10T09:58:45.564109-07:00,406.0,10.732112,10732.112 +27252,2025-03-10T09:58:56.288298-07:00,414.0,10.724189,10724.189 +27253,2025-03-10T09:59:07.009998-07:00,357.0,10.7217,10721.7 +27254,2025-03-10T09:59:17.741101-07:00,413.0,10.731103,10731.103 +27255,2025-03-10T09:59:28.462995-07:00,400.0,10.721894,10721.894 +27256,2025-03-10T09:59:39.190182-07:00,390.0,10.727187,10727.187 +27257,2025-03-10T09:59:49.910190-07:00,474.0,10.720008,10720.008 +27258,2025-03-10T10:00:00.640008-07:00,448.0,10.729818,10729.818 +27259,2025-03-10T10:00:11.361143-07:00,451.0,10.721135,10721.135 +27260,2025-03-10T10:00:22.083111-07:00,410.0,10.721968,10721.968 +27261,2025-03-10T10:00:32.809116-07:00,461.0,10.726005,10726.005 +27262,2025-03-10T10:00:43.536997-07:00,394.0,10.727881,10727.881 +27263,2025-03-10T10:00:54.257175-07:00,460.0,10.720178,10720.178 +27264,2025-03-10T10:01:04.980018-07:00,349.0,10.722843,10722.843 +27265,2025-03-10T10:01:15.710043-07:00,398.0,10.730025,10730.025 +27266,2025-03-10T10:01:17.618355-07:00,0.0,1.908312,1908.312 +27267,2025-03-10T10:01:26.434997-07:00,0.0,8.816642,8816.642 +27268,2025-03-10T10:01:37.157207-07:00,0.0,10.72221,10722.21 +27269,2025-03-10T10:01:47.890222-07:00,0.0,10.733015,10733.015 +27270,2025-03-10T10:01:58.607021-07:00,0.0,10.716799,10716.799 +27271,2025-03-10T10:02:09.336670-07:00,0.0,10.729649,10729.649 +27272,2025-03-10T10:02:20.058994-07:00,0.0,10.722324,10722.324 +27273,2025-03-10T10:02:30.788066-07:00,0.0,10.729072,10729.072 +27274,2025-03-10T10:02:41.508071-07:00,0.0,10.720005,10720.005 +27275,2025-03-10T10:02:52.238219-07:00,0.0,10.730148,10730.148 +27276,2025-03-10T10:03:02.962994-07:00,0.0,10.724775,10724.775 +27277,2025-03-10T10:03:13.690997-07:00,0.0,10.728003,10728.003 +27278,2025-03-10T10:03:24.409290-07:00,0.0,10.718293,10718.293 +27279,2025-03-10T10:03:35.134996-07:00,0.0,10.725706,10725.706 +27280,2025-03-10T10:03:45.863697-07:00,0.0,10.728701,10728.701 +27281,2025-03-10T10:03:56.585196-07:00,0.0,10.721499,10721.499 +27282,2025-03-10T10:04:07.311069-07:00,0.0,10.725873,10725.873 +27283,2025-03-10T10:04:18.034997-07:00,0.0,10.723928,10723.928 +27284,2025-03-10T10:04:28.760399-07:00,0.0,10.725402,10725.402 +27285,2025-03-10T10:04:39.488610-07:00,0.0,10.728211,10728.211 +27286,2025-03-10T10:04:50.211996-07:00,0.0,10.723386,10723.386 +27287,2025-03-10T10:05:00.930090-07:00,0.0,10.718094,10718.094 +27288,2025-03-10T10:05:11.654284-07:00,0.0,10.724194,10724.194 +27289,2025-03-10T10:05:22.381169-07:00,0.0,10.726885,10726.885 +27290,2025-03-10T10:05:33.109992-07:00,0.0,10.728823,10728.823 +27291,2025-03-10T10:05:35.780569-07:00,0.0,2.670577,2670.577 +27292,2025-03-10T10:05:43.833226-07:00,0.0,8.052657,8052.657 +27293,2025-03-10T10:05:54.558996-07:00,0.0,10.72577,10725.77 +27294,2025-03-10T10:06:05.283231-07:00,0.0,10.724235,10724.235 +27295,2025-03-10T10:06:16.001057-07:00,0.0,10.717826,10717.826 +27296,2025-03-10T10:06:26.726995-07:00,0.0,10.725938,10725.938 +27297,2025-03-10T10:06:37.450192-07:00,0.0,10.723197,10723.197 +27298,2025-03-10T10:06:48.175202-07:00,0.0,10.72501,10725.01 +27299,2025-03-10T10:06:58.911210-07:00,0.0,10.736008,10736.008 +27300,2025-03-10T10:07:09.622989-07:00,0.0,10.711779,10711.779 +27301,2025-03-10T10:07:20.355045-07:00,0.0,10.732056,10732.056 +27302,2025-03-10T10:07:31.078289-07:00,0.0,10.723244,10723.244 +27303,2025-03-10T10:07:41.795801-07:00,0.0,10.717512,10717.512 +27304,2025-03-10T10:07:52.518059-07:00,0.0,10.722258,10722.258 +27305,2025-03-10T10:08:03.242072-07:00,0.0,10.724013,10724.013 +27306,2025-03-10T10:08:13.972473-07:00,0.0,10.730401,10730.401 +27307,2025-03-10T10:08:24.699995-07:00,0.0,10.727522,10727.522 +27308,2025-03-10T10:08:35.421489-07:00,0.0,10.721494,10721.494 +27309,2025-03-10T10:08:46.141072-07:00,0.0,10.719583,10719.583 +27310,2025-03-10T10:08:56.870191-07:00,0.0,10.729119,10729.119 +27311,2025-03-10T10:09:07.587995-07:00,0.0,10.717804,10717.804 +27312,2025-03-10T10:09:18.321009-07:00,0.0,10.733014,10733.014 +27313,2025-03-10T10:09:29.042198-07:00,0.0,10.721189,10721.189 +27314,2025-03-10T10:09:39.769022-07:00,0.0,10.726824,10726.824 +27315,2025-03-10T10:09:50.488059-07:00,0.0,10.719037,10719.037 +27316,2025-03-10T10:10:01.211533-07:00,0.0,10.723474,10723.474 +27317,2025-03-10T10:10:11.937202-07:00,0.0,10.725669,10725.669 +27318,2025-03-10T10:10:22.662022-07:00,0.0,10.72482,10724.82 +27319,2025-03-10T10:10:33.383016-07:00,0.0,10.720994,10720.994 +27320,2025-03-10T10:10:44.107089-07:00,0.0,10.724073,10724.073 +27321,2025-03-10T10:10:54.825427-07:00,0.0,10.718338,10718.338 +27322,2025-03-10T10:11:05.548995-07:00,0.0,10.723568,10723.568 +27323,2025-03-10T10:11:16.276187-07:00,0.0,10.727192,10727.192 +27324,2025-03-10T10:11:27.010198-07:00,0.0,10.734011,10734.011 +27325,2025-03-10T10:11:37.731177-07:00,0.0,10.720979,10720.979 +27326,2025-03-10T10:11:48.449097-07:00,0.0,10.71792,10717.92 +27327,2025-03-10T10:11:59.176996-07:00,0.0,10.727899,10727.899 +27328,2025-03-10T10:12:09.903286-07:00,0.0,10.72629,10726.29 +27329,2025-03-10T10:12:20.630282-07:00,0.0,10.726996,10726.996 +27330,2025-03-10T10:12:31.358201-07:00,0.0,10.727919,10727.919 +27331,2025-03-10T10:12:42.088005-07:00,0.0,10.729804,10729.804 +27332,2025-03-10T10:12:52.814143-07:00,0.0,10.726138,10726.138 +27333,2025-03-10T10:13:03.536993-07:00,0.0,10.72285,10722.85 +27334,2025-03-10T10:13:14.254305-07:00,0.0,10.717312,10717.312 +27335,2025-03-10T10:13:24.982993-07:00,0.0,10.728688,10728.688 +27336,2025-03-10T10:13:35.713997-07:00,0.0,10.731004,10731.004 +27337,2025-03-10T10:13:46.440384-07:00,0.0,10.726387,10726.387 +27338,2025-03-10T10:13:57.163085-07:00,0.0,10.722701,10722.701 +27339,2025-03-10T10:14:07.888000-07:00,0.0,10.724915,10724.915 +27340,2025-03-10T10:14:18.613996-07:00,0.0,10.725996,10725.996 +27341,2025-03-10T10:14:29.344995-07:00,0.0,10.730999,10730.999 +27342,2025-03-10T10:14:40.065105-07:00,0.0,10.72011,10720.11 +27343,2025-03-10T10:14:50.785998-07:00,0.0,10.720893,10720.893 +27344,2025-03-10T10:15:01.513371-07:00,0.0,10.727373,10727.373 +27345,2025-03-10T10:15:12.228995-07:00,0.0,10.715624,10715.624 +27346,2025-03-10T10:15:22.949030-07:00,0.0,10.720035,10720.035 +27347,2025-03-10T10:15:33.675001-07:00,0.0,10.725971,10725.971 +27348,2025-03-10T10:15:44.398459-07:00,0.0,10.723458,10723.458 +27349,2025-03-10T10:15:55.114996-07:00,0.0,10.716537,10716.537 +27350,2025-03-10T10:16:05.838058-07:00,0.0,10.723062,10723.062 +27351,2025-03-10T10:16:16.566998-07:00,0.0,10.72894,10728.94 +27352,2025-03-10T10:16:27.287395-07:00,0.0,10.720397,10720.397 +27353,2025-03-10T10:16:38.015154-07:00,0.0,10.727759,10727.759 +27354,2025-03-10T10:16:48.737420-07:00,0.0,10.722266,10722.266 +27355,2025-03-10T10:16:59.456174-07:00,0.0,10.718754,10718.754 +27356,2025-03-10T10:17:10.183255-07:00,0.0,10.727081,10727.081 +27357,2025-03-10T10:17:20.899005-07:00,0.0,10.71575,10715.75 +27358,2025-03-10T10:17:31.627025-07:00,0.0,10.72802,10728.02 +27359,2025-03-10T10:17:42.351248-07:00,0.0,10.724223,10724.223 +27360,2025-03-10T10:17:53.076196-07:00,0.0,10.724948,10724.948 +27361,2025-03-10T10:18:03.793062-07:00,0.0,10.716866,10716.866 +27362,2025-03-10T10:18:14.520000-07:00,0.0,10.726938,10726.938 +27363,2025-03-10T10:18:25.240444-07:00,0.0,10.720444,10720.444 +27364,2025-03-10T10:18:35.969995-07:00,0.0,10.729551,10729.551 +27365,2025-03-10T10:18:46.695240-07:00,0.0,10.725245,10725.245 +27366,2025-03-10T10:18:57.427995-07:00,0.0,10.732755,10732.755 +27367,2025-03-10T10:19:08.145295-07:00,0.0,10.7173,10717.3 +27368,2025-03-10T10:19:18.877997-07:00,0.0,10.732702,10732.702 +27369,2025-03-10T10:19:29.593054-07:00,0.0,10.715057,10715.057 +27370,2025-03-10T10:19:40.325992-07:00,0.0,10.732938,10732.938 +27371,2025-03-10T10:19:51.046079-07:00,0.0,10.720087,10720.087 +27372,2025-03-10T10:20:01.767757-07:00,0.0,10.721678,10721.678 +27373,2025-03-10T10:20:12.491992-07:00,0.0,10.724235,10724.235 +27374,2025-03-10T10:20:23.217572-07:00,0.0,10.72558,10725.58 +27375,2025-03-10T10:20:33.941995-07:00,0.0,10.724423,10724.423 +27376,2025-03-10T10:20:44.669374-07:00,0.0,10.727379,10727.379 +27377,2025-03-10T10:20:55.389994-07:00,0.0,10.72062,10720.62 +27378,2025-03-10T10:21:05.037156-07:00,0.0,9.647162,9647.162 +27379,2025-03-10T10:21:06.112205-07:00,0.0,1.075049,1075.049 +27380,2025-03-10T10:21:16.828997-07:00,0.0,10.716792,10716.792 +27381,2025-03-10T10:21:27.553431-07:00,0.0,10.724434,10724.434 +27382,2025-03-10T10:21:38.279994-07:00,0.0,10.726563,10726.563 +27383,2025-03-10T10:21:48.998177-07:00,0.0,10.718183,10718.183 +27384,2025-03-10T10:21:59.722997-07:00,0.0,10.72482,10724.82 +27385,2025-03-10T10:22:10.450098-07:00,0.0,10.727101,10727.101 +27386,2025-03-10T10:22:21.162188-07:00,0.0,10.71209,10712.09 +27387,2025-03-10T10:22:31.891158-07:00,0.0,10.72897,10728.97 +27388,2025-03-10T10:22:42.612049-07:00,0.0,10.720891,10720.891 +27389,2025-03-10T10:22:53.332367-07:00,0.0,10.720318,10720.318 +27390,2025-03-10T10:23:04.059026-07:00,0.0,10.726659,10726.659 +27391,2025-03-10T10:23:14.780984-07:00,0.0,10.721958,10721.958 +27392,2025-03-10T10:23:25.495996-07:00,0.0,10.715012,10715.012 +27393,2025-03-10T10:23:36.226994-07:00,0.0,10.730998,10730.998 +27394,2025-03-10T10:23:46.948024-07:00,0.0,10.72103,10721.03 +27395,2025-03-10T10:23:57.672178-07:00,0.0,10.724154,10724.154 +27396,2025-03-10T10:24:08.394200-07:00,0.0,10.722022,10722.022 +27397,2025-03-10T10:24:19.113046-07:00,0.0,10.718846,10718.846 +27398,2025-03-10T10:24:29.839579-07:00,0.0,10.726533,10726.533 +27399,2025-03-10T10:24:40.559179-07:00,0.0,10.7196,10719.6 +27400,2025-03-10T10:24:51.282364-07:00,0.0,10.723185,10723.185 +27401,2025-03-10T10:25:02.011994-07:00,0.0,10.72963,10729.63 +27402,2025-03-10T10:25:12.729017-07:00,0.0,10.717023,10717.023 +27403,2025-03-10T10:25:23.456203-07:00,0.0,10.727186,10727.186 +27404,2025-03-10T10:25:34.175549-07:00,0.0,10.719346,10719.346 +27405,2025-03-10T10:25:44.899022-07:00,0.0,10.723473,10723.473 +27406,2025-03-10T10:25:55.620534-07:00,0.0,10.721512,10721.512 +27407,2025-03-10T10:26:06.349287-07:00,0.0,10.728753,10728.753 +27408,2025-03-10T10:26:17.070178-07:00,0.0,10.720891,10720.891 +27409,2025-03-10T10:26:27.788996-07:00,0.0,10.718818,10718.818 +27410,2025-03-10T10:26:38.521096-07:00,0.0,10.7321,10732.1 +27411,2025-03-10T10:26:49.248929-07:00,0.0,10.727833,10727.833 +27412,2025-03-10T10:26:59.968227-07:00,0.0,10.719298,10719.298 +27413,2025-03-10T10:27:10.694994-07:00,0.0,10.726767,10726.767 +27414,2025-03-10T10:27:21.419208-07:00,0.0,10.724214,10724.214 +27415,2025-03-10T10:27:32.144204-07:00,0.0,10.724996,10724.996 +27416,2025-03-10T10:27:42.867996-07:00,0.0,10.723792,10723.792 +27417,2025-03-10T10:27:53.591370-07:00,0.0,10.723374,10723.374 +27418,2025-03-10T10:28:04.307210-07:00,0.0,10.71584,10715.84 +27419,2025-03-10T10:28:15.032189-07:00,0.0,10.724979,10724.979 +27420,2025-03-10T10:28:25.751997-07:00,0.0,10.719808,10719.808 +27421,2025-03-10T10:28:36.479174-07:00,0.0,10.727177,10727.177 +27422,2025-03-10T10:28:47.203196-07:00,0.0,10.724022,10724.022 +27423,2025-03-10T10:28:57.934145-07:00,0.0,10.730949,10730.949 +27424,2025-03-10T10:29:08.650072-07:00,0.0,10.715927,10715.927 +27425,2025-03-10T10:29:19.380293-07:00,0.0,10.730221,10730.221 +27426,2025-03-10T10:29:30.101994-07:00,0.0,10.721701,10721.701 +27427,2025-03-10T10:29:40.826999-07:00,0.0,10.725005,10725.005 +27428,2025-03-10T10:29:51.554397-07:00,0.0,10.727398,10727.398 +27429,2025-03-10T10:30:02.276079-07:00,0.0,10.721682,10721.682 +27430,2025-03-10T10:30:13.003594-07:00,0.0,10.727515,10727.515 +27431,2025-03-10T10:30:23.727000-07:00,0.0,10.723406,10723.406 +27432,2025-03-10T10:30:34.455995-07:00,0.0,10.728995,10728.995 +27433,2025-03-10T10:30:45.179023-07:00,0.0,10.723028,10723.028 +27434,2025-03-10T10:30:55.898298-07:00,0.0,10.719275,10719.275 +27435,2025-03-10T10:31:06.618997-07:00,0.0,10.720699,10720.699 +27436,2025-03-10T10:31:17.337259-07:00,0.0,10.718262,10718.262 +27437,2025-03-10T10:31:28.064994-07:00,0.0,10.727735,10727.735 +27438,2025-03-10T10:31:38.780242-07:00,0.0,10.715248,10715.248 +27439,2025-03-10T10:31:49.500997-07:00,0.0,10.720755,10720.755 +27440,2025-03-10T10:32:00.232182-07:00,0.0,10.731185,10731.185 +27441,2025-03-10T10:32:10.945141-07:00,0.0,10.712959,10712.959 +27442,2025-03-10T10:32:21.675257-07:00,0.0,10.730116,10730.116 +27443,2025-03-10T10:32:32.394151-07:00,0.0,10.718894,10718.894 +27444,2025-03-10T10:32:43.116430-07:00,0.0,10.722279,10722.279 +27445,2025-03-10T10:32:53.842097-07:00,0.0,10.725667,10725.667 +27446,2025-03-10T10:33:04.564997-07:00,0.0,10.7229,10722.9 +27447,2025-03-10T10:33:15.288072-07:00,0.0,10.723075,10723.075 +27448,2025-03-10T10:33:25.999283-07:00,0.0,10.711211,10711.211 +27449,2025-03-10T10:33:36.720994-07:00,0.0,10.721711,10721.711 +27450,2025-03-10T10:33:47.442029-07:00,0.0,10.721035,10721.035 +27451,2025-03-10T10:33:58.167996-07:00,0.0,10.725967,10725.967 +27452,2025-03-10T10:34:08.889199-07:00,0.0,10.721203,10721.203 +27453,2025-03-10T10:34:19.611040-07:00,0.0,10.721841,10721.841 +27454,2025-03-10T10:34:30.326196-07:00,0.0,10.715156,10715.156 +27455,2025-03-10T10:34:41.044996-07:00,0.0,10.7188,10718.8 +27456,2025-03-10T10:34:51.774008-07:00,0.0,10.729012,10729.012 +27457,2025-03-10T10:35:13.214628-07:00,0.0,21.44062,21440.62 +27458,2025-03-10T10:35:23.932026-07:00,0.0,10.717398,10717.398 +27459,2025-03-10T10:35:34.655178-07:00,0.0,10.723152,10723.152 +27460,2025-03-10T10:35:45.373203-07:00,0.0,10.718025,10718.025 +27461,2025-03-10T10:35:56.096176-07:00,0.0,10.722973,10722.973 +27462,2025-03-10T10:36:06.817104-07:00,0.0,10.720928,10720.928 +27463,2025-03-10T10:36:17.538165-07:00,0.0,10.721061,10721.061 +27464,2025-03-10T10:36:28.256999-07:00,0.0,10.718834,10718.834 +27465,2025-03-10T10:36:38.982166-07:00,0.0,10.725167,10725.167 +27466,2025-03-10T10:36:49.699995-07:00,0.0,10.717829,10717.829 +27467,2025-03-10T10:37:00.417032-07:00,0.0,10.717037,10717.037 +27468,2025-03-10T10:37:11.145205-07:00,0.0,10.728173,10728.173 +27469,2025-03-10T10:37:21.859192-07:00,0.0,10.713987,10713.987 +27470,2025-03-10T10:37:32.583998-07:00,0.0,10.724806,10724.806 +27471,2025-03-10T10:37:43.306017-07:00,0.0,10.722019,10722.019 +27472,2025-03-10T10:37:54.035331-07:00,0.0,10.729314,10729.314 +27473,2025-03-10T10:38:04.755534-07:00,0.0,10.720203,10720.203 +27474,2025-03-10T10:38:15.479996-07:00,0.0,10.724462,10724.462 +27475,2025-03-10T10:38:26.193018-07:00,0.0,10.713022,10713.022 +27476,2025-03-10T10:38:36.921466-07:00,0.0,10.728448,10728.448 +27477,2025-03-10T10:38:47.649259-07:00,0.0,10.727793,10727.793 +27478,2025-03-10T10:38:58.369031-07:00,0.0,10.719772,10719.772 +27479,2025-03-10T10:39:09.089184-07:00,0.0,10.720153,10720.153 +27480,2025-03-10T10:39:19.807212-07:00,0.0,10.718028,10718.028 +27481,2025-03-10T10:39:30.537166-07:00,0.0,10.729954,10729.954 +27482,2025-03-10T10:39:41.252998-07:00,0.0,10.715832,10715.832 +27483,2025-03-10T10:39:51.978204-07:00,0.0,10.725206,10725.206 +27484,2025-03-10T10:40:02.691199-07:00,0.0,10.712995,10712.995 +27485,2025-03-10T10:40:13.422171-07:00,0.0,10.730972,10730.972 +27486,2025-03-10T10:40:24.143997-07:00,0.0,10.721826,10721.826 +27487,2025-03-10T10:40:34.859532-07:00,0.0,10.715535,10715.535 +27488,2025-03-10T10:40:45.577533-07:00,0.0,10.718001,10718.001 +27489,2025-03-10T10:40:56.297992-07:00,0.0,10.720459,10720.459 +27490,2025-03-10T10:41:07.027117-07:00,0.0,10.729125,10729.125 +27491,2025-03-10T10:41:17.744017-07:00,0.0,10.7169,10716.9 +27492,2025-03-10T10:41:28.469210-07:00,0.0,10.725193,10725.193 +27493,2025-03-10T10:41:39.188150-07:00,0.0,10.71894,10718.94 +27494,2025-03-10T10:41:49.905998-07:00,0.0,10.717848,10717.848 +27495,2025-03-10T10:42:00.628023-07:00,0.0,10.722025,10722.025 +27496,2025-03-10T10:42:11.342581-07:00,0.0,10.714558,10714.558 +27497,2025-03-10T10:42:22.066207-07:00,0.0,10.723626,10723.626 +27498,2025-03-10T10:42:32.784155-07:00,0.0,10.717948,10717.948 +27499,2025-03-10T10:42:43.504156-07:00,0.0,10.720001,10720.001 +27500,2025-03-10T10:42:54.229474-07:00,0.0,10.725318,10725.318 +27501,2025-03-10T10:43:04.939997-07:00,0.0,10.710523,10710.523 +27502,2025-03-10T10:43:15.666395-07:00,0.0,10.726398,10726.398 +27503,2025-03-10T10:43:26.390993-07:00,0.0,10.724598,10724.598 +27504,2025-03-10T10:43:37.105440-07:00,0.0,10.714447,10714.447 +27505,2025-03-10T10:43:47.830996-07:00,0.0,10.725556,10725.556 +27506,2025-03-10T10:43:58.552391-07:00,0.0,10.721395,10721.395 +27507,2025-03-10T10:44:09.275117-07:00,0.0,10.722726,10722.726 +27508,2025-03-10T10:44:19.987994-07:00,0.0,10.712877,10712.877 +27509,2025-03-10T10:44:30.717025-07:00,0.0,10.729031,10729.031 +27510,2025-03-10T10:44:41.438188-07:00,0.0,10.721163,10721.163 +27511,2025-03-10T10:44:52.153294-07:00,0.0,10.715106,10715.106 +27512,2025-03-10T10:45:02.878433-07:00,0.0,10.725139,10725.139 +27513,2025-03-10T10:45:13.595996-07:00,0.0,10.717563,10717.563 +27514,2025-03-10T10:45:24.324775-07:00,0.0,10.728779,10728.779 +27515,2025-03-10T10:45:35.049204-07:00,0.0,10.724429,10724.429 +27516,2025-03-10T10:45:45.773173-07:00,0.0,10.723969,10723.969 +27517,2025-03-10T10:45:56.501996-07:00,0.0,10.728823,10728.823 +27518,2025-03-10T10:46:07.227196-07:00,0.0,10.7252,10725.2 +27519,2025-03-10T10:46:17.950992-07:00,0.0,10.723796,10723.796 +27520,2025-03-10T10:46:28.672173-07:00,0.0,10.721181,10721.181 +27521,2025-03-10T10:46:39.390994-07:00,0.0,10.718821,10718.821 +27522,2025-03-10T10:46:50.112189-07:00,0.0,10.721195,10721.195 +27523,2025-03-10T10:47:00.842018-07:00,0.0,10.729829,10729.829 +27524,2025-03-10T10:47:11.554214-07:00,0.0,10.712196,10712.196 +27525,2025-03-10T10:47:22.281142-07:00,0.0,10.726928,10726.928 +27526,2025-03-10T10:47:32.995150-07:00,0.0,10.714008,10714.008 +27527,2025-03-10T10:47:43.726229-07:00,0.0,10.731079,10731.079 +27528,2025-03-10T10:47:54.438743-07:00,0.0,10.712514,10712.514 +27529,2025-03-10T10:48:05.165063-07:00,0.0,10.72632,10726.32 +27530,2025-03-10T10:48:15.884997-07:00,0.0,10.719934,10719.934 +27531,2025-03-10T10:48:26.613561-07:00,0.0,10.728564,10728.564 +27532,2025-03-10T10:48:37.331173-07:00,0.0,10.717612,10717.612 +27533,2025-03-10T10:48:48.050061-07:00,0.0,10.718888,10718.888 +27534,2025-03-10T10:48:58.774079-07:00,0.0,10.724018,10724.018 +27535,2025-03-10T10:49:09.499999-07:00,0.0,10.72592,10725.92 +27536,2025-03-10T10:49:20.219180-07:00,0.0,10.719181,10719.181 +27537,2025-03-10T10:49:30.942997-07:00,0.0,10.723817,10723.817 +27538,2025-03-10T10:49:41.664353-07:00,0.0,10.721356,10721.356 +27539,2025-03-10T10:49:52.391019-07:00,0.0,10.726666,10726.666 +27540,2025-03-10T10:50:03.111213-07:00,0.0,10.720194,10720.194 +27541,2025-03-10T10:50:13.837781-07:00,0.0,10.726568,10726.568 +27542,2025-03-10T10:50:24.550295-07:00,0.0,10.712514,10712.514 +27543,2025-03-10T10:50:35.274995-07:00,0.0,10.7247,10724.7 +27544,2025-03-10T10:50:45.991167-07:00,0.0,10.716172,10716.172 +27545,2025-03-10T10:50:56.719006-07:00,0.0,10.727839,10727.839 +27546,2025-03-10T10:51:07.437205-07:00,0.0,10.718199,10718.199 +27547,2025-03-10T10:51:18.167227-07:00,0.0,10.730022,10730.022 +27548,2025-03-10T10:51:28.883341-07:00,0.0,10.716114,10716.114 +27549,2025-03-10T10:51:39.604019-07:00,0.0,10.720678,10720.678 +27550,2025-03-10T10:51:50.332991-07:00,0.0,10.728972,10728.972 +27551,2025-03-10T10:52:01.052017-07:00,0.0,10.719026,10719.026 +27552,2025-03-10T10:52:11.770202-07:00,0.0,10.718185,10718.185 +27553,2025-03-10T10:52:22.498165-07:00,0.0,10.727963,10727.963 +27554,2025-03-10T10:52:33.216299-07:00,0.0,10.718134,10718.134 +27555,2025-03-10T10:52:43.947179-07:00,0.0,10.73088,10730.88 +27556,2025-03-10T10:52:54.672997-07:00,0.0,10.725818,10725.818 +27557,2025-03-10T10:53:05.503166-07:00,0.0,10.830169,10830.169 +27558,2025-03-10T10:53:16.231633-07:00,0.0,10.728467,10728.467 +27559,2025-03-10T10:53:26.956646-07:00,0.0,10.725013,10725.013 +27560,2025-03-10T10:53:37.689786-07:00,0.0,10.73314,10733.14 +27561,2025-03-10T10:53:48.412576-07:00,0.0,10.72279,10722.79 +27562,2025-03-10T10:53:59.133540-07:00,0.0,10.720964,10720.964 +27563,2025-03-10T10:54:09.859546-07:00,0.0,10.726006,10726.006 +27564,2025-03-10T10:54:20.581933-07:00,0.0,10.722387,10722.387 +27565,2025-03-10T10:54:31.300562-07:00,0.0,10.718629,10718.629 +27566,2025-03-10T10:54:42.023621-07:00,0.0,10.723059,10723.059 +27567,2025-03-10T10:54:52.753747-07:00,0.0,10.730126,10730.126 +27568,2025-03-10T10:55:03.467571-07:00,0.0,10.713824,10713.824 +27569,2025-03-10T10:55:14.192866-07:00,0.0,10.725295,10725.295 +27570,2025-03-10T10:55:24.916744-07:00,0.0,10.723878,10723.878 +27571,2025-03-10T10:55:35.639543-07:00,0.0,10.722799,10722.799 +27572,2025-03-10T10:55:46.363709-07:00,0.0,10.724166,10724.166 +27573,2025-03-10T10:55:57.086543-07:00,0.0,10.722834,10722.834 +27574,2025-03-10T10:56:07.810742-07:00,0.0,10.724199,10724.199 +27575,2025-03-10T10:56:18.530542-07:00,0.0,10.7198,10719.8 +27576,2025-03-10T10:56:29.259542-07:00,0.0,10.729,10729.0 +27577,2025-03-10T10:56:39.975542-07:00,0.0,10.716,10716.0 +27578,2025-03-10T10:56:50.696048-07:00,0.0,10.720506,10720.506 +27579,2025-03-10T10:57:01.426744-07:00,0.0,10.730696,10730.696 +27580,2025-03-10T10:57:12.142543-07:00,0.0,10.715799,10715.799 +27581,2025-03-10T10:57:22.865704-07:00,0.0,10.723161,10723.161 +27582,2025-03-10T10:57:33.585721-07:00,0.0,10.720017,10720.017 +27583,2025-03-10T10:57:44.314747-07:00,0.0,10.729026,10729.026 +27584,2025-03-10T10:57:55.039540-07:00,0.0,10.724793,10724.793 +27585,2025-03-10T10:58:05.766714-07:00,0.0,10.727174,10727.174 +27586,2025-03-10T10:58:16.485578-07:00,0.0,10.718864,10718.864 +27587,2025-03-10T10:58:27.212658-07:00,0.0,10.72708,10727.08 +27588,2025-03-10T10:58:37.937536-07:00,0.0,10.724878,10724.878 +27589,2025-03-10T10:58:48.668758-07:00,0.0,10.731222,10731.222 +27590,2025-03-10T10:58:59.395571-07:00,0.0,10.726813,10726.813 +27591,2025-03-10T10:59:10.118544-07:00,0.0,10.722973,10722.973 +27592,2025-03-10T10:59:20.835649-07:00,0.0,10.717105,10717.105 +27593,2025-03-10T10:59:31.564959-07:00,0.0,10.72931,10729.31 +27594,2025-03-10T10:59:42.284700-07:00,0.0,10.719741,10719.741 +27595,2025-03-10T10:59:53.010664-07:00,0.0,10.725964,10725.964 +27596,2025-03-10T11:00:03.741742-07:00,0.0,10.731078,10731.078 +27597,2025-03-10T11:00:14.460541-07:00,0.0,10.718799,10718.799 +27598,2025-03-10T11:00:25.187543-07:00,0.0,10.727002,10727.002 +27599,2025-03-10T11:00:35.905846-07:00,0.0,10.718303,10718.303 +27600,2025-03-10T11:00:46.624723-07:00,0.0,10.718877,10718.877 +27601,2025-03-10T11:00:57.353595-07:00,0.0,10.728872,10728.872 +27602,2025-03-10T11:01:08.077744-07:00,0.0,10.724149,10724.149 +27603,2025-03-10T11:01:18.801745-07:00,0.0,10.724001,10724.001 +27604,2025-03-10T11:01:29.522880-07:00,0.0,10.721135,10721.135 +27605,2025-03-10T11:01:40.238741-07:00,0.0,10.715861,10715.861 +27606,2025-03-10T11:01:50.960544-07:00,0.0,10.721803,10721.803 +27607,2025-03-10T11:02:01.691782-07:00,0.0,10.731238,10731.238 +27608,2025-03-10T11:02:12.413541-07:00,0.0,10.721759,10721.759 +27609,2025-03-10T11:02:23.128543-07:00,0.0,10.715002,10715.002 +27610,2025-03-10T11:02:33.857752-07:00,0.0,10.729209,10729.209 +27611,2025-03-10T11:02:44.581800-07:00,0.0,10.724048,10724.048 +27612,2025-03-10T11:02:55.304569-07:00,0.0,10.722769,10722.769 +27613,2025-03-10T11:03:06.020701-07:00,0.0,10.716132,10716.132 +27614,2025-03-10T11:03:16.751540-07:00,0.0,10.730839,10730.839 +27615,2025-03-10T11:03:27.471885-07:00,0.0,10.720345,10720.345 +27616,2025-03-10T11:03:38.189574-07:00,0.0,10.717689,10717.689 +27617,2025-03-10T11:03:48.920932-07:00,0.0,10.731358,10731.358 +27618,2025-03-10T11:03:59.635541-07:00,0.0,10.714609,10714.609 +27619,2025-03-10T11:04:10.358885-07:00,0.0,10.723344,10723.344 +27620,2025-03-10T11:04:21.089541-07:00,0.0,10.730656,10730.656 +27621,2025-03-10T11:04:31.803271-07:00,0.0,10.71373,10713.73 +27622,2025-03-10T11:04:42.529075-07:00,0.0,10.725804,10725.804 +27623,2025-03-10T11:04:53.256569-07:00,0.0,10.727494,10727.494 +27624,2025-03-10T11:05:03.984771-07:00,0.0,10.728202,10728.202 +27625,2025-03-10T11:05:14.705717-07:00,0.0,10.720946,10720.946 +27626,2025-03-10T11:05:25.430740-07:00,0.0,10.725023,10725.023 +27627,2025-03-10T11:05:36.151754-07:00,0.0,10.721014,10721.014 +27628,2025-03-10T11:05:46.876640-07:00,0.0,10.724886,10724.886 +27629,2025-03-10T11:05:57.597604-07:00,0.0,10.720964,10720.964 +27630,2025-03-10T11:06:08.324416-07:00,0.0,10.726812,10726.812 +27631,2025-03-10T11:06:19.041755-07:00,0.0,10.717339,10717.339 +27632,2025-03-10T11:06:29.770752-07:00,0.0,10.728997,10728.997 +27633,2025-03-10T11:06:40.494732-07:00,0.0,10.72398,10723.98 +27634,2025-03-10T11:06:51.216712-07:00,0.0,10.72198,10721.98 +27635,2025-03-10T11:07:01.937540-07:00,0.0,10.720828,10720.828 +27636,2025-03-10T11:07:12.665582-07:00,0.0,10.728042,10728.042 +27637,2025-03-10T11:07:23.387535-07:00,0.0,10.721953,10721.953 +27638,2025-03-10T11:07:34.109762-07:00,0.0,10.722227,10722.227 +27639,2025-03-10T11:07:44.828748-07:00,0.0,10.718986,10718.986 +27640,2025-03-10T11:07:55.550731-07:00,0.0,10.721983,10721.983 +27641,2025-03-10T11:08:06.272720-07:00,0.0,10.721989,10721.989 +27642,2025-03-10T11:08:17.003803-07:00,0.0,10.731083,10731.083 +27643,2025-03-10T11:08:27.718738-07:00,0.0,10.714935,10714.935 +27644,2025-03-10T11:08:38.449543-07:00,0.0,10.730805,10730.805 +27645,2025-03-10T11:08:49.169680-07:00,0.0,10.720137,10720.137 +27646,2025-03-10T11:08:59.897271-07:00,0.0,10.727591,10727.591 +27647,2025-03-10T11:09:10.613537-07:00,0.0,10.716266,10716.266 +27648,2025-03-10T11:09:21.333548-07:00,0.0,10.720011,10720.011 +27649,2025-03-10T11:09:32.056617-07:00,0.0,10.723069,10723.069 +27650,2025-03-10T11:09:42.786561-07:00,0.0,10.729944,10729.944 +27651,2025-03-10T11:09:53.507628-07:00,0.0,10.721067,10721.067 +27652,2025-03-10T11:10:04.227636-07:00,0.0,10.720008,10720.008 +27653,2025-03-10T11:10:14.952718-07:00,0.0,10.725082,10725.082 +27654,2025-03-10T11:10:25.674541-07:00,0.0,10.721823,10721.823 +27655,2025-03-10T11:10:36.396635-07:00,0.0,10.722094,10722.094 +27656,2025-03-10T11:10:47.114610-07:00,0.0,10.717975,10717.975 +27657,2025-03-10T11:10:57.832567-07:00,0.0,10.717957,10717.957 +27658,2025-03-10T11:11:08.562599-07:00,0.0,10.730032,10730.032 +27659,2025-03-10T11:11:19.287957-07:00,0.0,10.725358,10725.358 +27660,2025-03-10T11:11:30.009540-07:00,0.0,10.721583,10721.583 +27661,2025-03-10T11:11:40.734137-07:00,0.0,10.724597,10724.597 +27662,2025-03-10T11:11:51.453547-07:00,0.0,10.71941,10719.41 +27663,2025-03-10T11:12:02.176722-07:00,0.0,10.723175,10723.175 +27664,2025-03-10T11:12:12.901612-07:00,0.0,10.72489,10724.89 +27665,2025-03-10T11:12:23.627543-07:00,0.0,10.725931,10725.931 +27666,2025-03-10T11:12:34.345543-07:00,0.0,10.718,10718.0 +27667,2025-03-10T11:12:45.069724-07:00,0.0,10.724181,10724.181 +27668,2025-03-10T11:12:55.791361-07:00,0.0,10.721637,10721.637 +27669,2025-03-10T11:13:06.511612-07:00,0.0,10.720251,10720.251 +27670,2025-03-10T11:13:17.232585-07:00,0.0,10.720973,10720.973 +27671,2025-03-10T11:13:27.962923-07:00,0.0,10.730338,10730.338 +27672,2025-03-10T11:13:38.687566-07:00,0.0,10.724643,10724.643 +27673,2025-03-10T11:13:49.406686-07:00,0.0,10.71912,10719.12 +27674,2025-03-10T11:14:00.135286-07:00,0.0,10.7286,10728.6 +27675,2025-03-10T11:14:10.857755-07:00,0.0,10.722469,10722.469 +27676,2025-03-10T11:14:21.581140-07:00,0.0,10.723385,10723.385 +27677,2025-03-10T11:14:32.292535-07:00,0.0,10.711395,10711.395 +27678,2025-03-10T11:14:43.017129-07:00,0.0,10.724594,10724.594 +27679,2025-03-10T11:14:53.743977-07:00,0.0,10.726848,10726.848 +27680,2025-03-10T11:15:04.468938-07:00,0.0,10.724961,10724.961 +27681,2025-03-10T11:15:15.181571-07:00,0.0,10.712633,10712.633 +27682,2025-03-10T11:15:25.910337-07:00,0.0,10.728766,10728.766 +27683,2025-03-10T11:15:36.631547-07:00,0.0,10.72121,10721.21 +27684,2025-03-10T11:15:47.348543-07:00,0.0,10.716996,10716.996 +27685,2025-03-10T11:15:58.076597-07:00,0.0,10.728054,10728.054 +27686,2025-03-10T11:16:08.797916-07:00,0.0,10.721319,10721.319 +27687,2025-03-10T11:16:19.526760-07:00,0.0,10.728844,10728.844 +27688,2025-03-10T11:16:30.250475-07:00,0.0,10.723715,10723.715 +27689,2025-03-10T11:16:40.973547-07:00,0.0,10.723072,10723.072 +27690,2025-03-10T11:16:51.688735-07:00,0.0,10.715188,10715.188 +27691,2025-03-10T11:17:02.412544-07:00,0.0,10.723809,10723.809 +27692,2025-03-10T11:17:13.135705-07:00,0.0,10.723161,10723.161 +27693,2025-03-10T11:17:23.864540-07:00,0.0,10.728835,10728.835 +27694,2025-03-10T11:17:34.578760-07:00,0.0,10.71422,10714.22 +27695,2025-03-10T11:17:45.301541-07:00,0.0,10.722781,10722.781 +27696,2025-03-10T11:17:56.030730-07:00,0.0,10.729189,10729.189 +27697,2025-03-10T11:18:06.760671-07:00,0.0,10.729941,10729.941 +27698,2025-03-10T11:18:17.476577-07:00,0.0,10.715906,10715.906 +27699,2025-03-10T11:18:28.207165-07:00,0.0,10.730588,10730.588 +27700,2025-03-10T11:18:38.925613-07:00,0.0,10.718448,10718.448 +27701,2025-03-10T11:18:49.650849-07:00,0.0,10.725236,10725.236 +27702,2025-03-10T11:19:00.373575-07:00,0.0,10.722726,10722.726 +27703,2025-03-10T11:19:11.097731-07:00,0.0,10.724156,10724.156 +27704,2025-03-10T11:19:21.818598-07:00,0.0,10.720867,10720.867 +27705,2025-03-10T11:19:32.538399-07:00,0.0,10.719801,10719.801 +27706,2025-03-10T11:19:43.254535-07:00,0.0,10.716136,10716.136 +27707,2025-03-10T11:19:53.976591-07:00,0.0,10.722056,10722.056 +27708,2025-03-10T11:20:04.701663-07:00,0.0,10.725072,10725.072 +27709,2025-03-10T11:20:15.423406-07:00,0.0,10.721743,10721.743 +27710,2025-03-10T11:20:26.144634-07:00,0.0,10.721228,10721.228 +27711,2025-03-10T11:20:36.861721-07:00,0.0,10.717087,10717.087 +27712,2025-03-10T11:20:47.591765-07:00,0.0,10.730044,10730.044 +27713,2025-03-10T11:20:58.307543-07:00,0.0,10.715778,10715.778 +27714,2025-03-10T11:21:09.032863-07:00,0.0,10.72532,10725.32 +27715,2025-03-10T11:21:19.759750-07:00,0.0,10.726887,10726.887 +27716,2025-03-10T11:21:30.480545-07:00,0.0,10.720795,10720.795 +27717,2025-03-10T11:21:41.206724-07:00,0.0,10.726179,10726.179 +27718,2025-03-10T11:21:51.923750-07:00,0.0,10.717026,10717.026 +27719,2025-03-10T11:22:02.639782-07:00,0.0,10.716032,10716.032 +27720,2025-03-10T11:22:13.367615-07:00,0.0,10.727833,10727.833 +27721,2025-03-10T11:22:24.093717-07:00,0.0,10.726102,10726.102 +27722,2025-03-10T11:22:34.806543-07:00,0.0,10.712826,10712.826 +27723,2025-03-10T11:22:45.532300-07:00,0.0,10.725757,10725.757 +27724,2025-03-10T11:22:56.254810-07:00,0.0,10.72251,10722.51 +27725,2025-03-10T11:23:06.984896-07:00,0.0,10.730086,10730.086 +27726,2025-03-10T11:23:17.703540-07:00,0.0,10.718644,10718.644 +27727,2025-03-10T11:23:28.429775-07:00,0.0,10.726235,10726.235 +27728,2025-03-10T11:23:39.143538-07:00,0.0,10.713763,10713.763 +27729,2025-03-10T11:23:49.870712-07:00,0.0,10.727174,10727.174 +27730,2025-03-10T11:24:00.583545-07:00,0.0,10.712833,10712.833 +27731,2025-03-10T11:24:11.313942-07:00,0.0,10.730397,10730.397 +27732,2025-03-10T11:24:22.035538-07:00,0.0,10.721596,10721.596 +27733,2025-03-10T11:24:32.750720-07:00,0.0,10.715182,10715.182 +27734,2025-03-10T11:24:43.470574-07:00,0.0,10.719854,10719.854 +27735,2025-03-10T11:24:54.192623-07:00,0.0,10.722049,10722.049 +27736,2025-03-10T11:25:04.911541-07:00,0.0,10.718918,10718.918 +27737,2025-03-10T11:25:15.636896-07:00,0.0,10.725355,10725.355 +27738,2025-03-10T11:25:26.359897-07:00,0.0,10.723001,10723.001 +27739,2025-03-10T11:25:37.084759-07:00,0.0,10.724862,10724.862 +27740,2025-03-10T11:25:47.809544-07:00,0.0,10.724785,10724.785 +27741,2025-03-10T11:25:58.530745-07:00,0.0,10.721201,10721.201 +27742,2025-03-10T11:26:09.252540-07:00,0.0,10.721795,10721.795 +27743,2025-03-10T11:26:19.971735-07:00,0.0,10.719195,10719.195 +27744,2025-03-10T11:26:30.693547-07:00,0.0,10.721812,10721.812 +27745,2025-03-10T11:26:41.411387-07:00,0.0,10.71784,10717.84 +27746,2025-03-10T11:26:52.133541-07:00,0.0,10.722154,10722.154 +27747,2025-03-10T11:27:02.847568-07:00,0.0,10.714027,10714.027 +27748,2025-03-10T11:27:13.577546-07:00,0.0,10.729978,10729.978 +27749,2025-03-10T11:27:24.299910-07:00,0.0,10.722364,10722.364 +27750,2025-03-10T11:27:35.021540-07:00,0.0,10.72163,10721.63 +27751,2025-03-10T11:27:45.737687-07:00,0.0,10.716147,10716.147 +27752,2025-03-10T11:27:56.461569-07:00,0.0,10.723882,10723.882 +27753,2025-03-10T11:28:07.176539-07:00,0.0,10.71497,10714.97 +27754,2025-03-10T11:28:17.899844-07:00,0.0,10.723305,10723.305 +27755,2025-03-10T11:28:28.622567-07:00,0.0,10.722723,10722.723 +27756,2025-03-10T11:28:39.336734-07:00,0.0,10.714167,10714.167 +27757,2025-03-10T11:28:50.066571-07:00,0.0,10.729837,10729.837 +27758,2025-03-10T11:29:00.788755-07:00,0.0,10.722184,10722.184 +27759,2025-03-10T11:29:11.510575-07:00,0.0,10.72182,10721.82 +27760,2025-03-10T11:29:22.235701-07:00,0.0,10.725126,10725.126 +27761,2025-03-10T11:29:32.956571-07:00,0.0,10.72087,10720.87 +27762,2025-03-10T11:29:43.671543-07:00,0.0,10.714972,10714.972 +27763,2025-03-10T11:29:54.397904-07:00,0.0,10.726361,10726.361 +27764,2025-03-10T11:30:05.118729-07:00,0.0,10.720825,10720.825 +27765,2025-03-10T11:30:15.832693-07:00,0.0,10.713964,10713.964 +27766,2025-03-10T11:30:26.556578-07:00,0.0,10.723885,10723.885 +27767,2025-03-10T11:30:37.279540-07:00,0.0,10.722962,10722.962 +27768,2025-03-10T11:30:47.999986-07:00,0.0,10.720446,10720.446 +27769,2025-03-10T11:30:58.717539-07:00,0.0,10.717553,10717.553 +27770,2025-03-10T11:31:09.446544-07:00,0.0,10.729005,10729.005 +27771,2025-03-10T11:31:20.157578-07:00,0.0,10.711034,10711.034 +27772,2025-03-10T11:31:30.886993-07:00,0.0,10.729415,10729.415 +27773,2025-03-10T11:31:41.609538-07:00,0.0,10.722545,10722.545 +27774,2025-03-10T11:31:52.324717-07:00,0.0,10.715179,10715.179 +27775,2025-03-10T11:32:03.046543-07:00,0.0,10.721826,10721.826 +27776,2025-03-10T11:32:13.773799-07:00,0.0,10.727256,10727.256 +27777,2025-03-10T11:32:24.487744-07:00,0.0,10.713945,10713.945 +27778,2025-03-10T11:32:35.207739-07:00,0.0,10.719995,10719.995 +27779,2025-03-10T11:32:45.933542-07:00,0.0,10.725803,10725.803 +27780,2025-03-10T11:32:56.653744-07:00,0.0,10.720202,10720.202 +27781,2025-03-10T11:33:07.373543-07:00,0.0,10.719799,10719.799 +27782,2025-03-10T11:33:18.095737-07:00,0.0,10.722194,10722.194 +27783,2025-03-10T11:33:28.813804-07:00,0.0,10.718067,10718.067 +27784,2025-03-10T11:33:39.531540-07:00,0.0,10.717736,10717.736 +27785,2025-03-10T11:33:50.256989-07:00,0.0,10.725449,10725.449 +27786,2025-03-10T11:34:00.976779-07:00,0.0,10.71979,10719.79 +27787,2025-03-10T11:34:11.691959-07:00,0.0,10.71518,10715.18 +27788,2025-03-10T11:34:22.406633-07:00,0.0,10.714674,10714.674 +27789,2025-03-10T11:34:33.133607-07:00,0.0,10.726974,10726.974 +27790,2025-03-10T11:34:43.853573-07:00,0.0,10.719966,10719.966 +27791,2025-03-10T11:34:54.573497-07:00,0.0,10.719924,10719.924 +27792,2025-03-10T11:35:05.286749-07:00,0.0,10.713252,10713.252 +27793,2025-03-10T11:35:16.007172-07:00,0.0,10.720423,10720.423 +27794,2025-03-10T11:35:26.721095-07:00,0.0,10.713923,10713.923 +27795,2025-03-10T11:35:37.442549-07:00,0.0,10.721454,10721.454 +27796,2025-03-10T11:35:48.160543-07:00,0.0,10.717994,10717.994 +27797,2025-03-10T11:35:56.255854-07:00,0.0,8.095311,8095.311 +27798,2025-03-10T11:35:58.881535-07:00,0.0,2.625681,2625.681 +27799,2025-03-10T11:36:09.597743-07:00,0.0,10.716208,10716.208 +27800,2025-03-10T11:36:20.315543-07:00,0.0,10.7178,10717.8 +27801,2025-03-10T11:36:31.039727-07:00,0.0,10.724184,10724.184 +27802,2025-03-10T11:36:41.755007-07:00,0.0,10.71528,10715.28 +27803,2025-03-10T11:36:52.472537-07:00,0.0,10.71753,10717.53 +27804,2025-03-10T11:37:03.200543-07:00,0.0,10.728006,10728.006 +27805,2025-03-10T11:37:13.915570-07:00,0.0,10.715027,10715.027 +27806,2025-03-10T11:37:35.354601-07:00,0.0,21.439031,21439.031 +27807,2025-03-10T11:37:46.080543-07:00,0.0,10.725942,10725.942 +27808,2025-03-10T11:37:56.801568-07:00,0.0,10.721025,10721.025 +27809,2025-03-10T11:38:07.516725-07:00,0.0,10.715157,10715.157 +27810,2025-03-10T11:38:18.234747-07:00,0.0,10.718022,10718.022 +27811,2025-03-10T11:38:28.960541-07:00,0.0,10.725794,10725.794 +27812,2025-03-10T11:38:39.684669-07:00,0.0,10.724128,10724.128 +27813,2025-03-10T11:38:50.406724-07:00,0.0,10.722055,10722.055 +27814,2025-03-10T11:39:01.116542-07:00,0.0,10.709818,10709.818 +27815,2025-03-10T11:39:11.843764-07:00,0.0,10.727222,10727.222 +27816,2025-03-10T11:39:22.566616-07:00,0.0,10.722852,10722.852 +27817,2025-03-10T11:39:33.284736-07:00,0.0,10.71812,10718.12 +27818,2025-03-10T11:39:44.001577-07:00,0.0,10.716841,10716.841 +27819,2025-03-10T11:39:54.725945-07:00,0.0,10.724368,10724.368 +27820,2025-03-10T11:40:05.442567-07:00,0.0,10.716622,10716.622 +27821,2025-03-10T11:40:16.170857-07:00,0.0,10.72829,10728.29 +27822,2025-03-10T11:40:26.886543-07:00,0.0,10.715686,10715.686 +27823,2025-03-10T11:40:37.615716-07:00,0.0,10.729173,10729.173 +27824,2025-03-10T11:40:48.333537-07:00,0.0,10.717821,10717.821 +27825,2025-03-10T11:40:59.053679-07:00,0.0,10.720142,10720.142 +27826,2025-03-10T11:41:09.772741-07:00,0.0,10.719062,10719.062 +27827,2025-03-10T11:41:20.493838-07:00,0.0,10.721097,10721.097 +27828,2025-03-10T11:41:31.217541-07:00,0.0,10.723703,10723.703 +27829,2025-03-10T11:41:41.939475-07:00,0.0,10.721934,10721.934 +27830,2025-03-10T11:41:52.664692-07:00,0.0,10.725217,10725.217 +27831,2025-03-10T11:42:03.387083-07:00,0.0,10.722391,10722.391 +27832,2025-03-10T11:42:14.105604-07:00,0.0,10.718521,10718.521 +27833,2025-03-10T11:42:24.829721-07:00,0.0,10.724117,10724.117 +27834,2025-03-10T11:42:35.550543-07:00,0.0,10.720822,10720.822 +27835,2025-03-10T11:42:46.272938-07:00,0.0,10.722395,10722.395 +27836,2025-03-10T11:42:57.004973-07:00,0.0,10.732035,10732.035 +27837,2025-03-10T11:43:07.718715-07:00,0.0,10.713742,10713.742 +27838,2025-03-10T11:43:18.447540-07:00,0.0,10.728825,10728.825 +27839,2025-03-10T11:43:29.162932-07:00,0.0,10.715392,10715.392 +27840,2025-03-10T11:43:39.892701-07:00,0.0,10.729769,10729.769 +27841,2025-03-10T11:43:50.612668-07:00,0.0,10.719967,10719.967 +27842,2025-03-10T11:44:01.336697-07:00,0.0,10.724029,10724.029 +27843,2025-03-10T11:44:12.059650-07:00,0.0,10.722953,10722.953 +27844,2025-03-10T11:44:22.781536-07:00,0.0,10.721886,10721.886 +27845,2025-03-10T11:44:33.500807-07:00,0.0,10.719271,10719.271 +27846,2025-03-10T11:44:44.228749-07:00,0.0,10.727942,10727.942 +27847,2025-03-10T11:44:54.950536-07:00,0.0,10.721787,10721.787 +27848,2025-03-10T11:45:05.676731-07:00,0.0,10.726195,10726.195 +27849,2025-03-10T11:45:16.391799-07:00,0.0,10.715068,10715.068 +27850,2025-03-10T11:45:27.117981-07:00,0.0,10.726182,10726.182 +27851,2025-03-10T11:45:37.835569-07:00,0.0,10.717588,10717.588 +27852,2025-03-10T11:45:48.557543-07:00,0.0,10.721974,10721.974 +27853,2025-03-10T11:45:59.286544-07:00,0.0,10.729001,10729.001 +27854,2025-03-10T11:46:10.008830-07:00,0.0,10.722286,10722.286 +27855,2025-03-10T11:46:20.736572-07:00,0.0,10.727742,10727.742 +27856,2025-03-10T11:46:31.457719-07:00,0.0,10.721147,10721.147 +27857,2025-03-10T11:46:42.174727-07:00,0.0,10.717008,10717.008 +27858,2025-03-10T11:46:52.902725-07:00,0.0,10.727998,10727.998 +27859,2025-03-10T11:47:03.623586-07:00,0.0,10.720861,10720.861 +27860,2025-03-10T11:47:14.344712-07:00,0.0,10.721126,10721.126 +27861,2025-03-10T11:47:25.075748-07:00,0.0,10.731036,10731.036 +27862,2025-03-10T11:47:35.796060-07:00,0.0,10.720312,10720.312 +27863,2025-03-10T11:47:46.518541-07:00,0.0,10.722481,10722.481 +27864,2025-03-10T11:47:57.237744-07:00,0.0,10.719203,10719.203 +27865,2025-03-10T11:48:07.970664-07:00,0.0,10.73292,10732.92 +27866,2025-03-10T11:48:18.690107-07:00,0.0,10.719443,10719.443 +27867,2025-03-10T11:48:29.417540-07:00,0.0,10.727433,10727.433 +27868,2025-03-10T11:48:40.142744-07:00,0.0,10.725204,10725.204 +27869,2025-03-10T11:48:50.860567-07:00,0.0,10.717823,10717.823 +27870,2025-03-10T11:49:01.586539-07:00,0.0,10.725972,10725.972 +27871,2025-03-10T11:49:12.310714-07:00,0.0,10.724175,10724.175 +27872,2025-03-10T11:49:23.034565-07:00,0.0,10.723851,10723.851 +27873,2025-03-10T11:49:33.766539-07:00,0.0,10.731974,10731.974 +27874,2025-03-10T11:49:44.483544-07:00,0.0,10.717005,10717.005 +27875,2025-03-10T11:49:55.214436-07:00,0.0,10.730892,10730.892 +27876,2025-03-10T11:50:05.933567-07:00,0.0,10.719131,10719.131 +27877,2025-03-10T11:50:16.667611-07:00,0.0,10.734044,10734.044 +27878,2025-03-10T11:50:27.395922-07:00,0.0,10.728311,10728.311 +27879,2025-03-10T11:50:38.115544-07:00,0.0,10.719622,10719.622 +27880,2025-03-10T11:50:48.845778-07:00,0.0,10.730234,10730.234 +27881,2025-03-10T11:50:59.567605-07:00,0.0,10.721827,10721.827 +27882,2025-03-10T11:51:10.300541-07:00,0.0,10.732936,10732.936 +27883,2025-03-10T11:51:21.024809-07:00,0.0,10.724268,10724.268 +27884,2025-03-10T11:51:31.741772-07:00,0.0,10.716963,10716.963 +27885,2025-03-10T11:51:42.473710-07:00,0.0,10.731938,10731.938 +27886,2025-03-10T11:51:53.199542-07:00,0.0,10.725832,10725.832 +27887,2025-03-10T11:52:03.916660-07:00,0.0,10.717118,10717.118 +27888,2025-03-10T11:52:14.646737-07:00,0.0,10.730077,10730.077 +27889,2025-03-10T11:52:25.370807-07:00,0.0,10.72407,10724.07 +27890,2025-03-10T11:52:36.097543-07:00,0.0,10.726736,10726.736 +27891,2025-03-10T11:52:46.828577-07:00,0.0,10.731034,10731.034 +27892,2025-03-10T11:52:57.556558-07:00,0.0,10.727981,10727.981 +27893,2025-03-10T11:53:08.262330-07:00,0.0,10.705772,10705.772 +27894,2025-03-10T11:53:18.992328-07:00,0.0,10.729998,10729.998 +27895,2025-03-10T11:53:29.713330-07:00,0.0,10.721002,10721.002 +27896,2025-03-10T11:53:40.446536-07:00,0.0,10.733206,10733.206 +27897,2025-03-10T11:53:51.165502-07:00,0.0,10.718966,10718.966 +27898,2025-03-10T11:54:01.899356-07:00,0.0,10.733854,10733.854 +27899,2025-03-10T11:54:12.626641-07:00,0.0,10.727285,10727.285 +27900,2025-03-10T11:54:23.346325-07:00,0.0,10.719684,10719.684 +27901,2025-03-10T11:54:34.078333-07:00,0.0,10.732008,10732.008 +27902,2025-03-10T11:54:44.801796-07:00,0.0,10.723463,10723.463 +27903,2025-03-10T11:54:55.520669-07:00,0.0,10.718873,10718.873 +27904,2025-03-10T11:55:06.250588-07:00,0.0,10.729919,10729.919 +27905,2025-03-10T11:55:16.968329-07:00,0.0,10.717741,10717.741 +27906,2025-03-10T11:55:27.689709-07:00,0.0,10.72138,10721.38 +27907,2025-03-10T11:55:38.414330-07:00,0.0,10.724621,10724.621 +27908,2025-03-10T11:55:49.146570-07:00,0.0,10.73224,10732.24 +27909,2025-03-10T11:55:59.869325-07:00,0.0,10.722755,10722.755 +27910,2025-03-10T11:56:10.588403-07:00,0.0,10.719078,10719.078 +27911,2025-03-10T11:56:21.321497-07:00,0.0,10.733094,10733.094 +27912,2025-03-10T11:56:32.046556-07:00,0.0,10.725059,10725.059 +27913,2025-03-10T11:56:42.771885-07:00,0.0,10.725329,10725.329 +27914,2025-03-10T11:56:53.490326-07:00,0.0,10.718441,10718.441 +27915,2025-03-10T11:57:04.221409-07:00,0.0,10.731083,10731.083 +27916,2025-03-10T11:57:14.937408-07:00,0.0,10.715999,10715.999 +27917,2025-03-10T11:57:25.666778-07:00,0.0,10.72937,10729.37 +27918,2025-03-10T11:57:36.390337-07:00,0.0,10.723559,10723.559 +27919,2025-03-10T11:57:47.111330-07:00,0.0,10.720993,10720.993 +27920,2025-03-10T11:57:57.835568-07:00,0.0,10.724238,10724.238 +27921,2025-03-10T11:58:08.572327-07:00,0.0,10.736759,10736.759 +27922,2025-03-10T11:58:19.293796-07:00,0.0,10.721469,10721.469 +27923,2025-03-10T11:58:30.021533-07:00,0.0,10.727737,10727.737 +27924,2025-03-10T11:58:40.738391-07:00,0.0,10.716858,10716.858 +27925,2025-03-10T11:58:51.463328-07:00,0.0,10.724937,10724.937 +27926,2025-03-10T11:59:02.186549-07:00,0.0,10.723221,10723.221 +27927,2025-03-10T11:59:12.918989-07:00,0.0,10.73244,10732.44 +27928,2025-03-10T11:59:23.634328-07:00,0.0,10.715339,10715.339 +27929,2025-03-10T11:59:34.360630-07:00,0.0,10.726302,10726.302 +27930,2025-03-10T11:59:45.091575-07:00,0.0,10.730945,10730.945 +27931,2025-03-10T11:59:55.815459-07:00,0.0,10.723884,10723.884 +27932,2025-03-10T12:00:06.540327-07:00,0.0,10.724868,10724.868 +27933,2025-03-10T12:00:17.257513-07:00,0.0,10.717186,10717.186 +27934,2025-03-10T12:00:27.979670-07:00,0.0,10.722157,10722.157 +27935,2025-03-10T12:00:38.712238-07:00,0.0,10.732568,10732.568 +27936,2025-03-10T12:00:49.427327-07:00,0.0,10.715089,10715.089 +27937,2025-03-10T12:01:00.155331-07:00,0.0,10.728004,10728.004 +27938,2025-03-10T12:01:10.879687-07:00,0.0,10.724356,10724.356 +27939,2025-03-10T12:01:21.601365-07:00,0.0,10.721678,10721.678 +27940,2025-03-10T12:01:32.324328-07:00,0.0,10.722963,10722.963 +27941,2025-03-10T12:01:43.046330-07:00,0.0,10.722002,10722.002 +27942,2025-03-10T12:01:53.769825-07:00,0.0,10.723495,10723.495 +27943,2025-03-10T12:02:04.494147-07:00,0.0,10.724322,10724.322 +27944,2025-03-10T12:02:15.217503-07:00,0.0,10.723356,10723.356 +27945,2025-03-10T12:02:25.937330-07:00,0.0,10.719827,10719.827 +27946,2025-03-10T12:02:36.666734-07:00,0.0,10.729404,10729.404 +27947,2025-03-10T12:02:47.381328-07:00,0.0,10.714594,10714.594 +27948,2025-03-10T12:02:58.105516-07:00,0.0,10.724188,10724.188 +27949,2025-03-10T12:03:08.825406-07:00,0.0,10.71989,10719.89 +27950,2025-03-10T12:03:19.553517-07:00,0.0,10.728111,10728.111 +27951,2025-03-10T12:03:30.275329-07:00,0.0,10.721812,10721.812 +27952,2025-03-10T12:03:40.994538-07:00,0.0,10.719209,10719.209 +27953,2025-03-10T12:03:51.721535-07:00,0.0,10.726997,10726.997 +27954,2025-03-10T12:04:02.444344-07:00,0.0,10.722809,10722.809 +27955,2025-03-10T12:04:13.164860-07:00,0.0,10.720516,10720.516 +27956,2025-03-10T12:04:23.883550-07:00,0.0,10.71869,10718.69 +27957,2025-03-10T12:04:34.611634-07:00,0.0,10.728084,10728.084 +27958,2025-03-10T12:04:45.331665-07:00,0.0,10.720031,10720.031 +27959,2025-03-10T12:04:56.040944-07:00,0.0,10.709279,10709.279 +27960,2025-03-10T12:05:06.762931-07:00,0.0,10.721987,10721.987 +27961,2025-03-10T12:05:17.490600-07:00,0.0,10.727669,10727.669 +27962,2025-03-10T12:05:28.207961-07:00,0.0,10.717361,10717.361 +27963,2025-03-10T12:05:38.929330-07:00,0.0,10.721369,10721.369 +27964,2025-03-10T12:05:49.648325-07:00,0.0,10.718995,10718.995 +27965,2025-03-10T12:06:00.365330-07:00,0.0,10.717005,10717.005 +27966,2025-03-10T12:06:11.076545-07:00,0.0,10.711215,10711.215 +27967,2025-03-10T12:06:21.800107-07:00,0.0,10.723562,10723.562 +27968,2025-03-10T12:06:32.518329-07:00,0.0,10.718222,10718.222 +27969,2025-03-10T12:06:43.235273-07:00,0.0,10.716944,10716.944 +27970,2025-03-10T12:06:53.949741-07:00,0.0,10.714468,10714.468 +27971,2025-03-10T12:07:04.677167-07:00,0.0,10.727426,10727.426 +27972,2025-03-10T12:07:15.395330-07:00,0.0,10.718163,10718.163 +27973,2025-03-10T12:07:26.110329-07:00,0.0,10.714999,10714.999 +27974,2025-03-10T12:07:36.832746-07:00,0.0,10.722417,10722.417 +27975,2025-03-10T12:07:47.547323-07:00,0.0,10.714577,10714.577 +27976,2025-03-10T12:07:58.264506-07:00,0.0,10.717183,10717.183 +27977,2025-03-10T12:08:08.987404-07:00,0.0,10.722898,10722.898 +27978,2025-03-10T12:08:19.704081-07:00,0.0,10.716677,10716.677 +27979,2025-03-10T12:08:30.428324-07:00,0.0,10.724243,10724.243 +27980,2025-03-10T12:08:41.144245-07:00,0.0,10.715921,10715.921 +27981,2025-03-10T12:08:51.857502-07:00,0.0,10.713257,10713.257 +27982,2025-03-10T12:09:02.577506-07:00,0.0,10.720004,10720.004 +27983,2025-03-10T12:09:13.296515-07:00,0.0,10.719009,10719.009 +27984,2025-03-10T12:09:24.015328-07:00,0.0,10.718813,10718.813 +27985,2025-03-10T12:09:34.735497-07:00,0.0,10.720169,10720.169 +27986,2025-03-10T12:09:45.459493-07:00,0.0,10.723996,10723.996 +27987,2025-03-10T12:09:56.170574-07:00,0.0,10.711081,10711.081 +27988,2025-03-10T12:10:06.895325-07:00,0.0,10.724751,10724.751 +27989,2025-03-10T12:10:17.608327-07:00,0.0,10.713002,10713.002 +27990,2025-03-10T12:10:28.335385-07:00,0.0,10.727058,10727.058 +27991,2025-03-10T12:10:39.050656-07:00,0.0,10.715271,10715.271 +27992,2025-03-10T12:10:49.764513-07:00,0.0,10.713857,10713.857 +27993,2025-03-10T12:11:00.483356-07:00,0.0,10.718843,10718.843 +27994,2025-03-10T12:11:11.201587-07:00,0.0,10.718231,10718.231 +27995,2025-03-10T12:11:21.915500-07:00,0.0,10.713913,10713.913 +27996,2025-03-10T12:11:32.639328-07:00,0.0,10.723828,10723.828 +27997,2025-03-10T12:11:43.350504-07:00,0.0,10.711176,10711.176 +27998,2025-03-10T12:11:54.076358-07:00,0.0,10.725854,10725.854 +27999,2025-03-10T12:12:04.797675-07:00,0.0,10.721317,10721.317 +28000,2025-03-10T12:12:15.507835-07:00,0.0,10.71016,10710.16 +28001,2025-03-10T12:12:26.235492-07:00,0.0,10.727657,10727.657 +28002,2025-03-10T12:12:36.946418-07:00,0.0,10.710926,10710.926 +28003,2025-03-10T12:12:47.670330-07:00,0.0,10.723912,10723.912 +28004,2025-03-10T12:12:58.381373-07:00,0.0,10.711043,10711.043 +28005,2025-03-10T12:13:09.106322-07:00,0.0,10.724949,10724.949 +28006,2025-03-10T12:13:19.820498-07:00,0.0,10.714176,10714.176 +28007,2025-03-10T12:13:30.543330-07:00,0.0,10.722832,10722.832 +28008,2025-03-10T12:13:41.260508-07:00,0.0,10.717178,10717.178 +28009,2025-03-10T12:13:51.985327-07:00,0.0,10.724819,10724.819 +28010,2025-03-10T12:14:02.706438-07:00,0.0,10.721111,10721.111 +28011,2025-03-10T12:14:13.421393-07:00,0.0,10.714955,10714.955 +28012,2025-03-10T12:14:24.147725-07:00,0.0,10.726332,10726.332 +28013,2025-03-10T12:14:34.871356-07:00,0.0,10.723631,10723.631 +28014,2025-03-10T12:14:45.588515-07:00,0.0,10.717159,10717.159 +28015,2025-03-10T12:14:56.309330-07:00,0.0,10.720815,10720.815 +28016,2025-03-10T12:15:07.028563-07:00,0.0,10.719233,10719.233 +28017,2025-03-10T12:15:17.745555-07:00,0.0,10.716992,10716.992 +28018,2025-03-10T12:15:28.467473-07:00,0.0,10.721918,10721.918 +28019,2025-03-10T12:15:39.194095-07:00,0.0,10.726622,10726.622 +28020,2025-03-10T12:15:49.912445-07:00,0.0,10.71835,10718.35 +28021,2025-03-10T12:16:00.635363-07:00,0.0,10.722918,10722.918 +28022,2025-03-10T12:16:11.350325-07:00,0.0,10.714962,10714.962 +28023,2025-03-10T12:16:22.075505-07:00,0.0,10.72518,10725.18 +28024,2025-03-10T12:16:32.802354-07:00,0.0,10.726849,10726.849 +28025,2025-03-10T12:16:43.526329-07:00,0.0,10.723975,10723.975 +28026,2025-03-10T12:16:54.244567-07:00,0.0,10.718238,10718.238 +28027,2025-03-10T12:17:15.686463-07:00,0.0,21.441896,21441.896 +28028,2025-03-10T12:17:26.409471-07:00,0.0,10.723008,10723.008 +28029,2025-03-10T12:17:37.129328-07:00,0.0,10.719857,10719.857 +28030,2025-03-10T12:17:47.849330-07:00,0.0,10.720002,10720.002 +28031,2025-03-10T12:17:58.566572-07:00,0.0,10.717242,10717.242 +28032,2025-03-10T12:18:09.283521-07:00,0.0,10.716949,10716.949 +28033,2025-03-10T12:18:20.007325-07:00,0.0,10.723804,10723.804 +28034,2025-03-10T12:18:30.725592-07:00,0.0,10.718267,10718.267 +28035,2025-03-10T12:18:41.447450-07:00,0.0,10.721858,10721.858 +28036,2025-03-10T12:18:52.171522-07:00,0.0,10.724072,10724.072 +28037,2025-03-10T12:19:02.891327-07:00,0.0,10.719805,10719.805 +28038,2025-03-10T12:19:13.611515-07:00,0.0,10.720188,10720.188 +28039,2025-03-10T12:19:24.330581-07:00,0.0,10.719066,10719.066 +28040,2025-03-10T12:19:35.058512-07:00,0.0,10.727931,10727.931 +28041,2025-03-10T12:19:45.774333-07:00,0.0,10.715821,10715.821 +28042,2025-03-10T12:19:56.494204-07:00,0.0,10.719871,10719.871 +28043,2025-03-10T12:20:07.214501-07:00,0.0,10.720297,10720.297 +28044,2025-03-10T12:20:17.934325-07:00,0.0,10.719824,10719.824 +28045,2025-03-10T12:20:28.656326-07:00,0.0,10.722001,10722.001 +28046,2025-03-10T12:20:39.369916-07:00,0.0,10.71359,10713.59 +28047,2025-03-10T12:20:50.096763-07:00,0.0,10.726847,10726.847 +28048,2025-03-10T12:21:00.811531-07:00,0.0,10.714768,10714.768 +28049,2025-03-10T12:21:11.526497-07:00,0.0,10.714966,10714.966 +28050,2025-03-10T12:21:22.247381-07:00,0.0,10.720884,10720.884 +28051,2025-03-10T12:21:32.974037-07:00,0.0,10.726656,10726.656 +28052,2025-03-10T12:21:43.686406-07:00,0.0,10.712369,10712.369 +28053,2025-03-10T12:21:54.414519-07:00,0.0,10.728113,10728.113 +28054,2025-03-10T12:22:05.128333-07:00,0.0,10.713814,10713.814 +28055,2025-03-10T12:22:15.853471-07:00,0.0,10.725138,10725.138 +28056,2025-03-10T12:22:26.574326-07:00,0.0,10.720855,10720.855 +28057,2025-03-10T12:22:37.289725-07:00,0.0,10.715399,10715.399 +28058,2025-03-10T12:22:48.009502-07:00,0.0,10.719777,10719.777 +28059,2025-03-10T12:22:58.729072-07:00,0.0,10.71957,10719.57 +28060,2025-03-10T12:23:09.449549-07:00,0.0,10.720477,10720.477 +28061,2025-03-10T12:23:20.172401-07:00,0.0,10.722852,10722.852 +28062,2025-03-10T12:23:30.892724-07:00,0.0,10.720323,10720.323 +28063,2025-03-10T12:23:41.613328-07:00,0.0,10.720604,10720.604 +28064,2025-03-10T12:23:52.327529-07:00,0.0,10.714201,10714.201 +28065,2025-03-10T12:24:03.053336-07:00,0.0,10.725807,10725.807 +28066,2025-03-10T12:24:13.776403-07:00,0.0,10.723067,10723.067 +28067,2025-03-10T12:24:24.490464-07:00,0.0,10.714061,10714.061 +28068,2025-03-10T12:24:35.210993-07:00,0.0,10.720529,10720.529 +28069,2025-03-10T12:24:45.934331-07:00,0.0,10.723338,10723.338 +28070,2025-03-10T12:24:56.651329-07:00,0.0,10.716998,10716.998 +28071,2025-03-10T12:25:07.370546-07:00,0.0,10.719217,10719.217 +28072,2025-03-10T12:25:18.101507-07:00,0.0,10.730961,10730.961 +28073,2025-03-10T12:25:28.823328-07:00,0.0,10.721821,10721.821 +28074,2025-03-10T12:25:39.538328-07:00,0.0,10.715,10715.0 +28075,2025-03-10T12:25:50.266534-07:00,0.0,10.728206,10728.206 +28076,2025-03-10T12:26:00.982349-07:00,0.0,10.715815,10715.815 +28077,2025-03-10T12:26:11.708320-07:00,0.0,10.725971,10725.971 +28078,2025-03-10T12:26:22.429518-07:00,0.0,10.721198,10721.198 +28079,2025-03-10T12:26:23.413676-07:00,0.0,0.984158,984.158 +28080,2025-03-10T12:26:33.152508-07:00,0.0,9.738832,9738.832 +28081,2025-03-10T12:26:43.868571-07:00,0.0,10.716063,10716.063 +28082,2025-03-10T12:26:54.590326-07:00,0.0,10.721755,10721.755 +28083,2025-03-10T12:27:05.325083-07:00,0.0,10.734757,10734.757 +28084,2025-03-10T12:27:16.042326-07:00,0.0,10.717243,10717.243 +28085,2025-03-10T12:27:26.765734-07:00,0.0,10.723408,10723.408 +28086,2025-03-10T12:27:37.488330-07:00,0.0,10.722596,10722.596 +28087,2025-03-10T12:27:48.203505-07:00,0.0,10.715175,10715.175 +28088,2025-03-10T12:27:58.926451-07:00,0.0,10.722946,10722.946 +28089,2025-03-10T12:28:09.640459-07:00,0.0,10.714008,10714.008 +28090,2025-03-10T12:28:20.364330-07:00,0.0,10.723871,10723.871 +28091,2025-03-10T12:28:31.086614-07:00,0.0,10.722284,10722.284 +28092,2025-03-10T12:28:41.815328-07:00,0.0,10.728714,10728.714 +28093,2025-03-10T12:28:52.539431-07:00,0.0,10.724103,10724.103 +28094,2025-03-10T12:29:03.254587-07:00,0.0,10.715156,10715.156 +28095,2025-03-10T12:29:13.979439-07:00,0.0,10.724852,10724.852 +28096,2025-03-10T12:29:24.704327-07:00,0.0,10.724888,10724.888 +28097,2025-03-10T12:29:35.426503-07:00,0.0,10.722176,10722.176 +28098,2025-03-10T12:29:46.147355-07:00,0.0,10.720852,10720.852 +28099,2025-03-10T12:29:56.880849-07:00,0.0,10.733494,10733.494 +28100,2025-03-10T12:30:07.599327-07:00,0.0,10.718478,10718.478 +28101,2025-03-10T12:30:18.324330-07:00,0.0,10.725003,10725.003 +28102,2025-03-10T12:30:29.056747-07:00,0.0,10.732417,10732.417 +28103,2025-03-10T12:30:39.774570-07:00,0.0,10.717823,10717.823 +28104,2025-03-10T12:30:50.500504-07:00,0.0,10.725934,10725.934 +28105,2025-03-10T12:31:01.223333-07:00,0.0,10.722829,10722.829 +28106,2025-03-10T12:31:11.951580-07:00,0.0,10.728247,10728.247 +28107,2025-03-10T12:31:22.670327-07:00,0.0,10.718747,10718.747 +28108,2025-03-10T12:31:33.389511-07:00,0.0,10.719184,10719.184 +28109,2025-03-10T12:31:44.112423-07:00,0.0,10.722912,10722.912 +28110,2025-03-10T12:31:54.845582-07:00,0.0,10.733159,10733.159 +28111,2025-03-10T12:32:05.566329-07:00,0.0,10.720747,10720.747 +28112,2025-03-10T12:32:16.297492-07:00,0.0,10.731163,10731.163 +28113,2025-03-10T12:32:27.017733-07:00,0.0,10.720241,10720.241 +28114,2025-03-10T12:32:37.744401-07:00,0.0,10.726668,10726.668 +28115,2025-03-10T12:32:48.471492-07:00,0.0,10.727091,10727.091 +28116,2025-03-10T12:32:59.195330-07:00,0.0,10.723838,10723.838 +28117,2025-03-10T12:33:09.922506-07:00,0.0,10.727176,10727.176 +28118,2025-03-10T12:33:20.648512-07:00,0.0,10.726006,10726.006 +28119,2025-03-10T12:33:31.376399-07:00,0.0,10.727887,10727.887 +28120,2025-03-10T12:33:42.100111-07:00,0.0,10.723712,10723.712 +28121,2025-03-10T12:33:52.820325-07:00,0.0,10.720214,10720.214 +28122,2025-03-10T12:34:03.554200-07:00,0.0,10.733875,10733.875 +28123,2025-03-10T12:34:14.280674-07:00,0.0,10.726474,10726.474 +28124,2025-03-10T12:34:24.999406-07:00,0.0,10.718732,10718.732 +28125,2025-03-10T12:34:35.731355-07:00,0.0,10.731949,10731.949 +28126,2025-03-10T12:34:46.448530-07:00,0.0,10.717175,10717.175 +28127,2025-03-10T12:34:57.179639-07:00,0.0,10.731109,10731.109 +28128,2025-03-10T12:35:07.902328-07:00,0.0,10.722689,10722.689 +28129,2025-03-10T12:35:18.636337-07:00,0.0,10.734009,10734.009 +28130,2025-03-10T12:35:29.361327-07:00,0.0,10.72499,10724.99 +28131,2025-03-10T12:35:40.092331-07:00,0.0,10.731004,10731.004 +28132,2025-03-10T12:35:50.816512-07:00,0.0,10.724181,10724.181 +28133,2025-03-10T12:36:01.545654-07:00,0.0,10.729142,10729.142 +28134,2025-03-10T12:36:12.264483-07:00,0.0,10.718829,10718.829 +28135,2025-03-10T12:36:22.999390-07:00,0.0,10.734907,10734.907 +28136,2025-03-10T12:36:33.724323-07:00,0.0,10.724933,10724.933 +28137,2025-03-10T12:36:44.450561-07:00,0.0,10.726238,10726.238 +28138,2025-03-10T12:36:55.179767-07:00,0.0,10.729206,10729.206 +28139,2025-03-10T12:37:05.911402-07:00,0.0,10.731635,10731.635 +28140,2025-03-10T12:37:27.363540-07:00,0.0,21.452138,21452.138 +28141,2025-03-10T12:37:38.085326-07:00,0.0,10.721786,10721.786 +28142,2025-03-10T12:37:48.814327-07:00,0.0,10.729001,10729.001 +28143,2025-03-10T12:37:59.537509-07:00,0.0,10.723182,10723.182 +28144,2025-03-10T12:38:10.257541-07:00,0.0,10.720032,10720.032 +28145,2025-03-10T12:38:20.985527-07:00,0.0,10.727986,10727.986 +28146,2025-03-10T12:38:31.705331-07:00,0.0,10.719804,10719.804 +28147,2025-03-10T12:38:42.426409-07:00,0.0,10.721078,10721.078 +28148,2025-03-10T12:38:53.157436-07:00,0.0,10.731027,10731.027 +28149,2025-03-10T12:39:03.877498-07:00,0.0,10.720062,10720.062 +28150,2025-03-10T12:39:14.604410-07:00,0.0,10.726912,10726.912 +28151,2025-03-10T12:39:25.324543-07:00,0.0,10.720133,10720.133 +28152,2025-03-10T12:39:36.048611-07:00,0.0,10.724068,10724.068 +28153,2025-03-10T12:39:46.780398-07:00,0.0,10.731787,10731.787 +28154,2025-03-10T12:39:57.509001-07:00,0.0,10.728603,10728.603 +28155,2025-03-10T12:40:08.235060-07:00,0.0,10.726059,10726.059 +28156,2025-03-10T12:40:18.956400-07:00,0.0,10.72134,10721.34 +28157,2025-03-10T12:40:29.680878-07:00,0.0,10.724478,10724.478 +28158,2025-03-10T12:40:40.409332-07:00,0.0,10.728454,10728.454 +28159,2025-03-10T12:40:51.129996-07:00,0.0,10.720664,10720.664 +28160,2025-03-10T12:41:01.864331-07:00,0.0,10.734335,10734.335 +28161,2025-03-10T12:41:12.580755-07:00,0.0,10.716424,10716.424 +28162,2025-03-10T12:41:23.313454-07:00,0.0,10.732699,10732.699 +28163,2025-03-10T12:41:34.041499-07:00,0.0,10.728045,10728.045 +28164,2025-03-10T12:41:44.766702-07:00,0.0,10.725203,10725.203 +28165,2025-03-10T12:41:55.488422-07:00,0.0,10.72172,10721.72 +28166,2025-03-10T12:42:06.221331-07:00,0.0,10.732909,10732.909 +28167,2025-03-10T12:42:16.942330-07:00,0.0,10.720999,10720.999 +28168,2025-03-10T12:42:27.669549-07:00,0.0,10.727219,10727.219 +28169,2025-03-10T12:42:38.399460-07:00,0.0,10.729911,10729.911 +28170,2025-03-10T12:42:49.126405-07:00,0.0,10.726945,10726.945 +28171,2025-03-10T12:42:59.852492-07:00,0.0,10.726087,10726.087 +28172,2025-03-10T12:43:10.584513-07:00,0.0,10.732021,10732.021 +28173,2025-03-10T12:43:21.312327-07:00,0.0,10.727814,10727.814 +28174,2025-03-10T12:43:32.040518-07:00,0.0,10.728191,10728.191 +28175,2025-03-10T12:43:42.759537-07:00,0.0,10.719019,10719.019 +28176,2025-03-10T12:43:53.492409-07:00,0.0,10.732872,10732.872 +28177,2025-03-10T12:44:04.219471-07:00,0.0,10.727062,10727.062 +28178,2025-03-10T12:44:14.939521-07:00,0.0,10.72005,10720.05 +28179,2025-03-10T12:44:25.669616-07:00,0.0,10.730095,10730.095 +28180,2025-03-10T12:44:36.391528-07:00,0.0,10.721912,10721.912 +28181,2025-03-10T12:44:47.121484-07:00,0.0,10.729956,10729.956 +28182,2025-03-10T12:44:57.845330-07:00,0.0,10.723846,10723.846 +28183,2025-03-10T12:45:08.574734-07:00,0.0,10.729404,10729.404 +28184,2025-03-10T12:45:19.303739-07:00,0.0,10.729005,10729.005 +28185,2025-03-10T12:45:30.024357-07:00,0.0,10.720618,10720.618 +28186,2025-03-10T12:45:40.751531-07:00,0.0,10.727174,10727.174 +28187,2025-03-10T12:45:51.479328-07:00,0.0,10.727797,10727.797 +28188,2025-03-10T12:46:02.212330-07:00,0.0,10.733002,10733.002 +28189,2025-03-10T12:46:12.937275-07:00,0.0,10.724945,10724.945 +28190,2025-03-10T12:46:23.658325-07:00,0.0,10.72105,10721.05 +28191,2025-03-10T12:46:34.384500-07:00,0.0,10.726175,10726.175 +28192,2025-03-10T12:46:45.112330-07:00,0.0,10.72783,10727.83 +28193,2025-03-10T12:46:55.841507-07:00,0.0,10.729177,10729.177 +28194,2025-03-10T12:47:06.569327-07:00,0.0,10.72782,10727.82 +28195,2025-03-10T12:47:17.298330-07:00,0.0,10.729003,10729.003 +28196,2025-03-10T12:47:28.023738-07:00,0.0,10.725408,10725.408 +28197,2025-03-10T12:47:38.753382-07:00,0.0,10.729644,10729.644 +28198,2025-03-10T12:47:49.477519-07:00,0.0,10.724137,10724.137 +28199,2025-03-10T12:48:00.207554-07:00,0.0,10.730035,10730.035 +28200,2025-03-10T12:48:10.928351-07:00,0.0,10.720797,10720.797 +28201,2025-03-10T12:48:21.656534-07:00,0.0,10.728183,10728.183 +28202,2025-03-10T12:48:32.387543-07:00,0.0,10.731009,10731.009 +28203,2025-03-10T12:48:43.113505-07:00,0.0,10.725962,10725.962 +28204,2025-03-10T12:48:53.847502-07:00,0.0,10.733997,10733.997 +28205,2025-03-10T12:49:04.576526-07:00,0.0,10.729024,10729.024 +28206,2025-03-10T12:49:15.302328-07:00,0.0,10.725802,10725.802 +28207,2025-03-10T12:49:26.036007-07:00,0.0,10.733679,10733.679 +28208,2025-03-10T12:49:36.755495-07:00,0.0,10.719488,10719.488 +28209,2025-03-10T12:49:47.485503-07:00,0.0,10.730008,10730.008 +28210,2025-03-10T12:49:58.216355-07:00,0.0,10.730852,10730.852 +28211,2025-03-10T12:50:08.950596-07:00,0.0,10.734241,10734.241 +28212,2025-03-10T12:50:19.671222-07:00,0.0,10.720626,10720.626 +28213,2025-03-10T12:50:30.406327-07:00,0.0,10.735105,10735.105 +28214,2025-03-10T12:50:51.864653-07:00,0.0,21.458326,21458.326 +28215,2025-03-10T12:51:02.595331-07:00,0.0,10.730678,10730.678 +28216,2025-03-10T12:51:13.324537-07:00,0.0,10.729206,10729.206 +28217,2025-03-10T12:51:24.059495-07:00,0.0,10.734958,10734.958 +28218,2025-03-10T12:51:34.787347-07:00,0.0,10.727852,10727.852 +28219,2025-03-10T12:51:45.516384-07:00,0.0,10.729037,10729.037 +28220,2025-03-10T12:51:56.251544-07:00,0.0,10.73516,10735.16 +28221,2025-03-10T12:52:06.982326-07:00,0.0,10.730782,10730.782 +28222,2025-03-10T12:52:17.717363-07:00,0.0,10.735037,10735.037 +28223,2025-03-10T12:52:28.444697-07:00,0.0,10.727334,10727.334 +28224,2025-03-10T12:52:39.174330-07:00,0.0,10.729633,10729.633 +28225,2025-03-10T12:52:49.900330-07:00,0.0,10.726,10726.0 +28226,2025-03-10T12:53:00.682225-07:00,0.0,10.781895,10781.895 +28227,2025-03-10T12:53:11.420169-07:00,0.0,10.737944,10737.944 +28228,2025-03-10T12:53:22.141345-07:00,0.0,10.721176,10721.176 +28229,2025-03-10T12:53:32.879214-07:00,0.0,10.737869,10737.869 +28230,2025-03-10T12:53:43.608618-07:00,0.0,10.729404,10729.404 +28231,2025-03-10T12:53:54.346045-07:00,0.0,10.737427,10737.427 +28232,2025-03-10T12:54:05.078337-07:00,0.0,10.732292,10732.292 +28233,2025-03-10T12:54:15.809244-07:00,0.0,10.730907,10730.907 +28234,2025-03-10T12:54:26.539048-07:00,0.0,10.729804,10729.804 +28235,2025-03-10T12:54:37.270044-07:00,0.0,10.730996,10730.996 +28236,2025-03-10T12:54:47.995899-07:00,0.0,10.725855,10725.855 +28237,2025-03-10T12:54:58.727255-07:00,0.0,10.731356,10731.356 +28238,2025-03-10T12:55:09.448246-07:00,0.0,10.720991,10720.991 +28239,2025-03-10T12:55:20.187281-07:00,0.0,10.739035,10739.035 +28240,2025-03-10T12:55:30.918046-07:00,0.0,10.730765,10730.765 +28241,2025-03-10T12:55:41.643079-07:00,0.0,10.725033,10725.033 +28242,2025-03-10T12:55:52.380422-07:00,0.0,10.737343,10737.343 +28243,2025-03-10T12:56:03.105048-07:00,0.0,10.724626,10724.626 +28244,2025-03-10T12:56:13.835227-07:00,0.0,10.730179,10730.179 +28245,2025-03-10T12:56:24.564279-07:00,0.0,10.729052,10729.052 +28246,2025-03-10T12:56:35.290046-07:00,0.0,10.725767,10725.767 +28247,2025-03-10T12:56:46.026119-07:00,0.0,10.736073,10736.073 +28248,2025-03-10T12:56:56.760542-07:00,0.0,10.734423,10734.423 +28249,2025-03-10T12:57:07.490169-07:00,0.0,10.729627,10729.627 +28250,2025-03-10T12:57:18.222463-07:00,0.0,10.732294,10732.294 +28251,2025-03-10T12:57:28.960253-07:00,0.0,10.73779,10737.79 +28252,2025-03-10T12:57:39.689044-07:00,0.0,10.728791,10728.791 +28253,2025-03-10T12:57:50.423042-07:00,0.0,10.733998,10733.998 +28254,2025-03-10T12:58:01.161084-07:00,0.0,10.738042,10738.042 +28255,2025-03-10T12:58:11.893107-07:00,0.0,10.732023,10732.023 +28256,2025-03-10T12:58:22.622044-07:00,0.0,10.728937,10728.937 +28257,2025-03-10T12:58:33.359284-07:00,0.0,10.73724,10737.24 +28258,2025-03-10T12:58:44.092698-07:00,0.0,10.733414,10733.414 +28259,2025-03-10T12:58:54.820048-07:00,0.0,10.72735,10727.35 +28260,2025-03-10T12:59:05.553106-07:00,0.0,10.733058,10733.058 +28261,2025-03-10T12:59:16.287050-07:00,0.0,10.733944,10733.944 +28262,2025-03-10T12:59:27.016291-07:00,0.0,10.729241,10729.241 +28263,2025-03-10T12:59:37.748049-07:00,11.0,10.731758,10731.758 +28264,2025-03-10T12:59:38.907656-07:00,417.0,1.159607,1159.607 +28265,2025-03-10T12:59:48.482247-07:00,433.0,9.574591,9574.591 +28266,2025-03-10T12:59:59.220227-07:00,445.0,10.73798,10737.98 +28267,2025-03-10T13:00:09.944045-07:00,403.0,10.723818,10723.818 +28268,2025-03-10T13:00:20.681472-07:00,384.0,10.737427,10737.427 +28269,2025-03-10T13:00:31.410224-07:00,316.0,10.728752,10728.752 +28270,2025-03-10T13:00:42.139109-07:00,425.0,10.728885,10728.885 +28271,2025-03-10T13:00:52.871041-07:00,467.0,10.731932,10731.932 +28272,2025-03-10T13:01:03.601220-07:00,464.0,10.730179,10730.179 +28273,2025-03-10T13:01:14.323050-07:00,438.0,10.72183,10721.83 +28274,2025-03-10T13:01:21.176574-07:00,0.0,6.853524,6853.524 +28275,2025-03-10T13:01:25.055263-07:00,0.0,3.878689,3878.689 +28276,2025-03-10T13:01:35.792304-07:00,0.0,10.737041,10737.041 +28277,2025-03-10T13:01:46.522256-07:00,0.0,10.729952,10729.952 +28278,2025-03-10T13:01:57.253180-07:00,0.0,10.730924,10730.924 +28279,2025-03-10T13:02:07.984236-07:00,0.0,10.731056,10731.056 +28280,2025-03-10T13:02:18.715046-07:00,0.0,10.73081,10730.81 +28281,2025-03-10T13:02:29.440048-07:00,0.0,10.725002,10725.002 +28282,2025-03-10T13:02:40.174435-07:00,0.0,10.734387,10734.387 +28283,2025-03-10T13:02:50.908045-07:00,0.0,10.73361,10733.61 +28284,2025-03-10T13:03:01.638109-07:00,0.0,10.730064,10730.064 +28285,2025-03-10T13:03:12.363530-07:00,0.0,10.725421,10725.421 +28286,2025-03-10T13:03:23.094046-07:00,0.0,10.730516,10730.516 +28287,2025-03-10T13:03:33.820048-07:00,0.0,10.726002,10726.002 +28288,2025-03-10T13:03:44.548264-07:00,0.0,10.728216,10728.216 +28289,2025-03-10T13:03:55.277050-07:00,0.0,10.728786,10728.786 +28290,2025-03-10T13:04:06.013459-07:00,0.0,10.736409,10736.409 +28291,2025-03-10T13:04:16.738049-07:00,0.0,10.72459,10724.59 +28292,2025-03-10T13:04:27.477246-07:00,0.0,10.739197,10739.197 +28293,2025-03-10T13:04:38.202201-07:00,0.0,10.724955,10724.955 +28294,2025-03-10T13:04:48.935679-07:00,0.0,10.733478,10733.478 +28295,2025-03-10T13:04:59.673118-07:00,0.0,10.737439,10737.439 +28296,2025-03-10T13:05:10.397239-07:00,0.0,10.724121,10724.121 +28297,2025-03-10T13:05:21.137645-07:00,0.0,10.740406,10740.406 +28298,2025-03-10T13:05:31.863045-07:00,0.0,10.7254,10725.4 +28299,2025-03-10T13:05:42.593048-07:00,0.0,10.730003,10730.003 +28300,2025-03-10T13:05:53.323458-07:00,0.0,10.73041,10730.41 +28301,2025-03-10T13:06:04.061072-07:00,0.0,10.737614,10737.614 +28302,2025-03-10T13:06:14.791864-07:00,0.0,10.730792,10730.792 +28303,2025-03-10T13:06:25.515244-07:00,0.0,10.72338,10723.38 +28304,2025-03-10T13:06:36.240066-07:00,0.0,10.724822,10724.822 +28305,2025-03-10T13:06:46.977041-07:00,0.0,10.736975,10736.975 +28306,2025-03-10T13:06:57.704231-07:00,0.0,10.72719,10727.19 +28307,2025-03-10T13:07:08.435252-07:00,0.0,10.731021,10731.021 +28308,2025-03-10T13:07:19.162321-07:00,0.0,10.727069,10727.069 +28309,2025-03-10T13:07:29.896246-07:00,0.0,10.733925,10733.925 +28310,2025-03-10T13:07:40.619256-07:00,0.0,10.72301,10723.01 +28311,2025-03-10T13:07:51.349046-07:00,0.0,10.72979,10729.79 +28312,2025-03-10T13:08:02.086446-07:00,0.0,10.7374,10737.4 +28313,2025-03-10T13:08:12.815216-07:00,0.0,10.72877,10728.77 +28314,2025-03-10T13:08:23.539255-07:00,0.0,10.724039,10724.039 +28315,2025-03-10T13:08:34.264245-07:00,0.0,10.72499,10724.99 +28316,2025-03-10T13:08:44.999048-07:00,0.0,10.734803,10734.803 +28317,2025-03-10T13:08:55.727212-07:00,0.0,10.728164,10728.164 +28318,2025-03-10T13:09:06.459140-07:00,0.0,10.731928,10731.928 +28319,2025-03-10T13:09:17.184123-07:00,0.0,10.724983,10724.983 +28320,2025-03-10T13:09:27.918824-07:00,0.0,10.734701,10734.701 +28321,2025-03-10T13:09:38.640146-07:00,0.0,10.721322,10721.322 +28322,2025-03-10T13:09:49.369117-07:00,0.0,10.728971,10728.971 +28323,2025-03-10T13:10:00.101329-07:00,0.0,10.732212,10732.212 +28324,2025-03-10T13:10:10.842122-07:00,0.0,10.740793,10740.793 +28325,2025-03-10T13:10:21.568434-07:00,0.0,10.726312,10726.312 +28326,2025-03-10T13:10:32.300258-07:00,0.0,10.731824,10731.824 +28327,2025-03-10T13:10:43.034196-07:00,0.0,10.733938,10733.938 +28328,2025-03-10T13:10:53.764212-07:00,0.0,10.730016,10730.016 +28329,2025-03-10T13:11:04.490138-07:00,0.0,10.725926,10725.926 +28330,2025-03-10T13:11:15.223254-07:00,0.0,10.733116,10733.116 +28331,2025-03-10T13:11:25.957048-07:00,0.0,10.733794,10733.794 +28332,2025-03-10T13:11:36.689458-07:00,0.0,10.73241,10732.41 +28333,2025-03-10T13:11:47.416107-07:00,0.0,10.726649,10726.649 +28334,2025-03-10T13:11:58.155048-07:00,0.0,10.738941,10738.941 +28335,2025-03-10T13:12:08.887119-07:00,0.0,10.732071,10732.071 +28336,2025-03-10T13:12:19.614347-07:00,0.0,10.727228,10727.228 +28337,2025-03-10T13:12:30.345450-07:00,0.0,10.731103,10731.103 +28338,2025-03-10T13:12:41.076231-07:00,0.0,10.730781,10730.781 +28339,2025-03-10T13:12:51.802092-07:00,0.0,10.725861,10725.861 +28340,2025-03-10T13:13:02.535967-07:00,0.0,10.733875,10733.875 +28341,2025-03-10T13:13:13.258203-07:00,0.0,10.722236,10722.236 +28342,2025-03-10T13:13:23.996886-07:00,0.0,10.738683,10738.683 +28343,2025-03-10T13:13:34.720046-07:00,0.0,10.72316,10723.16 +28344,2025-03-10T13:13:45.451784-07:00,0.0,10.731738,10731.738 +28345,2025-03-10T13:13:56.181254-07:00,0.0,10.72947,10729.47 +28346,2025-03-10T13:14:06.903121-07:00,0.0,10.721867,10721.867 +28347,2025-03-10T13:14:17.634266-07:00,0.0,10.731145,10731.145 +28348,2025-03-10T13:14:28.364259-07:00,0.0,10.729993,10729.993 +28349,2025-03-10T13:14:39.091228-07:00,0.0,10.726969,10726.969 +28350,2025-03-10T13:14:49.830250-07:00,0.0,10.739022,10739.022 +28351,2025-03-10T13:15:00.559086-07:00,0.0,10.728836,10728.836 +28352,2025-03-10T13:15:11.287113-07:00,0.0,10.728027,10728.027 +28353,2025-03-10T13:15:22.019422-07:00,0.0,10.732309,10732.309 +28354,2025-03-10T13:15:32.754045-07:00,0.0,10.734623,10734.623 +28355,2025-03-10T13:15:43.480105-07:00,0.0,10.72606,10726.06 +28356,2025-03-10T13:15:54.206355-07:00,0.0,10.72625,10726.25 +28357,2025-03-10T13:16:04.944048-07:00,0.0,10.737693,10737.693 +28358,2025-03-10T13:16:15.665045-07:00,0.0,10.720997,10720.997 +28359,2025-03-10T13:16:26.390225-07:00,0.0,10.72518,10725.18 +28360,2025-03-10T13:16:37.127073-07:00,0.0,10.736848,10736.848 +28361,2025-03-10T13:16:47.852614-07:00,0.0,10.725541,10725.541 +28362,2025-03-10T13:16:58.578045-07:00,0.0,10.725431,10725.431 +28363,2025-03-10T13:17:09.299043-07:00,0.0,10.720998,10720.998 +28364,2025-03-10T13:17:20.035467-07:00,0.0,10.736424,10736.424 +28365,2025-03-10T13:17:30.765119-07:00,0.0,10.729652,10729.652 +28366,2025-03-10T13:17:41.492236-07:00,0.0,10.727117,10727.117 +28367,2025-03-10T13:17:52.224696-07:00,0.0,10.73246,10732.46 +28368,2025-03-10T13:18:02.953044-07:00,0.0,10.728348,10728.348 +28369,2025-03-10T13:18:13.681236-07:00,0.0,10.728192,10728.192 +28370,2025-03-10T13:18:24.415673-07:00,0.0,10.734437,10734.437 +28371,2025-03-10T13:18:35.142201-07:00,0.0,10.726528,10726.528 +28372,2025-03-10T13:18:45.871718-07:00,0.0,10.729517,10729.517 +28373,2025-03-10T13:18:56.595045-07:00,0.0,10.723327,10723.327 +28374,2025-03-10T13:19:07.330077-07:00,0.0,10.735032,10735.032 +28375,2025-03-10T13:19:18.067047-07:00,0.0,10.73697,10736.97 +28376,2025-03-10T13:19:28.788209-07:00,0.0,10.721162,10721.162 +28377,2025-03-10T13:19:39.527044-07:00,0.0,10.738835,10738.835 +28378,2025-03-10T13:19:50.249830-07:00,0.0,10.722786,10722.786 +28379,2025-03-10T13:20:00.985045-07:00,0.0,10.735215,10735.215 +28380,2025-03-10T13:20:11.706259-07:00,0.0,10.721214,10721.214 +28381,2025-03-10T13:20:22.447044-07:00,0.0,10.740785,10740.785 +28382,2025-03-10T13:20:33.166198-07:00,0.0,10.719154,10719.154 +28383,2025-03-10T13:20:43.899242-07:00,0.0,10.733044,10733.044 +28384,2025-03-10T13:20:54.625265-07:00,0.0,10.726023,10726.023 +28385,2025-03-10T13:21:05.357120-07:00,0.0,10.731855,10731.855 +28386,2025-03-10T13:21:16.089048-07:00,0.0,10.731928,10731.928 +28387,2025-03-10T13:21:26.819254-07:00,0.0,10.730206,10730.206 +28388,2025-03-10T13:21:37.545335-07:00,0.0,10.726081,10726.081 +28389,2025-03-10T13:21:48.270548-07:00,0.0,10.725213,10725.213 +28390,2025-03-10T13:21:59.007749-07:00,0.0,10.737201,10737.201 +28391,2025-03-10T13:22:09.732045-07:00,0.0,10.724296,10724.296 +28392,2025-03-10T13:22:20.468049-07:00,0.0,10.736004,10736.004 +28393,2025-03-10T13:22:31.196204-07:00,0.0,10.728155,10728.155 +28394,2025-03-10T13:22:41.923076-07:00,0.0,10.726872,10726.872 +28395,2025-03-10T13:22:52.657225-07:00,0.0,10.734149,10734.149 +28396,2025-03-10T13:23:03.378041-07:00,0.0,10.720816,10720.816 +28397,2025-03-10T13:23:14.105048-07:00,0.0,10.727007,10727.007 +28398,2025-03-10T13:23:24.844280-07:00,0.0,10.739232,10739.232 +28399,2025-03-10T13:23:35.564045-07:00,0.0,10.719765,10719.765 +28400,2025-03-10T13:23:46.296227-07:00,0.0,10.732182,10732.182 +28401,2025-03-10T13:23:57.025428-07:00,0.0,10.729201,10729.201 +28402,2025-03-10T13:24:07.750121-07:00,0.0,10.724693,10724.693 +28403,2025-03-10T13:24:18.485049-07:00,0.0,10.734928,10734.928 +28404,2025-03-10T13:24:29.219252-07:00,0.0,10.734203,10734.203 +28405,2025-03-10T13:24:39.950048-07:00,0.0,10.730796,10730.796 +28406,2025-03-10T13:24:50.674492-07:00,0.0,10.724444,10724.444 +28407,2025-03-10T13:25:01.400048-07:00,0.0,10.725556,10725.556 +28408,2025-03-10T13:25:12.139110-07:00,0.0,10.739062,10739.062 +28409,2025-03-10T13:25:22.858224-07:00,0.0,10.719114,10719.114 +28410,2025-03-10T13:25:33.597055-07:00,0.0,10.738831,10738.831 +28411,2025-03-10T13:25:44.328045-07:00,0.0,10.73099,10730.99 +28412,2025-03-10T13:25:55.053393-07:00,0.0,10.725348,10725.348 +28413,2025-03-10T13:26:05.782048-07:00,0.0,10.728655,10728.655 +28414,2025-03-10T13:26:16.516071-07:00,0.0,10.734023,10734.023 +28415,2025-03-10T13:26:27.249048-07:00,0.0,10.732977,10732.977 +28416,2025-03-10T13:26:37.973281-07:00,0.0,10.724233,10724.233 +28417,2025-03-10T13:26:48.706058-07:00,0.0,10.732777,10732.777 +28418,2025-03-10T13:26:59.437270-07:00,0.0,10.731212,10731.212 +28419,2025-03-10T13:27:10.162160-07:00,0.0,10.72489,10724.89 +28420,2025-03-10T13:27:20.895048-07:00,0.0,10.732888,10732.888 +28421,2025-03-10T13:27:31.623426-07:00,0.0,10.728378,10728.378 +28422,2025-03-10T13:27:42.355420-07:00,0.0,10.731994,10731.994 +28423,2025-03-10T13:27:53.093048-07:00,0.0,10.737628,10737.628 +28424,2025-03-10T13:28:03.818256-07:00,0.0,10.725208,10725.208 +28425,2025-03-10T13:28:14.551041-07:00,0.0,10.732785,10732.785 +28426,2025-03-10T13:28:25.292424-07:00,0.0,10.741383,10741.383 +28427,2025-03-10T13:28:36.023047-07:00,0.0,10.730623,10730.623 +28428,2025-03-10T13:28:46.753424-07:00,0.0,10.730377,10730.377 +28429,2025-03-10T13:28:57.489072-07:00,0.0,10.735648,10735.648 +28430,2025-03-10T13:29:08.230046-07:00,0.0,10.740974,10740.974 +28431,2025-03-10T13:29:18.955243-07:00,0.0,10.725197,10725.197 +28432,2025-03-10T13:29:29.699457-07:00,0.0,10.744214,10744.214 +28433,2025-03-10T13:29:40.433689-07:00,0.0,10.734232,10734.232 +28434,2025-03-10T13:29:51.165244-07:00,0.0,10.731555,10731.555 +28435,2025-03-10T13:30:01.893052-07:00,0.0,10.727808,10727.808 +28436,2025-03-10T13:30:12.627225-07:00,0.0,10.734173,10734.173 +28437,2025-03-10T13:30:23.360041-07:00,0.0,10.732816,10732.816 +28438,2025-03-10T13:30:34.084232-07:00,0.0,10.724191,10724.191 +28439,2025-03-10T13:30:44.826259-07:00,0.0,10.742027,10742.027 +28440,2025-03-10T13:30:55.556139-07:00,0.0,10.72988,10729.88 +28441,2025-03-10T13:31:06.281617-07:00,0.0,10.725478,10725.478 +28442,2025-03-10T13:31:17.020111-07:00,0.0,10.738494,10738.494 +28443,2025-03-10T13:31:27.746048-07:00,0.0,10.725937,10725.937 +28444,2025-03-10T13:31:38.477050-07:00,0.0,10.731002,10731.002 +28445,2025-03-10T13:31:49.210348-07:00,0.0,10.733298,10733.298 +28446,2025-03-10T13:31:59.946667-07:00,0.0,10.736319,10736.319 +28447,2025-03-10T13:32:10.675048-07:00,0.0,10.728381,10728.381 +28448,2025-03-10T13:32:21.412051-07:00,0.0,10.737003,10737.003 +28449,2025-03-10T13:32:32.145242-07:00,0.0,10.733191,10733.191 +28450,2025-03-10T13:32:42.868260-07:00,0.0,10.723018,10723.018 +28451,2025-03-10T13:32:53.603132-07:00,0.0,10.734872,10734.872 +28452,2025-03-10T13:33:04.340491-07:00,0.0,10.737359,10737.359 +28453,2025-03-10T13:33:15.075490-07:00,0.0,10.734999,10734.999 +28454,2025-03-10T13:33:25.809322-07:00,0.0,10.733832,10733.832 +28455,2025-03-10T13:33:36.544050-07:00,0.0,10.734728,10734.728 +28456,2025-03-10T13:33:47.273237-07:00,0.0,10.729187,10729.187 +28457,2025-03-10T13:33:58.005072-07:00,0.0,10.731835,10731.835 +28458,2025-03-10T13:34:08.736061-07:00,0.0,10.730989,10730.989 +28459,2025-03-10T13:34:19.475242-07:00,0.0,10.739181,10739.181 +28460,2025-03-10T13:34:30.202072-07:00,0.0,10.72683,10726.83 +28461,2025-03-10T13:34:40.942042-07:00,0.0,10.73997,10739.97 +28462,2025-03-10T13:34:51.676119-07:00,0.0,10.734077,10734.077 +28463,2025-03-10T13:35:02.411260-07:00,0.0,10.735141,10735.141 +28464,2025-03-10T13:35:13.144826-07:00,0.0,10.733566,10733.566 +28465,2025-03-10T13:35:23.873411-07:00,0.0,10.728585,10728.585 +28466,2025-03-10T13:35:34.598896-07:00,0.0,10.725485,10725.485 +28467,2025-03-10T13:35:45.334853-07:00,0.0,10.735957,10735.957 +28468,2025-03-10T13:35:56.074157-07:00,0.0,10.739304,10739.304 +28469,2025-03-10T13:36:06.805246-07:00,0.0,10.731089,10731.089 +28470,2025-03-10T13:36:17.530234-07:00,0.0,10.724988,10724.988 +28471,2025-03-10T13:36:28.267046-07:00,0.0,10.736812,10736.812 +28472,2025-03-10T13:36:38.997264-07:00,0.0,10.730218,10730.218 +28473,2025-03-10T13:36:49.731235-07:00,0.0,10.733971,10733.971 +28474,2025-03-10T13:37:00.470225-07:00,0.0,10.73899,10738.99 +28475,2025-03-10T13:37:11.196069-07:00,0.0,10.725844,10725.844 +28476,2025-03-10T13:37:21.929049-07:00,0.0,10.73298,10732.98 +28477,2025-03-10T13:37:32.659534-07:00,0.0,10.730485,10730.485 +28478,2025-03-10T13:37:43.390057-07:00,0.0,10.730523,10730.523 +28479,2025-03-10T13:37:54.125045-07:00,0.0,10.734988,10734.988 +28480,2025-03-10T13:38:04.860240-07:00,0.0,10.735195,10735.195 +28481,2025-03-10T13:38:15.596592-07:00,0.0,10.736352,10736.352 +28482,2025-03-10T13:38:26.318251-07:00,0.0,10.721659,10721.659 +28483,2025-03-10T13:38:37.056184-07:00,0.0,10.737933,10737.933 +28484,2025-03-10T13:38:47.786478-07:00,0.0,10.730294,10730.294 +28485,2025-03-10T13:38:58.521045-07:00,0.0,10.734567,10734.567 +28486,2025-03-10T13:39:09.247252-07:00,0.0,10.726207,10726.207 +28487,2025-03-10T13:39:19.971246-07:00,0.0,10.723994,10723.994 +28488,2025-03-10T13:39:30.704170-07:00,0.0,10.732924,10732.924 +28489,2025-03-10T13:39:41.436048-07:00,0.0,10.731878,10731.878 +28490,2025-03-10T13:39:52.168133-07:00,0.0,10.732085,10732.085 +28491,2025-03-10T13:40:02.903049-07:00,0.0,10.734916,10734.916 +28492,2025-03-10T13:40:13.636162-07:00,0.0,10.733113,10733.113 +28493,2025-03-10T13:40:24.374450-07:00,0.0,10.738288,10738.288 +28494,2025-03-10T13:40:35.105244-07:00,0.0,10.730794,10730.794 +28495,2025-03-10T13:40:45.843046-07:00,0.0,10.737802,10737.802 +28496,2025-03-10T13:40:56.569053-07:00,0.0,10.726007,10726.007 +28497,2025-03-10T13:41:07.306418-07:00,0.0,10.737365,10737.365 +28498,2025-03-10T13:41:18.038225-07:00,0.0,10.731807,10731.807 +28499,2025-03-10T13:41:28.771067-07:00,0.0,10.732842,10732.842 +28500,2025-03-10T13:41:35.514087-07:00,383.0,6.74302,6743.02 +28501,2025-03-10T13:41:39.509228-07:00,374.0,3.995141,3995.141 +28502,2025-03-10T13:41:50.236256-07:00,463.0,10.727028,10727.028 +28503,2025-03-10T13:42:00.971046-07:00,395.0,10.73479,10734.79 +28504,2025-03-10T13:42:11.698287-07:00,469.0,10.727241,10727.241 +28505,2025-03-10T13:42:22.433228-07:00,357.0,10.734941,10734.941 +28506,2025-03-10T13:42:33.161048-07:00,386.0,10.72782,10727.82 +28507,2025-03-10T13:42:43.897073-07:00,439.0,10.736025,10736.025 +28508,2025-03-10T13:42:54.627206-07:00,464.0,10.730133,10730.133 +28509,2025-03-10T13:43:05.365306-07:00,417.0,10.7381,10738.1 +28510,2025-03-10T13:43:16.091069-07:00,449.0,10.725763,10725.763 +28511,2025-03-10T13:43:26.830247-07:00,413.0,10.739178,10739.178 +28512,2025-03-10T13:43:37.558214-07:00,427.0,10.727967,10727.967 +28513,2025-03-10T13:43:48.288072-07:00,434.0,10.729858,10729.858 +28514,2025-03-10T13:43:59.027046-07:00,337.0,10.738974,10738.974 +28515,2025-03-10T13:44:09.757242-07:00,346.0,10.730196,10730.196 +28516,2025-03-10T13:44:20.487282-07:00,402.0,10.73004,10730.04 +28517,2025-03-10T13:44:31.228795-07:00,434.0,10.741513,10741.513 +28518,2025-03-10T13:44:41.957051-07:00,398.0,10.728256,10728.256 +28519,2025-03-10T13:44:52.685099-07:00,335.0,10.728048,10728.048 +28520,2025-03-10T13:45:03.421049-07:00,360.0,10.73595,10735.95 +28521,2025-03-10T13:45:14.147493-07:00,298.0,10.726444,10726.444 +28522,2025-03-10T13:45:24.885279-07:00,375.0,10.737786,10737.786 +28523,2025-03-10T13:45:35.615050-07:00,354.0,10.729771,10729.771 +28524,2025-03-10T13:45:46.342051-07:00,425.0,10.727001,10727.001 +28525,2025-03-10T13:45:57.076239-07:00,429.0,10.734188,10734.188 +28526,2025-03-10T13:46:07.814083-07:00,418.0,10.737844,10737.844 +28527,2025-03-10T13:46:18.541044-07:00,446.0,10.726961,10726.961 +28528,2025-03-10T13:46:29.269217-07:00,437.0,10.728173,10728.173 +28529,2025-03-10T13:46:40.001273-07:00,407.0,10.732056,10732.056 +28530,2025-03-10T13:46:50.737048-07:00,370.0,10.735775,10735.775 +28531,2025-03-10T13:47:01.475046-07:00,417.0,10.737998,10737.998 +28532,2025-03-10T13:47:12.201072-07:00,435.0,10.726026,10726.026 +28533,2025-03-10T13:47:22.939067-07:00,423.0,10.737995,10737.995 +28534,2025-03-10T13:47:33.671045-07:00,371.0,10.731978,10731.978 +28535,2025-03-10T13:47:44.400234-07:00,433.0,10.729189,10729.189 +28536,2025-03-10T13:47:55.136042-07:00,427.0,10.735808,10735.808 +28537,2025-03-10T13:48:05.867048-07:00,336.0,10.731006,10731.006 +28538,2025-03-10T13:48:16.602347-07:00,422.0,10.735299,10735.299 +28539,2025-03-10T13:48:27.325095-07:00,412.0,10.722748,10722.748 +28540,2025-03-10T13:48:38.064082-07:00,368.0,10.738987,10738.987 +28541,2025-03-10T13:48:48.796367-07:00,389.0,10.732285,10732.285 +28542,2025-03-10T13:48:59.524055-07:00,397.0,10.727688,10727.688 +28543,2025-03-10T13:49:10.254244-07:00,435.0,10.730189,10730.189 +28544,2025-03-10T13:49:20.984070-07:00,394.0,10.729826,10729.826 +28545,2025-03-10T13:49:31.714225-07:00,422.0,10.730155,10730.155 +28546,2025-03-10T13:49:42.440265-07:00,443.0,10.72604,10726.04 +28547,2025-03-10T13:49:53.174265-07:00,398.0,10.734,10734.0 +28548,2025-03-10T13:50:03.903226-07:00,401.0,10.728961,10728.961 +28549,2025-03-10T13:50:14.633048-07:00,311.0,10.729822,10729.822 +28550,2025-03-10T13:50:25.357217-07:00,400.0,10.724169,10724.169 +28551,2025-03-10T13:50:36.094071-07:00,400.0,10.736854,10736.854 +28552,2025-03-10T13:50:46.826050-07:00,373.0,10.731979,10731.979 +28553,2025-03-10T13:50:57.551234-07:00,383.0,10.725184,10725.184 +28554,2025-03-10T13:51:08.286238-07:00,340.0,10.735004,10735.004 +28555,2025-03-10T13:51:19.017045-07:00,343.0,10.730807,10730.807 +28556,2025-03-10T13:51:29.755048-07:00,384.0,10.738003,10738.003 +28557,2025-03-10T13:51:40.481615-07:00,345.0,10.726567,10726.567 +28558,2025-03-10T13:51:51.209107-07:00,391.0,10.727492,10727.492 +28559,2025-03-10T13:52:01.939229-07:00,397.0,10.730122,10730.122 +28560,2025-03-10T13:52:12.669172-07:00,398.0,10.729943,10729.943 +28561,2025-03-10T13:52:23.404048-07:00,370.0,10.734876,10734.876 +28562,2025-03-10T13:52:34.132414-07:00,398.0,10.728366,10728.366 +28563,2025-03-10T13:52:44.866960-07:00,347.0,10.734546,10734.546 +28564,2025-03-10T13:52:55.596048-07:00,322.0,10.729088,10729.088 +28565,2025-03-10T13:53:06.288179-07:00,379.0,10.692131,10692.131 +28566,2025-03-10T13:53:17.021589-07:00,388.0,10.73341,10733.41 +28567,2025-03-10T13:53:27.755974-07:00,303.0,10.734385,10734.385 +28568,2025-03-10T13:53:38.487037-07:00,389.0,10.731063,10731.063 +28569,2025-03-10T13:53:49.219131-07:00,339.0,10.732094,10732.094 +28570,2025-03-10T13:53:59.944979-07:00,371.0,10.725848,10725.848 +28571,2025-03-10T13:54:10.680969-07:00,289.0,10.73599,10735.99 +28572,2025-03-10T13:54:21.409152-07:00,383.0,10.728183,10728.183 +28573,2025-03-10T13:54:32.141004-07:00,402.0,10.731852,10731.852 +28574,2025-03-10T13:54:42.873976-07:00,405.0,10.732972,10732.972 +28575,2025-03-10T13:54:53.604324-07:00,437.0,10.730348,10730.348 +28576,2025-03-10T13:55:04.326040-07:00,337.0,10.721716,10721.716 +28577,2025-03-10T13:55:15.052178-07:00,416.0,10.726138,10726.138 +28578,2025-03-10T13:55:25.784229-07:00,431.0,10.732051,10732.051 +28579,2025-03-10T13:55:36.513974-07:00,349.0,10.729745,10729.745 +28580,2025-03-10T13:55:47.246975-07:00,432.0,10.733001,10733.001 +28581,2025-03-10T13:55:57.971970-07:00,421.0,10.724995,10724.995 +28582,2025-03-10T13:56:08.696984-07:00,310.0,10.725014,10725.014 +28583,2025-03-10T13:56:19.433893-07:00,343.0,10.736909,10736.909 +28584,2025-03-10T13:56:30.158064-07:00,368.0,10.724171,10724.171 +28585,2025-03-10T13:56:40.890047-07:00,375.0,10.731983,10731.983 +28586,2025-03-10T13:56:51.620495-07:00,387.0,10.730448,10730.448 +28587,2025-03-10T13:57:02.351022-07:00,397.0,10.730527,10730.527 +28588,2025-03-10T13:57:13.071155-07:00,418.0,10.720133,10720.133 +28589,2025-03-10T13:57:23.806748-07:00,384.0,10.735593,10735.593 +28590,2025-03-10T13:57:34.538072-07:00,356.0,10.731324,10731.324 +28591,2025-03-10T13:57:45.267254-07:00,395.0,10.729182,10729.182 +28592,2025-03-10T13:57:56.000158-07:00,398.0,10.732904,10732.904 +28593,2025-03-10T13:58:06.725063-07:00,314.0,10.724905,10724.905 +28594,2025-03-10T13:58:17.457164-07:00,317.0,10.732101,10732.101 +28595,2025-03-10T13:58:28.178969-07:00,371.0,10.721805,10721.805 +28596,2025-03-10T13:58:38.913979-07:00,379.0,10.73501,10735.01 +28597,2025-03-10T13:58:49.643987-07:00,351.0,10.730008,10730.008 +28598,2025-03-10T13:59:00.374121-07:00,362.0,10.730134,10730.134 +28599,2025-03-10T13:59:11.103038-07:00,411.0,10.728917,10728.917 +28600,2025-03-10T13:59:21.831175-07:00,400.0,10.728137,10728.137 +28601,2025-03-10T13:59:32.562973-07:00,303.0,10.731798,10731.798 +28602,2025-03-10T13:59:43.294185-07:00,414.0,10.731212,10731.212 +28603,2025-03-10T13:59:54.023158-07:00,389.0,10.728973,10728.973 +28604,2025-03-10T14:00:04.754978-07:00,403.0,10.73182,10731.82 +28605,2025-03-10T14:00:15.493041-07:00,421.0,10.738063,10738.063 +28606,2025-03-10T14:00:26.222179-07:00,406.0,10.729138,10729.138 +28607,2025-03-10T14:00:36.950092-07:00,389.0,10.727913,10727.913 +28608,2025-03-10T14:00:47.684113-07:00,399.0,10.734021,10734.021 +28609,2025-03-10T14:00:58.408990-07:00,400.0,10.724877,10724.877 +28610,2025-03-10T14:01:09.144984-07:00,333.0,10.735994,10735.994 +28611,2025-03-10T14:01:19.871972-07:00,414.0,10.726988,10726.988 +28612,2025-03-10T14:01:30.607145-07:00,412.0,10.735173,10735.173 +28613,2025-03-10T14:01:41.337798-07:00,387.0,10.730653,10730.653 +28614,2025-03-10T14:01:52.060116-07:00,432.0,10.722318,10722.318 +28615,2025-03-10T14:02:02.796119-07:00,304.0,10.736003,10736.003 +28616,2025-03-10T14:02:13.528933-07:00,271.0,10.732814,10732.814 +28617,2025-03-10T14:02:24.250977-07:00,366.0,10.722044,10722.044 +28618,2025-03-10T14:02:34.984387-07:00,339.0,10.73341,10733.41 +28619,2025-03-10T14:02:45.714972-07:00,295.0,10.730585,10730.585 +28620,2025-03-10T14:02:56.450975-07:00,385.0,10.736003,10736.003 +28621,2025-03-10T14:03:07.180968-07:00,304.0,10.729993,10729.993 +28622,2025-03-10T14:03:17.907062-07:00,427.0,10.726094,10726.094 +28623,2025-03-10T14:03:28.632976-07:00,400.0,10.725914,10725.914 +28624,2025-03-10T14:03:39.359161-07:00,418.0,10.726185,10726.185 +28625,2025-03-10T14:03:50.094993-07:00,382.0,10.735832,10735.832 +28626,2025-03-10T14:04:00.814978-07:00,413.0,10.719985,10719.985 +28627,2025-03-10T14:04:11.551180-07:00,418.0,10.736202,10736.202 +28628,2025-03-10T14:04:22.282077-07:00,380.0,10.730897,10730.897 +28629,2025-03-10T14:04:33.013326-07:00,399.0,10.731249,10731.249 +28630,2025-03-10T14:04:43.738159-07:00,322.0,10.724833,10724.833 +28631,2025-03-10T14:04:54.462975-07:00,359.0,10.724816,10724.816 +28632,2025-03-10T14:05:05.193868-07:00,327.0,10.730893,10730.893 +28633,2025-03-10T14:05:15.925090-07:00,407.0,10.731222,10731.222 +28634,2025-03-10T14:05:26.650161-07:00,388.0,10.725071,10725.071 +28635,2025-03-10T14:05:37.382138-07:00,390.0,10.731977,10731.977 +28636,2025-03-10T14:05:48.118586-07:00,429.0,10.736448,10736.448 +28637,2025-03-10T14:05:58.841738-07:00,367.0,10.723152,10723.152 +28638,2025-03-10T14:06:09.569152-07:00,426.0,10.727414,10727.414 +28639,2025-03-10T14:06:20.300972-07:00,372.0,10.73182,10731.82 +28640,2025-03-10T14:06:31.031088-07:00,411.0,10.730116,10730.116 +28641,2025-03-10T14:06:41.765223-07:00,320.0,10.734135,10734.135 +28642,2025-03-10T14:06:52.494970-07:00,420.0,10.729747,10729.747 +28643,2025-03-10T14:07:03.221204-07:00,321.0,10.726234,10726.234 +28644,2025-03-10T14:07:13.949154-07:00,304.0,10.72795,10727.95 +28645,2025-03-10T14:07:24.677975-07:00,400.0,10.728821,10728.821 +28646,2025-03-10T14:07:35.403375-07:00,399.0,10.7254,10725.4 +28647,2025-03-10T14:07:46.124972-07:00,351.0,10.721597,10721.597 +28648,2025-03-10T14:07:56.859974-07:00,410.0,10.735002,10735.002 +28649,2025-03-10T14:08:07.589364-07:00,417.0,10.72939,10729.39 +28650,2025-03-10T14:08:18.314004-07:00,394.0,10.72464,10724.64 +28651,2025-03-10T14:08:29.037201-07:00,413.0,10.723197,10723.197 +28652,2025-03-10T14:08:39.760975-07:00,313.0,10.723774,10723.774 +28653,2025-03-10T14:08:50.486970-07:00,401.0,10.725995,10725.995 +28654,2025-03-10T14:09:01.213024-07:00,421.0,10.726054,10726.054 +28655,2025-03-10T14:09:11.936974-07:00,319.0,10.72395,10723.95 +28656,2025-03-10T14:09:22.664153-07:00,306.0,10.727179,10727.179 +28657,2025-03-10T14:09:33.385974-07:00,394.0,10.721821,10721.821 +28658,2025-03-10T14:09:44.110163-07:00,403.0,10.724189,10724.189 +28659,2025-03-10T14:09:54.826981-07:00,287.0,10.716818,10716.818 +28660,2025-03-10T14:10:05.555825-07:00,289.0,10.728844,10728.844 +28661,2025-03-10T14:10:16.285063-07:00,264.0,10.729238,10729.238 +28662,2025-03-10T14:10:27.005982-07:00,327.0,10.720919,10720.919 +28663,2025-03-10T14:10:37.737888-07:00,391.0,10.731906,10731.906 +28664,2025-03-10T14:10:48.456145-07:00,416.0,10.718257,10718.257 +28665,2025-03-10T14:10:59.185117-07:00,398.0,10.728972,10728.972 +28666,2025-03-10T14:11:09.919176-07:00,420.0,10.734059,10734.059 +28667,2025-03-10T14:11:20.643975-07:00,365.0,10.724799,10724.799 +28668,2025-03-10T14:11:31.378281-07:00,407.0,10.734306,10734.306 +28669,2025-03-10T14:11:42.104190-07:00,353.0,10.725909,10725.909 +28670,2025-03-10T14:11:52.829181-07:00,381.0,10.724991,10724.991 +28671,2025-03-10T14:12:03.568146-07:00,413.0,10.738965,10738.965 +28672,2025-03-10T14:12:14.290206-07:00,330.0,10.72206,10722.06 +28673,2025-03-10T14:12:25.021972-07:00,334.0,10.731766,10731.766 +28674,2025-03-10T14:12:35.755028-07:00,400.0,10.733056,10733.056 +28675,2025-03-10T14:12:46.481649-07:00,394.0,10.726621,10726.621 +28676,2025-03-10T14:12:57.207179-07:00,333.0,10.72553,10725.53 +28677,2025-03-10T14:13:07.935182-07:00,275.0,10.728003,10728.003 +28678,2025-03-10T14:13:18.661975-07:00,326.0,10.726793,10726.793 +28679,2025-03-10T14:13:29.399150-07:00,415.0,10.737175,10737.175 +28680,2025-03-10T14:13:40.127039-07:00,317.0,10.727889,10727.889 +28681,2025-03-10T14:13:50.863003-07:00,305.0,10.735964,10735.964 +28682,2025-03-10T14:13:58.900350-07:00,0.0,8.037347,8037.347 +28683,2025-03-10T14:14:01.594168-07:00,0.0,2.693818,2693.818 +28684,2025-03-10T14:14:12.322137-07:00,0.0,10.727969,10727.969 +28685,2025-03-10T14:14:23.056363-07:00,0.0,10.734226,10734.226 +28686,2025-03-10T14:14:24.975161-07:00,226.0,1.918798,1918.798 +28687,2025-03-10T14:14:33.783023-07:00,406.0,8.807862,8807.862 +28688,2025-03-10T14:14:44.516995-07:00,414.0,10.733972,10733.972 +28689,2025-03-10T14:14:55.248974-07:00,359.0,10.731979,10731.979 +28690,2025-03-10T14:15:05.969151-07:00,437.0,10.720177,10720.177 +28691,2025-03-10T14:15:16.701497-07:00,414.0,10.732346,10732.346 +28692,2025-03-10T14:15:27.426973-07:00,432.0,10.725476,10725.476 +28693,2025-03-10T14:15:38.162154-07:00,405.0,10.735181,10735.181 +28694,2025-03-10T14:15:48.890180-07:00,432.0,10.728026,10728.026 +28695,2025-03-10T14:15:59.611153-07:00,320.0,10.720973,10720.973 +28696,2025-03-10T14:16:10.349182-07:00,400.0,10.738029,10738.029 +28697,2025-03-10T14:16:21.073175-07:00,298.0,10.723993,10723.993 +28698,2025-03-10T14:16:31.806005-07:00,311.0,10.73283,10732.83 +28699,2025-03-10T14:16:42.543395-07:00,317.0,10.73739,10737.39 +28700,2025-03-10T14:16:53.274975-07:00,414.0,10.73158,10731.58 +28701,2025-03-10T14:17:04.006001-07:00,343.0,10.731026,10731.026 +28702,2025-03-10T14:17:14.736084-07:00,309.0,10.730083,10730.083 +28703,2025-03-10T14:17:25.464973-07:00,414.0,10.728889,10728.889 +28704,2025-03-10T14:17:36.192173-07:00,393.0,10.7272,10727.2 +28705,2025-03-10T14:17:46.928160-07:00,421.0,10.735987,10735.987 +28706,2025-03-10T14:17:57.656975-07:00,378.0,10.728815,10728.815 +28707,2025-03-10T14:18:08.381378-07:00,380.0,10.724403,10724.403 +28708,2025-03-10T14:18:19.117163-07:00,387.0,10.735785,10735.785 +28709,2025-03-10T14:18:29.843182-07:00,427.0,10.726019,10726.019 +28710,2025-03-10T14:18:40.571049-07:00,386.0,10.727867,10727.867 +28711,2025-03-10T14:18:51.304838-07:00,371.0,10.733789,10733.789 +28712,2025-03-10T14:19:02.037009-07:00,368.0,10.732171,10732.171 +28713,2025-03-10T14:19:12.768982-07:00,366.0,10.731973,10731.973 +28714,2025-03-10T14:19:23.497413-07:00,295.0,10.728431,10728.431 +28715,2025-03-10T14:19:34.233969-07:00,418.0,10.736556,10736.556 +28716,2025-03-10T14:19:44.963189-07:00,307.0,10.72922,10729.22 +28717,2025-03-10T14:19:55.691187-07:00,336.0,10.727998,10727.998 +28718,2025-03-10T14:20:06.422148-07:00,401.0,10.730961,10730.961 +28719,2025-03-10T14:20:17.150062-07:00,394.0,10.727914,10727.914 +28720,2025-03-10T14:20:27.876421-07:00,400.0,10.726359,10726.359 +28721,2025-03-10T14:20:38.612280-07:00,413.0,10.735859,10735.859 +28722,2025-03-10T14:20:49.346210-07:00,387.0,10.73393,10733.93 +28723,2025-03-10T14:21:00.078132-07:00,385.0,10.731922,10731.922 +28724,2025-03-10T14:21:10.806972-07:00,412.0,10.72884,10728.84 +28725,2025-03-10T14:21:21.532090-07:00,387.0,10.725118,10725.118 +28726,2025-03-10T14:21:32.270784-07:00,367.0,10.738694,10738.694 +28727,2025-03-10T14:21:43.000001-07:00,320.0,10.729217,10729.217 +28728,2025-03-10T14:21:53.722178-07:00,304.0,10.722177,10722.177 +28729,2025-03-10T14:22:04.458125-07:00,302.0,10.735947,10735.947 +28730,2025-03-10T14:22:15.188196-07:00,302.0,10.730071,10730.071 +28731,2025-03-10T14:22:25.917969-07:00,416.0,10.729773,10729.773 +28732,2025-03-10T14:22:36.649148-07:00,413.0,10.731179,10731.179 +28733,2025-03-10T14:22:47.370129-07:00,363.0,10.720981,10720.981 +28734,2025-03-10T14:22:58.099021-07:00,383.0,10.728892,10728.892 +28735,2025-03-10T14:23:08.831000-07:00,357.0,10.731979,10731.979 +28736,2025-03-10T14:23:19.562968-07:00,391.0,10.731968,10731.968 +28737,2025-03-10T14:23:30.291455-07:00,384.0,10.728487,10728.487 +28738,2025-03-10T14:23:41.027732-07:00,406.0,10.736277,10736.277 +28739,2025-03-10T14:23:51.748972-07:00,389.0,10.72124,10721.24 +28740,2025-03-10T14:24:02.490364-07:00,394.0,10.741392,10741.392 +28741,2025-03-10T14:24:13.221153-07:00,389.0,10.730789,10730.789 +28742,2025-03-10T14:24:23.952975-07:00,411.0,10.731822,10731.822 +28743,2025-03-10T14:24:34.683144-07:00,412.0,10.730169,10730.169 +28744,2025-03-10T14:24:45.418804-07:00,358.0,10.73566,10735.66 +28745,2025-03-10T14:24:56.148969-07:00,378.0,10.730165,10730.165 +28746,2025-03-10T14:25:06.881986-07:00,398.0,10.733017,10733.017 +28747,2025-03-10T14:25:17.606407-07:00,397.0,10.724421,10724.421 +28748,2025-03-10T14:25:28.337207-07:00,369.0,10.7308,10730.8 +28749,2025-03-10T14:25:39.079043-07:00,394.0,10.741836,10741.836 +28750,2025-03-10T14:25:49.807240-07:00,315.0,10.728197,10728.197 +28751,2025-03-10T14:26:00.535113-07:00,385.0,10.727873,10727.873 +28752,2025-03-10T14:26:11.276131-07:00,375.0,10.741018,10741.018 +28753,2025-03-10T14:26:21.997974-07:00,390.0,10.721843,10721.843 +28754,2025-03-10T14:26:32.730625-07:00,357.0,10.732651,10732.651 +28755,2025-03-10T14:26:43.462971-07:00,275.0,10.732346,10732.346 +28756,2025-03-10T14:26:54.190174-07:00,390.0,10.727203,10727.203 +28757,2025-03-10T14:27:04.930363-07:00,398.0,10.740189,10740.189 +28758,2025-03-10T14:27:15.653974-07:00,350.0,10.723611,10723.611 +28759,2025-03-10T14:27:26.384999-07:00,364.0,10.731025,10731.025 +28760,2025-03-10T14:27:37.114161-07:00,277.0,10.729162,10729.162 +28761,2025-03-10T14:27:47.843973-07:00,297.0,10.729812,10729.812 +28762,2025-03-10T14:27:58.576246-07:00,342.0,10.732273,10732.273 +28763,2025-03-10T14:28:09.312810-07:00,323.0,10.736564,10736.564 +28764,2025-03-10T14:28:20.037110-07:00,332.0,10.7243,10724.3 +28765,2025-03-10T14:28:30.768193-07:00,293.0,10.731083,10731.083 +28766,2025-03-10T14:28:41.510083-07:00,415.0,10.74189,10741.89 +28767,2025-03-10T14:28:52.236000-07:00,332.0,10.725917,10725.917 +28768,2025-03-10T14:29:02.973972-07:00,433.0,10.737972,10737.972 +28769,2025-03-10T14:29:13.704164-07:00,397.0,10.730192,10730.192 +28770,2025-03-10T14:29:24.432659-07:00,345.0,10.728495,10728.495 +28771,2025-03-10T14:29:35.165119-07:00,409.0,10.73246,10732.46 +28772,2025-03-10T14:29:45.900269-07:00,339.0,10.73515,10735.15 +28773,2025-03-10T14:29:56.633143-07:00,337.0,10.732874,10732.874 +28774,2025-03-10T14:30:07.366100-07:00,335.0,10.732957,10732.957 +28775,2025-03-10T14:30:18.093348-07:00,379.0,10.727248,10727.248 +28776,2025-03-10T14:30:28.826484-07:00,370.0,10.733136,10733.136 +28777,2025-03-10T14:30:39.565414-07:00,386.0,10.73893,10738.93 +28778,2025-03-10T14:30:50.300977-07:00,395.0,10.735563,10735.563 +28779,2025-03-10T14:31:01.027082-07:00,378.0,10.726105,10726.105 +28780,2025-03-10T14:31:11.761456-07:00,406.0,10.734374,10734.374 +28781,2025-03-10T14:31:22.493969-07:00,386.0,10.732513,10732.513 +28782,2025-03-10T14:31:33.233354-07:00,310.0,10.739385,10739.385 +28783,2025-03-10T14:31:43.961146-07:00,367.0,10.727792,10727.792 +28784,2025-03-10T14:31:54.702157-07:00,342.0,10.741011,10741.011 +28785,2025-03-10T14:32:05.434968-07:00,404.0,10.732811,10732.811 +28786,2025-03-10T14:32:16.165378-07:00,291.0,10.73041,10730.41 +28787,2025-03-10T14:32:26.901191-07:00,398.0,10.735813,10735.813 +28788,2025-03-10T14:32:37.638148-07:00,371.0,10.736957,10736.957 +28789,2025-03-10T14:32:48.370180-07:00,304.0,10.732032,10732.032 +28790,2025-03-10T14:32:59.107033-07:00,368.0,10.736853,10736.853 +28791,2025-03-10T14:33:09.840176-07:00,306.0,10.733143,10733.143 +28792,2025-03-10T14:33:09.920347-07:00,0.0,0.080171,80.171 +28793,2025-03-10T14:33:20.576168-07:00,0.0,10.655821,10655.821 +28794,2025-03-10T14:33:31.309972-07:00,0.0,10.733804,10733.804 +28795,2025-03-10T14:33:42.037194-07:00,0.0,10.727222,10727.222 +28796,2025-03-10T14:33:42.843675-07:00,0.0,0.806481,806.481 +28797,2025-03-10T14:33:52.780003-07:00,0.0,9.936328,9936.328 +28798,2025-03-10T14:34:03.516369-07:00,0.0,10.736366,10736.366 +28799,2025-03-10T14:34:12.119161-07:00,306.0,8.602792,8602.792 +28800,2025-03-10T14:34:14.250975-07:00,397.0,2.131814,2131.814 +28801,2025-03-10T14:34:24.983051-07:00,335.0,10.732076,10732.076 +28802,2025-03-10T14:34:35.714194-07:00,371.0,10.731143,10731.143 +28803,2025-03-10T14:34:46.452156-07:00,331.0,10.737962,10737.962 +28804,2025-03-10T14:34:57.185706-07:00,358.0,10.73355,10733.55 +28805,2025-03-10T14:35:07.923972-07:00,406.0,10.738266,10738.266 +28806,2025-03-10T14:35:18.661978-07:00,415.0,10.738006,10738.006 +28807,2025-03-10T14:35:29.389420-07:00,336.0,10.727442,10727.442 +28808,2025-03-10T14:35:40.133242-07:00,361.0,10.743822,10743.822 +28809,2025-03-10T14:35:50.862037-07:00,377.0,10.728795,10728.795 +28810,2025-03-10T14:36:01.604049-07:00,381.0,10.742012,10742.012 +28811,2025-03-10T14:36:12.340156-07:00,238.0,10.736107,10736.107 +28812,2025-03-10T14:36:14.451585-07:00,400.0,2.111429,2111.429 +28813,2025-03-10T14:36:23.080155-07:00,333.0,8.62857,8628.57 +28814,2025-03-10T14:36:33.818002-07:00,317.0,10.737847,10737.847 +28815,2025-03-10T14:36:44.555455-07:00,275.0,10.737453,10737.453 +28816,2025-03-10T14:36:55.290667-07:00,355.0,10.735212,10735.212 +28817,2025-03-10T14:37:06.021190-07:00,387.0,10.730523,10730.523 +28818,2025-03-10T14:37:16.749976-07:00,404.0,10.728786,10728.786 +28819,2025-03-10T14:37:27.484969-07:00,371.0,10.734993,10734.993 +28820,2025-03-10T14:37:38.227066-07:00,405.0,10.742097,10742.097 +28821,2025-03-10T14:37:48.965225-07:00,336.0,10.738159,10738.159 +28822,2025-03-10T14:37:54.683413-07:00,0.0,5.718188,5718.188 +28823,2025-03-10T14:37:59.691976-07:00,0.0,5.008563,5008.563 +28824,2025-03-10T14:38:10.434974-07:00,0.0,10.742998,10742.998 +28825,2025-03-10T14:38:21.176161-07:00,0.0,10.741187,10741.187 +28826,2025-03-10T14:38:31.906034-07:00,0.0,10.729873,10729.873 +28827,2025-03-10T14:38:42.648144-07:00,0.0,10.74211,10742.11 +28828,2025-03-10T14:38:53.385184-07:00,0.0,10.73704,10737.04 +28829,2025-03-10T14:39:04.122045-07:00,0.0,10.736861,10736.861 +28830,2025-03-10T14:39:14.857971-07:00,0.0,10.735926,10735.926 +28831,2025-03-10T14:39:25.588773-07:00,0.0,10.730802,10730.802 +28832,2025-03-10T14:39:36.329299-07:00,0.0,10.740526,10740.526 +28833,2025-03-10T14:39:47.066003-07:00,0.0,10.736704,10736.704 +28834,2025-03-10T14:39:57.798019-07:00,0.0,10.732016,10732.016 +28835,2025-03-10T14:40:08.536974-07:00,0.0,10.738955,10738.955 +28836,2025-03-10T14:40:19.272185-07:00,0.0,10.735211,10735.211 +28837,2025-03-10T14:40:29.998217-07:00,0.0,10.726032,10726.032 +28838,2025-03-10T14:40:40.740038-07:00,0.0,10.741821,10741.821 +28839,2025-03-10T14:40:51.473481-07:00,0.0,10.733443,10733.443 +28840,2025-03-10T14:41:02.214614-07:00,0.0,10.741133,10741.133 +28841,2025-03-10T14:41:12.943972-07:00,0.0,10.729358,10729.358 +28842,2025-03-10T14:41:21.296485-07:00,316.0,8.352513,8352.513 +28843,2025-03-10T14:41:23.683972-07:00,397.0,2.387487,2387.487 +28844,2025-03-10T14:41:34.419978-07:00,377.0,10.736006,10736.006 +28845,2025-03-10T14:41:35.345413-07:00,0.0,0.925435,925.435 +28846,2025-03-10T14:41:45.149159-07:00,0.0,9.803746,9803.746 +28847,2025-03-10T14:41:55.889000-07:00,0.0,10.739841,10739.841 +28848,2025-03-10T14:42:06.622974-07:00,0.0,10.733974,10733.974 +28849,2025-03-10T14:42:17.363009-07:00,0.0,10.740035,10740.035 +28850,2025-03-10T14:42:28.103996-07:00,0.0,10.740987,10740.987 +28851,2025-03-10T14:42:38.839300-07:00,0.0,10.735304,10735.304 +28852,2025-03-10T14:42:49.572977-07:00,0.0,10.733677,10733.677 +28853,2025-03-10T14:43:00.311976-07:00,0.0,10.738999,10738.999 +28854,2025-03-10T14:43:11.041387-07:00,0.0,10.729411,10729.411 +28855,2025-03-10T14:43:21.781036-07:00,0.0,10.739649,10739.649 +28856,2025-03-10T14:43:32.527068-07:00,0.0,10.746032,10746.032 +28857,2025-03-10T14:43:43.255125-07:00,0.0,10.728057,10728.057 +28858,2025-03-10T14:43:53.998185-07:00,0.0,10.74306,10743.06 +28859,2025-03-10T14:44:04.731977-07:00,0.0,10.733792,10733.792 +28860,2025-03-10T14:44:15.473366-07:00,0.0,10.741389,10741.389 +28861,2025-03-10T14:44:26.210154-07:00,0.0,10.736788,10736.788 +28862,2025-03-10T14:44:36.946616-07:00,0.0,10.736462,10736.462 +28863,2025-03-10T14:44:47.686132-07:00,0.0,10.739516,10739.516 +28864,2025-03-10T14:44:58.425972-07:00,0.0,10.73984,10739.84 +28865,2025-03-10T14:45:09.168975-07:00,0.0,10.743003,10743.003 +28866,2025-03-10T14:45:19.907130-07:00,0.0,10.738155,10738.155 +28867,2025-03-10T14:45:30.646067-07:00,0.0,10.738937,10738.937 +28868,2025-03-10T14:45:41.381999-07:00,0.0,10.735932,10735.932 +28869,2025-03-10T14:45:52.121972-07:00,0.0,10.739973,10739.973 +28870,2025-03-10T14:46:02.071460-07:00,397.0,9.949488,9949.488 +28871,2025-03-10T14:46:02.865974-07:00,397.0,0.794514,794.514 +28872,2025-03-10T14:46:13.599973-07:00,409.0,10.733999,10733.999 +28873,2025-03-10T14:46:24.337977-07:00,432.0,10.738004,10738.004 +28874,2025-03-10T14:46:35.070050-07:00,409.0,10.732073,10732.073 +28875,2025-03-10T14:46:45.806013-07:00,421.0,10.735963,10735.963 +28876,2025-03-10T14:46:56.544975-07:00,386.0,10.738962,10738.962 +28877,2025-03-10T14:47:07.286973-07:00,427.0,10.741998,10741.998 +28878,2025-03-10T14:47:18.012789-07:00,316.0,10.725816,10725.816 +28879,2025-03-10T14:47:28.757195-07:00,321.0,10.744406,10744.406 +28880,2025-03-10T14:47:39.490977-07:00,407.0,10.733782,10733.782 +28881,2025-03-10T14:47:48.337553-07:00,0.0,8.846576,8846.576 +28882,2025-03-10T14:47:50.225977-07:00,0.0,1.888424,1888.424 +28883,2025-03-10T14:48:00.962801-07:00,0.0,10.736824,10736.824 +28884,2025-03-10T14:48:11.695973-07:00,0.0,10.733172,10733.172 +28885,2025-03-10T14:48:22.441970-07:00,0.0,10.745997,10745.997 +28886,2025-03-10T14:48:33.172974-07:00,0.0,10.731004,10731.004 +28887,2025-03-10T14:48:43.909050-07:00,0.0,10.736076,10736.076 +28888,2025-03-10T14:48:54.647073-07:00,0.0,10.738023,10738.023 +28889,2025-03-10T14:49:05.391145-07:00,0.0,10.744072,10744.072 +28890,2025-03-10T14:49:16.129002-07:00,0.0,10.737857,10737.857 +28891,2025-03-10T14:49:26.862978-07:00,0.0,10.733976,10733.976 +28892,2025-03-10T14:49:37.599125-07:00,0.0,10.736147,10736.147 +28893,2025-03-10T14:49:40.644240-07:00,383.0,3.045115,3045.115 +28894,2025-03-10T14:49:48.337233-07:00,393.0,7.692993,7692.993 +28895,2025-03-10T14:49:59.075161-07:00,304.0,10.737928,10737.928 +28896,2025-03-10T14:50:09.818440-07:00,373.0,10.743279,10743.279 +28897,2025-03-10T14:50:20.555032-07:00,370.0,10.736592,10736.592 +28898,2025-03-10T14:50:30.771378-07:00,0.0,10.216346,10216.346 +28899,2025-03-10T14:50:31.298589-07:00,0.0,0.527211,527.211 +28900,2025-03-10T14:50:42.033976-07:00,0.0,10.735387,10735.387 +28901,2025-03-10T14:50:52.768342-07:00,0.0,10.734366,10734.366 +28902,2025-03-10T14:51:03.499325-07:00,0.0,10.730983,10730.983 +28903,2025-03-10T14:51:14.241987-07:00,0.0,10.742662,10742.662 +28904,2025-03-10T14:51:24.977239-07:00,0.0,10.735252,10735.252 +28905,2025-03-10T14:51:35.721398-07:00,0.0,10.744159,10744.159 +28906,2025-03-10T14:51:46.457161-07:00,0.0,10.735763,10735.763 +28907,2025-03-10T14:51:57.195365-07:00,0.0,10.738204,10738.204 +28908,2025-03-10T14:52:07.935974-07:00,0.0,10.740609,10740.609 +28909,2025-03-10T14:52:18.677178-07:00,0.0,10.741204,10741.204 +28910,2025-03-10T14:52:29.421980-07:00,0.0,10.744802,10744.802 +28911,2025-03-10T14:52:40.156970-07:00,0.0,10.73499,10734.99 +28912,2025-03-10T14:52:50.893118-07:00,0.0,10.736148,10736.148 +28913,2025-03-10T14:53:01.714095-07:00,0.0,10.820977,10820.977 +28914,2025-03-10T14:53:12.454008-07:00,0.0,10.739913,10739.913 +28915,2025-03-10T14:53:23.188976-07:00,0.0,10.734968,10734.968 +28916,2025-03-10T14:53:33.928008-07:00,0.0,10.739032,10739.032 +28917,2025-03-10T14:53:44.665166-07:00,0.0,10.737158,10737.158 +28918,2025-03-10T14:54:06.139975-07:00,0.0,21.474809,21474.809 +28919,2025-03-10T14:54:16.879151-07:00,0.0,10.739176,10739.176 +28920,2025-03-10T14:54:27.613976-07:00,0.0,10.734825,10734.825 +28921,2025-03-10T14:54:38.352181-07:00,0.0,10.738205,10738.205 +28922,2025-03-10T14:54:49.092148-07:00,0.0,10.739967,10739.967 +28923,2025-03-10T14:54:59.828507-07:00,0.0,10.736359,10736.359 +28924,2025-03-10T14:55:10.566972-07:00,0.0,10.738465,10738.465 +28925,2025-03-10T14:55:21.298208-07:00,0.0,10.731236,10731.236 +28926,2025-03-10T14:55:32.044211-07:00,0.0,10.746003,10746.003 +28927,2025-03-10T14:55:42.779923-07:00,0.0,10.735712,10735.712 +28928,2025-03-10T14:55:53.513977-07:00,0.0,10.734054,10734.054 +28929,2025-03-10T14:55:53.761245-07:00,388.0,0.247268,247.268 +28930,2025-03-10T14:56:04.246177-07:00,419.0,10.484932,10484.932 +28931,2025-03-10T14:56:14.989981-07:00,395.0,10.743804,10743.804 +28932,2025-03-10T14:56:25.731055-07:00,414.0,10.741074,10741.074 +28933,2025-03-10T14:56:36.470045-07:00,261.0,10.73899,10738.99 +28934,2025-03-10T14:56:47.204031-07:00,398.0,10.733986,10733.986 +28935,2025-03-10T14:56:57.939979-07:00,422.0,10.735948,10735.948 +28936,2025-03-10T14:57:08.669252-07:00,438.0,10.729273,10729.273 +28937,2025-03-10T14:57:19.405399-07:00,419.0,10.736147,10736.147 +28938,2025-03-10T14:57:30.144057-07:00,382.0,10.738658,10738.658 +28939,2025-03-10T14:57:40.884019-07:00,397.0,10.739962,10739.962 +28940,2025-03-10T14:57:51.624228-07:00,378.0,10.740209,10740.209 +28941,2025-03-10T14:58:02.351981-07:00,381.0,10.727753,10727.753 +28942,2025-03-10T14:58:13.092099-07:00,389.0,10.740118,10740.118 +28943,2025-03-10T14:58:23.830332-07:00,384.0,10.738233,10738.233 +28944,2025-03-10T14:58:26.177388-07:00,54.0,2.347056,2347.056 +28945,2025-03-10T14:58:34.559979-07:00,7.0,8.382591,8382.591 +28946,2025-03-10T14:58:45.301997-07:00,0.0,10.742018,10742.018 +28947,2025-03-10T14:58:56.036158-07:00,0.0,10.734161,10734.161 +28948,2025-03-10T14:59:06.766743-07:00,0.0,10.730585,10730.585 +28949,2025-03-10T14:59:17.505978-07:00,49.0,10.739235,10739.235 +28950,2025-03-10T14:59:28.242977-07:00,14.0,10.736999,10736.999 +28951,2025-03-10T14:59:38.973981-07:00,101.0,10.731004,10731.004 +28952,2025-03-10T14:59:49.715195-07:00,55.0,10.741214,10741.214 +28953,2025-03-10T15:00:00.453027-07:00,2.0,10.737832,10737.832 +28954,2025-03-10T15:00:02.429381-07:00,290.0,1.976354,1976.354 +28955,2025-03-10T15:00:11.187281-07:00,339.0,8.7579,8757.9 +28956,2025-03-10T15:00:21.928174-07:00,398.0,10.740893,10740.893 +28957,2025-03-10T15:00:32.665998-07:00,326.0,10.737824,10737.824 +28958,2025-03-10T15:00:43.398099-07:00,290.0,10.732101,10732.101 +28959,2025-03-10T15:00:54.140079-07:00,411.0,10.74198,10741.98 +28960,2025-03-10T15:01:04.887800-07:00,400.0,10.747721,10747.721 +28961,2025-03-10T15:01:15.620084-07:00,383.0,10.732284,10732.284 +28962,2025-03-10T15:01:18.639388-07:00,0.0,3.019304,3019.304 +28963,2025-03-10T15:01:26.363284-07:00,0.0,7.723896,7723.896 +28964,2025-03-10T15:01:37.107981-07:00,0.0,10.744697,10744.697 +28965,2025-03-10T15:01:47.843983-07:00,0.0,10.736002,10736.002 +28966,2025-03-10T15:01:58.583158-07:00,0.0,10.739175,10739.175 +28967,2025-03-10T15:02:09.325160-07:00,0.0,10.742002,10742.002 +28968,2025-03-10T15:02:20.068033-07:00,0.0,10.742873,10742.873 +28969,2025-03-10T15:02:30.810040-07:00,0.0,10.742007,10742.007 +28970,2025-03-10T15:02:41.545023-07:00,0.0,10.734983,10734.983 +28971,2025-03-10T15:02:52.291980-07:00,0.0,10.746957,10746.957 +28972,2025-03-10T15:03:03.034187-07:00,0.0,10.742207,10742.207 +28973,2025-03-10T15:03:13.775500-07:00,0.0,10.741313,10741.313 +28974,2025-03-10T15:03:24.523158-07:00,0.0,10.747658,10747.658 +28975,2025-03-10T15:03:35.255171-07:00,0.0,10.732013,10732.013 +28976,2025-03-10T15:03:46.002169-07:00,0.0,10.746998,10746.998 +28977,2025-03-10T15:03:56.745187-07:00,0.0,10.743018,10743.018 +28978,2025-03-10T15:04:07.485978-07:00,0.0,10.740791,10740.791 +28979,2025-03-10T15:04:18.218371-07:00,0.0,10.732393,10732.393 +28980,2025-03-10T15:04:28.966055-07:00,0.0,10.747684,10747.684 +28981,2025-03-10T15:04:39.706137-07:00,0.0,10.740082,10740.082 +28982,2025-03-10T15:04:50.453978-07:00,0.0,10.747841,10747.841 +28983,2025-03-10T15:05:01.192160-07:00,0.0,10.738182,10738.182 +28984,2025-03-10T15:05:11.927013-07:00,0.0,10.734853,10734.853 +28985,2025-03-10T15:05:22.664977-07:00,0.0,10.737964,10737.964 +28986,2025-03-10T15:05:33.407015-07:00,0.0,10.742038,10742.038 +28987,2025-03-10T15:05:44.147023-07:00,0.0,10.740008,10740.008 +28988,2025-03-10T15:05:54.890118-07:00,0.0,10.743095,10743.095 +28989,2025-03-10T15:06:05.628996-07:00,0.0,10.738878,10738.878 +28990,2025-03-10T15:06:16.367164-07:00,0.0,10.738168,10738.168 +28991,2025-03-10T15:06:27.107008-07:00,0.0,10.739844,10739.844 +28992,2025-03-10T15:06:37.854317-07:00,0.0,10.747309,10747.309 +28993,2025-03-10T15:06:48.599982-07:00,0.0,10.745665,10745.665 +28994,2025-03-10T15:06:59.331982-07:00,0.0,10.732,10732.0 +28995,2025-03-10T15:07:10.080982-07:00,0.0,10.749,10749.0 +28996,2025-03-10T15:07:20.819207-07:00,0.0,10.738225,10738.225 +28997,2025-03-10T15:07:31.557056-07:00,0.0,10.737849,10737.849 +28998,2025-03-10T15:07:42.295288-07:00,0.0,10.738232,10738.232 +28999,2025-03-10T15:07:53.041693-07:00,0.0,10.746405,10746.405 +29000,2025-03-10T15:08:03.784176-07:00,0.0,10.742483,10742.483 +29001,2025-03-10T15:08:14.528529-07:00,0.0,10.744353,10744.353 +29002,2025-03-10T15:08:25.268194-07:00,0.0,10.739665,10739.665 +29003,2025-03-10T15:08:36.011980-07:00,0.0,10.743786,10743.786 +29004,2025-03-10T15:08:46.750033-07:00,0.0,10.738053,10738.053 +29005,2025-03-10T15:08:57.500327-07:00,0.0,10.750294,10750.294 +29006,2025-03-10T15:09:08.232183-07:00,0.0,10.731856,10731.856 +29007,2025-03-10T15:09:18.979367-07:00,0.0,10.747184,10747.184 +29008,2025-03-10T15:09:29.726196-07:00,0.0,10.746829,10746.829 +29009,2025-03-10T15:09:40.472165-07:00,0.0,10.745969,10745.969 +29010,2025-03-10T15:09:51.217180-07:00,0.0,10.745015,10745.015 +29011,2025-03-10T15:10:01.958980-07:00,0.0,10.7418,10741.8 +29012,2025-03-10T15:10:12.697265-07:00,0.0,10.738285,10738.285 +29013,2025-03-10T15:10:23.439141-07:00,0.0,10.741876,10741.876 +29014,2025-03-10T15:10:34.188331-07:00,0.0,10.74919,10749.19 +29015,2025-03-10T15:10:44.934977-07:00,0.0,10.746646,10746.646 +29016,2025-03-10T15:10:55.671163-07:00,0.0,10.736186,10736.186 +29017,2025-03-10T15:11:06.412985-07:00,0.0,10.741822,10741.822 +29018,2025-03-10T15:11:17.158981-07:00,0.0,10.745996,10745.996 +29019,2025-03-10T15:11:27.899124-07:00,0.0,10.740143,10740.143 +29020,2025-03-10T15:11:38.650063-07:00,0.0,10.750939,10750.939 +29021,2025-03-10T15:11:49.385381-07:00,0.0,10.735318,10735.318 +29022,2025-03-10T15:12:00.128009-07:00,0.0,10.742628,10742.628 +29023,2025-03-10T15:12:10.879220-07:00,0.0,10.751211,10751.211 +29024,2025-03-10T15:12:21.625358-07:00,0.0,10.746138,10746.138 +29025,2025-03-10T15:12:32.370109-07:00,0.0,10.744751,10744.751 +29026,2025-03-10T15:12:43.111983-07:00,0.0,10.741874,10741.874 +29027,2025-03-10T15:12:53.858982-07:00,0.0,10.746999,10746.999 +29028,2025-03-10T15:13:04.613307-07:00,0.0,10.754325,10754.325 +29029,2025-03-10T15:13:15.349980-07:00,0.0,10.736673,10736.673 +29030,2025-03-10T15:13:26.100007-07:00,0.0,10.750027,10750.027 +29031,2025-03-10T15:13:36.851046-07:00,0.0,10.751039,10751.039 +29032,2025-03-10T15:13:47.591097-07:00,0.0,10.740051,10740.051 +29033,2025-03-10T15:13:58.337197-07:00,0.0,10.7461,10746.1 +29034,2025-03-10T15:14:09.087741-07:00,0.0,10.750544,10750.544 +29035,2025-03-10T15:14:19.841050-07:00,0.0,10.753309,10753.309 +29036,2025-03-10T15:14:30.586196-07:00,0.0,10.745146,10745.146 +29037,2025-03-10T15:14:41.327984-07:00,0.0,10.741788,10741.788 +29038,2025-03-10T15:14:52.081982-07:00,0.0,10.753998,10753.998 +29039,2025-03-10T15:15:02.831186-07:00,0.0,10.749204,10749.204 +29040,2025-03-10T15:15:13.569978-07:00,0.0,10.738792,10738.792 +29041,2025-03-10T15:15:24.318394-07:00,0.0,10.748416,10748.416 +29042,2025-03-10T15:15:35.063367-07:00,0.0,10.744973,10744.973 +29043,2025-03-10T15:15:45.810157-07:00,0.0,10.74679,10746.79 +29044,2025-03-10T15:15:56.554253-07:00,0.0,10.744096,10744.096 +29045,2025-03-10T15:16:07.302279-07:00,0.0,10.748026,10748.026 +29046,2025-03-10T15:16:18.054038-07:00,0.0,10.751759,10751.759 +29047,2025-03-10T15:16:28.804188-07:00,0.0,10.75015,10750.15 +29048,2025-03-10T15:16:39.555290-07:00,0.0,10.751102,10751.102 +29049,2025-03-10T15:16:50.305976-07:00,0.0,10.750686,10750.686 +29050,2025-03-10T15:17:01.055267-07:00,0.0,10.749291,10749.291 +29051,2025-03-10T15:17:11.800983-07:00,0.0,10.745716,10745.716 +29052,2025-03-10T15:17:22.549976-07:00,0.0,10.748993,10748.993 +29053,2025-03-10T15:17:33.292498-07:00,0.0,10.742522,10742.522 +29054,2025-03-10T15:17:44.045975-07:00,0.0,10.753477,10753.477 +29055,2025-03-10T15:17:54.800126-07:00,0.0,10.754151,10754.151 +29056,2025-03-10T15:18:05.550008-07:00,0.0,10.749882,10749.882 +29057,2025-03-10T15:18:16.297004-07:00,0.0,10.746996,10746.996 +29058,2025-03-10T15:18:27.041199-07:00,0.0,10.744195,10744.195 +29059,2025-03-10T15:18:37.781559-07:00,0.0,10.74036,10740.36 +29060,2025-03-10T15:18:48.532038-07:00,0.0,10.750479,10750.479 +29061,2025-03-10T15:18:59.273989-07:00,0.0,10.741951,10741.951 +29062,2025-03-10T15:19:10.019977-07:00,0.0,10.745988,10745.988 +29063,2025-03-10T15:19:20.761994-07:00,0.0,10.742017,10742.017 +29064,2025-03-10T15:19:31.508542-07:00,0.0,10.746548,10746.548 +29065,2025-03-10T15:19:42.255205-07:00,0.0,10.746663,10746.663 +29066,2025-03-10T15:19:53.009147-07:00,0.0,10.753942,10753.942 +29067,2025-03-10T15:20:03.747979-07:00,0.0,10.738832,10738.832 +29068,2025-03-10T15:20:14.495669-07:00,0.0,10.74769,10747.69 +29069,2025-03-10T15:20:25.241988-07:00,0.0,10.746319,10746.319 +29070,2025-03-10T15:20:35.992309-07:00,0.0,10.750321,10750.321 +29071,2025-03-10T15:20:45.862574-07:00,293.0,9.870265,9870.265 +29072,2025-03-10T15:20:46.738979-07:00,293.0,0.876405,876.405 +29073,2025-03-10T15:20:57.488076-07:00,304.0,10.749097,10749.097 +29074,2025-03-10T15:21:08.237413-07:00,393.0,10.749337,10749.337 +29075,2025-03-10T15:21:11.916637-07:00,0.0,3.679224,3679.224 +29076,2025-03-10T15:21:18.990110-07:00,0.0,7.073473,7073.473 +29077,2025-03-10T15:21:29.741984-07:00,0.0,10.751874,10751.874 +29078,2025-03-10T15:21:40.496190-07:00,0.0,10.754206,10754.206 +29079,2025-03-10T15:21:51.239189-07:00,0.0,10.742999,10742.999 +29080,2025-03-10T15:22:01.995138-07:00,0.0,10.755949,10755.949 +29081,2025-03-10T15:22:12.734983-07:00,0.0,10.739845,10739.845 +29082,2025-03-10T15:22:23.484008-07:00,0.0,10.749025,10749.025 +29083,2025-03-10T15:22:34.239218-07:00,0.0,10.75521,10755.21 +29084,2025-03-10T15:22:44.986223-07:00,0.0,10.747005,10747.005 +29085,2025-03-10T15:22:55.731980-07:00,0.0,10.745757,10745.757 +29086,2025-03-10T15:23:06.479317-07:00,0.0,10.747337,10747.337 +29087,2025-03-10T15:23:17.219982-07:00,0.0,10.740665,10740.665 +29088,2025-03-10T15:23:27.968990-07:00,0.0,10.749008,10749.008 +29089,2025-03-10T15:23:38.717978-07:00,0.0,10.748988,10748.988 +29090,2025-03-10T15:23:49.465994-07:00,0.0,10.748016,10748.016 +29091,2025-03-10T15:24:00.210202-07:00,0.0,10.744208,10744.208 +29092,2025-03-10T15:24:10.953046-07:00,0.0,10.742844,10742.844 +29093,2025-03-10T15:24:21.705010-07:00,0.0,10.751964,10751.964 +29094,2025-03-10T15:24:32.457042-07:00,0.0,10.752032,10752.032 +29095,2025-03-10T15:24:43.204976-07:00,0.0,10.747934,10747.934 +29096,2025-03-10T15:24:53.963009-07:00,0.0,10.758033,10758.033 +29097,2025-03-10T15:25:04.708051-07:00,0.0,10.745042,10745.042 +29098,2025-03-10T15:25:15.462177-07:00,0.0,10.754126,10754.126 +29099,2025-03-10T15:25:26.206577-07:00,0.0,10.7444,10744.4 +29100,2025-03-10T15:25:36.954348-07:00,0.0,10.747771,10747.771 +29101,2025-03-10T15:25:47.707161-07:00,0.0,10.752813,10752.813 +29102,2025-03-10T15:25:58.456174-07:00,0.0,10.749013,10749.013 +29103,2025-03-10T15:26:09.207171-07:00,0.0,10.750997,10750.997 +29104,2025-03-10T15:26:19.953171-07:00,0.0,10.746,10746.0 +29105,2025-03-10T15:26:30.699393-07:00,0.0,10.746222,10746.222 +29106,2025-03-10T15:26:41.452115-07:00,0.0,10.752722,10752.722 +29107,2025-03-10T15:26:52.204984-07:00,0.0,10.752869,10752.869 +29108,2025-03-10T15:27:02.954200-07:00,0.0,10.749216,10749.216 +29109,2025-03-10T15:27:13.697007-07:00,0.0,10.742807,10742.807 +29110,2025-03-10T15:27:24.452122-07:00,0.0,10.755115,10755.115 +29111,2025-03-10T15:27:35.195055-07:00,0.0,10.742933,10742.933 +29112,2025-03-10T15:27:45.943984-07:00,0.0,10.748929,10748.929 +29113,2025-03-10T15:27:56.697982-07:00,0.0,10.753998,10753.998 +29114,2025-03-10T15:28:07.443978-07:00,0.0,10.745996,10745.996 +29115,2025-03-10T15:28:18.199983-07:00,0.0,10.756005,10756.005 +29116,2025-03-10T15:28:28.953032-07:00,0.0,10.753049,10753.049 +29117,2025-03-10T15:28:39.701488-07:00,0.0,10.748456,10748.456 +29118,2025-03-10T15:28:50.446981-07:00,0.0,10.745493,10745.493 +29119,2025-03-10T15:29:01.202981-07:00,0.0,10.756,10756.0 +29120,2025-03-10T15:29:11.948191-07:00,0.0,10.74521,10745.21 +29121,2025-03-10T15:29:22.695976-07:00,0.0,10.747785,10747.785 +29122,2025-03-10T15:29:33.444198-07:00,0.0,10.748222,10748.222 +29123,2025-03-10T15:29:44.202465-07:00,0.0,10.758267,10758.267 +29124,2025-03-10T15:29:54.947980-07:00,0.0,10.745515,10745.515 +29125,2025-03-10T15:30:05.697785-07:00,0.0,10.749805,10749.805 +29126,2025-03-10T15:30:16.439981-07:00,0.0,10.742196,10742.196 +29127,2025-03-10T15:30:27.196319-07:00,0.0,10.756338,10756.338 +29128,2025-03-10T15:30:37.937978-07:00,0.0,10.741659,10741.659 +29129,2025-03-10T15:30:48.687100-07:00,0.0,10.749122,10749.122 +29130,2025-03-10T15:30:59.432022-07:00,0.0,10.744922,10744.922 +29131,2025-03-10T15:31:10.183703-07:00,0.0,10.751681,10751.681 +29132,2025-03-10T15:31:20.931535-07:00,0.0,10.747832,10747.832 +29133,2025-03-10T15:31:31.680009-07:00,0.0,10.748474,10748.474 +29134,2025-03-10T15:31:42.421145-07:00,0.0,10.741136,10741.136 +29135,2025-03-10T15:31:53.176088-07:00,0.0,10.754943,10754.943 +29136,2025-03-10T15:32:03.912983-07:00,0.0,10.736895,10736.895 +29137,2025-03-10T15:32:14.660029-07:00,0.0,10.747046,10747.046 +29138,2025-03-10T15:32:25.405880-07:00,0.0,10.745851,10745.851 +29139,2025-03-10T15:32:36.148135-07:00,0.0,10.742255,10742.255 +29140,2025-03-10T15:32:46.896975-07:00,0.0,10.74884,10748.84 +29141,2025-03-10T15:32:57.643983-07:00,0.0,10.747008,10747.008 +29142,2025-03-10T15:33:08.383981-07:00,0.0,10.739998,10739.998 +29143,2025-03-10T15:33:19.139978-07:00,0.0,10.755997,10755.997 +29144,2025-03-10T15:33:29.877983-07:00,0.0,10.738005,10738.005 +29145,2025-03-10T15:33:40.635047-07:00,0.0,10.757064,10757.064 +29146,2025-03-10T15:33:51.379182-07:00,0.0,10.744135,10744.135 +29147,2025-03-10T15:34:02.124979-07:00,0.0,10.745797,10745.797 +29148,2025-03-10T15:34:12.867226-07:00,0.0,10.742247,10742.247 +29149,2025-03-10T15:34:23.613980-07:00,0.0,10.746754,10746.754 +29150,2025-03-10T15:34:34.367030-07:00,0.0,10.75305,10753.05 +29151,2025-03-10T15:34:45.112373-07:00,0.0,10.745343,10745.343 +29152,2025-03-10T15:34:55.858103-07:00,0.0,10.74573,10745.73 +29153,2025-03-10T15:35:06.603052-07:00,0.0,10.744949,10744.949 +29154,2025-03-10T15:35:17.348983-07:00,0.0,10.745931,10745.931 +29155,2025-03-10T15:35:28.100972-07:00,0.0,10.751989,10751.989 +29156,2025-03-10T15:35:38.845285-07:00,0.0,10.744313,10744.313 +29157,2025-03-10T15:35:49.592046-07:00,0.0,10.746761,10746.761 +29158,2025-03-10T15:36:00.328376-07:00,0.0,10.73633,10736.33 +29159,2025-03-10T15:36:11.079983-07:00,0.0,10.751607,10751.607 +29160,2025-03-10T15:36:21.829185-07:00,0.0,10.749202,10749.202 +29161,2025-03-10T15:36:32.574068-07:00,0.0,10.744883,10744.883 +29162,2025-03-10T15:36:43.314178-07:00,0.0,10.74011,10740.11 +29163,2025-03-10T15:36:54.062415-07:00,0.0,10.748237,10748.237 +29164,2025-03-10T15:37:04.810174-07:00,0.0,10.747759,10747.759 +29165,2025-03-10T15:37:15.553769-07:00,0.0,10.743595,10743.595 +29166,2025-03-10T15:37:26.291981-07:00,0.0,10.738212,10738.212 +29167,2025-03-10T15:37:37.040977-07:00,0.0,10.748996,10748.996 +29168,2025-03-10T15:37:47.782987-07:00,0.0,10.74201,10742.01 +29169,2025-03-10T15:37:58.531979-07:00,0.0,10.748992,10748.992 +29170,2025-03-10T15:38:09.286127-07:00,0.0,10.754148,10754.148 +29171,2025-03-10T15:38:20.034006-07:00,0.0,10.747879,10747.879 +29172,2025-03-10T15:38:30.774981-07:00,0.0,10.740975,10740.975 +29173,2025-03-10T15:38:41.520988-07:00,0.0,10.746007,10746.007 +29174,2025-03-10T15:38:52.272047-07:00,0.0,10.751059,10751.059 +29175,2025-03-10T15:39:03.020691-07:00,0.0,10.748644,10748.644 +29176,2025-03-10T15:39:13.767977-07:00,0.0,10.747286,10747.286 +29177,2025-03-10T15:39:24.510981-07:00,0.0,10.743004,10743.004 +29178,2025-03-10T15:39:35.259012-07:00,0.0,10.748031,10748.031 +29179,2025-03-10T15:39:46.004345-07:00,0.0,10.745333,10745.333 +29180,2025-03-10T15:39:56.750291-07:00,0.0,10.745946,10745.946 +29181,2025-03-10T15:40:07.496976-07:00,0.0,10.746685,10746.685 +29182,2025-03-10T15:40:18.248106-07:00,0.0,10.75113,10751.13 +29183,2025-03-10T15:40:28.995619-07:00,0.0,10.747513,10747.513 +29184,2025-03-10T15:40:39.741982-07:00,0.0,10.746363,10746.363 +29185,2025-03-10T15:40:50.491199-07:00,0.0,10.749217,10749.217 +29186,2025-03-10T15:41:01.239982-07:00,0.0,10.748783,10748.783 +29187,2025-03-10T15:41:11.987189-07:00,0.0,10.747207,10747.207 +29188,2025-03-10T15:41:22.732989-07:00,0.0,10.7458,10745.8 +29189,2025-03-10T15:41:33.480983-07:00,0.0,10.747994,10747.994 +29190,2025-03-10T15:41:44.228124-07:00,0.0,10.747141,10747.141 +29191,2025-03-10T15:41:54.976979-07:00,0.0,10.748855,10748.855 +29192,2025-03-10T15:42:05.726148-07:00,0.0,10.749169,10749.169 +29193,2025-03-10T15:42:16.475275-07:00,0.0,10.749127,10749.127 +29194,2025-03-10T15:42:27.222103-07:00,0.0,10.746828,10746.828 +29195,2025-03-10T15:42:37.969980-07:00,0.0,10.747877,10747.877 +29196,2025-03-10T15:42:48.712040-07:00,0.0,10.74206,10742.06 +29197,2025-03-10T15:42:59.460245-07:00,0.0,10.748205,10748.205 +29198,2025-03-10T15:43:10.209390-07:00,0.0,10.749145,10749.145 +29199,2025-03-10T15:43:20.955984-07:00,0.0,10.746594,10746.594 +29200,2025-03-10T15:43:31.700323-07:00,0.0,10.744339,10744.339 +29201,2025-03-10T15:43:42.451168-07:00,0.0,10.750845,10750.845 +29202,2025-03-10T15:43:53.193221-07:00,0.0,10.742053,10742.053 +29203,2025-03-10T15:44:03.947008-07:00,0.0,10.753787,10753.787 +29204,2025-03-10T15:44:14.690981-07:00,0.0,10.743973,10743.973 +29205,2025-03-10T15:44:25.443235-07:00,0.0,10.752254,10752.254 +29206,2025-03-10T15:44:36.187396-07:00,0.0,10.744161,10744.161 +29207,2025-03-10T15:44:46.939977-07:00,0.0,10.752581,10752.581 +29208,2025-03-10T15:44:57.690189-07:00,0.0,10.750212,10750.212 +29209,2025-03-10T15:45:08.436028-07:00,0.0,10.745839,10745.839 +29210,2025-03-10T15:45:19.182977-07:00,0.0,10.746949,10746.949 +29211,2025-03-10T15:45:29.931981-07:00,0.0,10.749004,10749.004 +29212,2025-03-10T15:45:40.682978-07:00,0.0,10.750997,10750.997 +29213,2025-03-10T15:45:51.434406-07:00,0.0,10.751428,10751.428 +29214,2025-03-10T15:46:02.187033-07:00,0.0,10.752627,10752.627 +29215,2025-03-10T15:46:12.940192-07:00,0.0,10.753159,10753.159 +29216,2025-03-10T15:46:23.681219-07:00,0.0,10.741027,10741.027 +29217,2025-03-10T15:46:34.431836-07:00,0.0,10.750617,10750.617 +29218,2025-03-10T15:46:45.187160-07:00,0.0,10.755324,10755.324 +29219,2025-03-10T15:46:55.933380-07:00,0.0,10.74622,10746.22 +29220,2025-03-10T15:47:06.687980-07:00,0.0,10.7546,10754.6 +29221,2025-03-10T15:47:17.439061-07:00,0.0,10.751081,10751.081 +29222,2025-03-10T15:47:28.180992-07:00,0.0,10.741931,10741.931 +29223,2025-03-10T15:47:38.929011-07:00,0.0,10.748019,10748.019 +29224,2025-03-10T15:47:49.684971-07:00,0.0,10.75596,10755.96 +29225,2025-03-10T15:48:00.429030-07:00,0.0,10.744059,10744.059 +29226,2025-03-10T15:48:11.181980-07:00,0.0,10.75295,10752.95 +29227,2025-03-10T15:48:21.924064-07:00,0.0,10.742084,10742.084 +29228,2025-03-10T15:48:32.674979-07:00,0.0,10.750915,10750.915 +29229,2025-03-10T15:48:43.429208-07:00,0.0,10.754229,10754.229 +29230,2025-03-10T15:48:54.182982-07:00,0.0,10.753774,10753.774 +29231,2025-03-10T15:49:04.932986-07:00,0.0,10.750004,10750.004 +29232,2025-03-10T15:49:15.687186-07:00,0.0,10.7542,10754.2 +29233,2025-03-10T15:49:26.439008-07:00,0.0,10.751822,10751.822 +29234,2025-03-10T15:49:37.188973-07:00,0.0,10.749965,10749.965 +29235,2025-03-10T15:49:47.943414-07:00,0.0,10.754441,10754.441 +29236,2025-03-10T15:49:58.683980-07:00,0.0,10.740566,10740.566 +29237,2025-03-10T15:50:09.433073-07:00,0.0,10.749093,10749.093 +29238,2025-03-10T15:50:20.192166-07:00,0.0,10.759093,10759.093 +29239,2025-03-10T15:50:30.937177-07:00,0.0,10.745011,10745.011 +29240,2025-03-10T15:50:41.679841-07:00,0.0,10.742664,10742.664 +29241,2025-03-10T15:50:52.438507-07:00,0.0,10.758666,10758.666 +29242,2025-03-10T15:51:03.187190-07:00,0.0,10.748683,10748.683 +29243,2025-03-10T15:51:13.928170-07:00,0.0,10.74098,10740.98 +29244,2025-03-10T15:51:24.682155-07:00,0.0,10.753985,10753.985 +29245,2025-03-10T15:51:35.429267-07:00,0.0,10.747112,10747.112 +29246,2025-03-10T15:51:46.174931-07:00,0.0,10.745664,10745.664 +29247,2025-03-10T15:51:56.930234-07:00,0.0,10.755303,10755.303 +29248,2025-03-10T15:52:07.673387-07:00,0.0,10.743153,10743.153 +29249,2025-03-10T15:52:18.420230-07:00,0.0,10.746843,10746.843 +29250,2025-03-10T15:52:29.169154-07:00,0.0,10.748924,10748.924 +29251,2025-03-10T15:52:39.921177-07:00,0.0,10.752023,10752.023 +29252,2025-03-10T15:52:50.663048-07:00,0.0,10.741871,10741.871 +29253,2025-03-10T15:53:01.410754-07:00,0.0,10.747706,10747.706 +29254,2025-03-10T15:53:12.159721-07:00,0.0,10.748967,10748.967 +29255,2025-03-10T15:53:22.915737-07:00,0.0,10.756016,10756.016 +29256,2025-03-10T15:53:33.661672-07:00,0.0,10.745935,10745.935 +29257,2025-03-10T15:53:44.406964-07:00,0.0,10.745292,10745.292 +29258,2025-03-10T15:53:55.160558-07:00,0.0,10.753594,10753.594 +29259,2025-03-10T15:54:05.909574-07:00,0.0,10.749016,10749.016 +29260,2025-03-10T15:54:16.653774-07:00,0.0,10.7442,10744.2 +29261,2025-03-10T15:54:27.412673-07:00,0.0,10.758899,10758.899 +29262,2025-03-10T15:54:38.158769-07:00,0.0,10.746096,10746.096 +29263,2025-03-10T15:54:48.906571-07:00,0.0,10.747802,10747.802 +29264,2025-03-10T15:54:59.655918-07:00,0.0,10.749347,10749.347 +29265,2025-03-10T15:55:10.405582-07:00,0.0,10.749664,10749.664 +29266,2025-03-10T15:55:21.150525-07:00,0.0,10.744943,10744.943 +29267,2025-03-10T15:55:31.909793-07:00,0.0,10.759268,10759.268 +29268,2025-03-10T15:55:42.652522-07:00,0.0,10.742729,10742.729 +29269,2025-03-10T15:55:53.399523-07:00,0.0,10.747001,10747.001 +29270,2025-03-10T15:56:04.156019-07:00,0.0,10.756496,10756.496 +29271,2025-03-10T15:56:14.903937-07:00,0.0,10.747918,10747.918 +29272,2025-03-10T15:56:25.646760-07:00,0.0,10.742823,10742.823 +29273,2025-03-10T15:56:36.400421-07:00,0.0,10.753661,10753.661 +29274,2025-03-10T15:56:47.153828-07:00,0.0,10.753407,10753.407 +29275,2025-03-10T15:56:57.896970-07:00,0.0,10.743142,10743.142 +29276,2025-03-10T15:57:08.649710-07:00,0.0,10.75274,10752.74 +29277,2025-03-10T15:57:19.390825-07:00,0.0,10.741115,10741.115 +29278,2025-03-10T15:57:30.149653-07:00,0.0,10.758828,10758.828 +29279,2025-03-10T15:57:40.895770-07:00,0.0,10.746117,10746.117 +29280,2025-03-10T15:57:51.640693-07:00,0.0,10.744923,10744.923 +29281,2025-03-10T15:58:02.390721-07:00,0.0,10.750028,10750.028 +29282,2025-03-10T15:58:13.135932-07:00,0.0,10.745211,10745.211 +29283,2025-03-10T15:58:23.879706-07:00,0.0,10.743774,10743.774 +29284,2025-03-10T15:58:34.629699-07:00,0.0,10.749993,10749.993 +29285,2025-03-10T15:58:45.375727-07:00,0.0,10.746028,10746.028 +29286,2025-03-10T15:58:56.122119-07:00,0.0,10.746392,10746.392 +29287,2025-03-10T15:59:06.869052-07:00,0.0,10.746933,10746.933 +29288,2025-03-10T15:59:17.613072-07:00,0.0,10.74402,10744.02 +29289,2025-03-10T15:59:28.362030-07:00,0.0,10.748958,10748.958 +29290,2025-03-10T15:59:39.118140-07:00,0.0,10.75611,10756.11 +29291,2025-03-10T15:59:49.857581-07:00,0.0,10.739441,10739.441 +29292,2025-03-10T16:00:00.601608-07:00,0.0,10.744027,10744.027 +29293,2025-03-10T16:00:11.347662-07:00,0.0,10.746054,10746.054 +29294,2025-03-10T16:00:22.093734-07:00,0.0,10.746072,10746.072 +29295,2025-03-10T16:00:32.842937-07:00,0.0,10.749203,10749.203 +29296,2025-03-10T16:00:43.599142-07:00,0.0,10.756205,10756.205 +29297,2025-03-10T16:00:54.339830-07:00,0.0,10.740688,10740.688 +29298,2025-03-10T16:01:05.088553-07:00,0.0,10.748723,10748.723 +29299,2025-03-10T16:01:15.835840-07:00,0.0,10.747287,10747.287 +29300,2025-03-10T16:01:26.588923-07:00,0.0,10.753083,10753.083 +29301,2025-03-10T16:01:37.336938-07:00,0.0,10.748015,10748.015 +29302,2025-03-10T16:01:48.079764-07:00,0.0,10.742826,10742.826 +29303,2025-03-10T16:01:58.827552-07:00,0.0,10.747788,10747.788 +29304,2025-03-10T16:02:09.570522-07:00,0.0,10.74297,10742.97 +29305,2025-03-10T16:02:20.320830-07:00,0.0,10.750308,10750.308 +29306,2025-03-10T16:02:31.064527-07:00,0.0,10.743697,10743.697 +29307,2025-03-10T16:02:41.816042-07:00,0.0,10.751515,10751.515 +29308,2025-03-10T16:02:52.566555-07:00,0.0,10.750513,10750.513 +29309,2025-03-10T16:03:03.312813-07:00,0.0,10.746258,10746.258 +29310,2025-03-10T16:03:14.052522-07:00,0.0,10.739709,10739.709 +29311,2025-03-10T16:03:24.805562-07:00,0.0,10.75304,10753.04 +29312,2025-03-10T16:03:35.552741-07:00,0.0,10.747179,10747.179 +29313,2025-03-10T16:03:46.292525-07:00,0.0,10.739784,10739.784 +29314,2025-03-10T16:03:57.040734-07:00,0.0,10.748209,10748.209 +29315,2025-03-10T16:04:07.788597-07:00,0.0,10.747863,10747.863 +29316,2025-03-10T16:04:18.529732-07:00,0.0,10.741135,10741.135 +29317,2025-03-10T16:04:29.270699-07:00,0.0,10.740967,10740.967 +29318,2025-03-10T16:04:40.023683-07:00,0.0,10.752984,10752.984 +29319,2025-03-10T16:04:50.768528-07:00,0.0,10.744845,10744.845 +29320,2025-03-10T16:05:01.514610-07:00,0.0,10.746082,10746.082 +29321,2025-03-10T16:05:12.250723-07:00,0.0,10.736113,10736.113 +29322,2025-03-10T16:05:23.002785-07:00,0.0,10.752062,10752.062 +29323,2025-03-10T16:05:33.750906-07:00,0.0,10.748121,10748.121 +29324,2025-03-10T16:05:44.490253-07:00,0.0,10.739347,10739.347 +29325,2025-03-10T16:05:55.243735-07:00,0.0,10.753482,10753.482 +29326,2025-03-10T16:06:05.989741-07:00,0.0,10.746006,10746.006 +29327,2025-03-10T16:06:16.737718-07:00,0.0,10.747977,10747.977 +29328,2025-03-10T16:06:27.485822-07:00,0.0,10.748104,10748.104 +29329,2025-03-10T16:06:38.230905-07:00,0.0,10.745083,10745.083 +29330,2025-03-10T16:06:48.977577-07:00,0.0,10.746672,10746.672 +29331,2025-03-10T16:06:59.716707-07:00,0.0,10.73913,10739.13 +29332,2025-03-10T16:07:10.468771-07:00,0.0,10.752064,10752.064 +29333,2025-03-10T16:07:21.212731-07:00,0.0,10.74396,10743.96 +29334,2025-03-10T16:07:31.953523-07:00,0.0,10.740792,10740.792 +29335,2025-03-10T16:07:42.704716-07:00,0.0,10.751193,10751.193 +29336,2025-03-10T16:07:53.448525-07:00,0.0,10.743809,10743.809 +29337,2025-03-10T16:08:04.187730-07:00,0.0,10.739205,10739.205 +29338,2025-03-10T16:08:14.937521-07:00,0.0,10.749791,10749.791 +29339,2025-03-10T16:08:25.689525-07:00,0.0,10.752004,10752.004 +29340,2025-03-10T16:08:36.430572-07:00,0.0,10.741047,10741.047 +29341,2025-03-10T16:08:47.174525-07:00,0.0,10.743953,10743.953 +29342,2025-03-10T16:08:57.926730-07:00,0.0,10.752205,10752.205 +29343,2025-03-10T16:09:08.664735-07:00,0.0,10.738005,10738.005 +29344,2025-03-10T16:09:19.410633-07:00,0.0,10.745898,10745.898 +29345,2025-03-10T16:09:30.152539-07:00,0.0,10.741906,10741.906 +29346,2025-03-10T16:09:40.903558-07:00,0.0,10.751019,10751.019 +29347,2025-03-10T16:09:51.642532-07:00,0.0,10.738974,10738.974 +29348,2025-03-10T16:10:02.388527-07:00,0.0,10.745995,10745.995 +29349,2025-03-10T16:10:13.125691-07:00,0.0,10.737164,10737.164 +29350,2025-03-10T16:10:23.871714-07:00,0.0,10.746023,10746.023 +29351,2025-03-10T16:10:34.620694-07:00,0.0,10.74898,10748.98 +29352,2025-03-10T16:10:45.364702-07:00,0.0,10.744008,10744.008 +29353,2025-03-10T16:10:56.105563-07:00,0.0,10.740861,10740.861 +29354,2025-03-10T16:11:06.846526-07:00,0.0,10.740963,10740.963 +29355,2025-03-10T16:11:17.589523-07:00,0.0,10.742997,10742.997 +29356,2025-03-10T16:11:28.336921-07:00,0.0,10.747398,10747.398 +29357,2025-03-10T16:11:39.073613-07:00,0.0,10.736692,10736.692 +29358,2025-03-10T16:11:49.815704-07:00,0.0,10.742091,10742.091 +29359,2025-03-10T16:12:00.557051-07:00,0.0,10.741347,10741.347 +29360,2025-03-10T16:12:11.299727-07:00,0.0,10.742676,10742.676 +29361,2025-03-10T16:12:22.049347-07:00,0.0,10.74962,10749.62 +29362,2025-03-10T16:12:32.789009-07:00,0.0,10.739662,10739.662 +29363,2025-03-10T16:12:43.528727-07:00,0.0,10.739718,10739.718 +29364,2025-03-10T16:12:54.266583-07:00,0.0,10.737856,10737.856 +29365,2025-03-10T16:13:05.016525-07:00,0.0,10.749942,10749.942 +29366,2025-03-10T16:13:15.753527-07:00,0.0,10.737002,10737.002 +29367,2025-03-10T16:13:26.500552-07:00,0.0,10.747025,10747.025 +29368,2025-03-10T16:13:37.249523-07:00,0.0,10.748971,10748.971 +29369,2025-03-10T16:13:47.992529-07:00,0.0,10.743006,10743.006 +29370,2025-03-10T16:13:58.733519-07:00,0.0,10.74099,10740.99 +29371,2025-03-10T16:14:09.476543-07:00,0.0,10.743024,10743.024 +29372,2025-03-10T16:14:20.218696-07:00,0.0,10.742153,10742.153 +29373,2025-03-10T16:14:30.964949-07:00,0.0,10.746253,10746.253 +29374,2025-03-10T16:14:41.703214-07:00,0.0,10.738265,10738.265 +29375,2025-03-10T16:14:52.450551-07:00,0.0,10.747337,10747.337 +29376,2025-03-10T16:15:03.191594-07:00,0.0,10.741043,10741.043 +29377,2025-03-10T16:15:13.940626-07:00,0.0,10.749032,10749.032 +29378,2025-03-10T16:15:24.678610-07:00,0.0,10.737984,10737.984 +29379,2025-03-10T16:15:35.428629-07:00,0.0,10.750019,10750.019 +29380,2025-03-10T16:15:46.170712-07:00,0.0,10.742083,10742.083 +29381,2025-03-10T16:15:56.916567-07:00,0.0,10.745855,10745.855 +29382,2025-03-10T16:16:07.659531-07:00,0.0,10.742964,10742.964 +29383,2025-03-10T16:16:18.404010-07:00,0.0,10.744479,10744.479 +29384,2025-03-10T16:16:29.146709-07:00,0.0,10.742699,10742.699 +29385,2025-03-10T16:16:39.881580-07:00,0.0,10.734871,10734.871 +29386,2025-03-10T16:16:50.630698-07:00,0.0,10.749118,10749.118 +29387,2025-03-10T16:17:01.368683-07:00,0.0,10.737985,10737.985 +29388,2025-03-10T16:17:12.114726-07:00,0.0,10.746043,10746.043 +29389,2025-03-10T16:17:22.858520-07:00,0.0,10.743794,10743.794 +29390,2025-03-10T16:17:33.606524-07:00,0.0,10.748004,10748.004 +29391,2025-03-10T16:17:44.347521-07:00,0.0,10.740997,10740.997 +29392,2025-03-10T16:17:55.094558-07:00,0.0,10.747037,10747.037 +29393,2025-03-10T16:18:05.833820-07:00,0.0,10.739262,10739.262 +29394,2025-03-10T16:18:16.577706-07:00,0.0,10.743886,10743.886 +29395,2025-03-10T16:18:27.320524-07:00,0.0,10.742818,10742.818 +29396,2025-03-10T16:18:38.062694-07:00,0.0,10.74217,10742.17 +29397,2025-03-10T16:18:48.802759-07:00,0.0,10.740065,10740.065 +29398,2025-03-10T16:18:59.548985-07:00,0.0,10.746226,10746.226 +29399,2025-03-10T16:19:21.041556-07:00,0.0,21.492571,21492.571 +29400,2025-03-10T16:19:31.789906-07:00,0.0,10.74835,10748.35 +29401,2025-03-10T16:19:42.524524-07:00,0.0,10.734618,10734.618 +29402,2025-03-10T16:19:53.272728-07:00,0.0,10.748204,10748.204 +29403,2025-03-10T16:20:04.018785-07:00,0.0,10.746057,10746.057 +29404,2025-03-10T16:20:04.931839-07:00,0.0,0.913054,913.054 +29405,2025-03-10T16:20:14.752527-07:00,0.0,9.820688,9820.688 +29406,2025-03-10T16:20:25.495726-07:00,0.0,10.743199,10743.199 +29407,2025-03-10T16:20:36.244703-07:00,0.0,10.748977,10748.977 +29408,2025-03-10T16:20:46.987003-07:00,0.0,10.7423,10742.3 +29409,2025-03-10T16:20:57.730306-07:00,0.0,10.743303,10743.303 +29410,2025-03-10T16:21:08.481743-07:00,0.0,10.751437,10751.437 +29411,2025-03-10T16:21:19.228929-07:00,0.0,10.747186,10747.186 +29412,2025-03-10T16:21:29.968701-07:00,0.0,10.739772,10739.772 +29413,2025-03-10T16:21:40.707729-07:00,0.0,10.739028,10739.028 +29414,2025-03-10T16:21:51.456525-07:00,0.0,10.748796,10748.796 +29415,2025-03-10T16:22:02.191651-07:00,0.0,10.735126,10735.126 +29416,2025-03-10T16:22:12.939795-07:00,0.0,10.748144,10748.144 +29417,2025-03-10T16:22:23.678521-07:00,0.0,10.738726,10738.726 +29418,2025-03-10T16:22:34.428569-07:00,0.0,10.750048,10750.048 +29419,2025-03-10T16:22:45.162527-07:00,0.0,10.733958,10733.958 +29420,2025-03-10T16:22:55.906529-07:00,0.0,10.744002,10744.002 +29421,2025-03-10T16:23:06.647695-07:00,0.0,10.741166,10741.166 +29422,2025-03-10T16:23:17.394915-07:00,0.0,10.74722,10747.22 +29423,2025-03-10T16:23:28.134553-07:00,0.0,10.739638,10739.638 +29424,2025-03-10T16:23:38.881404-07:00,0.0,10.746851,10746.851 +29425,2025-03-10T16:23:49.618524-07:00,0.0,10.73712,10737.12 +29426,2025-03-10T16:24:00.360700-07:00,0.0,10.742176,10742.176 +29427,2025-03-10T16:24:11.099798-07:00,0.0,10.739098,10739.098 +29428,2025-03-10T16:24:21.848753-07:00,0.0,10.748955,10748.955 +29429,2025-03-10T16:24:32.587757-07:00,0.0,10.739004,10739.004 +29430,2025-03-10T16:24:43.336974-07:00,0.0,10.749217,10749.217 +29431,2025-03-10T16:24:54.070709-07:00,0.0,10.733735,10733.735 +29432,2025-03-10T16:25:04.821895-07:00,0.0,10.751186,10751.186 +29433,2025-03-10T16:25:15.557524-07:00,0.0,10.735629,10735.629 +29434,2025-03-10T16:25:26.311359-07:00,0.0,10.753835,10753.835 +29435,2025-03-10T16:25:37.049588-07:00,0.0,10.738229,10738.229 +29436,2025-03-10T16:25:47.798588-07:00,0.0,10.749,10749.0 +29437,2025-03-10T16:25:58.546100-07:00,0.0,10.747512,10747.512 +29438,2025-03-10T16:26:09.286527-07:00,0.0,10.740427,10740.427 +29439,2025-03-10T16:26:20.032526-07:00,0.0,10.745999,10745.999 +29440,2025-03-10T16:26:30.772521-07:00,0.0,10.739995,10739.995 +29441,2025-03-10T16:26:41.518528-07:00,0.0,10.746007,10746.007 +29442,2025-03-10T16:26:52.267519-07:00,0.0,10.748991,10748.991 +29443,2025-03-10T16:27:03.004527-07:00,0.0,10.737008,10737.008 +29444,2025-03-10T16:27:13.750715-07:00,0.0,10.746188,10746.188 +29445,2025-03-10T16:27:24.494526-07:00,0.0,10.743811,10743.811 +29446,2025-03-10T16:27:35.238689-07:00,0.0,10.744163,10744.163 +29447,2025-03-10T16:27:45.981134-07:00,0.0,10.742445,10742.445 +29448,2025-03-10T16:27:56.725779-07:00,0.0,10.744645,10744.645 +29449,2025-03-10T16:28:07.469768-07:00,0.0,10.743989,10743.989 +29450,2025-03-10T16:28:18.215549-07:00,0.0,10.745781,10745.781 +29451,2025-03-10T16:28:28.963768-07:00,0.0,10.748219,10748.219 +29452,2025-03-10T16:28:39.708818-07:00,0.0,10.74505,10745.05 +29453,2025-03-10T16:28:50.447737-07:00,0.0,10.738919,10738.919 +29454,2025-03-10T16:29:01.198594-07:00,0.0,10.750857,10750.857 +29455,2025-03-10T16:29:11.940525-07:00,0.0,10.741931,10741.931 +29456,2025-03-10T16:29:22.683528-07:00,0.0,10.743003,10743.003 +29457,2025-03-10T16:29:33.430597-07:00,0.0,10.747069,10747.069 +29458,2025-03-10T16:29:54.919707-07:00,0.0,21.48911,21489.11 +29459,2025-03-10T16:30:05.670559-07:00,0.0,10.750852,10750.852 +29460,2025-03-10T16:30:16.411708-07:00,0.0,10.741149,10741.149 +29461,2025-03-10T16:30:27.162528-07:00,0.0,10.75082,10750.82 +29462,2025-03-10T16:30:37.910522-07:00,0.0,10.747994,10747.994 +29463,2025-03-10T16:30:48.648704-07:00,0.0,10.738182,10738.182 +29464,2025-03-10T16:30:59.388695-07:00,0.0,10.739991,10739.991 +29465,2025-03-10T16:31:10.137719-07:00,0.0,10.749024,10749.024 +29466,2025-03-10T16:31:20.880712-07:00,0.0,10.742993,10742.993 +29467,2025-03-10T16:31:31.627364-07:00,0.0,10.746652,10746.652 +29468,2025-03-10T16:31:42.374085-07:00,0.0,10.746721,10746.721 +29469,2025-03-10T16:31:53.109682-07:00,0.0,10.735597,10735.597 +29470,2025-03-10T16:32:03.852673-07:00,0.0,10.742991,10742.991 +29471,2025-03-10T16:32:14.596527-07:00,0.0,10.743854,10743.854 +29472,2025-03-10T16:32:25.340528-07:00,0.0,10.744001,10744.001 +29473,2025-03-10T16:32:36.080820-07:00,0.0,10.740292,10740.292 +29474,2025-03-10T16:32:46.829523-07:00,0.0,10.748703,10748.703 +29475,2025-03-10T16:32:57.568570-07:00,0.0,10.739047,10739.047 +29476,2025-03-10T16:33:08.311624-07:00,0.0,10.743054,10743.054 +29477,2025-03-10T16:33:19.052982-07:00,0.0,10.741358,10741.358 +29478,2025-03-10T16:33:29.805694-07:00,0.0,10.752712,10752.712 +29479,2025-03-10T16:33:40.544619-07:00,0.0,10.738925,10738.925 +29480,2025-03-10T16:33:51.287537-07:00,0.0,10.742918,10742.918 +29481,2025-03-10T16:34:02.027525-07:00,0.0,10.739988,10739.988 +29482,2025-03-10T16:34:12.776736-07:00,0.0,10.749211,10749.211 +29483,2025-03-10T16:34:23.515710-07:00,0.0,10.738974,10738.974 +29484,2025-03-10T16:34:34.255734-07:00,0.0,10.740024,10740.024 +29485,2025-03-10T16:34:45.002523-07:00,0.0,10.746789,10746.789 +29486,2025-03-10T16:34:55.747705-07:00,0.0,10.745182,10745.182 +29487,2025-03-10T16:35:06.491747-07:00,0.0,10.744042,10744.042 +29488,2025-03-10T16:35:17.228708-07:00,0.0,10.736961,10736.961 +29489,2025-03-10T16:35:27.974707-07:00,0.0,10.745999,10745.999 +29490,2025-03-10T16:35:38.726702-07:00,0.0,10.751995,10751.995 +29491,2025-03-10T16:35:49.469825-07:00,0.0,10.743123,10743.123 +29492,2025-03-10T16:36:00.212732-07:00,0.0,10.742907,10742.907 +29493,2025-03-10T16:36:10.964409-07:00,0.0,10.751677,10751.677 +29494,2025-03-10T16:36:21.705528-07:00,0.0,10.741119,10741.119 +29495,2025-03-10T16:36:32.450524-07:00,0.0,10.744996,10744.996 +29496,2025-03-10T16:36:43.195816-07:00,0.0,10.745292,10745.292 +29497,2025-03-10T16:36:53.950530-07:00,0.0,10.754714,10754.714 +29498,2025-03-10T16:37:04.688519-07:00,0.0,10.737989,10737.989 +29499,2025-03-10T16:37:15.443513-07:00,0.0,10.754994,10754.994 +29500,2025-03-10T16:37:26.182561-07:00,0.0,10.739048,10739.048 +29501,2025-03-10T16:37:36.928784-07:00,0.0,10.746223,10746.223 +29502,2025-03-10T16:37:47.678557-07:00,0.0,10.749773,10749.773 +29503,2025-03-10T16:37:58.417599-07:00,0.0,10.739042,10739.042 +29504,2025-03-10T16:38:09.168672-07:00,0.0,10.751073,10751.073 +29505,2025-03-10T16:38:19.908524-07:00,0.0,10.739852,10739.852 +29506,2025-03-10T16:38:30.655600-07:00,0.0,10.747076,10747.076 +29507,2025-03-10T16:38:41.395598-07:00,0.0,10.739998,10739.998 +29508,2025-03-10T16:38:52.141527-07:00,0.0,10.745929,10745.929 +29509,2025-03-10T16:39:02.887605-07:00,0.0,10.746078,10746.078 +29510,2025-03-10T16:39:13.640744-07:00,0.0,10.753139,10753.139 +29511,2025-03-10T16:39:24.382529-07:00,0.0,10.741785,10741.785 +29512,2025-03-10T16:39:35.134103-07:00,0.0,10.751574,10751.574 +29513,2025-03-10T16:39:45.879528-07:00,0.0,10.745425,10745.425 +29514,2025-03-10T16:39:56.624526-07:00,0.0,10.744998,10744.998 +29515,2025-03-10T16:40:07.363761-07:00,0.0,10.739235,10739.235 +29516,2025-03-10T16:40:18.099905-07:00,0.0,10.736144,10736.144 +29517,2025-03-10T16:40:28.848618-07:00,0.0,10.748713,10748.713 +29518,2025-03-10T16:40:39.593525-07:00,0.0,10.744907,10744.907 +29519,2025-03-10T16:40:50.336527-07:00,0.0,10.743002,10743.002 +29520,2025-03-10T16:41:01.078522-07:00,0.0,10.741995,10741.995 +29521,2025-03-10T16:41:11.819527-07:00,0.0,10.741005,10741.005 +29522,2025-03-10T16:41:22.564760-07:00,0.0,10.745233,10745.233 +29523,2025-03-10T16:41:33.305713-07:00,0.0,10.740953,10740.953 +29524,2025-03-10T16:41:44.055848-07:00,0.0,10.750135,10750.135 +29525,2025-03-10T16:41:54.799407-07:00,0.0,10.743559,10743.559 +29526,2025-03-10T16:42:05.532963-07:00,0.0,10.733556,10733.556 +29527,2025-03-10T16:42:16.283917-07:00,0.0,10.750954,10750.954 +29528,2025-03-10T16:42:27.020527-07:00,0.0,10.73661,10736.61 +29529,2025-03-10T16:42:37.767527-07:00,0.0,10.747,10747.0 +29530,2025-03-10T16:42:48.513525-07:00,0.0,10.745998,10745.998 +29531,2025-03-10T16:42:59.258728-07:00,0.0,10.745203,10745.203 +29532,2025-03-10T16:43:10.001525-07:00,0.0,10.742797,10742.797 +29533,2025-03-10T16:43:20.753558-07:00,0.0,10.752033,10752.033 +29534,2025-03-10T16:43:31.496531-07:00,0.0,10.742973,10742.973 +29535,2025-03-10T16:43:42.237633-07:00,0.0,10.741102,10741.102 +29536,2025-03-10T16:43:52.984526-07:00,0.0,10.746893,10746.893 +29537,2025-03-10T16:44:03.732524-07:00,0.0,10.747998,10747.998 +29538,2025-03-10T16:44:14.477724-07:00,0.0,10.7452,10745.2 +29539,2025-03-10T16:44:25.223599-07:00,0.0,10.745875,10745.875 +29540,2025-03-10T16:44:35.970740-07:00,0.0,10.747141,10747.141 +29541,2025-03-10T16:44:46.717714-07:00,0.0,10.746974,10746.974 +29542,2025-03-10T16:44:57.459529-07:00,0.0,10.741815,10741.815 +29543,2025-03-10T16:45:08.199693-07:00,0.0,10.740164,10740.164 +29544,2025-03-10T16:45:18.949633-07:00,0.0,10.74994,10749.94 +29545,2025-03-10T16:45:29.691717-07:00,0.0,10.742084,10742.084 +29546,2025-03-10T16:45:40.431593-07:00,0.0,10.739876,10739.876 +29547,2025-03-10T16:45:51.186742-07:00,0.0,10.755149,10755.149 +29548,2025-03-10T16:46:01.930589-07:00,0.0,10.743847,10743.847 +29549,2025-03-10T16:46:12.681061-07:00,0.0,10.750472,10750.472 +29550,2025-03-10T16:46:23.431468-07:00,0.0,10.750407,10750.407 +29551,2025-03-10T16:46:34.173705-07:00,0.0,10.742237,10742.237 +29552,2025-03-10T16:46:44.924711-07:00,0.0,10.751006,10751.006 +29553,2025-03-10T16:46:55.670717-07:00,0.0,10.746006,10746.006 +29554,2025-03-10T16:47:06.410552-07:00,0.0,10.739835,10739.835 +29555,2025-03-10T16:47:17.156624-07:00,0.0,10.746072,10746.072 +29556,2025-03-10T16:47:27.902527-07:00,0.0,10.745903,10745.903 +29557,2025-03-10T16:47:38.658249-07:00,0.0,10.755722,10755.722 +29558,2025-03-10T16:47:49.395732-07:00,0.0,10.737483,10737.483 +29559,2025-03-10T16:48:00.139550-07:00,0.0,10.743818,10743.818 +29560,2025-03-10T16:48:10.887525-07:00,0.0,10.747975,10747.975 +29561,2025-03-10T16:48:21.642579-07:00,0.0,10.755054,10755.054 +29562,2025-03-10T16:48:32.380522-07:00,0.0,10.737943,10737.943 +29563,2025-03-10T16:48:43.129527-07:00,0.0,10.749005,10749.005 +29564,2025-03-10T16:48:53.880526-07:00,0.0,10.750999,10750.999 +29565,2025-03-10T16:49:04.625808-07:00,0.0,10.745282,10745.282 +29566,2025-03-10T16:49:15.376613-07:00,0.0,10.750805,10750.805 +29567,2025-03-10T16:49:26.116521-07:00,0.0,10.739908,10739.908 +29568,2025-03-10T16:49:36.858531-07:00,0.0,10.74201,10742.01 +29569,2025-03-10T16:49:47.606528-07:00,0.0,10.747997,10747.997 +29570,2025-03-10T16:49:58.349623-07:00,0.0,10.743095,10743.095 +29571,2025-03-10T16:50:09.091714-07:00,0.0,10.742091,10742.091 +29572,2025-03-10T16:50:19.840729-07:00,0.0,10.749015,10749.015 +29573,2025-03-10T16:50:30.589555-07:00,0.0,10.748826,10748.826 +29574,2025-03-10T16:50:41.329992-07:00,0.0,10.740437,10740.437 +29575,2025-03-10T16:50:52.077703-07:00,0.0,10.747711,10747.711 +29576,2025-03-10T16:51:02.816930-07:00,0.0,10.739227,10739.227 +29577,2025-03-10T16:51:13.559781-07:00,0.0,10.742851,10742.851 +29578,2025-03-10T16:51:24.301730-07:00,0.0,10.741949,10741.949 +29579,2025-03-10T16:51:35.040555-07:00,0.0,10.738825,10738.825 +29580,2025-03-10T16:51:45.782736-07:00,0.0,10.742181,10742.181 +29581,2025-03-10T16:51:56.516530-07:00,0.0,10.733794,10733.794 +29582,2025-03-10T16:52:07.265521-07:00,0.0,10.748991,10748.991 +29583,2025-03-10T16:52:17.998714-07:00,0.0,10.733193,10733.193 +29584,2025-03-10T16:52:28.735929-07:00,0.0,10.737215,10737.215 +29585,2025-03-10T16:52:39.480600-07:00,0.0,10.744671,10744.671 +29586,2025-03-10T16:52:50.218736-07:00,0.0,10.738136,10738.136 +29587,2025-03-10T16:53:00.957045-07:00,0.0,10.738309,10738.309 +29588,2025-03-10T16:53:11.701181-07:00,0.0,10.744136,10744.136 +29589,2025-03-10T16:53:22.437146-07:00,0.0,10.735965,10735.965 +29590,2025-03-10T16:53:33.179395-07:00,0.0,10.742249,10742.249 +29591,2025-03-10T16:53:43.920764-07:00,0.0,10.741369,10741.369 +29592,2025-03-10T16:53:54.664973-07:00,0.0,10.744209,10744.209 +29593,2025-03-10T16:54:05.402262-07:00,0.0,10.737289,10737.289 +29594,2025-03-10T16:54:16.152152-07:00,0.0,10.74989,10749.89 +29595,2025-03-10T16:54:26.894121-07:00,0.0,10.741969,10741.969 +29596,2025-03-10T16:54:37.631161-07:00,0.0,10.73704,10737.04 +29597,2025-03-10T16:54:48.379142-07:00,0.0,10.747981,10747.981 +29598,2025-03-10T16:54:59.120980-07:00,0.0,10.741838,10741.838 +29599,2025-03-10T16:55:09.856164-07:00,0.0,10.735184,10735.184 +29600,2025-03-10T16:55:20.610064-07:00,0.0,10.7539,10753.9 +29601,2025-03-10T16:55:31.350479-07:00,0.0,10.740415,10740.415 +29602,2025-03-10T16:55:42.095375-07:00,0.0,10.744896,10744.896 +29603,2025-03-10T16:55:52.840204-07:00,0.0,10.744829,10744.829 +29604,2025-03-10T16:56:03.575979-07:00,0.0,10.735775,10735.775 +29605,2025-03-10T16:56:14.321136-07:00,0.0,10.745157,10745.157 +29606,2025-03-10T16:56:25.071977-07:00,0.0,10.750841,10750.841 +29607,2025-03-10T16:56:35.806976-07:00,0.0,10.734999,10734.999 +29608,2025-03-10T16:56:46.553041-07:00,0.0,10.746065,10746.065 +29609,2025-03-10T16:56:57.300978-07:00,0.0,10.747937,10747.937 +29610,2025-03-10T16:57:08.047190-07:00,0.0,10.746212,10746.212 +29611,2025-03-10T16:57:18.788162-07:00,0.0,10.740972,10740.972 +29612,2025-03-10T16:57:29.535171-07:00,0.0,10.747009,10747.009 +29613,2025-03-10T16:57:40.274108-07:00,0.0,10.738937,10738.937 +29614,2025-03-10T16:57:51.011247-07:00,0.0,10.737139,10737.139 +29615,2025-03-10T16:58:01.758975-07:00,0.0,10.747728,10747.728 +29616,2025-03-10T16:58:12.494189-07:00,0.0,10.735214,10735.214 +29617,2025-03-10T16:58:23.234978-07:00,0.0,10.740789,10740.789 +29618,2025-03-10T16:58:33.968983-07:00,0.0,10.734005,10734.005 +29619,2025-03-10T16:58:44.707160-07:00,0.0,10.738177,10738.177 +29620,2025-03-10T16:58:55.447396-07:00,0.0,10.740236,10740.236 +29621,2025-03-10T16:59:06.193209-07:00,0.0,10.745813,10745.813 +29622,2025-03-10T16:59:16.924294-07:00,0.0,10.731085,10731.085 +29623,2025-03-10T16:59:27.675033-07:00,0.0,10.750739,10750.739 +29624,2025-03-10T16:59:38.413374-07:00,0.0,10.738341,10738.341 +29625,2025-03-10T16:59:49.147173-07:00,0.0,10.733799,10733.799 +29626,2025-03-10T16:59:59.895202-07:00,0.0,10.748029,10748.029 +29627,2025-03-10T17:00:10.631124-07:00,0.0,10.735922,10735.922 +29628,2025-03-10T17:00:21.375186-07:00,0.0,10.744062,10744.062 +29629,2025-03-10T17:00:32.113978-07:00,0.0,10.738792,10738.792 +29630,2025-03-10T17:00:42.852982-07:00,0.0,10.739004,10739.004 +29631,2025-03-10T17:00:53.599046-07:00,0.0,10.746064,10746.064 +29632,2025-03-10T17:01:04.335415-07:00,0.0,10.736369,10736.369 +29633,2025-03-10T17:01:15.069158-07:00,0.0,10.733743,10733.743 +29634,2025-03-10T17:01:25.807006-07:00,0.0,10.737848,10737.848 +29635,2025-03-10T17:01:36.539969-07:00,0.0,10.732963,10732.963 +29636,2025-03-10T17:01:47.277119-07:00,0.0,10.73715,10737.15 +29637,2025-03-10T17:01:56.249353-07:00,368.0,8.972234,8972.234 +29638,2025-03-10T17:01:58.020210-07:00,368.0,1.770857,1770.857 +29639,2025-03-10T17:02:08.759169-07:00,424.0,10.738959,10738.959 +29640,2025-03-10T17:02:19.494192-07:00,387.0,10.735023,10735.023 +29641,2025-03-10T17:02:30.233974-07:00,391.0,10.739782,10739.782 +29642,2025-03-10T17:02:40.975303-07:00,366.0,10.741329,10741.329 +29643,2025-03-10T17:02:46.373336-07:00,0.0,5.398033,5398.033 +29644,2025-03-10T17:02:51.716008-07:00,0.0,5.342672,5342.672 +29645,2025-03-10T17:03:02.452052-07:00,0.0,10.736044,10736.044 +29646,2025-03-10T17:03:13.191190-07:00,0.0,10.739138,10739.138 +29647,2025-03-10T17:03:23.928003-07:00,0.0,10.736813,10736.813 +29648,2025-03-10T17:03:34.667973-07:00,0.0,10.73997,10739.97 +29649,2025-03-10T17:03:45.400171-07:00,0.0,10.732198,10732.198 +29650,2025-03-10T17:03:56.147970-07:00,0.0,10.747799,10747.799 +29651,2025-03-10T17:04:06.885500-07:00,0.0,10.73753,10737.53 +29652,2025-03-10T17:04:17.611260-07:00,0.0,10.72576,10725.76 +29653,2025-03-10T17:04:28.351493-07:00,0.0,10.740233,10740.233 +29654,2025-03-10T17:04:39.083972-07:00,0.0,10.732479,10732.479 +29655,2025-03-10T17:04:49.820171-07:00,0.0,10.736199,10736.199 +29656,2025-03-10T17:05:00.556127-07:00,0.0,10.735956,10735.956 +29657,2025-03-10T17:05:11.300329-07:00,0.0,10.744202,10744.202 +29658,2025-03-10T17:05:22.032978-07:00,0.0,10.732649,10732.649 +29659,2025-03-10T17:05:32.771143-07:00,0.0,10.738165,10738.165 +29660,2025-03-10T17:05:43.517202-07:00,0.0,10.746059,10746.059 +29661,2025-03-10T17:05:54.253154-07:00,0.0,10.735952,10735.952 +29662,2025-03-10T17:06:04.989975-07:00,0.0,10.736821,10736.821 +29663,2025-03-10T17:06:15.726052-07:00,0.0,10.736077,10736.077 +29664,2025-03-10T17:06:26.469975-07:00,0.0,10.743923,10743.923 +29665,2025-03-10T17:06:37.214007-07:00,0.0,10.744032,10744.032 +29666,2025-03-10T17:06:47.947975-07:00,0.0,10.733968,10733.968 +29667,2025-03-10T17:06:58.693983-07:00,0.0,10.746008,10746.008 +29668,2025-03-10T17:07:09.430198-07:00,0.0,10.736215,10736.215 +29669,2025-03-10T17:07:20.173973-07:00,0.0,10.743775,10743.775 +29670,2025-03-10T17:07:30.904782-07:00,0.0,10.730809,10730.809 +29671,2025-03-10T17:07:41.649981-07:00,0.0,10.745199,10745.199 +29672,2025-03-10T17:07:52.388043-07:00,0.0,10.738062,10738.062 +29673,2025-03-10T17:08:03.130175-07:00,0.0,10.742132,10742.132 +29674,2025-03-10T17:08:13.870151-07:00,0.0,10.739976,10739.976 +29675,2025-03-10T17:08:24.603974-07:00,0.0,10.733823,10733.823 +29676,2025-03-10T17:08:35.337187-07:00,0.0,10.733213,10733.213 +29677,2025-03-10T17:08:46.078977-07:00,0.0,10.74179,10741.79 +29678,2025-03-10T17:08:56.816573-07:00,0.0,10.737596,10737.596 +29679,2025-03-10T17:09:07.558125-07:00,0.0,10.741552,10741.552 +29680,2025-03-10T17:09:18.291999-07:00,0.0,10.733874,10733.874 +29681,2025-03-10T17:09:29.025974-07:00,0.0,10.733975,10733.975 +29682,2025-03-10T17:09:39.773972-07:00,0.0,10.747998,10747.998 +29683,2025-03-10T17:09:50.510005-07:00,0.0,10.736033,10736.033 +29684,2025-03-10T17:10:01.248175-07:00,0.0,10.73817,10738.17 +29685,2025-03-10T17:10:11.984542-07:00,0.0,10.736367,10736.367 +29686,2025-03-10T17:10:22.716985-07:00,0.0,10.732443,10732.443 +29687,2025-03-10T17:10:33.457174-07:00,0.0,10.740189,10740.189 +29688,2025-03-10T17:10:44.189013-07:00,0.0,10.731839,10731.839 +29689,2025-03-10T17:10:54.933050-07:00,0.0,10.744037,10744.037 +29690,2025-03-10T17:11:05.663100-07:00,0.0,10.73005,10730.05 +29691,2025-03-10T17:11:16.404070-07:00,0.0,10.74097,10740.97 +29692,2025-03-10T17:11:27.148465-07:00,0.0,10.744395,10744.395 +29693,2025-03-10T17:11:37.879294-07:00,0.0,10.730829,10730.829 +29694,2025-03-10T17:11:48.619284-07:00,0.0,10.73999,10739.99 +29695,2025-03-10T17:11:59.362167-07:00,0.0,10.742883,10742.883 +29696,2025-03-10T17:12:10.094977-07:00,0.0,10.73281,10732.81 +29697,2025-03-10T17:12:20.838086-07:00,0.0,10.743109,10743.109 +29698,2025-03-10T17:12:31.575045-07:00,0.0,10.736959,10736.959 +29699,2025-03-10T17:12:42.318157-07:00,0.0,10.743112,10743.112 +29700,2025-03-10T17:12:53.049144-07:00,0.0,10.730987,10730.987 +29701,2025-03-10T17:13:03.791733-07:00,0.0,10.742589,10742.589 +29702,2025-03-10T17:13:14.525976-07:00,0.0,10.734243,10734.243 +29703,2025-03-10T17:13:25.265184-07:00,0.0,10.739208,10739.208 +29704,2025-03-10T17:13:36.004126-07:00,0.0,10.738942,10738.942 +29705,2025-03-10T17:13:46.743190-07:00,0.0,10.739064,10739.064 +29706,2025-03-10T17:13:57.484164-07:00,0.0,10.740974,10740.974 +29707,2025-03-10T17:14:08.225667-07:00,0.0,10.741503,10741.503 +29708,2025-03-10T17:14:18.959971-07:00,0.0,10.734304,10734.304 +29709,2025-03-10T17:14:29.691140-07:00,0.0,10.731169,10731.169 +29710,2025-03-10T17:14:40.437017-07:00,0.0,10.745877,10745.877 +29711,2025-03-10T17:14:51.170141-07:00,0.0,10.733124,10733.124 +29712,2025-03-10T17:15:01.909204-07:00,0.0,10.739063,10739.063 +29713,2025-03-10T17:15:12.650049-07:00,0.0,10.740845,10740.845 +29714,2025-03-10T17:15:23.387177-07:00,0.0,10.737128,10737.128 +29715,2025-03-10T17:15:33.483171-07:00,0.0,10.095994,10095.994 +29716,2025-03-10T17:15:34.117258-07:00,0.0,0.634087,634.087 +29717,2025-03-10T17:15:44.862182-07:00,0.0,10.744924,10744.924 +29718,2025-03-10T17:15:55.603185-07:00,0.0,10.741003,10741.003 +29719,2025-03-10T17:16:06.340001-07:00,0.0,10.736816,10736.816 +29720,2025-03-10T17:16:17.079085-07:00,0.0,10.739084,10739.084 +29721,2025-03-10T17:16:27.807988-07:00,0.0,10.728903,10728.903 +29722,2025-03-10T17:16:38.546363-07:00,0.0,10.738375,10738.375 +29723,2025-03-10T17:16:49.290100-07:00,0.0,10.743737,10743.737 +29724,2025-03-10T17:17:00.025187-07:00,0.0,10.735087,10735.087 +29725,2025-03-10T17:17:10.756970-07:00,0.0,10.731783,10731.783 +29726,2025-03-10T17:17:21.488226-07:00,0.0,10.731256,10731.256 +29727,2025-03-10T17:17:32.225997-07:00,0.0,10.737771,10737.771 +29728,2025-03-10T17:17:42.965975-07:00,0.0,10.739978,10739.978 +29729,2025-03-10T17:17:53.704048-07:00,0.0,10.738073,10738.073 +29730,2025-03-10T17:18:04.442015-07:00,0.0,10.737967,10737.967 +29731,2025-03-10T17:18:15.178972-07:00,0.0,10.736957,10736.957 +29732,2025-03-10T17:18:25.911535-07:00,0.0,10.732563,10732.563 +29733,2025-03-10T17:18:36.654006-07:00,0.0,10.742471,10742.471 +29734,2025-03-10T17:18:47.388202-07:00,0.0,10.734196,10734.196 +29735,2025-03-10T17:18:58.124978-07:00,0.0,10.736776,10736.776 +29736,2025-03-10T17:19:08.862388-07:00,0.0,10.73741,10737.41 +29737,2025-03-10T17:19:19.604175-07:00,0.0,10.741787,10741.787 +29738,2025-03-10T17:19:30.334038-07:00,0.0,10.729863,10729.863 +29739,2025-03-10T17:19:41.071978-07:00,0.0,10.73794,10737.94 +29740,2025-03-10T17:19:51.810977-07:00,0.0,10.738999,10738.999 +29741,2025-03-10T17:20:02.538377-07:00,0.0,10.7274,10727.4 +29742,2025-03-10T17:20:13.277849-07:00,0.0,10.739472,10739.472 +29743,2025-03-10T17:20:24.005974-07:00,0.0,10.728125,10728.125 +29744,2025-03-10T17:20:34.748998-07:00,0.0,10.743024,10743.024 +29745,2025-03-10T17:20:45.481255-07:00,0.0,10.732257,10732.257 +29746,2025-03-10T17:20:56.223156-07:00,0.0,10.741901,10741.901 +29747,2025-03-10T17:21:06.955977-07:00,0.0,10.732821,10732.821 +29748,2025-03-10T17:21:17.683196-07:00,0.0,10.727219,10727.219 +29749,2025-03-10T17:21:28.418162-07:00,0.0,10.734966,10734.966 +29750,2025-03-10T17:21:39.151080-07:00,0.0,10.732918,10732.918 +29751,2025-03-10T17:21:49.881400-07:00,0.0,10.73032,10730.32 +29752,2025-03-10T17:22:00.620491-07:00,0.0,10.739091,10739.091 +29753,2025-03-10T17:22:11.358537-07:00,0.0,10.738046,10738.046 +29754,2025-03-10T17:22:22.093999-07:00,0.0,10.735462,10735.462 +29755,2025-03-10T17:22:32.831083-07:00,0.0,10.737084,10737.084 +29756,2025-03-10T17:22:43.570973-07:00,0.0,10.73989,10739.89 +29757,2025-03-10T17:22:54.307977-07:00,0.0,10.737004,10737.004 +29758,2025-03-10T17:23:05.043475-07:00,0.0,10.735498,10735.498 +29759,2025-03-10T17:23:15.780062-07:00,0.0,10.736587,10736.587 +29760,2025-03-10T17:23:26.512046-07:00,0.0,10.731984,10731.984 +29761,2025-03-10T17:23:37.247159-07:00,0.0,10.735113,10735.113 +29762,2025-03-10T17:23:47.984392-07:00,0.0,10.737233,10737.233 +29763,2025-03-10T17:23:55.627110-07:00,0.0,7.642718,7642.718 +29764,2025-03-10T17:23:58.725461-07:00,0.0,3.098351,3098.351 +29765,2025-03-10T17:24:09.461177-07:00,0.0,10.735716,10735.716 +29766,2025-03-10T17:24:20.193009-07:00,0.0,10.731832,10731.832 +29767,2025-03-10T17:24:30.929978-07:00,0.0,10.736969,10736.969 +29768,2025-03-10T17:24:41.667161-07:00,0.0,10.737183,10737.183 +29769,2025-03-10T17:24:52.402049-07:00,0.0,10.734888,10734.888 +29770,2025-03-10T17:25:03.141975-07:00,0.0,10.739926,10739.926 +29771,2025-03-10T17:25:13.878979-07:00,0.0,10.737004,10737.004 +29772,2025-03-10T17:25:24.613645-07:00,0.0,10.734666,10734.666 +29773,2025-03-10T17:25:35.361466-07:00,0.0,10.747821,10747.821 +29774,2025-03-10T17:25:46.097174-07:00,0.0,10.735708,10735.708 +29775,2025-03-10T17:25:56.834038-07:00,0.0,10.736864,10736.864 +29776,2025-03-10T17:26:07.573983-07:00,0.0,10.739945,10739.945 +29777,2025-03-10T17:26:18.312979-07:00,0.0,10.738996,10738.996 +29778,2025-03-10T17:26:29.056147-07:00,0.0,10.743168,10743.168 +29779,2025-03-10T17:26:39.788161-07:00,0.0,10.732014,10732.014 +29780,2025-03-10T17:26:50.528070-07:00,0.0,10.739909,10739.909 +29781,2025-03-10T17:27:01.273145-07:00,0.0,10.745075,10745.075 +29782,2025-03-10T17:27:12.010977-07:00,0.0,10.737832,10737.832 +29783,2025-03-10T17:27:22.742420-07:00,0.0,10.731443,10731.443 +29784,2025-03-10T17:27:33.485027-07:00,0.0,10.742607,10742.607 +29785,2025-03-10T17:27:44.226152-07:00,0.0,10.741125,10741.125 +29786,2025-03-10T17:27:54.962163-07:00,0.0,10.736011,10736.011 +29787,2025-03-10T17:28:05.704975-07:00,0.0,10.742812,10742.812 +29788,2025-03-10T17:28:16.443013-07:00,0.0,10.738038,10738.038 +29789,2025-03-10T17:28:27.177209-07:00,0.0,10.734196,10734.196 +29790,2025-03-10T17:28:37.922130-07:00,0.0,10.744921,10744.921 +29791,2025-03-10T17:28:48.663365-07:00,0.0,10.741235,10741.235 +29792,2025-03-10T17:28:59.391974-07:00,0.0,10.728609,10728.609 +29793,2025-03-10T17:29:10.137196-07:00,0.0,10.745222,10745.222 +29794,2025-03-10T17:29:20.875005-07:00,0.0,10.737809,10737.809 +29795,2025-03-10T17:29:31.616188-07:00,0.0,10.741183,10741.183 +29796,2025-03-10T17:29:42.351867-07:00,0.0,10.735679,10735.679 +29797,2025-03-10T17:29:53.096369-07:00,0.0,10.744502,10744.502 +29798,2025-03-10T17:30:03.835715-07:00,0.0,10.739346,10739.346 +29799,2025-03-10T17:30:14.568186-07:00,0.0,10.732471,10732.471 +29800,2025-03-10T17:30:25.306052-07:00,0.0,10.737866,10737.866 +29801,2025-03-10T17:30:36.052187-07:00,0.0,10.746135,10746.135 +29802,2025-03-10T17:30:46.784086-07:00,0.0,10.731899,10731.899 +29803,2025-03-10T17:30:57.525069-07:00,0.0,10.740983,10740.983 +29804,2025-03-10T17:31:08.267075-07:00,0.0,10.742006,10742.006 +29805,2025-03-10T17:31:18.996981-07:00,0.0,10.729906,10729.906 +29806,2025-03-10T17:31:29.736241-07:00,0.0,10.73926,10739.26 +29807,2025-03-10T17:31:40.475264-07:00,0.0,10.739023,10739.023 +29808,2025-03-10T17:31:51.219552-07:00,0.0,10.744288,10744.288 +29809,2025-03-10T17:32:01.955028-07:00,0.0,10.735476,10735.476 +29810,2025-03-10T17:32:12.699013-07:00,0.0,10.743985,10743.985 +29811,2025-03-10T17:32:23.440122-07:00,0.0,10.741109,10741.109 +29812,2025-03-10T17:32:34.181154-07:00,0.0,10.741032,10741.032 +29813,2025-03-10T17:32:44.909979-07:00,0.0,10.728825,10728.825 +29814,2025-03-10T17:32:55.650147-07:00,0.0,10.740168,10740.168 +29815,2025-03-10T17:33:06.393569-07:00,0.0,10.743422,10743.422 +29816,2025-03-10T17:33:17.130976-07:00,0.0,10.737407,10737.407 +29817,2025-03-10T17:33:27.876365-07:00,0.0,10.745389,10745.389 +29818,2025-03-10T17:33:38.617976-07:00,0.0,10.741611,10741.611 +29819,2025-03-10T17:33:49.359188-07:00,0.0,10.741212,10741.212 +29820,2025-03-10T17:34:00.090212-07:00,0.0,10.731024,10731.024 +29821,2025-03-10T17:34:10.840179-07:00,0.0,10.749967,10749.967 +29822,2025-03-10T17:34:21.573731-07:00,0.0,10.733552,10733.552 +29823,2025-03-10T17:34:32.313974-07:00,0.0,10.740243,10740.243 +29824,2025-03-10T17:34:43.054995-07:00,0.0,10.741021,10741.021 +29825,2025-03-10T17:34:53.797170-07:00,0.0,10.742175,10742.175 +29826,2025-03-10T17:35:04.548184-07:00,0.0,10.751014,10751.014 +29827,2025-03-10T17:35:15.283139-07:00,0.0,10.734955,10734.955 +29828,2025-03-10T17:35:26.031978-07:00,0.0,10.748839,10748.839 +29829,2025-03-10T17:35:36.768146-07:00,0.0,10.736168,10736.168 +29830,2025-03-10T17:35:47.515011-07:00,0.0,10.746865,10746.865 +29831,2025-03-10T17:35:58.259150-07:00,0.0,10.744139,10744.139 +29832,2025-03-10T17:36:09.000914-07:00,0.0,10.741764,10741.764 +29833,2025-03-10T17:36:19.735990-07:00,0.0,10.735076,10735.076 +29834,2025-03-10T17:36:30.477974-07:00,0.0,10.741984,10741.984 +29835,2025-03-10T17:36:41.216188-07:00,0.0,10.738214,10738.214 +29836,2025-03-10T17:36:51.961056-07:00,0.0,10.744868,10744.868 +29837,2025-03-10T17:37:02.706111-07:00,0.0,10.745055,10745.055 +29838,2025-03-10T17:37:13.442783-07:00,0.0,10.736672,10736.672 +29839,2025-03-10T17:37:24.182155-07:00,0.0,10.739372,10739.372 +29840,2025-03-10T17:37:34.931153-07:00,0.0,10.748998,10748.998 +29841,2025-03-10T17:37:45.664001-07:00,0.0,10.732848,10732.848 +29842,2025-03-10T17:37:56.404977-07:00,0.0,10.740976,10740.976 +29843,2025-03-10T17:38:07.146044-07:00,0.0,10.741067,10741.067 +29844,2025-03-10T17:38:17.894974-07:00,0.0,10.74893,10748.93 +29845,2025-03-10T17:38:28.634979-07:00,0.0,10.740005,10740.005 +29846,2025-03-10T17:38:39.371380-07:00,0.0,10.736401,10736.401 +29847,2025-03-10T17:38:50.114173-07:00,0.0,10.742793,10742.793 +29848,2025-03-10T17:39:00.862199-07:00,0.0,10.748026,10748.026 +29849,2025-03-10T17:39:11.612385-07:00,0.0,10.750186,10750.186 +29850,2025-03-10T17:39:22.345971-07:00,0.0,10.733586,10733.586 +29851,2025-03-10T17:39:33.096221-07:00,0.0,10.75025,10750.25 +29852,2025-03-10T17:39:43.841055-07:00,0.0,10.744834,10744.834 +29853,2025-03-10T17:39:54.582624-07:00,0.0,10.741569,10741.569 +29854,2025-03-10T17:40:05.326979-07:00,0.0,10.744355,10744.355 +29855,2025-03-10T17:40:16.068048-07:00,0.0,10.741069,10741.069 +29856,2025-03-10T17:40:26.812756-07:00,0.0,10.744708,10744.708 +29857,2025-03-10T17:40:37.557201-07:00,0.0,10.744445,10744.445 +29858,2025-03-10T17:40:48.305976-07:00,0.0,10.748775,10748.775 +29859,2025-03-10T17:40:59.049218-07:00,0.0,10.743242,10743.242 +29860,2025-03-10T17:41:09.791162-07:00,0.0,10.741944,10741.944 +29861,2025-03-10T17:41:20.531156-07:00,0.0,10.739994,10739.994 +29862,2025-03-10T17:41:31.270978-07:00,0.0,10.739822,10739.822 +29863,2025-03-10T17:41:42.018977-07:00,0.0,10.747999,10747.999 +29864,2025-03-10T17:41:52.758212-07:00,0.0,10.739235,10739.235 +29865,2025-03-10T17:42:03.500481-07:00,0.0,10.742269,10742.269 +29866,2025-03-10T17:42:14.247177-07:00,0.0,10.746696,10746.696 +29867,2025-03-10T17:42:24.985223-07:00,0.0,10.738046,10738.046 +29868,2025-03-10T17:42:35.733295-07:00,0.0,10.748072,10748.072 +29869,2025-03-10T17:42:46.484047-07:00,0.0,10.750752,10750.752 +29870,2025-03-10T17:42:57.218400-07:00,0.0,10.734353,10734.353 +29871,2025-03-10T17:43:07.969974-07:00,0.0,10.751574,10751.574 +29872,2025-03-10T17:43:18.717975-07:00,0.0,10.748001,10748.001 +29873,2025-03-10T17:43:29.458030-07:00,0.0,10.740055,10740.055 +29874,2025-03-10T17:43:40.198192-07:00,0.0,10.740162,10740.162 +29875,2025-03-10T17:43:50.947196-07:00,0.0,10.749004,10749.004 +29876,2025-03-10T17:44:01.688336-07:00,0.0,10.74114,10741.14 +29877,2025-03-10T17:44:12.432673-07:00,0.0,10.744337,10744.337 +29878,2025-03-10T17:44:23.181008-07:00,0.0,10.748335,10748.335 +29879,2025-03-10T17:44:33.927559-07:00,0.0,10.746551,10746.551 +29880,2025-03-10T17:44:44.676128-07:00,0.0,10.748569,10748.569 +29881,2025-03-10T17:44:55.432193-07:00,0.0,10.756065,10756.065 +29882,2025-03-10T17:45:06.180461-07:00,0.0,10.748268,10748.268 +29883,2025-03-10T17:45:16.927174-07:00,0.0,10.746713,10746.713 +29884,2025-03-10T17:45:27.666223-07:00,0.0,10.739049,10739.049 +29885,2025-03-10T17:45:38.420203-07:00,0.0,10.75398,10753.98 +29886,2025-03-10T17:45:49.167280-07:00,0.0,10.747077,10747.077 +29887,2025-03-10T17:45:59.903989-07:00,0.0,10.736709,10736.709 +29888,2025-03-10T17:46:10.655579-07:00,0.0,10.75159,10751.59 +29889,2025-03-10T17:46:21.400032-07:00,0.0,10.744453,10744.453 +29890,2025-03-10T17:46:32.152057-07:00,0.0,10.752025,10752.025 +29891,2025-03-10T17:46:42.902260-07:00,0.0,10.750203,10750.203 +29892,2025-03-10T17:46:53.644055-07:00,0.0,10.741795,10741.795 +29893,2025-03-10T17:47:04.387978-07:00,0.0,10.743923,10743.923 +29894,2025-03-10T17:47:15.134981-07:00,0.0,10.747003,10747.003 +29895,2025-03-10T17:47:25.891004-07:00,0.0,10.756023,10756.023 +29896,2025-03-10T17:47:36.640014-07:00,0.0,10.74901,10749.01 +29897,2025-03-10T17:47:47.384001-07:00,0.0,10.743987,10743.987 +29898,2025-03-10T17:47:58.135001-07:00,0.0,10.751,10751.0 +29899,2025-03-10T17:48:08.889398-07:00,0.0,10.754397,10754.397 +29900,2025-03-10T17:48:19.637087-07:00,0.0,10.747689,10747.689 +29901,2025-03-10T17:48:30.387153-07:00,0.0,10.750066,10750.066 +29902,2025-03-10T17:48:41.145235-07:00,0.0,10.758082,10758.082 +29903,2025-03-10T17:48:51.894120-07:00,0.0,10.748885,10748.885 +29904,2025-03-10T17:49:02.654978-07:00,0.0,10.760858,10760.858 +29905,2025-03-10T17:49:13.410745-07:00,0.0,10.755767,10755.767 +29906,2025-03-10T17:49:24.172428-07:00,0.0,10.761683,10761.683 +29907,2025-03-10T17:49:34.929397-07:00,0.0,10.756969,10756.969 +29908,2025-03-10T17:49:45.678181-07:00,0.0,10.748784,10748.784 +29909,2025-03-10T17:49:56.439065-07:00,0.0,10.760884,10760.884 +29910,2025-03-10T17:50:07.189180-07:00,0.0,10.750115,10750.115 +29911,2025-03-10T17:50:17.947009-07:00,0.0,10.757829,10757.829 +29912,2025-03-10T17:50:28.698347-07:00,0.0,10.751338,10751.338 +29913,2025-03-10T17:50:39.449547-07:00,0.0,10.7512,10751.2 +29914,2025-03-10T17:50:50.192980-07:00,0.0,10.743433,10743.433 +29915,2025-03-10T17:51:00.941198-07:00,0.0,10.748218,10748.218 +29916,2025-03-10T17:51:11.691977-07:00,0.0,10.750779,10750.779 +29917,2025-03-10T17:51:22.444102-07:00,0.0,10.752125,10752.125 +29918,2025-03-10T17:51:33.186978-07:00,0.0,10.742876,10742.876 +29919,2025-03-10T17:51:43.939326-07:00,0.0,10.752348,10752.348 +29920,2025-03-10T17:51:54.680980-07:00,0.0,10.741654,10741.654 +29921,2025-03-10T17:52:05.432073-07:00,0.0,10.751093,10751.093 +29922,2025-03-10T17:52:16.172974-07:00,0.0,10.740901,10740.901 +29923,2025-03-10T17:52:26.919978-07:00,0.0,10.747004,10747.004 +29924,2025-03-10T17:52:37.669447-07:00,0.0,10.749469,10749.469 +29925,2025-03-10T17:52:48.411198-07:00,0.0,10.741751,10741.751 +29926,2025-03-10T17:52:59.153182-07:00,0.0,10.741984,10741.984 +29927,2025-03-10T17:53:09.930537-07:00,0.0,10.777355,10777.355 +29928,2025-03-10T17:53:20.678535-07:00,0.0,10.747998,10747.998 +29929,2025-03-10T17:53:31.425750-07:00,0.0,10.747215,10747.215 +29930,2025-03-10T17:53:42.165695-07:00,0.0,10.739945,10739.945 +29931,2025-03-10T17:53:52.904964-07:00,0.0,10.739269,10739.269 +29932,2025-03-10T17:54:03.648707-07:00,0.0,10.743743,10743.743 +29933,2025-03-10T17:54:14.398868-07:00,0.0,10.750161,10750.161 +29934,2025-03-10T17:54:25.133671-07:00,0.0,10.734803,10734.803 +29935,2025-03-10T17:54:35.884818-07:00,0.0,10.751147,10751.147 +29936,2025-03-10T17:54:46.626774-07:00,0.0,10.741956,10741.956 +29937,2025-03-10T17:54:57.364565-07:00,0.0,10.737791,10737.791 +29938,2025-03-10T17:55:08.120392-07:00,0.0,10.755827,10755.827 +29939,2025-03-10T17:55:18.870565-07:00,0.0,10.750173,10750.173 +29940,2025-03-10T17:55:29.610757-07:00,0.0,10.740192,10740.192 +29941,2025-03-10T17:55:40.360848-07:00,0.0,10.750091,10750.091 +29942,2025-03-10T17:55:51.118111-07:00,0.0,10.757263,10757.263 +29943,2025-03-10T17:56:01.866437-07:00,0.0,10.748326,10748.326 +29944,2025-03-10T17:56:12.621306-07:00,0.0,10.754869,10754.869 +29945,2025-03-10T17:56:23.367731-07:00,0.0,10.746425,10746.425 +29946,2025-03-10T17:56:34.120726-07:00,0.0,10.752995,10752.995 +29947,2025-03-10T17:56:44.871727-07:00,0.0,10.751001,10751.001 +29948,2025-03-10T17:56:55.613755-07:00,0.0,10.742028,10742.028 +29949,2025-03-10T17:57:06.358721-07:00,0.0,10.744966,10744.966 +29950,2025-03-10T17:57:17.113563-07:00,0.0,10.754842,10754.842 +29951,2025-03-10T17:57:27.861734-07:00,0.0,10.748171,10748.171 +29952,2025-03-10T17:57:38.613014-07:00,0.0,10.75128,10751.28 +29953,2025-03-10T17:57:49.353561-07:00,0.0,10.740547,10740.547 +29954,2025-03-10T17:58:00.105592-07:00,0.0,10.752031,10752.031 +29955,2025-03-10T17:58:10.858558-07:00,0.0,10.752966,10752.966 +29956,2025-03-10T17:58:21.610539-07:00,0.0,10.751981,10751.981 +29957,2025-03-10T17:58:32.357718-07:00,0.0,10.747179,10747.179 +29958,2025-03-10T17:58:43.114598-07:00,0.0,10.75688,10756.88 +29959,2025-03-10T17:58:53.869751-07:00,0.0,10.755153,10755.153 +29960,2025-03-10T17:59:04.615533-07:00,0.0,10.745782,10745.782 +29961,2025-03-10T17:59:15.371712-07:00,0.0,10.756179,10756.179 +29962,2025-03-10T17:59:26.120377-07:00,0.0,10.748665,10748.665 +29963,2025-03-10T17:59:36.866792-07:00,0.0,10.746415,10746.415 +29964,2025-03-10T17:59:47.623725-07:00,0.0,10.756933,10756.933 +29965,2025-03-10T17:59:58.371944-07:00,0.0,10.748219,10748.219 +29966,2025-03-10T18:00:09.125532-07:00,0.0,10.753588,10753.588 +29967,2025-03-10T18:00:19.878536-07:00,0.0,10.753004,10753.004 +29968,2025-03-10T18:00:30.633666-07:00,0.0,10.75513,10755.13 +29969,2025-03-10T18:00:41.389832-07:00,0.0,10.756166,10756.166 +29970,2025-03-10T18:00:52.136606-07:00,0.0,10.746774,10746.774 +29971,2025-03-10T18:01:02.896592-07:00,0.0,10.759986,10759.986 +29972,2025-03-10T18:01:13.642733-07:00,0.0,10.746141,10746.141 +29973,2025-03-10T18:01:24.402728-07:00,0.0,10.759995,10759.995 +29974,2025-03-10T18:01:35.158739-07:00,0.0,10.756011,10756.011 +29975,2025-03-10T18:01:45.908725-07:00,0.0,10.749986,10749.986 +29976,2025-03-10T18:01:56.651822-07:00,0.0,10.743097,10743.097 +29977,2025-03-10T18:02:07.403749-07:00,0.0,10.751927,10751.927 +29978,2025-03-10T18:02:18.156798-07:00,0.0,10.753049,10753.049 +29979,2025-03-10T18:02:28.902424-07:00,0.0,10.745626,10745.626 +29980,2025-03-10T18:02:39.651774-07:00,0.0,10.74935,10749.35 +29981,2025-03-10T18:02:50.406633-07:00,0.0,10.754859,10754.859 +29982,2025-03-10T18:03:01.149810-07:00,0.0,10.743177,10743.177 +29983,2025-03-10T18:03:11.907738-07:00,0.0,10.757928,10757.928 +29984,2025-03-10T18:03:22.657665-07:00,0.0,10.749927,10749.927 +29985,2025-03-10T18:03:33.404529-07:00,0.0,10.746864,10746.864 +29986,2025-03-10T18:03:44.160827-07:00,0.0,10.756298,10756.298 +29987,2025-03-10T18:03:54.902067-07:00,0.0,10.74124,10741.24 +29988,2025-03-10T18:04:05.657703-07:00,0.0,10.755636,10755.636 +29989,2025-03-10T18:04:16.409976-07:00,0.0,10.752273,10752.273 +29990,2025-03-10T18:04:27.154587-07:00,0.0,10.744611,10744.611 +29991,2025-03-10T18:04:37.901637-07:00,0.0,10.74705,10747.05 +29992,2025-03-10T18:04:48.652582-07:00,0.0,10.750945,10750.945 +29993,2025-03-10T18:04:59.401592-07:00,0.0,10.74901,10749.01 +29994,2025-03-10T18:05:10.154729-07:00,0.0,10.753137,10753.137 +29995,2025-03-10T18:05:20.899708-07:00,0.0,10.744979,10744.979 +29996,2025-03-10T18:05:31.650957-07:00,0.0,10.751249,10751.249 +29997,2025-03-10T18:05:42.396718-07:00,0.0,10.745761,10745.761 +29998,2025-03-10T18:05:53.143719-07:00,0.0,10.747001,10747.001 +29999,2025-03-10T18:06:03.888370-07:00,0.0,10.744651,10744.651 +30000,2025-03-10T18:06:14.639712-07:00,0.0,10.751342,10751.342 +30001,2025-03-10T18:06:25.384043-07:00,0.0,10.744331,10744.331 +30002,2025-03-10T18:06:36.125558-07:00,0.0,10.741515,10741.515 +30003,2025-03-10T18:06:46.873830-07:00,0.0,10.748272,10748.272 +30004,2025-03-10T18:06:57.618063-07:00,0.0,10.744233,10744.233 +30005,2025-03-10T18:07:08.366533-07:00,0.0,10.74847,10748.47 +30006,2025-03-10T18:07:19.113525-07:00,0.0,10.746992,10746.992 +30007,2025-03-10T18:07:29.857971-07:00,0.0,10.744446,10744.446 +30008,2025-03-10T18:07:40.604535-07:00,0.0,10.746564,10746.564 +30009,2025-03-10T18:07:51.346558-07:00,0.0,10.742023,10742.023 +30010,2025-03-10T18:08:02.091535-07:00,0.0,10.744977,10744.977 +30011,2025-03-10T18:08:12.835534-07:00,0.0,10.743999,10743.999 +30012,2025-03-10T18:08:23.578885-07:00,0.0,10.743351,10743.351 +30013,2025-03-10T18:08:34.310711-07:00,0.0,10.731826,10731.826 +30014,2025-03-10T18:08:45.059713-07:00,0.0,10.749002,10749.002 +30015,2025-03-10T18:08:55.804004-07:00,0.0,10.744291,10744.291 +30016,2025-03-10T18:09:06.548372-07:00,0.0,10.744368,10744.368 +30017,2025-03-10T18:09:17.287739-07:00,0.0,10.739367,10739.367 +30018,2025-03-10T18:09:28.036658-07:00,0.0,10.748919,10748.919 +30019,2025-03-10T18:09:38.775670-07:00,0.0,10.739012,10739.012 +30020,2025-03-10T18:09:49.521529-07:00,0.0,10.745859,10745.859 +30021,2025-03-10T18:10:00.263532-07:00,0.0,10.742003,10742.003 +30022,2025-03-10T18:10:11.006877-07:00,0.0,10.743345,10743.345 +30023,2025-03-10T18:10:21.748571-07:00,0.0,10.741694,10741.694 +30024,2025-03-10T18:10:32.496534-07:00,0.0,10.747963,10747.963 +30025,2025-03-10T18:10:43.237760-07:00,0.0,10.741226,10741.226 +30026,2025-03-10T18:10:53.976713-07:00,0.0,10.738953,10738.953 +30027,2025-03-10T18:11:04.719977-07:00,0.0,10.743264,10743.264 +30028,2025-03-10T18:11:15.468761-07:00,0.0,10.748784,10748.784 +30029,2025-03-10T18:11:26.208857-07:00,0.0,10.740096,10740.096 +30030,2025-03-10T18:11:36.955746-07:00,0.0,10.746889,10746.889 +30031,2025-03-10T18:11:47.695592-07:00,0.0,10.739846,10739.846 +30032,2025-03-10T18:11:58.445122-07:00,0.0,10.74953,10749.53 +30033,2025-03-10T18:12:09.179534-07:00,0.0,10.734412,10734.412 +30034,2025-03-10T18:12:19.923687-07:00,0.0,10.744153,10744.153 +30035,2025-03-10T18:12:30.671536-07:00,0.0,10.747849,10747.849 +30036,2025-03-10T18:12:41.417696-07:00,0.0,10.74616,10746.16 +30037,2025-03-10T18:12:52.152716-07:00,0.0,10.73502,10735.02 +30038,2025-03-10T18:13:02.901387-07:00,0.0,10.748671,10748.671 +30039,2025-03-10T18:13:13.640030-07:00,0.0,10.738643,10738.643 +30040,2025-03-10T18:13:24.381592-07:00,0.0,10.741562,10741.562 +30041,2025-03-10T18:13:35.124743-07:00,0.0,10.743151,10743.151 +30042,2025-03-10T18:13:45.865531-07:00,0.0,10.740788,10740.788 +30043,2025-03-10T18:13:56.604731-07:00,0.0,10.7392,10739.2 +30044,2025-03-10T18:14:07.342641-07:00,0.0,10.73791,10737.91 +30045,2025-03-10T18:14:18.080883-07:00,0.0,10.738242,10738.242 +30046,2025-03-10T18:14:28.827738-07:00,0.0,10.746855,10746.855 +30047,2025-03-10T18:14:39.564623-07:00,0.0,10.736885,10736.885 +30048,2025-03-10T18:14:50.302703-07:00,0.0,10.73808,10738.08 +30049,2025-03-10T18:15:01.053697-07:00,0.0,10.750994,10750.994 +30050,2025-03-10T18:15:11.795942-07:00,0.0,10.742245,10742.245 +30051,2025-03-10T18:15:22.535567-07:00,0.0,10.739625,10739.625 +30052,2025-03-10T18:15:33.278946-07:00,0.0,10.743379,10743.379 +30053,2025-03-10T18:15:44.016874-07:00,0.0,10.737928,10737.928 +30054,2025-03-10T18:15:54.755926-07:00,0.0,10.739052,10739.052 +30055,2025-03-10T18:16:05.505739-07:00,0.0,10.749813,10749.813 +30056,2025-03-10T18:16:16.244602-07:00,0.0,10.738863,10738.863 +30057,2025-03-10T18:16:26.988597-07:00,0.0,10.743995,10743.995 +30058,2025-03-10T18:16:37.732632-07:00,0.0,10.744035,10744.035 +30059,2025-03-10T18:16:48.474057-07:00,0.0,10.741425,10741.425 +30060,2025-03-10T18:16:59.217527-07:00,0.0,10.74347,10743.47 +30061,2025-03-10T18:17:09.950534-07:00,0.0,10.733007,10733.007 +30062,2025-03-10T18:17:20.699534-07:00,0.0,10.749,10749.0 +30063,2025-03-10T18:17:31.433071-07:00,0.0,10.733537,10733.537 +30064,2025-03-10T18:17:42.179711-07:00,0.0,10.74664,10746.64 +30065,2025-03-10T18:17:52.919553-07:00,0.0,10.739842,10739.842 +30066,2025-03-10T18:18:03.653528-07:00,0.0,10.733975,10733.975 +30067,2025-03-10T18:18:14.400527-07:00,0.0,10.746999,10746.999 +30068,2025-03-10T18:18:25.135699-07:00,0.0,10.735172,10735.172 +30069,2025-03-10T18:18:35.876745-07:00,0.0,10.741046,10741.046 +30070,2025-03-10T18:18:46.617764-07:00,0.0,10.741019,10741.019 +30071,2025-03-10T18:18:57.361713-07:00,0.0,10.743949,10743.949 +30072,2025-03-10T18:19:08.103659-07:00,0.0,10.741946,10741.946 +30073,2025-03-10T18:19:18.853127-07:00,0.0,10.749468,10749.468 +30074,2025-03-10T18:19:29.587738-07:00,0.0,10.734611,10734.611 +30075,2025-03-10T18:19:40.337533-07:00,0.0,10.749795,10749.795 +30076,2025-03-10T18:19:51.081565-07:00,0.0,10.744032,10744.032 +30077,2025-03-10T18:20:01.825568-07:00,0.0,10.744003,10744.003 +30078,2025-03-10T18:20:12.563612-07:00,0.0,10.738044,10738.044 +30079,2025-03-10T18:20:23.310747-07:00,0.0,10.747135,10747.135 +30080,2025-03-10T18:20:34.053535-07:00,0.0,10.742788,10742.788 +30081,2025-03-10T18:20:44.799605-07:00,0.0,10.74607,10746.07 +30082,2025-03-10T18:20:55.535724-07:00,0.0,10.736119,10736.119 +30083,2025-03-10T18:21:06.283778-07:00,0.0,10.748054,10748.054 +30084,2025-03-10T18:21:17.023804-07:00,0.0,10.740026,10740.026 +30085,2025-03-10T18:21:27.766535-07:00,0.0,10.742731,10742.731 +30086,2025-03-10T18:21:38.508579-07:00,0.0,10.742044,10742.044 +30087,2025-03-10T18:21:49.259562-07:00,0.0,10.750983,10750.983 +30088,2025-03-10T18:22:00.005579-07:00,0.0,10.746017,10746.017 +30089,2025-03-10T18:22:10.746528-07:00,0.0,10.740949,10740.949 +30090,2025-03-10T18:22:21.493546-07:00,0.0,10.747018,10747.018 +30091,2025-03-10T18:22:32.231531-07:00,0.0,10.737985,10737.985 +30092,2025-03-10T18:22:42.979839-07:00,0.0,10.748308,10748.308 +30093,2025-03-10T18:22:53.712303-07:00,0.0,10.732464,10732.464 +30094,2025-03-10T18:23:04.456951-07:00,0.0,10.744648,10744.648 +30095,2025-03-10T18:23:15.202701-07:00,0.0,10.74575,10745.75 +30096,2025-03-10T18:23:25.949713-07:00,0.0,10.747012,10747.012 +30097,2025-03-10T18:23:36.684534-07:00,0.0,10.734821,10734.821 +30098,2025-03-10T18:23:47.431595-07:00,0.0,10.747061,10747.061 +30099,2025-03-10T18:23:58.176675-07:00,0.0,10.74508,10745.08 +30100,2025-03-10T18:24:08.922633-07:00,0.0,10.745958,10745.958 +30101,2025-03-10T18:24:19.662927-07:00,0.0,10.740294,10740.294 +30102,2025-03-10T18:24:30.398534-07:00,0.0,10.735607,10735.607 +30103,2025-03-10T18:24:31.685894-07:00,291.0,1.28736,1287.36 +30104,2025-03-10T18:24:41.141533-07:00,351.0,9.455639,9455.639 +30105,2025-03-10T18:24:51.881699-07:00,278.0,10.740166,10740.166 +30106,2025-03-10T18:25:02.631655-07:00,386.0,10.749956,10749.956 +30107,2025-03-10T18:25:13.368849-07:00,390.0,10.737194,10737.194 +30108,2025-03-10T18:25:24.112764-07:00,316.0,10.743915,10743.915 +30109,2025-03-10T18:25:34.851530-07:00,379.0,10.738766,10738.766 +30110,2025-03-10T18:25:45.595536-07:00,386.0,10.744006,10744.006 +30111,2025-03-10T18:25:45.896894-07:00,0.0,0.301358,301.358 +30112,2025-03-10T18:25:56.347604-07:00,0.0,10.45071,10450.71 +30113,2025-03-10T18:26:07.091533-07:00,0.0,10.743929,10743.929 +30114,2025-03-10T18:26:17.834533-07:00,0.0,10.743,10743.0 +30115,2025-03-10T18:26:28.573623-07:00,0.0,10.73909,10739.09 +30116,2025-03-10T18:26:39.317734-07:00,0.0,10.744111,10744.111 +30117,2025-03-10T18:26:50.061716-07:00,0.0,10.743982,10743.982 +30118,2025-03-10T18:27:00.816701-07:00,0.0,10.754985,10754.985 +30119,2025-03-10T18:27:11.555642-07:00,0.0,10.738941,10738.941 +30120,2025-03-10T18:27:22.304745-07:00,0.0,10.749103,10749.103 +30121,2025-03-10T18:27:33.046732-07:00,0.0,10.741987,10741.987 +30122,2025-03-10T18:27:43.791733-07:00,0.0,10.745001,10745.001 +30123,2025-03-10T18:27:54.536408-07:00,0.0,10.744675,10744.675 +30124,2025-03-10T18:28:05.282125-07:00,0.0,10.745717,10745.717 +30125,2025-03-10T18:28:16.030098-07:00,0.0,10.747973,10747.973 +30126,2025-03-10T18:28:26.778465-07:00,0.0,10.748367,10748.367 +30127,2025-03-10T18:28:37.526274-07:00,0.0,10.747809,10747.809 +30128,2025-03-10T18:28:48.273478-07:00,0.0,10.747204,10747.204 +30129,2025-03-10T18:28:59.014602-07:00,0.0,10.741124,10741.124 +30130,2025-03-10T18:29:09.751726-07:00,0.0,10.737124,10737.124 +30131,2025-03-10T18:29:20.495528-07:00,0.0,10.743802,10743.802 +30132,2025-03-10T18:29:31.238535-07:00,0.0,10.743007,10743.007 +30133,2025-03-10T18:29:41.977536-07:00,0.0,10.739001,10739.001 +30134,2025-03-10T18:29:52.719556-07:00,0.0,10.74202,10742.02 +30135,2025-03-10T18:30:03.466556-07:00,0.0,10.747,10747.0 +30136,2025-03-10T18:30:14.211731-07:00,0.0,10.745175,10745.175 +30137,2025-03-10T18:30:24.956699-07:00,0.0,10.744968,10744.968 +30138,2025-03-10T18:30:35.694723-07:00,0.0,10.738024,10738.024 +30139,2025-03-10T18:30:46.443812-07:00,0.0,10.749089,10749.089 +30140,2025-03-10T18:30:57.180603-07:00,0.0,10.736791,10736.791 +30141,2025-03-10T18:31:07.923530-07:00,0.0,10.742927,10742.927 +30142,2025-03-10T18:31:18.672536-07:00,0.0,10.749006,10749.006 +30143,2025-03-10T18:31:29.415561-07:00,0.0,10.743025,10743.025 +30144,2025-03-10T18:31:40.160834-07:00,0.0,10.745273,10745.273 +30145,2025-03-10T18:31:50.902968-07:00,0.0,10.742134,10742.134 +30146,2025-03-10T18:32:01.648615-07:00,0.0,10.745647,10745.647 +30147,2025-03-10T18:32:12.386741-07:00,0.0,10.738126,10738.126 +30148,2025-03-10T18:32:23.139946-07:00,0.0,10.753205,10753.205 +30149,2025-03-10T18:32:33.886730-07:00,0.0,10.746784,10746.784 +30150,2025-03-10T18:32:44.629301-07:00,0.0,10.742571,10742.571 +30151,2025-03-10T18:32:55.370707-07:00,0.0,10.741406,10741.406 +30152,2025-03-10T18:33:06.117710-07:00,0.0,10.747003,10747.003 +30153,2025-03-10T18:33:16.862934-07:00,0.0,10.745224,10745.224 +30154,2025-03-10T18:33:27.604633-07:00,0.0,10.741699,10741.699 +30155,2025-03-10T18:33:38.346885-07:00,0.0,10.742252,10742.252 +30156,2025-03-10T18:33:49.087017-07:00,0.0,10.740132,10740.132 +30157,2025-03-10T18:33:59.828530-07:00,0.0,10.741513,10741.513 +30158,2025-03-10T18:34:10.571533-07:00,0.0,10.743003,10743.003 +30159,2025-03-10T18:34:21.313632-07:00,0.0,10.742099,10742.099 +30160,2025-03-10T18:34:32.058301-07:00,0.0,10.744669,10744.669 +30161,2025-03-10T18:34:42.805663-07:00,0.0,10.747362,10747.362 +30162,2025-03-10T18:34:53.545007-07:00,0.0,10.739344,10739.344 +30163,2025-03-10T18:35:04.298684-07:00,0.0,10.753677,10753.677 +30164,2025-03-10T18:35:15.036718-07:00,0.0,10.738034,10738.034 +30165,2025-03-10T18:35:25.778560-07:00,0.0,10.741842,10741.842 +30166,2025-03-10T18:35:36.528472-07:00,0.0,10.749912,10749.912 +30167,2025-03-10T18:35:47.271646-07:00,0.0,10.743174,10743.174 +30168,2025-03-10T18:35:58.016584-07:00,0.0,10.744938,10744.938 +30169,2025-03-10T18:36:08.766585-07:00,0.0,10.750001,10750.001 +30170,2025-03-10T18:36:19.507362-07:00,0.0,10.740777,10740.777 +30171,2025-03-10T18:36:30.249536-07:00,0.0,10.742174,10742.174 +30172,2025-03-10T18:36:40.997573-07:00,0.0,10.748037,10748.037 +30173,2025-03-10T18:36:51.736537-07:00,0.0,10.738964,10738.964 +30174,2025-03-10T18:37:02.484531-07:00,0.0,10.747994,10747.994 +30175,2025-03-10T18:37:13.221748-07:00,0.0,10.737217,10737.217 +30176,2025-03-10T18:37:23.965741-07:00,0.0,10.743993,10743.993 +30177,2025-03-10T18:37:34.714755-07:00,0.0,10.749014,10749.014 +30178,2025-03-10T18:37:45.455743-07:00,0.0,10.740988,10740.988 +30179,2025-03-10T18:37:56.198758-07:00,0.0,10.743015,10743.015 +30180,2025-03-10T18:38:06.949233-07:00,0.0,10.750475,10750.475 +30181,2025-03-10T18:38:17.686593-07:00,0.0,10.73736,10737.36 +30182,2025-03-10T18:38:28.435731-07:00,0.0,10.749138,10749.138 +30183,2025-03-10T18:38:39.177530-07:00,0.0,10.741799,10741.799 +30184,2025-03-10T18:38:49.918732-07:00,0.0,10.741202,10741.202 +30185,2025-03-10T18:39:00.658531-07:00,0.0,10.739799,10739.799 +30186,2025-03-10T18:39:11.407732-07:00,0.0,10.749201,10749.201 +30187,2025-03-10T18:39:22.147772-07:00,0.0,10.74004,10740.04 +30188,2025-03-10T18:39:32.890660-07:00,0.0,10.742888,10742.888 +30189,2025-03-10T18:39:43.637533-07:00,0.0,10.746873,10746.873 +30190,2025-03-10T18:39:54.388605-07:00,0.0,10.751072,10751.072 +30191,2025-03-10T18:40:05.128818-07:00,0.0,10.740213,10740.213 +30192,2025-03-10T18:40:15.872721-07:00,0.0,10.743903,10743.903 +30193,2025-03-10T18:40:26.618725-07:00,0.0,10.746004,10746.004 +30194,2025-03-10T18:40:37.361697-07:00,0.0,10.742972,10742.972 +30195,2025-03-10T18:40:48.113097-07:00,0.0,10.7514,10751.4 +30196,2025-03-10T18:40:58.856436-07:00,0.0,10.743339,10743.339 +30197,2025-03-10T18:41:09.600580-07:00,0.0,10.744144,10744.144 +30198,2025-03-10T18:41:20.337533-07:00,0.0,10.736953,10736.953 +30199,2025-03-10T18:41:31.081527-07:00,0.0,10.743994,10743.994 +30200,2025-03-10T18:41:41.833711-07:00,0.0,10.752184,10752.184 +30201,2025-03-10T18:41:52.579533-07:00,0.0,10.745822,10745.822 +30202,2025-03-10T18:42:03.317531-07:00,0.0,10.737998,10737.998 +30203,2025-03-10T18:42:14.072533-07:00,0.0,10.755002,10755.002 +30204,2025-03-10T18:42:24.807528-07:00,0.0,10.734995,10734.995 +30205,2025-03-10T18:42:35.548715-07:00,0.0,10.741187,10741.187 +30206,2025-03-10T18:42:46.293986-07:00,0.0,10.745271,10745.271 +30207,2025-03-10T18:42:57.040736-07:00,0.0,10.74675,10746.75 +30208,2025-03-10T18:43:07.783732-07:00,0.0,10.742996,10742.996 +30209,2025-03-10T18:43:18.522232-07:00,0.0,10.7385,10738.5 +30210,2025-03-10T18:43:29.272024-07:00,0.0,10.749792,10749.792 +30211,2025-03-10T18:43:40.005533-07:00,0.0,10.733509,10733.509 +30212,2025-03-10T18:43:50.751530-07:00,0.0,10.745997,10745.997 +30213,2025-03-10T18:44:01.497299-07:00,0.0,10.745769,10745.769 +30214,2025-03-10T18:44:12.242671-07:00,0.0,10.745372,10745.372 +30215,2025-03-10T18:44:22.977832-07:00,0.0,10.735161,10735.161 +30216,2025-03-10T18:44:33.721530-07:00,0.0,10.743698,10743.698 +30217,2025-03-10T18:44:44.460968-07:00,0.0,10.739438,10739.438 +30218,2025-03-10T18:44:55.205698-07:00,0.0,10.74473,10744.73 +30219,2025-03-10T18:45:05.954722-07:00,0.0,10.749024,10749.024 +30220,2025-03-10T18:45:16.693577-07:00,0.0,10.738855,10738.855 +30221,2025-03-10T18:45:27.439623-07:00,0.0,10.746046,10746.046 +30222,2025-03-10T18:45:48.934562-07:00,0.0,21.494939,21494.939 +30223,2025-03-10T18:45:59.677608-07:00,0.0,10.743046,10743.046 +30224,2025-03-10T18:46:10.427561-07:00,0.0,10.749953,10749.953 +30225,2025-03-10T18:46:21.172531-07:00,0.0,10.74497,10744.97 +30226,2025-03-10T18:46:31.917744-07:00,0.0,10.745213,10745.213 +30227,2025-03-10T18:46:42.659532-07:00,0.0,10.741788,10741.788 +30228,2025-03-10T18:46:53.403551-07:00,0.0,10.744019,10744.019 +30229,2025-03-10T18:47:04.139726-07:00,0.0,10.736175,10736.175 +30230,2025-03-10T18:47:14.881137-07:00,0.0,10.741411,10741.411 +30231,2025-03-10T18:47:25.627551-07:00,0.0,10.746414,10746.414 +30232,2025-03-10T18:47:36.371718-07:00,0.0,10.744167,10744.167 +30233,2025-03-10T18:47:47.113414-07:00,0.0,10.741696,10741.696 +30234,2025-03-10T18:47:57.845531-07:00,0.0,10.732117,10732.117 +30235,2025-03-10T18:48:08.590082-07:00,0.0,10.744551,10744.551 +30236,2025-03-10T18:48:19.333532-07:00,0.0,10.74345,10743.45 +30237,2025-03-10T18:48:30.077834-07:00,0.0,10.744302,10744.302 +30238,2025-03-10T18:48:40.820532-07:00,0.0,10.742698,10742.698 +30239,2025-03-10T18:48:51.556592-07:00,0.0,10.73606,10736.06 +30240,2025-03-10T18:49:02.297723-07:00,0.0,10.741131,10741.131 +30241,2025-03-10T18:49:13.048702-07:00,0.0,10.750979,10750.979 +30242,2025-03-10T18:49:23.787058-07:00,0.0,10.738356,10738.356 +30243,2025-03-10T18:49:34.533561-07:00,0.0,10.746503,10746.503 +30244,2025-03-10T18:49:45.278665-07:00,0.0,10.745104,10745.104 +30245,2025-03-10T18:49:56.018660-07:00,0.0,10.739995,10739.995 +30246,2025-03-10T18:50:06.756699-07:00,0.0,10.738039,10738.039 +30247,2025-03-10T18:50:17.493738-07:00,0.0,10.737039,10737.039 +30248,2025-03-10T18:50:28.238732-07:00,0.0,10.744994,10744.994 +30249,2025-03-10T18:50:38.978735-07:00,0.0,10.740003,10740.003 +30250,2025-03-10T18:50:49.719246-07:00,0.0,10.740511,10740.511 +30251,2025-03-10T18:51:00.459590-07:00,0.0,10.740344,10740.344 +30252,2025-03-10T18:51:11.199534-07:00,0.0,10.739944,10739.944 +30253,2025-03-10T18:51:21.941532-07:00,0.0,10.741998,10741.998 +30254,2025-03-10T18:51:32.671610-07:00,0.0,10.730078,10730.078 +30255,2025-03-10T18:51:43.419535-07:00,0.0,10.747925,10747.925 +30256,2025-03-10T18:51:54.157719-07:00,0.0,10.738184,10738.184 +30257,2025-03-10T18:52:04.893621-07:00,0.0,10.735902,10735.902 +30258,2025-03-10T18:52:15.629533-07:00,0.0,10.735912,10735.912 +30259,2025-03-10T18:52:26.377809-07:00,0.0,10.748276,10748.276 +30260,2025-03-10T18:52:37.118712-07:00,0.0,10.740903,10740.903 +30261,2025-03-10T18:52:47.861636-07:00,0.0,10.742924,10742.924 +30262,2025-03-10T18:52:58.606715-07:00,0.0,10.745079,10745.079 +30263,2025-03-10T18:53:09.374708-07:00,0.0,10.767993,10767.993 +30264,2025-03-10T18:53:20.115571-07:00,0.0,10.740863,10740.863 +30265,2025-03-10T18:53:30.853581-07:00,0.0,10.73801,10738.01 +30266,2025-03-10T18:53:41.601411-07:00,0.0,10.74783,10747.83 +30267,2025-03-10T18:53:52.342382-07:00,0.0,10.740971,10740.971 +30268,2025-03-10T18:54:03.087460-07:00,0.0,10.745078,10745.078 +30269,2025-03-10T18:54:13.827383-07:00,0.0,10.739923,10739.923 +30270,2025-03-10T18:54:24.573460-07:00,0.0,10.746077,10746.077 +30271,2025-03-10T18:54:35.309388-07:00,0.0,10.735928,10735.928 +30272,2025-03-10T18:54:46.051501-07:00,0.0,10.742113,10742.113 +30273,2025-03-10T18:54:56.787874-07:00,0.0,10.736373,10736.373 +30274,2025-03-10T18:55:07.535082-07:00,0.0,10.747208,10747.208 +30275,2025-03-10T18:55:18.270387-07:00,0.0,10.735305,10735.305 +30276,2025-03-10T18:55:29.006389-07:00,0.0,10.736002,10736.002 +30277,2025-03-10T18:55:39.750408-07:00,0.0,10.744019,10744.019 +30278,2025-03-10T18:55:50.495525-07:00,0.0,10.745117,10745.117 +30279,2025-03-10T18:56:01.240646-07:00,0.0,10.745121,10745.121 +30280,2025-03-10T18:56:11.975558-07:00,0.0,10.734912,10734.912 +30281,2025-03-10T18:56:22.712381-07:00,0.0,10.736823,10736.823 +30282,2025-03-10T18:56:33.459390-07:00,0.0,10.747009,10747.009 +30283,2025-03-10T18:56:44.199422-07:00,0.0,10.740032,10740.032 +30284,2025-03-10T18:56:54.935564-07:00,0.0,10.736142,10736.142 +30285,2025-03-10T18:57:05.686383-07:00,0.0,10.750819,10750.819 +30286,2025-03-10T18:57:16.425598-07:00,0.0,10.739215,10739.215 +30287,2025-03-10T18:57:27.171384-07:00,0.0,10.745786,10745.786 +30288,2025-03-10T18:57:37.913381-07:00,0.0,10.741997,10741.997 +30289,2025-03-10T18:57:48.652557-07:00,0.0,10.739176,10739.176 +30290,2025-03-10T18:57:59.396597-07:00,0.0,10.74404,10744.04 +30291,2025-03-10T18:58:10.136495-07:00,0.0,10.739898,10739.898 +30292,2025-03-10T18:58:20.878385-07:00,0.0,10.74189,10741.89 +30293,2025-03-10T18:58:31.621446-07:00,0.0,10.743061,10743.061 +30294,2025-03-10T18:58:42.367595-07:00,0.0,10.746149,10746.149 +30295,2025-03-10T18:58:53.107601-07:00,0.0,10.740006,10740.006 +30296,2025-03-10T18:59:03.840783-07:00,0.0,10.733182,10733.182 +30297,2025-03-10T18:59:14.583756-07:00,0.0,10.742973,10742.973 +30298,2025-03-10T18:59:25.328582-07:00,0.0,10.744826,10744.826 +30299,2025-03-10T18:59:36.068384-07:00,0.0,10.739802,10739.802 +30300,2025-03-10T18:59:46.805424-07:00,0.0,10.73704,10737.04 +30301,2025-03-10T18:59:57.548551-07:00,0.0,10.743127,10743.127 +30302,2025-03-10T19:00:08.288414-07:00,0.0,10.739863,10739.863 +30303,2025-03-10T19:00:19.034391-07:00,0.0,10.745977,10745.977 +30304,2025-03-10T19:00:29.775681-07:00,0.0,10.74129,10741.29 +30305,2025-03-10T19:00:40.514831-07:00,0.0,10.73915,10739.15 +30306,2025-03-10T19:00:51.255701-07:00,0.0,10.74087,10740.87 +30307,2025-03-10T19:01:02.004571-07:00,0.0,10.74887,10748.87 +30308,2025-03-10T19:01:12.739389-07:00,0.0,10.734818,10734.818 +30309,2025-03-10T19:01:23.483982-07:00,0.0,10.744593,10744.593 +30310,2025-03-10T19:01:34.221444-07:00,0.0,10.737462,10737.462 +30311,2025-03-10T19:01:44.966389-07:00,0.0,10.744945,10744.945 +30312,2025-03-10T19:01:55.700564-07:00,0.0,10.734175,10734.175 +30313,2025-03-10T19:02:06.447125-07:00,0.0,10.746561,10746.561 +30314,2025-03-10T19:02:17.180389-07:00,0.0,10.733264,10733.264 +30315,2025-03-10T19:02:27.918594-07:00,0.0,10.738205,10738.205 +30316,2025-03-10T19:02:38.662387-07:00,0.0,10.743793,10743.793 +30317,2025-03-10T19:02:49.401826-07:00,0.0,10.739439,10739.439 +30318,2025-03-10T19:03:00.138384-07:00,0.0,10.736558,10736.558 +30319,2025-03-10T19:03:10.887415-07:00,0.0,10.749031,10749.031 +30320,2025-03-10T19:03:21.623565-07:00,0.0,10.73615,10736.15 +30321,2025-03-10T19:03:32.363480-07:00,0.0,10.739915,10739.915 +30322,2025-03-10T19:03:43.112632-07:00,0.0,10.749152,10749.152 +30323,2025-03-10T19:03:53.853614-07:00,0.0,10.740982,10740.982 +30324,2025-03-10T19:04:04.593389-07:00,0.0,10.739775,10739.775 +30325,2025-03-10T19:04:15.340526-07:00,0.0,10.747137,10747.137 +30326,2025-03-10T19:04:26.073608-07:00,0.0,10.733082,10733.082 +30327,2025-03-10T19:04:36.821389-07:00,0.0,10.747781,10747.781 +30328,2025-03-10T19:04:47.558161-07:00,0.0,10.736772,10736.772 +30329,2025-03-10T19:04:58.306798-07:00,0.0,10.748637,10748.637 +30330,2025-03-10T19:05:09.046587-07:00,0.0,10.739789,10739.789 +30331,2025-03-10T19:05:19.782940-07:00,0.0,10.736353,10736.353 +30332,2025-03-10T19:05:30.526387-07:00,0.0,10.743447,10743.447 +30333,2025-03-10T19:05:41.265424-07:00,0.0,10.739037,10739.037 +30334,2025-03-10T19:05:52.010389-07:00,0.0,10.744965,10744.965 +30335,2025-03-10T19:06:02.755461-07:00,0.0,10.745072,10745.072 +30336,2025-03-10T19:06:13.494390-07:00,0.0,10.738929,10738.929 +30337,2025-03-10T19:06:24.232588-07:00,0.0,10.738198,10738.198 +30338,2025-03-10T19:06:34.972806-07:00,0.0,10.740218,10740.218 +30339,2025-03-10T19:06:44.022609-07:00,0.0,9.049803,9049.803 +30340,2025-03-10T19:06:45.712659-07:00,0.0,1.69005,1690.05 +30341,2025-03-10T19:06:56.450386-07:00,0.0,10.737727,10737.727 +30342,2025-03-10T19:07:07.192605-07:00,0.0,10.742219,10742.219 +30343,2025-03-10T19:07:17.927569-07:00,0.0,10.734964,10734.964 +30344,2025-03-10T19:07:28.666620-07:00,0.0,10.739051,10739.051 +30345,2025-03-10T19:07:39.406573-07:00,0.0,10.739953,10739.953 +30346,2025-03-10T19:07:50.151516-07:00,0.0,10.744943,10744.943 +30347,2025-03-10T19:08:00.888582-07:00,0.0,10.737066,10737.066 +30348,2025-03-10T19:08:11.626495-07:00,0.0,10.737913,10737.913 +30349,2025-03-10T19:08:22.373389-07:00,0.0,10.746894,10746.894 +30350,2025-03-10T19:08:33.116723-07:00,0.0,10.743334,10743.334 +30351,2025-03-10T19:08:43.851537-07:00,0.0,10.734814,10734.814 +30352,2025-03-10T19:08:54.593787-07:00,0.0,10.74225,10742.25 +30353,2025-03-10T19:09:05.337571-07:00,0.0,10.743784,10743.784 +30354,2025-03-10T19:09:16.077442-07:00,0.0,10.739871,10739.871 +30355,2025-03-10T19:09:26.814386-07:00,0.0,10.736944,10736.944 +30356,2025-03-10T19:09:37.555601-07:00,0.0,10.741215,10741.215 +30357,2025-03-10T19:09:48.301760-07:00,0.0,10.746159,10746.159 +30358,2025-03-10T19:09:59.040581-07:00,0.0,10.738821,10738.821 +30359,2025-03-10T19:10:09.785562-07:00,0.0,10.744981,10744.981 +30360,2025-03-10T19:10:20.522563-07:00,0.0,10.737001,10737.001 +30361,2025-03-10T19:10:31.268938-07:00,0.0,10.746375,10746.375 +30362,2025-03-10T19:10:41.999391-07:00,0.0,10.730453,10730.453 +30363,2025-03-10T19:10:52.739960-07:00,0.0,10.740569,10740.569 +30364,2025-03-10T19:11:03.481658-07:00,0.0,10.741698,10741.698 +30365,2025-03-10T19:11:14.220456-07:00,0.0,10.738798,10738.798 +30366,2025-03-10T19:11:24.966396-07:00,0.0,10.74594,10745.94 +30367,2025-03-10T19:11:35.708803-07:00,0.0,10.742407,10742.407 +30368,2025-03-10T19:11:46.443412-07:00,0.0,10.734609,10734.609 +30369,2025-03-10T19:11:57.181596-07:00,0.0,10.738184,10738.184 +30370,2025-03-10T19:12:07.925468-07:00,0.0,10.743872,10743.872 +30371,2025-03-10T19:12:18.664382-07:00,0.0,10.738914,10738.914 +30372,2025-03-10T19:12:29.398560-07:00,0.0,10.734178,10734.178 +30373,2025-03-10T19:12:40.135075-07:00,0.0,10.736515,10736.515 +30374,2025-03-10T19:12:50.883847-07:00,0.0,10.748772,10748.772 +30375,2025-03-10T19:13:01.615591-07:00,0.0,10.731744,10731.744 +30376,2025-03-10T19:13:12.353389-07:00,0.0,10.737798,10737.798 +30377,2025-03-10T19:13:23.096602-07:00,0.0,10.743213,10743.213 +30378,2025-03-10T19:13:33.825565-07:00,0.0,10.728963,10728.963 +30379,2025-03-10T19:13:44.565768-07:00,0.0,10.740203,10740.203 +30380,2025-03-10T19:13:55.313449-07:00,0.0,10.747681,10747.681 +30381,2025-03-10T19:14:06.043600-07:00,0.0,10.730151,10730.151 +30382,2025-03-10T19:14:16.785387-07:00,0.0,10.741787,10741.787 +30383,2025-03-10T19:14:27.530942-07:00,0.0,10.745555,10745.555 +30384,2025-03-10T19:14:38.264148-07:00,0.0,10.733206,10733.206 +30385,2025-03-10T19:14:49.011878-07:00,0.0,10.74773,10747.73 +30386,2025-03-10T19:14:59.746390-07:00,0.0,10.734512,10734.512 +30387,2025-03-10T19:15:10.492391-07:00,0.0,10.746001,10746.001 +30388,2025-03-10T19:15:21.226597-07:00,0.0,10.734206,10734.206 +30389,2025-03-10T19:15:31.975631-07:00,0.0,10.749034,10749.034 +30390,2025-03-10T19:15:42.712461-07:00,0.0,10.73683,10736.83 +30391,2025-03-10T19:15:53.454385-07:00,0.0,10.741924,10741.924 +30392,2025-03-10T19:16:04.193581-07:00,0.0,10.739196,10739.196 +30393,2025-03-10T19:16:14.935573-07:00,0.0,10.741992,10741.992 +30394,2025-03-10T19:16:25.668583-07:00,0.0,10.73301,10733.01 +30395,2025-03-10T19:16:36.416595-07:00,0.0,10.748012,10748.012 +30396,2025-03-10T19:16:47.158458-07:00,0.0,10.741863,10741.863 +30397,2025-03-10T19:16:57.894385-07:00,0.0,10.735927,10735.927 +30398,2025-03-10T19:17:08.633566-07:00,0.0,10.739181,10739.181 +30399,2025-03-10T19:17:19.378020-07:00,0.0,10.744454,10744.454 +30400,2025-03-10T19:17:30.120537-07:00,0.0,10.742517,10742.517 +30401,2025-03-10T19:17:40.858384-07:00,0.0,10.737847,10737.847 +30402,2025-03-10T19:17:51.596389-07:00,0.0,10.738005,10738.005 +30403,2025-03-10T19:18:02.338387-07:00,0.0,10.741998,10741.998 +30404,2025-03-10T19:18:13.079762-07:00,351.0,10.741375,10741.375 +30405,2025-03-10T19:18:23.813484-07:00,415.0,10.733722,10733.722 +30406,2025-03-10T19:18:34.533734-07:00,0.0,10.72025,10720.25 +30407,2025-03-10T19:18:34.556807-07:00,0.0,0.023073,23.073 +30408,2025-03-10T19:18:45.297832-07:00,0.0,10.741025,10741.025 +30409,2025-03-10T19:18:56.040405-07:00,0.0,10.742573,10742.573 +30410,2025-03-10T19:19:06.770388-07:00,0.0,10.729983,10729.983 +30411,2025-03-10T19:19:17.510387-07:00,0.0,10.739999,10739.999 +30412,2025-03-10T19:19:28.256629-07:00,0.0,10.746242,10746.242 +30413,2025-03-10T19:19:38.992030-07:00,0.0,10.735401,10735.401 +30414,2025-03-10T19:19:49.732576-07:00,0.0,10.740546,10740.546 +30415,2025-03-10T19:20:00.469126-07:00,0.0,10.73655,10736.55 +30416,2025-03-10T19:20:11.216257-07:00,0.0,10.747131,10747.131 +30417,2025-03-10T19:20:21.949388-07:00,0.0,10.733131,10733.131 +30418,2025-03-10T19:20:32.687600-07:00,0.0,10.738212,10738.212 +30419,2025-03-10T19:20:43.434391-07:00,0.0,10.746791,10746.791 +30420,2025-03-10T19:20:54.174563-07:00,0.0,10.740172,10740.172 +30421,2025-03-10T19:21:04.917577-07:00,0.0,10.743014,10743.014 +30422,2025-03-10T19:21:15.657437-07:00,0.0,10.73986,10739.86 +30423,2025-03-10T19:21:26.396681-07:00,0.0,10.739244,10739.244 +30424,2025-03-10T19:21:37.136390-07:00,0.0,10.739709,10739.709 +30425,2025-03-10T19:21:47.875603-07:00,0.0,10.739213,10739.213 +30426,2025-03-10T19:21:58.620386-07:00,0.0,10.744783,10744.783 +30427,2025-03-10T19:22:09.366563-07:00,0.0,10.746177,10746.177 +30428,2025-03-10T19:22:20.105625-07:00,0.0,10.739062,10739.062 +30429,2025-03-10T19:22:30.839381-07:00,0.0,10.733756,10733.756 +30430,2025-03-10T19:22:41.586759-07:00,0.0,10.747378,10747.378 +30431,2025-03-10T19:22:52.329382-07:00,0.0,10.742623,10742.623 +30432,2025-03-10T19:23:03.068443-07:00,0.0,10.739061,10739.061 +30433,2025-03-10T19:23:13.806459-07:00,0.0,10.738016,10738.016 +30434,2025-03-10T19:23:24.549390-07:00,0.0,10.742931,10742.931 +30435,2025-03-10T19:23:35.288401-07:00,0.0,10.739011,10739.011 +30436,2025-03-10T19:23:46.031485-07:00,0.0,10.743084,10743.084 +30437,2025-03-10T19:23:56.776778-07:00,0.0,10.745293,10745.293 +30438,2025-03-10T19:24:07.513411-07:00,0.0,10.736633,10736.633 +30439,2025-03-10T19:24:18.260497-07:00,0.0,10.747086,10747.086 +30440,2025-03-10T19:24:28.998384-07:00,0.0,10.737887,10737.887 +30441,2025-03-10T19:24:39.739389-07:00,0.0,10.741005,10741.005 +30442,2025-03-10T19:24:50.480580-07:00,0.0,10.741191,10741.191 +30443,2025-03-10T19:25:01.224555-07:00,0.0,10.743975,10743.975 +30444,2025-03-10T19:25:11.969862-07:00,0.0,10.745307,10745.307 +30445,2025-03-10T19:25:22.707581-07:00,0.0,10.737719,10737.719 +30446,2025-03-10T19:25:33.456594-07:00,0.0,10.749013,10749.013 +30447,2025-03-10T19:25:44.191542-07:00,0.0,10.734948,10734.948 +30448,2025-03-10T19:25:54.930385-07:00,0.0,10.738843,10738.843 +30449,2025-03-10T19:26:05.679389-07:00,0.0,10.749004,10749.004 +30450,2025-03-10T19:26:16.416465-07:00,0.0,10.737076,10737.076 +30451,2025-03-10T19:26:27.156414-07:00,0.0,10.739949,10739.949 +30452,2025-03-10T19:26:37.901414-07:00,0.0,10.745,10745.0 +30453,2025-03-10T19:26:48.640762-07:00,0.0,10.739348,10739.348 +30454,2025-03-10T19:26:59.384568-07:00,0.0,10.743806,10743.806 +30455,2025-03-10T19:27:10.131557-07:00,0.0,10.746989,10746.989 +30456,2025-03-10T19:27:20.875232-07:00,0.0,10.743675,10743.675 +30457,2025-03-10T19:27:31.614389-07:00,0.0,10.739157,10739.157 +30458,2025-03-10T19:27:42.349421-07:00,0.0,10.735032,10735.032 +30459,2025-03-10T19:27:53.100458-07:00,0.0,10.751037,10751.037 +30460,2025-03-10T19:28:03.835590-07:00,0.0,10.735132,10735.132 +30461,2025-03-10T19:28:14.572601-07:00,0.0,10.737011,10737.011 +30462,2025-03-10T19:28:25.316602-07:00,0.0,10.744001,10744.001 +30463,2025-03-10T19:28:36.056656-07:00,0.0,10.740054,10740.054 +30464,2025-03-10T19:28:46.792386-07:00,0.0,10.73573,10735.73 +30465,2025-03-10T19:28:57.534389-07:00,0.0,10.742003,10742.003 +30466,2025-03-10T19:29:08.278386-07:00,0.0,10.743997,10743.997 +30467,2025-03-10T19:29:19.018389-07:00,0.0,10.740003,10740.003 +30468,2025-03-10T19:29:29.761391-07:00,0.0,10.743002,10743.002 +30469,2025-03-10T19:29:40.508062-07:00,0.0,10.746671,10746.671 +30470,2025-03-10T19:29:51.249450-07:00,0.0,10.741388,10741.388 +30471,2025-03-10T19:30:01.988577-07:00,0.0,10.739127,10739.127 +30472,2025-03-10T19:30:12.736571-07:00,0.0,10.747994,10747.994 +30473,2025-03-10T19:30:23.476414-07:00,0.0,10.739843,10739.843 +30474,2025-03-10T19:30:34.214595-07:00,0.0,10.738181,10738.181 +30475,2025-03-10T19:30:44.964996-07:00,0.0,10.750401,10750.401 +30476,2025-03-10T19:30:55.699382-07:00,0.0,10.734386,10734.386 +30477,2025-03-10T19:31:06.442600-07:00,0.0,10.743218,10743.218 +30478,2025-03-10T19:31:17.191446-07:00,0.0,10.748846,10748.846 +30479,2025-03-10T19:31:27.928272-07:00,0.0,10.736826,10736.826 +30480,2025-03-10T19:31:38.670578-07:00,0.0,10.742306,10742.306 +30481,2025-03-10T19:31:49.407390-07:00,0.0,10.736812,10736.812 +30482,2025-03-10T19:32:00.147447-07:00,0.0,10.740057,10740.057 +30483,2025-03-10T19:32:10.887558-07:00,0.0,10.740111,10740.111 +30484,2025-03-10T19:32:21.631391-07:00,0.0,10.743833,10743.833 +30485,2025-03-10T19:32:32.368529-07:00,0.0,10.737138,10737.138 +30486,2025-03-10T19:32:43.106753-07:00,0.0,10.738224,10738.224 +30487,2025-03-10T19:32:53.846593-07:00,0.0,10.73984,10739.84 +30488,2025-03-10T19:33:04.589409-07:00,0.0,10.742816,10742.816 +30489,2025-03-10T19:33:15.334718-07:00,0.0,10.745309,10745.309 +30490,2025-03-10T19:33:26.074572-07:00,0.0,10.739854,10739.854 +30491,2025-03-10T19:33:36.814420-07:00,0.0,10.739848,10739.848 +30492,2025-03-10T19:33:47.556635-07:00,0.0,10.742215,10742.215 +30493,2025-03-10T19:33:58.301598-07:00,0.0,10.744963,10744.963 +30494,2025-03-10T19:34:09.041971-07:00,0.0,10.740373,10740.373 +30495,2025-03-10T19:34:19.782584-07:00,0.0,10.740613,10740.613 +30496,2025-03-10T19:34:30.520916-07:00,0.0,10.738332,10738.332 +30497,2025-03-10T19:34:41.261386-07:00,0.0,10.74047,10740.47 +30498,2025-03-10T19:34:52.008390-07:00,0.0,10.747004,10747.004 +30499,2025-03-10T19:35:02.752386-07:00,0.0,10.743996,10743.996 +30500,2025-03-10T19:35:13.488160-07:00,0.0,10.735774,10735.774 +30501,2025-03-10T19:35:24.228394-07:00,0.0,10.740234,10740.234 +30502,2025-03-10T19:35:34.972390-07:00,0.0,10.743996,10743.996 +30503,2025-03-10T19:35:45.716611-07:00,0.0,10.744221,10744.221 +30504,2025-03-10T19:35:56.456583-07:00,0.0,10.739972,10739.972 +30505,2025-03-10T19:36:07.188967-07:00,0.0,10.732384,10732.384 +30506,2025-03-10T19:36:17.930388-07:00,0.0,10.741421,10741.421 +30507,2025-03-10T19:36:28.676598-07:00,0.0,10.74621,10746.21 +30508,2025-03-10T19:36:39.414506-07:00,0.0,10.737908,10737.908 +30509,2025-03-10T19:36:50.154057-07:00,0.0,10.739551,10739.551 +30510,2025-03-10T19:37:00.895109-07:00,0.0,10.741052,10741.052 +30511,2025-03-10T19:37:11.632398-07:00,0.0,10.737289,10737.289 +30512,2025-03-10T19:37:22.372863-07:00,0.0,10.740465,10740.465 +30513,2025-03-10T19:37:33.112389-07:00,0.0,10.739526,10739.526 +30514,2025-03-10T19:37:43.847387-07:00,0.0,10.734998,10734.998 +30515,2025-03-10T19:37:54.595390-07:00,0.0,10.748003,10748.003 +30516,2025-03-10T19:38:05.333417-07:00,0.0,10.738027,10738.027 +30517,2025-03-10T19:38:16.074659-07:00,0.0,10.741242,10741.242 +30518,2025-03-10T19:38:26.815966-07:00,0.0,10.741307,10741.307 +30519,2025-03-10T19:38:37.555808-07:00,0.0,10.739842,10739.842 +30520,2025-03-10T19:38:48.303386-07:00,0.0,10.747578,10747.578 +30521,2025-03-10T19:38:59.040619-07:00,0.0,10.737233,10737.233 +30522,2025-03-10T19:39:09.778389-07:00,0.0,10.73777,10737.77 +30523,2025-03-10T19:39:20.523596-07:00,0.0,10.745207,10745.207 +30524,2025-03-10T19:39:31.261602-07:00,0.0,10.738006,10738.006 +30525,2025-03-10T19:39:42.008358-07:00,0.0,10.746756,10746.756 +30526,2025-03-10T19:39:52.746924-07:00,0.0,10.738566,10738.566 +30527,2025-03-10T19:40:03.489647-07:00,0.0,10.742723,10742.723 +30528,2025-03-10T19:40:14.224387-07:00,0.0,10.73474,10734.74 +30529,2025-03-10T19:40:24.963590-07:00,0.0,10.739203,10739.203 +30530,2025-03-10T19:40:35.707384-07:00,0.0,10.743794,10743.794 +30531,2025-03-10T19:40:46.458461-07:00,0.0,10.751077,10751.077 +30532,2025-03-10T19:40:57.192391-07:00,0.0,10.73393,10733.93 +30533,2025-03-10T19:41:07.939385-07:00,0.0,10.746994,10746.994 +30534,2025-03-10T19:41:18.684787-07:00,0.0,10.745402,10745.402 +30535,2025-03-10T19:41:29.418193-07:00,0.0,10.733406,10733.406 +30536,2025-03-10T19:41:40.166410-07:00,0.0,10.748217,10748.217 +30537,2025-03-10T19:41:50.915236-07:00,0.0,10.748826,10748.826 +30538,2025-03-10T19:42:01.653388-07:00,0.0,10.738152,10738.152 +30539,2025-03-10T19:42:12.389767-07:00,0.0,10.736379,10736.379 +30540,2025-03-10T19:42:23.142385-07:00,0.0,10.752618,10752.618 +30541,2025-03-10T19:42:33.877411-07:00,0.0,10.735026,10735.026 +30542,2025-03-10T19:42:44.619585-07:00,0.0,10.742174,10742.174 +30543,2025-03-10T19:42:55.366577-07:00,0.0,10.746992,10746.992 +30544,2025-03-10T19:43:06.101418-07:00,0.0,10.734841,10734.841 +30545,2025-03-10T19:43:16.844387-07:00,0.0,10.742969,10742.969 +30546,2025-03-10T19:43:27.588461-07:00,0.0,10.744074,10744.074 +30547,2025-03-10T19:43:38.331390-07:00,0.0,10.742929,10742.929 +30548,2025-03-10T19:43:49.073495-07:00,0.0,10.742105,10742.105 +30549,2025-03-10T19:43:59.817695-07:00,0.0,10.7442,10744.2 +30550,2025-03-10T19:44:10.562389-07:00,0.0,10.744694,10744.694 +30551,2025-03-10T19:44:21.312458-07:00,0.0,10.750069,10750.069 +30552,2025-03-10T19:44:32.054455-07:00,0.0,10.741997,10741.997 +30553,2025-03-10T19:44:42.793577-07:00,0.0,10.739122,10739.122 +30554,2025-03-10T19:44:53.536405-07:00,0.0,10.742828,10742.828 +30555,2025-03-10T19:45:04.276558-07:00,0.0,10.740153,10740.153 +30556,2025-03-10T19:45:15.021832-07:00,0.0,10.745274,10745.274 +30557,2025-03-10T19:45:25.756388-07:00,0.0,10.734556,10734.556 +30558,2025-03-10T19:45:36.502451-07:00,0.0,10.746063,10746.063 +30559,2025-03-10T19:45:47.238386-07:00,0.0,10.735935,10735.935 +30560,2025-03-10T19:45:57.986432-07:00,0.0,10.748046,10748.046 +30561,2025-03-10T19:46:08.728390-07:00,0.0,10.741958,10741.958 +30562,2025-03-10T19:46:19.464860-07:00,0.0,10.73647,10736.47 +30563,2025-03-10T19:46:30.210564-07:00,0.0,10.745704,10745.704 +30564,2025-03-10T19:46:40.949051-07:00,0.0,10.738487,10738.487 +30565,2025-03-10T19:46:51.699166-07:00,0.0,10.750115,10750.115 +30566,2025-03-10T19:47:02.435133-07:00,0.0,10.735967,10735.967 +30567,2025-03-10T19:47:13.181384-07:00,0.0,10.746251,10746.251 +30568,2025-03-10T19:47:23.920417-07:00,0.0,10.739033,10739.033 +30569,2025-03-10T19:47:34.664455-07:00,0.0,10.744038,10744.038 +30570,2025-03-10T19:47:45.398926-07:00,0.0,10.734471,10734.471 +30571,2025-03-10T19:47:56.150389-07:00,0.0,10.751463,10751.463 +30572,2025-03-10T19:48:06.891658-07:00,0.0,10.741269,10741.269 +30573,2025-03-10T19:48:17.625990-07:00,0.0,10.734332,10734.332 +30574,2025-03-10T19:48:28.367688-07:00,0.0,10.741698,10741.698 +30575,2025-03-10T19:48:39.117506-07:00,0.0,10.749818,10749.818 +30576,2025-03-10T19:48:49.853558-07:00,0.0,10.736052,10736.052 +30577,2025-03-10T19:49:00.594449-07:00,0.0,10.740891,10740.891 +30578,2025-03-10T19:49:11.339389-07:00,0.0,10.74494,10744.94 +30579,2025-03-10T19:49:22.077869-07:00,0.0,10.73848,10738.48 +30580,2025-03-10T19:49:32.818438-07:00,0.0,10.740569,10740.569 +30581,2025-03-10T19:49:43.567231-07:00,0.0,10.748793,10748.793 +30582,2025-03-10T19:49:54.299575-07:00,0.0,10.732344,10732.344 +30583,2025-03-10T19:50:05.045387-07:00,0.0,10.745812,10745.812 +30584,2025-03-10T19:50:15.784385-07:00,0.0,10.738998,10738.998 +30585,2025-03-10T19:50:26.522385-07:00,0.0,10.738,10738.0 +30586,2025-03-10T19:50:37.262385-07:00,0.0,10.74,10740.0 +30587,2025-03-10T19:50:48.008393-07:00,0.0,10.746008,10746.008 +30588,2025-03-10T19:50:58.745556-07:00,0.0,10.737163,10737.163 +30589,2025-03-10T19:51:09.479441-07:00,0.0,10.733885,10733.885 +30590,2025-03-10T19:51:20.227623-07:00,0.0,10.748182,10748.182 +30591,2025-03-10T19:51:30.971565-07:00,0.0,10.743942,10743.942 +30592,2025-03-10T19:51:41.712418-07:00,0.0,10.740853,10740.853 +30593,2025-03-10T19:51:52.449451-07:00,0.0,10.737033,10737.033 +30594,2025-03-10T19:52:03.183844-07:00,0.0,10.734393,10734.393 +30595,2025-03-10T19:52:13.926571-07:00,0.0,10.742727,10742.727 +30596,2025-03-10T19:52:24.668814-07:00,0.0,10.742243,10742.243 +30597,2025-03-10T19:52:35.402397-07:00,0.0,10.733583,10733.583 +30598,2025-03-10T19:52:46.142455-07:00,0.0,10.740058,10740.058 +30599,2025-03-10T19:52:56.882386-07:00,0.0,10.739931,10739.931 +30600,2025-03-10T19:53:07.610858-07:00,0.0,10.728472,10728.472 +30601,2025-03-10T19:53:18.350035-07:00,0.0,10.739177,10739.177 +30602,2025-03-10T19:53:29.089702-07:00,0.0,10.739667,10739.667 +30603,2025-03-10T19:53:39.828863-07:00,0.0,10.739161,10739.161 +30604,2025-03-10T19:53:50.565897-07:00,0.0,10.737034,10737.034 +30605,2025-03-10T19:54:01.304999-07:00,0.0,10.739102,10739.102 +30606,2025-03-10T19:54:12.055101-07:00,0.0,10.750102,10750.102 +30607,2025-03-10T19:54:22.789073-07:00,0.0,10.733972,10733.972 +30608,2025-03-10T19:54:33.533060-07:00,0.0,10.743987,10743.987 +30609,2025-03-10T19:54:44.264864-07:00,0.0,10.731804,10731.804 +30610,2025-03-10T19:54:55.003860-07:00,0.0,10.738996,10738.996 +30611,2025-03-10T19:55:05.751180-07:00,0.0,10.74732,10747.32 +30612,2025-03-10T19:55:16.481865-07:00,0.0,10.730685,10730.685 +30613,2025-03-10T19:55:27.229863-07:00,0.0,10.747998,10747.998 +30614,2025-03-10T19:55:37.969884-07:00,0.0,10.740021,10740.021 +30615,2025-03-10T19:55:48.709059-07:00,0.0,10.739175,10739.175 +30616,2025-03-10T19:55:59.449091-07:00,0.0,10.740032,10740.032 +30617,2025-03-10T19:56:10.183151-07:00,0.0,10.73406,10734.06 +30618,2025-03-10T19:56:20.920862-07:00,0.0,10.737711,10737.711 +30619,2025-03-10T19:56:31.658272-07:00,0.0,10.73741,10737.41 +30620,2025-03-10T19:56:42.404056-07:00,0.0,10.745784,10745.784 +30621,2025-03-10T19:56:53.139113-07:00,0.0,10.735057,10735.057 +30622,2025-03-10T19:57:03.883862-07:00,0.0,10.744749,10744.749 +30623,2025-03-10T19:57:14.624063-07:00,0.0,10.740201,10740.201 +30624,2025-03-10T19:57:25.358588-07:00,0.0,10.734525,10734.525 +30625,2025-03-10T19:57:36.092893-07:00,0.0,10.734305,10734.305 +30626,2025-03-10T19:57:46.836026-07:00,0.0,10.743133,10743.133 +30627,2025-03-10T19:57:57.580241-07:00,0.0,10.744215,10744.215 +30628,2025-03-10T19:58:08.315995-07:00,0.0,10.735754,10735.754 +30629,2025-03-10T19:58:19.051866-07:00,0.0,10.735871,10735.871 +30630,2025-03-10T19:58:29.788892-07:00,0.0,10.737026,10737.026 +30631,2025-03-10T19:58:40.528104-07:00,0.0,10.739212,10739.212 +30632,2025-03-10T19:58:51.277023-07:00,0.0,10.748919,10748.919 +30633,2025-03-10T19:59:02.011234-07:00,0.0,10.734211,10734.211 +30634,2025-03-10T19:59:12.757418-07:00,0.0,10.746184,10746.184 +30635,2025-03-10T19:59:23.492896-07:00,0.0,10.735478,10735.478 +30636,2025-03-10T19:59:34.234927-07:00,0.0,10.742031,10742.031 +30637,2025-03-10T19:59:44.975932-07:00,0.0,10.741005,10741.005 +30638,2025-03-10T19:59:55.714861-07:00,0.0,10.738929,10738.929 +30639,2025-03-10T20:00:06.449093-07:00,0.0,10.734232,10734.232 +30640,2025-03-10T20:00:17.184912-07:00,0.0,10.735819,10735.819 +30641,2025-03-10T20:00:27.925860-07:00,0.0,10.740948,10740.948 +30642,2025-03-10T20:00:38.669173-07:00,0.0,10.743313,10743.313 +30643,2025-03-10T20:00:49.401678-07:00,0.0,10.732505,10732.505 +30644,2025-03-10T20:01:00.141367-07:00,0.0,10.739689,10739.689 +30645,2025-03-10T20:01:10.881394-07:00,0.0,10.740027,10740.027 +30646,2025-03-10T20:01:21.614971-07:00,0.0,10.733577,10733.577 +30647,2025-03-10T20:01:32.362015-07:00,0.0,10.747044,10747.044 +30648,2025-03-10T20:01:43.097939-07:00,0.0,10.735924,10735.924 +30649,2025-03-10T20:01:53.836865-07:00,0.0,10.738926,10738.926 +30650,2025-03-10T20:02:04.577238-07:00,0.0,10.740373,10740.373 +30651,2025-03-10T20:02:15.322938-07:00,0.0,10.7457,10745.7 +30652,2025-03-10T20:02:26.058062-07:00,0.0,10.735124,10735.124 +30653,2025-03-10T20:02:36.797866-07:00,0.0,10.739804,10739.804 +30654,2025-03-10T20:02:47.544105-07:00,0.0,10.746239,10746.239 +30655,2025-03-10T20:02:58.277891-07:00,0.0,10.733786,10733.786 +30656,2025-03-10T20:03:09.022018-07:00,0.0,10.744127,10744.127 +30657,2025-03-10T20:03:19.752038-07:00,0.0,10.73002,10730.02 +30658,2025-03-10T20:03:30.500038-07:00,0.0,10.748,10748.0 +30659,2025-03-10T20:03:41.235615-07:00,0.0,10.735577,10735.577 +30660,2025-03-10T20:03:51.967860-07:00,0.0,10.732245,10732.245 +30661,2025-03-10T20:04:02.714152-07:00,0.0,10.746292,10746.292 +30662,2025-03-10T20:04:13.446930-07:00,0.0,10.732778,10732.778 +30663,2025-03-10T20:04:24.182085-07:00,0.0,10.735155,10735.155 +30664,2025-03-10T20:04:34.919352-07:00,0.0,10.737267,10737.267 +30665,2025-03-10T20:04:45.658934-07:00,0.0,10.739582,10739.582 +30666,2025-03-10T20:04:56.400952-07:00,0.0,10.742018,10742.018 +30667,2025-03-10T20:05:07.136265-07:00,0.0,10.735313,10735.313 +30668,2025-03-10T20:05:17.871034-07:00,0.0,10.734769,10734.769 +30669,2025-03-10T20:05:28.615191-07:00,0.0,10.744157,10744.157 +30670,2025-03-10T20:05:39.350867-07:00,0.0,10.735676,10735.676 +30671,2025-03-10T20:05:50.085070-07:00,0.0,10.734203,10734.203 +30672,2025-03-10T20:06:00.823862-07:00,0.0,10.738792,10738.792 +30673,2025-03-10T20:06:11.572933-07:00,0.0,10.749071,10749.071 +30674,2025-03-10T20:06:22.311019-07:00,0.0,10.738086,10738.086 +30675,2025-03-10T20:06:33.049660-07:00,0.0,10.738641,10738.641 +30676,2025-03-10T20:06:43.792061-07:00,0.0,10.742401,10742.401 +30677,2025-03-10T20:06:54.522719-07:00,0.0,10.730658,10730.658 +30678,2025-03-10T20:07:05.262870-07:00,0.0,10.740151,10740.151 +30679,2025-03-10T20:07:16.004026-07:00,0.0,10.741156,10741.156 +30680,2025-03-10T20:07:26.746183-07:00,0.0,10.742157,10742.157 +30681,2025-03-10T20:07:37.476273-07:00,0.0,10.73009,10730.09 +30682,2025-03-10T20:07:48.215021-07:00,0.0,10.738748,10738.748 +30683,2025-03-10T20:07:58.953063-07:00,0.0,10.738042,10738.042 +30684,2025-03-10T20:08:09.697863-07:00,0.0,10.7448,10744.8 +30685,2025-03-10T20:08:20.429239-07:00,0.0,10.731376,10731.376 +30686,2025-03-10T20:08:31.164147-07:00,0.0,10.734908,10734.908 +30687,2025-03-10T20:08:41.908169-07:00,0.0,10.744022,10744.022 +30688,2025-03-10T20:08:52.641860-07:00,0.0,10.733691,10733.691 +30689,2025-03-10T20:09:03.381900-07:00,0.0,10.74004,10740.04 +30690,2025-03-10T20:09:14.117668-07:00,0.0,10.735768,10735.768 +30691,2025-03-10T20:09:24.857295-07:00,0.0,10.739627,10739.627 +30692,2025-03-10T20:09:35.585860-07:00,0.0,10.728565,10728.565 +30693,2025-03-10T20:09:46.325868-07:00,0.0,10.740008,10740.008 +30694,2025-03-10T20:09:57.060084-07:00,0.0,10.734216,10734.216 +30695,2025-03-10T20:10:07.800048-07:00,0.0,10.739964,10739.964 +30696,2025-03-10T20:10:18.526929-07:00,0.0,10.726881,10726.881 +30697,2025-03-10T20:10:29.270887-07:00,0.0,10.743958,10743.958 +30698,2025-03-10T20:10:40.010066-07:00,0.0,10.739179,10739.179 +30699,2025-03-10T20:10:50.739048-07:00,0.0,10.728982,10728.982 +30700,2025-03-10T20:11:01.483374-07:00,0.0,10.744326,10744.326 +30701,2025-03-10T20:11:12.220860-07:00,0.0,10.737486,10737.486 +30702,2025-03-10T20:11:22.953863-07:00,0.0,10.733003,10733.003 +30703,2025-03-10T20:11:33.691863-07:00,0.0,10.738,10738.0 +30704,2025-03-10T20:11:44.436865-07:00,0.0,10.745002,10745.002 +30705,2025-03-10T20:11:55.173079-07:00,0.0,10.736214,10736.214 +30706,2025-03-10T20:12:05.912881-07:00,0.0,10.739802,10739.802 +30707,2025-03-10T20:12:16.646859-07:00,0.0,10.733978,10733.978 +30708,2025-03-10T20:12:27.389862-07:00,0.0,10.743003,10743.003 +30709,2025-03-10T20:12:38.127951-07:00,0.0,10.738089,10738.089 +30710,2025-03-10T20:12:48.857041-07:00,0.0,10.72909,10729.09 +30711,2025-03-10T20:12:59.597860-07:00,0.0,10.740819,10740.819 +30712,2025-03-10T20:13:10.338020-07:00,0.0,10.74016,10740.16 +30713,2025-03-10T20:13:21.078862-07:00,0.0,10.740842,10740.842 +30714,2025-03-10T20:13:31.812864-07:00,0.0,10.734002,10734.002 +30715,2025-03-10T20:13:42.555863-07:00,0.0,10.742999,10742.999 +30716,2025-03-10T20:13:53.294049-07:00,0.0,10.738186,10738.186 +30717,2025-03-10T20:14:04.026072-07:00,0.0,10.732023,10732.023 +30718,2025-03-10T20:14:14.772863-07:00,0.0,10.746791,10746.791 +30719,2025-03-10T20:14:25.505078-07:00,0.0,10.732215,10732.215 +30720,2025-03-10T20:14:36.251858-07:00,0.0,10.74678,10746.78 +30721,2025-03-10T20:14:46.980247-07:00,0.0,10.728389,10728.389 +30722,2025-03-10T20:14:57.726144-07:00,0.0,10.745897,10745.897 +30723,2025-03-10T20:15:08.461095-07:00,0.0,10.734951,10734.951 +30724,2025-03-10T20:15:19.197861-07:00,0.0,10.736766,10736.766 +30725,2025-03-10T20:15:29.940862-07:00,0.0,10.743001,10743.001 +30726,2025-03-10T20:15:40.680886-07:00,0.0,10.740024,10740.024 +30727,2025-03-10T20:15:51.417031-07:00,0.0,10.736145,10736.145 +30728,2025-03-10T20:16:02.147858-07:00,0.0,10.730827,10730.827 +30729,2025-03-10T20:16:12.888868-07:00,0.0,10.74101,10741.01 +30730,2025-03-10T20:16:23.626294-07:00,0.0,10.737426,10737.426 +30731,2025-03-10T20:16:34.366091-07:00,0.0,10.739797,10739.797 +30732,2025-03-10T20:16:45.104427-07:00,0.0,10.738336,10738.336 +30733,2025-03-10T20:16:55.848048-07:00,0.0,10.743621,10743.621 +30734,2025-03-10T20:17:06.585198-07:00,0.0,10.73715,10737.15 +30735,2025-03-10T20:17:17.315998-07:00,0.0,10.7308,10730.8 +30736,2025-03-10T20:17:28.053870-07:00,0.0,10.737872,10737.872 +30737,2025-03-10T20:17:38.798866-07:00,0.0,10.744996,10744.996 +30738,2025-03-10T20:17:49.537051-07:00,0.0,10.738185,10738.185 +30739,2025-03-10T20:18:00.273883-07:00,0.0,10.736832,10736.832 +30740,2025-03-10T20:18:11.017863-07:00,0.0,10.74398,10743.98 +30741,2025-03-10T20:18:21.749550-07:00,0.0,10.731687,10731.687 +30742,2025-03-10T20:18:32.486038-07:00,0.0,10.736488,10736.488 +30743,2025-03-10T20:18:43.223305-07:00,0.0,10.737267,10737.267 +30744,2025-03-10T20:18:53.967385-07:00,0.0,10.74408,10744.08 +30745,2025-03-10T20:19:04.701157-07:00,0.0,10.733772,10733.772 +30746,2025-03-10T20:19:15.437866-07:00,0.0,10.736709,10736.709 +30747,2025-03-10T20:19:26.174867-07:00,0.0,10.737001,10737.001 +30748,2025-03-10T20:19:36.912983-07:00,0.0,10.738116,10738.116 +30749,2025-03-10T20:19:47.644859-07:00,0.0,10.731876,10731.876 +30750,2025-03-10T20:19:58.385862-07:00,0.0,10.741003,10741.003 +30751,2025-03-10T20:20:09.129863-07:00,0.0,10.744001,10744.001 +30752,2025-03-10T20:20:19.867862-07:00,0.0,10.737999,10737.999 +30753,2025-03-10T20:20:30.600541-07:00,0.0,10.732679,10732.679 +30754,2025-03-10T20:20:41.339189-07:00,0.0,10.738648,10738.648 +30755,2025-03-10T20:20:52.084014-07:00,0.0,10.744825,10744.825 +30756,2025-03-10T20:21:02.816129-07:00,0.0,10.732115,10732.115 +30757,2025-03-10T20:21:13.561390-07:00,0.0,10.745261,10745.261 +30758,2025-03-10T20:21:24.293863-07:00,0.0,10.732473,10732.473 +30759,2025-03-10T20:21:35.035027-07:00,0.0,10.741164,10741.164 +30760,2025-03-10T20:21:45.770961-07:00,0.0,10.735934,10735.934 +30761,2025-03-10T20:21:56.515055-07:00,0.0,10.744094,10744.094 +30762,2025-03-10T20:22:07.249894-07:00,0.0,10.734839,10734.839 +30763,2025-03-10T20:22:17.982266-07:00,0.0,10.732372,10732.372 +30764,2025-03-10T20:22:28.716042-07:00,0.0,10.733776,10733.776 +30765,2025-03-10T20:22:39.450893-07:00,0.0,10.734851,10734.851 +30766,2025-03-10T20:22:50.190861-07:00,0.0,10.739968,10739.968 +30767,2025-03-10T20:23:00.932013-07:00,0.0,10.741152,10741.152 +30768,2025-03-10T20:23:11.669166-07:00,0.0,10.737153,10737.153 +30769,2025-03-10T20:23:22.404049-07:00,0.0,10.734883,10734.883 +30770,2025-03-10T20:23:33.144359-07:00,0.0,10.74031,10740.31 +30771,2025-03-10T20:23:43.881863-07:00,0.0,10.737504,10737.504 +30772,2025-03-10T20:23:54.617866-07:00,0.0,10.736003,10736.003 +30773,2025-03-10T20:24:05.359862-07:00,0.0,10.741996,10741.996 +30774,2025-03-10T20:24:16.094658-07:00,0.0,10.734796,10734.796 +30775,2025-03-10T20:24:26.833987-07:00,0.0,10.739329,10739.329 +30776,2025-03-10T20:24:37.570909-07:00,0.0,10.736922,10736.922 +30777,2025-03-10T20:24:48.315063-07:00,0.0,10.744154,10744.154 +30778,2025-03-10T20:24:59.047120-07:00,0.0,10.732057,10732.057 +30779,2025-03-10T20:25:09.791939-07:00,0.0,10.744819,10744.819 +30780,2025-03-10T20:25:20.530934-07:00,0.0,10.738995,10738.995 +30781,2025-03-10T20:25:31.274058-07:00,0.0,10.743124,10743.124 +30782,2025-03-10T20:25:42.012624-07:00,0.0,10.738566,10738.566 +30783,2025-03-10T20:25:52.756885-07:00,0.0,10.744261,10744.261 +30784,2025-03-10T20:26:03.492861-07:00,0.0,10.735976,10735.976 +30785,2025-03-10T20:26:14.237866-07:00,0.0,10.745005,10745.005 +30786,2025-03-10T20:26:24.970057-07:00,0.0,10.732191,10732.191 +30787,2025-03-10T20:26:35.712375-07:00,0.0,10.742318,10742.318 +30788,2025-03-10T20:26:46.457060-07:00,0.0,10.744685,10744.685 +30789,2025-03-10T20:26:57.193861-07:00,0.0,10.736801,10736.801 +30790,2025-03-10T20:27:07.931071-07:00,0.0,10.73721,10737.21 +30791,2025-03-10T20:27:18.674857-07:00,0.0,10.743786,10743.786 +30792,2025-03-10T20:27:29.412064-07:00,0.0,10.737207,10737.207 +30793,2025-03-10T20:27:40.150862-07:00,0.0,10.738798,10738.798 +30794,2025-03-10T20:27:50.892002-07:00,0.0,10.74114,10741.14 +30795,2025-03-10T20:28:01.641043-07:00,0.0,10.749041,10749.041 +30796,2025-03-10T20:28:12.379738-07:00,0.0,10.738695,10738.695 +30797,2025-03-10T20:28:23.121058-07:00,0.0,10.74132,10741.32 +30798,2025-03-10T20:28:33.861863-07:00,0.0,10.740805,10740.805 +30799,2025-03-10T20:28:44.600117-07:00,0.0,10.738254,10738.254 +30800,2025-03-10T20:28:55.343899-07:00,0.0,10.743782,10743.782 +30801,2025-03-10T20:29:06.081059-07:00,0.0,10.73716,10737.16 +30802,2025-03-10T20:29:16.832270-07:00,0.0,10.751211,10751.211 +30803,2025-03-10T20:29:27.572316-07:00,0.0,10.740046,10740.046 +30804,2025-03-10T20:29:38.308531-07:00,0.0,10.736215,10736.215 +30805,2025-03-10T20:29:49.048925-07:00,0.0,10.740394,10740.394 +30806,2025-03-10T20:29:59.792864-07:00,0.0,10.743939,10743.939 +30807,2025-03-10T20:30:10.533869-07:00,0.0,10.741005,10741.005 +30808,2025-03-10T20:30:21.275865-07:00,0.0,10.741996,10741.996 +30809,2025-03-10T20:30:32.019860-07:00,0.0,10.743995,10743.995 +30810,2025-03-10T20:30:42.759860-07:00,0.0,10.74,10740.0 +30811,2025-03-10T20:30:53.499041-07:00,0.0,10.739181,10739.181 +30812,2025-03-10T20:31:04.250443-07:00,0.0,10.751402,10751.402 +30813,2025-03-10T20:31:14.985731-07:00,0.0,10.735288,10735.288 +30814,2025-03-10T20:31:25.727150-07:00,0.0,10.741419,10741.419 +30815,2025-03-10T20:31:36.474934-07:00,0.0,10.747784,10747.784 +30816,2025-03-10T20:31:47.215927-07:00,0.0,10.740993,10740.993 +30817,2025-03-10T20:31:57.949865-07:00,0.0,10.733938,10733.938 +30818,2025-03-10T20:32:08.695869-07:00,0.0,10.746004,10746.004 +30819,2025-03-10T20:32:19.432121-07:00,0.0,10.736252,10736.252 +30820,2025-03-10T20:32:30.177992-07:00,0.0,10.745871,10745.871 +30821,2025-03-10T20:32:40.916436-07:00,0.0,10.738444,10738.444 +30822,2025-03-10T20:32:51.651862-07:00,0.0,10.735426,10735.426 +30823,2025-03-10T20:33:02.394937-07:00,0.0,10.743075,10743.075 +30824,2025-03-10T20:33:13.133053-07:00,0.0,10.738116,10738.116 +30825,2025-03-10T20:33:23.878078-07:00,0.0,10.745025,10745.025 +30826,2025-03-10T20:33:34.613880-07:00,0.0,10.735802,10735.802 +30827,2025-03-10T20:33:45.357259-07:00,0.0,10.743379,10743.379 +30828,2025-03-10T20:33:56.097724-07:00,0.0,10.740465,10740.465 +30829,2025-03-10T20:34:06.838906-07:00,0.0,10.741182,10741.182 +30830,2025-03-10T20:34:17.584855-07:00,0.0,10.745949,10745.949 +30831,2025-03-10T20:34:28.318740-07:00,0.0,10.733885,10733.885 +30832,2025-03-10T20:34:39.065865-07:00,0.0,10.747125,10747.125 +30833,2025-03-10T20:34:49.804043-07:00,0.0,10.738178,10738.178 +30834,2025-03-10T20:35:00.544066-07:00,0.0,10.740023,10740.023 +30835,2025-03-10T20:35:11.291903-07:00,0.0,10.747837,10747.837 +30836,2025-03-10T20:35:22.029119-07:00,0.0,10.737216,10737.216 +30837,2025-03-10T20:35:32.774975-07:00,0.0,10.745856,10745.856 +30838,2025-03-10T20:35:43.520057-07:00,0.0,10.745082,10745.082 +30839,2025-03-10T20:35:54.256863-07:00,0.0,10.736806,10736.806 +30840,2025-03-10T20:36:05.007925-07:00,0.0,10.751062,10751.062 +30841,2025-03-10T20:36:15.748866-07:00,0.0,10.740941,10740.941 +30842,2025-03-10T20:36:26.486863-07:00,0.0,10.737997,10737.997 +30843,2025-03-10T20:36:37.235586-07:00,0.0,10.748723,10748.723 +30844,2025-03-10T20:36:47.980860-07:00,0.0,10.745274,10745.274 +30845,2025-03-10T20:36:58.718863-07:00,0.0,10.738003,10738.003 +30846,2025-03-10T20:37:09.463877-07:00,0.0,10.745014,10745.014 +30847,2025-03-10T20:37:20.205033-07:00,0.0,10.741156,10741.156 +30848,2025-03-10T20:37:30.955048-07:00,0.0,10.750015,10750.015 +30849,2025-03-10T20:37:41.692051-07:00,0.0,10.737003,10737.003 +30850,2025-03-10T20:37:52.435886-07:00,0.0,10.743835,10743.835 +30851,2025-03-10T20:38:03.176863-07:00,0.0,10.740977,10740.977 +30852,2025-03-10T20:38:13.920259-07:00,0.0,10.743396,10743.396 +30853,2025-03-10T20:38:24.665090-07:00,0.0,10.744831,10744.831 +30854,2025-03-10T20:38:35.411864-07:00,0.0,10.746774,10746.774 +30855,2025-03-10T20:38:46.152152-07:00,0.0,10.740288,10740.288 +30856,2025-03-10T20:38:56.898032-07:00,0.0,10.74588,10745.88 +30857,2025-03-10T20:39:07.640051-07:00,0.0,10.742019,10742.019 +30858,2025-03-10T20:39:18.379252-07:00,0.0,10.739201,10739.201 +30859,2025-03-10T20:39:29.116929-07:00,0.0,10.737677,10737.677 +30860,2025-03-10T20:39:39.868690-07:00,0.0,10.751761,10751.761 +30861,2025-03-10T20:39:50.601922-07:00,0.0,10.733232,10733.232 +30862,2025-03-10T20:40:01.340863-07:00,0.0,10.738941,10738.941 +30863,2025-03-10T20:40:12.086861-07:00,0.0,10.745998,10745.998 +30864,2025-03-10T20:40:22.832372-07:00,0.0,10.745511,10745.511 +30865,2025-03-10T20:40:33.568024-07:00,0.0,10.735652,10735.652 +30866,2025-03-10T20:40:44.305039-07:00,0.0,10.737015,10737.015 +30867,2025-03-10T20:40:55.045884-07:00,0.0,10.740845,10740.845 +30868,2025-03-10T20:41:05.782864-07:00,0.0,10.73698,10736.98 +30869,2025-03-10T20:41:16.527886-07:00,0.0,10.745022,10745.022 +30870,2025-03-10T20:41:27.263864-07:00,0.0,10.735978,10735.978 +30871,2025-03-10T20:41:37.996034-07:00,0.0,10.73217,10732.17 +30872,2025-03-10T20:41:48.736904-07:00,0.0,10.74087,10740.87 +30873,2025-03-10T20:41:59.475912-07:00,0.0,10.739008,10739.008 +30874,2025-03-10T20:42:10.214071-07:00,0.0,10.738159,10738.159 +30875,2025-03-10T20:42:20.945865-07:00,0.0,10.731794,10731.794 +30876,2025-03-10T20:42:31.691855-07:00,0.0,10.74599,10745.99 +30877,2025-03-10T20:42:42.426084-07:00,0.0,10.734229,10734.229 +30878,2025-03-10T20:42:53.169635-07:00,0.0,10.743551,10743.551 +30879,2025-03-10T20:43:03.901862-07:00,0.0,10.732227,10732.227 +30880,2025-03-10T20:43:14.639860-07:00,0.0,10.737998,10737.998 +30881,2025-03-10T20:43:25.385862-07:00,0.0,10.746002,10746.002 +30882,2025-03-10T20:43:36.120291-07:00,0.0,10.734429,10734.429 +30883,2025-03-10T20:43:46.859056-07:00,0.0,10.738765,10738.765 +30884,2025-03-10T20:43:57.590871-07:00,0.0,10.731815,10731.815 +30885,2025-03-10T20:44:08.328672-07:00,0.0,10.737801,10737.801 +30886,2025-03-10T20:44:19.068593-07:00,0.0,10.739921,10739.921 +30887,2025-03-10T20:44:29.806875-07:00,0.0,10.738282,10738.282 +30888,2025-03-10T20:44:40.538016-07:00,0.0,10.731141,10731.141 +30889,2025-03-10T20:44:51.274866-07:00,0.0,10.73685,10736.85 +30890,2025-03-10T20:45:02.018560-07:00,0.0,10.743694,10743.694 +30891,2025-03-10T20:45:12.750703-07:00,0.0,10.732143,10732.143 +30892,2025-03-10T20:45:23.486060-07:00,0.0,10.735357,10735.357 +30893,2025-03-10T20:45:34.231259-07:00,0.0,10.745199,10745.199 +30894,2025-03-10T20:45:44.963862-07:00,0.0,10.732603,10732.603 +30895,2025-03-10T20:45:55.700078-07:00,0.0,10.736216,10736.216 +30896,2025-03-10T20:46:06.436864-07:00,0.0,10.736786,10736.786 +30897,2025-03-10T20:46:17.178346-07:00,0.0,10.741482,10741.482 +30898,2025-03-10T20:46:27.918112-07:00,0.0,10.739766,10739.766 +30899,2025-03-10T20:46:38.650938-07:00,0.0,10.732826,10732.826 +30900,2025-03-10T20:46:49.399983-07:00,0.0,10.749045,10749.045 +30901,2025-03-10T20:47:00.132525-07:00,0.0,10.732542,10732.542 +30902,2025-03-10T20:47:10.880203-07:00,0.0,10.747678,10747.678 +30903,2025-03-10T20:47:21.613901-07:00,0.0,10.733698,10733.698 +30904,2025-03-10T20:47:32.355054-07:00,0.0,10.741153,10741.153 +30905,2025-03-10T20:47:43.096189-07:00,0.0,10.741135,10741.135 +30906,2025-03-10T20:47:53.835865-07:00,0.0,10.739676,10739.676 +30907,2025-03-10T20:48:04.570867-07:00,0.0,10.735002,10735.002 +30908,2025-03-10T20:48:15.309892-07:00,0.0,10.739025,10739.025 +30909,2025-03-10T20:48:26.051863-07:00,0.0,10.741971,10741.971 +30910,2025-03-10T20:48:36.794043-07:00,0.0,10.74218,10742.18 +30911,2025-03-10T20:48:47.530135-07:00,0.0,10.736092,10736.092 +30912,2025-03-10T20:48:58.267531-07:00,0.0,10.737396,10737.396 +30913,2025-03-10T20:49:08.999884-07:00,0.0,10.732353,10732.353 +30914,2025-03-10T20:49:19.736316-07:00,0.0,10.736432,10736.432 +30915,2025-03-10T20:49:30.474068-07:00,0.0,10.737752,10737.752 +30916,2025-03-10T20:49:41.221631-07:00,0.0,10.747563,10747.563 +30917,2025-03-10T20:49:51.953861-07:00,0.0,10.73223,10732.23 +30918,2025-03-10T20:50:02.694865-07:00,0.0,10.741004,10741.004 +30919,2025-03-10T20:50:13.430868-07:00,0.0,10.736003,10736.003 +30920,2025-03-10T20:50:24.164028-07:00,0.0,10.73316,10733.16 +30921,2025-03-10T20:50:34.910987-07:00,0.0,10.746959,10746.959 +30922,2025-03-10T20:50:45.648887-07:00,0.0,10.7379,10737.9 +30923,2025-03-10T20:50:56.384864-07:00,0.0,10.735977,10735.977 +30924,2025-03-10T20:51:07.119860-07:00,0.0,10.734996,10734.996 +30925,2025-03-10T20:51:17.860042-07:00,0.0,10.740182,10740.182 +30926,2025-03-10T20:51:28.599993-07:00,0.0,10.739951,10739.951 +30927,2025-03-10T20:51:39.333864-07:00,0.0,10.733871,10733.871 +30928,2025-03-10T20:51:50.073053-07:00,0.0,10.739189,10739.189 +30929,2025-03-10T20:52:00.810892-07:00,0.0,10.737839,10737.839 +30930,2025-03-10T20:52:11.547862-07:00,0.0,10.73697,10736.97 +30931,2025-03-10T20:52:22.292862-07:00,0.0,10.745,10745.0 +30932,2025-03-10T20:52:33.020309-07:00,0.0,10.727447,10727.447 +30933,2025-03-10T20:52:43.766861-07:00,0.0,10.746552,10746.552 +30934,2025-03-10T20:52:54.506952-07:00,0.0,10.740091,10740.091 +30935,2025-03-10T20:53:05.242863-07:00,0.0,10.735911,10735.911 +30936,2025-03-10T20:53:15.983557-07:00,0.0,10.740694,10740.694 +30937,2025-03-10T20:53:26.718055-07:00,0.0,10.734498,10734.498 +30938,2025-03-10T20:53:37.493750-07:00,0.0,10.775695,10775.695 +30939,2025-03-10T20:53:48.230734-07:00,0.0,10.736984,10736.984 +30940,2025-03-10T20:53:58.967844-07:00,0.0,10.73711,10737.11 +30941,2025-03-10T20:54:09.713736-07:00,0.0,10.745892,10745.892 +30942,2025-03-10T20:54:20.446735-07:00,0.0,10.732999,10732.999 +30943,2025-03-10T20:54:31.188957-07:00,0.0,10.742222,10742.222 +30944,2025-03-10T20:54:41.930462-07:00,0.0,10.741505,10741.505 +30945,2025-03-10T20:54:52.660932-07:00,0.0,10.73047,10730.47 +30946,2025-03-10T20:55:03.405738-07:00,0.0,10.744806,10744.806 +30947,2025-03-10T20:55:14.148760-07:00,0.0,10.743022,10743.022 +30948,2025-03-10T20:55:24.891438-07:00,0.0,10.742678,10742.678 +30949,2025-03-10T20:55:35.632945-07:00,0.0,10.741507,10741.507 +30950,2025-03-10T20:55:46.366951-07:00,0.0,10.734006,10734.006 +30951,2025-03-10T20:55:57.107929-07:00,0.0,10.740978,10740.978 +30952,2025-03-10T20:56:07.856937-07:00,0.0,10.749008,10749.008 +30953,2025-03-10T20:56:18.590098-07:00,0.0,10.733161,10733.161 +30954,2025-03-10T20:56:29.328938-07:00,0.0,10.73884,10738.84 +30955,2025-03-10T20:56:40.065738-07:00,0.0,10.7368,10736.8 +30956,2025-03-10T20:56:50.800207-07:00,0.0,10.734469,10734.469 +30957,2025-03-10T20:57:01.540767-07:00,0.0,10.74056,10740.56 +30958,2025-03-10T20:57:12.273738-07:00,0.0,10.732971,10732.971 +30959,2025-03-10T20:57:23.015471-07:00,0.0,10.741733,10741.733 +30960,2025-03-10T20:57:33.754923-07:00,0.0,10.739452,10739.452 +30961,2025-03-10T20:57:44.489927-07:00,0.0,10.735004,10735.004 +30962,2025-03-10T20:57:55.223731-07:00,0.0,10.733804,10733.804 +30963,2025-03-10T20:58:05.963732-07:00,0.0,10.740001,10740.001 +30964,2025-03-10T20:58:16.705738-07:00,0.0,10.742006,10742.006 +30965,2025-03-10T20:58:27.437003-07:00,0.0,10.731265,10731.265 +30966,2025-03-10T20:58:38.180912-07:00,0.0,10.743909,10743.909 +30967,2025-03-10T20:58:48.914985-07:00,0.0,10.734073,10734.073 +30968,2025-03-10T20:58:59.648737-07:00,0.0,10.733752,10733.752 +30969,2025-03-10T20:59:10.387516-07:00,0.0,10.738779,10738.779 +30970,2025-03-10T20:59:21.134770-07:00,0.0,10.747254,10747.254 +30971,2025-03-10T20:59:31.864929-07:00,0.0,10.730159,10730.159 +30972,2025-03-10T20:59:42.603736-07:00,0.0,10.738807,10738.807 +30973,2025-03-10T20:59:53.341738-07:00,0.0,10.738002,10738.002 +30974,2025-03-10T21:00:04.084733-07:00,0.0,10.742995,10742.995 +30975,2025-03-10T21:00:14.818790-07:00,0.0,10.734057,10734.057 +30976,2025-03-10T21:00:25.560738-07:00,0.0,10.741948,10741.948 +30977,2025-03-10T21:00:36.291915-07:00,0.0,10.731177,10731.177 +30978,2025-03-10T21:00:47.026998-07:00,0.0,10.735083,10735.083 +30979,2025-03-10T21:00:57.769799-07:00,0.0,10.742801,10742.801 +30980,2025-03-10T21:01:08.509072-07:00,0.0,10.739273,10739.273 +30981,2025-03-10T21:01:19.244738-07:00,0.0,10.735666,10735.666 +30982,2025-03-10T21:01:29.977387-07:00,0.0,10.732649,10732.649 +30983,2025-03-10T21:01:40.724830-07:00,0.0,10.747443,10747.443 +30984,2025-03-10T21:01:51.456738-07:00,0.0,10.731908,10731.908 +30985,2025-03-10T21:02:02.197732-07:00,0.0,10.740994,10740.994 +30986,2025-03-10T21:02:12.947739-07:00,0.0,10.750007,10750.007 +30987,2025-03-10T21:02:23.686203-07:00,0.0,10.738464,10738.464 +30988,2025-03-10T21:02:34.423939-07:00,0.0,10.737736,10737.736 +30989,2025-03-10T21:02:45.164918-07:00,0.0,10.740979,10740.979 +30990,2025-03-10T21:02:55.909030-07:00,0.0,10.744112,10744.112 +30991,2025-03-10T21:03:06.640809-07:00,0.0,10.731779,10731.779 +30992,2025-03-10T21:03:17.381752-07:00,0.0,10.740943,10740.943 +30993,2025-03-10T21:03:28.131734-07:00,0.0,10.749982,10749.982 +30994,2025-03-10T21:03:38.867161-07:00,0.0,10.735427,10735.427 +30995,2025-03-10T21:03:49.609176-07:00,0.0,10.742015,10742.015 +30996,2025-03-10T21:04:00.349128-07:00,0.0,10.739952,10739.952 +30997,2025-03-10T21:04:11.088739-07:00,0.0,10.739611,10739.611 +30998,2025-03-10T21:04:21.832103-07:00,0.0,10.743364,10743.364 +30999,2025-03-10T21:04:32.568735-07:00,0.0,10.736632,10736.632 +31000,2025-03-10T21:04:43.298885-07:00,0.0,10.73015,10730.15 +31001,2025-03-10T21:04:54.031912-07:00,0.0,10.733027,10733.027 +31002,2025-03-10T21:05:04.778073-07:00,0.0,10.746161,10746.161 +31003,2025-03-10T21:05:15.511798-07:00,0.0,10.733725,10733.725 +31004,2025-03-10T21:05:26.242737-07:00,0.0,10.730939,10730.939 +31005,2025-03-10T21:05:36.992106-07:00,0.0,10.749369,10749.369 +31006,2025-03-10T21:05:47.718941-07:00,0.0,10.726835,10726.835 +31007,2025-03-10T21:05:58.461960-07:00,0.0,10.743019,10743.019 +31008,2025-03-10T21:06:09.193802-07:00,0.0,10.731842,10731.842 +31009,2025-03-10T21:06:19.923767-07:00,0.0,10.729965,10729.965 +31010,2025-03-10T21:06:30.657923-07:00,0.0,10.734156,10734.156 +31011,2025-03-10T21:06:41.383808-07:00,0.0,10.725885,10725.885 +31012,2025-03-10T21:06:52.122151-07:00,0.0,10.738343,10738.343 +31013,2025-03-10T21:07:02.848927-07:00,0.0,10.726776,10726.776 +31014,2025-03-10T21:07:13.579734-07:00,0.0,10.730807,10730.807 +31015,2025-03-10T21:07:24.317988-07:00,0.0,10.738254,10738.254 +31016,2025-03-10T21:07:35.047887-07:00,0.0,10.729899,10729.899 +31017,2025-03-10T21:07:45.779763-07:00,0.0,10.731876,10731.876 +31018,2025-03-10T21:07:56.509001-07:00,0.0,10.729238,10729.238 +31019,2025-03-10T21:08:07.240790-07:00,0.0,10.731789,10731.789 +31020,2025-03-10T21:08:17.976152-07:00,0.0,10.735362,10735.362 +31021,2025-03-10T21:08:28.702762-07:00,0.0,10.72661,10726.61 +31022,2025-03-10T21:08:39.435739-07:00,0.0,10.732977,10732.977 +31023,2025-03-10T21:08:50.167103-07:00,0.0,10.731364,10731.364 +31024,2025-03-10T21:09:00.906965-07:00,0.0,10.739862,10739.862 +31025,2025-03-10T21:09:11.637738-07:00,0.0,10.730773,10730.773 +31026,2025-03-10T21:09:22.372738-07:00,0.0,10.735,10735.0 +31027,2025-03-10T21:09:33.101735-07:00,0.0,10.728997,10728.997 +31028,2025-03-10T21:09:43.838738-07:00,0.0,10.737003,10737.003 +31029,2025-03-10T21:09:54.578733-07:00,0.0,10.739995,10739.995 +31030,2025-03-10T21:10:05.311848-07:00,0.0,10.733115,10733.115 +31031,2025-03-10T21:10:16.050939-07:00,0.0,10.739091,10739.091 +31032,2025-03-10T21:10:26.777809-07:00,0.0,10.72687,10726.87 +31033,2025-03-10T21:10:37.521026-07:00,0.0,10.743217,10743.217 +31034,2025-03-10T21:10:48.258732-07:00,0.0,10.737706,10737.706 +31035,2025-03-10T21:10:58.994107-07:00,0.0,10.735375,10735.375 +31036,2025-03-10T21:11:09.721734-07:00,0.0,10.727627,10727.627 +31037,2025-03-10T21:11:20.457736-07:00,0.0,10.736002,10736.002 +31038,2025-03-10T21:11:31.204734-07:00,0.0,10.746998,10746.998 +31039,2025-03-10T21:11:41.939738-07:00,0.0,10.735004,10735.004 +31040,2025-03-10T21:11:52.671939-07:00,0.0,10.732201,10732.201 +31041,2025-03-10T21:12:03.413786-07:00,0.0,10.741847,10741.847 +31042,2025-03-10T21:12:14.159733-07:00,0.0,10.745947,10745.947 +31043,2025-03-10T21:12:24.893759-07:00,0.0,10.734026,10734.026 +31044,2025-03-10T21:12:29.233134-07:00,359.0,4.339375,4339.375 +31045,2025-03-10T21:12:35.634902-07:00,331.0,6.401768,6401.768 +31046,2025-03-10T21:12:46.373915-07:00,335.0,10.739013,10739.013 +31047,2025-03-10T21:12:57.117230-07:00,349.0,10.743315,10743.315 +31048,2025-03-10T21:13:07.856919-07:00,350.0,10.739689,10739.689 +31049,2025-03-10T21:13:18.594730-07:00,359.0,10.737811,10737.811 +31050,2025-03-10T21:13:29.325739-07:00,397.0,10.731009,10731.009 +31051,2025-03-10T21:13:40.071736-07:00,369.0,10.745997,10745.997 +31052,2025-03-10T21:13:50.811768-07:00,362.0,10.740032,10740.032 +31053,2025-03-10T21:14:01.553805-07:00,419.0,10.742037,10742.037 +31054,2025-03-10T21:14:12.288440-07:00,403.0,10.734635,10734.635 +31055,2025-03-10T21:14:23.035618-07:00,365.0,10.747178,10747.178 +31056,2025-03-10T21:14:33.772350-07:00,316.0,10.736732,10736.732 +31057,2025-03-10T21:14:44.505811-07:00,406.0,10.733461,10733.461 +31058,2025-03-10T21:14:55.249801-07:00,371.0,10.74399,10743.99 +31059,2025-03-10T21:15:05.985567-07:00,403.0,10.735766,10735.766 +31060,2025-03-10T21:15:16.725932-07:00,339.0,10.740365,10740.365 +31061,2025-03-10T21:15:27.467868-07:00,400.0,10.741936,10741.936 +31062,2025-03-10T21:15:38.208760-07:00,399.0,10.740892,10740.892 +31063,2025-03-10T21:15:48.951736-07:00,365.0,10.742976,10742.976 +31064,2025-03-10T21:15:59.690738-07:00,285.0,10.739002,10739.002 +31065,2025-03-10T21:16:10.424813-07:00,393.0,10.734075,10734.075 +31066,2025-03-10T21:16:21.163844-07:00,309.0,10.739031,10739.031 +31067,2025-03-10T21:16:31.904634-07:00,373.0,10.74079,10740.79 +31068,2025-03-10T21:16:42.648759-07:00,313.0,10.744125,10744.125 +31069,2025-03-10T21:16:53.380737-07:00,292.0,10.731978,10731.978 +31070,2025-03-10T21:17:04.121780-07:00,344.0,10.741043,10741.043 +31071,2025-03-10T21:17:14.855916-07:00,235.0,10.734136,10734.136 +31072,2025-03-10T21:17:25.603956-07:00,321.0,10.74804,10748.04 +31073,2025-03-10T21:17:36.332737-07:00,389.0,10.728781,10728.781 +31074,2025-03-10T21:17:47.081737-07:00,379.0,10.749,10749.0 +31075,2025-03-10T21:17:57.813736-07:00,320.0,10.731999,10731.999 +31076,2025-03-10T21:18:08.158916-07:00,0.0,10.34518,10345.18 +31077,2025-03-10T21:18:08.550733-07:00,0.0,0.391817,391.817 +31078,2025-03-10T21:18:19.294737-07:00,0.0,10.744004,10744.004 +31079,2025-03-10T21:18:30.026924-07:00,0.0,10.732187,10732.187 +31080,2025-03-10T21:18:40.773482-07:00,0.0,10.746558,10746.558 +31081,2025-03-10T21:18:51.510053-07:00,0.0,10.736571,10736.571 +31082,2025-03-10T21:19:02.253732-07:00,0.0,10.743679,10743.679 +31083,2025-03-10T21:19:12.987730-07:00,0.0,10.733998,10733.998 +31084,2025-03-10T21:19:23.725319-07:00,0.0,10.737589,10737.589 +31085,2025-03-10T21:19:34.462924-07:00,0.0,10.737605,10737.605 +31086,2025-03-10T21:19:45.200069-07:00,0.0,10.737145,10737.145 +31087,2025-03-10T21:19:55.939908-07:00,0.0,10.739839,10739.839 +31088,2025-03-10T21:20:06.678013-07:00,0.0,10.738105,10738.105 +31089,2025-03-10T21:20:17.413438-07:00,0.0,10.735425,10735.425 +31090,2025-03-10T21:20:28.152145-07:00,0.0,10.738707,10738.707 +31091,2025-03-10T21:20:38.894596-07:00,0.0,10.742451,10742.451 +31092,2025-03-10T21:20:49.638763-07:00,0.0,10.744167,10744.167 +31093,2025-03-10T21:21:00.369777-07:00,0.0,10.731014,10731.014 +31094,2025-03-10T21:21:11.104167-07:00,0.0,10.73439,10734.39 +31095,2025-03-10T21:21:21.846513-07:00,0.0,10.742346,10742.346 +31096,2025-03-10T21:21:32.584149-07:00,0.0,10.737636,10737.636 +31097,2025-03-10T21:21:43.316741-07:00,0.0,10.732592,10732.592 +31098,2025-03-10T21:21:54.063795-07:00,0.0,10.747054,10747.054 +31099,2025-03-10T21:22:04.794768-07:00,0.0,10.730973,10730.973 +31100,2025-03-10T21:22:15.535947-07:00,0.0,10.741179,10741.179 +31101,2025-03-10T21:22:26.268918-07:00,0.0,10.732971,10732.971 +31102,2025-03-10T21:22:37.011976-07:00,0.0,10.743058,10743.058 +31103,2025-03-10T21:22:47.744727-07:00,0.0,10.732751,10732.751 +31104,2025-03-10T21:22:58.484744-07:00,0.0,10.740017,10740.017 +31105,2025-03-10T21:23:06.672815-07:00,0.0,8.188071,8188.071 +31106,2025-03-10T21:23:09.212920-07:00,0.0,2.540105,2540.105 +31107,2025-03-10T21:23:19.947845-07:00,0.0,10.734925,10734.925 +31108,2025-03-10T21:23:30.685013-07:00,0.0,10.737168,10737.168 +31109,2025-03-10T21:23:41.430736-07:00,0.0,10.745723,10745.723 +31110,2025-03-10T21:23:52.160948-07:00,0.0,10.730212,10730.212 +31111,2025-03-10T21:24:02.902603-07:00,0.0,10.741655,10741.655 +31112,2025-03-10T21:24:13.632734-07:00,0.0,10.730131,10730.131 +31113,2025-03-10T21:24:24.371944-07:00,0.0,10.73921,10739.21 +31114,2025-03-10T21:24:35.106738-07:00,0.0,10.734794,10734.794 +31115,2025-03-10T21:24:45.847919-07:00,0.0,10.741181,10741.181 +31116,2025-03-10T21:24:56.581248-07:00,0.0,10.733329,10733.329 +31117,2025-03-10T21:25:07.319731-07:00,0.0,10.738483,10738.483 +31118,2025-03-10T21:25:18.051816-07:00,0.0,10.732085,10732.085 +31119,2025-03-10T21:25:28.795917-07:00,0.0,10.744101,10744.101 +31120,2025-03-10T21:25:39.530762-07:00,0.0,10.734845,10734.845 +31121,2025-03-10T21:25:50.262982-07:00,0.0,10.73222,10732.22 +31122,2025-03-10T21:26:01.002736-07:00,0.0,10.739754,10739.754 +31123,2025-03-10T21:26:11.736941-07:00,0.0,10.734205,10734.205 +31124,2025-03-10T21:26:22.476588-07:00,0.0,10.739647,10739.647 +31125,2025-03-10T21:26:33.217080-07:00,0.0,10.740492,10740.492 +31126,2025-03-10T21:26:43.955918-07:00,0.0,10.738838,10738.838 +31127,2025-03-10T21:26:54.685826-07:00,0.0,10.729908,10729.908 +31128,2025-03-10T21:27:05.430734-07:00,0.0,10.744908,10744.908 +31129,2025-03-10T21:27:16.169804-07:00,0.0,10.73907,10739.07 +31130,2025-03-10T21:27:26.908737-07:00,0.0,10.738933,10738.933 +31131,2025-03-10T21:27:37.654807-07:00,0.0,10.74607,10746.07 +31132,2025-03-10T21:27:48.390937-07:00,0.0,10.73613,10736.13 +31133,2025-03-10T21:27:59.128874-07:00,0.0,10.737937,10737.937 +31134,2025-03-10T21:28:09.875828-07:00,0.0,10.746954,10746.954 +31135,2025-03-10T21:28:20.612735-07:00,0.0,10.736907,10736.907 +31136,2025-03-10T21:28:31.348252-07:00,0.0,10.735517,10735.517 +31137,2025-03-10T21:28:42.084964-07:00,0.0,10.736712,10736.712 +31138,2025-03-10T21:28:52.815638-07:00,0.0,10.730674,10730.674 +31139,2025-03-10T21:29:03.556919-07:00,0.0,10.741281,10741.281 +31140,2025-03-10T21:29:14.292090-07:00,0.0,10.735171,10735.171 +31141,2025-03-10T21:29:25.023748-07:00,0.0,10.731658,10731.658 +31142,2025-03-10T21:29:35.767898-07:00,0.0,10.74415,10744.15 +31143,2025-03-10T21:29:46.501761-07:00,0.0,10.733863,10733.863 +31144,2025-03-10T21:29:57.236735-07:00,0.0,10.734974,10734.974 +31145,2025-03-10T21:30:07.971290-07:00,0.0,10.734555,10734.555 +31146,2025-03-10T21:30:18.706909-07:00,0.0,10.735619,10735.619 +31147,2025-03-10T21:30:29.437771-07:00,0.0,10.730862,10730.862 +31148,2025-03-10T21:30:40.165729-07:00,0.0,10.727958,10727.958 +31149,2025-03-10T21:30:50.907730-07:00,0.0,10.742001,10742.001 +31150,2025-03-10T21:31:01.642138-07:00,0.0,10.734408,10734.408 +31151,2025-03-10T21:31:12.372490-07:00,0.0,10.730352,10730.352 +31152,2025-03-10T21:31:23.101895-07:00,0.0,10.729405,10729.405 +31153,2025-03-10T21:31:33.840912-07:00,0.0,10.739017,10739.017 +31154,2025-03-10T21:31:44.563730-07:00,0.0,10.722818,10722.818 +31155,2025-03-10T21:31:55.298734-07:00,0.0,10.735004,10735.004 +31156,2025-03-10T21:32:06.031806-07:00,0.0,10.733072,10733.072 +31157,2025-03-10T21:32:16.770908-07:00,0.0,10.739102,10739.102 +31158,2025-03-10T21:32:27.493160-07:00,0.0,10.722252,10722.252 +31159,2025-03-10T21:32:38.229922-07:00,0.0,10.736762,10736.762 +31160,2025-03-10T21:32:48.961904-07:00,0.0,10.731982,10731.982 +31161,2025-03-10T21:32:59.697730-07:00,0.0,10.735826,10735.826 +31162,2025-03-10T21:33:10.428735-07:00,0.0,10.731005,10731.005 +31163,2025-03-10T21:33:21.155987-07:00,0.0,10.727252,10727.252 +31164,2025-03-10T21:33:31.892861-07:00,0.0,10.736874,10736.874 +31165,2025-03-10T21:33:42.622789-07:00,0.0,10.729928,10729.928 +31166,2025-03-10T21:33:53.356150-07:00,0.0,10.733361,10733.361 +31167,2025-03-10T21:34:04.091609-07:00,0.0,10.735459,10735.459 +31168,2025-03-10T21:34:14.820736-07:00,0.0,10.729127,10729.127 +31169,2025-03-10T21:34:25.560806-07:00,0.0,10.74007,10740.07 +31170,2025-03-10T21:34:36.294937-07:00,0.0,10.734131,10734.131 +31171,2025-03-10T21:34:47.029083-07:00,0.0,10.734146,10734.146 +31172,2025-03-10T21:34:57.764733-07:00,0.0,10.73565,10735.65 +31173,2025-03-10T21:35:08.499137-07:00,0.0,10.734404,10734.404 +31174,2025-03-10T21:35:19.233935-07:00,0.0,10.734798,10734.798 +31175,2025-03-10T21:35:29.979843-07:00,0.0,10.745908,10745.908 +31176,2025-03-10T21:35:40.707736-07:00,0.0,10.727893,10727.893 +31177,2025-03-10T21:35:51.447808-07:00,0.0,10.740072,10740.072 +31178,2025-03-10T21:36:02.180730-07:00,0.0,10.732922,10732.922 +31179,2025-03-10T21:36:12.911923-07:00,0.0,10.731193,10731.193 +31180,2025-03-10T21:36:23.644100-07:00,0.0,10.732177,10732.177 +31181,2025-03-10T21:36:34.384728-07:00,0.0,10.740628,10740.628 +31182,2025-03-10T21:36:45.115128-07:00,0.0,10.7304,10730.4 +31183,2025-03-10T21:36:55.854554-07:00,0.0,10.739426,10739.426 +31184,2025-03-10T21:37:06.586735-07:00,0.0,10.732181,10732.181 +31185,2025-03-10T21:37:17.313733-07:00,0.0,10.726998,10726.998 +31186,2025-03-10T21:37:28.048768-07:00,0.0,10.735035,10735.035 +31187,2025-03-10T21:37:38.783193-07:00,0.0,10.734425,10734.425 +31188,2025-03-10T21:37:49.518735-07:00,0.0,10.735542,10735.542 +31189,2025-03-10T21:38:00.252792-07:00,0.0,10.734057,10734.057 +31190,2025-03-10T21:38:10.996761-07:00,0.0,10.743969,10743.969 +31191,2025-03-10T21:38:21.725930-07:00,0.0,10.729169,10729.169 +31192,2025-03-10T21:38:32.464839-07:00,0.0,10.738909,10738.909 +31193,2025-03-10T21:38:43.194825-07:00,0.0,10.729986,10729.986 +31194,2025-03-10T21:38:53.929948-07:00,0.0,10.735123,10735.123 +31195,2025-03-10T21:39:04.665944-07:00,0.0,10.735996,10735.996 +31196,2025-03-10T21:39:15.400735-07:00,0.0,10.734791,10734.791 +31197,2025-03-10T21:39:26.137732-07:00,0.0,10.736997,10736.997 +31198,2025-03-10T21:39:36.875821-07:00,0.0,10.738089,10738.089 +31199,2025-03-10T21:39:47.608916-07:00,0.0,10.733095,10733.095 +31200,2025-03-10T21:39:58.341732-07:00,0.0,10.732816,10732.816 +31201,2025-03-10T21:40:09.071972-07:00,0.0,10.73024,10730.24 +31202,2025-03-10T21:40:19.818735-07:00,0.0,10.746763,10746.763 +31203,2025-03-10T21:40:30.550993-07:00,0.0,10.732258,10732.258 +31204,2025-03-10T21:40:41.289914-07:00,0.0,10.738921,10738.921 +31205,2025-03-10T21:40:52.017735-07:00,0.0,10.727821,10727.821 +31206,2025-03-10T21:41:02.760764-07:00,0.0,10.743029,10743.029 +31207,2025-03-10T21:41:13.490030-07:00,0.0,10.729266,10729.266 +31208,2025-03-10T21:41:24.230919-07:00,0.0,10.740889,10740.889 +31209,2025-03-10T21:41:34.958738-07:00,0.0,10.727819,10727.819 +31210,2025-03-10T21:41:45.704878-07:00,0.0,10.74614,10746.14 +31211,2025-03-10T21:41:56.433877-07:00,0.0,10.728999,10728.999 +31212,2025-03-10T21:42:07.172127-07:00,0.0,10.73825,10738.25 +31213,2025-03-10T21:42:17.902810-07:00,0.0,10.730683,10730.683 +31214,2025-03-10T21:42:28.648734-07:00,0.0,10.745924,10745.924 +31215,2025-03-10T21:42:39.383736-07:00,0.0,10.735002,10735.002 +31216,2025-03-10T21:42:50.117919-07:00,0.0,10.734183,10734.183 +31217,2025-03-10T21:43:00.854324-07:00,0.0,10.736405,10736.405 +31218,2025-03-10T21:43:11.590484-07:00,0.0,10.73616,10736.16 +31219,2025-03-10T21:43:22.324934-07:00,0.0,10.73445,10734.45 +31220,2025-03-10T21:43:33.068736-07:00,0.0,10.743802,10743.802 +31221,2025-03-10T21:43:43.803040-07:00,0.0,10.734304,10734.304 +31222,2025-03-10T21:43:54.543905-07:00,0.0,10.740865,10740.865 +31223,2025-03-10T21:44:05.275947-07:00,0.0,10.732042,10732.042 +31224,2025-03-10T21:44:16.015898-07:00,0.0,10.739951,10739.951 +31225,2025-03-10T21:44:26.756008-07:00,0.0,10.74011,10740.11 +31226,2025-03-10T21:44:37.487383-07:00,0.0,10.731375,10731.375 +31227,2025-03-10T21:44:48.222730-07:00,0.0,10.735347,10735.347 +31228,2025-03-10T21:44:58.957787-07:00,0.0,10.735057,10735.057 +31229,2025-03-10T21:45:09.694888-07:00,0.0,10.737101,10737.101 +31230,2025-03-10T21:45:20.434034-07:00,0.0,10.739146,10739.146 +31231,2025-03-10T21:45:31.170978-07:00,0.0,10.736944,10736.944 +31232,2025-03-10T21:45:41.899735-07:00,0.0,10.728757,10728.757 +31233,2025-03-10T21:45:52.635797-07:00,0.0,10.736062,10736.062 +31234,2025-03-10T21:46:03.371912-07:00,0.0,10.736115,10736.115 +31235,2025-03-10T21:46:14.109917-07:00,0.0,10.738005,10738.005 +31236,2025-03-10T21:46:24.843732-07:00,0.0,10.733815,10733.815 +31237,2025-03-10T21:46:35.588935-07:00,0.0,10.745203,10745.203 +31238,2025-03-10T21:46:46.318764-07:00,0.0,10.729829,10729.829 +31239,2025-03-10T21:46:57.054766-07:00,0.0,10.736002,10736.002 +31240,2025-03-10T21:47:07.793908-07:00,0.0,10.739142,10739.142 +31241,2025-03-10T21:47:18.526732-07:00,0.0,10.732824,10732.824 +31242,2025-03-10T21:47:29.269804-07:00,0.0,10.743072,10743.072 +31243,2025-03-10T21:47:40.005816-07:00,0.0,10.736012,10736.012 +31244,2025-03-10T21:47:50.742017-07:00,0.0,10.736201,10736.201 +31245,2025-03-10T21:48:01.479910-07:00,0.0,10.737893,10737.893 +31246,2025-03-10T21:48:12.206821-07:00,0.0,10.726911,10726.911 +31247,2025-03-10T21:48:22.949761-07:00,0.0,10.74294,10742.94 +31248,2025-03-10T21:48:33.686935-07:00,0.0,10.737174,10737.174 +31249,2025-03-10T21:48:44.420922-07:00,0.0,10.733987,10733.987 +31250,2025-03-10T21:48:55.154758-07:00,0.0,10.733836,10733.836 +31251,2025-03-10T21:49:05.889833-07:00,0.0,10.735075,10735.075 +31252,2025-03-10T21:49:16.624968-07:00,0.0,10.735135,10735.135 +31253,2025-03-10T21:49:27.362125-07:00,0.0,10.737157,10737.157 +31254,2025-03-10T21:49:38.098727-07:00,0.0,10.736602,10736.602 +31255,2025-03-10T21:49:48.835054-07:00,0.0,10.736327,10736.327 +31256,2025-03-10T21:49:59.575435-07:00,0.0,10.740381,10740.381 +31257,2025-03-10T21:50:10.305748-07:00,0.0,10.730313,10730.313 +31258,2025-03-10T21:50:21.036921-07:00,0.0,10.731173,10731.173 +31259,2025-03-10T21:50:31.779734-07:00,0.0,10.742813,10742.813 +31260,2025-03-10T21:50:42.515735-07:00,0.0,10.736001,10736.001 +31261,2025-03-10T21:50:53.245958-07:00,0.0,10.730223,10730.223 +31262,2025-03-10T21:51:03.982103-07:00,0.0,10.736145,10736.145 +31263,2025-03-10T21:51:14.717911-07:00,0.0,10.735808,10735.808 +31264,2025-03-10T21:51:25.450971-07:00,0.0,10.73306,10733.06 +31265,2025-03-10T21:51:36.186734-07:00,0.0,10.735763,10735.763 +31266,2025-03-10T21:51:46.919294-07:00,0.0,10.73256,10732.56 +31267,2025-03-10T21:51:57.655729-07:00,0.0,10.736435,10736.435 +31268,2025-03-10T21:52:08.394945-07:00,0.0,10.739216,10739.216 +31269,2025-03-10T21:52:19.123169-07:00,0.0,10.728224,10728.224 +31270,2025-03-10T21:52:29.858675-07:00,0.0,10.735506,10735.506 +31271,2025-03-10T21:52:40.589737-07:00,0.0,10.731062,10731.062 +31272,2025-03-10T21:52:51.316952-07:00,0.0,10.727215,10727.215 +31273,2025-03-10T21:53:02.055106-07:00,0.0,10.738154,10738.154 +31274,2025-03-10T21:53:12.791853-07:00,0.0,10.736747,10736.747 +31275,2025-03-10T21:53:23.522736-07:00,0.0,10.730883,10730.883 +31276,2025-03-10T21:53:34.287282-07:00,0.0,10.764546,10764.546 +31277,2025-03-10T21:53:45.024089-07:00,0.0,10.736807,10736.807 +31278,2025-03-10T21:53:55.757290-07:00,0.0,10.733201,10733.201 +31279,2025-03-10T21:54:06.498161-07:00,0.0,10.740871,10740.871 +31280,2025-03-10T21:54:17.229239-07:00,0.0,10.731078,10731.078 +31281,2025-03-10T21:54:27.961108-07:00,0.0,10.731869,10731.869 +31282,2025-03-10T21:54:38.699089-07:00,0.0,10.737981,10737.981 +31283,2025-03-10T21:54:49.426432-07:00,0.0,10.727343,10727.343 +31284,2025-03-10T21:55:00.168933-07:00,0.0,10.742501,10742.501 +31285,2025-03-10T21:55:10.891090-07:00,0.0,10.722157,10722.157 +31286,2025-03-10T21:55:21.630241-07:00,0.0,10.739151,10739.151 +31287,2025-03-10T21:55:32.368091-07:00,0.0,10.73785,10737.85 +31288,2025-03-10T21:55:43.101259-07:00,0.0,10.733168,10733.168 +31289,2025-03-10T21:55:53.832167-07:00,0.0,10.730908,10730.908 +31290,2025-03-10T21:56:04.565519-07:00,0.0,10.733352,10733.352 +31291,2025-03-10T21:56:15.292273-07:00,0.0,10.726754,10726.754 +31292,2025-03-10T21:56:26.028082-07:00,0.0,10.735809,10735.809 +31293,2025-03-10T21:56:36.760087-07:00,0.0,10.732005,10732.005 +31294,2025-03-10T21:56:47.490619-07:00,0.0,10.730532,10730.532 +31295,2025-03-10T21:56:58.215090-07:00,0.0,10.724471,10724.471 +31296,2025-03-10T21:57:08.955088-07:00,0.0,10.739998,10739.998 +31297,2025-03-10T21:57:19.680911-07:00,0.0,10.725823,10725.823 +31298,2025-03-10T21:57:30.411280-07:00,0.0,10.730369,10730.369 +31299,2025-03-10T21:57:41.141087-07:00,0.0,10.729807,10729.807 +31300,2025-03-10T21:57:51.870322-07:00,0.0,10.729235,10729.235 +31301,2025-03-10T21:58:02.612488-07:00,0.0,10.742166,10742.166 +31302,2025-03-10T21:58:13.340085-07:00,0.0,10.727597,10727.597 +31303,2025-03-10T21:58:24.072335-07:00,0.0,10.73225,10732.25 +31304,2025-03-10T21:58:34.801356-07:00,0.0,10.729021,10729.021 +31305,2025-03-10T21:58:45.534087-07:00,0.0,10.732731,10732.731 +31306,2025-03-10T21:58:56.262086-07:00,0.0,10.727999,10727.999 +31307,2025-03-10T21:59:06.999277-07:00,0.0,10.737191,10737.191 +31308,2025-03-10T21:59:17.726088-07:00,0.0,10.726811,10726.811 +31309,2025-03-10T21:59:28.456326-07:00,0.0,10.730238,10730.238 +31310,2025-03-10T21:59:39.188258-07:00,0.0,10.731932,10731.932 +31311,2025-03-10T21:59:49.922123-07:00,0.0,10.733865,10733.865 +31312,2025-03-10T22:00:00.644258-07:00,0.0,10.722135,10722.135 +31313,2025-03-10T22:00:11.379302-07:00,0.0,10.735044,10735.044 +31314,2025-03-10T22:00:22.115089-07:00,0.0,10.735787,10735.787 +31315,2025-03-10T22:00:32.845301-07:00,0.0,10.730212,10730.212 +31316,2025-03-10T22:00:43.584287-07:00,0.0,10.738986,10738.986 +31317,2025-03-10T22:00:54.309090-07:00,0.0,10.724803,10724.803 +31318,2025-03-10T22:01:05.044718-07:00,0.0,10.735628,10735.628 +31319,2025-03-10T22:01:15.780089-07:00,0.0,10.735371,10735.371 +31320,2025-03-10T22:01:26.518089-07:00,0.0,10.738,10738.0 +31321,2025-03-10T22:01:37.260257-07:00,0.0,10.742168,10742.168 +31322,2025-03-10T22:01:47.993218-07:00,0.0,10.732961,10732.961 +31323,2025-03-10T22:01:58.719125-07:00,0.0,10.725907,10725.907 +31324,2025-03-10T22:02:09.461506-07:00,0.0,10.742381,10742.381 +31325,2025-03-10T22:02:20.187087-07:00,0.0,10.725581,10725.581 +31326,2025-03-10T22:02:30.919124-07:00,0.0,10.732037,10732.037 +31327,2025-03-10T22:02:41.654191-07:00,0.0,10.735067,10735.067 +31328,2025-03-10T22:02:52.389258-07:00,0.0,10.735067,10735.067 +31329,2025-03-10T22:03:03.121089-07:00,0.0,10.731831,10731.831 +31330,2025-03-10T22:03:13.849083-07:00,0.0,10.727994,10727.994 +31331,2025-03-10T22:03:24.589285-07:00,0.0,10.740202,10740.202 +31332,2025-03-10T22:03:35.325523-07:00,0.0,10.736238,10736.238 +31333,2025-03-10T22:03:46.051089-07:00,0.0,10.725566,10725.566 +31334,2025-03-10T22:03:56.790286-07:00,0.0,10.739197,10739.197 +31335,2025-03-10T22:04:07.524169-07:00,0.0,10.733883,10733.883 +31336,2025-03-10T22:04:18.256112-07:00,0.0,10.731943,10731.943 +31337,2025-03-10T22:04:28.986105-07:00,0.0,10.729993,10729.993 +31338,2025-03-10T22:04:39.726186-07:00,0.0,10.740081,10740.081 +31339,2025-03-10T22:04:50.465302-07:00,0.0,10.739116,10739.116 +31340,2025-03-10T22:05:01.190083-07:00,0.0,10.724781,10724.781 +31341,2025-03-10T22:05:11.932085-07:00,0.0,10.742002,10742.002 +31342,2025-03-10T22:05:22.661191-07:00,0.0,10.729106,10729.106 +31343,2025-03-10T22:05:33.393270-07:00,0.0,10.732079,10732.079 +31344,2025-03-10T22:05:44.131087-07:00,0.0,10.737817,10737.817 +31345,2025-03-10T22:05:54.861112-07:00,0.0,10.730025,10730.025 +31346,2025-03-10T22:06:05.601284-07:00,0.0,10.740172,10740.172 +31347,2025-03-10T22:06:16.327088-07:00,0.0,10.725804,10725.804 +31348,2025-03-10T22:06:27.062116-07:00,0.0,10.735028,10735.028 +31349,2025-03-10T22:06:37.798159-07:00,0.0,10.736043,10736.043 +31350,2025-03-10T22:06:48.530265-07:00,0.0,10.732106,10732.106 +31351,2025-03-10T22:06:59.267250-07:00,0.0,10.736985,10736.985 +31352,2025-03-10T22:07:10.000165-07:00,0.0,10.732915,10732.915 +31353,2025-03-10T22:07:20.735087-07:00,0.0,10.734922,10734.922 +31354,2025-03-10T22:07:31.467294-07:00,0.0,10.732207,10732.207 +31355,2025-03-10T22:07:42.199305-07:00,0.0,10.732011,10732.011 +31356,2025-03-10T22:07:52.938237-07:00,0.0,10.738932,10738.932 +31357,2025-03-10T22:08:03.668142-07:00,0.0,10.729905,10729.905 +31358,2025-03-10T22:08:14.398862-07:00,0.0,10.73072,10730.72 +31359,2025-03-10T22:08:25.132091-07:00,0.0,10.733229,10733.229 +31360,2025-03-10T22:08:35.861555-07:00,0.0,10.729464,10729.464 +31361,2025-03-10T22:08:46.603272-07:00,0.0,10.741717,10741.717 +31362,2025-03-10T22:08:57.335279-07:00,0.0,10.732007,10732.007 +31363,2025-03-10T22:09:08.065115-07:00,0.0,10.729836,10729.836 +31364,2025-03-10T22:09:18.797087-07:00,0.0,10.731972,10731.972 +31365,2025-03-10T22:09:29.535270-07:00,0.0,10.738183,10738.183 +31366,2025-03-10T22:09:40.267082-07:00,0.0,10.731812,10731.812 +31367,2025-03-10T22:09:51.000536-07:00,0.0,10.733454,10733.454 +31368,2025-03-10T22:10:01.734269-07:00,0.0,10.733733,10733.733 +31369,2025-03-10T22:10:12.464121-07:00,0.0,10.729852,10729.852 +31370,2025-03-10T22:10:23.199158-07:00,0.0,10.735037,10735.037 +31371,2025-03-10T22:10:33.933092-07:00,0.0,10.733934,10733.934 +31372,2025-03-10T22:10:44.672212-07:00,0.0,10.73912,10739.12 +31373,2025-03-10T22:10:55.401091-07:00,0.0,10.728879,10728.879 +31374,2025-03-10T22:11:06.144084-07:00,0.0,10.742993,10742.993 +31375,2025-03-10T22:11:16.870092-07:00,0.0,10.726008,10726.008 +31376,2025-03-10T22:11:27.611542-07:00,0.0,10.74145,10741.45 +31377,2025-03-10T22:11:38.344102-07:00,0.0,10.73256,10732.56 +31378,2025-03-10T22:11:40.895491-07:00,269.0,2.551389,2551.389 +31379,2025-03-10T22:11:49.071085-07:00,304.0,8.175594,8175.594 +31380,2025-03-10T22:11:59.807092-07:00,401.0,10.736007,10736.007 +31381,2025-03-10T22:12:10.536930-07:00,336.0,10.729838,10729.838 +31382,2025-03-10T22:12:21.276088-07:00,237.0,10.739158,10739.158 +31383,2025-03-10T22:12:32.004091-07:00,383.0,10.728003,10728.003 +31384,2025-03-10T22:12:42.737478-07:00,432.0,10.733387,10733.387 +31385,2025-03-10T22:12:53.473088-07:00,401.0,10.73561,10735.61 +31386,2025-03-10T22:13:04.194174-07:00,423.0,10.721086,10721.086 +31387,2025-03-10T22:13:14.926639-07:00,309.0,10.732465,10732.465 +31388,2025-03-10T22:13:25.660998-07:00,425.0,10.734359,10734.359 +31389,2025-03-10T22:13:36.399088-07:00,246.0,10.73809,10738.09 +31390,2025-03-10T22:13:47.123541-07:00,319.0,10.724453,10724.453 +31391,2025-03-10T22:13:57.855113-07:00,395.0,10.731572,10731.572 +31392,2025-03-10T22:13:59.282483-07:00,0.0,1.42737,1427.37 +31393,2025-03-10T22:14:08.595086-07:00,0.0,9.312603,9312.603 +31394,2025-03-10T22:14:19.325091-07:00,0.0,10.730005,10730.005 +31395,2025-03-10T22:14:30.054511-07:00,0.0,10.72942,10729.42 +31396,2025-03-10T22:14:40.782087-07:00,0.0,10.727576,10727.576 +31397,2025-03-10T22:14:51.518089-07:00,0.0,10.736002,10736.002 +31398,2025-03-10T22:15:02.246289-07:00,0.0,10.7282,10728.2 +31399,2025-03-10T22:15:12.981244-07:00,0.0,10.734955,10734.955 +31400,2025-03-10T22:15:23.712300-07:00,0.0,10.731056,10731.056 +31401,2025-03-10T22:15:34.445181-07:00,0.0,10.732881,10732.881 +31402,2025-03-10T22:15:45.185290-07:00,0.0,10.740109,10740.109 +31403,2025-03-10T22:15:55.917216-07:00,0.0,10.731926,10731.926 +31404,2025-03-10T22:16:06.651118-07:00,0.0,10.733902,10733.902 +31405,2025-03-10T22:16:17.383516-07:00,0.0,10.732398,10732.398 +31406,2025-03-10T22:16:28.118619-07:00,0.0,10.735103,10735.103 +31407,2025-03-10T22:16:38.852597-07:00,0.0,10.733978,10733.978 +31408,2025-03-10T22:16:49.586158-07:00,0.0,10.733561,10733.561 +31409,2025-03-10T22:17:00.327084-07:00,0.0,10.740926,10740.926 +31410,2025-03-10T22:17:11.065277-07:00,0.0,10.738193,10738.193 +31411,2025-03-10T22:17:21.795131-07:00,0.0,10.729854,10729.854 +31412,2025-03-10T22:17:32.528251-07:00,0.0,10.73312,10733.12 +31413,2025-03-10T22:17:43.255272-07:00,0.0,10.727021,10727.021 +31414,2025-03-10T22:17:53.998498-07:00,0.0,10.743226,10743.226 +31415,2025-03-10T22:18:04.729243-07:00,0.0,10.730745,10730.745 +31416,2025-03-10T22:18:15.461161-07:00,0.0,10.731918,10731.918 +31417,2025-03-10T22:18:26.194272-07:00,0.0,10.733111,10733.111 +31418,2025-03-10T22:18:36.922122-07:00,0.0,10.72785,10727.85 +31419,2025-03-10T22:18:47.655300-07:00,0.0,10.733178,10733.178 +31420,2025-03-10T22:18:58.394272-07:00,0.0,10.738972,10738.972 +31421,2025-03-10T22:19:09.126823-07:00,0.0,10.732551,10732.551 +31422,2025-03-10T22:19:19.860086-07:00,0.0,10.733263,10733.263 +31423,2025-03-10T22:19:30.598294-07:00,0.0,10.738208,10738.208 +31424,2025-03-10T22:19:41.325307-07:00,0.0,10.727013,10727.013 +31425,2025-03-10T22:19:52.063278-07:00,0.0,10.737971,10737.971 +31426,2025-03-10T22:20:02.789299-07:00,0.0,10.726021,10726.021 +31427,2025-03-10T22:20:13.522340-07:00,0.0,10.733041,10733.041 +31428,2025-03-10T22:20:24.252085-07:00,0.0,10.729745,10729.745 +31429,2025-03-10T22:20:34.994247-07:00,0.0,10.742162,10742.162 +31430,2025-03-10T22:20:45.725091-07:00,0.0,10.730844,10730.844 +31431,2025-03-10T22:20:56.454272-07:00,0.0,10.729181,10729.181 +31432,2025-03-10T22:21:07.191272-07:00,0.0,10.737,10737.0 +31433,2025-03-10T22:21:17.921377-07:00,0.0,10.730105,10730.105 +31434,2025-03-10T22:21:28.652307-07:00,0.0,10.73093,10730.93 +31435,2025-03-10T22:21:39.385091-07:00,0.0,10.732784,10732.784 +31436,2025-03-10T22:21:50.119082-07:00,0.0,10.733991,10733.991 +31437,2025-03-10T22:22:00.842275-07:00,0.0,10.723193,10723.193 +31438,2025-03-10T22:22:11.576350-07:00,0.0,10.734075,10734.075 +31439,2025-03-10T22:22:22.315102-07:00,0.0,10.738752,10738.752 +31440,2025-03-10T22:22:33.042680-07:00,0.0,10.727578,10727.578 +31441,2025-03-10T22:22:43.773284-07:00,0.0,10.730604,10730.604 +31442,2025-03-10T22:22:54.505091-07:00,0.0,10.731807,10731.807 +31443,2025-03-10T22:23:05.237114-07:00,0.0,10.732023,10732.023 +31444,2025-03-10T22:23:15.966286-07:00,0.0,10.729172,10729.172 +31445,2025-03-10T22:23:26.698453-07:00,0.0,10.732167,10732.167 +31446,2025-03-10T22:23:37.436145-07:00,0.0,10.737692,10737.692 +31447,2025-03-10T22:23:48.169528-07:00,0.0,10.733383,10733.383 +31448,2025-03-10T22:23:58.901448-07:00,0.0,10.73192,10731.92 +31449,2025-03-10T22:24:09.636328-07:00,0.0,10.73488,10734.88 +31450,2025-03-10T22:24:20.380174-07:00,0.0,10.743846,10743.846 +31451,2025-03-10T22:24:31.111090-07:00,0.0,10.730916,10730.916 +31452,2025-03-10T22:24:41.853095-07:00,0.0,10.742005,10742.005 +31453,2025-03-10T22:24:52.581491-07:00,0.0,10.728396,10728.396 +31454,2025-03-10T22:25:03.319097-07:00,0.0,10.737606,10737.606 +31455,2025-03-10T22:25:14.057170-07:00,0.0,10.738073,10738.073 +31456,2025-03-10T22:25:24.792268-07:00,0.0,10.735098,10735.098 +31457,2025-03-10T22:25:35.531296-07:00,0.0,10.739028,10739.028 +31458,2025-03-10T22:25:46.272523-07:00,0.0,10.741227,10741.227 +31459,2025-03-10T22:25:57.004163-07:00,0.0,10.73164,10731.64 +31460,2025-03-10T22:26:07.747090-07:00,0.0,10.742927,10742.927 +31461,2025-03-10T22:26:18.477178-07:00,0.0,10.730088,10730.088 +31462,2025-03-10T22:26:29.209909-07:00,0.0,10.732731,10732.731 +31463,2025-03-10T22:26:39.947158-07:00,0.0,10.737249,10737.249 +31464,2025-03-10T22:26:50.681144-07:00,0.0,10.733986,10733.986 +31465,2025-03-10T22:27:01.425255-07:00,0.0,10.744111,10744.111 +31466,2025-03-10T22:27:12.159267-07:00,0.0,10.734012,10734.012 +31467,2025-03-10T22:27:22.894087-07:00,0.0,10.73482,10734.82 +31468,2025-03-10T22:27:33.624085-07:00,0.0,10.729998,10729.998 +31469,2025-03-10T22:27:44.362581-07:00,0.0,10.738496,10738.496 +31470,2025-03-10T22:27:55.098665-07:00,0.0,10.736084,10736.084 +31471,2025-03-10T22:28:05.830119-07:00,0.0,10.731454,10731.454 +31472,2025-03-10T22:28:16.561293-07:00,0.0,10.731174,10731.174 +31473,2025-03-10T22:28:27.294274-07:00,0.0,10.732981,10732.981 +31474,2025-03-10T22:28:38.034499-07:00,0.0,10.740225,10740.225 +31475,2025-03-10T22:28:48.765085-07:00,0.0,10.730586,10730.586 +31476,2025-03-10T22:28:59.503305-07:00,0.0,10.73822,10738.22 +31477,2025-03-10T22:29:10.237090-07:00,0.0,10.733785,10733.785 +31478,2025-03-10T22:29:20.974862-07:00,0.0,10.737772,10737.772 +31479,2025-03-10T22:29:31.710089-07:00,0.0,10.735227,10735.227 +31480,2025-03-10T22:29:42.442372-07:00,0.0,10.732283,10732.283 +31481,2025-03-10T22:29:53.176438-07:00,0.0,10.734066,10734.066 +31482,2025-03-10T22:30:03.910180-07:00,0.0,10.733742,10733.742 +31483,2025-03-10T22:30:14.653089-07:00,0.0,10.742909,10742.909 +31484,2025-03-10T22:30:25.385462-07:00,0.0,10.732373,10732.373 +31485,2025-03-10T22:30:36.111161-07:00,0.0,10.725699,10725.699 +31486,2025-03-10T22:30:46.857250-07:00,0.0,10.746089,10746.089 +31487,2025-03-10T22:30:57.584087-07:00,0.0,10.726837,10726.837 +31488,2025-03-10T22:31:08.318298-07:00,0.0,10.734211,10734.211 +31489,2025-03-10T22:31:19.046248-07:00,0.0,10.72795,10727.95 +31490,2025-03-10T22:31:29.783379-07:00,0.0,10.737131,10737.131 +31491,2025-03-10T22:31:40.515083-07:00,0.0,10.731704,10731.704 +31492,2025-03-10T22:31:51.247154-07:00,0.0,10.732071,10732.071 +31493,2025-03-10T22:32:01.983273-07:00,0.0,10.736119,10736.119 +31494,2025-03-10T22:32:12.722349-07:00,0.0,10.739076,10739.076 +31495,2025-03-10T22:32:23.458087-07:00,0.0,10.735738,10735.738 +31496,2025-03-10T22:32:34.191499-07:00,0.0,10.733412,10733.412 +31497,2025-03-10T22:32:44.918422-07:00,0.0,10.726923,10726.923 +31498,2025-03-10T22:32:55.658089-07:00,0.0,10.739667,10739.667 +31499,2025-03-10T22:33:06.391087-07:00,0.0,10.732998,10732.998 +31500,2025-03-10T22:33:17.128118-07:00,0.0,10.737031,10737.031 +31501,2025-03-10T22:33:27.861258-07:00,0.0,10.73314,10733.14 +31502,2025-03-10T22:33:38.596226-07:00,0.0,10.734968,10734.968 +31503,2025-03-10T22:33:49.330312-07:00,0.0,10.734086,10734.086 +31504,2025-03-10T22:34:00.063300-07:00,0.0,10.732988,10732.988 +31505,2025-03-10T22:34:10.790295-07:00,0.0,10.726995,10726.995 +31506,2025-03-10T22:34:21.528249-07:00,0.0,10.737954,10737.954 +31507,2025-03-10T22:34:32.262301-07:00,0.0,10.734052,10734.052 +31508,2025-03-10T22:34:42.995521-07:00,0.0,10.73322,10733.22 +31509,2025-03-10T22:34:53.733916-07:00,0.0,10.738395,10738.395 +31510,2025-03-10T22:35:04.470091-07:00,0.0,10.736175,10736.175 +31511,2025-03-10T22:35:15.196263-07:00,0.0,10.726172,10726.172 +31512,2025-03-10T22:35:25.925411-07:00,0.0,10.729148,10729.148 +31513,2025-03-10T22:35:36.657090-07:00,0.0,10.731679,10731.679 +31514,2025-03-10T22:35:47.389311-07:00,0.0,10.732221,10732.221 +31515,2025-03-10T22:35:58.121300-07:00,0.0,10.731989,10731.989 +31516,2025-03-10T22:36:08.860416-07:00,0.0,10.739116,10739.116 +31517,2025-03-10T22:36:19.585080-07:00,0.0,10.724664,10724.664 +31518,2025-03-10T22:36:30.329096-07:00,0.0,10.744016,10744.016 +31519,2025-03-10T22:36:41.061400-07:00,0.0,10.732304,10732.304 +31520,2025-03-10T22:36:51.795084-07:00,0.0,10.733684,10733.684 +31521,2025-03-10T22:37:02.530084-07:00,0.0,10.735,10735.0 +31522,2025-03-10T22:37:13.263084-07:00,0.0,10.733,10733.0 +31523,2025-03-10T22:37:23.994784-07:00,0.0,10.7317,10731.7 +31524,2025-03-10T22:37:34.725088-07:00,0.0,10.730304,10730.304 +31525,2025-03-10T22:37:45.461203-07:00,0.0,10.736115,10736.115 +31526,2025-03-10T22:37:56.200282-07:00,0.0,10.739079,10739.079 +31527,2025-03-10T22:38:06.930087-07:00,0.0,10.729805,10729.805 +31528,2025-03-10T22:38:17.662087-07:00,0.0,10.732,10732.0 +31529,2025-03-10T22:38:28.395087-07:00,0.0,10.733,10733.0 +31530,2025-03-10T22:38:39.129462-07:00,0.0,10.734375,10734.375 +31531,2025-03-10T22:38:49.866311-07:00,0.0,10.736849,10736.849 +31532,2025-03-10T22:39:00.598377-07:00,0.0,10.732066,10732.066 +31533,2025-03-10T22:39:11.327297-07:00,0.0,10.72892,10728.92 +31534,2025-03-10T22:39:22.057195-07:00,0.0,10.729898,10729.898 +31535,2025-03-10T22:39:32.797240-07:00,0.0,10.740045,10740.045 +31536,2025-03-10T22:39:43.525091-07:00,0.0,10.727851,10727.851 +31537,2025-03-10T22:39:54.262267-07:00,0.0,10.737176,10737.176 +31538,2025-03-10T22:40:04.992087-07:00,0.0,10.72982,10729.82 +31539,2025-03-10T22:40:15.736685-07:00,0.0,10.744598,10744.598 +31540,2025-03-10T22:40:26.459279-07:00,0.0,10.722594,10722.594 +31541,2025-03-10T22:40:37.193648-07:00,0.0,10.734369,10734.369 +31542,2025-03-10T22:40:47.929082-07:00,0.0,10.735434,10735.434 +31543,2025-03-10T22:40:58.656085-07:00,0.0,10.727003,10727.003 +31544,2025-03-10T22:41:09.390495-07:00,0.0,10.73441,10734.41 +31545,2025-03-10T22:41:20.125089-07:00,0.0,10.734594,10734.594 +31546,2025-03-10T22:41:30.861295-07:00,0.0,10.736206,10736.206 +31547,2025-03-10T22:41:41.586708-07:00,0.0,10.725413,10725.413 +31548,2025-03-10T22:41:52.314245-07:00,0.0,10.727537,10727.537 +31549,2025-03-10T22:42:03.056160-07:00,0.0,10.741915,10741.915 +31550,2025-03-10T22:42:24.517478-07:00,0.0,21.461318,21461.318 +31551,2025-03-10T22:42:35.249086-07:00,0.0,10.731608,10731.608 +31552,2025-03-10T22:42:45.981093-07:00,0.0,10.732007,10732.007 +31553,2025-03-10T22:42:56.708306-07:00,0.0,10.727213,10727.213 +31554,2025-03-10T22:43:07.443123-07:00,0.0,10.734817,10734.817 +31555,2025-03-10T22:43:18.176294-07:00,0.0,10.733171,10733.171 +31556,2025-03-10T22:43:28.914493-07:00,0.0,10.738199,10738.199 +31557,2025-03-10T22:43:39.639111-07:00,0.0,10.724618,10724.618 +31558,2025-03-10T22:43:50.372090-07:00,0.0,10.732979,10732.979 +31559,2025-03-10T22:44:01.111185-07:00,0.0,10.739095,10739.095 +31560,2025-03-10T22:44:11.841375-07:00,0.0,10.73019,10730.19 +31561,2025-03-10T22:44:22.571156-07:00,0.0,10.729781,10729.781 +31562,2025-03-10T22:44:33.310117-07:00,0.0,10.738961,10738.961 +31563,2025-03-10T22:44:44.035255-07:00,0.0,10.725138,10725.138 +31564,2025-03-10T22:44:54.775193-07:00,0.0,10.739938,10739.938 +31565,2025-03-10T22:45:05.505236-07:00,0.0,10.730043,10730.043 +31566,2025-03-10T22:45:16.230320-07:00,0.0,10.725084,10725.084 +31567,2025-03-10T22:45:26.969270-07:00,0.0,10.73895,10738.95 +31568,2025-03-10T22:45:37.693139-07:00,0.0,10.723869,10723.869 +31569,2025-03-10T22:45:48.423325-07:00,0.0,10.730186,10730.186 +31570,2025-03-10T22:45:59.163184-07:00,0.0,10.739859,10739.859 +31571,2025-03-10T22:46:09.889090-07:00,0.0,10.725906,10725.906 +31572,2025-03-10T22:46:20.623280-07:00,0.0,10.73419,10734.19 +31573,2025-03-10T22:46:31.353282-07:00,0.0,10.730002,10730.002 +31574,2025-03-10T22:46:42.084295-07:00,0.0,10.731013,10731.013 +31575,2025-03-10T22:46:52.818087-07:00,0.0,10.733792,10733.792 +31576,2025-03-10T22:47:03.548289-07:00,0.0,10.730202,10730.202 +31577,2025-03-10T22:47:14.283115-07:00,0.0,10.734826,10734.826 +31578,2025-03-10T22:47:25.007276-07:00,0.0,10.724161,10724.161 +31579,2025-03-10T22:47:35.740524-07:00,0.0,10.733248,10733.248 +31580,2025-03-10T22:47:46.477086-07:00,0.0,10.736562,10736.562 +31581,2025-03-10T22:47:57.206168-07:00,0.0,10.729082,10729.082 +31582,2025-03-10T22:48:07.940123-07:00,0.0,10.733955,10733.955 +31583,2025-03-10T22:48:18.664295-07:00,0.0,10.724172,10724.172 +31584,2025-03-10T22:48:29.402121-07:00,0.0,10.737826,10737.826 +31585,2025-03-10T22:48:40.130464-07:00,0.0,10.728343,10728.343 +31586,2025-03-10T22:48:50.858092-07:00,0.0,10.727628,10727.628 +31587,2025-03-10T22:49:01.587088-07:00,0.0,10.728996,10728.996 +31588,2025-03-10T22:49:12.323094-07:00,0.0,10.736006,10736.006 +31589,2025-03-10T22:49:23.047389-07:00,0.0,10.724295,10724.295 +31590,2025-03-10T22:49:33.779099-07:00,0.0,10.73171,10731.71 +31591,2025-03-10T22:49:44.513324-07:00,0.0,10.734225,10734.225 +31592,2025-03-10T22:49:55.245855-07:00,0.0,10.732531,10732.531 +31593,2025-03-10T22:50:05.974248-07:00,0.0,10.728393,10728.393 +31594,2025-03-10T22:50:16.701895-07:00,0.0,10.727647,10727.647 +31595,2025-03-10T22:50:27.431112-07:00,0.0,10.729217,10729.217 +31596,2025-03-10T22:50:38.167232-07:00,0.0,10.73612,10736.12 +31597,2025-03-10T22:50:48.893336-07:00,0.0,10.726104,10726.104 +31598,2025-03-10T22:50:59.625213-07:00,0.0,10.731877,10731.877 +31599,2025-03-10T22:51:10.358293-07:00,0.0,10.73308,10733.08 +31600,2025-03-10T22:51:21.088167-07:00,0.0,10.729874,10729.874 +31601,2025-03-10T22:51:31.814115-07:00,0.0,10.725948,10725.948 +31602,2025-03-10T22:51:42.544438-07:00,0.0,10.730323,10730.323 +31603,2025-03-10T22:51:53.275137-07:00,0.0,10.730699,10730.699 +31604,2025-03-10T22:52:04.008825-07:00,0.0,10.733688,10733.688 +31605,2025-03-10T22:52:14.740088-07:00,0.0,10.731263,10731.263 +31606,2025-03-10T22:52:25.473085-07:00,0.0,10.732997,10732.997 +31607,2025-03-10T22:52:36.201861-07:00,0.0,10.728776,10728.776 +31608,2025-03-10T22:52:46.934089-07:00,0.0,10.732228,10732.228 +31609,2025-03-10T22:52:57.656774-07:00,0.0,10.722685,10722.685 +31610,2025-03-10T22:53:08.398276-07:00,0.0,10.741502,10741.502 +31611,2025-03-10T22:53:19.125086-07:00,0.0,10.72681,10726.81 +31612,2025-03-10T22:53:29.858091-07:00,0.0,10.733005,10733.005 +31613,2025-03-10T22:53:40.616082-07:00,0.0,10.757991,10757.991 +31614,2025-03-10T22:53:51.350038-07:00,0.0,10.733956,10733.956 +31615,2025-03-10T22:54:02.086899-07:00,0.0,10.736861,10736.861 +31616,2025-03-10T22:54:12.820256-07:00,0.0,10.733357,10733.357 +31617,2025-03-10T22:54:23.546829-07:00,0.0,10.726573,10726.573 +31618,2025-03-10T22:54:34.283029-07:00,0.0,10.7362,10736.2 +31619,2025-03-10T22:54:45.005508-07:00,0.0,10.722479,10722.479 +31620,2025-03-10T22:54:55.730829-07:00,0.0,10.725321,10725.321 +31621,2025-03-10T22:55:06.459015-07:00,0.0,10.728186,10728.186 +31622,2025-03-10T22:55:17.189644-07:00,0.0,10.730629,10730.629 +31623,2025-03-10T22:55:27.927893-07:00,0.0,10.738249,10738.249 +31624,2025-03-10T22:55:38.656133-07:00,0.0,10.72824,10728.24 +31625,2025-03-10T22:55:49.390066-07:00,0.0,10.733933,10733.933 +31626,2025-03-10T22:56:00.116941-07:00,0.0,10.726875,10726.875 +31627,2025-03-10T22:56:10.844028-07:00,0.0,10.727087,10727.087 +31628,2025-03-10T22:56:21.579100-07:00,0.0,10.735072,10735.072 +31629,2025-03-10T22:56:32.304833-07:00,0.0,10.725733,10725.733 +31630,2025-03-10T22:56:43.031974-07:00,0.0,10.727141,10727.141 +31631,2025-03-10T22:56:53.764013-07:00,0.0,10.732039,10732.039 +31632,2025-03-10T22:57:04.500826-07:00,0.0,10.736813,10736.813 +31633,2025-03-10T22:57:15.235884-07:00,0.0,10.735058,10735.058 +31634,2025-03-10T22:57:25.965495-07:00,0.0,10.729611,10729.611 +31635,2025-03-10T22:57:36.703009-07:00,0.0,10.737514,10737.514 +31636,2025-03-10T22:57:47.432833-07:00,0.0,10.729824,10729.824 +31637,2025-03-10T22:57:58.162895-07:00,0.0,10.730062,10730.062 +31638,2025-03-10T22:58:08.896000-07:00,0.0,10.733105,10733.105 +31639,2025-03-10T22:58:19.626040-07:00,0.0,10.73004,10730.04 +31640,2025-03-10T22:58:30.353030-07:00,0.0,10.72699,10726.99 +31641,2025-03-10T22:58:41.083811-07:00,0.0,10.730781,10730.781 +31642,2025-03-10T22:58:51.818016-07:00,0.0,10.734205,10734.205 +31643,2025-03-10T22:59:02.549832-07:00,0.0,10.731816,10731.816 +31644,2025-03-10T22:59:13.283241-07:00,0.0,10.733409,10733.409 +31645,2025-03-10T22:59:24.009861-07:00,0.0,10.72662,10726.62 +31646,2025-03-10T22:59:34.740920-07:00,0.0,10.731059,10731.059 +31647,2025-03-10T22:59:45.476894-07:00,0.0,10.735974,10735.974 +31648,2025-03-10T22:59:56.214221-07:00,0.0,10.737327,10737.327 +31649,2025-03-10T23:00:06.935832-07:00,0.0,10.721611,10721.611 +31650,2025-03-10T23:00:17.669834-07:00,0.0,10.734002,10734.002 +31651,2025-03-10T23:00:28.403144-07:00,0.0,10.73331,10733.31 +31652,2025-03-10T23:00:39.125043-07:00,0.0,10.721899,10721.899 +31653,2025-03-10T23:00:49.855007-07:00,0.0,10.729964,10729.964 +31654,2025-03-10T23:01:00.585907-07:00,0.0,10.7309,10730.9 +31655,2025-03-10T23:01:11.316834-07:00,0.0,10.730927,10730.927 +31656,2025-03-10T23:01:22.048035-07:00,0.0,10.731201,10731.201 +31657,2025-03-10T23:01:32.777219-07:00,0.0,10.729184,10729.184 +31658,2025-03-10T23:01:43.513860-07:00,0.0,10.736641,10736.641 +31659,2025-03-10T23:01:54.246234-07:00,0.0,10.732374,10732.374 +31660,2025-03-10T23:02:04.976226-07:00,0.0,10.729992,10729.992 +31661,2025-03-10T23:02:15.700824-07:00,0.0,10.724598,10724.598 +31662,2025-03-10T23:02:26.435830-07:00,0.0,10.735006,10735.006 +31663,2025-03-10T23:02:37.166861-07:00,0.0,10.731031,10731.031 +31664,2025-03-10T23:02:47.902122-07:00,0.0,10.735261,10735.261 +31665,2025-03-10T23:02:58.639833-07:00,0.0,10.737711,10737.711 +31666,2025-03-10T23:03:09.366000-07:00,0.0,10.726167,10726.167 +31667,2025-03-10T23:03:20.091829-07:00,0.0,10.725829,10725.829 +31668,2025-03-10T23:03:30.823832-07:00,0.0,10.732003,10732.003 +31669,2025-03-10T23:03:41.556239-07:00,0.0,10.732407,10732.407 +31670,2025-03-10T23:03:52.284892-07:00,0.0,10.728653,10728.653 +31671,2025-03-10T23:04:03.013038-07:00,0.0,10.728146,10728.146 +31672,2025-03-10T23:04:13.738103-07:00,0.0,10.725065,10725.065 +31673,2025-03-10T23:04:24.473960-07:00,0.0,10.735857,10735.857 +31674,2025-03-10T23:04:35.201866-07:00,0.0,10.727906,10727.906 +31675,2025-03-10T23:04:45.939018-07:00,0.0,10.737152,10737.152 +31676,2025-03-10T23:04:56.661831-07:00,0.0,10.722813,10722.813 +31677,2025-03-10T23:05:07.402859-07:00,0.0,10.741028,10741.028 +31678,2025-03-10T23:05:18.128020-07:00,0.0,10.725161,10725.161 +31679,2025-03-10T23:05:28.864029-07:00,0.0,10.736009,10736.009 +31680,2025-03-10T23:05:39.582855-07:00,0.0,10.718826,10718.826 +31681,2025-03-10T23:05:50.319062-07:00,0.0,10.736207,10736.207 +31682,2025-03-10T23:06:01.049259-07:00,0.0,10.730197,10730.197 +31683,2025-03-10T23:06:11.791889-07:00,0.0,10.74263,10742.63 +31684,2025-03-10T23:06:22.523012-07:00,0.0,10.731123,10731.123 +31685,2025-03-10T23:06:33.249830-07:00,0.0,10.726818,10726.818 +31686,2025-03-10T23:06:43.992827-07:00,0.0,10.742997,10742.997 +31687,2025-03-10T23:06:54.717860-07:00,0.0,10.725033,10725.033 +31688,2025-03-10T23:07:05.458007-07:00,0.0,10.740147,10740.147 +31689,2025-03-10T23:07:16.180830-07:00,0.0,10.722823,10722.823 +31690,2025-03-10T23:07:26.911012-07:00,0.0,10.730182,10730.182 +31691,2025-03-10T23:07:37.646344-07:00,0.0,10.735332,10735.332 +31692,2025-03-10T23:07:48.387933-07:00,0.0,10.741589,10741.589 +31693,2025-03-10T23:07:59.112895-07:00,0.0,10.724962,10724.962 +31694,2025-03-10T23:08:09.842862-07:00,0.0,10.729967,10729.967 +31695,2025-03-10T23:08:20.576659-07:00,0.0,10.733797,10733.797 +31696,2025-03-10T23:08:31.313635-07:00,0.0,10.736976,10736.976 +31697,2025-03-10T23:08:42.054046-07:00,0.0,10.740411,10740.411 +31698,2025-03-10T23:08:52.789064-07:00,0.0,10.735018,10735.018 +31699,2025-03-10T23:09:03.516647-07:00,0.0,10.727583,10727.583 +31700,2025-03-10T23:09:14.250824-07:00,0.0,10.734177,10734.177 +31701,2025-03-10T23:09:24.984828-07:00,0.0,10.734004,10734.004 +31702,2025-03-10T23:09:35.715973-07:00,0.0,10.731145,10731.145 +31703,2025-03-10T23:09:46.448831-07:00,0.0,10.732858,10732.858 +31704,2025-03-10T23:09:57.183829-07:00,0.0,10.734998,10734.998 +31705,2025-03-10T23:10:07.922946-07:00,0.0,10.739117,10739.117 +31706,2025-03-10T23:10:18.659387-07:00,0.0,10.736441,10736.441 +31707,2025-03-10T23:10:29.388835-07:00,0.0,10.729448,10729.448 +31708,2025-03-10T23:10:40.127824-07:00,0.0,10.738989,10738.989 +31709,2025-03-10T23:10:50.855834-07:00,0.0,10.72801,10728.01 +31710,2025-03-10T23:11:01.591241-07:00,0.0,10.735407,10735.407 +31711,2025-03-10T23:11:12.318890-07:00,0.0,10.727649,10727.649 +31712,2025-03-10T23:11:23.054914-07:00,0.0,10.736024,10736.024 +31713,2025-03-10T23:11:33.780224-07:00,0.0,10.72531,10725.31 +31714,2025-03-10T23:11:44.520989-07:00,0.0,10.740765,10740.765 +31715,2025-03-10T23:11:55.244831-07:00,0.0,10.723842,10723.842 +31716,2025-03-10T23:12:05.981864-07:00,0.0,10.737033,10737.033 +31717,2025-03-10T23:12:16.723013-07:00,0.0,10.741149,10741.149 +31718,2025-03-10T23:12:27.450827-07:00,0.0,10.727814,10727.814 +31719,2025-03-10T23:12:38.187037-07:00,0.0,10.73621,10736.21 +31720,2025-03-10T23:12:48.909794-07:00,0.0,10.722757,10722.757 +31721,2025-03-10T23:12:59.651826-07:00,0.0,10.742032,10742.032 +31722,2025-03-10T23:13:10.379018-07:00,0.0,10.727192,10727.192 +31723,2025-03-10T23:13:21.116926-07:00,0.0,10.737908,10737.908 +31724,2025-03-10T23:13:31.842853-07:00,0.0,10.725927,10725.927 +31725,2025-03-10T23:13:42.583921-07:00,0.0,10.741068,10741.068 +31726,2025-03-10T23:13:53.314928-07:00,0.0,10.731007,10731.007 +31727,2025-03-10T23:14:04.044020-07:00,0.0,10.729092,10729.092 +31728,2025-03-10T23:14:14.773361-07:00,0.0,10.729341,10729.341 +31729,2025-03-10T23:14:25.516829-07:00,0.0,10.743468,10743.468 +31730,2025-03-10T23:14:36.247827-07:00,0.0,10.730998,10730.998 +31731,2025-03-10T23:14:46.985966-07:00,0.0,10.738139,10738.139 +31732,2025-03-10T23:14:57.710831-07:00,0.0,10.724865,10724.865 +31733,2025-03-10T23:15:08.450047-07:00,0.0,10.739216,10739.216 +31734,2025-03-10T23:15:19.184859-07:00,0.0,10.734812,10734.812 +31735,2025-03-10T23:15:29.918221-07:00,0.0,10.733362,10733.362 +31736,2025-03-10T23:15:40.650830-07:00,0.0,10.732609,10732.609 +31737,2025-03-10T23:15:51.392201-07:00,0.0,10.741371,10741.371 +31738,2025-03-10T23:16:02.116984-07:00,0.0,10.724783,10724.783 +31739,2025-03-10T23:16:23.595965-07:00,0.0,21.478981,21478.981 +31740,2025-03-10T23:16:34.332127-07:00,0.0,10.736162,10736.162 +31741,2025-03-10T23:16:45.065047-07:00,0.0,10.73292,10732.92 +31742,2025-03-10T23:16:55.809219-07:00,0.0,10.744172,10744.172 +31743,2025-03-10T23:17:06.536830-07:00,0.0,10.727611,10727.611 +31744,2025-03-10T23:17:17.274832-07:00,0.0,10.738002,10738.002 +31745,2025-03-10T23:17:28.013831-07:00,0.0,10.738999,10738.999 +31746,2025-03-10T23:17:38.742025-07:00,0.0,10.728194,10728.194 +31747,2025-03-10T23:17:49.477889-07:00,0.0,10.735864,10735.864 +31748,2025-03-10T23:18:00.203830-07:00,0.0,10.725941,10725.941 +31749,2025-03-10T23:18:10.939073-07:00,0.0,10.735243,10735.243 +31750,2025-03-10T23:18:21.677004-07:00,0.0,10.737931,10737.931 +31751,2025-03-10T23:18:32.403035-07:00,0.0,10.726031,10726.031 +31752,2025-03-10T23:18:43.133583-07:00,0.0,10.730548,10730.548 +31753,2025-03-10T23:18:53.864679-07:00,0.0,10.731096,10731.096 +31754,2025-03-10T23:19:04.599830-07:00,0.0,10.735151,10735.151 +31755,2025-03-10T23:19:15.333833-07:00,0.0,10.734003,10734.003 +31756,2025-03-10T23:19:26.063025-07:00,0.0,10.729192,10729.192 +31757,2025-03-10T23:19:36.806010-07:00,0.0,10.742985,10742.985 +31758,2025-03-10T23:19:47.533983-07:00,0.0,10.727973,10727.973 +31759,2025-03-10T23:19:58.266827-07:00,0.0,10.732844,10732.844 +31760,2025-03-10T23:20:08.999242-07:00,0.0,10.732415,10732.415 +31761,2025-03-10T23:20:19.725893-07:00,0.0,10.726651,10726.651 +31762,2025-03-10T23:20:30.467044-07:00,0.0,10.741151,10741.151 +31763,2025-03-10T23:20:41.193019-07:00,0.0,10.725975,10725.975 +31764,2025-03-10T23:20:51.930940-07:00,0.0,10.737921,10737.921 +31765,2025-03-10T23:21:02.657826-07:00,0.0,10.726886,10726.886 +31766,2025-03-10T23:21:13.395827-07:00,0.0,10.738001,10738.001 +31767,2025-03-10T23:21:24.127999-07:00,0.0,10.732172,10732.172 +31768,2025-03-10T23:21:34.857017-07:00,0.0,10.729018,10729.018 +31769,2025-03-10T23:21:45.592038-07:00,0.0,10.735021,10735.021 +31770,2025-03-10T23:21:56.330039-07:00,0.0,10.738001,10738.001 +31771,2025-03-10T23:22:07.064034-07:00,0.0,10.733995,10733.995 +31772,2025-03-10T23:22:17.796829-07:00,0.0,10.732795,10732.795 +31773,2025-03-10T23:22:28.532832-07:00,0.0,10.736003,10736.003 +31774,2025-03-10T23:22:39.263071-07:00,0.0,10.730239,10730.239 +31775,2025-03-10T23:22:49.997858-07:00,0.0,10.734787,10734.787 +31776,2025-03-10T23:23:00.725985-07:00,0.0,10.728127,10728.127 +31777,2025-03-10T23:23:11.467838-07:00,0.0,10.741853,10741.853 +31778,2025-03-10T23:23:22.197016-07:00,0.0,10.729178,10729.178 +31779,2025-03-10T23:23:32.925829-07:00,0.0,10.728813,10728.813 +31780,2025-03-10T23:23:43.668054-07:00,0.0,10.742225,10742.225 +31781,2025-03-10T23:23:54.402894-07:00,0.0,10.73484,10734.84 +31782,2025-03-10T23:24:05.138206-07:00,0.0,10.735312,10735.312 +31783,2025-03-10T23:24:15.868887-07:00,0.0,10.730681,10730.681 +31784,2025-03-10T23:24:26.603834-07:00,0.0,10.734947,10734.947 +31785,2025-03-10T23:24:37.328026-07:00,0.0,10.724192,10724.192 +31786,2025-03-10T23:24:48.061363-07:00,0.0,10.733337,10733.337 +31787,2025-03-10T23:24:58.803904-07:00,0.0,10.742541,10742.541 +31788,2025-03-10T23:25:09.537833-07:00,0.0,10.733929,10733.929 +31789,2025-03-10T23:25:20.269222-07:00,0.0,10.731389,10731.389 +31790,2025-03-10T23:25:31.005275-07:00,0.0,10.736053,10736.053 +31791,2025-03-10T23:25:41.728880-07:00,0.0,10.723605,10723.605 +31792,2025-03-10T23:25:52.473566-07:00,0.0,10.744686,10744.686 +31793,2025-03-10T23:26:03.201849-07:00,0.0,10.728283,10728.283 +31794,2025-03-10T23:26:13.943831-07:00,0.0,10.741982,10741.982 +31795,2025-03-10T23:26:24.671855-07:00,0.0,10.728024,10728.024 +31796,2025-03-10T23:26:35.403852-07:00,0.0,10.731997,10731.997 +31797,2025-03-10T23:26:46.138075-07:00,0.0,10.734223,10734.223 +31798,2025-03-10T23:26:56.877827-07:00,0.0,10.739752,10739.752 +31799,2025-03-10T23:27:07.609829-07:00,0.0,10.732002,10732.002 +31800,2025-03-10T23:27:18.337221-07:00,0.0,10.727392,10727.392 +31801,2025-03-10T23:27:29.070067-07:00,0.0,10.732846,10732.846 +31802,2025-03-10T23:27:39.812123-07:00,0.0,10.742056,10742.056 +31803,2025-03-10T23:27:50.537832-07:00,0.0,10.725709,10725.709 +31804,2025-03-10T23:28:01.269054-07:00,0.0,10.731222,10731.222 +31805,2025-03-10T23:28:11.999829-07:00,0.0,10.730775,10730.775 +31806,2025-03-10T23:28:22.734060-07:00,0.0,10.734231,10734.231 +31807,2025-03-10T23:28:33.462701-07:00,0.0,10.728641,10728.641 +31808,2025-03-10T23:28:44.198048-07:00,0.0,10.735347,10735.347 +31809,2025-03-10T23:28:54.931979-07:00,0.0,10.733931,10733.931 +31810,2025-03-10T23:29:05.665857-07:00,0.0,10.733878,10733.878 +31811,2025-03-10T23:29:16.399892-07:00,0.0,10.734035,10734.035 +31812,2025-03-10T23:29:27.130827-07:00,0.0,10.730935,10730.935 +31813,2025-03-10T23:29:37.860037-07:00,0.0,10.72921,10729.21 +31814,2025-03-10T23:29:48.597022-07:00,0.0,10.736985,10736.985 +31815,2025-03-10T23:29:59.326829-07:00,0.0,10.729807,10729.807 +31816,2025-03-10T23:30:10.063072-07:00,0.0,10.736243,10736.243 +31817,2025-03-10T23:30:20.794845-07:00,0.0,10.731773,10731.773 +31818,2025-03-10T23:30:31.528028-07:00,0.0,10.733183,10733.183 +31819,2025-03-10T23:30:42.265861-07:00,0.0,10.737833,10737.833 +31820,2025-03-10T23:30:52.998997-07:00,0.0,10.733136,10733.136 +31821,2025-03-10T23:31:03.727016-07:00,0.0,10.728019,10728.019 +31822,2025-03-10T23:31:14.456903-07:00,0.0,10.729887,10729.887 +31823,2025-03-10T23:31:25.194028-07:00,0.0,10.737125,10737.125 +31824,2025-03-10T23:31:35.921015-07:00,0.0,10.726987,10726.987 +31825,2025-03-10T23:31:46.655048-07:00,0.0,10.734033,10734.033 +31826,2025-03-10T23:31:57.381124-07:00,0.0,10.726076,10726.076 +31827,2025-03-10T23:32:08.116437-07:00,0.0,10.735313,10735.313 +31828,2025-03-10T23:32:18.853387-07:00,0.0,10.73695,10736.95 +31829,2025-03-10T23:32:29.574880-07:00,0.0,10.721493,10721.493 +31830,2025-03-10T23:32:40.312126-07:00,0.0,10.737246,10737.246 +31831,2025-03-10T23:32:51.050052-07:00,0.0,10.737926,10737.926 +31832,2025-03-10T23:33:01.774622-07:00,0.0,10.72457,10724.57 +31833,2025-03-10T23:33:12.510830-07:00,0.0,10.736208,10736.208 +31834,2025-03-10T23:33:23.237035-07:00,0.0,10.726205,10726.205 +31835,2025-03-10T23:33:33.970033-07:00,0.0,10.732998,10732.998 +31836,2025-03-10T23:33:44.700836-07:00,0.0,10.730803,10730.803 +31837,2025-03-10T23:33:55.433161-07:00,0.0,10.732325,10732.325 +31838,2025-03-10T23:34:06.166905-07:00,0.0,10.733744,10733.744 +31839,2025-03-10T23:34:16.889011-07:00,0.0,10.722106,10722.106 +31840,2025-03-10T23:34:27.622023-07:00,0.0,10.733012,10733.012 +31841,2025-03-10T23:34:38.358850-07:00,0.0,10.736827,10736.827 +31842,2025-03-10T23:34:49.086046-07:00,0.0,10.727196,10727.196 +31843,2025-03-10T23:34:59.821832-07:00,0.0,10.735786,10735.786 +31844,2025-03-10T23:35:10.549979-07:00,0.0,10.728147,10728.147 +31845,2025-03-10T23:35:21.286831-07:00,0.0,10.736852,10736.852 +31846,2025-03-10T23:35:32.019037-07:00,0.0,10.732206,10732.206 +31847,2025-03-10T23:35:42.745039-07:00,0.0,10.726002,10726.002 +31848,2025-03-10T23:35:53.479321-07:00,0.0,10.734282,10734.282 +31849,2025-03-10T23:36:04.218832-07:00,0.0,10.739511,10739.511 +31850,2025-03-10T23:36:14.948977-07:00,0.0,10.730145,10730.145 +31851,2025-03-10T23:36:25.676828-07:00,0.0,10.727851,10727.851 +31852,2025-03-10T23:36:36.407118-07:00,0.0,10.73029,10730.29 +31853,2025-03-10T23:36:47.143029-07:00,0.0,10.735911,10735.911 +31854,2025-03-10T23:36:57.886012-07:00,0.0,10.742983,10742.983 +31855,2025-03-10T23:37:08.620829-07:00,0.0,10.734817,10734.817 +31856,2025-03-10T23:37:19.353064-07:00,0.0,10.732235,10732.235 +31857,2025-03-10T23:37:30.084831-07:00,0.0,10.731767,10731.767 +31858,2025-03-10T23:37:40.829135-07:00,0.0,10.744304,10744.304 +31859,2025-03-10T23:37:51.555009-07:00,0.0,10.725874,10725.874 +31860,2025-03-10T23:38:02.298042-07:00,0.0,10.743033,10743.033 +31861,2025-03-10T23:38:13.031833-07:00,0.0,10.733791,10733.791 +31862,2025-03-10T23:38:23.768272-07:00,0.0,10.736439,10736.439 +31863,2025-03-10T23:38:34.491829-07:00,0.0,10.723557,10723.557 +31864,2025-03-10T23:38:45.220834-07:00,0.0,10.729005,10729.005 +31865,2025-03-10T23:38:55.950271-07:00,0.0,10.729437,10729.437 +31866,2025-03-10T23:39:06.684828-07:00,0.0,10.734557,10734.557 +31867,2025-03-10T23:39:17.419040-07:00,0.0,10.734212,10734.212 +31868,2025-03-10T23:39:28.150065-07:00,0.0,10.731025,10731.025 +31869,2025-03-10T23:39:38.887943-07:00,0.0,10.737878,10737.878 +31870,2025-03-10T23:39:49.616829-07:00,0.0,10.728886,10728.886 +31871,2025-03-10T23:40:00.345894-07:00,0.0,10.729065,10729.065 +31872,2025-03-10T23:40:11.075029-07:00,0.0,10.729135,10729.135 +31873,2025-03-10T23:40:21.808830-07:00,0.0,10.733801,10733.801 +31874,2025-03-10T23:40:32.538239-07:00,0.0,10.729409,10729.409 +31875,2025-03-10T23:40:43.269937-07:00,0.0,10.731698,10731.698 +31876,2025-03-10T23:40:54.004832-07:00,0.0,10.734895,10734.895 +31877,2025-03-10T23:41:04.735883-07:00,0.0,10.731051,10731.051 +31878,2025-03-10T23:41:15.464008-07:00,0.0,10.728125,10728.125 +31879,2025-03-10T23:41:26.202852-07:00,0.0,10.738844,10738.844 +31880,2025-03-10T23:41:36.928828-07:00,0.0,10.725976,10725.976 +31881,2025-03-10T23:41:47.663609-07:00,0.0,10.734781,10734.781 +31882,2025-03-10T23:41:58.388829-07:00,0.0,10.72522,10725.22 +31883,2025-03-10T23:42:09.126831-07:00,0.0,10.738002,10738.002 +31884,2025-03-10T23:42:19.858827-07:00,0.0,10.731996,10731.996 +31885,2025-03-10T23:42:30.587855-07:00,0.0,10.729028,10729.028 +31886,2025-03-10T23:42:41.324825-07:00,0.0,10.73697,10736.97 +31887,2025-03-10T23:42:52.051147-07:00,0.0,10.726322,10726.322 +31888,2025-03-10T23:43:02.783877-07:00,0.0,10.73273,10732.73 +31889,2025-03-10T23:43:13.512828-07:00,0.0,10.728951,10728.951 +31890,2025-03-10T23:43:24.245859-07:00,0.0,10.733031,10733.031 +31891,2025-03-10T23:43:34.978995-07:00,0.0,10.733136,10733.136 +31892,2025-03-10T23:43:45.711908-07:00,0.0,10.732913,10732.913 +31893,2025-03-10T23:43:56.451009-07:00,0.0,10.739101,10739.101 +31894,2025-03-10T23:44:07.181056-07:00,0.0,10.730047,10730.047 +31895,2025-03-10T23:44:17.917219-07:00,0.0,10.736163,10736.163 +31896,2025-03-10T23:44:28.651828-07:00,0.0,10.734609,10734.609 +31897,2025-03-10T23:44:39.381832-07:00,0.0,10.730004,10730.004 +31898,2025-03-10T23:44:40.187172-07:00,0.0,0.80534,805.34 +31899,2025-03-10T23:44:50.112000-07:00,0.0,9.924828,9924.828 +31900,2025-03-10T23:45:00.845000-07:00,0.0,10.733,10733.0 +31901,2025-03-10T23:45:11.578884-07:00,0.0,10.733884,10733.884 +31902,2025-03-10T23:45:22.314020-07:00,0.0,10.735136,10735.136 +31903,2025-03-10T23:45:33.050016-07:00,0.0,10.735996,10735.996 +31904,2025-03-10T23:45:43.783831-07:00,0.0,10.733815,10733.815 +31905,2025-03-10T23:45:54.514127-07:00,0.0,10.730296,10730.296 +31906,2025-03-10T23:46:05.245933-07:00,0.0,10.731806,10731.806 +31907,2025-03-10T23:46:15.982877-07:00,0.0,10.736944,10736.944 +31908,2025-03-10T23:46:26.723860-07:00,0.0,10.740983,10740.983 +31909,2025-03-10T23:46:37.447831-07:00,0.0,10.723971,10723.971 +31910,2025-03-10T23:46:48.179010-07:00,0.0,10.731179,10731.179 +31911,2025-03-10T23:46:58.917829-07:00,0.0,10.738819,10738.819 +31912,2025-03-10T23:47:09.641054-07:00,0.0,10.723225,10723.225 +31913,2025-03-10T23:47:20.368998-07:00,0.0,10.727944,10727.944 +31914,2025-03-10T23:47:31.101832-07:00,0.0,10.732834,10732.834 +31915,2025-03-10T23:47:41.838861-07:00,0.0,10.737029,10737.029 +31916,2025-03-10T23:47:52.559013-07:00,0.0,10.720152,10720.152 +31917,2025-03-10T23:48:03.296346-07:00,0.0,10.737333,10737.333 +31918,2025-03-10T23:48:14.025833-07:00,0.0,10.729487,10729.487 +31919,2025-03-10T23:48:24.753049-07:00,0.0,10.727216,10727.216 +31920,2025-03-10T23:48:35.488023-07:00,0.0,10.734974,10734.974 +31921,2025-03-10T23:48:46.213829-07:00,0.0,10.725806,10725.806 +31922,2025-03-10T23:48:56.947838-07:00,0.0,10.734009,10734.009 +31923,2025-03-10T23:49:07.668823-07:00,0.0,10.720985,10720.985 +31924,2025-03-10T23:49:18.404935-07:00,0.0,10.736112,10736.112 +31925,2025-03-10T23:49:29.136009-07:00,0.0,10.731074,10731.074 +31926,2025-03-10T23:49:39.873854-07:00,0.0,10.737845,10737.845 +31927,2025-03-10T23:49:50.608042-07:00,0.0,10.734188,10734.188 +31928,2025-03-10T23:50:01.341721-07:00,0.0,10.733679,10733.679 +31929,2025-03-10T23:50:12.069028-07:00,0.0,10.727307,10727.307 +31930,2025-03-10T23:50:22.798569-07:00,0.0,10.729541,10729.541 +31931,2025-03-10T23:50:33.527840-07:00,0.0,10.729271,10729.271 +31932,2025-03-10T23:50:44.260951-07:00,0.0,10.733111,10733.111 +31933,2025-03-10T23:50:54.984973-07:00,0.0,10.724022,10724.022 +31934,2025-03-10T23:51:05.725916-07:00,0.0,10.740943,10740.943 +31935,2025-03-10T23:51:16.461063-07:00,0.0,10.735147,10735.147 +31936,2025-03-10T23:51:27.181903-07:00,0.0,10.72084,10720.84 +31937,2025-03-10T23:51:37.918825-07:00,0.0,10.736922,10736.922 +31938,2025-03-10T23:51:48.648993-07:00,0.0,10.730168,10730.168 +31939,2025-03-10T23:51:59.386061-07:00,0.0,10.737068,10737.068 +31940,2025-03-10T23:52:10.118827-07:00,0.0,10.732766,10732.766 +31941,2025-03-10T23:52:20.845989-07:00,0.0,10.727162,10727.162 +31942,2025-03-10T23:52:31.577882-07:00,0.0,10.731893,10731.893 +31943,2025-03-10T23:52:42.311563-07:00,0.0,10.733681,10733.681 +31944,2025-03-10T23:52:53.037064-07:00,0.0,10.725501,10725.501 +31945,2025-03-10T23:53:03.765853-07:00,0.0,10.728789,10728.789 +31946,2025-03-10T23:53:14.500904-07:00,0.0,10.735051,10735.051 +31947,2025-03-10T23:53:25.229384-07:00,0.0,10.72848,10728.48 +31948,2025-03-10T23:53:35.982475-07:00,0.0,10.753091,10753.091 +31949,2025-03-10T23:53:46.710717-07:00,0.0,10.728242,10728.242 +31950,2025-03-10T23:53:57.448283-07:00,0.0,10.737566,10737.566 +31951,2025-03-10T23:54:08.180524-07:00,0.0,10.732241,10732.241 +31952,2025-03-10T23:54:18.904281-07:00,0.0,10.723757,10723.757 +31953,2025-03-10T23:54:29.637341-07:00,0.0,10.73306,10733.06 +31954,2025-03-10T23:54:40.376635-07:00,0.0,10.739294,10739.294 +31955,2025-03-10T23:54:51.108932-07:00,0.0,10.732297,10732.297 +31956,2025-03-10T23:55:01.838506-07:00,0.0,10.729574,10729.574 +31957,2025-03-10T23:55:12.563294-07:00,0.0,10.724788,10724.788 +31958,2025-03-10T23:55:23.293430-07:00,0.0,10.730136,10730.136 +31959,2025-03-10T23:55:34.029488-07:00,0.0,10.736058,10736.058 +31960,2025-03-10T23:55:44.761530-07:00,0.0,10.732042,10732.042 +31961,2025-03-10T23:55:55.492462-07:00,0.0,10.730932,10730.932 +31962,2025-03-10T23:56:06.219279-07:00,0.0,10.726817,10726.817 +31963,2025-03-10T23:56:16.949278-07:00,0.0,10.729999,10729.999 +31964,2025-03-10T23:56:27.686671-07:00,0.0,10.737393,10737.393 +31965,2025-03-10T23:56:38.414345-07:00,0.0,10.727674,10727.674 +31966,2025-03-10T23:56:49.148284-07:00,0.0,10.733939,10733.939 +31967,2025-03-10T23:56:59.871703-07:00,0.0,10.723419,10723.419 +31968,2025-03-10T23:57:10.605362-07:00,0.0,10.733659,10733.659 +31969,2025-03-10T23:57:21.333508-07:00,0.0,10.728146,10728.146 +31970,2025-03-10T23:57:32.064693-07:00,0.0,10.731185,10731.185 +31971,2025-03-10T23:57:42.798284-07:00,0.0,10.733591,10733.591 +31972,2025-03-10T23:57:53.537308-07:00,0.0,10.739024,10739.024 +31973,2025-03-10T23:58:04.262457-07:00,0.0,10.725149,10725.149 +31974,2025-03-10T23:58:14.991485-07:00,0.0,10.729028,10729.028 +31975,2025-03-10T23:58:25.726293-07:00,0.0,10.734808,10734.808 +31976,2025-03-10T23:58:36.451464-07:00,0.0,10.725171,10725.171 +31977,2025-03-10T23:58:47.182591-07:00,0.0,10.731127,10731.127 +31978,2025-03-10T23:58:57.913353-07:00,0.0,10.730762,10730.762 +31979,2025-03-10T23:59:08.638822-07:00,0.0,10.725469,10725.469 +31980,2025-03-10T23:59:19.371351-07:00,0.0,10.732529,10732.529 +31981,2025-03-10T23:59:30.098286-07:00,0.0,10.726935,10726.935 +31982,2025-03-10T23:59:40.831272-07:00,0.0,10.732986,10732.986 +31983,2025-03-10T23:59:51.559280-07:00,0.0,10.728008,10728.008 +31984,2025-03-11T00:00:02.291523-07:00,0.0,10.732243,10732.243 +31985,2025-03-11T00:00:13.018421-07:00,0.0,10.726898,10726.898 +31986,2025-03-11T00:00:23.749280-07:00,0.0,10.730859,10730.859 +31987,2025-03-11T00:00:34.477285-07:00,0.0,10.728005,10728.005 +31988,2025-03-11T00:00:45.209306-07:00,0.0,10.732021,10732.021 +31989,2025-03-11T00:00:55.936311-07:00,0.0,10.727005,10727.005 +31990,2025-03-11T00:01:06.673507-07:00,0.0,10.737196,10737.196 +31991,2025-03-11T00:01:17.400482-07:00,0.0,10.726975,10726.975 +31992,2025-03-11T00:01:28.130307-07:00,0.0,10.729825,10729.825 +31993,2025-03-11T00:01:38.856452-07:00,0.0,10.726145,10726.145 +31994,2025-03-11T00:01:49.595972-07:00,0.0,10.73952,10739.52 +31995,2025-03-11T00:02:00.325983-07:00,0.0,10.730011,10730.011 +31996,2025-03-11T00:02:11.054500-07:00,0.0,10.728517,10728.517 +31997,2025-03-11T00:02:21.779552-07:00,0.0,10.725052,10725.052 +31998,2025-03-11T00:02:32.516282-07:00,0.0,10.73673,10736.73 +31999,2025-03-11T00:02:43.241324-07:00,0.0,10.725042,10725.042 +32000,2025-03-11T00:02:53.969280-07:00,0.0,10.727956,10727.956 +32001,2025-03-11T00:03:04.709296-07:00,0.0,10.740016,10740.016 +32002,2025-03-11T00:03:15.437822-07:00,0.0,10.728526,10728.526 +32003,2025-03-11T00:03:26.169713-07:00,0.0,10.731891,10731.891 +32004,2025-03-11T00:03:34.937559-07:00,0.0,8.767846,8767.846 +32005,2025-03-11T00:03:36.901283-07:00,0.0,1.963724,1963.724 +32006,2025-03-11T00:03:47.622685-07:00,0.0,10.721402,10721.402 +32007,2025-03-11T00:03:58.352280-07:00,0.0,10.729595,10729.595 +32008,2025-03-11T00:04:09.088283-07:00,0.0,10.736003,10736.003 +32009,2025-03-11T00:04:19.827425-07:00,0.0,10.739142,10739.142 +32010,2025-03-11T00:04:30.556457-07:00,0.0,10.729032,10729.032 +32011,2025-03-11T00:04:41.294441-07:00,0.0,10.737984,10737.984 +32012,2025-03-11T00:04:52.029314-07:00,0.0,10.734873,10734.873 +32013,2025-03-11T00:05:02.759335-07:00,0.0,10.730021,10730.021 +32014,2025-03-11T00:05:13.493468-07:00,0.0,10.734133,10734.133 +32015,2025-03-11T00:05:24.227518-07:00,0.0,10.73405,10734.05 +32016,2025-03-11T00:05:34.957278-07:00,0.0,10.72976,10729.76 +32017,2025-03-11T00:05:45.697474-07:00,0.0,10.740196,10740.196 +32018,2025-03-11T00:05:56.431450-07:00,0.0,10.733976,10733.976 +32019,2025-03-11T00:06:07.167401-07:00,0.0,10.735951,10735.951 +32020,2025-03-11T00:06:17.896281-07:00,0.0,10.72888,10728.88 +32021,2025-03-11T00:06:28.625496-07:00,0.0,10.729215,10729.215 +32022,2025-03-11T00:06:39.356529-07:00,0.0,10.731033,10731.033 +32023,2025-03-11T00:06:50.081537-07:00,0.0,10.725008,10725.008 +32024,2025-03-11T00:07:00.812461-07:00,0.0,10.730924,10730.924 +32025,2025-03-11T00:07:11.546491-07:00,0.0,10.73403,10734.03 +32026,2025-03-11T00:07:22.284286-07:00,0.0,10.737795,10737.795 +32027,2025-03-11T00:07:33.015310-07:00,0.0,10.731024,10731.024 +32028,2025-03-11T00:07:43.750838-07:00,0.0,10.735528,10735.528 +32029,2025-03-11T00:07:54.474406-07:00,0.0,10.723568,10723.568 +32030,2025-03-11T00:08:05.210857-07:00,0.0,10.736451,10736.451 +32031,2025-03-11T00:08:15.942810-07:00,0.0,10.731953,10731.953 +32032,2025-03-11T00:08:26.680481-07:00,0.0,10.737671,10737.671 +32033,2025-03-11T00:08:37.412489-07:00,0.0,10.732008,10732.008 +32034,2025-03-11T00:08:48.140462-07:00,0.0,10.727973,10727.973 +32035,2025-03-11T00:08:58.871355-07:00,0.0,10.730893,10730.893 +32036,2025-03-11T00:09:09.599386-07:00,0.0,10.728031,10728.031 +32037,2025-03-11T00:09:20.335931-07:00,0.0,10.736545,10736.545 +32038,2025-03-11T00:09:31.063281-07:00,0.0,10.72735,10727.35 +32039,2025-03-11T00:09:41.797441-07:00,0.0,10.73416,10734.16 +32040,2025-03-11T00:09:52.528287-07:00,0.0,10.730846,10730.846 +32041,2025-03-11T00:10:03.260346-07:00,0.0,10.732059,10732.059 +32042,2025-03-11T00:10:13.988703-07:00,0.0,10.728357,10728.357 +32043,2025-03-11T00:10:24.723462-07:00,0.0,10.734759,10734.759 +32044,2025-03-11T00:10:35.459390-07:00,0.0,10.735928,10735.928 +32045,2025-03-11T00:10:46.185416-07:00,0.0,10.726026,10726.026 +32046,2025-03-11T00:10:56.926013-07:00,0.0,10.740597,10740.597 +32047,2025-03-11T00:11:07.650662-07:00,0.0,10.724649,10724.649 +32048,2025-03-11T00:11:18.385283-07:00,0.0,10.734621,10734.621 +32049,2025-03-11T00:11:29.113319-07:00,0.0,10.728036,10728.036 +32050,2025-03-11T00:11:39.850476-07:00,0.0,10.737157,10737.157 +32051,2025-03-11T00:11:50.577290-07:00,0.0,10.726814,10726.814 +32052,2025-03-11T00:12:01.306734-07:00,0.0,10.729444,10729.444 +32053,2025-03-11T00:12:12.038458-07:00,0.0,10.731724,10731.724 +32054,2025-03-11T00:12:22.770865-07:00,0.0,10.732407,10732.407 +32055,2025-03-11T00:12:33.511339-07:00,0.0,10.740474,10740.474 +32056,2025-03-11T00:12:44.240555-07:00,0.0,10.729216,10729.216 +32057,2025-03-11T00:12:54.975465-07:00,0.0,10.73491,10734.91 +32058,2025-03-11T00:13:05.704461-07:00,0.0,10.728996,10728.996 +32059,2025-03-11T00:13:16.435494-07:00,0.0,10.731033,10731.033 +32060,2025-03-11T00:13:27.179286-07:00,0.0,10.743792,10743.792 +32061,2025-03-11T00:13:37.917170-07:00,0.0,10.737884,10737.884 +32062,2025-03-11T00:13:48.646282-07:00,0.0,10.729112,10729.112 +32063,2025-03-11T00:13:59.384486-07:00,0.0,10.738204,10738.204 +32064,2025-03-11T00:14:10.126462-07:00,0.0,10.741976,10741.976 +32065,2025-03-11T00:14:20.858188-07:00,0.0,10.731726,10731.726 +32066,2025-03-11T00:14:31.590339-07:00,0.0,10.732151,10732.151 +32067,2025-03-11T00:14:42.326347-07:00,0.0,10.736008,10736.008 +32068,2025-03-11T00:14:53.063281-07:00,0.0,10.736934,10736.934 +32069,2025-03-11T00:15:03.798282-07:00,0.0,10.735001,10735.001 +32070,2025-03-11T00:15:14.536452-07:00,0.0,10.73817,10738.17 +32071,2025-03-11T00:15:25.269285-07:00,0.0,10.732833,10732.833 +32072,2025-03-11T00:15:36.004550-07:00,0.0,10.735265,10735.265 +32073,2025-03-11T00:15:46.742571-07:00,0.0,10.738021,10738.021 +32074,2025-03-11T00:15:57.483719-07:00,0.0,10.741148,10741.148 +32075,2025-03-11T00:16:08.217883-07:00,0.0,10.734164,10734.164 +32076,2025-03-11T00:16:18.952284-07:00,0.0,10.734401,10734.401 +32077,2025-03-11T00:16:29.690281-07:00,0.0,10.737997,10737.997 +32078,2025-03-11T00:16:40.432360-07:00,0.0,10.742079,10742.079 +32079,2025-03-11T00:16:51.163487-07:00,0.0,10.731127,10731.127 +32080,2025-03-11T00:17:01.900622-07:00,0.0,10.737135,10737.135 +32081,2025-03-11T00:17:12.634283-07:00,0.0,10.733661,10733.661 +32082,2025-03-11T00:17:23.365483-07:00,0.0,10.7312,10731.2 +32083,2025-03-11T00:17:34.103694-07:00,0.0,10.738211,10738.211 +32084,2025-03-11T00:17:44.845215-07:00,0.0,10.741521,10741.521 +32085,2025-03-11T00:17:55.574351-07:00,0.0,10.729136,10729.136 +32086,2025-03-11T00:18:06.314281-07:00,0.0,10.73993,10739.93 +32087,2025-03-11T00:18:17.042468-07:00,0.0,10.728187,10728.187 +32088,2025-03-11T00:18:27.776305-07:00,0.0,10.733837,10733.837 +32089,2025-03-11T00:18:38.514307-07:00,0.0,10.738002,10738.002 +32090,2025-03-11T00:18:49.247369-07:00,0.0,10.733062,10733.062 +32091,2025-03-11T00:18:59.977463-07:00,0.0,10.730094,10730.094 +32092,2025-03-11T00:19:21.451284-07:00,0.0,21.473821,21473.821 +32093,2025-03-11T00:19:32.178287-07:00,0.0,10.727003,10727.003 +32094,2025-03-11T00:19:42.919471-07:00,0.0,10.741184,10741.184 +32095,2025-03-11T00:19:53.656371-07:00,0.0,10.7369,10736.9 +32096,2025-03-11T00:20:04.389280-07:00,0.0,10.732909,10732.909 +32097,2025-03-11T00:20:15.121513-07:00,0.0,10.732233,10732.233 +32098,2025-03-11T00:20:25.863073-07:00,0.0,10.74156,10741.56 +32099,2025-03-11T00:20:36.600381-07:00,0.0,10.737308,10737.308 +32100,2025-03-11T00:20:47.330490-07:00,0.0,10.730109,10730.109 +32101,2025-03-11T00:20:58.064284-07:00,0.0,10.733794,10733.794 +32102,2025-03-11T00:21:08.803549-07:00,0.0,10.739265,10739.265 +32103,2025-03-11T00:21:19.533310-07:00,0.0,10.729761,10729.761 +32104,2025-03-11T00:21:30.266535-07:00,0.0,10.733225,10733.225 +32105,2025-03-11T00:21:41.000502-07:00,0.0,10.733967,10733.967 +32106,2025-03-11T00:21:51.740993-07:00,0.0,10.740491,10740.491 +32107,2025-03-11T00:22:02.477103-07:00,0.0,10.73611,10736.11 +32108,2025-03-11T00:22:13.208284-07:00,0.0,10.731181,10731.181 +32109,2025-03-11T00:22:23.938499-07:00,0.0,10.730215,10730.215 +32110,2025-03-11T00:22:34.679353-07:00,0.0,10.740854,10740.854 +32111,2025-03-11T00:22:45.414686-07:00,0.0,10.735333,10735.333 +32112,2025-03-11T00:22:56.146283-07:00,0.0,10.731597,10731.597 +32113,2025-03-11T00:23:06.887621-07:00,0.0,10.741338,10741.338 +32114,2025-03-11T00:23:17.623470-07:00,0.0,10.735849,10735.849 +32115,2025-03-11T00:23:28.351282-07:00,0.0,10.727812,10727.812 +32116,2025-03-11T00:23:39.089446-07:00,0.0,10.738164,10738.164 +32117,2025-03-11T00:23:49.822347-07:00,0.0,10.732901,10732.901 +32118,2025-03-11T00:24:00.564283-07:00,0.0,10.741936,10741.936 +32119,2025-03-11T00:24:11.290357-07:00,0.0,10.726074,10726.074 +32120,2025-03-11T00:24:22.028277-07:00,0.0,10.73792,10737.92 +32121,2025-03-11T00:24:32.762116-07:00,0.0,10.733839,10733.839 +32122,2025-03-11T00:24:43.490486-07:00,0.0,10.72837,10728.37 +32123,2025-03-11T00:24:54.225279-07:00,0.0,10.734793,10734.793 +32124,2025-03-11T00:25:04.969351-07:00,0.0,10.744072,10744.072 +32125,2025-03-11T00:25:15.704281-07:00,0.0,10.73493,10734.93 +32126,2025-03-11T00:25:26.429457-07:00,0.0,10.725176,10725.176 +32127,2025-03-11T00:25:37.171074-07:00,0.0,10.741617,10741.617 +32128,2025-03-11T00:25:47.908276-07:00,0.0,10.737202,10737.202 +32129,2025-03-11T00:25:58.644492-07:00,0.0,10.736216,10736.216 +32130,2025-03-11T00:26:09.380470-07:00,0.0,10.735978,10735.978 +32131,2025-03-11T00:26:20.112780-07:00,0.0,10.73231,10732.31 +32132,2025-03-11T00:26:30.848281-07:00,0.0,10.735501,10735.501 +32133,2025-03-11T00:26:41.577364-07:00,0.0,10.729083,10729.083 +32134,2025-03-11T00:26:52.314362-07:00,0.0,10.736998,10736.998 +32135,2025-03-11T00:27:03.048309-07:00,0.0,10.733947,10733.947 +32136,2025-03-11T00:27:13.783584-07:00,0.0,10.735275,10735.275 +32137,2025-03-11T00:27:24.523503-07:00,0.0,10.739919,10739.919 +32138,2025-03-11T00:27:35.255699-07:00,0.0,10.732196,10732.196 +32139,2025-03-11T00:27:45.984372-07:00,0.0,10.728673,10728.673 +32140,2025-03-11T00:27:56.722343-07:00,0.0,10.737971,10737.971 +32141,2025-03-11T00:28:07.462281-07:00,0.0,10.739938,10739.938 +32142,2025-03-11T00:28:18.196363-07:00,0.0,10.734082,10734.082 +32143,2025-03-11T00:28:28.933462-07:00,0.0,10.737099,10737.099 +32144,2025-03-11T00:28:39.660281-07:00,0.0,10.726819,10726.819 +32145,2025-03-11T00:28:50.400277-07:00,0.0,10.739996,10739.996 +32146,2025-03-11T00:29:01.136450-07:00,0.0,10.736173,10736.173 +32147,2025-03-11T00:29:11.864478-07:00,0.0,10.728028,10728.028 +32148,2025-03-11T00:29:22.606281-07:00,0.0,10.741803,10741.803 +32149,2025-03-11T00:29:33.342722-07:00,0.0,10.736441,10736.441 +32150,2025-03-11T00:29:44.070345-07:00,0.0,10.727623,10727.623 +32151,2025-03-11T00:29:54.797283-07:00,0.0,10.726938,10726.938 +32152,2025-03-11T00:30:05.539306-07:00,0.0,10.742023,10742.023 +32153,2025-03-11T00:30:16.263457-07:00,0.0,10.724151,10724.151 +32154,2025-03-11T00:30:26.995618-07:00,0.0,10.732161,10732.161 +32155,2025-03-11T00:30:37.728281-07:00,0.0,10.732663,10732.663 +32156,2025-03-11T00:30:48.459284-07:00,0.0,10.731003,10731.003 +32157,2025-03-11T00:30:59.185464-07:00,0.0,10.72618,10726.18 +32158,2025-03-11T00:31:09.914286-07:00,0.0,10.728822,10728.822 +32159,2025-03-11T00:31:20.648493-07:00,0.0,10.734207,10734.207 +32160,2025-03-11T00:31:31.379829-07:00,0.0,10.731336,10731.336 +32161,2025-03-11T00:31:42.101283-07:00,0.0,10.721454,10721.454 +32162,2025-03-11T00:31:52.835651-07:00,0.0,10.734368,10734.368 +32163,2025-03-11T00:32:03.560281-07:00,0.0,10.72463,10724.63 +32164,2025-03-11T00:32:14.291393-07:00,0.0,10.731112,10731.112 +32165,2025-03-11T00:32:25.021682-07:00,0.0,10.730289,10730.289 +32166,2025-03-11T00:32:35.751426-07:00,0.0,10.729744,10729.744 +32167,2025-03-11T00:32:46.485308-07:00,0.0,10.733882,10733.882 +32168,2025-03-11T00:32:57.205659-07:00,0.0,10.720351,10720.351 +32169,2025-03-11T00:33:07.934428-07:00,0.0,10.728769,10728.769 +32170,2025-03-11T00:33:18.673368-07:00,0.0,10.73894,10738.94 +32171,2025-03-11T00:33:29.402492-07:00,0.0,10.729124,10729.124 +32172,2025-03-11T00:33:40.130280-07:00,0.0,10.727788,10727.788 +32173,2025-03-11T00:33:50.859480-07:00,0.0,10.7292,10729.2 +32174,2025-03-11T00:34:01.591505-07:00,0.0,10.732025,10732.025 +32175,2025-03-11T00:34:12.314346-07:00,0.0,10.722841,10722.841 +32176,2025-03-11T00:34:23.051673-07:00,0.0,10.737327,10737.327 +32177,2025-03-11T00:34:33.783491-07:00,0.0,10.731818,10731.818 +32178,2025-03-11T00:34:44.512283-07:00,0.0,10.728792,10728.792 +32179,2025-03-11T00:34:55.247354-07:00,0.0,10.735071,10735.071 +32180,2025-03-11T00:35:05.975481-07:00,0.0,10.728127,10728.127 +32181,2025-03-11T00:35:16.702496-07:00,0.0,10.727015,10727.015 +32182,2025-03-11T00:35:27.436371-07:00,0.0,10.733875,10733.875 +32183,2025-03-11T00:35:38.174776-07:00,0.0,10.738405,10738.405 +32184,2025-03-11T00:35:48.898276-07:00,0.0,10.7235,10723.5 +32185,2025-03-11T00:35:59.625357-07:00,0.0,10.727081,10727.081 +32186,2025-03-11T00:36:10.358689-07:00,0.0,10.733332,10733.332 +32187,2025-03-11T00:36:21.093278-07:00,0.0,10.734589,10734.589 +32188,2025-03-11T00:36:31.832563-07:00,0.0,10.739285,10739.285 +32189,2025-03-11T00:36:42.564559-07:00,0.0,10.731996,10731.996 +32190,2025-03-11T00:36:53.287282-07:00,0.0,10.722723,10722.723 +32191,2025-03-11T00:37:04.024317-07:00,0.0,10.737035,10737.035 +32192,2025-03-11T00:37:14.759284-07:00,0.0,10.734967,10734.967 +32193,2025-03-11T00:37:25.489657-07:00,0.0,10.730373,10730.373 +32194,2025-03-11T00:37:36.218281-07:00,0.0,10.728624,10728.624 +32195,2025-03-11T00:37:46.947466-07:00,0.0,10.729185,10729.185 +32196,2025-03-11T00:37:57.677116-07:00,0.0,10.72965,10729.65 +32197,2025-03-11T00:38:08.417284-07:00,0.0,10.740168,10740.168 +32198,2025-03-11T00:38:19.138281-07:00,0.0,10.720997,10720.997 +32199,2025-03-11T00:38:29.873488-07:00,0.0,10.735207,10735.207 +32200,2025-03-11T00:38:40.609305-07:00,0.0,10.735817,10735.817 +32201,2025-03-11T00:38:51.330508-07:00,0.0,10.721203,10721.203 +32202,2025-03-11T00:39:02.068157-07:00,0.0,10.737649,10737.649 +32203,2025-03-11T00:39:12.799354-07:00,0.0,10.731197,10731.197 +32204,2025-03-11T00:39:23.526388-07:00,0.0,10.727034,10727.034 +32205,2025-03-11T00:39:34.265439-07:00,0.0,10.739051,10739.051 +32206,2025-03-11T00:39:44.995260-07:00,0.0,10.729821,10729.821 +32207,2025-03-11T00:39:55.730798-07:00,0.0,10.735538,10735.538 +32208,2025-03-11T00:40:06.463286-07:00,0.0,10.732488,10732.488 +32209,2025-03-11T00:40:17.195465-07:00,0.0,10.732179,10732.179 +32210,2025-03-11T00:40:27.923283-07:00,0.0,10.727818,10727.818 +32211,2025-03-11T00:40:38.656283-07:00,0.0,10.733,10733.0 +32212,2025-03-11T00:40:49.386443-07:00,0.0,10.73016,10730.16 +32213,2025-03-11T00:41:00.121422-07:00,0.0,10.734979,10734.979 +32214,2025-03-11T00:41:10.857282-07:00,0.0,10.73586,10735.86 +32215,2025-03-11T00:41:21.587865-07:00,0.0,10.730583,10730.583 +32216,2025-03-11T00:41:32.316475-07:00,0.0,10.72861,10728.61 +32217,2025-03-11T00:41:43.050281-07:00,0.0,10.733806,10733.806 +32218,2025-03-11T00:41:53.788660-07:00,0.0,10.738379,10738.379 +32219,2025-03-11T00:42:04.514473-07:00,0.0,10.725813,10725.813 +32220,2025-03-11T00:42:15.245283-07:00,0.0,10.73081,10730.81 +32221,2025-03-11T00:42:25.984456-07:00,0.0,10.739173,10739.173 +32222,2025-03-11T00:42:36.713489-07:00,0.0,10.729033,10729.033 +32223,2025-03-11T00:42:47.450896-07:00,0.0,10.737407,10737.407 +32224,2025-03-11T00:42:58.175281-07:00,0.0,10.724385,10724.385 +32225,2025-03-11T00:43:08.910284-07:00,0.0,10.735003,10735.003 +32226,2025-03-11T00:43:19.635645-07:00,0.0,10.725361,10725.361 +32227,2025-03-11T00:43:30.366310-07:00,0.0,10.730665,10730.665 +32228,2025-03-11T00:43:41.098479-07:00,0.0,10.732169,10732.169 +32229,2025-03-11T00:43:51.829281-07:00,0.0,10.730802,10730.802 +32230,2025-03-11T00:44:02.566311-07:00,0.0,10.73703,10737.03 +32231,2025-03-11T00:44:13.298806-07:00,0.0,10.732495,10732.495 +32232,2025-03-11T00:44:24.020309-07:00,0.0,10.721503,10721.503 +32233,2025-03-11T00:44:34.747351-07:00,0.0,10.727042,10727.042 +32234,2025-03-11T00:44:45.480484-07:00,0.0,10.733133,10733.133 +32235,2025-03-11T00:44:56.213713-07:00,0.0,10.733229,10733.229 +32236,2025-03-11T00:45:06.941485-07:00,0.0,10.727772,10727.772 +32237,2025-03-11T00:45:17.664472-07:00,0.0,10.722987,10722.987 +32238,2025-03-11T00:45:28.398280-07:00,0.0,10.733808,10733.808 +32239,2025-03-11T00:45:39.117467-07:00,0.0,10.719187,10719.187 +32240,2025-03-11T00:45:49.854470-07:00,0.0,10.737003,10737.003 +32241,2025-03-11T00:46:00.582283-07:00,0.0,10.727813,10727.813 +32242,2025-03-11T00:46:11.311276-07:00,0.0,10.728993,10728.993 +32243,2025-03-11T00:46:22.035308-07:00,0.0,10.724032,10724.032 +32244,2025-03-11T00:46:32.765317-07:00,0.0,10.730009,10730.009 +32245,2025-03-11T00:46:43.492390-07:00,0.0,10.727073,10727.073 +32246,2025-03-11T00:46:54.226281-07:00,0.0,10.733891,10733.891 +32247,2025-03-11T00:47:04.958513-07:00,0.0,10.732232,10732.232 +32248,2025-03-11T00:47:15.684472-07:00,0.0,10.725959,10725.959 +32249,2025-03-11T00:47:26.411282-07:00,0.0,10.72681,10726.81 +32250,2025-03-11T00:47:37.143498-07:00,0.0,10.732216,10732.216 +32251,2025-03-11T00:47:47.868151-07:00,0.0,10.724653,10724.653 +32252,2025-03-11T00:47:58.596287-07:00,0.0,10.728136,10728.136 +32253,2025-03-11T00:48:09.331391-07:00,0.0,10.735104,10735.104 +32254,2025-03-11T00:48:20.056397-07:00,0.0,10.725006,10725.006 +32255,2025-03-11T00:48:30.777662-07:00,0.0,10.721265,10721.265 +32256,2025-03-11T00:48:41.509470-07:00,0.0,10.731808,10731.808 +32257,2025-03-11T00:48:52.235281-07:00,0.0,10.725811,10725.811 +32258,2025-03-11T00:49:02.958335-07:00,0.0,10.723054,10723.054 +32259,2025-03-11T00:49:13.688617-07:00,0.0,10.730282,10730.282 +32260,2025-03-11T00:49:24.426283-07:00,0.0,10.737666,10737.666 +32261,2025-03-11T00:49:35.151033-07:00,0.0,10.72475,10724.75 +32262,2025-03-11T00:49:45.873591-07:00,0.0,10.722558,10722.558 +32263,2025-03-11T00:49:56.608283-07:00,0.0,10.734692,10734.692 +32264,2025-03-11T00:50:07.336873-07:00,0.0,10.72859,10728.59 +32265,2025-03-11T00:50:18.057056-07:00,0.0,10.720183,10720.183 +32266,2025-03-11T00:50:28.785709-07:00,0.0,10.728653,10728.653 +32267,2025-03-11T00:50:39.513283-07:00,0.0,10.727574,10727.574 +32268,2025-03-11T00:50:50.241484-07:00,0.0,10.728201,10728.201 +32269,2025-03-11T00:51:00.977426-07:00,0.0,10.735942,10735.942 +32270,2025-03-11T00:51:11.709579-07:00,0.0,10.732153,10732.153 +32271,2025-03-11T00:51:22.436279-07:00,0.0,10.7267,10726.7 +32272,2025-03-11T00:51:33.163995-07:00,0.0,10.727716,10727.716 +32273,2025-03-11T00:51:43.890283-07:00,0.0,10.726288,10726.288 +32274,2025-03-11T00:51:54.611283-07:00,0.0,10.721,10721.0 +32275,2025-03-11T00:52:05.346683-07:00,0.0,10.7354,10735.4 +32276,2025-03-11T00:52:16.073486-07:00,0.0,10.726803,10726.803 +32277,2025-03-11T00:52:26.798978-07:00,0.0,10.725492,10725.492 +32278,2025-03-11T00:52:37.527418-07:00,0.0,10.72844,10728.44 +32279,2025-03-11T00:52:48.256516-07:00,0.0,10.729098,10729.098 +32280,2025-03-11T00:52:58.990449-07:00,0.0,10.733933,10733.933 +32281,2025-03-11T00:53:09.715283-07:00,0.0,10.724834,10724.834 +32282,2025-03-11T00:53:20.440712-07:00,0.0,10.725429,10725.429 +32283,2025-03-11T00:53:31.178462-07:00,0.0,10.73775,10737.75 +32284,2025-03-11T00:53:41.897479-07:00,0.0,10.719017,10719.017 +32285,2025-03-11T00:53:52.626331-07:00,0.0,10.728852,10728.852 +32286,2025-03-11T00:54:03.362512-07:00,0.0,10.736181,10736.181 +32287,2025-03-11T00:54:14.089540-07:00,0.0,10.727028,10727.028 +32288,2025-03-11T00:54:24.828391-07:00,0.0,10.738851,10738.851 +32289,2025-03-11T00:54:35.547608-07:00,0.0,10.719217,10719.217 +32290,2025-03-11T00:54:46.287334-07:00,0.0,10.739726,10739.726 +32291,2025-03-11T00:54:57.018337-07:00,0.0,10.731003,10731.003 +32292,2025-03-11T00:55:07.749752-07:00,0.0,10.731415,10731.415 +32293,2025-03-11T00:55:18.471399-07:00,0.0,10.721647,10721.647 +32294,2025-03-11T00:55:29.211337-07:00,0.0,10.739938,10739.938 +32295,2025-03-11T00:55:39.936537-07:00,0.0,10.7252,10725.2 +32296,2025-03-11T00:55:50.668333-07:00,0.0,10.731796,10731.796 +32297,2025-03-11T00:56:01.399537-07:00,0.0,10.731204,10731.204 +32298,2025-03-11T00:56:12.136362-07:00,0.0,10.736825,10736.825 +32299,2025-03-11T00:56:22.868500-07:00,0.0,10.732138,10732.138 +32300,2025-03-11T00:56:33.597333-07:00,0.0,10.728833,10728.833 +32301,2025-03-11T00:56:44.325522-07:00,0.0,10.728189,10728.189 +32302,2025-03-11T00:56:55.061394-07:00,0.0,10.735872,10735.872 +32303,2025-03-11T00:57:05.790621-07:00,0.0,10.729227,10729.227 +32304,2025-03-11T00:57:16.519397-07:00,0.0,10.728776,10728.776 +32305,2025-03-11T00:57:27.252556-07:00,0.0,10.733159,10733.159 +32306,2025-03-11T00:57:37.992512-07:00,0.0,10.739956,10739.956 +32307,2025-03-11T00:57:48.715690-07:00,0.0,10.723178,10723.178 +32308,2025-03-11T00:57:59.449503-07:00,0.0,10.733813,10733.813 +32309,2025-03-11T00:58:10.189071-07:00,0.0,10.739568,10739.568 +32310,2025-03-11T00:58:20.913334-07:00,0.0,10.724263,10724.263 +32311,2025-03-11T00:58:31.646810-07:00,0.0,10.733476,10733.476 +32312,2025-03-11T00:58:42.374566-07:00,0.0,10.727756,10727.756 +32313,2025-03-11T00:58:53.102560-07:00,0.0,10.727994,10727.994 +32314,2025-03-11T00:59:03.841894-07:00,0.0,10.739334,10739.334 +32315,2025-03-11T00:59:14.570663-07:00,0.0,10.728769,10728.769 +32316,2025-03-11T00:59:25.295334-07:00,0.0,10.724671,10724.671 +32317,2025-03-11T00:59:36.030399-07:00,0.0,10.735065,10735.065 +32318,2025-03-11T00:59:46.759357-07:00,0.0,10.728958,10728.958 +32319,2025-03-11T00:59:57.489332-07:00,0.0,10.729975,10729.975 +32320,2025-03-11T01:00:08.222378-07:00,0.0,10.733046,10733.046 +32321,2025-03-11T01:00:18.949495-07:00,0.0,10.727117,10727.117 +32322,2025-03-11T01:00:29.690336-07:00,0.0,10.740841,10740.841 +32323,2025-03-11T01:00:40.414778-07:00,0.0,10.724442,10724.442 +32324,2025-03-11T01:00:51.148592-07:00,0.0,10.733814,10733.814 +32325,2025-03-11T01:01:01.883336-07:00,0.0,10.734744,10734.744 +32326,2025-03-11T01:01:12.614337-07:00,0.0,10.731001,10731.001 +32327,2025-03-11T01:01:23.336912-07:00,0.0,10.722575,10722.575 +32328,2025-03-11T01:01:34.070613-07:00,0.0,10.733701,10733.701 +32329,2025-03-11T01:01:44.810341-07:00,0.0,10.739728,10739.728 +32330,2025-03-11T01:01:55.547678-07:00,0.0,10.737337,10737.337 +32331,2025-03-11T01:02:06.271477-07:00,0.0,10.723799,10723.799 +32332,2025-03-11T01:02:17.014487-07:00,0.0,10.74301,10743.01 +32333,2025-03-11T01:02:27.744426-07:00,0.0,10.729939,10729.939 +32334,2025-03-11T01:02:38.479585-07:00,0.0,10.735159,10735.159 +32335,2025-03-11T01:02:49.216892-07:00,0.0,10.737307,10737.307 +32336,2025-03-11T01:02:59.942337-07:00,0.0,10.725445,10725.445 +32337,2025-03-11T01:03:10.679535-07:00,0.0,10.737198,10737.198 +32338,2025-03-11T01:03:21.404360-07:00,0.0,10.724825,10724.825 +32339,2025-03-11T01:03:32.138335-07:00,0.0,10.733975,10733.975 +32340,2025-03-11T01:03:42.870058-07:00,0.0,10.731723,10731.723 +32341,2025-03-11T01:03:53.602506-07:00,0.0,10.732448,10732.448 +32342,2025-03-11T01:04:04.337536-07:00,0.0,10.73503,10735.03 +32343,2025-03-11T01:04:15.067333-07:00,0.0,10.729797,10729.797 +32344,2025-03-11T01:04:25.794507-07:00,0.0,10.727174,10727.174 +32345,2025-03-11T01:04:36.530518-07:00,0.0,10.736011,10736.011 +32346,2025-03-11T01:04:47.252675-07:00,0.0,10.722157,10722.157 +32347,2025-03-11T01:04:57.983117-07:00,0.0,10.730442,10730.442 +32348,2025-03-11T01:05:08.711395-07:00,0.0,10.728278,10728.278 +32349,2025-03-11T01:05:19.443336-07:00,0.0,10.731941,10731.941 +32350,2025-03-11T01:05:30.174135-07:00,0.0,10.730799,10730.799 +32351,2025-03-11T01:05:40.905334-07:00,0.0,10.731199,10731.199 +32352,2025-03-11T01:05:51.629388-07:00,0.0,10.724054,10724.054 +32353,2025-03-11T01:06:02.362890-07:00,0.0,10.733502,10733.502 +32354,2025-03-11T01:06:13.100333-07:00,0.0,10.737443,10737.443 +32355,2025-03-11T01:06:23.827515-07:00,0.0,10.727182,10727.182 +32356,2025-03-11T01:06:34.551671-07:00,0.0,10.724156,10724.156 +32357,2025-03-11T01:06:45.289333-07:00,0.0,10.737662,10737.662 +32358,2025-03-11T01:06:56.013521-07:00,0.0,10.724188,10724.188 +32359,2025-03-11T01:07:06.743333-07:00,0.0,10.729812,10729.812 +32360,2025-03-11T01:07:17.473336-07:00,0.0,10.730003,10730.003 +32361,2025-03-11T01:07:28.209551-07:00,0.0,10.736215,10736.215 +32362,2025-03-11T01:07:38.936528-07:00,0.0,10.726977,10726.977 +32363,2025-03-11T01:07:49.669336-07:00,0.0,10.732808,10732.808 +32364,2025-03-11T01:08:00.403396-07:00,0.0,10.73406,10734.06 +32365,2025-03-11T01:08:11.133516-07:00,0.0,10.73012,10730.12 +32366,2025-03-11T01:08:21.866618-07:00,0.0,10.733102,10733.102 +32367,2025-03-11T01:08:32.595333-07:00,0.0,10.728715,10728.715 +32368,2025-03-11T01:08:43.324546-07:00,0.0,10.729213,10729.213 +32369,2025-03-11T01:08:54.061739-07:00,0.0,10.737193,10737.193 +32370,2025-03-11T01:09:04.786377-07:00,0.0,10.724638,10724.638 +32371,2025-03-11T01:09:15.516548-07:00,0.0,10.730171,10730.171 +32372,2025-03-11T01:09:26.245329-07:00,0.0,10.728781,10728.781 +32373,2025-03-11T01:09:36.983406-07:00,0.0,10.738077,10738.077 +32374,2025-03-11T01:09:47.708747-07:00,0.0,10.725341,10725.341 +32375,2025-03-11T01:09:58.445524-07:00,0.0,10.736777,10736.777 +32376,2025-03-11T01:10:09.178342-07:00,0.0,10.732818,10732.818 +32377,2025-03-11T01:10:19.908561-07:00,0.0,10.730219,10730.219 +32378,2025-03-11T01:10:30.639600-07:00,0.0,10.731039,10731.039 +32379,2025-03-11T01:10:41.371530-07:00,0.0,10.73193,10731.93 +32380,2025-03-11T01:10:52.106339-07:00,0.0,10.734809,10734.809 +32381,2025-03-11T01:11:02.841500-07:00,0.0,10.735161,10735.161 +32382,2025-03-11T01:11:13.573534-07:00,0.0,10.732034,10732.034 +32383,2025-03-11T01:11:24.300403-07:00,0.0,10.726869,10726.869 +32384,2025-03-11T01:11:35.036570-07:00,0.0,10.736167,10736.167 +32385,2025-03-11T01:11:45.761533-07:00,0.0,10.724963,10724.963 +32386,2025-03-11T01:11:56.490334-07:00,0.0,10.728801,10728.801 +32387,2025-03-11T01:12:07.227103-07:00,0.0,10.736769,10736.769 +32388,2025-03-11T01:12:17.957355-07:00,0.0,10.730252,10730.252 +32389,2025-03-11T01:12:28.699124-07:00,0.0,10.741769,10741.769 +32390,2025-03-11T01:12:39.433798-07:00,0.0,10.734674,10734.674 +32391,2025-03-11T01:12:50.162514-07:00,0.0,10.728716,10728.716 +32392,2025-03-11T01:13:00.892403-07:00,0.0,10.729889,10729.889 +32393,2025-03-11T01:13:11.631333-07:00,0.0,10.73893,10738.93 +32394,2025-03-11T01:13:22.361511-07:00,0.0,10.730178,10730.178 +32395,2025-03-11T01:13:33.094167-07:00,0.0,10.732656,10732.656 +32396,2025-03-11T01:13:43.832342-07:00,0.0,10.738175,10738.175 +32397,2025-03-11T01:13:54.558485-07:00,0.0,10.726143,10726.143 +32398,2025-03-11T01:14:05.291541-07:00,0.0,10.733056,10733.056 +32399,2025-03-11T01:14:16.030413-07:00,0.0,10.738872,10738.872 +32400,2025-03-11T01:14:26.758545-07:00,0.0,10.728132,10728.132 +32401,2025-03-11T01:14:37.487418-07:00,0.0,10.728873,10728.873 +32402,2025-03-11T01:14:48.228497-07:00,0.0,10.741079,10741.079 +32403,2025-03-11T01:14:58.958331-07:00,0.0,10.729834,10729.834 +32404,2025-03-11T01:15:09.690503-07:00,0.0,10.732172,10732.172 +32405,2025-03-11T01:15:20.429747-07:00,0.0,10.739244,10739.244 +32406,2025-03-11T01:15:31.164818-07:00,0.0,10.735071,10735.071 +32407,2025-03-11T01:15:41.889336-07:00,0.0,10.724518,10724.518 +32408,2025-03-11T01:15:52.631329-07:00,0.0,10.741993,10741.993 +32409,2025-03-11T01:16:03.361506-07:00,0.0,10.730177,10730.177 +32410,2025-03-11T01:16:14.102214-07:00,0.0,10.740708,10740.708 +32411,2025-03-11T01:16:24.829333-07:00,0.0,10.727119,10727.119 +32412,2025-03-11T01:16:35.570332-07:00,0.0,10.740999,10740.999 +32413,2025-03-11T01:16:46.295537-07:00,0.0,10.725205,10725.205 +32414,2025-03-11T01:16:57.036369-07:00,0.0,10.740832,10740.832 +32415,2025-03-11T01:17:07.765400-07:00,0.0,10.729031,10729.031 +32416,2025-03-11T01:17:18.501361-07:00,0.0,10.735961,10735.961 +32417,2025-03-11T01:17:29.231789-07:00,0.0,10.730428,10730.428 +32418,2025-03-11T01:17:39.970329-07:00,0.0,10.73854,10738.54 +32419,2025-03-11T01:17:50.701528-07:00,0.0,10.731199,10731.199 +32420,2025-03-11T01:18:01.446332-07:00,0.0,10.744804,10744.804 +32421,2025-03-11T01:18:12.181911-07:00,0.0,10.735579,10735.579 +32422,2025-03-11T01:18:22.915695-07:00,0.0,10.733784,10733.784 +32423,2025-03-11T01:18:33.649333-07:00,0.0,10.733638,10733.638 +32424,2025-03-11T01:18:44.382488-07:00,0.0,10.733155,10733.155 +32425,2025-03-11T01:18:55.113513-07:00,0.0,10.731025,10731.025 +32426,2025-03-11T01:19:05.850332-07:00,0.0,10.736819,10736.819 +32427,2025-03-11T01:19:16.580656-07:00,0.0,10.730324,10730.324 +32428,2025-03-11T01:19:27.317901-07:00,0.0,10.737245,10737.245 +32429,2025-03-11T01:19:38.053731-07:00,0.0,10.73583,10735.83 +32430,2025-03-11T01:19:48.779334-07:00,0.0,10.725603,10725.603 +32431,2025-03-11T01:19:59.519335-07:00,0.0,10.740001,10740.001 +32432,2025-03-11T01:20:10.251621-07:00,0.0,10.732286,10732.286 +32433,2025-03-11T01:20:20.981925-07:00,0.0,10.730304,10730.304 +32434,2025-03-11T01:20:31.718399-07:00,0.0,10.736474,10736.474 +32435,2025-03-11T01:20:42.451519-07:00,0.0,10.73312,10733.12 +32436,2025-03-11T01:20:53.181510-07:00,0.0,10.729991,10729.991 +32437,2025-03-11T01:21:03.913336-07:00,0.0,10.731826,10731.826 +32438,2025-03-11T01:21:14.652330-07:00,0.0,10.738994,10738.994 +32439,2025-03-11T01:21:25.391466-07:00,0.0,10.739136,10739.136 +32440,2025-03-11T01:21:36.116486-07:00,0.0,10.72502,10725.02 +32441,2025-03-11T01:21:46.847333-07:00,0.0,10.730847,10730.847 +32442,2025-03-11T01:21:57.574555-07:00,0.0,10.727222,10727.222 +32443,2025-03-11T01:22:08.313524-07:00,0.0,10.738969,10738.969 +32444,2025-03-11T01:22:19.043432-07:00,0.0,10.729908,10729.908 +32445,2025-03-11T01:22:29.770331-07:00,0.0,10.726899,10726.899 +32446,2025-03-11T01:22:40.506516-07:00,0.0,10.736185,10736.185 +32447,2025-03-11T01:22:51.236528-07:00,0.0,10.730012,10730.012 +32448,2025-03-11T01:23:01.966656-07:00,0.0,10.730128,10730.128 +32449,2025-03-11T01:23:12.692959-07:00,0.0,10.726303,10726.303 +32450,2025-03-11T01:23:23.422523-07:00,0.0,10.729564,10729.564 +32451,2025-03-11T01:23:34.157976-07:00,0.0,10.735453,10735.453 +32452,2025-03-11T01:23:44.883108-07:00,0.0,10.725132,10725.132 +32453,2025-03-11T01:23:55.613385-07:00,0.0,10.730277,10730.277 +32454,2025-03-11T01:24:06.345801-07:00,0.0,10.732416,10732.416 +32455,2025-03-11T01:24:17.079519-07:00,0.0,10.733718,10733.718 +32456,2025-03-11T01:24:27.808336-07:00,0.0,10.728817,10728.817 +32457,2025-03-11T01:24:38.541888-07:00,0.0,10.733552,10733.552 +32458,2025-03-11T01:24:49.271518-07:00,0.0,10.72963,10729.63 +32459,2025-03-11T01:25:00.007569-07:00,0.0,10.736051,10736.051 +32460,2025-03-11T01:25:10.736640-07:00,0.0,10.729071,10729.071 +32461,2025-03-11T01:25:21.465505-07:00,0.0,10.728865,10728.865 +32462,2025-03-11T01:25:32.191713-07:00,0.0,10.726208,10726.208 +32463,2025-03-11T01:25:42.918332-07:00,0.0,10.726619,10726.619 +32464,2025-03-11T01:25:53.657487-07:00,0.0,10.739155,10739.155 +32465,2025-03-11T01:26:04.388373-07:00,0.0,10.730886,10730.886 +32466,2025-03-11T01:26:15.110631-07:00,0.0,10.722258,10722.258 +32467,2025-03-11T01:26:25.841558-07:00,0.0,10.730927,10730.927 +32468,2025-03-11T01:26:36.560629-07:00,0.0,10.719071,10719.071 +32469,2025-03-11T01:26:47.291569-07:00,0.0,10.73094,10730.94 +32470,2025-03-11T01:26:58.020336-07:00,0.0,10.728767,10728.767 +32471,2025-03-11T01:27:08.740135-07:00,0.0,10.719799,10719.799 +32472,2025-03-11T01:27:19.472617-07:00,0.0,10.732482,10732.482 +32473,2025-03-11T01:27:30.201337-07:00,0.0,10.72872,10728.72 +32474,2025-03-11T01:27:40.923738-07:00,0.0,10.722401,10722.401 +32475,2025-03-11T01:27:51.650335-07:00,0.0,10.726597,10726.597 +32476,2025-03-11T01:28:02.390365-07:00,0.0,10.74003,10740.03 +32477,2025-03-11T01:28:13.113724-07:00,0.0,10.723359,10723.359 +32478,2025-03-11T01:28:23.845361-07:00,0.0,10.731637,10731.637 +32479,2025-03-11T01:28:34.574339-07:00,0.0,10.728978,10728.978 +32480,2025-03-11T01:28:45.296434-07:00,0.0,10.722095,10722.095 +32481,2025-03-11T01:28:56.027425-07:00,0.0,10.730991,10730.991 +32482,2025-03-11T01:29:06.756570-07:00,0.0,10.729145,10729.145 +32483,2025-03-11T01:29:17.481544-07:00,0.0,10.724974,10724.974 +32484,2025-03-11T01:29:28.216336-07:00,0.0,10.734792,10734.792 +32485,2025-03-11T01:29:38.941505-07:00,0.0,10.725169,10725.169 +32486,2025-03-11T01:29:49.671711-07:00,0.0,10.730206,10730.206 +32487,2025-03-11T01:30:00.390847-07:00,0.0,10.719136,10719.136 +32488,2025-03-11T01:30:11.116333-07:00,0.0,10.725486,10725.486 +32489,2025-03-11T01:30:21.846624-07:00,0.0,10.730291,10730.291 +32490,2025-03-11T01:30:32.576528-07:00,0.0,10.729904,10729.904 +32491,2025-03-11T01:30:43.306336-07:00,0.0,10.729808,10729.808 +32492,2025-03-11T01:30:54.042530-07:00,0.0,10.736194,10736.194 +32493,2025-03-11T01:31:04.774519-07:00,0.0,10.731989,10731.989 +32494,2025-03-11T01:31:15.500409-07:00,0.0,10.72589,10725.89 +32495,2025-03-11T01:31:26.234849-07:00,0.0,10.73444,10734.44 +32496,2025-03-11T01:31:36.961508-07:00,0.0,10.726659,10726.659 +32497,2025-03-11T01:31:47.689365-07:00,0.0,10.727857,10727.857 +32498,2025-03-11T01:31:58.430510-07:00,0.0,10.741145,10741.145 +32499,2025-03-11T01:32:09.160518-07:00,0.0,10.730008,10730.008 +32500,2025-03-11T01:32:19.894143-07:00,0.0,10.733625,10733.625 +32501,2025-03-11T01:32:30.615404-07:00,0.0,10.721261,10721.261 +32502,2025-03-11T01:32:41.349339-07:00,0.0,10.733935,10733.935 +32503,2025-03-11T01:32:52.070542-07:00,0.0,10.721203,10721.203 +32504,2025-03-11T01:33:02.799021-07:00,0.0,10.728479,10728.479 +32505,2025-03-11T01:33:13.521398-07:00,0.0,10.722377,10722.377 +32506,2025-03-11T01:33:24.257546-07:00,0.0,10.736148,10736.148 +32507,2025-03-11T01:33:34.978555-07:00,0.0,10.721009,10721.009 +32508,2025-03-11T01:33:45.709335-07:00,0.0,10.73078,10730.78 +32509,2025-03-11T01:33:56.433516-07:00,0.0,10.724181,10724.181 +32510,2025-03-11T01:34:07.167510-07:00,0.0,10.733994,10733.994 +32511,2025-03-11T01:34:17.893334-07:00,0.0,10.725824,10725.824 +32512,2025-03-11T01:34:28.628531-07:00,0.0,10.735197,10735.197 +32513,2025-03-11T01:34:39.352654-07:00,0.0,10.724123,10724.123 +32514,2025-03-11T01:34:50.081541-07:00,0.0,10.728887,10728.887 +32515,2025-03-11T01:35:00.812504-07:00,0.0,10.730963,10730.963 +32516,2025-03-11T01:35:11.542373-07:00,0.0,10.729869,10729.869 +32517,2025-03-11T01:35:22.281497-07:00,0.0,10.739124,10739.124 +32518,2025-03-11T01:35:33.005716-07:00,0.0,10.724219,10724.219 +32519,2025-03-11T01:35:43.746490-07:00,0.0,10.740774,10740.774 +32520,2025-03-11T01:35:54.475363-07:00,0.0,10.728873,10728.873 +32521,2025-03-11T01:36:05.206330-07:00,0.0,10.730967,10730.967 +32522,2025-03-11T01:36:15.933519-07:00,0.0,10.727189,10727.189 +32523,2025-03-11T01:36:26.661337-07:00,0.0,10.727818,10727.818 +32524,2025-03-11T01:36:37.397331-07:00,0.0,10.735994,10735.994 +32525,2025-03-11T01:36:48.126522-07:00,0.0,10.729191,10729.191 +32526,2025-03-11T01:36:58.854488-07:00,0.0,10.727966,10727.966 +32527,2025-03-11T01:37:09.577764-07:00,0.0,10.723276,10723.276 +32528,2025-03-11T01:37:20.313515-07:00,0.0,10.735751,10735.751 +32529,2025-03-11T01:37:31.036522-07:00,0.0,10.723007,10723.007 +32530,2025-03-11T01:37:41.775359-07:00,0.0,10.738837,10738.837 +32531,2025-03-11T01:37:52.507500-07:00,0.0,10.732141,10732.141 +32532,2025-03-11T01:38:03.229535-07:00,0.0,10.722035,10722.035 +32533,2025-03-11T01:38:13.968407-07:00,0.0,10.738872,10738.872 +32534,2025-03-11T01:38:24.690458-07:00,0.0,10.722051,10722.051 +32535,2025-03-11T01:38:35.419855-07:00,0.0,10.729397,10729.397 +32536,2025-03-11T01:38:46.151409-07:00,0.0,10.731554,10731.554 +32537,2025-03-11T01:38:56.878684-07:00,0.0,10.727275,10727.275 +32538,2025-03-11T01:39:07.613891-07:00,0.0,10.735207,10735.207 +32539,2025-03-11T01:39:18.343516-07:00,0.0,10.729625,10729.625 +32540,2025-03-11T01:39:29.062543-07:00,0.0,10.719027,10719.027 +32541,2025-03-11T01:39:39.795107-07:00,0.0,10.732564,10732.564 +32542,2025-03-11T01:39:50.523504-07:00,0.0,10.728397,10728.397 +32543,2025-03-11T01:40:01.253368-07:00,0.0,10.729864,10729.864 +32544,2025-03-11T01:40:11.985451-07:00,0.0,10.732083,10732.083 +32545,2025-03-11T01:40:22.711126-07:00,0.0,10.725675,10725.675 +32546,2025-03-11T01:40:33.438533-07:00,0.0,10.727407,10727.407 +32547,2025-03-11T01:40:44.170366-07:00,0.0,10.731833,10731.833 +32548,2025-03-11T01:40:54.896533-07:00,0.0,10.726167,10726.167 +32549,2025-03-11T01:41:05.629333-07:00,0.0,10.7328,10732.8 +32550,2025-03-11T01:41:16.358522-07:00,0.0,10.729189,10729.189 +32551,2025-03-11T01:41:27.089536-07:00,0.0,10.731014,10731.014 +32552,2025-03-11T01:41:37.816331-07:00,0.0,10.726795,10726.795 +32553,2025-03-11T01:41:48.542510-07:00,0.0,10.726179,10726.179 +32554,2025-03-11T01:41:59.270439-07:00,0.0,10.727929,10727.929 +32555,2025-03-11T01:42:09.992522-07:00,0.0,10.722083,10722.083 +32556,2025-03-11T01:42:20.723335-07:00,0.0,10.730813,10730.813 +32557,2025-03-11T01:42:31.449412-07:00,0.0,10.726077,10726.077 +32558,2025-03-11T01:42:42.171640-07:00,0.0,10.722228,10722.228 +32559,2025-03-11T01:42:52.906334-07:00,0.0,10.734694,10734.694 +32560,2025-03-11T01:43:03.634522-07:00,0.0,10.728188,10728.188 +32561,2025-03-11T01:43:14.363878-07:00,0.0,10.729356,10729.356 +32562,2025-03-11T01:43:25.097333-07:00,0.0,10.733455,10733.455 +32563,2025-03-11T01:43:35.827535-07:00,0.0,10.730202,10730.202 +32564,2025-03-11T01:43:46.552995-07:00,0.0,10.72546,10725.46 +32565,2025-03-11T01:43:57.287501-07:00,0.0,10.734506,10734.506 +32566,2025-03-11T01:44:08.013769-07:00,0.0,10.726268,10726.268 +32567,2025-03-11T01:44:18.741334-07:00,0.0,10.727565,10727.565 +32568,2025-03-11T01:44:29.473337-07:00,0.0,10.732003,10732.003 +32569,2025-03-11T01:44:40.208336-07:00,0.0,10.734999,10734.999 +32570,2025-03-11T01:44:50.940522-07:00,0.0,10.732186,10732.186 +32571,2025-03-11T01:45:01.666440-07:00,0.0,10.725918,10725.918 +32572,2025-03-11T01:45:12.400592-07:00,0.0,10.734152,10734.152 +32573,2025-03-11T01:45:23.130515-07:00,0.0,10.729923,10729.923 +32574,2025-03-11T01:45:33.859571-07:00,0.0,10.729056,10729.056 +32575,2025-03-11T01:45:44.589537-07:00,0.0,10.729966,10729.966 +32576,2025-03-11T01:45:55.321009-07:00,0.0,10.731472,10731.472 +32577,2025-03-11T01:46:06.048539-07:00,0.0,10.72753,10727.53 +32578,2025-03-11T01:46:16.781699-07:00,0.0,10.73316,10733.16 +32579,2025-03-11T01:46:27.515512-07:00,0.0,10.733813,10733.813 +32580,2025-03-11T01:46:38.240699-07:00,0.0,10.725187,10725.187 +32581,2025-03-11T01:46:48.967925-07:00,0.0,10.727226,10727.226 +32582,2025-03-11T01:46:59.702109-07:00,0.0,10.734184,10734.184 +32583,2025-03-11T01:47:10.429339-07:00,0.0,10.72723,10727.23 +32584,2025-03-11T01:47:21.163736-07:00,0.0,10.734397,10734.397 +32585,2025-03-11T01:47:31.885336-07:00,0.0,10.7216,10721.6 +32586,2025-03-11T01:47:42.618470-07:00,0.0,10.733134,10733.134 +32587,2025-03-11T01:47:53.351431-07:00,0.0,10.732961,10732.961 +32588,2025-03-11T01:48:04.078391-07:00,0.0,10.72696,10726.96 +32589,2025-03-11T01:48:14.809463-07:00,0.0,10.731072,10731.072 +32590,2025-03-11T01:48:25.538971-07:00,0.0,10.729508,10729.508 +32591,2025-03-11T01:48:36.273682-07:00,0.0,10.734711,10734.711 +32592,2025-03-11T01:48:47.002333-07:00,0.0,10.728651,10728.651 +32593,2025-03-11T01:48:57.724525-07:00,0.0,10.722192,10722.192 +32594,2025-03-11T01:49:08.452638-07:00,0.0,10.728113,10728.113 +32595,2025-03-11T01:49:19.181526-07:00,0.0,10.728888,10728.888 +32596,2025-03-11T01:49:29.912516-07:00,0.0,10.73099,10730.99 +32597,2025-03-11T01:49:40.643541-07:00,0.0,10.731025,10731.025 +32598,2025-03-11T01:49:51.360531-07:00,0.0,10.71699,10716.99 +32599,2025-03-11T01:50:02.096358-07:00,0.0,10.735827,10735.827 +32600,2025-03-11T01:50:12.820337-07:00,0.0,10.723979,10723.979 +32601,2025-03-11T01:50:23.546869-07:00,0.0,10.726532,10726.532 +32602,2025-03-11T01:50:34.279333-07:00,0.0,10.732464,10732.464 +32603,2025-03-11T01:50:45.008337-07:00,0.0,10.729004,10729.004 +32604,2025-03-11T01:50:55.729539-07:00,0.0,10.721202,10721.202 +32605,2025-03-11T01:51:06.459362-07:00,0.0,10.729823,10729.823 +32606,2025-03-11T01:51:17.191901-07:00,0.0,10.732539,10732.539 +32607,2025-03-11T01:51:27.922328-07:00,0.0,10.730427,10730.427 +32608,2025-03-11T01:51:38.661744-07:00,0.0,10.739416,10739.416 +32609,2025-03-11T01:51:49.390081-07:00,0.0,10.728337,10728.337 +32610,2025-03-11T01:52:00.125515-07:00,0.0,10.735434,10735.434 +32611,2025-03-11T01:52:10.852397-07:00,0.0,10.726882,10726.882 +32612,2025-03-11T01:52:21.587574-07:00,0.0,10.735177,10735.177 +32613,2025-03-11T01:52:32.311559-07:00,0.0,10.723985,10723.985 +32614,2025-03-11T01:52:43.045337-07:00,0.0,10.733778,10733.778 +32615,2025-03-11T01:52:53.771556-07:00,0.0,10.726219,10726.219 +32616,2025-03-11T01:53:04.508496-07:00,0.0,10.73694,10736.94 +32617,2025-03-11T01:53:15.231337-07:00,0.0,10.722841,10722.841 +32618,2025-03-11T01:53:25.966422-07:00,0.0,10.735085,10735.085 +32619,2025-03-11T01:53:36.736949-07:00,0.0,10.770527,10770.527 +32620,2025-03-11T01:53:47.467754-07:00,0.0,10.730805,10730.805 +32621,2025-03-11T01:53:58.195781-07:00,0.0,10.728027,10728.027 +32622,2025-03-11T01:54:08.930943-07:00,0.0,10.735162,10735.162 +32623,2025-03-11T01:54:19.651831-07:00,0.0,10.720888,10720.888 +32624,2025-03-11T01:54:30.384956-07:00,0.0,10.733125,10733.125 +32625,2025-03-11T01:54:41.110813-07:00,0.0,10.725857,10725.857 +32626,2025-03-11T01:54:51.840940-07:00,0.0,10.730127,10730.127 +32627,2025-03-11T01:55:02.572770-07:00,0.0,10.73183,10731.83 +32628,2025-03-11T01:55:13.305920-07:00,0.0,10.73315,10733.15 +32629,2025-03-11T01:55:24.031752-07:00,0.0,10.725832,10725.832 +32630,2025-03-11T01:55:34.762875-07:00,0.0,10.731123,10731.123 +32631,2025-03-11T01:55:45.487785-07:00,0.0,10.72491,10724.91 +32632,2025-03-11T01:55:56.219754-07:00,0.0,10.731969,10731.969 +32633,2025-03-11T01:56:06.948942-07:00,0.0,10.729188,10729.188 +32634,2025-03-11T01:56:17.686866-07:00,0.0,10.737924,10737.924 +32635,2025-03-11T01:56:28.414754-07:00,0.0,10.727888,10727.888 +32636,2025-03-11T01:56:39.143937-07:00,0.0,10.729183,10729.183 +32637,2025-03-11T01:56:49.871753-07:00,0.0,10.727816,10727.816 +32638,2025-03-11T01:57:00.596843-07:00,0.0,10.72509,10725.09 +32639,2025-03-11T01:57:11.328018-07:00,0.0,10.731175,10731.175 +32640,2025-03-11T01:57:22.063755-07:00,0.0,10.735737,10735.737 +32641,2025-03-11T01:57:32.795187-07:00,0.0,10.731432,10731.432 +32642,2025-03-11T01:57:43.525940-07:00,0.0,10.730753,10730.753 +32643,2025-03-11T01:57:54.251753-07:00,0.0,10.725813,10725.813 +32644,2025-03-11T01:58:04.987988-07:00,0.0,10.736235,10736.235 +32645,2025-03-11T01:58:15.715931-07:00,0.0,10.727943,10727.943 +32646,2025-03-11T01:58:26.457471-07:00,0.0,10.74154,10741.54 +32647,2025-03-11T01:58:37.180047-07:00,0.0,10.722576,10722.576 +32648,2025-03-11T01:58:47.907932-07:00,0.0,10.727885,10727.885 +32649,2025-03-11T01:58:58.648991-07:00,0.0,10.741059,10741.059 +32650,2025-03-11T01:59:09.379297-07:00,0.0,10.730306,10730.306 +32651,2025-03-11T01:59:20.099944-07:00,0.0,10.720647,10720.647 +32652,2025-03-11T01:59:30.833474-07:00,0.0,10.73353,10733.53 +32653,2025-03-11T01:59:41.560925-07:00,0.0,10.727451,10727.451 +32654,2025-03-11T01:59:52.298971-07:00,0.0,10.738046,10738.046 +32655,2025-03-11T02:00:03.033920-07:00,0.0,10.734949,10734.949 +32656,2025-03-11T02:00:13.759957-07:00,0.0,10.726037,10726.037 +32657,2025-03-11T02:00:24.491751-07:00,0.0,10.731794,10731.794 +32658,2025-03-11T02:00:35.225962-07:00,0.0,10.734211,10734.211 +32659,2025-03-11T02:00:45.964777-07:00,0.0,10.738815,10738.815 +32660,2025-03-11T02:00:56.687760-07:00,0.0,10.722983,10722.983 +32661,2025-03-11T02:01:07.420932-07:00,0.0,10.733172,10733.172 +32662,2025-03-11T02:01:18.157752-07:00,0.0,10.73682,10736.82 +32663,2025-03-11T02:01:28.883858-07:00,0.0,10.726106,10726.106 +32664,2025-03-11T02:01:39.616060-07:00,0.0,10.732202,10732.202 +32665,2025-03-11T02:01:50.346011-07:00,0.0,10.729951,10729.951 +32666,2025-03-11T02:02:01.079780-07:00,0.0,10.733769,10733.769 +32667,2025-03-11T02:02:11.801164-07:00,0.0,10.721384,10721.384 +32668,2025-03-11T02:02:22.537903-07:00,0.0,10.736739,10736.739 +32669,2025-03-11T02:02:33.263751-07:00,0.0,10.725848,10725.848 +32670,2025-03-11T02:02:43.993854-07:00,0.0,10.730103,10730.103 +32671,2025-03-11T02:02:54.723921-07:00,0.0,10.730067,10730.067 +32672,2025-03-11T02:03:05.451927-07:00,0.0,10.728006,10728.006 +32673,2025-03-11T02:03:16.184089-07:00,0.0,10.732162,10732.162 +32674,2025-03-11T02:03:26.913747-07:00,0.0,10.729658,10729.658 +32675,2025-03-11T02:03:37.647174-07:00,0.0,10.733427,10733.427 +32676,2025-03-11T02:03:48.375191-07:00,0.0,10.728017,10728.017 +32677,2025-03-11T02:03:59.109749-07:00,0.0,10.734558,10734.558 +32678,2025-03-11T02:04:09.837755-07:00,0.0,10.728006,10728.006 +32679,2025-03-11T02:04:20.569925-07:00,0.0,10.73217,10732.17 +32680,2025-03-11T02:04:31.305755-07:00,0.0,10.73583,10735.83 +32681,2025-03-11T02:04:42.031750-07:00,0.0,10.725995,10725.995 +32682,2025-03-11T02:04:52.767760-07:00,0.0,10.73601,10736.01 +32683,2025-03-11T02:05:03.500656-07:00,0.0,10.732896,10732.896 +32684,2025-03-11T02:05:14.232749-07:00,0.0,10.732093,10732.093 +32685,2025-03-11T02:05:24.969784-07:00,0.0,10.737035,10737.035 +32686,2025-03-11T02:05:35.693231-07:00,0.0,10.723447,10723.447 +32687,2025-03-11T02:05:46.429751-07:00,0.0,10.73652,10736.52 +32688,2025-03-11T02:05:57.158754-07:00,0.0,10.729003,10729.003 +32689,2025-03-11T02:06:07.887965-07:00,0.0,10.729211,10729.211 +32690,2025-03-11T02:06:18.626824-07:00,0.0,10.738859,10738.859 +32691,2025-03-11T02:06:29.355807-07:00,0.0,10.728983,10728.983 +32692,2025-03-11T02:06:40.087935-07:00,0.0,10.732128,10732.128 +32693,2025-03-11T02:06:50.812753-07:00,0.0,10.724818,10724.818 +32694,2025-03-11T02:07:01.548784-07:00,0.0,10.736031,10736.031 +32695,2025-03-11T02:07:12.276800-07:00,0.0,10.728016,10728.016 +32696,2025-03-11T02:07:23.009776-07:00,0.0,10.732976,10732.976 +32697,2025-03-11T02:07:33.738356-07:00,0.0,10.72858,10728.58 +32698,2025-03-11T02:07:44.464926-07:00,0.0,10.72657,10726.57 +32699,2025-03-11T02:07:55.201841-07:00,0.0,10.736915,10736.915 +32700,2025-03-11T02:08:05.927955-07:00,0.0,10.726114,10726.114 +32701,2025-03-11T02:08:16.663758-07:00,0.0,10.735803,10735.803 +32702,2025-03-11T02:08:27.395537-07:00,0.0,10.731779,10731.779 +32703,2025-03-11T02:08:38.119751-07:00,0.0,10.724214,10724.214 +32704,2025-03-11T02:08:48.859025-07:00,0.0,10.739274,10739.274 +32705,2025-03-11T02:08:59.585791-07:00,0.0,10.726766,10726.766 +32706,2025-03-11T02:09:10.320754-07:00,0.0,10.734963,10734.963 +32707,2025-03-11T02:09:21.053755-07:00,0.0,10.733001,10733.001 +32708,2025-03-11T02:09:31.792755-07:00,0.0,10.739,10739.0 +32709,2025-03-11T02:09:42.520775-07:00,0.0,10.72802,10728.02 +32710,2025-03-11T02:09:53.249058-07:00,0.0,10.728283,10728.283 +32711,2025-03-11T02:10:03.982959-07:00,0.0,10.733901,10733.901 +32712,2025-03-11T02:10:14.721930-07:00,0.0,10.738971,10738.971 +32713,2025-03-11T02:10:25.452749-07:00,0.0,10.730819,10730.819 +32714,2025-03-11T02:10:36.179172-07:00,0.0,10.726423,10726.423 +32715,2025-03-11T02:10:46.911928-07:00,0.0,10.732756,10732.756 +32716,2025-03-11T02:10:57.647759-07:00,0.0,10.735831,10735.831 +32717,2025-03-11T02:11:08.378753-07:00,0.0,10.730994,10730.994 +32718,2025-03-11T02:11:19.112175-07:00,0.0,10.733422,10733.422 +32719,2025-03-11T02:11:29.846488-07:00,0.0,10.734313,10734.313 +32720,2025-03-11T02:11:40.576913-07:00,0.0,10.730425,10730.425 +32721,2025-03-11T02:11:51.307750-07:00,0.0,10.730837,10730.837 +32722,2025-03-11T02:12:02.040042-07:00,0.0,10.732292,10732.292 +32723,2025-03-11T02:12:12.773005-07:00,0.0,10.732963,10732.963 +32724,2025-03-11T02:12:23.500958-07:00,0.0,10.727953,10727.953 +32725,2025-03-11T02:12:34.234921-07:00,0.0,10.733963,10733.963 +32726,2025-03-11T02:12:44.967150-07:00,0.0,10.732229,10732.229 +32727,2025-03-11T02:12:55.696751-07:00,0.0,10.729601,10729.601 +32728,2025-03-11T02:13:06.429853-07:00,0.0,10.733102,10733.102 +32729,2025-03-11T02:13:17.159995-07:00,0.0,10.730142,10730.142 +32730,2025-03-11T02:13:27.898751-07:00,0.0,10.738756,10738.756 +32731,2025-03-11T02:13:38.632164-07:00,0.0,10.733413,10733.413 +32732,2025-03-11T02:13:49.361092-07:00,0.0,10.728928,10728.928 +32733,2025-03-11T02:14:00.098257-07:00,0.0,10.737165,10737.165 +32734,2025-03-11T02:14:10.835749-07:00,0.0,10.737492,10737.492 +32735,2025-03-11T02:14:21.559953-07:00,0.0,10.724204,10724.204 +32736,2025-03-11T02:14:32.300745-07:00,0.0,10.740792,10740.792 +32737,2025-03-11T02:14:43.033902-07:00,0.0,10.733157,10733.157 +32738,2025-03-11T02:14:53.761962-07:00,0.0,10.72806,10728.06 +32739,2025-03-11T02:15:04.503016-07:00,0.0,10.741054,10741.054 +32740,2025-03-11T02:15:15.227751-07:00,0.0,10.724735,10724.735 +32741,2025-03-11T02:15:25.961788-07:00,0.0,10.734037,10734.037 +32742,2025-03-11T02:15:36.694754-07:00,0.0,10.732966,10732.966 +32743,2025-03-11T02:15:47.430380-07:00,0.0,10.735626,10735.626 +32744,2025-03-11T02:15:58.161780-07:00,0.0,10.7314,10731.4 +32745,2025-03-11T02:16:08.893923-07:00,0.0,10.732143,10732.143 +32746,2025-03-11T02:16:19.628959-07:00,0.0,10.735036,10735.036 +32747,2025-03-11T02:16:30.354830-07:00,0.0,10.725871,10725.871 +32748,2025-03-11T02:16:41.090754-07:00,0.0,10.735924,10735.924 +32749,2025-03-11T02:16:51.823158-07:00,0.0,10.732404,10732.404 +32750,2025-03-11T02:17:02.553940-07:00,0.0,10.730782,10730.782 +32751,2025-03-11T02:17:13.288816-07:00,0.0,10.734876,10734.876 +32752,2025-03-11T02:17:24.010124-07:00,0.0,10.721308,10721.308 +32753,2025-03-11T02:17:34.752222-07:00,0.0,10.742098,10742.098 +32754,2025-03-11T02:17:45.480754-07:00,0.0,10.728532,10728.532 +32755,2025-03-11T02:17:56.209747-07:00,0.0,10.728993,10728.993 +32756,2025-03-11T02:18:06.947948-07:00,0.0,10.738201,10738.201 +32757,2025-03-11T02:18:17.678157-07:00,0.0,10.730209,10730.209 +32758,2025-03-11T02:18:28.408751-07:00,0.0,10.730594,10730.594 +32759,2025-03-11T02:18:39.141920-07:00,0.0,10.733169,10733.169 +32760,2025-03-11T02:18:49.882050-07:00,0.0,10.74013,10740.13 +32761,2025-03-11T02:19:00.607785-07:00,0.0,10.725735,10725.735 +32762,2025-03-11T02:19:11.343752-07:00,0.0,10.735967,10735.967 +32763,2025-03-11T02:19:22.073160-07:00,0.0,10.729408,10729.408 +32764,2025-03-11T02:19:32.803955-07:00,0.0,10.730795,10730.795 +32765,2025-03-11T02:19:43.534978-07:00,0.0,10.731023,10731.023 +32766,2025-03-11T02:19:54.271942-07:00,0.0,10.736964,10736.964 +32767,2025-03-11T02:20:04.999747-07:00,0.0,10.727805,10727.805 +32768,2025-03-11T02:20:15.731914-07:00,0.0,10.732167,10732.167 +32769,2025-03-11T02:20:26.462140-07:00,0.0,10.730226,10730.226 +32770,2025-03-11T02:20:37.197775-07:00,0.0,10.735635,10735.635 +32771,2025-03-11T02:20:47.928765-07:00,0.0,10.73099,10730.99 +32772,2025-03-11T02:20:58.654961-07:00,0.0,10.726196,10726.196 +32773,2025-03-11T02:21:09.395008-07:00,0.0,10.740047,10740.047 +32774,2025-03-11T02:21:20.126750-07:00,0.0,10.731742,10731.742 +32775,2025-03-11T02:21:30.854986-07:00,0.0,10.728236,10728.236 +32776,2025-03-11T02:21:41.590169-07:00,0.0,10.735183,10735.183 +32777,2025-03-11T02:21:52.317752-07:00,0.0,10.727583,10727.583 +32778,2025-03-11T02:22:03.054753-07:00,0.0,10.737001,10737.001 +32779,2025-03-11T02:22:13.778938-07:00,0.0,10.724185,10724.185 +32780,2025-03-11T02:22:24.517753-07:00,0.0,10.738815,10738.815 +32781,2025-03-11T02:22:35.243986-07:00,0.0,10.726233,10726.233 +32782,2025-03-11T02:22:45.970345-07:00,0.0,10.726359,10726.359 +32783,2025-03-11T02:22:56.704537-07:00,0.0,10.734192,10734.192 +32784,2025-03-11T02:23:07.434817-07:00,0.0,10.73028,10730.28 +32785,2025-03-11T02:23:18.166853-07:00,0.0,10.732036,10732.036 +32786,2025-03-11T02:23:28.894969-07:00,0.0,10.728116,10728.116 +32787,2025-03-11T02:23:39.626788-07:00,0.0,10.731819,10731.819 +32788,2025-03-11T02:23:50.356960-07:00,0.0,10.730172,10730.172 +32789,2025-03-11T02:24:01.079756-07:00,0.0,10.722796,10722.796 +32790,2025-03-11T02:24:11.812926-07:00,0.0,10.73317,10733.17 +32791,2025-03-11T02:24:22.541596-07:00,0.0,10.72867,10728.67 +32792,2025-03-11T02:24:33.271751-07:00,0.0,10.730155,10730.155 +32793,2025-03-11T02:24:44.005751-07:00,0.0,10.734,10734.0 +32794,2025-03-11T02:24:54.733890-07:00,0.0,10.728139,10728.139 +32795,2025-03-11T02:25:05.463755-07:00,0.0,10.729865,10729.865 +32796,2025-03-11T02:25:16.195157-07:00,0.0,10.731402,10731.402 +32797,2025-03-11T02:25:26.926933-07:00,0.0,10.731776,10731.776 +32798,2025-03-11T02:25:37.657754-07:00,0.0,10.730821,10730.821 +32799,2025-03-11T02:25:48.392853-07:00,0.0,10.735099,10735.099 +32800,2025-03-11T02:25:59.117949-07:00,0.0,10.725096,10725.096 +32801,2025-03-11T02:26:09.845990-07:00,0.0,10.728041,10728.041 +32802,2025-03-11T02:26:20.576973-07:00,0.0,10.730983,10730.983 +32803,2025-03-11T02:26:31.307249-07:00,0.0,10.730276,10730.276 +32804,2025-03-11T02:26:42.038775-07:00,0.0,10.731526,10731.526 +32805,2025-03-11T02:26:52.758854-07:00,0.0,10.720079,10720.079 +32806,2025-03-11T02:27:03.487755-07:00,0.0,10.728901,10728.901 +32807,2025-03-11T02:27:14.220932-07:00,0.0,10.733177,10733.177 +32808,2025-03-11T02:27:24.946935-07:00,0.0,10.726003,10726.003 +32809,2025-03-11T02:27:35.683961-07:00,0.0,10.737026,10737.026 +32810,2025-03-11T02:27:46.415755-07:00,0.0,10.731794,10731.794 +32811,2025-03-11T02:27:57.138951-07:00,0.0,10.723196,10723.196 +32812,2025-03-11T02:28:07.868755-07:00,0.0,10.729804,10729.804 +32813,2025-03-11T02:28:18.605974-07:00,0.0,10.737219,10737.219 +32814,2025-03-11T02:28:29.332940-07:00,0.0,10.726966,10726.966 +32815,2025-03-11T02:28:40.058751-07:00,0.0,10.725811,10725.811 +32816,2025-03-11T02:28:50.788754-07:00,0.0,10.730003,10730.003 +32817,2025-03-11T02:29:01.524932-07:00,0.0,10.736178,10736.178 +32818,2025-03-11T02:29:12.249753-07:00,0.0,10.724821,10724.821 +32819,2025-03-11T02:29:22.985767-07:00,0.0,10.736014,10736.014 +32820,2025-03-11T02:29:33.706286-07:00,0.0,10.720519,10720.519 +32821,2025-03-11T02:29:44.438060-07:00,0.0,10.731774,10731.774 +32822,2025-03-11T02:29:55.170755-07:00,0.0,10.732695,10732.695 +32823,2025-03-11T02:30:05.901937-07:00,0.0,10.731182,10731.182 +32824,2025-03-11T02:30:16.636777-07:00,0.0,10.73484,10734.84 +32825,2025-03-11T02:30:27.365930-07:00,0.0,10.729153,10729.153 +32826,2025-03-11T02:30:38.100578-07:00,0.0,10.734648,10734.648 +32827,2025-03-11T02:30:48.833781-07:00,0.0,10.733203,10733.203 +32828,2025-03-11T02:30:59.563952-07:00,0.0,10.730171,10730.171 +32829,2025-03-11T02:31:10.299754-07:00,0.0,10.735802,10735.802 +32830,2025-03-11T02:31:21.030515-07:00,0.0,10.730761,10730.761 +32831,2025-03-11T02:31:31.759754-07:00,0.0,10.729239,10729.239 +32832,2025-03-11T02:31:42.496753-07:00,0.0,10.736999,10736.999 +32833,2025-03-11T02:31:53.221629-07:00,0.0,10.724876,10724.876 +32834,2025-03-11T02:32:03.961747-07:00,0.0,10.740118,10740.118 +32835,2025-03-11T02:32:14.687114-07:00,0.0,10.725367,10725.367 +32836,2025-03-11T02:32:25.428783-07:00,0.0,10.741669,10741.669 +32837,2025-03-11T02:32:36.152892-07:00,0.0,10.724109,10724.109 +32838,2025-03-11T02:32:46.888918-07:00,0.0,10.736026,10736.026 +32839,2025-03-11T02:32:57.626022-07:00,0.0,10.737104,10737.104 +32840,2025-03-11T02:33:08.352933-07:00,0.0,10.726911,10726.911 +32841,2025-03-11T02:33:19.083751-07:00,0.0,10.730818,10730.818 +32842,2025-03-11T02:33:29.823945-07:00,0.0,10.740194,10740.194 +32843,2025-03-11T02:33:40.553892-07:00,0.0,10.729947,10729.947 +32844,2025-03-11T02:33:51.284997-07:00,0.0,10.731105,10731.105 +32845,2025-03-11T02:34:02.008750-07:00,0.0,10.723753,10723.753 +32846,2025-03-11T02:34:12.745972-07:00,0.0,10.737222,10737.222 +32847,2025-03-11T02:34:23.474958-07:00,0.0,10.728986,10728.986 +32848,2025-03-11T02:34:34.206754-07:00,0.0,10.731796,10731.796 +32849,2025-03-11T02:34:44.937750-07:00,0.0,10.730996,10730.996 +32850,2025-03-11T02:34:55.666773-07:00,0.0,10.729023,10729.023 +32851,2025-03-11T02:35:06.400758-07:00,0.0,10.733985,10733.985 +32852,2025-03-11T02:35:17.124769-07:00,0.0,10.724011,10724.011 +32853,2025-03-11T02:35:27.858926-07:00,0.0,10.734157,10734.157 +32854,2025-03-11T02:35:38.589246-07:00,0.0,10.73032,10730.32 +32855,2025-03-11T02:35:49.317950-07:00,0.0,10.728704,10728.704 +32856,2025-03-11T02:36:00.053043-07:00,0.0,10.735093,10735.093 +32857,2025-03-11T02:36:10.784992-07:00,0.0,10.731949,10731.949 +32858,2025-03-11T02:36:21.513939-07:00,0.0,10.728947,10728.947 +32859,2025-03-11T02:36:32.254154-07:00,0.0,10.740215,10740.215 +32860,2025-03-11T02:36:42.986751-07:00,0.0,10.732597,10732.597 +32861,2025-03-11T02:36:53.719763-07:00,0.0,10.733012,10733.012 +32862,2025-03-11T02:37:04.444142-07:00,0.0,10.724379,10724.379 +32863,2025-03-11T02:37:15.178964-07:00,0.0,10.734822,10734.822 +32864,2025-03-11T02:37:25.904755-07:00,0.0,10.725791,10725.791 +32865,2025-03-11T02:37:36.643933-07:00,0.0,10.739178,10739.178 +32866,2025-03-11T02:37:47.371751-07:00,0.0,10.727818,10727.818 +32867,2025-03-11T02:37:58.101953-07:00,0.0,10.730202,10730.202 +32868,2025-03-11T02:38:08.834749-07:00,0.0,10.732796,10732.796 +32869,2025-03-11T02:38:19.570866-07:00,0.0,10.736117,10736.117 +32870,2025-03-11T02:38:30.308895-07:00,0.0,10.738029,10738.029 +32871,2025-03-11T02:38:41.037756-07:00,0.0,10.728861,10728.861 +32872,2025-03-11T02:38:51.769580-07:00,0.0,10.731824,10731.824 +32873,2025-03-11T02:39:02.503751-07:00,0.0,10.734171,10734.171 +32874,2025-03-11T02:39:13.234960-07:00,0.0,10.731209,10731.209 +32875,2025-03-11T02:39:23.975902-07:00,0.0,10.740942,10740.942 +32876,2025-03-11T02:39:34.698688-07:00,0.0,10.722786,10722.786 +32877,2025-03-11T02:39:45.427753-07:00,0.0,10.729065,10729.065 +32878,2025-03-11T02:39:56.165752-07:00,0.0,10.737999,10737.999 +32879,2025-03-11T02:40:06.891621-07:00,0.0,10.725869,10725.869 +32880,2025-03-11T02:40:17.630752-07:00,0.0,10.739131,10739.131 +32881,2025-03-11T02:40:28.364935-07:00,0.0,10.734183,10734.183 +32882,2025-03-11T02:40:39.091797-07:00,0.0,10.726862,10726.862 +32883,2025-03-11T02:40:49.823797-07:00,0.0,10.732,10732.0 +32884,2025-03-11T02:41:00.550959-07:00,0.0,10.727162,10727.162 +32885,2025-03-11T02:41:11.279936-07:00,0.0,10.728977,10728.977 +32886,2025-03-11T02:41:22.012761-07:00,0.0,10.732825,10732.825 +32887,2025-03-11T02:41:32.743747-07:00,0.0,10.730986,10730.986 +32888,2025-03-11T02:41:43.473766-07:00,0.0,10.730019,10730.019 +32889,2025-03-11T02:41:54.211065-07:00,0.0,10.737299,10737.299 +32890,2025-03-11T02:42:04.933756-07:00,0.0,10.722691,10722.691 +32891,2025-03-11T02:42:15.673957-07:00,0.0,10.740201,10740.201 +32892,2025-03-11T02:42:26.402954-07:00,0.0,10.728997,10728.997 +32893,2025-03-11T02:42:37.129754-07:00,0.0,10.7268,10726.8 +32894,2025-03-11T02:42:47.869017-07:00,0.0,10.739263,10739.263 +32895,2025-03-11T02:42:58.599920-07:00,0.0,10.730903,10730.903 +32896,2025-03-11T02:43:09.323955-07:00,0.0,10.724035,10724.035 +32897,2025-03-11T02:43:20.061819-07:00,0.0,10.737864,10737.864 +32898,2025-03-11T02:43:30.797322-07:00,0.0,10.735503,10735.503 +32899,2025-03-11T02:43:41.521748-07:00,0.0,10.724426,10724.426 +32900,2025-03-11T02:43:52.245823-07:00,0.0,10.724075,10724.075 +32901,2025-03-11T02:44:02.985511-07:00,0.0,10.739688,10739.688 +32902,2025-03-11T02:44:13.716979-07:00,0.0,10.731468,10731.468 +32903,2025-03-11T02:44:24.441943-07:00,0.0,10.724964,10724.964 +32904,2025-03-11T02:44:35.168383-07:00,0.0,10.72644,10726.44 +32905,2025-03-11T02:44:45.905767-07:00,0.0,10.737384,10737.384 +32906,2025-03-11T02:44:56.636956-07:00,0.0,10.731189,10731.189 +32907,2025-03-11T02:45:07.363115-07:00,0.0,10.726159,10726.159 +32908,2025-03-11T02:45:18.097232-07:00,0.0,10.734117,10734.117 +32909,2025-03-11T02:45:28.820952-07:00,0.0,10.72372,10723.72 +32910,2025-03-11T02:45:39.554924-07:00,0.0,10.733972,10733.972 +32911,2025-03-11T02:45:50.282956-07:00,0.0,10.728032,10728.032 +32912,2025-03-11T02:46:01.016782-07:00,0.0,10.733826,10733.826 +32913,2025-03-11T02:46:11.746927-07:00,0.0,10.730145,10730.145 +32914,2025-03-11T02:46:22.479188-07:00,0.0,10.732261,10732.261 +32915,2025-03-11T02:46:33.214788-07:00,0.0,10.7356,10735.6 +32916,2025-03-11T02:46:43.942888-07:00,0.0,10.7281,10728.1 +32917,2025-03-11T02:46:54.674751-07:00,0.0,10.731863,10731.863 +32918,2025-03-11T02:47:05.410857-07:00,0.0,10.736106,10736.106 +32919,2025-03-11T02:47:16.136757-07:00,0.0,10.7259,10725.9 +32920,2025-03-11T02:47:26.876954-07:00,0.0,10.740197,10740.197 +32921,2025-03-11T02:47:37.608780-07:00,0.0,10.731826,10731.826 +32922,2025-03-11T02:47:48.338160-07:00,0.0,10.72938,10729.38 +32923,2025-03-11T02:47:59.073461-07:00,0.0,10.735301,10735.301 +32924,2025-03-11T02:48:09.796754-07:00,0.0,10.723293,10723.293 +32925,2025-03-11T02:48:20.533750-07:00,0.0,10.736996,10736.996 +32926,2025-03-11T02:48:31.262927-07:00,0.0,10.729177,10729.177 +32927,2025-03-11T02:48:41.988957-07:00,0.0,10.72603,10726.03 +32928,2025-03-11T02:48:52.726749-07:00,0.0,10.737792,10737.792 +32929,2025-03-11T02:49:03.450126-07:00,0.0,10.723377,10723.377 +32930,2025-03-11T02:49:14.190884-07:00,0.0,10.740758,10740.758 +32931,2025-03-11T02:49:24.917754-07:00,0.0,10.72687,10726.87 +32932,2025-03-11T02:49:35.649758-07:00,0.0,10.732004,10732.004 +32933,2025-03-11T02:49:46.385634-07:00,0.0,10.735876,10735.876 +32934,2025-03-11T02:49:57.106965-07:00,0.0,10.721331,10721.331 +32935,2025-03-11T02:50:07.839295-07:00,0.0,10.73233,10732.33 +32936,2025-03-11T02:50:18.577930-07:00,0.0,10.738635,10738.635 +32937,2025-03-11T02:50:29.305928-07:00,0.0,10.727998,10727.998 +32938,2025-03-11T02:50:40.035968-07:00,0.0,10.73004,10730.04 +32939,2025-03-11T02:50:50.761145-07:00,0.0,10.725177,10725.177 +32940,2025-03-11T02:51:01.490756-07:00,0.0,10.729611,10729.611 +32941,2025-03-11T02:51:12.227933-07:00,0.0,10.737177,10737.177 +32942,2025-03-11T02:51:22.951747-07:00,0.0,10.723814,10723.814 +32943,2025-03-11T02:51:33.679972-07:00,0.0,10.728225,10728.225 +32944,2025-03-11T02:51:44.412831-07:00,0.0,10.732859,10732.859 +32945,2025-03-11T02:51:55.144989-07:00,0.0,10.732158,10732.158 +32946,2025-03-11T02:52:05.871862-07:00,0.0,10.726873,10726.873 +32947,2025-03-11T02:52:16.600959-07:00,0.0,10.729097,10729.097 +32948,2025-03-11T02:52:27.340357-07:00,0.0,10.739398,10739.398 +32949,2025-03-11T02:52:38.064749-07:00,0.0,10.724392,10724.392 +32950,2025-03-11T02:52:48.793173-07:00,0.0,10.728424,10728.424 +32951,2025-03-11T02:52:59.522753-07:00,0.0,10.72958,10729.58 +32952,2025-03-11T02:53:10.250850-07:00,0.0,10.728097,10728.097 +32953,2025-03-11T02:53:20.986981-07:00,0.0,10.736131,10736.131 +32954,2025-03-11T02:53:31.720755-07:00,0.0,10.733774,10733.774 +32955,2025-03-11T02:53:42.471041-07:00,0.0,10.750286,10750.286 +32956,2025-03-11T02:53:53.205536-07:00,0.0,10.734495,10734.495 +32957,2025-03-11T02:54:03.933648-07:00,0.0,10.728112,10728.112 +32958,2025-03-11T02:54:14.666699-07:00,0.0,10.733051,10733.051 +32959,2025-03-11T02:54:25.401673-07:00,0.0,10.734974,10734.974 +32960,2025-03-11T02:54:36.127959-07:00,0.0,10.726286,10726.286 +32961,2025-03-11T02:54:46.865741-07:00,0.0,10.737782,10737.782 +32962,2025-03-11T02:54:57.597539-07:00,0.0,10.731798,10731.798 +32963,2025-03-11T02:55:08.333750-07:00,0.0,10.736211,10736.211 +32964,2025-03-11T02:55:19.071687-07:00,0.0,10.737937,10737.937 +32965,2025-03-11T02:55:29.801541-07:00,0.0,10.729854,10729.854 +32966,2025-03-11T02:55:40.539543-07:00,0.0,10.738002,10738.002 +32967,2025-03-11T02:55:51.266234-07:00,0.0,10.726691,10726.691 +32968,2025-03-11T02:56:02.002619-07:00,0.0,10.736385,10736.385 +32969,2025-03-11T02:56:12.729539-07:00,0.0,10.72692,10726.92 +32970,2025-03-11T02:56:23.462832-07:00,0.0,10.733293,10733.293 +32971,2025-03-11T02:56:34.199717-07:00,0.0,10.736885,10736.885 +32972,2025-03-11T02:56:44.934409-07:00,0.0,10.734692,10734.692 +32973,2025-03-11T02:56:55.663540-07:00,0.0,10.729131,10729.131 +32974,2025-03-11T02:57:06.387538-07:00,0.0,10.723998,10723.998 +32975,2025-03-11T02:57:17.126728-07:00,0.0,10.73919,10739.19 +32976,2025-03-11T02:57:27.855539-07:00,0.0,10.728811,10728.811 +32977,2025-03-11T02:57:38.587918-07:00,0.0,10.732379,10732.379 +32978,2025-03-11T02:57:49.314806-07:00,0.0,10.726888,10726.888 +32979,2025-03-11T02:58:00.056832-07:00,0.0,10.742026,10742.026 +32980,2025-03-11T02:58:10.782738-07:00,0.0,10.725906,10725.906 +32981,2025-03-11T02:58:21.511562-07:00,0.0,10.728824,10728.824 +32982,2025-03-11T02:58:32.243738-07:00,0.0,10.732176,10732.176 +32983,2025-03-11T02:58:42.977555-07:00,0.0,10.733817,10733.817 +32984,2025-03-11T02:58:53.710759-07:00,0.0,10.733204,10733.204 +32985,2025-03-11T02:59:04.435538-07:00,0.0,10.724779,10724.779 +32986,2025-03-11T02:59:15.168723-07:00,0.0,10.733185,10733.185 +32987,2025-03-11T02:59:25.902911-07:00,0.0,10.734188,10734.188 +32988,2025-03-11T02:59:36.632535-07:00,0.0,10.729624,10729.624 +32989,2025-03-11T02:59:58.092302-07:00,0.0,21.459767,21459.767 +32990,2025-03-11T03:00:08.821539-07:00,0.0,10.729237,10729.237 +32991,2025-03-11T03:00:19.559825-07:00,0.0,10.738286,10738.286 +32992,2025-03-11T03:00:30.289711-07:00,0.0,10.729886,10729.886 +32993,2025-03-11T03:00:41.012572-07:00,0.0,10.722861,10722.861 +32994,2025-03-11T03:00:51.744055-07:00,0.0,10.731483,10731.483 +32995,2025-03-11T03:01:02.477746-07:00,0.0,10.733691,10733.691 +32996,2025-03-11T03:01:13.204810-07:00,0.0,10.727064,10727.064 +32997,2025-03-11T03:01:23.933725-07:00,0.0,10.728915,10728.915 +32998,2025-03-11T03:01:34.666501-07:00,0.0,10.732776,10732.776 +32999,2025-03-11T03:01:45.402599-07:00,0.0,10.736098,10736.098 +33000,2025-03-11T03:01:56.125534-07:00,0.0,10.722935,10722.935 +33001,2025-03-11T03:02:06.862915-07:00,0.0,10.737381,10737.381 +33002,2025-03-11T03:02:17.592752-07:00,0.0,10.729837,10729.837 +33003,2025-03-11T03:02:28.316762-07:00,0.0,10.72401,10724.01 +33004,2025-03-11T03:02:39.048950-07:00,0.0,10.732188,10732.188 +33005,2025-03-11T03:02:49.788536-07:00,0.0,10.739586,10739.586 +33006,2025-03-11T03:03:00.517780-07:00,0.0,10.729244,10729.244 +33007,2025-03-11T03:03:11.245709-07:00,0.0,10.727929,10727.929 +33008,2025-03-11T03:03:21.975609-07:00,0.0,10.7299,10729.9 +33009,2025-03-11T03:03:32.706571-07:00,0.0,10.730962,10730.962 +33010,2025-03-11T03:03:43.429210-07:00,0.0,10.722639,10722.639 +33011,2025-03-11T03:03:54.164824-07:00,0.0,10.735614,10735.614 +33012,2025-03-11T03:04:04.899578-07:00,0.0,10.734754,10734.754 +33013,2025-03-11T03:04:15.633789-07:00,0.0,10.734211,10734.211 +33014,2025-03-11T03:04:26.357532-07:00,0.0,10.723743,10723.743 +33015,2025-03-11T03:04:37.089540-07:00,0.0,10.732008,10732.008 +33016,2025-03-11T03:04:47.822631-07:00,0.0,10.733091,10733.091 +33017,2025-03-11T03:04:58.562906-07:00,0.0,10.740275,10740.275 +33018,2025-03-11T03:05:09.287745-07:00,0.0,10.724839,10724.839 +33019,2025-03-11T03:05:20.025538-07:00,0.0,10.737793,10737.793 +33020,2025-03-11T03:05:30.758974-07:00,0.0,10.733436,10733.436 +33021,2025-03-11T03:05:41.493599-07:00,0.0,10.734625,10734.625 +33022,2025-03-11T03:05:52.229691-07:00,0.0,10.736092,10736.092 +33023,2025-03-11T03:06:02.962719-07:00,0.0,10.733028,10733.028 +33024,2025-03-11T03:06:13.693723-07:00,0.0,10.731004,10731.004 +33025,2025-03-11T03:06:24.428740-07:00,0.0,10.735017,10735.017 +33026,2025-03-11T03:06:35.162538-07:00,0.0,10.733798,10733.798 +33027,2025-03-11T03:06:45.893554-07:00,0.0,10.731016,10731.016 +33028,2025-03-11T03:06:56.622538-07:00,0.0,10.728984,10728.984 +33029,2025-03-11T03:07:07.354539-07:00,0.0,10.732001,10732.001 +33030,2025-03-11T03:07:18.085954-07:00,0.0,10.731415,10731.415 +33031,2025-03-11T03:07:28.822151-07:00,0.0,10.736197,10736.197 +33032,2025-03-11T03:07:39.556744-07:00,0.0,10.734593,10734.593 +33033,2025-03-11T03:07:50.290535-07:00,0.0,10.733791,10733.791 +33034,2025-03-11T03:08:01.018715-07:00,0.0,10.72818,10728.18 +33035,2025-03-11T03:08:11.745748-07:00,0.0,10.727033,10727.033 +33036,2025-03-11T03:08:22.479535-07:00,0.0,10.733787,10733.787 +33037,2025-03-11T03:08:33.215972-07:00,0.0,10.736437,10736.437 +33038,2025-03-11T03:08:43.948316-07:00,0.0,10.732344,10732.344 +33039,2025-03-11T03:08:54.687303-07:00,0.0,10.738987,10738.987 +33040,2025-03-11T03:09:05.417532-07:00,0.0,10.730229,10730.229 +33041,2025-03-11T03:09:16.150669-07:00,0.0,10.733137,10733.137 +33042,2025-03-11T03:09:26.885555-07:00,0.0,10.734886,10734.886 +33043,2025-03-11T03:09:37.617608-07:00,0.0,10.732053,10732.053 +33044,2025-03-11T03:09:48.356743-07:00,0.0,10.739135,10739.135 +33045,2025-03-11T03:09:59.081202-07:00,0.0,10.724459,10724.459 +33046,2025-03-11T03:10:09.819840-07:00,0.0,10.738638,10738.638 +33047,2025-03-11T03:10:20.552536-07:00,0.0,10.732696,10732.696 +33048,2025-03-11T03:10:31.285534-07:00,0.0,10.732998,10732.998 +33049,2025-03-11T03:10:42.013534-07:00,0.0,10.728,10728.0 +33050,2025-03-11T03:10:52.745536-07:00,0.0,10.732002,10732.002 +33051,2025-03-11T03:11:03.477309-07:00,0.0,10.731773,10731.773 +33052,2025-03-11T03:11:14.206601-07:00,0.0,10.729292,10729.292 +33053,2025-03-11T03:11:24.935538-07:00,0.0,10.728937,10728.937 +33054,2025-03-11T03:11:35.661711-07:00,0.0,10.726173,10726.173 +33055,2025-03-11T03:11:46.397584-07:00,0.0,10.735873,10735.873 +33056,2025-03-11T03:11:57.134531-07:00,0.0,10.736947,10736.947 +33057,2025-03-11T03:12:07.858755-07:00,0.0,10.724224,10724.224 +33058,2025-03-11T03:12:18.598944-07:00,0.0,10.740189,10740.189 +33059,2025-03-11T03:12:29.329535-07:00,0.0,10.730591,10730.591 +33060,2025-03-11T03:12:40.057713-07:00,0.0,10.728178,10728.178 +33061,2025-03-11T03:12:50.781484-07:00,0.0,10.723771,10723.771 +33062,2025-03-11T03:13:01.513538-07:00,0.0,10.732054,10732.054 +33063,2025-03-11T03:13:12.242727-07:00,0.0,10.729189,10729.189 +33064,2025-03-11T03:13:22.970609-07:00,0.0,10.727882,10727.882 +33065,2025-03-11T03:13:33.708537-07:00,0.0,10.737928,10737.928 +33066,2025-03-11T03:13:44.432830-07:00,0.0,10.724293,10724.293 +33067,2025-03-11T03:13:55.170735-07:00,0.0,10.737905,10737.905 +33068,2025-03-11T03:14:05.901823-07:00,0.0,10.731088,10731.088 +33069,2025-03-11T03:14:16.629716-07:00,0.0,10.727893,10727.893 +33070,2025-03-11T03:14:27.361128-07:00,0.0,10.731412,10731.412 +33071,2025-03-11T03:14:38.085827-07:00,0.0,10.724699,10724.699 +33072,2025-03-11T03:14:48.818541-07:00,0.0,10.732714,10732.714 +33073,2025-03-11T03:14:59.544065-07:00,0.0,10.725524,10725.524 +33074,2025-03-11T03:15:10.278535-07:00,0.0,10.73447,10734.47 +33075,2025-03-11T03:15:21.001724-07:00,0.0,10.723189,10723.189 +33076,2025-03-11T03:15:31.738866-07:00,0.0,10.737142,10737.142 +33077,2025-03-11T03:15:42.465678-07:00,0.0,10.726812,10726.812 +33078,2025-03-11T03:15:53.194727-07:00,0.0,10.729049,10729.049 +33079,2025-03-11T03:16:03.926663-07:00,0.0,10.731936,10731.936 +33080,2025-03-11T03:16:14.648759-07:00,0.0,10.722096,10722.096 +33081,2025-03-11T03:16:25.386574-07:00,0.0,10.737815,10737.815 +33082,2025-03-11T03:16:36.110534-07:00,0.0,10.72396,10723.96 +33083,2025-03-11T03:16:46.837543-07:00,0.0,10.727009,10727.009 +33084,2025-03-11T03:16:57.564083-07:00,0.0,10.72654,10726.54 +33085,2025-03-11T03:17:08.302538-07:00,0.0,10.738455,10738.455 +33086,2025-03-11T03:17:19.028728-07:00,0.0,10.72619,10726.19 +33087,2025-03-11T03:17:29.757874-07:00,0.0,10.729146,10729.146 +33088,2025-03-11T03:17:40.494535-07:00,0.0,10.736661,10736.661 +33089,2025-03-11T03:17:51.220540-07:00,0.0,10.726005,10726.005 +33090,2025-03-11T03:18:01.955721-07:00,0.0,10.735181,10735.181 +33091,2025-03-11T03:18:12.685595-07:00,0.0,10.729874,10729.874 +33092,2025-03-11T03:18:23.406995-07:00,0.0,10.7214,10721.4 +33093,2025-03-11T03:18:34.136536-07:00,0.0,10.729541,10729.541 +33094,2025-03-11T03:18:44.874012-07:00,0.0,10.737476,10737.476 +33095,2025-03-11T03:18:55.598542-07:00,0.0,10.72453,10724.53 +33096,2025-03-11T03:19:06.326538-07:00,0.0,10.727996,10727.996 +33097,2025-03-11T03:19:17.057746-07:00,0.0,10.731208,10731.208 +33098,2025-03-11T03:19:27.789743-07:00,0.0,10.731997,10731.997 +33099,2025-03-11T03:19:38.515540-07:00,0.0,10.725797,10725.797 +33100,2025-03-11T03:19:49.249536-07:00,0.0,10.733996,10733.996 +33101,2025-03-11T03:19:59.978721-07:00,0.0,10.729185,10729.185 +33102,2025-03-11T03:20:10.706535-07:00,0.0,10.727814,10727.814 +33103,2025-03-11T03:20:21.441540-07:00,0.0,10.735005,10735.005 +33104,2025-03-11T03:20:32.170996-07:00,0.0,10.729456,10729.456 +33105,2025-03-11T03:20:42.902735-07:00,0.0,10.731739,10731.739 +33106,2025-03-11T03:20:53.633536-07:00,0.0,10.730801,10730.801 +33107,2025-03-11T03:21:04.363540-07:00,0.0,10.730004,10730.004 +33108,2025-03-11T03:21:15.088532-07:00,0.0,10.724992,10724.992 +33109,2025-03-11T03:21:25.817600-07:00,0.0,10.729068,10729.068 +33110,2025-03-11T03:21:36.548719-07:00,0.0,10.731119,10731.119 +33111,2025-03-11T03:21:47.276563-07:00,0.0,10.727844,10727.844 +33112,2025-03-11T03:21:58.007696-07:00,0.0,10.731133,10731.133 +33113,2025-03-11T03:22:08.734561-07:00,0.0,10.726865,10726.865 +33114,2025-03-11T03:22:19.458696-07:00,0.0,10.724135,10724.135 +33115,2025-03-11T03:22:30.190712-07:00,0.0,10.732016,10732.016 +33116,2025-03-11T03:22:40.911717-07:00,0.0,10.721005,10721.005 +33117,2025-03-11T03:22:51.642680-07:00,0.0,10.730963,10730.963 +33118,2025-03-11T03:23:02.372752-07:00,0.0,10.730072,10730.072 +33119,2025-03-11T03:23:13.097541-07:00,0.0,10.724789,10724.789 +33120,2025-03-11T03:23:23.836626-07:00,0.0,10.739085,10739.085 +33121,2025-03-11T03:23:34.561708-07:00,0.0,10.725082,10725.082 +33122,2025-03-11T03:23:45.291537-07:00,0.0,10.729829,10729.829 +33123,2025-03-11T03:23:56.009936-07:00,0.0,10.718399,10718.399 +33124,2025-03-11T03:24:06.741698-07:00,0.0,10.731762,10731.762 +33125,2025-03-11T03:24:17.471628-07:00,0.0,10.72993,10729.93 +33126,2025-03-11T03:24:28.191738-07:00,0.0,10.72011,10720.11 +33127,2025-03-11T03:24:38.919599-07:00,0.0,10.727861,10727.861 +33128,2025-03-11T03:24:49.653538-07:00,0.0,10.733939,10733.939 +33129,2025-03-11T03:25:00.379799-07:00,0.0,10.726261,10726.261 +33130,2025-03-11T03:25:11.108595-07:00,0.0,10.728796,10728.796 +33131,2025-03-11T03:25:21.832725-07:00,0.0,10.72413,10724.13 +33132,2025-03-11T03:25:32.560683-07:00,0.0,10.727958,10727.958 +33133,2025-03-11T03:25:43.290536-07:00,0.0,10.729853,10729.853 +33134,2025-03-11T03:25:54.015140-07:00,0.0,10.724604,10724.604 +33135,2025-03-11T03:26:04.741603-07:00,0.0,10.726463,10726.463 +33136,2025-03-11T03:26:15.466380-07:00,0.0,10.724777,10724.777 +33137,2025-03-11T03:26:26.198535-07:00,0.0,10.732155,10732.155 +33138,2025-03-11T03:26:36.933539-07:00,0.0,10.735004,10735.004 +33139,2025-03-11T03:26:47.660733-07:00,0.0,10.727194,10727.194 +33140,2025-03-11T03:26:58.385539-07:00,0.0,10.724806,10724.806 +33141,2025-03-11T03:27:09.113771-07:00,0.0,10.728232,10728.232 +33142,2025-03-11T03:27:19.844533-07:00,0.0,10.730762,10730.762 +33143,2025-03-11T03:27:30.573639-07:00,0.0,10.729106,10729.106 +33144,2025-03-11T03:27:41.299764-07:00,0.0,10.726125,10726.125 +33145,2025-03-11T03:27:52.035566-07:00,0.0,10.735802,10735.802 +33146,2025-03-11T03:28:02.757539-07:00,0.0,10.721973,10721.973 +33147,2025-03-11T03:28:13.498718-07:00,0.0,10.741179,10741.179 +33148,2025-03-11T03:28:24.221535-07:00,0.0,10.722817,10722.817 +33149,2025-03-11T03:28:34.953871-07:00,0.0,10.732336,10732.336 +33150,2025-03-11T03:28:45.686539-07:00,0.0,10.732668,10732.668 +33151,2025-03-11T03:28:56.418562-07:00,0.0,10.732023,10732.023 +33152,2025-03-11T03:29:07.140689-07:00,0.0,10.722127,10722.127 +33153,2025-03-11T03:29:17.870747-07:00,0.0,10.730058,10730.058 +33154,2025-03-11T03:29:28.600609-07:00,0.0,10.729862,10729.862 +33155,2025-03-11T03:29:39.333751-07:00,0.0,10.733142,10733.142 +33156,2025-03-11T03:29:50.065740-07:00,0.0,10.731989,10731.989 +33157,2025-03-11T03:30:00.801728-07:00,0.0,10.735988,10735.988 +33158,2025-03-11T03:30:11.519036-07:00,0.0,10.717308,10717.308 +33159,2025-03-11T03:30:22.248879-07:00,0.0,10.729843,10729.843 +33160,2025-03-11T03:30:32.989736-07:00,0.0,10.740857,10740.857 +33161,2025-03-11T03:30:43.717987-07:00,0.0,10.728251,10728.251 +33162,2025-03-11T03:30:54.442719-07:00,0.0,10.724732,10724.732 +33163,2025-03-11T03:31:05.173737-07:00,0.0,10.731018,10731.018 +33164,2025-03-11T03:31:15.912752-07:00,0.0,10.739015,10739.015 +33165,2025-03-11T03:31:26.642897-07:00,0.0,10.730145,10730.145 +33166,2025-03-11T03:31:48.090538-07:00,0.0,21.447641,21447.641 +33167,2025-03-11T03:31:58.820942-07:00,0.0,10.730404,10730.404 +33168,2025-03-11T03:32:20.278726-07:00,0.0,21.457784,21457.784 +33169,2025-03-11T03:32:31.007539-07:00,0.0,10.728813,10728.813 +33170,2025-03-11T03:32:41.741535-07:00,0.0,10.733996,10733.996 +33171,2025-03-11T03:32:52.469535-07:00,0.0,10.728,10728.0 +33172,2025-03-11T03:33:03.198784-07:00,0.0,10.729249,10729.249 +33173,2025-03-11T03:33:35.378736-07:00,0.0,32.179952,32179.952 +33174,2025-03-11T03:33:46.108607-07:00,0.0,10.729871,10729.871 +33175,2025-03-11T03:33:56.838634-07:00,0.0,10.730027,10730.027 +33176,2025-03-11T03:34:50.487538-07:00,0.0,53.648904,53648.904 +33177,2025-03-11T03:35:01.221044-07:00,0.0,10.733506,10733.506 +33178,2025-03-11T03:35:11.948626-07:00,0.0,10.727582,10727.582 +33179,2025-03-11T03:35:22.680759-07:00,0.0,10.732133,10732.133 +33180,2025-03-11T03:35:33.402737-07:00,0.0,10.721978,10721.978 +33181,2025-03-11T03:35:44.138643-07:00,0.0,10.735906,10735.906 +33182,2025-03-11T03:35:54.865710-07:00,0.0,10.727067,10727.067 +33183,2025-03-11T03:36:05.598560-07:00,0.0,10.73285,10732.85 +33184,2025-03-11T03:36:16.322539-07:00,0.0,10.723979,10723.979 +33185,2025-03-11T03:36:27.056726-07:00,0.0,10.734187,10734.187 +33186,2025-03-11T03:36:37.779532-07:00,0.0,10.722806,10722.806 +33187,2025-03-11T03:36:48.509538-07:00,0.0,10.730006,10730.006 +33188,2025-03-11T03:36:59.228554-07:00,0.0,10.719016,10719.016 +33189,2025-03-11T03:37:09.964532-07:00,0.0,10.735978,10735.978 +33190,2025-03-11T03:37:20.685806-07:00,0.0,10.721274,10721.274 +33191,2025-03-11T03:37:31.409711-07:00,0.0,10.723905,10723.905 +33192,2025-03-11T03:37:42.135862-07:00,0.0,10.726151,10726.151 +33193,2025-03-11T03:37:52.862530-07:00,0.0,10.726668,10726.668 +33194,2025-03-11T03:38:03.594539-07:00,0.0,10.732009,10732.009 +33195,2025-03-11T03:38:14.329298-07:00,0.0,10.734759,10734.759 +33196,2025-03-11T03:38:25.050565-07:00,0.0,10.721267,10721.267 +33197,2025-03-11T03:38:35.778534-07:00,0.0,10.727969,10727.969 +33198,2025-03-11T03:38:46.498537-07:00,0.0,10.720003,10720.003 +33199,2025-03-11T03:38:57.228532-07:00,0.0,10.729995,10729.995 +33200,2025-03-11T03:39:07.955210-07:00,0.0,10.726678,10726.678 +33201,2025-03-11T03:39:18.675604-07:00,0.0,10.720394,10720.394 +33202,2025-03-11T03:39:29.406125-07:00,0.0,10.730521,10730.521 +33203,2025-03-11T03:39:40.127535-07:00,0.0,10.72141,10721.41 +33204,2025-03-11T03:39:50.856733-07:00,0.0,10.729198,10729.198 +33205,2025-03-11T03:40:01.576538-07:00,0.0,10.719805,10719.805 +33206,2025-03-11T03:40:12.304538-07:00,0.0,10.728,10728.0 +33207,2025-03-11T03:40:23.020749-07:00,0.0,10.716211,10716.211 +33208,2025-03-11T03:40:33.744408-07:00,0.0,10.723659,10723.659 +33209,2025-03-11T03:40:44.471738-07:00,0.0,10.72733,10727.33 +33210,2025-03-11T03:40:55.202610-07:00,0.0,10.730872,10730.872 +33211,2025-03-11T03:41:05.925732-07:00,0.0,10.723122,10723.122 +33212,2025-03-11T03:41:16.647831-07:00,0.0,10.722099,10722.099 +33213,2025-03-11T03:41:27.375717-07:00,0.0,10.727886,10727.886 +33214,2025-03-11T03:41:38.101599-07:00,0.0,10.725882,10725.882 +33215,2025-03-11T03:41:48.827749-07:00,0.0,10.72615,10726.15 +33216,2025-03-11T03:41:59.551767-07:00,0.0,10.724018,10724.018 +33217,2025-03-11T03:42:10.279668-07:00,0.0,10.727901,10727.901 +33218,2025-03-11T03:42:21.005715-07:00,0.0,10.726047,10726.047 +33219,2025-03-11T03:42:31.727531-07:00,0.0,10.721816,10721.816 +33220,2025-03-11T03:42:42.455534-07:00,0.0,10.728003,10728.003 +33221,2025-03-11T03:42:53.182894-07:00,0.0,10.72736,10727.36 +33222,2025-03-11T03:43:03.908105-07:00,0.0,10.725211,10725.211 +33223,2025-03-11T03:43:14.630583-07:00,0.0,10.722478,10722.478 +33224,2025-03-11T03:43:25.357605-07:00,0.0,10.727022,10727.022 +33225,2025-03-11T03:43:36.082703-07:00,0.0,10.725098,10725.098 +33226,2025-03-11T03:43:46.808065-07:00,0.0,10.725362,10725.362 +33227,2025-03-11T03:43:57.534726-07:00,0.0,10.726661,10726.661 +33228,2025-03-11T03:44:08.267191-07:00,0.0,10.732465,10732.465 +33229,2025-03-11T03:44:18.986535-07:00,0.0,10.719344,10719.344 +33230,2025-03-11T03:44:29.714712-07:00,0.0,10.728177,10728.177 +33231,2025-03-11T03:44:40.442746-07:00,0.0,10.728034,10728.034 +33232,2025-03-11T03:44:51.167767-07:00,0.0,10.725021,10725.021 +33233,2025-03-11T03:45:01.892535-07:00,0.0,10.724768,10724.768 +33234,2025-03-11T03:45:12.620686-07:00,0.0,10.728151,10728.151 +33235,2025-03-11T03:45:23.346447-07:00,0.0,10.725761,10725.761 +33236,2025-03-11T03:45:34.065285-07:00,0.0,10.718838,10718.838 +33237,2025-03-11T03:45:44.793907-07:00,0.0,10.728622,10728.622 +33238,2025-03-11T03:45:55.522740-07:00,0.0,10.728833,10728.833 +33239,2025-03-11T03:46:06.250537-07:00,0.0,10.727797,10727.797 +33240,2025-03-11T03:46:16.974343-07:00,0.0,10.723806,10723.806 +33241,2025-03-11T03:46:27.696842-07:00,0.0,10.722499,10722.499 +33242,2025-03-11T03:46:38.425420-07:00,0.0,10.728578,10728.578 +33243,2025-03-11T03:46:49.145558-07:00,0.0,10.720138,10720.138 +33244,2025-03-11T03:46:59.875706-07:00,0.0,10.730148,10730.148 +33245,2025-03-11T03:47:10.608651-07:00,0.0,10.732945,10732.945 +33246,2025-03-11T03:47:21.335603-07:00,0.0,10.726952,10726.952 +33247,2025-03-11T03:47:32.061620-07:00,0.0,10.726017,10726.017 +33248,2025-03-11T03:47:42.780601-07:00,0.0,10.718981,10718.981 +33249,2025-03-11T03:47:53.512694-07:00,0.0,10.732093,10732.093 +33250,2025-03-11T03:48:04.241029-07:00,0.0,10.728335,10728.335 +33251,2025-03-11T03:48:14.964781-07:00,0.0,10.723752,10723.752 +33252,2025-03-11T03:48:25.692577-07:00,0.0,10.727796,10727.796 +33253,2025-03-11T03:48:36.422738-07:00,0.0,10.730161,10730.161 +33254,2025-03-11T03:48:47.144719-07:00,0.0,10.721981,10721.981 +33255,2025-03-11T03:48:57.869535-07:00,0.0,10.724816,10724.816 +33256,2025-03-11T03:49:08.597723-07:00,0.0,10.728188,10728.188 +33257,2025-03-11T03:49:19.324596-07:00,0.0,10.726873,10726.873 +33258,2025-03-11T03:49:30.043534-07:00,0.0,10.718938,10718.938 +33259,2025-03-11T03:49:40.777785-07:00,0.0,10.734251,10734.251 +33260,2025-03-11T03:49:51.502669-07:00,0.0,10.724884,10724.884 +33261,2025-03-11T03:50:02.228768-07:00,0.0,10.726099,10726.099 +33262,2025-03-11T03:50:12.951538-07:00,0.0,10.72277,10722.77 +33263,2025-03-11T03:50:23.676750-07:00,0.0,10.725212,10725.212 +33264,2025-03-11T03:50:34.408376-07:00,0.0,10.731626,10731.626 +33265,2025-03-11T03:50:45.140563-07:00,0.0,10.732187,10732.187 +33266,2025-03-11T03:50:55.864714-07:00,0.0,10.724151,10724.151 +33267,2025-03-11T03:51:06.596536-07:00,0.0,10.731822,10731.822 +33268,2025-03-11T03:51:17.322537-07:00,0.0,10.726001,10726.001 +33269,2025-03-11T03:51:28.039781-07:00,0.0,10.717244,10717.244 +33270,2025-03-11T03:51:38.772535-07:00,0.0,10.732754,10732.754 +33271,2025-03-11T03:51:49.496094-07:00,0.0,10.723559,10723.559 +33272,2025-03-11T03:52:00.222564-07:00,0.0,10.72647,10726.47 +33273,2025-03-11T03:52:10.954602-07:00,0.0,10.732038,10732.038 +33274,2025-03-11T03:52:21.676629-07:00,0.0,10.722027,10722.027 +33275,2025-03-11T03:52:32.405532-07:00,0.0,10.728903,10728.903 +33276,2025-03-11T03:52:43.126842-07:00,0.0,10.72131,10721.31 +33277,2025-03-11T03:52:53.852613-07:00,0.0,10.725771,10725.771 +33278,2025-03-11T03:53:04.583750-07:00,0.0,10.731137,10731.137 +33279,2025-03-11T03:53:15.308566-07:00,0.0,10.724816,10724.816 +33280,2025-03-11T03:53:26.030564-07:00,0.0,10.721998,10721.998 +33281,2025-03-11T03:53:36.725336-07:00,0.0,10.694772,10694.772 +33282,2025-03-11T03:53:47.450152-07:00,0.0,10.724816,10724.816 +33283,2025-03-11T03:53:58.175165-07:00,0.0,10.725013,10725.013 +33284,2025-03-11T03:54:08.908210-07:00,0.0,10.733045,10733.045 +33285,2025-03-11T03:54:19.624506-07:00,0.0,10.716296,10716.296 +33286,2025-03-11T03:54:30.352160-07:00,0.0,10.727654,10727.654 +33287,2025-03-11T03:54:41.082368-07:00,0.0,10.730208,10730.208 +33288,2025-03-11T03:54:51.812698-07:00,0.0,10.73033,10730.33 +33289,2025-03-11T03:55:02.530146-07:00,0.0,10.717448,10717.448 +33290,2025-03-11T03:55:13.254325-07:00,0.0,10.724179,10724.179 +33291,2025-03-11T03:55:23.982151-07:00,0.0,10.727826,10727.826 +33292,2025-03-11T03:55:34.714220-07:00,0.0,10.732069,10732.069 +33293,2025-03-11T03:55:45.442487-07:00,0.0,10.728267,10728.267 +33294,2025-03-11T03:55:56.167148-07:00,0.0,10.724661,10724.661 +33295,2025-03-11T03:56:06.894353-07:00,0.0,10.727205,10727.205 +33296,2025-03-11T03:56:17.625058-07:00,0.0,10.730705,10730.705 +33297,2025-03-11T03:56:28.354150-07:00,0.0,10.729092,10729.092 +33298,2025-03-11T03:56:39.080154-07:00,0.0,10.726004,10726.004 +33299,2025-03-11T03:56:49.819344-07:00,0.0,10.73919,10739.19 +33300,2025-03-11T03:57:00.543216-07:00,0.0,10.723872,10723.872 +33301,2025-03-11T03:57:11.278331-07:00,0.0,10.735115,10735.115 +33302,2025-03-11T03:57:22.009332-07:00,0.0,10.731001,10731.001 +33303,2025-03-11T03:57:32.737297-07:00,0.0,10.727965,10727.965 +33304,2025-03-11T03:57:43.465154-07:00,0.0,10.727857,10727.857 +33305,2025-03-11T03:57:54.198749-07:00,0.0,10.733595,10733.595 +33306,2025-03-11T03:58:04.927688-07:00,0.0,10.728939,10728.939 +33307,2025-03-11T03:58:15.660562-07:00,0.0,10.732874,10732.874 +33308,2025-03-11T03:58:26.385185-07:00,0.0,10.724623,10724.623 +33309,2025-03-11T03:58:37.107149-07:00,0.0,10.721964,10721.964 +33310,2025-03-11T03:58:47.840319-07:00,0.0,10.73317,10733.17 +33311,2025-03-11T03:58:58.565367-07:00,0.0,10.725048,10725.048 +33312,2025-03-11T03:59:09.295425-07:00,0.0,10.730058,10730.058 +33313,2025-03-11T03:59:20.028329-07:00,0.0,10.732904,10732.904 +33314,2025-03-11T03:59:30.747691-07:00,0.0,10.719362,10719.362 +33315,2025-03-11T03:59:41.476365-07:00,0.0,10.728674,10728.674 +33316,2025-03-11T03:59:52.209269-07:00,0.0,10.732904,10732.904 +33317,2025-03-11T04:00:02.930634-07:00,0.0,10.721365,10721.365 +33318,2025-03-11T04:00:13.670380-07:00,0.0,10.739746,10739.746 +33319,2025-03-11T04:00:24.396154-07:00,0.0,10.725774,10725.774 +33320,2025-03-11T04:00:35.122514-07:00,0.0,10.72636,10726.36 +33321,2025-03-11T04:00:45.859326-07:00,0.0,10.736812,10736.812 +33322,2025-03-11T04:00:56.583816-07:00,0.0,10.72449,10724.49 +33323,2025-03-11T04:01:07.314073-07:00,0.0,10.730257,10730.257 +33324,2025-03-11T04:01:18.055370-07:00,0.0,10.741297,10741.297 +33325,2025-03-11T04:01:28.780381-07:00,0.0,10.725011,10725.011 +33326,2025-03-11T04:01:39.515154-07:00,0.0,10.734773,10734.773 +33327,2025-03-11T04:01:50.240339-07:00,0.0,10.725185,10725.185 +33328,2025-03-11T04:02:00.968155-07:00,0.0,10.727816,10727.816 +33329,2025-03-11T04:02:11.704156-07:00,0.0,10.736001,10736.001 +33330,2025-03-11T04:02:22.433539-07:00,0.0,10.729383,10729.383 +33331,2025-03-11T04:02:33.163150-07:00,0.0,10.729611,10729.611 +33332,2025-03-11T04:02:43.892303-07:00,0.0,10.729153,10729.153 +33333,2025-03-11T04:02:54.617086-07:00,0.0,10.724783,10724.783 +33334,2025-03-11T04:03:05.350151-07:00,0.0,10.733065,10733.065 +33335,2025-03-11T04:03:16.079350-07:00,0.0,10.729199,10729.199 +33336,2025-03-11T04:03:26.806027-07:00,0.0,10.726677,10726.677 +33337,2025-03-11T04:03:37.537221-07:00,0.0,10.731194,10731.194 +33338,2025-03-11T04:03:48.268222-07:00,0.0,10.731001,10731.001 +33339,2025-03-11T04:03:59.001339-07:00,0.0,10.733117,10733.117 +33340,2025-03-11T04:04:09.727153-07:00,0.0,10.725814,10725.814 +33341,2025-03-11T04:04:20.455333-07:00,0.0,10.72818,10728.18 +33342,2025-03-11T04:04:31.188660-07:00,0.0,10.733327,10733.327 +33343,2025-03-11T04:04:41.913152-07:00,0.0,10.724492,10724.492 +33344,2025-03-11T04:04:52.645175-07:00,0.0,10.732023,10732.023 +33345,2025-03-11T04:05:03.374245-07:00,0.0,10.72907,10729.07 +33346,2025-03-11T04:05:14.108149-07:00,0.0,10.733904,10733.904 +33347,2025-03-11T04:05:24.844024-07:00,0.0,10.735875,10735.875 +33348,2025-03-11T04:05:35.563150-07:00,0.0,10.719126,10719.126 +33349,2025-03-11T04:05:46.295153-07:00,0.0,10.732003,10732.003 +33350,2025-03-11T04:05:57.025542-07:00,0.0,10.730389,10730.389 +33351,2025-03-11T04:06:07.758485-07:00,0.0,10.732943,10732.943 +33352,2025-03-11T04:06:18.482154-07:00,0.0,10.723669,10723.669 +33353,2025-03-11T04:06:29.219352-07:00,0.0,10.737198,10737.198 +33354,2025-03-11T04:06:39.948150-07:00,0.0,10.728798,10728.798 +33355,2025-03-11T04:06:50.681360-07:00,0.0,10.73321,10733.21 +33356,2025-03-11T04:07:01.405373-07:00,0.0,10.724013,10724.013 +33357,2025-03-11T04:07:12.138181-07:00,0.0,10.732808,10732.808 +33358,2025-03-11T04:07:22.859543-07:00,0.0,10.721362,10721.362 +33359,2025-03-11T04:07:33.586225-07:00,0.0,10.726682,10726.682 +33360,2025-03-11T04:07:44.314673-07:00,0.0,10.728448,10728.448 +33361,2025-03-11T04:07:55.044471-07:00,0.0,10.729798,10729.798 +33362,2025-03-11T04:08:05.774398-07:00,0.0,10.729927,10729.927 +33363,2025-03-11T04:08:16.505322-07:00,0.0,10.730924,10730.924 +33364,2025-03-11T04:08:27.233324-07:00,0.0,10.728002,10728.002 +33365,2025-03-11T04:08:37.958146-07:00,0.0,10.724822,10724.822 +33366,2025-03-11T04:08:48.687923-07:00,0.0,10.729777,10729.777 +33367,2025-03-11T04:08:59.418346-07:00,0.0,10.730423,10730.423 +33368,2025-03-11T04:09:10.145153-07:00,0.0,10.726807,10726.807 +33369,2025-03-11T04:09:20.873357-07:00,0.0,10.728204,10728.204 +33370,2025-03-11T04:09:31.594346-07:00,0.0,10.720989,10720.989 +33371,2025-03-11T04:09:42.326150-07:00,0.0,10.731804,10731.804 +33372,2025-03-11T04:09:53.057442-07:00,0.0,10.731292,10731.292 +33373,2025-03-11T04:10:03.785150-07:00,0.0,10.727708,10727.708 +33374,2025-03-11T04:10:14.515247-07:00,0.0,10.730097,10730.097 +33375,2025-03-11T04:10:25.240178-07:00,0.0,10.724931,10724.931 +33376,2025-03-11T04:10:35.965286-07:00,0.0,10.725108,10725.108 +33377,2025-03-11T04:10:46.697233-07:00,0.0,10.731947,10731.947 +33378,2025-03-11T04:10:57.422153-07:00,0.0,10.72492,10724.92 +33379,2025-03-11T04:11:08.156211-07:00,0.0,10.734058,10734.058 +33380,2025-03-11T04:11:18.888871-07:00,0.0,10.73266,10732.66 +33381,2025-03-11T04:11:29.611415-07:00,0.0,10.722544,10722.544 +33382,2025-03-11T04:11:40.343152-07:00,0.0,10.731737,10731.737 +33383,2025-03-11T04:11:51.074342-07:00,0.0,10.73119,10731.19 +33384,2025-03-11T04:12:01.802150-07:00,0.0,10.727808,10727.808 +33385,2025-03-11T04:12:12.526436-07:00,0.0,10.724286,10724.286 +33386,2025-03-11T04:12:23.265357-07:00,0.0,10.738921,10738.921 +33387,2025-03-11T04:12:33.989332-07:00,0.0,10.723975,10723.975 +33388,2025-03-11T04:12:44.716158-07:00,0.0,10.726826,10726.826 +33389,2025-03-11T04:12:55.449317-07:00,0.0,10.733159,10733.159 +33390,2025-03-11T04:13:06.177155-07:00,0.0,10.727838,10727.838 +33391,2025-03-11T04:13:16.904051-07:00,0.0,10.726896,10726.896 +33392,2025-03-11T04:13:27.624148-07:00,0.0,10.720097,10720.097 +33393,2025-03-11T04:13:38.356232-07:00,0.0,10.732084,10732.084 +33394,2025-03-11T04:13:49.088541-07:00,0.0,10.732309,10732.309 +33395,2025-03-11T04:13:59.815154-07:00,0.0,10.726613,10726.613 +33396,2025-03-11T04:14:10.540479-07:00,0.0,10.725325,10725.325 +33397,2025-03-11T04:14:21.266176-07:00,0.0,10.725697,10725.697 +33398,2025-03-11T04:14:31.992154-07:00,0.0,10.725978,10725.978 +33399,2025-03-11T04:14:42.719670-07:00,0.0,10.727516,10727.516 +33400,2025-03-11T04:14:53.445150-07:00,0.0,10.72548,10725.48 +33401,2025-03-11T04:15:04.178331-07:00,0.0,10.733181,10733.181 +33402,2025-03-11T04:15:14.906153-07:00,0.0,10.727822,10727.822 +33403,2025-03-11T04:15:25.636181-07:00,0.0,10.730028,10730.028 +33404,2025-03-11T04:15:36.365351-07:00,0.0,10.72917,10729.17 +33405,2025-03-11T04:15:47.088363-07:00,0.0,10.723012,10723.012 +33406,2025-03-11T04:15:57.819744-07:00,0.0,10.731381,10731.381 +33407,2025-03-11T04:16:08.559093-07:00,0.0,10.739349,10739.349 +33408,2025-03-11T04:16:19.289210-07:00,0.0,10.730117,10730.117 +33409,2025-03-11T04:16:30.017303-07:00,0.0,10.728093,10728.093 +33410,2025-03-11T04:16:40.744590-07:00,0.0,10.727287,10727.287 +33411,2025-03-11T04:16:51.472622-07:00,0.0,10.728032,10728.032 +33412,2025-03-11T04:17:02.194337-07:00,0.0,10.721715,10721.715 +33413,2025-03-11T04:17:12.924348-07:00,0.0,10.730011,10730.011 +33414,2025-03-11T04:17:23.657180-07:00,0.0,10.732832,10732.832 +33415,2025-03-11T04:17:34.384475-07:00,0.0,10.727295,10727.295 +33416,2025-03-11T04:17:45.106368-07:00,0.0,10.721893,10721.893 +33417,2025-03-11T04:17:55.835337-07:00,0.0,10.728969,10728.969 +33418,2025-03-11T04:18:06.562150-07:00,0.0,10.726813,10726.813 +33419,2025-03-11T04:18:17.284569-07:00,0.0,10.722419,10722.419 +33420,2025-03-11T04:18:28.017237-07:00,0.0,10.732668,10732.668 +33421,2025-03-11T04:18:38.736153-07:00,0.0,10.718916,10718.916 +33422,2025-03-11T04:18:49.468563-07:00,0.0,10.73241,10732.41 +33423,2025-03-11T04:19:00.194150-07:00,0.0,10.725587,10725.587 +33424,2025-03-11T04:19:10.919153-07:00,0.0,10.725003,10725.003 +33425,2025-03-11T04:19:21.641206-07:00,0.0,10.722053,10722.053 +33426,2025-03-11T04:19:32.373150-07:00,0.0,10.731944,10731.944 +33427,2025-03-11T04:19:43.098350-07:00,0.0,10.7252,10725.2 +33428,2025-03-11T04:19:53.832147-07:00,0.0,10.733797,10733.797 +33429,2025-03-11T04:20:04.556175-07:00,0.0,10.724028,10724.028 +33430,2025-03-11T04:20:15.283322-07:00,0.0,10.727147,10727.147 +33431,2025-03-11T04:20:26.013219-07:00,0.0,10.729897,10729.897 +33432,2025-03-11T04:20:36.739468-07:00,0.0,10.726249,10726.249 +33433,2025-03-11T04:20:47.471336-07:00,0.0,10.731868,10731.868 +33434,2025-03-11T04:20:58.202189-07:00,0.0,10.730853,10730.853 +33435,2025-03-11T04:21:08.927153-07:00,0.0,10.724964,10724.964 +33436,2025-03-11T04:21:19.664575-07:00,0.0,10.737422,10737.422 +33437,2025-03-11T04:21:30.393204-07:00,0.0,10.728629,10728.629 +33438,2025-03-11T04:21:41.117322-07:00,0.0,10.724118,10724.118 +33439,2025-03-11T04:21:51.840507-07:00,0.0,10.723185,10723.185 +33440,2025-03-11T04:22:02.574152-07:00,0.0,10.733645,10733.645 +33441,2025-03-11T04:22:13.293179-07:00,0.0,10.719027,10719.027 +33442,2025-03-11T04:22:24.025356-07:00,0.0,10.732177,10732.177 +33443,2025-03-11T04:22:34.748897-07:00,0.0,10.723541,10723.541 +33444,2025-03-11T04:22:45.476180-07:00,0.0,10.727283,10727.283 +33445,2025-03-11T04:22:56.194440-07:00,0.0,10.71826,10718.26 +33446,2025-03-11T04:23:06.922150-07:00,0.0,10.72771,10727.71 +33447,2025-03-11T04:23:17.651339-07:00,0.0,10.729189,10729.189 +33448,2025-03-11T04:23:28.381491-07:00,0.0,10.730152,10730.152 +33449,2025-03-11T04:23:39.114150-07:00,0.0,10.732659,10732.659 +33450,2025-03-11T04:23:49.842465-07:00,0.0,10.728315,10728.315 +33451,2025-03-11T04:24:00.564656-07:00,0.0,10.722191,10722.191 +33452,2025-03-11T04:24:11.295153-07:00,0.0,10.730497,10730.497 +33453,2025-03-11T04:24:22.016546-07:00,0.0,10.721393,10721.393 +33454,2025-03-11T04:24:32.748183-07:00,0.0,10.731637,10731.637 +33455,2025-03-11T04:24:43.478256-07:00,0.0,10.730073,10730.073 +33456,2025-03-11T04:24:54.204341-07:00,0.0,10.726085,10726.085 +33457,2025-03-11T04:25:04.934837-07:00,0.0,10.730496,10730.496 +33458,2025-03-11T04:25:15.659350-07:00,0.0,10.724513,10724.513 +33459,2025-03-11T04:25:26.388334-07:00,0.0,10.728984,10728.984 +33460,2025-03-11T04:25:37.126717-07:00,0.0,10.738383,10738.383 +33461,2025-03-11T04:25:47.853151-07:00,0.0,10.726434,10726.434 +33462,2025-03-11T04:25:58.583563-07:00,0.0,10.730412,10730.412 +33463,2025-03-11T04:26:09.311356-07:00,0.0,10.727793,10727.793 +33464,2025-03-11T04:26:20.034332-07:00,0.0,10.722976,10722.976 +33465,2025-03-11T04:26:30.767153-07:00,0.0,10.732821,10732.821 +33466,2025-03-11T04:26:41.487358-07:00,0.0,10.720205,10720.205 +33467,2025-03-11T04:26:52.216456-07:00,0.0,10.729098,10729.098 +33468,2025-03-11T04:27:02.948222-07:00,0.0,10.731766,10731.766 +33469,2025-03-11T04:27:13.676562-07:00,0.0,10.72834,10728.34 +33470,2025-03-11T04:27:24.403262-07:00,0.0,10.7267,10726.7 +33471,2025-03-11T04:27:35.129153-07:00,0.0,10.725891,10725.891 +33472,2025-03-11T04:27:45.854903-07:00,0.0,10.72575,10725.75 +33473,2025-03-11T04:27:56.586149-07:00,0.0,10.731246,10731.246 +33474,2025-03-11T04:28:07.310013-07:00,0.0,10.723864,10723.864 +33475,2025-03-11T04:28:18.041474-07:00,0.0,10.731461,10731.461 +33476,2025-03-11T04:28:28.770152-07:00,0.0,10.728678,10728.678 +33477,2025-03-11T04:28:39.490076-07:00,0.0,10.719924,10719.924 +33478,2025-03-11T04:28:50.214361-07:00,0.0,10.724285,10724.285 +33479,2025-03-11T04:28:57.672357-07:00,0.0,7.457996,7457.996 +33480,2025-03-11T04:29:00.949342-07:00,0.0,3.276985,3276.985 +33481,2025-03-11T04:29:11.673154-07:00,0.0,10.723812,10723.812 +33482,2025-03-11T04:29:22.396427-07:00,0.0,10.723273,10723.273 +33483,2025-03-11T04:29:33.125334-07:00,0.0,10.728907,10728.907 +33484,2025-03-11T04:29:43.853348-07:00,0.0,10.728014,10728.014 +33485,2025-03-11T04:29:54.580812-07:00,0.0,10.727464,10727.464 +33486,2025-03-11T04:30:05.308263-07:00,0.0,10.727451,10727.451 +33487,2025-03-11T04:30:16.034181-07:00,0.0,10.725918,10725.918 +33488,2025-03-11T04:30:26.763340-07:00,0.0,10.729159,10729.159 +33489,2025-03-11T04:30:37.484154-07:00,0.0,10.720814,10720.814 +33490,2025-03-11T04:30:48.212887-07:00,0.0,10.728733,10728.733 +33491,2025-03-11T04:30:58.935179-07:00,0.0,10.722292,10722.292 +33492,2025-03-11T04:31:09.669152-07:00,0.0,10.733973,10733.973 +33493,2025-03-11T04:31:20.390439-07:00,0.0,10.721287,10721.287 +33494,2025-03-11T04:31:31.124215-07:00,0.0,10.733776,10733.776 +33495,2025-03-11T04:31:41.850329-07:00,0.0,10.726114,10726.114 +33496,2025-03-11T04:31:52.570148-07:00,0.0,10.719819,10719.819 +33497,2025-03-11T04:32:03.298382-07:00,0.0,10.728234,10728.234 +33498,2025-03-11T04:32:14.021493-07:00,0.0,10.723111,10723.111 +33499,2025-03-11T04:32:24.756150-07:00,0.0,10.734657,10734.657 +33500,2025-03-11T04:32:35.477329-07:00,0.0,10.721179,10721.179 +33501,2025-03-11T04:32:46.207356-07:00,0.0,10.730027,10730.027 +33502,2025-03-11T04:32:56.931182-07:00,0.0,10.723826,10723.826 +33503,2025-03-11T04:33:07.656274-07:00,0.0,10.725092,10725.092 +33504,2025-03-11T04:33:18.383442-07:00,0.0,10.727168,10727.168 +33505,2025-03-11T04:33:29.107960-07:00,0.0,10.724518,10724.518 +33506,2025-03-11T04:33:39.834184-07:00,0.0,10.726224,10726.224 +33507,2025-03-11T04:33:50.560564-07:00,0.0,10.72638,10726.38 +33508,2025-03-11T04:34:01.287150-07:00,0.0,10.726586,10726.586 +33509,2025-03-11T04:34:12.017156-07:00,0.0,10.730006,10730.006 +33510,2025-03-11T04:34:22.737542-07:00,0.0,10.720386,10720.386 +33511,2025-03-11T04:34:33.456153-07:00,0.0,10.718611,10718.611 +33512,2025-03-11T04:34:44.178238-07:00,0.0,10.722085,10722.085 +33513,2025-03-11T04:34:54.906359-07:00,0.0,10.728121,10728.121 +33514,2025-03-11T04:35:05.626171-07:00,0.0,10.719812,10719.812 +33515,2025-03-11T04:35:16.355153-07:00,0.0,10.728982,10728.982 +33516,2025-03-11T04:35:27.077540-07:00,0.0,10.722387,10722.387 +33517,2025-03-11T04:35:37.806150-07:00,0.0,10.72861,10728.61 +33518,2025-03-11T04:35:48.535472-07:00,0.0,10.729322,10729.322 +33519,2025-03-11T04:35:59.256346-07:00,0.0,10.720874,10720.874 +33520,2025-03-11T04:36:09.983150-07:00,0.0,10.726804,10726.804 +33521,2025-03-11T04:36:20.705179-07:00,0.0,10.722029,10722.029 +33522,2025-03-11T04:36:31.433186-07:00,0.0,10.728007,10728.007 +33523,2025-03-11T04:36:42.156330-07:00,0.0,10.723144,10723.144 +33524,2025-03-11T04:36:52.876271-07:00,0.0,10.719941,10719.941 +33525,2025-03-11T04:37:03.606651-07:00,0.0,10.73038,10730.38 +33526,2025-03-11T04:37:14.322396-07:00,0.0,10.715745,10715.745 +33527,2025-03-11T04:37:25.056328-07:00,0.0,10.733932,10733.932 +33528,2025-03-11T04:37:35.773429-07:00,0.0,10.717101,10717.101 +33529,2025-03-11T04:37:46.504209-07:00,0.0,10.73078,10730.78 +33530,2025-03-11T04:37:57.219158-07:00,0.0,10.714949,10714.949 +33531,2025-03-11T04:38:07.952156-07:00,0.0,10.732998,10732.998 +33532,2025-03-11T04:38:18.675336-07:00,0.0,10.72318,10723.18 +33533,2025-03-11T04:38:29.401153-07:00,0.0,10.725817,10725.817 +33534,2025-03-11T04:38:40.121406-07:00,0.0,10.720253,10720.253 +33535,2025-03-11T04:38:50.849150-07:00,0.0,10.727744,10727.744 +33536,2025-03-11T04:39:01.576328-07:00,0.0,10.727178,10727.178 +33537,2025-03-11T04:39:12.296152-07:00,0.0,10.719824,10719.824 +33538,2025-03-11T04:39:23.020274-07:00,0.0,10.724122,10724.122 +33539,2025-03-11T04:39:33.752237-07:00,0.0,10.731963,10731.963 +33540,2025-03-11T04:39:44.472364-07:00,0.0,10.720127,10720.127 +33541,2025-03-11T04:39:55.192308-07:00,0.0,10.719944,10719.944 +33542,2025-03-11T04:40:05.922181-07:00,0.0,10.729873,10729.873 +33543,2025-03-11T04:40:16.650302-07:00,0.0,10.728121,10728.121 +33544,2025-03-11T04:40:27.369149-07:00,0.0,10.718847,10718.847 +33545,2025-03-11T04:40:38.094244-07:00,0.0,10.725095,10725.095 +33546,2025-03-11T04:40:48.823934-07:00,0.0,10.72969,10729.69 +33547,2025-03-11T04:40:59.549152-07:00,0.0,10.725218,10725.218 +33548,2025-03-11T04:41:10.278311-07:00,0.0,10.729159,10729.159 +33549,2025-03-11T04:41:21.006272-07:00,0.0,10.727961,10727.961 +33550,2025-03-11T04:41:31.734525-07:00,0.0,10.728253,10728.253 +33551,2025-03-11T04:41:42.463283-07:00,0.0,10.728758,10728.758 +33552,2025-03-11T04:41:53.191153-07:00,0.0,10.72787,10727.87 +33553,2025-03-11T04:42:03.918345-07:00,0.0,10.727192,10727.192 +33554,2025-03-11T04:42:14.652175-07:00,0.0,10.73383,10733.83 +33555,2025-03-11T04:42:25.384150-07:00,0.0,10.731975,10731.975 +33556,2025-03-11T04:42:36.112358-07:00,0.0,10.728208,10728.208 +33557,2025-03-11T04:42:46.845151-07:00,0.0,10.732793,10732.793 +33558,2025-03-11T04:42:57.580152-07:00,0.0,10.735001,10735.001 +33559,2025-03-11T04:43:08.306225-07:00,0.0,10.726073,10726.073 +33560,2025-03-11T04:43:19.033209-07:00,0.0,10.726984,10726.984 +33561,2025-03-11T04:43:29.759447-07:00,0.0,10.726238,10726.238 +33562,2025-03-11T04:43:40.488445-07:00,0.0,10.728998,10728.998 +33563,2025-03-11T04:43:51.221383-07:00,0.0,10.732938,10732.938 +33564,2025-03-11T04:44:01.952150-07:00,0.0,10.730767,10730.767 +33565,2025-03-11T04:44:12.678348-07:00,0.0,10.726198,10726.198 +33566,2025-03-11T04:44:23.401328-07:00,0.0,10.72298,10722.98 +33567,2025-03-11T04:44:34.137423-07:00,0.0,10.736095,10736.095 +33568,2025-03-11T04:44:44.866573-07:00,0.0,10.72915,10729.15 +33569,2025-03-11T04:44:55.589152-07:00,0.0,10.722579,10722.579 +33570,2025-03-11T04:45:06.321261-07:00,0.0,10.732109,10732.109 +33571,2025-03-11T04:45:17.049188-07:00,0.0,10.727927,10727.927 +33572,2025-03-11T04:45:27.784909-07:00,0.0,10.735721,10735.721 +33573,2025-03-11T04:45:38.513360-07:00,0.0,10.728451,10728.451 +33574,2025-03-11T04:45:49.244705-07:00,0.0,10.731345,10731.345 +33575,2025-03-11T04:45:59.968153-07:00,0.0,10.723448,10723.448 +33576,2025-03-11T04:46:10.702522-07:00,0.0,10.734369,10734.369 +33577,2025-03-11T04:46:21.424506-07:00,0.0,10.721984,10721.984 +33578,2025-03-11T04:46:32.158153-07:00,0.0,10.733647,10733.647 +33579,2025-03-11T04:46:42.890334-07:00,0.0,10.732181,10732.181 +33580,2025-03-11T04:46:53.620463-07:00,0.0,10.730129,10730.129 +33581,2025-03-11T04:47:04.353150-07:00,0.0,10.732687,10732.687 +33582,2025-03-11T04:47:15.080318-07:00,0.0,10.727168,10727.168 +33583,2025-03-11T04:47:25.805153-07:00,0.0,10.724835,10724.835 +33584,2025-03-11T04:47:36.541154-07:00,0.0,10.736001,10736.001 +33585,2025-03-11T04:47:47.271323-07:00,0.0,10.730169,10730.169 +33586,2025-03-11T04:47:57.995268-07:00,0.0,10.723945,10723.945 +33587,2025-03-11T04:48:08.722165-07:00,0.0,10.726897,10726.897 +33588,2025-03-11T04:48:19.454247-07:00,0.0,10.732082,10732.082 +33589,2025-03-11T04:48:30.186153-07:00,0.0,10.731906,10731.906 +33590,2025-03-11T04:48:40.908358-07:00,0.0,10.722205,10722.205 +33591,2025-03-11T04:48:51.645274-07:00,0.0,10.736916,10736.916 +33592,2025-03-11T04:49:02.383151-07:00,0.0,10.737877,10737.877 +33593,2025-03-11T04:49:13.105223-07:00,0.0,10.722072,10722.072 +33594,2025-03-11T04:49:23.837398-07:00,0.0,10.732175,10732.175 +33595,2025-03-11T04:49:34.566305-07:00,0.0,10.728907,10728.907 +33596,2025-03-11T04:49:45.298557-07:00,0.0,10.732252,10732.252 +33597,2025-03-11T04:49:56.031746-07:00,0.0,10.733189,10733.189 +33598,2025-03-11T04:50:06.752221-07:00,0.0,10.720475,10720.475 +33599,2025-03-11T04:50:17.490154-07:00,0.0,10.737933,10737.933 +33600,2025-03-11T04:50:28.213152-07:00,0.0,10.722998,10722.998 +33601,2025-03-11T04:50:38.948152-07:00,0.0,10.735,10735.0 +33602,2025-03-11T04:50:49.669344-07:00,0.0,10.721192,10721.192 +33603,2025-03-11T04:51:00.406259-07:00,0.0,10.736915,10736.915 +33604,2025-03-11T04:51:11.136156-07:00,0.0,10.729897,10729.897 +33605,2025-03-11T04:51:21.865334-07:00,0.0,10.729178,10729.178 +33606,2025-03-11T04:51:32.593152-07:00,0.0,10.727818,10727.818 +33607,2025-03-11T04:51:43.330339-07:00,0.0,10.737187,10737.187 +33608,2025-03-11T04:51:54.058161-07:00,0.0,10.727822,10727.822 +33609,2025-03-11T04:52:04.786150-07:00,0.0,10.727989,10727.989 +33610,2025-03-11T04:52:15.513149-07:00,0.0,10.726999,10726.999 +33611,2025-03-11T04:52:26.244350-07:00,0.0,10.731201,10731.201 +33612,2025-03-11T04:52:36.974153-07:00,0.0,10.729803,10729.803 +33613,2025-03-11T04:52:47.706184-07:00,0.0,10.732031,10732.031 +33614,2025-03-11T04:52:58.439350-07:00,0.0,10.733166,10733.166 +33615,2025-03-11T04:53:09.166437-07:00,0.0,10.727087,10727.087 +33616,2025-03-11T04:53:19.902286-07:00,0.0,10.735849,10735.849 +33617,2025-03-11T04:53:30.628813-07:00,0.0,10.726527,10726.527 +33618,2025-03-11T04:53:41.453061-07:00,0.0,10.824248,10824.248 +33619,2025-03-11T04:53:52.183755-07:00,0.0,10.730694,10730.694 +33620,2025-03-11T04:54:02.911144-07:00,0.0,10.727389,10727.389 +33621,2025-03-11T04:54:13.641823-07:00,0.0,10.730679,10730.679 +33622,2025-03-11T04:54:24.374750-07:00,0.0,10.732927,10732.927 +33623,2025-03-11T04:54:35.107825-07:00,0.0,10.733075,10733.075 +33624,2025-03-11T04:54:45.843549-07:00,0.0,10.735724,10735.724 +33625,2025-03-11T04:54:56.572743-07:00,0.0,10.729194,10729.194 +33626,2025-03-11T04:55:07.304931-07:00,0.0,10.732188,10732.188 +33627,2025-03-11T04:55:18.032597-07:00,0.0,10.727666,10727.666 +33628,2025-03-11T04:55:28.763748-07:00,0.0,10.731151,10731.151 +33629,2025-03-11T04:55:39.493969-07:00,0.0,10.730221,10730.221 +33630,2025-03-11T04:55:50.226926-07:00,0.0,10.732957,10732.957 +33631,2025-03-11T04:56:00.954912-07:00,0.0,10.727986,10727.986 +33632,2025-03-11T04:56:11.682183-07:00,0.0,10.727271,10727.271 +33633,2025-03-11T04:56:22.416833-07:00,0.0,10.73465,10734.65 +33634,2025-03-11T04:56:33.146750-07:00,0.0,10.729917,10729.917 +33635,2025-03-11T04:56:43.869898-07:00,0.0,10.723148,10723.148 +33636,2025-03-11T04:56:54.601768-07:00,0.0,10.73187,10731.87 +33637,2025-03-11T04:57:05.330956-07:00,0.0,10.729188,10729.188 +33638,2025-03-11T04:57:16.060444-07:00,0.0,10.729488,10729.488 +33639,2025-03-11T04:57:26.797414-07:00,0.0,10.73697,10736.97 +33640,2025-03-11T04:57:37.530959-07:00,0.0,10.733545,10733.545 +33641,2025-03-11T04:57:48.259751-07:00,0.0,10.728792,10728.792 +33642,2025-03-11T04:57:58.991740-07:00,0.0,10.731989,10731.989 +33643,2025-03-11T04:58:09.719753-07:00,0.0,10.728013,10728.013 +33644,2025-03-11T04:58:20.456196-07:00,0.0,10.736443,10736.443 +33645,2025-03-11T04:58:31.180468-07:00,0.0,10.724272,10724.272 +33646,2025-03-11T04:58:41.915811-07:00,0.0,10.735343,10735.343 +33647,2025-03-11T04:58:52.645746-07:00,0.0,10.729935,10729.935 +33648,2025-03-11T04:59:03.371034-07:00,0.0,10.725288,10725.288 +33649,2025-03-11T04:59:14.101747-07:00,0.0,10.730713,10730.713 +33650,2025-03-11T04:59:24.827197-07:00,0.0,10.72545,10725.45 +33651,2025-03-11T04:59:35.566259-07:00,0.0,10.739062,10739.062 +33652,2025-03-11T04:59:46.294751-07:00,0.0,10.728492,10728.492 +33653,2025-03-11T04:59:57.015932-07:00,0.0,10.721181,10721.181 +33654,2025-03-11T05:00:07.749079-07:00,0.0,10.733147,10733.147 +33655,2025-03-11T05:00:18.477773-07:00,0.0,10.728694,10728.694 +33656,2025-03-11T05:00:29.206127-07:00,0.0,10.728354,10728.354 +33657,2025-03-11T05:00:39.942747-07:00,0.0,10.73662,10736.62 +33658,2025-03-11T05:00:50.671762-07:00,0.0,10.729015,10729.015 +33659,2025-03-11T05:01:01.410896-07:00,0.0,10.739134,10739.134 +33660,2025-03-11T05:01:12.136558-07:00,0.0,10.725662,10725.662 +33661,2025-03-11T05:01:22.869747-07:00,0.0,10.733189,10733.189 +33662,2025-03-11T05:01:33.601997-07:00,0.0,10.73225,10732.25 +33663,2025-03-11T05:01:44.335147-07:00,0.0,10.73315,10733.15 +33664,2025-03-11T05:01:55.055487-07:00,0.0,10.72034,10720.34 +33665,2025-03-11T05:02:05.786753-07:00,0.0,10.731266,10731.266 +33666,2025-03-11T05:02:16.520795-07:00,0.0,10.734042,10734.042 +33667,2025-03-11T05:02:27.252743-07:00,0.0,10.731948,10731.948 +33668,2025-03-11T05:02:37.991300-07:00,0.0,10.738557,10738.557 +33669,2025-03-11T05:02:48.716931-07:00,0.0,10.725631,10725.631 +33670,2025-03-11T05:02:59.456867-07:00,0.0,10.739936,10739.936 +33671,2025-03-11T05:03:10.181772-07:00,0.0,10.724905,10724.905 +33672,2025-03-11T05:03:20.920750-07:00,0.0,10.738978,10738.978 +33673,2025-03-11T05:03:31.653139-07:00,0.0,10.732389,10732.389 +33674,2025-03-11T05:03:42.381841-07:00,0.0,10.728702,10728.702 +33675,2025-03-11T05:03:53.120963-07:00,0.0,10.739122,10739.122 +33676,2025-03-11T05:04:03.851307-07:00,0.0,10.730344,10730.344 +33677,2025-03-11T05:04:14.576845-07:00,0.0,10.725538,10725.538 +33678,2025-03-11T05:04:25.309901-07:00,0.0,10.733056,10733.056 +33679,2025-03-11T05:04:36.044761-07:00,0.0,10.73486,10734.86 +33680,2025-03-11T05:04:46.775003-07:00,0.0,10.730242,10730.242 +33681,2025-03-11T05:04:57.500794-07:00,0.0,10.725791,10725.791 +33682,2025-03-11T05:05:08.228913-07:00,0.0,10.728119,10728.119 +33683,2025-03-11T05:05:18.960062-07:00,0.0,10.731149,10731.149 +33684,2025-03-11T05:05:29.690750-07:00,0.0,10.730688,10730.688 +33685,2025-03-11T05:05:40.412770-07:00,0.0,10.72202,10722.02 +33686,2025-03-11T05:05:51.145749-07:00,0.0,10.732979,10732.979 +33687,2025-03-11T05:06:01.881781-07:00,0.0,10.736032,10736.032 +33688,2025-03-11T05:06:12.605083-07:00,0.0,10.723302,10723.302 +33689,2025-03-11T05:06:23.340742-07:00,0.0,10.735659,10735.659 +33690,2025-03-11T05:06:34.065971-07:00,0.0,10.725229,10725.229 +33691,2025-03-11T05:06:44.800940-07:00,0.0,10.734969,10734.969 +33692,2025-03-11T05:06:55.533751-07:00,0.0,10.732811,10732.811 +33693,2025-03-11T05:07:06.266880-07:00,0.0,10.733129,10733.129 +33694,2025-03-11T05:07:17.003968-07:00,0.0,10.737088,10737.088 +33695,2025-03-11T05:07:27.733745-07:00,0.0,10.729777,10729.777 +33696,2025-03-11T05:07:38.470782-07:00,0.0,10.737037,10737.037 +33697,2025-03-11T05:07:49.199201-07:00,0.0,10.728419,10728.419 +33698,2025-03-11T05:07:59.927969-07:00,0.0,10.728768,10728.768 +33699,2025-03-11T05:08:10.659797-07:00,0.0,10.731828,10731.828 +33700,2025-03-11T05:08:21.385960-07:00,0.0,10.726163,10726.163 +33701,2025-03-11T05:08:32.120823-07:00,0.0,10.734863,10734.863 +33702,2025-03-11T05:08:42.852098-07:00,0.0,10.731275,10731.275 +33703,2025-03-11T05:08:53.578830-07:00,0.0,10.726732,10726.732 +33704,2025-03-11T05:09:04.306108-07:00,0.0,10.727278,10727.278 +33705,2025-03-11T05:09:15.042743-07:00,0.0,10.736635,10736.635 +33706,2025-03-11T05:09:25.769950-07:00,0.0,10.727207,10727.207 +33707,2025-03-11T05:09:36.496076-07:00,0.0,10.726126,10726.126 +33708,2025-03-11T05:09:47.227197-07:00,0.0,10.731121,10731.121 +33709,2025-03-11T05:09:57.964566-07:00,0.0,10.737369,10737.369 +33710,2025-03-11T05:10:08.687795-07:00,0.0,10.723229,10723.229 +33711,2025-03-11T05:10:19.413821-07:00,0.0,10.726026,10726.026 +33712,2025-03-11T05:10:30.146144-07:00,0.0,10.732323,10732.323 +33713,2025-03-11T05:10:40.877754-07:00,0.0,10.73161,10731.61 +33714,2025-03-11T05:10:51.603750-07:00,0.0,10.725996,10725.996 +33715,2025-03-11T05:11:02.324773-07:00,0.0,10.721023,10721.023 +33716,2025-03-11T05:11:13.049806-07:00,0.0,10.725033,10725.033 +33717,2025-03-11T05:11:23.784031-07:00,0.0,10.734225,10734.225 +33718,2025-03-11T05:11:34.508912-07:00,0.0,10.724881,10724.881 +33719,2025-03-11T05:11:45.243762-07:00,0.0,10.73485,10734.85 +33720,2025-03-11T05:11:55.975826-07:00,0.0,10.732064,10732.064 +33721,2025-03-11T05:12:06.695908-07:00,0.0,10.720082,10720.082 +33722,2025-03-11T05:12:17.429956-07:00,0.0,10.734048,10734.048 +33723,2025-03-11T05:12:28.159945-07:00,0.0,10.729989,10729.989 +33724,2025-03-11T05:12:38.885750-07:00,0.0,10.725805,10725.805 +33725,2025-03-11T05:12:49.610221-07:00,0.0,10.724471,10724.471 +33726,2025-03-11T05:13:00.346632-07:00,0.0,10.736411,10736.411 +33727,2025-03-11T05:13:11.064985-07:00,0.0,10.718353,10718.353 +33728,2025-03-11T05:13:21.794930-07:00,0.0,10.729945,10729.945 +33729,2025-03-11T05:13:32.521750-07:00,0.0,10.72682,10726.82 +33730,2025-03-11T05:13:43.247110-07:00,0.0,10.72536,10725.36 +33731,2025-03-11T05:13:53.978897-07:00,0.0,10.731787,10731.787 +33732,2025-03-11T05:14:04.699800-07:00,0.0,10.720903,10720.903 +33733,2025-03-11T05:14:15.435869-07:00,0.0,10.736069,10736.069 +33734,2025-03-11T05:14:26.164775-07:00,0.0,10.728906,10728.906 +33735,2025-03-11T05:14:36.885961-07:00,0.0,10.721186,10721.186 +33736,2025-03-11T05:14:47.619003-07:00,0.0,10.733042,10733.042 +33737,2025-03-11T05:14:58.339757-07:00,0.0,10.720754,10720.754 +33738,2025-03-11T05:15:09.066937-07:00,0.0,10.72718,10727.18 +33739,2025-03-11T05:15:19.796747-07:00,0.0,10.72981,10729.81 +33740,2025-03-11T05:15:30.531962-07:00,0.0,10.735215,10735.215 +33741,2025-03-11T05:15:41.251596-07:00,0.0,10.719634,10719.634 +33742,2025-03-11T05:15:51.971749-07:00,0.0,10.720153,10720.153 +33743,2025-03-11T05:16:02.700172-07:00,0.0,10.728423,10728.423 +33744,2025-03-11T05:16:13.430747-07:00,0.0,10.730575,10730.575 +33745,2025-03-11T05:16:24.152778-07:00,0.0,10.722031,10722.031 +33746,2025-03-11T05:16:34.884792-07:00,0.0,10.732014,10732.014 +33747,2025-03-11T05:16:45.603398-07:00,0.0,10.718606,10718.606 +33748,2025-03-11T05:16:56.331783-07:00,0.0,10.728385,10728.385 +33749,2025-03-11T05:17:07.054774-07:00,0.0,10.722991,10722.991 +33750,2025-03-11T05:17:17.788751-07:00,0.0,10.733977,10733.977 +33751,2025-03-11T05:17:28.516399-07:00,0.0,10.727648,10727.648 +33752,2025-03-11T05:17:39.232925-07:00,0.0,10.716526,10716.526 +33753,2025-03-11T05:17:49.965921-07:00,0.0,10.732996,10732.996 +33754,2025-03-11T05:18:00.679748-07:00,0.0,10.713827,10713.827 +33755,2025-03-11T05:18:08.929086-07:00,0.0,8.249338,8249.338 +33756,2025-03-11T05:18:11.406091-07:00,0.0,2.477005,2477.005 +33757,2025-03-11T05:18:22.130005-07:00,0.0,10.723914,10723.914 +33758,2025-03-11T05:18:32.858041-07:00,0.0,10.728036,10728.036 +33759,2025-03-11T05:18:43.575749-07:00,0.0,10.717708,10717.708 +33760,2025-03-11T05:18:54.304845-07:00,0.0,10.729096,10729.096 +33761,2025-03-11T05:19:05.026912-07:00,0.0,10.722067,10722.067 +33762,2025-03-11T05:19:15.752154-07:00,0.0,10.725242,10725.242 +33763,2025-03-11T05:19:26.468958-07:00,0.0,10.716804,10716.804 +33764,2025-03-11T05:19:37.198745-07:00,0.0,10.729787,10729.787 +33765,2025-03-11T05:19:47.924775-07:00,0.0,10.72603,10726.03 +33766,2025-03-11T05:19:58.650857-07:00,0.0,10.726082,10726.082 +33767,2025-03-11T05:20:09.371820-07:00,0.0,10.720963,10720.963 +33768,2025-03-11T05:20:20.104954-07:00,0.0,10.733134,10733.134 +33769,2025-03-11T05:20:30.819927-07:00,0.0,10.714973,10714.973 +33770,2025-03-11T05:20:41.548782-07:00,0.0,10.728855,10728.855 +33771,2025-03-11T05:20:52.273153-07:00,0.0,10.724371,10724.371 +33772,2025-03-11T05:21:02.995919-07:00,0.0,10.722766,10722.766 +33773,2025-03-11T05:21:09.652074-07:00,0.0,6.656155,6656.155 +33774,2025-03-11T05:21:13.724828-07:00,0.0,4.072754,4072.754 +33775,2025-03-11T05:21:24.457941-07:00,0.0,10.733113,10733.113 +33776,2025-03-11T05:21:35.176750-07:00,0.0,10.718809,10718.809 +33777,2025-03-11T05:21:45.901927-07:00,0.0,10.725177,10725.177 +33778,2025-03-11T05:21:56.636018-07:00,0.0,10.734091,10734.091 +33779,2025-03-11T05:22:07.350938-07:00,0.0,10.71492,10714.92 +33780,2025-03-11T05:22:18.084773-07:00,0.0,10.733835,10733.835 +33781,2025-03-11T05:22:28.813995-07:00,0.0,10.729222,10729.222 +33782,2025-03-11T05:22:39.538942-07:00,0.0,10.724947,10724.947 +33783,2025-03-11T05:22:50.268750-07:00,0.0,10.729808,10729.808 +33784,2025-03-11T05:23:00.987828-07:00,0.0,10.719078,10719.078 +33785,2025-03-11T05:23:11.713748-07:00,0.0,10.72592,10725.92 +33786,2025-03-11T05:23:22.442836-07:00,0.0,10.729088,10729.088 +33787,2025-03-11T05:23:33.168540-07:00,0.0,10.725704,10725.704 +33788,2025-03-11T05:23:43.894750-07:00,0.0,10.72621,10726.21 +33789,2025-03-11T05:23:54.627748-07:00,0.0,10.732998,10732.998 +33790,2025-03-11T05:24:05.354086-07:00,0.0,10.726338,10726.338 +33791,2025-03-11T05:24:16.072934-07:00,0.0,10.718848,10718.848 +33792,2025-03-11T05:24:26.798946-07:00,0.0,10.726012,10726.012 +33793,2025-03-11T05:24:37.533951-07:00,0.0,10.735005,10735.005 +33794,2025-03-11T05:24:48.255931-07:00,0.0,10.72198,10721.98 +33795,2025-03-11T05:24:58.985747-07:00,0.0,10.729816,10729.816 +33796,2025-03-11T05:25:09.702485-07:00,0.0,10.716738,10716.738 +33797,2025-03-11T05:25:20.433955-07:00,0.0,10.73147,10731.47 +33798,2025-03-11T05:25:31.161749-07:00,0.0,10.727794,10727.794 +33799,2025-03-11T05:25:41.878054-07:00,0.0,10.716305,10716.305 +33800,2025-03-11T05:25:52.610747-07:00,0.0,10.732693,10732.693 +33801,2025-03-11T05:26:03.334092-07:00,0.0,10.723345,10723.345 +33802,2025-03-11T05:26:14.057750-07:00,0.0,10.723658,10723.658 +33803,2025-03-11T05:26:24.782963-07:00,0.0,10.725213,10725.213 +33804,2025-03-11T05:26:35.509768-07:00,0.0,10.726805,10726.805 +33805,2025-03-11T05:26:46.233884-07:00,0.0,10.724116,10724.116 +33806,2025-03-11T05:26:56.967692-07:00,0.0,10.733808,10733.808 +33807,2025-03-11T05:27:07.692990-07:00,0.0,10.725298,10725.298 +33808,2025-03-11T05:27:18.410912-07:00,0.0,10.717922,10717.922 +33809,2025-03-11T05:27:29.144138-07:00,0.0,10.733226,10733.226 +33810,2025-03-11T05:27:39.873965-07:00,0.0,10.729827,10729.827 +33811,2025-03-11T05:27:50.599039-07:00,0.0,10.725074,10725.074 +33812,2025-03-11T05:28:01.316823-07:00,0.0,10.717784,10717.784 +33813,2025-03-11T05:28:12.052749-07:00,0.0,10.735926,10735.926 +33814,2025-03-11T05:28:22.777750-07:00,0.0,10.725001,10725.001 +33815,2025-03-11T05:28:33.506013-07:00,0.0,10.728263,10728.263 +33816,2025-03-11T05:28:44.233959-07:00,0.0,10.727946,10727.946 +33817,2025-03-11T05:28:54.961746-07:00,0.0,10.727787,10727.787 +33818,2025-03-11T05:29:05.682114-07:00,0.0,10.720368,10720.368 +33819,2025-03-11T05:29:16.410819-07:00,0.0,10.728705,10728.705 +33820,2025-03-11T05:29:27.134013-07:00,0.0,10.723194,10723.194 +33821,2025-03-11T05:29:37.864319-07:00,0.0,10.730306,10730.306 +33822,2025-03-11T05:29:48.587854-07:00,0.0,10.723535,10723.535 +33823,2025-03-11T05:29:59.314918-07:00,0.0,10.727064,10727.064 +33824,2025-03-11T05:30:10.041831-07:00,0.0,10.726913,10726.913 +33825,2025-03-11T05:30:20.773746-07:00,0.0,10.731915,10731.915 +33826,2025-03-11T05:30:31.506961-07:00,0.0,10.733215,10733.215 +33827,2025-03-11T05:30:42.230982-07:00,0.0,10.724021,10724.021 +33828,2025-03-11T05:30:52.958749-07:00,0.0,10.727767,10727.767 +33829,2025-03-11T05:31:03.685769-07:00,0.0,10.72702,10727.02 +33830,2025-03-11T05:31:14.416913-07:00,0.0,10.731144,10731.144 +33831,2025-03-11T05:31:25.135444-07:00,0.0,10.718531,10718.531 +33832,2025-03-11T05:31:35.867905-07:00,0.0,10.732461,10732.461 +33833,2025-03-11T05:31:46.596748-07:00,0.0,10.728843,10728.843 +33834,2025-03-11T05:31:57.321931-07:00,0.0,10.725183,10725.183 +33835,2025-03-11T05:32:08.059165-07:00,0.0,10.737234,10737.234 +33836,2025-03-11T05:32:18.786574-07:00,0.0,10.727409,10727.409 +33837,2025-03-11T05:32:29.513886-07:00,0.0,10.727312,10727.312 +33838,2025-03-11T05:32:40.240035-07:00,0.0,10.726149,10726.149 +33839,2025-03-11T05:32:50.971922-07:00,0.0,10.731887,10731.887 +33840,2025-03-11T05:33:01.693068-07:00,0.0,10.721146,10721.146 +33841,2025-03-11T05:33:12.426805-07:00,0.0,10.733737,10733.737 +33842,2025-03-11T05:33:23.154932-07:00,0.0,10.728127,10728.127 +33843,2025-03-11T05:33:33.886026-07:00,0.0,10.731094,10731.094 +33844,2025-03-11T05:33:44.615750-07:00,0.0,10.729724,10729.724 +33845,2025-03-11T05:33:55.343679-07:00,0.0,10.727929,10727.929 +33846,2025-03-11T05:34:06.068028-07:00,0.0,10.724349,10724.349 +33847,2025-03-11T05:34:16.797293-07:00,0.0,10.729265,10729.265 +33848,2025-03-11T05:34:27.527781-07:00,0.0,10.730488,10730.488 +33849,2025-03-11T05:34:38.256089-07:00,0.0,10.728308,10728.308 +33850,2025-03-11T05:34:48.986915-07:00,0.0,10.730826,10730.826 +33851,2025-03-11T05:34:59.718996-07:00,0.0,10.732081,10732.081 +33852,2025-03-11T05:35:10.445749-07:00,0.0,10.726753,10726.753 +33853,2025-03-11T05:35:21.173917-07:00,0.0,10.728168,10728.168 +33854,2025-03-11T05:35:31.904960-07:00,0.0,10.731043,10731.043 +33855,2025-03-11T05:35:42.631779-07:00,0.0,10.726819,10726.819 +33856,2025-03-11T05:35:53.359602-07:00,0.0,10.727823,10727.823 +33857,2025-03-11T05:36:04.091748-07:00,0.0,10.732146,10732.146 +33858,2025-03-11T05:36:14.810930-07:00,0.0,10.719182,10719.182 +33859,2025-03-11T05:36:25.541750-07:00,0.0,10.73082,10730.82 +33860,2025-03-11T05:36:36.274745-07:00,0.0,10.732995,10732.995 +33861,2025-03-11T05:36:46.997943-07:00,0.0,10.723198,10723.198 +33862,2025-03-11T05:36:57.731774-07:00,0.0,10.733831,10733.831 +33863,2025-03-11T05:37:08.457208-07:00,0.0,10.725434,10725.434 +33864,2025-03-11T05:37:19.187093-07:00,0.0,10.729885,10729.885 +33865,2025-03-11T05:37:29.919752-07:00,0.0,10.732659,10732.659 +33866,2025-03-11T05:37:40.647747-07:00,0.0,10.727995,10727.995 +33867,2025-03-11T05:37:51.371899-07:00,0.0,10.724152,10724.152 +33868,2025-03-11T05:38:02.099824-07:00,0.0,10.727925,10727.925 +33869,2025-03-11T05:38:12.835965-07:00,0.0,10.736141,10736.141 +33870,2025-03-11T05:38:23.563747-07:00,0.0,10.727782,10727.782 +33871,2025-03-11T05:38:34.292956-07:00,0.0,10.729209,10729.209 +33872,2025-03-11T05:38:45.024981-07:00,0.0,10.732025,10732.025 +33873,2025-03-11T05:38:55.753805-07:00,0.0,10.728824,10728.824 +33874,2025-03-11T05:39:06.489745-07:00,0.0,10.73594,10735.94 +33875,2025-03-11T05:39:17.219295-07:00,0.0,10.72955,10729.55 +33876,2025-03-11T05:39:27.940750-07:00,0.0,10.721455,10721.455 +33877,2025-03-11T05:39:38.677744-07:00,0.0,10.736994,10736.994 +33878,2025-03-11T05:39:49.409816-07:00,0.0,10.732072,10732.072 +33879,2025-03-11T05:40:00.142731-07:00,0.0,10.732915,10732.915 +33880,2025-03-11T05:40:10.865166-07:00,0.0,10.722435,10722.435 +33881,2025-03-11T05:40:21.602937-07:00,0.0,10.737771,10737.771 +33882,2025-03-11T05:40:32.334851-07:00,0.0,10.731914,10731.914 +33883,2025-03-11T05:40:43.058890-07:00,0.0,10.724039,10724.039 +33884,2025-03-11T05:40:53.789042-07:00,0.0,10.730152,10730.152 +33885,2025-03-11T05:41:04.520797-07:00,0.0,10.731755,10731.755 +33886,2025-03-11T05:41:15.256839-07:00,0.0,10.736042,10736.042 +33887,2025-03-11T05:41:25.990775-07:00,0.0,10.733936,10733.936 +33888,2025-03-11T05:41:36.720957-07:00,0.0,10.730182,10730.182 +33889,2025-03-11T05:41:47.452946-07:00,0.0,10.731989,10731.989 +33890,2025-03-11T05:41:58.177479-07:00,0.0,10.724533,10724.533 +33891,2025-03-11T05:42:08.916930-07:00,0.0,10.739451,10739.451 +33892,2025-03-11T05:42:19.652945-07:00,0.0,10.736015,10736.015 +33893,2025-03-11T05:42:30.387751-07:00,0.0,10.734806,10734.806 +33894,2025-03-11T05:42:41.119053-07:00,0.0,10.731302,10731.302 +33895,2025-03-11T05:42:51.847372-07:00,0.0,10.728319,10728.319 +33896,2025-03-11T05:43:02.575957-07:00,0.0,10.728585,10728.585 +33897,2025-03-11T05:43:13.310901-07:00,0.0,10.734944,10734.944 +33898,2025-03-11T05:43:24.042921-07:00,0.0,10.73202,10732.02 +33899,2025-03-11T05:43:34.769819-07:00,0.0,10.726898,10726.898 +33900,2025-03-11T05:43:45.508802-07:00,0.0,10.738983,10738.983 +33901,2025-03-11T05:43:56.238943-07:00,0.0,10.730141,10730.141 +33902,2025-03-11T05:44:06.966747-07:00,0.0,10.727804,10727.804 +33903,2025-03-11T05:44:17.696790-07:00,0.0,10.730043,10730.043 +33904,2025-03-11T05:44:28.428103-07:00,0.0,10.731313,10731.313 +33905,2025-03-11T05:44:39.153749-07:00,0.0,10.725646,10725.646 +33906,2025-03-11T05:44:49.887902-07:00,0.0,10.734153,10734.153 +33907,2025-03-11T05:45:00.616060-07:00,0.0,10.728158,10728.158 +33908,2025-03-11T05:45:11.348747-07:00,0.0,10.732687,10732.687 +33909,2025-03-11T05:45:22.073751-07:00,0.0,10.725004,10725.004 +33910,2025-03-11T05:45:32.804104-07:00,0.0,10.730353,10730.353 +33911,2025-03-11T05:45:43.536747-07:00,0.0,10.732643,10732.643 +33912,2025-03-11T05:45:54.266951-07:00,0.0,10.730204,10730.204 +33913,2025-03-11T05:46:04.993494-07:00,0.0,10.726543,10726.543 +33914,2025-03-11T05:46:15.723904-07:00,0.0,10.73041,10730.41 +33915,2025-03-11T05:46:26.458963-07:00,0.0,10.735059,10735.059 +33916,2025-03-11T05:46:37.186633-07:00,0.0,10.72767,10727.67 +33917,2025-03-11T05:46:47.906991-07:00,0.0,10.720358,10720.358 +33918,2025-03-11T05:46:58.645148-07:00,0.0,10.738157,10738.157 +33919,2025-03-11T05:47:09.371811-07:00,0.0,10.726663,10726.663 +33920,2025-03-11T05:47:20.096942-07:00,0.0,10.725131,10725.131 +33921,2025-03-11T05:47:30.824160-07:00,0.0,10.727218,10727.218 +33922,2025-03-11T05:47:41.557747-07:00,0.0,10.733587,10733.587 +33923,2025-03-11T05:47:52.287751-07:00,0.0,10.730004,10730.004 +33924,2025-03-11T05:48:03.015941-07:00,0.0,10.72819,10728.19 +33925,2025-03-11T05:48:13.742747-07:00,0.0,10.726806,10726.806 +33926,2025-03-11T05:48:24.477750-07:00,0.0,10.735003,10735.003 +33927,2025-03-11T05:48:35.198101-07:00,0.0,10.720351,10720.351 +33928,2025-03-11T05:48:45.928747-07:00,0.0,10.730646,10730.646 +33929,2025-03-11T05:48:56.657993-07:00,0.0,10.729246,10729.246 +33930,2025-03-11T05:49:07.385752-07:00,0.0,10.727759,10727.759 +33931,2025-03-11T05:49:18.113749-07:00,0.0,10.727997,10727.997 +33932,2025-03-11T05:49:28.834778-07:00,0.0,10.721029,10721.029 +33933,2025-03-11T05:49:39.568956-07:00,0.0,10.734178,10734.178 +33934,2025-03-11T05:49:50.293997-07:00,0.0,10.725041,10725.041 +33935,2025-03-11T05:50:01.026747-07:00,0.0,10.73275,10732.75 +33936,2025-03-11T05:50:11.755079-07:00,0.0,10.728332,10728.332 +33937,2025-03-11T05:50:22.487747-07:00,0.0,10.732668,10732.668 +33938,2025-03-11T05:50:33.209774-07:00,0.0,10.722027,10722.027 +33939,2025-03-11T05:50:43.949744-07:00,0.0,10.73997,10739.97 +33940,2025-03-11T05:50:54.669915-07:00,0.0,10.720171,10720.171 +33941,2025-03-11T05:51:05.403936-07:00,0.0,10.734021,10734.021 +33942,2025-03-11T05:51:16.130748-07:00,0.0,10.726812,10726.812 +33943,2025-03-11T05:51:26.869750-07:00,0.0,10.739002,10739.002 +33944,2025-03-11T05:51:37.598792-07:00,0.0,10.729042,10729.042 +33945,2025-03-11T05:51:48.332744-07:00,0.0,10.733952,10733.952 +33946,2025-03-11T05:51:59.054936-07:00,0.0,10.722192,10722.192 +33947,2025-03-11T05:52:09.782050-07:00,0.0,10.727114,10727.114 +33948,2025-03-11T05:52:20.519750-07:00,0.0,10.7377,10737.7 +33949,2025-03-11T05:52:31.253046-07:00,0.0,10.733296,10733.296 +33950,2025-03-11T05:52:41.977744-07:00,0.0,10.724698,10724.698 +33951,2025-03-11T05:52:52.708875-07:00,0.0,10.731131,10731.131 +33952,2025-03-11T05:53:03.438128-07:00,0.0,10.729253,10729.253 +33953,2025-03-11T05:53:14.176360-07:00,0.0,10.738232,10738.232 +33954,2025-03-11T05:53:24.904848-07:00,0.0,10.728488,10728.488 +33955,2025-03-11T05:53:35.651515-07:00,0.0,10.746667,10746.667 +33956,2025-03-11T05:53:46.385339-07:00,0.0,10.733824,10733.824 +33957,2025-03-11T05:53:57.124345-07:00,0.0,10.739006,10739.006 +33958,2025-03-11T05:54:07.851514-07:00,0.0,10.727169,10727.169 +33959,2025-03-11T05:54:18.583250-07:00,0.0,10.731736,10731.736 +33960,2025-03-11T05:54:29.306314-07:00,0.0,10.723064,10723.064 +33961,2025-03-11T05:54:40.042321-07:00,0.0,10.736007,10736.007 +33962,2025-03-11T05:54:50.768339-07:00,0.0,10.726018,10726.018 +33963,2025-03-11T05:55:01.497314-07:00,0.0,10.728975,10728.975 +33964,2025-03-11T05:55:12.236509-07:00,0.0,10.739195,10739.195 +33965,2025-03-11T05:55:22.958587-07:00,0.0,10.722078,10722.078 +33966,2025-03-11T05:55:33.695316-07:00,0.0,10.736729,10736.729 +33967,2025-03-11T05:55:44.420385-07:00,0.0,10.725069,10725.069 +33968,2025-03-11T05:55:55.147524-07:00,0.0,10.727139,10727.139 +33969,2025-03-11T05:56:05.882316-07:00,0.0,10.734792,10734.792 +33970,2025-03-11T05:56:16.612654-07:00,0.0,10.730338,10730.338 +33971,2025-03-11T05:56:27.343316-07:00,0.0,10.730662,10730.662 +33972,2025-03-11T05:56:38.066318-07:00,0.0,10.723002,10723.002 +33973,2025-03-11T05:56:48.804530-07:00,0.0,10.738212,10738.212 +33974,2025-03-11T05:56:59.526385-07:00,0.0,10.721855,10721.855 +33975,2025-03-11T05:57:10.260506-07:00,0.0,10.734121,10734.121 +33976,2025-03-11T05:57:20.994515-07:00,0.0,10.734009,10734.009 +33977,2025-03-11T05:57:31.724368-07:00,0.0,10.729853,10729.853 +33978,2025-03-11T05:57:42.456317-07:00,0.0,10.731949,10731.949 +33979,2025-03-11T05:57:53.193498-07:00,0.0,10.737181,10737.181 +33980,2025-03-11T05:58:03.925497-07:00,0.0,10.731999,10731.999 +33981,2025-03-11T05:58:14.665336-07:00,0.0,10.739839,10739.839 +33982,2025-03-11T05:58:25.392319-07:00,0.0,10.726983,10726.983 +33983,2025-03-11T05:58:36.124352-07:00,0.0,10.732033,10732.033 +33984,2025-03-11T05:58:46.858455-07:00,0.0,10.734103,10734.103 +33985,2025-03-11T05:58:57.595512-07:00,0.0,10.737057,10737.057 +33986,2025-03-11T05:59:08.328315-07:00,0.0,10.732803,10732.803 +33987,2025-03-11T05:59:19.058494-07:00,0.0,10.730179,10730.179 +33988,2025-03-11T05:59:29.801104-07:00,0.0,10.74261,10742.61 +33989,2025-03-11T05:59:40.535355-07:00,0.0,10.734251,10734.251 +33990,2025-03-11T05:59:51.263435-07:00,0.0,10.72808,10728.08 +33991,2025-03-11T06:00:02.001435-07:00,0.0,10.738,10738.0 +33992,2025-03-11T06:00:12.739560-07:00,0.0,10.738125,10738.125 +33993,2025-03-11T06:00:23.467834-07:00,0.0,10.728274,10728.274 +33994,2025-03-11T06:00:34.204509-07:00,0.0,10.736675,10736.675 +33995,2025-03-11T06:00:44.932491-07:00,0.0,10.727982,10727.982 +33996,2025-03-11T06:00:55.675508-07:00,0.0,10.743017,10743.017 +33997,2025-03-11T06:01:06.401376-07:00,0.0,10.725868,10725.868 +33998,2025-03-11T06:01:17.134764-07:00,0.0,10.733388,10733.388 +33999,2025-03-11T06:01:27.868804-07:00,0.0,10.73404,10734.04 +34000,2025-03-11T06:01:38.606387-07:00,0.0,10.737583,10737.583 +34001,2025-03-11T06:01:49.341516-07:00,0.0,10.735129,10735.129 +34002,2025-03-11T06:02:00.069884-07:00,0.0,10.728368,10728.368 +34003,2025-03-11T06:02:10.809164-07:00,0.0,10.73928,10739.28 +34004,2025-03-11T06:02:21.543315-07:00,0.0,10.734151,10734.151 +34005,2025-03-11T06:02:32.278319-07:00,0.0,10.735004,10735.004 +34006,2025-03-11T06:02:43.010573-07:00,0.0,10.732254,10732.254 +34007,2025-03-11T06:02:53.740378-07:00,0.0,10.729805,10729.805 +34008,2025-03-11T06:03:04.477505-07:00,0.0,10.737127,10737.127 +34009,2025-03-11T06:03:15.216316-07:00,0.0,10.738811,10738.811 +34010,2025-03-11T06:03:25.942705-07:00,0.0,10.726389,10726.389 +34011,2025-03-11T06:03:36.673318-07:00,0.0,10.730613,10730.613 +34012,2025-03-11T06:03:47.412570-07:00,0.0,10.739252,10739.252 +34013,2025-03-11T06:03:58.148584-07:00,0.0,10.736014,10736.014 +34014,2025-03-11T06:04:08.878885-07:00,0.0,10.730301,10730.301 +34015,2025-03-11T06:04:19.609346-07:00,0.0,10.730461,10730.461 +34016,2025-03-11T06:04:30.345318-07:00,0.0,10.735972,10735.972 +34017,2025-03-11T06:04:41.088311-07:00,0.0,10.742993,10742.993 +34018,2025-03-11T06:04:51.822520-07:00,0.0,10.734209,10734.209 +34019,2025-03-11T06:05:02.546525-07:00,0.0,10.724005,10724.005 +34020,2025-03-11T06:05:13.287497-07:00,0.0,10.740972,10740.972 +34021,2025-03-11T06:05:24.017867-07:00,0.0,10.73037,10730.37 +34022,2025-03-11T06:05:34.755567-07:00,0.0,10.7377,10737.7 +34023,2025-03-11T06:05:45.484318-07:00,0.0,10.728751,10728.751 +34024,2025-03-11T06:05:56.221310-07:00,0.0,10.736992,10736.992 +34025,2025-03-11T06:06:06.954481-07:00,0.0,10.733171,10733.171 +34026,2025-03-11T06:06:17.680521-07:00,0.0,10.72604,10726.04 +34027,2025-03-11T06:06:28.412376-07:00,0.0,10.731855,10731.855 +34028,2025-03-11T06:06:39.139089-07:00,0.0,10.726713,10726.713 +34029,2025-03-11T06:06:49.869611-07:00,0.0,10.730522,10730.522 +34030,2025-03-11T06:07:00.598352-07:00,0.0,10.728741,10728.741 +34031,2025-03-11T06:07:11.343680-07:00,0.0,10.745328,10745.328 +34032,2025-03-11T06:07:22.070463-07:00,0.0,10.726783,10726.783 +34033,2025-03-11T06:07:32.805551-07:00,0.0,10.735088,10735.088 +34034,2025-03-11T06:07:43.532896-07:00,0.0,10.727345,10727.345 +34035,2025-03-11T06:07:54.268531-07:00,0.0,10.735635,10735.635 +34036,2025-03-11T06:08:04.990435-07:00,0.0,10.721904,10721.904 +34037,2025-03-11T06:08:15.723385-07:00,0.0,10.73295,10732.95 +34038,2025-03-11T06:08:26.459936-07:00,0.0,10.736551,10736.551 +34039,2025-03-11T06:08:37.193530-07:00,0.0,10.733594,10733.594 +34040,2025-03-11T06:08:47.926395-07:00,0.0,10.732865,10732.865 +34041,2025-03-11T06:08:58.654618-07:00,0.0,10.728223,10728.223 +34042,2025-03-11T06:09:09.386311-07:00,0.0,10.731693,10731.693 +34043,2025-03-11T06:09:20.120314-07:00,0.0,10.734003,10734.003 +34044,2025-03-11T06:09:30.855835-07:00,0.0,10.735521,10735.521 +34045,2025-03-11T06:09:41.578315-07:00,0.0,10.72248,10722.48 +34046,2025-03-11T06:09:52.312315-07:00,0.0,10.734,10734.0 +34047,2025-03-11T06:10:03.042103-07:00,0.0,10.729788,10729.788 +34048,2025-03-11T06:10:13.777315-07:00,0.0,10.735212,10735.212 +34049,2025-03-11T06:10:24.500343-07:00,0.0,10.723028,10723.028 +34050,2025-03-11T06:10:35.238315-07:00,0.0,10.737972,10737.972 +34051,2025-03-11T06:10:45.968414-07:00,0.0,10.730099,10730.099 +34052,2025-03-11T06:10:56.704388-07:00,0.0,10.735974,10735.974 +34053,2025-03-11T06:11:07.437318-07:00,0.0,10.73293,10732.93 +34054,2025-03-11T06:11:18.164690-07:00,0.0,10.727372,10727.372 +34055,2025-03-11T06:11:28.901342-07:00,0.0,10.736652,10736.652 +34056,2025-03-11T06:11:39.636522-07:00,0.0,10.73518,10735.18 +34057,2025-03-11T06:11:50.364485-07:00,0.0,10.727963,10727.963 +34058,2025-03-11T06:12:01.095513-07:00,0.0,10.731028,10731.028 +34059,2025-03-11T06:12:11.833377-07:00,0.0,10.737864,10737.864 +34060,2025-03-11T06:12:22.564532-07:00,0.0,10.731155,10731.155 +34061,2025-03-11T06:12:33.305488-07:00,0.0,10.740956,10740.956 +34062,2025-03-11T06:12:44.033473-07:00,0.0,10.727985,10727.985 +34063,2025-03-11T06:12:54.767531-07:00,0.0,10.734058,10734.058 +34064,2025-03-11T06:13:05.509318-07:00,0.0,10.741787,10741.787 +34065,2025-03-11T06:13:16.245314-07:00,0.0,10.735996,10735.996 +34066,2025-03-11T06:13:26.972318-07:00,0.0,10.727004,10727.004 +34067,2025-03-11T06:13:37.701318-07:00,0.0,10.729,10729.0 +34068,2025-03-11T06:13:48.441497-07:00,0.0,10.740179,10740.179 +34069,2025-03-11T06:13:59.173074-07:00,0.0,10.731577,10731.577 +34070,2025-03-11T06:14:09.908316-07:00,0.0,10.735242,10735.242 +34071,2025-03-11T06:14:20.640320-07:00,0.0,10.732004,10732.004 +34072,2025-03-11T06:14:31.368484-07:00,0.0,10.728164,10728.164 +34073,2025-03-11T06:14:42.104457-07:00,0.0,10.735973,10735.973 +34074,2025-03-11T06:14:52.835749-07:00,0.0,10.731292,10731.292 +34075,2025-03-11T06:15:03.566518-07:00,0.0,10.730769,10730.769 +34076,2025-03-11T06:15:14.291374-07:00,0.0,10.724856,10724.856 +34077,2025-03-11T06:15:25.032322-07:00,0.0,10.740948,10740.948 +34078,2025-03-11T06:15:35.759317-07:00,0.0,10.726995,10726.995 +34079,2025-03-11T06:15:46.492861-07:00,0.0,10.733544,10733.544 +34080,2025-03-11T06:15:57.220324-07:00,0.0,10.727463,10727.463 +34081,2025-03-11T06:16:07.952887-07:00,0.0,10.732563,10732.563 +34082,2025-03-11T06:16:18.693132-07:00,0.0,10.740245,10740.245 +34083,2025-03-11T06:16:29.425379-07:00,0.0,10.732247,10732.247 +34084,2025-03-11T06:16:40.159311-07:00,0.0,10.733932,10733.932 +34085,2025-03-11T06:16:50.885506-07:00,0.0,10.726195,10726.195 +34086,2025-03-11T06:17:01.620657-07:00,0.0,10.735151,10735.151 +34087,2025-03-11T06:17:12.350318-07:00,0.0,10.729661,10729.661 +34088,2025-03-11T06:17:23.086520-07:00,0.0,10.736202,10736.202 +34089,2025-03-11T06:17:33.815564-07:00,0.0,10.729044,10729.044 +34090,2025-03-11T06:17:44.549318-07:00,0.0,10.733754,10733.754 +34091,2025-03-11T06:17:55.280546-07:00,0.0,10.731228,10731.228 +34092,2025-03-11T06:18:06.020319-07:00,0.0,10.739773,10739.773 +34093,2025-03-11T06:18:16.753879-07:00,0.0,10.73356,10733.56 +34094,2025-03-11T06:18:27.488340-07:00,0.0,10.734461,10734.461 +34095,2025-03-11T06:18:38.212512-07:00,0.0,10.724172,10724.172 +34096,2025-03-11T06:18:48.949499-07:00,0.0,10.736987,10736.987 +34097,2025-03-11T06:18:59.679800-07:00,0.0,10.730301,10730.301 +34098,2025-03-11T06:19:10.406466-07:00,0.0,10.726666,10726.666 +34099,2025-03-11T06:19:21.140505-07:00,0.0,10.734039,10734.039 +34100,2025-03-11T06:19:31.872384-07:00,0.0,10.731879,10731.879 +34101,2025-03-11T06:19:42.602433-07:00,0.0,10.730049,10730.049 +34102,2025-03-11T06:19:53.331487-07:00,0.0,10.729054,10729.054 +34103,2025-03-11T06:20:04.064685-07:00,0.0,10.733198,10733.198 +34104,2025-03-11T06:20:14.794352-07:00,0.0,10.729667,10729.667 +34105,2025-03-11T06:20:25.518957-07:00,0.0,10.724605,10724.605 +34106,2025-03-11T06:20:36.252836-07:00,0.0,10.733879,10733.879 +34107,2025-03-11T06:20:46.981514-07:00,0.0,10.728678,10728.678 +34108,2025-03-11T06:20:57.717547-07:00,0.0,10.736033,10736.033 +34109,2025-03-11T06:21:08.442381-07:00,0.0,10.724834,10724.834 +34110,2025-03-11T06:21:19.184455-07:00,0.0,10.742074,10742.074 +34111,2025-03-11T06:21:29.912627-07:00,0.0,10.728172,10728.172 +34112,2025-03-11T06:21:40.641317-07:00,0.0,10.72869,10728.69 +34113,2025-03-11T06:21:51.381586-07:00,0.0,10.740269,10740.269 +34114,2025-03-11T06:22:02.110516-07:00,0.0,10.72893,10728.93 +34115,2025-03-11T06:22:12.840900-07:00,0.0,10.730384,10730.384 +34116,2025-03-11T06:22:23.573520-07:00,0.0,10.73262,10732.62 +34117,2025-03-11T06:22:34.304079-07:00,0.0,10.730559,10730.559 +34118,2025-03-11T06:22:45.034854-07:00,0.0,10.730775,10730.775 +34119,2025-03-11T06:22:55.764382-07:00,0.0,10.729528,10729.528 +34120,2025-03-11T06:23:06.504316-07:00,0.0,10.739934,10739.934 +34121,2025-03-11T06:23:17.234360-07:00,0.0,10.730044,10730.044 +34122,2025-03-11T06:23:27.969107-07:00,0.0,10.734747,10734.747 +34123,2025-03-11T06:23:38.693319-07:00,0.0,10.724212,10724.212 +34124,2025-03-11T06:23:49.430319-07:00,0.0,10.737,10737.0 +34125,2025-03-11T06:24:00.157471-07:00,0.0,10.727152,10727.152 +34126,2025-03-11T06:24:10.895355-07:00,0.0,10.737884,10737.884 +34127,2025-03-11T06:24:21.624320-07:00,0.0,10.728965,10728.965 +34128,2025-03-11T06:24:32.350433-07:00,0.0,10.726113,10726.113 +34129,2025-03-11T06:24:43.078413-07:00,0.0,10.72798,10727.98 +34130,2025-03-11T06:24:53.815389-07:00,0.0,10.736976,10736.976 +34131,2025-03-11T06:25:04.536604-07:00,0.0,10.721215,10721.215 +34132,2025-03-11T06:25:15.267444-07:00,0.0,10.73084,10730.84 +34133,2025-03-11T06:25:26.008406-07:00,0.0,10.740962,10740.962 +34134,2025-03-11T06:25:36.732312-07:00,0.0,10.723906,10723.906 +34135,2025-03-11T06:25:47.468508-07:00,0.0,10.736196,10736.196 +34136,2025-03-11T06:25:58.201534-07:00,0.0,10.733026,10733.026 +34137,2025-03-11T06:26:08.930511-07:00,0.0,10.728977,10728.977 +34138,2025-03-11T06:26:19.656320-07:00,0.0,10.725809,10725.809 +34139,2025-03-11T06:26:30.392362-07:00,0.0,10.736042,10736.042 +34140,2025-03-11T06:26:41.121516-07:00,0.0,10.729154,10729.154 +34141,2025-03-11T06:26:51.853517-07:00,0.0,10.732001,10732.001 +34142,2025-03-11T06:27:02.582313-07:00,0.0,10.728796,10728.796 +34143,2025-03-11T06:27:13.311510-07:00,0.0,10.729197,10729.197 +34144,2025-03-11T06:27:24.044580-07:00,0.0,10.73307,10733.07 +34145,2025-03-11T06:27:34.765331-07:00,0.0,10.720751,10720.751 +34146,2025-03-11T06:27:45.499990-07:00,0.0,10.734659,10734.659 +34147,2025-03-11T06:27:56.229498-07:00,0.0,10.729508,10729.508 +34148,2025-03-11T06:28:06.957476-07:00,0.0,10.727978,10727.978 +34149,2025-03-11T06:28:17.685461-07:00,0.0,10.727985,10727.985 +34150,2025-03-11T06:28:28.415317-07:00,0.0,10.729856,10729.856 +34151,2025-03-11T06:28:39.150505-07:00,0.0,10.735188,10735.188 +34152,2025-03-11T06:28:49.871553-07:00,0.0,10.721048,10721.048 +34153,2025-03-11T06:29:00.607655-07:00,0.0,10.736102,10736.102 +34154,2025-03-11T06:29:11.333523-07:00,0.0,10.725868,10725.868 +34155,2025-03-11T06:29:22.061511-07:00,0.0,10.727988,10727.988 +34156,2025-03-11T06:29:32.794351-07:00,0.0,10.73284,10732.84 +34157,2025-03-11T06:29:43.514316-07:00,0.0,10.719965,10719.965 +34158,2025-03-11T06:29:54.247320-07:00,0.0,10.733004,10733.004 +34159,2025-03-11T06:30:04.977314-07:00,0.0,10.729994,10729.994 +34160,2025-03-11T06:30:15.711706-07:00,0.0,10.734392,10734.392 +34161,2025-03-11T06:30:26.440583-07:00,0.0,10.728877,10728.877 +34162,2025-03-11T06:30:37.158515-07:00,0.0,10.717932,10717.932 +34163,2025-03-11T06:30:47.894516-07:00,0.0,10.736001,10736.001 +34164,2025-03-11T06:30:58.619312-07:00,0.0,10.724796,10724.796 +34165,2025-03-11T06:31:09.352485-07:00,0.0,10.733173,10733.173 +34166,2025-03-11T06:31:20.084311-07:00,0.0,10.731826,10731.826 +34167,2025-03-11T06:31:30.807517-07:00,0.0,10.723206,10723.206 +34168,2025-03-11T06:31:41.536326-07:00,0.0,10.728809,10728.809 +34169,2025-03-11T06:31:52.272316-07:00,0.0,10.73599,10735.99 +34170,2025-03-11T06:32:03.001385-07:00,0.0,10.729069,10729.069 +34171,2025-03-11T06:32:13.731724-07:00,0.0,10.730339,10730.339 +34172,2025-03-11T06:32:24.459399-07:00,0.0,10.727675,10727.675 +34173,2025-03-11T06:32:35.193321-07:00,0.0,10.733922,10733.922 +34174,2025-03-11T06:32:45.923485-07:00,0.0,10.730164,10730.164 +34175,2025-03-11T06:32:56.647315-07:00,0.0,10.72383,10723.83 +34176,2025-03-11T06:33:07.378515-07:00,0.0,10.7312,10731.2 +34177,2025-03-11T06:33:18.113505-07:00,0.0,10.73499,10734.99 +34178,2025-03-11T06:33:28.842397-07:00,0.0,10.728892,10728.892 +34179,2025-03-11T06:33:39.567750-07:00,0.0,10.725353,10725.353 +34180,2025-03-11T06:33:50.293349-07:00,0.0,10.725599,10725.599 +34181,2025-03-11T06:34:01.025315-07:00,0.0,10.731966,10731.966 +34182,2025-03-11T06:34:11.748709-07:00,0.0,10.723394,10723.394 +34183,2025-03-11T06:34:22.480318-07:00,0.0,10.731609,10731.609 +34184,2025-03-11T06:34:33.209348-07:00,0.0,10.72903,10729.03 +34185,2025-03-11T06:34:43.937499-07:00,0.0,10.728151,10728.151 +34186,2025-03-11T06:34:54.661878-07:00,0.0,10.724379,10724.379 +34187,2025-03-11T06:35:05.396387-07:00,0.0,10.734509,10734.509 +34188,2025-03-11T06:35:16.119313-07:00,0.0,10.722926,10722.926 +34189,2025-03-11T06:35:26.847376-07:00,0.0,10.728063,10728.063 +34190,2025-03-11T06:35:37.577716-07:00,0.0,10.73034,10730.34 +34191,2025-03-11T06:35:48.302090-07:00,0.0,10.724374,10724.374 +34192,2025-03-11T06:35:59.034386-07:00,0.0,10.732296,10732.296 +34193,2025-03-11T06:36:09.764744-07:00,0.0,10.730358,10730.358 +34194,2025-03-11T06:36:20.495426-07:00,0.0,10.730682,10730.682 +34195,2025-03-11T06:36:31.218495-07:00,0.0,10.723069,10723.069 +34196,2025-03-11T06:36:41.955188-07:00,0.0,10.736693,10736.693 +34197,2025-03-11T06:36:52.676318-07:00,0.0,10.72113,10721.13 +34198,2025-03-11T06:37:03.413528-07:00,0.0,10.73721,10737.21 +34199,2025-03-11T06:37:14.135321-07:00,0.0,10.721793,10721.793 +34200,2025-03-11T06:37:24.863400-07:00,0.0,10.728079,10728.079 +34201,2025-03-11T06:37:35.592689-07:00,0.0,10.729289,10729.289 +34202,2025-03-11T06:37:46.319314-07:00,0.0,10.726625,10726.625 +34203,2025-03-11T06:37:57.055352-07:00,0.0,10.736038,10736.038 +34204,2025-03-11T06:38:07.772671-07:00,0.0,10.717319,10717.319 +34205,2025-03-11T06:38:18.504312-07:00,0.0,10.731641,10731.641 +34206,2025-03-11T06:38:29.236072-07:00,0.0,10.73176,10731.76 +34207,2025-03-11T06:38:39.961317-07:00,0.0,10.725245,10725.245 +34208,2025-03-11T06:38:50.683069-07:00,0.0,10.721752,10721.752 +34209,2025-03-11T06:39:01.406318-07:00,0.0,10.723249,10723.249 +34210,2025-03-11T06:39:12.134389-07:00,0.0,10.728071,10728.071 +34211,2025-03-11T06:39:22.863498-07:00,0.0,10.729109,10729.109 +34212,2025-03-11T06:39:33.581393-07:00,0.0,10.717895,10717.895 +34213,2025-03-11T06:39:44.307695-07:00,0.0,10.726302,10726.302 +34214,2025-03-11T06:39:55.034738-07:00,0.0,10.727043,10727.043 +34215,2025-03-11T06:40:05.760707-07:00,0.0,10.725969,10725.969 +34216,2025-03-11T06:40:16.485312-07:00,0.0,10.724605,10724.605 +34217,2025-03-11T06:40:27.210318-07:00,0.0,10.725006,10725.006 +34218,2025-03-11T06:40:37.934750-07:00,0.0,10.724432,10724.432 +34219,2025-03-11T06:40:48.670315-07:00,0.0,10.735565,10735.565 +34220,2025-03-11T06:40:59.400265-07:00,0.0,10.72995,10729.95 +34221,2025-03-11T06:41:10.128050-07:00,0.0,10.727785,10727.785 +34222,2025-03-11T06:41:20.855427-07:00,0.0,10.727377,10727.377 +34223,2025-03-11T06:41:31.578507-07:00,0.0,10.72308,10723.08 +34224,2025-03-11T06:41:42.302505-07:00,0.0,10.723998,10723.998 +34225,2025-03-11T06:41:53.034977-07:00,0.0,10.732472,10732.472 +34226,2025-03-11T06:42:03.760515-07:00,0.0,10.725538,10725.538 +34227,2025-03-11T06:42:14.493525-07:00,0.0,10.73301,10733.01 +34228,2025-03-11T06:42:25.219324-07:00,0.0,10.725799,10725.799 +34229,2025-03-11T06:42:35.944385-07:00,0.0,10.725061,10725.061 +34230,2025-03-11T06:42:46.679526-07:00,0.0,10.735141,10735.141 +34231,2025-03-11T06:42:57.400490-07:00,0.0,10.720964,10720.964 +34232,2025-03-11T06:43:08.131313-07:00,0.0,10.730823,10730.823 +34233,2025-03-11T06:43:18.857531-07:00,0.0,10.726218,10726.218 +34234,2025-03-11T06:43:29.581390-07:00,0.0,10.723859,10723.859 +34235,2025-03-11T06:43:40.316361-07:00,0.0,10.734971,10734.971 +34236,2025-03-11T06:43:51.042240-07:00,0.0,10.725879,10725.879 +34237,2025-03-11T06:44:01.772315-07:00,0.0,10.730075,10730.075 +34238,2025-03-11T06:44:12.504318-07:00,0.0,10.732003,10732.003 +34239,2025-03-11T06:44:23.230501-07:00,0.0,10.726183,10726.183 +34240,2025-03-11T06:44:33.960387-07:00,0.0,10.729886,10729.886 +34241,2025-03-11T06:44:44.688504-07:00,0.0,10.728117,10728.117 +34242,2025-03-11T06:44:55.418512-07:00,0.0,10.730008,10730.008 +34243,2025-03-11T06:45:06.152480-07:00,0.0,10.733968,10733.968 +34244,2025-03-11T06:45:16.872318-07:00,0.0,10.719838,10719.838 +34245,2025-03-11T06:45:27.602341-07:00,0.0,10.730023,10730.023 +34246,2025-03-11T06:45:38.332316-07:00,0.0,10.729975,10729.975 +34247,2025-03-11T06:45:49.057766-07:00,0.0,10.72545,10725.45 +34248,2025-03-11T06:45:59.784472-07:00,0.0,10.726706,10726.706 +34249,2025-03-11T06:46:10.513320-07:00,0.0,10.728848,10728.848 +34250,2025-03-11T06:46:21.244737-07:00,0.0,10.731417,10731.417 +34251,2025-03-11T06:46:31.966319-07:00,0.0,10.721582,10721.582 +34252,2025-03-11T06:46:42.696370-07:00,0.0,10.730051,10730.051 +34253,2025-03-11T06:46:53.422523-07:00,0.0,10.726153,10726.153 +34254,2025-03-11T06:47:04.148314-07:00,0.0,10.725791,10725.791 +34255,2025-03-11T06:47:14.882497-07:00,0.0,10.734183,10734.183 +34256,2025-03-11T06:47:25.608311-07:00,0.0,10.725814,10725.814 +34257,2025-03-11T06:47:36.335533-07:00,0.0,10.727222,10727.222 +34258,2025-03-11T06:47:47.074711-07:00,0.0,10.739178,10739.178 +34259,2025-03-11T06:47:57.797453-07:00,0.0,10.722742,10722.742 +34260,2025-03-11T06:48:08.531472-07:00,0.0,10.734019,10734.019 +34261,2025-03-11T06:48:19.259906-07:00,0.0,10.728434,10728.434 +34262,2025-03-11T06:48:29.989541-07:00,0.0,10.729635,10729.635 +34263,2025-03-11T06:48:40.709495-07:00,0.0,10.719954,10719.954 +34264,2025-03-11T06:48:51.440412-07:00,0.0,10.730917,10730.917 +34265,2025-03-11T06:49:02.169318-07:00,0.0,10.728906,10728.906 +34266,2025-03-11T06:49:12.895525-07:00,0.0,10.726207,10726.207 +34267,2025-03-11T06:49:23.626315-07:00,0.0,10.73079,10730.79 +34268,2025-03-11T06:49:34.365320-07:00,0.0,10.739005,10739.005 +34269,2025-03-11T06:49:45.089691-07:00,0.0,10.724371,10724.371 +34270,2025-03-11T06:49:55.816315-07:00,0.0,10.726624,10726.624 +34271,2025-03-11T06:50:06.548114-07:00,0.0,10.731799,10731.799 +34272,2025-03-11T06:50:17.274619-07:00,0.0,10.726505,10726.505 +34273,2025-03-11T06:50:28.009323-07:00,0.0,10.734704,10734.704 +34274,2025-03-11T06:50:38.742565-07:00,0.0,10.733242,10733.242 +34275,2025-03-11T06:50:49.468773-07:00,0.0,10.726208,10726.208 +34276,2025-03-11T06:51:00.187389-07:00,0.0,10.718616,10718.616 +34277,2025-03-11T06:51:10.926316-07:00,0.0,10.738927,10738.927 +34278,2025-03-11T06:51:21.655341-07:00,0.0,10.729025,10729.025 +34279,2025-03-11T06:51:32.380498-07:00,0.0,10.725157,10725.157 +34280,2025-03-11T06:51:43.107503-07:00,0.0,10.727005,10727.005 +34281,2025-03-11T06:51:53.836573-07:00,0.0,10.72907,10729.07 +34282,2025-03-11T06:52:04.558370-07:00,0.0,10.721797,10721.797 +34283,2025-03-11T06:52:15.291344-07:00,0.0,10.732974,10732.974 +34284,2025-03-11T06:52:26.017320-07:00,0.0,10.725976,10725.976 +34285,2025-03-11T06:52:36.743655-07:00,0.0,10.726335,10726.335 +34286,2025-03-11T06:52:47.475315-07:00,0.0,10.73166,10731.66 +34287,2025-03-11T06:52:58.202320-07:00,0.0,10.727005,10727.005 +34288,2025-03-11T06:53:08.933514-07:00,0.0,10.731194,10731.194 +34289,2025-03-11T06:53:19.662317-07:00,0.0,10.728803,10728.803 +34290,2025-03-11T06:53:30.389492-07:00,0.0,10.727175,10727.175 +34291,2025-03-11T06:53:41.140526-07:00,0.0,10.751034,10751.034 +34292,2025-03-11T06:53:51.872658-07:00,0.0,10.732132,10732.132 +34293,2025-03-11T06:54:02.594717-07:00,0.0,10.722059,10722.059 +34294,2025-03-11T06:54:13.322561-07:00,0.0,10.727844,10727.844 +34295,2025-03-11T06:54:24.053984-07:00,0.0,10.731423,10731.423 +34296,2025-03-11T06:54:34.783393-07:00,0.0,10.729409,10729.409 +34297,2025-03-11T06:54:45.507527-07:00,0.0,10.724134,10724.134 +34298,2025-03-11T06:54:56.231697-07:00,0.0,10.72417,10724.17 +34299,2025-03-11T06:55:06.956769-07:00,0.0,10.725072,10725.072 +34300,2025-03-11T06:55:17.682704-07:00,0.0,10.725935,10725.935 +34301,2025-03-11T06:55:28.408530-07:00,0.0,10.725826,10725.826 +34302,2025-03-11T06:55:39.142719-07:00,0.0,10.734189,10734.189 +34303,2025-03-11T06:55:49.866699-07:00,0.0,10.72398,10723.98 +34304,2025-03-11T06:56:00.602934-07:00,0.0,10.736235,10736.235 +34305,2025-03-11T06:56:11.321750-07:00,0.0,10.718816,10718.816 +34306,2025-03-11T06:56:22.049535-07:00,0.0,10.727785,10727.785 +34307,2025-03-11T06:56:32.776530-07:00,0.0,10.726995,10726.995 +34308,2025-03-11T06:56:43.503700-07:00,0.0,10.72717,10727.17 +34309,2025-03-11T06:56:54.225686-07:00,0.0,10.721986,10721.986 +34310,2025-03-11T06:57:04.954765-07:00,0.0,10.729079,10729.079 +34311,2025-03-11T06:57:15.677288-07:00,0.0,10.722523,10722.523 +34312,2025-03-11T06:57:26.412529-07:00,0.0,10.735241,10735.241 +34313,2025-03-11T06:57:37.135910-07:00,0.0,10.723381,10723.381 +34314,2025-03-11T06:57:47.863527-07:00,0.0,10.727617,10727.617 +34315,2025-03-11T06:57:58.591758-07:00,0.0,10.728231,10728.231 +34316,2025-03-11T06:58:09.308727-07:00,0.0,10.716969,10716.969 +34317,2025-03-11T06:58:20.037529-07:00,0.0,10.728802,10728.802 +34318,2025-03-11T06:58:30.766344-07:00,0.0,10.728815,10728.815 +34319,2025-03-11T06:58:41.488831-07:00,0.0,10.722487,10722.487 +34320,2025-03-11T06:58:52.211404-07:00,0.0,10.722573,10722.573 +34321,2025-03-11T06:59:02.939601-07:00,0.0,10.728197,10728.197 +34322,2025-03-11T06:59:13.660622-07:00,0.0,10.721021,10721.021 +34323,2025-03-11T06:59:24.382527-07:00,0.0,10.721905,10721.905 +34324,2025-03-11T06:59:35.111633-07:00,0.0,10.729106,10729.106 +34325,2025-03-11T06:59:45.841728-07:00,0.0,10.730095,10730.095 +34326,2025-03-11T06:59:56.567527-07:00,0.0,10.725799,10725.799 +34327,2025-03-11T07:00:07.298689-07:00,0.0,10.731162,10731.162 +34328,2025-03-11T07:00:18.019731-07:00,0.0,10.721042,10721.042 +34329,2025-03-11T07:00:28.751997-07:00,0.0,10.732266,10732.266 +34330,2025-03-11T07:00:39.473537-07:00,0.0,10.72154,10721.54 +34331,2025-03-11T07:00:50.205528-07:00,0.0,10.731991,10731.991 +34332,2025-03-11T07:01:00.932707-07:00,0.0,10.727179,10727.179 +34333,2025-03-11T07:01:09.139139-07:00,0.0,8.206432,8206.432 +34334,2025-03-11T07:01:11.655731-07:00,0.0,2.516592,2516.592 +34335,2025-03-11T07:01:22.380697-07:00,0.0,10.724966,10724.966 +34336,2025-03-11T07:01:33.097528-07:00,0.0,10.716831,10716.831 +34337,2025-03-11T07:01:43.832758-07:00,0.0,10.73523,10735.23 +34338,2025-03-11T07:01:54.556765-07:00,0.0,10.724007,10724.007 +34339,2025-03-11T07:02:05.279625-07:00,0.0,10.72286,10722.86 +34340,2025-03-11T07:02:16.008845-07:00,0.0,10.72922,10729.22 +34341,2025-03-11T07:02:26.741816-07:00,0.0,10.732971,10732.971 +34342,2025-03-11T07:02:37.462531-07:00,0.0,10.720715,10720.715 +34343,2025-03-11T07:02:48.194593-07:00,0.0,10.732062,10732.062 +34344,2025-03-11T07:02:58.922528-07:00,0.0,10.727935,10727.935 +34345,2025-03-11T07:03:09.647626-07:00,0.0,10.725098,10725.098 +34346,2025-03-11T07:03:20.383527-07:00,0.0,10.735901,10735.901 +34347,2025-03-11T07:03:31.105680-07:00,0.0,10.722153,10722.153 +34348,2025-03-11T07:03:41.829816-07:00,0.0,10.724136,10724.136 +34349,2025-03-11T07:03:52.560071-07:00,0.0,10.730255,10730.255 +34350,2025-03-11T07:04:03.286710-07:00,0.0,10.726639,10726.639 +34351,2025-03-11T07:04:14.016946-07:00,0.0,10.730236,10730.236 +34352,2025-03-11T07:04:24.749584-07:00,0.0,10.732638,10732.638 +34353,2025-03-11T07:04:35.472680-07:00,0.0,10.723096,10723.096 +34354,2025-03-11T07:04:46.204558-07:00,0.0,10.731878,10731.878 +34355,2025-03-11T07:04:56.925902-07:00,0.0,10.721344,10721.344 +34356,2025-03-11T07:05:07.651527-07:00,0.0,10.725625,10725.625 +34357,2025-03-11T07:05:18.385527-07:00,0.0,10.734,10734.0 +34358,2025-03-11T07:05:29.110531-07:00,0.0,10.725004,10725.004 +34359,2025-03-11T07:05:39.845785-07:00,0.0,10.735254,10735.254 +34360,2025-03-11T07:05:50.565553-07:00,0.0,10.719768,10719.768 +34361,2025-03-11T07:06:01.293715-07:00,0.0,10.728162,10728.162 +34362,2025-03-11T07:06:12.029524-07:00,0.0,10.735809,10735.809 +34363,2025-03-11T07:06:22.756525-07:00,0.0,10.727001,10727.001 +34364,2025-03-11T07:06:33.484920-07:00,0.0,10.728395,10728.395 +34365,2025-03-11T07:06:44.206526-07:00,0.0,10.721606,10721.606 +34366,2025-03-11T07:06:54.936743-07:00,0.0,10.730217,10730.217 +34367,2025-03-11T07:07:05.661729-07:00,0.0,10.724986,10724.986 +34368,2025-03-11T07:07:16.389530-07:00,0.0,10.727801,10727.801 +34369,2025-03-11T07:07:27.118716-07:00,0.0,10.729186,10729.186 +34370,2025-03-11T07:07:37.840765-07:00,0.0,10.722049,10722.049 +34371,2025-03-11T07:07:48.567714-07:00,0.0,10.726949,10726.949 +34372,2025-03-11T07:07:59.300587-07:00,0.0,10.732873,10732.873 +34373,2025-03-11T07:08:10.032634-07:00,0.0,10.732047,10732.047 +34374,2025-03-11T07:08:20.756811-07:00,0.0,10.724177,10724.177 +34375,2025-03-11T07:08:31.483530-07:00,0.0,10.726719,10726.719 +34376,2025-03-11T07:08:42.216718-07:00,0.0,10.733188,10733.188 +34377,2025-03-11T07:08:52.941055-07:00,0.0,10.724337,10724.337 +34378,2025-03-11T07:09:03.670635-07:00,0.0,10.72958,10729.58 +34379,2025-03-11T07:09:14.396607-07:00,0.0,10.725972,10725.972 +34380,2025-03-11T07:09:25.127557-07:00,0.0,10.73095,10730.95 +34381,2025-03-11T07:09:35.844739-07:00,0.0,10.717182,10717.182 +34382,2025-03-11T07:09:46.576737-07:00,0.0,10.731998,10731.998 +34383,2025-03-11T07:09:57.305730-07:00,0.0,10.728993,10728.993 +34384,2025-03-11T07:10:08.038559-07:00,0.0,10.732829,10732.829 +34385,2025-03-11T07:10:18.761551-07:00,0.0,10.722992,10722.992 +34386,2025-03-11T07:10:29.498597-07:00,0.0,10.737046,10737.046 +34387,2025-03-11T07:10:40.223707-07:00,0.0,10.72511,10725.11 +34388,2025-03-11T07:10:50.948733-07:00,0.0,10.725026,10725.026 +34389,2025-03-11T07:11:01.685564-07:00,0.0,10.736831,10736.831 +34390,2025-03-11T07:11:12.411796-07:00,0.0,10.726232,10726.232 +34391,2025-03-11T07:11:23.137708-07:00,0.0,10.725912,10725.912 +34392,2025-03-11T07:11:33.869602-07:00,0.0,10.731894,10731.894 +34393,2025-03-11T07:11:44.599907-07:00,0.0,10.730305,10730.305 +34394,2025-03-11T07:11:55.328588-07:00,0.0,10.728681,10728.681 +34395,2025-03-11T07:12:06.054616-07:00,0.0,10.726028,10726.028 +34396,2025-03-11T07:12:16.777744-07:00,0.0,10.723128,10723.128 +34397,2025-03-11T07:12:27.505600-07:00,0.0,10.727856,10727.856 +34398,2025-03-11T07:12:38.242468-07:00,0.0,10.736868,10736.868 +34399,2025-03-11T07:12:48.967528-07:00,0.0,10.72506,10725.06 +34400,2025-03-11T07:12:59.690533-07:00,0.0,10.723005,10723.005 +34401,2025-03-11T07:13:10.415810-07:00,0.0,10.725277,10725.277 +34402,2025-03-11T07:13:21.142528-07:00,0.0,10.726718,10726.718 +34403,2025-03-11T07:13:31.876216-07:00,0.0,10.733688,10733.688 +34404,2025-03-11T07:13:42.595530-07:00,0.0,10.719314,10719.314 +34405,2025-03-11T07:13:53.327712-07:00,0.0,10.732182,10732.182 +34406,2025-03-11T07:14:04.060692-07:00,0.0,10.73298,10732.98 +34407,2025-03-11T07:14:14.782343-07:00,0.0,10.721651,10721.651 +34408,2025-03-11T07:14:25.517742-07:00,0.0,10.735399,10735.399 +34409,2025-03-11T07:14:36.249722-07:00,0.0,10.73198,10731.98 +34410,2025-03-11T07:14:46.972736-07:00,0.0,10.723014,10723.014 +34411,2025-03-11T07:14:57.707598-07:00,0.0,10.734862,10734.862 +34412,2025-03-11T07:15:08.427622-07:00,0.0,10.720024,10720.024 +34413,2025-03-11T07:15:19.157692-07:00,0.0,10.73007,10730.07 +34414,2025-03-11T07:15:29.887731-07:00,0.0,10.730039,10730.039 +34415,2025-03-11T07:15:40.616532-07:00,0.0,10.728801,10728.801 +34416,2025-03-11T07:15:51.347529-07:00,0.0,10.730997,10730.997 +34417,2025-03-11T07:16:02.077749-07:00,0.0,10.73022,10730.22 +34418,2025-03-11T07:16:12.815759-07:00,0.0,10.73801,10738.01 +34419,2025-03-11T07:16:23.537756-07:00,0.0,10.721997,10721.997 +34420,2025-03-11T07:16:34.273595-07:00,0.0,10.735839,10735.839 +34421,2025-03-11T07:16:45.001733-07:00,0.0,10.728138,10728.138 +34422,2025-03-11T07:16:55.731529-07:00,0.0,10.729796,10729.796 +34423,2025-03-11T07:17:06.458698-07:00,0.0,10.727169,10727.169 +34424,2025-03-11T07:17:17.191527-07:00,0.0,10.732829,10732.829 +34425,2025-03-11T07:17:27.923628-07:00,0.0,10.732101,10732.101 +34426,2025-03-11T07:17:38.658189-07:00,0.0,10.734561,10734.561 +34427,2025-03-11T07:17:49.385599-07:00,0.0,10.72741,10727.41 +34428,2025-03-11T07:18:00.112529-07:00,0.0,10.72693,10726.93 +34429,2025-03-11T07:18:10.851593-07:00,0.0,10.739064,10739.064 +34430,2025-03-11T07:18:21.583771-07:00,0.0,10.732178,10732.178 +34431,2025-03-11T07:18:32.306112-07:00,0.0,10.722341,10722.341 +34432,2025-03-11T07:18:43.034705-07:00,0.0,10.728593,10728.593 +34433,2025-03-11T07:18:53.762686-07:00,0.0,10.727981,10727.981 +34434,2025-03-11T07:19:04.498680-07:00,0.0,10.735994,10735.994 +34435,2025-03-11T07:19:15.225740-07:00,0.0,10.72706,10727.06 +34436,2025-03-11T07:19:25.957743-07:00,0.0,10.732003,10732.003 +34437,2025-03-11T07:19:36.683936-07:00,0.0,10.726193,10726.193 +34438,2025-03-11T07:19:47.412056-07:00,0.0,10.72812,10728.12 +34439,2025-03-11T07:19:58.138529-07:00,0.0,10.726473,10726.473 +34440,2025-03-11T07:20:08.864684-07:00,0.0,10.726155,10726.155 +34441,2025-03-11T07:20:19.601656-07:00,0.0,10.736972,10736.972 +34442,2025-03-11T07:20:30.323849-07:00,0.0,10.722193,10722.193 +34443,2025-03-11T07:20:41.060987-07:00,0.0,10.737138,10737.138 +34444,2025-03-11T07:20:51.780534-07:00,0.0,10.719547,10719.547 +34445,2025-03-11T07:21:02.515624-07:00,0.0,10.73509,10735.09 +34446,2025-03-11T07:21:13.249542-07:00,0.0,10.733918,10733.918 +34447,2025-03-11T07:21:23.979767-07:00,0.0,10.730225,10730.225 +34448,2025-03-11T07:21:34.707540-07:00,0.0,10.727773,10727.773 +34449,2025-03-11T07:21:45.441723-07:00,0.0,10.734183,10734.183 +34450,2025-03-11T07:21:56.169526-07:00,0.0,10.727803,10727.803 +34451,2025-03-11T07:22:06.899530-07:00,0.0,10.730004,10730.004 +34452,2025-03-11T07:22:17.627906-07:00,0.0,10.728376,10728.376 +34453,2025-03-11T07:22:28.356527-07:00,0.0,10.728621,10728.621 +34454,2025-03-11T07:22:39.088531-07:00,0.0,10.732004,10732.004 +34455,2025-03-11T07:22:49.817738-07:00,0.0,10.729207,10729.207 +34456,2025-03-11T07:23:00.547530-07:00,0.0,10.729792,10729.792 +34457,2025-03-11T07:23:11.269748-07:00,0.0,10.722218,10722.218 +34458,2025-03-11T07:23:22.008147-07:00,0.0,10.738399,10738.399 +34459,2025-03-11T07:23:32.733530-07:00,0.0,10.725383,10725.383 +34460,2025-03-11T07:23:43.469529-07:00,0.0,10.735999,10735.999 +34461,2025-03-11T07:23:54.196402-07:00,0.0,10.726873,10726.873 +34462,2025-03-11T07:24:04.925597-07:00,0.0,10.729195,10729.195 +34463,2025-03-11T07:24:15.652606-07:00,0.0,10.727009,10727.009 +34464,2025-03-11T07:24:26.383372-07:00,0.0,10.730766,10730.766 +34465,2025-03-11T07:24:37.121527-07:00,0.0,10.738155,10738.155 +34466,2025-03-11T07:24:47.842710-07:00,0.0,10.721183,10721.183 +34467,2025-03-11T07:24:58.572524-07:00,0.0,10.729814,10729.814 +34468,2025-03-11T07:25:09.304537-07:00,0.0,10.732013,10732.013 +34469,2025-03-11T07:25:20.033741-07:00,0.0,10.729204,10729.204 +34470,2025-03-11T07:25:30.766765-07:00,0.0,10.733024,10733.024 +34471,2025-03-11T07:25:41.490526-07:00,0.0,10.723761,10723.761 +34472,2025-03-11T07:25:52.213653-07:00,0.0,10.723127,10723.127 +34473,2025-03-11T07:26:02.950096-07:00,0.0,10.736443,10736.443 +34474,2025-03-11T07:26:13.670525-07:00,0.0,10.720429,10720.429 +34475,2025-03-11T07:26:24.401727-07:00,0.0,10.731202,10731.202 +34476,2025-03-11T07:26:33.841087-07:00,0.0,9.43936,9439.36 +34477,2025-03-11T07:26:35.133527-07:00,0.0,1.29244,1292.44 +34478,2025-03-11T07:26:45.854018-07:00,0.0,10.720491,10720.491 +34479,2025-03-11T07:26:56.591569-07:00,0.0,10.737551,10737.551 +34480,2025-03-11T07:27:07.313553-07:00,0.0,10.721984,10721.984 +34481,2025-03-11T07:27:18.050528-07:00,0.0,10.736975,10736.975 +34482,2025-03-11T07:27:28.769527-07:00,0.0,10.718999,10718.999 +34483,2025-03-11T07:27:39.497714-07:00,0.0,10.728187,10728.187 +34484,2025-03-11T07:27:50.228335-07:00,0.0,10.730621,10730.621 +34485,2025-03-11T07:28:00.952525-07:00,0.0,10.72419,10724.19 +34486,2025-03-11T07:28:11.678709-07:00,0.0,10.726184,10726.184 +34487,2025-03-11T07:28:22.405554-07:00,0.0,10.726845,10726.845 +34488,2025-03-11T07:28:33.137267-07:00,0.0,10.731713,10731.713 +34489,2025-03-11T07:28:43.861587-07:00,0.0,10.72432,10724.32 +34490,2025-03-11T07:28:54.585631-07:00,0.0,10.724044,10724.044 +34491,2025-03-11T07:29:05.312697-07:00,0.0,10.727066,10727.066 +34492,2025-03-11T07:29:16.038530-07:00,0.0,10.725833,10725.833 +34493,2025-03-11T07:29:26.771759-07:00,0.0,10.733229,10733.229 +34494,2025-03-11T07:29:37.492527-07:00,0.0,10.720768,10720.768 +34495,2025-03-11T07:29:48.217530-07:00,0.0,10.725003,10725.003 +34496,2025-03-11T07:29:58.950690-07:00,0.0,10.73316,10733.16 +34497,2025-03-11T07:30:09.678321-07:00,0.0,10.727631,10727.631 +34498,2025-03-11T07:30:20.406014-07:00,0.0,10.727693,10727.693 +34499,2025-03-11T07:30:31.129710-07:00,0.0,10.723696,10723.696 +34500,2025-03-11T07:30:41.849990-07:00,0.0,10.72028,10720.28 +34501,2025-03-11T07:30:52.575553-07:00,0.0,10.725563,10725.563 +34502,2025-03-11T07:31:03.296829-07:00,0.0,10.721276,10721.276 +34503,2025-03-11T07:31:14.024711-07:00,0.0,10.727882,10727.882 +34504,2025-03-11T07:31:24.742781-07:00,0.0,10.71807,10718.07 +34505,2025-03-11T07:31:35.470921-07:00,0.0,10.72814,10728.14 +34506,2025-03-11T07:31:46.202761-07:00,0.0,10.73184,10731.84 +34507,2025-03-11T07:31:56.924724-07:00,0.0,10.721963,10721.963 +34508,2025-03-11T07:32:07.651157-07:00,0.0,10.726433,10726.433 +34509,2025-03-11T07:32:18.375527-07:00,0.0,10.72437,10724.37 +34510,2025-03-11T07:32:29.104727-07:00,0.0,10.7292,10729.2 +34511,2025-03-11T07:32:39.832738-07:00,0.0,10.728011,10728.011 +34512,2025-03-11T07:32:50.554615-07:00,0.0,10.721877,10721.877 +34513,2025-03-11T07:33:01.274527-07:00,0.0,10.719912,10719.912 +34514,2025-03-11T07:33:12.004772-07:00,0.0,10.730245,10730.245 +34515,2025-03-11T07:33:22.733575-07:00,0.0,10.728803,10728.803 +34516,2025-03-11T07:33:33.454531-07:00,0.0,10.720956,10720.956 +34517,2025-03-11T07:33:44.180632-07:00,0.0,10.726101,10726.101 +34518,2025-03-11T07:33:54.897552-07:00,0.0,10.71692,10716.92 +34519,2025-03-11T07:34:05.627697-07:00,0.0,10.730145,10730.145 +34520,2025-03-11T07:34:16.350533-07:00,0.0,10.722836,10722.836 +34521,2025-03-11T07:34:27.077337-07:00,0.0,10.726804,10726.804 +34522,2025-03-11T07:34:37.791686-07:00,0.0,10.714349,10714.349 +34523,2025-03-11T07:34:48.515703-07:00,0.0,10.724017,10724.017 +34524,2025-03-11T07:34:59.231531-07:00,0.0,10.715828,10715.828 +34525,2025-03-11T07:35:09.952215-07:00,0.0,10.720684,10720.684 +34526,2025-03-11T07:35:20.683527-07:00,0.0,10.731312,10731.312 +34527,2025-03-11T07:35:31.404697-07:00,0.0,10.72117,10721.17 +34528,2025-03-11T07:35:42.127897-07:00,0.0,10.7232,10723.2 +34529,2025-03-11T07:35:52.842178-07:00,0.0,10.714281,10714.281 +34530,2025-03-11T07:36:03.574527-07:00,0.0,10.732349,10732.349 +34531,2025-03-11T07:36:14.291721-07:00,0.0,10.717194,10717.194 +34532,2025-03-11T07:36:25.016731-07:00,0.0,10.72501,10725.01 +34533,2025-03-11T07:36:35.736725-07:00,0.0,10.719994,10719.994 +34534,2025-03-11T07:36:46.449527-07:00,0.0,10.712802,10712.802 +34535,2025-03-11T07:36:57.178735-07:00,0.0,10.729208,10729.208 +34536,2025-03-11T07:37:07.892621-07:00,0.0,10.713886,10713.886 +34537,2025-03-11T07:37:18.614983-07:00,0.0,10.722362,10722.362 +34538,2025-03-11T07:37:29.345574-07:00,0.0,10.730591,10730.591 +34539,2025-03-11T07:37:40.061710-07:00,0.0,10.716136,10716.136 +34540,2025-03-11T07:37:50.794764-07:00,0.0,10.733054,10733.054 +34541,2025-03-11T07:38:01.518822-07:00,0.0,10.724058,10724.058 +34542,2025-03-11T07:38:12.233528-07:00,0.0,10.714706,10714.706 +34543,2025-03-11T07:38:22.966526-07:00,0.0,10.732998,10732.998 +34544,2025-03-11T07:38:33.691068-07:00,0.0,10.724542,10724.542 +34545,2025-03-11T07:38:44.410713-07:00,0.0,10.719645,10719.645 +34546,2025-03-11T07:38:55.143706-07:00,0.0,10.732993,10732.993 +34547,2025-03-11T07:39:05.867595-07:00,0.0,10.723889,10723.889 +34548,2025-03-11T07:39:16.583726-07:00,0.0,10.716131,10716.131 +34549,2025-03-11T07:39:27.311527-07:00,0.0,10.727801,10727.801 +34550,2025-03-11T07:39:38.030710-07:00,0.0,10.719183,10719.183 +34551,2025-03-11T07:39:48.749927-07:00,0.0,10.719217,10719.217 +34552,2025-03-11T07:39:59.472708-07:00,0.0,10.722781,10722.781 +34553,2025-03-11T07:40:10.199592-07:00,0.0,10.726884,10726.884 +34554,2025-03-11T07:40:20.925009-07:00,0.0,10.725417,10725.417 +34555,2025-03-11T07:40:31.646528-07:00,0.0,10.721519,10721.519 +34556,2025-03-11T07:40:42.367530-07:00,0.0,10.721002,10721.002 +34557,2025-03-11T07:40:53.092655-07:00,0.0,10.725125,10725.125 +34558,2025-03-11T07:41:03.814932-07:00,0.0,10.722277,10722.277 +34559,2025-03-11T07:41:14.534527-07:00,0.0,10.719595,10719.595 +34560,2025-03-11T07:41:25.257633-07:00,0.0,10.723106,10723.106 +34561,2025-03-11T07:41:35.976765-07:00,0.0,10.719132,10719.132 +34562,2025-03-11T07:41:46.705934-07:00,0.0,10.729169,10729.169 +34563,2025-03-11T07:41:57.423700-07:00,0.0,10.717766,10717.766 +34564,2025-03-11T07:42:08.138722-07:00,0.0,10.715022,10715.022 +34565,2025-03-11T07:42:18.863526-07:00,0.0,10.724804,10724.804 +34566,2025-03-11T07:42:29.585305-07:00,0.0,10.721779,10721.779 +34567,2025-03-11T07:42:40.304523-07:00,0.0,10.719218,10719.218 +34568,2025-03-11T07:42:51.025693-07:00,0.0,10.72117,10721.17 +34569,2025-03-11T07:43:01.751649-07:00,0.0,10.725956,10725.956 +34570,2025-03-11T07:43:12.468708-07:00,0.0,10.717059,10717.059 +34571,2025-03-11T07:43:23.184761-07:00,0.0,10.716053,10716.053 +34572,2025-03-11T07:43:33.911713-07:00,0.0,10.726952,10726.952 +34573,2025-03-11T07:43:44.636083-07:00,0.0,10.72437,10724.37 +34574,2025-03-11T07:43:55.356710-07:00,0.0,10.720627,10720.627 +34575,2025-03-11T07:44:06.071740-07:00,0.0,10.71503,10715.03 +34576,2025-03-11T07:44:16.794731-07:00,0.0,10.722991,10722.991 +34577,2025-03-11T07:44:27.516550-07:00,0.0,10.721819,10721.819 +34578,2025-03-11T07:44:38.240767-07:00,0.0,10.724217,10724.217 +34579,2025-03-11T07:44:48.955225-07:00,0.0,10.714458,10714.458 +34580,2025-03-11T07:44:59.679826-07:00,0.0,10.724601,10724.601 +34581,2025-03-11T07:45:10.400533-07:00,0.0,10.720707,10720.707 +34582,2025-03-11T07:45:21.125053-07:00,0.0,10.72452,10724.52 +34583,2025-03-11T07:45:31.843558-07:00,0.0,10.718505,10718.505 +34584,2025-03-11T07:45:42.567342-07:00,0.0,10.723784,10723.784 +34585,2025-03-11T07:45:53.288526-07:00,0.0,10.721184,10721.184 +34586,2025-03-11T07:46:04.005599-07:00,0.0,10.717073,10717.073 +34587,2025-03-11T07:46:14.732524-07:00,0.0,10.726925,10726.925 +34588,2025-03-11T07:46:25.453532-07:00,0.0,10.721008,10721.008 +34589,2025-03-11T07:46:36.177643-07:00,0.0,10.724111,10724.111 +34590,2025-03-11T07:46:46.899933-07:00,0.0,10.72229,10722.29 +34591,2025-03-11T07:46:57.619594-07:00,0.0,10.719661,10719.661 +34592,2025-03-11T07:47:08.335548-07:00,0.0,10.715954,10715.954 +34593,2025-03-11T07:47:19.056718-07:00,0.0,10.72117,10721.17 +34594,2025-03-11T07:47:29.781762-07:00,0.0,10.725044,10725.044 +34595,2025-03-11T07:47:40.506529-07:00,0.0,10.724767,10724.767 +34596,2025-03-11T07:47:51.221676-07:00,0.0,10.715147,10715.147 +34597,2025-03-11T07:48:01.950694-07:00,0.0,10.729018,10729.018 +34598,2025-03-11T07:48:12.673060-07:00,0.0,10.722366,10722.366 +34599,2025-03-11T07:48:23.390605-07:00,0.0,10.717545,10717.545 +34600,2025-03-11T07:48:34.104529-07:00,0.0,10.713924,10713.924 +34601,2025-03-11T07:48:44.834530-07:00,0.0,10.730001,10730.001 +34602,2025-03-11T07:48:55.556528-07:00,0.0,10.721998,10721.998 +34603,2025-03-11T07:49:06.271588-07:00,0.0,10.71506,10715.06 +34604,2025-03-11T07:49:16.997893-07:00,0.0,10.726305,10726.305 +34605,2025-03-11T07:49:27.726525-07:00,0.0,10.728632,10728.632 +34606,2025-03-11T07:49:38.446553-07:00,0.0,10.720028,10720.028 +34607,2025-03-11T07:49:49.173558-07:00,0.0,10.727005,10727.005 +34608,2025-03-11T07:49:59.899678-07:00,0.0,10.72612,10726.12 +34609,2025-03-11T07:50:10.616088-07:00,0.0,10.71641,10716.41 +34610,2025-03-11T07:50:21.341842-07:00,0.0,10.725754,10725.754 +34611,2025-03-11T07:50:32.060603-07:00,0.0,10.718761,10718.761 +34612,2025-03-11T07:50:42.782710-07:00,0.0,10.722107,10722.107 +34613,2025-03-11T07:50:53.500524-07:00,0.0,10.717814,10717.814 +34614,2025-03-11T07:51:04.228709-07:00,0.0,10.728185,10728.185 +34615,2025-03-11T07:51:14.945530-07:00,0.0,10.716821,10716.821 +34616,2025-03-11T07:51:25.670716-07:00,0.0,10.725186,10725.186 +34617,2025-03-11T07:51:36.386598-07:00,0.0,10.715882,10715.882 +34618,2025-03-11T07:51:47.114716-07:00,0.0,10.728118,10728.118 +34619,2025-03-11T07:51:57.832727-07:00,0.0,10.718011,10718.011 +34620,2025-03-11T07:52:08.558423-07:00,0.0,10.725696,10725.696 +34621,2025-03-11T07:52:19.281588-07:00,0.0,10.723165,10723.165 +34622,2025-03-11T07:52:30.008540-07:00,0.0,10.726952,10726.952 +34623,2025-03-11T07:52:40.739528-07:00,0.0,10.730988,10730.988 +34624,2025-03-11T07:52:51.458604-07:00,0.0,10.719076,10719.076 +34625,2025-03-11T07:53:02.185577-07:00,0.0,10.726973,10726.973 +34626,2025-03-11T07:53:12.911524-07:00,0.0,10.725947,10725.947 +34627,2025-03-11T07:53:23.630310-07:00,0.0,10.718786,10718.786 +34628,2025-03-11T07:53:34.371119-07:00,0.0,10.740809,10740.809 +34629,2025-03-11T07:53:45.089500-07:00,0.0,10.718381,10718.381 +34630,2025-03-11T07:53:55.814784-07:00,0.0,10.725284,10725.284 +34631,2025-03-11T07:54:06.546313-07:00,0.0,10.731529,10731.529 +34632,2025-03-11T07:54:17.270312-07:00,0.0,10.723999,10723.999 +34633,2025-03-11T07:54:27.989120-07:00,0.0,10.718808,10718.808 +34634,2025-03-11T07:54:38.716266-07:00,0.0,10.727146,10727.146 +34635,2025-03-11T07:54:49.443886-07:00,0.0,10.72762,10727.62 +34636,2025-03-11T07:55:00.164968-07:00,0.0,10.721082,10721.082 +34637,2025-03-11T07:55:10.896147-07:00,0.0,10.731179,10731.179 +34638,2025-03-11T07:55:21.618135-07:00,0.0,10.721988,10721.988 +34639,2025-03-11T07:55:32.340115-07:00,0.0,10.72198,10721.98 +34640,2025-03-11T07:55:43.053302-07:00,0.0,10.713187,10713.187 +34641,2025-03-11T07:55:53.776401-07:00,0.0,10.723099,10723.099 +34642,2025-03-11T07:56:04.503508-07:00,0.0,10.727107,10727.107 +34643,2025-03-11T07:56:15.231120-07:00,0.0,10.727612,10727.612 +34644,2025-03-11T07:56:25.954349-07:00,0.0,10.723229,10723.229 +34645,2025-03-11T07:56:36.672148-07:00,0.0,10.717799,10717.799 +34646,2025-03-11T07:56:47.394185-07:00,0.0,10.722037,10722.037 +34647,2025-03-11T07:56:58.126147-07:00,0.0,10.731962,10731.962 +34648,2025-03-11T07:57:08.850122-07:00,0.0,10.723975,10723.975 +34649,2025-03-11T07:57:19.579315-07:00,0.0,10.729193,10729.193 +34650,2025-03-11T07:57:30.303119-07:00,0.0,10.723804,10723.804 +34651,2025-03-11T07:57:41.032432-07:00,0.0,10.729313,10729.313 +34652,2025-03-11T07:57:51.756743-07:00,0.0,10.724311,10724.311 +34653,2025-03-11T07:58:02.481211-07:00,0.0,10.724468,10724.468 +34654,2025-03-11T07:58:13.213299-07:00,0.0,10.732088,10732.088 +34655,2025-03-11T07:58:23.931327-07:00,0.0,10.718028,10718.028 +34656,2025-03-11T07:58:34.655294-07:00,0.0,10.723967,10723.967 +34657,2025-03-11T07:58:45.387121-07:00,0.0,10.731827,10731.827 +34658,2025-03-11T07:58:56.114318-07:00,0.0,10.727197,10727.197 +34659,2025-03-11T07:59:06.844063-07:00,0.0,10.729745,10729.745 +34660,2025-03-11T07:59:17.564202-07:00,0.0,10.720139,10720.139 +34661,2025-03-11T07:59:28.292509-07:00,0.0,10.728307,10728.307 +34662,2025-03-11T07:59:39.011353-07:00,0.0,10.718844,10718.844 +34663,2025-03-11T07:59:49.735286-07:00,0.0,10.723933,10723.933 +34664,2025-03-11T08:00:00.464128-07:00,0.0,10.728842,10728.842 +34665,2025-03-11T08:00:11.196266-07:00,0.0,10.732138,10732.138 +34666,2025-03-11T08:00:21.918140-07:00,0.0,10.721874,10721.874 +34667,2025-03-11T08:00:32.639144-07:00,0.0,10.721004,10721.004 +34668,2025-03-11T08:00:43.367451-07:00,0.0,10.728307,10728.307 +34669,2025-03-11T08:00:54.092118-07:00,0.0,10.724667,10724.667 +34670,2025-03-11T08:01:04.816284-07:00,0.0,10.724166,10724.166 +34671,2025-03-11T08:01:15.545322-07:00,0.0,10.729038,10729.038 +34672,2025-03-11T08:01:26.270123-07:00,0.0,10.724801,10724.801 +34673,2025-03-11T08:01:37.007297-07:00,0.0,10.737174,10737.174 +34674,2025-03-11T08:01:47.730874-07:00,0.0,10.723577,10723.577 +34675,2025-03-11T08:01:58.458359-07:00,0.0,10.727485,10727.485 +34676,2025-03-11T08:02:09.184466-07:00,0.0,10.726107,10726.107 +34677,2025-03-11T08:02:19.914135-07:00,0.0,10.729669,10729.669 +34678,2025-03-11T08:02:30.636913-07:00,0.0,10.722778,10722.778 +34679,2025-03-11T08:02:41.368148-07:00,0.0,10.731235,10731.235 +34680,2025-03-11T08:02:52.090350-07:00,0.0,10.722202,10722.202 +34681,2025-03-11T08:03:02.817283-07:00,0.0,10.726933,10726.933 +34682,2025-03-11T08:03:13.545197-07:00,0.0,10.727914,10727.914 +34683,2025-03-11T08:03:24.274498-07:00,0.0,10.729301,10729.301 +34684,2025-03-11T08:03:35.004118-07:00,0.0,10.72962,10729.62 +34685,2025-03-11T08:03:45.723272-07:00,0.0,10.719154,10719.154 +34686,2025-03-11T08:03:56.449121-07:00,0.0,10.725849,10725.849 +34687,2025-03-11T08:04:07.175313-07:00,0.0,10.726192,10726.192 +34688,2025-03-11T08:04:17.899118-07:00,0.0,10.723805,10723.805 +34689,2025-03-11T08:04:28.627282-07:00,0.0,10.728164,10728.164 +34690,2025-03-11T08:04:39.348763-07:00,0.0,10.721481,10721.481 +34691,2025-03-11T08:04:50.082122-07:00,0.0,10.733359,10733.359 +34692,2025-03-11T08:05:00.801314-07:00,0.0,10.719192,10719.192 +34693,2025-03-11T08:05:11.529122-07:00,0.0,10.727808,10727.808 +34694,2025-03-11T08:05:22.260151-07:00,0.0,10.731029,10731.029 +34695,2025-03-11T08:05:32.987297-07:00,0.0,10.727146,10727.146 +34696,2025-03-11T08:05:43.703199-07:00,0.0,10.715902,10715.902 +34697,2025-03-11T08:05:54.427830-07:00,0.0,10.724631,10724.631 +34698,2025-03-11T08:06:05.155166-07:00,0.0,10.727336,10727.336 +34699,2025-03-11T08:06:15.879294-07:00,0.0,10.724128,10724.128 +34700,2025-03-11T08:06:26.611632-07:00,0.0,10.732338,10732.338 +34701,2025-03-11T08:06:37.337121-07:00,0.0,10.725489,10725.489 +34702,2025-03-11T08:06:48.058680-07:00,0.0,10.721559,10721.559 +34703,2025-03-11T08:06:58.782871-07:00,0.0,10.724191,10724.191 +34704,2025-03-11T08:07:09.516271-07:00,0.0,10.7334,10733.4 +34705,2025-03-11T08:07:20.238118-07:00,0.0,10.721847,10721.847 +34706,2025-03-11T08:07:30.968455-07:00,0.0,10.730337,10730.337 +34707,2025-03-11T08:07:41.696821-07:00,0.0,10.728366,10728.366 +34708,2025-03-11T08:07:52.415190-07:00,0.0,10.718369,10718.369 +34709,2025-03-11T08:08:03.145287-07:00,0.0,10.730097,10730.097 +34710,2025-03-11T08:08:13.878119-07:00,0.0,10.732832,10732.832 +34711,2025-03-11T08:08:24.605336-07:00,0.0,10.727217,10727.217 +34712,2025-03-11T08:08:35.323120-07:00,0.0,10.717784,10717.784 +34713,2025-03-11T08:08:46.058212-07:00,0.0,10.735092,10735.092 +34714,2025-03-11T08:08:56.779301-07:00,0.0,10.721089,10721.089 +34715,2025-03-11T08:09:07.500175-07:00,0.0,10.720874,10720.874 +34716,2025-03-11T08:09:18.226294-07:00,0.0,10.726119,10726.119 +34717,2025-03-11T08:09:28.956142-07:00,0.0,10.729848,10729.848 +34718,2025-03-11T08:09:39.687120-07:00,0.0,10.730978,10730.978 +34719,2025-03-11T08:09:50.405485-07:00,0.0,10.718365,10718.365 +34720,2025-03-11T08:10:01.140122-07:00,0.0,10.734637,10734.637 +34721,2025-03-11T08:10:11.862419-07:00,0.0,10.722297,10722.297 +34722,2025-03-11T08:10:22.592113-07:00,0.0,10.729694,10729.694 +34723,2025-03-11T08:10:33.312117-07:00,0.0,10.720004,10720.004 +34724,2025-03-11T08:10:44.039245-07:00,0.0,10.727128,10727.128 +34725,2025-03-11T08:10:54.768120-07:00,0.0,10.728875,10728.875 +34726,2025-03-11T08:11:05.487857-07:00,0.0,10.719737,10719.737 +34727,2025-03-11T08:11:16.211117-07:00,0.0,10.72326,10723.26 +34728,2025-03-11T08:11:26.941461-07:00,0.0,10.730344,10730.344 +34729,2025-03-11T08:11:37.673118-07:00,0.0,10.731657,10731.657 +34730,2025-03-11T08:11:48.399854-07:00,0.0,10.726736,10726.736 +34731,2025-03-11T08:11:59.120374-07:00,0.0,10.72052,10720.52 +34732,2025-03-11T08:12:09.849146-07:00,0.0,10.728772,10728.772 +34733,2025-03-11T08:12:20.571311-07:00,0.0,10.722165,10722.165 +34734,2025-03-11T08:12:31.301616-07:00,0.0,10.730305,10730.305 +34735,2025-03-11T08:12:42.019308-07:00,0.0,10.717692,10717.692 +34736,2025-03-11T08:12:52.755195-07:00,0.0,10.735887,10735.887 +34737,2025-03-11T08:13:03.474118-07:00,0.0,10.718923,10718.923 +34738,2025-03-11T08:13:14.199146-07:00,0.0,10.725028,10725.028 +34739,2025-03-11T08:13:24.930348-07:00,0.0,10.731202,10731.202 +34740,2025-03-11T08:13:35.658323-07:00,0.0,10.727975,10727.975 +34741,2025-03-11T08:13:46.380327-07:00,0.0,10.722004,10722.004 +34742,2025-03-11T08:13:57.110208-07:00,0.0,10.729881,10729.881 +34743,2025-03-11T08:14:07.837510-07:00,0.0,10.727302,10727.302 +34744,2025-03-11T08:14:18.567118-07:00,0.0,10.729608,10729.608 +34745,2025-03-11T08:14:29.291896-07:00,0.0,10.724778,10724.778 +34746,2025-03-11T08:14:40.014195-07:00,0.0,10.722299,10722.299 +34747,2025-03-11T08:14:50.741551-07:00,0.0,10.727356,10727.356 +34748,2025-03-11T08:15:01.470678-07:00,0.0,10.729127,10729.127 +34749,2025-03-11T08:15:12.202124-07:00,0.0,10.731446,10731.446 +34750,2025-03-11T08:15:22.929622-07:00,0.0,10.727498,10727.498 +34751,2025-03-11T08:15:33.653118-07:00,0.0,10.723496,10723.496 +34752,2025-03-11T08:15:44.376122-07:00,0.0,10.723004,10723.004 +34753,2025-03-11T08:15:55.109171-07:00,0.0,10.733049,10733.049 +34754,2025-03-11T08:16:05.835118-07:00,0.0,10.725947,10725.947 +34755,2025-03-11T08:16:16.557299-07:00,0.0,10.722181,10722.181 +34756,2025-03-11T08:16:27.281520-07:00,0.0,10.724221,10724.221 +34757,2025-03-11T08:16:38.011121-07:00,0.0,10.729601,10729.601 +34758,2025-03-11T08:16:48.732119-07:00,0.0,10.720998,10720.998 +34759,2025-03-11T08:16:59.464126-07:00,0.0,10.732007,10732.007 +34760,2025-03-11T08:17:10.182320-07:00,0.0,10.718194,10718.194 +34761,2025-03-11T08:17:20.909244-07:00,0.0,10.726924,10726.924 +34762,2025-03-11T08:17:31.637326-07:00,0.0,10.728082,10728.082 +34763,2025-03-11T08:17:42.356317-07:00,0.0,10.718991,10718.991 +34764,2025-03-11T08:17:53.081582-07:00,0.0,10.725265,10725.265 +34765,2025-03-11T08:18:03.805192-07:00,0.0,10.72361,10723.61 +34766,2025-03-11T08:18:14.532897-07:00,0.0,10.727705,10727.705 +34767,2025-03-11T08:18:25.263471-07:00,0.0,10.730574,10730.574 +34768,2025-03-11T08:18:35.984117-07:00,0.0,10.720646,10720.646 +34769,2025-03-11T08:18:46.706137-07:00,0.0,10.72202,10722.02 +34770,2025-03-11T08:18:57.436205-07:00,0.0,10.730068,10730.068 +34771,2025-03-11T08:19:08.168222-07:00,0.0,10.732017,10732.017 +34772,2025-03-11T08:19:18.884185-07:00,0.0,10.715963,10715.963 +34773,2025-03-11T08:19:29.615117-07:00,0.0,10.730932,10730.932 +34774,2025-03-11T08:19:40.345057-07:00,0.0,10.72994,10729.94 +34775,2025-03-11T08:19:51.067182-07:00,0.0,10.722125,10722.125 +34776,2025-03-11T08:20:01.790299-07:00,0.0,10.723117,10723.117 +34777,2025-03-11T08:20:12.514138-07:00,0.0,10.723839,10723.839 +34778,2025-03-11T08:20:23.245300-07:00,0.0,10.731162,10731.162 +34779,2025-03-11T08:20:33.975211-07:00,0.0,10.729911,10729.911 +34780,2025-03-11T08:20:44.703514-07:00,0.0,10.728303,10728.303 +34781,2025-03-11T08:20:55.429317-07:00,0.0,10.725803,10725.803 +34782,2025-03-11T08:21:06.154243-07:00,0.0,10.724926,10724.926 +34783,2025-03-11T08:21:16.891545-07:00,0.0,10.737302,10737.302 +34784,2025-03-11T08:21:27.608118-07:00,0.0,10.716573,10716.573 +34785,2025-03-11T08:21:38.333189-07:00,0.0,10.725071,10725.071 +34786,2025-03-11T08:21:49.061283-07:00,0.0,10.728094,10728.094 +34787,2025-03-11T08:21:59.787115-07:00,0.0,10.725832,10725.832 +34788,2025-03-11T08:22:10.514479-07:00,0.0,10.727364,10727.364 +34789,2025-03-11T08:22:21.237225-07:00,0.0,10.722746,10722.746 +34790,2025-03-11T08:22:31.966606-07:00,0.0,10.729381,10729.381 +34791,2025-03-11T08:22:42.684118-07:00,0.0,10.717512,10717.512 +34792,2025-03-11T08:22:53.417329-07:00,0.0,10.733211,10733.211 +34793,2025-03-11T08:23:04.145179-07:00,0.0,10.72785,10727.85 +34794,2025-03-11T08:23:14.869253-07:00,0.0,10.724074,10724.074 +34795,2025-03-11T08:23:25.587595-07:00,0.0,10.718342,10718.342 +34796,2025-03-11T08:23:36.311121-07:00,0.0,10.723526,10723.526 +34797,2025-03-11T08:23:47.034550-07:00,0.0,10.723429,10723.429 +34798,2025-03-11T08:23:57.759176-07:00,0.0,10.724626,10724.626 +34799,2025-03-11T08:24:08.490194-07:00,0.0,10.731018,10731.018 +34800,2025-03-11T08:24:19.212722-07:00,0.0,10.722528,10722.528 +34801,2025-03-11T08:24:29.939119-07:00,0.0,10.726397,10726.397 +34802,2025-03-11T08:24:40.670297-07:00,0.0,10.731178,10731.178 +34803,2025-03-11T08:24:51.389319-07:00,0.0,10.719022,10719.022 +34804,2025-03-11T08:25:02.118306-07:00,0.0,10.728987,10728.987 +34805,2025-03-11T08:25:12.849387-07:00,0.0,10.731081,10731.081 +34806,2025-03-11T08:25:23.573119-07:00,0.0,10.723732,10723.732 +34807,2025-03-11T08:25:34.301821-07:00,0.0,10.728702,10728.702 +34808,2025-03-11T08:25:45.024125-07:00,0.0,10.722304,10722.304 +34809,2025-03-11T08:25:55.753373-07:00,0.0,10.729248,10729.248 +34810,2025-03-11T08:26:06.481183-07:00,0.0,10.72781,10727.81 +34811,2025-03-11T08:26:17.204118-07:00,0.0,10.722935,10722.935 +34812,2025-03-11T08:26:27.940972-07:00,0.0,10.736854,10736.854 +34813,2025-03-11T08:26:38.657117-07:00,0.0,10.716145,10716.145 +34814,2025-03-11T08:26:49.387119-07:00,0.0,10.730002,10730.002 +34815,2025-03-11T08:27:00.118935-07:00,0.0,10.731816,10731.816 +34816,2025-03-11T08:27:10.838116-07:00,0.0,10.719181,10719.181 +34817,2025-03-11T08:27:21.574298-07:00,0.0,10.736182,10736.182 +34818,2025-03-11T08:27:32.295318-07:00,0.0,10.72102,10721.02 +34819,2025-03-11T08:27:43.020202-07:00,0.0,10.724884,10724.884 +34820,2025-03-11T08:27:53.751213-07:00,0.0,10.731011,10731.011 +34821,2025-03-11T08:28:04.465874-07:00,0.0,10.714661,10714.661 +34822,2025-03-11T08:28:15.193291-07:00,0.0,10.727417,10727.417 +34823,2025-03-11T08:28:25.922343-07:00,0.0,10.729052,10729.052 +34824,2025-03-11T08:28:36.643533-07:00,0.0,10.72119,10721.19 +34825,2025-03-11T08:28:47.378317-07:00,0.0,10.734784,10734.784 +34826,2025-03-11T08:28:58.105336-07:00,0.0,10.727019,10727.019 +34827,2025-03-11T08:29:08.826350-07:00,0.0,10.721014,10721.014 +34828,2025-03-11T08:29:19.546807-07:00,0.0,10.720457,10720.457 +34829,2025-03-11T08:29:30.272390-07:00,0.0,10.725583,10725.583 +34830,2025-03-11T08:29:40.999362-07:00,0.0,10.726972,10726.972 +34831,2025-03-11T08:29:51.727322-07:00,0.0,10.72796,10727.96 +34832,2025-03-11T08:30:02.452117-07:00,0.0,10.724795,10724.795 +34833,2025-03-11T08:30:13.174139-07:00,0.0,10.722022,10722.022 +34834,2025-03-11T08:30:23.905583-07:00,0.0,10.731444,10731.444 +34835,2025-03-11T08:30:34.630215-07:00,0.0,10.724632,10724.632 +34836,2025-03-11T08:30:45.355112-07:00,0.0,10.724897,10724.897 +34837,2025-03-11T08:30:56.074120-07:00,0.0,10.719008,10719.008 +34838,2025-03-11T08:31:06.806927-07:00,0.0,10.732807,10732.807 +34839,2025-03-11T08:31:17.534115-07:00,0.0,10.727188,10727.188 +34840,2025-03-11T08:31:28.260297-07:00,0.0,10.726182,10726.182 +34841,2025-03-11T08:31:38.984115-07:00,0.0,10.723818,10723.818 +34842,2025-03-11T08:31:49.719146-07:00,0.0,10.735031,10735.031 +34843,2025-03-11T08:32:00.442307-07:00,0.0,10.723161,10723.161 +34844,2025-03-11T08:32:11.173114-07:00,0.0,10.730807,10730.807 +34845,2025-03-11T08:32:21.900297-07:00,0.0,10.727183,10727.183 +34846,2025-03-11T08:32:32.632301-07:00,0.0,10.732004,10732.004 +34847,2025-03-11T08:32:43.357115-07:00,0.0,10.724814,10724.814 +34848,2025-03-11T08:32:54.084120-07:00,0.0,10.727005,10727.005 +34849,2025-03-11T08:33:04.811159-07:00,0.0,10.727039,10727.039 +34850,2025-03-11T08:33:15.528532-07:00,0.0,10.717373,10717.373 +34851,2025-03-11T08:33:26.256118-07:00,0.0,10.727586,10727.586 +34852,2025-03-11T08:33:36.987120-07:00,0.0,10.731002,10731.002 +34853,2025-03-11T08:33:47.710488-07:00,0.0,10.723368,10723.368 +34854,2025-03-11T08:33:58.438358-07:00,0.0,10.72787,10727.87 +34855,2025-03-11T08:34:09.165419-07:00,0.0,10.727061,10727.061 +34856,2025-03-11T08:34:19.895972-07:00,0.0,10.730553,10730.553 +34857,2025-03-11T08:34:30.615147-07:00,0.0,10.719175,10719.175 +34858,2025-03-11T08:34:41.346284-07:00,0.0,10.731137,10731.137 +34859,2025-03-11T08:34:52.059325-07:00,0.0,10.713041,10713.041 +34860,2025-03-11T08:35:02.786299-07:00,0.0,10.726974,10726.974 +34861,2025-03-11T08:35:13.520150-07:00,0.0,10.733851,10733.851 +34862,2025-03-11T08:35:24.247119-07:00,0.0,10.726969,10726.969 +34863,2025-03-11T08:35:34.966141-07:00,0.0,10.719022,10719.022 +34864,2025-03-11T08:35:45.691318-07:00,0.0,10.725177,10725.177 +34865,2025-03-11T08:35:56.415987-07:00,0.0,10.724669,10724.669 +34866,2025-03-11T08:36:07.140270-07:00,0.0,10.724283,10724.283 +34867,2025-03-11T08:36:17.873255-07:00,0.0,10.732985,10732.985 +34868,2025-03-11T08:36:28.602960-07:00,0.0,10.729705,10729.705 +34869,2025-03-11T08:36:39.325407-07:00,0.0,10.722447,10722.447 +34870,2025-03-11T08:36:48.966197-07:00,0.0,9.64079,9640.79 +34871,2025-03-11T08:36:50.049140-07:00,0.0,1.082943,1082.943 +34872,2025-03-11T08:37:00.768339-07:00,0.0,10.719199,10719.199 +34873,2025-03-11T08:37:11.492146-07:00,0.0,10.723807,10723.807 +34874,2025-03-11T08:37:22.213237-07:00,0.0,10.721091,10721.091 +34875,2025-03-11T08:37:32.944511-07:00,0.0,10.731274,10731.274 +34876,2025-03-11T08:37:43.668581-07:00,0.0,10.72407,10724.07 +34877,2025-03-11T08:37:54.392203-07:00,0.0,10.723622,10723.622 +34878,2025-03-11T08:38:05.113151-07:00,0.0,10.720948,10720.948 +34879,2025-03-11T08:38:15.836243-07:00,0.0,10.723092,10723.092 +34880,2025-03-11T08:38:26.570119-07:00,0.0,10.733876,10733.876 +34881,2025-03-11T08:38:37.295117-07:00,0.0,10.724998,10724.998 +34882,2025-03-11T08:38:48.014373-07:00,0.0,10.719256,10719.256 +34883,2025-03-11T08:38:58.749146-07:00,0.0,10.734773,10734.773 +34884,2025-03-11T08:39:09.472988-07:00,0.0,10.723842,10723.842 +34885,2025-03-11T08:39:20.197316-07:00,0.0,10.724328,10724.328 +34886,2025-03-11T08:39:30.925114-07:00,0.0,10.727798,10727.798 +34887,2025-03-11T08:39:41.647209-07:00,0.0,10.722095,10722.095 +34888,2025-03-11T08:39:52.378155-07:00,0.0,10.730946,10730.946 +34889,2025-03-11T08:40:03.096951-07:00,0.0,10.718796,10718.796 +34890,2025-03-11T08:40:13.823128-07:00,0.0,10.726177,10726.177 +34891,2025-03-11T08:40:24.554718-07:00,0.0,10.73159,10731.59 +34892,2025-03-11T08:40:35.282361-07:00,0.0,10.727643,10727.643 +34893,2025-03-11T08:40:46.007149-07:00,0.0,10.724788,10724.788 +34894,2025-03-11T08:40:56.731705-07:00,0.0,10.724556,10724.556 +34895,2025-03-11T08:41:07.457121-07:00,0.0,10.725416,10725.416 +34896,2025-03-11T08:41:18.184294-07:00,0.0,10.727173,10727.173 +34897,2025-03-11T08:41:28.906202-07:00,0.0,10.721908,10721.908 +34898,2025-03-11T08:41:39.623290-07:00,0.0,10.717088,10717.088 +34899,2025-03-11T08:41:50.346193-07:00,0.0,10.722903,10722.903 +34900,2025-03-11T08:42:01.073223-07:00,0.0,10.72703,10727.03 +34901,2025-03-11T08:42:11.786120-07:00,0.0,10.712897,10712.897 +34902,2025-03-11T08:42:22.511335-07:00,0.0,10.725215,10725.215 +34903,2025-03-11T08:42:33.237731-07:00,0.0,10.726396,10726.396 +34904,2025-03-11T08:42:43.949420-07:00,0.0,10.711689,10711.689 +34905,2025-03-11T08:42:54.675113-07:00,0.0,10.725693,10725.693 +34906,2025-03-11T08:43:05.394935-07:00,0.0,10.719822,10719.822 +34907,2025-03-11T08:43:16.115120-07:00,0.0,10.720185,10720.185 +34908,2025-03-11T08:43:26.839541-07:00,0.0,10.724421,10724.421 +34909,2025-03-11T08:43:37.561283-07:00,0.0,10.721742,10721.742 +34910,2025-03-11T08:43:48.285298-07:00,0.0,10.724015,10724.015 +34911,2025-03-11T08:43:59.002147-07:00,0.0,10.716849,10716.849 +34912,2025-03-11T08:44:09.727332-07:00,0.0,10.725185,10725.185 +34913,2025-03-11T08:44:20.453305-07:00,0.0,10.725973,10725.973 +34914,2025-03-11T08:44:31.171299-07:00,0.0,10.717994,10717.994 +34915,2025-03-11T08:44:41.893122-07:00,0.0,10.721823,10721.823 +34916,2025-03-11T08:44:52.608142-07:00,0.0,10.71502,10715.02 +34917,2025-03-11T08:45:03.334120-07:00,0.0,10.725978,10725.978 +34918,2025-03-11T08:45:14.059298-07:00,0.0,10.725178,10725.178 +34919,2025-03-11T08:45:24.777120-07:00,0.0,10.717822,10717.822 +34920,2025-03-11T08:45:35.502338-07:00,0.0,10.725218,10725.218 +34921,2025-03-11T08:45:46.222329-07:00,0.0,10.719991,10719.991 +34922,2025-03-11T08:45:56.937238-07:00,0.0,10.714909,10714.909 +34923,2025-03-11T08:46:07.663342-07:00,0.0,10.726104,10726.104 +34924,2025-03-11T08:46:18.383184-07:00,0.0,10.719842,10719.842 +34925,2025-03-11T08:46:29.111330-07:00,0.0,10.728146,10728.146 +34926,2025-03-11T08:46:39.834307-07:00,0.0,10.722977,10722.977 +34927,2025-03-11T08:46:50.557121-07:00,0.0,10.722814,10722.814 +34928,2025-03-11T08:47:01.274415-07:00,0.0,10.717294,10717.294 +34929,2025-03-11T08:47:12.002361-07:00,0.0,10.727946,10727.946 +34930,2025-03-11T08:47:22.724286-07:00,0.0,10.721925,10721.925 +34931,2025-03-11T08:47:33.439255-07:00,0.0,10.714969,10714.969 +34932,2025-03-11T08:47:44.160414-07:00,0.0,10.721159,10721.159 +34933,2025-03-11T08:47:54.886366-07:00,0.0,10.725952,10725.952 +34934,2025-03-11T08:48:05.611304-07:00,0.0,10.724938,10724.938 +34935,2025-03-11T08:48:16.330626-07:00,0.0,10.719322,10719.322 +34936,2025-03-11T08:48:27.052301-07:00,0.0,10.721675,10721.675 +34937,2025-03-11T08:48:37.777116-07:00,0.0,10.724815,10724.815 +34938,2025-03-11T08:48:48.497338-07:00,0.0,10.720222,10720.222 +34939,2025-03-11T08:48:59.224657-07:00,0.0,10.727319,10727.319 +34940,2025-03-11T08:49:09.948113-07:00,0.0,10.723456,10723.456 +34941,2025-03-11T08:49:20.670120-07:00,0.0,10.722007,10722.007 +34942,2025-03-11T08:49:31.400239-07:00,0.0,10.730119,10730.119 +34943,2025-03-11T08:49:42.126318-07:00,0.0,10.726079,10726.079 +34944,2025-03-11T08:49:52.840121-07:00,0.0,10.713803,10713.803 +34945,2025-03-11T08:50:03.569696-07:00,0.0,10.729575,10729.575 +34946,2025-03-11T08:50:14.287330-07:00,0.0,10.717634,10717.634 +34947,2025-03-11T08:50:25.006284-07:00,0.0,10.718954,10718.954 +34948,2025-03-11T08:50:35.737120-07:00,0.0,10.730836,10730.836 +34949,2025-03-11T08:50:46.452139-07:00,0.0,10.715019,10715.019 +34950,2025-03-11T08:50:57.182115-07:00,0.0,10.729976,10729.976 +34951,2025-03-11T08:51:07.899986-07:00,0.0,10.717871,10717.871 +34952,2025-03-11T08:51:18.623705-07:00,0.0,10.723719,10723.719 +34953,2025-03-11T08:51:29.345667-07:00,0.0,10.721962,10721.962 +34954,2025-03-11T08:51:40.070121-07:00,0.0,10.724454,10724.454 +34955,2025-03-11T08:51:50.786644-07:00,0.0,10.716523,10716.523 +34956,2025-03-11T08:52:01.509331-07:00,0.0,10.722687,10722.687 +34957,2025-03-11T08:52:12.241277-07:00,0.0,10.731946,10731.946 +34958,2025-03-11T08:52:22.962118-07:00,0.0,10.720841,10720.841 +34959,2025-03-11T08:52:33.680537-07:00,0.0,10.718419,10718.419 +34960,2025-03-11T08:52:44.399192-07:00,0.0,10.718655,10718.655 +34961,2025-03-11T08:52:55.129372-07:00,0.0,10.73018,10730.18 +34962,2025-03-11T08:53:05.853122-07:00,0.0,10.72375,10723.75 +34963,2025-03-11T08:53:16.576342-07:00,0.0,10.72322,10723.22 +34964,2025-03-11T08:53:27.292145-07:00,0.0,10.715803,10715.803 +34965,2025-03-11T08:53:38.025167-07:00,0.0,10.733022,10733.022 +34966,2025-03-11T08:53:48.751404-07:00,0.0,10.726237,10726.237 +34967,2025-03-11T08:53:59.469495-07:00,0.0,10.718091,10718.091 +34968,2025-03-11T08:54:10.191400-07:00,0.0,10.721905,10721.905 +34969,2025-03-11T08:54:20.920334-07:00,0.0,10.728934,10728.934 +34970,2025-03-11T08:54:31.642247-07:00,0.0,10.721913,10721.913 +34971,2025-03-11T08:54:42.365172-07:00,0.0,10.722925,10722.925 +34972,2025-03-11T08:54:53.095370-07:00,0.0,10.730198,10730.198 +34973,2025-03-11T08:55:03.812788-07:00,0.0,10.717418,10717.418 +34974,2025-03-11T08:55:14.544194-07:00,0.0,10.731406,10731.406 +34975,2025-03-11T08:55:25.262171-07:00,0.0,10.717977,10717.977 +34976,2025-03-11T08:55:35.987732-07:00,0.0,10.725561,10725.561 +34977,2025-03-11T08:55:46.710170-07:00,0.0,10.722438,10722.438 +34978,2025-03-11T08:55:57.436167-07:00,0.0,10.725997,10725.997 +34979,2025-03-11T08:56:08.154235-07:00,0.0,10.718068,10718.068 +34980,2025-03-11T08:56:18.883442-07:00,0.0,10.729207,10729.207 +34981,2025-03-11T08:56:29.609735-07:00,0.0,10.726293,10726.293 +34982,2025-03-11T08:56:40.325234-07:00,0.0,10.715499,10715.499 +34983,2025-03-11T08:56:51.045171-07:00,0.0,10.719937,10719.937 +34984,2025-03-11T08:57:01.776237-07:00,0.0,10.731066,10731.066 +34985,2025-03-11T08:57:12.496932-07:00,0.0,10.720695,10720.695 +34986,2025-03-11T08:57:23.222277-07:00,0.0,10.725345,10725.345 +34987,2025-03-11T08:57:33.950365-07:00,0.0,10.728088,10728.088 +34988,2025-03-11T08:57:44.675169-07:00,0.0,10.724804,10724.804 +34989,2025-03-11T08:57:55.398361-07:00,0.0,10.723192,10723.192 +34990,2025-03-11T08:58:06.120165-07:00,0.0,10.721804,10721.804 +34991,2025-03-11T08:58:16.839318-07:00,0.0,10.719153,10719.153 +34992,2025-03-11T08:58:27.562239-07:00,0.0,10.722921,10722.921 +34993,2025-03-11T08:58:38.297164-07:00,0.0,10.734925,10734.925 +34994,2025-03-11T08:58:49.014170-07:00,0.0,10.717006,10717.006 +34995,2025-03-11T08:58:59.743359-07:00,0.0,10.729189,10729.189 +34996,2025-03-11T08:59:10.469772-07:00,0.0,10.726413,10726.413 +34997,2025-03-11T08:59:21.194165-07:00,0.0,10.724393,10724.393 +34998,2025-03-11T08:59:31.919335-07:00,0.0,10.72517,10725.17 +34999,2025-03-11T08:59:42.648458-07:00,0.0,10.729123,10729.123 +35000,2025-03-11T08:59:53.369246-07:00,0.0,10.720788,10720.788 +35001,2025-03-11T09:00:04.107362-07:00,0.0,10.738116,10738.116 +35002,2025-03-11T09:00:14.827379-07:00,0.0,10.720017,10720.017 +35003,2025-03-11T09:00:25.551763-07:00,0.0,10.724384,10724.384 +35004,2025-03-11T09:00:36.281200-07:00,0.0,10.729437,10729.437 +35005,2025-03-11T09:00:47.013169-07:00,0.0,10.731969,10731.969 +35006,2025-03-11T09:00:57.740356-07:00,0.0,10.727187,10727.187 +35007,2025-03-11T09:01:08.472389-07:00,0.0,10.732033,10732.033 +35008,2025-03-11T09:01:19.191344-07:00,0.0,10.718955,10718.955 +35009,2025-03-11T09:01:29.929349-07:00,0.0,10.738005,10738.005 +35010,2025-03-11T09:01:40.651494-07:00,0.0,10.722145,10722.145 +35011,2025-03-11T09:01:51.381338-07:00,0.0,10.729844,10729.844 +35012,2025-03-11T09:02:02.110220-07:00,0.0,10.728882,10728.882 +35013,2025-03-11T09:02:12.835382-07:00,0.0,10.725162,10725.162 +35014,2025-03-11T09:02:23.560299-07:00,0.0,10.724917,10724.917 +35015,2025-03-11T09:02:34.293172-07:00,0.0,10.732873,10732.873 +35016,2025-03-11T09:02:45.012560-07:00,0.0,10.719388,10719.388 +35017,2025-03-11T09:02:55.742169-07:00,0.0,10.729609,10729.609 +35018,2025-03-11T09:03:06.463357-07:00,0.0,10.721188,10721.188 +35019,2025-03-11T09:03:17.189370-07:00,0.0,10.726013,10726.013 +35020,2025-03-11T09:03:27.915599-07:00,0.0,10.726229,10726.229 +35021,2025-03-11T09:03:38.647103-07:00,0.0,10.731504,10731.504 +35022,2025-03-11T09:03:49.365375-07:00,0.0,10.718272,10718.272 +35023,2025-03-11T09:04:00.090280-07:00,0.0,10.724905,10724.905 +35024,2025-03-11T09:04:10.817247-07:00,0.0,10.726967,10726.967 +35025,2025-03-11T09:04:21.549714-07:00,0.0,10.732467,10732.467 +35026,2025-03-11T09:04:32.274518-07:00,0.0,10.724804,10724.804 +35027,2025-03-11T09:04:43.004177-07:00,0.0,10.729659,10729.659 +35028,2025-03-11T09:04:53.726069-07:00,0.0,10.721892,10721.892 +35029,2025-03-11T09:05:04.455169-07:00,0.0,10.7291,10729.1 +35030,2025-03-11T09:05:15.181171-07:00,0.0,10.726002,10726.002 +35031,2025-03-11T09:05:25.915356-07:00,0.0,10.734185,10734.185 +35032,2025-03-11T09:05:36.642321-07:00,0.0,10.726965,10726.965 +35033,2025-03-11T09:05:47.375399-07:00,0.0,10.733078,10733.078 +35034,2025-03-11T09:05:58.102357-07:00,0.0,10.726958,10726.958 +35035,2025-03-11T09:06:08.832171-07:00,0.0,10.729814,10729.814 +35036,2025-03-11T09:06:19.559165-07:00,0.0,10.726994,10726.994 +35037,2025-03-11T09:06:30.288402-07:00,0.0,10.729237,10729.237 +35038,2025-03-11T09:06:41.016173-07:00,0.0,10.727771,10727.771 +35039,2025-03-11T09:06:51.748403-07:00,0.0,10.73223,10732.23 +35040,2025-03-11T09:07:02.466281-07:00,0.0,10.717878,10717.878 +35041,2025-03-11T09:07:13.191189-07:00,0.0,10.724908,10724.908 +35042,2025-03-11T09:07:23.921358-07:00,0.0,10.730169,10730.169 +35043,2025-03-11T09:07:34.644267-07:00,0.0,10.722909,10722.909 +35044,2025-03-11T09:07:45.382588-07:00,0.0,10.738321,10738.321 +35045,2025-03-11T09:07:56.103287-07:00,0.0,10.720699,10720.699 +35046,2025-03-11T09:08:06.833173-07:00,0.0,10.729886,10729.886 +35047,2025-03-11T09:08:17.558397-07:00,0.0,10.725224,10725.224 +35048,2025-03-11T09:08:28.289238-07:00,0.0,10.730841,10730.841 +35049,2025-03-11T09:08:39.018351-07:00,0.0,10.729113,10729.113 +35050,2025-03-11T09:08:49.746372-07:00,0.0,10.728021,10728.021 +35051,2025-03-11T09:09:00.474200-07:00,0.0,10.727828,10727.828 +35052,2025-03-11T09:09:11.203366-07:00,0.0,10.729166,10729.166 +35053,2025-03-11T09:09:21.929239-07:00,0.0,10.725873,10725.873 +35054,2025-03-11T09:09:32.652348-07:00,0.0,10.723109,10723.109 +35055,2025-03-11T09:09:43.385820-07:00,0.0,10.733472,10733.472 +35056,2025-03-11T09:09:54.104164-07:00,0.0,10.718344,10718.344 +35057,2025-03-11T09:10:04.837336-07:00,0.0,10.733172,10733.172 +35058,2025-03-11T09:10:15.556172-07:00,0.0,10.718836,10718.836 +35059,2025-03-11T09:10:26.280359-07:00,0.0,10.724187,10724.187 +35060,2025-03-11T09:10:37.014169-07:00,0.0,10.73381,10733.81 +35061,2025-03-11T09:10:47.741375-07:00,0.0,10.727206,10727.206 +35062,2025-03-11T09:10:58.463971-07:00,0.0,10.722596,10722.596 +35063,2025-03-11T09:11:09.186169-07:00,0.0,10.722198,10722.198 +35064,2025-03-11T09:11:19.919095-07:00,0.0,10.732926,10732.926 +35065,2025-03-11T09:11:30.646217-07:00,0.0,10.727122,10727.122 +35066,2025-03-11T09:11:41.366198-07:00,0.0,10.719981,10719.981 +35067,2025-03-11T09:11:52.096075-07:00,0.0,10.729877,10729.877 +35068,2025-03-11T09:12:02.830172-07:00,0.0,10.734097,10734.097 +35069,2025-03-11T09:12:13.557540-07:00,0.0,10.727368,10727.368 +35070,2025-03-11T09:12:24.280585-07:00,0.0,10.723045,10723.045 +35071,2025-03-11T09:12:34.999254-07:00,0.0,10.718669,10718.669 +35072,2025-03-11T09:12:45.733198-07:00,0.0,10.733944,10733.944 +35073,2025-03-11T09:12:56.457175-07:00,0.0,10.723977,10723.977 +35074,2025-03-11T09:13:07.177189-07:00,0.0,10.720014,10720.014 +35075,2025-03-11T09:13:17.902375-07:00,0.0,10.725186,10725.186 +35076,2025-03-11T09:13:28.627549-07:00,0.0,10.725174,10725.174 +35077,2025-03-11T09:13:39.352169-07:00,0.0,10.72462,10724.62 +35078,2025-03-11T09:13:50.087262-07:00,0.0,10.735093,10735.093 +35079,2025-03-11T09:14:00.815354-07:00,0.0,10.728092,10728.092 +35080,2025-03-11T09:14:11.539242-07:00,0.0,10.723888,10723.888 +35081,2025-03-11T09:14:22.264386-07:00,0.0,10.725144,10725.144 +35082,2025-03-11T09:14:32.993166-07:00,0.0,10.72878,10728.78 +35083,2025-03-11T09:14:43.728365-07:00,0.0,10.735199,10735.199 +35084,2025-03-11T09:14:54.449417-07:00,0.0,10.721052,10721.052 +35085,2025-03-11T09:15:05.180170-07:00,0.0,10.730753,10730.753 +35086,2025-03-11T09:15:15.905175-07:00,0.0,10.725005,10725.005 +35087,2025-03-11T09:15:26.625388-07:00,0.0,10.720213,10720.213 +35088,2025-03-11T09:15:37.359205-07:00,0.0,10.733817,10733.817 +35089,2025-03-11T09:15:48.083339-07:00,0.0,10.724134,10724.134 +35090,2025-03-11T09:15:58.806379-07:00,0.0,10.72304,10723.04 +35091,2025-03-11T09:16:09.528207-07:00,0.0,10.721828,10721.828 +35092,2025-03-11T09:16:20.256206-07:00,0.0,10.727999,10727.999 +35093,2025-03-11T09:16:30.978574-07:00,0.0,10.722368,10722.368 +35094,2025-03-11T09:16:41.702237-07:00,0.0,10.723663,10723.663 +35095,2025-03-11T09:16:52.427190-07:00,0.0,10.724953,10724.953 +35096,2025-03-11T09:17:03.146223-07:00,0.0,10.719033,10719.033 +35097,2025-03-11T09:17:13.868582-07:00,0.0,10.722359,10722.359 +35098,2025-03-11T09:17:24.590169-07:00,0.0,10.721587,10721.587 +35099,2025-03-11T09:17:35.315275-07:00,0.0,10.725106,10725.106 +35100,2025-03-11T09:17:46.041171-07:00,0.0,10.725896,10725.896 +35101,2025-03-11T09:17:56.769173-07:00,0.0,10.728002,10728.002 +35102,2025-03-11T09:18:07.489172-07:00,0.0,10.719999,10719.999 +35103,2025-03-11T09:18:18.217165-07:00,0.0,10.727993,10727.993 +35104,2025-03-11T09:18:28.942272-07:00,0.0,10.725107,10725.107 +35105,2025-03-11T09:18:39.668172-07:00,0.0,10.7259,10725.9 +35106,2025-03-11T09:18:50.391704-07:00,0.0,10.723532,10723.532 +35107,2025-03-11T09:19:01.107232-07:00,0.0,10.715528,10715.528 +35108,2025-03-11T09:19:11.832341-07:00,0.0,10.725109,10725.109 +35109,2025-03-11T09:19:22.558403-07:00,0.0,10.726062,10726.062 +35110,2025-03-11T09:19:33.283346-07:00,0.0,10.724943,10724.943 +35111,2025-03-11T09:19:44.009737-07:00,0.0,10.726391,10726.391 +35112,2025-03-11T09:19:54.723203-07:00,0.0,10.713466,10713.466 +35113,2025-03-11T09:20:05.449238-07:00,0.0,10.726035,10726.035 +35114,2025-03-11T09:20:16.171358-07:00,0.0,10.72212,10722.12 +35115,2025-03-11T09:20:26.894202-07:00,0.0,10.722844,10722.844 +35116,2025-03-11T09:20:37.625170-07:00,0.0,10.730968,10730.968 +35117,2025-03-11T09:20:48.352362-07:00,0.0,10.727192,10727.192 +35118,2025-03-11T09:20:59.073236-07:00,0.0,10.720874,10720.874 +35119,2025-03-11T09:21:09.803523-07:00,0.0,10.730287,10730.287 +35120,2025-03-11T09:21:20.521169-07:00,0.0,10.717646,10717.646 +35121,2025-03-11T09:21:31.251201-07:00,0.0,10.730032,10730.032 +35122,2025-03-11T09:21:41.976273-07:00,0.0,10.725072,10725.072 +35123,2025-03-11T09:21:52.705930-07:00,0.0,10.729657,10729.657 +35124,2025-03-11T09:22:03.432348-07:00,0.0,10.726418,10726.418 +35125,2025-03-11T09:22:14.151205-07:00,0.0,10.718857,10718.857 +35126,2025-03-11T09:22:24.881173-07:00,1.0,10.729968,10729.968 +35127,2025-03-11T09:22:35.608172-07:00,0.0,10.726999,10726.999 +35128,2025-03-11T09:22:46.341172-07:00,0.0,10.733,10733.0 +35129,2025-03-11T09:22:57.062353-07:00,0.0,10.721181,10721.181 +35130,2025-03-11T09:23:07.793375-07:00,0.0,10.731022,10731.022 +35131,2025-03-11T09:23:18.520173-07:00,1.0,10.726798,10726.798 +35132,2025-03-11T09:23:29.244365-07:00,0.0,10.724192,10724.192 +35133,2025-03-11T09:23:39.974964-07:00,0.0,10.730599,10730.599 +35134,2025-03-11T09:23:50.701341-07:00,0.0,10.726377,10726.377 +35135,2025-03-11T09:24:01.438182-07:00,0.0,10.736841,10736.841 +35136,2025-03-11T09:24:12.162516-07:00,0.0,10.724334,10724.334 +35137,2025-03-11T09:24:22.897223-07:00,0.0,10.734707,10734.707 +35138,2025-03-11T09:24:33.623379-07:00,3.0,10.726156,10726.156 +35139,2025-03-11T09:24:44.353168-07:00,0.0,10.729789,10729.789 +35140,2025-03-11T09:24:55.088603-07:00,0.0,10.735435,10735.435 +35141,2025-03-11T09:25:05.808373-07:00,0.0,10.71977,10719.77 +35142,2025-03-11T09:25:16.548202-07:00,0.0,10.739829,10739.829 +35143,2025-03-11T09:25:27.273583-07:00,0.0,10.725381,10725.381 +35144,2025-03-11T09:25:38.001169-07:00,0.0,10.727586,10727.586 +35145,2025-03-11T09:25:48.735184-07:00,0.0,10.734015,10734.015 +35146,2025-03-11T09:25:59.460010-07:00,0.0,10.724826,10724.826 +35147,2025-03-11T09:26:10.183173-07:00,0.0,10.723163,10723.163 +35148,2025-03-11T09:26:18.798763-07:00,452.0,8.61559,8615.59 +35149,2025-03-11T09:26:20.909343-07:00,569.0,2.11058,2110.58 +35150,2025-03-11T09:26:31.633342-07:00,499.0,10.723999,10723.999 +35151,2025-03-11T09:26:42.363167-07:00,526.0,10.729825,10729.825 +35152,2025-03-11T09:26:53.088172-07:00,500.0,10.725005,10725.005 +35153,2025-03-11T09:27:03.819354-07:00,433.0,10.731182,10731.182 +35154,2025-03-11T09:27:14.540379-07:00,566.0,10.721025,10721.025 +35155,2025-03-11T09:27:25.269186-07:00,481.0,10.728807,10728.807 +35156,2025-03-11T09:27:35.997346-07:00,467.0,10.72816,10728.16 +35157,2025-03-11T09:27:46.728260-07:00,437.0,10.730914,10730.914 +35158,2025-03-11T09:27:57.450841-07:00,495.0,10.722581,10722.581 +35159,2025-03-11T09:28:08.178363-07:00,557.0,10.727522,10727.522 +35160,2025-03-11T09:28:18.905402-07:00,453.0,10.727039,10727.039 +35161,2025-03-11T09:28:29.634370-07:00,351.0,10.728968,10728.968 +35162,2025-03-11T09:28:40.356168-07:00,368.0,10.721798,10721.798 +35163,2025-03-11T09:28:51.087171-07:00,391.0,10.731003,10731.003 +35164,2025-03-11T09:29:01.803524-07:00,423.0,10.716353,10716.353 +35165,2025-03-11T09:29:12.528241-07:00,466.0,10.724717,10724.717 +35166,2025-03-11T09:29:23.260344-07:00,527.0,10.732103,10732.103 +35167,2025-03-11T09:29:33.984234-07:00,464.0,10.72389,10723.89 +35168,2025-03-11T09:29:44.701360-07:00,466.0,10.717126,10717.126 +35169,2025-03-11T09:29:55.426168-07:00,479.0,10.724808,10724.808 +35170,2025-03-11T09:30:06.152451-07:00,420.0,10.726283,10726.283 +35171,2025-03-11T09:30:16.881169-07:00,357.0,10.728718,10728.718 +35172,2025-03-11T09:30:27.595200-07:00,528.0,10.714031,10714.031 +35173,2025-03-11T09:30:38.324280-07:00,527.0,10.72908,10729.08 +35174,2025-03-11T09:30:49.043363-07:00,506.0,10.719083,10719.083 +35175,2025-03-11T09:30:59.773831-07:00,509.0,10.730468,10730.468 +35176,2025-03-11T09:31:10.497172-07:00,325.0,10.723341,10723.341 +35177,2025-03-11T09:31:21.217445-07:00,430.0,10.720273,10720.273 +35178,2025-03-11T09:31:31.943173-07:00,474.0,10.725728,10725.728 +35179,2025-03-11T09:31:42.672862-07:00,466.0,10.729689,10729.689 +35180,2025-03-11T09:31:53.399266-07:00,466.0,10.726404,10726.404 +35181,2025-03-11T09:32:04.124173-07:00,478.0,10.724907,10724.907 +35182,2025-03-11T09:32:14.849195-07:00,482.0,10.725022,10725.022 +35183,2025-03-11T09:32:25.570469-07:00,479.0,10.721274,10721.274 +35184,2025-03-11T09:32:36.299369-07:00,502.0,10.7289,10728.9 +35185,2025-03-11T09:32:47.026167-07:00,484.0,10.726798,10726.798 +35186,2025-03-11T09:32:57.745620-07:00,503.0,10.719453,10719.453 +35187,2025-03-11T09:33:08.477355-07:00,493.0,10.731735,10731.735 +35188,2025-03-11T09:33:19.200350-07:00,492.0,10.722995,10722.995 +35189,2025-03-11T09:33:29.926377-07:00,499.0,10.726027,10726.027 +35190,2025-03-11T09:33:40.657170-07:00,469.0,10.730793,10730.793 +35191,2025-03-11T09:33:51.384729-07:00,356.0,10.727559,10727.559 +35192,2025-03-11T09:34:01.942361-07:00,0.0,10.557632,10557.632 +35193,2025-03-11T09:34:02.111248-07:00,0.0,0.168887,168.887 +35194,2025-03-11T09:34:12.839402-07:00,0.0,10.728154,10728.154 +35195,2025-03-11T09:34:23.557172-07:00,0.0,10.71777,10717.77 +35196,2025-03-11T09:34:34.288488-07:00,0.0,10.731316,10731.316 +35197,2025-03-11T09:34:45.012409-07:00,0.0,10.723921,10723.921 +35198,2025-03-11T09:34:55.733201-07:00,0.0,10.720792,10720.792 +35199,2025-03-11T09:35:06.466604-07:00,0.0,10.733403,10733.403 +35200,2025-03-11T09:35:17.191319-07:00,0.0,10.724715,10724.715 +35201,2025-03-11T09:35:27.910167-07:00,0.0,10.718848,10718.848 +35202,2025-03-11T09:35:34.194571-07:00,437.0,6.284404,6284.404 +35203,2025-03-11T09:35:38.640193-07:00,458.0,4.445622,4445.622 +35204,2025-03-11T09:35:49.360434-07:00,493.0,10.720241,10720.241 +35205,2025-03-11T09:36:00.089290-07:00,511.0,10.728856,10728.856 +35206,2025-03-11T09:36:10.813172-07:00,407.0,10.723882,10723.882 +35207,2025-03-11T09:36:21.536588-07:00,387.0,10.723416,10723.416 +35208,2025-03-11T09:36:32.260167-07:00,478.0,10.723579,10723.579 +35209,2025-03-11T09:36:42.983345-07:00,506.0,10.723178,10723.178 +35210,2025-03-11T09:36:53.708172-07:00,461.0,10.724827,10724.827 +35211,2025-03-11T09:37:04.439170-07:00,383.0,10.730998,10730.998 +35212,2025-03-11T09:37:15.162318-07:00,491.0,10.723148,10723.148 +35213,2025-03-11T09:37:25.890175-07:00,400.0,10.727857,10727.857 +35214,2025-03-11T09:37:36.613002-07:00,461.0,10.722827,10722.827 +35215,2025-03-11T09:37:47.333171-07:00,432.0,10.720169,10720.169 +35216,2025-03-11T09:37:58.062280-07:00,382.0,10.729109,10729.109 +35217,2025-03-11T09:38:08.785376-07:00,471.0,10.723096,10723.096 +35218,2025-03-11T09:38:19.504351-07:00,484.0,10.718975,10718.975 +35219,2025-03-11T09:38:30.236168-07:00,479.0,10.731817,10731.817 +35220,2025-03-11T09:38:40.952321-07:00,484.0,10.716153,10716.153 +35221,2025-03-11T09:38:51.679373-07:00,415.0,10.727052,10727.052 +35222,2025-03-11T09:39:02.409310-07:00,468.0,10.729937,10729.937 +35223,2025-03-11T09:39:02.734544-07:00,0.0,0.325234,325.234 +35224,2025-03-11T09:39:13.124196-07:00,0.0,10.389652,10389.652 +35225,2025-03-11T09:39:23.850532-07:00,0.0,10.726336,10726.336 +35226,2025-03-11T09:39:34.575194-07:00,0.0,10.724662,10724.662 +35227,2025-03-11T09:39:45.299172-07:00,0.0,10.723978,10723.978 +35228,2025-03-11T09:39:56.030226-07:00,0.0,10.731054,10731.054 +35229,2025-03-11T09:40:06.755169-07:00,0.0,10.724943,10724.943 +35230,2025-03-11T09:40:17.480172-07:00,0.0,10.725003,10725.003 +35231,2025-03-11T09:40:28.206411-07:00,0.0,10.726239,10726.239 +35232,2025-03-11T09:40:38.935170-07:00,0.0,10.728759,10728.759 +35233,2025-03-11T09:40:49.655399-07:00,0.0,10.720229,10720.229 +35234,2025-03-11T09:41:00.382382-07:00,0.0,10.726983,10726.983 +35235,2025-03-11T09:41:11.104344-07:00,0.0,10.721962,10721.962 +35236,2025-03-11T09:41:21.831169-07:00,0.0,10.726825,10726.825 +35237,2025-03-11T09:41:32.559348-07:00,0.0,10.728179,10728.179 +35238,2025-03-11T09:41:43.279169-07:00,0.0,10.719821,10719.821 +35239,2025-03-11T09:41:53.996355-07:00,0.0,10.717186,10717.186 +35240,2025-03-11T09:42:04.727171-07:00,0.0,10.730816,10730.816 +35241,2025-03-11T09:42:15.448561-07:00,0.0,10.72139,10721.39 +35242,2025-03-11T09:42:26.169169-07:00,0.0,10.720608,10720.608 +35243,2025-03-11T09:42:36.886172-07:00,0.0,10.717003,10717.003 +35244,2025-03-11T09:42:47.608171-07:00,0.0,10.721999,10721.999 +35245,2025-03-11T09:42:58.336883-07:00,0.0,10.728712,10728.712 +35246,2025-03-11T09:43:09.064985-07:00,0.0,10.728102,10728.102 +35247,2025-03-11T09:43:19.784171-07:00,0.0,10.719186,10719.186 +35248,2025-03-11T09:43:30.509980-07:00,0.0,10.725809,10725.809 +35249,2025-03-11T09:43:41.229170-07:00,0.0,10.71919,10719.19 +35250,2025-03-11T09:43:51.961995-07:00,0.0,10.732825,10732.825 +35251,2025-03-11T09:44:02.677172-07:00,0.0,10.715177,10715.177 +35252,2025-03-11T09:44:13.400372-07:00,0.0,10.7232,10723.2 +35253,2025-03-11T09:44:24.128174-07:00,0.0,10.727802,10727.802 +35254,2025-03-11T09:44:34.854398-07:00,0.0,10.726224,10726.224 +35255,2025-03-11T09:44:45.571452-07:00,0.0,10.717054,10717.054 +35256,2025-03-11T09:44:56.298172-07:00,0.0,10.72672,10726.72 +35257,2025-03-11T09:45:07.014196-07:00,0.0,10.716024,10716.024 +35258,2025-03-11T09:45:17.736345-07:00,0.0,10.722149,10722.149 +35259,2025-03-11T09:45:28.468170-07:00,0.0,10.731825,10731.825 +35260,2025-03-11T09:45:39.194172-07:00,0.0,10.726002,10726.002 +35261,2025-03-11T09:45:49.908219-07:00,0.0,10.714047,10714.047 +35262,2025-03-11T09:46:00.636369-07:00,0.0,10.72815,10728.15 +35263,2025-03-11T09:46:11.366470-07:00,0.0,10.730101,10730.101 +35264,2025-03-11T09:46:22.086171-07:00,0.0,10.719701,10719.701 +35265,2025-03-11T09:46:32.806426-07:00,0.0,10.720255,10720.255 +35266,2025-03-11T09:46:43.525375-07:00,0.0,10.718949,10718.949 +35267,2025-03-11T09:46:54.254349-07:00,0.0,10.728974,10728.974 +35268,2025-03-11T09:47:04.982321-07:00,0.0,10.727972,10727.972 +35269,2025-03-11T09:47:15.706390-07:00,0.0,10.724069,10724.069 +35270,2025-03-11T09:47:26.431168-07:00,0.0,10.724778,10724.778 +35271,2025-03-11T09:47:37.158318-07:00,0.0,10.72715,10727.15 +35272,2025-03-11T09:47:47.876235-07:00,0.0,10.717917,10717.917 +35273,2025-03-11T09:47:58.607225-07:00,0.0,10.73099,10730.99 +35274,2025-03-11T09:48:09.333361-07:00,0.0,10.726136,10726.136 +35275,2025-03-11T09:48:20.054231-07:00,0.0,10.72087,10720.87 +35276,2025-03-11T09:48:30.783377-07:00,0.0,10.729146,10729.146 +35277,2025-03-11T09:48:41.513354-07:00,0.0,10.729977,10729.977 +35278,2025-03-11T09:48:52.228239-07:00,0.0,10.714885,10714.885 +35279,2025-03-11T09:49:02.957532-07:00,0.0,10.729293,10729.293 +35280,2025-03-11T09:49:13.676587-07:00,0.0,10.719055,10719.055 +35281,2025-03-11T09:49:24.406814-07:00,0.0,10.730227,10730.227 +35282,2025-03-11T09:49:35.128172-07:00,0.0,10.721358,10721.358 +35283,2025-03-11T09:49:45.848678-07:00,0.0,10.720506,10720.506 +35284,2025-03-11T09:49:56.575167-07:00,0.0,10.726489,10726.489 +35285,2025-03-11T09:50:07.298354-07:00,0.0,10.723187,10723.187 +35286,2025-03-11T09:50:18.019914-07:00,0.0,10.72156,10721.56 +35287,2025-03-11T09:50:28.743373-07:00,0.0,10.723459,10723.459 +35288,2025-03-11T09:50:39.472167-07:00,0.0,10.728794,10728.794 +35289,2025-03-11T09:50:50.190489-07:00,0.0,10.718322,10718.322 +35290,2025-03-11T09:51:00.912200-07:00,0.0,10.721711,10721.711 +35291,2025-03-11T09:51:11.630572-07:00,0.0,10.718372,10718.372 +35292,2025-03-11T09:51:22.359169-07:00,0.0,10.728597,10728.597 +35293,2025-03-11T09:51:33.073348-07:00,0.0,10.714179,10714.179 +35294,2025-03-11T09:51:43.802190-07:00,0.0,10.728842,10728.842 +35295,2025-03-11T09:51:54.523541-07:00,0.0,10.721351,10721.351 +35296,2025-03-11T09:52:05.242169-07:00,0.0,10.718628,10718.628 +35297,2025-03-11T09:52:15.969355-07:00,0.0,10.727186,10727.186 +35298,2025-03-11T09:52:26.691171-07:00,0.0,10.721816,10721.816 +35299,2025-03-11T09:52:37.404597-07:00,0.0,10.713426,10713.426 +35300,2025-03-11T09:52:48.136171-07:00,0.0,10.731574,10731.574 +35301,2025-03-11T09:52:58.852996-07:00,0.0,10.716825,10716.825 +35302,2025-03-11T09:53:09.574362-07:00,0.0,10.721366,10721.366 +35303,2025-03-11T09:53:20.293402-07:00,0.0,10.71904,10719.04 +35304,2025-03-11T09:53:31.018170-07:00,0.0,10.724768,10724.768 +35305,2025-03-11T09:53:41.767741-07:00,0.0,10.749571,10749.571 +35306,2025-03-11T09:53:52.490013-07:00,0.0,10.722272,10722.272 +35307,2025-03-11T09:54:03.218433-07:00,0.0,10.72842,10728.42 +35308,2025-03-11T09:54:13.932827-07:00,0.0,10.714394,10714.394 +35309,2025-03-11T09:54:24.663654-07:00,0.0,10.730827,10730.827 +35310,2025-03-11T09:54:35.386561-07:00,0.0,10.722907,10722.907 +35311,2025-03-11T09:54:46.110758-07:00,0.0,10.724197,10724.197 +35312,2025-03-11T09:54:56.834424-07:00,0.0,10.723666,10723.666 +35313,2025-03-11T09:55:07.558347-07:00,0.0,10.723923,10723.923 +35314,2025-03-11T09:55:18.287218-07:00,0.0,10.728871,10728.871 +35315,2025-03-11T09:55:29.005767-07:00,0.0,10.718549,10718.549 +35316,2025-03-11T09:55:39.734565-07:00,0.0,10.728798,10728.798 +35317,2025-03-11T09:55:50.461739-07:00,0.0,10.727174,10727.174 +35318,2025-03-11T09:56:01.182955-07:00,0.0,10.721216,10721.216 +35319,2025-03-11T09:56:11.907561-07:00,0.0,10.724606,10724.606 +35320,2025-03-11T09:56:22.624588-07:00,0.0,10.717027,10717.027 +35321,2025-03-11T09:56:33.353879-07:00,0.0,10.729291,10729.291 +35322,2025-03-11T09:56:44.076563-07:00,0.0,10.722684,10722.684 +35323,2025-03-11T09:56:54.795562-07:00,0.0,10.718999,10718.999 +35324,2025-03-11T09:57:05.519592-07:00,0.0,10.72403,10724.03 +35325,2025-03-11T09:57:16.248814-07:00,0.0,10.729222,10729.222 +35326,2025-03-11T09:57:26.969563-07:00,0.0,10.720749,10720.749 +35327,2025-03-11T09:57:37.698312-07:00,0.0,10.728749,10728.749 +35328,2025-03-11T09:57:48.416811-07:00,0.0,10.718499,10718.499 +35329,2025-03-11T09:57:59.137740-07:00,0.0,10.720929,10720.929 +35330,2025-03-11T09:58:09.865563-07:00,0.0,10.727823,10727.823 +35331,2025-03-11T09:58:20.592976-07:00,0.0,10.727413,10727.413 +35332,2025-03-11T09:58:31.309561-07:00,0.0,10.716585,10716.585 +35333,2025-03-11T09:58:42.031567-07:00,0.0,10.722006,10722.006 +35334,2025-03-11T09:58:52.759883-07:00,0.0,10.728316,10728.316 +35335,2025-03-11T09:59:03.485566-07:00,0.0,10.725683,10725.683 +35336,2025-03-11T09:59:14.200710-07:00,0.0,10.715144,10715.144 +35337,2025-03-11T09:59:24.930700-07:00,0.0,10.72999,10729.99 +35338,2025-03-11T09:59:35.650810-07:00,0.0,10.72011,10720.11 +35339,2025-03-11T09:59:46.371563-07:00,0.0,10.720753,10720.753 +35340,2025-03-11T09:59:57.094757-07:00,0.0,10.723194,10723.194 +35341,2025-03-11T10:00:07.817899-07:00,0.0,10.723142,10723.142 +35342,2025-03-11T10:00:18.537590-07:00,0.0,10.719691,10719.691 +35343,2025-03-11T10:00:29.267682-07:00,0.0,10.730092,10730.092 +35344,2025-03-11T10:00:39.989740-07:00,0.0,10.722058,10722.058 +35345,2025-03-11T10:00:50.719589-07:00,0.0,10.729849,10729.849 +35346,2025-03-11T10:01:01.444564-07:00,0.0,10.724975,10724.975 +35347,2025-03-11T10:01:12.176449-07:00,0.0,10.731885,10731.885 +35348,2025-03-11T10:01:22.894751-07:00,0.0,10.718302,10718.302 +35349,2025-03-11T10:01:33.619213-07:00,0.0,10.724462,10724.462 +35350,2025-03-11T10:01:44.342882-07:00,0.0,10.723669,10723.669 +35351,2025-03-11T10:01:55.070763-07:00,0.0,10.727881,10727.881 +35352,2025-03-11T10:02:05.794234-07:00,0.0,10.723471,10723.471 +35353,2025-03-11T10:02:16.521780-07:00,0.0,10.727546,10727.546 +35354,2025-03-11T10:02:27.240846-07:00,0.0,10.719066,10719.066 +35355,2025-03-11T10:02:37.969564-07:00,0.0,10.728718,10728.718 +35356,2025-03-11T10:02:48.690009-07:00,0.0,10.720445,10720.445 +35357,2025-03-11T10:02:59.420776-07:00,0.0,10.730767,10730.767 +35358,2025-03-11T10:03:10.153803-07:00,0.0,10.733027,10733.027 +35359,2025-03-11T10:03:20.873564-07:00,0.0,10.719761,10719.761 +35360,2025-03-11T10:03:31.605642-07:00,0.0,10.732078,10732.078 +35361,2025-03-11T10:03:42.325693-07:00,0.0,10.720051,10720.051 +35362,2025-03-11T10:03:53.050575-07:00,0.0,10.724882,10724.882 +35363,2025-03-11T10:04:03.771763-07:00,0.0,10.721188,10721.188 +35364,2025-03-11T10:04:14.506620-07:00,0.0,10.734857,10734.857 +35365,2025-03-11T10:04:25.232982-07:00,0.0,10.726362,10726.362 +35366,2025-03-11T10:04:35.959330-07:00,0.0,10.726348,10726.348 +35367,2025-03-11T10:04:46.684784-07:00,0.0,10.725454,10725.454 +35368,2025-03-11T10:04:57.412568-07:00,0.0,10.727784,10727.784 +35369,2025-03-11T10:05:08.137559-07:00,0.0,10.724991,10724.991 +35370,2025-03-11T10:05:18.862745-07:00,0.0,10.725186,10725.186 +35371,2025-03-11T10:05:29.584560-07:00,0.0,10.721815,10721.815 +35372,2025-03-11T10:05:40.306140-07:00,0.0,10.72158,10721.58 +35373,2025-03-11T10:05:51.038562-07:00,0.0,10.732422,10732.422 +35374,2025-03-11T10:06:01.765719-07:00,0.0,10.727157,10727.157 +35375,2025-03-11T10:06:12.488162-07:00,0.0,10.722443,10722.443 +35376,2025-03-11T10:06:23.221562-07:00,0.0,10.7334,10733.4 +35377,2025-03-11T10:06:33.949827-07:00,0.0,10.728265,10728.265 +35378,2025-03-11T10:06:44.676561-07:00,0.0,10.726734,10726.734 +35379,2025-03-11T10:06:55.401571-07:00,0.0,10.72501,10725.01 +35380,2025-03-11T10:07:06.125308-07:00,0.0,10.723737,10723.737 +35381,2025-03-11T10:07:16.847557-07:00,0.0,10.722249,10722.249 +35382,2025-03-11T10:07:27.579765-07:00,0.0,10.732208,10732.208 +35383,2025-03-11T10:07:38.302591-07:00,0.0,10.722826,10722.826 +35384,2025-03-11T10:07:49.030563-07:00,0.0,10.727972,10727.972 +35385,2025-03-11T10:07:59.765749-07:00,0.0,10.735186,10735.186 +35386,2025-03-11T10:08:10.484773-07:00,0.0,10.719024,10719.024 +35387,2025-03-11T10:08:21.220779-07:00,0.0,10.736006,10736.006 +35388,2025-03-11T10:08:31.944563-07:00,0.0,10.723784,10723.784 +35389,2025-03-11T10:08:42.665582-07:00,0.0,10.721019,10721.019 +35390,2025-03-11T10:08:53.402774-07:00,0.0,10.737192,10737.192 +35391,2025-03-11T10:09:04.121647-07:00,0.0,10.718873,10718.873 +35392,2025-03-11T10:09:14.858741-07:00,0.0,10.737094,10737.094 +35393,2025-03-11T10:09:25.583561-07:00,0.0,10.72482,10724.82 +35394,2025-03-11T10:09:36.312765-07:00,0.0,10.729204,10729.204 +35395,2025-03-11T10:09:47.044640-07:00,0.0,10.731875,10731.875 +35396,2025-03-11T10:09:57.766724-07:00,0.0,10.722084,10722.084 +35397,2025-03-11T10:10:08.501588-07:00,0.0,10.734864,10734.864 +35398,2025-03-11T10:10:19.233759-07:00,0.0,10.732171,10732.171 +35399,2025-03-11T10:10:29.965821-07:00,0.0,10.732062,10732.062 +35400,2025-03-11T10:10:40.701593-07:00,0.0,10.735772,10735.772 +35401,2025-03-11T10:10:51.435807-07:00,0.0,10.734214,10734.214 +35402,2025-03-11T10:11:02.164740-07:00,0.0,10.728933,10728.933 +35403,2025-03-11T10:11:12.893750-07:00,0.0,10.72901,10729.01 +35404,2025-03-11T10:11:23.619766-07:00,0.0,10.726016,10726.016 +35405,2025-03-11T10:11:34.348561-07:00,0.0,10.728795,10728.795 +35406,2025-03-11T10:11:45.074449-07:00,0.0,10.725888,10725.888 +35407,2025-03-11T10:11:55.810640-07:00,0.0,10.736191,10736.191 +35408,2025-03-11T10:12:06.539656-07:00,0.0,10.729016,10729.016 +35409,2025-03-11T10:12:17.273058-07:00,0.0,10.733402,10733.402 +35410,2025-03-11T10:12:27.999789-07:00,0.0,10.726731,10726.731 +35411,2025-03-11T10:12:38.734164-07:00,0.0,10.734375,10734.375 +35412,2025-03-11T10:12:49.459561-07:00,0.0,10.725397,10725.397 +35413,2025-03-11T10:13:00.190053-07:00,0.0,10.730492,10730.492 +35414,2025-03-11T10:13:10.919750-07:00,0.0,10.729697,10729.697 +35415,2025-03-11T10:13:21.646623-07:00,0.0,10.726873,10726.873 +35416,2025-03-11T10:13:32.383968-07:00,0.0,10.737345,10737.345 +35417,2025-03-11T10:13:43.107560-07:00,0.0,10.723592,10723.592 +35418,2025-03-11T10:13:53.837564-07:00,0.0,10.730004,10730.004 +35419,2025-03-11T10:14:04.561378-07:00,0.0,10.723814,10723.814 +35420,2025-03-11T10:14:15.290566-07:00,0.0,10.729188,10729.188 +35421,2025-03-11T10:14:26.016757-07:00,0.0,10.726191,10726.191 +35422,2025-03-11T10:14:36.744758-07:00,0.0,10.728001,10728.001 +35423,2025-03-11T10:14:47.480561-07:00,0.0,10.735803,10735.803 +35424,2025-03-11T10:14:58.203726-07:00,0.0,10.723165,10723.165 +35425,2025-03-11T10:15:08.928840-07:00,0.0,10.725114,10725.114 +35426,2025-03-11T10:15:19.660672-07:00,0.0,10.731832,10731.832 +35427,2025-03-11T10:15:30.391768-07:00,0.0,10.731096,10731.096 +35428,2025-03-11T10:15:41.113766-07:00,0.0,10.721998,10721.998 +35429,2025-03-11T10:15:51.839775-07:00,0.0,10.726009,10726.009 +35430,2025-03-11T10:16:02.572588-07:00,0.0,10.732813,10732.813 +35431,2025-03-11T10:16:13.303776-07:00,0.0,10.731188,10731.188 +35432,2025-03-11T10:16:24.031922-07:00,0.0,10.728146,10728.146 +35433,2025-03-11T10:16:34.765564-07:00,0.0,10.733642,10733.642 +35434,2025-03-11T10:16:45.493716-07:00,0.0,10.728152,10728.152 +35435,2025-03-11T10:16:56.225562-07:00,0.0,10.731846,10731.846 +35436,2025-03-11T10:17:06.958638-07:00,0.0,10.733076,10733.076 +35437,2025-03-11T10:17:17.679562-07:00,0.0,10.720924,10720.924 +35438,2025-03-11T10:17:28.408738-07:00,0.0,10.729176,10729.176 +35439,2025-03-11T10:17:39.140766-07:00,0.0,10.732028,10732.028 +35440,2025-03-11T10:17:49.865564-07:00,0.0,10.724798,10724.798 +35441,2025-03-11T10:18:00.597771-07:00,0.0,10.732207,10732.207 +35442,2025-03-11T10:18:11.319838-07:00,0.0,10.722067,10722.067 +35443,2025-03-11T10:18:22.051744-07:00,0.0,10.731906,10731.906 +35444,2025-03-11T10:18:32.779561-07:00,0.0,10.727817,10727.817 +35445,2025-03-11T10:18:43.510559-07:00,0.0,10.730998,10730.998 +35446,2025-03-11T10:18:54.242559-07:00,0.0,10.732,10732.0 +35447,2025-03-11T10:19:04.972656-07:00,0.0,10.730097,10730.097 +35448,2025-03-11T10:19:15.692843-07:00,0.0,10.720187,10720.187 +35449,2025-03-11T10:19:26.428744-07:00,0.0,10.735901,10735.901 +35450,2025-03-11T10:19:37.157765-07:00,0.0,10.729021,10729.021 +35451,2025-03-11T10:19:47.888586-07:00,0.0,10.730821,10730.821 +35452,2025-03-11T10:19:58.615759-07:00,0.0,10.727173,10727.173 +35453,2025-03-11T10:20:09.338842-07:00,0.0,10.723083,10723.083 +35454,2025-03-11T10:20:20.068577-07:00,0.0,10.729735,10729.735 +35455,2025-03-11T10:20:30.801561-07:00,0.0,10.732984,10732.984 +35456,2025-03-11T10:20:41.522777-07:00,0.0,10.721216,10721.216 +35457,2025-03-11T10:20:52.253663-07:00,0.0,10.730886,10730.886 +35458,2025-03-11T10:21:02.982772-07:00,0.0,10.729109,10729.109 +35459,2025-03-11T10:21:13.704970-07:00,0.0,10.722198,10722.198 +35460,2025-03-11T10:21:24.433562-07:00,0.0,10.728592,10728.592 +35461,2025-03-11T10:21:35.156751-07:00,0.0,10.723189,10723.189 +35462,2025-03-11T10:21:45.883320-07:00,0.0,10.726569,10726.569 +35463,2025-03-11T10:21:56.601623-07:00,0.0,10.718303,10718.303 +35464,2025-03-11T10:22:07.331737-07:00,0.0,10.730114,10730.114 +35465,2025-03-11T10:22:18.056770-07:00,0.0,10.725033,10725.033 +35466,2025-03-11T10:22:28.785637-07:00,0.0,10.728867,10728.867 +35467,2025-03-11T10:22:39.510688-07:00,0.0,10.725051,10725.051 +35468,2025-03-11T10:22:50.231962-07:00,0.0,10.721274,10721.274 +35469,2025-03-11T10:23:00.962331-07:00,0.0,10.730369,10730.369 +35470,2025-03-11T10:23:11.688640-07:00,0.0,10.726309,10726.309 +35471,2025-03-11T10:23:22.407715-07:00,0.0,10.719075,10719.075 +35472,2025-03-11T10:23:33.139561-07:00,0.0,10.731846,10731.846 +35473,2025-03-11T10:23:43.863774-07:00,0.0,10.724213,10724.213 +35474,2025-03-11T10:23:54.587591-07:00,0.0,10.723817,10723.817 +35475,2025-03-11T10:24:05.319623-07:00,0.0,10.732032,10732.032 +35476,2025-03-11T10:24:16.041195-07:00,0.0,10.721572,10721.572 +35477,2025-03-11T10:24:26.777790-07:00,0.0,10.736595,10736.595 +35478,2025-03-11T10:24:37.501790-07:00,0.0,10.724,10724.0 +35479,2025-03-11T10:24:48.233747-07:00,0.0,10.731957,10731.957 +35480,2025-03-11T10:24:58.957842-07:00,0.0,10.724095,10724.095 +35481,2025-03-11T10:25:09.679753-07:00,0.0,10.721911,10721.911 +35482,2025-03-11T10:25:20.415635-07:00,0.0,10.735882,10735.882 +35483,2025-03-11T10:25:31.136841-07:00,0.0,10.721206,10721.206 +35484,2025-03-11T10:25:41.859561-07:00,0.0,10.72272,10722.72 +35485,2025-03-11T10:25:52.590564-07:00,0.0,10.731003,10731.003 +35486,2025-03-11T10:26:03.319739-07:00,0.0,10.729175,10729.175 +35487,2025-03-11T10:26:14.043565-07:00,0.0,10.723826,10723.826 +35488,2025-03-11T10:26:24.764097-07:00,0.0,10.720532,10720.532 +35489,2025-03-11T10:26:35.497561-07:00,0.0,10.733464,10733.464 +35490,2025-03-11T10:26:46.226692-07:00,0.0,10.729131,10729.131 +35491,2025-03-11T10:26:56.948748-07:00,0.0,10.722056,10722.056 +35492,2025-03-11T10:27:07.676594-07:00,0.0,10.727846,10727.846 +35493,2025-03-11T10:27:18.400739-07:00,0.0,10.724145,10724.145 +35494,2025-03-11T10:27:29.134635-07:00,0.0,10.733896,10733.896 +35495,2025-03-11T10:27:39.854558-07:00,0.0,10.719923,10719.923 +35496,2025-03-11T10:27:50.583753-07:00,0.0,10.729195,10729.195 +35497,2025-03-11T10:28:01.311563-07:00,0.0,10.72781,10727.81 +35498,2025-03-11T10:28:12.036914-07:00,0.0,10.725351,10725.351 +35499,2025-03-11T10:28:22.763561-07:00,0.0,10.726647,10726.647 +35500,2025-03-11T10:28:33.486567-07:00,0.0,10.723006,10723.006 +35501,2025-03-11T10:28:44.218745-07:00,0.0,10.732178,10732.178 +35502,2025-03-11T10:28:54.940597-07:00,0.0,10.721852,10721.852 +35503,2025-03-11T10:29:05.668865-07:00,0.0,10.728268,10728.268 +35504,2025-03-11T10:29:16.390626-07:00,0.0,10.721761,10721.761 +35505,2025-03-11T10:29:27.128565-07:00,0.0,10.737939,10737.939 +35506,2025-03-11T10:29:37.851967-07:00,0.0,10.723402,10723.402 +35507,2025-03-11T10:29:48.579642-07:00,0.0,10.727675,10727.675 +35508,2025-03-11T10:29:59.315858-07:00,0.0,10.736216,10736.216 +35509,2025-03-11T10:30:10.035565-07:00,0.0,10.719707,10719.707 +35510,2025-03-11T10:30:20.762628-07:00,0.0,10.727063,10727.063 +35511,2025-03-11T10:30:31.495930-07:00,0.0,10.733302,10733.302 +35512,2025-03-11T10:30:42.224626-07:00,0.0,10.728696,10728.696 +35513,2025-03-11T10:30:52.945769-07:00,0.0,10.721143,10721.143 +35514,2025-03-11T10:31:03.671590-07:00,0.0,10.725821,10725.821 +35515,2025-03-11T10:31:14.403633-07:00,0.0,10.732043,10732.043 +35516,2025-03-11T10:31:25.123749-07:00,0.0,10.720116,10720.116 +35517,2025-03-11T10:31:35.848565-07:00,0.0,10.724816,10724.816 +35518,2025-03-11T10:31:46.579761-07:00,0.0,10.731196,10731.196 +35519,2025-03-11T10:31:57.304707-07:00,0.0,10.724946,10724.946 +35520,2025-03-11T10:32:08.032564-07:00,0.0,10.727857,10727.857 +35521,2025-03-11T10:32:18.761839-07:00,0.0,10.729275,10729.275 +35522,2025-03-11T10:32:29.483562-07:00,0.0,10.721723,10721.723 +35523,2025-03-11T10:32:40.218745-07:00,0.0,10.735183,10735.183 +35524,2025-03-11T10:32:50.939812-07:00,0.0,10.721067,10721.067 +35525,2025-03-11T10:33:01.666666-07:00,0.0,10.726854,10726.854 +35526,2025-03-11T10:33:12.398731-07:00,0.0,10.732065,10732.065 +35527,2025-03-11T10:33:23.127781-07:00,0.0,10.72905,10729.05 +35528,2025-03-11T10:33:33.856723-07:00,0.0,10.728942,10728.942 +35529,2025-03-11T10:33:44.582242-07:00,0.0,10.725519,10725.519 +35530,2025-03-11T10:33:55.299564-07:00,0.0,10.717322,10717.322 +35531,2025-03-11T10:34:06.023081-07:00,0.0,10.723517,10723.517 +35532,2025-03-11T10:34:16.756011-07:00,0.0,10.73293,10732.93 +35533,2025-03-11T10:34:27.484029-07:00,0.0,10.728018,10728.018 +35534,2025-03-11T10:34:38.215380-07:00,0.0,10.731351,10731.351 +35535,2025-03-11T10:34:48.941709-07:00,0.0,10.726329,10726.329 +35536,2025-03-11T10:34:59.668753-07:00,0.0,10.727044,10727.044 +35537,2025-03-11T10:35:10.385783-07:00,0.0,10.71703,10717.03 +35538,2025-03-11T10:35:21.114761-07:00,0.0,10.728978,10728.978 +35539,2025-03-11T10:35:31.846561-07:00,0.0,10.7318,10731.8 +35540,2025-03-11T10:35:42.564937-07:00,0.0,10.718376,10718.376 +35541,2025-03-11T10:35:53.292640-07:00,0.0,10.727703,10727.703 +35542,2025-03-11T10:36:04.018564-07:00,0.0,10.725924,10725.924 +35543,2025-03-11T10:36:14.749968-07:00,0.0,10.731404,10731.404 +35544,2025-03-11T10:36:25.474620-07:00,0.0,10.724652,10724.652 +35545,2025-03-11T10:36:36.197602-07:00,0.0,10.722982,10722.982 +35546,2025-03-11T10:36:46.930026-07:00,0.0,10.732424,10732.424 +35547,2025-03-11T10:36:57.655357-07:00,0.0,10.725331,10725.331 +35548,2025-03-11T10:37:08.380751-07:00,0.0,10.725394,10725.394 +35549,2025-03-11T10:37:19.102686-07:00,0.0,10.721935,10721.935 +35550,2025-03-11T10:37:29.819743-07:00,0.0,10.717057,10717.057 +35551,2025-03-11T10:37:40.550560-07:00,0.0,10.730817,10730.817 +35552,2025-03-11T10:37:51.272565-07:00,0.0,10.722005,10722.005 +35553,2025-03-11T10:38:02.001561-07:00,0.0,10.728996,10728.996 +35554,2025-03-11T10:38:12.718559-07:00,0.0,10.716998,10716.998 +35555,2025-03-11T10:38:23.447626-07:00,0.0,10.729067,10729.067 +35556,2025-03-11T10:38:34.169565-07:00,0.0,10.721939,10721.939 +35557,2025-03-11T10:38:44.900728-07:00,0.0,10.731163,10731.163 +35558,2025-03-11T10:38:55.621764-07:00,0.0,10.721036,10721.036 +35559,2025-03-11T10:39:06.344763-07:00,0.0,10.722999,10722.999 +35560,2025-03-11T10:39:17.067564-07:00,0.0,10.722801,10722.801 +35561,2025-03-11T10:39:27.794267-07:00,0.0,10.726703,10726.703 +35562,2025-03-11T10:39:38.515770-07:00,0.0,10.721503,10721.503 +35563,2025-03-11T10:39:49.245566-07:00,0.0,10.729796,10729.796 +35564,2025-03-11T10:39:59.966690-07:00,0.0,10.721124,10721.124 +35565,2025-03-11T10:40:10.693012-07:00,0.0,10.726322,10726.322 +35566,2025-03-11T10:40:21.410562-07:00,0.0,10.71755,10717.55 +35567,2025-03-11T10:40:32.138565-07:00,0.0,10.728003,10728.003 +35568,2025-03-11T10:40:42.864741-07:00,0.0,10.726176,10726.176 +35569,2025-03-11T10:40:53.591558-07:00,0.0,10.726817,10726.817 +35570,2025-03-11T10:41:04.323735-07:00,0.0,10.732177,10732.177 +35571,2025-03-11T10:41:15.049569-07:00,0.0,10.725834,10725.834 +35572,2025-03-11T10:41:25.774759-07:00,0.0,10.72519,10725.19 +35573,2025-03-11T10:41:36.500745-07:00,0.0,10.725986,10725.986 +35574,2025-03-11T10:41:47.228565-07:00,0.0,10.72782,10727.82 +35575,2025-03-11T10:41:57.950444-07:00,0.0,10.721879,10721.879 +35576,2025-03-11T10:42:08.676561-07:00,0.0,10.726117,10726.117 +35577,2025-03-11T10:42:19.399564-07:00,0.0,10.723003,10723.003 +35578,2025-03-11T10:42:30.125018-07:00,0.0,10.725454,10725.454 +35579,2025-03-11T10:42:40.852805-07:00,0.0,10.727787,10727.787 +35580,2025-03-11T10:42:51.585805-07:00,0.0,10.733,10733.0 +35581,2025-03-11T10:43:02.315564-07:00,0.0,10.729759,10729.759 +35582,2025-03-11T10:43:13.038775-07:00,0.0,10.723211,10723.211 +35583,2025-03-11T10:43:23.768746-07:00,0.0,10.729971,10729.971 +35584,2025-03-11T10:43:34.497063-07:00,0.0,10.728317,10728.317 +35585,2025-03-11T10:43:45.232752-07:00,0.0,10.735689,10735.689 +35586,2025-03-11T10:43:55.954707-07:00,0.0,10.721955,10721.955 +35587,2025-03-11T10:44:06.686564-07:00,0.0,10.731857,10731.857 +35588,2025-03-11T10:44:17.417074-07:00,0.0,10.73051,10730.51 +35589,2025-03-11T10:44:28.143594-07:00,0.0,10.72652,10726.52 +35590,2025-03-11T10:44:38.869339-07:00,0.0,10.725745,10725.745 +35591,2025-03-11T10:44:49.599740-07:00,0.0,10.730401,10730.401 +35592,2025-03-11T10:45:00.323562-07:00,0.0,10.723822,10723.822 +35593,2025-03-11T10:45:11.055438-07:00,0.0,10.731876,10731.876 +35594,2025-03-11T10:45:21.784526-07:00,0.0,10.729088,10729.088 +35595,2025-03-11T10:45:32.508563-07:00,0.0,10.724037,10724.037 +35596,2025-03-11T10:45:43.233749-07:00,0.0,10.725186,10725.186 +35597,2025-03-11T10:45:53.962714-07:00,0.0,10.728965,10728.965 +35598,2025-03-11T10:46:04.693668-07:00,0.0,10.730954,10730.954 +35599,2025-03-11T10:46:15.415588-07:00,0.0,10.72192,10721.92 +35600,2025-03-11T10:46:26.143635-07:00,0.0,10.728047,10728.047 +35601,2025-03-11T10:46:36.871150-07:00,0.0,10.727515,10727.515 +35602,2025-03-11T10:46:47.599563-07:00,0.0,10.728413,10728.413 +35603,2025-03-11T10:46:58.331556-07:00,0.0,10.731993,10731.993 +35604,2025-03-11T10:47:09.065716-07:00,0.0,10.73416,10734.16 +35605,2025-03-11T10:47:19.790613-07:00,0.0,10.724897,10724.897 +35606,2025-03-11T10:47:30.515990-07:00,0.0,10.725377,10725.377 +35607,2025-03-11T10:47:41.249760-07:00,0.0,10.73377,10733.77 +35608,2025-03-11T10:47:51.974565-07:00,0.0,10.724805,10724.805 +35609,2025-03-11T10:48:02.709701-07:00,0.0,10.735136,10735.136 +35610,2025-03-11T10:48:13.440789-07:00,0.0,10.731088,10731.088 +35611,2025-03-11T10:48:24.164636-07:00,0.0,10.723847,10723.847 +35612,2025-03-11T10:48:34.896968-07:00,0.0,10.732332,10732.332 +35613,2025-03-11T10:48:45.628029-07:00,0.0,10.731061,10731.061 +35614,2025-03-11T10:48:56.351564-07:00,0.0,10.723535,10723.535 +35615,2025-03-11T10:49:07.089569-07:00,0.0,10.738005,10738.005 +35616,2025-03-11T10:49:17.814592-07:00,0.0,10.725023,10725.023 +35617,2025-03-11T10:49:28.547588-07:00,0.0,10.732996,10732.996 +35618,2025-03-11T10:49:39.274739-07:00,0.0,10.727151,10727.151 +35619,2025-03-11T10:49:50.009237-07:00,0.0,10.734498,10734.498 +35620,2025-03-11T10:50:00.734564-07:00,0.0,10.725327,10725.327 +35621,2025-03-11T10:50:11.472565-07:00,0.0,10.738001,10738.001 +35622,2025-03-11T10:50:22.199136-07:00,0.0,10.726571,10726.571 +35623,2025-03-11T10:50:32.925565-07:00,0.0,10.726429,10726.429 +35624,2025-03-11T10:50:43.661753-07:00,0.0,10.736188,10736.188 +35625,2025-03-11T10:50:54.392782-07:00,0.0,10.731029,10731.029 +35626,2025-03-11T10:51:05.126560-07:00,0.0,10.733778,10733.778 +35627,2025-03-11T10:51:15.851562-07:00,0.0,10.725002,10725.002 +35628,2025-03-11T10:51:26.584792-07:00,0.0,10.73323,10733.23 +35629,2025-03-11T10:51:37.313561-07:00,0.0,10.728769,10728.769 +35630,2025-03-11T10:51:48.045997-07:00,0.0,10.732436,10732.436 +35631,2025-03-11T10:51:58.775121-07:00,0.0,10.729124,10729.124 +35632,2025-03-11T10:52:09.501564-07:00,0.0,10.726443,10726.443 +35633,2025-03-11T10:52:20.242104-07:00,0.0,10.74054,10740.54 +35634,2025-03-11T10:52:30.968760-07:00,0.0,10.726656,10726.656 +35635,2025-03-11T10:52:41.695734-07:00,0.0,10.726974,10726.974 +35636,2025-03-11T10:52:52.427821-07:00,0.0,10.732087,10732.087 +35637,2025-03-11T10:53:03.161730-07:00,0.0,10.733909,10733.909 +35638,2025-03-11T10:53:13.882563-07:00,0.0,10.720833,10720.833 +35639,2025-03-11T10:53:24.615562-07:00,0.0,10.732999,10732.999 +35640,2025-03-11T10:53:35.364002-07:00,0.0,10.74844,10748.44 +35641,2025-03-11T10:53:46.087275-07:00,0.0,10.723273,10723.273 +35642,2025-03-11T10:53:56.826430-07:00,0.0,10.739155,10739.155 +35643,2025-03-11T10:54:07.548740-07:00,0.0,10.72231,10722.31 +35644,2025-03-11T10:54:18.276216-07:00,0.0,10.727476,10727.476 +35645,2025-03-11T10:54:29.013217-07:00,0.0,10.737001,10737.001 +35646,2025-03-11T10:54:39.740305-07:00,0.0,10.727088,10727.088 +35647,2025-03-11T10:54:50.468454-07:00,0.0,10.728149,10728.149 +35648,2025-03-11T10:55:01.192399-07:00,0.0,10.723945,10723.945 +35649,2025-03-11T10:55:11.929214-07:00,0.0,10.736815,10736.815 +35650,2025-03-11T10:55:22.660429-07:00,0.0,10.731215,10731.215 +35651,2025-03-11T10:55:33.386384-07:00,0.0,10.725955,10725.955 +35652,2025-03-11T10:55:44.114217-07:00,0.0,10.727833,10727.833 +35653,2025-03-11T10:55:54.845645-07:00,0.0,10.731428,10731.428 +35654,2025-03-11T10:56:05.579400-07:00,0.0,10.733755,10733.755 +35655,2025-03-11T10:56:16.311216-07:00,0.0,10.731816,10731.816 +35656,2025-03-11T10:56:27.041488-07:00,0.0,10.730272,10730.272 +35657,2025-03-11T10:56:37.766397-07:00,0.0,10.724909,10724.909 +35658,2025-03-11T10:56:48.499381-07:00,0.0,10.732984,10732.984 +35659,2025-03-11T10:56:59.228489-07:00,0.0,10.729108,10729.108 +35660,2025-03-11T10:57:09.966438-07:00,0.0,10.737949,10737.949 +35661,2025-03-11T10:57:20.694216-07:00,0.0,10.727778,10727.778 +35662,2025-03-11T10:57:31.423213-07:00,0.0,10.728997,10728.997 +35663,2025-03-11T10:57:42.146472-07:00,0.0,10.723259,10723.259 +35664,2025-03-11T10:57:52.877217-07:00,0.0,10.730745,10730.745 +35665,2025-03-11T10:58:03.607404-07:00,0.0,10.730187,10730.187 +35666,2025-03-11T10:58:14.336055-07:00,0.0,10.728651,10728.651 +35667,2025-03-11T10:58:25.073417-07:00,0.0,10.737362,10737.362 +35668,2025-03-11T10:58:35.805266-07:00,0.0,10.731849,10731.849 +35669,2025-03-11T10:58:46.530388-07:00,0.0,10.725122,10725.122 +35670,2025-03-11T10:58:57.263996-07:00,0.0,10.733608,10733.608 +35671,2025-03-11T10:59:07.995498-07:00,0.0,10.731502,10731.502 +35672,2025-03-11T10:59:18.724398-07:00,0.0,10.7289,10728.9 +35673,2025-03-11T10:59:29.462251-07:00,0.0,10.737853,10737.853 +35674,2025-03-11T10:59:40.189296-07:00,0.0,10.727045,10727.045 +35675,2025-03-11T10:59:50.920586-07:00,0.0,10.73129,10731.29 +35676,2025-03-11T11:00:01.660395-07:00,0.0,10.739809,10739.809 +35677,2025-03-11T11:00:12.389217-07:00,0.0,10.728822,10728.822 +35678,2025-03-11T11:00:23.126258-07:00,0.0,10.737041,10737.041 +35679,2025-03-11T11:00:33.854398-07:00,0.0,10.72814,10728.14 +35680,2025-03-11T11:00:44.591210-07:00,0.0,10.736812,10736.812 +35681,2025-03-11T11:00:55.328390-07:00,0.0,10.73718,10737.18 +35682,2025-03-11T11:01:06.059288-07:00,0.0,10.730898,10730.898 +35683,2025-03-11T11:01:16.790398-07:00,0.0,10.73111,10731.11 +35684,2025-03-11T11:01:27.514217-07:00,0.0,10.723819,10723.819 +35685,2025-03-11T11:01:38.249925-07:00,0.0,10.735708,10735.708 +35686,2025-03-11T11:01:48.974214-07:00,0.0,10.724289,10724.289 +35687,2025-03-11T11:01:59.705498-07:00,0.0,10.731284,10731.284 +35688,2025-03-11T11:02:10.437255-07:00,0.0,10.731757,10731.757 +35689,2025-03-11T11:02:21.170316-07:00,0.0,10.733061,10733.061 +35690,2025-03-11T11:02:31.905284-07:00,0.0,10.734968,10734.968 +35691,2025-03-11T11:02:42.626422-07:00,0.0,10.721138,10721.138 +35692,2025-03-11T11:02:53.362505-07:00,0.0,10.736083,10736.083 +35693,2025-03-11T11:03:04.087370-07:00,0.0,10.724865,10724.865 +35694,2025-03-11T11:03:14.823222-07:00,0.0,10.735852,10735.852 +35695,2025-03-11T11:03:25.552483-07:00,0.0,10.729261,10729.261 +35696,2025-03-11T11:03:36.278733-07:00,0.0,10.72625,10726.25 +35697,2025-03-11T11:03:47.009228-07:00,0.0,10.730495,10730.495 +35698,2025-03-11T11:03:57.745727-07:00,0.0,10.736499,10736.499 +35699,2025-03-11T11:04:08.468255-07:00,0.0,10.722528,10722.528 +35700,2025-03-11T11:04:19.204432-07:00,0.0,10.736177,10736.177 +35701,2025-03-11T11:04:29.931263-07:00,0.0,10.726831,10726.831 +35702,2025-03-11T11:04:40.666288-07:00,0.0,10.735025,10735.025 +35703,2025-03-11T11:04:51.391639-07:00,0.0,10.725351,10725.351 +35704,2025-03-11T11:05:02.121213-07:00,0.0,10.729574,10729.574 +35705,2025-03-11T11:05:12.853215-07:00,0.0,10.732002,10732.002 +35706,2025-03-11T11:05:23.586209-07:00,0.0,10.732994,10732.994 +35707,2025-03-11T11:05:34.316391-07:00,0.0,10.730182,10730.182 +35708,2025-03-11T11:05:45.049516-07:00,0.0,10.733125,10733.125 +35709,2025-03-11T11:05:55.775416-07:00,0.0,10.7259,10725.9 +35710,2025-03-11T11:06:06.507215-07:00,0.0,10.731799,10731.799 +35711,2025-03-11T11:06:17.236452-07:00,0.0,10.729237,10729.237 +35712,2025-03-11T11:06:27.966248-07:00,0.0,10.729796,10729.796 +35713,2025-03-11T11:06:38.695237-07:00,0.0,10.728989,10728.989 +35714,2025-03-11T11:06:49.426746-07:00,0.0,10.731509,10731.509 +35715,2025-03-11T11:07:00.155445-07:00,0.0,10.728699,10728.699 +35716,2025-03-11T11:07:10.881279-07:00,0.0,10.725834,10725.834 +35717,2025-03-11T11:07:21.612428-07:00,0.0,10.731149,10731.149 +35718,2025-03-11T11:07:32.336688-07:00,0.0,10.72426,10724.26 +35719,2025-03-11T11:07:43.072216-07:00,0.0,10.735528,10735.528 +35720,2025-03-11T11:07:53.797658-07:00,0.0,10.725442,10725.442 +35721,2025-03-11T11:08:04.532435-07:00,0.0,10.734777,10734.777 +35722,2025-03-11T11:08:15.258216-07:00,0.0,10.725781,10725.781 +35723,2025-03-11T11:08:25.998312-07:00,0.0,10.740096,10740.096 +35724,2025-03-11T11:08:36.725418-07:00,0.0,10.727106,10727.106 +35725,2025-03-11T11:08:47.454215-07:00,0.0,10.728797,10728.797 +35726,2025-03-11T11:08:58.190219-07:00,0.0,10.736004,10736.004 +35727,2025-03-11T11:09:08.922537-07:00,0.0,10.732318,10732.318 +35728,2025-03-11T11:09:19.648633-07:00,0.0,10.726096,10726.096 +35729,2025-03-11T11:09:30.383279-07:00,0.0,10.734646,10734.646 +35730,2025-03-11T11:09:41.114215-07:00,0.0,10.730936,10730.936 +35731,2025-03-11T11:09:51.849588-07:00,0.0,10.735373,10735.373 +35732,2025-03-11T11:10:02.572217-07:00,0.0,10.722629,10722.629 +35733,2025-03-11T11:10:13.304077-07:00,0.0,10.73186,10731.86 +35734,2025-03-11T11:10:24.034369-07:00,0.0,10.730292,10730.292 +35735,2025-03-11T11:10:34.760344-07:00,0.0,10.725975,10725.975 +35736,2025-03-11T11:10:45.487415-07:00,0.0,10.727071,10727.071 +35737,2025-03-11T11:10:56.225560-07:00,0.0,10.738145,10738.145 +35738,2025-03-11T11:11:06.952411-07:00,0.0,10.726851,10726.851 +35739,2025-03-11T11:11:17.687549-07:00,0.0,10.735138,10735.138 +35740,2025-03-11T11:11:28.409213-07:00,0.0,10.721664,10721.664 +35741,2025-03-11T11:11:39.145287-07:00,0.0,10.736074,10736.074 +35742,2025-03-11T11:11:49.884216-07:00,0.0,10.738929,10738.929 +35743,2025-03-11T11:12:00.615748-07:00,0.0,10.731532,10731.532 +35744,2025-03-11T11:12:11.343418-07:00,0.0,10.72767,10727.67 +35745,2025-03-11T11:12:22.071400-07:00,0.0,10.727982,10727.982 +35746,2025-03-11T11:12:32.810391-07:00,0.0,10.738991,10738.991 +35747,2025-03-11T11:12:43.542214-07:00,0.0,10.731823,10731.823 +35748,2025-03-11T11:12:54.273216-07:00,0.0,10.731002,10731.002 +35749,2025-03-11T11:13:05.000614-07:00,0.0,10.727398,10727.398 +35750,2025-03-11T11:13:15.734240-07:00,0.0,10.733626,10733.626 +35751,2025-03-11T11:13:26.470244-07:00,0.0,10.736004,10736.004 +35752,2025-03-11T11:13:37.211211-07:00,0.0,10.740967,10740.967 +35753,2025-03-11T11:13:47.936213-07:00,0.0,10.725002,10725.002 +35754,2025-03-11T11:13:58.670414-07:00,0.0,10.734201,10734.201 +35755,2025-03-11T11:14:09.410215-07:00,0.0,10.739801,10739.801 +35756,2025-03-11T11:14:20.143282-07:00,0.0,10.733067,10733.067 +35757,2025-03-11T11:14:21.242199-07:00,0.0,1.098917,1098.917 +35758,2025-03-11T11:14:30.871246-07:00,0.0,9.629047,9629.047 +35759,2025-03-11T11:14:41.609215-07:00,0.0,10.737969,10737.969 +35760,2025-03-11T11:14:52.342215-07:00,0.0,10.733,10733.0 +35761,2025-03-11T11:15:03.077106-07:00,0.0,10.734891,10734.891 +35762,2025-03-11T11:15:13.809500-07:00,0.0,10.732394,10732.394 +35763,2025-03-11T11:15:24.534282-07:00,0.0,10.724782,10724.782 +35764,2025-03-11T11:15:35.272220-07:00,0.0,10.737938,10737.938 +35765,2025-03-11T11:15:46.000566-07:00,0.0,10.728346,10728.346 +35766,2025-03-11T11:15:56.736383-07:00,0.0,10.735817,10735.817 +35767,2025-03-11T11:16:07.465400-07:00,0.0,10.729017,10729.017 +35768,2025-03-11T11:16:18.199382-07:00,0.0,10.733982,10733.982 +35769,2025-03-11T11:16:28.927216-07:00,0.0,10.727834,10727.834 +35770,2025-03-11T11:16:39.665234-07:00,0.0,10.738018,10738.018 +35771,2025-03-11T11:16:50.399233-07:00,0.0,10.733999,10733.999 +35772,2025-03-11T11:17:01.121251-07:00,0.0,10.722018,10722.018 +35773,2025-03-11T11:17:11.855215-07:00,0.0,10.733964,10733.964 +35774,2025-03-11T11:17:22.592391-07:00,0.0,10.737176,10737.176 +35775,2025-03-11T11:17:33.327432-07:00,0.0,10.735041,10735.041 +35776,2025-03-11T11:17:44.055852-07:00,0.0,10.72842,10728.42 +35777,2025-03-11T11:17:54.782407-07:00,0.0,10.726555,10726.555 +35778,2025-03-11T11:18:05.516528-07:00,0.0,10.734121,10734.121 +35779,2025-03-11T11:18:16.247215-07:00,0.0,10.730687,10730.687 +35780,2025-03-11T11:18:26.974437-07:00,0.0,10.727222,10727.222 +35781,2025-03-11T11:18:37.714422-07:00,0.0,10.739985,10739.985 +35782,2025-03-11T11:18:48.440215-07:00,0.0,10.725793,10725.793 +35783,2025-03-11T11:18:59.174209-07:00,0.0,10.733994,10733.994 +35784,2025-03-11T11:19:09.904435-07:00,0.0,10.730226,10730.226 +35785,2025-03-11T11:19:20.642481-07:00,0.0,10.738046,10738.046 +35786,2025-03-11T11:19:31.366856-07:00,0.0,10.724375,10724.375 +35787,2025-03-11T11:19:42.100995-07:00,0.0,10.734139,10734.139 +35788,2025-03-11T11:19:52.833208-07:00,0.0,10.732213,10732.213 +35789,2025-03-11T11:20:03.570216-07:00,0.0,10.737008,10737.008 +35790,2025-03-11T11:20:14.302424-07:00,0.0,10.732208,10732.208 +35791,2025-03-11T11:20:25.026304-07:00,0.0,10.72388,10723.88 +35792,2025-03-11T11:20:35.762216-07:00,0.0,10.735912,10735.912 +35793,2025-03-11T11:20:46.501213-07:00,0.0,10.738997,10738.997 +35794,2025-03-11T11:20:57.236401-07:00,0.0,10.735188,10735.188 +35795,2025-03-11T11:21:07.970229-07:00,0.0,10.733828,10733.828 +35796,2025-03-11T11:21:18.693216-07:00,0.0,10.722987,10722.987 +35797,2025-03-11T11:21:29.429515-07:00,0.0,10.736299,10736.299 +35798,2025-03-11T11:21:40.168421-07:00,0.0,10.738906,10738.906 +35799,2025-03-11T11:21:50.901429-07:00,0.0,10.733008,10733.008 +35800,2025-03-11T11:22:01.634390-07:00,0.0,10.732961,10732.961 +35801,2025-03-11T11:22:12.359389-07:00,0.0,10.724999,10724.999 +35802,2025-03-11T11:22:23.102076-07:00,0.0,10.742687,10742.687 +35803,2025-03-11T11:22:33.822290-07:00,0.0,10.720214,10720.214 +35804,2025-03-11T11:22:44.552575-07:00,0.0,10.730285,10730.285 +35805,2025-03-11T11:22:55.289236-07:00,0.0,10.736661,10736.661 +35806,2025-03-11T11:23:06.021415-07:00,0.0,10.732179,10732.179 +35807,2025-03-11T11:23:16.749437-07:00,0.0,10.728022,10728.022 +35808,2025-03-11T11:23:27.483808-07:00,0.0,10.734371,10734.371 +35809,2025-03-11T11:23:38.209450-07:00,0.0,10.725642,10725.642 +35810,2025-03-11T11:23:48.943211-07:00,0.0,10.733761,10733.761 +35811,2025-03-11T11:23:59.677617-07:00,0.0,10.734406,10734.406 +35812,2025-03-11T11:24:10.403247-07:00,0.0,10.72563,10725.63 +35813,2025-03-11T11:24:21.139305-07:00,0.0,10.736058,10736.058 +35814,2025-03-11T11:24:31.870397-07:00,0.0,10.731092,10731.092 +35815,2025-03-11T11:24:42.599293-07:00,0.0,10.728896,10728.896 +35816,2025-03-11T11:24:53.334518-07:00,0.0,10.735225,10735.225 +35817,2025-03-11T11:25:04.062509-07:00,0.0,10.727991,10727.991 +35818,2025-03-11T11:25:14.799550-07:00,0.0,10.737041,10737.041 +35819,2025-03-11T11:25:25.525506-07:00,0.0,10.725956,10725.956 +35820,2025-03-11T11:25:36.264405-07:00,0.0,10.738899,10738.899 +35821,2025-03-11T11:25:46.993635-07:00,0.0,10.72923,10729.23 +35822,2025-03-11T11:25:57.718403-07:00,0.0,10.724768,10724.768 +35823,2025-03-11T11:26:08.451383-07:00,0.0,10.73298,10732.98 +35824,2025-03-11T11:26:19.188747-07:00,0.0,10.737364,10737.364 +35825,2025-03-11T11:26:29.921213-07:00,0.0,10.732466,10732.466 +35826,2025-03-11T11:26:40.648395-07:00,0.0,10.727182,10727.182 +35827,2025-03-11T11:26:51.384399-07:00,0.0,10.736004,10736.004 +35828,2025-03-11T11:27:02.118370-07:00,0.0,10.733971,10733.971 +35829,2025-03-11T11:27:12.841430-07:00,0.0,10.72306,10723.06 +35830,2025-03-11T11:27:23.576385-07:00,0.0,10.734955,10734.955 +35831,2025-03-11T11:27:34.312651-07:00,0.0,10.736266,10736.266 +35832,2025-03-11T11:27:45.040212-07:00,0.0,10.727561,10727.561 +35833,2025-03-11T11:27:55.772079-07:00,0.0,10.731867,10731.867 +35834,2025-03-11T11:28:06.497454-07:00,0.0,10.725375,10725.375 +35835,2025-03-11T11:28:17.223399-07:00,0.0,10.725945,10725.945 +35836,2025-03-11T11:28:27.964231-07:00,0.0,10.740832,10740.832 +35837,2025-03-11T11:28:38.686420-07:00,0.0,10.722189,10722.189 +35838,2025-03-11T11:28:49.422213-07:00,0.0,10.735793,10735.793 +35839,2025-03-11T11:29:00.144674-07:00,0.0,10.722461,10722.461 +35840,2025-03-11T11:29:10.878214-07:00,0.0,10.73354,10733.54 +35841,2025-03-11T11:29:21.613322-07:00,0.0,10.735108,10735.108 +35842,2025-03-11T11:29:32.334374-07:00,0.0,10.721052,10721.052 +35843,2025-03-11T11:29:43.065214-07:00,0.0,10.73084,10730.84 +35844,2025-03-11T11:29:53.796644-07:00,0.0,10.73143,10731.43 +35845,2025-03-11T11:30:04.515413-07:00,0.0,10.718769,10718.769 +35846,2025-03-11T11:30:15.249430-07:00,0.0,10.734017,10734.017 +35847,2025-03-11T11:30:25.975423-07:00,0.0,10.725993,10725.993 +35848,2025-03-11T11:30:36.706214-07:00,0.0,10.730791,10730.791 +35849,2025-03-11T11:30:47.435238-07:00,0.0,10.729024,10729.024 +35850,2025-03-11T11:30:58.153213-07:00,0.0,10.717975,10717.975 +35851,2025-03-11T11:31:08.887411-07:00,0.0,10.734198,10734.198 +35852,2025-03-11T11:31:19.612383-07:00,0.0,10.724972,10724.972 +35853,2025-03-11T11:31:30.338217-07:00,0.0,10.725834,10725.834 +35854,2025-03-11T11:31:41.067626-07:00,0.0,10.729409,10729.409 +35855,2025-03-11T11:31:51.802633-07:00,0.0,10.735007,10735.007 +35856,2025-03-11T11:32:02.521216-07:00,0.0,10.718583,10718.583 +35857,2025-03-11T11:32:13.249380-07:00,0.0,10.728164,10728.164 +35858,2025-03-11T11:32:23.976252-07:00,0.0,10.726872,10726.872 +35859,2025-03-11T11:32:34.701479-07:00,0.0,10.725227,10725.227 +35860,2025-03-11T11:32:45.437604-07:00,0.0,10.736125,10736.125 +35861,2025-03-11T11:32:56.153282-07:00,0.0,10.715678,10715.678 +35862,2025-03-11T11:33:06.886245-07:00,0.0,10.732963,10732.963 +35863,2025-03-11T11:33:17.613216-07:00,0.0,10.726971,10726.971 +35864,2025-03-11T11:33:28.345214-07:00,0.0,10.731998,10731.998 +35865,2025-03-11T11:33:39.070390-07:00,0.0,10.725176,10725.176 +35866,2025-03-11T11:33:49.802270-07:00,0.0,10.73188,10731.88 +35867,2025-03-11T11:34:00.530210-07:00,0.0,10.72794,10727.94 +35868,2025-03-11T11:34:11.255238-07:00,0.0,10.725028,10725.028 +35869,2025-03-11T11:34:21.982264-07:00,0.0,10.727026,10727.026 +35870,2025-03-11T11:34:32.715398-07:00,0.0,10.733134,10733.134 +35871,2025-03-11T11:34:43.434213-07:00,0.0,10.718815,10718.815 +35872,2025-03-11T11:34:54.171417-07:00,0.0,10.737204,10737.204 +35873,2025-03-11T11:35:04.899394-07:00,0.0,10.727977,10727.977 +35874,2025-03-11T11:35:15.623417-07:00,0.0,10.724023,10724.023 +35875,2025-03-11T11:35:26.360419-07:00,0.0,10.737002,10737.002 +35876,2025-03-11T11:35:37.089417-07:00,0.0,10.728998,10728.998 +35877,2025-03-11T11:35:47.816212-07:00,0.0,10.726795,10726.795 +35878,2025-03-11T11:35:58.546430-07:00,0.0,10.730218,10730.218 +35879,2025-03-11T11:36:09.269968-07:00,0.0,10.723538,10723.538 +35880,2025-03-11T11:36:19.994235-07:00,0.0,10.724267,10724.267 +35881,2025-03-11T11:36:30.719467-07:00,0.0,10.725232,10725.232 +35882,2025-03-11T11:36:41.444419-07:00,0.0,10.724952,10724.952 +35883,2025-03-11T11:36:52.175216-07:00,0.0,10.730797,10730.797 +35884,2025-03-11T11:37:02.893213-07:00,0.0,10.717997,10717.997 +35885,2025-03-11T11:37:13.621619-07:00,0.0,10.728406,10728.406 +35886,2025-03-11T11:37:23.970528-07:00,0.0,10.348909,10348.909 +35887,2025-03-11T11:37:24.350714-07:00,0.0,0.380186,380.186 +35888,2025-03-11T11:37:35.073215-07:00,0.0,10.722501,10722.501 +35889,2025-03-11T11:37:45.793399-07:00,0.0,10.720184,10720.184 +35890,2025-03-11T11:37:56.518227-07:00,0.0,10.724828,10724.828 +35891,2025-03-11T11:38:07.247400-07:00,0.0,10.729173,10729.173 +35892,2025-03-11T11:38:17.974226-07:00,0.0,10.726826,10726.826 +35893,2025-03-11T11:38:28.700208-07:00,0.0,10.725982,10725.982 +35894,2025-03-11T11:38:39.437405-07:00,0.0,10.737197,10737.197 +35895,2025-03-11T11:38:50.155435-07:00,0.0,10.71803,10718.03 +35896,2025-03-11T11:39:00.887450-07:00,0.0,10.732015,10732.015 +35897,2025-03-11T11:39:11.619354-07:00,0.0,10.731904,10731.904 +35898,2025-03-11T11:39:22.343427-07:00,0.0,10.724073,10724.073 +35899,2025-03-11T11:39:33.074483-07:00,0.0,10.731056,10731.056 +35900,2025-03-11T11:39:43.799332-07:00,0.0,10.724849,10724.849 +35901,2025-03-11T11:39:54.528700-07:00,0.0,10.729368,10729.368 +35902,2025-03-11T11:40:05.256229-07:00,0.0,10.727529,10727.529 +35903,2025-03-11T11:40:15.983270-07:00,0.0,10.727041,10727.041 +35904,2025-03-11T11:40:26.710605-07:00,0.0,10.727335,10727.335 +35905,2025-03-11T11:40:37.435376-07:00,0.0,10.724771,10724.771 +35906,2025-03-11T11:40:48.166238-07:00,0.0,10.730862,10730.862 +35907,2025-03-11T11:40:58.900385-07:00,0.0,10.734147,10734.147 +35908,2025-03-11T11:41:09.620216-07:00,0.0,10.719831,10719.831 +35909,2025-03-11T11:41:20.348299-07:00,0.0,10.728083,10728.083 +35910,2025-03-11T11:41:31.081258-07:00,0.0,10.732959,10732.959 +35911,2025-03-11T11:41:41.804278-07:00,0.0,10.72302,10723.02 +35912,2025-03-11T11:41:52.533539-07:00,0.0,10.729261,10729.261 +35913,2025-03-11T11:42:03.263214-07:00,0.0,10.729675,10729.675 +35914,2025-03-11T11:42:13.987251-07:00,0.0,10.724037,10724.037 +35915,2025-03-11T11:42:24.715241-07:00,0.0,10.72799,10727.99 +35916,2025-03-11T11:42:35.447218-07:00,0.0,10.731977,10731.977 +35917,2025-03-11T11:42:46.173016-07:00,0.0,10.725798,10725.798 +35918,2025-03-11T11:42:56.901211-07:00,0.0,10.728195,10728.195 +35919,2025-03-11T11:43:07.627214-07:00,0.0,10.726003,10726.003 +35920,2025-03-11T11:43:18.360384-07:00,0.0,10.73317,10733.17 +35921,2025-03-11T11:43:29.093452-07:00,0.0,10.733068,10733.068 +35922,2025-03-11T11:43:39.822446-07:00,0.0,10.728994,10728.994 +35923,2025-03-11T11:43:50.541286-07:00,0.0,10.71884,10718.84 +35924,2025-03-11T11:44:01.267217-07:00,0.0,10.725931,10725.931 +35925,2025-03-11T11:44:12.003211-07:00,0.0,10.735994,10735.994 +35926,2025-03-11T11:44:22.732287-07:00,0.0,10.729076,10729.076 +35927,2025-03-11T11:44:33.455287-07:00,0.0,10.723,10723.0 +35928,2025-03-11T11:44:44.181402-07:00,0.0,10.726115,10726.115 +35929,2025-03-11T11:44:54.907216-07:00,0.0,10.725814,10725.814 +35930,2025-03-11T11:45:05.640214-07:00,0.0,10.732998,10732.998 +35931,2025-03-11T11:45:16.366250-07:00,0.0,10.726036,10726.036 +35932,2025-03-11T11:45:27.098420-07:00,0.0,10.73217,10732.17 +35933,2025-03-11T11:45:37.820412-07:00,0.0,10.721992,10721.992 +35934,2025-03-11T11:45:48.545283-07:00,0.0,10.724871,10724.871 +35935,2025-03-11T11:45:59.275461-07:00,0.0,10.730178,10730.178 +35936,2025-03-11T11:46:10.001779-07:00,0.0,10.726318,10726.318 +35937,2025-03-11T11:46:20.727212-07:00,0.0,10.725433,10725.433 +35938,2025-03-11T11:46:31.458406-07:00,0.0,10.731194,10731.194 +35939,2025-03-11T11:46:42.182213-07:00,0.0,10.723807,10723.807 +35940,2025-03-11T11:46:52.907218-07:00,0.0,10.725005,10725.005 +35941,2025-03-11T11:47:03.636241-07:00,0.0,10.729023,10729.023 +35942,2025-03-11T11:47:14.364293-07:00,0.0,10.728052,10728.052 +35943,2025-03-11T11:47:25.093618-07:00,0.0,10.729325,10729.325 +35944,2025-03-11T11:47:35.813210-07:00,0.0,10.719592,10719.592 +35945,2025-03-11T11:47:46.544242-07:00,0.0,10.731032,10731.032 +35946,2025-03-11T11:47:57.281404-07:00,0.0,10.737162,10737.162 +35947,2025-03-11T11:48:08.011281-07:00,0.0,10.729877,10729.877 +35948,2025-03-11T11:48:18.739439-07:00,0.0,10.728158,10728.158 +35949,2025-03-11T11:48:29.473418-07:00,0.0,10.733979,10733.979 +35950,2025-03-11T11:48:40.203218-07:00,0.0,10.7298,10729.8 +35951,2025-03-11T11:48:50.926888-07:00,0.0,10.72367,10723.67 +35952,2025-03-11T11:49:01.654660-07:00,0.0,10.727772,10727.772 +35953,2025-03-11T11:49:12.385383-07:00,0.0,10.730723,10730.723 +35954,2025-03-11T11:49:23.114424-07:00,0.0,10.729041,10729.041 +35955,2025-03-11T11:49:33.841281-07:00,0.0,10.726857,10726.857 +35956,2025-03-11T11:49:44.566450-07:00,0.0,10.725169,10725.169 +35957,2025-03-11T11:49:55.289270-07:00,0.0,10.72282,10722.82 +35958,2025-03-11T11:50:06.022217-07:00,0.0,10.732947,10732.947 +35959,2025-03-11T11:50:16.743387-07:00,0.0,10.72117,10721.17 +35960,2025-03-11T11:50:27.478213-07:00,0.0,10.734826,10734.826 +35961,2025-03-11T11:50:38.200211-07:00,0.0,10.721998,10721.998 +35962,2025-03-11T11:50:48.935695-07:00,0.0,10.735484,10735.484 +35963,2025-03-11T11:50:59.659285-07:00,0.0,10.72359,10723.59 +35964,2025-03-11T11:51:10.389407-07:00,0.0,10.730122,10730.122 +35965,2025-03-11T11:51:21.122390-07:00,0.0,10.732983,10732.983 +35966,2025-03-11T11:51:31.852213-07:00,0.0,10.729823,10729.823 +35967,2025-03-11T11:51:42.580170-07:00,0.0,10.727957,10727.957 +35968,2025-03-11T11:51:53.306241-07:00,0.0,10.726071,10726.071 +35969,2025-03-11T11:52:04.041216-07:00,0.0,10.734975,10734.975 +35970,2025-03-11T11:52:14.768641-07:00,0.0,10.727425,10727.425 +35971,2025-03-11T11:52:25.505672-07:00,0.0,10.737031,10737.031 +35972,2025-03-11T11:52:36.231880-07:00,0.0,10.726208,10726.208 +35973,2025-03-11T11:52:46.964250-07:00,0.0,10.73237,10732.37 +35974,2025-03-11T11:52:57.703397-07:00,0.0,10.739147,10739.147 +35975,2025-03-11T11:53:08.437983-07:00,0.0,10.734586,10734.586 +35976,2025-03-11T11:53:19.167768-07:00,0.0,10.729785,10729.785 +35977,2025-03-11T11:53:29.899859-07:00,0.0,10.732091,10732.091 +35978,2025-03-11T11:53:40.659795-07:00,0.0,10.759936,10759.936 +35979,2025-03-11T11:53:51.391777-07:00,0.0,10.731982,10731.982 +35980,2025-03-11T11:54:02.118503-07:00,0.0,10.726726,10726.726 +35981,2025-03-11T11:54:12.844525-07:00,0.0,10.726022,10726.022 +35982,2025-03-11T11:54:23.579733-07:00,0.0,10.735208,10735.208 +35983,2025-03-11T11:54:34.305715-07:00,0.0,10.725982,10725.982 +35984,2025-03-11T11:54:45.039521-07:00,0.0,10.733806,10733.806 +35985,2025-03-11T11:54:55.777503-07:00,0.0,10.737982,10737.982 +35986,2025-03-11T11:55:06.510032-07:00,0.0,10.732529,10732.529 +35987,2025-03-11T11:55:17.241693-07:00,0.0,10.731661,10731.661 +35988,2025-03-11T11:55:27.971499-07:00,0.0,10.729806,10729.806 +35989,2025-03-11T11:55:38.703703-07:00,0.0,10.732204,10732.204 +35990,2025-03-11T11:55:49.440152-07:00,0.0,10.736449,10736.449 +35991,2025-03-11T11:56:00.160509-07:00,0.0,10.720357,10720.357 +35992,2025-03-11T11:56:10.893712-07:00,0.0,10.733203,10733.203 +35993,2025-03-11T11:56:21.630538-07:00,0.0,10.736826,10736.826 +35994,2025-03-11T11:56:32.367879-07:00,0.0,10.737341,10737.341 +35995,2025-03-11T11:56:43.099566-07:00,0.0,10.731687,10731.687 +35996,2025-03-11T11:56:53.832573-07:00,0.0,10.733007,10733.007 +35997,2025-03-11T11:57:04.566763-07:00,0.0,10.73419,10734.19 +35998,2025-03-11T11:57:15.296664-07:00,0.0,10.729901,10729.901 +35999,2025-03-11T11:57:26.033142-07:00,0.0,10.736478,10736.478 +36000,2025-03-11T11:57:36.766562-07:00,0.0,10.73342,10733.42 +36001,2025-03-11T11:57:47.506713-07:00,0.0,10.740151,10740.151 +36002,2025-03-11T11:57:58.244691-07:00,0.0,10.737978,10737.978 +36003,2025-03-11T11:58:08.979532-07:00,0.0,10.734841,10734.841 +36004,2025-03-11T11:58:19.712504-07:00,0.0,10.732972,10732.972 +36005,2025-03-11T11:58:30.444704-07:00,0.0,10.7322,10732.2 +36006,2025-03-11T11:58:41.170854-07:00,0.0,10.72615,10726.15 +36007,2025-03-11T11:58:51.906502-07:00,0.0,10.735648,10735.648 +36008,2025-03-11T11:59:02.640502-07:00,0.0,10.734,10734.0 +36009,2025-03-11T11:59:13.374712-07:00,0.0,10.73421,10734.21 +36010,2025-03-11T11:59:24.108503-07:00,0.0,10.733791,10733.791 +36011,2025-03-11T11:59:34.839879-07:00,0.0,10.731376,10731.376 +36012,2025-03-11T11:59:45.573743-07:00,0.0,10.733864,10733.864 +36013,2025-03-11T11:59:56.307501-07:00,0.0,10.733758,10733.758 +36014,2025-03-11T12:00:07.034497-07:00,0.0,10.726996,10726.996 +36015,2025-03-11T12:00:17.769510-07:00,0.0,10.735013,10735.013 +36016,2025-03-11T12:00:28.500107-07:00,0.0,10.730597,10730.597 +36017,2025-03-11T12:00:39.233500-07:00,0.0,10.733393,10733.393 +36018,2025-03-11T12:00:49.963756-07:00,0.0,10.730256,10730.256 +36019,2025-03-11T12:01:00.693796-07:00,0.0,10.73004,10730.04 +36020,2025-03-11T12:01:11.422499-07:00,0.0,10.728703,10728.703 +36021,2025-03-11T12:01:22.152716-07:00,0.0,10.730217,10730.217 +36022,2025-03-11T12:01:32.889776-07:00,0.0,10.73706,10737.06 +36023,2025-03-11T12:01:43.616527-07:00,0.0,10.726751,10726.751 +36024,2025-03-11T12:01:44.614521-07:00,0.0,0.997994,997.994 +36025,2025-03-11T12:01:54.354559-07:00,0.0,9.740038,9740.038 +36026,2025-03-11T12:02:05.087157-07:00,0.0,10.732598,10732.598 +36027,2025-03-11T12:02:15.817500-07:00,0.0,10.730343,10730.343 +36028,2025-03-11T12:02:26.551502-07:00,0.0,10.734002,10734.002 +36029,2025-03-11T12:02:37.275724-07:00,0.0,10.724222,10724.222 +36030,2025-03-11T12:02:48.009712-07:00,0.0,10.733988,10733.988 +36031,2025-03-11T12:02:58.740505-07:00,0.0,10.730793,10730.793 +36032,2025-03-11T12:03:09.471702-07:00,0.0,10.731197,10731.197 +36033,2025-03-11T12:03:20.200500-07:00,0.0,10.728798,10728.798 +36034,2025-03-11T12:03:30.929864-07:00,0.0,10.729364,10729.364 +36035,2025-03-11T12:03:41.665527-07:00,0.0,10.735663,10735.663 +36036,2025-03-11T12:03:52.401892-07:00,0.0,10.736365,10736.365 +36037,2025-03-11T12:04:03.126676-07:00,0.0,10.724784,10724.784 +36038,2025-03-11T12:04:13.853935-07:00,0.0,10.727259,10727.259 +36039,2025-03-11T12:04:24.588692-07:00,0.0,10.734757,10734.757 +36040,2025-03-11T12:04:35.319500-07:00,0.0,10.730808,10730.808 +36041,2025-03-11T12:04:46.055710-07:00,0.0,10.73621,10736.21 +36042,2025-03-11T12:04:56.784684-07:00,0.0,10.728974,10728.974 +36043,2025-03-11T12:05:07.514533-07:00,0.0,10.729849,10729.849 +36044,2025-03-11T12:05:18.246503-07:00,0.0,10.73197,10731.97 +36045,2025-03-11T12:05:28.977680-07:00,0.0,10.731177,10731.177 +36046,2025-03-11T12:05:39.712499-07:00,0.0,10.734819,10734.819 +36047,2025-03-11T12:05:50.438502-07:00,0.0,10.726003,10726.003 +36048,2025-03-11T12:06:01.177791-07:00,0.0,10.739289,10739.289 +36049,2025-03-11T12:06:11.906523-07:00,0.0,10.728732,10728.732 +36050,2025-03-11T12:06:22.640502-07:00,0.0,10.733979,10733.979 +36051,2025-03-11T12:06:33.368712-07:00,0.0,10.72821,10728.21 +36052,2025-03-11T12:06:44.103320-07:00,0.0,10.734608,10734.608 +36053,2025-03-11T12:06:54.837707-07:00,0.0,10.734387,10734.387 +36054,2025-03-11T12:07:05.573503-07:00,0.0,10.735796,10735.796 +36055,2025-03-11T12:07:16.296895-07:00,0.0,10.723392,10723.392 +36056,2025-03-11T12:07:27.031495-07:00,0.0,10.7346,10734.6 +36057,2025-03-11T12:07:37.767790-07:00,0.0,10.736295,10736.295 +36058,2025-03-11T12:07:48.498680-07:00,0.0,10.73089,10730.89 +36059,2025-03-11T12:07:59.225499-07:00,0.0,10.726819,10726.819 +36060,2025-03-11T12:08:09.958534-07:00,0.0,10.733035,10733.035 +36061,2025-03-11T12:08:20.697499-07:00,0.0,10.738965,10738.965 +36062,2025-03-11T12:08:31.423200-07:00,0.0,10.725701,10725.701 +36063,2025-03-11T12:08:42.161531-07:00,0.0,10.738331,10738.331 +36064,2025-03-11T12:08:52.896575-07:00,0.0,10.735044,10735.044 +36065,2025-03-11T12:09:03.624611-07:00,0.0,10.728036,10728.036 +36066,2025-03-11T12:09:14.356865-07:00,0.0,10.732254,10732.254 +36067,2025-03-11T12:09:25.080569-07:00,0.0,10.723704,10723.704 +36068,2025-03-11T12:09:35.812685-07:00,0.0,10.732116,10732.116 +36069,2025-03-11T12:09:46.545496-07:00,0.0,10.732811,10732.811 +36070,2025-03-11T12:09:57.267702-07:00,0.0,10.722206,10722.206 +36071,2025-03-11T12:10:08.004932-07:00,0.0,10.73723,10737.23 +36072,2025-03-11T12:10:18.731616-07:00,0.0,10.726684,10726.684 +36073,2025-03-11T12:10:29.461532-07:00,0.0,10.729916,10729.916 +36074,2025-03-11T12:10:40.198675-07:00,0.0,10.737143,10737.143 +36075,2025-03-11T12:10:50.926703-07:00,0.0,10.728028,10728.028 +36076,2025-03-11T12:11:01.652662-07:00,0.0,10.725959,10725.959 +36077,2025-03-11T12:11:12.387606-07:00,0.0,10.734944,10734.944 +36078,2025-03-11T12:11:23.114502-07:00,0.0,10.726896,10726.896 +36079,2025-03-11T12:11:33.851504-07:00,0.0,10.737002,10737.002 +36080,2025-03-11T12:11:44.577713-07:00,0.0,10.726209,10726.209 +36081,2025-03-11T12:11:55.318260-07:00,0.0,10.740547,10740.547 +36082,2025-03-11T12:12:06.048762-07:00,0.0,10.730502,10730.502 +36083,2025-03-11T12:12:16.779905-07:00,0.0,10.731143,10731.143 +36084,2025-03-11T12:12:27.516695-07:00,0.0,10.73679,10736.79 +36085,2025-03-11T12:12:38.244503-07:00,0.0,10.727808,10727.808 +36086,2025-03-11T12:12:48.980575-07:00,0.0,10.736072,10736.072 +36087,2025-03-11T12:12:59.707667-07:00,0.0,10.727092,10727.092 +36088,2025-03-11T12:13:10.435714-07:00,0.0,10.728047,10728.047 +36089,2025-03-11T12:13:21.169560-07:00,0.0,10.733846,10733.846 +36090,2025-03-11T12:13:31.898667-07:00,0.0,10.729107,10729.107 +36091,2025-03-11T12:13:42.634499-07:00,0.0,10.735832,10735.832 +36092,2025-03-11T12:13:53.367644-07:00,0.0,10.733145,10733.145 +36093,2025-03-11T12:14:04.095512-07:00,0.0,10.727868,10727.868 +36094,2025-03-11T12:14:14.826584-07:00,0.0,10.731072,10731.072 +36095,2025-03-11T12:14:25.557734-07:00,0.0,10.73115,10731.15 +36096,2025-03-11T12:14:36.286116-07:00,0.0,10.728382,10728.382 +36097,2025-03-11T12:14:47.023980-07:00,0.0,10.737864,10737.864 +36098,2025-03-11T12:14:57.753608-07:00,0.0,10.729628,10729.628 +36099,2025-03-11T12:15:08.479499-07:00,0.0,10.725891,10725.891 +36100,2025-03-11T12:15:19.215270-07:00,0.0,10.735771,10735.771 +36101,2025-03-11T12:15:29.945504-07:00,0.0,10.730234,10730.234 +36102,2025-03-11T12:15:40.667584-07:00,0.0,10.72208,10722.08 +36103,2025-03-11T12:15:51.404794-07:00,0.0,10.73721,10737.21 +36104,2025-03-11T12:16:02.128502-07:00,0.0,10.723708,10723.708 +36105,2025-03-11T12:16:12.864495-07:00,0.0,10.735993,10735.993 +36106,2025-03-11T12:16:23.598682-07:00,0.0,10.734187,10734.187 +36107,2025-03-11T12:16:34.328497-07:00,0.0,10.729815,10729.815 +36108,2025-03-11T12:16:45.064577-07:00,0.0,10.73608,10736.08 +36109,2025-03-11T12:16:55.796004-07:00,0.0,10.731427,10731.427 +36110,2025-03-11T12:17:06.517531-07:00,0.0,10.721527,10721.527 +36111,2025-03-11T12:17:17.252530-07:00,0.0,10.734999,10734.999 +36112,2025-03-11T12:17:27.980391-07:00,0.0,10.727861,10727.861 +36113,2025-03-11T12:17:38.706502-07:00,0.0,10.726111,10726.111 +36114,2025-03-11T12:17:49.435680-07:00,0.0,10.729178,10729.178 +36115,2025-03-11T12:18:00.167600-07:00,0.0,10.73192,10731.92 +36116,2025-03-11T12:18:10.889502-07:00,0.0,10.721902,10721.902 +36117,2025-03-11T12:18:21.618681-07:00,0.0,10.729179,10729.179 +36118,2025-03-11T12:18:32.356752-07:00,0.0,10.738071,10738.071 +36119,2025-03-11T12:18:43.081882-07:00,0.0,10.72513,10725.13 +36120,2025-03-11T12:18:53.810664-07:00,0.0,10.728782,10728.782 +36121,2025-03-11T12:19:04.541201-07:00,0.0,10.730537,10730.537 +36122,2025-03-11T12:19:15.277495-07:00,0.0,10.736294,10736.294 +36123,2025-03-11T12:19:25.998403-07:00,0.0,10.720908,10720.908 +36124,2025-03-11T12:19:36.735499-07:00,0.0,10.737096,10737.096 +36125,2025-03-11T12:19:42.961693-07:00,387.0,6.226194,6226.194 +36126,2025-03-11T12:19:47.457697-07:00,335.0,4.496004,4496.004 +36127,2025-03-11T12:19:58.189044-07:00,400.0,10.731347,10731.347 +36128,2025-03-11T12:20:08.922562-07:00,433.0,10.733518,10733.518 +36129,2025-03-11T12:20:15.056858-07:00,20.0,6.134296,6134.296 +36130,2025-03-11T12:20:19.649667-07:00,0.0,4.592809,4592.809 +36131,2025-03-11T12:20:30.387708-07:00,0.0,10.738041,10738.041 +36132,2025-03-11T12:20:41.109503-07:00,0.0,10.721795,10721.795 +36133,2025-03-11T12:20:51.836582-07:00,0.0,10.727079,10727.079 +36134,2025-03-11T12:21:02.567499-07:00,0.0,10.730917,10730.917 +36135,2025-03-11T12:21:13.305703-07:00,0.0,10.738204,10738.204 +36136,2025-03-11T12:21:24.039719-07:00,0.0,10.734016,10734.016 +36137,2025-03-11T12:21:34.760534-07:00,0.0,10.720815,10720.815 +36138,2025-03-11T12:21:45.497546-07:00,0.0,10.737012,10737.012 +36139,2025-03-11T12:21:56.229503-07:00,0.0,10.731957,10731.957 +36140,2025-03-11T12:22:06.964727-07:00,0.0,10.735224,10735.224 +36141,2025-03-11T12:22:17.685999-07:00,0.0,10.721272,10721.272 +36142,2025-03-11T12:22:28.426498-07:00,0.0,10.740499,10740.499 +36143,2025-03-11T12:22:39.152342-07:00,0.0,10.725844,10725.844 +36144,2025-03-11T12:22:49.889747-07:00,0.0,10.737405,10737.405 +36145,2025-03-11T12:23:00.624501-07:00,0.0,10.734754,10734.754 +36146,2025-03-11T12:23:11.349731-07:00,0.0,10.72523,10725.23 +36147,2025-03-11T12:23:22.089684-07:00,0.0,10.739953,10739.953 +36148,2025-03-11T12:23:32.820735-07:00,0.0,10.731051,10731.051 +36149,2025-03-11T12:23:43.554500-07:00,0.0,10.733765,10733.765 +36150,2025-03-11T12:23:54.293502-07:00,0.0,10.739002,10739.002 +36151,2025-03-11T12:24:05.027694-07:00,0.0,10.734192,10734.192 +36152,2025-03-11T12:24:15.757499-07:00,0.0,10.729805,10729.805 +36153,2025-03-11T12:24:26.501499-07:00,0.0,10.744,10744.0 +36154,2025-03-11T12:24:37.226689-07:00,0.0,10.72519,10725.19 +36155,2025-03-11T12:24:47.962850-07:00,0.0,10.736161,10736.161 +36156,2025-03-11T12:24:58.700502-07:00,0.0,10.737652,10737.652 +36157,2025-03-11T12:25:09.433569-07:00,0.0,10.733067,10733.067 +36158,2025-03-11T12:25:20.165567-07:00,0.0,10.731998,10731.998 +36159,2025-03-11T12:25:30.904673-07:00,0.0,10.739106,10739.106 +36160,2025-03-11T12:25:41.635524-07:00,0.0,10.730851,10730.851 +36161,2025-03-11T12:25:52.369899-07:00,0.0,10.734375,10734.375 +36162,2025-03-11T12:26:03.103744-07:00,0.0,10.733845,10733.845 +36163,2025-03-11T12:26:13.845706-07:00,0.0,10.741962,10741.962 +36164,2025-03-11T12:26:24.571499-07:00,0.0,10.725793,10725.793 +36165,2025-03-11T12:26:35.314707-07:00,0.0,10.743208,10743.208 +36166,2025-03-11T12:26:46.045501-07:00,0.0,10.730794,10730.794 +36167,2025-03-11T12:26:56.772568-07:00,0.0,10.727067,10727.067 +36168,2025-03-11T12:27:07.509500-07:00,0.0,10.736932,10736.932 +36169,2025-03-11T12:27:18.240784-07:00,0.0,10.731284,10731.284 +36170,2025-03-11T12:27:28.981713-07:00,0.0,10.740929,10740.929 +36171,2025-03-11T12:27:39.713499-07:00,0.0,10.731786,10731.786 +36172,2025-03-11T12:27:50.447499-07:00,0.0,10.734,10734.0 +36173,2025-03-11T12:28:01.172682-07:00,0.0,10.725183,10725.183 +36174,2025-03-11T12:28:11.905819-07:00,0.0,10.733137,10733.137 +36175,2025-03-11T12:28:22.635585-07:00,0.0,10.729766,10729.766 +36176,2025-03-11T12:28:33.371672-07:00,0.0,10.736087,10736.087 +36177,2025-03-11T12:28:44.100688-07:00,0.0,10.729016,10729.016 +36178,2025-03-11T12:28:54.832531-07:00,0.0,10.731843,10731.843 +36179,2025-03-11T12:29:05.566575-07:00,0.0,10.734044,10734.044 +36180,2025-03-11T12:29:16.307505-07:00,0.0,10.74093,10740.93 +36181,2025-03-11T12:29:27.032550-07:00,0.0,10.725045,10725.045 +36182,2025-03-11T12:29:37.767673-07:00,0.0,10.735123,10735.123 +36183,2025-03-11T12:29:48.505504-07:00,0.0,10.737831,10737.831 +36184,2025-03-11T12:29:59.233710-07:00,0.0,10.728206,10728.206 +36185,2025-03-11T12:30:09.963709-07:00,0.0,10.729999,10729.999 +36186,2025-03-11T12:30:20.699577-07:00,0.0,10.735868,10735.868 +36187,2025-03-11T12:30:31.428033-07:00,0.0,10.728456,10728.456 +36188,2025-03-11T12:30:42.155501-07:00,0.0,10.727468,10727.468 +36189,2025-03-11T12:30:52.893499-07:00,0.0,10.737998,10737.998 +36190,2025-03-11T12:31:03.617687-07:00,0.0,10.724188,10724.188 +36191,2025-03-11T12:31:14.355499-07:00,0.0,10.737812,10737.812 +36192,2025-03-11T12:31:25.083620-07:00,0.0,10.728121,10728.121 +36193,2025-03-11T12:31:35.806680-07:00,0.0,10.72306,10723.06 +36194,2025-03-11T12:31:46.541716-07:00,0.0,10.735036,10735.036 +36195,2025-03-11T12:31:57.277543-07:00,0.0,10.735827,10735.827 +36196,2025-03-11T12:32:08.000681-07:00,0.0,10.723138,10723.138 +36197,2025-03-11T12:32:18.731730-07:00,0.0,10.731049,10731.049 +36198,2025-03-11T12:32:29.462502-07:00,0.0,10.730772,10730.772 +36199,2025-03-11T12:32:40.192972-07:00,0.0,10.73047,10730.47 +36200,2025-03-11T12:32:50.920571-07:00,0.0,10.727599,10727.599 +36201,2025-03-11T12:33:01.657703-07:00,0.0,10.737132,10737.132 +36202,2025-03-11T12:33:12.385683-07:00,0.0,10.72798,10727.98 +36203,2025-03-11T12:33:23.119697-07:00,0.0,10.734014,10734.014 +36204,2025-03-11T12:33:33.851499-07:00,0.0,10.731802,10731.802 +36205,2025-03-11T12:33:44.582572-07:00,0.0,10.731073,10731.073 +36206,2025-03-11T12:33:55.310651-07:00,0.0,10.728079,10728.079 +36207,2025-03-11T12:34:06.048580-07:00,0.0,10.737929,10737.929 +36208,2025-03-11T12:34:16.774950-07:00,0.0,10.72637,10726.37 +36209,2025-03-11T12:34:27.499877-07:00,0.0,10.724927,10724.927 +36210,2025-03-11T12:34:38.227529-07:00,0.0,10.727652,10727.652 +36211,2025-03-11T12:34:48.966104-07:00,0.0,10.738575,10738.575 +36212,2025-03-11T12:34:59.688650-07:00,0.0,10.722546,10722.546 +36213,2025-03-11T12:35:10.422989-07:00,0.0,10.734339,10734.339 +36214,2025-03-11T12:35:21.156680-07:00,0.0,10.733691,10733.691 +36215,2025-03-11T12:35:31.890083-07:00,0.0,10.733403,10733.403 +36216,2025-03-11T12:35:42.616581-07:00,0.0,10.726498,10726.498 +36217,2025-03-11T12:35:53.347516-07:00,0.0,10.730935,10730.935 +36218,2025-03-11T12:36:04.073809-07:00,0.0,10.726293,10726.293 +36219,2025-03-11T12:36:14.807498-07:00,0.0,10.733689,10733.689 +36220,2025-03-11T12:36:25.534702-07:00,0.0,10.727204,10727.204 +36221,2025-03-11T12:36:36.271663-07:00,0.0,10.736961,10736.961 +36222,2025-03-11T12:36:46.996503-07:00,0.0,10.72484,10724.84 +36223,2025-03-11T12:36:57.731637-07:00,0.0,10.735134,10735.134 +36224,2025-03-11T12:37:08.464561-07:00,0.0,10.732924,10732.924 +36225,2025-03-11T12:37:19.188709-07:00,0.0,10.724148,10724.148 +36226,2025-03-11T12:37:29.919980-07:00,0.0,10.731271,10731.271 +36227,2025-03-11T12:37:40.655334-07:00,0.0,10.735354,10735.354 +36228,2025-03-11T12:37:51.380499-07:00,0.0,10.725165,10725.165 +36229,2025-03-11T12:38:02.118528-07:00,0.0,10.738029,10738.029 +36230,2025-03-11T12:38:12.841749-07:00,0.0,10.723221,10723.221 +36231,2025-03-11T12:38:23.578560-07:00,0.0,10.736811,10736.811 +36232,2025-03-11T12:38:34.306709-07:00,0.0,10.728149,10728.149 +36233,2025-03-11T12:38:45.042690-07:00,0.0,10.735981,10735.981 +36234,2025-03-11T12:38:55.766125-07:00,0.0,10.723435,10723.435 +36235,2025-03-11T12:39:06.499718-07:00,0.0,10.733593,10733.593 +36236,2025-03-11T12:39:17.235670-07:00,0.0,10.735952,10735.952 +36237,2025-03-11T12:39:27.971106-07:00,0.0,10.735436,10735.436 +36238,2025-03-11T12:39:38.699790-07:00,0.0,10.728684,10728.684 +36239,2025-03-11T12:39:49.441061-07:00,0.0,10.741271,10741.271 +36240,2025-03-11T12:40:00.174829-07:00,0.0,10.733768,10733.768 +36241,2025-03-11T12:40:10.903501-07:00,0.0,10.728672,10728.672 +36242,2025-03-11T12:40:21.635496-07:00,0.0,10.731995,10731.995 +36243,2025-03-11T12:40:32.361978-07:00,0.0,10.726482,10726.482 +36244,2025-03-11T12:40:43.095799-07:00,0.0,10.733821,10733.821 +36245,2025-03-11T12:40:53.824851-07:00,0.0,10.729052,10729.052 +36246,2025-03-11T12:41:04.556691-07:00,0.0,10.73184,10731.84 +36247,2025-03-11T12:41:15.288682-07:00,0.0,10.731991,10731.991 +36248,2025-03-11T12:41:26.028540-07:00,0.0,10.739858,10739.858 +36249,2025-03-11T12:41:36.757500-07:00,0.0,10.72896,10728.96 +36250,2025-03-11T12:41:47.492334-07:00,0.0,10.734834,10734.834 +36251,2025-03-11T12:41:58.223708-07:00,0.0,10.731374,10731.374 +36252,2025-03-11T12:42:08.956497-07:00,0.0,10.732789,10732.789 +36253,2025-03-11T12:42:19.684681-07:00,0.0,10.728184,10728.184 +36254,2025-03-11T12:42:30.420833-07:00,0.0,10.736152,10736.152 +36255,2025-03-11T12:42:41.154669-07:00,0.0,10.733836,10733.836 +36256,2025-03-11T12:42:51.890500-07:00,0.0,10.735831,10735.831 +36257,2025-03-11T12:43:02.621895-07:00,0.0,10.731395,10731.395 +36258,2025-03-11T12:43:13.351714-07:00,0.0,10.729819,10729.819 +36259,2025-03-11T12:43:24.076690-07:00,0.0,10.724976,10724.976 +36260,2025-03-11T12:43:34.813399-07:00,0.0,10.736709,10736.709 +36261,2025-03-11T12:43:45.553499-07:00,0.0,10.7401,10740.1 +36262,2025-03-11T12:43:56.286502-07:00,0.0,10.733003,10733.003 +36263,2025-03-11T12:44:07.013770-07:00,0.0,10.727268,10727.268 +36264,2025-03-11T12:44:17.752272-07:00,0.0,10.738502,10738.502 +36265,2025-03-11T12:44:28.493655-07:00,0.0,10.741383,10741.383 +36266,2025-03-11T12:44:39.224729-07:00,0.0,10.731074,10731.074 +36267,2025-03-11T12:44:49.963779-07:00,0.0,10.73905,10739.05 +36268,2025-03-11T12:45:00.695680-07:00,0.0,10.731901,10731.901 +36269,2025-03-11T12:45:11.432502-07:00,0.0,10.736822,10736.822 +36270,2025-03-11T12:45:22.160496-07:00,0.0,10.727994,10727.994 +36271,2025-03-11T12:45:32.904614-07:00,0.0,10.744118,10744.118 +36272,2025-03-11T12:45:43.637688-07:00,0.0,10.733074,10733.074 +36273,2025-03-11T12:45:54.372530-07:00,0.0,10.734842,10734.842 +36274,2025-03-11T12:46:05.106895-07:00,0.0,10.734365,10734.365 +36275,2025-03-11T12:46:15.846506-07:00,0.0,10.739611,10739.611 +36276,2025-03-11T12:46:26.579989-07:00,0.0,10.733483,10733.483 +36277,2025-03-11T12:46:37.313805-07:00,0.0,10.733816,10733.816 +36278,2025-03-11T12:46:48.048504-07:00,0.0,10.734699,10734.699 +36279,2025-03-11T12:46:58.785500-07:00,0.0,10.736996,10736.996 +36280,2025-03-11T12:47:09.511688-07:00,0.0,10.726188,10726.188 +36281,2025-03-11T12:47:20.248522-07:00,0.0,10.736834,10736.834 +36282,2025-03-11T12:47:30.983084-07:00,0.0,10.734562,10734.562 +36283,2025-03-11T12:47:41.713685-07:00,0.0,10.730601,10730.601 +36284,2025-03-11T12:47:52.447411-07:00,0.0,10.733726,10733.726 +36285,2025-03-11T12:48:03.182502-07:00,0.0,10.735091,10735.091 +36286,2025-03-11T12:48:13.919579-07:00,0.0,10.737077,10737.077 +36287,2025-03-11T12:48:24.644693-07:00,0.0,10.725114,10725.114 +36288,2025-03-11T12:48:35.383764-07:00,0.0,10.739071,10739.071 +36289,2025-03-11T12:48:46.116501-07:00,0.0,10.732737,10732.737 +36290,2025-03-11T12:48:56.850503-07:00,0.0,10.734002,10734.002 +36291,2025-03-11T12:49:07.577912-07:00,0.0,10.727409,10727.409 +36292,2025-03-11T12:49:18.317688-07:00,0.0,10.739776,10739.776 +36293,2025-03-11T12:49:29.046496-07:00,0.0,10.728808,10728.808 +36294,2025-03-11T12:49:39.784509-07:00,0.0,10.738013,10738.013 +36295,2025-03-11T12:49:50.515565-07:00,0.0,10.731056,10731.056 +36296,2025-03-11T12:50:01.249502-07:00,0.0,10.733937,10733.937 +36297,2025-03-11T12:50:11.972709-07:00,0.0,10.723207,10723.207 +36298,2025-03-11T12:50:22.705500-07:00,0.0,10.732791,10732.791 +36299,2025-03-11T12:50:33.443499-07:00,0.0,10.737999,10737.999 +36300,2025-03-11T12:50:44.173701-07:00,0.0,10.730202,10730.202 +36301,2025-03-11T12:50:54.902698-07:00,0.0,10.728997,10728.997 +36302,2025-03-11T12:51:05.646572-07:00,0.0,10.743874,10743.874 +36303,2025-03-11T12:51:16.372498-07:00,0.0,10.725926,10725.926 +36304,2025-03-11T12:51:27.112507-07:00,0.0,10.740009,10740.009 +36305,2025-03-11T12:51:37.850221-07:00,0.0,10.737714,10737.714 +36306,2025-03-11T12:51:48.575500-07:00,0.0,10.725279,10725.279 +36307,2025-03-11T12:51:59.309655-07:00,0.0,10.734155,10734.155 +36308,2025-03-11T12:52:10.046495-07:00,0.0,10.73684,10736.84 +36309,2025-03-11T12:52:20.787582-07:00,0.0,10.741087,10741.087 +36310,2025-03-11T12:52:31.519528-07:00,0.0,10.731946,10731.946 +36311,2025-03-11T12:52:42.255657-07:00,0.0,10.736129,10736.129 +36312,2025-03-11T12:52:52.987606-07:00,0.0,10.731949,10731.949 +36313,2025-03-11T12:53:03.731681-07:00,0.0,10.744075,10744.075 +36314,2025-03-11T12:53:14.465817-07:00,0.0,10.734136,10734.136 +36315,2025-03-11T12:53:25.197528-07:00,0.0,10.731711,10731.711 +36316,2025-03-11T12:53:35.947089-07:00,0.0,10.749561,10749.561 +36317,2025-03-11T12:53:46.676499-07:00,0.0,10.72941,10729.41 +36318,2025-03-11T12:53:57.408186-07:00,0.0,10.731687,10731.687 +36319,2025-03-11T12:54:08.150298-07:00,0.0,10.742112,10742.112 +36320,2025-03-11T12:54:18.883091-07:00,0.0,10.732793,10732.793 +36321,2025-03-11T12:54:29.619264-07:00,0.0,10.736173,10736.173 +36322,2025-03-11T12:54:40.344608-07:00,0.0,10.725344,10725.344 +36323,2025-03-11T12:54:51.090192-07:00,0.0,10.745584,10745.584 +36324,2025-03-11T12:55:01.820086-07:00,0.0,10.729894,10729.894 +36325,2025-03-11T12:55:12.551488-07:00,0.0,10.731402,10731.402 +36326,2025-03-11T12:55:23.290293-07:00,0.0,10.738805,10738.805 +36327,2025-03-11T12:55:34.026084-07:00,0.0,10.735791,10735.791 +36328,2025-03-11T12:55:44.765084-07:00,0.0,10.739,10739.0 +36329,2025-03-11T12:55:55.490921-07:00,0.0,10.725837,10725.837 +36330,2025-03-11T12:56:06.228194-07:00,0.0,10.737273,10737.273 +36331,2025-03-11T12:56:16.963285-07:00,0.0,10.735091,10735.091 +36332,2025-03-11T12:56:27.688264-07:00,0.0,10.724979,10724.979 +36333,2025-03-11T12:56:38.422383-07:00,0.0,10.734119,10734.119 +36334,2025-03-11T12:56:49.165086-07:00,0.0,10.742703,10742.703 +36335,2025-03-11T12:56:59.900313-07:00,0.0,10.735227,10735.227 +36336,2025-03-11T12:57:10.630675-07:00,0.0,10.730362,10730.362 +36337,2025-03-11T12:57:21.364151-07:00,0.0,10.733476,10733.476 +36338,2025-03-11T12:57:32.103318-07:00,0.0,10.739167,10739.167 +36339,2025-03-11T12:57:42.837087-07:00,0.0,10.733769,10733.769 +36340,2025-03-11T12:57:53.563258-07:00,0.0,10.726171,10726.171 +36341,2025-03-11T12:58:04.303181-07:00,0.0,10.739923,10739.923 +36342,2025-03-11T12:58:15.032269-07:00,0.0,10.729088,10729.088 +36343,2025-03-11T12:58:25.775086-07:00,0.0,10.742817,10742.817 +36344,2025-03-11T12:58:36.500349-07:00,0.0,10.725263,10725.263 +36345,2025-03-11T12:58:47.236168-07:00,0.0,10.735819,10735.819 +36346,2025-03-11T12:58:57.974085-07:00,0.0,10.737917,10737.917 +36347,2025-03-11T12:59:08.702117-07:00,0.0,10.728032,10728.032 +36348,2025-03-11T12:59:19.441487-07:00,0.0,10.73937,10739.37 +36349,2025-03-11T12:59:30.174762-07:00,0.0,10.733275,10733.275 +36350,2025-03-11T12:59:40.915378-07:00,0.0,10.740616,10740.616 +36351,2025-03-11T12:59:51.652086-07:00,0.0,10.736708,10736.708 +36352,2025-03-11T13:00:02.387721-07:00,0.0,10.735635,10735.635 +36353,2025-03-11T13:00:13.121194-07:00,0.0,10.733473,10733.473 +36354,2025-03-11T13:00:23.858088-07:00,0.0,10.736894,10736.894 +36355,2025-03-11T13:00:34.586308-07:00,0.0,10.72822,10728.22 +36356,2025-03-11T13:00:45.322278-07:00,0.0,10.73597,10735.97 +36357,2025-03-11T13:00:56.069485-07:00,0.0,10.747207,10747.207 +36358,2025-03-11T13:01:06.801155-07:00,0.0,10.73167,10731.67 +36359,2025-03-11T13:01:17.533089-07:00,0.0,10.731934,10731.934 +36360,2025-03-11T13:01:28.272312-07:00,0.0,10.739223,10739.223 +36361,2025-03-11T13:01:39.008262-07:00,0.0,10.73595,10735.95 +36362,2025-03-11T13:01:49.742086-07:00,0.0,10.733824,10733.824 +36363,2025-03-11T13:02:00.483083-07:00,0.0,10.740997,10740.997 +36364,2025-03-11T13:02:11.217086-07:00,0.0,10.734003,10734.003 +36365,2025-03-11T13:02:21.953087-07:00,0.0,10.736001,10736.001 +36366,2025-03-11T13:02:32.695333-07:00,0.0,10.742246,10742.246 +36367,2025-03-11T13:02:43.426084-07:00,0.0,10.730751,10730.751 +36368,2025-03-11T13:02:54.155199-07:00,0.0,10.729115,10729.115 +36369,2025-03-11T13:03:04.895305-07:00,0.0,10.740106,10740.106 +36370,2025-03-11T13:03:15.632265-07:00,0.0,10.73696,10736.96 +36371,2025-03-11T13:03:26.364086-07:00,0.0,10.731821,10731.821 +36372,2025-03-11T13:03:37.106088-07:00,0.0,10.742002,10742.002 +36373,2025-03-11T13:03:47.839314-07:00,0.0,10.733226,10733.226 +36374,2025-03-11T13:03:58.573263-07:00,0.0,10.733949,10733.949 +36375,2025-03-11T13:04:09.313991-07:00,0.0,10.740728,10740.728 +36376,2025-03-11T13:04:20.048175-07:00,0.0,10.734184,10734.184 +36377,2025-03-11T13:04:30.779603-07:00,0.0,10.731428,10731.428 +36378,2025-03-11T13:04:41.520285-07:00,0.0,10.740682,10740.682 +36379,2025-03-11T13:04:52.259259-07:00,0.0,10.738974,10738.974 +36380,2025-03-11T13:05:02.993116-07:00,0.0,10.733857,10733.857 +36381,2025-03-11T13:05:13.734088-07:00,0.0,10.740972,10740.972 +36382,2025-03-11T13:05:24.469161-07:00,0.0,10.735073,10735.073 +36383,2025-03-11T13:05:35.211088-07:00,0.0,10.741927,10741.927 +36384,2025-03-11T13:05:45.938504-07:00,0.0,10.727416,10727.416 +36385,2025-03-11T13:05:56.681115-07:00,0.0,10.742611,10742.611 +36386,2025-03-11T13:06:07.418087-07:00,0.0,10.736972,10736.972 +36387,2025-03-11T13:06:18.154170-07:00,0.0,10.736083,10736.083 +36388,2025-03-11T13:06:28.889558-07:00,0.0,10.735388,10735.388 +36389,2025-03-11T13:06:39.632273-07:00,0.0,10.742715,10742.715 +36390,2025-03-11T13:06:50.368295-07:00,0.0,10.736022,10736.022 +36391,2025-03-11T13:07:01.101088-07:00,0.0,10.732793,10732.793 +36392,2025-03-11T13:07:11.833089-07:00,0.0,10.732001,10732.001 +36393,2025-03-11T13:07:22.568323-07:00,0.0,10.735234,10735.234 +36394,2025-03-11T13:07:33.304126-07:00,0.0,10.735803,10735.803 +36395,2025-03-11T13:07:44.035295-07:00,0.0,10.731169,10731.169 +36396,2025-03-11T13:07:54.769085-07:00,0.0,10.73379,10733.79 +36397,2025-03-11T13:08:05.498281-07:00,0.0,10.729196,10729.196 +36398,2025-03-11T13:08:16.233086-07:00,0.0,10.734805,10734.805 +36399,2025-03-11T13:08:26.959110-07:00,0.0,10.726024,10726.024 +36400,2025-03-11T13:08:37.699258-07:00,0.0,10.740148,10740.148 +36401,2025-03-11T13:08:48.427086-07:00,0.0,10.727828,10727.828 +36402,2025-03-11T13:08:59.167088-07:00,0.0,10.740002,10740.002 +36403,2025-03-11T13:09:09.898403-07:00,0.0,10.731315,10731.315 +36404,2025-03-11T13:09:20.628264-07:00,0.0,10.729861,10729.861 +36405,2025-03-11T13:09:31.360083-07:00,0.0,10.731819,10731.819 +36406,2025-03-11T13:09:42.097090-07:00,0.0,10.737007,10737.007 +36407,2025-03-11T13:09:52.830463-07:00,0.0,10.733373,10733.373 +36408,2025-03-11T13:10:03.568107-07:00,0.0,10.737644,10737.644 +36409,2025-03-11T13:10:14.293091-07:00,0.0,10.724984,10724.984 +36410,2025-03-11T13:10:25.022269-07:00,0.0,10.729178,10729.178 +36411,2025-03-11T13:10:35.757109-07:00,0.0,10.73484,10734.84 +36412,2025-03-11T13:10:46.499083-07:00,0.0,10.741974,10741.974 +36413,2025-03-11T13:10:57.223084-07:00,0.0,10.724001,10724.001 +36414,2025-03-11T13:11:07.964876-07:00,0.0,10.741792,10741.792 +36415,2025-03-11T13:11:18.694085-07:00,0.0,10.729209,10729.209 +36416,2025-03-11T13:11:29.422088-07:00,0.0,10.728003,10728.003 +36417,2025-03-11T13:11:40.149251-07:00,0.0,10.727163,10727.163 +36418,2025-03-11T13:11:50.876096-07:00,0.0,10.726845,10726.845 +36419,2025-03-11T13:12:01.610085-07:00,0.0,10.733989,10733.989 +36420,2025-03-11T13:12:12.336362-07:00,0.0,10.726277,10726.277 +36421,2025-03-11T13:12:13.188294-07:00,382.0,0.851932,851.932 +36422,2025-03-11T13:12:23.071163-07:00,395.0,9.882869,9882.869 +36423,2025-03-11T13:12:33.805134-07:00,330.0,10.733971,10733.971 +36424,2025-03-11T13:12:44.533270-07:00,273.0,10.728136,10728.136 +36425,2025-03-11T13:12:55.275891-07:00,389.0,10.742621,10742.621 +36426,2025-03-11T13:13:01.324221-07:00,0.0,6.04833,6048.33 +36427,2025-03-11T13:13:06.001087-07:00,0.0,4.676866,4676.866 +36428,2025-03-11T13:13:16.736087-07:00,0.0,10.735,10735.0 +36429,2025-03-11T13:13:27.475261-07:00,0.0,10.739174,10739.174 +36430,2025-03-11T13:13:38.203088-07:00,0.0,10.727827,10727.827 +36431,2025-03-11T13:13:48.936086-07:00,0.0,10.732998,10732.998 +36432,2025-03-11T13:13:59.666191-07:00,0.0,10.730105,10730.105 +36433,2025-03-11T13:14:10.408388-07:00,0.0,10.742197,10742.197 +36434,2025-03-11T13:14:21.131232-07:00,0.0,10.722844,10722.844 +36435,2025-03-11T13:14:31.866087-07:00,0.0,10.734855,10734.855 +36436,2025-03-11T13:14:42.596114-07:00,0.0,10.730027,10730.027 +36437,2025-03-11T13:14:53.332299-07:00,0.0,10.736185,10736.185 +36438,2025-03-11T13:15:04.068089-07:00,0.0,10.73579,10735.79 +36439,2025-03-11T13:15:14.796433-07:00,0.0,10.728344,10728.344 +36440,2025-03-11T13:15:25.532155-07:00,0.0,10.735722,10735.722 +36441,2025-03-11T13:15:36.267088-07:00,0.0,10.734933,10734.933 +36442,2025-03-11T13:15:46.999086-07:00,0.0,10.731998,10731.998 +36443,2025-03-11T13:15:57.735264-07:00,0.0,10.736178,10736.178 +36444,2025-03-11T13:16:08.463482-07:00,0.0,10.728218,10728.218 +36445,2025-03-11T13:16:19.191401-07:00,0.0,10.727919,10727.919 +36446,2025-03-11T13:16:29.933251-07:00,0.0,10.74185,10741.85 +36447,2025-03-11T13:16:40.664085-07:00,0.0,10.730834,10730.834 +36448,2025-03-11T13:16:51.399162-07:00,0.0,10.735077,10735.077 +36449,2025-03-11T13:17:02.134086-07:00,0.0,10.734924,10734.924 +36450,2025-03-11T13:17:12.863266-07:00,0.0,10.72918,10729.18 +36451,2025-03-11T13:17:23.603314-07:00,0.0,10.740048,10740.048 +36452,2025-03-11T13:17:34.334085-07:00,0.0,10.730771,10730.771 +36453,2025-03-11T13:17:45.068357-07:00,0.0,10.734272,10734.272 +36454,2025-03-11T13:17:55.794085-07:00,0.0,10.725728,10725.728 +36455,2025-03-11T13:18:06.532159-07:00,0.0,10.738074,10738.074 +36456,2025-03-11T13:18:17.269079-07:00,0.0,10.73692,10736.92 +36457,2025-03-11T13:18:27.998277-07:00,0.0,10.729198,10729.198 +36458,2025-03-11T13:18:38.737172-07:00,0.0,10.738895,10738.895 +36459,2025-03-11T13:18:49.473184-07:00,0.0,10.736012,10736.012 +36460,2025-03-11T13:19:00.203155-07:00,0.0,10.729971,10729.971 +36461,2025-03-11T13:19:10.937871-07:00,0.0,10.734716,10734.716 +36462,2025-03-11T13:19:21.669116-07:00,0.0,10.731245,10731.245 +36463,2025-03-11T13:19:32.408085-07:00,0.0,10.738969,10738.969 +36464,2025-03-11T13:19:43.138088-07:00,0.0,10.730003,10730.003 +36465,2025-03-11T13:19:53.868332-07:00,0.0,10.730244,10730.244 +36466,2025-03-11T13:20:04.603247-07:00,0.0,10.734915,10734.915 +36467,2025-03-11T13:20:15.339090-07:00,0.0,10.735843,10735.843 +36468,2025-03-11T13:20:26.072346-07:00,0.0,10.733256,10733.256 +36469,2025-03-11T13:20:36.798327-07:00,0.0,10.725981,10725.981 +36470,2025-03-11T13:20:47.533087-07:00,0.0,10.73476,10734.76 +36471,2025-03-11T13:20:58.268113-07:00,0.0,10.735026,10735.026 +36472,2025-03-11T13:21:09.010608-07:00,0.0,10.742495,10742.495 +36473,2025-03-11T13:21:19.739308-07:00,0.0,10.7287,10728.7 +36474,2025-03-11T13:21:30.472169-07:00,0.0,10.732861,10732.861 +36475,2025-03-11T13:21:41.206465-07:00,0.0,10.734296,10734.296 +36476,2025-03-11T13:21:51.942398-07:00,0.0,10.735933,10735.933 +36477,2025-03-11T13:22:02.680088-07:00,0.0,10.73769,10737.69 +36478,2025-03-11T13:22:13.415085-07:00,0.0,10.734997,10734.997 +36479,2025-03-11T13:22:24.152088-07:00,0.0,10.737003,10737.003 +36480,2025-03-11T13:22:34.892088-07:00,0.0,10.74,10740.0 +36481,2025-03-11T13:22:45.631268-07:00,0.0,10.73918,10739.18 +36482,2025-03-11T13:22:56.365136-07:00,0.0,10.733868,10733.868 +36483,2025-03-11T13:23:07.101087-07:00,0.0,10.735951,10735.951 +36484,2025-03-11T13:23:17.837270-07:00,0.0,10.736183,10736.183 +36485,2025-03-11T13:23:28.571284-07:00,0.0,10.734014,10734.014 +36486,2025-03-11T13:23:39.305337-07:00,0.0,10.734053,10734.053 +36487,2025-03-11T13:23:50.035086-07:00,0.0,10.729749,10729.749 +36488,2025-03-11T13:24:00.767616-07:00,0.0,10.73253,10732.53 +36489,2025-03-11T13:24:11.499945-07:00,0.0,10.732329,10732.329 +36490,2025-03-11T13:24:22.233091-07:00,0.0,10.733146,10733.146 +36491,2025-03-11T13:24:32.968115-07:00,0.0,10.735024,10735.024 +36492,2025-03-11T13:24:43.698364-07:00,0.0,10.730249,10730.249 +36493,2025-03-11T13:24:54.430280-07:00,0.0,10.731916,10731.916 +36494,2025-03-11T13:25:05.164821-07:00,0.0,10.734541,10734.541 +36495,2025-03-11T13:25:15.892261-07:00,0.0,10.72744,10727.44 +36496,2025-03-11T13:25:26.626118-07:00,0.0,10.733857,10733.857 +36497,2025-03-11T13:25:37.363119-07:00,0.0,10.737001,10737.001 +36498,2025-03-11T13:25:48.096170-07:00,0.0,10.733051,10733.051 +36499,2025-03-11T13:25:58.830264-07:00,0.0,10.734094,10734.094 +36500,2025-03-11T13:26:09.554250-07:00,0.0,10.723986,10723.986 +36501,2025-03-11T13:26:20.292086-07:00,0.0,10.737836,10737.836 +36502,2025-03-11T13:26:31.016283-07:00,0.0,10.724197,10724.197 +36503,2025-03-11T13:26:41.755234-07:00,0.0,10.738951,10738.951 +36504,2025-03-11T13:26:52.487289-07:00,0.0,10.732055,10732.055 +36505,2025-03-11T13:27:01.913862-07:00,0.0,9.426573,9426.573 +36506,2025-03-11T13:27:03.221524-07:00,0.0,1.307662,1307.662 +36507,2025-03-11T13:27:13.947086-07:00,0.0,10.725562,10725.562 +36508,2025-03-11T13:27:24.681087-07:00,0.0,10.734001,10734.001 +36509,2025-03-11T13:27:35.412163-07:00,0.0,10.731076,10731.076 +36510,2025-03-11T13:27:46.145098-07:00,0.0,10.732935,10732.935 +36511,2025-03-11T13:27:56.885528-07:00,0.0,10.74043,10740.43 +36512,2025-03-11T13:28:07.611187-07:00,0.0,10.725659,10725.659 +36513,2025-03-11T13:28:18.343463-07:00,0.0,10.732276,10732.276 +36514,2025-03-11T13:28:29.081211-07:00,0.0,10.737748,10737.748 +36515,2025-03-11T13:28:39.806174-07:00,0.0,10.724963,10724.963 +36516,2025-03-11T13:28:50.543087-07:00,0.0,10.736913,10736.913 +36517,2025-03-11T13:29:01.275503-07:00,0.0,10.732416,10732.416 +36518,2025-03-11T13:29:11.997087-07:00,0.0,10.721584,10721.584 +36519,2025-03-11T13:29:22.739284-07:00,0.0,10.742197,10742.197 +36520,2025-03-11T13:29:33.462407-07:00,0.0,10.723123,10723.123 +36521,2025-03-11T13:29:44.203085-07:00,0.0,10.740678,10740.678 +36522,2025-03-11T13:29:54.925151-07:00,0.0,10.722066,10722.066 +36523,2025-03-11T13:30:05.665273-07:00,0.0,10.740122,10740.122 +36524,2025-03-11T13:30:16.391088-07:00,0.0,10.725815,10725.815 +36525,2025-03-11T13:30:27.124083-07:00,0.0,10.732995,10732.995 +36526,2025-03-11T13:30:37.856293-07:00,0.0,10.73221,10732.21 +36527,2025-03-11T13:30:48.597511-07:00,0.0,10.741218,10741.218 +36528,2025-03-11T13:30:59.323617-07:00,0.0,10.726106,10726.106 +36529,2025-03-11T13:31:10.056447-07:00,0.0,10.73283,10732.83 +36530,2025-03-11T13:31:20.782112-07:00,0.0,10.725665,10725.665 +36531,2025-03-11T13:31:31.514086-07:00,0.0,10.731974,10731.974 +36532,2025-03-11T13:31:42.244508-07:00,0.0,10.730422,10730.422 +36533,2025-03-11T13:31:52.975160-07:00,0.0,10.730652,10730.652 +36534,2025-03-11T13:32:03.716290-07:00,0.0,10.74113,10741.13 +36535,2025-03-11T13:32:14.446088-07:00,0.0,10.729798,10729.798 +36536,2025-03-11T13:32:25.174265-07:00,0.0,10.728177,10728.177 +36537,2025-03-11T13:32:35.912106-07:00,0.0,10.737841,10737.841 +36538,2025-03-11T13:32:46.640253-07:00,0.0,10.728147,10728.147 +36539,2025-03-11T13:32:57.375309-07:00,0.0,10.735056,10735.056 +36540,2025-03-11T13:33:08.102083-07:00,0.0,10.726774,10726.774 +36541,2025-03-11T13:33:18.840622-07:00,0.0,10.738539,10738.539 +36542,2025-03-11T13:33:29.569083-07:00,0.0,10.728461,10728.461 +36543,2025-03-11T13:33:40.312191-07:00,0.0,10.743108,10743.108 +36544,2025-03-11T13:33:51.041087-07:00,0.0,10.728896,10728.896 +36545,2025-03-11T13:34:01.779088-07:00,0.0,10.738001,10738.001 +36546,2025-03-11T13:34:12.503523-07:00,0.0,10.724435,10724.435 +36547,2025-03-11T13:34:23.241862-07:00,0.0,10.738339,10738.339 +36548,2025-03-11T13:34:33.969912-07:00,0.0,10.72805,10728.05 +36549,2025-03-11T13:34:44.701174-07:00,0.0,10.731262,10731.262 +36550,2025-03-11T13:34:55.431628-07:00,0.0,10.730454,10730.454 +36551,2025-03-11T13:35:06.170202-07:00,0.0,10.738574,10738.574 +36552,2025-03-11T13:35:16.899089-07:00,0.0,10.728887,10728.887 +36553,2025-03-11T13:35:27.636267-07:00,0.0,10.737178,10737.178 +36554,2025-03-11T13:35:38.371343-07:00,0.0,10.735076,10735.076 +36555,2025-03-11T13:35:49.107083-07:00,0.0,10.73574,10735.74 +36556,2025-03-11T13:35:59.844225-07:00,0.0,10.737142,10737.142 +36557,2025-03-11T13:36:10.577310-07:00,0.0,10.733085,10733.085 +36558,2025-03-11T13:36:21.310536-07:00,0.0,10.733226,10733.226 +36559,2025-03-11T13:36:32.051401-07:00,0.0,10.740865,10740.865 +36560,2025-03-11T13:36:42.782089-07:00,0.0,10.730688,10730.688 +36561,2025-03-11T13:36:53.516265-07:00,0.0,10.734176,10734.176 +36562,2025-03-11T13:37:04.255255-07:00,0.0,10.73899,10738.99 +36563,2025-03-11T13:37:14.991087-07:00,0.0,10.735832,10735.832 +36564,2025-03-11T13:37:25.722085-07:00,0.0,10.730998,10730.998 +36565,2025-03-11T13:37:36.452083-07:00,0.0,10.729998,10729.998 +36566,2025-03-11T13:37:47.194248-07:00,0.0,10.742165,10742.165 +36567,2025-03-11T13:37:57.929277-07:00,0.0,10.735029,10735.029 +36568,2025-03-11T13:38:08.663083-07:00,0.0,10.733806,10733.806 +36569,2025-03-11T13:38:19.390288-07:00,0.0,10.727205,10727.205 +36570,2025-03-11T13:38:30.126358-07:00,0.0,10.73607,10736.07 +36571,2025-03-11T13:38:40.868085-07:00,0.0,10.741727,10741.727 +36572,2025-03-11T13:38:51.605286-07:00,0.0,10.737201,10737.201 +36573,2025-03-11T13:39:02.336095-07:00,0.0,10.730809,10730.809 +36574,2025-03-11T13:39:13.074167-07:00,0.0,10.738072,10738.072 +36575,2025-03-11T13:39:23.806412-07:00,0.0,10.732245,10732.245 +36576,2025-03-11T13:39:34.537206-07:00,0.0,10.730794,10730.794 +36577,2025-03-11T13:39:45.274263-07:00,0.0,10.737057,10737.057 +36578,2025-03-11T13:39:56.017266-07:00,0.0,10.743003,10743.003 +36579,2025-03-11T13:40:06.747313-07:00,0.0,10.730047,10730.047 +36580,2025-03-11T13:40:17.485088-07:00,0.0,10.737775,10737.775 +36581,2025-03-11T13:40:28.224081-07:00,0.0,10.738993,10738.993 +36582,2025-03-11T13:40:38.961083-07:00,0.0,10.737002,10737.002 +36583,2025-03-11T13:40:49.686403-07:00,0.0,10.72532,10725.32 +36584,2025-03-11T13:41:00.421086-07:00,0.0,10.734683,10734.683 +36585,2025-03-11T13:41:11.157091-07:00,0.0,10.736005,10736.005 +36586,2025-03-11T13:41:21.899278-07:00,0.0,10.742187,10742.187 +36587,2025-03-11T13:41:32.626086-07:00,0.0,10.726808,10726.808 +36588,2025-03-11T13:41:43.365086-07:00,0.0,10.739,10739.0 +36589,2025-03-11T13:41:54.100089-07:00,0.0,10.735003,10735.003 +36590,2025-03-11T13:42:04.836125-07:00,0.0,10.736036,10736.036 +36591,2025-03-11T13:42:15.567323-07:00,0.0,10.731198,10731.198 +36592,2025-03-11T13:42:26.305084-07:00,0.0,10.737761,10737.761 +36593,2025-03-11T13:42:37.046088-07:00,0.0,10.741004,10741.004 +36594,2025-03-11T13:42:47.778547-07:00,0.0,10.732459,10732.459 +36595,2025-03-11T13:42:58.514268-07:00,0.0,10.735721,10735.721 +36596,2025-03-11T13:43:09.249282-07:00,0.0,10.735014,10735.014 +36597,2025-03-11T13:43:19.984089-07:00,0.0,10.734807,10734.807 +36598,2025-03-11T13:43:30.723293-07:00,0.0,10.739204,10739.204 +36599,2025-03-11T13:43:41.456248-07:00,0.0,10.732955,10732.955 +36600,2025-03-11T13:43:52.190107-07:00,0.0,10.733859,10733.859 +36601,2025-03-11T13:44:02.920458-07:00,0.0,10.730351,10730.351 +36602,2025-03-11T13:44:13.662191-07:00,0.0,10.741733,10741.733 +36603,2025-03-11T13:44:24.392267-07:00,0.0,10.730076,10730.076 +36604,2025-03-11T13:44:35.131778-07:00,0.0,10.739511,10739.511 +36605,2025-03-11T13:44:45.864085-07:00,0.0,10.732307,10732.307 +36606,2025-03-11T13:44:56.603088-07:00,0.0,10.739003,10739.003 +36607,2025-03-11T13:45:07.342081-07:00,0.0,10.738993,10738.993 +36608,2025-03-11T13:45:18.073674-07:00,0.0,10.731593,10731.593 +36609,2025-03-11T13:45:28.808256-07:00,0.0,10.734582,10734.582 +36610,2025-03-11T13:45:39.548088-07:00,0.0,10.739832,10739.832 +36611,2025-03-11T13:45:50.281259-07:00,0.0,10.733171,10733.171 +36612,2025-03-11T13:46:01.015283-07:00,0.0,10.734024,10734.024 +36613,2025-03-11T13:46:11.760906-07:00,0.0,10.745623,10745.623 +36614,2025-03-11T13:46:22.486089-07:00,0.0,10.725183,10725.183 +36615,2025-03-11T13:46:33.223120-07:00,0.0,10.737031,10737.031 +36616,2025-03-11T13:46:43.966090-07:00,0.0,10.74297,10742.97 +36617,2025-03-11T13:46:54.698213-07:00,0.0,10.732123,10732.123 +36618,2025-03-11T13:47:05.428112-07:00,0.0,10.729899,10729.899 +36619,2025-03-11T13:47:16.159491-07:00,0.0,10.731379,10731.379 +36620,2025-03-11T13:47:26.893279-07:00,0.0,10.733788,10733.788 +36621,2025-03-11T13:47:37.631312-07:00,0.0,10.738033,10738.033 +36622,2025-03-11T13:47:48.365089-07:00,0.0,10.733777,10733.777 +36623,2025-03-11T13:47:59.102491-07:00,0.0,10.737402,10737.402 +36624,2025-03-11T13:48:09.841199-07:00,0.0,10.738708,10738.708 +36625,2025-03-11T13:48:20.586251-07:00,0.0,10.745052,10745.052 +36626,2025-03-11T13:48:31.317149-07:00,0.0,10.730898,10730.898 +36627,2025-03-11T13:48:42.056389-07:00,0.0,10.73924,10739.24 +36628,2025-03-11T13:48:52.783478-07:00,0.0,10.727089,10727.089 +36629,2025-03-11T13:49:03.518467-07:00,0.0,10.734989,10734.989 +36630,2025-03-11T13:49:14.249086-07:00,0.0,10.730619,10730.619 +36631,2025-03-11T13:49:24.993304-07:00,0.0,10.744218,10744.218 +36632,2025-03-11T13:49:35.722261-07:00,0.0,10.728957,10728.957 +36633,2025-03-11T13:49:46.460935-07:00,0.0,10.738674,10738.674 +36634,2025-03-11T13:49:57.190085-07:00,0.0,10.72915,10729.15 +36635,2025-03-11T13:50:07.924122-07:00,0.0,10.734037,10734.037 +36636,2025-03-11T13:50:18.665183-07:00,0.0,10.741061,10741.061 +36637,2025-03-11T13:50:29.397267-07:00,0.0,10.732084,10732.084 +36638,2025-03-11T13:50:40.128184-07:00,0.0,10.730917,10730.917 +36639,2025-03-11T13:50:50.873088-07:00,0.0,10.744904,10744.904 +36640,2025-03-11T13:51:01.607082-07:00,0.0,10.733994,10733.994 +36641,2025-03-11T13:51:12.336311-07:00,0.0,10.729229,10729.229 +36642,2025-03-11T13:51:23.083265-07:00,0.0,10.746954,10746.954 +36643,2025-03-11T13:51:33.815145-07:00,0.0,10.73188,10731.88 +36644,2025-03-11T13:51:44.546089-07:00,0.0,10.730944,10730.944 +36645,2025-03-11T13:51:55.282301-07:00,0.0,10.736212,10736.212 +36646,2025-03-11T13:52:06.019498-07:00,0.0,10.737197,10737.197 +36647,2025-03-11T13:52:16.757089-07:00,0.0,10.737591,10737.591 +36648,2025-03-11T13:52:27.485086-07:00,0.0,10.727997,10727.997 +36649,2025-03-11T13:52:38.225117-07:00,0.0,10.740031,10740.031 +36650,2025-03-11T13:52:48.952107-07:00,0.0,10.72699,10726.99 +36651,2025-03-11T13:52:59.689092-07:00,0.0,10.736985,10736.985 +36652,2025-03-11T13:53:10.430086-07:00,0.0,10.740994,10740.994 +36653,2025-03-11T13:53:21.164380-07:00,0.0,10.734294,10734.294 +36654,2025-03-11T13:53:31.898269-07:00,0.0,10.733889,10733.889 +36655,2025-03-11T13:53:42.649740-07:00,0.0,10.751471,10751.471 +36656,2025-03-11T13:53:53.380881-07:00,0.0,10.731141,10731.141 +36657,2025-03-11T13:54:04.114842-07:00,0.0,10.733961,10733.961 +36658,2025-03-11T13:54:14.853692-07:00,0.0,10.73885,10738.85 +36659,2025-03-11T13:54:25.583795-07:00,0.0,10.730103,10730.103 +36660,2025-03-11T13:54:36.315194-07:00,0.0,10.731399,10731.399 +36661,2025-03-11T13:54:47.047505-07:00,0.0,10.732311,10732.311 +36662,2025-03-11T13:54:57.783934-07:00,0.0,10.736429,10736.429 +36663,2025-03-11T13:55:08.518663-07:00,0.0,10.734729,10734.729 +36664,2025-03-11T13:55:19.250034-07:00,0.0,10.731371,10731.371 +36665,2025-03-11T13:55:29.982151-07:00,0.0,10.732117,10732.117 +36666,2025-03-11T13:55:40.714667-07:00,0.0,10.732516,10732.516 +36667,2025-03-11T13:55:51.445440-07:00,0.0,10.730773,10730.773 +36668,2025-03-11T13:56:02.183794-07:00,0.0,10.738354,10738.354 +36669,2025-03-11T13:56:12.911664-07:00,0.0,10.72787,10727.87 +36670,2025-03-11T13:56:23.642696-07:00,0.0,10.731032,10731.032 +36671,2025-03-11T13:56:34.384140-07:00,0.0,10.741444,10741.444 +36672,2025-03-11T13:56:45.112783-07:00,0.0,10.728643,10728.643 +36673,2025-03-11T13:56:55.850672-07:00,0.0,10.737889,10737.889 +36674,2025-03-11T13:57:06.577855-07:00,0.0,10.727183,10727.183 +36675,2025-03-11T13:57:17.310446-07:00,0.0,10.732591,10732.591 +36676,2025-03-11T13:57:28.044662-07:00,0.0,10.734216,10734.216 +36677,2025-03-11T13:57:38.779032-07:00,0.0,10.73437,10734.37 +36678,2025-03-11T13:57:49.509860-07:00,0.0,10.730828,10730.828 +36679,2025-03-11T13:58:00.249182-07:00,0.0,10.739322,10739.322 +36680,2025-03-11T13:58:10.983774-07:00,0.0,10.734592,10734.592 +36681,2025-03-11T13:58:21.713885-07:00,0.0,10.730111,10730.111 +36682,2025-03-11T13:58:32.447839-07:00,0.0,10.733954,10733.954 +36683,2025-03-11T13:58:43.175731-07:00,0.0,10.727892,10727.892 +36684,2025-03-11T13:58:53.905665-07:00,0.0,10.729934,10729.934 +36685,2025-03-11T13:59:04.643747-07:00,0.0,10.738082,10738.082 +36686,2025-03-11T13:59:15.383020-07:00,0.0,10.739273,10739.273 +36687,2025-03-11T13:59:26.115876-07:00,0.0,10.732856,10732.856 +36688,2025-03-11T13:59:36.849674-07:00,0.0,10.733798,10733.798 +36689,2025-03-11T13:59:47.576850-07:00,0.0,10.727176,10727.176 +36690,2025-03-11T13:59:58.311670-07:00,0.0,10.73482,10734.82 +36691,2025-03-11T14:00:09.055022-07:00,0.0,10.743352,10743.352 +36692,2025-03-11T14:00:19.783665-07:00,0.0,10.728643,10728.643 +36693,2025-03-11T14:00:30.523965-07:00,0.0,10.7403,10740.3 +36694,2025-03-11T14:00:41.253719-07:00,0.0,10.729754,10729.754 +36695,2025-03-11T14:00:51.993728-07:00,0.0,10.740009,10740.009 +36696,2025-03-11T14:01:02.727693-07:00,0.0,10.733965,10733.965 +36697,2025-03-11T14:01:13.462632-07:00,0.0,10.734939,10734.939 +36698,2025-03-11T14:01:24.194488-07:00,0.0,10.731856,10731.856 +36699,2025-03-11T14:01:34.925749-07:00,0.0,10.731261,10731.261 +36700,2025-03-11T14:01:45.654877-07:00,0.0,10.729128,10729.128 +36701,2025-03-11T14:01:56.394835-07:00,0.0,10.739958,10739.958 +36702,2025-03-11T14:02:07.127813-07:00,0.0,10.732978,10732.978 +36703,2025-03-11T14:02:17.859724-07:00,0.0,10.731911,10731.911 +36704,2025-03-11T14:02:28.585830-07:00,0.0,10.726106,10726.106 +36705,2025-03-11T14:02:39.319730-07:00,0.0,10.7339,10733.9 +36706,2025-03-11T14:02:50.061875-07:00,0.0,10.742145,10742.145 +36707,2025-03-11T14:03:00.792666-07:00,0.0,10.730791,10730.791 +36708,2025-03-11T14:03:11.518887-07:00,0.0,10.726221,10726.221 +36709,2025-03-11T14:03:22.256666-07:00,0.0,10.737779,10737.779 +36710,2025-03-11T14:03:32.985668-07:00,0.0,10.729002,10729.002 +36711,2025-03-11T14:03:43.726027-07:00,0.0,10.740359,10740.359 +36712,2025-03-11T14:03:54.457348-07:00,0.0,10.731321,10731.321 +36713,2025-03-11T14:04:05.187666-07:00,0.0,10.730318,10730.318 +36714,2025-03-11T14:04:15.925806-07:00,0.0,10.73814,10738.14 +36715,2025-03-11T14:04:26.660666-07:00,0.0,10.73486,10734.86 +36716,2025-03-11T14:04:37.387672-07:00,0.0,10.727006,10727.006 +36717,2025-03-11T14:04:48.118877-07:00,0.0,10.731205,10731.205 +36718,2025-03-11T14:04:58.857362-07:00,0.0,10.738485,10738.485 +36719,2025-03-11T14:05:09.593868-07:00,0.0,10.736506,10736.506 +36720,2025-03-11T14:05:20.326699-07:00,0.0,10.732831,10732.831 +36721,2025-03-11T14:05:31.056728-07:00,0.0,10.730029,10730.029 +36722,2025-03-11T14:05:41.790687-07:00,0.0,10.733959,10733.959 +36723,2025-03-11T14:05:52.532859-07:00,0.0,10.742172,10742.172 +36724,2025-03-11T14:06:03.259919-07:00,0.0,10.72706,10727.06 +36725,2025-03-11T14:06:13.997667-07:00,0.0,10.737748,10737.748 +36726,2025-03-11T14:06:24.735856-07:00,0.0,10.738189,10738.189 +36727,2025-03-11T14:06:35.470844-07:00,0.0,10.734988,10734.988 +36728,2025-03-11T14:06:46.196680-07:00,0.0,10.725836,10725.836 +36729,2025-03-11T14:06:56.928984-07:00,0.0,10.732304,10732.304 +36730,2025-03-11T14:07:07.663849-07:00,0.0,10.734865,10734.865 +36731,2025-03-11T14:07:18.396813-07:00,0.0,10.732964,10732.964 +36732,2025-03-11T14:07:29.129665-07:00,0.0,10.732852,10732.852 +36733,2025-03-11T14:07:39.858958-07:00,0.0,10.729293,10729.293 +36734,2025-03-11T14:07:50.596500-07:00,0.0,10.737542,10737.542 +36735,2025-03-11T14:08:01.334669-07:00,0.0,10.738169,10738.169 +36736,2025-03-11T14:08:12.071772-07:00,0.0,10.737103,10737.103 +36737,2025-03-11T14:08:22.804669-07:00,0.0,10.732897,10732.897 +36738,2025-03-11T14:08:33.541058-07:00,0.0,10.736389,10736.389 +36739,2025-03-11T14:08:44.270666-07:00,0.0,10.729608,10729.608 +36740,2025-03-11T14:08:55.012864-07:00,0.0,10.742198,10742.198 +36741,2025-03-11T14:09:05.748670-07:00,0.0,10.735806,10735.806 +36742,2025-03-11T14:09:16.472381-07:00,0.0,10.723711,10723.711 +36743,2025-03-11T14:09:27.214833-07:00,0.0,10.742452,10742.452 +36744,2025-03-11T14:09:37.947758-07:00,0.0,10.732925,10732.925 +36745,2025-03-11T14:09:48.681956-07:00,0.0,10.734198,10734.198 +36746,2025-03-11T14:09:59.405245-07:00,0.0,10.723289,10723.289 +36747,2025-03-11T14:10:10.147663-07:00,0.0,10.742418,10742.418 +36748,2025-03-11T14:10:20.876851-07:00,0.0,10.729188,10729.188 +36749,2025-03-11T14:10:31.609076-07:00,0.0,10.732225,10732.225 +36750,2025-03-11T14:10:42.351873-07:00,0.0,10.742797,10742.797 +36751,2025-03-11T14:10:53.081871-07:00,0.0,10.729998,10729.998 +36752,2025-03-11T14:11:03.822668-07:00,0.0,10.740797,10740.797 +36753,2025-03-11T14:11:14.556884-07:00,0.0,10.734216,10734.216 +36754,2025-03-11T14:11:25.296836-07:00,0.0,10.739952,10739.952 +36755,2025-03-11T14:11:36.025957-07:00,0.0,10.729121,10729.121 +36756,2025-03-11T14:11:46.760667-07:00,0.0,10.73471,10734.71 +36757,2025-03-11T14:11:57.502903-07:00,0.0,10.742236,10742.236 +36758,2025-03-11T14:12:08.232850-07:00,0.0,10.729947,10729.947 +36759,2025-03-11T14:12:18.965740-07:00,0.0,10.73289,10732.89 +36760,2025-03-11T14:12:29.705676-07:00,0.0,10.739936,10739.936 +36761,2025-03-11T14:12:40.437665-07:00,0.0,10.731989,10731.989 +36762,2025-03-11T14:12:51.177822-07:00,0.0,10.740157,10740.157 +36763,2025-03-11T14:13:01.909890-07:00,0.0,10.732068,10732.068 +36764,2025-03-11T14:13:12.638874-07:00,0.0,10.728984,10728.984 +36765,2025-03-11T14:13:23.376843-07:00,0.0,10.737969,10737.969 +36766,2025-03-11T14:13:34.105366-07:00,0.0,10.728523,10728.523 +36767,2025-03-11T14:13:44.841666-07:00,0.0,10.7363,10736.3 +36768,2025-03-11T14:13:55.576872-07:00,0.0,10.735206,10735.206 +36769,2025-03-11T14:14:06.303984-07:00,0.0,10.727112,10727.112 +36770,2025-03-11T14:14:17.044731-07:00,0.0,10.740747,10740.747 +36771,2025-03-11T14:14:27.771670-07:00,0.0,10.726939,10726.939 +36772,2025-03-11T14:14:38.505820-07:00,0.0,10.73415,10734.15 +36773,2025-03-11T14:14:49.238726-07:00,0.0,10.732906,10732.906 +36774,2025-03-11T14:14:59.972695-07:00,0.0,10.733969,10733.969 +36775,2025-03-11T14:15:10.709694-07:00,0.0,10.736999,10736.999 +36776,2025-03-11T14:15:21.439997-07:00,0.0,10.730303,10730.303 +36777,2025-03-11T14:15:32.176430-07:00,0.0,10.736433,10736.433 +36778,2025-03-11T14:15:42.901251-07:00,0.0,10.724821,10724.821 +36779,2025-03-11T14:15:53.639840-07:00,0.0,10.738589,10738.589 +36780,2025-03-11T14:16:04.371850-07:00,0.0,10.73201,10732.01 +36781,2025-03-11T14:16:15.101903-07:00,0.0,10.730053,10730.053 +36782,2025-03-11T14:16:25.834665-07:00,0.0,10.732762,10732.762 +36783,2025-03-11T14:16:36.569675-07:00,0.0,10.73501,10735.01 +36784,2025-03-11T14:16:47.304058-07:00,0.0,10.734383,10734.383 +36785,2025-03-11T14:16:58.047805-07:00,0.0,10.743747,10743.747 +36786,2025-03-11T14:17:08.775667-07:00,0.0,10.727862,10727.862 +36787,2025-03-11T14:17:19.513860-07:00,0.0,10.738193,10738.193 +36788,2025-03-11T14:17:30.243127-07:00,0.0,10.729267,10729.267 +36789,2025-03-11T14:17:40.985665-07:00,0.0,10.742538,10742.538 +36790,2025-03-11T14:17:51.714860-07:00,0.0,10.729195,10729.195 +36791,2025-03-11T14:18:02.457669-07:00,0.0,10.742809,10742.809 +36792,2025-03-11T14:18:13.194033-07:00,0.0,10.736364,10736.364 +36793,2025-03-11T14:18:23.926690-07:00,0.0,10.732657,10732.657 +36794,2025-03-11T14:18:34.659668-07:00,0.0,10.732978,10732.978 +36795,2025-03-11T14:18:45.399788-07:00,0.0,10.74012,10740.12 +36796,2025-03-11T14:18:56.141061-07:00,0.0,10.741273,10741.273 +36797,2025-03-11T14:19:06.871933-07:00,0.0,10.730872,10730.872 +36798,2025-03-11T14:19:17.605737-07:00,0.0,10.733804,10733.804 +36799,2025-03-11T14:19:28.342667-07:00,0.0,10.73693,10736.93 +36800,2025-03-11T14:19:39.076671-07:00,0.0,10.734004,10734.004 +36801,2025-03-11T14:19:49.819820-07:00,0.0,10.743149,10743.149 +36802,2025-03-11T14:20:00.546791-07:00,0.0,10.726971,10726.971 +36803,2025-03-11T14:20:11.286871-07:00,0.0,10.74008,10740.08 +36804,2025-03-11T14:20:22.021800-07:00,0.0,10.734929,10734.929 +36805,2025-03-11T14:20:32.751846-07:00,0.0,10.730046,10730.046 +36806,2025-03-11T14:20:43.487666-07:00,0.0,10.73582,10735.82 +36807,2025-03-11T14:20:54.225667-07:00,0.0,10.738001,10738.001 +36808,2025-03-11T14:21:04.960729-07:00,0.0,10.735062,10735.062 +36809,2025-03-11T14:21:15.693865-07:00,0.0,10.733136,10733.136 +36810,2025-03-11T14:21:26.427999-07:00,0.0,10.734134,10734.134 +36811,2025-03-11T14:21:37.164854-07:00,0.0,10.736855,10736.855 +36812,2025-03-11T14:21:47.891872-07:00,0.0,10.727018,10727.018 +36813,2025-03-11T14:21:58.633848-07:00,0.0,10.741976,10741.976 +36814,2025-03-11T14:22:09.365669-07:00,0.0,10.731821,10731.821 +36815,2025-03-11T14:22:20.104790-07:00,0.0,10.739121,10739.121 +36816,2025-03-11T14:22:30.839664-07:00,0.0,10.734874,10734.874 +36817,2025-03-11T14:22:41.579669-07:00,0.0,10.740005,10740.005 +36818,2025-03-11T14:22:52.311851-07:00,0.0,10.732182,10732.182 +36819,2025-03-11T14:23:03.040868-07:00,0.0,10.729017,10729.017 +36820,2025-03-11T14:23:13.773838-07:00,0.0,10.73297,10732.97 +36821,2025-03-11T14:23:24.516402-07:00,0.0,10.742564,10742.564 +36822,2025-03-11T14:23:35.241669-07:00,0.0,10.725267,10725.267 +36823,2025-03-11T14:23:45.979669-07:00,0.0,10.738,10738.0 +36824,2025-03-11T14:23:56.711668-07:00,0.0,10.731999,10731.999 +36825,2025-03-11T14:24:07.445854-07:00,0.0,10.734186,10734.186 +36826,2025-03-11T14:24:18.176661-07:00,0.0,10.730807,10730.807 +36827,2025-03-11T14:24:28.918966-07:00,0.0,10.742305,10742.305 +36828,2025-03-11T14:24:39.647088-07:00,0.0,10.728122,10728.122 +36829,2025-03-11T14:24:50.384852-07:00,0.0,10.737764,10737.764 +36830,2025-03-11T14:25:01.119875-07:00,0.0,10.735023,10735.023 +36831,2025-03-11T14:25:11.853715-07:00,0.0,10.73384,10733.84 +36832,2025-03-11T14:25:22.582830-07:00,0.0,10.729115,10729.115 +36833,2025-03-11T14:25:33.326856-07:00,0.0,10.744026,10744.026 +36834,2025-03-11T14:25:44.052661-07:00,0.0,10.725805,10725.805 +36835,2025-03-11T14:25:54.791874-07:00,0.0,10.739213,10739.213 +36836,2025-03-11T14:26:05.526146-07:00,0.0,10.734272,10734.272 +36837,2025-03-11T14:26:16.251668-07:00,0.0,10.725522,10725.522 +36838,2025-03-11T14:26:26.991761-07:00,0.0,10.740093,10740.093 +36839,2025-03-11T14:26:37.715740-07:00,0.0,10.723979,10723.979 +36840,2025-03-11T14:26:48.454854-07:00,0.0,10.739114,10739.114 +36841,2025-03-11T14:26:59.182665-07:00,0.0,10.727811,10727.811 +36842,2025-03-11T14:27:09.918719-07:00,0.0,10.736054,10736.054 +36843,2025-03-11T14:27:20.646850-07:00,0.0,10.728131,10728.131 +36844,2025-03-11T14:27:31.384670-07:00,0.0,10.73782,10737.82 +36845,2025-03-11T14:27:42.111884-07:00,0.0,10.727214,10727.214 +36846,2025-03-11T14:27:52.847721-07:00,0.0,10.735837,10735.837 +36847,2025-03-11T14:28:03.582924-07:00,0.0,10.735203,10735.203 +36848,2025-03-11T14:28:14.313662-07:00,0.0,10.730738,10730.738 +36849,2025-03-11T14:28:25.049669-07:00,0.0,10.736007,10736.007 +36850,2025-03-11T14:28:35.778056-07:00,0.0,10.728387,10728.387 +36851,2025-03-11T14:28:46.507666-07:00,0.0,10.72961,10729.61 +36852,2025-03-11T14:28:57.247667-07:00,0.0,10.740001,10740.001 +36853,2025-03-11T14:29:07.978306-07:00,0.0,10.730639,10730.639 +36854,2025-03-11T14:29:18.709694-07:00,0.0,10.731388,10731.388 +36855,2025-03-11T14:29:29.441883-07:00,0.0,10.732189,10732.189 +36856,2025-03-11T14:29:40.178759-07:00,0.0,10.736876,10736.876 +36857,2025-03-11T14:29:50.916355-07:00,0.0,10.737596,10737.596 +36858,2025-03-11T14:30:01.642666-07:00,0.0,10.726311,10726.311 +36859,2025-03-11T14:30:12.374668-07:00,0.0,10.732002,10732.002 +36860,2025-03-11T14:30:23.101071-07:00,0.0,10.726403,10726.403 +36861,2025-03-11T14:30:33.838320-07:00,0.0,10.737249,10737.249 +36862,2025-03-11T14:30:44.567729-07:00,0.0,10.729409,10729.409 +36863,2025-03-11T14:30:55.301568-07:00,0.0,10.733839,10733.839 +36864,2025-03-11T14:31:06.035026-07:00,0.0,10.733458,10733.458 +36865,2025-03-11T14:31:16.767866-07:00,0.0,10.73284,10732.84 +36866,2025-03-11T14:31:27.496666-07:00,0.0,10.7288,10728.8 +36867,2025-03-11T14:31:38.231851-07:00,0.0,10.735185,10735.185 +36868,2025-03-11T14:31:48.961666-07:00,0.0,10.729815,10729.815 +36869,2025-03-11T14:31:59.691670-07:00,0.0,10.730004,10730.004 +36870,2025-03-11T14:32:10.425848-07:00,0.0,10.734178,10734.178 +36871,2025-03-11T14:32:21.166404-07:00,0.0,10.740556,10740.556 +36872,2025-03-11T14:32:31.896669-07:00,0.0,10.730265,10730.265 +36873,2025-03-11T14:32:42.622881-07:00,0.0,10.726212,10726.212 +36874,2025-03-11T14:32:53.361842-07:00,0.0,10.738961,10738.961 +36875,2025-03-11T14:33:04.091668-07:00,0.0,10.729826,10729.826 +36876,2025-03-11T14:33:14.831725-07:00,0.0,10.740057,10740.057 +36877,2025-03-11T14:33:25.562845-07:00,0.0,10.73112,10731.12 +36878,2025-03-11T14:33:36.288872-07:00,0.0,10.726027,10726.027 +36879,2025-03-11T14:33:47.024666-07:00,0.0,10.735794,10735.794 +36880,2025-03-11T14:33:57.765969-07:00,0.0,10.741303,10741.303 +36881,2025-03-11T14:34:08.494865-07:00,0.0,10.728896,10728.896 +36882,2025-03-11T14:34:19.228692-07:00,0.0,10.733827,10733.827 +36883,2025-03-11T14:34:29.966668-07:00,0.0,10.737976,10737.976 +36884,2025-03-11T14:34:40.706663-07:00,0.0,10.739995,10739.995 +36885,2025-03-11T14:34:51.438077-07:00,0.0,10.731414,10731.414 +36886,2025-03-11T14:35:02.175902-07:00,0.0,10.737825,10737.825 +36887,2025-03-11T14:35:12.915099-07:00,0.0,10.739197,10739.197 +36888,2025-03-11T14:35:23.644158-07:00,0.0,10.729059,10729.059 +36889,2025-03-11T14:35:34.377696-07:00,0.0,10.733538,10733.538 +36890,2025-03-11T14:35:45.122751-07:00,0.0,10.745055,10745.055 +36891,2025-03-11T14:35:55.849842-07:00,0.0,10.727091,10727.091 +36892,2025-03-11T14:36:06.586870-07:00,0.0,10.737028,10737.028 +36893,2025-03-11T14:36:17.330669-07:00,0.0,10.743799,10743.799 +36894,2025-03-11T14:36:28.068128-07:00,0.0,10.737459,10737.459 +36895,2025-03-11T14:36:38.797956-07:00,0.0,10.729828,10729.828 +36896,2025-03-11T14:36:49.535780-07:00,0.0,10.737824,10737.824 +36897,2025-03-11T14:37:00.273692-07:00,0.0,10.737912,10737.912 +36898,2025-03-11T14:37:11.013669-07:00,0.0,10.739977,10739.977 +36899,2025-03-11T14:37:21.749881-07:00,0.0,10.736212,10736.212 +36900,2025-03-11T14:37:32.477829-07:00,0.0,10.727948,10727.948 +36901,2025-03-11T14:37:43.219668-07:00,0.0,10.741839,10741.839 +36902,2025-03-11T14:37:53.952689-07:00,0.0,10.733021,10733.021 +36903,2025-03-11T14:38:04.685487-07:00,0.0,10.732798,10732.798 +36904,2025-03-11T14:38:15.424233-07:00,0.0,10.738746,10738.746 +36905,2025-03-11T14:38:26.159666-07:00,0.0,10.735433,10735.433 +36906,2025-03-11T14:38:36.895669-07:00,0.0,10.736003,10736.003 +36907,2025-03-11T14:38:47.638667-07:00,0.0,10.742998,10742.998 +36908,2025-03-11T14:38:58.371871-07:00,0.0,10.733204,10733.204 +36909,2025-03-11T14:39:09.114849-07:00,0.0,10.742978,10742.978 +36910,2025-03-11T14:39:19.842855-07:00,0.0,10.728006,10728.006 +36911,2025-03-11T14:39:30.586870-07:00,0.0,10.744015,10744.015 +36912,2025-03-11T14:39:41.323669-07:00,0.0,10.736799,10736.799 +36913,2025-03-11T14:39:52.060955-07:00,0.0,10.737286,10737.286 +36914,2025-03-11T14:40:02.793666-07:00,0.0,10.732711,10732.711 +36915,2025-03-11T14:40:13.531732-07:00,0.0,10.738066,10738.066 +36916,2025-03-11T14:40:24.272905-07:00,0.0,10.741173,10741.173 +36917,2025-03-11T14:40:35.004672-07:00,0.0,10.731767,10731.767 +36918,2025-03-11T14:40:45.743264-07:00,0.0,10.738592,10738.592 +36919,2025-03-11T14:40:56.481973-07:00,0.0,10.738709,10738.709 +36920,2025-03-11T14:41:07.217711-07:00,0.0,10.735738,10735.738 +36921,2025-03-11T14:41:17.962666-07:00,0.0,10.744955,10744.955 +36922,2025-03-11T14:41:28.698838-07:00,0.0,10.736172,10736.172 +36923,2025-03-11T14:41:39.427845-07:00,0.0,10.729007,10729.007 +36924,2025-03-11T14:41:50.169443-07:00,0.0,10.741598,10741.598 +36925,2025-03-11T14:42:00.903871-07:00,0.0,10.734428,10734.428 +36926,2025-03-11T14:42:11.641672-07:00,0.0,10.737801,10737.801 +36927,2025-03-11T14:42:22.370886-07:00,0.0,10.729214,10729.214 +36928,2025-03-11T14:42:33.113850-07:00,0.0,10.742964,10742.964 +36929,2025-03-11T14:42:43.844670-07:00,0.0,10.73082,10730.82 +36930,2025-03-11T14:42:54.586827-07:00,0.0,10.742157,10742.157 +36931,2025-03-11T14:43:05.324672-07:00,0.0,10.737845,10737.845 +36932,2025-03-11T14:43:16.061670-07:00,0.0,10.736998,10736.998 +36933,2025-03-11T14:43:26.797280-07:00,0.0,10.73561,10735.61 +36934,2025-03-11T14:43:37.528672-07:00,0.0,10.731392,10731.392 +36935,2025-03-11T14:43:48.272674-07:00,0.0,10.744002,10744.002 +36936,2025-03-11T14:43:59.005673-07:00,0.0,10.732999,10732.999 +36937,2025-03-11T14:44:09.738861-07:00,0.0,10.733188,10733.188 +36938,2025-03-11T14:44:20.479693-07:00,0.0,10.740832,10740.832 +36939,2025-03-11T14:44:31.220663-07:00,0.0,10.74097,10740.97 +36940,2025-03-11T14:44:41.947746-07:00,0.0,10.727083,10727.083 +36941,2025-03-11T14:44:52.694074-07:00,0.0,10.746328,10746.328 +36942,2025-03-11T14:45:03.422381-07:00,0.0,10.728307,10728.307 +36943,2025-03-11T14:45:14.165695-07:00,0.0,10.743314,10743.314 +36944,2025-03-11T14:45:24.896824-07:00,0.0,10.731129,10731.129 +36945,2025-03-11T14:45:35.635670-07:00,0.0,10.738846,10738.846 +36946,2025-03-11T14:45:46.371753-07:00,0.0,10.736083,10736.083 +36947,2025-03-11T14:45:57.096667-07:00,0.0,10.724914,10724.914 +36948,2025-03-11T14:45:58.041020-07:00,0.0,0.944353,944.353 +36949,2025-03-11T14:46:07.837879-07:00,0.0,9.796859,9796.859 +36950,2025-03-11T14:46:18.571864-07:00,0.0,10.733985,10733.985 +36951,2025-03-11T14:46:29.311892-07:00,0.0,10.740028,10740.028 +36952,2025-03-11T14:46:40.044666-07:00,0.0,10.732774,10732.774 +36953,2025-03-11T14:46:50.785738-07:00,0.0,10.741072,10741.072 +36954,2025-03-11T14:47:01.521664-07:00,0.0,10.735926,10735.926 +36955,2025-03-11T14:47:12.253662-07:00,0.0,10.731998,10731.998 +36956,2025-03-11T14:47:22.994057-07:00,0.0,10.740395,10740.395 +36957,2025-03-11T14:47:33.730690-07:00,0.0,10.736633,10736.633 +36958,2025-03-11T14:47:44.465702-07:00,0.0,10.735012,10735.012 +36959,2025-03-11T14:47:55.199788-07:00,0.0,10.734086,10734.086 +36960,2025-03-11T14:48:05.936691-07:00,0.0,10.736903,10736.903 +36961,2025-03-11T14:48:16.673221-07:00,0.0,10.73653,10736.53 +36962,2025-03-11T14:48:27.400667-07:00,0.0,10.727446,10727.446 +36963,2025-03-11T14:48:38.135131-07:00,0.0,10.734464,10734.464 +36964,2025-03-11T14:48:48.870884-07:00,0.0,10.735753,10735.753 +36965,2025-03-11T14:48:59.612459-07:00,0.0,10.741575,10741.575 +36966,2025-03-11T14:49:10.342879-07:00,0.0,10.73042,10730.42 +36967,2025-03-11T14:49:21.078695-07:00,0.0,10.735816,10735.816 +36968,2025-03-11T14:49:31.811846-07:00,0.0,10.733151,10733.151 +36969,2025-03-11T14:49:42.551192-07:00,0.0,10.739346,10739.346 +36970,2025-03-11T14:49:53.280667-07:00,0.0,10.729475,10729.475 +36971,2025-03-11T14:50:04.021666-07:00,0.0,10.740999,10740.999 +36972,2025-03-11T14:50:14.746902-07:00,0.0,10.725236,10725.236 +36973,2025-03-11T14:50:25.488347-07:00,0.0,10.741445,10741.445 +36974,2025-03-11T14:50:36.220696-07:00,0.0,10.732349,10732.349 +36975,2025-03-11T14:50:46.951951-07:00,0.0,10.731255,10731.255 +36976,2025-03-11T14:50:57.693133-07:00,0.0,10.741182,10741.182 +36977,2025-03-11T14:51:08.426166-07:00,0.0,10.733033,10733.033 +36978,2025-03-11T14:51:19.159897-07:00,0.0,10.733731,10733.731 +36979,2025-03-11T14:51:29.886737-07:00,0.0,10.72684,10726.84 +36980,2025-03-11T14:51:40.615732-07:00,0.0,10.728995,10728.995 +36981,2025-03-11T14:51:51.347749-07:00,0.0,10.732017,10732.017 +36982,2025-03-11T14:52:02.079019-07:00,0.0,10.73127,10731.27 +36983,2025-03-11T14:52:12.818838-07:00,0.0,10.739819,10739.819 +36984,2025-03-11T14:52:23.545669-07:00,0.0,10.726831,10726.831 +36985,2025-03-11T14:52:34.283769-07:00,0.0,10.7381,10738.1 +36986,2025-03-11T14:52:45.020671-07:00,0.0,10.736902,10736.902 +36987,2025-03-11T14:52:55.755103-07:00,0.0,10.734432,10734.432 +36988,2025-03-11T14:53:06.483669-07:00,0.0,10.728566,10728.566 +36989,2025-03-11T14:53:17.220679-07:00,0.0,10.73701,10737.01 +36990,2025-03-11T14:53:27.953875-07:00,0.0,10.733196,10733.196 +36991,2025-03-11T14:53:38.757646-07:00,0.0,10.803771,10803.771 +36992,2025-03-11T14:53:49.483515-07:00,0.0,10.725869,10725.869 +36993,2025-03-11T14:54:00.217540-07:00,0.0,10.734025,10734.025 +36994,2025-03-11T14:54:10.951700-07:00,0.0,10.73416,10734.16 +36995,2025-03-11T14:54:21.682514-07:00,0.0,10.730814,10730.814 +36996,2025-03-11T14:54:32.423560-07:00,0.0,10.741046,10741.046 +36997,2025-03-11T14:54:43.152508-07:00,0.0,10.728948,10728.948 +36998,2025-03-11T14:54:53.884206-07:00,0.0,10.731698,10731.698 +36999,2025-03-11T14:55:04.621510-07:00,0.0,10.737304,10737.304 +37000,2025-03-11T14:55:15.353689-07:00,0.0,10.732179,10732.179 +37001,2025-03-11T14:55:26.087514-07:00,0.0,10.733825,10733.825 +37002,2025-03-11T14:55:36.829650-07:00,0.0,10.742136,10742.136 +37003,2025-03-11T14:55:47.554495-07:00,0.0,10.724845,10724.845 +37004,2025-03-11T14:55:58.290671-07:00,0.0,10.736176,10736.176 +37005,2025-03-11T14:56:09.029922-07:00,0.0,10.739251,10739.251 +37006,2025-03-11T14:56:19.763365-07:00,0.0,10.733443,10733.443 +37007,2025-03-11T14:56:30.492513-07:00,0.0,10.729148,10729.148 +37008,2025-03-11T14:56:41.225732-07:00,0.0,10.733219,10733.219 +37009,2025-03-11T14:56:51.964584-07:00,0.0,10.738852,10738.852 +37010,2025-03-11T14:57:02.701334-07:00,0.0,10.73675,10736.75 +37011,2025-03-11T14:57:13.437511-07:00,0.0,10.736177,10736.177 +37012,2025-03-11T14:57:24.174606-07:00,0.0,10.737095,10737.095 +37013,2025-03-11T14:57:34.902881-07:00,0.0,10.728275,10728.275 +37014,2025-03-11T14:57:45.638311-07:00,0.0,10.73543,10735.43 +37015,2025-03-11T14:57:56.362514-07:00,0.0,10.724203,10724.203 +37016,2025-03-11T14:58:07.100033-07:00,0.0,10.737519,10737.519 +37017,2025-03-11T14:58:17.835675-07:00,0.0,10.735642,10735.642 +37018,2025-03-11T14:58:28.560574-07:00,0.0,10.724899,10724.899 +37019,2025-03-11T14:58:39.297249-07:00,0.0,10.736675,10736.675 +37020,2025-03-11T14:58:50.028701-07:00,0.0,10.731452,10731.452 +37021,2025-03-11T14:59:00.756514-07:00,0.0,10.727813,10727.813 +37022,2025-03-11T14:59:11.494510-07:00,0.0,10.737996,10737.996 +37023,2025-03-11T14:59:22.220699-07:00,0.0,10.726189,10726.189 +37024,2025-03-11T14:59:32.961647-07:00,0.0,10.740948,10740.948 +37025,2025-03-11T14:59:43.686511-07:00,0.0,10.724864,10724.864 +37026,2025-03-11T14:59:54.415903-07:00,0.0,10.729392,10729.392 +37027,2025-03-11T15:00:05.146717-07:00,0.0,10.730814,10730.814 +37028,2025-03-11T15:00:15.877510-07:00,0.0,10.730793,10730.793 +37029,2025-03-11T15:00:26.619513-07:00,0.0,10.742003,10742.003 +37030,2025-03-11T15:00:37.348924-07:00,0.0,10.729411,10729.411 +37031,2025-03-11T15:00:48.084745-07:00,0.0,10.735821,10735.821 +37032,2025-03-11T15:00:58.823726-07:00,0.0,10.738981,10738.981 +37033,2025-03-11T15:01:09.548056-07:00,0.0,10.72433,10724.33 +37034,2025-03-11T15:01:20.287682-07:00,0.0,10.739626,10739.626 +37035,2025-03-11T15:01:31.010813-07:00,0.0,10.723131,10723.131 +37036,2025-03-11T15:01:41.748656-07:00,0.0,10.737843,10737.843 +37037,2025-03-11T15:01:52.483669-07:00,0.0,10.735013,10735.013 +37038,2025-03-11T15:02:03.210721-07:00,0.0,10.727052,10727.052 +37039,2025-03-11T15:02:09.939442-07:00,0.0,6.728721,6728.721 +37040,2025-03-11T15:02:13.941734-07:00,0.0,4.002292,4002.292 +37041,2025-03-11T15:02:24.669700-07:00,0.0,10.727966,10727.966 +37042,2025-03-11T15:02:35.408511-07:00,0.0,10.738811,10738.811 +37043,2025-03-11T15:02:46.145573-07:00,0.0,10.737062,10737.062 +37044,2025-03-11T15:02:56.875814-07:00,0.0,10.730241,10730.241 +37045,2025-03-11T15:03:07.613792-07:00,0.0,10.737978,10737.978 +37046,2025-03-11T15:03:18.345605-07:00,0.0,10.731813,10731.813 +37047,2025-03-11T15:03:29.079508-07:00,0.0,10.733903,10733.903 +37048,2025-03-11T15:03:39.814809-07:00,0.0,10.735301,10735.301 +37049,2025-03-11T15:03:50.544185-07:00,0.0,10.729376,10729.376 +37050,2025-03-11T15:04:01.279506-07:00,0.0,10.735321,10735.321 +37051,2025-03-11T15:04:12.012521-07:00,0.0,10.733015,10733.015 +37052,2025-03-11T15:04:22.740915-07:00,0.0,10.728394,10728.394 +37053,2025-03-11T15:04:33.473664-07:00,0.0,10.732749,10732.749 +37054,2025-03-11T15:04:44.205514-07:00,0.0,10.73185,10731.85 +37055,2025-03-11T15:04:54.943687-07:00,0.0,10.738173,10738.173 +37056,2025-03-11T15:05:05.678672-07:00,0.0,10.734985,10734.985 +37057,2025-03-11T15:05:16.410716-07:00,0.0,10.732044,10732.044 +37058,2025-03-11T15:05:27.143510-07:00,0.0,10.732794,10732.794 +37059,2025-03-11T15:05:37.866407-07:00,0.0,10.722897,10722.897 +37060,2025-03-11T15:05:48.599830-07:00,0.0,10.733423,10733.423 +37061,2025-03-11T15:05:59.331671-07:00,0.0,10.731841,10731.841 +37062,2025-03-11T15:06:10.066660-07:00,0.0,10.734989,10734.989 +37063,2025-03-11T15:06:20.802587-07:00,0.0,10.735927,10735.927 +37064,2025-03-11T15:06:31.533506-07:00,0.0,10.730919,10730.919 +37065,2025-03-11T15:06:42.271728-07:00,0.0,10.738222,10738.222 +37066,2025-03-11T15:06:52.996990-07:00,0.0,10.725262,10725.262 +37067,2025-03-11T15:07:03.737538-07:00,0.0,10.740548,10740.548 +37068,2025-03-11T15:07:14.466512-07:00,0.0,10.728974,10728.974 +37069,2025-03-11T15:07:25.199879-07:00,0.0,10.733367,10733.367 +37070,2025-03-11T15:07:35.925826-07:00,0.0,10.725947,10725.947 +37071,2025-03-11T15:07:46.657507-07:00,0.0,10.731681,10731.681 +37072,2025-03-11T15:07:57.384701-07:00,0.0,10.727194,10727.194 +37073,2025-03-11T15:08:08.115508-07:00,0.0,10.730807,10730.807 +37074,2025-03-11T15:08:18.844530-07:00,0.0,10.729022,10729.022 +37075,2025-03-11T15:08:29.572697-07:00,0.0,10.728167,10728.167 +37076,2025-03-11T15:08:40.302513-07:00,0.0,10.729816,10729.816 +37077,2025-03-11T15:08:51.033510-07:00,0.0,10.730997,10730.997 +37078,2025-03-11T15:09:01.769689-07:00,0.0,10.736179,10736.179 +37079,2025-03-11T15:09:12.502837-07:00,0.0,10.733148,10733.148 +37080,2025-03-11T15:09:23.231511-07:00,0.0,10.728674,10728.674 +37081,2025-03-11T15:09:33.963186-07:00,0.0,10.731675,10731.675 +37082,2025-03-11T15:09:44.684630-07:00,0.0,10.721444,10721.444 +37083,2025-03-11T15:09:55.413729-07:00,0.0,10.729099,10729.099 +37084,2025-03-11T15:10:06.144727-07:00,0.0,10.730998,10730.998 +37085,2025-03-11T15:10:16.875520-07:00,0.0,10.730793,10730.793 +37086,2025-03-11T15:10:27.611509-07:00,0.0,10.735989,10735.989 +37087,2025-03-11T15:10:38.336250-07:00,0.0,10.724741,10724.741 +37088,2025-03-11T15:10:49.069570-07:00,0.0,10.73332,10733.32 +37089,2025-03-11T15:10:59.798820-07:00,0.0,10.72925,10729.25 +37090,2025-03-11T15:11:10.531676-07:00,0.0,10.732856,10732.856 +37091,2025-03-11T15:11:21.260515-07:00,0.0,10.728839,10728.839 +37092,2025-03-11T15:11:31.990797-07:00,0.0,10.730282,10730.282 +37093,2025-03-11T15:11:42.722699-07:00,0.0,10.731902,10731.902 +37094,2025-03-11T15:11:47.062886-07:00,385.0,4.340187,4340.187 +37095,2025-03-11T15:11:53.458712-07:00,374.0,6.395826,6395.826 +37096,2025-03-11T15:12:04.184569-07:00,278.0,10.725857,10725.857 +37097,2025-03-11T15:12:14.917669-07:00,413.0,10.7331,10733.1 +37098,2025-03-11T15:12:25.649761-07:00,301.0,10.732092,10732.092 +37099,2025-03-11T15:12:36.388544-07:00,429.0,10.738783,10738.783 +37100,2025-03-11T15:12:47.117545-07:00,381.0,10.729001,10729.001 +37101,2025-03-11T15:12:57.849252-07:00,399.0,10.731707,10731.707 +37102,2025-03-11T15:13:08.584697-07:00,433.0,10.735445,10735.445 +37103,2025-03-11T15:13:19.316892-07:00,369.0,10.732195,10732.195 +37104,2025-03-11T15:13:30.044687-07:00,425.0,10.727795,10727.795 +37105,2025-03-11T15:13:40.779685-07:00,384.0,10.734998,10734.998 +37106,2025-03-11T15:13:51.506808-07:00,349.0,10.727123,10727.123 +37107,2025-03-11T15:14:02.242967-07:00,367.0,10.736159,10736.159 +37108,2025-03-11T15:14:12.976221-07:00,378.0,10.733254,10733.254 +37109,2025-03-11T15:14:23.711510-07:00,401.0,10.735289,10735.289 +37110,2025-03-11T15:14:34.440588-07:00,426.0,10.729078,10729.078 +37111,2025-03-11T15:14:45.168856-07:00,313.0,10.728268,10728.268 +37112,2025-03-11T15:14:55.905510-07:00,354.0,10.736654,10736.654 +37113,2025-03-11T15:15:06.635614-07:00,336.0,10.730104,10730.104 +37114,2025-03-11T15:15:17.362675-07:00,386.0,10.727061,10727.061 +37115,2025-03-11T15:15:28.098510-07:00,379.0,10.735835,10735.835 +37116,2025-03-11T15:15:38.831512-07:00,320.0,10.733002,10733.002 +37117,2025-03-11T15:15:49.557906-07:00,350.0,10.726394,10726.394 +37118,2025-03-11T15:16:00.291032-07:00,361.0,10.733126,10733.126 +37119,2025-03-11T15:16:11.026514-07:00,263.0,10.735482,10735.482 +37120,2025-03-11T15:16:21.760691-07:00,314.0,10.734177,10734.177 +37121,2025-03-11T15:16:32.489244-07:00,365.0,10.728553,10728.553 +37122,2025-03-11T15:16:43.228708-07:00,303.0,10.739464,10739.464 +37123,2025-03-11T15:16:53.960510-07:00,330.0,10.731802,10731.802 +37124,2025-03-11T15:17:04.686707-07:00,331.0,10.726197,10726.197 +37125,2025-03-11T15:17:15.428797-07:00,405.0,10.74209,10742.09 +37126,2025-03-11T15:17:26.151512-07:00,375.0,10.722715,10722.715 +37127,2025-03-11T15:17:36.888020-07:00,379.0,10.736508,10736.508 +37128,2025-03-11T15:17:47.624685-07:00,283.0,10.736665,10736.665 +37129,2025-03-11T15:17:58.351578-07:00,304.0,10.726893,10726.893 +37130,2025-03-11T15:18:09.082540-07:00,385.0,10.730962,10730.962 +37131,2025-03-11T15:18:19.816758-07:00,419.0,10.734218,10734.218 +37132,2025-03-11T15:18:30.542511-07:00,339.0,10.725753,10725.753 +37133,2025-03-11T15:18:41.277931-07:00,166.0,10.73542,10735.42 +37134,2025-03-11T15:18:52.007817-07:00,431.0,10.729886,10729.886 +37135,2025-03-11T15:19:02.743720-07:00,361.0,10.735903,10735.903 +37136,2025-03-11T15:19:13.471548-07:00,163.0,10.727828,10727.828 +37137,2025-03-11T15:19:24.199704-07:00,392.0,10.728156,10728.156 +37138,2025-03-11T15:19:34.935824-07:00,383.0,10.73612,10736.12 +37139,2025-03-11T15:19:45.667037-07:00,381.0,10.731213,10731.213 +37140,2025-03-11T15:19:56.404920-07:00,375.0,10.737883,10737.883 +37141,2025-03-11T15:20:07.131603-07:00,396.0,10.726683,10726.683 +37142,2025-03-11T15:20:17.871752-07:00,397.0,10.740149,10740.149 +37143,2025-03-11T15:20:28.610509-07:00,313.0,10.738757,10738.757 +37144,2025-03-11T15:20:39.339512-07:00,396.0,10.729003,10729.003 +37145,2025-03-11T15:20:50.078736-07:00,400.0,10.739224,10739.224 +37146,2025-03-11T15:21:00.804512-07:00,370.0,10.725776,10725.776 +37147,2025-03-11T15:21:11.544508-07:00,293.0,10.739996,10739.996 +37148,2025-03-11T15:21:14.496905-07:00,0.0,2.952397,2952.397 +37149,2025-03-11T15:21:22.273663-07:00,0.0,7.776758,7776.758 +37150,2025-03-11T15:21:33.005784-07:00,0.0,10.732121,10732.121 +37151,2025-03-11T15:21:43.739513-07:00,0.0,10.733729,10733.729 +37152,2025-03-11T15:21:54.470887-07:00,0.0,10.731374,10731.374 +37153,2025-03-11T15:22:05.209659-07:00,0.0,10.738772,10738.772 +37154,2025-03-11T15:22:15.944750-07:00,0.0,10.735091,10735.091 +37155,2025-03-11T15:22:26.671701-07:00,0.0,10.726951,10726.951 +37156,2025-03-11T15:22:37.410694-07:00,0.0,10.738993,10738.993 +37157,2025-03-11T15:22:48.140305-07:00,0.0,10.729611,10729.611 +37158,2025-03-11T15:22:58.866545-07:00,0.0,10.72624,10726.24 +37159,2025-03-11T15:23:09.600725-07:00,0.0,10.73418,10734.18 +37160,2025-03-11T15:23:20.334397-07:00,0.0,10.733672,10733.672 +37161,2025-03-11T15:23:31.073764-07:00,0.0,10.739367,10739.367 +37162,2025-03-11T15:23:41.803511-07:00,0.0,10.729747,10729.747 +37163,2025-03-11T15:23:52.543995-07:00,0.0,10.740484,10740.484 +37164,2025-03-11T15:24:03.272992-07:00,0.0,10.728997,10728.997 +37165,2025-03-11T15:24:14.007574-07:00,0.0,10.734582,10734.582 +37166,2025-03-11T15:24:24.741508-07:00,0.0,10.733934,10733.934 +37167,2025-03-11T15:24:35.477512-07:00,0.0,10.736004,10736.004 +37168,2025-03-11T15:24:46.200716-07:00,0.0,10.723204,10723.204 +37169,2025-03-11T15:24:56.935784-07:00,0.0,10.735068,10735.068 +37170,2025-03-11T15:25:07.668293-07:00,0.0,10.732509,10732.509 +37171,2025-03-11T15:25:18.402756-07:00,0.0,10.734463,10734.463 +37172,2025-03-11T15:25:29.135513-07:00,0.0,10.732757,10732.757 +37173,2025-03-11T15:25:39.871538-07:00,0.0,10.736025,10736.025 +37174,2025-03-11T15:25:50.598682-07:00,0.0,10.727144,10727.144 +37175,2025-03-11T15:25:50.645408-07:00,0.0,0.046726,46.726 +37176,2025-03-11T15:26:01.334781-07:00,0.0,10.689373,10689.373 +37177,2025-03-11T15:26:12.072510-07:00,0.0,10.737729,10737.729 +37178,2025-03-11T15:26:22.805851-07:00,0.0,10.733341,10733.341 +37179,2025-03-11T15:26:33.537690-07:00,0.0,10.731839,10731.839 +37180,2025-03-11T15:26:44.265539-07:00,0.0,10.727849,10727.849 +37181,2025-03-11T15:26:55.007574-07:00,0.0,10.742035,10742.035 +37182,2025-03-11T15:27:05.740515-07:00,0.0,10.732941,10732.941 +37183,2025-03-11T15:27:16.464542-07:00,0.0,10.724027,10724.027 +37184,2025-03-11T15:27:27.199513-07:00,0.0,10.734971,10734.971 +37185,2025-03-11T15:27:37.938619-07:00,0.0,10.739106,10739.106 +37186,2025-03-11T15:27:48.662068-07:00,0.0,10.723449,10723.449 +37187,2025-03-11T15:27:59.398714-07:00,0.0,10.736646,10736.646 +37188,2025-03-11T15:28:10.133509-07:00,0.0,10.734795,10734.795 +37189,2025-03-11T15:28:20.869586-07:00,0.0,10.736077,10736.077 +37190,2025-03-11T15:28:31.596631-07:00,0.0,10.727045,10727.045 +37191,2025-03-11T15:28:42.330575-07:00,0.0,10.733944,10733.944 +37192,2025-03-11T15:28:53.073506-07:00,0.0,10.742931,10742.931 +37193,2025-03-11T15:29:03.803664-07:00,0.0,10.730158,10730.158 +37194,2025-03-11T15:29:14.534715-07:00,0.0,10.731051,10731.051 +37195,2025-03-11T15:29:25.271513-07:00,0.0,10.736798,10736.798 +37196,2025-03-11T15:29:36.008727-07:00,0.0,10.737214,10737.214 +37197,2025-03-11T15:29:46.744515-07:00,0.0,10.735788,10735.788 +37198,2025-03-11T15:29:57.482907-07:00,0.0,10.738392,10738.392 +37199,2025-03-11T15:30:08.214511-07:00,0.0,10.731604,10731.604 +37200,2025-03-11T15:30:18.944717-07:00,0.0,10.730206,10730.206 +37201,2025-03-11T15:30:29.675695-07:00,0.0,10.730978,10730.978 +37202,2025-03-11T15:30:40.412634-07:00,0.0,10.736939,10736.939 +37203,2025-03-11T15:30:51.145506-07:00,0.0,10.732872,10732.872 +37204,2025-03-11T15:31:01.883508-07:00,0.0,10.738002,10738.002 +37205,2025-03-11T15:31:12.618596-07:00,0.0,10.735088,10735.088 +37206,2025-03-11T15:31:23.353561-07:00,0.0,10.734965,10734.965 +37207,2025-03-11T15:31:34.084511-07:00,0.0,10.73095,10730.95 +37208,2025-03-11T15:31:44.819706-07:00,0.0,10.735195,10735.195 +37209,2025-03-11T15:31:55.562086-07:00,0.0,10.74238,10742.38 +37210,2025-03-11T15:32:06.300683-07:00,0.0,10.738597,10738.597 +37211,2025-03-11T15:32:17.032716-07:00,0.0,10.732033,10732.033 +37212,2025-03-11T15:32:27.771581-07:00,0.0,10.738865,10738.865 +37213,2025-03-11T15:32:38.512804-07:00,0.0,10.741223,10741.223 +37214,2025-03-11T15:32:49.251693-07:00,0.0,10.738889,10738.889 +37215,2025-03-11T15:32:59.985619-07:00,0.0,10.733926,10733.926 +37216,2025-03-11T15:33:10.724609-07:00,0.0,10.73899,10738.99 +37217,2025-03-11T15:33:21.451607-07:00,0.0,10.726998,10726.998 +37218,2025-03-11T15:33:32.193429-07:00,0.0,10.741822,10741.822 +37219,2025-03-11T15:33:42.927718-07:00,0.0,10.734289,10734.289 +37220,2025-03-11T15:33:53.669784-07:00,0.0,10.742066,10742.066 +37221,2025-03-11T15:34:04.405583-07:00,0.0,10.735799,10735.799 +37222,2025-03-11T15:34:15.146511-07:00,0.0,10.740928,10740.928 +37223,2025-03-11T15:34:25.885238-07:00,0.0,10.738727,10738.727 +37224,2025-03-11T15:34:36.625582-07:00,0.0,10.740344,10740.344 +37225,2025-03-11T15:34:47.361900-07:00,0.0,10.736318,10736.318 +37226,2025-03-11T15:34:58.099535-07:00,0.0,10.737635,10737.635 +37227,2025-03-11T15:35:08.833756-07:00,0.0,10.734221,10734.221 +37228,2025-03-11T15:35:19.580577-07:00,0.0,10.746821,10746.821 +37229,2025-03-11T15:35:30.313818-07:00,0.0,10.733241,10733.241 +37230,2025-03-11T15:35:41.055731-07:00,0.0,10.741913,10741.913 +37231,2025-03-11T15:35:50.499335-07:00,0.0,9.443604,9443.604 +37232,2025-03-11T15:35:51.793908-07:00,0.0,1.294573,1294.573 +37233,2025-03-11T15:36:02.535505-07:00,0.0,10.741597,10741.597 +37234,2025-03-11T15:36:13.263513-07:00,0.0,10.728008,10728.008 +37235,2025-03-11T15:36:24.000771-07:00,0.0,10.737258,10737.258 +37236,2025-03-11T15:36:34.744576-07:00,0.0,10.743805,10743.805 +37237,2025-03-11T15:36:45.479035-07:00,0.0,10.734459,10734.459 +37238,2025-03-11T15:36:56.226663-07:00,0.0,10.747628,10747.628 +37239,2025-03-11T15:37:06.962513-07:00,0.0,10.73585,10735.85 +37240,2025-03-11T15:37:17.695513-07:00,0.0,10.733,10733.0 +37241,2025-03-11T15:37:28.433749-07:00,0.0,10.738236,10738.236 +37242,2025-03-11T15:37:39.176866-07:00,0.0,10.743117,10743.117 +37243,2025-03-11T15:37:49.906510-07:00,0.0,10.729644,10729.644 +37244,2025-03-11T15:38:00.648547-07:00,0.0,10.742037,10742.037 +37245,2025-03-11T15:38:11.389511-07:00,0.0,10.740964,10740.964 +37246,2025-03-11T15:38:22.122513-07:00,0.0,10.733002,10733.002 +37247,2025-03-11T15:38:32.856900-07:00,0.0,10.734387,10734.387 +37248,2025-03-11T15:38:43.595538-07:00,0.0,10.738638,10738.638 +37249,2025-03-11T15:38:54.335805-07:00,0.0,10.740267,10740.267 +37250,2025-03-11T15:39:05.066508-07:00,0.0,10.730703,10730.703 +37251,2025-03-11T15:39:15.802040-07:00,0.0,10.735532,10735.532 +37252,2025-03-11T15:39:26.541710-07:00,0.0,10.73967,10739.67 +37253,2025-03-11T15:39:37.277510-07:00,0.0,10.7358,10735.8 +37254,2025-03-11T15:39:48.015577-07:00,0.0,10.738067,10738.067 +37255,2025-03-11T15:39:58.754666-07:00,0.0,10.739089,10739.089 +37256,2025-03-11T15:40:09.494514-07:00,0.0,10.739848,10739.848 +37257,2025-03-11T15:40:20.234683-07:00,0.0,10.740169,10740.169 +37258,2025-03-11T15:40:30.973414-07:00,0.0,10.738731,10738.731 +37259,2025-03-11T15:40:41.715540-07:00,0.0,10.742126,10742.126 +37260,2025-03-11T15:40:52.447718-07:00,0.0,10.732178,10732.178 +37261,2025-03-11T15:41:03.186603-07:00,0.0,10.738885,10738.885 +37262,2025-03-11T15:41:13.923711-07:00,0.0,10.737108,10737.108 +37263,2025-03-11T15:41:24.666764-07:00,0.0,10.743053,10743.053 +37264,2025-03-11T15:41:35.400672-07:00,0.0,10.733908,10733.908 +37265,2025-03-11T15:41:46.142541-07:00,0.0,10.741869,10741.869 +37266,2025-03-11T15:41:56.883508-07:00,0.0,10.740967,10740.967 +37267,2025-03-11T15:42:07.626512-07:00,0.0,10.743004,10743.004 +37268,2025-03-11T15:42:18.371511-07:00,0.0,10.744999,10744.999 +37269,2025-03-11T15:42:29.109515-07:00,0.0,10.738004,10738.004 +37270,2025-03-11T15:42:39.848637-07:00,0.0,10.739122,10739.122 +37271,2025-03-11T15:42:50.589395-07:00,0.0,10.740758,10740.758 +37272,2025-03-11T15:43:01.337412-07:00,0.0,10.748017,10748.017 +37273,2025-03-11T15:43:12.072582-07:00,0.0,10.73517,10735.17 +37274,2025-03-11T15:43:22.811508-07:00,0.0,10.738926,10738.926 +37275,2025-03-11T15:43:33.551594-07:00,0.0,10.740086,10740.086 +37276,2025-03-11T15:43:44.293726-07:00,0.0,10.742132,10742.132 +37277,2025-03-11T15:43:55.030690-07:00,0.0,10.736964,10736.964 +37278,2025-03-11T15:44:05.769160-07:00,0.0,10.73847,10738.47 +37279,2025-03-11T15:44:16.514513-07:00,0.0,10.745353,10745.353 +37280,2025-03-11T15:44:27.255581-07:00,0.0,10.741068,10741.068 +37281,2025-03-11T15:44:37.997250-07:00,0.0,10.741669,10741.669 +37282,2025-03-11T15:44:48.735605-07:00,0.0,10.738355,10738.355 +37283,2025-03-11T15:44:59.475663-07:00,0.0,10.740058,10740.058 +37284,2025-03-11T15:45:10.222515-07:00,0.0,10.746852,10746.852 +37285,2025-03-11T15:45:20.958683-07:00,0.0,10.736168,10736.168 +37286,2025-03-11T15:45:31.698748-07:00,0.0,10.740065,10740.065 +37287,2025-03-11T15:45:42.437580-07:00,0.0,10.738832,10738.832 +37288,2025-03-11T15:45:53.176508-07:00,0.0,10.738928,10738.928 +37289,2025-03-11T15:46:03.911761-07:00,0.0,10.735253,10735.253 +37290,2025-03-11T15:46:14.654012-07:00,0.0,10.742251,10742.251 +37291,2025-03-11T15:46:25.394688-07:00,0.0,10.740676,10740.676 +37292,2025-03-11T15:46:36.135621-07:00,0.0,10.740933,10740.933 +37293,2025-03-11T15:46:46.872510-07:00,0.0,10.736889,10736.889 +37294,2025-03-11T15:46:57.604717-07:00,0.0,10.732207,10732.207 +37295,2025-03-11T15:47:08.342518-07:00,0.0,10.737801,10737.801 +37296,2025-03-11T15:47:19.079783-07:00,0.0,10.737265,10737.265 +37297,2025-03-11T15:47:29.819055-07:00,0.0,10.739272,10739.272 +37298,2025-03-11T15:47:40.558513-07:00,0.0,10.739458,10739.458 +37299,2025-03-11T15:47:51.308511-07:00,0.0,10.749998,10749.998 +37300,2025-03-11T15:48:02.047510-07:00,0.0,10.738999,10738.999 +37301,2025-03-11T15:48:12.789615-07:00,0.0,10.742105,10742.105 +37302,2025-03-11T15:48:23.528727-07:00,0.0,10.739112,10739.112 +37303,2025-03-11T15:48:34.267935-07:00,0.0,10.739208,10739.208 +37304,2025-03-11T15:48:45.007784-07:00,0.0,10.739849,10739.849 +37305,2025-03-11T15:48:55.754698-07:00,0.0,10.746914,10746.914 +37306,2025-03-11T15:49:06.498758-07:00,0.0,10.74406,10744.06 +37307,2025-03-11T15:49:17.234543-07:00,0.0,10.735785,10735.785 +37308,2025-03-11T15:49:27.982515-07:00,0.0,10.747972,10747.972 +37309,2025-03-11T15:49:38.722501-07:00,0.0,10.739986,10739.986 +37310,2025-03-11T15:49:49.456514-07:00,0.0,10.734013,10734.013 +37311,2025-03-11T15:50:00.197548-07:00,0.0,10.741034,10741.034 +37312,2025-03-11T15:50:10.944561-07:00,0.0,10.747013,10747.013 +37313,2025-03-11T15:50:21.688792-07:00,0.0,10.744231,10744.231 +37314,2025-03-11T15:50:32.425776-07:00,0.0,10.736984,10736.984 +37315,2025-03-11T15:50:43.167508-07:00,0.0,10.741732,10741.732 +37316,2025-03-11T15:50:53.906512-07:00,0.0,10.739004,10739.004 +37317,2025-03-11T15:51:04.642936-07:00,0.0,10.736424,10736.424 +37318,2025-03-11T15:51:15.389517-07:00,0.0,10.746581,10746.581 +37319,2025-03-11T15:51:26.125053-07:00,0.0,10.735536,10735.536 +37320,2025-03-11T15:51:36.868701-07:00,0.0,10.743648,10743.648 +37321,2025-03-11T15:51:47.607530-07:00,0.0,10.738829,10738.829 +37322,2025-03-11T15:51:58.346512-07:00,0.0,10.738982,10738.982 +37323,2025-03-11T15:52:09.091508-07:00,0.0,10.744996,10744.996 +37324,2025-03-11T15:52:19.829548-07:00,0.0,10.73804,10738.04 +37325,2025-03-11T15:52:30.567511-07:00,0.0,10.737963,10737.963 +37326,2025-03-11T15:52:41.305668-07:00,0.0,10.738157,10738.157 +37327,2025-03-11T15:52:52.043744-07:00,0.0,10.738076,10738.076 +37328,2025-03-11T15:53:02.775508-07:00,0.0,10.731764,10731.764 +37329,2025-03-11T15:53:13.513737-07:00,0.0,10.738229,10738.229 +37330,2025-03-11T15:53:24.252739-07:00,0.0,10.739002,10739.002 +37331,2025-03-11T15:53:34.905597-07:00,0.0,10.652858,10652.858 +37332,2025-03-11T15:53:45.642528-07:00,0.0,10.736931,10736.931 +37333,2025-03-11T15:53:56.375424-07:00,0.0,10.732896,10732.896 +37334,2025-03-11T15:54:07.116217-07:00,0.0,10.740793,10740.793 +37335,2025-03-11T15:54:17.854472-07:00,0.0,10.738255,10738.255 +37336,2025-03-11T15:54:28.594813-07:00,0.0,10.740341,10740.341 +37337,2025-03-11T15:54:39.332589-07:00,0.0,10.737776,10737.776 +37338,2025-03-11T15:54:50.072420-07:00,0.0,10.739831,10739.831 +37339,2025-03-11T15:55:00.814624-07:00,0.0,10.742204,10742.204 +37340,2025-03-11T15:55:11.551513-07:00,0.0,10.736889,10736.889 +37341,2025-03-11T15:55:22.294419-07:00,0.0,10.742906,10742.906 +37342,2025-03-11T15:55:33.035507-07:00,0.0,10.741088,10741.088 +37343,2025-03-11T15:55:43.777610-07:00,0.0,10.742103,10742.103 +37344,2025-03-11T15:55:54.520613-07:00,0.0,10.743003,10743.003 +37345,2025-03-11T15:56:05.258423-07:00,0.0,10.73781,10737.81 +37346,2025-03-11T15:56:15.996621-07:00,0.0,10.738198,10738.198 +37347,2025-03-11T15:56:26.744418-07:00,0.0,10.747797,10747.797 +37348,2025-03-11T15:56:37.480419-07:00,0.0,10.736001,10736.001 +37349,2025-03-11T15:56:48.226484-07:00,0.0,10.746065,10746.065 +37350,2025-03-11T15:56:58.969635-07:00,0.0,10.743151,10743.151 +37351,2025-03-11T15:57:09.712601-07:00,0.0,10.742966,10742.966 +37352,2025-03-11T15:57:20.453873-07:00,0.0,10.741272,10741.272 +37353,2025-03-11T15:57:31.190447-07:00,0.0,10.736574,10736.574 +37354,2025-03-11T15:57:41.935669-07:00,0.0,10.745222,10745.222 +37355,2025-03-11T15:57:52.675416-07:00,0.0,10.739747,10739.747 +37356,2025-03-11T15:58:03.409425-07:00,0.0,10.734009,10734.009 +37357,2025-03-11T15:58:14.154605-07:00,0.0,10.74518,10745.18 +37358,2025-03-11T15:58:24.895857-07:00,0.0,10.741252,10741.252 +37359,2025-03-11T15:58:35.633631-07:00,0.0,10.737774,10737.774 +37360,2025-03-11T15:58:46.370471-07:00,0.0,10.73684,10736.84 +37361,2025-03-11T15:58:57.115554-07:00,0.0,10.745083,10745.083 +37362,2025-03-11T15:59:07.852629-07:00,0.0,10.737075,10737.075 +37363,2025-03-11T15:59:18.604424-07:00,0.0,10.751795,10751.795 +37364,2025-03-11T15:59:29.344505-07:00,0.0,10.740081,10740.081 +37365,2025-03-11T15:59:40.081489-07:00,0.0,10.736984,10736.984 +37366,2025-03-11T15:59:50.824416-07:00,0.0,10.742927,10742.927 +37367,2025-03-11T16:00:01.571447-07:00,0.0,10.747031,10747.031 +37368,2025-03-11T16:00:12.319427-07:00,0.0,10.74798,10747.98 +37369,2025-03-11T16:00:23.053179-07:00,0.0,10.733752,10733.752 +37370,2025-03-11T16:00:33.796136-07:00,0.0,10.742957,10742.957 +37371,2025-03-11T16:00:44.547663-07:00,0.0,10.751527,10751.527 +37372,2025-03-11T16:00:55.282543-07:00,0.0,10.73488,10734.88 +37373,2025-03-11T16:01:06.036601-07:00,0.0,10.754058,10754.058 +37374,2025-03-11T16:01:16.774420-07:00,0.0,10.737819,10737.819 +37375,2025-03-11T16:01:27.516468-07:00,0.0,10.742048,10742.048 +37376,2025-03-11T16:01:38.260504-07:00,0.0,10.744036,10744.036 +37377,2025-03-11T16:01:49.006200-07:00,0.0,10.745696,10745.696 +37378,2025-03-11T16:01:59.756138-07:00,0.0,10.749938,10749.938 +37379,2025-03-11T16:02:10.497636-07:00,0.0,10.741498,10741.498 +37380,2025-03-11T16:02:21.239996-07:00,0.0,10.74236,10742.36 +37381,2025-03-11T16:02:31.987627-07:00,0.0,10.747631,10747.631 +37382,2025-03-11T16:02:42.722090-07:00,0.0,10.734463,10734.463 +37383,2025-03-11T16:02:53.465420-07:00,0.0,10.74333,10743.33 +37384,2025-03-11T16:03:04.210423-07:00,0.0,10.745003,10745.003 +37385,2025-03-11T16:03:14.955618-07:00,0.0,10.745195,10745.195 +37386,2025-03-11T16:03:25.703423-07:00,0.0,10.747805,10747.805 +37387,2025-03-11T16:03:36.449420-07:00,0.0,10.745997,10745.997 +37388,2025-03-11T16:03:47.190489-07:00,0.0,10.741069,10741.069 +37389,2025-03-11T16:03:57.937422-07:00,0.0,10.746933,10746.933 +37390,2025-03-11T16:04:08.682425-07:00,0.0,10.745003,10745.003 +37391,2025-03-11T16:04:19.429454-07:00,0.0,10.747029,10747.029 +37392,2025-03-11T16:04:30.175718-07:00,0.0,10.746264,10746.264 +37393,2025-03-11T16:04:40.913705-07:00,0.0,10.737987,10737.987 +37394,2025-03-11T16:04:51.663426-07:00,0.0,10.749721,10749.721 +37395,2025-03-11T16:05:02.399597-07:00,0.0,10.736171,10736.171 +37396,2025-03-11T16:05:13.150503-07:00,0.0,10.750906,10750.906 +37397,2025-03-11T16:05:23.890606-07:00,0.0,10.740103,10740.103 +37398,2025-03-11T16:05:34.633481-07:00,0.0,10.742875,10742.875 +37399,2025-03-11T16:05:45.373472-07:00,0.0,10.739991,10739.991 +37400,2025-03-11T16:05:56.125506-07:00,0.0,10.752034,10752.034 +37401,2025-03-11T16:06:06.864423-07:00,0.0,10.738917,10738.917 +37402,2025-03-11T16:06:17.609742-07:00,0.0,10.745319,10745.319 +37403,2025-03-11T16:06:28.354666-07:00,0.0,10.744924,10744.924 +37404,2025-03-11T16:06:39.090910-07:00,0.0,10.736244,10736.244 +37405,2025-03-11T16:06:49.837645-07:00,0.0,10.746735,10746.735 +37406,2025-03-11T16:07:00.580738-07:00,0.0,10.743093,10743.093 +37407,2025-03-11T16:07:11.328605-07:00,0.0,10.747867,10747.867 +37408,2025-03-11T16:07:22.070854-07:00,0.0,10.742249,10742.249 +37409,2025-03-11T16:07:32.813595-07:00,0.0,10.742741,10742.741 +37410,2025-03-11T16:07:43.566612-07:00,0.0,10.753017,10753.017 +37411,2025-03-11T16:07:54.309826-07:00,0.0,10.743214,10743.214 +37412,2025-03-11T16:08:05.045424-07:00,0.0,10.735598,10735.598 +37413,2025-03-11T16:08:15.789426-07:00,0.0,10.744002,10744.002 +37414,2025-03-11T16:08:26.541426-07:00,0.0,10.752,10752.0 +37415,2025-03-11T16:08:37.282424-07:00,0.0,10.740998,10740.998 +37416,2025-03-11T16:08:48.028780-07:00,0.0,10.746356,10746.356 +37417,2025-03-11T16:08:58.775427-07:00,0.0,10.746647,10746.647 +37418,2025-03-11T16:09:09.510422-07:00,0.0,10.734995,10734.995 +37419,2025-03-11T16:09:20.258426-07:00,0.0,10.748004,10748.004 +37420,2025-03-11T16:09:31.004424-07:00,0.0,10.745998,10745.998 +37421,2025-03-11T16:09:41.741424-07:00,0.0,10.737,10737.0 +37422,2025-03-11T16:09:52.489496-07:00,0.0,10.748072,10748.072 +37423,2025-03-11T16:10:03.235425-07:00,0.0,10.745929,10745.929 +37424,2025-03-11T16:10:13.972613-07:00,0.0,10.737188,10737.188 +37425,2025-03-11T16:10:24.717267-07:00,0.0,10.744654,10744.654 +37426,2025-03-11T16:10:35.467813-07:00,0.0,10.750546,10750.546 +37427,2025-03-11T16:10:46.205455-07:00,0.0,10.737642,10737.642 +37428,2025-03-11T16:10:56.946664-07:00,0.0,10.741209,10741.209 +37429,2025-03-11T16:11:07.691417-07:00,0.0,10.744753,10744.753 +37430,2025-03-11T16:11:18.433836-07:00,0.0,10.742419,10742.419 +37431,2025-03-11T16:11:29.178482-07:00,0.0,10.744646,10744.646 +37432,2025-03-11T16:11:39.918503-07:00,0.0,10.740021,10740.021 +37433,2025-03-11T16:11:50.668427-07:00,0.0,10.749924,10749.924 +37434,2025-03-11T16:12:01.408481-07:00,0.0,10.740054,10740.054 +37435,2025-03-11T16:12:12.158914-07:00,0.0,10.750433,10750.433 +37436,2025-03-11T16:12:22.897659-07:00,0.0,10.738745,10738.745 +37437,2025-03-11T16:12:33.641694-07:00,0.0,10.744035,10744.035 +37438,2025-03-11T16:12:44.393614-07:00,0.0,10.75192,10751.92 +37439,2025-03-11T16:12:55.134609-07:00,0.0,10.740995,10740.995 +37440,2025-03-11T16:13:05.867427-07:00,0.0,10.732818,10732.818 +37441,2025-03-11T16:13:16.610448-07:00,0.0,10.743021,10743.021 +37442,2025-03-11T16:13:27.360636-07:00,0.0,10.750188,10750.188 +37443,2025-03-11T16:13:38.099421-07:00,0.0,10.738785,10738.785 +37444,2025-03-11T16:13:48.845671-07:00,0.0,10.74625,10746.25 +37445,2025-03-11T16:13:59.585422-07:00,0.0,10.739751,10739.751 +37446,2025-03-11T16:14:10.325438-07:00,0.0,10.740016,10740.016 +37447,2025-03-11T16:14:21.074426-07:00,0.0,10.748988,10748.988 +37448,2025-03-11T16:14:31.821448-07:00,0.0,10.747022,10747.022 +37449,2025-03-11T16:14:42.561809-07:00,0.0,10.740361,10740.361 +37450,2025-03-11T16:14:53.310620-07:00,0.0,10.748811,10748.811 +37451,2025-03-11T16:15:04.054621-07:00,0.0,10.744001,10744.001 +37452,2025-03-11T16:15:14.793450-07:00,0.0,10.738829,10738.829 +37453,2025-03-11T16:15:25.545446-07:00,0.0,10.751996,10751.996 +37454,2025-03-11T16:15:36.281618-07:00,0.0,10.736172,10736.172 +37455,2025-03-11T16:15:47.026635-07:00,0.0,10.745017,10745.017 +37456,2025-03-11T16:15:57.772640-07:00,0.0,10.746005,10746.005 +37457,2025-03-11T16:16:08.512424-07:00,0.0,10.739784,10739.784 +37458,2025-03-11T16:16:19.255834-07:00,0.0,10.74341,10743.41 +37459,2025-03-11T16:16:30.002650-07:00,0.0,10.746816,10746.816 +37460,2025-03-11T16:16:40.741845-07:00,0.0,10.739195,10739.195 +37461,2025-03-11T16:16:51.488809-07:00,0.0,10.746964,10746.964 +37462,2025-03-11T16:17:02.225557-07:00,0.0,10.736748,10736.748 +37463,2025-03-11T16:17:12.970422-07:00,0.0,10.744865,10744.865 +37464,2025-03-11T16:17:23.701678-07:00,0.0,10.731256,10731.256 +37465,2025-03-11T16:17:34.451491-07:00,0.0,10.749813,10749.813 +37466,2025-03-11T16:17:45.189420-07:00,0.0,10.737929,10737.929 +37467,2025-03-11T16:17:55.938424-07:00,0.0,10.749004,10749.004 +37468,2025-03-11T16:18:06.674561-07:00,0.0,10.736137,10736.137 +37469,2025-03-11T16:18:17.415616-07:00,0.0,10.741055,10741.055 +37470,2025-03-11T16:18:28.167426-07:00,0.0,10.75181,10751.81 +37471,2025-03-11T16:18:38.908610-07:00,0.0,10.741184,10741.184 +37472,2025-03-11T16:18:49.647619-07:00,0.0,10.739009,10739.009 +37473,2025-03-11T16:19:00.386426-07:00,0.0,10.738807,10738.807 +37474,2025-03-11T16:19:11.122443-07:00,0.0,10.736017,10736.017 +37475,2025-03-11T16:19:21.864448-07:00,0.0,10.742005,10742.005 +37476,2025-03-11T16:19:32.607424-07:00,0.0,10.742976,10742.976 +37477,2025-03-11T16:19:43.348170-07:00,0.0,10.740746,10740.746 +37478,2025-03-11T16:19:54.085086-07:00,0.0,10.736916,10736.916 +37479,2025-03-11T16:20:04.818425-07:00,0.0,10.733339,10733.339 +37480,2025-03-11T16:20:15.562026-07:00,0.0,10.743601,10743.601 +37481,2025-03-11T16:20:26.307423-07:00,0.0,10.745397,10745.397 +37482,2025-03-11T16:20:37.047420-07:00,0.0,10.739997,10739.997 +37483,2025-03-11T16:20:47.782438-07:00,0.0,10.735018,10735.018 +37484,2025-03-11T16:20:58.524616-07:00,0.0,10.742178,10742.178 +37485,2025-03-11T16:21:09.266200-07:00,0.0,10.741584,10741.584 +37486,2025-03-11T16:21:20.005420-07:00,0.0,10.73922,10739.22 +37487,2025-03-11T16:21:30.743425-07:00,0.0,10.738005,10738.005 +37488,2025-03-11T16:21:41.492462-07:00,0.0,10.749037,10749.037 +37489,2025-03-11T16:21:52.236099-07:00,0.0,10.743637,10743.637 +37490,2025-03-11T16:22:02.979422-07:00,0.0,10.743323,10743.323 +37491,2025-03-11T16:22:13.713476-07:00,0.0,10.734054,10734.054 +37492,2025-03-11T16:22:24.452604-07:00,0.0,10.739128,10739.128 +37493,2025-03-11T16:22:35.194912-07:00,0.0,10.742308,10742.308 +37494,2025-03-11T16:22:45.942205-07:00,0.0,10.747293,10747.293 +37495,2025-03-11T16:22:56.691926-07:00,0.0,10.749721,10749.721 +37496,2025-03-11T16:23:07.430422-07:00,0.0,10.738496,10738.496 +37497,2025-03-11T16:23:18.171726-07:00,0.0,10.741304,10741.304 +37498,2025-03-11T16:23:28.908426-07:00,0.0,10.7367,10736.7 +37499,2025-03-11T16:23:39.651698-07:00,0.0,10.743272,10743.272 +37500,2025-03-11T16:23:50.396986-07:00,0.0,10.745288,10745.288 +37501,2025-03-11T16:24:01.145425-07:00,0.0,10.748439,10748.439 +37502,2025-03-11T16:24:11.886473-07:00,0.0,10.741048,10741.048 +37503,2025-03-11T16:24:22.630534-07:00,0.0,10.744061,10744.061 +37504,2025-03-11T16:24:33.366786-07:00,0.0,10.736252,10736.252 +37505,2025-03-11T16:24:44.113454-07:00,0.0,10.746668,10746.668 +37506,2025-03-11T16:24:54.855751-07:00,0.0,10.742297,10742.297 +37507,2025-03-11T16:25:05.600422-07:00,0.0,10.744671,10744.671 +37508,2025-03-11T16:25:16.341131-07:00,0.0,10.740709,10740.709 +37509,2025-03-11T16:25:27.089954-07:00,0.0,10.748823,10748.823 +37510,2025-03-11T16:25:37.827638-07:00,0.0,10.737684,10737.684 +37511,2025-03-11T16:25:48.576432-07:00,0.0,10.748794,10748.794 +37512,2025-03-11T16:25:59.315878-07:00,0.0,10.739446,10739.446 +37513,2025-03-11T16:26:10.060599-07:00,0.0,10.744721,10744.721 +37514,2025-03-11T16:26:20.808426-07:00,0.0,10.747827,10747.827 +37515,2025-03-11T16:26:31.555603-07:00,0.0,10.747177,10747.177 +37516,2025-03-11T16:26:42.295635-07:00,0.0,10.740032,10740.032 +37517,2025-03-11T16:26:53.036587-07:00,0.0,10.740952,10740.952 +37518,2025-03-11T16:27:03.788626-07:00,0.0,10.752039,10752.039 +37519,2025-03-11T16:27:14.526626-07:00,0.0,10.738,10738.0 +37520,2025-03-11T16:27:25.275422-07:00,0.0,10.748796,10748.796 +37521,2025-03-11T16:27:36.017169-07:00,0.0,10.741747,10741.747 +37522,2025-03-11T16:27:46.755426-07:00,0.0,10.738257,10738.257 +37523,2025-03-11T16:27:57.497724-07:00,0.0,10.742298,10742.298 +37524,2025-03-11T16:28:08.232424-07:00,0.0,10.7347,10734.7 +37525,2025-03-11T16:28:18.968612-07:00,0.0,10.736188,10736.188 +37526,2025-03-11T16:28:29.712921-07:00,0.0,10.744309,10744.309 +37527,2025-03-11T16:28:40.448086-07:00,0.0,10.735165,10735.165 +37528,2025-03-11T16:28:51.187528-07:00,0.0,10.739442,10739.442 +37529,2025-03-11T16:29:01.922426-07:00,0.0,10.734898,10734.898 +37530,2025-03-11T16:29:12.665425-07:00,0.0,10.742999,10742.999 +37531,2025-03-11T16:29:23.401082-07:00,0.0,10.735657,10735.657 +37532,2025-03-11T16:29:34.141511-07:00,0.0,10.740429,10740.429 +37533,2025-03-11T16:29:44.879498-07:00,0.0,10.737987,10737.987 +37534,2025-03-11T16:29:55.622424-07:00,0.0,10.742926,10742.926 +37535,2025-03-11T16:30:06.356591-07:00,0.0,10.734167,10734.167 +37536,2025-03-11T16:30:17.102426-07:00,0.0,10.745835,10745.835 +37537,2025-03-11T16:30:27.839522-07:00,0.0,10.737096,10737.096 +37538,2025-03-11T16:30:38.575726-07:00,0.0,10.736204,10736.204 +37539,2025-03-11T16:30:49.316979-07:00,0.0,10.741253,10741.253 +37540,2025-03-11T16:31:00.052722-07:00,0.0,10.735743,10735.743 +37541,2025-03-11T16:31:10.794632-07:00,0.0,10.74191,10741.91 +37542,2025-03-11T16:31:21.534712-07:00,0.0,10.74008,10740.08 +37543,2025-03-11T16:31:32.275593-07:00,0.0,10.740881,10740.881 +37544,2025-03-11T16:31:43.017475-07:00,0.0,10.741882,10741.882 +37545,2025-03-11T16:31:53.758425-07:00,0.0,10.74095,10740.95 +37546,2025-03-11T16:32:04.497636-07:00,0.0,10.739211,10739.211 +37547,2025-03-11T16:32:15.230500-07:00,0.0,10.732864,10732.864 +37548,2025-03-11T16:32:25.967507-07:00,0.0,10.737007,10737.007 +37549,2025-03-11T16:32:36.708604-07:00,0.0,10.741097,10741.097 +37550,2025-03-11T16:32:47.452126-07:00,0.0,10.743522,10743.522 +37551,2025-03-11T16:32:58.187427-07:00,0.0,10.735301,10735.301 +37552,2025-03-11T16:33:08.924153-07:00,0.0,10.736726,10736.726 +37553,2025-03-11T16:33:19.670576-07:00,0.0,10.746423,10746.423 +37554,2025-03-11T16:33:30.402463-07:00,0.0,10.731887,10731.887 +37555,2025-03-11T16:33:41.149475-07:00,0.0,10.747012,10747.012 +37556,2025-03-11T16:33:51.881451-07:00,0.0,10.731976,10731.976 +37557,2025-03-11T16:34:02.626422-07:00,0.0,10.744971,10744.971 +37558,2025-03-11T16:34:13.369698-07:00,0.0,10.743276,10743.276 +37559,2025-03-11T16:34:24.110424-07:00,0.0,10.740726,10740.726 +37560,2025-03-11T16:34:34.841423-07:00,0.0,10.730999,10730.999 +37561,2025-03-11T16:34:45.585733-07:00,0.0,10.74431,10744.31 +37562,2025-03-11T16:34:56.331426-07:00,0.0,10.745693,10745.693 +37563,2025-03-11T16:35:07.070680-07:00,0.0,10.739254,10739.254 +37564,2025-03-11T16:35:17.811449-07:00,0.0,10.740769,10740.769 +37565,2025-03-11T16:35:28.547633-07:00,0.0,10.736184,10736.184 +37566,2025-03-11T16:35:39.287426-07:00,0.0,10.739793,10739.793 +37567,2025-03-11T16:35:50.033964-07:00,0.0,10.746538,10746.538 +37568,2025-03-11T16:36:00.775453-07:00,0.0,10.741489,10741.489 +37569,2025-03-11T16:36:11.516651-07:00,0.0,10.741198,10741.198 +37570,2025-03-11T16:36:22.262469-07:00,0.0,10.745818,10745.818 +37571,2025-03-11T16:36:33.008776-07:00,0.0,10.746307,10746.307 +37572,2025-03-11T16:36:43.747611-07:00,0.0,10.738835,10738.835 +37573,2025-03-11T16:36:54.493313-07:00,0.0,10.745702,10745.702 +37574,2025-03-11T16:37:05.236426-07:00,0.0,10.743113,10743.113 +37575,2025-03-11T16:37:15.973662-07:00,0.0,10.737236,10737.236 +37576,2025-03-11T16:37:26.712424-07:00,0.0,10.738762,10738.762 +37577,2025-03-11T16:37:37.454637-07:00,0.0,10.742213,10742.213 +37578,2025-03-11T16:37:48.201425-07:00,0.0,10.746788,10746.788 +37579,2025-03-11T16:37:58.941876-07:00,0.0,10.740451,10740.451 +37580,2025-03-11T16:38:09.683623-07:00,0.0,10.741747,10741.747 +37581,2025-03-11T16:38:20.419945-07:00,0.0,10.736322,10736.322 +37582,2025-03-11T16:38:31.167769-07:00,0.0,10.747824,10747.824 +37583,2025-03-11T16:38:41.901641-07:00,0.0,10.733872,10733.872 +37584,2025-03-11T16:38:52.651422-07:00,0.0,10.749781,10749.781 +37585,2025-03-11T16:39:03.393701-07:00,0.0,10.742279,10742.279 +37586,2025-03-11T16:39:14.134430-07:00,0.0,10.740729,10740.729 +37587,2025-03-11T16:39:24.878615-07:00,0.0,10.744185,10744.185 +37588,2025-03-11T16:39:35.619426-07:00,0.0,10.740811,10740.811 +37589,2025-03-11T16:39:46.357598-07:00,0.0,10.738172,10738.172 +37590,2025-03-11T16:39:57.106614-07:00,0.0,10.749016,10749.016 +37591,2025-03-11T16:40:07.839489-07:00,0.0,10.732875,10732.875 +37592,2025-03-11T16:40:18.589426-07:00,0.0,10.749937,10749.937 +37593,2025-03-11T16:40:29.329425-07:00,0.0,10.739999,10739.999 +37594,2025-03-11T16:40:40.067458-07:00,0.0,10.738033,10738.033 +37595,2025-03-11T16:40:50.812427-07:00,0.0,10.744969,10744.969 +37596,2025-03-11T16:41:01.559632-07:00,0.0,10.747205,10747.205 +37597,2025-03-11T16:41:12.294422-07:00,0.0,10.73479,10734.79 +37598,2025-03-11T16:41:23.037810-07:00,0.0,10.743388,10743.388 +37599,2025-03-11T16:41:33.773453-07:00,0.0,10.735643,10735.643 +37600,2025-03-11T16:41:44.503428-07:00,0.0,10.729975,10729.975 +37601,2025-03-11T16:41:55.248582-07:00,0.0,10.745154,10745.154 +37602,2025-03-11T16:42:05.984688-07:00,0.0,10.736106,10736.106 +37603,2025-03-11T16:42:16.714165-07:00,0.0,10.729477,10729.477 +37604,2025-03-11T16:42:27.450616-07:00,0.0,10.736451,10736.451 +37605,2025-03-11T16:42:38.189640-07:00,0.0,10.739024,10739.024 +37606,2025-03-11T16:42:48.925601-07:00,0.0,10.735961,10735.961 +37607,2025-03-11T16:42:59.666670-07:00,0.0,10.741069,10741.069 +37608,2025-03-11T16:43:10.410598-07:00,0.0,10.743928,10743.928 +37609,2025-03-11T16:43:21.148551-07:00,0.0,10.737953,10737.953 +37610,2025-03-11T16:43:31.875474-07:00,0.0,10.726923,10726.923 +37611,2025-03-11T16:43:42.614485-07:00,0.0,10.739011,10739.011 +37612,2025-03-11T16:43:53.357651-07:00,0.0,10.743166,10743.166 +37613,2025-03-11T16:44:04.097298-07:00,0.0,10.739647,10739.647 +37614,2025-03-11T16:44:14.831424-07:00,0.0,10.734126,10734.126 +37615,2025-03-11T16:44:25.571516-07:00,0.0,10.740092,10740.092 +37616,2025-03-11T16:44:36.312422-07:00,0.0,10.740906,10740.906 +37617,2025-03-11T16:44:47.054647-07:00,0.0,10.742225,10742.225 +37618,2025-03-11T16:44:57.792579-07:00,0.0,10.737932,10737.932 +37619,2025-03-11T16:45:08.532310-07:00,0.0,10.739731,10739.731 +37620,2025-03-11T16:45:19.270228-07:00,0.0,10.737918,10737.918 +37621,2025-03-11T16:45:30.005492-07:00,0.0,10.735264,10735.264 +37622,2025-03-11T16:45:40.754662-07:00,0.0,10.74917,10749.17 +37623,2025-03-11T16:45:51.490427-07:00,0.0,10.735765,10735.765 +37624,2025-03-11T16:46:02.224426-07:00,0.0,10.733999,10733.999 +37625,2025-03-11T16:46:12.969651-07:00,0.0,10.745225,10745.225 +37626,2025-03-11T16:46:23.709618-07:00,0.0,10.739967,10739.967 +37627,2025-03-11T16:46:34.444423-07:00,0.0,10.734805,10734.805 +37628,2025-03-11T16:46:45.180421-07:00,0.0,10.735998,10735.998 +37629,2025-03-11T16:46:55.918427-07:00,0.0,10.738006,10738.006 +37630,2025-03-11T16:47:06.657846-07:00,0.0,10.739419,10739.419 +37631,2025-03-11T16:47:17.392625-07:00,0.0,10.734779,10734.779 +37632,2025-03-11T16:47:28.132742-07:00,0.0,10.740117,10740.117 +37633,2025-03-11T16:47:38.862424-07:00,0.0,10.729682,10729.682 +37634,2025-03-11T16:47:49.598584-07:00,0.0,10.73616,10736.16 +37635,2025-03-11T16:48:00.341598-07:00,0.0,10.743014,10743.014 +37636,2025-03-11T16:48:11.074424-07:00,0.0,10.732826,10732.826 +37637,2025-03-11T16:48:21.820416-07:00,0.0,10.745992,10745.992 +37638,2025-03-11T16:48:32.554454-07:00,0.0,10.734038,10734.038 +37639,2025-03-11T16:48:43.296424-07:00,0.0,10.74197,10741.97 +37640,2025-03-11T16:48:54.024592-07:00,0.0,10.728168,10728.168 +37641,2025-03-11T16:49:04.765615-07:00,0.0,10.741023,10741.023 +37642,2025-03-11T16:49:15.500424-07:00,0.0,10.734809,10734.809 +37643,2025-03-11T16:49:26.237424-07:00,0.0,10.737,10737.0 +37644,2025-03-11T16:49:36.974624-07:00,0.0,10.7372,10737.2 +37645,2025-03-11T16:49:47.713491-07:00,0.0,10.738867,10738.867 +37646,2025-03-11T16:49:58.450615-07:00,0.0,10.737124,10737.124 +37647,2025-03-11T16:50:09.195564-07:00,0.0,10.744949,10744.949 +37648,2025-03-11T16:50:19.933555-07:00,0.0,10.737991,10737.991 +37649,2025-03-11T16:50:30.674423-07:00,0.0,10.740868,10740.868 +37650,2025-03-11T16:50:41.406419-07:00,0.0,10.731996,10731.996 +37651,2025-03-11T16:50:52.147563-07:00,0.0,10.741144,10741.144 +37652,2025-03-11T16:51:02.891595-07:00,0.0,10.744032,10744.032 +37653,2025-03-11T16:51:13.624423-07:00,0.0,10.732828,10732.828 +37654,2025-03-11T16:51:24.358649-07:00,0.0,10.734226,10734.226 +37655,2025-03-11T16:51:35.102419-07:00,0.0,10.74377,10743.77 +37656,2025-03-11T16:51:45.839643-07:00,0.0,10.737224,10737.224 +37657,2025-03-11T16:51:56.582257-07:00,0.0,10.742614,10742.614 +37658,2025-03-11T16:52:07.316425-07:00,0.0,10.734168,10734.168 +37659,2025-03-11T16:52:18.059424-07:00,0.0,10.742999,10742.999 +37660,2025-03-11T16:52:28.795426-07:00,0.0,10.736002,10736.002 +37661,2025-03-11T16:52:39.526634-07:00,0.0,10.731208,10731.208 +37662,2025-03-11T16:52:50.267598-07:00,0.0,10.740964,10740.964 +37663,2025-03-11T16:53:01.006623-07:00,0.0,10.739025,10739.025 +37664,2025-03-11T16:53:11.741485-07:00,0.0,10.734862,10734.862 +37665,2025-03-11T16:53:22.468433-07:00,0.0,10.726948,10726.948 +37666,2025-03-11T16:53:33.206074-07:00,0.0,10.737641,10737.641 +37667,2025-03-11T16:53:43.983623-07:00,0.0,10.777549,10777.549 +37668,2025-03-11T16:53:54.713029-07:00,0.0,10.729406,10729.406 +37669,2025-03-11T16:54:05.458030-07:00,0.0,10.745001,10745.001 +37670,2025-03-11T16:54:16.192136-07:00,0.0,10.734106,10734.106 +37671,2025-03-11T16:54:26.928255-07:00,0.0,10.736119,10736.119 +37672,2025-03-11T16:54:37.664534-07:00,0.0,10.736279,10736.279 +37673,2025-03-11T16:54:48.402054-07:00,0.0,10.73752,10737.52 +37674,2025-03-11T16:54:59.139185-07:00,0.0,10.737131,10737.131 +37675,2025-03-11T16:55:09.873585-07:00,0.0,10.7344,10734.4 +37676,2025-03-11T16:55:20.603024-07:00,0.0,10.729439,10729.439 +37677,2025-03-11T16:55:31.335033-07:00,0.0,10.732009,10732.009 +37678,2025-03-11T16:55:42.070089-07:00,0.0,10.735056,10735.056 +37679,2025-03-11T16:55:52.812044-07:00,0.0,10.741955,10741.955 +37680,2025-03-11T16:56:03.541111-07:00,0.0,10.729067,10729.067 +37681,2025-03-11T16:56:14.278059-07:00,0.0,10.736948,10736.948 +37682,2025-03-11T16:56:25.014063-07:00,0.0,10.736004,10736.004 +37683,2025-03-11T16:56:35.747820-07:00,0.0,10.733757,10733.757 +37684,2025-03-11T16:56:46.487116-07:00,0.0,10.739296,10739.296 +37685,2025-03-11T16:56:57.226029-07:00,0.0,10.738913,10738.913 +37686,2025-03-11T16:57:07.954382-07:00,0.0,10.728353,10728.353 +37687,2025-03-11T16:57:18.693066-07:00,0.0,10.738684,10738.684 +37688,2025-03-11T16:57:29.432216-07:00,0.0,10.73915,10739.15 +37689,2025-03-11T16:57:40.170057-07:00,0.0,10.737841,10737.841 +37690,2025-03-11T16:57:50.909152-07:00,0.0,10.739095,10739.095 +37691,2025-03-11T16:58:01.643324-07:00,0.0,10.734172,10734.172 +37692,2025-03-11T16:58:12.377091-07:00,0.0,10.733767,10733.767 +37693,2025-03-11T16:58:23.121396-07:00,0.0,10.744305,10744.305 +37694,2025-03-11T16:58:33.864207-07:00,0.0,10.742811,10742.811 +37695,2025-03-11T16:58:44.596237-07:00,0.0,10.73203,10732.03 +37696,2025-03-11T16:58:55.333028-07:00,0.0,10.736791,10736.791 +37697,2025-03-11T16:59:06.077280-07:00,0.0,10.744252,10744.252 +37698,2025-03-11T16:59:16.811027-07:00,0.0,10.733747,10733.747 +37699,2025-03-11T16:59:27.551218-07:00,0.0,10.740191,10740.191 +37700,2025-03-11T16:59:38.284153-07:00,0.0,10.732935,10732.935 +37701,2025-03-11T16:59:49.024202-07:00,0.0,10.740049,10740.049 +37702,2025-03-11T16:59:59.760309-07:00,0.0,10.736107,10736.107 +37703,2025-03-11T17:00:10.498030-07:00,0.0,10.737721,10737.721 +37704,2025-03-11T17:00:21.237206-07:00,0.0,10.739176,10739.176 +37705,2025-03-11T17:00:31.973234-07:00,0.0,10.736028,10736.028 +37706,2025-03-11T17:00:42.710392-07:00,0.0,10.737158,10737.158 +37707,2025-03-11T17:00:53.448531-07:00,0.0,10.738139,10738.139 +37708,2025-03-11T17:01:04.178593-07:00,0.0,10.730062,10730.062 +37709,2025-03-11T17:01:14.917596-07:00,0.0,10.739003,10739.003 +37710,2025-03-11T17:01:25.649030-07:00,0.0,10.731434,10731.434 +37711,2025-03-11T17:01:36.388022-07:00,0.0,10.738992,10738.992 +37712,2025-03-11T17:01:47.119204-07:00,0.0,10.731182,10731.182 +37713,2025-03-11T17:01:57.859133-07:00,0.0,10.739929,10739.929 +37714,2025-03-11T17:02:08.589022-07:00,0.0,10.729889,10729.889 +37715,2025-03-11T17:02:19.321026-07:00,0.0,10.732004,10732.004 +37716,2025-03-11T17:02:30.060179-07:00,0.0,10.739153,10739.153 +37717,2025-03-11T17:02:40.801442-07:00,0.0,10.741263,10741.263 +37718,2025-03-11T17:02:51.535026-07:00,0.0,10.733584,10733.584 +37719,2025-03-11T17:03:02.278232-07:00,0.0,10.743206,10743.206 +37720,2025-03-11T17:03:13.016031-07:00,0.0,10.737799,10737.799 +37721,2025-03-11T17:03:23.751215-07:00,0.0,10.735184,10735.184 +37722,2025-03-11T17:03:34.484515-07:00,0.0,10.7333,10733.3 +37723,2025-03-11T17:03:45.218095-07:00,0.0,10.73358,10733.58 +37724,2025-03-11T17:03:55.955025-07:00,0.0,10.73693,10736.93 +37725,2025-03-11T17:04:06.689029-07:00,0.0,10.734004,10734.004 +37726,2025-03-11T17:04:17.435103-07:00,0.0,10.746074,10746.074 +37727,2025-03-11T17:04:28.170777-07:00,0.0,10.735674,10735.674 +37728,2025-03-11T17:04:38.908029-07:00,0.0,10.737252,10737.252 +37729,2025-03-11T17:04:49.646081-07:00,0.0,10.738052,10738.052 +37730,2025-03-11T17:05:00.387028-07:00,0.0,10.740947,10740.947 +37731,2025-03-11T17:05:11.120856-07:00,0.0,10.733828,10733.828 +37732,2025-03-11T17:05:21.856580-07:00,0.0,10.735724,10735.724 +37733,2025-03-11T17:05:32.593028-07:00,0.0,10.736448,10736.448 +37734,2025-03-11T17:05:43.328022-07:00,0.0,10.734994,10734.994 +37735,2025-03-11T17:05:54.071256-07:00,0.0,10.743234,10743.234 +37736,2025-03-11T17:06:04.806135-07:00,0.0,10.734879,10734.879 +37737,2025-03-11T17:06:15.552197-07:00,0.0,10.746062,10746.062 +37738,2025-03-11T17:06:26.291841-07:00,0.0,10.739644,10739.644 +37739,2025-03-11T17:06:37.024031-07:00,0.0,10.73219,10732.19 +37740,2025-03-11T17:06:47.767056-07:00,0.0,10.743025,10743.025 +37741,2025-03-11T17:06:58.506438-07:00,0.0,10.739382,10739.382 +37742,2025-03-11T17:07:09.243231-07:00,0.0,10.736793,10736.793 +37743,2025-03-11T17:07:19.985456-07:00,0.0,10.742225,10742.225 +37744,2025-03-11T17:07:30.718030-07:00,0.0,10.732574,10732.574 +37745,2025-03-11T17:07:41.460267-07:00,0.0,10.742237,10742.237 +37746,2025-03-11T17:07:52.199063-07:00,0.0,10.738796,10738.796 +37747,2025-03-11T17:08:02.941239-07:00,0.0,10.742176,10742.176 +37748,2025-03-11T17:08:13.670231-07:00,0.0,10.728992,10728.992 +37749,2025-03-11T17:08:24.409224-07:00,0.0,10.738993,10738.993 +37750,2025-03-11T17:08:35.154061-07:00,0.0,10.744837,10744.837 +37751,2025-03-11T17:08:45.884744-07:00,0.0,10.730683,10730.683 +37752,2025-03-11T17:08:56.628214-07:00,0.0,10.74347,10743.47 +37753,2025-03-11T17:09:07.359228-07:00,0.0,10.731014,10731.014 +37754,2025-03-11T17:09:18.097103-07:00,0.0,10.737875,10737.875 +37755,2025-03-11T17:09:28.841097-07:00,0.0,10.743994,10743.994 +37756,2025-03-11T17:09:39.582205-07:00,0.0,10.741108,10741.108 +37757,2025-03-11T17:09:50.316027-07:00,0.0,10.733822,10733.822 +37758,2025-03-11T17:10:01.060055-07:00,0.0,10.744028,10744.028 +37759,2025-03-11T17:10:11.798044-07:00,0.0,10.737989,10737.989 +37760,2025-03-11T17:10:22.537194-07:00,0.0,10.73915,10739.15 +37761,2025-03-11T17:10:33.273619-07:00,0.0,10.736425,10736.425 +37762,2025-03-11T17:10:44.007214-07:00,0.0,10.733595,10733.595 +37763,2025-03-11T17:10:54.750272-07:00,0.0,10.743058,10743.058 +37764,2025-03-11T17:11:05.480207-07:00,0.0,10.729935,10729.935 +37765,2025-03-11T17:11:16.221904-07:00,0.0,10.741697,10741.697 +37766,2025-03-11T17:11:26.955307-07:00,0.0,10.733403,10733.403 +37767,2025-03-11T17:11:37.698062-07:00,0.0,10.742755,10742.755 +37768,2025-03-11T17:11:48.428243-07:00,0.0,10.730181,10730.181 +37769,2025-03-11T17:11:59.168213-07:00,0.0,10.73997,10739.97 +37770,2025-03-11T17:12:09.904243-07:00,0.0,10.73603,10736.03 +37771,2025-03-11T17:12:20.642098-07:00,0.0,10.737855,10737.855 +37772,2025-03-11T17:12:31.372032-07:00,0.0,10.729934,10729.934 +37773,2025-03-11T17:12:42.116039-07:00,0.0,10.744007,10744.007 +37774,2025-03-11T17:12:52.850239-07:00,0.0,10.7342,10734.2 +37775,2025-03-11T17:13:03.594405-07:00,0.0,10.744166,10744.166 +37776,2025-03-11T17:13:14.333030-07:00,0.0,10.738625,10738.625 +37777,2025-03-11T17:13:25.072087-07:00,0.0,10.739057,10739.057 +37778,2025-03-11T17:13:35.808030-07:00,0.0,10.735943,10735.943 +37779,2025-03-11T17:13:46.539440-07:00,0.0,10.73141,10731.41 +37780,2025-03-11T17:13:57.283206-07:00,0.0,10.743766,10743.766 +37781,2025-03-11T17:14:08.020880-07:00,0.0,10.737674,10737.674 +37782,2025-03-11T17:14:18.758037-07:00,0.0,10.737157,10737.157 +37783,2025-03-11T17:14:29.493294-07:00,0.0,10.735257,10735.257 +37784,2025-03-11T17:14:40.230100-07:00,0.0,10.736806,10736.806 +37785,2025-03-11T17:14:50.964105-07:00,0.0,10.734005,10734.005 +37786,2025-03-11T17:15:01.713769-07:00,0.0,10.749664,10749.664 +37787,2025-03-11T17:15:12.453099-07:00,0.0,10.73933,10739.33 +37788,2025-03-11T17:15:23.189024-07:00,0.0,10.735925,10735.925 +37789,2025-03-11T17:15:33.921322-07:00,0.0,10.732298,10732.298 +37790,2025-03-11T17:15:44.657209-07:00,0.0,10.735887,10735.887 +37791,2025-03-11T17:15:55.401521-07:00,0.0,10.744312,10744.312 +37792,2025-03-11T17:16:06.130203-07:00,0.0,10.728682,10728.682 +37793,2025-03-11T17:16:16.867028-07:00,0.0,10.736825,10736.825 +37794,2025-03-11T17:16:27.608030-07:00,0.0,10.741002,10741.002 +37795,2025-03-11T17:16:38.336024-07:00,0.0,10.727994,10727.994 +37796,2025-03-11T17:16:49.075029-07:00,0.0,10.739005,10739.005 +37797,2025-03-11T17:16:59.813031-07:00,0.0,10.738002,10738.002 +37798,2025-03-11T17:17:10.554030-07:00,0.0,10.740999,10740.999 +37799,2025-03-11T17:17:21.285193-07:00,0.0,10.731163,10731.163 +37800,2025-03-11T17:17:32.018028-07:00,0.0,10.732835,10732.835 +37801,2025-03-11T17:17:42.763027-07:00,0.0,10.744999,10744.999 +37802,2025-03-11T17:17:53.498375-07:00,0.0,10.735348,10735.348 +37803,2025-03-11T17:18:04.233211-07:00,0.0,10.734836,10734.836 +37804,2025-03-11T17:18:14.970424-07:00,0.0,10.737213,10737.213 +37805,2025-03-11T17:18:25.699179-07:00,0.0,10.728755,10728.755 +37806,2025-03-11T17:18:36.435026-07:00,0.0,10.735847,10735.847 +37807,2025-03-11T17:18:47.173032-07:00,0.0,10.738006,10738.006 +37808,2025-03-11T17:18:57.913220-07:00,0.0,10.740188,10740.188 +37809,2025-03-11T17:19:08.648139-07:00,0.0,10.734919,10734.919 +37810,2025-03-11T17:19:19.381030-07:00,0.0,10.732891,10732.891 +37811,2025-03-11T17:19:30.118073-07:00,0.0,10.737043,10737.043 +37812,2025-03-11T17:19:40.856209-07:00,0.0,10.738136,10738.136 +37813,2025-03-11T17:19:51.587230-07:00,0.0,10.731021,10731.021 +37814,2025-03-11T17:20:02.320024-07:00,0.0,10.732794,10732.794 +37815,2025-03-11T17:20:13.055208-07:00,0.0,10.735184,10735.184 +37816,2025-03-11T17:20:23.788223-07:00,0.0,10.733015,10733.015 +37817,2025-03-11T17:20:34.528795-07:00,0.0,10.740572,10740.572 +37818,2025-03-11T17:20:45.260055-07:00,0.0,10.73126,10731.26 +37819,2025-03-11T17:20:55.998043-07:00,0.0,10.737988,10737.988 +37820,2025-03-11T17:21:06.734229-07:00,0.0,10.736186,10736.186 +37821,2025-03-11T17:21:17.462214-07:00,0.0,10.727985,10727.985 +37822,2025-03-11T17:21:28.196032-07:00,0.0,10.733818,10733.818 +37823,2025-03-11T17:21:38.939569-07:00,0.0,10.743537,10743.537 +37824,2025-03-11T17:21:49.667943-07:00,0.0,10.728374,10728.374 +37825,2025-03-11T17:22:00.408241-07:00,0.0,10.740298,10740.298 +37826,2025-03-11T17:22:11.147245-07:00,0.0,10.739004,10739.004 +37827,2025-03-11T17:22:21.878801-07:00,0.0,10.731556,10731.556 +37828,2025-03-11T17:22:32.615261-07:00,0.0,10.73646,10736.46 +37829,2025-03-11T17:22:43.358342-07:00,0.0,10.743081,10743.081 +37830,2025-03-11T17:22:54.090028-07:00,0.0,10.731686,10731.686 +37831,2025-03-11T17:23:04.828225-07:00,0.0,10.738197,10738.197 +37832,2025-03-11T17:23:15.566030-07:00,0.0,10.737805,10737.805 +37833,2025-03-11T17:23:26.301247-07:00,0.0,10.735217,10735.217 +37834,2025-03-11T17:23:37.039149-07:00,0.0,10.737902,10737.902 +37835,2025-03-11T17:23:47.777681-07:00,0.0,10.738532,10738.532 +37836,2025-03-11T17:23:58.505046-07:00,0.0,10.727365,10727.365 +37837,2025-03-11T17:24:09.250242-07:00,0.0,10.745196,10745.196 +37838,2025-03-11T17:24:19.979338-07:00,0.0,10.729096,10729.096 +37839,2025-03-11T17:24:30.719824-07:00,0.0,10.740486,10740.486 +37840,2025-03-11T17:24:41.451528-07:00,0.0,10.731704,10731.704 +37841,2025-03-11T17:24:52.193031-07:00,0.0,10.741503,10741.503 +37842,2025-03-11T17:25:02.923040-07:00,0.0,10.730009,10730.009 +37843,2025-03-11T17:25:13.659925-07:00,0.0,10.736885,10736.885 +37844,2025-03-11T17:25:24.404263-07:00,0.0,10.744338,10744.338 +37845,2025-03-11T17:25:35.137056-07:00,0.0,10.732793,10732.793 +37846,2025-03-11T17:25:45.868435-07:00,0.0,10.731379,10731.379 +37847,2025-03-11T17:25:56.601194-07:00,0.0,10.732759,10732.759 +37848,2025-03-11T17:26:07.337259-07:00,0.0,10.736065,10736.065 +37849,2025-03-11T17:26:18.077755-07:00,0.0,10.740496,10740.496 +37850,2025-03-11T17:26:28.808244-07:00,0.0,10.730489,10730.489 +37851,2025-03-11T17:26:39.540346-07:00,0.0,10.732102,10732.102 +37852,2025-03-11T17:26:50.275029-07:00,0.0,10.734683,10734.683 +37853,2025-03-11T17:27:01.011030-07:00,0.0,10.736001,10736.001 +37854,2025-03-11T17:27:11.752101-07:00,0.0,10.741071,10741.071 +37855,2025-03-11T17:27:22.486163-07:00,0.0,10.734062,10734.062 +37856,2025-03-11T17:27:33.222287-07:00,0.0,10.736124,10736.124 +37857,2025-03-11T17:27:43.958022-07:00,0.0,10.735735,10735.735 +37858,2025-03-11T17:27:54.693030-07:00,0.0,10.735008,10735.008 +37859,2025-03-11T17:28:05.430057-07:00,0.0,10.737027,10737.027 +37860,2025-03-11T17:28:16.163728-07:00,0.0,10.733671,10733.671 +37861,2025-03-11T17:28:26.907516-07:00,0.0,10.743788,10743.788 +37862,2025-03-11T17:28:37.635056-07:00,0.0,10.72754,10727.54 +37863,2025-03-11T17:28:48.374381-07:00,0.0,10.739325,10739.325 +37864,2025-03-11T17:28:59.100579-07:00,0.0,10.726198,10726.198 +37865,2025-03-11T17:29:09.837028-07:00,0.0,10.736449,10736.449 +37866,2025-03-11T17:29:20.568089-07:00,0.0,10.731061,10731.061 +37867,2025-03-11T17:29:31.297210-07:00,0.0,10.729121,10729.121 +37868,2025-03-11T17:29:42.031425-07:00,0.0,10.734215,10734.215 +37869,2025-03-11T17:29:52.761021-07:00,0.0,10.729596,10729.596 +37870,2025-03-11T17:30:03.499217-07:00,0.0,10.738196,10738.196 +37871,2025-03-11T17:30:14.233550-07:00,0.0,10.734333,10734.333 +37872,2025-03-11T17:30:24.968174-07:00,0.0,10.734624,10734.624 +37873,2025-03-11T17:30:35.693022-07:00,0.0,10.724848,10724.848 +37874,2025-03-11T17:30:46.426223-07:00,0.0,10.733201,10733.201 +37875,2025-03-11T17:30:57.163387-07:00,0.0,10.737164,10737.164 +37876,2025-03-11T17:31:07.890081-07:00,0.0,10.726694,10726.694 +37877,2025-03-11T17:31:18.627231-07:00,0.0,10.73715,10737.15 +37878,2025-03-11T17:31:29.353027-07:00,0.0,10.725796,10725.796 +37879,2025-03-11T17:31:40.089030-07:00,0.0,10.736003,10736.003 +37880,2025-03-11T17:31:50.818546-07:00,0.0,10.729516,10729.516 +37881,2025-03-11T17:32:01.550056-07:00,0.0,10.73151,10731.51 +37882,2025-03-11T17:32:12.277047-07:00,0.0,10.726991,10726.991 +37883,2025-03-11T17:32:23.020054-07:00,0.0,10.743007,10743.007 +37884,2025-03-11T17:32:33.755343-07:00,0.0,10.735289,10735.289 +37885,2025-03-11T17:32:44.483200-07:00,0.0,10.727857,10727.857 +37886,2025-03-11T17:32:55.215082-07:00,0.0,10.731882,10731.882 +37887,2025-03-11T17:33:05.947264-07:00,0.0,10.732182,10732.182 +37888,2025-03-11T17:33:16.683034-07:00,0.0,10.73577,10735.77 +37889,2025-03-11T17:33:27.417065-07:00,0.0,10.734031,10734.031 +37890,2025-03-11T17:33:38.152103-07:00,0.0,10.735038,10735.038 +37891,2025-03-11T17:33:48.882144-07:00,0.0,10.730041,10730.041 +37892,2025-03-11T17:33:59.616058-07:00,0.0,10.733914,10733.914 +37893,2025-03-11T17:34:10.353023-07:00,0.0,10.736965,10736.965 +37894,2025-03-11T17:34:21.088301-07:00,0.0,10.735278,10735.278 +37895,2025-03-11T17:34:31.828099-07:00,0.0,10.739798,10739.798 +37896,2025-03-11T17:34:42.566406-07:00,0.0,10.738307,10738.307 +37897,2025-03-11T17:34:53.292025-07:00,0.0,10.725619,10725.619 +37898,2025-03-11T17:35:04.029248-07:00,0.0,10.737223,10737.223 +37899,2025-03-11T17:35:14.769451-07:00,0.0,10.740203,10740.203 +37900,2025-03-11T17:35:25.505217-07:00,0.0,10.735766,10735.766 +37901,2025-03-11T17:35:36.240020-07:00,0.0,10.734803,10734.803 +37902,2025-03-11T17:35:46.970074-07:00,0.0,10.730054,10730.054 +37903,2025-03-11T17:35:57.707027-07:00,0.0,10.736953,10736.953 +37904,2025-03-11T17:36:08.441205-07:00,0.0,10.734178,10734.178 +37905,2025-03-11T17:36:19.169482-07:00,0.0,10.728277,10728.277 +37906,2025-03-11T17:36:29.905025-07:00,0.0,10.735543,10735.543 +37907,2025-03-11T17:36:40.642489-07:00,0.0,10.737464,10737.464 +37908,2025-03-11T17:36:51.368023-07:00,0.0,10.725534,10725.534 +37909,2025-03-11T17:37:02.108727-07:00,0.0,10.740704,10740.704 +37910,2025-03-11T17:37:12.849025-07:00,0.0,10.740298,10740.298 +37911,2025-03-11T17:37:23.588419-07:00,0.0,10.739394,10739.394 +37912,2025-03-11T17:37:34.326125-07:00,0.0,10.737706,10737.706 +37913,2025-03-11T17:37:45.057156-07:00,0.0,10.731031,10731.031 +37914,2025-03-11T17:37:55.789023-07:00,0.0,10.731867,10731.867 +37915,2025-03-11T17:38:06.529191-07:00,0.0,10.740168,10740.168 +37916,2025-03-11T17:38:17.263203-07:00,0.0,10.734012,10734.012 +37917,2025-03-11T17:38:28.001027-07:00,0.0,10.737824,10737.824 +37918,2025-03-11T17:38:38.728027-07:00,0.0,10.727,10727.0 +37919,2025-03-11T17:38:49.467074-07:00,0.0,10.739047,10739.047 +37920,2025-03-11T17:39:00.199429-07:00,0.0,10.732355,10732.355 +37921,2025-03-11T17:39:10.931024-07:00,0.0,10.731595,10731.595 +37922,2025-03-11T17:39:21.672245-07:00,0.0,10.741221,10741.221 +37923,2025-03-11T17:39:32.401227-07:00,0.0,10.728982,10728.982 +37924,2025-03-11T17:39:43.134330-07:00,0.0,10.733103,10733.103 +37925,2025-03-11T17:39:53.870028-07:00,0.0,10.735698,10735.698 +37926,2025-03-11T17:40:04.603037-07:00,0.0,10.733009,10733.009 +37927,2025-03-11T17:40:15.335214-07:00,0.0,10.732177,10732.177 +37928,2025-03-11T17:40:26.073757-07:00,0.0,10.738543,10738.543 +37929,2025-03-11T17:40:36.798309-07:00,0.0,10.724552,10724.552 +37930,2025-03-11T17:40:47.535218-07:00,0.0,10.736909,10736.909 +37931,2025-03-11T17:40:58.268425-07:00,0.0,10.733207,10733.207 +37932,2025-03-11T17:41:09.006095-07:00,0.0,10.73767,10737.67 +37933,2025-03-11T17:41:19.739024-07:00,0.0,10.732929,10732.929 +37934,2025-03-11T17:41:30.475036-07:00,0.0,10.736012,10736.012 +37935,2025-03-11T17:41:41.203679-07:00,0.0,10.728643,10728.643 +37936,2025-03-11T17:41:51.943032-07:00,0.0,10.739353,10739.353 +37937,2025-03-11T17:42:02.671103-07:00,0.0,10.728071,10728.071 +37938,2025-03-11T17:42:13.404140-07:00,0.0,10.733037,10733.037 +37939,2025-03-11T17:42:24.141861-07:00,0.0,10.737721,10737.721 +37940,2025-03-11T17:42:34.881233-07:00,0.0,10.739372,10739.372 +37941,2025-03-11T17:42:45.608162-07:00,0.0,10.726929,10726.929 +37942,2025-03-11T17:42:56.351235-07:00,0.0,10.743073,10743.073 +37943,2025-03-11T17:43:07.076048-07:00,0.0,10.724813,10724.813 +37944,2025-03-11T17:43:17.812053-07:00,0.0,10.736005,10736.005 +37945,2025-03-11T17:43:28.556144-07:00,0.0,10.744091,10744.091 +37946,2025-03-11T17:43:39.283155-07:00,0.0,10.727011,10727.011 +37947,2025-03-11T17:43:50.015019-07:00,0.0,10.731864,10731.864 +37948,2025-03-11T17:44:00.750023-07:00,0.0,10.735004,10735.004 +37949,2025-03-11T17:44:11.479244-07:00,0.0,10.729221,10729.221 +37950,2025-03-11T17:44:22.217218-07:00,0.0,10.737974,10737.974 +37951,2025-03-11T17:44:32.947101-07:00,0.0,10.729883,10729.883 +37952,2025-03-11T17:44:43.680091-07:00,0.0,10.73299,10732.99 +37953,2025-03-11T17:44:54.419211-07:00,0.0,10.73912,10739.12 +37954,2025-03-11T17:45:05.146382-07:00,0.0,10.727171,10727.171 +37955,2025-03-11T17:45:15.884269-07:00,0.0,10.737887,10737.887 +37956,2025-03-11T17:45:26.618238-07:00,0.0,10.733969,10733.969 +37957,2025-03-11T17:45:37.347192-07:00,0.0,10.728954,10728.954 +37958,2025-03-11T17:45:48.089847-07:00,0.0,10.742655,10742.655 +37959,2025-03-11T17:45:58.820091-07:00,0.0,10.730244,10730.244 +37960,2025-03-11T17:46:09.548229-07:00,0.0,10.728138,10728.138 +37961,2025-03-11T17:46:20.286417-07:00,0.0,10.738188,10738.188 +37962,2025-03-11T17:46:31.019024-07:00,0.0,10.732607,10732.607 +37963,2025-03-11T17:46:41.741023-07:00,0.0,10.721999,10721.999 +37964,2025-03-11T17:46:52.479225-07:00,0.0,10.738202,10738.202 +37965,2025-03-11T17:47:03.214334-07:00,0.0,10.735109,10735.109 +37966,2025-03-11T17:47:13.946661-07:00,0.0,10.732327,10732.327 +37967,2025-03-11T17:47:24.673813-07:00,0.0,10.727152,10727.152 +37968,2025-03-11T17:47:35.404362-07:00,0.0,10.730549,10730.549 +37969,2025-03-11T17:47:46.142024-07:00,0.0,10.737662,10737.662 +37970,2025-03-11T17:47:56.866081-07:00,0.0,10.724057,10724.057 +37971,2025-03-11T17:48:07.604312-07:00,0.0,10.738231,10738.231 +37972,2025-03-11T17:48:18.329097-07:00,0.0,10.724785,10724.785 +37973,2025-03-11T17:48:29.065323-07:00,0.0,10.736226,10736.226 +37974,2025-03-11T17:48:39.794230-07:00,0.0,10.728907,10728.907 +37975,2025-03-11T17:48:50.524034-07:00,0.0,10.729804,10729.804 +37976,2025-03-11T17:49:01.260029-07:00,0.0,10.735995,10735.995 +37977,2025-03-11T17:49:11.994146-07:00,0.0,10.734117,10734.117 +37978,2025-03-11T17:49:22.723199-07:00,0.0,10.729053,10729.053 +37979,2025-03-11T17:49:33.451082-07:00,0.0,10.727883,10727.883 +37980,2025-03-11T17:49:44.187283-07:00,0.0,10.736201,10736.201 +37981,2025-03-11T17:49:54.923689-07:00,0.0,10.736406,10736.406 +37982,2025-03-11T17:50:05.655343-07:00,0.0,10.731654,10731.654 +37983,2025-03-11T17:50:16.384029-07:00,0.0,10.728686,10728.686 +37984,2025-03-11T17:50:27.120241-07:00,0.0,10.736212,10736.212 +37985,2025-03-11T17:50:37.847321-07:00,0.0,10.72708,10727.08 +37986,2025-03-11T17:50:48.578218-07:00,0.0,10.730897,10730.897 +37987,2025-03-11T17:50:59.307281-07:00,0.0,10.729063,10729.063 +37988,2025-03-11T17:51:10.037234-07:00,0.0,10.729953,10729.953 +37989,2025-03-11T17:51:20.775131-07:00,0.0,10.737897,10737.897 +37990,2025-03-11T17:51:31.508428-07:00,0.0,10.733297,10733.297 +37991,2025-03-11T17:51:42.232112-07:00,0.0,10.723684,10723.684 +37992,2025-03-11T17:51:52.969079-07:00,0.0,10.736967,10736.967 +37993,2025-03-11T17:52:03.699215-07:00,0.0,10.730136,10730.136 +37994,2025-03-11T17:52:14.431553-07:00,0.0,10.732338,10732.338 +37995,2025-03-11T17:52:25.167236-07:00,0.0,10.735683,10735.683 +37996,2025-03-11T17:52:35.896123-07:00,0.0,10.728887,10728.887 +37997,2025-03-11T17:52:46.621025-07:00,0.0,10.724902,10724.902 +37998,2025-03-11T17:52:57.350026-07:00,0.0,10.729001,10729.001 +37999,2025-03-11T17:53:08.080806-07:00,0.0,10.73078,10730.78 +38000,2025-03-11T17:53:18.820263-07:00,0.0,10.739457,10739.457 +38001,2025-03-11T17:53:29.544238-07:00,0.0,10.723975,10723.975 +38002,2025-03-11T17:53:40.390585-07:00,0.0,10.846347,10846.347 +38003,2025-03-11T17:53:51.122794-07:00,0.0,10.732209,10732.209 +38004,2025-03-11T17:54:01.863602-07:00,0.0,10.740808,10740.808 +38005,2025-03-11T17:54:12.591763-07:00,0.0,10.728161,10728.161 +38006,2025-03-11T17:54:23.322571-07:00,0.0,10.730808,10730.808 +38007,2025-03-11T17:54:34.054649-07:00,0.0,10.732078,10732.078 +38008,2025-03-11T17:54:44.794477-07:00,0.0,10.739828,10739.828 +38009,2025-03-11T17:54:55.519573-07:00,0.0,10.725096,10725.096 +38010,2025-03-11T17:55:06.247605-07:00,0.0,10.728032,10728.032 +38011,2025-03-11T17:55:16.988799-07:00,0.0,10.741194,10741.194 +38012,2025-03-11T17:55:27.718582-07:00,0.0,10.729783,10729.783 +38013,2025-03-11T17:55:38.450052-07:00,31.0,10.73147,10731.47 +38014,2025-03-11T17:55:39.654992-07:00,343.0,1.20494,1204.94 +38015,2025-03-11T17:55:41.665975-07:00,0.0,2.010983,2010.983 +38016,2025-03-11T17:55:49.183777-07:00,0.0,7.517802,7517.802 +38017,2025-03-11T17:55:59.911582-07:00,0.0,10.727805,10727.805 +38018,2025-03-11T17:56:10.649582-07:00,0.0,10.738,10738.0 +38019,2025-03-11T17:56:21.383170-07:00,0.0,10.733588,10733.588 +38020,2025-03-11T17:56:32.104655-07:00,0.0,10.721485,10721.485 +38021,2025-03-11T17:56:42.842054-07:00,0.0,10.737399,10737.399 +38022,2025-03-11T17:56:53.578927-07:00,0.0,10.736873,10736.873 +38023,2025-03-11T17:56:53.847826-07:00,256.0,0.268899,268.899 +38024,2025-03-11T17:57:04.307784-07:00,293.0,10.459958,10459.958 +38025,2025-03-11T17:57:15.039580-07:00,298.0,10.731796,10731.796 +38026,2025-03-11T17:57:25.771746-07:00,208.0,10.732166,10732.166 +38027,2025-03-11T17:57:36.502642-07:00,347.0,10.730896,10730.896 +38028,2025-03-11T17:57:47.232740-07:00,327.0,10.730098,10730.098 +38029,2025-03-11T17:57:57.971263-07:00,317.0,10.738523,10738.523 +38030,2025-03-11T17:58:08.697608-07:00,214.0,10.726345,10726.345 +38031,2025-03-11T17:58:19.423577-07:00,381.0,10.725969,10725.969 +38032,2025-03-11T17:58:30.155966-07:00,327.0,10.732389,10732.389 +38033,2025-03-11T17:58:40.897784-07:00,336.0,10.741818,10741.818 +38034,2025-03-11T17:58:51.631584-07:00,338.0,10.7338,10733.8 +38035,2025-03-11T17:59:00.170460-07:00,0.0,8.538876,8538.876 +38036,2025-03-11T17:59:02.363833-07:00,0.0,2.193373,2193.373 +38037,2025-03-11T17:59:13.090810-07:00,0.0,10.726977,10726.977 +38038,2025-03-11T17:59:23.832814-07:00,0.0,10.742004,10742.004 +38039,2025-03-11T17:59:34.561579-07:00,0.0,10.728765,10728.765 +38040,2025-03-11T17:59:45.294611-07:00,0.0,10.733032,10733.032 +38041,2025-03-11T17:59:56.033767-07:00,0.0,10.739156,10739.156 +38042,2025-03-11T18:00:06.759579-07:00,0.0,10.725812,10725.812 +38043,2025-03-11T18:00:17.489776-07:00,0.0,10.730197,10730.197 +38044,2025-03-11T18:00:28.232893-07:00,0.0,10.743117,10743.117 +38045,2025-03-11T18:00:38.957579-07:00,0.0,10.724686,10724.686 +38046,2025-03-11T18:00:49.694829-07:00,0.0,10.73725,10737.25 +38047,2025-03-11T18:01:00.428583-07:00,0.0,10.733754,10733.754 +38048,2025-03-11T18:01:11.161742-07:00,0.0,10.733159,10733.159 +38049,2025-03-11T18:01:21.897718-07:00,0.0,10.735976,10735.976 +38050,2025-03-11T18:01:32.635582-07:00,0.0,10.737864,10737.864 +38051,2025-03-11T18:01:43.375752-07:00,0.0,10.74017,10740.17 +38052,2025-03-11T18:01:54.106778-07:00,0.0,10.731026,10731.026 +38053,2025-03-11T18:02:04.842350-07:00,0.0,10.735572,10735.572 +38054,2025-03-11T18:02:15.568579-07:00,0.0,10.726229,10726.229 +38055,2025-03-11T18:02:26.309582-07:00,0.0,10.741003,10741.003 +38056,2025-03-11T18:02:37.045732-07:00,0.0,10.73615,10736.15 +38057,2025-03-11T18:02:47.770579-07:00,0.0,10.724847,10724.847 +38058,2025-03-11T18:02:58.507924-07:00,0.0,10.737345,10737.345 +38059,2025-03-11T18:03:09.237344-07:00,0.0,10.72942,10729.42 +38060,2025-03-11T18:03:19.968584-07:00,0.0,10.73124,10731.24 +38061,2025-03-11T18:03:30.708653-07:00,0.0,10.740069,10740.069 +38062,2025-03-11T18:03:41.443584-07:00,0.0,10.734931,10734.931 +38063,2025-03-11T18:03:52.185615-07:00,0.0,10.742031,10742.031 +38064,2025-03-11T18:04:02.919860-07:00,0.0,10.734245,10734.245 +38065,2025-03-11T18:04:13.654038-07:00,0.0,10.734178,10734.178 +38066,2025-03-11T18:04:24.377579-07:00,0.0,10.723541,10723.541 +38067,2025-03-11T18:04:35.114789-07:00,0.0,10.73721,10737.21 +38068,2025-03-11T18:04:45.844781-07:00,0.0,10.729992,10729.992 +38069,2025-03-11T18:04:56.577573-07:00,0.0,10.732792,10732.792 +38070,2025-03-11T18:05:07.313676-07:00,0.0,10.736103,10736.103 +38071,2025-03-11T18:05:18.046768-07:00,0.0,10.733092,10733.092 +38072,2025-03-11T18:05:28.779608-07:00,0.0,10.73284,10732.84 +38073,2025-03-11T18:05:39.507580-07:00,0.0,10.727972,10727.972 +38074,2025-03-11T18:05:50.236773-07:00,0.0,10.729193,10729.193 +38075,2025-03-11T18:06:00.974583-07:00,0.0,10.73781,10737.81 +38076,2025-03-11T18:06:11.703783-07:00,0.0,10.7292,10729.2 +38077,2025-03-11T18:06:22.439003-07:00,0.0,10.73522,10735.22 +38078,2025-03-11T18:06:33.175839-07:00,0.0,10.736836,10736.836 +38079,2025-03-11T18:06:43.900788-07:00,0.0,10.724949,10724.949 +38080,2025-03-11T18:06:54.639771-07:00,0.0,10.738983,10738.983 +38081,2025-03-11T18:07:05.367767-07:00,0.0,10.727996,10727.996 +38082,2025-03-11T18:07:16.103693-07:00,0.0,10.735926,10735.926 +38083,2025-03-11T18:07:26.844583-07:00,0.0,10.74089,10740.89 +38084,2025-03-11T18:07:37.573796-07:00,0.0,10.729213,10729.213 +38085,2025-03-11T18:07:48.305773-07:00,0.0,10.731977,10731.977 +38086,2025-03-11T18:07:59.046605-07:00,0.0,10.740832,10740.832 +38087,2025-03-11T18:08:09.781616-07:00,0.0,10.735011,10735.011 +38088,2025-03-11T18:08:20.510276-07:00,0.0,10.72866,10728.66 +38089,2025-03-11T18:08:31.243991-07:00,0.0,10.733715,10733.715 +38090,2025-03-11T18:08:41.975608-07:00,0.0,10.731617,10731.617 +38091,2025-03-11T18:08:52.711733-07:00,0.0,10.736125,10736.125 +38092,2025-03-11T18:09:03.442948-07:00,0.0,10.731215,10731.215 +38093,2025-03-11T18:09:14.181243-07:00,0.0,10.738295,10738.295 +38094,2025-03-11T18:09:24.911650-07:00,0.0,10.730407,10730.407 +38095,2025-03-11T18:09:35.642759-07:00,0.0,10.731109,10731.109 +38096,2025-03-11T18:09:46.374778-07:00,0.0,10.732019,10732.019 +38097,2025-03-11T18:09:57.105581-07:00,0.0,10.730803,10730.803 +38098,2025-03-11T18:10:07.839618-07:00,0.0,10.734037,10734.037 +38099,2025-03-11T18:10:18.566782-07:00,0.0,10.727164,10727.164 +38100,2025-03-11T18:10:29.305076-07:00,0.0,10.738294,10738.294 +38101,2025-03-11T18:10:40.040252-07:00,0.0,10.735176,10735.176 +38102,2025-03-11T18:10:50.767406-07:00,0.0,10.727154,10727.154 +38103,2025-03-11T18:11:01.496784-07:00,0.0,10.729378,10729.378 +38104,2025-03-11T18:11:12.229758-07:00,0.0,10.732974,10732.974 +38105,2025-03-11T18:11:22.955731-07:00,0.0,10.725973,10725.973 +38106,2025-03-11T18:11:33.688607-07:00,0.0,10.732876,10732.876 +38107,2025-03-11T18:11:44.422582-07:00,0.0,10.733975,10733.975 +38108,2025-03-11T18:11:55.153990-07:00,0.0,10.731408,10731.408 +38109,2025-03-11T18:12:05.890764-07:00,0.0,10.736774,10736.774 +38110,2025-03-11T18:12:16.618170-07:00,0.0,10.727406,10727.406 +38111,2025-03-11T18:12:27.353583-07:00,0.0,10.735413,10735.413 +38112,2025-03-11T18:12:38.080746-07:00,0.0,10.727163,10727.163 +38113,2025-03-11T18:12:48.810583-07:00,0.0,10.729837,10729.837 +38114,2025-03-11T18:12:59.546575-07:00,0.0,10.735992,10735.992 +38115,2025-03-11T18:13:10.274802-07:00,0.0,10.728227,10728.227 +38116,2025-03-11T18:13:21.015594-07:00,0.0,10.740792,10740.792 +38117,2025-03-11T18:13:31.739577-07:00,0.0,10.723983,10723.983 +38118,2025-03-11T18:13:42.473614-07:00,0.0,10.734037,10734.037 +38119,2025-03-11T18:13:53.201671-07:00,0.0,10.728057,10728.057 +38120,2025-03-11T18:14:03.940577-07:00,0.0,10.738906,10738.906 +38121,2025-03-11T18:14:14.666788-07:00,0.0,10.726211,10726.211 +38122,2025-03-11T18:14:25.400771-07:00,0.0,10.733983,10733.983 +38123,2025-03-11T18:14:36.135269-07:00,0.0,10.734498,10734.498 +38124,2025-03-11T18:14:46.860804-07:00,0.0,10.725535,10725.535 +38125,2025-03-11T18:14:57.600599-07:00,0.0,10.739795,10739.795 +38126,2025-03-11T18:15:08.329690-07:00,0.0,10.729091,10729.091 +38127,2025-03-11T18:15:19.057660-07:00,0.0,10.72797,10727.97 +38128,2025-03-11T18:15:29.791804-07:00,0.0,10.734144,10734.144 +38129,2025-03-11T18:15:40.523583-07:00,0.0,10.731779,10731.779 +38130,2025-03-11T18:15:51.257652-07:00,0.0,10.734069,10734.069 +38131,2025-03-11T18:16:01.987583-07:00,0.0,10.729931,10729.931 +38132,2025-03-11T18:16:12.720132-07:00,0.0,10.732549,10732.549 +38133,2025-03-11T18:16:23.446575-07:00,0.0,10.726443,10726.443 +38134,2025-03-11T18:16:34.186580-07:00,0.0,10.740005,10740.005 +38135,2025-03-11T18:16:44.916751-07:00,0.0,10.730171,10730.171 +38136,2025-03-11T18:16:55.647579-07:00,0.0,10.730828,10730.828 +38137,2025-03-11T18:17:06.383778-07:00,0.0,10.736199,10736.199 +38138,2025-03-11T18:17:17.117581-07:00,0.0,10.733803,10733.803 +38139,2025-03-11T18:17:27.853771-07:00,0.0,10.73619,10736.19 +38140,2025-03-11T18:17:38.590894-07:00,0.0,10.737123,10737.123 +38141,2025-03-11T18:17:49.324597-07:00,0.0,10.733703,10733.703 +38142,2025-03-11T18:18:00.056003-07:00,0.0,10.731406,10731.406 +38143,2025-03-11T18:18:10.793758-07:00,0.0,10.737755,10737.755 +38144,2025-03-11T18:18:21.528576-07:00,0.0,10.734818,10734.818 +38145,2025-03-11T18:18:32.256611-07:00,0.0,10.728035,10728.035 +38146,2025-03-11T18:18:42.983777-07:00,0.0,10.727166,10727.166 +38147,2025-03-11T18:18:53.723610-07:00,0.0,10.739833,10739.833 +38148,2025-03-11T18:18:54.605719-07:00,0.0,0.882109,882.109 +38149,2025-03-11T18:19:04.447786-07:00,0.0,9.842067,9842.067 +38150,2025-03-11T18:19:15.183797-07:00,0.0,10.736011,10736.011 +38151,2025-03-11T18:19:25.914578-07:00,0.0,10.730781,10730.781 +38152,2025-03-11T18:19:36.641578-07:00,0.0,10.727,10727.0 +38153,2025-03-11T18:19:47.376092-07:00,0.0,10.734514,10734.514 +38154,2025-03-11T18:19:58.108797-07:00,0.0,10.732705,10732.705 +38155,2025-03-11T18:20:08.845614-07:00,0.0,10.736817,10736.817 +38156,2025-03-11T18:20:19.572263-07:00,0.0,10.726649,10726.649 +38157,2025-03-11T18:20:30.313808-07:00,0.0,10.741545,10741.545 +38158,2025-03-11T18:20:41.044582-07:00,0.0,10.730774,10730.774 +38159,2025-03-11T18:20:51.768573-07:00,0.0,10.723991,10723.991 +38160,2025-03-11T18:21:02.507650-07:00,0.0,10.739077,10739.077 +38161,2025-03-11T18:21:13.243968-07:00,0.0,10.736318,10736.318 +38162,2025-03-11T18:21:23.978582-07:00,0.0,10.734614,10734.614 +38163,2025-03-11T18:21:34.713793-07:00,0.0,10.735211,10735.211 +38164,2025-03-11T18:21:45.454612-07:00,0.0,10.740819,10740.819 +38165,2025-03-11T18:21:56.189834-07:00,0.0,10.735222,10735.222 +38166,2025-03-11T18:22:06.923580-07:00,0.0,10.733746,10733.746 +38167,2025-03-11T18:22:17.650575-07:00,0.0,10.726995,10726.995 +38168,2025-03-11T18:22:28.384003-07:00,0.0,10.733428,10733.428 +38169,2025-03-11T18:22:39.124754-07:00,0.0,10.740751,10740.751 +38170,2025-03-11T18:22:49.855613-07:00,0.0,10.730859,10730.859 +38171,2025-03-11T18:23:00.591638-07:00,0.0,10.736025,10736.025 +38172,2025-03-11T18:23:11.314755-07:00,0.0,10.723117,10723.117 +38173,2025-03-11T18:23:22.051814-07:00,0.0,10.737059,10737.059 +38174,2025-03-11T18:23:32.784579-07:00,0.0,10.732765,10732.765 +38175,2025-03-11T18:23:43.518585-07:00,0.0,10.734006,10734.006 +38176,2025-03-11T18:23:54.255782-07:00,0.0,10.737197,10737.197 +38177,2025-03-11T18:24:04.982582-07:00,0.0,10.7268,10726.8 +38178,2025-03-11T18:24:15.721756-07:00,0.0,10.739174,10739.174 +38179,2025-03-11T18:24:26.451432-07:00,0.0,10.729676,10729.676 +38180,2025-03-11T18:24:37.189672-07:00,0.0,10.73824,10738.24 +38181,2025-03-11T18:24:47.916579-07:00,0.0,10.726907,10726.907 +38182,2025-03-11T18:24:58.654689-07:00,0.0,10.73811,10738.11 +38183,2025-03-11T18:25:09.386754-07:00,0.0,10.732065,10732.065 +38184,2025-03-11T18:25:20.121841-07:00,0.0,10.735087,10735.087 +38185,2025-03-11T18:25:30.857796-07:00,0.0,10.735955,10735.955 +38186,2025-03-11T18:25:41.597635-07:00,0.0,10.739839,10739.839 +38187,2025-03-11T18:25:52.333983-07:00,0.0,10.736348,10736.348 +38188,2025-03-11T18:26:03.066230-07:00,0.0,10.732247,10732.247 +38189,2025-03-11T18:26:13.808869-07:00,0.0,10.742639,10742.639 +38190,2025-03-11T18:26:24.544584-07:00,0.0,10.735715,10735.715 +38191,2025-03-11T18:26:35.271575-07:00,0.0,10.726991,10726.991 +38192,2025-03-11T18:26:46.015697-07:00,0.0,10.744122,10744.122 +38193,2025-03-11T18:26:56.747626-07:00,0.0,10.731929,10731.929 +38194,2025-03-11T18:27:07.479786-07:00,0.0,10.73216,10732.16 +38195,2025-03-11T18:27:18.219585-07:00,0.0,10.739799,10739.799 +38196,2025-03-11T18:27:28.959989-07:00,0.0,10.740404,10740.404 +38197,2025-03-11T18:27:39.691921-07:00,0.0,10.731932,10731.932 +38198,2025-03-11T18:27:50.433161-07:00,0.0,10.74124,10741.24 +38199,2025-03-11T18:28:01.165579-07:00,0.0,10.732418,10732.418 +38200,2025-03-11T18:28:11.905581-07:00,0.0,10.740002,10740.002 +38201,2025-03-11T18:28:22.641672-07:00,0.0,10.736091,10736.091 +38202,2025-03-11T18:28:33.379266-07:00,0.0,10.737594,10737.594 +38203,2025-03-11T18:28:44.109789-07:00,0.0,10.730523,10730.523 +38204,2025-03-11T18:28:54.847062-07:00,0.0,10.737273,10737.273 +38205,2025-03-11T18:29:05.585992-07:00,0.0,10.73893,10738.93 +38206,2025-03-11T18:29:16.317692-07:00,0.0,10.7317,10731.7 +38207,2025-03-11T18:29:27.053576-07:00,0.0,10.735884,10735.884 +38208,2025-03-11T18:29:37.793589-07:00,0.0,10.740013,10740.013 +38209,2025-03-11T18:29:48.532805-07:00,0.0,10.739216,10739.216 +38210,2025-03-11T18:29:59.265381-07:00,0.0,10.732576,10732.576 +38211,2025-03-11T18:30:09.999711-07:00,0.0,10.73433,10734.33 +38212,2025-03-11T18:30:20.738708-07:00,0.0,10.738997,10738.997 +38213,2025-03-11T18:30:31.475681-07:00,0.0,10.736973,10736.973 +38214,2025-03-11T18:30:42.218765-07:00,0.0,10.743084,10743.084 +38215,2025-03-11T18:30:52.956761-07:00,0.0,10.737996,10737.996 +38216,2025-03-11T18:31:03.686579-07:00,0.0,10.729818,10729.818 +38217,2025-03-11T18:31:14.424580-07:00,0.0,10.738001,10738.001 +38218,2025-03-11T18:31:25.162575-07:00,0.0,10.737995,10737.995 +38219,2025-03-11T18:31:35.903583-07:00,0.0,10.741008,10741.008 +38220,2025-03-11T18:31:46.637041-07:00,0.0,10.733458,10733.458 +38221,2025-03-11T18:31:57.382749-07:00,0.0,10.745708,10745.708 +38222,2025-03-11T18:32:08.117728-07:00,0.0,10.734979,10734.979 +38223,2025-03-11T18:32:18.854579-07:00,0.0,10.736851,10736.851 +38224,2025-03-11T18:32:29.594639-07:00,0.0,10.74006,10740.06 +38225,2025-03-11T18:32:40.328771-07:00,0.0,10.734132,10734.132 +38226,2025-03-11T18:32:51.070960-07:00,0.0,10.742189,10742.189 +38227,2025-03-11T18:33:01.806580-07:00,0.0,10.73562,10735.62 +38228,2025-03-11T18:33:12.545893-07:00,0.0,10.739313,10739.313 +38229,2025-03-11T18:33:23.294584-07:00,0.0,10.748691,10748.691 +38230,2025-03-11T18:33:34.029589-07:00,0.0,10.735005,10735.005 +38231,2025-03-11T18:33:44.773581-07:00,0.0,10.743992,10743.992 +38232,2025-03-11T18:33:55.507734-07:00,0.0,10.734153,10734.153 +38233,2025-03-11T18:34:06.246752-07:00,0.0,10.739018,10739.018 +38234,2025-03-11T18:34:16.987246-07:00,0.0,10.740494,10740.494 +38235,2025-03-11T18:34:27.723587-07:00,0.0,10.736341,10736.341 +38236,2025-03-11T18:34:38.468779-07:00,0.0,10.745192,10745.192 +38237,2025-03-11T18:34:49.213582-07:00,0.0,10.744803,10744.803 +38238,2025-03-11T18:34:59.946761-07:00,0.0,10.733179,10733.179 +38239,2025-03-11T18:35:10.693770-07:00,0.0,10.747009,10747.009 +38240,2025-03-11T18:35:21.436424-07:00,0.0,10.742654,10742.654 +38241,2025-03-11T18:35:32.179967-07:00,0.0,10.743543,10743.543 +38242,2025-03-11T18:35:42.919575-07:00,0.0,10.739608,10739.608 +38243,2025-03-11T18:35:53.663578-07:00,0.0,10.744003,10744.003 +38244,2025-03-11T18:36:04.402734-07:00,0.0,10.739156,10739.156 +38245,2025-03-11T18:36:15.145695-07:00,0.0,10.742961,10742.961 +38246,2025-03-11T18:36:25.896582-07:00,0.0,10.750887,10750.887 +38247,2025-03-11T18:36:36.635608-07:00,0.0,10.739026,10739.026 +38248,2025-03-11T18:36:47.375727-07:00,0.0,10.740119,10740.119 +38249,2025-03-11T18:36:58.109978-07:00,0.0,10.734251,10734.251 +38250,2025-03-11T18:37:08.853787-07:00,0.0,10.743809,10743.809 +38251,2025-03-11T18:37:19.596992-07:00,0.0,10.743205,10743.205 +38252,2025-03-11T18:37:30.336766-07:00,0.0,10.739774,10739.774 +38253,2025-03-11T18:37:41.077578-07:00,0.0,10.740812,10740.812 +38254,2025-03-11T18:37:51.817607-07:00,0.0,10.740029,10740.029 +38255,2025-03-11T18:38:02.555770-07:00,0.0,10.738163,10738.163 +38256,2025-03-11T18:38:13.297071-07:00,0.0,10.741301,10741.301 +38257,2025-03-11T18:38:24.041761-07:00,0.0,10.74469,10744.69 +38258,2025-03-11T18:38:34.778715-07:00,0.0,10.736954,10736.954 +38259,2025-03-11T18:38:45.529904-07:00,0.0,10.751189,10751.189 +38260,2025-03-11T18:38:56.266583-07:00,0.0,10.736679,10736.679 +38261,2025-03-11T18:39:07.001624-07:00,0.0,10.735041,10735.041 +38262,2025-03-11T18:39:17.737719-07:00,0.0,10.736095,10736.095 +38263,2025-03-11T18:39:28.472750-07:00,0.0,10.735031,10735.031 +38264,2025-03-11T18:39:39.211605-07:00,0.0,10.738855,10738.855 +38265,2025-03-11T18:39:49.951874-07:00,0.0,10.740269,10740.269 +38266,2025-03-11T18:40:00.700635-07:00,0.0,10.748761,10748.761 +38267,2025-03-11T18:40:11.430973-07:00,0.0,10.730338,10730.338 +38268,2025-03-11T18:40:22.173776-07:00,0.0,10.742803,10742.803 +38269,2025-03-11T18:40:32.905758-07:00,0.0,10.731982,10731.982 +38270,2025-03-11T18:40:43.647711-07:00,0.0,10.741953,10741.953 +38271,2025-03-11T18:40:54.387580-07:00,0.0,10.739869,10739.869 +38272,2025-03-11T18:41:05.127606-07:00,0.0,10.740026,10740.026 +38273,2025-03-11T18:41:15.860581-07:00,0.0,10.732975,10732.975 +38274,2025-03-11T18:41:26.598927-07:00,0.0,10.738346,10738.346 +38275,2025-03-11T18:41:37.326606-07:00,0.0,10.727679,10727.679 +38276,2025-03-11T18:41:48.068022-07:00,0.0,10.741416,10741.416 +38277,2025-03-11T18:41:58.807136-07:00,0.0,10.739114,10739.114 +38278,2025-03-11T18:42:09.532991-07:00,0.0,10.725855,10725.855 +38279,2025-03-11T18:42:20.271691-07:00,0.0,10.7387,10738.7 +38280,2025-03-11T18:42:31.005580-07:00,0.0,10.733889,10733.889 +38281,2025-03-11T18:42:41.743785-07:00,0.0,10.738205,10738.205 +38282,2025-03-11T18:42:52.479657-07:00,0.0,10.735872,10735.872 +38283,2025-03-11T18:43:03.206581-07:00,0.0,10.726924,10726.924 +38284,2025-03-11T18:43:13.939810-07:00,0.0,10.733229,10733.229 +38285,2025-03-11T18:43:24.675822-07:00,0.0,10.736012,10736.012 +38286,2025-03-11T18:43:35.406798-07:00,0.0,10.730976,10730.976 +38287,2025-03-11T18:43:46.138849-07:00,0.0,10.732051,10732.051 +38288,2025-03-11T18:43:56.872581-07:00,0.0,10.733732,10733.732 +38289,2025-03-11T18:44:07.602775-07:00,0.0,10.730194,10730.194 +38290,2025-03-11T18:44:18.333576-07:00,0.0,10.730801,10730.801 +38291,2025-03-11T18:44:29.064644-07:00,0.0,10.731068,10731.068 +38292,2025-03-11T18:44:39.796778-07:00,0.0,10.732134,10732.134 +38293,2025-03-11T18:44:50.537389-07:00,0.0,10.740611,10740.611 +38294,2025-03-11T18:45:01.270582-07:00,0.0,10.733193,10733.193 +38295,2025-03-11T18:45:12.003838-07:00,0.0,10.733256,10733.256 +38296,2025-03-11T18:45:22.739593-07:00,0.0,10.735755,10735.755 +38297,2025-03-11T18:45:33.479990-07:00,0.0,10.740397,10740.397 +38298,2025-03-11T18:45:44.211578-07:00,0.0,10.731588,10731.588 +38299,2025-03-11T18:45:54.953644-07:00,0.0,10.742066,10742.066 +38300,2025-03-11T18:46:05.679765-07:00,0.0,10.726121,10726.121 +38301,2025-03-11T18:46:16.414148-07:00,0.0,10.734383,10734.383 +38302,2025-03-11T18:46:27.155786-07:00,0.0,10.741638,10741.638 +38303,2025-03-11T18:46:37.884573-07:00,0.0,10.728787,10728.787 +38304,2025-03-11T18:46:48.622768-07:00,0.0,10.738195,10738.195 +38305,2025-03-11T18:46:59.355792-07:00,0.0,10.733024,10733.024 +38306,2025-03-11T18:47:10.088583-07:00,0.0,10.732791,10732.791 +38307,2025-03-11T18:47:20.820051-07:00,0.0,10.731468,10731.468 +38308,2025-03-11T18:47:31.556817-07:00,0.0,10.736766,10736.766 +38309,2025-03-11T18:47:42.289815-07:00,0.0,10.732998,10732.998 +38310,2025-03-11T18:47:53.027645-07:00,0.0,10.73783,10737.83 +38311,2025-03-11T18:48:03.759580-07:00,0.0,10.731935,10731.935 +38312,2025-03-11T18:48:14.484411-07:00,0.0,10.724831,10724.831 +38313,2025-03-11T18:48:25.227675-07:00,0.0,10.743264,10743.264 +38314,2025-03-11T18:48:35.949584-07:00,0.0,10.721909,10721.909 +38315,2025-03-11T18:48:46.687762-07:00,0.0,10.738178,10738.178 +38316,2025-03-11T18:48:57.419601-07:00,0.0,10.731839,10731.839 +38317,2025-03-11T18:49:08.151576-07:00,0.0,10.731975,10731.975 +38318,2025-03-11T18:49:18.880579-07:00,0.0,10.729003,10729.003 +38319,2025-03-11T18:49:29.615006-07:00,0.0,10.734427,10734.427 +38320,2025-03-11T18:49:40.349842-07:00,0.0,10.734836,10734.836 +38321,2025-03-11T18:49:51.089577-07:00,0.0,10.739735,10739.735 +38322,2025-03-11T18:50:01.821862-07:00,0.0,10.732285,10732.285 +38323,2025-03-11T18:50:12.553348-07:00,0.0,10.731486,10731.486 +38324,2025-03-11T18:50:23.284575-07:00,0.0,10.731227,10731.227 +38325,2025-03-11T18:50:34.009653-07:00,0.0,10.725078,10725.078 +38326,2025-03-11T18:50:44.743145-07:00,0.0,10.733492,10733.492 +38327,2025-03-11T18:50:55.473644-07:00,0.0,10.730499,10730.499 +38328,2025-03-11T18:51:06.213603-07:00,0.0,10.739959,10739.959 +38329,2025-03-11T18:51:16.942816-07:00,0.0,10.729213,10729.213 +38330,2025-03-11T18:51:27.672580-07:00,0.0,10.729764,10729.764 +38331,2025-03-11T18:51:38.416576-07:00,0.0,10.743996,10743.996 +38332,2025-03-11T18:51:49.146579-07:00,0.0,10.730003,10730.003 +38333,2025-03-11T18:51:59.886593-07:00,0.0,10.740014,10740.014 +38334,2025-03-11T18:52:10.613373-07:00,0.0,10.72678,10726.78 +38335,2025-03-11T18:52:21.348579-07:00,0.0,10.735206,10735.206 +38336,2025-03-11T18:52:32.087740-07:00,0.0,10.739161,10739.161 +38337,2025-03-11T18:52:42.815340-07:00,0.0,10.7276,10727.6 +38338,2025-03-11T18:52:53.550579-07:00,0.0,10.735239,10735.239 +38339,2025-03-11T18:53:04.285578-07:00,0.0,10.734999,10734.999 +38340,2025-03-11T18:53:15.020650-07:00,0.0,10.735072,10735.072 +38341,2025-03-11T18:53:25.752638-07:00,0.0,10.731988,10731.988 +38342,2025-03-11T18:53:36.415825-07:00,0.0,10.663187,10663.187 +38343,2025-03-11T18:53:47.158613-07:00,0.0,10.742788,10742.788 +38344,2025-03-11T18:53:57.892817-07:00,0.0,10.734204,10734.204 +38345,2025-03-11T18:54:08.624792-07:00,0.0,10.731975,10731.975 +38346,2025-03-11T18:54:19.355612-07:00,0.0,10.73082,10730.82 +38347,2025-03-11T18:54:30.087607-07:00,0.0,10.731995,10731.995 +38348,2025-03-11T18:54:40.823615-07:00,0.0,10.736008,10736.008 +38349,2025-03-11T18:54:51.557801-07:00,0.0,10.734186,10734.186 +38350,2025-03-11T18:55:02.296637-07:00,0.0,10.738836,10738.836 +38351,2025-03-11T18:55:13.035737-07:00,0.0,10.7391,10739.1 +38352,2025-03-11T18:55:23.770612-07:00,0.0,10.734875,10734.875 +38353,2025-03-11T18:55:34.501975-07:00,0.0,10.731363,10731.363 +38354,2025-03-11T18:55:45.243237-07:00,0.0,10.741262,10741.262 +38355,2025-03-11T18:55:55.968612-07:00,0.0,10.725375,10725.375 +38356,2025-03-11T18:56:06.713783-07:00,0.0,10.745171,10745.171 +38357,2025-03-11T18:56:17.443790-07:00,0.0,10.730007,10730.007 +38358,2025-03-11T18:56:28.175639-07:00,0.0,10.731849,10731.849 +38359,2025-03-11T18:56:38.908739-07:00,0.0,10.7331,10733.1 +38360,2025-03-11T18:56:49.647855-07:00,0.0,10.739116,10739.116 +38361,2025-03-11T18:57:00.385796-07:00,0.0,10.737941,10737.941 +38362,2025-03-11T18:57:11.121498-07:00,0.0,10.735702,10735.702 +38363,2025-03-11T18:57:21.855763-07:00,0.0,10.734265,10734.265 +38364,2025-03-11T18:57:32.591614-07:00,0.0,10.735851,10735.851 +38365,2025-03-11T18:57:43.326716-07:00,0.0,10.735102,10735.102 +38366,2025-03-11T18:57:54.061809-07:00,0.0,10.735093,10735.093 +38367,2025-03-11T18:58:04.788822-07:00,0.0,10.727013,10727.013 +38368,2025-03-11T18:58:15.530676-07:00,0.0,10.741854,10741.854 +38369,2025-03-11T18:58:26.258961-07:00,0.0,10.728285,10728.285 +38370,2025-03-11T18:58:36.995609-07:00,0.0,10.736648,10736.648 +38371,2025-03-11T18:58:47.728640-07:00,0.0,10.733031,10733.031 +38372,2025-03-11T18:58:58.464609-07:00,0.0,10.735969,10735.969 +38373,2025-03-11T18:59:09.196859-07:00,0.0,10.73225,10732.25 +38374,2025-03-11T18:59:19.929753-07:00,0.0,10.732894,10732.894 +38375,2025-03-11T18:59:30.673612-07:00,0.0,10.743859,10743.859 +38376,2025-03-11T18:59:41.399159-07:00,0.0,10.725547,10725.547 +38377,2025-03-11T18:59:52.141790-07:00,0.0,10.742631,10742.631 +38378,2025-03-11T19:00:02.866311-07:00,0.0,10.724521,10724.521 +38379,2025-03-11T19:00:13.599609-07:00,0.0,10.733298,10733.298 +38380,2025-03-11T19:00:24.336612-07:00,0.0,10.737003,10737.003 +38381,2025-03-11T19:00:35.068383-07:00,0.0,10.731771,10731.771 +38382,2025-03-11T19:00:45.811636-07:00,0.0,10.743253,10743.253 +38383,2025-03-11T19:00:56.546815-07:00,0.0,10.735179,10735.179 +38384,2025-03-11T19:01:07.282653-07:00,0.0,10.735838,10735.838 +38385,2025-03-11T19:01:18.008789-07:00,0.0,10.726136,10726.136 +38386,2025-03-11T19:01:28.753325-07:00,0.0,10.744536,10744.536 +38387,2025-03-11T19:01:39.489697-07:00,0.0,10.736372,10736.372 +38388,2025-03-11T19:01:50.221640-07:00,0.0,10.731943,10731.943 +38389,2025-03-11T19:02:00.954788-07:00,0.0,10.733148,10733.148 +38390,2025-03-11T19:02:11.685612-07:00,0.0,10.730824,10730.824 +38391,2025-03-11T19:02:22.428611-07:00,0.0,10.742999,10742.999 +38392,2025-03-11T19:02:33.155789-07:00,0.0,10.727178,10727.178 +38393,2025-03-11T19:02:43.897798-07:00,0.0,10.742009,10742.009 +38394,2025-03-11T19:02:54.626605-07:00,0.0,10.728807,10728.807 +38395,2025-03-11T19:03:05.366808-07:00,0.0,10.740203,10740.203 +38396,2025-03-11T19:03:16.095616-07:00,0.0,10.728808,10728.808 +38397,2025-03-11T19:03:26.836824-07:00,0.0,10.741208,10741.208 +38398,2025-03-11T19:03:37.560610-07:00,0.0,10.723786,10723.786 +38399,2025-03-11T19:03:48.301613-07:00,0.0,10.741003,10741.003 +38400,2025-03-11T19:03:59.035823-07:00,0.0,10.73421,10734.21 +38401,2025-03-11T19:04:09.761466-07:00,0.0,10.725643,10725.643 +38402,2025-03-11T19:04:20.493613-07:00,0.0,10.732147,10732.147 +38403,2025-03-11T19:04:31.226757-07:00,0.0,10.733144,10733.144 +38404,2025-03-11T19:04:41.957788-07:00,0.0,10.731031,10731.031 +38405,2025-03-11T19:04:52.689838-07:00,0.0,10.73205,10732.05 +38406,2025-03-11T19:05:03.431613-07:00,0.0,10.741775,10741.775 +38407,2025-03-11T19:05:14.157858-07:00,0.0,10.726245,10726.245 +38408,2025-03-11T19:05:24.883605-07:00,0.0,10.725747,10725.747 +38409,2025-03-11T19:05:35.615847-07:00,0.0,10.732242,10732.242 +38410,2025-03-11T19:05:46.346011-07:00,0.0,10.730164,10730.164 +38411,2025-03-11T19:05:57.074612-07:00,0.0,10.728601,10728.601 +38412,2025-03-11T19:06:07.815696-07:00,0.0,10.741084,10741.084 +38413,2025-03-11T19:06:18.540912-07:00,0.0,10.725216,10725.216 +38414,2025-03-11T19:06:29.270376-07:00,0.0,10.729464,10729.464 +38415,2025-03-11T19:06:40.009837-07:00,0.0,10.739461,10739.461 +38416,2025-03-11T19:06:50.737614-07:00,0.0,10.727777,10727.777 +38417,2025-03-11T19:07:01.474793-07:00,0.0,10.737179,10737.179 +38418,2025-03-11T19:07:12.202610-07:00,0.0,10.727817,10727.817 +38419,2025-03-11T19:07:22.930901-07:00,0.0,10.728291,10728.291 +38420,2025-03-11T19:07:33.671039-07:00,0.0,10.740138,10740.138 +38421,2025-03-11T19:07:44.400802-07:00,0.0,10.729763,10729.763 +38422,2025-03-11T19:07:55.118612-07:00,0.0,10.71781,10717.81 +38423,2025-03-11T19:08:05.855023-07:00,0.0,10.736411,10736.411 +38424,2025-03-11T19:08:16.580154-07:00,0.0,10.725131,10725.131 +38425,2025-03-11T19:08:27.315645-07:00,0.0,10.735491,10735.491 +38426,2025-03-11T19:08:38.044815-07:00,0.0,10.72917,10729.17 +38427,2025-03-11T19:08:48.771611-07:00,0.0,10.726796,10726.796 +38428,2025-03-11T19:08:59.502618-07:00,0.0,10.731007,10731.007 +38429,2025-03-11T19:09:10.242806-07:00,0.0,10.740188,10740.188 +38430,2025-03-11T19:09:20.965778-07:00,0.0,10.722972,10722.972 +38431,2025-03-11T19:09:31.698611-07:00,0.0,10.732833,10732.833 +38432,2025-03-11T19:09:42.437518-07:00,0.0,10.738907,10738.907 +38433,2025-03-11T19:09:53.172093-07:00,0.0,10.734575,10734.575 +38434,2025-03-11T19:10:03.899611-07:00,0.0,10.727518,10727.518 +38435,2025-03-11T19:10:14.628622-07:00,0.0,10.729011,10729.011 +38436,2025-03-11T19:10:25.359857-07:00,0.0,10.731235,10731.235 +38437,2025-03-11T19:10:36.097609-07:00,0.0,10.737752,10737.752 +38438,2025-03-11T19:10:46.823795-07:00,0.0,10.726186,10726.186 +38439,2025-03-11T19:10:57.555451-07:00,0.0,10.731656,10731.656 +38440,2025-03-11T19:11:08.294609-07:00,0.0,10.739158,10739.158 +38441,2025-03-11T19:11:19.026607-07:00,0.0,10.731998,10731.998 +38442,2025-03-11T19:11:29.755678-07:00,0.0,10.729071,10729.071 +38443,2025-03-11T19:11:40.483613-07:00,0.0,10.727935,10727.935 +38444,2025-03-11T19:11:51.217611-07:00,0.0,10.733998,10733.998 +38445,2025-03-11T19:12:01.948840-07:00,0.0,10.731229,10731.229 +38446,2025-03-11T19:12:12.693200-07:00,0.0,10.74436,10744.36 +38447,2025-03-11T19:12:23.414835-07:00,0.0,10.721635,10721.635 +38448,2025-03-11T19:12:34.156606-07:00,0.0,10.741771,10741.771 +38449,2025-03-11T19:12:44.890613-07:00,0.0,10.734007,10734.007 +38450,2025-03-11T19:12:55.627024-07:00,0.0,10.736411,10736.411 +38451,2025-03-11T19:13:06.356609-07:00,0.0,10.729585,10729.585 +38452,2025-03-11T19:13:17.095824-07:00,0.0,10.739215,10739.215 +38453,2025-03-11T19:13:27.825825-07:00,0.0,10.730001,10730.001 +38454,2025-03-11T19:13:38.562172-07:00,0.0,10.736347,10736.347 +38455,2025-03-11T19:13:49.293649-07:00,0.0,10.731477,10731.477 +38456,2025-03-11T19:14:00.027788-07:00,0.0,10.734139,10734.139 +38457,2025-03-11T19:14:10.760010-07:00,0.0,10.732222,10732.222 +38458,2025-03-11T19:14:21.501634-07:00,0.0,10.741624,10741.624 +38459,2025-03-11T19:14:32.236136-07:00,0.0,10.734502,10734.502 +38460,2025-03-11T19:14:42.970614-07:00,0.0,10.734478,10734.478 +38461,2025-03-11T19:14:53.708039-07:00,0.0,10.737425,10737.425 +38462,2025-03-11T19:15:04.440898-07:00,0.0,10.732859,10732.859 +38463,2025-03-11T19:15:15.172613-07:00,0.0,10.731715,10731.715 +38464,2025-03-11T19:15:25.908745-07:00,0.0,10.736132,10736.132 +38465,2025-03-11T19:15:36.642626-07:00,0.0,10.733881,10733.881 +38466,2025-03-11T19:15:47.383119-07:00,0.0,10.740493,10740.493 +38467,2025-03-11T19:15:58.120633-07:00,0.0,10.737514,10737.514 +38468,2025-03-11T19:16:08.850617-07:00,0.0,10.729984,10729.984 +38469,2025-03-11T19:16:19.594640-07:00,0.0,10.744023,10744.023 +38470,2025-03-11T19:16:30.327959-07:00,0.0,10.733319,10733.319 +38471,2025-03-11T19:16:41.061608-07:00,0.0,10.733649,10733.649 +38472,2025-03-11T19:16:51.802711-07:00,0.0,10.741103,10741.103 +38473,2025-03-11T19:17:02.539651-07:00,0.0,10.73694,10736.94 +38474,2025-03-11T19:17:13.269735-07:00,0.0,10.730084,10730.084 +38475,2025-03-11T19:17:24.005752-07:00,0.0,10.736017,10736.017 +38476,2025-03-11T19:17:34.741609-07:00,0.0,10.735857,10735.857 +38477,2025-03-11T19:17:45.475615-07:00,0.0,10.734006,10734.006 +38478,2025-03-11T19:17:56.212026-07:00,0.0,10.736411,10736.411 +38479,2025-03-11T19:18:06.947793-07:00,0.0,10.735767,10735.767 +38480,2025-03-11T19:18:17.691271-07:00,0.0,10.743478,10743.478 +38481,2025-03-11T19:18:28.424615-07:00,0.0,10.733344,10733.344 +38482,2025-03-11T19:18:39.161609-07:00,0.0,10.736994,10736.994 +38483,2025-03-11T19:18:49.898648-07:00,0.0,10.737039,10737.039 +38484,2025-03-11T19:19:00.639772-07:00,0.0,10.741124,10741.124 +38485,2025-03-11T19:19:11.374863-07:00,0.0,10.735091,10735.091 +38486,2025-03-11T19:19:22.108828-07:00,0.0,10.733965,10733.965 +38487,2025-03-11T19:19:32.850611-07:00,0.0,10.741783,10741.783 +38488,2025-03-11T19:19:43.580849-07:00,0.0,10.730238,10730.238 +38489,2025-03-11T19:19:54.320798-07:00,0.0,10.739949,10739.949 +38490,2025-03-11T19:20:05.057676-07:00,0.0,10.736878,10736.878 +38491,2025-03-11T19:20:15.786756-07:00,0.0,10.72908,10729.08 +38492,2025-03-11T19:20:26.526612-07:00,0.0,10.739856,10739.856 +38493,2025-03-11T19:20:37.259021-07:00,0.0,10.732409,10732.409 +38494,2025-03-11T19:20:47.992638-07:00,0.0,10.733617,10733.617 +38495,2025-03-11T19:20:58.726674-07:00,0.0,10.734036,10734.036 +38496,2025-03-11T19:21:09.470829-07:00,0.0,10.744155,10744.155 +38497,2025-03-11T19:21:20.205887-07:00,0.0,10.735058,10735.058 +38498,2025-03-11T19:21:30.940035-07:00,0.0,10.734148,10734.148 +38499,2025-03-11T19:21:41.677613-07:00,0.0,10.737578,10737.578 +38500,2025-03-11T19:21:52.414607-07:00,0.0,10.736994,10736.994 +38501,2025-03-11T19:22:03.145634-07:00,0.0,10.731027,10731.027 +38502,2025-03-11T19:22:13.882715-07:00,0.0,10.737081,10737.081 +38503,2025-03-11T19:22:24.614611-07:00,0.0,10.731896,10731.896 +38504,2025-03-11T19:22:35.348000-07:00,0.0,10.733389,10733.389 +38505,2025-03-11T19:22:46.088804-07:00,0.0,10.740804,10740.804 +38506,2025-03-11T19:22:56.817611-07:00,0.0,10.728807,10728.807 +38507,2025-03-11T19:23:07.561609-07:00,0.0,10.743998,10743.998 +38508,2025-03-11T19:23:18.298616-07:00,0.0,10.737007,10737.007 +38509,2025-03-11T19:23:29.030012-07:00,0.0,10.731396,10731.396 +38510,2025-03-11T19:23:39.773617-07:00,0.0,10.743605,10743.605 +38511,2025-03-11T19:23:50.509010-07:00,0.0,10.735393,10735.393 +38512,2025-03-11T19:24:01.239610-07:00,0.0,10.7306,10730.6 +38513,2025-03-11T19:24:11.973616-07:00,0.0,10.734006,10734.006 +38514,2025-03-11T19:24:22.715794-07:00,0.0,10.742178,10742.178 +38515,2025-03-11T19:24:33.447925-07:00,0.0,10.732131,10732.131 +38516,2025-03-11T19:24:44.188713-07:00,0.0,10.740788,10740.788 +38517,2025-03-11T19:24:54.925668-07:00,0.0,10.736955,10736.955 +38518,2025-03-11T19:25:05.657831-07:00,0.0,10.732163,10732.163 +38519,2025-03-11T19:25:16.399616-07:00,0.0,10.741785,10741.785 +38520,2025-03-11T19:25:27.126919-07:00,0.0,10.727303,10727.303 +38521,2025-03-11T19:25:37.865610-07:00,0.0,10.738691,10738.691 +38522,2025-03-11T19:25:48.595875-07:00,0.0,10.730265,10730.265 +38523,2025-03-11T19:25:59.335626-07:00,0.0,10.739751,10739.751 +38524,2025-03-11T19:26:10.068826-07:00,0.0,10.7332,10733.2 +38525,2025-03-11T19:26:20.805611-07:00,0.0,10.736785,10736.785 +38526,2025-03-11T19:26:31.531614-07:00,0.0,10.726003,10726.003 +38527,2025-03-11T19:26:42.276613-07:00,0.0,10.744999,10744.999 +38528,2025-03-11T19:26:53.011788-07:00,0.0,10.735175,10735.175 +38529,2025-03-11T19:27:03.744816-07:00,0.0,10.733028,10733.028 +38530,2025-03-11T19:27:14.488702-07:00,0.0,10.743886,10743.886 +38531,2025-03-11T19:27:25.224819-07:00,0.0,10.736117,10736.117 +38532,2025-03-11T19:27:35.951791-07:00,0.0,10.726972,10726.972 +38533,2025-03-11T19:27:46.697179-07:00,0.0,10.745388,10745.388 +38534,2025-03-11T19:27:57.429612-07:00,0.0,10.732433,10732.433 +38535,2025-03-11T19:28:08.168613-07:00,0.0,10.739001,10739.001 +38536,2025-03-11T19:28:18.903605-07:00,0.0,10.734992,10734.992 +38537,2025-03-11T19:28:29.644794-07:00,0.0,10.741189,10741.189 +38538,2025-03-11T19:28:40.385808-07:00,0.0,10.741014,10741.014 +38539,2025-03-11T19:28:51.124634-07:00,0.0,10.738826,10738.826 +38540,2025-03-11T19:29:01.861737-07:00,0.0,10.737103,10737.103 +38541,2025-03-11T19:29:12.595789-07:00,0.0,10.734052,10734.052 +38542,2025-03-11T19:29:23.333214-07:00,0.0,10.737425,10737.425 +38543,2025-03-11T19:29:34.069229-07:00,0.0,10.736015,10736.015 +38544,2025-03-11T19:29:44.802816-07:00,0.0,10.733587,10733.587 +38545,2025-03-11T19:29:55.542655-07:00,0.0,10.739839,10739.839 +38546,2025-03-11T19:30:06.273662-07:00,0.0,10.731007,10731.007 +38547,2025-03-11T19:30:17.015779-07:00,0.0,10.742117,10742.117 +38548,2025-03-11T19:30:27.747613-07:00,0.0,10.731834,10731.834 +38549,2025-03-11T19:30:38.490610-07:00,0.0,10.742997,10742.997 +38550,2025-03-11T19:30:49.223906-07:00,0.0,10.733296,10733.296 +38551,2025-03-11T19:30:59.968697-07:00,0.0,10.744791,10744.791 +38552,2025-03-11T19:31:10.702815-07:00,0.0,10.734118,10734.118 +38553,2025-03-11T19:31:21.440819-07:00,0.0,10.738004,10738.004 +38554,2025-03-11T19:31:32.179642-07:00,0.0,10.738823,10738.823 +38555,2025-03-11T19:31:42.917823-07:00,0.0,10.738181,10738.181 +38556,2025-03-11T19:31:53.658677-07:00,0.0,10.740854,10740.854 +38557,2025-03-11T19:32:04.391780-07:00,0.0,10.733103,10733.103 +38558,2025-03-11T19:32:15.135790-07:00,0.0,10.74401,10744.01 +38559,2025-03-11T19:32:25.868694-07:00,0.0,10.732904,10732.904 +38560,2025-03-11T19:32:36.605624-07:00,0.0,10.73693,10736.93 +38561,2025-03-11T19:32:47.348612-07:00,0.0,10.742988,10742.988 +38562,2025-03-11T19:32:58.089801-07:00,0.0,10.741189,10741.189 +38563,2025-03-11T19:33:08.828140-07:00,0.0,10.738339,10738.339 +38564,2025-03-11T19:33:19.561824-07:00,0.0,10.733684,10733.684 +38565,2025-03-11T19:33:30.304772-07:00,0.0,10.742948,10742.948 +38566,2025-03-11T19:33:41.041945-07:00,0.0,10.737173,10737.173 +38567,2025-03-11T19:33:51.770747-07:00,0.0,10.728802,10728.802 +38568,2025-03-11T19:34:02.507791-07:00,0.0,10.737044,10737.044 +38569,2025-03-11T19:34:13.256800-07:00,0.0,10.749009,10749.009 +38570,2025-03-11T19:34:23.985613-07:00,0.0,10.728813,10728.813 +38571,2025-03-11T19:34:34.719608-07:00,0.0,10.733995,10733.995 +38572,2025-03-11T19:34:45.464641-07:00,0.0,10.745033,10745.033 +38573,2025-03-11T19:34:56.193794-07:00,0.0,10.729153,10729.153 +38574,2025-03-11T19:35:06.934612-07:00,0.0,10.740818,10740.818 +38575,2025-03-11T19:35:16.676805-07:00,0.0,9.742193,9742.193 +38576,2025-03-11T19:35:17.672665-07:00,0.0,0.99586,995.86 +38577,2025-03-11T19:35:28.404680-07:00,0.0,10.732015,10732.015 +38578,2025-03-11T19:35:39.139003-07:00,0.0,10.734323,10734.323 +38579,2025-03-11T19:35:49.867802-07:00,0.0,10.728799,10728.799 +38580,2025-03-11T19:36:00.600611-07:00,0.0,10.732809,10732.809 +38581,2025-03-11T19:36:11.336064-07:00,0.0,10.735453,10735.453 +38582,2025-03-11T19:36:22.074797-07:00,0.0,10.738733,10738.733 +38583,2025-03-11T19:36:32.801754-07:00,0.0,10.726957,10726.957 +38584,2025-03-11T19:36:43.533611-07:00,0.0,10.731857,10731.857 +38585,2025-03-11T19:36:54.271641-07:00,0.0,10.73803,10738.03 +38586,2025-03-11T19:37:05.005276-07:00,0.0,10.733635,10733.635 +38587,2025-03-11T19:37:15.737761-07:00,0.0,10.732485,10732.485 +38588,2025-03-11T19:37:26.469553-07:00,0.0,10.731792,10731.792 +38589,2025-03-11T19:37:37.205799-07:00,0.0,10.736246,10736.246 +38590,2025-03-11T19:37:47.939611-07:00,0.0,10.733812,10733.812 +38591,2025-03-11T19:37:58.668717-07:00,0.0,10.729106,10729.106 +38592,2025-03-11T19:38:09.408774-07:00,0.0,10.740057,10740.057 +38593,2025-03-11T19:38:20.148627-07:00,0.0,10.739853,10739.853 +38594,2025-03-11T19:38:30.880636-07:00,0.0,10.732009,10732.009 +38595,2025-03-11T19:38:41.604893-07:00,0.0,10.724257,10724.257 +38596,2025-03-11T19:38:52.350773-07:00,0.0,10.74588,10745.88 +38597,2025-03-11T19:39:03.087137-07:00,0.0,10.736364,10736.364 +38598,2025-03-11T19:39:13.811614-07:00,0.0,10.724477,10724.477 +38599,2025-03-11T19:39:24.547659-07:00,0.0,10.736045,10736.045 +38600,2025-03-11T19:39:35.290675-07:00,0.0,10.743016,10743.016 +38601,2025-03-11T19:39:46.030614-07:00,0.0,10.739939,10739.939 +38602,2025-03-11T19:39:56.755612-07:00,0.0,10.724998,10724.998 +38603,2025-03-11T19:40:07.499613-07:00,0.0,10.744001,10744.001 +38604,2025-03-11T19:40:18.234614-07:00,0.0,10.735001,10735.001 +38605,2025-03-11T19:40:28.966260-07:00,0.0,10.731646,10731.646 +38606,2025-03-11T19:40:39.701981-07:00,0.0,10.735721,10735.721 +38607,2025-03-11T19:40:50.435616-07:00,0.0,10.733635,10733.635 +38608,2025-03-11T19:41:01.171608-07:00,0.0,10.735992,10735.992 +38609,2025-03-11T19:41:11.908614-07:00,0.0,10.737006,10737.006 +38610,2025-03-11T19:41:22.646784-07:00,0.0,10.73817,10738.17 +38611,2025-03-11T19:41:33.374609-07:00,0.0,10.727825,10727.825 +38612,2025-03-11T19:41:44.119821-07:00,0.0,10.745212,10745.212 +38613,2025-03-11T19:41:54.852713-07:00,0.0,10.732892,10732.892 +38614,2025-03-11T19:42:05.586776-07:00,0.0,10.734063,10734.063 +38615,2025-03-11T19:42:16.318611-07:00,0.0,10.731835,10731.835 +38616,2025-03-11T19:42:27.052739-07:00,0.0,10.734128,10734.128 +38617,2025-03-11T19:42:37.800648-07:00,0.0,10.747909,10747.909 +38618,2025-03-11T19:42:48.535763-07:00,0.0,10.735115,10735.115 +38619,2025-03-11T19:42:59.264699-07:00,0.0,10.728936,10728.936 +38620,2025-03-11T19:43:09.999680-07:00,0.0,10.734981,10734.981 +38621,2025-03-11T19:43:20.730906-07:00,0.0,10.731226,10731.226 +38622,2025-03-11T19:43:31.469812-07:00,0.0,10.738906,10738.906 +38623,2025-03-11T19:43:42.201645-07:00,0.0,10.731833,10731.833 +38624,2025-03-11T19:43:52.939610-07:00,0.0,10.737965,10737.965 +38625,2025-03-11T19:44:03.673608-07:00,0.0,10.733998,10733.998 +38626,2025-03-11T19:44:14.402711-07:00,0.0,10.729103,10729.103 +38627,2025-03-11T19:44:25.139637-07:00,0.0,10.736926,10736.926 +38628,2025-03-11T19:44:35.872832-07:00,0.0,10.733195,10733.195 +38629,2025-03-11T19:44:46.612614-07:00,0.0,10.739782,10739.782 +38630,2025-03-11T19:44:57.341018-07:00,0.0,10.728404,10728.404 +38631,2025-03-11T19:45:08.077848-07:00,0.0,10.73683,10736.83 +38632,2025-03-11T19:45:18.812820-07:00,0.0,10.734972,10734.972 +38633,2025-03-11T19:45:29.544785-07:00,0.0,10.731965,10731.965 +38634,2025-03-11T19:45:40.279783-07:00,0.0,10.734998,10734.998 +38635,2025-03-11T19:45:51.007936-07:00,0.0,10.728153,10728.153 +38636,2025-03-11T19:46:01.745657-07:00,0.0,10.737721,10737.721 +38637,2025-03-11T19:46:12.486632-07:00,0.0,10.740975,10740.975 +38638,2025-03-11T19:46:23.226808-07:00,0.0,10.740176,10740.176 +38639,2025-03-11T19:46:33.965786-07:00,0.0,10.738978,10738.978 +38640,2025-03-11T19:46:44.695679-07:00,0.0,10.729893,10729.893 +38641,2025-03-11T19:46:55.439609-07:00,0.0,10.74393,10743.93 +38642,2025-03-11T19:47:06.166686-07:00,0.0,10.727077,10727.077 +38643,2025-03-11T19:47:16.907001-07:00,0.0,10.740315,10740.315 +38644,2025-03-11T19:47:27.643637-07:00,0.0,10.736636,10736.636 +38645,2025-03-11T19:47:38.385448-07:00,0.0,10.741811,10741.811 +38646,2025-03-11T19:47:49.120617-07:00,0.0,10.735169,10735.169 +38647,2025-03-11T19:47:59.850889-07:00,0.0,10.730272,10730.272 +38648,2025-03-11T19:48:10.590934-07:00,0.0,10.740045,10740.045 +38649,2025-03-11T19:48:21.326613-07:00,0.0,10.735679,10735.679 +38650,2025-03-11T19:48:32.058607-07:00,0.0,10.731994,10731.994 +38651,2025-03-11T19:48:42.790697-07:00,0.0,10.73209,10732.09 +38652,2025-03-11T19:48:53.516608-07:00,0.0,10.725911,10725.911 +38653,2025-03-11T19:49:04.251641-07:00,0.0,10.735033,10735.033 +38654,2025-03-11T19:49:14.981821-07:00,0.0,10.73018,10730.18 +38655,2025-03-11T19:49:25.724711-07:00,0.0,10.74289,10742.89 +38656,2025-03-11T19:49:36.447804-07:00,0.0,10.723093,10723.093 +38657,2025-03-11T19:49:47.184612-07:00,0.0,10.736808,10736.808 +38658,2025-03-11T19:49:57.912788-07:00,0.0,10.728176,10728.176 +38659,2025-03-11T19:50:08.649767-07:00,0.0,10.736979,10736.979 +38660,2025-03-11T19:50:19.389720-07:00,0.0,10.739953,10739.953 +38661,2025-03-11T19:50:30.118791-07:00,0.0,10.729071,10729.071 +38662,2025-03-11T19:50:40.854800-07:00,0.0,10.736009,10736.009 +38663,2025-03-11T19:50:51.587684-07:00,0.0,10.732884,10732.884 +38664,2025-03-11T19:51:02.317616-07:00,0.0,10.729932,10729.932 +38665,2025-03-11T19:51:13.059607-07:00,0.0,10.741991,10741.991 +38666,2025-03-11T19:51:23.795074-07:00,0.0,10.735467,10735.467 +38667,2025-03-11T19:51:34.527707-07:00,0.0,10.732633,10732.633 +38668,2025-03-11T19:51:45.253611-07:00,0.0,10.725904,10725.904 +38669,2025-03-11T19:51:55.989822-07:00,0.0,10.736211,10736.211 +38670,2025-03-11T19:52:06.728793-07:00,0.0,10.738971,10738.971 +38671,2025-03-11T19:52:17.462613-07:00,0.0,10.73382,10733.82 +38672,2025-03-11T19:52:28.195611-07:00,0.0,10.732998,10732.998 +38673,2025-03-11T19:52:38.932811-07:00,0.0,10.7372,10737.2 +38674,2025-03-11T19:52:49.671021-07:00,0.0,10.73821,10738.21 +38675,2025-03-11T19:53:00.408859-07:00,0.0,10.737838,10737.838 +38676,2025-03-11T19:53:11.141850-07:00,0.0,10.732991,10732.991 +38677,2025-03-11T19:53:21.871792-07:00,0.0,10.729942,10729.942 +38678,2025-03-11T19:53:32.614302-07:00,0.0,10.74251,10742.51 +38679,2025-03-11T19:53:43.416815-07:00,0.0,10.802513,10802.513 +38680,2025-03-11T19:53:54.158071-07:00,0.0,10.741256,10741.256 +38681,2025-03-11T19:54:04.894259-07:00,0.0,10.736188,10736.188 +38682,2025-03-11T19:54:15.622219-07:00,0.0,10.72796,10727.96 +38683,2025-03-11T19:54:26.360069-07:00,0.0,10.73785,10737.85 +38684,2025-03-11T19:54:37.096109-07:00,0.0,10.73604,10736.04 +38685,2025-03-11T19:54:47.824665-07:00,0.0,10.728556,10728.556 +38686,2025-03-11T19:54:58.559121-07:00,0.0,10.734456,10734.456 +38687,2025-03-11T19:55:09.293111-07:00,0.0,10.73399,10733.99 +38688,2025-03-11T19:55:20.029041-07:00,0.0,10.73593,10735.93 +38689,2025-03-11T19:55:30.771113-07:00,0.0,10.742072,10742.072 +38690,2025-03-11T19:55:41.508108-07:00,0.0,10.736995,10736.995 +38691,2025-03-11T19:55:52.249148-07:00,0.0,10.74104,10741.04 +38692,2025-03-11T19:56:02.986194-07:00,0.0,10.737046,10737.046 +38693,2025-03-11T19:56:13.717285-07:00,0.0,10.731091,10731.091 +38694,2025-03-11T19:56:24.452228-07:00,0.0,10.734943,10734.943 +38695,2025-03-11T19:56:35.185355-07:00,0.0,10.733127,10733.127 +38696,2025-03-11T19:56:45.922037-07:00,0.0,10.736682,10736.682 +38697,2025-03-11T19:56:56.654040-07:00,0.0,10.732003,10732.003 +38698,2025-03-11T19:57:07.388107-07:00,0.0,10.734067,10734.067 +38699,2025-03-11T19:57:18.114071-07:00,0.0,10.725964,10725.964 +38700,2025-03-11T19:57:28.848230-07:00,0.0,10.734159,10734.159 +38701,2025-03-11T19:57:39.581248-07:00,0.0,10.733018,10733.018 +38702,2025-03-11T19:57:50.314201-07:00,0.0,10.732953,10732.953 +38703,2025-03-11T19:58:01.050218-07:00,0.0,10.736017,10736.017 +38704,2025-03-11T19:58:11.784042-07:00,0.0,10.733824,10733.824 +38705,2025-03-11T19:58:22.513505-07:00,0.0,10.729463,10729.463 +38706,2025-03-11T19:58:33.248097-07:00,0.0,10.734592,10734.592 +38707,2025-03-11T19:58:43.989255-07:00,0.0,10.741158,10741.158 +38708,2025-03-11T19:58:54.718039-07:00,0.0,10.728784,10728.784 +38709,2025-03-11T19:59:05.448315-07:00,0.0,10.730276,10730.276 +38710,2025-03-11T19:59:16.180326-07:00,0.0,10.732011,10732.011 +38711,2025-03-11T19:59:26.909130-07:00,0.0,10.728804,10728.804 +38712,2025-03-11T19:59:37.648118-07:00,0.0,10.738988,10738.988 +38713,2025-03-11T19:59:48.381103-07:00,0.0,10.732985,10732.985 +38714,2025-03-11T19:59:59.115038-07:00,0.0,10.733935,10733.935 +38715,2025-03-11T20:00:09.842418-07:00,0.0,10.72738,10727.38 +38716,2025-03-11T20:00:20.576216-07:00,0.0,10.733798,10733.798 +38717,2025-03-11T20:00:31.311073-07:00,0.0,10.734857,10734.857 +38718,2025-03-11T20:00:42.043036-07:00,0.0,10.731963,10731.963 +38719,2025-03-11T20:00:52.778041-07:00,0.0,10.735005,10735.005 +38720,2025-03-11T20:01:03.509297-07:00,0.0,10.731256,10731.256 +38721,2025-03-11T20:01:14.240038-07:00,0.0,10.730741,10730.741 +38722,2025-03-11T20:01:24.981398-07:00,0.0,10.74136,10741.36 +38723,2025-03-11T20:01:35.708254-07:00,0.0,10.726856,10726.856 +38724,2025-03-11T20:01:46.444041-07:00,0.0,10.735787,10735.787 +38725,2025-03-11T20:01:57.186038-07:00,0.0,10.741997,10741.997 +38726,2025-03-11T20:02:07.921108-07:00,0.0,10.73507,10735.07 +38727,2025-03-11T20:02:18.646433-07:00,0.0,10.725325,10725.325 +38728,2025-03-11T20:02:29.387104-07:00,0.0,10.740671,10740.671 +38729,2025-03-11T20:02:40.114244-07:00,0.0,10.72714,10727.14 +38730,2025-03-11T20:02:50.846279-07:00,0.0,10.732035,10732.035 +38731,2025-03-11T20:03:01.577039-07:00,0.0,10.73076,10730.76 +38732,2025-03-11T20:03:12.316038-07:00,0.0,10.738999,10738.999 +38733,2025-03-11T20:03:23.046036-07:00,0.0,10.729998,10729.998 +38734,2025-03-11T20:03:33.785055-07:00,0.0,10.739019,10739.019 +38735,2025-03-11T20:03:44.515060-07:00,0.0,10.730005,10730.005 +38736,2025-03-11T20:03:55.252326-07:00,0.0,10.737266,10737.266 +38737,2025-03-11T20:04:05.978232-07:00,0.0,10.725906,10725.906 +38738,2025-03-11T20:04:16.716223-07:00,0.0,10.737991,10737.991 +38739,2025-03-11T20:04:27.445033-07:00,0.0,10.72881,10728.81 +38740,2025-03-11T20:04:38.182036-07:00,0.0,10.737003,10737.003 +38741,2025-03-11T20:04:48.915106-07:00,0.0,10.73307,10733.07 +38742,2025-03-11T20:04:59.649232-07:00,0.0,10.734126,10734.126 +38743,2025-03-11T20:05:10.382283-07:00,0.0,10.733051,10733.051 +38744,2025-03-11T20:05:21.121042-07:00,0.0,10.738759,10738.759 +38745,2025-03-11T20:05:31.850222-07:00,0.0,10.72918,10729.18 +38746,2025-03-11T20:05:42.581040-07:00,0.0,10.730818,10730.818 +38747,2025-03-11T20:05:53.317041-07:00,0.0,10.736001,10736.001 +38748,2025-03-11T20:06:04.057039-07:00,0.0,10.739998,10739.998 +38749,2025-03-11T20:06:14.787213-07:00,0.0,10.730174,10730.174 +38750,2025-03-11T20:06:25.521034-07:00,0.0,10.733821,10733.821 +38751,2025-03-11T20:06:36.247190-07:00,0.0,10.726156,10726.156 +38752,2025-03-11T20:06:46.984510-07:00,0.0,10.73732,10737.32 +38753,2025-03-11T20:06:57.723221-07:00,0.0,10.738711,10738.711 +38754,2025-03-11T20:07:08.451188-07:00,0.0,10.727967,10727.967 +38755,2025-03-11T20:07:19.187041-07:00,0.0,10.735853,10735.853 +38756,2025-03-11T20:07:29.919227-07:00,0.0,10.732186,10732.186 +38757,2025-03-11T20:07:40.657067-07:00,0.0,10.73784,10737.84 +38758,2025-03-11T20:07:51.391112-07:00,0.0,10.734045,10734.045 +38759,2025-03-11T20:08:02.120590-07:00,0.0,10.729478,10729.478 +38760,2025-03-11T20:08:12.855228-07:00,0.0,10.734638,10734.638 +38761,2025-03-11T20:08:23.586182-07:00,0.0,10.730954,10730.954 +38762,2025-03-11T20:08:45.052270-07:00,0.0,21.466088,21466.088 +38763,2025-03-11T20:08:55.793252-07:00,0.0,10.740982,10740.982 +38764,2025-03-11T20:09:06.520039-07:00,0.0,10.726787,10726.787 +38765,2025-03-11T20:09:17.252225-07:00,0.0,10.732186,10732.186 +38766,2025-03-11T20:09:27.986224-07:00,0.0,10.733999,10733.999 +38767,2025-03-11T20:09:38.719047-07:00,0.0,10.732823,10732.823 +38768,2025-03-11T20:09:49.459258-07:00,0.0,10.740211,10740.211 +38769,2025-03-11T20:10:00.192379-07:00,0.0,10.733121,10733.121 +38770,2025-03-11T20:10:10.923439-07:00,0.0,10.73106,10731.06 +38771,2025-03-11T20:10:21.651035-07:00,0.0,10.727596,10727.596 +38772,2025-03-11T20:10:32.387133-07:00,0.0,10.736098,10736.098 +38773,2025-03-11T20:10:43.126229-07:00,0.0,10.739096,10739.096 +38774,2025-03-11T20:10:53.859909-07:00,0.0,10.73368,10733.68 +38775,2025-03-11T20:11:04.586261-07:00,0.0,10.726352,10726.352 +38776,2025-03-11T20:11:15.320044-07:00,0.0,10.733783,10733.783 +38777,2025-03-11T20:11:26.046063-07:00,0.0,10.726019,10726.019 +38778,2025-03-11T20:11:36.778038-07:00,0.0,10.731975,10731.975 +38779,2025-03-11T20:11:47.509206-07:00,0.0,10.731168,10731.168 +38780,2025-03-11T20:11:58.244451-07:00,0.0,10.735245,10735.245 +38781,2025-03-11T20:12:08.972039-07:00,0.0,10.727588,10727.588 +38782,2025-03-11T20:12:19.700040-07:00,0.0,10.728001,10728.001 +38783,2025-03-11T20:12:30.438226-07:00,0.0,10.738186,10738.186 +38784,2025-03-11T20:12:41.163039-07:00,0.0,10.724813,10724.813 +38785,2025-03-11T20:12:51.895529-07:00,0.0,10.73249,10732.49 +38786,2025-03-11T20:13:02.631378-07:00,0.0,10.735849,10735.849 +38787,2025-03-11T20:13:13.359045-07:00,0.0,10.727667,10727.667 +38788,2025-03-11T20:13:24.091248-07:00,0.0,10.732203,10732.203 +38789,2025-03-11T20:13:34.827056-07:00,0.0,10.735808,10735.808 +38790,2025-03-11T20:13:45.549043-07:00,0.0,10.721987,10721.987 +38791,2025-03-11T20:13:56.286068-07:00,0.0,10.737025,10737.025 +38792,2025-03-11T20:14:07.019223-07:00,0.0,10.733155,10733.155 +38793,2025-03-11T20:14:17.750040-07:00,0.0,10.730817,10730.817 +38794,2025-03-11T20:14:28.477048-07:00,0.0,10.727008,10727.008 +38795,2025-03-11T20:14:39.213035-07:00,0.0,10.735987,10735.987 +38796,2025-03-11T20:14:49.943066-07:00,0.0,10.730031,10730.031 +38797,2025-03-11T20:15:00.669045-07:00,0.0,10.725979,10725.979 +38798,2025-03-11T20:15:11.405491-07:00,0.0,10.736446,10736.446 +38799,2025-03-11T20:15:22.137481-07:00,0.0,10.73199,10731.99 +38800,2025-03-11T20:15:32.872118-07:00,0.0,10.734637,10734.637 +38801,2025-03-11T20:15:43.603036-07:00,0.0,10.730918,10730.918 +38802,2025-03-11T20:15:54.337228-07:00,0.0,10.734192,10734.192 +38803,2025-03-11T20:16:05.068041-07:00,0.0,10.730813,10730.813 +38804,2025-03-11T20:16:15.808039-07:00,0.0,10.739998,10739.998 +38805,2025-03-11T20:16:26.542040-07:00,0.0,10.734001,10734.001 +38806,2025-03-11T20:16:37.268416-07:00,0.0,10.726376,10726.376 +38807,2025-03-11T20:16:48.006091-07:00,0.0,10.737675,10737.675 +38808,2025-03-11T20:16:58.740036-07:00,0.0,10.733945,10733.945 +38809,2025-03-11T20:17:09.465196-07:00,0.0,10.72516,10725.16 +38810,2025-03-11T20:17:20.203069-07:00,0.0,10.737873,10737.873 +38811,2025-03-11T20:17:30.937249-07:00,0.0,10.73418,10734.18 +38812,2025-03-11T20:17:41.665238-07:00,0.0,10.727989,10727.989 +38813,2025-03-11T20:17:52.403214-07:00,0.0,10.737976,10737.976 +38814,2025-03-11T20:18:03.132042-07:00,0.0,10.728828,10728.828 +38815,2025-03-11T20:18:13.872042-07:00,0.0,10.74,10740.0 +38816,2025-03-11T20:18:24.605040-07:00,0.0,10.732998,10732.998 +38817,2025-03-11T20:18:35.337933-07:00,0.0,10.732893,10732.893 +38818,2025-03-11T20:18:46.064819-07:00,0.0,10.726886,10726.886 +38819,2025-03-11T20:18:56.804443-07:00,0.0,10.739624,10739.624 +38820,2025-03-11T20:19:07.539493-07:00,0.0,10.73505,10735.05 +38821,2025-03-11T20:19:18.273141-07:00,0.0,10.733648,10733.648 +38822,2025-03-11T20:19:29.005099-07:00,0.0,10.731958,10731.958 +38823,2025-03-11T20:19:39.746037-07:00,0.0,10.740938,10740.938 +38824,2025-03-11T20:19:50.480272-07:00,0.0,10.734235,10734.235 +38825,2025-03-11T20:20:01.209297-07:00,0.0,10.729025,10729.025 +38826,2025-03-11T20:20:11.944037-07:00,0.0,10.73474,10734.74 +38827,2025-03-11T20:20:22.677245-07:00,0.0,10.733208,10733.208 +38828,2025-03-11T20:20:33.408235-07:00,0.0,10.73099,10730.99 +38829,2025-03-11T20:20:44.146196-07:00,0.0,10.737961,10737.961 +38830,2025-03-11T20:20:54.884180-07:00,0.0,10.737984,10737.984 +38831,2025-03-11T20:21:05.615048-07:00,0.0,10.730868,10730.868 +38832,2025-03-11T20:21:16.356245-07:00,0.0,10.741197,10741.197 +38833,2025-03-11T20:21:27.093040-07:00,0.0,10.736795,10736.795 +38834,2025-03-11T20:21:37.818133-07:00,0.0,10.725093,10725.093 +38835,2025-03-11T20:21:48.558109-07:00,0.0,10.739976,10739.976 +38836,2025-03-11T20:21:59.291219-07:00,0.0,10.73311,10733.11 +38837,2025-03-11T20:22:10.021115-07:00,0.0,10.729896,10729.896 +38838,2025-03-11T20:22:20.762188-07:00,0.0,10.741073,10741.073 +38839,2025-03-11T20:22:31.496046-07:00,0.0,10.733858,10733.858 +38840,2025-03-11T20:22:42.231124-07:00,0.0,10.735078,10735.078 +38841,2025-03-11T20:22:52.969297-07:00,0.0,10.738173,10738.173 +38842,2025-03-11T20:23:03.705041-07:00,0.0,10.735744,10735.744 +38843,2025-03-11T20:23:14.439043-07:00,0.0,10.734002,10734.002 +38844,2025-03-11T20:23:25.175289-07:00,0.0,10.736246,10736.246 +38845,2025-03-11T20:23:35.906242-07:00,0.0,10.730953,10730.953 +38846,2025-03-11T20:23:46.644086-07:00,0.0,10.737844,10737.844 +38847,2025-03-11T20:23:57.383399-07:00,0.0,10.739313,10739.313 +38848,2025-03-11T20:24:08.110193-07:00,0.0,10.726794,10726.794 +38849,2025-03-11T20:24:18.852527-07:00,0.0,10.742334,10742.334 +38850,2025-03-11T20:24:29.583040-07:00,0.0,10.730513,10730.513 +38851,2025-03-11T20:24:40.327252-07:00,0.0,10.744212,10744.212 +38852,2025-03-11T20:24:51.058235-07:00,0.0,10.730983,10730.983 +38853,2025-03-11T20:25:01.793212-07:00,0.0,10.734977,10734.977 +38854,2025-03-11T20:25:12.532191-07:00,0.0,10.738979,10738.979 +38855,2025-03-11T20:25:23.260038-07:00,0.0,10.727847,10727.847 +38856,2025-03-11T20:25:33.994041-07:00,0.0,10.734003,10734.003 +38857,2025-03-11T20:25:44.734145-07:00,0.0,10.740104,10740.104 +38858,2025-03-11T20:25:55.467196-07:00,0.0,10.733051,10733.051 +38859,2025-03-11T20:26:06.200038-07:00,0.0,10.732842,10732.842 +38860,2025-03-11T20:26:16.930269-07:00,0.0,10.730231,10730.231 +38861,2025-03-11T20:26:27.666463-07:00,0.0,10.736194,10736.194 +38862,2025-03-11T20:26:38.399251-07:00,0.0,10.732788,10732.788 +38863,2025-03-11T20:26:49.137114-07:00,0.0,10.737863,10737.863 +38864,2025-03-11T20:26:59.865468-07:00,0.0,10.728354,10728.354 +38865,2025-03-11T20:27:10.602065-07:00,0.0,10.736597,10736.597 +38866,2025-03-11T20:27:21.340041-07:00,0.0,10.737976,10737.976 +38867,2025-03-11T20:27:32.076039-07:00,0.0,10.735998,10735.998 +38868,2025-03-11T20:27:42.815209-07:00,0.0,10.73917,10739.17 +38869,2025-03-11T20:27:53.551209-07:00,0.0,10.736,10736.0 +38870,2025-03-11T20:28:04.285043-07:00,0.0,10.733834,10733.834 +38871,2025-03-11T20:28:15.024037-07:00,0.0,10.738994,10738.994 +38872,2025-03-11T20:28:25.755121-07:00,0.0,10.731084,10731.084 +38873,2025-03-11T20:28:36.494404-07:00,0.0,10.739283,10739.283 +38874,2025-03-11T20:28:47.224068-07:00,0.0,10.729664,10729.664 +38875,2025-03-11T20:28:57.954040-07:00,0.0,10.729972,10729.972 +38876,2025-03-11T20:29:08.692306-07:00,0.0,10.738266,10738.266 +38877,2025-03-11T20:29:19.423109-07:00,0.0,10.730803,10730.803 +38878,2025-03-11T20:29:30.166066-07:00,0.0,10.742957,10742.957 +38879,2025-03-11T20:29:40.895076-07:00,0.0,10.72901,10729.01 +38880,2025-03-11T20:29:51.626083-07:00,0.0,10.731007,10731.007 +38881,2025-03-11T20:30:02.359989-07:00,0.0,10.733906,10733.906 +38882,2025-03-11T20:30:13.101132-07:00,0.0,10.741143,10741.143 +38883,2025-03-11T20:30:23.828105-07:00,0.0,10.726973,10726.973 +38884,2025-03-11T20:30:34.566399-07:00,0.0,10.738294,10738.294 +38885,2025-03-11T20:30:45.295244-07:00,0.0,10.728845,10728.845 +38886,2025-03-11T20:30:56.034324-07:00,0.0,10.73908,10739.08 +38887,2025-03-11T20:31:06.768250-07:00,0.0,10.733926,10733.926 +38888,2025-03-11T20:31:17.500193-07:00,0.0,10.731943,10731.943 +38889,2025-03-11T20:31:28.233062-07:00,388.0,10.732869,10732.869 +38890,2025-03-11T20:31:38.974040-07:00,448.0,10.740978,10740.978 +38891,2025-03-11T20:31:49.701244-07:00,443.0,10.727204,10727.204 +38892,2025-03-11T20:32:00.442230-07:00,375.0,10.740986,10740.986 +38893,2025-03-11T20:32:11.173204-07:00,368.0,10.730974,10730.974 +38894,2025-03-11T20:32:21.900257-07:00,433.0,10.727053,10727.053 +38895,2025-03-11T20:32:32.638040-07:00,383.0,10.737783,10737.783 +38896,2025-03-11T20:32:43.371217-07:00,383.0,10.733177,10733.177 +38897,2025-03-11T20:32:54.109185-07:00,409.0,10.737968,10737.968 +38898,2025-03-11T20:33:04.847044-07:00,431.0,10.737859,10737.859 +38899,2025-03-11T20:33:15.576221-07:00,426.0,10.729177,10729.177 +38900,2025-03-11T20:33:26.311208-07:00,431.0,10.734987,10734.987 +38901,2025-03-11T20:33:37.045184-07:00,314.0,10.733976,10733.976 +38902,2025-03-11T20:33:47.780040-07:00,339.0,10.734856,10734.856 +38903,2025-03-11T20:33:58.511250-07:00,307.0,10.73121,10731.21 +38904,2025-03-11T20:34:09.253233-07:00,398.0,10.741983,10741.983 +38905,2025-03-11T20:34:19.977041-07:00,341.0,10.723808,10723.808 +38906,2025-03-11T20:34:30.717121-07:00,358.0,10.74008,10740.08 +38907,2025-03-11T20:34:41.449351-07:00,398.0,10.73223,10732.23 +38908,2025-03-11T20:34:52.174038-07:00,400.0,10.724687,10724.687 +38909,2025-03-11T20:35:02.911044-07:00,268.0,10.737006,10737.006 +38910,2025-03-11T20:35:13.648329-07:00,378.0,10.737285,10737.285 +38911,2025-03-11T20:35:24.379214-07:00,411.0,10.730885,10730.885 +38912,2025-03-11T20:35:35.112040-07:00,304.0,10.732826,10732.826 +38913,2025-03-11T20:35:45.844123-07:00,311.0,10.732083,10732.083 +38914,2025-03-11T20:35:47.934194-07:00,0.0,2.090071,2090.071 +38915,2025-03-11T20:35:56.568771-07:00,0.0,8.634577,8634.577 +38916,2025-03-11T20:36:07.304040-07:00,0.0,10.735269,10735.269 +38917,2025-03-11T20:36:18.035039-07:00,0.0,10.730999,10730.999 +38918,2025-03-11T20:36:28.769194-07:00,0.0,10.734155,10734.155 +38919,2025-03-11T20:36:39.504483-07:00,0.0,10.735289,10735.289 +38920,2025-03-11T20:36:50.229035-07:00,0.0,10.724552,10724.552 +38921,2025-03-11T20:37:00.962864-07:00,0.0,10.733829,10733.829 +38922,2025-03-11T20:37:11.691311-07:00,0.0,10.728447,10728.447 +38923,2025-03-11T20:37:22.432039-07:00,0.0,10.740728,10740.728 +38924,2025-03-11T20:37:33.159045-07:00,0.0,10.727006,10727.006 +38925,2025-03-11T20:37:43.892213-07:00,0.0,10.733168,10733.168 +38926,2025-03-11T20:37:54.628040-07:00,0.0,10.735827,10735.827 +38927,2025-03-11T20:38:05.360256-07:00,0.0,10.732216,10732.216 +38928,2025-03-11T20:38:16.086216-07:00,0.0,10.72596,10725.96 +38929,2025-03-11T20:38:26.825037-07:00,0.0,10.738821,10738.821 +38930,2025-03-11T20:38:37.559039-07:00,0.0,10.734002,10734.002 +38931,2025-03-11T20:38:48.282207-07:00,0.0,10.723168,10723.168 +38932,2025-03-11T20:38:59.023455-07:00,0.0,10.741248,10741.248 +38933,2025-03-11T20:39:09.747073-07:00,0.0,10.723618,10723.618 +38934,2025-03-11T20:39:20.484125-07:00,0.0,10.737052,10737.052 +38935,2025-03-11T20:39:31.218219-07:00,0.0,10.734094,10734.094 +38936,2025-03-11T20:39:41.955037-07:00,0.0,10.736818,10736.818 +38937,2025-03-11T20:39:52.680236-07:00,0.0,10.725199,10725.199 +38938,2025-03-11T20:40:03.420120-07:00,0.0,10.739884,10739.884 +38939,2025-03-11T20:40:14.156478-07:00,0.0,10.736358,10736.358 +38940,2025-03-11T20:40:24.883039-07:00,0.0,10.726561,10726.561 +38941,2025-03-11T20:40:35.611311-07:00,0.0,10.728272,10728.272 +38942,2025-03-11T20:40:46.352817-07:00,0.0,10.741506,10741.506 +38943,2025-03-11T20:40:57.082099-07:00,0.0,10.729282,10729.282 +38944,2025-03-11T20:41:07.817244-07:00,0.0,10.735145,10735.145 +38945,2025-03-11T20:41:18.547549-07:00,0.0,10.730305,10730.305 +38946,2025-03-11T20:41:29.276065-07:00,0.0,10.728516,10728.516 +38947,2025-03-11T20:41:40.010252-07:00,0.0,10.734187,10734.187 +38948,2025-03-11T20:41:50.732130-07:00,0.0,10.721878,10721.878 +38949,2025-03-11T20:42:01.470694-07:00,0.0,10.738564,10738.564 +38950,2025-03-11T20:42:12.199224-07:00,0.0,10.72853,10728.53 +38951,2025-03-11T20:42:22.934050-07:00,0.0,10.734826,10734.826 +38952,2025-03-11T20:42:33.666474-07:00,0.0,10.732424,10732.424 +38953,2025-03-11T20:42:44.397175-07:00,0.0,10.730701,10730.701 +38954,2025-03-11T20:42:55.130041-07:00,0.0,10.732866,10732.866 +38955,2025-03-11T20:43:05.864867-07:00,0.0,10.734826,10734.826 +38956,2025-03-11T20:43:16.599041-07:00,0.0,10.734174,10734.174 +38957,2025-03-11T20:43:27.324147-07:00,0.0,10.725106,10725.106 +38958,2025-03-11T20:43:38.060035-07:00,0.0,10.735888,10735.888 +38959,2025-03-11T20:43:48.786040-07:00,0.0,10.726005,10726.005 +38960,2025-03-11T20:43:59.517101-07:00,0.0,10.731061,10731.061 +38961,2025-03-11T20:44:10.253271-07:00,0.0,10.73617,10736.17 +38962,2025-03-11T20:44:20.986498-07:00,0.0,10.733227,10733.227 +38963,2025-03-11T20:44:31.716247-07:00,0.0,10.729749,10729.749 +38964,2025-03-11T20:44:42.446041-07:00,0.0,10.729794,10729.794 +38965,2025-03-11T20:44:53.187072-07:00,0.0,10.741031,10741.031 +38966,2025-03-11T20:45:03.912039-07:00,0.0,10.724967,10724.967 +38967,2025-03-11T20:45:14.648251-07:00,0.0,10.736212,10736.212 +38968,2025-03-11T20:45:25.386228-07:00,0.0,10.737977,10737.977 +38969,2025-03-11T20:45:36.120219-07:00,0.0,10.733991,10733.991 +38970,2025-03-11T20:45:46.848556-07:00,0.0,10.728337,10728.337 +38971,2025-03-11T20:45:57.572041-07:00,0.0,10.723485,10723.485 +38972,2025-03-11T20:46:08.311419-07:00,0.0,10.739378,10739.378 +38973,2025-03-11T20:46:19.042039-07:00,0.0,10.73062,10730.62 +38974,2025-03-11T20:46:29.768319-07:00,0.0,10.72628,10726.28 +38975,2025-03-11T20:46:40.499118-07:00,0.0,10.730799,10730.799 +38976,2025-03-11T20:46:51.230076-07:00,0.0,10.730958,10730.958 +38977,2025-03-11T20:47:01.958043-07:00,0.0,10.727967,10727.967 +38978,2025-03-11T20:47:12.694233-07:00,0.0,10.73619,10736.19 +38979,2025-03-11T20:47:23.419038-07:00,0.0,10.724805,10724.805 +38980,2025-03-11T20:47:34.147468-07:00,0.0,10.72843,10728.43 +38981,2025-03-11T20:47:44.880929-07:00,0.0,10.733461,10733.461 +38982,2025-03-11T20:47:55.617040-07:00,0.0,10.736111,10736.111 +38983,2025-03-11T20:48:06.340253-07:00,0.0,10.723213,10723.213 +38984,2025-03-11T20:48:17.076208-07:00,0.0,10.735955,10735.955 +38985,2025-03-11T20:48:27.802108-07:00,0.0,10.7259,10725.9 +38986,2025-03-11T20:48:38.533310-07:00,0.0,10.731202,10731.202 +38987,2025-03-11T20:48:49.261489-07:00,0.0,10.728179,10728.179 +38988,2025-03-11T20:48:59.995240-07:00,0.0,10.733751,10733.751 +38989,2025-03-11T20:49:10.725031-07:00,0.0,10.729791,10729.791 +38990,2025-03-11T20:49:21.460226-07:00,0.0,10.735195,10735.195 +38991,2025-03-11T20:49:32.194317-07:00,0.0,10.734091,10734.091 +38992,2025-03-11T20:49:42.917235-07:00,0.0,10.722918,10722.918 +38993,2025-03-11T20:49:53.650223-07:00,0.0,10.732988,10732.988 +38994,2025-03-11T20:50:04.376039-07:00,0.0,10.725816,10725.816 +38995,2025-03-11T20:50:15.116040-07:00,0.0,10.740001,10740.001 +38996,2025-03-11T20:50:25.841446-07:00,0.0,10.725406,10725.406 +38997,2025-03-11T20:50:36.573105-07:00,0.0,10.731659,10731.659 +38998,2025-03-11T20:50:47.306042-07:00,0.0,10.732937,10732.937 +38999,2025-03-11T20:50:58.035226-07:00,0.0,10.729184,10729.184 +39000,2025-03-11T20:51:08.766038-07:00,0.0,10.730812,10730.812 +39001,2025-03-11T20:51:19.494607-07:00,0.0,10.728569,10728.569 +39002,2025-03-11T20:51:30.234043-07:00,0.0,10.739436,10739.436 +39003,2025-03-11T20:51:40.959041-07:00,0.0,10.724998,10724.998 +39004,2025-03-11T20:51:51.690249-07:00,0.0,10.731208,10731.208 +39005,2025-03-11T20:52:02.418220-07:00,0.0,10.727971,10727.971 +39006,2025-03-11T20:52:13.149040-07:00,0.0,10.73082,10730.82 +39007,2025-03-11T20:52:23.887566-07:00,0.0,10.738526,10738.526 +39008,2025-03-11T20:52:34.611189-07:00,0.0,10.723623,10723.623 +39009,2025-03-11T20:52:45.348478-07:00,0.0,10.737289,10737.289 +39010,2025-03-11T20:52:56.077036-07:00,0.0,10.728558,10728.558 +39011,2025-03-11T20:53:06.806233-07:00,0.0,10.729197,10729.197 +39012,2025-03-11T20:53:17.534134-07:00,0.0,10.727901,10727.901 +39013,2025-03-11T20:53:28.258256-07:00,0.0,10.724122,10724.122 +39014,2025-03-11T20:53:49.732635-07:00,0.0,21.474379,21474.379 +39015,2025-03-11T20:54:00.458098-07:00,0.0,10.725463,10725.463 +39016,2025-03-11T20:54:11.188631-07:00,0.0,10.730533,10730.533 +39017,2025-03-11T20:54:21.921965-07:00,0.0,10.733334,10733.334 +39018,2025-03-11T20:54:32.639824-07:00,0.0,10.717859,10717.859 +39019,2025-03-11T20:54:43.373630-07:00,0.0,10.733806,10733.806 +39020,2025-03-11T20:54:54.104637-07:00,0.0,10.731007,10731.007 +39021,2025-03-11T20:55:04.823633-07:00,0.0,10.718996,10718.996 +39022,2025-03-11T20:55:15.555629-07:00,0.0,10.731996,10731.996 +39023,2025-03-11T20:55:26.285632-07:00,0.0,10.730003,10730.003 +39024,2025-03-11T20:55:37.001634-07:00,0.0,10.716002,10716.002 +39025,2025-03-11T20:55:47.737841-07:00,0.0,10.736207,10736.207 +39026,2025-03-11T20:55:58.463124-07:00,0.0,10.725283,10725.283 +39027,2025-03-11T20:56:09.183639-07:00,0.0,10.720515,10720.515 +39028,2025-03-11T20:56:19.916799-07:00,0.0,10.73316,10733.16 +39029,2025-03-11T20:56:30.643662-07:00,0.0,10.726863,10726.863 +39030,2025-03-11T20:56:41.367041-07:00,0.0,10.723379,10723.379 +39031,2025-03-11T20:56:52.099257-07:00,0.0,10.732216,10732.216 +39032,2025-03-11T20:57:02.831636-07:00,0.0,10.732379,10732.379 +39033,2025-03-11T20:57:13.559630-07:00,0.0,10.727994,10727.994 +39034,2025-03-11T20:57:24.288783-07:00,0.0,10.729153,10729.153 +39035,2025-03-11T20:57:35.016896-07:00,0.0,10.728113,10728.113 +39036,2025-03-11T20:57:45.751832-07:00,0.0,10.734936,10734.936 +39037,2025-03-11T20:57:56.481855-07:00,0.0,10.730023,10730.023 +39038,2025-03-11T20:58:07.211630-07:00,0.0,10.729775,10729.775 +39039,2025-03-11T20:58:17.940892-07:00,0.0,10.729262,10729.262 +39040,2025-03-11T20:58:28.665753-07:00,0.0,10.724861,10724.861 +39041,2025-03-11T20:58:39.400748-07:00,0.0,10.734995,10734.995 +39042,2025-03-11T20:58:50.127532-07:00,0.0,10.726784,10726.784 +39043,2025-03-11T20:59:00.848633-07:00,0.0,10.721101,10721.101 +39044,2025-03-11T20:59:11.586631-07:00,0.0,10.737998,10737.998 +39045,2025-03-11T20:59:22.312820-07:00,0.0,10.726189,10726.189 +39046,2025-03-11T20:59:33.040832-07:00,0.0,10.728012,10728.012 +39047,2025-03-11T20:59:43.764837-07:00,0.0,10.724005,10724.005 +39048,2025-03-11T20:59:54.492739-07:00,0.0,10.727902,10727.902 +39049,2025-03-11T21:00:05.224637-07:00,0.0,10.731898,10731.898 +39050,2025-03-11T21:00:15.948916-07:00,0.0,10.724279,10724.279 +39051,2025-03-11T21:00:26.672632-07:00,0.0,10.723716,10723.716 +39052,2025-03-11T21:00:37.408633-07:00,0.0,10.736001,10736.001 +39053,2025-03-11T21:00:48.130655-07:00,0.0,10.722022,10722.022 +39054,2025-03-11T21:00:58.864632-07:00,0.0,10.733977,10733.977 +39055,2025-03-11T21:01:09.591707-07:00,0.0,10.727075,10727.075 +39056,2025-03-11T21:01:20.319654-07:00,0.0,10.727947,10727.947 +39057,2025-03-11T21:01:31.047636-07:00,0.0,10.727982,10727.982 +39058,2025-03-11T21:01:41.780631-07:00,0.0,10.732995,10732.995 +39059,2025-03-11T21:01:52.499630-07:00,0.0,10.718999,10718.999 +39060,2025-03-11T21:02:03.227665-07:00,0.0,10.728035,10728.035 +39061,2025-03-11T21:02:13.962813-07:00,0.0,10.735148,10735.148 +39062,2025-03-11T21:02:24.686673-07:00,0.0,10.72386,10723.86 +39063,2025-03-11T21:02:35.418192-07:00,0.0,10.731519,10731.519 +39064,2025-03-11T21:02:46.142693-07:00,0.0,10.724501,10724.501 +39065,2025-03-11T21:02:56.866632-07:00,0.0,10.723939,10723.939 +39066,2025-03-11T21:03:07.599042-07:00,0.0,10.73241,10732.41 +39067,2025-03-11T21:03:18.326667-07:00,0.0,10.727625,10727.625 +39068,2025-03-11T21:03:29.057863-07:00,0.0,10.731196,10731.196 +39069,2025-03-11T21:03:39.782843-07:00,0.0,10.72498,10724.98 +39070,2025-03-11T21:03:50.519632-07:00,0.0,10.736789,10736.789 +39071,2025-03-11T21:04:01.247632-07:00,0.0,10.728,10728.0 +39072,2025-03-11T21:04:11.976751-07:00,0.0,10.729119,10729.119 +39073,2025-03-11T21:04:22.705633-07:00,0.0,10.728882,10728.882 +39074,2025-03-11T21:04:33.434007-07:00,0.0,10.728374,10728.374 +39075,2025-03-11T21:04:44.162631-07:00,0.0,10.728624,10728.624 +39076,2025-03-11T21:04:54.892635-07:00,0.0,10.730004,10730.004 +39077,2025-03-11T21:05:05.623035-07:00,0.0,10.7304,10730.4 +39078,2025-03-11T21:05:16.359021-07:00,0.0,10.735986,10735.986 +39079,2025-03-11T21:05:27.085637-07:00,0.0,10.726616,10726.616 +39080,2025-03-11T21:05:37.820854-07:00,0.0,10.735217,10735.217 +39081,2025-03-11T21:05:48.542631-07:00,0.0,10.721777,10721.777 +39082,2025-03-11T21:05:59.277632-07:00,0.0,10.735001,10735.001 +39083,2025-03-11T21:06:10.011632-07:00,0.0,10.734,10734.0 +39084,2025-03-11T21:06:20.737912-07:00,0.0,10.72628,10726.28 +39085,2025-03-11T21:06:31.460629-07:00,0.0,10.722717,10722.717 +39086,2025-03-11T21:06:42.196215-07:00,0.0,10.735586,10735.586 +39087,2025-03-11T21:06:52.921660-07:00,0.0,10.725445,10725.445 +39088,2025-03-11T21:07:03.649838-07:00,0.0,10.728178,10728.178 +39089,2025-03-11T21:07:14.378915-07:00,0.0,10.729077,10729.077 +39090,2025-03-11T21:07:25.098731-07:00,0.0,10.719816,10719.816 +39091,2025-03-11T21:07:35.827798-07:00,0.0,10.729067,10729.067 +39092,2025-03-11T21:07:46.558628-07:00,0.0,10.73083,10730.83 +39093,2025-03-11T21:07:57.281631-07:00,0.0,10.723003,10723.003 +39094,2025-03-11T21:08:08.015130-07:00,0.0,10.733499,10733.499 +39095,2025-03-11T21:08:18.737626-07:00,0.0,10.722496,10722.496 +39096,2025-03-11T21:08:29.458063-07:00,0.0,10.720437,10720.437 +39097,2025-03-11T21:08:40.189634-07:00,0.0,10.731571,10731.571 +39098,2025-03-11T21:08:50.918656-07:00,0.0,10.729022,10729.022 +39099,2025-03-11T21:09:01.643656-07:00,0.0,10.725,10725.0 +39100,2025-03-11T21:09:12.379854-07:00,0.0,10.736198,10736.198 +39101,2025-03-11T21:09:23.105852-07:00,0.0,10.725998,10725.998 +39102,2025-03-11T21:09:33.825630-07:00,0.0,10.719778,10719.778 +39103,2025-03-11T21:09:44.553846-07:00,0.0,10.728216,10728.216 +39104,2025-03-11T21:09:55.280656-07:00,0.0,10.72681,10726.81 +39105,2025-03-11T21:10:06.014891-07:00,0.0,10.734235,10734.235 +39106,2025-03-11T21:10:16.740852-07:00,0.0,10.725961,10725.961 +39107,2025-03-11T21:10:27.465629-07:00,0.0,10.724777,10724.777 +39108,2025-03-11T21:10:38.186273-07:00,0.0,10.720644,10720.644 +39109,2025-03-11T21:10:48.911940-07:00,0.0,10.725667,10725.667 +39110,2025-03-11T21:10:59.645696-07:00,0.0,10.733756,10733.756 +39111,2025-03-11T21:11:10.372427-07:00,283.0,10.726731,10726.731 +39112,2025-03-11T21:11:21.096839-07:00,416.0,10.724412,10724.412 +39113,2025-03-11T21:11:31.833633-07:00,399.0,10.736794,10736.794 +39114,2025-03-11T21:11:42.559797-07:00,358.0,10.726164,10726.164 +39115,2025-03-11T21:11:53.285628-07:00,335.0,10.725831,10725.831 +39116,2025-03-11T21:12:04.015067-07:00,350.0,10.729439,10729.439 +39117,2025-03-11T21:12:14.749820-07:00,322.0,10.734753,10734.753 +39118,2025-03-11T21:12:25.469631-07:00,323.0,10.719811,10719.811 +39119,2025-03-11T21:12:36.201069-07:00,418.0,10.731438,10731.438 +39120,2025-03-11T21:12:46.931792-07:00,394.0,10.730723,10730.723 +39121,2025-03-11T21:12:57.664631-07:00,307.0,10.732839,10732.839 +39122,2025-03-11T21:13:08.391965-07:00,386.0,10.727334,10727.334 +39123,2025-03-11T21:13:19.119828-07:00,318.0,10.727863,10727.863 +39124,2025-03-11T21:13:29.848630-07:00,235.0,10.728802,10728.802 +39125,2025-03-11T21:13:40.582649-07:00,272.0,10.734019,10734.019 +39126,2025-03-11T21:13:51.309661-07:00,403.0,10.727012,10727.012 +39127,2025-03-11T21:14:02.048113-07:00,396.0,10.738452,10738.452 +39128,2025-03-11T21:14:12.782042-07:00,321.0,10.733929,10733.929 +39129,2025-03-11T21:14:16.269029-07:00,0.0,3.486987,3486.987 +39130,2025-03-11T21:14:23.519700-07:00,0.0,7.250671,7250.671 +39131,2025-03-11T21:14:34.252831-07:00,0.0,10.733131,10733.131 +39132,2025-03-11T21:14:44.983158-07:00,0.0,10.730327,10730.327 +39133,2025-03-11T21:14:55.712704-07:00,0.0,10.729546,10729.546 +39134,2025-03-11T21:15:06.450430-07:00,0.0,10.737726,10737.726 +39135,2025-03-11T21:15:17.181829-07:00,0.0,10.731399,10731.399 +39136,2025-03-11T21:15:27.915922-07:00,0.0,10.734093,10734.093 +39137,2025-03-11T21:15:38.656820-07:00,0.0,10.740898,10740.898 +39138,2025-03-11T21:15:49.388921-07:00,0.0,10.732101,10732.101 +39139,2025-03-11T21:16:00.126630-07:00,0.0,10.737709,10737.709 +39140,2025-03-11T21:16:10.860982-07:00,0.0,10.734352,10734.352 +39141,2025-03-11T21:16:21.583817-07:00,0.0,10.722835,10722.835 +39142,2025-03-11T21:16:32.322719-07:00,0.0,10.738902,10738.902 +39143,2025-03-11T21:16:43.053623-07:00,0.0,10.730904,10730.904 +39144,2025-03-11T21:16:53.777070-07:00,0.0,10.723447,10723.447 +39145,2025-03-11T21:17:04.507818-07:00,0.0,10.730748,10730.748 +39146,2025-03-11T21:17:15.241725-07:00,0.0,10.733907,10733.907 +39147,2025-03-11T21:17:25.967823-07:00,0.0,10.726098,10726.098 +39148,2025-03-11T21:17:36.703893-07:00,0.0,10.73607,10736.07 +39149,2025-03-11T21:17:47.428632-07:00,0.0,10.724739,10724.739 +39150,2025-03-11T21:17:58.163336-07:00,0.0,10.734704,10734.704 +39151,2025-03-11T21:18:08.896628-07:00,0.0,10.733292,10733.292 +39152,2025-03-11T21:18:19.626863-07:00,0.0,10.730235,10730.235 +39153,2025-03-11T21:18:30.356936-07:00,0.0,10.730073,10730.073 +39154,2025-03-11T21:18:41.086721-07:00,0.0,10.729785,10729.785 +39155,2025-03-11T21:18:51.817891-07:00,0.0,10.73117,10731.17 +39156,2025-03-11T21:19:02.545361-07:00,0.0,10.72747,10727.47 +39157,2025-03-11T21:19:13.273633-07:00,0.0,10.728272,10728.272 +39158,2025-03-11T21:19:24.009836-07:00,0.0,10.736203,10736.203 +39159,2025-03-11T21:19:34.732813-07:00,0.0,10.722977,10722.977 +39160,2025-03-11T21:19:45.469660-07:00,0.0,10.736847,10736.847 +39161,2025-03-11T21:19:56.207809-07:00,0.0,10.738149,10738.149 +39162,2025-03-11T21:20:06.939662-07:00,0.0,10.731853,10731.853 +39163,2025-03-11T21:20:17.676854-07:00,0.0,10.737192,10737.192 +39164,2025-03-11T21:20:28.399658-07:00,0.0,10.722804,10722.804 +39165,2025-03-11T21:20:39.132846-07:00,0.0,10.733188,10733.188 +39166,2025-03-11T21:20:49.862771-07:00,0.0,10.729925,10729.925 +39167,2025-03-11T21:21:00.598680-07:00,0.0,10.735909,10735.909 +39168,2025-03-11T21:21:11.327648-07:00,0.0,10.728968,10728.968 +39169,2025-03-11T21:21:22.058897-07:00,0.0,10.731249,10731.249 +39170,2025-03-11T21:21:32.788838-07:00,0.0,10.729941,10729.941 +39171,2025-03-11T21:21:43.520225-07:00,0.0,10.731387,10731.387 +39172,2025-03-11T21:21:54.255831-07:00,0.0,10.735606,10735.606 +39173,2025-03-11T21:22:04.990820-07:00,0.0,10.734989,10734.989 +39174,2025-03-11T21:22:15.729411-07:00,0.0,10.738591,10738.591 +39175,2025-03-11T21:22:26.462630-07:00,0.0,10.733219,10733.219 +39176,2025-03-11T21:22:37.189211-07:00,0.0,10.726581,10726.581 +39177,2025-03-11T21:22:47.911828-07:00,0.0,10.722617,10722.617 +39178,2025-03-11T21:22:58.646630-07:00,0.0,10.734802,10734.802 +39179,2025-03-11T21:23:09.382634-07:00,0.0,10.736004,10736.004 +39180,2025-03-11T21:23:20.106627-07:00,0.0,10.723993,10723.993 +39181,2025-03-11T21:23:30.843680-07:00,0.0,10.737053,10737.053 +39182,2025-03-11T21:23:41.578813-07:00,0.0,10.735133,10735.133 +39183,2025-03-11T21:23:52.318263-07:00,0.0,10.73945,10739.45 +39184,2025-03-11T21:24:03.050625-07:00,0.0,10.732362,10732.362 +39185,2025-03-11T21:24:13.777801-07:00,0.0,10.727176,10727.176 +39186,2025-03-11T21:24:24.514848-07:00,0.0,10.737047,10737.047 +39187,2025-03-11T21:24:35.243657-07:00,0.0,10.728809,10728.809 +39188,2025-03-11T21:24:45.978632-07:00,0.0,10.734975,10734.975 +39189,2025-03-11T21:24:56.722638-07:00,0.0,10.744006,10744.006 +39190,2025-03-11T21:25:07.455064-07:00,0.0,10.732426,10732.426 +39191,2025-03-11T21:25:18.197425-07:00,0.0,10.742361,10742.361 +39192,2025-03-11T21:25:28.929629-07:00,0.0,10.732204,10732.204 +39193,2025-03-11T21:25:39.668630-07:00,0.0,10.739001,10739.001 +39194,2025-03-11T21:25:50.405631-07:00,0.0,10.737001,10737.001 +39195,2025-03-11T21:26:01.137651-07:00,0.0,10.73202,10732.02 +39196,2025-03-11T21:26:11.875008-07:00,0.0,10.737357,10737.357 +39197,2025-03-11T21:26:22.612627-07:00,0.0,10.737619,10737.619 +39198,2025-03-11T21:26:33.354632-07:00,0.0,10.742005,10742.005 +39199,2025-03-11T21:26:44.081007-07:00,0.0,10.726375,10726.375 +39200,2025-03-11T21:26:54.820810-07:00,0.0,10.739803,10739.803 +39201,2025-03-11T21:27:05.554826-07:00,0.0,10.734016,10734.016 +39202,2025-03-11T21:27:16.292663-07:00,0.0,10.737837,10737.837 +39203,2025-03-11T21:27:27.015876-07:00,0.0,10.723213,10723.213 +39204,2025-03-11T21:27:37.752833-07:00,0.0,10.736957,10736.957 +39205,2025-03-11T21:27:48.486658-07:00,0.0,10.733825,10733.825 +39206,2025-03-11T21:27:59.219628-07:00,0.0,10.73297,10732.97 +39207,2025-03-11T21:28:09.953887-07:00,0.0,10.734259,10734.259 +39208,2025-03-11T21:28:20.685961-07:00,0.0,10.732074,10732.074 +39209,2025-03-11T21:28:31.419630-07:00,0.0,10.733669,10733.669 +39210,2025-03-11T21:28:42.155790-07:00,0.0,10.73616,10736.16 +39211,2025-03-11T21:28:52.889923-07:00,0.0,10.734133,10734.133 +39212,2025-03-11T21:29:03.629989-07:00,0.0,10.740066,10740.066 +39213,2025-03-11T21:29:14.363631-07:00,0.0,10.733642,10733.642 +39214,2025-03-11T21:29:25.103019-07:00,0.0,10.739388,10739.388 +39215,2025-03-11T21:29:35.839831-07:00,0.0,10.736812,10736.812 +39216,2025-03-11T21:29:46.575808-07:00,0.0,10.735977,10735.977 +39217,2025-03-11T21:29:57.310631-07:00,0.0,10.734823,10734.823 +39218,2025-03-11T21:30:08.054628-07:00,0.0,10.743997,10743.997 +39219,2025-03-11T21:30:18.785658-07:00,0.0,10.73103,10731.03 +39220,2025-03-11T21:30:29.524701-07:00,0.0,10.739043,10739.043 +39221,2025-03-11T21:30:40.267706-07:00,0.0,10.743005,10743.005 +39222,2025-03-11T21:30:50.996776-07:00,0.0,10.72907,10729.07 +39223,2025-03-11T21:31:01.740230-07:00,0.0,10.743454,10743.454 +39224,2025-03-11T21:31:12.475649-07:00,0.0,10.735419,10735.419 +39225,2025-03-11T21:31:23.214629-07:00,0.0,10.73898,10738.98 +39226,2025-03-11T21:31:33.942937-07:00,0.0,10.728308,10728.308 +39227,2025-03-11T21:31:44.682659-07:00,0.0,10.739722,10739.722 +39228,2025-03-11T21:31:55.425636-07:00,0.0,10.742977,10742.977 +39229,2025-03-11T21:32:06.169630-07:00,0.0,10.743994,10743.994 +39230,2025-03-11T21:32:16.908633-07:00,0.0,10.739003,10739.003 +39231,2025-03-11T21:32:27.645629-07:00,0.0,10.736996,10736.996 +39232,2025-03-11T21:32:38.382830-07:00,0.0,10.737201,10737.201 +39233,2025-03-11T21:32:49.120656-07:00,0.0,10.737826,10737.826 +39234,2025-03-11T21:32:59.856702-07:00,0.0,10.736046,10736.046 +39235,2025-03-11T21:33:10.597904-07:00,0.0,10.741202,10741.202 +39236,2025-03-11T21:33:21.339859-07:00,0.0,10.741955,10741.955 +39237,2025-03-11T21:33:32.073773-07:00,0.0,10.733914,10733.914 +39238,2025-03-11T21:33:42.814819-07:00,0.0,10.741046,10741.046 +39239,2025-03-11T21:33:53.558148-07:00,0.0,10.743329,10743.329 +39240,2025-03-11T21:34:04.296632-07:00,0.0,10.738484,10738.484 +39241,2025-03-11T21:34:15.030073-07:00,0.0,10.733441,10733.441 +39242,2025-03-11T21:34:25.761006-07:00,0.0,10.730933,10730.933 +39243,2025-03-11T21:34:36.502021-07:00,0.0,10.741015,10741.015 +39244,2025-03-11T21:34:47.244123-07:00,0.0,10.742102,10742.102 +39245,2025-03-11T21:34:57.980876-07:00,0.0,10.736753,10736.753 +39246,2025-03-11T21:35:08.712654-07:00,0.0,10.731778,10731.778 +39247,2025-03-11T21:35:19.447039-07:00,0.0,10.734385,10734.385 +39248,2025-03-11T21:35:30.194164-07:00,0.0,10.747125,10747.125 +39249,2025-03-11T21:35:40.924633-07:00,0.0,10.730469,10730.469 +39250,2025-03-11T21:35:51.665631-07:00,0.0,10.740998,10740.998 +39251,2025-03-11T21:36:02.406842-07:00,0.0,10.741211,10741.211 +39252,2025-03-11T21:36:13.146635-07:00,0.0,10.739793,10739.793 +39253,2025-03-11T21:36:23.877825-07:00,0.0,10.73119,10731.19 +39254,2025-03-11T21:36:34.620820-07:00,0.0,10.742995,10742.995 +39255,2025-03-11T21:36:45.358085-07:00,0.0,10.737265,10737.265 +39256,2025-03-11T21:36:56.097632-07:00,0.0,10.739547,10739.547 +39257,2025-03-11T21:37:06.838839-07:00,0.0,10.741207,10741.207 +39258,2025-03-11T21:37:17.580645-07:00,0.0,10.741806,10741.806 +39259,2025-03-11T21:37:28.318684-07:00,0.0,10.738039,10738.039 +39260,2025-03-11T21:37:39.065431-07:00,0.0,10.746747,10746.747 +39261,2025-03-11T21:37:49.805144-07:00,0.0,10.739713,10739.713 +39262,2025-03-11T21:38:00.537634-07:00,0.0,10.73249,10732.49 +39263,2025-03-11T21:38:11.286632-07:00,0.0,10.748998,10748.998 +39264,2025-03-11T21:38:22.019683-07:00,0.0,10.733051,10733.051 +39265,2025-03-11T21:38:32.755646-07:00,0.0,10.735963,10735.963 +39266,2025-03-11T21:38:43.495809-07:00,0.0,10.740163,10740.163 +39267,2025-03-11T21:38:54.236830-07:00,0.0,10.741021,10741.021 +39268,2025-03-11T21:39:04.982771-07:00,0.0,10.745941,10745.941 +39269,2025-03-11T21:39:15.718686-07:00,0.0,10.735915,10735.915 +39270,2025-03-11T21:39:26.459135-07:00,0.0,10.740449,10740.449 +39271,2025-03-11T21:39:37.203632-07:00,0.0,10.744497,10744.497 +39272,2025-03-11T21:39:47.950662-07:00,0.0,10.74703,10747.03 +39273,2025-03-11T21:39:58.689193-07:00,0.0,10.738531,10738.531 +39274,2025-03-11T21:40:09.436668-07:00,0.0,10.747475,10747.475 +39275,2025-03-11T21:40:20.181847-07:00,0.0,10.745179,10745.179 +39276,2025-03-11T21:40:30.920880-07:00,0.0,10.739033,10739.033 +39277,2025-03-11T21:40:41.665044-07:00,0.0,10.744164,10744.164 +39278,2025-03-11T21:40:52.400633-07:00,0.0,10.735589,10735.589 +39279,2025-03-11T21:41:03.139832-07:00,0.0,10.739199,10739.199 +39280,2025-03-11T21:41:13.886700-07:00,0.0,10.746868,10746.868 +39281,2025-03-11T21:41:24.624628-07:00,0.0,10.737928,10737.928 +39282,2025-03-11T21:41:35.363666-07:00,0.0,10.739038,10739.038 +39283,2025-03-11T21:41:46.112634-07:00,0.0,10.748968,10748.968 +39284,2025-03-11T21:41:56.843816-07:00,0.0,10.731182,10731.182 +39285,2025-03-11T21:42:07.595819-07:00,0.0,10.752003,10752.003 +39286,2025-03-11T21:42:18.335998-07:00,0.0,10.740179,10740.179 +39287,2025-03-11T21:42:29.066751-07:00,0.0,10.730753,10730.753 +39288,2025-03-11T21:42:39.807636-07:00,0.0,10.740885,10740.885 +39289,2025-03-11T21:42:50.556692-07:00,0.0,10.749056,10749.056 +39290,2025-03-11T21:43:01.285867-07:00,0.0,10.729175,10729.175 +39291,2025-03-11T21:43:12.034285-07:00,0.0,10.748418,10748.418 +39292,2025-03-11T21:43:22.766726-07:00,0.0,10.732441,10732.441 +39293,2025-03-11T21:43:33.501837-07:00,0.0,10.735111,10735.111 +39294,2025-03-11T21:43:44.241634-07:00,0.0,10.739797,10739.797 +39295,2025-03-11T21:43:54.974377-07:00,0.0,10.732743,10732.743 +39296,2025-03-11T21:44:05.719877-07:00,0.0,10.7455,10745.5 +39297,2025-03-11T21:44:16.450280-07:00,0.0,10.730403,10730.403 +39298,2025-03-11T21:44:27.190631-07:00,0.0,10.740351,10740.351 +39299,2025-03-11T21:44:37.931832-07:00,0.0,10.741201,10741.201 +39300,2025-03-11T21:44:48.665834-07:00,0.0,10.734002,10734.002 +39301,2025-03-11T21:44:59.408071-07:00,0.0,10.742237,10742.237 +39302,2025-03-11T21:45:10.144134-07:00,0.0,10.736063,10736.063 +39303,2025-03-11T21:45:20.880692-07:00,0.0,10.736558,10736.558 +39304,2025-03-11T21:45:31.612636-07:00,0.0,10.731944,10731.944 +39305,2025-03-11T21:45:42.347142-07:00,0.0,10.734506,10734.506 +39306,2025-03-11T21:45:53.084830-07:00,0.0,10.737688,10737.688 +39307,2025-03-11T21:46:03.825657-07:00,0.0,10.740827,10740.827 +39308,2025-03-11T21:46:14.563732-07:00,0.0,10.738075,10738.075 +39309,2025-03-11T21:46:25.297640-07:00,0.0,10.733908,10733.908 +39310,2025-03-11T21:46:36.036815-07:00,0.0,10.739175,10739.175 +39311,2025-03-11T21:46:46.769699-07:00,0.0,10.732884,10732.884 +39312,2025-03-11T21:46:57.510698-07:00,0.0,10.740999,10740.999 +39313,2025-03-11T21:47:08.248633-07:00,0.0,10.737935,10737.935 +39314,2025-03-11T21:47:18.986626-07:00,0.0,10.737993,10737.993 +39315,2025-03-11T21:47:29.719671-07:00,0.0,10.733045,10733.045 +39316,2025-03-11T21:47:40.463834-07:00,0.0,10.744163,10744.163 +39317,2025-03-11T21:47:51.197708-07:00,0.0,10.733874,10733.874 +39318,2025-03-11T21:48:01.938701-07:00,0.0,10.740993,10740.993 +39319,2025-03-11T21:48:12.668627-07:00,0.0,10.729926,10729.926 +39320,2025-03-11T21:48:23.409023-07:00,0.0,10.740396,10740.396 +39321,2025-03-11T21:48:34.142943-07:00,0.0,10.73392,10733.92 +39322,2025-03-11T21:48:44.882832-07:00,0.0,10.739889,10739.889 +39323,2025-03-11T21:48:55.622637-07:00,0.0,10.739805,10739.805 +39324,2025-03-11T21:49:06.359874-07:00,0.0,10.737237,10737.237 +39325,2025-03-11T21:49:17.098632-07:00,0.0,10.738758,10738.758 +39326,2025-03-11T21:49:27.834038-07:00,0.0,10.735406,10735.406 +39327,2025-03-11T21:49:38.565630-07:00,0.0,10.731592,10731.592 +39328,2025-03-11T21:49:49.308845-07:00,0.0,10.743215,10743.215 +39329,2025-03-11T21:50:00.041641-07:00,0.0,10.732796,10732.796 +39330,2025-03-11T21:50:10.779647-07:00,0.0,10.738006,10738.006 +39331,2025-03-11T21:50:21.512776-07:00,0.0,10.733129,10733.129 +39332,2025-03-11T21:50:32.245631-07:00,0.0,10.732855,10732.855 +39333,2025-03-11T21:50:42.982628-07:00,0.0,10.736997,10736.997 +39334,2025-03-11T21:50:53.725631-07:00,0.0,10.743003,10743.003 +39335,2025-03-11T21:51:04.452556-07:00,0.0,10.726925,10726.925 +39336,2025-03-11T21:51:15.190633-07:00,0.0,10.738077,10738.077 +39337,2025-03-11T21:51:25.929631-07:00,0.0,10.738998,10738.998 +39338,2025-03-11T21:51:36.657935-07:00,0.0,10.728304,10728.304 +39339,2025-03-11T21:51:47.396817-07:00,0.0,10.738882,10738.882 +39340,2025-03-11T21:51:58.139267-07:00,0.0,10.74245,10742.45 +39341,2025-03-11T21:52:08.873630-07:00,0.0,10.734363,10734.363 +39342,2025-03-11T21:52:19.610632-07:00,0.0,10.737002,10737.002 +39343,2025-03-11T21:52:30.343642-07:00,0.0,10.73301,10733.01 +39344,2025-03-11T21:52:41.079893-07:00,0.0,10.736251,10736.251 +39345,2025-03-11T21:52:51.823656-07:00,0.0,10.743763,10743.763 +39346,2025-03-11T21:53:02.558704-07:00,0.0,10.735048,10735.048 +39347,2025-03-11T21:53:13.287895-07:00,0.0,10.729191,10729.191 +39348,2025-03-11T21:53:24.033817-07:00,0.0,10.745922,10745.922 +39349,2025-03-11T21:53:34.762626-07:00,0.0,10.728809,10728.809 +39350,2025-03-11T21:53:45.568964-07:00,0.0,10.806338,10806.338 +39351,2025-03-11T21:53:56.312224-07:00,0.0,10.74326,10743.26 +39352,2025-03-11T21:54:07.048205-07:00,0.0,10.735981,10735.981 +39353,2025-03-11T21:54:17.785206-07:00,0.0,10.737001,10737.001 +39354,2025-03-11T21:54:28.524714-07:00,0.0,10.739508,10739.508 +39355,2025-03-11T21:54:39.252204-07:00,0.0,10.72749,10727.49 +39356,2025-03-11T21:54:49.991447-07:00,0.0,10.739243,10739.243 +39357,2025-03-11T21:55:00.725376-07:00,0.0,10.733929,10733.929 +39358,2025-03-11T21:55:11.460383-07:00,0.0,10.735007,10735.007 +39359,2025-03-11T21:55:22.204936-07:00,0.0,10.744553,10744.553 +39360,2025-03-11T21:55:32.938560-07:00,0.0,10.733624,10733.624 +39361,2025-03-11T21:55:43.677205-07:00,0.0,10.738645,10738.645 +39362,2025-03-11T21:55:54.407234-07:00,0.0,10.730029,10730.029 +39363,2025-03-11T21:56:05.143297-07:00,0.0,10.736063,10736.063 +39364,2025-03-11T21:56:15.885520-07:00,0.0,10.742223,10742.223 +39365,2025-03-11T21:56:26.626270-07:00,0.0,10.74075,10740.75 +39366,2025-03-11T21:56:37.360204-07:00,0.0,10.733934,10733.934 +39367,2025-03-11T21:56:48.094404-07:00,0.0,10.7342,10734.2 +39368,2025-03-11T21:56:58.840665-07:00,0.0,10.746261,10746.261 +39369,2025-03-11T21:57:09.570770-07:00,0.0,10.730105,10730.105 +39370,2025-03-11T21:57:20.308298-07:00,0.0,10.737528,10737.528 +39371,2025-03-11T21:57:31.049204-07:00,0.0,10.740906,10740.906 +39372,2025-03-11T21:57:41.789576-07:00,0.0,10.740372,10740.372 +39373,2025-03-11T21:57:52.526375-07:00,0.0,10.736799,10736.799 +39374,2025-03-11T21:58:03.264344-07:00,0.0,10.737969,10737.969 +39375,2025-03-11T21:58:13.993202-07:00,0.0,10.728858,10728.858 +39376,2025-03-11T21:58:24.731431-07:00,0.0,10.738229,10738.229 +39377,2025-03-11T21:58:35.468972-07:00,0.0,10.737541,10737.541 +39378,2025-03-11T21:58:46.197484-07:00,0.0,10.728512,10728.512 +39379,2025-03-11T21:58:56.933404-07:00,0.0,10.73592,10735.92 +39380,2025-03-11T21:59:07.663676-07:00,0.0,10.730272,10730.272 +39381,2025-03-11T21:59:18.394727-07:00,0.0,10.731051,10731.051 +39382,2025-03-11T21:59:29.137223-07:00,0.0,10.742496,10742.496 +39383,2025-03-11T21:59:39.867529-07:00,0.0,10.730306,10730.306 +39384,2025-03-11T21:59:50.606365-07:00,0.0,10.738836,10738.836 +39385,2025-03-11T22:00:01.350739-07:00,0.0,10.744374,10744.374 +39386,2025-03-11T22:00:12.082507-07:00,0.0,10.731768,10731.768 +39387,2025-03-11T22:00:22.826259-07:00,0.0,10.743752,10743.752 +39388,2025-03-11T22:00:33.566206-07:00,0.0,10.739947,10739.947 +39389,2025-03-11T22:00:44.314206-07:00,0.0,10.748,10748.0 +39390,2025-03-11T22:00:55.047268-07:00,0.0,10.733062,10733.062 +39391,2025-03-11T22:01:05.796198-07:00,0.0,10.74893,10748.93 +39392,2025-03-11T22:01:16.528416-07:00,0.0,10.732218,10732.218 +39393,2025-03-11T22:01:27.271387-07:00,0.0,10.742971,10742.971 +39394,2025-03-11T22:01:38.015417-07:00,0.0,10.74403,10744.03 +39395,2025-03-11T22:01:48.747397-07:00,0.0,10.73198,10731.98 +39396,2025-03-11T22:01:59.491204-07:00,0.0,10.743807,10743.807 +39397,2025-03-11T22:02:10.226210-07:00,0.0,10.735006,10735.006 +39398,2025-03-11T22:02:20.971324-07:00,0.0,10.745114,10745.114 +39399,2025-03-11T22:02:31.710461-07:00,0.0,10.739137,10739.137 +39400,2025-03-11T22:02:42.445723-07:00,0.0,10.735262,10735.262 +39401,2025-03-11T22:02:53.192083-07:00,0.0,10.74636,10746.36 +39402,2025-03-11T22:03:03.933352-07:00,0.0,10.741269,10741.269 +39403,2025-03-11T22:03:14.667204-07:00,0.0,10.733852,10733.852 +39404,2025-03-11T22:03:25.407206-07:00,0.0,10.740002,10740.002 +39405,2025-03-11T22:03:36.146206-07:00,0.0,10.739,10739.0 +39406,2025-03-11T22:03:46.881397-07:00,0.0,10.735191,10735.191 +39407,2025-03-11T22:03:57.627526-07:00,0.0,10.746129,10746.129 +39408,2025-03-11T22:04:08.369445-07:00,0.0,10.741919,10741.919 +39409,2025-03-11T22:04:19.109203-07:00,0.0,10.739758,10739.758 +39410,2025-03-11T22:04:29.844605-07:00,0.0,10.735402,10735.402 +39411,2025-03-11T22:04:40.588319-07:00,0.0,10.743714,10743.714 +39412,2025-03-11T22:04:51.324251-07:00,0.0,10.735932,10735.932 +39413,2025-03-11T22:05:02.071272-07:00,0.0,10.747021,10747.021 +39414,2025-03-11T22:05:12.805203-07:00,0.0,10.733931,10733.931 +39415,2025-03-11T22:05:23.541202-07:00,0.0,10.735999,10735.999 +39416,2025-03-11T22:05:34.290259-07:00,0.0,10.749057,10749.057 +39417,2025-03-11T22:05:45.020019-07:00,0.0,10.72976,10729.76 +39418,2025-03-11T22:05:55.760209-07:00,0.0,10.74019,10740.19 +39419,2025-03-11T22:06:06.499411-07:00,0.0,10.739202,10739.202 +39420,2025-03-11T22:06:17.243065-07:00,0.0,10.743654,10743.654 +39421,2025-03-11T22:06:27.983273-07:00,0.0,10.740208,10740.208 +39422,2025-03-11T22:06:38.724430-07:00,0.0,10.741157,10741.157 +39423,2025-03-11T22:06:49.458206-07:00,0.0,10.733776,10733.776 +39424,2025-03-11T22:07:00.206576-07:00,0.0,10.74837,10748.37 +39425,2025-03-11T22:07:10.944417-07:00,0.0,10.737841,10737.841 +39426,2025-03-11T22:07:21.674274-07:00,0.0,10.729857,10729.857 +39427,2025-03-11T22:07:32.412203-07:00,0.0,10.737929,10737.929 +39428,2025-03-11T22:07:43.152206-07:00,0.0,10.740003,10740.003 +39429,2025-03-11T22:07:53.889238-07:00,0.0,10.737032,10737.032 +39430,2025-03-11T22:08:04.618383-07:00,0.0,10.729145,10729.145 +39431,2025-03-11T22:08:15.353203-07:00,0.0,10.73482,10734.82 +39432,2025-03-11T22:08:26.089277-07:00,0.0,10.736074,10736.074 +39433,2025-03-11T22:08:36.831288-07:00,0.0,10.742011,10742.011 +39434,2025-03-11T22:08:47.563399-07:00,0.0,10.732111,10732.111 +39435,2025-03-11T22:08:58.308386-07:00,0.0,10.744987,10744.987 +39436,2025-03-11T22:09:09.046203-07:00,0.0,10.737817,10737.817 +39437,2025-03-11T22:09:19.777204-07:00,0.0,10.731001,10731.001 +39438,2025-03-11T22:09:30.519244-07:00,0.0,10.74204,10742.04 +39439,2025-03-11T22:09:41.251373-07:00,0.0,10.732129,10732.129 +39440,2025-03-11T22:09:51.996727-07:00,0.0,10.745354,10745.354 +39441,2025-03-11T22:10:02.732228-07:00,0.0,10.735501,10735.501 +39442,2025-03-11T22:10:13.466323-07:00,0.0,10.734095,10734.095 +39443,2025-03-11T22:10:24.205321-07:00,0.0,10.738998,10738.998 +39444,2025-03-11T22:10:34.941207-07:00,0.0,10.735886,10735.886 +39445,2025-03-11T22:10:41.439898-07:00,213.0,6.498691,6498.691 +39446,2025-03-11T22:10:45.676725-07:00,309.0,4.236827,4236.827 +39447,2025-03-11T22:10:56.415206-07:00,394.0,10.738481,10738.481 +39448,2025-03-11T22:11:07.159198-07:00,407.0,10.743992,10743.992 +39449,2025-03-11T22:11:17.888239-07:00,380.0,10.729041,10729.041 +39450,2025-03-11T22:11:28.631704-07:00,420.0,10.743465,10743.465 +39451,2025-03-11T22:11:39.368420-07:00,382.0,10.736716,10736.716 +39452,2025-03-11T22:11:50.098206-07:00,345.0,10.729786,10729.786 +39453,2025-03-11T22:12:00.835273-07:00,400.0,10.737067,10737.067 +39454,2025-03-11T22:12:11.580504-07:00,435.0,10.745231,10745.231 +39455,2025-03-11T22:12:11.704118-07:00,0.0,0.123614,123.614 +39456,2025-03-11T22:12:22.315433-07:00,0.0,10.611315,10611.315 +39457,2025-03-11T22:12:33.059939-07:00,0.0,10.744506,10744.506 +39458,2025-03-11T22:12:43.797827-07:00,0.0,10.737888,10737.888 +39459,2025-03-11T22:12:54.531272-07:00,0.0,10.733445,10733.445 +39460,2025-03-11T22:13:05.269262-07:00,0.0,10.73799,10737.99 +39461,2025-03-11T22:13:15.997372-07:00,0.0,10.72811,10728.11 +39462,2025-03-11T22:13:26.741373-07:00,0.0,10.744001,10744.001 +39463,2025-03-11T22:13:37.474210-07:00,0.0,10.732837,10732.837 +39464,2025-03-11T22:13:48.205409-07:00,0.0,10.731199,10731.199 +39465,2025-03-11T22:13:58.948394-07:00,0.0,10.742985,10742.985 +39466,2025-03-11T22:14:09.680619-07:00,0.0,10.732225,10732.225 +39467,2025-03-11T22:14:20.415359-07:00,0.0,10.73474,10734.74 +39468,2025-03-11T22:14:31.142206-07:00,0.0,10.726847,10726.847 +39469,2025-03-11T22:14:41.887208-07:00,0.0,10.745002,10745.002 +39470,2025-03-11T22:14:52.618371-07:00,0.0,10.731163,10731.163 +39471,2025-03-11T22:15:03.359411-07:00,0.0,10.74104,10741.04 +39472,2025-03-11T22:15:14.091199-07:00,0.0,10.731788,10731.788 +39473,2025-03-11T22:15:24.829676-07:00,0.0,10.738477,10738.477 +39474,2025-03-11T22:15:35.565488-07:00,0.0,10.735812,10735.812 +39475,2025-03-11T22:15:46.302616-07:00,0.0,10.737128,10737.128 +39476,2025-03-11T22:15:57.038199-07:00,0.0,10.735583,10735.583 +39477,2025-03-11T22:16:07.775535-07:00,0.0,10.737336,10737.336 +39478,2025-03-11T22:16:18.507209-07:00,0.0,10.731674,10731.674 +39479,2025-03-11T22:16:29.243395-07:00,0.0,10.736186,10736.186 +39480,2025-03-11T22:16:39.970431-07:00,0.0,10.727036,10727.036 +39481,2025-03-11T22:16:50.713365-07:00,0.0,10.742934,10742.934 +39482,2025-03-11T22:17:01.438398-07:00,0.0,10.725033,10725.033 +39483,2025-03-11T22:17:12.181415-07:00,0.0,10.743017,10743.017 +39484,2025-03-11T22:17:22.908206-07:00,0.0,10.726791,10726.791 +39485,2025-03-11T22:17:33.643240-07:00,0.0,10.735034,10735.034 +39486,2025-03-11T22:17:44.385676-07:00,0.0,10.742436,10742.436 +39487,2025-03-11T22:17:55.126376-07:00,0.0,10.7407,10740.7 +39488,2025-03-11T22:18:05.862301-07:00,0.0,10.735925,10735.925 +39489,2025-03-11T22:18:16.593274-07:00,0.0,10.730973,10730.973 +39490,2025-03-11T22:18:27.333112-07:00,0.0,10.739838,10739.838 +39491,2025-03-11T22:18:38.064387-07:00,0.0,10.731275,10731.275 +39492,2025-03-11T22:18:48.798269-07:00,0.0,10.733882,10733.882 +39493,2025-03-11T22:18:59.538202-07:00,0.0,10.739933,10739.933 +39494,2025-03-11T22:19:10.275853-07:00,0.0,10.737651,10737.651 +39495,2025-03-11T22:19:21.009430-07:00,0.0,10.733577,10733.577 +39496,2025-03-11T22:19:31.744093-07:00,0.0,10.734663,10734.663 +39497,2025-03-11T22:19:42.484233-07:00,0.0,10.74014,10740.14 +39498,2025-03-11T22:19:53.210203-07:00,0.0,10.72597,10725.97 +39499,2025-03-11T22:20:03.945620-07:00,0.0,10.735417,10735.417 +39500,2025-03-11T22:20:14.678424-07:00,0.0,10.732804,10732.804 +39501,2025-03-11T22:20:25.419204-07:00,0.0,10.74078,10740.78 +39502,2025-03-11T22:20:36.152421-07:00,0.0,10.733217,10733.217 +39503,2025-03-11T22:20:46.877410-07:00,0.0,10.724989,10724.989 +39504,2025-03-11T22:20:57.620218-07:00,0.0,10.742808,10742.808 +39505,2025-03-11T22:21:08.350421-07:00,0.0,10.730203,10730.203 +39506,2025-03-11T22:21:19.083437-07:00,0.0,10.733016,10733.016 +39507,2025-03-11T22:21:29.826611-07:00,0.0,10.743174,10743.174 +39508,2025-03-11T22:21:40.562405-07:00,0.0,10.735794,10735.794 +39509,2025-03-11T22:21:51.294276-07:00,0.0,10.731871,10731.871 +39510,2025-03-11T22:22:02.033202-07:00,0.0,10.738926,10738.926 +39511,2025-03-11T22:22:12.766231-07:00,0.0,10.733029,10733.029 +39512,2025-03-11T22:22:23.504579-07:00,0.0,10.738348,10738.348 +39513,2025-03-11T22:22:34.241230-07:00,0.0,10.736651,10736.651 +39514,2025-03-11T22:22:44.978206-07:00,0.0,10.736976,10736.976 +39515,2025-03-11T22:22:55.708422-07:00,0.0,10.730216,10730.216 +39516,2025-03-11T22:23:06.442368-07:00,0.0,10.733946,10733.946 +39517,2025-03-11T22:23:17.180206-07:00,0.0,10.737838,10737.838 +39518,2025-03-11T22:23:27.918212-07:00,0.0,10.738006,10738.006 +39519,2025-03-11T22:23:38.648205-07:00,0.0,10.729993,10729.993 +39520,2025-03-11T22:23:49.389268-07:00,0.0,10.741063,10741.063 +39521,2025-03-11T22:24:00.119250-07:00,0.0,10.729982,10729.982 +39522,2025-03-11T22:24:10.857213-07:00,0.0,10.737963,10737.963 +39523,2025-03-11T22:24:21.595207-07:00,0.0,10.737994,10737.994 +39524,2025-03-11T22:24:32.328644-07:00,0.0,10.733437,10733.437 +39525,2025-03-11T22:24:43.065020-07:00,0.0,10.736376,10736.376 +39526,2025-03-11T22:24:53.806410-07:00,0.0,10.74139,10741.39 +39527,2025-03-11T22:25:04.534272-07:00,0.0,10.727862,10727.862 +39528,2025-03-11T22:25:15.267409-07:00,0.0,10.733137,10733.137 +39529,2025-03-11T22:25:26.012355-07:00,0.0,10.744946,10744.946 +39530,2025-03-11T22:25:36.743227-07:00,0.0,10.730872,10730.872 +39531,2025-03-11T22:25:47.483207-07:00,0.0,10.73998,10739.98 +39532,2025-03-11T22:25:58.212839-07:00,0.0,10.729632,10729.632 +39533,2025-03-11T22:26:08.949529-07:00,0.0,10.73669,10736.69 +39534,2025-03-11T22:26:19.683203-07:00,0.0,10.733674,10733.674 +39535,2025-03-11T22:26:30.418206-07:00,0.0,10.735003,10735.003 +39536,2025-03-11T22:26:41.150206-07:00,0.0,10.732,10732.0 +39537,2025-03-11T22:26:51.889272-07:00,0.0,10.739066,10739.066 +39538,2025-03-11T22:27:02.624236-07:00,0.0,10.734964,10734.964 +39539,2025-03-11T22:27:13.365235-07:00,0.0,10.740999,10740.999 +39540,2025-03-11T22:27:24.103286-07:00,0.0,10.738051,10738.051 +39541,2025-03-11T22:27:34.835466-07:00,0.0,10.73218,10732.18 +39542,2025-03-11T22:27:45.564400-07:00,0.0,10.728934,10728.934 +39543,2025-03-11T22:27:56.297469-07:00,0.0,10.733069,10733.069 +39544,2025-03-11T22:28:07.034363-07:00,0.0,10.736894,10736.894 +39545,2025-03-11T22:28:17.773260-07:00,0.0,10.738897,10738.897 +39546,2025-03-11T22:28:28.496199-07:00,0.0,10.722939,10722.939 +39547,2025-03-11T22:28:39.236413-07:00,0.0,10.740214,10740.214 +39548,2025-03-11T22:28:49.962444-07:00,0.0,10.726031,10726.031 +39549,2025-03-11T22:29:00.695456-07:00,0.0,10.733012,10733.012 +39550,2025-03-11T22:29:11.425411-07:00,0.0,10.729955,10729.955 +39551,2025-03-11T22:29:22.157241-07:00,0.0,10.73183,10731.83 +39552,2025-03-11T22:29:32.896583-07:00,0.0,10.739342,10739.342 +39553,2025-03-11T22:29:43.629630-07:00,0.0,10.733047,10733.047 +39554,2025-03-11T22:29:54.371403-07:00,0.0,10.741773,10741.773 +39555,2025-03-11T22:30:05.111271-07:00,0.0,10.739868,10739.868 +39556,2025-03-11T22:30:15.840411-07:00,0.0,10.72914,10729.14 +39557,2025-03-11T22:30:26.580318-07:00,0.0,10.739907,10739.907 +39558,2025-03-11T22:30:37.310205-07:00,0.0,10.729887,10729.887 +39559,2025-03-11T22:30:48.046200-07:00,0.0,10.735995,10735.995 +39560,2025-03-11T22:30:58.782272-07:00,0.0,10.736072,10736.072 +39561,2025-03-11T22:31:09.523324-07:00,0.0,10.741052,10741.052 +39562,2025-03-11T22:31:20.258253-07:00,0.0,10.734929,10734.929 +39563,2025-03-11T22:31:30.998202-07:00,0.0,10.739949,10739.949 +39564,2025-03-11T22:31:41.741205-07:00,0.0,10.743003,10743.003 +39565,2025-03-11T22:31:52.472386-07:00,0.0,10.731181,10731.181 +39566,2025-03-11T22:32:03.210263-07:00,0.0,10.737877,10737.877 +39567,2025-03-11T22:32:13.958400-07:00,0.0,10.748137,10748.137 +39568,2025-03-11T22:32:24.693206-07:00,0.0,10.734806,10734.806 +39569,2025-03-11T22:32:35.429205-07:00,0.0,10.735999,10735.999 +39570,2025-03-11T22:32:46.163206-07:00,0.0,10.734001,10734.001 +39571,2025-03-11T22:32:56.904201-07:00,0.0,10.740995,10740.995 +39572,2025-03-11T22:33:07.635992-07:00,0.0,10.731791,10731.791 +39573,2025-03-11T22:33:18.372824-07:00,0.0,10.736832,10736.832 +39574,2025-03-11T22:33:29.107578-07:00,0.0,10.734754,10734.754 +39575,2025-03-11T22:33:39.839711-07:00,0.0,10.732133,10732.133 +39576,2025-03-11T22:33:50.575398-07:00,0.0,10.735687,10735.687 +39577,2025-03-11T22:34:01.311414-07:00,0.0,10.736016,10736.016 +39578,2025-03-11T22:34:12.045213-07:00,0.0,10.733799,10733.799 +39579,2025-03-11T22:34:22.775359-07:00,0.0,10.730146,10730.146 +39580,2025-03-11T22:34:33.504398-07:00,0.0,10.729039,10729.039 +39581,2025-03-11T22:34:44.235207-07:00,0.0,10.730809,10730.809 +39582,2025-03-11T22:34:54.969609-07:00,0.0,10.734402,10734.402 +39583,2025-03-11T22:35:05.708372-07:00,0.0,10.738763,10738.763 +39584,2025-03-11T22:35:16.442421-07:00,0.0,10.734049,10734.049 +39585,2025-03-11T22:35:27.171202-07:00,0.0,10.728781,10728.781 +39586,2025-03-11T22:35:37.915423-07:00,0.0,10.744221,10744.221 +39587,2025-03-11T22:35:48.646409-07:00,0.0,10.730986,10730.986 +39588,2025-03-11T22:35:59.377208-07:00,0.0,10.730799,10730.799 +39589,2025-03-11T22:36:10.121205-07:00,0.0,10.743997,10743.997 +39590,2025-03-11T22:36:20.855668-07:00,0.0,10.734463,10734.463 +39591,2025-03-11T22:36:31.588382-07:00,0.0,10.732714,10732.714 +39592,2025-03-11T22:36:42.314357-07:00,0.0,10.725975,10725.975 +39593,2025-03-11T22:36:53.052205-07:00,0.0,10.737848,10737.848 +39594,2025-03-11T22:37:03.784805-07:00,0.0,10.7326,10732.6 +39595,2025-03-11T22:37:14.518433-07:00,0.0,10.733628,10733.628 +39596,2025-03-11T22:37:25.261301-07:00,0.0,10.742868,10742.868 +39597,2025-03-11T22:37:35.990413-07:00,0.0,10.729112,10729.112 +39598,2025-03-11T22:37:46.728405-07:00,0.0,10.737992,10737.992 +39599,2025-03-11T22:37:57.460846-07:00,0.0,10.732441,10732.441 +39600,2025-03-11T22:38:08.200203-07:00,0.0,10.739357,10739.357 +39601,2025-03-11T22:38:18.940553-07:00,0.0,10.74035,10740.35 +39602,2025-03-11T22:38:29.671202-07:00,0.0,10.730649,10730.649 +39603,2025-03-11T22:38:40.404386-07:00,0.0,10.733184,10733.184 +39604,2025-03-11T22:38:51.144466-07:00,0.0,10.74008,10740.08 +39605,2025-03-11T22:39:01.878306-07:00,0.0,10.73384,10733.84 +39606,2025-03-11T22:39:12.612292-07:00,0.0,10.733986,10733.986 +39607,2025-03-11T22:39:23.346402-07:00,0.0,10.73411,10734.11 +39608,2025-03-11T22:39:34.084064-07:00,0.0,10.737662,10737.662 +39609,2025-03-11T22:39:44.816203-07:00,0.0,10.732139,10732.139 +39610,2025-03-11T22:39:55.550496-07:00,0.0,10.734293,10734.293 +39611,2025-03-11T22:40:06.285371-07:00,0.0,10.734875,10734.875 +39612,2025-03-11T22:40:17.026196-07:00,0.0,10.740825,10740.825 +39613,2025-03-11T22:40:27.760203-07:00,0.0,10.734007,10734.007 +39614,2025-03-11T22:40:38.493286-07:00,0.0,10.733083,10733.083 +39615,2025-03-11T22:40:49.222379-07:00,0.0,10.729093,10729.093 +39616,2025-03-11T22:40:59.961946-07:00,0.0,10.739567,10739.567 +39617,2025-03-11T22:41:10.692410-07:00,0.0,10.730464,10730.464 +39618,2025-03-11T22:41:21.434213-07:00,0.0,10.741803,10741.803 +39619,2025-03-11T22:41:32.167938-07:00,0.0,10.733725,10733.725 +39620,2025-03-11T22:41:42.914221-07:00,0.0,10.746283,10746.283 +39621,2025-03-11T22:41:53.650502-07:00,0.0,10.736281,10736.281 +39622,2025-03-11T22:42:04.380273-07:00,0.0,10.729771,10729.771 +39623,2025-03-11T22:42:15.120199-07:00,0.0,10.739926,10739.926 +39624,2025-03-11T22:42:25.845417-07:00,0.0,10.725218,10725.218 +39625,2025-03-11T22:42:36.590596-07:00,0.0,10.745179,10745.179 +39626,2025-03-11T22:42:47.317203-07:00,0.0,10.726607,10726.607 +39627,2025-03-11T22:42:58.053204-07:00,0.0,10.736001,10736.001 +39628,2025-03-11T22:43:08.789362-07:00,0.0,10.736158,10736.158 +39629,2025-03-11T22:43:19.524397-07:00,0.0,10.735035,10735.035 +39630,2025-03-11T22:43:30.253559-07:00,0.0,10.729162,10729.162 +39631,2025-03-11T22:43:40.989428-07:00,0.0,10.735869,10735.869 +39632,2025-03-11T22:43:51.721196-07:00,0.0,10.731768,10731.768 +39633,2025-03-11T22:44:02.452203-07:00,0.0,10.731007,10731.007 +39634,2025-03-11T22:44:13.189211-07:00,0.0,10.737008,10737.008 +39635,2025-03-11T22:44:23.918764-07:00,0.0,10.729553,10729.553 +39636,2025-03-11T22:44:34.657821-07:00,0.0,10.739057,10739.057 +39637,2025-03-11T22:44:45.394207-07:00,0.0,10.736386,10736.386 +39638,2025-03-11T22:44:56.127199-07:00,0.0,10.732992,10732.992 +39639,2025-03-11T22:45:06.872392-07:00,0.0,10.745193,10745.193 +39640,2025-03-11T22:45:17.599393-07:00,0.0,10.727001,10727.001 +39641,2025-03-11T22:45:28.338234-07:00,0.0,10.738841,10738.841 +39642,2025-03-11T22:45:39.069958-07:00,0.0,10.731724,10731.724 +39643,2025-03-11T22:45:49.807419-07:00,0.0,10.737461,10737.461 +39644,2025-03-11T22:46:00.541445-07:00,0.0,10.734026,10734.026 +39645,2025-03-11T22:46:11.276931-07:00,0.0,10.735486,10735.486 +39646,2025-03-11T22:46:22.008204-07:00,0.0,10.731273,10731.273 +39647,2025-03-11T22:46:32.743393-07:00,0.0,10.735189,10735.189 +39648,2025-03-11T22:46:43.481381-07:00,0.0,10.737988,10737.988 +39649,2025-03-11T22:46:54.211205-07:00,0.0,10.729824,10729.824 +39650,2025-03-11T22:47:04.953199-07:00,0.0,10.741994,10741.994 +39651,2025-03-11T22:47:15.685206-07:00,0.0,10.732007,10732.007 +39652,2025-03-11T22:47:26.419596-07:00,0.0,10.73439,10734.39 +39653,2025-03-11T22:47:37.151203-07:00,0.0,10.731607,10731.607 +39654,2025-03-11T22:47:47.887221-07:00,0.0,10.736018,10736.018 +39655,2025-03-11T22:47:58.610574-07:00,0.0,10.723353,10723.353 +39656,2025-03-11T22:48:09.353680-07:00,0.0,10.743106,10743.106 +39657,2025-03-11T22:48:20.078352-07:00,0.0,10.724672,10724.672 +39658,2025-03-11T22:48:30.820209-07:00,0.0,10.741857,10741.857 +39659,2025-03-11T22:48:41.546615-07:00,0.0,10.726406,10726.406 +39660,2025-03-11T22:48:52.287513-07:00,0.0,10.740898,10740.898 +39661,2025-03-11T22:49:03.012296-07:00,0.0,10.724783,10724.783 +39662,2025-03-11T22:49:13.750564-07:00,0.0,10.738268,10738.268 +39663,2025-03-11T22:49:24.477200-07:00,0.0,10.726636,10726.636 +39664,2025-03-11T22:49:35.209645-07:00,0.0,10.732445,10732.445 +39665,2025-03-11T22:49:45.945423-07:00,0.0,10.735778,10735.778 +39666,2025-03-11T22:49:56.680374-07:00,0.0,10.734951,10734.951 +39667,2025-03-11T22:50:07.407995-07:00,0.0,10.727621,10727.621 +39668,2025-03-11T22:50:18.145204-07:00,0.0,10.737209,10737.209 +39669,2025-03-11T22:50:28.880251-07:00,0.0,10.735047,10735.047 +39670,2025-03-11T22:50:39.617404-07:00,0.0,10.737153,10737.153 +39671,2025-03-11T22:50:50.345203-07:00,0.0,10.727799,10727.799 +39672,2025-03-11T22:51:01.085592-07:00,0.0,10.740389,10740.389 +39673,2025-03-11T22:51:11.819216-07:00,0.0,10.733624,10733.624 +39674,2025-03-11T22:51:22.552772-07:00,0.0,10.733556,10733.556 +39675,2025-03-11T22:51:33.284515-07:00,0.0,10.731743,10731.743 +39676,2025-03-11T22:51:44.023426-07:00,0.0,10.738911,10738.911 +39677,2025-03-11T22:51:54.755437-07:00,0.0,10.732011,10732.011 +39678,2025-03-11T22:52:05.485471-07:00,0.0,10.730034,10730.034 +39679,2025-03-11T22:52:16.218498-07:00,0.0,10.733027,10733.027 +39680,2025-03-11T22:52:26.959206-07:00,0.0,10.740708,10740.708 +39681,2025-03-11T22:52:37.686606-07:00,0.0,10.7274,10727.4 +39682,2025-03-11T22:52:48.427557-07:00,0.0,10.740951,10740.951 +39683,2025-03-11T22:52:59.151206-07:00,0.0,10.723649,10723.649 +39684,2025-03-11T22:53:09.894393-07:00,0.0,10.743187,10743.187 +39685,2025-03-11T22:53:20.628392-07:00,0.0,10.733999,10733.999 +39686,2025-03-11T22:53:31.360278-07:00,0.0,10.731886,10731.886 +39687,2025-03-11T22:53:42.071871-07:00,0.0,10.711593,10711.593 +39688,2025-03-11T22:53:52.808797-07:00,0.0,10.736926,10736.926 +39689,2025-03-11T22:54:03.541820-07:00,0.0,10.733023,10733.023 +39690,2025-03-11T22:54:14.280129-07:00,0.0,10.738309,10738.309 +39691,2025-03-11T22:54:25.013925-07:00,0.0,10.733796,10733.796 +39692,2025-03-11T22:54:35.748893-07:00,0.0,10.734968,10734.968 +39693,2025-03-11T22:54:46.483049-07:00,0.0,10.734156,10734.156 +39694,2025-03-11T22:54:57.232011-07:00,0.0,10.748962,10748.962 +39695,2025-03-11T22:55:07.968869-07:00,0.0,10.736858,10736.858 +39696,2025-03-11T22:55:18.698669-07:00,0.0,10.7298,10729.8 +39697,2025-03-11T22:55:29.437674-07:00,0.0,10.739005,10739.005 +39698,2025-03-11T22:55:40.173885-07:00,0.0,10.736211,10736.211 +39699,2025-03-11T22:55:50.908865-07:00,0.0,10.73498,10734.98 +39700,2025-03-11T22:56:01.639879-07:00,0.0,10.731014,10731.014 +39701,2025-03-11T22:56:12.374672-07:00,0.0,10.734793,10734.793 +39702,2025-03-11T22:56:23.113870-07:00,0.0,10.739198,10739.198 +39703,2025-03-11T22:56:33.851853-07:00,0.0,10.737983,10737.983 +39704,2025-03-11T22:56:44.584698-07:00,0.0,10.732845,10732.845 +39705,2025-03-11T22:56:55.322948-07:00,0.0,10.73825,10738.25 +39706,2025-03-11T22:57:06.060724-07:00,0.0,10.737776,10737.776 +39707,2025-03-11T22:57:16.799885-07:00,0.0,10.739161,10739.161 +39708,2025-03-11T22:57:27.533867-07:00,0.0,10.733982,10733.982 +39709,2025-03-11T22:57:38.278878-07:00,0.0,10.745011,10745.011 +39710,2025-03-11T22:57:49.004696-07:00,0.0,10.725818,10725.818 +39711,2025-03-11T22:57:59.749045-07:00,0.0,10.744349,10744.349 +39712,2025-03-11T22:58:10.478850-07:00,0.0,10.729805,10729.805 +39713,2025-03-11T22:58:21.211670-07:00,0.0,10.73282,10732.82 +39714,2025-03-11T22:58:31.951402-07:00,0.0,10.739732,10739.732 +39715,2025-03-11T22:58:42.681922-07:00,0.0,10.73052,10730.52 +39716,2025-03-11T22:58:53.409243-07:00,0.0,10.727321,10727.321 +39717,2025-03-11T22:59:04.144670-07:00,0.0,10.735427,10735.427 +39718,2025-03-11T22:59:14.878705-07:00,0.0,10.734035,10734.035 +39719,2025-03-11T22:59:25.607841-07:00,0.0,10.729136,10729.136 +39720,2025-03-11T22:59:36.346361-07:00,0.0,10.73852,10738.52 +39721,2025-03-11T22:59:47.081911-07:00,0.0,10.73555,10735.55 +39722,2025-03-11T22:59:57.810672-07:00,0.0,10.728761,10728.761 +39723,2025-03-11T23:00:08.546841-07:00,0.0,10.736169,10736.169 +39724,2025-03-11T23:00:19.278700-07:00,0.0,10.731859,10731.859 +39725,2025-03-11T23:00:30.020170-07:00,0.0,10.74147,10741.47 +39726,2025-03-11T23:00:40.752730-07:00,0.0,10.73256,10732.56 +39727,2025-03-11T23:00:51.485870-07:00,0.0,10.73314,10733.14 +39728,2025-03-11T23:01:02.216870-07:00,0.0,10.731,10731.0 +39729,2025-03-11T23:01:12.948665-07:00,0.0,10.731795,10731.795 +39730,2025-03-11T23:01:23.682770-07:00,0.0,10.734105,10734.105 +39731,2025-03-11T23:01:34.423772-07:00,0.0,10.741002,10741.002 +39732,2025-03-11T23:01:45.148672-07:00,0.0,10.7249,10724.9 +39733,2025-03-11T23:01:55.888689-07:00,0.0,10.740017,10740.017 +39734,2025-03-11T23:02:06.613846-07:00,0.0,10.725157,10725.157 +39735,2025-03-11T23:02:17.351877-07:00,0.0,10.738031,10738.031 +39736,2025-03-11T23:02:28.085674-07:00,0.0,10.733797,10733.797 +39737,2025-03-11T23:02:38.815667-07:00,0.0,10.729993,10729.993 +39738,2025-03-11T23:02:49.548501-07:00,0.0,10.732834,10732.834 +39739,2025-03-11T23:03:00.273708-07:00,0.0,10.725207,10725.207 +39740,2025-03-11T23:03:11.008121-07:00,0.0,10.734413,10734.413 +39741,2025-03-11T23:03:21.742856-07:00,0.0,10.734735,10734.735 +39742,2025-03-11T23:03:32.480979-07:00,0.0,10.738123,10738.123 +39743,2025-03-11T23:03:43.214669-07:00,0.0,10.73369,10733.69 +39744,2025-03-11T23:03:53.952672-07:00,0.0,10.738003,10738.003 +39745,2025-03-11T23:04:04.689695-07:00,0.0,10.737023,10737.023 +39746,2025-03-11T23:04:15.418819-07:00,0.0,10.729124,10729.124 +39747,2025-03-11T23:04:26.152699-07:00,0.0,10.73388,10733.88 +39748,2025-03-11T23:04:36.886872-07:00,0.0,10.734173,10734.173 +39749,2025-03-11T23:04:47.623059-07:00,0.0,10.736187,10736.187 +39750,2025-03-11T23:04:58.350670-07:00,0.0,10.727611,10727.611 +39751,2025-03-11T23:05:09.086104-07:00,0.0,10.735434,10735.434 +39752,2025-03-11T23:05:19.827111-07:00,0.0,10.741007,10741.007 +39753,2025-03-11T23:05:30.560021-07:00,0.0,10.73291,10732.91 +39754,2025-03-11T23:05:41.286878-07:00,0.0,10.726857,10726.857 +39755,2025-03-11T23:05:52.016892-07:00,0.0,10.730014,10730.014 +39756,2025-03-11T23:06:02.754874-07:00,0.0,10.737982,10737.982 +39757,2025-03-11T23:06:13.490670-07:00,0.0,10.735796,10735.796 +39758,2025-03-11T23:06:24.223670-07:00,0.0,10.733,10733.0 +39759,2025-03-11T23:06:34.954741-07:00,0.0,10.731071,10731.071 +39760,2025-03-11T23:06:45.687494-07:00,0.0,10.732753,10732.753 +39761,2025-03-11T23:06:56.421672-07:00,0.0,10.734178,10734.178 +39762,2025-03-11T23:07:07.152074-07:00,0.0,10.730402,10730.402 +39763,2025-03-11T23:07:17.887739-07:00,0.0,10.735665,10735.665 +39764,2025-03-11T23:07:28.623414-07:00,0.0,10.735675,10735.675 +39765,2025-03-11T23:07:39.361462-07:00,0.0,10.738048,10738.048 +39766,2025-03-11T23:07:50.096737-07:00,0.0,10.735275,10735.275 +39767,2025-03-11T23:08:00.832887-07:00,0.0,10.73615,10736.15 +39768,2025-03-11T23:08:11.569867-07:00,0.0,10.73698,10736.98 +39769,2025-03-11T23:08:22.294673-07:00,0.0,10.724806,10724.806 +39770,2025-03-11T23:08:33.034233-07:00,0.0,10.73956,10739.56 +39771,2025-03-11T23:08:43.767065-07:00,0.0,10.732832,10732.832 +39772,2025-03-11T23:08:54.503632-07:00,0.0,10.736567,10736.567 +39773,2025-03-11T23:09:05.231669-07:00,0.0,10.728037,10728.037 +39774,2025-03-11T23:09:15.963751-07:00,0.0,10.732082,10732.082 +39775,2025-03-11T23:09:26.699088-07:00,0.0,10.735337,10735.337 +39776,2025-03-11T23:09:37.443970-07:00,0.0,10.744882,10744.882 +39777,2025-03-11T23:09:48.177669-07:00,0.0,10.733699,10733.699 +39778,2025-03-11T23:09:58.910673-07:00,0.0,10.733004,10733.004 +39779,2025-03-11T23:10:09.645851-07:00,0.0,10.735178,10735.178 +39780,2025-03-11T23:10:20.381314-07:00,0.0,10.735463,10735.463 +39781,2025-03-11T23:10:31.107670-07:00,0.0,10.726356,10726.356 +39782,2025-03-11T23:10:41.846672-07:00,0.0,10.739002,10739.002 +39783,2025-03-11T23:10:52.582723-07:00,0.0,10.736051,10736.051 +39784,2025-03-11T23:11:03.319870-07:00,0.0,10.737147,10737.147 +39785,2025-03-11T23:11:14.049885-07:00,0.0,10.730015,10730.015 +39786,2025-03-11T23:11:24.785669-07:00,0.0,10.735784,10735.784 +39787,2025-03-11T23:11:35.512853-07:00,0.0,10.727184,10727.184 +39788,2025-03-11T23:11:46.246683-07:00,0.0,10.73383,10733.83 +39789,2025-03-11T23:11:56.991737-07:00,0.0,10.745054,10745.054 +39790,2025-03-11T23:12:07.719890-07:00,0.0,10.728153,10728.153 +39791,2025-03-11T23:12:18.466709-07:00,0.0,10.746819,10746.819 +39792,2025-03-11T23:12:29.200916-07:00,0.0,10.734207,10734.207 +39793,2025-03-11T23:12:39.934669-07:00,0.0,10.733753,10733.753 +39794,2025-03-11T23:12:50.671885-07:00,0.0,10.737216,10737.216 +39795,2025-03-11T23:13:01.405860-07:00,0.0,10.733975,10733.975 +39796,2025-03-11T23:13:12.151071-07:00,0.0,10.745211,10745.211 +39797,2025-03-11T23:13:22.888850-07:00,0.0,10.737779,10737.779 +39798,2025-03-11T23:13:33.630276-07:00,0.0,10.741426,10741.426 +39799,2025-03-11T23:13:44.367671-07:00,0.0,10.737395,10737.395 +39800,2025-03-11T23:13:55.097673-07:00,0.0,10.730002,10730.002 +39801,2025-03-11T23:14:05.837664-07:00,0.0,10.739991,10739.991 +39802,2025-03-11T23:14:16.564894-07:00,0.0,10.72723,10727.23 +39803,2025-03-11T23:14:27.302112-07:00,0.0,10.737218,10737.218 +39804,2025-03-11T23:14:38.037797-07:00,0.0,10.735685,10735.685 +39805,2025-03-11T23:14:48.783906-07:00,0.0,10.746109,10746.109 +39806,2025-03-11T23:14:59.515838-07:00,0.0,10.731932,10731.932 +39807,2025-03-11T23:15:10.245739-07:00,0.0,10.729901,10729.901 +39808,2025-03-11T23:15:20.993737-07:00,0.0,10.747998,10747.998 +39809,2025-03-11T23:15:31.726837-07:00,0.0,10.7331,10733.1 +39810,2025-03-11T23:15:42.457875-07:00,0.0,10.731038,10731.038 +39811,2025-03-11T23:15:53.194719-07:00,0.0,10.736844,10736.844 +39812,2025-03-11T23:16:03.934891-07:00,0.0,10.740172,10740.172 +39813,2025-03-11T23:16:14.673672-07:00,0.0,10.738781,10738.781 +39814,2025-03-11T23:16:25.409885-07:00,0.0,10.736213,10736.213 +39815,2025-03-11T23:16:36.139842-07:00,0.0,10.729957,10729.957 +39816,2025-03-11T23:16:46.878672-07:00,0.0,10.73883,10738.83 +39817,2025-03-11T23:16:57.612669-07:00,0.0,10.733997,10733.997 +39818,2025-03-11T23:17:08.349675-07:00,0.0,10.737006,10737.006 +39819,2025-03-11T23:17:19.085743-07:00,0.0,10.736068,10736.068 +39820,2025-03-11T23:17:29.817696-07:00,0.0,10.731953,10731.953 +39821,2025-03-11T23:17:40.556506-07:00,0.0,10.73881,10738.81 +39822,2025-03-11T23:17:51.293673-07:00,0.0,10.737167,10737.167 +39823,2025-03-11T23:18:02.034007-07:00,0.0,10.740334,10740.334 +39824,2025-03-11T23:18:12.759460-07:00,0.0,10.725453,10725.453 +39825,2025-03-11T23:18:23.495672-07:00,0.0,10.736212,10736.212 +39826,2025-03-11T23:18:34.231667-07:00,0.0,10.735995,10735.995 +39827,2025-03-11T23:18:44.969671-07:00,0.0,10.738004,10738.004 +39828,2025-03-11T23:18:55.704839-07:00,0.0,10.735168,10735.168 +39829,2025-03-11T23:19:06.437901-07:00,0.0,10.733062,10733.062 +39830,2025-03-11T23:19:17.177684-07:00,0.0,10.739783,10739.783 +39831,2025-03-11T23:19:27.906849-07:00,0.0,10.729165,10729.165 +39832,2025-03-11T23:19:38.645839-07:00,0.0,10.73899,10738.99 +39833,2025-03-11T23:19:49.377670-07:00,0.0,10.731831,10731.831 +39834,2025-03-11T23:20:00.115672-07:00,0.0,10.738002,10738.002 +39835,2025-03-11T23:20:10.847821-07:00,0.0,10.732149,10732.149 +39836,2025-03-11T23:20:21.585837-07:00,0.0,10.738016,10738.016 +39837,2025-03-11T23:20:32.319565-07:00,0.0,10.733728,10733.728 +39838,2025-03-11T23:20:43.050932-07:00,0.0,10.731367,10731.367 +39839,2025-03-11T23:20:53.784849-07:00,0.0,10.733917,10733.917 +39840,2025-03-11T23:21:04.513701-07:00,0.0,10.728852,10728.852 +39841,2025-03-11T23:21:15.253883-07:00,0.0,10.740182,10740.182 +39842,2025-03-11T23:21:25.991420-07:00,0.0,10.737537,10737.537 +39843,2025-03-11T23:21:36.732814-07:00,0.0,10.741394,10741.394 +39844,2025-03-11T23:21:47.468805-07:00,0.0,10.735991,10735.991 +39845,2025-03-11T23:21:58.203783-07:00,0.0,10.734978,10734.978 +39846,2025-03-11T23:22:08.931021-07:00,0.0,10.727238,10727.238 +39847,2025-03-11T23:22:19.673674-07:00,0.0,10.742653,10742.653 +39848,2025-03-11T23:22:30.410076-07:00,0.0,10.736402,10736.402 +39849,2025-03-11T23:22:41.145884-07:00,0.0,10.735808,10735.808 +39850,2025-03-11T23:22:51.879873-07:00,0.0,10.733989,10733.989 +39851,2025-03-11T23:23:02.618856-07:00,0.0,10.738983,10738.983 +39852,2025-03-11T23:23:13.359880-07:00,0.0,10.741024,10741.024 +39853,2025-03-11T23:23:24.088870-07:00,0.0,10.72899,10728.99 +39854,2025-03-11T23:23:34.821963-07:00,0.0,10.733093,10733.093 +39855,2025-03-11T23:23:45.558670-07:00,0.0,10.736707,10736.707 +39856,2025-03-11T23:23:56.298669-07:00,0.0,10.739999,10739.999 +39857,2025-03-11T23:24:07.034848-07:00,0.0,10.736179,10736.179 +39858,2025-03-11T23:24:17.771857-07:00,0.0,10.737009,10737.009 +39859,2025-03-11T23:24:28.504935-07:00,0.0,10.733078,10733.078 +39860,2025-03-11T23:24:39.234670-07:00,0.0,10.729735,10729.735 +39861,2025-03-11T23:24:49.970684-07:00,0.0,10.736014,10736.014 +39862,2025-03-11T23:25:00.707597-07:00,0.0,10.736913,10736.913 +39863,2025-03-11T23:25:11.446700-07:00,0.0,10.739103,10739.103 +39864,2025-03-11T23:25:22.180671-07:00,0.0,10.733971,10733.971 +39865,2025-03-11T23:25:32.913862-07:00,0.0,10.733191,10733.191 +39866,2025-03-11T23:25:43.647075-07:00,0.0,10.733213,10733.213 +39867,2025-03-11T23:25:54.385670-07:00,0.0,10.738595,10738.595 +39868,2025-03-11T23:26:05.120879-07:00,0.0,10.735209,10735.209 +39869,2025-03-11T23:26:15.856669-07:00,0.0,10.73579,10735.79 +39870,2025-03-11T23:26:26.590779-07:00,0.0,10.73411,10734.11 +39871,2025-03-11T23:26:37.329755-07:00,0.0,10.738976,10738.976 +39872,2025-03-11T23:26:48.061675-07:00,0.0,10.73192,10731.92 +39873,2025-03-11T23:26:58.797696-07:00,0.0,10.736021,10736.021 +39874,2025-03-11T23:27:09.538051-07:00,0.0,10.740355,10740.355 +39875,2025-03-11T23:27:20.264713-07:00,0.0,10.726662,10726.662 +39876,2025-03-11T23:27:31.008702-07:00,0.0,10.743989,10743.989 +39877,2025-03-11T23:27:41.741699-07:00,0.0,10.732997,10732.997 +39878,2025-03-11T23:27:52.469858-07:00,0.0,10.728159,10728.159 +39879,2025-03-11T23:28:03.202880-07:00,0.0,10.733022,10733.022 +39880,2025-03-11T23:28:13.944925-07:00,0.0,10.742045,10742.045 +39881,2025-03-11T23:28:24.683670-07:00,0.0,10.738745,10738.745 +39882,2025-03-11T23:28:35.420859-07:00,0.0,10.737189,10737.189 +39883,2025-03-11T23:28:46.156863-07:00,0.0,10.736004,10736.004 +39884,2025-03-11T23:28:56.887670-07:00,0.0,10.730807,10730.807 +39885,2025-03-11T23:29:07.623882-07:00,0.0,10.736212,10736.212 +39886,2025-03-11T23:29:18.365672-07:00,0.0,10.74179,10741.79 +39887,2025-03-11T23:29:29.098031-07:00,0.0,10.732359,10732.359 +39888,2025-03-11T23:29:39.836208-07:00,0.0,10.738177,10738.177 +39889,2025-03-11T23:29:50.575881-07:00,0.0,10.739673,10739.673 +39890,2025-03-11T23:30:01.317872-07:00,0.0,10.741991,10741.991 +39891,2025-03-11T23:30:12.049795-07:00,0.0,10.731923,10731.923 +39892,2025-03-11T23:30:22.785921-07:00,0.0,10.736126,10736.126 +39893,2025-03-11T23:30:33.521389-07:00,0.0,10.735468,10735.468 +39894,2025-03-11T23:30:44.258710-07:00,0.0,10.737321,10737.321 +39895,2025-03-11T23:30:54.990672-07:00,0.0,10.731962,10731.962 +39896,2025-03-11T23:31:05.723063-07:00,0.0,10.732391,10732.391 +39897,2025-03-11T23:31:16.462908-07:00,0.0,10.739845,10739.845 +39898,2025-03-11T23:31:27.198009-07:00,0.0,10.735101,10735.101 +39899,2025-03-11T23:31:37.928878-07:00,0.0,10.730869,10730.869 +39900,2025-03-11T23:31:48.668851-07:00,0.0,10.739973,10739.973 +39901,2025-03-11T23:31:59.397667-07:00,0.0,10.728816,10728.816 +39902,2025-03-11T23:32:10.132850-07:00,0.0,10.735183,10735.183 +39903,2025-03-11T23:32:20.867888-07:00,0.0,10.735038,10735.038 +39904,2025-03-11T23:32:31.598856-07:00,0.0,10.730968,10730.968 +39905,2025-03-11T23:32:42.337967-07:00,0.0,10.739111,10739.111 +39906,2025-03-11T23:32:53.065668-07:00,0.0,10.727701,10727.701 +39907,2025-03-11T23:33:03.805978-07:00,0.0,10.74031,10740.31 +39908,2025-03-11T23:33:14.542869-07:00,0.0,10.736891,10736.891 +39909,2025-03-11T23:33:25.267676-07:00,0.0,10.724807,10724.807 +39910,2025-03-11T23:33:36.010184-07:00,0.0,10.742508,10742.508 +39911,2025-03-11T23:33:46.736674-07:00,0.0,10.72649,10726.49 +39912,2025-03-11T23:33:57.477063-07:00,0.0,10.740389,10740.389 +39913,2025-03-11T23:34:08.211792-07:00,0.0,10.734729,10734.729 +39914,2025-03-11T23:34:18.950105-07:00,0.0,10.738313,10738.313 +39915,2025-03-11T23:34:29.678897-07:00,0.0,10.728792,10728.792 +39916,2025-03-11T23:34:40.410832-07:00,0.0,10.731935,10731.935 +39917,2025-03-11T23:34:51.142833-07:00,0.0,10.732001,10732.001 +39918,2025-03-11T23:35:01.877673-07:00,0.0,10.73484,10734.84 +39919,2025-03-11T23:35:12.615665-07:00,0.0,10.737992,10737.992 +39920,2025-03-11T23:35:23.341878-07:00,0.0,10.726213,10726.213 +39921,2025-03-11T23:35:34.081962-07:00,0.0,10.740084,10740.084 +39922,2025-03-11T23:35:44.812084-07:00,0.0,10.730122,10730.122 +39923,2025-03-11T23:35:55.540854-07:00,0.0,10.72877,10728.77 +39924,2025-03-11T23:36:06.272876-07:00,0.0,10.732022,10732.022 +39925,2025-03-11T23:36:17.011820-07:00,0.0,10.738944,10738.944 +39926,2025-03-11T23:36:27.746888-07:00,0.0,10.735068,10735.068 +39927,2025-03-11T23:36:38.481844-07:00,0.0,10.734956,10734.956 +39928,2025-03-11T23:36:49.211675-07:00,0.0,10.729831,10729.831 +39929,2025-03-11T23:36:59.948671-07:00,0.0,10.736996,10736.996 +39930,2025-03-11T23:37:10.679925-07:00,0.0,10.731254,10731.254 +39931,2025-03-11T23:37:21.410868-07:00,0.0,10.730943,10730.943 +39932,2025-03-11T23:37:32.147669-07:00,0.0,10.736801,10736.801 +39933,2025-03-11T23:37:42.879678-07:00,0.0,10.732009,10732.009 +39934,2025-03-11T23:37:53.612844-07:00,0.0,10.733166,10733.166 +39935,2025-03-11T23:38:04.343670-07:00,0.0,10.730826,10730.826 +39936,2025-03-11T23:38:15.080881-07:00,0.0,10.737211,10737.211 +39937,2025-03-11T23:38:25.806856-07:00,0.0,10.725975,10725.975 +39938,2025-03-11T23:38:36.543712-07:00,0.0,10.736856,10736.856 +39939,2025-03-11T23:38:47.278672-07:00,0.0,10.73496,10734.96 +39940,2025-03-11T23:38:58.011708-07:00,0.0,10.733036,10733.036 +39941,2025-03-11T23:39:08.743051-07:00,0.0,10.731343,10731.343 +39942,2025-03-11T23:39:19.465670-07:00,0.0,10.722619,10722.619 +39943,2025-03-11T23:39:30.200849-07:00,0.0,10.735179,10735.179 +39944,2025-03-11T23:39:40.937849-07:00,0.0,10.737,10737.0 +39945,2025-03-11T23:39:51.671876-07:00,0.0,10.734027,10734.027 +39946,2025-03-11T23:40:02.399673-07:00,0.0,10.727797,10727.797 +39947,2025-03-11T23:40:13.133673-07:00,0.0,10.734,10734.0 +39948,2025-03-11T23:40:23.865827-07:00,0.0,10.732154,10732.154 +39949,2025-03-11T23:40:34.597878-07:00,0.0,10.732051,10732.051 +39950,2025-03-11T23:40:45.328604-07:00,0.0,10.730726,10730.726 +39951,2025-03-11T23:40:56.062849-07:00,0.0,10.734245,10734.245 +39952,2025-03-11T23:41:06.794668-07:00,0.0,10.731819,10731.819 +39953,2025-03-11T23:41:17.523701-07:00,0.0,10.729033,10729.033 +39954,2025-03-11T23:41:28.263944-07:00,0.0,10.740243,10740.243 +39955,2025-03-11T23:41:38.996693-07:00,0.0,10.732749,10732.749 +39956,2025-03-11T23:41:49.724854-07:00,0.0,10.728161,10728.161 +39957,2025-03-11T23:42:00.458948-07:00,0.0,10.734094,10734.094 +39958,2025-03-11T23:42:11.192112-07:00,0.0,10.733164,10733.164 +39959,2025-03-11T23:42:21.916910-07:00,0.0,10.724798,10724.798 +39960,2025-03-11T23:42:32.656792-07:00,0.0,10.739882,10739.882 +39961,2025-03-11T23:42:43.379829-07:00,0.0,10.723037,10723.037 +39962,2025-03-11T23:42:54.119484-07:00,0.0,10.739655,10739.655 +39963,2025-03-11T23:43:04.852922-07:00,0.0,10.733438,10733.438 +39964,2025-03-11T23:43:15.578072-07:00,0.0,10.72515,10725.15 +39965,2025-03-11T23:43:26.313888-07:00,0.0,10.735816,10735.816 +39966,2025-03-11T23:43:37.040746-07:00,0.0,10.726858,10726.858 +39967,2025-03-11T23:43:47.773844-07:00,0.0,10.733098,10733.098 +39968,2025-03-11T23:43:58.510018-07:00,0.0,10.736174,10736.174 +39969,2025-03-11T23:44:09.246945-07:00,0.0,10.736927,10736.927 +39970,2025-03-11T23:44:19.973857-07:00,0.0,10.726912,10726.912 +39971,2025-03-11T23:44:30.708872-07:00,0.0,10.735015,10735.015 +39972,2025-03-11T23:44:41.449337-07:00,0.0,10.740465,10740.465 +39973,2025-03-11T23:44:52.188672-07:00,0.0,10.739335,10739.335 +39974,2025-03-11T23:45:02.923669-07:00,0.0,10.734997,10734.997 +39975,2025-03-11T23:45:13.654672-07:00,0.0,10.731003,10731.003 +39976,2025-03-11T23:45:24.399046-07:00,0.0,10.744374,10744.374 +39977,2025-03-11T23:45:35.129837-07:00,0.0,10.730791,10730.791 +39978,2025-03-11T23:45:45.866672-07:00,0.0,10.736835,10736.835 +39979,2025-03-11T23:45:56.606699-07:00,0.0,10.740027,10740.027 +39980,2025-03-11T23:46:07.340691-07:00,0.0,10.733992,10733.992 +39981,2025-03-11T23:46:18.077422-07:00,0.0,10.736731,10736.731 +39982,2025-03-11T23:46:28.808703-07:00,0.0,10.731281,10731.281 +39983,2025-03-11T23:46:39.541881-07:00,0.0,10.733178,10733.178 +39984,2025-03-11T23:46:50.279695-07:00,0.0,10.737814,10737.814 +39985,2025-03-11T23:47:01.016633-07:00,0.0,10.736938,10736.938 +39986,2025-03-11T23:47:11.753789-07:00,0.0,10.737156,10737.156 +39987,2025-03-11T23:47:22.486675-07:00,0.0,10.732886,10732.886 +39988,2025-03-11T23:47:33.224073-07:00,0.0,10.737398,10737.398 +39989,2025-03-11T23:47:43.960846-07:00,0.0,10.736773,10736.773 +39990,2025-03-11T23:47:54.694676-07:00,0.0,10.73383,10733.83 +39991,2025-03-11T23:48:05.426668-07:00,0.0,10.731992,10731.992 +39992,2025-03-11T23:48:16.164183-07:00,0.0,10.737515,10737.515 +39993,2025-03-11T23:48:26.896089-07:00,0.0,10.731906,10731.906 +39994,2025-03-11T23:48:37.633670-07:00,0.0,10.737581,10737.581 +39995,2025-03-11T23:48:48.374871-07:00,0.0,10.741201,10741.201 +39996,2025-03-11T23:48:59.107971-07:00,0.0,10.7331,10733.1 +39997,2025-03-11T23:49:09.837845-07:00,0.0,10.729874,10729.874 +39998,2025-03-11T23:49:20.582033-07:00,0.0,10.744188,10744.188 +39999,2025-03-11T23:49:31.317741-07:00,0.0,10.735708,10735.708 +40000,2025-03-11T23:49:42.048669-07:00,0.0,10.730928,10730.928 +40001,2025-03-11T23:49:52.776870-07:00,0.0,10.728201,10728.201 +40002,2025-03-11T23:50:03.513028-07:00,0.0,10.736158,10736.158 +40003,2025-03-11T23:50:14.249675-07:00,0.0,10.736647,10736.647 +40004,2025-03-11T23:50:24.990881-07:00,0.0,10.741206,10741.206 +40005,2025-03-11T23:50:35.715856-07:00,0.0,10.724975,10724.975 +40006,2025-03-11T23:50:46.449672-07:00,0.0,10.733816,10733.816 +40007,2025-03-11T23:50:57.189666-07:00,0.0,10.739994,10739.994 +40008,2025-03-11T23:51:07.912695-07:00,0.0,10.723029,10723.029 +40009,2025-03-11T23:51:18.650866-07:00,0.0,10.738171,10738.171 +40010,2025-03-11T23:51:29.380671-07:00,0.0,10.729805,10729.805 +40011,2025-03-11T23:51:40.116782-07:00,0.0,10.736111,10736.111 +40012,2025-03-11T23:51:50.837130-07:00,0.0,10.720348,10720.348 +40013,2025-03-11T23:52:01.573734-07:00,0.0,10.736604,10736.604 +40014,2025-03-11T23:52:12.297819-07:00,0.0,10.724085,10724.085 +40015,2025-03-11T23:52:23.033373-07:00,0.0,10.735554,10735.554 +40016,2025-03-11T23:52:33.760696-07:00,0.0,10.727323,10727.323 +40017,2025-03-11T23:52:44.494557-07:00,0.0,10.733861,10733.861 +40018,2025-03-11T23:52:55.224536-07:00,0.0,10.729979,10729.979 +40019,2025-03-11T23:53:05.952741-07:00,0.0,10.728205,10728.205 +40020,2025-03-11T23:53:16.686882-07:00,0.0,10.734141,10734.141 +40021,2025-03-11T23:53:27.411780-07:00,0.0,10.724898,10724.898 +40022,2025-03-11T23:53:38.170800-07:00,0.0,10.75902,10759.02 +40023,2025-03-11T23:53:48.896203-07:00,0.0,10.725403,10725.403 +40024,2025-03-11T23:53:59.629495-07:00,0.0,10.733292,10733.292 +40025,2025-03-11T23:54:10.364915-07:00,0.0,10.73542,10735.42 +40026,2025-03-11T23:54:21.098797-07:00,0.0,10.733882,10733.882 +40027,2025-03-11T23:54:31.828875-07:00,0.0,10.730078,10730.078 +40028,2025-03-11T23:54:42.562823-07:00,0.0,10.733948,10733.948 +40029,2025-03-11T23:54:53.289849-07:00,0.0,10.727026,10727.026 +40030,2025-03-11T23:55:04.023010-07:00,0.0,10.733161,10733.161 +40031,2025-03-11T23:55:14.758176-07:00,0.0,10.735166,10735.166 +40032,2025-03-11T23:55:25.492868-07:00,0.0,10.734692,10734.692 +40033,2025-03-11T23:55:36.217745-07:00,0.0,10.724877,10724.877 +40034,2025-03-11T23:55:57.680014-07:00,0.0,21.462269,21462.269 +40035,2025-03-11T23:56:08.410000-07:00,0.0,10.729986,10729.986 +40036,2025-03-11T23:56:19.145380-07:00,0.0,10.73538,10735.38 +40037,2025-03-11T23:56:29.879322-07:00,0.0,10.733942,10733.942 +40038,2025-03-11T23:56:40.609797-07:00,0.0,10.730475,10730.475 +40039,2025-03-11T23:56:51.343866-07:00,0.0,10.734069,10734.069 +40040,2025-03-11T23:57:02.074862-07:00,0.0,10.730996,10730.996 +40041,2025-03-11T23:57:12.816827-07:00,0.0,10.741965,10741.965 +40042,2025-03-11T23:57:23.544160-07:00,0.0,10.727333,10727.333 +40043,2025-03-11T23:57:34.276972-07:00,0.0,10.732812,10732.812 +40044,2025-03-11T23:57:45.003799-07:00,0.0,10.726827,10726.827 +40045,2025-03-11T23:57:55.739876-07:00,0.0,10.736077,10736.077 +40046,2025-03-11T23:58:06.477900-07:00,0.0,10.738024,10738.024 +40047,2025-03-11T23:58:17.203133-07:00,0.0,10.725233,10725.233 +40048,2025-03-11T23:58:27.934797-07:00,0.0,10.731664,10731.664 +40049,2025-03-11T23:58:38.673925-07:00,0.0,10.739128,10739.128 +40050,2025-03-11T23:58:49.411644-07:00,0.0,10.737719,10737.719 +40051,2025-03-11T23:59:00.139797-07:00,0.0,10.728153,10728.153 +40052,2025-03-11T23:59:10.869799-07:00,0.0,10.730002,10730.002 +40053,2025-03-11T23:59:21.604802-07:00,0.0,10.735003,10735.003 +40054,2025-03-11T23:59:32.345987-07:00,0.0,10.741185,10741.185 +40055,2025-03-11T23:59:43.074839-07:00,0.0,10.728852,10728.852 +40056,2025-03-11T23:59:53.806801-07:00,0.0,10.731962,10731.962 diff --git a/time_differences_pressure.csv b/time_differences_pressure.csv new file mode 100644 index 0000000..f7c5e51 --- /dev/null +++ b/time_differences_pressure.csv @@ -0,0 +1,10897 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-06-10T00:00:00.712123-07:00,1005.4651489257812,0,0 +1,2025-06-10T00:00:11.646128-07:00,1005.4796752929688,10.934005,10934.005 +2,2025-06-10T00:00:22.589955-07:00,1005.5078125,10.943827,10943.827 +3,2025-06-10T00:00:33.526133-07:00,1005.466552734375,10.936178,10936.178 +4,2025-06-10T00:00:44.468920-07:00,1005.5209350585938,10.942787,10942.787 +5,2025-06-10T00:00:55.400038-07:00,1005.4915771484375,10.931118,10931.118 +6,2025-06-10T00:01:06.344364-07:00,1005.5011596679688,10.944326,10944.326 +7,2025-06-10T00:01:17.283843-07:00,1005.4651489257812,10.939479,10939.479 +8,2025-06-10T00:01:28.227831-07:00,1005.4784545898438,10.943988,10943.988 +9,2025-06-10T00:01:39.167134-07:00,1005.47314453125,10.939303,10939.303 +10,2025-06-10T00:01:50.110845-07:00,1005.4981079101562,10.943711,10943.711 +11,2025-06-10T00:02:01.045826-07:00,1005.4929809570312,10.934981,10934.981 +12,2025-06-10T00:02:11.985271-07:00,1005.4915771484375,10.939445,10939.445 +13,2025-06-10T00:02:22.923823-07:00,1005.4651489257812,10.938552,10938.552 +14,2025-06-10T00:02:33.859172-07:00,1005.4796752929688,10.935349,10935.349 +15,2025-06-10T00:02:44.793007-07:00,1005.5011596679688,10.933835,10933.835 +16,2025-06-10T00:02:55.738575-07:00,1005.4879760742188,10.945568,10945.568 +17,2025-06-10T00:03:06.672064-07:00,1005.43359375,10.933489,10933.489 +18,2025-06-10T00:03:17.611107-07:00,1005.4388427734375,10.939043,10939.043 +19,2025-06-10T00:03:28.552976-07:00,1005.4454956054688,10.941869,10941.869 +20,2025-06-10T00:03:39.489141-07:00,1005.4137573242188,10.936165,10936.165 +21,2025-06-10T00:03:50.433830-07:00,1005.4321899414062,10.944689,10944.689 +22,2025-06-10T00:04:01.364241-07:00,1005.4240112304688,10.930411,10930.411 +23,2025-06-10T00:04:12.301132-07:00,1005.3909301757812,10.936891,10936.891 +24,2025-06-10T00:04:23.242013-07:00,1005.4240112304688,10.940881,10940.881 +25,2025-06-10T00:04:34.178338-07:00,1005.4467163085938,10.936325,10936.325 +26,2025-06-10T00:04:45.113839-07:00,1005.4520263671875,10.935501,10935.501 +27,2025-06-10T00:04:56.043883-07:00,1005.4586181640625,10.930044,10930.044 +28,2025-06-10T00:05:06.980839-07:00,1005.4388427734375,10.936956,10936.956 +29,2025-06-10T00:05:17.922839-07:00,1005.4718017578125,10.942,10942.0 +30,2025-06-10T00:05:28.857017-07:00,1005.4371948242188,10.934178,10934.178 +31,2025-06-10T00:05:39.791188-07:00,1005.4078369140625,10.934171,10934.171 +32,2025-06-10T00:05:50.725080-07:00,1005.4288940429688,10.933892,10933.892 +33,2025-06-10T00:06:01.666792-07:00,1005.4275512695312,10.941712,10941.712 +34,2025-06-10T00:06:12.598997-07:00,1005.442138671875,10.932205,10932.205 +35,2025-06-10T00:06:23.534198-07:00,1005.4407958984375,10.935201,10935.201 +36,2025-06-10T00:06:34.474084-07:00,1005.42236328125,10.939886,10939.886 +37,2025-06-10T00:06:45.410847-07:00,1005.4110717773438,10.936763,10936.763 +38,2025-06-10T00:06:56.337839-07:00,1005.4209594726562,10.926992,10926.992 +39,2025-06-10T00:07:07.272591-07:00,1005.4354858398438,10.934752,10934.752 +40,2025-06-10T00:07:18.209842-07:00,1005.455322265625,10.937251,10937.251 +41,2025-06-10T00:07:29.151310-07:00,1005.4060668945312,10.941468,10941.468 +42,2025-06-10T00:07:40.086163-07:00,1005.4126586914062,10.934853,10934.853 +43,2025-06-10T00:07:51.025772-07:00,1005.4011840820312,10.939609,10939.609 +44,2025-06-10T00:08:01.964985-07:00,1005.3912353515625,10.939213,10939.213 +45,2025-06-10T00:08:12.907168-07:00,1005.4025268554688,10.942183,10942.183 +46,2025-06-10T00:08:23.845820-07:00,1005.3863525390625,10.938652,10938.652 +47,2025-06-10T00:08:34.780099-07:00,1005.42236328125,10.934279,10934.279 +48,2025-06-10T00:08:45.708822-07:00,1005.4044799804688,10.928723,10928.723 +49,2025-06-10T00:08:56.649218-07:00,1005.3829956054688,10.940396,10940.396 +50,2025-06-10T00:09:07.584071-07:00,1005.4193115234375,10.934853,10934.853 +51,2025-06-10T00:09:18.510843-07:00,1005.3995361328125,10.926772,10926.772 +52,2025-06-10T00:09:29.436841-07:00,1005.3796997070312,10.925998,10925.998 +53,2025-06-10T00:09:40.374841-07:00,1005.39453125,10.938,10938.0 +54,2025-06-10T00:09:51.303843-07:00,1005.3863525390625,10.929002,10929.002 +55,2025-06-10T00:10:02.237030-07:00,1005.3748168945312,10.933187,10933.187 +56,2025-06-10T00:10:13.175427-07:00,1005.4011840820312,10.938397,10938.397 +57,2025-06-10T00:10:24.112947-07:00,1005.3796997070312,10.93752,10937.52 +58,2025-06-10T00:10:35.055178-07:00,1005.3796997070312,10.942231,10942.231 +59,2025-06-10T00:10:45.990440-07:00,1005.4044799804688,10.935262,10935.262 +60,2025-06-10T00:10:56.925524-07:00,1005.3566284179688,10.935084,10935.084 +61,2025-06-10T00:11:07.865872-07:00,1005.3421020507812,10.940348,10940.348 +62,2025-06-10T00:11:18.805012-07:00,1005.396240234375,10.93914,10939.14 +63,2025-06-10T00:11:29.745083-07:00,1005.3912353515625,10.940071,10940.071 +64,2025-06-10T00:11:40.690993-07:00,1005.33544921875,10.94591,10945.91 +65,2025-06-10T00:11:51.631962-07:00,1005.3404541015625,10.940969,10940.969 +66,2025-06-10T00:12:02.568139-07:00,1005.3368530273438,10.936177,10936.177 +67,2025-06-10T00:12:13.505294-07:00,1005.3223266601562,10.937155,10937.155 +68,2025-06-10T00:12:24.440003-07:00,1005.3566284179688,10.934709,10934.709 +69,2025-06-10T00:12:35.386843-07:00,1005.3552856445312,10.94684,10946.84 +70,2025-06-10T00:12:46.330841-07:00,1005.3189697265625,10.943998,10943.998 +71,2025-06-10T00:12:57.271615-07:00,1005.3566284179688,10.940774,10940.774 +72,2025-06-10T00:13:08.204836-07:00,1005.3618774414062,10.933221,10933.221 +73,2025-06-10T00:13:19.147979-07:00,1005.3206176757812,10.943143,10943.143 +74,2025-06-10T00:13:30.084186-07:00,1005.396240234375,10.936207,10936.207 +75,2025-06-10T00:13:41.020250-07:00,1005.3668823242188,10.936064,10936.064 +76,2025-06-10T00:13:51.948996-07:00,1005.3717041015625,10.928746,10928.746 +77,2025-06-10T00:14:02.882843-07:00,1005.368408203125,10.933847,10933.847 +78,2025-06-10T00:14:13.828066-07:00,1005.3585815429688,10.945223,10945.223 +79,2025-06-10T00:14:24.768035-07:00,1005.4099731445312,10.939969,10939.969 +80,2025-06-10T00:14:35.696846-07:00,1005.3734130859375,10.928811,10928.811 +81,2025-06-10T00:14:46.636876-07:00,1005.3836059570312,10.94003,10940.03 +82,2025-06-10T00:14:57.577088-07:00,1005.3638305664062,10.940212,10940.212 +83,2025-06-10T00:15:08.516656-07:00,1005.3829956054688,10.939568,10939.568 +84,2025-06-10T00:15:19.457358-07:00,1005.4277954101562,10.940702,10940.702 +85,2025-06-10T00:15:30.396822-07:00,1005.3535766601562,10.939464,10939.464 +86,2025-06-10T00:15:41.346111-07:00,1005.3931884765625,10.949289,10949.289 +87,2025-06-10T00:15:52.275933-07:00,1005.39013671875,10.929822,10929.822 +88,2025-06-10T00:16:03.214839-07:00,1005.4129638671875,10.938906,10938.906 +89,2025-06-10T00:16:14.153403-07:00,1005.3967895507812,10.938564,10938.564 +90,2025-06-10T00:16:25.103141-07:00,1005.3753051757812,10.949738,10949.738 +91,2025-06-10T00:16:36.035119-07:00,1005.3736572265625,10.931978,10931.978 +92,2025-06-10T00:16:46.980983-07:00,1005.3951416015625,10.945864,10945.864 +93,2025-06-10T00:16:57.920542-07:00,1005.39013671875,10.939559,10939.559 +94,2025-06-10T00:17:08.854938-07:00,1005.3770141601562,10.934396,10934.396 +95,2025-06-10T00:17:19.790839-07:00,1005.3687744140625,10.935901,10935.901 +96,2025-06-10T00:17:30.728879-07:00,1005.4046630859375,10.93804,10938.04 +97,2025-06-10T00:17:41.665958-07:00,1005.3753051757812,10.937079,10937.079 +98,2025-06-10T00:17:52.601132-07:00,1005.3736572265625,10.935174,10935.174 +99,2025-06-10T00:18:03.543151-07:00,1005.3538818359375,10.942019,10942.019 +100,2025-06-10T00:18:14.471883-07:00,1005.4149169921875,10.928732,10928.732 +101,2025-06-10T00:18:25.418137-07:00,1005.4000854492188,10.946254,10946.254 +102,2025-06-10T00:18:36.347276-07:00,1005.3621826171875,10.929139,10929.139 +103,2025-06-10T00:18:47.291200-07:00,1005.3604736328125,10.943924,10943.924 +104,2025-06-10T00:18:58.226839-07:00,1005.3442993164062,10.935639,10935.639 +105,2025-06-10T00:19:09.167833-07:00,1005.3538818359375,10.940994,10940.994 +106,2025-06-10T00:19:20.100676-07:00,1005.3604736328125,10.932843,10932.843 +107,2025-06-10T00:19:31.039855-07:00,1005.3671264648438,10.939179,10939.179 +108,2025-06-10T00:19:41.979093-07:00,1005.3638305664062,10.939238,10939.238 +109,2025-06-10T00:19:52.914207-07:00,1005.3704833984375,10.935114,10935.114 +110,2025-06-10T00:20:03.861913-07:00,1005.3489990234375,10.947706,10947.706 +111,2025-06-10T00:20:14.790192-07:00,1005.3275146484375,10.928279,10928.279 +112,2025-06-10T00:20:25.727084-07:00,1005.31591796875,10.936892,10936.892 +113,2025-06-10T00:20:36.670988-07:00,1005.31591796875,10.943904,10943.904 +114,2025-06-10T00:20:47.603101-07:00,1005.3292236328125,10.932113,10932.113 +115,2025-06-10T00:20:58.543140-07:00,1005.28466796875,10.940039,10940.039 +116,2025-06-10T00:21:09.472143-07:00,1005.3189697265625,10.929003,10929.003 +117,2025-06-10T00:21:20.415981-07:00,1005.3189697265625,10.943838,10943.838 +118,2025-06-10T00:21:31.355903-07:00,1005.3110961914062,10.939922,10939.922 +119,2025-06-10T00:21:42.297559-07:00,1005.304443359375,10.941656,10941.656 +120,2025-06-10T00:21:53.238355-07:00,1005.3206176757812,10.940796,10940.796 +121,2025-06-10T00:22:04.186972-07:00,1005.291259765625,10.948617,10948.617 +122,2025-06-10T00:22:15.121551-07:00,1005.3027954101562,10.934579,10934.579 +123,2025-06-10T00:22:26.063204-07:00,1005.2991943359375,10.941653,10941.653 +124,2025-06-10T00:22:37.003843-07:00,1005.282958984375,10.940639,10940.639 +125,2025-06-10T00:22:47.935312-07:00,1005.2793579101562,10.931469,10931.469 +126,2025-06-10T00:22:58.882690-07:00,1005.2793579101562,10.947378,10947.378 +127,2025-06-10T00:23:09.824838-07:00,1005.2678833007812,10.942148,10942.148 +128,2025-06-10T00:23:20.757830-07:00,1005.2678833007812,10.932992,10932.992 +129,2025-06-10T00:23:31.703256-07:00,1005.2959594726562,10.945426,10945.426 +130,2025-06-10T00:23:42.637258-07:00,1005.2678833007812,10.934002,10934.002 +131,2025-06-10T00:23:53.571438-07:00,1005.2530517578125,10.93418,10934.18 +132,2025-06-10T00:24:04.508492-07:00,1005.2745361328125,10.937054,10937.054 +133,2025-06-10T00:24:15.447103-07:00,1005.2349243164062,10.938611,10938.611 +134,2025-06-10T00:24:26.389134-07:00,1005.2564086914062,10.942031,10942.031 +135,2025-06-10T00:24:37.321818-07:00,1005.2659301757812,10.932684,10932.684 +136,2025-06-10T00:24:48.267839-07:00,1005.2510986328125,10.946021,10946.021 +137,2025-06-10T00:24:59.205117-07:00,1005.2642822265625,10.937278,10937.278 +138,2025-06-10T00:25:10.147826-07:00,1005.2510986328125,10.942709,10942.709 +139,2025-06-10T00:25:21.095841-07:00,1005.2510986328125,10.948015,10948.015 +140,2025-06-10T00:25:32.040874-07:00,1005.236572265625,10.945033,10945.033 +141,2025-06-10T00:25:42.975053-07:00,1005.2431030273438,10.934179,10934.179 +142,2025-06-10T00:25:53.925996-07:00,1005.2181396484375,10.950943,10950.943 +143,2025-06-10T00:26:15.801315-07:00,1005.2234497070312,21.875319,21875.319 +144,2025-06-10T00:26:26.733871-07:00,1005.2313232421875,10.932556,10932.556 +145,2025-06-10T00:26:37.681822-07:00,1005.26953125,10.947951,10947.951 +146,2025-06-10T00:26:48.628217-07:00,1005.2332763671875,10.946395,10946.395 +147,2025-06-10T00:26:59.562843-07:00,1005.249755859375,10.934626,10934.626 +148,2025-06-10T00:27:10.507843-07:00,1005.26123046875,10.945,10945.0 +149,2025-06-10T00:27:21.455582-07:00,1005.2267456054688,10.947739,10947.739 +150,2025-06-10T00:27:32.386704-07:00,1005.2415771484375,10.931122,10931.122 +151,2025-06-10T00:27:43.338025-07:00,1005.249755859375,10.951321,10951.321 +152,2025-06-10T00:27:54.273822-07:00,1005.2546997070312,10.935797,10935.797 +153,2025-06-10T00:28:05.209898-07:00,1005.249755859375,10.936076,10936.076 +154,2025-06-10T00:28:16.148844-07:00,1005.228271484375,10.938946,10938.946 +155,2025-06-10T00:28:27.093413-07:00,1005.2510986328125,10.944569,10944.569 +156,2025-06-10T00:28:38.020820-07:00,1005.2415771484375,10.927407,10927.407 +157,2025-06-10T00:28:48.959839-07:00,1005.228271484375,10.939019,10939.019 +158,2025-06-10T00:28:59.889844-07:00,1005.2546997070312,10.930005,10930.005 +159,2025-06-10T00:29:10.829895-07:00,1005.2379760742188,10.940051,10940.051 +160,2025-06-10T00:29:21.731859-07:00,1005.2725219726562,10.901964,10901.964 +161,2025-06-10T00:29:32.664441-07:00,1005.2463989257812,10.932582,10932.582 +162,2025-06-10T00:29:43.611203-07:00,1005.2332763671875,10.946762,10946.762 +163,2025-06-10T00:29:54.544480-07:00,1005.225341796875,10.933277,10933.277 +164,2025-06-10T00:30:05.490432-07:00,1005.2564086914062,10.945952,10945.952 +165,2025-06-10T00:30:16.426394-07:00,1005.26123046875,10.935962,10935.962 +166,2025-06-10T00:30:27.370580-07:00,1005.2463989257812,10.944186,10944.186 +167,2025-06-10T00:30:38.306184-07:00,1005.2445068359375,10.935604,10935.604 +168,2025-06-10T00:30:49.245438-07:00,1005.2810668945312,10.939254,10939.254 +169,2025-06-10T00:31:00.179339-07:00,1005.2481079101562,10.933901,10933.901 +170,2025-06-10T00:31:11.119199-07:00,1005.2678833007812,10.93986,10939.86 +171,2025-06-10T00:31:22.064346-07:00,1005.2662353515625,10.945147,10945.147 +172,2025-06-10T00:31:32.995203-07:00,1005.262939453125,10.930857,10930.857 +173,2025-06-10T00:31:43.926287-07:00,1005.2597045898438,10.931084,10931.084 +174,2025-06-10T00:31:54.867689-07:00,1005.2481079101562,10.941402,10941.402 +175,2025-06-10T00:32:05.812229-07:00,1005.2463989257812,10.94454,10944.54 +176,2025-06-10T00:32:16.752191-07:00,1005.2745361328125,10.939962,10939.962 +177,2025-06-10T00:32:27.681695-07:00,1005.2597045898438,10.929504,10929.504 +178,2025-06-10T00:32:38.622203-07:00,1005.2793579101562,10.940508,10940.508 +179,2025-06-10T00:32:49.549482-07:00,1005.2368774414062,10.927279,10927.279 +180,2025-06-10T00:33:00.484237-07:00,1005.2810668945312,10.934755,10934.755 +181,2025-06-10T00:33:11.425466-07:00,1005.2615356445312,10.941229,10941.229 +182,2025-06-10T00:33:22.362186-07:00,1005.2550048828125,10.93672,10936.72 +183,2025-06-10T00:33:33.293201-07:00,1005.2648315429688,10.931015,10931.015 +184,2025-06-10T00:33:44.233744-07:00,1005.2566528320312,10.940543,10940.543 +185,2025-06-10T00:33:55.166201-07:00,1005.2351684570312,10.932457,10932.457 +186,2025-06-10T00:34:06.109187-07:00,1005.2698364257812,10.942986,10942.986 +187,2025-06-10T00:34:17.034461-07:00,1005.271484375,10.925274,10925.274 +188,2025-06-10T00:34:27.970174-07:00,1005.2550048828125,10.935713,10935.713 +189,2025-06-10T00:34:38.894199-07:00,1005.2681274414062,10.924025,10924.025 +190,2025-06-10T00:34:49.832570-07:00,1005.2681274414062,10.938371,10938.371 +191,2025-06-10T00:35:00.762199-07:00,1005.2681274414062,10.929629,10929.629 +192,2025-06-10T00:35:11.696417-07:00,1005.280029296875,10.934218,10934.218 +193,2025-06-10T00:35:22.629225-07:00,1005.2484130859375,10.932808,10932.808 +194,2025-06-10T00:35:33.563691-07:00,1005.2536010742188,10.934466,10934.466 +195,2025-06-10T00:35:44.504525-07:00,1005.2536010742188,10.940834,10940.834 +196,2025-06-10T00:35:55.431469-07:00,1005.2849731445312,10.926944,10926.944 +197,2025-06-10T00:36:06.377250-07:00,1005.2503051757812,10.945781,10945.781 +198,2025-06-10T00:36:17.313245-07:00,1005.2849731445312,10.935995,10935.995 +199,2025-06-10T00:36:28.248300-07:00,1005.31298828125,10.935055,10935.055 +200,2025-06-10T00:36:39.180694-07:00,1005.2783813476562,10.932394,10932.394 +201,2025-06-10T00:36:50.117863-07:00,1005.26220703125,10.937169,10937.169 +202,2025-06-10T00:37:01.048516-07:00,1005.2753295898438,10.930653,10930.653 +203,2025-06-10T00:37:11.978247-07:00,1005.280029296875,10.929731,10929.731 +204,2025-06-10T00:37:22.917826-07:00,1005.2753295898438,10.939579,10939.579 +205,2025-06-10T00:37:33.852021-07:00,1005.281982421875,10.934195,10934.195 +206,2025-06-10T00:37:44.790536-07:00,1005.26220703125,10.938515,10938.515 +207,2025-06-10T00:37:55.728495-07:00,1005.2737426757812,10.937959,10937.959 +208,2025-06-10T00:38:06.667455-07:00,1005.2803344726562,10.93896,10938.96 +209,2025-06-10T00:38:17.598711-07:00,1005.2687377929688,10.931256,10931.256 +210,2025-06-10T00:38:28.534263-07:00,1005.2506103515625,10.935552,10935.552 +211,2025-06-10T00:38:39.461468-07:00,1005.24072265625,10.927205,10927.205 +212,2025-06-10T00:38:50.400203-07:00,1005.2588500976562,10.938735,10938.735 +213,2025-06-10T00:39:01.333329-07:00,1005.212646484375,10.933126,10933.126 +214,2025-06-10T00:39:12.273359-07:00,1005.2242431640625,10.94003,10940.03 +215,2025-06-10T00:39:23.203202-07:00,1005.203125,10.929843,10929.843 +216,2025-06-10T00:39:34.139457-07:00,1005.2324829101562,10.936255,10936.255 +217,2025-06-10T00:39:45.069774-07:00,1005.2176513671875,10.930317,10930.317 +218,2025-06-10T00:39:56.013556-07:00,1005.1964721679688,10.943782,10943.782 +219,2025-06-10T00:40:06.943199-07:00,1005.204345703125,10.929643,10929.643 +220,2025-06-10T00:40:17.885199-07:00,1005.214599609375,10.942,10942.0 +221,2025-06-10T00:40:28.827732-07:00,1005.1799926757812,10.942533,10942.533 +222,2025-06-10T00:40:39.757339-07:00,1005.19189453125,10.929607,10929.607 +223,2025-06-10T00:40:50.704359-07:00,1005.1799926757812,10.94702,10947.02 +224,2025-06-10T00:41:01.636805-07:00,1005.1799926757812,10.932446,10932.446 +225,2025-06-10T00:41:12.573205-07:00,1005.1571655273438,10.9364,10936.4 +226,2025-06-10T00:41:23.518182-07:00,1005.1852416992188,10.944977,10944.977 +227,2025-06-10T00:41:34.455446-07:00,1005.1805419921875,10.937264,10937.264 +228,2025-06-10T00:41:45.388247-07:00,1005.17529296875,10.932801,10932.801 +229,2025-06-10T00:41:56.332383-07:00,1005.2017211914062,10.944136,10944.136 +230,2025-06-10T00:42:07.275111-07:00,1005.177001953125,10.942728,10942.728 +231,2025-06-10T00:42:18.211193-07:00,1005.2129516601562,10.936082,10936.082 +232,2025-06-10T00:42:29.145489-07:00,1005.19189453125,10.934296,10934.296 +233,2025-06-10T00:42:40.083203-07:00,1005.1607666015625,10.937714,10937.714 +234,2025-06-10T00:42:51.014817-07:00,1005.155517578125,10.931614,10931.614 +235,2025-06-10T00:43:01.960383-07:00,1005.1885375976562,10.945566,10945.566 +236,2025-06-10T00:43:12.893203-07:00,1005.1525268554688,10.93282,10932.82 +237,2025-06-10T00:43:23.835182-07:00,1005.1327514648438,10.941979,10941.979 +238,2025-06-10T00:43:34.762406-07:00,1005.1442260742188,10.927224,10927.224 +239,2025-06-10T00:43:45.697779-07:00,1005.1525268554688,10.935373,10935.373 +240,2025-06-10T00:43:56.642720-07:00,1005.1442260742188,10.944941,10944.941 +241,2025-06-10T00:44:07.583415-07:00,1005.1426391601562,10.940695,10940.695 +242,2025-06-10T00:44:18.518470-07:00,1005.170654296875,10.935055,10935.055 +243,2025-06-10T00:44:29.447614-07:00,1005.1376342773438,10.929144,10929.144 +244,2025-06-10T00:44:40.383542-07:00,1005.1885375976562,10.935928,10935.928 +245,2025-06-10T00:44:51.319199-07:00,1005.162353515625,10.935657,10935.657 +246,2025-06-10T00:45:02.258224-07:00,1005.1492309570312,10.939025,10939.025 +247,2025-06-10T00:45:13.196462-07:00,1005.1426391601562,10.938238,10938.238 +248,2025-06-10T00:45:24.128178-07:00,1005.1788940429688,10.931716,10931.716 +249,2025-06-10T00:45:35.064571-07:00,1005.1640625,10.936393,10936.393 +250,2025-06-10T00:45:45.995465-07:00,1005.1676635742188,10.930894,10930.894 +251,2025-06-10T00:45:56.931521-07:00,1005.15576171875,10.936056,10936.056 +252,2025-06-10T00:46:07.871986-07:00,1005.1610717773438,10.940465,10940.465 +253,2025-06-10T00:46:18.806201-07:00,1005.1412353515625,10.934215,10934.215 +254,2025-06-10T00:46:29.745558-07:00,1005.15283203125,10.939357,10939.357 +255,2025-06-10T00:46:40.678445-07:00,1005.1610717773438,10.932887,10932.887 +256,2025-06-10T00:46:51.614077-07:00,1005.146240234375,10.935632,10935.632 +257,2025-06-10T00:47:02.549237-07:00,1005.1281127929688,10.93516,10935.16 +258,2025-06-10T00:47:13.483208-07:00,1005.162353515625,10.933971,10933.971 +259,2025-06-10T00:47:24.424637-07:00,1005.1151733398438,10.941429,10941.429 +260,2025-06-10T00:47:35.355459-07:00,1005.1234130859375,10.930822,10930.822 +261,2025-06-10T00:47:46.295457-07:00,1005.1709594726562,10.939998,10939.998 +262,2025-06-10T00:47:57.236526-07:00,1005.15771484375,10.941069,10941.069 +263,2025-06-10T00:48:08.175199-07:00,1005.1365356445312,10.938673,10938.673 +264,2025-06-10T00:48:19.110843-07:00,1005.1365356445312,10.935644,10935.644 +265,2025-06-10T00:48:30.050172-07:00,1005.1365356445312,10.939329,10939.329 +266,2025-06-10T00:48:40.987413-07:00,1005.124755859375,10.937241,10937.241 +267,2025-06-10T00:48:51.922532-07:00,1005.1151733398438,10.935119,10935.119 +268,2025-06-10T00:49:02.848233-07:00,1005.111572265625,10.925701,10925.701 +269,2025-06-10T00:49:13.793620-07:00,1005.1035766601562,10.945387,10945.387 +270,2025-06-10T00:49:24.729191-07:00,1005.113525390625,10.935571,10935.571 +271,2025-06-10T00:49:35.658238-07:00,1005.0923461914062,10.929047,10929.047 +272,2025-06-10T00:49:46.597317-07:00,1005.1085815429688,10.939079,10939.079 +273,2025-06-10T00:49:57.541193-07:00,1005.0973510742188,10.943876,10943.876 +274,2025-06-10T00:50:08.476548-07:00,1005.1068725585938,10.935355,10935.355 +275,2025-06-10T00:50:19.410201-07:00,1005.08251953125,10.933653,10933.653 +276,2025-06-10T00:50:30.346231-07:00,1005.1055297851562,10.93603,10936.03 +277,2025-06-10T00:50:41.290901-07:00,1005.0709228515625,10.94467,10944.67 +278,2025-06-10T00:50:52.228185-07:00,1005.0989990234375,10.937284,10937.284 +279,2025-06-10T00:51:03.165203-07:00,1005.1074829101562,10.937018,10937.018 +280,2025-06-10T00:51:14.104865-07:00,1005.0992431640625,10.939662,10939.662 +281,2025-06-10T00:51:25.030455-07:00,1005.1088256835938,10.92559,10925.59 +282,2025-06-10T00:51:35.971455-07:00,1005.115478515625,10.941,10941.0 +283,2025-06-10T00:51:46.907353-07:00,1005.0942993164062,10.935898,10935.898 +284,2025-06-10T00:51:57.836194-07:00,1005.0909423828125,10.928841,10928.841 +285,2025-06-10T00:52:08.775194-07:00,1005.0992431640625,10.939,10939.0 +286,2025-06-10T00:52:19.716193-07:00,1005.0712280273438,10.940999,10940.999 +287,2025-06-10T00:52:30.654560-07:00,1005.0861206054688,10.938367,10938.367 +288,2025-06-10T00:52:41.590455-07:00,1005.06298828125,10.935895,10935.895 +289,2025-06-10T00:52:52.528412-07:00,1005.0681762695312,10.937957,10937.957 +290,2025-06-10T00:53:03.464203-07:00,1005.1239013671875,10.935791,10935.791 +291,2025-06-10T00:53:14.403340-07:00,1005.1090698242188,10.939137,10939.137 +292,2025-06-10T00:53:25.349300-07:00,1005.0646362304688,10.94596,10945.96 +293,2025-06-10T00:53:36.276455-07:00,1005.0549926757812,10.927155,10927.155 +294,2025-06-10T00:53:47.208533-07:00,1005.0665893554688,10.932078,10932.078 +295,2025-06-10T00:53:58.147251-07:00,1005.0992431640625,10.938718,10938.718 +296,2025-06-10T00:54:09.082110-07:00,1005.0761108398438,10.934859,10934.859 +297,2025-06-10T00:54:20.015716-07:00,1005.082763671875,10.933606,10933.606 +298,2025-06-10T00:54:30.953370-07:00,1005.1305541992188,10.937654,10937.654 +299,2025-06-10T00:54:41.890679-07:00,1005.0814208984375,10.937309,10937.309 +300,2025-06-10T00:54:52.823323-07:00,1005.1024780273438,10.932644,10932.644 +301,2025-06-10T00:55:03.758197-07:00,1005.0665893554688,10.934874,10934.874 +302,2025-06-10T00:55:14.692404-07:00,1005.1090698242188,10.934207,10934.207 +303,2025-06-10T00:55:25.630348-07:00,1005.0665893554688,10.937944,10937.944 +304,2025-06-10T00:55:36.572541-07:00,1005.0681762695312,10.942193,10942.193 +305,2025-06-10T00:55:47.502203-07:00,1005.0748291015625,10.929662,10929.662 +306,2025-06-10T00:55:58.440225-07:00,1005.095947265625,10.938022,10938.022 +307,2025-06-10T00:56:09.374377-07:00,1005.1011962890625,10.934152,10934.152 +308,2025-06-10T00:56:20.322193-07:00,1005.0797119140625,10.947816,10947.816 +309,2025-06-10T00:56:31.257413-07:00,1005.1143798828125,10.93522,10935.22 +310,2025-06-10T00:56:42.193351-07:00,1005.1437377929688,10.935938,10935.938 +311,2025-06-10T00:56:53.123202-07:00,1005.122314453125,10.929851,10929.851 +312,2025-06-10T00:57:04.052452-07:00,1005.0863037109375,10.92925,10929.25 +313,2025-06-10T00:57:14.994451-07:00,1005.1325073242188,10.941999,10941.999 +314,2025-06-10T00:57:25.932493-07:00,1005.0929565429688,10.938042,10938.042 +315,2025-06-10T00:57:36.866201-07:00,1005.0863037109375,10.933708,10933.708 +316,2025-06-10T00:57:47.796472-07:00,1005.0780639648438,10.930271,10930.271 +317,2025-06-10T00:57:58.729199-07:00,1005.0912475585938,10.932727,10932.727 +318,2025-06-10T00:58:09.664783-07:00,1005.0863037109375,10.935584,10935.584 +319,2025-06-10T00:58:20.595201-07:00,1005.083251953125,10.930418,10930.418 +320,2025-06-10T00:58:31.533191-07:00,1005.1258544921875,10.93799,10937.99 +321,2025-06-10T00:58:42.485203-07:00,1005.0964965820312,10.952012,10952.012 +322,2025-06-10T00:58:53.424420-07:00,1005.1031494140625,10.939217,10939.217 +323,2025-06-10T00:59:04.358247-07:00,1005.0865478515625,10.933827,10933.827 +324,2025-06-10T00:59:15.297256-07:00,1005.1079711914062,10.939009,10939.009 +325,2025-06-10T00:59:26.236210-07:00,1005.1426391601562,10.938954,10938.954 +326,2025-06-10T00:59:37.167182-07:00,1005.1492309570312,10.930972,10930.972 +327,2025-06-10T00:59:48.103361-07:00,1005.1260986328125,10.936179,10936.179 +328,2025-06-10T00:59:59.041235-07:00,1005.1343994140625,10.937874,10937.874 +329,2025-06-10T01:00:09.974886-07:00,1005.10498046875,10.933651,10933.651 +330,2025-06-10T01:00:20.909147-07:00,1005.1327514648438,10.934261,10934.261 +331,2025-06-10T01:00:31.838568-07:00,1005.1214599609375,10.929421,10929.421 +332,2025-06-10T01:00:42.772185-07:00,1005.137939453125,10.933617,10933.617 +333,2025-06-10T01:00:53.709657-07:00,1005.1459350585938,10.937472,10937.472 +334,2025-06-10T01:01:04.640247-07:00,1005.1459350585938,10.93059,10930.59 +335,2025-06-10T01:01:15.575339-07:00,1005.111572265625,10.935092,10935.092 +336,2025-06-10T01:01:26.514481-07:00,1005.1033325195312,10.939142,10939.142 +337,2025-06-10T01:01:37.449494-07:00,1005.1182250976562,10.935013,10935.013 +338,2025-06-10T01:01:48.388991-07:00,1005.14453125,10.939497,10939.497 +339,2025-06-10T01:01:59.324604-07:00,1005.1280517578125,10.935613,10935.613 +340,2025-06-10T01:02:10.260204-07:00,1005.1459350585938,10.9356,10935.6 +341,2025-06-10T01:02:21.197221-07:00,1005.1459350585938,10.937017,10937.017 +342,2025-06-10T01:02:32.132083-07:00,1005.14453125,10.934862,10934.862 +343,2025-06-10T01:02:43.071478-07:00,1005.10498046875,10.939395,10939.395 +344,2025-06-10T01:02:54.011180-07:00,1005.1657104492188,10.939702,10939.702 +345,2025-06-10T01:03:04.948453-07:00,1005.1920166015625,10.937273,10937.273 +346,2025-06-10T01:03:15.885606-07:00,1005.1657104492188,10.937153,10937.153 +347,2025-06-10T01:03:26.825182-07:00,1005.205322265625,10.939576,10939.576 +348,2025-06-10T01:03:37.748749-07:00,1005.1610107421875,10.923567,10923.567 +349,2025-06-10T01:03:48.682201-07:00,1005.1544799804688,10.933452,10933.452 +350,2025-06-10T01:03:59.629224-07:00,1005.1824951171875,10.947023,10947.023 +351,2025-06-10T01:04:10.561330-07:00,1005.190673828125,10.932106,10932.106 +352,2025-06-10T01:04:21.499200-07:00,1005.2201538085938,10.93787,10937.87 +353,2025-06-10T01:04:32.426086-07:00,1005.1873168945312,10.926886,10926.886 +354,2025-06-10T01:04:43.363245-07:00,1005.2039184570312,10.937159,10937.159 +355,2025-06-10T01:04:54.295326-07:00,1005.185791015625,10.932081,10932.081 +356,2025-06-10T01:05:05.233555-07:00,1005.1843872070312,10.938229,10938.229 +357,2025-06-10T01:05:16.168580-07:00,1005.2006225585938,10.935025,10935.025 +358,2025-06-10T01:05:27.099493-07:00,1005.2236938476562,10.930913,10930.913 +359,2025-06-10T01:05:38.023447-07:00,1005.1760864257812,10.923954,10923.954 +360,2025-06-10T01:05:48.961459-07:00,1005.2107543945312,10.938012,10938.012 +361,2025-06-10T01:05:59.893790-07:00,1005.19091796875,10.932331,10932.331 +362,2025-06-10T01:06:10.837677-07:00,1005.21875,10.943887,10943.887 +363,2025-06-10T01:06:21.761345-07:00,1005.2305297851562,10.923668,10923.668 +364,2025-06-10T01:06:32.691203-07:00,1005.2156982421875,10.929858,10929.858 +365,2025-06-10T01:06:43.625226-07:00,1005.21923828125,10.934023,10934.023 +366,2025-06-10T01:06:54.553409-07:00,1005.2354736328125,10.928183,10928.183 +367,2025-06-10T01:07:05.491186-07:00,1005.2470092773438,10.937777,10937.777 +368,2025-06-10T01:07:16.434446-07:00,1005.2420043945312,10.94326,10943.26 +369,2025-06-10T01:07:27.364552-07:00,1005.225830078125,10.930106,10930.106 +370,2025-06-10T01:07:38.292514-07:00,1005.2307739257812,10.927962,10927.962 +371,2025-06-10T01:07:49.225234-07:00,1005.2224731445312,10.93272,10932.72 +372,2025-06-10T01:08:00.172196-07:00,1005.2324829101562,10.946962,10946.962 +373,2025-06-10T01:08:11.104231-07:00,1005.2159423828125,10.932035,10932.035 +374,2025-06-10T01:08:22.034540-07:00,1005.2373657226562,10.930309,10930.309 +375,2025-06-10T01:08:32.973372-07:00,1005.214599609375,10.938832,10938.832 +376,2025-06-10T01:08:43.903385-07:00,1005.24560546875,10.930013,10930.013 +377,2025-06-10T01:08:54.840520-07:00,1005.2654418945312,10.937135,10937.135 +378,2025-06-10T01:09:05.777317-07:00,1005.2572021484375,10.936797,10936.797 +379,2025-06-10T01:09:16.709879-07:00,1005.2506103515625,10.932562,10932.562 +380,2025-06-10T01:09:27.636200-07:00,1005.2506103515625,10.926321,10926.321 +381,2025-06-10T01:09:38.571720-07:00,1005.2373657226562,10.93552,10935.52 +382,2025-06-10T01:09:49.512284-07:00,1005.2703247070312,10.940564,10940.564 +383,2025-06-10T01:10:00.437930-07:00,1005.22119140625,10.925646,10925.646 +384,2025-06-10T01:10:11.371259-07:00,1005.2572021484375,10.933329,10933.329 +385,2025-06-10T01:10:22.310181-07:00,1005.2554931640625,10.938922,10938.922 +386,2025-06-10T01:10:33.239227-07:00,1005.2703247070312,10.929046,10929.046 +387,2025-06-10T01:10:44.173323-07:00,1005.2489013671875,10.934096,10934.096 +388,2025-06-10T01:10:55.101366-07:00,1005.2357177734375,10.928043,10928.043 +389,2025-06-10T01:11:06.036458-07:00,1005.2439575195312,10.935092,10935.092 +390,2025-06-10T01:11:16.965235-07:00,1005.2291259765625,10.928777,10928.777 +391,2025-06-10T01:11:27.900197-07:00,1005.2357177734375,10.934962,10934.962 +392,2025-06-10T01:11:38.838482-07:00,1005.2373657226562,10.938285,10938.285 +393,2025-06-10T01:11:49.762202-07:00,1005.2291259765625,10.92372,10923.72 +394,2025-06-10T01:12:00.696906-07:00,1005.2357177734375,10.934704,10934.704 +395,2025-06-10T01:12:11.631201-07:00,1005.2637329101562,10.934295,10934.295 +396,2025-06-10T01:12:22.552180-07:00,1005.2224731445312,10.920979,10920.979 +397,2025-06-10T01:12:33.487201-07:00,1005.2291259765625,10.935021,10935.021 +398,2025-06-10T01:12:44.412176-07:00,1005.2439575195312,10.924975,10924.975 +399,2025-06-10T01:12:55.344655-07:00,1005.234375,10.932479,10932.479 +400,2025-06-10T01:13:06.269202-07:00,1005.214599609375,10.924547,10924.547 +401,2025-06-10T01:13:17.202241-07:00,1005.227783203125,10.933039,10933.039 +402,2025-06-10T01:13:28.130203-07:00,1005.2129516601562,10.927962,10927.962 +403,2025-06-10T01:13:39.058493-07:00,1005.2242431640625,10.92829,10928.29 +404,2025-06-10T01:13:49.987206-07:00,1005.2224731445312,10.928713,10928.713 +405,2025-06-10T01:14:00.913845-07:00,1005.2079467773438,10.926639,10926.639 +406,2025-06-10T01:14:11.845598-07:00,1005.184814453125,10.931753,10931.753 +407,2025-06-10T01:14:22.778966-07:00,1005.201416015625,10.933368,10933.368 +408,2025-06-10T01:14:33.703199-07:00,1005.22119140625,10.924233,10924.233 +409,2025-06-10T01:14:44.635510-07:00,1005.1961669921875,10.932311,10932.311 +410,2025-06-10T01:14:55.569558-07:00,1005.2093505859375,10.934048,10934.048 +411,2025-06-10T01:15:06.492188-07:00,1005.2291259765625,10.92263,10922.63 +412,2025-06-10T01:15:17.422512-07:00,1005.1882934570312,10.930324,10930.324 +413,2025-06-10T01:15:28.349351-07:00,1005.2357177734375,10.926839,10926.839 +414,2025-06-10T01:15:39.273244-07:00,1005.2112426757812,10.923893,10923.893 +415,2025-06-10T01:15:50.204893-07:00,1005.2195434570312,10.931649,10931.649 +416,2025-06-10T01:16:01.135749-07:00,1005.2489013671875,10.930856,10930.856 +417,2025-06-10T01:16:12.065591-07:00,1005.234375,10.929842,10929.842 +418,2025-06-10T01:16:22.995368-07:00,1005.2423706054688,10.929777,10929.777 +419,2025-06-10T01:16:33.922269-07:00,1005.22119140625,10.926901,10926.901 +420,2025-06-10T01:16:44.851297-07:00,1005.22119140625,10.929028,10929.028 +421,2025-06-10T01:16:55.785060-07:00,1005.1981201171875,10.933763,10933.763 +422,2025-06-10T01:17:06.720205-07:00,1005.2195434570312,10.935145,10935.145 +423,2025-06-10T01:17:17.644364-07:00,1005.214599609375,10.924159,10924.159 +424,2025-06-10T01:17:28.581643-07:00,1005.1997680664062,10.937279,10937.279 +425,2025-06-10T01:17:39.509286-07:00,1005.2095947265625,10.927643,10927.643 +426,2025-06-10T01:17:50.451162-07:00,1005.22119140625,10.941876,10941.876 +427,2025-06-10T01:18:01.385451-07:00,1005.2195434570312,10.934289,10934.289 +428,2025-06-10T01:18:12.308270-07:00,1005.227783203125,10.922819,10922.819 +429,2025-06-10T01:18:23.236463-07:00,1005.22119140625,10.928193,10928.193 +430,2025-06-10T01:18:34.165199-07:00,1005.1997680664062,10.928736,10928.736 +431,2025-06-10T01:18:45.094443-07:00,1005.1782836914062,10.929244,10929.244 +432,2025-06-10T01:18:56.021946-07:00,1005.19482421875,10.927503,10927.503 +433,2025-06-10T01:19:06.950863-07:00,1005.1865844726562,10.928917,10928.917 +434,2025-06-10T01:19:14.624338-07:00,1005.1997680664062,7.673475,7673.475 +435,2025-06-10T01:19:17.878381-07:00,1005.206298828125,3.254043,3254.043 +436,2025-06-10T01:19:28.811448-07:00,1005.1749877929688,10.933067,10933.067 +437,2025-06-10T01:19:39.748454-07:00,1005.1914672851562,10.937006,10937.006 +438,2025-06-10T01:19:50.672500-07:00,1005.1634521484375,10.924046,10924.046 +439,2025-06-10T01:20:01.603529-07:00,1005.1634521484375,10.931029,10931.029 +440,2025-06-10T01:20:12.533709-07:00,1005.1634521484375,10.93018,10930.18 +441,2025-06-10T01:20:23.471185-07:00,1005.1832885742188,10.937476,10937.476 +442,2025-06-10T01:20:34.397071-07:00,1005.1539306640625,10.925886,10925.886 +443,2025-06-10T01:20:45.326819-07:00,1005.1539306640625,10.929748,10929.748 +444,2025-06-10T01:20:56.260305-07:00,1005.1604614257812,10.933486,10933.486 +445,2025-06-10T01:21:07.185181-07:00,1005.1539306640625,10.924876,10924.876 +446,2025-06-10T01:21:18.117439-07:00,1005.17529296875,10.932258,10932.258 +447,2025-06-10T01:21:29.042385-07:00,1005.1640625,10.924946,10924.946 +448,2025-06-10T01:21:39.968449-07:00,1005.17529296875,10.926064,10926.064 +449,2025-06-10T01:21:50.902563-07:00,1005.15576171875,10.934114,10934.114 +450,2025-06-10T01:22:01.823703-07:00,1005.1719360351562,10.92114,10921.14 +451,2025-06-10T01:22:12.758455-07:00,1005.1521606445312,10.934752,10934.752 +452,2025-06-10T01:22:23.687193-07:00,1005.1719360351562,10.928738,10928.738 +453,2025-06-10T01:22:34.621526-07:00,1005.1492309570312,10.934333,10934.333 +454,2025-06-10T01:22:45.557194-07:00,1005.162353515625,10.935668,10935.668 +455,2025-06-10T01:22:56.484734-07:00,1005.154052734375,10.92754,10927.54 +456,2025-06-10T01:23:07.419367-07:00,1005.1607055664062,10.934633,10934.633 +457,2025-06-10T01:23:18.342427-07:00,1005.1688842773438,10.92306,10923.06 +458,2025-06-10T01:23:29.277197-07:00,1005.1607055664062,10.93477,10934.77 +459,2025-06-10T01:23:40.199400-07:00,1005.1953125,10.922203,10922.203 +460,2025-06-10T01:23:51.134456-07:00,1005.1804809570312,10.935056,10935.056 +461,2025-06-10T01:24:02.067363-07:00,1005.1659545898438,10.932907,10932.907 +462,2025-06-10T01:24:12.988188-07:00,1005.177490234375,10.920825,10920.825 +463,2025-06-10T01:24:23.926355-07:00,1005.1659545898438,10.938167,10938.167 +464,2025-06-10T01:24:34.858443-07:00,1005.1936645507812,10.932088,10932.088 +465,2025-06-10T01:24:45.781188-07:00,1005.177490234375,10.922745,10922.745 +466,2025-06-10T01:24:56.715467-07:00,1005.1708374023438,10.934279,10934.279 +467,2025-06-10T01:25:07.643342-07:00,1005.164306640625,10.927875,10927.875 +468,2025-06-10T01:25:18.567754-07:00,1005.1804809570312,10.924412,10924.412 +469,2025-06-10T01:25:29.502536-07:00,1005.164306640625,10.934782,10934.782 +470,2025-06-10T01:25:40.436430-07:00,1005.188720703125,10.933894,10933.894 +471,2025-06-10T01:25:51.354670-07:00,1005.201904296875,10.91824,10918.24 +472,2025-06-10T01:26:02.287257-07:00,1005.1724853515625,10.932587,10932.587 +473,2025-06-10T01:26:13.219188-07:00,1005.1791381835938,10.931931,10931.931 +474,2025-06-10T01:26:24.155455-07:00,1005.2134399414062,10.936267,10936.267 +475,2025-06-10T01:26:35.082753-07:00,1005.1972045898438,10.927298,10927.298 +476,2025-06-10T01:26:46.024548-07:00,1005.2186889648438,10.941795,10941.795 +477,2025-06-10T01:26:56.953355-07:00,1005.1923217773438,10.928807,10928.807 +478,2025-06-10T01:27:07.894544-07:00,1005.2120361328125,10.941189,10941.189 +479,2025-06-10T01:27:18.827252-07:00,1005.22998046875,10.932708,10932.708 +480,2025-06-10T01:27:29.761201-07:00,1005.2332153320312,10.933949,10933.949 +481,2025-06-10T01:27:40.690180-07:00,1005.2134399414062,10.928979,10928.979 +482,2025-06-10T01:27:51.620201-07:00,1005.241455078125,10.930021,10930.021 +483,2025-06-10T01:28:02.552952-07:00,1005.23486328125,10.932751,10932.751 +484,2025-06-10T01:28:13.487445-07:00,1005.2217407226562,10.934493,10934.493 +485,2025-06-10T01:28:24.420930-07:00,1005.2266235351562,10.933485,10933.485 +486,2025-06-10T01:28:35.354186-07:00,1005.225341796875,10.933256,10933.256 +487,2025-06-10T01:28:46.279390-07:00,1005.2054443359375,10.925204,10925.204 +488,2025-06-10T01:28:57.213462-07:00,1005.225341796875,10.934072,10934.072 +489,2025-06-10T01:29:08.153280-07:00,1005.2332153320312,10.939818,10939.818 +490,2025-06-10T01:29:19.105920-07:00,1005.2463989257812,10.95264,10952.64 +491,2025-06-10T01:29:30.041447-07:00,1005.219970703125,10.935527,10935.527 +492,2025-06-10T01:29:40.972932-07:00,1005.241455078125,10.931485,10931.485 +493,2025-06-10T01:29:51.908330-07:00,1005.2516479492188,10.935398,10935.398 +494,2025-06-10T01:30:02.841924-07:00,1005.2318725585938,10.933594,10933.594 +495,2025-06-10T01:30:13.766197-07:00,1005.2661743164062,10.924273,10924.273 +496,2025-06-10T01:30:24.699149-07:00,1005.267822265625,10.932952,10932.952 +497,2025-06-10T01:30:35.635261-07:00,1005.259521484375,10.936112,10936.112 +498,2025-06-10T01:30:46.569476-07:00,1005.2529907226562,10.934215,10934.215 +499,2025-06-10T01:30:57.502924-07:00,1005.2318725585938,10.933448,10933.448 +500,2025-06-10T01:31:08.439966-07:00,1005.2398681640625,10.937042,10937.042 +501,2025-06-10T01:31:19.366166-07:00,1005.2463989257812,10.9262,10926.2 +502,2025-06-10T01:31:30.300914-07:00,1005.2661743164062,10.934748,10934.748 +503,2025-06-10T01:31:41.228920-07:00,1005.2449951171875,10.928006,10928.006 +504,2025-06-10T01:31:52.163048-07:00,1005.2463989257812,10.934128,10934.128 +505,2025-06-10T01:32:03.098244-07:00,1005.2859497070312,10.935196,10935.196 +506,2025-06-10T01:32:14.032242-07:00,1005.2728271484375,10.933998,10933.998 +507,2025-06-10T01:32:24.962204-07:00,1005.2516479492188,10.929962,10929.962 +508,2025-06-10T01:32:35.895382-07:00,1005.259521484375,10.933178,10933.178 +509,2025-06-10T01:32:46.839312-07:00,1005.2728271484375,10.94393,10943.93 +510,2025-06-10T01:32:57.768292-07:00,1005.2661743164062,10.92898,10928.98 +511,2025-06-10T01:33:08.697052-07:00,1005.2648315429688,10.92876,10928.76 +512,2025-06-10T01:33:19.625217-07:00,1005.2301635742188,10.928165,10928.165 +513,2025-06-10T01:33:30.550211-07:00,1005.2516479492188,10.924994,10924.994 +514,2025-06-10T01:33:41.478232-07:00,1005.2667236328125,10.928021,10928.021 +515,2025-06-10T01:33:52.409088-07:00,1005.269775390625,10.930856,10930.856 +516,2025-06-10T01:34:03.331004-07:00,1005.256591796875,10.921916,10921.916 +517,2025-06-10T01:34:14.258115-07:00,1005.2631225585938,10.927111,10927.111 +518,2025-06-10T01:34:25.191905-07:00,1005.2536010742188,10.93379,10933.79 +519,2025-06-10T01:34:36.122099-07:00,1005.2402954101562,10.930194,10930.194 +520,2025-06-10T01:34:47.055920-07:00,1005.269775390625,10.933821,10933.821 +521,2025-06-10T01:34:57.994979-07:00,1005.274658203125,10.939059,10939.059 +522,2025-06-10T01:35:08.930057-07:00,1005.2714233398438,10.935078,10935.078 +523,2025-06-10T01:35:19.857909-07:00,1005.2681274414062,10.927852,10927.852 +524,2025-06-10T01:35:30.791938-07:00,1005.28125,10.934029,10934.029 +525,2025-06-10T01:35:41.727064-07:00,1005.2601318359375,10.935126,10935.126 +526,2025-06-10T01:35:52.666435-07:00,1005.2732543945312,10.939371,10939.371 +527,2025-06-10T01:36:03.600902-07:00,1005.2650756835938,10.934467,10934.467 +528,2025-06-10T01:36:14.534373-07:00,1005.2518920898438,10.933471,10933.471 +529,2025-06-10T01:36:25.463431-07:00,1005.271728515625,10.929058,10929.058 +530,2025-06-10T01:36:36.396551-07:00,1005.2782592773438,10.93312,10933.12 +531,2025-06-10T01:36:47.329925-07:00,1005.271728515625,10.933374,10933.374 +532,2025-06-10T01:36:58.256201-07:00,1005.26171875,10.926276,10926.276 +533,2025-06-10T01:37:09.193911-07:00,1005.27001953125,10.93771,10937.71 +534,2025-06-10T01:37:20.119544-07:00,1005.271728515625,10.925633,10925.633 +535,2025-06-10T01:37:31.057179-07:00,1005.2536010742188,10.937635,10937.635 +536,2025-06-10T01:37:41.986972-07:00,1005.2406005859375,10.929793,10929.793 +537,2025-06-10T01:37:52.913970-07:00,1005.228759765625,10.926998,10926.998 +538,2025-06-10T01:38:03.848288-07:00,1005.2931518554688,10.934318,10934.318 +539,2025-06-10T01:38:14.772175-07:00,1005.2485961914062,10.923887,10923.887 +540,2025-06-10T01:38:25.694233-07:00,1005.2485961914062,10.922058,10922.058 +541,2025-06-10T01:38:36.621194-07:00,1005.228759765625,10.926961,10926.961 +542,2025-06-10T01:38:47.549922-07:00,1005.2340698242188,10.928728,10928.728 +543,2025-06-10T01:38:58.473242-07:00,1005.228759765625,10.92332,10923.32 +544,2025-06-10T01:39:09.404949-07:00,1005.2156372070312,10.931707,10931.707 +545,2025-06-10T01:39:20.331417-07:00,1005.2435913085938,10.926468,10926.468 +546,2025-06-10T01:39:31.262188-07:00,1005.2518920898438,10.930771,10930.771 +547,2025-06-10T01:39:42.196183-07:00,1005.2485961914062,10.933995,10933.995 +548,2025-06-10T01:39:53.124920-07:00,1005.23046875,10.928737,10928.737 +549,2025-06-10T01:40:04.057009-07:00,1005.2123413085938,10.932089,10932.089 +550,2025-06-10T01:40:14.988095-07:00,1005.223876953125,10.931086,10931.086 +551,2025-06-10T01:40:25.920849-07:00,1005.2601318359375,10.932754,10932.754 +552,2025-06-10T01:40:36.854207-07:00,1005.2667236328125,10.933358,10933.358 +553,2025-06-10T01:40:47.783784-07:00,1005.23046875,10.929577,10929.577 +554,2025-06-10T01:40:58.722177-07:00,1005.2435913085938,10.938393,10938.393 +555,2025-06-10T01:41:09.652214-07:00,1005.26171875,10.930037,10930.037 +556,2025-06-10T01:41:20.580275-07:00,1005.2354125976562,10.928061,10928.061 +557,2025-06-10T01:41:31.509523-07:00,1005.1994018554688,10.929248,10929.248 +558,2025-06-10T01:41:42.451920-07:00,1005.2208862304688,10.942397,10942.397 +559,2025-06-10T01:41:53.387924-07:00,1005.2109375,10.936004,10936.004 +560,2025-06-10T01:42:04.322941-07:00,1005.2076416015625,10.935017,10935.017 +561,2025-06-10T01:42:15.253302-07:00,1005.2125854492188,10.930361,10930.361 +562,2025-06-10T01:42:26.191361-07:00,1005.2095336914062,10.938059,10938.059 +563,2025-06-10T01:42:37.123981-07:00,1005.1898193359375,10.93262,10932.62 +564,2025-06-10T01:42:48.054733-07:00,1005.2059326171875,10.930752,10930.752 +565,2025-06-10T01:42:58.984025-07:00,1005.2373657226562,10.929292,10929.292 +566,2025-06-10T01:43:09.917943-07:00,1005.2323608398438,10.933918,10933.918 +567,2025-06-10T01:43:20.857344-07:00,1005.252197265625,10.939401,10939.401 +568,2025-06-10T01:43:31.791047-07:00,1005.2359619140625,10.933703,10933.703 +569,2025-06-10T01:43:42.721088-07:00,1005.270263671875,10.930041,10930.041 +570,2025-06-10T01:43:53.661158-07:00,1005.2867431640625,10.94007,10940.07 +571,2025-06-10T01:44:04.591991-07:00,1005.2606201171875,10.930833,10930.833 +572,2025-06-10T01:44:15.514234-07:00,1005.2754516601562,10.922243,10922.243 +573,2025-06-10T01:44:26.447217-07:00,1005.2689208984375,10.932983,10932.983 +574,2025-06-10T01:44:37.374747-07:00,1005.2408447265625,10.92753,10927.53 +575,2025-06-10T01:44:48.306922-07:00,1005.2490844726562,10.932175,10932.175 +576,2025-06-10T01:44:59.236252-07:00,1005.2556762695312,10.92933,10929.33 +577,2025-06-10T01:45:10.159471-07:00,1005.2952880859375,10.923219,10923.219 +578,2025-06-10T01:45:21.099154-07:00,1005.2886962890625,10.939683,10939.683 +579,2025-06-10T01:45:32.027849-07:00,1005.2655639648438,10.928695,10928.695 +580,2025-06-10T01:45:42.964240-07:00,1005.2770385742188,10.936391,10936.391 +581,2025-06-10T01:45:53.883922-07:00,1005.2457885742188,10.919682,10919.682 +582,2025-06-10T01:46:04.813904-07:00,1005.3067016601562,10.929982,10929.982 +583,2025-06-10T01:46:15.752907-07:00,1005.3001708984375,10.939003,10939.003 +584,2025-06-10T01:46:26.681401-07:00,1005.31640625,10.928494,10928.494 +585,2025-06-10T01:46:37.611905-07:00,1005.3001708984375,10.930504,10930.504 +586,2025-06-10T01:46:48.545631-07:00,1005.303466796875,10.933726,10933.726 +587,2025-06-10T01:46:59.478082-07:00,1005.30517578125,10.932451,10932.451 +588,2025-06-10T01:47:10.403179-07:00,1005.2870483398438,10.925097,10925.097 +589,2025-06-10T01:47:21.337338-07:00,1005.272216796875,10.934159,10934.159 +590,2025-06-10T01:47:32.271356-07:00,1005.28369140625,10.934018,10934.018 +591,2025-06-10T01:47:43.200920-07:00,1005.272216796875,10.929564,10929.564 +592,2025-06-10T01:47:54.135530-07:00,1005.268798828125,10.93461,10934.61 +593,2025-06-10T01:48:05.069901-07:00,1005.263916015625,10.934371,10934.371 +594,2025-06-10T01:48:16.008323-07:00,1005.296875,10.938422,10938.422 +595,2025-06-10T01:48:26.942162-07:00,1005.3200073242188,10.933839,10933.839 +596,2025-06-10T01:48:37.874903-07:00,1005.2770385742188,10.932741,10932.741 +597,2025-06-10T01:48:48.801166-07:00,1005.272216796875,10.926263,10926.263 +598,2025-06-10T01:48:59.738978-07:00,1005.2704467773438,10.937812,10937.812 +599,2025-06-10T01:49:10.669178-07:00,1005.2738037109375,10.9302,10930.2 +600,2025-06-10T01:49:21.598237-07:00,1005.2770385742188,10.929059,10929.059 +601,2025-06-10T01:49:32.526137-07:00,1005.2672119140625,10.9279,10927.9 +602,2025-06-10T01:49:33.617548-07:00,1005.2523193359375,1.091411,1091.411 +603,2025-06-10T01:49:43.449154-07:00,1005.25732421875,9.831606,9831.606 +604,2025-06-10T01:49:54.381895-07:00,1005.263916015625,10.932741,10932.741 +605,2025-06-10T01:50:05.312178-07:00,1005.28369140625,10.930283,10930.283 +606,2025-06-10T01:50:16.238121-07:00,1005.2655639648438,10.925943,10925.943 +607,2025-06-10T01:50:27.175018-07:00,1005.2738037109375,10.936897,10936.897 +608,2025-06-10T01:50:38.107084-07:00,1005.272216796875,10.932066,10932.066 +609,2025-06-10T01:50:49.042489-07:00,1005.3018798828125,10.935405,10935.405 +610,2025-06-10T01:50:59.976074-07:00,1005.2870483398438,10.933585,10933.585 +611,2025-06-10T01:51:10.907427-07:00,1005.2704467773438,10.931353,10931.353 +612,2025-06-10T01:51:21.844154-07:00,1005.28369140625,10.936727,10936.727 +613,2025-06-10T01:51:32.767247-07:00,1005.2853393554688,10.923093,10923.093 +614,2025-06-10T01:51:43.704066-07:00,1005.268798828125,10.936819,10936.819 +615,2025-06-10T01:51:54.641127-07:00,1005.268798828125,10.937061,10937.061 +616,2025-06-10T01:52:05.569920-07:00,1005.2605590820312,10.928793,10928.793 +617,2025-06-10T01:52:16.499174-07:00,1005.2754516601562,10.929254,10929.254 +618,2025-06-10T01:52:27.425960-07:00,1005.3099975585938,10.926786,10926.786 +619,2025-06-10T01:52:38.363314-07:00,1005.2770385742188,10.937354,10937.354 +620,2025-06-10T01:52:49.286108-07:00,1005.2539672851562,10.922794,10922.794 +621,2025-06-10T01:53:00.220279-07:00,1005.247314453125,10.934171,10934.171 +622,2025-06-10T01:53:11.142203-07:00,1005.2786865234375,10.921924,10921.924 +623,2025-06-10T01:53:22.081761-07:00,1005.2737426757812,10.939558,10939.558 +624,2025-06-10T01:53:33.009360-07:00,1005.2737426757812,10.927599,10927.599 +625,2025-06-10T01:53:43.942225-07:00,1005.2539672851562,10.932865,10932.865 +626,2025-06-10T01:53:54.879941-07:00,1005.224609375,10.937716,10937.716 +627,2025-06-10T01:54:05.811116-07:00,1005.2539672851562,10.931175,10931.175 +628,2025-06-10T01:54:16.748716-07:00,1005.3016967773438,10.9376,10937.6 +629,2025-06-10T01:54:27.685121-07:00,1005.2720336914062,10.936405,10936.405 +630,2025-06-10T01:54:38.616945-07:00,1005.2803344726562,10.931824,10931.824 +631,2025-06-10T01:54:49.550134-07:00,1005.2559204101562,10.933189,10933.189 +632,2025-06-10T01:55:00.486230-07:00,1005.3036499023438,10.936096,10936.096 +633,2025-06-10T01:55:11.425480-07:00,1005.2476806640625,10.93925,10939.25 +634,2025-06-10T01:55:22.354210-07:00,1005.2575073242188,10.92873,10928.73 +635,2025-06-10T01:55:33.291164-07:00,1005.270751953125,10.936954,10936.954 +636,2025-06-10T01:55:44.223707-07:00,1005.2984619140625,10.932543,10932.543 +637,2025-06-10T01:55:55.158149-07:00,1005.2720336914062,10.934442,10934.442 +638,2025-06-10T01:56:06.085003-07:00,1005.26416015625,10.926854,10926.854 +639,2025-06-10T01:56:17.017903-07:00,1005.2821655273438,10.9329,10932.9 +640,2025-06-10T01:56:27.948564-07:00,1005.27734375,10.930661,10930.661 +641,2025-06-10T01:56:38.875968-07:00,1005.2608032226562,10.927404,10927.404 +642,2025-06-10T01:56:49.814922-07:00,1005.2853393554688,10.938954,10938.954 +643,2025-06-10T01:57:00.739215-07:00,1005.27734375,10.924293,10924.293 +644,2025-06-10T01:57:11.679019-07:00,1005.302001953125,10.939804,10939.804 +645,2025-06-10T01:57:22.607124-07:00,1005.288818359375,10.928105,10928.105 +646,2025-06-10T01:57:33.539911-07:00,1005.2937622070312,10.932787,10932.787 +647,2025-06-10T01:57:44.466019-07:00,1005.2806396484375,10.926108,10926.108 +648,2025-06-10T01:57:55.398962-07:00,1005.2726440429688,10.932943,10932.943 +649,2025-06-10T01:58:06.327577-07:00,1005.2578125,10.928615,10928.615 +650,2025-06-10T01:58:17.253208-07:00,1005.2726440429688,10.925631,10925.631 +651,2025-06-10T01:58:28.179265-07:00,1005.24951171875,10.926057,10926.057 +652,2025-06-10T01:58:39.109110-07:00,1005.2792358398438,10.929845,10929.845 +653,2025-06-10T01:58:50.043919-07:00,1005.24462890625,10.934809,10934.809 +654,2025-06-10T01:59:00.976304-07:00,1005.2775268554688,10.932385,10932.385 +655,2025-06-10T01:59:11.910942-07:00,1005.2349853515625,10.934638,10934.638 +656,2025-06-10T01:59:22.836741-07:00,1005.2626342773438,10.925799,10925.799 +657,2025-06-10T01:59:33.763907-07:00,1005.2399291992188,10.927166,10927.166 +658,2025-06-10T01:59:44.701338-07:00,1005.2614135742188,10.937431,10937.431 +659,2025-06-10T01:59:55.625184-07:00,1005.2531127929688,10.923846,10923.846 +660,2025-06-10T02:00:06.559920-07:00,1005.2614135742188,10.934736,10934.736 +661,2025-06-10T02:00:17.498920-07:00,1005.290771484375,10.939,10939.0 +662,2025-06-10T02:00:28.432540-07:00,1005.2759399414062,10.93362,10933.62 +663,2025-06-10T02:00:39.362924-07:00,1005.269287109375,10.930384,10930.384 +664,2025-06-10T02:00:50.309049-07:00,1005.2745361328125,10.946125,10946.125 +665,2025-06-10T02:01:01.241171-07:00,1005.2759399414062,10.932122,10932.122 +666,2025-06-10T02:01:12.167952-07:00,1005.2860717773438,10.926781,10926.781 +667,2025-06-10T02:01:23.104095-07:00,1005.2679443359375,10.936143,10936.143 +668,2025-06-10T02:01:34.038909-07:00,1005.2614135742188,10.934814,10934.814 +669,2025-06-10T02:01:44.971917-07:00,1005.269287109375,10.933008,10933.008 +670,2025-06-10T02:01:55.898915-07:00,1005.2679443359375,10.926998,10926.998 +671,2025-06-10T02:02:06.834012-07:00,1005.2597045898438,10.935097,10935.097 +672,2025-06-10T02:02:17.766443-07:00,1005.2877197265625,10.932431,10932.431 +673,2025-06-10T02:02:28.686998-07:00,1005.2514038085938,10.920555,10920.555 +674,2025-06-10T02:02:39.622924-07:00,1005.24658203125,10.935926,10935.926 +675,2025-06-10T02:02:50.555110-07:00,1005.2745361328125,10.932186,10932.186 +676,2025-06-10T02:03:01.492213-07:00,1005.2679443359375,10.937103,10937.103 +677,2025-06-10T02:03:12.424390-07:00,1005.2662353515625,10.932177,10932.177 +678,2025-06-10T02:03:23.364008-07:00,1005.27783203125,10.939618,10939.618 +679,2025-06-10T02:03:34.292463-07:00,1005.2860717773438,10.928455,10928.455 +680,2025-06-10T02:03:45.228912-07:00,1005.2679443359375,10.936449,10936.449 +681,2025-06-10T02:03:56.160286-07:00,1005.2597045898438,10.931374,10931.374 +682,2025-06-10T02:04:07.096638-07:00,1005.24658203125,10.936352,10936.352 +683,2025-06-10T02:04:18.035922-07:00,1005.2877197265625,10.939284,10939.284 +684,2025-06-10T02:04:28.963034-07:00,1005.2877197265625,10.927112,10927.112 +685,2025-06-10T02:04:39.898926-07:00,1005.2728881835938,10.935892,10935.892 +686,2025-06-10T02:04:50.832333-07:00,1005.2579956054688,10.933407,10933.407 +687,2025-06-10T02:05:01.765972-07:00,1005.2745361328125,10.933639,10933.639 +688,2025-06-10T02:05:12.698253-07:00,1005.2728881835938,10.932281,10932.281 +689,2025-06-10T02:05:23.639219-07:00,1005.27783203125,10.940966,10940.966 +690,2025-06-10T02:05:34.568658-07:00,1005.2745361328125,10.929439,10929.439 +691,2025-06-10T02:05:45.509025-07:00,1005.2764282226562,10.940367,10940.367 +692,2025-06-10T02:05:56.439967-07:00,1005.2926635742188,10.930942,10930.942 +693,2025-06-10T02:06:07.379712-07:00,1005.2843627929688,10.939745,10939.745 +694,2025-06-10T02:06:18.301976-07:00,1005.2550048828125,10.922264,10922.264 +695,2025-06-10T02:06:29.242647-07:00,1005.2401733398438,10.940671,10940.671 +696,2025-06-10T02:06:40.170454-07:00,1005.2991943359375,10.927807,10927.807 +697,2025-06-10T02:06:51.102105-07:00,1005.2896118164062,10.931651,10931.651 +698,2025-06-10T02:07:02.033918-07:00,1005.2926635742188,10.931813,10931.813 +699,2025-06-10T02:07:12.972197-07:00,1005.27783203125,10.938279,10938.279 +700,2025-06-10T02:07:23.896924-07:00,1005.2681884765625,10.924727,10924.727 +701,2025-06-10T02:07:34.838195-07:00,1005.2484130859375,10.941271,10941.271 +702,2025-06-10T02:07:45.763961-07:00,1005.2418823242188,10.925766,10925.766 +703,2025-06-10T02:07:56.693198-07:00,1005.2467041015625,10.929237,10929.237 +704,2025-06-10T02:08:07.621904-07:00,1005.2962646484375,10.928706,10928.706 +705,2025-06-10T02:08:18.560279-07:00,1005.2714233398438,10.938375,10938.375 +706,2025-06-10T02:08:29.495908-07:00,1005.2747802734375,10.935629,10935.629 +707,2025-06-10T02:08:40.429277-07:00,1005.2846069335938,10.933369,10933.369 +708,2025-06-10T02:08:51.364577-07:00,1005.2896118164062,10.9353,10935.3 +709,2025-06-10T02:09:02.304918-07:00,1005.251708984375,10.940341,10940.341 +710,2025-06-10T02:09:13.239606-07:00,1005.2665405273438,10.934688,10934.688 +711,2025-06-10T02:09:24.176924-07:00,1005.2750244140625,10.937318,10937.318 +712,2025-06-10T02:09:35.112334-07:00,1005.2747802734375,10.93541,10935.41 +713,2025-06-10T02:09:46.040094-07:00,1005.2714233398438,10.92776,10927.76 +714,2025-06-10T02:09:56.979907-07:00,1005.2898559570312,10.939813,10939.813 +715,2025-06-10T02:10:07.903145-07:00,1005.2898559570312,10.923238,10923.238 +716,2025-06-10T02:10:18.842979-07:00,1005.29638671875,10.939834,10939.834 +717,2025-06-10T02:10:29.779120-07:00,1005.3077392578125,10.936141,10936.141 +718,2025-06-10T02:10:40.712167-07:00,1005.2750244140625,10.933047,10933.047 +719,2025-06-10T02:10:51.644200-07:00,1005.29638671875,10.932033,10932.033 +720,2025-06-10T02:11:02.580920-07:00,1005.2714233398438,10.93672,10936.72 +721,2025-06-10T02:11:13.517633-07:00,1005.2733764648438,10.936713,10936.713 +722,2025-06-10T02:11:24.449189-07:00,1005.2882080078125,10.931556,10931.556 +723,2025-06-10T02:11:35.379202-07:00,1005.2619018554688,10.930013,10930.013 +724,2025-06-10T02:11:46.307996-07:00,1005.2750244140625,10.928794,10928.794 +725,2025-06-10T02:11:57.235385-07:00,1005.2619018554688,10.927389,10927.389 +726,2025-06-10T02:12:08.174164-07:00,1005.2684326171875,10.938779,10938.779 +727,2025-06-10T02:12:19.103233-07:00,1005.2619018554688,10.929069,10929.069 +728,2025-06-10T02:12:30.022162-07:00,1005.2750244140625,10.918929,10918.929 +729,2025-06-10T02:12:40.955160-07:00,1005.2552490234375,10.932998,10932.998 +730,2025-06-10T02:12:51.882920-07:00,1005.2404174804688,10.92776,10927.76 +731,2025-06-10T02:13:02.810907-07:00,1005.2288818359375,10.927987,10927.987 +732,2025-06-10T02:13:13.731269-07:00,1005.2552490234375,10.920362,10920.362 +733,2025-06-10T02:13:24.662918-07:00,1005.2271728515625,10.931649,10931.649 +734,2025-06-10T02:13:35.598216-07:00,1005.2420043945312,10.935298,10935.298 +735,2025-06-10T02:13:46.522188-07:00,1005.2470092773438,10.923972,10923.972 +736,2025-06-10T02:13:57.460106-07:00,1005.2271728515625,10.937918,10937.918 +737,2025-06-10T02:14:08.388124-07:00,1005.2156982421875,10.928018,10928.018 +738,2025-06-10T02:14:19.308924-07:00,1005.2271728515625,10.9208,10920.8 +739,2025-06-10T02:14:30.241029-07:00,1005.2470092773438,10.932105,10932.105 +740,2025-06-10T02:14:41.173925-07:00,1005.2354736328125,10.932896,10932.896 +741,2025-06-10T02:14:52.103112-07:00,1005.2420043945312,10.929187,10929.187 +742,2025-06-10T02:15:03.032173-07:00,1005.2206420898438,10.929061,10929.061 +743,2025-06-10T02:15:13.961253-07:00,1005.2324829101562,10.92908,10929.08 +744,2025-06-10T02:15:24.883128-07:00,1005.225830078125,10.921875,10921.875 +745,2025-06-10T02:15:35.818180-07:00,1005.2242431640625,10.935052,10935.052 +746,2025-06-10T02:15:46.746742-07:00,1005.2404174804688,10.928562,10928.562 +747,2025-06-10T02:15:57.669188-07:00,1005.2536010742188,10.922446,10922.446 +748,2025-06-10T02:16:08.597123-07:00,1005.2337646484375,10.927935,10927.935 +749,2025-06-10T02:16:19.520998-07:00,1005.24560546875,10.923875,10923.875 +750,2025-06-10T02:16:30.445271-07:00,1005.21923828125,10.924273,10924.273 +751,2025-06-10T02:16:41.367922-07:00,1005.24560546875,10.922651,10922.651 +752,2025-06-10T02:16:52.300057-07:00,1005.2008666992188,10.932135,10932.135 +753,2025-06-10T02:17:03.224267-07:00,1005.2619018554688,10.92421,10924.21 +754,2025-06-10T02:17:14.153916-07:00,1005.2714233398438,10.929649,10929.649 +755,2025-06-10T02:17:25.088159-07:00,1005.2042236328125,10.934243,10934.243 +756,2025-06-10T02:17:36.013922-07:00,1005.2223510742188,10.925763,10925.763 +757,2025-06-10T02:17:46.943479-07:00,1005.2318725585938,10.929557,10929.557 +758,2025-06-10T02:17:57.871916-07:00,1005.2371826171875,10.928437,10928.437 +759,2025-06-10T02:18:08.799024-07:00,1005.2173461914062,10.927108,10927.108 +760,2025-06-10T02:18:19.719262-07:00,1005.1893920898438,10.920238,10920.238 +761,2025-06-10T02:18:30.657078-07:00,1005.1893920898438,10.937816,10937.816 +762,2025-06-10T02:18:41.582093-07:00,1005.1995239257812,10.925015,10925.015 +763,2025-06-10T02:18:52.511103-07:00,1005.21875,10.92901,10929.01 +764,2025-06-10T02:19:03.444749-07:00,1005.2008666992188,10.933646,10933.646 +765,2025-06-10T02:19:14.377923-07:00,1005.2090454101562,10.933174,10933.174 +766,2025-06-10T02:19:25.302267-07:00,1005.2107543945312,10.924344,10924.344 +767,2025-06-10T02:19:36.232998-07:00,1005.1976318359375,10.930731,10930.731 +768,2025-06-10T02:19:47.170262-07:00,1005.1959228515625,10.937264,10937.264 +769,2025-06-10T02:19:58.108922-07:00,1005.2107543945312,10.93866,10938.66 +770,2025-06-10T02:20:09.046261-07:00,1005.1629638671875,10.937339,10937.339 +771,2025-06-10T02:20:19.980223-07:00,1005.2025146484375,10.933962,10933.962 +772,2025-06-10T02:20:30.917918-07:00,1005.1876831054688,10.937695,10937.695 +773,2025-06-10T02:20:41.852262-07:00,1005.2107543945312,10.934344,10934.344 +774,2025-06-10T02:20:52.786903-07:00,1005.1843872070312,10.934641,10934.641 +775,2025-06-10T02:21:03.714966-07:00,1005.1761474609375,10.928063,10928.063 +776,2025-06-10T02:21:14.662523-07:00,1005.1665649414062,10.947557,10947.557 +777,2025-06-10T02:21:25.587909-07:00,1005.1533813476562,10.925386,10925.386 +778,2025-06-10T02:21:36.519847-07:00,1005.1629638671875,10.931938,10931.938 +779,2025-06-10T02:21:47.455130-07:00,1005.1810913085938,10.935283,10935.283 +780,2025-06-10T02:21:58.387468-07:00,1005.1564331054688,10.932338,10932.338 +781,2025-06-10T02:22:09.309255-07:00,1005.1498413085938,10.921787,10921.787 +782,2025-06-10T02:22:20.243968-07:00,1005.1336059570312,10.934713,10934.713 +783,2025-06-10T02:22:31.167249-07:00,1005.1695556640625,10.923281,10923.281 +784,2025-06-10T02:22:42.100916-07:00,1005.1876831054688,10.933667,10933.667 +785,2025-06-10T02:22:53.024423-07:00,1005.1270141601562,10.923507,10923.507 +786,2025-06-10T02:23:03.955958-07:00,1005.1613159179688,10.931535,10931.535 +787,2025-06-10T02:23:14.887778-07:00,1005.1236572265625,10.93182,10931.82 +788,2025-06-10T02:23:25.810578-07:00,1005.1599731445312,10.9228,10922.8 +789,2025-06-10T02:23:36.743689-07:00,1005.1517333984375,10.933111,10933.111 +790,2025-06-10T02:23:47.671446-07:00,1005.1582641601562,10.927757,10927.757 +791,2025-06-10T02:23:58.600962-07:00,1005.1467895507812,10.929516,10929.516 +792,2025-06-10T02:24:09.523528-07:00,1005.1451416015625,10.922566,10922.566 +793,2025-06-10T02:24:20.457962-07:00,1005.1695556640625,10.934434,10934.434 +794,2025-06-10T02:24:31.382138-07:00,1005.1613159179688,10.924176,10924.176 +795,2025-06-10T02:24:42.303911-07:00,1005.1270141601562,10.921773,10921.773 +796,2025-06-10T02:24:53.231245-07:00,1005.1138305664062,10.927334,10927.334 +797,2025-06-10T02:25:04.169166-07:00,1005.1204833984375,10.937921,10937.921 +798,2025-06-10T02:25:15.094952-07:00,1005.1138305664062,10.925786,10925.786 +799,2025-06-10T02:25:26.025158-07:00,1005.1283569335938,10.930206,10930.206 +800,2025-06-10T02:25:36.964598-07:00,1005.0989990234375,10.93944,10939.44 +801,2025-06-10T02:25:47.887190-07:00,1005.107177734375,10.922592,10922.592 +802,2025-06-10T02:25:58.826567-07:00,1005.1006469726562,10.939377,10939.377 +803,2025-06-10T02:26:09.754924-07:00,1005.107177734375,10.928357,10928.357 +804,2025-06-10T02:26:20.688603-07:00,1005.1283569335938,10.933679,10933.679 +805,2025-06-10T02:26:31.612909-07:00,1005.1217041015625,10.924306,10924.306 +806,2025-06-10T02:26:42.547097-07:00,1005.1365356445312,10.934188,10934.188 +807,2025-06-10T02:26:53.479914-07:00,1005.1629638671875,10.932817,10932.817 +808,2025-06-10T02:27:04.421110-07:00,1005.1415405273438,10.941196,10941.196 +809,2025-06-10T02:27:15.357318-07:00,1005.1481323242188,10.936208,10936.208 +810,2025-06-10T02:27:26.282231-07:00,1005.1300048828125,10.924913,10924.913 +811,2025-06-10T02:27:37.217897-07:00,1005.1431884765625,10.935666,10935.666 +812,2025-06-10T02:27:48.151435-07:00,1005.1365356445312,10.933538,10933.538 +813,2025-06-10T02:27:59.079992-07:00,1005.1448364257812,10.928557,10928.557 +814,2025-06-10T02:28:10.006223-07:00,1005.1415405273438,10.926231,10926.231 +815,2025-06-10T02:28:20.943269-07:00,1005.1431884765625,10.937046,10937.046 +816,2025-06-10T02:28:31.877574-07:00,1005.14013671875,10.934305,10934.305 +817,2025-06-10T02:28:42.806920-07:00,1005.1481323242188,10.929346,10929.346 +818,2025-06-10T02:28:53.733555-07:00,1005.1498413085938,10.926635,10926.635 +819,2025-06-10T02:29:04.664907-07:00,1005.1665649414062,10.931352,10931.352 +820,2025-06-10T02:29:15.592535-07:00,1005.1546630859375,10.927628,10927.628 +821,2025-06-10T02:29:26.557841-07:00,1005.14013671875,10.965306,10965.306 +822,2025-06-10T02:29:37.487088-07:00,1005.1893920898438,10.929247,10929.247 +823,2025-06-10T02:29:48.410034-07:00,1005.1780395507812,10.922946,10922.946 +824,2025-06-10T02:29:59.339785-07:00,1005.1810913085938,10.929751,10929.751 +825,2025-06-10T02:30:10.268045-07:00,1005.1715087890625,10.92826,10928.26 +826,2025-06-10T02:30:21.196916-07:00,1005.204345703125,10.928871,10928.871 +827,2025-06-10T02:30:32.125835-07:00,1005.1863403320312,10.928919,10928.919 +828,2025-06-10T02:30:43.065783-07:00,1005.2140502929688,10.939948,10939.948 +829,2025-06-10T02:30:53.991835-07:00,1005.20751953125,10.926052,10926.052 +830,2025-06-10T02:31:04.926827-07:00,1005.2061157226562,10.934992,10934.992 +831,2025-06-10T02:31:15.862945-07:00,1005.2061157226562,10.936118,10936.118 +832,2025-06-10T02:31:26.789788-07:00,1005.1995239257812,10.926843,10926.843 +833,2025-06-10T02:31:37.729020-07:00,1005.225830078125,10.939232,10939.232 +834,2025-06-10T02:31:48.658471-07:00,1005.2404174804688,10.929451,10929.451 +835,2025-06-10T02:31:59.588791-07:00,1005.2206420898438,10.93032,10930.32 +836,2025-06-10T02:32:10.525930-07:00,1005.2404174804688,10.937139,10937.139 +837,2025-06-10T02:32:21.462776-07:00,1005.2176513671875,10.936846,10936.846 +838,2025-06-10T02:32:32.391293-07:00,1005.201416015625,10.928517,10928.517 +839,2025-06-10T02:32:43.324967-07:00,1005.2554931640625,10.933674,10933.674 +840,2025-06-10T02:32:54.252637-07:00,1005.2176513671875,10.92767,10927.67 +841,2025-06-10T02:33:05.181997-07:00,1005.2290649414062,10.92936,10929.36 +842,2025-06-10T02:33:16.116076-07:00,1005.2572021484375,10.934079,10934.079 +843,2025-06-10T02:33:27.048837-07:00,1005.2489013671875,10.932761,10932.761 +844,2025-06-10T02:33:37.986239-07:00,1005.234375,10.937402,10937.402 +845,2025-06-10T02:33:48.923787-07:00,1005.2489013671875,10.937548,10937.548 +846,2025-06-10T02:33:59.858041-07:00,1005.2357177734375,10.934254,10934.254 +847,2025-06-10T02:34:10.795299-07:00,1005.2047119140625,10.937258,10937.258 +848,2025-06-10T02:34:21.732776-07:00,1005.227783203125,10.937477,10937.477 +849,2025-06-10T02:34:32.665484-07:00,1005.22607421875,10.932708,10932.708 +850,2025-06-10T02:34:43.602972-07:00,1005.2423706054688,10.937488,10937.488 +851,2025-06-10T02:34:54.541762-07:00,1005.2474975585938,10.93879,10938.79 +852,2025-06-10T02:35:05.481108-07:00,1005.240966796875,10.939346,10939.346 +853,2025-06-10T02:35:16.414780-07:00,1005.2423706054688,10.933672,10933.672 +854,2025-06-10T02:35:27.350180-07:00,1005.234375,10.9354,10935.4 +855,2025-06-10T02:35:38.274047-07:00,1005.2079467773438,10.923867,10923.867 +856,2025-06-10T02:35:49.206152-07:00,1005.2079467773438,10.932105,10932.105 +857,2025-06-10T02:36:00.141580-07:00,1005.2390747070312,10.935428,10935.428 +858,2025-06-10T02:36:11.076375-07:00,1005.19970703125,10.934795,10934.795 +859,2025-06-10T02:36:22.009058-07:00,1005.2554931640625,10.932683,10932.683 +860,2025-06-10T02:36:32.940812-07:00,1005.2224731445312,10.931754,10931.754 +861,2025-06-10T02:36:43.870791-07:00,1005.2176513671875,10.929979,10929.979 +862,2025-06-10T02:36:54.812793-07:00,1005.21923828125,10.942002,10942.002 +863,2025-06-10T02:37:05.739941-07:00,1005.2028198242188,10.927148,10927.148 +864,2025-06-10T02:37:16.665786-07:00,1005.2028198242188,10.925845,10925.845 +865,2025-06-10T02:37:27.602978-07:00,1005.225830078125,10.937192,10937.192 +866,2025-06-10T02:37:38.534267-07:00,1005.2373657226562,10.931289,10931.289 +867,2025-06-10T02:37:49.472606-07:00,1005.204345703125,10.938339,10938.339 +868,2025-06-10T02:38:00.402772-07:00,1005.19482421875,10.930166,10930.166 +869,2025-06-10T02:38:11.338083-07:00,1005.2224731445312,10.935311,10935.311 +870,2025-06-10T02:38:22.271767-07:00,1005.1882934570312,10.933684,10933.684 +871,2025-06-10T02:38:33.202660-07:00,1005.2224731445312,10.930893,10930.893 +872,2025-06-10T02:38:44.131947-07:00,1005.2093505859375,10.929287,10929.287 +873,2025-06-10T02:38:55.067055-07:00,1005.1846923828125,10.935108,10935.108 +874,2025-06-10T02:39:05.991079-07:00,1005.2242431640625,10.924024,10924.024 +875,2025-06-10T02:39:16.929089-07:00,1005.1895141601562,10.93801,10938.01 +876,2025-06-10T02:39:27.863787-07:00,1005.212646484375,10.934698,10934.698 +877,2025-06-10T02:39:38.788601-07:00,1005.2390747070312,10.924814,10924.814 +878,2025-06-10T02:39:49.725791-07:00,1005.2028198242188,10.93719,10937.19 +879,2025-06-10T02:40:00.649052-07:00,1005.1882934570312,10.923261,10923.261 +880,2025-06-10T02:40:11.583777-07:00,1005.2159423828125,10.934725,10934.725 +881,2025-06-10T02:40:22.511960-07:00,1005.2307739257812,10.928183,10928.183 +882,2025-06-10T02:40:33.448787-07:00,1005.2439575195312,10.936827,10936.827 +883,2025-06-10T02:40:44.380477-07:00,1005.2373657226562,10.93169,10931.69 +884,2025-06-10T02:40:55.310766-07:00,1005.240966796875,10.930289,10930.289 +885,2025-06-10T02:41:06.241433-07:00,1005.27685546875,10.930667,10930.667 +886,2025-06-10T02:41:17.176789-07:00,1005.2703247070312,10.935356,10935.356 +887,2025-06-10T02:41:28.106166-07:00,1005.254150390625,10.929377,10929.377 +888,2025-06-10T02:41:39.041822-07:00,1005.2474975585938,10.935656,10935.656 +889,2025-06-10T02:41:49.974929-07:00,1005.2703247070312,10.933107,10933.107 +890,2025-06-10T02:42:00.905213-07:00,1005.2554931640625,10.930284,10930.284 +891,2025-06-10T02:42:11.836502-07:00,1005.2884521484375,10.931289,10931.289 +892,2025-06-10T02:42:22.778914-07:00,1005.2686767578125,10.942412,10942.412 +893,2025-06-10T02:42:33.705049-07:00,1005.267333984375,10.926135,10926.135 +894,2025-06-10T02:42:44.628766-07:00,1005.259033203125,10.923717,10923.717 +895,2025-06-10T02:42:55.559297-07:00,1005.2884521484375,10.930531,10930.531 +896,2025-06-10T02:43:06.495836-07:00,1005.2966918945312,10.936539,10936.539 +897,2025-06-10T02:43:17.426977-07:00,1005.31640625,10.931141,10931.141 +898,2025-06-10T02:43:28.354785-07:00,1005.298583984375,10.927808,10927.808 +899,2025-06-10T02:43:39.285746-07:00,1005.3015747070312,10.930961,10930.961 +900,2025-06-10T02:43:50.214935-07:00,1005.298583984375,10.929189,10929.189 +901,2025-06-10T02:44:01.147086-07:00,1005.31640625,10.932151,10932.151 +902,2025-06-10T02:44:12.074061-07:00,1005.3297119140625,10.926975,10926.975 +903,2025-06-10T02:44:23.014218-07:00,1005.318359375,10.940157,10940.157 +904,2025-06-10T02:44:33.948787-07:00,1005.30517578125,10.934569,10934.569 +905,2025-06-10T02:44:44.882209-07:00,1005.3265380859375,10.933422,10933.422 +906,2025-06-10T02:44:55.812928-07:00,1005.3265380859375,10.930719,10930.719 +907,2025-06-10T02:45:06.746891-07:00,1005.3117065429688,10.933963,10933.963 +908,2025-06-10T02:45:17.674957-07:00,1005.3265380859375,10.928066,10928.066 +909,2025-06-10T02:45:28.615414-07:00,1005.3345336914062,10.940457,10940.457 +910,2025-06-10T02:45:39.545967-07:00,1005.3200073242188,10.930553,10930.553 +911,2025-06-10T02:45:50.476787-07:00,1005.3279418945312,10.93082,10930.82 +912,2025-06-10T02:46:01.418406-07:00,1005.3345336914062,10.941619,10941.619 +913,2025-06-10T02:46:12.345945-07:00,1005.3200073242188,10.927539,10927.539 +914,2025-06-10T02:46:23.271829-07:00,1005.3134155273438,10.925884,10925.884 +915,2025-06-10T02:46:34.209997-07:00,1005.3297119140625,10.938168,10938.168 +916,2025-06-10T02:46:45.143482-07:00,1005.3084106445312,10.933485,10933.485 +917,2025-06-10T02:46:56.069770-07:00,1005.3512573242188,10.926288,10926.288 +918,2025-06-10T02:47:07.003100-07:00,1005.33984375,10.93333,10933.33 +919,2025-06-10T02:47:17.943041-07:00,1005.3543701171875,10.939941,10939.941 +920,2025-06-10T02:47:28.875138-07:00,1005.346435546875,10.932097,10932.097 +921,2025-06-10T02:47:39.807781-07:00,1005.3265380859375,10.932643,10932.643 +922,2025-06-10T02:47:50.737918-07:00,1005.3543701171875,10.930137,10930.137 +923,2025-06-10T02:48:01.676829-07:00,1005.3529663085938,10.938911,10938.911 +924,2025-06-10T02:48:12.607183-07:00,1005.338134765625,10.930354,10930.354 +925,2025-06-10T02:48:23.544573-07:00,1005.3529663085938,10.93739,10937.39 +926,2025-06-10T02:48:34.477784-07:00,1005.3348388671875,10.933211,10933.211 +927,2025-06-10T02:48:45.404770-07:00,1005.3233032226562,10.926986,10926.986 +928,2025-06-10T02:48:56.338499-07:00,1005.3446655273438,10.933729,10933.729 +929,2025-06-10T02:49:07.278276-07:00,1005.329833984375,10.939777,10939.777 +930,2025-06-10T02:49:18.215024-07:00,1005.3465576171875,10.936748,10936.748 +931,2025-06-10T02:49:29.145835-07:00,1005.3167114257812,10.930811,10930.811 +932,2025-06-10T02:49:40.080785-07:00,1005.346435546875,10.93495,10934.95 +933,2025-06-10T02:49:51.017006-07:00,1005.318359375,10.936221,10936.221 +934,2025-06-10T02:50:01.952647-07:00,1005.3529663085938,10.935641,10935.641 +935,2025-06-10T02:50:12.883781-07:00,1005.33984375,10.931134,10931.134 +936,2025-06-10T02:50:23.824156-07:00,1005.3595581054688,10.940375,10940.375 +937,2025-06-10T02:50:34.763774-07:00,1005.3529663085938,10.939618,10939.618 +938,2025-06-10T02:50:45.692129-07:00,1005.33984375,10.928355,10928.355 +939,2025-06-10T02:50:56.630797-07:00,1005.3674926757812,10.938668,10938.668 +940,2025-06-10T02:51:07.565772-07:00,1005.362548828125,10.934975,10934.975 +941,2025-06-10T02:51:18.494404-07:00,1005.3595581054688,10.928632,10928.632 +942,2025-06-10T02:51:29.429995-07:00,1005.3543701171875,10.935591,10935.591 +943,2025-06-10T02:51:40.365018-07:00,1005.337890625,10.935023,10935.023 +944,2025-06-10T02:51:51.294049-07:00,1005.349365234375,10.929031,10929.031 +945,2025-06-10T02:52:02.237829-07:00,1005.3560180664062,10.94378,10943.78 +946,2025-06-10T02:52:13.164790-07:00,1005.3609619140625,10.926961,10926.961 +947,2025-06-10T02:52:24.100453-07:00,1005.349365234375,10.935663,10935.663 +948,2025-06-10T02:52:35.043704-07:00,1005.3428344726562,10.943251,10943.251 +949,2025-06-10T02:52:45.966776-07:00,1005.37744140625,10.923072,10923.072 +950,2025-06-10T02:52:56.902825-07:00,1005.3428344726562,10.936049,10936.049 +951,2025-06-10T02:53:07.836776-07:00,1005.349365234375,10.933951,10933.951 +952,2025-06-10T02:53:18.764926-07:00,1005.35107421875,10.92815,10928.15 +953,2025-06-10T02:53:29.697293-07:00,1005.3474731445312,10.932367,10932.367 +954,2025-06-10T02:53:40.621046-07:00,1005.3768920898438,10.923753,10923.753 +955,2025-06-10T02:53:51.552357-07:00,1005.368896484375,10.931311,10931.311 +956,2025-06-10T02:54:02.472776-07:00,1005.36376953125,10.920419,10920.419 +957,2025-06-10T02:54:13.396182-07:00,1005.3670043945312,10.923406,10923.406 +958,2025-06-10T02:54:24.321159-07:00,1005.3538818359375,10.924977,10924.977 +959,2025-06-10T02:54:35.247858-07:00,1005.3700561523438,10.926699,10926.699 +960,2025-06-10T02:54:46.189782-07:00,1005.3406982421875,10.941924,10941.924 +961,2025-06-10T02:54:57.121864-07:00,1005.3585815429688,10.932082,10932.082 +962,2025-06-10T02:55:08.057778-07:00,1005.3568725585938,10.935914,10935.914 +963,2025-06-10T02:55:18.991554-07:00,1005.3734130859375,10.933776,10933.776 +964,2025-06-10T02:55:29.924789-07:00,1005.31591796875,10.933235,10933.235 +965,2025-06-10T02:55:40.869787-07:00,1005.3668212890625,10.944998,10944.998 +966,2025-06-10T02:55:51.794791-07:00,1005.3602294921875,10.925004,10925.004 +967,2025-06-10T02:56:02.730138-07:00,1005.3734130859375,10.935347,10935.347 +968,2025-06-10T02:56:13.672312-07:00,1005.3582763671875,10.942174,10942.174 +969,2025-06-10T02:56:24.603774-07:00,1005.35498046875,10.931462,10931.462 +970,2025-06-10T02:56:35.537053-07:00,1005.3404541015625,10.933279,10933.279 +971,2025-06-10T02:56:46.461767-07:00,1005.3484497070312,10.924714,10924.714 +972,2025-06-10T02:56:57.405897-07:00,1005.3978271484375,10.94413,10944.13 +973,2025-06-10T02:57:08.334038-07:00,1005.387939453125,10.928141,10928.141 +974,2025-06-10T02:57:19.274078-07:00,1005.3895874023438,10.94004,10940.04 +975,2025-06-10T02:57:30.201784-07:00,1005.38134765625,10.927706,10927.706 +976,2025-06-10T02:57:41.129491-07:00,1005.361572265625,10.927707,10927.707 +977,2025-06-10T02:57:52.056927-07:00,1005.3992309570312,10.927436,10927.436 +978,2025-06-10T02:58:02.989068-07:00,1005.3668212890625,10.932141,10932.141 +979,2025-06-10T02:58:13.928629-07:00,1005.374755859375,10.939561,10939.561 +980,2025-06-10T02:58:24.857525-07:00,1005.3992309570312,10.928896,10928.896 +981,2025-06-10T02:58:35.784043-07:00,1005.3912353515625,10.926518,10926.518 +982,2025-06-10T02:58:46.718149-07:00,1005.40283203125,10.934106,10934.106 +983,2025-06-10T02:58:57.657506-07:00,1005.412353515625,10.939357,10939.357 +984,2025-06-10T02:59:08.589439-07:00,1005.4176635742188,10.931933,10931.933 +985,2025-06-10T02:59:19.518791-07:00,1005.3915405273438,10.929352,10929.352 +986,2025-06-10T02:59:30.449048-07:00,1005.401123046875,10.930257,10930.257 +987,2025-06-10T02:59:41.385037-07:00,1005.4076538085938,10.935989,10935.989 +988,2025-06-10T02:59:52.320016-07:00,1005.387939453125,10.934979,10934.979 +989,2025-06-10T03:00:03.254871-07:00,1005.396240234375,10.934855,10934.855 +990,2025-06-10T03:00:14.181789-07:00,1005.4110717773438,10.926918,10926.918 +991,2025-06-10T03:00:25.111822-07:00,1005.412353515625,10.930033,10930.033 +992,2025-06-10T03:00:36.050791-07:00,1005.414306640625,10.938969,10938.969 +993,2025-06-10T03:00:46.984603-07:00,1005.3931274414062,10.933812,10933.812 +994,2025-06-10T03:00:57.919766-07:00,1005.3865356445312,10.935163,10935.163 +995,2025-06-10T03:01:08.854078-07:00,1005.4093627929688,10.934312,10934.312 +996,2025-06-10T03:01:19.787784-07:00,1005.4110717773438,10.933706,10933.706 +997,2025-06-10T03:01:30.723120-07:00,1005.414306640625,10.935336,10935.336 +998,2025-06-10T03:01:41.652037-07:00,1005.4093627929688,10.928917,10928.917 +999,2025-06-10T03:01:52.587944-07:00,1005.4176635742188,10.935907,10935.907 +1000,2025-06-10T03:02:03.522954-07:00,1005.3997802734375,10.93501,10935.01 +1001,2025-06-10T03:02:14.458229-07:00,1005.3931274414062,10.935275,10935.275 +1002,2025-06-10T03:02:25.381790-07:00,1005.39453125,10.923561,10923.561 +1003,2025-06-10T03:02:36.311877-07:00,1005.427490234375,10.930087,10930.087 +1004,2025-06-10T03:02:47.241129-07:00,1005.4064331054688,10.929252,10929.252 +1005,2025-06-10T03:02:58.173180-07:00,1005.4244384765625,10.932051,10932.051 +1006,2025-06-10T03:03:09.100873-07:00,1005.4442138671875,10.927693,10927.693 +1007,2025-06-10T03:03:20.031120-07:00,1005.416259765625,10.930247,10930.247 +1008,2025-06-10T03:03:30.951794-07:00,1005.4177856445312,10.920674,10920.674 +1009,2025-06-10T03:03:41.888792-07:00,1005.4771728515625,10.936998,10936.998 +1010,2025-06-10T03:03:52.820104-07:00,1005.4177856445312,10.931312,10931.312 +1011,2025-06-10T03:04:03.752530-07:00,1005.4131469726562,10.932426,10932.426 +1012,2025-06-10T03:04:14.674017-07:00,1005.4376831054688,10.921487,10921.487 +1013,2025-06-10T03:04:25.609775-07:00,1005.4609375,10.935758,10935.758 +1014,2025-06-10T03:04:36.531789-07:00,1005.4491577148438,10.922014,10922.014 +1015,2025-06-10T03:04:47.465012-07:00,1005.4821166992188,10.933223,10933.223 +1016,2025-06-10T03:04:58.394227-07:00,1005.4115600585938,10.929215,10929.215 +1017,2025-06-10T03:05:09.326787-07:00,1005.4675903320312,10.93256,10932.56 +1018,2025-06-10T03:05:20.262864-07:00,1005.4754638671875,10.936077,10936.077 +1019,2025-06-10T03:05:31.186774-07:00,1005.4790649414062,10.92391,10923.91 +1020,2025-06-10T03:05:42.114734-07:00,1005.4774169921875,10.92796,10927.96 +1021,2025-06-10T03:05:53.046807-07:00,1005.4989013671875,10.932073,10932.073 +1022,2025-06-10T03:06:03.972386-07:00,1005.493896484375,10.925579,10925.579 +1023,2025-06-10T03:06:14.905837-07:00,1005.5117797851562,10.933451,10933.451 +1024,2025-06-10T03:06:25.824918-07:00,1005.485595703125,10.919081,10919.081 +1025,2025-06-10T03:06:36.751985-07:00,1005.5084228515625,10.927067,10927.067 +1026,2025-06-10T03:06:47.678787-07:00,1005.493896484375,10.926802,10926.802 +1027,2025-06-10T03:06:58.596980-07:00,1005.5401000976562,10.918193,10918.193 +1028,2025-06-10T03:07:09.524789-07:00,1005.493896484375,10.927809,10927.809 +1029,2025-06-10T03:07:20.447792-07:00,1005.507080078125,10.923003,10923.003 +1030,2025-06-10T03:07:31.383066-07:00,1005.5317993164062,10.935274,10935.274 +1031,2025-06-10T03:07:42.302816-07:00,1005.533447265625,10.91975,10919.75 +1032,2025-06-10T03:07:53.233322-07:00,1005.5348510742188,10.930506,10930.506 +1033,2025-06-10T03:08:04.172931-07:00,1005.5252075195312,10.939609,10939.609 +1034,2025-06-10T03:08:15.101477-07:00,1005.5499267578125,10.928546,10928.546 +1035,2025-06-10T03:08:26.034772-07:00,1005.546630859375,10.933295,10933.295 +1036,2025-06-10T03:08:36.968081-07:00,1005.5204467773438,10.933309,10933.309 +1037,2025-06-10T03:08:47.894037-07:00,1005.5301513671875,10.925956,10925.956 +1038,2025-06-10T03:08:58.833195-07:00,1005.5301513671875,10.939158,10939.158 +1039,2025-06-10T03:09:09.767435-07:00,1005.5317993164062,10.93424,10934.24 +1040,2025-06-10T03:09:20.691048-07:00,1005.5432739257812,10.923613,10923.613 +1041,2025-06-10T03:09:31.620014-07:00,1005.5317993164062,10.928966,10928.966 +1042,2025-06-10T03:09:42.552179-07:00,1005.5449829101562,10.932165,10932.165 +1043,2025-06-10T03:09:53.486793-07:00,1005.4888916015625,10.934614,10934.614 +1044,2025-06-10T03:10:04.421056-07:00,1005.5037231445312,10.934263,10934.263 +1045,2025-06-10T03:10:15.353019-07:00,1005.5236206054688,10.931963,10931.963 +1046,2025-06-10T03:10:26.290234-07:00,1005.5153198242188,10.937215,10937.215 +1047,2025-06-10T03:10:37.212766-07:00,1005.5203247070312,10.922532,10922.532 +1048,2025-06-10T03:10:48.137935-07:00,1005.5384521484375,10.925169,10925.169 +1049,2025-06-10T03:10:59.069777-07:00,1005.5252075195312,10.931842,10931.842 +1050,2025-06-10T03:11:10.010174-07:00,1005.5087280273438,10.940397,10940.397 +1051,2025-06-10T03:11:20.943776-07:00,1005.5120239257812,10.933602,10933.602 +1052,2025-06-10T03:11:31.878789-07:00,1005.4625854492188,10.935013,10935.013 +1053,2025-06-10T03:11:42.813816-07:00,1005.4612426757812,10.935027,10935.027 +1054,2025-06-10T03:11:53.741077-07:00,1005.5169677734375,10.927261,10927.261 +1055,2025-06-10T03:12:04.676964-07:00,1005.4888916015625,10.935887,10935.887 +1056,2025-06-10T03:12:15.605787-07:00,1005.487548828125,10.928823,10928.823 +1057,2025-06-10T03:12:26.532769-07:00,1005.4793090820312,10.926982,10926.982 +1058,2025-06-10T03:12:37.458249-07:00,1005.487548828125,10.92548,10925.48 +1059,2025-06-10T03:12:48.382772-07:00,1005.50732421875,10.924523,10924.523 +1060,2025-06-10T03:12:59.308820-07:00,1005.4971923828125,10.926048,10926.048 +1061,2025-06-10T03:13:10.241164-07:00,1005.5153198242188,10.932344,10932.344 +1062,2025-06-10T03:13:21.153787-07:00,1005.5169677734375,10.912623,10912.623 +1063,2025-06-10T03:13:32.083464-07:00,1005.5449829101562,10.929677,10929.677 +1064,2025-06-10T03:13:43.006069-07:00,1005.5087280273438,10.922605,10922.605 +1065,2025-06-10T03:13:53.944898-07:00,1005.4989013671875,10.938829,10938.829 +1066,2025-06-10T03:14:04.861863-07:00,1005.4942016601562,10.916965,10916.965 +1067,2025-06-10T03:14:15.786826-07:00,1005.4774169921875,10.924963,10924.963 +1068,2025-06-10T03:14:26.729290-07:00,1005.5120239257812,10.942464,10942.464 +1069,2025-06-10T03:14:37.651769-07:00,1005.4840698242188,10.922479,10922.479 +1070,2025-06-10T03:14:48.577329-07:00,1005.4859619140625,10.92556,10925.56 +1071,2025-06-10T03:14:59.509838-07:00,1005.546630859375,10.932509,10932.509 +1072,2025-06-10T03:15:10.437476-07:00,1005.5479736328125,10.927638,10927.638 +1073,2025-06-10T03:15:21.364791-07:00,1005.533447265625,10.927315,10927.315 +1074,2025-06-10T03:15:32.301830-07:00,1005.5282592773438,10.937039,10937.039 +1075,2025-06-10T03:15:43.231172-07:00,1005.5150756835938,10.929342,10929.342 +1076,2025-06-10T03:15:54.157847-07:00,1005.5150756835938,10.926675,10926.675 +1077,2025-06-10T03:16:05.083842-07:00,1005.5167236328125,10.925995,10925.995 +1078,2025-06-10T03:16:16.017012-07:00,1005.5562744140625,10.93317,10933.17 +1079,2025-06-10T03:16:26.940265-07:00,1005.4953002929688,10.923253,10923.253 +1080,2025-06-10T03:16:37.873227-07:00,1005.5232543945312,10.932962,10932.962 +1081,2025-06-10T03:16:48.797600-07:00,1005.5299072265625,10.924373,10924.373 +1082,2025-06-10T03:16:59.736287-07:00,1005.5315551757812,10.938687,10938.687 +1083,2025-06-10T03:17:10.676081-07:00,1005.5479736328125,10.939794,10939.794 +1084,2025-06-10T03:17:21.600788-07:00,1005.5084228515625,10.924707,10924.707 +1085,2025-06-10T03:17:32.529344-07:00,1005.5216674804688,10.928556,10928.556 +1086,2025-06-10T03:17:43.461791-07:00,1005.5299072265625,10.932447,10932.447 +1087,2025-06-10T03:17:54.393301-07:00,1005.5167236328125,10.93151,10931.51 +1088,2025-06-10T03:18:05.318789-07:00,1005.507080078125,10.925488,10925.488 +1089,2025-06-10T03:18:16.253104-07:00,1005.5203247070312,10.934315,10934.315 +1090,2025-06-10T03:18:27.188006-07:00,1005.5282592773438,10.934902,10934.902 +1091,2025-06-10T03:18:38.111028-07:00,1005.5150756835938,10.923022,10923.022 +1092,2025-06-10T03:18:49.043937-07:00,1005.5216674804688,10.932909,10932.909 +1093,2025-06-10T03:18:59.970295-07:00,1005.5348510742188,10.926358,10926.358 +1094,2025-06-10T03:19:10.895142-07:00,1005.5282592773438,10.924847,10924.847 +1095,2025-06-10T03:19:21.824787-07:00,1005.5645141601562,10.929645,10929.645 +1096,2025-06-10T03:19:32.760053-07:00,1005.5413818359375,10.935266,10935.266 +1097,2025-06-10T03:19:43.692984-07:00,1005.4989013671875,10.932931,10932.931 +1098,2025-06-10T03:19:54.622943-07:00,1005.4922485351562,10.929959,10929.959 +1099,2025-06-10T03:20:05.549795-07:00,1005.5103149414062,10.926852,10926.852 +1100,2025-06-10T03:20:16.475148-07:00,1005.5054931640625,10.925353,10925.353 +1101,2025-06-10T03:20:27.409791-07:00,1005.4906005859375,10.934643,10934.643 +1102,2025-06-10T03:20:38.342200-07:00,1005.5054931640625,10.932409,10932.409 +1103,2025-06-10T03:20:49.282826-07:00,1005.5301513671875,10.940626,10940.626 +1104,2025-06-10T03:21:00.210776-07:00,1005.5301513671875,10.92795,10927.95 +1105,2025-06-10T03:21:11.139771-07:00,1005.5037231445312,10.928995,10928.995 +1106,2025-06-10T03:21:22.080821-07:00,1005.4823608398438,10.94105,10941.05 +1107,2025-06-10T03:21:33.013989-07:00,1005.4989013671875,10.933168,10933.168 +1108,2025-06-10T03:21:43.946015-07:00,1005.5103149414062,10.932026,10932.026 +1109,2025-06-10T03:21:54.873117-07:00,1005.4924926757812,10.927102,10927.102 +1110,2025-06-10T03:22:05.804790-07:00,1005.4888916015625,10.931673,10931.673 +1111,2025-06-10T03:22:16.738412-07:00,1005.5021362304688,10.933622,10933.622 +1112,2025-06-10T03:22:27.660939-07:00,1005.5087280273438,10.922527,10922.527 +1113,2025-06-10T03:22:38.596261-07:00,1005.4823608398438,10.935322,10935.322 +1114,2025-06-10T03:22:49.526100-07:00,1005.5037231445312,10.929839,10929.839 +1115,2025-06-10T03:23:00.456416-07:00,1005.5007934570312,10.930316,10930.316 +1116,2025-06-10T03:23:11.389787-07:00,1005.5236206054688,10.933371,10933.371 +1117,2025-06-10T03:23:22.333312-07:00,1005.4776611328125,10.943525,10943.525 +1118,2025-06-10T03:23:33.262027-07:00,1005.5087280273438,10.928715,10928.715 +1119,2025-06-10T03:23:44.190322-07:00,1005.4727172851562,10.928295,10928.295 +1120,2025-06-10T03:23:55.120941-07:00,1005.5007934570312,10.930619,10930.619 +1121,2025-06-10T03:24:06.053241-07:00,1005.48095703125,10.9323,10932.3 +1122,2025-06-10T03:24:16.982929-07:00,1005.5040893554688,10.929688,10929.688 +1123,2025-06-10T03:24:27.916734-07:00,1005.4776611328125,10.933805,10933.805 +1124,2025-06-10T03:24:38.844787-07:00,1005.50732421875,10.928053,10928.053 +1125,2025-06-10T03:24:49.780540-07:00,1005.4578857421875,10.935753,10935.753 +1126,2025-06-10T03:25:00.705791-07:00,1005.4727172851562,10.925251,10925.251 +1127,2025-06-10T03:25:11.642446-07:00,1005.463134765625,10.936655,10936.655 +1128,2025-06-10T03:25:22.585034-07:00,1005.4841918945312,10.942588,10942.588 +1129,2025-06-10T03:25:33.516884-07:00,1005.45654296875,10.93185,10931.85 +1130,2025-06-10T03:25:44.449787-07:00,1005.4793090820312,10.932903,10932.903 +1131,2025-06-10T03:25:55.388791-07:00,1005.4644775390625,10.939004,10939.004 +1132,2025-06-10T03:26:06.324727-07:00,1005.46142578125,10.935936,10935.936 +1133,2025-06-10T03:26:17.246431-07:00,1005.4710693359375,10.921704,10921.704 +1134,2025-06-10T03:26:28.181524-07:00,1005.4859619140625,10.935093,10935.093 +1135,2025-06-10T03:26:39.116462-07:00,1005.4727172851562,10.934938,10934.938 +1136,2025-06-10T03:26:50.050421-07:00,1005.474365234375,10.933959,10933.959 +1137,2025-06-10T03:27:00.984036-07:00,1005.48095703125,10.933615,10933.615 +1138,2025-06-10T03:27:11.919524-07:00,1005.4612426757812,10.935488,10935.488 +1139,2025-06-10T03:27:22.847977-07:00,1005.48095703125,10.928453,10928.453 +1140,2025-06-10T03:27:33.788140-07:00,1005.4710693359375,10.940163,10940.163 +1141,2025-06-10T03:27:44.720781-07:00,1005.4381103515625,10.932641,10932.641 +1142,2025-06-10T03:27:55.649831-07:00,1005.4793090820312,10.92905,10929.05 +1143,2025-06-10T03:28:06.574788-07:00,1005.4578857421875,10.924957,10924.957 +1144,2025-06-10T03:28:17.507301-07:00,1005.4710693359375,10.932513,10932.513 +1145,2025-06-10T03:28:28.429784-07:00,1005.4727172851562,10.922483,10922.483 +1146,2025-06-10T03:28:39.363264-07:00,1005.4841918945312,10.93348,10933.48 +1147,2025-06-10T03:28:50.292994-07:00,1005.4762573242188,10.92973,10929.73 +1148,2025-06-10T03:29:01.220175-07:00,1005.4595336914062,10.927181,10927.181 +1149,2025-06-10T03:29:12.147791-07:00,1005.4678344726562,10.927616,10927.616 +1150,2025-06-10T03:29:23.149648-07:00,1005.466064453125,11.001857,11001.857 +1151,2025-06-10T03:29:34.078224-07:00,1005.4417114257812,10.928576,10928.576 +1152,2025-06-10T03:29:45.001648-07:00,1005.4249267578125,10.923424,10923.424 +1153,2025-06-10T03:29:55.942370-07:00,1005.4182739257812,10.940722,10940.722 +1154,2025-06-10T03:30:06.870966-07:00,1005.4367065429688,10.928596,10928.596 +1155,2025-06-10T03:30:17.803036-07:00,1005.421875,10.93207,10932.07 +1156,2025-06-10T03:30:28.725639-07:00,1005.41357421875,10.922603,10922.603 +1157,2025-06-10T03:30:39.666565-07:00,1005.4170532226562,10.940926,10940.926 +1158,2025-06-10T03:30:50.593705-07:00,1005.4512329101562,10.92714,10927.14 +1159,2025-06-10T03:31:01.518639-07:00,1005.4400024414062,10.924934,10924.934 +1160,2025-06-10T03:31:12.450658-07:00,1005.4070434570312,10.932019,10932.019 +1161,2025-06-10T03:31:23.385930-07:00,1005.421875,10.935272,10935.272 +1162,2025-06-10T03:31:34.306648-07:00,1005.4057006835938,10.920718,10920.718 +1163,2025-06-10T03:31:45.236685-07:00,1005.4004516601562,10.930037,10930.037 +1164,2025-06-10T03:31:56.162642-07:00,1005.428466796875,10.925957,10925.957 +1165,2025-06-10T03:32:07.089699-07:00,1005.4334106445312,10.927057,10927.057 +1166,2025-06-10T03:32:18.006468-07:00,1005.4254760742188,10.916769,10916.769 +1167,2025-06-10T03:32:28.929967-07:00,1005.43505859375,10.923499,10923.499 +1168,2025-06-10T03:32:39.852650-07:00,1005.4254760742188,10.922683,10922.683 +1169,2025-06-10T03:32:50.777880-07:00,1005.4400024414062,10.92523,10925.23 +1170,2025-06-10T03:33:01.709656-07:00,1005.4320068359375,10.931776,10931.776 +1171,2025-06-10T03:33:12.631967-07:00,1005.443603515625,10.922311,10922.311 +1172,2025-06-10T03:33:23.558149-07:00,1005.4650268554688,10.926182,10926.182 +1173,2025-06-10T03:33:34.495812-07:00,1005.443603515625,10.937663,10937.663 +1174,2025-06-10T03:33:45.425717-07:00,1005.4483032226562,10.929905,10929.905 +1175,2025-06-10T03:33:56.361635-07:00,1005.4400024414062,10.935918,10935.918 +1176,2025-06-10T03:34:07.294640-07:00,1005.453125,10.933005,10933.005 +1177,2025-06-10T03:34:18.219640-07:00,1005.451904296875,10.925,10925.0 +1178,2025-06-10T03:34:29.154910-07:00,1005.4597778320312,10.93527,10935.27 +1179,2025-06-10T03:34:40.077654-07:00,1005.4664306640625,10.922744,10922.744 +1180,2025-06-10T03:34:51.006414-07:00,1005.427001953125,10.92876,10928.76 +1181,2025-06-10T03:35:01.933704-07:00,1005.4452514648438,10.92729,10927.29 +1182,2025-06-10T03:35:12.869242-07:00,1005.4501342773438,10.935538,10935.538 +1183,2025-06-10T03:35:23.792660-07:00,1005.4729614257812,10.923418,10923.418 +1184,2025-06-10T03:35:34.721880-07:00,1005.4584350585938,10.92922,10929.22 +1185,2025-06-10T03:35:45.650092-07:00,1005.446533203125,10.928212,10928.212 +1186,2025-06-10T03:35:56.577627-07:00,1005.4650268554688,10.927535,10927.535 +1187,2025-06-10T03:36:07.512698-07:00,1005.4650268554688,10.935071,10935.071 +1188,2025-06-10T03:36:18.430950-07:00,1005.443603515625,10.918252,10918.252 +1189,2025-06-10T03:36:29.362987-07:00,1005.453125,10.932037,10932.037 +1190,2025-06-10T03:36:40.287144-07:00,1005.453125,10.924157,10924.157 +1191,2025-06-10T03:36:51.222376-07:00,1005.41552734375,10.935232,10935.232 +1192,2025-06-10T03:37:02.146901-07:00,1005.4584350585938,10.924525,10924.525 +1193,2025-06-10T03:37:13.070658-07:00,1005.435302734375,10.923757,10923.757 +1194,2025-06-10T03:37:24.001318-07:00,1005.4385986328125,10.93066,10930.66 +1195,2025-06-10T03:37:34.929704-07:00,1005.4567260742188,10.928386,10928.386 +1196,2025-06-10T03:37:45.858213-07:00,1005.3993530273438,10.928509,10928.509 +1197,2025-06-10T03:37:56.786373-07:00,1005.4171752929688,10.92816,10928.16 +1198,2025-06-10T03:38:07.710866-07:00,1005.43359375,10.924493,10924.493 +1199,2025-06-10T03:38:18.647810-07:00,1005.430419921875,10.936944,10936.944 +1200,2025-06-10T03:38:29.582942-07:00,1005.43701171875,10.935132,10935.132 +1201,2025-06-10T03:38:40.516626-07:00,1005.40234375,10.933684,10933.684 +1202,2025-06-10T03:38:51.446749-07:00,1005.430419921875,10.930123,10930.123 +1203,2025-06-10T03:39:02.385889-07:00,1005.404052734375,10.93914,10939.14 +1204,2025-06-10T03:39:13.321534-07:00,1005.3729858398438,10.935645,10935.645 +1205,2025-06-10T03:39:24.245126-07:00,1005.4070434570312,10.923592,10923.592 +1206,2025-06-10T03:39:35.177062-07:00,1005.3925170898438,10.931936,10931.936 +1207,2025-06-10T03:39:46.107039-07:00,1005.3990478515625,10.929977,10929.977 +1208,2025-06-10T03:39:57.041996-07:00,1005.382568359375,10.934957,10934.957 +1209,2025-06-10T03:40:07.979705-07:00,1005.4057006835938,10.937709,10937.709 +1210,2025-06-10T03:40:18.898861-07:00,1005.3859252929688,10.919156,10919.156 +1211,2025-06-10T03:40:29.834898-07:00,1005.4004516601562,10.936037,10936.037 +1212,2025-06-10T03:40:40.759934-07:00,1005.3727416992188,10.925036,10925.036 +1213,2025-06-10T03:40:51.684651-07:00,1005.36279296875,10.924717,10924.717 +1214,2025-06-10T03:41:02.622984-07:00,1005.37109375,10.938333,10938.333 +1215,2025-06-10T03:41:13.547814-07:00,1005.390869140625,10.92483,10924.83 +1216,2025-06-10T03:41:24.475680-07:00,1005.3990478515625,10.927866,10927.866 +1217,2025-06-10T03:41:35.395147-07:00,1005.3809204101562,10.919467,10919.467 +1218,2025-06-10T03:41:46.331655-07:00,1005.3795166015625,10.936508,10936.508 +1219,2025-06-10T03:41:57.253920-07:00,1005.3663940429688,10.922265,10922.265 +1220,2025-06-10T03:42:08.184656-07:00,1005.3562622070312,10.930736,10930.736 +1221,2025-06-10T03:42:19.112810-07:00,1005.3465576171875,10.928154,10928.154 +1222,2025-06-10T03:42:30.029696-07:00,1005.3465576171875,10.916886,10916.886 +1223,2025-06-10T03:42:40.958728-07:00,1005.3663940429688,10.929032,10929.032 +1224,2025-06-10T03:42:51.883892-07:00,1005.349853515625,10.925164,10925.164 +1225,2025-06-10T03:43:02.799103-07:00,1005.35986328125,10.915211,10915.211 +1226,2025-06-10T03:43:13.727810-07:00,1005.31201171875,10.928707,10928.707 +1227,2025-06-10T03:43:24.651189-07:00,1005.3465576171875,10.923379,10923.379 +1228,2025-06-10T03:43:35.573896-07:00,1005.29052734375,10.922707,10922.707 +1229,2025-06-10T03:43:46.495643-07:00,1005.330078125,10.921747,10921.747 +1230,2025-06-10T03:43:57.430073-07:00,1005.3317260742188,10.93443,10934.43 +1231,2025-06-10T03:44:08.351986-07:00,1005.318603515625,10.921913,10921.913 +1232,2025-06-10T03:44:19.286918-07:00,1005.298828125,10.934932,10934.932 +1233,2025-06-10T03:44:30.214582-07:00,1005.3251342773438,10.927664,10927.664 +1234,2025-06-10T03:44:41.138649-07:00,1005.2839965820312,10.924067,10924.067 +1235,2025-06-10T03:44:52.073816-07:00,1005.3037719726562,10.935167,10935.167 +1236,2025-06-10T03:45:03.008250-07:00,1005.307373046875,10.934434,10934.434 +1237,2025-06-10T03:45:13.933648-07:00,1005.310302734375,10.925398,10925.398 +1238,2025-06-10T03:45:24.860937-07:00,1005.3400268554688,10.927289,10927.289 +1239,2025-06-10T03:45:35.790806-07:00,1005.326904296875,10.929869,10929.869 +1240,2025-06-10T03:45:46.722656-07:00,1005.3251342773438,10.93185,10931.85 +1241,2025-06-10T03:45:57.650009-07:00,1005.3367309570312,10.927353,10927.353 +1242,2025-06-10T03:46:08.581657-07:00,1005.326904296875,10.931648,10931.648 +1243,2025-06-10T03:46:19.508029-07:00,1005.307373046875,10.926372,10926.372 +1244,2025-06-10T03:46:30.431864-07:00,1005.3203125,10.923835,10923.835 +1245,2025-06-10T03:46:41.366169-07:00,1005.3037719726562,10.934305,10934.305 +1246,2025-06-10T03:46:52.296633-07:00,1005.2743530273438,10.930464,10930.464 +1247,2025-06-10T03:47:03.229534-07:00,1005.3037719726562,10.932901,10932.901 +1248,2025-06-10T03:47:14.155839-07:00,1005.298828125,10.926305,10926.305 +1249,2025-06-10T03:47:25.076659-07:00,1005.2957763671875,10.92082,10920.82 +1250,2025-06-10T03:47:36.001974-07:00,1005.3251342773438,10.925315,10925.315 +1251,2025-06-10T03:47:46.928944-07:00,1005.267822265625,10.92697,10926.97 +1252,2025-06-10T03:47:57.864989-07:00,1005.2760009765625,10.936045,10936.045 +1253,2025-06-10T03:48:08.786812-07:00,1005.2892456054688,10.921823,10921.823 +1254,2025-06-10T03:48:19.715796-07:00,1005.2957763671875,10.928984,10928.984 +1255,2025-06-10T03:48:30.639051-07:00,1005.2743530273438,10.923255,10923.255 +1256,2025-06-10T03:48:41.561903-07:00,1005.2743530273438,10.922852,10922.852 +1257,2025-06-10T03:48:52.490364-07:00,1005.2809448242188,10.928461,10928.461 +1258,2025-06-10T03:49:03.421661-07:00,1005.3155517578125,10.931297,10931.297 +1259,2025-06-10T03:49:14.346876-07:00,1005.2809448242188,10.925215,10925.215 +1260,2025-06-10T03:49:25.285642-07:00,1005.3089599609375,10.938766,10938.766 +1261,2025-06-10T03:49:36.210178-07:00,1005.2957763671875,10.924536,10924.536 +1262,2025-06-10T03:49:47.151882-07:00,1005.3037719726562,10.941704,10941.704 +1263,2025-06-10T03:49:58.083887-07:00,1005.2809448242188,10.932005,10932.005 +1264,2025-06-10T03:50:09.008376-07:00,1005.2611694335938,10.924489,10924.489 +1265,2025-06-10T03:50:19.943344-07:00,1005.3136596679688,10.934968,10934.968 +1266,2025-06-10T03:50:30.881900-07:00,1005.2826538085938,10.938556,10938.556 +1267,2025-06-10T03:50:41.815996-07:00,1005.29052734375,10.934096,10934.096 +1268,2025-06-10T03:50:52.749788-07:00,1005.2743530273438,10.933792,10933.792 +1269,2025-06-10T03:51:03.679645-07:00,1005.2874755859375,10.929857,10929.857 +1270,2025-06-10T03:51:14.609698-07:00,1005.279296875,10.930053,10930.053 +1271,2025-06-10T03:51:25.546720-07:00,1005.2826538085938,10.937022,10937.022 +1272,2025-06-10T03:51:36.481648-07:00,1005.31689453125,10.934928,10934.928 +1273,2025-06-10T03:51:47.412920-07:00,1005.2809448242188,10.931272,10931.272 +1274,2025-06-10T03:51:58.350999-07:00,1005.2611694335938,10.938079,10938.079 +1275,2025-06-10T03:52:09.279654-07:00,1005.2760009765625,10.928655,10928.655 +1276,2025-06-10T03:52:20.210653-07:00,1005.2726440429688,10.930999,10930.999 +1277,2025-06-10T03:52:31.150654-07:00,1005.2726440429688,10.940001,10940.001 +1278,2025-06-10T03:52:42.088227-07:00,1005.2921752929688,10.937573,10937.573 +1279,2025-06-10T03:52:53.020634-07:00,1005.2839965820312,10.932407,10932.407 +1280,2025-06-10T03:53:03.955021-07:00,1005.28564453125,10.934387,10934.387 +1281,2025-06-10T03:53:14.887658-07:00,1005.3084106445312,10.932637,10932.637 +1282,2025-06-10T03:53:25.815994-07:00,1005.2820434570312,10.928336,10928.336 +1283,2025-06-10T03:53:36.749916-07:00,1005.2920532226562,10.933922,10933.922 +1284,2025-06-10T03:53:47.686646-07:00,1005.306884765625,10.93673,10936.73 +1285,2025-06-10T03:53:58.620337-07:00,1005.265625,10.933691,10933.691 +1286,2025-06-10T03:54:09.552658-07:00,1005.259033203125,10.932321,10932.321 +1287,2025-06-10T03:54:20.489940-07:00,1005.27392578125,10.937282,10937.282 +1288,2025-06-10T03:54:31.419789-07:00,1005.2835083007812,10.929849,10929.849 +1289,2025-06-10T03:54:42.357066-07:00,1005.2525024414062,10.937277,10937.277 +1290,2025-06-10T03:54:53.287154-07:00,1005.2686767578125,10.930088,10930.088 +1291,2025-06-10T03:55:04.227274-07:00,1005.2357177734375,10.94012,10940.12 +1292,2025-06-10T03:55:15.157653-07:00,1005.2357177734375,10.930379,10930.379 +1293,2025-06-10T03:55:26.083713-07:00,1005.2572021484375,10.92606,10926.06 +1294,2025-06-10T03:55:37.015656-07:00,1005.2505493164062,10.931943,10931.943 +1295,2025-06-10T03:55:47.951912-07:00,1005.2505493164062,10.936256,10936.256 +1296,2025-06-10T03:55:58.886675-07:00,1005.22119140625,10.934763,10934.763 +1297,2025-06-10T03:56:09.821154-07:00,1005.2489013671875,10.934479,10934.479 +1298,2025-06-10T03:56:20.755251-07:00,1005.2554931640625,10.934097,10934.097 +1299,2025-06-10T03:56:31.687660-07:00,1005.2489013671875,10.932409,10932.409 +1300,2025-06-10T03:56:42.621931-07:00,1005.2423706054688,10.934271,10934.271 +1301,2025-06-10T03:56:53.558653-07:00,1005.2474975585938,10.936722,10936.722 +1302,2025-06-10T03:57:04.498945-07:00,1005.22119140625,10.940292,10940.292 +1303,2025-06-10T03:57:15.432978-07:00,1005.2572021484375,10.934033,10934.033 +1304,2025-06-10T03:57:26.359967-07:00,1005.2357177734375,10.926989,10926.989 +1305,2025-06-10T03:57:37.292917-07:00,1005.2112426757812,10.93295,10932.95 +1306,2025-06-10T03:57:48.229655-07:00,1005.25732421875,10.936738,10936.738 +1307,2025-06-10T03:57:59.162941-07:00,1005.234375,10.933286,10933.286 +1308,2025-06-10T03:58:10.092805-07:00,1005.22607421875,10.929864,10929.864 +1309,2025-06-10T03:58:21.019982-07:00,1005.2525024414062,10.927177,10927.177 +1310,2025-06-10T03:58:31.950134-07:00,1005.2525024414062,10.930152,10930.152 +1311,2025-06-10T03:58:42.882798-07:00,1005.259033203125,10.932664,10932.664 +1312,2025-06-10T03:58:53.818815-07:00,1005.2112426757812,10.936017,10936.017 +1313,2025-06-10T03:59:04.748933-07:00,1005.259033203125,10.930118,10930.118 +1314,2025-06-10T03:59:15.686400-07:00,1005.2391967773438,10.937467,10937.467 +1315,2025-06-10T03:59:26.626097-07:00,1005.2095336914062,10.939697,10939.697 +1316,2025-06-10T03:59:37.554633-07:00,1005.2293701171875,10.928536,10928.536 +1317,2025-06-10T03:59:48.478839-07:00,1005.2442016601562,10.924206,10924.206 +1318,2025-06-10T03:59:59.408660-07:00,1005.2359619140625,10.929821,10929.821 +1319,2025-06-10T04:00:10.340348-07:00,1005.21484375,10.931688,10931.688 +1320,2025-06-10T04:00:21.270807-07:00,1005.2556762695312,10.930459,10930.459 +1321,2025-06-10T04:00:32.197410-07:00,1005.2279663085938,10.926603,10926.603 +1322,2025-06-10T04:00:43.128657-07:00,1005.2279663085938,10.931247,10931.247 +1323,2025-06-10T04:00:54.053657-07:00,1005.1983032226562,10.925,10925.0 +1324,2025-06-10T04:01:04.985738-07:00,1005.204833984375,10.932081,10932.081 +1325,2025-06-10T04:01:15.912482-07:00,1005.2279663085938,10.926744,10926.744 +1326,2025-06-10T04:01:26.846062-07:00,1005.2101440429688,10.93358,10933.58 +1327,2025-06-10T04:01:37.774874-07:00,1005.1903076171875,10.928812,10928.812 +1328,2025-06-10T04:01:48.702941-07:00,1005.204833984375,10.928067,10928.067 +1329,2025-06-10T04:01:59.635906-07:00,1005.2196655273438,10.932965,10932.965 +1330,2025-06-10T04:02:10.562918-07:00,1005.2084350585938,10.927012,10927.012 +1331,2025-06-10T04:02:21.495001-07:00,1005.2298583984375,10.932083,10932.083 +1332,2025-06-10T04:02:32.417688-07:00,1005.2411499023438,10.922687,10922.687 +1333,2025-06-10T04:02:43.348658-07:00,1005.2298583984375,10.93097,10930.97 +1334,2025-06-10T04:02:54.280628-07:00,1005.2114868164062,10.93197,10931.97 +1335,2025-06-10T04:03:05.214906-07:00,1005.2181396484375,10.934278,10934.278 +1336,2025-06-10T04:03:16.143678-07:00,1005.2167358398438,10.928772,10928.772 +1337,2025-06-10T04:03:27.074890-07:00,1005.252685546875,10.931212,10931.212 +1338,2025-06-10T04:03:38.009720-07:00,1005.23779296875,10.93483,10934.83 +1339,2025-06-10T04:03:48.930100-07:00,1005.24609375,10.92038,10920.38 +1340,2025-06-10T04:03:59.866655-07:00,1005.228271484375,10.936555,10936.555 +1341,2025-06-10T04:04:10.790385-07:00,1005.2298583984375,10.92373,10923.73 +1342,2025-06-10T04:04:21.725655-07:00,1005.2298583984375,10.93527,10935.27 +1343,2025-06-10T04:04:32.666654-07:00,1005.2510375976562,10.940999,10940.999 +1344,2025-06-10T04:04:43.590007-07:00,1005.219970703125,10.923353,10923.353 +1345,2025-06-10T04:04:54.518083-07:00,1005.2496948242188,10.928076,10928.076 +1346,2025-06-10T04:05:05.449643-07:00,1005.2496948242188,10.93156,10931.56 +1347,2025-06-10T04:05:16.370289-07:00,1005.23486328125,10.920646,10920.646 +1348,2025-06-10T04:05:27.298936-07:00,1005.2431030273438,10.928647,10928.647 +1349,2025-06-10T04:05:38.227011-07:00,1005.2628173828125,10.928075,10928.075 +1350,2025-06-10T04:05:49.160779-07:00,1005.2576293945312,10.933768,10933.768 +1351,2025-06-10T04:06:00.076992-07:00,1005.2694702148438,10.916213,10916.213 +1352,2025-06-10T04:06:11.006946-07:00,1005.228271484375,10.929954,10929.954 +1353,2025-06-10T04:06:21.934911-07:00,1005.2642211914062,10.927965,10927.965 +1354,2025-06-10T04:06:32.870976-07:00,1005.244384765625,10.936065,10936.065 +1355,2025-06-10T04:06:43.794223-07:00,1005.219970703125,10.923247,10923.247 +1356,2025-06-10T04:06:54.731852-07:00,1005.2365112304688,10.937629,10937.629 +1357,2025-06-10T04:07:05.654908-07:00,1005.2545166015625,10.923056,10923.056 +1358,2025-06-10T04:07:16.585286-07:00,1005.233154296875,10.930378,10930.378 +1359,2025-06-10T04:07:27.512895-07:00,1005.228271484375,10.927609,10927.609 +1360,2025-06-10T04:07:38.452149-07:00,1005.2545166015625,10.939254,10939.254 +1361,2025-06-10T04:07:49.375742-07:00,1005.2150268554688,10.923593,10923.593 +1362,2025-06-10T04:08:00.310001-07:00,1005.2545166015625,10.934259,10934.259 +1363,2025-06-10T04:08:11.240135-07:00,1005.2413940429688,10.930134,10930.134 +1364,2025-06-10T04:08:22.166781-07:00,1005.2413940429688,10.926646,10926.646 +1365,2025-06-10T04:08:33.095700-07:00,1005.2496948242188,10.928919,10928.919 +1366,2025-06-10T04:08:44.029641-07:00,1005.2413940429688,10.933941,10933.941 +1367,2025-06-10T04:08:54.962720-07:00,1005.233154296875,10.933079,10933.079 +1368,2025-06-10T04:09:05.897860-07:00,1005.2413940429688,10.93514,10935.14 +1369,2025-06-10T04:09:16.836643-07:00,1005.2396850585938,10.938783,10938.783 +1370,2025-06-10T04:09:27.764245-07:00,1005.2529907226562,10.927602,10927.602 +1371,2025-06-10T04:09:38.703174-07:00,1005.23486328125,10.938929,10938.929 +1372,2025-06-10T04:09:49.635185-07:00,1005.2134399414062,10.932011,10932.011 +1373,2025-06-10T04:10:00.573922-07:00,1005.2265625,10.938737,10938.737 +1374,2025-06-10T04:10:11.504368-07:00,1005.2431030273438,10.930446,10930.446 +1375,2025-06-10T04:10:22.430642-07:00,1005.2431030273438,10.926274,10926.274 +1376,2025-06-10T04:10:33.361944-07:00,1005.228271484375,10.931302,10931.302 +1377,2025-06-10T04:10:44.299900-07:00,1005.2366943359375,10.937956,10937.956 +1378,2025-06-10T04:10:55.240651-07:00,1005.259521484375,10.940751,10940.751 +1379,2025-06-10T04:11:06.175942-07:00,1005.2529907226562,10.935291,10935.291 +1380,2025-06-10T04:11:17.106659-07:00,1005.2251586914062,10.930717,10930.717 +1381,2025-06-10T04:11:28.039932-07:00,1005.2318115234375,10.933273,10933.273 +1382,2025-06-10T04:11:38.969927-07:00,1005.2318115234375,10.929995,10929.995 +1383,2025-06-10T04:11:49.902200-07:00,1005.2318115234375,10.932273,10932.273 +1384,2025-06-10T04:12:00.845803-07:00,1005.259521484375,10.943603,10943.603 +1385,2025-06-10T04:12:11.775061-07:00,1005.2743530273438,10.929258,10929.258 +1386,2025-06-10T04:12:22.706626-07:00,1005.2581176757812,10.931565,10931.565 +1387,2025-06-10T04:12:33.637651-07:00,1005.2218627929688,10.931025,10931.025 +1388,2025-06-10T04:12:44.567739-07:00,1005.2384643554688,10.930088,10930.088 +1389,2025-06-10T04:12:55.506736-07:00,1005.2515869140625,10.938997,10938.997 +1390,2025-06-10T04:13:06.438647-07:00,1005.2779541015625,10.931911,10931.911 +1391,2025-06-10T04:13:17.368753-07:00,1005.2564697265625,10.930106,10930.106 +1392,2025-06-10T04:13:28.300655-07:00,1005.2910766601562,10.931902,10931.902 +1393,2025-06-10T04:13:39.241796-07:00,1005.2666625976562,10.941141,10941.141 +1394,2025-06-10T04:13:50.171672-07:00,1005.2698364257812,10.929876,10929.876 +1395,2025-06-10T04:14:01.106653-07:00,1005.2715454101562,10.934981,10934.981 +1396,2025-06-10T04:14:12.038936-07:00,1005.30615234375,10.932283,10932.283 +1397,2025-06-10T04:14:22.966071-07:00,1005.2962646484375,10.927135,10927.135 +1398,2025-06-10T04:14:33.897309-07:00,1005.2979736328125,10.931238,10931.238 +1399,2025-06-10T04:14:44.830656-07:00,1005.280029296875,10.933347,10933.347 +1400,2025-06-10T04:14:55.755389-07:00,1005.30615234375,10.924733,10924.733 +1401,2025-06-10T04:15:06.700658-07:00,1005.28466796875,10.945269,10945.269 +1402,2025-06-10T04:15:17.634007-07:00,1005.286376953125,10.933349,10933.349 +1403,2025-06-10T04:15:28.575991-07:00,1005.2764892578125,10.941984,10941.984 +1404,2025-06-10T04:15:39.512652-07:00,1005.3128051757812,10.936661,10936.661 +1405,2025-06-10T04:15:50.444222-07:00,1005.30615234375,10.93157,10931.57 +1406,2025-06-10T04:16:01.374738-07:00,1005.2979736328125,10.930516,10930.516 +1407,2025-06-10T04:16:12.311688-07:00,1005.2913208007812,10.93695,10936.95 +1408,2025-06-10T04:16:23.256042-07:00,1005.2798461914062,10.944354,10944.354 +1409,2025-06-10T04:16:34.191658-07:00,1005.3223266601562,10.935616,10935.616 +1410,2025-06-10T04:16:45.137650-07:00,1005.3355712890625,10.945992,10945.992 +1411,2025-06-10T04:16:56.076115-07:00,1005.3289794921875,10.938465,10938.465 +1412,2025-06-10T04:17:07.010954-07:00,1005.3223266601562,10.934839,10934.839 +1413,2025-06-10T04:17:17.946902-07:00,1005.3026733398438,10.935948,10935.948 +1414,2025-06-10T04:17:28.878660-07:00,1005.3665771484375,10.931758,10931.758 +1415,2025-06-10T04:17:39.813936-07:00,1005.3781127929688,10.935276,10935.276 +1416,2025-06-10T04:17:50.747660-07:00,1005.3355712890625,10.933724,10933.724 +1417,2025-06-10T04:18:01.671167-07:00,1005.3599853515625,10.923507,10923.507 +1418,2025-06-10T04:18:12.610898-07:00,1005.3355712890625,10.939731,10939.731 +1419,2025-06-10T04:18:23.539936-07:00,1005.3583374023438,10.929038,10929.038 +1420,2025-06-10T04:18:34.469618-07:00,1005.3270263671875,10.929682,10929.682 +1421,2025-06-10T04:18:45.403280-07:00,1005.3468627929688,10.933662,10933.662 +1422,2025-06-10T04:18:56.340648-07:00,1005.3121948242188,10.937368,10937.368 +1423,2025-06-10T04:19:07.277637-07:00,1005.363037109375,10.936989,10936.989 +1424,2025-06-10T04:19:18.209759-07:00,1005.3616943359375,10.932122,10932.122 +1425,2025-06-10T04:19:29.145658-07:00,1005.3583374023438,10.935899,10935.899 +1426,2025-06-10T04:19:40.086812-07:00,1005.3814086914062,10.941154,10941.154 +1427,2025-06-10T04:19:51.019656-07:00,1005.337158203125,10.932844,10932.844 +1428,2025-06-10T04:20:01.953939-07:00,1005.33203125,10.934283,10934.283 +1429,2025-06-10T04:20:12.883591-07:00,1005.3682861328125,10.929652,10929.652 +1430,2025-06-10T04:20:23.816911-07:00,1005.3748168945312,10.93332,10933.32 +1431,2025-06-10T04:20:34.748648-07:00,1005.34033203125,10.931737,10931.737 +1432,2025-06-10T04:20:45.682653-07:00,1005.3534545898438,10.934005,10934.005 +1433,2025-06-10T04:20:56.620765-07:00,1005.337158203125,10.938112,10938.112 +1434,2025-06-10T04:21:07.551643-07:00,1005.3451538085938,10.930878,10930.878 +1435,2025-06-10T04:21:18.485744-07:00,1005.3504638671875,10.934101,10934.101 +1436,2025-06-10T04:21:29.416918-07:00,1005.3583374023438,10.931174,10931.174 +1437,2025-06-10T04:21:40.350561-07:00,1005.3682861328125,10.933643,10933.643 +1438,2025-06-10T04:21:51.286901-07:00,1005.3175048828125,10.93634,10936.34 +1439,2025-06-10T04:22:02.218488-07:00,1005.376220703125,10.931587,10931.587 +1440,2025-06-10T04:22:13.145910-07:00,1005.3421630859375,10.927422,10927.422 +1441,2025-06-10T04:22:24.081927-07:00,1005.3798217773438,10.936017,10936.017 +1442,2025-06-10T04:22:35.014652-07:00,1005.3223266601562,10.932725,10932.725 +1443,2025-06-10T04:22:45.951010-07:00,1005.3583374023438,10.936358,10936.358 +1444,2025-06-10T04:22:56.883639-07:00,1005.3451538085938,10.932629,10932.629 +1445,2025-06-10T04:23:07.813651-07:00,1005.37158203125,10.930012,10930.012 +1446,2025-06-10T04:23:18.752882-07:00,1005.3599853515625,10.939231,10939.231 +1447,2025-06-10T04:23:29.696654-07:00,1005.389404296875,10.943772,10943.772 +1448,2025-06-10T04:23:40.629027-07:00,1005.3748168945312,10.932373,10932.373 +1449,2025-06-10T04:23:51.557860-07:00,1005.3778686523438,10.928833,10928.833 +1450,2025-06-10T04:24:02.499916-07:00,1005.3748168945312,10.942056,10942.056 +1451,2025-06-10T04:24:13.434850-07:00,1005.384521484375,10.934934,10934.934 +1452,2025-06-10T04:24:24.370740-07:00,1005.3861694335938,10.93589,10935.89 +1453,2025-06-10T04:24:35.302472-07:00,1005.363037109375,10.931732,10931.732 +1454,2025-06-10T04:24:46.236654-07:00,1005.3551635742188,10.934182,10934.182 +1455,2025-06-10T04:24:57.172903-07:00,1005.3616943359375,10.936249,10936.249 +1456,2025-06-10T04:25:08.102633-07:00,1005.349853515625,10.92973,10929.73 +1457,2025-06-10T04:25:19.035976-07:00,1005.3367309570312,10.933343,10933.343 +1458,2025-06-10T04:25:29.963814-07:00,1005.358154296875,10.927838,10927.838 +1459,2025-06-10T04:25:40.905206-07:00,1005.3778686523438,10.941392,10941.392 +1460,2025-06-10T04:25:51.831658-07:00,1005.3646850585938,10.926452,10926.452 +1461,2025-06-10T04:25:52.613048-07:00,1005.3563842773438,0.78139,781.39 +1462,2025-06-10T04:26:02.762944-07:00,1005.34326171875,10.149896,10149.896 +1463,2025-06-10T04:26:13.689654-07:00,1005.3778686523438,10.92671,10926.71 +1464,2025-06-10T04:26:24.630155-07:00,1005.376220703125,10.940501,10940.501 +1465,2025-06-10T04:26:35.553689-07:00,1005.39111328125,10.923534,10923.534 +1466,2025-06-10T04:26:46.481712-07:00,1005.349853515625,10.928023,10928.023 +1467,2025-06-10T04:26:57.411633-07:00,1005.3712768554688,10.929921,10929.921 +1468,2025-06-10T04:27:08.339843-07:00,1005.3646850585938,10.92821,10928.21 +1469,2025-06-10T04:27:19.272658-07:00,1005.376220703125,10.932815,10932.815 +1470,2025-06-10T04:27:30.193641-07:00,1005.3861694335938,10.920983,10920.983 +1471,2025-06-10T04:27:41.125874-07:00,1005.4124755859375,10.932233,10932.233 +1472,2025-06-10T04:27:52.053065-07:00,1005.3828125,10.927191,10927.191 +1473,2025-06-10T04:28:02.988029-07:00,1005.3616943359375,10.934964,10934.964 +1474,2025-06-10T04:28:13.930582-07:00,1005.3959350585938,10.942553,10942.553 +1475,2025-06-10T04:28:24.857656-07:00,1005.3947143554688,10.927074,10927.074 +1476,2025-06-10T04:28:35.783658-07:00,1005.34326171875,10.926002,10926.002 +1477,2025-06-10T04:28:46.713394-07:00,1005.3696899414062,10.929736,10929.736 +1478,2025-06-10T04:28:57.633696-07:00,1005.3880615234375,10.920302,10920.302 +1479,2025-06-10T04:29:08.558102-07:00,1005.3976440429688,10.924406,10924.406 +1480,2025-06-10T04:29:19.440347-07:00,1005.3729858398438,10.882245,10882.245 +1481,2025-06-10T04:29:30.363113-07:00,1005.389404296875,10.922766,10922.766 +1482,2025-06-10T04:29:41.293536-07:00,1005.408935546875,10.930423,10930.423 +1483,2025-06-10T04:29:52.226034-07:00,1005.4072875976562,10.932498,10932.498 +1484,2025-06-10T04:30:03.160160-07:00,1005.3976440429688,10.934126,10934.126 +1485,2025-06-10T04:30:14.094297-07:00,1005.410888671875,10.934137,10934.137 +1486,2025-06-10T04:30:25.013166-07:00,1005.39111328125,10.918869,10918.869 +1487,2025-06-10T04:30:35.945215-07:00,1005.3748168945312,10.932049,10932.049 +1488,2025-06-10T04:30:46.874981-07:00,1005.4124755859375,10.929766,10929.766 +1489,2025-06-10T04:30:57.810231-07:00,1005.4006958007812,10.93525,10935.25 +1490,2025-06-10T04:31:08.746308-07:00,1005.3682861328125,10.936077,10936.077 +1491,2025-06-10T04:31:19.676238-07:00,1005.3534545898438,10.92993,10929.93 +1492,2025-06-10T04:31:30.618298-07:00,1005.3551635742188,10.94206,10942.06 +1493,2025-06-10T04:31:41.551127-07:00,1005.3729858398438,10.932829,10932.829 +1494,2025-06-10T04:31:52.481124-07:00,1005.349853515625,10.929997,10929.997 +1495,2025-06-10T04:32:03.407987-07:00,1005.363037109375,10.926863,10926.863 +1496,2025-06-10T04:32:14.348351-07:00,1005.34326171875,10.940364,10940.364 +1497,2025-06-10T04:32:25.280981-07:00,1005.3712768554688,10.93263,10932.63 +1498,2025-06-10T04:32:36.211110-07:00,1005.3367309570312,10.930129,10930.129 +1499,2025-06-10T04:32:47.145425-07:00,1005.3563842773438,10.934315,10934.315 +1500,2025-06-10T04:32:58.073142-07:00,1005.3563842773438,10.927717,10927.717 +1501,2025-06-10T04:33:09.007075-07:00,1005.3809204101562,10.933933,10933.933 +1502,2025-06-10T04:33:19.940578-07:00,1005.3485107421875,10.933503,10933.503 +1503,2025-06-10T04:33:30.871186-07:00,1005.3155517578125,10.930608,10930.608 +1504,2025-06-10T04:33:41.804028-07:00,1005.3348388671875,10.932842,10932.842 +1505,2025-06-10T04:33:52.735112-07:00,1005.3287353515625,10.931084,10931.084 +1506,2025-06-10T04:34:03.662610-07:00,1005.31689453125,10.927498,10927.498 +1507,2025-06-10T04:34:14.592381-07:00,1005.3222045898438,10.929771,10929.771 +1508,2025-06-10T04:34:25.526087-07:00,1005.3479614257812,10.933706,10933.706 +1509,2025-06-10T04:34:36.458983-07:00,1005.323486328125,10.932896,10932.896 +1510,2025-06-10T04:34:47.393296-07:00,1005.3562622070312,10.934313,10934.313 +1511,2025-06-10T04:34:58.335157-07:00,1005.35791015625,10.941861,10941.861 +1512,2025-06-10T04:35:09.261985-07:00,1005.28564453125,10.926828,10926.828 +1513,2025-06-10T04:35:20.196493-07:00,1005.343017578125,10.934508,10934.508 +1514,2025-06-10T04:35:31.124977-07:00,1005.3150024414062,10.928484,10928.484 +1515,2025-06-10T04:35:42.059323-07:00,1005.3348388671875,10.934346,10934.346 +1516,2025-06-10T04:35:52.983996-07:00,1005.3084106445312,10.924673,10924.673 +1517,2025-06-10T04:36:03.916828-07:00,1005.35791015625,10.932832,10932.832 +1518,2025-06-10T04:36:14.849987-07:00,1005.33642578125,10.933159,10933.159 +1519,2025-06-10T04:36:25.790204-07:00,1005.338134765625,10.940217,10940.217 +1520,2025-06-10T04:36:36.718552-07:00,1005.3070068359375,10.928348,10928.348 +1521,2025-06-10T04:36:47.648950-07:00,1005.329833984375,10.930398,10930.398 +1522,2025-06-10T04:36:58.575231-07:00,1005.3265380859375,10.926281,10926.281 +1523,2025-06-10T04:37:09.505357-07:00,1005.3250122070312,10.930126,10930.126 +1524,2025-06-10T04:37:20.437240-07:00,1005.290283203125,10.931883,10931.883 +1525,2025-06-10T04:37:31.379743-07:00,1005.33642578125,10.942503,10942.503 +1526,2025-06-10T04:37:42.311981-07:00,1005.3167114257812,10.932238,10932.238 +1527,2025-06-10T04:37:53.247985-07:00,1005.3560180664062,10.936004,10936.004 +1528,2025-06-10T04:38:04.184013-07:00,1005.3477172851562,10.936028,10936.028 +1529,2025-06-10T04:38:15.117679-07:00,1005.30029296875,10.933666,10933.666 +1530,2025-06-10T04:38:26.056983-07:00,1005.3134155273438,10.939304,10939.304 +1531,2025-06-10T04:38:36.995715-07:00,1005.3641967773438,10.938732,10938.732 +1532,2025-06-10T04:38:47.929985-07:00,1005.3265380859375,10.93427,10934.27 +1533,2025-06-10T04:38:58.875283-07:00,1005.3477172851562,10.945298,10945.298 +1534,2025-06-10T04:39:09.809977-07:00,1005.33984375,10.934694,10934.694 +1535,2025-06-10T04:39:20.744364-07:00,1005.3265380859375,10.934387,10934.387 +1536,2025-06-10T04:39:31.678966-07:00,1005.33154296875,10.934602,10934.602 +1537,2025-06-10T04:39:42.612254-07:00,1005.33984375,10.933288,10933.288 +1538,2025-06-10T04:39:53.557294-07:00,1005.3331909179688,10.94504,10945.04 +1539,2025-06-10T04:40:04.493280-07:00,1005.3446655273438,10.935986,10935.986 +1540,2025-06-10T04:40:15.427338-07:00,1005.3529663085938,10.934058,10934.058 +1541,2025-06-10T04:40:26.361123-07:00,1005.343017578125,10.933785,10933.785 +1542,2025-06-10T04:40:37.300965-07:00,1005.33154296875,10.939842,10939.842 +1543,2025-06-10T04:40:48.240271-07:00,1005.3477172851562,10.939306,10939.306 +1544,2025-06-10T04:40:59.171975-07:00,1005.3543701171875,10.931704,10931.704 +1545,2025-06-10T04:41:10.118032-07:00,1005.37939453125,10.946057,10946.057 +1546,2025-06-10T04:41:21.057474-07:00,1005.3740844726562,10.939442,10939.442 +1547,2025-06-10T04:41:32.005069-07:00,1005.3512573242188,10.947595,10947.595 +1548,2025-06-10T04:41:42.937301-07:00,1005.38232421875,10.932232,10932.232 +1549,2025-06-10T04:41:53.880281-07:00,1005.3740844726562,10.94298,10942.98 +1550,2025-06-10T04:42:04.804970-07:00,1005.364501953125,10.924689,10924.689 +1551,2025-06-10T04:42:15.738964-07:00,1005.3661499023438,10.933994,10933.994 +1552,2025-06-10T04:42:26.678218-07:00,1005.3609619140625,10.939254,10939.254 +1553,2025-06-10T04:42:37.603271-07:00,1005.3692016601562,10.925053,10925.053 +1554,2025-06-10T04:42:48.541231-07:00,1005.35791015625,10.93796,10937.96 +1555,2025-06-10T04:42:59.475363-07:00,1005.3674926757812,10.934132,10934.132 +1556,2025-06-10T04:43:10.407977-07:00,1005.4037475585938,10.932614,10932.614 +1557,2025-06-10T04:43:21.345920-07:00,1005.4021606445312,10.937943,10937.943 +1558,2025-06-10T04:43:32.290249-07:00,1005.3925170898438,10.944329,10944.329 +1559,2025-06-10T04:43:43.230764-07:00,1005.4021606445312,10.940515,10940.515 +1560,2025-06-10T04:43:54.169992-07:00,1005.397216796875,10.939228,10939.228 +1561,2025-06-10T04:44:05.105538-07:00,1005.388916015625,10.935546,10935.546 +1562,2025-06-10T04:44:16.040234-07:00,1005.4004516601562,10.934696,10934.696 +1563,2025-06-10T04:44:26.978021-07:00,1005.3872680664062,10.937787,10937.787 +1564,2025-06-10T04:44:37.916087-07:00,1005.412353515625,10.938066,10938.066 +1565,2025-06-10T04:44:48.853184-07:00,1005.415283203125,10.937097,10937.097 +1566,2025-06-10T04:44:59.794886-07:00,1005.410400390625,10.941702,10941.702 +1567,2025-06-10T04:45:10.726239-07:00,1005.3939208984375,10.931353,10931.353 +1568,2025-06-10T04:45:21.663141-07:00,1005.4021606445312,10.936902,10936.902 +1569,2025-06-10T04:45:32.600502-07:00,1005.4070434570312,10.937361,10937.361 +1570,2025-06-10T04:45:43.541457-07:00,1005.390869140625,10.940955,10940.955 +1571,2025-06-10T04:45:54.481172-07:00,1005.412353515625,10.939715,10939.715 +1572,2025-06-10T04:46:05.414981-07:00,1005.3990478515625,10.933809,10933.809 +1573,2025-06-10T04:46:16.355962-07:00,1005.3990478515625,10.940981,10940.981 +1574,2025-06-10T04:46:27.291234-07:00,1005.4057006835938,10.935272,10935.272 +1575,2025-06-10T04:46:38.225409-07:00,1005.4188842773438,10.934175,10934.175 +1576,2025-06-10T04:46:49.163383-07:00,1005.3892211914062,10.937974,10937.974 +1577,2025-06-10T04:47:00.102311-07:00,1005.395751953125,10.938928,10938.928 +1578,2025-06-10T04:47:11.036987-07:00,1005.4268798828125,10.934676,10934.676 +1579,2025-06-10T04:47:21.972644-07:00,1005.3993530273438,10.935657,10935.657 +1580,2025-06-10T04:47:32.903255-07:00,1005.4237670898438,10.930611,10930.611 +1581,2025-06-10T04:47:43.829981-07:00,1005.4237670898438,10.926726,10926.726 +1582,2025-06-10T04:47:54.761234-07:00,1005.40234375,10.931253,10931.253 +1583,2025-06-10T04:48:05.704334-07:00,1005.40234375,10.9431,10943.1 +1584,2025-06-10T04:48:16.637981-07:00,1005.41064453125,10.933647,10933.647 +1585,2025-06-10T04:48:27.583365-07:00,1005.4237670898438,10.945384,10945.384 +1586,2025-06-10T04:48:38.523148-07:00,1005.4237670898438,10.939783,10939.783 +1587,2025-06-10T04:48:49.458258-07:00,1005.4237670898438,10.93511,10935.11 +1588,2025-06-10T04:49:00.396977-07:00,1005.3927612304688,10.938719,10938.719 +1589,2025-06-10T04:49:11.343499-07:00,1005.3993530273438,10.946522,10946.522 +1590,2025-06-10T04:49:22.277161-07:00,1005.4092407226562,10.933662,10933.662 +1591,2025-06-10T04:49:33.218198-07:00,1005.4257202148438,10.941037,10941.037 +1592,2025-06-10T04:49:44.156305-07:00,1005.3976440429688,10.938107,10938.107 +1593,2025-06-10T04:49:55.100036-07:00,1005.4059448242188,10.943731,10943.731 +1594,2025-06-10T04:50:06.036970-07:00,1005.4042358398438,10.936934,10936.934 +1595,2025-06-10T04:50:16.977933-07:00,1005.3959350585938,10.940963,10940.963 +1596,2025-06-10T04:50:27.910961-07:00,1005.42236328125,10.933028,10933.028 +1597,2025-06-10T04:50:38.857984-07:00,1005.435546875,10.947023,10947.023 +1598,2025-06-10T04:50:49.790981-07:00,1005.4174194335938,10.932997,10932.997 +1599,2025-06-10T04:51:00.728983-07:00,1005.3929443359375,10.938002,10938.002 +1600,2025-06-10T04:51:11.665235-07:00,1005.3880615234375,10.936252,10936.252 +1601,2025-06-10T04:51:22.593157-07:00,1005.3665771484375,10.927922,10927.922 +1602,2025-06-10T04:51:33.527173-07:00,1005.4193725585938,10.934016,10934.016 +1603,2025-06-10T04:51:44.460979-07:00,1005.4342041015625,10.933806,10933.806 +1604,2025-06-10T04:51:55.397054-07:00,1005.4127197265625,10.936075,10936.075 +1605,2025-06-10T04:52:06.320084-07:00,1005.4031372070312,10.92303,10923.03 +1606,2025-06-10T04:52:17.259434-07:00,1005.3965454101562,10.93935,10939.35 +1607,2025-06-10T04:52:28.187378-07:00,1005.4080200195312,10.927944,10927.944 +1608,2025-06-10T04:52:39.117730-07:00,1005.4360961914062,10.930352,10930.352 +1609,2025-06-10T04:52:50.039987-07:00,1005.4014282226562,10.922257,10922.257 +1610,2025-06-10T04:53:00.974429-07:00,1005.4277954101562,10.934442,10934.442 +1611,2025-06-10T04:53:11.903133-07:00,1005.4360961914062,10.928704,10928.704 +1612,2025-06-10T04:53:22.836026-07:00,1005.3984375,10.932893,10932.893 +1613,2025-06-10T04:53:33.765323-07:00,1005.4115600585938,10.929297,10929.297 +1614,2025-06-10T04:53:44.705124-07:00,1005.3853149414062,10.939801,10939.801 +1615,2025-06-10T04:53:55.625235-07:00,1005.3984375,10.920111,10920.111 +1616,2025-06-10T04:54:06.557020-07:00,1005.4195556640625,10.931785,10931.785 +1617,2025-06-10T04:54:17.491225-07:00,1005.423095703125,10.934205,10934.205 +1618,2025-06-10T04:54:28.425497-07:00,1005.4248657226562,10.934272,10934.272 +1619,2025-06-10T04:54:39.354055-07:00,1005.4165649414062,10.928558,10928.558 +1620,2025-06-10T04:54:50.299974-07:00,1005.4082641601562,10.945919,10945.919 +1621,2025-06-10T04:55:01.228972-07:00,1005.4393920898438,10.928998,10928.998 +1622,2025-06-10T04:55:12.167316-07:00,1005.436279296875,10.938344,10938.344 +1623,2025-06-10T04:55:23.101050-07:00,1005.4065551757812,10.933734,10933.734 +1624,2025-06-10T04:55:34.041272-07:00,1005.4017333984375,10.940222,10940.222 +1625,2025-06-10T04:55:44.973330-07:00,1005.423095703125,10.932058,10932.058 +1626,2025-06-10T04:55:55.908975-07:00,1005.4280395507812,10.935645,10935.645 +1627,2025-06-10T04:56:06.833478-07:00,1005.436279296875,10.924503,10924.503 +1628,2025-06-10T04:56:17.777971-07:00,1005.4346313476562,10.944493,10944.493 +1629,2025-06-10T04:56:28.701243-07:00,1005.4065551757812,10.923272,10923.272 +1630,2025-06-10T04:56:39.636917-07:00,1005.4052124023438,10.935674,10935.674 +1631,2025-06-10T04:56:50.571314-07:00,1005.41015625,10.934397,10934.397 +1632,2025-06-10T04:57:01.511188-07:00,1005.41015625,10.939874,10939.874 +1633,2025-06-10T04:57:12.447979-07:00,1005.4579467773438,10.936791,10936.791 +1634,2025-06-10T04:57:23.380284-07:00,1005.443115234375,10.932305,10932.305 +1635,2025-06-10T04:57:34.317235-07:00,1005.4216918945312,10.936951,10936.951 +1636,2025-06-10T04:57:45.248583-07:00,1005.390380859375,10.931348,10931.348 +1637,2025-06-10T04:57:56.176227-07:00,1005.4282836914062,10.927644,10927.644 +1638,2025-06-10T04:58:07.117966-07:00,1005.4282836914062,10.941739,10941.739 +1639,2025-06-10T04:58:18.046420-07:00,1005.4467163085938,10.928454,10928.454 +1640,2025-06-10T04:58:28.979323-07:00,1005.4071655273438,10.932903,10932.903 +1641,2025-06-10T04:58:39.919127-07:00,1005.4282836914062,10.939804,10939.804 +1642,2025-06-10T04:58:50.848273-07:00,1005.431884765625,10.929146,10929.146 +1643,2025-06-10T04:59:01.776975-07:00,1005.4664306640625,10.928702,10928.702 +1644,2025-06-10T04:59:12.715981-07:00,1005.431884765625,10.939006,10939.006 +1645,2025-06-10T04:59:23.655463-07:00,1005.463134765625,10.939482,10939.482 +1646,2025-06-10T04:59:34.581983-07:00,1005.449951171875,10.92652,10926.52 +1647,2025-06-10T04:59:45.503101-07:00,1005.4138793945312,10.921118,10921.118 +1648,2025-06-10T04:59:56.430354-07:00,1005.43017578125,10.927253,10927.253 +1649,2025-06-10T05:00:07.359270-07:00,1005.4169311523438,10.928916,10928.916 +1650,2025-06-10T05:00:18.292995-07:00,1005.449951171875,10.933725,10933.725 +1651,2025-06-10T05:00:29.222971-07:00,1005.4419555664062,10.929976,10929.976 +1652,2025-06-10T05:00:40.151471-07:00,1005.4564819335938,10.9285,10928.5 +1653,2025-06-10T05:00:51.083977-07:00,1005.4073486328125,10.932506,10932.506 +1654,2025-06-10T05:01:02.012294-07:00,1005.4073486328125,10.928317,10928.317 +1655,2025-06-10T05:01:12.942204-07:00,1005.4287719726562,10.92991,10929.91 +1656,2025-06-10T05:01:23.870601-07:00,1005.4337768554688,10.928397,10928.397 +1657,2025-06-10T05:01:34.803981-07:00,1005.4320068359375,10.93338,10933.38 +1658,2025-06-10T05:01:45.739309-07:00,1005.4122924804688,10.935328,10935.328 +1659,2025-06-10T05:01:56.677910-07:00,1005.4403076171875,10.938601,10938.601 +1660,2025-06-10T05:02:07.608607-07:00,1005.3942260742188,10.930697,10930.697 +1661,2025-06-10T05:02:18.540976-07:00,1005.3892211914062,10.932369,10932.369 +1662,2025-06-10T05:02:29.474486-07:00,1005.4205322265625,10.93351,10933.51 +1663,2025-06-10T05:02:40.405199-07:00,1005.4337768554688,10.930713,10930.713 +1664,2025-06-10T05:02:51.334592-07:00,1005.4403076171875,10.929393,10929.393 +1665,2025-06-10T05:03:02.257010-07:00,1005.4320068359375,10.922418,10922.418 +1666,2025-06-10T05:03:13.190528-07:00,1005.3990478515625,10.933518,10933.518 +1667,2025-06-10T05:03:24.122980-07:00,1005.3875732421875,10.932452,10932.452 +1668,2025-06-10T05:03:35.058687-07:00,1005.4056396484375,10.935707,10935.707 +1669,2025-06-10T05:03:45.991257-07:00,1005.4056396484375,10.93257,10932.57 +1670,2025-06-10T05:03:56.916609-07:00,1005.376220703125,10.925352,10925.352 +1671,2025-06-10T05:04:07.855088-07:00,1005.37109375,10.938479,10938.479 +1672,2025-06-10T05:04:18.785318-07:00,1005.35791015625,10.93023,10930.23 +1673,2025-06-10T05:04:29.707983-07:00,1005.3810424804688,10.922665,10922.665 +1674,2025-06-10T05:04:40.640536-07:00,1005.4073486328125,10.932553,10932.553 +1675,2025-06-10T05:04:51.567992-07:00,1005.3842163085938,10.927456,10927.456 +1676,2025-06-10T05:05:02.506198-07:00,1005.4056396484375,10.938206,10938.206 +1677,2025-06-10T05:05:13.431983-07:00,1005.3961181640625,10.925785,10925.785 +1678,2025-06-10T05:05:24.366295-07:00,1005.3842163085938,10.934312,10934.312 +1679,2025-06-10T05:05:35.296231-07:00,1005.3878173828125,10.929936,10929.936 +1680,2025-06-10T05:05:46.231431-07:00,1005.4122924804688,10.9352,10935.2 +1681,2025-06-10T05:05:57.157977-07:00,1005.4009399414062,10.926546,10926.546 +1682,2025-06-10T05:06:08.076202-07:00,1005.404052734375,10.918225,10918.225 +1683,2025-06-10T05:06:19.007212-07:00,1005.4092407226562,10.93101,10931.01 +1684,2025-06-10T05:06:29.950074-07:00,1005.4224243164062,10.942862,10942.862 +1685,2025-06-10T05:06:40.883970-07:00,1005.4009399414062,10.933896,10933.896 +1686,2025-06-10T05:06:51.819298-07:00,1005.4421997070312,10.935328,10935.328 +1687,2025-06-10T05:07:02.752012-07:00,1005.4698486328125,10.932714,10932.714 +1688,2025-06-10T05:07:13.685398-07:00,1005.4603271484375,10.933386,10933.386 +1689,2025-06-10T05:07:24.614981-07:00,1005.430908203125,10.929583,10929.583 +1690,2025-06-10T05:07:35.548179-07:00,1005.4619750976562,10.933198,10933.198 +1691,2025-06-10T05:07:46.478976-07:00,1005.4586181640625,10.930797,10930.797 +1692,2025-06-10T05:07:57.412879-07:00,1005.4651489257812,10.933903,10933.903 +1693,2025-06-10T05:08:08.344264-07:00,1005.512939453125,10.931385,10931.385 +1694,2025-06-10T05:08:19.288139-07:00,1005.4783325195312,10.943875,10943.875 +1695,2025-06-10T05:08:30.216474-07:00,1005.5245361328125,10.928335,10928.335 +1696,2025-06-10T05:08:41.151316-07:00,1005.510009765625,10.934842,10934.842 +1697,2025-06-10T05:08:52.084328-07:00,1005.5296630859375,10.933012,10933.012 +1698,2025-06-10T05:09:03.017970-07:00,1005.5231323242188,10.933642,10933.642 +1699,2025-06-10T05:09:13.947196-07:00,1005.521484375,10.929226,10929.226 +1700,2025-06-10T05:09:24.887100-07:00,1005.5264282226562,10.939904,10939.904 +1701,2025-06-10T05:09:35.809431-07:00,1005.53955078125,10.922331,10922.331 +1702,2025-06-10T05:09:46.744279-07:00,1005.5264282226562,10.934848,10934.848 +1703,2025-06-10T05:09:57.674303-07:00,1005.53955078125,10.930024,10930.024 +1704,2025-06-10T05:10:08.601262-07:00,1005.5264282226562,10.926959,10926.959 +1705,2025-06-10T05:10:19.540942-07:00,1005.53955078125,10.93968,10939.68 +1706,2025-06-10T05:10:30.471129-07:00,1005.532958984375,10.930187,10930.187 +1707,2025-06-10T05:10:41.405378-07:00,1005.572509765625,10.934249,10934.249 +1708,2025-06-10T05:10:52.337359-07:00,1005.5460815429688,10.931981,10931.981 +1709,2025-06-10T05:11:03.282284-07:00,1005.56591796875,10.944925,10944.925 +1710,2025-06-10T05:11:14.207983-07:00,1005.5562744140625,10.925699,10925.699 +1711,2025-06-10T05:11:25.145038-07:00,1005.5939331054688,10.937055,10937.055 +1712,2025-06-10T05:11:36.082381-07:00,1005.5579833984375,10.937343,10937.343 +1713,2025-06-10T05:11:47.009108-07:00,1005.5694580078125,10.926727,10926.727 +1714,2025-06-10T05:11:57.939166-07:00,1005.5413818359375,10.930058,10930.058 +1715,2025-06-10T05:12:08.870983-07:00,1005.5382080078125,10.931817,10931.817 +1716,2025-06-10T05:12:19.800011-07:00,1005.552978515625,10.929028,10929.028 +1717,2025-06-10T05:12:30.731327-07:00,1005.5150756835938,10.931316,10931.316 +1718,2025-06-10T05:12:41.665978-07:00,1005.5431518554688,10.934651,10934.651 +1719,2025-06-10T05:12:52.591123-07:00,1005.5645141601562,10.925145,10925.145 +1720,2025-06-10T05:13:03.519981-07:00,1005.5480346679688,10.928858,10928.858 +1721,2025-06-10T05:13:14.460220-07:00,1005.5413818359375,10.940239,10940.239 +1722,2025-06-10T05:13:25.392857-07:00,1005.5120239257812,10.932637,10932.637 +1723,2025-06-10T05:13:36.318233-07:00,1005.5496826171875,10.925376,10925.376 +1724,2025-06-10T05:13:47.257454-07:00,1005.5348510742188,10.939221,10939.221 +1725,2025-06-10T05:13:58.196956-07:00,1005.513427734375,10.939502,10939.502 +1726,2025-06-10T05:14:09.132413-07:00,1005.5449829101562,10.935457,10935.457 +1727,2025-06-10T05:14:20.060983-07:00,1005.5252075195312,10.92857,10928.57 +1728,2025-06-10T05:14:30.996166-07:00,1005.5318603515625,10.935183,10935.183 +1729,2025-06-10T05:14:41.936367-07:00,1005.5054931640625,10.940201,10940.201 +1730,2025-06-10T05:14:52.870316-07:00,1005.5252075195312,10.933949,10933.949 +1731,2025-06-10T05:15:03.803903-07:00,1005.5186157226562,10.933587,10933.587 +1732,2025-06-10T05:15:14.740293-07:00,1005.5021362304688,10.93639,10936.39 +1733,2025-06-10T05:15:25.671264-07:00,1005.5103759765625,10.930971,10930.971 +1734,2025-06-10T05:15:36.595983-07:00,1005.4906005859375,10.924719,10924.719 +1735,2025-06-10T05:15:47.535489-07:00,1005.4774780273438,10.939506,10939.506 +1736,2025-06-10T05:15:58.470976-07:00,1005.4923706054688,10.935487,10935.487 +1737,2025-06-10T05:16:09.393127-07:00,1005.513427734375,10.922151,10922.151 +1738,2025-06-10T05:16:20.332172-07:00,1005.4774780273438,10.939045,10939.045 +1739,2025-06-10T05:16:31.261468-07:00,1005.500244140625,10.929296,10929.296 +1740,2025-06-10T05:16:42.194985-07:00,1005.4971923828125,10.933517,10933.517 +1741,2025-06-10T05:16:53.124323-07:00,1005.5054931640625,10.929338,10929.338 +1742,2025-06-10T05:17:04.054049-07:00,1005.4840698242188,10.929726,10929.726 +1743,2025-06-10T05:17:14.982233-07:00,1005.4906005859375,10.928184,10928.184 +1744,2025-06-10T05:17:25.913123-07:00,1005.4757690429688,10.93089,10930.89 +1745,2025-06-10T05:17:36.843541-07:00,1005.4857177734375,10.930418,10930.418 +1746,2025-06-10T05:17:47.773987-07:00,1005.5103759765625,10.930446,10930.446 +1747,2025-06-10T05:17:58.700981-07:00,1005.4727172851562,10.926994,10926.994 +1748,2025-06-10T05:18:09.635274-07:00,1005.5120239257812,10.934293,10934.293 +1749,2025-06-10T05:18:20.575301-07:00,1005.4888916015625,10.940027,10940.027 +1750,2025-06-10T05:18:31.510224-07:00,1005.5021362304688,10.934923,10934.923 +1751,2025-06-10T05:18:42.432723-07:00,1005.5037231445312,10.922499,10922.499 +1752,2025-06-10T05:18:53.372982-07:00,1005.4888916015625,10.940259,10940.259 +1753,2025-06-10T05:19:04.300303-07:00,1005.4955444335938,10.927321,10927.321 +1754,2025-06-10T05:19:15.235016-07:00,1005.4823608398438,10.934713,10934.713 +1755,2025-06-10T05:19:26.169334-07:00,1005.5007934570312,10.934318,10934.318 +1756,2025-06-10T05:19:37.095954-07:00,1005.4888916015625,10.92662,10926.62 +1757,2025-06-10T05:19:48.033284-07:00,1005.4888916015625,10.93733,10937.33 +1758,2025-06-10T05:19:58.961977-07:00,1005.4955444335938,10.928693,10928.693 +1759,2025-06-10T05:20:09.895850-07:00,1005.4840698242188,10.933873,10933.873 +1760,2025-06-10T05:20:20.828018-07:00,1005.4888916015625,10.932168,10932.168 +1761,2025-06-10T05:20:31.753275-07:00,1005.474365234375,10.925257,10925.257 +1762,2025-06-10T05:20:42.688986-07:00,1005.4757690429688,10.935711,10935.711 +1763,2025-06-10T05:20:53.627171-07:00,1005.4888916015625,10.938185,10938.185 +1764,2025-06-10T05:21:04.560981-07:00,1005.4955444335938,10.93381,10933.81 +1765,2025-06-10T05:21:15.495983-07:00,1005.4810180664062,10.935002,10935.002 +1766,2025-06-10T05:21:26.424360-07:00,1005.487548828125,10.928377,10928.377 +1767,2025-06-10T05:21:37.364201-07:00,1005.5021362304688,10.939841,10939.841 +1768,2025-06-10T05:21:48.301696-07:00,1005.4924926757812,10.937495,10937.495 +1769,2025-06-10T05:21:59.231007-07:00,1005.513916015625,10.929311,10929.311 +1770,2025-06-10T05:22:10.167985-07:00,1005.4907836914062,10.936978,10936.978 +1771,2025-06-10T05:22:21.094979-07:00,1005.5039672851562,10.926994,10926.994 +1772,2025-06-10T05:22:32.040981-07:00,1005.505615234375,10.946002,10946.002 +1773,2025-06-10T05:22:42.974632-07:00,1005.5122680664062,10.933651,10933.651 +1774,2025-06-10T05:22:53.906970-07:00,1005.5039672851562,10.932338,10932.338 +1775,2025-06-10T05:23:04.840316-07:00,1005.5106201171875,10.933346,10933.346 +1776,2025-06-10T05:23:15.769987-07:00,1005.502685546875,10.929671,10929.671 +1777,2025-06-10T05:23:26.710334-07:00,1005.5237426757812,10.940347,10940.347 +1778,2025-06-10T05:23:37.639190-07:00,1005.5106201171875,10.928856,10928.856 +1779,2025-06-10T05:23:48.568294-07:00,1005.49609375,10.929104,10929.104 +1780,2025-06-10T05:23:59.503970-07:00,1005.5009155273438,10.935676,10935.676 +1781,2025-06-10T05:24:10.436342-07:00,1005.5189208984375,10.932372,10932.372 +1782,2025-06-10T05:24:21.370038-07:00,1005.5237426757812,10.933696,10933.696 +1783,2025-06-10T05:24:32.301529-07:00,1005.5254516601562,10.931491,10931.491 +1784,2025-06-10T05:24:43.227116-07:00,1005.5223999023438,10.925587,10925.587 +1785,2025-06-10T05:24:54.162316-07:00,1005.502685546875,10.9352,10935.2 +1786,2025-06-10T05:25:05.104120-07:00,1005.5106201171875,10.941804,10941.804 +1787,2025-06-10T05:25:16.031226-07:00,1005.5122680664062,10.927106,10927.106 +1788,2025-06-10T05:25:26.969183-07:00,1005.5350952148438,10.937957,10937.957 +1789,2025-06-10T05:25:37.904106-07:00,1005.53857421875,10.934923,10934.923 +1790,2025-06-10T05:25:48.841632-07:00,1005.546875,10.937526,10937.526 +1791,2025-06-10T05:25:59.779176-07:00,1005.5303344726562,10.937544,10937.544 +1792,2025-06-10T05:26:10.713228-07:00,1005.553466796875,10.934052,10934.052 +1793,2025-06-10T05:26:21.648111-07:00,1005.5435180664062,10.934883,10934.883 +1794,2025-06-10T05:26:32.582979-07:00,1005.5320434570312,10.934868,10934.868 +1795,2025-06-10T05:26:43.517318-07:00,1005.5487670898438,10.934339,10934.339 +1796,2025-06-10T05:26:54.450981-07:00,1005.5435180664062,10.933663,10933.663 +1797,2025-06-10T05:27:05.390401-07:00,1005.571533203125,10.93942,10939.42 +1798,2025-06-10T05:27:16.329639-07:00,1005.5435180664062,10.939238,10939.238 +1799,2025-06-10T05:27:27.265981-07:00,1005.5487670898438,10.936342,10936.342 +1800,2025-06-10T05:27:38.199323-07:00,1005.56982421875,10.933342,10933.342 +1801,2025-06-10T05:27:49.139127-07:00,1005.5501708984375,10.939804,10939.804 +1802,2025-06-10T05:28:00.079981-07:00,1005.5632934570312,10.940854,10940.854 +1803,2025-06-10T05:28:11.014485-07:00,1005.5619506835938,10.934504,10934.504 +1804,2025-06-10T05:28:21.937332-07:00,1005.5685424804688,10.922847,10922.847 +1805,2025-06-10T05:28:32.880451-07:00,1005.5552978515625,10.943119,10943.119 +1806,2025-06-10T05:28:43.810102-07:00,1005.5817260742188,10.929651,10929.651 +1807,2025-06-10T05:28:54.740025-07:00,1005.5764770507812,10.929923,10929.923 +1808,2025-06-10T05:29:05.675987-07:00,1005.5487670898438,10.935962,10935.962 +1809,2025-06-10T05:29:16.607905-07:00,1005.552001953125,10.931918,10931.918 +1810,2025-06-10T05:29:27.555108-07:00,1005.5619506835938,10.947203,10947.203 +1811,2025-06-10T05:29:38.484550-07:00,1005.5536499023438,10.929442,10929.442 +1812,2025-06-10T05:29:49.409107-07:00,1005.560302734375,10.924557,10924.557 +1813,2025-06-10T05:30:00.341737-07:00,1005.5552978515625,10.93263,10932.63 +1814,2025-06-10T05:30:11.270092-07:00,1005.584716796875,10.928355,10928.355 +1815,2025-06-10T05:30:22.204783-07:00,1005.5470581054688,10.934691,10934.691 +1816,2025-06-10T05:30:33.132344-07:00,1005.552001953125,10.927561,10927.561 +1817,2025-06-10T05:30:44.060104-07:00,1005.5308837890625,10.92776,10927.76 +1818,2025-06-10T05:30:54.994091-07:00,1005.5028076171875,10.933987,10933.987 +1819,2025-06-10T05:31:05.923135-07:00,1005.525634765625,10.929044,10929.044 +1820,2025-06-10T05:31:16.856336-07:00,1005.5045166015625,10.933201,10933.201 +1821,2025-06-10T05:31:27.786321-07:00,1005.51904296875,10.929985,10929.985 +1822,2025-06-10T05:31:38.720378-07:00,1005.5111083984375,10.934057,10934.057 +1823,2025-06-10T05:31:49.650085-07:00,1005.5011596679688,10.929707,10929.707 +1824,2025-06-10T05:32:00.590096-07:00,1005.4913940429688,10.940011,10940.011 +1825,2025-06-10T05:32:11.518867-07:00,1005.4765014648438,10.928771,10928.771 +1826,2025-06-10T05:32:22.454083-07:00,1005.5454711914062,10.935216,10935.216 +1827,2025-06-10T05:32:33.380529-07:00,1005.5059204101562,10.926446,10926.446 +1828,2025-06-10T05:32:44.315231-07:00,1005.5059204101562,10.934702,10934.702 +1829,2025-06-10T05:32:55.234246-07:00,1005.4979858398438,10.919015,10919.015 +1830,2025-06-10T05:33:06.168113-07:00,1005.4664306640625,10.933867,10933.867 +1831,2025-06-10T05:33:17.095107-07:00,1005.5045166015625,10.926994,10926.994 +1832,2025-06-10T05:33:28.029439-07:00,1005.5028076171875,10.934332,10934.332 +1833,2025-06-10T05:33:38.960104-07:00,1005.4765014648438,10.930665,10930.665 +1834,2025-06-10T05:33:49.886397-07:00,1005.4715576171875,10.926293,10926.293 +1835,2025-06-10T05:34:00.812273-07:00,1005.4699096679688,10.925876,10925.876 +1836,2025-06-10T05:34:11.748170-07:00,1005.44677734375,10.935897,10935.897 +1837,2025-06-10T05:34:22.664085-07:00,1005.4847412109375,10.915915,10915.915 +1838,2025-06-10T05:34:33.591434-07:00,1005.499267578125,10.927349,10927.349 +1839,2025-06-10T05:34:44.522579-07:00,1005.466552734375,10.931145,10931.145 +1840,2025-06-10T05:34:55.452355-07:00,1005.461669921875,10.929776,10929.776 +1841,2025-06-10T05:35:06.386294-07:00,1005.4484252929688,10.933939,10933.939 +1842,2025-06-10T05:35:17.321155-07:00,1005.4534301757812,10.934861,10934.861 +1843,2025-06-10T05:35:28.256317-07:00,1005.4322509765625,10.935162,10935.162 +1844,2025-06-10T05:35:39.189104-07:00,1005.466552734375,10.932787,10932.787 +1845,2025-06-10T05:35:50.112424-07:00,1005.4484252929688,10.92332,10923.32 +1846,2025-06-10T05:36:01.042100-07:00,1005.4389038085938,10.929676,10929.676 +1847,2025-06-10T05:36:11.975706-07:00,1005.43359375,10.933606,10933.606 +1848,2025-06-10T05:36:22.895707-07:00,1005.427001953125,10.920001,10920.001 +1849,2025-06-10T05:36:33.827028-07:00,1005.427001953125,10.931321,10931.321 +1850,2025-06-10T05:36:44.762091-07:00,1005.4501342773438,10.935063,10935.063 +1851,2025-06-10T05:36:55.692711-07:00,1005.440185546875,10.93062,10930.62 +1852,2025-06-10T05:37:06.623118-07:00,1005.4371948242188,10.930407,10930.407 +1853,2025-06-10T05:37:17.553511-07:00,1005.4255981445312,10.930393,10930.393 +1854,2025-06-10T05:37:28.476753-07:00,1005.4255981445312,10.923242,10923.242 +1855,2025-06-10T05:37:39.398205-07:00,1005.4174194335938,10.921452,10921.452 +1856,2025-06-10T05:37:50.326435-07:00,1005.440185546875,10.92823,10928.23 +1857,2025-06-10T05:38:01.249359-07:00,1005.3993530273438,10.922924,10922.924 +1858,2025-06-10T05:38:12.188832-07:00,1005.4174194335938,10.939473,10939.473 +1859,2025-06-10T05:38:23.118388-07:00,1005.4255981445312,10.929556,10929.556 +1860,2025-06-10T05:38:34.046330-07:00,1005.415771484375,10.927942,10927.942 +1861,2025-06-10T05:38:44.975360-07:00,1005.4042358398438,10.92903,10929.03 +1862,2025-06-10T05:38:55.910125-07:00,1005.4124755859375,10.934765,10934.765 +1863,2025-06-10T05:39:06.843263-07:00,1005.427001953125,10.933138,10933.138 +1864,2025-06-10T05:39:17.768282-07:00,1005.4174194335938,10.925019,10925.019 +1865,2025-06-10T05:39:28.703096-07:00,1005.4288940429688,10.934814,10934.814 +1866,2025-06-10T05:39:39.629094-07:00,1005.4190673828125,10.925998,10925.998 +1867,2025-06-10T05:39:50.557104-07:00,1005.4107666015625,10.92801,10928.01 +1868,2025-06-10T05:40:01.494421-07:00,1005.4012451171875,10.937317,10937.317 +1869,2025-06-10T05:40:12.436107-07:00,1005.4012451171875,10.941686,10941.686 +1870,2025-06-10T05:40:23.372693-07:00,1005.4091186523438,10.936586,10936.586 +1871,2025-06-10T05:40:34.311155-07:00,1005.3732299804688,10.938462,10938.462 +1872,2025-06-10T05:40:45.242104-07:00,1005.3929443359375,10.930949,10930.949 +1873,2025-06-10T05:40:56.186419-07:00,1005.4078369140625,10.944315,10944.315 +1874,2025-06-10T05:41:07.119085-07:00,1005.3880615234375,10.932666,10932.666 +1875,2025-06-10T05:41:18.043620-07:00,1005.4209594726562,10.924535,10924.535 +1876,2025-06-10T05:41:28.977104-07:00,1005.4060668945312,10.933484,10933.484 +1877,2025-06-10T05:41:39.907880-07:00,1005.3929443359375,10.930776,10930.776 +1878,2025-06-10T05:41:50.835109-07:00,1005.3880615234375,10.927229,10927.229 +1879,2025-06-10T05:42:01.760106-07:00,1005.3847045898438,10.924997,10924.997 +1880,2025-06-10T05:42:12.689731-07:00,1005.3929443359375,10.929625,10929.625 +1881,2025-06-10T05:42:23.608399-07:00,1005.3912353515625,10.918668,10918.668 +1882,2025-06-10T05:42:34.537844-07:00,1005.4288940429688,10.929445,10929.445 +1883,2025-06-10T05:42:45.468239-07:00,1005.3929443359375,10.930395,10930.395 +1884,2025-06-10T05:42:56.394134-07:00,1005.3965454101562,10.925895,10925.895 +1885,2025-06-10T05:43:07.324148-07:00,1005.3883056640625,10.930014,10930.014 +1886,2025-06-10T05:43:18.251089-07:00,1005.4110717773438,10.926941,10926.941 +1887,2025-06-10T05:43:29.186292-07:00,1005.4110717773438,10.935203,10935.203 +1888,2025-06-10T05:43:40.115104-07:00,1005.4060668945312,10.928812,10928.812 +1889,2025-06-10T05:43:51.051353-07:00,1005.4031372070312,10.936249,10936.249 +1890,2025-06-10T05:44:01.977098-07:00,1005.3816528320312,10.925745,10925.745 +1891,2025-06-10T05:44:12.899875-07:00,1005.3995361328125,10.922777,10922.777 +1892,2025-06-10T05:44:23.836109-07:00,1005.4044799804688,10.936234,10936.234 +1893,2025-06-10T05:44:34.764298-07:00,1005.4373168945312,10.928189,10928.189 +1894,2025-06-10T05:44:45.692091-07:00,1005.4390869140625,10.927793,10927.793 +1895,2025-06-10T05:44:56.633146-07:00,1005.4110717773438,10.941055,10941.055 +1896,2025-06-10T05:45:07.559085-07:00,1005.4259643554688,10.925939,10925.939 +1897,2025-06-10T05:45:18.496768-07:00,1005.4176635742188,10.937683,10937.683 +1898,2025-06-10T05:45:29.431093-07:00,1005.4341430664062,10.934325,10934.325 +1899,2025-06-10T05:45:40.359108-07:00,1005.4031372070312,10.928015,10928.015 +1900,2025-06-10T05:45:51.291115-07:00,1005.4588012695312,10.932007,10932.007 +1901,2025-06-10T05:46:02.218856-07:00,1005.4241943359375,10.927741,10927.741 +1902,2025-06-10T05:46:13.142093-07:00,1005.416259765625,10.923237,10923.237 +1903,2025-06-10T05:46:24.077419-07:00,1005.4373168945312,10.935326,10935.326 +1904,2025-06-10T05:46:35.008303-07:00,1005.4324951171875,10.930884,10930.884 +1905,2025-06-10T05:46:45.934895-07:00,1005.455810546875,10.926592,10926.592 +1906,2025-06-10T05:46:56.859108-07:00,1005.4031372070312,10.924213,10924.213 +1907,2025-06-10T05:47:07.786077-07:00,1005.4343872070312,10.926969,10926.969 +1908,2025-06-10T05:47:18.724112-07:00,1005.421142578125,10.938035,10938.035 +1909,2025-06-10T05:47:29.652302-07:00,1005.4227905273438,10.92819,10928.19 +1910,2025-06-10T05:47:40.582108-07:00,1005.4063110351562,10.929806,10929.806 +1911,2025-06-10T05:47:51.511098-07:00,1005.4146118164062,10.92899,10928.99 +1912,2025-06-10T05:48:02.446840-07:00,1005.4343872070312,10.935742,10935.742 +1913,2025-06-10T05:48:13.383441-07:00,1005.43603515625,10.936601,10936.601 +1914,2025-06-10T05:48:24.316104-07:00,1005.4277954101562,10.932663,10932.663 +1915,2025-06-10T05:48:35.250242-07:00,1005.4343872070312,10.934138,10934.138 +1916,2025-06-10T05:48:46.188108-07:00,1005.43603515625,10.937866,10937.866 +1917,2025-06-10T05:48:57.112426-07:00,1005.4146118164062,10.924318,10924.318 +1918,2025-06-10T05:49:08.042087-07:00,1005.44921875,10.929661,10929.661 +1919,2025-06-10T05:49:18.968148-07:00,1005.416259765625,10.926061,10926.061 +1920,2025-06-10T05:49:29.887898-07:00,1005.4373168945312,10.91975,10919.75 +1921,2025-06-10T05:49:40.813100-07:00,1005.4227905273438,10.925202,10925.202 +1922,2025-06-10T05:49:51.738463-07:00,1005.4373168945312,10.925363,10925.363 +1923,2025-06-10T05:50:02.665317-07:00,1005.455810546875,10.926854,10926.854 +1924,2025-06-10T05:50:13.581354-07:00,1005.44091796875,10.916037,10916.037 +1925,2025-06-10T05:50:24.513631-07:00,1005.4572143554688,10.932277,10932.277 +1926,2025-06-10T05:50:35.429471-07:00,1005.439208984375,10.91584,10915.84 +1927,2025-06-10T05:50:46.353104-07:00,1005.4326782226562,10.923633,10923.633 +1928,2025-06-10T05:50:57.280906-07:00,1005.4326782226562,10.927802,10927.802 +1929,2025-06-10T05:51:08.204095-07:00,1005.447509765625,10.923189,10923.189 +1930,2025-06-10T05:51:19.133093-07:00,1005.4673461914062,10.928998,10928.998 +1931,2025-06-10T05:51:30.066106-07:00,1005.47216796875,10.933013,10933.013 +1932,2025-06-10T05:51:40.996459-07:00,1005.4590454101562,10.930353,10930.353 +1933,2025-06-10T05:51:51.931094-07:00,1005.460693359375,10.934635,10934.635 +1934,2025-06-10T05:52:02.852795-07:00,1005.452392578125,10.921701,10921.701 +1935,2025-06-10T05:52:13.787090-07:00,1005.473876953125,10.934295,10934.295 +1936,2025-06-10T05:52:24.708110-07:00,1005.452392578125,10.92102,10921.02 +1937,2025-06-10T05:52:35.639037-07:00,1005.4902954101562,10.930927,10930.927 +1938,2025-06-10T05:52:46.566109-07:00,1005.4411010742188,10.927072,10927.072 +1939,2025-06-10T05:52:57.500840-07:00,1005.4573364257812,10.934731,10934.731 +1940,2025-06-10T05:53:08.430353-07:00,1005.4888916015625,10.929513,10929.513 +1941,2025-06-10T05:53:19.346262-07:00,1005.4902954101562,10.915909,10915.909 +1942,2025-06-10T05:53:30.276445-07:00,1005.5021362304688,10.930183,10930.183 +1943,2025-06-10T05:53:41.202151-07:00,1005.46923828125,10.925706,10925.706 +1944,2025-06-10T05:53:52.138278-07:00,1005.454345703125,10.936127,10936.127 +1945,2025-06-10T05:54:03.070329-07:00,1005.4757690429688,10.932051,10932.051 +1946,2025-06-10T05:54:13.999631-07:00,1005.46923828125,10.929302,10929.302 +1947,2025-06-10T05:54:24.930108-07:00,1005.46923828125,10.930477,10930.477 +1948,2025-06-10T05:54:35.851396-07:00,1005.4625854492188,10.921288,10921.288 +1949,2025-06-10T05:54:46.781106-07:00,1005.4428100585938,10.92971,10929.71 +1950,2025-06-10T05:54:57.715394-07:00,1005.454345703125,10.934288,10934.288 +1951,2025-06-10T05:55:08.644389-07:00,1005.5021362304688,10.928995,10928.995 +1952,2025-06-10T05:55:19.566108-07:00,1005.4559326171875,10.921719,10921.719 +1953,2025-06-10T05:55:30.502160-07:00,1005.4837646484375,10.936052,10936.052 +1954,2025-06-10T05:55:41.430365-07:00,1005.4872436523438,10.928205,10928.205 +1955,2025-06-10T05:55:52.353349-07:00,1005.4954833984375,10.922984,10922.984 +1956,2025-06-10T05:56:03.285770-07:00,1005.4888916015625,10.932421,10932.421 +1957,2025-06-10T05:56:14.207350-07:00,1005.4578247070312,10.92158,10921.58 +1958,2025-06-10T05:56:25.132437-07:00,1005.4841918945312,10.925087,10925.087 +1959,2025-06-10T05:56:36.071331-07:00,1005.467529296875,10.938894,10938.894 +1960,2025-06-10T05:56:46.989463-07:00,1005.4938354492188,10.918132,10918.132 +1961,2025-06-10T05:56:57.912327-07:00,1005.4723510742188,10.922864,10922.864 +1962,2025-06-10T05:57:08.846354-07:00,1005.50048828125,10.934027,10934.027 +1963,2025-06-10T05:57:19.767350-07:00,1005.5218505859375,10.920996,10920.996 +1964,2025-06-10T05:57:30.693099-07:00,1005.5070190429688,10.925749,10925.749 +1965,2025-06-10T05:57:41.613110-07:00,1005.4938354492188,10.920011,10920.011 +1966,2025-06-10T05:57:52.539083-07:00,1005.5070190429688,10.925973,10925.973 +1967,2025-06-10T05:58:03.456299-07:00,1005.5201416015625,10.917216,10917.216 +1968,2025-06-10T05:58:14.390621-07:00,1005.5136108398438,10.934322,10934.322 +1969,2025-06-10T05:58:25.307108-07:00,1005.5218505859375,10.916487,10916.487 +1970,2025-06-10T05:58:36.236112-07:00,1005.5250854492188,10.929004,10929.004 +1971,2025-06-10T05:58:47.156982-07:00,1005.5349731445312,10.92087,10920.87 +1972,2025-06-10T05:58:58.082141-07:00,1005.5662231445312,10.925159,10925.159 +1973,2025-06-10T05:59:09.010130-07:00,1005.5250854492188,10.927989,10927.989 +1974,2025-06-10T05:59:19.937375-07:00,1005.5482177734375,10.927245,10927.245 +1975,2025-06-10T05:59:30.860344-07:00,1005.5352172851562,10.922969,10922.969 +1976,2025-06-10T05:59:41.791362-07:00,1005.5646362304688,10.931018,10931.018 +1977,2025-06-10T05:59:52.712085-07:00,1005.5712280273438,10.920723,10920.723 +1978,2025-06-10T06:00:03.640104-07:00,1005.5712280273438,10.928019,10928.019 +1979,2025-06-10T06:00:14.564148-07:00,1005.6124267578125,10.924044,10924.044 +1980,2025-06-10T06:00:25.484144-07:00,1005.5945434570312,10.919996,10919.996 +1981,2025-06-10T06:00:36.407330-07:00,1005.581298828125,10.923186,10923.186 +1982,2025-06-10T06:00:47.341366-07:00,1005.609375,10.934036,10934.036 +1983,2025-06-10T06:00:58.268243-07:00,1005.6107788085938,10.926877,10926.877 +1984,2025-06-10T06:01:09.195757-07:00,1005.6107788085938,10.927514,10927.514 +1985,2025-06-10T06:01:20.107100-07:00,1005.6107788085938,10.911343,10911.343 +1986,2025-06-10T06:01:31.042032-07:00,1005.6404418945312,10.934932,10934.932 +1987,2025-06-10T06:01:41.963573-07:00,1005.6304931640625,10.921541,10921.541 +1988,2025-06-10T06:01:52.886266-07:00,1005.6256103515625,10.922693,10922.693 +1989,2025-06-10T06:02:03.809813-07:00,1005.60107421875,10.923547,10923.547 +1990,2025-06-10T06:02:14.742109-07:00,1005.642333984375,10.932296,10932.296 +1991,2025-06-10T06:02:25.661096-07:00,1005.65185546875,10.918987,10918.987 +1992,2025-06-10T06:02:36.590397-07:00,1005.6224975585938,10.929301,10929.301 +1993,2025-06-10T06:02:47.525109-07:00,1005.6554565429688,10.934712,10934.712 +1994,2025-06-10T06:02:58.458451-07:00,1005.64892578125,10.933342,10933.342 +1995,2025-06-10T06:03:09.379141-07:00,1005.6257934570312,10.92069,10920.69 +1996,2025-06-10T06:03:20.304970-07:00,1005.640625,10.925829,10925.829 +1997,2025-06-10T06:03:31.239108-07:00,1005.6620483398438,10.934138,10934.138 +1998,2025-06-10T06:03:42.166106-07:00,1005.6752319335938,10.926998,10926.998 +1999,2025-06-10T06:03:53.093268-07:00,1005.6554565429688,10.927162,10927.162 +2000,2025-06-10T06:04:04.024106-07:00,1005.6752319335938,10.930838,10930.838 +2001,2025-06-10T06:04:05.214211-07:00,1005.6455688476562,1.190105,1190.105 +2002,2025-06-10T06:04:14.964112-07:00,1005.638916015625,9.749901,9749.901 +2003,2025-06-10T06:04:25.884120-07:00,1005.638916015625,10.920008,10920.008 +2004,2025-06-10T06:04:36.817091-07:00,1005.6638793945312,10.932971,10932.971 +2005,2025-06-10T06:04:47.754355-07:00,1005.6573486328125,10.937264,10937.264 +2006,2025-06-10T06:04:58.685293-07:00,1005.6507568359375,10.930938,10930.938 +2007,2025-06-10T06:05:09.612104-07:00,1005.6573486328125,10.926811,10926.811 +2008,2025-06-10T06:05:20.541117-07:00,1005.6669311523438,10.929013,10929.013 +2009,2025-06-10T06:05:31.475126-07:00,1005.6622924804688,10.934009,10934.009 +2010,2025-06-10T06:05:42.403744-07:00,1005.6537475585938,10.928618,10928.618 +2011,2025-06-10T06:05:53.329104-07:00,1005.6669311523438,10.92536,10925.36 +2012,2025-06-10T06:06:04.266594-07:00,1005.6310424804688,10.93749,10937.49 +2013,2025-06-10T06:06:15.195327-07:00,1005.6638793945312,10.928733,10928.733 +2014,2025-06-10T06:06:26.124865-07:00,1005.652099609375,10.929538,10929.538 +2015,2025-06-10T06:06:37.050106-07:00,1005.6587524414062,10.925241,10925.241 +2016,2025-06-10T06:06:47.988294-07:00,1005.673583984375,10.938188,10938.188 +2017,2025-06-10T06:06:58.911281-07:00,1005.660400390625,10.922987,10922.987 +2018,2025-06-10T06:07:09.838512-07:00,1005.68017578125,10.927231,10927.231 +2019,2025-06-10T06:07:20.763248-07:00,1005.6359252929688,10.924736,10924.736 +2020,2025-06-10T06:07:31.695356-07:00,1005.6442260742188,10.932108,10932.108 +2021,2025-06-10T06:07:42.623695-07:00,1005.6704711914062,10.928339,10928.339 +2022,2025-06-10T06:07:53.546030-07:00,1005.62939453125,10.922335,10922.335 +2023,2025-06-10T06:08:04.480428-07:00,1005.6638793945312,10.934398,10934.398 +2024,2025-06-10T06:08:15.418086-07:00,1005.6867065429688,10.937658,10937.658 +2025,2025-06-10T06:08:26.349448-07:00,1005.6470336914062,10.931362,10931.362 +2026,2025-06-10T06:08:37.282085-07:00,1005.691650390625,10.932637,10932.637 +2027,2025-06-10T06:08:48.208365-07:00,1005.6622924804688,10.92628,10926.28 +2028,2025-06-10T06:08:59.142140-07:00,1005.6704711914062,10.933775,10933.775 +2029,2025-06-10T06:09:10.082363-07:00,1005.6556396484375,10.940223,10940.223 +2030,2025-06-10T06:09:20.999243-07:00,1005.6688232421875,10.91688,10916.88 +2031,2025-06-10T06:09:31.933697-07:00,1005.6704711914062,10.934454,10934.454 +2032,2025-06-10T06:09:42.856104-07:00,1005.6603393554688,10.922407,10922.407 +2033,2025-06-10T06:09:53.784091-07:00,1005.6865844726562,10.927987,10927.987 +2034,2025-06-10T06:10:04.702441-07:00,1005.6720581054688,10.91835,10918.35 +2035,2025-06-10T06:10:15.636073-07:00,1005.6799926757812,10.933632,10933.632 +2036,2025-06-10T06:10:26.563227-07:00,1005.6734619140625,10.927154,10927.154 +2037,2025-06-10T06:10:37.486087-07:00,1005.6885986328125,10.92286,10922.86 +2038,2025-06-10T06:10:48.411104-07:00,1005.6786499023438,10.925017,10925.017 +2039,2025-06-10T06:10:59.344098-07:00,1005.6799926757812,10.932994,10932.994 +2040,2025-06-10T06:11:10.266152-07:00,1005.6865844726562,10.922054,10922.054 +2041,2025-06-10T06:11:21.191424-07:00,1005.7298583984375,10.925272,10925.272 +2042,2025-06-10T06:11:32.119358-07:00,1005.6997680664062,10.927934,10927.934 +2043,2025-06-10T06:11:43.040098-07:00,1005.72607421875,10.92074,10920.74 +2044,2025-06-10T06:11:53.976354-07:00,1005.68359375,10.936256,10936.256 +2045,2025-06-10T06:12:04.898258-07:00,1005.7033081054688,10.921904,10921.904 +2046,2025-06-10T06:12:15.815099-07:00,1005.708251953125,10.916841,10916.841 +2047,2025-06-10T06:12:26.740109-07:00,1005.6934204101562,10.92501,10925.01 +2048,2025-06-10T06:12:37.660915-07:00,1005.71484375,10.920806,10920.806 +2049,2025-06-10T06:12:48.591343-07:00,1005.70654296875,10.930428,10930.428 +2050,2025-06-10T06:12:59.511340-07:00,1005.6934204101562,10.919997,10919.997 +2051,2025-06-10T06:13:10.429461-07:00,1005.7117919921875,10.918121,10918.121 +2052,2025-06-10T06:13:21.354551-07:00,1005.726318359375,10.92509,10925.09 +2053,2025-06-10T06:13:32.269376-07:00,1005.7196655273438,10.914825,10914.825 +2054,2025-06-10T06:13:43.188354-07:00,1005.7084350585938,10.918978,10918.978 +2055,2025-06-10T06:13:54.110339-07:00,1005.7215576171875,10.921985,10921.985 +2056,2025-06-10T06:14:05.034950-07:00,1005.7298583984375,10.924611,10924.611 +2057,2025-06-10T06:14:15.950009-07:00,1005.7347412109375,10.915059,10915.059 +2058,2025-06-10T06:14:26.872105-07:00,1005.7334594726562,10.922096,10922.096 +2059,2025-06-10T06:14:37.797251-07:00,1005.7413940429688,10.925146,10925.146 +2060,2025-06-10T06:14:48.719434-07:00,1005.7628173828125,10.922183,10922.183 +2061,2025-06-10T06:14:59.646104-07:00,1005.7545166015625,10.92667,10926.67 +2062,2025-06-10T06:15:10.563336-07:00,1005.7693481445312,10.917232,10917.232 +2063,2025-06-10T06:15:21.489703-07:00,1005.7611083984375,10.926367,10926.367 +2064,2025-06-10T06:15:32.417091-07:00,1005.7531127929688,10.927388,10927.388 +2065,2025-06-10T06:15:43.334124-07:00,1005.7611083984375,10.917033,10917.033 +2066,2025-06-10T06:15:54.269357-07:00,1005.7496337890625,10.935233,10935.233 +2067,2025-06-10T06:16:05.186151-07:00,1005.7611083984375,10.916794,10916.794 +2068,2025-06-10T06:16:16.107453-07:00,1005.7611083984375,10.921302,10921.302 +2069,2025-06-10T06:16:27.037324-07:00,1005.782470703125,10.929871,10929.871 +2070,2025-06-10T06:16:37.953405-07:00,1005.7676391601562,10.916081,10916.081 +2071,2025-06-10T06:16:48.881407-07:00,1005.779541015625,10.928002,10928.002 +2072,2025-06-10T06:16:59.821368-07:00,1005.73828125,10.939961,10939.961 +2073,2025-06-10T06:17:10.745620-07:00,1005.7842407226562,10.924252,10924.252 +2074,2025-06-10T06:17:21.672346-07:00,1005.7711181640625,10.926726,10926.726 +2075,2025-06-10T06:17:32.598129-07:00,1005.7711181640625,10.925783,10925.783 +2076,2025-06-10T06:17:43.518478-07:00,1005.7628173828125,10.920349,10920.349 +2077,2025-06-10T06:17:54.440323-07:00,1005.74658203125,10.921845,10921.845 +2078,2025-06-10T06:18:05.358141-07:00,1005.7413940429688,10.917818,10917.818 +2079,2025-06-10T06:18:16.283034-07:00,1005.7446899414062,10.924893,10924.893 +2080,2025-06-10T06:18:27.211108-07:00,1005.739990234375,10.928074,10928.074 +2081,2025-06-10T06:18:38.140133-07:00,1005.72021484375,10.929025,10929.025 +2082,2025-06-10T06:18:49.063470-07:00,1005.713623046875,10.923337,10923.337 +2083,2025-06-10T06:18:59.986096-07:00,1005.7232666015625,10.922626,10922.626 +2084,2025-06-10T06:19:10.915445-07:00,1005.700439453125,10.929349,10929.349 +2085,2025-06-10T06:19:21.831242-07:00,1005.713623046875,10.915797,10915.797 +2086,2025-06-10T06:19:32.759395-07:00,1005.6886596679688,10.928153,10928.153 +2087,2025-06-10T06:19:43.680599-07:00,1005.6754760742188,10.921204,10921.204 +2088,2025-06-10T06:19:54.604098-07:00,1005.6754760742188,10.923499,10923.499 +2089,2025-06-10T06:20:05.526088-07:00,1005.6754760742188,10.92199,10921.99 +2090,2025-06-10T06:20:16.453490-07:00,1005.662353515625,10.927402,10927.402 +2091,2025-06-10T06:20:27.375092-07:00,1005.7101440429688,10.921602,10921.602 +2092,2025-06-10T06:20:38.294098-07:00,1005.6741333007812,10.919006,10919.006 +2093,2025-06-10T06:20:49.227173-07:00,1005.6884155273438,10.933075,10933.075 +2094,2025-06-10T06:21:00.149393-07:00,1005.6873168945312,10.92222,10922.22 +2095,2025-06-10T06:21:11.072237-07:00,1005.6741333007812,10.922844,10922.844 +2096,2025-06-10T06:21:22.001102-07:00,1005.6741333007812,10.928865,10928.865 +2097,2025-06-10T06:21:32.936266-07:00,1005.6856079101562,10.935164,10935.164 +2098,2025-06-10T06:21:43.852627-07:00,1005.6642456054688,10.916361,10916.361 +2099,2025-06-10T06:21:54.779536-07:00,1005.6724853515625,10.926909,10926.909 +2100,2025-06-10T06:22:05.704295-07:00,1005.6807250976562,10.924759,10924.759 +2101,2025-06-10T06:22:16.626567-07:00,1005.6773681640625,10.922272,10922.272 +2102,2025-06-10T06:22:27.558100-07:00,1005.6773681640625,10.931533,10931.533 +2103,2025-06-10T06:22:38.477474-07:00,1005.700439453125,10.919374,10919.374 +2104,2025-06-10T06:22:49.394550-07:00,1005.65625,10.917076,10917.076 +2105,2025-06-10T06:23:00.319104-07:00,1005.7037353515625,10.924554,10924.554 +2106,2025-06-10T06:23:11.247574-07:00,1005.67431640625,10.92847,10928.47 +2107,2025-06-10T06:23:22.174316-07:00,1005.667724609375,10.926742,10926.742 +2108,2025-06-10T06:23:33.104270-07:00,1005.680908203125,10.929954,10929.954 +2109,2025-06-10T06:23:44.016488-07:00,1005.7023315429688,10.912218,10912.218 +2110,2025-06-10T06:23:54.949224-07:00,1005.6875,10.932736,10932.736 +2111,2025-06-10T06:24:05.859090-07:00,1005.7089233398438,10.909866,10909.866 +2112,2025-06-10T06:24:16.789378-07:00,1005.6841430664062,10.930288,10930.288 +2113,2025-06-10T06:24:27.699717-07:00,1005.7138061523438,10.910339,10910.339 +2114,2025-06-10T06:24:38.623317-07:00,1005.7533569335938,10.9236,10923.6 +2115,2025-06-10T06:24:49.546620-07:00,1005.7418823242188,10.923303,10923.303 +2116,2025-06-10T06:25:00.477106-07:00,1005.7138061523438,10.930486,10930.486 +2117,2025-06-10T06:25:11.403299-07:00,1005.70556640625,10.926193,10926.193 +2118,2025-06-10T06:25:22.330286-07:00,1005.7599487304688,10.926987,10926.987 +2119,2025-06-10T06:25:33.254590-07:00,1005.7599487304688,10.924304,10924.304 +2120,2025-06-10T06:25:44.182868-07:00,1005.7893676757812,10.928278,10928.278 +2121,2025-06-10T06:25:55.118108-07:00,1005.8156127929688,10.93524,10935.24 +2122,2025-06-10T06:26:06.044478-07:00,1005.7731323242188,10.92637,10926.37 +2123,2025-06-10T06:26:16.970110-07:00,1005.802490234375,10.925632,10925.632 +2124,2025-06-10T06:26:27.904339-07:00,1005.8010864257812,10.934229,10934.229 +2125,2025-06-10T06:26:38.831091-07:00,1005.83544921875,10.926752,10926.752 +2126,2025-06-10T06:26:49.773017-07:00,1005.8192138671875,10.941926,10941.926 +2127,2025-06-10T06:27:00.699115-07:00,1005.8551635742188,10.926098,10926.098 +2128,2025-06-10T06:27:11.625570-07:00,1005.8142700195312,10.926455,10926.455 +2129,2025-06-10T06:27:22.555163-07:00,1005.8275146484375,10.929593,10929.593 +2130,2025-06-10T06:27:33.481366-07:00,1005.8340454101562,10.926203,10926.203 +2131,2025-06-10T06:27:44.409887-07:00,1005.8521728515625,10.928521,10928.521 +2132,2025-06-10T06:27:55.338496-07:00,1005.8551635742188,10.928609,10928.609 +2133,2025-06-10T06:28:06.266821-07:00,1005.8699951171875,10.928325,10928.325 +2134,2025-06-10T06:28:17.200350-07:00,1005.8485717773438,10.933529,10933.529 +2135,2025-06-10T06:28:28.130088-07:00,1005.8699951171875,10.929738,10929.738 +2136,2025-06-10T06:28:39.063350-07:00,1005.8616943359375,10.933262,10933.262 +2137,2025-06-10T06:28:49.992920-07:00,1005.8551635742188,10.92957,10929.57 +2138,2025-06-10T06:29:00.915247-07:00,1005.8604125976562,10.922327,10922.327 +2139,2025-06-10T06:29:11.831111-07:00,1005.88623046875,10.915864,10915.864 +2140,2025-06-10T06:29:22.824965-07:00,1005.8521728515625,10.993854,10993.854 +2141,2025-06-10T06:29:33.747597-07:00,1005.88671875,10.922632,10922.632 +2142,2025-06-10T06:29:44.666939-07:00,1005.8735961914062,10.919342,10919.342 +2143,2025-06-10T06:29:55.586942-07:00,1005.88671875,10.920003,10920.003 +2144,2025-06-10T06:30:06.515547-07:00,1005.881591796875,10.928605,10928.605 +2145,2025-06-10T06:30:17.434100-07:00,1005.8964233398438,10.918553,10918.553 +2146,2025-06-10T06:30:28.355922-07:00,1005.8831787109375,10.921822,10921.822 +2147,2025-06-10T06:30:39.280433-07:00,1005.8455200195312,10.924511,10924.511 +2148,2025-06-10T06:30:50.217935-07:00,1005.8616943359375,10.937502,10937.502 +2149,2025-06-10T06:31:01.143237-07:00,1005.874755859375,10.925302,10925.302 +2150,2025-06-10T06:31:12.065071-07:00,1005.8980712890625,10.921834,10921.834 +2151,2025-06-10T06:31:22.999512-07:00,1005.881591796875,10.934441,10934.441 +2152,2025-06-10T06:31:33.929198-07:00,1005.881591796875,10.929686,10929.686 +2153,2025-06-10T06:31:44.856981-07:00,1005.8831787109375,10.927783,10927.783 +2154,2025-06-10T06:31:55.780267-07:00,1005.881591796875,10.923286,10923.286 +2155,2025-06-10T06:32:06.708991-07:00,1005.8683471679688,10.928724,10928.724 +2156,2025-06-10T06:32:17.624966-07:00,1005.8670043945312,10.915975,10915.975 +2157,2025-06-10T06:32:28.543813-07:00,1005.8898315429688,10.918847,10918.847 +2158,2025-06-10T06:32:39.464933-07:00,1005.881591796875,10.92112,10921.12 +2159,2025-06-10T06:32:50.383932-07:00,1005.8898315429688,10.918999,10918.999 +2160,2025-06-10T06:33:01.311284-07:00,1005.8634643554688,10.927352,10927.352 +2161,2025-06-10T06:33:12.225945-07:00,1005.9012451171875,10.914661,10914.661 +2162,2025-06-10T06:33:23.159935-07:00,1005.8881225585938,10.93399,10933.99 +2163,2025-06-10T06:33:34.080209-07:00,1005.893310546875,10.920274,10920.274 +2164,2025-06-10T06:33:45.014053-07:00,1005.8587646484375,10.933844,10933.844 +2165,2025-06-10T06:33:55.938270-07:00,1005.8718872070312,10.924217,10924.217 +2166,2025-06-10T06:34:06.865205-07:00,1005.9029541015625,10.926935,10926.935 +2167,2025-06-10T06:34:17.799809-07:00,1005.9112548828125,10.934604,10934.604 +2168,2025-06-10T06:34:28.721161-07:00,1005.8947143554688,10.921352,10921.352 +2169,2025-06-10T06:34:39.651930-07:00,1005.9078369140625,10.930769,10930.769 +2170,2025-06-10T06:34:50.585542-07:00,1005.8947143554688,10.933612,10933.612 +2171,2025-06-10T06:35:01.510230-07:00,1005.9210815429688,10.924688,10924.688 +2172,2025-06-10T06:35:12.435494-07:00,1005.88671875,10.925264,10925.264 +2173,2025-06-10T06:35:23.359937-07:00,1005.881591796875,10.924443,10924.443 +2174,2025-06-10T06:35:34.295585-07:00,1005.8604125976562,10.935648,10935.648 +2175,2025-06-10T06:35:45.228944-07:00,1005.9012451171875,10.933359,10933.359 +2176,2025-06-10T06:35:56.157407-07:00,1005.8683471679688,10.928463,10928.463 +2177,2025-06-10T06:36:07.086056-07:00,1005.881591796875,10.928649,10928.649 +2178,2025-06-10T06:36:18.009202-07:00,1005.8964233398438,10.923146,10923.146 +2179,2025-06-10T06:36:28.940924-07:00,1005.8831787109375,10.931722,10931.722 +2180,2025-06-10T06:36:39.876977-07:00,1005.8980712890625,10.936053,10936.053 +2181,2025-06-10T06:36:50.807008-07:00,1005.8683471679688,10.930031,10930.031 +2182,2025-06-10T06:37:01.728177-07:00,1005.8699951171875,10.921169,10921.169 +2183,2025-06-10T06:37:12.662951-07:00,1005.8585815429688,10.934774,10934.774 +2184,2025-06-10T06:37:23.586187-07:00,1005.8209228515625,10.923236,10923.236 +2185,2025-06-10T06:37:34.520459-07:00,1005.8519287109375,10.934272,10934.272 +2186,2025-06-10T06:37:45.444191-07:00,1005.8485717773438,10.923732,10923.732 +2187,2025-06-10T06:37:56.371985-07:00,1005.8585815429688,10.927794,10927.794 +2188,2025-06-10T06:38:07.294314-07:00,1005.881591796875,10.922329,10922.329 +2189,2025-06-10T06:38:18.228943-07:00,1005.8436889648438,10.934629,10934.629 +2190,2025-06-10T06:38:29.153205-07:00,1005.8683471679688,10.924262,10924.262 +2191,2025-06-10T06:38:40.073938-07:00,1005.8634643554688,10.920733,10920.733 +2192,2025-06-10T06:38:51.003100-07:00,1005.8634643554688,10.929162,10929.162 +2193,2025-06-10T06:39:01.931085-07:00,1005.906005859375,10.927985,10927.985 +2194,2025-06-10T06:39:12.859201-07:00,1005.8585815429688,10.928116,10928.116 +2195,2025-06-10T06:39:23.783070-07:00,1005.8406372070312,10.923869,10923.869 +2196,2025-06-10T06:39:34.705944-07:00,1005.8699951171875,10.922874,10922.874 +2197,2025-06-10T06:39:45.634235-07:00,1005.8731079101562,10.928291,10928.291 +2198,2025-06-10T06:39:56.558335-07:00,1005.8585815429688,10.9241,10924.1 +2199,2025-06-10T06:40:07.486920-07:00,1005.8848266601562,10.928585,10928.585 +2200,2025-06-10T06:40:18.415205-07:00,1005.8551635742188,10.928285,10928.285 +2201,2025-06-10T06:40:29.348157-07:00,1005.8406372070312,10.932952,10932.952 +2202,2025-06-10T06:40:40.278290-07:00,1005.8521728515625,10.930133,10930.133 +2203,2025-06-10T06:40:51.200930-07:00,1005.8735961914062,10.92264,10922.64 +2204,2025-06-10T06:41:02.128983-07:00,1005.850341796875,10.928053,10928.053 +2205,2025-06-10T06:41:13.056213-07:00,1005.8765869140625,10.92723,10927.23 +2206,2025-06-10T06:41:23.987969-07:00,1005.8831787109375,10.931756,10931.756 +2207,2025-06-10T06:41:34.915613-07:00,1005.8587646484375,10.927644,10927.644 +2208,2025-06-10T06:41:45.849947-07:00,1005.8881225585938,10.934334,10934.334 +2209,2025-06-10T06:41:56.780974-07:00,1005.8964233398438,10.931027,10931.027 +2210,2025-06-10T06:42:07.698927-07:00,1005.893310546875,10.917953,10917.953 +2211,2025-06-10T06:42:18.632699-07:00,1005.880126953125,10.933772,10933.772 +2212,2025-06-10T06:42:29.551922-07:00,1005.8652954101562,10.919223,10919.223 +2213,2025-06-10T06:42:40.485980-07:00,1005.9065551757812,10.934058,10934.058 +2214,2025-06-10T06:42:51.410235-07:00,1005.9065551757812,10.924255,10924.255 +2215,2025-06-10T06:43:02.326062-07:00,1005.91796875,10.915827,10915.827 +2216,2025-06-10T06:43:13.247939-07:00,1005.95263671875,10.921877,10921.877 +2217,2025-06-10T06:43:24.167225-07:00,1005.9048461914062,10.919286,10919.286 +2218,2025-06-10T06:43:35.089058-07:00,1005.9131469726562,10.921833,10921.833 +2219,2025-06-10T06:43:46.006944-07:00,1005.924560546875,10.917886,10917.886 +2220,2025-06-10T06:43:56.929398-07:00,1005.9048461914062,10.922454,10922.454 +2221,2025-06-10T06:44:07.861930-07:00,1005.9229125976562,10.932532,10932.532 +2222,2025-06-10T06:44:18.782127-07:00,1005.8948364257812,10.920197,10920.197 +2223,2025-06-10T06:44:29.713993-07:00,1005.8883056640625,10.931866,10931.866 +2224,2025-06-10T06:44:40.642368-07:00,1005.95263671875,10.928375,10928.375 +2225,2025-06-10T06:44:51.561925-07:00,1005.8883056640625,10.919557,10919.557 +2226,2025-06-10T06:45:02.487978-07:00,1005.90966796875,10.926053,10926.053 +2227,2025-06-10T06:45:13.419087-07:00,1005.9146728515625,10.931109,10931.109 +2228,2025-06-10T06:45:24.346306-07:00,1005.937744140625,10.927219,10927.219 +2229,2025-06-10T06:45:35.264185-07:00,1005.9229125976562,10.917879,10917.879 +2230,2025-06-10T06:45:46.187980-07:00,1005.9014282226562,10.923795,10923.795 +2231,2025-06-10T06:45:57.121190-07:00,1005.9014282226562,10.93321,10933.21 +2232,2025-06-10T06:46:08.036922-07:00,1005.93115234375,10.915732,10915.732 +2233,2025-06-10T06:46:18.970248-07:00,1005.9343872070312,10.933326,10933.326 +2234,2025-06-10T06:46:29.897947-07:00,1005.9014282226562,10.927699,10927.699 +2235,2025-06-10T06:46:40.821947-07:00,1005.9330444335938,10.924,10924.0 +2236,2025-06-10T06:46:51.757946-07:00,1005.9212646484375,10.935999,10935.999 +2237,2025-06-10T06:47:02.697492-07:00,1005.9343872070312,10.939546,10939.546 +2238,2025-06-10T06:47:13.624175-07:00,1005.9031372070312,10.926683,10926.683 +2239,2025-06-10T06:47:24.540947-07:00,1005.905029296875,10.916772,10916.772 +2240,2025-06-10T06:47:35.464199-07:00,1005.96240234375,10.923252,10923.252 +2241,2025-06-10T06:47:46.386216-07:00,1005.9198608398438,10.922017,10922.017 +2242,2025-06-10T06:47:57.310169-07:00,1005.9277954101562,10.923953,10923.953 +2243,2025-06-10T06:48:08.235239-07:00,1005.88525390625,10.92507,10925.07 +2244,2025-06-10T06:48:19.157947-07:00,1005.9115600585938,10.922708,10922.708 +2245,2025-06-10T06:48:30.086381-07:00,1005.9132690429688,10.928434,10928.434 +2246,2025-06-10T06:48:41.014946-07:00,1005.9132690429688,10.928565,10928.565 +2247,2025-06-10T06:48:51.932937-07:00,1005.9396362304688,10.917991,10917.991 +2248,2025-06-10T06:49:02.866496-07:00,1005.89013671875,10.933559,10933.559 +2249,2025-06-10T06:49:13.787209-07:00,1005.9181518554688,10.920713,10920.713 +2250,2025-06-10T06:49:24.717079-07:00,1005.909912109375,10.92987,10929.87 +2251,2025-06-10T06:49:35.640591-07:00,1005.9115600585938,10.923512,10923.512 +2252,2025-06-10T06:49:46.568103-07:00,1005.9247436523438,10.927512,10927.512 +2253,2025-06-10T06:49:57.484974-07:00,1005.923095703125,10.916871,10916.871 +2254,2025-06-10T06:50:08.414947-07:00,1005.9247436523438,10.929973,10929.973 +2255,2025-06-10T06:50:19.325945-07:00,1005.9462280273438,10.910998,10910.998 +2256,2025-06-10T06:50:30.256485-07:00,1005.9528198242188,10.93054,10930.54 +2257,2025-06-10T06:50:41.178399-07:00,1005.909912109375,10.921914,10921.914 +2258,2025-06-10T06:50:52.105935-07:00,1005.909912109375,10.927536,10927.536 +2259,2025-06-10T06:51:03.022211-07:00,1005.9330444335938,10.916276,10916.276 +2260,2025-06-10T06:51:13.951533-07:00,1005.9181518554688,10.929322,10929.322 +2261,2025-06-10T06:51:24.868922-07:00,1005.88525390625,10.917389,10917.389 +2262,2025-06-10T06:51:35.792971-07:00,1005.9115600585938,10.924049,10924.049 +2263,2025-06-10T06:51:46.727075-07:00,1005.9263916015625,10.934104,10934.104 +2264,2025-06-10T06:51:57.647936-07:00,1005.9181518554688,10.920861,10920.861 +2265,2025-06-10T06:52:08.574302-07:00,1005.905029296875,10.926366,10926.366 +2266,2025-06-10T06:52:19.501939-07:00,1005.9181518554688,10.927637,10927.637 +2267,2025-06-10T06:52:30.430565-07:00,1005.896728515625,10.928626,10928.626 +2268,2025-06-10T06:52:41.358405-07:00,1005.91650390625,10.92784,10927.84 +2269,2025-06-10T06:52:52.287022-07:00,1005.9343872070312,10.928617,10928.617 +2270,2025-06-10T06:53:03.210349-07:00,1005.9263916015625,10.923327,10923.327 +2271,2025-06-10T06:53:14.128091-07:00,1005.9132690429688,10.917742,10917.742 +2272,2025-06-10T06:53:25.055132-07:00,1005.90673828125,10.927041,10927.041 +2273,2025-06-10T06:53:35.979927-07:00,1005.89013671875,10.924795,10924.795 +2274,2025-06-10T06:53:46.904945-07:00,1005.9115600585938,10.925018,10925.018 +2275,2025-06-10T06:53:57.835225-07:00,1005.9032592773438,10.93028,10930.28 +2276,2025-06-10T06:54:08.757939-07:00,1005.9019775390625,10.922714,10922.714 +2277,2025-06-10T06:54:19.692967-07:00,1005.8836059570312,10.935028,10935.028 +2278,2025-06-10T06:54:30.625941-07:00,1005.9247436523438,10.932974,10932.974 +2279,2025-06-10T06:54:41.548247-07:00,1005.8984375,10.922306,10922.306 +2280,2025-06-10T06:54:52.477937-07:00,1005.8887329101562,10.92969,10929.69 +2281,2025-06-10T06:55:03.404945-07:00,1005.8756103515625,10.927008,10927.008 +2282,2025-06-10T06:55:14.329199-07:00,1005.8936767578125,10.924254,10924.254 +2283,2025-06-10T06:55:25.257930-07:00,1005.8804931640625,10.928731,10928.731 +2284,2025-06-10T06:55:36.186302-07:00,1005.8822021484375,10.928372,10928.372 +2285,2025-06-10T06:55:47.106388-07:00,1005.9085693359375,10.920086,10920.086 +2286,2025-06-10T06:55:58.038348-07:00,1005.909912109375,10.93196,10931.96 +2287,2025-06-10T06:56:08.967384-07:00,1005.9396362304688,10.929036,10929.036 +2288,2025-06-10T06:56:19.885110-07:00,1005.91650390625,10.917726,10917.726 +2289,2025-06-10T06:56:30.813481-07:00,1005.923095703125,10.928371,10928.371 +2290,2025-06-10T06:56:41.745197-07:00,1005.9414672851562,10.931716,10931.716 +2291,2025-06-10T06:56:52.667193-07:00,1005.9593505859375,10.921996,10921.996 +2292,2025-06-10T06:57:03.596214-07:00,1005.93798828125,10.929021,10929.021 +2293,2025-06-10T06:57:14.520942-07:00,1005.9528198242188,10.924728,10924.728 +2294,2025-06-10T06:57:25.461304-07:00,1005.923095703125,10.940362,10940.362 +2295,2025-06-10T06:57:36.390943-07:00,1005.9282836914062,10.929639,10929.639 +2296,2025-06-10T06:57:47.318195-07:00,1005.9445190429688,10.927252,10927.252 +2297,2025-06-10T06:57:58.248099-07:00,1005.9445190429688,10.929904,10929.904 +2298,2025-06-10T06:58:09.170984-07:00,1005.9576416015625,10.922885,10922.885 +2299,2025-06-10T06:58:20.104942-07:00,1005.96923828125,10.933958,10933.958 +2300,2025-06-10T06:58:31.033644-07:00,1005.9906005859375,10.928702,10928.702 +2301,2025-06-10T06:58:41.969219-07:00,1005.9774780273438,10.935575,10935.575 +2302,2025-06-10T06:58:52.901053-07:00,1006.0054931640625,10.931834,10931.834 +2303,2025-06-10T06:59:03.826091-07:00,1006.02001953125,10.925038,10925.038 +2304,2025-06-10T06:59:14.757105-07:00,1006.000244140625,10.931014,10931.014 +2305,2025-06-10T06:59:25.681298-07:00,1005.9989013671875,10.924193,10924.193 +2306,2025-06-10T06:59:36.616157-07:00,1006.02001953125,10.934859,10934.859 +2307,2025-06-10T06:59:47.543168-07:00,1006.013427734375,10.927011,10927.011 +2308,2025-06-10T06:59:58.468982-07:00,1006.013427734375,10.925814,10925.814 +2309,2025-06-10T07:00:09.389930-07:00,1006.0252075195312,10.920948,10920.948 +2310,2025-06-10T07:00:20.318936-07:00,1006.0265502929688,10.929006,10929.006 +2311,2025-06-10T07:00:31.243947-07:00,1006.0233764648438,10.925011,10925.011 +2312,2025-06-10T07:00:42.170221-07:00,1006.0431518554688,10.926274,10926.274 +2313,2025-06-10T07:00:53.090996-07:00,1006.0546264648438,10.920775,10920.775 +2314,2025-06-10T07:01:04.015228-07:00,1006.0449829101562,10.924232,10924.232 +2315,2025-06-10T07:01:14.943358-07:00,1006.0726318359375,10.92813,10928.13 +2316,2025-06-10T07:01:25.875946-07:00,1006.0480346679688,10.932588,10932.588 +2317,2025-06-10T07:01:36.811945-07:00,1006.039794921875,10.935999,10935.999 +2318,2025-06-10T07:01:47.747411-07:00,1006.0695190429688,10.935466,10935.466 +2319,2025-06-10T07:01:58.680169-07:00,1006.052978515625,10.932758,10932.758 +2320,2025-06-10T07:02:09.611199-07:00,1006.04638671875,10.93103,10931.03 +2321,2025-06-10T07:02:20.530181-07:00,1006.052978515625,10.918982,10918.982 +2322,2025-06-10T07:02:31.462231-07:00,1006.0826416015625,10.93205,10932.05 +2323,2025-06-10T07:02:42.391774-07:00,1006.0678100585938,10.929543,10929.543 +2324,2025-06-10T07:02:53.313945-07:00,1006.0546264648438,10.922171,10922.171 +2325,2025-06-10T07:03:04.247091-07:00,1006.0777587890625,10.933146,10933.146 +2326,2025-06-10T07:03:15.171324-07:00,1006.0562744140625,10.924233,10924.233 +2327,2025-06-10T07:03:26.098086-07:00,1006.0761108398438,10.926762,10926.762 +2328,2025-06-10T07:03:37.025183-07:00,1006.0695190429688,10.927097,10927.097 +2329,2025-06-10T07:03:47.952976-07:00,1006.0678100585938,10.927793,10927.793 +2330,2025-06-10T07:03:58.869944-07:00,1006.0595092773438,10.916968,10916.968 +2331,2025-06-10T07:04:09.800941-07:00,1006.0678100585938,10.930997,10930.997 +2332,2025-06-10T07:04:20.722938-07:00,1006.0431518554688,10.921997,10921.997 +2333,2025-06-10T07:04:31.659298-07:00,1006.04638671875,10.93636,10936.36 +2334,2025-06-10T07:04:42.581940-07:00,1006.0562744140625,10.922642,10922.642 +2335,2025-06-10T07:04:53.515217-07:00,1006.0331420898438,10.933277,10933.277 +2336,2025-06-10T07:05:04.451976-07:00,1006.0252075195312,10.936759,10936.759 +2337,2025-06-10T07:05:15.379564-07:00,1006.0515747070312,10.927588,10927.588 +2338,2025-06-10T07:05:26.305942-07:00,1006.039794921875,10.926378,10926.378 +2339,2025-06-10T07:05:37.241223-07:00,1006.0480346679688,10.935281,10935.281 +2340,2025-06-10T07:05:48.171942-07:00,1006.0546264648438,10.930719,10930.719 +2341,2025-06-10T07:05:59.110290-07:00,1006.061279296875,10.938348,10938.348 +2342,2025-06-10T07:06:10.042119-07:00,1006.0317993164062,10.931829,10931.829 +2343,2025-06-10T07:06:20.968233-07:00,1006.0384521484375,10.926114,10926.114 +2344,2025-06-10T07:06:31.896942-07:00,1006.061279296875,10.928709,10928.709 +2345,2025-06-10T07:06:42.831601-07:00,1006.0480346679688,10.934659,10934.659 +2346,2025-06-10T07:06:53.763094-07:00,1006.0365600585938,10.931493,10931.493 +2347,2025-06-10T07:07:04.692263-07:00,1006.0595092773438,10.929169,10929.169 +2348,2025-06-10T07:07:15.617945-07:00,1006.0726318359375,10.925682,10925.682 +2349,2025-06-10T07:07:26.554280-07:00,1006.0761108398438,10.936335,10936.335 +2350,2025-06-10T07:07:37.478920-07:00,1006.0744018554688,10.92464,10924.64 +2351,2025-06-10T07:07:48.406971-07:00,1006.0843505859375,10.928051,10928.051 +2352,2025-06-10T07:07:59.340925-07:00,1006.0726318359375,10.933954,10933.954 +2353,2025-06-10T07:08:10.269930-07:00,1006.110595703125,10.929005,10929.005 +2354,2025-06-10T07:08:21.190531-07:00,1006.0990600585938,10.920601,10920.601 +2355,2025-06-10T07:08:32.126941-07:00,1006.0843505859375,10.93641,10936.41 +2356,2025-06-10T07:08:43.054661-07:00,1006.061279296875,10.92772,10927.72 +2357,2025-06-10T07:08:53.976930-07:00,1006.061279296875,10.922269,10922.269 +2358,2025-06-10T07:09:04.912504-07:00,1006.1090087890625,10.935574,10935.574 +2359,2025-06-10T07:09:15.835936-07:00,1006.0892333984375,10.923432,10923.432 +2360,2025-06-10T07:09:26.769752-07:00,1006.0941162109375,10.933816,10933.816 +2361,2025-06-10T07:09:37.697926-07:00,1006.1156005859375,10.928174,10928.174 +2362,2025-06-10T07:09:48.625984-07:00,1006.0892333984375,10.928058,10928.058 +2363,2025-06-10T07:09:59.557175-07:00,1006.0826416015625,10.931191,10931.191 +2364,2025-06-10T07:10:10.473945-07:00,1006.1156005859375,10.91677,10916.77 +2365,2025-06-10T07:10:21.401030-07:00,1006.0843505859375,10.927085,10927.085 +2366,2025-06-10T07:10:32.334949-07:00,1006.1040649414062,10.933919,10933.919 +2367,2025-06-10T07:10:43.258933-07:00,1006.0941162109375,10.923984,10923.984 +2368,2025-06-10T07:10:54.193949-07:00,1006.0957641601562,10.935016,10935.016 +2369,2025-06-10T07:11:05.118939-07:00,1006.0744018554688,10.92499,10924.99 +2370,2025-06-10T07:11:16.055953-07:00,1006.1317749023438,10.937014,10937.014 +2371,2025-06-10T07:11:26.983942-07:00,1006.0974731445312,10.927989,10927.989 +2372,2025-06-10T07:11:37.902191-07:00,1006.0957641601562,10.918249,10918.249 +2373,2025-06-10T07:11:48.832167-07:00,1006.1040649414062,10.929976,10929.976 +2374,2025-06-10T07:11:59.742964-07:00,1006.0974731445312,10.910797,10910.797 +2375,2025-06-10T07:12:10.674494-07:00,1006.1024169921875,10.93153,10931.53 +2376,2025-06-10T07:12:21.604342-07:00,1006.138427734375,10.929848,10929.848 +2377,2025-06-10T07:12:32.532512-07:00,1006.0974731445312,10.92817,10928.17 +2378,2025-06-10T07:12:43.449982-07:00,1006.1549072265625,10.91747,10917.47 +2379,2025-06-10T07:12:54.375941-07:00,1006.1334228515625,10.925959,10925.959 +2380,2025-06-10T07:13:05.302068-07:00,1006.1238403320312,10.926127,10926.127 +2381,2025-06-10T07:13:16.238954-07:00,1006.1370239257812,10.936886,10936.886 +2382,2025-06-10T07:13:27.174945-07:00,1006.1812744140625,10.935991,10935.991 +2383,2025-06-10T07:13:38.105488-07:00,1006.1436157226562,10.930543,10930.543 +2384,2025-06-10T07:13:49.026640-07:00,1006.1238403320312,10.921152,10921.152 +2385,2025-06-10T07:13:59.961928-07:00,1006.1436157226562,10.935288,10935.288 +2386,2025-06-10T07:14:10.884667-07:00,1006.1221923828125,10.922739,10922.739 +2387,2025-06-10T07:14:21.813188-07:00,1006.15673828125,10.928521,10928.521 +2388,2025-06-10T07:14:32.734920-07:00,1006.1353149414062,10.921732,10921.732 +2389,2025-06-10T07:14:43.659488-07:00,1006.1663818359375,10.924568,10924.568 +2390,2025-06-10T07:14:54.582945-07:00,1006.1436157226562,10.923457,10923.457 +2391,2025-06-10T07:15:05.506101-07:00,1006.1204833984375,10.923156,10923.156 +2392,2025-06-10T07:15:16.438975-07:00,1006.1682739257812,10.932874,10932.874 +2393,2025-06-10T07:15:27.352948-07:00,1006.141845703125,10.913973,10913.973 +2394,2025-06-10T07:15:38.277943-07:00,1006.15673828125,10.924995,10924.995 +2395,2025-06-10T07:15:49.207945-07:00,1006.1468505859375,10.930002,10930.002 +2396,2025-06-10T07:16:00.129374-07:00,1006.1336059570312,10.921429,10921.429 +2397,2025-06-10T07:16:11.055504-07:00,1006.1270141601562,10.92613,10926.13 +2398,2025-06-10T07:16:21.977101-07:00,1006.1402587890625,10.921597,10921.597 +2399,2025-06-10T07:16:32.909272-07:00,1006.1402587890625,10.932171,10932.171 +2400,2025-06-10T07:16:43.826905-07:00,1006.1187744140625,10.917633,10917.633 +2401,2025-06-10T07:16:54.759099-07:00,1006.1353149414062,10.932194,10932.194 +2402,2025-06-10T07:17:05.678232-07:00,1006.1187744140625,10.919133,10919.133 +2403,2025-06-10T07:17:16.607256-07:00,1006.1204833984375,10.929024,10929.024 +2404,2025-06-10T07:17:27.529428-07:00,1006.1270141601562,10.922172,10922.172 +2405,2025-06-10T07:17:38.454320-07:00,1006.0858764648438,10.924892,10924.892 +2406,2025-06-10T07:17:49.371288-07:00,1006.1056518554688,10.916968,10916.968 +2407,2025-06-10T07:18:00.294918-07:00,1006.0990600585938,10.92363,10923.63 +2408,2025-06-10T07:18:11.217352-07:00,1006.091064453125,10.922434,10922.434 +2409,2025-06-10T07:18:22.140337-07:00,1006.091064453125,10.922985,10922.985 +2410,2025-06-10T07:18:33.067122-07:00,1006.0630493164062,10.926785,10926.785 +2411,2025-06-10T07:18:43.985090-07:00,1006.0697021484375,10.917968,10917.968 +2412,2025-06-10T07:18:54.919931-07:00,1006.0858764648438,10.934841,10934.841 +2413,2025-06-10T07:19:05.846158-07:00,1006.0762329101562,10.926227,10926.227 +2414,2025-06-10T07:19:16.766227-07:00,1006.0762329101562,10.920069,10920.069 +2415,2025-06-10T07:19:27.699429-07:00,1006.0762329101562,10.933202,10933.202 +2416,2025-06-10T07:19:38.633391-07:00,1006.0630493164062,10.933962,10933.962 +2417,2025-06-10T07:19:49.568183-07:00,1006.0548706054688,10.934792,10934.792 +2418,2025-06-10T07:20:00.491288-07:00,1006.0630493164062,10.923105,10923.105 +2419,2025-06-10T07:20:11.425085-07:00,1006.0416259765625,10.933797,10933.797 +2420,2025-06-10T07:20:22.347831-07:00,1006.0697021484375,10.922746,10922.746 +2421,2025-06-10T07:20:33.268948-07:00,1006.0284423828125,10.921117,10921.117 +2422,2025-06-10T07:20:44.192937-07:00,1006.0515747070312,10.923989,10923.989 +2423,2025-06-10T07:20:55.122762-07:00,1006.0007934570312,10.929825,10929.825 +2424,2025-06-10T07:21:06.050205-07:00,1006.0270385742188,10.927443,10927.443 +2425,2025-06-10T07:21:16.974126-07:00,1006.0367431640625,10.923921,10923.921 +2426,2025-06-10T07:21:27.897300-07:00,1006.0498657226562,10.923174,10923.174 +2427,2025-06-10T07:21:38.817936-07:00,1006.0515747070312,10.920636,10920.636 +2428,2025-06-10T07:21:49.742083-07:00,1006.0021362304688,10.924147,10924.147 +2429,2025-06-10T07:22:00.666515-07:00,1006.0432739257812,10.924432,10924.432 +2430,2025-06-10T07:22:11.586942-07:00,1006.0367431640625,10.920427,10920.427 +2431,2025-06-10T07:22:22.514660-07:00,1006.0432739257812,10.927718,10927.718 +2432,2025-06-10T07:22:33.428520-07:00,1006.0284423828125,10.91386,10913.86 +2433,2025-06-10T07:22:44.355945-07:00,1006.053466796875,10.927425,10927.425 +2434,2025-06-10T07:22:55.275181-07:00,1006.0432739257812,10.919236,10919.236 +2435,2025-06-10T07:23:06.203298-07:00,1006.0301513671875,10.928117,10928.117 +2436,2025-06-10T07:23:17.124633-07:00,1006.0745239257812,10.921335,10921.335 +2437,2025-06-10T07:23:28.036939-07:00,1006.0432739257812,10.912306,10912.306 +2438,2025-06-10T07:23:38.955942-07:00,1006.0432739257812,10.919003,10919.003 +2439,2025-06-10T07:23:49.877935-07:00,1006.0252075195312,10.921993,10921.993 +2440,2025-06-10T07:24:00.798940-07:00,1006.0498657226562,10.921005,10921.005 +2441,2025-06-10T07:24:11.728657-07:00,1006.0630493164062,10.929717,10929.717 +2442,2025-06-10T07:24:22.655209-07:00,1006.0270385742188,10.926552,10926.552 +2443,2025-06-10T07:24:33.582926-07:00,1006.01220703125,10.927717,10927.717 +2444,2025-06-10T07:24:44.517949-07:00,1006.0153198242188,10.935023,10935.023 +2445,2025-06-10T07:24:55.436942-07:00,1006.0349731445312,10.918993,10918.993 +2446,2025-06-10T07:25:06.371987-07:00,1006.0153198242188,10.935045,10935.045 +2447,2025-06-10T07:25:17.295940-07:00,1006.005615234375,10.923953,10923.953 +2448,2025-06-10T07:25:28.220912-07:00,1006.0218505859375,10.924972,10924.972 +2449,2025-06-10T07:25:39.146940-07:00,1006.01220703125,10.926028,10926.028 +2450,2025-06-10T07:25:50.067931-07:00,1006.03369140625,10.920991,10920.991 +2451,2025-06-10T07:26:00.980161-07:00,1006.040283203125,10.91223,10912.23 +2452,2025-06-10T07:26:11.903311-07:00,1006.025390625,10.92315,10923.15 +2453,2025-06-10T07:26:22.837176-07:00,1005.997314453125,10.933865,10933.865 +2454,2025-06-10T07:26:33.758723-07:00,1006.0303344726562,10.921547,10921.547 +2455,2025-06-10T07:26:44.688944-07:00,1006.013916015625,10.930221,10930.221 +2456,2025-06-10T07:26:55.628285-07:00,1006.0270385742188,10.939341,10939.341 +2457,2025-06-10T07:27:06.550132-07:00,1006.01220703125,10.921847,10921.847 +2458,2025-06-10T07:27:17.479928-07:00,1006.03369140625,10.929796,10929.796 +2459,2025-06-10T07:27:28.410100-07:00,1006.0105590820312,10.930172,10930.172 +2460,2025-06-10T07:27:39.341994-07:00,1006.025390625,10.931894,10931.894 +2461,2025-06-10T07:27:50.270455-07:00,1006.018798828125,10.928461,10928.461 +2462,2025-06-10T07:28:01.200945-07:00,1006.0416259765625,10.93049,10930.49 +2463,2025-06-10T07:28:12.129142-07:00,1006.0320434570312,10.928197,10928.197 +2464,2025-06-10T07:28:23.061994-07:00,1006.045166015625,10.932852,10932.852 +2465,2025-06-10T07:28:33.986425-07:00,1006.036865234375,10.924431,10924.431 +2466,2025-06-10T07:28:44.916040-07:00,1006.0237426757812,10.929615,10929.615 +2467,2025-06-10T07:28:55.844213-07:00,1006.025390625,10.928173,10928.173 +2468,2025-06-10T07:29:06.772260-07:00,1006.0320434570312,10.928047,10928.047 +2469,2025-06-10T07:29:17.693932-07:00,1006.0303344726562,10.921672,10921.672 +2470,2025-06-10T07:29:28.606479-07:00,1006.0092163085938,10.912547,10912.547 +2471,2025-06-10T07:29:39.528836-07:00,1006.06494140625,10.922357,10922.357 +2472,2025-06-10T07:29:50.458212-07:00,1006.025390625,10.929376,10929.376 +2473,2025-06-10T07:30:01.386955-07:00,1006.03369140625,10.928743,10928.743 +2474,2025-06-10T07:30:12.321981-07:00,1006.0349731445312,10.935026,10935.026 +2475,2025-06-10T07:30:23.243836-07:00,1006.03369140625,10.921855,10921.855 +2476,2025-06-10T07:30:34.179815-07:00,1006.0204467773438,10.935979,10935.979 +2477,2025-06-10T07:30:45.103839-07:00,1006.046875,10.924024,10924.024 +2478,2025-06-10T07:30:56.029273-07:00,1006.0204467773438,10.925434,10925.434 +2479,2025-06-10T07:31:06.957161-07:00,1006.0204467773438,10.927888,10927.888 +2480,2025-06-10T07:31:17.884108-07:00,1006.0614013671875,10.926947,10926.947 +2481,2025-06-10T07:31:28.809145-07:00,1006.046875,10.925037,10925.037 +2482,2025-06-10T07:31:39.731824-07:00,1006.0320434570312,10.922679,10922.679 +2483,2025-06-10T07:31:50.666224-07:00,1006.03369140625,10.9344,10934.4 +2484,2025-06-10T07:32:01.589884-07:00,1006.0204467773438,10.92366,10923.66 +2485,2025-06-10T07:32:12.521968-07:00,1006.00732421875,10.932084,10932.084 +2486,2025-06-10T07:32:23.451988-07:00,1005.9990844726562,10.93002,10930.02 +2487,2025-06-10T07:32:34.377827-07:00,1006.018798828125,10.925839,10925.839 +2488,2025-06-10T07:32:45.309090-07:00,1006.0237426757812,10.931263,10931.263 +2489,2025-06-10T07:32:56.238834-07:00,1006.0172119140625,10.929744,10929.744 +2490,2025-06-10T07:33:07.167290-07:00,1006.0303344726562,10.928456,10928.456 +2491,2025-06-10T07:33:18.094494-07:00,1005.9859619140625,10.927204,10927.204 +2492,2025-06-10T07:33:29.030055-07:00,1006.0105590820312,10.935561,10935.561 +2493,2025-06-10T07:33:39.951097-07:00,1006.0284423828125,10.921042,10921.042 +2494,2025-06-10T07:33:50.874830-07:00,1005.9877319335938,10.923733,10923.733 +2495,2025-06-10T07:34:01.809088-07:00,1006.025390625,10.934258,10934.258 +2496,2025-06-10T07:34:12.727834-07:00,1006.0105590820312,10.918746,10918.746 +2497,2025-06-10T07:34:23.661187-07:00,1006.0105590820312,10.933353,10933.353 +2498,2025-06-10T07:34:34.592820-07:00,1006.0140380859375,10.931633,10931.633 +2499,2025-06-10T07:34:45.518655-07:00,1005.99267578125,10.925835,10925.835 +2500,2025-06-10T07:34:56.441108-07:00,1006.00390625,10.922453,10922.453 +2501,2025-06-10T07:35:07.381623-07:00,1006.0105590820312,10.940515,10940.515 +2502,2025-06-10T07:35:18.313826-07:00,1006.0025634765625,10.932203,10932.203 +2503,2025-06-10T07:35:29.249119-07:00,1006.0172119140625,10.935293,10935.293 +2504,2025-06-10T07:35:40.171838-07:00,1006.0009155273438,10.922719,10922.719 +2505,2025-06-10T07:35:51.095815-07:00,1006.0223388671875,10.923977,10923.977 +2506,2025-06-10T07:36:02.028508-07:00,1006.0206298828125,10.932693,10932.693 +2507,2025-06-10T07:36:12.947398-07:00,1006.0421142578125,10.91889,10918.89 +2508,2025-06-10T07:36:23.886233-07:00,1006.0057983398438,10.938835,10938.835 +2509,2025-06-10T07:36:34.808068-07:00,1006.0289306640625,10.921835,10921.835 +2510,2025-06-10T07:36:45.732237-07:00,1006.0057983398438,10.924169,10924.169 +2511,2025-06-10T07:36:56.664980-07:00,1006.0206298828125,10.932743,10932.743 +2512,2025-06-10T07:37:07.593822-07:00,1006.0009155273438,10.928842,10928.842 +2513,2025-06-10T07:37:18.511134-07:00,1005.984375,10.917312,10917.312 +2514,2025-06-10T07:37:29.434818-07:00,1005.984375,10.923684,10923.684 +2515,2025-06-10T07:37:40.363836-07:00,1006.0223388671875,10.929018,10929.018 +2516,2025-06-10T07:37:51.287004-07:00,1006.0223388671875,10.923168,10923.168 +2517,2025-06-10T07:38:02.213280-07:00,1006.0289306640625,10.926276,10926.276 +2518,2025-06-10T07:38:13.141996-07:00,1006.0303344726562,10.928716,10928.716 +2519,2025-06-10T07:38:24.071810-07:00,1006.03857421875,10.929814,10929.814 +2520,2025-06-10T07:38:34.994039-07:00,1005.994384765625,10.922229,10922.229 +2521,2025-06-10T07:38:45.923910-07:00,1006.050048828125,10.929871,10929.871 +2522,2025-06-10T07:38:56.847828-07:00,1006.0105590820312,10.923918,10923.918 +2523,2025-06-10T07:39:07.772228-07:00,1006.0516967773438,10.9244,10924.4 +2524,2025-06-10T07:39:18.697078-07:00,1006.04345703125,10.92485,10924.85 +2525,2025-06-10T07:39:29.617813-07:00,1006.053466796875,10.920735,10920.735 +2526,2025-06-10T07:39:40.547344-07:00,1006.0223388671875,10.929531,10929.531 +2527,2025-06-10T07:39:51.472862-07:00,1006.0516967773438,10.925518,10925.518 +2528,2025-06-10T07:40:02.400795-07:00,1006.0354614257812,10.927933,10927.933 +2529,2025-06-10T07:40:13.324653-07:00,1006.050048828125,10.923858,10923.858 +2530,2025-06-10T07:40:24.248832-07:00,1006.0582885742188,10.924179,10924.179 +2531,2025-06-10T07:40:35.169991-07:00,1006.078125,10.921159,10921.159 +2532,2025-06-10T07:40:46.087983-07:00,1006.0516967773438,10.917992,10917.992 +2533,2025-06-10T07:40:57.011836-07:00,1006.084716796875,10.923853,10923.853 +2534,2025-06-10T07:41:07.932039-07:00,1006.06494140625,10.920203,10920.203 +2535,2025-06-10T07:41:18.860836-07:00,1006.078125,10.928797,10928.797 +2536,2025-06-10T07:41:29.779919-07:00,1006.0714721679688,10.919083,10919.083 +2537,2025-06-10T07:41:40.692103-07:00,1006.06982421875,10.912184,10912.184 +2538,2025-06-10T07:41:51.613990-07:00,1006.0816650390625,10.921887,10921.887 +2539,2025-06-10T07:42:02.540060-07:00,1006.0552978515625,10.92607,10926.07 +2540,2025-06-10T07:42:13.456972-07:00,1006.0895385742188,10.916912,10916.912 +2541,2025-06-10T07:42:24.381529-07:00,1006.0552978515625,10.924557,10924.557 +2542,2025-06-10T07:42:35.299596-07:00,1006.0829467773438,10.918067,10918.067 +2543,2025-06-10T07:42:46.227820-07:00,1006.0684204101562,10.928224,10928.224 +2544,2025-06-10T07:42:57.141998-07:00,1006.076416015625,10.914178,10914.178 +2545,2025-06-10T07:43:08.065305-07:00,1006.0684204101562,10.923307,10923.307 +2546,2025-06-10T07:43:18.989832-07:00,1006.0996704101562,10.924527,10924.527 +2547,2025-06-10T07:43:29.906817-07:00,1006.1224975585938,10.916985,10916.985 +2548,2025-06-10T07:43:40.837313-07:00,1006.09619140625,10.930496,10930.496 +2549,2025-06-10T07:43:51.757821-07:00,1006.0865478515625,10.920508,10920.508 +2550,2025-06-10T07:44:02.685195-07:00,1006.1013793945312,10.927374,10927.374 +2551,2025-06-10T07:44:13.617074-07:00,1006.109375,10.931879,10931.879 +2552,2025-06-10T07:44:24.533822-07:00,1006.0848388671875,10.916748,10916.748 +2553,2025-06-10T07:44:35.466922-07:00,1006.0881958007812,10.9331,10933.1 +2554,2025-06-10T07:44:46.387234-07:00,1006.1013793945312,10.920312,10920.312 +2555,2025-06-10T07:44:57.311823-07:00,1006.1013793945312,10.924589,10924.589 +2556,2025-06-10T07:45:08.241094-07:00,1006.0733642578125,10.929271,10929.271 +2557,2025-06-10T07:45:19.164863-07:00,1006.0700073242188,10.923769,10923.769 +2558,2025-06-10T07:45:30.093090-07:00,1006.1062622070312,10.928227,10928.227 +2559,2025-06-10T07:45:41.015070-07:00,1006.1260986328125,10.92198,10921.98 +2560,2025-06-10T07:45:51.937908-07:00,1006.1111450195312,10.922838,10922.838 +2561,2025-06-10T07:46:02.862489-07:00,1006.0979614257812,10.924581,10924.581 +2562,2025-06-10T07:46:13.787834-07:00,1006.08837890625,10.925345,10925.345 +2563,2025-06-10T07:46:24.714151-07:00,1006.0963134765625,10.926317,10926.317 +2564,2025-06-10T07:46:35.646843-07:00,1006.1177978515625,10.932692,10932.692 +2565,2025-06-10T07:46:46.571109-07:00,1006.108154296875,10.924266,10924.266 +2566,2025-06-10T07:46:57.488627-07:00,1006.1095581054688,10.917518,10917.518 +2567,2025-06-10T07:47:08.421553-07:00,1006.1309204101562,10.932926,10932.926 +2568,2025-06-10T07:47:19.344835-07:00,1006.08837890625,10.923282,10923.282 +2569,2025-06-10T07:47:30.267032-07:00,1006.099853515625,10.922197,10922.197 +2570,2025-06-10T07:47:41.198833-07:00,1006.108154296875,10.931801,10931.801 +2571,2025-06-10T07:47:52.131176-07:00,1006.0896606445312,10.932343,10932.343 +2572,2025-06-10T07:48:03.047828-07:00,1006.14111328125,10.916652,10916.652 +2573,2025-06-10T07:48:13.982957-07:00,1006.1423950195312,10.935129,10935.129 +2574,2025-06-10T07:48:24.905187-07:00,1006.1423950195312,10.92223,10922.23 +2575,2025-06-10T07:48:35.828065-07:00,1006.14404296875,10.922878,10922.878 +2576,2025-06-10T07:48:46.762865-07:00,1006.1160888671875,10.9348,10934.8 +2577,2025-06-10T07:48:57.685880-07:00,1006.1095581054688,10.923015,10923.015 +2578,2025-06-10T07:49:08.614319-07:00,1006.1111450195312,10.928439,10928.439 +2579,2025-06-10T07:49:19.535834-07:00,1006.094970703125,10.921515,10921.515 +2580,2025-06-10T07:49:30.471581-07:00,1006.1111450195312,10.935747,10935.747 +2581,2025-06-10T07:49:41.394312-07:00,1006.1177978515625,10.922731,10922.731 +2582,2025-06-10T07:49:52.313872-07:00,1006.1029663085938,10.91956,10919.56 +2583,2025-06-10T07:50:03.236998-07:00,1006.108154296875,10.923126,10923.126 +2584,2025-06-10T07:50:14.168258-07:00,1006.1243896484375,10.93126,10931.26 +2585,2025-06-10T07:50:25.085425-07:00,1006.1226806640625,10.917167,10917.167 +2586,2025-06-10T07:50:36.022070-07:00,1006.1029663085938,10.936645,10936.645 +2587,2025-06-10T07:50:46.941838-07:00,1006.0931396484375,10.919768,10919.768 +2588,2025-06-10T07:50:57.872823-07:00,1006.0914306640625,10.930985,10930.985 +2589,2025-06-10T07:51:08.799968-07:00,1006.12109375,10.927145,10927.145 +2590,2025-06-10T07:51:19.727994-07:00,1006.1062622070312,10.928026,10928.026 +2591,2025-06-10T07:51:30.657263-07:00,1006.0783081054688,10.929269,10929.269 +2592,2025-06-10T07:51:41.584836-07:00,1006.0931396484375,10.927573,10927.573 +2593,2025-06-10T07:51:52.509207-07:00,1006.0848388671875,10.924371,10924.371 +2594,2025-06-10T07:52:03.435431-07:00,1006.0798950195312,10.926224,10926.224 +2595,2025-06-10T07:52:14.362878-07:00,1006.1079711914062,10.927447,10927.447 +2596,2025-06-10T07:52:25.288836-07:00,1006.0650634765625,10.925958,10925.958 +2597,2025-06-10T07:52:36.211088-07:00,1006.0865478515625,10.922252,10922.252 +2598,2025-06-10T07:52:47.135834-07:00,1006.0798950195312,10.924746,10924.746 +2599,2025-06-10T07:52:58.060014-07:00,1006.0733642578125,10.92418,10924.18 +2600,2025-06-10T07:53:08.985828-07:00,1006.1079711914062,10.925814,10925.814 +2601,2025-06-10T07:53:19.913982-07:00,1006.0750122070312,10.928154,10928.154 +2602,2025-06-10T07:53:30.827082-07:00,1006.0618896484375,10.9131,10913.1 +2603,2025-06-10T07:53:41.753882-07:00,1006.0931396484375,10.9268,10926.8 +2604,2025-06-10T07:53:52.674764-07:00,1006.0816650390625,10.920882,10920.882 +2605,2025-06-10T07:54:03.600535-07:00,1006.0733642578125,10.925771,10925.771 +2606,2025-06-10T07:54:14.530837-07:00,1006.0750122070312,10.930302,10930.302 +2607,2025-06-10T07:54:14.943216-07:00,1006.06982421875,0.412379,412.379 +2608,2025-06-10T07:54:25.457189-07:00,1006.0881958007812,10.513973,10513.973 +2609,2025-06-10T07:54:36.379989-07:00,1006.09619140625,10.9228,10922.8 +2610,2025-06-10T07:54:47.313444-07:00,1006.09619140625,10.933455,10933.455 +2611,2025-06-10T07:54:58.233813-07:00,1006.06982421875,10.920369,10920.369 +2612,2025-06-10T07:55:09.159064-07:00,1006.076416015625,10.925251,10925.251 +2613,2025-06-10T07:55:20.092976-07:00,1006.0667114257812,10.933912,10933.912 +2614,2025-06-10T07:55:31.016979-07:00,1006.06982421875,10.924003,10924.003 +2615,2025-06-10T07:55:41.945168-07:00,1006.0582885742188,10.928189,10928.189 +2616,2025-06-10T07:55:52.871818-07:00,1006.0354614257812,10.92665,10926.65 +2617,2025-06-10T07:56:03.790828-07:00,1006.0618896484375,10.91901,10919.01 +2618,2025-06-10T07:56:14.725166-07:00,1006.050048828125,10.934338,10934.338 +2619,2025-06-10T07:56:25.648352-07:00,1006.0421142578125,10.923186,10923.186 +2620,2025-06-10T07:56:36.572422-07:00,1006.0829467773438,10.92407,10924.07 +2621,2025-06-10T07:56:47.499094-07:00,1006.056640625,10.926672,10926.672 +2622,2025-06-10T07:56:58.421574-07:00,1006.0338134765625,10.92248,10922.48 +2623,2025-06-10T07:57:09.351024-07:00,1006.050048828125,10.92945,10929.45 +2624,2025-06-10T07:57:20.281314-07:00,1006.0404663085938,10.93029,10930.29 +2625,2025-06-10T07:57:31.203782-07:00,1006.0750122070312,10.922468,10922.468 +2626,2025-06-10T07:57:42.127090-07:00,1006.0223388671875,10.923308,10923.308 +2627,2025-06-10T07:57:53.059072-07:00,1006.050048828125,10.931982,10931.982 +2628,2025-06-10T07:58:03.988322-07:00,1006.0237426757812,10.92925,10929.25 +2629,2025-06-10T07:58:14.915936-07:00,1006.03857421875,10.927614,10927.614 +2630,2025-06-10T07:58:25.845238-07:00,1006.045166015625,10.929302,10929.302 +2631,2025-06-10T07:58:36.774821-07:00,1006.03857421875,10.929583,10929.583 +2632,2025-06-10T07:58:47.703365-07:00,1006.0172119140625,10.928544,10928.544 +2633,2025-06-10T07:58:58.625834-07:00,1006.0105590820312,10.922469,10922.469 +2634,2025-06-10T07:59:09.553346-07:00,1006.0092163085938,10.927512,10927.512 +2635,2025-06-10T07:59:20.478200-07:00,1005.997314453125,10.924854,10924.854 +2636,2025-06-10T07:59:31.416828-07:00,1006.00390625,10.938628,10938.628 +2637,2025-06-10T07:59:42.344952-07:00,1006.0092163085938,10.928124,10928.124 +2638,2025-06-10T07:59:53.270828-07:00,1006.0009155273438,10.925876,10925.876 +2639,2025-06-10T08:00:04.198293-07:00,1006.0158081054688,10.927465,10927.465 +2640,2025-06-10T08:00:15.119993-07:00,1006.0237426757812,10.9217,10921.7 +2641,2025-06-10T08:00:26.053910-07:00,1006.0237426757812,10.933917,10933.917 +2642,2025-06-10T08:00:36.973899-07:00,1006.0172119140625,10.919989,10919.989 +2643,2025-06-10T08:00:47.898819-07:00,1006.0092163085938,10.92492,10924.92 +2644,2025-06-10T08:00:58.823981-07:00,1006.0092163085938,10.925162,10925.162 +2645,2025-06-10T08:01:09.758079-07:00,1006.0057983398438,10.934098,10934.098 +2646,2025-06-10T08:01:20.674821-07:00,1006.0140380859375,10.916742,10916.742 +2647,2025-06-10T08:01:31.603994-07:00,1006.0237426757812,10.929173,10929.173 +2648,2025-06-10T08:01:42.531829-07:00,1006.04345703125,10.927835,10927.835 +2649,2025-06-10T08:01:53.451067-07:00,1006.0404663085938,10.919238,10919.238 +2650,2025-06-10T08:02:04.378838-07:00,1006.056640625,10.927771,10927.771 +2651,2025-06-10T08:02:15.302815-07:00,1006.056640625,10.923977,10923.977 +2652,2025-06-10T08:02:26.220801-07:00,1006.0552978515625,10.917986,10917.986 +2653,2025-06-10T08:02:37.151813-07:00,1006.050048828125,10.931012,10931.012 +2654,2025-06-10T08:02:48.080872-07:00,1006.056640625,10.929059,10929.059 +2655,2025-06-10T08:02:59.001511-07:00,1006.0731811523438,10.920639,10920.639 +2656,2025-06-10T08:03:09.931837-07:00,1006.0667114257812,10.930326,10930.326 +2657,2025-06-10T08:03:20.861389-07:00,1006.0714721679688,10.929552,10929.552 +2658,2025-06-10T08:03:31.782078-07:00,1006.0667114257812,10.920689,10920.689 +2659,2025-06-10T08:03:42.711362-07:00,1006.0618896484375,10.929284,10929.284 +2660,2025-06-10T08:03:53.635882-07:00,1006.0618896484375,10.92452,10924.52 +2661,2025-06-10T08:04:04.562837-07:00,1006.056640625,10.926955,10926.955 +2662,2025-06-10T08:04:15.491098-07:00,1006.0487670898438,10.928261,10928.261 +2663,2025-06-10T08:04:26.419824-07:00,1006.0321655273438,10.928726,10928.726 +2664,2025-06-10T08:04:37.342787-07:00,1006.0452880859375,10.922963,10922.963 +2665,2025-06-10T08:04:48.261315-07:00,1006.0601806640625,10.918528,10918.528 +2666,2025-06-10T08:04:59.187836-07:00,1006.0667114257812,10.926521,10926.521 +2667,2025-06-10T08:05:10.111866-07:00,1006.0585327148438,10.92403,10924.03 +2668,2025-06-10T08:05:21.040924-07:00,1006.0914306640625,10.929058,10929.058 +2669,2025-06-10T08:05:31.967836-07:00,1006.0650634765625,10.926912,10926.912 +2670,2025-06-10T08:05:42.888422-07:00,1006.0914306640625,10.920586,10920.586 +2671,2025-06-10T08:05:53.820879-07:00,1006.1046142578125,10.932457,10932.457 +2672,2025-06-10T08:06:04.736859-07:00,1006.1111450195312,10.91598,10915.98 +2673,2025-06-10T08:06:15.662121-07:00,1006.0865478515625,10.925262,10925.262 +2674,2025-06-10T08:06:26.588962-07:00,1006.0979614257812,10.926841,10926.841 +2675,2025-06-10T08:06:37.523771-07:00,1006.0896606445312,10.934809,10934.809 +2676,2025-06-10T08:06:48.440884-07:00,1006.1177978515625,10.917113,10917.113 +2677,2025-06-10T08:06:59.375882-07:00,1006.08837890625,10.934998,10934.998 +2678,2025-06-10T08:07:10.302080-07:00,1006.1095581054688,10.926198,10926.198 +2679,2025-06-10T08:07:21.221210-07:00,1006.114501953125,10.91913,10919.13 +2680,2025-06-10T08:07:32.155164-07:00,1006.1095581054688,10.933954,10933.954 +2681,2025-06-10T08:07:43.074138-07:00,1006.0979614257812,10.918974,10918.974 +2682,2025-06-10T08:07:54.000834-07:00,1006.0831298828125,10.926696,10926.696 +2683,2025-06-10T08:08:04.929129-07:00,1006.1160888671875,10.928295,10928.295 +2684,2025-06-10T08:08:15.857835-07:00,1006.0963134765625,10.928706,10928.706 +2685,2025-06-10T08:08:26.783090-07:00,1006.1326293945312,10.925255,10925.255 +2686,2025-06-10T08:08:37.699042-07:00,1006.1111450195312,10.915952,10915.952 +2687,2025-06-10T08:08:48.634879-07:00,1006.1095581054688,10.935837,10935.837 +2688,2025-06-10T08:08:59.555352-07:00,1006.1309204101562,10.920473,10920.473 +2689,2025-06-10T08:09:10.482831-07:00,1006.11279296875,10.927479,10927.479 +2690,2025-06-10T08:09:21.405876-07:00,1006.108154296875,10.923045,10923.045 +2691,2025-06-10T08:09:32.331099-07:00,1006.1309204101562,10.925223,10925.223 +2692,2025-06-10T08:09:43.258994-07:00,1006.1015625,10.927895,10927.895 +2693,2025-06-10T08:09:54.189825-07:00,1006.1309204101562,10.930831,10930.831 +2694,2025-06-10T08:10:05.109834-07:00,1006.0979614257812,10.920009,10920.009 +2695,2025-06-10T08:10:16.037073-07:00,1006.1423950195312,10.927239,10927.239 +2696,2025-06-10T08:10:26.965838-07:00,1006.1111450195312,10.928765,10928.765 +2697,2025-06-10T08:10:37.886819-07:00,1006.1160888671875,10.920981,10920.981 +2698,2025-06-10T08:10:48.820458-07:00,1006.0963134765625,10.933639,10933.639 +2699,2025-06-10T08:10:59.737830-07:00,1006.1243896484375,10.917372,10917.372 +2700,2025-06-10T08:11:10.664080-07:00,1006.1046142578125,10.92625,10926.25 +2701,2025-06-10T08:11:21.588084-07:00,1006.1243896484375,10.924004,10924.004 +2702,2025-06-10T08:11:32.513838-07:00,1006.1194458007812,10.925754,10925.754 +2703,2025-06-10T08:11:43.439021-07:00,1006.1095581054688,10.925183,10925.183 +2704,2025-06-10T08:11:54.365003-07:00,1006.108154296875,10.925982,10925.982 +2705,2025-06-10T08:12:05.287044-07:00,1006.0896606445312,10.922041,10922.041 +2706,2025-06-10T08:12:16.219086-07:00,1006.0783081054688,10.932042,10932.042 +2707,2025-06-10T08:12:27.142844-07:00,1006.0488891601562,10.923758,10923.758 +2708,2025-06-10T08:12:38.075470-07:00,1006.0634155273438,10.932626,10932.626 +2709,2025-06-10T08:12:48.996986-07:00,1006.042236328125,10.921516,10921.516 +2710,2025-06-10T08:12:59.931267-07:00,1006.0700073242188,10.934281,10934.281 +2711,2025-06-10T08:13:10.856614-07:00,1006.0765380859375,10.925347,10925.347 +2712,2025-06-10T08:13:21.784392-07:00,1006.0801391601562,10.927778,10927.778 +2713,2025-06-10T08:13:32.707984-07:00,1006.0159301757812,10.923592,10923.592 +2714,2025-06-10T08:13:43.635842-07:00,1006.017333984375,10.927858,10927.858 +2715,2025-06-10T08:13:54.564834-07:00,1006.0387573242188,10.928992,10928.992 +2716,2025-06-10T08:14:05.490838-07:00,1006.0435791015625,10.926004,10926.004 +2717,2025-06-10T08:14:16.415093-07:00,1006.056884765625,10.924255,10924.255 +2718,2025-06-10T08:14:27.338828-07:00,1006.0357055664062,10.923735,10923.735 +2719,2025-06-10T08:14:38.261823-07:00,1006.0452880859375,10.922995,10922.995 +2720,2025-06-10T08:14:49.195859-07:00,1006.0159301757812,10.934036,10934.036 +2721,2025-06-10T08:15:00.129101-07:00,1006.02392578125,10.933242,10933.242 +2722,2025-06-10T08:15:11.052834-07:00,1006.0093994140625,10.923733,10923.733 +2723,2025-06-10T08:15:21.986823-07:00,1005.9992065429688,10.933989,10933.989 +2724,2025-06-10T08:15:32.909164-07:00,1005.984375,10.922341,10922.341 +2725,2025-06-10T08:15:43.844193-07:00,1006.004150390625,10.935029,10935.029 +2726,2025-06-10T08:15:54.765982-07:00,1006.0370483398438,10.921789,10921.789 +2727,2025-06-10T08:16:05.696616-07:00,1006.0106811523438,10.930634,10930.634 +2728,2025-06-10T08:16:16.628973-07:00,1006.017333984375,10.932357,10932.357 +2729,2025-06-10T08:16:27.559105-07:00,1006.0404663085938,10.930132,10930.132 +2730,2025-06-10T08:16:38.495824-07:00,1006.0123291015625,10.936719,10936.719 +2731,2025-06-10T08:16:49.427205-07:00,1006.0189819335938,10.931381,10931.381 +2732,2025-06-10T08:17:00.346210-07:00,1006.0189819335938,10.919005,10919.005 +2733,2025-06-10T08:17:11.284247-07:00,1006.0206298828125,10.938037,10938.037 +2734,2025-06-10T08:17:22.205813-07:00,1005.977783203125,10.921566,10921.566 +2735,2025-06-10T08:17:33.137836-07:00,1006.0272827148438,10.932023,10932.023 +2736,2025-06-10T08:17:44.068884-07:00,1006.0057983398438,10.931048,10931.048 +2737,2025-06-10T08:17:54.996997-07:00,1006.0123291015625,10.928113,10928.113 +2738,2025-06-10T08:18:05.931831-07:00,1006.0140380859375,10.934834,10934.834 +2739,2025-06-10T08:18:16.868880-07:00,1005.9795532226562,10.937049,10937.049 +2740,2025-06-10T08:18:27.796005-07:00,1006.0172119140625,10.927125,10927.125 +2741,2025-06-10T08:18:38.725551-07:00,1005.9762573242188,10.929546,10929.546 +2742,2025-06-10T08:18:49.647408-07:00,1005.9893798828125,10.921857,10921.857 +2743,2025-06-10T08:19:00.581863-07:00,1005.9841918945312,10.934455,10934.455 +2744,2025-06-10T08:19:11.516196-07:00,1006.025390625,10.934333,10934.333 +2745,2025-06-10T08:19:22.434816-07:00,1006.00390625,10.91862,10918.62 +2746,2025-06-10T08:19:33.368171-07:00,1006.0599975585938,10.933355,10933.355 +2747,2025-06-10T08:19:44.295841-07:00,1006.0320434570312,10.92767,10927.67 +2748,2025-06-10T08:19:55.223834-07:00,1006.03857421875,10.927993,10927.993 +2749,2025-06-10T08:20:06.144115-07:00,1006.018798828125,10.920281,10920.281 +2750,2025-06-10T08:20:17.069823-07:00,1006.040283203125,10.925708,10925.708 +2751,2025-06-10T08:20:27.993076-07:00,1006.03369140625,10.923253,10923.253 +2752,2025-06-10T08:20:38.920862-07:00,1006.0416259765625,10.927786,10927.786 +2753,2025-06-10T08:20:49.855147-07:00,1006.0449829101562,10.934285,10934.285 +2754,2025-06-10T08:21:00.780412-07:00,1006.0284423828125,10.925265,10925.265 +2755,2025-06-10T08:21:11.711869-07:00,1006.0416259765625,10.931457,10931.457 +2756,2025-06-10T08:21:22.635088-07:00,1006.0498657226562,10.923219,10923.219 +2757,2025-06-10T08:21:33.564106-07:00,1006.0661010742188,10.929018,10929.018 +2758,2025-06-10T08:21:44.486128-07:00,1006.0270385742188,10.922022,10922.022 +2759,2025-06-10T08:21:55.413877-07:00,1006.03369140625,10.927749,10927.749 +2760,2025-06-10T08:22:06.338158-07:00,1006.0432739257812,10.924281,10924.281 +2761,2025-06-10T08:22:17.273933-07:00,1006.0317993164062,10.935775,10935.775 +2762,2025-06-10T08:22:28.195360-07:00,1006.0384521484375,10.921427,10921.427 +2763,2025-06-10T08:22:39.123718-07:00,1006.0595092773438,10.928358,10928.358 +2764,2025-06-10T08:22:50.042176-07:00,1006.0384521484375,10.918458,10918.458 +2765,2025-06-10T08:23:00.977813-07:00,1006.0449829101562,10.935637,10935.637 +2766,2025-06-10T08:23:11.903979-07:00,1006.0779418945312,10.926166,10926.166 +2767,2025-06-10T08:23:22.838038-07:00,1006.0236206054688,10.934059,10934.059 +2768,2025-06-10T08:23:33.765269-07:00,1006.0384521484375,10.927231,10927.231 +2769,2025-06-10T08:23:44.695828-07:00,1006.0449829101562,10.930559,10930.559 +2770,2025-06-10T08:23:55.630442-07:00,1006.0252075195312,10.934614,10934.614 +2771,2025-06-10T08:24:06.570886-07:00,1006.0317993164062,10.940444,10940.444 +2772,2025-06-10T08:24:17.505859-07:00,1006.0186157226562,10.934973,10934.973 +2773,2025-06-10T08:24:28.431986-07:00,1006.0265502929688,10.926127,10926.127 +2774,2025-06-10T08:24:39.360836-07:00,1006.0365600585938,10.92885,10928.85 +2775,2025-06-10T08:24:50.302679-07:00,1006.0431518554688,10.941843,10941.843 +2776,2025-06-10T08:25:01.224844-07:00,1006.030029296875,10.922165,10922.165 +2777,2025-06-10T08:25:12.162008-07:00,1006.0119018554688,10.937164,10937.164 +2778,2025-06-10T08:25:23.086868-07:00,1005.9970092773438,10.92486,10924.86 +2779,2025-06-10T08:25:34.019090-07:00,1006.0000610351562,10.932222,10932.222 +2780,2025-06-10T08:25:44.955891-07:00,1006.0215454101562,10.936801,10936.801 +2781,2025-06-10T08:25:55.883834-07:00,1005.9868774414062,10.927943,10927.943 +2782,2025-06-10T08:26:06.820082-07:00,1005.993408203125,10.936248,10936.248 +2783,2025-06-10T08:26:17.751045-07:00,1005.9855346679688,10.930963,10930.963 +2784,2025-06-10T08:26:28.681096-07:00,1005.9754638671875,10.930051,10930.051 +2785,2025-06-10T08:26:39.608872-07:00,1005.9737548828125,10.927776,10927.776 +2786,2025-06-10T08:26:50.541094-07:00,1005.983642578125,10.932222,10932.222 +2787,2025-06-10T08:27:01.461827-07:00,1005.9490356445312,10.920733,10920.733 +2788,2025-06-10T08:27:12.395169-07:00,1005.9784545898438,10.933342,10933.342 +2789,2025-06-10T08:27:23.329819-07:00,1005.9916381835938,10.93465,10934.65 +2790,2025-06-10T08:27:34.260088-07:00,1005.9784545898438,10.930269,10930.269 +2791,2025-06-10T08:27:45.187036-07:00,1005.96533203125,10.926948,10926.948 +2792,2025-06-10T08:27:56.117476-07:00,1005.9685668945312,10.93044,10930.44 +2793,2025-06-10T08:28:07.049976-07:00,1005.970458984375,10.9325,10932.5 +2794,2025-06-10T08:28:17.973886-07:00,1005.98974609375,10.92391,10923.91 +2795,2025-06-10T08:28:28.901879-07:00,1005.9508056640625,10.927993,10927.993 +2796,2025-06-10T08:28:39.829818-07:00,1005.9508056640625,10.927939,10927.939 +2797,2025-06-10T08:28:50.759086-07:00,1005.98486328125,10.929268,10929.268 +2798,2025-06-10T08:29:01.689823-07:00,1005.9913940429688,10.930737,10930.737 +2799,2025-06-10T08:29:12.626129-07:00,1005.9818725585938,10.936306,10936.306 +2800,2025-06-10T08:29:23.586159-07:00,1005.9818725585938,10.96003,10960.03 +2801,2025-06-10T08:29:34.514649-07:00,1005.9620361328125,10.92849,10928.49 +2802,2025-06-10T08:29:45.444259-07:00,1005.9949951171875,10.92961,10929.61 +2803,2025-06-10T08:29:56.381171-07:00,1006.0015869140625,10.936912,10936.912 +2804,2025-06-10T08:30:07.315342-07:00,1006.0015869140625,10.934171,10934.171 +2805,2025-06-10T08:30:18.249346-07:00,1006.026123046875,10.934004,10934.004 +2806,2025-06-10T08:30:29.182743-07:00,1005.9801635742188,10.933397,10933.397 +2807,2025-06-10T08:30:40.116249-07:00,1006.01123046875,10.933506,10933.506 +2808,2025-06-10T08:30:51.048811-07:00,1006.017822265625,10.932562,10932.562 +2809,2025-06-10T08:31:01.982185-07:00,1006.009521484375,10.933374,10933.374 +2810,2025-06-10T08:31:12.908186-07:00,1006.0128784179688,10.926001,10926.001 +2811,2025-06-10T08:31:23.840189-07:00,1006.0343627929688,10.932003,10932.003 +2812,2025-06-10T08:31:34.767566-07:00,1006.004638671875,10.927377,10927.377 +2813,2025-06-10T08:31:45.703175-07:00,1006.01611328125,10.935609,10935.609 +2814,2025-06-10T08:31:56.626299-07:00,1006.0326538085938,10.923124,10923.124 +2815,2025-06-10T08:32:07.557173-07:00,1006.029296875,10.930874,10930.874 +2816,2025-06-10T08:32:18.495547-07:00,1006.0589599609375,10.938374,10938.374 +2817,2025-06-10T08:32:29.418283-07:00,1006.029296875,10.922736,10922.736 +2818,2025-06-10T08:32:40.345228-07:00,1006.0309448242188,10.926945,10926.945 +2819,2025-06-10T08:32:51.284903-07:00,1006.0524291992188,10.939675,10939.675 +2820,2025-06-10T08:33:02.214687-07:00,1006.0540771484375,10.929784,10929.784 +2821,2025-06-10T08:33:13.134176-07:00,1006.083740234375,10.919489,10919.489 +2822,2025-06-10T08:33:24.064193-07:00,1006.0554809570312,10.930017,10930.017 +2823,2025-06-10T08:33:34.993856-07:00,1006.0752563476562,10.929663,10929.663 +2824,2025-06-10T08:33:45.923245-07:00,1006.0443115234375,10.929389,10929.389 +2825,2025-06-10T08:33:56.849521-07:00,1006.0508422851562,10.926276,10926.276 +2826,2025-06-10T08:34:07.781331-07:00,1006.0326538085938,10.93181,10931.81 +2827,2025-06-10T08:34:18.714596-07:00,1006.0343627929688,10.933265,10933.265 +2828,2025-06-10T08:34:29.630338-07:00,1006.0574951171875,10.915742,10915.742 +2829,2025-06-10T08:34:40.559184-07:00,1006.0508422851562,10.928846,10928.846 +2830,2025-06-10T08:34:51.489491-07:00,1006.080322265625,10.930307,10930.307 +2831,2025-06-10T08:35:02.409444-07:00,1006.042236328125,10.919953,10919.953 +2832,2025-06-10T08:35:13.334839-07:00,1006.0868530273438,10.925395,10925.395 +2833,2025-06-10T08:35:24.263801-07:00,1006.0310668945312,10.928962,10928.962 +2834,2025-06-10T08:35:35.192380-07:00,1006.0723266601562,10.928579,10928.579 +2835,2025-06-10T08:35:46.109337-07:00,1006.0604858398438,10.916957,10916.957 +2836,2025-06-10T08:35:57.042580-07:00,1006.0326538085938,10.933243,10933.243 +2837,2025-06-10T08:36:07.969113-07:00,1006.065673828125,10.926533,10926.533 +2838,2025-06-10T08:36:18.898190-07:00,1006.0968017578125,10.929077,10929.077 +2839,2025-06-10T08:36:29.823482-07:00,1006.0670166015625,10.925292,10925.292 +2840,2025-06-10T08:36:40.756255-07:00,1006.080322265625,10.932773,10932.773 +2841,2025-06-10T08:36:51.685177-07:00,1006.0901489257812,10.928922,10928.922 +2842,2025-06-10T08:37:02.605521-07:00,1006.0951538085938,10.920344,10920.344 +2843,2025-06-10T08:37:13.536190-07:00,1006.0670166015625,10.930669,10930.669 +2844,2025-06-10T08:37:24.465719-07:00,1006.065673828125,10.929529,10929.529 +2845,2025-06-10T08:37:35.386192-07:00,1006.0999755859375,10.920473,10920.473 +2846,2025-06-10T08:37:46.317478-07:00,1006.0934448242188,10.931286,10931.286 +2847,2025-06-10T08:37:57.243613-07:00,1006.1017456054688,10.926135,10926.135 +2848,2025-06-10T08:38:08.174430-07:00,1006.1082763671875,10.930817,10930.817 +2849,2025-06-10T08:38:19.108294-07:00,1006.1034545898438,10.933864,10933.864 +2850,2025-06-10T08:38:30.042437-07:00,1006.1017456054688,10.934143,10934.143 +2851,2025-06-10T08:38:40.973682-07:00,1006.0986938476562,10.931245,10931.245 +2852,2025-06-10T08:38:51.901430-07:00,1006.1213989257812,10.927748,10927.748 +2853,2025-06-10T08:39:02.828525-07:00,1006.1148681640625,10.927095,10927.095 +2854,2025-06-10T08:39:13.764442-07:00,1006.0901489257812,10.935917,10935.917 +2855,2025-06-10T08:39:24.695005-07:00,1006.1165771484375,10.930563,10930.563 +2856,2025-06-10T08:39:35.618294-07:00,1006.1148681640625,10.923289,10923.289 +2857,2025-06-10T08:39:46.553633-07:00,1006.111328125,10.935339,10935.339 +2858,2025-06-10T08:39:57.483449-07:00,1006.1099853515625,10.929816,10929.816 +2859,2025-06-10T08:40:08.415549-07:00,1006.1442260742188,10.9321,10932.1 +2860,2025-06-10T08:40:19.340331-07:00,1006.1082763671875,10.924782,10924.782 +2861,2025-06-10T08:40:30.264632-07:00,1006.1046752929688,10.924301,10924.301 +2862,2025-06-10T08:40:41.197469-07:00,1006.1296997070312,10.932837,10932.837 +2863,2025-06-10T08:40:52.121252-07:00,1006.1179809570312,10.923783,10923.783 +2864,2025-06-10T08:41:03.059190-07:00,1006.11962890625,10.937938,10937.938 +2865,2025-06-10T08:41:13.982263-07:00,1006.1179809570312,10.923073,10923.073 +2866,2025-06-10T08:41:24.917525-07:00,1006.1160888671875,10.935262,10935.262 +2867,2025-06-10T08:41:35.863467-07:00,1006.1129760742188,10.945942,10945.942 +2868,2025-06-10T08:41:46.797177-07:00,1006.1292114257812,10.93371,10933.71 +2869,2025-06-10T08:41:57.726728-07:00,1006.1146850585938,10.929551,10929.551 +2870,2025-06-10T08:42:08.654185-07:00,1006.1212768554688,10.927457,10927.457 +2871,2025-06-10T08:42:19.588529-07:00,1006.111083984375,10.934344,10934.344 +2872,2025-06-10T08:42:30.524169-07:00,1006.1045532226562,10.93564,10935.64 +2873,2025-06-10T08:42:41.457468-07:00,1006.1226806640625,10.933299,10933.299 +2874,2025-06-10T08:42:52.400169-07:00,1006.1243896484375,10.942701,10942.701 +2875,2025-06-10T08:43:03.336194-07:00,1006.1260375976562,10.936025,10936.025 +2876,2025-06-10T08:43:14.267429-07:00,1006.1260375976562,10.931235,10931.235 +2877,2025-06-10T08:43:25.203230-07:00,1006.132568359375,10.935801,10935.801 +2878,2025-06-10T08:43:36.139521-07:00,1006.1260375976562,10.936291,10936.291 +2879,2025-06-10T08:43:47.077190-07:00,1006.119384765625,10.937669,10937.669 +2880,2025-06-10T08:43:58.007572-07:00,1006.1356201171875,10.930382,10930.382 +2881,2025-06-10T08:44:08.940176-07:00,1006.16552734375,10.932604,10932.604 +2882,2025-06-10T08:44:19.870343-07:00,1006.1439208984375,10.930167,10930.167 +2883,2025-06-10T08:44:30.806222-07:00,1006.132568359375,10.935879,10935.879 +2884,2025-06-10T08:44:41.735001-07:00,1006.1475219726562,10.928779,10928.779 +2885,2025-06-10T08:44:52.667384-07:00,1006.154052734375,10.932383,10932.383 +2886,2025-06-10T08:45:03.600221-07:00,1006.12109375,10.932837,10932.837 +2887,2025-06-10T08:45:14.526682-07:00,1006.1290893554688,10.926461,10926.461 +2888,2025-06-10T08:45:25.457625-07:00,1006.1290893554688,10.930943,10930.943 +2889,2025-06-10T08:45:36.383584-07:00,1006.1290893554688,10.925959,10925.959 +2890,2025-06-10T08:45:47.313521-07:00,1006.1620483398438,10.929937,10929.937 +2891,2025-06-10T08:45:58.240434-07:00,1006.1553955078125,10.926913,10926.913 +2892,2025-06-10T08:46:09.170194-07:00,1006.1488037109375,10.92976,10929.76 +2893,2025-06-10T08:46:20.107193-07:00,1006.1949462890625,10.936999,10936.999 +2894,2025-06-10T08:46:31.031210-07:00,1006.1702270507812,10.924017,10924.017 +2895,2025-06-10T08:46:41.965186-07:00,1006.127685546875,10.933976,10933.976 +2896,2025-06-10T08:46:52.899376-07:00,1006.1553955078125,10.93419,10934.19 +2897,2025-06-10T08:47:03.827182-07:00,1006.1719360351562,10.927806,10927.806 +2898,2025-06-10T08:47:14.767436-07:00,1006.1636962890625,10.940254,10940.254 +2899,2025-06-10T08:47:25.695277-07:00,1006.1475219726562,10.927841,10927.841 +2900,2025-06-10T08:47:36.632501-07:00,1006.1685791015625,10.937224,10937.224 +2901,2025-06-10T08:47:47.563188-07:00,1006.1671752929688,10.930687,10930.687 +2902,2025-06-10T08:47:58.490461-07:00,1006.16064453125,10.927273,10927.273 +2903,2025-06-10T08:48:09.427182-07:00,1006.1702270507812,10.936721,10936.721 +2904,2025-06-10T08:48:20.351765-07:00,1006.1521606445312,10.924583,10924.583 +2905,2025-06-10T08:48:31.282172-07:00,1006.1685791015625,10.930407,10930.407 +2906,2025-06-10T08:48:42.217733-07:00,1006.1719360351562,10.935561,10935.561 +2907,2025-06-10T08:48:53.154169-07:00,1006.154052734375,10.936436,10936.436 +2908,2025-06-10T08:49:04.082610-07:00,1006.1702270507812,10.928441,10928.441 +2909,2025-06-10T08:49:15.010198-07:00,1006.1392211914062,10.927588,10927.588 +2910,2025-06-10T08:49:25.934786-07:00,1006.1751708984375,10.924588,10924.588 +2911,2025-06-10T08:49:36.867199-07:00,1006.158935546875,10.932413,10932.413 +2912,2025-06-10T08:49:47.792276-07:00,1006.1751708984375,10.925077,10925.077 +2913,2025-06-10T08:49:58.723844-07:00,1006.1751708984375,10.931568,10931.568 +2914,2025-06-10T08:50:09.648340-07:00,1006.1685791015625,10.924496,10924.496 +2915,2025-06-10T08:50:20.579705-07:00,1006.1620483398438,10.931365,10931.365 +2916,2025-06-10T08:50:31.499246-07:00,1006.16064453125,10.919541,10919.541 +2917,2025-06-10T08:50:42.429237-07:00,1006.1475219726562,10.929991,10929.991 +2918,2025-06-10T08:50:53.360338-07:00,1006.1620483398438,10.931101,10931.101 +2919,2025-06-10T08:51:04.291323-07:00,1006.140869140625,10.930985,10930.985 +2920,2025-06-10T08:51:15.229448-07:00,1006.1983032226562,10.938125,10938.125 +2921,2025-06-10T08:51:26.154520-07:00,1006.180419921875,10.925072,10925.072 +2922,2025-06-10T08:51:37.086515-07:00,1006.1768798828125,10.931995,10931.995 +2923,2025-06-10T08:51:48.007188-07:00,1006.158935546875,10.920673,10920.673 +2924,2025-06-10T08:51:58.930525-07:00,1006.1553955078125,10.923337,10923.337 +2925,2025-06-10T08:52:09.851438-07:00,1006.1900024414062,10.920913,10920.913 +2926,2025-06-10T08:52:20.773175-07:00,1006.1702270507812,10.921737,10921.737 +2927,2025-06-10T08:52:31.698292-07:00,1006.1636962890625,10.925117,10925.117 +2928,2025-06-10T08:52:42.623630-07:00,1006.1587524414062,10.925338,10925.338 +2929,2025-06-10T08:52:53.545190-07:00,1006.1702270507812,10.92156,10921.56 +2930,2025-06-10T08:53:04.467453-07:00,1006.1864624023438,10.922263,10922.263 +2931,2025-06-10T08:53:15.395508-07:00,1006.1618041992188,10.928055,10928.055 +2932,2025-06-10T08:53:26.334957-07:00,1006.1702270507812,10.939449,10939.449 +2933,2025-06-10T08:53:37.260173-07:00,1006.1587524414062,10.925216,10925.216 +2934,2025-06-10T08:53:48.191931-07:00,1006.1768798828125,10.931758,10931.758 +2935,2025-06-10T08:53:59.128503-07:00,1006.1719360351562,10.936572,10936.572 +2936,2025-06-10T08:54:10.062623-07:00,1006.2128295898438,10.93412,10934.12 +2937,2025-06-10T08:54:20.990233-07:00,1006.1587524414062,10.92761,10927.61 +2938,2025-06-10T08:54:31.911361-07:00,1006.1785278320312,10.921128,10921.128 +2939,2025-06-10T08:54:42.840663-07:00,1006.1917114257812,10.929302,10929.302 +2940,2025-06-10T08:54:53.775853-07:00,1006.1930541992188,10.93519,10935.19 +2941,2025-06-10T08:55:04.702333-07:00,1006.1851806640625,10.92648,10926.48 +2942,2025-06-10T08:55:15.636757-07:00,1006.2062377929688,10.934424,10934.424 +2943,2025-06-10T08:55:26.566188-07:00,1006.2062377929688,10.929431,10929.431 +2944,2025-06-10T08:55:37.491355-07:00,1006.1636962890625,10.925167,10925.167 +2945,2025-06-10T08:55:48.421338-07:00,1006.1768798828125,10.929983,10929.983 +2946,2025-06-10T08:55:59.359192-07:00,1006.1834106445312,10.937854,10937.854 +2947,2025-06-10T08:56:10.285620-07:00,1006.166748046875,10.926428,10926.428 +2948,2025-06-10T08:56:21.213578-07:00,1006.166748046875,10.927958,10927.958 +2949,2025-06-10T08:56:32.150404-07:00,1006.166748046875,10.936826,10936.826 +2950,2025-06-10T08:56:43.075290-07:00,1006.1732788085938,10.924886,10924.886 +2951,2025-06-10T08:56:54.016178-07:00,1006.1719360351562,10.940888,10940.888 +2952,2025-06-10T08:57:04.940135-07:00,1006.1768798828125,10.923957,10923.957 +2953,2025-06-10T08:57:15.878235-07:00,1006.1488037109375,10.9381,10938.1 +2954,2025-06-10T08:57:26.800445-07:00,1006.1587524414062,10.92221,10922.21 +2955,2025-06-10T08:57:37.732294-07:00,1006.1930541992188,10.931849,10931.849 +2956,2025-06-10T08:57:48.665444-07:00,1006.1732788085938,10.93315,10933.15 +2957,2025-06-10T08:57:59.604190-07:00,1006.1917114257812,10.938746,10938.746 +2958,2025-06-10T08:58:10.540228-07:00,1006.204833984375,10.936038,10936.038 +2959,2025-06-10T08:58:21.473180-07:00,1006.1917114257812,10.932952,10932.952 +2960,2025-06-10T08:58:32.401189-07:00,1006.1834106445312,10.928009,10928.009 +2961,2025-06-10T08:58:43.332175-07:00,1006.1768798828125,10.930986,10930.986 +2962,2025-06-10T08:58:54.271012-07:00,1006.1869506835938,10.938837,10938.837 +2963,2025-06-10T08:59:05.202709-07:00,1006.1900024414062,10.931697,10931.697 +2964,2025-06-10T08:59:16.136449-07:00,1006.1882934570312,10.93374,10933.74 +2965,2025-06-10T08:59:27.067445-07:00,1006.2097778320312,10.930996,10930.996 +2966,2025-06-10T08:59:38.001551-07:00,1006.2081298828125,10.934106,10934.106 +2967,2025-06-10T08:59:48.935669-07:00,1006.2062377929688,10.934118,10934.118 +2968,2025-06-10T08:59:59.869606-07:00,1006.2067260742188,10.933937,10933.937 +2969,2025-06-10T09:00:10.800748-07:00,1006.2199096679688,10.931142,10931.142 +2970,2025-06-10T09:00:21.738177-07:00,1006.2146606445312,10.937429,10937.429 +2971,2025-06-10T09:00:32.676618-07:00,1006.2212524414062,10.938441,10938.441 +2972,2025-06-10T09:00:43.608182-07:00,1006.2097778320312,10.931564,10931.564 +2973,2025-06-10T09:00:54.541135-07:00,1006.2081298828125,10.932953,10932.953 +2974,2025-06-10T09:01:05.467175-07:00,1006.2050170898438,10.92604,10926.04 +2975,2025-06-10T09:01:16.398660-07:00,1006.224853515625,10.931485,10931.485 +2976,2025-06-10T09:01:27.340212-07:00,1006.24267578125,10.941552,10941.552 +2977,2025-06-10T09:01:38.262189-07:00,1006.2462768554688,10.921977,10921.977 +2978,2025-06-10T09:01:49.201192-07:00,1006.236083984375,10.939003,10939.003 +2979,2025-06-10T09:02:00.135535-07:00,1006.2295532226562,10.934343,10934.343 +2980,2025-06-10T09:02:11.074671-07:00,1006.2229614257812,10.939136,10939.136 +2981,2025-06-10T09:02:22.003230-07:00,1006.244384765625,10.928559,10928.559 +2982,2025-06-10T09:02:32.934387-07:00,1006.2542114257812,10.931157,10931.157 +2983,2025-06-10T09:02:43.860566-07:00,1006.2344360351562,10.926179,10926.179 +2984,2025-06-10T09:02:54.802188-07:00,1006.2787475585938,10.941622,10941.622 +2985,2025-06-10T09:03:05.730724-07:00,1006.2559204101562,10.928536,10928.536 +2986,2025-06-10T09:03:16.669165-07:00,1006.2509155273438,10.938441,10938.441 +2987,2025-06-10T09:03:27.598192-07:00,1006.249267578125,10.929027,10929.027 +2988,2025-06-10T09:03:38.531521-07:00,1006.27734375,10.933329,10933.329 +2989,2025-06-10T09:03:49.461342-07:00,1006.2542114257812,10.929821,10929.821 +2990,2025-06-10T09:04:00.390411-07:00,1006.2739868164062,10.929069,10929.069 +2991,2025-06-10T09:04:11.322190-07:00,1006.2608032226562,10.931779,10931.779 +2992,2025-06-10T09:04:22.260218-07:00,1006.27734375,10.938028,10938.028 +2993,2025-06-10T09:04:33.190140-07:00,1006.2476806640625,10.929922,10929.922 +2994,2025-06-10T09:04:44.121501-07:00,1006.2792358398438,10.931361,10931.361 +2995,2025-06-10T09:04:55.048448-07:00,1006.280517578125,10.926947,10926.947 +2996,2025-06-10T09:05:05.984685-07:00,1006.280517578125,10.936237,10936.237 +2997,2025-06-10T09:05:16.919184-07:00,1006.280517578125,10.934499,10934.499 +2998,2025-06-10T09:05:27.847182-07:00,1006.2792358398438,10.927998,10927.998 +2999,2025-06-10T09:05:38.785189-07:00,1006.2626342773438,10.938007,10938.007 +3000,2025-06-10T09:05:49.717518-07:00,1006.2659912109375,10.932329,10932.329 +3001,2025-06-10T09:06:00.646246-07:00,1006.2792358398438,10.928728,10928.728 +3002,2025-06-10T09:06:11.566491-07:00,1006.2871704101562,10.920245,10920.245 +3003,2025-06-10T09:06:22.501175-07:00,1006.2857666015625,10.934684,10934.684 +3004,2025-06-10T09:06:33.425185-07:00,1006.3055419921875,10.92401,10924.01 +3005,2025-06-10T09:06:44.357596-07:00,1006.2871704101562,10.932411,10932.411 +3006,2025-06-10T09:06:55.285198-07:00,1006.30029296875,10.927602,10927.602 +3007,2025-06-10T09:07:06.215475-07:00,1006.297119140625,10.930277,10930.277 +3008,2025-06-10T09:07:17.137290-07:00,1006.297119140625,10.921815,10921.815 +3009,2025-06-10T09:07:28.067223-07:00,1006.267333984375,10.929933,10929.933 +3010,2025-06-10T09:07:38.998192-07:00,1006.2954711914062,10.930969,10930.969 +3011,2025-06-10T09:07:49.918178-07:00,1006.2954711914062,10.919986,10919.986 +3012,2025-06-10T09:08:00.855642-07:00,1006.275634765625,10.937464,10937.464 +3013,2025-06-10T09:08:11.779190-07:00,1006.2608032226562,10.923548,10923.548 +3014,2025-06-10T09:08:22.720173-07:00,1006.2821655273438,10.940983,10940.983 +3015,2025-06-10T09:08:33.650340-07:00,1006.2542114257812,10.930167,10930.167 +3016,2025-06-10T09:08:44.571560-07:00,1006.26904296875,10.92122,10921.22 +3017,2025-06-10T09:08:55.512178-07:00,1006.2871704101562,10.940618,10940.618 +3018,2025-06-10T09:09:06.447444-07:00,1006.288818359375,10.935266,10935.266 +3019,2025-06-10T09:09:17.378194-07:00,1006.2739868164062,10.93075,10930.75 +3020,2025-06-10T09:09:28.303789-07:00,1006.267333984375,10.925595,10925.595 +3021,2025-06-10T09:09:39.236429-07:00,1006.2313842773438,10.93264,10932.64 +3022,2025-06-10T09:09:50.172225-07:00,1006.275634765625,10.935796,10935.796 +3023,2025-06-10T09:10:01.095408-07:00,1006.2396850585938,10.923183,10923.183 +3024,2025-06-10T09:10:12.030510-07:00,1006.2542114257812,10.935102,10935.102 +3025,2025-06-10T09:10:22.962209-07:00,1006.2625122070312,10.931699,10931.699 +3026,2025-06-10T09:10:33.894240-07:00,1006.275634765625,10.932031,10932.031 +3027,2025-06-10T09:10:44.820190-07:00,1006.2476806640625,10.92595,10925.95 +3028,2025-06-10T09:10:55.745502-07:00,1006.2528076171875,10.925312,10925.312 +3029,2025-06-10T09:11:06.682193-07:00,1006.2462768554688,10.936691,10936.691 +3030,2025-06-10T09:11:17.615471-07:00,1006.2577514648438,10.933278,10933.278 +3031,2025-06-10T09:11:28.547194-07:00,1006.2542114257812,10.931723,10931.723 +3032,2025-06-10T09:11:39.480520-07:00,1006.2659912109375,10.933326,10933.326 +3033,2025-06-10T09:11:50.412184-07:00,1006.267333984375,10.931664,10931.664 +3034,2025-06-10T09:12:01.333838-07:00,1006.2577514648438,10.921654,10921.654 +3035,2025-06-10T09:12:12.261239-07:00,1006.2528076171875,10.927401,10927.401 +3036,2025-06-10T09:12:23.191612-07:00,1006.2445068359375,10.930373,10930.373 +3037,2025-06-10T09:12:34.126852-07:00,1006.2542114257812,10.93524,10935.24 +3038,2025-06-10T09:12:45.052393-07:00,1006.2296752929688,10.925541,10925.541 +3039,2025-06-10T09:12:55.975554-07:00,1006.2344360351562,10.923161,10923.161 +3040,2025-06-10T09:13:06.903190-07:00,1006.2265014648438,10.927636,10927.636 +3041,2025-06-10T09:13:17.832502-07:00,1006.2410278320312,10.929312,10929.312 +3042,2025-06-10T09:13:28.766525-07:00,1006.2528076171875,10.934023,10934.023 +3043,2025-06-10T09:13:39.690843-07:00,1006.2659912109375,10.924318,10924.318 +3044,2025-06-10T09:13:50.618723-07:00,1006.2050170898438,10.92788,10927.88 +3045,2025-06-10T09:14:01.544300-07:00,1006.2542114257812,10.925577,10925.577 +3046,2025-06-10T09:14:12.481636-07:00,1006.2313842773438,10.937336,10937.336 +3047,2025-06-10T09:14:23.410369-07:00,1006.2559204101562,10.928733,10928.733 +3048,2025-06-10T09:14:34.336444-07:00,1006.2462768554688,10.926075,10926.075 +3049,2025-06-10T09:14:45.268186-07:00,1006.249267578125,10.931742,10931.742 +3050,2025-06-10T09:14:56.195822-07:00,1006.2542114257812,10.927636,10927.636 +3051,2025-06-10T09:15:07.113188-07:00,1006.2625122070312,10.917366,10917.366 +3052,2025-06-10T09:15:18.047541-07:00,1006.2462768554688,10.934353,10934.353 +3053,2025-06-10T09:15:28.975192-07:00,1006.236083984375,10.927651,10927.651 +3054,2025-06-10T09:15:39.903193-07:00,1006.233154296875,10.928001,10928.001 +3055,2025-06-10T09:15:50.822738-07:00,1006.2577514648438,10.919545,10919.545 +3056,2025-06-10T09:16:01.757216-07:00,1006.2511596679688,10.934478,10934.478 +3057,2025-06-10T09:16:12.690763-07:00,1006.2344360351562,10.933547,10933.547 +3058,2025-06-10T09:16:23.618182-07:00,1006.2379760742188,10.927419,10927.419 +3059,2025-06-10T09:16:34.535378-07:00,1006.2840576171875,10.917196,10917.196 +3060,2025-06-10T09:16:45.472255-07:00,1006.2577514648438,10.936877,10936.877 +3061,2025-06-10T09:16:56.391394-07:00,1006.234619140625,10.919139,10919.139 +3062,2025-06-10T09:17:07.326176-07:00,1006.2726440429688,10.934782,10934.782 +3063,2025-06-10T09:17:18.260766-07:00,1006.2296752929688,10.93459,10934.59 +3064,2025-06-10T09:17:29.184595-07:00,1006.24951171875,10.923829,10923.829 +3065,2025-06-10T09:17:40.118190-07:00,1006.22314453125,10.933595,10933.595 +3066,2025-06-10T09:17:51.041434-07:00,1006.2726440429688,10.923244,10923.244 +3067,2025-06-10T09:18:01.971177-07:00,1006.24951171875,10.929743,10929.743 +3068,2025-06-10T09:18:12.893184-07:00,1006.2296752929688,10.922007,10922.007 +3069,2025-06-10T09:18:23.826184-07:00,1006.2412719726562,10.933,10933.0 +3070,2025-06-10T09:18:34.755619-07:00,1006.2757568359375,10.929435,10929.435 +3071,2025-06-10T09:18:45.675075-07:00,1006.2954711914062,10.919456,10919.456 +3072,2025-06-10T09:18:56.607695-07:00,1006.2692260742188,10.93262,10932.62 +3073,2025-06-10T09:19:07.544329-07:00,1006.2463989257812,10.936634,10936.634 +3074,2025-06-10T09:19:18.469338-07:00,1006.2840576171875,10.925009,10925.009 +3075,2025-06-10T09:19:29.408336-07:00,1006.274169921875,10.938998,10938.998 +3076,2025-06-10T09:19:40.333177-07:00,1006.274169921875,10.924841,10924.841 +3077,2025-06-10T09:19:51.271192-07:00,1006.274169921875,10.938015,10938.015 +3078,2025-06-10T09:20:02.194426-07:00,1006.274169921875,10.923234,10923.234 +3079,2025-06-10T09:20:13.129600-07:00,1006.2890014648438,10.935174,10935.174 +3080,2025-06-10T09:20:24.062188-07:00,1006.25439453125,10.932588,10932.588 +3081,2025-06-10T09:20:34.996432-07:00,1006.274169921875,10.934244,10934.244 +3082,2025-06-10T09:20:45.921188-07:00,1006.247802734375,10.924756,10924.756 +3083,2025-06-10T09:20:56.847478-07:00,1006.2662353515625,10.92629,10926.29 +3084,2025-06-10T09:21:07.766421-07:00,1006.2595825195312,10.918943,10918.943 +3085,2025-06-10T09:21:18.695553-07:00,1006.2431030273438,10.929132,10929.132 +3086,2025-06-10T09:21:29.629841-07:00,1006.2232666015625,10.934288,10934.288 +3087,2025-06-10T09:21:40.552212-07:00,1006.2380981445312,10.922371,10922.371 +3088,2025-06-10T09:21:51.479473-07:00,1006.2496948242188,10.927261,10927.261 +3089,2025-06-10T09:22:02.403233-07:00,1006.2431030273438,10.92376,10923.76 +3090,2025-06-10T09:22:13.326175-07:00,1006.2298583984375,10.922942,10922.942 +3091,2025-06-10T09:22:24.256485-07:00,1006.2167358398438,10.93031,10930.31 +3092,2025-06-10T09:22:35.192425-07:00,1006.2298583984375,10.93594,10935.94 +3093,2025-06-10T09:22:46.113935-07:00,1006.228515625,10.92151,10921.51 +3094,2025-06-10T09:22:57.047396-07:00,1006.20703125,10.933461,10933.461 +3095,2025-06-10T09:23:07.982169-07:00,1006.228515625,10.934773,10934.773 +3096,2025-06-10T09:23:18.904238-07:00,1006.1871948242188,10.922069,10922.069 +3097,2025-06-10T09:23:29.845573-07:00,1006.221923828125,10.941335,10941.335 +3098,2025-06-10T09:23:40.768992-07:00,1006.2053833007812,10.923419,10923.419 +3099,2025-06-10T09:23:51.706351-07:00,1006.208740234375,10.937359,10937.359 +3100,2025-06-10T09:24:02.629190-07:00,1006.2053833007812,10.922839,10922.839 +3101,2025-06-10T09:24:13.557102-07:00,1006.184326171875,10.927912,10927.912 +3102,2025-06-10T09:24:24.487838-07:00,1006.1988525390625,10.930736,10930.736 +3103,2025-06-10T09:24:35.413602-07:00,1006.2106323242188,10.925764,10925.764 +3104,2025-06-10T09:24:46.351195-07:00,1006.1988525390625,10.937593,10937.593 +3105,2025-06-10T09:24:57.279436-07:00,1006.1988525390625,10.928241,10928.241 +3106,2025-06-10T09:25:08.202981-07:00,1006.2268676757812,10.923545,10923.545 +3107,2025-06-10T09:25:19.136416-07:00,1006.2120361328125,10.933435,10933.435 +3108,2025-06-10T09:25:30.075676-07:00,1006.228759765625,10.93926,10939.26 +3109,2025-06-10T09:25:40.999434-07:00,1006.189208984375,10.923758,10923.758 +3110,2025-06-10T09:25:51.930424-07:00,1006.189208984375,10.93099,10930.99 +3111,2025-06-10T09:26:02.860450-07:00,1006.1660766601562,10.930026,10930.026 +3112,2025-06-10T09:26:13.790609-07:00,1006.237060546875,10.930159,10930.159 +3113,2025-06-10T09:26:24.718190-07:00,1006.19580078125,10.927581,10927.581 +3114,2025-06-10T09:26:35.660294-07:00,1006.2332763671875,10.942104,10942.104 +3115,2025-06-10T09:26:46.588436-07:00,1006.2201538085938,10.928142,10928.142 +3116,2025-06-10T09:26:57.515136-07:00,1006.2351684570312,10.9267,10926.7 +3117,2025-06-10T09:27:08.454501-07:00,1006.2748413085938,10.939365,10939.365 +3118,2025-06-10T09:27:19.382423-07:00,1006.2793579101562,10.927922,10927.922 +3119,2025-06-10T09:27:30.307469-07:00,1006.2135009765625,10.925046,10925.046 +3120,2025-06-10T09:27:41.242554-07:00,1006.256591796875,10.935085,10935.085 +3121,2025-06-10T09:27:52.170161-07:00,1006.230224609375,10.927607,10927.607 +3122,2025-06-10T09:28:03.105180-07:00,1006.261474609375,10.935019,10935.019 +3123,2025-06-10T09:28:14.032406-07:00,1006.2648315429688,10.927226,10927.226 +3124,2025-06-10T09:28:24.965660-07:00,1006.2650146484375,10.933254,10933.254 +3125,2025-06-10T09:28:35.900329-07:00,1006.256591796875,10.934669,10934.669 +3126,2025-06-10T09:28:46.834417-07:00,1006.2453002929688,10.934088,10934.088 +3127,2025-06-10T09:28:57.762184-07:00,1006.239990234375,10.927767,10927.767 +3128,2025-06-10T09:29:08.694535-07:00,1006.2254638671875,10.932351,10932.351 +3129,2025-06-10T09:29:19.646919-07:00,1006.2137451171875,10.952384,10952.384 +3130,2025-06-10T09:29:30.578927-07:00,1006.205810546875,10.932008,10932.008 +3131,2025-06-10T09:29:41.516208-07:00,1006.205810546875,10.937281,10937.281 +3132,2025-06-10T09:29:52.439324-07:00,1006.2070922851562,10.923116,10923.116 +3133,2025-06-10T09:30:03.369149-07:00,1006.184326171875,10.929825,10929.825 +3134,2025-06-10T09:30:14.296211-07:00,1006.2285766601562,10.927062,10927.062 +3135,2025-06-10T09:30:25.214079-07:00,1006.2351684570312,10.917868,10917.868 +3136,2025-06-10T09:30:36.142913-07:00,1006.2236938476562,10.928834,10928.834 +3137,2025-06-10T09:30:47.061050-07:00,1006.2318725585938,10.918137,10918.137 +3138,2025-06-10T09:30:57.988159-07:00,1006.2268676757812,10.927109,10927.109 +3139,2025-06-10T09:31:08.917904-07:00,1006.25830078125,10.929745,10929.745 +3140,2025-06-10T09:31:19.834276-07:00,1006.2318725585938,10.916372,10916.372 +3141,2025-06-10T09:31:30.758234-07:00,1006.2530517578125,10.923958,10923.958 +3142,2025-06-10T09:31:41.686021-07:00,1006.251708984375,10.927787,10927.787 +3143,2025-06-10T09:31:52.614904-07:00,1006.2464599609375,10.928883,10928.883 +3144,2025-06-10T09:32:03.537924-07:00,1006.2236938476562,10.92302,10923.02 +3145,2025-06-10T09:32:14.466507-07:00,1006.2137451171875,10.928583,10928.583 +3146,2025-06-10T09:32:25.395098-07:00,1006.2123413085938,10.928591,10928.591 +3147,2025-06-10T09:32:36.316944-07:00,1006.1939086914062,10.921846,10921.846 +3148,2025-06-10T09:32:47.238346-07:00,1006.1793823242188,10.921402,10921.402 +3149,2025-06-10T09:32:58.160921-07:00,1006.2254638671875,10.922575,10922.575 +3150,2025-06-10T09:33:09.085951-07:00,1006.2022094726562,10.92503,10925.03 +3151,2025-06-10T09:33:20.009451-07:00,1006.184326171875,10.9235,10923.5 +3152,2025-06-10T09:33:30.931961-07:00,1006.16943359375,10.92251,10922.51 +3153,2025-06-10T09:33:41.854983-07:00,1006.15625,10.923022,10923.022 +3154,2025-06-10T09:33:52.785088-07:00,1006.1629028320312,10.930105,10930.105 +3155,2025-06-10T09:34:03.701107-07:00,1006.1727905273438,10.916019,10916.019 +3156,2025-06-10T09:34:14.622113-07:00,1006.1710815429688,10.921006,10921.006 +3157,2025-06-10T09:34:25.553234-07:00,1006.18603515625,10.931121,10931.121 +3158,2025-06-10T09:34:36.481061-07:00,1006.1939086914062,10.927827,10927.827 +3159,2025-06-10T09:34:47.409353-07:00,1006.189208984375,10.928292,10928.292 +3160,2025-06-10T09:34:58.333068-07:00,1006.19580078125,10.923715,10923.715 +3161,2025-06-10T09:35:09.255376-07:00,1006.2106323242188,10.922308,10922.308 +3162,2025-06-10T09:35:20.184025-07:00,1006.1925659179688,10.928649,10928.649 +3163,2025-06-10T09:35:31.107001-07:00,1006.19921875,10.922976,10922.976 +3164,2025-06-10T09:35:42.036409-07:00,1006.15625,10.929408,10929.408 +3165,2025-06-10T09:35:52.962586-07:00,1006.184326171875,10.926177,10926.177 +3166,2025-06-10T09:36:03.892256-07:00,1006.1873168945312,10.92967,10929.67 +3167,2025-06-10T09:36:14.825914-07:00,1006.15625,10.933658,10933.658 +3168,2025-06-10T09:36:25.749261-07:00,1006.1710815429688,10.923347,10923.347 +3169,2025-06-10T09:36:36.682989-07:00,1006.166259765625,10.933728,10933.728 +3170,2025-06-10T09:36:47.612130-07:00,1006.1629028320312,10.929141,10929.141 +3171,2025-06-10T09:36:58.540902-07:00,1006.16943359375,10.928772,10928.772 +3172,2025-06-10T09:37:09.468907-07:00,1006.19580078125,10.928005,10928.005 +3173,2025-06-10T09:37:20.394243-07:00,1006.1710815429688,10.925336,10925.336 +3174,2025-06-10T09:37:31.326894-07:00,1006.1760864257812,10.932651,10932.651 +3175,2025-06-10T09:37:42.261310-07:00,1006.19091796875,10.934416,10934.416 +3176,2025-06-10T09:37:53.178421-07:00,1006.1746826171875,10.917111,10917.111 +3177,2025-06-10T09:38:04.103993-07:00,1006.189208984375,10.925572,10925.572 +3178,2025-06-10T09:38:15.034381-07:00,1006.1793823242188,10.930388,10930.388 +3179,2025-06-10T09:38:25.964986-07:00,1006.1826782226562,10.930605,10930.605 +3180,2025-06-10T09:38:36.889214-07:00,1006.1681518554688,10.924228,10924.228 +3181,2025-06-10T09:38:47.821919-07:00,1006.1417236328125,10.932705,10932.705 +3182,2025-06-10T09:38:58.748686-07:00,1006.1615600585938,10.926767,10926.767 +3183,2025-06-10T09:39:09.669913-07:00,1006.1431274414062,10.921227,10921.227 +3184,2025-06-10T09:39:20.600949-07:00,1006.1681518554688,10.931036,10931.036 +3185,2025-06-10T09:39:31.532778-07:00,1006.1251831054688,10.931829,10931.829 +3186,2025-06-10T09:39:42.460923-07:00,1006.1629028320312,10.928145,10928.145 +3187,2025-06-10T09:39:53.390146-07:00,1006.1746826171875,10.929223,10929.223 +3188,2025-06-10T09:40:04.320297-07:00,1006.19580078125,10.930151,10930.151 +3189,2025-06-10T09:40:15.239332-07:00,1006.1729736328125,10.919035,10919.035 +3190,2025-06-10T09:40:26.160908-07:00,1006.16943359375,10.921576,10921.576 +3191,2025-06-10T09:40:37.090171-07:00,1006.1713256835938,10.929263,10929.263 +3192,2025-06-10T09:40:48.018264-07:00,1006.1795043945312,10.928093,10928.093 +3193,2025-06-10T09:40:58.934952-07:00,1006.1760864257812,10.916688,10916.688 +3194,2025-06-10T09:41:09.852920-07:00,1006.2076416015625,10.917968,10917.968 +3195,2025-06-10T09:41:20.782300-07:00,1006.1746826171875,10.92938,10929.38 +3196,2025-06-10T09:41:31.705409-07:00,1006.14501953125,10.923109,10923.109 +3197,2025-06-10T09:41:42.632118-07:00,1006.1812744140625,10.926709,10926.709 +3198,2025-06-10T09:41:53.560518-07:00,1006.1251831054688,10.9284,10928.4 +3199,2025-06-10T09:42:04.485919-07:00,1006.1729736328125,10.925401,10925.401 +3200,2025-06-10T09:42:15.414268-07:00,1006.1598510742188,10.928349,10928.349 +3201,2025-06-10T09:42:26.340952-07:00,1006.1238403320312,10.926684,10926.684 +3202,2025-06-10T09:42:37.270151-07:00,1006.1317749023438,10.929199,10929.199 +3203,2025-06-10T09:42:48.189978-07:00,1006.1436157226562,10.919827,10919.827 +3204,2025-06-10T09:42:59.108005-07:00,1006.1911010742188,10.918027,10918.027 +3205,2025-06-10T09:43:10.038332-07:00,1006.1402587890625,10.930327,10930.327 +3206,2025-06-10T09:43:20.961984-07:00,1006.1617431640625,10.923652,10923.652 +3207,2025-06-10T09:43:31.884075-07:00,1006.1682739257812,10.922091,10922.091 +3208,2025-06-10T09:43:42.806186-07:00,1006.1550903320312,10.922111,10922.111 +3209,2025-06-10T09:43:53.739972-07:00,1006.141845703125,10.933786,10933.786 +3210,2025-06-10T09:44:04.653913-07:00,1006.1699829101562,10.913941,10913.941 +3211,2025-06-10T09:44:15.576261-07:00,1006.1402587890625,10.922348,10922.348 +3212,2025-06-10T09:44:26.503183-07:00,1006.1581420898438,10.926922,10926.922 +3213,2025-06-10T09:44:37.421891-07:00,1006.1515502929688,10.918708,10918.708 +3214,2025-06-10T09:44:48.346195-07:00,1006.1617431640625,10.924304,10924.304 +3215,2025-06-10T09:44:59.277167-07:00,1006.141845703125,10.930972,10930.972 +3216,2025-06-10T09:45:10.201171-07:00,1006.1648559570312,10.924004,10924.004 +3217,2025-06-10T09:45:21.138198-07:00,1006.1402587890625,10.937027,10937.027 +3218,2025-06-10T09:45:32.065918-07:00,1006.1765747070312,10.92772,10927.72 +3219,2025-06-10T09:45:42.990860-07:00,1006.1699829101562,10.924942,10924.942 +3220,2025-06-10T09:45:53.922063-07:00,1006.1484985351562,10.931203,10931.203 +3221,2025-06-10T09:46:04.862218-07:00,1006.1615600585938,10.940155,10940.155 +3222,2025-06-10T09:46:15.786065-07:00,1006.1484985351562,10.923847,10923.847 +3223,2025-06-10T09:46:26.714173-07:00,1006.1598510742188,10.928108,10928.108 +3224,2025-06-10T09:46:37.638951-07:00,1006.1238403320312,10.924778,10924.778 +3225,2025-06-10T09:46:48.576559-07:00,1006.141845703125,10.937608,10937.608 +3226,2025-06-10T09:46:59.498919-07:00,1006.1238403320312,10.92236,10922.36 +3227,2025-06-10T09:47:10.432261-07:00,1006.1353149414062,10.933342,10933.342 +3228,2025-06-10T09:47:21.365071-07:00,1006.1204833984375,10.93281,10932.81 +3229,2025-06-10T09:47:32.300579-07:00,1006.1334228515625,10.935508,10935.508 +3230,2025-06-10T09:47:43.229972-07:00,1006.1304931640625,10.929393,10929.393 +3231,2025-06-10T09:47:54.158177-07:00,1006.1317749023438,10.928205,10928.205 +3232,2025-06-10T09:48:05.092688-07:00,1006.14501953125,10.934511,10934.511 +3233,2025-06-10T09:48:16.020026-07:00,1006.1172485351562,10.927338,10927.338 +3234,2025-06-10T09:48:26.947965-07:00,1006.1646728515625,10.927939,10927.939 +3235,2025-06-10T09:48:37.877870-07:00,1006.1317749023438,10.929905,10929.905 +3236,2025-06-10T09:48:48.811921-07:00,1006.1221923828125,10.934051,10934.051 +3237,2025-06-10T09:48:59.747667-07:00,1006.1156005859375,10.935746,10935.746 +3238,2025-06-10T09:49:10.669923-07:00,1006.138427734375,10.922256,10922.256 +3239,2025-06-10T09:49:21.595919-07:00,1006.1646728515625,10.925996,10925.996 +3240,2025-06-10T09:49:32.531972-07:00,1006.1515502929688,10.936053,10936.053 +3241,2025-06-10T09:49:43.461165-07:00,1006.15673828125,10.929193,10929.193 +3242,2025-06-10T09:49:54.389915-07:00,1006.1581420898438,10.92875,10928.75 +3243,2025-06-10T09:50:05.318073-07:00,1006.14501953125,10.928158,10928.158 +3244,2025-06-10T09:50:16.253229-07:00,1006.14501953125,10.935156,10935.156 +3245,2025-06-10T09:50:27.181114-07:00,1006.1663818359375,10.927885,10927.885 +3246,2025-06-10T09:50:38.114901-07:00,1006.1713256835938,10.933787,10933.787 +3247,2025-06-10T09:50:49.046924-07:00,1006.1581420898438,10.932023,10932.023 +3248,2025-06-10T09:50:59.973261-07:00,1006.150146484375,10.926337,10926.337 +3249,2025-06-10T09:51:10.901061-07:00,1006.1238403320312,10.9278,10927.8 +3250,2025-06-10T09:51:21.830151-07:00,1006.1400756835938,10.92909,10929.09 +3251,2025-06-10T09:51:32.762915-07:00,1006.1482543945312,10.932764,10932.764 +3252,2025-06-10T09:51:43.693572-07:00,1006.1334228515625,10.930657,10930.657 +3253,2025-06-10T09:51:54.619894-07:00,1006.1251831054688,10.926322,10926.322 +3254,2025-06-10T09:52:05.558203-07:00,1006.1549072265625,10.938309,10938.309 +3255,2025-06-10T09:52:16.478232-07:00,1006.157958984375,10.920029,10920.029 +3256,2025-06-10T09:52:27.405919-07:00,1006.1598510742188,10.927687,10927.687 +3257,2025-06-10T09:52:38.338909-07:00,1006.14501953125,10.93299,10932.99 +3258,2025-06-10T09:52:49.275547-07:00,1006.1417236328125,10.936638,10936.638 +3259,2025-06-10T09:53:00.209177-07:00,1006.1351318359375,10.93363,10933.63 +3260,2025-06-10T09:53:11.138544-07:00,1006.1238403320312,10.929367,10929.367 +3261,2025-06-10T09:53:22.070183-07:00,1006.1351318359375,10.931639,10931.639 +3262,2025-06-10T09:53:32.993957-07:00,1006.1466674804688,10.923774,10923.774 +3263,2025-06-10T09:53:43.934178-07:00,1006.1598510742188,10.940221,10940.221 +3264,2025-06-10T09:53:54.858067-07:00,1006.1317749023438,10.923889,10923.889 +3265,2025-06-10T09:54:05.777884-07:00,1006.1334228515625,10.919817,10919.817 +3266,2025-06-10T09:54:16.709919-07:00,1006.1035766601562,10.932035,10932.035 +3267,2025-06-10T09:54:27.648981-07:00,1006.1005249023438,10.939062,10939.062 +3268,2025-06-10T09:54:38.584059-07:00,1006.1088256835938,10.935078,10935.078 +3269,2025-06-10T09:54:49.511924-07:00,1006.125,10.927865,10927.865 +3270,2025-06-10T09:55:00.448396-07:00,1006.11669921875,10.936472,10936.472 +3271,2025-06-10T09:55:11.377909-07:00,1006.107177734375,10.929513,10929.513 +3272,2025-06-10T09:55:22.298897-07:00,1006.0939331054688,10.920988,10920.988 +3273,2025-06-10T09:55:33.234076-07:00,1006.075927734375,10.935179,10935.179 +3274,2025-06-10T09:55:44.161919-07:00,1006.0789184570312,10.927843,10927.843 +3275,2025-06-10T09:55:55.094328-07:00,1006.08544921875,10.932409,10932.409 +3276,2025-06-10T09:56:06.023965-07:00,1006.0772705078125,10.929637,10929.637 +3277,2025-06-10T09:56:16.948245-07:00,1006.06103515625,10.92428,10924.28 +3278,2025-06-10T09:56:27.886917-07:00,1006.0890502929688,10.938672,10938.672 +3279,2025-06-10T09:56:38.815871-07:00,1006.0904541015625,10.928954,10928.954 +3280,2025-06-10T09:56:49.752919-07:00,1006.1004028320312,10.937048,10937.048 +3281,2025-06-10T09:57:00.674328-07:00,1006.1214599609375,10.921409,10921.409 +3282,2025-06-10T09:57:11.611888-07:00,1006.0640869140625,10.93756,10937.56 +3283,2025-06-10T09:57:22.546344-07:00,1006.1004028320312,10.934456,10934.456 +3284,2025-06-10T09:57:33.478160-07:00,1006.0723266601562,10.931816,10931.816 +3285,2025-06-10T09:57:44.411583-07:00,1006.0509643554688,10.933423,10933.423 +3286,2025-06-10T09:57:55.337917-07:00,1006.0525512695312,10.926334,10926.334 +3287,2025-06-10T09:58:06.267346-07:00,1006.0740356445312,10.929429,10929.429 +3288,2025-06-10T09:58:17.206124-07:00,1006.0608520507812,10.938778,10938.778 +3289,2025-06-10T09:58:28.135923-07:00,1006.0310668945312,10.929799,10929.799 +3290,2025-06-10T09:58:39.067917-07:00,1006.0740356445312,10.931994,10931.994 +3291,2025-06-10T09:58:50.010006-07:00,1006.0114135742188,10.942089,10942.089 +3292,2025-06-10T09:59:00.932904-07:00,1006.049560546875,10.922898,10922.898 +3293,2025-06-10T09:59:11.864921-07:00,1006.0621948242188,10.932017,10932.017 +3294,2025-06-10T09:59:22.789898-07:00,1006.0639038085938,10.924977,10924.977 +3295,2025-06-10T09:59:33.724252-07:00,1006.049072265625,10.934354,10934.354 +3296,2025-06-10T09:59:44.657919-07:00,1006.0147705078125,10.933667,10933.667 +3297,2025-06-10T09:59:55.590061-07:00,1006.01611328125,10.932142,10932.142 +3298,2025-06-10T10:00:06.524959-07:00,1005.9998168945312,10.934898,10934.898 +3299,2025-06-10T10:00:17.450312-07:00,1006.0441284179688,10.925353,10925.353 +3300,2025-06-10T10:00:28.388920-07:00,1006.01611328125,10.938608,10938.608 +3301,2025-06-10T10:00:39.316965-07:00,1006.0131225585938,10.928045,10928.045 +3302,2025-06-10T10:00:50.246919-07:00,1006.0392456054688,10.929954,10929.954 +3303,2025-06-10T10:01:01.177252-07:00,1006.0213012695312,10.930333,10930.333 +3304,2025-06-10T10:01:12.118830-07:00,1006.029296875,10.941578,10941.578 +3305,2025-06-10T10:01:23.037069-07:00,1005.96533203125,10.918239,10918.239 +3306,2025-06-10T10:01:33.977936-07:00,1005.9998168945312,10.940867,10940.867 +3307,2025-06-10T10:01:44.900349-07:00,1006.0015869140625,10.922413,10922.413 +3308,2025-06-10T10:01:55.830913-07:00,1005.9537353515625,10.930564,10930.564 +3309,2025-06-10T10:02:06.764882-07:00,1005.9884643554688,10.933969,10933.969 +3310,2025-06-10T10:02:17.687839-07:00,1005.9963989257812,10.922957,10922.957 +3311,2025-06-10T10:02:28.626346-07:00,1006.0145263671875,10.938507,10938.507 +3312,2025-06-10T10:02:39.557873-07:00,1005.9423217773438,10.931527,10931.527 +3313,2025-06-10T10:02:50.485179-07:00,1005.9651489257812,10.927306,10927.306 +3314,2025-06-10T10:03:01.417504-07:00,1005.98486328125,10.932325,10932.325 +3315,2025-06-10T10:03:12.343201-07:00,1005.97998046875,10.925697,10925.697 +3316,2025-06-10T10:03:23.281160-07:00,1005.98828125,10.937959,10937.959 +3317,2025-06-10T10:03:34.210264-07:00,1005.986572265625,10.929104,10929.104 +3318,2025-06-10T10:03:45.132046-07:00,1005.9436645507812,10.921782,10921.782 +3319,2025-06-10T10:03:56.066420-07:00,1005.9717407226562,10.934374,10934.374 +3320,2025-06-10T10:04:06.995931-07:00,1005.9502563476562,10.929511,10929.511 +3321,2025-06-10T10:04:17.919063-07:00,1005.9453125,10.923132,10923.132 +3322,2025-06-10T10:04:28.847274-07:00,1005.9436645507812,10.928211,10928.211 +3323,2025-06-10T10:04:39.785159-07:00,1005.9568481445312,10.937885,10937.885 +3324,2025-06-10T10:04:50.715050-07:00,1005.9684448242188,10.929891,10929.891 +3325,2025-06-10T10:05:01.639136-07:00,1005.90283203125,10.924086,10924.086 +3326,2025-06-10T10:05:12.567440-07:00,1005.9453125,10.928304,10928.304 +3327,2025-06-10T10:05:23.490061-07:00,1005.9093627929688,10.922621,10922.621 +3328,2025-06-10T10:05:34.412910-07:00,1005.9208374023438,10.922849,10922.849 +3329,2025-06-10T10:05:45.346351-07:00,1005.942138671875,10.933441,10933.441 +3330,2025-06-10T10:05:56.267912-07:00,1005.9140625,10.921561,10921.561 +3331,2025-06-10T10:06:07.193397-07:00,1005.9041137695312,10.925485,10925.485 +3332,2025-06-10T10:06:18.119169-07:00,1005.8975830078125,10.925772,10925.772 +3333,2025-06-10T10:06:29.048919-07:00,1005.9140625,10.92975,10929.75 +3334,2025-06-10T10:06:39.976923-07:00,1005.9404907226562,10.928004,10928.004 +3335,2025-06-10T10:06:50.904083-07:00,1005.935546875,10.92716,10927.16 +3336,2025-06-10T10:07:01.842419-07:00,1005.938720703125,10.938336,10938.336 +3337,2025-06-10T10:07:12.763920-07:00,1005.92724609375,10.921501,10921.501 +3338,2025-06-10T10:07:23.685114-07:00,1005.9255981445312,10.921194,10921.194 +3339,2025-06-10T10:07:34.615917-07:00,1005.9092407226562,10.930803,10930.803 +3340,2025-06-10T10:07:45.545079-07:00,1005.89599609375,10.929162,10929.162 +3341,2025-06-10T10:07:56.477919-07:00,1005.907470703125,10.93284,10932.84 +3342,2025-06-10T10:08:07.406157-07:00,1005.9009399414062,10.928238,10928.238 +3343,2025-06-10T10:08:18.336908-07:00,1005.9453125,10.930751,10930.751 +3344,2025-06-10T10:08:29.264657-07:00,1005.9190063476562,10.927749,10927.749 +3345,2025-06-10T10:08:40.193223-07:00,1005.9207763671875,10.928566,10928.566 +3346,2025-06-10T10:08:51.113912-07:00,1005.89599609375,10.920689,10920.689 +3347,2025-06-10T10:09:02.043797-07:00,1005.901123046875,10.929885,10929.885 +3348,2025-06-10T10:09:12.981919-07:00,1005.8908081054688,10.938122,10938.122 +3349,2025-06-10T10:09:23.905222-07:00,1005.9419555664062,10.923303,10923.303 +3350,2025-06-10T10:09:34.834923-07:00,1005.9076538085938,10.929701,10929.701 +3351,2025-06-10T10:09:45.760913-07:00,1005.88623046875,10.92599,10925.99 +3352,2025-06-10T10:09:56.691899-07:00,1005.917236328125,10.930986,10930.986 +3353,2025-06-10T10:10:07.626931-07:00,1005.9059448242188,10.935032,10935.032 +3354,2025-06-10T10:10:18.551087-07:00,1005.917236328125,10.924156,10924.156 +3355,2025-06-10T10:10:29.483057-07:00,1005.8975219726562,10.93197,10931.97 +3356,2025-06-10T10:10:40.413907-07:00,1005.912353515625,10.93085,10930.85 +3357,2025-06-10T10:10:51.333924-07:00,1005.9188842773438,10.920017,10920.017 +3358,2025-06-10T10:11:02.270359-07:00,1005.917236328125,10.936435,10936.435 +3359,2025-06-10T10:11:13.197950-07:00,1005.9238891601562,10.927591,10927.591 +3360,2025-06-10T10:11:24.114929-07:00,1005.9664306640625,10.916979,10916.979 +3361,2025-06-10T10:11:35.049631-07:00,1005.9406127929688,10.934702,10934.702 +3362,2025-06-10T10:11:45.972919-07:00,1005.9287719726562,10.923288,10923.288 +3363,2025-06-10T10:11:56.907372-07:00,1005.951904296875,10.934453,10934.453 +3364,2025-06-10T10:12:07.839899-07:00,1005.9188842773438,10.932527,10932.527 +3365,2025-06-10T10:12:18.763548-07:00,1005.9089965820312,10.923649,10923.649 +3366,2025-06-10T10:12:29.693952-07:00,1005.9188842773438,10.930404,10930.404 +3367,2025-06-10T10:12:40.626414-07:00,1005.925537109375,10.932462,10932.462 +3368,2025-06-10T10:12:51.550917-07:00,1005.9400634765625,10.924503,10924.503 +3369,2025-06-10T10:13:02.483677-07:00,1005.9400634765625,10.93276,10932.76 +3370,2025-06-10T10:13:13.406920-07:00,1005.9156494140625,10.923243,10923.243 +3371,2025-06-10T10:13:24.341859-07:00,1005.9156494140625,10.934939,10934.939 +3372,2025-06-10T10:13:35.270923-07:00,1005.93701171875,10.929064,10929.064 +3373,2025-06-10T10:13:46.197203-07:00,1005.9716186523438,10.92628,10926.28 +3374,2025-06-10T10:13:57.115598-07:00,1005.9304809570312,10.918395,10918.395 +3375,2025-06-10T10:14:08.039910-07:00,1005.895751953125,10.924312,10924.312 +3376,2025-06-10T10:14:18.970915-07:00,1005.9156494140625,10.931005,10931.005 +3377,2025-06-10T10:14:29.901906-07:00,1005.917236328125,10.930991,10930.991 +3378,2025-06-10T10:14:40.835593-07:00,1005.938720703125,10.933687,10933.687 +3379,2025-06-10T10:14:51.770527-07:00,1005.93212890625,10.934934,10934.934 +3380,2025-06-10T10:15:02.697083-07:00,1005.9238891601562,10.926556,10926.556 +3381,2025-06-10T10:15:13.629463-07:00,1005.938720703125,10.93238,10932.38 +3382,2025-06-10T10:15:24.554919-07:00,1005.9417114257812,10.925456,10925.456 +3383,2025-06-10T10:15:35.489423-07:00,1005.9188842773438,10.934504,10934.504 +3384,2025-06-10T10:15:46.417919-07:00,1005.9188842773438,10.928496,10928.496 +3385,2025-06-10T10:15:57.348365-07:00,1005.9188842773438,10.930446,10930.446 +3386,2025-06-10T10:16:08.280906-07:00,1005.93212890625,10.932541,10932.541 +3387,2025-06-10T10:16:19.205084-07:00,1005.9533081054688,10.924178,10924.178 +3388,2025-06-10T10:16:30.138702-07:00,1005.9400634765625,10.933618,10933.618 +3389,2025-06-10T10:16:41.062626-07:00,1005.9071655273438,10.923924,10923.924 +3390,2025-06-10T10:16:51.989956-07:00,1005.9202880859375,10.92733,10927.33 +3391,2025-06-10T10:17:02.924081-07:00,1005.90576171875,10.934125,10934.125 +3392,2025-06-10T10:17:13.858188-07:00,1005.9088134765625,10.934107,10934.107 +3393,2025-06-10T10:17:24.781280-07:00,1005.9681396484375,10.923092,10923.092 +3394,2025-06-10T10:17:35.713986-07:00,1005.9238891601562,10.932706,10932.706 +3395,2025-06-10T10:17:46.643134-07:00,1005.9417114257812,10.929148,10929.148 +3396,2025-06-10T10:17:57.571918-07:00,1005.9285888671875,10.928784,10928.784 +3397,2025-06-10T10:18:08.512145-07:00,1005.9664306640625,10.940227,10940.227 +3398,2025-06-10T10:18:19.442563-07:00,1005.9812622070312,10.930418,10930.418 +3399,2025-06-10T10:18:30.376464-07:00,1005.8926391601562,10.933901,10933.901 +3400,2025-06-10T10:18:41.295906-07:00,1005.8992309570312,10.919442,10919.442 +3401,2025-06-10T10:18:52.233743-07:00,1005.9220581054688,10.937837,10937.837 +3402,2025-06-10T10:19:03.155496-07:00,1005.9088134765625,10.921753,10921.753 +3403,2025-06-10T10:19:14.089421-07:00,1005.9021606445312,10.933925,10933.925 +3404,2025-06-10T10:19:25.013632-07:00,1005.9021606445312,10.924211,10924.211 +3405,2025-06-10T10:19:35.947231-07:00,1005.9104614257812,10.933599,10933.599 +3406,2025-06-10T10:19:46.876425-07:00,1005.8956298828125,10.929194,10929.194 +3407,2025-06-10T10:19:57.810919-07:00,1005.8956298828125,10.934494,10934.494 +3408,2025-06-10T10:20:08.733895-07:00,1005.9170532226562,10.922976,10922.976 +3409,2025-06-10T10:20:19.667589-07:00,1005.9236450195312,10.933694,10933.694 +3410,2025-06-10T10:20:30.597466-07:00,1005.9039306640625,10.929877,10929.877 +3411,2025-06-10T10:20:41.518179-07:00,1005.8759155273438,10.920713,10920.713 +3412,2025-06-10T10:20:52.450988-07:00,1005.906982421875,10.932809,10932.809 +3413,2025-06-10T10:21:03.375275-07:00,1005.911865234375,10.924287,10924.287 +3414,2025-06-10T10:21:14.304073-07:00,1005.8973388671875,10.928798,10928.798 +3415,2025-06-10T10:21:25.241165-07:00,1005.8693237304688,10.937092,10937.092 +3416,2025-06-10T10:21:36.166917-07:00,1005.8973388671875,10.925752,10925.752 +3417,2025-06-10T10:21:47.108999-07:00,1005.87890625,10.942082,10942.082 +3418,2025-06-10T10:21:58.034919-07:00,1005.906982421875,10.92592,10925.92 +3419,2025-06-10T10:22:08.963378-07:00,1005.89208984375,10.928459,10928.459 +3420,2025-06-10T10:22:19.892923-07:00,1005.8973388671875,10.929545,10929.545 +3421,2025-06-10T10:22:30.828726-07:00,1005.8908081054688,10.935803,10935.803 +3422,2025-06-10T10:22:41.749914-07:00,1005.9104614257812,10.921188,10921.188 +3423,2025-06-10T10:22:52.684170-07:00,1005.9530639648438,10.934256,10934.256 +3424,2025-06-10T10:23:03.606044-07:00,1005.9315795898438,10.921874,10921.874 +3425,2025-06-10T10:23:14.541047-07:00,1005.9315795898438,10.935003,10935.003 +3426,2025-06-10T10:23:25.461919-07:00,1005.9170532226562,10.920872,10920.872 +3427,2025-06-10T10:23:36.398088-07:00,1005.9071655273438,10.936169,10936.169 +3428,2025-06-10T10:23:47.325625-07:00,1005.9236450195312,10.927537,10927.537 +3429,2025-06-10T10:23:58.254189-07:00,1005.9315795898438,10.928564,10928.564 +3430,2025-06-10T10:24:09.189919-07:00,1005.9104614257812,10.93573,10935.73 +3431,2025-06-10T10:24:20.117909-07:00,1005.9039306640625,10.92799,10927.99 +3432,2025-06-10T10:24:31.053154-07:00,1005.91845703125,10.935245,10935.245 +3433,2025-06-10T10:24:41.980001-07:00,1005.885498046875,10.926847,10926.847 +3434,2025-06-10T10:24:52.918898-07:00,1005.8759155273438,10.938897,10938.897 +3435,2025-06-10T10:25:03.849942-07:00,1005.91845703125,10.931044,10931.044 +3436,2025-06-10T10:25:14.783927-07:00,1005.8825073242188,10.933985,10933.985 +3437,2025-06-10T10:25:25.709921-07:00,1005.9039306640625,10.925994,10925.994 +3438,2025-06-10T10:25:36.641919-07:00,1005.911865234375,10.931998,10931.998 +3439,2025-06-10T10:25:47.567137-07:00,1005.9170532226562,10.925218,10925.218 +3440,2025-06-10T10:25:58.510648-07:00,1005.920166015625,10.943511,10943.511 +3441,2025-06-10T10:26:09.437921-07:00,1005.87890625,10.927273,10927.273 +3442,2025-06-10T10:26:20.366892-07:00,1005.8890380859375,10.928971,10928.971 +3443,2025-06-10T10:26:31.300955-07:00,1005.91845703125,10.934063,10934.063 +3444,2025-06-10T10:26:42.235917-07:00,1005.898681640625,10.934962,10934.962 +3445,2025-06-10T10:26:53.158087-07:00,1005.8775634765625,10.92217,10922.17 +3446,2025-06-10T10:27:04.086940-07:00,1005.8693237304688,10.928853,10928.853 +3447,2025-06-10T10:27:15.026102-07:00,1005.8973388671875,10.939162,10939.162 +3448,2025-06-10T10:27:25.949302-07:00,1005.86767578125,10.9232,10923.2 +3449,2025-06-10T10:27:36.879111-07:00,1005.9249877929688,10.929809,10929.809 +3450,2025-06-10T10:27:47.811158-07:00,1005.9710693359375,10.932047,10932.047 +3451,2025-06-10T10:27:58.734908-07:00,1005.9236450195312,10.92375,10923.75 +3452,2025-06-10T10:28:09.663806-07:00,1005.9249877929688,10.928898,10928.898 +3453,2025-06-10T10:28:20.588906-07:00,1005.9039306640625,10.9251,10925.1 +3454,2025-06-10T10:28:31.519594-07:00,1005.9021606445312,10.930688,10930.688 +3455,2025-06-10T10:28:42.444268-07:00,1005.9332885742188,10.924674,10924.674 +3456,2025-06-10T10:28:53.376914-07:00,1005.9170532226562,10.932646,10932.646 +3457,2025-06-10T10:29:04.316921-07:00,1005.91357421875,10.940007,10940.007 +3458,2025-06-10T10:29:15.256566-07:00,1005.94482421875,10.939645,10939.645 +3459,2025-06-10T10:29:26.196496-07:00,1005.938232421875,10.93993,10939.93 +3460,2025-06-10T10:29:37.129850-07:00,1005.9662475585938,10.933354,10933.354 +3461,2025-06-10T10:29:48.075846-07:00,1005.938232421875,10.945996,10945.996 +3462,2025-06-10T10:29:59.008322-07:00,1005.94482421875,10.932476,10932.476 +3463,2025-06-10T10:30:09.944588-07:00,1005.9793701171875,10.936266,10936.266 +3464,2025-06-10T10:30:20.879331-07:00,1005.9398193359375,10.934743,10934.743 +3465,2025-06-10T10:30:31.812899-07:00,1005.9349975585938,10.933568,10933.568 +3466,2025-06-10T10:30:42.735729-07:00,1005.920166015625,10.92283,10922.83 +3467,2025-06-10T10:30:53.663826-07:00,1005.9366455078125,10.928097,10928.097 +3468,2025-06-10T10:31:04.593325-07:00,1005.9020385742188,10.929499,10929.499 +3469,2025-06-10T10:31:15.523327-07:00,1005.8937377929688,10.930002,10930.002 +3470,2025-06-10T10:31:26.459320-07:00,1005.9300537109375,10.935993,10935.993 +3471,2025-06-10T10:31:37.379308-07:00,1005.931396484375,10.919988,10919.988 +3472,2025-06-10T10:31:48.314479-07:00,1005.9085693359375,10.935171,10935.171 +3473,2025-06-10T10:31:59.234552-07:00,1005.9432983398438,10.920073,10920.073 +3474,2025-06-10T10:32:10.175615-07:00,1005.9578247070312,10.941063,10941.063 +3475,2025-06-10T10:32:21.104941-07:00,1005.9300537109375,10.929326,10929.326 +3476,2025-06-10T10:32:32.032668-07:00,1005.897216796875,10.927727,10927.727 +3477,2025-06-10T10:32:42.966365-07:00,1005.939697265625,10.933697,10933.697 +3478,2025-06-10T10:32:53.901325-07:00,1005.931396484375,10.93496,10934.96 +3479,2025-06-10T10:33:04.831607-07:00,1005.9050903320312,10.930282,10930.282 +3480,2025-06-10T10:33:15.770523-07:00,1005.913330078125,10.938916,10938.916 +3481,2025-06-10T10:33:26.700473-07:00,1005.9366455078125,10.92995,10929.95 +3482,2025-06-10T10:33:37.625306-07:00,1005.9182739257812,10.924833,10924.833 +3483,2025-06-10T10:33:48.550323-07:00,1005.931396484375,10.925017,10925.017 +3484,2025-06-10T10:33:59.479568-07:00,1005.919921875,10.929245,10929.245 +3485,2025-06-10T10:34:10.412327-07:00,1005.9182739257812,10.932759,10932.759 +3486,2025-06-10T10:34:21.340676-07:00,1005.9168701171875,10.928349,10928.349 +3487,2025-06-10T10:34:32.258556-07:00,1005.93798828125,10.91788,10917.88 +3488,2025-06-10T10:34:43.188322-07:00,1005.94140625,10.929766,10929.766 +3489,2025-06-10T10:34:54.109680-07:00,1005.931396484375,10.921358,10921.358 +3490,2025-06-10T10:35:05.043417-07:00,1005.9462280273438,10.933737,10933.737 +3491,2025-06-10T10:35:15.967090-07:00,1005.9300537109375,10.923673,10923.673 +3492,2025-06-10T10:35:26.896323-07:00,1005.9234619140625,10.929233,10929.233 +3493,2025-06-10T10:35:37.824351-07:00,1005.9218139648438,10.928028,10928.028 +3494,2025-06-10T10:35:48.757431-07:00,1005.93798828125,10.93308,10933.08 +3495,2025-06-10T10:35:59.692206-07:00,1005.9774780273438,10.934775,10934.775 +3496,2025-06-10T10:36:10.617325-07:00,1005.9512329101562,10.925119,10925.119 +3497,2025-06-10T10:36:21.556499-07:00,1005.9462280273438,10.939174,10939.174 +3498,2025-06-10T10:36:32.479306-07:00,1005.9415893554688,10.922807,10922.807 +3499,2025-06-10T10:36:43.419130-07:00,1005.944580078125,10.939824,10939.824 +3500,2025-06-10T10:36:54.346310-07:00,1005.9300537109375,10.92718,10927.18 +3501,2025-06-10T10:37:05.270312-07:00,1005.95947265625,10.924002,10924.002 +3502,2025-06-10T10:37:16.208464-07:00,1005.9578247070312,10.938152,10938.152 +3503,2025-06-10T10:37:27.138557-07:00,1005.95947265625,10.930093,10930.093 +3504,2025-06-10T10:37:38.062356-07:00,1005.9462280273438,10.923799,10923.799 +3505,2025-06-10T10:37:49.000363-07:00,1005.984130859375,10.938007,10938.007 +3506,2025-06-10T10:37:59.935469-07:00,1005.9611206054688,10.935106,10935.106 +3507,2025-06-10T10:38:10.870987-07:00,1005.966064453125,10.935518,10935.518 +3508,2025-06-10T10:38:21.799324-07:00,1005.952880859375,10.928337,10928.337 +3509,2025-06-10T10:38:32.737665-07:00,1005.98095703125,10.938341,10938.341 +3510,2025-06-10T10:38:43.673323-07:00,1005.9888916015625,10.935658,10935.658 +3511,2025-06-10T10:38:54.614327-07:00,1005.9822387695312,10.941004,10941.004 +3512,2025-06-10T10:39:05.545323-07:00,1005.9954833984375,10.930996,10930.996 +3513,2025-06-10T10:39:16.478326-07:00,1005.9625244140625,10.933003,10933.003 +3514,2025-06-10T10:39:27.421645-07:00,1005.9940795898438,10.943319,10943.319 +3515,2025-06-10T10:39:38.357078-07:00,1005.9743041992188,10.935433,10935.433 +3516,2025-06-10T10:39:49.284453-07:00,1006.011962890625,10.927375,10927.375 +3517,2025-06-10T10:40:00.222323-07:00,1006.0072631835938,10.93787,10937.87 +3518,2025-06-10T10:40:11.153356-07:00,1005.9888916015625,10.931033,10931.033 +3519,2025-06-10T10:40:22.081306-07:00,1006.0349731445312,10.92795,10927.95 +3520,2025-06-10T10:40:33.014000-07:00,1006.0072631835938,10.932694,10932.694 +3521,2025-06-10T10:40:43.947322-07:00,1006.0103149414062,10.933322,10933.322 +3522,2025-06-10T10:40:54.883427-07:00,1005.9857788085938,10.936105,10936.105 +3523,2025-06-10T10:41:05.817595-07:00,1006.0020141601562,10.934168,10934.168 +3524,2025-06-10T10:41:16.743725-07:00,1006.03173828125,10.92613,10926.13 +3525,2025-06-10T10:41:27.686039-07:00,1006.030029296875,10.942314,10942.314 +3526,2025-06-10T10:41:38.621507-07:00,1005.9954833984375,10.935468,10935.468 +3527,2025-06-10T10:41:49.555645-07:00,1005.966064453125,10.934138,10934.138 +3528,2025-06-10T10:42:00.490474-07:00,1005.9611206054688,10.934829,10934.829 +3529,2025-06-10T10:42:11.434310-07:00,1005.9822387695312,10.943836,10943.836 +3530,2025-06-10T10:42:22.363306-07:00,1006.0253295898438,10.928996,10928.996 +3531,2025-06-10T10:42:33.299325-07:00,1006.0204467773438,10.936019,10936.019 +3532,2025-06-10T10:42:44.232684-07:00,1006.0086059570312,10.933359,10933.359 +3533,2025-06-10T10:42:55.166618-07:00,1005.979248046875,10.933934,10933.934 +3534,2025-06-10T10:43:06.090399-07:00,1005.95947265625,10.923781,10923.781 +3535,2025-06-10T10:43:17.035323-07:00,1005.9857788085938,10.944924,10944.924 +3536,2025-06-10T10:43:27.970471-07:00,1005.97265625,10.935148,10935.148 +3537,2025-06-10T10:43:38.909347-07:00,1005.9874877929688,10.938876,10938.876 +3538,2025-06-10T10:43:49.844303-07:00,1005.9743041992188,10.934956,10934.956 +3539,2025-06-10T10:44:00.774066-07:00,1005.9743041992188,10.929763,10929.763 +3540,2025-06-10T10:44:11.712322-07:00,1005.9940795898438,10.938256,10938.256 +3541,2025-06-10T10:44:22.646912-07:00,1006.0234375,10.93459,10934.59 +3542,2025-06-10T10:44:33.576327-07:00,1005.9954833984375,10.929415,10929.415 +3543,2025-06-10T10:44:44.514931-07:00,1006.016845703125,10.938604,10938.604 +3544,2025-06-10T10:44:55.437564-07:00,1005.998779296875,10.922633,10922.633 +3545,2025-06-10T10:45:06.370876-07:00,1005.9921875,10.933312,10933.312 +3546,2025-06-10T10:45:17.293460-07:00,1006.00537109375,10.922584,10922.584 +3547,2025-06-10T10:45:28.227845-07:00,1005.98388671875,10.934385,10934.385 +3548,2025-06-10T10:45:39.157477-07:00,1005.9822387695312,10.929632,10929.632 +3549,2025-06-10T10:45:50.085421-07:00,1005.9921875,10.927944,10927.944 +3550,2025-06-10T10:46:01.015329-07:00,1005.9888916015625,10.929908,10929.908 +3551,2025-06-10T10:46:11.942876-07:00,1006.0037231445312,10.927547,10927.547 +3552,2025-06-10T10:46:22.877306-07:00,1006.0133056640625,10.93443,10934.43 +3553,2025-06-10T10:46:33.810614-07:00,1005.98388671875,10.933308,10933.308 +3554,2025-06-10T10:46:44.734703-07:00,1005.9921875,10.924089,10924.089 +3555,2025-06-10T10:46:55.663325-07:00,1006.0198974609375,10.928622,10928.622 +3556,2025-06-10T10:47:06.599325-07:00,1006.0133056640625,10.936,10936.0 +3557,2025-06-10T10:47:17.532274-07:00,1005.998779296875,10.932949,10932.949 +3558,2025-06-10T10:47:28.458853-07:00,1006.0167236328125,10.926579,10926.579 +3559,2025-06-10T10:47:39.393701-07:00,1006.0018920898438,10.934848,10934.848 +3560,2025-06-10T10:47:50.326324-07:00,1006.0101318359375,10.932623,10932.623 +3561,2025-06-10T10:48:01.253739-07:00,1006.036376953125,10.927415,10927.415 +3562,2025-06-10T10:48:12.187668-07:00,1006.0562744140625,10.933929,10933.929 +3563,2025-06-10T10:48:23.116308-07:00,1006.0232543945312,10.92864,10928.64 +3564,2025-06-10T10:48:34.044539-07:00,1006.0562744140625,10.928231,10928.231 +3565,2025-06-10T10:48:44.978485-07:00,1006.0645141601562,10.933946,10933.946 +3566,2025-06-10T10:48:55.900769-07:00,1006.0430297851562,10.922284,10922.284 +3567,2025-06-10T10:49:06.836292-07:00,1006.07763671875,10.935523,10935.523 +3568,2025-06-10T10:49:17.763732-07:00,1006.0496215820312,10.92744,10927.44 +3569,2025-06-10T10:49:28.692327-07:00,1006.036376953125,10.928595,10928.595 +3570,2025-06-10T10:49:39.613321-07:00,1006.0315551757812,10.920994,10920.994 +3571,2025-06-10T10:49:50.540005-07:00,1006.0232543945312,10.926684,10926.684 +3572,2025-06-10T10:50:01.472310-07:00,1006.0645141601562,10.932305,10932.305 +3573,2025-06-10T10:50:12.406811-07:00,1006.044677734375,10.934501,10934.501 +3574,2025-06-10T10:50:23.336379-07:00,1006.07763671875,10.929568,10929.568 +3575,2025-06-10T10:50:34.258403-07:00,1006.05126953125,10.922024,10922.024 +3576,2025-06-10T10:50:45.192325-07:00,1006.03955078125,10.933922,10933.922 +3577,2025-06-10T10:50:56.117319-07:00,1006.0562744140625,10.924994,10924.994 +3578,2025-06-10T10:51:07.041355-07:00,1006.0460815429688,10.924036,10924.036 +3579,2025-06-10T10:51:17.971314-07:00,1006.0658569335938,10.929959,10929.959 +3580,2025-06-10T10:51:28.897376-07:00,1006.0740356445312,10.926062,10926.062 +3581,2025-06-10T10:51:39.822570-07:00,1006.0609130859375,10.925194,10925.194 +3582,2025-06-10T10:51:50.749682-07:00,1006.05126953125,10.927112,10927.112 +3583,2025-06-10T10:52:01.686510-07:00,1006.0263061523438,10.936828,10936.828 +3584,2025-06-10T10:52:12.614752-07:00,1006.0645141601562,10.928242,10928.242 +3585,2025-06-10T10:52:23.543367-07:00,1006.0790405273438,10.928615,10928.615 +3586,2025-06-10T10:52:34.483601-07:00,1006.0758056640625,10.940234,10940.234 +3587,2025-06-10T10:52:45.412518-07:00,1006.0543823242188,10.928917,10928.917 +3588,2025-06-10T10:52:56.341567-07:00,1006.0609130859375,10.929049,10929.049 +3589,2025-06-10T10:53:07.262307-07:00,1006.0592041015625,10.92074,10920.74 +3590,2025-06-10T10:53:18.192589-07:00,1006.0711059570312,10.930282,10930.282 +3591,2025-06-10T10:53:29.120725-07:00,1006.0790405273438,10.928136,10928.136 +3592,2025-06-10T10:53:40.048817-07:00,1006.0987548828125,10.928092,10928.092 +3593,2025-06-10T10:53:50.984327-07:00,1006.0724487304688,10.93551,10935.51 +3594,2025-06-10T10:54:01.923459-07:00,1006.0740356445312,10.939132,10939.132 +3595,2025-06-10T10:54:12.858455-07:00,1006.0740356445312,10.934996,10934.996 +3596,2025-06-10T10:54:23.792053-07:00,1006.084228515625,10.933598,10933.598 +3597,2025-06-10T10:54:34.714645-07:00,1006.1218872070312,10.922592,10922.592 +3598,2025-06-10T10:54:45.644543-07:00,1006.0740356445312,10.929898,10929.898 +3599,2025-06-10T10:54:56.578643-07:00,1006.0889892578125,10.9341,10934.1 +3600,2025-06-10T10:55:07.509365-07:00,1006.0873413085938,10.930722,10930.722 +3601,2025-06-10T10:55:18.436381-07:00,1006.0806884765625,10.927016,10927.016 +3602,2025-06-10T10:55:29.364325-07:00,1006.0740356445312,10.927944,10927.944 +3603,2025-06-10T10:55:40.295765-07:00,1006.0675048828125,10.93144,10931.44 +3604,2025-06-10T10:55:51.220326-07:00,1006.0804443359375,10.924561,10924.561 +3605,2025-06-10T10:56:02.143822-07:00,1006.0656127929688,10.923496,10923.496 +3606,2025-06-10T10:56:13.074327-07:00,1006.06396484375,10.930505,10930.505 +3607,2025-06-10T10:56:24.006371-07:00,1006.08544921875,10.932044,10932.044 +3608,2025-06-10T10:56:34.933355-07:00,1006.0543823242188,10.926984,10926.984 +3609,2025-06-10T10:56:45.858319-07:00,1006.0231323242188,10.924964,10924.964 +3610,2025-06-10T10:56:56.787106-07:00,1006.0460815429688,10.928787,10928.787 +3611,2025-06-10T10:57:07.712302-07:00,1006.0740356445312,10.925196,10925.196 +3612,2025-06-10T10:57:18.643838-07:00,1006.0692138671875,10.931536,10931.536 +3613,2025-06-10T10:57:29.569545-07:00,1006.0772094726562,10.925707,10925.707 +3614,2025-06-10T10:57:40.506141-07:00,1006.0494384765625,10.936596,10936.596 +3615,2025-06-10T10:57:51.429373-07:00,1006.0560302734375,10.923232,10923.232 +3616,2025-06-10T10:58:02.357307-07:00,1006.0758056640625,10.927934,10927.934 +3617,2025-06-10T10:58:13.286658-07:00,1006.0494384765625,10.929351,10929.351 +3618,2025-06-10T10:58:24.219319-07:00,1006.0692138671875,10.932661,10932.661 +3619,2025-06-10T10:58:35.142636-07:00,1006.0609130859375,10.923317,10923.317 +3620,2025-06-10T10:58:46.077483-07:00,1006.0806884765625,10.934847,10934.847 +3621,2025-06-10T10:58:57.001024-07:00,1006.0806884765625,10.923541,10923.541 +3622,2025-06-10T10:59:07.928355-07:00,1006.0692138671875,10.927331,10927.331 +3623,2025-06-10T10:59:18.857511-07:00,1006.09033203125,10.929156,10929.156 +3624,2025-06-10T10:59:29.780676-07:00,1006.1051635742188,10.923165,10923.165 +3625,2025-06-10T10:59:40.715316-07:00,1006.0758056640625,10.93464,10934.64 +3626,2025-06-10T10:59:51.650316-07:00,1006.0692138671875,10.935,10935.0 +3627,2025-06-10T11:00:02.583340-07:00,1006.0772094726562,10.933024,10933.024 +3628,2025-06-10T11:00:13.519545-07:00,1006.06396484375,10.936205,10936.205 +3629,2025-06-10T11:00:24.453568-07:00,1006.0870971679688,10.934023,10934.023 +3630,2025-06-10T11:00:35.388829-07:00,1006.0722045898438,10.935261,10935.261 +3631,2025-06-10T11:00:46.322647-07:00,1006.057373046875,10.933818,10933.818 +3632,2025-06-10T11:00:57.248431-07:00,1006.092041015625,10.925784,10925.784 +3633,2025-06-10T11:01:08.187812-07:00,1006.092041015625,10.939381,10939.381 +3634,2025-06-10T11:01:19.117449-07:00,1006.09033203125,10.929637,10929.637 +3635,2025-06-10T11:01:30.050848-07:00,1006.092041015625,10.933399,10933.399 +3636,2025-06-10T11:01:40.982545-07:00,1006.092041015625,10.931697,10931.697 +3637,2025-06-10T11:01:51.922382-07:00,1006.039306640625,10.939837,10939.837 +3638,2025-06-10T11:02:02.846308-07:00,1006.0376586914062,10.923926,10923.926 +3639,2025-06-10T11:02:13.782317-07:00,1006.0673217773438,10.936009,10936.009 +3640,2025-06-10T11:02:24.718422-07:00,1006.0494384765625,10.936105,10936.105 +3641,2025-06-10T11:02:35.640764-07:00,1006.005126953125,10.922342,10922.342 +3642,2025-06-10T11:02:46.575325-07:00,1006.0381469726562,10.934561,10934.561 +3643,2025-06-10T11:02:57.508516-07:00,1006.011962890625,10.933191,10933.191 +3644,2025-06-10T11:03:08.440567-07:00,1006.0283813476562,10.932051,10932.051 +3645,2025-06-10T11:03:19.374544-07:00,1006.0516967773438,10.933977,10933.977 +3646,2025-06-10T11:03:30.299545-07:00,1006.0074462890625,10.925001,10925.001 +3647,2025-06-10T11:03:41.237324-07:00,1006.0189208984375,10.937779,10937.779 +3648,2025-06-10T11:03:52.168611-07:00,1006.0172729492188,10.931287,10931.287 +3649,2025-06-10T11:04:03.097361-07:00,1006.03564453125,10.92875,10928.75 +3650,2025-06-10T11:04:14.026796-07:00,1006.0225219726562,10.929435,10929.435 +3651,2025-06-10T11:04:24.959320-07:00,1006.020751953125,10.932524,10932.524 +3652,2025-06-10T11:04:35.893627-07:00,1006.029052734375,10.934307,10934.307 +3653,2025-06-10T11:04:46.823380-07:00,1006.0225219726562,10.929753,10929.753 +3654,2025-06-10T11:04:57.761489-07:00,1005.98779296875,10.938109,10938.109 +3655,2025-06-10T11:05:08.692324-07:00,1005.9829711914062,10.930835,10930.835 +3656,2025-06-10T11:05:19.620546-07:00,1005.98779296875,10.928222,10928.222 +3657,2025-06-10T11:05:30.555309-07:00,1006.00927734375,10.934763,10934.763 +3658,2025-06-10T11:05:41.490356-07:00,1006.002685546875,10.935047,10935.047 +3659,2025-06-10T11:05:52.417353-07:00,1006.0142211914062,10.926997,10926.997 +3660,2025-06-10T11:06:03.352660-07:00,1006.0225219726562,10.935307,10935.307 +3661,2025-06-10T11:06:14.295325-07:00,1006.0518798828125,10.942665,10942.665 +3662,2025-06-10T11:06:25.226761-07:00,1006.0848388671875,10.931436,10931.436 +3663,2025-06-10T11:06:36.159698-07:00,1006.0601806640625,10.932937,10932.937 +3664,2025-06-10T11:06:47.104863-07:00,1006.0584106445312,10.945165,10945.165 +3665,2025-06-10T11:06:58.030354-07:00,1006.0156860351562,10.925491,10925.491 +3666,2025-06-10T11:07:08.963555-07:00,1006.0420532226562,10.933201,10933.201 +3667,2025-06-10T11:07:19.901616-07:00,1006.0354614257812,10.938061,10938.061 +3668,2025-06-10T11:07:30.840318-07:00,1006.0289306640625,10.938702,10938.702 +3669,2025-06-10T11:07:41.777602-07:00,1006.0613403320312,10.937284,10937.284 +3670,2025-06-10T11:07:52.705543-07:00,1006.048095703125,10.927941,10927.941 +3671,2025-06-10T11:08:03.635645-07:00,1006.0695190429688,10.930102,10930.102 +3672,2025-06-10T11:08:14.568563-07:00,1006.0234375,10.932918,10932.918 +3673,2025-06-10T11:08:25.502327-07:00,1006.025146484375,10.933764,10933.764 +3674,2025-06-10T11:08:36.435935-07:00,1006.0331420898438,10.933608,10933.608 +3675,2025-06-10T11:08:47.370457-07:00,1006.0331420898438,10.934522,10934.522 +3676,2025-06-10T11:08:58.293589-07:00,1005.9905395507812,10.923132,10923.132 +3677,2025-06-10T11:09:09.224734-07:00,1006.057861328125,10.931145,10931.145 +3678,2025-06-10T11:09:20.163359-07:00,1006.0328979492188,10.938625,10938.625 +3679,2025-06-10T11:09:31.088668-07:00,1006.0117797851562,10.925309,10925.309 +3680,2025-06-10T11:09:42.019566-07:00,1005.9902954101562,10.930898,10930.898 +3681,2025-06-10T11:09:52.949329-07:00,1006.0164794921875,10.929763,10929.763 +3682,2025-06-10T11:10:03.884317-07:00,1006.00830078125,10.934988,10934.988 +3683,2025-06-10T11:10:14.818368-07:00,1006.0231323242188,10.934051,10934.051 +3684,2025-06-10T11:10:25.745316-07:00,1005.9949951171875,10.926948,10926.948 +3685,2025-06-10T11:10:36.679577-07:00,1005.9620971679688,10.934261,10934.261 +3686,2025-06-10T11:10:47.611528-07:00,1005.986572265625,10.931951,10931.951 +3687,2025-06-10T11:10:58.542874-07:00,1005.9932250976562,10.931346,10931.346 +3688,2025-06-10T11:11:09.471322-07:00,1005.9769287109375,10.928448,10928.448 +3689,2025-06-10T11:11:20.407357-07:00,1005.999755859375,10.936035,10936.035 +3690,2025-06-10T11:11:31.345382-07:00,1005.98828125,10.938025,10938.025 +3691,2025-06-10T11:11:42.266911-07:00,1006.0225830078125,10.921529,10921.529 +3692,2025-06-10T11:11:53.200332-07:00,1005.9734497070312,10.933421,10933.421 +3693,2025-06-10T11:12:04.135321-07:00,1006.0242309570312,10.934989,10934.989 +3694,2025-06-10T11:12:15.063588-07:00,1006.0028076171875,10.928267,10928.267 +3695,2025-06-10T11:12:25.999321-07:00,1005.9913330078125,10.935733,10935.733 +3696,2025-06-10T11:12:36.937636-07:00,1005.9962768554688,10.938315,10938.315 +3697,2025-06-10T11:12:47.862510-07:00,1006.008056640625,10.924874,10924.874 +3698,2025-06-10T11:12:58.801654-07:00,1006.0308837890625,10.939144,10939.144 +3699,2025-06-10T11:13:09.732312-07:00,1006.0014038085938,10.930658,10930.658 +3700,2025-06-10T11:13:20.661601-07:00,1006.0093994140625,10.929289,10929.289 +3701,2025-06-10T11:13:31.588327-07:00,1006.0045166015625,10.926726,10926.726 +3702,2025-06-10T11:13:42.529614-07:00,1006.0061645507812,10.941287,10941.287 +3703,2025-06-10T11:13:53.468322-07:00,1006.0259399414062,10.938708,10938.708 +3704,2025-06-10T11:14:04.397674-07:00,1006.0470581054688,10.929352,10929.352 +3705,2025-06-10T11:14:15.332320-07:00,1005.9798583984375,10.934646,10934.646 +3706,2025-06-10T11:14:26.265327-07:00,1005.9913330078125,10.933007,10933.007 +3707,2025-06-10T11:14:37.199490-07:00,1006.002685546875,10.934163,10934.163 +3708,2025-06-10T11:14:48.137569-07:00,1005.99951171875,10.938079,10938.079 +3709,2025-06-10T11:14:59.063323-07:00,1005.9650268554688,10.925754,10925.754 +3710,2025-06-10T11:15:10.003358-07:00,1005.9762573242188,10.940035,10940.035 +3711,2025-06-10T11:15:20.937640-07:00,1005.9564819335938,10.934282,10934.282 +3712,2025-06-10T11:15:31.860643-07:00,1005.9647827148438,10.923003,10923.003 +3713,2025-06-10T11:15:42.801670-07:00,1005.9664306640625,10.941027,10941.027 +3714,2025-06-10T11:15:53.735077-07:00,1005.9857177734375,10.933407,10933.407 +3715,2025-06-10T11:16:04.673577-07:00,1005.990966796875,10.9385,10938.5 +3716,2025-06-10T11:16:15.609860-07:00,1005.9742431640625,10.936283,10936.283 +3717,2025-06-10T11:16:26.550327-07:00,1006.0250244140625,10.940467,10940.467 +3718,2025-06-10T11:16:37.480562-07:00,1006.079345703125,10.930235,10930.235 +3719,2025-06-10T11:16:48.418419-07:00,1006.0086059570312,10.937857,10937.857 +3720,2025-06-10T11:16:59.364432-07:00,1006.05419921875,10.946013,10946.013 +3721,2025-06-10T11:17:10.309332-07:00,1006.0476684570312,10.9449,10944.9 +3722,2025-06-10T11:17:21.248342-07:00,1006.0575561523438,10.93901,10939.01 +3723,2025-06-10T11:17:32.194294-07:00,1006.024658203125,10.945952,10945.952 +3724,2025-06-10T11:17:43.127670-07:00,1006.0376586914062,10.933376,10933.376 +3725,2025-06-10T11:17:54.080031-07:00,1006.0406494140625,10.952361,10952.361 +3726,2025-06-10T11:18:05.015100-07:00,1006.0208740234375,10.935069,10935.069 +3727,2025-06-10T11:18:15.952829-07:00,1006.0123291015625,10.937729,10937.729 +3728,2025-06-10T11:18:26.888744-07:00,1006.036865234375,10.935915,10935.915 +3729,2025-06-10T11:18:37.822305-07:00,1006.04345703125,10.933561,10933.561 +3730,2025-06-10T11:18:48.762803-07:00,1006.0332641601562,10.940498,10940.498 +3731,2025-06-10T11:18:59.700636-07:00,1006.0415649414062,10.937833,10937.833 +3732,2025-06-10T11:19:10.638582-07:00,1006.0396728515625,10.937946,10937.946 +3733,2025-06-10T11:19:21.581606-07:00,1005.9905395507812,10.943024,10943.024 +3734,2025-06-10T11:19:31.151095-07:00,1006.0413818359375,9.569489,9569.489 +3735,2025-06-10T11:19:32.511316-07:00,1006.025146484375,1.360221,1360.221 +3736,2025-06-10T11:19:43.455387-07:00,1006.0331420898438,10.944071,10944.071 +3737,2025-06-10T11:19:54.394375-07:00,1006.038330078125,10.938988,10938.988 +3738,2025-06-10T11:20:05.330325-07:00,1006.051025390625,10.93595,10935.95 +3739,2025-06-10T11:20:16.264900-07:00,1006.0792236328125,10.934575,10934.575 +3740,2025-06-10T11:20:27.193353-07:00,1006.0773315429688,10.928453,10928.453 +3741,2025-06-10T11:20:38.128612-07:00,1006.064208984375,10.935259,10935.259 +3742,2025-06-10T11:20:49.067311-07:00,1006.0628051757812,10.938699,10938.699 +3743,2025-06-10T11:20:59.998351-07:00,1006.0693969726562,10.93104,10931.04 +3744,2025-06-10T11:21:10.936690-07:00,1006.07080078125,10.938339,10938.339 +3745,2025-06-10T11:21:21.871318-07:00,1006.051025390625,10.934628,10934.628 +3746,2025-06-10T11:21:32.811801-07:00,1006.0430297851562,10.940483,10940.483 +3747,2025-06-10T11:21:43.744549-07:00,1006.036376953125,10.932748,10932.748 +3748,2025-06-10T11:21:54.690341-07:00,1006.0957641601562,10.945792,10945.792 +3749,2025-06-10T11:22:05.630638-07:00,1006.0661010742188,10.940297,10940.297 +3750,2025-06-10T11:22:16.559685-07:00,1006.0744018554688,10.929047,10929.047 +3751,2025-06-10T11:22:27.493975-07:00,1006.0677490234375,10.93429,10934.29 +3752,2025-06-10T11:22:38.432310-07:00,1006.0396728515625,10.938335,10938.335 +3753,2025-06-10T11:22:49.367587-07:00,1006.0825805664062,10.935277,10935.277 +3754,2025-06-10T11:23:00.309403-07:00,1006.0744018554688,10.941816,10941.816 +3755,2025-06-10T11:23:11.245569-07:00,1006.0610961914062,10.936166,10936.166 +3756,2025-06-10T11:23:22.195433-07:00,1006.077880859375,10.949864,10949.864 +3757,2025-06-10T11:23:33.133078-07:00,1006.13720703125,10.937645,10937.645 +3758,2025-06-10T11:23:44.062318-07:00,1006.117431640625,10.92924,10929.24 +3759,2025-06-10T11:23:54.999846-07:00,1006.104248046875,10.937528,10937.528 +3760,2025-06-10T11:24:05.939388-07:00,1006.069580078125,10.939542,10939.542 +3761,2025-06-10T11:24:16.881310-07:00,1006.1140747070312,10.941922,10941.922 +3762,2025-06-10T11:24:27.810138-07:00,1006.1189575195312,10.928828,10928.828 +3763,2025-06-10T11:24:38.752467-07:00,1006.1240844726562,10.942329,10942.329 +3764,2025-06-10T11:24:49.689526-07:00,1006.11767578125,10.937059,10937.059 +3765,2025-06-10T11:25:00.624921-07:00,1006.0978393554688,10.935395,10935.395 +3766,2025-06-10T11:25:11.558325-07:00,1006.1044311523438,10.933404,10933.404 +3767,2025-06-10T11:25:22.504973-07:00,1006.0931396484375,10.946648,10946.648 +3768,2025-06-10T11:25:33.442296-07:00,1006.0945434570312,10.937323,10937.323 +3769,2025-06-10T11:25:44.382303-07:00,1006.0865478515625,10.940007,10940.007 +3770,2025-06-10T11:25:55.317604-07:00,1006.0980224609375,10.935301,10935.301 +3771,2025-06-10T11:26:06.263727-07:00,1006.1063232421875,10.946123,10946.123 +3772,2025-06-10T11:26:17.198573-07:00,1006.0783081054688,10.934846,10934.846 +3773,2025-06-10T11:26:28.142716-07:00,1006.1227416992188,10.944143,10944.143 +3774,2025-06-10T11:26:39.076308-07:00,1006.147216796875,10.933592,10933.592 +3775,2025-06-10T11:26:50.009327-07:00,1006.1243896484375,10.933019,10933.019 +3776,2025-06-10T11:27:00.946369-07:00,1006.1326293945312,10.937042,10937.042 +3777,2025-06-10T11:27:11.883358-07:00,1006.129150390625,10.936989,10936.989 +3778,2025-06-10T11:27:22.814862-07:00,1006.142333984375,10.931504,10931.504 +3779,2025-06-10T11:27:33.752455-07:00,1006.0914916992188,10.937593,10937.593 +3780,2025-06-10T11:27:44.689680-07:00,1006.0980224609375,10.937225,10937.225 +3781,2025-06-10T11:27:55.617324-07:00,1006.1063232421875,10.927644,10927.644 +3782,2025-06-10T11:28:06.538801-07:00,1006.1063232421875,10.921477,10921.477 +3783,2025-06-10T11:28:17.471310-07:00,1006.096435546875,10.932509,10932.509 +3784,2025-06-10T11:28:28.396834-07:00,1006.1260986328125,10.925524,10925.524 +3785,2025-06-10T11:28:39.327325-07:00,1006.1112670898438,10.930491,10930.491 +3786,2025-06-10T11:28:50.256966-07:00,1006.1046752929688,10.929641,10929.641 +3787,2025-06-10T11:29:01.187358-07:00,1006.0800170898438,10.930392,10930.392 +3788,2025-06-10T11:29:12.117317-07:00,1006.065185546875,10.929959,10929.959 +3789,2025-06-10T11:29:23.083754-07:00,1006.0783081054688,10.966437,10966.437 +3790,2025-06-10T11:29:34.009552-07:00,1006.0585327148438,10.925798,10925.798 +3791,2025-06-10T11:29:44.943932-07:00,1006.0914916992188,10.93438,10934.38 +3792,2025-06-10T11:29:55.875605-07:00,1006.1376342773438,10.931673,10931.673 +3793,2025-06-10T11:30:06.802179-07:00,1006.0783081054688,10.926574,10926.574 +3794,2025-06-10T11:30:17.737559-07:00,1006.0945434570312,10.93538,10935.38 +3795,2025-06-10T11:30:28.667853-07:00,1006.0996704101562,10.930294,10930.294 +3796,2025-06-10T11:30:39.600555-07:00,1006.0667724609375,10.932702,10932.702 +3797,2025-06-10T11:30:50.541313-07:00,1006.0123291015625,10.940758,10940.758 +3798,2025-06-10T11:31:01.471831-07:00,1006.0321655273438,10.930518,10930.518 +3799,2025-06-10T11:31:12.402634-07:00,1006.0404663085938,10.930803,10930.803 +3800,2025-06-10T11:31:23.342736-07:00,1006.0499877929688,10.940102,10940.102 +3801,2025-06-10T11:31:34.276565-07:00,1006.0321655273438,10.933829,10933.829 +3802,2025-06-10T11:31:45.223129-07:00,1006.0667724609375,10.946564,10946.564 +3803,2025-06-10T11:31:56.150635-07:00,1006.102783203125,10.927506,10927.506 +3804,2025-06-10T11:32:07.086605-07:00,1006.0879516601562,10.93597,10935.97 +3805,2025-06-10T11:32:18.019956-07:00,1006.0879516601562,10.933351,10933.351 +3806,2025-06-10T11:32:28.959569-07:00,1006.0865478515625,10.939613,10939.613 +3807,2025-06-10T11:32:39.893360-07:00,1006.0931396484375,10.933791,10933.791 +3808,2025-06-10T11:32:50.826610-07:00,1006.0865478515625,10.93325,10933.25 +3809,2025-06-10T11:33:01.763833-07:00,1006.1129760742188,10.937223,10937.223 +3810,2025-06-10T11:33:12.692122-07:00,1006.109375,10.928289,10928.289 +3811,2025-06-10T11:33:23.632933-07:00,1006.0783081054688,10.940811,10940.811 +3812,2025-06-10T11:33:34.575512-07:00,1006.1046752929688,10.942579,10942.579 +3813,2025-06-10T11:33:45.501817-07:00,1006.1224975585938,10.926305,10926.305 +3814,2025-06-10T11:33:56.444847-07:00,1006.0848388671875,10.94303,10943.03 +3815,2025-06-10T11:34:07.374808-07:00,1006.0931396484375,10.929961,10929.961 +3816,2025-06-10T11:34:18.314918-07:00,1006.0848388671875,10.94011,10940.11 +3817,2025-06-10T11:34:29.252561-07:00,1006.0800170898438,10.937643,10937.643 +3818,2025-06-10T11:34:40.189294-07:00,1006.1195068359375,10.936733,10936.733 +3819,2025-06-10T11:34:51.128850-07:00,1006.10107421875,10.939556,10939.556 +3820,2025-06-10T11:35:02.072830-07:00,1006.1143188476562,10.94398,10943.98 +3821,2025-06-10T11:35:13.018858-07:00,1006.107666015625,10.946028,10946.028 +3822,2025-06-10T11:35:23.959551-07:00,1006.1338500976562,10.940693,10940.693 +3823,2025-06-10T11:35:34.892559-07:00,1006.1129760742188,10.933008,10933.008 +3824,2025-06-10T11:35:45.823693-07:00,1006.10107421875,10.931134,10931.134 +3825,2025-06-10T11:35:56.757785-07:00,1006.1358032226562,10.934092,10934.092 +3826,2025-06-10T11:36:07.699696-07:00,1006.0848388671875,10.941911,10941.911 +3827,2025-06-10T11:36:18.629500-07:00,1006.0996704101562,10.929804,10929.804 +3828,2025-06-10T11:36:29.562549-07:00,1006.0800170898438,10.933049,10933.049 +3829,2025-06-10T11:36:40.497098-07:00,1006.140625,10.934549,10934.549 +3830,2025-06-10T11:36:51.427562-07:00,1006.1392822265625,10.930464,10930.464 +3831,2025-06-10T11:37:02.367914-07:00,1006.0783081054688,10.940352,10940.352 +3832,2025-06-10T11:37:13.300546-07:00,1006.1507568359375,10.932632,10932.632 +3833,2025-06-10T11:37:24.242561-07:00,1006.1112670898438,10.942015,10942.015 +3834,2025-06-10T11:37:35.174113-07:00,1006.102783203125,10.931552,10931.552 +3835,2025-06-10T11:37:46.110613-07:00,1006.0667724609375,10.9365,10936.5 +3836,2025-06-10T11:37:57.043984-07:00,1006.0800170898438,10.933371,10933.371 +3837,2025-06-10T11:38:07.978542-07:00,1006.068115234375,10.934558,10934.558 +3838,2025-06-10T11:38:18.916827-07:00,1006.0717163085938,10.938285,10938.285 +3839,2025-06-10T11:38:29.859790-07:00,1006.107666015625,10.942963,10942.963 +3840,2025-06-10T11:38:40.792555-07:00,1006.0601806640625,10.932765,10932.765 +3841,2025-06-10T11:38:51.721912-07:00,1006.0931396484375,10.929357,10929.357 +3842,2025-06-10T11:39:02.650431-07:00,1006.089599609375,10.928519,10928.519 +3843,2025-06-10T11:39:13.585014-07:00,1006.1046752929688,10.934583,10934.583 +3844,2025-06-10T11:39:24.507732-07:00,1006.0585327148438,10.922718,10922.718 +3845,2025-06-10T11:39:35.437545-07:00,1006.0601806640625,10.929813,10929.813 +3846,2025-06-10T11:39:46.370825-07:00,1006.0931396484375,10.93328,10933.28 +3847,2025-06-10T11:39:57.310926-07:00,1006.0519409179688,10.940101,10940.101 +3848,2025-06-10T11:40:08.248549-07:00,1006.0370483398438,10.937623,10937.623 +3849,2025-06-10T11:40:19.192034-07:00,1006.096435546875,10.943485,10943.485 +3850,2025-06-10T11:40:30.117560-07:00,1006.0634155273438,10.925526,10925.526 +3851,2025-06-10T11:40:41.046973-07:00,1006.0686645507812,10.929413,10929.413 +3852,2025-06-10T11:40:51.981788-07:00,1006.0423583984375,10.934815,10934.815 +3853,2025-06-10T11:41:02.914553-07:00,1006.043701171875,10.932765,10932.765 +3854,2025-06-10T11:41:13.851827-07:00,1006.0634155273438,10.937274,10937.274 +3855,2025-06-10T11:41:24.782720-07:00,1006.0914916992188,10.930893,10930.893 +3856,2025-06-10T11:41:35.719108-07:00,1006.0914916992188,10.936388,10936.388 +3857,2025-06-10T11:41:46.647550-07:00,1006.0914916992188,10.928442,10928.442 +3858,2025-06-10T11:41:57.576259-07:00,1006.05029296875,10.928709,10928.709 +3859,2025-06-10T11:42:08.504706-07:00,1006.07470703125,10.928447,10928.447 +3860,2025-06-10T11:42:19.439933-07:00,1006.0601806640625,10.935227,10935.227 +3861,2025-06-10T11:42:30.378772-07:00,1006.0418090820312,10.938839,10938.839 +3862,2025-06-10T11:42:41.311707-07:00,1006.0220336914062,10.932935,10932.935 +3863,2025-06-10T11:42:52.242787-07:00,1006.0387573242188,10.93108,10931.08 +3864,2025-06-10T11:43:03.171814-07:00,1005.9974975585938,10.929027,10929.027 +3865,2025-06-10T11:43:14.094887-07:00,1006.0338134765625,10.923073,10923.073 +3866,2025-06-10T11:43:25.027046-07:00,1006.0321655273438,10.932159,10932.159 +3867,2025-06-10T11:43:35.965781-07:00,1006.0484619140625,10.938735,10938.735 +3868,2025-06-10T11:43:46.896815-07:00,1006.0418090820312,10.931034,10931.034 +3869,2025-06-10T11:43:57.830087-07:00,1006.0535888671875,10.933272,10933.272 +3870,2025-06-10T11:44:08.772779-07:00,1006.0470581054688,10.942692,10942.692 +3871,2025-06-10T11:44:19.709733-07:00,1006.0549926757812,10.936954,10936.954 +3872,2025-06-10T11:44:30.636555-07:00,1006.025634765625,10.926822,10926.822 +3873,2025-06-10T11:44:41.573332-07:00,1006.0387573242188,10.936777,10936.777 +3874,2025-06-10T11:44:52.508845-07:00,1006.0549926757812,10.935513,10935.513 +3875,2025-06-10T11:45:03.447074-07:00,1006.0601806640625,10.938229,10938.229 +3876,2025-06-10T11:45:14.368546-07:00,1006.07470703125,10.921472,10921.472 +3877,2025-06-10T11:45:25.303883-07:00,1006.05029296875,10.935337,10935.337 +3878,2025-06-10T11:45:36.237808-07:00,1006.0423583984375,10.933925,10933.925 +3879,2025-06-10T11:45:47.174872-07:00,1006.065185546875,10.937064,10937.064 +3880,2025-06-10T11:45:58.107556-07:00,1006.0848388671875,10.932684,10932.684 +3881,2025-06-10T11:46:09.036552-07:00,1006.0734252929688,10.928996,10928.996 +3882,2025-06-10T11:46:19.974755-07:00,1006.068115234375,10.938203,10938.203 +3883,2025-06-10T11:46:30.911561-07:00,1006.0800170898438,10.936806,10936.806 +3884,2025-06-10T11:46:41.844365-07:00,1006.0700073242188,10.932804,10932.804 +3885,2025-06-10T11:46:52.783540-07:00,1006.065185546875,10.939175,10939.175 +3886,2025-06-10T11:47:03.717934-07:00,1006.056884765625,10.934394,10934.394 +3887,2025-06-10T11:47:14.655549-07:00,1006.0423583984375,10.937615,10937.615 +3888,2025-06-10T11:47:25.580888-07:00,1006.0321655273438,10.925339,10925.339 +3889,2025-06-10T11:47:36.519562-07:00,1006.0189819335938,10.938674,10938.674 +3890,2025-06-10T11:47:47.452651-07:00,1006.02392578125,10.933089,10933.089 +3891,2025-06-10T11:47:58.390582-07:00,1006.02392578125,10.937931,10937.931 +3892,2025-06-10T11:48:09.318695-07:00,1006.0272827148438,10.928113,10928.113 +3893,2025-06-10T11:48:20.258456-07:00,1006.0321655273438,10.939761,10939.761 +3894,2025-06-10T11:48:31.186569-07:00,1006.0404663085938,10.928113,10928.113 +3895,2025-06-10T11:48:42.115678-07:00,1006.0321655273438,10.929109,10929.109 +3896,2025-06-10T11:48:53.054543-07:00,1006.0220336914062,10.938865,10938.865 +3897,2025-06-10T11:49:03.985111-07:00,1006.0535888671875,10.930568,10930.568 +3898,2025-06-10T11:49:14.911455-07:00,1006.076416015625,10.926344,10926.344 +3899,2025-06-10T11:49:25.846904-07:00,1006.0582885742188,10.935449,10935.449 +3900,2025-06-10T11:49:36.775709-07:00,1006.028564453125,10.928805,10928.805 +3901,2025-06-10T11:49:47.705851-07:00,1006.0206298828125,10.930142,10930.142 +3902,2025-06-10T11:49:58.643560-07:00,1006.03515625,10.937709,10937.709 +3903,2025-06-10T11:50:09.570850-07:00,1006.028564453125,10.92729,10927.29 +3904,2025-06-10T11:50:20.496127-07:00,1006.0549926757812,10.925277,10925.277 +3905,2025-06-10T11:50:31.441160-07:00,1006.028564453125,10.945033,10945.033 +3906,2025-06-10T11:50:42.367557-07:00,1006.0303344726562,10.926397,10926.397 +3907,2025-06-10T11:50:53.304607-07:00,1006.0465087890625,10.93705,10937.05 +3908,2025-06-10T11:51:04.244843-07:00,1006.0484619140625,10.940236,10940.236 +3909,2025-06-10T11:51:15.175283-07:00,1006.1387329101562,10.93044,10930.44 +3910,2025-06-10T11:51:26.117693-07:00,1006.0582885742188,10.94241,10942.41 +3911,2025-06-10T11:51:37.049547-07:00,1006.0220336914062,10.931854,10931.854 +3912,2025-06-10T11:51:47.987804-07:00,1006.0582885742188,10.938257,10938.257 +3913,2025-06-10T11:51:58.920557-07:00,1006.04345703125,10.932753,10932.753 +3914,2025-06-10T11:52:09.848975-07:00,1006.03515625,10.928418,10928.418 +3915,2025-06-10T11:52:20.789604-07:00,1006.03515625,10.940629,10940.629 +3916,2025-06-10T11:52:31.717785-07:00,1006.0272827148438,10.928181,10928.181 +3917,2025-06-10T11:52:42.663750-07:00,1006.0404663085938,10.945965,10945.965 +3918,2025-06-10T11:52:53.595751-07:00,1006.078125,10.932001,10932.001 +3919,2025-06-10T11:53:04.530984-07:00,1006.03515625,10.935233,10935.233 +3920,2025-06-10T11:53:15.455559-07:00,1006.0404663085938,10.924575,10924.575 +3921,2025-06-10T11:53:26.384446-07:00,1006.00390625,10.928887,10928.887 +3922,2025-06-10T11:53:37.323615-07:00,1006.02392578125,10.939169,10939.169 +3923,2025-06-10T11:53:48.253194-07:00,1006.0418090820312,10.929579,10929.579 +3924,2025-06-10T11:53:59.185587-07:00,1006.0123291015625,10.932393,10932.393 +3925,2025-06-10T11:54:10.108768-07:00,1006.056640625,10.923181,10923.181 +3926,2025-06-10T11:54:21.036565-07:00,1006.0154418945312,10.927797,10927.797 +3927,2025-06-10T11:54:31.971796-07:00,1006.025634765625,10.935231,10935.231 +3928,2025-06-10T11:54:42.900688-07:00,1006.0499877929688,10.928892,10928.892 +3929,2025-06-10T11:54:53.840845-07:00,1006.0189819335938,10.940157,10940.157 +3930,2025-06-10T11:55:04.780531-07:00,1006.0123291015625,10.939686,10939.686 +3931,2025-06-10T11:55:15.721812-07:00,1006.03515625,10.941281,10941.281 +3932,2025-06-10T11:55:26.655812-07:00,1006.0465087890625,10.934,10934.0 +3933,2025-06-10T11:55:37.595682-07:00,1006.0679931640625,10.93987,10939.87 +3934,2025-06-10T11:55:48.529855-07:00,1006.0515747070312,10.934173,10934.173 +3935,2025-06-10T11:55:59.474651-07:00,1006.0594482421875,10.944796,10944.796 +3936,2025-06-10T11:56:10.430635-07:00,1006.0479736328125,10.955984,10955.984 +3937,2025-06-10T11:56:21.377829-07:00,1006.0609130859375,10.947194,10947.194 +3938,2025-06-10T11:56:32.338587-07:00,1006.044189453125,10.960758,10960.758 +3939,2025-06-10T11:56:43.291550-07:00,1006.0488891601562,10.952963,10952.963 +3940,2025-06-10T11:56:54.237547-07:00,1006.0354614257812,10.945997,10945.997 +3941,2025-06-10T11:57:05.189850-07:00,1006.0401611328125,10.952303,10952.303 +3942,2025-06-10T11:57:16.131985-07:00,1006.0680541992188,10.942135,10942.135 +3943,2025-06-10T11:57:27.074455-07:00,1006.0532836914062,10.94247,10942.47 +3944,2025-06-10T11:57:38.011538-07:00,1006.0562744140625,10.937083,10937.083 +3945,2025-06-10T11:57:48.959111-07:00,1006.0214233398438,10.947573,10947.573 +3946,2025-06-10T11:57:59.893619-07:00,1006.0393676757812,10.934508,10934.508 +3947,2025-06-10T11:58:10.834587-07:00,1006.063720703125,10.940968,10940.968 +3948,2025-06-10T11:58:21.779926-07:00,1006.0918579101562,10.945339,10945.339 +3949,2025-06-10T11:58:32.724778-07:00,1006.04736328125,10.944852,10944.852 +3950,2025-06-10T11:58:43.664559-07:00,1006.0552978515625,10.939781,10939.781 +3951,2025-06-10T11:58:54.609603-07:00,1006.0701293945312,10.945044,10945.044 +3952,2025-06-10T11:59:05.544849-07:00,1006.0059204101562,10.935246,10935.246 +3953,2025-06-10T11:59:16.478611-07:00,1006.0125122070312,10.933762,10933.762 +3954,2025-06-10T11:59:27.415839-07:00,1006.0765380859375,10.937228,10937.228 +3955,2025-06-10T11:59:38.359332-07:00,1006.0633544921875,10.943493,10943.493 +3956,2025-06-10T11:59:49.292701-07:00,1006.0781860351562,10.933369,10933.369 +3957,2025-06-10T12:00:00.233605-07:00,1006.0633544921875,10.940904,10940.904 +3958,2025-06-10T12:00:11.159554-07:00,1006.071533203125,10.925949,10925.949 +3959,2025-06-10T12:00:22.092038-07:00,1006.03857421875,10.932484,10932.484 +3960,2025-06-10T12:00:33.030810-07:00,1006.0831298828125,10.938772,10938.772 +3961,2025-06-10T12:00:43.964558-07:00,1006.0633544921875,10.933748,10933.748 +3962,2025-06-10T12:00:54.899609-07:00,1006.0435791015625,10.935051,10935.051 +3963,2025-06-10T12:01:05.838552-07:00,1006.0287475585938,10.938943,10938.943 +3964,2025-06-10T12:01:16.771809-07:00,1006.0370483398438,10.933257,10933.257 +3965,2025-06-10T12:01:27.707559-07:00,1006.0435791015625,10.93575,10935.75 +3966,2025-06-10T12:01:38.650565-07:00,1006.053466796875,10.943006,10943.006 +3967,2025-06-10T12:01:49.589894-07:00,1006.0370483398438,10.939329,10939.329 +3968,2025-06-10T12:02:00.516936-07:00,1006.0125122070312,10.927042,10927.042 +3969,2025-06-10T12:02:11.451240-07:00,1006.0402221679688,10.934304,10934.304 +3970,2025-06-10T12:02:22.389691-07:00,1006.0599975585938,10.938451,10938.451 +3971,2025-06-10T12:02:33.318811-07:00,1006.0371704101562,10.92912,10929.12 +3972,2025-06-10T12:02:44.253559-07:00,1006.0042114257812,10.934748,10934.748 +3973,2025-06-10T12:02:55.189741-07:00,1006.0617065429688,10.936182,10936.182 +3974,2025-06-10T12:03:06.119688-07:00,1006.0306396484375,10.929947,10929.947 +3975,2025-06-10T12:03:17.055561-07:00,1006.0504150390625,10.935873,10935.873 +3976,2025-06-10T12:03:27.988850-07:00,1006.0586547851562,10.933289,10933.289 +3977,2025-06-10T12:03:38.923822-07:00,1006.0682983398438,10.934972,10934.972 +3978,2025-06-10T12:03:49.848553-07:00,1006.0323486328125,10.924731,10924.731 +3979,2025-06-10T12:04:00.783552-07:00,1006.0538940429688,10.934999,10934.999 +3980,2025-06-10T12:04:11.720979-07:00,1006.0371704101562,10.937427,10937.427 +3981,2025-06-10T12:04:22.644681-07:00,1006.0355224609375,10.923702,10923.702 +3982,2025-06-10T12:04:33.588670-07:00,1006.0342407226562,10.943989,10943.989 +3983,2025-06-10T12:04:44.528704-07:00,1005.9978637695312,10.940034,10940.034 +3984,2025-06-10T12:04:55.459830-07:00,1006.027587890625,10.931126,10931.126 +3985,2025-06-10T12:05:06.396742-07:00,1006.032470703125,10.936912,10936.912 +3986,2025-06-10T12:05:17.332553-07:00,1006.0457153320312,10.935811,10935.811 +3987,2025-06-10T12:05:28.272089-07:00,1006.0374145507812,10.939536,10939.536 +3988,2025-06-10T12:05:39.200561-07:00,1006.0044555664062,10.928472,10928.472 +3989,2025-06-10T12:05:50.135883-07:00,1006.0097045898438,10.935322,10935.322 +3990,2025-06-10T12:06:01.069834-07:00,1006.029541015625,10.933951,10933.951 +3991,2025-06-10T12:06:12.005890-07:00,1006.0360717773438,10.936056,10936.056 +3992,2025-06-10T12:06:22.926695-07:00,1006.0162353515625,10.920805,10920.805 +3993,2025-06-10T12:06:33.860821-07:00,1006.029541015625,10.934126,10934.126 +3994,2025-06-10T12:06:44.801559-07:00,1006.0308837890625,10.940738,10940.738 +3995,2025-06-10T12:06:55.731031-07:00,1006.0228881835938,10.929472,10929.472 +3996,2025-06-10T12:07:06.659558-07:00,1006.0031127929688,10.928527,10928.527 +3997,2025-06-10T12:07:17.597705-07:00,1006.0097045898438,10.938147,10938.147 +3998,2025-06-10T12:07:28.519564-07:00,1006.0308837890625,10.921859,10921.859 +3999,2025-06-10T12:07:39.455886-07:00,1006.029541015625,10.936322,10936.322 +4000,2025-06-10T12:07:50.390861-07:00,1006.012939453125,10.934975,10934.975 +4001,2025-06-10T12:08:01.324711-07:00,1006.0314331054688,10.93385,10933.85 +4002,2025-06-10T12:08:12.263990-07:00,1005.999755859375,10.939279,10939.279 +4003,2025-06-10T12:08:23.197544-07:00,1006.008056640625,10.933554,10933.554 +4004,2025-06-10T12:08:34.124679-07:00,1006.01953125,10.927135,10927.135 +4005,2025-06-10T12:08:45.059790-07:00,1006.02783203125,10.935111,10935.111 +4006,2025-06-10T12:08:55.989626-07:00,1006.0248413085938,10.929836,10929.836 +4007,2025-06-10T12:09:06.916815-07:00,1006.0181884765625,10.927189,10927.189 +4008,2025-06-10T12:09:17.857453-07:00,1006.0429077148438,10.940638,10940.638 +4009,2025-06-10T12:09:28.787560-07:00,1006.041259765625,10.930107,10930.107 +4010,2025-06-10T12:09:39.726687-07:00,1006.0675659179688,10.939127,10939.127 +4011,2025-06-10T12:09:50.656724-07:00,1006.0577392578125,10.930037,10930.037 +4012,2025-06-10T12:10:01.589815-07:00,1006.028076171875,10.933091,10933.091 +4013,2025-06-10T12:10:12.516562-07:00,1006.0560913085938,10.926747,10926.747 +4014,2025-06-10T12:10:23.452607-07:00,1006.0448608398438,10.936045,10936.045 +4015,2025-06-10T12:10:34.381820-07:00,1006.0477905273438,10.929213,10929.213 +4016,2025-06-10T12:10:45.314274-07:00,1006.0460815429688,10.932454,10932.454 +4017,2025-06-10T12:10:56.238550-07:00,1006.0513916015625,10.924276,10924.276 +4018,2025-06-10T12:11:07.172770-07:00,1006.061279296875,10.93422,10934.22 +4019,2025-06-10T12:11:18.104553-07:00,1006.0413818359375,10.931783,10931.783 +4020,2025-06-10T12:11:29.031874-07:00,1006.0480346679688,10.927321,10927.321 +4021,2025-06-10T12:11:39.968570-07:00,1006.0711669921875,10.936696,10936.696 +4022,2025-06-10T12:11:50.894127-07:00,1006.0348510742188,10.925557,10925.557 +4023,2025-06-10T12:12:01.827556-07:00,1006.0413818359375,10.933429,10933.429 +4024,2025-06-10T12:12:12.761845-07:00,1006.021728515625,10.934289,10934.289 +4025,2025-06-10T12:12:23.696547-07:00,1006.0875854492188,10.934702,10934.702 +4026,2025-06-10T12:12:34.632823-07:00,1006.0186157226562,10.936276,10936.276 +4027,2025-06-10T12:12:45.560009-07:00,1006.0137329101562,10.927186,10927.186 +4028,2025-06-10T12:12:56.502772-07:00,1006.0318603515625,10.942763,10942.763 +4029,2025-06-10T12:13:07.437159-07:00,1006.0384521484375,10.934387,10934.387 +4030,2025-06-10T12:13:18.369104-07:00,1006.0367431640625,10.931945,10931.945 +4031,2025-06-10T12:13:29.306872-07:00,1006.0413818359375,10.937768,10937.768 +4032,2025-06-10T12:13:40.240717-07:00,1006.0449829101562,10.933845,10933.845 +4033,2025-06-10T12:13:51.175904-07:00,1006.0236206054688,10.935187,10935.187 +4034,2025-06-10T12:14:02.108824-07:00,1006.0318603515625,10.93292,10932.92 +4035,2025-06-10T12:14:13.041811-07:00,1006.0730590820312,10.932987,10932.987 +4036,2025-06-10T12:14:23.987883-07:00,1006.0762329101562,10.946072,10946.072 +4037,2025-06-10T12:14:34.919565-07:00,1006.0714111328125,10.931682,10931.682 +4038,2025-06-10T12:14:45.865197-07:00,1006.0845336914062,10.945632,10945.632 +4039,2025-06-10T12:14:56.791563-07:00,1006.091064453125,10.926366,10926.366 +4040,2025-06-10T12:15:07.732540-07:00,1006.0928344726562,10.940977,10940.977 +4041,2025-06-10T12:15:18.670857-07:00,1006.091064453125,10.938317,10938.317 +4042,2025-06-10T12:15:29.598551-07:00,1006.0697021484375,10.927694,10927.694 +4043,2025-06-10T12:15:40.542241-07:00,1006.1060180664062,10.94369,10943.69 +4044,2025-06-10T12:15:51.471548-07:00,1006.0631103515625,10.929307,10929.307 +4045,2025-06-10T12:16:02.408559-07:00,1006.099365234375,10.937011,10937.011 +4046,2025-06-10T12:16:13.342929-07:00,1006.0845336914062,10.93437,10934.37 +4047,2025-06-10T12:16:24.277806-07:00,1006.0895385742188,10.934877,10934.877 +4048,2025-06-10T12:16:35.217563-07:00,1006.0631103515625,10.939757,10939.757 +4049,2025-06-10T12:16:46.155221-07:00,1006.0943603515625,10.937658,10937.658 +4050,2025-06-10T12:16:57.094551-07:00,1006.1026611328125,10.93933,10939.33 +4051,2025-06-10T12:17:08.025696-07:00,1006.0795288085938,10.931145,10931.145 +4052,2025-06-10T12:17:18.965800-07:00,1006.0697021484375,10.940104,10940.104 +4053,2025-06-10T12:17:29.905901-07:00,1006.0597534179688,10.940101,10940.101 +4054,2025-06-10T12:17:40.838554-07:00,1006.0531005859375,10.932653,10932.653 +4055,2025-06-10T12:17:51.781020-07:00,1006.0960693359375,10.942466,10942.466 +4056,2025-06-10T12:18:02.715879-07:00,1006.1109619140625,10.934859,10934.859 +4057,2025-06-10T12:18:13.654606-07:00,1006.0712280273438,10.938727,10938.727 +4058,2025-06-10T12:18:24.585297-07:00,1006.0861206054688,10.930691,10930.691 +4059,2025-06-10T12:18:35.533889-07:00,1006.0614013671875,10.948592,10948.592 +4060,2025-06-10T12:18:46.466549-07:00,1006.1009521484375,10.93266,10932.66 +4061,2025-06-10T12:18:57.397307-07:00,1006.1009521484375,10.930758,10930.758 +4062,2025-06-10T12:19:08.333743-07:00,1006.0745849609375,10.936436,10936.436 +4063,2025-06-10T12:19:19.271289-07:00,1006.1076049804688,10.937546,10937.546 +4064,2025-06-10T12:19:30.203546-07:00,1006.1256103515625,10.932257,10932.257 +4065,2025-06-10T12:19:41.139561-07:00,1006.1207885742188,10.936015,10936.015 +4066,2025-06-10T12:19:52.079601-07:00,1006.1091918945312,10.94004,10940.04 +4067,2025-06-10T12:20:03.006703-07:00,1006.1190795898438,10.927102,10927.102 +4068,2025-06-10T12:20:13.948647-07:00,1006.104248046875,10.941944,10941.944 +4069,2025-06-10T12:20:24.890559-07:00,1006.1339111328125,10.941912,10941.912 +4070,2025-06-10T12:20:35.818681-07:00,1006.1141967773438,10.928122,10928.122 +4071,2025-06-10T12:20:46.763491-07:00,1006.1207885742188,10.94481,10944.81 +4072,2025-06-10T12:20:57.692691-07:00,1006.1141967773438,10.9292,10929.2 +4073,2025-06-10T12:21:08.632040-07:00,1006.0993041992188,10.939349,10939.349 +4074,2025-06-10T12:21:19.559566-07:00,1006.1339111328125,10.927526,10927.526 +4075,2025-06-10T12:21:28.389238-07:00,1006.1470947265625,8.829672,8829.672 +4076,2025-06-10T12:21:30.496162-07:00,1006.1405639648438,2.106924,2106.924 +4077,2025-06-10T12:21:41.438594-07:00,1006.1290893554688,10.942432,10942.432 +4078,2025-06-10T12:21:52.377613-07:00,1006.1998291015625,10.939019,10939.019 +4079,2025-06-10T12:22:03.314097-07:00,1006.1800537109375,10.936484,10936.484 +4080,2025-06-10T12:22:14.252799-07:00,1006.1239624023438,10.938702,10938.702 +4081,2025-06-10T12:22:25.187561-07:00,1006.1470947265625,10.934762,10934.762 +4082,2025-06-10T12:22:36.122257-07:00,1006.1734619140625,10.934696,10934.696 +4083,2025-06-10T12:22:47.051571-07:00,1006.1405639648438,10.929314,10929.314 +4084,2025-06-10T12:22:57.984559-07:00,1006.1207885742188,10.932988,10932.988 +4085,2025-06-10T12:23:08.922553-07:00,1006.1207885742188,10.937994,10937.994 +4086,2025-06-10T12:23:19.854871-07:00,1006.1224365234375,10.932318,10932.318 +4087,2025-06-10T12:23:30.782561-07:00,1006.1290893554688,10.92769,10927.69 +4088,2025-06-10T12:23:41.714373-07:00,1006.1190795898438,10.931812,10931.812 +4089,2025-06-10T12:23:52.642589-07:00,1006.1009521484375,10.928216,10928.216 +4090,2025-06-10T12:24:03.572834-07:00,1006.1290893554688,10.930245,10930.245 +4091,2025-06-10T12:24:14.506939-07:00,1006.1290893554688,10.934105,10934.105 +4092,2025-06-10T12:24:25.442200-07:00,1006.1190795898438,10.935261,10935.261 +4093,2025-06-10T12:24:36.373326-07:00,1006.1240844726562,10.931126,10931.126 +4094,2025-06-10T12:24:47.308887-07:00,1006.1026611328125,10.935561,10935.561 +4095,2025-06-10T12:24:58.239681-07:00,1006.1373291015625,10.930794,10930.794 +4096,2025-06-10T12:25:09.166174-07:00,1006.1290893554688,10.926493,10926.493 +4097,2025-06-10T12:25:20.097758-07:00,1006.1356201171875,10.931584,10931.584 +4098,2025-06-10T12:25:31.031526-07:00,1006.0960693359375,10.933768,10933.768 +4099,2025-06-10T12:25:41.969563-07:00,1006.1007690429688,10.938037,10938.037 +4100,2025-06-10T12:25:52.901057-07:00,1006.0680541992188,10.931494,10931.494 +4101,2025-06-10T12:26:03.832545-07:00,1006.0367431640625,10.931488,10931.488 +4102,2025-06-10T12:26:14.760870-07:00,1006.0828857421875,10.928325,10928.325 +4103,2025-06-10T12:26:25.699555-07:00,1006.0960693359375,10.938685,10938.685 +4104,2025-06-10T12:26:36.635762-07:00,1006.1240844726562,10.936207,10936.207 +4105,2025-06-10T12:26:47.572780-07:00,1006.1306762695312,10.937018,10937.018 +4106,2025-06-10T12:26:58.505562-07:00,1006.1091918945312,10.932782,10932.782 +4107,2025-06-10T12:27:09.439309-07:00,1006.1043701171875,10.933747,10933.747 +4108,2025-06-10T12:27:20.377985-07:00,1006.1026611328125,10.938676,10938.676 +4109,2025-06-10T12:27:31.319563-07:00,1006.0960693359375,10.941578,10941.578 +4110,2025-06-10T12:27:42.256446-07:00,1006.1043701171875,10.936883,10936.883 +4111,2025-06-10T12:27:53.180962-07:00,1006.0779418945312,10.924516,10924.516 +4112,2025-06-10T12:28:04.125816-07:00,1006.1306762695312,10.944854,10944.854 +4113,2025-06-10T12:28:15.061703-07:00,1006.0845336914062,10.935887,10935.887 +4114,2025-06-10T12:28:25.995216-07:00,1006.0797119140625,10.933513,10933.513 +4115,2025-06-10T12:28:36.923555-07:00,1006.09423828125,10.928339,10928.339 +4116,2025-06-10T12:28:47.859610-07:00,1006.0875854492188,10.936055,10936.055 +4117,2025-06-10T12:28:58.791559-07:00,1006.06640625,10.931949,10931.949 +4118,2025-06-10T12:29:09.727551-07:00,1006.06640625,10.935992,10935.992 +4119,2025-06-10T12:29:20.636366-07:00,1006.0958862304688,10.908815,10908.815 +4120,2025-06-10T12:29:31.578364-07:00,1006.0335083007812,10.941998,10941.998 +4121,2025-06-10T12:29:42.499614-07:00,1006.1024169921875,10.92125,10921.25 +4122,2025-06-10T12:29:53.434692-07:00,1006.0431518554688,10.935078,10935.078 +4123,2025-06-10T12:30:04.367644-07:00,1006.0695190429688,10.932952,10932.952 +4124,2025-06-10T12:30:15.302366-07:00,1006.112060546875,10.934722,10934.722 +4125,2025-06-10T12:30:26.235649-07:00,1006.0645141601562,10.933283,10933.283 +4126,2025-06-10T12:30:37.182514-07:00,1006.0711669921875,10.946865,10946.865 +4127,2025-06-10T12:30:48.111623-07:00,1006.0777587890625,10.929109,10929.109 +4128,2025-06-10T12:30:59.051349-07:00,1006.0873413085938,10.939726,10939.726 +4129,2025-06-10T12:31:09.989508-07:00,1006.11376953125,10.938159,10938.159 +4130,2025-06-10T12:31:20.919110-07:00,1006.085693359375,10.929602,10929.602 +4131,2025-06-10T12:31:31.848650-07:00,1006.1663818359375,10.92954,10929.54 +4132,2025-06-10T12:31:42.781848-07:00,1006.107177734375,10.933198,10933.198 +4133,2025-06-10T12:31:53.720395-07:00,1006.1434326171875,10.938547,10938.547 +4134,2025-06-10T12:32:04.662416-07:00,1006.1021728515625,10.942021,10942.021 +4135,2025-06-10T12:32:15.592600-07:00,1006.1021728515625,10.930184,10930.184 +4136,2025-06-10T12:32:26.529509-07:00,1006.1351318359375,10.936909,10936.909 +4137,2025-06-10T12:32:37.456341-07:00,1006.1088256835938,10.926832,10926.832 +4138,2025-06-10T12:32:48.400620-07:00,1006.09228515625,10.944279,10944.279 +4139,2025-06-10T12:32:59.336649-07:00,1006.1203002929688,10.936029,10936.029 +4140,2025-06-10T12:33:10.274354-07:00,1006.112060546875,10.937705,10937.705 +4141,2025-06-10T12:33:21.207940-07:00,1006.1268920898438,10.933586,10933.586 +4142,2025-06-10T12:33:32.159707-07:00,1006.146728515625,10.951767,10951.767 +4143,2025-06-10T12:33:43.098352-07:00,1006.158203125,10.938645,10938.645 +4144,2025-06-10T12:33:54.032630-07:00,1006.1663818359375,10.934278,10934.278 +4145,2025-06-10T12:34:04.973704-07:00,1006.14501953125,10.941074,10941.074 +4146,2025-06-10T12:34:15.912753-07:00,1006.14501953125,10.939049,10939.049 +4147,2025-06-10T12:34:26.859347-07:00,1006.14501953125,10.946594,10946.594 +4148,2025-06-10T12:34:37.791319-07:00,1006.146728515625,10.931972,10931.972 +4149,2025-06-10T12:34:48.723367-07:00,1006.1173706054688,10.932048,10932.048 +4150,2025-06-10T12:34:59.667406-07:00,1006.19775390625,10.944039,10944.039 +4151,2025-06-10T12:35:10.600354-07:00,1006.1436767578125,10.932948,10932.948 +4152,2025-06-10T12:35:21.541370-07:00,1006.1156005859375,10.941016,10941.016 +4153,2025-06-10T12:35:32.475864-07:00,1006.1730346679688,10.934494,10934.494 +4154,2025-06-10T12:35:43.408391-07:00,1006.098876953125,10.932527,10932.527 +4155,2025-06-10T12:35:54.339859-07:00,1006.14501953125,10.931468,10931.468 +4156,2025-06-10T12:36:05.280748-07:00,1006.1632080078125,10.940889,10940.889 +4157,2025-06-10T12:36:16.215062-07:00,1006.1648559570312,10.934314,10934.314 +4158,2025-06-10T12:36:27.150362-07:00,1006.1532592773438,10.9353,10935.3 +4159,2025-06-10T12:36:38.084347-07:00,1006.1417236328125,10.933985,10933.985 +4160,2025-06-10T12:36:49.026651-07:00,1006.1532592773438,10.942304,10942.304 +4161,2025-06-10T12:36:59.967659-07:00,1006.1104736328125,10.941008,10941.008 +4162,2025-06-10T12:37:10.908524-07:00,1006.1448364257812,10.940865,10940.865 +4163,2025-06-10T12:37:21.850791-07:00,1006.1777954101562,10.942267,10942.267 +4164,2025-06-10T12:37:32.792363-07:00,1006.1500244140625,10.941572,10941.572 +4165,2025-06-10T12:37:40.320921-07:00,1006.1303100585938,7.528558,7528.558 +4166,2025-06-10T12:37:43.728365-07:00,1006.1236572265625,3.407444,3407.444 +4167,2025-06-10T12:37:54.676366-07:00,1006.1483764648438,10.948001,10948.001 +4168,2025-06-10T12:38:05.623826-07:00,1006.1303100585938,10.94746,10947.46 +4169,2025-06-10T12:38:16.560354-07:00,1006.146484375,10.936528,10936.528 +4170,2025-06-10T12:38:27.500341-07:00,1006.1021728515625,10.939987,10939.987 +4171,2025-06-10T12:38:38.444357-07:00,1006.1514282226562,10.944016,10944.016 +4172,2025-06-10T12:38:49.377475-07:00,1006.1268920898438,10.933118,10933.118 +4173,2025-06-10T12:39:00.318350-07:00,1006.131591796875,10.940875,10940.875 +4174,2025-06-10T12:39:11.263679-07:00,1006.13818359375,10.945329,10945.329 +4175,2025-06-10T12:39:22.204563-07:00,1006.1220092773438,10.940884,10940.884 +4176,2025-06-10T12:39:33.144848-07:00,1006.0973510742188,10.940285,10940.285 +4177,2025-06-10T12:39:44.089818-07:00,1006.0973510742188,10.94497,10944.97 +4178,2025-06-10T12:39:55.030347-07:00,1006.1303100585938,10.940529,10940.529 +4179,2025-06-10T12:40:05.968362-07:00,1006.1201782226562,10.938015,10938.015 +4180,2025-06-10T12:40:16.909553-07:00,1006.118408203125,10.941191,10941.191 +4181,2025-06-10T12:40:27.840355-07:00,1006.146484375,10.930802,10930.802 +4182,2025-06-10T12:40:38.778916-07:00,1006.113525390625,10.938561,10938.561 +4183,2025-06-10T12:40:49.719882-07:00,1006.113525390625,10.940966,10940.966 +4184,2025-06-10T12:41:00.659362-07:00,1006.092041015625,10.93948,10939.48 +4185,2025-06-10T12:41:11.603409-07:00,1006.16455078125,10.944047,10944.047 +4186,2025-06-10T12:41:22.542631-07:00,1006.1448364257812,10.939222,10939.222 +4187,2025-06-10T12:41:33.475353-07:00,1006.135009765625,10.932722,10932.722 +4188,2025-06-10T12:41:44.412749-07:00,1006.15966796875,10.937396,10937.396 +4189,2025-06-10T12:41:55.353358-07:00,1006.13330078125,10.940609,10940.609 +4190,2025-06-10T12:42:06.285358-07:00,1006.1428833007812,10.932,10932.0 +4191,2025-06-10T12:42:17.232366-07:00,1006.1314086914062,10.947008,10947.008 +4192,2025-06-10T12:42:28.172400-07:00,1006.13330078125,10.940034,10940.034 +4193,2025-06-10T12:42:39.112704-07:00,1006.1217041015625,10.940304,10940.304 +4194,2025-06-10T12:42:50.046167-07:00,1006.1613159179688,10.933463,10933.463 +4195,2025-06-10T12:43:00.980518-07:00,1006.1546630859375,10.934351,10934.351 +4196,2025-06-10T12:43:11.920351-07:00,1006.174560546875,10.939833,10939.833 +4197,2025-06-10T12:43:22.859866-07:00,1006.153076171875,10.939515,10939.515 +4198,2025-06-10T12:43:33.796384-07:00,1006.1758422851562,10.936518,10936.518 +4199,2025-06-10T12:43:44.740737-07:00,1006.1481323242188,10.944353,10944.353 +4200,2025-06-10T12:43:55.686001-07:00,1006.1495361328125,10.945264,10945.264 +4201,2025-06-10T12:44:06.634582-07:00,1006.1613159179688,10.948581,10948.581 +4202,2025-06-10T12:44:17.581616-07:00,1006.1428833007812,10.947034,10947.034 +4203,2025-06-10T12:44:28.518349-07:00,1006.1495361328125,10.936733,10936.733 +4204,2025-06-10T12:44:39.462664-07:00,1006.1673583984375,10.944315,10944.315 +4205,2025-06-10T12:44:50.395691-07:00,1006.1740112304688,10.933027,10933.027 +4206,2025-06-10T12:45:01.332704-07:00,1006.1397094726562,10.937013,10937.013 +4207,2025-06-10T12:45:12.270820-07:00,1006.1673583984375,10.938116,10938.116 +4208,2025-06-10T12:45:23.208721-07:00,1006.137939453125,10.937901,10937.901 +4209,2025-06-10T12:45:34.138052-07:00,1006.1314086914062,10.929331,10929.331 +4210,2025-06-10T12:45:45.083510-07:00,1006.146240234375,10.945458,10945.458 +4211,2025-06-10T12:45:56.013001-07:00,1006.1643676757812,10.929491,10929.491 +4212,2025-06-10T12:46:06.954212-07:00,1006.1643676757812,10.941211,10941.211 +4213,2025-06-10T12:46:17.885424-07:00,1006.1511840820312,10.931212,10931.212 +4214,2025-06-10T12:46:28.823623-07:00,1006.1314086914062,10.938199,10938.199 +4215,2025-06-10T12:46:39.763367-07:00,1006.1248168945312,10.939744,10939.744 +4216,2025-06-10T12:46:50.698187-07:00,1006.14453125,10.93482,10934.82 +4217,2025-06-10T12:47:01.620351-07:00,1006.1248168945312,10.922164,10922.164 +4218,2025-06-10T12:47:12.553645-07:00,1006.0770263671875,10.933294,10933.294 +4219,2025-06-10T12:47:23.478352-07:00,1006.0984497070312,10.924707,10924.707 +4220,2025-06-10T12:47:34.407342-07:00,1006.0967407226562,10.92899,10928.99 +4221,2025-06-10T12:47:45.340622-07:00,1006.0901489257812,10.93328,10933.28 +4222,2025-06-10T12:47:56.267895-07:00,1006.111572265625,10.927273,10927.273 +4223,2025-06-10T12:48:07.208352-07:00,1006.1165771484375,10.940457,10940.457 +4224,2025-06-10T12:48:18.138741-07:00,1006.1001586914062,10.930389,10930.389 +4225,2025-06-10T12:48:29.070561-07:00,1006.1001586914062,10.93182,10931.82 +4226,2025-06-10T12:48:39.997180-07:00,1006.0984497070312,10.926619,10926.619 +4227,2025-06-10T12:48:50.939360-07:00,1006.0901489257812,10.94218,10942.18 +4228,2025-06-10T12:49:01.867277-07:00,1006.0654907226562,10.927917,10927.917 +4229,2025-06-10T12:49:12.806757-07:00,1006.12646484375,10.93948,10939.48 +4230,2025-06-10T12:49:23.747366-07:00,1006.0967407226562,10.940609,10940.609 +4231,2025-06-10T12:49:34.676377-07:00,1006.093505859375,10.929011,10929.011 +4232,2025-06-10T12:49:45.612736-07:00,1006.0984497070312,10.936359,10936.359 +4233,2025-06-10T12:49:56.545081-07:00,1006.0984497070312,10.932345,10932.345 +4234,2025-06-10T12:50:07.490527-07:00,1006.1013793945312,10.945446,10945.446 +4235,2025-06-10T12:50:18.419654-07:00,1006.1001586914062,10.929127,10929.127 +4236,2025-06-10T12:50:29.365018-07:00,1006.0882568359375,10.945364,10945.364 +4237,2025-06-10T12:50:40.293410-07:00,1006.1295166015625,10.928392,10928.392 +4238,2025-06-10T12:50:51.237070-07:00,1006.1013793945312,10.94366,10943.66 +4239,2025-06-10T12:51:02.175359-07:00,1006.0259399414062,10.938289,10938.289 +4240,2025-06-10T12:51:13.108042-07:00,1006.1013793945312,10.932683,10932.683 +4241,2025-06-10T12:51:24.047951-07:00,1006.093505859375,10.939909,10939.909 +4242,2025-06-10T12:51:34.985552-07:00,1006.0786743164062,10.937601,10937.601 +4243,2025-06-10T12:51:45.926430-07:00,1006.106689453125,10.940878,10940.878 +4244,2025-06-10T12:51:56.861697-07:00,1006.085205078125,10.935267,10935.267 +4245,2025-06-10T12:52:07.797346-07:00,1006.1001586914062,10.935649,10935.649 +4246,2025-06-10T12:52:18.737583-07:00,1006.093505859375,10.940237,10940.237 +4247,2025-06-10T12:52:29.671362-07:00,1006.0882568359375,10.933779,10933.779 +4248,2025-06-10T12:52:40.608441-07:00,1006.1099853515625,10.937079,10937.079 +4249,2025-06-10T12:52:51.554499-07:00,1006.0654907226562,10.946058,10946.058 +4250,2025-06-10T12:53:02.482381-07:00,1006.0552978515625,10.927882,10927.882 +4251,2025-06-10T12:53:13.417679-07:00,1006.0588989257812,10.935298,10935.298 +4252,2025-06-10T12:53:24.349550-07:00,1006.1593627929688,10.931871,10931.871 +4253,2025-06-10T12:53:35.293366-07:00,1006.0786743164062,10.943816,10943.816 +4254,2025-06-10T12:53:46.224349-07:00,1006.0654907226562,10.930983,10930.983 +4255,2025-06-10T12:53:57.153364-07:00,1006.085205078125,10.929015,10929.015 +4256,2025-06-10T12:54:08.087390-07:00,1006.0817260742188,10.934026,10934.026 +4257,2025-06-10T12:54:19.022364-07:00,1006.1228637695312,10.934974,10934.974 +4258,2025-06-10T12:54:29.957083-07:00,1006.1080322265625,10.934719,10934.719 +4259,2025-06-10T12:54:40.898424-07:00,1006.0948486328125,10.941341,10941.341 +4260,2025-06-10T12:54:51.834039-07:00,1006.1146850585938,10.935615,10935.615 +4261,2025-06-10T12:55:02.772530-07:00,1006.1146850585938,10.938491,10938.491 +4262,2025-06-10T12:55:13.706367-07:00,1006.0882568359375,10.933837,10933.837 +4263,2025-06-10T12:55:24.652788-07:00,1006.119873046875,10.946421,10946.421 +4264,2025-06-10T12:55:35.585400-07:00,1006.085205078125,10.932612,10932.612 +4265,2025-06-10T12:55:46.521536-07:00,1006.0982055664062,10.936136,10936.136 +4266,2025-06-10T12:55:57.454568-07:00,1006.060546875,10.933032,10933.032 +4267,2025-06-10T12:56:08.397689-07:00,1006.080322265625,10.943121,10943.121 +4268,2025-06-10T12:56:19.334728-07:00,1006.04736328125,10.937039,10937.039 +4269,2025-06-10T12:56:30.264356-07:00,1006.0223388671875,10.929628,10929.628 +4270,2025-06-10T12:56:41.204783-07:00,1006.0421142578125,10.940427,10940.427 +4271,2025-06-10T12:56:52.143801-07:00,1006.0342407226562,10.939018,10939.018 +4272,2025-06-10T12:57:03.085416-07:00,1006.0223388671875,10.941615,10941.615 +4273,2025-06-10T12:57:14.020659-07:00,1006.0487670898438,10.935243,10935.243 +4274,2025-06-10T12:57:24.949580-07:00,1006.0552978515625,10.928921,10928.921 +4275,2025-06-10T12:57:35.889349-07:00,1006.0223388671875,10.939769,10939.769 +4276,2025-06-10T12:57:46.819959-07:00,1006.0306396484375,10.93061,10930.61 +4277,2025-06-10T12:57:57.764586-07:00,1005.9993896484375,10.944627,10944.627 +4278,2025-06-10T12:58:08.707364-07:00,1006.0256958007812,10.942778,10942.778 +4279,2025-06-10T12:58:19.633959-07:00,1006.0599975585938,10.926595,10926.595 +4280,2025-06-10T12:58:30.576391-07:00,1006.053466796875,10.942432,10942.432 +4281,2025-06-10T12:58:41.508766-07:00,1006.0454711914062,10.932375,10932.375 +4282,2025-06-10T12:58:52.448343-07:00,1006.0388793945312,10.939577,10939.577 +4283,2025-06-10T12:59:03.384728-07:00,1006.0270385742188,10.936385,10936.385 +4284,2025-06-10T12:59:14.313370-07:00,1006.0586547851562,10.928642,10928.642 +4285,2025-06-10T12:59:25.251366-07:00,1006.0599975585938,10.937996,10937.996 +4286,2025-06-10T12:59:36.179389-07:00,1006.0784301757812,10.928023,10928.023 +4287,2025-06-10T12:59:47.117597-07:00,1006.052001953125,10.938208,10938.208 +4288,2025-06-10T12:59:58.054068-07:00,1006.0718994140625,10.936471,10936.471 +4289,2025-06-10T13:00:08.997545-07:00,1006.053466796875,10.943477,10943.477 +4290,2025-06-10T13:00:19.931520-07:00,1006.0718994140625,10.933975,10933.975 +4291,2025-06-10T13:00:30.874627-07:00,1006.0599975585938,10.943107,10943.107 +4292,2025-06-10T13:00:41.808566-07:00,1006.03857421875,10.933939,10933.939 +4293,2025-06-10T13:00:52.743830-07:00,1006.0501708984375,10.935264,10935.264 +4294,2025-06-10T13:01:03.676410-07:00,1006.0995483398438,10.93258,10932.58 +4295,2025-06-10T13:01:14.618362-07:00,1006.0335693359375,10.941952,10941.952 +4296,2025-06-10T13:01:25.557548-07:00,1006.0418701171875,10.939186,10939.186 +4297,2025-06-10T13:01:36.488353-07:00,1006.0731811523438,10.930805,10930.805 +4298,2025-06-10T13:01:47.426276-07:00,1006.0484619140625,10.937923,10937.923 +4299,2025-06-10T13:01:58.363362-07:00,1006.0617065429688,10.937086,10937.086 +4300,2025-06-10T13:02:09.306364-07:00,1006.0435791015625,10.943002,10943.002 +4301,2025-06-10T13:02:20.248656-07:00,1006.0633544921875,10.942292,10942.292 +4302,2025-06-10T13:02:31.185349-07:00,1006.0353393554688,10.936693,10936.693 +4303,2025-06-10T13:02:42.114674-07:00,1006.0189208984375,10.929325,10929.325 +4304,2025-06-10T13:02:53.059163-07:00,1006.0484619140625,10.944489,10944.489 +4305,2025-06-10T13:03:04.004594-07:00,1006.0320434570312,10.945431,10945.431 +4306,2025-06-10T13:03:14.935517-07:00,1006.0284423828125,10.930923,10930.923 +4307,2025-06-10T13:03:25.880555-07:00,1006.0153198242188,10.945038,10945.038 +4308,2025-06-10T13:03:36.825604-07:00,1006.0548706054688,10.945049,10945.049 +4309,2025-06-10T13:03:47.766444-07:00,1006.0284423828125,10.94084,10940.84 +4310,2025-06-10T13:03:58.699477-07:00,1005.9793701171875,10.933033,10933.033 +4311,2025-06-10T13:04:09.644614-07:00,1006.00048828125,10.945137,10945.137 +4312,2025-06-10T13:04:20.574475-07:00,1005.966064453125,10.929861,10929.861 +4313,2025-06-10T13:04:31.514329-07:00,1005.9595336914062,10.939854,10939.854 +4314,2025-06-10T13:04:42.442598-07:00,1006.0070190429688,10.928269,10928.269 +4315,2025-06-10T13:04:53.382445-07:00,1006.0122680664062,10.939847,10939.847 +4316,2025-06-10T13:05:04.324335-07:00,1006.0122680664062,10.94189,10941.89 +4317,2025-06-10T13:05:15.265399-07:00,1005.9823608398438,10.941064,10941.064 +4318,2025-06-10T13:05:26.203341-07:00,1005.9542846679688,10.937942,10937.942 +4319,2025-06-10T13:05:37.137743-07:00,1005.993896484375,10.934402,10934.402 +4320,2025-06-10T13:05:48.087608-07:00,1006.0631103515625,10.949865,10949.865 +4321,2025-06-10T13:05:59.021923-07:00,1006.0284423828125,10.934315,10934.315 +4322,2025-06-10T13:06:09.964404-07:00,1005.9888916015625,10.942481,10942.481 +4323,2025-06-10T13:06:20.900732-07:00,1006.0284423828125,10.936328,10936.328 +4324,2025-06-10T13:06:31.846634-07:00,1006.0499267578125,10.945902,10945.902 +4325,2025-06-10T13:06:42.791399-07:00,1006.020263671875,10.944765,10944.765 +4326,2025-06-10T13:06:53.723362-07:00,1006.0218505859375,10.931963,10931.963 +4327,2025-06-10T13:07:04.666234-07:00,1006.0070190429688,10.942872,10942.872 +4328,2025-06-10T13:07:15.613455-07:00,1005.9906005859375,10.947221,10947.221 +4329,2025-06-10T13:07:26.551362-07:00,1006.0170288085938,10.937907,10937.907 +4330,2025-06-10T13:07:37.482903-07:00,1005.9985961914062,10.931541,10931.541 +4331,2025-06-10T13:07:48.421363-07:00,1006.0301513671875,10.93846,10938.46 +4332,2025-06-10T13:07:59.362405-07:00,1006.0218505859375,10.941042,10941.042 +4333,2025-06-10T13:08:10.297594-07:00,1005.9757690429688,10.935189,10935.189 +4334,2025-06-10T13:08:21.234844-07:00,1005.9757690429688,10.93725,10937.25 +4335,2025-06-10T13:08:32.175468-07:00,1005.9494018554688,10.940624,10940.624 +4336,2025-06-10T13:08:43.113772-07:00,1005.9906005859375,10.938304,10938.304 +4337,2025-06-10T13:08:54.044364-07:00,1005.9823608398438,10.930592,10930.592 +4338,2025-06-10T13:09:04.976484-07:00,1005.9823608398438,10.93212,10932.12 +4339,2025-06-10T13:09:15.916351-07:00,1005.9559326171875,10.939867,10939.867 +4340,2025-06-10T13:09:26.852666-07:00,1005.9476318359375,10.936315,10936.315 +4341,2025-06-10T13:09:37.787341-07:00,1005.9378051757812,10.934675,10934.675 +4342,2025-06-10T13:09:48.725704-07:00,1005.9146728515625,10.938363,10938.363 +4343,2025-06-10T13:09:59.662451-07:00,1005.9444580078125,10.936747,10936.747 +4344,2025-06-10T13:10:10.600366-07:00,1005.9312744140625,10.937915,10937.915 +4345,2025-06-10T13:10:21.540744-07:00,1005.9312744140625,10.940378,10940.378 +4346,2025-06-10T13:10:32.475369-07:00,1005.9707641601562,10.934625,10934.625 +4347,2025-06-10T13:10:43.422365-07:00,1005.94580078125,10.946996,10946.996 +4348,2025-06-10T13:10:54.361793-07:00,1005.97216796875,10.939428,10939.428 +4349,2025-06-10T13:11:05.308933-07:00,1005.934326171875,10.94714,10947.14 +4350,2025-06-10T13:11:16.240551-07:00,1005.9754638671875,10.931618,10931.618 +4351,2025-06-10T13:11:27.183351-07:00,1005.9491577148438,10.9428,10942.8 +4352,2025-06-10T13:11:38.126919-07:00,1005.989990234375,10.943568,10943.568 +4353,2025-06-10T13:11:49.061566-07:00,1005.96533203125,10.934647,10934.647 +4354,2025-06-10T13:12:00.002586-07:00,1005.9963989257812,10.94102,10941.02 +4355,2025-06-10T13:12:10.947350-07:00,1005.9636840820312,10.944764,10944.764 +4356,2025-06-10T13:12:21.883351-07:00,1005.971923828125,10.936001,10936.001 +4357,2025-06-10T13:12:32.827838-07:00,1005.9439086914062,10.944487,10944.487 +4358,2025-06-10T13:12:43.759846-07:00,1005.9522094726562,10.932008,10932.008 +4359,2025-06-10T13:12:54.699624-07:00,1005.9456176757812,10.939778,10939.778 +4360,2025-06-10T13:13:05.632608-07:00,1005.9768676757812,10.932984,10932.984 +4361,2025-06-10T13:13:16.571364-07:00,1005.9801635742188,10.938756,10938.756 +4362,2025-06-10T13:13:27.513356-07:00,1005.9554443359375,10.941992,10941.992 +4363,2025-06-10T13:13:38.453695-07:00,1005.9832763671875,10.940339,10940.339 +4364,2025-06-10T13:13:49.389589-07:00,1005.967041015625,10.935894,10935.894 +4365,2025-06-10T13:14:00.339467-07:00,1005.9981079101562,10.949878,10949.878 +4366,2025-06-10T13:14:11.282742-07:00,1005.9601440429688,10.943275,10943.275 +4367,2025-06-10T13:14:22.215495-07:00,1005.912353515625,10.932753,10932.753 +4368,2025-06-10T13:14:33.159456-07:00,1005.9190063476562,10.943961,10943.961 +4369,2025-06-10T13:14:44.100406-07:00,1005.9681396484375,10.94095,10940.95 +4370,2025-06-10T13:14:55.047293-07:00,1005.9453125,10.946887,10946.887 +4371,2025-06-10T13:15:05.990365-07:00,1006.0075073242188,10.943072,10943.072 +4372,2025-06-10T13:15:16.934351-07:00,1005.9631958007812,10.943986,10943.986 +4373,2025-06-10T13:15:27.882542-07:00,1005.9714965820312,10.948191,10948.191 +4374,2025-06-10T13:15:38.824640-07:00,1005.96484375,10.942098,10942.098 +4375,2025-06-10T13:15:49.758512-07:00,1005.9464111328125,10.933872,10933.872 +4376,2025-06-10T13:16:00.703366-07:00,1005.9745483398438,10.944854,10944.854 +4377,2025-06-10T13:16:11.646741-07:00,1005.9415893554688,10.943375,10943.375 +4378,2025-06-10T13:16:22.591605-07:00,1005.9714965820312,10.944864,10944.864 +4379,2025-06-10T13:16:33.539369-07:00,1005.959716796875,10.947764,10947.764 +4380,2025-06-10T13:16:44.483540-07:00,1005.9893798828125,10.944171,10944.171 +4381,2025-06-10T13:16:55.424652-07:00,1005.951416015625,10.941112,10941.112 +4382,2025-06-10T13:17:06.358794-07:00,1005.9349365234375,10.934142,10934.142 +4383,2025-06-10T13:17:17.299506-07:00,1005.94482421875,10.940712,10940.712 +4384,2025-06-10T13:17:28.246675-07:00,1005.9349365234375,10.947169,10947.169 +4385,2025-06-10T13:17:39.192406-07:00,1005.9646606445312,10.945731,10945.731 +4386,2025-06-10T13:17:50.131618-07:00,1005.9462280273438,10.939212,10939.212 +4387,2025-06-10T13:18:01.070784-07:00,1005.911865234375,10.939166,10939.166 +4388,2025-06-10T13:18:12.003347-07:00,1005.903564453125,10.932563,10932.563 +4389,2025-06-10T13:18:22.944884-07:00,1005.9132690429688,10.941537,10941.537 +4390,2025-06-10T13:18:33.891366-07:00,1005.979248046875,10.946482,10946.482 +4391,2025-06-10T13:18:44.826634-07:00,1005.91845703125,10.935268,10935.268 +4392,2025-06-10T13:18:55.776362-07:00,1005.9149169921875,10.949728,10949.728 +4393,2025-06-10T13:19:06.710699-07:00,1005.9102172851562,10.934337,10934.337 +4394,2025-06-10T13:19:17.656334-07:00,1005.9281005859375,10.945635,10945.635 +4395,2025-06-10T13:19:28.600536-07:00,1005.87060546875,10.944202,10944.202 +4396,2025-06-10T13:19:39.538345-07:00,1005.9053344726562,10.937809,10937.809 +4397,2025-06-10T13:19:50.482711-07:00,1005.8904418945312,10.944366,10944.366 +4398,2025-06-10T13:20:01.420756-07:00,1005.8869018554688,10.938045,10938.045 +4399,2025-06-10T13:20:12.367854-07:00,1005.9017333984375,10.947098,10947.098 +4400,2025-06-10T13:20:23.308826-07:00,1005.87890625,10.940972,10940.972 +4401,2025-06-10T13:20:34.251900-07:00,1005.9215698242188,10.943074,10943.074 +4402,2025-06-10T13:20:45.198366-07:00,1005.9198608398438,10.946466,10946.466 +4403,2025-06-10T13:20:56.144559-07:00,1005.9165649414062,10.946193,10946.193 +4404,2025-06-10T13:21:07.085354-07:00,1005.9198608398438,10.940795,10940.795 +4405,2025-06-10T13:21:18.025404-07:00,1005.9528198242188,10.94005,10940.05 +4406,2025-06-10T13:21:28.972774-07:00,1005.9017333984375,10.94737,10947.37 +4407,2025-06-10T13:21:39.918468-07:00,1005.9611206054688,10.945694,10945.694 +4408,2025-06-10T13:21:50.860792-07:00,1005.9346923828125,10.942324,10942.324 +4409,2025-06-10T13:22:01.801358-07:00,1005.9263916015625,10.940566,10940.566 +4410,2025-06-10T13:22:12.743542-07:00,1005.9082641601562,10.942184,10942.184 +4411,2025-06-10T13:22:23.691601-07:00,1005.924560546875,10.948059,10948.059 +4412,2025-06-10T13:22:34.632601-07:00,1005.9344482421875,10.941,10941.0 +4413,2025-06-10T13:22:45.579646-07:00,1005.9364013671875,10.947045,10947.045 +4414,2025-06-10T13:22:56.523367-07:00,1005.924560546875,10.943721,10943.721 +4415,2025-06-10T13:23:07.458284-07:00,1005.8886108398438,10.934917,10934.917 +4416,2025-06-10T13:23:18.411307-07:00,1005.9165649414062,10.953023,10953.023 +4417,2025-06-10T13:23:29.353362-07:00,1005.9310913085938,10.942055,10942.055 +4418,2025-06-10T13:23:40.305556-07:00,1005.9165649414062,10.952194,10952.194 +4419,2025-06-10T13:23:51.251366-07:00,1005.923095703125,10.94581,10945.81 +4420,2025-06-10T13:24:02.187662-07:00,1005.9310913085938,10.936296,10936.296 +4421,2025-06-10T13:24:13.138103-07:00,1005.8967895507812,10.950441,10950.441 +4422,2025-06-10T13:24:24.087544-07:00,1005.8967895507812,10.949441,10949.441 +4423,2025-06-10T13:24:35.022464-07:00,1005.9297485351562,10.93492,10934.92 +4424,2025-06-10T13:24:45.970234-07:00,1005.9627075195312,10.94777,10947.77 +4425,2025-06-10T13:24:56.915749-07:00,1005.950927734375,10.945515,10945.515 +4426,2025-06-10T13:25:07.864551-07:00,1005.9591674804688,10.948802,10948.802 +4427,2025-06-10T13:25:18.810588-07:00,1005.9198608398438,10.946037,10946.037 +4428,2025-06-10T13:25:29.757364-07:00,1005.9082641601562,10.946776,10946.776 +4429,2025-06-10T13:25:40.701320-07:00,1005.9297485351562,10.943956,10943.956 +4430,2025-06-10T13:25:51.642441-07:00,1005.9478759765625,10.941121,10941.121 +4431,2025-06-10T13:26:02.588356-07:00,1005.87890625,10.945915,10945.915 +4432,2025-06-10T13:26:13.534665-07:00,1005.9297485351562,10.946309,10946.309 +4433,2025-06-10T13:26:24.479717-07:00,1005.91796875,10.945052,10945.052 +4434,2025-06-10T13:26:35.422641-07:00,1005.9364013671875,10.942924,10942.924 +4435,2025-06-10T13:26:46.370354-07:00,1005.911865234375,10.947713,10947.713 +4436,2025-06-10T13:26:57.304364-07:00,1005.9066162109375,10.93401,10934.01 +4437,2025-06-10T13:27:08.256472-07:00,1005.8574829101562,10.952108,10952.108 +4438,2025-06-10T13:27:19.197672-07:00,1005.8557739257812,10.9412,10941.2 +4439,2025-06-10T13:27:30.136478-07:00,1005.87890625,10.938806,10938.806 +4440,2025-06-10T13:27:41.073812-07:00,1005.8772583007812,10.937334,10937.334 +4441,2025-06-10T13:27:52.000497-07:00,1005.859130859375,10.926685,10926.685 +4442,2025-06-10T13:28:02.932764-07:00,1005.837646484375,10.932267,10932.267 +4443,2025-06-10T13:28:13.872356-07:00,1005.837646484375,10.939592,10939.592 +4444,2025-06-10T13:28:24.801733-07:00,1005.8492431640625,10.929377,10929.377 +4445,2025-06-10T13:28:35.740357-07:00,1005.852783203125,10.938624,10938.624 +4446,2025-06-10T13:28:46.681402-07:00,1005.8607788085938,10.941045,10941.045 +4447,2025-06-10T13:28:57.620504-07:00,1005.8870849609375,10.939102,10939.102 +4448,2025-06-10T13:29:08.557366-07:00,1005.8294677734375,10.936862,10936.862 +4449,2025-06-10T13:29:19.545922-07:00,1005.8329467773438,10.988556,10988.556 +4450,2025-06-10T13:29:30.486504-07:00,1005.8211669921875,10.940582,10940.582 +4451,2025-06-10T13:29:41.430199-07:00,1005.8311157226562,10.943695,10943.695 +4452,2025-06-10T13:29:52.370014-07:00,1005.8294677734375,10.939815,10939.815 +4453,2025-06-10T13:30:03.305918-07:00,1005.8113403320312,10.935904,10935.904 +4454,2025-06-10T13:30:14.249775-07:00,1005.8228149414062,10.943857,10943.857 +4455,2025-06-10T13:30:25.194933-07:00,1005.7948608398438,10.945158,10945.158 +4456,2025-06-10T13:30:36.146939-07:00,1005.8113403320312,10.952006,10952.006 +4457,2025-06-10T13:30:47.086262-07:00,1005.83935546875,10.939323,10939.323 +4458,2025-06-10T13:30:58.031214-07:00,1005.8670043945312,10.944952,10944.952 +4459,2025-06-10T13:31:08.976301-07:00,1005.8687744140625,10.945087,10945.087 +4460,2025-06-10T13:31:19.908931-07:00,1005.8275146484375,10.93263,10932.63 +4461,2025-06-10T13:31:30.852256-07:00,1005.8357543945312,10.943325,10943.325 +4462,2025-06-10T13:31:41.782187-07:00,1005.8322143554688,10.929931,10929.931 +4463,2025-06-10T13:31:52.726173-07:00,1005.8440551757812,10.943986,10943.986 +4464,2025-06-10T13:32:03.655929-07:00,1005.8668823242188,10.929756,10929.756 +4465,2025-06-10T13:32:14.596964-07:00,1005.8649291992188,10.941035,10941.035 +4466,2025-06-10T13:32:25.533204-07:00,1005.8552856445312,10.93624,10936.24 +4467,2025-06-10T13:32:36.474049-07:00,1005.8421630859375,10.940845,10940.845 +4468,2025-06-10T13:32:47.415053-07:00,1005.8583374023438,10.941004,10941.004 +4469,2025-06-10T13:32:58.343192-07:00,1005.8468627929688,10.928139,10928.139 +4470,2025-06-10T13:33:09.288089-07:00,1005.8583374023438,10.944897,10944.897 +4471,2025-06-10T13:33:20.228966-07:00,1005.838623046875,10.940877,10940.877 +4472,2025-06-10T13:33:31.181166-07:00,1005.8451538085938,10.9522,10952.2 +4473,2025-06-10T13:33:42.120956-07:00,1005.8451538085938,10.93979,10939.79 +4474,2025-06-10T13:33:53.060906-07:00,1005.8300170898438,10.93995,10939.95 +4475,2025-06-10T13:34:03.998372-07:00,1005.7904663085938,10.937466,10937.466 +4476,2025-06-10T13:34:14.932149-07:00,1005.7625122070312,10.933777,10933.777 +4477,2025-06-10T13:34:25.877933-07:00,1005.7970581054688,10.945784,10945.784 +4478,2025-06-10T13:34:36.814225-07:00,1005.8201293945312,10.936292,10936.292 +4479,2025-06-10T13:34:47.747923-07:00,1005.8201293945312,10.933698,10933.698 +4480,2025-06-10T13:34:58.694931-07:00,1005.8267822265625,10.947008,10947.008 +4481,2025-06-10T13:35:09.634447-07:00,1005.877685546875,10.939516,10939.516 +4482,2025-06-10T13:35:20.562972-07:00,1005.8231811523438,10.928525,10928.525 +4483,2025-06-10T13:35:31.505936-07:00,1005.8182983398438,10.942964,10942.964 +4484,2025-06-10T13:35:42.444958-07:00,1005.8130493164062,10.939022,10939.022 +4485,2025-06-10T13:35:53.384096-07:00,1005.8248291015625,10.939138,10939.138 +4486,2025-06-10T13:36:04.322289-07:00,1005.78662109375,10.938193,10938.193 +4487,2025-06-10T13:36:15.248931-07:00,1005.819580078125,10.926642,10926.642 +4488,2025-06-10T13:36:26.194931-07:00,1005.814697265625,10.946,10946.0 +4489,2025-06-10T13:36:37.125379-07:00,1005.7686157226562,10.930448,10930.448 +4490,2025-06-10T13:36:48.072122-07:00,1005.78466796875,10.946743,10946.743 +4491,2025-06-10T13:36:59.003367-07:00,1005.814697265625,10.931245,10931.245 +4492,2025-06-10T13:37:09.942915-07:00,1005.827880859375,10.939548,10939.548 +4493,2025-06-10T13:37:20.885168-07:00,1005.8097534179688,10.942253,10942.253 +4494,2025-06-10T13:37:31.822224-07:00,1005.8097534179688,10.937056,10937.056 +4495,2025-06-10T13:37:42.754072-07:00,1005.8375244140625,10.931848,10931.848 +4496,2025-06-10T13:37:53.688286-07:00,1005.8193969726562,10.934214,10934.214 +4497,2025-06-10T13:38:04.626904-07:00,1005.7767944335938,10.938618,10938.618 +4498,2025-06-10T13:38:15.575103-07:00,1005.7715454101562,10.948199,10948.199 +4499,2025-06-10T13:38:26.512933-07:00,1005.7965698242188,10.93783,10937.83 +4500,2025-06-10T13:38:37.447651-07:00,1005.8110961914062,10.934718,10934.718 +4501,2025-06-10T13:38:48.388919-07:00,1005.8110961914062,10.941268,10941.268 +4502,2025-06-10T13:38:59.334991-07:00,1005.7996215820312,10.946072,10946.072 +4503,2025-06-10T13:39:10.273359-07:00,1005.8015747070312,10.938368,10938.368 +4504,2025-06-10T13:39:21.208175-07:00,1005.7979736328125,10.934816,10934.816 +4505,2025-06-10T13:39:32.149927-07:00,1005.80615234375,10.941752,10941.752 +4506,2025-06-10T13:39:43.087070-07:00,1005.7979736328125,10.937143,10937.143 +4507,2025-06-10T13:39:54.034929-07:00,1005.7665405273438,10.947859,10947.859 +4508,2025-06-10T13:40:04.966583-07:00,1005.7996215820312,10.931654,10931.654 +4509,2025-06-10T13:40:15.912833-07:00,1005.8161010742188,10.94625,10946.25 +4510,2025-06-10T13:40:26.854967-07:00,1005.7650146484375,10.942134,10942.134 +4511,2025-06-10T13:40:37.797908-07:00,1005.768310546875,10.942941,10942.941 +4512,2025-06-10T13:40:48.742105-07:00,1005.77294921875,10.944197,10944.197 +4513,2025-06-10T13:40:59.684560-07:00,1005.7221069335938,10.942455,10942.455 +4514,2025-06-10T13:41:10.619922-07:00,1005.7831420898438,10.935362,10935.362 +4515,2025-06-10T13:41:21.559470-07:00,1005.801025390625,10.939548,10939.548 +4516,2025-06-10T13:41:32.509490-07:00,1005.7845458984375,10.95002,10950.02 +4517,2025-06-10T13:41:43.449135-07:00,1005.77294921875,10.939645,10939.645 +4518,2025-06-10T13:41:51.812367-07:00,1005.801025390625,8.363232,8363.232 +4519,2025-06-10T13:41:54.388935-07:00,1005.7449340820312,2.576568,2576.568 +4520,2025-06-10T13:42:05.325210-07:00,1005.787841796875,10.936275,10936.275 +4521,2025-06-10T13:42:16.274923-07:00,1005.759765625,10.949713,10949.713 +4522,2025-06-10T13:42:27.211929-07:00,1005.7349853515625,10.937006,10937.006 +4523,2025-06-10T13:42:38.150043-07:00,1005.7664184570312,10.938114,10938.114 +4524,2025-06-10T13:42:49.081928-07:00,1005.77294921875,10.931885,10931.885 +4525,2025-06-10T13:43:00.020207-07:00,1005.78125,10.938279,10938.279 +4526,2025-06-10T13:43:10.945925-07:00,1005.7693481445312,10.925718,10925.718 +4527,2025-06-10T13:43:21.891383-07:00,1005.7363891601562,10.945458,10945.458 +4528,2025-06-10T13:43:32.818923-07:00,1005.7429809570312,10.92754,10927.54 +4529,2025-06-10T13:43:43.762134-07:00,1005.7529907226562,10.943211,10943.211 +4530,2025-06-10T13:43:54.699229-07:00,1005.7410888671875,10.937095,10937.095 +4531,2025-06-10T13:44:05.634910-07:00,1005.6968994140625,10.935681,10935.681 +4532,2025-06-10T13:44:16.581919-07:00,1005.724853515625,10.947009,10947.009 +4533,2025-06-10T13:44:27.515240-07:00,1005.7396850585938,10.933321,10933.321 +4534,2025-06-10T13:44:38.452126-07:00,1005.7548217773438,10.936886,10936.886 +4535,2025-06-10T13:44:49.394929-07:00,1005.7363891601562,10.942803,10942.803 +4536,2025-06-10T13:45:00.328507-07:00,1005.746337890625,10.933578,10933.578 +4537,2025-06-10T13:45:11.269933-07:00,1005.746337890625,10.941426,10941.426 +4538,2025-06-10T13:45:22.209286-07:00,1005.7396850585938,10.939353,10939.353 +4539,2025-06-10T13:45:29.991461-07:00,1005.7265625,7.782175,7782.175 +4540,2025-06-10T13:45:33.148611-07:00,1005.7410888671875,3.15715,3157.15 +4541,2025-06-10T13:45:44.087933-07:00,1005.7117309570312,10.939322,10939.322 +4542,2025-06-10T13:45:55.022244-07:00,1005.7410888671875,10.934311,10934.311 +4543,2025-06-10T13:46:05.964181-07:00,1005.7081298828125,10.941937,10941.937 +4544,2025-06-10T13:46:16.902927-07:00,1005.7312622070312,10.938746,10938.746 +4545,2025-06-10T13:46:27.841841-07:00,1005.7179565429688,10.938914,10938.914 +4546,2025-06-10T13:46:38.771931-07:00,1005.7061767578125,10.93009,10930.09 +4547,2025-06-10T13:46:49.716929-07:00,1005.7128295898438,10.944998,10944.998 +4548,2025-06-10T13:47:00.651312-07:00,1005.7193603515625,10.934383,10934.383 +4549,2025-06-10T13:47:11.584935-07:00,1005.7276611328125,10.933623,10933.623 +4550,2025-06-10T13:47:22.529439-07:00,1005.7295532226562,10.944504,10944.504 +4551,2025-06-10T13:47:33.471177-07:00,1005.7457885742188,10.941738,10941.738 +4552,2025-06-10T13:47:44.410931-07:00,1005.6817016601562,10.939754,10939.754 +4553,2025-06-10T13:47:55.352922-07:00,1005.6768188476562,10.941991,10941.991 +4554,2025-06-10T13:48:06.297317-07:00,1005.6817016601562,10.944395,10944.395 +4555,2025-06-10T13:48:17.236184-07:00,1005.7212524414062,10.938867,10938.867 +4556,2025-06-10T13:48:28.171276-07:00,1005.7015380859375,10.935092,10935.092 +4557,2025-06-10T13:48:39.096927-07:00,1005.693603515625,10.925651,10925.651 +4558,2025-06-10T13:48:50.033946-07:00,1005.703125,10.937019,10937.019 +4559,2025-06-10T13:49:00.968929-07:00,1005.658935546875,10.934983,10934.983 +4560,2025-06-10T13:49:11.901320-07:00,1005.7164306640625,10.932391,10932.391 +4561,2025-06-10T13:49:22.842671-07:00,1005.66064453125,10.941351,10941.351 +4562,2025-06-10T13:49:33.776931-07:00,1005.6671752929688,10.93426,10934.26 +4563,2025-06-10T13:49:44.713219-07:00,1005.6817016601562,10.936288,10936.288 +4564,2025-06-10T13:49:55.647977-07:00,1005.6570434570312,10.934758,10934.758 +4565,2025-06-10T13:50:06.576426-07:00,1005.638916015625,10.928449,10928.449 +4566,2025-06-10T13:50:17.511923-07:00,1005.6270141601562,10.935497,10935.497 +4567,2025-06-10T13:50:28.458175-07:00,1005.658447265625,10.946252,10946.252 +4568,2025-06-10T13:50:39.388306-07:00,1005.6451416015625,10.930131,10930.131 +4569,2025-06-10T13:50:50.334027-07:00,1005.67822265625,10.945721,10945.721 +4570,2025-06-10T13:51:01.276041-07:00,1005.6765747070312,10.942014,10942.014 +4571,2025-06-10T13:51:12.214158-07:00,1005.6994018554688,10.938117,10938.117 +4572,2025-06-10T13:51:23.156112-07:00,1005.6436157226562,10.941954,10941.954 +4573,2025-06-10T13:51:34.085923-07:00,1005.6320190429688,10.929811,10929.811 +4574,2025-06-10T13:51:45.022112-07:00,1005.63671875,10.936189,10936.189 +4575,2025-06-10T13:51:55.967931-07:00,1005.5674438476562,10.945819,10945.819 +4576,2025-06-10T13:52:06.912941-07:00,1005.6004028320312,10.94501,10945.01 +4577,2025-06-10T13:52:17.849139-07:00,1005.595458984375,10.936198,10936.198 +4578,2025-06-10T13:52:28.785927-07:00,1005.59375,10.936788,10936.788 +4579,2025-06-10T13:52:39.727138-07:00,1005.587158203125,10.941211,10941.211 +4580,2025-06-10T13:52:50.661961-07:00,1005.648193359375,10.934823,10934.823 +4581,2025-06-10T13:53:01.601929-07:00,1005.6415405273438,10.939968,10939.968 +4582,2025-06-10T13:53:12.537423-07:00,1005.643310546875,10.935494,10935.494 +4583,2025-06-10T13:53:23.473929-07:00,1005.6168823242188,10.936506,10936.506 +4584,2025-06-10T13:53:34.409933-07:00,1005.62353515625,10.936004,10936.004 +4585,2025-06-10T13:53:45.346200-07:00,1005.6415405273438,10.936267,10936.267 +4586,2025-06-10T13:53:56.289095-07:00,1005.656494140625,10.942895,10942.895 +4587,2025-06-10T13:54:07.222632-07:00,1005.6320190429688,10.933537,10933.537 +4588,2025-06-10T13:54:18.167776-07:00,1005.661376953125,10.945144,10945.144 +4589,2025-06-10T13:54:29.096152-07:00,1005.648193359375,10.928376,10928.376 +4590,2025-06-10T13:54:40.042298-07:00,1005.62548828125,10.946146,10946.146 +4591,2025-06-10T13:54:50.971931-07:00,1005.6548461914062,10.929633,10929.633 +4592,2025-06-10T13:55:01.905375-07:00,1005.6451416015625,10.933444,10933.444 +4593,2025-06-10T13:55:12.840626-07:00,1005.6320190429688,10.935251,10935.251 +4594,2025-06-10T13:55:23.775929-07:00,1005.6320190429688,10.935303,10935.303 +4595,2025-06-10T13:55:34.710973-07:00,1005.6451416015625,10.935044,10935.044 +4596,2025-06-10T13:55:45.645929-07:00,1005.65673828125,10.934956,10934.956 +4597,2025-06-10T13:55:56.576617-07:00,1005.6320190429688,10.930688,10930.688 +4598,2025-06-10T13:56:07.515910-07:00,1005.6201782226562,10.939293,10939.293 +4599,2025-06-10T13:56:18.449271-07:00,1005.610595703125,10.933361,10933.361 +4600,2025-06-10T13:56:29.394232-07:00,1005.60400390625,10.944961,10944.961 +4601,2025-06-10T13:56:40.333860-07:00,1005.5792236328125,10.939628,10939.628 +4602,2025-06-10T13:56:51.272011-07:00,1005.6121826171875,10.938151,10938.151 +4603,2025-06-10T13:57:02.206929-07:00,1005.55126953125,10.934918,10934.918 +4604,2025-06-10T13:57:13.141919-07:00,1005.5806274414062,10.93499,10934.99 +4605,2025-06-10T13:57:24.087220-07:00,1005.5792236328125,10.945301,10945.301 +4606,2025-06-10T13:57:35.021106-07:00,1005.5674438476562,10.933886,10933.886 +4607,2025-06-10T13:57:45.968054-07:00,1005.5625,10.946948,10946.948 +4608,2025-06-10T13:57:56.918161-07:00,1005.569091796875,10.950107,10950.107 +4609,2025-06-10T13:58:07.853111-07:00,1005.5574951171875,10.93495,10934.95 +4610,2025-06-10T13:58:18.792921-07:00,1005.54931640625,10.93981,10939.81 +4611,2025-06-10T13:58:29.733246-07:00,1005.5971069335938,10.940325,10940.325 +4612,2025-06-10T13:58:40.673395-07:00,1005.5674438476562,10.940149,10940.149 +4613,2025-06-10T13:58:51.604935-07:00,1005.5661010742188,10.93154,10931.54 +4614,2025-06-10T13:59:02.540952-07:00,1005.5674438476562,10.936017,10936.017 +4615,2025-06-10T13:59:13.479923-07:00,1005.5426635742188,10.938971,10938.971 +4616,2025-06-10T13:59:24.415087-07:00,1005.5773315429688,10.935164,10935.164 +4617,2025-06-10T13:59:35.353955-07:00,1005.5740356445312,10.938868,10938.868 +4618,2025-06-10T13:59:46.287936-07:00,1005.572021484375,10.933981,10933.981 +4619,2025-06-10T13:59:57.237262-07:00,1005.569091796875,10.949326,10949.326 +4620,2025-06-10T14:00:08.166912-07:00,1005.5588989257812,10.92965,10929.65 +4621,2025-06-10T14:00:19.108932-07:00,1005.5918579101562,10.94202,10942.02 +4622,2025-06-10T14:00:30.048242-07:00,1005.5773315429688,10.93931,10939.31 +4623,2025-06-10T14:00:40.983932-07:00,1005.5853271484375,10.93569,10935.69 +4624,2025-06-10T14:00:51.935082-07:00,1005.5868530273438,10.95115,10951.15 +4625,2025-06-10T14:01:02.874764-07:00,1005.5773315429688,10.939682,10939.682 +4626,2025-06-10T14:01:13.825355-07:00,1005.5509643554688,10.950591,10950.591 +4627,2025-06-10T14:01:24.764927-07:00,1005.54736328125,10.939572,10939.572 +4628,2025-06-10T14:01:35.707164-07:00,1005.5523681640625,10.942237,10942.237 +4629,2025-06-10T14:01:46.647271-07:00,1005.5965576171875,10.940107,10940.107 +4630,2025-06-10T14:01:57.585526-07:00,1005.5424194335938,10.938255,10938.255 +4631,2025-06-10T14:02:08.523973-07:00,1005.5209350585938,10.938447,10938.447 +4632,2025-06-10T14:02:19.453931-07:00,1005.5108032226562,10.929958,10929.958 +4633,2025-06-10T14:02:30.389931-07:00,1005.49462890625,10.936,10936.0 +4634,2025-06-10T14:02:41.335930-07:00,1005.494384765625,10.945999,10945.999 +4635,2025-06-10T14:02:52.273282-07:00,1005.51904296875,10.937352,10937.352 +4636,2025-06-10T14:03:03.209264-07:00,1005.4877319335938,10.935982,10935.982 +4637,2025-06-10T14:03:14.146178-07:00,1005.525634765625,10.936914,10936.914 +4638,2025-06-10T14:03:25.084420-07:00,1005.51904296875,10.938242,10938.242 +4639,2025-06-10T14:03:36.018951-07:00,1005.5059204101562,10.934531,10934.531 +4640,2025-06-10T14:03:46.957969-07:00,1005.5089111328125,10.939018,10939.018 +4641,2025-06-10T14:03:57.897929-07:00,1005.494384765625,10.93996,10939.96 +4642,2025-06-10T14:04:08.842779-07:00,1005.494384765625,10.94485,10944.85 +4643,2025-06-10T14:04:19.782481-07:00,1005.4890747070312,10.939702,10939.702 +4644,2025-06-10T14:04:30.719100-07:00,1005.4890747070312,10.936619,10936.619 +4645,2025-06-10T14:04:41.662929-07:00,1005.51220703125,10.943829,10943.829 +4646,2025-06-10T14:04:52.595062-07:00,1005.5584106445312,10.932133,10932.133 +4647,2025-06-10T14:05:03.541936-07:00,1005.5465698242188,10.946874,10946.874 +4648,2025-06-10T14:05:14.474349-07:00,1005.5632934570312,10.932413,10932.413 +4649,2025-06-10T14:05:25.420304-07:00,1005.5518188476562,10.945955,10945.955 +4650,2025-06-10T14:05:36.356081-07:00,1005.5614013671875,10.935777,10935.777 +4651,2025-06-10T14:05:47.302910-07:00,1005.5333862304688,10.946829,10946.829 +4652,2025-06-10T14:05:58.233039-07:00,1005.55810546875,10.930129,10930.129 +4653,2025-06-10T14:06:09.172181-07:00,1005.577880859375,10.939142,10939.142 +4654,2025-06-10T14:06:20.121968-07:00,1005.5201416015625,10.949787,10949.787 +4655,2025-06-10T14:06:31.067061-07:00,1005.5333862304688,10.945093,10945.093 +4656,2025-06-10T14:06:41.996929-07:00,1005.503662109375,10.929868,10929.868 +4657,2025-06-10T14:06:52.942908-07:00,1005.4954833984375,10.945979,10945.979 +4658,2025-06-10T14:07:03.887225-07:00,1005.482177734375,10.944317,10944.317 +4659,2025-06-10T14:07:14.820985-07:00,1005.5198364257812,10.93376,10933.76 +4660,2025-06-10T14:07:25.761045-07:00,1005.4888305664062,10.94006,10940.06 +4661,2025-06-10T14:07:36.691918-07:00,1005.523193359375,10.930873,10930.873 +4662,2025-06-10T14:07:47.630934-07:00,1005.496826171875,10.939016,10939.016 +4663,2025-06-10T14:07:58.570203-07:00,1005.50341796875,10.939269,10939.269 +4664,2025-06-10T14:08:09.508973-07:00,1005.4835815429688,10.93877,10938.77 +4665,2025-06-10T14:08:20.452044-07:00,1005.5262451171875,10.943071,10943.071 +4666,2025-06-10T14:08:31.388870-07:00,1005.5179443359375,10.936826,10936.826 +4667,2025-06-10T14:08:42.327914-07:00,1005.5423583984375,10.939044,10939.044 +4668,2025-06-10T14:08:53.264278-07:00,1005.5147094726562,10.936364,10936.364 +4669,2025-06-10T14:09:04.210295-07:00,1005.4932250976562,10.946017,10946.017 +4670,2025-06-10T14:09:15.145927-07:00,1005.4978637695312,10.935632,10935.632 +4671,2025-06-10T14:09:26.091053-07:00,1005.494873046875,10.945126,10945.126 +4672,2025-06-10T14:09:37.031533-07:00,1005.5308837890625,10.94048,10940.48 +4673,2025-06-10T14:09:47.964926-07:00,1005.5111083984375,10.933393,10933.393 +4674,2025-06-10T14:09:58.904915-07:00,1005.5127563476562,10.939989,10939.989 +4675,2025-06-10T14:10:09.853227-07:00,1005.4781494140625,10.948312,10948.312 +4676,2025-06-10T14:10:20.795645-07:00,1005.46484375,10.942418,10942.418 +4677,2025-06-10T14:10:31.731927-07:00,1005.486328125,10.936282,10936.282 +4678,2025-06-10T14:10:42.670382-07:00,1005.4500122070312,10.938455,10938.455 +4679,2025-06-10T14:10:53.608253-07:00,1005.4942016601562,10.937871,10937.871 +4680,2025-06-10T14:11:04.555922-07:00,1005.4745483398438,10.947669,10947.669 +4681,2025-06-10T14:11:15.496115-07:00,1005.4827270507812,10.940193,10940.193 +4682,2025-06-10T14:11:26.434282-07:00,1005.4876708984375,10.938167,10938.167 +4683,2025-06-10T14:11:37.381902-07:00,1005.486328125,10.94762,10947.62 +4684,2025-06-10T14:11:48.321928-07:00,1005.5042114257812,10.940026,10940.026 +4685,2025-06-10T14:11:59.267571-07:00,1005.49755859375,10.945643,10945.643 +4686,2025-06-10T14:12:10.207954-07:00,1005.47607421875,10.940383,10940.383 +4687,2025-06-10T14:12:21.140187-07:00,1005.4695434570312,10.932233,10932.233 +4688,2025-06-10T14:12:32.086124-07:00,1005.4794311523438,10.945937,10945.937 +4689,2025-06-10T14:12:43.023929-07:00,1005.4609985351562,10.937805,10937.805 +4690,2025-06-10T14:12:53.964933-07:00,1005.4662475585938,10.941004,10941.004 +4691,2025-06-10T14:13:04.906650-07:00,1005.453125,10.941717,10941.717 +4692,2025-06-10T14:13:15.844928-07:00,1005.475830078125,10.938278,10938.278 +4693,2025-06-10T14:13:26.787126-07:00,1005.4794311523438,10.942198,10942.198 +4694,2025-06-10T14:13:37.721036-07:00,1005.453125,10.93391,10933.91 +4695,2025-06-10T14:13:48.654947-07:00,1005.4662475585938,10.933911,10933.911 +4696,2025-06-10T14:13:59.594344-07:00,1005.4478149414062,10.939397,10939.397 +4697,2025-06-10T14:14:10.540647-07:00,1005.4824829101562,10.946303,10946.303 +4698,2025-06-10T14:14:21.473923-07:00,1005.4774780273438,10.933276,10933.276 +4699,2025-06-10T14:14:32.407260-07:00,1005.470947265625,10.933337,10933.337 +4700,2025-06-10T14:14:43.342931-07:00,1005.5052490234375,10.935671,10935.671 +4701,2025-06-10T14:14:54.283937-07:00,1005.4985961914062,10.941006,10941.006 +4702,2025-06-10T14:15:05.224246-07:00,1005.5052490234375,10.940309,10940.309 +4703,2025-06-10T14:15:16.162933-07:00,1005.48876953125,10.938687,10938.687 +4704,2025-06-10T14:15:27.092209-07:00,1005.447509765625,10.929276,10929.276 +4705,2025-06-10T14:15:38.031908-07:00,1005.5098266601562,10.939699,10939.699 +4706,2025-06-10T14:15:48.971308-07:00,1005.5003051757812,10.9394,10939.4 +4707,2025-06-10T14:15:59.900001-07:00,1005.4722900390625,10.928693,10928.693 +4708,2025-06-10T14:16:10.840075-07:00,1005.457763671875,10.940074,10940.074 +4709,2025-06-10T14:16:21.777453-07:00,1005.4824829101562,10.937378,10937.378 +4710,2025-06-10T14:16:32.708950-07:00,1005.5119018554688,10.931497,10931.497 +4711,2025-06-10T14:16:43.647713-07:00,1005.4840698242188,10.938763,10938.763 +4712,2025-06-10T14:16:54.579926-07:00,1005.4445190429688,10.932213,10932.213 +4713,2025-06-10T14:17:05.512980-07:00,1005.436279296875,10.933054,10933.054 +4714,2025-06-10T14:17:16.446965-07:00,1005.43798828125,10.933985,10933.985 +4715,2025-06-10T14:17:27.379933-07:00,1005.4326782226562,10.932968,10932.968 +4716,2025-06-10T14:17:38.313443-07:00,1005.4590454101562,10.93351,10933.51 +4717,2025-06-10T14:17:49.247931-07:00,1005.4032592773438,10.934488,10934.488 +4718,2025-06-10T14:18:00.188046-07:00,1005.4445190429688,10.940115,10940.115 +4719,2025-06-10T14:18:11.120918-07:00,1005.5068969726562,10.932872,10932.872 +4720,2025-06-10T14:18:22.051345-07:00,1005.4722900390625,10.930427,10930.427 +4721,2025-06-10T14:18:32.991914-07:00,1005.470947265625,10.940569,10940.569 +4722,2025-06-10T14:18:43.932168-07:00,1005.4570922851562,10.940254,10940.254 +4723,2025-06-10T14:18:54.864188-07:00,1005.4637451171875,10.93202,10932.02 +4724,2025-06-10T14:19:05.798954-07:00,1005.4445190429688,10.934766,10934.766 +4725,2025-06-10T14:19:16.734507-07:00,1005.427734375,10.935553,10935.553 +4726,2025-06-10T14:19:27.666934-07:00,1005.4425659179688,10.932427,10932.427 +4727,2025-06-10T14:19:38.607934-07:00,1005.4541625976562,10.941,10941.0 +4728,2025-06-10T14:19:49.543874-07:00,1005.427734375,10.93594,10935.94 +4729,2025-06-10T14:20:00.483192-07:00,1005.4246826171875,10.939318,10939.318 +4730,2025-06-10T14:20:11.416392-07:00,1005.399658203125,10.9332,10933.2 +4731,2025-06-10T14:20:22.355908-07:00,1005.4181518554688,10.939516,10939.516 +4732,2025-06-10T14:20:33.292939-07:00,1005.405029296875,10.937031,10937.031 +4733,2025-06-10T14:20:44.235466-07:00,1005.4029541015625,10.942527,10942.527 +4734,2025-06-10T14:20:55.168919-07:00,1005.427734375,10.933453,10933.453 +4735,2025-06-10T14:21:06.110916-07:00,1005.407958984375,10.941997,10941.997 +4736,2025-06-10T14:21:17.039178-07:00,1005.3983764648438,10.928262,10928.262 +4737,2025-06-10T14:21:27.985933-07:00,1005.3983764648438,10.946755,10946.755 +4738,2025-06-10T14:21:38.917225-07:00,1005.40625,10.931292,10931.292 +4739,2025-06-10T14:21:49.853923-07:00,1005.3587646484375,10.936698,10936.698 +4740,2025-06-10T14:21:58.261834-07:00,1005.3881225585938,8.407911,8407.911 +4741,2025-06-10T14:22:00.799215-07:00,1005.373291015625,2.537381,2537.381 +4742,2025-06-10T14:22:11.739393-07:00,1005.3571166992188,10.940178,10940.178 +4743,2025-06-10T14:22:22.668912-07:00,1005.381591796875,10.929519,10929.519 +4744,2025-06-10T14:22:33.603083-07:00,1005.3881225585938,10.934171,10934.171 +4745,2025-06-10T14:22:44.548916-07:00,1005.3456420898438,10.945833,10945.833 +4746,2025-06-10T14:22:55.476385-07:00,1005.3521728515625,10.927469,10927.469 +4747,2025-06-10T14:23:06.409727-07:00,1005.3683471679688,10.933342,10933.342 +4748,2025-06-10T14:23:17.354149-07:00,1005.3699951171875,10.944422,10944.422 +4749,2025-06-10T14:23:28.283176-07:00,1005.3683471679688,10.929027,10929.027 +4750,2025-06-10T14:23:39.220200-07:00,1005.39111328125,10.937024,10937.024 +4751,2025-06-10T14:23:50.160918-07:00,1005.3634643554688,10.940718,10940.718 +4752,2025-06-10T14:24:01.091153-07:00,1005.3634643554688,10.930235,10930.235 +4753,2025-06-10T14:24:12.036933-07:00,1005.3634643554688,10.94578,10945.78 +4754,2025-06-10T14:24:22.968912-07:00,1005.33837890625,10.931979,10931.979 +4755,2025-06-10T14:24:33.914349-07:00,1005.3317260742188,10.945437,10945.437 +4756,2025-06-10T14:24:44.847255-07:00,1005.3023681640625,10.932906,10932.906 +4757,2025-06-10T14:24:55.792972-07:00,1005.2974853515625,10.945717,10945.717 +4758,2025-06-10T14:25:06.729159-07:00,1005.2842407226562,10.936187,10936.187 +4759,2025-06-10T14:25:17.661167-07:00,1005.3284301757812,10.932008,10932.008 +4760,2025-06-10T14:25:28.602218-07:00,1005.3135986328125,10.941051,10941.051 +4761,2025-06-10T14:25:39.530244-07:00,1005.2644653320312,10.928026,10928.026 +4762,2025-06-10T14:25:50.474132-07:00,1005.318603515625,10.943888,10943.888 +4763,2025-06-10T14:26:01.409199-07:00,1005.3106079101562,10.935067,10935.067 +4764,2025-06-10T14:26:12.343925-07:00,1005.3663940429688,10.934726,10934.726 +4765,2025-06-10T14:26:23.287271-07:00,1005.344970703125,10.943346,10943.346 +4766,2025-06-10T14:26:34.231104-07:00,1005.3040771484375,10.943833,10943.833 +4767,2025-06-10T14:26:45.159920-07:00,1005.3812255859375,10.928816,10928.816 +4768,2025-06-10T14:26:56.104423-07:00,1005.3812255859375,10.944503,10944.503 +4769,2025-06-10T14:27:07.039923-07:00,1005.38623046875,10.9355,10935.5 +4770,2025-06-10T14:27:17.984975-07:00,1005.3334350585938,10.945052,10945.052 +4771,2025-06-10T14:27:28.918572-07:00,1005.3446655273438,10.933597,10933.597 +4772,2025-06-10T14:27:39.861916-07:00,1005.3350830078125,10.943344,10943.344 +4773,2025-06-10T14:27:50.796199-07:00,1005.3746948242188,10.934283,10934.283 +4774,2025-06-10T14:28:01.726156-07:00,1005.3202514648438,10.929957,10929.957 +4775,2025-06-10T14:28:12.669933-07:00,1005.3565673828125,10.943777,10943.777 +4776,2025-06-10T14:28:23.601124-07:00,1005.3482666015625,10.931191,10931.191 +4777,2025-06-10T14:28:34.540929-07:00,1005.3182983398438,10.939805,10939.805 +4778,2025-06-10T14:28:45.477558-07:00,1005.3696899414062,10.936629,10936.629 +4779,2025-06-10T14:28:56.409100-07:00,1005.3350830078125,10.931542,10931.542 +4780,2025-06-10T14:29:07.343923-07:00,1005.3400268554688,10.934823,10934.823 +4781,2025-06-10T14:29:18.286560-07:00,1005.34326171875,10.942637,10942.637 +4782,2025-06-10T14:29:29.258593-07:00,1005.3417358398438,10.972033,10972.033 +4783,2025-06-10T14:29:40.197084-07:00,1005.3396606445312,10.938491,10938.491 +4784,2025-06-10T14:29:51.136260-07:00,1005.3153076171875,10.939176,10939.176 +4785,2025-06-10T14:30:02.076584-07:00,1005.310302734375,10.940324,10940.324 +4786,2025-06-10T14:30:13.013790-07:00,1005.3050537109375,10.937206,10937.206 +4787,2025-06-10T14:30:23.946597-07:00,1005.3087768554688,10.932807,10932.807 +4788,2025-06-10T14:30:34.877599-07:00,1005.34326171875,10.931002,10931.002 +4789,2025-06-10T14:30:45.818965-07:00,1005.3218994140625,10.941366,10941.366 +4790,2025-06-10T14:30:56.757597-07:00,1005.3512573242188,10.938632,10938.632 +4791,2025-06-10T14:31:07.692828-07:00,1005.3248291015625,10.935231,10935.231 +4792,2025-06-10T14:31:18.631631-07:00,1005.310302734375,10.938803,10938.803 +4793,2025-06-10T14:31:29.577709-07:00,1005.338134765625,10.946078,10946.078 +4794,2025-06-10T14:31:40.513116-07:00,1005.3331298828125,10.935407,10935.407 +4795,2025-06-10T14:31:51.452584-07:00,1005.3236083984375,10.939468,10939.468 +4796,2025-06-10T14:32:02.388602-07:00,1005.3577880859375,10.936018,10936.018 +4797,2025-06-10T14:32:13.324912-07:00,1005.3314819335938,10.93631,10936.31 +4798,2025-06-10T14:32:24.271881-07:00,1005.3446655273438,10.946969,10946.969 +4799,2025-06-10T14:32:35.207169-07:00,1005.3135986328125,10.935288,10935.288 +4800,2025-06-10T14:32:46.148316-07:00,1005.3301391601562,10.941147,10941.147 +4801,2025-06-10T14:32:57.089597-07:00,1005.3037719726562,10.941281,10941.281 +4802,2025-06-10T14:33:08.017591-07:00,1005.3182983398438,10.927994,10927.994 +4803,2025-06-10T14:33:18.960538-07:00,1005.3265380859375,10.942947,10942.947 +4804,2025-06-10T14:33:29.900862-07:00,1005.3331298828125,10.940324,10940.324 +4805,2025-06-10T14:33:40.839131-07:00,1005.4007568359375,10.938269,10938.269 +4806,2025-06-10T14:33:51.780073-07:00,1005.35595703125,10.940942,10940.942 +4807,2025-06-10T14:34:02.721602-07:00,1005.3577880859375,10.941529,10941.529 +4808,2025-06-10T14:34:13.659596-07:00,1005.3199462890625,10.937994,10937.994 +4809,2025-06-10T14:34:24.600921-07:00,1005.3545532226562,10.941325,10941.325 +4810,2025-06-10T14:34:35.533697-07:00,1005.3281860351562,10.932776,10932.776 +4811,2025-06-10T14:34:46.480641-07:00,1005.3361206054688,10.946944,10946.944 +4812,2025-06-10T14:34:57.418899-07:00,1005.3427124023438,10.938258,10938.258 +4813,2025-06-10T14:35:08.352597-07:00,1005.3378295898438,10.933698,10933.698 +4814,2025-06-10T14:35:19.296043-07:00,1005.3394775390625,10.943446,10943.446 +4815,2025-06-10T14:35:30.222602-07:00,1005.2982177734375,10.926559,10926.559 +4816,2025-06-10T14:35:41.163597-07:00,1005.306396484375,10.940995,10940.995 +4817,2025-06-10T14:35:52.091596-07:00,1005.3179931640625,10.927999,10927.999 +4818,2025-06-10T14:36:03.034597-07:00,1005.2915649414062,10.943001,10943.001 +4819,2025-06-10T14:36:13.970927-07:00,1005.28662109375,10.93633,10936.33 +4820,2025-06-10T14:36:24.915631-07:00,1005.3130493164062,10.944704,10944.704 +4821,2025-06-10T14:36:35.851581-07:00,1005.2932739257812,10.93595,10935.95 +4822,2025-06-10T14:36:46.795896-07:00,1005.2734375,10.944315,10944.315 +4823,2025-06-10T14:36:57.735910-07:00,1005.306396484375,10.940014,10940.014 +4824,2025-06-10T14:37:08.681728-07:00,1005.2946166992188,10.945818,10945.818 +4825,2025-06-10T14:37:19.624597-07:00,1005.3011474609375,10.942869,10942.869 +4826,2025-06-10T14:37:30.570261-07:00,1005.2830200195312,10.945664,10945.664 +4827,2025-06-10T14:37:41.500649-07:00,1005.2764282226562,10.930388,10930.388 +4828,2025-06-10T14:37:52.447577-07:00,1005.2830200195312,10.946928,10946.928 +4829,2025-06-10T14:38:03.392923-07:00,1005.2715454101562,10.945346,10945.346 +4830,2025-06-10T14:38:14.331834-07:00,1005.25830078125,10.938911,10938.911 +4831,2025-06-10T14:38:25.272601-07:00,1005.3009643554688,10.940767,10940.767 +4832,2025-06-10T14:38:36.219581-07:00,1005.2810668945312,10.94698,10946.98 +4833,2025-06-10T14:38:47.163895-07:00,1005.28466796875,10.944314,10944.314 +4834,2025-06-10T14:38:58.098636-07:00,1005.2728271484375,10.934741,10934.741 +4835,2025-06-10T14:39:09.037665-07:00,1005.2715454101562,10.939029,10939.029 +4836,2025-06-10T14:39:19.982684-07:00,1005.2761840820312,10.945019,10945.019 +4837,2025-06-10T14:39:30.923715-07:00,1005.262939453125,10.941031,10941.031 +4838,2025-06-10T14:39:41.864591-07:00,1005.20849609375,10.940876,10940.876 +4839,2025-06-10T14:39:52.810004-07:00,1005.2564086914062,10.945413,10945.413 +4840,2025-06-10T14:40:03.745587-07:00,1005.2593994140625,10.935583,10935.583 +4841,2025-06-10T14:40:14.678503-07:00,1005.2527465820312,10.932916,10932.916 +4842,2025-06-10T14:40:25.611815-07:00,1005.236572265625,10.933312,10933.312 +4843,2025-06-10T14:40:36.558888-07:00,1005.2315673828125,10.947073,10947.073 +4844,2025-06-10T14:40:47.493887-07:00,1005.223388671875,10.934999,10934.999 +4845,2025-06-10T14:40:58.420855-07:00,1005.2217407226562,10.926968,10926.968 +4846,2025-06-10T14:41:09.361601-07:00,1005.2382202148438,10.940746,10940.746 +4847,2025-06-10T14:41:20.304453-07:00,1005.2197875976562,10.942852,10942.852 +4848,2025-06-10T14:41:31.239591-07:00,1005.20849609375,10.935138,10935.138 +4849,2025-06-10T14:41:42.168885-07:00,1005.2068481445312,10.929294,10929.294 +4850,2025-06-10T14:41:53.116937-07:00,1005.223388671875,10.948052,10948.052 +4851,2025-06-10T14:42:04.048854-07:00,1005.2463989257812,10.931917,10931.917 +4852,2025-06-10T14:42:14.988612-07:00,1005.2398681640625,10.939758,10939.758 +4853,2025-06-10T14:42:25.924755-07:00,1005.2318725585938,10.936143,10936.143 +4854,2025-06-10T14:42:36.858641-07:00,1005.2200927734375,10.933886,10933.886 +4855,2025-06-10T14:42:47.796806-07:00,1005.2217407226562,10.938165,10938.165 +4856,2025-06-10T14:42:58.731607-07:00,1005.236572265625,10.934801,10934.801 +4857,2025-06-10T14:43:09.672893-07:00,1005.2315673828125,10.941286,10941.286 +4858,2025-06-10T14:43:20.607835-07:00,1005.228271484375,10.934942,10934.942 +4859,2025-06-10T14:43:31.553597-07:00,1005.22998046875,10.945762,10945.762 +4860,2025-06-10T14:43:42.490952-07:00,1005.2382202148438,10.937355,10937.355 +4861,2025-06-10T14:43:53.430912-07:00,1005.24609375,10.93996,10939.96 +4862,2025-06-10T14:44:04.370842-07:00,1005.2725219726562,10.93993,10939.93 +4863,2025-06-10T14:44:15.306973-07:00,1005.2626342773438,10.936131,10936.131 +4864,2025-06-10T14:44:26.248582-07:00,1005.2843627929688,10.941609,10941.609 +4865,2025-06-10T14:44:37.189185-07:00,1005.2742309570312,10.940603,10940.603 +4866,2025-06-10T14:44:48.129923-07:00,1005.2639770507812,10.940738,10940.738 +4867,2025-06-10T14:44:59.072691-07:00,1005.3154907226562,10.942768,10942.768 +4868,2025-06-10T14:45:10.015582-07:00,1005.2940063476562,10.942891,10942.891 +4869,2025-06-10T14:45:20.957202-07:00,1005.2771606445312,10.94162,10941.62 +4870,2025-06-10T14:45:31.889637-07:00,1005.3233642578125,10.932435,10932.435 +4871,2025-06-10T14:45:42.839777-07:00,1005.3035888671875,10.95014,10950.14 +4872,2025-06-10T14:45:53.771928-07:00,1005.3035888671875,10.932151,10932.151 +4873,2025-06-10T14:46:04.712837-07:00,1005.298583984375,10.940909,10940.909 +4874,2025-06-10T14:46:15.655601-07:00,1005.3497924804688,10.942764,10942.764 +4875,2025-06-10T14:46:26.593795-07:00,1005.2706298828125,10.938194,10938.194 +4876,2025-06-10T14:46:37.542748-07:00,1005.2178344726562,10.948953,10948.953 +4877,2025-06-10T14:46:48.475601-07:00,1005.2494506835938,10.932853,10932.853 +4878,2025-06-10T14:46:59.417170-07:00,1005.2081909179688,10.941569,10941.569 +4879,2025-06-10T14:47:10.357426-07:00,1005.2706298828125,10.940256,10940.256 +4880,2025-06-10T14:47:21.291218-07:00,1005.2639770507812,10.933792,10933.792 +4881,2025-06-10T14:47:32.231552-07:00,1005.2771606445312,10.940334,10940.334 +4882,2025-06-10T14:47:43.169597-07:00,1005.260986328125,10.938045,10938.045 +4883,2025-06-10T14:47:54.110133-07:00,1005.25439453125,10.940536,10940.536 +4884,2025-06-10T14:48:05.042952-07:00,1005.2837524414062,10.932819,10932.819 +4885,2025-06-10T14:48:15.972605-07:00,1005.2676391601562,10.929653,10929.653 +4886,2025-06-10T14:48:26.914751-07:00,1005.308837890625,10.942146,10942.146 +4887,2025-06-10T14:48:37.847582-07:00,1005.259033203125,10.932831,10932.831 +4888,2025-06-10T14:48:48.787650-07:00,1005.28076171875,10.940068,10940.068 +4889,2025-06-10T14:48:59.722944-07:00,1005.2706298828125,10.935294,10935.294 +4890,2025-06-10T14:49:10.668593-07:00,1005.2692260742188,10.945649,10945.649 +4891,2025-06-10T14:49:21.602369-07:00,1005.2442016601562,10.933776,10933.776 +4892,2025-06-10T14:49:32.548106-07:00,1005.2639770507812,10.945737,10945.737 +4893,2025-06-10T14:49:43.481618-07:00,1005.2706298828125,10.933512,10933.512 +4894,2025-06-10T14:49:54.425597-07:00,1005.2442016601562,10.943979,10943.979 +4895,2025-06-10T14:50:05.369685-07:00,1005.265625,10.944088,10944.088 +4896,2025-06-10T14:50:16.307602-07:00,1005.2639770507812,10.937917,10937.917 +4897,2025-06-10T14:50:27.253605-07:00,1005.2606811523438,10.946003,10946.003 +4898,2025-06-10T14:50:38.199073-07:00,1005.259033203125,10.945468,10945.468 +4899,2025-06-10T14:50:49.132401-07:00,1005.2310180664062,10.933328,10933.328 +4900,2025-06-10T14:51:00.073602-07:00,1005.2178344726562,10.941201,10941.201 +4901,2025-06-10T14:51:11.008453-07:00,1005.259033203125,10.934851,10934.851 +4902,2025-06-10T14:51:21.947593-07:00,1005.2343139648438,10.93914,10939.14 +4903,2025-06-10T14:51:32.893861-07:00,1005.2804565429688,10.946268,10946.268 +4904,2025-06-10T14:51:43.827130-07:00,1005.2706298828125,10.933269,10933.269 +4905,2025-06-10T14:51:54.759597-07:00,1005.245849609375,10.932467,10932.467 +4906,2025-06-10T14:52:05.702114-07:00,1005.2818603515625,10.942517,10942.517 +4907,2025-06-10T14:52:16.636579-07:00,1005.2818603515625,10.934465,10934.465 +4908,2025-06-10T14:52:27.579543-07:00,1005.2804565429688,10.942964,10942.964 +4909,2025-06-10T14:52:38.510069-07:00,1005.2818603515625,10.930526,10930.526 +4910,2025-06-10T14:52:49.441584-07:00,1005.27392578125,10.931515,10931.515 +4911,2025-06-10T14:53:00.378952-07:00,1005.283447265625,10.937368,10937.368 +4912,2025-06-10T14:53:11.315849-07:00,1005.2488403320312,10.936897,10936.897 +4913,2025-06-10T14:53:22.250981-07:00,1005.259033203125,10.935132,10935.132 +4914,2025-06-10T14:53:33.193395-07:00,1005.27392578125,10.942414,10942.414 +4915,2025-06-10T14:53:44.142597-07:00,1005.240966796875,10.949202,10949.202 +4916,2025-06-10T14:53:55.083741-07:00,1005.2804565429688,10.941144,10941.144 +4917,2025-06-10T14:54:06.016850-07:00,1005.3148193359375,10.933109,10933.109 +4918,2025-06-10T14:54:16.963625-07:00,1005.2901000976562,10.946775,10946.775 +4919,2025-06-10T14:54:27.904596-07:00,1005.25048828125,10.940971,10940.971 +4920,2025-06-10T14:54:38.845964-07:00,1005.2525024414062,10.941368,10941.368 +4921,2025-06-10T14:54:49.791121-07:00,1005.2540893554688,10.945157,10945.157 +4922,2025-06-10T14:55:00.733595-07:00,1005.2474975585938,10.942474,10942.474 +4923,2025-06-10T14:55:11.675633-07:00,1005.2686157226562,10.942038,10942.038 +4924,2025-06-10T14:55:22.620633-07:00,1005.278564453125,10.945,10945.0 +4925,2025-06-10T14:55:33.572028-07:00,1005.291748046875,10.951395,10951.395 +4926,2025-06-10T14:55:44.510863-07:00,1005.3148193359375,10.938835,10938.835 +4927,2025-06-10T14:55:55.458601-07:00,1005.2488403320312,10.947738,10947.738 +4928,2025-06-10T14:56:06.407583-07:00,1005.27685546875,10.948982,10948.982 +4929,2025-06-10T14:56:17.345867-07:00,1005.243896484375,10.938284,10938.284 +4930,2025-06-10T14:56:28.287860-07:00,1005.2191162109375,10.941993,10941.993 +4931,2025-06-10T14:56:39.230601-07:00,1005.2406005859375,10.942741,10942.741 +4932,2025-06-10T14:56:50.179630-07:00,1005.217529296875,10.949029,10949.029 +4933,2025-06-10T14:57:01.115923-07:00,1005.2191162109375,10.936293,10936.293 +4934,2025-06-10T14:57:12.059595-07:00,1005.2388916015625,10.943672,10943.672 +4935,2025-06-10T14:57:22.994914-07:00,1005.2587280273438,10.935319,10935.319 +4936,2025-06-10T14:57:33.941843-07:00,1005.2801513671875,10.946929,10946.929 +4937,2025-06-10T14:57:44.874638-07:00,1005.2831420898438,10.932795,10932.795 +4938,2025-06-10T14:57:55.818842-07:00,1005.3145141601562,10.944204,10944.204 +4939,2025-06-10T14:58:06.769229-07:00,1005.2736206054688,10.950387,10950.387 +4940,2025-06-10T14:58:17.711035-07:00,1005.2471923828125,10.941806,10941.806 +4941,2025-06-10T14:58:28.652652-07:00,1005.2171630859375,10.941617,10941.617 +4942,2025-06-10T14:58:39.601714-07:00,1005.2831420898438,10.949062,10949.062 +4943,2025-06-10T14:58:50.538272-07:00,1005.24853515625,10.936558,10936.558 +4944,2025-06-10T14:59:01.489852-07:00,1005.2207641601562,10.95158,10951.58 +4945,2025-06-10T14:59:12.433601-07:00,1005.24853515625,10.943749,10943.749 +4946,2025-06-10T14:59:23.368713-07:00,1005.2304077148438,10.935112,10935.112 +4947,2025-06-10T14:59:34.322875-07:00,1005.2039794921875,10.954162,10954.162 +4948,2025-06-10T14:59:45.252854-07:00,1005.2023315429688,10.929979,10929.979 +4949,2025-06-10T14:59:56.193780-07:00,1005.2237548828125,10.940926,10940.926 +4950,2025-06-10T15:00:07.138550-07:00,1005.2304077148438,10.94477,10944.77 +4951,2025-06-10T15:00:18.086670-07:00,1005.2089233398438,10.94812,10948.12 +4952,2025-06-10T15:00:29.021744-07:00,1005.2254638671875,10.935074,10935.074 +4953,2025-06-10T15:00:39.965253-07:00,1005.2023315429688,10.943509,10943.509 +4954,2025-06-10T15:00:50.915892-07:00,1005.2039794921875,10.950639,10950.639 +4955,2025-06-10T15:01:01.861618-07:00,1005.2089233398438,10.945726,10945.726 +4956,2025-06-10T15:01:12.801843-07:00,1005.1907958984375,10.940225,10940.225 +4957,2025-06-10T15:01:23.747599-07:00,1005.2003784179688,10.945756,10945.756 +4958,2025-06-10T15:01:34.695350-07:00,1005.1821899414062,10.947751,10947.751 +4959,2025-06-10T15:01:45.633093-07:00,1005.1673583984375,10.937743,10937.743 +4960,2025-06-10T15:01:56.577590-07:00,1005.1558837890625,10.944497,10944.497 +4961,2025-06-10T15:02:07.529581-07:00,1005.1806030273438,10.951991,10951.991 +4962,2025-06-10T15:02:18.473877-07:00,1005.1806030273438,10.944296,10944.296 +4963,2025-06-10T15:02:29.410601-07:00,1005.1937255859375,10.936724,10936.724 +4964,2025-06-10T15:02:40.349770-07:00,1005.2284545898438,10.939169,10939.169 +4965,2025-06-10T15:02:51.283813-07:00,1005.2003784179688,10.934043,10934.043 +4966,2025-06-10T15:03:02.218863-07:00,1005.2036743164062,10.93505,10935.05 +4967,2025-06-10T15:03:13.163632-07:00,1005.2020263671875,10.944769,10944.769 +4968,2025-06-10T15:03:24.098735-07:00,1005.1871948242188,10.935103,10935.103 +4969,2025-06-10T15:03:35.045584-07:00,1005.197021484375,10.946849,10946.849 +4970,2025-06-10T15:03:45.989982-07:00,1005.1984252929688,10.944398,10944.398 +4971,2025-06-10T15:03:56.930080-07:00,1005.1640625,10.940098,10940.098 +4972,2025-06-10T15:04:07.865631-07:00,1005.1720581054688,10.935551,10935.551 +4973,2025-06-10T15:04:18.811597-07:00,1005.1509399414062,10.945966,10945.966 +4974,2025-06-10T15:04:29.753650-07:00,1005.1868896484375,10.942053,10942.053 +4975,2025-06-10T15:04:40.695023-07:00,1005.1640625,10.941373,10941.373 +4976,2025-06-10T15:04:51.633587-07:00,1005.1720581054688,10.938564,10938.564 +4977,2025-06-10T15:05:02.575944-07:00,1005.1785888671875,10.942357,10942.357 +4978,2025-06-10T15:05:13.520473-07:00,1005.1604614257812,10.944529,10944.529 +4979,2025-06-10T15:05:24.464637-07:00,1005.1670532226562,10.944164,10944.164 +4980,2025-06-10T15:05:35.395850-07:00,1005.1604614257812,10.931213,10931.213 +4981,2025-06-10T15:05:46.339583-07:00,1005.1112670898438,10.943733,10943.733 +4982,2025-06-10T15:05:57.280731-07:00,1005.1802978515625,10.941148,10941.148 +4983,2025-06-10T15:06:08.226830-07:00,1005.1885375976562,10.946099,10946.099 +4984,2025-06-10T15:06:19.171977-07:00,1005.140625,10.945147,10945.147 +4985,2025-06-10T15:06:30.111841-07:00,1005.1588134765625,10.939864,10939.864 +4986,2025-06-10T15:06:41.051894-07:00,1005.2281494140625,10.940053,10940.053 +4987,2025-06-10T15:06:51.994812-07:00,1005.1736450195312,10.942918,10942.918 +4988,2025-06-10T15:07:02.926586-07:00,1005.1027221679688,10.931774,10931.774 +4989,2025-06-10T15:07:13.871599-07:00,1005.208251953125,10.945013,10945.013 +4990,2025-06-10T15:07:24.808069-07:00,1005.1588134765625,10.93647,10936.47 +4991,2025-06-10T15:07:35.744595-07:00,1005.1521606445312,10.936526,10936.526 +4992,2025-06-10T15:07:46.680597-07:00,1005.1521606445312,10.936002,10936.002 +4993,2025-06-10T15:07:57.615634-07:00,1005.1640625,10.935037,10935.037 +4994,2025-06-10T15:08:08.554645-07:00,1005.144287109375,10.939011,10939.011 +4995,2025-06-10T15:08:19.497879-07:00,1005.1802978515625,10.943234,10943.234 +4996,2025-06-10T15:08:30.442087-07:00,1005.1588134765625,10.944208,10944.208 +4997,2025-06-10T15:08:41.372599-07:00,1005.1773681640625,10.930512,10930.512 +4998,2025-06-10T15:08:52.319582-07:00,1005.1509399414062,10.946983,10946.983 +4999,2025-06-10T15:09:03.264884-07:00,1005.157470703125,10.945302,10945.302 +5000,2025-06-10T15:09:14.197593-07:00,1005.1588134765625,10.932709,10932.709 +5001,2025-06-10T15:09:25.137207-07:00,1005.1472778320312,10.939614,10939.614 +5002,2025-06-10T15:09:36.079204-07:00,1005.1509399414062,10.941997,10941.997 +5003,2025-06-10T15:09:47.014756-07:00,1005.1690673828125,10.935552,10935.552 +5004,2025-06-10T15:09:57.956633-07:00,1005.1670532226562,10.941877,10941.877 +5005,2025-06-10T15:10:08.894855-07:00,1005.107666015625,10.938222,10938.222 +5006,2025-06-10T15:10:19.835591-07:00,1005.14892578125,10.940736,10940.736 +5007,2025-06-10T15:10:30.775871-07:00,1005.140625,10.94028,10940.28 +5008,2025-06-10T15:10:41.704838-07:00,1005.181884765625,10.928967,10928.967 +5009,2025-06-10T15:10:52.648616-07:00,1005.1934204101562,10.943778,10943.778 +5010,2025-06-10T15:11:03.592721-07:00,1005.1802978515625,10.944105,10944.105 +5011,2025-06-10T15:11:14.531768-07:00,1005.1687622070312,10.939047,10939.047 +5012,2025-06-10T15:11:25.478295-07:00,1005.142333984375,10.946527,10946.527 +5013,2025-06-10T15:11:36.419076-07:00,1005.0812377929688,10.940781,10940.781 +5014,2025-06-10T15:11:47.358878-07:00,1005.1403198242188,10.939802,10939.802 +5015,2025-06-10T15:11:58.303600-07:00,1005.14697265625,10.944722,10944.722 +5016,2025-06-10T15:12:09.250636-07:00,1005.115966796875,10.947036,10947.036 +5017,2025-06-10T15:12:20.191599-07:00,1005.1123657226562,10.940963,10940.963 +5018,2025-06-10T15:12:31.137037-07:00,1005.1697387695312,10.945438,10945.438 +5019,2025-06-10T15:12:42.081597-07:00,1005.15185546875,10.94456,10944.56 +5020,2025-06-10T15:12:53.019699-07:00,1005.1849365234375,10.938102,10938.102 +5021,2025-06-10T15:13:03.955569-07:00,1005.1585083007812,10.93587,10935.87 +5022,2025-06-10T15:13:14.901597-07:00,1005.1716918945312,10.946028,10946.028 +5023,2025-06-10T15:13:25.845897-07:00,1005.1766967773438,10.9443,10944.3 +5024,2025-06-10T15:13:36.783832-07:00,1005.1997680664062,10.937935,10937.935 +5025,2025-06-10T15:13:47.721587-07:00,1005.2245483398438,10.937755,10937.755 +5026,2025-06-10T15:13:58.670591-07:00,1005.193115234375,10.949004,10949.004 +5027,2025-06-10T15:14:09.618724-07:00,1005.16015625,10.948133,10948.133 +5028,2025-06-10T15:14:20.570590-07:00,1005.2327880859375,10.951866,10951.866 +5029,2025-06-10T15:14:31.514207-07:00,1005.2064208984375,10.943617,10943.617 +5030,2025-06-10T15:14:42.455832-07:00,1005.1865844726562,10.941625,10941.625 +5031,2025-06-10T15:14:53.409602-07:00,1005.2212524414062,10.95377,10953.77 +5032,2025-06-10T15:15:04.351850-07:00,1005.161865234375,10.942248,10942.248 +5033,2025-06-10T15:15:15.291902-07:00,1005.1815795898438,10.940052,10940.052 +5034,2025-06-10T15:15:26.228240-07:00,1005.166748046875,10.936338,10936.338 +5035,2025-06-10T15:15:37.174723-07:00,1005.2027587890625,10.946483,10946.483 +5036,2025-06-10T15:15:48.112831-07:00,1005.227783203125,10.938108,10938.108 +5037,2025-06-10T15:15:59.052605-07:00,1005.201416015625,10.939774,10939.774 +5038,2025-06-10T15:16:09.999597-07:00,1005.2113037109375,10.946992,10946.992 +5039,2025-06-10T15:16:20.944644-07:00,1005.2195434570312,10.945047,10945.047 +5040,2025-06-10T15:16:31.879942-07:00,1005.1997680664062,10.935298,10935.298 +5041,2025-06-10T15:16:42.823593-07:00,1005.2064208984375,10.943651,10943.651 +5042,2025-06-10T15:16:53.769604-07:00,1005.1865844726562,10.946011,10946.011 +5043,2025-06-10T15:17:04.703845-07:00,1005.2079467773438,10.934241,10934.241 +5044,2025-06-10T15:17:15.648901-07:00,1005.1634521484375,10.945056,10945.056 +5045,2025-06-10T15:17:26.592862-07:00,1005.1961059570312,10.943961,10943.961 +5046,2025-06-10T15:17:37.533614-07:00,1005.2591552734375,10.940752,10940.752 +5047,2025-06-10T15:17:48.474595-07:00,1005.1898193359375,10.940981,10940.981 +5048,2025-06-10T15:17:59.419597-07:00,1005.2327880859375,10.945002,10945.002 +5049,2025-06-10T15:18:10.358892-07:00,1005.1832885742188,10.939295,10939.295 +5050,2025-06-10T15:18:21.300962-07:00,1005.2327880859375,10.94207,10942.07 +5051,2025-06-10T15:18:32.231601-07:00,1005.1915893554688,10.930639,10930.639 +5052,2025-06-10T15:18:43.168925-07:00,1005.2228393554688,10.937324,10937.324 +5053,2025-06-10T15:18:54.106752-07:00,1005.1981201171875,10.937827,10937.827 +5054,2025-06-10T15:19:05.048726-07:00,1005.275634765625,10.941974,10941.974 +5055,2025-06-10T15:19:15.994367-07:00,1005.2706909179688,10.945641,10945.641 +5056,2025-06-10T15:19:26.926599-07:00,1005.24267578125,10.932232,10932.232 +5057,2025-06-10T15:19:37.869644-07:00,1005.2443237304688,10.943045,10943.045 +5058,2025-06-10T15:19:48.807857-07:00,1005.1964111328125,10.938213,10938.213 +5059,2025-06-10T15:19:59.760894-07:00,1005.24267578125,10.953037,10953.037 +5060,2025-06-10T15:20:10.694601-07:00,1005.2215576171875,10.933707,10933.707 +5061,2025-06-10T15:20:21.646596-07:00,1005.3004150390625,10.951995,10951.995 +5062,2025-06-10T15:20:32.587243-07:00,1005.214599609375,10.940647,10940.647 +5063,2025-06-10T15:20:43.541988-07:00,1005.3004150390625,10.954745,10954.745 +5064,2025-06-10T15:20:54.480597-07:00,1005.227783203125,10.938609,10938.609 +5065,2025-06-10T15:21:05.421859-07:00,1005.2212524414062,10.941262,10941.262 +5066,2025-06-10T15:21:16.367717-07:00,1005.2212524414062,10.945858,10945.858 +5067,2025-06-10T15:21:27.306633-07:00,1005.2113037109375,10.938916,10938.916 +5068,2025-06-10T15:21:38.251883-07:00,1005.2129516601562,10.94525,10945.25 +5069,2025-06-10T15:21:49.193837-07:00,1005.188232421875,10.941954,10941.954 +5070,2025-06-10T15:22:00.139023-07:00,1005.2212524414062,10.945186,10945.186 +5071,2025-06-10T15:22:11.076991-07:00,1005.2129516601562,10.937968,10937.968 +5072,2025-06-10T15:22:22.019385-07:00,1005.2064208984375,10.942394,10942.394 +5073,2025-06-10T15:22:32.961873-07:00,1005.2224731445312,10.942488,10942.488 +5074,2025-06-10T15:22:43.911236-07:00,1005.2327880859375,10.949363,10949.363 +5075,2025-06-10T15:22:54.861045-07:00,1005.2423706054688,10.949809,10949.809 +5076,2025-06-10T15:23:05.806597-07:00,1005.2476806640625,10.945552,10945.552 +5077,2025-06-10T15:23:16.748744-07:00,1005.3195190429688,10.942147,10942.147 +5078,2025-06-10T15:23:27.687473-07:00,1005.2968139648438,10.938729,10938.729 +5079,2025-06-10T15:23:38.631642-07:00,1005.2476806640625,10.944169,10944.169 +5080,2025-06-10T15:23:49.576586-07:00,1005.2242431640625,10.944944,10944.944 +5081,2025-06-10T15:24:00.523781-07:00,1005.2937622070312,10.947195,10947.195 +5082,2025-06-10T15:24:11.462147-07:00,1005.2291259765625,10.938366,10938.366 +5083,2025-06-10T15:24:22.402818-07:00,1005.24560546875,10.940671,10940.671 +5084,2025-06-10T15:24:33.344601-07:00,1005.2489013671875,10.941783,10941.783 +5085,2025-06-10T15:24:44.277741-07:00,1005.2224731445312,10.93314,10933.14 +5086,2025-06-10T15:24:55.216678-07:00,1005.281982421875,10.938937,10938.937 +5087,2025-06-10T15:25:06.147889-07:00,1005.2865600585938,10.931211,10931.211 +5088,2025-06-10T15:25:17.094586-07:00,1005.2439575195312,10.946697,10946.697 +5089,2025-06-10T15:25:28.036773-07:00,1005.2654418945312,10.942187,10942.187 +5090,2025-06-10T15:25:38.980108-07:00,1005.2423706054688,10.943335,10943.335 +5091,2025-06-10T15:25:49.912011-07:00,1005.2637329101562,10.931903,10931.903 +5092,2025-06-10T15:26:00.859790-07:00,1005.3116455078125,10.947779,10947.779 +5093,2025-06-10T15:26:11.797643-07:00,1005.21923828125,10.937853,10937.853 +5094,2025-06-10T15:26:22.743794-07:00,1005.2552490234375,10.946151,10946.151 +5095,2025-06-10T15:26:33.677587-07:00,1005.2931518554688,10.933793,10933.793 +5096,2025-06-10T15:26:44.629722-07:00,1005.280029296875,10.952135,10952.135 +5097,2025-06-10T15:26:55.574375-07:00,1005.2390747070312,10.944653,10944.653 +5098,2025-06-10T15:27:06.524248-07:00,1005.2485961914062,10.949873,10949.873 +5099,2025-06-10T15:27:17.470595-07:00,1005.2637329101562,10.946347,10946.347 +5100,2025-06-10T15:27:28.404587-07:00,1005.2506103515625,10.933992,10933.992 +5101,2025-06-10T15:27:39.351556-07:00,1005.263427734375,10.946969,10946.969 +5102,2025-06-10T15:27:50.298848-07:00,1005.263427734375,10.947292,10947.292 +5103,2025-06-10T15:28:01.237859-07:00,1005.2835693359375,10.939011,10939.011 +5104,2025-06-10T15:28:12.187849-07:00,1005.2684326171875,10.94999,10949.99 +5105,2025-06-10T15:28:23.132645-07:00,1005.3295288085938,10.944796,10944.796 +5106,2025-06-10T15:28:34.074885-07:00,1005.2714233398438,10.94224,10942.24 +5107,2025-06-10T15:28:45.024630-07:00,1005.2384643554688,10.949745,10949.745 +5108,2025-06-10T15:28:55.958848-07:00,1005.2648315429688,10.934218,10934.218 +5109,2025-06-10T15:29:06.888471-07:00,1005.2714233398438,10.929623,10929.623 +5110,2025-06-10T15:29:17.822980-07:00,1005.2120361328125,10.934509,10934.509 +5111,2025-06-10T15:29:28.748816-07:00,1005.2380981445312,10.925836,10925.836 +5112,2025-06-10T15:29:39.696179-07:00,1005.259521484375,10.947363,10947.363 +5113,2025-06-10T15:29:50.631220-07:00,1005.2578735351562,10.935041,10935.041 +5114,2025-06-10T15:30:01.577398-07:00,1005.2249145507812,10.946178,10946.178 +5115,2025-06-10T15:30:12.520644-07:00,1005.2446899414062,10.943246,10943.246 +5116,2025-06-10T15:30:23.459734-07:00,1005.2366943359375,10.93909,10939.09 +5117,2025-06-10T15:30:34.402438-07:00,1005.2380981445312,10.942704,10942.704 +5118,2025-06-10T15:30:45.348944-07:00,1005.2559204101562,10.946506,10946.506 +5119,2025-06-10T15:30:56.287397-07:00,1005.1951293945312,10.938453,10938.453 +5120,2025-06-10T15:31:07.233377-07:00,1005.2215576171875,10.94598,10945.98 +5121,2025-06-10T15:31:18.174568-07:00,1005.2479858398438,10.941191,10941.191 +5122,2025-06-10T15:31:29.127558-07:00,1005.2301635742188,10.95299,10952.99 +5123,2025-06-10T15:31:40.069716-07:00,1005.2169799804688,10.942158,10942.158 +5124,2025-06-10T15:31:51.009705-07:00,1005.2413940429688,10.939989,10939.989 +5125,2025-06-10T15:32:01.955394-07:00,1005.2366943359375,10.945689,10945.689 +5126,2025-06-10T15:32:12.901880-07:00,1005.272705078125,10.946486,10946.486 +5127,2025-06-10T15:32:23.846109-07:00,1005.2711181640625,10.944229,10944.229 +5128,2025-06-10T15:32:34.783386-07:00,1005.2843017578125,10.937277,10937.277 +5129,2025-06-10T15:32:45.729644-07:00,1005.2876586914062,10.946258,10946.258 +5130,2025-06-10T15:32:56.661417-07:00,1005.2117309570312,10.931773,10931.773 +5131,2025-06-10T15:33:07.601461-07:00,1005.2282104492188,10.940044,10940.044 +5132,2025-06-10T15:33:18.541487-07:00,1005.2037353515625,10.940026,10940.026 +5133,2025-06-10T15:33:29.480382-07:00,1005.251220703125,10.938895,10938.895 +5134,2025-06-10T15:33:40.433394-07:00,1005.228515625,10.953012,10953.012 +5135,2025-06-10T15:33:51.377387-07:00,1005.269775390625,10.943993,10943.993 +5136,2025-06-10T15:34:02.319388-07:00,1005.2578735351562,10.942001,10942.001 +5137,2025-06-10T15:34:13.258061-07:00,1005.2909545898438,10.938673,10938.673 +5138,2025-06-10T15:34:24.203572-07:00,1005.2813110351562,10.945511,10945.511 +5139,2025-06-10T15:34:35.149511-07:00,1005.25,10.945939,10945.939 +5140,2025-06-10T15:34:46.092843-07:00,1005.2169799804688,10.943332,10943.332 +5141,2025-06-10T15:34:57.038338-07:00,1005.2169799804688,10.945495,10945.495 +5142,2025-06-10T15:35:07.975373-07:00,1005.2433471679688,10.937035,10937.035 +5143,2025-06-10T15:35:18.919379-07:00,1005.2218627929688,10.944006,10944.006 +5144,2025-06-10T15:35:29.865770-07:00,1005.2103881835938,10.946391,10946.391 +5145,2025-06-10T15:35:40.800444-07:00,1005.2169799804688,10.934674,10934.674 +5146,2025-06-10T15:35:51.746493-07:00,1005.2117309570312,10.946049,10946.049 +5147,2025-06-10T15:36:02.679727-07:00,1005.1839599609375,10.933234,10933.234 +5148,2025-06-10T15:36:13.625382-07:00,1005.2117309570312,10.945655,10945.655 +5149,2025-06-10T15:36:24.559387-07:00,1005.269775390625,10.934005,10934.005 +5150,2025-06-10T15:36:35.511541-07:00,1005.219970703125,10.952154,10952.154 +5151,2025-06-10T15:36:46.450444-07:00,1005.2051391601562,10.938903,10938.903 +5152,2025-06-10T15:36:57.391483-07:00,1005.2249145507812,10.941039,10941.039 +5153,2025-06-10T15:37:08.336662-07:00,1005.2380981445312,10.945179,10945.179 +5154,2025-06-10T15:37:19.275889-07:00,1005.26123046875,10.939227,10939.227 +5155,2025-06-10T15:37:30.219380-07:00,1005.236083984375,10.943491,10943.491 +5156,2025-06-10T15:37:41.155386-07:00,1005.254638671875,10.936006,10936.006 +5157,2025-06-10T15:37:52.097001-07:00,1005.21826171875,10.941615,10941.615 +5158,2025-06-10T15:38:03.037392-07:00,1005.2067260742188,10.940391,10940.391 +5159,2025-06-10T15:38:13.980459-07:00,1005.2017822265625,10.943067,10943.067 +5160,2025-06-10T15:38:24.916667-07:00,1005.2661743164062,10.936208,10936.208 +5161,2025-06-10T15:38:35.857452-07:00,1005.251220703125,10.940785,10940.785 +5162,2025-06-10T15:38:46.803273-07:00,1005.259521484375,10.945821,10945.821 +5163,2025-06-10T15:38:57.735743-07:00,1005.2249145507812,10.93247,10932.47 +5164,2025-06-10T15:39:08.681642-07:00,1005.21337890625,10.945899,10945.899 +5165,2025-06-10T15:39:19.622398-07:00,1005.2249145507812,10.940756,10940.756 +5166,2025-06-10T15:39:30.558875-07:00,1005.236083984375,10.936477,10936.477 +5167,2025-06-10T15:39:41.499400-07:00,1005.21337890625,10.940525,10940.525 +5168,2025-06-10T15:39:52.442574-07:00,1005.2823486328125,10.943174,10943.174 +5169,2025-06-10T15:40:03.381013-07:00,1005.233154296875,10.938439,10938.439 +5170,2025-06-10T15:40:14.322707-07:00,1005.23974609375,10.941694,10941.694 +5171,2025-06-10T15:40:25.262399-07:00,1005.2051391601562,10.939692,10939.692 +5172,2025-06-10T15:40:36.196233-07:00,1005.23974609375,10.933834,10933.834 +5173,2025-06-10T15:40:47.146638-07:00,1005.2117309570312,10.950405,10950.405 +5174,2025-06-10T15:40:58.085404-07:00,1005.2351684570312,10.938766,10938.766 +5175,2025-06-10T15:41:09.026670-07:00,1005.2380981445312,10.941266,10941.266 +5176,2025-06-10T15:41:19.969442-07:00,1005.2380981445312,10.942772,10942.772 +5177,2025-06-10T15:41:30.917531-07:00,1005.21337890625,10.948089,10948.089 +5178,2025-06-10T15:41:41.858809-07:00,1005.21826171875,10.941278,10941.278 +5179,2025-06-10T15:41:52.803825-07:00,1005.251220703125,10.945016,10945.016 +5180,2025-06-10T15:42:03.738386-07:00,1005.203125,10.934561,10934.561 +5181,2025-06-10T15:42:14.682376-07:00,1005.2413940429688,10.94399,10943.99 +5182,2025-06-10T15:42:25.628643-07:00,1005.29248046875,10.946267,10946.267 +5183,2025-06-10T15:42:36.565414-07:00,1005.2249145507812,10.936771,10936.771 +5184,2025-06-10T15:42:47.504398-07:00,1005.2661743164062,10.938984,10938.984 +5185,2025-06-10T15:42:58.444768-07:00,1005.2169799804688,10.94037,10940.37 +5186,2025-06-10T15:43:09.383950-07:00,1005.19189453125,10.939182,10939.182 +5187,2025-06-10T15:43:20.324554-07:00,1005.2103881835938,10.940604,10940.604 +5188,2025-06-10T15:43:31.253991-07:00,1005.2117309570312,10.929437,10929.437 +5189,2025-06-10T15:43:42.198478-07:00,1005.19189453125,10.944487,10944.487 +5190,2025-06-10T15:43:53.137619-07:00,1005.21337890625,10.939141,10939.141 +5191,2025-06-10T15:44:04.072923-07:00,1005.2001342773438,10.935304,10935.304 +5192,2025-06-10T15:44:15.015377-07:00,1005.193603515625,10.942454,10942.454 +5193,2025-06-10T15:44:25.951386-07:00,1005.2084350585938,10.936009,10936.009 +5194,2025-06-10T15:44:36.896916-07:00,1005.2150268554688,10.94553,10945.53 +5195,2025-06-10T15:44:47.839571-07:00,1005.203125,10.942655,10942.655 +5196,2025-06-10T15:44:58.780599-07:00,1005.2971801757812,10.941028,10941.028 +5197,2025-06-10T15:45:09.723815-07:00,1005.1832885742188,10.943216,10943.216 +5198,2025-06-10T15:45:20.657386-07:00,1005.2493896484375,10.933571,10933.571 +5199,2025-06-10T15:45:31.604648-07:00,1005.270751953125,10.947262,10947.262 +5200,2025-06-10T15:45:42.536734-07:00,1005.2150268554688,10.932086,10932.086 +5201,2025-06-10T15:45:53.482587-07:00,1005.196533203125,10.945853,10945.853 +5202,2025-06-10T15:46:04.418517-07:00,1005.170166015625,10.93593,10935.93 +5203,2025-06-10T15:46:15.358947-07:00,1005.170166015625,10.94043,10940.43 +5204,2025-06-10T15:46:26.292379-07:00,1005.1766967773438,10.933432,10933.432 +5205,2025-06-10T15:46:37.237510-07:00,1005.1437377929688,10.945131,10945.131 +5206,2025-06-10T15:46:48.171492-07:00,1005.257568359375,10.933982,10933.982 +5207,2025-06-10T15:46:59.105646-07:00,1005.2064208984375,10.934154,10934.154 +5208,2025-06-10T15:47:10.044770-07:00,1005.1358032226562,10.939124,10939.124 +5209,2025-06-10T15:47:20.997666-07:00,1005.170166015625,10.952896,10952.896 +5210,2025-06-10T15:47:31.932377-07:00,1005.18994140625,10.934711,10934.711 +5211,2025-06-10T15:47:42.883419-07:00,1005.1766967773438,10.951042,10951.042 +5212,2025-06-10T15:47:53.824394-07:00,1005.178466796875,10.940975,10940.975 +5213,2025-06-10T15:48:04.765808-07:00,1005.1226806640625,10.941414,10941.414 +5214,2025-06-10T15:48:15.704387-07:00,1005.1256103515625,10.938579,10938.579 +5215,2025-06-10T15:48:26.642727-07:00,1005.076416015625,10.93834,10938.34 +5216,2025-06-10T15:48:37.588351-07:00,1005.076416015625,10.945624,10945.624 +5217,2025-06-10T15:48:48.517394-07:00,1005.1143798828125,10.929043,10929.043 +5218,2025-06-10T15:48:59.462434-07:00,1005.1160278320312,10.94504,10945.04 +5219,2025-06-10T15:49:10.402661-07:00,1005.0665893554688,10.940227,10940.227 +5220,2025-06-10T15:49:21.342377-07:00,1005.09814453125,10.939716,10939.716 +5221,2025-06-10T15:49:32.275032-07:00,1005.0962524414062,10.932655,10932.655 +5222,2025-06-10T15:49:43.227229-07:00,1005.089599609375,10.952197,10952.197 +5223,2025-06-10T15:49:54.157395-07:00,1005.0814208984375,10.930166,10930.166 +5224,2025-06-10T15:50:05.101556-07:00,1005.089599609375,10.944161,10944.161 +5225,2025-06-10T15:50:16.044432-07:00,1005.0962524414062,10.942876,10942.876 +5226,2025-06-10T15:50:26.978829-07:00,1005.1305541992188,10.934397,10934.397 +5227,2025-06-10T15:50:37.922379-07:00,1005.0599365234375,10.94355,10943.55 +5228,2025-06-10T15:50:48.856820-07:00,1005.0862426757812,10.934441,10934.441 +5229,2025-06-10T15:50:59.800611-07:00,1005.0747680664062,10.943791,10943.791 +5230,2025-06-10T15:51:10.732012-07:00,1005.0665893554688,10.931401,10931.401 +5231,2025-06-10T15:51:21.673745-07:00,1005.0928955078125,10.941733,10941.733 +5232,2025-06-10T15:51:32.610552-07:00,1005.0862426757812,10.936807,10936.807 +5233,2025-06-10T15:51:43.549656-07:00,1005.1539306640625,10.939104,10939.104 +5234,2025-06-10T15:51:54.495377-07:00,1005.0814208984375,10.945721,10945.721 +5235,2025-06-10T15:52:05.442792-07:00,1005.102783203125,10.947415,10947.415 +5236,2025-06-10T15:52:16.376346-07:00,1005.0513305664062,10.933554,10933.554 +5237,2025-06-10T15:52:27.322421-07:00,1005.0549926757812,10.946075,10946.075 +5238,2025-06-10T15:52:38.268408-07:00,1005.1437377929688,10.945987,10945.987 +5239,2025-06-10T15:52:49.213534-07:00,1005.1453857421875,10.945126,10945.126 +5240,2025-06-10T15:53:00.164654-07:00,1005.0565795898438,10.95112,10951.12 +5241,2025-06-10T15:53:11.103151-07:00,1005.0513305664062,10.938497,10938.497 +5242,2025-06-10T15:53:22.042817-07:00,1005.0909423828125,10.939666,10939.666 +5243,2025-06-10T15:53:32.991634-07:00,1005.1173706054688,10.948817,10948.817 +5244,2025-06-10T15:53:43.939394-07:00,1005.1322021484375,10.94776,10947.76 +5245,2025-06-10T15:53:54.883747-07:00,1005.0170288085938,10.944353,10944.353 +5246,2025-06-10T15:54:05.818390-07:00,1004.9774169921875,10.934643,10934.643 +5247,2025-06-10T15:54:16.767593-07:00,1005.0368041992188,10.949203,10949.203 +5248,2025-06-10T15:54:27.712733-07:00,1005.013427734375,10.94514,10945.14 +5249,2025-06-10T15:54:38.652682-07:00,1004.987060546875,10.939949,10939.949 +5250,2025-06-10T15:54:49.596724-07:00,1005.005126953125,10.944042,10944.042 +5251,2025-06-10T15:55:00.541388-07:00,1005.018310546875,10.944664,10944.664 +5252,2025-06-10T15:55:11.471470-07:00,1005.0037231445312,10.930082,10930.082 +5253,2025-06-10T15:55:22.418608-07:00,1005.0315551757812,10.947138,10947.138 +5254,2025-06-10T15:55:33.353733-07:00,1005.01171875,10.935125,10935.125 +5255,2025-06-10T15:55:44.292384-07:00,1005.002197265625,10.938651,10938.651 +5256,2025-06-10T15:55:55.237386-07:00,1005.0103759765625,10.945002,10945.002 +5257,2025-06-10T15:56:06.177379-07:00,1004.9757690429688,10.939993,10939.993 +5258,2025-06-10T15:56:17.111821-07:00,1005.01171875,10.934442,10934.442 +5259,2025-06-10T15:56:28.055390-07:00,1005.005126953125,10.943569,10943.569 +5260,2025-06-10T15:56:38.991766-07:00,1004.9971923828125,10.936376,10936.376 +5261,2025-06-10T15:56:49.930392-07:00,1005.0315551757812,10.938626,10938.626 +5262,2025-06-10T15:57:00.866777-07:00,1005.0315551757812,10.936385,10936.385 +5263,2025-06-10T15:57:11.805660-07:00,1004.99853515625,10.938883,10938.883 +5264,2025-06-10T15:57:22.746382-07:00,1005.0123291015625,10.940722,10940.722 +5265,2025-06-10T15:57:33.698392-07:00,1004.9971923828125,10.95201,10952.01 +5266,2025-06-10T15:57:44.635643-07:00,1005.018310546875,10.937251,10937.251 +5267,2025-06-10T15:57:55.577230-07:00,1005.0381469726562,10.941587,10941.587 +5268,2025-06-10T15:58:06.518604-07:00,1005.0348510742188,10.941374,10941.374 +5269,2025-06-10T15:58:17.456384-07:00,1005.044677734375,10.93778,10937.78 +5270,2025-06-10T15:58:28.398181-07:00,1005.0398559570312,10.941797,10941.797 +5271,2025-06-10T15:58:39.337533-07:00,1005.09423828125,10.939352,10939.352 +5272,2025-06-10T15:58:50.284967-07:00,1005.018310546875,10.947434,10947.434 +5273,2025-06-10T15:59:01.223969-07:00,1004.9885864257812,10.939002,10939.002 +5274,2025-06-10T15:59:12.163537-07:00,1005.0348510742188,10.939568,10939.568 +5275,2025-06-10T15:59:23.107371-07:00,1004.9754638671875,10.943834,10943.834 +5276,2025-06-10T15:59:34.049714-07:00,1005.02294921875,10.942343,10942.343 +5277,2025-06-10T15:59:44.986581-07:00,1005.0114135742188,10.936867,10936.867 +5278,2025-06-10T15:59:55.927381-07:00,1005.0048217773438,10.9408,10940.8 +5279,2025-06-10T16:00:06.873012-07:00,1005.03125,10.945631,10945.631 +5280,2025-06-10T16:00:17.819547-07:00,1005.0621948242188,10.946535,10946.535 +5281,2025-06-10T16:00:28.758430-07:00,1005.0278930664062,10.938883,10938.883 +5282,2025-06-10T16:00:39.702645-07:00,1004.9698486328125,10.944215,10944.215 +5283,2025-06-10T16:00:50.634003-07:00,1005.0028076171875,10.931358,10931.358 +5284,2025-06-10T16:01:01.579385-07:00,1005.014404296875,10.945382,10945.382 +5285,2025-06-10T16:01:12.519400-07:00,1005.0015869140625,10.940015,10940.015 +5286,2025-06-10T16:01:23.458459-07:00,1004.9849853515625,10.939059,10939.059 +5287,2025-06-10T16:01:34.394462-07:00,1005.0197143554688,10.936003,10936.003 +5288,2025-06-10T16:01:45.328545-07:00,1004.9998168945312,10.934083,10934.083 +5289,2025-06-10T16:01:56.274689-07:00,1005.0226440429688,10.946144,10946.144 +5290,2025-06-10T16:02:07.213621-07:00,1004.9932861328125,10.938932,10938.932 +5291,2025-06-10T16:02:18.147787-07:00,1004.9945068359375,10.934166,10934.166 +5292,2025-06-10T16:02:29.098470-07:00,1004.9718017578125,10.950683,10950.683 +5293,2025-06-10T16:02:40.044680-07:00,1004.9784545898438,10.94621,10946.21 +5294,2025-06-10T16:02:50.987635-07:00,1005.0048217773438,10.942955,10942.955 +5295,2025-06-10T16:03:01.917967-07:00,1004.9998168945312,10.930332,10930.332 +5296,2025-06-10T16:03:12.857423-07:00,1004.9763793945312,10.939456,10939.456 +5297,2025-06-10T16:03:23.799478-07:00,1004.9849853515625,10.942055,10942.055 +5298,2025-06-10T16:03:34.738871-07:00,1004.9962768554688,10.939393,10939.393 +5299,2025-06-10T16:03:45.685392-07:00,1004.9763793945312,10.946521,10946.521 +5300,2025-06-10T16:03:56.632386-07:00,1004.9763793945312,10.946994,10946.994 +5301,2025-06-10T16:04:07.575624-07:00,1005.01611328125,10.943238,10943.238 +5302,2025-06-10T16:04:18.524466-07:00,1004.9866333007812,10.948842,10948.842 +5303,2025-06-10T16:04:29.466943-07:00,1004.9949340820312,10.942477,10942.477 +5304,2025-06-10T16:04:40.401467-07:00,1005.0130615234375,10.934524,10934.524 +5305,2025-06-10T16:04:51.339045-07:00,1004.9915771484375,10.937578,10937.578 +5306,2025-06-10T16:05:02.286761-07:00,1004.9651489257812,10.947716,10947.716 +5307,2025-06-10T16:05:13.223396-07:00,1004.9586181640625,10.936635,10936.635 +5308,2025-06-10T16:05:24.160924-07:00,1004.9688110351562,10.937528,10937.528 +5309,2025-06-10T16:05:35.107012-07:00,1004.9885864257812,10.946088,10946.088 +5310,2025-06-10T16:05:46.051714-07:00,1005.005126953125,10.944702,10944.702 +5311,2025-06-10T16:05:56.998396-07:00,1004.9688110351562,10.946682,10946.682 +5312,2025-06-10T16:06:07.933872-07:00,1004.9952392578125,10.935476,10935.476 +5313,2025-06-10T16:06:18.881398-07:00,1004.9642333984375,10.947526,10947.526 +5314,2025-06-10T16:06:29.826392-07:00,1005.0150146484375,10.944994,10944.994 +5315,2025-06-10T16:06:40.759543-07:00,1004.9952392578125,10.933151,10933.151 +5316,2025-06-10T16:06:51.703751-07:00,1004.987060546875,10.944208,10944.208 +5317,2025-06-10T16:07:02.648434-07:00,1005.018310546875,10.944683,10944.683 +5318,2025-06-10T16:07:13.596392-07:00,1004.94580078125,10.947958,10947.958 +5319,2025-06-10T16:07:24.529360-07:00,1004.965576171875,10.932968,10932.968 +5320,2025-06-10T16:07:35.478089-07:00,1004.9804077148438,10.948729,10948.729 +5321,2025-06-10T16:07:46.422377-07:00,1005.02001953125,10.944288,10944.288 +5322,2025-06-10T16:07:57.359792-07:00,1005.0513305664062,10.937415,10937.415 +5323,2025-06-10T16:08:08.302966-07:00,1005.04638671875,10.943174,10943.174 +5324,2025-06-10T16:08:19.248421-07:00,1005.0265502929688,10.945455,10945.455 +5325,2025-06-10T16:08:30.186388-07:00,1004.99853515625,10.937967,10937.967 +5326,2025-06-10T16:08:41.131810-07:00,1005.029541015625,10.945422,10945.422 +5327,2025-06-10T16:08:52.077326-07:00,1004.9804077148438,10.945516,10945.516 +5328,2025-06-10T16:09:03.017612-07:00,1005.0348510742188,10.940286,10940.286 +5329,2025-06-10T16:09:13.967388-07:00,1005.029541015625,10.949776,10949.776 +5330,2025-06-10T16:09:24.913398-07:00,1005.02294921875,10.94601,10946.01 +5331,2025-06-10T16:09:35.846461-07:00,1005.0361938476562,10.933063,10933.063 +5332,2025-06-10T16:09:46.793392-07:00,1005.09423828125,10.946931,10946.931 +5333,2025-06-10T16:09:57.727818-07:00,1005.0150146484375,10.934426,10934.426 +5334,2025-06-10T16:10:08.668532-07:00,1005.0150146484375,10.940714,10940.714 +5335,2025-06-10T16:10:19.598667-07:00,1005.0001831054688,10.930135,10930.135 +5336,2025-06-10T16:10:30.542119-07:00,1005.0216674804688,10.943452,10943.452 +5337,2025-06-10T16:10:41.488442-07:00,1005.0758056640625,10.946323,10946.323 +5338,2025-06-10T16:10:52.422378-07:00,1005.0216674804688,10.933936,10933.936 +5339,2025-06-10T16:11:03.367749-07:00,1005.0526733398438,10.945371,10945.371 +5340,2025-06-10T16:11:14.306392-07:00,1004.9784545898438,10.938643,10938.643 +5341,2025-06-10T16:11:25.253396-07:00,1004.9915771484375,10.947004,10947.004 +5342,2025-06-10T16:11:36.192483-07:00,1005.0476684570312,10.939087,10939.087 +5343,2025-06-10T16:11:47.135719-07:00,1004.9998168945312,10.943236,10943.236 +5344,2025-06-10T16:11:58.084722-07:00,1004.9962768554688,10.949003,10949.003 +5345,2025-06-10T16:12:09.027392-07:00,1005.0357666015625,10.94267,10942.67 +5346,2025-06-10T16:12:19.965010-07:00,1005.0064086914062,10.937618,10937.618 +5347,2025-06-10T16:12:30.910178-07:00,1004.9813842773438,10.945168,10945.168 +5348,2025-06-10T16:12:41.858382-07:00,1004.9962768554688,10.948204,10948.204 +5349,2025-06-10T16:12:52.795375-07:00,1004.9681396484375,10.936993,10936.993 +5350,2025-06-10T16:13:03.747423-07:00,1005.0357666015625,10.952048,10952.048 +5351,2025-06-10T16:13:14.694677-07:00,1005.014404296875,10.947254,10947.254 +5352,2025-06-10T16:13:25.637521-07:00,1004.9813842773438,10.942844,10942.844 +5353,2025-06-10T16:13:36.584652-07:00,1005.0308837890625,10.947131,10947.131 +5354,2025-06-10T16:13:47.517790-07:00,1004.9879760742188,10.933138,10933.138 +5355,2025-06-10T16:13:58.464052-07:00,1005.0272827148438,10.946262,10946.262 +5356,2025-06-10T16:14:09.408613-07:00,1005.0140380859375,10.944561,10944.561 +5357,2025-06-10T16:14:20.350650-07:00,1004.9896240234375,10.942037,10942.037 +5358,2025-06-10T16:14:31.300605-07:00,1005.0111083984375,10.949955,10949.955 +5359,2025-06-10T16:14:42.240802-07:00,1005.0292358398438,10.940197,10940.197 +5360,2025-06-10T16:14:53.186375-07:00,1005.033935546875,10.945573,10945.573 +5361,2025-06-10T16:15:04.126643-07:00,1004.9992065429688,10.940268,10940.268 +5362,2025-06-10T16:15:15.079375-07:00,1005.05859375,10.952732,10952.732 +5363,2025-06-10T16:15:26.025921-07:00,1005.04541015625,10.946546,10946.546 +5364,2025-06-10T16:15:36.961614-07:00,1005.0057983398438,10.935693,10935.693 +5365,2025-06-10T16:15:47.902397-07:00,1005.0008544921875,10.940783,10940.783 +5366,2025-06-10T16:15:58.845753-07:00,1005.0242309570312,10.943356,10943.356 +5367,2025-06-10T16:16:09.788583-07:00,1005.0226440429688,10.94283,10942.83 +5368,2025-06-10T16:16:20.736440-07:00,1005.0639038085938,10.947857,10947.857 +5369,2025-06-10T16:16:31.680438-07:00,1005.04541015625,10.943998,10943.998 +5370,2025-06-10T16:16:42.624081-07:00,1005.0424194335938,10.943643,10943.643 +5371,2025-06-10T16:16:53.569403-07:00,1005.0870361328125,10.945322,10945.322 +5372,2025-06-10T16:17:04.518595-07:00,1005.0770263671875,10.949192,10949.192 +5373,2025-06-10T16:17:15.463399-07:00,1005.0639038085938,10.944804,10944.804 +5374,2025-06-10T16:17:26.407380-07:00,1005.0606079101562,10.943981,10943.981 +5375,2025-06-10T16:17:37.354641-07:00,1005.1179809570312,10.947261,10947.261 +5376,2025-06-10T16:17:48.297390-07:00,1005.0357666015625,10.942749,10942.749 +5377,2025-06-10T16:17:59.240871-07:00,1005.09033203125,10.943481,10943.481 +5378,2025-06-10T16:18:10.183627-07:00,1005.04541015625,10.942756,10942.756 +5379,2025-06-10T16:18:21.131500-07:00,1005.1443481445312,10.947873,10947.873 +5380,2025-06-10T16:18:32.075648-07:00,1005.075439453125,10.944148,10944.148 +5381,2025-06-10T16:18:43.023392-07:00,1005.0289306640625,10.947744,10947.744 +5382,2025-06-10T16:18:53.963381-07:00,1005.0236206054688,10.939989,10939.989 +5383,2025-06-10T16:19:04.902460-07:00,1004.9942016601562,10.939079,10939.079 +5384,2025-06-10T16:19:15.848400-07:00,1005.0236206054688,10.94594,10945.94 +5385,2025-06-10T16:19:26.791552-07:00,1005.0025024414062,10.943152,10943.152 +5386,2025-06-10T16:19:37.733430-07:00,1005.0499877929688,10.941878,10941.878 +5387,2025-06-10T16:19:48.672386-07:00,1005.0751342773438,10.938956,10938.956 +5388,2025-06-10T16:19:59.619091-07:00,1005.0186767578125,10.946705,10946.705 +5389,2025-06-10T16:20:10.549672-07:00,1005.0532836914062,10.930581,10930.581 +5390,2025-06-10T16:20:21.492434-07:00,1005.0203247070312,10.942762,10942.762 +5391,2025-06-10T16:20:32.433733-07:00,1004.9774169921875,10.941299,10941.299 +5392,2025-06-10T16:20:43.365757-07:00,1005.0203247070312,10.932024,10932.024 +5393,2025-06-10T16:20:54.306580-07:00,1004.9873657226562,10.940823,10940.823 +5394,2025-06-10T16:21:05.243833-07:00,1005.0298461914062,10.937253,10937.253 +5395,2025-06-10T16:21:16.170642-07:00,1005.0100708007812,10.926809,10926.809 +5396,2025-06-10T16:21:27.108758-07:00,1004.9888916015625,10.938116,10938.116 +5397,2025-06-10T16:21:38.042057-07:00,1005.0335083007812,10.933299,10933.299 +5398,2025-06-10T16:21:48.977666-07:00,1004.9955444335938,10.935609,10935.609 +5399,2025-06-10T16:21:59.922630-07:00,1005.0401611328125,10.944964,10944.964 +5400,2025-06-10T16:22:10.851398-07:00,1005.02685546875,10.928768,10928.768 +5401,2025-06-10T16:22:21.793393-07:00,1005.0496826171875,10.941995,10941.995 +5402,2025-06-10T16:22:32.733372-07:00,1005.0298461914062,10.939979,10939.979 +5403,2025-06-10T16:22:43.676386-07:00,1004.9873657226562,10.943014,10943.014 +5404,2025-06-10T16:22:54.603396-07:00,1004.9823608398438,10.92701,10927.01 +5405,2025-06-10T16:23:05.541416-07:00,1004.9823608398438,10.93802,10938.02 +5406,2025-06-10T16:23:16.476376-07:00,1004.9968872070312,10.93496,10934.96 +5407,2025-06-10T16:23:27.416181-07:00,1004.9955444335938,10.939805,10939.805 +5408,2025-06-10T16:23:38.360981-07:00,1005.0335083007812,10.9448,10944.8 +5409,2025-06-10T16:23:49.298381-07:00,1005.0318603515625,10.9374,10937.4 +5410,2025-06-10T16:24:00.242391-07:00,1004.9774169921875,10.94401,10944.01 +5411,2025-06-10T16:24:11.175382-07:00,1004.9893188476562,10.932991,10932.991 +5412,2025-06-10T16:24:22.119821-07:00,1005.0236206054688,10.944439,10944.439 +5413,2025-06-10T16:24:33.050374-07:00,1005.0025024414062,10.930553,10930.553 +5414,2025-06-10T16:24:43.994388-07:00,1005.0318603515625,10.944014,10944.014 +5415,2025-06-10T16:24:54.937396-07:00,1004.9810791015625,10.943008,10943.008 +5416,2025-06-10T16:25:05.871689-07:00,1004.9724731445312,10.934293,10934.293 +5417,2025-06-10T16:25:16.815830-07:00,1004.959228515625,10.944141,10944.141 +5418,2025-06-10T16:25:27.760680-07:00,1004.993896484375,10.94485,10944.85 +5419,2025-06-10T16:25:38.695565-07:00,1004.9740600585938,10.934885,10934.885 +5420,2025-06-10T16:25:49.639650-07:00,1004.962890625,10.944085,10944.085 +5421,2025-06-10T16:26:00.575388-07:00,1004.95263671875,10.935738,10935.738 +5422,2025-06-10T16:26:11.521722-07:00,1005.0137329101562,10.946334,10946.334 +5423,2025-06-10T16:26:22.466328-07:00,1005.0025024414062,10.944606,10944.606 +5424,2025-06-10T16:26:33.400440-07:00,1005.00048828125,10.934112,10934.112 +5425,2025-06-10T16:26:44.339718-07:00,1005.0137329101562,10.939278,10939.278 +5426,2025-06-10T16:26:55.285863-07:00,1004.9906005859375,10.946145,10946.145 +5427,2025-06-10T16:27:06.225850-07:00,1004.939453125,10.939987,10939.987 +5428,2025-06-10T16:27:17.166533-07:00,1004.9658813476562,10.940683,10940.683 +5429,2025-06-10T16:27:28.105254-07:00,1004.95263671875,10.938721,10938.721 +5430,2025-06-10T16:27:39.051377-07:00,1004.9695434570312,10.946123,10946.123 +5431,2025-06-10T16:27:49.986544-07:00,1004.9576416015625,10.935167,10935.167 +5432,2025-06-10T16:28:00.938330-07:00,1004.9840698242188,10.951786,10951.786 +5433,2025-06-10T16:28:11.875640-07:00,1005.0137329101562,10.93731,10937.31 +5434,2025-06-10T16:28:22.810382-07:00,1004.91796875,10.934742,10934.742 +5435,2025-06-10T16:28:33.747533-07:00,1004.9562377929688,10.937151,10937.151 +5436,2025-06-10T16:28:44.686544-07:00,1004.9595947265625,10.939011,10939.011 +5437,2025-06-10T16:28:55.636634-07:00,1005.0025024414062,10.95009,10950.09 +5438,2025-06-10T16:29:06.576798-07:00,1004.9707641601562,10.940164,10940.164 +5439,2025-06-10T16:29:17.516426-07:00,1005.0025024414062,10.939628,10939.628 +5440,2025-06-10T16:29:28.434050-07:00,1004.9464111328125,10.917624,10917.624 +5441,2025-06-10T16:29:39.373487-07:00,1004.9547119140625,10.939437,10939.437 +5442,2025-06-10T16:29:50.311756-07:00,1005.0075073242188,10.938269,10938.269 +5443,2025-06-10T16:30:01.260051-07:00,1005.0289306640625,10.948295,10948.295 +5444,2025-06-10T16:30:12.196445-07:00,1005.01904296875,10.936394,10936.394 +5445,2025-06-10T16:30:23.148522-07:00,1005.0404663085938,10.952077,10952.077 +5446,2025-06-10T16:30:34.091400-07:00,1004.9942016601562,10.942878,10942.878 +5447,2025-06-10T16:30:45.039033-07:00,1005.0038452148438,10.947633,10947.633 +5448,2025-06-10T16:30:55.984039-07:00,1005.0451049804688,10.945006,10945.006 +5449,2025-06-10T16:31:06.923331-07:00,1005.0253295898438,10.939292,10939.292 +5450,2025-06-10T16:31:17.868229-07:00,1004.962890625,10.944898,10944.898 +5451,2025-06-10T16:31:28.804043-07:00,1004.9707641601562,10.935814,10935.814 +5452,2025-06-10T16:31:39.748451-07:00,1004.9724731445312,10.944408,10944.408 +5453,2025-06-10T16:31:50.690074-07:00,1004.959228515625,10.941623,10941.623 +5454,2025-06-10T16:32:01.636584-07:00,1005.0054931640625,10.94651,10946.51 +5455,2025-06-10T16:32:12.591333-07:00,1004.9378051757812,10.954749,10954.749 +5456,2025-06-10T16:32:23.527051-07:00,1004.9279174804688,10.935718,10935.718 +5457,2025-06-10T16:32:34.478329-07:00,1004.970458984375,10.951278,10951.278 +5458,2025-06-10T16:32:45.413035-07:00,1004.9625244140625,10.934706,10934.706 +5459,2025-06-10T16:32:56.357049-07:00,1004.9740600585938,10.944014,10944.014 +5460,2025-06-10T16:33:07.299774-07:00,1004.9573364257812,10.942725,10942.725 +5461,2025-06-10T16:33:18.245052-07:00,1004.9193725585938,10.945278,10945.278 +5462,2025-06-10T16:33:29.187081-07:00,1004.930908203125,10.942029,10942.029 +5463,2025-06-10T16:33:40.140186-07:00,1004.92431640625,10.953105,10953.105 +5464,2025-06-10T16:33:51.079207-07:00,1004.944091796875,10.939021,10939.021 +5465,2025-06-10T16:34:02.031495-07:00,1004.9342041015625,10.952288,10952.288 +5466,2025-06-10T16:34:12.976090-07:00,1004.904541015625,10.944595,10944.595 +5467,2025-06-10T16:34:23.926195-07:00,1004.9324951171875,10.950105,10950.105 +5468,2025-06-10T16:34:34.869734-07:00,1004.9625244140625,10.943539,10943.539 +5469,2025-06-10T16:34:45.808544-07:00,1004.9031372070312,10.93881,10938.81 +5470,2025-06-10T16:34:56.760014-07:00,1004.9212646484375,10.95147,10951.47 +5471,2025-06-10T16:35:07.702481-07:00,1004.9031372070312,10.942467,10942.467 +5472,2025-06-10T16:35:18.647197-07:00,1004.9494018554688,10.944716,10944.716 +5473,2025-06-10T16:35:29.583402-07:00,1004.9279174804688,10.936205,10936.205 +5474,2025-06-10T16:35:40.537197-07:00,1004.9081420898438,10.953795,10953.795 +5475,2025-06-10T16:35:51.476305-07:00,1004.9146728515625,10.939108,10939.108 +5476,2025-06-10T16:36:02.431311-07:00,1004.9840698242188,10.955006,10955.006 +5477,2025-06-10T16:36:13.379766-07:00,1004.9328002929688,10.948455,10948.455 +5478,2025-06-10T16:36:24.317284-07:00,1004.91796875,10.937518,10937.518 +5479,2025-06-10T16:36:35.264799-07:00,1004.934814453125,10.947515,10947.515 +5480,2025-06-10T16:36:46.211041-07:00,1004.9130249023438,10.946242,10946.242 +5481,2025-06-10T16:36:57.151047-07:00,1004.943115234375,10.940006,10940.006 +5482,2025-06-10T16:37:08.100890-07:00,1004.9411010742188,10.949843,10949.843 +5483,2025-06-10T16:37:19.041075-07:00,1004.9246215820312,10.940185,10940.185 +5484,2025-06-10T16:37:29.987099-07:00,1004.916748046875,10.946024,10946.024 +5485,2025-06-10T16:37:40.929177-07:00,1004.959228515625,10.942078,10942.078 +5486,2025-06-10T16:37:51.872184-07:00,1004.9576416015625,10.943007,10943.007 +5487,2025-06-10T16:38:02.811047-07:00,1004.8688354492188,10.938863,10938.863 +5488,2025-06-10T16:38:13.756454-07:00,1004.8836669921875,10.945407,10945.407 +5489,2025-06-10T16:38:24.692324-07:00,1004.9048461914062,10.93587,10935.87 +5490,2025-06-10T16:38:35.639171-07:00,1004.9081420898438,10.946847,10946.847 +5491,2025-06-10T16:38:46.585074-07:00,1004.9146728515625,10.945903,10945.903 +5492,2025-06-10T16:38:57.530045-07:00,1004.8751831054688,10.944971,10944.971 +5493,2025-06-10T16:39:08.469438-07:00,1004.8912353515625,10.939393,10939.393 +5494,2025-06-10T16:39:19.421732-07:00,1004.8751831054688,10.952294,10952.294 +5495,2025-06-10T16:39:30.365050-07:00,1004.9259643554688,10.943318,10943.318 +5496,2025-06-10T16:39:41.307036-07:00,1004.887939453125,10.941986,10941.986 +5497,2025-06-10T16:39:52.246364-07:00,1004.8665771484375,10.939328,10939.328 +5498,2025-06-10T16:40:03.186086-07:00,1004.8599243164062,10.939722,10939.722 +5499,2025-06-10T16:40:14.121066-07:00,1004.9011840820312,10.93498,10934.98 +5500,2025-06-10T16:40:25.071462-07:00,1004.8648681640625,10.950396,10950.396 +5501,2025-06-10T16:40:36.001047-07:00,1004.85498046875,10.929585,10929.585 +5502,2025-06-10T16:40:46.947203-07:00,1004.8384399414062,10.946156,10946.156 +5503,2025-06-10T16:40:57.883631-07:00,1004.8796997070312,10.936428,10936.428 +5504,2025-06-10T16:41:08.829053-07:00,1004.8186645507812,10.945422,10945.422 +5505,2025-06-10T16:41:19.766057-07:00,1004.8814086914062,10.937004,10937.004 +5506,2025-06-10T16:41:30.711380-07:00,1004.85498046875,10.945323,10945.323 +5507,2025-06-10T16:41:41.652043-07:00,1004.8863525390625,10.940663,10940.663 +5508,2025-06-10T16:41:52.587032-07:00,1004.8648681640625,10.934989,10934.989 +5509,2025-06-10T16:42:03.532060-07:00,1004.8517456054688,10.945028,10945.028 +5510,2025-06-10T16:42:14.471206-07:00,1004.8863525390625,10.939146,10939.146 +5511,2025-06-10T16:42:25.418193-07:00,1004.85498046875,10.946987,10946.987 +5512,2025-06-10T16:42:36.354139-07:00,1004.8909301757812,10.935946,10935.946 +5513,2025-06-10T16:42:47.303527-07:00,1004.8847045898438,10.949388,10949.388 +5514,2025-06-10T16:42:58.239052-07:00,1004.8826293945312,10.935525,10935.525 +5515,2025-06-10T16:43:09.183055-07:00,1004.942138671875,10.944003,10944.003 +5516,2025-06-10T16:43:20.131050-07:00,1004.8959350585938,10.947995,10947.995 +5517,2025-06-10T16:43:31.067065-07:00,1004.9143676757812,10.936015,10936.015 +5518,2025-06-10T16:43:41.999242-07:00,1004.9503173828125,10.932177,10932.177 +5519,2025-06-10T16:43:52.947396-07:00,1004.9157104492188,10.948154,10948.154 +5520,2025-06-10T16:44:03.881033-07:00,1004.9127197265625,10.933637,10933.637 +5521,2025-06-10T16:44:14.822047-07:00,1004.9275512695312,10.941014,10941.014 +5522,2025-06-10T16:44:25.768540-07:00,1004.8796997070312,10.946493,10946.493 +5523,2025-06-10T16:44:36.714018-07:00,1004.9176635742188,10.945478,10945.478 +5524,2025-06-10T16:44:47.654051-07:00,1004.9163818359375,10.940033,10940.033 +5525,2025-06-10T16:44:58.592167-07:00,1004.9110717773438,10.938116,10938.116 +5526,2025-06-10T16:45:09.520500-07:00,1004.965576171875,10.928333,10928.333 +5527,2025-06-10T16:45:20.462045-07:00,1004.9573364257812,10.941545,10941.545 +5528,2025-06-10T16:45:31.396445-07:00,1004.8701782226562,10.9344,10934.4 +5529,2025-06-10T16:45:42.335211-07:00,1004.9691162109375,10.938766,10938.766 +5530,2025-06-10T16:45:53.277072-07:00,1004.9523315429688,10.941861,10941.861 +5531,2025-06-10T16:46:04.214015-07:00,1004.9361572265625,10.936943,10936.943 +5532,2025-06-10T16:46:15.152119-07:00,1004.9671630859375,10.938104,10938.104 +5533,2025-06-10T16:46:26.096191-07:00,1004.9473266601562,10.944072,10944.072 +5534,2025-06-10T16:46:37.030181-07:00,1004.9060668945312,10.93399,10933.99 +5535,2025-06-10T16:46:47.970086-07:00,1004.92431640625,10.939905,10939.905 +5536,2025-06-10T16:46:58.899765-07:00,1004.9163818359375,10.929679,10929.679 +5537,2025-06-10T16:47:09.833297-07:00,1004.92431640625,10.933532,10933.532 +5538,2025-06-10T16:47:20.772305-07:00,1004.9823608398438,10.939008,10939.008 +5539,2025-06-10T16:47:31.708036-07:00,1004.9375,10.935731,10935.731 +5540,2025-06-10T16:47:42.648435-07:00,1004.9081420898438,10.940399,10940.399 +5541,2025-06-10T16:47:53.587336-07:00,1004.91796875,10.938901,10938.901 +5542,2025-06-10T16:48:04.525797-07:00,1004.9295043945312,10.938461,10938.461 +5543,2025-06-10T16:48:15.464269-07:00,1004.92626953125,10.938472,10938.472 +5544,2025-06-10T16:48:26.397089-07:00,1004.9229736328125,10.93282,10932.82 +5545,2025-06-10T16:48:37.340029-07:00,1004.904541015625,10.94294,10942.94 +5546,2025-06-10T16:48:48.276414-07:00,1004.95068359375,10.936385,10936.385 +5547,2025-06-10T16:48:59.220550-07:00,1004.9295043945312,10.944136,10944.136 +5548,2025-06-10T16:49:10.157100-07:00,1004.94580078125,10.93655,10936.55 +5549,2025-06-10T16:49:21.095384-07:00,1004.9324951171875,10.938284,10938.284 +5550,2025-06-10T16:49:32.025052-07:00,1004.9473266601562,10.929668,10929.668 +5551,2025-06-10T16:49:42.971243-07:00,1004.9473266601562,10.946191,10946.191 +5552,2025-06-10T16:49:53.900261-07:00,1004.970458984375,10.929018,10929.018 +5553,2025-06-10T16:50:04.841049-07:00,1004.9375,10.940788,10940.788 +5554,2025-06-10T16:50:15.782278-07:00,1004.95068359375,10.941229,10941.229 +5555,2025-06-10T16:50:26.728369-07:00,1004.9542846679688,10.946091,10946.091 +5556,2025-06-10T16:50:37.661209-07:00,1004.9328002929688,10.93284,10932.84 +5557,2025-06-10T16:50:48.613167-07:00,1004.97705078125,10.951958,10951.958 +5558,2025-06-10T16:50:59.556894-07:00,1004.9625244140625,10.943727,10943.727 +5559,2025-06-10T16:51:10.493049-07:00,1004.9476318359375,10.936155,10936.155 +5560,2025-06-10T16:51:21.433036-07:00,1004.9757690429688,10.939987,10939.987 +5561,2025-06-10T16:51:32.363027-07:00,1004.95263671875,10.929991,10929.991 +5562,2025-06-10T16:51:43.303293-07:00,1004.9461059570312,10.940266,10940.266 +5563,2025-06-10T16:51:54.244051-07:00,1004.9609375,10.940758,10940.758 +5564,2025-06-10T16:52:05.196327-07:00,1004.9542846679688,10.952276,10952.276 +5565,2025-06-10T16:52:16.140348-07:00,1004.911376953125,10.944021,10944.021 +5566,2025-06-10T16:52:27.080051-07:00,1004.9246215820312,10.939703,10939.703 +5567,2025-06-10T16:52:38.023175-07:00,1004.9461059570312,10.943124,10943.124 +5568,2025-06-10T16:52:48.964351-07:00,1004.9740600585938,10.941176,10941.176 +5569,2025-06-10T16:52:59.910151-07:00,1004.9823608398438,10.9458,10945.8 +5570,2025-06-10T16:53:10.853315-07:00,1004.9888916015625,10.943164,10943.164 +5571,2025-06-10T16:53:21.792402-07:00,1005.002197265625,10.939087,10939.087 +5572,2025-06-10T16:53:32.737041-07:00,1004.9902954101562,10.944639,10944.639 +5573,2025-06-10T16:53:43.678450-07:00,1005.01171875,10.941409,10941.409 +5574,2025-06-10T16:53:54.617036-07:00,1004.9790649414062,10.938586,10938.586 +5575,2025-06-10T16:54:05.564345-07:00,1004.9559326171875,10.947309,10947.309 +5576,2025-06-10T16:54:16.506036-07:00,1005.028564453125,10.941691,10941.691 +5577,2025-06-10T16:54:27.445304-07:00,1005.0087280273438,10.939268,10939.268 +5578,2025-06-10T16:54:38.395513-07:00,1005.0100708007812,10.950209,10950.209 +5579,2025-06-10T16:54:49.339948-07:00,1005.0167236328125,10.944435,10944.435 +5580,2025-06-10T16:55:00.282194-07:00,1005.0087280273438,10.942246,10942.246 +5581,2025-06-10T16:55:11.229045-07:00,1005.005126953125,10.946851,10946.851 +5582,2025-06-10T16:55:22.172461-07:00,1005.0001831054688,10.943416,10943.416 +5583,2025-06-10T16:55:33.116360-07:00,1004.9852905273438,10.943899,10943.899 +5584,2025-06-10T16:55:44.050273-07:00,1005.0067749023438,10.933913,10933.913 +5585,2025-06-10T16:55:54.993188-07:00,1005.0015869140625,10.942915,10942.915 +5586,2025-06-10T16:56:05.942396-07:00,1004.978759765625,10.949208,10949.208 +5587,2025-06-10T16:56:16.887690-07:00,1005.0001831054688,10.945294,10945.294 +5588,2025-06-10T16:56:27.828289-07:00,1004.991943359375,10.940599,10940.599 +5589,2025-06-10T16:56:38.767047-07:00,1005.01171875,10.938758,10938.758 +5590,2025-06-10T16:56:49.707673-07:00,1005.0513916015625,10.940626,10940.626 +5591,2025-06-10T16:57:00.647021-07:00,1005.0067749023438,10.939348,10939.348 +5592,2025-06-10T16:57:11.594287-07:00,1004.9539794921875,10.947266,10947.266 +5593,2025-06-10T16:57:22.533555-07:00,1005.0100708007812,10.939268,10939.268 +5594,2025-06-10T16:57:33.470307-07:00,1004.991943359375,10.936752,10936.752 +5595,2025-06-10T16:57:44.417893-07:00,1004.9589233398438,10.947586,10947.586 +5596,2025-06-10T16:57:55.355451-07:00,1004.9539794921875,10.937558,10937.558 +5597,2025-06-10T16:58:06.298246-07:00,1004.9852905273438,10.942795,10942.795 +5598,2025-06-10T16:58:17.244030-07:00,1004.9804077148438,10.945784,10945.784 +5599,2025-06-10T16:58:28.184303-07:00,1004.9193725585938,10.940273,10940.273 +5600,2025-06-10T16:58:39.124498-07:00,1004.944091796875,10.940195,10940.195 +5601,2025-06-10T16:58:50.077049-07:00,1004.9110717773438,10.952551,10952.551 +5602,2025-06-10T16:59:01.015049-07:00,1005.0543823242188,10.938,10938.0 +5603,2025-06-10T16:59:11.961051-07:00,1004.965576171875,10.946002,10946.002 +5604,2025-06-10T16:59:22.898817-07:00,1004.92236328125,10.937766,10937.766 +5605,2025-06-10T16:59:33.846069-07:00,1004.9324951171875,10.947252,10947.252 +5606,2025-06-10T16:59:44.782404-07:00,1004.9259643554688,10.936335,10936.335 +5607,2025-06-10T16:59:55.732402-07:00,1004.9523315429688,10.949998,10949.998 +5608,2025-06-10T17:00:06.670051-07:00,1005.033203125,10.937649,10937.649 +5609,2025-06-10T17:00:17.600049-07:00,1004.9968872070312,10.929998,10929.998 +5610,2025-06-10T17:00:28.543697-07:00,1004.9790649414062,10.943648,10943.648 +5611,2025-06-10T17:00:39.482041-07:00,1004.970458984375,10.938344,10938.344 +5612,2025-06-10T17:00:50.416717-07:00,1005.0120239257812,10.934676,10934.676 +5613,2025-06-10T17:01:01.360760-07:00,1004.9461059570312,10.944043,10944.043 +5614,2025-06-10T17:01:12.306717-07:00,1005.0203247070312,10.945957,10945.957 +5615,2025-06-10T17:01:23.251561-07:00,1004.9971923828125,10.944844,10944.844 +5616,2025-06-10T17:01:34.196049-07:00,1004.9740600585938,10.944488,10944.488 +5617,2025-06-10T17:01:45.133228-07:00,1004.9509887695312,10.937179,10937.179 +5618,2025-06-10T17:01:56.074305-07:00,1004.939453125,10.941077,10941.077 +5619,2025-06-10T17:02:07.012428-07:00,1004.9724731445312,10.938123,10938.123 +5620,2025-06-10T17:02:17.964340-07:00,1004.985595703125,10.951912,10951.912 +5621,2025-06-10T17:02:28.901031-07:00,1004.9279174804688,10.936691,10936.691 +5622,2025-06-10T17:02:39.847080-07:00,1004.9691162109375,10.946049,10946.049 +5623,2025-06-10T17:02:50.789351-07:00,1004.9411010742188,10.942271,10942.271 +5624,2025-06-10T17:03:01.723036-07:00,1004.9097900390625,10.933685,10933.685 +5625,2025-06-10T17:03:12.673051-07:00,1005.0335083007812,10.950015,10950.015 +5626,2025-06-10T17:03:23.608396-07:00,1004.9873657226562,10.935345,10935.345 +5627,2025-06-10T17:03:34.553364-07:00,1004.9345092773438,10.944968,10944.968 +5628,2025-06-10T17:03:45.500312-07:00,1004.9494018554688,10.946948,10946.948 +5629,2025-06-10T17:03:55.137313-07:00,1004.9642333984375,9.637001,9637.001 +5630,2025-06-10T17:03:56.444074-07:00,1004.9873657226562,1.306761,1306.761 +5631,2025-06-10T17:04:07.386190-07:00,1004.92626953125,10.942116,10942.116 +5632,2025-06-10T17:04:18.330680-07:00,1005.0183715820312,10.94449,10944.49 +5633,2025-06-10T17:04:29.275228-07:00,1004.9345092773438,10.944548,10944.548 +5634,2025-06-10T17:04:40.224028-07:00,1004.9279174804688,10.9488,10948.8 +5635,2025-06-10T17:04:51.166259-07:00,1004.9212646484375,10.942231,10942.231 +5636,2025-06-10T17:05:02.113123-07:00,1004.9411010742188,10.946864,10946.864 +5637,2025-06-10T17:05:13.058826-07:00,1004.970458984375,10.945703,10945.703 +5638,2025-06-10T17:05:23.998034-07:00,1004.92431640625,10.939208,10939.208 +5639,2025-06-10T17:05:34.946103-07:00,1004.9391479492188,10.948069,10948.069 +5640,2025-06-10T17:05:45.889300-07:00,1004.92431640625,10.943197,10943.197 +5641,2025-06-10T17:05:56.843302-07:00,1004.92236328125,10.954002,10954.002 +5642,2025-06-10T17:06:07.781607-07:00,1005.0031127929688,10.938305,10938.305 +5643,2025-06-10T17:06:18.723059-07:00,1004.9391479492188,10.941452,10941.452 +5644,2025-06-10T17:06:29.680243-07:00,1004.938720703125,10.957184,10957.184 +5645,2025-06-10T17:06:40.624853-07:00,1004.9849853515625,10.94461,10944.61 +5646,2025-06-10T17:06:51.569047-07:00,1004.9157104492188,10.944194,10944.194 +5647,2025-06-10T17:07:02.510047-07:00,1004.9520263671875,10.941,10941.0 +5648,2025-06-10T17:07:13.464197-07:00,1004.989990234375,10.95415,10954.15 +5649,2025-06-10T17:07:24.403349-07:00,1004.9453735351562,10.939152,10939.152 +5650,2025-06-10T17:07:35.357369-07:00,1004.9173583984375,10.95402,10954.02 +5651,2025-06-10T17:07:46.303360-07:00,1004.963623046875,10.945991,10945.991 +5652,2025-06-10T17:07:57.237404-07:00,1004.9747924804688,10.934044,10934.044 +5653,2025-06-10T17:08:08.191032-07:00,1005.0028076171875,10.953628,10953.628 +5654,2025-06-10T17:08:19.135442-07:00,1004.9615478515625,10.94441,10944.41 +5655,2025-06-10T17:08:30.075047-07:00,1005.0159912109375,10.939605,10939.605 +5656,2025-06-10T17:08:41.020199-07:00,1005.0159912109375,10.945152,10945.152 +5657,2025-06-10T17:08:51.960488-07:00,1004.9747924804688,10.940289,10940.289 +5658,2025-06-10T17:09:02.910348-07:00,1004.9796752929688,10.94986,10949.86 +5659,2025-06-10T17:09:13.858224-07:00,1004.9945068359375,10.947876,10947.876 +5660,2025-06-10T17:09:24.793044-07:00,1004.986328125,10.93482,10934.82 +5661,2025-06-10T17:09:35.744055-07:00,1004.9763793945312,10.951011,10951.011 +5662,2025-06-10T17:09:46.687309-07:00,1004.9879760742188,10.943254,10943.254 +5663,2025-06-10T17:09:57.625055-07:00,1005.0093994140625,10.937746,10937.746 +5664,2025-06-10T17:10:08.563032-07:00,1005.0078125,10.937977,10937.977 +5665,2025-06-10T17:10:19.503618-07:00,1004.997802734375,10.940586,10940.586 +5666,2025-06-10T17:10:30.439469-07:00,1004.997802734375,10.935851,10935.851 +5667,2025-06-10T17:10:41.388299-07:00,1005.0189819335938,10.94883,10948.83 +5668,2025-06-10T17:10:52.329590-07:00,1004.9846801757812,10.941291,10941.291 +5669,2025-06-10T17:11:03.266051-07:00,1005.0057983398438,10.936461,10936.461 +5670,2025-06-10T17:11:14.213051-07:00,1005.0057983398438,10.947,10947.0 +5671,2025-06-10T17:11:25.155051-07:00,1004.9661865234375,10.942,10942.0 +5672,2025-06-10T17:11:36.094323-07:00,1005.0075073242188,10.939272,10939.272 +5673,2025-06-10T17:11:47.029078-07:00,1005.0170288085938,10.934755,10934.755 +5674,2025-06-10T17:11:57.972706-07:00,1004.9695434570312,10.943628,10943.628 +5675,2025-06-10T17:12:08.912050-07:00,1004.9793701171875,10.939344,10939.344 +5676,2025-06-10T17:12:19.865049-07:00,1004.9364624023438,10.952999,10952.999 +5677,2025-06-10T17:12:30.798041-07:00,1004.97607421875,10.932992,10932.992 +5678,2025-06-10T17:12:41.744335-07:00,1004.982666015625,10.946294,10946.294 +5679,2025-06-10T17:12:52.690175-07:00,1004.9695434570312,10.94584,10945.84 +5680,2025-06-10T17:13:03.642198-07:00,1004.943115234375,10.952023,10952.023 +5681,2025-06-10T17:13:14.582046-07:00,1004.9576416015625,10.939848,10939.848 +5682,2025-06-10T17:13:25.528453-07:00,1004.9282836914062,10.946407,10946.407 +5683,2025-06-10T17:13:36.474825-07:00,1004.9509887695312,10.946372,10946.372 +5684,2025-06-10T17:13:47.413636-07:00,1004.9859619140625,10.938811,10938.811 +5685,2025-06-10T17:13:58.354226-07:00,1004.9364624023438,10.94059,10940.59 +5686,2025-06-10T17:14:09.310049-07:00,1004.982666015625,10.955823,10955.823 +5687,2025-06-10T17:14:20.253364-07:00,1004.9576416015625,10.943315,10943.315 +5688,2025-06-10T17:14:31.195040-07:00,1004.962890625,10.941676,10941.676 +5689,2025-06-10T17:14:42.128431-07:00,1004.9547119140625,10.933391,10933.391 +5690,2025-06-10T17:14:53.081987-07:00,1004.934814453125,10.953556,10953.556 +5691,2025-06-10T17:15:04.026054-07:00,1004.9612426757812,10.944067,10944.067 +5692,2025-06-10T17:15:14.970207-07:00,1004.9876708984375,10.944153,10944.153 +5693,2025-06-10T17:15:25.912047-07:00,1004.9480590820312,10.94184,10941.84 +5694,2025-06-10T17:15:36.854538-07:00,1004.9576416015625,10.942491,10942.491 +5695,2025-06-10T17:15:47.797217-07:00,1004.9959106445312,10.942679,10942.679 +5696,2025-06-10T17:15:58.744049-07:00,1004.9906005859375,10.946832,10946.832 +5697,2025-06-10T17:16:09.681455-07:00,1004.9820556640625,10.937406,10937.406 +5698,2025-06-10T17:16:20.628333-07:00,1004.9642333984375,10.946878,10946.878 +5699,2025-06-10T17:16:31.570291-07:00,1004.9810791015625,10.941958,10941.958 +5700,2025-06-10T17:16:42.515045-07:00,1005.033935546875,10.944754,10944.754 +5701,2025-06-10T17:16:53.457324-07:00,1004.9562377929688,10.942279,10942.279 +5702,2025-06-10T17:17:04.405319-07:00,1004.9443969726562,10.947995,10947.995 +5703,2025-06-10T17:17:15.347040-07:00,1004.94970703125,10.941721,10941.721 +5704,2025-06-10T17:17:26.283047-07:00,1004.9576416015625,10.936007,10936.007 +5705,2025-06-10T17:17:37.230513-07:00,1004.967529296875,10.947466,10947.466 +5706,2025-06-10T17:17:48.177817-07:00,1004.9707641601562,10.947304,10947.304 +5707,2025-06-10T17:17:59.122100-07:00,1004.9461059570312,10.944283,10944.283 +5708,2025-06-10T17:18:10.064416-07:00,1004.9885864257812,10.942316,10942.316 +5709,2025-06-10T17:18:21.013211-07:00,1004.959228515625,10.948795,10948.795 +5710,2025-06-10T17:18:31.949073-07:00,1004.967529296875,10.935862,10935.862 +5711,2025-06-10T17:18:42.894360-07:00,1004.935791015625,10.945287,10945.287 +5712,2025-06-10T17:18:53.840291-07:00,1004.9820556640625,10.945931,10945.931 +5713,2025-06-10T17:19:04.775459-07:00,1004.970458984375,10.935168,10935.168 +5714,2025-06-10T17:19:15.717974-07:00,1004.9952392578125,10.942515,10942.515 +5715,2025-06-10T17:19:26.665500-07:00,1004.9918823242188,10.947526,10947.526 +5716,2025-06-10T17:19:37.605135-07:00,1004.9589233398438,10.939635,10939.635 +5717,2025-06-10T17:19:48.557337-07:00,1004.960205078125,10.952202,10952.202 +5718,2025-06-10T17:19:59.492043-07:00,1004.99853515625,10.934706,10934.706 +5719,2025-06-10T17:20:10.438088-07:00,1004.9866333007812,10.946045,10946.045 +5720,2025-06-10T17:20:21.382573-07:00,1004.9639282226562,10.944485,10944.485 +5721,2025-06-10T17:20:32.327785-07:00,1004.9688110351562,10.945212,10945.212 +5722,2025-06-10T17:20:43.262047-07:00,1005.01171875,10.934262,10934.262 +5723,2025-06-10T17:20:54.203327-07:00,1004.970458984375,10.94128,10941.28 +5724,2025-06-10T17:21:05.134049-07:00,1004.9902954101562,10.930722,10930.722 +5725,2025-06-10T17:21:16.078051-07:00,1004.978759765625,10.944002,10944.002 +5726,2025-06-10T17:21:27.017289-07:00,1004.9490356445312,10.939238,10939.238 +5727,2025-06-10T17:21:37.964289-07:00,1004.9754638671875,10.947,10947.0 +5728,2025-06-10T17:21:48.909298-07:00,1005.0064086914062,10.945009,10945.009 +5729,2025-06-10T17:21:59.844199-07:00,1005.0460815429688,10.934901,10934.901 +5730,2025-06-10T17:22:10.793791-07:00,1004.9688110351562,10.949592,10949.592 +5731,2025-06-10T17:22:21.727050-07:00,1005.0064086914062,10.933259,10933.259 +5732,2025-06-10T17:22:32.673035-07:00,1004.9654541015625,10.945985,10945.985 +5733,2025-06-10T17:22:43.620424-07:00,1005.0262451171875,10.947389,10947.389 +5734,2025-06-10T17:22:54.560041-07:00,1004.9918823242188,10.939617,10939.617 +5735,2025-06-10T17:23:05.506247-07:00,1004.9424438476562,10.946206,10946.206 +5736,2025-06-10T17:23:16.457049-07:00,1005.005126953125,10.950802,10950.802 +5737,2025-06-10T17:23:27.408179-07:00,1005.00341796875,10.95113,10951.13 +5738,2025-06-10T17:23:38.351320-07:00,1004.9852905273438,10.943141,10943.141 +5739,2025-06-10T17:23:49.293389-07:00,1004.9639282226562,10.942069,10942.069 +5740,2025-06-10T17:24:00.241045-07:00,1005.0579833984375,10.947656,10947.656 +5741,2025-06-10T17:24:11.184105-07:00,1004.9952392578125,10.94306,10943.06 +5742,2025-06-10T17:24:22.130773-07:00,1005.02490234375,10.946668,10946.668 +5743,2025-06-10T17:24:33.075670-07:00,1005.0216674804688,10.944897,10944.897 +5744,2025-06-10T17:24:44.021049-07:00,1005.0790405273438,10.945379,10945.379 +5745,2025-06-10T17:24:54.964043-07:00,1005.0513305664062,10.942994,10942.994 +5746,2025-06-10T17:25:05.910747-07:00,1005.061279296875,10.946704,10946.704 +5747,2025-06-10T17:25:16.861333-07:00,1005.0282592773438,10.950586,10950.586 +5748,2025-06-10T17:25:27.803067-07:00,1005.0018920898438,10.941734,10941.734 +5749,2025-06-10T17:25:38.752398-07:00,1004.9902954101562,10.949331,10949.331 +5750,2025-06-10T17:25:49.695442-07:00,1005.0150146484375,10.943044,10943.044 +5751,2025-06-10T17:26:00.642379-07:00,1005.0364990234375,10.946937,10946.937 +5752,2025-06-10T17:26:11.586996-07:00,1005.0315551757812,10.944617,10944.617 +5753,2025-06-10T17:26:22.531026-07:00,1005.0410766601562,10.94403,10944.03 +5754,2025-06-10T17:26:33.472188-07:00,1005.0262451171875,10.941162,10941.162 +5755,2025-06-10T17:26:44.422310-07:00,1005.00146484375,10.950122,10950.122 +5756,2025-06-10T17:26:55.369598-07:00,1005.02294921875,10.947288,10947.288 +5757,2025-06-10T17:27:06.314500-07:00,1004.9981079101562,10.944902,10944.902 +5758,2025-06-10T17:27:17.271488-07:00,1005.0457153320312,10.956988,10956.988 +5759,2025-06-10T17:27:28.213095-07:00,1005.0114135742188,10.941607,10941.607 +5760,2025-06-10T17:27:39.162053-07:00,1004.9915771484375,10.948958,10948.958 +5761,2025-06-10T17:27:50.105277-07:00,1005.0245361328125,10.943224,10943.224 +5762,2025-06-10T17:28:01.043047-07:00,1004.9783325195312,10.93777,10937.77 +5763,2025-06-10T17:28:11.983305-07:00,1005.0787353515625,10.940258,10940.258 +5764,2025-06-10T17:28:22.936511-07:00,1005.0097045898438,10.953206,10953.206 +5765,2025-06-10T17:28:33.868258-07:00,1005.0275268554688,10.931747,10931.747 +5766,2025-06-10T17:28:44.819047-07:00,1005.0077514648438,10.950789,10950.789 +5767,2025-06-10T17:28:55.760051-07:00,1004.9767456054688,10.941004,10941.004 +5768,2025-06-10T17:29:06.710885-07:00,1005.0292358398438,10.950834,10950.834 +5769,2025-06-10T17:29:17.651280-07:00,1005.0357666015625,10.940395,10940.395 +5770,2025-06-10T17:29:28.673607-07:00,1005.0371704101562,11.022327,11022.327 +5771,2025-06-10T17:29:39.620281-07:00,1005.014404296875,10.946674,10946.674 +5772,2025-06-10T17:29:50.564279-07:00,1005.0126342773438,10.943998,10943.998 +5773,2025-06-10T17:30:01.509628-07:00,1005.0424194335938,10.945349,10945.349 +5774,2025-06-10T17:30:12.454306-07:00,1004.9843139648438,10.944678,10944.678 +5775,2025-06-10T17:30:23.406277-07:00,1004.9843139648438,10.951971,10951.971 +5776,2025-06-10T17:30:34.350302-07:00,1005.0387573242188,10.944025,10944.025 +5777,2025-06-10T17:30:45.292139-07:00,1004.9664916992188,10.941837,10941.837 +5778,2025-06-10T17:30:56.237514-07:00,1004.97314453125,10.945375,10945.375 +5779,2025-06-10T17:31:07.181327-07:00,1005.0126342773438,10.943813,10943.813 +5780,2025-06-10T17:31:18.127092-07:00,1005.025634765625,10.945765,10945.765 +5781,2025-06-10T17:31:29.065793-07:00,1005.0292358398438,10.938701,10938.701 +5782,2025-06-10T17:31:40.018865-07:00,1005.0126342773438,10.953072,10953.072 +5783,2025-06-10T17:31:50.962332-07:00,1005.0275268554688,10.943467,10943.467 +5784,2025-06-10T17:32:01.908281-07:00,1005.0275268554688,10.945949,10945.949 +5785,2025-06-10T17:32:12.855287-07:00,1005.014404296875,10.947006,10947.006 +5786,2025-06-10T17:32:23.800678-07:00,1005.0159912109375,10.945391,10945.391 +5787,2025-06-10T17:32:34.735760-07:00,1005.0057983398438,10.935082,10935.082 +5788,2025-06-10T17:32:45.682425-07:00,1005.02392578125,10.946665,10946.665 +5789,2025-06-10T17:32:56.624266-07:00,1005.052001953125,10.941841,10941.841 +5790,2025-06-10T17:33:07.570570-07:00,1005.030517578125,10.946304,10946.304 +5791,2025-06-10T17:33:18.517462-07:00,1004.9796752929688,10.946892,10946.892 +5792,2025-06-10T17:33:29.470452-07:00,1005.0965576171875,10.95299,10952.99 +5793,2025-06-10T17:33:40.422308-07:00,1005.0159912109375,10.951856,10951.856 +5794,2025-06-10T17:33:51.360773-07:00,1005.03515625,10.938465,10938.465 +5795,2025-06-10T17:34:02.317588-07:00,1004.990966796875,10.956815,10956.815 +5796,2025-06-10T17:34:13.258229-07:00,1004.9925537109375,10.940641,10940.641 +5797,2025-06-10T17:34:24.205445-07:00,1005.0153198242188,10.947216,10947.216 +5798,2025-06-10T17:34:35.148280-07:00,1005.052001953125,10.942835,10942.835 +5799,2025-06-10T17:34:46.094281-07:00,1005.0470581054688,10.946001,10946.001 +5800,2025-06-10T17:34:57.040549-07:00,1005.0189819335938,10.946268,10946.268 +5801,2025-06-10T17:35:07.986295-07:00,1005.04833984375,10.945746,10945.746 +5802,2025-06-10T17:35:18.938824-07:00,1005.0387573242188,10.952529,10952.529 +5803,2025-06-10T17:35:29.878275-07:00,1005.0321655273438,10.939451,10939.451 +5804,2025-06-10T17:35:40.834414-07:00,1005.0338134765625,10.956139,10956.139 +5805,2025-06-10T17:35:51.770672-07:00,1005.0189819335938,10.936258,10936.258 +5806,2025-06-10T17:36:02.725748-07:00,1005.02197265625,10.955076,10955.076 +5807,2025-06-10T17:36:13.665301-07:00,1005.0829467773438,10.939553,10939.553 +5808,2025-06-10T17:36:24.611271-07:00,1005.0206298828125,10.94597,10945.97 +5809,2025-06-10T17:36:35.558208-07:00,1005.028564453125,10.946937,10946.937 +5810,2025-06-10T17:36:46.509903-07:00,1005.03515625,10.951695,10951.695 +5811,2025-06-10T17:36:57.454317-07:00,1005.0384521484375,10.944414,10944.414 +5812,2025-06-10T17:37:08.410109-07:00,1005.089599609375,10.955792,10955.792 +5813,2025-06-10T17:37:19.351402-07:00,1005.0780639648438,10.941293,10941.293 +5814,2025-06-10T17:37:30.293636-07:00,1005.0797119140625,10.942234,10942.234 +5815,2025-06-10T17:37:41.247706-07:00,1005.0747680664062,10.95407,10954.07 +5816,2025-06-10T17:37:52.191344-07:00,1005.04345703125,10.943638,10943.638 +5817,2025-06-10T17:38:03.139271-07:00,1005.0797119140625,10.947927,10947.927 +5818,2025-06-10T17:38:14.084541-07:00,1005.059814453125,10.94527,10945.27 +5819,2025-06-10T17:38:25.026277-07:00,1005.0664672851562,10.941736,10941.736 +5820,2025-06-10T17:38:35.964429-07:00,1005.0466918945312,10.938152,10938.152 +5821,2025-06-10T17:38:46.910007-07:00,1005.0648193359375,10.945578,10945.578 +5822,2025-06-10T17:38:57.857253-07:00,1005.06982421875,10.947246,10947.246 +5823,2025-06-10T17:39:08.798094-07:00,1005.0879516601562,10.940841,10940.841 +5824,2025-06-10T17:39:19.749543-07:00,1005.111083984375,10.951449,10951.449 +5825,2025-06-10T17:39:30.687507-07:00,1005.0602416992188,10.937964,10937.964 +5826,2025-06-10T17:39:41.637264-07:00,1005.06689453125,10.949757,10949.757 +5827,2025-06-10T17:39:52.578369-07:00,1005.0879516601562,10.941105,10941.105 +5828,2025-06-10T17:40:03.518367-07:00,1005.1196899414062,10.939998,10939.998 +5829,2025-06-10T17:40:14.465495-07:00,1005.030517578125,10.947128,10947.128 +5830,2025-06-10T17:40:25.411513-07:00,1005.1328125,10.946018,10946.018 +5831,2025-06-10T17:40:36.349023-07:00,1005.0850219726562,10.93751,10937.51 +5832,2025-06-10T17:40:47.288279-07:00,1005.099853515625,10.939256,10939.256 +5833,2025-06-10T17:40:58.234282-07:00,1005.065185546875,10.946003,10946.003 +5834,2025-06-10T17:41:09.174432-07:00,1005.0965576171875,10.94015,10940.15 +5835,2025-06-10T17:41:20.109684-07:00,1005.1229858398438,10.935252,10935.252 +5836,2025-06-10T17:41:31.061579-07:00,1005.0965576171875,10.951895,10951.895 +5837,2025-06-10T17:41:42.003271-07:00,1005.0701293945312,10.941692,10941.692 +5838,2025-06-10T17:41:52.948140-07:00,1005.0833740234375,10.944869,10944.869 +5839,2025-06-10T17:42:03.892273-07:00,1005.1331787109375,10.944133,10944.133 +5840,2025-06-10T17:42:14.830425-07:00,1005.1559448242188,10.938152,10938.152 +5841,2025-06-10T17:42:25.778277-07:00,1005.1031494140625,10.947852,10947.852 +5842,2025-06-10T17:42:36.721834-07:00,1005.1414184570312,10.943557,10943.557 +5843,2025-06-10T17:42:47.667319-07:00,1005.0853271484375,10.945485,10945.485 +5844,2025-06-10T17:42:58.608266-07:00,1005.1051635742188,10.940947,10940.947 +5845,2025-06-10T17:43:09.549640-07:00,1005.0906372070312,10.941374,10941.374 +5846,2025-06-10T17:43:20.494293-07:00,1005.1265869140625,10.944653,10944.653 +5847,2025-06-10T17:43:31.438277-07:00,1005.0523681640625,10.943984,10943.984 +5848,2025-06-10T17:43:42.381534-07:00,1005.0982055664062,10.943257,10943.257 +5849,2025-06-10T17:43:53.333537-07:00,1005.1642456054688,10.952003,10952.003 +5850,2025-06-10T17:44:04.277573-07:00,1005.131591796875,10.944036,10944.036 +5851,2025-06-10T17:44:15.220431-07:00,1005.0853271484375,10.942858,10942.858 +5852,2025-06-10T17:44:26.168262-07:00,1005.0523681640625,10.947831,10947.831 +5853,2025-06-10T17:44:37.109281-07:00,1005.0935668945312,10.941019,10941.019 +5854,2025-06-10T17:44:48.054386-07:00,1005.07080078125,10.945105,10945.105 +5855,2025-06-10T17:44:59.005439-07:00,1005.0985717773438,10.951053,10951.053 +5856,2025-06-10T17:45:09.944750-07:00,1005.0985717773438,10.939311,10939.311 +5857,2025-06-10T17:45:20.884540-07:00,1005.1068115234375,10.93979,10939.79 +5858,2025-06-10T17:45:31.830561-07:00,1005.1369018554688,10.946021,10946.021 +5859,2025-06-10T17:45:42.772400-07:00,1005.0985717773438,10.941839,10941.839 +5860,2025-06-10T17:45:53.722277-07:00,1005.1038208007812,10.949877,10949.877 +5861,2025-06-10T17:46:04.665050-07:00,1005.0840454101562,10.942773,10942.773 +5862,2025-06-10T17:46:15.608880-07:00,1005.1051635742188,10.94383,10943.83 +5863,2025-06-10T17:46:26.558761-07:00,1005.0919799804688,10.949881,10949.881 +5864,2025-06-10T17:46:37.502408-07:00,1005.0853271484375,10.943647,10943.647 +5865,2025-06-10T17:46:48.448302-07:00,1005.0443725585938,10.945894,10945.894 +5866,2025-06-10T17:46:59.384603-07:00,1005.125,10.936301,10936.301 +5867,2025-06-10T17:47:10.331295-07:00,1005.0047607421875,10.946692,10946.692 +5868,2025-06-10T17:47:21.275886-07:00,1005.0853271484375,10.944591,10944.591 +5869,2025-06-10T17:47:32.221285-07:00,1005.0840454101562,10.945399,10945.399 +5870,2025-06-10T17:47:43.155466-07:00,1005.125,10.934181,10934.181 +5871,2025-06-10T17:47:54.102032-07:00,1005.051025390625,10.946566,10946.566 +5872,2025-06-10T17:48:05.052328-07:00,1005.0758056640625,10.950296,10950.296 +5873,2025-06-10T17:48:15.991279-07:00,1005.0889282226562,10.938951,10938.951 +5874,2025-06-10T17:48:26.937822-07:00,1005.0675048828125,10.946543,10946.543 +5875,2025-06-10T17:48:37.881523-07:00,1005.0543212890625,10.943701,10943.701 +5876,2025-06-10T17:48:48.835271-07:00,1005.0939331054688,10.953748,10953.748 +5877,2025-06-10T17:48:59.775547-07:00,1005.1203002929688,10.940276,10940.276 +5878,2025-06-10T17:49:10.721619-07:00,1005.1286010742188,10.946072,10946.072 +5879,2025-06-10T17:49:21.655323-07:00,1005.1450805664062,10.933704,10933.704 +5880,2025-06-10T17:49:32.599264-07:00,1005.1041259765625,10.943941,10943.941 +5881,2025-06-10T17:49:43.547424-07:00,1005.21435546875,10.94816,10948.16 +5882,2025-06-10T17:49:54.501447-07:00,1005.1995239257812,10.954023,10954.023 +5883,2025-06-10T17:50:05.445422-07:00,1005.13720703125,10.943975,10943.975 +5884,2025-06-10T17:50:16.392433-07:00,1005.11865234375,10.947011,10947.011 +5885,2025-06-10T17:50:27.335285-07:00,1005.074462890625,10.942852,10942.852 +5886,2025-06-10T17:50:38.272948-07:00,1005.087646484375,10.937663,10937.663 +5887,2025-06-10T17:50:49.224716-07:00,1005.0974731445312,10.951768,10951.768 +5888,2025-06-10T17:51:00.161282-07:00,1005.135498046875,10.936566,10936.566 +5889,2025-06-10T17:51:11.110347-07:00,1005.0974731445312,10.949065,10949.065 +5890,2025-06-10T17:51:22.063391-07:00,1005.1090698242188,10.953044,10953.044 +5891,2025-06-10T17:51:33.013266-07:00,1005.1173706054688,10.949875,10949.875 +5892,2025-06-10T17:51:43.950640-07:00,1005.1041259765625,10.937374,10937.374 +5893,2025-06-10T17:51:54.904726-07:00,1005.1041259765625,10.954086,10954.086 +5894,2025-06-10T17:52:05.852272-07:00,1005.1024780273438,10.947546,10947.546 +5895,2025-06-10T17:52:16.798281-07:00,1005.112060546875,10.946009,10946.009 +5896,2025-06-10T17:52:27.747776-07:00,1005.1318969726562,10.949495,10949.495 +5897,2025-06-10T17:52:38.681427-07:00,1005.0843505859375,10.933651,10933.651 +5898,2025-06-10T17:52:49.631266-07:00,1005.1582641601562,10.949839,10949.839 +5899,2025-06-10T17:53:00.573281-07:00,1005.1107788085938,10.942015,10942.015 +5900,2025-06-10T17:53:11.515539-07:00,1005.156982421875,10.942258,10942.258 +5901,2025-06-10T17:53:22.455250-07:00,1005.0909423828125,10.939711,10939.711 +5902,2025-06-10T17:53:33.405266-07:00,1005.1766967773438,10.950016,10950.016 +5903,2025-06-10T17:53:44.346330-07:00,1005.135498046875,10.941064,10941.064 +5904,2025-06-10T17:53:55.284911-07:00,1005.1503295898438,10.938581,10938.581 +5905,2025-06-10T17:54:04.193879-07:00,1005.11865234375,8.908968,8908.968 +5906,2025-06-10T17:54:06.229472-07:00,1005.1648559570312,2.035593,2035.593 +5907,2025-06-10T17:54:17.171262-07:00,1005.1437377929688,10.94179,10941.79 +5908,2025-06-10T17:54:28.123277-07:00,1005.1864013671875,10.952015,10952.015 +5909,2025-06-10T17:54:39.056530-07:00,1005.14013671875,10.933253,10933.253 +5910,2025-06-10T17:54:50.002280-07:00,1005.11376953125,10.94575,10945.75 +5911,2025-06-10T17:55:00.948510-07:00,1005.1929931640625,10.94623,10946.23 +5912,2025-06-10T17:55:11.882278-07:00,1005.1318969726562,10.933768,10933.768 +5913,2025-06-10T17:55:22.829256-07:00,1005.1239013671875,10.946978,10946.978 +5914,2025-06-10T17:55:33.771529-07:00,1005.1021728515625,10.942273,10942.273 +5915,2025-06-10T17:55:44.712325-07:00,1005.1087646484375,10.940796,10940.796 +5916,2025-06-10T17:55:55.656651-07:00,1005.0873413085938,10.944326,10944.326 +5917,2025-06-10T17:56:06.598281-07:00,1005.0939331054688,10.94163,10941.63 +5918,2025-06-10T17:56:17.550283-07:00,1005.0873413085938,10.952002,10952.002 +5919,2025-06-10T17:56:28.485056-07:00,1005.1268920898438,10.934773,10934.773 +5920,2025-06-10T17:56:39.424280-07:00,1005.0625,10.939224,10939.224 +5921,2025-06-10T17:56:50.365423-07:00,1005.0806884765625,10.941143,10941.143 +5922,2025-06-10T17:57:01.310331-07:00,1005.0889282226562,10.944908,10944.908 +5923,2025-06-10T17:57:12.251394-07:00,1005.1004638671875,10.941063,10941.063 +5924,2025-06-10T17:57:23.200257-07:00,1005.0410766601562,10.948863,10948.863 +5925,2025-06-10T17:57:34.141695-07:00,1005.098876953125,10.941438,10941.438 +5926,2025-06-10T17:57:45.081752-07:00,1005.0592041015625,10.940057,10940.057 +5927,2025-06-10T17:57:56.028259-07:00,1005.072509765625,10.946507,10946.507 +5928,2025-06-10T17:58:06.977262-07:00,1005.0790405273438,10.949003,10949.003 +5929,2025-06-10T17:58:17.919277-07:00,1005.0740356445312,10.942015,10942.015 +5930,2025-06-10T17:58:28.857828-07:00,1005.1351318359375,10.938551,10938.551 +5931,2025-06-10T17:58:39.795277-07:00,1005.146728515625,10.937449,10937.449 +5932,2025-06-10T17:58:50.734360-07:00,1005.09228515625,10.939083,10939.083 +5933,2025-06-10T17:59:01.684612-07:00,1005.1484375,10.950252,10950.252 +5934,2025-06-10T17:59:12.624271-07:00,1005.0691528320312,10.939659,10939.659 +5935,2025-06-10T17:59:23.557430-07:00,1005.1203002929688,10.933159,10933.159 +5936,2025-06-10T17:59:34.509347-07:00,1005.146728515625,10.951917,10951.917 +5937,2025-06-10T17:59:45.443779-07:00,1005.1253051757812,10.934432,10934.432 +5938,2025-06-10T17:59:56.393272-07:00,1005.1517333984375,10.949493,10949.493 +5939,2025-06-10T18:00:07.337487-07:00,1005.1268920898438,10.944215,10944.215 +5940,2025-06-10T18:00:18.280291-07:00,1005.1268920898438,10.942804,10942.804 +5941,2025-06-10T18:00:29.214264-07:00,1005.1615600585938,10.933973,10933.973 +5942,2025-06-10T18:00:40.154283-07:00,1005.14013671875,10.940019,10940.019 +5943,2025-06-10T18:00:51.101281-07:00,1005.1087646484375,10.946998,10946.998 +5944,2025-06-10T18:01:02.034060-07:00,1005.098876953125,10.932779,10932.779 +5945,2025-06-10T18:01:12.979264-07:00,1005.1004638671875,10.945204,10945.204 +5946,2025-06-10T18:01:23.918076-07:00,1005.1268920898438,10.938812,10938.812 +5947,2025-06-10T18:01:34.864110-07:00,1005.098876953125,10.946034,10946.034 +5948,2025-06-10T18:01:45.810478-07:00,1005.074462890625,10.946368,10946.368 +5949,2025-06-10T18:01:56.745535-07:00,1005.1024780273438,10.935057,10935.057 +5950,2025-06-10T18:02:07.691531-07:00,1005.061279296875,10.945996,10945.996 +5951,2025-06-10T18:02:18.636493-07:00,1005.09423828125,10.944962,10944.962 +5952,2025-06-10T18:02:29.577281-07:00,1005.1470336914062,10.940788,10940.788 +5953,2025-06-10T18:02:40.519556-07:00,1005.074462890625,10.942275,10942.275 +5954,2025-06-10T18:02:51.466356-07:00,1005.0929565429688,10.9468,10946.8 +5955,2025-06-10T18:03:02.402275-07:00,1005.1668701171875,10.935919,10935.919 +5956,2025-06-10T18:03:13.347276-07:00,1005.0777587890625,10.945001,10945.001 +5957,2025-06-10T18:03:24.294237-07:00,1005.0797119140625,10.946961,10946.961 +5958,2025-06-10T18:03:35.222301-07:00,1005.0678100585938,10.928064,10928.064 +5959,2025-06-10T18:03:46.167277-07:00,1005.100830078125,10.944976,10944.976 +5960,2025-06-10T18:03:57.109267-07:00,1005.0599365234375,10.94199,10941.99 +5961,2025-06-10T18:04:08.042320-07:00,1005.0466918945312,10.933053,10933.053 +5962,2025-06-10T18:04:18.990277-07:00,1005.0384521484375,10.947957,10947.957 +5963,2025-06-10T18:04:29.933594-07:00,1005.061279296875,10.943317,10943.317 +5964,2025-06-10T18:04:40.868258-07:00,1005.0516967773438,10.934664,10934.664 +5965,2025-06-10T18:04:51.819256-07:00,1005.0582885742188,10.950998,10950.998 +5966,2025-06-10T18:05:02.753610-07:00,1005.0282592773438,10.934354,10934.354 +5967,2025-06-10T18:05:13.693511-07:00,1005.0335083007812,10.939901,10939.901 +5968,2025-06-10T18:05:24.643266-07:00,1005.0451049804688,10.949755,10949.755 +5969,2025-06-10T18:05:35.587280-07:00,1005.0302124023438,10.944014,10944.014 +5970,2025-06-10T18:05:46.530402-07:00,1005.0120239257812,10.943122,10943.122 +5971,2025-06-10T18:05:57.472537-07:00,1004.9989013671875,10.942135,10942.135 +5972,2025-06-10T18:06:08.405481-07:00,1005.0863037109375,10.932944,10932.944 +5973,2025-06-10T18:06:19.355559-07:00,1004.9509887695312,10.950078,10950.078 +5974,2025-06-10T18:06:30.297670-07:00,1005.0054931640625,10.942111,10942.111 +5975,2025-06-10T18:06:41.229605-07:00,1004.9840698242188,10.931935,10931.935 +5976,2025-06-10T18:06:52.169447-07:00,1004.962890625,10.939842,10939.842 +5977,2025-06-10T18:07:03.106272-07:00,1004.985595703125,10.936825,10936.825 +5978,2025-06-10T18:07:14.044455-07:00,1004.9464111328125,10.938183,10938.183 +5979,2025-06-10T18:07:24.979235-07:00,1005.0289306640625,10.93478,10934.78 +5980,2025-06-10T18:07:35.908280-07:00,1005.0025024414062,10.929045,10929.045 +5981,2025-06-10T18:07:46.853433-07:00,1004.9576416015625,10.945153,10945.153 +5982,2025-06-10T18:07:57.784343-07:00,1004.9912719726562,10.93091,10930.91 +5983,2025-06-10T18:08:08.720606-07:00,1004.9810791015625,10.936263,10936.263 +5984,2025-06-10T18:08:19.669153-07:00,1004.9642333984375,10.948547,10948.547 +5985,2025-06-10T18:08:30.601523-07:00,1004.9642333984375,10.93237,10932.37 +5986,2025-06-10T18:08:41.538281-07:00,1004.9612426757812,10.936758,10936.758 +5987,2025-06-10T18:08:52.475291-07:00,1005.0140380859375,10.93701,10937.01 +5988,2025-06-10T18:09:03.421590-07:00,1004.958251953125,10.946299,10946.299 +5989,2025-06-10T18:09:14.351747-07:00,1004.9728393554688,10.930157,10930.157 +5990,2025-06-10T18:09:25.300071-07:00,1004.9661865234375,10.948324,10948.324 +5991,2025-06-10T18:09:36.227317-07:00,1005.0223388671875,10.927246,10927.246 +5992,2025-06-10T18:09:47.167601-07:00,1004.97607421875,10.940284,10940.284 +5993,2025-06-10T18:09:58.114150-07:00,1005.0272827148438,10.946549,10946.549 +5994,2025-06-10T18:10:09.059263-07:00,1004.9859619140625,10.945113,10945.113 +5995,2025-06-10T18:10:20.000521-07:00,1005.0044555664062,10.941258,10941.258 +5996,2025-06-10T18:10:30.934280-07:00,1005.0008544921875,10.933759,10933.759 +5997,2025-06-10T18:10:41.877340-07:00,1005.0321655273438,10.94306,10943.06 +5998,2025-06-10T18:10:52.820298-07:00,1005.0057983398438,10.942958,10942.958 +5999,2025-06-10T18:11:03.755174-07:00,1004.9912719726562,10.934876,10934.876 +6000,2025-06-10T18:11:14.704277-07:00,1004.9912719726562,10.949103,10949.103 +6001,2025-06-10T18:11:25.639575-07:00,1005.0140380859375,10.935298,10935.298 +6002,2025-06-10T18:11:36.579722-07:00,1005.07177734375,10.940147,10940.147 +6003,2025-06-10T18:11:47.515827-07:00,1005.0057983398438,10.936105,10936.105 +6004,2025-06-10T18:11:58.452535-07:00,1005.0189819335938,10.936708,10936.708 +6005,2025-06-10T18:12:09.389447-07:00,1005.0189819335938,10.936912,10936.912 +6006,2025-06-10T18:12:20.324345-07:00,1005.080078125,10.934898,10934.898 +6007,2025-06-10T18:12:31.262539-07:00,1004.9859619140625,10.938194,10938.194 +6008,2025-06-10T18:12:42.192277-07:00,1005.0189819335938,10.929738,10929.738 +6009,2025-06-10T18:12:53.123484-07:00,1005.0057983398438,10.931207,10931.207 +6010,2025-06-10T18:13:04.068544-07:00,1004.9992065429688,10.94506,10945.06 +6011,2025-06-10T18:13:15.011317-07:00,1005.052001953125,10.942773,10942.773 +6012,2025-06-10T18:13:25.950514-07:00,1005.0968627929688,10.939197,10939.197 +6013,2025-06-10T18:13:36.889431-07:00,1005.09033203125,10.938917,10938.917 +6014,2025-06-10T18:13:47.824281-07:00,1005.049072265625,10.93485,10934.85 +6015,2025-06-10T18:13:58.765703-07:00,1005.04541015625,10.941422,10941.422 +6016,2025-06-10T18:14:09.710918-07:00,1005.0440673828125,10.945215,10945.215 +6017,2025-06-10T18:14:20.650409-07:00,1004.9813842773438,10.939491,10939.491 +6018,2025-06-10T18:14:31.597545-07:00,1005.04736328125,10.947136,10947.136 +6019,2025-06-10T18:14:42.535281-07:00,1005.0440673828125,10.937736,10937.736 +6020,2025-06-10T18:14:53.476277-07:00,1005.052001953125,10.940996,10940.996 +6021,2025-06-10T18:15:04.428277-07:00,1005.0770263671875,10.952,10952.0 +6022,2025-06-10T18:15:15.357760-07:00,1005.09033203125,10.929483,10929.483 +6023,2025-06-10T18:15:26.302336-07:00,1005.0784301757812,10.944576,10944.576 +6024,2025-06-10T18:15:37.248406-07:00,1005.0850219726562,10.94607,10946.07 +6025,2025-06-10T18:15:48.188738-07:00,1005.07177734375,10.940332,10940.332 +6026,2025-06-10T18:15:59.135499-07:00,1005.0308837890625,10.946761,10946.761 +6027,2025-06-10T18:16:10.076279-07:00,1005.1279907226562,10.94078,10940.78 +6028,2025-06-10T18:16:21.017877-07:00,1005.16748046875,10.941598,10941.598 +6029,2025-06-10T18:16:31.959557-07:00,1005.0618896484375,10.94168,10941.68 +6030,2025-06-10T18:16:42.899259-07:00,1005.099853515625,10.939702,10939.702 +6031,2025-06-10T18:16:53.838337-07:00,1005.06689453125,10.939078,10939.078 +6032,2025-06-10T18:17:04.777973-07:00,1005.0057983398438,10.939636,10939.636 +6033,2025-06-10T18:17:15.719277-07:00,1005.04541015625,10.941304,10941.304 +6034,2025-06-10T18:17:26.661986-07:00,1005.06689453125,10.942709,10942.709 +6035,2025-06-10T18:17:37.610845-07:00,1005.0354614257812,10.948859,10948.859 +6036,2025-06-10T18:17:48.541285-07:00,1005.0499877929688,10.93044,10930.44 +6037,2025-06-10T18:17:59.483285-07:00,1005.0170288085938,10.942,10942.0 +6038,2025-06-10T18:18:10.429610-07:00,1005.0236206054688,10.946325,10946.325 +6039,2025-06-10T18:18:21.363692-07:00,1005.1146850585938,10.934082,10934.082 +6040,2025-06-10T18:18:32.309378-07:00,1005.0354614257812,10.945686,10945.686 +6041,2025-06-10T18:18:43.251355-07:00,1005.0236206054688,10.941977,10941.977 +6042,2025-06-10T18:18:54.198549-07:00,1004.982666015625,10.947194,10947.194 +6043,2025-06-10T18:19:05.135449-07:00,1005.0170288085938,10.9369,10936.9 +6044,2025-06-10T18:19:16.069922-07:00,1005.0354614257812,10.934473,10934.473 +6045,2025-06-10T18:19:27.001329-07:00,1004.9959106445312,10.931407,10931.407 +6046,2025-06-10T18:19:37.939260-07:00,1005.0054931640625,10.937931,10937.931 +6047,2025-06-10T18:19:48.874315-07:00,1005.0038452148438,10.935055,10935.055 +6048,2025-06-10T18:19:59.813760-07:00,1005.0289306640625,10.939445,10939.445 +6049,2025-06-10T18:20:10.757337-07:00,1004.9893188476562,10.943577,10943.577 +6050,2025-06-10T18:20:21.687277-07:00,1005.036865234375,10.92994,10929.94 +6051,2025-06-10T18:20:32.626523-07:00,1005.0466918945312,10.939246,10939.246 +6052,2025-06-10T18:20:43.564785-07:00,1005.009033203125,10.938262,10938.262 +6053,2025-06-10T18:20:54.504484-07:00,1004.9959106445312,10.939699,10939.699 +6054,2025-06-10T18:21:05.441281-07:00,1005.0223388671875,10.936797,10936.797 +6055,2025-06-10T18:21:16.380567-07:00,1005.0038452148438,10.939286,10939.286 +6056,2025-06-10T18:21:27.321309-07:00,1005.0582885742188,10.940742,10940.742 +6057,2025-06-10T18:21:38.263271-07:00,1005.0289306640625,10.941962,10941.962 +6058,2025-06-10T18:21:49.194617-07:00,1005.0318603515625,10.931346,10931.346 +6059,2025-06-10T18:22:00.142518-07:00,1005.056640625,10.947901,10947.901 +6060,2025-06-10T18:22:11.078589-07:00,1005.0451049804688,10.936071,10936.071 +6061,2025-06-10T18:22:22.019002-07:00,1005.056640625,10.940413,10940.413 +6062,2025-06-10T18:22:32.955277-07:00,1005.0582885742188,10.936275,10936.275 +6063,2025-06-10T18:22:43.899443-07:00,1005.033935546875,10.944166,10944.166 +6064,2025-06-10T18:22:54.834415-07:00,1005.0632934570312,10.934972,10934.972 +6065,2025-06-10T18:23:05.772284-07:00,1005.036865234375,10.937869,10937.869 +6066,2025-06-10T18:23:16.715704-07:00,1005.1113891601562,10.94342,10943.42 +6067,2025-06-10T18:23:27.644518-07:00,1005.0321655273438,10.928814,10928.814 +6068,2025-06-10T18:23:38.582281-07:00,1005.0536499023438,10.937763,10937.763 +6069,2025-06-10T18:23:49.528561-07:00,1005.0734252929688,10.94628,10946.28 +6070,2025-06-10T18:24:00.469348-07:00,1005.1328735351562,10.940787,10940.787 +6071,2025-06-10T18:24:11.414279-07:00,1005.1688842773438,10.944931,10944.931 +6072,2025-06-10T18:24:22.348632-07:00,1005.1543579101562,10.934353,10934.353 +6073,2025-06-10T18:24:33.288253-07:00,1005.1510009765625,10.939621,10939.621 +6074,2025-06-10T18:24:44.227260-07:00,1005.1461181640625,10.939007,10939.007 +6075,2025-06-10T18:24:55.175454-07:00,1005.1395263671875,10.948194,10948.194 +6076,2025-06-10T18:25:06.112392-07:00,1005.1378173828125,10.936938,10936.938 +6077,2025-06-10T18:25:17.061008-07:00,1005.1461181640625,10.948616,10948.616 +6078,2025-06-10T18:25:28.011277-07:00,1005.134521484375,10.950269,10950.269 +6079,2025-06-10T18:25:38.953302-07:00,1005.1820068359375,10.942025,10942.025 +6080,2025-06-10T18:25:49.896434-07:00,1005.2072143554688,10.943132,10943.132 +6081,2025-06-10T18:26:00.834281-07:00,1005.251708984375,10.937847,10937.847 +6082,2025-06-10T18:26:11.781264-07:00,1005.2005615234375,10.946983,10946.983 +6083,2025-06-10T18:26:22.728279-07:00,1005.215087890625,10.947015,10947.015 +6084,2025-06-10T18:26:33.661268-07:00,1005.21875,10.932989,10932.989 +6085,2025-06-10T18:26:44.603619-07:00,1005.1906127929688,10.942351,10942.351 +6086,2025-06-10T18:26:55.552893-07:00,1005.1989135742188,10.949274,10949.274 +6087,2025-06-10T18:27:06.484257-07:00,1005.2217407226562,10.931364,10931.364 +6088,2025-06-10T18:27:17.430279-07:00,1005.2137451171875,10.946022,10946.022 +6089,2025-06-10T18:27:28.368594-07:00,1005.1707763671875,10.938315,10938.315 +6090,2025-06-10T18:27:39.300498-07:00,1005.2137451171875,10.931904,10931.904 +6091,2025-06-10T18:27:50.237260-07:00,1005.238525390625,10.936762,10936.762 +6092,2025-06-10T18:28:01.185814-07:00,1005.2533569335938,10.948554,10948.554 +6093,2025-06-10T18:28:12.126262-07:00,1005.2235717773438,10.940448,10940.448 +6094,2025-06-10T18:28:23.073324-07:00,1005.2451782226562,10.947062,10947.062 +6095,2025-06-10T18:28:34.014277-07:00,1005.215087890625,10.940953,10940.953 +6096,2025-06-10T18:28:44.964568-07:00,1005.1906127929688,10.950291,10950.291 +6097,2025-06-10T18:28:55.898281-07:00,1005.2156982421875,10.933713,10933.713 +6098,2025-06-10T18:29:06.844264-07:00,1005.2235717773438,10.945983,10945.983 +6099,2025-06-10T18:29:17.783755-07:00,1005.2566528320312,10.939491,10939.491 +6100,2025-06-10T18:29:28.758246-07:00,1005.230224609375,10.974491,10974.491 +6101,2025-06-10T18:29:39.704586-07:00,1005.3279418945312,10.94634,10946.34 +6102,2025-06-10T18:29:50.648877-07:00,1005.2421264648438,10.944291,10944.291 +6103,2025-06-10T18:30:01.590409-07:00,1005.2451782226562,10.941532,10941.532 +6104,2025-06-10T18:30:12.531444-07:00,1005.3213500976562,10.941035,10941.035 +6105,2025-06-10T18:30:23.468750-07:00,1005.2979736328125,10.937306,10937.306 +6106,2025-06-10T18:30:34.411029-07:00,1005.264892578125,10.942279,10942.279 +6107,2025-06-10T18:30:45.362588-07:00,1005.25830078125,10.951559,10951.559 +6108,2025-06-10T18:30:56.300463-07:00,1005.2715454101562,10.937875,10937.875 +6109,2025-06-10T18:31:07.235564-07:00,1005.3045043945312,10.935101,10935.101 +6110,2025-06-10T18:31:18.181600-07:00,1005.2546997070312,10.946036,10946.036 +6111,2025-06-10T18:31:29.117772-07:00,1005.260009765625,10.936172,10936.172 +6112,2025-06-10T18:31:40.065444-07:00,1005.2533569335938,10.947672,10947.672 +6113,2025-06-10T18:31:51.008939-07:00,1005.260009765625,10.943495,10943.495 +6114,2025-06-10T18:32:01.946444-07:00,1005.310791015625,10.937505,10937.505 +6115,2025-06-10T18:32:12.892455-07:00,1005.3157958984375,10.946011,10946.011 +6116,2025-06-10T18:32:23.833137-07:00,1005.2943115234375,10.940682,10940.682 +6117,2025-06-10T18:32:34.773125-07:00,1005.2893676757812,10.939988,10939.988 +6118,2025-06-10T18:32:45.712435-07:00,1005.297607421875,10.93931,10939.31 +6119,2025-06-10T18:32:56.657991-07:00,1005.3074951171875,10.945556,10945.556 +6120,2025-06-10T18:33:07.595862-07:00,1005.3649291992188,10.937871,10937.871 +6121,2025-06-10T18:33:18.530463-07:00,1005.30419921875,10.934601,10934.601 +6122,2025-06-10T18:33:29.483662-07:00,1005.3223266601562,10.953199,10953.199 +6123,2025-06-10T18:33:40.427994-07:00,1005.3570556640625,10.944332,10944.332 +6124,2025-06-10T18:33:51.366516-07:00,1005.3570556640625,10.938522,10938.522 +6125,2025-06-10T18:34:02.311550-07:00,1005.3471069335938,10.945034,10945.034 +6126,2025-06-10T18:34:13.262610-07:00,1005.3685913085938,10.95106,10951.06 +6127,2025-06-10T18:34:24.200799-07:00,1005.3392333984375,10.938189,10938.189 +6128,2025-06-10T18:34:35.141711-07:00,1005.3339233398438,10.940912,10940.912 +6129,2025-06-10T18:34:46.095700-07:00,1005.34375,10.953989,10953.989 +6130,2025-06-10T18:34:57.043631-07:00,1005.3668823242188,10.947931,10947.931 +6131,2025-06-10T18:35:07.978436-07:00,1005.3635864257812,10.934805,10934.805 +6132,2025-06-10T18:35:18.933774-07:00,1005.3602905273438,10.955338,10955.338 +6133,2025-06-10T18:35:29.876914-07:00,1005.3635864257812,10.94314,10943.14 +6134,2025-06-10T18:35:40.822463-07:00,1005.426025390625,10.945549,10945.549 +6135,2025-06-10T18:35:51.755190-07:00,1005.441162109375,10.932727,10932.727 +6136,2025-06-10T18:36:02.705734-07:00,1005.419677734375,10.950544,10950.544 +6137,2025-06-10T18:36:13.645464-07:00,1005.4639282226562,10.93973,10939.73 +6138,2025-06-10T18:36:24.592733-07:00,1005.3602905273438,10.947269,10947.269 +6139,2025-06-10T18:36:35.543393-07:00,1005.4296264648438,10.95066,10950.66 +6140,2025-06-10T18:36:46.487668-07:00,1005.4296264648438,10.944275,10944.275 +6141,2025-06-10T18:36:57.428476-07:00,1005.4494018554688,10.940808,10940.808 +6142,2025-06-10T18:37:08.382457-07:00,1005.4329833984375,10.953981,10953.981 +6143,2025-06-10T18:37:19.325718-07:00,1005.4428100585938,10.943261,10943.261 +6144,2025-06-10T18:37:30.262301-07:00,1005.4263305664062,10.936583,10936.583 +6145,2025-06-10T18:37:41.205892-07:00,1005.4229736328125,10.943591,10943.591 +6146,2025-06-10T18:37:52.156463-07:00,1005.3817138671875,10.950571,10950.571 +6147,2025-06-10T18:38:03.102447-07:00,1005.4559936523438,10.945984,10945.984 +6148,2025-06-10T18:38:14.052446-07:00,1005.3965454101562,10.949999,10949.999 +6149,2025-06-10T18:38:24.999783-07:00,1005.4081420898438,10.947337,10947.337 +6150,2025-06-10T18:38:35.946503-07:00,1005.414794921875,10.94672,10946.72 +6151,2025-06-10T18:38:46.883446-07:00,1005.4345092773438,10.936943,10936.943 +6152,2025-06-10T18:38:57.827792-07:00,1005.4163818359375,10.944346,10944.346 +6153,2025-06-10T18:39:08.781806-07:00,1005.4065551757812,10.954014,10954.014 +6154,2025-06-10T18:39:19.721459-07:00,1005.4229736328125,10.939653,10939.653 +6155,2025-06-10T18:39:30.668690-07:00,1005.436279296875,10.947231,10947.231 +6156,2025-06-10T18:39:41.616504-07:00,1005.419677734375,10.947814,10947.814 +6157,2025-06-10T18:39:52.564440-07:00,1005.42138671875,10.947936,10947.936 +6158,2025-06-10T18:40:03.510801-07:00,1005.4478149414062,10.946361,10946.361 +6159,2025-06-10T18:40:14.455751-07:00,1005.42333984375,10.94495,10944.95 +6160,2025-06-10T18:40:25.400432-07:00,1005.4461059570312,10.944681,10944.681 +6161,2025-06-10T18:40:36.351446-07:00,1005.477783203125,10.951014,10951.014 +6162,2025-06-10T18:40:47.287403-07:00,1005.4263305664062,10.935957,10935.957 +6163,2025-06-10T18:40:58.236211-07:00,1005.4497680664062,10.948808,10948.808 +6164,2025-06-10T18:41:09.172688-07:00,1005.5253295898438,10.936477,10936.477 +6165,2025-06-10T18:41:20.122449-07:00,1005.4910278320312,10.949761,10949.761 +6166,2025-06-10T18:41:31.059435-07:00,1005.4497680664062,10.936986,10936.986 +6167,2025-06-10T18:41:42.006484-07:00,1005.5158081054688,10.947049,10947.049 +6168,2025-06-10T18:41:52.946160-07:00,1005.4600219726562,10.939676,10939.676 +6169,2025-06-10T18:42:03.889774-07:00,1005.5061645507812,10.943614,10943.614 +6170,2025-06-10T18:42:14.830459-07:00,1005.4678955078125,10.940685,10940.685 +6171,2025-06-10T18:42:25.781458-07:00,1005.4761962890625,10.950999,10950.999 +6172,2025-06-10T18:42:36.723653-07:00,1005.4863891601562,10.942195,10942.195 +6173,2025-06-10T18:42:47.660006-07:00,1005.4781494140625,10.936353,10936.353 +6174,2025-06-10T18:42:58.595439-07:00,1005.5075073242188,10.935433,10935.433 +6175,2025-06-10T18:43:09.539660-07:00,1005.5158081054688,10.944221,10944.221 +6176,2025-06-10T18:43:20.486806-07:00,1005.555419921875,10.947146,10947.146 +6177,2025-06-10T18:43:31.413702-07:00,1005.4791259765625,10.926896,10926.896 +6178,2025-06-10T18:43:42.361448-07:00,1005.55078125,10.947746,10947.746 +6179,2025-06-10T18:43:53.298787-07:00,1005.56201171875,10.937339,10937.339 +6180,2025-06-10T18:44:04.234455-07:00,1005.576904296875,10.935668,10935.668 +6181,2025-06-10T18:44:15.181457-07:00,1005.5392456054688,10.947002,10947.002 +6182,2025-06-10T18:44:26.120534-07:00,1005.5404663085938,10.939077,10939.077 +6183,2025-06-10T18:44:37.062070-07:00,1005.5537719726562,10.941536,10941.536 +6184,2025-06-10T18:44:47.997689-07:00,1005.5325927734375,10.935619,10935.619 +6185,2025-06-10T18:44:58.941850-07:00,1005.529296875,10.944161,10944.161 +6186,2025-06-10T18:45:09.878684-07:00,1005.5751342773438,10.936834,10936.834 +6187,2025-06-10T18:45:20.819696-07:00,1005.5325927734375,10.941012,10941.012 +6188,2025-06-10T18:45:31.771790-07:00,1005.4913330078125,10.952094,10952.094 +6189,2025-06-10T18:45:42.705465-07:00,1005.5289916992188,10.933675,10933.675 +6190,2025-06-10T18:45:53.649459-07:00,1005.4827880859375,10.943994,10943.994 +6191,2025-06-10T18:46:04.597499-07:00,1005.5223388671875,10.94804,10948.04 +6192,2025-06-10T18:46:15.536735-07:00,1005.5140380859375,10.939236,10939.236 +6193,2025-06-10T18:46:26.475614-07:00,1005.4943237304688,10.938879,10938.879 +6194,2025-06-10T18:46:37.417443-07:00,1005.5092163085938,10.941829,10941.829 +6195,2025-06-10T18:46:48.362802-07:00,1005.4943237304688,10.945359,10945.359 +6196,2025-06-10T18:46:59.307203-07:00,1005.5173950195312,10.944401,10944.401 +6197,2025-06-10T18:47:10.252678-07:00,1005.5158081054688,10.945475,10945.475 +6198,2025-06-10T18:47:21.192481-07:00,1005.477783203125,10.939803,10939.803 +6199,2025-06-10T18:47:32.139720-07:00,1005.5401611328125,10.947239,10947.239 +6200,2025-06-10T18:47:43.080488-07:00,1005.5187377929688,10.940768,10940.768 +6201,2025-06-10T18:47:54.018457-07:00,1005.53857421875,10.937969,10937.969 +6202,2025-06-10T18:48:04.970461-07:00,1005.5055541992188,10.952004,10952.004 +6203,2025-06-10T18:48:15.904774-07:00,1005.5371704101562,10.934313,10934.313 +6204,2025-06-10T18:48:26.852455-07:00,1005.5187377929688,10.947681,10947.681 +6205,2025-06-10T18:48:37.804443-07:00,1005.5253295898438,10.951988,10951.988 +6206,2025-06-10T18:48:48.737459-07:00,1005.531982421875,10.933016,10933.016 +6207,2025-06-10T18:48:59.683427-07:00,1005.5516967773438,10.945968,10945.968 +6208,2025-06-10T18:49:10.620498-07:00,1005.5306396484375,10.937071,10937.071 +6209,2025-06-10T18:49:21.566471-07:00,1005.5665893554688,10.945973,10945.973 +6210,2025-06-10T18:49:32.510901-07:00,1005.5468139648438,10.94443,10944.43 +6211,2025-06-10T18:49:43.457808-07:00,1005.56201171875,10.946907,10946.907 +6212,2025-06-10T18:49:54.402459-07:00,1005.5751342773438,10.944651,10944.651 +6213,2025-06-10T18:50:05.345311-07:00,1005.558349609375,10.942852,10942.852 +6214,2025-06-10T18:50:16.283811-07:00,1005.5702514648438,10.9385,10938.5 +6215,2025-06-10T18:50:27.218450-07:00,1005.56689453125,10.934639,10934.639 +6216,2025-06-10T18:50:38.158501-07:00,1005.5900268554688,10.940051,10940.051 +6217,2025-06-10T18:50:49.105389-07:00,1005.568603515625,10.946888,10946.888 +6218,2025-06-10T18:51:00.038463-07:00,1005.594970703125,10.933074,10933.074 +6219,2025-06-10T18:51:10.983437-07:00,1005.5985717773438,10.944974,10944.974 +6220,2025-06-10T18:51:21.918312-07:00,1005.6279907226562,10.934875,10934.875 +6221,2025-06-10T18:51:32.852713-07:00,1005.6824951171875,10.934401,10934.401 +6222,2025-06-10T18:51:43.791985-07:00,1005.6279907226562,10.939272,10939.272 +6223,2025-06-10T18:51:54.738009-07:00,1005.6148681640625,10.946024,10946.024 +6224,2025-06-10T18:52:05.673454-07:00,1005.5966186523438,10.935445,10935.445 +6225,2025-06-10T18:52:16.600990-07:00,1005.5650024414062,10.927536,10927.536 +6226,2025-06-10T18:52:27.547559-07:00,1005.63623046875,10.946569,10946.569 +6227,2025-06-10T18:52:38.481749-07:00,1005.623046875,10.93419,10934.19 +6228,2025-06-10T18:52:49.427307-07:00,1005.555419921875,10.945558,10945.558 +6229,2025-06-10T18:53:00.356457-07:00,1005.6560668945312,10.92915,10929.15 +6230,2025-06-10T18:53:11.306464-07:00,1005.60986328125,10.950007,10950.007 +6231,2025-06-10T18:53:22.245717-07:00,1005.6163940429688,10.939253,10939.253 +6232,2025-06-10T18:53:33.191845-07:00,1005.6243896484375,10.946128,10946.128 +6233,2025-06-10T18:53:44.135708-07:00,1005.6045532226562,10.943863,10943.863 +6234,2025-06-10T18:53:55.078616-07:00,1005.642822265625,10.942908,10942.908 +6235,2025-06-10T18:54:06.017015-07:00,1005.6296997070312,10.938399,10938.399 +6236,2025-06-10T18:54:16.963440-07:00,1005.6626586914062,10.946425,10946.425 +6237,2025-06-10T18:54:27.907464-07:00,1005.6309204101562,10.944024,10944.024 +6238,2025-06-10T18:54:38.852463-07:00,1005.60986328125,10.944999,10944.999 +6239,2025-06-10T18:54:49.794788-07:00,1005.6607055664062,10.942325,10942.325 +6240,2025-06-10T18:55:00.738007-07:00,1005.6163940429688,10.943219,10943.219 +6241,2025-06-10T18:55:11.685783-07:00,1005.6243896484375,10.947776,10947.776 +6242,2025-06-10T18:55:22.626092-07:00,1005.603271484375,10.940309,10940.309 +6243,2025-06-10T18:55:33.565615-07:00,1005.6062622070312,10.939523,10939.523 +6244,2025-06-10T18:55:44.503652-07:00,1005.6837768554688,10.938037,10938.037 +6245,2025-06-10T18:55:55.451461-07:00,1005.744873046875,10.947809,10947.809 +6246,2025-06-10T18:56:06.392779-07:00,1005.6721801757812,10.941318,10941.318 +6247,2025-06-10T18:56:17.328610-07:00,1005.6177978515625,10.935831,10935.831 +6248,2025-06-10T18:56:28.265754-07:00,1005.6442260742188,10.937144,10937.144 +6249,2025-06-10T18:56:39.204917-07:00,1005.619384765625,10.939163,10939.163 +6250,2025-06-10T18:56:50.141846-07:00,1005.5914306640625,10.936929,10936.929 +6251,2025-06-10T18:57:01.087390-07:00,1005.6573486328125,10.945544,10945.544 +6252,2025-06-10T18:57:12.025079-07:00,1005.6409301757812,10.937689,10937.689 +6253,2025-06-10T18:57:22.969681-07:00,1005.6326293945312,10.944602,10944.602 +6254,2025-06-10T18:57:33.905956-07:00,1005.6290893554688,10.936275,10936.275 +6255,2025-06-10T18:57:44.850044-07:00,1005.614501953125,10.944088,10944.088 +6256,2025-06-10T18:57:55.784495-07:00,1005.6012573242188,10.934451,10934.451 +6257,2025-06-10T18:58:06.719002-07:00,1005.6026611328125,10.934507,10934.507 +6258,2025-06-10T18:58:17.664750-07:00,1005.614501953125,10.945748,10945.748 +6259,2025-06-10T18:58:28.598448-07:00,1005.58642578125,10.933698,10933.698 +6260,2025-06-10T18:58:39.537625-07:00,1005.671875,10.939177,10939.177 +6261,2025-06-10T18:58:50.479432-07:00,1005.59765625,10.941807,10941.807 +6262,2025-06-10T18:59:01.420448-07:00,1005.6091918945312,10.941016,10941.016 +6263,2025-06-10T18:59:12.361781-07:00,1005.5814819335938,10.941333,10941.333 +6264,2025-06-10T18:59:23.299439-07:00,1005.59765625,10.937658,10937.658 +6265,2025-06-10T18:59:34.243455-07:00,1005.604248046875,10.944016,10944.016 +6266,2025-06-10T18:59:45.178397-07:00,1005.6666259765625,10.934942,10934.942 +6267,2025-06-10T18:59:56.123464-07:00,1005.6336059570312,10.945067,10945.067 +6268,2025-06-10T19:00:07.063463-07:00,1005.6204833984375,10.939999,10939.999 +6269,2025-06-10T19:00:18.007601-07:00,1005.6439208984375,10.944138,10944.138 +6270,2025-06-10T19:00:28.937720-07:00,1005.5940551757812,10.930119,10930.119 +6271,2025-06-10T19:00:39.878693-07:00,1005.61083984375,10.940973,10940.973 +6272,2025-06-10T19:00:50.824818-07:00,1005.6026611328125,10.946125,10946.125 +6273,2025-06-10T19:01:01.759440-07:00,1005.6091918945312,10.934622,10934.622 +6274,2025-06-10T19:01:12.704459-07:00,1005.6702880859375,10.945019,10945.019 +6275,2025-06-10T19:01:23.638028-07:00,1005.6504516601562,10.933569,10933.569 +6276,2025-06-10T19:01:34.582501-07:00,1005.6290893554688,10.944473,10944.473 +6277,2025-06-10T19:01:45.526444-07:00,1005.6091918945312,10.943943,10943.943 +6278,2025-06-10T19:01:56.459293-07:00,1005.6091918945312,10.932849,10932.849 +6279,2025-06-10T19:02:07.409783-07:00,1005.6012573242188,10.95049,10950.49 +6280,2025-06-10T19:02:18.342693-07:00,1005.645751953125,10.93291,10932.91 +6281,2025-06-10T19:02:29.291448-07:00,1005.6062622070312,10.948755,10948.755 +6282,2025-06-10T19:02:40.235995-07:00,1005.61279296875,10.944547,10944.547 +6283,2025-06-10T19:02:51.180674-07:00,1005.6356201171875,10.944679,10944.679 +6284,2025-06-10T19:03:02.130201-07:00,1005.6190795898438,10.949527,10949.527 +6285,2025-06-10T19:03:13.072499-07:00,1005.6157836914062,10.942298,10942.298 +6286,2025-06-10T19:03:24.013968-07:00,1005.63427734375,10.941469,10941.469 +6287,2025-06-10T19:03:34.961463-07:00,1005.6224365234375,10.947495,10947.495 +6288,2025-06-10T19:03:45.908705-07:00,1005.6587524414062,10.947242,10947.242 +6289,2025-06-10T19:03:56.850671-07:00,1005.6439208984375,10.941966,10941.966 +6290,2025-06-10T19:04:07.796597-07:00,1005.6372680664062,10.945926,10945.926 +6291,2025-06-10T19:04:18.741594-07:00,1005.63232421875,10.944997,10944.997 +6292,2025-06-10T19:04:29.690669-07:00,1005.61083984375,10.949075,10949.075 +6293,2025-06-10T19:04:40.636502-07:00,1005.6372680664062,10.945833,10945.833 +6294,2025-06-10T19:04:51.582774-07:00,1005.6599731445312,10.946272,10946.272 +6295,2025-06-10T19:05:02.523934-07:00,1005.6190795898438,10.94116,10941.16 +6296,2025-06-10T19:05:13.467523-07:00,1005.6204833984375,10.943589,10943.589 +6297,2025-06-10T19:05:24.403746-07:00,1005.628662109375,10.936223,10936.223 +6298,2025-06-10T19:05:35.343729-07:00,1005.6303100585938,10.939983,10939.983 +6299,2025-06-10T19:05:46.277917-07:00,1005.623779296875,10.934188,10934.188 +6300,2025-06-10T19:05:57.222469-07:00,1005.6187744140625,10.944552,10944.552 +6301,2025-06-10T19:06:08.156710-07:00,1005.636962890625,10.934241,10934.241 +6302,2025-06-10T19:06:19.098445-07:00,1005.6303100585938,10.941735,10941.735 +6303,2025-06-10T19:06:30.036725-07:00,1005.5956420898438,10.93828,10938.28 +6304,2025-06-10T19:06:40.969804-07:00,1005.6105346679688,10.933079,10933.079 +6305,2025-06-10T19:06:51.910447-07:00,1005.6303100585938,10.940643,10940.643 +6306,2025-06-10T19:07:02.849864-07:00,1005.6451416015625,10.939417,10939.417 +6307,2025-06-10T19:07:13.799781-07:00,1005.6171875,10.949917,10949.917 +6308,2025-06-10T19:07:24.734446-07:00,1005.65673828125,10.934665,10934.665 +6309,2025-06-10T19:07:35.665816-07:00,1005.6649780273438,10.93137,10931.37 +6310,2025-06-10T19:07:46.618347-07:00,1005.615478515625,10.952531,10952.531 +6311,2025-06-10T19:07:57.555462-07:00,1005.636962890625,10.937115,10937.115 +6312,2025-06-10T19:08:08.501706-07:00,1005.636962890625,10.946244,10946.244 +6313,2025-06-10T19:08:15.954712-07:00,1005.6465454101562,7.453006,7453.006 +6314,2025-06-10T19:08:19.446115-07:00,1005.6187744140625,3.491403,3491.403 +6315,2025-06-10T19:08:30.386560-07:00,1005.60888671875,10.940445,10940.445 +6316,2025-06-10T19:08:41.322463-07:00,1005.623779296875,10.935903,10935.903 +6317,2025-06-10T19:08:52.262776-07:00,1005.65673828125,10.940313,10940.313 +6318,2025-06-10T19:09:03.198686-07:00,1005.6303100585938,10.93591,10935.91 +6319,2025-06-10T19:09:14.141787-07:00,1005.6451416015625,10.943101,10943.101 +6320,2025-06-10T19:09:25.088108-07:00,1005.623779296875,10.946321,10946.321 +6321,2025-06-10T19:09:36.022591-07:00,1005.67822265625,10.934483,10934.483 +6322,2025-06-10T19:09:46.962492-07:00,1005.6534423828125,10.939901,10939.901 +6323,2025-06-10T19:09:57.905610-07:00,1005.6534423828125,10.943118,10943.118 +6324,2025-06-10T19:10:08.854724-07:00,1005.59765625,10.949114,10949.114 +6325,2025-06-10T19:10:19.799453-07:00,1005.6253662109375,10.944729,10944.729 +6326,2025-06-10T19:10:30.745703-07:00,1005.6715698242188,10.94625,10946.25 +6327,2025-06-10T19:10:41.684862-07:00,1005.6699829101562,10.939159,10939.159 +6328,2025-06-10T19:10:52.640915-07:00,1005.6138305664062,10.956053,10956.053 +6329,2025-06-10T19:11:03.577463-07:00,1005.7145385742188,10.936548,10936.548 +6330,2025-06-10T19:11:14.531461-07:00,1005.636962890625,10.953998,10953.998 +6331,2025-06-10T19:11:25.472088-07:00,1005.6468505859375,10.940627,10940.627 +6332,2025-06-10T19:11:36.414709-07:00,1005.6699829101562,10.942621,10942.621 +6333,2025-06-10T19:11:47.358504-07:00,1005.6897583007812,10.943795,10943.795 +6334,2025-06-10T19:11:58.304459-07:00,1005.6534423828125,10.945955,10945.955 +6335,2025-06-10T19:12:09.250597-07:00,1005.684814453125,10.946138,10946.138 +6336,2025-06-10T19:12:20.200718-07:00,1005.684814453125,10.950121,10950.121 +6337,2025-06-10T19:12:31.147158-07:00,1005.7310180664062,10.94644,10946.44 +6338,2025-06-10T19:12:42.092463-07:00,1005.70458984375,10.945305,10945.305 +6339,2025-06-10T19:12:53.042442-07:00,1005.69140625,10.949979,10949.979 +6340,2025-06-10T19:13:03.986455-07:00,1005.7310180664062,10.944013,10944.013 +6341,2025-06-10T19:13:14.935706-07:00,1005.7095336914062,10.949251,10949.251 +6342,2025-06-10T19:13:25.875948-07:00,1005.69140625,10.940242,10940.242 +6343,2025-06-10T19:13:36.821461-07:00,1005.7095336914062,10.945513,10945.513 +6344,2025-06-10T19:13:47.761604-07:00,1005.7161865234375,10.940143,10940.143 +6345,2025-06-10T19:13:58.704870-07:00,1005.70458984375,10.943266,10943.266 +6346,2025-06-10T19:14:09.651173-07:00,1005.69140625,10.946303,10946.303 +6347,2025-06-10T19:14:20.586462-07:00,1005.6930541992188,10.935289,10935.289 +6348,2025-06-10T19:14:31.528465-07:00,1005.7161865234375,10.942003,10942.003 +6349,2025-06-10T19:14:42.465563-07:00,1005.724365234375,10.937098,10937.098 +6350,2025-06-10T19:14:53.406495-07:00,1005.7178344726562,10.940932,10940.932 +6351,2025-06-10T19:15:04.342398-07:00,1005.6994018554688,10.935903,10935.903 +6352,2025-06-10T19:15:15.282541-07:00,1005.7142333984375,10.940143,10940.143 +6353,2025-06-10T19:15:26.214461-07:00,1005.7455444335938,10.93192,10931.92 +6354,2025-06-10T19:15:37.155677-07:00,1005.7273559570312,10.941216,10941.216 +6355,2025-06-10T19:15:48.105491-07:00,1005.700927734375,10.949814,10949.814 +6356,2025-06-10T19:15:59.052501-07:00,1005.7290649414062,10.94701,10947.01 +6357,2025-06-10T19:16:09.991828-07:00,1005.7142333984375,10.939327,10939.327 +6358,2025-06-10T19:16:20.936920-07:00,1005.7304077148438,10.945092,10945.092 +6359,2025-06-10T19:16:31.879462-07:00,1005.7059326171875,10.942542,10942.542 +6360,2025-06-10T19:16:42.833601-07:00,1005.6943969726562,10.954139,10954.139 +6361,2025-06-10T19:16:53.778457-07:00,1005.7191162109375,10.944856,10944.856 +6362,2025-06-10T19:17:04.724463-07:00,1005.7587280273438,10.946006,10946.006 +6363,2025-06-10T19:17:15.672060-07:00,1005.7821655273438,10.947597,10947.597 +6364,2025-06-10T19:17:26.616658-07:00,1005.7455444335938,10.944598,10944.598 +6365,2025-06-10T19:17:37.557440-07:00,1005.735595703125,10.940782,10940.782 +6366,2025-06-10T19:17:48.507592-07:00,1005.724365234375,10.950152,10950.152 +6367,2025-06-10T19:17:59.454056-07:00,1005.7112426757812,10.946464,10946.464 +6368,2025-06-10T19:18:10.399131-07:00,1005.7587280273438,10.945075,10945.075 +6369,2025-06-10T19:18:21.342434-07:00,1005.7471923828125,10.943303,10943.303 +6370,2025-06-10T19:18:32.298456-07:00,1005.786865234375,10.956022,10956.022 +6371,2025-06-10T19:18:43.243474-07:00,1005.7388916015625,10.945018,10945.018 +6372,2025-06-10T19:18:54.188453-07:00,1005.7970581054688,10.944979,10944.979 +6373,2025-06-10T19:19:05.126489-07:00,1005.8248291015625,10.938036,10938.036 +6374,2025-06-10T19:19:16.067455-07:00,1005.8049926757812,10.940966,10940.966 +6375,2025-06-10T19:19:27.011145-07:00,1005.78515625,10.94369,10943.69 +6376,2025-06-10T19:19:37.965047-07:00,1005.7640380859375,10.953902,10953.902 +6377,2025-06-10T19:19:48.897572-07:00,1005.8102416992188,10.932525,10932.525 +6378,2025-06-10T19:19:59.835448-07:00,1005.767333984375,10.937876,10937.876 +6379,2025-06-10T19:20:10.784511-07:00,1005.7871704101562,10.949063,10949.063 +6380,2025-06-10T19:20:21.721453-07:00,1005.8069458007812,10.936942,10936.942 +6381,2025-06-10T19:20:32.658451-07:00,1005.84326171875,10.936998,10936.998 +6382,2025-06-10T19:20:43.610451-07:00,1005.8118896484375,10.952,10952.0 +6383,2025-06-10T19:20:54.543493-07:00,1005.8135986328125,10.933042,10933.042 +6384,2025-06-10T19:21:05.485182-07:00,1005.8052978515625,10.941689,10941.689 +6385,2025-06-10T19:21:16.431459-07:00,1005.790771484375,10.946277,10946.277 +6386,2025-06-10T19:21:27.369801-07:00,1005.810546875,10.938342,10938.342 +6387,2025-06-10T19:21:38.309678-07:00,1005.8548583984375,10.939877,10939.877 +6388,2025-06-10T19:21:49.250538-07:00,1005.8501586914062,10.94086,10940.86 +6389,2025-06-10T19:22:00.202916-07:00,1005.8382568359375,10.952378,10952.378 +6390,2025-06-10T19:22:11.145974-07:00,1005.8501586914062,10.943058,10943.058 +6391,2025-06-10T19:22:22.091453-07:00,1005.8534545898438,10.945479,10945.479 +6392,2025-06-10T19:22:33.032711-07:00,1005.860107421875,10.941258,10941.258 +6393,2025-06-10T19:22:43.973727-07:00,1005.8534545898438,10.941016,10941.016 +6394,2025-06-10T19:22:54.927760-07:00,1005.84033203125,10.954033,10954.033 +6395,2025-06-10T19:23:05.868628-07:00,1005.8389282226562,10.940868,10940.868 +6396,2025-06-10T19:23:16.808812-07:00,1005.860107421875,10.940184,10940.184 +6397,2025-06-10T19:23:27.765466-07:00,1005.860107421875,10.956654,10956.654 +6398,2025-06-10T19:23:38.706254-07:00,1005.881591796875,10.940788,10940.788 +6399,2025-06-10T19:23:49.652723-07:00,1005.8652954101562,10.946469,10946.469 +6400,2025-06-10T19:24:00.595462-07:00,1005.8421630859375,10.942739,10942.739 +6401,2025-06-10T19:24:11.536678-07:00,1005.8587646484375,10.941216,10941.216 +6402,2025-06-10T19:24:22.493450-07:00,1005.8798217773438,10.956772,10956.772 +6403,2025-06-10T19:24:33.434800-07:00,1005.8353271484375,10.94135,10941.35 +6404,2025-06-10T19:24:44.386487-07:00,1005.881591796875,10.951687,10951.687 +6405,2025-06-10T19:24:55.332432-07:00,1005.9013061523438,10.945945,10945.945 +6406,2025-06-10T19:25:06.276721-07:00,1005.8435668945312,10.944289,10944.289 +6407,2025-06-10T19:25:17.221898-07:00,1005.884521484375,10.945177,10945.177 +6408,2025-06-10T19:25:28.166927-07:00,1005.8333740234375,10.945029,10945.029 +6409,2025-06-10T19:25:39.124720-07:00,1005.93408203125,10.957793,10957.793 +6410,2025-06-10T19:25:50.066458-07:00,1005.943603515625,10.941738,10941.738 +6411,2025-06-10T19:26:01.012078-07:00,1005.8696899414062,10.94562,10945.62 +6412,2025-06-10T19:26:11.961456-07:00,1005.8973999023438,10.949378,10949.378 +6413,2025-06-10T19:26:22.916440-07:00,1005.8990478515625,10.954984,10954.984 +6414,2025-06-10T19:26:33.859044-07:00,1005.8710327148438,10.942604,10942.604 +6415,2025-06-10T19:26:44.809982-07:00,1005.8925170898438,10.950938,10950.938 +6416,2025-06-10T19:26:55.759446-07:00,1005.8660888671875,10.949464,10949.464 +6417,2025-06-10T19:27:06.712463-07:00,1005.876220703125,10.953017,10953.017 +6418,2025-06-10T19:27:17.660137-07:00,1005.9171752929688,10.947674,10947.674 +6419,2025-06-10T19:27:28.604792-07:00,1005.8696899414062,10.944655,10944.655 +6420,2025-06-10T19:27:39.555659-07:00,1005.8462524414062,10.950867,10950.867 +6421,2025-06-10T19:27:50.494648-07:00,1005.8908081054688,10.938989,10938.989 +6422,2025-06-10T19:28:01.450630-07:00,1005.923828125,10.955982,10955.982 +6423,2025-06-10T19:28:02.533012-07:00,1005.9142456054688,1.082382,1082.382 +6424,2025-06-10T19:28:12.394695-07:00,1005.953857421875,9.861683,9861.683 +6425,2025-06-10T19:28:23.341634-07:00,1005.9224853515625,10.946939,10946.939 +6426,2025-06-10T19:28:34.285604-07:00,1005.9076538085938,10.94397,10943.97 +6427,2025-06-10T19:28:45.230487-07:00,1005.9554443359375,10.944883,10944.883 +6428,2025-06-10T19:28:56.173715-07:00,1005.932373046875,10.943228,10943.228 +6429,2025-06-10T19:29:07.109536-07:00,1005.932373046875,10.935821,10935.821 +6430,2025-06-10T19:29:18.047449-07:00,1005.953857421875,10.937913,10937.913 +6431,2025-06-10T19:29:29.045580-07:00,1005.93408203125,10.998131,10998.131 +6432,2025-06-10T19:29:39.985806-07:00,1005.9489135742188,10.940226,10940.226 +6433,2025-06-10T19:29:50.928049-07:00,1005.9918212890625,10.942243,10942.243 +6434,2025-06-10T19:30:01.868484-07:00,1005.93408203125,10.940435,10940.435 +6435,2025-06-10T19:30:12.819534-07:00,1005.9241333007812,10.95105,10951.05 +6436,2025-06-10T19:30:23.770596-07:00,1005.94921875,10.951062,10951.062 +6437,2025-06-10T19:30:34.717847-07:00,1005.958740234375,10.947251,10947.251 +6438,2025-06-10T19:30:45.668099-07:00,1005.96240234375,10.950252,10950.252 +6439,2025-06-10T19:30:56.607982-07:00,1005.9522094726562,10.939883,10939.883 +6440,2025-06-10T19:31:07.557554-07:00,1005.9690551757812,10.949572,10949.572 +6441,2025-06-10T19:31:18.503336-07:00,1005.96240234375,10.945782,10945.782 +6442,2025-06-10T19:31:29.444069-07:00,1005.9756469726562,10.940733,10940.733 +6443,2025-06-10T19:31:40.396486-07:00,1005.9572143554688,10.952417,10952.417 +6444,2025-06-10T19:31:51.330799-07:00,1005.9607543945312,10.934313,10934.313 +6445,2025-06-10T19:32:02.276034-07:00,1005.9505615234375,10.945235,10945.235 +6446,2025-06-10T19:32:13.222598-07:00,1005.9888305664062,10.946564,10946.564 +6447,2025-06-10T19:32:24.171561-07:00,1006.036376953125,10.948963,10948.963 +6448,2025-06-10T19:32:35.108511-07:00,1005.9439086914062,10.93695,10936.95 +6449,2025-06-10T19:32:46.057336-07:00,1006.0033569335938,10.948825,10948.825 +6450,2025-06-10T19:32:56.999658-07:00,1005.955810546875,10.942322,10942.322 +6451,2025-06-10T19:33:07.945730-07:00,1005.96240234375,10.946072,10946.072 +6452,2025-06-10T19:33:18.890342-07:00,1006.0133056640625,10.944612,10944.612 +6453,2025-06-10T19:33:29.825798-07:00,1006.0152587890625,10.935456,10935.456 +6454,2025-06-10T19:33:40.774820-07:00,1005.973876953125,10.949022,10949.022 +6455,2025-06-10T19:33:51.718319-07:00,1005.9590454101562,10.943499,10943.499 +6456,2025-06-10T19:34:02.652302-07:00,1005.9888305664062,10.933983,10933.983 +6457,2025-06-10T19:34:13.600614-07:00,1005.9907836914062,10.948312,10948.312 +6458,2025-06-10T19:34:24.539486-07:00,1005.973876953125,10.938872,10938.872 +6459,2025-06-10T19:34:35.485415-07:00,1006.0201416015625,10.945929,10945.929 +6460,2025-06-10T19:34:46.433552-07:00,1005.9445190429688,10.948137,10948.137 +6461,2025-06-10T19:34:57.366568-07:00,1005.9673461914062,10.933016,10933.016 +6462,2025-06-10T19:35:08.311511-07:00,1005.998779296875,10.944943,10944.943 +6463,2025-06-10T19:35:19.251342-07:00,1005.9967041015625,10.939831,10939.831 +6464,2025-06-10T19:35:30.191044-07:00,1006.0020141601562,10.939702,10939.702 +6465,2025-06-10T19:35:41.137487-07:00,1006.0218505859375,10.946443,10946.443 +6466,2025-06-10T19:35:52.076616-07:00,1006.0548706054688,10.939129,10939.129 +6467,2025-06-10T19:36:03.022803-07:00,1006.0614013671875,10.946187,10946.187 +6468,2025-06-10T19:36:13.973319-07:00,1006.0069580078125,10.950516,10950.516 +6469,2025-06-10T19:36:24.915334-07:00,1006.010009765625,10.942015,10942.015 +6470,2025-06-10T19:36:35.860482-07:00,1006.036376953125,10.945148,10945.148 +6471,2025-06-10T19:36:46.807596-07:00,1006.0218505859375,10.947114,10947.114 +6472,2025-06-10T19:36:57.761860-07:00,1006.0907592773438,10.954264,10954.264 +6473,2025-06-10T19:37:08.703631-07:00,1006.02978515625,10.941771,10941.771 +6474,2025-06-10T19:37:19.653370-07:00,1006.05615234375,10.949739,10949.739 +6475,2025-06-10T19:37:30.589418-07:00,1006.0020141601562,10.936048,10936.048 +6476,2025-06-10T19:37:41.533750-07:00,1006.105712890625,10.944332,10944.332 +6477,2025-06-10T19:37:52.484549-07:00,1006.0941162109375,10.950799,10950.799 +6478,2025-06-10T19:38:03.418566-07:00,1006.0578002929688,10.934017,10934.017 +6479,2025-06-10T19:38:14.365307-07:00,1006.05615234375,10.946741,10946.741 +6480,2025-06-10T19:38:25.311324-07:00,1006.084228515625,10.946017,10946.017 +6481,2025-06-10T19:38:36.249362-07:00,1006.0628051757812,10.938038,10938.038 +6482,2025-06-10T19:38:47.197327-07:00,1006.0859375,10.947965,10947.965 +6483,2025-06-10T19:38:58.136594-07:00,1006.1275024414062,10.939267,10939.267 +6484,2025-06-10T19:39:09.086597-07:00,1006.07958984375,10.950003,10950.003 +6485,2025-06-10T19:39:20.021321-07:00,1006.107666015625,10.934724,10934.724 +6486,2025-06-10T19:39:30.961802-07:00,1006.0892333984375,10.940481,10940.481 +6487,2025-06-10T19:39:41.901661-07:00,1006.0825805664062,10.939859,10939.859 +6488,2025-06-10T19:39:52.840558-07:00,1006.1060180664062,10.938897,10938.897 +6489,2025-06-10T19:40:03.782646-07:00,1006.0878295898438,10.942088,10942.088 +6490,2025-06-10T19:40:14.715593-07:00,1006.0382690429688,10.932947,10932.947 +6491,2025-06-10T19:40:25.658334-07:00,1006.064697265625,10.942741,10942.741 +6492,2025-06-10T19:40:36.602328-07:00,1006.0614013671875,10.943994,10943.994 +6493,2025-06-10T19:40:47.550584-07:00,1006.05322265625,10.948256,10948.256 +6494,2025-06-10T19:40:58.493399-07:00,1006.0568237304688,10.942815,10942.815 +6495,2025-06-10T19:41:09.433334-07:00,1006.05810546875,10.939935,10939.935 +6496,2025-06-10T19:41:20.384329-07:00,1006.03173828125,10.950995,10950.995 +6497,2025-06-10T19:41:31.337548-07:00,1006.0382690429688,10.953219,10953.219 +6498,2025-06-10T19:41:42.280713-07:00,1006.0172119140625,10.943165,10943.165 +6499,2025-06-10T19:41:53.221075-07:00,1006.0382690429688,10.940362,10940.362 +6500,2025-06-10T19:42:04.172576-07:00,1006.0303955078125,10.951501,10951.501 +6501,2025-06-10T19:42:15.122492-07:00,1006.0382690429688,10.949916,10949.916 +6502,2025-06-10T19:42:26.062363-07:00,1006.0303955078125,10.939871,10939.871 +6503,2025-06-10T19:42:37.009583-07:00,1006.0270385742188,10.94722,10947.22 +6504,2025-06-10T19:42:47.965931-07:00,1006.0237426757812,10.956348,10956.348 +6505,2025-06-10T19:42:58.913384-07:00,1006.022216796875,10.947453,10947.453 +6506,2025-06-10T19:43:09.851544-07:00,1006.0072631835938,10.93816,10938.16 +6507,2025-06-10T19:43:20.790992-07:00,1006.03369140625,10.939448,10939.448 +6508,2025-06-10T19:43:31.739635-07:00,1006.0237426757812,10.948643,10948.643 +6509,2025-06-10T19:43:42.685326-07:00,1005.9891357421875,10.945691,10945.691 +6510,2025-06-10T19:43:53.628334-07:00,1006.0765380859375,10.943008,10943.008 +6511,2025-06-10T19:44:04.580322-07:00,1006.0172119140625,10.951988,10951.988 +6512,2025-06-10T19:44:15.532627-07:00,1006.046875,10.952305,10952.305 +6513,2025-06-10T19:44:26.472549-07:00,1006.048583984375,10.939922,10939.922 +6514,2025-06-10T19:44:37.428093-07:00,1006.08984375,10.955544,10955.544 +6515,2025-06-10T19:44:48.373330-07:00,1006.0303955078125,10.945237,10945.237 +6516,2025-06-10T19:44:59.318576-07:00,1006.0287475585938,10.945246,10945.246 +6517,2025-06-10T19:45:10.259711-07:00,1006.040283203125,10.941135,10941.135 +6518,2025-06-10T19:45:21.215804-07:00,1006.08154296875,10.956093,10956.093 +6519,2025-06-10T19:45:32.163158-07:00,1006.0686645507812,10.947354,10947.354 +6520,2025-06-10T19:45:43.108319-07:00,1006.0353393554688,10.945161,10945.161 +6521,2025-06-10T19:45:54.053457-07:00,1006.0587768554688,10.945138,10945.138 +6522,2025-06-10T19:46:04.998334-07:00,1006.0719604492188,10.944877,10944.877 +6523,2025-06-10T19:46:15.950458-07:00,1006.0323486328125,10.952124,10952.124 +6524,2025-06-10T19:46:26.891618-07:00,1006.0554809570312,10.94116,10941.16 +6525,2025-06-10T19:46:37.838318-07:00,1006.07861328125,10.9467,10946.7 +6526,2025-06-10T19:46:48.783324-07:00,1006.0947875976562,10.945006,10945.006 +6527,2025-06-10T19:46:59.726787-07:00,1006.0667114257812,10.943463,10943.463 +6528,2025-06-10T19:47:10.683687-07:00,1006.0917358398438,10.9569,10956.9 +6529,2025-06-10T19:47:21.618318-07:00,1006.111572265625,10.934631,10934.631 +6530,2025-06-10T19:47:32.573336-07:00,1006.08349609375,10.955018,10955.018 +6531,2025-06-10T19:47:43.510592-07:00,1006.0851440429688,10.937256,10937.256 +6532,2025-06-10T19:47:54.464591-07:00,1006.111572265625,10.953999,10953.999 +6533,2025-06-10T19:48:05.406717-07:00,1006.1062622070312,10.942126,10942.126 +6534,2025-06-10T19:48:16.364321-07:00,1006.1211547851562,10.957604,10957.604 +6535,2025-06-10T19:48:27.304157-07:00,1006.098388671875,10.939836,10939.836 +6536,2025-06-10T19:48:38.258364-07:00,1006.10498046875,10.954207,10954.207 +6537,2025-06-10T19:48:49.202455-07:00,1006.114501953125,10.944091,10944.091 +6538,2025-06-10T19:49:00.141755-07:00,1006.114501953125,10.9393,10939.3 +6539,2025-06-10T19:49:11.096959-07:00,1006.109619140625,10.955204,10955.204 +6540,2025-06-10T19:49:22.031323-07:00,1006.1174926757812,10.934364,10934.364 +6541,2025-06-10T19:49:32.988323-07:00,1006.1324462890625,10.957,10957.0 +6542,2025-06-10T19:49:43.929338-07:00,1006.1174926757812,10.941015,10941.015 +6543,2025-06-10T19:49:54.876107-07:00,1006.08984375,10.946769,10946.769 +6544,2025-06-10T19:50:05.819617-07:00,1006.10107421875,10.94351,10943.51 +6545,2025-06-10T19:50:16.765321-07:00,1006.1174926757812,10.945704,10945.704 +6546,2025-06-10T19:50:27.716995-07:00,1006.1141967773438,10.951674,10951.674 +6547,2025-06-10T19:50:38.668596-07:00,1006.1060180664062,10.951601,10951.601 +6548,2025-06-10T19:50:49.616800-07:00,1006.1275024414062,10.948204,10948.204 +6549,2025-06-10T19:51:00.567194-07:00,1006.0862426757812,10.950394,10950.394 +6550,2025-06-10T19:51:11.515332-07:00,1006.099365234375,10.948138,10948.138 +6551,2025-06-10T19:51:22.462315-07:00,1006.075927734375,10.946983,10946.983 +6552,2025-06-10T19:51:33.418330-07:00,1006.0812377929688,10.956015,10956.015 +6553,2025-06-10T19:51:44.366336-07:00,1006.07958984375,10.948006,10948.006 +6554,2025-06-10T19:51:55.317330-07:00,1006.10107421875,10.950994,10950.994 +6555,2025-06-10T19:52:06.256842-07:00,1006.094482421875,10.939512,10939.512 +6556,2025-06-10T19:52:17.208507-07:00,1006.0892333984375,10.951665,10951.665 +6557,2025-06-10T19:52:28.147603-07:00,1006.0862426757812,10.939096,10939.096 +6558,2025-06-10T19:52:39.104330-07:00,1006.1040649414062,10.956727,10956.727 +6559,2025-06-10T19:52:50.051719-07:00,1006.1156005859375,10.947389,10947.389 +6560,2025-06-10T19:53:00.996866-07:00,1006.1060180664062,10.945147,10945.147 +6561,2025-06-10T19:53:11.945323-07:00,1006.1090087890625,10.948457,10948.457 +6562,2025-06-10T19:53:22.880317-07:00,1006.07958984375,10.934994,10934.994 +6563,2025-06-10T19:53:33.837323-07:00,1006.0680541992188,10.957006,10957.006 +6564,2025-06-10T19:53:44.782478-07:00,1006.1126708984375,10.945155,10945.155 +6565,2025-06-10T19:53:55.731658-07:00,1006.0957641601562,10.94918,10949.18 +6566,2025-06-10T19:54:06.677543-07:00,1006.064697265625,10.945885,10945.885 +6567,2025-06-10T19:54:17.621588-07:00,1006.075927734375,10.944045,10944.045 +6568,2025-06-10T19:54:28.567383-07:00,1006.07470703125,10.945795,10945.795 +6569,2025-06-10T19:54:39.518493-07:00,1006.0878295898438,10.95111,10951.11 +6570,2025-06-10T19:54:50.461883-07:00,1006.1192016601562,10.94339,10943.39 +6571,2025-06-10T19:55:01.413107-07:00,1006.10107421875,10.951224,10951.224 +6572,2025-06-10T19:55:12.357336-07:00,1006.0892333984375,10.944229,10944.229 +6573,2025-06-10T19:55:23.301315-07:00,1006.07958984375,10.943979,10943.979 +6574,2025-06-10T19:55:34.258336-07:00,1006.1090087890625,10.957021,10957.021 +6575,2025-06-10T19:55:45.202563-07:00,1006.064697265625,10.944227,10944.227 +6576,2025-06-10T19:55:56.157619-07:00,1006.07470703125,10.955056,10955.056 +6577,2025-06-10T19:56:07.099715-07:00,1006.0680541992188,10.942096,10942.096 +6578,2025-06-10T19:56:18.046756-07:00,1006.0862426757812,10.947041,10947.041 +6579,2025-06-10T19:56:28.991548-07:00,1006.0928344726562,10.944792,10944.792 +6580,2025-06-10T19:56:39.937857-07:00,1006.1192016601562,10.946309,10946.309 +6581,2025-06-10T19:56:50.890780-07:00,1006.1060180664062,10.952923,10952.923 +6582,2025-06-10T19:57:01.834316-07:00,1006.1109619140625,10.943536,10943.536 +6583,2025-06-10T19:57:12.773538-07:00,1006.1257934570312,10.939222,10939.222 +6584,2025-06-10T19:57:23.719758-07:00,1006.1060180664062,10.94622,10946.22 +6585,2025-06-10T19:57:34.671624-07:00,1006.1126708984375,10.951866,10951.866 +6586,2025-06-10T19:57:45.623470-07:00,1006.1192016601562,10.951846,10951.846 +6587,2025-06-10T19:57:56.561338-07:00,1006.135986328125,10.937868,10937.868 +6588,2025-06-10T19:58:07.520320-07:00,1006.1211547851562,10.958982,10958.982 +6589,2025-06-10T19:58:18.465626-07:00,1006.1588134765625,10.945306,10945.306 +6590,2025-06-10T19:58:29.422338-07:00,1006.1542358398438,10.956712,10956.712 +6591,2025-06-10T19:58:40.362715-07:00,1006.1505737304688,10.940377,10940.377 +6592,2025-06-10T19:58:51.307712-07:00,1006.1954956054688,10.944997,10944.997 +6593,2025-06-10T19:59:02.250580-07:00,1006.1525268554688,10.942868,10942.868 +6594,2025-06-10T19:59:13.205571-07:00,1006.1871948242188,10.954991,10954.991 +6595,2025-06-10T19:59:24.144376-07:00,1006.2218627929688,10.938805,10938.805 +6596,2025-06-10T19:59:35.091646-07:00,1006.226806640625,10.94727,10947.27 +6597,2025-06-10T19:59:46.036154-07:00,1006.213623046875,10.944508,10944.508 +6598,2025-06-10T19:59:56.979639-07:00,1006.2515869140625,10.943485,10943.485 +6599,2025-06-10T20:00:07.925544-07:00,1006.2449340820312,10.945905,10945.905 +6600,2025-06-10T20:00:18.866598-07:00,1006.215576171875,10.941054,10941.054 +6601,2025-06-10T20:00:29.807334-07:00,1006.2352905273438,10.940736,10940.736 +6602,2025-06-10T20:00:40.752313-07:00,1006.2402954101562,10.944979,10944.979 +6603,2025-06-10T20:00:51.694334-07:00,1006.283203125,10.942021,10942.021 +6604,2025-06-10T20:01:02.638954-07:00,1006.2587280273438,10.94462,10944.62 +6605,2025-06-10T20:01:13.578322-07:00,1006.252197265625,10.939368,10939.368 +6606,2025-06-10T20:01:24.523343-07:00,1006.25341796875,10.945021,10945.021 +6607,2025-06-10T20:01:35.464958-07:00,1006.2835083007812,10.941615,10941.615 +6608,2025-06-10T20:01:46.402586-07:00,1006.2620239257812,10.937628,10937.628 +6609,2025-06-10T20:01:57.345545-07:00,1006.2670288085938,10.942959,10942.959 +6610,2025-06-10T20:02:08.289327-07:00,1006.29345703125,10.943782,10943.782 +6611,2025-06-10T20:02:19.230502-07:00,1006.3065795898438,10.941175,10941.175 +6612,2025-06-10T20:02:30.169479-07:00,1006.2689208984375,10.938977,10938.977 +6613,2025-06-10T20:02:41.108700-07:00,1006.2801513671875,10.939221,10939.221 +6614,2025-06-10T20:02:52.053003-07:00,1006.2854614257812,10.944303,10944.303 +6615,2025-06-10T20:03:02.999433-07:00,1006.29345703125,10.94643,10946.43 +6616,2025-06-10T20:03:13.946336-07:00,1006.3250732421875,10.946903,10946.903 +6617,2025-06-10T20:03:24.891334-07:00,1006.3365478515625,10.944998,10944.998 +6618,2025-06-10T20:03:35.837064-07:00,1006.3300170898438,10.94573,10945.73 +6619,2025-06-10T20:03:46.778323-07:00,1006.3071899414062,10.941259,10941.259 +6620,2025-06-10T20:03:57.717340-07:00,1006.2887573242188,10.939017,10939.017 +6621,2025-06-10T20:04:08.657885-07:00,1006.2742309570312,10.940545,10940.545 +6622,2025-06-10T20:04:19.602815-07:00,1006.2940673828125,10.94493,10944.93 +6623,2025-06-10T20:04:30.551592-07:00,1006.3365478515625,10.948777,10948.777 +6624,2025-06-10T20:04:41.491326-07:00,1006.3101806640625,10.939734,10939.734 +6625,2025-06-10T20:04:52.441498-07:00,1006.2887573242188,10.950172,10950.172 +6626,2025-06-10T20:05:03.380350-07:00,1006.2988891601562,10.938852,10938.852 +6627,2025-06-10T20:05:14.332143-07:00,1006.3184204101562,10.951793,10951.793 +6628,2025-06-10T20:05:25.271631-07:00,1006.2970581054688,10.939488,10939.488 +6629,2025-06-10T20:05:36.216814-07:00,1006.2887573242188,10.945183,10945.183 +6630,2025-06-10T20:05:47.162865-07:00,1006.3071899414062,10.946051,10946.051 +6631,2025-06-10T20:05:58.101334-07:00,1006.3055419921875,10.938469,10938.469 +6632,2025-06-10T20:06:09.047334-07:00,1006.34814453125,10.946,10946.0 +6633,2025-06-10T20:06:20.001426-07:00,1006.3250732421875,10.954092,10954.092 +6634,2025-06-10T20:06:30.938757-07:00,1006.3336181640625,10.937331,10937.331 +6635,2025-06-10T20:06:41.875446-07:00,1006.3217163085938,10.936689,10936.689 +6636,2025-06-10T20:06:52.824365-07:00,1006.2923583984375,10.948919,10948.919 +6637,2025-06-10T20:07:03.771658-07:00,1006.2659301757812,10.947293,10947.293 +6638,2025-06-10T20:07:14.716779-07:00,1006.3005981445312,10.945121,10945.121 +6639,2025-06-10T20:07:25.661323-07:00,1006.3204956054688,10.944544,10944.544 +6640,2025-06-10T20:07:36.596323-07:00,1006.3055419921875,10.935,10935.0 +6641,2025-06-10T20:07:47.548336-07:00,1006.2709350585938,10.952013,10952.013 +6642,2025-06-10T20:07:58.502687-07:00,1006.2887573242188,10.954351,10954.351 +6643,2025-06-10T20:08:09.444787-07:00,1006.2923583984375,10.9421,10942.1 +6644,2025-06-10T20:08:20.391590-07:00,1006.2893676757812,10.946803,10946.803 +6645,2025-06-10T20:08:31.335170-07:00,1006.3217163085938,10.94358,10943.58 +6646,2025-06-10T20:08:42.273604-07:00,1006.2828369140625,10.938434,10938.434 +6647,2025-06-10T20:08:53.214313-07:00,1006.249755859375,10.940709,10940.709 +6648,2025-06-10T20:09:04.159594-07:00,1006.3104858398438,10.945281,10945.281 +6649,2025-06-10T20:09:15.101445-07:00,1006.26953125,10.941851,10941.851 +6650,2025-06-10T20:09:26.042082-07:00,1006.26953125,10.940637,10940.637 +6651,2025-06-10T20:09:36.975336-07:00,1006.2678833007812,10.933254,10933.254 +6652,2025-06-10T20:09:47.922739-07:00,1006.2959594726562,10.947403,10947.403 +6653,2025-06-10T20:09:58.861559-07:00,1006.3273315429688,10.93882,10938.82 +6654,2025-06-10T20:10:09.809336-07:00,1006.3092041015625,10.947777,10947.777 +6655,2025-06-10T20:10:20.754392-07:00,1006.3421630859375,10.945056,10945.056 +6656,2025-06-10T20:10:31.692708-07:00,1006.30419921875,10.938316,10938.316 +6657,2025-06-10T20:10:42.638634-07:00,1006.3389282226562,10.945926,10945.926 +6658,2025-06-10T20:10:53.583337-07:00,1006.3256225585938,10.944703,10944.703 +6659,2025-06-10T20:11:04.525375-07:00,1006.368896484375,10.942038,10942.038 +6660,2025-06-10T20:11:15.476965-07:00,1006.368896484375,10.95159,10951.59 +6661,2025-06-10T20:11:26.415303-07:00,1006.3820190429688,10.938338,10938.338 +6662,2025-06-10T20:11:37.354845-07:00,1006.3820190429688,10.939542,10939.542 +6663,2025-06-10T20:11:48.300346-07:00,1006.3936157226562,10.945501,10945.501 +6664,2025-06-10T20:11:59.237380-07:00,1006.32763671875,10.937034,10937.034 +6665,2025-06-10T20:12:10.170587-07:00,1006.400146484375,10.933207,10933.207 +6666,2025-06-10T20:12:21.117740-07:00,1006.347412109375,10.947153,10947.153 +6667,2025-06-10T20:12:32.053319-07:00,1006.3523559570312,10.935579,10935.579 +6668,2025-06-10T20:12:42.999731-07:00,1006.3707885742188,10.946412,10946.412 +6669,2025-06-10T20:12:53.944329-07:00,1006.3870239257812,10.944598,10944.598 +6670,2025-06-10T20:13:04.892628-07:00,1006.3523559570312,10.948299,10948.299 +6671,2025-06-10T20:13:15.831360-07:00,1006.3919677734375,10.938732,10938.732 +6672,2025-06-10T20:13:26.770334-07:00,1006.3721923828125,10.938974,10938.974 +6673,2025-06-10T20:13:37.711694-07:00,1006.360595703125,10.94136,10941.36 +6674,2025-06-10T20:13:48.651581-07:00,1006.3193969726562,10.939887,10939.887 +6675,2025-06-10T20:13:59.594336-07:00,1006.2849731445312,10.942755,10942.755 +6676,2025-06-10T20:14:10.542313-07:00,1006.3179931640625,10.947977,10947.977 +6677,2025-06-10T20:14:21.482644-07:00,1006.312744140625,10.940331,10940.331 +6678,2025-06-10T20:14:32.419366-07:00,1006.312744140625,10.936722,10936.722 +6679,2025-06-10T20:14:43.369486-07:00,1006.2701416015625,10.95012,10950.12 +6680,2025-06-10T20:14:54.308757-07:00,1006.2288818359375,10.939271,10939.271 +6681,2025-06-10T20:15:05.251994-07:00,1006.2569580078125,10.943237,10943.237 +6682,2025-06-10T20:15:16.191484-07:00,1006.2665405273438,10.93949,10939.49 +6683,2025-06-10T20:15:27.141479-07:00,1006.2503051757812,10.949995,10949.995 +6684,2025-06-10T20:15:38.089325-07:00,1006.2420043945312,10.947846,10947.846 +6685,2025-06-10T20:15:49.036629-07:00,1006.223876953125,10.947304,10947.304 +6686,2025-06-10T20:15:59.978577-07:00,1006.2354736328125,10.941948,10941.948 +6687,2025-06-10T20:16:10.924314-07:00,1006.2553100585938,10.945737,10945.737 +6688,2025-06-10T20:16:21.867744-07:00,1006.1959228515625,10.94343,10943.43 +6689,2025-06-10T20:16:32.820517-07:00,1006.1796875,10.952773,10952.773 +6690,2025-06-10T20:16:43.753378-07:00,1006.21435546875,10.932861,10932.861 +6691,2025-06-10T20:16:54.706366-07:00,1006.2420043945312,10.952988,10952.988 +6692,2025-06-10T20:17:05.643338-07:00,1006.2407836914062,10.936972,10936.972 +6693,2025-06-10T20:17:16.591576-07:00,1006.220947265625,10.948238,10948.238 +6694,2025-06-10T20:17:27.525334-07:00,1006.2390747070312,10.933758,10933.758 +6695,2025-06-10T20:17:38.476472-07:00,1006.2324829101562,10.951138,10951.138 +6696,2025-06-10T20:17:49.415772-07:00,1006.197509765625,10.9393,10939.3 +6697,2025-06-10T20:18:00.363892-07:00,1006.2173461914062,10.94812,10948.12 +6698,2025-06-10T20:18:11.307365-07:00,1006.212646484375,10.943473,10943.473 +6699,2025-06-10T20:18:22.248328-07:00,1006.2259521484375,10.940963,10940.963 +6700,2025-06-10T20:18:33.193620-07:00,1006.2061157226562,10.945292,10945.292 +6701,2025-06-10T20:18:44.131378-07:00,1006.184326171875,10.937758,10937.758 +6702,2025-06-10T20:18:55.073494-07:00,1006.2040405273438,10.942116,10942.116 +6703,2025-06-10T20:19:06.007918-07:00,1006.23046875,10.934424,10934.424 +6704,2025-06-10T20:19:16.947477-07:00,1006.2437744140625,10.939559,10939.559 +6705,2025-06-10T20:19:27.881336-07:00,1006.1763916015625,10.933859,10933.859 +6706,2025-06-10T20:19:38.823015-07:00,1006.2028198242188,10.941679,10941.679 +6707,2025-06-10T20:19:49.766375-07:00,1006.2437744140625,10.94336,10943.36 +6708,2025-06-10T20:20:00.710454-07:00,1006.23046875,10.944079,10944.079 +6709,2025-06-10T20:20:11.648832-07:00,1006.2437744140625,10.938378,10938.378 +6710,2025-06-10T20:20:22.599271-07:00,1006.2503051757812,10.950439,10950.439 +6711,2025-06-10T20:20:33.537339-07:00,1006.2899169921875,10.938068,10938.068 +6712,2025-06-10T20:20:44.477487-07:00,1006.2634887695312,10.940148,10940.148 +6713,2025-06-10T20:20:55.424617-07:00,1006.2803344726562,10.94713,10947.13 +6714,2025-06-10T20:21:06.358446-07:00,1006.286865234375,10.933829,10933.829 +6715,2025-06-10T20:21:17.300421-07:00,1006.3067016601562,10.941975,10941.975 +6716,2025-06-10T20:21:28.234336-07:00,1006.2589111328125,10.933915,10933.915 +6717,2025-06-10T20:21:39.177474-07:00,1006.3016967773438,10.943138,10943.138 +6718,2025-06-10T20:21:50.113586-07:00,1006.2853393554688,10.936112,10936.112 +6719,2025-06-10T20:22:01.064614-07:00,1006.2770385742188,10.951028,10951.028 +6720,2025-06-10T20:22:12.001373-07:00,1006.3132934570312,10.936759,10936.759 +6721,2025-06-10T20:22:22.948317-07:00,1006.3116455078125,10.946944,10946.944 +6722,2025-06-10T20:22:33.884069-07:00,1006.3743896484375,10.935752,10935.752 +6723,2025-06-10T20:22:44.818336-07:00,1006.3859252929688,10.934267,10934.267 +6724,2025-06-10T20:22:55.762375-07:00,1006.3826293945312,10.944039,10944.039 +6725,2025-06-10T20:23:06.700719-07:00,1006.3942260742188,10.938344,10938.344 +6726,2025-06-10T20:23:17.632339-07:00,1006.3248291015625,10.93162,10931.62 +6727,2025-06-10T20:23:28.581634-07:00,1006.3248291015625,10.949295,10949.295 +6728,2025-06-10T20:23:39.517449-07:00,1006.3595581054688,10.935815,10935.815 +6729,2025-06-10T20:23:50.459336-07:00,1006.3417358398438,10.941887,10941.887 +6730,2025-06-10T20:24:01.398720-07:00,1006.3331298828125,10.939384,10939.384 +6731,2025-06-10T20:24:12.332447-07:00,1006.3380737304688,10.933727,10933.727 +6732,2025-06-10T20:24:23.277316-07:00,1006.2888793945312,10.944869,10944.869 +6733,2025-06-10T20:24:34.224768-07:00,1006.3429565429688,10.947452,10947.452 +6734,2025-06-10T20:24:45.157937-07:00,1006.303466796875,10.933169,10933.169 +6735,2025-06-10T20:24:56.098365-07:00,1006.3347778320312,10.940428,10940.428 +6736,2025-06-10T20:25:07.048319-07:00,1006.3644409179688,10.949954,10949.954 +6737,2025-06-10T20:25:17.988626-07:00,1006.3284301757812,10.940307,10940.307 +6738,2025-06-10T20:25:28.926508-07:00,1006.3380737304688,10.937882,10937.882 +6739,2025-06-10T20:25:39.873337-07:00,1006.3812255859375,10.946829,10946.829 +6740,2025-06-10T20:25:50.813740-07:00,1006.3826293945312,10.940403,10940.403 +6741,2025-06-10T20:26:01.766891-07:00,1006.3201293945312,10.953151,10953.151 +6742,2025-06-10T20:26:12.710822-07:00,1006.3482666015625,10.943931,10943.931 +6743,2025-06-10T20:26:23.643540-07:00,1006.3334350585938,10.932718,10932.718 +6744,2025-06-10T20:26:34.590309-07:00,1006.3680419921875,10.946769,10946.769 +6745,2025-06-10T20:26:45.537768-07:00,1006.3350830078125,10.947459,10947.459 +6746,2025-06-10T20:26:56.477338-07:00,1006.3251342773438,10.93957,10939.57 +6747,2025-06-10T20:27:07.417320-07:00,1006.303955078125,10.939982,10939.982 +6748,2025-06-10T20:27:18.356658-07:00,1006.3052978515625,10.939338,10939.338 +6749,2025-06-10T20:27:29.293922-07:00,1006.3465576171875,10.937264,10937.264 +6750,2025-06-10T20:27:40.230323-07:00,1006.303955078125,10.936401,10936.401 +6751,2025-06-10T20:27:51.175654-07:00,1006.2611083984375,10.945331,10945.331 +6752,2025-06-10T20:28:02.113334-07:00,1006.3171997070312,10.93768,10937.68 +6753,2025-06-10T20:28:13.057619-07:00,1006.2842407226562,10.944285,10944.285 +6754,2025-06-10T20:28:24.004664-07:00,1006.2578125,10.947045,10947.045 +6755,2025-06-10T20:28:34.952668-07:00,1006.2627563476562,10.948004,10948.004 +6756,2025-06-10T20:28:45.897382-07:00,1006.2809448242188,10.944714,10944.714 +6757,2025-06-10T20:28:56.832592-07:00,1006.3106079101562,10.93521,10935.21 +6758,2025-06-10T20:29:07.782604-07:00,1006.264404296875,10.950012,10950.012 +6759,2025-06-10T20:29:18.724834-07:00,1006.2676391601562,10.94223,10942.23 +6760,2025-06-10T20:29:29.648831-07:00,1006.2759399414062,10.923997,10923.997 +6761,2025-06-10T20:29:40.593922-07:00,1006.2957763671875,10.945091,10945.091 +6762,2025-06-10T20:29:51.537882-07:00,1006.2891235351562,10.94396,10943.96 +6763,2025-06-10T20:30:02.481246-07:00,1006.3088989257812,10.943364,10943.364 +6764,2025-06-10T20:30:13.425535-07:00,1006.2017211914062,10.944289,10944.289 +6765,2025-06-10T20:30:24.373274-07:00,1006.25146484375,10.947739,10947.739 +6766,2025-06-10T20:30:35.316907-07:00,1006.3023681640625,10.943633,10943.633 +6767,2025-06-10T20:30:46.251621-07:00,1006.2742919921875,10.934714,10934.714 +6768,2025-06-10T20:30:57.198535-07:00,1006.292724609375,10.946914,10946.914 +6769,2025-06-10T20:31:08.144514-07:00,1006.3175048828125,10.945979,10945.979 +6770,2025-06-10T20:31:19.089892-07:00,1006.307373046875,10.945378,10945.378 +6771,2025-06-10T20:31:30.036135-07:00,1006.3175048828125,10.946243,10946.243 +6772,2025-06-10T20:31:40.974639-07:00,1006.307373046875,10.938504,10938.504 +6773,2025-06-10T20:31:51.919537-07:00,1006.3157958984375,10.944898,10944.898 +6774,2025-06-10T20:32:02.871856-07:00,1006.3439331054688,10.952319,10952.319 +6775,2025-06-10T20:32:13.812270-07:00,1006.3372802734375,10.940414,10940.414 +6776,2025-06-10T20:32:24.757576-07:00,1006.3488159179688,10.945306,10945.306 +6777,2025-06-10T20:32:35.703534-07:00,1006.380126953125,10.945958,10945.958 +6778,2025-06-10T20:32:46.644091-07:00,1006.3590698242188,10.940557,10940.557 +6779,2025-06-10T20:32:57.594901-07:00,1006.38671875,10.95081,10950.81 +6780,2025-06-10T20:33:08.532535-07:00,1006.388427734375,10.937634,10937.634 +6781,2025-06-10T20:33:19.478535-07:00,1006.3719482421875,10.946,10946.0 +6782,2025-06-10T20:33:30.428528-07:00,1006.396728515625,10.949993,10949.993 +6783,2025-06-10T20:33:41.369910-07:00,1006.4065551757812,10.941382,10941.382 +6784,2025-06-10T20:33:52.314615-07:00,1006.401611328125,10.944705,10944.705 +6785,2025-06-10T20:34:03.257587-07:00,1006.462646484375,10.942972,10942.972 +6786,2025-06-10T20:34:14.196869-07:00,1006.44287109375,10.939282,10939.282 +6787,2025-06-10T20:34:25.142918-07:00,1006.4528198242188,10.946049,10946.049 +6788,2025-06-10T20:34:36.087537-07:00,1006.4131469726562,10.944619,10944.619 +6789,2025-06-10T20:34:47.033536-07:00,1006.42138671875,10.945999,10945.999 +6790,2025-06-10T20:34:57.974067-07:00,1006.4478149414062,10.940531,10940.531 +6791,2025-06-10T20:35:08.917808-07:00,1006.41845703125,10.943741,10943.741 +6792,2025-06-10T20:35:19.866149-07:00,1006.4478149414062,10.948341,10948.341 +6793,2025-06-10T20:35:30.800535-07:00,1006.4495239257812,10.934386,10934.386 +6794,2025-06-10T20:35:41.739574-07:00,1006.44287109375,10.939039,10939.039 +6795,2025-06-10T20:35:52.678672-07:00,1006.4692993164062,10.939098,10939.098 +6796,2025-06-10T20:36:03.620775-07:00,1006.436279296875,10.942103,10942.103 +6797,2025-06-10T20:36:14.560571-07:00,1006.4986572265625,10.939796,10939.796 +6798,2025-06-10T20:36:25.503789-07:00,1006.42138671875,10.943218,10943.218 +6799,2025-06-10T20:36:36.456949-07:00,1006.423095703125,10.95316,10953.16 +6800,2025-06-10T20:36:47.390877-07:00,1006.43798828125,10.933928,10933.928 +6801,2025-06-10T20:36:58.341343-07:00,1006.3917236328125,10.950466,10950.466 +6802,2025-06-10T20:37:09.276740-07:00,1006.3900756835938,10.935397,10935.397 +6803,2025-06-10T20:37:20.220536-07:00,1006.396728515625,10.943796,10943.796 +6804,2025-06-10T20:37:31.161865-07:00,1006.405029296875,10.941329,10941.329 +6805,2025-06-10T20:37:42.097537-07:00,1006.396728515625,10.935672,10935.672 +6806,2025-06-10T20:37:53.049813-07:00,1006.436279296875,10.952276,10952.276 +6807,2025-06-10T20:38:03.991252-07:00,1006.4412231445312,10.941439,10941.439 +6808,2025-06-10T20:38:14.926529-07:00,1006.41650390625,10.935277,10935.277 +6809,2025-06-10T20:38:25.866542-07:00,1006.3636474609375,10.940013,10940.013 +6810,2025-06-10T20:38:36.811536-07:00,1006.4148559570312,10.944994,10944.994 +6811,2025-06-10T20:38:47.753094-07:00,1006.388427734375,10.941558,10941.558 +6812,2025-06-10T20:38:58.704569-07:00,1006.4000244140625,10.951475,10951.475 +6813,2025-06-10T20:39:09.639678-07:00,1006.385498046875,10.935109,10935.109 +6814,2025-06-10T20:39:20.590524-07:00,1006.423095703125,10.950846,10950.846 +6815,2025-06-10T20:39:31.524189-07:00,1006.4065551757812,10.933665,10933.665 +6816,2025-06-10T20:39:42.469519-07:00,1006.3986206054688,10.94533,10945.33 +6817,2025-06-10T20:39:53.412364-07:00,1006.3939208984375,10.942845,10942.845 +6818,2025-06-10T20:40:04.360750-07:00,1006.3903198242188,10.948386,10948.386 +6819,2025-06-10T20:40:15.290601-07:00,1006.3656005859375,10.929851,10929.851 +6820,2025-06-10T20:40:26.229684-07:00,1006.3939208984375,10.939083,10939.083 +6821,2025-06-10T20:40:37.165535-07:00,1006.382080078125,10.935851,10935.851 +6822,2025-06-10T20:40:48.109790-07:00,1006.3920288085938,10.944255,10944.255 +6823,2025-06-10T20:40:59.037863-07:00,1006.384033203125,10.928073,10928.073 +6824,2025-06-10T20:41:09.973637-07:00,1006.392333984375,10.935774,10935.774 +6825,2025-06-10T20:41:20.916539-07:00,1006.4299926757812,10.942902,10942.902 +6826,2025-06-10T20:41:31.854088-07:00,1006.3695068359375,10.937549,10937.549 +6827,2025-06-10T20:41:42.783536-07:00,1006.412109375,10.929448,10929.448 +6828,2025-06-10T20:41:53.728714-07:00,1006.382080078125,10.945178,10945.178 +6829,2025-06-10T20:42:04.659558-07:00,1006.4137573242188,10.930844,10930.844 +6830,2025-06-10T20:42:15.602537-07:00,1006.390625,10.942979,10942.979 +6831,2025-06-10T20:42:26.545951-07:00,1006.3724975585938,10.943414,10943.414 +6832,2025-06-10T20:42:37.480518-07:00,1006.3593139648438,10.934567,10934.567 +6833,2025-06-10T20:42:48.420529-07:00,1006.3724975585938,10.940011,10940.011 +6834,2025-06-10T20:42:59.360848-07:00,1006.357666015625,10.940319,10940.319 +6835,2025-06-10T20:43:10.296816-07:00,1006.3496704101562,10.935968,10935.968 +6836,2025-06-10T20:43:21.227946-07:00,1006.3546752929688,10.93113,10931.13 +6837,2025-06-10T20:43:32.169534-07:00,1006.35107421875,10.941588,10941.588 +6838,2025-06-10T20:43:43.104301-07:00,1006.3150024414062,10.934767,10934.767 +6839,2025-06-10T20:43:54.042895-07:00,1006.3431396484375,10.938594,10938.594 +6840,2025-06-10T20:44:04.982683-07:00,1006.3182983398438,10.939788,10939.788 +6841,2025-06-10T20:44:15.917531-07:00,1006.3265380859375,10.934848,10934.848 +6842,2025-06-10T20:44:26.850564-07:00,1006.3480224609375,10.933033,10933.033 +6843,2025-06-10T20:44:37.790663-07:00,1006.3378295898438,10.940099,10940.099 +6844,2025-06-10T20:44:48.724146-07:00,1006.3134155273438,10.933483,10933.483 +6845,2025-06-10T20:44:59.659524-07:00,1006.3001708984375,10.935378,10935.378 +6846,2025-06-10T20:45:10.593951-07:00,1006.346435546875,10.934427,10934.427 +6847,2025-06-10T20:45:21.540888-07:00,1006.324951171875,10.946937,10946.937 +6848,2025-06-10T20:45:32.479539-07:00,1006.3397827148438,10.938651,10938.651 +6849,2025-06-10T20:45:43.413681-07:00,1006.3414306640625,10.934142,10934.142 +6850,2025-06-10T20:45:54.347575-07:00,1006.3103637695312,10.933894,10933.894 +6851,2025-06-10T20:46:05.302007-07:00,1006.338134765625,10.954432,10954.432 +6852,2025-06-10T20:46:16.238732-07:00,1006.324951171875,10.936725,10936.725 +6853,2025-06-10T20:46:27.188990-07:00,1006.3103637695312,10.950258,10950.258 +6854,2025-06-10T20:46:38.120508-07:00,1006.324951171875,10.931518,10931.518 +6855,2025-06-10T20:46:49.058533-07:00,1006.3397827148438,10.938025,10938.025 +6856,2025-06-10T20:47:00.000674-07:00,1006.351318359375,10.942141,10942.141 +6857,2025-06-10T20:47:10.944712-07:00,1006.3367309570312,10.944038,10944.038 +6858,2025-06-10T20:47:21.882098-07:00,1006.351318359375,10.937386,10937.386 +6859,2025-06-10T20:47:32.819840-07:00,1006.3579711914062,10.937742,10937.742 +6860,2025-06-10T20:47:43.764577-07:00,1006.3579711914062,10.944737,10944.737 +6861,2025-06-10T20:47:54.711392-07:00,1006.3351440429688,10.946815,10946.815 +6862,2025-06-10T20:48:05.646168-07:00,1006.3218994140625,10.934776,10934.776 +6863,2025-06-10T20:48:16.580532-07:00,1006.3236083984375,10.934364,10934.364 +6864,2025-06-10T20:48:27.525535-07:00,1006.3136596679688,10.945003,10945.003 +6865,2025-06-10T20:48:38.465835-07:00,1006.325439453125,10.9403,10940.3 +6866,2025-06-10T20:48:49.404539-07:00,1006.364501953125,10.938704,10938.704 +6867,2025-06-10T20:49:00.347158-07:00,1006.3284912109375,10.942619,10942.619 +6868,2025-06-10T20:49:11.275967-07:00,1006.3549194335938,10.928809,10928.809 +6869,2025-06-10T20:49:22.225545-07:00,1006.3466186523438,10.949578,10949.578 +6870,2025-06-10T20:49:33.157686-07:00,1006.3681030273438,10.932141,10932.141 +6871,2025-06-10T20:49:44.104687-07:00,1006.3796997070312,10.947001,10947.001 +6872,2025-06-10T20:49:55.041839-07:00,1006.353271484375,10.937152,10937.152 +6873,2025-06-10T20:50:05.977684-07:00,1006.3651733398438,10.935845,10935.845 +6874,2025-06-10T20:50:16.925822-07:00,1006.3568725585938,10.948138,10948.138 +6875,2025-06-10T20:50:27.865534-07:00,1006.3663940429688,10.939712,10939.712 +6876,2025-06-10T20:50:38.805267-07:00,1006.3663940429688,10.939733,10939.733 +6877,2025-06-10T20:50:49.733511-07:00,1006.3782958984375,10.928244,10928.244 +6878,2025-06-10T20:51:00.673534-07:00,1006.3651733398438,10.940023,10940.023 +6879,2025-06-10T20:51:11.610749-07:00,1006.3849487304688,10.937215,10937.215 +6880,2025-06-10T20:51:22.547514-07:00,1006.3340454101562,10.936765,10936.765 +6881,2025-06-10T20:51:33.486665-07:00,1006.3994750976562,10.939151,10939.151 +6882,2025-06-10T20:51:44.421503-07:00,1006.3651733398438,10.934838,10934.838 +6883,2025-06-10T20:51:55.365693-07:00,1006.3651733398438,10.94419,10944.19 +6884,2025-06-10T20:52:06.300754-07:00,1006.342041015625,10.935061,10935.061 +6885,2025-06-10T20:52:17.236856-07:00,1006.3334350585938,10.936102,10936.102 +6886,2025-06-10T20:52:28.181522-07:00,1006.3208618164062,10.944666,10944.666 +6887,2025-06-10T20:52:39.112021-07:00,1006.2974853515625,10.930499,10930.499 +6888,2025-06-10T20:52:50.051777-07:00,1006.3023681640625,10.939756,10939.756 +6889,2025-06-10T20:53:00.983537-07:00,1006.3076782226562,10.93176,10931.76 +6890,2025-06-10T20:53:11.923911-07:00,1006.287841796875,10.940374,10940.374 +6891,2025-06-10T20:53:22.859006-07:00,1006.3222045898438,10.935095,10935.095 +6892,2025-06-10T20:53:33.797884-07:00,1006.3323364257812,10.938878,10938.878 +6893,2025-06-10T20:53:44.722834-07:00,1006.3023681640625,10.92495,10924.95 +6894,2025-06-10T20:53:55.664802-07:00,1006.2927856445312,10.941968,10941.968 +6895,2025-06-10T20:54:06.604721-07:00,1006.2927856445312,10.939919,10939.919 +6896,2025-06-10T20:54:17.542525-07:00,1006.29638671875,10.937804,10937.804 +6897,2025-06-10T20:54:28.474850-07:00,1006.2993774414062,10.932325,10932.325 +6898,2025-06-10T20:54:39.409670-07:00,1006.2779541015625,10.93482,10934.82 +6899,2025-06-10T20:54:50.344020-07:00,1006.3228149414062,10.93435,10934.35 +6900,2025-06-10T20:55:01.272584-07:00,1006.330810546875,10.928564,10928.564 +6901,2025-06-10T20:55:12.219221-07:00,1006.3703002929688,10.946637,10946.637 +6902,2025-06-10T20:55:23.152552-07:00,1006.316162109375,10.933331,10933.331 +6903,2025-06-10T20:55:34.090539-07:00,1006.3194580078125,10.937987,10937.987 +6904,2025-06-10T20:55:45.031582-07:00,1006.2979736328125,10.941043,10941.043 +6905,2025-06-10T20:55:55.967890-07:00,1006.3261108398438,10.936308,10936.308 +6906,2025-06-10T20:56:06.900662-07:00,1006.3458862304688,10.932772,10932.772 +6907,2025-06-10T20:56:17.839915-07:00,1006.34423828125,10.939253,10939.253 +6908,2025-06-10T20:56:28.778498-07:00,1006.3507690429688,10.938583,10938.583 +6909,2025-06-10T20:56:39.713683-07:00,1006.3309326171875,10.935185,10935.185 +6910,2025-06-10T20:56:50.642537-07:00,1006.3411865234375,10.928854,10928.854 +6911,2025-06-10T20:57:01.583788-07:00,1006.3560791015625,10.941251,10941.251 +6912,2025-06-10T20:57:12.512535-07:00,1006.3543701171875,10.928747,10928.747 +6913,2025-06-10T20:57:23.455534-07:00,1006.364013671875,10.942999,10942.999 +6914,2025-06-10T20:57:34.386815-07:00,1006.359375,10.931281,10931.281 +6915,2025-06-10T20:57:45.320593-07:00,1006.3675537109375,10.933778,10933.778 +6916,2025-06-10T20:57:56.259865-07:00,1006.3478393554688,10.939272,10939.272 +6917,2025-06-10T20:58:07.193538-07:00,1006.33154296875,10.933673,10933.673 +6918,2025-06-10T20:58:18.123518-07:00,1006.3131103515625,10.92998,10929.98 +6919,2025-06-10T20:58:29.068095-07:00,1006.30517578125,10.944577,10944.577 +6920,2025-06-10T20:58:39.995649-07:00,1006.311767578125,10.927554,10927.554 +6921,2025-06-10T20:58:50.933076-07:00,1006.313720703125,10.937427,10937.427 +6922,2025-06-10T20:59:01.863105-07:00,1006.33154296875,10.930029,10930.029 +6923,2025-06-10T20:59:12.805540-07:00,1006.30517578125,10.942435,10942.435 +6924,2025-06-10T20:59:23.738736-07:00,1006.3167114257812,10.933196,10933.196 +6925,2025-06-10T20:59:34.672527-07:00,1006.2938842773438,10.933791,10933.791 +6926,2025-06-10T20:59:45.610221-07:00,1006.3035278320312,10.937694,10937.694 +6927,2025-06-10T20:59:56.542534-07:00,1006.3004760742188,10.932313,10932.313 +6928,2025-06-10T21:00:07.487760-07:00,1006.28076171875,10.945226,10945.226 +6929,2025-06-10T21:00:18.430741-07:00,1006.3150634765625,10.942981,10942.981 +6930,2025-06-10T21:00:29.368647-07:00,1006.2988891601562,10.937906,10937.906 +6931,2025-06-10T21:00:40.318597-07:00,1006.3087768554688,10.94995,10949.95 +6932,2025-06-10T21:00:51.253056-07:00,1006.33349609375,10.934459,10934.459 +6933,2025-06-10T21:01:02.194539-07:00,1006.3384399414062,10.941483,10941.483 +6934,2025-06-10T21:01:13.139537-07:00,1006.353271484375,10.944998,10944.998 +6935,2025-06-10T21:01:24.075790-07:00,1006.3170166015625,10.936253,10936.253 +6936,2025-06-10T21:01:35.022037-07:00,1006.3301391601562,10.946247,10946.247 +6937,2025-06-10T21:01:45.957539-07:00,1006.3384399414062,10.935502,10935.502 +6938,2025-06-10T21:01:56.898744-07:00,1006.353271484375,10.941205,10941.205 +6939,2025-06-10T21:02:07.827827-07:00,1006.3630981445312,10.929083,10929.083 +6940,2025-06-10T21:02:18.763539-07:00,1006.3470458984375,10.935712,10935.712 +6941,2025-06-10T21:02:29.690537-07:00,1006.3630981445312,10.926998,10926.998 +6942,2025-06-10T21:02:40.631783-07:00,1006.39453125,10.941246,10941.246 +6943,2025-06-10T21:02:51.562539-07:00,1006.3931274414062,10.930756,10930.756 +6944,2025-06-10T21:03:02.505296-07:00,1006.3865356445312,10.942757,10942.757 +6945,2025-06-10T21:03:13.435764-07:00,1006.4093627929688,10.930468,10930.468 +6946,2025-06-10T21:03:24.362880-07:00,1006.401123046875,10.927116,10927.116 +6947,2025-06-10T21:03:35.291535-07:00,1006.427490234375,10.928655,10928.655 +6948,2025-06-10T21:03:46.228539-07:00,1006.3964233398438,10.937004,10937.004 +6949,2025-06-10T21:03:57.156578-07:00,1006.3964233398438,10.928039,10928.039 +6950,2025-06-10T21:04:08.094509-07:00,1006.403076171875,10.937931,10937.931 +6951,2025-06-10T21:04:19.033928-07:00,1006.4112548828125,10.939419,10939.419 +6952,2025-06-10T21:04:29.963666-07:00,1006.4179077148438,10.929738,10929.738 +6953,2025-06-10T21:04:40.906529-07:00,1006.4129638671875,10.942863,10942.863 +6954,2025-06-10T21:04:51.835719-07:00,1006.4195556640625,10.92919,10929.19 +6955,2025-06-10T21:05:02.772669-07:00,1006.4179077148438,10.93695,10936.95 +6956,2025-06-10T21:05:13.699769-07:00,1006.3802490234375,10.9271,10927.1 +6957,2025-06-10T21:05:24.640532-07:00,1006.416259765625,10.940763,10940.763 +6958,2025-06-10T21:05:35.575790-07:00,1006.3934326171875,10.935258,10935.258 +6959,2025-06-10T21:05:46.509510-07:00,1006.424560546875,10.93372,10933.72 +6960,2025-06-10T21:05:57.442852-07:00,1006.3964233398438,10.933342,10933.342 +6961,2025-06-10T21:06:08.371517-07:00,1006.416259765625,10.928665,10928.665 +6962,2025-06-10T21:06:19.317640-07:00,1006.4115600585938,10.946123,10946.123 +6963,2025-06-10T21:06:30.246573-07:00,1006.3934326171875,10.928933,10928.933 +6964,2025-06-10T21:06:41.184657-07:00,1006.4310913085938,10.938084,10938.084 +6965,2025-06-10T21:06:52.123894-07:00,1006.4065551757812,10.939237,10939.237 +6966,2025-06-10T21:07:03.056680-07:00,1006.3917236328125,10.932786,10932.786 +6967,2025-06-10T21:07:13.998521-07:00,1006.41015625,10.941841,10941.841 +6968,2025-06-10T21:07:24.934137-07:00,1006.4198608398438,10.935616,10935.616 +6969,2025-06-10T21:07:35.860539-07:00,1006.3786010742188,10.926402,10926.402 +6970,2025-06-10T21:07:46.800823-07:00,1006.4065551757812,10.940284,10940.284 +6971,2025-06-10T21:07:57.740523-07:00,1006.368896484375,10.9397,10939.7 +6972,2025-06-10T21:08:08.682783-07:00,1006.3640747070312,10.94226,10942.26 +6973,2025-06-10T21:08:19.609595-07:00,1006.3917236328125,10.926812,10926.812 +6974,2025-06-10T21:08:30.546590-07:00,1006.3425903320312,10.936995,10936.995 +6975,2025-06-10T21:08:41.485787-07:00,1006.3822021484375,10.939197,10939.197 +6976,2025-06-10T21:08:52.423664-07:00,1006.3719482421875,10.937877,10937.877 +6977,2025-06-10T21:09:03.358534-07:00,1006.3359375,10.93487,10934.87 +6978,2025-06-10T21:09:14.288587-07:00,1006.3640747070312,10.930053,10930.053 +6979,2025-06-10T21:09:25.226523-07:00,1006.3673706054688,10.937936,10937.936 +6980,2025-06-10T21:09:36.161681-07:00,1006.359375,10.935158,10935.158 +6981,2025-06-10T21:09:47.093539-07:00,1006.379150390625,10.931858,10931.858 +6982,2025-06-10T21:09:58.024138-07:00,1006.357666015625,10.930599,10930.599 +6983,2025-06-10T21:10:08.955534-07:00,1006.3607177734375,10.931396,10931.396 +6984,2025-06-10T21:10:19.895537-07:00,1006.365966796875,10.940003,10940.003 +6985,2025-06-10T21:10:30.822783-07:00,1006.34619140625,10.927246,10927.246 +6986,2025-06-10T21:10:41.758783-07:00,1006.3540649414062,10.936,10936.0 +6987,2025-06-10T21:10:52.700624-07:00,1006.3626708984375,10.941841,10941.841 +6988,2025-06-10T21:11:03.635787-07:00,1006.3709106445312,10.935163,10935.163 +6989,2025-06-10T21:11:14.570294-07:00,1006.3775024414062,10.934507,10934.507 +6990,2025-06-10T21:11:25.504551-07:00,1006.3824462890625,10.934257,10934.257 +6991,2025-06-10T21:11:36.437796-07:00,1006.33984375,10.933245,10933.245 +6992,2025-06-10T21:11:47.372683-07:00,1006.3956298828125,10.934887,10934.887 +6993,2025-06-10T21:11:58.308098-07:00,1006.4202880859375,10.935415,10935.415 +6994,2025-06-10T21:12:09.236681-07:00,1006.4268798828125,10.928583,10928.583 +6995,2025-06-10T21:12:20.175525-07:00,1006.4071655273438,10.938844,10938.844 +6996,2025-06-10T21:12:31.116051-07:00,1006.412353515625,10.940526,10940.526 +6997,2025-06-10T21:12:42.045262-07:00,1006.4190063476562,10.929211,10929.211 +6998,2025-06-10T21:12:52.974741-07:00,1006.4137573242188,10.929479,10929.479 +6999,2025-06-10T21:13:03.910587-07:00,1006.440185546875,10.935846,10935.846 +7000,2025-06-10T21:13:14.855772-07:00,1006.440185546875,10.945185,10945.185 +7001,2025-06-10T21:13:25.790974-07:00,1006.4238891601562,10.935202,10935.202 +7002,2025-06-10T21:13:36.725753-07:00,1006.4222412109375,10.934779,10934.779 +7003,2025-06-10T21:13:47.655751-07:00,1006.4076538085938,10.929998,10929.998 +7004,2025-06-10T21:13:58.596960-07:00,1006.4533081054688,10.941209,10941.209 +7005,2025-06-10T21:14:09.529817-07:00,1006.4288940429688,10.932857,10932.857 +7006,2025-06-10T21:14:20.463529-07:00,1006.4437255859375,10.933712,10933.712 +7007,2025-06-10T21:14:31.392745-07:00,1006.4371337890625,10.929216,10929.216 +7008,2025-06-10T21:14:42.327537-07:00,1006.4060668945312,10.934792,10934.792 +7009,2025-06-10T21:14:53.266760-07:00,1006.4519653320312,10.939223,10939.223 +7010,2025-06-10T21:15:04.210848-07:00,1006.4598999023438,10.944088,10944.088 +7011,2025-06-10T21:15:15.146534-07:00,1006.4598999023438,10.935686,10935.686 +7012,2025-06-10T21:15:26.076240-07:00,1006.4222412109375,10.929706,10929.706 +7013,2025-06-10T21:15:37.014537-07:00,1006.438720703125,10.938297,10938.297 +7014,2025-06-10T21:15:47.949536-07:00,1006.4238891601562,10.934999,10934.999 +7015,2025-06-10T21:15:58.877523-07:00,1006.4173583984375,10.927987,10927.987 +7016,2025-06-10T21:16:09.815514-07:00,1006.4321899414062,10.937991,10937.991 +7017,2025-06-10T21:16:20.739537-07:00,1006.4568481445312,10.924023,10924.023 +7018,2025-06-10T21:16:31.671539-07:00,1006.4371337890625,10.932002,10932.002 +7019,2025-06-10T21:16:42.609569-07:00,1006.4173583984375,10.93803,10938.03 +7020,2025-06-10T21:16:53.552124-07:00,1006.4238891601562,10.942555,10942.555 +7021,2025-06-10T21:17:04.473675-07:00,1006.4304809570312,10.921551,10921.551 +7022,2025-06-10T21:17:15.407539-07:00,1006.438720703125,10.933864,10933.864 +7023,2025-06-10T21:17:26.346848-07:00,1006.4107055664062,10.939309,10939.309 +7024,2025-06-10T21:17:37.276530-07:00,1006.4420166015625,10.929682,10929.682 +7025,2025-06-10T21:17:48.210221-07:00,1006.401123046875,10.933691,10933.691 +7026,2025-06-10T21:17:59.148523-07:00,1006.4354858398438,10.938302,10938.302 +7027,2025-06-10T21:18:10.077900-07:00,1006.4335327148438,10.929377,10929.377 +7028,2025-06-10T21:18:21.004554-07:00,1006.4173583984375,10.926654,10926.654 +7029,2025-06-10T21:18:31.941939-07:00,1006.4238891601562,10.937385,10937.385 +7030,2025-06-10T21:18:42.865532-07:00,1006.4173583984375,10.923593,10923.593 +7031,2025-06-10T21:18:53.802806-07:00,1006.3975219726562,10.937274,10937.274 +7032,2025-06-10T21:19:04.741996-07:00,1006.3975219726562,10.93919,10939.19 +7033,2025-06-10T21:19:15.671802-07:00,1006.387939453125,10.929806,10929.806 +7034,2025-06-10T21:19:26.612029-07:00,1006.3975219726562,10.940227,10940.227 +7035,2025-06-10T21:19:37.544822-07:00,1006.4107055664062,10.932793,10932.793 +7036,2025-06-10T21:19:48.481856-07:00,1006.38623046875,10.937034,10937.034 +7037,2025-06-10T21:19:59.420697-07:00,1006.3892211914062,10.938841,10938.841 +7038,2025-06-10T21:20:10.366795-07:00,1006.35986328125,10.946098,10946.098 +7039,2025-06-10T21:20:21.299931-07:00,1006.3796997070312,10.933136,10933.136 +7040,2025-06-10T21:20:32.238535-07:00,1006.3562622070312,10.938604,10938.604 +7041,2025-06-10T21:20:43.174950-07:00,1006.39453125,10.936415,10936.415 +7042,2025-06-10T21:20:54.117861-07:00,1006.3760986328125,10.942911,10942.911 +7043,2025-06-10T21:21:05.051760-07:00,1006.35986328125,10.933899,10933.899 +7044,2025-06-10T21:21:16.001775-07:00,1006.3663940429688,10.950015,10950.015 +7045,2025-06-10T21:21:26.938026-07:00,1006.3958740234375,10.936251,10936.251 +7046,2025-06-10T21:21:37.885526-07:00,1006.3845825195312,10.9475,10947.5 +7047,2025-06-10T21:21:48.820688-07:00,1006.3515625,10.935162,10935.162 +7048,2025-06-10T21:21:59.757833-07:00,1006.373046875,10.937145,10937.145 +7049,2025-06-10T21:22:10.700986-07:00,1006.3663940429688,10.943153,10943.153 +7050,2025-06-10T21:22:21.640894-07:00,1006.427490234375,10.939908,10939.908 +7051,2025-06-10T21:22:32.581003-07:00,1006.4222412109375,10.940109,10940.109 +7052,2025-06-10T21:22:43.514683-07:00,1006.4126586914062,10.93368,10933.68 +7053,2025-06-10T21:22:54.453045-07:00,1006.4354858398438,10.938362,10938.362 +7054,2025-06-10T21:23:05.391301-07:00,1006.4060668945312,10.938256,10938.256 +7055,2025-06-10T21:23:16.323098-07:00,1006.42578125,10.931797,10931.797 +7056,2025-06-10T21:23:27.268907-07:00,1006.4749755859375,10.945809,10945.809 +7057,2025-06-10T21:23:38.209525-07:00,1006.43408203125,10.940618,10940.618 +7058,2025-06-10T21:23:49.147800-07:00,1006.4486083984375,10.938275,10938.275 +7059,2025-06-10T21:24:00.084971-07:00,1006.4749755859375,10.937171,10937.171 +7060,2025-06-10T21:24:11.024848-07:00,1006.4552612304688,10.939877,10939.877 +7061,2025-06-10T21:24:21.974539-07:00,1006.427490234375,10.949691,10949.691 +7062,2025-06-10T21:24:32.904024-07:00,1006.4456176757812,10.929485,10929.485 +7063,2025-06-10T21:24:43.853200-07:00,1006.4915771484375,10.949176,10949.176 +7064,2025-06-10T21:24:54.783241-07:00,1006.4981079101562,10.930041,10930.041 +7065,2025-06-10T21:25:05.733538-07:00,1006.5126342773438,10.950297,10950.297 +7066,2025-06-10T21:25:16.668969-07:00,1006.4945068359375,10.935431,10935.431 +7067,2025-06-10T21:25:27.615817-07:00,1006.4862670898438,10.946848,10946.848 +7068,2025-06-10T21:25:38.553612-07:00,1006.4813842773438,10.937795,10937.795 +7069,2025-06-10T21:25:49.480515-07:00,1006.4945068359375,10.926903,10926.903 +7070,2025-06-10T21:26:00.420543-07:00,1006.4978637695312,10.940028,10940.028 +7071,2025-06-10T21:26:11.360848-07:00,1006.5028076171875,10.940305,10940.305 +7072,2025-06-10T21:26:22.295763-07:00,1006.51904296875,10.934915,10934.915 +7073,2025-06-10T21:26:33.236601-07:00,1006.5045166015625,10.940838,10940.838 +7074,2025-06-10T21:26:44.176127-07:00,1006.4978637695312,10.939526,10939.526 +7075,2025-06-10T21:26:55.109793-07:00,1006.5009155273438,10.933666,10933.666 +7076,2025-06-10T21:27:06.044857-07:00,1006.525634765625,10.935064,10935.064 +7077,2025-06-10T21:27:16.977518-07:00,1006.49267578125,10.932661,10932.661 +7078,2025-06-10T21:27:27.918436-07:00,1006.4992065429688,10.940918,10940.918 +7079,2025-06-10T21:27:38.846526-07:00,1006.4649047851562,10.92809,10928.09 +7080,2025-06-10T21:27:49.791697-07:00,1006.49267578125,10.945171,10945.171 +7081,2025-06-10T21:28:00.722621-07:00,1006.5075073242188,10.930924,10930.924 +7082,2025-06-10T21:28:11.649751-07:00,1006.5025634765625,10.92713,10927.13 +7083,2025-06-10T21:28:22.596530-07:00,1006.49267578125,10.946779,10946.779 +7084,2025-06-10T21:28:33.527934-07:00,1006.4810791015625,10.931404,10931.404 +7085,2025-06-10T21:28:44.460691-07:00,1006.4959106445312,10.932757,10932.757 +7086,2025-06-10T21:28:55.404828-07:00,1006.4827880859375,10.944137,10944.137 +7087,2025-06-10T21:29:06.334791-07:00,1006.5075073242188,10.929963,10929.963 +7088,2025-06-10T21:29:17.277404-07:00,1006.5025634765625,10.942613,10942.613 +7089,2025-06-10T21:29:28.225197-07:00,1006.4959106445312,10.947793,10947.793 +7090,2025-06-10T21:29:39.164270-07:00,1006.4959106445312,10.939073,10939.073 +7091,2025-06-10T21:29:50.099214-07:00,1006.497314453125,10.934944,10934.944 +7092,2025-06-10T21:30:01.033492-07:00,1006.497314453125,10.934278,10934.278 +7093,2025-06-10T21:30:11.974005-07:00,1006.4695434570312,10.940513,10940.513 +7094,2025-06-10T21:30:22.901300-07:00,1006.5009155273438,10.927295,10927.295 +7095,2025-06-10T21:30:33.845419-07:00,1006.497314453125,10.944119,10944.119 +7096,2025-06-10T21:30:44.781292-07:00,1006.4959106445312,10.935873,10935.873 +7097,2025-06-10T21:30:55.726286-07:00,1006.4827880859375,10.944994,10944.994 +7098,2025-06-10T21:31:06.661268-07:00,1006.51708984375,10.934982,10934.982 +7099,2025-06-10T21:31:17.606827-07:00,1006.51708984375,10.945559,10945.559 +7100,2025-06-10T21:31:28.542660-07:00,1006.4827880859375,10.935833,10935.833 +7101,2025-06-10T21:31:39.475586-07:00,1006.5204467773438,10.932926,10932.926 +7102,2025-06-10T21:31:50.417258-07:00,1006.4943237304688,10.941672,10941.672 +7103,2025-06-10T21:32:01.343979-07:00,1006.4893798828125,10.926721,10926.721 +7104,2025-06-10T21:32:12.284476-07:00,1006.4989624023438,10.940497,10940.497 +7105,2025-06-10T21:32:23.216248-07:00,1006.50390625,10.931772,10931.772 +7106,2025-06-10T21:32:34.154035-07:00,1006.5187377929688,10.937787,10937.787 +7107,2025-06-10T21:32:45.092318-07:00,1006.4907836914062,10.938283,10938.283 +7108,2025-06-10T21:32:56.032714-07:00,1006.470947265625,10.940396,10940.396 +7109,2025-06-10T21:33:06.966503-07:00,1006.484130859375,10.933789,10933.789 +7110,2025-06-10T21:33:17.915507-07:00,1006.510498046875,10.949004,10949.004 +7111,2025-06-10T21:33:28.852043-07:00,1006.510498046875,10.936536,10936.536 +7112,2025-06-10T21:33:39.794113-07:00,1006.5320434570312,10.94207,10942.07 +7113,2025-06-10T21:33:50.731262-07:00,1006.4893798828125,10.937149,10937.149 +7114,2025-06-10T21:34:01.666776-07:00,1006.510498046875,10.935514,10935.514 +7115,2025-06-10T21:34:12.605254-07:00,1006.536865234375,10.938478,10938.478 +7116,2025-06-10T21:34:23.543258-07:00,1006.5303344726562,10.938004,10938.004 +7117,2025-06-10T21:34:34.480549-07:00,1006.5223388671875,10.937291,10937.291 +7118,2025-06-10T21:34:45.420258-07:00,1006.5289306640625,10.939709,10939.709 +7119,2025-06-10T21:34:56.366250-07:00,1006.5223388671875,10.945992,10945.992 +7120,2025-06-10T21:35:07.304928-07:00,1006.5355224609375,10.938678,10938.678 +7121,2025-06-10T21:35:18.245506-07:00,1006.5140380859375,10.940578,10940.578 +7122,2025-06-10T21:35:29.181567-07:00,1006.536865234375,10.936061,10936.061 +7123,2025-06-10T21:35:40.120813-07:00,1006.525390625,10.939246,10939.246 +7124,2025-06-10T21:35:51.050266-07:00,1006.5435180664062,10.929453,10929.453 +7125,2025-06-10T21:36:01.989654-07:00,1006.4959106445312,10.939388,10939.388 +7126,2025-06-10T21:36:12.932296-07:00,1006.50390625,10.942642,10942.642 +7127,2025-06-10T21:36:23.868503-07:00,1006.4827880859375,10.936207,10936.207 +7128,2025-06-10T21:36:34.808277-07:00,1006.484130859375,10.939774,10939.774 +7129,2025-06-10T21:36:45.738510-07:00,1006.484130859375,10.930233,10930.233 +7130,2025-06-10T21:36:56.679250-07:00,1006.4907836914062,10.94074,10940.74 +7131,2025-06-10T21:37:07.605244-07:00,1006.484130859375,10.925994,10925.994 +7132,2025-06-10T21:37:18.540268-07:00,1006.4629516601562,10.935024,10935.024 +7133,2025-06-10T21:37:29.480016-07:00,1006.4725952148438,10.939748,10939.748 +7134,2025-06-10T21:37:40.419264-07:00,1006.4247436523438,10.939248,10939.248 +7135,2025-06-10T21:37:51.348507-07:00,1006.4299926757812,10.929243,10929.243 +7136,2025-06-10T21:38:02.277246-07:00,1006.4329833984375,10.928739,10928.739 +7137,2025-06-10T21:38:13.220522-07:00,1006.3983764648438,10.943276,10943.276 +7138,2025-06-10T21:38:24.145420-07:00,1006.4346923828125,10.924898,10924.898 +7139,2025-06-10T21:38:35.086591-07:00,1006.4445190429688,10.941171,10941.171 +7140,2025-06-10T21:38:46.017268-07:00,1006.4544677734375,10.930677,10930.677 +7141,2025-06-10T21:38:56.954384-07:00,1006.4462280273438,10.937116,10937.116 +7142,2025-06-10T21:39:07.893813-07:00,1006.4247436523438,10.939429,10939.429 +7143,2025-06-10T21:39:18.823303-07:00,1006.4462280273438,10.92949,10929.49 +7144,2025-06-10T21:39:29.761272-07:00,1006.4313354492188,10.937969,10937.969 +7145,2025-06-10T21:39:40.704495-07:00,1006.4611206054688,10.943223,10943.223 +7146,2025-06-10T21:39:51.630268-07:00,1006.4198608398438,10.925773,10925.773 +7147,2025-06-10T21:40:02.565306-07:00,1006.4511108398438,10.935038,10935.038 +7148,2025-06-10T21:40:13.501270-07:00,1006.43798828125,10.935964,10935.964 +7149,2025-06-10T21:40:24.446016-07:00,1006.46435546875,10.944746,10944.746 +7150,2025-06-10T21:40:35.381513-07:00,1006.4679565429688,10.935497,10935.497 +7151,2025-06-10T21:40:46.318268-07:00,1006.4332885742188,10.936755,10936.755 +7152,2025-06-10T21:40:57.260477-07:00,1006.484130859375,10.942209,10942.209 +7153,2025-06-10T21:41:08.203350-07:00,1006.457763671875,10.942873,10942.873 +7154,2025-06-10T21:41:19.143511-07:00,1006.4613037109375,10.940161,10940.161 +7155,2025-06-10T21:41:30.080905-07:00,1006.4827880859375,10.937394,10937.394 +7156,2025-06-10T21:41:41.029193-07:00,1006.5158081054688,10.948288,10948.288 +7157,2025-06-10T21:41:51.970264-07:00,1006.5092163085938,10.941071,10941.071 +7158,2025-06-10T21:42:02.910245-07:00,1006.505859375,10.939981,10939.981 +7159,2025-06-10T21:42:13.844408-07:00,1006.505859375,10.934163,10934.163 +7160,2025-06-10T21:42:24.783296-07:00,1006.5075073242188,10.938888,10938.888 +7161,2025-06-10T21:42:35.724643-07:00,1006.505859375,10.941347,10941.347 +7162,2025-06-10T21:42:46.659249-07:00,1006.5111083984375,10.934606,10934.606 +7163,2025-06-10T21:42:57.600258-07:00,1006.505859375,10.941009,10941.009 +7164,2025-06-10T21:43:08.542539-07:00,1006.49267578125,10.942281,10942.281 +7165,2025-06-10T21:43:19.489417-07:00,1006.5223388671875,10.946878,10946.878 +7166,2025-06-10T21:43:30.431257-07:00,1006.512451171875,10.94184,10941.84 +7167,2025-06-10T21:43:41.364629-07:00,1006.5028076171875,10.933372,10933.372 +7168,2025-06-10T21:43:52.299264-07:00,1006.525634765625,10.934635,10934.635 +7169,2025-06-10T21:44:03.238439-07:00,1006.5505981445312,10.939175,10939.175 +7170,2025-06-10T21:44:14.173324-07:00,1006.5176391601562,10.934885,10934.885 +7171,2025-06-10T21:44:25.115264-07:00,1006.5028076171875,10.94194,10941.94 +7172,2025-06-10T21:44:36.053266-07:00,1006.5374755859375,10.938002,10938.002 +7173,2025-06-10T21:44:46.993918-07:00,1006.5357666015625,10.940652,10940.652 +7174,2025-06-10T21:44:57.930256-07:00,1006.5292358398438,10.936338,10936.338 +7175,2025-06-10T21:45:08.866369-07:00,1006.506103515625,10.936113,10936.113 +7176,2025-06-10T21:45:19.797338-07:00,1006.5126342773438,10.930969,10930.969 +7177,2025-06-10T21:45:30.742253-07:00,1006.540771484375,10.944915,10944.915 +7178,2025-06-10T21:45:41.671298-07:00,1006.54736328125,10.929045,10929.045 +7179,2025-06-10T21:45:52.614446-07:00,1006.572021484375,10.943148,10943.148 +7180,2025-06-10T21:46:03.541563-07:00,1006.5786743164062,10.927117,10927.117 +7181,2025-06-10T21:46:14.471227-07:00,1006.5984497070312,10.929664,10929.664 +7182,2025-06-10T21:46:25.407764-07:00,1006.6168823242188,10.936537,10936.537 +7183,2025-06-10T21:46:36.343297-07:00,1006.6380615234375,10.935533,10935.533 +7184,2025-06-10T21:46:47.269840-07:00,1006.635009765625,10.926543,10926.543 +7185,2025-06-10T21:46:58.203253-07:00,1006.656494140625,10.933413,10933.413 +7186,2025-06-10T21:47:09.134763-07:00,1006.6812744140625,10.93151,10931.51 +7187,2025-06-10T21:47:20.067297-07:00,1006.6517944335938,10.932534,10932.534 +7188,2025-06-10T21:47:31.005255-07:00,1006.669921875,10.937958,10937.958 +7189,2025-06-10T21:47:41.941276-07:00,1006.6715698242188,10.936021,10936.021 +7190,2025-06-10T21:47:52.870352-07:00,1006.6632690429688,10.929076,10929.076 +7191,2025-06-10T21:48:03.814469-07:00,1006.697998046875,10.944117,10944.117 +7192,2025-06-10T21:48:14.753249-07:00,1006.7490844726562,10.93878,10938.78 +7193,2025-06-10T21:48:25.700254-07:00,1006.68017578125,10.947005,10947.005 +7194,2025-06-10T21:48:36.636489-07:00,1006.7078247070312,10.936235,10936.235 +7195,2025-06-10T21:48:47.574305-07:00,1006.737548828125,10.937816,10937.816 +7196,2025-06-10T21:48:58.516260-07:00,1006.7623291015625,10.941955,10941.955 +7197,2025-06-10T21:49:09.449495-07:00,1006.7064819335938,10.933235,10933.235 +7198,2025-06-10T21:49:20.393491-07:00,1006.7095336914062,10.943996,10943.996 +7199,2025-06-10T21:49:31.329651-07:00,1006.6932983398438,10.93616,10936.16 +7200,2025-06-10T21:49:42.264320-07:00,1006.691650390625,10.934669,10934.669 +7201,2025-06-10T21:49:53.205402-07:00,1006.678466796875,10.941082,10941.082 +7202,2025-06-10T21:50:04.143279-07:00,1006.671875,10.937877,10937.877 +7203,2025-06-10T21:50:15.076268-07:00,1006.691650390625,10.932989,10932.989 +7204,2025-06-10T21:50:26.018251-07:00,1006.6880493164062,10.941983,10941.983 +7205,2025-06-10T21:50:36.961617-07:00,1006.6867065429688,10.943366,10943.366 +7206,2025-06-10T21:50:47.888253-07:00,1006.703125,10.926636,10926.636 +7207,2025-06-10T21:50:58.826655-07:00,1006.6849975585938,10.938402,10938.402 +7208,2025-06-10T21:51:09.772733-07:00,1006.713134765625,10.946078,10946.078 +7209,2025-06-10T21:51:20.706519-07:00,1006.670166015625,10.933786,10933.786 +7210,2025-06-10T21:51:31.642597-07:00,1006.678466796875,10.936078,10936.078 +7211,2025-06-10T21:51:42.586275-07:00,1006.696533203125,10.943678,10943.678 +7212,2025-06-10T21:51:53.525518-07:00,1006.7146606445312,10.939243,10939.243 +7213,2025-06-10T21:52:04.472263-07:00,1006.7081298828125,10.946745,10946.745 +7214,2025-06-10T21:52:15.412237-07:00,1006.7279052734375,10.939974,10939.974 +7215,2025-06-10T21:52:26.345304-07:00,1006.736083984375,10.933067,10933.067 +7216,2025-06-10T21:52:37.286308-07:00,1006.7493896484375,10.941004,10941.004 +7217,2025-06-10T21:52:48.232586-07:00,1006.7691650390625,10.946278,10946.278 +7218,2025-06-10T21:52:59.171243-07:00,1006.7396850585938,10.938657,10938.657 +7219,2025-06-10T21:53:10.112513-07:00,1006.7628173828125,10.94127,10941.27 +7220,2025-06-10T21:53:21.055520-07:00,1006.779296875,10.943007,10943.007 +7221,2025-06-10T21:53:31.996249-07:00,1006.7938842773438,10.940729,10940.729 +7222,2025-06-10T21:53:42.937646-07:00,1006.7644653320312,10.941397,10941.397 +7223,2025-06-10T21:53:53.869508-07:00,1006.751220703125,10.931862,10931.862 +7224,2025-06-10T21:54:04.806254-07:00,1006.7974243164062,10.936746,10936.746 +7225,2025-06-10T21:54:15.752272-07:00,1006.8057250976562,10.946018,10946.018 +7226,2025-06-10T21:54:26.691079-07:00,1006.77294921875,10.938807,10938.807 +7227,2025-06-10T21:54:37.625245-07:00,1006.7957763671875,10.934166,10934.166 +7228,2025-06-10T21:54:48.552388-07:00,1006.8023681640625,10.927143,10927.143 +7229,2025-06-10T21:54:57.001979-07:00,1006.7825927734375,8.449591,8449.591 +7230,2025-06-10T21:54:59.488249-07:00,1006.7776489257812,2.48627,2486.27 +7231,2025-06-10T21:55:10.428648-07:00,1006.7957763671875,10.940399,10940.399 +7232,2025-06-10T21:55:21.356579-07:00,1006.7957763671875,10.927931,10927.931 +7233,2025-06-10T21:55:32.295266-07:00,1006.8023681640625,10.938687,10938.687 +7234,2025-06-10T21:55:43.225259-07:00,1006.7943725585938,10.929993,10929.993 +7235,2025-06-10T21:55:54.157936-07:00,1006.7891235351562,10.932677,10932.677 +7236,2025-06-10T21:56:05.099658-07:00,1006.7860717773438,10.941722,10941.722 +7237,2025-06-10T21:56:16.028346-07:00,1006.78125,10.928688,10928.688 +7238,2025-06-10T21:56:26.967737-07:00,1006.8088989257812,10.939391,10939.391 +7239,2025-06-10T21:56:37.901251-07:00,1006.7745971679688,10.933514,10933.514 +7240,2025-06-10T21:56:48.830186-07:00,1006.8088989257812,10.928935,10928.935 +7241,2025-06-10T21:56:59.774661-07:00,1006.779541015625,10.944475,10944.475 +7242,2025-06-10T21:57:10.702889-07:00,1006.8123168945312,10.928228,10928.228 +7243,2025-06-10T21:57:21.650453-07:00,1006.7957763671875,10.947564,10947.564 +7244,2025-06-10T21:57:32.586508-07:00,1006.8222045898438,10.936055,10936.055 +7245,2025-06-10T21:57:43.521611-07:00,1006.7891235351562,10.935103,10935.103 +7246,2025-06-10T21:57:54.464887-07:00,1006.8106079101562,10.943276,10943.276 +7247,2025-06-10T21:58:05.402486-07:00,1006.75146484375,10.937599,10937.599 +7248,2025-06-10T21:58:16.345268-07:00,1006.7976684570312,10.942782,10942.782 +7249,2025-06-10T21:58:27.280287-07:00,1006.7698974609375,10.935019,10935.019 +7250,2025-06-10T21:58:38.215757-07:00,1006.7652587890625,10.93547,10935.47 +7251,2025-06-10T21:58:49.159659-07:00,1006.801025390625,10.943902,10943.902 +7252,2025-06-10T21:59:00.100046-07:00,1006.779541015625,10.940387,10940.387 +7253,2025-06-10T21:59:11.037428-07:00,1006.805908203125,10.937382,10937.382 +7254,2025-06-10T21:59:21.978368-07:00,1006.76171875,10.94094,10940.94 +7255,2025-06-10T21:59:32.911257-07:00,1006.79296875,10.932889,10932.889 +7256,2025-06-10T21:59:43.845743-07:00,1006.7652587890625,10.934486,10934.486 +7257,2025-06-10T21:59:54.792348-07:00,1006.80615234375,10.946605,10946.605 +7258,2025-06-10T22:00:05.728250-07:00,1006.8490600585938,10.935902,10935.902 +7259,2025-06-10T22:00:16.664266-07:00,1006.8096923828125,10.936016,10936.016 +7260,2025-06-10T22:00:27.611892-07:00,1006.7899780273438,10.947626,10947.626 +7261,2025-06-10T22:00:38.548303-07:00,1006.7965698242188,10.936411,10936.411 +7262,2025-06-10T22:00:49.493405-07:00,1006.834228515625,10.945102,10945.102 +7263,2025-06-10T22:01:00.432069-07:00,1006.7750854492188,10.938664,10938.664 +7264,2025-06-10T22:01:11.377265-07:00,1006.8096923828125,10.945196,10945.196 +7265,2025-06-10T22:01:22.318268-07:00,1006.80810546875,10.941003,10941.003 +7266,2025-06-10T22:01:33.262266-07:00,1006.814697265625,10.943998,10943.998 +7267,2025-06-10T22:01:44.204581-07:00,1006.8048706054688,10.942315,10942.315 +7268,2025-06-10T22:01:55.138254-07:00,1006.80810546875,10.933673,10933.673 +7269,2025-06-10T22:02:06.073890-07:00,1006.81298828125,10.935636,10935.636 +7270,2025-06-10T22:02:17.005520-07:00,1006.822998046875,10.93163,10931.63 +7271,2025-06-10T22:02:27.935547-07:00,1006.80810546875,10.930027,10930.027 +7272,2025-06-10T22:02:38.877264-07:00,1006.7918701171875,10.941717,10941.717 +7273,2025-06-10T22:02:49.805689-07:00,1006.8278198242188,10.928425,10928.425 +7274,2025-06-10T22:03:00.743288-07:00,1006.8262329101562,10.937599,10937.599 +7275,2025-06-10T22:03:11.688116-07:00,1006.8182983398438,10.944828,10944.828 +7276,2025-06-10T22:03:22.627494-07:00,1006.8165893554688,10.939378,10939.378 +7277,2025-06-10T22:03:33.563398-07:00,1006.8314208984375,10.935904,10935.904 +7278,2025-06-10T22:03:44.497479-07:00,1006.8429565429688,10.934081,10934.081 +7279,2025-06-10T22:03:55.438513-07:00,1006.828125,10.941034,10941.034 +7280,2025-06-10T22:04:06.371506-07:00,1006.803466796875,10.932993,10932.993 +7281,2025-06-10T22:04:17.310480-07:00,1006.8231201171875,10.938974,10938.974 +7282,2025-06-10T22:04:28.264453-07:00,1006.8314208984375,10.953973,10953.973 +7283,2025-06-10T22:04:39.203560-07:00,1006.8049926757812,10.939107,10939.107 +7284,2025-06-10T22:04:50.143423-07:00,1006.8049926757812,10.939863,10939.863 +7285,2025-06-10T22:05:01.078747-07:00,1006.8182983398438,10.935324,10935.324 +7286,2025-06-10T22:05:12.023428-07:00,1006.8099975585938,10.944681,10944.681 +7287,2025-06-10T22:05:22.959250-07:00,1006.8314208984375,10.935822,10935.822 +7288,2025-06-10T22:05:33.892994-07:00,1006.8182983398438,10.933744,10933.744 +7289,2025-06-10T22:05:44.833264-07:00,1006.8116455078125,10.94027,10940.27 +7290,2025-06-10T22:05:55.765341-07:00,1006.81494140625,10.932077,10932.077 +7291,2025-06-10T22:06:06.700264-07:00,1006.8082885742188,10.934923,10934.923 +7292,2025-06-10T22:06:17.639438-07:00,1006.841064453125,10.939174,10939.174 +7293,2025-06-10T22:06:28.578662-07:00,1006.8099975585938,10.939224,10939.224 +7294,2025-06-10T22:06:39.523268-07:00,1006.7901611328125,10.944606,10944.606 +7295,2025-06-10T22:06:50.456382-07:00,1006.8214721679688,10.933114,10933.114 +7296,2025-06-10T22:07:01.399784-07:00,1006.828125,10.943402,10943.402 +7297,2025-06-10T22:07:12.339300-07:00,1006.8231201171875,10.939516,10939.516 +7298,2025-06-10T22:07:23.280399-07:00,1006.8333740234375,10.941099,10941.099 +7299,2025-06-10T22:07:34.207654-07:00,1006.8531494140625,10.927255,10927.255 +7300,2025-06-10T22:07:45.152266-07:00,1006.8545532226562,10.944612,10944.612 +7301,2025-06-10T22:07:56.094479-07:00,1006.847900390625,10.942213,10942.213 +7302,2025-06-10T22:08:07.032174-07:00,1006.8317260742188,10.937695,10937.695 +7303,2025-06-10T22:08:17.967503-07:00,1006.8333740234375,10.935329,10935.329 +7304,2025-06-10T22:08:28.901563-07:00,1006.8729858398438,10.93406,10934.06 +7305,2025-06-10T22:08:39.826676-07:00,1006.8795166015625,10.925113,10925.113 +7306,2025-06-10T22:08:50.771611-07:00,1006.8663330078125,10.944935,10944.935 +7307,2025-06-10T22:09:01.705264-07:00,1006.8596801757812,10.933653,10933.653 +7308,2025-06-10T22:09:12.632887-07:00,1006.8729858398438,10.927623,10927.623 +7309,2025-06-10T22:09:23.573312-07:00,1006.8861083984375,10.940425,10940.425 +7310,2025-06-10T22:09:34.509487-07:00,1006.881103515625,10.936175,10936.175 +7311,2025-06-10T22:09:45.443613-07:00,1006.8976440429688,10.934126,10934.126 +7312,2025-06-10T22:09:56.381502-07:00,1006.8992919921875,10.937889,10937.889 +7313,2025-06-10T22:10:07.306320-07:00,1006.8890380859375,10.924818,10924.818 +7314,2025-06-10T22:10:18.245522-07:00,1006.8844604492188,10.939202,10939.202 +7315,2025-06-10T22:10:29.184328-07:00,1006.8758544921875,10.938806,10938.806 +7316,2025-06-10T22:10:40.108743-07:00,1006.8692016601562,10.924415,10924.415 +7317,2025-06-10T22:10:51.043462-07:00,1006.9021606445312,10.934719,10934.719 +7318,2025-06-10T22:11:01.972768-07:00,1006.8546752929688,10.929306,10929.306 +7319,2025-06-10T22:11:12.906806-07:00,1006.8976440429688,10.934038,10934.038 +7320,2025-06-10T22:11:23.839306-07:00,1006.9154663085938,10.9325,10932.5 +7321,2025-06-10T22:11:34.768273-07:00,1006.8926391601562,10.928967,10928.967 +7322,2025-06-10T22:11:45.698255-07:00,1006.9124145507812,10.929982,10929.982 +7323,2025-06-10T22:11:56.630646-07:00,1006.8826293945312,10.932391,10932.391 +7324,2025-06-10T22:12:07.554062-07:00,1006.9140625,10.923416,10923.416 +7325,2025-06-10T22:12:18.489577-07:00,1006.8876342773438,10.935515,10935.515 +7326,2025-06-10T22:12:29.416694-07:00,1006.9173583984375,10.927117,10927.117 +7327,2025-06-10T22:12:40.355932-07:00,1006.885986328125,10.939238,10939.238 +7328,2025-06-10T22:12:51.300193-07:00,1006.8843994140625,10.944261,10944.261 +7329,2025-06-10T22:13:02.237969-07:00,1006.8958740234375,10.937776,10937.776 +7330,2025-06-10T22:13:13.166418-07:00,1006.8909301757812,10.928449,10928.449 +7331,2025-06-10T22:13:24.100419-07:00,1006.88134765625,10.934001,10934.001 +7332,2025-06-10T22:13:35.039868-07:00,1006.8760986328125,10.939449,10939.449 +7333,2025-06-10T22:13:45.974266-07:00,1006.9076538085938,10.934398,10934.398 +7334,2025-06-10T22:13:56.900540-07:00,1006.884521484375,10.926274,10926.274 +7335,2025-06-10T22:14:07.841282-07:00,1006.8766479492188,10.940742,10940.742 +7336,2025-06-10T22:14:18.770324-07:00,1006.8892211914062,10.929042,10929.042 +7337,2025-06-10T22:14:29.710889-07:00,1006.8796997070312,10.940565,10940.565 +7338,2025-06-10T22:14:40.645416-07:00,1006.88623046875,10.934527,10934.527 +7339,2025-06-10T22:14:51.573046-07:00,1006.892822265625,10.92763,10927.63 +7340,2025-06-10T22:15:02.501262-07:00,1006.901123046875,10.928216,10928.216 +7341,2025-06-10T22:15:13.437243-07:00,1006.8978271484375,10.935981,10935.981 +7342,2025-06-10T22:15:24.360108-07:00,1006.914306640625,10.922865,10922.865 +7343,2025-06-10T22:15:35.291268-07:00,1006.8964233398438,10.93116,10931.16 +7344,2025-06-10T22:15:46.224523-07:00,1006.88330078125,10.933255,10933.255 +7345,2025-06-10T22:15:57.148261-07:00,1006.8699951171875,10.923738,10923.738 +7346,2025-06-10T22:16:08.086432-07:00,1006.8964233398438,10.938171,10938.171 +7347,2025-06-10T22:16:19.011268-07:00,1006.8994750976562,10.924836,10924.836 +7348,2025-06-10T22:16:29.954257-07:00,1006.91455078125,10.942989,10942.989 +7349,2025-06-10T22:16:40.888042-07:00,1006.912841796875,10.933785,10933.785 +7350,2025-06-10T22:16:51.816268-07:00,1006.9293823242188,10.928226,10928.226 +7351,2025-06-10T22:17:02.755553-07:00,1006.9227905273438,10.939285,10939.285 +7352,2025-06-10T22:17:13.686662-07:00,1006.899658203125,10.931109,10931.109 +7353,2025-06-10T22:17:24.614770-07:00,1006.9049072265625,10.928108,10928.108 +7354,2025-06-10T22:17:35.547545-07:00,1006.9425659179688,10.932775,10932.775 +7355,2025-06-10T22:17:46.481596-07:00,1006.91943359375,10.934051,10934.051 +7356,2025-06-10T22:17:57.411268-07:00,1006.9673461914062,10.929672,10929.672 +7357,2025-06-10T22:18:08.344341-07:00,1006.9181518554688,10.933073,10933.073 +7358,2025-06-10T22:18:19.282415-07:00,1006.973876953125,10.938074,10938.074 +7359,2025-06-10T22:18:30.213275-07:00,1006.9559936523438,10.93086,10930.86 +7360,2025-06-10T22:18:41.155447-07:00,1006.9788208007812,10.942172,10942.172 +7361,2025-06-10T22:18:52.084947-07:00,1006.9788208007812,10.9295,10929.5 +7362,2025-06-10T22:19:03.021770-07:00,1006.9609375,10.936823,10936.823 +7363,2025-06-10T22:19:13.943268-07:00,1006.989013671875,10.921498,10921.498 +7364,2025-06-10T22:19:24.880515-07:00,1007.0038452148438,10.937247,10937.247 +7365,2025-06-10T22:19:35.814404-07:00,1007.02197265625,10.933889,10933.889 +7366,2025-06-10T22:19:46.748268-07:00,1007.0186157226562,10.933864,10933.864 +7367,2025-06-10T22:19:57.681510-07:00,1007.00048828125,10.933242,10933.242 +7368,2025-06-10T22:20:08.610154-07:00,1007.0170288085938,10.928644,10928.644 +7369,2025-06-10T22:20:19.553487-07:00,1007.00048828125,10.943333,10943.333 +7370,2025-06-10T22:20:30.480679-07:00,1007.0120239257812,10.927192,10927.192 +7371,2025-06-10T22:20:41.412324-07:00,1007.0565795898438,10.931645,10931.645 +7372,2025-06-10T22:20:52.348525-07:00,1007.0186157226562,10.936201,10936.201 +7373,2025-06-10T22:21:03.282268-07:00,1007.02685546875,10.933743,10933.743 +7374,2025-06-10T22:21:14.218301-07:00,1007.0304565429688,10.936033,10936.033 +7375,2025-06-10T22:21:25.156101-07:00,1007.0466918945312,10.9378,10937.8 +7376,2025-06-10T22:21:36.090266-07:00,1007.05810546875,10.934165,10934.165 +7377,2025-06-10T22:21:47.032258-07:00,1007.0647583007812,10.941992,10941.992 +7378,2025-06-10T22:21:57.965254-07:00,1007.02392578125,10.932996,10932.996 +7379,2025-06-10T22:22:08.894597-07:00,1007.0089721679688,10.929343,10929.343 +7380,2025-06-10T22:22:19.827251-07:00,1007.025146484375,10.932654,10932.654 +7381,2025-06-10T22:22:30.761266-07:00,1007.0023193359375,10.934015,10934.015 +7382,2025-06-10T22:22:41.693664-07:00,1006.994140625,10.932398,10932.398 +7383,2025-06-10T22:22:52.631253-07:00,1006.9874877929688,10.937589,10937.589 +7384,2025-06-10T22:23:03.570742-07:00,1006.9861450195312,10.939489,10939.489 +7385,2025-06-10T22:23:14.505253-07:00,1007.0287475585938,10.934511,10934.511 +7386,2025-06-10T22:23:25.438306-07:00,1007.00732421875,10.933053,10933.053 +7387,2025-06-10T22:23:36.378916-07:00,1007.0023193359375,10.94061,10940.61 +7388,2025-06-10T22:23:47.313301-07:00,1007.0106201171875,10.934385,10934.385 +7389,2025-06-10T22:23:58.246428-07:00,1006.9874877929688,10.933127,10933.127 +7390,2025-06-10T22:24:09.191506-07:00,1007.013916015625,10.945078,10945.078 +7391,2025-06-10T22:24:20.122375-07:00,1006.9908447265625,10.930869,10930.869 +7392,2025-06-10T22:24:31.056514-07:00,1006.9993896484375,10.934139,10934.139 +7393,2025-06-10T22:24:41.995268-07:00,1006.9957885742188,10.938754,10938.754 +7394,2025-06-10T22:24:52.932494-07:00,1007.0125122070312,10.937226,10937.226 +7395,2025-06-10T22:25:03.868268-07:00,1006.9861450195312,10.935774,10935.774 +7396,2025-06-10T22:25:14.809449-07:00,1007.02392578125,10.941181,10941.181 +7397,2025-06-10T22:25:25.749862-07:00,1007.0125122070312,10.940413,10940.413 +7398,2025-06-10T22:25:36.682470-07:00,1006.994140625,10.932608,10932.608 +7399,2025-06-10T22:25:47.624668-07:00,1007.02392578125,10.942198,10942.198 +7400,2025-06-10T22:25:58.556514-07:00,1007.027099609375,10.931846,10931.846 +7401,2025-06-10T22:26:09.490784-07:00,1007.0419311523438,10.93427,10934.27 +7402,2025-06-10T22:26:20.430691-07:00,1007.00732421875,10.939907,10939.907 +7403,2025-06-10T22:26:31.372452-07:00,1007.013916015625,10.941761,10941.761 +7404,2025-06-10T22:26:42.304622-07:00,1007.027099609375,10.93217,10932.17 +7405,2025-06-10T22:26:53.241445-07:00,1007.03369140625,10.936823,10936.823 +7406,2025-06-10T22:27:04.183487-07:00,1007.0617065429688,10.942042,10942.042 +7407,2025-06-10T22:27:15.121773-07:00,1007.0570068359375,10.938286,10938.286 +7408,2025-06-10T22:27:26.054261-07:00,1007.0419311523438,10.932488,10932.488 +7409,2025-06-10T22:27:36.995353-07:00,1007.0454711914062,10.941092,10941.092 +7410,2025-06-10T22:27:47.929269-07:00,1007.0521240234375,10.933916,10933.916 +7411,2025-06-10T22:27:58.860270-07:00,1007.0521240234375,10.931001,10931.001 +7412,2025-06-10T22:28:09.799832-07:00,1007.0570068359375,10.939562,10939.562 +7413,2025-06-10T22:28:20.732266-07:00,1007.0702514648438,10.932434,10932.434 +7414,2025-06-10T22:28:31.673619-07:00,1007.0635986328125,10.941353,10941.353 +7415,2025-06-10T22:28:42.612298-07:00,1007.0570068359375,10.938679,10938.679 +7416,2025-06-10T22:28:53.540268-07:00,1007.0996704101562,10.92797,10927.97 +7417,2025-06-10T22:29:04.472758-07:00,1007.0850830078125,10.93249,10932.49 +7418,2025-06-10T22:29:15.410544-07:00,1007.0917358398438,10.937786,10937.786 +7419,2025-06-10T22:29:26.338370-07:00,1007.0917358398438,10.927826,10927.826 +7420,2025-06-10T22:29:37.267691-07:00,1007.0917358398438,10.929321,10929.321 +7421,2025-06-10T22:29:48.198080-07:00,1007.1048583984375,10.930389,10930.389 +7422,2025-06-10T22:29:59.131685-07:00,1007.0917358398438,10.933605,10933.605 +7423,2025-06-10T22:30:10.061169-07:00,1007.1392211914062,10.929484,10929.484 +7424,2025-06-10T22:30:20.993735-07:00,1007.1115112304688,10.932566,10932.566 +7425,2025-06-10T22:30:31.924305-07:00,1007.1163940429688,10.93057,10930.57 +7426,2025-06-10T22:30:42.850681-07:00,1007.08837890625,10.926376,10926.376 +7427,2025-06-10T22:30:53.781998-07:00,1007.1378173828125,10.931317,10931.317 +7428,2025-06-10T22:31:04.713960-07:00,1007.0965576171875,10.931962,10931.962 +7429,2025-06-10T22:31:15.644400-07:00,1007.1246948242188,10.93044,10930.44 +7430,2025-06-10T22:31:26.573710-07:00,1007.1229858398438,10.92931,10929.31 +7431,2025-06-10T22:31:37.506957-07:00,1007.07373046875,10.933247,10933.247 +7432,2025-06-10T22:31:48.439844-07:00,1007.1181030273438,10.932887,10932.887 +7433,2025-06-10T22:31:59.372321-07:00,1007.08837890625,10.932477,10932.477 +7434,2025-06-10T22:32:10.302740-07:00,1007.1361694335938,10.930419,10930.419 +7435,2025-06-10T22:32:21.227949-07:00,1007.1133422851562,10.925209,10925.209 +7436,2025-06-10T22:32:32.161702-07:00,1007.1032104492188,10.933753,10933.753 +7437,2025-06-10T22:32:43.094457-07:00,1007.1051025390625,10.932755,10932.755 +7438,2025-06-10T22:32:54.033077-07:00,1007.1116943359375,10.93862,10938.62 +7439,2025-06-10T22:33:04.968081-07:00,1007.16259765625,10.935004,10935.004 +7440,2025-06-10T22:33:15.896856-07:00,1007.1229858398438,10.928775,10928.775 +7441,2025-06-10T22:33:26.831752-07:00,1007.1656494140625,10.934896,10934.896 +7442,2025-06-10T22:33:37.759677-07:00,1007.1642456054688,10.927925,10927.925 +7443,2025-06-10T22:33:48.694406-07:00,1007.1589965820312,10.934729,10934.729 +7444,2025-06-10T22:33:59.623779-07:00,1007.1229858398438,10.929373,10929.373 +7445,2025-06-10T22:34:10.560698-07:00,1007.1738891601562,10.936919,10936.919 +7446,2025-06-10T22:34:21.489747-07:00,1007.1475219726562,10.929049,10929.049 +7447,2025-06-10T22:34:32.427018-07:00,1007.1378173828125,10.937271,10937.271 +7448,2025-06-10T22:34:43.351958-07:00,1007.1260375976562,10.92494,10924.94 +7449,2025-06-10T22:34:54.284733-07:00,1007.142578125,10.932775,10932.775 +7450,2025-06-10T22:35:05.218689-07:00,1007.1768798828125,10.933956,10933.956 +7451,2025-06-10T22:35:16.153019-07:00,1007.1702880859375,10.93433,10934.33 +7452,2025-06-10T22:35:27.091581-07:00,1007.1439208984375,10.938562,10938.562 +7453,2025-06-10T22:35:38.034935-07:00,1007.162353515625,10.943354,10943.354 +7454,2025-06-10T22:35:48.966727-07:00,1007.1917114257812,10.931792,10931.792 +7455,2025-06-10T22:35:59.905921-07:00,1007.1688842773438,10.939194,10939.194 +7456,2025-06-10T22:36:10.835967-07:00,1007.1475219726562,10.930046,10930.046 +7457,2025-06-10T22:36:21.774660-07:00,1007.1821899414062,10.938693,10938.693 +7458,2025-06-10T22:36:32.707693-07:00,1007.20654296875,10.933033,10933.033 +7459,2025-06-10T22:36:43.643413-07:00,1007.1951293945312,10.93572,10935.72 +7460,2025-06-10T22:36:54.575690-07:00,1007.1917114257812,10.932277,10932.277 +7461,2025-06-10T22:37:05.513057-07:00,1007.173583984375,10.937367,10937.367 +7462,2025-06-10T22:37:16.450838-07:00,1007.1951293945312,10.937781,10937.781 +7463,2025-06-10T22:37:27.374743-07:00,1007.1951293945312,10.923905,10923.905 +7464,2025-06-10T22:37:38.302916-07:00,1007.1934204101562,10.928173,10928.173 +7465,2025-06-10T22:37:49.227944-07:00,1007.20654296875,10.925028,10925.028 +7466,2025-06-10T22:38:00.159958-07:00,1007.1868896484375,10.932014,10932.014 +7467,2025-06-10T22:38:11.089223-07:00,1007.17529296875,10.929265,10929.265 +7468,2025-06-10T22:38:22.017696-07:00,1007.1802368164062,10.928473,10928.473 +7469,2025-06-10T22:38:32.956393-07:00,1007.181884765625,10.938697,10938.697 +7470,2025-06-10T22:38:43.884708-07:00,1007.1998291015625,10.928315,10928.315 +7471,2025-06-10T22:38:54.825080-07:00,1007.1687622070312,10.940372,10940.372 +7472,2025-06-10T22:39:05.753851-07:00,1007.1716918945312,10.928771,10928.771 +7473,2025-06-10T22:39:16.689870-07:00,1007.1799926757812,10.936019,10936.019 +7474,2025-06-10T22:39:27.621977-07:00,1007.1701049804688,10.932107,10932.107 +7475,2025-06-10T22:39:38.548990-07:00,1007.1931762695312,10.927013,10927.013 +7476,2025-06-10T22:39:49.481989-07:00,1007.1585693359375,10.932999,10932.999 +7477,2025-06-10T22:40:00.413177-07:00,1007.1470336914062,10.931188,10931.188 +7478,2025-06-10T22:40:11.354699-07:00,1007.153564453125,10.941522,10941.522 +7479,2025-06-10T22:40:22.282853-07:00,1007.1585693359375,10.928154,10928.154 +7480,2025-06-10T22:40:33.216831-07:00,1007.1931762695312,10.933978,10933.978 +7481,2025-06-10T22:40:44.150698-07:00,1007.18798828125,10.933867,10933.867 +7482,2025-06-10T22:40:55.085303-07:00,1007.168212890625,10.934605,10934.605 +7483,2025-06-10T22:41:06.019700-07:00,1007.1585693359375,10.934397,10934.397 +7484,2025-06-10T22:41:16.953987-07:00,1007.1931762695312,10.934287,10934.287 +7485,2025-06-10T22:41:27.886988-07:00,1007.201171875,10.933001,10933.001 +7486,2025-06-10T22:41:38.828383-07:00,1007.1568603515625,10.941395,10941.395 +7487,2025-06-10T22:41:49.756838-07:00,1007.1701049804688,10.928455,10928.455 +7488,2025-06-10T22:42:00.685891-07:00,1007.2028198242188,10.929053,10929.053 +7489,2025-06-10T22:42:11.624991-07:00,1007.1865844726562,10.9391,10939.1 +7490,2025-06-10T22:42:14.447057-07:00,1007.1849975585938,2.822066,2822.066 +7491,2025-06-10T22:42:22.554946-07:00,1007.1898193359375,8.107889,8107.889 +7492,2025-06-10T22:42:33.489567-07:00,1007.2179565429688,10.934621,10934.621 +7493,2025-06-10T22:42:44.416690-07:00,1007.24267578125,10.927123,10927.123 +7494,2025-06-10T22:42:55.351138-07:00,1007.1898193359375,10.934448,10934.448 +7495,2025-06-10T22:43:06.285698-07:00,1007.2030639648438,10.93456,10934.56 +7496,2025-06-10T22:43:17.226207-07:00,1007.2162475585938,10.940509,10940.509 +7497,2025-06-10T22:43:28.159953-07:00,1007.1981201171875,10.933746,10933.746 +7498,2025-06-10T22:43:39.090040-07:00,1007.2245483398438,10.930087,10930.087 +7499,2025-06-10T22:43:50.027683-07:00,1007.2228393554688,10.937643,10937.643 +7500,2025-06-10T22:44:00.956339-07:00,1007.2376708984375,10.928656,10928.656 +7501,2025-06-10T22:44:11.895678-07:00,1007.2376708984375,10.939339,10939.339 +7502,2025-06-10T22:44:22.825681-07:00,1007.2113037109375,10.930003,10930.003 +7503,2025-06-10T22:44:33.760016-07:00,1007.2443237304688,10.934335,10934.335 +7504,2025-06-10T22:44:44.680497-07:00,1007.21484375,10.920481,10920.481 +7505,2025-06-10T22:44:55.604946-07:00,1007.1851806640625,10.924449,10924.449 +7506,2025-06-10T22:45:06.533796-07:00,1007.2509155273438,10.92885,10928.85 +7507,2025-06-10T22:45:17.473863-07:00,1007.1917114257812,10.940067,10940.067 +7508,2025-06-10T22:45:28.399027-07:00,1007.2228393554688,10.925164,10925.164 +7509,2025-06-10T22:45:39.330838-07:00,1007.247802734375,10.931811,10931.811 +7510,2025-06-10T22:45:50.274904-07:00,1007.2346801757812,10.944066,10944.066 +7511,2025-06-10T22:46:01.200696-07:00,1007.24267578125,10.925792,10925.792 +7512,2025-06-10T22:46:12.146708-07:00,1007.24267578125,10.946012,10946.012 +7513,2025-06-10T22:46:23.076950-07:00,1007.2294311523438,10.930242,10930.242 +7514,2025-06-10T22:46:34.017934-07:00,1007.2263793945312,10.940984,10940.984 +7515,2025-06-10T22:46:44.949992-07:00,1007.2412719726562,10.932058,10932.058 +7516,2025-06-10T22:46:55.893735-07:00,1007.2742309570312,10.943743,10943.743 +7517,2025-06-10T22:47:06.822125-07:00,1007.2379760742188,10.92839,10928.39 +7518,2025-06-10T22:47:17.754701-07:00,1007.2742309570312,10.932576,10932.576 +7519,2025-06-10T22:47:28.695829-07:00,1007.2725830078125,10.941128,10941.128 +7520,2025-06-10T22:47:39.630333-07:00,1007.247802734375,10.934504,10934.504 +7521,2025-06-10T22:47:50.554814-07:00,1007.2528076171875,10.924481,10924.481 +7522,2025-06-10T22:48:01.487675-07:00,1007.26904296875,10.932861,10932.861 +7523,2025-06-10T22:48:12.422864-07:00,1007.2427978515625,10.935189,10935.189 +7524,2025-06-10T22:48:23.356486-07:00,1007.2626342773438,10.933622,10933.622 +7525,2025-06-10T22:48:34.291692-07:00,1007.2494506835938,10.935206,10935.206 +7526,2025-06-10T22:48:45.213351-07:00,1007.2659301757812,10.921659,10921.659 +7527,2025-06-10T22:48:56.147028-07:00,1007.2890625,10.933677,10933.677 +7528,2025-06-10T22:49:07.081439-07:00,1007.294189453125,10.934411,10934.411 +7529,2025-06-10T22:49:18.010699-07:00,1007.2776489257812,10.92926,10929.26 +7530,2025-06-10T22:49:28.944885-07:00,1007.2728271484375,10.934186,10934.186 +7531,2025-06-10T22:49:39.886746-07:00,1007.2529907226562,10.941861,10941.861 +7532,2025-06-10T22:49:50.813711-07:00,1007.2513427734375,10.926965,10926.965 +7533,2025-06-10T22:50:01.748943-07:00,1007.22021484375,10.935232,10935.232 +7534,2025-06-10T22:50:12.681011-07:00,1007.25,10.932068,10932.068 +7535,2025-06-10T22:50:23.609944-07:00,1007.2661743164062,10.928933,10928.933 +7536,2025-06-10T22:50:34.543685-07:00,1007.2380981445312,10.933741,10933.741 +7537,2025-06-10T22:50:45.474687-07:00,1007.256591796875,10.931002,10931.002 +7538,2025-06-10T22:50:56.408702-07:00,1007.2268676757812,10.934015,10934.015 +7539,2025-06-10T22:51:07.347693-07:00,1007.248291015625,10.938991,10938.991 +7540,2025-06-10T22:51:18.275320-07:00,1007.282958984375,10.927627,10927.627 +7541,2025-06-10T22:51:29.215317-07:00,1007.282958984375,10.939997,10939.997 +7542,2025-06-10T22:51:40.148703-07:00,1007.28955078125,10.933386,10933.386 +7543,2025-06-10T22:51:51.086043-07:00,1007.2796020507812,10.93734,10937.34 +7544,2025-06-10T22:52:02.017687-07:00,1007.2650146484375,10.931644,10931.644 +7545,2025-06-10T22:52:12.949696-07:00,1007.28125,10.932009,10932.009 +7546,2025-06-10T22:52:23.883693-07:00,1007.2960815429688,10.933997,10933.997 +7547,2025-06-10T22:52:34.822434-07:00,1007.2716674804688,10.938741,10938.741 +7548,2025-06-10T22:52:45.750861-07:00,1007.261474609375,10.928427,10928.427 +7549,2025-06-10T22:52:56.688842-07:00,1007.2861938476562,10.937981,10937.981 +7550,2025-06-10T22:53:07.621954-07:00,1007.2633666992188,10.933112,10933.112 +7551,2025-06-10T22:53:18.558748-07:00,1007.2501831054688,10.936794,10936.794 +7552,2025-06-10T22:53:29.492360-07:00,1007.27294921875,10.933612,10933.612 +7553,2025-06-10T22:53:40.421700-07:00,1007.2650146484375,10.92934,10929.34 +7554,2025-06-10T22:53:51.356893-07:00,1007.2501831054688,10.935193,10935.193 +7555,2025-06-10T22:54:02.285696-07:00,1007.27001953125,10.928803,10928.803 +7556,2025-06-10T22:54:13.219593-07:00,1007.2633666992188,10.933897,10933.897 +7557,2025-06-10T22:54:24.148963-07:00,1007.26171875,10.92937,10929.37 +7558,2025-06-10T22:54:35.082702-07:00,1007.2633666992188,10.933739,10933.739 +7559,2025-06-10T22:54:46.002882-07:00,1007.255126953125,10.92018,10920.18 +7560,2025-06-10T22:54:56.939210-07:00,1007.2633666992188,10.936328,10936.328 +7561,2025-06-10T22:55:07.875045-07:00,1007.2418823242188,10.935835,10935.835 +7562,2025-06-10T22:55:18.800697-07:00,1007.2471923828125,10.925652,10925.652 +7563,2025-06-10T22:55:29.736864-07:00,1007.255126953125,10.936167,10936.167 +7564,2025-06-10T22:55:40.672040-07:00,1007.2471923828125,10.935176,10935.176 +7565,2025-06-10T22:55:51.598949-07:00,1007.2471923828125,10.926909,10926.909 +7566,2025-06-10T22:56:02.532783-07:00,1007.2207641601562,10.933834,10933.834 +7567,2025-06-10T22:56:13.467678-07:00,1007.215576171875,10.934895,10934.895 +7568,2025-06-10T22:56:24.402144-07:00,1007.2322387695312,10.934466,10934.466 +7569,2025-06-10T22:56:35.336698-07:00,1007.2207641601562,10.934554,10934.554 +7570,2025-06-10T22:56:46.276840-07:00,1007.2435913085938,10.940142,10940.142 +7571,2025-06-10T22:56:57.204800-07:00,1007.2207641601562,10.92796,10927.96 +7572,2025-06-10T22:57:08.140065-07:00,1007.2142333984375,10.935265,10935.265 +7573,2025-06-10T22:57:19.067147-07:00,1007.1860961914062,10.927082,10927.082 +7574,2025-06-10T22:57:29.997689-07:00,1007.1992797851562,10.930542,10930.542 +7575,2025-06-10T22:57:40.932018-07:00,1007.1891479492188,10.934329,10934.329 +7576,2025-06-10T22:57:51.865138-07:00,1007.200927734375,10.93312,10933.12 +7577,2025-06-10T22:58:02.792133-07:00,1007.2273559570312,10.926995,10926.995 +7578,2025-06-10T22:58:13.724692-07:00,1007.192626953125,10.932559,10932.559 +7579,2025-06-10T22:58:24.650779-07:00,1007.2125244140625,10.926087,10926.087 +7580,2025-06-10T22:58:35.589588-07:00,1007.2405395507812,10.938809,10938.809 +7581,2025-06-10T22:58:46.508687-07:00,1007.2142333984375,10.919099,10919.099 +7582,2025-06-10T22:58:57.440673-07:00,1007.2435913085938,10.931986,10931.986 +7583,2025-06-10T22:59:08.375961-07:00,1007.2142333984375,10.935288,10935.288 +7584,2025-06-10T22:59:19.306920-07:00,1007.1992797851562,10.930959,10930.959 +7585,2025-06-10T22:59:30.244295-07:00,1007.2190551757812,10.937375,10937.375 +7586,2025-06-10T22:59:41.166700-07:00,1007.2142333984375,10.922405,10922.405 +7587,2025-06-10T22:59:52.101721-07:00,1007.2059326171875,10.935021,10935.021 +7588,2025-06-10T23:00:03.036704-07:00,1007.2207641601562,10.934983,10934.983 +7589,2025-06-10T23:00:13.962700-07:00,1007.2371826171875,10.925996,10925.996 +7590,2025-06-10T23:00:24.890302-07:00,1007.2174072265625,10.927602,10927.602 +7591,2025-06-10T23:00:35.820704-07:00,1007.2322387695312,10.930402,10930.402 +7592,2025-06-10T23:00:46.750124-07:00,1007.2125244140625,10.92942,10929.42 +7593,2025-06-10T23:00:57.683698-07:00,1007.2174072265625,10.933574,10933.574 +7594,2025-06-10T23:01:08.613702-07:00,1007.2190551757812,10.930004,10930.004 +7595,2025-06-10T23:01:19.540779-07:00,1007.2240600585938,10.927077,10927.077 +7596,2025-06-10T23:01:30.470651-07:00,1007.2371826171875,10.929872,10929.872 +7597,2025-06-10T23:01:41.406858-07:00,1007.21435546875,10.936207,10936.207 +7598,2025-06-10T23:01:52.326304-07:00,1007.2288818359375,10.919446,10919.446 +7599,2025-06-10T23:02:03.250080-07:00,1007.2192993164062,10.923776,10923.776 +7600,2025-06-10T23:02:14.177698-07:00,1007.2192993164062,10.927618,10927.618 +7601,2025-06-10T23:02:25.111864-07:00,1007.2259521484375,10.934166,10934.166 +7602,2025-06-10T23:02:36.041013-07:00,1007.2044677734375,10.929149,10929.149 +7603,2025-06-10T23:02:46.964204-07:00,1007.2374267578125,10.923191,10923.191 +7604,2025-06-10T23:02:57.892700-07:00,1007.236083984375,10.928496,10928.496 +7605,2025-06-10T23:03:08.831458-07:00,1007.2294311523438,10.938758,10938.758 +7606,2025-06-10T23:03:19.767718-07:00,1007.2079467773438,10.93626,10936.26 +7607,2025-06-10T23:03:30.701687-07:00,1007.1851806640625,10.933969,10933.969 +7608,2025-06-10T23:03:41.632681-07:00,1007.2294311523438,10.930994,10930.994 +7609,2025-06-10T23:03:52.558681-07:00,1007.236083984375,10.926,10926.0 +7610,2025-06-10T23:04:03.486692-07:00,1007.1983642578125,10.928011,10928.011 +7611,2025-06-10T23:04:14.416040-07:00,1007.234375,10.929348,10929.348 +7612,2025-06-10T23:04:25.354314-07:00,1007.193115234375,10.938274,10938.274 +7613,2025-06-10T23:04:36.276985-07:00,1007.1865844726562,10.922671,10922.671 +7614,2025-06-10T23:04:47.209707-07:00,1007.1983642578125,10.932722,10932.722 +7615,2025-06-10T23:04:58.141831-07:00,1007.2228393554688,10.932124,10932.124 +7616,2025-06-10T23:05:09.065696-07:00,1007.1851806640625,10.923865,10923.865 +7617,2025-06-10T23:05:20.009168-07:00,1007.19970703125,10.943472,10943.472 +7618,2025-06-10T23:05:30.938747-07:00,1007.1835327148438,10.929579,10929.579 +7619,2025-06-10T23:05:41.861242-07:00,1007.188232421875,10.922495,10922.495 +7620,2025-06-10T23:05:52.802929-07:00,1007.2145385742188,10.941687,10941.687 +7621,2025-06-10T23:06:03.730990-07:00,1007.193115234375,10.928061,10928.061 +7622,2025-06-10T23:06:14.661753-07:00,1007.1983642578125,10.930763,10930.763 +7623,2025-06-10T23:06:25.600031-07:00,1007.2246704101562,10.938278,10938.278 +7624,2025-06-10T23:06:36.526698-07:00,1007.206298828125,10.926667,10926.667 +7625,2025-06-10T23:06:47.456237-07:00,1007.1950073242188,10.929539,10929.539 +7626,2025-06-10T23:06:58.394849-07:00,1007.2115478515625,10.938612,10938.612 +7627,2025-06-10T23:07:09.328722-07:00,1007.2115478515625,10.933873,10933.873 +7628,2025-06-10T23:07:20.256702-07:00,1007.2033081054688,10.92798,10927.98 +7629,2025-06-10T23:07:31.190960-07:00,1007.1835327148438,10.934258,10934.258 +7630,2025-06-10T23:07:42.127873-07:00,1007.2033081054688,10.936913,10936.913 +7631,2025-06-10T23:07:53.056678-07:00,1007.2181396484375,10.928805,10928.805 +7632,2025-06-10T23:08:03.990684-07:00,1007.1785888671875,10.934006,10934.006 +7633,2025-06-10T23:08:14.923702-07:00,1007.1900634765625,10.933018,10933.018 +7634,2025-06-10T23:08:25.851746-07:00,1007.2129516601562,10.928044,10928.044 +7635,2025-06-10T23:08:36.783198-07:00,1007.19970703125,10.931452,10931.452 +7636,2025-06-10T23:08:47.714701-07:00,1007.179931640625,10.931503,10931.503 +7637,2025-06-10T23:08:58.643690-07:00,1007.206298828125,10.928989,10928.989 +7638,2025-06-10T23:09:09.577728-07:00,1007.1815795898438,10.934038,10934.038 +7639,2025-06-10T23:09:20.512830-07:00,1007.1587524414062,10.935102,10935.102 +7640,2025-06-10T23:09:31.455674-07:00,1007.1654052734375,10.942844,10942.844 +7641,2025-06-10T23:09:42.385685-07:00,1007.1720581054688,10.930011,10930.011 +7642,2025-06-10T23:09:53.314321-07:00,1007.16845703125,10.928636,10928.636 +7643,2025-06-10T23:10:04.255698-07:00,1007.1307983398438,10.941377,10941.377 +7644,2025-06-10T23:10:15.183122-07:00,1007.1422729492188,10.927424,10927.424 +7645,2025-06-10T23:10:26.121705-07:00,1007.1390380859375,10.938583,10938.583 +7646,2025-06-10T23:10:37.051947-07:00,1007.1439208984375,10.930242,10930.242 +7647,2025-06-10T23:10:47.992800-07:00,1007.14892578125,10.940853,10940.853 +7648,2025-06-10T23:10:58.928748-07:00,1007.1637573242188,10.935948,10935.948 +7649,2025-06-10T23:11:09.878698-07:00,1007.1571044921875,10.94995,10949.95 +7650,2025-06-10T23:11:20.811493-07:00,1007.181884765625,10.932795,10932.795 +7651,2025-06-10T23:11:31.748848-07:00,1007.1884155273438,10.937355,10937.355 +7652,2025-06-10T23:11:42.679998-07:00,1007.18017578125,10.93115,10931.15 +7653,2025-06-10T23:11:53.604844-07:00,1007.1920166015625,10.924846,10924.846 +7654,2025-06-10T23:12:04.550035-07:00,1007.18017578125,10.945191,10945.191 +7655,2025-06-10T23:12:15.483881-07:00,1007.1752319335938,10.933846,10933.846 +7656,2025-06-10T23:12:26.406241-07:00,1007.1573486328125,10.92236,10922.36 +7657,2025-06-10T23:12:37.338924-07:00,1007.1768798828125,10.932683,10932.683 +7658,2025-06-10T23:12:48.263579-07:00,1007.1554565429688,10.924655,10924.655 +7659,2025-06-10T23:12:59.196919-07:00,1007.1309204101562,10.93334,10933.34 +7660,2025-06-10T23:13:10.132072-07:00,1007.1603393554688,10.935153,10935.153 +7661,2025-06-10T23:13:21.055705-07:00,1007.1603393554688,10.923633,10923.633 +7662,2025-06-10T23:13:31.995420-07:00,1007.1339721679688,10.939715,10939.715 +7663,2025-06-10T23:13:42.923103-07:00,1007.068603515625,10.927683,10927.683 +7664,2025-06-10T23:13:53.852386-07:00,1007.0781860351562,10.929283,10929.283 +7665,2025-06-10T23:14:04.790692-07:00,1007.0963134765625,10.938306,10938.306 +7666,2025-06-10T23:14:15.732934-07:00,1007.0996704101562,10.942242,10942.242 +7667,2025-06-10T23:14:26.654700-07:00,1007.1045532226562,10.921766,10921.766 +7668,2025-06-10T23:14:37.589693-07:00,1007.1260986328125,10.934993,10934.993 +7669,2025-06-10T23:14:48.519773-07:00,1007.1177978515625,10.93008,10930.08 +7670,2025-06-10T23:14:59.456998-07:00,1007.121337890625,10.937225,10937.225 +7671,2025-06-10T23:15:10.385683-07:00,1007.1095581054688,10.928685,10928.685 +7672,2025-06-10T23:15:21.320207-07:00,1007.1045532226562,10.934524,10934.524 +7673,2025-06-10T23:15:32.237698-07:00,1007.1292724609375,10.917491,10917.491 +7674,2025-06-10T23:15:43.174432-07:00,1007.1177978515625,10.936734,10936.734 +7675,2025-06-10T23:15:54.102888-07:00,1007.1375122070312,10.928456,10928.456 +7676,2025-06-10T23:16:05.025763-07:00,1007.1279907226562,10.922875,10922.875 +7677,2025-06-10T23:16:15.957697-07:00,1007.1095581054688,10.931934,10931.934 +7678,2025-06-10T23:16:26.886020-07:00,1007.1095581054688,10.928323,10928.323 +7679,2025-06-10T23:16:37.819726-07:00,1007.121337890625,10.933706,10933.706 +7680,2025-06-10T23:16:48.754474-07:00,1007.1177978515625,10.934748,10934.748 +7681,2025-06-10T23:16:59.679978-07:00,1007.091552734375,10.925504,10925.504 +7682,2025-06-10T23:17:10.618775-07:00,1007.1111450195312,10.938797,10938.797 +7683,2025-06-10T23:17:21.546864-07:00,1007.1029052734375,10.928089,10928.089 +7684,2025-06-10T23:17:32.488031-07:00,1007.1177978515625,10.941167,10941.167 +7685,2025-06-10T23:17:43.420031-07:00,1007.121337890625,10.932,10932.0 +7686,2025-06-10T23:17:54.350188-07:00,1007.0765380859375,10.930157,10930.157 +7687,2025-06-10T23:18:05.286697-07:00,1007.0963134765625,10.936509,10936.509 +7688,2025-06-10T23:18:16.211997-07:00,1007.0751342773438,10.9253,10925.3 +7689,2025-06-10T23:18:27.146948-07:00,1007.0734252929688,10.934951,10934.951 +7690,2025-06-10T23:18:38.086029-07:00,1007.0963134765625,10.939081,10939.081 +7691,2025-06-10T23:18:49.014961-07:00,1007.0831298828125,10.928932,10928.932 +7692,2025-06-10T23:18:59.951683-07:00,1007.0817260742188,10.936722,10936.722 +7693,2025-06-10T23:19:10.892990-07:00,1007.1045532226562,10.941307,10941.307 +7694,2025-06-10T23:19:21.821997-07:00,1007.0751342773438,10.929007,10929.007 +7695,2025-06-10T23:19:32.763978-07:00,1007.0963134765625,10.941981,10941.981 +7696,2025-06-10T23:19:43.695927-07:00,1007.0963134765625,10.931949,10931.949 +7697,2025-06-10T23:19:54.637282-07:00,1007.0848388671875,10.941355,10941.355 +7698,2025-06-10T23:20:05.567116-07:00,1007.08837890625,10.929834,10929.834 +7699,2025-06-10T23:20:16.499201-07:00,1007.0751342773438,10.932085,10932.085 +7700,2025-06-10T23:20:27.440585-07:00,1007.06689453125,10.941384,10941.384 +7701,2025-06-10T23:20:38.373677-07:00,1007.0537719726562,10.933092,10933.092 +7702,2025-06-10T23:20:49.305954-07:00,1007.047119140625,10.932277,10932.277 +7703,2025-06-10T23:21:00.242696-07:00,1007.03564453125,10.936742,10936.742 +7704,2025-06-10T23:21:11.183687-07:00,1007.080078125,10.940991,10940.991 +7705,2025-06-10T23:21:22.110720-07:00,1007.0487670898438,10.927033,10927.033 +7706,2025-06-10T23:21:33.046860-07:00,1007.03564453125,10.93614,10936.14 +7707,2025-06-10T23:21:43.985994-07:00,1007.055419921875,10.939134,10939.134 +7708,2025-06-10T23:21:54.915782-07:00,1007.055419921875,10.929788,10929.788 +7709,2025-06-10T23:22:05.843075-07:00,1007.02734375,10.927293,10927.293 +7710,2025-06-10T23:22:16.776688-07:00,1007.0404663085938,10.933613,10933.613 +7711,2025-06-10T23:22:27.717960-07:00,1007.0435791015625,10.941272,10941.272 +7712,2025-06-10T23:22:38.663651-07:00,1007.0303955078125,10.945691,10945.691 +7713,2025-06-10T23:22:49.598687-07:00,1007.0633544921875,10.935036,10935.036 +7714,2025-06-10T23:23:00.527130-07:00,1007.03564453125,10.928443,10928.443 +7715,2025-06-10T23:23:11.470685-07:00,1007.0537719726562,10.943555,10943.555 +7716,2025-06-10T23:23:22.398015-07:00,1007.06201171875,10.92733,10927.33 +7717,2025-06-10T23:23:33.333685-07:00,1007.0751342773438,10.93567,10935.67 +7718,2025-06-10T23:23:44.273707-07:00,1007.020751953125,10.940022,10940.022 +7719,2025-06-10T23:23:55.209351-07:00,1007.03564453125,10.935644,10935.644 +7720,2025-06-10T23:24:06.140695-07:00,1007.0487670898438,10.931344,10931.344 +7721,2025-06-10T23:24:17.075015-07:00,1007.029052734375,10.93432,10934.32 +7722,2025-06-10T23:24:28.007033-07:00,1007.0435791015625,10.932018,10932.018 +7723,2025-06-10T23:24:38.943158-07:00,1007.033935546875,10.936125,10936.125 +7724,2025-06-10T23:24:49.870688-07:00,1007.01416015625,10.92753,10927.53 +7725,2025-06-10T23:25:00.813735-07:00,1007.0633544921875,10.943047,10943.047 +7726,2025-06-10T23:25:11.736953-07:00,1007.0421752929688,10.923218,10923.218 +7727,2025-06-10T23:25:22.681688-07:00,1007.03564453125,10.944735,10944.735 +7728,2025-06-10T23:25:33.611013-07:00,1007.033935546875,10.929325,10929.325 +7729,2025-06-10T23:25:44.547951-07:00,1007.0487670898438,10.936938,10936.938 +7730,2025-06-10T23:25:55.491636-07:00,1007.0487670898438,10.943685,10943.685 +7731,2025-06-10T23:26:06.419000-07:00,1007.02734375,10.927364,10927.364 +7732,2025-06-10T23:26:17.354078-07:00,1007.055419921875,10.935078,10935.078 +7733,2025-06-10T23:26:28.283698-07:00,1007.0751342773438,10.92962,10929.62 +7734,2025-06-10T23:26:39.212987-07:00,1007.0567016601562,10.929289,10929.289 +7735,2025-06-10T23:26:50.145692-07:00,1007.068603515625,10.932705,10932.705 +7736,2025-06-10T23:27:01.079333-07:00,1007.047119140625,10.933641,10933.641 +7737,2025-06-10T23:27:12.017850-07:00,1007.0505981445312,10.938517,10938.517 +7738,2025-06-10T23:27:22.948679-07:00,1007.0817260742188,10.930829,10930.829 +7739,2025-06-10T23:27:33.876705-07:00,1007.060302734375,10.928026,10928.026 +7740,2025-06-10T23:27:44.811768-07:00,1007.06689453125,10.935063,10935.063 +7741,2025-06-10T23:27:55.737694-07:00,1007.0572509765625,10.925926,10925.926 +7742,2025-06-10T23:28:06.671810-07:00,1007.0751342773438,10.934116,10934.116 +7743,2025-06-10T23:28:17.614975-07:00,1007.0687255859375,10.943165,10943.165 +7744,2025-06-10T23:28:28.546693-07:00,1007.0687255859375,10.931718,10931.718 +7745,2025-06-10T23:28:39.487127-07:00,1007.0490112304688,10.940434,10940.434 +7746,2025-06-10T23:28:50.420991-07:00,1007.0639038085938,10.933864,10933.864 +7747,2025-06-10T23:29:01.354910-07:00,1007.0819702148438,10.933919,10933.919 +7748,2025-06-10T23:29:12.290736-07:00,1007.0640869140625,10.935826,10935.826 +7749,2025-06-10T23:29:23.242360-07:00,1007.07373046875,10.951624,10951.624 +7750,2025-06-10T23:29:34.173372-07:00,1007.0525512695312,10.931012,10931.012 +7751,2025-06-10T23:29:45.105365-07:00,1007.0904541015625,10.931993,10931.993 +7752,2025-06-10T23:29:56.041816-07:00,1007.0887451171875,10.936451,10936.451 +7753,2025-06-10T23:30:06.972774-07:00,1007.0822143554688,10.930958,10930.958 +7754,2025-06-10T23:30:17.898373-07:00,1007.0970458984375,10.925599,10925.599 +7755,2025-06-10T23:30:28.834621-07:00,1007.1234130859375,10.936248,10936.248 +7756,2025-06-10T23:30:39.767631-07:00,1007.0804443359375,10.93301,10933.01 +7757,2025-06-10T23:30:50.701488-07:00,1007.0772705078125,10.933857,10933.857 +7758,2025-06-10T23:31:01.648066-07:00,1007.0739135742188,10.946578,10946.578 +7759,2025-06-10T23:31:12.580695-07:00,1007.0936889648438,10.932629,10932.629 +7760,2025-06-10T23:31:23.519407-07:00,1007.0804443359375,10.938712,10938.712 +7761,2025-06-10T23:31:34.452949-07:00,1007.0923461914062,10.933542,10933.542 +7762,2025-06-10T23:31:45.397372-07:00,1007.098876953125,10.944423,10944.423 +7763,2025-06-10T23:31:56.327695-07:00,1007.0923461914062,10.930323,10930.323 +7764,2025-06-10T23:32:07.260377-07:00,1007.0857543945312,10.932682,10932.682 +7765,2025-06-10T23:32:18.201645-07:00,1007.1134643554688,10.941268,10941.268 +7766,2025-06-10T23:32:29.140665-07:00,1007.0758056640625,10.93902,10939.02 +7767,2025-06-10T23:32:40.071377-07:00,1007.1134643554688,10.930712,10930.712 +7768,2025-06-10T23:32:51.006736-07:00,1007.1318969726562,10.935359,10935.359 +7769,2025-06-10T23:33:01.939372-07:00,1007.10546875,10.932636,10932.636 +7770,2025-06-10T23:33:12.871377-07:00,1007.1318969726562,10.932005,10932.005 +7771,2025-06-10T23:33:23.802373-07:00,1007.1398315429688,10.930996,10930.996 +7772,2025-06-10T23:33:34.732776-07:00,1007.1450805664062,10.930403,10930.403 +7773,2025-06-10T23:33:45.678375-07:00,1007.09423828125,10.945599,10945.599 +7774,2025-06-10T23:33:56.611412-07:00,1007.1367797851562,10.933037,10933.037 +7775,2025-06-10T23:34:07.562617-07:00,1007.1529541015625,10.951205,10951.205 +7776,2025-06-10T23:34:18.491520-07:00,1007.1464233398438,10.928903,10928.903 +7777,2025-06-10T23:34:29.424488-07:00,1007.1351318359375,10.932968,10932.968 +7778,2025-06-10T23:34:40.360215-07:00,1007.1235961914062,10.935727,10935.727 +7779,2025-06-10T23:34:51.304364-07:00,1007.1631469726562,10.944149,10944.149 +7780,2025-06-10T23:35:02.241366-07:00,1007.130126953125,10.937002,10937.002 +7781,2025-06-10T23:35:13.174384-07:00,1007.1450805664062,10.933018,10933.018 +7782,2025-06-10T23:35:24.108402-07:00,1007.1398315429688,10.934018,10934.018 +7783,2025-06-10T23:35:35.049281-07:00,1007.1517333984375,10.940879,10940.879 +7784,2025-06-10T23:35:45.977572-07:00,1007.1170043945312,10.928291,10928.291 +7785,2025-06-10T23:35:56.920370-07:00,1007.1415405273438,10.942798,10942.798 +7786,2025-06-10T23:36:07.845355-07:00,1007.1170043945312,10.924985,10924.985 +7787,2025-06-10T23:36:18.793372-07:00,1007.0923461914062,10.948017,10948.017 +7788,2025-06-10T23:36:29.719624-07:00,1007.1038208007812,10.926252,10926.252 +7789,2025-06-10T23:36:40.665375-07:00,1007.1234130859375,10.945751,10945.751 +7790,2025-06-10T23:36:51.600488-07:00,1007.1085815429688,10.935113,10935.113 +7791,2025-06-10T23:37:02.534551-07:00,1007.1217041015625,10.934063,10934.063 +7792,2025-06-10T23:37:13.470359-07:00,1007.0791625976562,10.935808,10935.808 +7793,2025-06-10T23:37:24.400637-07:00,1007.0955200195312,10.930278,10930.278 +7794,2025-06-10T23:37:35.330365-07:00,1007.09423828125,10.929728,10929.728 +7795,2025-06-10T23:37:46.265749-07:00,1007.0955200195312,10.935384,10935.384 +7796,2025-06-10T23:37:57.201493-07:00,1007.1104736328125,10.935744,10935.744 +7797,2025-06-10T23:38:08.130345-07:00,1007.13330078125,10.928852,10928.852 +7798,2025-06-10T23:38:19.066361-07:00,1007.10546875,10.936016,10936.016 +7799,2025-06-10T23:38:30.003768-07:00,1007.1104736328125,10.937407,10937.407 +7800,2025-06-10T23:38:40.934377-07:00,1007.1007690429688,10.930609,10930.609 +7801,2025-06-10T23:38:51.872323-07:00,1007.1007690429688,10.937946,10937.946 +7802,2025-06-10T23:39:02.800642-07:00,1007.1187744140625,10.928319,10928.319 +7803,2025-06-10T23:39:13.727618-07:00,1007.1087646484375,10.926976,10926.976 +7804,2025-06-10T23:39:24.656379-07:00,1007.0955200195312,10.928761,10928.761 +7805,2025-06-10T23:39:32.170594-07:00,1007.1007690429688,7.514215,7514.215 +7806,2025-06-10T23:39:35.583841-07:00,1007.1073608398438,3.413247,3413.247 +7807,2025-06-10T23:39:46.508431-07:00,1007.12060546875,10.92459,10924.59 +7808,2025-06-10T23:39:57.433151-07:00,1007.1219482421875,10.92472,10924.72 +7809,2025-06-10T23:40:08.363798-07:00,1007.1123657226562,10.930647,10930.647 +7810,2025-06-10T23:40:19.293616-07:00,1007.1152954101562,10.929818,10929.818 +7811,2025-06-10T23:40:30.217508-07:00,1007.12060546875,10.923892,10923.892 +7812,2025-06-10T23:40:41.145747-07:00,1007.118896484375,10.928239,10928.239 +7813,2025-06-10T23:40:52.082685-07:00,1007.1007690429688,10.936938,10936.938 +7814,2025-06-10T23:41:03.002662-07:00,1007.1219482421875,10.919977,10919.977 +7815,2025-06-10T23:41:13.939592-07:00,1007.1007690429688,10.93693,10936.93 +7816,2025-06-10T23:41:24.871629-07:00,1007.0974731445312,10.932037,10932.037 +7817,2025-06-10T23:41:35.800423-07:00,1007.1040649414062,10.928794,10928.794 +7818,2025-06-10T23:41:46.740366-07:00,1007.092529296875,10.939943,10939.943 +7819,2025-06-10T23:41:57.673660-07:00,1007.127197265625,10.933294,10933.294 +7820,2025-06-10T23:42:08.606424-07:00,1007.1091918945312,10.932764,10932.764 +7821,2025-06-10T23:42:19.532634-07:00,1007.110595703125,10.92621,10926.21 +7822,2025-06-10T23:42:30.468514-07:00,1007.1073608398438,10.93588,10935.88 +7823,2025-06-10T23:42:41.406973-07:00,1007.118896484375,10.938459,10938.459 +7824,2025-06-10T23:42:52.334459-07:00,1007.1141967773438,10.927486,10927.486 +7825,2025-06-10T23:43:03.267734-07:00,1007.1238403320312,10.933275,10933.275 +7826,2025-06-10T23:43:14.209359-07:00,1007.166748046875,10.941625,10941.625 +7827,2025-06-10T23:43:25.148369-07:00,1007.1422119140625,10.93901,10939.01 +7828,2025-06-10T23:43:36.071479-07:00,1007.1453247070312,10.92311,10923.11 +7829,2025-06-10T23:43:47.011363-07:00,1007.1746826171875,10.939884,10939.884 +7830,2025-06-10T23:43:57.945866-07:00,1007.153564453125,10.934503,10934.503 +7831,2025-06-10T23:44:08.872570-07:00,1007.1554565429688,10.926704,10926.704 +7832,2025-06-10T23:44:19.809605-07:00,1007.1488037109375,10.937035,10937.035 +7833,2025-06-10T23:44:30.738397-07:00,1007.163330078125,10.928792,10928.792 +7834,2025-06-10T23:44:41.666340-07:00,1007.1620483398438,10.927943,10927.943 +7835,2025-06-10T23:44:52.595257-07:00,1007.147216796875,10.928917,10928.917 +7836,2025-06-10T23:45:03.529981-07:00,1007.1405639648438,10.934724,10934.724 +7837,2025-06-10T23:45:14.461369-07:00,1007.1649780273438,10.931388,10931.388 +7838,2025-06-10T23:45:25.393665-07:00,1007.1454467773438,10.932296,10932.296 +7839,2025-06-10T23:45:36.324626-07:00,1007.138916015625,10.930961,10930.961 +7840,2025-06-10T23:45:47.258657-07:00,1007.130615234375,10.934031,10934.031 +7841,2025-06-10T23:45:58.194408-07:00,1007.1240844726562,10.935751,10935.751 +7842,2025-06-10T23:46:09.128732-07:00,1007.150390625,10.934324,10934.324 +7843,2025-06-10T23:46:20.061368-07:00,1007.1437377929688,10.932636,10932.636 +7844,2025-06-10T23:46:30.993425-07:00,1007.1603393554688,10.932057,10932.057 +7845,2025-06-10T23:46:41.919374-07:00,1007.13720703125,10.925949,10925.949 +7846,2025-06-10T23:46:52.853715-07:00,1007.1322631835938,10.934341,10934.341 +7847,2025-06-10T23:47:03.782502-07:00,1007.15869140625,10.928787,10928.787 +7848,2025-06-10T23:47:14.722776-07:00,1007.1537475585938,10.940274,10940.274 +7849,2025-06-10T23:47:25.646343-07:00,1007.1818237304688,10.923567,10923.567 +7850,2025-06-10T23:47:36.584667-07:00,1007.1520385742188,10.938324,10938.324 +7851,2025-06-10T23:47:47.512372-07:00,1007.1603393554688,10.927705,10927.705 +7852,2025-06-10T23:47:58.449826-07:00,1007.1603393554688,10.937454,10937.454 +7853,2025-06-10T23:48:09.381419-07:00,1007.178466796875,10.931593,10931.593 +7854,2025-06-10T23:48:20.322365-07:00,1007.15869140625,10.940946,10940.946 +7855,2025-06-10T23:48:31.247373-07:00,1007.178466796875,10.925008,10925.008 +7856,2025-06-10T23:48:42.184342-07:00,1007.1735229492188,10.936969,10936.969 +7857,2025-06-10T23:48:53.118542-07:00,1007.1849975585938,10.9342,10934.2 +7858,2025-06-10T23:49:04.051363-07:00,1007.178466796875,10.932821,10932.821 +7859,2025-06-10T23:49:14.982502-07:00,1007.178466796875,10.931139,10931.139 +7860,2025-06-10T23:49:25.909372-07:00,1007.15869140625,10.92687,10926.87 +7861,2025-06-10T23:49:36.843905-07:00,1007.15869140625,10.934533,10934.533 +7862,2025-06-10T23:49:47.779369-07:00,1007.1556396484375,10.935464,10935.464 +7863,2025-06-10T23:49:58.702058-07:00,1007.1226806640625,10.922689,10922.689 +7864,2025-06-10T23:50:09.633377-07:00,1007.1621704101562,10.931319,10931.319 +7865,2025-06-10T23:50:20.565540-07:00,1007.1766967773438,10.932163,10932.163 +7866,2025-06-10T23:50:31.502372-07:00,1007.1687622070312,10.936832,10936.832 +7867,2025-06-10T23:50:42.424370-07:00,1007.1652221679688,10.921998,10921.998 +7868,2025-06-10T23:50:53.357356-07:00,1007.183349609375,10.932986,10932.986 +7869,2025-06-10T23:51:04.285440-07:00,1007.1556396484375,10.928084,10928.084 +7870,2025-06-10T23:51:15.218600-07:00,1007.1934204101562,10.93316,10933.16 +7871,2025-06-10T23:51:26.139362-07:00,1007.18994140625,10.920762,10920.762 +7872,2025-06-10T23:51:37.062704-07:00,1007.1802978515625,10.923342,10923.342 +7873,2025-06-10T23:51:47.994377-07:00,1007.1820068359375,10.931673,10931.673 +7874,2025-06-10T23:51:58.924633-07:00,1007.1820068359375,10.930256,10930.256 +7875,2025-06-10T23:52:09.857491-07:00,1007.1671142578125,10.932858,10932.858 +7876,2025-06-10T23:52:20.796576-07:00,1007.1671142578125,10.939085,10939.085 +7877,2025-06-10T23:52:31.725377-07:00,1007.1671142578125,10.928801,10928.801 +7878,2025-06-10T23:52:42.658796-07:00,1007.1754150390625,10.933419,10933.419 +7879,2025-06-10T23:52:53.588482-07:00,1007.1687622070312,10.929686,10929.686 +7880,2025-06-10T23:53:04.524635-07:00,1007.170166015625,10.936153,10936.153 +7881,2025-06-10T23:53:15.451368-07:00,1007.1687622070312,10.926733,10926.733 +7882,2025-06-10T23:53:26.381314-07:00,1007.1621704101562,10.929946,10929.946 +7883,2025-06-10T23:53:37.319199-07:00,1007.1556396484375,10.937885,10937.885 +7884,2025-06-10T23:53:48.251561-07:00,1007.158935546875,10.932362,10932.362 +7885,2025-06-10T23:53:59.180404-07:00,1007.1737670898438,10.928843,10928.843 +7886,2025-06-10T23:54:10.116379-07:00,1007.1390380859375,10.935975,10935.975 +7887,2025-06-10T23:54:21.039375-07:00,1007.1376342773438,10.922996,10922.996 +7888,2025-06-10T23:54:31.978455-07:00,1007.144287109375,10.93908,10939.08 +7889,2025-06-10T23:54:42.911754-07:00,1007.1785888671875,10.933299,10933.299 +7890,2025-06-10T23:54:53.837661-07:00,1007.158935546875,10.925907,10925.907 +7891,2025-06-10T23:55:04.773619-07:00,1007.12451171875,10.935958,10935.958 +7892,2025-06-10T23:55:15.700375-07:00,1007.1624145507812,10.926756,10926.756 +7893,2025-06-10T23:55:26.637572-07:00,1007.144287109375,10.937197,10937.197 +7894,2025-06-10T23:55:37.567357-07:00,1007.12451171875,10.929785,10929.785 +7895,2025-06-10T23:55:48.495660-07:00,1007.131103515625,10.928303,10928.303 +7896,2025-06-10T23:55:59.419667-07:00,1007.135986328125,10.924007,10924.007 +7897,2025-06-10T23:56:10.352499-07:00,1007.114501953125,10.932832,10932.832 +7898,2025-06-10T23:56:21.285856-07:00,1007.122802734375,10.933357,10933.357 +7899,2025-06-10T23:56:32.214479-07:00,1007.122802734375,10.928623,10928.623 +7900,2025-06-10T23:56:43.150449-07:00,1007.0934448242188,10.93597,10935.97 +7901,2025-06-10T23:56:54.073349-07:00,1007.0868530273438,10.9229,10922.9 +7902,2025-06-10T23:57:05.008867-07:00,1007.1162719726562,10.935518,10935.518 +7903,2025-06-10T23:57:15.936374-07:00,1007.1013793945312,10.927507,10927.507 +7904,2025-06-10T23:57:26.866507-07:00,1007.122802734375,10.930133,10930.133 +7905,2025-06-10T23:57:37.799710-07:00,1007.083251953125,10.933203,10933.203 +7906,2025-06-10T23:57:48.726817-07:00,1007.0964965820312,10.927107,10927.107 +7907,2025-06-10T23:57:59.651377-07:00,1007.0948486328125,10.92456,10924.56 +7908,2025-06-10T23:58:10.573369-07:00,1007.0999755859375,10.921992,10921.992 +7909,2025-06-10T23:58:21.502295-07:00,1007.1193237304688,10.928926,10928.926 +7910,2025-06-10T23:58:32.435367-07:00,1007.0670166015625,10.933072,10933.072 +7911,2025-06-10T23:58:43.366699-07:00,1007.0881958007812,10.931332,10931.332 +7912,2025-06-10T23:58:54.304582-07:00,1007.08984375,10.937883,10937.883 +7913,2025-06-10T23:59:05.232987-07:00,1007.0948486328125,10.928405,10928.405 +7914,2025-06-10T23:59:16.156375-07:00,1007.0881958007812,10.923388,10923.388 +7915,2025-06-10T23:59:27.090666-07:00,1007.0881958007812,10.934291,10934.291 +7916,2025-06-10T23:59:38.024519-07:00,1007.0604858398438,10.933853,10933.853 +7917,2025-06-10T23:59:48.958740-07:00,1007.122802734375,10.934221,10934.221 +7918,2025-06-10T23:59:59.886377-07:00,1007.0703125,10.927637,10927.637 +7919,2025-06-11T00:00:10.816693-07:00,1007.0604858398438,10.930316,10930.316 +7920,2025-06-11T00:00:21.748793-07:00,1007.0587768554688,10.9321,10932.1 +7921,2025-06-11T00:00:32.674422-07:00,1007.08154296875,10.925629,10925.629 +7922,2025-06-11T00:00:43.605601-07:00,1007.1031494140625,10.931179,10931.179 +7923,2025-06-11T00:00:54.541633-07:00,1007.0736694335938,10.936032,10936.032 +7924,2025-06-11T00:01:05.467401-07:00,1007.04736328125,10.925768,10925.768 +7925,2025-06-11T00:01:16.404498-07:00,1007.08154296875,10.937097,10937.097 +7926,2025-06-11T00:01:27.327373-07:00,1007.08154296875,10.922875,10922.875 +7927,2025-06-11T00:01:38.267932-07:00,1007.0552368164062,10.940559,10940.559 +7928,2025-06-11T00:01:49.195377-07:00,1007.0635375976562,10.927445,10927.445 +7929,2025-06-11T00:02:00.125015-07:00,1007.0618896484375,10.929638,10929.638 +7930,2025-06-11T00:02:11.057362-07:00,1007.08984375,10.932347,10932.347 +7931,2025-06-11T00:02:21.993643-07:00,1007.083251953125,10.936281,10936.281 +7932,2025-06-11T00:02:32.921654-07:00,1007.0767211914062,10.928011,10928.011 +7933,2025-06-11T00:02:43.857243-07:00,1007.0850219726562,10.935589,10935.589 +7934,2025-06-11T00:02:54.782619-07:00,1007.04736328125,10.925376,10925.376 +7935,2025-06-11T00:03:05.711730-07:00,1007.0767211914062,10.929111,10929.111 +7936,2025-06-11T00:03:16.648366-07:00,1007.0736694335938,10.936636,10936.636 +7937,2025-06-11T00:03:27.582423-07:00,1007.0552368164062,10.934057,10934.057 +7938,2025-06-11T00:03:38.514366-07:00,1007.08154296875,10.931943,10931.943 +7939,2025-06-11T00:03:49.440686-07:00,1007.0538940429688,10.92632,10926.32 +7940,2025-06-11T00:04:00.370073-07:00,1007.0407104492188,10.929387,10929.387 +7941,2025-06-11T00:04:11.301774-07:00,1007.0407104492188,10.931701,10931.701 +7942,2025-06-11T00:04:22.235058-07:00,1007.0618896484375,10.933284,10933.284 +7943,2025-06-11T00:04:33.169697-07:00,1007.05712890625,10.934639,10934.639 +7944,2025-06-11T00:04:44.099349-07:00,1007.0554809570312,10.929652,10929.652 +7945,2025-06-11T00:04:55.038738-07:00,1007.0736694335938,10.939389,10939.389 +7946,2025-06-11T00:05:05.965971-07:00,1007.0934448242188,10.927233,10927.233 +7947,2025-06-11T00:05:16.896664-07:00,1007.072021484375,10.930693,10930.693 +7948,2025-06-11T00:05:27.824637-07:00,1007.07861328125,10.927973,10927.973 +7949,2025-06-11T00:05:38.753236-07:00,1007.05712890625,10.928599,10928.599 +7950,2025-06-11T00:05:49.681625-07:00,1007.0488891601562,10.928389,10928.389 +7951,2025-06-11T00:06:00.610957-07:00,1007.0752563476562,10.929332,10929.332 +7952,2025-06-11T00:06:11.549685-07:00,1007.06201171875,10.938728,10938.728 +7953,2025-06-11T00:06:22.484710-07:00,1007.0752563476562,10.935025,10935.025 +7954,2025-06-11T00:06:33.413522-07:00,1007.068603515625,10.928812,10928.812 +7955,2025-06-11T00:06:44.341395-07:00,1007.090087890625,10.927873,10927.873 +7956,2025-06-11T00:06:55.265424-07:00,1007.07861328125,10.924029,10924.029 +7957,2025-06-11T00:07:06.205878-07:00,1007.0488891601562,10.940454,10940.454 +7958,2025-06-11T00:07:17.134362-07:00,1007.0834350585938,10.928484,10928.484 +7959,2025-06-11T00:07:28.064980-07:00,1007.06201171875,10.930618,10930.618 +7960,2025-06-11T00:07:38.995160-07:00,1007.068603515625,10.93018,10930.18 +7961,2025-06-11T00:07:49.936357-07:00,1007.068603515625,10.941197,10941.197 +7962,2025-06-11T00:08:00.871374-07:00,1007.081787109375,10.935017,10935.017 +7963,2025-06-11T00:08:11.805728-07:00,1007.0672607421875,10.934354,10934.354 +7964,2025-06-11T00:08:22.741358-07:00,1007.068603515625,10.93563,10935.63 +7965,2025-06-11T00:08:33.673622-07:00,1007.0870361328125,10.932264,10932.264 +7966,2025-06-11T00:08:44.609569-07:00,1007.0739135742188,10.935947,10935.947 +7967,2025-06-11T00:08:55.547617-07:00,1007.0739135742188,10.938048,10938.048 +7968,2025-06-11T00:09:06.480657-07:00,1007.0884399414062,10.93304,10933.04 +7969,2025-06-11T00:09:17.415376-07:00,1007.0870361328125,10.934719,10934.719 +7970,2025-06-11T00:09:28.362221-07:00,1007.0804443359375,10.946845,10946.845 +7971,2025-06-11T00:09:39.287372-07:00,1007.0722045898438,10.925151,10925.151 +7972,2025-06-11T00:09:50.217031-07:00,1007.0441284179688,10.929659,10929.659 +7973,2025-06-11T00:10:01.146632-07:00,1007.0672607421875,10.929601,10929.601 +7974,2025-06-11T00:10:12.075810-07:00,1007.0935668945312,10.929178,10929.178 +7975,2025-06-11T00:10:23.014417-07:00,1007.094970703125,10.938607,10938.607 +7976,2025-06-11T00:10:33.934590-07:00,1007.0507202148438,10.920173,10920.173 +7977,2025-06-11T00:10:44.868447-07:00,1007.0722045898438,10.933857,10933.857 +7978,2025-06-11T00:10:55.800720-07:00,1007.0704956054688,10.932273,10932.273 +7979,2025-06-11T00:11:06.731658-07:00,1007.0639038085938,10.930938,10930.938 +7980,2025-06-11T00:11:17.659724-07:00,1007.0639038085938,10.928066,10928.066 +7981,2025-06-11T00:11:28.593360-07:00,1007.0758056640625,10.933636,10933.636 +7982,2025-06-11T00:11:39.526053-07:00,1007.0758056640625,10.932693,10932.693 +7983,2025-06-11T00:11:50.455417-07:00,1007.055908203125,10.929364,10929.364 +7984,2025-06-11T00:12:01.382961-07:00,1007.1021118164062,10.927544,10927.544 +7985,2025-06-11T00:12:12.313377-07:00,1007.0493774414062,10.930416,10930.416 +7986,2025-06-11T00:12:23.247365-07:00,1007.0889282226562,10.933988,10933.988 +7987,2025-06-11T00:12:34.175376-07:00,1007.0691528320312,10.928011,10928.011 +7988,2025-06-11T00:12:45.098451-07:00,1007.0758056640625,10.923075,10923.075 +7989,2025-06-11T00:12:56.037377-07:00,1007.0608520507812,10.938926,10938.926 +7990,2025-06-11T00:13:06.969834-07:00,1007.0806274414062,10.932457,10932.457 +7991,2025-06-11T00:13:17.895367-07:00,1007.095458984375,10.925533,10925.533 +7992,2025-06-11T00:13:28.824405-07:00,1007.095458984375,10.929038,10929.038 +7993,2025-06-11T00:13:39.761630-07:00,1007.1135864257812,10.937225,10937.225 +7994,2025-06-11T00:13:50.691993-07:00,1007.0789184570312,10.930363,10930.363 +7995,2025-06-11T00:14:01.621601-07:00,1007.1118774414062,10.929608,10929.608 +7996,2025-06-11T00:14:12.544359-07:00,1007.1118774414062,10.922758,10922.758 +7997,2025-06-11T00:14:23.478941-07:00,1007.1105346679688,10.934582,10934.582 +7998,2025-06-11T00:14:34.406551-07:00,1007.0907592773438,10.92761,10927.61 +7999,2025-06-11T00:14:45.342426-07:00,1007.075927734375,10.935875,10935.875 +8000,2025-06-11T00:14:56.271377-07:00,1007.07421875,10.928951,10928.951 +8001,2025-06-11T00:15:07.209367-07:00,1007.0693969726562,10.93799,10937.99 +8002,2025-06-11T00:15:18.130374-07:00,1007.0643920898438,10.921007,10921.007 +8003,2025-06-11T00:15:29.055718-07:00,1007.0596923828125,10.925344,10925.344 +8004,2025-06-11T00:15:39.984377-07:00,1007.095703125,10.928659,10928.659 +8005,2025-06-11T00:15:50.923886-07:00,1007.1006469726562,10.939509,10939.509 +8006,2025-06-11T00:16:01.859062-07:00,1007.0940551757812,10.935176,10935.176 +8007,2025-06-11T00:16:12.787375-07:00,1007.0795288085938,10.928313,10928.313 +8008,2025-06-11T00:16:23.721367-07:00,1007.0975952148438,10.933992,10933.992 +8009,2025-06-11T00:16:34.648927-07:00,1007.08740234375,10.92756,10927.56 +8010,2025-06-11T00:16:45.575368-07:00,1007.0973510742188,10.926441,10926.441 +8011,2025-06-11T00:16:56.514378-07:00,1007.0728759765625,10.93901,10939.01 +8012,2025-06-11T00:17:07.437352-07:00,1007.107177734375,10.922974,10922.974 +8013,2025-06-11T00:17:18.370881-07:00,1007.0975952148438,10.933529,10933.529 +8014,2025-06-11T00:17:29.306367-07:00,1007.0926513671875,10.935486,10935.486 +8015,2025-06-11T00:17:40.235999-07:00,1007.0975952148438,10.929632,10929.632 +8016,2025-06-11T00:17:51.166371-07:00,1007.0992431640625,10.930372,10930.372 +8017,2025-06-11T00:18:02.109563-07:00,1007.1190795898438,10.943192,10943.192 +8018,2025-06-11T00:18:13.037360-07:00,1007.1107788085938,10.927797,10927.797 +8019,2025-06-11T00:18:23.966372-07:00,1007.1173706054688,10.929012,10929.012 +8020,2025-06-11T00:18:34.902823-07:00,1007.1336059570312,10.936451,10936.451 +8021,2025-06-11T00:18:45.832690-07:00,1007.1484375,10.929867,10929.867 +8022,2025-06-11T00:18:56.773306-07:00,1007.0992431640625,10.940616,10940.616 +8023,2025-06-11T00:19:07.702358-07:00,1007.1156005859375,10.929052,10929.052 +8024,2025-06-11T00:19:18.631887-07:00,1007.1322021484375,10.929529,10929.529 +8025,2025-06-11T00:19:29.568630-07:00,1007.1634521484375,10.936743,10936.743 +8026,2025-06-11T00:19:40.509778-07:00,1007.1322021484375,10.941148,10941.148 +8027,2025-06-11T00:19:51.439339-07:00,1007.1520385742188,10.929561,10929.561 +8028,2025-06-11T00:20:02.372424-07:00,1007.1533813476562,10.933085,10933.085 +8029,2025-06-11T00:20:13.301595-07:00,1007.1173706054688,10.929171,10929.171 +8030,2025-06-11T00:20:24.224179-07:00,1007.1370849609375,10.922584,10922.584 +8031,2025-06-11T00:20:35.163368-07:00,1007.135498046875,10.939189,10939.189 +8032,2025-06-11T00:20:46.093994-07:00,1007.159912109375,10.930626,10930.626 +8033,2025-06-11T00:20:57.030381-07:00,1007.1486206054688,10.936387,10936.387 +8034,2025-06-11T00:21:07.961035-07:00,1007.1585693359375,10.930654,10930.654 +8035,2025-06-11T00:21:18.885360-07:00,1007.1766967773438,10.924325,10924.325 +8036,2025-06-11T00:21:29.819697-07:00,1007.1437377929688,10.934337,10934.337 +8037,2025-06-11T00:21:40.751377-07:00,1007.1568603515625,10.93168,10931.68 +8038,2025-06-11T00:21:51.685696-07:00,1007.1403198242188,10.934319,10934.319 +8039,2025-06-11T00:22:02.621372-07:00,1007.14697265625,10.935676,10935.676 +8040,2025-06-11T00:22:13.549534-07:00,1007.166748046875,10.928162,10928.162 +8041,2025-06-11T00:22:24.489405-07:00,1007.1881103515625,10.939871,10939.871 +8042,2025-06-11T00:22:35.420501-07:00,1007.16015625,10.931096,10931.096 +8043,2025-06-11T00:22:46.360695-07:00,1007.193115234375,10.940194,10940.194 +8044,2025-06-11T00:22:57.289377-07:00,1007.1732788085938,10.928682,10928.682 +8045,2025-06-11T00:23:08.224900-07:00,1007.1815795898438,10.935523,10935.523 +8046,2025-06-11T00:23:19.160371-07:00,1007.1964111328125,10.935471,10935.471 +8047,2025-06-11T00:23:30.095726-07:00,1007.1832885742188,10.935355,10935.355 +8048,2025-06-11T00:23:41.023373-07:00,1007.1749877929688,10.927647,10927.647 +8049,2025-06-11T00:23:51.962775-07:00,1007.2095947265625,10.939402,10939.402 +8050,2025-06-11T00:24:02.900720-07:00,1007.1732788085938,10.937945,10937.945 +8051,2025-06-11T00:24:13.831535-07:00,1007.16015625,10.930815,10930.815 +8052,2025-06-11T00:24:24.773342-07:00,1007.166748046875,10.941807,10941.807 +8053,2025-06-11T00:24:35.705931-07:00,1007.1881103515625,10.932589,10932.589 +8054,2025-06-11T00:24:46.641740-07:00,1007.193115234375,10.935809,10935.809 +8055,2025-06-11T00:24:57.581400-07:00,1007.1864624023438,10.93966,10939.66 +8056,2025-06-11T00:25:08.508449-07:00,1007.1947631835938,10.927049,10927.049 +8057,2025-06-11T00:25:19.454901-07:00,1007.2178955078125,10.946452,10946.452 +8058,2025-06-11T00:25:30.385529-07:00,1007.1947631835938,10.930628,10930.628 +8059,2025-06-11T00:25:41.324373-07:00,1007.1898193359375,10.938844,10938.844 +8060,2025-06-11T00:25:52.263402-07:00,1007.1815795898438,10.939029,10939.029 +8061,2025-06-11T00:26:03.197379-07:00,1007.1849365234375,10.933977,10933.977 +8062,2025-06-11T00:26:14.132364-07:00,1007.16845703125,10.934985,10934.985 +8063,2025-06-11T00:26:25.063377-07:00,1007.1947631835938,10.931013,10931.013 +8064,2025-06-11T00:26:35.999677-07:00,1007.2095947265625,10.9363,10936.3 +8065,2025-06-11T00:26:46.923379-07:00,1007.1881103515625,10.923702,10923.702 +8066,2025-06-11T00:26:57.863875-07:00,1007.1798706054688,10.940496,10940.496 +8067,2025-06-11T00:27:08.797560-07:00,1007.1832885742188,10.933685,10933.685 +8068,2025-06-11T00:27:19.727926-07:00,1007.1732788085938,10.930366,10930.366 +8069,2025-06-11T00:27:30.660726-07:00,1007.19970703125,10.9328,10932.8 +8070,2025-06-11T00:27:41.594806-07:00,1007.165283203125,10.93408,10934.08 +8071,2025-06-11T00:27:52.524356-07:00,1007.1719360351562,10.92955,10929.55 +8072,2025-06-11T00:28:03.468371-07:00,1007.1749877929688,10.944015,10944.015 +8073,2025-06-11T00:28:14.400636-07:00,1007.1587524414062,10.932265,10932.265 +8074,2025-06-11T00:28:25.336768-07:00,1007.1947631835938,10.936132,10936.132 +8075,2025-06-11T00:28:36.277724-07:00,1007.16015625,10.940956,10940.956 +8076,2025-06-11T00:28:47.204361-07:00,1007.1798706054688,10.926637,10926.637 +8077,2025-06-11T00:28:58.150378-07:00,1007.193115234375,10.946017,10946.017 +8078,2025-06-11T00:29:09.081404-07:00,1007.1439208984375,10.931026,10931.026 +8079,2025-06-11T00:29:20.015627-07:00,1007.1389770507812,10.934223,10934.223 +8080,2025-06-11T00:29:31.035366-07:00,1007.16845703125,11.019739,11019.739 +8081,2025-06-11T00:29:41.975342-07:00,1007.1373291015625,10.939976,10939.976 +8082,2025-06-11T00:29:52.896941-07:00,1007.1535034179688,10.921599,10921.599 +8083,2025-06-11T00:30:03.837344-07:00,1007.1174926757812,10.940403,10940.403 +8084,2025-06-11T00:30:14.771959-07:00,1007.1570434570312,10.934615,10934.615 +8085,2025-06-11T00:30:25.705609-07:00,1007.1456298828125,10.93365,10933.65 +8086,2025-06-11T00:30:36.642053-07:00,1007.127685546875,10.936444,10936.444 +8087,2025-06-11T00:30:47.573457-07:00,1007.1174926757812,10.931404,10931.404 +8088,2025-06-11T00:30:58.508336-07:00,1007.0845336914062,10.934879,10934.879 +8089,2025-06-11T00:31:09.442493-07:00,1007.1224975585938,10.934157,10934.157 +8090,2025-06-11T00:31:20.376344-07:00,1007.1439208984375,10.933851,10933.851 +8091,2025-06-11T00:31:31.312607-07:00,1007.1158447265625,10.936263,10936.263 +8092,2025-06-11T00:31:42.243824-07:00,1007.13232421875,10.931217,10931.217 +8093,2025-06-11T00:31:53.174851-07:00,1007.0946655273438,10.931027,10931.027 +8094,2025-06-11T00:32:04.118378-07:00,1007.068359375,10.943527,10943.527 +8095,2025-06-11T00:32:15.048341-07:00,1007.074951171875,10.929963,10929.963 +8096,2025-06-11T00:32:25.980607-07:00,1007.08154296875,10.932266,10932.266 +8097,2025-06-11T00:32:36.916736-07:00,1007.0946655273438,10.936129,10936.129 +8098,2025-06-11T00:32:47.847606-07:00,1007.0733032226562,10.93087,10930.87 +8099,2025-06-11T00:32:58.780344-07:00,1007.0845336914062,10.932738,10932.738 +8100,2025-06-11T00:33:09.715596-07:00,1007.088134765625,10.935252,10935.252 +8101,2025-06-11T00:33:20.646361-07:00,1007.0667114257812,10.930765,10930.765 +8102,2025-06-11T00:33:31.589108-07:00,1007.0828857421875,10.942747,10942.747 +8103,2025-06-11T00:33:42.511392-07:00,1007.040283203125,10.922284,10922.284 +8104,2025-06-11T00:33:53.448597-07:00,1007.093017578125,10.937205,10937.205 +8105,2025-06-11T00:34:04.379602-07:00,1007.093017578125,10.931005,10931.005 +8106,2025-06-11T00:34:15.309456-07:00,1007.0617065429688,10.929854,10929.854 +8107,2025-06-11T00:34:26.243508-07:00,1007.0584106445312,10.934052,10934.052 +8108,2025-06-11T00:34:37.170552-07:00,1007.0584106445312,10.927044,10927.044 +8109,2025-06-11T00:34:48.102382-07:00,1007.1062622070312,10.93183,10931.83 +8110,2025-06-11T00:34:59.034383-07:00,1007.0584106445312,10.932001,10932.001 +8111,2025-06-11T00:35:09.973498-07:00,1007.0237426757812,10.939115,10939.115 +8112,2025-06-11T00:35:20.905818-07:00,1007.0369262695312,10.93232,10932.32 +8113,2025-06-11T00:35:31.832357-07:00,1007.0632934570312,10.926539,10926.539 +8114,2025-06-11T00:35:42.759489-07:00,1007.0632934570312,10.927132,10927.132 +8115,2025-06-11T00:35:53.700332-07:00,1006.9940795898438,10.940843,10940.843 +8116,2025-06-11T00:36:04.628546-07:00,1007.0286865234375,10.928214,10928.214 +8117,2025-06-11T00:36:15.563397-07:00,1007.0567016601562,10.934851,10934.851 +8118,2025-06-11T00:36:26.491749-07:00,1006.9957275390625,10.928352,10928.352 +8119,2025-06-11T00:36:37.417322-07:00,1007.0484619140625,10.925573,10925.573 +8120,2025-06-11T00:36:48.348681-07:00,1007.0353393554688,10.931359,10931.359 +8121,2025-06-11T00:36:59.282361-07:00,1007.0023193359375,10.93368,10933.68 +8122,2025-06-11T00:37:10.216836-07:00,1007.0567016601562,10.934475,10934.475 +8123,2025-06-11T00:37:21.148605-07:00,1007.0501708984375,10.931769,10931.769 +8124,2025-06-11T00:37:32.078554-07:00,1007.0286865234375,10.929949,10929.949 +8125,2025-06-11T00:37:43.013587-07:00,1007.0220336914062,10.935033,10935.033 +8126,2025-06-11T00:37:53.942747-07:00,1007.0089111328125,10.92916,10929.16 +8127,2025-06-11T00:38:04.863357-07:00,1007.0072021484375,10.92061,10920.61 +8128,2025-06-11T00:38:15.794922-07:00,1007.0023193359375,10.931565,10931.565 +8129,2025-06-11T00:38:26.725670-07:00,1007.0154418945312,10.930748,10930.748 +8130,2025-06-11T00:38:37.661302-07:00,1007.0006103515625,10.935632,10935.632 +8131,2025-06-11T00:38:48.600543-07:00,1006.997314453125,10.939241,10939.241 +8132,2025-06-11T00:38:59.534361-07:00,1007.0023193359375,10.933818,10933.818 +8133,2025-06-11T00:39:10.453346-07:00,1006.9299926757812,10.918985,10918.985 +8134,2025-06-11T00:39:21.382704-07:00,1007.0006103515625,10.929358,10929.358 +8135,2025-06-11T00:39:32.315348-07:00,1006.9712524414062,10.932644,10932.644 +8136,2025-06-11T00:39:43.244732-07:00,1006.9940795898438,10.929384,10929.384 +8137,2025-06-11T00:39:54.179359-07:00,1007.0072021484375,10.934627,10934.627 +8138,2025-06-11T00:40:05.108424-07:00,1006.9725952148438,10.929065,10929.065 +8139,2025-06-11T00:40:16.034351-07:00,1006.9382934570312,10.925927,10925.927 +8140,2025-06-11T00:40:26.964864-07:00,1006.9808349609375,10.930513,10930.513 +8141,2025-06-11T00:40:37.905379-07:00,1006.9874267578125,10.940515,10940.515 +8142,2025-06-11T00:40:48.833464-07:00,1006.9940795898438,10.928085,10928.085 +8143,2025-06-11T00:40:59.769353-07:00,1006.9874267578125,10.935889,10935.889 +8144,2025-06-11T00:41:10.696760-07:00,1006.9478759765625,10.927407,10927.407 +8145,2025-06-11T00:41:21.620582-07:00,1006.9593505859375,10.923822,10923.822 +8146,2025-06-11T00:41:32.558902-07:00,1006.9497680664062,10.93832,10938.32 +8147,2025-06-11T00:41:43.490364-07:00,1006.9478759765625,10.931462,10931.462 +8148,2025-06-11T00:41:54.421897-07:00,1006.9593505859375,10.931533,10931.533 +8149,2025-06-11T00:42:05.351361-07:00,1006.9478759765625,10.929464,10929.464 +8150,2025-06-11T00:42:16.285578-07:00,1006.9382934570312,10.934217,10934.217 +8151,2025-06-11T00:42:27.217346-07:00,1006.9628295898438,10.931768,10931.768 +8152,2025-06-11T00:42:38.152612-07:00,1006.9346923828125,10.935266,10935.266 +8153,2025-06-11T00:42:49.076417-07:00,1006.9808349609375,10.923805,10923.805 +8154,2025-06-11T00:43:00.016662-07:00,1006.9676513671875,10.940245,10940.245 +8155,2025-06-11T00:43:10.943510-07:00,1006.9593505859375,10.926848,10926.848 +8156,2025-06-11T00:43:21.879612-07:00,1006.9659423828125,10.936102,10936.102 +8157,2025-06-11T00:43:32.815350-07:00,1006.9808349609375,10.935738,10935.738 +8158,2025-06-11T00:43:43.746789-07:00,1006.9693603515625,10.931439,10931.439 +8159,2025-06-11T00:43:54.674601-07:00,1006.9528198242188,10.927812,10927.812 +8160,2025-06-11T00:44:05.606722-07:00,1006.9725952148438,10.932121,10932.121 +8161,2025-06-11T00:44:16.539597-07:00,1006.9317016601562,10.932875,10932.875 +8162,2025-06-11T00:44:27.474681-07:00,1006.9712524414062,10.935084,10935.084 +8163,2025-06-11T00:44:38.413555-07:00,1006.9712524414062,10.938874,10938.874 +8164,2025-06-11T00:44:49.343359-07:00,1006.9659423828125,10.929804,10929.804 +8165,2025-06-11T00:45:00.283429-07:00,1006.984375,10.94007,10940.07 +8166,2025-06-11T00:45:11.222607-07:00,1006.9580688476562,10.939178,10939.178 +8167,2025-06-11T00:45:22.156775-07:00,1006.9564208984375,10.934168,10934.168 +8168,2025-06-11T00:45:33.090647-07:00,1006.951416015625,10.933872,10933.872 +8169,2025-06-11T00:45:44.014646-07:00,1006.943115234375,10.923999,10923.999 +8170,2025-06-11T00:45:54.952727-07:00,1006.9580688476562,10.938081,10938.081 +8171,2025-06-11T00:46:05.882708-07:00,1006.9629516601562,10.929981,10929.981 +8172,2025-06-11T00:46:16.799361-07:00,1006.943115234375,10.916653,10916.653 +8173,2025-06-11T00:46:27.723357-07:00,1006.9497680664062,10.923996,10923.996 +8174,2025-06-11T00:46:38.651768-07:00,1006.94482421875,10.928411,10928.411 +8175,2025-06-11T00:46:49.579413-07:00,1006.9299926757812,10.927645,10927.645 +8176,2025-06-11T00:47:00.509567-07:00,1006.9365844726562,10.930154,10930.154 +8177,2025-06-11T00:47:11.438344-07:00,1006.9282836914062,10.928777,10928.777 +8178,2025-06-11T00:47:22.360353-07:00,1006.9085693359375,10.922009,10922.009 +8179,2025-06-11T00:47:33.287398-07:00,1006.9085693359375,10.927045,10927.045 +8180,2025-06-11T00:47:44.216353-07:00,1006.9365844726562,10.928955,10928.955 +8181,2025-06-11T00:47:55.140639-07:00,1006.9299926757812,10.924286,10924.286 +8182,2025-06-11T00:48:06.068359-07:00,1006.8887329101562,10.92772,10927.72 +8183,2025-06-11T00:48:17.002667-07:00,1006.9202880859375,10.934308,10934.308 +8184,2025-06-11T00:48:27.932552-07:00,1006.9299926757812,10.929885,10929.885 +8185,2025-06-11T00:48:38.875407-07:00,1006.8953247070312,10.942855,10942.855 +8186,2025-06-11T00:48:49.799591-07:00,1006.8939819335938,10.924184,10924.184 +8187,2025-06-11T00:49:00.728617-07:00,1006.900634765625,10.929026,10929.026 +8188,2025-06-11T00:49:11.662608-07:00,1006.9202880859375,10.933991,10933.991 +8189,2025-06-11T00:49:22.596749-07:00,1006.9019775390625,10.934141,10934.141 +8190,2025-06-11T00:49:33.530357-07:00,1006.9071655273438,10.933608,10933.608 +8191,2025-06-11T00:49:44.453651-07:00,1006.879150390625,10.923294,10923.294 +8192,2025-06-11T00:49:55.381708-07:00,1006.8822021484375,10.928057,10928.057 +8193,2025-06-11T00:50:06.310536-07:00,1006.857666015625,10.928828,10928.828 +8194,2025-06-11T00:50:17.228823-07:00,1006.887451171875,10.918287,10918.287 +8195,2025-06-11T00:50:28.166399-07:00,1006.859375,10.937576,10937.576 +8196,2025-06-11T00:50:39.098512-07:00,1006.8807983398438,10.932113,10932.113 +8197,2025-06-11T00:50:50.025592-07:00,1006.8724975585938,10.92708,10927.08 +8198,2025-06-11T00:51:00.965360-07:00,1006.859375,10.939768,10939.768 +8199,2025-06-11T00:51:11.888562-07:00,1006.8546752929688,10.923202,10923.202 +8200,2025-06-11T00:51:22.822605-07:00,1006.8807983398438,10.934043,10934.043 +8201,2025-06-11T00:51:33.755599-07:00,1006.85107421875,10.932994,10932.994 +8202,2025-06-11T00:51:44.683386-07:00,1006.8233642578125,10.927787,10927.787 +8203,2025-06-11T00:51:55.609580-07:00,1006.8365478515625,10.926194,10926.194 +8204,2025-06-11T00:52:06.548355-07:00,1006.8233642578125,10.938775,10938.775 +8205,2025-06-11T00:52:17.482037-07:00,1006.8134155273438,10.933682,10933.682 +8206,2025-06-11T00:52:28.410508-07:00,1006.8150634765625,10.928471,10928.471 +8207,2025-06-11T00:52:39.344555-07:00,1006.8414306640625,10.934047,10934.047 +8208,2025-06-11T00:52:50.279764-07:00,1006.8546752929688,10.935209,10935.209 +8209,2025-06-11T00:53:01.217471-07:00,1006.870849609375,10.937707,10937.707 +8210,2025-06-11T00:53:12.152558-07:00,1006.8283081054688,10.935087,10935.087 +8211,2025-06-11T00:53:23.086593-07:00,1006.8384399414062,10.934035,10934.035 +8212,2025-06-11T00:53:34.010350-07:00,1006.8200073242188,10.923757,10923.757 +8213,2025-06-11T00:53:44.949040-07:00,1006.818603515625,10.93869,10938.69 +8214,2025-06-11T00:53:55.885406-07:00,1006.8331909179688,10.936366,10936.366 +8215,2025-06-11T00:54:06.818356-07:00,1006.8087768554688,10.93295,10932.95 +8216,2025-06-11T00:54:17.742347-07:00,1006.8284301757812,10.923991,10923.991 +8217,2025-06-11T00:54:28.676934-07:00,1006.8318481445312,10.934587,10934.587 +8218,2025-06-11T00:54:39.622222-07:00,1006.8515625,10.945288,10945.288 +8219,2025-06-11T00:54:50.545359-07:00,1006.8087768554688,10.923137,10923.137 +8220,2025-06-11T00:55:01.479425-07:00,1006.8283081054688,10.934066,10934.066 +8221,2025-06-11T00:55:12.412359-07:00,1006.8070068359375,10.932934,10932.934 +8222,2025-06-11T00:55:23.340594-07:00,1006.8004760742188,10.928235,10928.235 +8223,2025-06-11T00:55:34.269507-07:00,1006.8054809570312,10.928913,10928.913 +8224,2025-06-11T00:55:45.201336-07:00,1006.8218994140625,10.931829,10931.829 +8225,2025-06-11T00:55:56.138610-07:00,1006.8103637695312,10.937274,10937.274 +8226,2025-06-11T00:56:07.063519-07:00,1006.7888793945312,10.924909,10924.909 +8227,2025-06-11T00:56:17.994786-07:00,1006.779296875,10.931267,10931.267 +8228,2025-06-11T00:56:28.933603-07:00,1006.799072265625,10.938817,10938.817 +8229,2025-06-11T00:56:39.867332-07:00,1006.785888671875,10.933729,10933.729 +8230,2025-06-11T00:56:50.794352-07:00,1006.759521484375,10.92702,10927.02 +8231,2025-06-11T00:57:01.735357-07:00,1006.7806396484375,10.941005,10941.005 +8232,2025-06-11T00:57:12.665904-07:00,1006.76611328125,10.930547,10930.547 +8233,2025-06-11T00:57:23.601354-07:00,1006.7806396484375,10.93545,10935.45 +8234,2025-06-11T00:57:34.538710-07:00,1006.7757568359375,10.937356,10937.356 +8235,2025-06-11T00:57:45.466348-07:00,1006.7675170898438,10.927638,10927.638 +8236,2025-06-11T00:57:56.398370-07:00,1006.7823486328125,10.932022,10932.022 +8237,2025-06-11T00:58:07.338825-07:00,1006.8103637695312,10.940455,10940.455 +8238,2025-06-11T00:58:18.279622-07:00,1006.7842407226562,10.940797,10940.797 +8239,2025-06-11T00:58:29.211555-07:00,1006.7609252929688,10.931933,10931.933 +8240,2025-06-11T00:58:40.147565-07:00,1006.7954711914062,10.93601,10936.01 +8241,2025-06-11T00:58:51.075668-07:00,1006.7888793945312,10.928103,10928.103 +8242,2025-06-11T00:59:02.010344-07:00,1006.7675170898438,10.934676,10934.676 +8243,2025-06-11T00:59:12.943750-07:00,1006.7675170898438,10.933406,10933.406 +8244,2025-06-11T00:59:23.871416-07:00,1006.759521484375,10.927666,10927.666 +8245,2025-06-11T00:59:34.802658-07:00,1006.7578125,10.931242,10931.242 +8246,2025-06-11T00:59:45.737613-07:00,1006.7529907226562,10.934955,10934.955 +8247,2025-06-11T00:59:56.672791-07:00,1006.7410888671875,10.935178,10935.178 +8248,2025-06-11T01:00:07.602330-07:00,1006.7396850585938,10.929539,10929.539 +8249,2025-06-11T01:00:18.537362-07:00,1006.746337890625,10.935032,10935.032 +8250,2025-06-11T01:00:29.471423-07:00,1006.746337890625,10.934061,10934.061 +8251,2025-06-11T01:00:40.407886-07:00,1006.76611328125,10.936463,10936.463 +8252,2025-06-11T01:00:51.339443-07:00,1006.7232055664062,10.931557,10931.557 +8253,2025-06-11T01:01:02.278641-07:00,1006.6968994140625,10.939198,10939.198 +8254,2025-06-11T01:01:13.212642-07:00,1006.71533203125,10.934001,10934.001 +8255,2025-06-11T01:01:24.155436-07:00,1006.71826171875,10.942794,10942.794 +8256,2025-06-11T01:01:35.083674-07:00,1006.71826171875,10.928238,10928.238 +8257,2025-06-11T01:01:46.017660-07:00,1006.7001342773438,10.933986,10933.986 +8258,2025-06-11T01:01:56.952356-07:00,1006.7213134765625,10.934696,10934.696 +8259,2025-06-11T01:02:07.891640-07:00,1006.7315063476562,10.939284,10939.284 +8260,2025-06-11T01:02:18.823359-07:00,1006.724853515625,10.931719,10931.719 +8261,2025-06-11T01:02:29.752098-07:00,1006.698486328125,10.928739,10928.739 +8262,2025-06-11T01:02:40.694358-07:00,1006.716552734375,10.94226,10942.26 +8263,2025-06-11T01:02:51.625350-07:00,1006.6757202148438,10.930992,10930.992 +8264,2025-06-11T01:03:02.552359-07:00,1006.724853515625,10.927009,10927.009 +8265,2025-06-11T01:03:13.486720-07:00,1006.6836547851562,10.934361,10934.361 +8266,2025-06-11T01:03:24.421699-07:00,1006.7034301757812,10.934979,10934.979 +8267,2025-06-11T01:03:35.347702-07:00,1006.6903076171875,10.926003,10926.003 +8268,2025-06-11T01:03:46.288450-07:00,1006.6889038085938,10.940748,10940.748 +8269,2025-06-11T01:03:57.218613-07:00,1006.7345581054688,10.930163,10930.163 +8270,2025-06-11T01:04:08.156237-07:00,1006.6903076171875,10.937624,10937.624 +8271,2025-06-11T01:04:19.088354-07:00,1006.682373046875,10.932117,10932.117 +8272,2025-06-11T01:04:30.017645-07:00,1006.6836547851562,10.929291,10929.291 +8273,2025-06-11T01:04:40.950758-07:00,1006.6889038085938,10.933113,10933.113 +8274,2025-06-11T01:04:51.880350-07:00,1006.6757202148438,10.929592,10929.592 +8275,2025-06-11T01:05:02.812623-07:00,1006.660888671875,10.932273,10932.273 +8276,2025-06-11T01:05:13.748084-07:00,1006.6968994140625,10.935461,10935.461 +8277,2025-06-11T01:05:24.682654-07:00,1006.6691284179688,10.93457,10934.57 +8278,2025-06-11T01:05:35.615559-07:00,1006.6954956054688,10.932905,10932.905 +8279,2025-06-11T01:05:46.545042-07:00,1006.6624755859375,10.929483,10929.483 +8280,2025-06-11T01:05:57.480911-07:00,1006.6624755859375,10.935869,10935.869 +8281,2025-06-11T01:06:08.411339-07:00,1006.6624755859375,10.930428,10930.428 +8282,2025-06-11T01:06:19.354483-07:00,1006.6578369140625,10.943144,10943.144 +8283,2025-06-11T01:06:30.294550-07:00,1006.66748046875,10.940067,10940.067 +8284,2025-06-11T01:06:41.224574-07:00,1006.6889038085938,10.930024,10930.024 +8285,2025-06-11T01:06:52.160965-07:00,1006.67236328125,10.936391,10936.391 +8286,2025-06-11T01:07:03.094359-07:00,1006.6788940429688,10.933394,10933.394 +8287,2025-06-11T01:07:14.026118-07:00,1006.6559448242188,10.931759,10931.759 +8288,2025-06-11T01:07:24.967363-07:00,1006.6806030273438,10.941245,10941.245 +8289,2025-06-11T01:07:35.892365-07:00,1006.6592407226562,10.925002,10925.002 +8290,2025-06-11T01:07:46.820507-07:00,1006.674072265625,10.928142,10928.142 +8291,2025-06-11T01:07:57.761628-07:00,1006.6592407226562,10.941121,10941.121 +8292,2025-06-11T01:08:08.682356-07:00,1006.6691284179688,10.920728,10920.728 +8293,2025-06-11T01:08:19.612659-07:00,1006.64111328125,10.930303,10930.303 +8294,2025-06-11T01:08:30.549949-07:00,1006.6476440429688,10.93729,10937.29 +8295,2025-06-11T01:08:41.480462-07:00,1006.64111328125,10.930513,10930.513 +8296,2025-06-11T01:08:52.401598-07:00,1006.642822265625,10.921136,10921.136 +8297,2025-06-11T01:09:03.326381-07:00,1006.634521484375,10.924783,10924.783 +8298,2025-06-11T01:09:14.254597-07:00,1006.660888671875,10.928216,10928.216 +8299,2025-06-11T01:09:25.188352-07:00,1006.6476440429688,10.933755,10933.755 +8300,2025-06-11T01:09:36.118615-07:00,1006.64111328125,10.930263,10930.263 +8301,2025-06-11T01:09:47.054640-07:00,1006.6182861328125,10.936025,10936.025 +8302,2025-06-11T01:09:57.989487-07:00,1006.639404296875,10.934847,10934.847 +8303,2025-06-11T01:10:08.933000-07:00,1006.626220703125,10.943513,10943.513 +8304,2025-06-11T01:10:19.867346-07:00,1006.639404296875,10.934346,10934.346 +8305,2025-06-11T01:10:30.802005-07:00,1006.613037109375,10.934659,10934.659 +8306,2025-06-11T01:10:41.734714-07:00,1006.6051025390625,10.932709,10932.709 +8307,2025-06-11T01:10:52.670348-07:00,1006.6459350585938,10.935634,10935.634 +8308,2025-06-11T01:11:03.598361-07:00,1006.5968627929688,10.928013,10928.013 +8309,2025-06-11T01:11:14.536367-07:00,1006.5985107421875,10.938006,10938.006 +8310,2025-06-11T01:11:25.460649-07:00,1006.6248168945312,10.924282,10924.282 +8311,2025-06-11T01:11:36.402359-07:00,1006.5985107421875,10.94171,10941.71 +8312,2025-06-11T01:11:47.336855-07:00,1006.639404296875,10.934496,10934.496 +8313,2025-06-11T01:11:58.262351-07:00,1006.6328125,10.925496,10925.496 +8314,2025-06-11T01:12:09.191766-07:00,1006.6051025390625,10.929415,10929.415 +8315,2025-06-11T01:12:20.126361-07:00,1006.6099853515625,10.934595,10934.595 +8316,2025-06-11T01:12:31.066273-07:00,1006.599853515625,10.939912,10939.912 +8317,2025-06-11T01:12:41.999359-07:00,1006.613037109375,10.933086,10933.086 +8318,2025-06-11T01:12:52.933338-07:00,1006.6196899414062,10.933979,10933.979 +8319,2025-06-11T01:13:03.874649-07:00,1006.5985107421875,10.941311,10941.311 +8320,2025-06-11T01:13:14.799811-07:00,1006.6182861328125,10.925162,10925.162 +8321,2025-06-11T01:13:25.738333-07:00,1006.6116943359375,10.938522,10938.522 +8322,2025-06-11T01:13:36.665360-07:00,1006.6116943359375,10.927027,10927.027 +8323,2025-06-11T01:13:47.606692-07:00,1006.5918579101562,10.941332,10941.332 +8324,2025-06-11T01:13:58.529487-07:00,1006.6099853515625,10.922795,10922.795 +8325,2025-06-11T01:14:09.469863-07:00,1006.5753784179688,10.940376,10940.376 +8326,2025-06-11T01:14:20.392359-07:00,1006.588623046875,10.922496,10922.496 +8327,2025-06-11T01:14:31.331670-07:00,1006.599853515625,10.939311,10939.311 +8328,2025-06-11T01:14:42.263359-07:00,1006.5968627929688,10.931689,10931.689 +8329,2025-06-11T01:14:53.194819-07:00,1006.6314086914062,10.93146,10931.46 +8330,2025-06-11T01:15:04.123615-07:00,1006.5819702148438,10.928796,10928.796 +8331,2025-06-11T01:15:15.056646-07:00,1006.6099853515625,10.933031,10933.031 +8332,2025-06-11T01:15:25.985617-07:00,1006.5968627929688,10.928971,10928.971 +8333,2025-06-11T01:15:36.925724-07:00,1006.5836181640625,10.940107,10940.107 +8334,2025-06-11T01:15:47.865528-07:00,1006.5968627929688,10.939804,10939.804 +8335,2025-06-11T01:15:58.794359-07:00,1006.580322265625,10.928831,10928.831 +8336,2025-06-11T01:16:09.736884-07:00,1006.5525512695312,10.942525,10942.525 +8337,2025-06-11T01:16:20.668599-07:00,1006.5687255859375,10.931715,10931.715 +8338,2025-06-11T01:16:31.599074-07:00,1006.57373046875,10.930475,10930.475 +8339,2025-06-11T01:16:42.535357-07:00,1006.5525512695312,10.936283,10936.283 +8340,2025-06-11T01:16:53.467607-07:00,1006.5657958984375,10.93225,10932.25 +8341,2025-06-11T01:17:04.399355-07:00,1006.5538940429688,10.931748,10931.748 +8342,2025-06-11T01:17:15.336997-07:00,1006.5789184570312,10.937642,10937.642 +8343,2025-06-11T01:17:26.262351-07:00,1006.5459594726562,10.925354,10925.354 +8344,2025-06-11T01:17:37.201360-07:00,1006.57373046875,10.939009,10939.009 +8345,2025-06-11T01:17:48.134350-07:00,1006.5591430664062,10.93299,10932.99 +8346,2025-06-11T01:17:59.067126-07:00,1006.5294799804688,10.932776,10932.776 +8347,2025-06-11T01:18:09.997357-07:00,1006.5591430664062,10.930231,10930.231 +8348,2025-06-11T01:18:20.934357-07:00,1006.5310668945312,10.937,10937.0 +8349,2025-06-11T01:18:31.861619-07:00,1006.5538940429688,10.927262,10927.262 +8350,2025-06-11T01:18:42.803356-07:00,1006.5393676757812,10.941737,10941.737 +8351,2025-06-11T01:18:53.734657-07:00,1006.5525512695312,10.931301,10931.301 +8352,2025-06-11T01:19:04.675350-07:00,1006.5426635742188,10.940693,10940.693 +8353,2025-06-11T01:19:15.610960-07:00,1006.5376586914062,10.93561,10935.61 +8354,2025-06-11T01:19:26.555637-07:00,1006.5426635742188,10.944677,10944.677 +8355,2025-06-11T01:19:37.491356-07:00,1006.5640869140625,10.935719,10935.719 +8356,2025-06-11T01:19:48.425052-07:00,1006.552734375,10.933696,10933.696 +8357,2025-06-11T01:19:59.358356-07:00,1006.5228271484375,10.933304,10933.304 +8358,2025-06-11T01:20:10.294356-07:00,1006.5687255859375,10.936,10936.0 +8359,2025-06-11T01:20:21.234211-07:00,1006.5706176757812,10.939855,10939.855 +8360,2025-06-11T01:20:32.162344-07:00,1006.5393676757812,10.928133,10928.133 +8361,2025-06-11T01:20:43.102853-07:00,1006.546142578125,10.940509,10940.509 +8362,2025-06-11T01:20:54.041389-07:00,1006.5623168945312,10.938536,10938.536 +8363,2025-06-11T01:21:04.976635-07:00,1006.5755615234375,10.935246,10935.246 +8364,2025-06-11T01:21:15.910617-07:00,1006.53466796875,10.933982,10933.982 +8365,2025-06-11T01:21:26.838610-07:00,1006.5393676757812,10.927993,10927.993 +8366,2025-06-11T01:21:37.779411-07:00,1006.4951782226562,10.940801,10940.801 +8367,2025-06-11T01:21:48.712361-07:00,1006.51318359375,10.93295,10932.95 +8368,2025-06-11T01:21:59.654656-07:00,1006.50830078125,10.942295,10942.295 +8369,2025-06-11T01:22:10.586621-07:00,1006.5162353515625,10.931965,10931.965 +8370,2025-06-11T01:22:21.511052-07:00,1006.53466796875,10.924431,10924.431 +8371,2025-06-11T01:22:32.444361-07:00,1006.5376586914062,10.933309,10933.309 +8372,2025-06-11T01:22:43.378556-07:00,1006.5228271484375,10.934195,10934.195 +8373,2025-06-11T01:22:54.307774-07:00,1006.51318359375,10.929218,10929.218 +8374,2025-06-11T01:23:05.242954-07:00,1006.5179443359375,10.93518,10935.18 +8375,2025-06-11T01:23:16.186867-07:00,1006.5294799804688,10.943913,10943.913 +8376,2025-06-11T01:23:27.120319-07:00,1006.5491943359375,10.933452,10933.452 +8377,2025-06-11T01:23:38.055649-07:00,1006.5294799804688,10.93533,10935.33 +8378,2025-06-11T01:23:48.988346-07:00,1006.50830078125,10.932697,10932.697 +8379,2025-06-11T01:23:59.919895-07:00,1006.5148315429688,10.931549,10931.549 +8380,2025-06-11T01:24:10.849270-07:00,1006.5148315429688,10.929375,10929.375 +8381,2025-06-11T01:24:21.781639-07:00,1006.5066528320312,10.932369,10932.369 +8382,2025-06-11T01:24:32.706359-07:00,1006.5281372070312,10.92472,10924.72 +8383,2025-06-11T01:24:43.635647-07:00,1006.5115356445312,10.929288,10929.288 +8384,2025-06-11T01:24:54.561611-07:00,1006.51318359375,10.925964,10925.964 +8385,2025-06-11T01:25:05.497605-07:00,1006.5,10.935994,10935.994 +8386,2025-06-11T01:25:16.436403-07:00,1006.4983520507812,10.938798,10938.798 +8387,2025-06-11T01:25:27.363996-07:00,1006.4983520507812,10.927593,10927.593 +8388,2025-06-11T01:25:38.282348-07:00,1006.4983520507812,10.918352,10918.352 +8389,2025-06-11T01:25:49.221685-07:00,1006.4983520507812,10.939337,10939.337 +8390,2025-06-11T01:26:00.145725-07:00,1006.4706420898438,10.92404,10924.04 +8391,2025-06-11T01:26:11.066685-07:00,1006.4904174804688,10.92096,10920.96 +8392,2025-06-11T01:26:22.007509-07:00,1006.4838256835938,10.940824,10940.824 +8393,2025-06-11T01:26:32.947471-07:00,1006.4706420898438,10.939962,10939.962 +8394,2025-06-11T01:26:43.874983-07:00,1006.45751953125,10.927512,10927.512 +8395,2025-06-11T01:26:54.805003-07:00,1006.4904174804688,10.93002,10930.02 +8396,2025-06-11T01:27:05.733710-07:00,1006.4263916015625,10.928707,10928.707 +8397,2025-06-11T01:27:16.667492-07:00,1006.4461059570312,10.933782,10933.782 +8398,2025-06-11T01:27:27.602350-07:00,1006.4461059570312,10.934858,10934.858 +8399,2025-06-11T01:27:38.537345-07:00,1006.4640502929688,10.934995,10934.995 +8400,2025-06-11T01:27:49.470496-07:00,1006.4395141601562,10.933151,10933.151 +8401,2025-06-11T01:28:00.399637-07:00,1006.447509765625,10.929141,10929.141 +8402,2025-06-11T01:28:11.332404-07:00,1006.447509765625,10.932767,10932.767 +8403,2025-06-11T01:28:22.268608-07:00,1006.4540405273438,10.936204,10936.204 +8404,2025-06-11T01:28:33.199440-07:00,1006.4623413085938,10.930832,10930.832 +8405,2025-06-11T01:28:44.123778-07:00,1006.44091796875,10.924338,10924.338 +8406,2025-06-11T01:28:55.058468-07:00,1006.447509765625,10.93469,10934.69 +8407,2025-06-11T01:29:05.993084-07:00,1006.4640502929688,10.934616,10934.616 +8408,2025-06-11T01:29:16.927945-07:00,1006.447509765625,10.934861,10934.861 +8409,2025-06-11T01:29:27.883055-07:00,1006.4395141601562,10.95511,10955.11 +8410,2025-06-11T01:29:38.816989-07:00,1006.4163818359375,10.933934,10933.934 +8411,2025-06-11T01:29:49.752950-07:00,1006.4032592773438,10.935961,10935.961 +8412,2025-06-11T01:30:00.686026-07:00,1006.4181518554688,10.933076,10933.076 +8413,2025-06-11T01:30:11.611973-07:00,1006.4032592773438,10.925947,10925.947 +8414,2025-06-11T01:30:22.549760-07:00,1006.4329833984375,10.937787,10937.787 +8415,2025-06-11T01:30:33.478149-07:00,1006.4246826171875,10.928389,10928.389 +8416,2025-06-11T01:30:44.414717-07:00,1006.4246826171875,10.936568,10936.568 +8417,2025-06-11T01:30:55.345309-07:00,1006.4163818359375,10.930592,10930.592 +8418,2025-06-11T01:31:06.279850-07:00,1006.4132080078125,10.934541,10934.541 +8419,2025-06-11T01:31:17.213733-07:00,1006.4246826171875,10.933883,10933.883 +8420,2025-06-11T01:31:28.137918-07:00,1006.3900756835938,10.924185,10924.185 +8421,2025-06-11T01:31:39.066910-07:00,1006.388427734375,10.928992,10928.992 +8422,2025-06-11T01:31:49.999720-07:00,1006.4210815429688,10.93281,10932.81 +8423,2025-06-11T01:32:00.935725-07:00,1006.396728515625,10.936005,10936.005 +8424,2025-06-11T01:32:11.872094-07:00,1006.4246826171875,10.936369,10936.369 +8425,2025-06-11T01:32:22.802715-07:00,1006.4032592773438,10.930621,10930.621 +8426,2025-06-11T01:32:33.743086-07:00,1006.4098510742188,10.940371,10940.371 +8427,2025-06-11T01:32:44.670733-07:00,1006.39501953125,10.927647,10927.647 +8428,2025-06-11T01:32:55.610127-07:00,1006.4098510742188,10.939394,10939.394 +8429,2025-06-11T01:33:06.544778-07:00,1006.414794921875,10.934651,10934.651 +8430,2025-06-11T01:33:17.485735-07:00,1006.4081420898438,10.940957,10940.957 +8431,2025-06-11T01:33:28.416046-07:00,1006.4229736328125,10.930311,10930.311 +8432,2025-06-11T01:33:39.344776-07:00,1006.4032592773438,10.92873,10928.73 +8433,2025-06-11T01:33:50.288775-07:00,1006.4329833984375,10.943999,10943.999 +8434,2025-06-11T01:34:01.216852-07:00,1006.414794921875,10.928077,10928.077 +8435,2025-06-11T01:34:12.157718-07:00,1006.4067993164062,10.940866,10940.866 +8436,2025-06-11T01:34:23.090947-07:00,1006.4015502929688,10.933229,10933.229 +8437,2025-06-11T01:34:34.035747-07:00,1006.4081420898438,10.9448,10944.8 +8438,2025-06-11T01:34:44.970928-07:00,1006.4511108398438,10.935181,10935.181 +8439,2025-06-11T01:34:55.904240-07:00,1006.3936157226562,10.933312,10933.312 +8440,2025-06-11T01:35:06.839915-07:00,1006.4213256835938,10.935675,10935.675 +8441,2025-06-11T01:35:17.773729-07:00,1006.4213256835938,10.933814,10933.814 +8442,2025-06-11T01:35:28.702146-07:00,1006.4476318359375,10.928417,10928.417 +8443,2025-06-11T01:35:39.640966-07:00,1006.4707641601562,10.93882,10938.82 +8444,2025-06-11T01:35:50.567720-07:00,1006.4444580078125,10.926754,10926.754 +8445,2025-06-11T01:36:01.506759-07:00,1006.4199829101562,10.939039,10939.039 +8446,2025-06-11T01:36:12.428078-07:00,1006.4625244140625,10.921319,10921.319 +8447,2025-06-11T01:36:23.368710-07:00,1006.4608764648438,10.940632,10940.632 +8448,2025-06-11T01:36:34.291995-07:00,1006.4871826171875,10.923285,10923.285 +8449,2025-06-11T01:36:45.224713-07:00,1006.4757690429688,10.932718,10932.718 +8450,2025-06-11T01:36:56.154332-07:00,1006.4529418945312,10.929619,10929.619 +8451,2025-06-11T01:37:07.083734-07:00,1006.5037231445312,10.929402,10929.402 +8452,2025-06-11T01:37:18.006466-07:00,1006.4806518554688,10.922732,10922.732 +8453,2025-06-11T01:37:28.940082-07:00,1006.4954833984375,10.933616,10933.616 +8454,2025-06-11T01:37:39.874190-07:00,1006.48583984375,10.934108,10934.108 +8455,2025-06-11T01:37:50.816734-07:00,1006.4938354492188,10.942544,10942.544 +8456,2025-06-11T01:38:01.749720-07:00,1006.48583984375,10.932986,10932.986 +8457,2025-06-11T01:38:12.689149-07:00,1006.4841918945312,10.939429,10939.429 +8458,2025-06-11T01:38:23.616737-07:00,1006.4907836914062,10.927588,10927.588 +8459,2025-06-11T01:38:34.556702-07:00,1006.4740600585938,10.939965,10939.965 +8460,2025-06-11T01:38:45.495975-07:00,1006.4938354492188,10.939273,10939.273 +8461,2025-06-11T01:38:56.424778-07:00,1006.5201416015625,10.928803,10928.803 +8462,2025-06-11T01:39:07.354143-07:00,1006.505615234375,10.929365,10929.365 +8463,2025-06-11T01:39:18.287131-07:00,1006.4776611328125,10.932988,10932.988 +8464,2025-06-11T01:39:29.224713-07:00,1006.505615234375,10.937582,10937.582 +8465,2025-06-11T01:39:40.162735-07:00,1006.48583984375,10.938022,10938.022 +8466,2025-06-11T01:39:51.090773-07:00,1006.4776611328125,10.928038,10928.038 +8467,2025-06-11T01:40:02.027083-07:00,1006.4957275390625,10.93631,10936.31 +8468,2025-06-11T01:40:12.961048-07:00,1006.50390625,10.933965,10933.965 +8469,2025-06-11T01:40:23.899237-07:00,1006.4627075195312,10.938189,10938.189 +8470,2025-06-11T01:40:34.830066-07:00,1006.4957275390625,10.930829,10930.829 +8471,2025-06-11T01:40:45.774754-07:00,1006.4512329101562,10.944688,10944.688 +8472,2025-06-11T01:40:56.706976-07:00,1006.4710083007812,10.932222,10932.222 +8473,2025-06-11T01:41:07.643353-07:00,1006.4693603515625,10.936377,10936.377 +8474,2025-06-11T01:41:18.573997-07:00,1006.497314453125,10.930644,10930.644 +8475,2025-06-11T01:41:29.510724-07:00,1006.4759521484375,10.936727,10936.727 +8476,2025-06-11T01:41:40.444847-07:00,1006.4561767578125,10.934123,10934.123 +8477,2025-06-11T01:41:51.375211-07:00,1006.4627075195312,10.930364,10930.364 +8478,2025-06-11T01:42:02.300731-07:00,1006.4824829101562,10.92552,10925.52 +8479,2025-06-11T01:42:13.236932-07:00,1006.4693603515625,10.936201,10936.201 +8480,2025-06-11T01:42:24.159005-07:00,1006.4957275390625,10.922073,10922.073 +8481,2025-06-11T01:42:35.081417-07:00,1006.459716796875,10.922412,10922.412 +8482,2025-06-11T01:42:46.014710-07:00,1006.4890747070312,10.933293,10933.293 +8483,2025-06-11T01:42:56.946884-07:00,1006.453125,10.932174,10932.174 +8484,2025-06-11T01:43:07.868817-07:00,1006.4662475585938,10.921933,10921.933 +8485,2025-06-11T01:43:18.799723-07:00,1006.4877319335938,10.930906,10930.906 +8486,2025-06-11T01:43:29.732998-07:00,1006.4890747070312,10.933275,10933.275 +8487,2025-06-11T01:43:40.661025-07:00,1006.459716796875,10.928027,10928.027 +8488,2025-06-11T01:43:51.588721-07:00,1006.4679565429688,10.927696,10927.696 +8489,2025-06-11T01:44:02.515735-07:00,1006.433349609375,10.927014,10927.014 +8490,2025-06-11T01:44:13.456954-07:00,1006.46142578125,10.941219,10941.219 +8491,2025-06-11T01:44:24.391021-07:00,1006.4877319335938,10.934067,10934.067 +8492,2025-06-11T01:44:35.325366-07:00,1006.4810791015625,10.934345,10934.345 +8493,2025-06-11T01:44:46.252979-07:00,1006.4662475585938,10.927613,10927.613 +8494,2025-06-11T01:44:57.191721-07:00,1006.472900390625,10.938742,10938.742 +8495,2025-06-11T01:45:08.119750-07:00,1006.4693603515625,10.928029,10928.029 +8496,2025-06-11T01:45:19.056744-07:00,1006.4824829101562,10.936994,10936.994 +8497,2025-06-11T01:45:29.996821-07:00,1006.4712524414062,10.940077,10940.077 +8498,2025-06-11T01:45:40.924764-07:00,1006.5075073242188,10.927943,10927.943 +8499,2025-06-11T01:45:51.855783-07:00,1006.5009155273438,10.931019,10931.019 +8500,2025-06-11T01:46:02.797988-07:00,1006.494384765625,10.942205,10942.205 +8501,2025-06-11T01:46:13.721494-07:00,1006.494384765625,10.923506,10923.506 +8502,2025-06-11T01:46:24.655192-07:00,1006.4829711914062,10.933698,10933.698 +8503,2025-06-11T01:46:35.585861-07:00,1006.5057983398438,10.930669,10930.669 +8504,2025-06-11T01:46:46.512903-07:00,1006.5009155273438,10.927042,10927.042 +8505,2025-06-11T01:46:57.447174-07:00,1006.51904296875,10.934271,10934.271 +8506,2025-06-11T01:47:08.375957-07:00,1006.4681396484375,10.928783,10928.783 +8507,2025-06-11T01:47:19.305775-07:00,1006.5057983398438,10.929818,10929.818 +8508,2025-06-11T01:47:30.233984-07:00,1006.5057983398438,10.928209,10928.209 +8509,2025-06-11T01:47:41.157784-07:00,1006.5140380859375,10.9238,10923.8 +8510,2025-06-11T01:47:52.094979-07:00,1006.4992065429688,10.937195,10937.195 +8511,2025-06-11T01:48:03.022094-07:00,1006.4890747070312,10.927115,10927.115 +8512,2025-06-11T01:48:13.951743-07:00,1006.5009155273438,10.929649,10929.649 +8513,2025-06-11T01:48:24.884733-07:00,1006.51904296875,10.93299,10932.99 +8514,2025-06-11T01:48:35.805336-07:00,1006.490966796875,10.920603,10920.603 +8515,2025-06-11T01:48:46.734046-07:00,1006.490966796875,10.92871,10928.71 +8516,2025-06-11T01:48:57.667770-07:00,1006.4712524414062,10.933724,10933.724 +8517,2025-06-11T01:49:08.600729-07:00,1006.472900390625,10.932959,10932.959 +8518,2025-06-11T01:49:19.538059-07:00,1006.477783203125,10.93733,10937.33 +8519,2025-06-11T01:49:30.471128-07:00,1006.472900390625,10.933069,10933.069 +8520,2025-06-11T01:49:41.400080-07:00,1006.5009155273438,10.928952,10928.952 +8521,2025-06-11T01:49:52.332147-07:00,1006.4763793945312,10.932067,10932.067 +8522,2025-06-11T01:50:03.256959-07:00,1006.494384765625,10.924812,10924.812 +8523,2025-06-11T01:50:14.187791-07:00,1006.4579467773438,10.930832,10930.832 +8524,2025-06-11T01:50:25.123835-07:00,1006.4632568359375,10.936044,10936.044 +8525,2025-06-11T01:50:36.053926-07:00,1006.4632568359375,10.930091,10930.091 +8526,2025-06-11T01:50:46.987100-07:00,1006.4335327148438,10.933174,10933.174 +8527,2025-06-11T01:50:57.909790-07:00,1006.4632568359375,10.92269,10922.69 +8528,2025-06-11T01:51:08.844203-07:00,1006.464599609375,10.934413,10934.413 +8529,2025-06-11T01:51:19.767720-07:00,1006.4567260742188,10.923517,10923.517 +8530,2025-06-11T01:51:30.691847-07:00,1006.4467163085938,10.924127,10924.127 +8531,2025-06-11T01:51:41.625064-07:00,1006.4567260742188,10.933217,10933.217 +8532,2025-06-11T01:51:52.546716-07:00,1006.4368896484375,10.921652,10921.652 +8533,2025-06-11T01:52:03.480015-07:00,1006.4550170898438,10.933299,10933.299 +8534,2025-06-11T01:52:14.404051-07:00,1006.4681396484375,10.924036,10924.036 +8535,2025-06-11T01:52:25.326725-07:00,1006.4747924804688,10.922674,10922.674 +8536,2025-06-11T01:52:36.261735-07:00,1006.4813232421875,10.93501,10935.01 +8537,2025-06-11T01:52:47.196781-07:00,1006.4533081054688,10.935046,10935.046 +8538,2025-06-11T01:52:58.119615-07:00,1006.4879760742188,10.922834,10922.834 +8539,2025-06-11T01:53:09.059873-07:00,1006.4534301757812,10.940258,10940.258 +8540,2025-06-11T01:53:19.989725-07:00,1006.4765625,10.929852,10929.852 +8541,2025-06-11T01:53:30.910834-07:00,1006.4551391601562,10.921109,10921.109 +8542,2025-06-11T01:53:41.842174-07:00,1006.4600830078125,10.93134,10931.34 +8543,2025-06-11T01:53:52.777961-07:00,1006.4600830078125,10.935787,10935.787 +8544,2025-06-11T01:54:03.713044-07:00,1006.4765625,10.935083,10935.083 +8545,2025-06-11T01:54:14.639898-07:00,1006.4832153320312,10.926854,10926.854 +8546,2025-06-11T01:54:25.579731-07:00,1006.4863891601562,10.939833,10939.833 +8547,2025-06-11T01:54:36.515060-07:00,1006.4667358398438,10.935329,10935.329 +8548,2025-06-11T01:54:47.443797-07:00,1006.5062255859375,10.928737,10928.737 +8549,2025-06-11T01:54:58.372479-07:00,1006.4996337890625,10.928682,10928.682 +8550,2025-06-11T01:55:09.307758-07:00,1006.476806640625,10.935279,10935.279 +8551,2025-06-11T01:55:20.241264-07:00,1006.4798583984375,10.933506,10933.506 +8552,2025-06-11T01:55:31.173727-07:00,1006.4718627929688,10.932463,10932.463 +8553,2025-06-11T01:55:42.102142-07:00,1006.463623046875,10.928415,10928.415 +8554,2025-06-11T01:55:53.039882-07:00,1006.4784545898438,10.93774,10937.74 +8555,2025-06-11T01:56:03.968249-07:00,1006.476806640625,10.928367,10928.367 +8556,2025-06-11T01:56:14.906767-07:00,1006.4916381835938,10.938518,10938.518 +8557,2025-06-11T01:56:25.833078-07:00,1006.481689453125,10.926311,10926.311 +8558,2025-06-11T01:56:36.769959-07:00,1006.4619750976562,10.936881,10936.881 +8559,2025-06-11T01:56:47.693710-07:00,1006.4671630859375,10.923751,10923.751 +8560,2025-06-11T01:56:58.632734-07:00,1006.4589233398438,10.939024,10939.024 +8561,2025-06-11T01:57:09.562082-07:00,1006.4572143554688,10.929348,10929.348 +8562,2025-06-11T01:57:20.489728-07:00,1006.4751586914062,10.927646,10927.646 +8563,2025-06-11T01:57:31.418447-07:00,1006.4984130859375,10.928719,10928.719 +8564,2025-06-11T01:57:42.339731-07:00,1006.516357421875,10.921284,10921.284 +8565,2025-06-11T01:57:53.268705-07:00,1006.5050048828125,10.928974,10928.974 +8566,2025-06-11T01:58:04.200132-07:00,1006.5115356445312,10.931427,10931.427 +8567,2025-06-11T01:58:15.138975-07:00,1006.5001831054688,10.938843,10938.843 +8568,2025-06-11T01:58:26.062999-07:00,1006.4852294921875,10.924024,10924.024 +8569,2025-06-11T01:58:36.992957-07:00,1006.4835815429688,10.929958,10929.958 +8570,2025-06-11T01:58:47.927060-07:00,1006.47705078125,10.934103,10934.103 +8571,2025-06-11T01:58:58.856929-07:00,1006.4950561523438,10.929869,10929.869 +8572,2025-06-11T01:59:09.796714-07:00,1006.4984130859375,10.939785,10939.785 +8573,2025-06-11T01:59:20.731080-07:00,1006.45556640625,10.934366,10934.366 +8574,2025-06-11T01:59:31.657715-07:00,1006.4620971679688,10.926635,10926.635 +8575,2025-06-11T01:59:42.588912-07:00,1006.4703979492188,10.931197,10931.197 +8576,2025-06-11T01:59:53.522145-07:00,1006.45556640625,10.933233,10933.233 +8577,2025-06-11T02:00:04.448811-07:00,1006.435791015625,10.926666,10926.666 +8578,2025-06-11T02:00:15.375371-07:00,1006.4506225585938,10.92656,10926.56 +8579,2025-06-11T02:00:26.303781-07:00,1006.4506225585938,10.92841,10928.41 +8580,2025-06-11T02:00:37.238777-07:00,1006.4901733398438,10.934996,10934.996 +8581,2025-06-11T02:00:48.173886-07:00,1006.4884643554688,10.935109,10935.109 +8582,2025-06-11T02:00:59.106981-07:00,1006.435791015625,10.933095,10933.095 +8583,2025-06-11T02:01:10.036341-07:00,1006.48046875,10.92936,10929.36 +8584,2025-06-11T02:01:20.969993-07:00,1006.4967041015625,10.933652,10933.652 +8585,2025-06-11T02:01:31.905150-07:00,1006.48046875,10.935157,10935.157 +8586,2025-06-11T02:01:42.836735-07:00,1006.48046875,10.931585,10931.585 +8587,2025-06-11T02:01:53.765734-07:00,1006.4788208007812,10.928999,10928.999 +8588,2025-06-11T02:02:04.700781-07:00,1006.4706420898438,10.935047,10935.047 +8589,2025-06-11T02:02:15.637107-07:00,1006.5068969726562,10.936326,10936.326 +8590,2025-06-11T02:02:26.563738-07:00,1006.4968872070312,10.926631,10926.631 +8591,2025-06-11T02:02:37.491711-07:00,1006.4854736328125,10.927973,10927.973 +8592,2025-06-11T02:02:48.425370-07:00,1006.4920043945312,10.933659,10933.659 +8593,2025-06-11T02:02:59.348718-07:00,1006.4656372070312,10.923348,10923.348 +8594,2025-06-11T02:03:10.284718-07:00,1006.4955444335938,10.936,10936.0 +8595,2025-06-11T02:03:21.217725-07:00,1006.4639892578125,10.933007,10933.007 +8596,2025-06-11T02:03:32.152926-07:00,1006.502197265625,10.935201,10935.201 +8597,2025-06-11T02:03:43.080565-07:00,1006.4381103515625,10.927639,10927.639 +8598,2025-06-11T02:03:54.010740-07:00,1006.4740600585938,10.930175,10930.175 +8599,2025-06-11T02:04:04.941716-07:00,1006.436279296875,10.930976,10930.976 +8600,2025-06-11T02:04:15.871717-07:00,1006.4873657226562,10.930001,10930.001 +8601,2025-06-11T02:04:26.800769-07:00,1006.462646484375,10.929052,10929.052 +8602,2025-06-11T02:04:37.729102-07:00,1006.467529296875,10.928333,10928.333 +8603,2025-06-11T02:04:48.657731-07:00,1006.480712890625,10.928629,10928.629 +8604,2025-06-11T02:04:59.588074-07:00,1006.4740600585938,10.930343,10930.343 +8605,2025-06-11T02:05:10.516725-07:00,1006.4578857421875,10.928651,10928.651 +8606,2025-06-11T02:05:21.457390-07:00,1006.4955444335938,10.940665,10940.665 +8607,2025-06-11T02:05:32.376882-07:00,1006.50048828125,10.919492,10919.492 +8608,2025-06-11T02:05:43.307896-07:00,1006.511962890625,10.931014,10931.014 +8609,2025-06-11T02:05:54.235739-07:00,1006.5053100585938,10.927843,10927.843 +8610,2025-06-11T02:06:05.165218-07:00,1006.5106201171875,10.929479,10929.479 +8611,2025-06-11T02:06:16.092761-07:00,1006.525146484375,10.927543,10927.543 +8612,2025-06-11T02:06:27.018985-07:00,1006.5382690429688,10.926224,10926.224 +8613,2025-06-11T02:06:37.954774-07:00,1006.511962890625,10.935789,10935.789 +8614,2025-06-11T02:06:48.889783-07:00,1006.5382690429688,10.935009,10935.009 +8615,2025-06-11T02:06:59.819720-07:00,1006.53173828125,10.929937,10929.937 +8616,2025-06-11T02:07:10.748731-07:00,1006.5267944335938,10.929011,10929.011 +8617,2025-06-11T02:07:21.685095-07:00,1006.5382690429688,10.936364,10936.364 +8618,2025-06-11T02:07:32.619182-07:00,1006.5353393554688,10.934087,10934.087 +8619,2025-06-11T02:07:43.554725-07:00,1006.5399780273438,10.935543,10935.543 +8620,2025-06-11T02:07:54.494816-07:00,1006.525146484375,10.940091,10940.091 +8621,2025-06-11T02:08:05.434847-07:00,1006.5186157226562,10.940031,10940.031 +8622,2025-06-11T02:08:16.367945-07:00,1006.5369262695312,10.933098,10933.098 +8623,2025-06-11T02:08:27.296727-07:00,1006.5203857421875,10.928782,10928.782 +8624,2025-06-11T02:08:38.225710-07:00,1006.5220336914062,10.928983,10928.983 +8625,2025-06-11T02:08:49.155731-07:00,1006.5369262695312,10.930021,10930.021 +8626,2025-06-11T02:09:00.084168-07:00,1006.5353393554688,10.928437,10928.437 +8627,2025-06-11T02:09:11.014148-07:00,1006.5448608398438,10.92998,10929.98 +8628,2025-06-11T02:09:21.941048-07:00,1006.5418701171875,10.9269,10926.9 +8629,2025-06-11T02:09:32.874740-07:00,1006.5549926757812,10.933692,10933.692 +8630,2025-06-11T02:09:43.804205-07:00,1006.5778198242188,10.929465,10929.465 +8631,2025-06-11T02:09:54.728736-07:00,1006.5353393554688,10.924531,10924.531 +8632,2025-06-11T02:10:05.661905-07:00,1006.5484619140625,10.933169,10933.169 +8633,2025-06-11T02:10:16.590467-07:00,1006.5681762695312,10.928562,10928.562 +8634,2025-06-11T02:10:27.517732-07:00,1006.5466918945312,10.927265,10927.265 +8635,2025-06-11T02:10:38.452716-07:00,1006.5401611328125,10.934984,10934.984 +8636,2025-06-11T02:10:49.380785-07:00,1006.5599365234375,10.928069,10928.069 +8637,2025-06-11T02:11:00.304330-07:00,1006.5533447265625,10.923545,10923.545 +8638,2025-06-11T02:11:11.237731-07:00,1006.5401611328125,10.933401,10933.401 +8639,2025-06-11T02:11:22.166895-07:00,1006.525634765625,10.929164,10929.164 +8640,2025-06-11T02:11:33.102731-07:00,1006.51904296875,10.935836,10935.836 +8641,2025-06-11T02:11:44.038975-07:00,1006.5203857421875,10.936244,10936.244 +8642,2025-06-11T02:11:54.972556-07:00,1006.537109375,10.933581,10933.581 +8643,2025-06-11T02:12:05.900731-07:00,1006.52392578125,10.928175,10928.175 +8644,2025-06-11T02:12:16.831934-07:00,1006.52392578125,10.931203,10931.203 +8645,2025-06-11T02:12:27.774337-07:00,1006.5387573242188,10.942403,10942.403 +8646,2025-06-11T02:12:38.699872-07:00,1006.5401611328125,10.925535,10925.535 +8647,2025-06-11T02:12:49.634727-07:00,1006.509033203125,10.934855,10934.855 +8648,2025-06-11T02:12:49.760968-07:00,1006.52392578125,0.126241,126.241 +8649,2025-06-11T02:13:00.559011-07:00,1006.509033203125,10.798043,10798.043 +8650,2025-06-11T02:13:11.491727-07:00,1006.5139770507812,10.932716,10932.716 +8651,2025-06-11T02:13:22.428329-07:00,1006.54541015625,10.936602,10936.602 +8652,2025-06-11T02:13:33.354733-07:00,1006.517333984375,10.926404,10926.404 +8653,2025-06-11T02:13:44.289475-07:00,1006.509033203125,10.934742,10934.742 +8654,2025-06-11T02:13:55.223735-07:00,1006.517333984375,10.93426,10934.26 +8655,2025-06-11T02:14:06.152360-07:00,1006.5337524414062,10.928625,10928.625 +8656,2025-06-11T02:14:17.079765-07:00,1006.50732421875,10.927405,10927.405 +8657,2025-06-11T02:14:28.016176-07:00,1006.4994506835938,10.936411,10936.411 +8658,2025-06-11T02:14:38.943737-07:00,1006.5337524414062,10.927561,10927.561 +8659,2025-06-11T02:14:49.878602-07:00,1006.5222778320312,10.934865,10934.865 +8660,2025-06-11T02:15:00.801790-07:00,1006.548583984375,10.923188,10923.188 +8661,2025-06-11T02:15:11.724731-07:00,1006.5139770507812,10.922941,10922.941 +8662,2025-06-11T02:15:22.658060-07:00,1006.5139770507812,10.933329,10933.329 +8663,2025-06-11T02:15:33.586871-07:00,1006.5060424804688,10.928811,10928.811 +8664,2025-06-11T02:15:44.512025-07:00,1006.5060424804688,10.925154,10925.154 +8665,2025-06-11T02:15:55.439012-07:00,1006.5390014648438,10.926987,10926.987 +8666,2025-06-11T02:16:06.372449-07:00,1006.5060424804688,10.933437,10933.437 +8667,2025-06-11T02:16:17.289028-07:00,1006.5354614257812,10.916579,10916.579 +8668,2025-06-11T02:16:28.218922-07:00,1006.5337524414062,10.929894,10929.894 +8669,2025-06-11T02:16:39.155365-07:00,1006.548583984375,10.936443,10936.443 +8670,2025-06-11T02:16:50.091737-07:00,1006.5323486328125,10.936372,10936.372 +8671,2025-06-11T02:17:01.019731-07:00,1006.5240478515625,10.927994,10927.994 +8672,2025-06-11T02:17:11.943729-07:00,1006.548583984375,10.923998,10923.998 +8673,2025-06-11T02:17:22.871604-07:00,1006.55517578125,10.927875,10927.875 +8674,2025-06-11T02:17:33.801044-07:00,1006.5257568359375,10.92944,10929.44 +8675,2025-06-11T02:17:44.735060-07:00,1006.515869140625,10.934016,10934.016 +8676,2025-06-11T02:17:55.669740-07:00,1006.5601806640625,10.93468,10934.68 +8677,2025-06-11T02:18:06.598192-07:00,1006.5438842773438,10.928452,10928.452 +8678,2025-06-11T02:18:17.532956-07:00,1006.5635986328125,10.934764,10934.764 +8679,2025-06-11T02:18:28.461025-07:00,1006.5487670898438,10.928069,10928.069 +8680,2025-06-11T02:18:39.399979-07:00,1006.5635986328125,10.938954,10938.954 +8681,2025-06-11T02:18:50.329078-07:00,1006.540771484375,10.929099,10929.099 +8682,2025-06-11T02:19:01.251484-07:00,1006.5570068359375,10.922406,10922.406 +8683,2025-06-11T02:19:12.182119-07:00,1006.5946655273438,10.930635,10930.635 +8684,2025-06-11T02:19:23.120381-07:00,1006.5982666015625,10.938262,10938.262 +8685,2025-06-11T02:19:34.044891-07:00,1006.568603515625,10.92451,10924.51 +8686,2025-06-11T02:19:44.976783-07:00,1006.5588989257812,10.931892,10931.892 +8687,2025-06-11T02:19:55.907376-07:00,1006.5606079101562,10.930593,10930.593 +8688,2025-06-11T02:20:06.841105-07:00,1006.5671997070312,10.933729,10933.729 +8689,2025-06-11T02:20:17.781394-07:00,1006.5900268554688,10.940289,10940.289 +8690,2025-06-11T02:20:28.705729-07:00,1006.580322265625,10.924335,10924.335 +8691,2025-06-11T02:20:39.655720-07:00,1006.6031494140625,10.949991,10949.991 +8692,2025-06-11T02:20:50.578886-07:00,1006.57373046875,10.923166,10923.166 +8693,2025-06-11T02:21:01.512974-07:00,1006.5869750976562,10.934088,10934.088 +8694,2025-06-11T02:21:12.437735-07:00,1006.5882568359375,10.924761,10924.761 +8695,2025-06-11T02:21:23.367935-07:00,1006.563720703125,10.9302,10930.2 +8696,2025-06-11T02:21:34.303735-07:00,1006.5588989257812,10.9358,10935.8 +8697,2025-06-11T02:21:45.233123-07:00,1006.5918579101562,10.929388,10929.388 +8698,2025-06-11T02:21:56.154978-07:00,1006.5836181640625,10.921855,10921.855 +8699,2025-06-11T02:22:07.089022-07:00,1006.5953979492188,10.934044,10934.044 +8700,2025-06-11T02:22:18.012915-07:00,1006.600341796875,10.923893,10923.893 +8701,2025-06-11T02:22:28.933804-07:00,1006.6099243164062,10.920889,10920.889 +8702,2025-06-11T02:22:39.858057-07:00,1006.5887451171875,10.924253,10924.253 +8703,2025-06-11T02:22:50.784805-07:00,1006.606689453125,10.926748,10926.748 +8704,2025-06-11T02:23:01.710920-07:00,1006.6099243164062,10.926115,10926.115 +8705,2025-06-11T02:23:12.633565-07:00,1006.6397094726562,10.922645,10922.645 +8706,2025-06-11T02:23:23.565086-07:00,1006.63623046875,10.931521,10931.521 +8707,2025-06-11T02:23:34.496316-07:00,1006.6414794921875,10.93123,10931.23 +8708,2025-06-11T02:23:45.419729-07:00,1006.637939453125,10.923413,10923.413 +8709,2025-06-11T02:23:56.353336-07:00,1006.6182250976562,10.933607,10933.607 +8710,2025-06-11T02:24:07.272745-07:00,1006.6099243164062,10.919409,10919.409 +8711,2025-06-11T02:24:18.202736-07:00,1006.6475830078125,10.929991,10929.991 +8712,2025-06-11T02:24:29.127733-07:00,1006.637939453125,10.924997,10924.997 +8713,2025-06-11T02:24:40.060109-07:00,1006.65283203125,10.932376,10932.376 +8714,2025-06-11T02:24:50.982955-07:00,1006.6314086914062,10.922846,10922.846 +8715,2025-06-11T02:25:01.911734-07:00,1006.6659545898438,10.928779,10928.779 +8716,2025-06-11T02:25:12.830097-07:00,1006.64453125,10.918363,10918.363 +8717,2025-06-11T02:25:23.763099-07:00,1006.67919921875,10.933002,10933.002 +8718,2025-06-11T02:25:34.697838-07:00,1006.6593627929688,10.934739,10934.739 +8719,2025-06-11T02:25:45.616983-07:00,1006.651123046875,10.919145,10919.145 +8720,2025-06-11T02:25:56.549987-07:00,1006.6709594726562,10.933004,10933.004 +8721,2025-06-11T02:26:07.467764-07:00,1006.6923217773438,10.917777,10917.777 +8722,2025-06-11T02:26:18.400977-07:00,1006.6134643554688,10.933213,10933.213 +8723,2025-06-11T02:26:29.328746-07:00,1006.6576538085938,10.927769,10927.769 +8724,2025-06-11T02:26:40.247345-07:00,1006.642822265625,10.918599,10918.599 +8725,2025-06-11T02:26:51.173717-07:00,1006.6414794921875,10.926372,10926.372 +8726,2025-06-11T02:27:02.109016-07:00,1006.6494750976562,10.935299,10935.299 +8727,2025-06-11T02:27:13.026051-07:00,1006.64453125,10.917035,10917.035 +8728,2025-06-11T02:27:23.955757-07:00,1006.642822265625,10.929706,10929.706 +8729,2025-06-11T02:27:34.898731-07:00,1006.6165771484375,10.942974,10942.974 +8730,2025-06-11T02:27:45.823752-07:00,1006.63623046875,10.925021,10925.021 +8731,2025-06-11T02:27:56.750078-07:00,1006.6494750976562,10.926326,10926.326 +8732,2025-06-11T02:28:07.685773-07:00,1006.6296997070312,10.935695,10935.695 +8733,2025-06-11T02:28:18.609731-07:00,1006.637939453125,10.923958,10923.958 +8734,2025-06-11T02:28:29.549885-07:00,1006.6494750976562,10.940154,10940.154 +8735,2025-06-11T02:28:40.475133-07:00,1006.64453125,10.925248,10925.248 +8736,2025-06-11T02:28:51.405718-07:00,1006.637939453125,10.930585,10930.585 +8737,2025-06-11T02:29:02.340733-07:00,1006.624755859375,10.935015,10935.015 +8738,2025-06-11T02:29:13.266982-07:00,1006.637939453125,10.926249,10926.249 +8739,2025-06-11T02:29:24.176299-07:00,1006.5984497070312,10.909317,10909.317 +8740,2025-06-11T02:29:35.100884-07:00,1006.646240234375,10.924585,10924.585 +8741,2025-06-11T02:29:46.026166-07:00,1006.6397094726562,10.925282,10925.282 +8742,2025-06-11T02:29:56.955649-07:00,1006.624755859375,10.929483,10929.483 +8743,2025-06-11T02:30:07.885627-07:00,1006.611572265625,10.929978,10929.978 +8744,2025-06-11T02:30:18.816632-07:00,1006.606689453125,10.931005,10931.005 +8745,2025-06-11T02:30:29.743647-07:00,1006.619873046875,10.927015,10927.015 +8746,2025-06-11T02:30:40.675688-07:00,1006.658935546875,10.932041,10932.041 +8747,2025-06-11T02:30:51.608647-07:00,1006.6492309570312,10.932959,10932.959 +8748,2025-06-11T02:31:02.534675-07:00,1006.6146850585938,10.926028,10926.028 +8749,2025-06-11T02:31:13.464647-07:00,1006.593505859375,10.929972,10929.972 +8750,2025-06-11T02:31:24.395100-07:00,1006.5948486328125,10.930453,10930.453 +8751,2025-06-11T02:31:35.329020-07:00,1006.608154296875,10.93392,10933.92 +8752,2025-06-11T02:31:46.261121-07:00,1006.6097412109375,10.932101,10932.101 +8753,2025-06-11T02:31:57.186641-07:00,1006.6048583984375,10.92552,10925.52 +8754,2025-06-11T02:32:08.110890-07:00,1006.5882568359375,10.924249,10924.249 +8755,2025-06-11T02:32:19.043129-07:00,1006.5917358398438,10.932239,10932.239 +8756,2025-06-11T02:32:29.968943-07:00,1006.6259155273438,10.925814,10925.814 +8757,2025-06-11T02:32:40.906641-07:00,1006.608154296875,10.937698,10937.698 +8758,2025-06-11T02:32:51.834988-07:00,1006.6179809570312,10.928347,10928.347 +8759,2025-06-11T02:33:02.757800-07:00,1006.5982666015625,10.922812,10922.812 +8760,2025-06-11T02:33:13.686793-07:00,1006.5850830078125,10.928993,10928.993 +8761,2025-06-11T02:33:24.615019-07:00,1006.632568359375,10.928226,10928.226 +8762,2025-06-11T02:33:35.544796-07:00,1006.632568359375,10.929777,10929.777 +8763,2025-06-11T02:33:46.473512-07:00,1006.6259155273438,10.928716,10928.716 +8764,2025-06-11T02:33:57.405632-07:00,1006.619384765625,10.93212,10932.12 +8765,2025-06-11T02:34:08.329154-07:00,1006.6113891601562,10.923522,10923.522 +8766,2025-06-11T02:34:19.262907-07:00,1006.6062622070312,10.933753,10933.753 +8767,2025-06-11T02:34:30.197963-07:00,1006.614501953125,10.935056,10935.056 +8768,2025-06-11T02:34:41.131692-07:00,1006.579833984375,10.933729,10933.729 +8769,2025-06-11T02:34:52.060818-07:00,1006.6062622070312,10.929126,10929.126 +8770,2025-06-11T02:35:02.986887-07:00,1006.5535278320312,10.926069,10926.069 +8771,2025-06-11T02:35:13.923035-07:00,1006.58642578125,10.936148,10936.148 +8772,2025-06-11T02:35:24.858643-07:00,1006.579833984375,10.935608,10935.608 +8773,2025-06-11T02:35:35.786515-07:00,1006.5733032226562,10.927872,10927.872 +8774,2025-06-11T02:35:46.709872-07:00,1006.5733032226562,10.923357,10923.357 +8775,2025-06-11T02:35:57.637675-07:00,1006.6012573242188,10.927803,10927.803 +8776,2025-06-11T02:36:08.566894-07:00,1006.579833984375,10.929219,10929.219 +8777,2025-06-11T02:36:19.495642-07:00,1006.58154296875,10.928748,10928.748 +8778,2025-06-11T02:36:30.418367-07:00,1006.5850830078125,10.922725,10922.725 +8779,2025-06-11T02:36:41.339533-07:00,1006.593017578125,10.921166,10921.166 +8780,2025-06-11T02:36:52.261834-07:00,1006.5834350585938,10.922301,10922.301 +8781,2025-06-11T02:37:03.187855-07:00,1006.5982666015625,10.926021,10926.021 +8782,2025-06-11T02:37:14.115453-07:00,1006.5882568359375,10.927598,10927.598 +8783,2025-06-11T02:37:25.043346-07:00,1006.61279296875,10.927893,10927.893 +8784,2025-06-11T02:37:35.972641-07:00,1006.6246337890625,10.929295,10929.295 +8785,2025-06-11T02:37:46.899686-07:00,1006.599609375,10.927045,10927.045 +8786,2025-06-11T02:37:57.838642-07:00,1006.6097412109375,10.938956,10938.956 +8787,2025-06-11T02:38:08.764642-07:00,1006.6509399414062,10.926,10926.0 +8788,2025-06-11T02:38:19.680982-07:00,1006.6259155273438,10.91634,10916.34 +8789,2025-06-11T02:38:30.610624-07:00,1006.61279296875,10.929642,10929.642 +8790,2025-06-11T02:38:41.538936-07:00,1006.62109375,10.928312,10928.312 +8791,2025-06-11T02:38:52.460647-07:00,1006.6408081054688,10.921711,10921.711 +8792,2025-06-11T02:39:03.382792-07:00,1006.6097412109375,10.922145,10922.145 +8793,2025-06-11T02:39:14.307564-07:00,1006.63916015625,10.924772,10924.772 +8794,2025-06-11T02:39:25.241636-07:00,1006.6113891601562,10.934072,10934.072 +8795,2025-06-11T02:39:36.169335-07:00,1006.6246337890625,10.927699,10927.699 +8796,2025-06-11T02:39:47.097891-07:00,1006.6179809570312,10.928556,10928.556 +8797,2025-06-11T02:39:58.020690-07:00,1006.6163330078125,10.922799,10922.799 +8798,2025-06-11T02:40:07.196626-07:00,1006.61328125,9.175936,9175.936 +8799,2025-06-11T02:40:08.951646-07:00,1006.6246337890625,1.75502,1755.02 +8800,2025-06-11T02:40:19.879646-07:00,1006.6295166015625,10.928,10928.0 +8801,2025-06-11T02:40:30.801906-07:00,1006.6278076171875,10.92226,10922.26 +8802,2025-06-11T02:40:41.723687-07:00,1006.6015014648438,10.921781,10921.781 +8803,2025-06-11T02:40:52.641624-07:00,1006.6163330078125,10.917937,10917.937 +8804,2025-06-11T02:41:03.565034-07:00,1006.606689453125,10.92341,10923.41 +8805,2025-06-11T02:41:14.481963-07:00,1006.6001586914062,10.916929,10916.929 +8806,2025-06-11T02:41:25.408636-07:00,1006.6264038085938,10.926673,10926.673 +8807,2025-06-11T02:41:36.326831-07:00,1006.633056640625,10.918195,10918.195 +8808,2025-06-11T02:41:47.250928-07:00,1006.61328125,10.924097,10924.097 +8809,2025-06-11T02:41:58.177680-07:00,1006.6019287109375,10.926752,10926.752 +8810,2025-06-11T02:42:09.094642-07:00,1006.593505859375,10.916962,10916.962 +8811,2025-06-11T02:42:20.022911-07:00,1006.6217041015625,10.928269,10928.269 +8812,2025-06-11T02:42:30.950803-07:00,1006.637939453125,10.927892,10927.892 +8813,2025-06-11T02:42:41.880385-07:00,1006.624755859375,10.929582,10929.582 +8814,2025-06-11T02:42:52.804945-07:00,1006.642822265625,10.92456,10924.56 +8815,2025-06-11T02:43:03.732972-07:00,1006.6314086914062,10.928027,10928.027 +8816,2025-06-11T02:43:14.656004-07:00,1006.6296997070312,10.923032,10923.032 +8817,2025-06-11T02:43:25.578643-07:00,1006.600341796875,10.922639,10922.639 +8818,2025-06-11T02:43:36.511967-07:00,1006.59375,10.933324,10933.324 +8819,2025-06-11T02:43:47.435705-07:00,1006.6348266601562,10.923738,10923.738 +8820,2025-06-11T02:43:58.367709-07:00,1006.603271484375,10.932004,10932.004 +8821,2025-06-11T02:44:09.302643-07:00,1006.6085815429688,10.934934,10934.934 +8822,2025-06-11T02:44:20.227000-07:00,1006.5804443359375,10.924357,10924.357 +8823,2025-06-11T02:44:31.156642-07:00,1006.6051635742188,10.929642,10929.642 +8824,2025-06-11T02:44:42.075644-07:00,1006.600341796875,10.919002,10919.002 +8825,2025-06-11T02:44:53.012958-07:00,1006.6099243164062,10.937314,10937.314 +8826,2025-06-11T02:45:03.929740-07:00,1006.5870971679688,10.916782,10916.782 +8827,2025-06-11T02:45:14.858632-07:00,1006.578857421875,10.928892,10928.892 +8828,2025-06-11T02:45:25.782639-07:00,1006.572265625,10.924007,10924.007 +8829,2025-06-11T02:45:36.715938-07:00,1006.5804443359375,10.933299,10933.299 +8830,2025-06-11T02:45:47.645039-07:00,1006.5772094726562,10.929101,10929.101 +8831,2025-06-11T02:45:58.564632-07:00,1006.592041015625,10.919593,10919.593 +8832,2025-06-11T02:46:09.489295-07:00,1006.5985717773438,10.924663,10924.663 +8833,2025-06-11T02:46:20.423859-07:00,1006.5823364257812,10.934564,10934.564 +8834,2025-06-11T02:46:31.357502-07:00,1006.583740234375,10.933643,10933.643 +8835,2025-06-11T02:46:42.281647-07:00,1006.5692138671875,10.924145,10924.145 +8836,2025-06-11T02:46:53.214094-07:00,1006.5823364257812,10.932447,10932.447 +8837,2025-06-11T02:47:04.138994-07:00,1006.5526733398438,10.9249,10924.9 +8838,2025-06-11T02:47:15.066883-07:00,1006.5626831054688,10.927889,10927.889 +8839,2025-06-11T02:47:25.991967-07:00,1006.6021728515625,10.925084,10925.084 +8840,2025-06-11T02:47:36.923644-07:00,1006.59033203125,10.931677,10931.677 +8841,2025-06-11T02:47:47.857856-07:00,1006.5740356445312,10.934212,10934.212 +8842,2025-06-11T02:47:58.791043-07:00,1006.5939331054688,10.933187,10933.187 +8843,2025-06-11T02:48:09.710167-07:00,1006.623291015625,10.919124,10919.124 +8844,2025-06-11T02:48:20.639913-07:00,1006.5806884765625,10.929746,10929.746 +8845,2025-06-11T02:48:31.567884-07:00,1006.5215454101562,10.927971,10927.971 +8846,2025-06-11T02:48:42.489958-07:00,1006.5872802734375,10.922074,10922.074 +8847,2025-06-11T02:48:53.419850-07:00,1006.557861328125,10.929892,10929.892 +8848,2025-06-11T02:49:04.346530-07:00,1006.557861328125,10.92668,10926.68 +8849,2025-06-11T02:49:15.275643-07:00,1006.55126953125,10.929113,10929.113 +8850,2025-06-11T02:49:26.211403-07:00,1006.544677734375,10.93576,10935.76 +8851,2025-06-11T02:49:37.149636-07:00,1006.55615234375,10.938233,10938.233 +8852,2025-06-11T02:49:48.085240-07:00,1006.5215454101562,10.935604,10935.604 +8853,2025-06-11T02:49:59.011639-07:00,1006.5496215820312,10.926399,10926.399 +8854,2025-06-11T02:50:09.929776-07:00,1006.5267944335938,10.918137,10918.137 +8855,2025-06-11T02:50:20.864915-07:00,1006.5740356445312,10.935139,10935.139 +8856,2025-06-11T02:50:31.781631-07:00,1006.584228515625,10.916716,10916.716 +8857,2025-06-11T02:50:42.710217-07:00,1006.55126953125,10.928586,10928.586 +8858,2025-06-11T02:50:53.640828-07:00,1006.557861328125,10.930611,10930.611 +8859,2025-06-11T02:51:04.576132-07:00,1006.5610961914062,10.935304,10935.304 +8860,2025-06-11T02:51:15.509797-07:00,1006.5427856445312,10.933665,10933.665 +8861,2025-06-11T02:51:26.441701-07:00,1006.5973510742188,10.931904,10931.904 +8862,2025-06-11T02:51:37.368804-07:00,1006.5940551757812,10.927103,10927.103 +8863,2025-06-11T02:51:48.293174-07:00,1006.5596923828125,10.92437,10924.37 +8864,2025-06-11T02:51:59.223645-07:00,1006.6052856445312,10.930471,10930.471 +8865,2025-06-11T02:52:10.156794-07:00,1006.595703125,10.933149,10933.149 +8866,2025-06-11T02:52:21.082647-07:00,1006.595703125,10.925853,10925.853 +8867,2025-06-11T02:52:32.006641-07:00,1006.5940551757812,10.923994,10923.994 +8868,2025-06-11T02:52:42.947795-07:00,1006.5940551757812,10.941154,10941.154 +8869,2025-06-11T02:52:53.871642-07:00,1006.5744018554688,10.923847,10923.847 +8870,2025-06-11T02:53:04.803984-07:00,1006.5926513671875,10.932342,10932.342 +8871,2025-06-11T02:53:15.728639-07:00,1006.6041259765625,10.924655,10924.655 +8872,2025-06-11T02:53:26.655954-07:00,1006.5926513671875,10.927315,10927.315 +8873,2025-06-11T02:53:37.586624-07:00,1006.5778198242188,10.93067,10930.67 +8874,2025-06-11T02:53:48.512621-07:00,1006.5940551757812,10.925997,10925.997 +8875,2025-06-11T02:53:59.448636-07:00,1006.5926513671875,10.936015,10936.015 +8876,2025-06-11T02:54:10.369843-07:00,1006.5712280273438,10.921207,10921.207 +8877,2025-06-11T02:54:21.306750-07:00,1006.58740234375,10.936907,10936.907 +8878,2025-06-11T02:54:32.225645-07:00,1006.5712280273438,10.918895,10918.895 +8879,2025-06-11T02:54:43.159638-07:00,1006.5823364257812,10.933993,10933.993 +8880,2025-06-11T02:54:54.088637-07:00,1006.5778198242188,10.928999,10928.999 +8881,2025-06-11T02:55:05.007514-07:00,1006.5778198242188,10.918877,10918.877 +8882,2025-06-11T02:55:15.941026-07:00,1006.6107788085938,10.933512,10933.512 +8883,2025-06-11T02:55:26.873929-07:00,1006.5678100585938,10.932903,10932.903 +8884,2025-06-11T02:55:37.807884-07:00,1006.5909423828125,10.933955,10933.955 +8885,2025-06-11T02:55:48.739847-07:00,1006.5744018554688,10.931963,10931.963 +8886,2025-06-11T02:55:59.667639-07:00,1006.5692138671875,10.927792,10927.792 +8887,2025-06-11T02:56:10.596769-07:00,1006.5809936523438,10.92913,10929.13 +8888,2025-06-11T02:56:21.523640-07:00,1006.57763671875,10.926871,10926.871 +8889,2025-06-11T02:56:32.452638-07:00,1006.6056518554688,10.928998,10928.998 +8890,2025-06-11T02:56:43.380640-07:00,1006.5496215820312,10.928002,10928.002 +8891,2025-06-11T02:56:54.301638-07:00,1006.5809936523438,10.920998,10920.998 +8892,2025-06-11T02:57:05.233231-07:00,1006.5711059570312,10.931593,10931.593 +8893,2025-06-11T02:57:16.160621-07:00,1006.564453125,10.92739,10927.39 +8894,2025-06-11T02:57:27.090231-07:00,1006.5678100585938,10.92961,10929.61 +8895,2025-06-11T02:57:38.022618-07:00,1006.5628051757812,10.932387,10932.387 +8896,2025-06-11T02:57:48.947637-07:00,1006.5744018554688,10.925019,10925.019 +8897,2025-06-11T02:57:59.881638-07:00,1006.6021728515625,10.934001,10934.001 +8898,2025-06-11T02:58:10.809940-07:00,1006.557861328125,10.928302,10928.302 +8899,2025-06-11T02:58:21.744645-07:00,1006.579345703125,10.934705,10934.705 +8900,2025-06-11T02:58:32.668639-07:00,1006.55126953125,10.923994,10923.994 +8901,2025-06-11T02:58:43.608643-07:00,1006.59423828125,10.940004,10940.004 +8902,2025-06-11T02:58:54.537677-07:00,1006.5859375,10.929034,10929.034 +8903,2025-06-11T02:59:05.470628-07:00,1006.5809936523438,10.932951,10932.951 +8904,2025-06-11T02:59:16.404566-07:00,1006.5859375,10.933938,10933.938 +8905,2025-06-11T02:59:27.331794-07:00,1006.5595092773438,10.927228,10927.228 +8906,2025-06-11T02:59:38.254626-07:00,1006.5678100585938,10.922832,10922.832 +8907,2025-06-11T02:59:49.196693-07:00,1006.564453125,10.942067,10942.067 +8908,2025-06-11T03:00:00.117875-07:00,1006.57763671875,10.921182,10921.182 +8909,2025-06-11T03:00:11.046769-07:00,1006.566162109375,10.928894,10928.894 +8910,2025-06-11T03:00:21.986896-07:00,1006.592529296875,10.940127,10940.127 +8911,2025-06-11T03:00:32.915632-07:00,1006.5482788085938,10.928736,10928.736 +8912,2025-06-11T03:00:43.838877-07:00,1006.566162109375,10.923245,10923.245 +8913,2025-06-11T03:00:54.766461-07:00,1006.5496215820312,10.927584,10927.584 +8914,2025-06-11T03:01:05.701637-07:00,1006.584228515625,10.935176,10935.176 +8915,2025-06-11T03:01:16.631707-07:00,1006.5548706054688,10.93007,10930.07 +8916,2025-06-11T03:01:27.560645-07:00,1006.5745849609375,10.928938,10928.938 +8917,2025-06-11T03:01:38.486582-07:00,1006.5496215820312,10.925937,10925.937 +8918,2025-06-11T03:01:49.427633-07:00,1006.5907592773438,10.941051,10941.051 +8919,2025-06-11T03:02:00.357262-07:00,1006.5496215820312,10.929629,10929.629 +8920,2025-06-11T03:02:11.289683-07:00,1006.5614013671875,10.932421,10932.421 +8921,2025-06-11T03:02:22.224651-07:00,1006.5496215820312,10.934968,10934.968 +8922,2025-06-11T03:02:33.157643-07:00,1006.5465698242188,10.932992,10932.992 +8923,2025-06-11T03:02:44.078891-07:00,1006.5712280273438,10.921248,10921.248 +8924,2025-06-11T03:02:55.008642-07:00,1006.5926513671875,10.929751,10929.751 +8925,2025-06-11T03:03:05.945022-07:00,1006.57763671875,10.93638,10936.38 +8926,2025-06-11T03:03:16.867751-07:00,1006.5861206054688,10.922729,10922.729 +8927,2025-06-11T03:03:27.800369-07:00,1006.564697265625,10.932618,10932.618 +8928,2025-06-11T03:03:38.729647-07:00,1006.5335693359375,10.929278,10929.278 +8929,2025-06-11T03:03:49.658887-07:00,1006.5596923828125,10.92924,10929.24 +8930,2025-06-11T03:04:00.583978-07:00,1006.5747680664062,10.925091,10925.091 +8931,2025-06-11T03:04:11.509963-07:00,1006.5549926757812,10.925985,10925.985 +8932,2025-06-11T03:04:22.435956-07:00,1006.568115234375,10.925993,10925.993 +8933,2025-06-11T03:04:33.370645-07:00,1006.5387573242188,10.934689,10934.689 +8934,2025-06-11T03:04:44.295735-07:00,1006.5387573242188,10.92509,10925.09 +8935,2025-06-11T03:04:55.233863-07:00,1006.559814453125,10.938128,10938.128 +8936,2025-06-11T03:05:06.158520-07:00,1006.5615844726562,10.924657,10924.657 +8937,2025-06-11T03:05:17.093868-07:00,1006.5585327148438,10.935348,10935.348 +8938,2025-06-11T03:05:28.023922-07:00,1006.56982421875,10.930054,10930.054 +8939,2025-06-11T03:05:38.953057-07:00,1006.556884765625,10.929135,10929.135 +8940,2025-06-11T03:05:49.884842-07:00,1006.559814453125,10.931785,10931.785 +8941,2025-06-11T03:06:00.811889-07:00,1006.550048828125,10.927047,10927.047 +8942,2025-06-11T03:06:11.751994-07:00,1006.5567016601562,10.940105,10940.105 +8943,2025-06-11T03:06:22.675735-07:00,1006.5585327148438,10.923741,10923.741 +8944,2025-06-11T03:06:33.604861-07:00,1006.5862426757812,10.929126,10929.126 +8945,2025-06-11T03:06:44.538702-07:00,1006.5879516601562,10.933841,10933.841 +8946,2025-06-11T03:06:55.462643-07:00,1006.5418701171875,10.923941,10923.941 +8947,2025-06-11T03:07:06.392895-07:00,1006.5664672851562,10.930252,10930.252 +8948,2025-06-11T03:07:17.323631-07:00,1006.576416015625,10.930736,10930.736 +8949,2025-06-11T03:07:28.253243-07:00,1006.568115234375,10.929612,10929.612 +8950,2025-06-11T03:07:39.192853-07:00,1006.5585327148438,10.93961,10939.61 +8951,2025-06-11T03:07:50.119642-07:00,1006.568115234375,10.926789,10926.789 +8952,2025-06-11T03:08:01.053965-07:00,1006.5532836914062,10.934323,10934.323 +8953,2025-06-11T03:08:11.984642-07:00,1006.5401611328125,10.930677,10930.677 +8954,2025-06-11T03:08:22.909625-07:00,1006.528564453125,10.924983,10924.983 +8955,2025-06-11T03:08:33.835211-07:00,1006.5418701171875,10.925586,10925.586 +8956,2025-06-11T03:08:44.763795-07:00,1006.5154418945312,10.928584,10928.584 +8957,2025-06-11T03:08:55.700170-07:00,1006.5269775390625,10.936375,10936.375 +8958,2025-06-11T03:09:06.632633-07:00,1006.53173828125,10.932463,10932.463 +8959,2025-06-11T03:09:17.560485-07:00,1006.4974365234375,10.927852,10927.852 +8960,2025-06-11T03:09:28.488647-07:00,1006.4940795898438,10.928162,10928.162 +8961,2025-06-11T03:09:39.424453-07:00,1006.5203857421875,10.935806,10935.806 +8962,2025-06-11T03:09:50.352476-07:00,1006.5172119140625,10.928023,10928.023 +8963,2025-06-11T03:10:01.275987-07:00,1006.5089111328125,10.923511,10923.511 +8964,2025-06-11T03:10:12.195158-07:00,1006.4907836914062,10.919171,10919.171 +8965,2025-06-11T03:10:23.127627-07:00,1006.4891357421875,10.932469,10932.469 +8966,2025-06-11T03:10:34.060786-07:00,1006.4776611328125,10.933159,10933.159 +8967,2025-06-11T03:10:44.979638-07:00,1006.5201416015625,10.918852,10918.852 +8968,2025-06-11T03:10:55.898647-07:00,1006.511962890625,10.919009,10919.009 +8969,2025-06-11T03:11:06.831789-07:00,1006.4974365234375,10.933142,10933.142 +8970,2025-06-11T03:11:17.763626-07:00,1006.5218505859375,10.931837,10931.837 +8971,2025-06-11T03:11:28.693124-07:00,1006.4790649414062,10.929498,10929.498 +8972,2025-06-11T03:11:39.627003-07:00,1006.4974365234375,10.933879,10933.879 +8973,2025-06-11T03:11:50.551905-07:00,1006.4841918945312,10.924902,10924.902 +8974,2025-06-11T03:12:01.479631-07:00,1006.5070190429688,10.927726,10927.726 +8975,2025-06-11T03:12:12.406911-07:00,1006.4841918945312,10.92728,10927.28 +8976,2025-06-11T03:12:23.336615-07:00,1006.4790649414062,10.929704,10929.704 +8977,2025-06-11T03:12:34.270763-07:00,1006.4742431640625,10.934148,10934.148 +8978,2025-06-11T03:12:45.192114-07:00,1006.5218505859375,10.921351,10921.351 +8979,2025-06-11T03:12:56.121875-07:00,1006.5023193359375,10.929761,10929.761 +8980,2025-06-11T03:13:07.054897-07:00,1006.4891357421875,10.933022,10933.022 +8981,2025-06-11T03:13:17.983644-07:00,1006.4974365234375,10.928747,10928.747 +8982,2025-06-11T03:13:28.924775-07:00,1006.4957275390625,10.941131,10941.131 +8983,2025-06-11T03:13:39.846789-07:00,1006.5106201171875,10.922014,10922.014 +8984,2025-06-11T03:13:50.782642-07:00,1006.5106201171875,10.935853,10935.853 +8985,2025-06-11T03:14:01.709633-07:00,1006.4974365234375,10.926991,10926.991 +8986,2025-06-11T03:14:12.646630-07:00,1006.4974365234375,10.936997,10936.997 +8987,2025-06-11T03:14:23.578642-07:00,1006.5154418945312,10.932012,10932.012 +8988,2025-06-11T03:14:34.505699-07:00,1006.5023193359375,10.927057,10927.057 +8989,2025-06-11T03:14:45.444618-07:00,1006.5006103515625,10.938919,10938.919 +8990,2025-06-11T03:14:56.375658-07:00,1006.5023193359375,10.93104,10931.04 +8991,2025-06-11T03:15:07.294632-07:00,1006.4957275390625,10.918974,10918.974 +8992,2025-06-11T03:15:18.226691-07:00,1006.4776611328125,10.932059,10932.059 +8993,2025-06-11T03:15:29.166731-07:00,1006.4790649414062,10.94004,10940.04 +8994,2025-06-11T03:15:40.085384-07:00,1006.4891357421875,10.918653,10918.653 +8995,2025-06-11T03:15:51.019647-07:00,1006.5352172851562,10.934263,10934.263 +8996,2025-06-11T03:16:01.948996-07:00,1006.5184936523438,10.929349,10929.349 +8997,2025-06-11T03:16:12.887227-07:00,1006.4907836914062,10.938231,10938.231 +8998,2025-06-11T03:16:23.811100-07:00,1006.5039672851562,10.923873,10923.873 +8999,2025-06-11T03:16:34.747633-07:00,1006.4580688476562,10.936533,10936.533 +9000,2025-06-11T03:16:45.672956-07:00,1006.4742431640625,10.925323,10925.323 +9001,2025-06-11T03:16:56.605642-07:00,1006.5089111328125,10.932686,10932.686 +9002,2025-06-11T03:17:07.530916-07:00,1006.4759521484375,10.925274,10925.274 +9003,2025-06-11T03:17:18.463677-07:00,1006.5154418945312,10.932761,10932.761 +9004,2025-06-11T03:17:29.394097-07:00,1006.528564453125,10.93042,10930.42 +9005,2025-06-11T03:17:40.320895-07:00,1006.5072021484375,10.926798,10926.798 +9006,2025-06-11T03:17:51.251780-07:00,1006.5089111328125,10.930885,10930.885 +9007,2025-06-11T03:18:02.175096-07:00,1006.5057983398438,10.923316,10923.316 +9008,2025-06-11T03:18:13.100785-07:00,1006.5025024414062,10.925689,10925.689 +9009,2025-06-11T03:18:24.030160-07:00,1006.47607421875,10.929375,10929.375 +9010,2025-06-11T03:18:34.958121-07:00,1006.49755859375,10.927961,10927.961 +9011,2025-06-11T03:18:45.887682-07:00,1006.49755859375,10.929561,10929.561 +9012,2025-06-11T03:18:56.808837-07:00,1006.5023193359375,10.921155,10921.155 +9013,2025-06-11T03:19:07.736626-07:00,1006.486083984375,10.927789,10927.789 +9014,2025-06-11T03:19:18.667781-07:00,1006.5072021484375,10.931155,10931.155 +9015,2025-06-11T03:19:29.601754-07:00,1006.5057983398438,10.933973,10933.973 +9016,2025-06-11T03:19:40.518808-07:00,1006.5072021484375,10.917054,10917.054 +9017,2025-06-11T03:19:51.451718-07:00,1006.5137329101562,10.93291,10932.91 +9018,2025-06-11T03:20:02.376070-07:00,1006.4795532226562,10.924352,10924.352 +9019,2025-06-11T03:20:13.299314-07:00,1006.4795532226562,10.923244,10923.244 +9020,2025-06-11T03:20:24.221317-07:00,1006.4992065429688,10.922003,10922.003 +9021,2025-06-11T03:20:35.144834-07:00,1006.459716796875,10.923517,10923.517 +9022,2025-06-11T03:20:46.071701-07:00,1006.472900390625,10.926867,10926.867 +9023,2025-06-11T03:20:56.999643-07:00,1006.5089111328125,10.927942,10927.942 +9024,2025-06-11T03:21:07.920031-07:00,1006.4580688476562,10.920388,10920.388 +9025,2025-06-11T03:21:18.849611-07:00,1006.472900390625,10.92958,10929.58 +9026,2025-06-11T03:21:29.775642-07:00,1006.49267578125,10.926031,10926.031 +9027,2025-06-11T03:21:40.703965-07:00,1006.5137329101562,10.928323,10928.323 +9028,2025-06-11T03:21:51.637841-07:00,1006.4795532226562,10.933876,10933.876 +9029,2025-06-11T03:22:02.556248-07:00,1006.512451171875,10.918407,10918.407 +9030,2025-06-11T03:22:13.481645-07:00,1006.4992065429688,10.925397,10925.397 +9031,2025-06-11T03:22:24.418271-07:00,1006.5269775390625,10.936626,10936.626 +9032,2025-06-11T03:22:35.335885-07:00,1006.5057983398438,10.917614,10917.614 +9033,2025-06-11T03:22:46.273840-07:00,1006.51904296875,10.937955,10937.955 +9034,2025-06-11T03:22:57.195645-07:00,1006.515625,10.921805,10921.805 +9035,2025-06-11T03:23:08.125901-07:00,1006.525634765625,10.930256,10930.256 +9036,2025-06-11T03:23:19.050579-07:00,1006.5452880859375,10.924678,10924.678 +9037,2025-06-11T03:23:29.988876-07:00,1006.5321655273438,10.938297,10938.297 +9038,2025-06-11T03:23:40.906988-07:00,1006.543701171875,10.918112,10918.112 +9039,2025-06-11T03:23:51.839645-07:00,1006.525634765625,10.932657,10932.657 +9040,2025-06-11T03:24:02.764637-07:00,1006.5401611328125,10.924992,10924.992 +9041,2025-06-11T03:24:13.688647-07:00,1006.512451171875,10.92401,10924.01 +9042,2025-06-11T03:24:24.619637-07:00,1006.525634765625,10.93099,10930.99 +9043,2025-06-11T03:24:35.545087-07:00,1006.5387573242188,10.92545,10925.45 +9044,2025-06-11T03:24:46.475896-07:00,1006.4992065429688,10.930809,10930.809 +9045,2025-06-11T03:24:57.401733-07:00,1006.504150390625,10.925837,10925.837 +9046,2025-06-11T03:25:08.325862-07:00,1006.5203857421875,10.924129,10924.129 +9047,2025-06-11T03:25:19.246667-07:00,1006.512451171875,10.920805,10920.805 +9048,2025-06-11T03:25:30.176932-07:00,1006.5321655273438,10.930265,10930.265 +9049,2025-06-11T03:25:41.102647-07:00,1006.490966796875,10.925715,10925.715 +9050,2025-06-11T03:25:52.028831-07:00,1006.512451171875,10.926184,10926.184 +9051,2025-06-11T03:26:02.954978-07:00,1006.5466918945312,10.926147,10926.147 +9052,2025-06-11T03:26:13.884645-07:00,1006.5387573242188,10.929667,10929.667 +9053,2025-06-11T03:26:24.818045-07:00,1006.490966796875,10.9334,10933.4 +9054,2025-06-11T03:26:35.744729-07:00,1006.5025024414062,10.926684,10926.684 +9055,2025-06-11T03:26:46.671908-07:00,1006.522216796875,10.927179,10927.179 +9056,2025-06-11T03:26:57.599644-07:00,1006.4862670898438,10.927736,10927.736 +9057,2025-06-11T03:27:08.534146-07:00,1006.4927978515625,10.934502,10934.502 +9058,2025-06-11T03:27:19.457709-07:00,1006.5287475585938,10.923563,10923.563 +9059,2025-06-11T03:27:30.385577-07:00,1006.482666015625,10.927868,10927.868 +9060,2025-06-11T03:27:41.319634-07:00,1006.4810180664062,10.934057,10934.057 +9061,2025-06-11T03:27:52.249684-07:00,1006.5108032226562,10.93005,10930.05 +9062,2025-06-11T03:28:03.176646-07:00,1006.490966796875,10.926962,10926.962 +9063,2025-06-11T03:28:14.105897-07:00,1006.47607421875,10.929251,10929.251 +9064,2025-06-11T03:28:25.031073-07:00,1006.490966796875,10.925176,10925.176 +9065,2025-06-11T03:28:35.964899-07:00,1006.484375,10.933826,10933.826 +9066,2025-06-11T03:28:46.896640-07:00,1006.490966796875,10.931741,10931.741 +9067,2025-06-11T03:28:57.829901-07:00,1006.490966796875,10.933261,10933.261 +9068,2025-06-11T03:29:08.758050-07:00,1006.4942016601562,10.928149,10928.149 +9069,2025-06-11T03:29:19.682647-07:00,1006.512451171875,10.924597,10924.597 +9070,2025-06-11T03:29:30.653073-07:00,1006.4795532226562,10.970426,10970.426 +9071,2025-06-11T03:29:41.577186-07:00,1006.4893188476562,10.924113,10924.113 +9072,2025-06-11T03:29:52.505262-07:00,1006.484375,10.928076,10928.076 +9073,2025-06-11T03:30:03.436920-07:00,1006.4808349609375,10.931658,10931.658 +9074,2025-06-11T03:30:14.362060-07:00,1006.4497680664062,10.92514,10925.14 +9075,2025-06-11T03:30:25.281445-07:00,1006.4580688476562,10.919385,10919.385 +9076,2025-06-11T03:30:36.207910-07:00,1006.46630859375,10.926465,10926.465 +9077,2025-06-11T03:30:47.128398-07:00,1006.5023193359375,10.920488,10920.488 +9078,2025-06-11T03:30:58.055485-07:00,1006.4646606445312,10.927087,10927.087 +9079,2025-06-11T03:31:08.984073-07:00,1006.453125,10.928588,10928.588 +9080,2025-06-11T03:31:19.901157-07:00,1006.44482421875,10.917084,10917.084 +9081,2025-06-11T03:31:30.834914-07:00,1006.4907836914062,10.933757,10933.757 +9082,2025-06-11T03:31:41.750925-07:00,1006.4974365234375,10.916011,10916.011 +9083,2025-06-11T03:31:52.678525-07:00,1006.4795532226562,10.9276,10927.6 +9084,2025-06-11T03:32:03.600910-07:00,1006.4795532226562,10.922385,10922.385 +9085,2025-06-11T03:32:14.530921-07:00,1006.4974365234375,10.930011,10930.011 +9086,2025-06-11T03:32:25.454082-07:00,1006.4693603515625,10.923161,10923.161 +9087,2025-06-11T03:32:36.377106-07:00,1006.4742431640625,10.923024,10923.024 +9088,2025-06-11T03:32:47.305634-07:00,1006.485595703125,10.928528,10928.528 +9089,2025-06-11T03:32:58.223239-07:00,1006.4676513671875,10.917605,10917.605 +9090,2025-06-11T03:33:09.158464-07:00,1006.4742431640625,10.935225,10935.225 +9091,2025-06-11T03:33:20.080283-07:00,1006.472900390625,10.921819,10921.819 +9092,2025-06-11T03:33:31.014159-07:00,1006.4874877929688,10.933876,10933.876 +9093,2025-06-11T03:33:41.936892-07:00,1006.4646606445312,10.922733,10922.733 +9094,2025-06-11T03:33:52.875196-07:00,1006.4742431640625,10.938304,10938.304 +9095,2025-06-11T03:34:03.798080-07:00,1006.4611206054688,10.922884,10922.884 +9096,2025-06-11T03:34:14.732143-07:00,1006.4676513671875,10.934063,10934.063 +9097,2025-06-11T03:34:25.664026-07:00,1006.4808349609375,10.931883,10931.883 +9098,2025-06-11T03:34:36.591185-07:00,1006.4646606445312,10.927159,10927.159 +9099,2025-06-11T03:34:47.519899-07:00,1006.4874877929688,10.928714,10928.714 +9100,2025-06-11T03:34:58.449559-07:00,1006.5006103515625,10.92966,10929.66 +9101,2025-06-11T03:35:09.376543-07:00,1006.4795532226562,10.926984,10926.984 +9102,2025-06-11T03:35:20.311923-07:00,1006.490966796875,10.93538,10935.38 +9103,2025-06-11T03:35:31.232917-07:00,1006.49267578125,10.920994,10920.994 +9104,2025-06-11T03:35:42.169960-07:00,1006.477783203125,10.937043,10937.043 +9105,2025-06-11T03:35:53.096904-07:00,1006.484375,10.926944,10926.944 +9106,2025-06-11T03:36:04.027268-07:00,1006.49267578125,10.930364,10930.364 +9107,2025-06-11T03:36:14.958908-07:00,1006.490966796875,10.93164,10931.64 +9108,2025-06-11T03:36:25.887218-07:00,1006.49755859375,10.92831,10928.31 +9109,2025-06-11T03:36:36.822921-07:00,1006.525634765625,10.935703,10935.703 +9110,2025-06-11T03:36:47.751069-07:00,1006.512451171875,10.928148,10928.148 +9111,2025-06-11T03:36:58.678919-07:00,1006.5108032226562,10.92785,10927.85 +9112,2025-06-11T03:37:09.609577-07:00,1006.49755859375,10.930658,10930.658 +9113,2025-06-11T03:37:20.541982-07:00,1006.5025024414062,10.932405,10932.405 +9114,2025-06-11T03:37:31.480404-07:00,1006.4893188476562,10.938422,10938.422 +9115,2025-06-11T03:37:42.411909-07:00,1006.49755859375,10.931505,10931.505 +9116,2025-06-11T03:37:53.334559-07:00,1006.490966796875,10.92265,10922.65 +9117,2025-06-11T03:38:04.268959-07:00,1006.490966796875,10.9344,10934.4 +9118,2025-06-11T03:38:15.193071-07:00,1006.490966796875,10.924112,10924.112 +9119,2025-06-11T03:38:26.121033-07:00,1006.4992065429688,10.927962,10927.962 +9120,2025-06-11T03:38:37.049919-07:00,1006.490966796875,10.928886,10928.886 +9121,2025-06-11T03:38:47.977259-07:00,1006.4795532226562,10.92734,10927.34 +9122,2025-06-11T03:38:58.911198-07:00,1006.4992065429688,10.933939,10933.939 +9123,2025-06-11T03:39:09.835195-07:00,1006.490966796875,10.923997,10923.997 +9124,2025-06-11T03:39:20.774612-07:00,1006.46630859375,10.939417,10939.417 +9125,2025-06-11T03:39:31.704250-07:00,1006.4646606445312,10.929638,10929.638 +9126,2025-06-11T03:39:42.632917-07:00,1006.4712524414062,10.928667,10928.667 +9127,2025-06-11T03:39:53.559247-07:00,1006.5023193359375,10.92633,10926.33 +9128,2025-06-11T03:40:04.490150-07:00,1006.4580688476562,10.930903,10930.903 +9129,2025-06-11T03:40:15.417637-07:00,1006.472900390625,10.927487,10927.487 +9130,2025-06-11T03:40:26.341916-07:00,1006.4695434570312,10.924279,10924.279 +9131,2025-06-11T03:40:37.260957-07:00,1006.4612426757812,10.919041,10919.041 +9132,2025-06-11T03:40:48.192132-07:00,1006.4598388671875,10.931175,10931.175 +9133,2025-06-11T03:40:59.107058-07:00,1006.4564208984375,10.914926,10914.926 +9134,2025-06-11T03:41:10.034921-07:00,1006.4580688476562,10.927863,10927.863 +9135,2025-06-11T03:41:20.960082-07:00,1006.4795532226562,10.925161,10925.161 +9136,2025-06-11T03:41:31.888921-07:00,1006.477783203125,10.928839,10928.839 +9137,2025-06-11T03:41:42.810948-07:00,1006.4795532226562,10.922027,10922.027 +9138,2025-06-11T03:41:53.740460-07:00,1006.47607421875,10.929512,10929.512 +9139,2025-06-11T03:42:04.663205-07:00,1006.504150390625,10.922745,10922.745 +9140,2025-06-11T03:42:15.594264-07:00,1006.482666015625,10.931059,10931.059 +9141,2025-06-11T03:42:26.513210-07:00,1006.477783203125,10.918946,10918.946 +9142,2025-06-11T03:42:37.438992-07:00,1006.4893188476562,10.925782,10925.782 +9143,2025-06-11T03:42:48.363252-07:00,1006.4664916992188,10.92426,10924.26 +9144,2025-06-11T03:42:59.294921-07:00,1006.4564208984375,10.931669,10931.669 +9145,2025-06-11T03:43:10.228425-07:00,1006.4481201171875,10.933504,10933.504 +9146,2025-06-11T03:43:21.150893-07:00,1006.4730224609375,10.922468,10922.468 +9147,2025-06-11T03:43:32.092921-07:00,1006.4467163085938,10.942028,10942.028 +9148,2025-06-11T03:43:43.014918-07:00,1006.4431762695312,10.921997,10921.997 +9149,2025-06-11T03:43:53.955314-07:00,1006.4695434570312,10.940396,10940.396 +9150,2025-06-11T03:44:04.876917-07:00,1006.4497680664062,10.921603,10921.603 +9151,2025-06-11T03:44:15.810204-07:00,1006.4234619140625,10.933287,10933.287 +9152,2025-06-11T03:44:26.742200-07:00,1006.4612426757812,10.931996,10931.996 +9153,2025-06-11T03:44:37.659960-07:00,1006.4547119140625,10.91776,10917.76 +9154,2025-06-11T03:44:48.585975-07:00,1006.486083984375,10.926015,10926.015 +9155,2025-06-11T03:44:59.520914-07:00,1006.482666015625,10.934939,10934.939 +9156,2025-06-11T03:45:10.443209-07:00,1006.4629516601562,10.922295,10922.295 +9157,2025-06-11T03:45:21.371918-07:00,1006.4564208984375,10.928709,10928.709 +9158,2025-06-11T03:45:32.294114-07:00,1006.4547119140625,10.922196,10922.196 +9159,2025-06-11T03:45:43.228915-07:00,1006.4695434570312,10.934801,10934.801 +9160,2025-06-11T03:45:54.154965-07:00,1006.4695434570312,10.92605,10926.05 +9161,2025-06-11T03:46:05.081141-07:00,1006.4695434570312,10.926176,10926.176 +9162,2025-06-11T03:46:16.013910-07:00,1006.4564208984375,10.932769,10932.769 +9163,2025-06-11T03:46:26.937118-07:00,1006.4712524414062,10.923208,10923.208 +9164,2025-06-11T03:46:37.865896-07:00,1006.484375,10.928778,10928.778 +9165,2025-06-11T03:46:48.799470-07:00,1006.474365234375,10.933574,10933.574 +9166,2025-06-11T03:46:59.733919-07:00,1006.4678344726562,10.934449,10934.449 +9167,2025-06-11T03:47:10.661425-07:00,1006.4712524414062,10.927506,10927.506 +9168,2025-06-11T03:47:21.585135-07:00,1006.477783203125,10.92371,10923.71 +9169,2025-06-11T03:47:32.506906-07:00,1006.484375,10.921771,10921.771 +9170,2025-06-11T03:47:43.437259-07:00,1006.4612426757812,10.930353,10930.353 +9171,2025-06-11T03:47:54.356081-07:00,1006.482666015625,10.918822,10918.822 +9172,2025-06-11T03:48:05.288881-07:00,1006.4810180664062,10.9328,10932.8 +9173,2025-06-11T03:48:16.218157-07:00,1006.482666015625,10.929276,10929.276 +9174,2025-06-11T03:48:27.139923-07:00,1006.482666015625,10.921766,10921.766 +9175,2025-06-11T03:48:38.062167-07:00,1006.5057983398438,10.922244,10922.244 +9176,2025-06-11T03:48:48.994086-07:00,1006.4893188476562,10.931919,10931.919 +9177,2025-06-11T03:48:59.919729-07:00,1006.4893188476562,10.925643,10925.643 +9178,2025-06-11T03:49:10.845961-07:00,1006.525634765625,10.926232,10926.232 +9179,2025-06-11T03:49:21.770915-07:00,1006.4893188476562,10.924954,10924.954 +9180,2025-06-11T03:49:32.700278-07:00,1006.504150390625,10.929363,10929.363 +9181,2025-06-11T03:49:43.617907-07:00,1006.477783203125,10.917629,10917.629 +9182,2025-06-11T03:49:54.540900-07:00,1006.517333984375,10.922993,10922.993 +9183,2025-06-11T03:50:05.470347-07:00,1006.4678344726562,10.929447,10929.447 +9184,2025-06-11T03:50:16.402161-07:00,1006.47607421875,10.931814,10931.814 +9185,2025-06-11T03:50:27.321526-07:00,1006.4927978515625,10.919365,10919.365 +9186,2025-06-11T03:50:38.249141-07:00,1006.5007934570312,10.927615,10927.615 +9187,2025-06-11T03:50:49.178917-07:00,1006.5108032226562,10.929776,10929.776 +9188,2025-06-11T03:51:00.107980-07:00,1006.47607421875,10.929063,10929.063 +9189,2025-06-11T03:51:11.040204-07:00,1006.50732421875,10.932224,10932.224 +9190,2025-06-11T03:51:21.963426-07:00,1006.4810180664062,10.923222,10923.222 +9191,2025-06-11T03:51:32.895917-07:00,1006.482666015625,10.932491,10932.491 +9192,2025-06-11T03:51:43.819204-07:00,1006.495849609375,10.923287,10923.287 +9193,2025-06-11T03:51:54.744094-07:00,1006.482666015625,10.92489,10924.89 +9194,2025-06-11T03:52:05.672147-07:00,1006.474365234375,10.928053,10928.053 +9195,2025-06-11T03:52:16.600916-07:00,1006.4598388671875,10.928769,10928.769 +9196,2025-06-11T03:52:27.533966-07:00,1006.4598388671875,10.93305,10933.05 +9197,2025-06-11T03:52:38.460241-07:00,1006.4664916992188,10.926275,10926.275 +9198,2025-06-11T03:52:49.398537-07:00,1006.4796752929688,10.938296,10938.296 +9199,2025-06-11T03:53:00.337130-07:00,1006.4598388671875,10.938593,10938.593 +9200,2025-06-11T03:53:11.272214-07:00,1006.474365234375,10.935084,10935.084 +9201,2025-06-11T03:53:22.217130-07:00,1006.4612426757812,10.944916,10944.916 +9202,2025-06-11T03:53:33.152037-07:00,1006.4598388671875,10.934907,10934.907 +9203,2025-06-11T03:53:44.086486-07:00,1006.4862670898438,10.934449,10934.449 +9204,2025-06-11T03:53:55.004982-07:00,1006.45654296875,10.918496,10918.496 +9205,2025-06-11T03:54:05.938206-07:00,1006.4617309570312,10.933224,10933.224 +9206,2025-06-11T03:54:16.865336-07:00,1006.474365234375,10.92713,10927.13 +9207,2025-06-11T03:54:27.792137-07:00,1006.50732421875,10.926801,10926.801 +9208,2025-06-11T03:54:38.721234-07:00,1006.471435546875,10.929097,10929.097 +9209,2025-06-11T03:54:49.652429-07:00,1006.4942016601562,10.931195,10931.195 +9210,2025-06-11T03:55:00.575357-07:00,1006.4845581054688,10.922928,10922.928 +9211,2025-06-11T03:55:11.500164-07:00,1006.463134765625,10.924807,10924.807 +9212,2025-06-11T03:55:22.430909-07:00,1006.4779663085938,10.930745,10930.745 +9213,2025-06-11T03:55:33.356674-07:00,1006.4796752929688,10.925765,10925.765 +9214,2025-06-11T03:55:44.286915-07:00,1006.4796752929688,10.930241,10930.241 +9215,2025-06-11T03:55:55.219247-07:00,1006.4910888671875,10.932332,10932.332 +9216,2025-06-11T03:56:06.145333-07:00,1006.463134765625,10.926086,10926.086 +9217,2025-06-11T03:56:17.068120-07:00,1006.4927978515625,10.922787,10922.787 +9218,2025-06-11T03:56:27.992909-07:00,1006.50732421875,10.924789,10924.789 +9219,2025-06-11T03:56:38.914185-07:00,1006.4845581054688,10.921276,10921.276 +9220,2025-06-11T03:56:49.845165-07:00,1006.471435546875,10.93098,10930.98 +9221,2025-06-11T03:57:00.768921-07:00,1006.471435546875,10.923756,10923.756 +9222,2025-06-11T03:57:11.700957-07:00,1006.49609375,10.932036,10932.036 +9223,2025-06-11T03:57:22.636312-07:00,1006.50732421875,10.935355,10935.355 +9224,2025-06-11T03:57:33.556911-07:00,1006.4880981445312,10.920599,10920.599 +9225,2025-06-11T03:57:44.481221-07:00,1006.5240478515625,10.92431,10924.31 +9226,2025-06-11T03:57:55.404910-07:00,1006.5192260742188,10.923689,10923.689 +9227,2025-06-11T03:58:06.341207-07:00,1006.5323486328125,10.936297,10936.297 +9228,2025-06-11T03:58:17.260870-07:00,1006.5388793945312,10.919663,10919.663 +9229,2025-06-11T03:58:28.188921-07:00,1006.5158081054688,10.928051,10928.051 +9230,2025-06-11T03:58:39.116616-07:00,1006.4977416992188,10.927695,10927.695 +9231,2025-06-11T03:58:50.031953-07:00,1006.5042724609375,10.915337,10915.337 +9232,2025-06-11T03:59:00.963136-07:00,1006.502685546875,10.931183,10931.183 +9233,2025-06-11T03:59:11.881137-07:00,1006.5158081054688,10.918001,10918.001 +9234,2025-06-11T03:59:22.813902-07:00,1006.5240478515625,10.932765,10932.765 +9235,2025-06-11T03:59:33.734318-07:00,1006.4946899414062,10.920416,10920.416 +9236,2025-06-11T03:59:44.661142-07:00,1006.5158081054688,10.926824,10926.824 +9237,2025-06-11T03:59:55.578165-07:00,1006.5240478515625,10.917023,10917.023 +9238,2025-06-11T04:00:06.504286-07:00,1006.4946899414062,10.926121,10926.121 +9239,2025-06-11T04:00:17.431950-07:00,1006.5175170898438,10.927664,10927.664 +9240,2025-06-11T04:00:28.354917-07:00,1006.5192260742188,10.922967,10922.967 +9241,2025-06-11T04:00:39.273058-07:00,1006.5125732421875,10.918141,10918.141 +9242,2025-06-11T04:00:50.197337-07:00,1006.5175170898438,10.924279,10924.279 +9243,2025-06-11T04:01:01.125941-07:00,1006.4977416992188,10.928604,10928.604 +9244,2025-06-11T04:01:12.047187-07:00,1006.4977416992188,10.921246,10921.246 +9245,2025-06-11T04:01:22.973096-07:00,1006.540283203125,10.925909,10925.909 +9246,2025-06-11T04:01:33.894919-07:00,1006.49609375,10.921823,10921.823 +9247,2025-06-11T04:01:44.817231-07:00,1006.49609375,10.922312,10922.312 +9248,2025-06-11T04:01:55.735919-07:00,1006.4827880859375,10.918688,10918.688 +9249,2025-06-11T04:02:06.663919-07:00,1006.4749145507812,10.928,10928.0 +9250,2025-06-11T04:02:17.589636-07:00,1006.5092163085938,10.925717,10925.717 +9251,2025-06-11T04:02:28.509164-07:00,1006.4894409179688,10.919528,10919.528 +9252,2025-06-11T04:02:39.431976-07:00,1006.4827880859375,10.922812,10922.812 +9253,2025-06-11T04:02:50.360961-07:00,1006.4946899414062,10.928985,10928.985 +9254,2025-06-11T04:03:01.278181-07:00,1006.5371704101562,10.91722,10917.22 +9255,2025-06-11T04:03:12.217049-07:00,1006.5240478515625,10.938868,10938.868 +9256,2025-06-11T04:03:23.143060-07:00,1006.49609375,10.926011,10926.011 +9257,2025-06-11T04:03:34.070091-07:00,1006.5355224609375,10.927031,10927.031 +9258,2025-06-11T04:03:45.000993-07:00,1006.5371704101562,10.930902,10930.902 +9259,2025-06-11T04:03:55.927964-07:00,1006.527587890625,10.926971,10926.971 +9260,2025-06-11T04:04:06.862711-07:00,1006.5421752929688,10.934747,10934.747 +9261,2025-06-11T04:04:17.795098-07:00,1006.5127563476562,10.932387,10932.387 +9262,2025-06-11T04:04:28.728011-07:00,1006.4912719726562,10.932913,10932.913 +9263,2025-06-11T04:04:39.657909-07:00,1006.5092163085938,10.929898,10929.898 +9264,2025-06-11T04:04:50.592772-07:00,1006.5078125,10.934863,10934.863 +9265,2025-06-11T04:05:01.515978-07:00,1006.527587890625,10.923206,10923.206 +9266,2025-06-11T04:05:12.445367-07:00,1006.527587890625,10.929389,10929.389 +9267,2025-06-11T04:05:23.372146-07:00,1006.5158081054688,10.926779,10926.779 +9268,2025-06-11T04:05:34.308925-07:00,1006.5111083984375,10.936779,10936.779 +9269,2025-06-11T04:05:45.235167-07:00,1006.52099609375,10.926242,10926.242 +9270,2025-06-11T04:05:56.151911-07:00,1006.532470703125,10.916744,10916.744 +9271,2025-06-11T04:06:07.088069-07:00,1006.532470703125,10.936158,10936.158 +9272,2025-06-11T04:06:18.014437-07:00,1006.54736328125,10.926368,10926.368 +9273,2025-06-11T04:06:28.943910-07:00,1006.532470703125,10.929473,10929.473 +9274,2025-06-11T04:06:39.867902-07:00,1006.558837890625,10.923992,10923.992 +9275,2025-06-11T04:06:50.800961-07:00,1006.532470703125,10.933059,10933.059 +9276,2025-06-11T04:07:01.729916-07:00,1006.537353515625,10.928955,10928.955 +9277,2025-06-11T04:07:12.662352-07:00,1006.5538940429688,10.932436,10932.436 +9278,2025-06-11T04:07:23.594911-07:00,1006.5440063476562,10.932559,10932.559 +9279,2025-06-11T04:07:34.527323-07:00,1006.550537109375,10.932412,10932.412 +9280,2025-06-11T04:07:45.461475-07:00,1006.5360107421875,10.934152,10934.152 +9281,2025-06-11T04:07:56.382276-07:00,1006.5491943359375,10.920801,10920.801 +9282,2025-06-11T04:08:07.311904-07:00,1006.563720703125,10.929628,10929.628 +9283,2025-06-11T04:08:18.246230-07:00,1006.5392456054688,10.934326,10934.326 +9284,2025-06-11T04:08:29.173907-07:00,1006.550537109375,10.927677,10927.677 +9285,2025-06-11T04:08:40.102036-07:00,1006.5426635742188,10.928129,10928.129 +9286,2025-06-11T04:08:51.032911-07:00,1006.5491943359375,10.930875,10930.875 +9287,2025-06-11T04:09:01.961965-07:00,1006.5623168945312,10.929054,10929.054 +9288,2025-06-11T04:09:12.896846-07:00,1006.5557861328125,10.934881,10934.881 +9289,2025-06-11T04:09:23.826052-07:00,1006.5409545898438,10.929206,10929.206 +9290,2025-06-11T04:09:34.751923-07:00,1006.5755615234375,10.925871,10925.871 +9291,2025-06-11T04:09:45.681174-07:00,1006.5689086914062,10.929251,10929.251 +9292,2025-06-11T04:09:56.610242-07:00,1006.5474853515625,10.929068,10929.068 +9293,2025-06-11T04:10:07.547128-07:00,1006.5409545898438,10.936886,10936.886 +9294,2025-06-11T04:10:18.473909-07:00,1006.5571899414062,10.926781,10926.781 +9295,2025-06-11T04:10:29.401315-07:00,1006.60986328125,10.927406,10927.406 +9296,2025-06-11T04:10:40.335601-07:00,1006.57861328125,10.934286,10934.286 +9297,2025-06-11T04:10:51.269043-07:00,1006.563720703125,10.933442,10933.442 +9298,2025-06-11T04:11:02.214217-07:00,1006.5834350585938,10.945174,10945.174 +9299,2025-06-11T04:11:13.149182-07:00,1006.5887451171875,10.934965,10934.965 +9300,2025-06-11T04:11:24.072910-07:00,1006.5820922851562,10.923728,10923.728 +9301,2025-06-11T04:11:35.000916-07:00,1006.5820922851562,10.928006,10928.006 +9302,2025-06-11T04:11:45.935911-07:00,1006.5820922851562,10.934995,10934.995 +9303,2025-06-11T04:11:56.864954-07:00,1006.5703125,10.929043,10929.043 +9304,2025-06-11T04:12:07.793907-07:00,1006.5589599609375,10.928953,10928.953 +9305,2025-06-11T04:12:18.721156-07:00,1006.5703125,10.927249,10927.249 +9306,2025-06-11T04:12:29.641220-07:00,1006.5623168945312,10.920064,10920.064 +9307,2025-06-11T04:12:40.566919-07:00,1006.5457763671875,10.925699,10925.699 +9308,2025-06-11T04:12:51.496910-07:00,1006.5623168945312,10.929991,10929.991 +9309,2025-06-11T04:13:02.433505-07:00,1006.5870361328125,10.936595,10936.595 +9310,2025-06-11T04:13:13.364813-07:00,1006.5739135742188,10.931308,10931.308 +9311,2025-06-11T04:13:24.291051-07:00,1006.5887451171875,10.926238,10926.238 +9312,2025-06-11T04:13:35.212959-07:00,1006.5589599609375,10.921908,10921.908 +9313,2025-06-11T04:13:46.147925-07:00,1006.5557861328125,10.934966,10934.966 +9314,2025-06-11T04:13:57.074068-07:00,1006.563720703125,10.926143,10926.143 +9315,2025-06-11T04:14:08.002754-07:00,1006.5374755859375,10.928686,10928.686 +9316,2025-06-11T04:14:18.925169-07:00,1006.5326538085938,10.922415,10922.415 +9317,2025-06-11T04:14:29.858395-07:00,1006.517822265625,10.933226,10933.226 +9318,2025-06-11T04:14:40.773394-07:00,1006.5326538085938,10.914999,10914.999 +9319,2025-06-11T04:14:51.697905-07:00,1006.5672607421875,10.924511,10924.511 +9320,2025-06-11T04:15:02.632254-07:00,1006.557373046875,10.934349,10934.349 +9321,2025-06-11T04:15:13.550919-07:00,1006.5409545898438,10.918665,10918.665 +9322,2025-06-11T04:15:24.477919-07:00,1006.5309448242188,10.927,10927.0 +9323,2025-06-11T04:15:35.411960-07:00,1006.5128784179688,10.934041,10934.041 +9324,2025-06-11T04:15:46.331916-07:00,1006.5326538085938,10.919956,10919.956 +9325,2025-06-11T04:15:57.264248-07:00,1006.5015869140625,10.932332,10932.332 +9326,2025-06-11T04:16:08.186898-07:00,1006.5326538085938,10.92265,10922.65 +9327,2025-06-11T04:16:19.115372-07:00,1006.517822265625,10.928474,10928.474 +9328,2025-06-11T04:16:30.042244-07:00,1006.5098266601562,10.926872,10926.872 +9329,2025-06-11T04:16:40.958909-07:00,1006.504638671875,10.916665,10916.665 +9330,2025-06-11T04:16:51.890250-07:00,1006.51123046875,10.931341,10931.341 +9331,2025-06-11T04:17:02.808270-07:00,1006.5081176757812,10.91802,10918.02 +9332,2025-06-11T04:17:13.736370-07:00,1006.4932861328125,10.9281,10928.1 +9333,2025-06-11T04:17:24.660239-07:00,1006.498046875,10.923869,10923.869 +9334,2025-06-11T04:17:35.590177-07:00,1006.517822265625,10.929938,10929.938 +9335,2025-06-11T04:17:46.516921-07:00,1006.5032958984375,10.926744,10926.744 +9336,2025-06-11T04:17:57.432336-07:00,1006.4967041015625,10.915415,10915.415 +9337,2025-06-11T04:18:08.361059-07:00,1006.5164184570312,10.928723,10928.723 +9338,2025-06-11T04:18:19.283154-07:00,1006.4949951171875,10.922095,10922.095 +9339,2025-06-11T04:18:30.211432-07:00,1006.4998168945312,10.928278,10928.278 +9340,2025-06-11T04:18:41.136061-07:00,1006.504638671875,10.924629,10924.629 +9341,2025-06-11T04:18:52.065624-07:00,1006.4949951171875,10.929563,10929.563 +9342,2025-06-11T04:19:02.988917-07:00,1006.4949951171875,10.923293,10923.293 +9343,2025-06-11T04:19:13.926136-07:00,1006.4932861328125,10.937219,10937.219 +9344,2025-06-11T04:19:24.851323-07:00,1006.4801635742188,10.925187,10925.187 +9345,2025-06-11T04:19:35.769154-07:00,1006.4735717773438,10.917831,10917.831 +9346,2025-06-11T04:19:46.708350-07:00,1006.5015869140625,10.939196,10939.196 +9347,2025-06-11T04:19:57.637007-07:00,1006.5081176757812,10.928657,10928.657 +9348,2025-06-11T04:20:08.560509-07:00,1006.5081176757812,10.923502,10923.502 +9349,2025-06-11T04:20:19.489069-07:00,1006.5081176757812,10.92856,10928.56 +9350,2025-06-11T04:20:30.422502-07:00,1006.5081176757812,10.933433,10933.433 +9351,2025-06-11T04:20:41.348076-07:00,1006.4998168945312,10.925574,10925.574 +9352,2025-06-11T04:20:52.278486-07:00,1006.4998168945312,10.93041,10930.41 +9353,2025-06-11T04:21:03.210920-07:00,1006.4949951171875,10.932434,10932.434 +9354,2025-06-11T04:21:14.135086-07:00,1006.52294921875,10.924166,10924.166 +9355,2025-06-11T04:21:25.066087-07:00,1006.4998168945312,10.931001,10931.001 +9356,2025-06-11T04:21:35.990915-07:00,1006.4949951171875,10.924828,10924.828 +9357,2025-06-11T04:21:46.926913-07:00,1006.4818115234375,10.935998,10935.998 +9358,2025-06-11T04:21:57.854910-07:00,1006.4685668945312,10.927997,10927.997 +9359,2025-06-11T04:22:08.779591-07:00,1006.4603271484375,10.924681,10924.681 +9360,2025-06-11T04:22:19.718922-07:00,1006.4835205078125,10.939331,10939.331 +9361,2025-06-11T04:22:30.645175-07:00,1006.4554443359375,10.926253,10926.253 +9362,2025-06-11T04:22:41.575921-07:00,1006.4554443359375,10.930746,10930.746 +9363,2025-06-11T04:22:52.505420-07:00,1006.452392578125,10.929499,10929.499 +9364,2025-06-11T04:23:03.436903-07:00,1006.4735717773438,10.931483,10931.483 +9365,2025-06-11T04:23:14.367182-07:00,1006.4818115234375,10.930279,10930.279 +9366,2025-06-11T04:23:25.295296-07:00,1006.439208984375,10.928114,10928.114 +9367,2025-06-11T04:23:36.235278-07:00,1006.4554443359375,10.939982,10939.982 +9368,2025-06-11T04:23:47.157914-07:00,1006.4554443359375,10.922636,10922.636 +9369,2025-06-11T04:23:58.081087-07:00,1006.4472045898438,10.923173,10923.173 +9370,2025-06-11T04:24:09.005325-07:00,1006.4472045898438,10.924238,10924.238 +9371,2025-06-11T04:24:19.931169-07:00,1006.43408203125,10.925844,10925.844 +9372,2025-06-11T04:24:30.862136-07:00,1006.4620361328125,10.930967,10930.967 +9373,2025-06-11T04:24:41.791068-07:00,1006.4703369140625,10.928932,10928.932 +9374,2025-06-11T04:24:52.716694-07:00,1006.4537353515625,10.925626,10925.626 +9375,2025-06-11T04:25:03.648341-07:00,1006.4752197265625,10.931647,10931.647 +9376,2025-06-11T04:25:14.575946-07:00,1006.4357299804688,10.927605,10927.605 +9377,2025-06-11T04:25:25.511339-07:00,1006.4472045898438,10.935393,10935.393 +9378,2025-06-11T04:25:36.431917-07:00,1006.4835205078125,10.920578,10920.578 +9379,2025-06-11T04:25:47.361923-07:00,1006.4508056640625,10.930006,10930.006 +9380,2025-06-11T04:25:58.294952-07:00,1006.4656372070312,10.933029,10933.029 +9381,2025-06-11T04:26:09.219399-07:00,1006.4932861328125,10.924447,10924.447 +9382,2025-06-11T04:26:20.146936-07:00,1006.49853515625,10.927537,10927.537 +9383,2025-06-11T04:26:31.079241-07:00,1006.4866943359375,10.932305,10932.305 +9384,2025-06-11T04:26:42.016069-07:00,1006.49853515625,10.936828,10936.828 +9385,2025-06-11T04:26:52.936696-07:00,1006.5098266601562,10.920627,10920.627 +9386,2025-06-11T04:27:03.863919-07:00,1006.5278930664062,10.927223,10927.223 +9387,2025-06-11T04:27:14.795869-07:00,1006.5064086914062,10.93195,10931.95 +9388,2025-06-11T04:27:25.723918-07:00,1006.5147094726562,10.928049,10928.049 +9389,2025-06-11T04:27:36.649906-07:00,1006.4998168945312,10.925988,10925.988 +9390,2025-06-11T04:27:47.582053-07:00,1006.4998168945312,10.932147,10932.147 +9391,2025-06-11T04:27:58.509921-07:00,1006.4932861328125,10.927868,10927.868 +9392,2025-06-11T04:28:09.440559-07:00,1006.4735717773438,10.930638,10930.638 +9393,2025-06-11T04:28:20.371914-07:00,1006.478759765625,10.931355,10931.355 +9394,2025-06-11T04:28:31.296066-07:00,1006.4669799804688,10.924152,10924.152 +9395,2025-06-11T04:28:42.229921-07:00,1006.4801635742188,10.933855,10933.855 +9396,2025-06-11T04:28:53.152896-07:00,1006.4752197265625,10.922975,10922.975 +9397,2025-06-11T04:29:04.081917-07:00,1006.5015869140625,10.929021,10929.021 +9398,2025-06-11T04:29:15.006149-07:00,1006.5213012695312,10.924232,10924.232 +9399,2025-06-11T04:29:25.941955-07:00,1006.490234375,10.935806,10935.806 +9400,2025-06-11T04:29:36.866539-07:00,1006.4967041015625,10.924584,10924.584 +9401,2025-06-11T04:29:47.790692-07:00,1006.4900512695312,10.924153,10924.153 +9402,2025-06-11T04:29:58.723452-07:00,1006.452392578125,10.93276,10932.76 +9403,2025-06-11T04:30:09.657541-07:00,1006.4932861328125,10.934089,10934.089 +9404,2025-06-11T04:30:20.586578-07:00,1006.4603271484375,10.929037,10929.037 +9405,2025-06-11T04:30:31.517728-07:00,1006.517822265625,10.93115,10931.15 +9406,2025-06-11T04:30:42.444531-07:00,1006.4949951171875,10.926803,10926.803 +9407,2025-06-11T04:30:53.377908-07:00,1006.4685668945312,10.933377,10933.377 +9408,2025-06-11T04:31:04.312361-07:00,1006.4768676757812,10.934453,10934.453 +9409,2025-06-11T04:31:15.231716-07:00,1006.4685668945312,10.919355,10919.355 +9410,2025-06-11T04:31:26.165818-07:00,1006.4801635742188,10.934102,10934.102 +9411,2025-06-11T04:31:37.086557-07:00,1006.4884643554688,10.920739,10920.739 +9412,2025-06-11T04:31:48.017658-07:00,1006.4669799804688,10.931101,10931.101 +9413,2025-06-11T04:31:58.933852-07:00,1006.4752197265625,10.916194,10916.194 +9414,2025-06-11T04:32:09.866455-07:00,1006.452392578125,10.932603,10932.603 +9415,2025-06-11T04:32:20.798764-07:00,1006.4949951171875,10.932309,10932.309 +9416,2025-06-11T04:32:31.725457-07:00,1006.4603271484375,10.926693,10926.693 +9417,2025-06-11T04:32:42.658018-07:00,1006.5015869140625,10.932561,10932.561 +9418,2025-06-11T04:32:53.591662-07:00,1006.5081176757812,10.933644,10933.644 +9419,2025-06-11T04:33:04.513775-07:00,1006.5147094726562,10.922113,10922.113 +9420,2025-06-11T04:33:15.446808-07:00,1006.4752197265625,10.933033,10933.033 +9421,2025-06-11T04:33:26.367447-07:00,1006.4967041015625,10.920639,10920.639 +9422,2025-06-11T04:33:37.296941-07:00,1006.4866943359375,10.929494,10929.494 +9423,2025-06-11T04:33:48.223441-07:00,1006.5015869140625,10.9265,10926.5 +9424,2025-06-11T04:33:59.148931-07:00,1006.4866943359375,10.92549,10925.49 +9425,2025-06-11T04:34:10.076465-07:00,1006.5015869140625,10.927534,10927.534 +9426,2025-06-11T04:34:20.996765-07:00,1006.478759765625,10.9203,10920.3 +9427,2025-06-11T04:34:31.929455-07:00,1006.4932861328125,10.93269,10932.69 +9428,2025-06-11T04:34:42.850462-07:00,1006.5130615234375,10.921007,10921.007 +9429,2025-06-11T04:34:53.780815-07:00,1006.5081176757812,10.930353,10930.353 +9430,2025-06-11T04:35:04.710687-07:00,1006.5197143554688,10.929872,10929.872 +9431,2025-06-11T04:35:15.632860-07:00,1006.5165405273438,10.922173,10922.173 +9432,2025-06-11T04:35:26.551759-07:00,1006.5197143554688,10.918899,10918.899 +9433,2025-06-11T04:35:37.482791-07:00,1006.49853515625,10.931032,10931.032 +9434,2025-06-11T04:35:48.398441-07:00,1006.48193359375,10.91565,10915.65 +9435,2025-06-11T04:35:59.320793-07:00,1006.51171875,10.922352,10922.352 +9436,2025-06-11T04:36:10.258541-07:00,1006.47705078125,10.937748,10937.748 +9437,2025-06-11T04:36:21.179347-07:00,1006.48193359375,10.920806,10920.806 +9438,2025-06-11T04:36:32.103716-07:00,1006.5231323242188,10.924369,10924.369 +9439,2025-06-11T04:36:43.029657-07:00,1006.5278930664062,10.925941,10925.941 +9440,2025-06-11T04:36:53.960468-07:00,1006.5197143554688,10.930811,10930.811 +9441,2025-06-11T04:37:04.887509-07:00,1006.4885864257812,10.927041,10927.041 +9442,2025-06-11T04:37:15.810783-07:00,1006.4968872070312,10.923274,10923.274 +9443,2025-06-11T04:37:26.739773-07:00,1006.51171875,10.92899,10928.99 +9444,2025-06-11T04:37:37.673730-07:00,1006.510009765625,10.933957,10933.957 +9445,2025-06-11T04:37:48.603455-07:00,1006.5476684570312,10.929725,10929.725 +9446,2025-06-11T04:37:59.538756-07:00,1006.5248413085938,10.935301,10935.301 +9447,2025-06-11T04:38:10.460533-07:00,1006.51171875,10.921777,10921.777 +9448,2025-06-11T04:38:21.395137-07:00,1006.50341796875,10.934604,10934.604 +9449,2025-06-11T04:38:32.316720-07:00,1006.50341796875,10.921583,10921.583 +9450,2025-06-11T04:38:43.247461-07:00,1006.5248413085938,10.930741,10930.741 +9451,2025-06-11T04:38:54.174097-07:00,1006.5262451171875,10.926636,10926.636 +9452,2025-06-11T04:39:05.097720-07:00,1006.518310546875,10.923623,10923.623 +9453,2025-06-11T04:39:16.026718-07:00,1006.4918823242188,10.928998,10928.998 +9454,2025-06-11T04:39:26.958461-07:00,1006.4852905273438,10.931743,10931.743 +9455,2025-06-11T04:39:37.880938-07:00,1006.518310546875,10.922477,10922.477 +9456,2025-06-11T04:39:48.805968-07:00,1006.5147094726562,10.92503,10925.03 +9457,2025-06-11T04:39:59.740459-07:00,1006.5262451171875,10.934491,10934.491 +9458,2025-06-11T04:40:10.668098-07:00,1006.5493774414062,10.927639,10927.639 +9459,2025-06-11T04:40:21.600733-07:00,1006.5197143554688,10.932635,10932.635 +9460,2025-06-11T04:40:32.523046-07:00,1006.5345458984375,10.922313,10922.313 +9461,2025-06-11T04:40:43.449594-07:00,1006.5296020507812,10.926548,10926.548 +9462,2025-06-11T04:40:54.370429-07:00,1006.5427856445312,10.920835,10920.835 +9463,2025-06-11T04:41:05.301500-07:00,1006.5213012695312,10.931071,10931.071 +9464,2025-06-11T04:41:16.217750-07:00,1006.51171875,10.91625,10916.25 +9465,2025-06-11T04:41:27.151636-07:00,1006.55419921875,10.933886,10933.886 +9466,2025-06-11T04:41:38.073490-07:00,1006.55419921875,10.921854,10921.854 +9467,2025-06-11T04:41:48.991463-07:00,1006.5248413085938,10.917973,10917.973 +9468,2025-06-11T04:41:59.918148-07:00,1006.5410766601562,10.926685,10926.685 +9469,2025-06-11T04:42:10.842465-07:00,1006.5278930664062,10.924317,10924.317 +9470,2025-06-11T04:42:21.776536-07:00,1006.5410766601562,10.934071,10934.071 +9471,2025-06-11T04:42:32.694735-07:00,1006.4949951171875,10.918199,10918.199 +9472,2025-06-11T04:42:43.620464-07:00,1006.5213012695312,10.925729,10925.729 +9473,2025-06-11T04:42:54.556818-07:00,1006.5213012695312,10.936354,10936.354 +9474,2025-06-11T04:43:05.480444-07:00,1006.5296020507812,10.923626,10923.626 +9475,2025-06-11T04:43:16.403465-07:00,1006.5243530273438,10.923021,10923.021 +9476,2025-06-11T04:43:27.332451-07:00,1006.5130615234375,10.928986,10928.986 +9477,2025-06-11T04:43:38.258438-07:00,1006.4932861328125,10.925987,10925.987 +9478,2025-06-11T04:43:49.182826-07:00,1006.5213012695312,10.924388,10924.388 +9479,2025-06-11T04:44:00.112697-07:00,1006.5525512695312,10.929871,10929.871 +9480,2025-06-11T04:44:11.030455-07:00,1006.5361938476562,10.917758,10917.758 +9481,2025-06-11T04:44:21.952045-07:00,1006.52294921875,10.92159,10921.59 +9482,2025-06-11T04:44:32.875760-07:00,1006.47705078125,10.923715,10923.715 +9483,2025-06-11T04:44:43.807055-07:00,1006.4932861328125,10.931295,10931.295 +9484,2025-06-11T04:44:54.733038-07:00,1006.5164184570312,10.925983,10925.983 +9485,2025-06-11T04:45:05.666489-07:00,1006.5081176757812,10.933451,10933.451 +9486,2025-06-11T04:45:16.585404-07:00,1006.4918823242188,10.918915,10918.915 +9487,2025-06-11T04:45:27.511471-07:00,1006.4932861328125,10.926067,10926.067 +9488,2025-06-11T04:45:38.440442-07:00,1006.5213012695312,10.928971,10928.971 +9489,2025-06-11T04:45:49.362511-07:00,1006.5081176757812,10.922069,10922.069 +9490,2025-06-11T04:46:00.287454-07:00,1006.4949951171875,10.924943,10924.943 +9491,2025-06-11T04:46:11.220951-07:00,1006.4866943359375,10.933497,10933.497 +9492,2025-06-11T04:46:22.143466-07:00,1006.4884643554688,10.922515,10922.515 +9493,2025-06-11T04:46:33.078677-07:00,1006.5130615234375,10.935211,10935.211 +9494,2025-06-11T04:46:44.005616-07:00,1006.5130615234375,10.926939,10926.939 +9495,2025-06-11T04:46:54.927237-07:00,1006.5081176757812,10.921621,10921.621 +9496,2025-06-11T04:47:05.857576-07:00,1006.4852905273438,10.930339,10930.339 +9497,2025-06-11T04:47:16.786458-07:00,1006.4998168945312,10.928882,10928.882 +9498,2025-06-11T04:47:27.710498-07:00,1006.5081176757812,10.92404,10924.04 +9499,2025-06-11T04:47:38.642457-07:00,1006.4801635742188,10.931959,10931.959 +9500,2025-06-11T04:47:49.578687-07:00,1006.4735717773438,10.93623,10936.23 +9501,2025-06-11T04:48:00.495877-07:00,1006.5015869140625,10.91719,10917.19 +9502,2025-06-11T04:48:11.435051-07:00,1006.478759765625,10.939174,10939.174 +9503,2025-06-11T04:48:22.362554-07:00,1006.4852905273438,10.927503,10927.503 +9504,2025-06-11T04:48:33.286455-07:00,1006.49853515625,10.923901,10923.901 +9505,2025-06-11T04:48:44.220001-07:00,1006.5296020507812,10.933546,10933.546 +9506,2025-06-11T04:48:55.148455-07:00,1006.4998168945312,10.928454,10928.454 +9507,2025-06-11T04:49:06.083448-07:00,1006.4932861328125,10.934993,10934.993 +9508,2025-06-11T04:49:17.012459-07:00,1006.5197143554688,10.929011,10929.011 +9509,2025-06-11T04:49:27.939845-07:00,1006.5328369140625,10.927386,10927.386 +9510,2025-06-11T04:49:38.858684-07:00,1006.5130615234375,10.918839,10918.839 +9511,2025-06-11T04:49:49.786483-07:00,1006.5345458984375,10.927799,10927.799 +9512,2025-06-11T04:50:00.716135-07:00,1006.4932861328125,10.929652,10929.652 +9513,2025-06-11T04:50:11.649446-07:00,1006.49853515625,10.933311,10933.311 +9514,2025-06-11T04:50:22.568835-07:00,1006.5328369140625,10.919389,10919.389 +9515,2025-06-11T04:50:33.499457-07:00,1006.518310546875,10.930622,10930.622 +9516,2025-06-11T04:50:44.429309-07:00,1006.5213012695312,10.929852,10929.852 +9517,2025-06-11T04:50:55.359491-07:00,1006.4968872070312,10.930182,10930.182 +9518,2025-06-11T04:51:06.280481-07:00,1006.49853515625,10.92099,10920.99 +9519,2025-06-11T04:51:17.202827-07:00,1006.49853515625,10.922346,10922.346 +9520,2025-06-11T04:51:28.137455-07:00,1006.5147094726562,10.934628,10934.628 +9521,2025-06-11T04:51:39.056013-07:00,1006.5064086914062,10.918558,10918.558 +9522,2025-06-11T04:51:49.979270-07:00,1006.4918823242188,10.923257,10923.257 +9523,2025-06-11T04:52:00.901463-07:00,1006.5197143554688,10.922193,10922.193 +9524,2025-06-11T04:52:11.825778-07:00,1006.5248413085938,10.924315,10924.315 +9525,2025-06-11T04:52:22.751453-07:00,1006.50341796875,10.925675,10925.675 +9526,2025-06-11T04:52:33.671461-07:00,1006.4885864257812,10.920008,10920.008 +9527,2025-06-11T04:52:44.607872-07:00,1006.5165405273438,10.936411,10936.411 +9528,2025-06-11T04:52:55.534461-07:00,1006.4854736328125,10.926589,10926.589 +9529,2025-06-11T04:53:06.455858-07:00,1006.5248413085938,10.921397,10921.397 +9530,2025-06-11T04:53:17.390459-07:00,1006.4968872070312,10.934601,10934.601 +9531,2025-06-11T04:53:28.320802-07:00,1006.5165405273438,10.930343,10930.343 +9532,2025-06-11T04:53:39.241461-07:00,1006.4806518554688,10.920659,10920.659 +9533,2025-06-11T04:53:50.171453-07:00,1006.4806518554688,10.929992,10929.992 +9534,2025-06-11T04:54:01.104461-07:00,1006.4788818359375,10.933008,10933.008 +9535,2025-06-11T04:54:12.026465-07:00,1006.4806518554688,10.922004,10922.004 +9536,2025-06-11T04:54:22.960865-07:00,1006.46923828125,10.9344,10934.4 +9537,2025-06-11T04:54:33.888462-07:00,1006.4788818359375,10.927597,10927.597 +9538,2025-06-11T04:54:44.811833-07:00,1006.4640502929688,10.923371,10923.371 +9539,2025-06-11T04:54:55.733862-07:00,1006.4788818359375,10.922029,10922.029 +9540,2025-06-11T04:55:06.661489-07:00,1006.5134887695312,10.927627,10927.627 +9541,2025-06-11T04:55:17.598611-07:00,1006.4657592773438,10.937122,10937.122 +9542,2025-06-11T04:55:28.518463-07:00,1006.4771728515625,10.919852,10919.852 +9543,2025-06-11T04:55:39.462530-07:00,1006.4742431640625,10.944067,10944.067 +9544,2025-06-11T04:55:50.392450-07:00,1006.5069580078125,10.92992,10929.92 +9545,2025-06-11T04:56:01.319926-07:00,1006.4609375,10.927476,10927.476 +9546,2025-06-11T04:56:12.245472-07:00,1006.454345703125,10.925546,10925.546 +9547,2025-06-11T04:56:23.169544-07:00,1006.49560546875,10.924072,10924.072 +9548,2025-06-11T04:56:34.092448-07:00,1006.4890747070312,10.922904,10922.904 +9549,2025-06-11T04:56:45.023485-07:00,1006.4873657226562,10.931037,10931.037 +9550,2025-06-11T04:56:55.948969-07:00,1006.485595703125,10.925484,10925.484 +9551,2025-06-11T04:57:06.866465-07:00,1006.4707641601562,10.917496,10917.496 +9552,2025-06-11T04:57:17.789701-07:00,1006.4988403320312,10.923236,10923.236 +9553,2025-06-11T04:57:28.716879-07:00,1006.4773559570312,10.927178,10927.178 +9554,2025-06-11T04:57:39.641069-07:00,1006.4576416015625,10.92419,10924.19 +9555,2025-06-11T04:57:50.565650-07:00,1006.4642333984375,10.924581,10924.581 +9556,2025-06-11T04:58:01.493820-07:00,1006.485595703125,10.92817,10928.17 +9557,2025-06-11T04:58:12.415717-07:00,1006.5120239257812,10.921897,10921.897 +9558,2025-06-11T04:58:23.343629-07:00,1006.4988403320312,10.927912,10927.912 +9559,2025-06-11T04:58:34.266465-07:00,1006.5037231445312,10.922836,10922.836 +9560,2025-06-11T04:58:45.200719-07:00,1006.4988403320312,10.934254,10934.254 +9561,2025-06-11T04:58:56.121450-07:00,1006.4760131835938,10.920731,10920.731 +9562,2025-06-11T04:59:07.048806-07:00,1006.4971313476562,10.927356,10927.356 +9563,2025-06-11T04:59:17.981820-07:00,1006.4826049804688,10.933014,10933.014 +9564,2025-06-11T04:59:28.903721-07:00,1006.4760131835938,10.921901,10921.901 +9565,2025-06-11T04:59:39.833564-07:00,1006.50048828125,10.929843,10929.843 +9566,2025-06-11T04:59:50.766594-07:00,1006.5070190429688,10.93303,10933.03 +9567,2025-06-11T05:00:01.695599-07:00,1006.4921875,10.929005,10929.005 +9568,2025-06-11T05:00:12.617450-07:00,1006.4790649414062,10.921851,10921.851 +9569,2025-06-11T05:00:23.542466-07:00,1006.4905395507812,10.925016,10925.016 +9570,2025-06-11T05:00:34.470527-07:00,1006.5023193359375,10.928061,10928.061 +9571,2025-06-11T05:00:45.399461-07:00,1006.4760131835938,10.928934,10928.934 +9572,2025-06-11T05:00:56.330816-07:00,1006.4576416015625,10.931355,10931.355 +9573,2025-06-11T05:01:07.256455-07:00,1006.4724731445312,10.925639,10925.639 +9574,2025-06-11T05:01:18.182442-07:00,1006.4873657226562,10.925987,10925.987 +9575,2025-06-11T05:01:29.112463-07:00,1006.4988403320312,10.930021,10930.021 +9576,2025-06-11T05:01:40.034457-07:00,1006.4891967773438,10.921994,10921.994 +9577,2025-06-11T05:01:50.958300-07:00,1006.4659423828125,10.923843,10923.843 +9578,2025-06-11T05:02:01.887625-07:00,1006.4988403320312,10.929325,10929.325 +9579,2025-06-11T05:02:12.804678-07:00,1006.4773559570312,10.917053,10917.053 +9580,2025-06-11T05:02:23.734285-07:00,1006.4562377929688,10.929607,10929.607 +9581,2025-06-11T05:02:34.654448-07:00,1006.4677124023438,10.920163,10920.163 +9582,2025-06-11T05:02:45.580806-07:00,1006.4743041992188,10.926358,10926.358 +9583,2025-06-11T05:02:56.508899-07:00,1006.4677124023438,10.928093,10928.093 +9584,2025-06-11T05:03:07.436676-07:00,1006.48095703125,10.927777,10927.777 +9585,2025-06-11T05:03:18.358621-07:00,1006.466064453125,10.921945,10921.945 +9586,2025-06-11T05:03:29.279568-07:00,1006.47607421875,10.920947,10920.947 +9587,2025-06-11T05:03:40.204985-07:00,1006.4874877929688,10.925417,10925.417 +9588,2025-06-11T05:03:51.133764-07:00,1006.4611206054688,10.928779,10928.779 +9589,2025-06-11T05:04:02.061705-07:00,1006.4940795898438,10.927941,10927.941 +9590,2025-06-11T05:04:12.989132-07:00,1006.47265625,10.927427,10927.427 +9591,2025-06-11T05:04:23.912723-07:00,1006.484375,10.923591,10923.591 +9592,2025-06-11T05:04:34.834509-07:00,1006.47607421875,10.921786,10921.786 +9593,2025-06-11T05:04:45.760661-07:00,1006.4959106445312,10.926152,10926.152 +9594,2025-06-11T05:04:56.692461-07:00,1006.4712524414062,10.9318,10931.8 +9595,2025-06-11T05:05:07.614642-07:00,1006.477783203125,10.922181,10922.181 +9596,2025-06-11T05:05:18.548678-07:00,1006.4857788085938,10.934036,10934.036 +9597,2025-06-11T05:05:29.479634-07:00,1006.4989013671875,10.930956,10930.956 +9598,2025-06-11T05:05:40.395045-07:00,1006.4893798828125,10.915411,10915.411 +9599,2025-06-11T05:05:51.329510-07:00,1006.4744262695312,10.934465,10934.465 +9600,2025-06-11T05:06:02.261059-07:00,1006.5042114257812,10.931549,10931.549 +9601,2025-06-11T05:06:13.183466-07:00,1006.509033203125,10.922407,10922.407 +9602,2025-06-11T05:06:24.113726-07:00,1006.47314453125,10.93026,10930.26 +9603,2025-06-11T05:06:35.037578-07:00,1006.4876708984375,10.923852,10923.852 +9604,2025-06-11T05:06:45.966645-07:00,1006.4942016601562,10.929067,10929.067 +9605,2025-06-11T05:06:56.884704-07:00,1006.4959106445312,10.918059,10918.059 +9606,2025-06-11T05:07:07.807445-07:00,1006.4893798828125,10.922741,10922.741 +9607,2025-06-11T05:07:18.734625-07:00,1006.4876708984375,10.92718,10927.18 +9608,2025-06-11T05:07:29.660751-07:00,1006.4696655273438,10.926126,10926.126 +9609,2025-06-11T05:07:40.579837-07:00,1006.515625,10.919086,10919.086 +9610,2025-06-11T05:07:51.503447-07:00,1006.5257568359375,10.92361,10923.61 +9611,2025-06-11T05:08:02.424785-07:00,1006.50439453125,10.921338,10921.338 +9612,2025-06-11T05:08:13.346560-07:00,1006.4862670898438,10.921775,10921.775 +9613,2025-06-11T05:08:24.272721-07:00,1006.4862670898438,10.926161,10926.161 +9614,2025-06-11T05:08:35.205465-07:00,1006.4942016601562,10.932744,10932.744 +9615,2025-06-11T05:08:46.120438-07:00,1006.5007934570312,10.914973,10914.973 +9616,2025-06-11T05:08:57.047874-07:00,1006.46484375,10.927436,10927.436 +9617,2025-06-11T05:09:07.961785-07:00,1006.46142578125,10.913911,10913.911 +9618,2025-06-11T05:09:18.884274-07:00,1006.4942016601562,10.922489,10922.489 +9619,2025-06-11T05:09:29.797878-07:00,1006.50732421875,10.913604,10913.604 +9620,2025-06-11T05:09:40.717450-07:00,1006.48291015625,10.919572,10919.572 +9621,2025-06-11T05:09:51.645849-07:00,1006.458251953125,10.928399,10928.399 +9622,2025-06-11T05:10:02.558983-07:00,1006.45166015625,10.913134,10913.134 +9623,2025-06-11T05:10:13.480464-07:00,1006.45166015625,10.921481,10921.481 +9624,2025-06-11T05:10:24.405049-07:00,1006.46484375,10.924585,10924.585 +9625,2025-06-11T05:10:35.332712-07:00,1006.4845581054688,10.927663,10927.663 +9626,2025-06-11T05:10:46.258778-07:00,1006.46484375,10.926066,10926.066 +9627,2025-06-11T05:10:57.187796-07:00,1006.4598999023438,10.929018,10929.018 +9628,2025-06-11T05:11:08.105444-07:00,1006.45166015625,10.917648,10917.648 +9629,2025-06-11T05:11:19.037045-07:00,1006.4351806640625,10.931601,10931.601 +9630,2025-06-11T05:11:29.960590-07:00,1006.4467163085938,10.923545,10923.545 +9631,2025-06-11T05:11:40.882460-07:00,1006.45654296875,10.92187,10921.87 +9632,2025-06-11T05:11:51.811721-07:00,1006.4598999023438,10.929261,10929.261 +9633,2025-06-11T05:12:02.736489-07:00,1006.4219360351562,10.924768,10924.768 +9634,2025-06-11T05:12:13.656707-07:00,1006.4598999023438,10.920218,10920.218 +9635,2025-06-11T05:12:24.583731-07:00,1006.45166015625,10.927024,10927.024 +9636,2025-06-11T05:12:35.505450-07:00,1006.4384155273438,10.921719,10921.719 +9637,2025-06-11T05:12:46.435757-07:00,1006.443359375,10.930307,10930.307 +9638,2025-06-11T05:12:57.356460-07:00,1006.45166015625,10.920703,10920.703 +9639,2025-06-11T05:13:08.283675-07:00,1006.4417114257812,10.927215,10927.215 +9640,2025-06-11T05:13:19.218801-07:00,1006.4500122070312,10.935126,10935.126 +9641,2025-06-11T05:13:30.146707-07:00,1006.443359375,10.927906,10927.906 +9642,2025-06-11T05:13:41.060601-07:00,1006.458251953125,10.913894,10913.894 +9643,2025-06-11T05:13:51.982803-07:00,1006.45654296875,10.922202,10922.202 +9644,2025-06-11T05:14:02.904694-07:00,1006.4845581054688,10.921891,10921.891 +9645,2025-06-11T05:14:13.821817-07:00,1006.4403076171875,10.917123,10917.123 +9646,2025-06-11T05:14:24.748933-07:00,1006.4796752929688,10.927116,10927.116 +9647,2025-06-11T05:14:35.673461-07:00,1006.48291015625,10.924528,10924.528 +9648,2025-06-11T05:14:46.591618-07:00,1006.46142578125,10.918157,10918.157 +9649,2025-06-11T05:14:57.509270-07:00,1006.4500122070312,10.917652,10917.652 +9650,2025-06-11T05:15:08.431491-07:00,1006.4468994140625,10.922221,10922.221 +9651,2025-06-11T05:15:19.353458-07:00,1006.4732666015625,10.921967,10921.967 +9652,2025-06-11T05:15:30.278200-07:00,1006.4666137695312,10.924742,10924.742 +9653,2025-06-11T05:15:41.209470-07:00,1006.4534301757812,10.93127,10931.27 +9654,2025-06-11T05:15:52.126271-07:00,1006.454833984375,10.916801,10916.801 +9655,2025-06-11T05:16:03.052539-07:00,1006.4679565429688,10.926268,10926.268 +9656,2025-06-11T05:16:13.974450-07:00,1006.474609375,10.921911,10921.911 +9657,2025-06-11T05:16:24.897604-07:00,1006.4666137695312,10.923154,10923.154 +9658,2025-06-11T05:16:35.819895-07:00,1006.4517822265625,10.922291,10922.291 +9659,2025-06-11T05:16:46.743458-07:00,1006.4863891601562,10.923563,10923.563 +9660,2025-06-11T05:16:57.661521-07:00,1006.4600830078125,10.918063,10918.063 +9661,2025-06-11T05:17:08.588545-07:00,1006.4650268554688,10.927024,10927.024 +9662,2025-06-11T05:17:19.517433-07:00,1006.4912719726562,10.928888,10928.888 +9663,2025-06-11T05:17:30.436493-07:00,1006.4650268554688,10.91906,10919.06 +9664,2025-06-11T05:17:41.363052-07:00,1006.4846801757812,10.926559,10926.559 +9665,2025-06-11T05:17:52.290650-07:00,1006.4698486328125,10.927598,10927.598 +9666,2025-06-11T05:18:03.208657-07:00,1006.4715576171875,10.918007,10918.007 +9667,2025-06-11T05:18:14.136009-07:00,1006.4666137695312,10.927352,10927.352 +9668,2025-06-11T05:18:25.060461-07:00,1006.4929809570312,10.924452,10924.452 +9669,2025-06-11T05:18:35.983583-07:00,1006.4798583984375,10.923122,10923.122 +9670,2025-06-11T05:18:46.913443-07:00,1006.4666137695312,10.92986,10929.86 +9671,2025-06-11T05:18:57.833483-07:00,1006.4583740234375,10.92004,10920.04 +9672,2025-06-11T05:19:08.763776-07:00,1006.4715576171875,10.930293,10930.293 +9673,2025-06-11T05:19:19.684446-07:00,1006.4715576171875,10.92067,10920.67 +9674,2025-06-11T05:19:30.616377-07:00,1006.4666137695312,10.931931,10931.931 +9675,2025-06-11T05:19:41.536611-07:00,1006.4451293945312,10.920234,10920.234 +9676,2025-06-11T05:19:52.455794-07:00,1006.4679565429688,10.919183,10919.183 +9677,2025-06-11T05:20:03.389787-07:00,1006.4732666015625,10.933993,10933.993 +9678,2025-06-11T05:20:14.305465-07:00,1006.48779296875,10.915678,10915.678 +9679,2025-06-11T05:20:25.240410-07:00,1006.4501342773438,10.934945,10934.945 +9680,2025-06-11T05:20:36.160072-07:00,1006.4912719726562,10.919662,10919.662 +9681,2025-06-11T05:20:47.085736-07:00,1006.4632568359375,10.925664,10925.664 +9682,2025-06-11T05:20:58.016295-07:00,1006.4618530273438,10.930559,10930.559 +9683,2025-06-11T05:21:08.942453-07:00,1006.4632568359375,10.926158,10926.158 +9684,2025-06-11T05:21:19.865698-07:00,1006.4715576171875,10.923245,10923.245 +9685,2025-06-11T05:21:30.784661-07:00,1006.4435424804688,10.918963,10918.963 +9686,2025-06-11T05:21:41.701816-07:00,1006.4781494140625,10.917155,10917.155 +9687,2025-06-11T05:21:52.622674-07:00,1006.455322265625,10.920858,10920.858 +9688,2025-06-11T05:22:03.549735-07:00,1006.455322265625,10.927061,10927.061 +9689,2025-06-11T05:22:14.464823-07:00,1006.4632568359375,10.915088,10915.088 +9690,2025-06-11T05:22:25.390455-07:00,1006.47509765625,10.925632,10925.632 +9691,2025-06-11T05:22:36.309708-07:00,1006.4338989257812,10.919253,10919.253 +9692,2025-06-11T05:22:47.232747-07:00,1006.4763793945312,10.923039,10923.039 +9693,2025-06-11T05:22:58.148613-07:00,1006.4501342773438,10.915866,10915.866 +9694,2025-06-11T05:23:09.077718-07:00,1006.4501342773438,10.929105,10929.105 +9695,2025-06-11T05:23:19.995549-07:00,1006.4567260742188,10.917831,10917.831 +9696,2025-06-11T05:23:30.919482-07:00,1006.4302978515625,10.923933,10923.933 +9697,2025-06-11T05:23:41.841505-07:00,1006.42236328125,10.922023,10922.023 +9698,2025-06-11T05:23:52.752681-07:00,1006.455322265625,10.911176,10911.176 +9699,2025-06-11T05:24:03.681625-07:00,1006.4451293945312,10.928944,10928.944 +9700,2025-06-11T05:24:14.596548-07:00,1006.4618530273438,10.914923,10914.923 +9701,2025-06-11T05:24:25.519659-07:00,1006.4273681640625,10.923111,10923.111 +9702,2025-06-11T05:24:36.432666-07:00,1006.44873046875,10.913007,10913.007 +9703,2025-06-11T05:24:47.355803-07:00,1006.455322265625,10.923137,10923.137 +9704,2025-06-11T05:24:58.278461-07:00,1006.4321899414062,10.922658,10922.658 +9705,2025-06-11T05:25:09.207005-07:00,1006.4684448242188,10.928544,10928.544 +9706,2025-06-11T05:25:20.120952-07:00,1006.4338989257812,10.913947,10913.947 +9707,2025-06-11T05:25:31.047688-07:00,1006.4404907226562,10.926736,10926.736 +9708,2025-06-11T05:25:41.970507-07:00,1006.4517822265625,10.922819,10922.819 +9709,2025-06-11T05:25:52.891162-07:00,1006.428955078125,10.920655,10920.655 +9710,2025-06-11T05:26:03.809506-07:00,1006.4124145507812,10.918344,10918.344 +9711,2025-06-11T05:26:14.723613-07:00,1006.4453125,10.914107,10914.107 +9712,2025-06-11T05:26:25.638173-07:00,1006.455322265625,10.91456,10914.56 +9713,2025-06-11T05:26:36.561757-07:00,1006.466796875,10.923584,10923.584 +9714,2025-06-11T05:26:47.482448-07:00,1006.455322265625,10.920691,10920.691 +9715,2025-06-11T05:26:58.395448-07:00,1006.4439697265625,10.913,10913.0 +9716,2025-06-11T05:27:09.330553-07:00,1006.4439697265625,10.935105,10935.105 +9717,2025-06-11T05:27:20.251858-07:00,1006.4453125,10.921305,10921.305 +9718,2025-06-11T05:27:31.164466-07:00,1006.4404907226562,10.912608,10912.608 +9719,2025-06-11T05:27:42.087494-07:00,1006.4110717773438,10.923028,10923.028 +9720,2025-06-11T05:27:53.010828-07:00,1006.4373168945312,10.923334,10923.334 +9721,2025-06-11T05:28:03.931904-07:00,1006.45361328125,10.921076,10921.076 +9722,2025-06-11T05:28:14.856509-07:00,1006.44873046875,10.924605,10924.605 +9723,2025-06-11T05:28:25.784894-07:00,1006.438720703125,10.928385,10928.385 +9724,2025-06-11T05:28:36.701929-07:00,1006.47998046875,10.917035,10917.035 +9725,2025-06-11T05:28:47.626503-07:00,1006.4357299804688,10.924574,10924.574 +9726,2025-06-11T05:28:58.560035-07:00,1006.4651489257812,10.933532,10933.532 +9727,2025-06-11T05:29:09.481445-07:00,1006.4703369140625,10.92141,10921.41 +9728,2025-06-11T05:29:20.405806-07:00,1006.4717407226562,10.924361,10924.361 +9729,2025-06-11T05:29:31.320633-07:00,1006.4321899414062,10.914827,10914.827 +9730,2025-06-11T05:29:42.254962-07:00,1006.4637451171875,10.934329,10934.329 +9731,2025-06-11T05:29:53.183563-07:00,1006.4307861328125,10.928601,10928.601 +9732,2025-06-11T05:30:04.117175-07:00,1006.4453125,10.933612,10933.612 +9733,2025-06-11T05:30:15.046360-07:00,1006.4291381835938,10.929185,10929.185 +9734,2025-06-11T05:30:25.982727-07:00,1006.4093627929688,10.936367,10936.367 +9735,2025-06-11T05:30:36.901350-07:00,1006.401123046875,10.918623,10918.623 +9736,2025-06-11T05:30:47.825116-07:00,1006.4241943359375,10.923766,10923.766 +9737,2025-06-11T05:30:58.748522-07:00,1006.4321899414062,10.923406,10923.406 +9738,2025-06-11T05:31:09.671114-07:00,1006.4241943359375,10.922592,10922.592 +9739,2025-06-11T05:31:20.594535-07:00,1006.4307861328125,10.923421,10923.421 +9740,2025-06-11T05:31:31.523458-07:00,1006.4373168945312,10.928923,10928.923 +9741,2025-06-11T05:31:42.445370-07:00,1006.4291381835938,10.921912,10921.912 +9742,2025-06-11T05:31:53.372119-07:00,1006.4373168945312,10.926749,10926.749 +9743,2025-06-11T05:32:04.292511-07:00,1006.4241943359375,10.920392,10920.392 +9744,2025-06-11T05:32:15.219415-07:00,1006.404541015625,10.926904,10926.904 +9745,2025-06-11T05:32:26.142467-07:00,1006.438720703125,10.923052,10923.052 +9746,2025-06-11T05:32:37.064559-07:00,1006.428955078125,10.922092,10922.092 +9747,2025-06-11T05:32:47.997146-07:00,1006.438720703125,10.932587,10932.587 +9748,2025-06-11T05:32:58.922429-07:00,1006.438720703125,10.925283,10925.283 +9749,2025-06-11T05:33:09.841218-07:00,1006.4159545898438,10.918789,10918.789 +9750,2025-06-11T05:33:20.776116-07:00,1006.4321899414062,10.934898,10934.898 +9751,2025-06-11T05:33:31.693694-07:00,1006.4291381835938,10.917578,10917.578 +9752,2025-06-11T05:33:42.615124-07:00,1006.4601440429688,10.92143,10921.43 +9753,2025-06-11T05:33:53.544122-07:00,1006.45361328125,10.928998,10928.998 +9754,2025-06-11T05:34:04.472254-07:00,1006.4373168945312,10.928132,10928.132 +9755,2025-06-11T05:34:15.391144-07:00,1006.4618530273438,10.91889,10918.89 +9756,2025-06-11T05:34:26.317408-07:00,1006.4291381835938,10.926264,10926.264 +9757,2025-06-11T05:34:37.237114-07:00,1006.4307861328125,10.919706,10919.706 +9758,2025-06-11T05:34:48.168124-07:00,1006.4307861328125,10.93101,10931.01 +9759,2025-06-11T05:34:59.099453-07:00,1006.45361328125,10.931329,10931.329 +9760,2025-06-11T05:35:10.020103-07:00,1006.4255981445312,10.92065,10920.65 +9761,2025-06-11T05:35:20.949823-07:00,1006.4321899414062,10.92972,10929.72 +9762,2025-06-11T05:35:31.880262-07:00,1006.447021484375,10.930439,10930.439 +9763,2025-06-11T05:35:42.800276-07:00,1006.455322265625,10.920014,10920.014 +9764,2025-06-11T05:35:53.725395-07:00,1006.4338989257812,10.925119,10925.119 +9765,2025-06-11T05:36:04.648123-07:00,1006.447021484375,10.922728,10922.728 +9766,2025-06-11T05:36:15.576201-07:00,1006.4241943359375,10.928078,10928.078 +9767,2025-06-11T05:36:26.504103-07:00,1006.4321899414062,10.927902,10927.902 +9768,2025-06-11T05:36:37.433379-07:00,1006.4373168945312,10.929276,10929.276 +9769,2025-06-11T05:36:48.349832-07:00,1006.438720703125,10.916453,10916.453 +9770,2025-06-11T05:36:59.280357-07:00,1006.4110717773438,10.930525,10930.525 +9771,2025-06-11T05:37:10.207153-07:00,1006.4404907226562,10.926796,10926.796 +9772,2025-06-11T05:37:21.124611-07:00,1006.455322265625,10.917458,10917.458 +9773,2025-06-11T05:37:32.062110-07:00,1006.447021484375,10.937499,10937.499 +9774,2025-06-11T05:37:42.994276-07:00,1006.447021484375,10.932166,10932.166 +9775,2025-06-11T05:37:53.910238-07:00,1006.4453125,10.915962,10915.962 +9776,2025-06-11T05:38:04.842139-07:00,1006.4404907226562,10.931901,10931.901 +9777,2025-06-11T05:38:15.761646-07:00,1006.44873046875,10.919507,10919.507 +9778,2025-06-11T05:38:26.690302-07:00,1006.4338989257812,10.928656,10928.656 +9779,2025-06-11T05:38:37.624708-07:00,1006.4241943359375,10.934406,10934.406 +9780,2025-06-11T05:38:48.552089-07:00,1006.4273681640625,10.927381,10927.381 +9781,2025-06-11T05:38:59.471429-07:00,1006.4124145507812,10.91934,10919.34 +9782,2025-06-11T05:39:10.404924-07:00,1006.4273681640625,10.933495,10933.495 +9783,2025-06-11T05:39:21.322117-07:00,1006.4421997070312,10.917193,10917.193 +9784,2025-06-11T05:39:32.237595-07:00,1006.4404907226562,10.915478,10915.478 +9785,2025-06-11T05:39:43.166352-07:00,1006.4632568359375,10.928757,10928.757 +9786,2025-06-11T05:39:54.093353-07:00,1006.4435424804688,10.927001,10927.001 +9787,2025-06-11T05:40:05.016829-07:00,1006.4519653320312,10.923476,10923.476 +9788,2025-06-11T05:40:15.935453-07:00,1006.4601440429688,10.918624,10918.624 +9789,2025-06-11T05:40:26.865113-07:00,1006.45361328125,10.92966,10929.66 +9790,2025-06-11T05:40:37.796097-07:00,1006.4241943359375,10.930984,10930.984 +9791,2025-06-11T05:40:48.711236-07:00,1006.438720703125,10.915139,10915.139 +9792,2025-06-11T05:40:59.645232-07:00,1006.4421997070312,10.933996,10933.996 +9793,2025-06-11T05:41:10.562158-07:00,1006.4601440429688,10.916926,10916.926 +9794,2025-06-11T05:41:21.491120-07:00,1006.4698486328125,10.928962,10928.962 +9795,2025-06-11T05:41:32.420618-07:00,1006.4618530273438,10.929498,10929.498 +9796,2025-06-11T05:41:43.346176-07:00,1006.44873046875,10.925558,10925.558 +9797,2025-06-11T05:41:54.274371-07:00,1006.4404907226562,10.928195,10928.195 +9798,2025-06-11T05:42:05.204411-07:00,1006.4124145507812,10.93004,10930.04 +9799,2025-06-11T05:42:16.133120-07:00,1006.4421997070312,10.928709,10928.709 +9800,2025-06-11T05:42:27.059255-07:00,1006.455322265625,10.926135,10926.135 +9801,2025-06-11T05:42:37.979373-07:00,1006.447021484375,10.920118,10920.118 +9802,2025-06-11T05:42:48.907636-07:00,1006.4501342773438,10.928263,10928.263 +9803,2025-06-11T05:42:59.838111-07:00,1006.4421997070312,10.930475,10930.475 +9804,2025-06-11T05:43:10.759120-07:00,1006.455322265625,10.921009,10921.009 +9805,2025-06-11T05:43:21.694124-07:00,1006.4962768554688,10.935004,10935.004 +9806,2025-06-11T05:43:32.609097-07:00,1006.494873046875,10.914973,10914.973 +9807,2025-06-11T05:43:43.539860-07:00,1006.455322265625,10.930763,10930.763 +9808,2025-06-11T05:43:54.467375-07:00,1006.4567260742188,10.927515,10927.515 +9809,2025-06-11T05:44:05.389603-07:00,1006.4650268554688,10.922228,10922.228 +9810,2025-06-11T05:44:16.318232-07:00,1006.4846801757812,10.928629,10928.629 +9811,2025-06-11T05:44:27.246120-07:00,1006.44873046875,10.927888,10927.888 +9812,2025-06-11T05:44:38.163094-07:00,1006.428955078125,10.916974,10916.974 +9813,2025-06-11T05:44:49.088262-07:00,1006.44873046875,10.925168,10925.168 +9814,2025-06-11T05:45:00.023280-07:00,1006.4404907226562,10.935018,10935.018 +9815,2025-06-11T05:45:10.938883-07:00,1006.4307861328125,10.915603,10915.603 +9816,2025-06-11T05:45:21.868097-07:00,1006.4190673828125,10.929214,10929.214 +9817,2025-06-11T05:45:32.784116-07:00,1006.4338989257812,10.916019,10916.019 +9818,2025-06-11T05:45:43.714463-07:00,1006.4338989257812,10.930347,10930.347 +9819,2025-06-11T05:45:54.641110-07:00,1006.4058837890625,10.926647,10926.647 +9820,2025-06-11T05:46:05.571848-07:00,1006.455322265625,10.930738,10930.738 +9821,2025-06-11T05:46:16.500935-07:00,1006.4273681640625,10.929087,10929.087 +9822,2025-06-11T05:46:27.422123-07:00,1006.401123046875,10.921188,10921.188 +9823,2025-06-11T05:46:38.350209-07:00,1006.438720703125,10.928086,10928.086 +9824,2025-06-11T05:46:49.279210-07:00,1006.438720703125,10.929001,10929.001 +9825,2025-06-11T05:47:00.198118-07:00,1006.44873046875,10.918908,10918.908 +9826,2025-06-11T05:47:11.124362-07:00,1006.447021484375,10.926244,10926.244 +9827,2025-06-11T05:47:22.047120-07:00,1006.455322265625,10.922758,10922.758 +9828,2025-06-11T05:47:32.972414-07:00,1006.438720703125,10.925294,10925.294 +9829,2025-06-11T05:47:43.892116-07:00,1006.4255981445312,10.919702,10919.702 +9830,2025-06-11T05:47:54.825118-07:00,1006.4093627929688,10.933002,10933.002 +9831,2025-06-11T05:48:05.756416-07:00,1006.4110717773438,10.931298,10931.298 +9832,2025-06-11T05:48:16.680106-07:00,1006.4190673828125,10.92369,10923.69 +9833,2025-06-11T05:48:27.605440-07:00,1006.4338989257812,10.925334,10925.334 +9834,2025-06-11T05:48:38.536275-07:00,1006.435546875,10.930835,10930.835 +9835,2025-06-11T05:48:49.466115-07:00,1006.4501342773438,10.92984,10929.84 +9836,2025-06-11T05:49:00.389116-07:00,1006.4320068359375,10.923001,10923.001 +9837,2025-06-11T05:49:11.320282-07:00,1006.4124145507812,10.931166,10931.166 +9838,2025-06-11T05:49:22.238378-07:00,1006.4501342773438,10.918096,10918.096 +9839,2025-06-11T05:49:33.169147-07:00,1006.4385986328125,10.930769,10930.769 +9840,2025-06-11T05:49:44.090669-07:00,1006.435546875,10.921522,10921.522 +9841,2025-06-11T05:49:55.023124-07:00,1006.4026489257812,10.932455,10932.455 +9842,2025-06-11T05:50:05.943107-07:00,1006.4302978515625,10.919983,10919.983 +9843,2025-06-11T05:50:16.859245-07:00,1006.3895263671875,10.916138,10916.138 +9844,2025-06-11T05:50:27.781286-07:00,1006.41064453125,10.922041,10922.041 +9845,2025-06-11T05:50:38.701116-07:00,1006.41064453125,10.91983,10919.83 +9846,2025-06-11T05:50:49.624290-07:00,1006.41064453125,10.923174,10923.174 +9847,2025-06-11T05:51:00.545999-07:00,1006.4285278320312,10.921709,10921.709 +9848,2025-06-11T05:51:11.476120-07:00,1006.4320068359375,10.930121,10930.121 +9849,2025-06-11T05:51:22.398163-07:00,1006.4205322265625,10.922043,10922.043 +9850,2025-06-11T05:51:33.323509-07:00,1006.4271850585938,10.925346,10925.346 +9851,2025-06-11T05:51:44.249112-07:00,1006.3961181640625,10.925603,10925.603 +9852,2025-06-11T05:51:55.184118-07:00,1006.4403076171875,10.935006,10935.006 +9853,2025-06-11T05:52:06.104525-07:00,1006.4337768554688,10.920407,10920.407 +9854,2025-06-11T05:52:17.043816-07:00,1006.4500122070312,10.939291,10939.291 +9855,2025-06-11T05:52:27.971112-07:00,1006.4271850585938,10.927296,10927.296 +9856,2025-06-11T05:52:38.898062-07:00,1006.436767578125,10.92695,10926.95 +9857,2025-06-11T05:52:49.823080-07:00,1006.4140014648438,10.925018,10925.018 +9858,2025-06-11T05:53:00.759499-07:00,1006.412353515625,10.936419,10936.419 +9859,2025-06-11T05:53:11.683360-07:00,1006.4219360351562,10.923861,10923.861 +9860,2025-06-11T05:53:22.616290-07:00,1006.4219360351562,10.93293,10932.93 +9861,2025-06-11T05:53:33.537403-07:00,1006.4320068359375,10.921113,10921.113 +9862,2025-06-11T05:53:44.474371-07:00,1006.463134765625,10.936968,10936.968 +9863,2025-06-11T05:53:55.395446-07:00,1006.4696655273438,10.921075,10921.075 +9864,2025-06-11T05:54:06.327116-07:00,1006.46484375,10.93167,10931.67 +9865,2025-06-11T05:54:17.259268-07:00,1006.4500122070312,10.932152,10932.152 +9866,2025-06-11T05:54:28.181116-07:00,1006.4468994140625,10.921848,10921.848 +9867,2025-06-11T05:54:39.122404-07:00,1006.4679565429688,10.941288,10941.288 +9868,2025-06-11T05:54:50.057295-07:00,1006.5092163085938,10.934891,10934.891 +9869,2025-06-11T05:55:00.990451-07:00,1006.4666137695312,10.933156,10933.156 +9870,2025-06-11T05:55:11.916365-07:00,1006.5092163085938,10.925914,10925.914 +9871,2025-06-11T05:55:22.857204-07:00,1006.4929809570312,10.940839,10940.839 +9872,2025-06-11T05:55:33.788116-07:00,1006.494384765625,10.930912,10930.912 +9873,2025-06-11T05:55:44.722391-07:00,1006.4978637695312,10.934275,10934.275 +9874,2025-06-11T05:55:55.645103-07:00,1006.5092163085938,10.922712,10922.712 +9875,2025-06-11T05:56:06.573431-07:00,1006.5009155273438,10.928328,10928.328 +9876,2025-06-11T05:56:17.509116-07:00,1006.4929809570312,10.935685,10935.685 +9877,2025-06-11T05:56:28.442448-07:00,1006.4763793945312,10.933332,10933.332 +9878,2025-06-11T05:56:39.361284-07:00,1006.4929809570312,10.918836,10918.836 +9879,2025-06-11T05:56:50.296447-07:00,1006.5140380859375,10.935163,10935.163 +9880,2025-06-11T05:57:01.220229-07:00,1006.5193481445312,10.923782,10923.782 +9881,2025-06-11T05:57:12.155921-07:00,1006.5390625,10.935692,10935.692 +9882,2025-06-11T05:57:23.078714-07:00,1006.537353515625,10.922793,10922.793 +9883,2025-06-11T05:57:34.002124-07:00,1006.53076171875,10.92341,10923.41 +9884,2025-06-11T05:57:44.935121-07:00,1006.5044555664062,10.932997,10932.997 +9885,2025-06-11T05:57:55.864106-07:00,1006.53076171875,10.928985,10928.985 +9886,2025-06-11T05:58:06.794384-07:00,1006.5521850585938,10.930278,10930.278 +9887,2025-06-11T05:58:17.719123-07:00,1006.545654296875,10.924739,10924.739 +9888,2025-06-11T05:58:28.651511-07:00,1006.5176391601562,10.932388,10932.388 +9889,2025-06-11T05:58:39.586115-07:00,1006.5242309570312,10.934604,10934.604 +9890,2025-06-11T05:58:50.514113-07:00,1006.5357055664062,10.927998,10927.998 +9891,2025-06-11T05:59:01.449489-07:00,1006.5194702148438,10.935376,10935.376 +9892,2025-06-11T05:59:12.380583-07:00,1006.5554809570312,10.931094,10931.094 +9893,2025-06-11T05:59:23.306096-07:00,1006.56201171875,10.925513,10925.513 +9894,2025-06-11T05:59:34.234155-07:00,1006.5392456054688,10.928059,10928.059 +9895,2025-06-11T05:59:45.159517-07:00,1006.5554809570312,10.925362,10925.362 +9896,2025-06-11T05:59:56.078105-07:00,1006.568603515625,10.918588,10918.588 +9897,2025-06-11T06:00:07.013438-07:00,1006.5606079101562,10.935333,10935.333 +9898,2025-06-11T06:00:17.931108-07:00,1006.5589599609375,10.91767,10917.67 +9899,2025-06-11T06:00:28.856200-07:00,1006.5672607421875,10.925092,10925.092 +9900,2025-06-11T06:00:39.781376-07:00,1006.5853271484375,10.925176,10925.176 +9901,2025-06-11T06:00:50.700118-07:00,1006.555908203125,10.918742,10918.742 +9902,2025-06-11T06:01:01.629344-07:00,1006.5589599609375,10.929226,10929.226 +9903,2025-06-11T06:01:12.557111-07:00,1006.5589599609375,10.927767,10927.767 +9904,2025-06-11T06:01:23.476183-07:00,1006.5440673828125,10.919072,10919.072 +9905,2025-06-11T06:01:34.404116-07:00,1006.5639038085938,10.927933,10927.933 +9906,2025-06-11T06:01:45.331118-07:00,1006.59375,10.927002,10927.002 +9907,2025-06-11T06:01:56.253411-07:00,1006.5804443359375,10.922293,10922.293 +9908,2025-06-11T06:02:07.167269-07:00,1006.5704956054688,10.913858,10913.858 +9909,2025-06-11T06:02:18.098118-07:00,1006.5639038085938,10.930849,10930.849 +9910,2025-06-11T06:02:29.026270-07:00,1006.606689453125,10.928152,10928.152 +9911,2025-06-11T06:02:39.951449-07:00,1006.569091796875,10.925179,10925.179 +9912,2025-06-11T06:02:50.880110-07:00,1006.5901489257812,10.928661,10928.661 +9913,2025-06-11T06:03:01.796117-07:00,1006.58056640625,10.916007,10916.007 +9914,2025-06-11T06:03:12.726958-07:00,1006.5836181640625,10.930841,10930.841 +9915,2025-06-11T06:03:23.643311-07:00,1006.595458984375,10.916353,10916.353 +9916,2025-06-11T06:03:34.578660-07:00,1006.5756225585938,10.935349,10935.349 +9917,2025-06-11T06:03:45.501520-07:00,1006.587158203125,10.92286,10922.86 +9918,2025-06-11T06:03:56.430120-07:00,1006.5888061523438,10.9286,10928.6 +9919,2025-06-11T06:04:07.352388-07:00,1006.6068725585938,10.922268,10922.268 +9920,2025-06-11T06:04:18.279367-07:00,1006.6068725585938,10.926979,10926.979 +9921,2025-06-11T06:04:29.196120-07:00,1006.6099853515625,10.916753,10916.753 +9922,2025-06-11T06:04:40.121704-07:00,1006.592041015625,10.925584,10925.584 +9923,2025-06-11T06:04:51.050305-07:00,1006.5643920898438,10.928601,10928.601 +9924,2025-06-11T06:05:01.975115-07:00,1006.6068725585938,10.92481,10924.81 +9925,2025-06-11T06:05:12.899116-07:00,1006.6134643554688,10.924001,10924.001 +9926,2025-06-11T06:05:23.822288-07:00,1006.6296997070312,10.923172,10923.172 +9927,2025-06-11T06:05:34.752684-07:00,1006.58056640625,10.930396,10930.396 +9928,2025-06-11T06:05:45.679121-07:00,1006.592041015625,10.926437,10926.437 +9929,2025-06-11T06:05:56.601274-07:00,1006.6068725585938,10.922153,10922.153 +9930,2025-06-11T06:06:07.519412-07:00,1006.6151733398438,10.918138,10918.138 +9931,2025-06-11T06:06:18.443164-07:00,1006.6199951171875,10.923752,10923.752 +9932,2025-06-11T06:06:29.361408-07:00,1006.600341796875,10.918244,10918.244 +9933,2025-06-11T06:06:40.294279-07:00,1006.6231079101562,10.932871,10932.871 +9934,2025-06-11T06:06:51.218119-07:00,1006.6199951171875,10.92384,10923.84 +9935,2025-06-11T06:07:02.136085-07:00,1006.5985717773438,10.917966,10917.966 +9936,2025-06-11T06:07:13.069106-07:00,1006.6560668945312,10.933021,10933.021 +9937,2025-06-11T06:07:23.997136-07:00,1006.6481323242188,10.92803,10928.03 +9938,2025-06-11T06:07:34.926158-07:00,1006.6282958984375,10.929022,10929.022 +9939,2025-06-11T06:07:45.854565-07:00,1006.6282958984375,10.928407,10928.407 +9940,2025-06-11T06:07:56.777406-07:00,1006.6612548828125,10.922841,10922.841 +9941,2025-06-11T06:08:07.703354-07:00,1006.6677856445312,10.925948,10925.948 +9942,2025-06-11T06:08:18.638790-07:00,1006.6595458984375,10.935436,10935.436 +9943,2025-06-11T06:08:29.564250-07:00,1006.6810302734375,10.92546,10925.46 +9944,2025-06-11T06:08:40.492355-07:00,1006.6546630859375,10.928105,10928.105 +9945,2025-06-11T06:08:51.425120-07:00,1006.6595458984375,10.932765,10932.765 +9946,2025-06-11T06:09:02.360617-07:00,1006.6578369140625,10.935497,10935.497 +9947,2025-06-11T06:09:13.277767-07:00,1006.631591796875,10.91715,10917.15 +9948,2025-06-11T06:09:24.204376-07:00,1006.63671875,10.926609,10926.609 +9949,2025-06-11T06:09:35.140458-07:00,1006.6660766601562,10.936082,10936.082 +9950,2025-06-11T06:09:46.063365-07:00,1006.6381225585938,10.922907,10922.907 +9951,2025-06-11T06:09:56.989108-07:00,1006.6481323242188,10.925743,10925.743 +9952,2025-06-11T06:10:07.915271-07:00,1006.6464233398438,10.926163,10926.163 +9953,2025-06-11T06:10:18.842461-07:00,1006.6464233398438,10.92719,10927.19 +9954,2025-06-11T06:10:29.760116-07:00,1006.6529541015625,10.917655,10917.655 +9955,2025-06-11T06:10:40.694354-07:00,1006.6266479492188,10.934238,10934.238 +9956,2025-06-11T06:10:51.621236-07:00,1006.625,10.926882,10926.882 +9957,2025-06-11T06:11:02.546448-07:00,1006.6447143554688,10.925212,10925.212 +9958,2025-06-11T06:11:13.466116-07:00,1006.631591796875,10.919668,10919.668 +9959,2025-06-11T06:11:24.387373-07:00,1006.6398315429688,10.921257,10921.257 +9960,2025-06-11T06:11:35.309467-07:00,1006.6512451171875,10.922094,10922.094 +9961,2025-06-11T06:11:46.249116-07:00,1006.6529541015625,10.939649,10939.649 +9962,2025-06-11T06:11:57.170392-07:00,1006.6398315429688,10.921276,10921.276 +9963,2025-06-11T06:12:08.092222-07:00,1006.631591796875,10.92183,10921.83 +9964,2025-06-11T06:12:19.019095-07:00,1006.6183471679688,10.926873,10926.873 +9965,2025-06-11T06:12:29.952371-07:00,1006.63671875,10.933276,10933.276 +9966,2025-06-11T06:12:40.874116-07:00,1006.631591796875,10.921745,10921.745 +9967,2025-06-11T06:12:51.808477-07:00,1006.6381225585938,10.934361,10934.361 +9968,2025-06-11T06:13:02.737142-07:00,1006.6529541015625,10.928665,10928.665 +9969,2025-06-11T06:13:13.672271-07:00,1006.6512451171875,10.935129,10935.129 +9970,2025-06-11T06:13:24.597116-07:00,1006.6183471679688,10.924845,10924.845 +9971,2025-06-11T06:13:35.523342-07:00,1006.63671875,10.926226,10926.226 +9972,2025-06-11T06:13:46.456403-07:00,1006.625,10.933061,10933.061 +9973,2025-06-11T06:13:57.384640-07:00,1006.63671875,10.928237,10928.237 +9974,2025-06-11T06:14:08.313609-07:00,1006.6381225585938,10.928969,10928.969 +9975,2025-06-11T06:14:19.237107-07:00,1006.6727294921875,10.923498,10923.498 +9976,2025-06-11T06:14:30.167118-07:00,1006.6381225585938,10.930011,10930.011 +9977,2025-06-11T06:14:41.094139-07:00,1006.6464233398438,10.927021,10927.021 +9978,2025-06-11T06:14:52.024141-07:00,1006.63330078125,10.930002,10930.002 +9979,2025-06-11T06:15:02.945370-07:00,1006.6578369140625,10.921229,10921.229 +9980,2025-06-11T06:15:13.875292-07:00,1006.6381225585938,10.929922,10929.922 +9981,2025-06-11T06:15:24.800701-07:00,1006.64990234375,10.925409,10925.409 +9982,2025-06-11T06:15:35.732147-07:00,1006.6235961914062,10.931446,10931.446 +9983,2025-06-11T06:15:46.666479-07:00,1006.6578369140625,10.934332,10934.332 +9984,2025-06-11T06:15:57.588116-07:00,1006.643310546875,10.921637,10921.637 +9985,2025-06-11T06:16:08.523559-07:00,1006.6398315429688,10.935443,10935.443 +9986,2025-06-11T06:16:19.442093-07:00,1006.6810302734375,10.918534,10918.534 +9987,2025-06-11T06:16:30.375201-07:00,1006.6727294921875,10.933108,10933.108 +9988,2025-06-11T06:16:41.306116-07:00,1006.6875610351562,10.930915,10930.915 +9989,2025-06-11T06:16:52.231304-07:00,1006.6810302734375,10.925188,10925.188 +9990,2025-06-11T06:17:03.156368-07:00,1006.6859130859375,10.925064,10925.064 +9991,2025-06-11T06:17:14.078332-07:00,1006.6743774414062,10.921964,10921.964 +9992,2025-06-11T06:17:25.006589-07:00,1006.6743774414062,10.928257,10928.257 +9993,2025-06-11T06:17:35.935116-07:00,1006.6875610351562,10.928527,10928.527 +9994,2025-06-11T06:17:46.870324-07:00,1006.6727294921875,10.935208,10935.208 +9995,2025-06-11T06:17:57.803280-07:00,1006.6727294921875,10.932956,10932.956 +9996,2025-06-11T06:18:08.730942-07:00,1006.6973266601562,10.927662,10927.662 +9997,2025-06-11T06:18:19.655095-07:00,1006.6710815429688,10.924153,10924.153 +9998,2025-06-11T06:18:30.590184-07:00,1006.6727294921875,10.935089,10935.089 +9999,2025-06-11T06:18:41.519190-07:00,1006.67626953125,10.929006,10929.006 +10000,2025-06-11T06:18:52.447605-07:00,1006.6990356445312,10.928415,10928.415 +10001,2025-06-11T06:19:03.378118-07:00,1006.6925048828125,10.930513,10930.513 +10002,2025-06-11T06:19:14.305075-07:00,1006.6907958984375,10.926957,10926.957 +10003,2025-06-11T06:19:25.230695-07:00,1006.6710815429688,10.92562,10925.62 +10004,2025-06-11T06:19:36.149124-07:00,1006.7056274414062,10.918429,10918.429 +10005,2025-06-11T06:19:47.080367-07:00,1006.6810913085938,10.931243,10931.243 +10006,2025-06-11T06:19:58.004616-07:00,1006.6973266601562,10.924249,10924.249 +10007,2025-06-11T06:20:08.928126-07:00,1006.6893920898438,10.92351,10923.51 +10008,2025-06-11T06:20:19.864436-07:00,1006.6842041015625,10.93631,10936.31 +10009,2025-06-11T06:20:30.793127-07:00,1006.6973266601562,10.928691,10928.691 +10010,2025-06-11T06:20:41.726144-07:00,1006.7025756835938,10.933017,10933.017 +10011,2025-06-11T06:20:52.649097-07:00,1006.68603515625,10.922953,10922.953 +10012,2025-06-11T06:21:03.576294-07:00,1006.6893920898438,10.927197,10927.197 +10013,2025-06-11T06:21:14.491398-07:00,1006.70751953125,10.915104,10915.104 +10014,2025-06-11T06:21:25.422245-07:00,1006.70751953125,10.930847,10930.847 +10015,2025-06-11T06:21:36.337116-07:00,1006.7140502929688,10.914871,10914.871 +10016,2025-06-11T06:21:47.264839-07:00,1006.7223510742188,10.927723,10927.723 +10017,2025-06-11T06:21:58.189372-07:00,1006.6942749023438,10.924533,10924.533 +10018,2025-06-11T06:22:09.114860-07:00,1006.6843872070312,10.925488,10925.488 +10019,2025-06-11T06:22:20.032394-07:00,1006.700927734375,10.917534,10917.534 +10020,2025-06-11T06:22:30.960116-07:00,1006.705810546875,10.927722,10927.722 +10021,2025-06-11T06:22:41.882255-07:00,1006.692626953125,10.922139,10922.139 +10022,2025-06-11T06:22:52.801596-07:00,1006.70751953125,10.919341,10919.341 +10023,2025-06-11T06:23:03.724107-07:00,1006.7039184570312,10.922511,10922.511 +10024,2025-06-11T06:23:14.647282-07:00,1006.671142578125,10.923175,10923.175 +10025,2025-06-11T06:23:25.569666-07:00,1006.7105712890625,10.922384,10922.384 +10026,2025-06-11T06:23:36.502103-07:00,1006.696044921875,10.932437,10932.437 +10027,2025-06-11T06:23:47.422501-07:00,1006.6810913085938,10.920398,10920.398 +10028,2025-06-11T06:23:58.344510-07:00,1006.709228515625,10.922009,10922.009 +10029,2025-06-11T06:24:09.268287-07:00,1006.6942749023438,10.923777,10923.777 +10030,2025-06-11T06:24:20.195738-07:00,1006.709228515625,10.927451,10927.451 +10031,2025-06-11T06:24:31.119416-07:00,1006.709228515625,10.923678,10923.678 +10032,2025-06-11T06:24:42.040120-07:00,1006.666259765625,10.920704,10920.704 +10033,2025-06-11T06:24:52.970369-07:00,1006.6893920898438,10.930249,10930.249 +10034,2025-06-11T06:25:03.891114-07:00,1006.700927734375,10.920745,10920.745 +10035,2025-06-11T06:25:14.826566-07:00,1006.7039184570312,10.935452,10935.452 +10036,2025-06-11T06:25:25.745115-07:00,1006.7223510742188,10.918549,10918.549 +10037,2025-06-11T06:25:36.673429-07:00,1006.6907958984375,10.928314,10928.314 +10038,2025-06-11T06:25:47.599428-07:00,1006.6777954101562,10.925999,10925.999 +10039,2025-06-11T06:25:58.522171-07:00,1006.6843872070312,10.922743,10922.743 +10040,2025-06-11T06:26:09.453529-07:00,1006.7157592773438,10.931358,10931.358 +10041,2025-06-11T06:26:20.386243-07:00,1006.6777954101562,10.932714,10932.714 +10042,2025-06-11T06:26:31.309384-07:00,1006.692626953125,10.923141,10923.141 +10043,2025-06-11T06:26:42.244268-07:00,1006.69091796875,10.934884,10934.884 +10044,2025-06-11T06:26:53.172446-07:00,1006.7105712890625,10.928178,10928.178 +10045,2025-06-11T06:27:04.094954-07:00,1006.68603515625,10.922508,10922.508 +10046,2025-06-11T06:27:15.025118-07:00,1006.671142578125,10.930164,10930.164 +10047,2025-06-11T06:27:25.958405-07:00,1006.6893920898438,10.933287,10933.287 +10048,2025-06-11T06:27:36.888445-07:00,1006.6514282226562,10.93004,10930.04 +10049,2025-06-11T06:27:47.827609-07:00,1006.692626953125,10.939164,10939.164 +10050,2025-06-11T06:27:58.752283-07:00,1006.6763916015625,10.924674,10924.674 +10051,2025-06-11T06:28:09.673298-07:00,1006.6843872070312,10.921015,10921.015 +10052,2025-06-11T06:28:20.608286-07:00,1006.6632080078125,10.934988,10934.988 +10053,2025-06-11T06:28:31.537266-07:00,1006.6698608398438,10.92898,10928.98 +10054,2025-06-11T06:28:42.464201-07:00,1006.6566162109375,10.926935,10926.935 +10055,2025-06-11T06:28:53.385387-07:00,1006.6549072265625,10.921186,10921.186 +10056,2025-06-11T06:29:04.307852-07:00,1006.6632080078125,10.922465,10922.465 +10057,2025-06-11T06:29:15.229122-07:00,1006.6351318359375,10.92127,10921.27 +10058,2025-06-11T06:29:26.200042-07:00,1006.646728515625,10.97092,10970.92 +10059,2025-06-11T06:29:37.125652-07:00,1006.6746826171875,10.92561,10925.61 +10060,2025-06-11T06:29:48.046322-07:00,1006.6698608398438,10.92067,10920.67 +10061,2025-06-11T06:29:58.971239-07:00,1006.6434326171875,10.924917,10924.917 +10062,2025-06-11T06:30:09.901047-07:00,1006.6123657226562,10.929808,10929.808 +10063,2025-06-11T06:30:20.827039-07:00,1006.6632080078125,10.925992,10925.992 +10064,2025-06-11T06:30:31.747501-07:00,1006.6763916015625,10.920462,10920.462 +10065,2025-06-11T06:30:42.680482-07:00,1006.657958984375,10.932981,10932.981 +10066,2025-06-11T06:30:53.607891-07:00,1006.6532592773438,10.927409,10927.409 +10067,2025-06-11T06:31:04.526185-07:00,1006.6351318359375,10.918294,10918.294 +10068,2025-06-11T06:31:15.458126-07:00,1006.6500244140625,10.931941,10931.941 +10069,2025-06-11T06:31:26.388454-07:00,1006.646728515625,10.930328,10930.328 +10070,2025-06-11T06:31:37.316037-07:00,1006.6681518554688,10.927583,10927.583 +10071,2025-06-11T06:31:48.244404-07:00,1006.6681518554688,10.928367,10928.367 +10072,2025-06-11T06:31:59.175586-07:00,1006.6123657226562,10.931182,10931.182 +10073,2025-06-11T06:32:10.102356-07:00,1006.6351318359375,10.92677,10926.77 +10074,2025-06-11T06:32:21.025047-07:00,1006.6663818359375,10.922691,10922.691 +10075,2025-06-11T06:32:31.943087-07:00,1006.6598510742188,10.91804,10918.04 +10076,2025-06-11T06:32:42.871893-07:00,1006.6632080078125,10.928806,10928.806 +10077,2025-06-11T06:32:53.801043-07:00,1006.6400756835938,10.92915,10929.15 +10078,2025-06-11T06:33:04.728803-07:00,1006.6598510742188,10.92776,10927.76 +10079,2025-06-11T06:33:15.646677-07:00,1006.6598510742188,10.917874,10917.874 +10080,2025-06-11T06:33:26.572043-07:00,1006.6483764648438,10.925366,10925.366 +10081,2025-06-11T06:33:37.497935-07:00,1006.610595703125,10.925892,10925.892 +10082,2025-06-11T06:33:48.421550-07:00,1006.618896484375,10.923615,10923.615 +10083,2025-06-11T06:33:59.345035-07:00,1006.646728515625,10.923485,10923.485 +10084,2025-06-11T06:34:10.275676-07:00,1006.658447265625,10.930641,10930.641 +10085,2025-06-11T06:34:21.194256-07:00,1006.6304931640625,10.91858,10918.58 +10086,2025-06-11T06:34:32.124042-07:00,1006.6453247070312,10.929786,10929.786 +10087,2025-06-11T06:34:43.054201-07:00,1006.633544921875,10.930159,10930.159 +10088,2025-06-11T06:34:53.976047-07:00,1006.632080078125,10.921846,10921.846 +10089,2025-06-11T06:35:04.905307-07:00,1006.6453247070312,10.92926,10929.26 +10090,2025-06-11T06:35:15.826045-07:00,1006.6268920898438,10.920738,10920.738 +10091,2025-06-11T06:35:26.755462-07:00,1006.632080078125,10.929417,10929.417 +10092,2025-06-11T06:35:37.678099-07:00,1006.6483764648438,10.922637,10922.637 +10093,2025-06-11T06:35:48.611041-07:00,1006.646728515625,10.932942,10932.942 +10094,2025-06-11T06:35:59.541375-07:00,1006.6434326171875,10.930334,10930.334 +10095,2025-06-11T06:36:10.463049-07:00,1006.6057739257812,10.921674,10921.674 +10096,2025-06-11T06:36:21.397757-07:00,1006.6171875,10.934708,10934.708 +10097,2025-06-11T06:36:32.320046-07:00,1006.6220092773438,10.922289,10922.289 +10098,2025-06-11T06:36:43.243291-07:00,1006.5992431640625,10.923245,10923.245 +10099,2025-06-11T06:36:54.183159-07:00,1006.6250610351562,10.939868,10939.868 +10100,2025-06-11T06:37:05.109283-07:00,1006.6303100585938,10.926124,10926.124 +10101,2025-06-11T06:37:16.034418-07:00,1006.607177734375,10.925135,10925.135 +10102,2025-06-11T06:37:26.970502-07:00,1006.60888671875,10.936084,10936.084 +10103,2025-06-11T06:37:37.891971-07:00,1006.6303100585938,10.921469,10921.469 +10104,2025-06-11T06:37:48.825008-07:00,1006.6052856445312,10.933037,10933.037 +10105,2025-06-11T06:37:59.751068-07:00,1006.6118774414062,10.92606,10926.06 +10106,2025-06-11T06:38:10.672563-07:00,1006.6185302734375,10.921495,10921.495 +10107,2025-06-11T06:38:21.597043-07:00,1006.58740234375,10.92448,10924.48 +10108,2025-06-11T06:38:32.523030-07:00,1006.5907592773438,10.925987,10925.987 +10109,2025-06-11T06:38:43.446541-07:00,1006.6218872070312,10.923511,10923.511 +10110,2025-06-11T06:38:54.369214-07:00,1006.6201782226562,10.922673,10922.673 +10111,2025-06-11T06:39:05.297316-07:00,1006.6235961914062,10.928102,10928.102 +10112,2025-06-11T06:39:16.220077-07:00,1006.6070556640625,10.922761,10922.761 +10113,2025-06-11T06:39:27.141045-07:00,1006.6185302734375,10.920968,10920.968 +10114,2025-06-11T06:39:38.073254-07:00,1006.6201782226562,10.932209,10932.209 +10115,2025-06-11T06:39:48.989332-07:00,1006.6171875,10.916078,10916.078 +10116,2025-06-11T06:39:59.911289-07:00,1006.5973510742188,10.921957,10921.957 +10117,2025-06-11T06:40:10.829007-07:00,1006.6250610351562,10.917718,10917.718 +10118,2025-06-11T06:40:21.758049-07:00,1006.6052856445312,10.929042,10929.042 +10119,2025-06-11T06:40:32.674302-07:00,1006.6171875,10.916253,10916.253 +10120,2025-06-11T06:40:43.599175-07:00,1006.6220092773438,10.924873,10924.873 +10121,2025-06-11T06:40:54.528422-07:00,1006.615478515625,10.929247,10929.247 +10122,2025-06-11T06:41:05.446038-07:00,1006.6052856445312,10.917616,10917.616 +10123,2025-06-11T06:41:16.368631-07:00,1006.6203002929688,10.922593,10922.593 +10124,2025-06-11T06:41:27.296285-07:00,1006.61376953125,10.927654,10927.654 +10125,2025-06-11T06:41:38.215026-07:00,1006.5926513671875,10.918741,10918.741 +10126,2025-06-11T06:41:49.140455-07:00,1006.615478515625,10.925429,10925.429 +10127,2025-06-11T06:42:00.064803-07:00,1006.6351318359375,10.924348,10924.348 +10128,2025-06-11T06:42:10.998443-07:00,1006.618896484375,10.93364,10933.64 +10129,2025-06-11T06:42:21.927126-07:00,1006.610595703125,10.928683,10928.683 +10130,2025-06-11T06:42:32.851042-07:00,1006.633544921875,10.923916,10923.916 +10131,2025-06-11T06:42:43.772895-07:00,1006.6483764648438,10.921853,10921.853 +10132,2025-06-11T06:42:54.700042-07:00,1006.646728515625,10.927147,10927.147 +10133,2025-06-11T06:43:05.622356-07:00,1006.6549072265625,10.922314,10922.314 +10134,2025-06-11T06:43:16.554247-07:00,1006.618896484375,10.931891,10931.891 +10135,2025-06-11T06:43:27.476031-07:00,1006.6286010742188,10.921784,10921.784 +10136,2025-06-11T06:43:38.395337-07:00,1006.6434326171875,10.919306,10919.306 +10137,2025-06-11T06:43:49.323652-07:00,1006.6400146484375,10.928315,10928.315 +10138,2025-06-11T06:44:00.248044-07:00,1006.610595703125,10.924392,10924.392 +10139,2025-06-11T06:44:11.170565-07:00,1006.6369018554688,10.922521,10922.521 +10140,2025-06-11T06:44:22.096180-07:00,1006.6123657226562,10.925615,10925.615 +10141,2025-06-11T06:44:33.016260-07:00,1006.6417236328125,10.92008,10920.08 +10142,2025-06-11T06:44:43.940376-07:00,1006.6123657226562,10.924116,10924.116 +10143,2025-06-11T06:44:54.860034-07:00,1006.6123657226562,10.919658,10919.658 +10144,2025-06-11T06:45:05.781269-07:00,1006.6615600585938,10.921235,10921.235 +10145,2025-06-11T06:45:16.705205-07:00,1006.618896484375,10.923936,10923.936 +10146,2025-06-11T06:45:27.621426-07:00,1006.610595703125,10.916221,10916.221 +10147,2025-06-11T06:45:38.553020-07:00,1006.6203002929688,10.931594,10931.594 +10148,2025-06-11T06:45:49.467088-07:00,1006.6255493164062,10.914068,10914.068 +10149,2025-06-11T06:46:00.391594-07:00,1006.5957641601562,10.924506,10924.506 +10150,2025-06-11T06:46:11.307431-07:00,1006.6387329101562,10.915837,10915.837 +10151,2025-06-11T06:46:22.231329-07:00,1006.6255493164062,10.923898,10923.898 +10152,2025-06-11T06:46:33.147936-07:00,1006.593994140625,10.916607,10916.607 +10153,2025-06-11T06:46:44.071047-07:00,1006.6040649414062,10.923111,10923.111 +10154,2025-06-11T06:46:54.986049-07:00,1006.5892333984375,10.915002,10915.002 +10155,2025-06-11T06:47:05.909287-07:00,1006.5861206054688,10.923238,10923.238 +10156,2025-06-11T06:47:16.827333-07:00,1006.5909423828125,10.918046,10918.046 +10157,2025-06-11T06:47:27.739402-07:00,1006.632080078125,10.912069,10912.069 +10158,2025-06-11T06:47:38.663437-07:00,1006.615478515625,10.924035,10924.035 +10159,2025-06-11T06:47:49.585053-07:00,1006.6171875,10.921616,10921.616 +10160,2025-06-11T06:48:00.507957-07:00,1006.5957641601562,10.922904,10922.904 +10161,2025-06-11T06:48:11.423799-07:00,1006.5926513671875,10.915842,10915.842 +10162,2025-06-11T06:48:22.343181-07:00,1006.5974731445312,10.919382,10919.382 +10163,2025-06-11T06:48:33.264439-07:00,1006.5909423828125,10.921258,10921.258 +10164,2025-06-11T06:48:44.192042-07:00,1006.57470703125,10.927603,10927.603 +10165,2025-06-11T06:48:55.122066-07:00,1006.5761108398438,10.930024,10930.024 +10166,2025-06-11T06:49:06.045627-07:00,1006.568115234375,10.923561,10923.561 +10167,2025-06-11T06:49:16.967093-07:00,1006.610595703125,10.921466,10921.466 +10168,2025-06-11T06:49:27.891773-07:00,1006.559814453125,10.92468,10924.68 +10169,2025-06-11T06:49:38.815384-07:00,1006.6123657226562,10.923611,10923.611 +10170,2025-06-11T06:49:49.736027-07:00,1006.568115234375,10.920643,10920.643 +10171,2025-06-11T06:50:00.655046-07:00,1006.5861206054688,10.919019,10919.019 +10172,2025-06-11T06:50:11.583384-07:00,1006.5695190429688,10.928338,10928.338 +10173,2025-06-11T06:50:22.515073-07:00,1006.6057739257812,10.931689,10931.689 +10174,2025-06-11T06:50:33.440384-07:00,1006.5615844726562,10.925311,10925.311 +10175,2025-06-11T06:50:44.362296-07:00,1006.5615844726562,10.921912,10921.912 +10176,2025-06-11T06:50:55.300337-07:00,1006.57470703125,10.938041,10938.041 +10177,2025-06-11T06:51:06.220198-07:00,1006.586181640625,10.919861,10919.861 +10178,2025-06-11T06:51:17.153189-07:00,1006.5909423828125,10.932991,10932.991 +10179,2025-06-11T06:51:28.076439-07:00,1006.559814453125,10.92325,10923.25 +10180,2025-06-11T06:51:38.998047-07:00,1006.594482421875,10.921608,10921.608 +10181,2025-06-11T06:51:49.925067-07:00,1006.5928344726562,10.92702,10927.02 +10182,2025-06-11T06:52:00.840084-07:00,1006.6156005859375,10.915017,10915.017 +10183,2025-06-11T06:52:11.763282-07:00,1006.594482421875,10.923198,10923.198 +10184,2025-06-11T06:52:22.680319-07:00,1006.5812377929688,10.917037,10917.037 +10185,2025-06-11T06:52:33.602431-07:00,1006.572998046875,10.922112,10922.112 +10186,2025-06-11T06:52:44.514643-07:00,1006.572998046875,10.912212,10912.212 +10187,2025-06-11T06:52:55.439104-07:00,1006.5928344726562,10.924461,10924.461 +10188,2025-06-11T06:53:06.359045-07:00,1006.586181640625,10.919941,10919.941 +10189,2025-06-11T06:53:17.287333-07:00,1006.577880859375,10.928288,10928.288 +10190,2025-06-11T06:53:28.216042-07:00,1006.591064453125,10.928709,10928.709 +10191,2025-06-11T06:53:39.140398-07:00,1006.55810546875,10.924356,10924.356 +10192,2025-06-11T06:53:50.069238-07:00,1006.595947265625,10.92884,10928.84 +10193,2025-06-11T06:54:00.996124-07:00,1006.5845336914062,10.926886,10926.886 +10194,2025-06-11T06:54:11.924163-07:00,1006.55810546875,10.928039,10928.039 +10195,2025-06-11T06:54:22.852026-07:00,1006.5630493164062,10.927863,10927.863 +10196,2025-06-11T06:54:33.783199-07:00,1006.5617065429688,10.931173,10931.173 +10197,2025-06-11T06:54:44.712079-07:00,1006.5418701171875,10.92888,10928.88 +10198,2025-06-11T06:54:55.628596-07:00,1006.5828247070312,10.916517,10916.517 +10199,2025-06-11T06:55:06.556040-07:00,1006.5617065429688,10.927444,10927.444 +10200,2025-06-11T06:55:17.479047-07:00,1006.5762329101562,10.923007,10923.007 +10201,2025-06-11T06:55:28.409372-07:00,1006.58935546875,10.930325,10930.325 +10202,2025-06-11T06:55:39.328045-07:00,1006.5762329101562,10.918673,10918.673 +10203,2025-06-11T06:55:50.247436-07:00,1006.5828247070312,10.919391,10919.391 +10204,2025-06-11T06:56:01.171943-07:00,1006.6143798828125,10.924507,10924.507 +10205,2025-06-11T06:56:12.096029-07:00,1006.5928955078125,10.924086,10924.086 +10206,2025-06-11T06:56:23.026174-07:00,1006.5731201171875,10.930145,10930.145 +10207,2025-06-11T06:56:33.948127-07:00,1006.5731201171875,10.921953,10921.953 +10208,2025-06-11T06:56:44.870458-07:00,1006.553466796875,10.922331,10922.331 +10209,2025-06-11T06:56:55.796063-07:00,1006.5648193359375,10.925605,10925.605 +10210,2025-06-11T06:57:06.708916-07:00,1006.5617065429688,10.912853,10912.853 +10211,2025-06-11T06:57:17.632561-07:00,1006.5714111328125,10.923645,10923.645 +10212,2025-06-11T06:57:28.555042-07:00,1006.5371704101562,10.922481,10922.481 +10213,2025-06-11T06:57:39.485003-07:00,1006.5516967773438,10.929961,10929.961 +10214,2025-06-11T06:57:50.404373-07:00,1006.5714111328125,10.91937,10919.37 +10215,2025-06-11T06:58:01.323363-07:00,1006.5814208984375,10.91899,10918.99 +10216,2025-06-11T06:58:12.256721-07:00,1006.570068359375,10.933358,10933.358 +10217,2025-06-11T06:58:23.175025-07:00,1006.561767578125,10.918304,10918.304 +10218,2025-06-11T06:58:34.087880-07:00,1006.57666015625,10.912855,10912.855 +10219,2025-06-11T06:58:45.016172-07:00,1006.5535278320312,10.928292,10928.292 +10220,2025-06-11T06:58:55.926306-07:00,1006.5845947265625,10.910134,10910.134 +10221,2025-06-11T06:59:06.849340-07:00,1006.570068359375,10.923034,10923.034 +10222,2025-06-11T06:59:17.767429-07:00,1006.6126708984375,10.918089,10918.089 +10223,2025-06-11T06:59:28.694497-07:00,1006.58642578125,10.927068,10927.068 +10224,2025-06-11T06:59:39.623033-07:00,1006.5684204101562,10.928536,10928.536 +10225,2025-06-11T06:59:50.547021-07:00,1006.58984375,10.923988,10923.988 +10226,2025-06-11T07:00:01.468222-07:00,1006.58984375,10.921201,10921.201 +10227,2025-06-11T07:00:12.404067-07:00,1006.5684204101562,10.935845,10935.845 +10228,2025-06-11T07:00:23.332422-07:00,1006.5684204101562,10.928355,10928.355 +10229,2025-06-11T07:00:34.259230-07:00,1006.58154296875,10.926808,10926.808 +10230,2025-06-11T07:00:45.180067-07:00,1006.570068359375,10.920837,10920.837 +10231,2025-06-11T07:00:56.101457-07:00,1006.596435546875,10.92139,10921.39 +10232,2025-06-11T07:01:07.029043-07:00,1006.58984375,10.927586,10927.586 +10233,2025-06-11T07:01:17.961336-07:00,1006.545654296875,10.932293,10932.293 +10234,2025-06-11T07:01:28.887035-07:00,1006.5634155273438,10.925699,10925.699 +10235,2025-06-11T07:01:39.810037-07:00,1006.5354614257812,10.923002,10923.002 +10236,2025-06-11T07:01:50.733313-07:00,1006.570068359375,10.923276,10923.276 +10237,2025-06-11T07:02:01.650040-07:00,1006.548583984375,10.916727,10916.727 +10238,2025-06-11T07:02:12.577032-07:00,1006.5648193359375,10.926992,10926.992 +10239,2025-06-11T07:02:23.491290-07:00,1006.5845947265625,10.914258,10914.258 +10240,2025-06-11T07:02:34.419027-07:00,1006.5354614257812,10.927737,10927.737 +10241,2025-06-11T07:02:45.354014-07:00,1006.5420532226562,10.934987,10934.987 +10242,2025-06-11T07:02:56.277045-07:00,1006.5306396484375,10.923031,10923.031 +10243,2025-06-11T07:03:07.204037-07:00,1006.570068359375,10.926992,10926.992 +10244,2025-06-11T07:03:18.134696-07:00,1006.5516967773438,10.930659,10930.659 +10245,2025-06-11T07:03:29.059295-07:00,1006.5371704101562,10.924599,10924.599 +10246,2025-06-11T07:03:39.990347-07:00,1006.5335693359375,10.931052,10931.052 +10247,2025-06-11T07:03:50.918270-07:00,1006.5091552734375,10.927923,10927.923 +10248,2025-06-11T07:04:01.847408-07:00,1006.5371704101562,10.929138,10929.138 +10249,2025-06-11T07:04:12.764087-07:00,1006.545166015625,10.916679,10916.679 +10250,2025-06-11T07:04:23.695155-07:00,1006.5354614257812,10.931068,10931.068 +10251,2025-06-11T07:04:34.618308-07:00,1006.5648193359375,10.923153,10923.153 +10252,2025-06-11T07:04:45.540046-07:00,1006.5371704101562,10.921738,10921.738 +10253,2025-06-11T07:04:56.455041-07:00,1006.553466796875,10.914995,10914.995 +10254,2025-06-11T07:05:07.384977-07:00,1006.5354614257812,10.929936,10929.936 +10255,2025-06-11T07:05:18.301745-07:00,1006.5516967773438,10.916768,10916.768 +10256,2025-06-11T07:05:29.235280-07:00,1006.5665893554688,10.933535,10933.535 +10257,2025-06-11T07:05:40.159238-07:00,1006.5582885742188,10.923958,10923.958 +10258,2025-06-11T07:05:51.082028-07:00,1006.5599975585938,10.92279,10922.79 +10259,2025-06-11T07:06:02.009087-07:00,1006.5437622070312,10.927059,10927.059 +10260,2025-06-11T07:06:12.927530-07:00,1006.5354614257812,10.918443,10918.443 +10261,2025-06-11T07:06:23.854295-07:00,1006.5552368164062,10.926765,10926.765 +10262,2025-06-11T07:06:34.780095-07:00,1006.5371704101562,10.9258,10925.8 +10263,2025-06-11T07:06:45.702385-07:00,1006.5354614257812,10.92229,10922.29 +10264,2025-06-11T07:06:56.617297-07:00,1006.5271606445312,10.914912,10914.912 +10265,2025-06-11T07:07:07.536042-07:00,1006.5354614257812,10.918745,10918.745 +10266,2025-06-11T07:07:18.452043-07:00,1006.55029296875,10.916001,10916.001 +10267,2025-06-11T07:07:29.370543-07:00,1006.5271606445312,10.9185,10918.5 +10268,2025-06-11T07:07:40.288093-07:00,1006.5420532226562,10.91755,10917.55 +10269,2025-06-11T07:07:51.211032-07:00,1006.5271606445312,10.922939,10922.939 +10270,2025-06-11T07:08:02.137616-07:00,1006.5684204101562,10.926584,10926.584 +10271,2025-06-11T07:08:13.058185-07:00,1006.5354614257812,10.920569,10920.569 +10272,2025-06-11T07:08:23.977040-07:00,1006.561767578125,10.918855,10918.855 +10273,2025-06-11T07:08:34.903592-07:00,1006.5307006835938,10.926552,10926.552 +10274,2025-06-11T07:08:45.820070-07:00,1006.5521850585938,10.916478,10916.478 +10275,2025-06-11T07:08:56.748201-07:00,1006.5552368164062,10.928131,10928.131 +10276,2025-06-11T07:09:07.665537-07:00,1006.5733032226562,10.917336,10917.336 +10277,2025-06-11T07:09:18.588437-07:00,1006.5733032226562,10.9229,10922.9 +10278,2025-06-11T07:09:29.511305-07:00,1006.5667114257812,10.922868,10922.868 +10279,2025-06-11T07:09:40.438884-07:00,1006.545654296875,10.927579,10927.579 +10280,2025-06-11T07:09:51.361938-07:00,1006.5601806640625,10.923054,10923.054 +10281,2025-06-11T07:10:02.284076-07:00,1006.5535278320312,10.922138,10922.138 +10282,2025-06-11T07:10:13.204675-07:00,1006.5535278320312,10.920599,10920.599 +10283,2025-06-11T07:10:24.124464-07:00,1006.5733032226562,10.919789,10919.789 +10284,2025-06-11T07:10:35.054030-07:00,1006.540283203125,10.929566,10929.566 +10285,2025-06-11T07:10:45.976694-07:00,1006.545654296875,10.922664,10922.664 +10286,2025-06-11T07:10:56.905049-07:00,1006.5601806640625,10.928355,10928.355 +10287,2025-06-11T07:11:07.825028-07:00,1006.5601806640625,10.919979,10919.979 +10288,2025-06-11T07:11:18.750242-07:00,1006.5469360351562,10.925214,10925.214 +10289,2025-06-11T07:11:29.673760-07:00,1006.5521850585938,10.923518,10923.518 +10290,2025-06-11T07:11:40.591032-07:00,1006.537353515625,10.917272,10917.272 +10291,2025-06-11T07:11:51.520405-07:00,1006.6029663085938,10.929373,10929.373 +10292,2025-06-11T07:12:02.443104-07:00,1006.5750122070312,10.922699,10922.699 +10293,2025-06-11T07:12:13.364197-07:00,1006.5601806640625,10.921093,10921.093 +10294,2025-06-11T07:12:24.276464-07:00,1006.5929565429688,10.912267,10912.267 +10295,2025-06-11T07:12:35.201689-07:00,1006.561767578125,10.925225,10925.225 +10296,2025-06-11T07:12:46.117030-07:00,1006.58154296875,10.915341,10915.341 +10297,2025-06-11T07:12:57.033297-07:00,1006.5718994140625,10.916267,10916.267 +10298,2025-06-11T07:13:07.953022-07:00,1006.5653076171875,10.919725,10919.725 +10299,2025-06-11T07:13:18.868353-07:00,1006.5521850585938,10.915331,10915.331 +10300,2025-06-11T07:13:29.791033-07:00,1006.5390014648438,10.92268,10922.68 +10301,2025-06-11T07:13:40.701356-07:00,1006.5570068359375,10.910323,10910.323 +10302,2025-06-11T07:13:51.619042-07:00,1006.5767822265625,10.917686,10917.686 +10303,2025-06-11T07:14:02.548380-07:00,1006.5570068359375,10.929338,10929.338 +10304,2025-06-11T07:14:13.470268-07:00,1006.5487670898438,10.921888,10921.888 +10305,2025-06-11T07:14:24.385047-07:00,1006.5438842773438,10.914779,10914.779 +10306,2025-06-11T07:14:35.311925-07:00,1006.5223999023438,10.926878,10926.878 +10307,2025-06-11T07:14:46.229203-07:00,1006.545654296875,10.917278,10917.278 +10308,2025-06-11T07:14:57.147037-07:00,1006.5438842773438,10.917834,10917.834 +10309,2025-06-11T07:15:08.060024-07:00,1006.5504760742188,10.912987,10912.987 +10310,2025-06-11T07:15:18.982426-07:00,1006.529052734375,10.922402,10922.402 +10311,2025-06-11T07:15:29.900660-07:00,1006.53564453125,10.918234,10918.234 +10312,2025-06-11T07:15:40.827043-07:00,1006.524169921875,10.926383,10926.383 +10313,2025-06-11T07:15:51.749600-07:00,1006.4829711914062,10.922557,10922.557 +10314,2025-06-11T07:16:02.667659-07:00,1006.5092163085938,10.918059,10918.059 +10315,2025-06-11T07:16:13.584043-07:00,1006.502685546875,10.916384,10916.384 +10316,2025-06-11T07:16:24.512065-07:00,1006.5307006835938,10.928022,10928.022 +10317,2025-06-11T07:16:35.435714-07:00,1006.4829711914062,10.923649,10923.649 +10318,2025-06-11T07:16:46.354042-07:00,1006.4667358398438,10.918328,10918.328 +10319,2025-06-11T07:16:57.269131-07:00,1006.5092163085938,10.915089,10915.089 +10320,2025-06-11T07:17:08.198778-07:00,1006.529052734375,10.929647,10929.647 +10321,2025-06-11T07:17:19.115039-07:00,1006.524169921875,10.916261,10916.261 +10322,2025-06-11T07:17:30.044039-07:00,1006.5307006835938,10.929,10929.0 +10323,2025-06-11T07:17:40.959827-07:00,1006.5211181640625,10.915788,10915.788 +10324,2025-06-11T07:17:51.885045-07:00,1006.5307006835938,10.925218,10925.218 +10325,2025-06-11T07:18:02.807047-07:00,1006.5111083984375,10.922002,10922.002 +10326,2025-06-11T07:18:13.740423-07:00,1006.5390625,10.933376,10933.376 +10327,2025-06-11T07:18:24.668068-07:00,1006.540771484375,10.927645,10927.645 +10328,2025-06-11T07:18:35.595613-07:00,1006.54736328125,10.927545,10927.545 +10329,2025-06-11T07:18:46.525516-07:00,1006.5618896484375,10.929903,10929.903 +10330,2025-06-11T07:18:57.441047-07:00,1006.560546875,10.915531,10915.531 +10331,2025-06-11T07:19:08.367367-07:00,1006.5570068359375,10.92632,10926.32 +10332,2025-06-11T07:19:19.289031-07:00,1006.5552978515625,10.921664,10921.664 +10333,2025-06-11T07:19:30.220026-07:00,1006.5390625,10.930995,10930.995 +10334,2025-06-11T07:19:41.146811-07:00,1006.55224609375,10.926785,10926.785 +10335,2025-06-11T07:19:52.069074-07:00,1006.5487670898438,10.922263,10922.263 +10336,2025-06-11T07:20:02.998519-07:00,1006.5078735351562,10.929445,10929.445 +10337,2025-06-11T07:20:13.920039-07:00,1006.5487670898438,10.92152,10921.52 +10338,2025-06-11T07:20:24.847032-07:00,1006.5421752929688,10.926993,10926.993 +10339,2025-06-11T07:20:35.762025-07:00,1006.53564453125,10.914993,10914.993 +10340,2025-06-11T07:20:46.697488-07:00,1006.553955078125,10.935463,10935.463 +10341,2025-06-11T07:20:57.619075-07:00,1006.5193481445312,10.921587,10921.587 +10342,2025-06-11T07:21:08.544911-07:00,1006.4996337890625,10.925836,10925.836 +10343,2025-06-11T07:21:19.465088-07:00,1006.4765014648438,10.920177,10920.177 +10344,2025-06-11T07:21:30.393680-07:00,1006.5013427734375,10.928592,10928.592 +10345,2025-06-11T07:21:41.319047-07:00,1006.5223999023438,10.925367,10925.367 +10346,2025-06-11T07:21:52.242195-07:00,1006.5211181640625,10.923148,10923.148 +10347,2025-06-11T07:22:03.162640-07:00,1006.5259399414062,10.920445,10920.445 +10348,2025-06-11T07:22:14.088274-07:00,1006.5850830078125,10.925634,10925.634 +10349,2025-06-11T07:22:25.019043-07:00,1006.53564453125,10.930769,10930.769 +10350,2025-06-11T07:22:35.947293-07:00,1006.5223999023438,10.92825,10928.25 +10351,2025-06-11T07:22:46.871057-07:00,1006.5223999023438,10.923764,10923.764 +10352,2025-06-11T07:22:57.803482-07:00,1006.5175170898438,10.932425,10932.425 +10353,2025-06-11T07:23:08.723036-07:00,1006.5342407226562,10.919554,10919.554 +10354,2025-06-11T07:23:19.649075-07:00,1006.5223999023438,10.926039,10926.039 +10355,2025-06-11T07:23:30.567940-07:00,1006.5521850585938,10.918865,10918.865 +10356,2025-06-11T07:23:41.495042-07:00,1006.5145263671875,10.927102,10927.102 +10357,2025-06-11T07:23:52.418184-07:00,1006.5307006835938,10.923142,10923.142 +10358,2025-06-11T07:24:03.340651-07:00,1006.5438842773438,10.922467,10922.467 +10359,2025-06-11T07:24:14.269298-07:00,1006.5211181640625,10.928647,10928.647 +10360,2025-06-11T07:24:25.191473-07:00,1006.5487670898438,10.922175,10922.175 +10361,2025-06-11T07:24:36.110678-07:00,1006.5111083984375,10.919205,10919.205 +10362,2025-06-11T07:24:47.033042-07:00,1006.5259399414062,10.922364,10922.364 +10363,2025-06-11T07:24:57.949040-07:00,1006.5291137695312,10.915998,10915.998 +10364,2025-06-11T07:25:08.876717-07:00,1006.5374145507812,10.927677,10927.677 +10365,2025-06-11T07:25:19.797043-07:00,1006.540771484375,10.920326,10920.326 +10366,2025-06-11T07:25:30.714139-07:00,1006.5308837890625,10.917096,10917.096 +10367,2025-06-11T07:25:41.642507-07:00,1006.55224609375,10.928368,10928.368 +10368,2025-06-11T07:25:52.564096-07:00,1006.5357666015625,10.921589,10921.589 +10369,2025-06-11T07:26:03.481045-07:00,1006.5505981445312,10.916949,10916.949 +10370,2025-06-11T07:26:14.404657-07:00,1006.5868530273438,10.923612,10923.612 +10371,2025-06-11T07:26:25.322327-07:00,1006.5868530273438,10.91767,10917.67 +10372,2025-06-11T07:26:36.252019-07:00,1006.57861328125,10.929692,10929.692 +10373,2025-06-11T07:26:47.174023-07:00,1006.572021484375,10.922004,10922.004 +10374,2025-06-11T07:26:58.102042-07:00,1006.6593017578125,10.928019,10928.019 +10375,2025-06-11T07:27:09.024043-07:00,1006.568603515625,10.922001,10922.001 +10376,2025-06-11T07:27:19.948075-07:00,1006.58349609375,10.924032,10924.032 +10377,2025-06-11T07:27:30.867045-07:00,1006.57861328125,10.91897,10918.97 +10378,2025-06-11T07:27:41.789356-07:00,1006.5917358398438,10.922311,10922.311 +10379,2025-06-11T07:27:52.717006-07:00,1006.58349609375,10.92765,10927.65 +10380,2025-06-11T07:28:03.635269-07:00,1006.5554809570312,10.918263,10918.263 +10381,2025-06-11T07:28:14.562241-07:00,1006.5588989257812,10.926972,10926.972 +10382,2025-06-11T07:28:25.484719-07:00,1006.5505981445312,10.922478,10922.478 +10383,2025-06-11T07:28:36.401584-07:00,1006.590087890625,10.916865,10916.865 +10384,2025-06-11T07:28:47.325127-07:00,1006.5474853515625,10.923543,10923.543 +10385,2025-06-11T07:28:58.248783-07:00,1006.581787109375,10.923656,10923.656 +10386,2025-06-11T07:29:09.173042-07:00,1006.568603515625,10.924259,10924.259 +10387,2025-06-11T07:29:20.096190-07:00,1006.5571899414062,10.923148,10923.148 +10388,2025-06-11T07:29:31.042766-07:00,1006.5654907226562,10.946576,10946.576 +10389,2025-06-11T07:29:41.966571-07:00,1006.57861328125,10.923805,10923.805 +10390,2025-06-11T07:29:52.892321-07:00,1006.5554809570312,10.92575,10925.75 +10391,2025-06-11T07:30:03.806657-07:00,1006.5934448242188,10.914336,10914.336 +10392,2025-06-11T07:30:14.735089-07:00,1006.5457153320312,10.928432,10928.432 +10393,2025-06-11T07:30:25.657267-07:00,1006.5671997070312,10.922178,10922.178 +10394,2025-06-11T07:30:36.580787-07:00,1006.581787109375,10.92352,10923.52 +10395,2025-06-11T07:30:47.501179-07:00,1006.563720703125,10.920392,10920.392 +10396,2025-06-11T07:30:58.426127-07:00,1006.6066284179688,10.924948,10924.948 +10397,2025-06-11T07:31:09.342606-07:00,1006.5851440429688,10.916479,10916.479 +10398,2025-06-11T07:31:20.270129-07:00,1006.6181030273438,10.927523,10927.523 +10399,2025-06-11T07:31:31.188097-07:00,1006.611572265625,10.917968,10917.968 +10400,2025-06-11T07:31:42.116782-07:00,1006.57861328125,10.928685,10928.685 +10401,2025-06-11T07:31:53.036089-07:00,1006.6066284179688,10.919307,10919.307 +10402,2025-06-11T07:32:03.964150-07:00,1006.5571899414062,10.928061,10928.061 +10403,2025-06-11T07:32:14.886547-07:00,1006.598388671875,10.922397,10922.397 +10404,2025-06-11T07:32:25.810094-07:00,1006.598388671875,10.923547,10923.547 +10405,2025-06-11T07:32:36.725175-07:00,1006.5934448242188,10.915081,10915.081 +10406,2025-06-11T07:32:47.651556-07:00,1006.576904296875,10.926381,10926.381 +10407,2025-06-11T07:32:58.576342-07:00,1006.580322265625,10.924786,10924.786 +10408,2025-06-11T07:33:09.489101-07:00,1006.568603515625,10.912759,10912.759 +10409,2025-06-11T07:33:20.424351-07:00,1006.57861328125,10.93525,10935.25 +10410,2025-06-11T07:33:31.341889-07:00,1006.572021484375,10.917538,10917.538 +10411,2025-06-11T07:33:42.269510-07:00,1006.57861328125,10.927621,10927.621 +10412,2025-06-11T07:33:53.192508-07:00,1006.563720703125,10.922998,10922.998 +10413,2025-06-11T07:34:04.113090-07:00,1006.5851440429688,10.920582,10920.582 +10414,2025-06-11T07:34:15.037825-07:00,1006.563720703125,10.924735,10924.735 +10415,2025-06-11T07:34:25.967156-07:00,1006.5703125,10.929331,10929.331 +10416,2025-06-11T07:34:36.892090-07:00,1006.5588989257812,10.924934,10924.934 +10417,2025-06-11T07:34:47.810440-07:00,1006.5703125,10.91835,10918.35 +10418,2025-06-11T07:34:58.729440-07:00,1006.5917358398438,10.919,10919.0 +10419,2025-06-11T07:35:09.652314-07:00,1006.598388671875,10.922874,10922.874 +10420,2025-06-11T07:35:20.582440-07:00,1006.576904296875,10.930126,10930.126 +10421,2025-06-11T07:35:31.506591-07:00,1006.5672607421875,10.924151,10924.151 +10422,2025-06-11T07:35:42.427090-07:00,1006.5554809570312,10.920499,10920.499 +10423,2025-06-11T07:35:53.350896-07:00,1006.568603515625,10.923806,10923.806 +10424,2025-06-11T07:36:04.278450-07:00,1006.5540771484375,10.927554,10927.554 +10425,2025-06-11T07:36:15.198339-07:00,1006.5505981445312,10.919889,10919.889 +10426,2025-06-11T07:36:26.122416-07:00,1006.5409545898438,10.924077,10924.077 +10427,2025-06-11T07:36:37.051092-07:00,1006.5554809570312,10.928676,10928.676 +10428,2025-06-11T07:36:47.967353-07:00,1006.5423583984375,10.916261,10916.261 +10429,2025-06-11T07:36:58.899090-07:00,1006.526123046875,10.931737,10931.737 +10430,2025-06-11T07:37:09.827369-07:00,1006.52783203125,10.928279,10928.279 +10431,2025-06-11T07:37:20.743084-07:00,1006.5488891601562,10.915715,10915.715 +10432,2025-06-11T07:37:31.669120-07:00,1006.5457153320312,10.926036,10926.036 +10433,2025-06-11T07:37:42.588360-07:00,1006.5225830078125,10.91924,10919.24 +10434,2025-06-11T07:37:53.510088-07:00,1006.5145874023438,10.921728,10921.728 +10435,2025-06-11T07:38:04.430385-07:00,1006.5176391601562,10.920297,10920.297 +10436,2025-06-11T07:38:15.353849-07:00,1006.5225830078125,10.923464,10923.464 +10437,2025-06-11T07:38:26.274103-07:00,1006.52783203125,10.920254,10920.254 +10438,2025-06-11T07:38:37.198390-07:00,1006.4962768554688,10.924287,10924.287 +10439,2025-06-11T07:38:48.120344-07:00,1006.5225830078125,10.921954,10921.954 +10440,2025-06-11T07:38:59.030338-07:00,1006.5145874023438,10.909994,10909.994 +10441,2025-06-11T07:39:09.957125-07:00,1006.5159301757812,10.926787,10926.787 +10442,2025-06-11T07:39:20.876568-07:00,1006.5291137695312,10.919443,10919.443 +10443,2025-06-11T07:39:31.798103-07:00,1006.5343627929688,10.921535,10921.535 +10444,2025-06-11T07:39:42.719103-07:00,1006.5488891601562,10.921,10921.0 +10445,2025-06-11T07:39:53.642539-07:00,1006.5540771484375,10.923436,10923.436 +10446,2025-06-11T07:40:04.564383-07:00,1006.5357666015625,10.921844,10921.844 +10447,2025-06-11T07:40:15.490097-07:00,1006.5540771484375,10.925714,10925.714 +10448,2025-06-11T07:40:26.411561-07:00,1006.5409545898438,10.921464,10921.464 +10449,2025-06-11T07:40:37.328103-07:00,1006.581787109375,10.916542,10916.542 +10450,2025-06-11T07:40:48.244100-07:00,1006.5326538085938,10.915997,10915.997 +10451,2025-06-11T07:40:59.156153-07:00,1006.5540771484375,10.912053,10912.053 +10452,2025-06-11T07:41:10.080662-07:00,1006.56201171875,10.924509,10924.509 +10453,2025-06-11T07:41:21.006571-07:00,1006.581787109375,10.925909,10925.909 +10454,2025-06-11T07:41:31.931095-07:00,1006.5739135742188,10.924524,10924.524 +10455,2025-06-11T07:41:42.849740-07:00,1006.5639038085938,10.918645,10918.645 +10456,2025-06-11T07:41:53.774099-07:00,1006.557373046875,10.924359,10924.359 +10457,2025-06-11T07:42:04.693105-07:00,1006.5656127929688,10.919006,10919.006 +10458,2025-06-11T07:42:15.618403-07:00,1006.5507202148438,10.925298,10925.298 +10459,2025-06-11T07:42:26.546760-07:00,1006.5589599609375,10.928357,10928.357 +10460,2025-06-11T07:42:37.467094-07:00,1006.5589599609375,10.920334,10920.334 +10461,2025-06-11T07:42:48.391367-07:00,1006.5804443359375,10.924273,10924.273 +10462,2025-06-11T07:42:59.310085-07:00,1006.568603515625,10.918718,10918.718 +10463,2025-06-11T07:43:10.235334-07:00,1006.5739135742188,10.925249,10925.249 +10464,2025-06-11T07:43:21.157383-07:00,1006.5540771484375,10.922049,10922.049 +10465,2025-06-11T07:43:32.089445-07:00,1006.5524291992188,10.932062,10932.062 +10466,2025-06-11T07:43:43.015924-07:00,1006.5427856445312,10.926479,10926.479 +10467,2025-06-11T07:43:53.937103-07:00,1006.5870361328125,10.921179,10921.179 +10468,2025-06-11T07:44:04.862109-07:00,1006.6278686523438,10.925006,10925.006 +10469,2025-06-11T07:44:15.784599-07:00,1006.5935668945312,10.92249,10922.49 +10470,2025-06-11T07:44:26.708105-07:00,1006.5836181640625,10.923506,10923.506 +10471,2025-06-11T07:44:37.629088-07:00,1006.5901489257812,10.920983,10920.983 +10472,2025-06-11T07:44:48.551932-07:00,1006.63623046875,10.922844,10922.844 +10473,2025-06-11T07:44:59.466377-07:00,1006.6151733398438,10.914445,10914.445 +10474,2025-06-11T07:45:10.394108-07:00,1006.6165771484375,10.927731,10927.731 +10475,2025-06-11T07:45:21.323785-07:00,1006.6085815429688,10.929677,10929.677 +10476,2025-06-11T07:45:32.239987-07:00,1006.6151733398438,10.916202,10916.202 +10477,2025-06-11T07:45:43.163105-07:00,1006.6151733398438,10.923118,10923.118 +10478,2025-06-11T07:45:54.092436-07:00,1006.6199951171875,10.929331,10929.331 +10479,2025-06-11T07:46:05.010183-07:00,1006.6464233398438,10.917747,10917.747 +10480,2025-06-11T07:46:15.936109-07:00,1006.6134643554688,10.925926,10925.926 +10481,2025-06-11T07:46:26.857837-07:00,1006.6626586914062,10.921728,10921.728 +10482,2025-06-11T07:46:37.784082-07:00,1006.6481323242188,10.926245,10926.245 +10483,2025-06-11T07:46:48.706082-07:00,1006.6743774414062,10.922,10922.0 +10484,2025-06-11T07:46:59.628192-07:00,1006.6858520507812,10.92211,10922.11 +10485,2025-06-11T07:47:10.552099-07:00,1006.7073364257812,10.923907,10923.907 +10486,2025-06-11T07:47:21.472124-07:00,1006.6612548828125,10.920025,10920.025 +10487,2025-06-11T07:47:32.397375-07:00,1006.6889038085938,10.925251,10925.251 +10488,2025-06-11T07:47:43.316363-07:00,1006.6612548828125,10.918988,10918.988 +10489,2025-06-11T07:47:54.245134-07:00,1006.6595458984375,10.928771,10928.771 +10490,2025-06-11T07:48:05.158245-07:00,1006.6743774414062,10.913111,10913.111 +10491,2025-06-11T07:48:16.089364-07:00,1006.6954956054688,10.931119,10931.119 +10492,2025-06-11T07:48:27.006402-07:00,1006.6626586914062,10.917038,10917.038 +10493,2025-06-11T07:48:37.934379-07:00,1006.6217041015625,10.927977,10927.977 +10494,2025-06-11T07:48:48.854378-07:00,1006.664306640625,10.919999,10919.999 +10495,2025-06-11T07:48:59.774103-07:00,1006.67919921875,10.919725,10919.725 +10496,2025-06-11T07:49:10.697253-07:00,1006.637939453125,10.92315,10923.15 +10497,2025-06-11T07:49:21.611436-07:00,1006.65771484375,10.914183,10914.183 +10498,2025-06-11T07:49:32.528518-07:00,1006.685791015625,10.917082,10917.082 +10499,2025-06-11T07:49:43.443150-07:00,1006.651123046875,10.914632,10914.632 +10500,2025-06-11T07:49:54.360101-07:00,1006.64453125,10.916951,10916.951 +10501,2025-06-11T07:50:05.283970-07:00,1006.6476440429688,10.923869,10923.869 +10502,2025-06-11T07:50:16.195416-07:00,1006.65283203125,10.911446,10911.446 +10503,2025-06-11T07:50:27.117222-07:00,1006.6738891601562,10.921806,10921.806 +10504,2025-06-11T07:50:38.045309-07:00,1006.6738891601562,10.928087,10928.087 +10505,2025-06-11T07:50:48.970100-07:00,1006.6476440429688,10.924791,10924.791 +10506,2025-06-11T07:50:59.894092-07:00,1006.7068481445312,10.923992,10923.992 +10507,2025-06-11T07:51:10.820899-07:00,1006.6690673828125,10.926807,10926.807 +10508,2025-06-11T07:51:21.750107-07:00,1006.6821899414062,10.929208,10929.208 +10509,2025-06-11T07:51:32.674392-07:00,1006.6888427734375,10.924285,10924.285 +10510,2025-06-11T07:51:43.596595-07:00,1006.736572265625,10.922203,10922.203 +10511,2025-06-11T07:51:54.524086-07:00,1006.7086181640625,10.927491,10927.491 +10512,2025-06-11T07:52:05.441390-07:00,1006.7086181640625,10.917304,10917.304 +10513,2025-06-11T07:52:16.375160-07:00,1006.7431030273438,10.93377,10933.77 +10514,2025-06-11T07:52:27.302107-07:00,1006.779296875,10.926947,10926.947 +10515,2025-06-11T07:52:38.233579-07:00,1006.75634765625,10.931472,10931.472 +10516,2025-06-11T07:52:49.155094-07:00,1006.799072265625,10.921515,10921.515 +10517,2025-06-11T07:53:00.078097-07:00,1006.76123046875,10.923003,10923.003 +10518,2025-06-11T07:53:11.005767-07:00,1006.7463989257812,10.92767,10927.67 +10519,2025-06-11T07:53:21.939178-07:00,1006.785888671875,10.933411,10933.411 +10520,2025-06-11T07:53:32.866580-07:00,1006.7529907226562,10.927402,10927.402 +10521,2025-06-11T07:53:43.791108-07:00,1006.748046875,10.924528,10924.528 +10522,2025-06-11T07:53:54.711147-07:00,1006.7726440429688,10.920039,10920.039 +10523,2025-06-11T07:54:05.644095-07:00,1006.779296875,10.932948,10932.948 +10524,2025-06-11T07:54:16.563353-07:00,1006.8121948242188,10.919258,10919.258 +10525,2025-06-11T07:54:27.490445-07:00,1006.80419921875,10.927092,10927.092 +10526,2025-06-11T07:54:38.421199-07:00,1006.8319702148438,10.930754,10930.754 +10527,2025-06-11T07:54:49.347496-07:00,1006.8139038085938,10.926297,10926.297 +10528,2025-06-11T07:55:00.278108-07:00,1006.8270263671875,10.930612,10930.612 +10529,2025-06-11T07:55:11.203133-07:00,1006.8648681640625,10.925025,10925.025 +10530,2025-06-11T07:55:22.122366-07:00,1006.8451538085938,10.919233,10919.233 +10531,2025-06-11T07:55:33.050336-07:00,1006.8451538085938,10.92797,10927.97 +10532,2025-06-11T07:55:43.979416-07:00,1006.8534545898438,10.92908,10929.08 +10533,2025-06-11T07:55:54.907111-07:00,1006.7893676757812,10.927695,10927.695 +10534,2025-06-11T07:56:05.831282-07:00,1006.8173217773438,10.924171,10924.171 +10535,2025-06-11T07:56:16.765090-07:00,1006.8385009765625,10.933808,10933.808 +10536,2025-06-11T07:56:27.686359-07:00,1006.785888671875,10.921269,10921.269 +10537,2025-06-11T07:56:38.620713-07:00,1006.7809448242188,10.934354,10934.354 +10538,2025-06-11T07:56:49.553349-07:00,1006.7845458984375,10.932636,10932.636 +10539,2025-06-11T07:57:00.474701-07:00,1006.7845458984375,10.921352,10921.352 +10540,2025-06-11T07:57:11.406090-07:00,1006.7318725585938,10.931389,10931.389 +10541,2025-06-11T07:57:22.336418-07:00,1006.7647094726562,10.930328,10930.328 +10542,2025-06-11T07:57:33.271474-07:00,1006.73974609375,10.935056,10935.056 +10543,2025-06-11T07:57:44.194141-07:00,1006.799072265625,10.922667,10922.667 +10544,2025-06-11T07:57:55.115486-07:00,1006.8007202148438,10.921345,10921.345 +10545,2025-06-11T07:58:06.038621-07:00,1006.785888671875,10.923135,10923.135 +10546,2025-06-11T07:58:16.973398-07:00,1006.8270263671875,10.934777,10934.777 +10547,2025-06-11T07:58:27.901109-07:00,1006.8056030273438,10.927711,10927.711 +10548,2025-06-11T07:58:38.829029-07:00,1006.8056030273438,10.92792,10927.92 +10549,2025-06-11T07:58:49.763098-07:00,1006.8253173828125,10.934069,10934.069 +10550,2025-06-11T07:59:00.684258-07:00,1006.7726440429688,10.92116,10921.16 +10551,2025-06-11T07:59:11.616107-07:00,1006.7941284179688,10.931849,10931.849 +10552,2025-06-11T07:59:22.549095-07:00,1006.7826538085938,10.932988,10932.988 +10553,2025-06-11T07:59:33.474105-07:00,1006.7826538085938,10.92501,10925.01 +10554,2025-06-11T07:59:44.401107-07:00,1006.7941284179688,10.927002,10927.002 +10555,2025-06-11T07:59:55.324562-07:00,1006.8187255859375,10.923455,10923.455 +10556,2025-06-11T08:00:06.256099-07:00,1006.8121948242188,10.931537,10931.537 +10557,2025-06-11T08:00:17.182107-07:00,1006.7893676757812,10.926008,10926.008 +10558,2025-06-11T08:00:28.109484-07:00,1006.779296875,10.927377,10927.377 +10559,2025-06-11T08:00:39.044101-07:00,1006.8468017578125,10.934617,10934.617 +10560,2025-06-11T08:00:49.971337-07:00,1006.785888671875,10.927236,10927.236 +10561,2025-06-11T08:01:00.895107-07:00,1006.8024291992188,10.92377,10923.77 +10562,2025-06-11T08:01:11.830792-07:00,1006.8121948242188,10.935685,10935.685 +10563,2025-06-11T08:01:22.751256-07:00,1006.79248046875,10.920464,10920.464 +10564,2025-06-11T08:01:33.682416-07:00,1006.7976684570312,10.93116,10931.16 +10565,2025-06-11T08:01:44.615076-07:00,1006.8204956054688,10.93266,10932.66 +10566,2025-06-11T08:01:55.542882-07:00,1006.759521484375,10.927806,10927.806 +10567,2025-06-11T08:02:06.465107-07:00,1006.75634765625,10.922225,10922.225 +10568,2025-06-11T08:02:17.395103-07:00,1006.759521484375,10.929996,10929.996 +10569,2025-06-11T08:02:28.317279-07:00,1006.762939453125,10.922176,10922.176 +10570,2025-06-11T08:02:39.248450-07:00,1006.7957763671875,10.931171,10931.171 +10571,2025-06-11T08:02:50.170123-07:00,1006.7910766601562,10.921673,10921.673 +10572,2025-06-11T08:03:01.090581-07:00,1006.7809448242188,10.920458,10920.458 +10573,2025-06-11T08:03:12.012595-07:00,1006.73974609375,10.922014,10922.014 +10574,2025-06-11T08:03:22.932479-07:00,1006.7546997070312,10.919884,10919.884 +10575,2025-06-11T08:03:33.855881-07:00,1006.736572265625,10.923402,10923.402 +10576,2025-06-11T08:03:44.780540-07:00,1006.8024291992188,10.924659,10924.659 +10577,2025-06-11T08:03:55.707209-07:00,1006.7431030273438,10.926669,10926.669 +10578,2025-06-11T08:04:06.637306-07:00,1006.7909545898438,10.930097,10930.097 +10579,2025-06-11T08:04:17.555266-07:00,1006.76953125,10.91796,10917.96 +10580,2025-06-11T08:04:28.483450-07:00,1006.762939453125,10.928184,10928.184 +10581,2025-06-11T08:04:39.405094-07:00,1006.75634765625,10.921644,10921.644 +10582,2025-06-11T08:04:50.319132-07:00,1006.8071899414062,10.914038,10914.038 +10583,2025-06-11T08:05:01.242103-07:00,1006.758056640625,10.922971,10922.971 +10584,2025-06-11T08:05:12.166481-07:00,1006.7528076171875,10.924378,10924.378 +10585,2025-06-11T08:05:23.093076-07:00,1006.7874145507812,10.926595,10926.595 +10586,2025-06-11T08:05:34.017319-07:00,1006.8071899414062,10.924243,10924.243 +10587,2025-06-11T08:05:44.954356-07:00,1006.7676391601562,10.937037,10937.037 +10588,2025-06-11T08:05:55.873088-07:00,1006.7904663085938,10.918732,10918.732 +10589,2025-06-11T08:06:06.799115-07:00,1006.782470703125,10.926027,10926.027 +10590,2025-06-11T08:06:17.725214-07:00,1006.77734375,10.926099,10926.099 +10591,2025-06-11T08:06:28.656340-07:00,1006.747802734375,10.931126,10931.126 +10592,2025-06-11T08:06:39.572092-07:00,1006.7312622070312,10.915752,10915.752 +10593,2025-06-11T08:06:50.495099-07:00,1006.752685546875,10.923007,10923.007 +10594,2025-06-11T08:07:01.430737-07:00,1006.7642211914062,10.935638,10935.638 +10595,2025-06-11T08:07:12.347354-07:00,1006.7759399414062,10.916617,10916.617 +10596,2025-06-11T08:07:23.270826-07:00,1006.7904663085938,10.923472,10923.472 +10597,2025-06-11T08:07:34.187886-07:00,1006.757568359375,10.91706,10917.06 +10598,2025-06-11T08:07:45.115608-07:00,1006.7693481445312,10.927722,10927.722 +10599,2025-06-11T08:07:56.044143-07:00,1006.7510375976562,10.928535,10928.535 +10600,2025-06-11T08:08:06.962173-07:00,1006.7940673828125,10.91803,10918.03 +10601,2025-06-11T08:08:17.877541-07:00,1006.8023681640625,10.915368,10915.368 +10602,2025-06-11T08:08:28.805080-07:00,1006.7742309570312,10.927539,10927.539 +10603,2025-06-11T08:08:39.717312-07:00,1006.770751953125,10.912232,10912.232 +10604,2025-06-11T08:08:50.642573-07:00,1006.7693481445312,10.925261,10925.261 +10605,2025-06-11T08:09:01.564089-07:00,1006.7759399414062,10.921516,10921.516 +10606,2025-06-11T08:09:12.487087-07:00,1006.822021484375,10.922998,10922.998 +10607,2025-06-11T08:09:23.404454-07:00,1006.8036499023438,10.917367,10917.367 +10608,2025-06-11T08:09:34.330105-07:00,1006.7611083984375,10.925651,10925.651 +10609,2025-06-11T08:09:45.250390-07:00,1006.7957153320312,10.920285,10920.285 +10610,2025-06-11T08:09:56.176644-07:00,1006.8234252929688,10.926254,10926.254 +10611,2025-06-11T08:10:07.091099-07:00,1006.783935546875,10.914455,10914.455 +10612,2025-06-11T08:10:18.015128-07:00,1006.7725219726562,10.924029,10924.029 +10613,2025-06-11T08:10:28.931140-07:00,1006.77734375,10.916012,10916.012 +10614,2025-06-11T08:10:39.848849-07:00,1006.8135986328125,10.917709,10917.709 +10615,2025-06-11T08:10:50.772103-07:00,1006.765869140625,10.923254,10923.254 +10616,2025-06-11T08:11:01.700518-07:00,1006.7329711914062,10.928415,10928.415 +10617,2025-06-11T08:11:12.622401-07:00,1006.7329711914062,10.921883,10921.883 +10618,2025-06-11T08:11:23.544088-07:00,1006.7754516601562,10.921687,10921.687 +10619,2025-06-11T08:11:34.473975-07:00,1006.74267578125,10.929887,10929.887 +10620,2025-06-11T08:11:45.390933-07:00,1006.76708984375,10.916958,10916.958 +10621,2025-06-11T08:11:56.320108-07:00,1006.7575073242188,10.929175,10929.175 +10622,2025-06-11T08:12:07.242617-07:00,1006.7294311523438,10.922509,10922.509 +10623,2025-06-11T08:12:18.171255-07:00,1006.7327880859375,10.928638,10928.638 +10624,2025-06-11T08:12:29.095108-07:00,1006.7393798828125,10.923853,10923.853 +10625,2025-06-11T08:12:40.017416-07:00,1006.713134765625,10.922308,10922.308 +10626,2025-06-11T08:12:50.950086-07:00,1006.7276611328125,10.93267,10932.67 +10627,2025-06-11T08:13:01.867327-07:00,1006.7144775390625,10.917241,10917.241 +10628,2025-06-11T08:13:12.786445-07:00,1006.759033203125,10.919118,10919.118 +10629,2025-06-11T08:13:23.715427-07:00,1006.7525024414062,10.928982,10928.982 +10630,2025-06-11T08:13:34.638009-07:00,1006.7144775390625,10.922582,10922.582 +10631,2025-06-11T08:13:45.571106-07:00,1006.7525024414062,10.933097,10933.097 +10632,2025-06-11T08:13:56.494369-07:00,1006.7538452148438,10.923263,10923.263 +10633,2025-06-11T08:14:07.423622-07:00,1006.72607421875,10.929253,10929.253 +10634,2025-06-11T08:14:18.357425-07:00,1006.7340698242188,10.933803,10933.803 +10635,2025-06-11T08:14:29.280458-07:00,1006.7506103515625,10.923033,10923.033 +10636,2025-06-11T08:14:40.209102-07:00,1006.7620849609375,10.928644,10928.644 +10637,2025-06-11T08:14:51.131087-07:00,1006.784912109375,10.921985,10921.985 +10638,2025-06-11T08:15:02.063959-07:00,1006.720947265625,10.932872,10932.872 +10639,2025-06-11T08:15:12.990691-07:00,1006.7620849609375,10.926732,10926.732 +10640,2025-06-11T08:15:23.916557-07:00,1006.7818603515625,10.925866,10925.866 +10641,2025-06-11T08:15:34.846106-07:00,1006.7637329101562,10.929549,10929.549 +10642,2025-06-11T08:15:45.774462-07:00,1006.7782592773438,10.928356,10928.356 +10643,2025-06-11T08:15:56.699140-07:00,1006.7686767578125,10.924678,10924.678 +10644,2025-06-11T08:16:07.636364-07:00,1006.7554931640625,10.937224,10937.224 +10645,2025-06-11T08:16:18.566107-07:00,1006.7520141601562,10.929743,10929.743 +10646,2025-06-11T08:16:29.505353-07:00,1006.793212890625,10.939246,10939.246 +10647,2025-06-11T08:16:40.430101-07:00,1006.81298828125,10.924748,10924.748 +10648,2025-06-11T08:16:51.363117-07:00,1006.7896728515625,10.933016,10933.016 +10649,2025-06-11T08:17:02.289099-07:00,1006.7734375,10.925982,10925.982 +10650,2025-06-11T08:17:13.224652-07:00,1006.78173828125,10.935553,10935.553 +10651,2025-06-11T08:17:24.148106-07:00,1006.7962646484375,10.923454,10923.454 +10652,2025-06-11T08:17:35.082378-07:00,1006.7848510742188,10.934272,10934.272 +10653,2025-06-11T08:17:46.012148-07:00,1006.7996826171875,10.92977,10929.77 +10654,2025-06-11T08:17:56.949401-07:00,1006.7781982421875,10.937253,10937.253 +10655,2025-06-11T08:18:07.885089-07:00,1006.7781982421875,10.935688,10935.688 +10656,2025-06-11T08:18:18.819189-07:00,1006.7913818359375,10.9341,10934.1 +10657,2025-06-11T08:18:29.737279-07:00,1006.8045043945312,10.91809,10918.09 +10658,2025-06-11T08:18:40.671427-07:00,1006.825927734375,10.934148,10934.148 +10659,2025-06-11T08:18:51.599382-07:00,1006.8128051757812,10.927955,10927.955 +10660,2025-06-11T08:19:02.532871-07:00,1006.825927734375,10.933489,10933.489 +10661,2025-06-11T08:19:13.462105-07:00,1006.8357543945312,10.929234,10929.234 +10662,2025-06-11T08:19:24.385088-07:00,1006.825927734375,10.922983,10922.983 +10663,2025-06-11T08:19:35.314511-07:00,1006.839111328125,10.929423,10929.423 +10664,2025-06-11T08:19:46.248853-07:00,1006.8523559570312,10.934342,10934.342 +10665,2025-06-11T08:19:57.180247-07:00,1006.817626953125,10.931394,10931.394 +10666,2025-06-11T08:20:08.106332-07:00,1006.825927734375,10.926085,10926.085 +10667,2025-06-11T08:20:19.039172-07:00,1006.8506469726562,10.93284,10932.84 +10668,2025-06-11T08:20:29.972327-07:00,1006.8407592773438,10.933155,10933.155 +10669,2025-06-11T08:20:40.895485-07:00,1006.8242797851562,10.923158,10923.158 +10670,2025-06-11T08:20:51.831355-07:00,1006.8308715820312,10.93587,10935.87 +10671,2025-06-11T08:21:02.760452-07:00,1006.7979736328125,10.929097,10929.097 +10672,2025-06-11T08:21:13.683374-07:00,1006.82763671875,10.922922,10922.922 +10673,2025-06-11T08:21:24.618407-07:00,1006.8457641601562,10.935033,10935.033 +10674,2025-06-11T08:21:35.540090-07:00,1006.8292236328125,10.921683,10921.683 +10675,2025-06-11T08:21:46.468103-07:00,1006.825927734375,10.928013,10928.013 +10676,2025-06-11T08:21:57.392328-07:00,1006.817626953125,10.924225,10924.225 +10677,2025-06-11T08:22:08.325321-07:00,1006.839111328125,10.932993,10932.993 +10678,2025-06-11T08:22:19.260383-07:00,1006.8487548828125,10.935062,10935.062 +10679,2025-06-11T08:22:30.181768-07:00,1006.847412109375,10.921385,10921.385 +10680,2025-06-11T08:22:41.115390-07:00,1006.82763671875,10.933622,10933.622 +10681,2025-06-11T08:22:52.035107-07:00,1006.8290405273438,10.919717,10919.717 +10682,2025-06-11T08:23:02.961097-07:00,1006.8487548828125,10.92599,10925.99 +10683,2025-06-11T08:23:13.895254-07:00,1006.8356323242188,10.934157,10934.157 +10684,2025-06-11T08:23:24.821531-07:00,1006.8619384765625,10.926277,10926.277 +10685,2025-06-11T08:23:35.739251-07:00,1006.9000854492188,10.91772,10917.72 +10686,2025-06-11T08:23:46.672109-07:00,1006.873779296875,10.932858,10932.858 +10687,2025-06-11T08:23:57.599129-07:00,1006.8619384765625,10.92702,10927.02 +10688,2025-06-11T08:24:08.526406-07:00,1006.865478515625,10.927277,10927.277 +10689,2025-06-11T08:24:19.455088-07:00,1006.8685913085938,10.928682,10928.682 +10690,2025-06-11T08:24:30.380383-07:00,1006.8671875,10.925295,10925.295 +10691,2025-06-11T08:24:41.315103-07:00,1006.8671875,10.93472,10934.72 +10692,2025-06-11T08:24:52.246550-07:00,1006.85888671875,10.931447,10931.447 +10693,2025-06-11T08:25:03.170511-07:00,1006.89013671875,10.923961,10923.961 +10694,2025-06-11T08:25:14.112109-07:00,1006.86376953125,10.941598,10941.598 +10695,2025-06-11T08:25:25.045097-07:00,1006.9263916015625,10.932988,10932.988 +10696,2025-06-11T08:25:35.975539-07:00,1006.936279296875,10.930442,10930.442 +10697,2025-06-11T08:25:46.901500-07:00,1006.9081420898438,10.925961,10925.961 +10698,2025-06-11T08:25:57.833450-07:00,1006.9246826171875,10.93195,10931.95 +10699,2025-06-11T08:26:08.764416-07:00,1006.8541259765625,10.930966,10930.966 +10700,2025-06-11T08:26:19.692365-07:00,1006.8787231445312,10.927949,10927.949 +10701,2025-06-11T08:26:30.631160-07:00,1006.89501953125,10.938795,10938.795 +10702,2025-06-11T08:26:41.557391-07:00,1006.8474731445312,10.926231,10926.231 +10703,2025-06-11T08:26:52.490145-07:00,1006.9230346679688,10.932754,10932.754 +10704,2025-06-11T08:27:03.430509-07:00,1006.914794921875,10.940364,10940.364 +10705,2025-06-11T08:27:14.358243-07:00,1006.927978515625,10.927734,10927.734 +10706,2025-06-11T08:27:25.289198-07:00,1006.9134521484375,10.930955,10930.955 +10707,2025-06-11T08:27:36.220105-07:00,1006.9476318359375,10.930907,10930.907 +10708,2025-06-11T08:27:47.162106-07:00,1006.9182739257812,10.942001,10942.001 +10709,2025-06-11T08:27:58.085128-07:00,1006.9625244140625,10.923022,10923.022 +10710,2025-06-11T08:28:09.015241-07:00,1006.93310546875,10.930113,10930.113 +10711,2025-06-11T08:28:19.951097-07:00,1006.9840698242188,10.935856,10935.856 +10712,2025-06-11T08:28:30.870552-07:00,1006.9415893554688,10.919455,10919.455 +10713,2025-06-11T08:28:41.803253-07:00,1006.9857788085938,10.932701,10932.701 +10714,2025-06-11T08:28:52.721125-07:00,1007.0020141601562,10.917872,10917.872 +10715,2025-06-11T08:29:03.657672-07:00,1007.0153198242188,10.936547,10936.547 +10716,2025-06-11T08:29:14.585130-07:00,1006.962646484375,10.927458,10927.458 +10717,2025-06-11T08:29:25.537550-07:00,1006.96435546875,10.95242,10952.42 +10718,2025-06-11T08:29:36.464454-07:00,1006.96435546875,10.926904,10926.904 +10719,2025-06-11T08:29:47.400449-07:00,1006.9972534179688,10.935995,10935.995 +10720,2025-06-11T08:29:58.325416-07:00,1006.9561157226562,10.924967,10924.967 +10721,2025-06-11T08:30:09.267412-07:00,1006.9481201171875,10.941996,10941.996 +10722,2025-06-11T08:30:20.190445-07:00,1006.9876708984375,10.923033,10923.033 +10723,2025-06-11T08:30:31.128965-07:00,1007.002197265625,10.93852,10938.52 +10724,2025-06-11T08:30:42.059881-07:00,1006.9595947265625,10.930916,10930.916 +10725,2025-06-11T08:30:52.992750-07:00,1006.9481201171875,10.932869,10932.869 +10726,2025-06-11T08:31:03.923721-07:00,1006.9810791015625,10.930971,10930.971 +10727,2025-06-11T08:31:14.856405-07:00,1006.9942016601562,10.932684,10932.684 +10728,2025-06-11T08:31:25.781418-07:00,1006.9876708984375,10.925013,10925.013 +10729,2025-06-11T08:31:36.708208-07:00,1006.9135131835938,10.92679,10926.79 +10730,2025-06-11T08:31:47.630665-07:00,1007.002197265625,10.922457,10922.457 +10731,2025-06-11T08:31:58.559136-07:00,1006.9840698242188,10.928471,10928.471 +10732,2025-06-11T08:32:09.487394-07:00,1006.99560546875,10.928258,10928.258 +10733,2025-06-11T08:32:20.420706-07:00,1006.9989624023438,10.933312,10933.312 +10734,2025-06-11T08:32:31.346668-07:00,1006.9923706054688,10.925962,10925.962 +10735,2025-06-11T08:32:42.266407-07:00,1007.0068969726562,10.919739,10919.739 +10736,2025-06-11T08:32:53.194751-07:00,1006.9744262695312,10.928344,10928.344 +10737,2025-06-11T08:33:04.120568-07:00,1006.9972534179688,10.925817,10925.817 +10738,2025-06-11T08:33:15.048294-07:00,1006.9989624023438,10.927726,10927.726 +10739,2025-06-11T08:33:25.970422-07:00,1007.0055541992188,10.922128,10922.128 +10740,2025-06-11T08:33:36.899415-07:00,1007.052978515625,10.928993,10928.993 +10741,2025-06-11T08:33:47.818719-07:00,1007.0253295898438,10.919304,10919.304 +10742,2025-06-11T08:33:58.747399-07:00,1007.0170288085938,10.92868,10928.68 +10743,2025-06-11T08:34:09.674054-07:00,1007.0565795898438,10.926655,10926.655 +10744,2025-06-11T08:34:20.597834-07:00,1007.0285034179688,10.92378,10923.78 +10745,2025-06-11T08:34:31.526669-07:00,1007.1043090820312,10.928835,10928.835 +10746,2025-06-11T08:34:42.460433-07:00,1007.0087280273438,10.933764,10933.764 +10747,2025-06-11T08:34:53.387257-07:00,1007.002197265625,10.926824,10926.824 +10748,2025-06-11T08:35:04.306660-07:00,1007.06787109375,10.919403,10919.403 +10749,2025-06-11T08:35:15.232580-07:00,1007.0548706054688,10.92592,10925.92 +10750,2025-06-11T08:35:26.156421-07:00,1007.0449829101562,10.923841,10923.841 +10751,2025-06-11T08:35:37.086454-07:00,1007.0516357421875,10.930033,10930.033 +10752,2025-06-11T08:35:48.012422-07:00,1007.066162109375,10.925968,10925.968 +10753,2025-06-11T08:35:58.944023-07:00,1007.0433349609375,10.931601,10931.601 +10754,2025-06-11T08:36:09.866422-07:00,1007.095947265625,10.922399,10922.399 +10755,2025-06-11T08:36:20.792833-07:00,1007.052978515625,10.926411,10926.411 +10756,2025-06-11T08:36:31.719194-07:00,1007.1007690429688,10.926361,10926.361 +10757,2025-06-11T08:36:42.651409-07:00,1007.0449829101562,10.932215,10932.215 +10758,2025-06-11T08:36:53.580812-07:00,1007.08935546875,10.929403,10929.403 +10759,2025-06-11T08:37:04.499424-07:00,1007.0728149414062,10.918612,10918.612 +10760,2025-06-11T08:37:15.431441-07:00,1007.076171875,10.932017,10932.017 +10761,2025-06-11T08:37:26.349869-07:00,1007.061279296875,10.918428,10918.428 +10762,2025-06-11T08:37:37.277416-07:00,1007.0923461914062,10.927547,10927.547 +10763,2025-06-11T08:37:48.198710-07:00,1007.09423828125,10.921294,10921.294 +10764,2025-06-11T08:37:59.127482-07:00,1007.09765625,10.928772,10928.772 +10765,2025-06-11T08:38:10.050463-07:00,1007.082763671875,10.922981,10922.981 +10766,2025-06-11T08:38:20.983855-07:00,1007.06298828125,10.933392,10933.392 +10767,2025-06-11T08:38:31.909420-07:00,1007.0661010742188,10.925565,10925.565 +10768,2025-06-11T08:38:42.837093-07:00,1007.0479736328125,10.927673,10927.673 +10769,2025-06-11T08:38:53.767422-07:00,1007.030029296875,10.930329,10930.329 +10770,2025-06-11T08:39:04.704871-07:00,1006.9724731445312,10.937449,10937.449 +10771,2025-06-11T08:39:15.639543-07:00,1007.0463256835938,10.934672,10934.672 +10772,2025-06-11T08:39:26.568260-07:00,1007.038330078125,10.928717,10928.717 +10773,2025-06-11T08:39:37.487151-07:00,1007.0396728515625,10.918891,10918.891 +10774,2025-06-11T08:39:48.414662-07:00,1007.0150756835938,10.927511,10927.511 +10775,2025-06-11T08:39:59.343760-07:00,1007.021728515625,10.929098,10929.098 +10776,2025-06-11T08:40:10.260421-07:00,1007.038330078125,10.916661,10916.661 +10777,2025-06-11T08:40:21.193885-07:00,1007.0120239257812,10.933464,10933.464 +10778,2025-06-11T08:40:32.109848-07:00,1006.9935913085938,10.915963,10915.963 +10779,2025-06-11T08:40:43.045418-07:00,1007.0545043945312,10.93557,10935.57 +10780,2025-06-11T08:40:53.972657-07:00,1007.0661010742188,10.927239,10927.239 +10781,2025-06-11T08:41:04.897670-07:00,1007.0265502929688,10.925013,10925.013 +10782,2025-06-11T08:41:15.818418-07:00,1007.0348510742188,10.920748,10920.748 +10783,2025-06-11T08:41:26.754668-07:00,1007.0628051757812,10.93625,10936.25 +10784,2025-06-11T08:41:37.681488-07:00,1007.0233764648438,10.92682,10926.82 +10785,2025-06-11T08:41:48.606833-07:00,1007.0348510742188,10.925345,10925.345 +10786,2025-06-11T08:41:59.526487-07:00,1007.0265502929688,10.919654,10919.654 +10787,2025-06-11T08:42:10.457937-07:00,1007.0510864257812,10.93145,10931.45 +10788,2025-06-11T08:42:21.380759-07:00,1007.0379028320312,10.922822,10922.822 +10789,2025-06-11T08:42:32.307474-07:00,1007.064208984375,10.926715,10926.715 +10790,2025-06-11T08:42:43.230735-07:00,1007.080810546875,10.923261,10923.261 +10791,2025-06-11T08:42:54.160528-07:00,1007.0527954101562,10.929793,10929.793 +10792,2025-06-11T08:43:05.085421-07:00,1006.9984130859375,10.924893,10924.893 +10793,2025-06-11T08:43:16.012410-07:00,1007.046142578125,10.926989,10926.989 +10794,2025-06-11T08:43:26.933415-07:00,1007.0264282226562,10.921005,10921.005 +10795,2025-06-11T08:43:37.857860-07:00,1007.021728515625,10.924445,10924.445 +10796,2025-06-11T08:43:48.789421-07:00,1007.103759765625,10.931561,10931.561 +10797,2025-06-11T08:43:59.714615-07:00,1007.1185913085938,10.925194,10925.194 +10798,2025-06-11T08:44:10.647425-07:00,1007.0576782226562,10.93281,10932.81 +10799,2025-06-11T08:44:21.571505-07:00,1007.0678100585938,10.92408,10924.08 +10800,2025-06-11T08:44:32.501653-07:00,1007.103759765625,10.930148,10930.148 +10801,2025-06-11T08:44:43.428421-07:00,1007.1102905273438,10.926768,10926.768 +10802,2025-06-11T08:44:54.352089-07:00,1007.0759887695312,10.923668,10923.668 +10803,2025-06-11T08:45:05.274464-07:00,1007.1287231445312,10.922375,10922.375 +10804,2025-06-11T08:45:16.210015-07:00,1007.1221313476562,10.935551,10935.551 +10805,2025-06-11T08:45:27.135277-07:00,1007.0726318359375,10.925262,10925.262 +10806,2025-06-11T08:45:38.054602-07:00,1007.0726318359375,10.919325,10919.325 +10807,2025-06-11T08:45:48.979680-07:00,1007.0940551757812,10.925078,10925.078 +10808,2025-06-11T08:45:59.899132-07:00,1007.1138305664062,10.919452,10919.452 +10809,2025-06-11T08:46:10.822422-07:00,1007.1353149414062,10.92329,10923.29 +10810,2025-06-11T08:46:21.741956-07:00,1007.141845703125,10.919534,10919.534 +10811,2025-06-11T08:46:32.663914-07:00,1007.14013671875,10.921958,10921.958 +10812,2025-06-11T08:46:43.581408-07:00,1007.17138671875,10.917494,10917.494 +10813,2025-06-11T08:46:54.515798-07:00,1007.1138305664062,10.93439,10934.39 +10814,2025-06-11T08:47:05.438194-07:00,1007.1221313476562,10.922396,10922.396 +10815,2025-06-11T08:47:16.358574-07:00,1007.1533813476562,10.92038,10920.38 +10816,2025-06-11T08:47:27.290760-07:00,1007.1239013671875,10.932186,10932.186 +10817,2025-06-11T08:47:38.208738-07:00,1007.1796875,10.917978,10917.978 +10818,2025-06-11T08:47:49.131180-07:00,1007.1648559570312,10.922442,10922.442 +10819,2025-06-11T08:48:00.060765-07:00,1007.1370849609375,10.929585,10929.585 +10820,2025-06-11T08:48:10.986417-07:00,1007.1582641601562,10.925652,10925.652 +10821,2025-06-11T08:48:21.916397-07:00,1007.1318969726562,10.92998,10929.98 +10822,2025-06-11T08:48:32.831751-07:00,1007.1288452148438,10.915354,10915.354 +10823,2025-06-11T08:48:43.759672-07:00,1007.1370849609375,10.927921,10927.921 +10824,2025-06-11T08:48:54.689388-07:00,1007.1239013671875,10.929716,10929.716 +10825,2025-06-11T08:49:05.613484-07:00,1007.1024780273438,10.924096,10924.096 +10826,2025-06-11T08:49:16.535728-07:00,1007.1024780273438,10.922244,10922.244 +10827,2025-06-11T08:49:27.470781-07:00,1007.1420288085938,10.935053,10935.053 +10828,2025-06-11T08:49:38.386651-07:00,1007.1138916015625,10.91587,10915.87 +10829,2025-06-11T08:49:49.321373-07:00,1007.1634521484375,10.934722,10934.722 +10830,2025-06-11T08:50:00.238803-07:00,1007.1486206054688,10.91743,10917.43 +10831,2025-06-11T08:50:11.161409-07:00,1007.1436767578125,10.922606,10922.606 +10832,2025-06-11T08:50:22.089787-07:00,1007.1617431640625,10.928378,10928.378 +10833,2025-06-11T08:50:33.012662-07:00,1007.1403198242188,10.922875,10922.875 +10834,2025-06-11T08:50:43.933420-07:00,1007.1403198242188,10.920758,10920.758 +10835,2025-06-11T08:50:54.865128-07:00,1007.1568603515625,10.931708,10931.708 +10836,2025-06-11T08:51:05.788836-07:00,1007.1551513671875,10.923708,10923.708 +10837,2025-06-11T08:51:16.722140-07:00,1007.1288452148438,10.933304,10933.304 +10838,2025-06-11T08:51:27.655418-07:00,1007.1845092773438,10.933278,10933.278 +10839,2025-06-11T08:51:38.572429-07:00,1007.14013671875,10.917011,10917.011 +10840,2025-06-11T08:51:49.500548-07:00,1007.1253051757812,10.928119,10928.119 +10841,2025-06-11T08:52:00.434562-07:00,1007.16162109375,10.934014,10934.014 +10842,2025-06-11T08:52:11.356064-07:00,1007.146728515625,10.921502,10921.502 +10843,2025-06-11T08:52:22.286423-07:00,1007.138427734375,10.930359,10930.359 +10844,2025-06-11T08:52:33.210414-07:00,1007.1055297851562,10.923991,10923.991 +10845,2025-06-11T08:52:44.138668-07:00,1007.14013671875,10.928254,10928.254 +10846,2025-06-11T08:52:55.060503-07:00,1007.1187744140625,10.921835,10921.835 +10847,2025-06-11T08:53:05.984287-07:00,1007.1436767578125,10.923784,10923.784 +10848,2025-06-11T08:53:16.913418-07:00,1007.1420288085938,10.929131,10929.131 +10849,2025-06-11T08:53:27.842731-07:00,1007.177978515625,10.929313,10929.313 +10850,2025-06-11T08:53:38.769481-07:00,1007.1665649414062,10.92675,10926.75 +10851,2025-06-11T08:53:49.692410-07:00,1007.1994018554688,10.922929,10922.929 +10852,2025-06-11T08:54:00.622023-07:00,1007.1845092773438,10.929613,10929.613 +10853,2025-06-11T08:54:11.543428-07:00,1007.1964111328125,10.921405,10921.405 +10854,2025-06-11T08:54:22.470422-07:00,1007.1814575195312,10.926994,10926.994 +10855,2025-06-11T08:54:33.399420-07:00,1007.2109375,10.928998,10928.998 +10856,2025-06-11T08:54:44.331647-07:00,1007.1666259765625,10.932227,10932.227 +10857,2025-06-11T08:54:55.253918-07:00,1007.1732177734375,10.922271,10922.271 +10858,2025-06-11T08:55:06.181627-07:00,1007.1814575195312,10.927709,10927.709 +10859,2025-06-11T08:55:17.104602-07:00,1007.1732177734375,10.922975,10922.975 +10860,2025-06-11T08:55:28.022899-07:00,1007.216064453125,10.918297,10918.297 +10861,2025-06-11T08:55:38.947952-07:00,1007.1487426757812,10.925053,10925.053 +10862,2025-06-11T08:55:49.882962-07:00,1007.1765747070312,10.93501,10935.01 +10863,2025-06-11T08:56:00.807532-07:00,1007.204345703125,10.92457,10924.57 +10864,2025-06-11T08:56:11.730405-07:00,1007.1599731445312,10.922873,10922.873 +10865,2025-06-11T08:56:22.652689-07:00,1007.1964111328125,10.922284,10922.284 +10866,2025-06-11T08:56:33.567760-07:00,1007.1386108398438,10.915071,10915.071 +10867,2025-06-11T08:56:44.493563-07:00,1007.1682739257812,10.925803,10925.803 +10868,2025-06-11T08:56:55.421674-07:00,1007.1599731445312,10.928111,10928.111 +10869,2025-06-11T08:57:06.339588-07:00,1007.2210083007812,10.917914,10917.914 +10870,2025-06-11T08:57:17.265416-07:00,1007.2192993164062,10.925828,10925.828 +10871,2025-06-11T08:57:28.187740-07:00,1007.24560546875,10.922324,10922.324 +10872,2025-06-11T08:57:39.115502-07:00,1007.24560546875,10.927762,10927.762 +10873,2025-06-11T08:57:50.043406-07:00,1007.2109985351562,10.927904,10927.904 +10874,2025-06-11T08:58:00.966045-07:00,1007.1995239257812,10.922639,10922.639 +10875,2025-06-11T08:58:11.892945-07:00,1007.2176513671875,10.9269,10926.9 +10876,2025-06-11T08:58:22.817663-07:00,1007.2030639648438,10.924718,10924.718 +10877,2025-06-11T08:58:33.747405-07:00,1007.1846923828125,10.929742,10929.742 +10878,2025-06-11T08:58:44.674437-07:00,1007.1964721679688,10.927032,10927.032 +10879,2025-06-11T08:58:55.601054-07:00,1007.2044677734375,10.926617,10926.617 +10880,2025-06-11T08:59:06.531002-07:00,1007.1912231445312,10.929948,10929.948 +10881,2025-06-11T08:59:17.452769-07:00,1007.209716796875,10.921767,10921.767 +10882,2025-06-11T08:59:28.383662-07:00,1007.2030639648438,10.930893,10930.893 +10883,2025-06-11T08:59:39.312022-07:00,1007.2192993164062,10.92836,10928.36 +10884,2025-06-11T08:59:50.242840-07:00,1007.2307739257812,10.930818,10930.818 +10885,2025-06-11T09:00:01.166587-07:00,1007.2030639648438,10.923747,10923.747 +10886,2025-06-11T09:00:12.096663-07:00,1007.1964721679688,10.930076,10930.076 +10887,2025-06-11T09:00:23.021397-07:00,1007.1964721679688,10.924734,10924.734 +10888,2025-06-11T09:00:33.953505-07:00,1007.1978149414062,10.932108,10932.108 +10889,2025-06-11T09:00:44.871791-07:00,1007.1978149414062,10.918286,10918.286 +10890,2025-06-11T09:00:55.805336-07:00,1007.1715698242188,10.933545,10933.545 +10891,2025-06-11T09:01:06.733839-07:00,1007.170166015625,10.928503,10928.503 +10892,2025-06-11T09:01:17.658420-07:00,1007.1846923828125,10.924581,10924.581 +10893,2025-06-11T09:01:28.580908-07:00,1007.1649169921875,10.922488,10922.488 +10894,2025-06-11T09:01:39.514418-07:00,1007.170166015625,10.93351,10933.51 +10895,2025-06-11T09:01:50.442819-07:00,1007.150390625,10.928401,10928.401 diff --git a/time_differences_pressure_510.csv b/time_differences_pressure_510.csv new file mode 100644 index 0000000..6977085 --- /dev/null +++ b/time_differences_pressure_510.csv @@ -0,0 +1,39572 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-03-07T00:00:06.677824-08:00,998.322998046875,0,0 +1,2025-03-07T00:00:17.507460-08:00,998.3351440429688,10.829636,10829.636 +2,2025-03-07T00:00:28.330820-08:00,998.35498046875,10.82336,10823.36 +3,2025-03-07T00:00:39.161725-08:00,998.333740234375,10.830905,10830.905 +4,2025-03-07T00:00:49.982685-08:00,998.3062744140625,10.82096,10820.96 +5,2025-03-07T00:01:00.815958-08:00,998.345947265625,10.833273,10833.273 +6,2025-03-07T00:01:11.635480-08:00,998.320556640625,10.819522,10819.522 +7,2025-03-07T00:01:22.463513-08:00,998.3445434570312,10.828033,10828.033 +8,2025-03-07T00:01:33.286556-08:00,998.32373046875,10.823043,10823.043 +9,2025-03-07T00:01:44.118814-08:00,998.322021484375,10.832258,10832.258 +10,2025-03-07T00:01:54.949714-08:00,998.343505859375,10.8309,10830.9 +11,2025-03-07T00:02:05.778729-08:00,998.32373046875,10.829015,10829.015 +12,2025-03-07T00:02:16.598666-08:00,998.3275756835938,10.819937,10819.937 +13,2025-03-07T00:02:27.430949-08:00,998.3418579101562,10.832283,10832.283 +14,2025-03-07T00:02:38.261540-08:00,998.3407592773438,10.830591,10830.591 +15,2025-03-07T00:02:49.090717-08:00,998.3175048828125,10.829177,10829.177 +16,2025-03-07T00:02:59.924526-08:00,998.2910766601562,10.833809,10833.809 +17,2025-03-07T00:03:10.742752-08:00,998.330810546875,10.818226,10818.226 +18,2025-03-07T00:03:21.575472-08:00,998.3505249023438,10.83272,10832.72 +19,2025-03-07T00:03:32.391513-08:00,998.29638671875,10.816041,10816.041 +20,2025-03-07T00:03:43.222531-08:00,998.2754516601562,10.831018,10831.018 +21,2025-03-07T00:03:54.047477-08:00,998.313720703125,10.824946,10824.946 +22,2025-03-07T00:04:04.862826-08:00,998.3126831054688,10.815349,10815.349 +23,2025-03-07T00:04:15.689721-08:00,998.3071899414062,10.826895,10826.895 +24,2025-03-07T00:04:26.514916-08:00,998.3060913085938,10.825195,10825.195 +25,2025-03-07T00:04:37.345477-08:00,998.3192749023438,10.830561,10830.561 +26,2025-03-07T00:04:48.173880-08:00,998.3401489257812,10.828403,10828.403 +27,2025-03-07T00:04:58.999477-08:00,998.298095703125,10.825597,10825.597 +28,2025-03-07T00:05:09.828432-08:00,998.3060913085938,10.828955,10828.955 +29,2025-03-07T00:05:20.656504-08:00,998.3109130859375,10.828072,10828.072 +30,2025-03-07T00:05:31.537275-08:00,998.3217163085938,10.880771,10880.771 +31,2025-03-07T00:05:42.360711-08:00,998.341552734375,10.823436,10823.436 +32,2025-03-07T00:05:53.198511-08:00,998.330810546875,10.8378,10837.8 +33,2025-03-07T00:06:04.019728-08:00,998.3283081054688,10.821217,10821.217 +34,2025-03-07T00:06:14.849283-08:00,998.3467407226562,10.829555,10829.555 +35,2025-03-07T00:06:25.688298-08:00,998.3390502929688,10.839015,10839.015 +36,2025-03-07T00:06:36.520244-08:00,998.3401489257812,10.831946,10831.946 +37,2025-03-07T00:06:47.346266-08:00,998.3245239257812,10.826022,10826.022 +38,2025-03-07T00:06:58.172587-08:00,998.345703125,10.826321,10826.321 +39,2025-03-07T00:07:09.004284-08:00,998.3509521484375,10.831697,10831.697 +40,2025-03-07T00:07:19.838608-08:00,998.345703125,10.834324,10834.324 +41,2025-03-07T00:07:30.678529-08:00,998.33251953125,10.839921,10839.921 +42,2025-03-07T00:07:41.510648-08:00,998.35888671875,10.832119,10832.119 +43,2025-03-07T00:07:52.331735-08:00,998.3367309570312,10.821087,10821.087 +44,2025-03-07T00:08:03.162610-08:00,998.3630981445312,10.830875,10830.875 +45,2025-03-07T00:08:13.989278-08:00,998.34326171875,10.826668,10826.668 +46,2025-03-07T00:08:24.826289-08:00,998.3367309570312,10.837011,10837.011 +47,2025-03-07T00:08:35.656548-08:00,998.3829956054688,10.830259,10830.259 +48,2025-03-07T00:08:46.478673-08:00,998.3154907226562,10.822125,10822.125 +49,2025-03-07T00:08:57.315616-08:00,998.3565673828125,10.836943,10836.943 +50,2025-03-07T00:09:08.137292-08:00,998.3839721679688,10.821676,10821.676 +51,2025-03-07T00:09:18.972601-08:00,998.3616943359375,10.835309,10835.309 +52,2025-03-07T00:09:29.804264-08:00,998.3540649414062,10.831663,10831.663 +53,2025-03-07T00:09:40.625287-08:00,998.375,10.821023,10821.023 +54,2025-03-07T00:09:51.457282-08:00,998.3673706054688,10.831995,10831.995 +55,2025-03-07T00:10:02.280111-08:00,998.3342895507812,10.822829,10822.829 +56,2025-03-07T00:10:13.111643-08:00,998.3870849609375,10.831532,10831.532 +57,2025-03-07T00:10:23.935288-08:00,998.359375,10.823645,10823.645 +58,2025-03-07T00:10:34.773274-08:00,998.3582763671875,10.837986,10837.986 +59,2025-03-07T00:10:45.598284-08:00,998.3858032226562,10.82501,10825.01 +60,2025-03-07T00:10:56.425630-08:00,998.3527221679688,10.827346,10827.346 +61,2025-03-07T00:11:07.246354-08:00,998.392333984375,10.820724,10820.724 +62,2025-03-07T00:11:18.077562-08:00,998.3847045898438,10.831208,10831.208 +63,2025-03-07T00:11:28.903403-08:00,998.3978881835938,10.825841,10825.841 +64,2025-03-07T00:11:39.735606-08:00,998.3690795898438,10.832203,10832.203 +65,2025-03-07T00:11:50.559286-08:00,998.363525390625,10.82368,10823.68 +66,2025-03-07T00:12:01.387772-08:00,998.3756103515625,10.828486,10828.486 +67,2025-03-07T00:12:12.212361-08:00,998.3875122070312,10.824589,10824.589 +68,2025-03-07T00:12:23.038282-08:00,998.3545532226562,10.825921,10825.921 +69,2025-03-07T00:12:33.871504-08:00,998.3798217773438,10.833222,10833.222 +70,2025-03-07T00:12:44.698462-08:00,998.3325805664062,10.826958,10826.958 +71,2025-03-07T00:12:55.523586-08:00,998.3510131835938,10.825124,10825.124 +72,2025-03-07T00:13:06.360209-08:00,998.373291015625,10.836623,10836.623 +73,2025-03-07T00:13:17.179284-08:00,998.361083984375,10.819075,10819.075 +74,2025-03-07T00:13:28.012949-08:00,998.3443603515625,10.833665,10833.665 +75,2025-03-07T00:13:38.845289-08:00,998.3590087890625,10.83234,10832.34 +76,2025-03-07T00:13:49.676892-08:00,998.3656005859375,10.831603,10831.603 +77,2025-03-07T00:14:00.506919-08:00,998.3721923828125,10.830027,10830.027 +78,2025-03-07T00:14:11.334844-08:00,998.3697509765625,10.827925,10827.925 +79,2025-03-07T00:14:22.153890-08:00,998.3775024414062,10.819046,10819.046 +80,2025-03-07T00:14:32.984320-08:00,998.396240234375,10.83043,10830.43 +81,2025-03-07T00:14:43.813287-08:00,998.3764038085938,10.828967,10828.967 +82,2025-03-07T00:14:54.640289-08:00,998.3630981445312,10.827002,10827.002 +83,2025-03-07T00:15:05.468686-08:00,998.3660278320312,10.828397,10828.397 +84,2025-03-07T00:15:16.300333-08:00,998.3792114257812,10.831647,10831.647 +85,2025-03-07T00:15:27.129434-08:00,998.338623046875,10.829101,10829.101 +86,2025-03-07T00:15:37.955283-08:00,998.380615234375,10.825849,10825.849 +87,2025-03-07T00:15:48.785283-08:00,998.3726806640625,10.83,10830.0 +88,2025-03-07T00:15:59.610915-08:00,998.364990234375,10.825632,10825.632 +89,2025-03-07T00:16:10.442428-08:00,998.380615234375,10.831513,10831.513 +90,2025-03-07T00:16:21.268277-08:00,998.3462524414062,10.825849,10825.849 +91,2025-03-07T00:16:32.094637-08:00,998.3781127929688,10.82636,10826.36 +92,2025-03-07T00:16:42.925808-08:00,998.3583374023438,10.831171,10831.171 +93,2025-03-07T00:16:53.759343-08:00,998.3427124023438,10.833535,10833.535 +94,2025-03-07T00:17:04.583279-08:00,998.3900146484375,10.823936,10823.936 +95,2025-03-07T00:17:15.415355-08:00,998.328125,10.832076,10832.076 +96,2025-03-07T00:17:26.246306-08:00,998.349365234375,10.830951,10830.951 +97,2025-03-07T00:17:37.068802-08:00,998.3545532226562,10.822496,10822.496 +98,2025-03-07T00:17:47.893251-08:00,998.36669921875,10.824449,10824.449 +99,2025-03-07T00:17:58.719937-08:00,998.333740234375,10.826686,10826.686 +100,2025-03-07T00:18:07.049556-08:00,998.353515625,8.329619,8329.619 +101,2025-03-07T00:18:09.555286-08:00,998.353515625,2.50573,2505.73 +102,2025-03-07T00:18:20.377622-08:00,998.3719482421875,10.822336,10822.336 +103,2025-03-07T00:18:31.203325-08:00,998.3323364257812,10.825703,10825.703 +104,2025-03-07T00:18:42.040938-08:00,998.3455200195312,10.837613,10837.613 +105,2025-03-07T00:18:52.869413-08:00,998.3775024414062,10.828475,10828.475 +106,2025-03-07T00:19:03.692713-08:00,998.3521728515625,10.8233,10823.3 +107,2025-03-07T00:19:14.522571-08:00,998.3695068359375,10.829858,10829.858 +108,2025-03-07T00:19:25.351193-08:00,998.3695068359375,10.828622,10828.622 +109,2025-03-07T00:19:36.187860-08:00,998.3563232421875,10.836667,10836.667 +110,2025-03-07T00:19:47.009775-08:00,998.3496704101562,10.821915,10821.915 +111,2025-03-07T00:19:57.842286-08:00,998.4091186523438,10.832511,10832.511 +112,2025-03-07T00:20:08.667521-08:00,998.3869018554688,10.825235,10825.235 +113,2025-03-07T00:20:19.503285-08:00,998.373779296875,10.835764,10835.764 +114,2025-03-07T00:20:30.325051-08:00,998.2999877929688,10.821766,10821.766 +115,2025-03-07T00:20:41.156526-08:00,998.3515014648438,10.831475,10831.475 +116,2025-03-07T00:20:51.986694-08:00,998.3462524414062,10.830168,10830.168 +117,2025-03-07T00:21:02.818865-08:00,998.3594360351562,10.832171,10832.171 +118,2025-03-07T00:21:13.635556-08:00,998.358154296875,10.816691,10816.691 +119,2025-03-07T00:21:24.459314-08:00,998.3646850585938,10.823758,10823.758 +120,2025-03-07T00:21:35.292011-08:00,998.3712768554688,10.832697,10832.697 +121,2025-03-07T00:21:46.111514-08:00,998.3834228515625,10.819503,10819.503 +122,2025-03-07T00:21:56.950548-08:00,998.3976440429688,10.839034,10839.034 +123,2025-03-07T00:22:07.777727-08:00,998.3504638671875,10.827179,10827.179 +124,2025-03-07T00:22:18.607689-08:00,998.3768920898438,10.829962,10829.962 +125,2025-03-07T00:22:29.438432-08:00,998.3702392578125,10.830743,10830.743 +126,2025-03-07T00:22:40.258459-08:00,998.362548828125,10.820027,10820.027 +127,2025-03-07T00:22:51.091343-08:00,998.35595703125,10.832884,10832.884 +128,2025-03-07T00:23:01.917289-08:00,998.3702392578125,10.825946,10825.946 +129,2025-03-07T00:23:12.741853-08:00,998.3428344726562,10.824564,10824.564 +130,2025-03-07T00:23:23.564141-08:00,998.35595703125,10.822288,10822.288 +131,2025-03-07T00:23:34.403620-08:00,998.362548828125,10.839479,10839.479 +132,2025-03-07T00:23:45.221285-08:00,998.3348388671875,10.817665,10817.665 +133,2025-03-07T00:23:56.046628-08:00,998.3612670898438,10.825343,10825.343 +134,2025-03-07T00:24:06.879289-08:00,998.333740234375,10.832661,10832.661 +135,2025-03-07T00:24:17.694602-08:00,998.36669921875,10.815313,10815.313 +136,2025-03-07T00:24:28.526732-08:00,998.36669921875,10.83213,10832.13 +137,2025-03-07T00:24:39.341426-08:00,998.3677978515625,10.814694,10814.694 +138,2025-03-07T00:24:50.166273-08:00,998.333740234375,10.824847,10824.847 +139,2025-03-07T00:25:00.991496-08:00,998.3389892578125,10.825223,10825.223 +140,2025-03-07T00:25:11.818716-08:00,998.3258056640625,10.82722,10827.22 +141,2025-03-07T00:25:22.649266-08:00,998.3800048828125,10.83055,10830.55 +142,2025-03-07T00:25:33.476110-08:00,998.3456420898438,10.826844,10826.844 +143,2025-03-07T00:25:44.295287-08:00,998.3115844726562,10.819177,10819.177 +144,2025-03-07T00:25:55.115289-08:00,998.3720092773438,10.820002,10820.002 +145,2025-03-07T00:26:05.944169-08:00,998.3775024414062,10.82888,10828.88 +146,2025-03-07T00:26:16.778258-08:00,998.3289184570312,10.834089,10834.089 +147,2025-03-07T00:26:27.596605-08:00,998.3552856445312,10.818347,10818.347 +148,2025-03-07T00:26:38.428360-08:00,998.3497924804688,10.831755,10831.755 +149,2025-03-07T00:26:49.252803-08:00,998.3761596679688,10.824443,10824.443 +150,2025-03-07T00:27:00.085585-08:00,998.3817138671875,10.832782,10832.782 +151,2025-03-07T00:27:10.910492-08:00,998.3751831054688,10.824907,10824.907 +152,2025-03-07T00:27:21.742529-08:00,998.3859252929688,10.832037,10832.037 +153,2025-03-07T00:27:32.563262-08:00,998.3803100585938,10.820733,10820.733 +154,2025-03-07T00:27:43.388338-08:00,998.386962890625,10.825076,10825.076 +155,2025-03-07T00:27:54.214438-08:00,998.3792724609375,10.8261,10826.1 +156,2025-03-07T00:28:05.048528-08:00,998.40673828125,10.83409,10834.09 +157,2025-03-07T00:28:15.868516-08:00,998.39111328125,10.819988,10819.988 +158,2025-03-07T00:28:26.699299-08:00,998.396728515625,10.830783,10830.783 +159,2025-03-07T00:28:37.519278-08:00,998.39111328125,10.819979,10819.979 +160,2025-03-07T00:28:48.341416-08:00,998.4043579101562,10.822138,10822.138 +161,2025-03-07T00:28:59.175616-08:00,998.4098510742188,10.8342,10834.2 +162,2025-03-07T00:29:09.996532-08:00,998.4098510742188,10.820916,10820.916 +163,2025-03-07T00:29:20.827615-08:00,998.4085083007812,10.831083,10831.083 +164,2025-03-07T00:29:31.644503-08:00,998.40087890625,10.816888,10816.888 +165,2025-03-07T00:29:42.464935-08:00,998.40087890625,10.820432,10820.432 +166,2025-03-07T00:29:53.285445-08:00,998.3942260742188,10.82051,10820.51 +167,2025-03-07T00:30:04.108286-08:00,998.3928833007812,10.822841,10822.841 +168,2025-03-07T00:30:14.932591-08:00,998.4193115234375,10.824305,10824.305 +169,2025-03-07T00:30:25.751288-08:00,998.4324951171875,10.818697,10818.697 +170,2025-03-07T00:30:36.577527-08:00,998.391845703125,10.826239,10826.239 +171,2025-03-07T00:30:47.393615-08:00,998.39599609375,10.816088,10816.088 +172,2025-03-07T00:30:58.217360-08:00,998.4036865234375,10.823745,10823.745 +173,2025-03-07T00:31:09.043696-08:00,998.4026489257812,10.826336,10826.336 +174,2025-03-07T00:31:19.863349-08:00,998.39599609375,10.819653,10819.653 +175,2025-03-07T00:31:30.691827-08:00,998.4554443359375,10.828478,10828.478 +176,2025-03-07T00:31:41.516643-08:00,998.400146484375,10.824816,10824.816 +177,2025-03-07T00:31:52.347454-08:00,998.373779296875,10.830811,10830.811 +178,2025-03-07T00:32:03.173318-08:00,998.3936157226562,10.825864,10825.864 +179,2025-03-07T00:32:14.005289-08:00,998.3978271484375,10.831971,10831.971 +180,2025-03-07T00:32:24.831595-08:00,998.4188842773438,10.826306,10826.306 +181,2025-03-07T00:32:35.656535-08:00,998.4109497070312,10.82494,10824.94 +182,2025-03-07T00:32:46.489494-08:00,998.3978271484375,10.832959,10832.959 +183,2025-03-07T00:32:57.318283-08:00,998.4043579101562,10.828789,10828.789 +184,2025-03-07T00:33:08.141503-08:00,998.4283447265625,10.82322,10823.22 +185,2025-03-07T00:33:18.962288-08:00,998.4415893554688,10.820785,10820.785 +186,2025-03-07T00:33:29.798845-08:00,998.4140625,10.836557,10836.557 +187,2025-03-07T00:33:40.629285-08:00,998.407470703125,10.83044,10830.44 +188,2025-03-07T00:33:51.456317-08:00,998.407470703125,10.827032,10827.032 +189,2025-03-07T00:34:02.277325-08:00,998.3796997070312,10.821008,10821.008 +190,2025-03-07T00:34:13.108548-08:00,998.407470703125,10.831223,10831.223 +191,2025-03-07T00:34:23.936411-08:00,998.4182739257812,10.827863,10827.863 +192,2025-03-07T00:34:34.772401-08:00,998.4470825195312,10.83599,10835.99 +193,2025-03-07T00:34:45.592287-08:00,998.391845703125,10.819886,10819.886 +194,2025-03-07T00:34:56.415278-08:00,998.4117431640625,10.822991,10822.991 +195,2025-03-07T00:35:07.244620-08:00,998.4367065429688,10.829342,10829.342 +196,2025-03-07T00:35:18.075315-08:00,998.4381103515625,10.830695,10830.695 +197,2025-03-07T00:35:28.902351-08:00,998.44580078125,10.827036,10827.036 +198,2025-03-07T00:35:39.728858-08:00,998.4092407226562,10.826507,10826.507 +199,2025-03-07T00:35:50.550038-08:00,998.4168701171875,10.82118,10821.18 +200,2025-03-07T00:36:01.375430-08:00,998.4092407226562,10.825392,10825.392 +201,2025-03-07T00:36:12.202821-08:00,998.4235229492188,10.827391,10827.391 +202,2025-03-07T00:36:23.025308-08:00,998.3748168945312,10.822487,10822.487 +203,2025-03-07T00:36:33.852289-08:00,998.3828125,10.826981,10826.981 +204,2025-03-07T00:36:44.686510-08:00,998.4224853515625,10.834221,10834.221 +205,2025-03-07T00:36:55.504525-08:00,998.3724975585938,10.818015,10818.015 +206,2025-03-07T00:37:06.323558-08:00,998.3870239257812,10.819033,10819.033 +207,2025-03-07T00:37:17.150285-08:00,998.3856201171875,10.826727,10826.727 +208,2025-03-07T00:37:27.984649-08:00,998.4068603515625,10.834364,10834.364 +209,2025-03-07T00:37:38.800291-08:00,998.3870239257812,10.815642,10815.642 +210,2025-03-07T00:37:49.629521-08:00,998.4134521484375,10.82923,10829.23 +211,2025-03-07T00:38:00.454419-08:00,998.4266357421875,10.824898,10824.898 +212,2025-03-07T00:38:11.283283-08:00,998.4266357421875,10.828864,10828.864 +213,2025-03-07T00:38:22.117421-08:00,998.4068603515625,10.834138,10834.138 +214,2025-03-07T00:38:32.946262-08:00,998.3845825195312,10.828841,10828.841 +215,2025-03-07T00:38:43.771345-08:00,998.3845825195312,10.825083,10825.083 +216,2025-03-07T00:38:54.596508-08:00,998.4176025390625,10.825163,10825.163 +217,2025-03-07T00:39:05.423850-08:00,998.4085693359375,10.827342,10827.342 +218,2025-03-07T00:39:16.243048-08:00,998.4216918945312,10.819198,10819.198 +219,2025-03-07T00:39:27.069896-08:00,998.4071655273438,10.826848,10826.848 +220,2025-03-07T00:39:37.901567-08:00,998.4071655273438,10.831671,10831.671 +221,2025-03-07T00:39:48.727772-08:00,998.400634765625,10.826205,10826.205 +222,2025-03-07T00:39:59.555295-08:00,998.4060668945312,10.827523,10827.523 +223,2025-03-07T00:40:10.391755-08:00,998.3970947265625,10.83646,10836.46 +224,2025-03-07T00:40:21.221591-08:00,998.4117431640625,10.829836,10829.836 +225,2025-03-07T00:40:32.042179-08:00,998.4037475585938,10.820588,10820.588 +226,2025-03-07T00:40:42.869289-08:00,998.4026489257812,10.82711,10827.11 +227,2025-03-07T00:40:53.691427-08:00,998.3961181640625,10.822138,10822.138 +228,2025-03-07T00:41:04.526281-08:00,998.3961181640625,10.834854,10834.854 +229,2025-03-07T00:41:15.346282-08:00,998.3947143554688,10.820001,10820.001 +230,2025-03-07T00:41:26.179934-08:00,998.4078979492188,10.833652,10833.652 +231,2025-03-07T00:41:36.992752-08:00,998.3779907226562,10.812818,10812.818 +232,2025-03-07T00:41:47.820400-08:00,998.4012451171875,10.827648,10827.648 +233,2025-03-07T00:41:58.639289-08:00,998.3870239257812,10.818889,10818.889 +234,2025-03-07T00:42:09.469284-08:00,998.3922729492188,10.829995,10829.995 +235,2025-03-07T00:42:20.291630-08:00,998.3856201171875,10.822346,10822.346 +236,2025-03-07T00:42:31.111289-08:00,998.3699951171875,10.819659,10819.659 +237,2025-03-07T00:42:41.942595-08:00,998.3766479492188,10.831306,10831.306 +238,2025-03-07T00:42:52.764368-08:00,998.3478393554688,10.821773,10821.773 +239,2025-03-07T00:43:03.583277-08:00,998.3742065429688,10.818909,10818.909 +240,2025-03-07T00:43:14.404606-08:00,998.3756103515625,10.821329,10821.329 +241,2025-03-07T00:43:25.227765-08:00,998.36767578125,10.823159,10823.159 +242,2025-03-07T00:43:36.045393-08:00,998.3533325195312,10.817628,10817.628 +243,2025-03-07T00:43:46.865872-08:00,998.3742065429688,10.820479,10820.479 +244,2025-03-07T00:43:57.688731-08:00,998.3665771484375,10.822859,10822.859 +245,2025-03-07T00:44:08.506281-08:00,998.3585815429688,10.81755,10817.55 +246,2025-03-07T00:44:19.333343-08:00,998.3796997070312,10.827062,10827.062 +247,2025-03-07T00:44:30.149274-08:00,998.3585815429688,10.815931,10815.931 +248,2025-03-07T00:44:40.973285-08:00,998.3717041015625,10.824011,10824.011 +249,2025-03-07T00:44:51.798286-08:00,998.3707275390625,10.825001,10825.001 +250,2025-03-07T00:45:02.616416-08:00,998.3783569335938,10.81813,10818.13 +251,2025-03-07T00:45:13.440207-08:00,998.3509521484375,10.823791,10823.791 +252,2025-03-07T00:45:24.261342-08:00,998.3915405273438,10.821135,10821.135 +253,2025-03-07T00:45:35.087282-08:00,998.3995361328125,10.82594,10825.94 +254,2025-03-07T00:45:45.913759-08:00,998.3863525390625,10.826477,10826.477 +255,2025-03-07T00:45:56.739624-08:00,998.3773193359375,10.825865,10825.865 +256,2025-03-07T00:46:07.565832-08:00,998.4168701171875,10.826208,10826.208 +257,2025-03-07T00:46:18.385419-08:00,998.3682861328125,10.819587,10819.587 +258,2025-03-07T00:46:29.203280-08:00,998.3825073242188,10.817861,10817.861 +259,2025-03-07T00:46:40.025626-08:00,998.37353515625,10.822346,10822.346 +260,2025-03-07T00:46:50.852328-08:00,998.364501953125,10.826702,10826.702 +261,2025-03-07T00:47:01.668521-08:00,998.3790893554688,10.816193,10816.193 +262,2025-03-07T00:47:12.485618-08:00,998.404052734375,10.817097,10817.097 +263,2025-03-07T00:47:23.302267-08:00,998.3898315429688,10.816649,10816.649 +264,2025-03-07T00:47:34.126284-08:00,998.3873291015625,10.824017,10824.017 +265,2025-03-07T00:47:44.960284-08:00,998.4019775390625,10.834,10834.0 +266,2025-03-07T00:47:55.775284-08:00,998.3651733398438,10.815,10815.0 +267,2025-03-07T00:48:06.600886-08:00,998.3796997070312,10.825602,10825.602 +268,2025-03-07T00:48:17.429266-08:00,998.385009765625,10.82838,10828.38 +269,2025-03-07T00:48:28.246389-08:00,998.3640747070312,10.817123,10817.123 +270,2025-03-07T00:48:39.066813-08:00,998.3495483398438,10.820424,10820.424 +271,2025-03-07T00:48:49.880292-08:00,998.3759155273438,10.813479,10813.479 +272,2025-03-07T00:49:00.707815-08:00,998.3627319335938,10.827523,10827.523 +273,2025-03-07T00:49:11.516279-08:00,998.3759155273438,10.808464,10808.464 +274,2025-03-07T00:49:22.340686-08:00,998.3814697265625,10.824407,10824.407 +275,2025-03-07T00:49:33.156268-08:00,998.4078369140625,10.815582,10815.582 +276,2025-03-07T00:49:43.977756-08:00,998.3947143554688,10.821488,10821.488 +277,2025-03-07T00:49:54.794630-08:00,998.3724365234375,10.816874,10816.874 +278,2025-03-07T00:50:05.613410-08:00,998.3842163085938,10.81878,10818.78 +279,2025-03-07T00:50:16.434646-08:00,998.3724365234375,10.821236,10821.236 +280,2025-03-07T00:50:27.263750-08:00,998.37109375,10.829104,10829.104 +281,2025-03-07T00:50:38.084273-08:00,998.3975219726562,10.820523,10820.523 +282,2025-03-07T00:50:48.906292-08:00,998.3699951171875,10.822019,10822.019 +283,2025-03-07T00:50:59.733273-08:00,998.3634643554688,10.826981,10826.981 +284,2025-03-07T00:51:10.545473-08:00,998.3831787109375,10.8122,10812.2 +285,2025-03-07T00:51:21.364710-08:00,998.362060546875,10.819237,10819.237 +286,2025-03-07T00:51:32.193278-08:00,998.3609619140625,10.828568,10828.568 +287,2025-03-07T00:51:43.006338-08:00,998.3411865234375,10.81306,10813.06 +288,2025-03-07T00:51:53.827463-08:00,998.359619140625,10.821125,10821.125 +289,2025-03-07T00:52:04.652866-08:00,998.3675537109375,10.825403,10825.403 +290,2025-03-07T00:52:15.477424-08:00,998.3849487304688,10.824558,10824.558 +291,2025-03-07T00:52:26.299343-08:00,998.3783569335938,10.821919,10821.919 +292,2025-03-07T00:52:37.119288-08:00,998.357177734375,10.819945,10819.945 +293,2025-03-07T00:52:47.947618-08:00,998.3836059570312,10.82833,10828.33 +294,2025-03-07T00:52:58.770601-08:00,998.3825073242188,10.822983,10822.983 +295,2025-03-07T00:53:09.588288-08:00,998.381103515625,10.817687,10817.687 +296,2025-03-07T00:53:20.422551-08:00,998.3759155273438,10.834263,10834.263 +297,2025-03-07T00:53:31.243591-08:00,998.381103515625,10.82104,10821.04 +298,2025-03-07T00:53:42.063162-08:00,998.3512573242188,10.819571,10819.571 +299,2025-03-07T00:53:52.892256-08:00,998.3460083007812,10.829094,10829.094 +300,2025-03-07T00:54:03.706439-08:00,998.3657836914062,10.814183,10814.183 +301,2025-03-07T00:54:14.537687-08:00,998.3856201171875,10.831248,10831.248 +302,2025-03-07T00:54:25.357597-08:00,998.3765869140625,10.81991,10819.91 +303,2025-03-07T00:54:36.178313-08:00,998.3748168945312,10.820716,10820.716 +304,2025-03-07T00:54:47.005436-08:00,998.3765869140625,10.827123,10827.123 +305,2025-03-07T00:54:57.826286-08:00,998.3748168945312,10.82085,10820.85 +306,2025-03-07T00:55:08.650791-08:00,998.3964233398438,10.824505,10824.505 +307,2025-03-07T00:55:19.469490-08:00,998.3964233398438,10.818699,10818.699 +308,2025-03-07T00:55:30.291277-08:00,998.3947143554688,10.821787,10821.787 +309,2025-03-07T00:55:41.112576-08:00,998.3658447265625,10.821299,10821.299 +310,2025-03-07T00:55:51.941594-08:00,998.3922729492188,10.829018,10829.018 +311,2025-03-07T00:56:02.762716-08:00,998.3790893554688,10.821122,10821.122 +312,2025-03-07T00:56:13.590429-08:00,998.3978271484375,10.827713,10827.713 +313,2025-03-07T00:56:24.408764-08:00,998.4199829101562,10.818335,10818.335 +314,2025-03-07T00:56:35.225816-08:00,998.38330078125,10.817052,10817.052 +315,2025-03-07T00:56:46.055270-08:00,998.3898315429688,10.829454,10829.454 +316,2025-03-07T00:56:56.870278-08:00,998.4043579101562,10.815008,10815.008 +317,2025-03-07T00:57:07.698763-08:00,998.4096069335938,10.828485,10828.485 +318,2025-03-07T00:57:18.519285-08:00,998.4349365234375,10.820522,10820.522 +319,2025-03-07T00:57:29.347640-08:00,998.4151611328125,10.828355,10828.355 +320,2025-03-07T00:57:40.172295-08:00,998.4283447265625,10.824655,10824.655 +321,2025-03-07T00:57:50.994288-08:00,998.4137573242188,10.821993,10821.993 +322,2025-03-07T00:58:01.805774-08:00,998.424560546875,10.811486,10811.486 +323,2025-03-07T00:58:12.629510-08:00,998.43359375,10.823736,10823.736 +324,2025-03-07T00:58:23.451266-08:00,998.4390869140625,10.821756,10821.756 +325,2025-03-07T00:58:34.277573-08:00,998.440185546875,10.826307,10826.307 +326,2025-03-07T00:58:45.092011-08:00,998.4523315429688,10.814438,10814.438 +327,2025-03-07T00:58:55.917520-08:00,998.4467163085938,10.825509,10825.509 +328,2025-03-07T00:59:06.734933-08:00,998.4679565429688,10.817413,10817.413 +329,2025-03-07T00:59:17.553375-08:00,998.4640502929688,10.818442,10818.442 +330,2025-03-07T00:59:28.369240-08:00,998.4310913085938,10.815865,10815.865 +331,2025-03-07T00:59:39.195866-08:00,998.422119140625,10.826626,10826.626 +332,2025-03-07T00:59:50.015725-08:00,998.44189453125,10.819859,10819.859 +333,2025-03-07T01:00:00.831715-08:00,998.422119140625,10.81599,10815.99 +334,2025-03-07T01:00:11.644671-08:00,998.4210205078125,10.812956,10812.956 +335,2025-03-07T01:00:22.466894-08:00,998.4606323242188,10.822223,10822.223 +336,2025-03-07T01:00:33.280408-08:00,998.45263671875,10.813514,10813.514 +337,2025-03-07T01:00:44.097283-08:00,998.42626953125,10.816875,10816.875 +338,2025-03-07T01:00:54.918376-08:00,998.4414672851562,10.821093,10821.093 +339,2025-03-07T01:01:05.732346-08:00,998.4467163085938,10.81397,10813.97 +340,2025-03-07T01:01:16.549279-08:00,998.4220581054688,10.816933,10816.933 +341,2025-03-07T01:01:27.362276-08:00,998.4196166992188,10.812997,10812.997 +342,2025-03-07T01:01:38.183586-08:00,998.4581298828125,10.82131,10821.31 +343,2025-03-07T01:01:49.004283-08:00,998.4359130859375,10.820697,10820.697 +344,2025-03-07T01:01:59.823264-08:00,998.4533081054688,10.818981,10818.981 +345,2025-03-07T01:02:10.654182-08:00,998.4533081054688,10.830918,10830.918 +346,2025-03-07T01:02:21.469119-08:00,998.4428100585938,10.814937,10814.937 +347,2025-03-07T01:02:32.294904-08:00,998.4559936523438,10.825785,10825.785 +348,2025-03-07T01:02:43.115835-08:00,998.4327392578125,10.820931,10820.931 +349,2025-03-07T01:02:53.944528-08:00,998.427490234375,10.828693,10828.693 +350,2025-03-07T01:03:01.401573-08:00,998.4392700195312,7.457045,7457.045 +351,2025-03-07T01:03:04.762659-08:00,998.4302978515625,3.361086,3361.086 +352,2025-03-07T01:03:15.575595-08:00,998.4070434570312,10.812936,10812.936 +353,2025-03-07T01:03:26.396591-08:00,998.433349609375,10.820996,10820.996 +354,2025-03-07T01:03:37.213285-08:00,998.34375,10.816694,10816.694 +355,2025-03-07T01:03:48.034529-08:00,998.3900146484375,10.821244,10821.244 +356,2025-03-07T01:03:58.847529-08:00,998.361083984375,10.813,10813.0 +357,2025-03-07T01:04:09.666418-08:00,998.439208984375,10.818889,10818.889 +358,2025-03-07T01:04:20.486616-08:00,998.4170532226562,10.820198,10820.198 +359,2025-03-07T01:04:31.316544-08:00,998.4420166015625,10.829928,10829.928 +360,2025-03-07T01:04:42.128585-08:00,998.4197387695312,10.812041,10812.041 +361,2025-03-07T01:04:52.956269-08:00,998.42529296875,10.827684,10827.684 +362,2025-03-07T01:05:03.769829-08:00,998.4031372070312,10.81356,10813.56 +363,2025-03-07T01:05:14.590785-08:00,998.3807983398438,10.820956,10820.956 +364,2025-03-07T01:05:25.417304-08:00,998.3864135742188,10.826519,10826.519 +365,2025-03-07T01:05:36.221922-08:00,998.4078369140625,10.804618,10804.618 +366,2025-03-07T01:05:47.033073-08:00,998.459228515625,10.811151,10811.151 +367,2025-03-07T01:05:57.850141-08:00,998.43701171875,10.817068,10817.068 +368,2025-03-07T01:06:08.669427-08:00,998.42138671875,10.819286,10819.286 +369,2025-03-07T01:06:19.495067-08:00,998.4442138671875,10.82564,10825.64 +370,2025-03-07T01:06:30.304816-08:00,998.4615478515625,10.809749,10809.749 +371,2025-03-07T01:06:41.122095-08:00,998.4327392578125,10.817279,10817.279 +372,2025-03-07T01:06:51.945090-08:00,998.4368896484375,10.822995,10822.995 +373,2025-03-07T01:07:02.751347-08:00,998.4806518554688,10.806257,10806.257 +374,2025-03-07T01:07:13.567836-08:00,998.47705078125,10.816489,10816.489 +375,2025-03-07T01:07:24.387161-08:00,998.5152587890625,10.819325,10819.325 +376,2025-03-07T01:07:35.206647-08:00,998.5103149414062,10.819486,10819.486 +377,2025-03-07T01:07:46.013889-08:00,998.5301513671875,10.807242,10807.242 +378,2025-03-07T01:07:56.828843-08:00,998.5398559570312,10.814954,10814.954 +379,2025-03-07T01:08:07.648855-08:00,998.5109252929688,10.820012,10820.012 +380,2025-03-07T01:08:18.456183-08:00,998.5362548828125,10.807328,10807.328 +381,2025-03-07T01:08:29.270855-08:00,998.5181274414062,10.814672,10814.672 +382,2025-03-07T01:08:40.081098-08:00,998.5365600585938,10.810243,10810.243 +383,2025-03-07T01:08:50.897078-08:00,998.5552978515625,10.81598,10815.98 +384,2025-03-07T01:09:01.715544-08:00,998.5330200195312,10.818466,10818.466 +385,2025-03-07T01:09:12.540195-08:00,998.5490112304688,10.824651,10824.651 +386,2025-03-07T01:09:23.363342-08:00,998.51904296875,10.823147,10823.147 +387,2025-03-07T01:09:34.173667-08:00,998.5572509765625,10.810325,10810.325 +388,2025-03-07T01:09:44.992082-08:00,998.54052734375,10.818415,10818.415 +389,2025-03-07T01:09:55.807216-08:00,998.5578002929688,10.815134,10815.134 +390,2025-03-07T01:10:06.621276-08:00,998.529052734375,10.81406,10814.06 +391,2025-03-07T01:10:17.450945-08:00,998.5331420898438,10.829669,10829.669 +392,2025-03-07T01:10:28.261152-08:00,998.549072265625,10.810207,10810.207 +393,2025-03-07T01:10:39.081977-08:00,998.5477294921875,10.820825,10820.825 +394,2025-03-07T01:10:49.891065-08:00,998.5518798828125,10.809088,10809.088 +395,2025-03-07T01:11:00.709945-08:00,998.5493774414062,10.81888,10818.88 +396,2025-03-07T01:11:11.525835-08:00,998.555908203125,10.81589,10815.89 +397,2025-03-07T01:11:22.348840-08:00,998.592041015625,10.823005,10823.005 +398,2025-03-07T01:11:33.168125-08:00,998.5621337890625,10.819285,10819.285 +399,2025-03-07T01:11:43.981851-08:00,998.54638671875,10.813726,10813.726 +400,2025-03-07T01:11:54.795819-08:00,998.5318603515625,10.813968,10813.968 +401,2025-03-07T01:12:05.611053-08:00,998.5623168945312,10.815234,10815.234 +402,2025-03-07T01:12:16.424268-08:00,998.5745239257812,10.813215,10813.215 +403,2025-03-07T01:12:27.232505-08:00,998.544189453125,10.808237,10808.237 +404,2025-03-07T01:12:38.049845-08:00,998.5418090820312,10.81734,10817.34 +405,2025-03-07T01:12:48.858200-08:00,998.5736694335938,10.808355,10808.355 +406,2025-03-07T01:12:59.659845-08:00,998.5580444335938,10.801645,10801.645 +407,2025-03-07T01:13:10.475150-08:00,998.5767211914062,10.815305,10815.305 +408,2025-03-07T01:13:21.290107-08:00,998.5965576171875,10.814957,10814.957 +409,2025-03-07T01:13:32.097074-08:00,998.5861206054688,10.806967,10806.967 +410,2025-03-07T01:13:42.920183-08:00,998.5770263671875,10.823109,10823.109 +411,2025-03-07T01:13:53.727458-08:00,998.562744140625,10.807275,10807.275 +412,2025-03-07T01:14:04.548842-08:00,998.547119140625,10.821384,10821.384 +413,2025-03-07T01:14:15.360842-08:00,998.5643920898438,10.812,10812.0 +414,2025-03-07T01:14:26.170413-08:00,998.5367431640625,10.809571,10809.571 +415,2025-03-07T01:14:36.983293-08:00,998.5487670898438,10.81288,10812.88 +416,2025-03-07T01:14:47.796889-08:00,998.5462646484375,10.813596,10813.596 +417,2025-03-07T01:14:58.606257-08:00,998.591064453125,10.809368,10809.368 +418,2025-03-07T01:15:09.424097-08:00,998.569091796875,10.81784,10817.84 +419,2025-03-07T01:15:20.234194-08:00,998.5784301757812,10.810097,10810.097 +420,2025-03-07T01:15:31.042977-08:00,998.5748291015625,10.808783,10808.783 +421,2025-03-07T01:15:41.852131-08:00,998.5748291015625,10.809154,10809.154 +422,2025-03-07T01:15:52.667132-08:00,998.5592041015625,10.815001,10815.001 +423,2025-03-07T01:16:03.487103-08:00,998.5592041015625,10.819971,10819.971 +424,2025-03-07T01:16:14.303907-08:00,998.5435791015625,10.816804,10816.804 +425,2025-03-07T01:16:25.122226-08:00,998.5487670898438,10.818319,10818.319 +426,2025-03-07T01:16:35.932072-08:00,998.5700073242188,10.809846,10809.846 +427,2025-03-07T01:16:46.745142-08:00,998.568603515625,10.81307,10813.07 +428,2025-03-07T01:16:57.560844-08:00,998.555419921875,10.815702,10815.702 +429,2025-03-07T01:17:08.369160-08:00,998.5543212890625,10.808316,10808.316 +430,2025-03-07T01:17:19.189701-08:00,998.5675048828125,10.820541,10820.541 +431,2025-03-07T01:17:30.004991-08:00,998.5421752929688,10.81529,10815.29 +432,2025-03-07T01:17:40.818830-08:00,998.5543212890625,10.813839,10813.839 +433,2025-03-07T01:17:51.632839-08:00,998.5567016601562,10.814009,10814.009 +434,2025-03-07T01:18:02.446165-08:00,998.5543212890625,10.813326,10813.326 +435,2025-03-07T01:18:13.250908-08:00,998.5543212890625,10.804743,10804.743 +436,2025-03-07T01:18:24.072061-08:00,998.5345458984375,10.821153,10821.153 +437,2025-03-07T01:18:34.886821-08:00,998.555419921875,10.81476,10814.76 +438,2025-03-07T01:18:45.695895-08:00,998.5609130859375,10.809074,10809.074 +439,2025-03-07T01:18:56.504043-08:00,998.5518798828125,10.808148,10808.148 +440,2025-03-07T01:19:07.324845-08:00,998.5792236328125,10.820802,10820.802 +441,2025-03-07T01:19:18.132821-08:00,998.5847778320312,10.807976,10807.976 +442,2025-03-07T01:19:28.952834-08:00,998.5386962890625,10.820013,10820.013 +443,2025-03-07T01:19:39.770060-08:00,998.5635986328125,10.817226,10817.226 +444,2025-03-07T01:19:50.581435-08:00,998.5758056640625,10.811375,10811.375 +445,2025-03-07T01:20:01.392276-08:00,998.5900268554688,10.810841,10810.841 +446,2025-03-07T01:20:12.201834-08:00,998.5940551757812,10.809558,10809.558 +447,2025-03-07T01:20:23.014879-08:00,998.5889282226562,10.813045,10813.045 +448,2025-03-07T01:20:33.829115-08:00,998.5733032226562,10.814236,10814.236 +449,2025-03-07T01:20:44.646676-08:00,998.553466796875,10.817561,10817.561 +450,2025-03-07T01:20:55.453922-08:00,998.56005859375,10.807246,10807.246 +451,2025-03-07T01:21:06.263183-08:00,998.579833984375,10.809261,10809.261 +452,2025-03-07T01:21:17.072159-08:00,998.551025390625,10.808976,10808.976 +453,2025-03-07T01:21:27.888123-08:00,998.5419311523438,10.815964,10815.964 +454,2025-03-07T01:21:38.699834-08:00,998.5839233398438,10.811711,10811.711 +455,2025-03-07T01:21:49.515829-08:00,998.574951171875,10.815995,10815.995 +456,2025-03-07T01:22:00.325194-08:00,998.574951171875,10.809365,10809.365 +457,2025-03-07T01:22:11.139896-08:00,998.55517578125,10.814702,10814.702 +458,2025-03-07T01:22:21.950842-08:00,998.5606079101562,10.810946,10810.946 +459,2025-03-07T01:22:32.765449-08:00,998.5856323242188,10.814607,10814.607 +460,2025-03-07T01:22:43.583738-08:00,998.5568237304688,10.818289,10818.289 +461,2025-03-07T01:22:54.392220-08:00,998.5647583007812,10.808482,10808.482 +462,2025-03-07T01:23:05.208161-08:00,998.5689086914062,10.815941,10815.941 +463,2025-03-07T01:23:16.021973-08:00,998.5740356445312,10.813812,10813.812 +464,2025-03-07T01:23:26.842034-08:00,998.5543212890625,10.820061,10820.061 +465,2025-03-07T01:23:37.658476-08:00,998.586181640625,10.816442,10816.442 +466,2025-03-07T01:23:48.466891-08:00,998.5928344726562,10.808415,10808.415 +467,2025-03-07T01:23:59.288895-08:00,998.5847778320312,10.822004,10822.004 +468,2025-03-07T01:24:10.096832-08:00,998.5914306640625,10.807937,10807.937 +469,2025-03-07T01:24:20.910314-08:00,998.583740234375,10.813482,10813.482 +470,2025-03-07T01:24:31.730196-08:00,998.60205078125,10.819882,10819.882 +471,2025-03-07T01:24:42.543088-08:00,998.5878295898438,10.812892,10812.892 +472,2025-03-07T01:24:53.358821-08:00,998.5943603515625,10.815733,10815.733 +473,2025-03-07T01:25:04.174844-08:00,998.6259155273438,10.816023,10816.023 +474,2025-03-07T01:25:14.997838-08:00,998.6168823242188,10.822994,10822.994 +475,2025-03-07T01:25:25.811160-08:00,998.5722045898438,10.813322,10813.322 +476,2025-03-07T01:25:36.618017-08:00,998.6102905273438,10.806857,10806.857 +477,2025-03-07T01:25:47.426788-08:00,998.6157836914062,10.808771,10808.771 +478,2025-03-07T01:25:58.241851-08:00,998.6289672851562,10.815063,10815.063 +479,2025-03-07T01:26:09.044990-08:00,998.6278686523438,10.803139,10803.139 +480,2025-03-07T01:26:19.859177-08:00,998.64111328125,10.814187,10814.187 +481,2025-03-07T01:26:30.676866-08:00,998.604248046875,10.817689,10817.689 +482,2025-03-07T01:26:41.489901-08:00,998.6188354492188,10.813035,10813.035 +483,2025-03-07T01:26:52.308829-08:00,998.650390625,10.818928,10818.928 +484,2025-03-07T01:27:03.123370-08:00,998.6426391601562,10.814541,10814.541 +485,2025-03-07T01:27:13.945082-08:00,998.62158203125,10.821712,10821.712 +486,2025-03-07T01:27:24.751906-08:00,998.6676635742188,10.806824,10806.824 +487,2025-03-07T01:27:35.569843-08:00,998.6874389648438,10.817937,10817.937 +488,2025-03-07T01:27:46.372811-08:00,998.6297607421875,10.802968,10802.968 +489,2025-03-07T01:27:57.192161-08:00,998.6783447265625,10.81935,10819.35 +490,2025-03-07T01:28:08.002113-08:00,998.6838989257812,10.809952,10809.952 +491,2025-03-07T01:28:18.816976-08:00,998.7088012695312,10.814863,10814.863 +492,2025-03-07T01:28:29.629085-08:00,998.6945190429688,10.812109,10812.109 +493,2025-03-07T01:28:40.436838-08:00,998.68798828125,10.807753,10807.753 +494,2025-03-07T01:28:51.255341-08:00,998.707763671875,10.818503,10818.503 +495,2025-03-07T01:29:02.067839-08:00,998.73681640625,10.812498,10812.498 +496,2025-03-07T01:29:12.885124-08:00,998.7235717773438,10.817285,10817.285 +497,2025-03-07T01:29:23.690821-08:00,998.692626953125,10.805697,10805.697 +498,2025-03-07T01:29:34.507950-08:00,998.6871948242188,10.817129,10817.129 +499,2025-03-07T01:29:45.327142-08:00,998.69921875,10.819192,10819.192 +500,2025-03-07T01:29:56.142011-08:00,998.6912231445312,10.814869,10814.869 +501,2025-03-07T01:30:06.955830-08:00,998.704345703125,10.813819,10813.819 +502,2025-03-07T01:30:17.767075-08:00,998.6978149414062,10.811245,10811.245 +503,2025-03-07T01:30:28.579884-08:00,998.688720703125,10.812809,10812.809 +504,2025-03-07T01:30:39.382883-08:00,998.7008666992188,10.802999,10802.999 +505,2025-03-07T01:30:50.199000-08:00,998.70849609375,10.816117,10816.117 +506,2025-03-07T01:31:01.007847-08:00,998.6785888671875,10.808847,10808.847 +507,2025-03-07T01:31:11.820160-08:00,998.6837768554688,10.812313,10812.313 +508,2025-03-07T01:31:22.626065-08:00,998.6917724609375,10.805905,10805.905 +509,2025-03-07T01:31:33.437982-08:00,998.6892700195312,10.811917,10811.917 +510,2025-03-07T01:31:44.248844-08:00,998.6813354492188,10.810862,10810.862 +511,2025-03-07T01:31:55.056887-08:00,998.6892700195312,10.808043,10808.043 +512,2025-03-07T01:32:05.867076-08:00,998.6934204101562,10.810189,10810.189 +513,2025-03-07T01:32:16.682843-08:00,998.6539306640625,10.815767,10815.767 +514,2025-03-07T01:32:27.497825-08:00,998.6656494140625,10.814982,10814.982 +515,2025-03-07T01:32:38.311079-08:00,998.677734375,10.813254,10813.254 +516,2025-03-07T01:32:49.112843-08:00,998.71728515625,10.801764,10801.764 +517,2025-03-07T01:32:59.920851-08:00,998.6950073242188,10.808008,10808.008 +518,2025-03-07T01:33:10.731875-08:00,998.6961059570312,10.811024,10811.024 +519,2025-03-07T01:33:21.548318-08:00,998.7081909179688,10.816443,10816.443 +520,2025-03-07T01:33:32.360959-08:00,998.68701171875,10.812641,10812.641 +521,2025-03-07T01:33:43.171150-08:00,998.6991577148438,10.810191,10810.191 +522,2025-03-07T01:33:53.977815-08:00,998.6966552734375,10.806665,10806.665 +523,2025-03-07T01:34:04.789837-08:00,998.682373046875,10.812022,10812.022 +524,2025-03-07T01:34:15.591828-08:00,998.68896484375,10.801991,10801.991 +525,2025-03-07T01:34:26.413083-08:00,998.7008056640625,10.821255,10821.255 +526,2025-03-07T01:34:37.227183-08:00,998.69140625,10.8141,10814.1 +527,2025-03-07T01:34:48.039070-08:00,998.67822265625,10.811887,10811.887 +528,2025-03-07T01:34:58.855346-08:00,998.69140625,10.816276,10816.276 +529,2025-03-07T01:35:09.669898-08:00,998.67578125,10.814552,10814.552 +530,2025-03-07T01:35:20.484624-08:00,998.7020263671875,10.814726,10814.726 +531,2025-03-07T01:35:31.293227-08:00,998.6746826171875,10.808603,10808.603 +532,2025-03-07T01:35:42.113843-08:00,998.6691284179688,10.820616,10820.616 +533,2025-03-07T01:35:52.925992-08:00,998.7020263671875,10.812149,10812.149 +534,2025-03-07T01:36:03.743565-08:00,998.6864013671875,10.817573,10817.573 +535,2025-03-07T01:36:14.553385-08:00,998.6721801757812,10.80982,10809.82 +536,2025-03-07T01:36:25.367323-08:00,998.6787719726562,10.813938,10813.938 +537,2025-03-07T01:36:36.180838-08:00,998.6838989257812,10.813515,10813.515 +538,2025-03-07T01:36:46.991840-08:00,998.705078125,10.811002,10811.002 +539,2025-03-07T01:36:57.801837-08:00,998.7061767578125,10.809997,10809.997 +540,2025-03-07T01:37:08.618177-08:00,998.7036743164062,10.81634,10816.34 +541,2025-03-07T01:37:19.430114-08:00,998.694580078125,10.811937,10811.937 +542,2025-03-07T01:37:30.248216-08:00,998.748779296875,10.818102,10818.102 +543,2025-03-07T01:37:41.057815-08:00,998.6671752929688,10.809599,10809.599 +544,2025-03-07T01:37:51.878841-08:00,998.71435546875,10.821026,10821.026 +545,2025-03-07T01:38:02.688163-08:00,998.7078247070312,10.809322,10809.322 +546,2025-03-07T01:38:13.503835-08:00,998.7132568359375,10.815672,10815.672 +547,2025-03-07T01:38:24.324065-08:00,998.7503051757812,10.82023,10820.23 +548,2025-03-07T01:38:35.126816-08:00,998.7239990234375,10.802751,10802.751 +549,2025-03-07T01:38:45.946741-08:00,998.7514038085938,10.819925,10819.925 +550,2025-03-07T01:38:56.750548-08:00,998.7412719726562,10.803807,10803.807 +551,2025-03-07T01:39:07.571835-08:00,998.7159423828125,10.821287,10821.287 +552,2025-03-07T01:39:18.385291-08:00,998.7568969726562,10.813456,10813.456 +553,2025-03-07T01:39:29.204877-08:00,998.7529907226562,10.819586,10819.586 +554,2025-03-07T01:39:40.013794-08:00,998.7529907226562,10.808917,10808.917 +555,2025-03-07T01:39:50.824150-08:00,998.732177734375,10.810356,10810.356 +556,2025-03-07T01:40:01.640655-08:00,998.79248046875,10.816505,10816.505 +557,2025-03-07T01:40:12.450844-08:00,998.7442016601562,10.810189,10810.189 +558,2025-03-07T01:40:23.264874-08:00,998.7823486328125,10.81403,10814.03 +559,2025-03-07T01:40:34.076968-08:00,998.7427978515625,10.812094,10812.094 +560,2025-03-07T01:40:44.884775-08:00,998.7706298828125,10.807807,10807.807 +561,2025-03-07T01:40:55.698189-08:00,998.7681274414062,10.813414,10813.414 +562,2025-03-07T01:41:06.506090-08:00,998.75244140625,10.807901,10807.901 +563,2025-03-07T01:41:17.313057-08:00,998.7601318359375,10.806967,10806.967 +564,2025-03-07T01:41:28.114833-08:00,998.7601318359375,10.801776,10801.776 +565,2025-03-07T01:41:38.930840-08:00,998.765625,10.816007,10816.007 +566,2025-03-07T01:41:49.739068-08:00,998.75,10.808228,10808.228 +567,2025-03-07T01:42:00.543013-08:00,998.772216796875,10.803945,10803.945 +568,2025-03-07T01:42:11.344832-08:00,998.7787475585938,10.801819,10801.819 +569,2025-03-07T01:42:22.162643-08:00,998.8037719726562,10.817811,10817.811 +570,2025-03-07T01:42:32.969272-08:00,998.7828979492188,10.806629,10806.629 +571,2025-03-07T01:42:43.775413-08:00,998.7894287109375,10.806141,10806.141 +572,2025-03-07T01:42:54.587211-08:00,998.8092041015625,10.811798,10811.798 +573,2025-03-07T01:43:05.395842-08:00,998.8078002929688,10.808631,10808.631 +574,2025-03-07T01:43:16.199899-08:00,998.8067016601562,10.804057,10804.057 +575,2025-03-07T01:43:27.019828-08:00,998.8184204101562,10.819929,10819.929 +576,2025-03-07T01:43:37.830315-08:00,998.8396606445312,10.810487,10810.487 +577,2025-03-07T01:43:48.639991-08:00,998.8001708984375,10.809676,10809.676 +578,2025-03-07T01:43:59.457936-08:00,998.7831420898438,10.817945,10817.945 +579,2025-03-07T01:44:10.261316-08:00,998.7820434570312,10.80338,10803.38 +580,2025-03-07T01:44:21.075087-08:00,998.795166015625,10.813771,10813.771 +581,2025-03-07T01:44:31.884061-08:00,998.7871704101562,10.808974,10808.974 +582,2025-03-07T01:44:42.687842-08:00,998.8135375976562,10.803781,10803.781 +583,2025-03-07T01:44:53.496821-08:00,998.8124389648438,10.808979,10808.979 +584,2025-03-07T01:45:04.309854-08:00,998.8256225585938,10.813033,10813.033 +585,2025-03-07T01:45:15.122286-08:00,998.7966918945312,10.812432,10812.432 +586,2025-03-07T01:45:25.932530-08:00,998.830810546875,10.810244,10810.244 +587,2025-03-07T01:45:36.742816-08:00,998.862548828125,10.810286,10810.286 +588,2025-03-07T01:45:47.550064-08:00,998.8206176757812,10.807248,10807.248 +589,2025-03-07T01:45:58.361832-08:00,998.86669921875,10.811768,10811.768 +590,2025-03-07T01:46:09.161952-08:00,998.8601684570312,10.80012,10800.12 +591,2025-03-07T01:46:19.977078-08:00,998.8601684570312,10.815126,10815.126 +592,2025-03-07T01:46:30.778906-08:00,998.8392333984375,10.801828,10801.828 +593,2025-03-07T01:46:41.587688-08:00,998.8378295898438,10.808782,10808.782 +594,2025-03-07T01:46:52.395984-08:00,998.8565673828125,10.808296,10808.296 +595,2025-03-07T01:47:03.207364-08:00,998.8367309570312,10.81138,10811.38 +596,2025-03-07T01:47:14.024304-08:00,998.8433837890625,10.81694,10816.94 +597,2025-03-07T01:47:24.830107-08:00,998.8499145507812,10.805803,10805.803 +598,2025-03-07T01:47:35.631847-08:00,998.873779296875,10.80174,10801.74 +599,2025-03-07T01:47:46.447953-08:00,998.8682861328125,10.816106,10816.106 +600,2025-03-07T01:47:57.249126-08:00,998.8616943359375,10.801173,10801.173 +601,2025-03-07T01:48:08.057185-08:00,998.872314453125,10.808059,10808.059 +602,2025-03-07T01:48:18.873838-08:00,998.8657836914062,10.816653,10816.653 +603,2025-03-07T01:48:29.676882-08:00,998.8369750976562,10.803044,10803.044 +604,2025-03-07T01:48:40.486833-08:00,998.86328125,10.809951,10809.951 +605,2025-03-07T01:48:51.303144-08:00,998.8621826171875,10.816311,10816.311 +606,2025-03-07T01:49:02.116069-08:00,998.869873046875,10.812925,10812.925 +607,2025-03-07T01:49:12.925835-08:00,998.8819580078125,10.809766,10809.766 +608,2025-03-07T01:49:23.728821-08:00,998.8739624023438,10.802986,10802.986 +609,2025-03-07T01:49:34.533881-08:00,998.9068603515625,10.80506,10805.06 +610,2025-03-07T01:49:45.340230-08:00,998.8992309570312,10.806349,10806.349 +611,2025-03-07T01:49:56.146892-08:00,998.8861083984375,10.806662,10806.662 +612,2025-03-07T01:50:06.958890-08:00,998.912353515625,10.811998,10811.998 +613,2025-03-07T01:50:17.767710-08:00,998.8781127929688,10.80882,10808.82 +614,2025-03-07T01:50:28.581836-08:00,998.8451538085938,10.814126,10814.126 +615,2025-03-07T01:50:39.397812-08:00,998.8953247070312,10.815976,10815.976 +616,2025-03-07T01:50:50.205844-08:00,998.876953125,10.808032,10808.032 +617,2025-03-07T01:51:01.012918-08:00,998.8953247070312,10.807074,10807.074 +618,2025-03-07T01:51:11.834521-08:00,998.8689575195312,10.821603,10821.603 +619,2025-03-07T01:51:22.643165-08:00,998.881103515625,10.808644,10808.644 +620,2025-03-07T01:51:33.447940-08:00,998.867919921875,10.804775,10804.775 +621,2025-03-07T01:51:44.254989-08:00,998.83251953125,10.807049,10807.049 +622,2025-03-07T01:51:55.065836-08:00,998.8786010742188,10.810847,10810.847 +623,2025-03-07T01:52:05.867844-08:00,998.8643188476562,10.802008,10802.008 +624,2025-03-07T01:52:16.672226-08:00,998.8445434570312,10.804382,10804.382 +625,2025-03-07T01:52:27.481847-08:00,998.8496704101562,10.809621,10809.621 +626,2025-03-07T01:52:38.289854-08:00,998.8709106445312,10.808007,10808.007 +627,2025-03-07T01:52:49.103822-08:00,998.8760986328125,10.813968,10813.968 +628,2025-03-07T01:52:59.911337-08:00,998.8538208007812,10.807515,10807.515 +629,2025-03-07T01:53:10.727458-08:00,998.859375,10.816121,10816.121 +630,2025-03-07T01:53:21.534418-08:00,998.8724975585938,10.80696,10806.96 +631,2025-03-07T01:53:32.351144-08:00,998.864501953125,10.816726,10816.726 +632,2025-03-07T01:53:43.160085-08:00,998.8436889648438,10.808941,10808.941 +633,2025-03-07T01:53:53.963817-08:00,998.877685546875,10.803732,10803.732 +634,2025-03-07T01:54:04.780315-08:00,998.8477172851562,10.816498,10816.498 +635,2025-03-07T01:54:15.587109-08:00,998.8543701171875,10.806794,10806.794 +636,2025-03-07T01:54:26.391692-08:00,998.84228515625,10.804583,10804.583 +637,2025-03-07T01:54:37.203161-08:00,998.8529663085938,10.811469,10811.469 +638,2025-03-07T01:54:48.014177-08:00,998.825439453125,10.811016,10811.016 +639,2025-03-07T01:54:58.821830-08:00,998.8175048828125,10.807653,10807.653 +640,2025-03-07T01:55:09.628333-08:00,998.84521484375,10.806503,10806.503 +641,2025-03-07T01:55:20.440899-08:00,998.8265380859375,10.812566,10812.566 +642,2025-03-07T01:55:31.260259-08:00,998.836181640625,10.81936,10819.36 +643,2025-03-07T01:55:42.064839-08:00,998.8295288085938,10.80458,10804.58 +644,2025-03-07T01:55:52.880141-08:00,998.8427124023438,10.815302,10815.302 +645,2025-03-07T01:56:03.692130-08:00,998.849365234375,10.811989,10811.989 +646,2025-03-07T01:56:14.505707-08:00,998.8479614257812,10.813577,10813.577 +647,2025-03-07T01:56:25.311838-08:00,998.8336791992188,10.806131,10806.131 +648,2025-03-07T01:56:36.125838-08:00,998.8479614257812,10.814,10814.0 +649,2025-03-07T01:56:46.936918-08:00,998.8585815429688,10.81108,10811.08 +650,2025-03-07T01:56:57.750227-08:00,998.82568359375,10.813309,10813.309 +651,2025-03-07T01:57:08.560980-08:00,998.85205078125,10.810753,10810.753 +652,2025-03-07T01:57:19.380185-08:00,998.8574829101562,10.819205,10819.205 +653,2025-03-07T01:57:30.193326-08:00,998.8377075195312,10.813141,10813.141 +654,2025-03-07T01:57:41.003226-08:00,998.8509521484375,10.8099,10809.9 +655,2025-03-07T01:57:51.818875-08:00,998.83642578125,10.815649,10815.649 +656,2025-03-07T01:58:02.617157-08:00,998.83642578125,10.798282,10798.282 +657,2025-03-07T01:58:13.424464-08:00,998.834228515625,10.807307,10807.307 +658,2025-03-07T01:58:24.241074-08:00,998.8604736328125,10.81661,10816.61 +659,2025-03-07T01:58:35.041904-08:00,998.8407592773438,10.80083,10800.83 +660,2025-03-07T01:58:45.856898-08:00,998.8590698242188,10.814994,10814.994 +661,2025-03-07T01:58:56.660179-08:00,998.8524780273438,10.803281,10803.281 +662,2025-03-07T01:59:07.475121-08:00,998.8777465820312,10.814942,10814.942 +663,2025-03-07T01:59:18.281114-08:00,998.862060546875,10.805993,10805.993 +664,2025-03-07T01:59:29.094089-08:00,998.8829956054688,10.812975,10812.975 +665,2025-03-07T01:59:39.908066-08:00,998.9026489257812,10.813977,10813.977 +666,2025-03-07T01:59:50.711631-08:00,998.8672485351562,10.803565,10803.565 +667,2025-03-07T02:00:01.519171-08:00,998.915771484375,10.80754,10807.54 +668,2025-03-07T02:00:12.339066-08:00,998.8870239257812,10.819895,10819.895 +669,2025-03-07T02:00:23.145837-08:00,998.90673828125,10.806771,10806.771 +670,2025-03-07T02:00:33.963924-08:00,998.8925170898438,10.818087,10818.087 +671,2025-03-07T02:00:44.774328-08:00,998.9319458007812,10.810404,10810.404 +672,2025-03-07T02:00:55.587825-08:00,998.9305419921875,10.813497,10813.497 +673,2025-03-07T02:01:06.407838-08:00,998.9305419921875,10.820013,10820.013 +674,2025-03-07T02:01:17.216044-08:00,998.9229125976562,10.808206,10808.206 +675,2025-03-07T02:01:28.024971-08:00,998.929443359375,10.808927,10808.927 +676,2025-03-07T02:01:38.838142-08:00,998.955810546875,10.813171,10813.171 +677,2025-03-07T02:01:49.655048-08:00,998.9533081054688,10.816906,10816.906 +678,2025-03-07T02:02:00.462111-08:00,998.954345703125,10.807063,10807.063 +679,2025-03-07T02:02:11.278822-08:00,998.9533081054688,10.816711,10816.711 +680,2025-03-07T02:02:22.088106-08:00,998.93359375,10.809284,10809.284 +681,2025-03-07T02:02:32.896818-08:00,998.9730224609375,10.808712,10808.712 +682,2025-03-07T02:02:43.711116-08:00,998.9508056640625,10.814298,10814.298 +683,2025-03-07T02:02:54.522367-08:00,998.9179077148438,10.811251,10811.251 +684,2025-03-07T02:03:05.324881-08:00,998.9417114257812,10.802514,10802.514 +685,2025-03-07T02:03:16.141057-08:00,998.9483032226562,10.816176,10816.176 +686,2025-03-07T02:03:26.945839-08:00,998.96142578125,10.804782,10804.782 +687,2025-03-07T02:03:37.757094-08:00,998.9534301757812,10.811255,10811.255 +688,2025-03-07T02:03:48.570839-08:00,998.9523315429688,10.813745,10813.745 +689,2025-03-07T02:03:59.386152-08:00,998.9798583984375,10.815313,10815.313 +690,2025-03-07T02:04:10.200853-08:00,998.9863891601562,10.814701,10814.701 +691,2025-03-07T02:04:21.004005-08:00,998.9523315429688,10.803152,10803.152 +692,2025-03-07T02:04:31.812964-08:00,998.96435546875,10.808959,10808.959 +693,2025-03-07T02:04:42.624948-08:00,998.9761962890625,10.811984,10811.984 +694,2025-03-07T02:04:53.442868-08:00,998.9696044921875,10.81792,10817.92 +695,2025-03-07T02:05:04.238838-08:00,998.9696044921875,10.79597,10795.97 +696,2025-03-07T02:05:15.048283-08:00,998.9893798828125,10.809445,10809.445 +697,2025-03-07T02:05:25.852834-08:00,998.994873046875,10.804551,10804.551 +698,2025-03-07T02:05:36.725279-08:00,998.993408203125,10.872445,10872.445 +699,2025-03-07T02:05:47.537706-08:00,998.9671020507812,10.812427,10812.427 +700,2025-03-07T02:05:58.353770-08:00,998.979248046875,10.816064,10816.064 +701,2025-03-07T02:06:09.160617-08:00,998.979248046875,10.806847,10806.847 +702,2025-03-07T02:06:19.981012-08:00,999.006591796875,10.820395,10820.395 +703,2025-03-07T02:06:30.795807-08:00,998.990966796875,10.814795,10814.795 +704,2025-03-07T02:06:41.605622-08:00,999.0120239257812,10.809815,10809.815 +705,2025-03-07T02:06:52.418852-08:00,998.9736938476562,10.81323,10813.23 +706,2025-03-07T02:07:03.233606-08:00,998.9923706054688,10.814754,10814.754 +707,2025-03-07T02:07:14.035617-08:00,998.9767456054688,10.802011,10802.011 +708,2025-03-07T02:07:24.846721-08:00,998.977783203125,10.811104,10811.104 +709,2025-03-07T02:07:35.665070-08:00,999.0040893554688,10.818349,10818.349 +710,2025-03-07T02:07:46.473085-08:00,998.9963989257812,10.808015,10808.015 +711,2025-03-07T02:07:57.280677-08:00,998.9818725585938,10.807592,10807.592 +712,2025-03-07T02:08:08.086615-08:00,999.0015869140625,10.805938,10805.938 +713,2025-03-07T02:08:18.897620-08:00,998.9478149414062,10.811005,10811.005 +714,2025-03-07T02:08:29.709870-08:00,998.9818725585938,10.81225,10812.25 +715,2025-03-07T02:08:40.518809-08:00,998.97412109375,10.808939,10808.939 +716,2025-03-07T02:08:51.328841-08:00,998.9873657226562,10.810032,10810.032 +717,2025-03-07T02:09:02.143909-08:00,998.965087890625,10.815068,10815.068 +718,2025-03-07T02:09:12.949521-08:00,998.95703125,10.805612,10805.612 +719,2025-03-07T02:09:23.767886-08:00,998.9793701171875,10.818365,10818.365 +720,2025-03-07T02:09:34.572363-08:00,998.9768676757812,10.804477,10804.477 +721,2025-03-07T02:09:45.389612-08:00,998.9834594726562,10.817249,10817.249 +722,2025-03-07T02:09:56.200420-08:00,998.99658203125,10.810808,10810.808 +723,2025-03-07T02:10:07.003766-08:00,998.9888916015625,10.803346,10803.346 +724,2025-03-07T02:10:17.808140-08:00,998.974365234375,10.804374,10804.374 +725,2025-03-07T02:10:28.620065-08:00,999.0020141601562,10.811925,10811.925 +726,2025-03-07T02:10:39.429627-08:00,998.9798583984375,10.809562,10809.562 +727,2025-03-07T02:10:50.238869-08:00,999.0046997070312,10.809242,10809.242 +728,2025-03-07T02:11:01.054614-08:00,998.9849853515625,10.815745,10815.745 +729,2025-03-07T02:11:11.863603-08:00,999.0101318359375,10.808989,10808.989 +730,2025-03-07T02:11:22.670759-08:00,999.0036010742188,10.807156,10807.156 +731,2025-03-07T02:11:33.475074-08:00,998.9890747070312,10.804315,10804.315 +732,2025-03-07T02:11:44.289935-08:00,999.0142211914062,10.814861,10814.861 +733,2025-03-07T02:11:55.099984-08:00,999.0076293945312,10.810049,10810.049 +734,2025-03-07T02:12:05.909188-08:00,998.993408203125,10.809204,10809.204 +735,2025-03-07T02:12:16.722881-08:00,999.01171875,10.813693,10813.693 +736,2025-03-07T02:12:27.529819-08:00,999.0183715820312,10.806938,10806.938 +737,2025-03-07T02:12:38.352088-08:00,998.9985961914062,10.822269,10822.269 +738,2025-03-07T02:12:49.156190-08:00,999.0223999023438,10.804102,10804.102 +739,2025-03-07T02:12:59.969688-08:00,999.03564453125,10.813498,10813.498 +740,2025-03-07T02:13:10.773634-08:00,999.0067138671875,10.803946,10803.946 +741,2025-03-07T02:13:21.582628-08:00,999.0092163085938,10.808994,10808.994 +742,2025-03-07T02:13:32.396766-08:00,999.03857421875,10.814138,10814.138 +743,2025-03-07T02:13:43.204603-08:00,999.0108032226562,10.807837,10807.837 +744,2025-03-07T02:13:54.008752-08:00,999.05029296875,10.804149,10804.149 +745,2025-03-07T02:14:04.820778-08:00,999.025390625,10.812026,10812.026 +746,2025-03-07T02:14:15.634403-08:00,999.05029296875,10.813625,10813.625 +747,2025-03-07T02:14:26.447667-08:00,999.0426635742188,10.813264,10813.264 +748,2025-03-07T02:14:37.256071-08:00,999.0097045898438,10.808404,10808.404 +749,2025-03-07T02:14:48.057605-08:00,999.0623168945312,10.801534,10801.534 +750,2025-03-07T02:14:58.868976-08:00,999.0557861328125,10.811371,10811.371 +751,2025-03-07T02:15:09.677298-08:00,999.0401611328125,10.808322,10808.322 +752,2025-03-07T02:15:20.490121-08:00,999.0189208984375,10.812823,10812.823 +753,2025-03-07T02:15:31.293747-08:00,999.071533203125,10.803626,10803.626 +754,2025-03-07T02:15:42.100777-08:00,999.044189453125,10.80703,10807.03 +755,2025-03-07T02:15:52.914000-08:00,999.044189453125,10.813223,10813.223 +756,2025-03-07T02:16:03.709823-08:00,999.0639038085938,10.795823,10795.823 +757,2025-03-07T02:16:14.517324-08:00,999.0639038085938,10.807501,10807.501 +758,2025-03-07T02:16:25.316953-08:00,999.0614013671875,10.799629,10799.629 +759,2025-03-07T02:16:36.127977-08:00,999.0811157226562,10.811024,10811.024 +760,2025-03-07T02:16:46.930945-08:00,999.0614013671875,10.802968,10802.968 +761,2025-03-07T02:16:57.734061-08:00,999.0679931640625,10.803116,10803.116 +762,2025-03-07T02:17:08.545909-08:00,999.0662231445312,10.811848,10811.848 +763,2025-03-07T02:17:19.347649-08:00,999.04296875,10.80174,10801.74 +764,2025-03-07T02:17:30.154597-08:00,999.063720703125,10.806948,10806.948 +765,2025-03-07T02:17:40.958054-08:00,999.0692138671875,10.803457,10803.457 +766,2025-03-07T02:17:51.765660-08:00,999.0560913085938,10.807606,10807.606 +767,2025-03-07T02:18:02.575095-08:00,999.0154418945312,10.809435,10809.435 +768,2025-03-07T02:18:13.383621-08:00,999.0418090820312,10.808526,10808.526 +769,2025-03-07T02:18:24.192606-08:00,999.03271484375,10.808985,10808.985 +770,2025-03-07T02:18:34.992854-08:00,999.01953125,10.800248,10800.248 +771,2025-03-07T02:18:45.793621-08:00,999.0313110351562,10.800767,10800.767 +772,2025-03-07T02:18:56.597889-08:00,999.010498046875,10.804268,10804.268 +773,2025-03-07T02:19:07.414608-08:00,999.0181274414062,10.816719,10816.719 +774,2025-03-07T02:19:18.213101-08:00,999.0287475585938,10.798493,10798.493 +775,2025-03-07T02:19:29.023659-08:00,999.022216796875,10.810558,10810.558 +776,2025-03-07T02:19:39.831131-08:00,999.0145263671875,10.807472,10807.472 +777,2025-03-07T02:19:50.638070-08:00,999.0145263671875,10.806939,10806.939 +778,2025-03-07T02:20:01.439914-08:00,998.98681640625,10.801844,10801.844 +779,2025-03-07T02:20:12.244046-08:00,999.0131225585938,10.804132,10804.132 +780,2025-03-07T02:20:23.052674-08:00,999.0120239257812,10.808628,10808.628 +781,2025-03-07T02:20:33.867244-08:00,999.0328369140625,10.81457,10814.57 +782,2025-03-07T02:20:44.665418-08:00,999.0237426757812,10.798174,10798.174 +783,2025-03-07T02:20:55.474627-08:00,998.9974975585938,10.809209,10809.209 +784,2025-03-07T02:21:06.280630-08:00,999.0040893554688,10.806003,10806.003 +785,2025-03-07T02:21:17.087927-08:00,998.9938354492188,10.807297,10807.297 +786,2025-03-07T02:21:27.893616-08:00,999.0357666015625,10.805689,10805.689 +787,2025-03-07T02:21:38.694612-08:00,999.0201416015625,10.800996,10800.996 +788,2025-03-07T02:21:49.507929-08:00,999.0267333984375,10.813317,10813.317 +789,2025-03-07T02:22:00.301821-08:00,998.97265625,10.793892,10793.892 +790,2025-03-07T02:22:11.119610-08:00,998.9715576171875,10.817789,10817.789 +791,2025-03-07T02:22:21.922115-08:00,999.01220703125,10.802505,10802.505 +792,2025-03-07T02:22:32.737309-08:00,999.0045166015625,10.815194,10815.194 +793,2025-03-07T02:22:43.541496-08:00,998.9978637695312,10.804187,10804.187 +794,2025-03-07T02:22:54.344249-08:00,999.0097045898438,10.802753,10802.753 +795,2025-03-07T02:23:05.159925-08:00,999.0020141601562,10.815676,10815.676 +796,2025-03-07T02:23:15.962620-08:00,999.01513671875,10.802695,10802.695 +797,2025-03-07T02:23:26.770144-08:00,998.9943237304688,10.807524,10807.524 +798,2025-03-07T02:23:37.563987-08:00,999.0075073242188,10.793843,10793.843 +799,2025-03-07T02:23:48.370056-08:00,998.9785766601562,10.806069,10806.069 +800,2025-03-07T02:23:59.163938-08:00,998.9720458984375,10.793882,10793.882 +801,2025-03-07T02:24:09.973771-08:00,999.006103515625,10.809833,10809.833 +802,2025-03-07T02:24:20.772972-08:00,999.024658203125,10.799201,10799.201 +803,2025-03-07T02:24:31.567611-08:00,999.0035400390625,10.794639,10794.639 +804,2025-03-07T02:24:42.382944-08:00,999.0010375976562,10.815333,10815.333 +805,2025-03-07T02:24:53.190980-08:00,998.995849609375,10.808036,10808.036 +806,2025-03-07T02:25:03.984602-08:00,998.9932861328125,10.793622,10793.622 +807,2025-03-07T02:25:14.799210-08:00,998.9735717773438,10.814608,10814.608 +808,2025-03-07T02:25:25.601171-08:00,998.9735717773438,10.801961,10801.961 +809,2025-03-07T02:25:36.405968-08:00,998.97216796875,10.804797,10804.797 +810,2025-03-07T02:25:47.200987-08:00,998.9932861328125,10.795019,10795.019 +811,2025-03-07T02:25:58.006715-08:00,998.9918823242188,10.805728,10805.728 +812,2025-03-07T02:26:08.806986-08:00,998.9710693359375,10.800271,10800.271 +813,2025-03-07T02:26:19.267077-08:00,998.9696655273438,10.460091,10460.091 +814,2025-03-07T02:26:19.601765-08:00,998.963134765625,0.334688,334.688 +815,2025-03-07T02:26:30.404841-08:00,998.9696655273438,10.803076,10803.076 +816,2025-03-07T02:26:41.197617-08:00,998.9488525390625,10.792776,10792.776 +817,2025-03-07T02:26:52.005209-08:00,998.9762573242188,10.807592,10807.592 +818,2025-03-07T02:27:02.810610-08:00,998.9342041015625,10.805401,10805.401 +819,2025-03-07T02:27:13.615670-08:00,998.9539794921875,10.80506,10805.06 +820,2025-03-07T02:27:24.412533-08:00,998.9054565429688,10.796863,10796.863 +821,2025-03-07T02:27:35.218627-08:00,998.952880859375,10.806094,10806.094 +822,2025-03-07T02:27:46.021613-08:00,998.9463500976562,10.802986,10802.986 +823,2025-03-07T02:27:56.823612-08:00,998.984375,10.801999,10801.999 +824,2025-03-07T02:28:07.633765-08:00,998.9382934570312,10.810153,10810.153 +825,2025-03-07T02:28:18.432613-08:00,998.9646606445312,10.798848,10798.848 +826,2025-03-07T02:28:29.240662-08:00,998.9437255859375,10.808049,10808.049 +827,2025-03-07T02:28:40.051210-08:00,998.9635009765625,10.810548,10810.548 +828,2025-03-07T02:28:50.857590-08:00,998.96875,10.80638,10806.38 +829,2025-03-07T02:29:01.656938-08:00,998.9898681640625,10.799348,10799.348 +830,2025-03-07T02:29:12.471244-08:00,998.993896484375,10.814306,10814.306 +831,2025-03-07T02:29:23.275944-08:00,998.9859619140625,10.8047,10804.7 +832,2025-03-07T02:29:34.076913-08:00,998.9924926757812,10.800969,10800.969 +833,2025-03-07T02:29:44.879772-08:00,998.9595947265625,10.802859,10802.859 +834,2025-03-07T02:29:55.688834-08:00,998.978271484375,10.809062,10809.062 +835,2025-03-07T02:30:06.488626-08:00,998.978271484375,10.799792,10799.792 +836,2025-03-07T02:30:17.289945-08:00,998.9888916015625,10.801319,10801.319 +837,2025-03-07T02:30:28.093623-08:00,998.96142578125,10.803678,10803.678 +838,2025-03-07T02:30:38.901428-08:00,999.0009155273438,10.807805,10807.805 +839,2025-03-07T02:30:49.711747-08:00,998.9732055664062,10.810319,10810.319 +840,2025-03-07T02:31:00.520085-08:00,998.979736328125,10.808338,10808.338 +841,2025-03-07T02:31:11.322611-08:00,998.9640502929688,10.802526,10802.526 +842,2025-03-07T02:31:22.132867-08:00,998.977294921875,10.810256,10810.256 +843,2025-03-07T02:31:32.940648-08:00,998.97607421875,10.807781,10807.781 +844,2025-03-07T02:31:43.750316-08:00,998.9893188476562,10.809668,10809.668 +845,2025-03-07T02:31:54.558120-08:00,998.9735717773438,10.807804,10807.804 +846,2025-03-07T02:32:05.359729-08:00,998.98681640625,10.801609,10801.609 +847,2025-03-07T02:32:16.160625-08:00,998.9813232421875,10.800896,10800.896 +848,2025-03-07T02:32:26.969972-08:00,998.9776611328125,10.809347,10809.347 +849,2025-03-07T02:32:37.768339-08:00,998.9776611328125,10.798367,10798.367 +850,2025-03-07T02:32:48.577938-08:00,998.95654296875,10.809599,10809.599 +851,2025-03-07T02:32:59.386386-08:00,998.963134765625,10.808448,10808.448 +852,2025-03-07T02:33:10.186944-08:00,998.9893798828125,10.800558,10800.558 +853,2025-03-07T02:33:20.996993-08:00,998.9737548828125,10.810049,10810.049 +854,2025-03-07T02:33:31.806692-08:00,998.993408203125,10.809699,10809.699 +855,2025-03-07T02:33:42.611670-08:00,999.0066528320312,10.804978,10804.978 +856,2025-03-07T02:33:53.411623-08:00,998.9949340820312,10.799953,10799.953 +857,2025-03-07T02:34:04.218725-08:00,998.9868774414062,10.807102,10807.102 +858,2025-03-07T02:34:15.029137-08:00,998.9923706054688,10.810412,10810.412 +859,2025-03-07T02:34:25.833682-08:00,998.990966796875,10.804545,10804.545 +860,2025-03-07T02:34:36.641612-08:00,998.984375,10.80793,10807.93 +861,2025-03-07T02:34:47.452637-08:00,998.9832763671875,10.811025,10811.025 +862,2025-03-07T02:34:58.258842-08:00,998.990966796875,10.806205,10806.205 +863,2025-03-07T02:35:09.069686-08:00,999.0018920898438,10.810844,10810.844 +864,2025-03-07T02:35:19.861938-08:00,998.9807739257812,10.792252,10792.252 +865,2025-03-07T02:35:30.664851-08:00,998.9717407226562,10.802913,10802.913 +866,2025-03-07T02:35:41.466615-08:00,998.9321899414062,10.801764,10801.764 +867,2025-03-07T02:35:52.271617-08:00,998.978271484375,10.805002,10805.002 +868,2025-03-07T02:36:03.087886-08:00,998.978271484375,10.816269,10816.269 +869,2025-03-07T02:36:13.891185-08:00,998.9639892578125,10.803299,10803.299 +870,2025-03-07T02:36:24.704903-08:00,998.9823608398438,10.813718,10813.718 +871,2025-03-07T02:36:35.507620-08:00,998.9691162109375,10.802717,10802.717 +872,2025-03-07T02:36:46.312025-08:00,998.9417114257812,10.804405,10804.405 +873,2025-03-07T02:36:57.115838-08:00,998.9691162109375,10.803813,10803.813 +874,2025-03-07T02:37:07.918287-08:00,998.9600219726562,10.802449,10802.449 +875,2025-03-07T02:37:18.732865-08:00,998.9589233398438,10.814578,10814.578 +876,2025-03-07T02:37:29.536853-08:00,998.9589233398438,10.803988,10803.988 +877,2025-03-07T02:37:40.338609-08:00,998.939208984375,10.801756,10801.756 +878,2025-03-07T02:37:51.148760-08:00,998.9378051757812,10.810151,10810.151 +879,2025-03-07T02:38:01.950966-08:00,998.9063110351562,10.802206,10802.206 +880,2025-03-07T02:38:12.758907-08:00,998.923583984375,10.807941,10807.941 +881,2025-03-07T02:38:23.563622-08:00,998.9706420898438,10.804715,10804.715 +882,2025-03-07T02:38:34.378655-08:00,998.9432983398438,10.815033,10815.033 +883,2025-03-07T02:38:45.173966-08:00,998.95751953125,10.795311,10795.311 +884,2025-03-07T02:38:55.979773-08:00,998.935302734375,10.805807,10805.807 +885,2025-03-07T02:39:06.793604-08:00,998.9328002929688,10.813831,10813.831 +886,2025-03-07T02:39:17.592229-08:00,998.9221801757812,10.798625,10798.625 +887,2025-03-07T02:39:28.393611-08:00,998.9276733398438,10.801382,10801.382 +888,2025-03-07T02:39:39.203540-08:00,998.9210205078125,10.809929,10809.929 +889,2025-03-07T02:39:50.006788-08:00,998.9064331054688,10.803248,10803.248 +890,2025-03-07T02:40:00.815183-08:00,998.9261474609375,10.808395,10808.395 +891,2025-03-07T02:40:11.612408-08:00,998.925048828125,10.797225,10797.225 +892,2025-03-07T02:40:22.410722-08:00,998.931640625,10.798314,10798.314 +893,2025-03-07T02:40:33.213831-08:00,998.94482421875,10.803109,10803.109 +894,2025-03-07T02:40:44.025079-08:00,998.90283203125,10.811248,10811.248 +895,2025-03-07T02:40:54.829993-08:00,998.9093627929688,10.804914,10804.914 +896,2025-03-07T02:41:05.632413-08:00,998.922607421875,10.80242,10802.42 +897,2025-03-07T02:41:16.438684-08:00,998.9422607421875,10.806271,10806.271 +898,2025-03-07T02:41:27.232954-08:00,998.9422607421875,10.79427,10794.27 +899,2025-03-07T02:41:38.037744-08:00,998.947509765625,10.80479,10804.79 +900,2025-03-07T02:41:48.836821-08:00,998.9199829101562,10.799077,10799.077 +901,2025-03-07T02:41:59.645393-08:00,998.8728637695312,10.808572,10808.572 +902,2025-03-07T02:42:10.444780-08:00,998.934326171875,10.799387,10799.387 +903,2025-03-07T02:42:21.248852-08:00,998.9463500976562,10.804072,10804.072 +904,2025-03-07T02:42:32.046077-08:00,998.9188842773438,10.797225,10797.225 +905,2025-03-07T02:42:42.843626-08:00,998.924072265625,10.797549,10797.549 +906,2025-03-07T02:42:53.645619-08:00,998.9188842773438,10.801993,10801.993 +907,2025-03-07T02:43:04.441777-08:00,998.924072265625,10.796158,10796.158 +908,2025-03-07T02:43:15.253623-08:00,998.9032592773438,10.811846,10811.846 +909,2025-03-07T02:43:26.054618-08:00,998.9043579101562,10.800995,10800.995 +910,2025-03-07T02:43:36.857989-08:00,998.9109497070312,10.803371,10803.371 +911,2025-03-07T02:43:47.651844-08:00,998.9295043945312,10.793855,10793.855 +912,2025-03-07T02:43:58.461130-08:00,998.9371948242188,10.809286,10809.286 +913,2025-03-07T02:44:09.256793-08:00,998.9360961914062,10.795663,10795.663 +914,2025-03-07T02:44:20.060593-08:00,998.9229736328125,10.8038,10803.8 +915,2025-03-07T02:44:30.869670-08:00,998.908447265625,10.809077,10809.077 +916,2025-03-07T02:44:41.661628-08:00,998.9215698242188,10.791958,10791.958 +917,2025-03-07T02:44:52.463857-08:00,998.9073486328125,10.802229,10802.229 +918,2025-03-07T02:45:03.262895-08:00,998.8795166015625,10.799038,10799.038 +919,2025-03-07T02:45:14.066628-08:00,998.885009765625,10.803733,10803.733 +920,2025-03-07T02:45:24.874764-08:00,998.9310913085938,10.808136,10808.136 +921,2025-03-07T02:45:35.672624-08:00,998.8770141601562,10.79786,10797.86 +922,2025-03-07T02:45:46.463894-08:00,998.8967895507812,10.79127,10791.27 +923,2025-03-07T02:45:57.267519-08:00,998.8967895507812,10.803625,10803.625 +924,2025-03-07T02:46:08.064296-08:00,998.8836059570312,10.796777,10796.777 +925,2025-03-07T02:46:18.862609-08:00,998.8825073242188,10.798313,10798.313 +926,2025-03-07T02:46:29.663619-08:00,998.9296875,10.80101,10801.01 +927,2025-03-07T02:46:40.465622-08:00,998.9022827148438,10.802003,10802.003 +928,2025-03-07T02:46:51.266619-08:00,998.9129028320312,10.800997,10800.997 +929,2025-03-07T02:47:02.070766-08:00,998.9129028320312,10.804147,10804.147 +930,2025-03-07T02:47:12.880848-08:00,998.8865356445312,10.810082,10810.082 +931,2025-03-07T02:47:23.682613-08:00,998.899658203125,10.801765,10801.765 +932,2025-03-07T02:47:34.473800-08:00,998.899658203125,10.791187,10791.187 +933,2025-03-07T02:47:45.280618-08:00,998.8643798828125,10.806818,10806.818 +934,2025-03-07T02:47:56.078823-08:00,998.8786010742188,10.798205,10798.205 +935,2025-03-07T02:48:06.875228-08:00,998.85888671875,10.796405,10796.405 +936,2025-03-07T02:48:17.677604-08:00,998.8760986328125,10.802376,10802.376 +937,2025-03-07T02:48:28.472972-08:00,998.8826293945312,10.795368,10795.368 +938,2025-03-07T02:48:39.271924-08:00,998.881591796875,10.798952,10798.952 +939,2025-03-07T02:48:50.069944-08:00,998.8881225585938,10.79802,10798.02 +940,2025-03-07T02:49:00.868092-08:00,998.868408203125,10.798148,10798.148 +941,2025-03-07T02:49:11.669617-08:00,998.8604125976562,10.801525,10801.525 +942,2025-03-07T02:49:22.478137-08:00,998.8538208007812,10.80852,10808.52 +943,2025-03-07T02:49:33.281158-08:00,998.880126953125,10.803021,10803.021 +944,2025-03-07T02:49:44.079663-08:00,998.8881225585938,10.798505,10798.505 +945,2025-03-07T02:49:54.882606-08:00,998.8724365234375,10.802943,10802.943 +946,2025-03-07T02:50:05.679617-08:00,998.8699340820312,10.797011,10797.011 +947,2025-03-07T02:50:16.477842-08:00,998.8908081054688,10.798225,10798.225 +948,2025-03-07T02:50:27.274621-08:00,998.8856201171875,10.796779,10796.779 +949,2025-03-07T02:50:38.076618-08:00,998.8501586914062,10.801997,10801.997 +950,2025-03-07T02:50:48.877883-08:00,998.8870849609375,10.801265,10801.265 +951,2025-03-07T02:50:59.680620-08:00,998.8951416015625,10.802737,10802.737 +952,2025-03-07T02:51:10.478622-08:00,998.8673706054688,10.798002,10798.002 +953,2025-03-07T02:51:21.292069-08:00,998.8607788085938,10.813447,10813.447 +954,2025-03-07T02:51:32.089612-08:00,998.91748046875,10.797543,10797.543 +955,2025-03-07T02:51:42.888612-08:00,998.885986328125,10.799,10799.0 +956,2025-03-07T02:51:53.684958-08:00,998.857177734375,10.796346,10796.346 +957,2025-03-07T02:52:04.486871-08:00,998.8779907226562,10.801913,10801.913 +958,2025-03-07T02:52:15.292130-08:00,998.8768920898438,10.805259,10805.259 +959,2025-03-07T02:52:26.101601-08:00,998.8966674804688,10.809471,10809.471 +960,2025-03-07T02:52:36.897507-08:00,998.8861083984375,10.795906,10795.906 +961,2025-03-07T02:52:47.708655-08:00,998.8795166015625,10.811148,10811.148 +962,2025-03-07T02:52:58.510681-08:00,998.90576171875,10.802026,10802.026 +963,2025-03-07T02:53:09.325741-08:00,998.9310302734375,10.81506,10815.06 +964,2025-03-07T02:53:20.122806-08:00,998.885009765625,10.797065,10797.065 +965,2025-03-07T02:53:30.934323-08:00,998.8663940429688,10.811517,10811.517 +966,2025-03-07T02:53:41.728280-08:00,998.9046630859375,10.793957,10793.957 +967,2025-03-07T02:53:52.537605-08:00,998.8890380859375,10.809325,10809.325 +968,2025-03-07T02:54:03.336113-08:00,998.9229736328125,10.798508,10798.508 +969,2025-03-07T02:54:14.132669-08:00,998.9229736328125,10.796556,10796.556 +970,2025-03-07T02:54:24.941600-08:00,998.9427490234375,10.808931,10808.931 +971,2025-03-07T02:54:35.739627-08:00,998.9204711914062,10.798027,10798.027 +972,2025-03-07T02:54:46.544868-08:00,998.9204711914062,10.805241,10805.241 +973,2025-03-07T02:54:57.345627-08:00,998.9259643554688,10.800759,10800.759 +974,2025-03-07T02:55:08.142134-08:00,998.9598999023438,10.796507,10796.507 +975,2025-03-07T02:55:18.944899-08:00,998.966552734375,10.802765,10802.765 +976,2025-03-07T02:55:29.744042-08:00,998.9653930664062,10.799143,10799.143 +977,2025-03-07T02:55:40.546916-08:00,998.9376831054688,10.802874,10802.874 +978,2025-03-07T02:55:51.351570-08:00,998.9376831054688,10.804654,10804.654 +979,2025-03-07T02:56:02.152172-08:00,998.9390869140625,10.800602,10800.602 +980,2025-03-07T02:56:12.965085-08:00,998.8839721679688,10.812913,10812.913 +981,2025-03-07T02:56:23.764831-08:00,998.9365844726562,10.799746,10799.746 +982,2025-03-07T02:56:34.570946-08:00,998.9628295898438,10.806115,10806.115 +983,2025-03-07T02:56:45.363671-08:00,998.99169921875,10.792725,10792.725 +984,2025-03-07T02:56:56.166575-08:00,998.9891357421875,10.802904,10802.904 +985,2025-03-07T02:57:06.971678-08:00,998.9826049804688,10.805103,10805.103 +986,2025-03-07T02:57:17.772596-08:00,998.96142578125,10.800918,10800.918 +987,2025-03-07T02:57:28.576130-08:00,998.9734497070312,10.803534,10803.534 +988,2025-03-07T02:57:39.378775-08:00,998.96142578125,10.802645,10802.645 +989,2025-03-07T02:57:50.183318-08:00,998.9406127929688,10.804543,10804.543 +990,2025-03-07T02:58:00.980616-08:00,998.9447021484375,10.797298,10797.298 +991,2025-03-07T02:58:11.782647-08:00,998.9657592773438,10.802031,10802.031 +992,2025-03-07T02:58:22.591930-08:00,998.95263671875,10.809283,10809.283 +993,2025-03-07T02:58:33.393034-08:00,998.9774780273438,10.801104,10801.104 +994,2025-03-07T02:58:44.198253-08:00,998.9224243164062,10.805219,10805.219 +995,2025-03-07T02:58:54.995684-08:00,998.96435546875,10.797431,10797.431 +996,2025-03-07T02:59:05.799083-08:00,998.9774780273438,10.803399,10803.399 +997,2025-03-07T02:59:16.601933-08:00,998.9880981445312,10.80285,10802.85 +998,2025-03-07T02:59:27.404755-08:00,998.9632568359375,10.802822,10802.822 +999,2025-03-07T02:59:38.199658-08:00,998.9673461914062,10.794903,10794.903 +1000,2025-03-07T02:59:49.000924-08:00,998.9946899414062,10.801266,10801.266 +1001,2025-03-07T02:59:59.802682-08:00,998.955322265625,10.801758,10801.758 +1002,2025-03-07T03:00:10.608844-08:00,998.9724731445312,10.806162,10806.162 +1003,2025-03-07T03:00:21.404605-08:00,998.9790649414062,10.795761,10795.761 +1004,2025-03-07T03:00:32.214626-08:00,998.9699096679688,10.810021,10810.021 +1005,2025-03-07T03:00:43.007800-08:00,998.9910888671875,10.793174,10793.174 +1006,2025-03-07T03:00:53.811677-08:00,998.9227905273438,10.803877,10803.877 +1007,2025-03-07T03:01:04.619042-08:00,998.9425048828125,10.807365,10807.365 +1008,2025-03-07T03:01:15.410627-08:00,998.9425048828125,10.791585,10791.585 +1009,2025-03-07T03:01:26.213804-08:00,998.9739990234375,10.803177,10803.177 +1010,2025-03-07T03:01:37.016822-08:00,998.953125,10.803018,10803.018 +1011,2025-03-07T03:01:47.814940-08:00,998.9268798828125,10.798118,10798.118 +1012,2025-03-07T03:01:58.612330-08:00,998.953125,10.79739,10797.39 +1013,2025-03-07T03:02:09.419045-08:00,998.971435546875,10.806715,10806.715 +1014,2025-03-07T03:02:20.218892-08:00,998.969970703125,10.799847,10799.847 +1015,2025-03-07T03:02:31.011611-08:00,998.9437255859375,10.792719,10792.719 +1016,2025-03-07T03:02:41.813651-08:00,998.996337890625,10.80204,10802.04 +1017,2025-03-07T03:02:52.622050-08:00,998.9620361328125,10.808399,10808.399 +1018,2025-03-07T03:03:03.426170-08:00,998.9751586914062,10.80412,10804.12 +1019,2025-03-07T03:03:14.223601-08:00,998.9751586914062,10.797431,10797.431 +1020,2025-03-07T03:03:25.021825-08:00,998.9806518554688,10.798224,10798.224 +1021,2025-03-07T03:03:35.819616-08:00,998.9806518554688,10.797791,10797.791 +1022,2025-03-07T03:03:46.624028-08:00,998.9846801757812,10.804412,10804.412 +1023,2025-03-07T03:03:57.427623-08:00,998.9503784179688,10.803595,10803.595 +1024,2025-03-07T03:04:08.233767-08:00,998.966064453125,10.806144,10806.144 +1025,2025-03-07T03:04:19.037870-08:00,998.9569702148438,10.804103,10804.103 +1026,2025-03-07T03:04:29.832768-08:00,998.9898681640625,10.794898,10794.898 +1027,2025-03-07T03:04:40.644652-08:00,998.9898681640625,10.811884,10811.884 +1028,2025-03-07T03:04:51.440849-08:00,998.9678955078125,10.796197,10796.197 +1029,2025-03-07T03:05:02.249611-08:00,999.0029907226562,10.808762,10808.762 +1030,2025-03-07T03:05:13.047619-08:00,998.9796142578125,10.798008,10798.008 +1031,2025-03-07T03:05:23.856607-08:00,999.0335693359375,10.808988,10808.988 +1032,2025-03-07T03:05:34.607997-08:00,999.025634765625,10.75139,10751.39 +1033,2025-03-07T03:05:45.412848-08:00,998.9927978515625,10.804851,10804.851 +1034,2025-03-07T03:05:56.218303-08:00,999.0296630859375,10.805455,10805.455 +1035,2025-03-07T03:06:07.024502-08:00,998.9861450195312,10.806199,10806.199 +1036,2025-03-07T03:06:17.821837-08:00,999.0245361328125,10.797335,10797.335 +1037,2025-03-07T03:06:28.621858-08:00,999.0125122070312,10.800021,10800.021 +1038,2025-03-07T03:06:39.424008-08:00,999.0231323242188,10.80215,10802.15 +1039,2025-03-07T03:06:50.222854-08:00,999.0099487304688,10.798846,10798.846 +1040,2025-03-07T03:07:01.028851-08:00,999.05078125,10.805997,10805.997 +1041,2025-03-07T03:07:11.831846-08:00,999.0074462890625,10.802995,10802.995 +1042,2025-03-07T03:07:22.631082-08:00,999.0128173828125,10.799236,10799.236 +1043,2025-03-07T03:07:33.431834-08:00,999.0139770507812,10.800752,10800.752 +1044,2025-03-07T03:07:44.238901-08:00,999.03369140625,10.807067,10807.067 +1045,2025-03-07T03:07:55.043212-08:00,999.0245361328125,10.804311,10804.311 +1046,2025-03-07T03:08:05.848923-08:00,999.0048217773438,10.805711,10805.711 +1047,2025-03-07T03:08:16.647840-08:00,999.0234375,10.798917,10798.917 +1048,2025-03-07T03:08:27.446859-08:00,999.0245361328125,10.799019,10799.019 +1049,2025-03-07T03:08:38.243862-08:00,999.016845703125,10.797003,10797.003 +1050,2025-03-07T03:08:49.052095-08:00,998.9946899414062,10.808233,10808.233 +1051,2025-03-07T03:08:59.849214-08:00,999.028564453125,10.797119,10797.119 +1052,2025-03-07T03:09:10.663978-08:00,999.0220336914062,10.814764,10814.764 +1053,2025-03-07T03:09:21.460109-08:00,999.0209350585938,10.796131,10796.131 +1054,2025-03-07T03:09:32.265989-08:00,999.012939453125,10.80588,10805.88 +1055,2025-03-07T03:09:43.063106-08:00,999.014404296875,10.797117,10797.117 +1056,2025-03-07T03:09:53.868166-08:00,999.0170288085938,10.80506,10805.06 +1057,2025-03-07T03:10:04.673852-08:00,999.0326538085938,10.805686,10805.686 +1058,2025-03-07T03:10:15.472391-08:00,999.01953125,10.798539,10798.539 +1059,2025-03-07T03:10:26.275996-08:00,999.0315551757812,10.803605,10803.605 +1060,2025-03-07T03:10:37.084111-08:00,999.0170288085938,10.808115,10808.115 +1061,2025-03-07T03:10:47.886081-08:00,998.9829711914062,10.80197,10801.97 +1062,2025-03-07T03:10:58.683057-08:00,998.9880981445312,10.796976,10796.976 +1063,2025-03-07T03:11:07.002136-08:00,999.0078125,8.319079,8319.079 +1064,2025-03-07T03:11:09.489867-08:00,998.989501953125,2.487731,2487.731 +1065,2025-03-07T03:11:20.298391-08:00,998.987060546875,10.808524,10808.524 +1066,2025-03-07T03:11:31.099210-08:00,998.9935913085938,10.800819,10800.819 +1067,2025-03-07T03:11:41.911855-08:00,998.98046875,10.812645,10812.645 +1068,2025-03-07T03:11:52.712109-08:00,999.0133056640625,10.800254,10800.254 +1069,2025-03-07T03:12:03.515162-08:00,998.998779296875,10.803053,10803.053 +1070,2025-03-07T03:12:14.315113-08:00,998.987060546875,10.799951,10799.951 +1071,2025-03-07T03:12:25.116899-08:00,998.9790649414062,10.801786,10801.786 +1072,2025-03-07T03:12:35.916860-08:00,998.9647827148438,10.799961,10799.961 +1073,2025-03-07T03:12:46.727898-08:00,998.99658203125,10.811038,10811.038 +1074,2025-03-07T03:12:57.517231-08:00,999.0108032226562,10.789333,10789.333 +1075,2025-03-07T03:13:08.319161-08:00,999.0304565429688,10.80193,10801.93 +1076,2025-03-07T03:13:19.118221-08:00,998.976806640625,10.79906,10799.06 +1077,2025-03-07T03:13:29.918185-08:00,999.0031127929688,10.799964,10799.964 +1078,2025-03-07T03:13:40.722494-08:00,998.934814453125,10.804309,10804.309 +1079,2025-03-07T03:13:51.526386-08:00,998.9754028320312,10.803892,10803.892 +1080,2025-03-07T03:14:02.317063-08:00,998.959716796875,10.790677,10790.677 +1081,2025-03-07T03:14:13.120844-08:00,998.9743041992188,10.803781,10803.781 +1082,2025-03-07T03:14:23.919857-08:00,998.9925537109375,10.799013,10799.013 +1083,2025-03-07T03:14:34.724925-08:00,998.9793701171875,10.805068,10805.068 +1084,2025-03-07T03:14:45.532907-08:00,998.9925537109375,10.807982,10807.982 +1085,2025-03-07T03:14:56.335842-08:00,998.9768676757812,10.802935,10802.935 +1086,2025-03-07T03:15:07.131911-08:00,998.9979858398438,10.796069,10796.069 +1087,2025-03-07T03:15:17.936837-08:00,998.9888916015625,10.804926,10804.926 +1088,2025-03-07T03:15:28.737978-08:00,998.96923828125,10.801141,10801.141 +1089,2025-03-07T03:15:39.534051-08:00,998.989990234375,10.796073,10796.073 +1090,2025-03-07T03:15:50.335844-08:00,998.9757690429688,10.801793,10801.793 +1091,2025-03-07T03:16:01.141848-08:00,998.9600830078125,10.806004,10806.004 +1092,2025-03-07T03:16:11.940852-08:00,998.9874877929688,10.799004,10799.004 +1093,2025-03-07T03:16:22.739715-08:00,998.9454956054688,10.798863,10798.863 +1094,2025-03-07T03:16:33.537161-08:00,998.9863891601562,10.797446,10797.446 +1095,2025-03-07T03:16:44.344855-08:00,998.9718017578125,10.807694,10807.694 +1096,2025-03-07T03:16:55.137937-08:00,998.9849853515625,10.793082,10793.082 +1097,2025-03-07T03:17:05.946842-08:00,998.950927734375,10.808905,10808.905 +1098,2025-03-07T03:17:16.737616-08:00,998.970703125,10.790774,10790.774 +1099,2025-03-07T03:17:27.543214-08:00,998.950927734375,10.805598,10805.598 +1100,2025-03-07T03:17:38.346172-08:00,998.96923828125,10.802958,10802.958 +1101,2025-03-07T03:17:49.140905-08:00,998.96923828125,10.794733,10794.733 +1102,2025-03-07T03:17:59.948883-08:00,998.962646484375,10.807978,10807.978 +1103,2025-03-07T03:18:10.742113-08:00,998.9681396484375,10.79323,10793.23 +1104,2025-03-07T03:18:21.542852-08:00,998.9955444335938,10.800739,10800.739 +1105,2025-03-07T03:18:32.349837-08:00,998.9681396484375,10.806985,10806.985 +1106,2025-03-07T03:18:43.151236-08:00,998.9681396484375,10.801399,10801.399 +1107,2025-03-07T03:18:53.949845-08:00,998.9484252929688,10.798609,10798.609 +1108,2025-03-07T03:19:04.758926-08:00,998.9656372070312,10.809081,10809.081 +1109,2025-03-07T03:19:15.566275-08:00,998.95361328125,10.807349,10807.349 +1110,2025-03-07T03:19:25.361717-08:00,998.9798583984375,9.795442,9795.442 +1111,2025-03-07T03:19:26.363949-08:00,998.978759765625,1.002232,1002.232 +1112,2025-03-07T03:19:37.163853-08:00,998.9852905273438,10.799904,10799.904 +1113,2025-03-07T03:19:47.971612-08:00,998.98388671875,10.807759,10807.759 +1114,2025-03-07T03:19:58.775851-08:00,999.0036010742188,10.804239,10804.239 +1115,2025-03-07T03:20:09.572856-08:00,999.0036010742188,10.797005,10797.005 +1116,2025-03-07T03:20:20.382099-08:00,999.009033203125,10.809243,10809.243 +1117,2025-03-07T03:20:31.174007-08:00,998.9696655273438,10.791908,10791.908 +1118,2025-03-07T03:20:41.982854-08:00,999.0167236328125,10.808847,10808.847 +1119,2025-03-07T03:20:52.777860-08:00,999.0211181640625,10.795006,10795.006 +1120,2025-03-07T03:21:03.576857-08:00,999.0342407226562,10.798997,10798.997 +1121,2025-03-07T03:21:14.377864-08:00,999.0120239257812,10.801007,10801.007 +1122,2025-03-07T03:21:25.183847-08:00,999.006591796875,10.805983,10805.983 +1123,2025-03-07T03:21:35.971441-08:00,999.006591796875,10.787594,10787.594 +1124,2025-03-07T03:21:46.768354-08:00,999.0094604492188,10.796913,10796.913 +1125,2025-03-07T03:21:57.573741-08:00,999.0054931640625,10.805387,10805.387 +1126,2025-03-07T03:22:08.369842-08:00,999.0499877929688,10.796101,10796.101 +1127,2025-03-07T03:22:19.172047-08:00,999.0459594726562,10.802205,10802.205 +1128,2025-03-07T03:22:29.978095-08:00,999.0303344726562,10.806048,10806.048 +1129,2025-03-07T03:22:40.780018-08:00,999.0357666015625,10.801923,10801.923 +1130,2025-03-07T03:22:51.584116-08:00,999.0277099609375,10.804098,10804.098 +1131,2025-03-07T03:23:02.379843-08:00,999.02001953125,10.795727,10795.727 +1132,2025-03-07T03:23:13.189854-08:00,999.025146484375,10.810011,10810.011 +1133,2025-03-07T03:23:23.982086-08:00,999.0277099609375,10.792232,10792.232 +1134,2025-03-07T03:23:34.788864-08:00,999.0357666015625,10.806778,10806.778 +1135,2025-03-07T03:23:45.581848-08:00,999.0474243164062,10.792984,10792.984 +1136,2025-03-07T03:23:56.384147-08:00,999.039794921875,10.802299,10802.299 +1137,2025-03-07T03:24:07.193857-08:00,999.039794921875,10.80971,10809.71 +1138,2025-03-07T03:24:17.990831-08:00,999.03173828125,10.796974,10796.974 +1139,2025-03-07T03:24:28.798172-08:00,999.0382690429688,10.807341,10807.341 +1140,2025-03-07T03:24:39.602852-08:00,999.0423583984375,10.80468,10804.68 +1141,2025-03-07T03:24:50.403860-08:00,999.0306396484375,10.801008,10801.008 +1142,2025-03-07T03:25:01.201858-08:00,999.0357666015625,10.797998,10797.998 +1143,2025-03-07T03:25:12.006966-08:00,999.0201416015625,10.805108,10805.108 +1144,2025-03-07T03:25:22.808120-08:00,999.0084228515625,10.801154,10801.154 +1145,2025-03-07T03:25:33.620861-08:00,999.03466796875,10.812741,10812.741 +1146,2025-03-07T03:25:44.428859-08:00,999.0215454101562,10.807998,10807.998 +1147,2025-03-07T03:25:55.231532-08:00,999.0003662109375,10.802673,10802.673 +1148,2025-03-07T03:26:06.034978-08:00,999.0201416015625,10.803446,10803.446 +1149,2025-03-07T03:26:16.840004-08:00,999.0175170898438,10.805026,10805.026 +1150,2025-03-07T03:26:27.643083-08:00,999.0109252929688,10.803079,10803.079 +1151,2025-03-07T03:26:38.438844-08:00,999.0372924804688,10.795761,10795.761 +1152,2025-03-07T03:26:49.243848-08:00,999.00439453125,10.805004,10805.004 +1153,2025-03-07T03:27:00.041990-08:00,999.024169921875,10.798142,10798.142 +1154,2025-03-07T03:27:10.843864-08:00,999.0452880859375,10.801874,10801.874 +1155,2025-03-07T03:27:21.648267-08:00,999.0150146484375,10.804403,10804.403 +1156,2025-03-07T03:27:32.460076-08:00,999.0372924804688,10.811809,10811.809 +1157,2025-03-07T03:27:43.257863-08:00,999.0032958984375,10.797787,10797.787 +1158,2025-03-07T03:27:54.068849-08:00,998.9846801757812,10.810986,10810.986 +1159,2025-03-07T03:28:04.878905-08:00,998.98876953125,10.810056,10810.056 +1160,2025-03-07T03:28:15.677869-08:00,999.0018920898438,10.798964,10798.964 +1161,2025-03-07T03:28:26.490876-08:00,999.0624389648438,10.813007,10813.007 +1162,2025-03-07T03:28:37.293433-08:00,999.01904296875,10.802557,10802.557 +1163,2025-03-07T03:28:48.099166-08:00,999.025634765625,10.805733,10805.733 +1164,2025-03-07T03:28:58.900144-08:00,999.0270385742188,10.800978,10800.978 +1165,2025-03-07T03:29:09.704015-08:00,998.9927978515625,10.803871,10803.871 +1166,2025-03-07T03:29:20.501214-08:00,999.0059204101562,10.797199,10797.199 +1167,2025-03-07T03:29:31.302935-08:00,999.0179443359375,10.801721,10801.721 +1168,2025-03-07T03:29:42.107166-08:00,999.003662109375,10.804231,10804.231 +1169,2025-03-07T03:29:52.910408-08:00,999.0245361328125,10.803242,10803.242 +1170,2025-03-07T03:30:03.706900-08:00,999.01025390625,10.796492,10796.492 +1171,2025-03-07T03:30:14.511097-08:00,999.0088500976562,10.804197,10804.197 +1172,2025-03-07T03:30:25.314842-08:00,999.002197265625,10.803745,10803.745 +1173,2025-03-07T03:30:36.125942-08:00,998.9890747070312,10.8111,10811.1 +1174,2025-03-07T03:30:46.925860-08:00,999.0193481445312,10.799918,10799.918 +1175,2025-03-07T03:30:57.732116-08:00,999.020751953125,10.806256,10806.256 +1176,2025-03-07T03:31:08.524282-08:00,999.0142211914062,10.792166,10792.166 +1177,2025-03-07T03:31:19.325858-08:00,999.0314331054688,10.801576,10801.576 +1178,2025-03-07T03:31:30.131848-08:00,999.0248413085938,10.80599,10805.99 +1179,2025-03-07T03:31:40.937123-08:00,999.0275268554688,10.805275,10805.275 +1180,2025-03-07T03:31:51.736948-08:00,999.0275268554688,10.799825,10799.825 +1181,2025-03-07T03:32:02.541945-08:00,999.0328979492188,10.804997,10804.997 +1182,2025-03-07T03:32:13.344864-08:00,999.01318359375,10.802919,10802.919 +1183,2025-03-07T03:32:24.139862-08:00,999.0263061523438,10.794998,10794.998 +1184,2025-03-07T03:32:34.949325-08:00,999.0237426757812,10.809463,10809.463 +1185,2025-03-07T03:32:45.749990-08:00,999.036865234375,10.800665,10800.665 +1186,2025-03-07T03:32:56.550111-08:00,999.0511474609375,10.800121,10800.121 +1187,2025-03-07T03:33:07.354870-08:00,999.0158081054688,10.804759,10804.759 +1188,2025-03-07T03:33:18.154982-08:00,999.0420532226562,10.800112,10800.112 +1189,2025-03-07T03:33:28.951142-08:00,999.0540771484375,10.79616,10796.16 +1190,2025-03-07T03:33:39.750997-08:00,999.0409545898438,10.799855,10799.855 +1191,2025-03-07T03:33:50.561080-08:00,999.0264282226562,10.810083,10810.083 +1192,2025-03-07T03:34:01.350099-08:00,999.0606079101562,10.789019,10789.019 +1193,2025-03-07T03:34:12.150298-08:00,999.0343627929688,10.800199,10800.199 +1194,2025-03-07T03:34:22.953166-08:00,999.0540771484375,10.802868,10802.868 +1195,2025-03-07T03:34:33.757235-08:00,999.0460815429688,10.804069,10804.069 +1196,2025-03-07T03:34:44.556170-08:00,999.01611328125,10.798935,10798.935 +1197,2025-03-07T03:34:55.364282-08:00,999.0449829101562,10.808112,10808.112 +1198,2025-03-07T03:35:06.166412-08:00,999.0384521484375,10.80213,10802.13 +1199,2025-03-07T03:35:16.975255-08:00,999.0435791015625,10.808843,10808.843 +1200,2025-03-07T03:35:27.774197-08:00,999.0555419921875,10.798942,10798.942 +1201,2025-03-07T03:35:38.582438-08:00,999.0226440429688,10.808241,10808.241 +1202,2025-03-07T03:35:49.385876-08:00,999.029296875,10.803438,10803.438 +1203,2025-03-07T03:36:00.189173-08:00,999.0226440429688,10.803297,10803.297 +1204,2025-03-07T03:36:10.996116-08:00,999.0226440429688,10.806943,10806.943 +1205,2025-03-07T03:36:21.805860-08:00,999.0435791015625,10.809744,10809.744 +1206,2025-03-07T03:36:32.611125-08:00,999.0687255859375,10.805265,10805.265 +1207,2025-03-07T03:36:43.412984-08:00,999.0424194335938,10.801859,10801.859 +1208,2025-03-07T03:36:54.216849-08:00,999.0424194335938,10.803865,10803.865 +1209,2025-03-07T03:37:05.008207-08:00,999.0490112304688,10.791358,10791.358 +1210,2025-03-07T03:37:15.815988-08:00,999.0424194335938,10.807781,10807.781 +1211,2025-03-07T03:37:26.619725-08:00,999.0661010742188,10.803737,10803.737 +1212,2025-03-07T03:37:37.430856-08:00,999.0343627929688,10.811131,10811.131 +1213,2025-03-07T03:37:48.230080-08:00,999.04638671875,10.799224,10799.224 +1214,2025-03-07T03:37:59.029088-08:00,999.0661010742188,10.799008,10799.008 +1215,2025-03-07T03:38:09.834858-08:00,999.0584106445312,10.80577,10805.77 +1216,2025-03-07T03:38:20.636515-08:00,999.0584106445312,10.801657,10801.657 +1217,2025-03-07T03:38:31.435201-08:00,999.03076171875,10.798686,10798.686 +1218,2025-03-07T03:38:42.239030-08:00,999.0584106445312,10.803829,10803.829 +1219,2025-03-07T03:38:53.041151-08:00,999.0570068359375,10.802121,10802.121 +1220,2025-03-07T03:39:03.848981-08:00,999.0570068359375,10.80783,10807.83 +1221,2025-03-07T03:39:14.649164-08:00,999.0164794921875,10.800183,10800.183 +1222,2025-03-07T03:39:25.447114-08:00,999.03076171875,10.79795,10797.95 +1223,2025-03-07T03:39:36.253250-08:00,999.0493774414062,10.806136,10806.136 +1224,2025-03-07T03:39:47.047682-08:00,999.0281982421875,10.794432,10794.432 +1225,2025-03-07T03:39:57.849759-08:00,999.0150756835938,10.802077,10802.077 +1226,2025-03-07T03:40:08.641854-08:00,999.0413208007812,10.792095,10792.095 +1227,2025-03-07T03:40:19.438840-08:00,999.013916015625,10.796986,10796.986 +1228,2025-03-07T03:40:30.236856-08:00,999.0216674804688,10.798016,10798.016 +1229,2025-03-07T03:40:41.050081-08:00,999.013916015625,10.813225,10813.225 +1230,2025-03-07T03:40:51.845123-08:00,999.008544921875,10.795042,10795.042 +1231,2025-03-07T03:41:02.652839-08:00,999.0204467773438,10.807716,10807.716 +1232,2025-03-07T03:41:13.445044-08:00,999.0204467773438,10.792205,10792.205 +1233,2025-03-07T03:41:24.252840-08:00,999.0125122070312,10.807796,10807.796 +1234,2025-03-07T03:41:35.058060-08:00,999.0007934570312,10.80522,10805.22 +1235,2025-03-07T03:41:45.866040-08:00,999.0125122070312,10.80798,10807.98 +1236,2025-03-07T03:41:56.665042-08:00,999.0179443359375,10.799002,10799.002 +1237,2025-03-07T03:42:07.466495-08:00,999.0114135742188,10.801453,10801.453 +1238,2025-03-07T03:42:18.274117-08:00,998.9771728515625,10.807622,10807.622 +1239,2025-03-07T03:42:29.073111-08:00,999.03515625,10.798994,10798.994 +1240,2025-03-07T03:42:39.882955-08:00,999.00341796875,10.809844,10809.844 +1241,2025-03-07T03:42:50.684917-08:00,999.028564453125,10.801962,10801.962 +1242,2025-03-07T03:43:01.483904-08:00,999.0296630859375,10.798987,10798.987 +1243,2025-03-07T03:43:12.270026-08:00,999.0165405273438,10.786122,10786.122 +1244,2025-03-07T03:43:23.072235-08:00,999.0074462890625,10.802209,10802.209 +1245,2025-03-07T03:43:33.869275-08:00,998.9931030273438,10.79704,10797.04 +1246,2025-03-07T03:43:44.674344-08:00,999.00341796875,10.805069,10805.069 +1247,2025-03-07T03:43:55.475237-08:00,999.0205688476562,10.800893,10800.893 +1248,2025-03-07T03:44:06.265858-08:00,999.028564453125,10.790621,10790.621 +1249,2025-03-07T03:44:17.071164-08:00,999.0139770507812,10.805306,10805.306 +1250,2025-03-07T03:44:27.867848-08:00,998.9810791015625,10.796684,10796.684 +1251,2025-03-07T03:44:38.673853-08:00,998.9931030273438,10.806005,10806.005 +1252,2025-03-07T03:44:49.473860-08:00,998.9971923828125,10.800007,10800.007 +1253,2025-03-07T03:45:00.273988-08:00,998.9996948242188,10.800128,10800.128 +1254,2025-03-07T03:45:11.071849-08:00,998.99169921875,10.797861,10797.861 +1255,2025-03-07T03:45:21.886258-08:00,998.9774780273438,10.814409,10814.409 +1256,2025-03-07T03:45:32.682894-08:00,998.96435546875,10.796636,10796.636 +1257,2025-03-07T03:45:43.484059-08:00,998.9447021484375,10.801165,10801.165 +1258,2025-03-07T03:45:54.290079-08:00,998.96435546875,10.80602,10806.02 +1259,2025-03-07T03:46:05.091861-08:00,999.0048217773438,10.801782,10801.782 +1260,2025-03-07T03:46:15.890130-08:00,998.9891967773438,10.798269,10798.269 +1261,2025-03-07T03:46:26.682957-08:00,999.0023193359375,10.792827,10792.827 +1262,2025-03-07T03:46:37.488683-08:00,998.9801025390625,10.805726,10805.726 +1263,2025-03-07T03:46:48.280387-08:00,998.999755859375,10.791704,10791.704 +1264,2025-03-07T03:46:59.078252-08:00,999.001220703125,10.797865,10797.865 +1265,2025-03-07T03:47:09.879835-08:00,998.9986572265625,10.801583,10801.583 +1266,2025-03-07T03:47:20.679238-08:00,999.00634765625,10.799403,10799.403 +1267,2025-03-07T03:47:31.478162-08:00,998.9986572265625,10.798924,10798.924 +1268,2025-03-07T03:47:42.282935-08:00,999.0106201171875,10.804773,10804.773 +1269,2025-03-07T03:47:53.078895-08:00,999.0106201171875,10.79596,10795.96 +1270,2025-03-07T03:48:03.877916-08:00,999.01953125,10.799021,10799.021 +1271,2025-03-07T03:48:14.685979-08:00,999.02490234375,10.808063,10808.063 +1272,2025-03-07T03:48:25.484833-08:00,998.9920043945312,10.798854,10798.854 +1273,2025-03-07T03:48:36.282925-08:00,998.99609375,10.798092,10798.092 +1274,2025-03-07T03:48:47.087862-08:00,999.0303344726562,10.804937,10804.937 +1275,2025-03-07T03:48:57.883844-08:00,998.9818725585938,10.795982,10795.982 +1276,2025-03-07T03:49:08.686069-08:00,999.048583984375,10.802225,10802.225 +1277,2025-03-07T03:49:19.480917-08:00,998.99609375,10.794848,10794.848 +1278,2025-03-07T03:49:30.288569-08:00,999.02783203125,10.807652,10807.652 +1279,2025-03-07T03:49:41.085349-08:00,999.0474853515625,10.79678,10796.78 +1280,2025-03-07T03:49:51.883729-08:00,999.0067138671875,10.79838,10798.38 +1281,2025-03-07T03:50:02.685181-08:00,998.9935913085938,10.801452,10801.452 +1282,2025-03-07T03:50:13.490329-08:00,999.01220703125,10.805148,10805.148 +1283,2025-03-07T03:50:24.280657-08:00,998.9910278320312,10.790328,10790.328 +1284,2025-03-07T03:50:35.090446-08:00,999.0055541992188,10.809789,10809.789 +1285,2025-03-07T03:50:45.887152-08:00,999.0055541992188,10.796706,10796.706 +1286,2025-03-07T03:50:56.690838-08:00,999.0370483398438,10.803686,10803.686 +1287,2025-03-07T03:51:07.489913-08:00,999.0029907226562,10.799075,10799.075 +1288,2025-03-07T03:51:18.287848-08:00,999.0015869140625,10.797935,10797.935 +1289,2025-03-07T03:51:29.089373-08:00,999.0226440429688,10.801525,10801.525 +1290,2025-03-07T03:51:39.893100-08:00,999.0370483398438,10.803727,10803.727 +1291,2025-03-07T03:51:50.691079-08:00,998.9807739257812,10.797979,10797.979 +1292,2025-03-07T03:52:01.488846-08:00,999.029296875,10.797767,10797.767 +1293,2025-03-07T03:52:12.292661-08:00,998.9924926757812,10.803815,10803.815 +1294,2025-03-07T03:52:23.088873-08:00,999.0398559570312,10.796212,10796.212 +1295,2025-03-07T03:52:33.899166-08:00,999.0136108398438,10.810293,10810.293 +1296,2025-03-07T03:52:44.692863-08:00,999.0136108398438,10.793697,10793.697 +1297,2025-03-07T03:52:55.498910-08:00,999.0242309570312,10.806047,10806.047 +1298,2025-03-07T03:53:06.296279-08:00,999.0384521484375,10.797369,10797.369 +1299,2025-03-07T03:53:17.104193-08:00,999.037353515625,10.807914,10807.914 +1300,2025-03-07T03:53:27.894257-08:00,999.01220703125,10.790064,10790.064 +1301,2025-03-07T03:53:38.694744-08:00,999.0332641601562,10.800487,10800.487 +1302,2025-03-07T03:53:49.492151-08:00,999.0242309570312,10.797407,10797.407 +1303,2025-03-07T03:54:00.297864-08:00,999.0449829101562,10.805713,10805.713 +1304,2025-03-07T03:54:11.098893-08:00,999.0095825195312,10.801029,10801.029 +1305,2025-03-07T03:54:21.887858-08:00,999.0161743164062,10.788965,10788.965 +1306,2025-03-07T03:54:32.691841-08:00,999.037353515625,10.803983,10803.983 +1307,2025-03-07T03:54:43.491706-08:00,999.0030517578125,10.799865,10799.865 +1308,2025-03-07T03:54:54.282977-08:00,998.982177734375,10.791271,10791.271 +1309,2025-03-07T03:55:05.084994-08:00,999.0359497070312,10.802017,10802.017 +1310,2025-03-07T03:55:15.885417-08:00,998.9964599609375,10.800423,10800.423 +1311,2025-03-07T03:55:26.683648-08:00,998.9993896484375,10.798231,10798.231 +1312,2025-03-07T03:55:37.483386-08:00,999.0216674804688,10.799738,10799.738 +1313,2025-03-07T03:55:48.293106-08:00,999.0347900390625,10.80972,10809.72 +1314,2025-03-07T03:55:59.092183-08:00,999.0125122070312,10.799077,10799.077 +1315,2025-03-07T03:56:09.901867-08:00,999.0070190429688,10.809684,10809.684 +1316,2025-03-07T03:56:20.704915-08:00,999.0452880859375,10.803048,10803.048 +1317,2025-03-07T03:56:31.497417-08:00,999.01904296875,10.792502,10792.502 +1318,2025-03-07T03:56:42.310161-08:00,999.0111083984375,10.812744,10812.744 +1319,2025-03-07T03:56:53.109160-08:00,999.0570068359375,10.798999,10798.999 +1320,2025-03-07T03:57:03.913348-08:00,999.0438842773438,10.804188,10804.188 +1321,2025-03-07T03:57:14.714853-08:00,999.0493774414062,10.801505,10801.505 +1322,2025-03-07T03:57:25.525860-08:00,999.078125,10.811007,10811.007 +1323,2025-03-07T03:57:36.327998-08:00,999.03076171875,10.802138,10802.138 +1324,2025-03-07T03:57:47.131170-08:00,999.0296630859375,10.803172,10803.172 +1325,2025-03-07T03:57:57.928417-08:00,999.055908203125,10.797247,10797.247 +1326,2025-03-07T03:58:08.733337-08:00,999.0402221679688,10.80492,10804.92 +1327,2025-03-07T03:58:19.529274-08:00,999.0664672851562,10.795937,10795.937 +1328,2025-03-07T03:58:30.339130-08:00,999.0730590820312,10.809856,10809.856 +1329,2025-03-07T03:58:41.136937-08:00,999.0797119140625,10.797807,10797.807 +1330,2025-03-07T03:58:51.936971-08:00,999.0664672851562,10.800034,10800.034 +1331,2025-03-07T03:59:02.748090-08:00,999.0784912109375,10.811119,10811.119 +1332,2025-03-07T03:59:24.337851-08:00,999.0719604492188,21.589761,21589.761 +1333,2025-03-07T03:59:35.137051-08:00,999.0719604492188,10.7992,10799.2 +1334,2025-03-07T03:59:45.937848-08:00,999.0939331054688,10.800797,10800.797 +1335,2025-03-07T03:59:56.743863-08:00,999.057373046875,10.806015,10806.015 +1336,2025-03-07T04:00:07.538853-08:00,999.0653686523438,10.79499,10794.99 +1337,2025-03-07T04:00:18.343857-08:00,999.0928344726562,10.805004,10805.004 +1338,2025-03-07T04:00:29.144882-08:00,999.0901489257812,10.801025,10801.025 +1339,2025-03-07T04:00:39.943997-08:00,999.0653686523438,10.799115,10799.115 +1340,2025-03-07T04:00:50.741855-08:00,999.0928344726562,10.797858,10797.858 +1341,2025-03-07T04:01:01.549862-08:00,999.1256103515625,10.808007,10808.007 +1342,2025-03-07T04:01:12.348427-08:00,999.0982055664062,10.798565,10798.565 +1343,2025-03-07T04:01:23.150906-08:00,999.1124877929688,10.802479,10802.479 +1344,2025-03-07T04:01:33.954810-08:00,999.0704956054688,10.803904,10803.904 +1345,2025-03-07T04:01:44.757130-08:00,999.104736328125,10.80232,10802.32 +1346,2025-03-07T04:01:55.555245-08:00,999.0901489257812,10.798115,10798.115 +1347,2025-03-07T04:02:06.354561-08:00,999.0916137695312,10.799316,10799.316 +1348,2025-03-07T04:02:17.157373-08:00,999.0967407226562,10.802812,10802.812 +1349,2025-03-07T04:02:27.959212-08:00,999.104736328125,10.801839,10801.839 +1350,2025-03-07T04:02:37.417434-08:00,999.1033325195312,9.458222,9458.222 +1351,2025-03-07T04:02:38.772199-08:00,999.0916137695312,1.354765,1354.765 +1352,2025-03-07T04:02:49.566120-08:00,999.1190795898438,10.793921,10793.921 +1353,2025-03-07T04:03:00.375292-08:00,999.1070556640625,10.809172,10809.172 +1354,2025-03-07T04:03:11.177868-08:00,999.0653686523438,10.802576,10802.576 +1355,2025-03-07T04:03:21.973376-08:00,999.1004638671875,10.795508,10795.508 +1356,2025-03-07T04:03:32.773672-08:00,999.0939331054688,10.800296,10800.296 +1357,2025-03-07T04:03:43.571067-08:00,999.067626953125,10.797395,10797.395 +1358,2025-03-07T04:03:54.370858-08:00,999.1029663085938,10.799791,10799.791 +1359,2025-03-07T04:04:05.168851-08:00,999.1110229492188,10.797993,10797.993 +1360,2025-03-07T04:04:15.969963-08:00,999.1095581054688,10.801112,10801.112 +1361,2025-03-07T04:04:26.771481-08:00,999.1070556640625,10.801518,10801.518 +1362,2025-03-07T04:04:37.579239-08:00,999.1070556640625,10.807758,10807.758 +1363,2025-03-07T04:04:48.382862-08:00,999.1029663085938,10.803623,10803.623 +1364,2025-03-07T04:04:59.181858-08:00,999.1146850585938,10.798996,10798.996 +1365,2025-03-07T04:05:09.986054-08:00,999.1226806640625,10.804196,10804.196 +1366,2025-03-07T04:05:20.784863-08:00,999.1066284179688,10.798809,10798.809 +1367,2025-03-07T04:05:31.662462-08:00,999.1066284179688,10.877599,10877.599 +1368,2025-03-07T04:05:42.461679-08:00,999.1091918945312,10.799217,10799.217 +1369,2025-03-07T04:05:53.266461-08:00,999.12890625,10.804782,10804.782 +1370,2025-03-07T04:06:04.068582-08:00,999.1015625,10.802121,10802.121 +1371,2025-03-07T04:06:14.878453-08:00,999.1051635742188,10.809871,10809.871 +1372,2025-03-07T04:06:25.675442-08:00,999.1040649414062,10.796989,10796.989 +1373,2025-03-07T04:06:36.482528-08:00,999.122314453125,10.807086,10807.086 +1374,2025-03-07T04:06:47.289411-08:00,999.1077270507812,10.806883,10806.883 +1375,2025-03-07T04:06:58.094451-08:00,999.1168823242188,10.80504,10805.04 +1376,2025-03-07T04:07:08.898446-08:00,999.12451171875,10.803995,10803.995 +1377,2025-03-07T04:07:19.703970-08:00,999.1325073242188,10.805524,10805.524 +1378,2025-03-07T04:07:30.507446-08:00,999.0537719726562,10.803476,10803.476 +1379,2025-03-07T04:07:41.299709-08:00,999.1220092773438,10.792263,10792.263 +1380,2025-03-07T04:07:52.107562-08:00,999.1231079101562,10.807853,10807.853 +1381,2025-03-07T04:08:02.911436-08:00,999.0917358398438,10.803874,10803.874 +1382,2025-03-07T04:08:13.709937-08:00,999.099365234375,10.798501,10798.501 +1383,2025-03-07T04:08:24.519269-08:00,999.10595703125,10.809332,10809.332 +1384,2025-03-07T04:08:35.315456-08:00,999.0902099609375,10.796187,10796.187 +1385,2025-03-07T04:08:46.124764-08:00,999.0650634765625,10.809308,10809.308 +1386,2025-03-07T04:08:56.933462-08:00,999.097900390625,10.808698,10808.698 +1387,2025-03-07T04:09:07.731642-08:00,999.0953369140625,10.79818,10798.18 +1388,2025-03-07T04:09:18.540448-08:00,999.0230712890625,10.808806,10808.806 +1389,2025-03-07T04:09:29.343454-08:00,999.0661010742188,10.803006,10803.006 +1390,2025-03-07T04:09:40.151444-08:00,999.0607299804688,10.80799,10807.99 +1391,2025-03-07T04:09:50.950510-08:00,999.0621337890625,10.799066,10799.066 +1392,2025-03-07T04:10:01.756456-08:00,999.094970703125,10.805946,10805.946 +1393,2025-03-07T04:10:12.561666-08:00,999.0753173828125,10.80521,10805.21 +1394,2025-03-07T04:10:23.360685-08:00,999.0632934570312,10.799019,10799.019 +1395,2025-03-07T04:10:34.166507-08:00,999.0712280273438,10.805822,10805.822 +1396,2025-03-07T04:10:44.975733-08:00,999.0789184570312,10.809226,10809.226 +1397,2025-03-07T04:10:55.774436-08:00,999.0592041015625,10.798703,10798.703 +1398,2025-03-07T04:11:06.585510-08:00,999.0540771484375,10.811074,10811.074 +1399,2025-03-07T04:11:17.381441-08:00,999.0657958984375,10.795931,10795.931 +1400,2025-03-07T04:11:28.185460-08:00,999.0828857421875,10.804019,10804.019 +1401,2025-03-07T04:11:38.982933-08:00,999.0828857421875,10.797473,10797.473 +1402,2025-03-07T04:11:49.785128-08:00,999.0880737304688,10.802195,10802.195 +1403,2025-03-07T04:12:00.580439-08:00,999.074951171875,10.795311,10795.311 +1404,2025-03-07T04:12:11.385440-08:00,999.09716796875,10.805001,10805.001 +1405,2025-03-07T04:12:22.190594-08:00,999.0775146484375,10.805154,10805.154 +1406,2025-03-07T04:12:32.995198-08:00,999.0789184570312,10.804604,10804.604 +1407,2025-03-07T04:12:43.791974-08:00,999.06689453125,10.796776,10796.776 +1408,2025-03-07T04:12:54.594442-08:00,999.0471801757812,10.802468,10802.468 +1409,2025-03-07T04:13:05.392452-08:00,999.0851440429688,10.79801,10798.01 +1410,2025-03-07T04:13:16.196908-08:00,999.05224609375,10.804456,10804.456 +1411,2025-03-07T04:13:26.998438-08:00,999.0679931640625,10.80153,10801.53 +1412,2025-03-07T04:13:37.801507-08:00,999.0956420898438,10.803069,10803.069 +1413,2025-03-07T04:13:48.608440-08:00,999.0890502929688,10.806933,10806.933 +1414,2025-03-07T04:13:59.403884-08:00,999.0836181640625,10.795444,10795.444 +1415,2025-03-07T04:14:10.206607-08:00,999.1070556640625,10.802723,10802.723 +1416,2025-03-07T04:14:21.009804-08:00,999.114990234375,10.803197,10803.197 +1417,2025-03-07T04:14:31.808427-08:00,999.1029663085938,10.798623,10798.623 +1418,2025-03-07T04:14:42.604376-08:00,999.083251953125,10.795949,10795.949 +1419,2025-03-07T04:14:53.408055-08:00,999.09375,10.803679,10803.679 +1420,2025-03-07T04:15:04.211346-08:00,999.10693359375,10.803291,10803.291 +1421,2025-03-07T04:15:15.008912-08:00,999.0477905273438,10.797566,10797.566 +1422,2025-03-07T04:15:25.818373-08:00,999.056884765625,10.809461,10809.461 +1423,2025-03-07T04:15:36.622783-08:00,999.07666015625,10.80441,10804.41 +1424,2025-03-07T04:15:47.425877-08:00,999.0909423828125,10.803094,10803.094 +1425,2025-03-07T04:15:58.227807-08:00,999.0948486328125,10.80193,10801.93 +1426,2025-03-07T04:16:09.019502-08:00,999.0817260742188,10.791695,10791.695 +1427,2025-03-07T04:16:19.817503-08:00,999.0631103515625,10.798001,10798.001 +1428,2025-03-07T04:16:30.620457-08:00,999.1051025390625,10.802954,10802.954 +1429,2025-03-07T04:16:41.425708-08:00,999.0802612304688,10.805251,10805.251 +1430,2025-03-07T04:16:52.214514-08:00,999.05615234375,10.788806,10788.806 +1431,2025-03-07T04:17:03.018500-08:00,999.0956420898438,10.803986,10803.986 +1432,2025-03-07T04:17:13.816515-08:00,999.0995483398438,10.798015,10798.015 +1433,2025-03-07T04:17:24.610044-08:00,999.0733032226562,10.793529,10793.529 +1434,2025-03-07T04:17:35.411793-08:00,999.0769653320312,10.801749,10801.749 +1435,2025-03-07T04:17:46.215821-08:00,999.08349609375,10.804028,10804.028 +1436,2025-03-07T04:17:57.007522-08:00,999.0597534179688,10.791701,10791.701 +1437,2025-03-07T04:18:07.815834-08:00,999.0283813476562,10.808312,10808.312 +1438,2025-03-07T04:18:18.607749-08:00,999.0623168945312,10.791915,10791.915 +1439,2025-03-07T04:18:29.405436-08:00,999.063720703125,10.797687,10797.687 +1440,2025-03-07T04:18:40.208496-08:00,999.079345703125,10.80306,10803.06 +1441,2025-03-07T04:18:51.003444-08:00,999.0753784179688,10.794948,10794.948 +1442,2025-03-07T04:19:01.801397-08:00,999.0831298828125,10.797953,10797.953 +1443,2025-03-07T04:19:12.602450-08:00,999.0962524414062,10.801053,10801.053 +1444,2025-03-07T04:19:23.398779-08:00,999.0801391601562,10.796329,10796.329 +1445,2025-03-07T04:19:34.207759-08:00,999.09326171875,10.80898,10808.98 +1446,2025-03-07T04:19:45.005895-08:00,999.0826416015625,10.798136,10798.136 +1447,2025-03-07T04:19:55.814488-08:00,999.0588989257812,10.808593,10808.593 +1448,2025-03-07T04:20:06.612835-08:00,999.0523681640625,10.798347,10798.347 +1449,2025-03-07T04:20:17.409868-08:00,999.0812377929688,10.797033,10797.033 +1450,2025-03-07T04:20:28.214243-08:00,999.0772094726562,10.804375,10804.375 +1451,2025-03-07T04:20:39.022669-08:00,999.0654907226562,10.808426,10808.426 +1452,2025-03-07T04:20:49.813775-08:00,999.072021484375,10.791106,10791.106 +1453,2025-03-07T04:21:00.622750-08:00,999.0953979492188,10.808975,10808.975 +1454,2025-03-07T04:21:11.426296-08:00,999.0968017578125,10.803546,10803.546 +1455,2025-03-07T04:21:22.224108-08:00,999.0770263671875,10.797812,10797.812 +1456,2025-03-07T04:21:33.030731-08:00,999.0716552734375,10.806623,10806.623 +1457,2025-03-07T04:21:43.823604-08:00,999.0664672851562,10.792873,10792.873 +1458,2025-03-07T04:21:54.628515-08:00,999.0873413085938,10.804911,10804.911 +1459,2025-03-07T04:22:05.425440-08:00,999.0712280273438,10.796925,10796.925 +1460,2025-03-07T04:22:16.222982-08:00,999.1132202148438,10.797542,10797.542 +1461,2025-03-07T04:22:27.025457-08:00,999.0554809570312,10.802475,10802.475 +1462,2025-03-07T04:22:37.826452-08:00,999.1015014648438,10.800995,10800.995 +1463,2025-03-07T04:22:48.622447-08:00,999.1109619140625,10.795995,10795.995 +1464,2025-03-07T04:22:59.423462-08:00,999.1251831054688,10.801015,10801.015 +1465,2025-03-07T04:23:10.227682-08:00,999.1251831054688,10.80422,10804.22 +1466,2025-03-07T04:23:21.024463-08:00,999.0962524414062,10.796781,10796.781 +1467,2025-03-07T04:23:31.830664-08:00,999.1079711914062,10.806201,10806.201 +1468,2025-03-07T04:23:42.631250-08:00,999.0896606445312,10.800586,10800.586 +1469,2025-03-07T04:23:53.429789-08:00,999.13818359375,10.798539,10798.539 +1470,2025-03-07T04:24:04.225779-08:00,999.139404296875,10.79599,10795.99 +1471,2025-03-07T04:24:15.024290-08:00,999.1746826171875,10.798511,10798.511 +1472,2025-03-07T04:24:25.817016-08:00,999.1353149414062,10.792726,10792.726 +1473,2025-03-07T04:24:36.616446-08:00,999.157470703125,10.79943,10799.43 +1474,2025-03-07T04:24:47.424429-08:00,999.143310546875,10.807983,10807.983 +1475,2025-03-07T04:24:58.224450-08:00,999.130126953125,10.800021,10800.021 +1476,2025-03-07T04:25:09.025455-08:00,999.1915893554688,10.801005,10801.005 +1477,2025-03-07T04:25:19.817444-08:00,999.1743774414062,10.791989,10791.989 +1478,2025-03-07T04:25:30.625442-08:00,999.13232421875,10.807998,10807.998 +1479,2025-03-07T04:25:41.428698-08:00,999.182373046875,10.803256,10803.256 +1480,2025-03-07T04:25:52.220638-08:00,999.1834106445312,10.79194,10791.94 +1481,2025-03-07T04:26:03.028435-08:00,999.1900024414062,10.807797,10807.797 +1482,2025-03-07T04:26:13.826649-08:00,999.1900024414062,10.798214,10798.214 +1483,2025-03-07T04:26:24.625450-08:00,999.1651611328125,10.798801,10798.801 +1484,2025-03-07T04:26:35.426257-08:00,999.1782836914062,10.800807,10800.807 +1485,2025-03-07T04:26:46.225748-08:00,999.1727905273438,10.799491,10799.491 +1486,2025-03-07T04:26:57.034976-08:00,999.1807861328125,10.809228,10809.228 +1487,2025-03-07T04:26:57.034976-08:00,999.1807861328125,0.0,0.0 +1488,2025-03-07T04:27:07.832035-08:00,999.237060546875,10.797059,10797.059 +1489,2025-03-07T04:27:18.641866-08:00,999.2359619140625,10.809831,10809.831 +1490,2025-03-07T04:27:29.438888-08:00,999.2435913085938,10.797022,10797.022 +1491,2025-03-07T04:27:40.243218-08:00,999.2263793945312,10.80433,10804.33 +1492,2025-03-07T04:27:51.052466-08:00,999.2318725585938,10.809248,10809.248 +1493,2025-03-07T04:28:01.848843-08:00,999.2212524414062,10.796377,10796.377 +1494,2025-03-07T04:28:12.653648-08:00,999.2081298828125,10.804805,10804.805 +1495,2025-03-07T04:28:23.450423-08:00,999.2421264648438,10.796775,10796.775 +1496,2025-03-07T04:28:34.254052-08:00,999.209228515625,10.803629,10803.629 +1497,2025-03-07T04:28:45.056350-08:00,999.251220703125,10.802298,10802.298 +1498,2025-03-07T04:28:55.862779-08:00,999.2304077148438,10.806429,10806.429 +1499,2025-03-07T04:29:06.663440-08:00,999.1843872070312,10.800661,10800.661 +1500,2025-03-07T04:29:17.468115-08:00,999.220947265625,10.804675,10804.675 +1501,2025-03-07T04:29:28.269791-08:00,999.232666015625,10.801676,10801.676 +1502,2025-03-07T04:29:39.075747-08:00,999.2285766601562,10.805956,10805.956 +1503,2025-03-07T04:29:49.880838-08:00,999.236572265625,10.805091,10805.091 +1504,2025-03-07T04:30:00.680394-08:00,999.2310791015625,10.799556,10799.556 +1505,2025-03-07T04:30:11.493450-08:00,999.2179565429688,10.813056,10813.056 +1506,2025-03-07T04:30:22.288907-08:00,999.2401733398438,10.795457,10795.457 +1507,2025-03-07T04:30:33.089898-08:00,999.2467041015625,10.800991,10800.991 +1508,2025-03-07T04:30:43.892570-08:00,999.220458984375,10.802672,10802.672 +1509,2025-03-07T04:30:54.691921-08:00,999.1967163085938,10.799351,10799.351 +1510,2025-03-07T04:31:05.503791-08:00,999.18359375,10.81187,10811.87 +1511,2025-03-07T04:31:16.308950-08:00,999.192626953125,10.805159,10805.159 +1512,2025-03-07T04:31:27.107051-08:00,999.2189331054688,10.798101,10798.101 +1513,2025-03-07T04:31:37.914598-08:00,999.1875,10.807547,10807.547 +1514,2025-03-07T04:31:48.716875-08:00,999.2017211914062,10.802277,10802.277 +1515,2025-03-07T04:31:59.525907-08:00,999.1900024414062,10.809032,10809.032 +1516,2025-03-07T04:32:10.323776-08:00,999.2042846679688,10.797869,10797.869 +1517,2025-03-07T04:32:21.128694-08:00,999.2189331054688,10.804918,10804.918 +1518,2025-03-07T04:32:27.931117-08:00,999.1911010742188,6.802423,6802.423 +1519,2025-03-07T04:32:31.931016-08:00,999.219970703125,3.999899,3999.899 +1520,2025-03-07T04:32:42.729431-08:00,999.1871337890625,10.798415,10798.415 +1521,2025-03-07T04:32:53.537717-08:00,999.195068359375,10.808286,10808.286 +1522,2025-03-07T04:33:04.334878-08:00,999.1962280273438,10.797161,10797.161 +1523,2025-03-07T04:33:15.143779-08:00,999.1724243164062,10.808901,10808.901 +1524,2025-03-07T04:33:25.948383-08:00,999.2195434570312,10.804604,10804.604 +1525,2025-03-07T04:33:36.747762-08:00,999.2012329101562,10.799379,10799.379 +1526,2025-03-07T04:33:47.549942-08:00,999.2078247070312,10.80218,10802.18 +1527,2025-03-07T04:33:58.358045-08:00,999.2089233398438,10.808103,10808.103 +1528,2025-03-07T04:34:09.154976-08:00,999.2103271484375,10.796931,10796.931 +1529,2025-03-07T04:34:19.959424-08:00,999.224609375,10.804448,10804.448 +1530,2025-03-07T04:34:30.768349-08:00,999.224609375,10.808925,10808.925 +1531,2025-03-07T04:34:41.569635-08:00,999.2468872070312,10.801286,10801.286 +1532,2025-03-07T04:34:52.374927-08:00,999.1956176757812,10.805292,10805.292 +1533,2025-03-07T04:35:03.172122-08:00,999.2337646484375,10.797195,10797.195 +1534,2025-03-07T04:35:13.986899-08:00,999.22314453125,10.814777,10814.777 +1535,2025-03-07T04:35:24.782830-08:00,999.2599487304688,10.795931,10795.931 +1536,2025-03-07T04:35:35.592791-08:00,999.2401733398438,10.809961,10809.961 +1537,2025-03-07T04:35:46.401592-08:00,999.2229614257812,10.808801,10808.801 +1538,2025-03-07T04:35:57.198817-08:00,999.217529296875,10.797225,10797.225 +1539,2025-03-07T04:36:07.998811-08:00,999.2003173828125,10.799994,10799.994 +1540,2025-03-07T04:36:18.799399-08:00,999.2265625,10.800588,10800.588 +1541,2025-03-07T04:36:29.602997-08:00,999.2554931640625,10.803598,10803.598 +1542,2025-03-07T04:36:40.400088-08:00,999.2291259765625,10.797091,10797.091 +1543,2025-03-07T04:36:51.199493-08:00,999.2393798828125,10.799405,10799.405 +1544,2025-03-07T04:37:01.990466-08:00,999.2341918945312,10.790973,10790.973 +1545,2025-03-07T04:37:12.794177-08:00,999.2418823242188,10.803711,10803.711 +1546,2025-03-07T04:37:23.596692-08:00,999.2078857421875,10.802515,10802.515 +1547,2025-03-07T04:37:34.400684-08:00,999.2564086914062,10.803992,10803.992 +1548,2025-03-07T04:37:45.207458-08:00,999.2366943359375,10.806774,10806.774 +1549,2025-03-07T04:37:56.006520-08:00,999.244384765625,10.799062,10799.062 +1550,2025-03-07T04:38:06.804456-08:00,999.2640380859375,10.797936,10797.936 +1551,2025-03-07T04:38:17.607437-08:00,999.286376953125,10.802981,10802.981 +1552,2025-03-07T04:38:28.410457-08:00,999.2786865234375,10.80302,10803.02 +1553,2025-03-07T04:38:39.208451-08:00,999.2655639648438,10.797994,10797.994 +1554,2025-03-07T04:38:50.016454-08:00,999.2745971679688,10.808003,10808.003 +1555,2025-03-07T04:39:00.821449-08:00,999.3192138671875,10.804995,10804.995 +1556,2025-03-07T04:39:11.625440-08:00,999.290283203125,10.803991,10803.991 +1557,2025-03-07T04:39:22.425954-08:00,999.3045043945312,10.800514,10800.514 +1558,2025-03-07T04:39:33.236439-08:00,999.3099975585938,10.810485,10810.485 +1559,2025-03-07T04:39:44.042453-08:00,999.3308715820312,10.806014,10806.014 +1560,2025-03-07T04:39:54.848599-08:00,999.302001953125,10.806146,10806.146 +1561,2025-03-07T04:40:05.656506-08:00,999.303466796875,10.807907,10807.907 +1562,2025-03-07T04:40:16.465652-08:00,999.3348999023438,10.809146,10809.146 +1563,2025-03-07T04:40:27.276045-08:00,999.3177490234375,10.810393,10810.393 +1564,2025-03-07T04:40:38.085498-08:00,999.3495483398438,10.809453,10809.453 +1565,2025-03-07T04:40:48.881831-08:00,999.3191528320312,10.796333,10796.333 +1566,2025-03-07T04:40:59.698462-08:00,999.3125,10.816631,10816.631 +1567,2025-03-07T04:41:10.494980-08:00,999.3389282226562,10.796518,10796.518 +1568,2025-03-07T04:41:21.297778-08:00,999.3165893554688,10.802798,10802.798 +1569,2025-03-07T04:41:32.105456-08:00,999.3177490234375,10.807678,10807.678 +1570,2025-03-07T04:41:42.909730-08:00,999.3585815429688,10.804274,10804.274 +1571,2025-03-07T04:41:53.712462-08:00,999.3400268554688,10.802732,10802.732 +1572,2025-03-07T04:42:04.526585-08:00,999.305908203125,10.814123,10814.123 +1573,2025-03-07T04:42:15.325807-08:00,999.30712890625,10.799222,10799.222 +1574,2025-03-07T04:42:26.138441-08:00,999.3214111328125,10.812634,10812.634 +1575,2025-03-07T04:42:36.947450-08:00,999.3214111328125,10.809009,10809.009 +1576,2025-03-07T04:42:47.756553-08:00,999.3556518554688,10.809103,10809.103 +1577,2025-03-07T04:42:58.569053-08:00,999.3435668945312,10.8125,10812.5 +1578,2025-03-07T04:43:09.370931-08:00,999.3107299804688,10.801878,10801.878 +1579,2025-03-07T04:43:20.180300-08:00,999.3699340820312,10.809369,10809.369 +1580,2025-03-07T04:43:30.983719-08:00,999.3359375,10.803419,10803.419 +1581,2025-03-07T04:43:41.798834-08:00,999.3370361328125,10.815115,10815.115 +1582,2025-03-07T04:43:52.596453-08:00,999.3359375,10.797619,10797.619 +1583,2025-03-07T04:44:03.411601-08:00,999.3304443359375,10.815148,10815.148 +1584,2025-03-07T04:44:14.216051-08:00,999.3055419921875,10.80445,10804.45 +1585,2025-03-07T04:44:25.017466-08:00,999.2726440429688,10.801415,10801.415 +1586,2025-03-07T04:44:35.833665-08:00,999.2923583984375,10.816199,10816.199 +1587,2025-03-07T04:44:46.633698-08:00,999.3132934570312,10.800033,10800.033 +1588,2025-03-07T04:44:57.435464-08:00,999.3253173828125,10.801766,10801.766 +1589,2025-03-07T04:45:08.243445-08:00,999.3485717773438,10.807981,10807.981 +1590,2025-03-07T04:45:19.051678-08:00,999.35009765625,10.808233,10808.233 +1591,2025-03-07T04:45:29.854451-08:00,999.330322265625,10.802773,10802.773 +1592,2025-03-07T04:45:40.661456-08:00,999.342041015625,10.807005,10807.005 +1593,2025-03-07T04:45:51.472263-08:00,999.359130859375,10.810807,10810.807 +1594,2025-03-07T04:46:02.270500-08:00,999.3471069335938,10.798237,10798.237 +1595,2025-03-07T04:46:13.082789-08:00,999.3353881835938,10.812289,10812.289 +1596,2025-03-07T04:46:23.890146-08:00,999.3485107421875,10.807357,10807.357 +1597,2025-03-07T04:46:34.693051-08:00,999.3353881835938,10.802905,10802.905 +1598,2025-03-07T04:46:45.497849-08:00,999.3364868164062,10.804798,10804.798 +1599,2025-03-07T04:46:56.304956-08:00,999.3456420898438,10.807107,10807.107 +1600,2025-03-07T04:47:07.111457-08:00,999.341552734375,10.806501,10806.501 +1601,2025-03-07T04:47:17.920440-08:00,999.341552734375,10.808983,10808.983 +1602,2025-03-07T04:47:28.725741-08:00,999.3875732421875,10.805301,10805.301 +1603,2025-03-07T04:47:39.533714-08:00,999.3703002929688,10.807973,10807.973 +1604,2025-03-07T04:47:50.334456-08:00,999.3297729492188,10.800742,10800.742 +1605,2025-03-07T04:48:01.138436-08:00,999.357177734375,10.80398,10803.98 +1606,2025-03-07T04:48:11.947706-08:00,999.3517456054688,10.80927,10809.27 +1607,2025-03-07T04:48:22.768025-08:00,999.303466796875,10.820319,10820.319 +1608,2025-03-07T04:48:33.572585-08:00,999.338623046875,10.80456,10804.56 +1609,2025-03-07T04:48:44.381719-08:00,999.3400268554688,10.809134,10809.134 +1610,2025-03-07T04:48:55.194721-08:00,999.3531494140625,10.813002,10813.002 +1611,2025-03-07T04:49:06.004625-08:00,999.326904296875,10.809904,10809.904 +1612,2025-03-07T04:49:16.819456-08:00,999.354248046875,10.814831,10814.831 +1613,2025-03-07T04:49:27.623451-08:00,999.354248046875,10.803995,10803.995 +1614,2025-03-07T04:49:38.442115-08:00,999.3490600585938,10.818664,10818.664 +1615,2025-03-07T04:49:49.249860-08:00,999.356689453125,10.807745,10807.745 +1616,2025-03-07T04:50:00.060901-08:00,999.3435668945312,10.811041,10811.041 +1617,2025-03-07T04:50:10.863635-08:00,999.371337890625,10.802734,10802.734 +1618,2025-03-07T04:50:21.673281-08:00,999.3515625,10.809646,10809.646 +1619,2025-03-07T04:50:32.485652-08:00,999.3922119140625,10.812371,10812.371 +1620,2025-03-07T04:50:43.290444-08:00,999.3856201171875,10.804792,10804.792 +1621,2025-03-07T04:50:54.104458-08:00,999.3790893554688,10.814014,10814.014 +1622,2025-03-07T04:51:04.906450-08:00,999.3738403320312,10.801992,10801.992 +1623,2025-03-07T04:51:15.723567-08:00,999.3881225585938,10.817117,10817.117 +1624,2025-03-07T04:51:26.532764-08:00,999.3764038085938,10.809197,10809.197 +1625,2025-03-07T04:51:37.336239-08:00,999.3829956054688,10.803475,10803.475 +1626,2025-03-07T04:51:48.139679-08:00,999.3632202148438,10.80344,10803.44 +1627,2025-03-07T04:51:58.946762-08:00,999.3511962890625,10.807083,10807.083 +1628,2025-03-07T04:52:09.743760-08:00,999.359130859375,10.796998,10796.998 +1629,2025-03-07T04:52:20.553812-08:00,999.3865356445312,10.810052,10810.052 +1630,2025-03-07T04:52:31.354864-08:00,999.36572265625,10.801052,10801.052 +1631,2025-03-07T04:52:42.160807-08:00,999.3734130859375,10.805943,10805.943 +1632,2025-03-07T04:52:52.971459-08:00,999.403564453125,10.810652,10810.652 +1633,2025-03-07T04:53:03.771933-08:00,999.3587646484375,10.800474,10800.474 +1634,2025-03-07T04:53:14.582708-08:00,999.37841796875,10.810775,10810.775 +1635,2025-03-07T04:53:25.383888-08:00,999.3904418945312,10.80118,10801.18 +1636,2025-03-07T04:53:36.183464-08:00,999.3981323242188,10.799576,10799.576 +1637,2025-03-07T04:53:46.997999-08:00,999.3641967773438,10.814535,10814.535 +1638,2025-03-07T04:53:57.799454-08:00,999.3663940429688,10.801455,10801.455 +1639,2025-03-07T04:54:08.606452-08:00,999.3795166015625,10.806998,10806.998 +1640,2025-03-07T04:54:19.413709-08:00,999.39697265625,10.807257,10807.257 +1641,2025-03-07T04:54:30.222458-08:00,999.3886108398438,10.808749,10808.749 +1642,2025-03-07T04:54:41.032451-08:00,999.39697265625,10.809993,10809.993 +1643,2025-03-07T04:54:51.841048-08:00,999.4126586914062,10.808597,10808.597 +1644,2025-03-07T04:55:02.649807-08:00,999.42578125,10.808759,10808.759 +1645,2025-03-07T04:55:13.454818-08:00,999.4071655273438,10.805011,10805.011 +1646,2025-03-07T04:55:24.262788-08:00,999.4005737304688,10.80797,10807.97 +1647,2025-03-07T04:55:35.065725-08:00,999.4282836914062,10.802937,10802.937 +1648,2025-03-07T04:55:45.878702-08:00,999.4268798828125,10.812977,10812.977 +1649,2025-03-07T04:55:56.688691-08:00,999.3807983398438,10.809989,10809.989 +1650,2025-03-07T04:56:07.492486-08:00,999.4177856445312,10.803795,10803.795 +1651,2025-03-07T04:56:18.305685-08:00,999.4202880859375,10.813199,10813.199 +1652,2025-03-07T04:56:29.114658-08:00,999.4137573242188,10.808973,10808.973 +1653,2025-03-07T04:56:39.924774-08:00,999.4216918945312,10.810116,10810.116 +1654,2025-03-07T04:56:50.724498-08:00,999.406005859375,10.799724,10799.724 +1655,2025-03-07T04:57:01.533738-08:00,999.4137573242188,10.80924,10809.24 +1656,2025-03-07T04:57:12.339648-08:00,999.4425048828125,10.80591,10805.91 +1657,2025-03-07T04:57:23.154826-08:00,999.4031372070312,10.815178,10815.178 +1658,2025-03-07T04:57:33.967894-08:00,999.42529296875,10.813068,10813.068 +1659,2025-03-07T04:57:44.772729-08:00,999.4121704101562,10.804835,10804.835 +1660,2025-03-07T04:57:55.575456-08:00,999.4176635742188,10.802727,10802.727 +1661,2025-03-07T04:58:06.389455-08:00,999.404541015625,10.813999,10813.999 +1662,2025-03-07T04:58:17.204019-08:00,999.431884765625,10.814564,10814.564 +1663,2025-03-07T04:58:28.013015-08:00,999.4070434570312,10.808996,10808.996 +1664,2025-03-07T04:58:38.829462-08:00,999.42919921875,10.816447,10816.447 +1665,2025-03-07T04:58:49.638296-08:00,999.4475708007812,10.808834,10808.834 +1666,2025-03-07T04:59:00.452506-08:00,999.448974609375,10.81421,10814.21 +1667,2025-03-07T04:59:11.261450-08:00,999.4004516601562,10.808944,10808.944 +1668,2025-03-07T04:59:22.075083-08:00,999.420166015625,10.813633,10813.633 +1669,2025-03-07T04:59:32.885801-08:00,999.420166015625,10.810718,10810.718 +1670,2025-03-07T04:59:43.694462-08:00,999.435791015625,10.808661,10808.661 +1671,2025-03-07T04:59:54.506518-08:00,999.4332885742188,10.812056,10812.056 +1672,2025-03-07T05:00:05.322453-08:00,999.4398193359375,10.815935,10815.935 +1673,2025-03-07T05:00:16.120539-08:00,999.4424438476562,10.798086,10798.086 +1674,2025-03-07T05:00:26.935437-08:00,999.46875,10.814898,10814.898 +1675,2025-03-07T05:00:37.745537-08:00,999.4424438476562,10.8101,10810.1 +1676,2025-03-07T05:00:48.553209-08:00,999.489501953125,10.807672,10807.672 +1677,2025-03-07T05:00:59.361779-08:00,999.4646606445312,10.80857,10808.57 +1678,2025-03-07T05:01:10.179950-08:00,999.4369506835938,10.818171,10818.171 +1679,2025-03-07T05:01:20.981447-08:00,999.4632568359375,10.801497,10801.497 +1680,2025-03-07T05:01:31.792700-08:00,999.4802856445312,10.811253,10811.253 +1681,2025-03-07T05:01:42.591456-08:00,999.4657592773438,10.798756,10798.756 +1682,2025-03-07T05:01:53.406456-08:00,999.4737548828125,10.815,10815.0 +1683,2025-03-07T05:02:04.213745-08:00,999.4628295898438,10.807289,10807.289 +1684,2025-03-07T05:02:15.020768-08:00,999.4824829101562,10.807023,10807.023 +1685,2025-03-07T05:02:25.827705-08:00,999.4642333984375,10.806937,10806.937 +1686,2025-03-07T05:02:36.645870-08:00,999.4576416015625,10.818165,10818.165 +1687,2025-03-07T05:02:47.460436-08:00,999.48388671875,10.814566,10814.566 +1688,2025-03-07T05:02:58.267441-08:00,999.4865112304688,10.807005,10807.005 +1689,2025-03-07T05:03:09.078461-08:00,999.458740234375,10.81102,10811.02 +1690,2025-03-07T05:03:19.892456-08:00,999.494140625,10.813995,10813.995 +1691,2025-03-07T05:03:30.708748-08:00,999.49560546875,10.816292,10816.292 +1692,2025-03-07T05:03:41.515047-08:00,999.4678344726562,10.806299,10806.299 +1693,2025-03-07T05:03:52.322838-08:00,999.5046997070312,10.807791,10807.791 +1694,2025-03-07T05:04:03.136436-08:00,999.4849243164062,10.813598,10813.598 +1695,2025-03-07T05:04:13.941504-08:00,999.4783325195312,10.805068,10805.068 +1696,2025-03-07T05:04:24.754670-08:00,999.5214233398438,10.813166,10813.166 +1697,2025-03-07T05:04:35.560678-08:00,999.4808349609375,10.806008,10806.008 +1698,2025-03-07T05:04:46.374930-08:00,999.4662475585938,10.814252,10814.252 +1699,2025-03-07T05:04:57.191876-08:00,999.4940795898438,10.816946,10816.946 +1700,2025-03-07T05:05:08.002462-08:00,999.5097045898438,10.810586,10810.586 +1701,2025-03-07T05:05:18.807442-08:00,999.48193359375,10.80498,10804.98 +1702,2025-03-07T05:05:29.612460-08:00,999.5042114257812,10.805018,10805.018 +1703,2025-03-07T05:05:40.426725-08:00,999.4976806640625,10.814265,10814.265 +1704,2025-03-07T05:05:51.234604-08:00,999.5264282226562,10.807879,10807.879 +1705,2025-03-07T05:06:02.045628-08:00,999.5158081054688,10.811024,10811.024 +1706,2025-03-07T05:06:12.858833-08:00,999.4738159179688,10.813205,10813.205 +1707,2025-03-07T05:06:23.668910-08:00,999.5081176757812,10.810077,10810.077 +1708,2025-03-07T05:06:34.478096-08:00,999.4974975585938,10.809186,10809.186 +1709,2025-03-07T05:06:45.280911-08:00,999.4920043945312,10.802815,10802.815 +1710,2025-03-07T05:06:56.090421-08:00,999.4645385742188,10.80951,10809.51 +1711,2025-03-07T05:07:06.906599-08:00,999.463134765625,10.816178,10816.178 +1712,2025-03-07T05:07:17.718576-08:00,999.4525146484375,10.811977,10811.977 +1713,2025-03-07T05:07:28.533847-08:00,999.484375,10.815271,10815.271 +1714,2025-03-07T05:07:39.347982-08:00,999.4985961914062,10.814135,10814.135 +1715,2025-03-07T05:07:50.152560-08:00,999.5010986328125,10.804578,10804.578 +1716,2025-03-07T05:08:00.964595-08:00,999.4890747070312,10.812035,10812.035 +1717,2025-03-07T05:08:11.779073-08:00,999.5087280273438,10.814478,10814.478 +1718,2025-03-07T05:08:22.584785-08:00,999.5036010742188,10.805712,10805.712 +1719,2025-03-07T05:08:33.399812-08:00,999.4824829101562,10.815027,10815.027 +1720,2025-03-07T05:08:44.213288-08:00,999.52587890625,10.813476,10813.476 +1721,2025-03-07T05:08:55.032601-08:00,999.517822265625,10.819313,10819.313 +1722,2025-03-07T05:09:05.842697-08:00,999.51123046875,10.810096,10810.096 +1723,2025-03-07T05:09:16.651932-08:00,999.4890747070312,10.809235,10809.235 +1724,2025-03-07T05:09:27.456028-08:00,999.51123046875,10.804096,10804.096 +1725,2025-03-07T05:09:38.268581-08:00,999.517822265625,10.812553,10812.553 +1726,2025-03-07T05:09:49.079650-08:00,999.49951171875,10.811069,10811.069 +1727,2025-03-07T05:09:59.888474-08:00,999.5203857421875,10.808824,10808.824 +1728,2025-03-07T05:10:10.702631-08:00,999.5192260742188,10.814157,10814.157 +1729,2025-03-07T05:10:21.516925-08:00,999.5228881835938,10.814294,10814.294 +1730,2025-03-07T05:10:32.336095-08:00,999.516357421875,10.81917,10819.17 +1731,2025-03-07T05:10:43.144830-08:00,999.5505981445312,10.808735,10808.735 +1732,2025-03-07T05:10:53.970913-08:00,999.5242919921875,10.826083,10826.083 +1733,2025-03-07T05:11:04.785796-08:00,999.5516967773438,10.814883,10814.883 +1734,2025-03-07T05:11:15.590573-08:00,999.525390625,10.804777,10804.777 +1735,2025-03-07T05:11:26.402574-08:00,999.533447265625,10.812001,10812.001 +1736,2025-03-07T05:11:48.033941-08:00,999.5410766601562,21.631367,21631.367 +1737,2025-03-07T05:11:58.842700-08:00,999.5359497070312,10.808759,10808.759 +1738,2025-03-07T05:12:09.657866-08:00,999.560791015625,10.815166,10815.166 +1739,2025-03-07T05:12:20.466734-08:00,999.549072265625,10.808868,10808.868 +1740,2025-03-07T05:12:31.282252-08:00,999.5556030273438,10.815518,10815.518 +1741,2025-03-07T05:12:42.090960-08:00,999.5687255859375,10.808708,10808.708 +1742,2025-03-07T05:12:52.899934-08:00,999.5687255859375,10.808974,10808.974 +1743,2025-03-07T05:13:03.717599-08:00,999.5278930664062,10.817665,10817.665 +1744,2025-03-07T05:13:14.526588-08:00,999.577880859375,10.808989,10808.989 +1745,2025-03-07T05:13:25.348738-08:00,999.54248046875,10.82215,10822.15 +1746,2025-03-07T05:13:36.157837-08:00,999.5753784179688,10.809099,10809.099 +1747,2025-03-07T05:13:46.967757-08:00,999.5673217773438,10.80992,10809.92 +1748,2025-03-07T05:13:57.771114-08:00,999.560791015625,10.803357,10803.357 +1749,2025-03-07T05:14:08.589579-08:00,999.588623046875,10.818465,10818.465 +1750,2025-03-07T05:14:19.393599-08:00,999.5673217773438,10.80402,10804.02 +1751,2025-03-07T05:14:30.209592-08:00,999.5753784179688,10.815993,10815.993 +1752,2025-03-07T05:14:41.029720-08:00,999.59375,10.820128,10820.128 +1753,2025-03-07T05:14:51.838888-08:00,999.5926513671875,10.809168,10809.168 +1754,2025-03-07T05:15:02.648572-08:00,999.6057739257812,10.809684,10809.684 +1755,2025-03-07T05:15:13.471577-08:00,999.6017456054688,10.823005,10823.005 +1756,2025-03-07T05:15:24.288818-08:00,999.588623046875,10.817241,10817.241 +1757,2025-03-07T05:15:35.103901-08:00,999.6148681640625,10.815083,10815.083 +1758,2025-03-07T05:15:45.915799-08:00,999.6017456054688,10.811898,10811.898 +1759,2025-03-07T05:15:56.732627-08:00,999.5962524414062,10.816828,10816.828 +1760,2025-03-07T05:16:07.535626-08:00,999.5951538085938,10.802999,10802.999 +1761,2025-03-07T05:16:18.355737-08:00,999.6082763671875,10.820111,10820.111 +1762,2025-03-07T05:16:29.172182-08:00,999.62255859375,10.816445,10816.445 +1763,2025-03-07T05:16:39.977026-08:00,999.5896606445312,10.804844,10804.844 +1764,2025-03-07T05:16:50.785845-08:00,999.629150390625,10.808819,10808.819 +1765,2025-03-07T05:17:01.607915-08:00,999.6358032226562,10.82207,10822.07 +1766,2025-03-07T05:17:12.419595-08:00,999.58203125,10.81168,10811.68 +1767,2025-03-07T05:17:23.226152-08:00,999.6305541992188,10.806557,10806.557 +1768,2025-03-07T05:17:34.040795-08:00,999.609375,10.814643,10814.643 +1769,2025-03-07T05:17:44.862592-08:00,999.62255859375,10.821797,10821.797 +1770,2025-03-07T05:17:55.680583-08:00,999.6239624023438,10.817991,10817.991 +1771,2025-03-07T05:18:06.489571-08:00,999.6525268554688,10.808988,10808.988 +1772,2025-03-07T05:18:17.306952-08:00,999.604248046875,10.817381,10817.381 +1773,2025-03-07T05:18:28.113868-08:00,999.6210327148438,10.806916,10806.916 +1774,2025-03-07T05:18:38.932644-08:00,999.639404296875,10.818776,10818.776 +1775,2025-03-07T05:18:49.738659-08:00,999.6143798828125,10.806015,10806.015 +1776,2025-03-07T05:19:00.544601-08:00,999.6353149414062,10.805942,10805.942 +1777,2025-03-07T05:19:11.357034-08:00,999.62353515625,10.812433,10812.433 +1778,2025-03-07T05:19:22.170241-08:00,999.6023559570312,10.813207,10813.207 +1779,2025-03-07T05:19:32.980113-08:00,999.65234375,10.809872,10809.872 +1780,2025-03-07T05:19:43.788998-08:00,999.65234375,10.808885,10808.885 +1781,2025-03-07T05:19:54.597597-08:00,999.6403198242188,10.808599,10808.599 +1782,2025-03-07T05:20:05.405826-08:00,999.6062622070312,10.808229,10808.229 +1783,2025-03-07T05:20:16.219574-08:00,999.6271362304688,10.813748,10813.748 +1784,2025-03-07T05:20:27.024634-08:00,999.6073608398438,10.80506,10805.06 +1785,2025-03-07T05:20:37.838592-08:00,999.6507568359375,10.813958,10813.958 +1786,2025-03-07T05:20:48.640951-08:00,999.6152954101562,10.802359,10802.359 +1787,2025-03-07T05:20:59.457928-08:00,999.6189575195312,10.816977,10816.977 +1788,2025-03-07T05:21:10.258870-08:00,999.6255493164062,10.800942,10800.942 +1789,2025-03-07T05:21:21.075601-08:00,999.5861206054688,10.816731,10816.731 +1790,2025-03-07T05:21:31.886819-08:00,999.6609497070312,10.811218,10811.218 +1791,2025-03-07T05:21:42.691730-08:00,999.6412353515625,10.804911,10804.911 +1792,2025-03-07T05:21:53.496599-08:00,999.6006469726562,10.804869,10804.869 +1793,2025-03-07T05:22:04.306633-08:00,999.6347045898438,10.810034,10810.034 +1794,2025-03-07T05:22:15.119849-08:00,999.6347045898438,10.813216,10813.216 +1795,2025-03-07T05:22:25.932925-08:00,999.6503295898438,10.813076,10813.076 +1796,2025-03-07T05:22:36.735869-08:00,999.6582641601562,10.802944,10802.944 +1797,2025-03-07T05:22:47.558648-08:00,999.6386108398438,10.822779,10822.779 +1798,2025-03-07T05:22:58.370597-08:00,999.6503295898438,10.811949,10811.949 +1799,2025-03-07T05:23:09.175825-08:00,999.6659545898438,10.805228,10805.228 +1800,2025-03-07T05:23:19.996423-08:00,999.6582641601562,10.820598,10820.598 +1801,2025-03-07T05:23:30.799337-08:00,999.6871948242188,10.802914,10802.914 +1802,2025-03-07T05:23:41.604186-08:00,999.6696166992188,10.804849,10804.849 +1803,2025-03-07T05:23:52.417073-08:00,999.6553344726562,10.812887,10812.887 +1804,2025-03-07T05:24:03.223886-08:00,999.6447143554688,10.806813,10806.813 +1805,2025-03-07T05:24:14.035598-08:00,999.630126953125,10.811712,10811.712 +1806,2025-03-07T05:24:24.837729-08:00,999.6710205078125,10.802131,10802.131 +1807,2025-03-07T05:24:35.652826-08:00,999.6735229492188,10.815097,10815.097 +1808,2025-03-07T05:24:46.461579-08:00,999.65234375,10.808753,10808.753 +1809,2025-03-07T05:24:57.266897-08:00,999.6603393554688,10.805318,10805.318 +1810,2025-03-07T05:25:08.070594-08:00,999.68017578125,10.803697,10803.697 +1811,2025-03-07T05:25:18.875585-08:00,999.689208984375,10.804991,10804.991 +1812,2025-03-07T05:25:29.691831-08:00,999.6785278320312,10.816246,10816.246 +1813,2025-03-07T05:25:40.506595-08:00,999.6826782226562,10.814764,10814.764 +1814,2025-03-07T05:25:51.319105-08:00,999.6837768554688,10.81251,10812.51 +1815,2025-03-07T05:25:58.057776-08:00,999.6983032226562,6.738671,6738.671 +1816,2025-03-07T05:26:02.131577-08:00,999.6983032226562,4.073801,4073.801 +1817,2025-03-07T05:26:12.934588-08:00,999.7179565429688,10.803011,10803.011 +1818,2025-03-07T05:26:23.749845-08:00,999.7257080078125,10.815257,10815.257 +1819,2025-03-07T05:26:34.562962-08:00,999.6983032226562,10.813117,10813.117 +1820,2025-03-07T05:26:45.373980-08:00,999.6851806640625,10.811018,10811.018 +1821,2025-03-07T05:26:56.177597-08:00,999.7034301757812,10.803617,10803.617 +1822,2025-03-07T05:27:06.985153-08:00,999.7271118164062,10.807556,10807.556 +1823,2025-03-07T05:27:17.798578-08:00,999.6968994140625,10.813425,10813.425 +1824,2025-03-07T05:27:28.602598-08:00,999.71142578125,10.80402,10804.02 +1825,2025-03-07T05:27:39.416202-08:00,999.6968994140625,10.813604,10813.604 +1826,2025-03-07T05:27:50.225157-08:00,999.71142578125,10.808955,10808.955 +1827,2025-03-07T05:28:01.022593-08:00,999.7100219726562,10.797436,10797.436 +1828,2025-03-07T05:28:11.829749-08:00,999.7312622070312,10.807156,10807.156 +1829,2025-03-07T05:28:22.640735-08:00,999.69580078125,10.810986,10810.986 +1830,2025-03-07T05:28:33.445913-08:00,999.6968994140625,10.805178,10805.178 +1831,2025-03-07T05:28:44.255092-08:00,999.69580078125,10.809179,10809.179 +1832,2025-03-07T05:28:55.065662-08:00,999.7179565429688,10.81057,10810.57 +1833,2025-03-07T05:29:05.863067-08:00,999.7221069335938,10.797405,10797.405 +1834,2025-03-07T05:29:16.676859-08:00,999.7089233398438,10.813792,10813.792 +1835,2025-03-07T05:29:27.478749-08:00,999.724609375,10.80189,10801.89 +1836,2025-03-07T05:29:38.294599-08:00,999.7286987304688,10.81585,10815.85 +1837,2025-03-07T05:29:49.102846-08:00,999.7363891601562,10.808247,10808.247 +1838,2025-03-07T05:29:59.905818-08:00,999.7154541015625,10.802972,10802.972 +1839,2025-03-07T05:30:10.715650-08:00,999.6771240234375,10.809832,10809.832 +1840,2025-03-07T05:30:21.525593-08:00,999.69580078125,10.809943,10809.943 +1841,2025-03-07T05:30:32.336897-08:00,999.69580078125,10.811304,10811.304 +1842,2025-03-07T05:30:43.151052-08:00,999.6837768554688,10.814155,10814.155 +1843,2025-03-07T05:30:53.961848-08:00,999.704833984375,10.810796,10810.796 +1844,2025-03-07T05:31:04.771191-08:00,999.7232055664062,10.809343,10809.343 +1845,2025-03-07T05:31:15.579726-08:00,999.71142578125,10.808535,10808.535 +1846,2025-03-07T05:31:26.394070-08:00,999.6851806640625,10.814344,10814.344 +1847,2025-03-07T05:31:37.203327-08:00,999.7100219726562,10.809257,10809.257 +1848,2025-03-07T05:31:48.022574-08:00,999.71142578125,10.819247,10819.247 +1849,2025-03-07T05:31:58.832590-08:00,999.7232055664062,10.810016,10810.016 +1850,2025-03-07T05:32:09.638596-08:00,999.7059326171875,10.806006,10806.006 +1851,2025-03-07T05:32:20.448723-08:00,999.6928100585938,10.810127,10810.127 +1852,2025-03-07T05:32:31.265589-08:00,999.7073364257812,10.816866,10816.866 +1853,2025-03-07T05:32:42.068723-08:00,999.7337646484375,10.803134,10803.134 +1854,2025-03-07T05:32:52.883376-08:00,999.7282104492188,10.814653,10814.653 +1855,2025-03-07T05:33:03.691705-08:00,999.7282104492188,10.808329,10808.329 +1856,2025-03-07T05:33:14.502350-08:00,999.7362670898438,10.810645,10810.645 +1857,2025-03-07T05:33:25.312548-08:00,999.7164306640625,10.810198,10810.198 +1858,2025-03-07T05:33:36.118835-08:00,999.7200927734375,10.806287,10806.287 +1859,2025-03-07T05:33:46.932593-08:00,999.732177734375,10.813758,10813.758 +1860,2025-03-07T05:33:57.741644-08:00,999.7568969726562,10.809051,10809.051 +1861,2025-03-07T05:34:08.558471-08:00,999.7412719726562,10.816827,10816.827 +1862,2025-03-07T05:34:19.360925-08:00,999.7346801757812,10.802454,10802.454 +1863,2025-03-07T05:34:30.176998-08:00,999.7489013671875,10.816073,10816.073 +1864,2025-03-07T05:34:40.979884-08:00,999.744873046875,10.802886,10802.886 +1865,2025-03-07T05:34:51.792769-08:00,999.7525024414062,10.812885,10812.885 +1866,2025-03-07T05:35:02.607627-08:00,999.73828125,10.814858,10814.858 +1867,2025-03-07T05:35:13.417079-08:00,999.760498046875,10.809452,10809.452 +1868,2025-03-07T05:35:24.231687-08:00,999.7670288085938,10.814608,10814.608 +1869,2025-03-07T05:35:35.033856-08:00,999.7670288085938,10.802169,10802.169 +1870,2025-03-07T05:35:45.842934-08:00,999.7761840820312,10.809078,10809.078 +1871,2025-03-07T05:35:56.658576-08:00,999.747314453125,10.815642,10815.642 +1872,2025-03-07T05:36:07.463590-08:00,999.814208984375,10.805014,10805.014 +1873,2025-03-07T05:36:18.280574-08:00,999.786865234375,10.816984,10816.984 +1874,2025-03-07T05:36:29.089632-08:00,999.7945556640625,10.809058,10809.058 +1875,2025-03-07T05:36:39.900065-08:00,999.802490234375,10.810433,10810.433 +1876,2025-03-07T05:36:50.708918-08:00,999.7959594726562,10.808853,10808.853 +1877,2025-03-07T05:37:01.529587-08:00,999.7959594726562,10.820669,10820.669 +1878,2025-03-07T05:37:12.333733-08:00,999.7984619140625,10.804146,10804.146 +1879,2025-03-07T05:37:23.146820-08:00,999.7564086914062,10.813087,10813.087 +1880,2025-03-07T05:37:33.961847-08:00,999.79296875,10.815027,10815.027 +1881,2025-03-07T05:37:44.782504-08:00,999.7589111328125,10.820657,10820.657 +1882,2025-03-07T05:37:55.589485-08:00,999.8192138671875,10.806981,10806.981 +1883,2025-03-07T05:38:06.392576-08:00,999.8060913085938,10.803091,10803.091 +1884,2025-03-07T05:38:17.200922-08:00,999.8140869140625,10.808346,10808.346 +1885,2025-03-07T05:38:28.018822-08:00,999.828369140625,10.8179,10817.9 +1886,2025-03-07T05:38:38.822875-08:00,999.799560546875,10.804053,10804.053 +1887,2025-03-07T05:38:49.639401-08:00,999.83642578125,10.816526,10816.526 +1888,2025-03-07T05:39:00.451901-08:00,999.828369140625,10.8125,10812.5 +1889,2025-03-07T05:39:11.261916-08:00,999.80859375,10.810015,10810.015 +1890,2025-03-07T05:39:22.067932-08:00,999.82177734375,10.806016,10806.016 +1891,2025-03-07T05:39:32.873715-08:00,999.8165893554688,10.805783,10805.783 +1892,2025-03-07T05:39:43.688740-08:00,999.8375244140625,10.815025,10815.025 +1893,2025-03-07T05:39:54.490857-08:00,999.803466796875,10.802117,10802.117 +1894,2025-03-07T05:40:05.303590-08:00,999.8231811523438,10.812733,10812.733 +1895,2025-03-07T05:40:16.117911-08:00,999.8099975585938,10.814321,10814.321 +1896,2025-03-07T05:40:26.922032-08:00,999.8231811523438,10.804121,10804.121 +1897,2025-03-07T05:40:37.731879-08:00,999.8099975585938,10.809847,10809.847 +1898,2025-03-07T05:40:48.534886-08:00,999.8242797851562,10.803007,10803.007 +1899,2025-03-07T05:40:59.348875-08:00,999.817626953125,10.813989,10813.989 +1900,2025-03-07T05:41:10.152610-08:00,999.8308715820312,10.803735,10803.735 +1901,2025-03-07T05:41:20.966594-08:00,999.8231811523438,10.813984,10813.984 +1902,2025-03-07T05:41:31.778588-08:00,999.8506469726562,10.811994,10811.994 +1903,2025-03-07T05:41:42.589907-08:00,999.83642578125,10.811319,10811.319 +1904,2025-03-07T05:41:53.395800-08:00,999.802001953125,10.805893,10805.893 +1905,2025-03-07T05:42:04.211096-08:00,999.8045043945312,10.815296,10815.296 +1906,2025-03-07T05:42:15.023830-08:00,999.83642578125,10.812734,10812.734 +1907,2025-03-07T05:42:25.827912-08:00,999.803466796875,10.804082,10804.082 +1908,2025-03-07T05:42:36.637589-08:00,999.75732421875,10.809677,10809.677 +1909,2025-03-07T05:42:47.439574-08:00,999.82177734375,10.801985,10801.985 +1910,2025-03-07T05:42:58.250593-08:00,999.815185546875,10.811019,10811.019 +1911,2025-03-07T05:43:09.069129-08:00,999.805908203125,10.818536,10818.536 +1912,2025-03-07T05:43:19.882807-08:00,999.8375244140625,10.813678,10813.678 +1913,2025-03-07T05:43:30.688932-08:00,999.845458984375,10.806125,10806.125 +1914,2025-03-07T05:43:41.495016-08:00,999.803466796875,10.806084,10806.084 +1915,2025-03-07T05:43:52.297795-08:00,999.8099975585938,10.802779,10802.779 +1916,2025-03-07T05:44:03.102934-08:00,999.8231811523438,10.805139,10805.139 +1917,2025-03-07T05:44:13.919599-08:00,999.857177734375,10.816665,10816.665 +1918,2025-03-07T05:44:24.720595-08:00,999.8242797851562,10.800996,10800.996 +1919,2025-03-07T05:44:35.536595-08:00,999.8308715820312,10.816,10816.0 +1920,2025-03-07T05:44:46.345592-08:00,999.8440551757812,10.808997,10808.997 +1921,2025-03-07T05:44:57.158267-08:00,999.845458984375,10.812675,10812.675 +1922,2025-03-07T05:45:07.955797-08:00,999.8495483398438,10.79753,10797.53 +1923,2025-03-07T05:45:18.776966-08:00,999.8308715820312,10.821169,10821.169 +1924,2025-03-07T05:45:29.584630-08:00,999.83642578125,10.807664,10807.664 +1925,2025-03-07T05:45:40.397801-08:00,999.8429565429688,10.813171,10813.171 +1926,2025-03-07T05:45:51.200850-08:00,999.8350219726562,10.803049,10803.049 +1927,2025-03-07T05:46:02.007598-08:00,999.86376953125,10.806748,10806.748 +1928,2025-03-07T05:46:12.815221-08:00,999.857177734375,10.807623,10807.623 +1929,2025-03-07T05:46:23.623584-08:00,999.8506469726562,10.808363,10808.363 +1930,2025-03-07T05:46:34.438879-08:00,999.8585815429688,10.815295,10815.295 +1931,2025-03-07T05:46:45.236932-08:00,999.8506469726562,10.798053,10798.053 +1932,2025-03-07T05:46:56.041147-08:00,999.8728637695312,10.804215,10804.215 +1933,2025-03-07T05:47:06.844805-08:00,999.845458984375,10.803658,10803.658 +1934,2025-03-07T05:47:17.658768-08:00,999.8596801757812,10.813963,10813.963 +1935,2025-03-07T05:47:28.456812-08:00,999.8400268554688,10.798044,10798.044 +1936,2025-03-07T05:47:39.265770-08:00,999.86767578125,10.808958,10808.958 +1937,2025-03-07T05:47:50.067638-08:00,999.8767700195312,10.801868,10801.868 +1938,2025-03-07T05:48:00.876945-08:00,999.8819580078125,10.809307,10809.307 +1939,2025-03-07T05:48:11.686907-08:00,999.8662719726562,10.809962,10809.962 +1940,2025-03-07T05:48:22.502856-08:00,999.900634765625,10.815949,10815.949 +1941,2025-03-07T05:48:33.308594-08:00,999.8875122070312,10.805738,10805.738 +1942,2025-03-07T05:48:44.119584-08:00,999.8833618164062,10.81099,10810.99 +1943,2025-03-07T05:48:54.925734-08:00,999.9042358398438,10.80615,10806.15 +1944,2025-03-07T05:49:05.737949-08:00,999.9173583984375,10.812215,10812.215 +1945,2025-03-07T05:49:16.546809-08:00,999.8976440429688,10.80886,10808.86 +1946,2025-03-07T05:49:27.355643-08:00,999.9342041015625,10.808834,10808.834 +1947,2025-03-07T05:49:38.153073-08:00,999.8987426757812,10.79743,10797.43 +1948,2025-03-07T05:49:48.961739-08:00,999.90673828125,10.808666,10808.666 +1949,2025-03-07T05:49:59.780899-08:00,999.9012451171875,10.81916,10819.16 +1950,2025-03-07T05:50:10.584643-08:00,999.9235229492188,10.803744,10803.744 +1951,2025-03-07T05:50:21.388134-08:00,999.915771484375,10.803491,10803.491 +1952,2025-03-07T05:50:32.190602-08:00,999.9103393554688,10.802468,10802.468 +1953,2025-03-07T05:50:43.000200-08:00,999.9117431640625,10.809598,10809.598 +1954,2025-03-07T05:50:53.818717-08:00,999.8986206054688,10.818517,10818.517 +1955,2025-03-07T05:51:04.624901-08:00,999.9087524414062,10.806184,10806.184 +1956,2025-03-07T05:51:15.433865-08:00,999.915283203125,10.808964,10808.964 +1957,2025-03-07T05:51:26.245593-08:00,999.8956298828125,10.811728,10811.728 +1958,2025-03-07T05:51:37.055591-08:00,999.9324340820312,10.809998,10809.998 +1959,2025-03-07T05:51:47.852576-08:00,999.92578125,10.796985,10796.985 +1960,2025-03-07T05:51:58.662590-08:00,999.9467163085938,10.810014,10810.014 +1961,2025-03-07T05:52:09.464598-08:00,999.900634765625,10.802008,10802.008 +1962,2025-03-07T05:52:20.270784-08:00,999.9085693359375,10.806186,10806.186 +1963,2025-03-07T05:52:31.080137-08:00,999.9085693359375,10.809353,10809.353 +1964,2025-03-07T05:52:41.888748-08:00,999.90966796875,10.808611,10808.611 +1965,2025-03-07T05:52:52.692033-08:00,999.9349365234375,10.803285,10803.285 +1966,2025-03-07T05:53:03.505936-08:00,999.929443359375,10.813903,10813.903 +1967,2025-03-07T05:53:14.314131-08:00,999.9241943359375,10.808195,10808.195 +1968,2025-03-07T05:53:25.123140-08:00,999.9520263671875,10.809009,10809.009 +1969,2025-03-07T05:53:35.931979-08:00,999.9506225585938,10.808839,10808.839 +1970,2025-03-07T05:53:46.747798-08:00,999.9255981445312,10.815819,10815.819 +1971,2025-03-07T05:53:57.557576-08:00,999.9241943359375,10.809778,10809.778 +1972,2025-03-07T05:54:08.359595-08:00,999.9402465820312,10.802019,10802.019 +1973,2025-03-07T05:54:19.176648-08:00,999.927001953125,10.817053,10817.053 +1974,2025-03-07T05:54:29.984926-08:00,999.9520263671875,10.808278,10808.278 +1975,2025-03-07T05:54:40.792912-08:00,999.9388427734375,10.807986,10807.986 +1976,2025-03-07T05:54:51.602085-08:00,999.9586181640625,10.809173,10809.173 +1977,2025-03-07T05:55:02.409741-08:00,999.9454956054688,10.807656,10807.656 +1978,2025-03-07T05:55:13.225907-08:00,999.9402465820312,10.816166,10816.166 +1979,2025-03-07T05:55:24.032810-08:00,999.9124755859375,10.806903,10806.903 +1980,2025-03-07T05:55:34.841853-08:00,999.9281005859375,10.809043,10809.043 +1981,2025-03-07T05:55:45.652593-08:00,999.9413452148438,10.81074,10810.74 +1982,2025-03-07T05:55:56.466796-08:00,999.9556274414062,10.814203,10814.203 +1983,2025-03-07T05:56:07.269513-08:00,999.962158203125,10.802717,10802.717 +1984,2025-03-07T05:56:18.078259-08:00,999.950439453125,10.808746,10808.746 +1985,2025-03-07T05:56:28.886960-08:00,999.9149780273438,10.808701,10808.701 +1986,2025-03-07T05:56:39.706593-08:00,999.962158203125,10.819633,10819.633 +1987,2025-03-07T05:56:50.510598-08:00,999.979248046875,10.804005,10804.005 +1988,2025-03-07T05:57:01.313589-08:00,999.9646606445312,10.802991,10802.991 +1989,2025-03-07T05:57:12.124577-08:00,999.9737548828125,10.810988,10810.988 +1990,2025-03-07T05:57:22.931821-08:00,999.992431640625,10.807244,10807.244 +1991,2025-03-07T05:57:33.751949-08:00,999.9606323242188,10.820128,10820.128 +1992,2025-03-07T05:57:44.551887-08:00,999.9762573242188,10.799938,10799.938 +1993,2025-03-07T05:57:55.365791-08:00,999.9751586914062,10.813904,10813.904 +1994,2025-03-07T05:58:06.167991-08:00,999.9685668945312,10.8022,10802.2 +1995,2025-03-07T05:58:16.984874-08:00,999.9710693359375,10.816883,10816.883 +1996,2025-03-07T05:58:27.786710-08:00,999.9960327148438,10.801836,10801.836 +1997,2025-03-07T05:58:38.593597-08:00,999.9710693359375,10.806887,10806.887 +1998,2025-03-07T05:58:49.399577-08:00,999.991943359375,10.80598,10805.98 +1999,2025-03-07T05:59:00.217818-08:00,999.9710693359375,10.818241,10818.241 +2000,2025-03-07T05:59:11.019585-08:00,999.9513549804688,10.801767,10801.767 +2001,2025-03-07T05:59:21.837740-08:00,999.9620361328125,10.818155,10818.155 +2002,2025-03-07T05:59:32.649724-08:00,999.95654296875,10.811984,10811.984 +2003,2025-03-07T05:59:43.462438-08:00,999.9488525390625,10.812714,10812.714 +2004,2025-03-07T05:59:54.274593-08:00,999.9710693359375,10.812155,10812.155 +2005,2025-03-07T06:00:05.090764-08:00,999.9710693359375,10.816171,10816.171 +2006,2025-03-07T06:00:15.899545-08:00,999.9960327148438,10.808781,10808.781 +2007,2025-03-07T06:00:26.717581-08:00,999.9342041015625,10.818036,10818.036 +2008,2025-03-07T06:00:37.523587-08:00,999.9540405273438,10.806006,10806.006 +2009,2025-03-07T06:00:48.341593-08:00,999.9802856445312,10.818006,10818.006 +2010,2025-03-07T06:00:59.154593-08:00,999.9737548828125,10.813,10813.0 +2011,2025-03-07T06:01:09.967211-08:00,1000.0198364257812,10.812618,10812.618 +2012,2025-03-07T06:01:20.774926-08:00,999.9581298828125,10.807715,10807.715 +2013,2025-03-07T06:01:31.584981-08:00,999.9751586914062,10.810055,10810.055 +2014,2025-03-07T06:01:42.400597-08:00,999.9802856445312,10.815616,10815.616 +2015,2025-03-07T06:01:53.209142-08:00,1000.0067138671875,10.808545,10808.545 +2016,2025-03-07T06:02:04.012685-08:00,999.9671630859375,10.803543,10803.543 +2017,2025-03-07T06:02:14.824750-08:00,999.9949340820312,10.812065,10812.065 +2018,2025-03-07T06:02:25.625591-08:00,999.9883422851562,10.800841,10800.841 +2019,2025-03-07T06:02:36.444936-08:00,999.9802856445312,10.819345,10819.345 +2020,2025-03-07T06:02:47.248229-08:00,999.98583984375,10.803293,10803.293 +2021,2025-03-07T06:02:58.059916-08:00,1000.0001831054688,10.811687,10811.687 +2022,2025-03-07T06:03:08.864980-08:00,999.9869384765625,10.805064,10805.064 +2023,2025-03-07T06:03:19.674599-08:00,999.9595336914062,10.809619,10809.619 +2024,2025-03-07T06:03:30.476144-08:00,999.9910278320312,10.801545,10801.545 +2025,2025-03-07T06:03:41.291593-08:00,999.977783203125,10.815449,10815.449 +2026,2025-03-07T06:03:52.093600-08:00,999.9515380859375,10.802007,10802.007 +2027,2025-03-07T06:04:02.902574-08:00,999.9595336914062,10.808974,10808.974 +2028,2025-03-07T06:04:13.719642-08:00,999.9606323242188,10.817068,10817.068 +2029,2025-03-07T06:04:24.520841-08:00,1000.0001831054688,10.801199,10801.199 +2030,2025-03-07T06:04:35.334966-08:00,999.9935302734375,10.814125,10814.125 +2031,2025-03-07T06:04:46.147152-08:00,1000.002685546875,10.812186,10812.186 +2032,2025-03-07T06:04:56.952712-08:00,1000.0106201171875,10.80556,10805.56 +2033,2025-03-07T06:05:07.766588-08:00,1000.002685546875,10.813876,10813.876 +2034,2025-03-07T06:05:18.570591-08:00,1000.0040893554688,10.804003,10804.003 +2035,2025-03-07T06:05:29.382087-08:00,1000.01171875,10.811496,10811.496 +2036,2025-03-07T06:05:40.212081-08:00,1000.01171875,10.829994,10829.994 +2037,2025-03-07T06:05:51.016123-08:00,999.991943359375,10.804042,10804.042 +2038,2025-03-07T06:06:01.830839-08:00,999.9999389648438,10.814716,10814.716 +2039,2025-03-07T06:06:12.642225-08:00,1000.020751953125,10.811386,10811.386 +2040,2025-03-07T06:06:23.455289-08:00,1000.0287475585938,10.813064,10813.064 +2041,2025-03-07T06:06:34.265462-08:00,1000.020751953125,10.810173,10810.173 +2042,2025-03-07T06:06:45.085384-08:00,1000.0232543945312,10.819922,10819.922 +2043,2025-03-07T06:06:55.899436-08:00,1000.0379028320312,10.814052,10814.052 +2044,2025-03-07T06:07:06.709325-08:00,1000.0864868164062,10.809889,10809.889 +2045,2025-03-07T06:07:17.517064-08:00,1000.0653076171875,10.807739,10807.739 +2046,2025-03-07T06:07:28.329306-08:00,1000.0271606445312,10.812242,10812.242 +2047,2025-03-07T06:07:39.150332-08:00,1000.0480346679688,10.821026,10821.026 +2048,2025-03-07T06:07:49.954082-08:00,1000.04150390625,10.80375,10803.75 +2049,2025-03-07T06:08:00.771340-08:00,1000.061279296875,10.817258,10817.258 +2050,2025-03-07T06:08:11.584368-08:00,1000.0296630859375,10.813028,10813.028 +2051,2025-03-07T06:08:22.397083-08:00,1000.0692138671875,10.812715,10812.715 +2052,2025-03-07T06:08:33.208300-08:00,1000.0480346679688,10.811217,10811.217 +2053,2025-03-07T06:08:44.024081-08:00,1000.063720703125,10.815781,10815.781 +2054,2025-03-07T06:08:54.837383-08:00,1000.0494384765625,10.813302,10813.302 +2055,2025-03-07T06:09:05.657364-08:00,1000.061279296875,10.819981,10819.981 +2056,2025-03-07T06:09:16.465115-08:00,1000.0678100585938,10.807751,10807.751 +2057,2025-03-07T06:09:27.287034-08:00,1000.0834350585938,10.821919,10821.919 +2058,2025-03-07T06:09:38.102554-08:00,1000.0703125,10.81552,10815.52 +2059,2025-03-07T06:09:48.921488-08:00,1000.1109619140625,10.818934,10818.934 +2060,2025-03-07T06:09:59.732234-08:00,1000.1043701171875,10.810746,10810.746 +2061,2025-03-07T06:10:10.544291-08:00,1000.129638671875,10.812057,10812.057 +2062,2025-03-07T06:10:21.353797-08:00,1000.1570434570312,10.809506,10809.506 +2063,2025-03-07T06:10:32.172545-08:00,1000.1109619140625,10.818748,10818.748 +2064,2025-03-07T06:10:42.990070-08:00,1000.1109619140625,10.817525,10817.525 +2065,2025-03-07T06:10:53.799695-08:00,1000.1163940429688,10.809625,10809.625 +2066,2025-03-07T06:11:04.613091-08:00,1000.1087646484375,10.813396,10813.396 +2067,2025-03-07T06:11:15.423614-08:00,1000.1229858398438,10.810523,10810.523 +2068,2025-03-07T06:11:26.235956-08:00,1000.170166015625,10.812342,10812.342 +2069,2025-03-07T06:11:37.052086-08:00,1000.16796875,10.81613,10816.13 +2070,2025-03-07T06:11:47.858289-08:00,1000.1559448242188,10.806203,10806.203 +2071,2025-03-07T06:11:58.677835-08:00,1000.1417236328125,10.819546,10819.546 +2072,2025-03-07T06:12:09.488453-08:00,1000.16796875,10.810618,10810.618 +2073,2025-03-07T06:12:20.307509-08:00,1000.1417236328125,10.819056,10819.056 +2074,2025-03-07T06:12:31.125975-08:00,1000.18115234375,10.818466,10818.466 +2075,2025-03-07T06:12:39.431319-08:00,1000.1534423828125,8.305344,8305.344 +2076,2025-03-07T06:12:41.934098-08:00,1000.1878051757812,2.502779,2502.779 +2077,2025-03-07T06:12:52.748074-08:00,1000.1746215820312,10.813976,10813.976 +2078,2025-03-07T06:13:03.558113-08:00,1000.1534423828125,10.810039,10810.039 +2079,2025-03-07T06:13:14.378417-08:00,1000.1864013671875,10.820304,10820.304 +2080,2025-03-07T06:13:25.192315-08:00,1000.1929931640625,10.813898,10813.898 +2081,2025-03-07T06:13:36.013078-08:00,1000.2020263671875,10.820763,10820.763 +2082,2025-03-07T06:13:46.820309-08:00,1000.2127075195312,10.807231,10807.231 +2083,2025-03-07T06:13:57.639364-08:00,1000.2218017578125,10.819055,10819.055 +2084,2025-03-07T06:14:08.450391-08:00,1000.1797485351562,10.811027,10811.027 +2085,2025-03-07T06:14:19.261264-08:00,1000.2152099609375,10.810873,10810.873 +2086,2025-03-07T06:14:30.061129-08:00,1000.2127075195312,10.799865,10799.865 +2087,2025-03-07T06:14:40.871311-08:00,1000.214111328125,10.810182,10810.182 +2088,2025-03-07T06:14:51.679086-08:00,1000.220703125,10.807775,10807.775 +2089,2025-03-07T06:15:02.484064-08:00,1000.18115234375,10.804978,10804.978 +2090,2025-03-07T06:15:13.304071-08:00,1000.1864013671875,10.820007,10820.007 +2091,2025-03-07T06:15:24.114429-08:00,1000.2086181640625,10.810358,10810.358 +2092,2025-03-07T06:15:34.917347-08:00,1000.2536010742188,10.802918,10802.918 +2093,2025-03-07T06:15:45.722217-08:00,1000.2390747070312,10.80487,10804.87 +2094,2025-03-07T06:15:56.533086-08:00,1000.2273559570312,10.810869,10810.869 +2095,2025-03-07T06:16:07.340078-08:00,1000.2546997070312,10.806992,10806.992 +2096,2025-03-07T06:16:18.151390-08:00,1000.2324829101562,10.811312,10811.312 +2097,2025-03-07T06:16:28.961135-08:00,1000.240478515625,10.809745,10809.745 +2098,2025-03-07T06:16:39.765087-08:00,1000.2273559570312,10.803952,10803.952 +2099,2025-03-07T06:16:50.579123-08:00,1000.2415771484375,10.814036,10814.036 +2100,2025-03-07T06:17:01.383077-08:00,1000.2390747070312,10.803954,10803.954 +2101,2025-03-07T06:17:12.193672-08:00,1000.2667846679688,10.810595,10810.595 +2102,2025-03-07T06:17:23.006448-08:00,1000.2821655273438,10.812776,10812.776 +2103,2025-03-07T06:17:33.811086-08:00,1000.2481079101562,10.804638,10804.638 +2104,2025-03-07T06:17:44.625078-08:00,1000.24560546875,10.813992,10813.992 +2105,2025-03-07T06:17:55.434084-08:00,1000.24560546875,10.809006,10809.006 +2106,2025-03-07T06:18:06.243342-08:00,1000.2720336914062,10.809258,10809.258 +2107,2025-03-07T06:18:17.056281-08:00,1000.26025390625,10.812939,10812.939 +2108,2025-03-07T06:18:27.867878-08:00,1000.28515625,10.811597,10811.597 +2109,2025-03-07T06:18:38.680453-08:00,1000.2906494140625,10.812575,10812.575 +2110,2025-03-07T06:18:49.496086-08:00,1000.304931640625,10.815633,10815.633 +2111,2025-03-07T06:19:00.312156-08:00,1000.2906494140625,10.81607,10816.07 +2112,2025-03-07T06:19:11.130635-08:00,1000.3272094726562,10.818479,10818.479 +2113,2025-03-07T06:19:21.938632-08:00,1000.2931518554688,10.807997,10807.997 +2114,2025-03-07T06:19:32.760348-08:00,1000.3008422851562,10.821716,10821.716 +2115,2025-03-07T06:19:43.574085-08:00,1000.278564453125,10.813737,10813.737 +2116,2025-03-07T06:19:54.383373-08:00,1000.3206176757812,10.809288,10809.288 +2117,2025-03-07T06:20:05.193078-08:00,1000.3560791015625,10.809705,10809.705 +2118,2025-03-07T06:20:16.007374-08:00,1000.3231201171875,10.814296,10814.296 +2119,2025-03-07T06:20:26.816413-08:00,1000.3165893554688,10.809039,10809.039 +2120,2025-03-07T06:20:37.627655-08:00,1000.3439331054688,10.811242,10811.242 +2121,2025-03-07T06:20:48.443325-08:00,1000.317626953125,10.81567,10815.67 +2122,2025-03-07T06:20:59.254323-08:00,1000.330810546875,10.810998,10810.998 +2123,2025-03-07T06:21:10.063299-08:00,1000.32421875,10.808976,10808.976 +2124,2025-03-07T06:21:20.882968-08:00,1000.319091796875,10.819669,10819.669 +2125,2025-03-07T06:21:31.700525-08:00,1000.3489990234375,10.817557,10817.557 +2126,2025-03-07T06:21:42.509275-08:00,1000.3544311523438,10.80875,10808.75 +2127,2025-03-07T06:21:53.322072-08:00,1000.30029296875,10.812797,10812.797 +2128,2025-03-07T06:22:04.141648-08:00,1000.35693359375,10.819576,10819.576 +2129,2025-03-07T06:22:14.958403-08:00,1000.35693359375,10.816755,10816.755 +2130,2025-03-07T06:22:25.761333-08:00,1000.34375,10.80293,10802.93 +2131,2025-03-07T06:22:36.578079-08:00,1000.3515014648438,10.816746,10816.746 +2132,2025-03-07T06:22:47.394060-08:00,1000.3529052734375,10.815981,10815.981 +2133,2025-03-07T06:22:58.197109-08:00,1000.3580322265625,10.803049,10803.049 +2134,2025-03-07T06:23:09.012518-08:00,1000.3685913085938,10.815409,10815.409 +2135,2025-03-07T06:23:19.826758-08:00,1000.3421630859375,10.81424,10814.24 +2136,2025-03-07T06:23:30.637089-08:00,1000.3487548828125,10.810331,10810.331 +2137,2025-03-07T06:23:41.445369-08:00,1000.3619384765625,10.80828,10808.28 +2138,2025-03-07T06:23:52.263088-08:00,1000.3367309570312,10.817719,10817.719 +2139,2025-03-07T06:24:03.074492-08:00,1000.3696899414062,10.811404,10811.404 +2140,2025-03-07T06:24:13.883627-08:00,1000.3656005859375,10.809135,10809.135 +2141,2025-03-07T06:24:24.693412-08:00,1000.3565063476562,10.809785,10809.785 +2142,2025-03-07T06:24:35.514076-08:00,1000.3853149414062,10.820664,10820.664 +2143,2025-03-07T06:24:46.321080-08:00,1000.391845703125,10.807004,10807.004 +2144,2025-03-07T06:24:57.143358-08:00,1000.377685546875,10.822278,10822.278 +2145,2025-03-07T06:25:07.949474-08:00,1000.4050903320312,10.806116,10806.116 +2146,2025-03-07T06:25:18.766347-08:00,1000.349853515625,10.816873,10816.873 +2147,2025-03-07T06:25:29.578064-08:00,1000.35791015625,10.811717,10811.717 +2148,2025-03-07T06:25:40.395307-08:00,1000.3842163085938,10.817243,10817.243 +2149,2025-03-07T06:25:51.206080-08:00,1000.4182739257812,10.810773,10810.773 +2150,2025-03-07T06:26:02.018398-08:00,1000.4039916992188,10.812318,10812.318 +2151,2025-03-07T06:26:12.833614-08:00,1000.376220703125,10.815216,10815.216 +2152,2025-03-07T06:26:23.634213-08:00,1000.3973999023438,10.800599,10800.599 +2153,2025-03-07T06:26:34.453080-08:00,1000.376220703125,10.818867,10818.867 +2154,2025-03-07T06:26:45.266071-08:00,1000.41064453125,10.812991,10812.991 +2155,2025-03-07T06:26:56.069245-08:00,1000.41064453125,10.803174,10803.174 +2156,2025-03-07T06:27:06.891448-08:00,1000.4248657226562,10.822203,10822.203 +2157,2025-03-07T06:27:17.705063-08:00,1000.419677734375,10.813615,10813.615 +2158,2025-03-07T06:27:28.521080-08:00,1000.439453125,10.816017,10816.017 +2159,2025-03-07T06:27:39.340128-08:00,1000.4603271484375,10.819048,10819.048 +2160,2025-03-07T06:27:50.149803-08:00,1000.42626953125,10.809675,10809.675 +2161,2025-03-07T06:28:00.963894-08:00,1000.4328002929688,10.814091,10814.091 +2162,2025-03-07T06:28:11.783082-08:00,1000.439453125,10.819188,10819.188 +2163,2025-03-07T06:28:22.593475-08:00,1000.4142456054688,10.810393,10810.393 +2164,2025-03-07T06:28:33.409273-08:00,1000.428466796875,10.815798,10815.798 +2165,2025-03-07T06:28:44.233198-08:00,1000.4328002929688,10.823925,10823.925 +2166,2025-03-07T06:28:55.045143-08:00,1000.4349975585938,10.811945,10811.945 +2167,2025-03-07T06:29:05.858143-08:00,1000.388916015625,10.813,10813.0 +2168,2025-03-07T06:29:16.665071-08:00,1000.4142456054688,10.806928,10806.928 +2169,2025-03-07T06:29:27.484534-08:00,1000.415283203125,10.819463,10819.463 +2170,2025-03-07T06:29:38.296204-08:00,1000.439453125,10.81167,10811.67 +2171,2025-03-07T06:29:49.111188-08:00,1000.4668579101562,10.814984,10814.984 +2172,2025-03-07T06:29:59.929569-08:00,1000.4470825195312,10.818381,10818.381 +2173,2025-03-07T06:30:10.738175-08:00,1000.4603271484375,10.808606,10808.606 +2174,2025-03-07T06:30:21.545078-08:00,1000.446044921875,10.806903,10806.903 +2175,2025-03-07T06:30:32.368046-08:00,1000.4142456054688,10.822968,10822.968 +2176,2025-03-07T06:30:43.187078-08:00,1000.4338989257812,10.819032,10819.032 +2177,2025-03-07T06:30:54.001081-08:00,1000.393310546875,10.814003,10814.003 +2178,2025-03-07T06:31:04.814644-08:00,1000.421875,10.813563,10813.563 +2179,2025-03-07T06:31:15.628672-08:00,1000.4441528320312,10.814028,10814.028 +2180,2025-03-07T06:31:26.443084-08:00,1000.441650390625,10.814412,10814.412 +2181,2025-03-07T06:31:37.249076-08:00,1000.4364013671875,10.805992,10805.992 +2182,2025-03-07T06:31:48.071059-08:00,1000.415283203125,10.821983,10821.983 +2183,2025-03-07T06:31:58.886403-08:00,1000.421875,10.815344,10815.344 +2184,2025-03-07T06:32:09.695421-08:00,1000.4430541992188,10.809018,10809.018 +2185,2025-03-07T06:32:20.499081-08:00,1000.4207763671875,10.80366,10803.66 +2186,2025-03-07T06:32:31.313089-08:00,1000.4207763671875,10.814008,10814.008 +2187,2025-03-07T06:32:42.139431-08:00,1000.454833984375,10.826342,10826.342 +2188,2025-03-07T06:32:52.941125-08:00,1000.4430541992188,10.801694,10801.694 +2189,2025-03-07T06:33:03.764399-08:00,1000.4349975585938,10.823274,10823.274 +2190,2025-03-07T06:33:14.571232-08:00,1000.415283203125,10.806833,10806.833 +2191,2025-03-07T06:33:25.381462-08:00,1000.4349975585938,10.81023,10810.23 +2192,2025-03-07T06:33:36.198080-08:00,1000.4349975585938,10.816618,10816.618 +2193,2025-03-07T06:33:47.012119-08:00,1000.4349975585938,10.814039,10814.039 +2194,2025-03-07T06:33:57.825813-08:00,1000.4481811523438,10.813694,10813.694 +2195,2025-03-07T06:34:08.636135-08:00,1000.4349975585938,10.810322,10810.322 +2196,2025-03-07T06:34:19.447413-08:00,1000.4495849609375,10.811278,10811.278 +2197,2025-03-07T06:34:30.257304-08:00,1000.4481811523438,10.809891,10809.891 +2198,2025-03-07T06:34:41.077240-08:00,1000.454833984375,10.819936,10819.936 +2199,2025-03-07T06:34:51.886826-08:00,1000.4430541992188,10.809586,10809.586 +2200,2025-03-07T06:35:02.701199-08:00,1000.483642578125,10.814373,10814.373 +2201,2025-03-07T06:35:13.515076-08:00,1000.50341796875,10.813877,10813.877 +2202,2025-03-07T06:35:24.319680-08:00,1000.470458984375,10.804604,10804.604 +2203,2025-03-07T06:35:35.135403-08:00,1000.4968872070312,10.815723,10815.723 +2204,2025-03-07T06:35:45.942460-08:00,1000.50341796875,10.807057,10807.057 +2205,2025-03-07T06:35:56.763679-08:00,1000.4759521484375,10.821219,10821.219 +2206,2025-03-07T06:36:07.572429-08:00,1000.4861450195312,10.80875,10808.75 +2207,2025-03-07T06:36:18.382494-08:00,1000.4718627929688,10.810065,10810.065 +2208,2025-03-07T06:36:29.201119-08:00,1000.4562377929688,10.818625,10818.625 +2209,2025-03-07T06:36:40.011076-08:00,1000.470458984375,10.809957,10809.957 +2210,2025-03-07T06:36:50.813342-08:00,1000.46533203125,10.802266,10802.266 +2211,2025-03-07T06:37:01.623103-08:00,1000.498291015625,10.809761,10809.761 +2212,2025-03-07T06:37:12.438374-08:00,1000.46533203125,10.815271,10815.271 +2213,2025-03-07T06:37:23.257074-08:00,1000.485107421875,10.8187,10818.7 +2214,2025-03-07T06:37:34.066080-08:00,1000.4993896484375,10.809006,10809.006 +2215,2025-03-07T06:37:44.872081-08:00,1000.46533203125,10.806001,10806.001 +2216,2025-03-07T06:37:55.685079-08:00,1000.4718627929688,10.812998,10812.998 +2217,2025-03-07T06:38:06.489345-08:00,1000.494140625,10.804266,10804.266 +2218,2025-03-07T06:38:17.304573-08:00,1000.4993896484375,10.815228,10815.228 +2219,2025-03-07T06:38:28.118208-08:00,1000.5059204101562,10.813635,10813.635 +2220,2025-03-07T06:38:38.928686-08:00,1000.5018920898438,10.810478,10810.478 +2221,2025-03-07T06:38:49.741082-08:00,1000.498291015625,10.812396,10812.396 +2222,2025-03-07T06:38:56.368208-08:00,1000.4993896484375,6.627126,6627.126 +2223,2025-03-07T06:39:00.556088-08:00,1000.4927368164062,4.18788,4187.88 +2224,2025-03-07T06:39:11.366076-08:00,1000.5007934570312,10.809988,10809.988 +2225,2025-03-07T06:39:22.179683-08:00,1000.50732421875,10.813607,10813.607 +2226,2025-03-07T06:39:32.999312-08:00,1000.5150146484375,10.819629,10819.629 +2227,2025-03-07T06:39:43.808079-08:00,1000.5150146484375,10.808767,10808.767 +2228,2025-03-07T06:39:54.627560-08:00,1000.5296020507812,10.819481,10819.481 +2229,2025-03-07T06:40:05.437371-08:00,1000.5361938476562,10.809811,10809.811 +2230,2025-03-07T06:40:16.256675-08:00,1000.5372924804688,10.819304,10819.304 +2231,2025-03-07T06:40:27.068072-08:00,1000.5504760742188,10.811397,10811.397 +2232,2025-03-07T06:40:37.886110-08:00,1000.5691528320312,10.818038,10818.038 +2233,2025-03-07T06:40:48.694322-08:00,1000.5438842773438,10.808212,10808.212 +2234,2025-03-07T06:40:59.517352-08:00,1000.5635986328125,10.82303,10823.03 +2235,2025-03-07T06:41:10.324135-08:00,1000.5427856445312,10.806783,10806.783 +2236,2025-03-07T06:41:21.148079-08:00,1000.5570068359375,10.823944,10823.944 +2237,2025-03-07T06:41:31.966531-08:00,1000.5859375,10.818452,10818.452 +2238,2025-03-07T06:41:42.781299-08:00,1000.5859375,10.814768,10814.768 +2239,2025-03-07T06:41:53.599275-08:00,1000.5675048828125,10.817976,10817.976 +2240,2025-03-07T06:42:04.423292-08:00,1000.6015625,10.824017,10824.017 +2241,2025-03-07T06:42:15.242099-08:00,1000.6015625,10.818807,10818.807 +2242,2025-03-07T06:42:26.055231-08:00,1000.6029663085938,10.813132,10813.132 +2243,2025-03-07T06:42:36.871070-08:00,1000.6318969726562,10.815839,10815.839 +2244,2025-03-07T06:42:47.695427-08:00,1000.6130981445312,10.824357,10824.357 +2245,2025-03-07T06:42:58.514444-08:00,1000.5923461914062,10.819017,10819.017 +2246,2025-03-07T06:43:09.327315-08:00,1000.60546875,10.812871,10812.871 +2247,2025-03-07T06:43:20.154316-08:00,1000.6065673828125,10.827001,10827.001 +2248,2025-03-07T06:43:30.969060-08:00,1000.5999755859375,10.814744,10814.744 +2249,2025-03-07T06:43:41.788081-08:00,1000.5970458984375,10.819021,10819.021 +2250,2025-03-07T06:43:52.599086-08:00,1000.6272583007812,10.811005,10811.005 +2251,2025-03-07T06:44:03.429351-08:00,1000.62060546875,10.830265,10830.265 +2252,2025-03-07T06:44:14.244122-08:00,1000.6272583007812,10.814771,10814.771 +2253,2025-03-07T06:44:25.069305-08:00,1000.6283569335938,10.825183,10825.183 +2254,2025-03-07T06:44:35.891120-08:00,1000.6256103515625,10.821815,10821.815 +2255,2025-03-07T06:44:46.701086-08:00,1000.6400146484375,10.809966,10809.966 +2256,2025-03-07T06:44:57.521117-08:00,1000.6333618164062,10.820031,10820.031 +2257,2025-03-07T06:45:08.332081-08:00,1000.6292724609375,10.810964,10810.964 +2258,2025-03-07T06:45:19.148489-08:00,1000.5963134765625,10.816408,10816.408 +2259,2025-03-07T06:45:29.973388-08:00,1000.6372680664062,10.824899,10824.899 +2260,2025-03-07T06:45:40.794082-08:00,1000.6317749023438,10.820694,10820.694 +2261,2025-03-07T06:45:51.617137-08:00,1000.6317749023438,10.823055,10823.055 +2262,2025-03-07T06:46:02.430061-08:00,1000.6529541015625,10.812924,10812.924 +2263,2025-03-07T06:46:13.252219-08:00,1000.6671752929688,10.822158,10822.158 +2264,2025-03-07T06:46:24.065457-08:00,1000.6752319335938,10.813238,10813.238 +2265,2025-03-07T06:46:34.875581-08:00,1000.6620483398438,10.810124,10810.124 +2266,2025-03-07T06:46:45.694575-08:00,1000.654052734375,10.818994,10818.994 +2267,2025-03-07T06:46:56.508109-08:00,1000.6529541015625,10.813534,10813.534 +2268,2025-03-07T06:47:07.313133-08:00,1000.66064453125,10.805024,10805.024 +2269,2025-03-07T06:47:18.132853-08:00,1000.673828125,10.81972,10819.72 +2270,2025-03-07T06:47:28.942421-08:00,1000.68701171875,10.809568,10809.568 +2271,2025-03-07T06:47:39.749635-08:00,1000.6727294921875,10.807214,10807.214 +2272,2025-03-07T06:47:50.559255-08:00,1000.6713256835938,10.80962,10809.62 +2273,2025-03-07T06:48:01.373086-08:00,1000.71337890625,10.813831,10813.831 +2274,2025-03-07T06:48:12.193286-08:00,1000.6713256835938,10.8202,10820.2 +2275,2025-03-07T06:48:22.996064-08:00,1000.6911010742188,10.802778,10802.778 +2276,2025-03-07T06:48:33.814423-08:00,1000.6976318359375,10.818359,10818.359 +2277,2025-03-07T06:48:44.631703-08:00,1000.6875,10.81728,10817.28 +2278,2025-03-07T06:48:55.440465-08:00,1000.736083984375,10.808762,10808.762 +2279,2025-03-07T06:49:06.257085-08:00,1000.7138061523438,10.81662,10816.62 +2280,2025-03-07T06:49:17.065076-08:00,1000.7149047851562,10.807991,10807.991 +2281,2025-03-07T06:49:27.876413-08:00,1000.732177734375,10.811337,10811.337 +2282,2025-03-07T06:49:38.690453-08:00,1000.745361328125,10.81404,10814.04 +2283,2025-03-07T06:49:49.497222-08:00,1000.7376708984375,10.806769,10806.769 +2284,2025-03-07T06:50:00.316384-08:00,1000.745361328125,10.819162,10819.162 +2285,2025-03-07T06:50:11.118079-08:00,1000.7310791015625,10.801695,10801.695 +2286,2025-03-07T06:50:21.931079-08:00,1000.7586059570312,10.813,10813.0 +2287,2025-03-07T06:50:32.745436-08:00,1000.7586059570312,10.814357,10814.357 +2288,2025-03-07T06:50:43.551370-08:00,1000.7508544921875,10.805934,10805.934 +2289,2025-03-07T06:50:54.370080-08:00,1000.771728515625,10.81871,10818.71 +2290,2025-03-07T06:51:05.183381-08:00,1000.751953125,10.813301,10813.301 +2291,2025-03-07T06:51:15.996318-08:00,1000.771728515625,10.812937,10812.937 +2292,2025-03-07T06:51:26.801369-08:00,1000.7611083984375,10.805051,10805.051 +2293,2025-03-07T06:51:37.610267-08:00,1000.7863159179688,10.808898,10808.898 +2294,2025-03-07T06:51:48.426324-08:00,1000.76513671875,10.816057,10816.057 +2295,2025-03-07T06:51:59.236270-08:00,1000.7676391601562,10.809946,10809.946 +2296,2025-03-07T06:52:10.045312-08:00,1000.745361328125,10.809042,10809.042 +2297,2025-03-07T06:52:20.852073-08:00,1000.746826171875,10.806761,10806.761 +2298,2025-03-07T06:52:31.655367-08:00,1000.760009765625,10.803294,10803.294 +2299,2025-03-07T06:52:42.463074-08:00,1000.7731323242188,10.807707,10807.707 +2300,2025-03-07T06:52:53.284236-08:00,1000.76904296875,10.821162,10821.162 +2301,2025-03-07T06:53:04.089264-08:00,1000.8031005859375,10.805028,10805.028 +2302,2025-03-07T06:53:14.907438-08:00,1000.7742309570312,10.818174,10818.174 +2303,2025-03-07T06:53:25.707067-08:00,1000.76904296875,10.799629,10799.629 +2304,2025-03-07T06:53:36.531084-08:00,1000.8110961914062,10.824017,10824.017 +2305,2025-03-07T06:53:47.335059-08:00,1000.8110961914062,10.803975,10803.975 +2306,2025-03-07T06:53:58.159130-08:00,1000.8110961914062,10.824071,10824.071 +2307,2025-03-07T06:54:08.968659-08:00,1000.8162231445312,10.809529,10809.529 +2308,2025-03-07T06:54:19.785505-08:00,1000.8294677734375,10.816846,10816.846 +2309,2025-03-07T06:54:30.599746-08:00,1000.7832641601562,10.814241,10814.241 +2310,2025-03-07T06:54:41.414081-08:00,1000.8253173828125,10.814335,10814.335 +2311,2025-03-07T06:54:52.226881-08:00,1000.7767333984375,10.8128,10812.8 +2312,2025-03-07T06:55:03.044075-08:00,1000.8056030273438,10.817194,10817.194 +2313,2025-03-07T06:55:13.857433-08:00,1000.8400268554688,10.813358,10813.358 +2314,2025-03-07T06:55:24.661340-08:00,1000.814697265625,10.803907,10803.907 +2315,2025-03-07T06:55:35.478302-08:00,1000.8135986328125,10.816962,10816.962 +2316,2025-03-07T06:55:46.291339-08:00,1000.8333740234375,10.813037,10813.037 +2317,2025-03-07T06:55:57.112088-08:00,1000.8212280273438,10.820749,10820.749 +2318,2025-03-07T06:56:07.920392-08:00,1000.80810546875,10.808304,10808.304 +2319,2025-03-07T06:56:18.728350-08:00,1000.83447265625,10.807958,10807.958 +2320,2025-03-07T06:56:29.540043-08:00,1000.8577880859375,10.811693,10811.693 +2321,2025-03-07T06:56:40.353579-08:00,1000.8226318359375,10.813536,10813.536 +2322,2025-03-07T06:56:51.172712-08:00,1000.8380737304688,10.819133,10819.133 +2323,2025-03-07T06:57:01.988129-08:00,1000.8303833007812,10.815417,10815.417 +2324,2025-03-07T06:57:12.801129-08:00,1000.790771484375,10.813,10813.0 +2325,2025-03-07T06:57:23.615075-08:00,1000.8380737304688,10.813946,10813.946 +2326,2025-03-07T06:57:34.431810-08:00,1000.7932739257812,10.816735,10816.735 +2327,2025-03-07T06:57:45.241390-08:00,1000.8065795898438,10.80958,10809.58 +2328,2025-03-07T06:57:56.047744-08:00,1000.8197021484375,10.806354,10806.354 +2329,2025-03-07T06:58:06.864160-08:00,1000.8526611328125,10.816416,10816.416 +2330,2025-03-07T06:58:17.685063-08:00,1000.8369750976562,10.820903,10820.903 +2331,2025-03-07T06:58:28.494237-08:00,1000.8501586914062,10.809174,10809.174 +2332,2025-03-07T06:58:39.308394-08:00,1000.8842163085938,10.814157,10814.157 +2333,2025-03-07T06:58:50.118717-08:00,1000.8643798828125,10.810323,10810.323 +2334,2025-03-07T06:59:00.938064-08:00,1000.8621826171875,10.819347,10819.347 +2335,2025-03-07T06:59:11.742576-08:00,1000.9003295898438,10.804512,10804.512 +2336,2025-03-07T06:59:22.554081-08:00,1000.8753662109375,10.811505,10811.505 +2337,2025-03-07T06:59:33.368173-08:00,1000.8951416015625,10.814092,10814.092 +2338,2025-03-07T06:59:44.180402-08:00,1000.8728637695312,10.812229,10812.229 +2339,2025-03-07T06:59:54.988222-08:00,1000.8937377929688,10.80782,10807.82 +2340,2025-03-07T07:00:05.798439-08:00,1000.8912353515625,10.810217,10810.217 +2341,2025-03-07T07:00:16.606321-08:00,1000.870361328125,10.807882,10807.882 +2342,2025-03-07T07:00:27.427329-08:00,1000.8886108398438,10.821008,10821.008 +2343,2025-03-07T07:00:38.236069-08:00,1000.8714599609375,10.80874,10808.74 +2344,2025-03-07T07:00:49.051403-08:00,1000.88720703125,10.815334,10815.334 +2345,2025-03-07T07:00:59.851390-08:00,1000.8795166015625,10.799987,10799.987 +2346,2025-03-07T07:01:10.673087-08:00,1000.9190673828125,10.821697,10821.697 +2347,2025-03-07T07:01:21.476461-08:00,1000.9017333984375,10.803374,10803.374 +2348,2025-03-07T07:01:32.286135-08:00,1000.9215698242188,10.809674,10809.674 +2349,2025-03-07T07:01:43.095137-08:00,1000.9003295898438,10.809002,10809.002 +2350,2025-03-07T07:01:53.915615-08:00,1000.8951416015625,10.820478,10820.478 +2351,2025-03-07T07:02:04.712122-08:00,1000.9215698242188,10.796507,10796.507 +2352,2025-03-07T07:02:15.533472-08:00,1000.909423828125,10.82135,10821.35 +2353,2025-03-07T07:02:26.340501-08:00,1000.9149169921875,10.807029,10807.029 +2354,2025-03-07T07:02:37.153192-08:00,1000.87646484375,10.812691,10812.691 +2355,2025-03-07T07:02:47.971064-08:00,1000.8897094726562,10.817872,10817.872 +2356,2025-03-07T07:02:58.779117-08:00,1000.9346923828125,10.808053,10808.053 +2357,2025-03-07T07:03:09.601362-08:00,1000.8992309570312,10.822245,10822.245 +2358,2025-03-07T07:03:20.408465-08:00,1000.8820190429688,10.807103,10807.103 +2359,2025-03-07T07:03:31.224249-08:00,1000.9017333984375,10.815784,10815.784 +2360,2025-03-07T07:03:42.042258-08:00,1000.9083862304688,10.818009,10818.009 +2361,2025-03-07T07:03:52.848534-08:00,1000.9017333984375,10.806276,10806.276 +2362,2025-03-07T07:04:03.663074-08:00,1000.9215698242188,10.81454,10814.54 +2363,2025-03-07T07:04:14.471205-08:00,1000.9237670898438,10.808131,10808.131 +2364,2025-03-07T07:04:25.288137-08:00,1000.880615234375,10.816932,10816.932 +2365,2025-03-07T07:04:36.102080-08:00,1000.9412231445312,10.813943,10813.943 +2366,2025-03-07T07:04:46.910338-08:00,1000.916015625,10.808258,10808.258 +2367,2025-03-07T07:04:57.724906-08:00,1000.916015625,10.814568,10814.568 +2368,2025-03-07T07:05:08.545072-08:00,1000.9017333984375,10.820166,10820.166 +2369,2025-03-07T07:05:19.354089-08:00,1000.880615234375,10.809017,10809.017 +2370,2025-03-07T07:05:30.168076-08:00,1000.9083862304688,10.813987,10813.987 +2371,2025-03-07T07:05:41.021951-08:00,1000.916015625,10.853875,10853.875 +2372,2025-03-07T07:05:51.841258-08:00,1000.92919921875,10.819307,10819.307 +2373,2025-03-07T07:06:02.646022-08:00,1000.9302978515625,10.804764,10804.764 +2374,2025-03-07T07:06:13.461889-08:00,1000.920166015625,10.815867,10815.867 +2375,2025-03-07T07:06:24.275042-08:00,1000.916015625,10.813153,10813.153 +2376,2025-03-07T07:06:35.090937-08:00,1000.9500732421875,10.815895,10815.895 +2377,2025-03-07T07:06:45.912217-08:00,1000.9226684570312,10.82128,10821.28 +2378,2025-03-07T07:06:56.717935-08:00,1000.9281005859375,10.805718,10805.718 +2379,2025-03-07T07:07:07.530620-08:00,1000.9003295898438,10.812685,10812.685 +2380,2025-03-07T07:07:18.343122-08:00,1000.906982421875,10.812502,10812.502 +2381,2025-03-07T07:07:29.150888-08:00,1000.906982421875,10.807766,10807.766 +2382,2025-03-07T07:07:39.954894-08:00,1000.916015625,10.804006,10804.006 +2383,2025-03-07T07:07:50.771476-08:00,1000.94482421875,10.816582,10816.582 +2384,2025-03-07T07:08:01.584178-08:00,1000.9556274414062,10.812702,10812.702 +2385,2025-03-07T07:08:12.390890-08:00,1000.9382934570312,10.806712,10806.712 +2386,2025-03-07T07:08:23.202240-08:00,1000.916015625,10.81135,10811.35 +2387,2025-03-07T07:08:34.021937-08:00,1000.9368896484375,10.819697,10819.697 +2388,2025-03-07T07:08:44.826881-08:00,1000.92626953125,10.804944,10804.944 +2389,2025-03-07T07:08:55.641137-08:00,1000.9459228515625,10.814256,10814.256 +2390,2025-03-07T07:09:06.445108-08:00,1000.9407958984375,10.803971,10803.971 +2391,2025-03-07T07:09:17.260147-08:00,1000.9210815429688,10.815039,10815.039 +2392,2025-03-07T07:09:28.082011-08:00,1000.9484252929688,10.821864,10821.864 +2393,2025-03-07T07:09:38.899014-08:00,1000.9276733398438,10.817003,10817.003 +2394,2025-03-07T07:09:49.714063-08:00,1000.9617309570312,10.815049,10815.049 +2395,2025-03-07T07:10:00.527127-08:00,1000.9498291015625,10.813064,10813.064 +2396,2025-03-07T07:10:11.337978-08:00,1000.98388671875,10.810851,10810.851 +2397,2025-03-07T07:10:22.152885-08:00,1000.958984375,10.814907,10814.907 +2398,2025-03-07T07:10:32.974164-08:00,1000.9575805664062,10.821279,10821.279 +2399,2025-03-07T07:10:43.786537-08:00,1000.9378051757812,10.812373,10812.373 +2400,2025-03-07T07:10:54.604887-08:00,1000.97216796875,10.81835,10818.35 +2401,2025-03-07T07:11:05.416247-08:00,1000.99853515625,10.81136,10811.36 +2402,2025-03-07T07:11:16.223883-08:00,1000.9798583984375,10.807636,10807.636 +2403,2025-03-07T07:11:27.047201-08:00,1000.97216796875,10.823318,10823.318 +2404,2025-03-07T07:11:37.851384-08:00,1001.002197265625,10.804183,10804.183 +2405,2025-03-07T07:11:48.658153-08:00,1001.002197265625,10.806769,10806.769 +2406,2025-03-07T07:11:59.472886-08:00,1001.0167236328125,10.814733,10814.733 +2407,2025-03-07T07:12:10.282891-08:00,1000.9757690429688,10.810005,10810.005 +2408,2025-03-07T07:12:21.093997-08:00,1000.9969482421875,10.811106,10811.106 +2409,2025-03-07T07:12:31.911361-08:00,1000.978271484375,10.817364,10817.364 +2410,2025-03-07T07:12:42.713652-08:00,1000.9955444335938,10.802291,10802.291 +2411,2025-03-07T07:12:53.528539-08:00,1000.9913940429688,10.814887,10814.887 +2412,2025-03-07T07:13:04.337044-08:00,1001.0192260742188,10.808505,10808.505 +2413,2025-03-07T07:13:15.155303-08:00,1000.9994506835938,10.818259,10818.259 +2414,2025-03-07T07:13:25.965589-08:00,1001.0426025390625,10.810286,10810.286 +2415,2025-03-07T07:13:36.776101-08:00,1001.021728515625,10.810512,10810.512 +2416,2025-03-07T07:13:47.585493-08:00,1001.037109375,10.809392,10809.392 +2417,2025-03-07T07:13:58.401970-08:00,1001.0700073242188,10.816477,10816.477 +2418,2025-03-07T07:14:09.215332-08:00,1001.0491943359375,10.813362,10813.362 +2419,2025-03-07T07:14:20.023894-08:00,1001.056884765625,10.808562,10808.562 +2420,2025-03-07T07:14:30.831883-08:00,1001.056884765625,10.807989,10807.989 +2421,2025-03-07T07:14:41.645890-08:00,1001.0648193359375,10.814007,10814.007 +2422,2025-03-07T07:14:52.462195-08:00,1001.0648193359375,10.816305,10816.305 +2423,2025-03-07T07:15:03.271519-08:00,1001.046142578125,10.809324,10809.324 +2424,2025-03-07T07:15:14.079893-08:00,1001.06591796875,10.808374,10808.374 +2425,2025-03-07T07:15:24.894144-08:00,1001.087158203125,10.814251,10814.251 +2426,2025-03-07T07:15:35.713891-08:00,1001.0593872070312,10.819747,10819.747 +2427,2025-03-07T07:15:46.520099-08:00,1001.0593872070312,10.806208,10806.208 +2428,2025-03-07T07:15:57.340250-08:00,1001.06591796875,10.820151,10820.151 +2429,2025-03-07T07:16:08.147899-08:00,1001.0714111328125,10.807649,10807.649 +2430,2025-03-07T07:16:18.967886-08:00,1001.0882568359375,10.819987,10819.987 +2431,2025-03-07T07:16:29.777124-08:00,1001.08056640625,10.809238,10809.238 +2432,2025-03-07T07:16:40.596454-08:00,1001.0593872070312,10.81933,10819.33 +2433,2025-03-07T07:16:51.407312-08:00,1001.0593872070312,10.810858,10810.858 +2434,2025-03-07T07:17:02.214036-08:00,1001.0739135742188,10.806724,10806.724 +2435,2025-03-07T07:17:13.025965-08:00,1001.100341796875,10.811929,10811.929 +2436,2025-03-07T07:17:23.832889-08:00,1001.1068725585938,10.806924,10806.924 +2437,2025-03-07T07:17:34.641381-08:00,1001.0857543945312,10.808492,10808.492 +2438,2025-03-07T07:17:45.455348-08:00,1001.0791625976562,10.813967,10813.967 +2439,2025-03-07T07:17:56.269209-08:00,1001.0912475585938,10.813861,10813.861 +2440,2025-03-07T07:18:07.080211-08:00,1001.1121215820312,10.811002,10811.002 +2441,2025-03-07T07:18:17.899255-08:00,1001.098876953125,10.819044,10819.044 +2442,2025-03-07T07:18:28.709230-08:00,1001.084716796875,10.809975,10809.975 +2443,2025-03-07T07:18:39.523024-08:00,1001.0582885742188,10.813794,10813.794 +2444,2025-03-07T07:18:50.339212-08:00,1001.087158203125,10.816188,10816.188 +2445,2025-03-07T07:19:01.155888-08:00,1001.072509765625,10.816676,10816.676 +2446,2025-03-07T07:19:11.974882-08:00,1001.09375,10.818994,10818.994 +2447,2025-03-07T07:19:22.794404-08:00,1001.1079711914062,10.819522,10819.522 +2448,2025-03-07T07:19:33.616178-08:00,1001.0857543945312,10.821774,10821.774 +2449,2025-03-07T07:19:44.423886-08:00,1001.1200561523438,10.807708,10807.708 +2450,2025-03-07T07:19:55.231887-08:00,1001.1253051757812,10.808001,10808.001 +2451,2025-03-07T07:20:06.046888-08:00,1001.13330078125,10.815001,10815.001 +2452,2025-03-07T07:20:16.855302-08:00,1001.1373291015625,10.808414,10808.414 +2453,2025-03-07T07:20:27.680025-08:00,1001.1095581054688,10.824723,10824.723 +2454,2025-03-07T07:20:38.492865-08:00,1001.1109619140625,10.81284,10812.84 +2455,2025-03-07T07:20:49.317389-08:00,1001.14501953125,10.824524,10824.524 +2456,2025-03-07T07:21:00.133094-08:00,1001.1464233398438,10.815705,10815.705 +2457,2025-03-07T07:21:10.955230-08:00,1001.1348266601562,10.822136,10822.136 +2458,2025-03-07T07:21:21.767296-08:00,1001.1505737304688,10.812066,10812.066 +2459,2025-03-07T07:21:32.587191-08:00,1001.1373291015625,10.819895,10819.895 +2460,2025-03-07T07:21:43.399208-08:00,1001.1318969726562,10.812017,10812.017 +2461,2025-03-07T07:21:54.223134-08:00,1001.138427734375,10.823926,10823.926 +2462,2025-03-07T07:22:05.034891-08:00,1001.1475219726562,10.811757,10811.757 +2463,2025-03-07T07:22:15.857169-08:00,1001.1541137695312,10.822278,10822.278 +2464,2025-03-07T07:22:26.674206-08:00,1001.1738891601562,10.817037,10817.037 +2465,2025-03-07T07:22:37.498947-08:00,1001.1673583984375,10.824741,10824.741 +2466,2025-03-07T07:22:48.317168-08:00,1001.1673583984375,10.818221,10818.221 +2467,2025-03-07T07:22:59.136996-08:00,1001.1687622070312,10.819828,10819.828 +2468,2025-03-07T07:23:09.953119-08:00,1001.2017211914062,10.816123,10816.123 +2469,2025-03-07T07:23:20.773891-08:00,1001.205322265625,10.820772,10820.772 +2470,2025-03-07T07:23:31.594942-08:00,1001.192138671875,10.821051,10821.051 +2471,2025-03-07T07:23:42.404039-08:00,1001.2184448242188,10.809097,10809.097 +2472,2025-03-07T07:23:53.230942-08:00,1001.2000732421875,10.826903,10826.903 +2473,2025-03-07T07:24:04.050215-08:00,1001.2157592773438,10.819273,10819.273 +2474,2025-03-07T07:24:14.864887-08:00,1001.2223510742188,10.814672,10814.672 +2475,2025-03-07T07:24:25.680147-08:00,1001.2366333007812,10.81526,10815.26 +2476,2025-03-07T07:24:36.494950-08:00,1001.1904907226562,10.814803,10814.803 +2477,2025-03-07T07:24:47.315897-08:00,1001.2062377929688,10.820947,10820.947 +2478,2025-03-07T07:24:58.128888-08:00,1001.235107421875,10.812991,10812.991 +2479,2025-03-07T07:25:08.946023-08:00,1001.21533203125,10.817135,10817.135 +2480,2025-03-07T07:25:19.763556-08:00,1001.2101440429688,10.817533,10817.533 +2481,2025-03-07T07:25:30.578220-08:00,1001.2334594726562,10.814664,10814.664 +2482,2025-03-07T07:25:41.384872-08:00,1001.2477416992188,10.806652,10806.652 +2483,2025-03-07T07:25:52.201178-08:00,1001.23046875,10.816306,10816.306 +2484,2025-03-07T07:26:03.025808-08:00,1001.2029418945312,10.82463,10824.63 +2485,2025-03-07T07:26:13.843893-08:00,1001.2120971679688,10.818085,10818.085 +2486,2025-03-07T07:26:24.657959-08:00,1001.2135009765625,10.814066,10814.066 +2487,2025-03-07T07:26:35.470125-08:00,1001.2160034179688,10.812166,10812.166 +2488,2025-03-07T07:26:46.294603-08:00,1001.2149047851562,10.824478,10824.478 +2489,2025-03-07T07:26:57.112368-08:00,1001.2371826171875,10.817765,10817.765 +2490,2025-03-07T07:27:07.925894-08:00,1001.2306518554688,10.813526,10813.526 +2491,2025-03-07T07:27:18.744891-08:00,1001.2306518554688,10.818997,10818.997 +2492,2025-03-07T07:27:29.563207-08:00,1001.23828125,10.818316,10818.316 +2493,2025-03-07T07:27:40.380899-08:00,1001.2276611328125,10.817692,10817.692 +2494,2025-03-07T07:27:51.201041-08:00,1001.2407836914062,10.820142,10820.142 +2495,2025-03-07T07:28:02.024236-08:00,1001.235595703125,10.823195,10823.195 +2496,2025-03-07T07:28:12.836887-08:00,1001.2301635742188,10.812651,10812.651 +2497,2025-03-07T07:28:23.651889-08:00,1001.2446899414062,10.815002,10815.002 +2498,2025-03-07T07:28:34.476654-08:00,1001.2391967773438,10.824765,10824.765 +2499,2025-03-07T07:28:45.294094-08:00,1001.2260131835938,10.81744,10817.44 +2500,2025-03-07T07:28:56.096447-08:00,1001.2402954101562,10.802353,10802.353 +2501,2025-03-07T07:29:06.916119-08:00,1001.2193603515625,10.819672,10819.672 +2502,2025-03-07T07:29:17.731871-08:00,1001.2402954101562,10.815752,10815.752 +2503,2025-03-07T07:29:28.546151-08:00,1001.2600708007812,10.81428,10814.28 +2504,2025-03-07T07:29:39.366041-08:00,1001.2337646484375,10.81989,10819.89 +2505,2025-03-07T07:29:50.185927-08:00,1001.2468872070312,10.819886,10819.886 +2506,2025-03-07T07:30:01.001548-08:00,1001.2600708007812,10.815621,10815.621 +2507,2025-03-07T07:30:11.817650-08:00,1001.2139282226562,10.816102,10816.102 +2508,2025-03-07T07:30:22.636111-08:00,1001.2457885742188,10.818461,10818.461 +2509,2025-03-07T07:30:33.447116-08:00,1001.2468872070312,10.811005,10811.005 +2510,2025-03-07T07:30:44.267369-08:00,1001.272216796875,10.820253,10820.253 +2511,2025-03-07T07:30:55.087336-08:00,1001.301025390625,10.819967,10819.967 +2512,2025-03-07T07:31:05.911892-08:00,1001.2918701171875,10.824556,10824.556 +2513,2025-03-07T07:31:16.731193-08:00,1001.2985229492188,10.819301,10819.301 +2514,2025-03-07T07:31:27.542805-08:00,1001.2697143554688,10.811612,10811.612 +2515,2025-03-07T07:31:38.367886-08:00,1001.2828369140625,10.825081,10825.081 +2516,2025-03-07T07:31:49.184938-08:00,1001.261962890625,10.817052,10817.052 +2517,2025-03-07T07:31:59.996959-08:00,1001.2985229492188,10.812021,10812.021 +2518,2025-03-07T07:32:10.820892-08:00,1001.286865234375,10.823933,10823.933 +2519,2025-03-07T07:32:21.637882-08:00,1001.3026733398438,10.81699,10816.99 +2520,2025-03-07T07:32:32.444870-08:00,1001.3040771484375,10.806988,10806.988 +2521,2025-03-07T07:32:43.272157-08:00,1001.3128051757812,10.827287,10827.287 +2522,2025-03-07T07:32:54.082934-08:00,1001.32080078125,10.810777,10810.777 +2523,2025-03-07T07:33:04.897959-08:00,1001.3233032226562,10.815025,10815.025 +2524,2025-03-07T07:33:15.725210-08:00,1001.3192138671875,10.827251,10827.251 +2525,2025-03-07T07:33:26.538222-08:00,1001.315185546875,10.813012,10813.012 +2526,2025-03-07T07:33:37.353057-08:00,1001.3492431640625,10.814835,10814.835 +2527,2025-03-07T07:33:48.165271-08:00,1001.3373413085938,10.812214,10812.214 +2528,2025-03-07T07:33:58.986909-08:00,1001.3201293945312,10.821638,10821.638 +2529,2025-03-07T07:34:09.803141-08:00,1001.358154296875,10.816232,10816.232 +2530,2025-03-07T07:34:20.621967-08:00,1001.3262329101562,10.818826,10818.826 +2531,2025-03-07T07:34:31.441892-08:00,1001.3287353515625,10.819925,10819.925 +2532,2025-03-07T07:34:42.256191-08:00,1001.3231811523438,10.814299,10814.299 +2533,2025-03-07T07:34:53.061366-08:00,1001.3295288085938,10.805175,10805.175 +2534,2025-03-07T07:35:03.874289-08:00,1001.3109130859375,10.812923,10812.923 +2535,2025-03-07T07:35:14.695024-08:00,1001.3609619140625,10.820735,10820.735 +2536,2025-03-07T07:35:25.515968-08:00,1001.3356323242188,10.820944,10820.944 +2537,2025-03-07T07:35:36.336404-08:00,1001.3604736328125,10.820436,10820.436 +2538,2025-03-07T07:35:47.157259-08:00,1001.3604736328125,10.820855,10820.855 +2539,2025-03-07T07:35:57.972936-08:00,1001.3233642578125,10.815677,10815.677 +2540,2025-03-07T07:36:08.785220-08:00,1001.3467407226562,10.812284,10812.284 +2541,2025-03-07T07:36:19.610890-08:00,1001.328369140625,10.82567,10825.67 +2542,2025-03-07T07:36:30.421894-08:00,1001.317626953125,10.811004,10811.004 +2543,2025-03-07T07:36:41.236933-08:00,1001.3607788085938,10.815039,10815.039 +2544,2025-03-07T07:36:52.056207-08:00,1001.3382568359375,10.819274,10819.274 +2545,2025-03-07T07:37:02.873940-08:00,1001.35400390625,10.817733,10817.733 +2546,2025-03-07T07:37:13.685889-08:00,1001.3287353515625,10.811949,10811.949 +2547,2025-03-07T07:37:24.510359-08:00,1001.3326416015625,10.82447,10824.47 +2548,2025-03-07T07:37:35.324891-08:00,1001.3414306640625,10.814532,10814.532 +2549,2025-03-07T07:37:46.135118-08:00,1001.3692016601562,10.810227,10810.227 +2550,2025-03-07T07:37:56.942881-08:00,1001.336181640625,10.807763,10807.763 +2551,2025-03-07T07:38:07.763930-08:00,1001.3504638671875,10.821049,10821.049 +2552,2025-03-07T07:38:18.573906-08:00,1001.3306274414062,10.809976,10809.976 +2553,2025-03-07T07:38:29.387987-08:00,1001.3345336914062,10.814081,10814.081 +2554,2025-03-07T07:38:40.213102-08:00,1001.348876953125,10.825115,10825.115 +2555,2025-03-07T07:38:51.033867-08:00,1001.3447875976562,10.820765,10820.765 +2556,2025-03-07T07:39:01.848014-08:00,1001.3777465820312,10.814147,10814.147 +2557,2025-03-07T07:39:12.674053-08:00,1001.375,10.826039,10826.039 +2558,2025-03-07T07:39:23.489888-08:00,1001.3786010742188,10.815835,10815.835 +2559,2025-03-07T07:39:34.310895-08:00,1001.37451171875,10.821007,10821.007 +2560,2025-03-07T07:39:45.130889-08:00,1001.3847045898438,10.819994,10819.994 +2561,2025-03-07T07:39:55.944883-08:00,1001.3794555664062,10.813994,10813.994 +2562,2025-03-07T07:40:06.771017-08:00,1001.3819580078125,10.826134,10826.134 +2563,2025-03-07T07:40:17.585872-08:00,1001.385498046875,10.814855,10814.855 +2564,2025-03-07T07:40:28.410404-08:00,1001.373779296875,10.824532,10824.532 +2565,2025-03-07T07:40:39.224530-08:00,1001.36962890625,10.814126,10814.126 +2566,2025-03-07T07:40:50.050885-08:00,1001.3839111328125,10.826355,10826.355 +2567,2025-03-07T07:41:00.865156-08:00,1001.365478515625,10.814271,10814.271 +2568,2025-03-07T07:41:11.693937-08:00,1001.3903198242188,10.828781,10828.781 +2569,2025-03-07T07:41:22.507893-08:00,1001.3836669921875,10.813956,10813.956 +2570,2025-03-07T07:41:33.334870-08:00,1001.4110717773438,10.826977,10826.977 +2571,2025-03-07T07:41:44.158980-08:00,1001.3927612304688,10.82411,10824.11 +2572,2025-03-07T07:41:54.973979-08:00,1001.4345092773438,10.814999,10814.999 +2573,2025-03-07T07:42:05.800306-08:00,1001.4160766601562,10.826327,10826.327 +2574,2025-03-07T07:42:16.620891-08:00,1001.3973999023438,10.820585,10820.585 +2575,2025-03-07T07:42:27.446888-08:00,1001.4131469726562,10.825997,10825.997 +2576,2025-03-07T07:42:38.267105-08:00,1001.4103393554688,10.820217,10820.217 +2577,2025-03-07T07:42:49.092887-08:00,1001.411376953125,10.825782,10825.782 +2578,2025-03-07T07:42:59.913405-08:00,1001.3757934570312,10.820518,10820.518 +2579,2025-03-07T07:43:10.736212-08:00,1001.4126586914062,10.822807,10822.807 +2580,2025-03-07T07:43:21.563940-08:00,1001.434814453125,10.827728,10827.728 +2581,2025-03-07T07:43:32.386147-08:00,1001.4307861328125,10.822207,10822.207 +2582,2025-03-07T07:43:43.214881-08:00,1001.4120483398438,10.828734,10828.734 +2583,2025-03-07T07:43:54.035669-08:00,1001.44091796875,10.820788,10820.788 +2584,2025-03-07T07:44:04.857145-08:00,1001.4489135742188,10.821476,10821.476 +2585,2025-03-07T07:44:15.678885-08:00,1001.4392700195312,10.82174,10821.74 +2586,2025-03-07T07:44:26.506173-08:00,1001.4195556640625,10.827288,10827.288 +2587,2025-03-07T07:44:37.332882-08:00,1001.4209594726562,10.826709,10826.709 +2588,2025-03-07T07:44:48.145866-08:00,1001.4209594726562,10.812984,10812.984 +2589,2025-03-07T07:44:58.977933-08:00,1001.4299926757812,10.832067,10832.067 +2590,2025-03-07T07:45:09.797037-08:00,1001.443115234375,10.819104,10819.104 +2591,2025-03-07T07:45:20.629896-08:00,1001.4654541015625,10.832859,10832.859 +2592,2025-03-07T07:45:31.451182-08:00,1001.4390869140625,10.821286,10821.286 +2593,2025-03-07T07:45:42.287476-08:00,1001.4547119140625,10.836294,10836.294 +2594,2025-03-07T07:45:53.102281-08:00,1001.4216918945312,10.814805,10814.805 +2595,2025-03-07T07:46:03.932500-08:00,1001.4623413085938,10.830219,10830.219 +2596,2025-03-07T07:46:14.757930-08:00,1001.4679565429688,10.82543,10825.43 +2597,2025-03-07T07:46:25.574890-08:00,1001.43603515625,10.81696,10816.96 +2598,2025-03-07T07:46:36.400210-08:00,1001.47705078125,10.82532,10825.32 +2599,2025-03-07T07:46:47.226966-08:00,1001.4293823242188,10.826756,10826.756 +2600,2025-03-07T07:46:58.045892-08:00,1001.4439697265625,10.818926,10818.926 +2601,2025-03-07T07:47:08.871887-08:00,1001.4618530273438,10.825995,10825.995 +2602,2025-03-07T07:47:19.699887-08:00,1001.473876953125,10.828,10828.0 +2603,2025-03-07T07:47:30.524201-08:00,1001.4552612304688,10.824314,10824.314 +2604,2025-03-07T07:47:41.344037-08:00,1001.4656982421875,10.819836,10819.836 +2605,2025-03-07T07:47:52.160952-08:00,1001.4734497070312,10.816915,10816.915 +2606,2025-03-07T07:48:02.991957-08:00,1001.4824829101562,10.831005,10831.005 +2607,2025-03-07T07:48:13.816110-08:00,1001.4417724609375,10.824153,10824.153 +2608,2025-03-07T07:48:24.644893-08:00,1001.4796752929688,10.828783,10828.783 +2609,2025-03-07T07:48:35.458181-08:00,1001.47314453125,10.813288,10813.288 +2610,2025-03-07T07:48:46.277146-08:00,1001.4478149414062,10.818965,10818.965 +2611,2025-03-07T07:48:57.106886-08:00,1001.4635009765625,10.82974,10829.74 +2612,2025-03-07T07:49:07.920189-08:00,1001.458251953125,10.813303,10813.303 +2613,2025-03-07T07:49:18.737873-08:00,1001.479248046875,10.817684,10817.684 +2614,2025-03-07T07:49:29.565096-08:00,1001.4451293945312,10.827223,10827.223 +2615,2025-03-07T07:49:40.378893-08:00,1001.44970703125,10.813797,10813.797 +2616,2025-03-07T07:49:51.199879-08:00,1001.470947265625,10.820986,10820.986 +2617,2025-03-07T07:50:02.022162-08:00,1001.44970703125,10.822283,10822.283 +2618,2025-03-07T07:50:12.841893-08:00,1001.4734497070312,10.819731,10819.731 +2619,2025-03-07T07:50:23.661093-08:00,1001.4612426757812,10.8192,10819.2 +2620,2025-03-07T07:50:34.477603-08:00,1001.4720458984375,10.81651,10816.51 +2621,2025-03-07T07:50:44.050631-08:00,1001.4296875,9.573028,9573.028 +2622,2025-03-07T07:50:45.302419-08:00,1001.4481201171875,1.251788,1251.788 +2623,2025-03-07T07:50:56.109886-08:00,1001.5033569335938,10.807467,10807.467 +2624,2025-03-07T07:51:06.931077-08:00,1001.5022583007812,10.821191,10821.191 +2625,2025-03-07T07:51:17.751291-08:00,1001.4561157226562,10.820214,10820.214 +2626,2025-03-07T07:51:28.570883-08:00,1001.4703369140625,10.819592,10819.592 +2627,2025-03-07T07:51:39.395082-08:00,1001.49267578125,10.824199,10824.199 +2628,2025-03-07T07:51:50.217961-08:00,1001.5138549804688,10.822879,10822.879 +2629,2025-03-07T07:52:01.053853-08:00,1001.5072021484375,10.835892,10835.892 +2630,2025-03-07T07:52:11.874139-08:00,1001.4898681640625,10.820286,10820.286 +2631,2025-03-07T07:52:22.701892-08:00,1001.5006103515625,10.827753,10827.753 +2632,2025-03-07T07:52:33.528732-08:00,1001.5031127929688,10.82684,10826.84 +2633,2025-03-07T07:52:44.344163-08:00,1001.529541015625,10.815431,10815.431 +2634,2025-03-07T07:52:55.169499-08:00,1001.514892578125,10.825336,10825.336 +2635,2025-03-07T07:53:05.995336-08:00,1001.545166015625,10.825837,10825.837 +2636,2025-03-07T07:53:16.809894-08:00,1001.529541015625,10.814558,10814.558 +2637,2025-03-07T07:53:27.637470-08:00,1001.5306396484375,10.827576,10827.576 +2638,2025-03-07T07:53:38.462441-08:00,1001.5635986328125,10.824971,10824.971 +2639,2025-03-07T07:53:49.282879-08:00,1001.5504150390625,10.820438,10820.438 +2640,2025-03-07T07:54:00.108903-08:00,1001.5360717773438,10.826024,10826.024 +2641,2025-03-07T07:54:10.934887-08:00,1001.5650024414062,10.825984,10825.984 +2642,2025-03-07T07:54:21.754748-08:00,1001.54931640625,10.819861,10819.861 +2643,2025-03-07T07:54:32.583870-08:00,1001.569091796875,10.829122,10829.122 +2644,2025-03-07T07:54:43.406925-08:00,1001.5504150390625,10.823055,10823.055 +2645,2025-03-07T07:54:54.225097-08:00,1001.5545043945312,10.818172,10818.172 +2646,2025-03-07T07:55:05.052940-08:00,1001.5677490234375,10.827843,10827.843 +2647,2025-03-07T07:55:15.878195-08:00,1001.546875,10.825255,10825.255 +2648,2025-03-07T07:55:26.698189-08:00,1001.57568359375,10.819994,10819.994 +2649,2025-03-07T07:55:37.519559-08:00,1001.569091796875,10.82137,10821.37 +2650,2025-03-07T07:55:48.339199-08:00,1001.57568359375,10.81964,10819.64 +2651,2025-03-07T07:55:59.161305-08:00,1001.595458984375,10.822106,10822.106 +2652,2025-03-07T07:56:09.993171-08:00,1001.569091796875,10.831866,10831.866 +2653,2025-03-07T07:56:20.812885-08:00,1001.54931640625,10.819714,10819.714 +2654,2025-03-07T07:56:31.637870-08:00,1001.5979614257812,10.824985,10824.985 +2655,2025-03-07T07:56:42.459052-08:00,1001.5900268554688,10.821182,10821.182 +2656,2025-03-07T07:56:53.273134-08:00,1001.5914306640625,10.814082,10814.082 +2657,2025-03-07T07:57:04.093282-08:00,1001.6122436523438,10.820148,10820.148 +2658,2025-03-07T07:57:14.914371-08:00,1001.6177978515625,10.821089,10821.089 +2659,2025-03-07T07:57:25.729970-08:00,1001.618896484375,10.815599,10815.599 +2660,2025-03-07T07:57:36.556611-08:00,1001.6122436523438,10.826641,10826.641 +2661,2025-03-07T07:57:47.375337-08:00,1001.6334228515625,10.818726,10818.726 +2662,2025-03-07T07:57:58.198891-08:00,1001.618896484375,10.823554,10823.554 +2663,2025-03-07T07:58:09.014877-08:00,1001.5979614257812,10.815986,10815.986 +2664,2025-03-07T07:58:19.836357-08:00,1001.5979614257812,10.82148,10821.48 +2665,2025-03-07T07:58:30.652131-08:00,1001.5847778320312,10.815774,10815.774 +2666,2025-03-07T07:58:41.476105-08:00,1001.578125,10.823974,10823.974 +2667,2025-03-07T07:58:52.291881-08:00,1001.5817260742188,10.815776,10815.776 +2668,2025-03-07T07:59:03.116874-08:00,1001.6070556640625,10.824993,10824.993 +2669,2025-03-07T07:59:13.936992-08:00,1001.6070556640625,10.820118,10820.118 +2670,2025-03-07T07:59:24.758361-08:00,1001.6015625,10.821369,10821.369 +2671,2025-03-07T07:59:35.582887-08:00,1001.5872802734375,10.824526,10824.526 +2672,2025-03-07T07:59:46.418415-08:00,1001.5939331054688,10.835528,10835.528 +2673,2025-03-07T07:59:57.234218-08:00,1001.5882568359375,10.815803,10815.803 +2674,2025-03-07T08:00:08.058141-08:00,1001.5960083007812,10.823923,10823.923 +2675,2025-03-07T08:00:18.879012-08:00,1001.6314697265625,10.820871,10820.871 +2676,2025-03-07T08:00:29.698114-08:00,1001.6040649414062,10.819102,10819.102 +2677,2025-03-07T08:00:40.519133-08:00,1001.572021484375,10.821019,10821.019 +2678,2025-03-07T08:00:51.346197-08:00,1001.5867309570312,10.827064,10827.064 +2679,2025-03-07T08:01:02.170965-08:00,1001.589111328125,10.824768,10824.768 +2680,2025-03-07T08:01:12.998614-08:00,1001.5957641601562,10.827649,10827.649 +2681,2025-03-07T08:01:23.816392-08:00,1001.5811767578125,10.817778,10817.778 +2682,2025-03-07T08:01:34.647929-08:00,1001.6113891601562,10.831537,10831.537 +2683,2025-03-07T08:01:45.468166-08:00,1001.614990234375,10.820237,10820.237 +2684,2025-03-07T08:01:56.290119-08:00,1001.5940551757812,10.821953,10821.953 +2685,2025-03-07T08:02:07.110270-08:00,1001.5951538085938,10.820151,10820.151 +2686,2025-03-07T08:02:17.934206-08:00,1001.5965576171875,10.823936,10823.936 +2687,2025-03-07T08:02:28.751874-08:00,1001.601806640625,10.817668,10817.668 +2688,2025-03-07T08:02:39.577929-08:00,1001.6031494140625,10.826055,10826.055 +2689,2025-03-07T08:02:50.401129-08:00,1001.5701293945312,10.8232,10823.2 +2690,2025-03-07T08:03:01.226880-08:00,1001.5753784179688,10.825751,10825.751 +2691,2025-03-07T08:03:12.053888-08:00,1001.61083984375,10.827008,10827.008 +2692,2025-03-07T08:03:22.873889-08:00,1001.5965576171875,10.820001,10820.001 +2693,2025-03-07T08:03:33.692719-08:00,1001.5701293945312,10.81883,10818.83 +2694,2025-03-07T08:03:44.513892-08:00,1001.592529296875,10.821173,10821.173 +2695,2025-03-07T08:03:55.337087-08:00,1001.5990600585938,10.823195,10823.195 +2696,2025-03-07T08:04:06.155741-08:00,1001.592529296875,10.818654,10818.654 +2697,2025-03-07T08:04:16.975139-08:00,1001.564697265625,10.819398,10819.398 +2698,2025-03-07T08:04:27.803169-08:00,1001.5817260742188,10.82803,10828.03 +2699,2025-03-07T08:04:38.622706-08:00,1001.5882568359375,10.819537,10819.537 +2700,2025-03-07T08:04:49.438893-08:00,1001.6146850585938,10.816187,10816.187 +2701,2025-03-07T08:05:00.257891-08:00,1001.608154296875,10.818998,10818.998 +2702,2025-03-07T08:05:11.072510-08:00,1001.6026000976562,10.814619,10814.619 +2703,2025-03-07T08:05:21.895281-08:00,1001.6015625,10.822771,10822.771 +2704,2025-03-07T08:05:32.709787-08:00,1001.6381225585938,10.814506,10814.506 +2705,2025-03-07T08:05:43.528614-08:00,1001.6157836914062,10.818827,10818.827 +2706,2025-03-07T08:05:54.350958-08:00,1001.6091918945312,10.822344,10822.344 +2707,2025-03-07T08:06:05.170070-08:00,1001.6157836914062,10.819112,10819.112 +2708,2025-03-07T08:06:15.983764-08:00,1001.595947265625,10.813694,10813.694 +2709,2025-03-07T08:06:26.809041-08:00,1001.6314697265625,10.825277,10825.277 +2710,2025-03-07T08:06:37.620266-08:00,1001.6091918945312,10.811225,10811.225 +2711,2025-03-07T08:06:48.437778-08:00,1001.6248168945312,10.817512,10817.512 +2712,2025-03-07T08:06:59.256743-08:00,1001.6370239257812,10.818965,10818.965 +2713,2025-03-07T08:07:10.073007-08:00,1001.6381225585938,10.816264,10816.264 +2714,2025-03-07T08:07:20.900830-08:00,1001.6314697265625,10.827823,10827.823 +2715,2025-03-07T08:07:31.721807-08:00,1001.6578979492188,10.820977,10820.977 +2716,2025-03-07T08:07:42.537368-08:00,1001.6867065429688,10.815561,10815.561 +2717,2025-03-07T08:07:53.357766-08:00,1001.6669311523438,10.820398,10820.398 +2718,2025-03-07T08:08:04.181809-08:00,1001.6680297851562,10.824043,10824.043 +2719,2025-03-07T08:08:15.004095-08:00,1001.6680297851562,10.822286,10822.286 +2720,2025-03-07T08:08:25.822741-08:00,1001.7034912109375,10.818646,10818.646 +2721,2025-03-07T08:08:36.654352-08:00,1001.6983032226562,10.831611,10831.611 +2722,2025-03-07T08:08:47.474746-08:00,1001.7059326171875,10.820394,10820.394 +2723,2025-03-07T08:08:58.291149-08:00,1001.728271484375,10.816403,10816.403 +2724,2025-03-07T08:09:09.122017-08:00,1001.6952514648438,10.830868,10830.868 +2725,2025-03-07T08:09:19.933081-08:00,1001.7150268554688,10.811064,10811.064 +2726,2025-03-07T08:09:30.752762-08:00,1001.72412109375,10.819681,10819.681 +2727,2025-03-07T08:09:41.583028-08:00,1001.7164306640625,10.830266,10830.266 +2728,2025-03-07T08:09:52.398766-08:00,1001.7254638671875,10.815738,10815.738 +2729,2025-03-07T08:10:03.222008-08:00,1001.719970703125,10.823242,10823.242 +2730,2025-03-07T08:10:14.038062-08:00,1001.7489013671875,10.816054,10816.054 +2731,2025-03-07T08:10:24.867760-08:00,1001.7412719726562,10.829698,10829.698 +2732,2025-03-07T08:10:35.690027-08:00,1001.7711791992188,10.822267,10822.267 +2733,2025-03-07T08:10:46.511017-08:00,1001.7593994140625,10.82099,10820.99 +2734,2025-03-07T08:10:57.332695-08:00,1001.760498046875,10.821678,10821.678 +2735,2025-03-07T08:11:08.150472-08:00,1001.774658203125,10.817777,10817.777 +2736,2025-03-07T08:11:18.969920-08:00,1001.7970581054688,10.819448,10819.448 +2737,2025-03-07T08:11:29.787743-08:00,1001.78515625,10.817823,10817.823 +2738,2025-03-07T08:11:40.605905-08:00,1001.7796630859375,10.818162,10818.162 +2739,2025-03-07T08:11:51.433765-08:00,1001.8217163085938,10.82786,10827.86 +2740,2025-03-07T08:12:02.248513-08:00,1001.830810546875,10.814748,10814.748 +2741,2025-03-07T08:12:13.062763-08:00,1001.8043823242188,10.81425,10814.25 +2742,2025-03-07T08:12:23.890759-08:00,1001.8043823242188,10.827996,10827.996 +2743,2025-03-07T08:12:34.702762-08:00,1001.8148193359375,10.812003,10812.003 +2744,2025-03-07T08:12:45.528040-08:00,1001.8239135742188,10.825278,10825.278 +2745,2025-03-07T08:12:56.354897-08:00,1001.7697143554688,10.826857,10826.857 +2746,2025-03-07T08:13:07.176749-08:00,1001.8406372070312,10.821852,10821.852 +2747,2025-03-07T08:13:17.993891-08:00,1001.8275146484375,10.817142,10817.142 +2748,2025-03-07T08:13:28.810812-08:00,1001.85107421875,10.816921,10816.921 +2749,2025-03-07T08:13:39.629902-08:00,1001.8800048828125,10.81909,10819.09 +2750,2025-03-07T08:13:50.454512-08:00,1001.848388671875,10.82461,10824.61 +2751,2025-03-07T08:14:01.264105-08:00,1001.8758544921875,10.809593,10809.593 +2752,2025-03-07T08:14:12.090766-08:00,1001.84423828125,10.826661,10826.661 +2753,2025-03-07T08:14:22.906820-08:00,1001.9071655273438,10.816054,10816.054 +2754,2025-03-07T08:14:33.734768-08:00,1001.8675537109375,10.827948,10827.948 +2755,2025-03-07T08:14:44.550932-08:00,1001.8568725585938,10.816164,10816.164 +2756,2025-03-07T08:14:55.372761-08:00,1001.8516235351562,10.821829,10821.829 +2757,2025-03-07T08:15:06.187099-08:00,1001.8870849609375,10.814338,10814.338 +2758,2025-03-07T08:15:17.014413-08:00,1001.9014282226562,10.827314,10827.314 +2759,2025-03-07T08:15:27.839532-08:00,1001.9181518554688,10.825119,10825.119 +2760,2025-03-07T08:15:38.655023-08:00,1001.9129638671875,10.815491,10815.491 +2761,2025-03-07T08:15:49.478014-08:00,1001.8865356445312,10.822991,10822.991 +2762,2025-03-07T08:16:00.311074-08:00,1001.8956298828125,10.83306,10833.06 +2763,2025-03-07T08:16:11.130764-08:00,1001.9021606445312,10.81969,10819.69 +2764,2025-03-07T08:16:21.952809-08:00,1001.896728515625,10.822045,10822.045 +2765,2025-03-07T08:16:32.784745-08:00,1001.90576171875,10.831936,10831.936 +2766,2025-03-07T08:16:43.598760-08:00,1001.925537109375,10.814015,10814.015 +2767,2025-03-07T08:16:54.430811-08:00,1001.93359375,10.832051,10832.051 +2768,2025-03-07T08:17:05.250808-08:00,1001.9137573242188,10.819997,10819.997 +2769,2025-03-07T08:17:16.065020-08:00,1001.94921875,10.814212,10814.212 +2770,2025-03-07T08:17:26.898827-08:00,1001.9293823242188,10.833807,10833.807 +2771,2025-03-07T08:17:37.720910-08:00,1001.93701171875,10.822083,10822.083 +2772,2025-03-07T08:17:48.546035-08:00,1001.9238891601562,10.825125,10825.125 +2773,2025-03-07T08:17:59.374743-08:00,1001.9384155273438,10.828708,10828.708 +2774,2025-03-07T08:18:10.208787-08:00,1001.9384155273438,10.834044,10834.044 +2775,2025-03-07T08:18:21.026820-08:00,1001.917236328125,10.818033,10818.033 +2776,2025-03-07T08:18:31.858278-08:00,1001.9659423828125,10.831458,10831.458 +2777,2025-03-07T08:18:42.681767-08:00,1001.9263305664062,10.823489,10823.489 +2778,2025-03-07T08:18:53.517138-08:00,1001.9210815429688,10.835371,10835.371 +2779,2025-03-07T08:19:04.353875-08:00,1001.9353637695312,10.836737,10836.737 +2780,2025-03-07T08:19:15.186524-08:00,1001.9851684570312,10.832649,10832.649 +2781,2025-03-07T08:19:26.016817-08:00,1001.9678344726562,10.830293,10830.293 +2782,2025-03-07T08:19:36.849766-08:00,1001.9439086914062,10.832949,10832.949 +2783,2025-03-07T08:19:47.682072-08:00,1001.98486328125,10.832306,10832.306 +2784,2025-03-07T08:19:58.513140-08:00,1001.9807739257812,10.831068,10831.068 +2785,2025-03-07T08:20:09.348837-08:00,1001.9356079101562,10.835697,10835.697 +2786,2025-03-07T08:20:20.182762-08:00,1001.9710693359375,10.833925,10833.925 +2787,2025-03-07T08:20:31.020765-08:00,1001.959228515625,10.838003,10838.003 +2788,2025-03-07T08:20:41.856373-08:00,1001.9603271484375,10.835608,10835.608 +2789,2025-03-07T08:20:52.683764-08:00,1001.95751953125,10.827391,10827.391 +2790,2025-03-07T08:21:03.519831-08:00,1001.998291015625,10.836067,10836.067 +2791,2025-03-07T08:21:14.363847-08:00,1001.9732666015625,10.844016,10844.016 +2792,2025-03-07T08:21:25.190678-08:00,1001.9478759765625,10.826831,10826.831 +2793,2025-03-07T08:21:36.023226-08:00,1002.0164184570312,10.832548,10832.548 +2794,2025-03-07T08:21:46.865898-08:00,1001.9833374023438,10.842672,10842.672 +2795,2025-03-07T08:21:57.701313-08:00,1002.003173828125,10.835415,10835.415 +2796,2025-03-07T08:22:08.539019-08:00,1001.9844360351562,10.837706,10837.706 +2797,2025-03-07T08:22:19.372579-08:00,1001.9857788085938,10.83356,10833.56 +2798,2025-03-07T08:22:30.199089-08:00,1002.0122680664062,10.82651,10826.51 +2799,2025-03-07T08:22:41.037166-08:00,1002.00146484375,10.838077,10838.077 +2800,2025-03-07T08:22:51.877077-08:00,1002.0158081054688,10.839911,10839.911 +2801,2025-03-07T08:23:02.707118-08:00,1001.9511108398438,10.830041,10830.041 +2802,2025-03-07T08:23:13.540765-08:00,1002.00390625,10.833647,10833.647 +2803,2025-03-07T08:23:24.366340-08:00,1001.9774780273438,10.825575,10825.575 +2804,2025-03-07T08:23:35.203821-08:00,1001.9576416015625,10.837481,10837.481 +2805,2025-03-07T08:23:46.038083-08:00,1001.9720458984375,10.834262,10834.262 +2806,2025-03-07T08:23:56.873154-08:00,1001.986572265625,10.835071,10835.071 +2807,2025-03-07T08:24:07.703070-08:00,1001.986572265625,10.829916,10829.916 +2808,2025-03-07T08:24:18.544246-08:00,1001.9678344726562,10.841176,10841.176 +2809,2025-03-07T08:24:29.373743-08:00,1001.9570922851562,10.829497,10829.497 +2810,2025-03-07T08:24:40.217006-08:00,1001.950439453125,10.843263,10843.263 +2811,2025-03-07T08:24:51.042366-08:00,1001.9981079101562,10.82536,10825.36 +2812,2025-03-07T08:25:01.877762-08:00,1002.0057983398438,10.835396,10835.396 +2813,2025-03-07T08:25:12.711050-08:00,1002.0335693359375,10.833288,10833.288 +2814,2025-03-07T08:25:23.544766-08:00,1002.0016479492188,10.833716,10833.716 +2815,2025-03-07T08:25:34.377082-08:00,1001.9818725585938,10.832316,10832.316 +2816,2025-03-07T08:25:45.214724-08:00,1001.9685668945312,10.837642,10837.642 +2817,2025-03-07T08:25:56.050767-08:00,1001.9985961914062,10.836043,10836.043 +2818,2025-03-07T08:26:06.887011-08:00,1001.9603271484375,10.836244,10836.244 +2819,2025-03-07T08:26:17.725527-08:00,1001.9812622070312,10.838516,10838.516 +2820,2025-03-07T08:26:28.559943-08:00,1001.98779296875,10.834416,10834.416 +2821,2025-03-07T08:26:39.400107-08:00,1002.00244140625,10.840164,10840.164 +2822,2025-03-07T08:26:50.233896-08:00,1001.998291015625,10.833789,10833.789 +2823,2025-03-07T08:27:01.057767-08:00,1001.9784545898438,10.823871,10823.871 +2824,2025-03-07T08:27:11.896899-08:00,1001.972900390625,10.839132,10839.132 +2825,2025-03-07T08:27:22.738881-08:00,1001.9940795898438,10.841982,10841.982 +2826,2025-03-07T08:27:33.572049-08:00,1001.95556640625,10.833168,10833.168 +2827,2025-03-07T08:27:44.413030-08:00,1001.984375,10.840981,10840.981 +2828,2025-03-07T08:27:55.250997-08:00,1001.993408203125,10.837967,10837.967 +2829,2025-03-07T08:28:06.086026-08:00,1001.9659423828125,10.835029,10835.029 +2830,2025-03-07T08:28:16.915811-08:00,1001.9749755859375,10.829785,10829.785 +2831,2025-03-07T08:28:27.745160-08:00,1001.97607421875,10.829349,10829.349 +2832,2025-03-07T08:28:38.585066-08:00,1001.9816284179688,10.839906,10839.906 +2833,2025-03-07T08:28:49.420021-08:00,1001.9893798828125,10.834955,10834.955 +2834,2025-03-07T08:29:00.247778-08:00,1002.0050048828125,10.827757,10827.757 +2835,2025-03-07T08:29:11.090428-08:00,1001.9862670898438,10.84265,10842.65 +2836,2025-03-07T08:29:21.914192-08:00,1001.96533203125,10.823764,10823.764 +2837,2025-03-07T08:29:32.750277-08:00,1001.9876708984375,10.836085,10836.085 +2838,2025-03-07T08:29:43.592864-08:00,1001.9664306640625,10.842587,10842.587 +2839,2025-03-07T08:29:54.427760-08:00,1001.9953002929688,10.834896,10834.896 +2840,2025-03-07T08:30:05.270353-08:00,1001.9953002929688,10.842593,10842.593 +2841,2025-03-07T08:30:16.103763-08:00,1001.9991455078125,10.83341,10833.41 +2842,2025-03-07T08:30:26.938130-08:00,1001.97021484375,10.834367,10834.367 +2843,2025-03-07T08:30:37.777307-08:00,1001.9859619140625,10.839177,10839.177 +2844,2025-03-07T08:30:48.620757-08:00,1002.0067749023438,10.84345,10843.45 +2845,2025-03-07T08:30:59.450745-08:00,1001.9685668945312,10.829988,10829.988 +2846,2025-03-07T08:31:10.290354-08:00,1001.99609375,10.839609,10839.609 +2847,2025-03-07T08:31:21.125762-08:00,1002.0015869140625,10.835408,10835.408 +2848,2025-03-07T08:31:31.965155-08:00,1001.9762573242188,10.839393,10839.393 +2849,2025-03-07T08:31:42.792072-08:00,1002.0009155273438,10.826917,10826.917 +2850,2025-03-07T08:31:53.621307-08:00,1002.022216796875,10.829235,10829.235 +2851,2025-03-07T08:32:04.462107-08:00,1002.00341796875,10.8408,10840.8 +2852,2025-03-07T08:32:15.291808-08:00,1002.0232543945312,10.829701,10829.701 +2853,2025-03-07T08:32:26.123140-08:00,1002.0323486328125,10.831332,10831.332 +2854,2025-03-07T08:32:36.961549-08:00,1002.0245971679688,10.838409,10838.409 +2855,2025-03-07T08:32:47.796794-08:00,1002.0667114257812,10.835245,10835.245 +2856,2025-03-07T08:32:58.633095-08:00,1002.0621948242188,10.836301,10836.301 +2857,2025-03-07T08:33:09.467001-08:00,1002.0215454101562,10.833906,10833.906 +2858,2025-03-07T08:33:20.304158-08:00,1002.03466796875,10.837157,10837.157 +2859,2025-03-07T08:33:31.138015-08:00,1002.0250244140625,10.833857,10833.857 +2860,2025-03-07T08:33:41.971948-08:00,1002.0093994140625,10.833933,10833.933 +2861,2025-03-07T08:33:52.812023-08:00,1002.0119018554688,10.840075,10840.075 +2862,2025-03-07T08:34:03.642814-08:00,1002.004150390625,10.830791,10830.791 +2863,2025-03-07T08:34:14.486127-08:00,1002.0292358398438,10.843313,10843.313 +2864,2025-03-07T08:34:25.326119-08:00,1002.004150390625,10.839992,10839.992 +2865,2025-03-07T08:34:36.154991-08:00,1002.0292358398438,10.828872,10828.872 +2866,2025-03-07T08:34:46.998762-08:00,1002.0239868164062,10.843771,10843.771 +2867,2025-03-07T08:34:57.835767-08:00,1002.0239868164062,10.837005,10837.005 +2868,2025-03-07T08:35:08.671319-08:00,1002.0396728515625,10.835552,10835.552 +2869,2025-03-07T08:35:19.511809-08:00,1002.0476684570312,10.84049,10840.49 +2870,2025-03-07T08:35:30.345736-08:00,1002.02783203125,10.833927,10833.927 +2871,2025-03-07T08:35:41.181117-08:00,1002.0423583984375,10.835381,10835.381 +2872,2025-03-07T08:35:52.012798-08:00,1002.0357666015625,10.831681,10831.681 +2873,2025-03-07T08:36:02.837953-08:00,1002.0423583984375,10.825155,10825.155 +2874,2025-03-07T08:36:13.680788-08:00,1002.02783203125,10.842835,10842.835 +2875,2025-03-07T08:36:24.524066-08:00,1002.0448608398438,10.843278,10843.278 +2876,2025-03-07T08:36:35.355357-08:00,1002.0396728515625,10.831291,10831.291 +2877,2025-03-07T08:36:46.192764-08:00,1002.0834350585938,10.837407,10837.407 +2878,2025-03-07T08:36:57.028766-08:00,1002.0708618164062,10.836002,10836.002 +2879,2025-03-07T08:37:07.866852-08:00,1002.0339965820312,10.838086,10838.086 +2880,2025-03-07T08:37:18.694107-08:00,1002.0447387695312,10.827255,10827.255 +2881,2025-03-07T08:37:29.543070-08:00,1002.056884765625,10.848963,10848.963 +2882,2025-03-07T08:37:40.381243-08:00,1002.0610961914062,10.838173,10838.173 +2883,2025-03-07T08:37:51.217760-08:00,1002.054443359375,10.836517,10836.517 +2884,2025-03-07T08:38:02.049234-08:00,1002.1007080078125,10.831474,10831.474 +2885,2025-03-07T08:38:12.887030-08:00,1002.0767211914062,10.837796,10837.796 +2886,2025-03-07T08:38:23.718284-08:00,1002.0596923828125,10.831254,10831.254 +2887,2025-03-07T08:38:34.561999-08:00,1002.0718994140625,10.843715,10843.715 +2888,2025-03-07T08:38:45.398775-08:00,1002.0861206054688,10.836776,10836.776 +2889,2025-03-07T08:38:56.236765-08:00,1002.05859375,10.83799,10837.99 +2890,2025-03-07T08:39:07.070121-08:00,1002.0861206054688,10.833356,10833.356 +2891,2025-03-07T08:39:17.912432-08:00,1002.0940551757812,10.842311,10842.311 +2892,2025-03-07T08:39:28.745758-08:00,1002.0875244140625,10.833326,10833.326 +2893,2025-03-07T08:39:39.580068-08:00,1002.04638671875,10.83431,10834.31 +2894,2025-03-07T08:39:50.415008-08:00,1002.0784301757812,10.83494,10834.94 +2895,2025-03-07T08:40:01.258017-08:00,1002.0742797851562,10.843009,10843.009 +2896,2025-03-07T08:40:12.097875-08:00,1002.0819702148438,10.839858,10839.858 +2897,2025-03-07T08:40:22.930933-08:00,1002.0753173828125,10.833058,10833.058 +2898,2025-03-07T08:40:33.767136-08:00,1002.0621948242188,10.836203,10836.203 +2899,2025-03-07T08:40:44.611904-08:00,1002.0809326171875,10.844768,10844.768 +2900,2025-03-07T08:40:55.454258-08:00,1002.0687255859375,10.842354,10842.354 +2901,2025-03-07T08:41:06.281262-08:00,1002.0554809570312,10.827004,10827.004 +2902,2025-03-07T08:41:17.124769-08:00,1002.0687255859375,10.843507,10843.507 +2903,2025-03-07T08:41:27.967614-08:00,1002.088623046875,10.842845,10842.845 +2904,2025-03-07T08:41:38.804006-08:00,1002.0742797851562,10.836392,10836.392 +2905,2025-03-07T08:41:49.648550-08:00,1002.0742797851562,10.844544,10844.544 +2906,2025-03-07T08:42:00.474809-08:00,1002.0662231445312,10.826259,10826.259 +2907,2025-03-07T08:42:11.311765-08:00,1002.0850219726562,10.836956,10836.956 +2908,2025-03-07T08:42:22.151946-08:00,1002.0861206054688,10.840181,10840.181 +2909,2025-03-07T08:42:32.985794-08:00,1002.0850219726562,10.833848,10833.848 +2910,2025-03-07T08:42:43.822769-08:00,1002.0718994140625,10.836975,10836.975 +2911,2025-03-07T08:42:54.665842-08:00,1002.0968627929688,10.843073,10843.073 +2912,2025-03-07T08:43:05.500796-08:00,1002.0968627929688,10.834954,10834.954 +2913,2025-03-07T08:43:16.340764-08:00,1002.1090698242188,10.839968,10839.968 +2914,2025-03-07T08:43:27.178814-08:00,1002.1130981445312,10.83805,10838.05 +2915,2025-03-07T08:43:38.012936-08:00,1002.1383056640625,10.834122,10834.122 +2916,2025-03-07T08:43:48.853988-08:00,1002.1162719726562,10.841052,10841.052 +2917,2025-03-07T08:43:59.697007-08:00,1002.1096801757812,10.843019,10843.019 +2918,2025-03-07T08:44:10.527764-08:00,1002.17578125,10.830757,10830.757 +2919,2025-03-07T08:44:21.370798-08:00,1002.12451171875,10.843034,10843.034 +2920,2025-03-07T08:44:32.211998-08:00,1002.2000122070312,10.8412,10841.2 +2921,2025-03-07T08:44:43.046147-08:00,1002.1634521484375,10.834149,10834.149 +2922,2025-03-07T08:44:53.884042-08:00,1002.1741943359375,10.837895,10837.895 +2923,2025-03-07T08:45:04.729764-08:00,1002.190185546875,10.845722,10845.722 +2924,2025-03-07T08:45:15.562132-08:00,1002.181396484375,10.832368,10832.368 +2925,2025-03-07T08:45:26.399751-08:00,1002.19873046875,10.837619,10837.619 +2926,2025-03-07T08:45:37.236768-08:00,1002.1765747070312,10.837017,10837.017 +2927,2025-03-07T08:45:48.071093-08:00,1002.1963500976562,10.834325,10834.325 +2928,2025-03-07T08:45:58.897391-08:00,1002.2106323242188,10.826298,10826.298 +2929,2025-03-07T08:46:09.739049-08:00,1002.161865234375,10.841658,10841.658 +2930,2025-03-07T08:46:20.576785-08:00,1002.1542358398438,10.837736,10837.736 +2931,2025-03-07T08:46:31.408766-08:00,1002.1806030273438,10.831981,10831.981 +2932,2025-03-07T08:46:42.240356-08:00,1002.200439453125,10.83159,10831.59 +2933,2025-03-07T08:46:53.082807-08:00,1002.159423828125,10.842451,10842.451 +2934,2025-03-07T08:47:03.923131-08:00,1002.1726684570312,10.840324,10840.324 +2935,2025-03-07T08:47:14.758340-08:00,1002.1726684570312,10.835209,10835.209 +2936,2025-03-07T08:47:25.588756-08:00,1002.1990356445312,10.830416,10830.416 +2937,2025-03-07T08:47:36.420766-08:00,1002.1715698242188,10.83201,10832.01 +2938,2025-03-07T08:47:47.258396-08:00,1002.17919921875,10.83763,10837.63 +2939,2025-03-07T08:47:58.088885-08:00,1002.17919921875,10.830489,10830.489 +2940,2025-03-07T08:48:08.930000-08:00,1002.1649780273438,10.841115,10841.115 +2941,2025-03-07T08:48:19.768664-08:00,1002.17919921875,10.838664,10838.664 +2942,2025-03-07T08:48:30.602760-08:00,1002.19140625,10.834096,10834.096 +2943,2025-03-07T08:48:41.444016-08:00,1002.2033081054688,10.841256,10841.256 +2944,2025-03-07T08:48:52.277806-08:00,1002.1966552734375,10.83379,10833.79 +2945,2025-03-07T08:49:03.117750-08:00,1002.2244262695312,10.839944,10839.944 +2946,2025-03-07T08:49:13.953979-08:00,1002.2033081054688,10.836229,10836.229 +2947,2025-03-07T08:49:24.796064-08:00,1002.2244262695312,10.842085,10842.085 +2948,2025-03-07T08:49:35.626913-08:00,1002.2268676757812,10.830849,10830.849 +2949,2025-03-07T08:49:46.458943-08:00,1002.23876953125,10.83203,10832.03 +2950,2025-03-07T08:49:57.285969-08:00,1002.1660766601562,10.827026,10827.026 +2951,2025-03-07T08:50:08.123940-08:00,1002.221435546875,10.837971,10837.971 +2952,2025-03-07T08:50:18.953002-08:00,1002.2203369140625,10.829062,10829.062 +2953,2025-03-07T08:50:29.784970-08:00,1002.1939086914062,10.831968,10831.968 +2954,2025-03-07T08:50:40.619045-08:00,1002.2203369140625,10.834075,10834.075 +2955,2025-03-07T08:50:51.450762-08:00,1002.2106323242188,10.831717,10831.717 +2956,2025-03-07T08:51:02.281731-08:00,1002.2095336914062,10.830969,10830.969 +2957,2025-03-07T08:51:13.110160-08:00,1002.2238159179688,10.828429,10828.429 +2958,2025-03-07T08:51:23.944521-08:00,1002.23291015625,10.834361,10834.361 +2959,2025-03-07T08:51:34.777485-08:00,1002.19873046875,10.832964,10832.964 +2960,2025-03-07T08:51:45.618969-08:00,1002.2196655273438,10.841484,10841.484 +2961,2025-03-07T08:51:56.450637-08:00,1002.1932983398438,10.831668,10831.668 +2962,2025-03-07T08:52:07.284901-08:00,1002.2089233398438,10.834264,10834.264 +2963,2025-03-07T08:52:18.110063-08:00,1002.1716918945312,10.825162,10825.162 +2964,2025-03-07T08:52:28.950761-08:00,1002.1651611328125,10.840698,10840.698 +2965,2025-03-07T08:52:39.778928-08:00,1002.1716918945312,10.828167,10828.167 +2966,2025-03-07T08:52:50.608005-08:00,1002.1741943359375,10.829077,10829.077 +2967,2025-03-07T08:53:01.450775-08:00,1002.181884765625,10.84277,10842.77 +2968,2025-03-07T08:53:12.285101-08:00,1002.1478271484375,10.834326,10834.326 +2969,2025-03-07T08:53:23.116765-08:00,1002.177734375,10.831664,10831.664 +2970,2025-03-07T08:53:33.954262-08:00,1002.1461181640625,10.837497,10837.497 +2971,2025-03-07T08:53:44.779049-08:00,1002.1196899414062,10.824787,10824.787 +2972,2025-03-07T08:53:55.605905-08:00,1002.1551513671875,10.826856,10826.856 +2973,2025-03-07T08:54:06.430756-08:00,1002.1378173828125,10.824851,10824.851 +2974,2025-03-07T08:54:17.266350-08:00,1002.1298217773438,10.835594,10835.594 +2975,2025-03-07T08:54:28.094992-08:00,1002.1322631835938,10.828642,10828.642 +2976,2025-03-07T08:54:38.927765-08:00,1002.1016235351562,10.832773,10832.773 +2977,2025-03-07T08:54:49.758840-08:00,1002.1214599609375,10.831075,10831.075 +2978,2025-03-07T08:55:00.580077-08:00,1002.1406860351562,10.821237,10821.237 +2979,2025-03-07T08:55:11.421367-08:00,1002.120849609375,10.84129,10841.29 +2980,2025-03-07T08:55:22.253103-08:00,1002.1115112304688,10.831736,10831.736 +2981,2025-03-07T08:55:33.078945-08:00,1002.1365356445312,10.825842,10825.842 +2982,2025-03-07T08:55:43.917068-08:00,1002.1493530273438,10.838123,10838.123 +2983,2025-03-07T08:55:54.742037-08:00,1002.1504516601562,10.824969,10824.969 +2984,2025-03-07T08:56:05.572768-08:00,1002.1397094726562,10.830731,10830.731 +2985,2025-03-07T08:56:16.401071-08:00,1002.1658325195312,10.828303,10828.303 +2986,2025-03-07T08:56:27.239751-08:00,1002.1470947265625,10.83868,10838.68 +2987,2025-03-07T08:56:38.066139-08:00,1002.1836547851562,10.826388,10826.388 +2988,2025-03-07T08:56:48.898092-08:00,1002.171875,10.831953,10831.953 +2989,2025-03-07T08:56:59.725992-08:00,1002.1690673828125,10.8279,10827.9 +2990,2025-03-07T08:57:10.557839-08:00,1002.163818359375,10.831847,10831.847 +2991,2025-03-07T08:57:21.391064-08:00,1002.1607666015625,10.833225,10833.225 +2992,2025-03-07T08:57:32.223756-08:00,1002.1937255859375,10.832692,10832.692 +2993,2025-03-07T08:57:43.055023-08:00,1002.1381225585938,10.831267,10831.267 +2994,2025-03-07T08:57:53.886050-08:00,1002.1670532226562,10.831027,10831.027 +2995,2025-03-07T08:58:04.717844-08:00,1002.1771850585938,10.831794,10831.794 +2996,2025-03-07T08:58:15.549444-08:00,1002.1771850585938,10.8316,10831.6 +2997,2025-03-07T08:58:26.371765-08:00,1002.1489868164062,10.822321,10822.321 +2998,2025-03-07T08:58:37.213752-08:00,1002.1489868164062,10.841987,10841.987 +2999,2025-03-07T08:58:48.037743-08:00,1002.176513671875,10.823991,10823.991 +3000,2025-03-07T08:58:58.881989-08:00,1002.1539306640625,10.844246,10844.246 +3001,2025-03-07T08:59:09.708257-08:00,1002.1629638671875,10.826268,10826.268 +3002,2025-03-07T08:59:20.541769-08:00,1002.1654052734375,10.833512,10833.512 +3003,2025-03-07T08:59:31.382772-08:00,1002.1663818359375,10.841003,10841.003 +3004,2025-03-07T08:59:42.215097-08:00,1002.1612548828125,10.832325,10832.325 +3005,2025-03-07T08:59:53.040397-08:00,1002.1448364257812,10.8253,10825.3 +3006,2025-03-07T09:00:03.880047-08:00,1002.1790771484375,10.83965,10839.65 +3007,2025-03-07T09:00:14.709764-08:00,1002.1408081054688,10.829717,10829.717 +3008,2025-03-07T09:00:25.547103-08:00,1002.1497802734375,10.837339,10837.339 +3009,2025-03-07T09:00:36.385034-08:00,1002.1177978515625,10.837931,10837.931 +3010,2025-03-07T09:00:47.218952-08:00,1002.1310424804688,10.833918,10833.918 +3011,2025-03-07T09:00:58.048830-08:00,1002.1111450195312,10.829878,10829.878 +3012,2025-03-07T09:01:08.880024-08:00,1002.1334228515625,10.831194,10831.194 +3013,2025-03-07T09:01:19.711339-08:00,1002.1414184570312,10.831315,10831.315 +3014,2025-03-07T09:01:30.543772-08:00,1002.1571044921875,10.832433,10832.433 +3015,2025-03-07T09:01:41.386825-08:00,1002.1317138671875,10.843053,10843.053 +3016,2025-03-07T09:01:52.217242-08:00,1002.1185302734375,10.830417,10830.417 +3017,2025-03-07T09:02:03.049286-08:00,1002.1685791015625,10.832044,10832.044 +3018,2025-03-07T09:02:13.882082-08:00,1002.1275634765625,10.832796,10832.796 +3019,2025-03-07T09:02:24.714755-08:00,1002.1300048828125,10.832673,10832.673 +3020,2025-03-07T09:02:35.555782-08:00,1002.1300048828125,10.841027,10841.027 +3021,2025-03-07T09:02:46.389017-08:00,1002.1060180664062,10.833235,10833.235 +3022,2025-03-07T09:02:57.221764-08:00,1002.1404418945312,10.832747,10832.747 +3023,2025-03-07T09:03:08.052052-08:00,1002.1348266601562,10.830288,10830.288 +3024,2025-03-07T09:03:18.882759-08:00,1002.1492309570312,10.830707,10830.707 +3025,2025-03-07T09:03:29.727804-08:00,1002.14501953125,10.845045,10845.045 +3026,2025-03-07T09:03:40.563087-08:00,1002.1408081054688,10.835283,10835.283 +3027,2025-03-07T09:03:51.400000-08:00,1002.1422119140625,10.836913,10836.913 +3028,2025-03-07T09:04:02.233018-08:00,1002.1342163085938,10.833018,10833.018 +3029,2025-03-07T09:04:13.064202-08:00,1002.1234130859375,10.831184,10831.184 +3030,2025-03-07T09:04:23.890061-08:00,1002.1300048828125,10.825859,10825.859 +3031,2025-03-07T09:04:34.716756-08:00,1002.1512451171875,10.826695,10826.695 +3032,2025-03-07T09:04:45.549765-08:00,1002.1272583007812,10.833009,10833.009 +3033,2025-03-07T09:04:56.385722-08:00,1002.1349487304688,10.835957,10835.957 +3034,2025-03-07T09:05:07.219045-08:00,1002.1349487304688,10.833323,10833.323 +3035,2025-03-07T09:05:18.055043-08:00,1002.1296997070312,10.835998,10835.998 +3036,2025-03-07T09:05:28.882755-08:00,1002.1231079101562,10.827712,10827.712 +3037,2025-03-07T09:05:39.742267-08:00,1002.1387329101562,10.859512,10859.512 +3038,2025-03-07T09:05:50.575467-08:00,1002.15966796875,10.8332,10833.2 +3039,2025-03-07T09:06:01.405270-08:00,1002.1453247070312,10.829803,10829.803 +3040,2025-03-07T09:06:12.248750-08:00,1002.14892578125,10.84348,10843.48 +3041,2025-03-07T09:06:23.080305-08:00,1002.177734375,10.831555,10831.555 +3042,2025-03-07T09:06:33.916267-08:00,1002.1224365234375,10.835962,10835.962 +3043,2025-03-07T09:06:44.743388-08:00,1002.1843872070312,10.827121,10827.121 +3044,2025-03-07T09:06:55.577496-08:00,1002.1721801757812,10.834108,10834.108 +3045,2025-03-07T09:07:06.420928-08:00,1002.1656494140625,10.843432,10843.432 +3046,2025-03-07T09:07:17.251268-08:00,1002.1404418945312,10.83034,10830.34 +3047,2025-03-07T09:07:28.082515-08:00,1002.1470947265625,10.831247,10831.247 +3048,2025-03-07T09:07:38.914139-08:00,1002.1812744140625,10.831624,10831.624 +3049,2025-03-07T09:07:49.746270-08:00,1002.1571655273438,10.832131,10832.131 +3050,2025-03-07T09:08:00.577714-08:00,1002.1704711914062,10.831444,10831.444 +3051,2025-03-07T09:08:11.418259-08:00,1002.1043701171875,10.840545,10840.545 +3052,2025-03-07T09:08:22.251530-08:00,1002.1453857421875,10.833271,10833.271 +3053,2025-03-07T09:08:33.088064-08:00,1002.1453857421875,10.836534,10836.534 +3054,2025-03-07T09:08:43.924597-08:00,1002.1610717773438,10.836533,10836.533 +3055,2025-03-07T09:08:54.758173-08:00,1002.13330078125,10.833576,10833.576 +3056,2025-03-07T09:09:05.590270-08:00,1002.1345825195312,10.832097,10832.097 +3057,2025-03-07T09:09:16.426426-08:00,1002.1676635742188,10.836156,10836.156 +3058,2025-03-07T09:09:27.255514-08:00,1002.1687622070312,10.829088,10829.088 +3059,2025-03-07T09:09:38.098268-08:00,1002.170166015625,10.842754,10842.754 +3060,2025-03-07T09:09:48.933348-08:00,1002.1503295898438,10.83508,10835.08 +3061,2025-03-07T09:09:59.764243-08:00,1002.157958984375,10.830895,10830.895 +3062,2025-03-07T09:10:10.613514-08:00,1002.1976318359375,10.849271,10849.271 +3063,2025-03-07T09:10:21.446024-08:00,1002.1526489257812,10.83251,10832.51 +3064,2025-03-07T09:10:32.277448-08:00,1002.173583984375,10.831424,10831.424 +3065,2025-03-07T09:10:43.112295-08:00,1002.1749877929688,10.834847,10834.847 +3066,2025-03-07T09:10:53.952619-08:00,1002.176025390625,10.840324,10840.324 +3067,2025-03-07T09:11:04.795141-08:00,1002.21044921875,10.842522,10842.522 +3068,2025-03-07T09:11:15.628267-08:00,1002.2181396484375,10.833126,10833.126 +3069,2025-03-07T09:11:26.466166-08:00,1002.2048950195312,10.837899,10837.899 +3070,2025-03-07T09:11:37.295267-08:00,1002.197265625,10.829101,10829.101 +3071,2025-03-07T09:11:48.134261-08:00,1002.2271728515625,10.838994,10838.994 +3072,2025-03-07T09:11:58.970585-08:00,1002.2206420898438,10.836324,10836.324 +3073,2025-03-07T09:12:09.815266-08:00,1002.2257690429688,10.844681,10844.681 +3074,2025-03-07T09:12:20.652324-08:00,1002.1795043945312,10.837058,10837.058 +3075,2025-03-07T09:12:31.493520-08:00,1002.2271728515625,10.841196,10841.196 +3076,2025-03-07T09:12:42.327305-08:00,1002.2073364257812,10.833785,10833.785 +3077,2025-03-07T09:12:53.158434-08:00,1002.212646484375,10.831129,10831.129 +3078,2025-03-07T09:13:03.990360-08:00,1002.1994018554688,10.831926,10831.926 +3079,2025-03-07T09:13:14.828403-08:00,1002.2073364257812,10.838043,10838.043 +3080,2025-03-07T09:13:25.665273-08:00,1002.2084350585938,10.83687,10836.87 +3081,2025-03-07T09:13:36.502744-08:00,1002.2164306640625,10.837471,10837.471 +3082,2025-03-07T09:13:47.338258-08:00,1002.180908203125,10.835514,10835.514 +3083,2025-03-07T09:13:58.172590-08:00,1002.2084350585938,10.834332,10834.332 +3084,2025-03-07T09:14:09.002362-08:00,1002.2017822265625,10.829772,10829.772 +3085,2025-03-07T09:14:19.836660-08:00,1002.1900024414062,10.834298,10834.298 +3086,2025-03-07T09:14:30.668293-08:00,1002.2164306640625,10.831633,10831.633 +3087,2025-03-07T09:14:41.499088-08:00,1002.2164306640625,10.830795,10830.795 +3088,2025-03-07T09:14:52.342613-08:00,1002.2229614257812,10.843525,10843.525 +3089,2025-03-07T09:15:03.174243-08:00,1002.24951171875,10.83163,10831.63 +3090,2025-03-07T09:15:14.012268-08:00,1002.256103515625,10.838025,10838.025 +3091,2025-03-07T09:15:24.845589-08:00,1002.2693481445312,10.833321,10833.321 +3092,2025-03-07T09:15:35.690590-08:00,1002.228271484375,10.845001,10845.001 +3093,2025-03-07T09:15:46.528270-08:00,1002.2373657226562,10.83768,10837.68 +3094,2025-03-07T09:15:57.368346-08:00,1002.2206420898438,10.840076,10840.076 +3095,2025-03-07T09:16:08.208529-08:00,1002.2338256835938,10.840183,10840.183 +3096,2025-03-07T09:16:19.040235-08:00,1002.240478515625,10.831706,10831.706 +3097,2025-03-07T09:16:29.873432-08:00,1002.24560546875,10.833197,10833.197 +3098,2025-03-07T09:16:40.717313-08:00,1002.24560546875,10.843881,10843.881 +3099,2025-03-07T09:16:51.555265-08:00,1002.24462890625,10.837952,10837.952 +3100,2025-03-07T09:17:02.389902-08:00,1002.2435913085938,10.834637,10834.637 +3101,2025-03-07T09:17:13.234287-08:00,1002.2435913085938,10.844385,10844.385 +3102,2025-03-07T09:17:24.077269-08:00,1002.2345581054688,10.842982,10842.982 +3103,2025-03-07T09:17:34.910515-08:00,1002.2477416992188,10.833246,10833.246 +3104,2025-03-07T09:17:45.750613-08:00,1002.2477416992188,10.840098,10840.098 +3105,2025-03-07T09:17:56.582401-08:00,1002.2320556640625,10.831788,10831.788 +3106,2025-03-07T09:18:07.426266-08:00,1002.2373657226562,10.843865,10843.865 +3107,2025-03-07T09:18:18.257522-08:00,1002.25048828125,10.831256,10831.256 +3108,2025-03-07T09:18:29.095267-08:00,1002.2494506835938,10.837745,10837.745 +3109,2025-03-07T09:18:39.933762-08:00,1002.2271728515625,10.838495,10838.495 +3110,2025-03-07T09:18:50.768585-08:00,1002.236572265625,10.834823,10834.823 +3111,2025-03-07T09:19:01.608268-08:00,1002.2498168945312,10.839683,10839.683 +3112,2025-03-07T09:19:12.439946-08:00,1002.2564086914062,10.831678,10831.678 +3113,2025-03-07T09:19:23.282659-08:00,1002.233154296875,10.842713,10842.713 +3114,2025-03-07T09:19:34.115267-08:00,1002.2606201171875,10.832608,10832.608 +3115,2025-03-07T09:19:44.946906-08:00,1002.246337890625,10.831639,10831.639 +3116,2025-03-07T09:19:55.791449-08:00,1002.231689453125,10.844543,10844.543 +3117,2025-03-07T09:20:06.630387-08:00,1002.243896484375,10.838938,10838.938 +3118,2025-03-07T09:20:17.465046-08:00,1002.2703247070312,10.834659,10834.659 +3119,2025-03-07T09:20:28.291905-08:00,1002.2362670898438,10.826859,10826.859 +3120,2025-03-07T09:20:39.130544-08:00,1002.2257690429688,10.838639,10838.639 +3121,2025-03-07T09:20:49.966607-08:00,1002.2536010742188,10.836063,10836.063 +3122,2025-03-07T09:21:00.803366-08:00,1002.1968994140625,10.836759,10836.759 +3123,2025-03-07T09:21:11.634713-08:00,1002.2246704101562,10.831347,10831.347 +3124,2025-03-07T09:21:22.475002-08:00,1002.2222900390625,10.840289,10840.289 +3125,2025-03-07T09:21:30.873954-08:00,1002.2198486328125,8.398952,8398.952 +3126,2025-03-07T09:21:33.310927-08:00,1002.2142944335938,2.436973,2436.973 +3127,2025-03-07T09:21:44.141607-08:00,1002.2462768554688,10.83068,10830.68 +3128,2025-03-07T09:21:54.981429-08:00,1002.197509765625,10.839822,10839.822 +3129,2025-03-07T09:22:05.827398-08:00,1002.22265625,10.845969,10845.969 +3130,2025-03-07T09:22:16.665405-08:00,1002.2215576171875,10.838007,10838.007 +3131,2025-03-07T09:22:27.499488-08:00,1002.2177124023438,10.834083,10834.083 +3132,2025-03-07T09:22:38.342317-08:00,1002.1968994140625,10.842829,10842.829 +3133,2025-03-07T09:22:49.175070-08:00,1002.2190551757812,10.832753,10832.753 +3134,2025-03-07T09:23:00.007723-08:00,1002.2218627929688,10.832653,10832.653 +3135,2025-03-07T09:23:10.846262-08:00,1002.2218627929688,10.838539,10838.539 +3136,2025-03-07T09:23:21.680870-08:00,1002.260498046875,10.834608,10834.608 +3137,2025-03-07T09:23:32.513245-08:00,1002.2329711914062,10.832375,10832.375 +3138,2025-03-07T09:23:43.342271-08:00,1002.210693359375,10.829026,10829.026 +3139,2025-03-07T09:23:54.173230-08:00,1002.2305297851562,10.830959,10830.959 +3140,2025-03-07T09:24:05.010270-08:00,1002.2346801757812,10.83704,10837.04 +3141,2025-03-07T09:24:15.840881-08:00,1002.192626953125,10.830611,10830.611 +3142,2025-03-07T09:24:26.682264-08:00,1002.2190551757812,10.841383,10841.383 +3143,2025-03-07T09:24:37.516268-08:00,1002.19921875,10.834004,10834.004 +3144,2025-03-07T09:24:48.348533-08:00,1002.2176513671875,10.832265,10832.265 +3145,2025-03-07T09:24:59.181582-08:00,1002.23095703125,10.833049,10833.049 +3146,2025-03-07T09:25:10.011872-08:00,1002.23095703125,10.83029,10830.29 +3147,2025-03-07T09:25:20.845268-08:00,1002.2086181640625,10.833396,10833.396 +3148,2025-03-07T09:25:31.681524-08:00,1002.2193603515625,10.836256,10836.256 +3149,2025-03-07T09:25:42.506500-08:00,1002.2193603515625,10.824976,10824.976 +3150,2025-03-07T09:25:53.330645-08:00,1002.2249755859375,10.824145,10824.145 +3151,2025-03-07T09:26:04.162263-08:00,1002.2092895507812,10.831618,10831.618 +3152,2025-03-07T09:26:15.000494-08:00,1002.2145385742188,10.838231,10838.231 +3153,2025-03-07T09:26:25.832352-08:00,1002.2134399414062,10.831858,10831.858 +3154,2025-03-07T09:26:36.664503-08:00,1002.2120361328125,10.832151,10832.151 +3155,2025-03-07T09:26:47.496701-08:00,1002.2267456054688,10.832198,10832.198 +3156,2025-03-07T09:26:58.326578-08:00,1002.219970703125,10.829877,10829.877 +3157,2025-03-07T09:27:09.148318-08:00,1002.204345703125,10.82174,10821.74 +3158,2025-03-07T09:27:19.974618-08:00,1002.1876831054688,10.8263,10826.3 +3159,2025-03-07T09:27:30.807239-08:00,1002.1810913085938,10.832621,10832.621 +3160,2025-03-07T09:27:41.638780-08:00,1002.2217407226562,10.831541,10831.541 +3161,2025-03-07T09:27:52.474558-08:00,1002.19287109375,10.835778,10835.778 +3162,2025-03-07T09:28:03.306463-08:00,1002.224853515625,10.831905,10831.905 +3163,2025-03-07T09:28:14.140315-08:00,1002.2234497070312,10.833852,10833.852 +3164,2025-03-07T09:28:24.971264-08:00,1002.2168579101562,10.830949,10830.949 +3165,2025-03-07T09:28:35.801266-08:00,1002.222412109375,10.830002,10830.002 +3166,2025-03-07T09:28:46.634928-08:00,1002.2290649414062,10.833662,10833.662 +3167,2025-03-07T09:28:57.467548-08:00,1002.2276611328125,10.83262,10832.62 +3168,2025-03-07T09:29:08.285254-08:00,1002.2474975585938,10.817706,10817.706 +3169,2025-03-07T09:29:19.119256-08:00,1002.2384643554688,10.834002,10834.002 +3170,2025-03-07T09:29:29.950296-08:00,1002.2109375,10.83104,10831.04 +3171,2025-03-07T09:29:40.780625-08:00,1002.2506103515625,10.830329,10830.329 +3172,2025-03-07T09:29:51.619861-08:00,1002.262451171875,10.839236,10839.236 +3173,2025-03-07T09:30:02.453241-08:00,1002.215087890625,10.83338,10833.38 +3174,2025-03-07T09:30:13.288109-08:00,1002.2467041015625,10.834868,10834.868 +3175,2025-03-07T09:30:24.119622-08:00,1002.2335205078125,10.831513,10831.513 +3176,2025-03-07T09:30:34.951268-08:00,1002.24560546875,10.831646,10831.646 +3177,2025-03-07T09:30:45.783343-08:00,1002.2245483398438,10.832075,10832.075 +3178,2025-03-07T09:30:56.614420-08:00,1002.2245483398438,10.831077,10831.077 +3179,2025-03-07T09:31:07.446534-08:00,1002.2564086914062,10.832114,10832.114 +3180,2025-03-07T09:31:18.276261-08:00,1002.22998046875,10.829727,10829.727 +3181,2025-03-07T09:31:29.099060-08:00,1002.21435546875,10.822799,10822.799 +3182,2025-03-07T09:31:39.934263-08:00,1002.2421875,10.835203,10835.203 +3183,2025-03-07T09:31:50.771516-08:00,1002.19091796875,10.837253,10837.253 +3184,2025-03-07T09:32:01.599344-08:00,1002.2118530273438,10.827828,10827.828 +3185,2025-03-07T09:32:12.440273-08:00,1002.2198486328125,10.840929,10840.929 +3186,2025-03-07T09:32:23.268850-08:00,1002.233154296875,10.828577,10828.577 +3187,2025-03-07T09:32:34.107265-08:00,1002.216064453125,10.838415,10838.415 +3188,2025-03-07T09:32:44.934580-08:00,1002.2174072265625,10.827315,10827.315 +3189,2025-03-07T09:32:55.766342-08:00,1002.23486328125,10.831762,10831.762 +3190,2025-03-07T09:33:06.596611-08:00,1002.229248046875,10.830269,10830.269 +3191,2025-03-07T09:33:17.427466-08:00,1002.2413940429688,10.830855,10830.855 +3192,2025-03-07T09:33:28.254572-08:00,1002.23486328125,10.827106,10827.106 +3193,2025-03-07T09:33:39.079304-08:00,1002.2532958984375,10.824732,10824.732 +3194,2025-03-07T09:33:49.911720-08:00,1002.267822265625,10.832416,10832.416 +3195,2025-03-07T09:34:00.739245-08:00,1002.1937255859375,10.827525,10827.525 +3196,2025-03-07T09:34:11.574320-08:00,1002.211181640625,10.835075,10835.075 +3197,2025-03-07T09:34:22.415683-08:00,1002.2574462890625,10.841363,10841.363 +3198,2025-03-07T09:34:33.239241-08:00,1002.2796630859375,10.823558,10823.558 +3199,2025-03-07T09:34:44.073597-08:00,1002.239013671875,10.834356,10834.356 +3200,2025-03-07T09:34:54.901491-08:00,1002.2442016601562,10.827894,10827.894 +3201,2025-03-07T09:35:05.744814-08:00,1002.24169921875,10.843323,10843.323 +3202,2025-03-07T09:35:16.572310-08:00,1002.2852172851562,10.827496,10827.496 +3203,2025-03-07T09:35:27.408267-08:00,1002.236572265625,10.835957,10835.957 +3204,2025-03-07T09:35:38.245798-08:00,1002.2167358398438,10.837531,10837.531 +3205,2025-03-07T09:35:49.070470-08:00,1002.237548828125,10.824672,10824.672 +3206,2025-03-07T09:35:59.903554-08:00,1002.2431030273438,10.833084,10833.084 +3207,2025-03-07T09:36:10.730261-08:00,1002.26953125,10.826707,10826.707 +3208,2025-03-07T09:36:21.567609-08:00,1002.2681274414062,10.837348,10837.348 +3209,2025-03-07T09:36:32.395243-08:00,1002.2483520507812,10.827634,10827.634 +3210,2025-03-07T09:36:43.229281-08:00,1002.21533203125,10.834038,10834.038 +3211,2025-03-07T09:36:54.055263-08:00,1002.2351684570312,10.825982,10825.982 +3212,2025-03-07T09:37:04.891402-08:00,1002.237548828125,10.836139,10836.139 +3213,2025-03-07T09:37:15.725264-08:00,1002.2431030273438,10.833862,10833.862 +3214,2025-03-07T09:37:26.556330-08:00,1002.2640380859375,10.831066,10831.066 +3215,2025-03-07T09:37:37.399458-08:00,1002.2574462890625,10.843128,10843.128 +3216,2025-03-07T09:37:48.231693-08:00,1002.2507934570312,10.832235,10832.235 +3217,2025-03-07T09:37:59.075314-08:00,1002.2442016601562,10.843621,10843.621 +3218,2025-03-07T09:38:09.904462-08:00,1002.252197265625,10.829148,10829.148 +3219,2025-03-07T09:38:20.736264-08:00,1002.23095703125,10.831802,10831.802 +3220,2025-03-07T09:38:31.570407-08:00,1002.2706298828125,10.834143,10834.143 +3221,2025-03-07T09:38:42.391408-08:00,1002.262939453125,10.821001,10821.001 +3222,2025-03-07T09:38:53.227655-08:00,1002.262939453125,10.836247,10836.247 +3223,2025-03-07T09:39:04.064696-08:00,1002.2960205078125,10.837041,10837.041 +3224,2025-03-07T09:39:14.893476-08:00,1002.2970581054688,10.82878,10828.78 +3225,2025-03-07T09:39:25.728585-08:00,1002.3157958984375,10.835109,10835.109 +3226,2025-03-07T09:39:36.560300-08:00,1002.3290405273438,10.831715,10831.715 +3227,2025-03-07T09:39:47.393701-08:00,1002.3265380859375,10.833401,10833.401 +3228,2025-03-07T09:39:58.223260-08:00,1002.346435546875,10.829559,10829.559 +3229,2025-03-07T09:40:09.054270-08:00,1002.3739013671875,10.83101,10831.01 +3230,2025-03-07T09:40:19.886330-08:00,1002.3607177734375,10.83206,10832.06 +3231,2025-03-07T09:40:30.711844-08:00,1002.3739013671875,10.825514,10825.514 +3232,2025-03-07T09:40:41.538775-08:00,1002.3951416015625,10.826931,10826.931 +3233,2025-03-07T09:40:52.377389-08:00,1002.3781127929688,10.838614,10838.614 +3234,2025-03-07T09:41:03.214611-08:00,1002.372802734375,10.837222,10837.222 +3235,2025-03-07T09:41:14.040270-08:00,1002.33984375,10.825659,10825.659 +3236,2025-03-07T09:41:24.876382-08:00,1002.3436889648438,10.836112,10836.112 +3237,2025-03-07T09:41:35.707532-08:00,1002.3648681640625,10.83115,10831.15 +3238,2025-03-07T09:41:46.543328-08:00,1002.3436889648438,10.835796,10835.796 +3239,2025-03-07T09:41:57.367405-08:00,1002.3781127929688,10.824077,10824.077 +3240,2025-03-07T09:42:08.203631-08:00,1002.3634643554688,10.836226,10836.226 +3241,2025-03-07T09:42:19.034374-08:00,1002.35546875,10.830743,10830.743 +3242,2025-03-07T09:42:29.855269-08:00,1002.389892578125,10.820895,10820.895 +3243,2025-03-07T09:42:40.690932-08:00,1002.4138793945312,10.835663,10835.663 +3244,2025-03-07T09:42:51.521483-08:00,1002.39404296875,10.830551,10830.551 +3245,2025-03-07T09:43:02.352104-08:00,1002.35546875,10.830621,10830.621 +3246,2025-03-07T09:43:13.184457-08:00,1002.361083984375,10.832353,10832.353 +3247,2025-03-07T09:43:24.015536-08:00,1002.4215698242188,10.831079,10831.079 +3248,2025-03-07T09:43:34.846268-08:00,1002.4017333984375,10.830732,10830.732 +3249,2025-03-07T09:43:45.683638-08:00,1002.346435546875,10.83737,10837.37 +3250,2025-03-07T09:43:56.515412-08:00,1002.3442993164062,10.831774,10831.774 +3251,2025-03-07T09:44:07.353268-08:00,1002.3574829101562,10.837856,10837.856 +3252,2025-03-07T09:44:18.184796-08:00,1002.3509521484375,10.831528,10831.528 +3253,2025-03-07T09:44:29.029039-08:00,1002.3596801757812,10.844243,10844.243 +3254,2025-03-07T09:44:39.864264-08:00,1002.3574829101562,10.835225,10835.225 +3255,2025-03-07T09:44:50.704498-08:00,1002.3585815429688,10.840234,10840.234 +3256,2025-03-07T09:45:01.540264-08:00,1002.3651733398438,10.835766,10835.766 +3257,2025-03-07T09:45:12.379268-08:00,1002.3311157226562,10.839004,10839.004 +3258,2025-03-07T09:45:23.209462-08:00,1002.3662719726562,10.830194,10830.194 +3259,2025-03-07T09:45:34.053305-08:00,1002.3178100585938,10.843843,10843.843 +3260,2025-03-07T09:45:44.892199-08:00,1002.324462890625,10.838894,10838.894 +3261,2025-03-07T09:45:55.722531-08:00,1002.324462890625,10.830332,10830.332 +3262,2025-03-07T09:46:06.558445-08:00,1002.3057250976562,10.835914,10835.914 +3263,2025-03-07T09:46:17.403296-08:00,1002.3057250976562,10.844851,10844.851 +3264,2025-03-07T09:46:28.233585-08:00,1002.2715454101562,10.830289,10830.289 +3265,2025-03-07T09:46:39.065502-08:00,1002.3178100585938,10.831917,10831.917 +3266,2025-03-07T09:46:49.905392-08:00,1002.2848510742188,10.83989,10839.89 +3267,2025-03-07T09:47:00.751897-08:00,1002.3178100585938,10.846505,10846.505 +3268,2025-03-07T09:47:11.596334-08:00,1002.3178100585938,10.844437,10844.437 +3269,2025-03-07T09:47:22.440259-08:00,1002.299072265625,10.843925,10843.925 +3270,2025-03-07T09:47:33.279245-08:00,1002.324462890625,10.838986,10838.986 +3271,2025-03-07T09:47:44.125272-08:00,1002.3322143554688,10.846027,10846.027 +3272,2025-03-07T09:47:54.967566-08:00,1002.3596801757812,10.842294,10842.294 +3273,2025-03-07T09:48:05.809699-08:00,1002.3214111328125,10.842133,10842.133 +3274,2025-03-07T09:48:16.646261-08:00,1002.346435546875,10.836562,10836.562 +3275,2025-03-07T09:48:27.495380-08:00,1002.3861083984375,10.849119,10849.119 +3276,2025-03-07T09:48:38.341620-08:00,1002.39404296875,10.84624,10846.24 +3277,2025-03-07T09:48:49.183287-08:00,1002.36767578125,10.841667,10841.667 +3278,2025-03-07T09:49:00.032940-08:00,1002.3728637695312,10.849653,10849.653 +3279,2025-03-07T09:49:10.869402-08:00,1002.39404296875,10.836462,10836.462 +3280,2025-03-07T09:49:21.712587-08:00,1002.4097900390625,10.843185,10843.185 +3281,2025-03-07T09:49:32.559509-08:00,1002.4017333984375,10.846922,10846.922 +3282,2025-03-07T09:49:43.398345-08:00,1002.39794921875,10.838836,10838.836 +3283,2025-03-07T09:49:54.244263-08:00,1002.3886108398438,10.845918,10845.918 +3284,2025-03-07T09:50:05.084259-08:00,1002.3819580078125,10.839996,10839.996 +3285,2025-03-07T09:50:15.929219-08:00,1002.39794921875,10.84496,10844.96 +3286,2025-03-07T09:50:26.768992-08:00,1002.3781127929688,10.839773,10839.773 +3287,2025-03-07T09:50:37.613268-08:00,1002.42578125,10.844276,10844.276 +3288,2025-03-07T09:50:48.455557-08:00,1002.3781127929688,10.842289,10842.289 +3289,2025-03-07T09:50:59.293572-08:00,1002.3687744140625,10.838015,10838.015 +3290,2025-03-07T09:51:10.130714-08:00,1002.3781127929688,10.837142,10837.142 +3291,2025-03-07T09:51:20.976345-08:00,1002.400390625,10.845631,10845.631 +3292,2025-03-07T09:51:31.819390-08:00,1002.4400024414062,10.843045,10843.045 +3293,2025-03-07T09:51:42.662280-08:00,1002.4215698242188,10.84289,10842.89 +3294,2025-03-07T09:51:53.503701-08:00,1002.38720703125,10.841421,10841.421 +3295,2025-03-07T09:52:04.354262-08:00,1002.4070434570312,10.850561,10850.561 +3296,2025-03-07T09:52:15.195324-08:00,1002.400390625,10.841062,10841.062 +3297,2025-03-07T09:52:26.032348-08:00,1002.3937377929688,10.837024,10837.024 +3298,2025-03-07T09:52:36.877850-08:00,1002.420166015625,10.845502,10845.502 +3299,2025-03-07T09:52:47.712370-08:00,1002.4059448242188,10.83452,10834.52 +3300,2025-03-07T09:52:58.556395-08:00,1002.4017333984375,10.844025,10844.025 +3301,2025-03-07T09:53:09.397365-08:00,1002.47314453125,10.84097,10840.97 +3302,2025-03-07T09:53:20.237829-08:00,1002.4466552734375,10.840464,10840.464 +3303,2025-03-07T09:53:31.074247-08:00,1002.4226684570312,10.836418,10836.418 +3304,2025-03-07T09:53:41.917518-08:00,1002.4215698242188,10.843271,10843.271 +3305,2025-03-07T09:53:52.768268-08:00,1002.4268188476562,10.85075,10850.75 +3306,2025-03-07T09:54:03.609566-08:00,1002.4623413085938,10.841298,10841.298 +3307,2025-03-07T09:54:14.442258-08:00,1002.42919921875,10.832692,10832.692 +3308,2025-03-07T09:54:25.284570-08:00,1002.4358520507812,10.842312,10842.312 +3309,2025-03-07T09:54:36.128969-08:00,1002.409423828125,10.844399,10844.399 +3310,2025-03-07T09:54:46.960514-08:00,1002.4439086914062,10.831545,10831.545 +3311,2025-03-07T09:54:57.801458-08:00,1002.4556884765625,10.840944,10840.944 +3312,2025-03-07T09:55:08.646262-08:00,1002.4425048828125,10.844804,10844.804 +3313,2025-03-07T09:55:19.494415-08:00,1002.4612426757812,10.848153,10848.153 +3314,2025-03-07T09:55:30.333314-08:00,1002.5086059570312,10.838899,10838.899 +3315,2025-03-07T09:55:41.175503-08:00,1002.4678344726562,10.842189,10842.189 +3316,2025-03-07T09:55:52.013070-08:00,1002.4623413085938,10.837567,10837.567 +3317,2025-03-07T09:56:02.864126-08:00,1002.4755249023438,10.851056,10851.056 +3318,2025-03-07T09:56:13.697499-08:00,1002.4810791015625,10.833373,10833.373 +3319,2025-03-07T09:56:24.542257-08:00,1002.482177734375,10.844758,10844.758 +3320,2025-03-07T09:56:35.391266-08:00,1002.4862670898438,10.849009,10849.009 +3321,2025-03-07T09:56:46.231336-08:00,1002.4664916992188,10.84007,10840.07 +3322,2025-03-07T09:56:57.084320-08:00,1002.5086059570312,10.852984,10852.984 +3323,2025-03-07T09:57:07.926141-08:00,1002.5217895507812,10.841821,10841.821 +3324,2025-03-07T09:57:18.764263-08:00,1002.48876953125,10.838122,10838.122 +3325,2025-03-07T09:57:29.607270-08:00,1002.5349731445312,10.843007,10843.007 +3326,2025-03-07T09:57:40.451400-08:00,1002.52734375,10.84413,10844.13 +3327,2025-03-07T09:57:51.301389-08:00,1002.5548706054688,10.849989,10849.989 +3328,2025-03-07T09:58:02.147001-08:00,1002.5259399414062,10.845612,10845.612 +3329,2025-03-07T09:58:12.991259-08:00,1002.47314453125,10.844258,10844.258 +3330,2025-03-07T09:58:23.834269-08:00,1002.5471801757812,10.84301,10843.01 +3331,2025-03-07T09:58:34.686315-08:00,1002.51513671875,10.852046,10852.046 +3332,2025-03-07T09:58:45.531529-08:00,1002.4953002929688,10.845214,10845.214 +3333,2025-03-07T09:58:56.374310-08:00,1002.5217895507812,10.842781,10842.781 +3334,2025-03-07T09:59:07.219311-08:00,1002.5217895507812,10.845001,10845.001 +3335,2025-03-07T09:59:18.060257-08:00,1002.51513671875,10.840946,10840.946 +3336,2025-03-07T09:59:28.904255-08:00,1002.4943237304688,10.843998,10843.998 +3337,2025-03-07T09:59:39.746755-08:00,1002.4953002929688,10.8425,10842.5 +3338,2025-03-07T09:59:50.590172-08:00,1002.506103515625,10.843417,10843.417 +3339,2025-03-07T10:00:01.443763-08:00,1002.5392456054688,10.853591,10853.591 +3340,2025-03-07T10:00:12.286256-08:00,1002.5537719726562,10.842493,10842.493 +3341,2025-03-07T10:00:23.135257-08:00,1002.5694580078125,10.849001,10849.001 +3342,2025-03-07T10:00:33.975302-08:00,1002.533935546875,10.840045,10840.045 +3343,2025-03-07T10:00:44.826266-08:00,1002.57470703125,10.850964,10850.964 +3344,2025-03-07T10:00:55.674587-08:00,1002.5614013671875,10.848321,10848.321 +3345,2025-03-07T10:01:06.519798-08:00,1002.5217895507812,10.845211,10845.211 +3346,2025-03-07T10:01:17.361256-08:00,1002.5416259765625,10.841458,10841.458 +3347,2025-03-07T10:01:28.208521-08:00,1002.536376953125,10.847265,10847.265 +3348,2025-03-07T10:01:39.053594-08:00,1002.5614013671875,10.845073,10845.073 +3349,2025-03-07T10:01:49.898457-08:00,1002.5562744140625,10.844863,10844.863 +3350,2025-03-07T10:02:00.740520-08:00,1002.51513671875,10.842063,10842.063 +3351,2025-03-07T10:02:11.589261-08:00,1002.5349731445312,10.848741,10848.741 +3352,2025-03-07T10:02:22.441254-08:00,1002.5086059570312,10.851993,10851.993 +3353,2025-03-07T10:02:33.287241-08:00,1002.5603637695312,10.845987,10845.987 +3354,2025-03-07T10:02:44.127269-08:00,1002.5165405273438,10.840028,10840.028 +3355,2025-03-07T10:02:54.978302-08:00,1002.5217895507812,10.851033,10851.033 +3356,2025-03-07T10:03:05.817594-08:00,1002.536376953125,10.839292,10839.292 +3357,2025-03-07T10:03:16.658501-08:00,1002.5242309570312,10.840907,10840.907 +3358,2025-03-07T10:03:27.503267-08:00,1002.5298461914062,10.844766,10844.766 +3359,2025-03-07T10:03:38.355505-08:00,1002.5653076171875,10.852238,10852.238 +3360,2025-03-07T10:03:49.194397-08:00,1002.5496215820312,10.838892,10838.892 +3361,2025-03-07T10:04:00.047407-08:00,1002.5639038085938,10.85301,10853.01 +3362,2025-03-07T10:04:10.893026-08:00,1002.5298461914062,10.845619,10845.619 +3363,2025-03-07T10:04:21.740263-08:00,1002.5496215820312,10.847237,10847.237 +3364,2025-03-07T10:04:32.575538-08:00,1002.5308837890625,10.835275,10835.275 +3365,2025-03-07T10:04:43.426265-08:00,1002.5242309570312,10.850727,10850.727 +3366,2025-03-07T10:04:54.265549-08:00,1002.54296875,10.839284,10839.284 +3367,2025-03-07T10:05:05.112822-08:00,1002.5284423828125,10.847273,10847.273 +3368,2025-03-07T10:05:15.955378-08:00,1002.5165405273438,10.842556,10842.556 +3369,2025-03-07T10:05:26.799363-08:00,1002.523193359375,10.843985,10843.985 +3370,2025-03-07T10:05:37.627082-08:00,1002.533935546875,10.827719,10827.719 +3371,2025-03-07T10:05:48.470967-08:00,1002.5482788085938,10.843885,10843.885 +3372,2025-03-07T10:05:59.326388-08:00,1002.5496215820312,10.855421,10855.421 +3373,2025-03-07T10:06:10.168300-08:00,1002.5308837890625,10.841912,10841.912 +3374,2025-03-07T10:06:21.008764-08:00,1002.536376953125,10.840464,10840.464 +3375,2025-03-07T10:06:31.847968-08:00,1002.5165405273438,10.839204,10839.204 +3376,2025-03-07T10:06:42.696770-08:00,1002.52734375,10.848802,10848.802 +3377,2025-03-07T10:06:53.544374-08:00,1002.5416259765625,10.847604,10847.604 +3378,2025-03-07T10:07:04.388091-08:00,1002.5482788085938,10.843717,10843.717 +3379,2025-03-07T10:07:15.232769-08:00,1002.533935546875,10.844678,10844.678 +3380,2025-03-07T10:07:26.087822-08:00,1002.5284423828125,10.855053,10855.053 +3381,2025-03-07T10:07:36.925765-08:00,1002.5009155273438,10.837943,10837.943 +3382,2025-03-07T10:07:47.778053-08:00,1002.5457763671875,10.852288,10852.288 +3383,2025-03-07T10:07:58.624083-08:00,1002.5589599609375,10.84603,10846.03 +3384,2025-03-07T10:08:09.465929-08:00,1002.5722045898438,10.841846,10841.846 +3385,2025-03-07T10:08:20.314765-08:00,1002.578857421875,10.848836,10848.836 +3386,2025-03-07T10:08:31.159822-08:00,1002.5670166015625,10.845057,10845.057 +3387,2025-03-07T10:08:42.009766-08:00,1002.578857421875,10.849944,10849.944 +3388,2025-03-07T10:08:52.849055-08:00,1002.5645141601562,10.839289,10839.289 +3389,2025-03-07T10:09:03.702767-08:00,1002.618408203125,10.853712,10853.712 +3390,2025-03-07T10:09:14.553774-08:00,1002.5631103515625,10.851007,10851.007 +3391,2025-03-07T10:09:25.402045-08:00,1002.592041015625,10.848271,10848.271 +3392,2025-03-07T10:09:36.243931-08:00,1002.5843505859375,10.841886,10841.886 +3393,2025-03-07T10:09:47.091760-08:00,1002.62646484375,10.847829,10847.829 +3394,2025-03-07T10:09:57.931012-08:00,1002.60107421875,10.839252,10839.252 +3395,2025-03-07T10:10:08.770894-08:00,1002.5909423828125,10.839882,10839.882 +3396,2025-03-07T10:10:19.623301-08:00,1002.592041015625,10.852407,10852.407 +3397,2025-03-07T10:10:30.453230-08:00,1002.5975952148438,10.829929,10829.929 +3398,2025-03-07T10:10:41.293770-08:00,1002.6052856445312,10.84054,10840.54 +3399,2025-03-07T10:10:52.134330-08:00,1002.5986938476562,10.84056,10840.56 +3400,2025-03-07T10:11:02.979796-08:00,1002.6052856445312,10.845466,10845.466 +3401,2025-03-07T10:11:13.814828-08:00,1002.5843505859375,10.835032,10835.032 +3402,2025-03-07T10:11:24.646119-08:00,1002.5975952148438,10.831291,10831.291 +3403,2025-03-07T10:11:35.495091-08:00,1002.592041015625,10.848972,10848.972 +3404,2025-03-07T10:11:46.331827-08:00,1002.619873046875,10.836736,10836.736 +3405,2025-03-07T10:11:57.172013-08:00,1002.6052856445312,10.840186,10840.186 +3406,2025-03-07T10:12:08.014943-08:00,1002.5801391601562,10.84293,10842.93 +3407,2025-03-07T10:12:18.853910-08:00,1002.5656127929688,10.838967,10838.967 +3408,2025-03-07T10:12:29.699014-08:00,1002.6118774414062,10.845104,10845.104 +3409,2025-03-07T10:12:40.535202-08:00,1002.58544921875,10.836188,10836.188 +3410,2025-03-07T10:12:51.377104-08:00,1002.578857421875,10.841902,10841.902 +3411,2025-03-07T10:13:02.221255-08:00,1002.5934448242188,10.844151,10844.151 +3412,2025-03-07T10:13:13.051013-08:00,1002.6355590820312,10.829758,10829.758 +3413,2025-03-07T10:13:23.894106-08:00,1002.592041015625,10.843093,10843.093 +3414,2025-03-07T10:13:34.727770-08:00,1002.60107421875,10.833664,10833.664 +3415,2025-03-07T10:13:45.567835-08:00,1002.5999755859375,10.840065,10840.065 +3416,2025-03-07T10:13:56.410890-08:00,1002.6066284179688,10.843055,10843.055 +3417,2025-03-07T10:14:07.254510-08:00,1002.6024780273438,10.84362,10843.62 +3418,2025-03-07T10:14:18.090975-08:00,1002.5801391601562,10.836465,10836.465 +3419,2025-03-07T10:14:28.926919-08:00,1002.5656127929688,10.835944,10835.944 +3420,2025-03-07T10:14:39.769217-08:00,1002.5603637695312,10.842298,10842.298 +3421,2025-03-07T10:14:50.614104-08:00,1002.5457763671875,10.844887,10844.887 +3422,2025-03-07T10:15:01.451001-08:00,1002.5801391601562,10.836897,10836.897 +3423,2025-03-07T10:15:12.300945-08:00,1002.5537719726562,10.849944,10849.944 +3424,2025-03-07T10:15:23.141880-08:00,1002.5670166015625,10.840935,10840.935 +3425,2025-03-07T10:15:33.976770-08:00,1002.5523681640625,10.83489,10834.89 +3426,2025-03-07T10:15:44.813272-08:00,1002.5761108398438,10.836502,10836.502 +3427,2025-03-07T10:15:55.659917-08:00,1002.5670166015625,10.846645,10846.645 +3428,2025-03-07T10:16:06.494810-08:00,1002.568115234375,10.834893,10834.893 +3429,2025-03-07T10:16:17.332593-08:00,1002.5537719726562,10.837783,10837.783 +3430,2025-03-07T10:16:28.167804-08:00,1002.54052734375,10.835211,10835.211 +3431,2025-03-07T10:16:39.012218-08:00,1002.54052734375,10.844414,10844.414 +3432,2025-03-07T10:16:49.844008-08:00,1002.5614013671875,10.83179,10831.79 +3433,2025-03-07T10:17:00.685752-08:00,1002.5496215820312,10.841744,10841.744 +3434,2025-03-07T10:17:11.531088-08:00,1002.5670166015625,10.845336,10845.336 +3435,2025-03-07T10:17:22.377722-08:00,1002.5826416015625,10.846634,10846.634 +3436,2025-03-07T10:17:33.214746-08:00,1002.568115234375,10.837024,10837.024 +3437,2025-03-07T10:17:44.056175-08:00,1002.5812377929688,10.841429,10841.429 +3438,2025-03-07T10:17:54.902205-08:00,1002.5639038085938,10.84603,10846.03 +3439,2025-03-07T10:18:05.736768-08:00,1002.57470703125,10.834563,10834.563 +3440,2025-03-07T10:18:16.575995-08:00,1002.5694580078125,10.839227,10839.227 +3441,2025-03-07T10:18:27.419088-08:00,1002.57470703125,10.843093,10843.093 +3442,2025-03-07T10:18:38.252813-08:00,1002.5772094726562,10.833725,10833.725 +3443,2025-03-07T10:18:49.094624-08:00,1002.5826416015625,10.841811,10841.811 +3444,2025-03-07T10:18:59.927149-08:00,1002.5482788085938,10.832525,10832.525 +3445,2025-03-07T10:19:10.769766-08:00,1002.5761108398438,10.842617,10842.617 +3446,2025-03-07T10:19:21.604762-08:00,1002.5826416015625,10.834996,10834.996 +3447,2025-03-07T10:19:32.433372-08:00,1002.5562744140625,10.82861,10828.61 +3448,2025-03-07T10:19:43.276816-08:00,1002.5694580078125,10.843444,10843.444 +3449,2025-03-07T10:19:54.107096-08:00,1002.5628051757812,10.83028,10830.28 +3450,2025-03-07T10:20:04.942309-08:00,1002.5482788085938,10.835213,10835.213 +3451,2025-03-07T10:20:15.786765-08:00,1002.523193359375,10.844456,10844.456 +3452,2025-03-07T10:20:26.622473-08:00,1002.5284423828125,10.835708,10835.708 +3453,2025-03-07T10:20:37.459346-08:00,1002.5416259765625,10.836873,10836.873 +3454,2025-03-07T10:20:48.300785-08:00,1002.5020141601562,10.841439,10841.439 +3455,2025-03-07T10:20:59.143066-08:00,1002.5349731445312,10.842281,10842.281 +3456,2025-03-07T10:21:09.986875-08:00,1002.5140380859375,10.843809,10843.809 +3457,2025-03-07T10:21:20.830112-08:00,1002.5496215820312,10.843237,10843.237 +3458,2025-03-07T10:21:31.673256-08:00,1002.5009155273438,10.843144,10843.144 +3459,2025-03-07T10:21:42.514765-08:00,1002.5416259765625,10.841509,10841.509 +3460,2025-03-07T10:21:53.358982-08:00,1002.51513671875,10.844217,10844.217 +3461,2025-03-07T10:22:04.202419-08:00,1002.5298461914062,10.843437,10843.437 +3462,2025-03-07T10:22:15.045104-08:00,1002.5325927734375,10.842685,10842.685 +3463,2025-03-07T10:22:25.875939-08:00,1002.533935546875,10.830835,10830.835 +3464,2025-03-07T10:22:36.723950-08:00,1002.51513671875,10.848011,10848.011 +3465,2025-03-07T10:22:47.574751-08:00,1002.5086059570312,10.850801,10850.801 +3466,2025-03-07T10:22:58.418832-08:00,1002.4943237304688,10.844081,10844.081 +3467,2025-03-07T10:23:09.259467-08:00,1002.5614013671875,10.840635,10840.635 +3468,2025-03-07T10:23:20.092824-08:00,1002.5284423828125,10.833357,10833.357 +3469,2025-03-07T10:23:30.945744-08:00,1002.5086059570312,10.85292,10852.92 +3470,2025-03-07T10:23:41.789767-08:00,1002.533935546875,10.844023,10844.023 +3471,2025-03-07T10:23:52.623019-08:00,1002.5298461914062,10.833252,10833.252 +3472,2025-03-07T10:24:03.469753-08:00,1002.5009155273438,10.846734,10846.734 +3473,2025-03-07T10:24:14.307044-08:00,1002.5298461914062,10.837291,10837.291 +3474,2025-03-07T10:24:25.151090-08:00,1002.5507202148438,10.844046,10844.046 +3475,2025-03-07T10:24:35.996228-08:00,1002.523193359375,10.845138,10845.138 +3476,2025-03-07T10:24:46.840843-08:00,1002.536376953125,10.844615,10844.615 +3477,2025-03-07T10:24:57.679886-08:00,1002.533935546875,10.839043,10839.043 +3478,2025-03-07T10:25:08.522807-08:00,1002.5086059570312,10.842921,10842.921 +3479,2025-03-07T10:25:15.315741-08:00,1002.520751953125,6.792934,6792.934 +3480,2025-03-07T10:25:19.364120-08:00,1002.5284423828125,4.048379,4048.379 +3481,2025-03-07T10:25:30.207813-08:00,1002.5217895507812,10.843693,10843.693 +3482,2025-03-07T10:25:41.040771-08:00,1002.533935546875,10.832958,10832.958 +3483,2025-03-07T10:25:51.882822-08:00,1002.5075073242188,10.842051,10842.051 +3484,2025-03-07T10:26:02.727096-08:00,1002.5548706054688,10.844274,10844.274 +3485,2025-03-07T10:26:13.565769-08:00,1002.5548706054688,10.838673,10838.673 +3486,2025-03-07T10:26:24.408230-08:00,1002.5670166015625,10.842461,10842.461 +3487,2025-03-07T10:26:35.246057-08:00,1002.5349731445312,10.837827,10837.827 +3488,2025-03-07T10:26:46.075882-08:00,1002.5548706054688,10.829825,10829.825 +3489,2025-03-07T10:26:56.924044-08:00,1002.5670166015625,10.848162,10848.162 +3490,2025-03-07T10:27:07.758051-08:00,1002.5537719726562,10.834007,10834.007 +3491,2025-03-07T10:27:18.599496-08:00,1002.54052734375,10.841445,10841.445 +3492,2025-03-07T10:27:29.439765-08:00,1002.54052734375,10.840269,10840.269 +3493,2025-03-07T10:27:40.287761-08:00,1002.5868530273438,10.847996,10847.996 +3494,2025-03-07T10:27:51.124382-08:00,1002.5432739257812,10.836621,10836.621 +3495,2025-03-07T10:28:01.966986-08:00,1002.5670166015625,10.842604,10842.604 +3496,2025-03-07T10:28:12.810849-08:00,1002.5656127929688,10.843863,10843.863 +3497,2025-03-07T10:28:23.653769-08:00,1002.5670166015625,10.84292,10842.92 +3498,2025-03-07T10:28:34.496086-08:00,1002.5999755859375,10.842317,10842.317 +3499,2025-03-07T10:28:45.350523-08:00,1002.5457763671875,10.854437,10854.437 +3500,2025-03-07T10:28:56.180018-08:00,1002.61328125,10.829495,10829.495 +3501,2025-03-07T10:29:07.016655-08:00,1002.5999755859375,10.836637,10836.637 +3502,2025-03-07T10:29:17.862156-08:00,1002.58544921875,10.845501,10845.501 +3503,2025-03-07T10:29:28.699104-08:00,1002.5711059570312,10.836948,10836.948 +3504,2025-03-07T10:29:39.533906-08:00,1002.592041015625,10.834802,10834.802 +3505,2025-03-07T10:29:50.377104-08:00,1002.5909423828125,10.843198,10843.198 +3506,2025-03-07T10:30:01.222025-08:00,1002.63720703125,10.844921,10844.921 +3507,2025-03-07T10:30:12.050767-08:00,1002.618408203125,10.828742,10828.742 +3508,2025-03-07T10:30:22.892772-08:00,1002.617431640625,10.842005,10842.005 +3509,2025-03-07T10:30:33.737057-08:00,1002.604248046875,10.844285,10844.285 +3510,2025-03-07T10:30:44.578953-08:00,1002.604248046875,10.841896,10841.896 +3511,2025-03-07T10:30:55.410942-08:00,1002.604248046875,10.831989,10831.989 +3512,2025-03-07T10:31:06.250121-08:00,1002.604248046875,10.839179,10839.179 +3513,2025-03-07T10:31:17.095521-08:00,1002.6052856445312,10.8454,10845.4 +3514,2025-03-07T10:31:38.773768-08:00,1002.630615234375,21.678247,21678.247 +3515,2025-03-07T10:31:49.614159-08:00,1002.602783203125,10.840391,10840.391 +3516,2025-03-07T10:32:00.447019-08:00,1002.6013793945312,10.83286,10832.86 +3517,2025-03-07T10:32:11.291770-08:00,1002.5670166015625,10.844751,10844.751 +3518,2025-03-07T10:32:22.134112-08:00,1002.6226806640625,10.842342,10842.342 +3519,2025-03-07T10:32:32.972746-08:00,1002.6160278320312,10.838634,10838.634 +3520,2025-03-07T10:32:43.807075-08:00,1002.58154296875,10.834329,10834.329 +3521,2025-03-07T10:32:54.646769-08:00,1002.6013793945312,10.839694,10839.694 +3522,2025-03-07T10:33:05.494071-08:00,1002.6358642578125,10.847302,10847.302 +3523,2025-03-07T10:33:16.325011-08:00,1002.6331176757812,10.83094,10830.94 +3524,2025-03-07T10:33:27.172756-08:00,1002.5923461914062,10.847745,10847.745 +3525,2025-03-07T10:33:38.012222-08:00,1002.5899047851562,10.839466,10839.466 +3526,2025-03-07T10:33:48.845373-08:00,1002.5491943359375,10.833151,10833.151 +3527,2025-03-07T10:33:59.680001-08:00,1002.60205078125,10.834628,10834.628 +3528,2025-03-07T10:34:10.528769-08:00,1002.6031494140625,10.848768,10848.768 +3529,2025-03-07T10:34:21.362812-08:00,1002.6138916015625,10.834043,10834.043 +3530,2025-03-07T10:34:32.209812-08:00,1002.5940551757812,10.847,10847.0 +3531,2025-03-07T10:34:43.048889-08:00,1002.6113891601562,10.839077,10839.077 +3532,2025-03-07T10:34:53.891117-08:00,1002.5784301757812,10.842228,10842.228 +3533,2025-03-07T10:35:04.740484-08:00,1002.6113891601562,10.849367,10849.367 +3534,2025-03-07T10:35:15.578003-08:00,1002.61279296875,10.837519,10837.519 +3535,2025-03-07T10:35:26.419921-08:00,1002.5626831054688,10.841918,10841.918 +3536,2025-03-07T10:35:37.249312-08:00,1002.591552734375,10.829391,10829.391 +3537,2025-03-07T10:35:48.088293-08:00,1002.6048583984375,10.838981,10838.981 +3538,2025-03-07T10:35:58.926773-08:00,1002.5957641601562,10.83848,10838.48 +3539,2025-03-07T10:36:09.768893-08:00,1002.6023559570312,10.84212,10842.12 +3540,2025-03-07T10:36:20.598846-08:00,1002.6378173828125,10.829953,10829.953 +3541,2025-03-07T10:36:31.432139-08:00,1002.6246948242188,10.833293,10833.293 +3542,2025-03-07T10:36:42.263976-08:00,1002.56689453125,10.831837,10831.837 +3543,2025-03-07T10:36:53.105818-08:00,1002.630126953125,10.841842,10841.842 +3544,2025-03-07T10:37:03.950566-08:00,1002.6113891601562,10.844748,10844.748 +3545,2025-03-07T10:37:14.783221-08:00,1002.58251953125,10.832655,10832.655 +3546,2025-03-07T10:37:25.626769-08:00,1002.6458740234375,10.843548,10843.548 +3547,2025-03-07T10:37:36.466763-08:00,1002.6102905273438,10.839994,10839.994 +3548,2025-03-07T10:37:47.301218-08:00,1002.603759765625,10.834455,10834.455 +3549,2025-03-07T10:37:58.140352-08:00,1002.6102905273438,10.839134,10839.134 +3550,2025-03-07T10:38:08.981907-08:00,1002.59326171875,10.841555,10841.555 +3551,2025-03-07T10:38:19.827234-08:00,1002.6156005859375,10.845327,10845.327 +3552,2025-03-07T10:38:30.662371-08:00,1002.6235961914062,10.835137,10835.137 +3553,2025-03-07T10:38:41.501812-08:00,1002.62109375,10.839441,10839.441 +3554,2025-03-07T10:38:52.336029-08:00,1002.6113891601562,10.834217,10834.217 +3555,2025-03-07T10:39:03.167125-08:00,1002.6246948242188,10.831096,10831.096 +3556,2025-03-07T10:39:14.000814-08:00,1002.6576538085938,10.833689,10833.689 +3557,2025-03-07T10:39:24.846163-08:00,1002.6235961914062,10.845349,10845.349 +3558,2025-03-07T10:39:35.679766-08:00,1002.6235961914062,10.833603,10833.603 +3559,2025-03-07T10:39:46.512767-08:00,1002.60791015625,10.833001,10833.001 +3560,2025-03-07T10:39:57.352083-08:00,1002.6287231445312,10.839316,10839.316 +3561,2025-03-07T10:40:08.193206-08:00,1002.6590576171875,10.841123,10841.123 +3562,2025-03-07T10:40:19.033763-08:00,1002.6221923828125,10.840557,10840.557 +3563,2025-03-07T10:40:29.879012-08:00,1002.614501953125,10.845249,10845.249 +3564,2025-03-07T10:40:40.705769-08:00,1002.6277465820312,10.826757,10826.757 +3565,2025-03-07T10:40:51.542759-08:00,1002.6395263671875,10.83699,10836.99 +3566,2025-03-07T10:41:02.384747-08:00,1002.6395263671875,10.841988,10841.988 +3567,2025-03-07T10:41:13.217808-08:00,1002.6409301757812,10.833061,10833.061 +3568,2025-03-07T10:41:24.046069-08:00,1002.6395263671875,10.828261,10828.261 +3569,2025-03-07T10:41:34.889215-08:00,1002.5907592773438,10.843146,10843.146 +3570,2025-03-07T10:41:45.718991-08:00,1002.597412109375,10.829776,10829.776 +3571,2025-03-07T10:41:56.555770-08:00,1002.6263427734375,10.836779,10836.779 +3572,2025-03-07T10:42:07.394546-08:00,1002.597412109375,10.838776,10838.776 +3573,2025-03-07T10:42:18.239748-08:00,1002.5831298828125,10.845202,10845.202 +3574,2025-03-07T10:42:29.074239-08:00,1002.635986328125,10.834491,10834.491 +3575,2025-03-07T10:42:39.917083-08:00,1002.6492309570312,10.842844,10842.844 +3576,2025-03-07T10:42:50.745759-08:00,1002.6213989257812,10.828676,10828.676 +3577,2025-03-07T10:43:01.591037-08:00,1002.6345825195312,10.845278,10845.278 +3578,2025-03-07T10:43:12.422231-08:00,1002.6610717773438,10.831194,10831.194 +3579,2025-03-07T10:43:23.261764-08:00,1002.6412353515625,10.839533,10839.533 +3580,2025-03-07T10:43:34.099117-08:00,1002.6544799804688,10.837353,10837.353 +3581,2025-03-07T10:43:44.925996-08:00,1002.6544799804688,10.826879,10826.879 +3582,2025-03-07T10:43:55.760760-08:00,1002.6599731445312,10.834764,10834.764 +3583,2025-03-07T10:44:06.600331-08:00,1002.6345825195312,10.839571,10839.571 +3584,2025-03-07T10:44:17.437086-08:00,1002.6610717773438,10.836755,10836.755 +3585,2025-03-07T10:44:28.269758-08:00,1002.6453857421875,10.832672,10832.672 +3586,2025-03-07T10:44:39.111051-08:00,1002.6322021484375,10.841293,10841.293 +3587,2025-03-07T10:44:49.938757-08:00,1002.6520385742188,10.827706,10827.706 +3588,2025-03-07T10:45:00.768903-08:00,1002.6520385742188,10.830146,10830.146 +3589,2025-03-07T10:45:11.606073-08:00,1002.62451171875,10.83717,10837.17 +3590,2025-03-07T10:45:22.437761-08:00,1002.631103515625,10.831688,10831.688 +3591,2025-03-07T10:45:33.274037-08:00,1002.6231079101562,10.836276,10836.276 +3592,2025-03-07T10:45:44.124390-08:00,1002.6363525390625,10.850353,10850.353 +3593,2025-03-07T10:45:54.955769-08:00,1002.6495361328125,10.831379,10831.379 +3594,2025-03-07T10:46:05.799769-08:00,1002.6429443359375,10.844,10844.0 +3595,2025-03-07T10:46:16.627149-08:00,1002.6231079101562,10.82738,10827.38 +3596,2025-03-07T10:46:27.458934-08:00,1002.616455078125,10.831785,10831.785 +3597,2025-03-07T10:46:38.294237-08:00,1002.5956420898438,10.835303,10835.303 +3598,2025-03-07T10:46:49.125926-08:00,1002.5996704101562,10.831689,10831.689 +3599,2025-03-07T10:46:59.958355-08:00,1002.6154174804688,10.832429,10832.429 +3600,2025-03-07T10:47:10.800408-08:00,1002.6140747070312,10.842053,10842.053 +3601,2025-03-07T10:47:21.632053-08:00,1002.6007690429688,10.831645,10831.645 +3602,2025-03-07T10:47:32.464004-08:00,1002.58544921875,10.831951,10831.951 +3603,2025-03-07T10:47:43.291771-08:00,1002.5985717773438,10.827767,10827.767 +3604,2025-03-07T10:47:54.122352-08:00,1002.627197265625,10.830581,10830.581 +3605,2025-03-07T10:48:04.961355-08:00,1002.6063232421875,10.839003,10839.003 +3606,2025-03-07T10:48:15.790810-08:00,1002.6063232421875,10.829455,10829.455 +3607,2025-03-07T10:48:26.634411-08:00,1002.5972900390625,10.843601,10843.601 +3608,2025-03-07T10:48:37.470765-08:00,1002.618408203125,10.836354,10836.354 +3609,2025-03-07T10:48:48.306749-08:00,1002.5906372070312,10.835984,10835.984 +3610,2025-03-07T10:48:59.129762-08:00,1002.618408203125,10.823013,10823.013 +3611,2025-03-07T10:49:07.390043-08:00,1002.5840454101562,8.260281,8260.281 +3612,2025-03-07T10:49:09.966425-08:00,1002.6052856445312,2.576382,2576.382 +3613,2025-03-07T10:49:20.805220-08:00,1002.5829467773438,10.838795,10838.795 +3614,2025-03-07T10:49:31.630746-08:00,1002.6038818359375,10.825526,10825.526 +3615,2025-03-07T10:49:42.465046-08:00,1002.6118774414062,10.8343,10834.3 +3616,2025-03-07T10:49:53.299565-08:00,1002.59619140625,10.834519,10834.519 +3617,2025-03-07T10:50:04.125069-08:00,1002.5972900390625,10.825504,10825.504 +3618,2025-03-07T10:50:14.952755-08:00,1002.58154296875,10.827686,10827.686 +3619,2025-03-07T10:50:25.788781-08:00,1002.5697631835938,10.836026,10836.026 +3620,2025-03-07T10:50:36.621559-08:00,1002.576416015625,10.832778,10832.778 +3621,2025-03-07T10:50:47.447416-08:00,1002.5419311523438,10.825857,10825.857 +3622,2025-03-07T10:50:58.273860-08:00,1002.5499267578125,10.826444,10826.444 +3623,2025-03-07T10:51:09.109769-08:00,1002.55517578125,10.835909,10835.909 +3624,2025-03-07T10:51:19.952354-08:00,1002.5540771484375,10.842585,10842.585 +3625,2025-03-07T10:51:30.773184-08:00,1002.5739135742188,10.82083,10820.83 +3626,2025-03-07T10:51:41.605369-08:00,1002.559326171875,10.832185,10832.185 +3627,2025-03-07T10:51:52.447362-08:00,1002.568359375,10.841993,10841.993 +3628,2025-03-07T10:52:03.278045-08:00,1002.568359375,10.830683,10830.683 +3629,2025-03-07T10:52:14.111803-08:00,1002.5607299804688,10.833758,10833.758 +3630,2025-03-07T10:52:24.949769-08:00,1002.5053100585938,10.837966,10837.966 +3631,2025-03-07T10:52:35.789054-08:00,1002.5408325195312,10.839285,10839.285 +3632,2025-03-07T10:52:46.629130-08:00,1002.5673217773438,10.840076,10840.076 +3633,2025-03-07T10:52:57.460892-08:00,1002.5460815429688,10.831762,10831.762 +3634,2025-03-07T10:53:08.292074-08:00,1002.5449829101562,10.831182,10831.182 +3635,2025-03-07T10:53:19.131202-08:00,1002.5526733398438,10.839128,10839.128 +3636,2025-03-07T10:53:29.967742-08:00,1002.5172119140625,10.83654,10836.54 +3637,2025-03-07T10:53:40.807050-08:00,1002.525146484375,10.839308,10839.308 +3638,2025-03-07T10:53:51.630991-08:00,1002.572509765625,10.823941,10823.941 +3639,2025-03-07T10:54:02.470050-08:00,1002.5370483398438,10.839059,10839.059 +3640,2025-03-07T10:54:13.300761-08:00,1002.5648193359375,10.830711,10830.711 +3641,2025-03-07T10:54:24.141765-08:00,1002.5515747070312,10.841004,10841.004 +3642,2025-03-07T10:54:34.981114-08:00,1002.5714111328125,10.839349,10839.349 +3643,2025-03-07T10:54:45.811991-08:00,1002.5780639648438,10.830877,10830.877 +3644,2025-03-07T10:54:56.647090-08:00,1002.5780639648438,10.835099,10835.099 +3645,2025-03-07T10:55:07.481867-08:00,1002.5648193359375,10.834777,10834.777 +3646,2025-03-07T10:55:18.312758-08:00,1002.556884765625,10.830891,10830.891 +3647,2025-03-07T10:55:29.151464-08:00,1002.5582275390625,10.838706,10838.706 +3648,2025-03-07T10:55:39.980766-08:00,1002.5370483398438,10.829302,10829.302 +3649,2025-03-07T10:55:50.825519-08:00,1002.5857543945312,10.844753,10844.753 +3650,2025-03-07T10:56:01.663946-08:00,1002.556884765625,10.838427,10838.427 +3651,2025-03-07T10:56:12.500015-08:00,1002.556884765625,10.836069,10836.069 +3652,2025-03-07T10:56:23.333049-08:00,1002.5780639648438,10.833034,10833.034 +3653,2025-03-07T10:56:34.164334-08:00,1002.5756225585938,10.831285,10831.285 +3654,2025-03-07T10:56:45.005998-08:00,1002.57666015625,10.841664,10841.664 +3655,2025-03-07T10:56:55.848758-08:00,1002.58984375,10.84276,10842.76 +3656,2025-03-07T10:57:06.680174-08:00,1002.57666015625,10.831416,10831.416 +3657,2025-03-07T10:57:17.522959-08:00,1002.5953979492188,10.842785,10842.785 +3658,2025-03-07T10:57:28.359015-08:00,1002.5780639648438,10.836056,10836.056 +3659,2025-03-07T10:57:39.196463-08:00,1002.5557861328125,10.837448,10837.448 +3660,2025-03-07T10:57:50.032240-08:00,1002.583251953125,10.835777,10835.777 +3661,2025-03-07T10:58:00.874909-08:00,1002.5912475585938,10.842669,10842.669 +3662,2025-03-07T10:58:11.716764-08:00,1002.5756225585938,10.841855,10841.855 +3663,2025-03-07T10:58:22.548942-08:00,1002.583251953125,10.832178,10832.178 +3664,2025-03-07T10:58:33.387025-08:00,1002.5953979492188,10.838083,10838.083 +3665,2025-03-07T10:58:44.235764-08:00,1002.5978393554688,10.848739,10848.739 +3666,2025-03-07T10:58:55.070110-08:00,1002.5923461914062,10.834346,10834.346 +3667,2025-03-07T10:59:05.911763-08:00,1002.5978393554688,10.841653,10841.653 +3668,2025-03-07T10:59:16.748768-08:00,1002.5791625976562,10.837005,10837.005 +3669,2025-03-07T10:59:27.584028-08:00,1002.57666015625,10.83526,10835.26 +3670,2025-03-07T10:59:38.434951-08:00,1002.6055297851562,10.850923,10850.923 +3671,2025-03-07T10:59:49.271480-08:00,1002.598876953125,10.836529,10836.529 +3672,2025-03-07T11:00:00.113822-08:00,1002.6187744140625,10.842342,10842.342 +3673,2025-03-07T11:00:10.957789-08:00,1002.598876953125,10.843967,10843.967 +3674,2025-03-07T11:00:21.793969-08:00,1002.6055297851562,10.83618,10836.18 +3675,2025-03-07T11:00:32.624986-08:00,1002.6320190429688,10.831017,10831.017 +3676,2025-03-07T11:00:43.465366-08:00,1002.6320190429688,10.84038,10840.38 +3677,2025-03-07T11:00:54.306969-08:00,1002.6320190429688,10.841603,10841.603 +3678,2025-03-07T11:01:05.150769-08:00,1002.60693359375,10.8438,10843.8 +3679,2025-03-07T11:01:15.993772-08:00,1002.6187744140625,10.843003,10843.003 +3680,2025-03-07T11:01:26.839096-08:00,1002.5923461914062,10.845324,10845.324 +3681,2025-03-07T11:01:37.679801-08:00,1002.5857543945312,10.840705,10840.705 +3682,2025-03-07T11:01:48.511018-08:00,1002.6400146484375,10.831217,10831.217 +3683,2025-03-07T11:01:59.355198-08:00,1002.626708984375,10.84418,10844.18 +3684,2025-03-07T11:02:10.199053-08:00,1002.6333618164062,10.843855,10843.855 +3685,2025-03-07T11:02:21.038007-08:00,1002.6386108398438,10.838954,10838.954 +3686,2025-03-07T11:02:31.878865-08:00,1002.5923461914062,10.840858,10840.858 +3687,2025-03-07T11:02:42.715773-08:00,1002.6187744140625,10.836908,10836.908 +3688,2025-03-07T11:02:53.558357-08:00,1002.6598510742188,10.842584,10842.584 +3689,2025-03-07T11:03:04.400763-08:00,1002.6609497070312,10.842406,10842.406 +3690,2025-03-07T11:03:15.241763-08:00,1002.6476440429688,10.841,10841.0 +3691,2025-03-07T11:03:26.076346-08:00,1002.6333618164062,10.834583,10834.583 +3692,2025-03-07T11:03:36.915898-08:00,1002.6187744140625,10.839552,10839.552 +3693,2025-03-07T11:03:47.752739-08:00,1002.626708984375,10.836841,10836.841 +3694,2025-03-07T11:03:58.595552-08:00,1002.60693359375,10.842813,10842.813 +3695,2025-03-07T11:04:09.437018-08:00,1002.5804443359375,10.841466,10841.466 +3696,2025-03-07T11:04:20.275768-08:00,1002.59375,10.83875,10838.75 +3697,2025-03-07T11:04:31.113224-08:00,1002.6055297851562,10.837456,10837.456 +3698,2025-03-07T11:04:41.957145-08:00,1002.6358032226562,10.843921,10843.921 +3699,2025-03-07T11:04:52.794628-08:00,1002.6212768554688,10.837483,10837.483 +3700,2025-03-07T11:05:03.629821-08:00,1002.6079711914062,10.835193,10835.193 +3701,2025-03-07T11:05:14.468075-08:00,1002.5870971679688,10.838254,10838.254 +3702,2025-03-07T11:05:25.304899-08:00,1002.6344604492188,10.836824,10836.824 +3703,2025-03-07T11:05:36.193904-08:00,1002.6013793945312,10.889005,10889.005 +3704,2025-03-07T11:05:47.028790-08:00,1002.59375,10.834886,10834.886 +3705,2025-03-07T11:05:57.864677-08:00,1002.5673217773438,10.835887,10835.887 +3706,2025-03-07T11:06:08.700025-08:00,1002.5673217773438,10.835348,10835.348 +3707,2025-03-07T11:06:19.537566-08:00,1002.5617065429688,10.837541,10837.541 +3708,2025-03-07T11:06:30.380651-08:00,1002.5804443359375,10.843085,10843.085 +3709,2025-03-07T11:06:41.214660-08:00,1002.59619140625,10.834009,10834.009 +3710,2025-03-07T11:06:52.055070-08:00,1002.5697631835938,10.84041,10840.41 +3711,2025-03-07T11:07:02.900788-08:00,1002.572509765625,10.845718,10845.718 +3712,2025-03-07T11:07:13.731766-08:00,1002.5829467773438,10.830978,10830.978 +3713,2025-03-07T11:07:24.573707-08:00,1002.5673217773438,10.841941,10841.941 +3714,2025-03-07T11:07:35.407440-08:00,1002.5829467773438,10.833733,10833.733 +3715,2025-03-07T11:07:46.237649-08:00,1002.58154296875,10.830209,10830.209 +3716,2025-03-07T11:07:57.075676-08:00,1002.5829467773438,10.838027,10838.027 +3717,2025-03-07T11:08:07.914771-08:00,1002.5631103515625,10.839095,10839.095 +3718,2025-03-07T11:08:18.760647-08:00,1002.5906372070312,10.845876,10845.876 +3719,2025-03-07T11:08:29.602021-08:00,1002.57080078125,10.841374,10841.374 +3720,2025-03-07T11:08:40.442077-08:00,1002.5419311523438,10.840056,10840.056 +3721,2025-03-07T11:08:51.282651-08:00,1002.5154418945312,10.840574,10840.574 +3722,2025-03-07T11:09:02.119884-08:00,1002.548583984375,10.837233,10837.233 +3723,2025-03-07T11:09:12.960460-08:00,1002.58544921875,10.840576,10840.576 +3724,2025-03-07T11:09:23.792652-08:00,1002.537841796875,10.832192,10832.192 +3725,2025-03-07T11:09:34.634714-08:00,1002.5565795898438,10.842062,10842.062 +3726,2025-03-07T11:09:45.467921-08:00,1002.55517578125,10.833207,10833.207 +3727,2025-03-07T11:09:56.305969-08:00,1002.5775146484375,10.838048,10838.048 +3728,2025-03-07T11:10:07.129967-08:00,1002.576416015625,10.823998,10823.998 +3729,2025-03-07T11:10:17.966628-08:00,1002.5750122070312,10.836661,10836.661 +3730,2025-03-07T11:10:28.795046-08:00,1002.5829467773438,10.828418,10828.418 +3731,2025-03-07T11:10:39.634460-08:00,1002.58154296875,10.839414,10839.414 +3732,2025-03-07T11:10:50.477650-08:00,1002.58154296875,10.84319,10843.19 +3733,2025-03-07T11:11:01.314878-08:00,1002.602783203125,10.837228,10837.228 +3734,2025-03-07T11:11:12.143073-08:00,1002.59619140625,10.828195,10828.195 +3735,2025-03-07T11:11:22.988645-08:00,1002.5499267578125,10.845572,10845.572 +3736,2025-03-07T11:11:33.829700-08:00,1002.59619140625,10.841055,10841.055 +3737,2025-03-07T11:11:44.673834-08:00,1002.568359375,10.844134,10844.134 +3738,2025-03-07T11:11:55.504652-08:00,1002.5829467773438,10.830818,10830.818 +3739,2025-03-07T11:12:06.336647-08:00,1002.5972900390625,10.831995,10831.995 +3740,2025-03-07T11:12:17.179972-08:00,1002.5739135742188,10.843325,10843.325 +3741,2025-03-07T11:12:28.011885-08:00,1002.5673217773438,10.831913,10831.913 +3742,2025-03-07T11:12:38.854701-08:00,1002.59619140625,10.842816,10842.816 +3743,2025-03-07T11:12:49.691970-08:00,1002.58154296875,10.837269,10837.269 +3744,2025-03-07T11:13:00.518884-08:00,1002.60693359375,10.826914,10826.914 +3745,2025-03-07T11:13:11.355915-08:00,1002.59619140625,10.837031,10837.031 +3746,2025-03-07T11:13:22.192727-08:00,1002.576416015625,10.836812,10836.812 +3747,2025-03-07T11:13:33.035784-08:00,1002.5881958007812,10.843057,10843.057 +3748,2025-03-07T11:13:43.863151-08:00,1002.6135864257812,10.827367,10827.367 +3749,2025-03-07T11:13:54.698699-08:00,1002.6013793945312,10.835548,10835.548 +3750,2025-03-07T11:14:05.528845-08:00,1002.609375,10.830146,10830.146 +3751,2025-03-07T11:14:16.362816-08:00,1002.6160278320312,10.833971,10833.971 +3752,2025-03-07T11:14:27.208651-08:00,1002.6170043945312,10.845835,10845.835 +3753,2025-03-07T11:14:38.049369-08:00,1002.59375,10.840718,10840.718 +3754,2025-03-07T11:14:48.881191-08:00,1002.6292114257812,10.831822,10831.822 +3755,2025-03-07T11:14:59.719134-08:00,1002.6212768554688,10.837943,10837.943 +3756,2025-03-07T11:15:10.552743-08:00,1002.6292114257812,10.833609,10833.609 +3757,2025-03-07T11:15:21.386672-08:00,1002.6079711914062,10.833929,10833.929 +3758,2025-03-07T11:15:32.216955-08:00,1002.6358032226562,10.830283,10830.283 +3759,2025-03-07T11:15:43.050005-08:00,1002.6344604492188,10.83305,10833.05 +3760,2025-03-07T11:15:53.881876-08:00,1002.6344604492188,10.831871,10831.871 +3761,2025-03-07T11:16:04.713988-08:00,1002.64111328125,10.832112,10832.112 +3762,2025-03-07T11:16:15.555694-08:00,1002.6212768554688,10.841706,10841.706 +3763,2025-03-07T11:16:26.386137-08:00,1002.6688842773438,10.830443,10830.443 +3764,2025-03-07T11:16:37.226853-08:00,1002.64111328125,10.840716,10840.716 +3765,2025-03-07T11:16:48.052775-08:00,1002.6476440429688,10.825922,10825.922 +3766,2025-03-07T11:16:58.895704-08:00,1002.6201782226562,10.842929,10842.929 +3767,2025-03-07T11:17:09.727699-08:00,1002.5881958007812,10.831995,10831.995 +3768,2025-03-07T11:17:20.569773-08:00,1002.6278076171875,10.842074,10842.074 +3769,2025-03-07T11:17:31.402673-08:00,1002.6358032226562,10.8329,10832.9 +3770,2025-03-07T11:17:42.245264-08:00,1002.6226806640625,10.842591,10842.591 +3771,2025-03-07T11:17:53.086695-08:00,1002.6490478515625,10.841431,10841.431 +3772,2025-03-07T11:18:03.915255-08:00,1002.5948486328125,10.82856,10828.56 +3773,2025-03-07T11:18:14.763833-08:00,1002.5948486328125,10.848578,10848.578 +3774,2025-03-07T11:18:25.593940-08:00,1002.5948486328125,10.830107,10830.107 +3775,2025-03-07T11:18:36.438056-08:00,1002.60693359375,10.844116,10844.116 +3776,2025-03-07T11:18:47.273914-08:00,1002.6226806640625,10.835858,10835.858 +3777,2025-03-07T11:18:58.122240-08:00,1002.6425170898438,10.848326,10848.326 +3778,2025-03-07T11:19:08.956724-08:00,1002.6292114257812,10.834484,10834.484 +3779,2025-03-07T11:19:19.789974-08:00,1002.6369018554688,10.83325,10833.25 +3780,2025-03-07T11:19:30.631258-08:00,1002.6226806640625,10.841284,10841.284 +3781,2025-03-07T11:19:41.463702-08:00,1002.6425170898438,10.832444,10832.444 +3782,2025-03-07T11:19:52.311973-08:00,1002.6292114257812,10.848271,10848.271 +3783,2025-03-07T11:20:03.141862-08:00,1002.6160278320312,10.829889,10829.889 +3784,2025-03-07T11:20:13.989694-08:00,1002.6160278320312,10.847832,10847.832 +3785,2025-03-07T11:20:24.821656-08:00,1002.6490478515625,10.831962,10831.962 +3786,2025-03-07T11:20:35.667035-08:00,1002.650146484375,10.845379,10845.379 +3787,2025-03-07T11:20:46.502905-08:00,1002.65673828125,10.83587,10835.87 +3788,2025-03-07T11:20:57.348655-08:00,1002.6490478515625,10.84575,10845.75 +3789,2025-03-07T11:21:08.180971-08:00,1002.6476440429688,10.832316,10832.316 +3790,2025-03-07T11:21:19.026356-08:00,1002.6303100585938,10.845385,10845.385 +3791,2025-03-07T11:21:29.857654-08:00,1002.6490478515625,10.831298,10831.298 +3792,2025-03-07T11:21:40.702645-08:00,1002.6358032226562,10.844991,10844.991 +3793,2025-03-07T11:21:51.535702-08:00,1002.60693359375,10.833057,10833.057 +3794,2025-03-07T11:22:02.377989-08:00,1002.6160278320312,10.842287,10842.287 +3795,2025-03-07T11:22:13.209663-08:00,1002.60693359375,10.831674,10831.674 +3796,2025-03-07T11:22:24.045131-08:00,1002.600341796875,10.835468,10835.468 +3797,2025-03-07T11:22:34.881699-08:00,1002.6135864257812,10.836568,10836.568 +3798,2025-03-07T11:22:45.725655-08:00,1002.6344604492188,10.843956,10843.956 +3799,2025-03-07T11:22:56.557689-08:00,1002.6278076171875,10.832034,10832.034 +3800,2025-03-07T11:23:07.395651-08:00,1002.6135864257812,10.837962,10837.962 +3801,2025-03-07T11:23:18.232867-08:00,1002.6333618164062,10.837216,10837.216 +3802,2025-03-07T11:23:29.076518-08:00,1002.6344604492188,10.843651,10843.651 +3803,2025-03-07T11:23:39.916653-08:00,1002.6201782226562,10.840135,10840.135 +3804,2025-03-07T11:23:50.761905-08:00,1002.600341796875,10.845252,10845.252 +3805,2025-03-07T11:24:01.592986-08:00,1002.600341796875,10.831081,10831.081 +3806,2025-03-07T11:24:12.440212-08:00,1002.6079711914062,10.847226,10847.226 +3807,2025-03-07T11:24:23.279994-08:00,1002.626708984375,10.839782,10839.782 +3808,2025-03-07T11:24:34.122026-08:00,1002.6079711914062,10.842032,10842.032 +3809,2025-03-07T11:24:44.959996-08:00,1002.600341796875,10.83797,10837.97 +3810,2025-03-07T11:24:55.797892-08:00,1002.5804443359375,10.837896,10837.896 +3811,2025-03-07T11:25:06.638655-08:00,1002.5804443359375,10.840763,10840.763 +3812,2025-03-07T11:25:17.478693-08:00,1002.5923461914062,10.840038,10840.038 +3813,2025-03-07T11:25:28.322935-08:00,1002.598876953125,10.844242,10844.242 +3814,2025-03-07T11:25:39.162040-08:00,1002.6135864257812,10.839105,10839.105 +3815,2025-03-07T11:25:50.001972-08:00,1002.6055297851562,10.839932,10839.932 +3816,2025-03-07T11:26:00.845651-08:00,1002.600341796875,10.843679,10843.679 +3817,2025-03-07T11:26:11.682864-08:00,1002.5870971679688,10.837213,10837.213 +3818,2025-03-07T11:26:22.529793-08:00,1002.598876953125,10.846929,10846.929 +3819,2025-03-07T11:26:33.367881-08:00,1002.6451416015625,10.838088,10838.088 +3820,2025-03-07T11:26:44.211700-08:00,1002.6212768554688,10.843819,10843.819 +3821,2025-03-07T11:26:55.051078-08:00,1002.58154296875,10.839378,10839.378 +3822,2025-03-07T11:27:05.890431-08:00,1002.6400146484375,10.839353,10839.353 +3823,2025-03-07T11:27:16.719912-08:00,1002.6400146484375,10.829481,10829.481 +3824,2025-03-07T11:27:27.552654-08:00,1002.6517944335938,10.832742,10832.742 +3825,2025-03-07T11:27:38.387918-08:00,1002.6598510742188,10.835264,10835.264 +3826,2025-03-07T11:27:49.226521-08:00,1002.6476440429688,10.838603,10838.603 +3827,2025-03-07T11:28:00.073626-08:00,1002.6400146484375,10.847105,10847.105 +3828,2025-03-07T11:28:10.910133-08:00,1002.6400146484375,10.836507,10836.507 +3829,2025-03-07T11:28:21.745824-08:00,1002.6400146484375,10.835691,10835.691 +3830,2025-03-07T11:28:32.581633-08:00,1002.626708984375,10.835809,10835.809 +3831,2025-03-07T11:28:43.418843-08:00,1002.6135864257812,10.83721,10837.21 +3832,2025-03-07T11:28:54.254952-08:00,1002.6187744140625,10.836109,10836.109 +3833,2025-03-07T11:29:05.101932-08:00,1002.60693359375,10.84698,10846.98 +3834,2025-03-07T11:29:15.936276-08:00,1002.6201782226562,10.834344,10834.344 +3835,2025-03-07T11:29:26.773044-08:00,1002.6358032226562,10.836768,10836.768 +3836,2025-03-07T11:29:37.615416-08:00,1002.5923461914062,10.842372,10842.372 +3837,2025-03-07T11:29:48.445751-08:00,1002.60693359375,10.830335,10830.335 +3838,2025-03-07T11:29:59.291651-08:00,1002.6400146484375,10.8459,10845.9 +3839,2025-03-07T11:30:10.122690-08:00,1002.5912475585938,10.831039,10831.039 +3840,2025-03-07T11:30:20.972976-08:00,1002.584716796875,10.850286,10850.286 +3841,2025-03-07T11:30:31.809961-08:00,1002.61767578125,10.836985,10836.985 +3842,2025-03-07T11:30:42.639893-08:00,1002.6096801757812,10.829932,10829.932 +3843,2025-03-07T11:30:53.477653-08:00,1002.6045532226562,10.83776,10837.76 +3844,2025-03-07T11:31:04.309216-08:00,1002.57666015625,10.831563,10831.563 +3845,2025-03-07T11:31:15.140646-08:00,1002.5648193359375,10.83143,10831.43 +3846,2025-03-07T11:31:25.979949-08:00,1002.54248046875,10.839303,10839.303 +3847,2025-03-07T11:31:36.827705-08:00,1002.611083984375,10.847756,10847.756 +3848,2025-03-07T11:31:47.658648-08:00,1002.5964965820312,10.830943,10830.943 +3849,2025-03-07T11:31:58.507653-08:00,1002.5887451171875,10.849005,10849.005 +3850,2025-03-07T11:32:09.342897-08:00,1002.5623168945312,10.835244,10835.244 +3851,2025-03-07T11:32:20.193789-08:00,1002.60205078125,10.850892,10850.892 +3852,2025-03-07T11:32:31.025936-08:00,1002.580810546875,10.832147,10832.147 +3853,2025-03-07T11:32:41.866701-08:00,1002.583251953125,10.840765,10840.765 +3854,2025-03-07T11:32:52.712969-08:00,1002.5665893554688,10.846268,10846.268 +3855,2025-03-07T11:33:03.551174-08:00,1002.5675659179688,10.838205,10838.205 +3856,2025-03-07T11:33:14.386645-08:00,1002.580810546875,10.835471,10835.471 +3857,2025-03-07T11:33:25.227649-08:00,1002.5466918945312,10.841004,10841.004 +3858,2025-03-07T11:33:36.060258-08:00,1002.55078125,10.832609,10832.609 +3859,2025-03-07T11:33:46.894873-08:00,1002.5532836914062,10.834615,10834.615 +3860,2025-03-07T11:33:57.730907-08:00,1002.5532836914062,10.836034,10836.034 +3861,2025-03-07T11:34:08.565629-08:00,1002.5797119140625,10.834722,10834.722 +3862,2025-03-07T11:34:19.407849-08:00,1002.5387573242188,10.84222,10842.22 +3863,2025-03-07T11:34:30.241649-08:00,1002.5320434570312,10.8338,10833.8 +3864,2025-03-07T11:34:41.081904-08:00,1002.4979858398438,10.840255,10840.255 +3865,2025-03-07T11:34:51.910844-08:00,1002.5122680664062,10.82894,10828.94 +3866,2025-03-07T11:35:02.754996-08:00,1002.505615234375,10.844152,10844.152 +3867,2025-03-07T11:35:13.602114-08:00,1002.5111694335938,10.847118,10847.118 +3868,2025-03-07T11:35:24.440647-08:00,1002.505615234375,10.838533,10838.533 +3869,2025-03-07T11:35:35.273654-08:00,1002.5243530273438,10.833007,10833.007 +3870,2025-03-07T11:35:46.108994-08:00,1002.5122680664062,10.83534,10835.34 +3871,2025-03-07T11:35:56.948843-08:00,1002.5203247070312,10.839849,10839.849 +3872,2025-03-07T11:36:07.780298-08:00,1002.4715576171875,10.831455,10831.455 +3873,2025-03-07T11:36:18.618915-08:00,1002.479248046875,10.838617,10838.617 +3874,2025-03-07T11:36:29.449906-08:00,1002.5122680664062,10.830991,10830.991 +3875,2025-03-07T11:36:40.286657-08:00,1002.5122680664062,10.836751,10836.751 +3876,2025-03-07T11:36:42.988354-08:00,1002.4979858398438,2.701697,2701.697 +3877,2025-03-07T11:36:51.129007-08:00,1002.5296020507812,8.140653,8140.653 +3878,2025-03-07T11:37:01.968870-08:00,1002.5929565429688,10.839863,10839.863 +3879,2025-03-07T11:37:12.805024-08:00,1002.5111694335938,10.836154,10836.154 +3880,2025-03-07T11:37:23.650854-08:00,1002.5254516601562,10.84583,10845.83 +3881,2025-03-07T11:37:34.480902-08:00,1002.517822265625,10.830048,10830.048 +3882,2025-03-07T11:37:45.323646-08:00,1002.5111694335938,10.842744,10842.744 +3883,2025-03-07T11:37:56.158988-08:00,1002.4979858398438,10.835342,10835.342 +3884,2025-03-07T11:38:06.997904-08:00,1002.4913940429688,10.838916,10838.916 +3885,2025-03-07T11:38:17.844634-08:00,1002.4690551757812,10.84673,10846.73 +3886,2025-03-07T11:38:28.683023-08:00,1002.5320434570312,10.838389,10838.389 +3887,2025-03-07T11:38:39.515219-08:00,1002.5387573242188,10.832196,10832.196 +3888,2025-03-07T11:38:50.349623-08:00,1002.517822265625,10.834404,10834.404 +3889,2025-03-07T11:39:01.193645-08:00,1002.505615234375,10.844022,10844.022 +3890,2025-03-07T11:39:12.033627-08:00,1002.5254516601562,10.839982,10839.982 +3891,2025-03-07T11:39:22.864815-08:00,1002.5254516601562,10.831188,10831.188 +3892,2025-03-07T11:39:33.699760-08:00,1002.5452880859375,10.834945,10834.945 +3893,2025-03-07T11:39:44.537644-08:00,1002.517822265625,10.837884,10837.884 +3894,2025-03-07T11:39:55.372652-08:00,1002.4847412109375,10.835008,10835.008 +3895,2025-03-07T11:40:06.215659-08:00,1002.5477905273438,10.843007,10843.007 +3896,2025-03-07T11:40:17.058401-08:00,1002.533447265625,10.842742,10842.742 +3897,2025-03-07T11:40:27.895656-08:00,1002.5279541015625,10.837255,10837.255 +3898,2025-03-07T11:40:38.723091-08:00,1002.5411987304688,10.827435,10827.435 +3899,2025-03-07T11:40:49.552710-08:00,1002.5599365234375,10.829619,10829.619 +3900,2025-03-07T11:41:00.389907-08:00,1002.5411987304688,10.837197,10837.197 +3901,2025-03-07T11:41:11.226700-08:00,1002.5279541015625,10.836793,10836.793 +3902,2025-03-07T11:41:22.064869-08:00,1002.5147094726562,10.838169,10838.169 +3903,2025-03-07T11:41:32.910853-08:00,1002.4962768554688,10.845984,10845.984 +3904,2025-03-07T11:41:43.746133-08:00,1002.51611328125,10.83528,10835.28 +3905,2025-03-07T11:41:54.577649-08:00,1002.5106201171875,10.831516,10831.516 +3906,2025-03-07T11:42:05.408875-08:00,1002.4949340820312,10.831226,10831.226 +3907,2025-03-07T11:42:16.246713-08:00,1002.481689453125,10.837838,10837.838 +3908,2025-03-07T11:42:27.085655-08:00,1002.52685546875,10.838942,10838.942 +3909,2025-03-07T11:42:37.914935-08:00,1002.505615234375,10.82928,10829.28 +3910,2025-03-07T11:42:48.750955-08:00,1002.4857788085938,10.83602,10836.02 +3911,2025-03-07T11:42:59.592647-08:00,1002.4990844726562,10.841692,10841.692 +3912,2025-03-07T11:43:10.428870-08:00,1002.4847412109375,10.836223,10836.223 +3913,2025-03-07T11:43:21.259858-08:00,1002.489990234375,10.830988,10830.988 +3914,2025-03-07T11:43:32.097824-08:00,1002.489990234375,10.837966,10837.966 +3915,2025-03-07T11:43:42.931712-08:00,1002.4913940429688,10.833888,10833.888 +3916,2025-03-07T11:43:53.767655-08:00,1002.5164184570312,10.835943,10835.943 +3917,2025-03-07T11:44:04.608648-08:00,1002.503173828125,10.840993,10840.993 +3918,2025-03-07T11:44:15.433197-08:00,1002.5007934570312,10.824549,10824.549 +3919,2025-03-07T11:44:26.267650-08:00,1002.494140625,10.834453,10834.453 +3920,2025-03-07T11:44:37.104721-08:00,1002.5007934570312,10.837071,10837.071 +3921,2025-03-07T11:44:47.940716-08:00,1002.465576171875,10.835995,10835.995 +3922,2025-03-07T11:44:58.776651-08:00,1002.491943359375,10.835935,10835.935 +3923,2025-03-07T11:45:09.607656-08:00,1002.5007934570312,10.831005,10831.005 +3924,2025-03-07T11:45:20.441026-08:00,1002.505126953125,10.83337,10833.37 +3925,2025-03-07T11:45:31.274617-08:00,1002.4324951171875,10.833591,10833.591 +3926,2025-03-07T11:45:42.105647-08:00,1002.450927734375,10.83103,10831.03 +3927,2025-03-07T11:45:52.931612-08:00,1002.4798583984375,10.825965,10825.965 +3928,2025-03-07T11:46:03.770006-08:00,1002.478759765625,10.838394,10838.394 +3929,2025-03-07T11:46:14.600003-08:00,1002.4696655273438,10.829997,10829.997 +3930,2025-03-07T11:46:25.437758-08:00,1002.4564819335938,10.837755,10837.755 +3931,2025-03-07T11:46:36.274020-08:00,1002.4617309570312,10.836262,10836.262 +3932,2025-03-07T11:46:47.096953-08:00,1002.4102172851562,10.822933,10822.933 +3933,2025-03-07T11:46:57.929636-08:00,1002.4285888671875,10.832683,10832.683 +3934,2025-03-07T11:47:08.757455-08:00,1002.4432983398438,10.827819,10827.819 +3935,2025-03-07T11:47:19.589789-08:00,1002.4564819335938,10.832334,10832.334 +3936,2025-03-07T11:47:30.410857-08:00,1002.435302734375,10.821068,10821.068 +3937,2025-03-07T11:47:41.243690-08:00,1002.435302734375,10.832833,10832.833 +3938,2025-03-07T11:47:52.080412-08:00,1002.3997802734375,10.836722,10836.722 +3939,2025-03-07T11:48:02.910633-08:00,1002.4342041015625,10.830221,10830.221 +3940,2025-03-07T11:48:13.744986-08:00,1002.44189453125,10.834353,10834.353 +3941,2025-03-07T11:48:24.568089-08:00,1002.4064331054688,10.823103,10823.103 +3942,2025-03-07T11:48:35.409648-08:00,1002.3931274414062,10.841559,10841.559 +3943,2025-03-07T11:48:46.231794-08:00,1002.4275512695312,10.822146,10822.146 +3944,2025-03-07T11:48:57.060659-08:00,1002.4209594726562,10.828865,10828.865 +3945,2025-03-07T11:49:07.897698-08:00,1002.4484252929688,10.837039,10837.039 +3946,2025-03-07T11:49:18.723651-08:00,1002.4261474609375,10.825953,10825.953 +3947,2025-03-07T11:49:29.547655-08:00,1002.3865356445312,10.824004,10824.004 +3948,2025-03-07T11:49:40.369957-08:00,1002.4129638671875,10.822302,10822.302 +3949,2025-03-07T11:49:51.205899-08:00,1002.3997802734375,10.835942,10835.942 +3950,2025-03-07T11:50:02.038691-08:00,1002.4382934570312,10.832792,10832.792 +3951,2025-03-07T11:50:12.863650-08:00,1002.4129638671875,10.824959,10824.959 +3952,2025-03-07T11:50:23.696652-08:00,1002.4053344726562,10.833002,10833.002 +3953,2025-03-07T11:50:34.522802-08:00,1002.4053344726562,10.82615,10826.15 +3954,2025-03-07T11:50:45.359941-08:00,1002.4053344726562,10.837139,10837.139 +3955,2025-03-07T11:50:56.191963-08:00,1002.4104614257812,10.832022,10832.022 +3956,2025-03-07T11:51:07.021422-08:00,1002.409423828125,10.829459,10829.459 +3957,2025-03-07T11:51:17.843820-08:00,1002.4104614257812,10.822398,10822.398 +3958,2025-03-07T11:51:28.675216-08:00,1002.3895874023438,10.831396,10831.396 +3959,2025-03-07T11:51:39.511709-08:00,1002.375,10.836493,10836.493 +3960,2025-03-07T11:51:50.341648-08:00,1002.40283203125,10.829939,10829.939 +3961,2025-03-07T11:52:01.164675-08:00,1002.398681640625,10.823027,10823.027 +3962,2025-03-07T11:52:11.996841-08:00,1002.4251708984375,10.832166,10832.166 +3963,2025-03-07T11:52:22.827028-08:00,1002.4171142578125,10.830187,10830.187 +3964,2025-03-07T11:52:33.652651-08:00,1002.4237670898438,10.825623,10825.623 +3965,2025-03-07T11:52:44.484957-08:00,1002.4104614257812,10.832306,10832.306 +3966,2025-03-07T11:52:55.305641-08:00,1002.409423828125,10.820684,10820.684 +3967,2025-03-07T11:53:06.137776-08:00,1002.4171142578125,10.832135,10832.135 +3968,2025-03-07T11:53:16.961709-08:00,1002.3805541992188,10.823933,10823.933 +3969,2025-03-07T11:53:27.796885-08:00,1002.4212646484375,10.835176,10835.176 +3970,2025-03-07T11:53:38.625757-08:00,1002.41357421875,10.828872,10828.872 +3971,2025-03-07T11:53:49.458555-08:00,1002.3948364257812,10.832798,10832.798 +3972,2025-03-07T11:54:00.295495-08:00,1002.3858032226562,10.83694,10836.94 +3973,2025-03-07T11:54:11.134850-08:00,1002.406982421875,10.839355,10839.355 +3974,2025-03-07T11:54:21.955711-08:00,1002.4187622070312,10.820861,10820.861 +3975,2025-03-07T11:54:32.791719-08:00,1002.3989868164062,10.836008,10836.008 +3976,2025-03-07T11:54:43.630209-08:00,1002.417724609375,10.83849,10838.49 +3977,2025-03-07T11:54:54.454898-08:00,1002.404541015625,10.824689,10824.689 +3978,2025-03-07T11:55:05.292772-08:00,1002.3847045898438,10.837874,10837.874 +3979,2025-03-07T11:55:16.118650-08:00,1002.4121704101562,10.825878,10825.878 +3980,2025-03-07T11:55:26.952199-08:00,1002.404541015625,10.833549,10833.549 +3981,2025-03-07T11:55:37.790981-08:00,1002.3858032226562,10.838782,10838.782 +3982,2025-03-07T11:55:48.619647-08:00,1002.392333984375,10.828666,10828.666 +3983,2025-03-07T11:55:59.446806-08:00,1002.3989868164062,10.827159,10827.159 +3984,2025-03-07T11:56:10.287792-08:00,1002.41357421875,10.840986,10840.986 +3985,2025-03-07T11:56:21.109638-08:00,1002.3989868164062,10.821846,10821.846 +3986,2025-03-07T11:56:31.937747-08:00,1002.3805541992188,10.828109,10828.109 +3987,2025-03-07T11:56:42.773952-08:00,1002.3847045898438,10.836205,10836.205 +3988,2025-03-07T11:56:53.599156-08:00,1002.406982421875,10.825204,10825.204 +3989,2025-03-07T11:57:04.430990-08:00,1002.365966796875,10.831834,10831.834 +3990,2025-03-07T11:57:15.268653-08:00,1002.3937377929688,10.837663,10837.663 +3991,2025-03-07T11:57:26.102186-08:00,1002.404541015625,10.833533,10833.533 +3992,2025-03-07T11:57:36.931986-08:00,1002.4320068359375,10.8298,10829.8 +3993,2025-03-07T11:57:47.761634-08:00,1002.4650268554688,10.829648,10829.648 +3994,2025-03-07T11:57:58.594132-08:00,1002.41357421875,10.832498,10832.498 +3995,2025-03-07T11:58:09.413846-08:00,1002.3937377929688,10.819714,10819.714 +3996,2025-03-07T11:58:20.252974-08:00,1002.4003295898438,10.839128,10839.128 +3997,2025-03-07T11:58:31.078876-08:00,1002.3883056640625,10.825902,10825.902 +3998,2025-03-07T11:58:41.916645-08:00,1002.4268188476562,10.837769,10837.769 +3999,2025-03-07T11:58:52.738653-08:00,1002.4121704101562,10.822008,10822.008 +4000,2025-03-07T11:59:03.568521-08:00,1002.3739013671875,10.829868,10829.868 +4001,2025-03-07T11:59:14.407656-08:00,1002.3805541992188,10.839135,10839.135 +4002,2025-03-07T11:59:25.237257-08:00,1002.3805541992188,10.829601,10829.601 +4003,2025-03-07T11:59:36.067653-08:00,1002.3460693359375,10.830396,10830.396 +4004,2025-03-07T11:59:46.901657-08:00,1002.3829956054688,10.834004,10834.004 +4005,2025-03-07T11:59:57.730689-08:00,1002.3920288085938,10.829032,10829.032 +4006,2025-03-07T12:00:08.567649-08:00,1002.3920288085938,10.83696,10836.96 +4007,2025-03-07T12:00:19.396560-08:00,1002.37890625,10.828911,10828.911 +4008,2025-03-07T12:00:30.221704-08:00,1002.4195556640625,10.825144,10825.144 +4009,2025-03-07T12:00:41.054974-08:00,1002.39453125,10.83327,10833.27 +4010,2025-03-07T12:00:51.879649-08:00,1002.4154663085938,10.824675,10824.675 +4011,2025-03-07T12:01:02.708635-08:00,1002.403564453125,10.828986,10828.986 +4012,2025-03-07T12:01:13.543125-08:00,1002.3981323242188,10.83449,10834.49 +4013,2025-03-07T12:01:24.380798-08:00,1002.38623046875,10.837673,10837.673 +4014,2025-03-07T12:01:35.210652-08:00,1002.3796997070312,10.829854,10829.854 +4015,2025-03-07T12:01:46.044828-08:00,1002.373046875,10.834176,10834.176 +4016,2025-03-07T12:01:56.870655-08:00,1002.3465576171875,10.825827,10825.827 +4017,2025-03-07T12:02:07.699972-08:00,1002.37109375,10.829317,10829.317 +4018,2025-03-07T12:02:18.532807-08:00,1002.3355712890625,10.832835,10832.835 +4019,2025-03-07T12:02:29.364653-08:00,1002.3435668945312,10.831846,10831.846 +4020,2025-03-07T12:02:40.200000-08:00,1002.3512573242188,10.835347,10835.347 +4021,2025-03-07T12:02:51.022929-08:00,1002.3657836914062,10.822929,10822.929 +4022,2025-03-07T12:03:01.855430-08:00,1002.37353515625,10.832501,10832.501 +4023,2025-03-07T12:03:12.692780-08:00,1002.3536987304688,10.83735,10837.35 +4024,2025-03-07T12:03:23.517627-08:00,1002.3551025390625,10.824847,10824.847 +4025,2025-03-07T12:03:34.349654-08:00,1002.3404541015625,10.832027,10832.027 +4026,2025-03-07T12:03:45.184905-08:00,1002.326171875,10.835251,10835.251 +4027,2025-03-07T12:03:56.008982-08:00,1002.3591918945312,10.824077,10824.077 +4028,2025-03-07T12:04:06.840016-08:00,1002.3429565429688,10.831034,10831.034 +4029,2025-03-07T12:04:17.670628-08:00,1002.309814453125,10.830612,10830.612 +4030,2025-03-07T12:04:28.506656-08:00,1002.3231201171875,10.836028,10836.028 +4031,2025-03-07T12:04:39.330655-08:00,1002.309814453125,10.823999,10823.999 +4032,2025-03-07T12:04:50.166662-08:00,1002.309814453125,10.836007,10836.007 +4033,2025-03-07T12:05:00.998046-08:00,1002.2848510742188,10.831384,10831.384 +4034,2025-03-07T12:05:11.823779-08:00,1002.337646484375,10.825733,10825.733 +4035,2025-03-07T12:05:22.660951-08:00,1002.3929443359375,10.837172,10837.172 +4036,2025-03-07T12:05:33.526584-08:00,1002.4006958007812,10.865633,10865.633 +4037,2025-03-07T12:05:44.351887-08:00,1002.3336181640625,10.825303,10825.303 +4038,2025-03-07T12:05:55.181585-08:00,1002.3875122070312,10.829698,10829.698 +4039,2025-03-07T12:06:06.012898-08:00,1002.3847045898438,10.831313,10831.313 +4040,2025-03-07T12:06:16.853919-08:00,1002.3965454101562,10.841021,10841.021 +4041,2025-03-07T12:06:27.684091-08:00,1002.3370361328125,10.830172,10830.172 +4042,2025-03-07T12:06:38.515714-08:00,1002.380615234375,10.831623,10831.623 +4043,2025-03-07T12:06:49.342781-08:00,1002.3673706054688,10.827067,10827.067 +4044,2025-03-07T12:07:00.168914-08:00,1002.3959350585938,10.826133,10826.133 +4045,2025-03-07T12:07:10.991590-08:00,1002.3760986328125,10.822676,10822.676 +4046,2025-03-07T12:07:21.825096-08:00,1002.3775024414062,10.833506,10833.506 +4047,2025-03-07T12:07:32.650863-08:00,1002.3851318359375,10.825767,10825.767 +4048,2025-03-07T12:07:43.485085-08:00,1002.3865356445312,10.834222,10834.222 +4049,2025-03-07T12:07:54.315589-08:00,1002.3692016601562,10.830504,10830.504 +4050,2025-03-07T12:08:05.138569-08:00,1002.383544921875,10.82298,10822.98 +4051,2025-03-07T12:08:15.966844-08:00,1002.364990234375,10.828275,10828.275 +4052,2025-03-07T12:08:26.794907-08:00,1002.37939453125,10.828063,10828.063 +4053,2025-03-07T12:08:37.619595-08:00,1002.3543090820312,10.824688,10824.688 +4054,2025-03-07T12:08:48.456451-08:00,1002.3831787109375,10.836856,10836.856 +4055,2025-03-07T12:08:59.282590-08:00,1002.3591918945312,10.826139,10826.139 +4056,2025-03-07T12:09:10.108038-08:00,1002.3338012695312,10.825448,10825.448 +4057,2025-03-07T12:09:20.935855-08:00,1002.3429565429688,10.827817,10827.817 +4058,2025-03-07T12:09:31.769433-08:00,1002.2701416015625,10.833578,10833.578 +4059,2025-03-07T12:09:42.596591-08:00,1002.3057250976562,10.827158,10827.158 +4060,2025-03-07T12:09:53.435944-08:00,1002.3279418945312,10.839353,10839.353 +4061,2025-03-07T12:10:04.261337-08:00,1002.3147583007812,10.825393,10825.393 +4062,2025-03-07T12:10:15.081580-08:00,1002.318603515625,10.820243,10820.243 +4063,2025-03-07T12:10:25.914574-08:00,1002.3001708984375,10.832994,10832.994 +4064,2025-03-07T12:10:36.745084-08:00,1002.2935791015625,10.83051,10830.51 +4065,2025-03-07T12:10:47.577567-08:00,1002.2893676757812,10.832483,10832.483 +4066,2025-03-07T12:10:58.396773-08:00,1002.26953125,10.819206,10819.206 +4067,2025-03-07T12:11:09.231828-08:00,1002.3182983398438,10.835055,10835.055 +4068,2025-03-07T12:11:20.065923-08:00,1002.3392333984375,10.834095,10834.095 +4069,2025-03-07T12:11:30.893868-08:00,1002.3273315429688,10.827945,10827.945 +4070,2025-03-07T12:11:41.724239-08:00,1002.32080078125,10.830371,10830.371 +4071,2025-03-07T12:11:52.561587-08:00,1002.3231811523438,10.837348,10837.348 +4072,2025-03-07T12:12:03.388719-08:00,1002.319091796875,10.827132,10827.132 +4073,2025-03-07T12:12:14.225037-08:00,1002.345458984375,10.836318,10836.318 +4074,2025-03-07T12:12:25.056976-08:00,1002.3214721679688,10.831939,10831.939 +4075,2025-03-07T12:12:35.888406-08:00,1002.3201293945312,10.83143,10831.43 +4076,2025-03-07T12:12:46.717728-08:00,1002.31591796875,10.829322,10829.322 +4077,2025-03-07T12:12:57.551905-08:00,1002.314208984375,10.834177,10834.177 +4078,2025-03-07T12:13:08.382588-08:00,1002.2996826171875,10.830683,10830.683 +4079,2025-03-07T12:13:19.215233-08:00,1002.2954711914062,10.832645,10832.645 +4080,2025-03-07T12:13:30.045587-08:00,1002.2822875976562,10.830354,10830.354 +4081,2025-03-07T12:13:40.876590-08:00,1002.2530517578125,10.831003,10831.003 +4082,2025-03-07T12:13:51.710616-08:00,1002.2871704101562,10.834026,10834.026 +4083,2025-03-07T12:14:02.552653-08:00,1002.3150024414062,10.842037,10842.037 +4084,2025-03-07T12:14:13.386635-08:00,1002.297607421875,10.833982,10833.982 +4085,2025-03-07T12:14:24.221565-08:00,1002.2986450195312,10.83493,10834.93 +4086,2025-03-07T12:14:35.053845-08:00,1002.2945556640625,10.83228,10832.28 +4087,2025-03-07T12:14:45.881970-08:00,1002.3077392578125,10.828125,10828.125 +4088,2025-03-07T12:14:56.721807-08:00,1002.2650146484375,10.839837,10839.837 +4089,2025-03-07T12:15:07.557164-08:00,1002.279541015625,10.835357,10835.357 +4090,2025-03-07T12:15:18.378390-08:00,1002.2740478515625,10.821226,10821.226 +4091,2025-03-07T12:15:29.214590-08:00,1002.2159423828125,10.8362,10836.2 +4092,2025-03-07T12:15:40.051621-08:00,1002.2235717773438,10.837031,10837.031 +4093,2025-03-07T12:15:50.887088-08:00,1002.2235717773438,10.835467,10835.467 +4094,2025-03-07T12:16:01.728040-08:00,1002.2061767578125,10.840952,10840.952 +4095,2025-03-07T12:16:12.557580-08:00,1002.2273559570312,10.82954,10829.54 +4096,2025-03-07T12:16:23.394590-08:00,1002.2284545898438,10.83701,10837.01 +4097,2025-03-07T12:16:34.234056-08:00,1002.19677734375,10.839466,10839.466 +4098,2025-03-07T12:16:45.070579-08:00,1002.2135009765625,10.836523,10836.523 +4099,2025-03-07T12:16:55.906832-08:00,1002.1595458984375,10.836253,10836.253 +4100,2025-03-07T12:17:06.740100-08:00,1002.17626953125,10.833268,10833.268 +4101,2025-03-07T12:17:17.578567-08:00,1002.1919555664062,10.838467,10838.467 +4102,2025-03-07T12:17:28.410791-08:00,1002.185302734375,10.832224,10832.224 +4103,2025-03-07T12:17:39.232991-08:00,1002.1878051757812,10.8222,10822.2 +4104,2025-03-07T12:17:50.077283-08:00,1002.1781005859375,10.844292,10844.292 +4105,2025-03-07T12:18:00.909300-08:00,1002.1690673828125,10.832017,10832.017 +4106,2025-03-07T12:18:11.734590-08:00,1002.1529541015625,10.82529,10825.29 +4107,2025-03-07T12:18:22.572888-08:00,1002.154052734375,10.838298,10838.298 +4108,2025-03-07T12:18:33.413037-08:00,1002.1422119140625,10.840149,10840.149 +4109,2025-03-07T12:18:44.247603-08:00,1002.1843872070312,10.834566,10834.566 +4110,2025-03-07T12:18:55.079853-08:00,1002.1843872070312,10.83225,10832.25 +4111,2025-03-07T12:19:05.908582-08:00,1002.1843872070312,10.828729,10828.729 +4112,2025-03-07T12:19:16.743923-08:00,1002.16552734375,10.835341,10835.341 +4113,2025-03-07T12:19:27.572730-08:00,1002.1825561523438,10.828807,10828.807 +4114,2025-03-07T12:19:38.415179-08:00,1002.1415405273438,10.842449,10842.449 +4115,2025-03-07T12:19:49.242627-08:00,1002.1718139648438,10.827448,10827.448 +4116,2025-03-07T12:20:00.080204-08:00,1002.1387329101562,10.837577,10837.577 +4117,2025-03-07T12:20:10.908934-08:00,1002.1453247070312,10.82873,10828.73 +4118,2025-03-07T12:20:21.746591-08:00,1002.166259765625,10.837657,10837.657 +4119,2025-03-07T12:20:32.575878-08:00,1002.1422729492188,10.829287,10829.287 +4120,2025-03-07T12:20:43.406809-08:00,1002.1015625,10.830931,10830.931 +4121,2025-03-07T12:20:54.253712-08:00,1002.123779296875,10.846903,10846.903 +4122,2025-03-07T12:21:05.082776-08:00,1002.13916015625,10.829064,10829.064 +4123,2025-03-07T12:21:15.924793-08:00,1002.1140747070312,10.842017,10842.017 +4124,2025-03-07T12:21:26.755689-08:00,1002.091796875,10.830896,10830.896 +4125,2025-03-07T12:21:37.589079-08:00,1002.0953369140625,10.83339,10833.39 +4126,2025-03-07T12:21:48.418620-08:00,1002.0966186523438,10.829541,10829.541 +4127,2025-03-07T12:21:59.251921-08:00,1002.091064453125,10.833301,10833.301 +4128,2025-03-07T12:22:10.078574-08:00,1002.077880859375,10.826653,10826.653 +4129,2025-03-07T12:22:20.921595-08:00,1002.0935668945312,10.843021,10843.021 +4130,2025-03-07T12:22:31.763867-08:00,1002.07373046875,10.842272,10842.272 +4131,2025-03-07T12:22:42.590568-08:00,1002.0496826171875,10.826701,10826.701 +4132,2025-03-07T12:22:53.431603-08:00,1002.03125,10.841035,10841.035 +4133,2025-03-07T12:23:04.265632-08:00,1002.0114135742188,10.834029,10834.029 +4134,2025-03-07T12:23:15.106566-08:00,1002.0413208007812,10.840934,10840.934 +4135,2025-03-07T12:23:25.945681-08:00,1001.9807739257812,10.839115,10839.115 +4136,2025-03-07T12:23:36.783673-08:00,1002.0106811523438,10.837992,10837.992 +4137,2025-03-07T12:23:47.624567-08:00,1001.9908447265625,10.840894,10840.894 +4138,2025-03-07T12:23:58.462828-08:00,1001.9908447265625,10.838261,10838.261 +4139,2025-03-07T12:24:09.308831-08:00,1001.96435546875,10.846003,10846.003 +4140,2025-03-07T12:24:20.133734-08:00,1001.9745483398438,10.824903,10824.903 +4141,2025-03-07T12:24:30.976587-08:00,1002.007568359375,10.842853,10842.853 +4142,2025-03-07T12:24:41.821436-08:00,1001.9678955078125,10.844849,10844.849 +4143,2025-03-07T12:24:52.668828-08:00,1001.9835815429688,10.847392,10847.392 +4144,2025-03-07T12:25:03.515552-08:00,1001.9849243164062,10.846724,10846.724 +4145,2025-03-07T12:25:14.355302-08:00,1001.9703369140625,10.83975,10839.75 +4146,2025-03-07T12:25:25.199580-08:00,1001.9637451171875,10.844278,10844.278 +4147,2025-03-07T12:25:36.033912-08:00,1001.967529296875,10.834332,10834.332 +4148,2025-03-07T12:25:46.880988-08:00,1001.9925537109375,10.847076,10847.076 +4149,2025-03-07T12:25:57.721580-08:00,1001.9884643554688,10.840592,10840.592 +4150,2025-03-07T12:26:08.575735-08:00,1001.9609375,10.854155,10854.155 +4151,2025-03-07T12:26:19.406713-08:00,1001.9949951171875,10.830978,10830.978 +4152,2025-03-07T12:26:30.260174-08:00,1001.98974609375,10.853461,10853.461 +4153,2025-03-07T12:26:41.104310-08:00,1001.9907836914062,10.844136,10844.136 +4154,2025-03-07T12:26:51.950825-08:00,1001.9578247070312,10.846515,10846.515 +4155,2025-03-07T12:27:02.788565-08:00,1001.9657592773438,10.83774,10837.74 +4156,2025-03-07T12:27:13.621888-08:00,1001.97998046875,10.833323,10833.323 +4157,2025-03-07T12:27:24.472903-08:00,1001.9469604492188,10.851015,10851.015 +4158,2025-03-07T12:27:35.315583-08:00,1002.0023193359375,10.84268,10842.68 +4159,2025-03-07T12:27:46.161582-08:00,1001.990478515625,10.845999,10845.999 +4160,2025-03-07T12:27:57.006775-08:00,1001.990478515625,10.845193,10845.193 +4161,2025-03-07T12:28:07.849203-08:00,1001.9385986328125,10.842428,10842.428 +4162,2025-03-07T12:28:18.697878-08:00,1001.978271484375,10.848675,10848.675 +4163,2025-03-07T12:28:29.541805-08:00,1001.9598388671875,10.843927,10843.927 +4164,2025-03-07T12:28:40.384581-08:00,1002.0018920898438,10.842776,10842.776 +4165,2025-03-07T12:28:51.221590-08:00,1001.9699096679688,10.837009,10837.009 +4166,2025-03-07T12:29:02.070600-08:00,1001.9765625,10.84901,10849.01 +4167,2025-03-07T12:29:12.918898-08:00,1001.9657592773438,10.848298,10848.298 +4168,2025-03-07T12:29:23.763637-08:00,1001.9378662109375,10.844739,10844.739 +4169,2025-03-07T12:29:34.605885-08:00,1001.9483032226562,10.842248,10842.248 +4170,2025-03-07T12:29:45.448830-08:00,1001.9417114257812,10.842945,10842.945 +4171,2025-03-07T12:29:56.291942-08:00,1001.9099731445312,10.843112,10843.112 +4172,2025-03-07T12:30:07.129865-08:00,1001.8992309570312,10.837923,10837.923 +4173,2025-03-07T12:30:17.972104-08:00,1001.90576171875,10.842239,10842.239 +4174,2025-03-07T12:30:28.826589-08:00,1001.8660888671875,10.854485,10854.485 +4175,2025-03-07T12:30:39.666849-08:00,1001.9029541015625,10.84026,10840.26 +4176,2025-03-07T12:30:50.506992-08:00,1001.9029541015625,10.840143,10840.143 +4177,2025-03-07T12:31:01.354057-08:00,1001.893310546875,10.847065,10847.065 +4178,2025-03-07T12:31:12.197614-08:00,1001.91064453125,10.843557,10843.557 +4179,2025-03-07T12:31:23.035623-08:00,1001.8601684570312,10.838009,10838.009 +4180,2025-03-07T12:31:33.875311-08:00,1001.862548828125,10.839688,10839.688 +4181,2025-03-07T12:31:44.709585-08:00,1001.8981323242188,10.834274,10834.274 +4182,2025-03-07T12:31:55.559590-08:00,1001.890380859375,10.850005,10850.005 +4183,2025-03-07T12:32:06.405630-08:00,1001.890380859375,10.84604,10846.04 +4184,2025-03-07T12:32:17.249860-08:00,1001.8663940429688,10.84423,10844.23 +4185,2025-03-07T12:32:28.083031-08:00,1001.8353881835938,10.833171,10833.171 +4186,2025-03-07T12:32:38.926585-08:00,1001.8434448242188,10.843554,10843.554 +4187,2025-03-07T12:32:49.769589-08:00,1001.8179931640625,10.843004,10843.004 +4188,2025-03-07T12:33:00.612912-08:00,1001.8114013671875,10.843323,10843.323 +4189,2025-03-07T12:33:11.443587-08:00,1001.8193969726562,10.830675,10830.675 +4190,2025-03-07T12:33:22.292869-08:00,1001.813720703125,10.849282,10849.282 +4191,2025-03-07T12:33:33.138718-08:00,1001.869140625,10.845849,10845.849 +4192,2025-03-07T12:33:43.971890-08:00,1001.869140625,10.833172,10833.172 +4193,2025-03-07T12:33:54.814777-08:00,1001.83740234375,10.842887,10842.887 +4194,2025-03-07T12:34:05.658879-08:00,1001.846435546875,10.844102,10844.102 +4195,2025-03-07T12:34:16.491178-08:00,1001.8517456054688,10.832299,10832.299 +4196,2025-03-07T12:34:27.342052-08:00,1001.8662719726562,10.850874,10850.874 +4197,2025-03-07T12:34:38.182589-08:00,1001.84228515625,10.840537,10840.537 +4198,2025-03-07T12:34:49.016575-08:00,1001.8290405273438,10.833986,10833.986 +4199,2025-03-07T12:34:59.850879-08:00,1001.80126953125,10.834304,10834.304 +4200,2025-03-07T12:35:10.695654-08:00,1001.8092041015625,10.844775,10844.775 +4201,2025-03-07T12:35:21.538275-08:00,1001.8035888671875,10.842621,10842.621 +4202,2025-03-07T12:35:32.381592-08:00,1001.7861938476562,10.843317,10843.317 +4203,2025-03-07T12:35:43.236593-08:00,1001.83251953125,10.855001,10855.001 +4204,2025-03-07T12:35:54.078972-08:00,1001.8181762695312,10.842379,10842.379 +4205,2025-03-07T12:36:04.917059-08:00,1001.8404541015625,10.838087,10838.087 +4206,2025-03-07T12:36:15.760578-08:00,1001.8272705078125,10.843519,10843.519 +4207,2025-03-07T12:36:26.607832-08:00,1001.8272705078125,10.847254,10847.254 +4208,2025-03-07T12:36:37.446634-08:00,1001.8029174804688,10.838802,10838.802 +4209,2025-03-07T12:36:48.290765-08:00,1001.8095092773438,10.844131,10844.131 +4210,2025-03-07T12:36:59.128650-08:00,1001.7843627929688,10.837885,10837.885 +4211,2025-03-07T12:37:09.966677-08:00,1001.7920532226562,10.838027,10838.027 +4212,2025-03-07T12:37:20.802566-08:00,1001.772216796875,10.835889,10835.889 +4213,2025-03-07T12:37:31.628826-08:00,1001.7854614257812,10.82626,10826.26 +4214,2025-03-07T12:37:42.471586-08:00,1001.7920532226562,10.84276,10842.76 +4215,2025-03-07T12:37:53.302729-08:00,1001.7537231445312,10.831143,10831.143 +4216,2025-03-07T12:38:04.140082-08:00,1001.7670288085938,10.837353,10837.353 +4217,2025-03-07T12:38:14.978644-08:00,1001.7614135742188,10.838562,10838.562 +4218,2025-03-07T12:38:25.820601-08:00,1001.80908203125,10.841957,10841.957 +4219,2025-03-07T12:38:36.664588-08:00,1001.774658203125,10.843987,10843.987 +4220,2025-03-07T12:38:47.495643-08:00,1001.7638549804688,10.831055,10831.055 +4221,2025-03-07T12:38:58.338840-08:00,1001.796875,10.843197,10843.197 +4222,2025-03-07T12:39:09.181568-08:00,1001.792724609375,10.842728,10842.728 +4223,2025-03-07T12:39:20.021592-08:00,1001.7784423828125,10.840024,10840.024 +4224,2025-03-07T12:39:30.863530-08:00,1001.7676391601562,10.841938,10841.938 +4225,2025-03-07T12:39:41.692637-08:00,1001.7993774414062,10.829107,10829.107 +4226,2025-03-07T12:39:52.524586-08:00,1001.807373046875,10.831949,10831.949 +4227,2025-03-07T12:40:03.366131-08:00,1001.820556640625,10.841545,10841.545 +4228,2025-03-07T12:40:14.210624-08:00,1001.8150024414062,10.844493,10844.493 +4229,2025-03-07T12:40:25.042595-08:00,1001.8031005859375,10.831971,10831.971 +4230,2025-03-07T12:40:35.886909-08:00,1001.77001953125,10.844314,10844.314 +4231,2025-03-07T12:40:46.718582-08:00,1001.80419921875,10.831673,10831.673 +4232,2025-03-07T12:40:57.549590-08:00,1001.7898559570312,10.831008,10831.008 +4233,2025-03-07T12:41:08.388905-08:00,1001.779052734375,10.839315,10839.315 +4234,2025-03-07T12:41:19.218783-08:00,1001.81982421875,10.829878,10829.878 +4235,2025-03-07T12:41:30.055974-08:00,1001.8055419921875,10.837191,10837.191 +4236,2025-03-07T12:41:40.883423-08:00,1001.8211669921875,10.827449,10827.449 +4237,2025-03-07T12:41:51.717853-08:00,1001.7933349609375,10.83443,10834.43 +4238,2025-03-07T12:42:02.558902-08:00,1001.7933349609375,10.841049,10841.049 +4239,2025-03-07T12:42:13.385113-08:00,1001.7759399414062,10.826211,10826.211 +4240,2025-03-07T12:42:24.231652-08:00,1001.8079833984375,10.846539,10846.539 +4241,2025-03-07T12:42:35.062585-08:00,1001.7904663085938,10.830933,10830.933 +4242,2025-03-07T12:42:45.906589-08:00,1001.783935546875,10.844004,10844.004 +4243,2025-03-07T12:42:56.744859-08:00,1001.7650756835938,10.83827,10838.27 +4244,2025-03-07T12:43:07.587939-08:00,1001.8048706054688,10.84308,10843.08 +4245,2025-03-07T12:43:18.431055-08:00,1001.7330322265625,10.843116,10843.116 +4246,2025-03-07T12:43:29.268584-08:00,1001.7410888671875,10.837529,10837.529 +4247,2025-03-07T12:43:40.105016-08:00,1001.7156372070312,10.836432,10836.432 +4248,2025-03-07T12:43:50.942576-08:00,1001.7079467773438,10.83756,10837.56 +4249,2025-03-07T12:44:01.786752-08:00,1001.7235717773438,10.844176,10844.176 +4250,2025-03-07T12:44:12.634485-08:00,1001.7128295898438,10.847733,10847.733 +4251,2025-03-07T12:44:23.471780-08:00,1001.7061767578125,10.837295,10837.295 +4252,2025-03-07T12:44:34.302589-08:00,1001.7128295898438,10.830809,10830.809 +4253,2025-03-07T12:44:45.140992-08:00,1001.7260131835938,10.838403,10838.403 +4254,2025-03-07T12:44:55.984982-08:00,1001.72705078125,10.84399,10843.99 +4255,2025-03-07T12:45:06.822591-08:00,1001.74169921875,10.837609,10837.609 +4256,2025-03-07T12:45:17.668563-08:00,1001.7548217773438,10.845972,10845.972 +4257,2025-03-07T12:45:28.512659-08:00,1001.7284545898438,10.844096,10844.096 +4258,2025-03-07T12:45:39.352473-08:00,1001.738525390625,10.839814,10839.814 +4259,2025-03-07T12:45:50.190641-08:00,1001.738525390625,10.838168,10838.168 +4260,2025-03-07T12:46:01.031584-08:00,1001.6921997070312,10.840943,10840.943 +4261,2025-03-07T12:46:11.863402-08:00,1001.7531127929688,10.831818,10831.818 +4262,2025-03-07T12:46:22.708862-08:00,1001.7067260742188,10.84546,10845.46 +4263,2025-03-07T12:46:33.558753-08:00,1001.7078247070312,10.849891,10849.891 +4264,2025-03-07T12:46:44.398585-08:00,1001.6959228515625,10.839832,10839.832 +4265,2025-03-07T12:46:55.234222-08:00,1001.6760864257812,10.835637,10835.637 +4266,2025-03-07T12:47:06.076999-08:00,1001.697021484375,10.842777,10842.777 +4267,2025-03-07T12:47:16.917584-08:00,1001.6771850585938,10.840585,10840.585 +4268,2025-03-07T12:47:27.765191-08:00,1001.6795043945312,10.847607,10847.607 +4269,2025-03-07T12:47:38.597868-08:00,1001.7168579101562,10.832677,10832.677 +4270,2025-03-07T12:47:49.442836-08:00,1001.7137451171875,10.844968,10844.968 +4271,2025-03-07T12:48:00.279646-08:00,1001.70703125,10.83681,10836.81 +4272,2025-03-07T12:48:11.128021-08:00,1001.6871948242188,10.848375,10848.375 +4273,2025-03-07T12:48:21.965975-08:00,1001.6976318359375,10.837954,10837.954 +4274,2025-03-07T12:48:32.810813-08:00,1001.702880859375,10.844838,10844.838 +4275,2025-03-07T12:48:43.654786-08:00,1001.6390380859375,10.843973,10843.973 +4276,2025-03-07T12:48:54.498921-08:00,1001.673583984375,10.844135,10844.135 +4277,2025-03-07T12:49:05.341722-08:00,1001.673583984375,10.842801,10842.801 +4278,2025-03-07T12:49:16.184907-08:00,1001.7076416015625,10.843185,10843.185 +4279,2025-03-07T12:49:27.015642-08:00,1001.7090454101562,10.830735,10830.735 +4280,2025-03-07T12:49:37.857590-08:00,1001.69580078125,10.841948,10841.948 +4281,2025-03-07T12:49:48.692890-08:00,1001.6693725585938,10.8353,10835.3 +4282,2025-03-07T12:49:59.531585-08:00,1001.7059326171875,10.838695,10838.695 +4283,2025-03-07T12:50:10.376096-08:00,1001.7006225585938,10.844511,10844.511 +4284,2025-03-07T12:50:21.216590-08:00,1001.6898193359375,10.840494,10840.494 +4285,2025-03-07T12:50:32.058873-08:00,1001.681884765625,10.842283,10842.283 +4286,2025-03-07T12:50:42.902804-08:00,1001.710693359375,10.843931,10843.931 +4287,2025-03-07T12:50:53.744830-08:00,1001.697509765625,10.842026,10842.026 +4288,2025-03-07T12:51:04.576603-08:00,1001.715576171875,10.831773,10831.773 +4289,2025-03-07T12:51:15.428536-08:00,1001.728759765625,10.851933,10851.933 +4290,2025-03-07T12:51:26.262623-08:00,1001.7145385742188,10.834087,10834.087 +4291,2025-03-07T12:51:37.105858-08:00,1001.6747436523438,10.843235,10843.235 +4292,2025-03-07T12:51:47.953567-08:00,1001.6890869140625,10.847709,10847.709 +4293,2025-03-07T12:51:58.791996-08:00,1001.690185546875,10.838429,10838.429 +4294,2025-03-07T12:52:09.639261-08:00,1001.705810546875,10.847265,10847.265 +4295,2025-03-07T12:52:20.477795-08:00,1001.7081298828125,10.838534,10838.534 +4296,2025-03-07T12:52:31.325770-08:00,1001.7359619140625,10.847975,10847.975 +4297,2025-03-07T12:52:42.161826-08:00,1001.6949462890625,10.836056,10836.056 +4298,2025-03-07T12:52:53.001627-08:00,1001.7237548828125,10.839801,10839.801 +4299,2025-03-07T12:53:03.850567-08:00,1001.7105712890625,10.84894,10848.94 +4300,2025-03-07T12:53:14.687844-08:00,1001.6830444335938,10.837277,10837.277 +4301,2025-03-07T12:53:25.536587-08:00,1001.7039184570312,10.848743,10848.743 +4302,2025-03-07T12:53:36.367915-08:00,1001.705322265625,10.831328,10831.328 +4303,2025-03-07T12:53:47.205581-08:00,1001.6986694335938,10.837666,10837.666 +4304,2025-03-07T12:53:58.042600-08:00,1001.6854858398438,10.837019,10837.019 +4305,2025-03-07T12:54:08.886588-08:00,1001.71435546875,10.843988,10843.988 +4306,2025-03-07T12:54:19.720580-08:00,1001.706298828125,10.833992,10833.992 +4307,2025-03-07T12:54:30.560836-08:00,1001.7153930664062,10.840256,10840.256 +4308,2025-03-07T12:54:41.397951-08:00,1001.7153930664062,10.837115,10837.115 +4309,2025-03-07T12:54:52.230586-08:00,1001.6889038085938,10.832635,10832.635 +4310,2025-03-07T12:55:03.061887-08:00,1001.708740234375,10.831301,10831.301 +4311,2025-03-07T12:55:13.896845-08:00,1001.7101440429688,10.834958,10834.958 +4312,2025-03-07T12:55:24.729894-08:00,1001.7045288085938,10.833049,10833.049 +4313,2025-03-07T12:55:35.578980-08:00,1001.7508544921875,10.849086,10849.086 +4314,2025-03-07T12:55:46.416587-08:00,1001.7059326171875,10.837607,10837.607 +4315,2025-03-07T12:55:57.250587-08:00,1001.708251953125,10.834,10834.0 +4316,2025-03-07T12:56:08.095590-08:00,1001.7215576171875,10.845003,10845.003 +4317,2025-03-07T12:56:18.940855-08:00,1001.6828002929688,10.845265,10845.265 +4318,2025-03-07T12:56:29.777801-08:00,1001.7755737304688,10.836946,10836.946 +4319,2025-03-07T12:56:40.610831-08:00,1001.7093505859375,10.83303,10833.03 +4320,2025-03-07T12:56:51.458982-08:00,1001.7845458984375,10.848151,10848.151 +4321,2025-03-07T12:57:02.293583-08:00,1001.75048828125,10.834601,10834.601 +4322,2025-03-07T12:57:13.133589-08:00,1001.732666015625,10.840006,10840.006 +4323,2025-03-07T12:57:23.971586-08:00,1001.760498046875,10.837997,10837.997 +4324,2025-03-07T12:57:34.810303-08:00,1001.7420043945312,10.838717,10838.717 +4325,2025-03-07T12:57:45.649577-08:00,1001.7022705078125,10.839274,10839.274 +4326,2025-03-07T12:57:56.490593-08:00,1001.6980590820312,10.841016,10841.016 +4327,2025-03-07T12:58:07.325140-08:00,1001.70361328125,10.834547,10834.547 +4328,2025-03-07T12:58:18.155691-08:00,1001.71923828125,10.830551,10830.551 +4329,2025-03-07T12:58:28.996590-08:00,1001.71923828125,10.840899,10840.899 +4330,2025-03-07T12:58:39.829823-08:00,1001.7415771484375,10.833233,10833.233 +4331,2025-03-07T12:58:50.665587-08:00,1001.70703125,10.835764,10835.764 +4332,2025-03-07T12:59:01.515215-08:00,1001.7017822265625,10.849628,10849.628 +4333,2025-03-07T12:59:12.346580-08:00,1001.6896362304688,10.831365,10831.365 +4334,2025-03-07T12:59:23.181588-08:00,1001.6896362304688,10.835008,10835.008 +4335,2025-03-07T12:59:34.019830-08:00,1001.6975708007812,10.838242,10838.242 +4336,2025-03-07T12:59:44.868888-08:00,1001.6986083984375,10.849058,10849.058 +4337,2025-03-07T12:59:55.709624-08:00,1001.7107543945312,10.840736,10840.736 +4338,2025-03-07T13:00:06.543726-08:00,1001.7251586914062,10.834102,10834.102 +4339,2025-03-07T13:00:17.386925-08:00,1001.7383422851562,10.843199,10843.199 +4340,2025-03-07T13:00:28.221583-08:00,1001.7198486328125,10.834658,10834.658 +4341,2025-03-07T13:00:39.055643-08:00,1001.7118530273438,10.83406,10834.06 +4342,2025-03-07T13:00:49.891874-08:00,1001.6787719726562,10.836231,10836.231 +4343,2025-03-07T13:01:00.736972-08:00,1001.68115234375,10.845098,10845.098 +4344,2025-03-07T13:01:11.580585-08:00,1001.674560546875,10.843613,10843.613 +4345,2025-03-07T13:01:22.425801-08:00,1001.7090454101562,10.845216,10845.216 +4346,2025-03-07T13:01:33.261133-08:00,1001.6891479492188,10.835332,10835.332 +4347,2025-03-07T13:01:44.108828-08:00,1001.7100830078125,10.847695,10847.695 +4348,2025-03-07T13:01:54.945793-08:00,1001.7246704101562,10.836965,10836.965 +4349,2025-03-07T13:02:05.789590-08:00,1001.704833984375,10.843797,10843.797 +4350,2025-03-07T13:02:16.632830-08:00,1001.74658203125,10.84324,10843.24 +4351,2025-03-07T13:02:27.479888-08:00,1001.7333374023438,10.847058,10847.058 +4352,2025-03-07T13:02:38.322640-08:00,1001.7281494140625,10.842752,10842.752 +4353,2025-03-07T13:02:49.164852-08:00,1001.7015380859375,10.842212,10842.212 +4354,2025-03-07T13:03:00.009587-08:00,1001.7224731445312,10.844735,10844.735 +4355,2025-03-07T13:03:10.857759-08:00,1001.7357788085938,10.848172,10848.172 +4356,2025-03-07T13:03:21.700788-08:00,1001.6907958984375,10.843029,10843.029 +4357,2025-03-07T13:03:32.550405-08:00,1001.693115234375,10.849617,10849.617 +4358,2025-03-07T13:03:43.392586-08:00,1001.7130737304688,10.842181,10842.181 +4359,2025-03-07T13:03:54.235817-08:00,1001.7022094726562,10.843231,10843.231 +4360,2025-03-07T13:04:05.074593-08:00,1001.7406005859375,10.838776,10838.776 +4361,2025-03-07T13:04:15.911619-08:00,1001.6942138671875,10.837026,10837.026 +4362,2025-03-07T13:04:26.748878-08:00,1001.6889038085938,10.837259,10837.259 +4363,2025-03-07T13:04:37.591828-08:00,1001.697998046875,10.84295,10842.95 +4364,2025-03-07T13:04:48.435996-08:00,1001.6624755859375,10.844168,10844.168 +4365,2025-03-07T13:04:59.284253-08:00,1001.6766967773438,10.848257,10848.257 +4366,2025-03-07T13:05:10.127808-08:00,1001.6724853515625,10.843555,10843.555 +4367,2025-03-07T13:05:20.966424-08:00,1001.6426391601562,10.838616,10838.616 +4368,2025-03-07T13:05:31.816592-08:00,1001.6213989257812,10.850168,10850.168 +4369,2025-03-07T13:05:42.475140-08:00,1001.6189575195312,10.658548,10658.548 +4370,2025-03-07T13:05:53.327124-08:00,1001.6359252929688,10.851984,10851.984 +4371,2025-03-07T13:06:04.161898-08:00,1001.6624755859375,10.834774,10834.774 +4372,2025-03-07T13:06:15.013807-08:00,1001.6956176757812,10.851909,10851.909 +4373,2025-03-07T13:06:25.853799-08:00,1001.6492309570312,10.839992,10839.992 +4374,2025-03-07T13:06:36.709067-08:00,1001.683349609375,10.855268,10855.268 +4375,2025-03-07T13:06:47.555456-08:00,1001.6426391601562,10.846389,10846.389 +4376,2025-03-07T13:06:58.398608-08:00,1001.6715087890625,10.843152,10843.152 +4377,2025-03-07T13:07:09.241803-08:00,1001.6492309570312,10.843195,10843.195 +4378,2025-03-07T13:07:20.083806-08:00,1001.6227416992188,10.842003,10842.003 +4379,2025-03-07T13:07:30.928808-08:00,1001.670166015625,10.845002,10845.002 +4380,2025-03-07T13:07:41.774027-08:00,1001.6436157226562,10.845219,10845.219 +4381,2025-03-07T13:07:52.622144-08:00,1001.62939453125,10.848117,10848.117 +4382,2025-03-07T13:08:03.461839-08:00,1001.626953125,10.839695,10839.695 +4383,2025-03-07T13:08:14.301802-08:00,1001.6624755859375,10.839963,10839.963 +4384,2025-03-07T13:08:25.139072-08:00,1001.6600952148438,10.83727,10837.27 +4385,2025-03-07T13:08:35.987727-08:00,1001.64013671875,10.848655,10848.655 +4386,2025-03-07T13:08:46.826803-08:00,1001.6336059570312,10.839076,10839.076 +4387,2025-03-07T13:08:57.669808-08:00,1001.6454467773438,10.843005,10843.005 +4388,2025-03-07T13:09:08.507115-08:00,1001.611328125,10.837307,10837.307 +4389,2025-03-07T13:09:19.348842-08:00,1001.64013671875,10.841727,10841.727 +4390,2025-03-07T13:09:30.192048-08:00,1001.62451171875,10.843206,10843.206 +4391,2025-03-07T13:09:41.043519-08:00,1001.59814453125,10.851471,10851.471 +4392,2025-03-07T13:09:51.878150-08:00,1001.6033325195312,10.834631,10834.631 +4393,2025-03-07T13:10:02.729426-08:00,1001.6155395507812,10.851276,10851.276 +4394,2025-03-07T13:10:13.567799-08:00,1001.5956420898438,10.838373,10838.373 +4395,2025-03-07T13:10:24.414644-08:00,1001.6076049804688,10.846845,10846.845 +4396,2025-03-07T13:10:35.258843-08:00,1001.5988159179688,10.844199,10844.199 +4397,2025-03-07T13:10:46.103066-08:00,1001.6141967773438,10.844223,10844.223 +4398,2025-03-07T13:10:56.938852-08:00,1001.5988159179688,10.835786,10835.786 +4399,2025-03-07T13:11:07.786806-08:00,1001.646240234375,10.847954,10847.954 +4400,2025-03-07T13:11:18.626808-08:00,1001.6295166015625,10.840002,10840.002 +4401,2025-03-07T13:11:29.473807-08:00,1001.5974731445312,10.846999,10846.999 +4402,2025-03-07T13:11:40.309960-08:00,1001.5950927734375,10.836153,10836.153 +4403,2025-03-07T13:11:51.156850-08:00,1001.6480712890625,10.84689,10846.89 +4404,2025-03-07T13:12:02.006331-08:00,1001.6138916015625,10.849481,10849.481 +4405,2025-03-07T13:12:12.849781-08:00,1001.6138916015625,10.84345,10843.45 +4406,2025-03-07T13:12:23.702052-08:00,1001.599365234375,10.852271,10852.271 +4407,2025-03-07T13:12:34.552837-08:00,1001.5926513671875,10.850785,10850.785 +4408,2025-03-07T13:12:45.397213-08:00,1001.5794677734375,10.844376,10844.376 +4409,2025-03-07T13:12:56.245097-08:00,1001.5861206054688,10.847884,10847.884 +4410,2025-03-07T13:13:07.090888-08:00,1001.5770263671875,10.845791,10845.791 +4411,2025-03-07T13:13:17.931857-08:00,1001.5693969726562,10.840969,10840.969 +4412,2025-03-07T13:13:28.774805-08:00,1001.59033203125,10.842948,10842.948 +4413,2025-03-07T13:13:39.618410-08:00,1001.5670166015625,10.843605,10843.605 +4414,2025-03-07T13:13:50.460414-08:00,1001.5656127929688,10.842004,10842.004 +4415,2025-03-07T13:14:01.309806-08:00,1001.59765625,10.849392,10849.392 +4416,2025-03-07T13:14:12.158856-08:00,1001.612060546875,10.84905,10849.05 +4417,2025-03-07T13:14:23.001807-08:00,1001.6572875976562,10.842951,10842.951 +4418,2025-03-07T13:14:33.843856-08:00,1001.5778198242188,10.842049,10842.049 +4419,2025-03-07T13:14:44.683073-08:00,1001.6082763671875,10.839217,10839.217 +4420,2025-03-07T13:14:55.524046-08:00,1001.5751342773438,10.840973,10840.973 +4421,2025-03-07T13:15:06.369793-08:00,1001.57373046875,10.845747,10845.747 +4422,2025-03-07T13:15:17.206665-08:00,1001.5671997070312,10.836872,10836.872 +4423,2025-03-07T13:15:28.061134-08:00,1001.57275390625,10.854469,10854.469 +4424,2025-03-07T13:15:38.896794-08:00,1001.57275390625,10.83566,10835.66 +4425,2025-03-07T13:15:49.741028-08:00,1001.6068725585938,10.844234,10844.234 +4426,2025-03-07T13:16:00.588807-08:00,1001.5661010742188,10.847779,10847.779 +4427,2025-03-07T13:16:11.427803-08:00,1001.532958984375,10.838996,10838.996 +4428,2025-03-07T13:16:22.269570-08:00,1001.5595092773438,10.841767,10841.767 +4429,2025-03-07T13:16:33.118298-08:00,1001.5306396484375,10.848728,10848.728 +4430,2025-03-07T13:16:43.961797-08:00,1001.5239868164062,10.843499,10843.499 +4431,2025-03-07T13:16:54.802871-08:00,1001.5504760742188,10.841074,10841.074 +4432,2025-03-07T13:17:05.648434-08:00,1001.5187377929688,10.845563,10845.563 +4433,2025-03-07T13:17:16.478799-08:00,1001.5438232421875,10.830365,10830.365 +4434,2025-03-07T13:17:27.320808-08:00,1001.545166015625,10.842009,10842.009 +4435,2025-03-07T13:17:38.167064-08:00,1001.5239868164062,10.846256,10846.256 +4436,2025-03-07T13:17:49.018805-08:00,1001.5361938476562,10.851741,10851.741 +4437,2025-03-07T13:17:49.018805-08:00,1001.5361938476562,0.0,0.0 +4438,2025-03-07T13:17:59.862369-08:00,1001.5745239257812,10.843564,10843.564 +4439,2025-03-07T13:18:10.700678-08:00,1001.6065673828125,10.838309,10838.309 +4440,2025-03-07T13:18:21.549853-08:00,1001.56689453125,10.849175,10849.175 +4441,2025-03-07T13:18:32.392781-08:00,1001.5167236328125,10.842928,10842.928 +4442,2025-03-07T13:18:43.248124-08:00,1001.5722045898438,10.855343,10855.343 +4443,2025-03-07T13:18:54.090165-08:00,1001.5156860351562,10.842041,10842.041 +4444,2025-03-07T13:19:04.945181-08:00,1001.5564575195312,10.855016,10855.016 +4445,2025-03-07T13:19:15.781797-08:00,1001.5156860351562,10.836616,10836.616 +4446,2025-03-07T13:19:26.632628-08:00,1001.5408325195312,10.850831,10850.831 +4447,2025-03-07T13:19:37.485068-08:00,1001.5053100585938,10.85244,10852.44 +4448,2025-03-07T13:19:48.325805-08:00,1001.54638671875,10.840737,10840.737 +4449,2025-03-07T13:19:59.160408-08:00,1001.5265502929688,10.834603,10834.603 +4450,2025-03-07T13:20:10.006565-08:00,1001.524169921875,10.846157,10846.157 +4451,2025-03-07T13:20:20.846448-08:00,1001.524169921875,10.839883,10839.883 +4452,2025-03-07T13:20:31.699950-08:00,1001.5228271484375,10.853502,10853.502 +4453,2025-03-07T13:20:42.544903-08:00,1001.509521484375,10.844953,10844.953 +4454,2025-03-07T13:20:53.387251-08:00,1001.493896484375,10.842348,10842.348 +4455,2025-03-07T13:21:04.230343-08:00,1001.5005493164062,10.843092,10843.092 +4456,2025-03-07T13:21:15.062185-08:00,1001.5072021484375,10.831842,10831.842 +4457,2025-03-07T13:21:25.905262-08:00,1001.4729614257812,10.843077,10843.077 +4458,2025-03-07T13:21:36.741458-08:00,1001.5137329101562,10.836196,10836.196 +4459,2025-03-07T13:21:47.592117-08:00,1001.446533203125,10.850659,10850.659 +4460,2025-03-07T13:21:58.428070-08:00,1001.4796142578125,10.835953,10835.953 +4461,2025-03-07T13:22:09.277172-08:00,1001.5137329101562,10.849102,10849.102 +4462,2025-03-07T13:22:20.125874-08:00,1001.4796142578125,10.848702,10848.702 +4463,2025-03-07T13:22:30.971542-08:00,1001.4796142578125,10.845668,10845.668 +4464,2025-03-07T13:22:41.817793-08:00,1001.4927978515625,10.846251,10846.251 +4465,2025-03-07T13:22:52.655944-08:00,1001.4597778320312,10.838151,10838.151 +4466,2025-03-07T13:23:03.505044-08:00,1001.4441528320312,10.8491,10849.1 +4467,2025-03-07T13:23:14.353871-08:00,1001.4375,10.848827,10848.827 +4468,2025-03-07T13:23:25.201875-08:00,1001.4827880859375,10.848004,10848.004 +4469,2025-03-07T13:23:36.045179-08:00,1001.4483032226562,10.843304,10843.304 +4470,2025-03-07T13:23:46.882911-08:00,1001.4274291992188,10.837732,10837.732 +4471,2025-03-07T13:23:57.727977-08:00,1001.4473266601562,10.845066,10845.066 +4472,2025-03-07T13:24:08.563383-08:00,1001.4605712890625,10.835406,10835.406 +4473,2025-03-07T13:24:19.417199-08:00,1001.4539184570312,10.853816,10853.816 +4474,2025-03-07T13:24:30.253049-08:00,1001.41943359375,10.83585,10835.85 +4475,2025-03-07T13:24:41.102827-08:00,1001.412841796875,10.849778,10849.778 +4476,2025-03-07T13:24:51.949383-08:00,1001.3919677734375,10.846556,10846.556 +4477,2025-03-07T13:25:02.793789-08:00,1001.4326782226562,10.844406,10844.406 +4478,2025-03-07T13:25:13.641843-08:00,1001.397216796875,10.848054,10848.054 +4479,2025-03-07T13:25:24.483090-08:00,1001.4118041992188,10.841247,10841.247 +4480,2025-03-07T13:25:35.325806-08:00,1001.4104614257812,10.842716,10842.716 +4481,2025-03-07T13:25:46.165177-08:00,1001.3986206054688,10.839371,10839.371 +4482,2025-03-07T13:25:57.012802-08:00,1001.40380859375,10.847625,10847.625 +4483,2025-03-07T13:26:07.861404-08:00,1001.3895263671875,10.848602,10848.602 +4484,2025-03-07T13:26:18.707942-08:00,1001.3961181640625,10.846538,10846.538 +4485,2025-03-07T13:26:29.543806-08:00,1001.4080200195312,10.835864,10835.864 +4486,2025-03-07T13:26:40.387804-08:00,1001.381591796875,10.843998,10843.998 +4487,2025-03-07T13:26:51.220583-08:00,1001.376220703125,10.832779,10832.779 +4488,2025-03-07T13:27:02.069394-08:00,1001.347412109375,10.848811,10848.811 +4489,2025-03-07T13:27:12.909793-08:00,1001.347412109375,10.840399,10840.399 +4490,2025-03-07T13:27:23.752805-08:00,1001.3616943359375,10.843012,10843.012 +4491,2025-03-07T13:27:34.598983-08:00,1001.32861328125,10.846178,10846.178 +4492,2025-03-07T13:27:45.436907-08:00,1001.3209228515625,10.837924,10837.924 +4493,2025-03-07T13:27:56.278734-08:00,1001.2854614257812,10.841827,10841.827 +4494,2025-03-07T13:28:07.122978-08:00,1001.3394775390625,10.844244,10844.244 +4495,2025-03-07T13:28:17.964785-08:00,1001.3262329101562,10.841807,10841.807 +4496,2025-03-07T13:28:28.805195-08:00,1001.3317260742188,10.84041,10840.41 +4497,2025-03-07T13:28:39.639802-08:00,1001.3593139648438,10.834607,10834.607 +4498,2025-03-07T13:28:50.489797-08:00,1001.3582763671875,10.849995,10849.995 +4499,2025-03-07T13:29:01.326218-08:00,1001.3185424804688,10.836421,10836.421 +4500,2025-03-07T13:29:12.165807-08:00,1001.3394775390625,10.839589,10839.589 +4501,2025-03-07T13:29:23.011802-08:00,1001.3185424804688,10.845995,10845.995 +4502,2025-03-07T13:29:33.857000-08:00,1001.3063354492188,10.845198,10845.198 +4503,2025-03-07T13:29:44.697327-08:00,1001.3426513671875,10.840327,10840.327 +4504,2025-03-07T13:29:55.543119-08:00,1001.3171997070312,10.845792,10845.792 +4505,2025-03-07T13:30:06.374889-08:00,1001.3185424804688,10.83177,10831.77 +4506,2025-03-07T13:30:17.221781-08:00,1001.2684326171875,10.846892,10846.892 +4507,2025-03-07T13:30:28.064962-08:00,1001.294921875,10.843181,10843.181 +4508,2025-03-07T13:30:38.902403-08:00,1001.3004760742188,10.837441,10837.441 +4509,2025-03-07T13:30:49.744676-08:00,1001.3214111328125,10.842273,10842.273 +4510,2025-03-07T13:31:00.582806-08:00,1001.32275390625,10.83813,10838.13 +4511,2025-03-07T13:31:11.416630-08:00,1001.28173828125,10.833824,10833.824 +4512,2025-03-07T13:31:22.253890-08:00,1001.3015747070312,10.83726,10837.26 +4513,2025-03-07T13:31:33.090786-08:00,1001.279296875,10.836896,10836.896 +4514,2025-03-07T13:31:43.938124-08:00,1001.3478393554688,10.847338,10847.338 +4515,2025-03-07T13:31:54.769950-08:00,1001.2991333007812,10.831826,10831.826 +4516,2025-03-07T13:32:05.612852-08:00,1001.2806396484375,10.842902,10842.902 +4517,2025-03-07T13:32:16.452805-08:00,1001.2583618164062,10.839953,10839.953 +4518,2025-03-07T13:32:27.294082-08:00,1001.283447265625,10.841277,10841.277 +4519,2025-03-07T13:32:38.127929-08:00,1001.2991333007812,10.833847,10833.847 +4520,2025-03-07T13:32:48.963622-08:00,1001.298095703125,10.835693,10835.693 +4521,2025-03-07T13:32:59.800880-08:00,1001.2991333007812,10.837258,10837.258 +4522,2025-03-07T13:33:10.649970-08:00,1001.2650146484375,10.84909,10849.09 +4523,2025-03-07T13:33:21.481083-08:00,1001.2636108398438,10.831113,10831.113 +4524,2025-03-07T13:33:32.324173-08:00,1001.2966918945312,10.84309,10843.09 +4525,2025-03-07T13:33:43.161796-08:00,1001.3033447265625,10.837623,10837.623 +4526,2025-03-07T13:33:53.994690-08:00,1001.2615356445312,10.832894,10832.894 +4527,2025-03-07T13:34:04.838294-08:00,1001.282470703125,10.843604,10843.604 +4528,2025-03-07T13:34:15.680049-08:00,1001.2337646484375,10.841755,10841.755 +4529,2025-03-07T13:34:26.517839-08:00,1001.3155517578125,10.83779,10837.79 +4530,2025-03-07T13:34:37.359884-08:00,1001.2723388671875,10.842045,10842.045 +4531,2025-03-07T13:34:48.193063-08:00,1001.3409423828125,10.833179,10833.179 +4532,2025-03-07T13:34:59.036442-08:00,1001.2998657226562,10.843379,10843.379 +4533,2025-03-07T13:35:09.887136-08:00,1001.28662109375,10.850694,10850.694 +4534,2025-03-07T13:35:20.721171-08:00,1001.2789916992188,10.834035,10834.035 +4535,2025-03-07T13:35:31.558803-08:00,1001.298828125,10.837632,10837.632 +4536,2025-03-07T13:35:42.408037-08:00,1001.29638671875,10.849234,10849.234 +4537,2025-03-07T13:35:53.238802-08:00,1001.2842407226562,10.830765,10830.765 +4538,2025-03-07T13:36:04.079133-08:00,1001.2908325195312,10.840331,10840.331 +4539,2025-03-07T13:36:14.920138-08:00,1001.2921752929688,10.841005,10841.005 +4540,2025-03-07T13:36:25.763912-08:00,1001.3306274414062,10.843774,10843.774 +4541,2025-03-07T13:36:36.602148-08:00,1001.3239135742188,10.838236,10838.236 +4542,2025-03-07T13:36:47.454152-08:00,1001.31494140625,10.852004,10852.004 +4543,2025-03-07T13:36:58.290802-08:00,1001.2686157226562,10.83665,10836.65 +4544,2025-03-07T13:37:09.139960-08:00,1001.3162231445312,10.849158,10849.158 +4545,2025-03-07T13:37:19.982807-08:00,1001.3096923828125,10.842847,10842.847 +4546,2025-03-07T13:37:30.815588-08:00,1001.310791015625,10.832781,10832.781 +4547,2025-03-07T13:37:41.665461-08:00,1001.3096923828125,10.849873,10849.873 +4548,2025-03-07T13:37:52.500801-08:00,1001.310791015625,10.83534,10835.34 +4549,2025-03-07T13:38:03.345052-08:00,1001.283203125,10.844251,10844.251 +4550,2025-03-07T13:38:14.181821-08:00,1001.3139038085938,10.836769,10836.769 +4551,2025-03-07T13:38:25.017848-08:00,1001.3428344726562,10.836027,10836.027 +4552,2025-03-07T13:38:35.861853-08:00,1001.3428344726562,10.844005,10844.005 +4553,2025-03-07T13:38:46.701059-08:00,1001.3270874023438,10.839206,10839.206 +4554,2025-03-07T13:38:57.537653-08:00,1001.3414306640625,10.836594,10836.594 +4555,2025-03-07T13:39:08.376800-08:00,1001.3072509765625,10.839147,10839.147 +4556,2025-03-07T13:39:19.223820-08:00,1001.3470458984375,10.84702,10847.02 +4557,2025-03-07T13:39:30.066439-08:00,1001.3082885742188,10.842619,10842.619 +4558,2025-03-07T13:39:40.898802-08:00,1001.3546752929688,10.832363,10832.363 +4559,2025-03-07T13:39:51.736804-08:00,1001.2662353515625,10.838002,10838.002 +4560,2025-03-07T13:40:02.583782-08:00,1001.29931640625,10.846978,10846.978 +4561,2025-03-07T13:40:13.422601-08:00,1001.3511962890625,10.838819,10838.819 +4562,2025-03-07T13:40:24.259800-08:00,1001.3470458984375,10.837199,10837.199 +4563,2025-03-07T13:40:35.099810-08:00,1001.3233642578125,10.84001,10840.01 +4564,2025-03-07T13:40:45.942290-08:00,1001.3010864257812,10.84248,10842.48 +4565,2025-03-07T13:40:56.778967-08:00,1001.3563842773438,10.836677,10836.677 +4566,2025-03-07T13:41:07.610092-08:00,1001.2693481445312,10.831125,10831.125 +4567,2025-03-07T13:41:18.453087-08:00,1001.3233642578125,10.842995,10842.995 +4568,2025-03-07T13:41:29.296257-08:00,1001.315673828125,10.84317,10843.17 +4569,2025-03-07T13:41:40.136945-08:00,1001.334228515625,10.840688,10840.688 +4570,2025-03-07T13:41:50.975869-08:00,1001.3289184570312,10.838924,10838.924 +4571,2025-03-07T13:42:01.813003-08:00,1001.3167114257812,10.837134,10837.134 +4572,2025-03-07T13:42:12.651802-08:00,1001.2892456054688,10.838799,10838.799 +4573,2025-03-07T13:42:23.487801-08:00,1001.24951171875,10.835999,10835.999 +4574,2025-03-07T13:42:34.321332-08:00,1001.2637329101562,10.833531,10833.531 +4575,2025-03-07T13:42:45.156794-08:00,1001.3233642578125,10.835462,10835.462 +4576,2025-03-07T13:42:55.987052-08:00,1001.32470703125,10.830258,10830.258 +4577,2025-03-07T13:43:06.826124-08:00,1001.290283203125,10.839072,10839.072 +4578,2025-03-07T13:43:17.659083-08:00,1001.3101806640625,10.832959,10832.959 +4579,2025-03-07T13:43:28.490856-08:00,1001.331298828125,10.831773,10831.773 +4580,2025-03-07T13:43:39.332806-08:00,1001.318115234375,10.84195,10841.95 +4581,2025-03-07T13:43:50.170324-08:00,1001.3270874023438,10.837518,10837.518 +4582,2025-03-07T13:44:01.001774-08:00,1001.32470703125,10.83145,10831.45 +4583,2025-03-07T13:44:11.844807-08:00,1001.3445434570312,10.843033,10843.033 +4584,2025-03-07T13:44:22.678134-08:00,1001.3445434570312,10.833327,10833.327 +4585,2025-03-07T13:44:33.524058-08:00,1001.331298828125,10.845924,10845.924 +4586,2025-03-07T13:44:44.357807-08:00,1001.290283203125,10.833749,10833.749 +4587,2025-03-07T13:44:55.199084-08:00,1001.318115234375,10.841277,10841.277 +4588,2025-03-07T13:45:06.044142-08:00,1001.331298828125,10.845058,10845.058 +4589,2025-03-07T13:45:16.882805-08:00,1001.3365478515625,10.838663,10838.663 +4590,2025-03-07T13:45:27.719805-08:00,1001.3355712890625,10.837,10837.0 +4591,2025-03-07T13:45:38.561054-08:00,1001.3035278320312,10.841249,10841.249 +4592,2025-03-07T13:45:49.394140-08:00,1001.3048706054688,10.833086,10833.086 +4593,2025-03-07T13:46:00.236797-08:00,1001.3289184570312,10.842657,10842.657 +4594,2025-03-07T13:46:11.075803-08:00,1001.376220703125,10.839006,10839.006 +4595,2025-03-07T13:46:21.930062-08:00,1001.2770385742188,10.854259,10854.259 +4596,2025-03-07T13:46:32.765811-08:00,1001.2627563476562,10.835749,10835.749 +4597,2025-03-07T13:46:43.607993-08:00,1001.3101806640625,10.842182,10842.182 +4598,2025-03-07T13:46:54.452803-08:00,1001.315673828125,10.84481,10844.81 +4599,2025-03-07T13:47:05.295789-08:00,1001.3167114257812,10.842986,10842.986 +4600,2025-03-07T13:47:16.132022-08:00,1001.2693481445312,10.836233,10836.233 +4601,2025-03-07T13:47:26.970803-08:00,1001.2770385742188,10.838781,10838.781 +4602,2025-03-07T13:47:37.812811-08:00,1001.3563842773438,10.842008,10842.008 +4603,2025-03-07T13:47:48.652300-08:00,1001.315673828125,10.839489,10839.489 +4604,2025-03-07T13:47:59.499835-08:00,1001.315673828125,10.847535,10847.535 +4605,2025-03-07T13:48:10.332807-08:00,1001.29345703125,10.832972,10832.972 +4606,2025-03-07T13:48:21.175799-08:00,1001.28125,10.842992,10842.992 +4607,2025-03-07T13:48:32.006848-08:00,1001.2614135742188,10.831049,10831.049 +4608,2025-03-07T13:48:42.848805-08:00,1001.30908203125,10.841957,10841.957 +4609,2025-03-07T13:48:53.687804-08:00,1001.240478515625,10.838999,10838.999 +4610,2025-03-07T13:49:04.531246-08:00,1001.240478515625,10.843442,10843.442 +4611,2025-03-07T13:49:15.366212-08:00,1001.2679443359375,10.834966,10834.966 +4612,2025-03-07T13:49:26.205808-08:00,1001.228271484375,10.839596,10839.596 +4613,2025-03-07T13:49:37.049355-08:00,1001.3067016601562,10.843547,10843.547 +4614,2025-03-07T13:49:47.885091-08:00,1001.2547607421875,10.835736,10835.736 +4615,2025-03-07T13:49:58.722797-08:00,1001.2537231445312,10.837706,10837.706 +4616,2025-03-07T13:50:09.569816-08:00,1001.2679443359375,10.847019,10847.019 +4617,2025-03-07T13:50:20.410491-08:00,1001.2669677734375,10.840675,10840.675 +4618,2025-03-07T13:50:31.251796-08:00,1001.2471313476562,10.841305,10841.305 +4619,2025-03-07T13:50:42.098841-08:00,1001.2523193359375,10.847045,10847.045 +4620,2025-03-07T13:50:52.941879-08:00,1001.2259521484375,10.843038,10843.038 +4621,2025-03-07T13:51:03.785788-08:00,1001.2324829101562,10.843909,10843.909 +4622,2025-03-07T13:51:14.624148-08:00,1001.240478515625,10.83836,10838.36 +4623,2025-03-07T13:51:25.474113-08:00,1001.2115478515625,10.849965,10849.965 +4624,2025-03-07T13:51:36.316493-08:00,1001.2192993164062,10.84238,10842.38 +4625,2025-03-07T13:51:47.154808-08:00,1001.2324829101562,10.838315,10838.315 +4626,2025-03-07T13:51:57.993131-08:00,1001.212646484375,10.838323,10838.323 +4627,2025-03-07T13:52:08.845653-08:00,1001.2050170898438,10.852522,10852.522 +4628,2025-03-07T13:52:19.686965-08:00,1001.1983642578125,10.841312,10841.312 +4629,2025-03-07T13:52:30.541033-08:00,1001.197021484375,10.854068,10854.068 +4630,2025-03-07T13:52:41.385794-08:00,1001.1983642578125,10.844761,10844.761 +4631,2025-03-07T13:52:52.231246-08:00,1001.1959228515625,10.845452,10845.452 +4632,2025-03-07T13:53:03.076943-08:00,1001.149658203125,10.845697,10845.697 +4633,2025-03-07T13:53:13.934044-08:00,1001.1903686523438,10.857101,10857.101 +4634,2025-03-07T13:53:24.777109-08:00,1001.1695556640625,10.843065,10843.065 +4635,2025-03-07T13:53:35.626072-08:00,1001.1573486328125,10.848963,10848.963 +4636,2025-03-07T13:53:46.481119-08:00,1001.1959228515625,10.855047,10855.047 +4637,2025-03-07T13:53:57.320805-08:00,1001.1882934570312,10.839686,10839.686 +4638,2025-03-07T13:54:08.168028-08:00,1001.1959228515625,10.847223,10847.223 +4639,2025-03-07T13:54:19.019803-08:00,1001.1893920898438,10.851775,10851.775 +4640,2025-03-07T13:54:29.863393-08:00,1001.175048828125,10.84359,10843.59 +4641,2025-03-07T13:54:40.710695-08:00,1001.1604614257812,10.847302,10847.302 +4642,2025-03-07T13:54:51.560509-08:00,1001.16845703125,10.849814,10849.814 +4643,2025-03-07T13:55:02.400781-08:00,1001.1817016601562,10.840272,10840.272 +4644,2025-03-07T13:55:13.246995-08:00,1001.2025756835938,10.846214,10846.214 +4645,2025-03-07T13:55:24.099803-08:00,1001.1949462890625,10.852808,10852.808 +4646,2025-03-07T13:55:34.944809-08:00,1001.2157592773438,10.845006,10845.006 +4647,2025-03-07T13:55:45.788156-08:00,1001.209228515625,10.843347,10843.347 +4648,2025-03-07T13:55:56.642144-08:00,1001.2489013671875,10.853988,10853.988 +4649,2025-03-07T13:56:07.490367-08:00,1001.275390625,10.848223,10848.223 +4650,2025-03-07T13:56:18.345148-08:00,1001.2290649414062,10.854781,10854.781 +4651,2025-03-07T13:56:29.182862-08:00,1001.2489013671875,10.837714,10837.714 +4652,2025-03-07T13:56:40.025800-08:00,1001.2279663085938,10.842938,10842.938 +4653,2025-03-07T13:56:50.867178-08:00,1001.2423706054688,10.841378,10841.378 +4654,2025-03-07T13:57:01.718119-08:00,1001.2597045898438,10.850941,10850.941 +4655,2025-03-07T13:57:12.559806-08:00,1001.28857421875,10.841687,10841.687 +4656,2025-03-07T13:57:23.404803-08:00,1001.2520141601562,10.844997,10844.997 +4657,2025-03-07T13:57:34.251784-08:00,1001.30078125,10.846981,10846.981 +4658,2025-03-07T13:57:45.093798-08:00,1001.3471069335938,10.842014,10842.014 +4659,2025-03-07T13:57:55.944959-08:00,1001.2862548828125,10.851161,10851.161 +4660,2025-03-07T13:58:06.784763-08:00,1001.30078125,10.839804,10839.804 +4661,2025-03-07T13:58:17.624780-08:00,1001.291748046875,10.840017,10840.017 +4662,2025-03-07T13:58:28.462906-08:00,1001.3192749023438,10.838126,10838.126 +4663,2025-03-07T13:58:39.300521-08:00,1001.3060913085938,10.837615,10837.615 +4664,2025-03-07T13:58:50.140494-08:00,1001.3116455078125,10.839973,10839.973 +4665,2025-03-07T13:59:00.983868-08:00,1001.2464599609375,10.843374,10843.374 +4666,2025-03-07T13:59:11.825807-08:00,1001.2927856445312,10.841939,10841.939 +4667,2025-03-07T13:59:22.660852-08:00,1001.263916015625,10.835045,10835.045 +4668,2025-03-07T13:59:33.515538-08:00,1001.250732421875,10.854686,10854.686 +4669,2025-03-07T13:59:44.356064-08:00,1001.2970581054688,10.840526,10840.526 +4670,2025-03-07T13:59:55.201028-08:00,1001.263916015625,10.844964,10844.964 +4671,2025-03-07T14:00:06.054799-08:00,1001.2562255859375,10.853771,10853.771 +4672,2025-03-07T14:00:16.906033-08:00,1001.2562255859375,10.851234,10851.234 +4673,2025-03-07T14:00:27.743053-08:00,1001.2771606445312,10.83702,10837.02 +4674,2025-03-07T14:00:38.583848-08:00,1001.276123046875,10.840795,10840.795 +4675,2025-03-07T14:00:49.430797-08:00,1001.250732421875,10.846949,10846.949 +4676,2025-03-07T14:01:00.270815-08:00,1001.2664184570312,10.840018,10840.018 +4677,2025-03-07T14:01:11.120060-08:00,1001.2176513671875,10.849245,10849.245 +4678,2025-03-07T14:01:21.964118-08:00,1001.2653198242188,10.844058,10844.058 +4679,2025-03-07T14:01:32.806124-08:00,1001.2308349609375,10.842006,10842.006 +4680,2025-03-07T14:01:43.648803-08:00,1001.2562255859375,10.842679,10842.679 +4681,2025-03-07T14:01:54.502171-08:00,1001.2440795898438,10.853368,10853.368 +4682,2025-03-07T14:02:05.346211-08:00,1001.25732421875,10.84404,10844.04 +4683,2025-03-07T14:02:16.202365-08:00,1001.2440795898438,10.856154,10856.154 +4684,2025-03-07T14:02:27.050142-08:00,1001.25732421875,10.847777,10847.777 +4685,2025-03-07T14:02:37.892926-08:00,1001.2388305664062,10.842784,10842.784 +4686,2025-03-07T14:02:48.733943-08:00,1001.2597045898438,10.841017,10841.017 +4687,2025-03-07T14:02:59.565942-08:00,1001.2586669921875,10.831999,10831.999 +4688,2025-03-07T14:03:10.418360-08:00,1001.27294921875,10.852418,10852.418 +4689,2025-03-07T14:03:21.260995-08:00,1001.204345703125,10.842635,10842.635 +4690,2025-03-07T14:03:32.114502-08:00,1001.1793212890625,10.853507,10853.507 +4691,2025-03-07T14:03:42.951023-08:00,1001.205810546875,10.836521,10836.521 +4692,2025-03-07T14:03:42.951023-08:00,1001.205810546875,0.0,0.0 +4693,2025-03-07T14:03:53.804920-08:00,1001.2123413085938,10.853897,10853.897 +4694,2025-03-07T14:04:04.650804-08:00,1001.2464599609375,10.845884,10845.884 +4695,2025-03-07T14:04:15.492180-08:00,1001.2586669921875,10.841376,10841.376 +4696,2025-03-07T14:04:26.341182-08:00,1001.2545166015625,10.849002,10849.002 +4697,2025-03-07T14:04:37.184807-08:00,1001.250732421875,10.843625,10843.625 +4698,2025-03-07T14:04:48.027927-08:00,1001.2332763671875,10.84312,10843.12 +4699,2025-03-07T14:04:58.870897-08:00,1001.2545166015625,10.84297,10842.97 +4700,2025-03-07T14:05:09.715469-08:00,1001.2676391601562,10.844572,10844.572 +4701,2025-03-07T14:05:20.559568-08:00,1001.247802734375,10.844099,10844.099 +4702,2025-03-07T14:05:31.406855-08:00,1001.2555541992188,10.847287,10847.287 +4703,2025-03-07T14:05:42.477311-08:00,1001.30078125,11.070456,11070.456 +4704,2025-03-07T14:05:53.318503-08:00,1001.341552734375,10.841192,10841.192 +4705,2025-03-07T14:06:04.159196-08:00,1001.3140869140625,10.840693,10840.693 +4706,2025-03-07T14:06:15.005670-08:00,1001.3228149414062,10.846474,10846.474 +4707,2025-03-07T14:06:25.849706-08:00,1001.3206176757812,10.844036,10844.036 +4708,2025-03-07T14:06:36.688338-08:00,1001.2743530273438,10.838632,10838.632 +4709,2025-03-07T14:06:47.541528-08:00,1001.2597045898438,10.85319,10853.19 +4710,2025-03-07T14:06:58.388327-08:00,1001.2862548828125,10.846799,10846.799 +4711,2025-03-07T14:07:09.232268-08:00,1001.2586669921875,10.843941,10843.941 +4712,2025-03-07T14:07:20.075593-08:00,1001.3060913085938,10.843325,10843.325 +4713,2025-03-07T14:07:30.918615-08:00,1001.294189453125,10.843022,10843.022 +4714,2025-03-07T14:07:41.768276-08:00,1001.278564453125,10.849661,10849.661 +4715,2025-03-07T14:07:52.615595-08:00,1001.2970581054688,10.847319,10847.319 +4716,2025-03-07T14:08:03.461496-08:00,1001.278564453125,10.845901,10845.901 +4717,2025-03-07T14:08:14.301584-08:00,1001.250732421875,10.840088,10840.088 +4718,2025-03-07T14:08:25.140542-08:00,1001.2653198242188,10.838958,10838.958 +4719,2025-03-07T14:08:35.990327-08:00,1001.232177734375,10.849785,10849.785 +4720,2025-03-07T14:08:46.834268-08:00,1001.2706298828125,10.843941,10843.941 +4721,2025-03-07T14:08:57.671495-08:00,1001.2298583984375,10.837227,10837.227 +4722,2025-03-07T14:09:08.512993-08:00,1001.2496948242188,10.841498,10841.498 +4723,2025-03-07T14:09:19.364358-08:00,1001.248291015625,10.851365,10851.365 +4724,2025-03-07T14:09:30.216389-08:00,1001.24169921875,10.852031,10852.031 +4725,2025-03-07T14:09:41.059273-08:00,1001.2430419921875,10.842884,10842.884 +4726,2025-03-07T14:09:51.897428-08:00,1001.2615356445312,10.838155,10838.155 +4727,2025-03-07T14:10:02.746597-08:00,1001.2946166992188,10.849169,10849.169 +4728,2025-03-07T14:10:13.594010-08:00,1001.2681274414062,10.847413,10847.413 +4729,2025-03-07T14:10:24.439266-08:00,1001.2340698242188,10.845256,10845.256 +4730,2025-03-07T14:10:35.283331-08:00,1001.23828125,10.844065,10844.065 +4731,2025-03-07T14:10:46.129259-08:00,1001.2814331054688,10.845928,10845.928 +4732,2025-03-07T14:10:56.973282-08:00,1001.2803344726562,10.844023,10844.023 +4733,2025-03-07T14:11:07.815928-08:00,1001.2658081054688,10.842646,10842.646 +4734,2025-03-07T14:11:18.661322-08:00,1001.2393188476562,10.845394,10845.394 +4735,2025-03-07T14:11:29.497421-08:00,1001.2249755859375,10.836099,10836.099 +4736,2025-03-07T14:11:40.337674-08:00,1001.2737426757812,10.840253,10840.253 +4737,2025-03-07T14:11:51.187660-08:00,1001.22607421875,10.849986,10849.986 +4738,2025-03-07T14:12:02.025358-08:00,1001.22607421875,10.837698,10837.698 +4739,2025-03-07T14:12:12.863605-08:00,1001.2472534179688,10.838247,10838.247 +4740,2025-03-07T14:12:23.716503-08:00,1001.2207641601562,10.852898,10852.898 +4741,2025-03-07T14:12:34.556396-08:00,1001.2615356445312,10.839893,10839.893 +4742,2025-03-07T14:12:45.405607-08:00,1001.2430419921875,10.849211,10849.211 +4743,2025-03-07T14:12:56.258013-08:00,1001.1953125,10.852406,10852.406 +4744,2025-03-07T14:13:07.090274-08:00,1001.200927734375,10.832261,10832.261 +4745,2025-03-07T14:13:17.938245-08:00,1001.2393188476562,10.847971,10847.971 +4746,2025-03-07T14:13:28.764466-08:00,1001.1953125,10.826221,10826.221 +4747,2025-03-07T14:13:39.609405-08:00,1001.1796875,10.844939,10844.939 +4748,2025-03-07T14:13:50.437689-08:00,1001.1995239257812,10.828284,10828.284 +4749,2025-03-07T14:14:01.282662-08:00,1001.1796875,10.844973,10844.973 +4750,2025-03-07T14:14:12.121426-08:00,1001.1821899414062,10.838764,10838.764 +4751,2025-03-07T14:14:22.968426-08:00,1001.200927734375,10.847,10847.0 +4752,2025-03-07T14:14:33.807282-08:00,1001.2193603515625,10.838856,10838.856 +4753,2025-03-07T14:14:44.640282-08:00,1001.2274169921875,10.833,10833.0 +4754,2025-03-07T14:14:55.481593-08:00,1001.2218627929688,10.841311,10841.311 +4755,2025-03-07T14:15:06.328274-08:00,1001.2340698242188,10.846681,10846.681 +4756,2025-03-07T14:15:17.173304-08:00,1001.2562255859375,10.84503,10845.03 +4757,2025-03-07T14:15:28.007317-08:00,1001.2628784179688,10.834013,10834.013 +4758,2025-03-07T14:15:38.852410-08:00,1001.2142333984375,10.845093,10845.093 +4759,2025-03-07T14:15:49.682617-08:00,1001.1929931640625,10.830207,10830.207 +4760,2025-03-07T14:16:00.535602-08:00,1001.235107421875,10.852985,10852.985 +4761,2025-03-07T14:16:11.377088-08:00,1001.1943969726562,10.841486,10841.486 +4762,2025-03-07T14:16:22.217270-08:00,1001.2193603515625,10.840182,10840.182 +4763,2025-03-07T14:16:33.058253-08:00,1001.1786499023438,10.840983,10840.983 +4764,2025-03-07T14:16:43.900561-08:00,1001.1863403320312,10.842308,10842.308 +4765,2025-03-07T14:16:54.731272-08:00,1001.2051391601562,10.830711,10830.711 +4766,2025-03-07T14:17:05.576530-08:00,1001.185302734375,10.845258,10845.258 +4767,2025-03-07T14:17:16.411700-08:00,1001.2103881835938,10.83517,10835.17 +4768,2025-03-07T14:17:27.256110-08:00,1001.2845458984375,10.84441,10844.41 +4769,2025-03-07T14:17:38.097760-08:00,1001.229248046875,10.84165,10841.65 +4770,2025-03-07T14:17:48.938267-08:00,1001.2315673828125,10.840507,10840.507 +4771,2025-03-07T14:17:59.780278-08:00,1001.242431640625,10.842011,10842.011 +4772,2025-03-07T14:18:10.622835-08:00,1001.217041015625,10.842557,10842.557 +4773,2025-03-07T14:18:21.458276-08:00,1001.2344360351562,10.835441,10835.441 +4774,2025-03-07T14:18:32.293613-08:00,1001.255615234375,10.835337,10835.337 +4775,2025-03-07T14:18:43.135588-08:00,1001.2940673828125,10.841975,10841.975 +4776,2025-03-07T14:18:53.972324-08:00,1001.27001953125,10.836736,10836.736 +4777,2025-03-07T14:19:04.818396-08:00,1001.2898559570312,10.846072,10846.072 +4778,2025-03-07T14:19:15.660283-08:00,1001.2742309570312,10.841887,10841.887 +4779,2025-03-07T14:19:26.501859-08:00,1001.3043823242188,10.841576,10841.576 +4780,2025-03-07T14:19:37.341630-08:00,1001.3162231445312,10.839771,10839.771 +4781,2025-03-07T14:19:48.178255-08:00,1001.29638671875,10.836625,10836.625 +4782,2025-03-07T14:19:59.024194-08:00,1001.3162231445312,10.845939,10845.939 +4783,2025-03-07T14:20:09.868773-08:00,1001.3361206054688,10.844579,10844.579 +4784,2025-03-07T14:20:20.711273-08:00,1001.2898559570312,10.8425,10842.5 +4785,2025-03-07T14:20:31.561483-08:00,1001.2845458984375,10.85021,10850.21 +4786,2025-03-07T14:20:42.405377-08:00,1001.2977905273438,10.843894,10843.894 +4787,2025-03-07T14:20:53.247422-08:00,1001.31103515625,10.842045,10842.045 +4788,2025-03-07T14:21:04.092607-08:00,1001.3318481445312,10.845185,10845.185 +4789,2025-03-07T14:21:14.931277-08:00,1001.31201171875,10.83867,10838.67 +4790,2025-03-07T14:21:25.775512-08:00,1001.3253173828125,10.844235,10844.235 +4791,2025-03-07T14:21:36.629358-08:00,1001.32421875,10.853846,10853.846 +4792,2025-03-07T14:21:47.475512-08:00,1001.3318481445312,10.846154,10846.154 +4793,2025-03-07T14:21:58.310088-08:00,1001.3162231445312,10.834576,10834.576 +4794,2025-03-07T14:22:09.148276-08:00,1001.3295288085938,10.838188,10838.188 +4795,2025-03-07T14:22:19.997268-08:00,1001.3030395507812,10.848992,10848.992 +4796,2025-03-07T14:22:30.839584-08:00,1001.317626953125,10.842316,10842.316 +4797,2025-03-07T14:22:41.672305-08:00,1001.3228759765625,10.832721,10832.721 +4798,2025-03-07T14:22:52.514512-08:00,1001.3573608398438,10.842207,10842.207 +4799,2025-03-07T14:23:03.353515-08:00,1001.3162231445312,10.839003,10839.003 +4800,2025-03-07T14:23:14.188998-08:00,1001.3228759765625,10.835483,10835.483 +4801,2025-03-07T14:23:25.042278-08:00,1001.3375244140625,10.85328,10853.28 +4802,2025-03-07T14:23:35.884271-08:00,1001.3375244140625,10.841993,10841.993 +4803,2025-03-07T14:23:46.722277-08:00,1001.3361206054688,10.838006,10838.006 +4804,2025-03-07T14:23:57.566710-08:00,1001.3228759765625,10.844433,10844.433 +4805,2025-03-07T14:24:08.405607-08:00,1001.30859375,10.838897,10838.897 +4806,2025-03-07T14:24:19.248270-08:00,1001.3427124023438,10.842663,10842.663 +4807,2025-03-07T14:24:30.086524-08:00,1001.3162231445312,10.838254,10838.254 +4808,2025-03-07T14:24:40.923109-08:00,1001.3005981445312,10.836585,10836.585 +4809,2025-03-07T14:24:51.763329-08:00,1001.3030395507812,10.84022,10840.22 +4810,2025-03-07T14:25:02.604468-08:00,1001.28076171875,10.841139,10841.139 +4811,2025-03-07T14:25:13.452259-08:00,1001.2754516601562,10.847791,10847.791 +4812,2025-03-07T14:25:24.290540-08:00,1001.2609252929688,10.838281,10838.281 +4813,2025-03-07T14:25:35.133243-08:00,1001.2940673828125,10.842703,10842.703 +4814,2025-03-07T14:25:45.968278-08:00,1001.3030395507812,10.835035,10835.035 +4815,2025-03-07T14:25:56.814619-08:00,1001.29541015625,10.846341,10846.341 +4816,2025-03-07T14:26:07.650647-08:00,1001.28076171875,10.836028,10836.028 +4817,2025-03-07T14:26:18.494408-08:00,1001.255615234375,10.843761,10843.761 +4818,2025-03-07T14:26:29.330270-08:00,1001.2754516601562,10.835862,10835.862 +4819,2025-03-07T14:26:40.157333-08:00,1001.2821655273438,10.827063,10827.063 +4820,2025-03-07T14:26:50.995545-08:00,1001.255615234375,10.838212,10838.212 +4821,2025-03-07T14:27:01.844278-08:00,1001.2542724609375,10.848733,10848.733 +4822,2025-03-07T14:27:12.680887-08:00,1001.227783203125,10.836609,10836.609 +4823,2025-03-07T14:27:23.518509-08:00,1001.2334594726562,10.837622,10837.622 +4824,2025-03-07T14:27:34.361306-08:00,1001.3005981445312,10.842797,10842.797 +4825,2025-03-07T14:27:45.205427-08:00,1001.29541015625,10.844121,10844.121 +4826,2025-03-07T14:27:56.041690-08:00,1001.2887573242188,10.836263,10836.263 +4827,2025-03-07T14:28:06.882516-08:00,1001.302001953125,10.840826,10840.826 +4828,2025-03-07T14:28:17.727257-08:00,1001.34033203125,10.844741,10844.741 +4829,2025-03-07T14:28:28.566801-08:00,1001.3048706054688,10.839544,10839.544 +4830,2025-03-07T14:28:39.414794-08:00,1001.2982788085938,10.847993,10847.993 +4831,2025-03-07T14:28:39.414794-08:00,1001.2982788085938,0.0,0.0 +4832,2025-03-07T14:28:50.255333-08:00,1001.2940673828125,10.840539,10840.539 +4833,2025-03-07T14:29:01.099528-08:00,1001.26513671875,10.844195,10844.195 +4834,2025-03-07T14:29:11.942401-08:00,1001.2742309570312,10.842873,10842.873 +4835,2025-03-07T14:29:22.782409-08:00,1001.361572265625,10.840008,10840.008 +4836,2025-03-07T14:29:33.632900-08:00,1001.3152465820312,10.850491,10850.491 +4837,2025-03-07T14:29:44.468454-08:00,1001.3204956054688,10.835554,10835.554 +4838,2025-03-07T14:29:55.315768-08:00,1001.3193969726562,10.847314,10847.314 +4839,2025-03-07T14:30:06.158698-08:00,1001.3270874023438,10.84293,10842.93 +4840,2025-03-07T14:30:16.993276-08:00,1001.3218994140625,10.834578,10834.578 +4841,2025-03-07T14:30:27.828272-08:00,1001.3193969726562,10.834996,10834.996 +4842,2025-03-07T14:30:38.673409-08:00,1001.302001953125,10.845137,10845.137 +4843,2025-03-07T14:30:49.518609-08:00,1001.3270874023438,10.8452,10845.2 +4844,2025-03-07T14:31:00.352320-08:00,1001.3270874023438,10.833711,10833.711 +4845,2025-03-07T14:31:11.196278-08:00,1001.333740234375,10.843958,10843.958 +4846,2025-03-07T14:31:22.039594-08:00,1001.2609252929688,10.843316,10843.316 +4847,2025-03-07T14:31:30.242492-08:00,1001.2754516601562,8.202898,8202.898 +4848,2025-03-07T14:31:32.871253-08:00,1001.30859375,2.628761,2628.761 +4849,2025-03-07T14:31:43.708773-08:00,1001.299560546875,10.83752,10837.52 +4850,2025-03-07T14:31:54.554313-08:00,1001.3072509765625,10.84554,10845.54 +4851,2025-03-07T14:32:05.393702-08:00,1001.3270874023438,10.839389,10839.389 +4852,2025-03-07T14:32:16.241430-08:00,1001.2940673828125,10.847728,10847.728 +4853,2025-03-07T14:32:27.079271-08:00,1001.29296875,10.837841,10837.841 +4854,2025-03-07T14:32:37.919216-08:00,1001.3062744140625,10.839945,10839.945 +4855,2025-03-07T14:32:48.766122-08:00,1001.2609252929688,10.846906,10846.906 +4856,2025-03-07T14:32:59.603269-08:00,1001.3139038085938,10.837147,10837.147 +4857,2025-03-07T14:33:10.446550-08:00,1001.2887573242188,10.843281,10843.281 +4858,2025-03-07T14:33:21.278582-08:00,1001.3005981445312,10.832032,10832.032 +4859,2025-03-07T14:33:32.120445-08:00,1001.2754516601562,10.841863,10841.863 +4860,2025-03-07T14:33:42.964684-08:00,1001.2754516601562,10.844239,10844.239 +4861,2025-03-07T14:33:53.802336-08:00,1001.29638671875,10.837652,10837.652 +4862,2025-03-07T14:34:04.639118-08:00,1001.3218994140625,10.836782,10836.782 +4863,2025-03-07T14:34:15.482286-08:00,1001.3284301757812,10.843168,10843.168 +4864,2025-03-07T14:34:26.329272-08:00,1001.3681030273438,10.846986,10846.986 +4865,2025-03-07T14:34:37.166425-08:00,1001.3162231445312,10.837153,10837.153 +4866,2025-03-07T14:34:48.015821-08:00,1001.3162231445312,10.849396,10849.396 +4867,2025-03-07T14:34:58.851364-08:00,1001.3162231445312,10.835543,10835.543 +4868,2025-03-07T14:35:09.696429-08:00,1001.317626953125,10.845065,10845.065 +4869,2025-03-07T14:35:20.536770-08:00,1001.3043823242188,10.840341,10840.341 +4870,2025-03-07T14:35:31.384615-08:00,1001.2911987304688,10.847845,10847.845 +4871,2025-03-07T14:35:42.225147-08:00,1001.2935791015625,10.840532,10840.532 +4872,2025-03-07T14:35:53.069273-08:00,1001.3211059570312,10.844126,10844.126 +4873,2025-03-07T14:36:03.909275-08:00,1001.3253173828125,10.840002,10840.002 +4874,2025-03-07T14:36:14.755522-08:00,1001.298828125,10.846247,10846.247 +4875,2025-03-07T14:36:25.600458-08:00,1001.3054809570312,10.844936,10844.936 +4876,2025-03-07T14:36:36.453230-08:00,1001.28564453125,10.852772,10852.772 +4877,2025-03-07T14:36:47.289276-08:00,1001.2779541015625,10.836046,10836.046 +4878,2025-03-07T14:36:58.136333-08:00,1001.298828125,10.847057,10847.057 +4879,2025-03-07T14:37:08.979779-08:00,1001.3145141601562,10.843446,10843.446 +4880,2025-03-07T14:37:19.820997-08:00,1001.2591552734375,10.841218,10841.218 +4881,2025-03-07T14:37:30.656274-08:00,1001.2737426757812,10.835277,10835.277 +4882,2025-03-07T14:37:41.504266-08:00,1001.2789916992188,10.847992,10847.992 +4883,2025-03-07T14:37:52.344308-08:00,1001.3068237304688,10.840042,10840.042 +4884,2025-03-07T14:38:03.182727-08:00,1001.2946166992188,10.838419,10838.419 +4885,2025-03-07T14:38:14.030476-08:00,1001.2274169921875,10.847749,10847.749 +4886,2025-03-07T14:38:24.876615-08:00,1001.2340698242188,10.846139,10846.139 +4887,2025-03-07T14:38:35.719521-08:00,1001.2193603515625,10.842906,10842.906 +4888,2025-03-07T14:38:46.565542-08:00,1001.2472534179688,10.846021,10846.021 +4889,2025-03-07T14:38:57.414634-08:00,1001.200927734375,10.849092,10849.092 +4890,2025-03-07T14:39:08.253259-08:00,1001.200927734375,10.838625,10838.625 +4891,2025-03-07T14:39:19.096270-08:00,1001.200927734375,10.843011,10843.011 +4892,2025-03-07T14:39:29.934900-08:00,1001.2062377929688,10.83863,10838.63 +4893,2025-03-07T14:39:40.775627-08:00,1001.2340698242188,10.840727,10840.727 +4894,2025-03-07T14:39:51.614400-08:00,1001.232666015625,10.838773,10838.773 +4895,2025-03-07T14:40:02.457645-08:00,1001.1773681640625,10.843245,10843.245 +4896,2025-03-07T14:40:13.300682-08:00,1001.1929931640625,10.843037,10843.037 +4897,2025-03-07T14:40:24.152475-08:00,1001.2128295898438,10.851793,10851.793 +4898,2025-03-07T14:40:34.987597-08:00,1001.1810913085938,10.835122,10835.122 +4899,2025-03-07T14:40:45.832359-08:00,1001.1929931640625,10.844762,10844.762 +4900,2025-03-07T14:40:56.679485-08:00,1001.1929931640625,10.847126,10847.126 +4901,2025-03-07T14:41:07.516273-08:00,1001.2142333984375,10.836788,10836.788 +4902,2025-03-07T14:41:18.358573-08:00,1001.173095703125,10.8423,10842.3 +4903,2025-03-07T14:41:29.200524-08:00,1001.2274169921875,10.841951,10841.951 +4904,2025-03-07T14:41:40.034327-08:00,1001.1876831054688,10.833803,10833.803 +4905,2025-03-07T14:41:50.873554-08:00,1001.20751953125,10.839227,10839.227 +4906,2025-03-07T14:42:01.714269-08:00,1001.1995239257812,10.840715,10840.715 +4907,2025-03-07T14:42:12.556272-08:00,1001.1863403320312,10.842003,10842.003 +4908,2025-03-07T14:42:23.395274-08:00,1001.20751953125,10.839002,10839.002 +4909,2025-03-07T14:42:34.236746-08:00,1001.1953125,10.841472,10841.472 +4910,2025-03-07T14:42:45.081766-08:00,1001.16650390625,10.84502,10845.02 +4911,2025-03-07T14:42:55.923274-08:00,1001.1995239257812,10.841508,10841.508 +4912,2025-03-07T14:43:06.762609-08:00,1001.2086181640625,10.839335,10839.335 +4913,2025-03-07T14:43:17.608659-08:00,1001.2152099609375,10.84605,10846.05 +4914,2025-03-07T14:43:28.450507-08:00,1001.188720703125,10.841848,10841.848 +4915,2025-03-07T14:43:39.297861-08:00,1001.1532592773438,10.847354,10847.354 +4916,2025-03-07T14:43:50.146699-08:00,1001.22607421875,10.848838,10848.838 +4917,2025-03-07T14:44:00.982492-08:00,1001.2284545898438,10.835793,10835.793 +4918,2025-03-07T14:44:11.826107-08:00,1001.2051391601562,10.843615,10843.615 +4919,2025-03-07T14:44:22.672732-08:00,1001.1995239257812,10.846625,10846.625 +4920,2025-03-07T14:44:33.511373-08:00,1001.2340698242188,10.838641,10838.641 +4921,2025-03-07T14:44:44.359478-08:00,1001.2315673828125,10.848105,10848.105 +4922,2025-03-07T14:44:55.202593-08:00,1001.2051391601562,10.843115,10843.115 +4923,2025-03-07T14:45:06.045439-08:00,1001.232666015625,10.842846,10842.846 +4924,2025-03-07T14:45:16.888924-08:00,1001.1995239257812,10.843485,10843.485 +4925,2025-03-07T14:45:27.731325-08:00,1001.2193603515625,10.842401,10842.401 +4926,2025-03-07T14:45:38.563702-08:00,1001.24169921875,10.832377,10832.377 +4927,2025-03-07T14:45:49.404273-08:00,1001.244873046875,10.840571,10840.571 +4928,2025-03-07T14:46:00.249272-08:00,1001.2393188476562,10.844999,10844.999 +4929,2025-03-07T14:46:11.087540-08:00,1001.2183837890625,10.838268,10838.268 +4930,2025-03-07T14:46:21.930582-08:00,1001.232666015625,10.843042,10843.042 +4931,2025-03-07T14:46:32.778565-08:00,1001.2117309570312,10.847983,10847.983 +4932,2025-03-07T14:46:43.621541-08:00,1001.2183837890625,10.842976,10842.976 +4933,2025-03-07T14:46:54.465522-08:00,1001.2117309570312,10.843981,10843.981 +4934,2025-03-07T14:47:05.303272-08:00,1001.2647094726562,10.83775,10837.75 +4935,2025-03-07T14:47:16.158269-08:00,1001.2658081054688,10.854997,10854.997 +4936,2025-03-07T14:47:26.996317-08:00,1001.2723388671875,10.838048,10838.048 +4937,2025-03-07T14:47:37.833572-08:00,1001.2658081054688,10.837255,10837.255 +4938,2025-03-07T14:47:48.665365-08:00,1001.2302856445312,10.831793,10831.793 +4939,2025-03-07T14:47:59.506275-08:00,1001.2393188476562,10.84091,10840.91 +4940,2025-03-07T14:48:10.343272-08:00,1001.3054809570312,10.836997,10836.997 +4941,2025-03-07T14:48:21.188272-08:00,1001.2315673828125,10.845,10845.0 +4942,2025-03-07T14:48:32.026660-08:00,1001.3068237304688,10.838388,10838.388 +4943,2025-03-07T14:48:42.873486-08:00,1001.2747802734375,10.846826,10846.826 +4944,2025-03-07T14:48:53.716247-08:00,1001.2869262695312,10.842761,10842.761 +4945,2025-03-07T14:49:04.565475-08:00,1001.26708984375,10.849228,10849.228 +4946,2025-03-07T14:49:15.408338-08:00,1001.2737426757812,10.842863,10842.863 +4947,2025-03-07T14:49:26.257674-08:00,1001.2737426757812,10.849336,10849.336 +4948,2025-03-07T14:49:37.095414-08:00,1001.26953125,10.83774,10837.74 +4949,2025-03-07T14:49:47.946528-08:00,1001.24169921875,10.851114,10851.114 +4950,2025-03-07T14:49:58.782271-08:00,1001.2628784179688,10.835743,10835.743 +4951,2025-03-07T14:50:09.627327-08:00,1001.2496948242188,10.845056,10845.056 +4952,2025-03-07T14:50:20.473563-08:00,1001.2363891601562,10.846236,10846.236 +4953,2025-03-07T14:50:31.317805-08:00,1001.2232055664062,10.844242,10844.242 +4954,2025-03-07T14:50:42.165265-08:00,1001.2152099609375,10.84746,10847.46 +4955,2025-03-07T14:50:53.003457-08:00,1001.2232055664062,10.838192,10838.192 +4956,2025-03-07T14:51:03.856394-08:00,1001.218994140625,10.852937,10852.937 +4957,2025-03-07T14:51:14.695241-08:00,1001.1967163085938,10.838847,10838.847 +4958,2025-03-07T14:51:25.543419-08:00,1001.2520141601562,10.848178,10848.178 +4959,2025-03-07T14:51:36.395097-08:00,1001.205810546875,10.851678,10851.678 +4960,2025-03-07T14:51:47.233280-08:00,1001.2586669921875,10.838183,10838.183 +4961,2025-03-07T14:51:58.082268-08:00,1001.291748046875,10.848988,10848.988 +4962,2025-03-07T14:52:08.927281-08:00,1001.1991577148438,10.845013,10845.013 +4963,2025-03-07T14:52:19.767613-08:00,1001.234619140625,10.840332,10840.332 +4964,2025-03-07T14:52:30.600265-08:00,1001.2001342773438,10.832652,10832.652 +4965,2025-03-07T14:52:41.444629-08:00,1001.2423706054688,10.844364,10844.364 +4966,2025-03-07T14:52:52.287602-08:00,1001.2134399414062,10.842973,10842.973 +4967,2025-03-07T14:53:03.130090-08:00,1001.2555541992188,10.842488,10842.488 +4968,2025-03-07T14:53:13.972272-08:00,1001.3283081054688,10.842182,10842.182 +4969,2025-03-07T14:53:24.821529-08:00,1001.2531127929688,10.849257,10849.257 +4970,2025-03-07T14:53:35.671272-08:00,1001.2489013671875,10.849743,10849.743 +4971,2025-03-07T14:53:46.509282-08:00,1001.28857421875,10.83801,10838.01 +4972,2025-03-07T14:53:57.358480-08:00,1001.2611083984375,10.849198,10849.198 +4973,2025-03-07T14:54:08.201317-08:00,1001.2687377929688,10.842837,10842.837 +4974,2025-03-07T14:54:19.044274-08:00,1001.2555541992188,10.842957,10842.957 +4975,2025-03-07T14:54:29.886904-08:00,1001.2147827148438,10.84263,10842.63 +4976,2025-03-07T14:54:40.725757-08:00,1001.2412719726562,10.838853,10838.853 +4977,2025-03-07T14:54:51.571105-08:00,1001.26220703125,10.845348,10845.348 +4978,2025-03-07T14:55:02.412320-08:00,1001.247802734375,10.841215,10841.215 +4979,2025-03-07T14:55:13.260271-08:00,1001.2764282226562,10.847951,10847.951 +4980,2025-03-07T14:55:24.097427-08:00,1001.329345703125,10.837156,10837.156 +4981,2025-03-07T14:55:34.942609-08:00,1001.2843627929688,10.845182,10845.182 +4982,2025-03-07T14:55:45.799564-08:00,1001.2513427734375,10.856955,10856.955 +4983,2025-03-07T14:55:56.632530-08:00,1001.3118896484375,10.832966,10832.966 +4984,2025-03-07T14:56:07.480278-08:00,1001.3175048828125,10.847748,10847.748 +4985,2025-03-07T14:56:18.329255-08:00,1001.3175048828125,10.848977,10848.977 +4986,2025-03-07T14:56:29.172613-08:00,1001.344970703125,10.843358,10843.358 +4987,2025-03-07T14:56:40.015989-08:00,1001.291015625,10.843376,10843.376 +4988,2025-03-07T14:56:50.853496-08:00,1001.2920532226562,10.837507,10837.507 +4989,2025-03-07T14:57:01.701269-08:00,1001.2843627929688,10.847773,10847.773 +4990,2025-03-07T14:57:12.555503-08:00,1001.2523193359375,10.854234,10854.234 +4991,2025-03-07T14:57:23.398466-08:00,1001.2603149414062,10.842963,10842.963 +4992,2025-03-07T14:57:34.238603-08:00,1001.2481079101562,10.840137,10840.137 +4993,2025-03-07T14:57:45.085428-08:00,1001.23388671875,10.846825,10846.825 +4994,2025-03-07T14:57:55.926272-08:00,1001.215087890625,10.840844,10840.844 +4995,2025-03-07T14:58:06.773662-08:00,1001.242919921875,10.84739,10847.39 +4996,2025-03-07T14:58:17.620971-08:00,1001.242919921875,10.847309,10847.309 +4997,2025-03-07T14:58:28.469821-08:00,1001.2230224609375,10.84885,10848.85 +4998,2025-03-07T14:58:39.317440-08:00,1001.2098388671875,10.847619,10847.619 +4999,2025-03-07T14:58:50.161460-08:00,1001.2362670898438,10.84402,10844.02 +5000,2025-03-07T14:59:01.005384-08:00,1001.2637329101562,10.843924,10843.924 +5001,2025-03-07T14:59:11.852274-08:00,1001.2453002929688,10.84689,10846.89 +5002,2025-03-07T14:59:22.705602-08:00,1001.2529907226562,10.853328,10853.328 +5003,2025-03-07T14:59:33.545401-08:00,1001.2132568359375,10.839799,10839.799 +5004,2025-03-07T14:59:44.394580-08:00,1001.2000122070312,10.849179,10849.179 +5005,2025-03-07T14:59:55.238321-08:00,1001.198974609375,10.843741,10843.741 +5006,2025-03-07T15:00:06.095574-08:00,1001.2212524414062,10.857253,10857.253 +5007,2025-03-07T15:00:16.940265-08:00,1001.201416015625,10.844691,10844.691 +5008,2025-03-07T15:00:18.333918-08:00,1001.201416015625,1.393653,1393.653 +5009,2025-03-07T15:00:38.632766-08:00,1001.2156372070312,20.298848,20298.848 +5010,2025-03-07T15:00:49.471846-08:00,1001.1693725585938,10.83908,10839.08 +5011,2025-03-07T15:01:00.324100-08:00,1001.1825561523438,10.852254,10852.254 +5012,2025-03-07T15:01:11.177299-08:00,1001.1707153320312,10.853199,10853.199 +5013,2025-03-07T15:01:22.025260-08:00,1001.2037353515625,10.847961,10847.961 +5014,2025-03-07T15:01:32.866245-08:00,1001.1915893554688,10.840985,10840.985 +5015,2025-03-07T15:01:43.723374-08:00,1001.2235717773438,10.857129,10857.129 +5016,2025-03-07T15:01:54.562484-08:00,1001.2549438476562,10.83911,10839.11 +5017,2025-03-07T15:02:05.407357-08:00,1001.2402954101562,10.844873,10844.873 +5018,2025-03-07T15:02:16.251613-08:00,1001.2271118164062,10.844256,10844.256 +5019,2025-03-07T15:02:27.097630-08:00,1001.2061767578125,10.846017,10846.017 +5020,2025-03-07T15:02:37.950312-08:00,1001.1849975585938,10.852682,10852.682 +5021,2025-03-07T15:02:48.800329-08:00,1001.2061767578125,10.850017,10850.017 +5022,2025-03-07T15:02:59.643395-08:00,1001.1981811523438,10.843066,10843.066 +5023,2025-03-07T15:03:10.483168-08:00,1001.1849975585938,10.839773,10839.773 +5024,2025-03-07T15:03:21.330485-08:00,1001.1849975585938,10.847317,10847.317 +5025,2025-03-07T15:03:32.176252-08:00,1001.1881103515625,10.845767,10845.767 +5026,2025-03-07T15:03:43.024430-08:00,1001.2222900390625,10.848178,10848.178 +5027,2025-03-07T15:03:53.868275-08:00,1001.2156372070312,10.843845,10843.845 +5028,2025-03-07T15:04:04.724497-08:00,1001.2212524414062,10.856222,10856.222 +5029,2025-03-07T15:04:15.570280-08:00,1001.201416015625,10.845783,10845.783 +5030,2025-03-07T15:04:26.423401-08:00,1001.1682739257812,10.853121,10853.121 +5031,2025-03-07T15:04:37.272275-08:00,1001.1815795898438,10.848874,10848.874 +5032,2025-03-07T15:04:48.114560-08:00,1001.1693725585938,10.842285,10842.285 +5033,2025-03-07T15:04:58.969594-08:00,1001.2000122070312,10.855034,10855.034 +5034,2025-03-07T15:05:09.806281-08:00,1001.2620239257812,10.836687,10836.687 +5035,2025-03-07T15:05:20.649881-08:00,1001.227783203125,10.8436,10843.6 +5036,2025-03-07T15:05:31.498523-08:00,1001.2254638671875,10.848642,10848.642 +5037,2025-03-07T15:05:42.427379-08:00,1001.1790771484375,10.928856,10928.856 +5038,2025-03-07T15:05:53.277749-08:00,1001.185791015625,10.85037,10850.37 +5039,2025-03-07T15:06:04.123743-08:00,1001.2453002929688,10.845994,10845.994 +5040,2025-03-07T15:06:14.962947-08:00,1001.217529296875,10.839204,10839.204 +5041,2025-03-07T15:06:25.811939-08:00,1001.212158203125,10.848992,10848.992 +5042,2025-03-07T15:06:36.648329-08:00,1001.2320556640625,10.83639,10836.39 +5043,2025-03-07T15:06:47.496486-08:00,1001.1910400390625,10.848157,10848.157 +5044,2025-03-07T15:06:58.346377-08:00,1001.2320556640625,10.849891,10849.891 +5045,2025-03-07T15:07:09.182996-08:00,1001.1976318359375,10.836619,10836.619 +5046,2025-03-07T15:07:20.036939-08:00,1001.185791015625,10.853943,10853.943 +5047,2025-03-07T15:07:30.880323-08:00,1001.1923217773438,10.843384,10843.384 +5048,2025-03-07T15:07:41.718232-08:00,1001.1724853515625,10.837909,10837.909 +5049,2025-03-07T15:07:52.560946-08:00,1001.185791015625,10.842714,10842.714 +5050,2025-03-07T15:08:03.403926-08:00,1001.1923217773438,10.84298,10842.98 +5051,2025-03-07T15:08:14.259936-08:00,1001.1910400390625,10.85601,10856.01 +5052,2025-03-07T15:08:25.095944-08:00,1001.2362670898438,10.836008,10836.008 +5053,2025-03-07T15:08:35.949208-08:00,1001.230712890625,10.853264,10853.264 +5054,2025-03-07T15:08:46.789257-08:00,1001.233154296875,10.840049,10840.049 +5055,2025-03-07T15:08:57.629948-08:00,1001.212158203125,10.840691,10840.691 +5056,2025-03-07T15:09:08.474042-08:00,1001.2518920898438,10.844094,10844.094 +5057,2025-03-07T15:09:19.330107-08:00,1001.243896484375,10.856065,10856.065 +5058,2025-03-07T15:09:30.173393-08:00,1001.2320556640625,10.843286,10843.286 +5059,2025-03-07T15:09:41.025374-08:00,1001.2254638671875,10.851981,10851.981 +5060,2025-03-07T15:09:51.875565-08:00,1001.26513671875,10.850191,10850.191 +5061,2025-03-07T15:10:02.713922-08:00,1001.2042236328125,10.838357,10838.357 +5062,2025-03-07T15:10:13.567573-08:00,1001.1923217773438,10.853651,10853.651 +5063,2025-03-07T15:10:24.414255-08:00,1001.2056274414062,10.846682,10846.682 +5064,2025-03-07T15:10:35.253002-08:00,1001.2066650390625,10.838747,10838.747 +5065,2025-03-07T15:10:46.099201-08:00,1001.2860717773438,10.846199,10846.199 +5066,2025-03-07T15:10:56.945567-08:00,1001.2518920898438,10.846366,10846.366 +5067,2025-03-07T15:11:07.790336-08:00,1001.212158203125,10.844769,10844.769 +5068,2025-03-07T15:11:18.636943-08:00,1001.267578125,10.846607,10846.607 +5069,2025-03-07T15:11:29.478995-08:00,1001.2132568359375,10.842052,10842.052 +5070,2025-03-07T15:11:40.335939-08:00,1001.2156372070312,10.856944,10856.944 +5071,2025-03-07T15:11:51.170409-08:00,1001.214599609375,10.83447,10834.47 +5072,2025-03-07T15:12:02.027257-08:00,1001.2079467773438,10.856848,10856.848 +5073,2025-03-07T15:12:12.875306-08:00,1001.2344360351562,10.848049,10848.049 +5074,2025-03-07T15:12:23.711943-08:00,1001.2212524414062,10.836637,10836.637 +5075,2025-03-07T15:12:34.560939-08:00,1001.1682739257812,10.848996,10848.996 +5076,2025-03-07T15:12:45.397950-08:00,1001.202392578125,10.837011,10837.011 +5077,2025-03-07T15:12:56.248275-08:00,1001.201416015625,10.850325,10850.325 +5078,2025-03-07T15:13:07.092274-08:00,1001.2079467773438,10.843999,10843.999 +5079,2025-03-07T15:13:17.933160-08:00,1001.1749267578125,10.840886,10840.886 +5080,2025-03-07T15:13:28.771218-08:00,1001.2090454101562,10.838058,10838.058 +5081,2025-03-07T15:13:39.620949-08:00,1001.2037353515625,10.849731,10849.731 +5082,2025-03-07T15:13:50.464283-08:00,1001.19580078125,10.843334,10843.334 +5083,2025-03-07T15:14:01.318764-08:00,1001.2090454101562,10.854481,10854.481 +5084,2025-03-07T15:14:12.167030-08:00,1001.2567138671875,10.848266,10848.266 +5085,2025-03-07T15:14:23.008263-08:00,1001.230224609375,10.841233,10841.233 +5086,2025-03-07T15:14:33.849943-08:00,1001.2103881835938,10.84168,10841.68 +5087,2025-03-07T15:14:44.695944-08:00,1001.1617431640625,10.846001,10846.001 +5088,2025-03-07T15:14:55.545142-08:00,1001.227783203125,10.849198,10849.198 +5089,2025-03-07T15:15:06.391280-08:00,1001.2354736328125,10.846138,10846.138 +5090,2025-03-07T15:15:17.248779-08:00,1001.2156372070312,10.857499,10857.499 +5091,2025-03-07T15:15:28.090994-08:00,1001.201416015625,10.842215,10842.215 +5092,2025-03-07T15:15:38.934201-08:00,1001.25537109375,10.843207,10843.207 +5093,2025-03-07T15:15:49.781938-08:00,1001.214599609375,10.847737,10847.737 +5094,2025-03-07T15:16:00.627466-08:00,1001.201416015625,10.845528,10845.528 +5095,2025-03-07T15:16:11.469225-08:00,1001.2212524414062,10.841759,10841.759 +5096,2025-03-07T15:16:22.311944-08:00,1001.2222900390625,10.842719,10842.719 +5097,2025-03-07T15:16:33.161203-08:00,1001.2620239257812,10.849259,10849.259 +5098,2025-03-07T15:16:43.997941-08:00,1001.2354736328125,10.836738,10836.738 +5099,2025-03-07T15:16:54.854421-08:00,1001.25537109375,10.85648,10856.48 +5100,2025-03-07T15:17:05.690471-08:00,1001.2421875,10.83605,10836.05 +5101,2025-03-07T15:17:16.545244-08:00,1001.1592407226562,10.854773,10854.773 +5102,2025-03-07T15:17:27.388393-08:00,1001.189208984375,10.843149,10843.149 +5103,2025-03-07T15:17:38.237951-08:00,1001.214599609375,10.849558,10849.558 +5104,2025-03-07T15:17:49.090185-08:00,1001.1825561523438,10.852234,10852.234 +5105,2025-03-07T15:17:59.935086-08:00,1001.19580078125,10.844901,10844.901 +5106,2025-03-07T15:18:10.778648-08:00,1001.217041015625,10.843562,10843.562 +5107,2025-03-07T15:18:21.622839-08:00,1001.2222900390625,10.844191,10844.191 +5108,2025-03-07T15:18:32.473988-08:00,1001.2354736328125,10.851149,10851.149 +5109,2025-03-07T15:18:43.324587-08:00,1001.19580078125,10.850599,10850.599 +5110,2025-03-07T15:18:54.172945-08:00,1001.2396850585938,10.848358,10848.358 +5111,2025-03-07T15:19:05.019939-08:00,1001.2222900390625,10.846994,10846.994 +5112,2025-03-07T15:19:15.858981-08:00,1001.248779296875,10.839042,10839.042 +5113,2025-03-07T15:19:26.708502-08:00,1001.2567138671875,10.849521,10849.521 +5114,2025-03-07T15:19:37.562002-08:00,1001.2501831054688,10.8535,10853.5 +5115,2025-03-07T15:19:48.404247-08:00,1001.2379760742188,10.842245,10842.245 +5116,2025-03-07T15:19:59.241947-08:00,1001.2312622070312,10.8377,10837.7 +5117,2025-03-07T15:20:10.084942-08:00,1001.2312622070312,10.842995,10842.995 +5118,2025-03-07T15:20:20.922290-08:00,1001.2974853515625,10.837348,10837.348 +5119,2025-03-07T15:20:31.761247-08:00,1001.204833984375,10.838957,10838.957 +5120,2025-03-07T15:20:42.603172-08:00,1001.27099609375,10.841925,10841.925 +5121,2025-03-07T15:20:53.457998-08:00,1001.218017578125,10.854826,10854.826 +5122,2025-03-07T15:21:04.291952-08:00,1001.2667846679688,10.833954,10833.954 +5123,2025-03-07T15:21:15.138397-08:00,1001.243408203125,10.846445,10846.445 +5124,2025-03-07T15:21:25.976944-08:00,1001.2633666992188,10.838547,10838.547 +5125,2025-03-07T15:21:36.823393-08:00,1001.3162231445312,10.846449,10846.449 +5126,2025-03-07T15:21:47.670634-08:00,1001.2776489257812,10.847241,10847.241 +5127,2025-03-07T15:21:58.516332-08:00,1001.2633666992188,10.845698,10845.698 +5128,2025-03-07T15:22:09.364378-08:00,1001.243408203125,10.848046,10848.046 +5129,2025-03-07T15:22:20.196945-08:00,1001.2368774414062,10.832567,10832.567 +5130,2025-03-07T15:22:31.046069-08:00,1001.2103881835938,10.849124,10849.124 +5131,2025-03-07T15:22:41.901080-08:00,1001.2723388671875,10.855011,10855.011 +5132,2025-03-07T15:22:52.741139-08:00,1001.22607421875,10.840059,10840.059 +5133,2025-03-07T15:23:03.594950-08:00,1001.22607421875,10.853811,10853.811 +5134,2025-03-07T15:23:14.441948-08:00,1001.22607421875,10.846998,10846.998 +5135,2025-03-07T15:23:25.285257-08:00,1001.2469482421875,10.843309,10843.309 +5136,2025-03-07T15:23:36.134128-08:00,1001.2667846679688,10.848871,10848.871 +5137,2025-03-07T15:23:46.987355-08:00,1001.2284545898438,10.853227,10853.227 +5138,2025-03-07T15:23:57.841000-08:00,1001.2503662109375,10.853645,10853.645 +5139,2025-03-07T15:24:08.681232-08:00,1001.1995239257812,10.840232,10840.232 +5140,2025-03-07T15:24:19.527948-08:00,1001.2559204101562,10.846716,10846.716 +5141,2025-03-07T15:24:30.369363-08:00,1001.2525024414062,10.841415,10841.415 +5142,2025-03-07T15:24:41.220908-08:00,1001.2591552734375,10.851545,10851.545 +5143,2025-03-07T15:24:52.053197-08:00,1001.2193603515625,10.832289,10832.289 +5144,2025-03-07T15:25:02.897926-08:00,1001.2393188476562,10.844729,10844.729 +5145,2025-03-07T15:25:13.744932-08:00,1001.2379760742188,10.847006,10847.006 +5146,2025-03-07T15:25:24.591221-08:00,1001.2235717773438,10.846289,10846.289 +5147,2025-03-07T15:25:35.422926-08:00,1001.264404296875,10.831705,10831.705 +5148,2025-03-07T15:25:46.270945-08:00,1001.2633666992188,10.848019,10848.019 +5149,2025-03-07T15:25:57.105344-08:00,1001.27001953125,10.834399,10834.399 +5150,2025-03-07T15:26:06.218928-08:00,1001.3295288085938,9.113584,9113.584 +5151,2025-03-07T15:26:07.958331-08:00,1001.3239135742188,1.739403,1739.403 +5152,2025-03-07T15:26:18.795937-08:00,1001.2776489257812,10.837606,10837.606 +5153,2025-03-07T15:26:29.637946-08:00,1001.2288818359375,10.842009,10842.009 +5154,2025-03-07T15:26:40.487194-08:00,1001.2842407226562,10.849248,10849.248 +5155,2025-03-07T15:26:51.327946-08:00,1001.2620239257812,10.840752,10840.752 +5156,2025-03-07T15:27:02.180953-08:00,1001.29638671875,10.853007,10853.007 +5157,2025-03-07T15:27:13.017535-08:00,1001.2974853515625,10.836582,10836.582 +5158,2025-03-07T15:27:23.861650-08:00,1001.3040771484375,10.844115,10844.115 +5159,2025-03-07T15:27:34.703951-08:00,1001.2898559570312,10.842301,10842.301 +5160,2025-03-07T15:27:45.546588-08:00,1001.3096923828125,10.842637,10842.637 +5161,2025-03-07T15:27:56.395796-08:00,1001.322998046875,10.849208,10849.208 +5162,2025-03-07T15:28:07.238955-08:00,1001.2908325195312,10.843159,10843.159 +5163,2025-03-07T15:28:18.074145-08:00,1001.29638671875,10.83519,10835.19 +5164,2025-03-07T15:28:28.914944-08:00,1001.3082885742188,10.840799,10840.799 +5165,2025-03-07T15:28:39.762307-08:00,1001.3096923828125,10.847363,10847.363 +5166,2025-03-07T15:28:50.611376-08:00,1001.2908325195312,10.849069,10849.069 +5167,2025-03-07T15:29:01.458288-08:00,1001.2842407226562,10.846912,10846.912 +5168,2025-03-07T15:29:12.292635-08:00,1001.280029296875,10.834347,10834.347 +5169,2025-03-07T15:29:23.146008-08:00,1001.298828125,10.853373,10853.373 +5170,2025-03-07T15:29:33.992425-08:00,1001.2998657226562,10.846417,10846.417 +5171,2025-03-07T15:29:44.843320-08:00,1001.2723388671875,10.850895,10850.895 +5172,2025-03-07T15:29:55.693286-08:00,1001.2658081054688,10.849966,10849.966 +5173,2025-03-07T15:30:06.542284-08:00,1001.2525024414062,10.848998,10848.998 +5174,2025-03-07T15:30:17.389092-08:00,1001.220458984375,10.846808,10846.808 +5175,2025-03-07T15:30:28.239973-08:00,1001.22607421875,10.850881,10850.881 +5176,2025-03-07T15:30:39.089948-08:00,1001.2615356445312,10.849975,10849.975 +5177,2025-03-07T15:30:49.931175-08:00,1001.294677734375,10.841227,10841.227 +5178,2025-03-07T15:31:00.775945-08:00,1001.294677734375,10.84477,10844.77 +5179,2025-03-07T15:31:11.628089-08:00,1001.3131103515625,10.852144,10852.144 +5180,2025-03-07T15:31:22.476249-08:00,1001.2681274414062,10.84816,10848.16 +5181,2025-03-07T15:31:33.319631-08:00,1001.295654296875,10.843382,10843.382 +5182,2025-03-07T15:31:44.173114-08:00,1001.3311767578125,10.853483,10853.483 +5183,2025-03-07T15:31:55.015989-08:00,1001.329833984375,10.842875,10842.875 +5184,2025-03-07T15:32:05.867339-08:00,1001.3189697265625,10.85135,10851.35 +5185,2025-03-07T15:32:16.717057-08:00,1001.3004760742188,10.849718,10849.718 +5186,2025-03-07T15:32:27.558294-08:00,1001.294921875,10.841237,10841.237 +5187,2025-03-07T15:32:38.401964-08:00,1001.3534545898438,10.84367,10843.67 +5188,2025-03-07T15:32:49.253961-08:00,1001.3004760742188,10.851997,10851.997 +5189,2025-03-07T15:33:00.097328-08:00,1001.313720703125,10.843367,10843.367 +5190,2025-03-07T15:33:10.945949-08:00,1001.3478393554688,10.848621,10848.621 +5191,2025-03-07T15:33:21.791885-08:00,1001.3359375,10.845936,10845.936 +5192,2025-03-07T15:33:32.636987-08:00,1001.350341796875,10.845102,10845.102 +5193,2025-03-07T15:33:43.491198-08:00,1001.3038940429688,10.854211,10854.211 +5194,2025-03-07T15:33:54.333294-08:00,1001.3593139648438,10.842096,10842.096 +5195,2025-03-07T15:34:05.174949-08:00,1001.2840576171875,10.841655,10841.655 +5196,2025-03-07T15:34:16.024940-08:00,1001.2684326171875,10.849991,10849.991 +5197,2025-03-07T15:34:26.877943-08:00,1001.350341796875,10.853003,10853.003 +5198,2025-03-07T15:34:37.720550-08:00,1001.3317260742188,10.842607,10842.607 +5199,2025-03-07T15:34:48.563251-08:00,1001.32275390625,10.842701,10842.701 +5200,2025-03-07T15:34:59.419313-08:00,1001.3370361328125,10.856062,10856.062 +5201,2025-03-07T15:35:10.262405-08:00,1001.3384399414062,10.843092,10843.092 +5202,2025-03-07T15:35:21.118829-08:00,1001.3185424804688,10.856424,10856.424 +5203,2025-03-07T15:35:31.957947-08:00,1001.3171997070312,10.839118,10839.118 +5204,2025-03-07T15:35:42.815598-08:00,1001.3185424804688,10.857651,10857.651 +5205,2025-03-07T15:35:53.669210-08:00,1001.27880859375,10.853612,10853.612 +5206,2025-03-07T15:36:04.520984-08:00,1001.2986450195312,10.851774,10851.774 +5207,2025-03-07T15:36:15.370083-08:00,1001.3118896484375,10.849099,10849.099 +5208,2025-03-07T15:36:26.230966-08:00,1001.2986450195312,10.860883,10860.883 +5209,2025-03-07T15:36:37.086932-08:00,1001.3185424804688,10.855966,10855.966 +5210,2025-03-07T15:36:47.947926-08:00,1001.2986450195312,10.860994,10860.994 +5211,2025-03-07T15:36:58.800944-08:00,1001.272216796875,10.853018,10853.018 +5212,2025-03-07T15:37:09.657169-08:00,1001.27880859375,10.856225,10856.225 +5213,2025-03-07T15:37:20.508946-08:00,1001.2986450195312,10.851777,10851.777 +5214,2025-03-07T15:37:31.363183-08:00,1001.2481079101562,10.854237,10854.237 +5215,2025-03-07T15:37:42.209946-08:00,1001.3142700195312,10.846763,10846.763 +5216,2025-03-07T15:37:53.066168-08:00,1001.3167114257812,10.856222,10856.222 +5217,2025-03-07T15:38:03.909944-08:00,1001.3101806640625,10.843776,10843.776 +5218,2025-03-07T15:38:14.763944-08:00,1001.4093627929688,10.854,10854.0 +5219,2025-03-07T15:38:25.617949-08:00,1001.3300170898438,10.854005,10854.005 +5220,2025-03-07T15:38:36.462950-08:00,1001.3389892578125,10.845001,10845.001 +5221,2025-03-07T15:38:47.308247-08:00,1001.3125,10.845297,10845.297 +5222,2025-03-07T15:38:58.163247-08:00,1001.2979736328125,10.855,10855.0 +5223,2025-03-07T15:39:09.015396-08:00,1001.3432006835938,10.852149,10852.149 +5224,2025-03-07T15:39:19.856294-08:00,1001.3919677734375,10.840898,10840.898 +5225,2025-03-07T15:39:30.710978-08:00,1001.3574829101562,10.854684,10854.684 +5226,2025-03-07T15:39:41.555950-08:00,1001.3574829101562,10.844972,10844.972 +5227,2025-03-07T15:39:52.415211-08:00,1001.3309936523438,10.859261,10859.261 +5228,2025-03-07T15:40:03.264034-08:00,1001.3258056640625,10.848823,10848.823 +5229,2025-03-07T15:40:14.119940-08:00,1001.3640747070312,10.855906,10855.906 +5230,2025-03-07T15:40:24.972949-08:00,1001.34423828125,10.853009,10853.009 +5231,2025-03-07T15:40:35.828275-08:00,1001.303466796875,10.855326,10855.326 +5232,2025-03-07T15:40:46.672957-08:00,1001.305908203125,10.844682,10844.682 +5233,2025-03-07T15:40:57.525020-08:00,1001.353271484375,10.852063,10852.063 +5234,2025-03-07T15:41:08.370278-08:00,1001.35986328125,10.845258,10845.258 +5235,2025-03-07T15:41:19.225389-08:00,1001.2991943359375,10.855111,10855.111 +5236,2025-03-07T15:41:30.075410-08:00,1001.3731079101562,10.850021,10850.021 +5237,2025-03-07T15:41:40.928017-08:00,1001.35986328125,10.852607,10852.607 +5238,2025-03-07T15:41:51.775851-08:00,1001.3521728515625,10.847834,10847.834 +5239,2025-03-07T15:42:02.629780-08:00,1001.3588256835938,10.853929,10853.929 +5240,2025-03-07T15:42:13.490060-08:00,1001.3323364257812,10.86028,10860.28 +5241,2025-03-07T15:42:24.344266-08:00,1001.3864135742188,10.854206,10854.206 +5242,2025-03-07T15:42:35.202392-08:00,1001.431640625,10.858126,10858.126 +5243,2025-03-07T15:42:46.051195-08:00,1001.365478515625,10.848803,10848.803 +5244,2025-03-07T15:42:56.896939-08:00,1001.353271484375,10.845744,10845.744 +5245,2025-03-07T15:43:07.756065-08:00,1001.3877563476562,10.859126,10859.126 +5246,2025-03-07T15:43:18.605082-08:00,1001.3612670898438,10.849017,10849.017 +5247,2025-03-07T15:43:29.459945-08:00,1001.3755493164062,10.854863,10854.863 +5248,2025-03-07T15:43:40.302950-08:00,1001.3490600585938,10.843005,10843.005 +5249,2025-03-07T15:43:51.158941-08:00,1001.34375,10.855991,10855.991 +5250,2025-03-07T15:44:02.016153-08:00,1001.3513793945312,10.857212,10857.212 +5251,2025-03-07T15:44:12.865944-08:00,1001.3490600585938,10.849791,10849.791 +5252,2025-03-07T15:44:23.719219-08:00,1001.3635864257812,10.853275,10853.275 +5253,2025-03-07T15:44:34.575943-08:00,1001.3556518554688,10.856724,10856.724 +5254,2025-03-07T15:44:45.423253-08:00,1001.3646850585938,10.84731,10847.31 +5255,2025-03-07T15:44:56.262114-08:00,1001.3424072265625,10.838861,10838.861 +5256,2025-03-07T15:45:07.110591-08:00,1001.358154296875,10.848477,10848.477 +5257,2025-03-07T15:45:17.957383-08:00,1001.3504028320312,10.846792,10846.792 +5258,2025-03-07T15:45:28.802948-08:00,1001.3768920898438,10.845565,10845.565 +5259,2025-03-07T15:45:39.651276-08:00,1001.3504028320312,10.848328,10848.328 +5260,2025-03-07T15:45:50.505947-08:00,1001.3953857421875,10.854671,10854.671 +5261,2025-03-07T15:46:01.348435-08:00,1001.4099731445312,10.842488,10842.488 +5262,2025-03-07T15:46:12.197246-08:00,1001.3755493164062,10.848811,10848.811 +5263,2025-03-07T15:46:23.041062-08:00,1001.3953857421875,10.843816,10843.816 +5264,2025-03-07T15:46:33.889229-08:00,1001.3570556640625,10.848167,10848.167 +5265,2025-03-07T15:46:44.720006-08:00,1001.3755493164062,10.830777,10830.777 +5266,2025-03-07T15:46:55.562640-08:00,1001.4033813476562,10.842634,10842.634 +5267,2025-03-07T15:47:06.403249-08:00,1001.39013671875,10.840609,10840.609 +5268,2025-03-07T15:47:17.238939-08:00,1001.3424072265625,10.83569,10835.69 +5269,2025-03-07T15:47:28.091185-08:00,1001.368896484375,10.852246,10852.246 +5270,2025-03-07T15:47:38.935947-08:00,1001.37451171875,10.844762,10844.762 +5271,2025-03-07T15:47:49.773290-08:00,1001.3887329101562,10.837343,10837.343 +5272,2025-03-07T15:48:00.622518-08:00,1001.3943481445312,10.849228,10849.228 +5273,2025-03-07T15:48:11.463944-08:00,1001.3768920898438,10.841426,10841.426 +5274,2025-03-07T15:48:22.307336-08:00,1001.3570556640625,10.843392,10843.392 +5275,2025-03-07T15:48:33.158070-08:00,1001.368896484375,10.850734,10850.734 +5276,2025-03-07T15:48:43.995732-08:00,1001.3479614257812,10.837662,10837.662 +5277,2025-03-07T15:48:54.850318-08:00,1001.368896484375,10.854586,10854.586 +5278,2025-03-07T15:49:05.686926-08:00,1001.3677978515625,10.836608,10836.608 +5279,2025-03-07T15:49:16.535962-08:00,1001.3546142578125,10.849036,10849.036 +5280,2025-03-07T15:49:27.378950-08:00,1001.3943481445312,10.842988,10842.988 +5281,2025-03-07T15:49:38.227257-08:00,1001.3822021484375,10.848307,10848.307 +5282,2025-03-07T15:49:49.065919-08:00,1001.3479614257812,10.838662,10838.662 +5283,2025-03-07T15:49:59.906921-08:00,1001.3546142578125,10.841002,10841.002 +5284,2025-03-07T15:50:10.748945-08:00,1001.4009399414062,10.842024,10842.024 +5285,2025-03-07T15:50:21.592949-08:00,1001.3424072265625,10.844004,10844.004 +5286,2025-03-07T15:50:32.435261-08:00,1001.2762451171875,10.842312,10842.312 +5287,2025-03-07T15:50:43.272937-08:00,1001.3448486328125,10.837676,10837.676 +5288,2025-03-07T15:50:54.117984-08:00,1001.4043579101562,10.845047,10845.047 +5289,2025-03-07T15:51:04.955561-08:00,1001.4054565429688,10.837577,10837.577 +5290,2025-03-07T15:51:15.809136-08:00,1001.371337890625,10.853575,10853.575 +5291,2025-03-07T15:51:26.647944-08:00,1001.3612670898438,10.838808,10838.808 +5292,2025-03-07T15:51:37.500939-08:00,1001.3731079101562,10.852995,10852.995 +5293,2025-03-07T15:51:48.344926-08:00,1001.3877563476562,10.843987,10843.987 +5294,2025-03-07T15:51:59.193221-08:00,1001.4142456054688,10.848295,10848.295 +5295,2025-03-07T15:52:10.036143-08:00,1001.3787231445312,10.842922,10842.922 +5296,2025-03-07T15:52:20.886949-08:00,1001.41943359375,10.850806,10850.806 +5297,2025-03-07T15:52:31.734237-08:00,1001.3796997070312,10.847288,10847.288 +5298,2025-03-07T15:52:42.572433-08:00,1001.319091796875,10.838196,10838.196 +5299,2025-03-07T15:52:53.419251-08:00,1001.319091796875,10.846818,10846.818 +5300,2025-03-07T15:53:04.275197-08:00,1001.3720092773438,10.855946,10855.946 +5301,2025-03-07T15:53:15.122951-08:00,1001.363037109375,10.847754,10847.754 +5302,2025-03-07T15:53:25.966191-08:00,1001.3563842773438,10.84324,10843.24 +5303,2025-03-07T15:53:36.821043-08:00,1001.3521728515625,10.854852,10854.852 +5304,2025-03-07T15:53:47.669280-08:00,1001.349853515625,10.848237,10848.237 +5305,2025-03-07T15:53:58.518635-08:00,1001.32861328125,10.849355,10849.355 +5306,2025-03-07T15:54:09.358942-08:00,1001.322021484375,10.840307,10840.307 +5307,2025-03-07T15:54:20.216941-08:00,1001.29443359375,10.857999,10857.999 +5308,2025-03-07T15:54:31.062943-08:00,1001.3087768554688,10.846002,10846.002 +5309,2025-03-07T15:54:41.903991-08:00,1001.32861328125,10.841048,10841.048 +5310,2025-03-07T15:54:52.749176-08:00,1001.3881225585938,10.845185,10845.185 +5311,2025-03-07T15:55:03.601231-08:00,1001.381591796875,10.852055,10852.055 +5312,2025-03-07T15:55:14.455164-08:00,1001.3749389648438,10.853933,10853.933 +5313,2025-03-07T15:55:25.300052-08:00,1001.3948364257812,10.844888,10844.888 +5314,2025-03-07T15:55:36.152255-08:00,1001.3209228515625,10.852203,10852.203 +5315,2025-03-07T15:55:46.989943-08:00,1001.3858032226562,10.837688,10837.688 +5316,2025-03-07T15:55:57.844200-08:00,1001.3394775390625,10.854257,10854.257 +5317,2025-03-07T15:56:08.687230-08:00,1001.3407592773438,10.84303,10843.03 +5318,2025-03-07T15:56:19.529303-08:00,1001.3418579101562,10.842073,10842.073 +5319,2025-03-07T15:56:30.363033-08:00,1001.287841796875,10.83373,10833.73 +5320,2025-03-07T15:56:41.204004-08:00,1001.3209228515625,10.840971,10840.971 +5321,2025-03-07T15:56:52.047552-08:00,1001.3275146484375,10.843548,10843.548 +5322,2025-03-07T15:57:02.892118-08:00,1001.3365478515625,10.844566,10844.566 +5323,2025-03-07T15:57:13.744552-08:00,1001.334228515625,10.852434,10852.434 +5324,2025-03-07T15:57:24.582954-08:00,1001.3418579101562,10.838402,10838.402 +5325,2025-03-07T15:57:35.427948-08:00,1001.3195190429688,10.844994,10844.994 +5326,2025-03-07T15:57:46.280054-08:00,1001.3063354492188,10.852106,10852.106 +5327,2025-03-07T15:57:57.125949-08:00,1001.2798461914062,10.845895,10845.895 +5328,2025-03-07T15:58:07.970368-08:00,1001.2931518554688,10.844419,10844.419 +5329,2025-03-07T15:58:18.810236-08:00,1001.3672485351562,10.839868,10839.868 +5330,2025-03-07T15:58:29.655455-08:00,1001.3171997070312,10.845219,10845.219 +5331,2025-03-07T15:58:40.508065-08:00,1001.3195190429688,10.85261,10852.61 +5332,2025-03-07T15:58:51.351945-08:00,1001.3185424804688,10.84388,10843.88 +5333,2025-03-07T15:59:02.187495-08:00,1001.3118896484375,10.83555,10835.55 +5334,2025-03-07T15:59:13.037674-08:00,1001.3328247070312,10.850179,10850.179 +5335,2025-03-07T15:59:23.875943-08:00,1001.3435668945312,10.838269,10838.269 +5336,2025-03-07T15:59:34.717949-08:00,1001.3063354492188,10.842006,10842.006 +5337,2025-03-07T15:59:45.560290-08:00,1001.3317260742188,10.842341,10842.341 +5338,2025-03-07T15:59:56.403484-08:00,1001.3435668945312,10.843194,10843.194 +5339,2025-03-07T16:00:07.251944-08:00,1001.363525390625,10.84846,10848.46 +5340,2025-03-07T16:00:18.089943-08:00,1001.3118896484375,10.837999,10837.999 +5341,2025-03-07T16:00:28.933243-08:00,1001.3095092773438,10.8433,10843.3 +5342,2025-03-07T16:00:39.771338-08:00,1001.30810546875,10.838095,10838.095 +5343,2025-03-07T16:00:50.616181-08:00,1001.334716796875,10.844843,10844.843 +5344,2025-03-07T16:01:01.458846-08:00,1001.334716796875,10.842665,10842.665 +5345,2025-03-07T16:01:12.294316-08:00,1001.3677368164062,10.83547,10835.47 +5346,2025-03-07T16:01:23.148253-08:00,1001.3478393554688,10.853937,10853.937 +5347,2025-03-07T16:01:33.990647-08:00,1001.391357421875,10.842394,10842.394 +5348,2025-03-07T16:01:44.831383-08:00,1001.361083984375,10.840736,10840.736 +5349,2025-03-07T16:01:55.683079-08:00,1001.388916015625,10.851696,10851.696 +5350,2025-03-07T16:02:06.531158-08:00,1001.376708984375,10.848079,10848.079 +5351,2025-03-07T16:02:17.374942-08:00,1001.363525390625,10.843784,10843.784 +5352,2025-03-07T16:02:28.225146-08:00,1001.3492431640625,10.850204,10850.204 +5353,2025-03-07T16:02:39.070290-08:00,1001.361083984375,10.845144,10845.144 +5354,2025-03-07T16:02:49.916102-08:00,1001.388916015625,10.845812,10845.812 +5355,2025-03-07T16:03:00.764937-08:00,1001.38232421875,10.848835,10848.835 +5356,2025-03-07T16:03:11.612232-08:00,1001.3468627929688,10.847295,10847.295 +5357,2025-03-07T16:03:22.468087-08:00,1001.38232421875,10.855855,10855.855 +5358,2025-03-07T16:03:33.310926-08:00,1001.3690795898438,10.842839,10842.839 +5359,2025-03-07T16:03:44.166941-08:00,1001.3677368164062,10.856015,10856.015 +5360,2025-03-07T16:03:55.013428-08:00,1001.3690795898438,10.846487,10846.487 +5361,2025-03-07T16:04:05.861229-08:00,1001.361083984375,10.847801,10847.801 +5362,2025-03-07T16:04:16.711273-08:00,1001.3652954101562,10.850044,10850.044 +5363,2025-03-07T16:04:27.555947-08:00,1001.4328002929688,10.844674,10844.674 +5364,2025-03-07T16:04:38.397936-08:00,1001.4472045898438,10.841989,10841.989 +5365,2025-03-07T16:04:49.245189-08:00,1001.4527587890625,10.847253,10847.253 +5366,2025-03-07T16:05:00.084968-08:00,1001.3641967773438,10.839779,10839.779 +5367,2025-03-07T16:05:10.926518-08:00,1001.3775024414062,10.84155,10841.55 +5368,2025-03-07T16:05:21.771941-08:00,1001.41162109375,10.845423,10845.423 +5369,2025-03-07T16:05:32.624163-08:00,1001.3760986328125,10.852222,10852.222 +5370,2025-03-07T16:05:43.465521-08:00,1001.368408203125,10.841358,10841.358 +5371,2025-03-07T16:05:54.312671-08:00,1001.3828125,10.84715,10847.15 +5372,2025-03-07T16:06:05.162812-08:00,1001.3740844726562,10.850141,10850.141 +5373,2025-03-07T16:06:16.010589-08:00,1001.4015502929688,10.847777,10847.777 +5374,2025-03-07T16:06:26.853037-08:00,1001.3594360351562,10.842448,10842.448 +5375,2025-03-07T16:06:37.697518-08:00,1001.408203125,10.844481,10844.481 +5376,2025-03-07T16:06:48.552731-08:00,1001.408203125,10.855213,10855.213 +5377,2025-03-07T16:06:59.398514-08:00,1001.368408203125,10.845783,10845.783 +5378,2025-03-07T16:07:10.246765-08:00,1001.3343505859375,10.848251,10848.251 +5379,2025-03-07T16:07:21.093589-08:00,1001.352783203125,10.846824,10846.824 +5380,2025-03-07T16:07:31.941527-08:00,1001.3939208984375,10.847938,10847.938 +5381,2025-03-07T16:07:42.794861-08:00,1001.3740844726562,10.853334,10853.334 +5382,2025-03-07T16:07:53.633769-08:00,1001.3848266601562,10.838908,10838.908 +5383,2025-03-07T16:08:04.481564-08:00,1001.3883056640625,10.847795,10847.795 +5384,2025-03-07T16:08:15.330871-08:00,1001.3660888671875,10.849307,10849.307 +5385,2025-03-07T16:08:26.173793-08:00,1001.326416015625,10.842922,10842.922 +5386,2025-03-07T16:08:37.022534-08:00,1001.3329467773438,10.848741,10848.741 +5387,2025-03-07T16:08:47.878651-08:00,1001.3343505859375,10.856117,10856.117 +5388,2025-03-07T16:08:58.726090-08:00,1001.326416015625,10.847439,10847.439 +5389,2025-03-07T16:09:09.574876-08:00,1001.3462524414062,10.848786,10848.786 +5390,2025-03-07T16:09:20.423796-08:00,1001.298828125,10.84892,10848.92 +5391,2025-03-07T16:09:31.272951-08:00,1001.3131103515625,10.849155,10849.155 +5392,2025-03-07T16:09:42.119506-08:00,1001.352783203125,10.846555,10846.555 +5393,2025-03-07T16:09:52.964766-08:00,1001.3054809570312,10.84526,10845.26 +5394,2025-03-07T16:10:03.817518-08:00,1001.310791015625,10.852752,10852.752 +5395,2025-03-07T16:10:14.654530-08:00,1001.3131103515625,10.837012,10837.012 +5396,2025-03-07T16:10:25.498265-08:00,1001.2921752929688,10.843735,10843.735 +5397,2025-03-07T16:10:36.350811-08:00,1001.326416015625,10.852546,10852.546 +5398,2025-03-07T16:10:47.191514-08:00,1001.3329467773438,10.840703,10840.703 +5399,2025-03-07T16:10:58.039605-08:00,1001.3231811523438,10.848091,10848.091 +5400,2025-03-07T16:11:08.877149-08:00,1001.3353881835938,10.837544,10837.544 +5401,2025-03-07T16:11:19.725861-08:00,1001.3475952148438,10.848712,10848.712 +5402,2025-03-07T16:11:30.573386-08:00,1001.3277587890625,10.847525,10847.525 +5403,2025-03-07T16:11:41.422665-08:00,1001.326416015625,10.849279,10849.279 +5404,2025-03-07T16:11:52.271909-08:00,1001.3462524414062,10.849244,10849.244 +5405,2025-03-07T16:12:03.127639-08:00,1001.3475952148438,10.85573,10855.73 +5406,2025-03-07T16:12:13.972577-08:00,1001.3607788085938,10.844938,10844.938 +5407,2025-03-07T16:12:24.824790-08:00,1001.354248046875,10.852213,10852.213 +5408,2025-03-07T16:12:35.667581-08:00,1001.3409423828125,10.842791,10842.791 +5409,2025-03-07T16:12:46.529182-08:00,1001.3173217773438,10.861601,10861.601 +5410,2025-03-07T16:12:57.371726-08:00,1001.3343505859375,10.842544,10842.544 +5411,2025-03-07T16:13:08.220529-08:00,1001.3131103515625,10.848803,10848.803 +5412,2025-03-07T16:13:19.071867-08:00,1001.3607788085938,10.851338,10851.338 +5413,2025-03-07T16:13:29.923877-08:00,1001.3451538085938,10.85201,10852.01 +5414,2025-03-07T16:13:40.783787-08:00,1001.3329467773438,10.85991,10859.91 +5415,2025-03-07T16:13:51.629877-08:00,1001.30126953125,10.84609,10846.09 +5416,2025-03-07T16:14:02.483111-08:00,1001.342041015625,10.853234,10853.234 +5417,2025-03-07T16:14:13.329569-08:00,1001.3078002929688,10.846458,10846.458 +5418,2025-03-07T16:14:24.182884-08:00,1001.2814331054688,10.853315,10853.315 +5419,2025-03-07T16:14:35.032523-08:00,1001.3277587890625,10.849639,10849.639 +5420,2025-03-07T16:14:45.875527-08:00,1001.3562622070312,10.843004,10843.004 +5421,2025-03-07T16:14:56.730564-08:00,1001.3760986328125,10.855037,10855.037 +5422,2025-03-07T16:15:07.578771-08:00,1001.339599609375,10.848207,10848.207 +5423,2025-03-07T16:15:18.431734-08:00,1001.3873291015625,10.852963,10852.963 +5424,2025-03-07T16:15:29.280648-08:00,1001.3277587890625,10.848914,10848.914 +5425,2025-03-07T16:15:40.126021-08:00,1001.3883056640625,10.845373,10845.373 +5426,2025-03-07T16:15:50.974787-08:00,1001.3629760742188,10.848766,10848.766 +5427,2025-03-07T16:16:01.823786-08:00,1001.2789916992188,10.848999,10848.999 +5428,2025-03-07T16:16:12.676527-08:00,1001.3329467773438,10.852741,10852.741 +5429,2025-03-07T16:16:23.526583-08:00,1001.326416015625,10.850056,10850.056 +5430,2025-03-07T16:16:34.374528-08:00,1001.3462524414062,10.847945,10847.945 +5431,2025-03-07T16:16:45.216524-08:00,1001.3760986328125,10.841996,10841.996 +5432,2025-03-07T16:16:56.067330-08:00,1001.3485717773438,10.850806,10850.806 +5433,2025-03-07T16:17:06.909845-08:00,1001.3485717773438,10.842515,10842.515 +5434,2025-03-07T16:17:17.758948-08:00,1001.3485717773438,10.849103,10849.103 +5435,2025-03-07T16:17:28.606717-08:00,1001.3245239257812,10.847769,10847.769 +5436,2025-03-07T16:17:39.459731-08:00,1001.4039916992188,10.853014,10853.014 +5437,2025-03-07T16:17:50.303765-08:00,1001.3287353515625,10.844034,10844.034 +5438,2025-03-07T16:18:01.147533-08:00,1001.3155517578125,10.843768,10843.768 +5439,2025-03-07T16:18:11.997514-08:00,1001.3197631835938,10.849981,10849.981 +5440,2025-03-07T16:18:22.848861-08:00,1001.3131103515625,10.851347,10851.347 +5441,2025-03-07T16:18:33.698891-08:00,1001.3485717773438,10.85003,10850.03 +5442,2025-03-07T16:18:44.549504-08:00,1001.3462524414062,10.850613,10850.613 +5443,2025-03-07T16:18:55.397123-08:00,1001.3329467773438,10.847619,10847.619 +5444,2025-03-07T16:19:06.245505-08:00,1001.354248046875,10.848382,10848.382 +5445,2025-03-07T16:19:17.093575-08:00,1001.339599609375,10.84807,10848.07 +5446,2025-03-07T16:19:27.943749-08:00,1001.3618774414062,10.850174,10850.174 +5447,2025-03-07T16:19:38.791518-08:00,1001.3277587890625,10.847769,10847.769 +5448,2025-03-07T16:19:49.630528-08:00,1001.3343505859375,10.83901,10839.01 +5449,2025-03-07T16:20:00.489671-08:00,1001.3695068359375,10.859143,10859.143 +5450,2025-03-07T16:20:11.333696-08:00,1001.3343505859375,10.844025,10844.025 +5451,2025-03-07T16:20:22.184798-08:00,1001.3652954101562,10.851102,10851.102 +5452,2025-03-07T16:20:33.029581-08:00,1001.357666015625,10.844783,10844.783 +5453,2025-03-07T16:20:43.882525-08:00,1001.329833984375,10.852944,10852.944 +5454,2025-03-07T16:20:54.725539-08:00,1001.357666015625,10.843014,10843.014 +5455,2025-03-07T16:21:05.577526-08:00,1001.342041015625,10.851987,10851.987 +5456,2025-03-07T16:21:16.422531-08:00,1001.3652954101562,10.845005,10845.005 +5457,2025-03-07T16:21:27.270142-08:00,1001.3641967773438,10.847611,10847.611 +5458,2025-03-07T16:21:38.122664-08:00,1001.3908081054688,10.852522,10852.522 +5459,2025-03-07T16:21:48.972140-08:00,1001.3799438476562,10.849476,10849.476 +5460,2025-03-07T16:21:59.815828-08:00,1001.42626953125,10.843688,10843.688 +5461,2025-03-07T16:22:10.670522-08:00,1001.3917846679688,10.854694,10854.694 +5462,2025-03-07T16:22:21.519799-08:00,1001.4129638671875,10.849277,10849.277 +5463,2025-03-07T16:22:32.368517-08:00,1001.4087524414062,10.848718,10848.718 +5464,2025-03-07T16:22:43.220522-08:00,1001.3799438476562,10.852005,10852.005 +5465,2025-03-07T16:22:54.068571-08:00,1001.4129638671875,10.848049,10848.049 +5466,2025-03-07T16:23:04.911669-08:00,1001.42626953125,10.843098,10843.098 +5467,2025-03-07T16:23:15.751110-08:00,1001.4064331054688,10.839441,10839.441 +5468,2025-03-07T16:23:26.601808-08:00,1001.4182739257812,10.850698,10850.698 +5469,2025-03-07T16:23:37.447559-08:00,1001.4735717773438,10.845751,10845.751 +5470,2025-03-07T16:23:48.297662-08:00,1001.479248046875,10.850103,10850.103 +5471,2025-03-07T16:23:59.141779-08:00,1001.4437255859375,10.844117,10844.117 +5472,2025-03-07T16:24:09.979826-08:00,1001.4338989257812,10.838047,10838.047 +5473,2025-03-07T16:24:20.831806-08:00,1001.493408203125,10.85198,10851.98 +5474,2025-03-07T16:24:31.681182-08:00,1001.4749755859375,10.849376,10849.376 +5475,2025-03-07T16:24:42.526526-08:00,1001.5147094726562,10.845344,10845.344 +5476,2025-03-07T16:24:53.362778-08:00,1001.4882202148438,10.836252,10836.252 +5477,2025-03-07T16:25:04.215521-08:00,1001.4603881835938,10.852743,10852.743 +5478,2025-03-07T16:25:15.066579-08:00,1001.4959106445312,10.851058,10851.058 +5479,2025-03-07T16:25:25.903774-08:00,1001.4840698242188,10.837195,10837.195 +5480,2025-03-07T16:25:36.746802-08:00,1001.498291015625,10.843028,10843.028 +5481,2025-03-07T16:25:47.594643-08:00,1001.5049438476562,10.847841,10847.841 +5482,2025-03-07T16:25:58.436769-08:00,1001.49169921875,10.842126,10842.126 +5483,2025-03-07T16:26:07.937852-08:00,1001.5237426757812,9.501083,9501.083 +5484,2025-03-07T16:26:09.279867-08:00,1001.5181274414062,1.342015,1342.015 +5485,2025-03-07T16:26:20.116510-08:00,1001.498291015625,10.836643,10836.643 +5486,2025-03-07T16:26:30.966523-08:00,1001.485107421875,10.850013,10850.013 +5487,2025-03-07T16:26:41.804528-08:00,1001.51953125,10.838005,10838.005 +5488,2025-03-07T16:26:52.653518-08:00,1001.5062255859375,10.84899,10848.99 +5489,2025-03-07T16:27:03.495832-08:00,1001.513916015625,10.842314,10842.314 +5490,2025-03-07T16:27:14.339000-08:00,1001.53271484375,10.843168,10843.168 +5491,2025-03-07T16:27:25.188517-08:00,1001.5303344726562,10.849517,10849.517 +5492,2025-03-07T16:27:36.027215-08:00,1001.5753173828125,10.838698,10838.698 +5493,2025-03-07T16:27:46.879738-08:00,1001.5965576171875,10.852523,10852.523 +5494,2025-03-07T16:27:57.722884-08:00,1001.5421752929688,10.843146,10843.146 +5495,2025-03-07T16:28:08.572899-08:00,1001.5158081054688,10.850015,10850.015 +5496,2025-03-07T16:28:19.420592-08:00,1001.5213012695312,10.847693,10847.693 +5497,2025-03-07T16:28:30.272401-08:00,1001.5728759765625,10.851809,10851.809 +5498,2025-03-07T16:28:41.115528-08:00,1001.5819702148438,10.843127,10843.127 +5499,2025-03-07T16:28:51.961217-08:00,1001.5875244140625,10.845689,10845.689 +5500,2025-03-07T16:29:02.809691-08:00,1001.5662231445312,10.848474,10848.474 +5501,2025-03-07T16:29:13.657526-08:00,1001.6126708984375,10.847835,10847.835 +5502,2025-03-07T16:29:24.508530-08:00,1001.55859375,10.851004,10851.004 +5503,2025-03-07T16:29:35.344932-08:00,1001.54541015625,10.836402,10836.402 +5504,2025-03-07T16:29:46.188524-08:00,1001.5826416015625,10.843592,10843.592 +5505,2025-03-07T16:29:57.032834-08:00,1001.5982666015625,10.84431,10844.31 +5506,2025-03-07T16:30:07.879906-08:00,1001.57470703125,10.847072,10847.072 +5507,2025-03-07T16:30:18.722466-08:00,1001.59033203125,10.84256,10842.56 +5508,2025-03-07T16:30:29.566571-08:00,1001.57470703125,10.844105,10844.105 +5509,2025-03-07T16:30:40.412524-08:00,1001.6011962890625,10.845953,10845.953 +5510,2025-03-07T16:30:51.254746-08:00,1001.6024780273438,10.842222,10842.222 +5511,2025-03-07T16:31:02.096750-08:00,1001.6035766601562,10.842004,10842.004 +5512,2025-03-07T16:31:12.946411-08:00,1001.5892944335938,10.849661,10849.661 +5513,2025-03-07T16:31:23.784520-08:00,1001.57470703125,10.838109,10838.109 +5514,2025-03-07T16:31:34.635554-08:00,1001.5945434570312,10.851034,10851.034 +5515,2025-03-07T16:31:45.479518-08:00,1001.6077880859375,10.843964,10843.964 +5516,2025-03-07T16:31:56.316869-08:00,1001.6001586914062,10.837351,10837.351 +5517,2025-03-07T16:32:07.160648-08:00,1001.592529296875,10.843779,10843.779 +5518,2025-03-07T16:32:18.008501-08:00,1001.6133422851562,10.847853,10847.853 +5519,2025-03-07T16:32:28.846532-08:00,1001.6123657226562,10.838031,10838.031 +5520,2025-03-07T16:32:39.696522-08:00,1001.5977172851562,10.84999,10849.99 +5521,2025-03-07T16:32:50.537713-08:00,1001.5845336914062,10.841191,10841.191 +5522,2025-03-07T16:33:01.382847-08:00,1001.5792236328125,10.845134,10845.134 +5523,2025-03-07T16:33:12.239912-08:00,1001.605712890625,10.857065,10857.065 +5524,2025-03-07T16:33:23.084046-08:00,1001.6043701171875,10.844134,10844.134 +5525,2025-03-07T16:33:33.929491-08:00,1001.6531372070312,10.845445,10845.445 +5526,2025-03-07T16:33:44.776520-08:00,1001.5778198242188,10.847029,10847.029 +5527,2025-03-07T16:33:55.612908-08:00,1001.6175537109375,10.836388,10836.388 +5528,2025-03-07T16:34:06.471778-08:00,1001.6165771484375,10.85887,10858.87 +5529,2025-03-07T16:34:17.318817-08:00,1001.6231079101562,10.847039,10847.039 +5530,2025-03-07T16:34:28.166518-08:00,1001.5953369140625,10.847701,10847.701 +5531,2025-03-07T16:34:39.008525-08:00,1001.6019287109375,10.842007,10842.007 +5532,2025-03-07T16:34:49.861535-08:00,1001.6165771484375,10.85301,10853.01 +5533,2025-03-07T16:35:00.700528-08:00,1001.6085815429688,10.838993,10838.993 +5534,2025-03-07T16:35:11.554787-08:00,1001.6482543945312,10.854259,10854.259 +5535,2025-03-07T16:35:22.392985-08:00,1001.6165771484375,10.838198,10838.198 +5536,2025-03-07T16:35:33.242205-08:00,1001.637451171875,10.84922,10849.22 +5537,2025-03-07T16:35:44.080513-08:00,1001.6099243164062,10.838308,10838.308 +5538,2025-03-07T16:35:54.921529-08:00,1001.6364135742188,10.841016,10841.016 +5539,2025-03-07T16:36:05.771526-08:00,1001.6231079101562,10.849997,10849.997 +5540,2025-03-07T16:36:16.615064-08:00,1001.6307983398438,10.843538,10843.538 +5541,2025-03-07T16:36:27.462368-08:00,1001.6307983398438,10.847304,10847.304 +5542,2025-03-07T16:36:38.312658-08:00,1001.665283203125,10.85029,10850.29 +5543,2025-03-07T16:36:49.142531-08:00,1001.6454467773438,10.829873,10829.873 +5544,2025-03-07T16:36:59.986520-08:00,1001.637451171875,10.843989,10843.989 +5545,2025-03-07T16:37:10.834926-08:00,1001.65966796875,10.848406,10848.406 +5546,2025-03-07T16:37:21.677578-08:00,1001.6729736328125,10.842652,10842.652 +5547,2025-03-07T16:37:32.520744-08:00,1001.6398315429688,10.843166,10843.166 +5548,2025-03-07T16:37:43.364528-08:00,1001.6740112304688,10.843784,10843.784 +5549,2025-03-07T16:37:54.202492-08:00,1001.646484375,10.837964,10837.964 +5550,2025-03-07T16:38:05.043522-08:00,1001.6475219726562,10.84103,10841.03 +5551,2025-03-07T16:38:15.889520-08:00,1001.63330078125,10.845998,10845.998 +5552,2025-03-07T16:38:26.739658-08:00,1001.6387329101562,10.850138,10850.138 +5553,2025-03-07T16:38:37.578532-08:00,1001.6356201171875,10.838874,10838.874 +5554,2025-03-07T16:38:48.426857-08:00,1001.65966796875,10.848325,10848.325 +5555,2025-03-07T16:38:59.272172-08:00,1001.5990600585938,10.845315,10845.315 +5556,2025-03-07T16:39:10.115523-08:00,1001.5858764648438,10.843351,10843.351 +5557,2025-03-07T16:39:20.958749-08:00,1001.6143798828125,10.843226,10843.226 +5558,2025-03-07T16:39:31.805529-08:00,1001.5990600585938,10.84678,10846.78 +5559,2025-03-07T16:39:42.660764-08:00,1001.618896484375,10.855235,10855.235 +5560,2025-03-07T16:39:53.504876-08:00,1001.6043701171875,10.844112,10844.112 +5561,2025-03-07T16:40:04.341522-08:00,1001.6242065429688,10.836646,10836.646 +5562,2025-03-07T16:40:15.195525-08:00,1001.603271484375,10.854003,10854.003 +5563,2025-03-07T16:40:26.039527-08:00,1001.6043701171875,10.844002,10844.002 +5564,2025-03-07T16:40:36.887497-08:00,1001.6255493164062,10.84797,10847.97 +5565,2025-03-07T16:40:47.740580-08:00,1001.6109619140625,10.853083,10853.083 +5566,2025-03-07T16:40:58.585049-08:00,1001.6387329101562,10.844469,10844.469 +5567,2025-03-07T16:41:09.438796-08:00,1001.6387329101562,10.853747,10853.747 +5568,2025-03-07T16:41:20.289529-08:00,1001.6255493164062,10.850733,10850.733 +5569,2025-03-07T16:41:31.135854-08:00,1001.6520385742188,10.846325,10846.325 +5570,2025-03-07T16:41:41.987441-08:00,1001.6255493164062,10.851587,10851.587 +5571,2025-03-07T16:41:52.829845-08:00,1001.6231079101562,10.842404,10842.404 +5572,2025-03-07T16:42:03.678074-08:00,1001.6242065429688,10.848229,10848.229 +5573,2025-03-07T16:42:14.520420-08:00,1001.6297607421875,10.842346,10842.346 +5574,2025-03-07T16:42:25.368521-08:00,1001.6903686523438,10.848101,10848.101 +5575,2025-03-07T16:42:36.213854-08:00,1001.6785278320312,10.845333,10845.333 +5576,2025-03-07T16:42:47.067452-08:00,1001.6994018554688,10.853598,10853.598 +5577,2025-03-07T16:42:57.910523-08:00,1001.6983642578125,10.843071,10843.071 +5578,2025-03-07T16:43:08.759528-08:00,1001.7115478515625,10.849005,10849.005 +5579,2025-03-07T16:43:19.603667-08:00,1001.7324829101562,10.844139,10844.139 +5580,2025-03-07T16:43:30.453523-08:00,1001.6983642578125,10.849856,10849.856 +5581,2025-03-07T16:43:41.306000-08:00,1001.6785278320312,10.852477,10852.477 +5582,2025-03-07T16:43:52.150055-08:00,1001.6917114257812,10.844055,10844.055 +5583,2025-03-07T16:44:02.992140-08:00,1001.637451171875,10.842085,10842.085 +5584,2025-03-07T16:44:13.835530-08:00,1001.6851806640625,10.84339,10843.39 +5585,2025-03-07T16:44:24.679751-08:00,1001.712646484375,10.844221,10844.221 +5586,2025-03-07T16:44:35.521965-08:00,1001.7481079101562,10.842214,10842.214 +5587,2025-03-07T16:44:46.369941-08:00,1001.7391357421875,10.847976,10847.976 +5588,2025-03-07T16:44:57.212951-08:00,1001.6994018554688,10.84301,10843.01 +5589,2025-03-07T16:45:08.065538-08:00,1001.7050170898438,10.852587,10852.587 +5590,2025-03-07T16:45:18.905524-08:00,1001.7168579101562,10.839986,10839.986 +5591,2025-03-07T16:45:29.757528-08:00,1001.7432861328125,10.852004,10852.004 +5592,2025-03-07T16:45:40.594800-08:00,1001.7324829101562,10.837272,10837.272 +5593,2025-03-07T16:45:51.438877-08:00,1001.7313842773438,10.844077,10844.077 +5594,2025-03-07T16:46:02.290833-08:00,1001.7523193359375,10.851956,10851.956 +5595,2025-03-07T16:46:13.133515-08:00,1001.7380981445312,10.842682,10842.682 +5596,2025-03-07T16:46:23.980895-08:00,1001.7391357421875,10.84738,10847.38 +5597,2025-03-07T16:46:34.814558-08:00,1001.7391357421875,10.833663,10833.663 +5598,2025-03-07T16:46:45.662291-08:00,1001.724853515625,10.847733,10847.733 +5599,2025-03-07T16:46:56.506506-08:00,1001.7432861328125,10.844215,10844.215 +5600,2025-03-07T16:47:07.345524-08:00,1001.7579956054688,10.839018,10839.018 +5601,2025-03-07T16:47:18.194913-08:00,1001.7446899414062,10.849389,10849.389 +5602,2025-03-07T16:47:29.039528-08:00,1001.7830200195312,10.844615,10844.615 +5603,2025-03-07T16:47:39.882810-08:00,1001.7290649414062,10.843282,10843.282 +5604,2025-03-07T16:47:50.725573-08:00,1001.7474975585938,10.842763,10842.763 +5605,2025-03-07T16:48:01.558715-08:00,1001.7276611328125,10.833142,10833.142 +5606,2025-03-07T16:48:12.406740-08:00,1001.7266235351562,10.848025,10848.025 +5607,2025-03-07T16:48:23.243634-08:00,1001.7332763671875,10.836894,10836.894 +5608,2025-03-07T16:48:34.081571-08:00,1001.7597045898438,10.837937,10837.937 +5609,2025-03-07T16:48:44.934652-08:00,1001.7398681640625,10.853081,10853.081 +5610,2025-03-07T16:48:55.773768-08:00,1001.725341796875,10.839116,10839.116 +5611,2025-03-07T16:49:06.618003-08:00,1001.7332763671875,10.844235,10844.235 +5612,2025-03-07T16:49:17.454675-08:00,1001.7398681640625,10.836672,10836.672 +5613,2025-03-07T16:49:28.296521-08:00,1001.7440795898438,10.841846,10841.846 +5614,2025-03-07T16:49:39.134112-08:00,1001.738525390625,10.837591,10837.591 +5615,2025-03-07T16:49:49.976808-08:00,1001.738525390625,10.842696,10842.696 +5616,2025-03-07T16:50:00.811708-08:00,1001.7583618164062,10.8349,10834.9 +5617,2025-03-07T16:50:11.648791-08:00,1001.7597045898438,10.837083,10837.083 +5618,2025-03-07T16:50:22.489946-08:00,1001.7650146484375,10.841155,10841.155 +5619,2025-03-07T16:50:33.325667-08:00,1001.7451782226562,10.835721,10835.721 +5620,2025-03-07T16:50:44.158045-08:00,1001.763916015625,10.832378,10832.378 +5621,2025-03-07T16:50:55.001296-08:00,1001.763916015625,10.843251,10843.251 +5622,2025-03-07T16:51:05.845522-08:00,1001.74267578125,10.844226,10844.226 +5623,2025-03-07T16:51:16.680523-08:00,1001.7440795898438,10.835001,10835.001 +5624,2025-03-07T16:51:27.527527-08:00,1001.7374877929688,10.847004,10847.004 +5625,2025-03-07T16:51:38.369398-08:00,1001.7493896484375,10.841871,10841.871 +5626,2025-03-07T16:51:49.207867-08:00,1001.7890625,10.838469,10838.469 +5627,2025-03-07T16:52:00.042704-08:00,1001.80224609375,10.834837,10834.837 +5628,2025-03-07T16:52:10.892160-08:00,1001.7681274414062,10.849456,10849.456 +5629,2025-03-07T16:52:21.728517-08:00,1001.7625732421875,10.836357,10836.357 +5630,2025-03-07T16:52:32.577955-08:00,1001.7757568359375,10.849438,10849.438 +5631,2025-03-07T16:52:43.419518-08:00,1001.7837524414062,10.841563,10841.563 +5632,2025-03-07T16:52:54.258576-08:00,1001.7837524414062,10.839058,10839.058 +5633,2025-03-07T16:53:05.103135-08:00,1001.7837524414062,10.844559,10844.559 +5634,2025-03-07T16:53:15.935520-08:00,1001.7771606445312,10.832385,10832.385 +5635,2025-03-07T16:53:26.781619-08:00,1001.7493896484375,10.846099,10846.099 +5636,2025-03-07T16:53:37.624842-08:00,1001.7615356445312,10.843223,10843.223 +5637,2025-03-07T16:53:48.462501-08:00,1001.7824096679688,10.837659,10837.659 +5638,2025-03-07T16:53:59.306162-08:00,1001.7402954101562,10.843661,10843.661 +5639,2025-03-07T16:54:10.154520-08:00,1001.7493896484375,10.848358,10848.358 +5640,2025-03-07T16:54:20.991568-08:00,1001.7681274414062,10.837048,10837.048 +5641,2025-03-07T16:54:31.835153-08:00,1001.7692260742188,10.843585,10843.585 +5642,2025-03-07T16:54:42.667793-08:00,1001.7681274414062,10.83264,10832.64 +5643,2025-03-07T16:54:53.510603-08:00,1001.7615356445312,10.84281,10842.81 +5644,2025-03-07T16:55:04.354535-08:00,1001.795654296875,10.843932,10843.932 +5645,2025-03-07T16:55:15.184506-08:00,1001.8186645507812,10.829971,10829.971 +5646,2025-03-07T16:55:26.032520-08:00,1001.7998657226562,10.848014,10848.014 +5647,2025-03-07T16:55:36.871798-08:00,1001.8253173828125,10.839278,10839.278 +5648,2025-03-07T16:55:47.717791-08:00,1001.8253173828125,10.845993,10845.993 +5649,2025-03-07T16:55:58.563178-08:00,1001.79638671875,10.845387,10845.387 +5650,2025-03-07T16:56:09.400678-08:00,1001.8040771484375,10.8375,10837.5 +5651,2025-03-07T16:56:20.246219-08:00,1001.8318481445312,10.845541,10845.541 +5652,2025-03-07T16:56:31.087323-08:00,1001.84375,10.841104,10841.104 +5653,2025-03-07T16:56:41.940706-08:00,1001.83056640625,10.853383,10853.383 +5654,2025-03-07T16:56:52.776529-08:00,1001.8096313476562,10.835823,10835.823 +5655,2025-03-07T16:57:03.616665-08:00,1001.787353515625,10.840136,10840.136 +5656,2025-03-07T16:57:14.463003-08:00,1001.8016357421875,10.846338,10846.338 +5657,2025-03-07T16:57:25.310082-08:00,1001.821533203125,10.847079,10847.079 +5658,2025-03-07T16:57:36.156891-08:00,1001.8138427734375,10.846809,10846.809 +5659,2025-03-07T16:57:46.993543-08:00,1001.8148193359375,10.836652,10836.652 +5660,2025-03-07T16:57:57.833632-08:00,1001.8058471679688,10.840089,10840.089 +5661,2025-03-07T16:58:08.675975-08:00,1001.834716796875,10.842343,10842.343 +5662,2025-03-07T16:58:19.528645-08:00,1001.8125,10.85267,10852.67 +5663,2025-03-07T16:58:30.369518-08:00,1001.8204956054688,10.840873,10840.873 +5664,2025-03-07T16:58:41.208528-08:00,1001.8468627929688,10.83901,10839.01 +5665,2025-03-07T16:58:52.047531-08:00,1001.819091796875,10.839003,10839.003 +5666,2025-03-07T16:59:02.888035-08:00,1001.8204956054688,10.840504,10840.504 +5667,2025-03-07T16:59:13.740045-08:00,1001.7860107421875,10.85201,10852.01 +5668,2025-03-07T16:59:24.581194-08:00,1001.819091796875,10.841149,10841.149 +5669,2025-03-07T16:59:35.434989-08:00,1001.8389282226562,10.853795,10853.795 +5670,2025-03-07T16:59:46.278650-08:00,1001.8468627929688,10.843661,10843.661 +5671,2025-03-07T16:59:57.123861-08:00,1001.8521728515625,10.845211,10845.211 +5672,2025-03-07T17:00:07.965055-08:00,1001.8535766601562,10.841194,10841.194 +5673,2025-03-07T17:00:18.803518-08:00,1001.82470703125,10.838463,10838.463 +5674,2025-03-07T17:00:29.646667-08:00,1001.7849731445312,10.843149,10843.149 +5675,2025-03-07T17:00:40.482865-08:00,1001.8336791992188,10.836198,10836.198 +5676,2025-03-07T17:00:51.331611-08:00,1001.8323364257812,10.848746,10848.746 +5677,2025-03-07T17:01:02.175514-08:00,1001.8336791992188,10.843903,10843.903 +5678,2025-03-07T17:01:13.017523-08:00,1001.85107421875,10.842009,10842.009 +5679,2025-03-07T17:01:23.855938-08:00,1001.84033203125,10.838415,10838.415 +5680,2025-03-07T17:01:34.704736-08:00,1001.8601684570312,10.848798,10848.798 +5681,2025-03-07T17:01:45.548524-08:00,1001.82568359375,10.843788,10843.788 +5682,2025-03-07T17:01:56.393708-08:00,1001.8587646484375,10.845184,10845.184 +5683,2025-03-07T17:02:07.235654-08:00,1001.8786010742188,10.841946,10841.946 +5684,2025-03-07T17:02:18.077507-08:00,1001.8709106445312,10.841853,10841.853 +5685,2025-03-07T17:02:28.920833-08:00,1001.8842163085938,10.843326,10843.326 +5686,2025-03-07T17:02:39.758521-08:00,1001.8775634765625,10.837688,10837.688 +5687,2025-03-07T17:02:50.610751-08:00,1001.8709106445312,10.85223,10852.23 +5688,2025-03-07T17:03:01.454528-08:00,1001.906494140625,10.843777,10843.777 +5689,2025-03-07T17:03:12.293331-08:00,1001.8699340820312,10.838803,10838.803 +5690,2025-03-07T17:03:23.135529-08:00,1001.8975219726562,10.842198,10842.198 +5691,2025-03-07T17:03:33.979917-08:00,1001.9029541015625,10.844388,10844.388 +5692,2025-03-07T17:03:44.825771-08:00,1001.8897705078125,10.845854,10845.854 +5693,2025-03-07T17:03:55.667522-08:00,1001.8741455078125,10.841751,10841.751 +5694,2025-03-07T17:04:06.514863-08:00,1001.9082641601562,10.847341,10847.341 +5695,2025-03-07T17:04:17.353522-08:00,1001.9071655273438,10.838659,10838.659 +5696,2025-03-07T17:04:28.195826-08:00,1001.9295043945312,10.842304,10842.304 +5697,2025-03-07T17:04:39.047928-08:00,1001.9246826171875,10.852102,10852.102 +5698,2025-03-07T17:04:49.890869-08:00,1001.9534912109375,10.842941,10842.941 +5699,2025-03-07T17:05:00.734624-08:00,1001.945556640625,10.843755,10843.755 +5700,2025-03-07T17:05:11.577791-08:00,1001.9653930664062,10.843167,10843.167 +5701,2025-03-07T17:05:22.418527-08:00,1001.945556640625,10.840736,10840.736 +5702,2025-03-07T17:05:33.273251-08:00,1001.9048461914062,10.854724,10854.724 +5703,2025-03-07T17:05:44.111202-08:00,1001.9734497070312,10.837951,10837.951 +5704,2025-03-07T17:05:54.951927-08:00,1001.9534912109375,10.840725,10840.725 +5705,2025-03-07T17:06:05.790198-08:00,1001.9667358398438,10.838271,10838.271 +5706,2025-03-07T17:06:16.644882-08:00,1001.9522094726562,10.854684,10854.684 +5707,2025-03-07T17:06:27.481306-08:00,1001.9545288085938,10.836424,10836.424 +5708,2025-03-07T17:06:38.336315-08:00,1001.9876708984375,10.855009,10855.009 +5709,2025-03-07T17:06:49.172885-08:00,1001.94140625,10.83657,10836.57 +5710,2025-03-07T17:07:00.011116-08:00,1001.9667358398438,10.838231,10838.231 +5711,2025-03-07T17:07:10.853203-08:00,1001.9734497070312,10.842087,10842.087 +5712,2025-03-07T17:07:21.686950-08:00,1001.9876708984375,10.833747,10833.747 +5713,2025-03-07T17:07:32.533882-08:00,1001.9744262695312,10.846932,10846.932 +5714,2025-03-07T17:07:43.370274-08:00,1001.963623046875,10.836392,10836.392 +5715,2025-03-07T17:07:54.220888-08:00,1001.9678344726562,10.850614,10850.614 +5716,2025-03-07T17:08:05.064371-08:00,1001.97021484375,10.843483,10843.483 +5717,2025-03-07T17:08:15.909911-08:00,1001.9967041015625,10.84554,10845.54 +5718,2025-03-07T17:08:26.766406-08:00,1001.9834594726562,10.856495,10856.495 +5719,2025-03-07T17:08:37.607939-08:00,1002.010986328125,10.841533,10841.533 +5720,2025-03-07T17:08:48.447865-08:00,1001.9859619140625,10.839926,10839.926 +5721,2025-03-07T17:08:59.296142-08:00,1001.9845581054688,10.848277,10848.277 +5722,2025-03-07T17:09:10.142186-08:00,1001.9646606445312,10.846044,10846.044 +5723,2025-03-07T17:09:20.981947-08:00,1001.97265625,10.839761,10839.761 +5724,2025-03-07T17:09:31.831884-08:00,1001.9793090820312,10.849937,10849.937 +5725,2025-03-07T17:09:42.666881-08:00,1001.9618530273438,10.834997,10834.997 +5726,2025-03-07T17:09:53.511415-08:00,1001.97509765625,10.844534,10844.534 +5727,2025-03-07T17:10:04.360160-08:00,1002.0015869140625,10.848745,10848.745 +5728,2025-03-07T17:10:15.209050-08:00,1002.0039672851562,10.84889,10848.89 +5729,2025-03-07T17:10:26.050883-08:00,1001.9618530273438,10.841833,10841.833 +5730,2025-03-07T17:10:36.888920-08:00,1002.0081176757812,10.838037,10838.037 +5731,2025-03-07T17:10:47.734119-08:00,1001.981689453125,10.845199,10845.199 +5732,2025-03-07T17:10:58.581253-08:00,1002.002685546875,10.847134,10847.134 +5733,2025-03-07T17:11:09.428047-08:00,1001.9827270507812,10.846794,10846.794 +5734,2025-03-07T17:11:20.279085-08:00,1001.94970703125,10.851038,10851.038 +5735,2025-03-07T17:11:31.122778-08:00,1001.9552612304688,10.843693,10843.693 +5736,2025-03-07T17:11:41.965880-08:00,1001.981689453125,10.843102,10843.102 +5737,2025-03-07T17:11:52.813117-08:00,1001.9695434570312,10.847237,10847.237 +5738,2025-03-07T17:12:03.651162-08:00,1001.9671020507812,10.838045,10838.045 +5739,2025-03-07T17:12:14.505709-08:00,1001.9851684570312,10.854547,10854.547 +5740,2025-03-07T17:12:25.346126-08:00,1001.97607421875,10.840417,10840.417 +5741,2025-03-07T17:12:36.193025-08:00,1001.9562377929688,10.846899,10846.899 +5742,2025-03-07T17:12:47.034888-08:00,1001.9840698242188,10.841863,10841.863 +5743,2025-03-07T17:12:57.880150-08:00,1001.9785766601562,10.845262,10845.262 +5744,2025-03-07T17:13:08.729194-08:00,1001.9851684570312,10.849044,10849.044 +5745,2025-03-07T17:13:19.564886-08:00,1001.9378051757812,10.835692,10835.692 +5746,2025-03-07T17:13:30.412003-08:00,1001.997314453125,10.847117,10847.117 +5747,2025-03-07T17:13:41.261296-08:00,1001.9576416015625,10.849293,10849.293 +5748,2025-03-07T17:13:52.099132-08:00,1001.9695434570312,10.837836,10837.836 +5749,2025-03-07T17:14:02.947139-08:00,1001.970947265625,10.848007,10848.007 +5750,2025-03-07T17:14:13.788888-08:00,1001.971923828125,10.841749,10841.749 +5751,2025-03-07T17:14:24.622033-08:00,1001.9255981445312,10.833145,10833.145 +5752,2025-03-07T17:14:35.465610-08:00,1001.9600219726562,10.843577,10843.577 +5753,2025-03-07T17:14:46.301884-08:00,1001.9534301757812,10.836274,10836.274 +5754,2025-03-07T17:14:57.147882-08:00,1001.9611206054688,10.845998,10845.998 +5755,2025-03-07T17:15:07.991931-08:00,1001.9757080078125,10.844049,10844.049 +5756,2025-03-07T17:15:18.827849-08:00,1001.9701538085938,10.835918,10835.918 +5757,2025-03-07T17:15:29.675943-08:00,1001.9834594726562,10.848094,10848.094 +5758,2025-03-07T17:15:40.512888-08:00,1001.958251953125,10.836945,10836.945 +5759,2025-03-07T17:15:51.364967-08:00,1001.9540405273438,10.852079,10852.079 +5760,2025-03-07T17:16:02.209881-08:00,1001.994873046875,10.844914,10844.914 +5761,2025-03-07T17:16:13.048281-08:00,1001.9829711914062,10.8384,10838.4 +5762,2025-03-07T17:16:23.888302-08:00,1001.9551391601562,10.840021,10840.021 +5763,2025-03-07T17:16:34.729127-08:00,1001.99169921875,10.840825,10840.825 +5764,2025-03-07T17:16:45.566256-08:00,1002.000732421875,10.837129,10837.129 +5765,2025-03-07T17:16:56.403138-08:00,1001.9718627929688,10.836882,10836.882 +5766,2025-03-07T17:17:07.246861-08:00,1001.9742431640625,10.843723,10843.723 +5767,2025-03-07T17:17:18.090470-08:00,1002.0309448242188,10.843609,10843.609 +5768,2025-03-07T17:17:28.922202-08:00,1002.0320434570312,10.831732,10831.732 +5769,2025-03-07T17:17:39.759086-08:00,1002.0045166015625,10.836884,10836.884 +5770,2025-03-07T17:17:50.602194-08:00,1002.0145263671875,10.843108,10843.108 +5771,2025-03-07T17:18:01.450457-08:00,1001.99365234375,10.848263,10848.263 +5772,2025-03-07T17:18:12.295204-08:00,1002.0292358398438,10.844747,10844.747 +5773,2025-03-07T17:18:23.139120-08:00,1002.0292358398438,10.843916,10843.916 +5774,2025-03-07T17:18:33.983037-08:00,1002.0406494140625,10.843917,10843.917 +5775,2025-03-07T17:18:44.834041-08:00,1002.0340576171875,10.851004,10851.004 +5776,2025-03-07T17:18:55.673345-08:00,1002.0507202148438,10.839304,10839.304 +5777,2025-03-07T17:19:06.520374-08:00,1002.0308837890625,10.847029,10847.029 +5778,2025-03-07T17:19:17.357282-08:00,1002.052001953125,10.836908,10836.908 +5779,2025-03-07T17:19:28.200876-08:00,1002.05419921875,10.843594,10843.594 +5780,2025-03-07T17:19:39.044186-08:00,1002.0555419921875,10.84331,10843.31 +5781,2025-03-07T17:19:49.881596-08:00,1002.0753784179688,10.83741,10837.41 +5782,2025-03-07T17:20:00.728884-08:00,1002.08544921875,10.847288,10847.288 +5783,2025-03-07T17:20:11.572936-08:00,1002.0868530273438,10.844052,10844.052 +5784,2025-03-07T17:20:22.409145-08:00,1002.10009765625,10.836209,10836.209 +5785,2025-03-07T17:20:33.255202-08:00,1002.05615234375,10.846057,10846.057 +5786,2025-03-07T17:20:44.097046-08:00,1002.0917358398438,10.841844,10841.844 +5787,2025-03-07T17:20:54.944884-08:00,1002.0968627929688,10.847838,10847.838 +5788,2025-03-07T17:21:05.778882-08:00,1002.1337280273438,10.833998,10833.998 +5789,2025-03-07T17:21:16.628373-08:00,1002.0964965820312,10.849491,10849.491 +5790,2025-03-07T17:21:27.469598-08:00,1002.1096801757812,10.841225,10841.225 +5791,2025-03-07T17:21:38.301882-08:00,1002.1121826171875,10.832284,10832.284 +5792,2025-03-07T17:21:49.144136-08:00,1002.0946655273438,10.842254,10842.254 +5793,2025-03-07T17:21:59.976310-08:00,1002.0957641601562,10.832174,10832.174 +5794,2025-03-07T17:22:10.822121-08:00,1002.1246948242188,10.845811,10845.811 +5795,2025-03-07T17:22:21.669306-08:00,1002.1074829101562,10.847185,10847.185 +5796,2025-03-07T17:22:32.504890-08:00,1002.15380859375,10.835584,10835.584 +5797,2025-03-07T17:22:43.349747-08:00,1002.1429443359375,10.844857,10844.857 +5798,2025-03-07T17:22:54.200920-08:00,1002.1705322265625,10.851173,10851.173 +5799,2025-03-07T17:23:05.040890-08:00,1002.1585693359375,10.83997,10839.97 +5800,2025-03-07T17:23:15.878471-08:00,1002.15966796875,10.837581,10837.581 +5801,2025-03-07T17:23:26.722465-08:00,1002.134521484375,10.843994,10843.994 +5802,2025-03-07T17:23:37.563020-08:00,1002.1436157226562,10.840555,10840.555 +5803,2025-03-07T17:23:48.405270-08:00,1002.1578979492188,10.84225,10842.25 +5804,2025-03-07T17:23:59.249882-08:00,1002.1724853515625,10.844612,10844.612 +5805,2025-03-07T17:24:10.091322-08:00,1002.1668701171875,10.84144,10841.44 +5806,2025-03-07T17:24:20.927111-08:00,1002.1603393554688,10.835789,10835.789 +5807,2025-03-07T17:24:31.767933-08:00,1002.129638671875,10.840822,10840.822 +5808,2025-03-07T17:24:42.617925-08:00,1002.1504516601562,10.849992,10849.992 +5809,2025-03-07T17:24:53.453265-08:00,1002.1253662109375,10.83534,10835.34 +5810,2025-03-07T17:25:04.304008-08:00,1002.1661987304688,10.850743,10850.743 +5811,2025-03-07T17:25:15.147129-08:00,1002.1609497070312,10.843121,10843.121 +5812,2025-03-07T17:25:25.983886-08:00,1002.1884155273438,10.836757,10836.757 +5813,2025-03-07T17:25:36.828196-08:00,1002.1685791015625,10.84431,10844.31 +5814,2025-03-07T17:25:47.677514-08:00,1002.1776733398438,10.849318,10849.318 +5815,2025-03-07T17:25:58.510884-08:00,1002.1908569335938,10.83337,10833.37 +5816,2025-03-07T17:26:09.362176-08:00,1002.2064819335938,10.851292,10851.292 +5817,2025-03-07T17:26:20.204884-08:00,1002.20361328125,10.842708,10842.708 +5818,2025-03-07T17:26:31.044190-08:00,1002.1573486328125,10.839306,10839.306 +5819,2025-03-07T17:26:41.885936-08:00,1002.2137451171875,10.841746,10841.746 +5820,2025-03-07T17:26:52.722877-08:00,1002.215087890625,10.836941,10836.941 +5821,2025-03-07T17:27:03.561214-08:00,1002.2307739257812,10.838337,10838.337 +5822,2025-03-07T17:27:14.403253-08:00,1002.1976318359375,10.842039,10842.039 +5823,2025-03-07T17:27:25.249020-08:00,1002.2418823242188,10.845767,10845.767 +5824,2025-03-07T17:27:36.088128-08:00,1002.2509155273438,10.839108,10839.108 +5825,2025-03-07T17:27:46.921206-08:00,1002.2167358398438,10.833078,10833.078 +5826,2025-03-07T17:27:57.764931-08:00,1002.239013671875,10.843725,10843.725 +5827,2025-03-07T17:28:08.601240-08:00,1002.2323608398438,10.836309,10836.309 +5828,2025-03-07T17:28:19.439276-08:00,1002.2467041015625,10.838036,10838.036 +5829,2025-03-07T17:28:30.289029-08:00,1002.2479858398438,10.849753,10849.753 +5830,2025-03-07T17:28:41.129880-08:00,1002.2225952148438,10.840851,10840.851 +5831,2025-03-07T17:28:51.981881-08:00,1002.2371826171875,10.852001,10852.001 +5832,2025-03-07T17:29:02.818082-08:00,1002.2581176757812,10.836201,10836.201 +5833,2025-03-07T17:29:13.665889-08:00,1002.226318359375,10.847807,10847.807 +5834,2025-03-07T17:29:24.509225-08:00,1002.25390625,10.843336,10843.336 +5835,2025-03-07T17:29:35.352972-08:00,1002.2472534179688,10.843747,10843.747 +5836,2025-03-07T17:29:46.193116-08:00,1002.25390625,10.840144,10840.144 +5837,2025-03-07T17:29:57.038863-08:00,1002.2089233398438,10.845747,10845.747 +5838,2025-03-07T17:30:07.888107-08:00,1002.2562255859375,10.849244,10849.244 +5839,2025-03-07T17:30:18.735572-08:00,1002.244384765625,10.847465,10847.465 +5840,2025-03-07T17:30:29.576930-08:00,1002.2256469726562,10.841358,10841.358 +5841,2025-03-07T17:30:40.416887-08:00,1002.232177734375,10.839957,10839.957 +5842,2025-03-07T17:30:51.263884-08:00,1002.2335815429688,10.846997,10846.997 +5843,2025-03-07T17:31:02.104113-08:00,1002.2544555664062,10.840229,10840.229 +5844,2025-03-07T17:31:12.939219-08:00,1002.2081298828125,10.835106,10835.106 +5845,2025-03-07T17:31:23.778210-08:00,1002.2412719726562,10.838991,10838.991 +5846,2025-03-07T17:31:34.627582-08:00,1002.250244140625,10.849372,10849.372 +5847,2025-03-07T17:31:45.470457-08:00,1002.2290649414062,10.842875,10842.875 +5848,2025-03-07T17:31:56.324227-08:00,1002.291015625,10.85377,10853.77 +5849,2025-03-07T17:32:07.158052-08:00,1002.2393798828125,10.833825,10833.825 +5850,2025-03-07T17:32:18.002857-08:00,1002.2470092773438,10.844805,10844.805 +5851,2025-03-07T17:32:28.840886-08:00,1002.2418212890625,10.838029,10838.029 +5852,2025-03-07T17:32:39.685151-08:00,1002.2338256835938,10.844265,10844.265 +5853,2025-03-07T17:32:50.524034-08:00,1002.2427978515625,10.838883,10838.883 +5854,2025-03-07T17:33:01.367883-08:00,1002.2550048828125,10.843849,10843.849 +5855,2025-03-07T17:33:12.209151-08:00,1002.2452392578125,10.841268,10841.268 +5856,2025-03-07T17:33:23.058150-08:00,1002.2575073242188,10.848999,10848.999 +5857,2025-03-07T17:33:33.891887-08:00,1002.2598266601562,10.833737,10833.737 +5858,2025-03-07T17:33:44.738321-08:00,1002.2267456054688,10.846434,10846.434 +5859,2025-03-07T17:33:55.569879-08:00,1002.2542114257812,10.831558,10831.558 +5860,2025-03-07T17:34:06.411692-08:00,1002.2675170898438,10.841813,10841.813 +5861,2025-03-07T17:34:17.249939-08:00,1002.2291259765625,10.838247,10838.247 +5862,2025-03-07T17:34:28.081240-08:00,1002.2235717773438,10.831301,10831.301 +5863,2025-03-07T17:34:38.916021-08:00,1002.2158813476562,10.834781,10834.781 +5864,2025-03-07T17:34:49.756097-08:00,1002.2050170898438,10.840076,10840.076 +5865,2025-03-07T17:35:00.598025-08:00,1002.21826171875,10.841928,10841.928 +5866,2025-03-07T17:35:11.433186-08:00,1002.23681640625,10.835161,10835.161 +5867,2025-03-07T17:35:22.270237-08:00,1002.2036743164062,10.837051,10837.051 +5868,2025-03-07T17:35:33.117092-08:00,1002.197021484375,10.846855,10846.855 +5869,2025-03-07T17:35:43.966079-08:00,1002.199462890625,10.848987,10848.987 +5870,2025-03-07T17:35:54.803572-08:00,1002.2061157226562,10.837493,10837.493 +5871,2025-03-07T17:36:05.646143-08:00,1002.2061157226562,10.842571,10842.571 +5872,2025-03-07T17:36:16.479888-08:00,1002.2140502929688,10.833745,10833.745 +5873,2025-03-07T17:36:27.323184-08:00,1002.186279296875,10.843296,10843.296 +5874,2025-03-07T17:36:38.160966-08:00,1002.2008056640625,10.837782,10837.782 +5875,2025-03-07T17:36:49.001288-08:00,1002.1910400390625,10.840322,10840.322 +5876,2025-03-07T17:36:59.850893-08:00,1002.1829833984375,10.849605,10849.605 +5877,2025-03-07T17:37:10.687871-08:00,1002.1976318359375,10.836978,10836.978 +5878,2025-03-07T17:37:21.525115-08:00,1002.220947265625,10.837244,10837.244 +5879,2025-03-07T17:37:32.369125-08:00,1002.1854858398438,10.84401,10844.01 +5880,2025-03-07T17:37:43.210029-08:00,1002.2076416015625,10.840904,10840.904 +5881,2025-03-07T17:37:54.055176-08:00,1002.2100830078125,10.845147,10845.147 +5882,2025-03-07T17:38:04.897636-08:00,1002.1849365234375,10.84246,10842.46 +5883,2025-03-07T17:38:15.743175-08:00,1002.204833984375,10.845539,10845.539 +5884,2025-03-07T17:38:26.574134-08:00,1002.1915893554688,10.830959,10830.959 +5885,2025-03-07T17:38:37.417205-08:00,1002.1793823242188,10.843071,10843.071 +5886,2025-03-07T17:38:48.257088-08:00,1002.15283203125,10.839883,10839.883 +5887,2025-03-07T17:38:59.088881-08:00,1002.192626953125,10.831793,10831.793 +5888,2025-03-07T17:39:09.933154-08:00,1002.1595458984375,10.844273,10844.273 +5889,2025-03-07T17:39:20.773133-08:00,1002.1807250976562,10.839979,10839.979 +5890,2025-03-07T17:39:31.618883-08:00,1002.2162475585938,10.84575,10845.75 +5891,2025-03-07T17:39:42.458090-08:00,1002.1964111328125,10.839207,10839.207 +5892,2025-03-07T17:39:53.307287-08:00,1002.176513671875,10.849197,10849.197 +5893,2025-03-07T17:40:04.144880-08:00,1002.177490234375,10.837593,10837.593 +5894,2025-03-07T17:40:14.987779-08:00,1002.1907958984375,10.842899,10842.899 +5895,2025-03-07T17:40:25.834918-08:00,1002.1589965820312,10.847139,10847.139 +5896,2025-03-07T17:40:36.681891-08:00,1002.179931640625,10.846973,10846.973 +5897,2025-03-07T17:40:47.515517-08:00,1002.2053833007812,10.833626,10833.626 +5898,2025-03-07T17:40:58.363933-08:00,1002.1945190429688,10.848416,10848.416 +5899,2025-03-07T17:41:09.202887-08:00,1002.182373046875,10.838954,10838.954 +5900,2025-03-07T17:41:20.051116-08:00,1002.1889038085938,10.848229,10848.229 +5901,2025-03-07T17:41:30.899044-08:00,1002.195556640625,10.847928,10847.928 +5902,2025-03-07T17:41:41.739223-08:00,1002.1704711914062,10.840179,10840.179 +5903,2025-03-07T17:41:52.579196-08:00,1002.1968994140625,10.839973,10839.973 +5904,2025-03-07T17:42:03.430391-08:00,1002.2366943359375,10.851195,10851.195 +5905,2025-03-07T17:42:14.276031-08:00,1002.1968994140625,10.84564,10845.64 +5906,2025-03-07T17:42:25.116888-08:00,1002.1990356445312,10.840857,10840.857 +5907,2025-03-07T17:42:35.953935-08:00,1002.1903076171875,10.837047,10837.047 +5908,2025-03-07T17:42:46.790965-08:00,1002.2003173828125,10.83703,10837.03 +5909,2025-03-07T17:42:57.640376-08:00,1002.2334594726562,10.849411,10849.411 +5910,2025-03-07T17:43:08.482299-08:00,1002.2279052734375,10.841923,10841.923 +5911,2025-03-07T17:43:19.320595-08:00,1002.1881103515625,10.838296,10838.296 +5912,2025-03-07T17:43:30.159200-08:00,1002.2345581054688,10.838605,10838.605 +5913,2025-03-07T17:43:40.995890-08:00,1002.2345581054688,10.83669,10836.69 +5914,2025-03-07T17:43:51.850034-08:00,1002.2079467773438,10.854144,10854.144 +5915,2025-03-07T17:44:02.686066-08:00,1002.2003173828125,10.836032,10836.032 +5916,2025-03-07T17:44:13.539929-08:00,1002.2160034179688,10.853863,10853.863 +5917,2025-03-07T17:44:24.382959-08:00,1002.2345581054688,10.84303,10843.03 +5918,2025-03-07T17:44:35.227295-08:00,1002.2533569335938,10.844336,10844.336 +5919,2025-03-07T17:44:46.075372-08:00,1002.2254638671875,10.848077,10848.077 +5920,2025-03-07T17:44:56.918971-08:00,1002.2088012695312,10.843599,10843.599 +5921,2025-03-07T17:45:07.762866-08:00,1002.2022094726562,10.843895,10843.895 +5922,2025-03-07T17:45:18.605028-08:00,1002.241943359375,10.842162,10842.162 +5923,2025-03-07T17:45:29.445020-08:00,1002.2352905273438,10.839992,10839.992 +5924,2025-03-07T17:45:40.299075-08:00,1002.2329711914062,10.854055,10854.055 +5925,2025-03-07T17:45:51.140192-08:00,1002.2726440429688,10.841117,10841.117 +5926,2025-03-07T17:46:01.982170-08:00,1002.251708984375,10.841978,10841.978 +5927,2025-03-07T17:46:12.819953-08:00,1002.2559204101562,10.837783,10837.783 +5928,2025-03-07T17:46:23.658225-08:00,1002.2810668945312,10.838272,10838.272 +5929,2025-03-07T17:46:34.508374-08:00,1002.2536010742188,10.850149,10850.149 +5930,2025-03-07T17:46:45.344948-08:00,1002.24560546875,10.836574,10836.574 +5931,2025-03-07T17:46:56.186273-08:00,1002.2355346679688,10.841325,10841.325 +5932,2025-03-07T17:47:07.025946-08:00,1002.2753295898438,10.839673,10839.673 +5933,2025-03-07T17:47:17.873446-08:00,1002.267333984375,10.8475,10847.5 +5934,2025-03-07T17:47:28.716924-08:00,1002.2662353515625,10.843478,10843.478 +5935,2025-03-07T17:47:39.555141-08:00,1002.2439575195312,10.838217,10838.217 +5936,2025-03-07T17:47:50.397171-08:00,1002.2691650390625,10.84203,10842.03 +5937,2025-03-07T17:48:01.241357-08:00,1002.3154907226562,10.844186,10844.186 +5938,2025-03-07T17:48:12.088139-08:00,1002.3068237304688,10.846782,10846.782 +5939,2025-03-07T17:48:22.929939-08:00,1002.3465576171875,10.8418,10841.8 +5940,2025-03-07T17:48:33.769887-08:00,1002.3186645507812,10.839948,10839.948 +5941,2025-03-07T17:48:44.613232-08:00,1002.2910766601562,10.843345,10843.345 +5942,2025-03-07T17:48:55.456190-08:00,1002.349365234375,10.842958,10842.958 +5943,2025-03-07T17:49:06.299889-08:00,1002.3417358398438,10.843699,10843.699 +5944,2025-03-07T17:49:17.142884-08:00,1002.3560180664062,10.842995,10842.995 +5945,2025-03-07T17:49:27.985536-08:00,1002.3657836914062,10.842652,10842.652 +5946,2025-03-07T17:49:38.832313-08:00,1002.3526000976562,10.846777,10846.777 +5947,2025-03-07T17:49:49.669624-08:00,1002.3488159179688,10.837311,10837.311 +5948,2025-03-07T17:50:00.513885-08:00,1002.3843994140625,10.844261,10844.261 +5949,2025-03-07T17:50:11.349148-08:00,1002.3886108398438,10.835263,10835.263 +5950,2025-03-07T17:50:22.194194-08:00,1002.4031372070312,10.845046,10845.046 +5951,2025-03-07T17:50:33.033088-08:00,1002.3965454101562,10.838894,10838.894 +5952,2025-03-07T17:50:43.873872-08:00,1002.4007568359375,10.840784,10840.784 +5953,2025-03-07T17:50:54.724186-08:00,1002.3795166015625,10.850314,10850.314 +5954,2025-03-07T17:51:05.563504-08:00,1002.4126586914062,10.839318,10839.318 +5955,2025-03-07T17:51:16.404026-08:00,1002.4115600585938,10.840522,10840.522 +5956,2025-03-07T17:51:27.251354-08:00,1002.405029296875,10.847328,10847.328 +5957,2025-03-07T17:51:38.090865-08:00,1002.4367065429688,10.839511,10839.511 +5958,2025-03-07T17:51:48.923166-08:00,1002.4489135742188,10.832301,10832.301 +5959,2025-03-07T17:51:59.765173-08:00,1002.415771484375,10.842007,10842.007 +5960,2025-03-07T17:52:10.603890-08:00,1002.4067993164062,10.838717,10838.717 +5961,2025-03-07T17:52:21.438416-08:00,1002.4255981445312,10.834526,10834.526 +5962,2025-03-07T17:52:32.277877-08:00,1002.446533203125,10.839461,10839.461 +5963,2025-03-07T17:52:43.120087-08:00,1002.4454956054688,10.84221,10842.21 +5964,2025-03-07T17:52:53.965891-08:00,1002.4508056640625,10.845804,10845.804 +5965,2025-03-07T17:53:04.811932-08:00,1002.4351806640625,10.846041,10846.041 +5966,2025-03-07T17:53:15.650923-08:00,1002.443115234375,10.838991,10838.991 +5967,2025-03-07T17:53:26.499946-08:00,1002.43408203125,10.849023,10849.023 +5968,2025-03-07T17:53:37.336708-08:00,1002.4539184570312,10.836762,10836.762 +5969,2025-03-07T17:53:48.179271-08:00,1002.4790649414062,10.842563,10842.563 +5970,2025-03-07T17:53:59.016939-08:00,1002.472412109375,10.837668,10837.668 +5971,2025-03-07T17:54:09.850115-08:00,1002.4923706054688,10.833176,10833.176 +5972,2025-03-07T17:54:20.692053-08:00,1002.4647827148438,10.841938,10841.938 +5973,2025-03-07T17:54:31.525890-08:00,1002.4912719726562,10.833837,10833.837 +5974,2025-03-07T17:54:42.372123-08:00,1002.4766235351562,10.846233,10846.233 +5975,2025-03-07T17:54:53.199349-08:00,1002.4888916015625,10.827226,10827.226 +5976,2025-03-07T17:55:04.045238-08:00,1002.4808349609375,10.845889,10845.889 +5977,2025-03-07T17:55:14.883201-08:00,1002.51953125,10.837963,10837.963 +5978,2025-03-07T17:55:25.716945-08:00,1002.498291015625,10.833744,10833.744 +5979,2025-03-07T17:55:36.561350-08:00,1002.5050048828125,10.844405,10844.405 +5980,2025-03-07T17:55:47.401878-08:00,1002.4959106445312,10.840528,10840.528 +5981,2025-03-07T17:55:58.239886-08:00,1002.4816284179688,10.838008,10838.008 +5982,2025-03-07T17:56:09.083225-08:00,1002.5223999023438,10.843339,10843.339 +5983,2025-03-07T17:56:19.925849-08:00,1002.5214233398438,10.842624,10842.624 +5984,2025-03-07T17:56:30.762872-08:00,1002.4659423828125,10.837023,10837.023 +5985,2025-03-07T17:56:41.607207-08:00,1002.5032958984375,10.844335,10844.335 +5986,2025-03-07T17:56:52.449938-08:00,1002.4967041015625,10.842731,10842.731 +5987,2025-03-07T17:57:03.297419-08:00,1002.49560546875,10.847481,10847.481 +5988,2025-03-07T17:57:14.133725-08:00,1002.474365234375,10.836306,10836.306 +5989,2025-03-07T17:57:24.976969-08:00,1002.4534301757812,10.843244,10843.244 +5990,2025-03-07T17:57:35.823910-08:00,1002.4932250976562,10.846941,10846.941 +5991,2025-03-07T17:57:46.672170-08:00,1002.5131225585938,10.84826,10848.26 +5992,2025-03-07T17:57:57.519129-08:00,1002.52734375,10.846959,10846.959 +5993,2025-03-07T17:58:08.365951-08:00,1002.486572265625,10.846822,10846.822 +5994,2025-03-07T17:58:19.207153-08:00,1002.505126953125,10.841202,10841.202 +5995,2025-03-07T17:58:30.055014-08:00,1002.49609375,10.847861,10847.861 +5996,2025-03-07T17:58:40.902858-08:00,1002.4762573242188,10.847844,10847.844 +5997,2025-03-07T17:58:51.741063-08:00,1002.5131225585938,10.838205,10838.205 +5998,2025-03-07T17:59:02.590648-08:00,1002.5183715820312,10.849585,10849.585 +5999,2025-03-07T17:59:13.440141-08:00,1002.4751586914062,10.849493,10849.493 +6000,2025-03-07T17:59:24.279884-08:00,1002.4894409179688,10.839743,10839.743 +6001,2025-03-07T17:59:35.125130-08:00,1002.443115234375,10.845246,10845.246 +6002,2025-03-07T17:59:45.962941-08:00,1002.468505859375,10.837811,10837.811 +6003,2025-03-07T17:59:56.802912-08:00,1002.468505859375,10.839971,10839.971 +6004,2025-03-07T18:00:07.640869-08:00,1002.4473266601562,10.837957,10837.957 +6005,2025-03-07T18:00:18.474140-08:00,1002.4671630859375,10.833271,10833.271 +6006,2025-03-07T18:00:29.314903-08:00,1002.466064453125,10.840763,10840.763 +6007,2025-03-07T18:00:40.162944-08:00,1002.4727172851562,10.848041,10848.041 +6008,2025-03-07T18:00:51.003941-08:00,1002.4727172851562,10.840997,10840.997 +6009,2025-03-07T18:01:01.846582-08:00,1002.4581298828125,10.842641,10842.641 +6010,2025-03-07T18:01:12.683879-08:00,1002.450439453125,10.837297,10837.297 +6011,2025-03-07T18:01:23.526886-08:00,1002.4581298828125,10.843007,10843.007 +6012,2025-03-07T18:01:34.372884-08:00,1002.452880859375,10.845998,10845.998 +6013,2025-03-07T18:01:45.214890-08:00,1002.4581298828125,10.842006,10842.006 +6014,2025-03-07T18:01:56.062359-08:00,1002.4515380859375,10.847469,10847.469 +6015,2025-03-07T18:02:06.896990-08:00,1002.4329833984375,10.834631,10834.631 +6016,2025-03-07T18:02:17.737973-08:00,1002.44482421875,10.840983,10840.983 +6017,2025-03-07T18:02:28.585173-08:00,1002.4306030273438,10.8472,10847.2 +6018,2025-03-07T18:02:39.423215-08:00,1002.4462280273438,10.838042,10838.042 +6019,2025-03-07T18:02:50.260882-08:00,1002.452880859375,10.837667,10837.667 +6020,2025-03-07T18:03:01.097004-08:00,1002.4382934570312,10.836122,10836.122 +6021,2025-03-07T18:03:11.941152-08:00,1002.4287719726562,10.844148,10844.148 +6022,2025-03-07T18:03:22.783929-08:00,1002.43408203125,10.842777,10842.777 +6023,2025-03-07T18:03:33.621884-08:00,1002.4462280273438,10.837955,10837.955 +6024,2025-03-07T18:03:44.464887-08:00,1002.4065551757812,10.843003,10843.003 +6025,2025-03-07T18:03:55.301093-08:00,1002.4329833984375,10.836206,10836.206 +6026,2025-03-07T18:04:06.144877-08:00,1002.455322265625,10.843784,10843.784 +6027,2025-03-07T18:04:16.987718-08:00,1002.4618530273438,10.842841,10842.841 +6028,2025-03-07T18:04:27.831880-08:00,1002.4486694335938,10.844162,10844.162 +6029,2025-03-07T18:04:38.669366-08:00,1002.3734130859375,10.837486,10837.486 +6030,2025-03-07T18:04:49.505868-08:00,1002.43408203125,10.836502,10836.502 +6031,2025-03-07T18:05:00.348888-08:00,1002.4329833984375,10.84302,10843.02 +6032,2025-03-07T18:05:11.192261-08:00,1002.4165649414062,10.843373,10843.373 +6033,2025-03-07T18:05:22.028881-08:00,1002.4462280273438,10.83662,10836.62 +6034,2025-03-07T18:05:32.873862-08:00,1002.4274291992188,10.844981,10844.981 +6035,2025-03-07T18:05:43.745622-08:00,1002.4420166015625,10.87176,10871.76 +6036,2025-03-07T18:05:54.580209-08:00,1002.4420166015625,10.834587,10834.587 +6037,2025-03-07T18:06:05.424691-08:00,1002.4539184570312,10.844482,10844.482 +6038,2025-03-07T18:06:16.271880-08:00,1002.4486694335938,10.847189,10847.189 +6039,2025-03-07T18:06:27.108607-08:00,1002.455322265625,10.836727,10836.727 +6040,2025-03-07T18:06:37.952112-08:00,1002.4420166015625,10.843505,10843.505 +6041,2025-03-07T18:06:48.790858-08:00,1002.4406127929688,10.838746,10838.746 +6042,2025-03-07T18:06:59.638909-08:00,1002.4671630859375,10.848051,10848.051 +6043,2025-03-07T18:07:10.479621-08:00,1002.4605712890625,10.840712,10840.712 +6044,2025-03-07T18:07:21.319851-08:00,1002.487060546875,10.84023,10840.23 +6045,2025-03-07T18:07:32.168003-08:00,1002.4894409179688,10.848152,10848.152 +6046,2025-03-07T18:07:43.013896-08:00,1002.4737548828125,10.845893,10845.893 +6047,2025-03-07T18:07:53.865803-08:00,1002.4462280273438,10.851907,10851.907 +6048,2025-03-07T18:08:04.699624-08:00,1002.466064453125,10.833821,10833.821 +6049,2025-03-07T18:08:15.549849-08:00,1002.4581298828125,10.850225,10850.225 +6050,2025-03-07T18:08:26.379612-08:00,1002.450439453125,10.829763,10829.763 +6051,2025-03-07T18:08:37.221894-08:00,1002.45703125,10.842282,10842.282 +6052,2025-03-07T18:08:48.056741-08:00,1002.4954833984375,10.834847,10834.847 +6053,2025-03-07T18:08:58.901978-08:00,1002.5020141601562,10.845237,10845.237 +6054,2025-03-07T18:09:09.745546-08:00,1002.4612426757812,10.843568,10843.568 +6055,2025-03-07T18:09:20.587737-08:00,1002.5076293945312,10.842191,10842.191 +6056,2025-03-07T18:09:31.425629-08:00,1002.4985961914062,10.837892,10837.892 +6057,2025-03-07T18:09:42.263965-08:00,1002.4996948242188,10.838336,10838.336 +6058,2025-03-07T18:09:53.103611-08:00,1002.4829711914062,10.839646,10839.646 +6059,2025-03-07T18:10:03.952861-08:00,1002.5226440429688,10.84925,10849.25 +6060,2025-03-07T18:10:14.791624-08:00,1002.5213012695312,10.838763,10838.763 +6061,2025-03-07T18:10:25.631967-08:00,1002.5136108398438,10.840343,10840.343 +6062,2025-03-07T18:10:36.478661-08:00,1002.5081176757812,10.846694,10846.694 +6063,2025-03-07T18:10:47.322947-08:00,1002.5335083007812,10.844286,10844.286 +6064,2025-03-07T18:10:58.175902-08:00,1002.553466796875,10.852955,10852.955 +6065,2025-03-07T18:11:09.014204-08:00,1002.5390625,10.838302,10838.302 +6066,2025-03-07T18:11:19.862214-08:00,1002.5722045898438,10.84801,10848.01 +6067,2025-03-07T18:11:30.702675-08:00,1002.57080078125,10.840461,10840.461 +6068,2025-03-07T18:11:41.542615-08:00,1002.576416015625,10.83994,10839.94 +6069,2025-03-07T18:11:52.389614-08:00,1002.5310668945312,10.846999,10846.999 +6070,2025-03-07T18:12:03.233599-08:00,1002.5631103515625,10.843985,10843.985 +6071,2025-03-07T18:12:14.076176-08:00,1002.5775146484375,10.842577,10842.577 +6072,2025-03-07T18:12:24.926804-08:00,1002.564208984375,10.850628,10850.628 +6073,2025-03-07T18:12:35.768620-08:00,1002.5829467773438,10.841816,10841.816 +6074,2025-03-07T18:12:46.607583-08:00,1002.5775146484375,10.838963,10838.963 +6075,2025-03-07T18:12:57.458618-08:00,1002.5697631835938,10.851035,10851.035 +6076,2025-03-07T18:13:08.298376-08:00,1002.6105346679688,10.839758,10839.758 +6077,2025-03-07T18:13:19.133682-08:00,1002.6160888671875,10.835306,10835.306 +6078,2025-03-07T18:13:29.978748-08:00,1002.6227416992188,10.845066,10845.066 +6079,2025-03-07T18:13:40.822620-08:00,1002.6213989257812,10.843872,10843.872 +6080,2025-03-07T18:13:51.669805-08:00,1002.6534423828125,10.847185,10847.185 +6081,2025-03-07T18:14:02.514581-08:00,1002.6345825195312,10.844776,10844.776 +6082,2025-03-07T18:14:13.364671-08:00,1002.667724609375,10.85009,10850.09 +6083,2025-03-07T18:14:24.217671-08:00,1002.6412353515625,10.853,10853.0 +6084,2025-03-07T18:14:35.071160-08:00,1002.6732788085938,10.853489,10853.489 +6085,2025-03-07T18:14:45.913667-08:00,1002.680908203125,10.842507,10842.507 +6086,2025-03-07T18:14:56.765796-08:00,1002.70751953125,10.852129,10852.129 +6087,2025-03-07T18:15:07.607652-08:00,1002.6875610351562,10.841856,10841.856 +6088,2025-03-07T18:15:18.456939-08:00,1002.7008056640625,10.849287,10849.287 +6089,2025-03-07T18:15:29.304999-08:00,1002.679931640625,10.84806,10848.06 +6090,2025-03-07T18:15:40.158500-08:00,1002.720703125,10.853501,10853.501 +6091,2025-03-07T18:15:51.006556-08:00,1002.6865844726562,10.848056,10848.056 +6092,2025-03-07T18:16:01.840001-08:00,1002.7196655273438,10.833445,10833.445 +6093,2025-03-07T18:16:12.684860-08:00,1002.7196655273438,10.844859,10844.859 +6094,2025-03-07T18:16:23.520773-08:00,1002.73291015625,10.835913,10835.913 +6095,2025-03-07T18:16:34.367825-08:00,1002.7196655273438,10.847052,10847.052 +6096,2025-03-07T18:16:45.211803-08:00,1002.7106323242188,10.843978,10843.978 +6097,2025-03-07T18:16:56.047448-08:00,1002.71826171875,10.835645,10835.645 +6098,2025-03-07T18:17:06.897911-08:00,1002.7527465820312,10.850463,10850.463 +6099,2025-03-07T18:17:17.743881-08:00,1002.7569580078125,10.84597,10845.97 +6100,2025-03-07T18:17:28.589617-08:00,1002.7290649414062,10.845736,10845.736 +6101,2025-03-07T18:17:39.428614-08:00,1002.7371215820312,10.838997,10838.997 +6102,2025-03-07T18:17:50.273621-08:00,1002.7701416015625,10.845007,10845.007 +6103,2025-03-07T18:18:01.125949-08:00,1002.7357788085938,10.852328,10852.328 +6104,2025-03-07T18:18:11.967108-08:00,1002.7437744140625,10.841159,10841.159 +6105,2025-03-07T18:18:22.817997-08:00,1002.7423706054688,10.850889,10850.889 +6106,2025-03-07T18:18:33.659623-08:00,1002.7290649414062,10.841626,10841.626 +6107,2025-03-07T18:18:44.509933-08:00,1002.76220703125,10.85031,10850.31 +6108,2025-03-07T18:18:55.350615-08:00,1002.72802734375,10.840682,10840.682 +6109,2025-03-07T18:19:06.195946-08:00,1002.721435546875,10.845331,10845.331 +6110,2025-03-07T18:19:17.047054-08:00,1002.7611694335938,10.851108,10851.108 +6111,2025-03-07T18:19:27.903019-08:00,1002.7332763671875,10.855965,10855.965 +6112,2025-03-07T18:19:38.746532-08:00,1002.72802734375,10.843513,10843.513 +6113,2025-03-07T18:19:49.590616-08:00,1002.7322387695312,10.844084,10844.084 +6114,2025-03-07T18:20:00.436618-08:00,1002.7123413085938,10.846002,10846.002 +6115,2025-03-07T18:20:11.282621-08:00,1002.7134399414062,10.846003,10846.003 +6116,2025-03-07T18:20:22.130684-08:00,1002.72802734375,10.848063,10848.063 +6117,2025-03-07T18:20:32.968665-08:00,1002.74658203125,10.837981,10837.981 +6118,2025-03-07T18:20:43.816924-08:00,1002.7267456054688,10.848259,10848.259 +6119,2025-03-07T18:20:54.671191-08:00,1002.7123413085938,10.854267,10854.267 +6120,2025-03-07T18:21:05.522287-08:00,1002.7190551757812,10.851096,10851.096 +6121,2025-03-07T18:21:16.369760-08:00,1002.768798828125,10.847473,10847.473 +6122,2025-03-07T18:21:27.212862-08:00,1002.7653198242188,10.843102,10843.102 +6123,2025-03-07T18:21:38.061599-08:00,1002.7598266601562,10.848737,10848.737 +6124,2025-03-07T18:21:48.904475-08:00,1002.7454833984375,10.842876,10842.876 +6125,2025-03-07T18:21:59.746618-08:00,1002.7454833984375,10.842143,10842.143 +6126,2025-03-07T18:22:10.581616-08:00,1002.7796630859375,10.834998,10834.998 +6127,2025-03-07T18:22:21.428885-08:00,1002.7521362304688,10.847269,10847.269 +6128,2025-03-07T18:22:32.276624-08:00,1002.7521362304688,10.847739,10847.739 +6129,2025-03-07T18:22:43.130998-08:00,1002.7322387695312,10.854374,10854.374 +6130,2025-03-07T18:22:53.979949-08:00,1002.7743530273438,10.848951,10848.951 +6131,2025-03-07T18:23:04.828728-08:00,1002.7730712890625,10.848779,10848.779 +6132,2025-03-07T18:23:15.671657-08:00,1002.7531127929688,10.842929,10842.929 +6133,2025-03-07T18:23:26.519812-08:00,1002.7587280273438,10.848155,10848.155 +6134,2025-03-07T18:23:37.357863-08:00,1002.7720336914062,10.838051,10838.051 +6135,2025-03-07T18:23:48.201345-08:00,1002.7796630859375,10.843482,10843.482 +6136,2025-03-07T18:23:59.043622-08:00,1002.7639770507812,10.842277,10842.277 +6137,2025-03-07T18:24:09.893675-08:00,1002.778564453125,10.850053,10850.053 +6138,2025-03-07T18:24:20.739853-08:00,1002.7720336914062,10.846178,10846.178 +6139,2025-03-07T18:24:31.587603-08:00,1002.7507934570312,10.84775,10847.75 +6140,2025-03-07T18:24:42.438798-08:00,1002.7771606445312,10.851195,10851.195 +6141,2025-03-07T18:24:53.274944-08:00,1002.7639770507812,10.836146,10836.146 +6142,2025-03-07T18:25:04.121799-08:00,1002.744140625,10.846855,10846.855 +6143,2025-03-07T18:25:14.962825-08:00,1002.783935546875,10.841026,10841.026 +6144,2025-03-07T18:25:25.801845-08:00,1002.7852172851562,10.83902,10839.02 +6145,2025-03-07T18:25:36.647959-08:00,1002.7918701171875,10.846114,10846.114 +6146,2025-03-07T18:25:47.498010-08:00,1002.7771606445312,10.850051,10850.051 +6147,2025-03-07T18:25:58.352747-08:00,1002.7904663085938,10.854737,10854.737 +6148,2025-03-07T18:26:09.200224-08:00,1002.7880249023438,10.847477,10847.477 +6149,2025-03-07T18:26:20.043209-08:00,1002.797119140625,10.842985,10842.985 +6150,2025-03-07T18:26:30.887706-08:00,1002.7893676757812,10.844497,10844.497 +6151,2025-03-07T18:26:41.729877-08:00,1002.762939453125,10.842171,10842.171 +6152,2025-03-07T18:26:52.573395-08:00,1002.7960815429688,10.843518,10843.518 +6153,2025-03-07T18:27:03.423183-08:00,1002.7904663085938,10.849788,10849.788 +6154,2025-03-07T18:27:14.266616-08:00,1002.7761840820312,10.843433,10843.433 +6155,2025-03-07T18:27:25.111615-08:00,1002.81591796875,10.844999,10844.999 +6156,2025-03-07T18:27:35.962612-08:00,1002.8026733398438,10.850997,10850.997 +6157,2025-03-07T18:27:46.810861-08:00,1002.810302734375,10.848249,10848.249 +6158,2025-03-07T18:27:57.654236-08:00,1002.822509765625,10.843375,10843.375 +6159,2025-03-07T18:28:08.493654-08:00,1002.8037719726562,10.839418,10839.418 +6160,2025-03-07T18:28:19.339616-08:00,1002.822509765625,10.845962,10845.962 +6161,2025-03-07T18:28:30.177939-08:00,1002.81591796875,10.838323,10838.323 +6162,2025-03-07T18:28:41.027619-08:00,1002.822509765625,10.84968,10849.68 +6163,2025-03-07T18:28:51.868878-08:00,1002.8079833984375,10.841259,10841.259 +6164,2025-03-07T18:29:02.712772-08:00,1002.8211669921875,10.843894,10843.894 +6165,2025-03-07T18:29:13.565676-08:00,1002.8278198242188,10.852904,10852.904 +6166,2025-03-07T18:29:24.411725-08:00,1002.854248046875,10.846049,10846.049 +6167,2025-03-07T18:29:35.260300-08:00,1002.8490600585938,10.848575,10848.575 +6168,2025-03-07T18:29:46.109928-08:00,1002.8622436523438,10.849628,10849.628 +6169,2025-03-07T18:29:56.962623-08:00,1002.8556518554688,10.852695,10852.695 +6170,2025-03-07T18:30:07.806196-08:00,1002.87548828125,10.843573,10843.573 +6171,2025-03-07T18:30:18.654281-08:00,1002.8382568359375,10.848085,10848.085 +6172,2025-03-07T18:30:29.506407-08:00,1002.8873291015625,10.852126,10852.126 +6173,2025-03-07T18:30:51.198778-08:00,1002.8609619140625,21.692371,21692.371 +6174,2025-03-07T18:31:02.044612-08:00,1002.8741455078125,10.845834,10845.834 +6175,2025-03-07T18:31:12.894771-08:00,1002.872802734375,10.850159,10850.159 +6176,2025-03-07T18:31:23.736876-08:00,1002.900634765625,10.842105,10842.105 +6177,2025-03-07T18:31:34.591633-08:00,1002.8847045898438,10.854757,10854.757 +6178,2025-03-07T18:31:45.443758-08:00,1002.9138793945312,10.852125,10852.125 +6179,2025-03-07T18:31:56.288161-08:00,1002.8926391601562,10.844403,10844.403 +6180,2025-03-07T18:32:07.147982-08:00,1002.9190673828125,10.859821,10859.821 +6181,2025-03-07T18:32:17.991053-08:00,1002.9124755859375,10.843071,10843.071 +6182,2025-03-07T18:32:28.843900-08:00,1002.8912353515625,10.852847,10852.847 +6183,2025-03-07T18:32:39.688715-08:00,1002.9365844726562,10.844815,10844.815 +6184,2025-03-07T18:32:50.536729-08:00,1002.916748046875,10.848014,10848.014 +6185,2025-03-07T18:33:01.396624-08:00,1002.9376831054688,10.859895,10859.895 +6186,2025-03-07T18:33:12.247618-08:00,1002.9508666992188,10.850994,10850.994 +6187,2025-03-07T18:33:23.093643-08:00,1002.9442138671875,10.846025,10846.025 +6188,2025-03-07T18:33:33.939012-08:00,1002.930908203125,10.845369,10845.369 +6189,2025-03-07T18:33:44.786624-08:00,1002.9654541015625,10.847612,10847.612 +6190,2025-03-07T18:33:55.636607-08:00,1002.9365844726562,10.849983,10849.983 +6191,2025-03-07T18:34:06.485737-08:00,1002.930908203125,10.84913,10849.13 +6192,2025-03-07T18:34:17.345897-08:00,1002.9630737304688,10.86016,10860.16 +6193,2025-03-07T18:34:28.185919-08:00,1002.9696655273438,10.840022,10840.022 +6194,2025-03-07T18:34:39.043627-08:00,1002.9696655273438,10.857708,10857.708 +6195,2025-03-07T18:34:49.881671-08:00,1002.9473266601562,10.838044,10838.044 +6196,2025-03-07T18:35:00.735390-08:00,1003.0027465820312,10.853719,10853.719 +6197,2025-03-07T18:35:11.582681-08:00,1003.010498046875,10.847291,10847.291 +6198,2025-03-07T18:35:22.425894-08:00,1002.9685668945312,10.843213,10843.213 +6199,2025-03-07T18:35:33.268657-08:00,1002.989501953125,10.842763,10842.763 +6200,2025-03-07T18:35:44.117195-08:00,1003.0226440429688,10.848538,10848.538 +6201,2025-03-07T18:35:54.966891-08:00,1003.0159912109375,10.849696,10849.696 +6202,2025-03-07T18:36:05.805314-08:00,1003.0226440429688,10.838423,10838.423 +6203,2025-03-07T18:36:16.654927-08:00,1003.0159912109375,10.849613,10849.613 +6204,2025-03-07T18:36:27.489618-08:00,1003.0568237304688,10.834691,10834.691 +6205,2025-03-07T18:36:38.337599-08:00,1003.0348510742188,10.847981,10847.981 +6206,2025-03-07T18:36:49.183663-08:00,1003.036865234375,10.846064,10846.064 +6207,2025-03-07T18:37:00.035619-08:00,1003.0714111328125,10.851956,10851.956 +6208,2025-03-07T18:37:10.880675-08:00,1003.07275390625,10.845056,10845.056 +6209,2025-03-07T18:37:21.717854-08:00,1003.0675048828125,10.837179,10837.179 +6210,2025-03-07T18:37:32.573268-08:00,1003.0647583007812,10.855414,10855.414 +6211,2025-03-07T18:37:43.414771-08:00,1003.0992431640625,10.841503,10841.503 +6212,2025-03-07T18:37:54.252625-08:00,1003.1006469726562,10.837854,10837.854 +6213,2025-03-07T18:38:05.106616-08:00,1003.1190795898438,10.853991,10853.991 +6214,2025-03-07T18:38:15.950022-08:00,1003.1190795898438,10.843406,10843.406 +6215,2025-03-07T18:38:26.790794-08:00,1003.1414184570312,10.840772,10840.772 +6216,2025-03-07T18:38:37.643618-08:00,1003.1006469726562,10.852824,10852.824 +6217,2025-03-07T18:38:48.490105-08:00,1003.1337280273438,10.846487,10846.487 +6218,2025-03-07T18:38:59.339858-08:00,1003.153564453125,10.849753,10849.753 +6219,2025-03-07T18:39:10.186662-08:00,1003.1588134765625,10.846804,10846.804 +6220,2025-03-07T18:39:21.026698-08:00,1003.1309204101562,10.840036,10840.036 +6221,2025-03-07T18:39:31.873992-08:00,1003.1442260742188,10.847294,10847.294 +6222,2025-03-07T18:39:42.723410-08:00,1003.1456298828125,10.849418,10849.418 +6223,2025-03-07T18:39:53.560928-08:00,1003.1243896484375,10.837518,10837.518 +6224,2025-03-07T18:40:04.416178-08:00,1003.16015625,10.85525,10855.25 +6225,2025-03-07T18:40:15.257614-08:00,1003.199951171875,10.841436,10841.436 +6226,2025-03-07T18:40:26.096430-08:00,1003.1588134765625,10.838816,10838.816 +6227,2025-03-07T18:40:36.945583-08:00,1003.1986083984375,10.849153,10849.153 +6228,2025-03-07T18:40:47.786680-08:00,1003.185302734375,10.841097,10841.097 +6229,2025-03-07T18:40:58.624621-08:00,1003.1773681640625,10.837941,10837.941 +6230,2025-03-07T18:41:09.468677-08:00,1003.2037353515625,10.844056,10844.056 +6231,2025-03-07T18:41:20.315922-08:00,1003.1972045898438,10.847245,10847.245 +6232,2025-03-07T18:41:31.161043-08:00,1003.19189453125,10.845121,10845.121 +6233,2025-03-07T18:41:42.000766-08:00,1003.2197875976562,10.839723,10839.723 +6234,2025-03-07T18:41:52.840669-08:00,1003.2249755859375,10.839903,10839.903 +6235,2025-03-07T18:42:03.678721-08:00,1003.2249755859375,10.838052,10838.052 +6236,2025-03-07T18:42:14.522797-08:00,1003.2329711914062,10.844076,10844.076 +6237,2025-03-07T18:42:25.370177-08:00,1003.2117919921875,10.84738,10847.38 +6238,2025-03-07T18:42:36.206621-08:00,1003.2515869140625,10.836444,10836.444 +6239,2025-03-07T18:42:47.056622-08:00,1003.2501831054688,10.850001,10850.001 +6240,2025-03-07T18:42:57.909632-08:00,1003.2567138671875,10.85301,10853.01 +6241,2025-03-07T18:43:08.744599-08:00,1003.263427734375,10.834967,10834.967 +6242,2025-03-07T18:43:19.591597-08:00,1003.263427734375,10.846998,10846.998 +6243,2025-03-07T18:43:30.435354-08:00,1003.276611328125,10.843757,10843.757 +6244,2025-03-07T18:43:41.277943-08:00,1003.3016967773438,10.842589,10842.589 +6245,2025-03-07T18:43:52.120858-08:00,1003.276611328125,10.842915,10842.915 +6246,2025-03-07T18:44:02.967785-08:00,1003.2620239257812,10.846927,10846.927 +6247,2025-03-07T18:44:13.815612-08:00,1003.2874145507812,10.847827,10847.827 +6248,2025-03-07T18:44:24.655349-08:00,1003.308349609375,10.839737,10839.737 +6249,2025-03-07T18:44:35.496846-08:00,1003.2940673828125,10.841497,10841.497 +6250,2025-03-07T18:44:46.330722-08:00,1003.27734375,10.833876,10833.876 +6251,2025-03-07T18:44:57.173845-08:00,1003.2706909179688,10.843123,10843.123 +6252,2025-03-07T18:45:08.019628-08:00,1003.2706909179688,10.845783,10845.783 +6253,2025-03-07T18:45:18.852319-08:00,1003.283935546875,10.832691,10832.691 +6254,2025-03-07T18:45:29.695667-08:00,1003.3170166015625,10.843348,10843.348 +6255,2025-03-07T18:45:40.538820-08:00,1003.3236694335938,10.843153,10843.153 +6256,2025-03-07T18:45:51.378218-08:00,1003.2815551757812,10.839398,10839.398 +6257,2025-03-07T18:46:02.221196-08:00,1003.2947387695312,10.842978,10842.978 +6258,2025-03-07T18:46:13.068646-08:00,1003.2801513671875,10.84745,10847.45 +6259,2025-03-07T18:46:23.913618-08:00,1003.2867431640625,10.844972,10844.972 +6260,2025-03-07T18:46:34.744955-08:00,1003.29345703125,10.831337,10831.337 +6261,2025-03-07T18:46:45.598212-08:00,1003.2734985351562,10.853257,10853.257 +6262,2025-03-07T18:46:56.431606-08:00,1003.2988891601562,10.833394,10833.394 +6263,2025-03-07T18:47:07.272622-08:00,1003.30419921875,10.841016,10841.016 +6264,2025-03-07T18:47:18.115848-08:00,1003.27001953125,10.843226,10843.226 +6265,2025-03-07T18:47:28.954924-08:00,1003.2676391601562,10.839076,10839.076 +6266,2025-03-07T18:47:39.793614-08:00,1003.263427734375,10.83869,10838.69 +6267,2025-03-07T18:47:50.633966-08:00,1003.2620239257812,10.840352,10840.352 +6268,2025-03-07T18:48:01.475989-08:00,1003.26513671875,10.842023,10842.023 +6269,2025-03-07T18:48:12.319867-08:00,1003.2586059570312,10.843878,10843.878 +6270,2025-03-07T18:48:23.169609-08:00,1003.2627563476562,10.849742,10849.742 +6271,2025-03-07T18:48:34.011616-08:00,1003.2892456054688,10.842007,10842.007 +6272,2025-03-07T18:48:44.855001-08:00,1003.28369140625,10.843385,10843.385 +6273,2025-03-07T18:48:55.697827-08:00,1003.315673828125,10.842826,10842.826 +6274,2025-03-07T18:49:06.542806-08:00,1003.3010864257812,10.844979,10844.979 +6275,2025-03-07T18:49:17.380816-08:00,1003.2736206054688,10.83801,10838.01 +6276,2025-03-07T18:49:28.227621-08:00,1003.2999877929688,10.846805,10846.805 +6277,2025-03-07T18:49:39.068957-08:00,1003.2920532226562,10.841336,10841.336 +6278,2025-03-07T18:49:49.907989-08:00,1003.2920532226562,10.839032,10839.032 +6279,2025-03-07T18:50:00.749585-08:00,1003.2899169921875,10.841596,10841.596 +6280,2025-03-07T18:50:11.582620-08:00,1003.2976684570312,10.833035,10833.035 +6281,2025-03-07T18:50:22.430841-08:00,1003.2909545898438,10.848221,10848.221 +6282,2025-03-07T18:50:33.264599-08:00,1003.3031005859375,10.833758,10833.758 +6283,2025-03-07T18:50:44.112185-08:00,1003.2899169921875,10.847586,10847.586 +6284,2025-03-07T18:50:54.955656-08:00,1003.2976684570312,10.843471,10843.471 +6285,2025-03-07T18:51:05.787171-08:00,1003.2976684570312,10.831515,10831.515 +6286,2025-03-07T18:51:16.624624-08:00,1003.2965698242188,10.837453,10837.453 +6287,2025-03-07T18:51:27.472619-08:00,1003.2832641601562,10.847995,10847.995 +6288,2025-03-07T18:51:38.305878-08:00,1003.30419921875,10.833259,10833.259 +6289,2025-03-07T18:51:49.138696-08:00,1003.2899169921875,10.832818,10832.818 +6290,2025-03-07T18:51:59.985619-08:00,1003.3175048828125,10.846923,10846.923 +6291,2025-03-07T18:52:10.828798-08:00,1003.30419921875,10.843179,10843.179 +6292,2025-03-07T18:52:21.669141-08:00,1003.2965698242188,10.840343,10840.343 +6293,2025-03-07T18:52:32.513618-08:00,1003.3175048828125,10.844477,10844.477 +6294,2025-03-07T18:52:43.351678-08:00,1003.307373046875,10.83806,10838.06 +6295,2025-03-07T18:52:54.197668-08:00,1003.3272094726562,10.84599,10845.99 +6296,2025-03-07T18:53:05.045299-08:00,1003.3084106445312,10.847631,10847.631 +6297,2025-03-07T18:53:15.881909-08:00,1003.3139038085938,10.83661,10836.61 +6298,2025-03-07T18:53:26.719864-08:00,1003.3206176757812,10.837955,10837.955 +6299,2025-03-07T18:53:37.555053-08:00,1003.3125610351562,10.835189,10835.189 +6300,2025-03-07T18:53:48.393812-08:00,1003.291748046875,10.838759,10838.759 +6301,2025-03-07T18:53:59.238617-08:00,1003.3115844726562,10.844805,10844.805 +6302,2025-03-07T18:54:10.079619-08:00,1003.290283203125,10.841002,10841.002 +6303,2025-03-07T18:54:20.916939-08:00,1003.3223266601562,10.83732,10837.32 +6304,2025-03-07T18:54:31.767075-08:00,1003.304931640625,10.850136,10850.136 +6305,2025-03-07T18:54:42.600622-08:00,1003.3167724609375,10.833547,10833.547 +6306,2025-03-07T18:54:53.441838-08:00,1003.336669921875,10.841216,10841.216 +6307,2025-03-07T18:55:04.284927-08:00,1003.3356323242188,10.843089,10843.089 +6308,2025-03-07T18:55:15.113623-08:00,1003.3275756835938,10.828696,10828.696 +6309,2025-03-07T18:55:25.959989-08:00,1003.336669921875,10.846366,10846.366 +6310,2025-03-07T18:55:36.797922-08:00,1003.3223266601562,10.837933,10837.933 +6311,2025-03-07T18:55:47.634745-08:00,1003.3565063476562,10.836823,10836.823 +6312,2025-03-07T18:55:58.484182-08:00,1003.315673828125,10.849437,10849.437 +6313,2025-03-07T18:56:09.323616-08:00,1003.3247680664062,10.839434,10839.434 +6314,2025-03-07T18:56:20.156467-08:00,1003.3446044921875,10.832851,10832.851 +6315,2025-03-07T18:56:30.996074-08:00,1003.3565063476562,10.839607,10839.607 +6316,2025-03-07T18:56:41.837596-08:00,1003.3565063476562,10.841522,10841.522 +6317,2025-03-07T18:56:52.670712-08:00,1003.364501953125,10.833116,10833.116 +6318,2025-03-07T18:57:03.516640-08:00,1003.3565063476562,10.845928,10845.928 +6319,2025-03-07T18:57:14.361619-08:00,1003.349853515625,10.844979,10844.979 +6320,2025-03-07T18:57:25.204940-08:00,1003.362060546875,10.843321,10843.321 +6321,2025-03-07T18:57:36.042044-08:00,1003.3843994140625,10.837104,10837.104 +6322,2025-03-07T18:57:46.891600-08:00,1003.3577880859375,10.849556,10849.556 +6323,2025-03-07T18:57:57.728861-08:00,1003.3577880859375,10.837261,10837.261 +6324,2025-03-07T18:58:08.579599-08:00,1003.37109375,10.850738,10850.738 +6325,2025-03-07T18:58:19.420624-08:00,1003.3975830078125,10.841025,10841.025 +6326,2025-03-07T18:58:30.257812-08:00,1003.3975830078125,10.837188,10837.188 +6327,2025-03-07T18:58:41.104821-08:00,1003.3777465820312,10.847009,10847.009 +6328,2025-03-07T18:58:51.938770-08:00,1003.37109375,10.833949,10833.949 +6329,2025-03-07T18:59:02.781920-08:00,1003.3818969726562,10.84315,10843.15 +6330,2025-03-07T18:59:13.623919-08:00,1003.3951416015625,10.841999,10841.999 +6331,2025-03-07T18:59:24.466844-08:00,1003.4359130859375,10.842925,10842.925 +6332,2025-03-07T18:59:35.304621-08:00,1003.36865234375,10.837777,10837.777 +6333,2025-03-07T18:59:46.149890-08:00,1003.3937377929688,10.845269,10845.269 +6334,2025-03-07T18:59:56.985036-08:00,1003.3937377929688,10.835146,10835.146 +6335,2025-03-07T19:00:07.830769-08:00,1003.434814453125,10.845733,10845.733 +6336,2025-03-07T19:00:18.677621-08:00,1003.4202270507812,10.846852,10846.852 +6337,2025-03-07T19:00:29.509980-08:00,1003.4481201171875,10.832359,10832.359 +6338,2025-03-07T19:00:40.353614-08:00,1003.4414672851562,10.843634,10843.634 +6339,2025-03-07T19:00:51.185398-08:00,1003.4679565429688,10.831784,10831.784 +6340,2025-03-07T19:01:02.021949-08:00,1003.4600219726562,10.836551,10836.551 +6341,2025-03-07T19:01:12.863839-08:00,1003.4522705078125,10.84189,10841.89 +6342,2025-03-07T19:01:23.707668-08:00,1003.4745483398438,10.843829,10843.829 +6343,2025-03-07T19:01:34.546867-08:00,1003.4324340820312,10.839199,10839.199 +6344,2025-03-07T19:01:45.380509-08:00,1003.4996948242188,10.833642,10833.642 +6345,2025-03-07T19:01:56.229805-08:00,1003.4773559570312,10.849296,10849.296 +6346,2025-03-07T19:02:07.067860-08:00,1003.450927734375,10.838055,10838.055 +6347,2025-03-07T19:02:17.908747-08:00,1003.4985961914062,10.840887,10840.887 +6348,2025-03-07T19:02:28.751951-08:00,1003.510498046875,10.843204,10843.204 +6349,2025-03-07T19:02:39.597652-08:00,1003.4961547851562,10.845701,10845.701 +6350,2025-03-07T19:02:50.443623-08:00,1003.5093994140625,10.845971,10845.971 +6351,2025-03-07T19:03:01.283931-08:00,1003.5278930664062,10.840308,10840.308 +6352,2025-03-07T19:03:12.127257-08:00,1003.5359497070312,10.843326,10843.326 +6353,2025-03-07T19:03:22.968521-08:00,1003.5491333007812,10.841264,10841.264 +6354,2025-03-07T19:03:33.811863-08:00,1003.567626953125,10.843342,10843.342 +6355,2025-03-07T19:03:44.644825-08:00,1003.5623168945312,10.832962,10832.962 +6356,2025-03-07T19:03:55.487910-08:00,1003.5543823242188,10.843085,10843.085 +6357,2025-03-07T19:04:06.332344-08:00,1003.5634155273438,10.844434,10844.434 +6358,2025-03-07T19:04:17.173755-08:00,1003.5888061523438,10.841411,10841.411 +6359,2025-03-07T19:04:28.017136-08:00,1003.5899047851562,10.843381,10843.381 +6360,2025-03-07T19:04:38.856304-08:00,1003.595458984375,10.839168,10839.168 +6361,2025-03-07T19:04:49.703734-08:00,1003.6097412109375,10.84743,10847.43 +6362,2025-03-07T19:05:00.544618-08:00,1003.5822143554688,10.840884,10840.884 +6363,2025-03-07T19:05:11.388620-08:00,1003.597900390625,10.844002,10844.002 +6364,2025-03-07T19:05:22.222960-08:00,1003.638671875,10.83434,10834.34 +6365,2025-03-07T19:05:33.058599-08:00,1003.62548828125,10.835639,10835.639 +6366,2025-03-07T19:05:43.919668-08:00,1003.638671875,10.861069,10861.069 +6367,2025-03-07T19:05:54.751440-08:00,1003.6320190429688,10.831772,10831.772 +6368,2025-03-07T19:06:05.594037-08:00,1003.6045532226562,10.842597,10842.597 +6369,2025-03-07T19:06:16.439597-08:00,1003.6718139648438,10.84556,10845.56 +6370,2025-03-07T19:06:27.279551-08:00,1003.6177978515625,10.839954,10839.954 +6371,2025-03-07T19:06:38.122559-08:00,1003.65185546875,10.843008,10843.008 +6372,2025-03-07T19:06:48.966930-08:00,1003.6718139648438,10.844371,10844.371 +6373,2025-03-07T19:06:59.806552-08:00,1003.6163940429688,10.839622,10839.622 +6374,2025-03-07T19:07:10.653112-08:00,1003.63623046875,10.84656,10846.56 +6375,2025-03-07T19:07:21.499621-08:00,1003.6495361328125,10.846509,10846.509 +6376,2025-03-07T19:07:32.337897-08:00,1003.6838989257812,10.838276,10838.276 +6377,2025-03-07T19:07:43.176471-08:00,1003.6560668945312,10.838574,10838.574 +6378,2025-03-07T19:07:54.025284-08:00,1003.6484375,10.848813,10848.813 +6379,2025-03-07T19:08:04.857561-08:00,1003.6560668945312,10.832277,10832.277 +6380,2025-03-07T19:08:15.700133-08:00,1003.6470336914062,10.842572,10842.572 +6381,2025-03-07T19:08:26.545598-08:00,1003.6536865234375,10.845465,10845.465 +6382,2025-03-07T19:08:37.382846-08:00,1003.693359375,10.837248,10837.248 +6383,2025-03-07T19:08:48.230646-08:00,1003.712158203125,10.8478,10847.8 +6384,2025-03-07T19:08:59.066786-08:00,1003.693359375,10.83614,10836.14 +6385,2025-03-07T19:09:09.897554-08:00,1003.7000122070312,10.830768,10830.768 +6386,2025-03-07T19:09:20.745549-08:00,1003.6867065429688,10.847995,10847.995 +6387,2025-03-07T19:09:31.584665-08:00,1003.6724853515625,10.839116,10839.116 +6388,2025-03-07T19:09:42.416558-08:00,1003.6923217773438,10.831893,10831.893 +6389,2025-03-07T19:09:53.263555-08:00,1003.6857299804688,10.846997,10846.997 +6390,2025-03-07T19:10:04.095922-08:00,1003.697509765625,10.832367,10832.367 +6391,2025-03-07T19:10:14.946883-08:00,1003.7042236328125,10.850961,10850.961 +6392,2025-03-07T19:10:25.783958-08:00,1003.70654296875,10.837075,10837.075 +6393,2025-03-07T19:10:36.625690-08:00,1003.6832885742188,10.841732,10841.732 +6394,2025-03-07T19:10:47.462667-08:00,1003.6776733398438,10.836977,10836.977 +6395,2025-03-07T19:10:58.307875-08:00,1003.6843872070312,10.845208,10845.208 +6396,2025-03-07T19:11:09.150535-08:00,1003.71630859375,10.84266,10842.66 +6397,2025-03-07T19:11:19.987804-08:00,1003.7372436523438,10.837269,10837.269 +6398,2025-03-07T19:11:30.824614-08:00,1003.75048828125,10.83681,10836.81 +6399,2025-03-07T19:11:41.672823-08:00,1003.7083740234375,10.848209,10848.209 +6400,2025-03-07T19:11:52.501558-08:00,1003.7282104492188,10.828735,10828.735 +6401,2025-03-07T19:12:03.347180-08:00,1003.7139282226562,10.845622,10845.622 +6402,2025-03-07T19:12:14.186871-08:00,1003.7139282226562,10.839691,10839.691 +6403,2025-03-07T19:12:25.015558-08:00,1003.7271728515625,10.828687,10828.687 +6404,2025-03-07T19:12:35.861561-08:00,1003.7337646484375,10.846003,10846.003 +6405,2025-03-07T19:12:46.704546-08:00,1003.76123046875,10.842985,10842.985 +6406,2025-03-07T19:12:57.537556-08:00,1003.7125244140625,10.83301,10833.01 +6407,2025-03-07T19:13:08.369707-08:00,1003.748046875,10.832151,10832.151 +6408,2025-03-07T19:13:19.204584-08:00,1003.7037353515625,10.834877,10834.877 +6409,2025-03-07T19:13:30.039555-08:00,1003.717041015625,10.834971,10834.971 +6410,2025-03-07T19:13:40.878169-08:00,1003.7354736328125,10.838614,10838.614 +6411,2025-03-07T19:13:51.711554-08:00,1003.730224609375,10.833385,10833.385 +6412,2025-03-07T19:14:02.548557-08:00,1003.7686157226562,10.837003,10837.003 +6413,2025-03-07T19:14:13.391798-08:00,1003.7198486328125,10.843241,10843.241 +6414,2025-03-07T19:14:24.223687-08:00,1003.7330322265625,10.831889,10831.889 +6415,2025-03-07T19:14:35.069835-08:00,1003.697509765625,10.846148,10846.148 +6416,2025-03-07T19:14:45.904127-08:00,1003.7570190429688,10.834292,10834.292 +6417,2025-03-07T19:14:56.747280-08:00,1003.7637329101562,10.843153,10843.153 +6418,2025-03-07T19:15:07.589557-08:00,1003.7427978515625,10.842277,10842.277 +6419,2025-03-07T19:15:18.432587-08:00,1003.782470703125,10.84303,10843.03 +6420,2025-03-07T19:15:29.263884-08:00,1003.7890625,10.831297,10831.297 +6421,2025-03-07T19:15:40.109599-08:00,1003.76123046875,10.845715,10845.715 +6422,2025-03-07T19:15:50.941198-08:00,1003.76123046875,10.831599,10831.599 +6423,2025-03-07T19:16:01.777731-08:00,1003.7745361328125,10.836533,10836.533 +6424,2025-03-07T19:16:12.621591-08:00,1003.780029296875,10.84386,10843.86 +6425,2025-03-07T19:16:23.467189-08:00,1003.7734375,10.845598,10845.598 +6426,2025-03-07T19:16:34.299559-08:00,1003.7932739257812,10.83237,10832.37 +6427,2025-03-07T19:16:45.143913-08:00,1003.7828369140625,10.844354,10844.354 +6428,2025-03-07T19:16:55.972266-08:00,1003.777587890625,10.828353,10828.353 +6429,2025-03-07T19:17:06.818527-08:00,1003.7974853515625,10.846261,10846.261 +6430,2025-03-07T19:17:17.649298-08:00,1003.809326171875,10.830771,10830.771 +6431,2025-03-07T19:17:28.493775-08:00,1003.8131103515625,10.844477,10844.477 +6432,2025-03-07T19:17:39.331531-08:00,1003.8250122070312,10.837756,10837.756 +6433,2025-03-07T19:17:50.168858-08:00,1003.80517578125,10.837327,10837.327 +6434,2025-03-07T19:18:01.013004-08:00,1003.818359375,10.844146,10844.146 +6435,2025-03-07T19:18:11.853687-08:00,1003.8239135742188,10.840683,10840.683 +6436,2025-03-07T19:18:22.686901-08:00,1003.83056640625,10.833214,10833.214 +6437,2025-03-07T19:18:33.516769-08:00,1003.8065795898438,10.829868,10829.868 +6438,2025-03-07T19:18:44.356553-08:00,1003.8117065429688,10.839784,10839.784 +6439,2025-03-07T19:18:55.202689-08:00,1003.7985229492188,10.846136,10846.136 +6440,2025-03-07T19:19:06.032522-08:00,1003.83154296875,10.829833,10829.833 +6441,2025-03-07T19:19:16.877554-08:00,1003.8173217773438,10.845032,10845.032 +6442,2025-03-07T19:19:27.705741-08:00,1003.822509765625,10.828187,10828.187 +6443,2025-03-07T19:19:38.549765-08:00,1003.820068359375,10.844024,10844.024 +6444,2025-03-07T19:19:49.380553-08:00,1003.8768920898438,10.830788,10830.788 +6445,2025-03-07T19:20:00.229606-08:00,1003.8400268554688,10.849053,10849.053 +6446,2025-03-07T19:20:11.059838-08:00,1003.8440551757812,10.830232,10830.232 +6447,2025-03-07T19:20:21.904034-08:00,1003.8652954101562,10.844196,10844.196 +6448,2025-03-07T19:20:32.740147-08:00,1003.8400268554688,10.836113,10836.113 +6449,2025-03-07T19:20:43.588611-08:00,1003.8663940429688,10.848464,10848.464 +6450,2025-03-07T19:20:54.415717-08:00,1003.87060546875,10.827106,10827.106 +6451,2025-03-07T19:21:05.252552-08:00,1003.87060546875,10.836835,10836.835 +6452,2025-03-07T19:21:16.090927-08:00,1003.8904418945312,10.838375,10838.375 +6453,2025-03-07T19:21:26.926545-08:00,1003.889404296875,10.835618,10835.618 +6454,2025-03-07T19:21:37.765558-08:00,1003.9092407226562,10.839013,10839.013 +6455,2025-03-07T19:21:48.603147-08:00,1003.9224853515625,10.837589,10837.589 +6456,2025-03-07T19:21:59.439986-08:00,1003.8904418945312,10.836839,10836.839 +6457,2025-03-07T19:22:10.285707-08:00,1003.9423217773438,10.845721,10845.721 +6458,2025-03-07T19:22:21.120891-08:00,1003.927978515625,10.835184,10835.184 +6459,2025-03-07T19:22:31.951554-08:00,1003.9026489257812,10.830663,10830.663 +6460,2025-03-07T19:22:42.790871-08:00,1003.9015502929688,10.839317,10839.317 +6461,2025-03-07T19:22:53.637856-08:00,1003.914794921875,10.846985,10846.985 +6462,2025-03-07T19:23:04.474661-08:00,1003.9489135742188,10.836805,10836.805 +6463,2025-03-07T19:23:15.311564-08:00,1003.9266357421875,10.836903,10836.903 +6464,2025-03-07T19:23:26.144397-08:00,1003.953125,10.832833,10832.833 +6465,2025-03-07T19:23:36.986769-08:00,1003.9611206054688,10.842372,10842.372 +6466,2025-03-07T19:23:47.824638-08:00,1003.9586181640625,10.837869,10837.869 +6467,2025-03-07T19:23:58.660762-08:00,1003.953125,10.836124,10836.124 +6468,2025-03-07T19:24:09.489790-08:00,1003.9729614257812,10.829028,10829.028 +6469,2025-03-07T19:24:20.334558-08:00,1003.957275390625,10.844768,10844.768 +6470,2025-03-07T19:24:31.165122-08:00,1003.9993896484375,10.830564,10830.564 +6471,2025-03-07T19:24:42.007913-08:00,1003.9893188476562,10.842791,10842.791 +6472,2025-03-07T19:24:52.843877-08:00,1003.9861450195312,10.835964,10835.964 +6473,2025-03-07T19:25:03.680831-08:00,1004.0115356445312,10.836954,10836.954 +6474,2025-03-07T19:25:14.517564-08:00,1004.0050048828125,10.836733,10836.733 +6475,2025-03-07T19:25:25.365132-08:00,1004.0050048828125,10.847568,10847.568 +6476,2025-03-07T19:25:36.205194-08:00,1004.016845703125,10.840062,10840.062 +6477,2025-03-07T19:25:47.043407-08:00,1004.0391235351562,10.838213,10838.213 +6478,2025-03-07T19:25:57.885241-08:00,1004.0248413085938,10.841834,10841.834 +6479,2025-03-07T19:26:08.732591-08:00,1004.0314331054688,10.84735,10847.35 +6480,2025-03-07T19:26:19.577885-08:00,1004.0314331054688,10.845294,10845.294 +6481,2025-03-07T19:26:30.421788-08:00,1004.0234375,10.843903,10843.903 +6482,2025-03-07T19:26:41.263813-08:00,1004.0697631835938,10.842025,10842.025 +6483,2025-03-07T19:26:52.092558-08:00,1004.0645141601562,10.828745,10828.745 +6484,2025-03-07T19:27:02.935649-08:00,1004.076416015625,10.843091,10843.091 +6485,2025-03-07T19:27:13.779877-08:00,1004.0686645507812,10.844228,10844.228 +6486,2025-03-07T19:27:24.619689-08:00,1004.0909423828125,10.839812,10839.812 +6487,2025-03-07T19:27:35.454877-08:00,1004.0686645507812,10.835188,10835.188 +6488,2025-03-07T19:27:46.300608-08:00,1004.0686645507812,10.845731,10845.731 +6489,2025-03-07T19:27:57.154557-08:00,1004.0770263671875,10.853949,10853.949 +6490,2025-03-07T19:28:07.996825-08:00,1004.1094360351562,10.842268,10842.268 +6491,2025-03-07T19:28:18.840192-08:00,1004.0739135742188,10.843367,10843.367 +6492,2025-03-07T19:28:29.682808-08:00,1004.1070556640625,10.842616,10842.616 +6493,2025-03-07T19:28:40.518750-08:00,1004.1004028320312,10.835942,10835.942 +6494,2025-03-07T19:28:51.368887-08:00,1004.114990234375,10.850137,10850.137 +6495,2025-03-07T19:29:02.206720-08:00,1004.114990234375,10.837833,10837.833 +6496,2025-03-07T19:29:13.055560-08:00,1004.1094360351562,10.84884,10848.84 +6497,2025-03-07T19:29:23.899771-08:00,1004.1017456054688,10.844211,10844.211 +6498,2025-03-07T19:29:34.730694-08:00,1004.1135864257812,10.830923,10830.923 +6499,2025-03-07T19:29:45.575557-08:00,1004.1481323242188,10.844863,10844.863 +6500,2025-03-07T19:29:56.417808-08:00,1004.12939453125,10.842251,10842.251 +6501,2025-03-07T19:30:07.263840-08:00,1004.1359252929688,10.846032,10846.032 +6502,2025-03-07T19:30:18.104978-08:00,1004.1414794921875,10.841138,10841.138 +6503,2025-03-07T19:30:28.945738-08:00,1004.1282958984375,10.84076,10840.76 +6504,2025-03-07T19:30:39.793554-08:00,1004.114990234375,10.847816,10847.816 +6505,2025-03-07T19:30:50.643555-08:00,1004.15576171875,10.850001,10850.001 +6506,2025-03-07T19:31:01.486941-08:00,1004.1268920898438,10.843386,10843.386 +6507,2025-03-07T19:31:12.339192-08:00,1004.1324462890625,10.852251,10852.251 +6508,2025-03-07T19:31:23.177841-08:00,1004.1282958984375,10.838649,10838.649 +6509,2025-03-07T19:31:34.026410-08:00,1004.10595703125,10.848569,10848.569 +6510,2025-03-07T19:31:44.876553-08:00,1004.1268920898438,10.850143,10850.143 +6511,2025-03-07T19:31:55.718558-08:00,1004.1124877929688,10.842005,10842.005 +6512,2025-03-07T19:32:06.559862-08:00,1004.1243896484375,10.841304,10841.304 +6513,2025-03-07T19:32:17.399897-08:00,1004.1177978515625,10.840035,10840.035 +6514,2025-03-07T19:32:39.087633-08:00,1004.1004028320312,21.687736,21687.736 +6515,2025-03-07T19:32:49.929877-08:00,1004.1310424804688,10.842244,10842.244 +6516,2025-03-07T19:33:11.616832-08:00,1004.0926513671875,21.686955,21686.955 +6517,2025-03-07T19:33:22.450544-08:00,1004.1310424804688,10.833712,10833.712 +6518,2025-03-07T19:33:33.299213-08:00,1004.1376342773438,10.848669,10848.669 +6519,2025-03-07T19:33:44.143854-08:00,1004.1111450195312,10.844641,10844.641 +6520,2025-03-07T19:33:54.981870-08:00,1004.123291015625,10.838016,10838.016 +6521,2025-03-07T19:34:05.833924-08:00,1004.1243896484375,10.852054,10852.054 +6522,2025-03-07T19:34:16.668672-08:00,1004.1034545898438,10.834748,10834.748 +6523,2025-03-07T19:34:27.516111-08:00,1004.1177978515625,10.847439,10847.439 +6524,2025-03-07T19:34:38.359613-08:00,1004.1177978515625,10.843502,10843.502 +6525,2025-03-07T19:34:49.203551-08:00,1004.0979614257812,10.843938,10843.938 +6526,2025-03-07T19:35:00.044943-08:00,1004.0703735351562,10.841392,10841.392 +6527,2025-03-07T19:35:10.887543-08:00,1004.09130859375,10.8426,10842.6 +6528,2025-03-07T19:35:21.733692-08:00,1004.1045532226562,10.846149,10846.149 +6529,2025-03-07T19:35:32.575871-08:00,1004.0902099609375,10.842179,10842.179 +6530,2025-03-07T19:35:43.418739-08:00,1004.09130859375,10.842868,10842.868 +6531,2025-03-07T19:35:54.266784-08:00,1004.0836181640625,10.848045,10848.045 +6532,2025-03-07T19:36:05.100937-08:00,1004.0596313476562,10.834153,10834.153 +6533,2025-03-07T19:36:15.942807-08:00,1004.0926513671875,10.84187,10841.87 +6534,2025-03-07T19:36:26.776558-08:00,1004.0703735351562,10.833751,10833.751 +6535,2025-03-07T19:36:37.621546-08:00,1004.0703735351562,10.844988,10844.988 +6536,2025-03-07T19:36:48.469535-08:00,1004.0794677734375,10.847989,10847.989 +6537,2025-03-07T19:36:59.312805-08:00,1004.0968627929688,10.84327,10843.27 +6538,2025-03-07T19:37:10.159132-08:00,1004.0703735351562,10.846327,10846.327 +6539,2025-03-07T19:37:21.005601-08:00,1004.1124877929688,10.846469,10846.469 +6540,2025-03-07T19:37:31.849033-08:00,1004.0770263671875,10.843432,10843.432 +6541,2025-03-07T19:37:42.689938-08:00,1004.069091796875,10.840905,10840.905 +6542,2025-03-07T19:37:53.547132-08:00,1004.0979614257812,10.857194,10857.194 +6543,2025-03-07T19:38:04.384821-08:00,1004.1243896484375,10.837689,10837.689 +6544,2025-03-07T19:38:15.233483-08:00,1004.0836181640625,10.848662,10848.662 +6545,2025-03-07T19:38:26.073794-08:00,1004.1243896484375,10.840311,10840.311 +6546,2025-03-07T19:38:36.919688-08:00,1004.0968627929688,10.845894,10845.894 +6547,2025-03-07T19:38:47.763536-08:00,1004.1324462890625,10.843848,10843.848 +6548,2025-03-07T19:38:58.608317-08:00,1004.084716796875,10.844781,10844.781 +6549,2025-03-07T19:39:09.459755-08:00,1004.0861206054688,10.851438,10851.438 +6550,2025-03-07T19:39:20.295560-08:00,1004.1177978515625,10.835805,10835.805 +6551,2025-03-07T19:39:31.134893-08:00,1004.1045532226562,10.839333,10839.333 +6552,2025-03-07T19:39:41.977667-08:00,1004.0968627929688,10.842774,10842.774 +6553,2025-03-07T19:39:52.821531-08:00,1004.0926513671875,10.843864,10843.864 +6554,2025-03-07T19:40:03.665543-08:00,1004.1034545898438,10.844012,10844.012 +6555,2025-03-07T19:40:14.506558-08:00,1004.1202392578125,10.841015,10841.015 +6556,2025-03-07T19:40:25.349556-08:00,1004.1268920898438,10.842998,10842.998 +6557,2025-03-07T19:40:36.193012-08:00,1004.146728515625,10.843456,10843.456 +6558,2025-03-07T19:40:47.037635-08:00,1004.146728515625,10.844623,10844.623 +6559,2025-03-07T19:40:57.878773-08:00,1004.1522827148438,10.841138,10841.138 +6560,2025-03-07T19:41:08.719559-08:00,1004.1192016601562,10.840786,10840.786 +6561,2025-03-07T19:41:19.552180-08:00,1004.1599731445312,10.832621,10832.621 +6562,2025-03-07T19:41:30.396377-08:00,1004.1365356445312,10.844197,10844.197 +6563,2025-03-07T19:41:41.240707-08:00,1004.1431884765625,10.84433,10844.33 +6564,2025-03-07T19:41:52.084615-08:00,1004.1351318359375,10.843908,10843.908 +6565,2025-03-07T19:42:02.927127-08:00,1004.1431884765625,10.842512,10842.512 +6566,2025-03-07T19:42:13.762557-08:00,1004.1564331054688,10.83543,10835.43 +6567,2025-03-07T19:42:24.604559-08:00,1004.1498413085938,10.842002,10842.002 +6568,2025-03-07T19:42:35.455173-08:00,1004.1707763671875,10.850614,10850.614 +6569,2025-03-07T19:42:46.295057-08:00,1004.169677734375,10.839884,10839.884 +6570,2025-03-07T19:42:57.141186-08:00,1004.1682739257812,10.846129,10846.129 +6571,2025-03-07T19:43:07.971557-08:00,1004.1724853515625,10.830371,10830.371 +6572,2025-03-07T19:43:18.818559-08:00,1004.2254028320312,10.847002,10847.002 +6573,2025-03-07T19:43:29.658845-08:00,1004.2333374023438,10.840286,10840.286 +6574,2025-03-07T19:43:40.503042-08:00,1004.1856079101562,10.844197,10844.197 +6575,2025-03-07T19:43:51.338941-08:00,1004.2201538085938,10.835899,10835.899 +6576,2025-03-07T19:44:02.179165-08:00,1004.2162475585938,10.840224,10840.224 +6577,2025-03-07T19:44:13.025089-08:00,1004.203125,10.845924,10845.924 +6578,2025-03-07T19:44:23.853558-08:00,1004.203125,10.828469,10828.469 +6579,2025-03-07T19:44:34.696556-08:00,1004.1873168945312,10.842998,10842.998 +6580,2025-03-07T19:44:45.534338-08:00,1004.235107421875,10.837782,10837.782 +6581,2025-03-07T19:44:56.372022-08:00,1004.2139282226562,10.837684,10837.684 +6582,2025-03-07T19:45:07.214710-08:00,1004.2295532226562,10.842688,10842.688 +6583,2025-03-07T19:45:18.062540-08:00,1004.235107421875,10.84783,10847.83 +6584,2025-03-07T19:45:28.897855-08:00,1004.2667846679688,10.835315,10835.315 +6585,2025-03-07T19:45:39.753875-08:00,1004.220458984375,10.85602,10856.02 +6586,2025-03-07T19:45:50.595132-08:00,1004.2656860351562,10.841257,10841.257 +6587,2025-03-07T19:46:01.436553-08:00,1004.2525024414062,10.841421,10841.421 +6588,2025-03-07T19:46:12.284330-08:00,1004.2633056640625,10.847777,10847.777 +6589,2025-03-07T19:46:23.128842-08:00,1004.290771484375,10.844512,10844.512 +6590,2025-03-07T19:46:33.972652-08:00,1004.2775268554688,10.84381,10843.81 +6591,2025-03-07T19:46:44.817558-08:00,1004.2896728515625,10.844906,10844.906 +6592,2025-03-07T19:46:55.656771-08:00,1004.3018798828125,10.839213,10839.213 +6593,2025-03-07T19:47:06.499914-08:00,1004.2673950195312,10.843143,10843.143 +6594,2025-03-07T19:47:17.342516-08:00,1004.275390625,10.842602,10842.602 +6595,2025-03-07T19:47:28.185556-08:00,1004.2806396484375,10.84304,10843.04 +6596,2025-03-07T19:47:39.032535-08:00,1004.30712890625,10.846979,10846.979 +6597,2025-03-07T19:47:49.872588-08:00,1004.313720703125,10.840053,10840.053 +6598,2025-03-07T19:48:00.714887-08:00,1004.3004760742188,10.842299,10842.299 +6599,2025-03-07T19:48:11.548551-08:00,1004.2927856445312,10.833664,10833.664 +6600,2025-03-07T19:48:22.390985-08:00,1004.2872924804688,10.842434,10842.434 +6601,2025-03-07T19:48:33.232820-08:00,1004.3018798828125,10.841835,10841.835 +6602,2025-03-07T19:48:44.075317-08:00,1004.341552734375,10.842497,10842.497 +6603,2025-03-07T19:48:54.920559-08:00,1004.30712890625,10.845242,10845.242 +6604,2025-03-07T19:49:05.763559-08:00,1004.313720703125,10.843,10843.0 +6605,2025-03-07T19:49:16.608038-08:00,1004.316162109375,10.844479,10844.479 +6606,2025-03-07T19:49:27.448831-08:00,1004.2963256835938,10.840793,10840.793 +6607,2025-03-07T19:49:38.293600-08:00,1004.316162109375,10.844769,10844.769 +6608,2025-03-07T19:49:49.128563-08:00,1004.3040771484375,10.834963,10834.963 +6609,2025-03-07T19:49:59.973005-08:00,1004.3106079101562,10.844442,10844.442 +6610,2025-03-07T19:50:10.821354-08:00,1004.290771484375,10.848349,10848.349 +6611,2025-03-07T19:50:21.670140-08:00,1004.3329467773438,10.848786,10848.786 +6612,2025-03-07T19:50:32.516361-08:00,1004.3318481445312,10.846221,10846.221 +6613,2025-03-07T19:50:43.353751-08:00,1004.3131103515625,10.83739,10837.39 +6614,2025-03-07T19:50:54.193445-08:00,1004.2998657226562,10.839694,10839.694 +6615,2025-03-07T19:51:05.036885-08:00,1004.245849609375,10.84344,10843.44 +6616,2025-03-07T19:51:15.881603-08:00,1004.3236083984375,10.844718,10844.718 +6617,2025-03-07T19:51:26.722797-08:00,1004.3155517578125,10.841194,10841.194 +6618,2025-03-07T19:51:37.566597-08:00,1004.310302734375,10.8438,10843.8 +6619,2025-03-07T19:51:48.399797-08:00,1004.282470703125,10.8332,10833.2 +6620,2025-03-07T19:51:59.239790-08:00,1004.2771606445312,10.839993,10839.993 +6621,2025-03-07T19:52:10.085019-08:00,1004.239990234375,10.845229,10845.229 +6622,2025-03-07T19:52:20.925745-08:00,1004.287353515625,10.840726,10840.726 +6623,2025-03-07T19:52:31.778818-08:00,1004.274169921875,10.853073,10853.073 +6624,2025-03-07T19:52:42.624884-08:00,1004.2633666992188,10.846066,10846.066 +6625,2025-03-07T19:52:53.469647-08:00,1004.217041015625,10.844763,10844.763 +6626,2025-03-07T19:53:04.323609-08:00,1004.2592163085938,10.853962,10853.962 +6627,2025-03-07T19:53:15.166608-08:00,1004.2459106445312,10.842999,10842.999 +6628,2025-03-07T19:53:26.021279-08:00,1004.2407836914062,10.854671,10854.671 +6629,2025-03-07T19:53:36.867877-08:00,1004.2285766601562,10.846598,10846.598 +6630,2025-03-07T19:53:47.706359-08:00,1004.2020874023438,10.838482,10838.482 +6631,2025-03-07T19:53:58.561094-08:00,1004.2376708984375,10.854735,10854.735 +6632,2025-03-07T19:54:09.407816-08:00,1004.21923828125,10.846722,10846.722 +6633,2025-03-07T19:54:20.257376-08:00,1004.213623046875,10.84956,10849.56 +6634,2025-03-07T19:54:31.112045-08:00,1004.2003784179688,10.854669,10854.669 +6635,2025-03-07T19:54:41.955556-08:00,1004.20703125,10.843511,10843.511 +6636,2025-03-07T19:54:52.798556-08:00,1004.2003784179688,10.843,10843.0 +6637,2025-03-07T19:55:03.641697-08:00,1004.192626953125,10.843141,10843.141 +6638,2025-03-07T19:55:14.482862-08:00,1004.22021484375,10.841165,10841.165 +6639,2025-03-07T19:55:25.327722-08:00,1004.2059326171875,10.84486,10844.86 +6640,2025-03-07T19:55:36.176204-08:00,1004.2279663085938,10.848482,10848.482 +6641,2025-03-07T19:55:47.020558-08:00,1004.1994018554688,10.844354,10844.354 +6642,2025-03-07T19:55:57.868617-08:00,1004.213623046875,10.848059,10848.059 +6643,2025-03-07T19:56:08.711965-08:00,1004.2345581054688,10.843348,10843.348 +6644,2025-03-07T19:56:19.555556-08:00,1004.2146606445312,10.843591,10843.591 +6645,2025-03-07T19:56:30.395558-08:00,1004.20947265625,10.840002,10840.002 +6646,2025-03-07T19:56:41.241553-08:00,1004.2171630859375,10.845995,10845.995 +6647,2025-03-07T19:56:52.084558-08:00,1004.2028198242188,10.843005,10843.005 +6648,2025-03-07T19:57:02.937535-08:00,1004.2384643554688,10.852977,10852.977 +6649,2025-03-07T19:57:13.781864-08:00,1004.2196044921875,10.844329,10844.329 +6650,2025-03-07T19:57:24.624992-08:00,1004.2408447265625,10.843128,10843.128 +6651,2025-03-07T19:57:35.466877-08:00,1004.2485961914062,10.841885,10841.885 +6652,2025-03-07T19:57:46.311855-08:00,1004.2352905273438,10.844978,10844.978 +6653,2025-03-07T19:57:57.165841-08:00,1004.2301025390625,10.853986,10853.986 +6654,2025-03-07T19:58:08.009099-08:00,1004.27880859375,10.843258,10843.258 +6655,2025-03-07T19:58:18.855174-08:00,1004.2457885742188,10.846075,10846.075 +6656,2025-03-07T19:58:29.699669-08:00,1004.2614135742188,10.844495,10844.495 +6657,2025-03-07T19:58:40.547558-08:00,1004.2482299804688,10.847889,10847.889 +6658,2025-03-07T19:58:51.390543-08:00,1004.2283325195312,10.842985,10842.985 +6659,2025-03-07T19:59:02.234558-08:00,1004.2704467773438,10.844015,10844.015 +6660,2025-03-07T19:59:13.079236-08:00,1004.2927856445312,10.844678,10844.678 +6661,2025-03-07T19:59:23.931875-08:00,1004.2704467773438,10.852639,10852.639 +6662,2025-03-07T19:59:34.774595-08:00,1004.2862548828125,10.84272,10842.72 +6663,2025-03-07T19:59:45.618557-08:00,1004.2764892578125,10.843962,10843.962 +6664,2025-03-07T19:59:56.465557-08:00,1004.3239135742188,10.847,10847.0 +6665,2025-03-07T20:00:07.314610-08:00,1004.2974243164062,10.849053,10849.053 +6666,2025-03-07T20:00:18.165033-08:00,1004.2921752929688,10.850423,10850.423 +6667,2025-03-07T20:00:29.001798-08:00,1004.3263549804688,10.836765,10836.765 +6668,2025-03-07T20:00:39.856378-08:00,1004.3197021484375,10.85458,10854.58 +6669,2025-03-07T20:00:50.704558-08:00,1004.3263549804688,10.84818,10848.18 +6670,2025-03-07T20:01:01.553782-08:00,1004.2998657226562,10.849224,10849.224 +6671,2025-03-07T20:01:12.396558-08:00,1004.2814331054688,10.842776,10842.776 +6672,2025-03-07T20:01:23.240551-08:00,1004.3179931640625,10.843993,10843.993 +6673,2025-03-07T20:01:34.084146-08:00,1004.3392333984375,10.843595,10843.595 +6674,2025-03-07T20:01:44.937180-08:00,1004.3179931640625,10.853034,10853.034 +6675,2025-03-07T20:01:55.780602-08:00,1004.3060913085938,10.843422,10843.422 +6676,2025-03-07T20:02:06.628261-08:00,1004.3284301757812,10.847659,10847.659 +6677,2025-03-07T20:02:17.468561-08:00,1004.3336791992188,10.8403,10840.3 +6678,2025-03-07T20:02:28.321561-08:00,1004.349365234375,10.853,10853.0 +6679,2025-03-07T20:02:39.171875-08:00,1004.3782958984375,10.850314,10850.314 +6680,2025-03-07T20:02:50.015935-08:00,1004.3650512695312,10.84406,10844.06 +6681,2025-03-07T20:03:00.863768-08:00,1004.3400268554688,10.847833,10847.833 +6682,2025-03-07T20:03:11.702553-08:00,1004.3357543945312,10.838785,10838.785 +6683,2025-03-07T20:03:22.542220-08:00,1004.377685546875,10.839667,10839.667 +6684,2025-03-07T20:03:33.387677-08:00,1004.3357543945312,10.845457,10845.457 +6685,2025-03-07T20:03:44.235875-08:00,1004.3790893554688,10.848198,10848.198 +6686,2025-03-07T20:03:55.084531-08:00,1004.38671875,10.848656,10848.656 +6687,2025-03-07T20:04:05.932583-08:00,1004.3748168945312,10.848052,10848.052 +6688,2025-03-07T20:04:16.775874-08:00,1004.3626708984375,10.843291,10843.291 +6689,2025-03-07T20:04:27.620718-08:00,1004.3825073242188,10.844844,10844.844 +6690,2025-03-07T20:04:38.462862-08:00,1004.3915405273438,10.842144,10842.144 +6691,2025-03-07T20:04:49.310833-08:00,1004.4048461914062,10.847971,10847.971 +6692,2025-03-07T20:05:00.152615-08:00,1004.3807983398438,10.841782,10841.782 +6693,2025-03-07T20:05:11.002783-08:00,1004.38330078125,10.850168,10850.168 +6694,2025-03-07T20:05:21.839564-08:00,1004.3780517578125,10.836781,10836.781 +6695,2025-03-07T20:05:32.686539-08:00,1004.4121704101562,10.846975,10846.975 +6696,2025-03-07T20:05:43.532543-08:00,1004.4003295898438,10.846004,10846.004 +6697,2025-03-07T20:05:54.385516-08:00,1004.4279174804688,10.852973,10852.973 +6698,2025-03-07T20:06:05.230551-08:00,1004.4080200195312,10.845035,10845.035 +6699,2025-03-07T20:06:16.074204-08:00,1004.41357421875,10.843653,10843.653 +6700,2025-03-07T20:06:26.927207-08:00,1004.4146728515625,10.853003,10853.003 +6701,2025-03-07T20:06:37.771264-08:00,1004.4411010742188,10.844057,10844.057 +6702,2025-03-07T20:06:48.614453-08:00,1004.416015625,10.843189,10843.189 +6703,2025-03-07T20:06:59.468622-08:00,1004.4425048828125,10.854169,10854.169 +6704,2025-03-07T20:07:10.311486-08:00,1004.4659423828125,10.842864,10842.864 +6705,2025-03-07T20:07:21.150255-08:00,1004.4501342773438,10.838769,10838.769 +6706,2025-03-07T20:07:32.008216-08:00,1004.443603515625,10.857961,10857.961 +6707,2025-03-07T20:07:42.850269-08:00,1004.4724731445312,10.842053,10842.053 +6708,2025-03-07T20:07:53.694213-08:00,1004.4470825195312,10.843944,10843.944 +6709,2025-03-07T20:08:04.537761-08:00,1004.4338989257812,10.843548,10843.548 +6710,2025-03-07T20:08:15.382422-08:00,1004.4829711914062,10.844661,10844.661 +6711,2025-03-07T20:08:26.225293-08:00,1004.4578247070312,10.842871,10842.871 +6712,2025-03-07T20:08:37.068348-08:00,1004.484375,10.843055,10843.055 +6713,2025-03-07T20:08:47.911206-08:00,1004.4710693359375,10.842858,10842.858 +6714,2025-03-07T20:08:58.748516-08:00,1004.4801635742188,10.83731,10837.31 +6715,2025-03-07T20:09:09.598189-08:00,1004.5,10.849673,10849.673 +6716,2025-03-07T20:09:20.439674-08:00,1004.5223388671875,10.841485,10841.485 +6717,2025-03-07T20:09:31.283214-08:00,1004.5010986328125,10.84354,10843.54 +6718,2025-03-07T20:09:42.124545-08:00,1004.5289306640625,10.841331,10841.331 +6719,2025-03-07T20:09:52.974786-08:00,1004.495849609375,10.850241,10850.241 +6720,2025-03-07T20:10:03.816356-08:00,1004.5101318359375,10.84157,10841.57 +6721,2025-03-07T20:10:14.656207-08:00,1004.4968872070312,10.839851,10839.851 +6722,2025-03-07T20:10:25.499425-08:00,1004.532470703125,10.843218,10843.218 +6723,2025-03-07T20:10:36.343310-08:00,1004.50732421875,10.843885,10843.885 +6724,2025-03-07T20:10:47.197503-08:00,1004.5059204101562,10.854193,10854.193 +6725,2025-03-07T20:10:58.039265-08:00,1004.5206298828125,10.841762,10841.762 +6726,2025-03-07T20:11:08.890212-08:00,1004.4940795898438,10.850947,10850.947 +6727,2025-03-07T20:11:19.737273-08:00,1004.50732421875,10.847061,10847.061 +6728,2025-03-07T20:11:30.586213-08:00,1004.5098266601562,10.84894,10848.94 +6729,2025-03-07T20:11:41.436246-08:00,1004.5017700195312,10.850033,10850.033 +6730,2025-03-07T20:11:52.277764-08:00,1004.475341796875,10.841518,10841.518 +6731,2025-03-07T20:12:03.124388-08:00,1004.49658203125,10.846624,10846.624 +6732,2025-03-07T20:12:13.975368-08:00,1004.5000610351562,10.85098,10850.98 +6733,2025-03-07T20:12:24.819206-08:00,1004.5042114257812,10.843838,10843.838 +6734,2025-03-07T20:12:35.668212-08:00,1004.484375,10.849006,10849.006 +6735,2025-03-07T20:12:46.507687-08:00,1004.4700927734375,10.839475,10839.475 +6736,2025-03-07T20:12:57.347001-08:00,1004.4857788085938,10.839314,10839.314 +6737,2025-03-07T20:13:08.189943-08:00,1004.4923706054688,10.842942,10842.942 +6738,2025-03-07T20:13:19.044206-08:00,1004.51220703125,10.854263,10854.263 +6739,2025-03-07T20:13:29.896452-08:00,1004.493408203125,10.852246,10852.246 +6740,2025-03-07T20:13:40.749214-08:00,1004.493408203125,10.852762,10852.762 +6741,2025-03-07T20:13:51.601210-08:00,1004.431396484375,10.851996,10851.996 +6742,2025-03-07T20:14:02.452007-08:00,1004.4659423828125,10.850797,10850.797 +6743,2025-03-07T20:14:13.300759-08:00,1004.4879150390625,10.848752,10848.752 +6744,2025-03-07T20:14:24.150214-08:00,1004.4669799804688,10.849455,10849.455 +6745,2025-03-07T20:14:35.001221-08:00,1004.468017578125,10.851007,10851.007 +6746,2025-03-07T20:14:45.857896-08:00,1004.4628295898438,10.856675,10856.675 +6747,2025-03-07T20:14:56.712217-08:00,1004.4282836914062,10.854321,10854.321 +6748,2025-03-07T20:15:07.568219-08:00,1004.4718627929688,10.856002,10856.002 +6749,2025-03-07T20:15:18.411470-08:00,1004.4639282226562,10.843251,10843.251 +6750,2025-03-07T20:15:29.264518-08:00,1004.5126342773438,10.853048,10853.048 +6751,2025-03-07T20:15:40.107541-08:00,1004.4927978515625,10.843023,10843.023 +6752,2025-03-07T20:15:50.962464-08:00,1004.4478149414062,10.854923,10854.923 +6753,2025-03-07T20:16:01.812219-08:00,1004.438720703125,10.849755,10849.755 +6754,2025-03-07T20:16:12.659573-08:00,1004.4820556640625,10.847354,10847.354 +6755,2025-03-07T20:16:23.506361-08:00,1004.4530639648438,10.846788,10846.788 +6756,2025-03-07T20:16:34.362603-08:00,1004.4662475585938,10.856242,10856.242 +6757,2025-03-07T20:16:45.201530-08:00,1004.4729614257812,10.838927,10838.927 +6758,2025-03-07T20:16:56.054299-08:00,1004.4743041992188,10.852769,10852.769 +6759,2025-03-07T20:17:06.911643-08:00,1004.4332275390625,10.857344,10857.344 +6760,2025-03-07T20:17:17.753334-08:00,1004.494140625,10.841691,10841.691 +6761,2025-03-07T20:17:28.605157-08:00,1004.5018920898438,10.851823,10851.823 +6762,2025-03-07T20:17:39.452403-08:00,1004.5140380859375,10.847246,10847.246 +6763,2025-03-07T20:17:50.292217-08:00,1004.4952392578125,10.839814,10839.814 +6764,2025-03-07T20:18:01.150441-08:00,1004.4874877929688,10.858224,10858.224 +6765,2025-03-07T20:18:11.992862-08:00,1004.49169921875,10.842421,10842.421 +6766,2025-03-07T20:18:22.845468-08:00,1004.5126342773438,10.852606,10852.606 +6767,2025-03-07T20:18:33.688565-08:00,1004.4861450195312,10.843097,10843.097 +6768,2025-03-07T20:18:44.539220-08:00,1004.5084228515625,10.850655,10850.655 +6769,2025-03-07T20:18:55.375206-08:00,1004.4820556640625,10.835986,10835.986 +6770,2025-03-07T20:19:06.220455-08:00,1004.5150756835938,10.845249,10845.249 +6771,2025-03-07T20:19:17.073518-08:00,1004.46875,10.853063,10853.063 +6772,2025-03-07T20:19:27.919554-08:00,1004.5109252929688,10.846036,10846.036 +6773,2025-03-07T20:19:38.768296-08:00,1004.4478149414062,10.848742,10848.742 +6774,2025-03-07T20:19:49.612692-08:00,1004.475341796875,10.844396,10844.396 +6775,2025-03-07T20:20:00.465373-08:00,1004.484375,10.852681,10852.681 +6776,2025-03-07T20:20:11.322192-08:00,1004.4976806640625,10.856819,10856.819 +6777,2025-03-07T20:20:22.166587-08:00,1004.4990844726562,10.844395,10844.395 +6778,2025-03-07T20:20:33.006383-08:00,1004.5147094726562,10.839796,10839.796 +6779,2025-03-07T20:20:43.861473-08:00,1004.493408203125,10.85509,10855.09 +6780,2025-03-07T20:20:54.695559-08:00,1004.5025024414062,10.834086,10834.086 +6781,2025-03-07T20:21:05.547547-08:00,1004.5248413085938,10.851988,10851.988 +6782,2025-03-07T20:21:16.391898-08:00,1004.5092163085938,10.844351,10844.351 +6783,2025-03-07T20:21:27.235216-08:00,1004.53955078125,10.843318,10843.318 +6784,2025-03-07T20:21:38.086370-08:00,1004.512939453125,10.851154,10851.154 +6785,2025-03-07T20:21:48.926824-08:00,1004.5418701171875,10.840454,10840.454 +6786,2025-03-07T20:21:59.775752-08:00,1004.5496215820312,10.848928,10848.928 +6787,2025-03-07T20:22:10.626575-08:00,1004.533935546875,10.850823,10850.823 +6788,2025-03-07T20:22:21.474063-08:00,1004.5628051757812,10.847488,10847.488 +6789,2025-03-07T20:22:32.327693-08:00,1004.54296875,10.85363,10853.63 +6790,2025-03-07T20:22:43.170438-08:00,1004.56640625,10.842745,10842.745 +6791,2025-03-07T20:22:54.013338-08:00,1004.5851440429688,10.8429,10842.9 +6792,2025-03-07T20:23:04.866475-08:00,1004.56640625,10.853137,10853.137 +6793,2025-03-07T20:23:15.710204-08:00,1004.5718994140625,10.843729,10843.729 +6794,2025-03-07T20:23:26.553817-08:00,1004.5851440429688,10.843613,10843.613 +6795,2025-03-07T20:23:37.398262-08:00,1004.5653076171875,10.844445,10844.445 +6796,2025-03-07T20:23:48.242416-08:00,1004.59423828125,10.844154,10844.154 +6797,2025-03-07T20:23:59.089415-08:00,1004.587646484375,10.846999,10846.999 +6798,2025-03-07T20:24:09.935242-08:00,1004.6018676757812,10.845827,10845.827 +6799,2025-03-07T20:24:20.777478-08:00,1004.6099243164062,10.842236,10842.236 +6800,2025-03-07T20:24:31.625277-08:00,1004.6018676757812,10.847799,10847.799 +6801,2025-03-07T20:24:42.479110-08:00,1004.6506958007812,10.853833,10853.833 +6802,2025-03-07T20:24:53.318433-08:00,1004.652099609375,10.839323,10839.323 +6803,2025-03-07T20:25:04.166606-08:00,1004.6322021484375,10.848173,10848.173 +6804,2025-03-07T20:25:15.018415-08:00,1004.652099609375,10.851809,10851.809 +6805,2025-03-07T20:25:25.863219-08:00,1004.652099609375,10.844804,10844.804 +6806,2025-03-07T20:25:36.706486-08:00,1004.6531372070312,10.843267,10843.267 +6807,2025-03-07T20:25:47.560562-08:00,1004.639892578125,10.854076,10854.076 +6808,2025-03-07T20:25:58.404699-08:00,1004.630859375,10.844137,10844.137 +6809,2025-03-07T20:26:09.247217-08:00,1004.6375122070312,10.842518,10842.518 +6810,2025-03-07T20:26:20.101615-08:00,1004.6785888671875,10.854398,10854.398 +6811,2025-03-07T20:26:30.944219-08:00,1004.6465454101562,10.842604,10842.604 +6812,2025-03-07T20:26:41.790738-08:00,1004.6663818359375,10.846519,10846.519 +6813,2025-03-07T20:26:52.641437-08:00,1004.6743774414062,10.850699,10850.699 +6814,2025-03-07T20:27:03.484665-08:00,1004.6663818359375,10.843228,10843.228 +6815,2025-03-07T20:27:14.340202-08:00,1004.6768798828125,10.855537,10855.537 +6816,2025-03-07T20:27:25.183371-08:00,1004.6646728515625,10.843169,10843.169 +6817,2025-03-07T20:27:36.036282-08:00,1004.6768798828125,10.852911,10852.911 +6818,2025-03-07T20:27:46.880207-08:00,1004.6702270507812,10.843925,10843.925 +6819,2025-03-07T20:27:57.735215-08:00,1004.6646728515625,10.855008,10855.008 +6820,2025-03-07T20:28:08.588445-08:00,1004.6370849609375,10.85323,10853.23 +6821,2025-03-07T20:28:19.431219-08:00,1004.6437377929688,10.842774,10842.774 +6822,2025-03-07T20:28:30.287264-08:00,1004.6570434570312,10.856045,10856.045 +6823,2025-03-07T20:28:41.139808-08:00,1004.6712646484375,10.852544,10852.544 +6824,2025-03-07T20:28:51.994405-08:00,1004.6621704101562,10.854597,10854.597 +6825,2025-03-07T20:29:02.837772-08:00,1004.6621704101562,10.843367,10843.367 +6826,2025-03-07T20:29:13.692538-08:00,1004.6570434570312,10.854766,10854.766 +6827,2025-03-07T20:29:24.537582-08:00,1004.64794921875,10.845044,10845.044 +6828,2025-03-07T20:29:35.390323-08:00,1004.6621704101562,10.852741,10852.741 +6829,2025-03-07T20:29:46.237474-08:00,1004.6768798828125,10.847151,10847.151 +6830,2025-03-07T20:29:57.076578-08:00,1004.6461791992188,10.839104,10839.104 +6831,2025-03-07T20:30:07.921091-08:00,1004.6448364257812,10.844513,10844.513 +6832,2025-03-07T20:30:18.775391-08:00,1004.6503295898438,10.8543,10854.3 +6833,2025-03-07T20:30:29.618150-08:00,1004.6503295898438,10.842759,10842.759 +6834,2025-03-07T20:30:40.471924-08:00,1004.6991577148438,10.853774,10853.774 +6835,2025-03-07T20:30:51.315225-08:00,1004.6646728515625,10.843301,10843.301 +6836,2025-03-07T20:31:02.159217-08:00,1004.691162109375,10.843992,10843.992 +6837,2025-03-07T20:31:13.011261-08:00,1004.6702270507812,10.852044,10852.044 +6838,2025-03-07T20:31:23.856216-08:00,1004.6646728515625,10.844955,10844.955 +6839,2025-03-07T20:31:34.706266-08:00,1004.6779174804688,10.85005,10850.05 +6840,2025-03-07T20:31:45.547591-08:00,1004.66357421875,10.841325,10841.325 +6841,2025-03-07T20:31:56.396777-08:00,1004.6381225585938,10.849186,10849.186 +6842,2025-03-07T20:32:07.240169-08:00,1004.6224975585938,10.843392,10843.392 +6843,2025-03-07T20:32:18.083253-08:00,1004.6702270507812,10.843084,10843.084 +6844,2025-03-07T20:32:28.925230-08:00,1004.6556396484375,10.841977,10841.977 +6845,2025-03-07T20:32:39.764189-08:00,1004.6224975585938,10.838959,10838.959 +6846,2025-03-07T20:32:50.611266-08:00,1004.6437377929688,10.847077,10847.077 +6847,2025-03-07T20:33:01.454206-08:00,1004.6503295898438,10.84294,10842.94 +6848,2025-03-07T20:33:12.298967-08:00,1004.6370849609375,10.844761,10844.761 +6849,2025-03-07T20:33:23.140875-08:00,1004.6503295898438,10.841908,10841.908 +6850,2025-03-07T20:33:33.993529-08:00,1004.6503295898438,10.852654,10852.654 +6851,2025-03-07T20:33:44.839522-08:00,1004.6437377929688,10.845993,10845.993 +6852,2025-03-07T20:33:55.683208-08:00,1004.6580200195312,10.843686,10843.686 +6853,2025-03-07T20:34:06.527222-08:00,1004.6726684570312,10.844014,10844.014 +6854,2025-03-07T20:34:17.368862-08:00,1004.6290893554688,10.84164,10841.64 +6855,2025-03-07T20:34:28.209022-08:00,1004.6712646484375,10.84016,10840.16 +6856,2025-03-07T20:34:39.054100-08:00,1004.6646728515625,10.845078,10845.078 +6857,2025-03-07T20:34:49.898399-08:00,1004.626220703125,10.844299,10844.299 +6858,2025-03-07T20:35:00.735288-08:00,1004.6646728515625,10.836889,10836.889 +6859,2025-03-07T20:35:11.577832-08:00,1004.65283203125,10.842544,10842.544 +6860,2025-03-07T20:35:22.427261-08:00,1004.6671142578125,10.849429,10849.429 +6861,2025-03-07T20:35:33.270187-08:00,1004.6539306640625,10.842926,10842.926 +6862,2025-03-07T20:35:44.113289-08:00,1004.6552124023438,10.843102,10843.102 +6863,2025-03-07T20:35:54.958135-08:00,1004.649658203125,10.844846,10844.846 +6864,2025-03-07T20:36:05.804545-08:00,1004.6364135742188,10.84641,10846.41 +6865,2025-03-07T20:36:16.653390-08:00,1004.6695556640625,10.848845,10848.845 +6866,2025-03-07T20:36:27.495239-08:00,1004.6852416992188,10.841849,10841.849 +6867,2025-03-07T20:36:38.344235-08:00,1004.6598510742188,10.848996,10848.996 +6868,2025-03-07T20:36:49.194297-08:00,1004.6810913085938,10.850062,10850.062 +6869,2025-03-07T20:37:00.031362-08:00,1004.6677856445312,10.837065,10837.065 +6870,2025-03-07T20:37:10.882408-08:00,1004.6663818359375,10.851046,10851.046 +6871,2025-03-07T20:37:21.734490-08:00,1004.6677856445312,10.852082,10852.082 +6872,2025-03-07T20:37:32.589520-08:00,1004.6677856445312,10.85503,10855.03 +6873,2025-03-07T20:37:43.429202-08:00,1004.6489868164062,10.839682,10839.682 +6874,2025-03-07T20:37:54.274219-08:00,1004.6768798828125,10.845017,10845.017 +6875,2025-03-07T20:38:05.119371-08:00,1004.6834106445312,10.845152,10845.152 +6876,2025-03-07T20:38:15.971103-08:00,1004.6845092773438,10.851732,10851.732 +6877,2025-03-07T20:38:26.808481-08:00,1004.6646728515625,10.837378,10837.378 +6878,2025-03-07T20:38:37.653200-08:00,1004.6793212890625,10.844719,10844.719 +6879,2025-03-07T20:38:48.489439-08:00,1004.68701171875,10.836239,10836.239 +6880,2025-03-07T20:38:59.338217-08:00,1004.6925048828125,10.848778,10848.778 +6881,2025-03-07T20:39:10.189450-08:00,1004.6671142578125,10.851233,10851.233 +6882,2025-03-07T20:39:21.030479-08:00,1004.6726684570312,10.841029,10841.029 +6883,2025-03-07T20:39:31.875251-08:00,1004.66845703125,10.844772,10844.772 +6884,2025-03-07T20:39:42.717226-08:00,1004.66845703125,10.841975,10841.975 +6885,2025-03-07T20:39:53.564801-08:00,1004.70263671875,10.847575,10847.575 +6886,2025-03-07T20:40:04.404751-08:00,1004.6629638671875,10.83995,10839.95 +6887,2025-03-07T20:40:15.258218-08:00,1004.6576538085938,10.853467,10853.467 +6888,2025-03-07T20:40:26.096398-08:00,1004.6364135742188,10.83818,10838.18 +6889,2025-03-07T20:40:36.942211-08:00,1004.6654052734375,10.845813,10845.813 +6890,2025-03-07T20:40:47.789316-08:00,1004.6998291015625,10.847105,10847.105 +6891,2025-03-07T20:40:58.631219-08:00,1004.7142333984375,10.841903,10841.903 +6892,2025-03-07T20:41:09.486899-08:00,1004.67333984375,10.85568,10855.68 +6893,2025-03-07T20:41:20.330513-08:00,1004.7100219726562,10.843614,10843.614 +6894,2025-03-07T20:41:31.182527-08:00,1004.690185546875,10.852014,10852.014 +6895,2025-03-07T20:41:42.032658-08:00,1004.6824340820312,10.850131,10850.131 +6896,2025-03-07T20:41:52.874530-08:00,1004.71142578125,10.841872,10841.872 +6897,2025-03-07T20:42:03.727470-08:00,1004.6956176757812,10.85294,10852.94 +6898,2025-03-07T20:42:14.576241-08:00,1004.7256469726562,10.848771,10848.771 +6899,2025-03-07T20:42:25.425460-08:00,1004.7388916015625,10.849219,10849.219 +6900,2025-03-07T20:42:36.277665-08:00,1004.73779296875,10.852205,10852.205 +6901,2025-03-07T20:42:47.127798-08:00,1004.6981201171875,10.850133,10850.133 +6902,2025-03-07T20:42:57.979551-08:00,1004.7333374023438,10.851753,10851.753 +6903,2025-03-07T20:43:08.827798-08:00,1004.71240234375,10.848247,10848.247 +6904,2025-03-07T20:43:19.673533-08:00,1004.739990234375,10.845735,10845.735 +6905,2025-03-07T20:43:30.518347-08:00,1004.7214965820312,10.844814,10844.814 +6906,2025-03-07T20:43:41.355206-08:00,1004.7068481445312,10.836859,10836.859 +6907,2025-03-07T20:43:52.211460-08:00,1004.742431640625,10.856254,10856.254 +6908,2025-03-07T20:44:03.057207-08:00,1004.7413940429688,10.845747,10845.747 +6909,2025-03-07T20:44:13.901488-08:00,1004.7346801757812,10.844281,10844.281 +6910,2025-03-07T20:44:24.753778-08:00,1004.7267456054688,10.85229,10852.29 +6911,2025-03-07T20:44:35.605555-08:00,1004.7333374023438,10.851777,10851.777 +6912,2025-03-07T20:44:46.456281-08:00,1004.7214965820312,10.850726,10850.726 +6913,2025-03-07T20:44:57.298251-08:00,1004.739990234375,10.84197,10841.97 +6914,2025-03-07T20:45:08.143533-08:00,1004.7281494140625,10.845282,10845.282 +6915,2025-03-07T20:45:18.989955-08:00,1004.7413940429688,10.846422,10846.422 +6916,2025-03-07T20:45:29.837120-08:00,1004.7413940429688,10.847165,10847.165 +6917,2025-03-07T20:45:40.686518-08:00,1004.7224731445312,10.849398,10849.398 +6918,2025-03-07T20:45:51.536748-08:00,1004.7479858398438,10.85023,10850.23 +6919,2025-03-07T20:46:02.380233-08:00,1004.7068481445312,10.843485,10843.485 +6920,2025-03-07T20:46:13.230212-08:00,1004.742431640625,10.849979,10849.979 +6921,2025-03-07T20:46:24.077188-08:00,1004.7371826171875,10.846976,10846.976 +6922,2025-03-07T20:46:34.934736-08:00,1004.7371826171875,10.857548,10857.548 +6923,2025-03-07T20:46:45.784265-08:00,1004.7371826171875,10.849529,10849.529 +6924,2025-03-07T20:46:56.630759-08:00,1004.7159423828125,10.846494,10846.494 +6925,2025-03-07T20:47:07.477187-08:00,1004.75048828125,10.846428,10846.428 +6926,2025-03-07T20:47:18.322385-08:00,1004.742431640625,10.845198,10845.198 +6927,2025-03-07T20:47:29.164894-08:00,1004.7570190429688,10.842509,10842.509 +6928,2025-03-07T20:47:40.006410-08:00,1004.7371826171875,10.841516,10841.516 +6929,2025-03-07T20:47:50.851452-08:00,1004.7371826171875,10.845042,10845.042 +6930,2025-03-07T20:48:01.694423-08:00,1004.7647094726562,10.842971,10842.971 +6931,2025-03-07T20:48:12.548240-08:00,1004.7305297851562,10.853817,10853.817 +6932,2025-03-07T20:48:23.397477-08:00,1004.7714233398438,10.849237,10849.237 +6933,2025-03-07T20:48:34.239638-08:00,1004.7714233398438,10.842161,10842.161 +6934,2025-03-07T20:48:45.096411-08:00,1004.75048828125,10.856773,10856.773 +6935,2025-03-07T20:48:55.941437-08:00,1004.75048828125,10.845026,10845.026 +6936,2025-03-07T20:49:06.787210-08:00,1004.7570190429688,10.845773,10845.773 +6937,2025-03-07T20:49:17.633446-08:00,1004.742431640625,10.846236,10846.236 +6938,2025-03-07T20:49:28.490215-08:00,1004.7117309570312,10.856769,10856.769 +6939,2025-03-07T20:49:39.333475-08:00,1004.7528076171875,10.84326,10843.26 +6940,2025-03-07T20:49:50.173677-08:00,1004.6907958984375,10.840202,10840.202 +6941,2025-03-07T20:50:01.027261-08:00,1004.7183837890625,10.853584,10853.584 +6942,2025-03-07T20:50:11.879366-08:00,1004.7315673828125,10.852105,10852.105 +6943,2025-03-07T20:50:22.727352-08:00,1004.6974487304688,10.847986,10847.986 +6944,2025-03-07T20:50:33.576436-08:00,1004.763671875,10.849084,10849.084 +6945,2025-03-07T20:50:44.425217-08:00,1004.7249755859375,10.848781,10848.781 +6946,2025-03-07T20:51:06.120110-08:00,1004.7581176757812,21.694893,21694.893 +6947,2025-03-07T20:51:16.971309-08:00,1004.73828125,10.851199,10851.199 +6948,2025-03-07T20:51:27.833530-08:00,1004.744873046875,10.862221,10862.221 +6949,2025-03-07T20:51:38.671539-08:00,1004.7462768554688,10.838009,10838.009 +6950,2025-03-07T20:51:49.523064-08:00,1004.7329711914062,10.851525,10851.525 +6951,2025-03-07T20:52:00.370221-08:00,1004.6998291015625,10.847157,10847.157 +6952,2025-03-07T20:52:11.218215-08:00,1004.7462768554688,10.847994,10847.994 +6953,2025-03-07T20:52:22.062470-08:00,1004.7396240234375,10.844255,10844.255 +6954,2025-03-07T20:52:32.914194-08:00,1004.7486572265625,10.851724,10851.724 +6955,2025-03-07T20:52:43.764603-08:00,1004.7605590820312,10.850409,10850.409 +6956,2025-03-07T20:52:54.613210-08:00,1004.762939453125,10.848607,10848.607 +6957,2025-03-07T20:53:05.461747-08:00,1004.7023315429688,10.848537,10848.537 +6958,2025-03-07T20:53:16.316518-08:00,1004.7256469726562,10.854771,10854.771 +6959,2025-03-07T20:53:27.158514-08:00,1004.7445068359375,10.841996,10841.996 +6960,2025-03-07T20:53:38.001570-08:00,1004.7431030273438,10.843056,10843.056 +6961,2025-03-07T20:53:48.853518-08:00,1004.7312622070312,10.851948,10851.948 +6962,2025-03-07T20:53:59.705932-08:00,1004.6702270507812,10.852414,10852.414 +6963,2025-03-07T20:54:10.551588-08:00,1004.7510986328125,10.845656,10845.656 +6964,2025-03-07T20:54:21.407280-08:00,1004.7496948242188,10.855692,10855.692 +6965,2025-03-07T20:54:32.247611-08:00,1004.7654418945312,10.840331,10840.331 +6966,2025-03-07T20:54:43.099486-08:00,1004.7365112304688,10.851875,10851.875 +6967,2025-03-07T20:54:53.951532-08:00,1004.7455444335938,10.852046,10852.046 +6968,2025-03-07T20:55:04.801594-08:00,1004.7323608398438,10.850062,10850.062 +6969,2025-03-07T20:55:15.644216-08:00,1004.754638671875,10.842622,10842.622 +6970,2025-03-07T20:55:26.489437-08:00,1004.7402954101562,10.845221,10845.221 +6971,2025-03-07T20:55:37.336216-08:00,1004.75048828125,10.846779,10846.779 +6972,2025-03-07T20:55:48.184443-08:00,1004.7318725585938,10.848227,10848.227 +6973,2025-03-07T20:55:59.038219-08:00,1004.7228393554688,10.853776,10853.776 +6974,2025-03-07T20:56:09.881520-08:00,1004.7957763671875,10.843301,10843.301 +6975,2025-03-07T20:56:20.738549-08:00,1004.8270874023438,10.857029,10857.029 +6976,2025-03-07T20:56:31.581265-08:00,1004.828125,10.842716,10842.716 +6977,2025-03-07T20:56:42.437375-08:00,1004.8204956054688,10.85611,10856.11 +6978,2025-03-07T20:56:53.279142-08:00,1004.8082885742188,10.841767,10841.767 +6979,2025-03-07T20:57:04.133211-08:00,1004.8082885742188,10.854069,10854.069 +6980,2025-03-07T20:57:14.976566-08:00,1004.7740478515625,10.843355,10843.355 +6981,2025-03-07T20:57:25.820300-08:00,1004.8184204101562,10.843734,10843.734 +6982,2025-03-07T20:57:36.675403-08:00,1004.8016967773438,10.855103,10855.103 +6983,2025-03-07T20:57:47.527985-08:00,1004.8173217773438,10.852582,10852.582 +6984,2025-03-07T20:57:58.376482-08:00,1004.80517578125,10.848497,10848.497 +6985,2025-03-07T20:58:09.231512-08:00,1004.860595703125,10.85503,10855.03 +6986,2025-03-07T20:58:20.069269-08:00,1004.8739013671875,10.837757,10837.757 +6987,2025-03-07T20:58:30.922208-08:00,1004.860595703125,10.852939,10852.939 +6988,2025-03-07T20:58:41.765502-08:00,1004.85400390625,10.843294,10843.294 +6989,2025-03-07T20:58:52.622365-08:00,1004.8552856445312,10.856863,10856.863 +6990,2025-03-07T20:59:03.464253-08:00,1004.8473510742188,10.841888,10841.888 +6991,2025-03-07T20:59:14.320446-08:00,1004.8563842773438,10.856193,10856.193 +6992,2025-03-07T20:59:25.171368-08:00,1004.863037109375,10.850922,10850.922 +6993,2025-03-07T20:59:36.023353-08:00,1004.8552856445312,10.851985,10851.985 +6994,2025-03-07T20:59:46.869557-08:00,1004.876220703125,10.846204,10846.204 +6995,2025-03-07T20:59:57.718927-08:00,1004.88427734375,10.84937,10849.37 +6996,2025-03-07T21:00:08.568261-08:00,1004.8787231445312,10.849334,10849.334 +6997,2025-03-07T21:00:19.415446-08:00,1004.9042358398438,10.847185,10847.185 +6998,2025-03-07T21:00:30.270214-08:00,1004.8986206054688,10.854768,10854.768 +6999,2025-03-07T21:00:41.121202-08:00,1004.9000244140625,10.850988,10850.988 +7000,2025-03-07T21:00:51.973216-08:00,1004.9000244140625,10.852014,10852.014 +7001,2025-03-07T21:01:02.828227-08:00,1004.9052124023438,10.855011,10855.011 +7002,2025-03-07T21:01:13.678500-08:00,1004.8853149414062,10.850273,10850.273 +7003,2025-03-07T21:01:24.536569-08:00,1004.8933715820312,10.858069,10858.069 +7004,2025-03-07T21:01:35.378728-08:00,1004.92236328125,10.842159,10842.159 +7005,2025-03-07T21:01:46.236959-08:00,1004.8902587890625,10.858231,10858.231 +7006,2025-03-07T21:01:57.078617-08:00,1004.8968505859375,10.841658,10841.658 +7007,2025-03-07T21:02:07.933957-08:00,1004.92236328125,10.85534,10855.34 +7008,2025-03-07T21:02:18.792686-08:00,1004.92333984375,10.858729,10858.729 +7009,2025-03-07T21:02:29.646545-08:00,1004.93798828125,10.853859,10853.859 +7010,2025-03-07T21:02:40.496887-08:00,1004.92236328125,10.850342,10850.342 +7011,2025-03-07T21:02:51.346498-08:00,1004.9421997070312,10.849611,10849.611 +7012,2025-03-07T21:03:02.197467-08:00,1004.94873046875,10.850969,10850.969 +7013,2025-03-07T21:03:13.048305-08:00,1004.9365844726562,10.850838,10850.838 +7014,2025-03-07T21:03:23.903752-08:00,1004.9365844726562,10.855447,10855.447 +7015,2025-03-07T21:03:34.766274-08:00,1004.935546875,10.862522,10862.522 +7016,2025-03-07T21:03:45.611326-08:00,1004.9554443359375,10.845052,10845.052 +7017,2025-03-07T21:03:56.467223-08:00,1004.927490234375,10.855897,10855.897 +7018,2025-03-07T21:04:07.314463-08:00,1004.93310546875,10.84724,10847.24 +7019,2025-03-07T21:04:18.163183-08:00,1004.93310546875,10.84872,10848.72 +7020,2025-03-07T21:04:29.030199-08:00,1004.9714965820312,10.867016,10867.016 +7021,2025-03-07T21:04:39.884085-08:00,1004.9383544921875,10.853886,10853.886 +7022,2025-03-07T21:04:50.739803-08:00,1004.955810546875,10.855718,10855.718 +7023,2025-03-07T21:05:01.596732-08:00,1004.9268798828125,10.856929,10856.929 +7024,2025-03-07T21:05:12.452532-08:00,1004.974609375,10.8558,10855.8 +7025,2025-03-07T21:05:23.302455-08:00,1004.9467163085938,10.849923,10849.923 +7026,2025-03-07T21:05:34.202490-08:00,1004.9390869140625,10.900035,10900.035 +7027,2025-03-07T21:05:45.044712-08:00,1004.9390869140625,10.842222,10842.222 +7028,2025-03-07T21:05:55.906464-08:00,1004.9310913085938,10.861752,10861.752 +7029,2025-03-07T21:06:06.758464-08:00,1004.9220581054688,10.852,10852.0 +7030,2025-03-07T21:06:17.607685-08:00,1004.9484252929688,10.849221,10849.221 +7031,2025-03-07T21:06:28.461610-08:00,1004.939697265625,10.853925,10853.925 +7032,2025-03-07T21:06:39.316482-08:00,1004.9251708984375,10.854872,10854.872 +7033,2025-03-07T21:06:50.177605-08:00,1004.9093627929688,10.861123,10861.123 +7034,2025-03-07T21:07:01.026690-08:00,1004.9637451171875,10.849085,10849.085 +7035,2025-03-07T21:07:11.880469-08:00,1004.9481201171875,10.853779,10853.779 +7036,2025-03-07T21:07:22.746255-08:00,1004.940185546875,10.865786,10865.786 +7037,2025-03-07T21:07:33.590545-08:00,1004.9600219726562,10.84429,10844.29 +7038,2025-03-07T21:07:44.441473-08:00,1004.963134765625,10.850928,10850.928 +7039,2025-03-07T21:07:55.286987-08:00,1004.9474487304688,10.845514,10845.514 +7040,2025-03-07T21:08:06.131474-08:00,1004.95263671875,10.844487,10844.487 +7041,2025-03-07T21:08:16.982479-08:00,1004.9502563476562,10.851005,10851.005 +7042,2025-03-07T21:08:27.839476-08:00,1004.9491577148438,10.856997,10856.997 +7043,2025-03-07T21:08:38.691531-08:00,1004.9600219726562,10.852055,10852.055 +7044,2025-03-07T21:08:49.548476-08:00,1004.9798583984375,10.856945,10856.945 +7045,2025-03-07T21:09:00.390848-08:00,1004.9442749023438,10.842372,10842.372 +7046,2025-03-07T21:09:11.246793-08:00,1004.9431762695312,10.855945,10855.945 +7047,2025-03-07T21:09:22.099801-08:00,1004.955078125,10.853008,10853.008 +7048,2025-03-07T21:09:32.943757-08:00,1004.9407958984375,10.843956,10843.956 +7049,2025-03-07T21:09:43.798291-08:00,1004.946044921875,10.854534,10854.534 +7050,2025-03-07T21:09:54.652520-08:00,1004.9226684570312,10.854229,10854.229 +7051,2025-03-07T21:10:05.495964-08:00,1004.9279174804688,10.843444,10843.444 +7052,2025-03-07T21:10:16.340688-08:00,1004.9453125,10.844724,10844.724 +7053,2025-03-07T21:10:27.194370-08:00,1004.9508666992188,10.853682,10853.682 +7054,2025-03-07T21:10:38.047472-08:00,1004.9376831054688,10.853102,10853.102 +7055,2025-03-07T21:10:48.897112-08:00,1004.9219360351562,10.84964,10849.64 +7056,2025-03-07T21:10:59.745466-08:00,1004.947021484375,10.848354,10848.354 +7057,2025-03-07T21:11:10.599636-08:00,1004.9710693359375,10.85417,10854.17 +7058,2025-03-07T21:11:21.452542-08:00,1004.9501342773438,10.852906,10852.906 +7059,2025-03-07T21:11:32.291805-08:00,1004.9226684570312,10.839263,10839.263 +7060,2025-03-07T21:11:43.152968-08:00,1004.9068603515625,10.861163,10861.163 +7061,2025-03-07T21:11:53.998471-08:00,1004.9285278320312,10.845503,10845.503 +7062,2025-03-07T21:12:04.858289-08:00,1004.9072875976562,10.859818,10859.818 +7063,2025-03-07T21:12:15.702470-08:00,1004.9271850585938,10.844181,10844.181 +7064,2025-03-07T21:12:26.559952-08:00,1004.9170532226562,10.857482,10857.482 +7065,2025-03-07T21:12:37.412470-08:00,1004.9170532226562,10.852518,10852.518 +7066,2025-03-07T21:12:48.257865-08:00,1004.9131469726562,10.845395,10845.395 +7067,2025-03-07T21:12:59.111198-08:00,1004.9107666015625,10.853333,10853.333 +7068,2025-03-07T21:13:09.970461-08:00,1004.888427734375,10.859263,10859.263 +7069,2025-03-07T21:13:20.819474-08:00,1004.8716430664062,10.849013,10849.013 +7070,2025-03-07T21:13:31.661719-08:00,1004.91796875,10.842245,10842.245 +7071,2025-03-07T21:13:42.515752-08:00,1004.8814086914062,10.854033,10854.033 +7072,2025-03-07T21:13:53.370481-08:00,1004.87890625,10.854729,10854.729 +7073,2025-03-07T21:14:04.214899-08:00,1004.8831176757812,10.844418,10844.418 +7074,2025-03-07T21:14:15.068857-08:00,1004.9096069335938,10.853958,10853.958 +7075,2025-03-07T21:14:25.911686-08:00,1004.8660888671875,10.842829,10842.829 +7076,2025-03-07T21:14:36.766515-08:00,1004.9005737304688,10.854829,10854.829 +7077,2025-03-07T21:14:47.608619-08:00,1004.9113159179688,10.842104,10842.104 +7078,2025-03-07T21:14:58.462592-08:00,1004.8890380859375,10.853973,10853.973 +7079,2025-03-07T21:15:09.318474-08:00,1004.907470703125,10.855882,10855.882 +7080,2025-03-07T21:15:20.167480-08:00,1004.8931274414062,10.849006,10849.006 +7081,2025-03-07T21:15:31.007789-08:00,1004.9171752929688,10.840309,10840.309 +7082,2025-03-07T21:15:41.859143-08:00,1004.8984375,10.851354,10851.354 +7083,2025-03-07T21:15:52.703780-08:00,1004.869873046875,10.844637,10844.637 +7084,2025-03-07T21:16:03.542453-08:00,1004.9188842773438,10.838673,10838.673 +7085,2025-03-07T21:16:14.395033-08:00,1004.9032592773438,10.85258,10852.58 +7086,2025-03-07T21:16:25.242471-08:00,1004.9140625,10.847438,10847.438 +7087,2025-03-07T21:16:36.090634-08:00,1004.939453125,10.848163,10848.163 +7088,2025-03-07T21:16:46.930803-08:00,1004.9554443359375,10.840169,10840.169 +7089,2025-03-07T21:16:57.772743-08:00,1004.9478149414062,10.84194,10841.94 +7090,2025-03-07T21:17:08.624556-08:00,1004.9478149414062,10.851813,10851.813 +7091,2025-03-07T21:17:19.469836-08:00,1004.9384155273438,10.84528,10845.28 +7092,2025-03-07T21:17:30.327471-08:00,1004.9237670898438,10.857635,10857.635 +7093,2025-03-07T21:17:41.173839-08:00,1004.9467163085938,10.846368,10846.368 +7094,2025-03-07T21:17:52.022410-08:00,1004.97216796875,10.848571,10848.571 +7095,2025-03-07T21:18:02.864979-08:00,1004.9498291015625,10.842569,10842.569 +7096,2025-03-07T21:18:13.710743-08:00,1004.9671630859375,10.845764,10845.764 +7097,2025-03-07T21:18:24.562031-08:00,1004.98046875,10.851288,10851.288 +7098,2025-03-07T21:18:35.416727-08:00,1004.98046875,10.854696,10854.696 +7099,2025-03-07T21:18:46.260631-08:00,1004.984619140625,10.843904,10843.904 +7100,2025-03-07T21:18:57.101698-08:00,1004.9742431640625,10.841067,10841.067 +7101,2025-03-07T21:19:07.950477-08:00,1004.9742431640625,10.848779,10848.779 +7102,2025-03-07T21:19:18.789778-08:00,1004.9796752929688,10.839301,10839.301 +7103,2025-03-07T21:19:29.635621-08:00,1005.0048217773438,10.845843,10845.843 +7104,2025-03-07T21:19:40.482451-08:00,1004.97998046875,10.84683,10846.83 +7105,2025-03-07T21:19:51.335472-08:00,1004.9788818359375,10.853021,10853.021 +7106,2025-03-07T21:20:02.180525-08:00,1004.985595703125,10.845053,10845.053 +7107,2025-03-07T21:20:13.037658-08:00,1004.983154296875,10.857133,10857.133 +7108,2025-03-07T21:20:23.881526-08:00,1004.9820556640625,10.843868,10843.868 +7109,2025-03-07T21:20:34.727217-08:00,1004.9953002929688,10.845691,10845.691 +7110,2025-03-07T21:20:45.579865-08:00,1004.9862670898438,10.852648,10852.648 +7111,2025-03-07T21:20:56.424788-08:00,1005.0036010742188,10.844923,10844.923 +7112,2025-03-07T21:21:07.270505-08:00,1004.98486328125,10.845717,10845.717 +7113,2025-03-07T21:21:18.129312-08:00,1004.9823608398438,10.858807,10858.807 +7114,2025-03-07T21:21:28.973521-08:00,1005.0078125,10.844209,10844.209 +7115,2025-03-07T21:21:39.825472-08:00,1004.9788208007812,10.851951,10851.951 +7116,2025-03-07T21:21:50.671533-08:00,1004.9854736328125,10.846061,10846.061 +7117,2025-03-07T21:22:01.514462-08:00,1005.00390625,10.842929,10842.929 +7118,2025-03-07T21:22:12.371035-08:00,1004.9767456054688,10.856573,10856.573 +7119,2025-03-07T21:22:23.221615-08:00,1005.009765625,10.85058,10850.58 +7120,2025-03-07T21:22:34.071875-08:00,1004.994384765625,10.85026,10850.26 +7121,2025-03-07T21:22:44.911523-08:00,1004.9863891601562,10.839648,10839.648 +7122,2025-03-07T21:22:55.765720-08:00,1005.026123046875,10.854197,10854.197 +7123,2025-03-07T21:23:06.609474-08:00,1004.9971923828125,10.843754,10843.754 +7124,2025-03-07T21:23:17.450477-08:00,1004.990478515625,10.841003,10841.003 +7125,2025-03-07T21:23:28.306472-08:00,1005.0236206054688,10.855995,10855.995 +7126,2025-03-07T21:23:39.154815-08:00,1004.9894409179688,10.848343,10848.343 +7127,2025-03-07T21:23:49.991333-08:00,1005.001220703125,10.836518,10836.518 +7128,2025-03-07T21:24:00.846032-08:00,1004.987060546875,10.854699,10854.699 +7129,2025-03-07T21:24:11.684719-08:00,1005.0079956054688,10.838687,10838.687 +7130,2025-03-07T21:24:22.532474-08:00,1005.001220703125,10.847755,10847.755 +7131,2025-03-07T21:24:33.375537-08:00,1005.0332641601562,10.843063,10843.063 +7132,2025-03-07T21:24:44.231477-08:00,1005.0200805664062,10.85594,10855.94 +7133,2025-03-07T21:24:55.072932-08:00,1005.0267333984375,10.841455,10841.455 +7134,2025-03-07T21:25:05.916656-08:00,1005.0068969726562,10.843724,10843.724 +7135,2025-03-07T21:25:16.769544-08:00,1005.0079956054688,10.852888,10852.888 +7136,2025-03-07T21:25:27.612471-08:00,1005.013427734375,10.842927,10842.927 +7137,2025-03-07T21:25:38.468930-08:00,1005.000244140625,10.856459,10856.459 +7138,2025-03-07T21:25:49.311474-08:00,1005.002685546875,10.842544,10842.544 +7139,2025-03-07T21:26:00.155536-08:00,1005.00927734375,10.844062,10844.062 +7140,2025-03-07T21:26:11.008588-08:00,1005.01171875,10.853052,10853.052 +7141,2025-03-07T21:26:21.851268-08:00,1005.01171875,10.84268,10842.68 +7142,2025-03-07T21:26:32.692443-08:00,1005.0448608398438,10.841175,10841.175 +7143,2025-03-07T21:26:43.547475-08:00,1004.9773559570312,10.855032,10855.032 +7144,2025-03-07T21:26:54.381802-08:00,1004.9773559570312,10.834327,10834.327 +7145,2025-03-07T21:27:05.224852-08:00,1005.0062255859375,10.84305,10843.05 +7146,2025-03-07T21:27:16.079069-08:00,1004.979736328125,10.854217,10854.217 +7147,2025-03-07T21:27:26.911598-08:00,1004.9745483398438,10.832529,10832.529 +7148,2025-03-07T21:27:37.764521-08:00,1004.9745483398438,10.852923,10852.923 +7149,2025-03-07T21:27:48.606588-08:00,1004.9612426757812,10.842067,10842.067 +7150,2025-03-07T21:27:59.457434-08:00,1004.9612426757812,10.850846,10850.846 +7151,2025-03-07T21:28:10.294275-08:00,1004.968994140625,10.836841,10836.841 +7152,2025-03-07T21:28:21.148980-08:00,1004.969970703125,10.854705,10854.705 +7153,2025-03-07T21:28:31.991472-08:00,1004.9634399414062,10.842492,10842.492 +7154,2025-03-07T21:28:42.844475-08:00,1004.9623413085938,10.853003,10853.003 +7155,2025-03-07T21:28:53.694748-08:00,1004.9501342773438,10.850273,10850.273 +7156,2025-03-07T21:29:04.543476-08:00,1004.9369506835938,10.848728,10848.728 +7157,2025-03-07T21:29:15.389470-08:00,1004.9171142578125,10.845994,10845.994 +7158,2025-03-07T21:29:26.233835-08:00,1004.9104614257812,10.844365,10844.365 +7159,2025-03-07T21:29:37.084837-08:00,1004.9195556640625,10.851002,10851.002 +7160,2025-03-07T21:29:47.928501-08:00,1004.9154052734375,10.843664,10843.664 +7161,2025-03-07T21:29:58.767646-08:00,1004.9407958984375,10.839145,10839.145 +7162,2025-03-07T21:30:09.612789-08:00,1004.9168090820312,10.845143,10845.143 +7163,2025-03-07T21:30:20.456788-08:00,1004.9143676757812,10.843999,10843.999 +7164,2025-03-07T21:30:31.299828-08:00,1004.9285888671875,10.84304,10843.04 +7165,2025-03-07T21:30:42.141474-08:00,1004.9285888671875,10.841646,10841.646 +7166,2025-03-07T21:30:52.991825-08:00,1004.9275512695312,10.850351,10850.351 +7167,2025-03-07T21:31:03.828477-08:00,1004.9154052734375,10.836652,10836.652 +7168,2025-03-07T21:31:14.671803-08:00,1004.9299926757812,10.843326,10843.326 +7169,2025-03-07T21:31:25.515515-08:00,1004.9168090820312,10.843712,10843.712 +7170,2025-03-07T21:31:36.372128-08:00,1004.8903198242188,10.856613,10856.613 +7171,2025-03-07T21:31:47.214468-08:00,1004.89794921875,10.84234,10842.34 +7172,2025-03-07T21:31:58.056687-08:00,1004.9004516601562,10.842219,10842.219 +7173,2025-03-07T21:32:08.900794-08:00,1004.9269409179688,10.844107,10844.107 +7174,2025-03-07T21:32:19.738471-08:00,1004.9137573242188,10.837677,10837.677 +7175,2025-03-07T21:32:30.574609-08:00,1004.89111328125,10.836138,10836.138 +7176,2025-03-07T21:32:41.417715-08:00,1004.87890625,10.843106,10843.106 +7177,2025-03-07T21:32:52.261694-08:00,1004.8922119140625,10.843979,10843.979 +7178,2025-03-07T21:33:03.101742-08:00,1004.9266357421875,10.840048,10840.048 +7179,2025-03-07T21:33:13.946451-08:00,1004.9026489257812,10.844709,10844.709 +7180,2025-03-07T21:33:24.791081-08:00,1004.9012451171875,10.84463,10844.63 +7181,2025-03-07T21:33:35.643641-08:00,1004.923583984375,10.85256,10852.56 +7182,2025-03-07T21:33:46.487145-08:00,1004.926025390625,10.843504,10843.504 +7183,2025-03-07T21:33:57.330862-08:00,1004.9326782226562,10.843717,10843.717 +7184,2025-03-07T21:34:08.179470-08:00,1004.93505859375,10.848608,10848.608 +7185,2025-03-07T21:34:19.039448-08:00,1004.9417114257812,10.859978,10859.978 +7186,2025-03-07T21:34:29.883772-08:00,1004.9428100585938,10.844324,10844.324 +7187,2025-03-07T21:34:40.735453-08:00,1004.903076171875,10.851681,10851.681 +7188,2025-03-07T21:34:51.585472-08:00,1004.9320068359375,10.850019,10850.019 +7189,2025-03-07T21:35:02.424471-08:00,1004.9266967773438,10.838999,10838.999 +7190,2025-03-07T21:35:13.279469-08:00,1004.9411010742188,10.854998,10854.998 +7191,2025-03-07T21:35:24.125623-08:00,1004.922607421875,10.846154,10846.154 +7192,2025-03-07T21:35:34.975763-08:00,1004.9766235351562,10.85014,10850.14 +7193,2025-03-07T21:35:45.824009-08:00,1004.9634399414062,10.848246,10848.246 +7194,2025-03-07T21:35:56.672508-08:00,1004.984619140625,10.848499,10848.499 +7195,2025-03-07T21:36:07.514599-08:00,1004.95263671875,10.842091,10842.091 +7196,2025-03-07T21:36:18.370455-08:00,1004.9880981445312,10.855856,10855.856 +7197,2025-03-07T21:36:29.214529-08:00,1004.9762573242188,10.844074,10844.074 +7198,2025-03-07T21:36:40.062790-08:00,1004.9906005859375,10.848261,10848.261 +7199,2025-03-07T21:36:50.912705-08:00,1005.010498046875,10.849915,10849.915 +7200,2025-03-07T21:37:01.764474-08:00,1005.00634765625,10.851769,10851.769 +7201,2025-03-07T21:37:12.609735-08:00,1004.9954833984375,10.845261,10845.261 +7202,2025-03-07T21:37:23.451764-08:00,1004.9756469726562,10.842029,10842.029 +7203,2025-03-07T21:37:34.304474-08:00,1005.0296630859375,10.85271,10852.71 +7204,2025-03-07T21:37:45.143822-08:00,1005.01123046875,10.839348,10839.348 +7205,2025-03-07T21:37:55.993479-08:00,1004.994140625,10.849657,10849.657 +7206,2025-03-07T21:38:06.840884-08:00,1005.0296630859375,10.847405,10847.405 +7207,2025-03-07T21:38:17.688730-08:00,1005.0505981445312,10.847846,10847.846 +7208,2025-03-07T21:38:28.535865-08:00,1005.03076171875,10.847135,10847.135 +7209,2025-03-07T21:38:39.383421-08:00,1005.0067138671875,10.847556,10847.556 +7210,2025-03-07T21:38:50.236716-08:00,1005.0488891601562,10.853295,10853.295 +7211,2025-03-07T21:39:01.084599-08:00,1005.00390625,10.847883,10847.883 +7212,2025-03-07T21:39:11.928050-08:00,1005.05029296875,10.843451,10843.451 +7213,2025-03-07T21:39:22.773483-08:00,1005.05029296875,10.845433,10845.433 +7214,2025-03-07T21:39:33.621726-08:00,1005.052734375,10.848243,10848.243 +7215,2025-03-07T21:39:44.479515-08:00,1005.048583984375,10.857789,10857.789 +7216,2025-03-07T21:39:55.327412-08:00,1005.0287475585938,10.847897,10847.897 +7217,2025-03-07T21:40:06.179163-08:00,1005.0353393554688,10.851751,10851.751 +7218,2025-03-07T21:40:17.033053-08:00,1005.0521240234375,10.85389,10853.89 +7219,2025-03-07T21:40:27.876475-08:00,1005.0440673828125,10.843422,10843.422 +7220,2025-03-07T21:40:38.724466-08:00,1005.0321655273438,10.847991,10847.991 +7221,2025-03-07T21:40:49.583474-08:00,1005.03466796875,10.859008,10859.008 +7222,2025-03-07T21:41:00.432659-08:00,1005.0214233398438,10.849185,10849.185 +7223,2025-03-07T21:41:11.270595-08:00,1005.0225219726562,10.837936,10837.936 +7224,2025-03-07T21:41:22.116022-08:00,1005.0513916015625,10.845427,10845.427 +7225,2025-03-07T21:41:32.973576-08:00,1005.0304565429688,10.857554,10857.554 +7226,2025-03-07T21:41:43.814309-08:00,1005.0250244140625,10.840733,10840.733 +7227,2025-03-07T21:41:54.668521-08:00,1005.0250244140625,10.854212,10854.212 +7228,2025-03-07T21:42:05.525004-08:00,1005.020751953125,10.856483,10856.483 +7229,2025-03-07T21:42:16.376738-08:00,1005.03955078125,10.851734,10851.734 +7230,2025-03-07T21:42:27.231529-08:00,1005.0354614257812,10.854791,10854.791 +7231,2025-03-07T21:42:38.081612-08:00,1005.0287475585938,10.850083,10850.083 +7232,2025-03-07T21:42:48.928467-08:00,1005.0089111328125,10.846855,10846.855 +7233,2025-03-07T21:42:59.788725-08:00,1005.0420532226562,10.860258,10860.258 +7234,2025-03-07T21:43:10.630955-08:00,1005.0601806640625,10.84223,10842.23 +7235,2025-03-07T21:43:21.481022-08:00,1005.0298461914062,10.850067,10850.067 +7236,2025-03-07T21:43:32.328198-08:00,1005.0455322265625,10.847176,10847.176 +7237,2025-03-07T21:43:43.183052-08:00,1005.06787109375,10.854854,10854.854 +7238,2025-03-07T21:43:54.030682-08:00,1005.0215454101562,10.84763,10847.63 +7239,2025-03-07T21:44:04.874610-08:00,1005.0281372070312,10.843928,10843.928 +7240,2025-03-07T21:44:15.728095-08:00,1005.0253295898438,10.853485,10853.485 +7241,2025-03-07T21:44:26.575475-08:00,1005.0198364257812,10.84738,10847.38 +7242,2025-03-07T21:44:37.430386-08:00,1004.9908447265625,10.854911,10854.911 +7243,2025-03-07T21:44:48.276597-08:00,1005.006591796875,10.846211,10846.211 +7244,2025-03-07T21:44:59.133513-08:00,1005.0487670898438,10.856916,10856.916 +7245,2025-03-07T21:45:09.981470-08:00,1004.9866943359375,10.847957,10847.957 +7246,2025-03-07T21:45:20.828453-08:00,1005.0100708007812,10.846983,10846.983 +7247,2025-03-07T21:45:31.679612-08:00,1004.9982299804688,10.851159,10851.159 +7248,2025-03-07T21:45:42.518793-08:00,1005.0100708007812,10.839181,10839.181 +7249,2025-03-07T21:45:53.368456-08:00,1005.0181274414062,10.849663,10849.663 +7250,2025-03-07T21:46:04.215778-08:00,1005.0191650390625,10.847322,10847.322 +7251,2025-03-07T21:46:15.064643-08:00,1004.9982299804688,10.848865,10848.865 +7252,2025-03-07T21:46:25.906545-08:00,1004.9860229492188,10.841902,10841.902 +7253,2025-03-07T21:46:36.758831-08:00,1005.0125122070312,10.852286,10852.286 +7254,2025-03-07T21:46:47.610774-08:00,1005.0204467773438,10.851943,10851.943 +7255,2025-03-07T21:46:58.461502-08:00,1004.9742431640625,10.850728,10850.728 +7256,2025-03-07T21:47:09.307852-08:00,1004.9940795898438,10.84635,10846.35 +7257,2025-03-07T21:47:20.163474-08:00,1005.0031127929688,10.855622,10855.622 +7258,2025-03-07T21:47:31.008746-08:00,1005.001708984375,10.845272,10845.272 +7259,2025-03-07T21:47:41.860614-08:00,1004.9832763671875,10.851868,10851.868 +7260,2025-03-07T21:47:52.703476-08:00,1004.9620361328125,10.842862,10842.862 +7261,2025-03-07T21:48:03.545694-08:00,1004.955322265625,10.842218,10842.218 +7262,2025-03-07T21:48:14.398515-08:00,1004.969970703125,10.852821,10852.821 +7263,2025-03-07T21:48:25.248818-08:00,1004.9843139648438,10.850303,10850.303 +7264,2025-03-07T21:48:36.095483-08:00,1004.9989013671875,10.846665,10846.665 +7265,2025-03-07T21:48:46.948626-08:00,1004.9790649414062,10.853143,10853.143 +7266,2025-03-07T21:48:57.794805-08:00,1004.9337768554688,10.846179,10846.179 +7267,2025-03-07T21:49:08.646955-08:00,1004.985595703125,10.85215,10852.15 +7268,2025-03-07T21:49:19.491577-08:00,1004.9550170898438,10.844622,10844.622 +7269,2025-03-07T21:49:30.338109-08:00,1004.9826049804688,10.846532,10846.532 +7270,2025-03-07T21:49:41.185072-08:00,1004.9906005859375,10.846963,10846.963 +7271,2025-03-07T21:49:52.038015-08:00,1004.9640502929688,10.852943,10852.943 +7272,2025-03-07T21:50:02.875638-08:00,1004.95751953125,10.837623,10837.623 +7273,2025-03-07T21:50:13.732032-08:00,1004.98388671875,10.856394,10856.394 +7274,2025-03-07T21:50:24.574932-08:00,1004.949462890625,10.8429,10842.9 +7275,2025-03-07T21:50:35.424744-08:00,1004.970703125,10.849812,10849.812 +7276,2025-03-07T21:50:46.272471-08:00,1004.9891967773438,10.847727,10847.727 +7277,2025-03-07T21:50:57.117737-08:00,1004.98388671875,10.845266,10845.266 +7278,2025-03-07T21:51:07.965475-08:00,1004.9906005859375,10.847738,10847.738 +7279,2025-03-07T21:51:18.812719-08:00,1004.9891967773438,10.847244,10847.244 +7280,2025-03-07T21:51:29.662555-08:00,1004.9815063476562,10.849836,10849.836 +7281,2025-03-07T21:51:40.517709-08:00,1004.974853515625,10.855154,10855.154 +7282,2025-03-07T21:51:51.365776-08:00,1004.9815063476562,10.848067,10848.067 +7283,2025-03-07T21:52:02.206605-08:00,1005.006591796875,10.840829,10840.829 +7284,2025-03-07T21:52:13.057713-08:00,1004.9923706054688,10.851108,10851.108 +7285,2025-03-07T21:52:23.911161-08:00,1005.0133056640625,10.853448,10853.448 +7286,2025-03-07T21:52:34.765471-08:00,1005.0264892578125,10.85431,10854.31 +7287,2025-03-07T21:52:45.604117-08:00,1005.0264892578125,10.838646,10838.646 +7288,2025-03-07T21:52:56.450210-08:00,1005.01220703125,10.846093,10846.093 +7289,2025-03-07T21:53:07.295773-08:00,1005.0452880859375,10.845563,10845.563 +7290,2025-03-07T21:53:18.144640-08:00,1005.0596313476562,10.848867,10848.867 +7291,2025-03-07T21:53:28.991479-08:00,1005.0306396484375,10.846839,10846.839 +7292,2025-03-07T21:53:39.835666-08:00,1005.065185546875,10.844187,10844.187 +7293,2025-03-07T21:53:50.684470-08:00,1005.050537109375,10.848804,10848.804 +7294,2025-03-07T21:54:01.532601-08:00,1005.0836181640625,10.848131,10848.131 +7295,2025-03-07T21:54:12.369801-08:00,1005.0836181640625,10.8372,10837.2 +7296,2025-03-07T21:54:23.213754-08:00,1005.0470581054688,10.843953,10843.953 +7297,2025-03-07T21:54:34.062565-08:00,1005.0703735351562,10.848811,10848.811 +7298,2025-03-07T21:54:44.912337-08:00,1005.09033203125,10.849772,10849.772 +7299,2025-03-07T21:54:55.761452-08:00,1005.1314086914062,10.849115,10849.115 +7300,2025-03-07T21:55:06.613739-08:00,1005.0850219726562,10.852287,10852.287 +7301,2025-03-07T21:55:17.453805-08:00,1005.1101684570312,10.840066,10840.066 +7302,2025-03-07T21:55:28.313695-08:00,1005.1257934570312,10.85989,10859.89 +7303,2025-03-07T21:55:39.151817-08:00,1005.1101684570312,10.838122,10838.122 +7304,2025-03-07T21:55:49.996475-08:00,1005.1325073242188,10.844658,10844.658 +7305,2025-03-07T21:56:00.846472-08:00,1005.1404418945312,10.849997,10849.997 +7306,2025-03-07T21:56:11.698916-08:00,1005.1390380859375,10.852444,10852.444 +7307,2025-03-07T21:56:22.544471-08:00,1005.12060546875,10.845555,10845.555 +7308,2025-03-07T21:56:33.398002-08:00,1005.177734375,10.853531,10853.531 +7309,2025-03-07T21:56:44.238481-08:00,1005.124755859375,10.840479,10840.479 +7310,2025-03-07T21:56:55.086137-08:00,1005.16552734375,10.847656,10847.656 +7311,2025-03-07T21:57:05.929509-08:00,1005.137939453125,10.843372,10843.372 +7312,2025-03-07T21:57:16.776475-08:00,1005.15234375,10.846966,10846.966 +7313,2025-03-07T21:57:27.625888-08:00,1005.1338500976562,10.849413,10849.413 +7314,2025-03-07T21:57:38.469815-08:00,1005.158935546875,10.843927,10843.927 +7315,2025-03-07T21:57:49.312897-08:00,1005.1404418945312,10.843082,10843.082 +7316,2025-03-07T21:58:00.155747-08:00,1005.173583984375,10.84285,10842.85 +7317,2025-03-07T21:58:10.993591-08:00,1005.1415405273438,10.837844,10837.844 +7318,2025-03-07T21:58:21.840463-08:00,1005.163818359375,10.846872,10846.872 +7319,2025-03-07T21:58:32.682709-08:00,1005.123046875,10.842246,10842.246 +7320,2025-03-07T21:58:43.537623-08:00,1005.1693725585938,10.854914,10854.914 +7321,2025-03-07T21:58:54.381746-08:00,1005.1875,10.844123,10844.123 +7322,2025-03-07T21:59:05.226647-08:00,1005.1729736328125,10.844901,10844.901 +7323,2025-03-07T21:59:16.069594-08:00,1005.201904296875,10.842947,10842.947 +7324,2025-03-07T21:59:26.902386-08:00,1005.1875,10.832792,10832.792 +7325,2025-03-07T21:59:37.745758-08:00,1005.201904296875,10.843372,10843.372 +7326,2025-03-07T21:59:48.588664-08:00,1005.1952514648438,10.842906,10842.906 +7327,2025-03-07T21:59:59.425471-08:00,1005.2283325195312,10.836807,10836.807 +7328,2025-03-07T22:00:10.269619-08:00,1005.2084350585938,10.844148,10844.148 +7329,2025-03-07T22:00:21.116454-08:00,1005.1885986328125,10.846835,10846.835 +7330,2025-03-07T22:00:31.960269-08:00,1005.240478515625,10.843815,10843.815 +7331,2025-03-07T22:00:42.802467-08:00,1005.1994018554688,10.842198,10842.198 +7332,2025-03-07T22:00:53.653251-08:00,1005.1652221679688,10.850784,10850.784 +7333,2025-03-07T22:01:04.488754-08:00,1005.1969604492188,10.835503,10835.503 +7334,2025-03-07T22:01:15.337499-08:00,1005.177001953125,10.848745,10848.745 +7335,2025-03-07T22:01:26.187245-08:00,1005.2025146484375,10.849746,10849.746 +7336,2025-03-07T22:01:37.027475-08:00,1005.20361328125,10.84023,10840.23 +7337,2025-03-07T22:01:47.869455-08:00,1005.2050170898438,10.84198,10841.98 +7338,2025-03-07T22:01:58.716479-08:00,1005.2091674804688,10.847024,10847.024 +7339,2025-03-07T22:02:09.556861-08:00,1005.176025390625,10.840382,10840.382 +7340,2025-03-07T22:02:20.402852-08:00,1005.173583984375,10.845991,10845.991 +7341,2025-03-07T22:02:31.244466-08:00,1005.1669311523438,10.841614,10841.614 +7342,2025-03-07T22:02:42.087722-08:00,1005.16796875,10.843256,10843.256 +7343,2025-03-07T22:02:52.926288-08:00,1005.2025146484375,10.838566,10838.566 +7344,2025-03-07T22:03:03.768470-08:00,1005.1404418945312,10.842182,10842.182 +7345,2025-03-07T22:03:14.603565-08:00,1005.186767578125,10.835095,10835.095 +7346,2025-03-07T22:03:25.451465-08:00,1005.1537475585938,10.8479,10847.9 +7347,2025-03-07T22:03:36.292019-08:00,1005.16552734375,10.840554,10840.554 +7348,2025-03-07T22:03:47.134681-08:00,1005.1456909179688,10.842662,10842.662 +7349,2025-03-07T22:03:57.982855-08:00,1005.161376953125,10.848174,10848.174 +7350,2025-03-07T22:04:08.816792-08:00,1005.1934204101562,10.833937,10833.937 +7351,2025-03-07T22:04:19.652472-08:00,1005.158935546875,10.83568,10835.68 +7352,2025-03-07T22:04:30.494712-08:00,1005.15234375,10.84224,10842.24 +7353,2025-03-07T22:04:41.334813-08:00,1005.1578979492188,10.840101,10840.101 +7354,2025-03-07T22:04:52.177476-08:00,1005.1920166015625,10.842663,10842.663 +7355,2025-03-07T22:05:03.020090-08:00,1005.1578979492188,10.842614,10842.614 +7356,2025-03-07T22:05:13.862472-08:00,1005.124755859375,10.842382,10842.382 +7357,2025-03-07T22:05:24.700490-08:00,1005.169677734375,10.838018,10838.018 +7358,2025-03-07T22:05:35.608811-08:00,1005.154052734375,10.908321,10908.321 +7359,2025-03-07T22:05:46.451072-08:00,1005.17529296875,10.842261,10842.261 +7360,2025-03-07T22:05:57.294338-08:00,1005.16064453125,10.843266,10843.266 +7361,2025-03-07T22:06:08.136348-08:00,1005.1951293945312,10.84201,10842.01 +7362,2025-03-07T22:06:18.969872-08:00,1005.1464233398438,10.833524,10833.524 +7363,2025-03-07T22:06:29.816038-08:00,1005.1515502929688,10.846166,10846.166 +7364,2025-03-07T22:06:40.649342-08:00,1005.1781005859375,10.833304,10833.304 +7365,2025-03-07T22:06:51.486913-08:00,1005.158203125,10.837571,10837.571 +7366,2025-03-07T22:07:02.330281-08:00,1005.1613159179688,10.843368,10843.368 +7367,2025-03-07T22:07:13.179496-08:00,1005.162353515625,10.849215,10849.215 +7368,2025-03-07T22:07:24.011337-08:00,1005.146728515625,10.831841,10831.841 +7369,2025-03-07T22:07:34.853491-08:00,1005.1665649414062,10.842154,10842.154 +7370,2025-03-07T22:07:45.700644-08:00,1005.1732177734375,10.847153,10847.153 +7371,2025-03-07T22:07:56.546508-08:00,1005.1521606445312,10.845864,10845.864 +7372,2025-03-07T22:08:07.377593-08:00,1005.172119140625,10.831085,10831.085 +7373,2025-03-07T22:08:18.220944-08:00,1005.1511840820312,10.843351,10843.351 +7374,2025-03-07T22:08:29.064363-08:00,1005.1665649414062,10.843419,10843.419 +7375,2025-03-07T22:08:39.905339-08:00,1005.137939453125,10.840976,10840.976 +7376,2025-03-07T22:08:50.737349-08:00,1005.1578369140625,10.83201,10832.01 +7377,2025-03-07T22:09:01.576921-08:00,1005.1665649414062,10.839572,10839.572 +7378,2025-03-07T22:09:12.424385-08:00,1005.18115234375,10.847464,10847.464 +7379,2025-03-07T22:09:23.269453-08:00,1005.2220458984375,10.845068,10845.068 +7380,2025-03-07T22:09:34.110380-08:00,1005.1878051757812,10.840927,10840.927 +7381,2025-03-07T22:09:44.943619-08:00,1005.1878051757812,10.833239,10833.239 +7382,2025-03-07T22:09:55.785348-08:00,1005.2129516601562,10.841729,10841.729 +7383,2025-03-07T22:10:06.627419-08:00,1005.1986083984375,10.842071,10842.071 +7384,2025-03-07T22:10:17.465451-08:00,1005.2062377929688,10.838032,10838.032 +7385,2025-03-07T22:10:28.303441-08:00,1005.185302734375,10.83799,10837.99 +7386,2025-03-07T22:10:39.140447-08:00,1005.2129516601562,10.837006,10837.006 +7387,2025-03-07T22:10:49.978687-08:00,1005.1798706054688,10.83824,10838.24 +7388,2025-03-07T22:11:00.815347-08:00,1005.1930541992188,10.83666,10836.66 +7389,2025-03-07T22:11:11.651321-08:00,1005.2062377929688,10.835974,10835.974 +7390,2025-03-07T22:11:22.493339-08:00,1005.2062377929688,10.842018,10842.018 +7391,2025-03-07T22:11:33.335053-08:00,1005.2474365234375,10.841714,10841.714 +7392,2025-03-07T22:11:44.167495-08:00,1005.2407836914062,10.832442,10832.442 +7393,2025-03-07T22:11:55.001704-08:00,1005.2352294921875,10.834209,10834.209 +7394,2025-03-07T22:12:05.843918-08:00,1005.2376708984375,10.842214,10842.214 +7395,2025-03-07T22:12:16.677500-08:00,1005.2457275390625,10.833582,10833.582 +7396,2025-03-07T22:12:27.517350-08:00,1005.2390747070312,10.83985,10839.85 +7397,2025-03-07T22:12:38.352741-08:00,1005.2324829101562,10.835391,10835.391 +7398,2025-03-07T22:12:49.190344-08:00,1005.2509155273438,10.837603,10837.603 +7399,2025-03-07T22:13:00.023947-08:00,1005.2509155273438,10.833603,10833.603 +7400,2025-03-07T22:13:10.870215-08:00,1005.2324829101562,10.846268,10846.268 +7401,2025-03-07T22:13:21.712343-08:00,1005.25341796875,10.842128,10842.128 +7402,2025-03-07T22:13:32.550323-08:00,1005.2614135742188,10.83798,10837.98 +7403,2025-03-07T22:13:43.396350-08:00,1005.2614135742188,10.846027,10846.027 +7404,2025-03-07T22:13:54.237646-08:00,1005.2481079101562,10.841296,10841.296 +7405,2025-03-07T22:14:05.086613-08:00,1005.2614135742188,10.848967,10848.967 +7406,2025-03-07T22:14:15.929346-08:00,1005.2425537109375,10.842733,10842.733 +7407,2025-03-07T22:14:26.760855-08:00,1005.217529296875,10.831509,10831.509 +7408,2025-03-07T22:14:37.604333-08:00,1005.2425537109375,10.843478,10843.478 +7409,2025-03-07T22:14:48.443325-08:00,1005.2770385742188,10.838992,10838.992 +7410,2025-03-07T22:14:59.289344-08:00,1005.2704467773438,10.846019,10846.019 +7411,2025-03-07T22:15:10.129350-08:00,1005.2439575195312,10.840006,10840.006 +7412,2025-03-07T22:15:20.963654-08:00,1005.2240600585938,10.834304,10834.304 +7413,2025-03-07T22:15:31.803340-08:00,1005.2638549804688,10.839686,10839.686 +7414,2025-03-07T22:15:42.651310-08:00,1005.2506103515625,10.84797,10847.97 +7415,2025-03-07T22:15:53.488410-08:00,1005.2359619140625,10.8371,10837.1 +7416,2025-03-07T22:16:04.336789-08:00,1005.2318115234375,10.848379,10848.379 +7417,2025-03-07T22:16:15.178348-08:00,1005.2425537109375,10.841559,10841.559 +7418,2025-03-07T22:16:26.014351-08:00,1005.2108764648438,10.836003,10836.003 +7419,2025-03-07T22:16:36.859665-08:00,1005.2373657226562,10.845314,10845.314 +7420,2025-03-07T22:16:47.690606-08:00,1005.2293701171875,10.830941,10830.941 +7421,2025-03-07T22:16:58.537528-08:00,1005.217529296875,10.846922,10846.922 +7422,2025-03-07T22:17:09.380350-08:00,1005.2132568359375,10.842822,10842.822 +7423,2025-03-07T22:17:20.218621-08:00,1005.217529296875,10.838271,10838.271 +7424,2025-03-07T22:17:31.056555-08:00,1005.2251586914062,10.837934,10837.934 +7425,2025-03-07T22:17:41.906546-08:00,1005.2384643554688,10.849991,10849.991 +7426,2025-03-07T22:17:52.740602-08:00,1005.19091796875,10.834056,10834.056 +7427,2025-03-07T22:18:03.582665-08:00,1005.16552734375,10.842063,10842.063 +7428,2025-03-07T22:18:14.425335-08:00,1005.19091796875,10.84267,10842.67 +7429,2025-03-07T22:18:25.258101-08:00,1005.1986694335938,10.832766,10832.766 +7430,2025-03-07T22:18:36.101979-08:00,1005.217529296875,10.843878,10843.878 +7431,2025-03-07T22:18:46.945397-08:00,1005.1843872070312,10.843418,10843.418 +7432,2025-03-07T22:18:57.787348-08:00,1005.2265625,10.841951,10841.951 +7433,2025-03-07T22:19:08.630338-08:00,1005.177734375,10.84299,10842.99 +7434,2025-03-07T22:19:19.478562-08:00,1005.169677734375,10.848224,10848.224 +7435,2025-03-07T22:19:30.321820-08:00,1005.1763916015625,10.843258,10843.258 +7436,2025-03-07T22:19:41.165937-08:00,1005.1763916015625,10.844117,10844.117 +7437,2025-03-07T22:19:51.997557-08:00,1005.19091796875,10.83162,10831.62 +7438,2025-03-07T22:20:02.846392-08:00,1005.2307739257812,10.848835,10848.835 +7439,2025-03-07T22:20:13.694666-08:00,1005.2108764648438,10.848274,10848.274 +7440,2025-03-07T22:20:24.544360-08:00,1005.186767578125,10.849694,10849.694 +7441,2025-03-07T22:20:35.393600-08:00,1005.1920166015625,10.84924,10849.24 +7442,2025-03-07T22:20:46.241711-08:00,1005.1986694335938,10.848111,10848.111 +7443,2025-03-07T22:20:57.075342-08:00,1005.1710815429688,10.833631,10833.631 +7444,2025-03-07T22:21:07.926590-08:00,1005.2108764648438,10.851248,10851.248 +7445,2025-03-07T22:21:18.772492-08:00,1005.1962280273438,10.845902,10845.902 +7446,2025-03-07T22:21:21.369487-08:00,1005.2028198242188,2.596995,2596.995 +7447,2025-03-07T22:21:29.618937-08:00,1005.2150268554688,8.24945,8249.45 +7448,2025-03-07T22:21:40.462380-08:00,1005.20703125,10.843443,10843.443 +7449,2025-03-07T22:21:51.310342-08:00,1005.181884765625,10.847962,10847.962 +7450,2025-03-07T22:22:02.152344-08:00,1005.2003784179688,10.842002,10842.002 +7451,2025-03-07T22:22:12.997337-08:00,1005.168701171875,10.844993,10844.993 +7452,2025-03-07T22:22:23.844772-08:00,1005.2017822265625,10.847435,10847.435 +7453,2025-03-07T22:22:34.688677-08:00,1005.1829833984375,10.843905,10843.905 +7454,2025-03-07T22:22:45.542220-08:00,1005.2028198242188,10.853543,10853.543 +7455,2025-03-07T22:22:56.381574-08:00,1005.1620483398438,10.839354,10839.354 +7456,2025-03-07T22:23:07.229816-08:00,1005.2084350585938,10.848242,10848.242 +7457,2025-03-07T22:23:18.082523-08:00,1005.1951293945312,10.852707,10852.707 +7458,2025-03-07T22:23:28.932326-08:00,1005.1885375976562,10.849803,10849.803 +7459,2025-03-07T22:23:39.769677-08:00,1005.2084350585938,10.837351,10837.351 +7460,2025-03-07T22:23:50.624902-08:00,1005.1885375976562,10.855225,10855.225 +7461,2025-03-07T22:24:01.461348-08:00,1005.2017822265625,10.836446,10836.446 +7462,2025-03-07T22:24:12.306787-08:00,1005.2084350585938,10.845439,10845.439 +7463,2025-03-07T22:24:23.154353-08:00,1005.154052734375,10.847566,10847.566 +7464,2025-03-07T22:24:33.991200-08:00,1005.166259765625,10.836847,10836.847 +7465,2025-03-07T22:24:44.828888-08:00,1005.1727905273438,10.837688,10837.688 +7466,2025-03-07T22:24:55.681346-08:00,1005.192626953125,10.852458,10852.458 +7467,2025-03-07T22:25:06.520572-08:00,1005.154052734375,10.839226,10839.226 +7468,2025-03-07T22:25:17.368343-08:00,1005.1805419921875,10.847771,10847.771 +7469,2025-03-07T22:25:28.223752-08:00,1005.1596069335938,10.855409,10855.409 +7470,2025-03-07T22:25:39.072815-08:00,1005.179443359375,10.849063,10849.063 +7471,2025-03-07T22:25:49.911635-08:00,1005.1738891601562,10.83882,10838.82 +7472,2025-03-07T22:26:00.757351-08:00,1005.192626953125,10.845716,10845.716 +7473,2025-03-07T22:26:11.609435-08:00,1005.1885375976562,10.852084,10852.084 +7474,2025-03-07T22:26:22.444704-08:00,1005.179443359375,10.835269,10835.269 +7475,2025-03-07T22:26:33.289778-08:00,1005.158203125,10.845074,10845.074 +7476,2025-03-07T22:26:44.136933-08:00,1005.179443359375,10.847155,10847.155 +7477,2025-03-07T22:26:54.978343-08:00,1005.1648559570312,10.84141,10841.41 +7478,2025-03-07T22:27:05.827699-08:00,1005.1781005859375,10.849356,10849.356 +7479,2025-03-07T22:27:16.677348-08:00,1005.1781005859375,10.849649,10849.649 +7480,2025-03-07T22:27:27.518563-08:00,1005.1515502929688,10.841215,10841.215 +7481,2025-03-07T22:27:38.362665-08:00,1005.21923828125,10.844102,10844.102 +7482,2025-03-07T22:27:49.206383-08:00,1005.197998046875,10.843718,10843.718 +7483,2025-03-07T22:28:00.042810-08:00,1005.192626953125,10.836427,10836.427 +7484,2025-03-07T22:28:10.888357-08:00,1005.1648559570312,10.845547,10845.547 +7485,2025-03-07T22:28:21.734091-08:00,1005.1648559570312,10.845734,10845.734 +7486,2025-03-07T22:28:32.585675-08:00,1005.179443359375,10.851584,10851.584 +7487,2025-03-07T22:28:43.422902-08:00,1005.1860961914062,10.837227,10837.227 +7488,2025-03-07T22:28:54.265343-08:00,1005.1994018554688,10.842441,10842.441 +7489,2025-03-07T22:29:05.114347-08:00,1005.2268676757812,10.849004,10849.004 +7490,2025-03-07T22:29:15.951675-08:00,1005.2268676757812,10.837328,10837.328 +7491,2025-03-07T22:29:26.794391-08:00,1005.192626953125,10.842716,10842.716 +7492,2025-03-07T22:29:37.636842-08:00,1005.1648559570312,10.842451,10842.451 +7493,2025-03-07T22:29:48.469656-08:00,1005.192626953125,10.832814,10832.814 +7494,2025-03-07T22:29:59.319954-08:00,1005.166259765625,10.850298,10850.298 +7495,2025-03-07T22:30:10.152609-08:00,1005.1464233398438,10.832655,10832.655 +7496,2025-03-07T22:30:20.997394-08:00,1005.166259765625,10.844785,10844.785 +7497,2025-03-07T22:30:31.840353-08:00,1005.1554565429688,10.842959,10842.959 +7498,2025-03-07T22:30:42.692489-08:00,1005.181884765625,10.852136,10852.136 +7499,2025-03-07T22:30:53.538931-08:00,1005.168701171875,10.846442,10846.442 +7500,2025-03-07T22:31:04.384375-08:00,1005.1233520507812,10.845444,10845.444 +7501,2025-03-07T22:31:15.225451-08:00,1005.205322265625,10.841076,10841.076 +7502,2025-03-07T22:31:26.064393-08:00,1005.1422119140625,10.838942,10838.942 +7503,2025-03-07T22:31:36.914734-08:00,1005.19091796875,10.850341,10850.341 +7504,2025-03-07T22:31:47.761819-08:00,1005.156494140625,10.847085,10847.085 +7505,2025-03-07T22:31:58.609005-08:00,1005.1275024414062,10.847186,10847.186 +7506,2025-03-07T22:32:09.451925-08:00,1005.1422119140625,10.84292,10842.92 +7507,2025-03-07T22:32:20.295342-08:00,1005.11572265625,10.843417,10843.417 +7508,2025-03-07T22:32:31.138339-08:00,1005.11572265625,10.842997,10842.997 +7509,2025-03-07T22:32:41.977011-08:00,1005.111572265625,10.838672,10838.672 +7510,2025-03-07T22:32:52.830255-08:00,1005.1721801757812,10.853244,10853.244 +7511,2025-03-07T22:33:03.672418-08:00,1005.111572265625,10.842163,10842.163 +7512,2025-03-07T22:33:14.517336-08:00,1005.12060546875,10.844918,10844.918 +7513,2025-03-07T22:33:25.354696-08:00,1005.1415405273438,10.83736,10837.36 +7514,2025-03-07T22:33:36.209693-08:00,1005.1560668945312,10.854997,10854.997 +7515,2025-03-07T22:33:47.054866-08:00,1005.1338500976562,10.845173,10845.173 +7516,2025-03-07T22:33:57.904175-08:00,1005.1348266601562,10.849309,10849.309 +7517,2025-03-07T22:34:08.749685-08:00,1005.1481323242188,10.84551,10845.51 +7518,2025-03-07T22:34:19.587494-08:00,1005.1084594726562,10.837809,10837.809 +7519,2025-03-07T22:34:30.434350-08:00,1005.1428833007812,10.846856,10846.856 +7520,2025-03-07T22:34:41.285493-08:00,1005.1453247070312,10.851143,10851.143 +7521,2025-03-07T22:34:52.124762-08:00,1005.1216430664062,10.839269,10839.269 +7522,2025-03-07T22:35:02.965452-08:00,1005.1216430664062,10.84069,10840.69 +7523,2025-03-07T22:35:13.814325-08:00,1005.114990234375,10.848873,10848.873 +7524,2025-03-07T22:35:24.661346-08:00,1005.1428833007812,10.847021,10847.021 +7525,2025-03-07T22:35:35.504762-08:00,1005.150634765625,10.843416,10843.416 +7526,2025-03-07T22:35:46.343524-08:00,1005.1138916015625,10.838762,10838.762 +7527,2025-03-07T22:35:57.197547-08:00,1005.1560668945312,10.854023,10854.023 +7528,2025-03-07T22:36:08.032336-08:00,1005.1693725585938,10.834789,10834.789 +7529,2025-03-07T22:36:29.721772-08:00,1005.1495361328125,21.689436,21689.436 +7530,2025-03-07T22:36:40.562522-08:00,1005.1296997070312,10.84075,10840.75 +7531,2025-03-07T22:36:51.406340-08:00,1005.13623046875,10.843818,10843.818 +7532,2025-03-07T22:37:02.246583-08:00,1005.1826782226562,10.840243,10840.243 +7533,2025-03-07T22:37:13.088431-08:00,1005.1428833007812,10.841848,10841.848 +7534,2025-03-07T22:37:23.923018-08:00,1005.177001953125,10.834587,10834.587 +7535,2025-03-07T22:37:34.757703-08:00,1005.1826782226562,10.834685,10834.685 +7536,2025-03-07T22:37:45.599667-08:00,1005.177001953125,10.841964,10841.964 +7537,2025-03-07T22:37:56.449843-08:00,1005.176025390625,10.850176,10850.176 +7538,2025-03-07T22:38:07.290347-08:00,1005.20361328125,10.840504,10840.504 +7539,2025-03-07T22:38:18.129327-08:00,1005.1746826171875,10.83898,10838.98 +7540,2025-03-07T22:38:28.971632-08:00,1005.16455078125,10.842305,10842.305 +7541,2025-03-07T22:38:39.809315-08:00,1005.2042236328125,10.837683,10837.683 +7542,2025-03-07T22:38:50.655594-08:00,1005.1673583984375,10.846279,10846.279 +7543,2025-03-07T22:39:01.497343-08:00,1005.1846923828125,10.841749,10841.749 +7544,2025-03-07T22:39:12.338447-08:00,1005.1798706054688,10.841104,10841.104 +7545,2025-03-07T22:39:23.175862-08:00,1005.169677734375,10.837415,10837.415 +7546,2025-03-07T22:39:34.014400-08:00,1005.195068359375,10.838538,10838.538 +7547,2025-03-07T22:39:44.858598-08:00,1005.1504516601562,10.844198,10844.198 +7548,2025-03-07T22:39:55.704672-08:00,1005.185302734375,10.846074,10846.074 +7549,2025-03-07T22:40:06.542538-08:00,1005.1880493164062,10.837866,10837.866 +7550,2025-03-07T22:40:17.374571-08:00,1005.18701171875,10.832033,10832.033 +7551,2025-03-07T22:40:28.218397-08:00,1005.1765747070312,10.843826,10843.826 +7552,2025-03-07T22:40:39.054524-08:00,1005.2008666992188,10.836127,10836.127 +7553,2025-03-07T22:40:49.886347-08:00,1005.197021484375,10.831823,10831.823 +7554,2025-03-07T22:41:00.719384-08:00,1005.219970703125,10.833037,10833.037 +7555,2025-03-07T22:41:11.560889-08:00,1005.2042236328125,10.841505,10841.505 +7556,2025-03-07T22:41:22.391350-08:00,1005.2095336914062,10.830461,10830.461 +7557,2025-03-07T22:41:33.236675-08:00,1005.19384765625,10.845325,10845.325 +7558,2025-03-07T22:41:44.067343-08:00,1005.196533203125,10.830668,10830.668 +7559,2025-03-07T22:41:54.904472-08:00,1005.2139892578125,10.837129,10837.129 +7560,2025-03-07T22:42:05.748605-08:00,1005.2261962890625,10.844133,10844.133 +7561,2025-03-07T22:42:16.579346-08:00,1005.1972045898438,10.830741,10830.741 +7562,2025-03-07T22:42:27.423343-08:00,1005.20556640625,10.843997,10843.997 +7563,2025-03-07T22:42:38.261737-08:00,1005.181884765625,10.838394,10838.394 +7564,2025-03-07T22:42:49.091685-08:00,1005.1741333007812,10.829948,10829.948 +7565,2025-03-07T22:42:59.936341-08:00,1005.2232666015625,10.844656,10844.656 +7566,2025-03-07T22:43:10.772490-08:00,1005.1876831054688,10.836149,10836.149 +7567,2025-03-07T22:43:21.621037-08:00,1005.1852416992188,10.848547,10848.547 +7568,2025-03-07T22:43:32.452348-08:00,1005.2070922851562,10.831311,10831.311 +7569,2025-03-07T22:43:43.291335-08:00,1005.2269287109375,10.838987,10838.987 +7570,2025-03-07T22:43:54.117340-08:00,1005.2178955078125,10.826005,10826.005 +7571,2025-03-07T22:44:15.796831-08:00,1005.2050170898438,21.679491,21679.491 +7572,2025-03-07T22:44:26.630345-08:00,1005.2039184570312,10.833514,10833.514 +7573,2025-03-07T22:44:37.471343-08:00,1005.2237548828125,10.840998,10840.998 +7574,2025-03-07T22:44:48.308936-08:00,1005.2265014648438,10.837593,10837.593 +7575,2025-03-07T22:44:59.147340-08:00,1005.2254638671875,10.838404,10838.404 +7576,2025-03-07T22:45:09.980724-08:00,1005.1964721679688,10.833384,10833.384 +7577,2025-03-07T22:45:20.811394-08:00,1005.232666015625,10.83067,10830.67 +7578,2025-03-07T22:45:31.642336-08:00,1005.2179565429688,10.830942,10830.942 +7579,2025-03-07T22:45:42.485393-08:00,1005.1771850585938,10.843057,10843.057 +7580,2025-03-07T22:45:53.318347-08:00,1005.2078247070312,10.832954,10832.954 +7581,2025-03-07T22:46:04.153630-08:00,1005.17236328125,10.835283,10835.283 +7582,2025-03-07T22:46:14.985697-08:00,1005.185546875,10.832067,10832.067 +7583,2025-03-07T22:46:25.830336-08:00,1005.1962280273438,10.844639,10844.639 +7584,2025-03-07T22:46:36.660349-08:00,1005.1763916015625,10.830013,10830.013 +7585,2025-03-07T22:46:47.502752-08:00,1005.185791015625,10.842403,10842.403 +7586,2025-03-07T22:46:58.328508-08:00,1005.17919921875,10.825756,10825.756 +7587,2025-03-07T22:47:09.167691-08:00,1005.20458984375,10.839183,10839.183 +7588,2025-03-07T22:47:19.998749-08:00,1005.196533203125,10.831058,10831.058 +7589,2025-03-07T22:47:30.832350-08:00,1005.19970703125,10.833601,10833.601 +7590,2025-03-07T22:47:41.668726-08:00,1005.1919555664062,10.836376,10836.376 +7591,2025-03-07T22:47:52.503616-08:00,1005.19970703125,10.83489,10834.89 +7592,2025-03-07T22:48:03.332656-08:00,1005.182861328125,10.82904,10829.04 +7593,2025-03-07T22:48:14.168558-08:00,1005.1814575195312,10.835902,10835.902 +7594,2025-03-07T22:48:25.013258-08:00,1005.2068481445312,10.8447,10844.7 +7595,2025-03-07T22:48:35.843653-08:00,1005.2054443359375,10.830395,10830.395 +7596,2025-03-07T22:48:46.681343-08:00,1005.1856079101562,10.83769,10837.69 +7597,2025-03-07T22:48:57.519371-08:00,1005.209716796875,10.838028,10838.028 +7598,2025-03-07T22:49:08.357529-08:00,1005.177978515625,10.838158,10838.158 +7599,2025-03-07T22:49:19.180621-08:00,1005.2137451171875,10.823092,10823.092 +7600,2025-03-07T22:49:30.015687-08:00,1005.1796264648438,10.835066,10835.066 +7601,2025-03-07T22:49:40.856385-08:00,1005.212646484375,10.840698,10840.698 +7602,2025-03-07T22:49:51.694587-08:00,1005.2391967773438,10.838202,10838.202 +7603,2025-03-07T22:50:02.536566-08:00,1005.2168579101562,10.841979,10841.979 +7604,2025-03-07T22:50:13.364343-08:00,1005.2011108398438,10.827777,10827.777 +7605,2025-03-07T22:50:24.202123-08:00,1005.193115234375,10.83778,10837.78 +7606,2025-03-07T22:50:35.038679-08:00,1005.1997680664062,10.836556,10836.556 +7607,2025-03-07T22:50:45.873427-08:00,1005.205322265625,10.834748,10834.748 +7608,2025-03-07T22:50:56.713575-08:00,1005.22265625,10.840148,10840.148 +7609,2025-03-07T22:51:07.551808-08:00,1005.1804809570312,10.838233,10838.233 +7610,2025-03-07T22:51:18.381321-08:00,1005.2282104492188,10.829513,10829.513 +7611,2025-03-07T22:51:29.217556-08:00,1005.2177124023438,10.836235,10836.235 +7612,2025-03-07T22:51:40.057635-08:00,1005.2034301757812,10.840079,10840.079 +7613,2025-03-07T22:51:50.898695-08:00,1005.20751953125,10.84106,10841.06 +7614,2025-03-07T22:52:01.738399-08:00,1005.20751953125,10.839704,10839.704 +7615,2025-03-07T22:52:12.574612-08:00,1005.1876831054688,10.836213,10836.213 +7616,2025-03-07T22:52:23.411636-08:00,1005.1771850585938,10.837024,10837.024 +7617,2025-03-07T22:52:34.250420-08:00,1005.2036743164062,10.838784,10838.784 +7618,2025-03-07T22:52:45.082683-08:00,1005.2157592773438,10.832263,10832.263 +7619,2025-03-07T22:52:55.924342-08:00,1005.2144775390625,10.841659,10841.659 +7620,2025-03-07T22:53:06.746784-08:00,1005.1777954101562,10.822442,10822.442 +7621,2025-03-07T22:53:17.581575-08:00,1005.1854858398438,10.834791,10834.791 +7622,2025-03-07T22:53:28.422075-08:00,1005.1830444335938,10.8405,10840.5 +7623,2025-03-07T22:53:39.268394-08:00,1005.2084350585938,10.846319,10846.319 +7624,2025-03-07T22:53:50.100633-08:00,1005.2059326171875,10.832239,10832.239 +7625,2025-03-07T22:54:00.932552-08:00,1005.2156372070312,10.831919,10831.919 +7626,2025-03-07T22:54:11.770439-08:00,1005.18359375,10.837887,10837.887 +7627,2025-03-07T22:54:22.605571-08:00,1005.200927734375,10.835132,10835.132 +7628,2025-03-07T22:54:33.438325-08:00,1005.2274169921875,10.832754,10832.754 +7629,2025-03-07T22:54:44.277094-08:00,1005.2040405273438,10.838769,10838.769 +7630,2025-03-07T22:54:55.111451-08:00,1005.2371215820312,10.834357,10834.357 +7631,2025-03-07T22:55:05.953300-08:00,1005.20263671875,10.841849,10841.849 +7632,2025-03-07T22:55:16.781353-08:00,1005.2279663085938,10.828053,10828.053 +7633,2025-03-07T22:55:27.629853-08:00,1005.27294921875,10.8485,10848.5 +7634,2025-03-07T22:55:38.456855-08:00,1005.2718505859375,10.827002,10827.002 +7635,2025-03-07T22:55:49.301059-08:00,1005.2850952148438,10.844204,10844.204 +7636,2025-03-07T22:56:00.128467-08:00,1005.2954711914062,10.827408,10827.408 +7637,2025-03-07T22:56:10.970901-08:00,1005.2467041015625,10.842434,10842.434 +7638,2025-03-07T22:56:21.800342-08:00,1005.260009765625,10.829441,10829.441 +7639,2025-03-07T22:56:32.642342-08:00,1005.26513671875,10.842,10842.0 +7640,2025-03-07T22:56:43.474650-08:00,1005.3037719726562,10.832308,10832.308 +7641,2025-03-07T22:56:54.315333-08:00,1005.262939453125,10.840683,10840.683 +7642,2025-03-07T22:57:05.149338-08:00,1005.2762451171875,10.834005,10834.005 +7643,2025-03-07T22:57:15.982842-08:00,1005.2737426757812,10.833504,10833.504 +7644,2025-03-07T22:57:26.815566-08:00,1005.306884765625,10.832724,10832.724 +7645,2025-03-07T22:57:37.658342-08:00,1005.3054809570312,10.842776,10842.776 +7646,2025-03-07T22:57:48.496086-08:00,1005.2778930664062,10.837744,10837.744 +7647,2025-03-07T22:57:59.327584-08:00,1005.2687377929688,10.831498,10831.498 +7648,2025-03-07T22:58:10.168345-08:00,1005.2820434570312,10.840761,10840.761 +7649,2025-03-07T22:58:20.995346-08:00,1005.2993774414062,10.827001,10827.001 +7650,2025-03-07T22:58:31.833347-08:00,1005.2979736328125,10.838001,10838.001 +7651,2025-03-07T22:58:42.668648-08:00,1005.275634765625,10.835301,10835.301 +7652,2025-03-07T22:58:53.500816-08:00,1005.275634765625,10.832168,10832.168 +7653,2025-03-07T22:59:04.340346-08:00,1005.3062744140625,10.83953,10839.53 +7654,2025-03-07T22:59:15.176955-08:00,1005.311767578125,10.836609,10836.609 +7655,2025-03-07T22:59:26.020392-08:00,1005.2971801757812,10.843437,10843.437 +7656,2025-03-07T22:59:36.864594-08:00,1005.309326171875,10.844202,10844.202 +7657,2025-03-07T22:59:47.695634-08:00,1005.2792358398438,10.83104,10831.04 +7658,2025-03-07T22:59:58.536410-08:00,1005.2859497070312,10.840776,10840.776 +7659,2025-03-07T23:00:09.369375-08:00,1005.275390625,10.832965,10832.965 +7660,2025-03-07T23:00:20.208307-08:00,1005.30078125,10.838932,10838.932 +7661,2025-03-07T23:00:31.054500-08:00,1005.296875,10.846193,10846.193 +7662,2025-03-07T23:00:41.887895-08:00,1005.2982788085938,10.833395,10833.395 +7663,2025-03-07T23:00:52.726348-08:00,1005.2811889648438,10.838453,10838.453 +7664,2025-03-07T23:01:03.553459-08:00,1005.2943725585938,10.827111,10827.111 +7665,2025-03-07T23:01:14.396349-08:00,1005.2761840820312,10.84289,10842.89 +7666,2025-03-07T23:01:25.225917-08:00,1005.2803344726562,10.829568,10829.568 +7667,2025-03-07T23:01:36.059344-08:00,1005.2737426757812,10.833427,10833.427 +7668,2025-03-07T23:01:46.895347-08:00,1005.2847900390625,10.836003,10836.003 +7669,2025-03-07T23:01:57.731458-08:00,1005.2965698242188,10.836111,10836.111 +7670,2025-03-07T23:02:08.564346-08:00,1005.2874755859375,10.832888,10832.888 +7671,2025-03-07T23:02:19.399617-08:00,1005.286376953125,10.835271,10835.271 +7672,2025-03-07T23:02:30.233504-08:00,1005.3169555664062,10.833887,10833.887 +7673,2025-03-07T23:02:41.064484-08:00,1005.3064575195312,10.83098,10830.98 +7674,2025-03-07T23:02:51.897772-08:00,1005.28662109375,10.833288,10833.288 +7675,2025-03-07T23:03:02.722922-08:00,1005.3161010742188,10.82515,10825.15 +7676,2025-03-07T23:03:13.559344-08:00,1005.2937622070312,10.836422,10836.422 +7677,2025-03-07T23:03:24.397346-08:00,1005.325439453125,10.838002,10838.002 +7678,2025-03-07T23:03:35.226675-08:00,1005.2965698242188,10.829329,10829.329 +7679,2025-03-07T23:03:46.062745-08:00,1005.2587280273438,10.83607,10836.07 +7680,2025-03-07T23:03:56.892726-08:00,1005.2706298828125,10.829981,10829.981 +7681,2025-03-07T23:04:07.722345-08:00,1005.2879638671875,10.829619,10829.619 +7682,2025-03-07T23:04:18.545712-08:00,1005.2945556640625,10.823367,10823.367 +7683,2025-03-07T23:04:29.386472-08:00,1005.2645263671875,10.84076,10840.76 +7684,2025-03-07T23:04:40.208856-08:00,1005.3082885742188,10.822384,10822.384 +7685,2025-03-07T23:04:51.040340-08:00,1005.2728271484375,10.831484,10831.484 +7686,2025-03-07T23:05:01.871380-08:00,1005.2703247070312,10.83104,10831.04 +7687,2025-03-07T23:05:12.703363-08:00,1005.2664184570312,10.831983,10831.983 +7688,2025-03-07T23:05:23.535351-08:00,1005.2862548828125,10.831988,10831.988 +7689,2025-03-07T23:05:34.406687-08:00,1005.2760009765625,10.871336,10871.336 +7690,2025-03-07T23:05:45.236969-08:00,1005.2801513671875,10.830282,10830.282 +7691,2025-03-07T23:05:56.065533-08:00,1005.2567138671875,10.828564,10828.564 +7692,2025-03-07T23:06:06.885970-08:00,1005.2698974609375,10.820437,10820.437 +7693,2025-03-07T23:06:17.721036-08:00,1005.2384643554688,10.835066,10835.066 +7694,2025-03-07T23:06:28.549119-08:00,1005.2792358398438,10.828083,10828.083 +7695,2025-03-07T23:06:39.378792-08:00,1005.2412719726562,10.829673,10829.673 +7696,2025-03-07T23:06:50.211182-08:00,1005.286376953125,10.83239,10832.39 +7697,2025-03-07T23:07:01.043410-08:00,1005.26513671875,10.832228,10832.228 +7698,2025-03-07T23:07:11.877087-08:00,1005.260498046875,10.833677,10833.677 +7699,2025-03-07T23:07:22.703493-08:00,1005.273681640625,10.826406,10826.406 +7700,2025-03-07T23:07:33.536956-08:00,1005.2896118164062,10.833463,10833.463 +7701,2025-03-07T23:07:44.370557-08:00,1005.2606201171875,10.833601,10833.601 +7702,2025-03-07T23:07:55.199970-08:00,1005.2240600585938,10.829413,10829.413 +7703,2025-03-07T23:08:06.025972-08:00,1005.255615234375,10.826002,10826.002 +7704,2025-03-07T23:08:16.859259-08:00,1005.2333374023438,10.833287,10833.287 +7705,2025-03-07T23:08:27.685978-08:00,1005.2371826171875,10.826719,10826.719 +7706,2025-03-07T23:08:38.515951-08:00,1005.2523193359375,10.829973,10829.973 +7707,2025-03-07T23:08:49.348979-08:00,1005.2431030273438,10.833028,10833.028 +7708,2025-03-07T23:09:00.173910-08:00,1005.247314453125,10.824931,10824.931 +7709,2025-03-07T23:09:11.005834-08:00,1005.2290649414062,10.831924,10831.924 +7710,2025-03-07T23:09:21.844333-08:00,1005.2515869140625,10.838499,10838.499 +7711,2025-03-07T23:09:32.673968-08:00,1005.2306518554688,10.829635,10829.635 +7712,2025-03-07T23:09:43.492330-08:00,1005.213623046875,10.818362,10818.362 +7713,2025-03-07T23:09:54.328980-08:00,1005.2242431640625,10.83665,10836.65 +7714,2025-03-07T23:10:05.160446-08:00,1005.2562255859375,10.831466,10831.466 +7715,2025-03-07T23:10:15.990445-08:00,1005.2723999023438,10.829999,10829.999 +7716,2025-03-07T23:10:26.816173-08:00,1005.2698974609375,10.825728,10825.728 +7717,2025-03-07T23:10:37.644963-08:00,1005.2806396484375,10.82879,10828.79 +7718,2025-03-07T23:10:48.479365-08:00,1005.2871704101562,10.834402,10834.402 +7719,2025-03-07T23:10:59.310965-08:00,1005.2874145507812,10.8316,10831.6 +7720,2025-03-07T23:11:10.135256-08:00,1005.3005981445312,10.824291,10824.291 +7721,2025-03-07T23:11:20.975155-08:00,1005.3035888671875,10.839899,10839.899 +7722,2025-03-07T23:11:31.799310-08:00,1005.3010864257812,10.824155,10824.155 +7723,2025-03-07T23:11:42.627952-08:00,1005.3052368164062,10.828642,10828.642 +7724,2025-03-07T23:11:53.457975-08:00,1005.2843017578125,10.830023,10830.023 +7725,2025-03-07T23:12:04.290094-08:00,1005.3082885742188,10.832119,10832.119 +7726,2025-03-07T23:12:15.117963-08:00,1005.29248046875,10.827869,10827.869 +7727,2025-03-07T23:12:25.954969-08:00,1005.309814453125,10.837006,10837.006 +7728,2025-03-07T23:12:36.780974-08:00,1005.307373046875,10.826005,10826.005 +7729,2025-03-07T23:12:47.612511-08:00,1005.2849731445312,10.831537,10831.537 +7730,2025-03-07T23:12:58.432979-08:00,1005.3009643554688,10.820468,10820.468 +7731,2025-03-07T23:13:09.265134-08:00,1005.28515625,10.832155,10832.155 +7732,2025-03-07T23:13:20.096335-08:00,1005.2881469726562,10.831201,10831.201 +7733,2025-03-07T23:13:30.929320-08:00,1005.30029296875,10.832985,10832.985 +7734,2025-03-07T23:13:41.758978-08:00,1005.2592163085938,10.829658,10829.658 +7735,2025-03-07T23:13:52.596828-08:00,1005.2977294921875,10.83785,10837.85 +7736,2025-03-07T23:14:03.420956-08:00,1005.2740478515625,10.824128,10824.128 +7737,2025-03-07T23:14:14.248522-08:00,1005.28857421875,10.827566,10827.566 +7738,2025-03-07T23:14:25.076006-08:00,1005.251708984375,10.827484,10827.484 +7739,2025-03-07T23:14:35.918226-08:00,1005.2770385742188,10.84222,10842.22 +7740,2025-03-07T23:14:46.747983-08:00,1005.2968139648438,10.829757,10829.757 +7741,2025-03-07T23:14:57.576500-08:00,1005.2731323242188,10.828517,10828.517 +7742,2025-03-07T23:15:08.406088-08:00,1005.2970581054688,10.829588,10829.588 +7743,2025-03-07T23:15:19.233978-08:00,1005.28125,10.82789,10827.89 +7744,2025-03-07T23:15:30.049963-08:00,1005.2471923828125,10.815985,10815.985 +7745,2025-03-07T23:15:40.879265-08:00,1005.264404296875,10.829302,10829.302 +7746,2025-03-07T23:15:51.709982-08:00,1005.2765502929688,10.830717,10830.717 +7747,2025-03-07T23:16:02.537085-08:00,1005.2329711914062,10.827103,10827.103 +7748,2025-03-07T23:16:13.359213-08:00,1005.2029418945312,10.822128,10822.128 +7749,2025-03-07T23:16:24.188052-08:00,1005.2492065429688,10.828839,10828.839 +7750,2025-03-07T23:16:35.021083-08:00,1005.239990234375,10.833031,10833.031 +7751,2025-03-07T23:16:45.859305-08:00,1005.23095703125,10.838222,10838.222 +7752,2025-03-07T23:16:56.690314-08:00,1005.224365234375,10.831009,10831.009 +7753,2025-03-07T23:17:07.514324-08:00,1005.2072143554688,10.82401,10824.01 +7754,2025-03-07T23:17:18.353168-08:00,1005.2523193359375,10.838844,10838.844 +7755,2025-03-07T23:17:29.177377-08:00,1005.2354736328125,10.824209,10824.209 +7756,2025-03-07T23:17:40.016879-08:00,1005.247314453125,10.839502,10839.502 +7757,2025-03-07T23:17:50.837227-08:00,1005.2263793945312,10.820348,10820.348 +7758,2025-03-07T23:18:01.669014-08:00,1005.2157592773438,10.831787,10831.787 +7759,2025-03-07T23:18:12.500962-08:00,1005.233154296875,10.831948,10831.948 +7760,2025-03-07T23:18:23.331992-08:00,1005.2518920898438,10.83103,10831.03 +7761,2025-03-07T23:18:34.163208-08:00,1005.249267578125,10.831216,10831.216 +7762,2025-03-07T23:18:44.996355-08:00,1005.2244262695312,10.833147,10833.147 +7763,2025-03-07T23:18:55.823071-08:00,1005.2442016601562,10.826716,10826.716 +7764,2025-03-07T23:19:06.648923-08:00,1005.2623291015625,10.825852,10825.852 +7765,2025-03-07T23:19:17.477175-08:00,1005.244384765625,10.828252,10828.252 +7766,2025-03-07T23:19:28.306570-08:00,1005.2352905273438,10.829395,10829.395 +7767,2025-03-07T23:19:39.137340-08:00,1005.2511596679688,10.83077,10830.77 +7768,2025-03-07T23:19:49.961111-08:00,1005.2420043945312,10.823771,10823.771 +7769,2025-03-07T23:20:00.791159-08:00,1005.267333984375,10.830048,10830.048 +7770,2025-03-07T23:20:11.622590-08:00,1005.267333984375,10.831431,10831.431 +7771,2025-03-07T23:20:22.457964-08:00,1005.2542724609375,10.835374,10835.374 +7772,2025-03-07T23:20:33.282581-08:00,1005.2242431640625,10.824617,10824.617 +7773,2025-03-07T23:20:44.117471-08:00,1005.236328125,10.83489,10834.89 +7774,2025-03-07T23:20:54.952969-08:00,1005.2125854492188,10.835498,10835.498 +7775,2025-03-07T23:21:05.786054-08:00,1005.24560546875,10.833085,10833.085 +7776,2025-03-07T23:21:16.617156-08:00,1005.2365112304688,10.831102,10831.102 +7777,2025-03-07T23:21:27.444200-08:00,1005.2207641601562,10.827044,10827.044 +7778,2025-03-07T23:21:38.273977-08:00,1005.1984252929688,10.829777,10829.777 +7779,2025-03-07T23:21:49.112316-08:00,1005.2079467773438,10.838339,10838.339 +7780,2025-03-07T23:21:59.938979-08:00,1005.227783203125,10.826663,10826.663 +7781,2025-03-07T23:22:10.776316-08:00,1005.1974487304688,10.837337,10837.337 +7782,2025-03-07T23:22:21.593979-08:00,1005.2095336914062,10.817663,10817.663 +7783,2025-03-07T23:22:32.429514-08:00,1005.2150268554688,10.835535,10835.535 +7784,2025-03-07T23:22:43.258969-08:00,1005.2125244140625,10.829455,10829.455 +7785,2025-03-07T23:22:54.081244-08:00,1005.175537109375,10.822275,10822.275 +7786,2025-03-07T23:23:04.911980-08:00,1005.1876831054688,10.830736,10830.736 +7787,2025-03-07T23:23:26.570130-08:00,1005.2048950195312,21.65815,21658.15 +7788,2025-03-07T23:23:37.399228-08:00,1005.2420043945312,10.829098,10829.098 +7789,2025-03-07T23:23:59.065172-08:00,1005.2171630859375,21.665944,21665.944 +7790,2025-03-07T23:24:09.889988-08:00,1005.248779296875,10.824816,10824.816 +7791,2025-03-07T23:24:20.717924-08:00,1005.2461547851562,10.827936,10827.936 +7792,2025-03-07T23:24:31.536980-08:00,1005.2373657226562,10.819056,10819.056 +7793,2025-03-07T23:24:42.371287-08:00,1005.267822265625,10.834307,10834.307 +7794,2025-03-07T23:24:53.194157-08:00,1005.2521362304688,10.82287,10822.87 +7795,2025-03-07T23:25:04.023200-08:00,1005.2429809570312,10.829043,10829.043 +7796,2025-03-07T23:25:14.846965-08:00,1005.2338256835938,10.823765,10823.765 +7797,2025-03-07T23:25:25.685146-08:00,1005.2298583984375,10.838181,10838.181 +7798,2025-03-07T23:25:36.507111-08:00,1005.2365112304688,10.821965,10821.965 +7799,2025-03-07T23:25:47.332211-08:00,1005.26171875,10.8251,10825.1 +7800,2025-03-07T23:25:58.164149-08:00,1005.2801513671875,10.831938,10831.938 +7801,2025-03-07T23:26:08.982034-08:00,1005.2501831054688,10.817885,10817.885 +7802,2025-03-07T23:26:19.814231-08:00,1005.2608032226562,10.832197,10832.197 +7803,2025-03-07T23:26:30.635430-08:00,1005.2318725585938,10.821199,10821.199 +7804,2025-03-07T23:26:41.462002-08:00,1005.2490844726562,10.826572,10826.572 +7805,2025-03-07T23:26:52.282032-08:00,1005.257080078125,10.82003,10820.03 +7806,2025-03-07T23:27:03.107080-08:00,1005.294189453125,10.825048,10825.048 +7807,2025-03-07T23:27:13.936979-08:00,1005.2374267578125,10.829899,10829.899 +7808,2025-03-07T23:27:24.755234-08:00,1005.2481079101562,10.818255,10818.255 +7809,2025-03-07T23:27:35.579390-08:00,1005.218017578125,10.824156,10824.156 +7810,2025-03-07T23:27:46.402226-08:00,1005.2363891601562,10.822836,10822.836 +7811,2025-03-07T23:27:57.226974-08:00,1005.2195434570312,10.824748,10824.748 +7812,2025-03-07T23:28:08.044232-08:00,1005.2235717773438,10.817258,10817.258 +7813,2025-03-07T23:28:18.873034-08:00,1005.2012329101562,10.828802,10828.802 +7814,2025-03-07T23:28:29.700310-08:00,1005.259521484375,10.827276,10827.276 +7815,2025-03-07T23:28:40.516371-08:00,1005.270263671875,10.816061,10816.061 +7816,2025-03-07T23:28:51.343035-08:00,1005.242431640625,10.826664,10826.664 +7817,2025-03-07T23:29:02.161248-08:00,1005.2478637695312,10.818213,10818.213 +7818,2025-03-07T23:29:12.979322-08:00,1005.2597045898438,10.818074,10818.074 +7819,2025-03-07T23:29:23.795499-08:00,1005.2572021484375,10.816177,10816.177 +7820,2025-03-07T23:29:34.620784-08:00,1005.2402954101562,10.825285,10825.285 +7821,2025-03-07T23:29:45.431467-08:00,1005.2256469726562,10.810683,10810.683 +7822,2025-03-07T23:29:56.252238-08:00,1005.2098999023438,10.820771,10820.771 +7823,2025-03-07T23:30:07.072021-08:00,1005.2220458984375,10.819783,10819.783 +7824,2025-03-07T23:30:17.895341-08:00,1005.219482421875,10.82332,10823.32 +7825,2025-03-07T23:30:28.717196-08:00,1005.2089233398438,10.821855,10821.855 +7826,2025-03-07T23:30:39.530960-08:00,1005.2562255859375,10.813764,10813.764 +7827,2025-03-07T23:30:50.346974-08:00,1005.2008666992188,10.816014,10816.014 +7828,2025-03-07T23:31:01.176281-08:00,1005.22607421875,10.829307,10829.307 +7829,2025-03-07T23:31:11.998094-08:00,1005.243408203125,10.821813,10821.813 +7830,2025-03-07T23:31:22.812808-08:00,1005.2341918945312,10.814714,10814.714 +7831,2025-03-07T23:31:33.637956-08:00,1005.231689453125,10.825148,10825.148 +7832,2025-03-07T23:31:44.460026-08:00,1005.2118530273438,10.82207,10822.07 +7833,2025-03-07T23:31:55.279444-08:00,1005.2302856445312,10.819418,10819.418 +7834,2025-03-07T23:32:06.109975-08:00,1005.2123413085938,10.830531,10830.531 +7835,2025-03-07T23:32:16.927937-08:00,1005.2149047851562,10.817962,10817.962 +7836,2025-03-07T23:32:27.759996-08:00,1005.22705078125,10.832059,10832.059 +7837,2025-03-07T23:32:38.571022-08:00,1005.2138061523438,10.811026,10811.026 +7838,2025-03-07T23:32:49.403982-08:00,1005.2112426757812,10.83296,10832.96 +7839,2025-03-07T23:33:00.212975-08:00,1005.2376708984375,10.808993,10808.993 +7840,2025-03-07T23:33:11.037972-08:00,1005.2164306640625,10.824997,10824.997 +7841,2025-03-07T23:33:21.859984-08:00,1005.2351684570312,10.822012,10822.012 +7842,2025-03-07T23:33:32.668539-08:00,1005.2139282226562,10.808555,10808.555 +7843,2025-03-07T23:33:43.491858-08:00,1005.2549438476562,10.823319,10823.319 +7844,2025-03-07T23:33:54.304300-08:00,1005.2457885742188,10.812442,10812.442 +7845,2025-03-07T23:34:05.127314-08:00,1005.2391967773438,10.823014,10823.014 +7846,2025-03-07T23:34:15.947245-08:00,1005.244384765625,10.819931,10819.931 +7847,2025-03-07T23:34:26.765050-08:00,1005.2509155273438,10.817805,10817.805 +7848,2025-03-07T23:34:37.585308-08:00,1005.2681274414062,10.820258,10820.258 +7849,2025-03-07T23:34:48.410209-08:00,1005.2550048828125,10.824901,10824.901 +7850,2025-03-07T23:34:59.219967-08:00,1005.2406005859375,10.809758,10809.758 +7851,2025-03-07T23:35:10.041281-08:00,1005.2340698242188,10.821314,10821.314 +7852,2025-03-07T23:35:20.861031-08:00,1005.25244140625,10.81975,10819.75 +7853,2025-03-07T23:35:31.678977-08:00,1005.2421875,10.817946,10817.946 +7854,2025-03-07T23:35:42.495419-08:00,1005.248779296875,10.816442,10816.442 +7855,2025-03-07T23:35:53.310520-08:00,1005.227783203125,10.815101,10815.101 +7856,2025-03-07T23:36:04.130951-08:00,1005.2462768554688,10.820431,10820.431 +7857,2025-03-07T23:36:14.951120-08:00,1005.28466796875,10.820169,10820.169 +7858,2025-03-07T23:36:25.772147-08:00,1005.2659912109375,10.821027,10821.027 +7859,2025-03-07T23:36:36.585958-08:00,1005.2477416992188,10.813811,10813.811 +7860,2025-03-07T23:36:47.401223-08:00,1005.239990234375,10.815265,10815.265 +7861,2025-03-07T23:36:58.215509-08:00,1005.2572021484375,10.814286,10814.286 +7862,2025-03-07T23:37:09.035554-08:00,1005.2745361328125,10.820045,10820.045 +7863,2025-03-07T23:37:19.849045-08:00,1005.2796630859375,10.813491,10813.491 +7864,2025-03-07T23:37:30.676018-08:00,1005.2730712890625,10.826973,10826.973 +7865,2025-03-07T23:37:41.492450-08:00,1005.31005859375,10.816432,10816.432 +7866,2025-03-07T23:37:52.310979-08:00,1005.280029296875,10.818529,10818.529 +7867,2025-03-07T23:38:03.126219-08:00,1005.2840576171875,10.81524,10815.24 +7868,2025-03-07T23:38:13.945247-08:00,1005.302734375,10.819028,10819.028 +7869,2025-03-07T23:38:24.772340-08:00,1005.307861328125,10.827093,10827.093 +7870,2025-03-07T23:38:35.586974-08:00,1005.2672119140625,10.814634,10814.634 +7871,2025-03-07T23:38:46.407267-08:00,1005.2976684570312,10.820293,10820.293 +7872,2025-03-07T23:38:57.225967-08:00,1005.2818603515625,10.8187,10818.7 +7873,2025-03-07T23:39:08.048974-08:00,1005.2804565429688,10.823007,10823.007 +7874,2025-03-07T23:39:18.868972-08:00,1005.2778930664062,10.819998,10819.998 +7875,2025-03-07T23:39:29.682968-08:00,1005.299072265625,10.813996,10813.996 +7876,2025-03-07T23:39:40.496975-08:00,1005.2687377929688,10.814007,10814.007 +7877,2025-03-07T23:39:51.323246-08:00,1005.313720703125,10.826271,10826.271 +7878,2025-03-07T23:40:02.139283-08:00,1005.27685546875,10.816037,10816.037 +7879,2025-03-07T23:40:12.952183-08:00,1005.3350219726562,10.8129,10812.9 +7880,2025-03-07T23:40:23.762019-08:00,1005.2731323242188,10.809836,10809.836 +7881,2025-03-07T23:40:34.578225-08:00,1005.3049926757812,10.816206,10816.206 +7882,2025-03-07T23:40:45.401960-08:00,1005.3695068359375,10.823735,10823.735 +7883,2025-03-07T23:40:56.218231-08:00,1005.3273315429688,10.816271,10816.271 +7884,2025-03-07T23:41:07.036207-08:00,1005.3460083007812,10.817976,10817.976 +7885,2025-03-07T23:41:17.845031-08:00,1005.3577880859375,10.808824,10808.824 +7886,2025-03-07T23:41:28.655158-08:00,1005.302490234375,10.810127,10810.127 +7887,2025-03-07T23:41:39.485962-08:00,1005.302490234375,10.830804,10830.804 +7888,2025-03-07T23:41:50.301217-08:00,1005.3317260742188,10.815255,10815.255 +7889,2025-03-07T23:42:01.123216-08:00,1005.330322265625,10.821999,10821.999 +7890,2025-03-07T23:42:11.948268-08:00,1005.3489990234375,10.825052,10825.052 +7891,2025-03-07T23:42:22.773979-08:00,1005.3739013671875,10.825711,10825.711 +7892,2025-03-07T23:42:33.595023-08:00,1005.359619140625,10.821044,10821.044 +7893,2025-03-07T23:42:44.409977-08:00,1005.3427124023438,10.814954,10814.954 +7894,2025-03-07T23:42:55.231960-08:00,1005.3834228515625,10.821983,10821.983 +7895,2025-03-07T23:43:06.050495-08:00,1005.3731079101562,10.818535,10818.535 +7896,2025-03-07T23:43:16.870478-08:00,1005.3731079101562,10.819983,10819.983 +7897,2025-03-07T23:43:27.689971-08:00,1005.37060546875,10.819493,10819.493 +7898,2025-03-07T23:43:38.511257-08:00,1005.369140625,10.821286,10821.286 +7899,2025-03-07T23:43:49.326984-08:00,1005.3534545898438,10.815727,10815.727 +7900,2025-03-07T23:44:00.145953-08:00,1005.378662109375,10.818969,10818.969 +7901,2025-03-07T23:44:10.967281-08:00,1005.35888671875,10.821328,10821.328 +7902,2025-03-07T23:44:21.786971-08:00,1005.37060546875,10.81969,10819.69 +7903,2025-03-07T23:44:32.616972-08:00,1005.337646484375,10.830001,10830.001 +7904,2025-03-07T23:44:43.439969-08:00,1005.3812255859375,10.822997,10822.997 +7905,2025-03-07T23:44:54.260978-08:00,1005.37353515625,10.821009,10821.009 +7906,2025-03-07T23:45:05.071973-08:00,1005.365478515625,10.810995,10810.995 +7907,2025-03-07T23:45:15.899087-08:00,1005.378662109375,10.827114,10827.114 +7908,2025-03-07T23:45:26.716161-08:00,1005.3827514648438,10.817074,10817.074 +7909,2025-03-07T23:45:37.529973-08:00,1005.353759765625,10.813812,10813.812 +7910,2025-03-07T23:45:48.349074-08:00,1005.3591918945312,10.819101,10819.101 +7911,2025-03-07T23:45:59.171963-08:00,1005.35009765625,10.822889,10822.889 +7912,2025-03-07T23:46:09.988973-08:00,1005.369873046875,10.81701,10817.01 +7913,2025-03-07T23:46:20.801973-08:00,1005.3489990234375,10.813,10813.0 +7914,2025-03-07T23:46:31.625012-08:00,1005.33984375,10.823039,10823.039 +7915,2025-03-07T23:46:42.440960-08:00,1005.3251342773438,10.815948,10815.948 +7916,2025-03-07T23:46:53.265151-08:00,1005.346435546875,10.824191,10824.191 +7917,2025-03-07T23:47:04.075942-08:00,1005.3779907226562,10.810791,10810.791 +7918,2025-03-07T23:47:14.890154-08:00,1005.333251953125,10.814212,10814.212 +7919,2025-03-07T23:47:25.700959-08:00,1005.3544311523438,10.810805,10810.805 +7920,2025-03-07T23:47:36.516207-08:00,1005.3699340820312,10.815248,10815.248 +7921,2025-03-07T23:47:47.333416-08:00,1005.36328125,10.817209,10817.209 +7922,2025-03-07T23:47:58.142293-08:00,1005.346435546875,10.808877,10808.877 +7923,2025-03-07T23:48:08.958974-08:00,1005.37939453125,10.816681,10816.681 +7924,2025-03-07T23:48:19.771179-08:00,1005.372802734375,10.812205,10812.205 +7925,2025-03-07T23:48:30.589607-08:00,1005.3702392578125,10.818428,10818.428 +7926,2025-03-07T23:48:41.395963-08:00,1005.375732421875,10.806356,10806.356 +7927,2025-03-07T23:48:52.203963-08:00,1005.374267578125,10.808,10808.0 +7928,2025-03-07T23:49:03.030992-08:00,1005.3585205078125,10.827029,10827.029 +7929,2025-03-07T23:49:13.840246-08:00,1005.38232421875,10.809254,10809.254 +7930,2025-03-07T23:49:24.655192-08:00,1005.3954467773438,10.814946,10814.946 +7931,2025-03-07T23:49:35.469014-08:00,1005.402099609375,10.813822,10813.822 +7932,2025-03-07T23:49:46.296110-08:00,1005.4141235351562,10.827096,10827.096 +7933,2025-03-07T23:49:57.110973-08:00,1005.3984375,10.814863,10814.863 +7934,2025-03-07T23:50:07.929008-08:00,1005.431396484375,10.818035,10818.035 +7935,2025-03-07T23:50:18.738557-08:00,1005.43798828125,10.809549,10809.549 +7936,2025-03-07T23:50:29.556219-08:00,1005.4142456054688,10.817662,10817.662 +7937,2025-03-07T23:50:40.379975-08:00,1005.4328002929688,10.823756,10823.756 +7938,2025-03-07T23:50:51.198838-08:00,1005.42626953125,10.818863,10818.863 +7939,2025-03-07T23:51:02.016178-08:00,1005.4500122070312,10.81734,10817.34 +7940,2025-03-07T23:51:12.833985-08:00,1005.4210815429688,10.817807,10817.807 +7941,2025-03-07T23:51:23.655979-08:00,1005.4525756835938,10.821994,10821.994 +7942,2025-03-07T23:51:34.476969-08:00,1005.4568481445312,10.82099,10820.99 +7943,2025-03-07T23:51:45.298970-08:00,1005.4423217773438,10.822001,10822.001 +7944,2025-03-07T23:51:56.112970-08:00,1005.4451293945312,10.814,10814.0 +7945,2025-03-07T23:52:06.933314-08:00,1005.4583740234375,10.820344,10820.344 +7946,2025-03-07T23:52:17.747211-08:00,1005.4781494140625,10.813897,10813.897 +7947,2025-03-07T23:52:28.560208-08:00,1005.4701538085938,10.812997,10812.997 +7948,2025-03-07T23:52:39.381009-08:00,1005.482177734375,10.820801,10820.801 +7949,2025-03-07T23:52:50.203438-08:00,1005.4861450195312,10.822429,10822.429 +7950,2025-03-07T23:53:01.023124-08:00,1005.4846801757812,10.819686,10819.686 +7951,2025-03-07T23:53:11.831956-08:00,1005.4913330078125,10.808832,10808.832 +7952,2025-03-07T23:53:22.661462-08:00,1005.4942016601562,10.829506,10829.506 +7953,2025-03-07T23:53:33.477171-08:00,1005.5007934570312,10.815709,10815.709 +7954,2025-03-07T23:53:44.291162-08:00,1005.5059204101562,10.813991,10813.991 +7955,2025-03-07T23:53:55.110752-08:00,1005.4849853515625,10.81959,10819.59 +7956,2025-03-07T23:54:05.927149-08:00,1005.4982299804688,10.816397,10816.397 +7957,2025-03-07T23:54:16.741155-08:00,1005.4879150390625,10.814006,10814.006 +7958,2025-03-07T23:54:27.552329-08:00,1005.4601440429688,10.811174,10811.174 +7959,2025-03-07T23:54:38.367386-08:00,1005.4930419921875,10.815057,10815.057 +7960,2025-03-07T23:54:49.185049-08:00,1005.4498291015625,10.817663,10817.663 +7961,2025-03-07T23:54:59.994978-08:00,1005.4498291015625,10.809929,10809.929 +7962,2025-03-07T23:55:10.815196-08:00,1005.4498291015625,10.820218,10820.218 +7963,2025-03-07T23:55:21.633019-08:00,1005.439208984375,10.817823,10817.823 +7964,2025-03-07T23:55:32.451287-08:00,1005.4578247070312,10.818268,10818.268 +7965,2025-03-07T23:55:43.258490-08:00,1005.4288940429688,10.807203,10807.203 +7966,2025-03-07T23:55:54.073229-08:00,1005.4498291015625,10.814739,10814.739 +7967,2025-03-07T23:56:04.891023-08:00,1005.43408203125,10.817794,10817.794 +7968,2025-03-07T23:56:15.706469-08:00,1005.4447021484375,10.815446,10815.446 +7969,2025-03-07T23:56:26.523978-08:00,1005.414306640625,10.817509,10817.509 +7970,2025-03-07T23:56:37.344968-08:00,1005.4237670898438,10.82099,10820.99 +7971,2025-03-07T23:56:48.163952-08:00,1005.4237670898438,10.818984,10818.984 +7972,2025-03-07T23:56:58.975328-08:00,1005.4288940429688,10.811376,10811.376 +7973,2025-03-07T23:57:09.792972-08:00,1005.4146118164062,10.817644,10817.644 +7974,2025-03-07T23:57:20.607182-08:00,1005.4054565429688,10.81421,10814.21 +7975,2025-03-07T23:57:31.428043-08:00,1005.4306030273438,10.820861,10820.861 +7976,2025-03-07T23:57:42.243123-08:00,1005.409423828125,10.81508,10815.08 +7977,2025-03-07T23:57:53.056359-08:00,1005.4148559570312,10.813236,10813.236 +7978,2025-03-07T23:58:03.860965-08:00,1005.4346923828125,10.804606,10804.606 +7979,2025-03-07T23:58:14.684101-08:00,1005.4254760742188,10.823136,10823.136 +7980,2025-03-07T23:58:25.490980-08:00,1005.4464111328125,10.806879,10806.879 +7981,2025-03-07T23:58:36.298627-08:00,1005.4163208007812,10.807647,10807.647 +7982,2025-03-07T23:58:47.120161-08:00,1005.4082641601562,10.821534,10821.534 +7983,2025-03-07T23:58:57.928471-08:00,1005.4137573242188,10.80831,10808.31 +7984,2025-03-07T23:59:08.742131-08:00,1005.4320068359375,10.81366,10813.66 +7985,2025-03-07T23:59:19.567875-08:00,1005.4111938476562,10.825744,10825.744 +7986,2025-03-07T23:59:30.382339-08:00,1005.4547119140625,10.814464,10814.464 +7987,2025-03-07T23:59:41.202208-08:00,1005.4349365234375,10.819869,10819.869 +7988,2025-03-07T23:59:52.011975-08:00,1005.442626953125,10.809767,10809.767 +7989,2025-03-08T00:00:02.834506-08:00,1005.4202880859375,10.822531,10822.531 +7990,2025-03-08T00:00:13.647976-08:00,1005.392822265625,10.81347,10813.47 +7991,2025-03-08T00:00:24.456141-08:00,1005.4375,10.808165,10808.165 +7992,2025-03-08T00:00:35.269192-08:00,1005.4495239257812,10.813051,10813.051 +7993,2025-03-08T00:00:46.087057-08:00,1005.4349365234375,10.817865,10817.865 +7994,2025-03-08T00:00:56.900312-08:00,1005.4337768554688,10.813255,10813.255 +7995,2025-03-08T00:01:07.710276-08:00,1005.4260864257812,10.809964,10809.964 +7996,2025-03-08T00:01:18.530014-08:00,1005.41943359375,10.819738,10819.738 +7997,2025-03-08T00:01:29.347973-08:00,1005.4246215820312,10.817959,10817.959 +7998,2025-03-08T00:01:40.170276-08:00,1005.4432983398438,10.822303,10822.303 +7999,2025-03-08T00:01:50.984184-08:00,1005.4351806640625,10.813908,10813.908 +8000,2025-03-08T00:02:01.797197-08:00,1005.4746704101562,10.813013,10813.013 +8001,2025-03-08T00:02:12.621561-08:00,1005.3825073242188,10.824364,10824.364 +8002,2025-03-08T00:02:23.436250-08:00,1005.4209594726562,10.814689,10814.689 +8003,2025-03-08T00:02:34.255123-08:00,1005.4447021484375,10.818873,10818.873 +8004,2025-03-08T00:02:45.064984-08:00,1005.4735717773438,10.809861,10809.861 +8005,2025-03-08T00:02:55.877968-08:00,1005.4629516601562,10.812984,10812.984 +8006,2025-03-08T00:03:06.694474-08:00,1005.4947509765625,10.816506,10816.506 +8007,2025-03-08T00:03:17.508300-08:00,1005.46435546875,10.813826,10813.826 +8008,2025-03-08T00:03:28.325034-08:00,1005.4500732421875,10.816734,10816.734 +8009,2025-03-08T00:03:39.138198-08:00,1005.4617919921875,10.813164,10813.164 +8010,2025-03-08T00:03:49.951979-08:00,1005.4486083984375,10.813781,10813.781 +8011,2025-03-08T00:04:00.766279-08:00,1005.4698486328125,10.8143,10814.3 +8012,2025-03-08T00:04:11.589116-08:00,1005.4698486328125,10.822837,10822.837 +8013,2025-03-08T00:04:22.402978-08:00,1005.4617919921875,10.813862,10813.862 +8014,2025-03-08T00:04:33.221505-08:00,1005.4763793945312,10.818527,10818.527 +8015,2025-03-08T00:04:44.031054-08:00,1005.46435546875,10.809549,10809.549 +8016,2025-03-08T00:04:54.857045-08:00,1005.4763793945312,10.825991,10825.991 +8017,2025-03-08T00:05:05.666216-08:00,1005.4500732421875,10.809171,10809.171 +8018,2025-03-08T00:05:16.481213-08:00,1005.484130859375,10.814997,10814.997 +8019,2025-03-08T00:05:27.300990-08:00,1005.484130859375,10.819777,10819.777 +8020,2025-03-08T00:05:38.087932-08:00,1005.4829711914062,10.786942,10786.942 +8021,2025-03-08T00:05:48.913888-08:00,1005.4368896484375,10.825956,10825.956 +8022,2025-03-08T00:05:59.721069-08:00,1005.4552612304688,10.807181,10807.181 +8023,2025-03-08T00:06:10.548091-08:00,1005.4500732421875,10.827022,10827.022 +8024,2025-03-08T00:06:21.350888-08:00,1005.4657592773438,10.802797,10802.797 +8025,2025-03-08T00:06:32.170115-08:00,1005.5013427734375,10.819227,10819.227 +8026,2025-03-08T00:06:42.986087-08:00,1005.4449462890625,10.815972,10815.972 +8027,2025-03-08T00:06:53.799761-08:00,1005.5382690429688,10.813674,10813.674 +8028,2025-03-08T00:07:04.609216-08:00,1005.5053100585938,10.809455,10809.455 +8029,2025-03-08T00:07:15.428887-08:00,1005.5030517578125,10.819671,10819.671 +8030,2025-03-08T00:07:26.238882-08:00,1005.4898681640625,10.809995,10809.995 +8031,2025-03-08T00:07:37.053112-08:00,1005.5162353515625,10.81423,10814.23 +8032,2025-03-08T00:07:47.875325-08:00,1005.520263671875,10.822213,10822.213 +8033,2025-03-08T00:07:58.693035-08:00,1005.5044555664062,10.81771,10817.71 +8034,2025-03-08T00:08:09.503115-08:00,1005.52685546875,10.81008,10810.08 +8035,2025-03-08T00:08:20.322284-08:00,1005.5162353515625,10.819169,10819.169 +8036,2025-03-08T00:08:31.137940-08:00,1005.5216674804688,10.815656,10815.656 +8037,2025-03-08T00:08:41.954875-08:00,1005.5150146484375,10.816935,10816.935 +8038,2025-03-08T00:08:52.768881-08:00,1005.510986328125,10.814006,10814.006 +8039,2025-03-08T00:09:03.587446-08:00,1005.5321655273438,10.818565,10818.565 +8040,2025-03-08T00:09:14.407147-08:00,1005.5230712890625,10.819701,10819.701 +8041,2025-03-08T00:09:25.221888-08:00,1005.5545043945312,10.814741,10814.741 +8042,2025-03-08T00:09:36.037169-08:00,1005.5625610351562,10.815281,10815.281 +8043,2025-03-08T00:09:46.854215-08:00,1005.5599975585938,10.817046,10817.046 +8044,2025-03-08T00:09:57.667287-08:00,1005.52294921875,10.813072,10813.072 +8045,2025-03-08T00:10:08.486944-08:00,1005.56396484375,10.819657,10819.657 +8046,2025-03-08T00:10:19.302216-08:00,1005.5349731445312,10.815272,10815.272 +8047,2025-03-08T00:10:30.111309-08:00,1005.5349731445312,10.809093,10809.093 +8048,2025-03-08T00:10:40.925214-08:00,1005.519287109375,10.813905,10813.905 +8049,2025-03-08T00:10:51.740313-08:00,1005.5628051757812,10.815099,10815.099 +8050,2025-03-08T00:11:02.561119-08:00,1005.5628051757812,10.820806,10820.806 +8051,2025-03-08T00:11:13.374745-08:00,1005.5664672851562,10.813626,10813.626 +8052,2025-03-08T00:11:24.190394-08:00,1005.5192260742188,10.815649,10815.649 +8053,2025-03-08T00:11:35.000207-08:00,1005.545654296875,10.809813,10809.813 +8054,2025-03-08T00:11:45.808890-08:00,1005.5507202148438,10.808683,10808.683 +8055,2025-03-08T00:11:56.615873-08:00,1005.5232543945312,10.806983,10806.983 +8056,2025-03-08T00:12:07.437885-08:00,1005.5086059570312,10.822012,10822.012 +8057,2025-03-08T00:12:18.251515-08:00,1005.574462890625,10.81363,10813.63 +8058,2025-03-08T00:12:29.060350-08:00,1005.5733032226562,10.808835,10808.835 +8059,2025-03-08T00:12:39.867269-08:00,1005.5798950195312,10.806919,10806.919 +8060,2025-03-08T00:12:50.673882-08:00,1005.57080078125,10.806613,10806.613 +8061,2025-03-08T00:13:01.483536-08:00,1005.5154418945312,10.809654,10809.654 +8062,2025-03-08T00:13:12.293884-08:00,1005.5194702148438,10.810348,10810.348 +8063,2025-03-08T00:13:23.104239-08:00,1005.5326538085938,10.810355,10810.355 +8064,2025-03-08T00:13:33.919016-08:00,1005.5443725585938,10.814777,10814.777 +8065,2025-03-08T00:13:44.729599-08:00,1005.5655517578125,10.810583,10810.583 +8066,2025-03-08T00:13:55.545206-08:00,1005.5154418945312,10.815607,10815.607 +8067,2025-03-08T00:14:06.350883-08:00,1005.53515625,10.805677,10805.677 +8068,2025-03-08T00:14:17.161903-08:00,1005.5088500976562,10.81102,10811.02 +8069,2025-03-08T00:14:27.966088-08:00,1005.506591796875,10.804185,10804.185 +8070,2025-03-08T00:14:38.778923-08:00,1005.4907836914062,10.812835,10812.835 +8071,2025-03-08T00:14:49.594191-08:00,1005.5105590820312,10.815268,10815.268 +8072,2025-03-08T00:15:00.404210-08:00,1005.5145263671875,10.810019,10810.019 +8073,2025-03-08T00:15:11.211953-08:00,1005.5079956054688,10.807743,10807.743 +8074,2025-03-08T00:15:22.021876-08:00,1005.5064697265625,10.809923,10809.923 +8075,2025-03-08T00:15:32.840946-08:00,1005.53173828125,10.81907,10819.07 +8076,2025-03-08T00:15:43.655112-08:00,1005.5170288085938,10.814166,10814.166 +8077,2025-03-08T00:15:54.458103-08:00,1005.548828125,10.802991,10802.991 +8078,2025-03-08T00:16:05.280472-08:00,1005.5331420898438,10.822369,10822.369 +8079,2025-03-08T00:16:16.084168-08:00,1005.5250244140625,10.803696,10803.696 +8080,2025-03-08T00:16:26.903890-08:00,1005.555419921875,10.819722,10819.722 +8081,2025-03-08T00:16:37.710107-08:00,1005.5421752929688,10.806217,10806.217 +8082,2025-03-08T00:16:48.528870-08:00,1005.5634155273438,10.818763,10818.763 +8083,2025-03-08T00:16:59.340695-08:00,1005.56591796875,10.811825,10811.825 +8084,2025-03-08T00:17:10.155151-08:00,1005.5516357421875,10.814456,10814.456 +8085,2025-03-08T00:17:20.969878-08:00,1005.5900268554688,10.814727,10814.727 +8086,2025-03-08T00:17:31.778926-08:00,1005.5610961914062,10.809048,10809.048 +8087,2025-03-08T00:17:42.596408-08:00,1005.5584106445312,10.817482,10817.482 +8088,2025-03-08T00:17:53.414900-08:00,1005.566162109375,10.818492,10818.492 +8089,2025-03-08T00:18:04.229890-08:00,1005.5781860351562,10.81499,10814.99 +8090,2025-03-08T00:18:15.037884-08:00,1005.6096801757812,10.807994,10807.994 +8091,2025-03-08T00:18:25.858885-08:00,1005.5953369140625,10.821001,10821.001 +8092,2025-03-08T00:18:36.673833-08:00,1005.6004638671875,10.814948,10814.948 +8093,2025-03-08T00:18:47.488152-08:00,1005.611083984375,10.814319,10814.319 +8094,2025-03-08T00:18:58.292144-08:00,1005.5770263671875,10.803992,10803.992 +8095,2025-03-08T00:19:09.107016-08:00,1005.5809326171875,10.814872,10814.872 +8096,2025-03-08T00:19:19.914889-08:00,1005.5809326171875,10.807873,10807.873 +8097,2025-03-08T00:19:30.732884-08:00,1005.5993041992188,10.817995,10817.995 +8098,2025-03-08T00:19:41.551089-08:00,1005.5505981445312,10.818205,10818.205 +8099,2025-03-08T00:19:52.364031-08:00,1005.5955200195312,10.812942,10812.942 +8100,2025-03-08T00:20:03.171918-08:00,1005.5823364257812,10.807887,10807.887 +8101,2025-03-08T00:20:13.986883-08:00,1005.58642578125,10.814965,10814.965 +8102,2025-03-08T00:20:24.802226-08:00,1005.5995483398438,10.815343,10815.343 +8103,2025-03-08T00:20:35.623234-08:00,1005.57861328125,10.821008,10821.008 +8104,2025-03-08T00:20:46.426033-08:00,1005.583740234375,10.802799,10802.799 +8105,2025-03-08T00:20:57.242884-08:00,1005.5694580078125,10.816851,10816.851 +8106,2025-03-08T00:21:08.056131-08:00,1005.5957641601562,10.813247,10813.247 +8107,2025-03-08T00:21:18.869980-08:00,1005.5800170898438,10.813849,10813.849 +8108,2025-03-08T00:21:29.676059-08:00,1005.5865478515625,10.806079,10806.079 +8109,2025-03-08T00:21:40.489084-08:00,1005.5693969726562,10.813025,10813.025 +8110,2025-03-08T00:21:51.310245-08:00,1005.59716796875,10.821161,10821.161 +8111,2025-03-08T00:22:02.116883-08:00,1005.5798950195312,10.806638,10806.638 +8112,2025-03-08T00:22:12.926093-08:00,1005.5733642578125,10.80921,10809.21 +8113,2025-03-08T00:22:23.733888-08:00,1005.5787353515625,10.807795,10807.795 +8114,2025-03-08T00:22:34.534886-08:00,1005.5509643554688,10.800998,10800.998 +8115,2025-03-08T00:22:45.339881-08:00,1005.5828247070312,10.804995,10804.995 +8116,2025-03-08T00:22:56.154844-08:00,1005.5498657226562,10.814963,10814.963 +8117,2025-03-08T00:23:06.959733-08:00,1005.594482421875,10.804889,10804.889 +8118,2025-03-08T00:23:17.764317-08:00,1005.5801391601562,10.804584,10804.584 +8119,2025-03-08T00:23:28.578249-08:00,1005.5720825195312,10.813932,10813.932 +8120,2025-03-08T00:23:39.390342-08:00,1005.5709228515625,10.812093,10812.093 +8121,2025-03-08T00:23:50.206128-08:00,1005.5761108398438,10.815786,10815.786 +8122,2025-03-08T00:24:01.015197-08:00,1005.5354614257812,10.809069,10809.069 +8123,2025-03-08T00:24:11.824089-08:00,1005.5657958984375,10.808892,10808.892 +8124,2025-03-08T00:24:22.637153-08:00,1005.5778198242188,10.813064,10813.064 +8125,2025-03-08T00:24:33.459104-08:00,1005.5513916015625,10.821951,10821.951 +8126,2025-03-08T00:24:44.269112-08:00,1005.5843505859375,10.810008,10810.008 +8127,2025-03-08T00:24:55.083106-08:00,1005.56201171875,10.813994,10813.994 +8128,2025-03-08T00:25:05.894228-08:00,1005.5671997070312,10.811122,10811.122 +8129,2025-03-08T00:25:16.714269-08:00,1005.56591796875,10.820041,10820.041 +8130,2025-03-08T00:25:27.517891-08:00,1005.5552978515625,10.803622,10803.622 +8131,2025-03-08T00:25:38.327892-08:00,1005.56591796875,10.810001,10810.001 +8132,2025-03-08T00:25:49.139887-08:00,1005.56591796875,10.811995,10811.995 +8133,2025-03-08T00:25:59.951627-08:00,1005.5618896484375,10.81174,10811.74 +8134,2025-03-08T00:26:10.763085-08:00,1005.5804443359375,10.811458,10811.458 +8135,2025-03-08T00:26:21.574550-08:00,1005.5936889648438,10.811465,10811.465 +8136,2025-03-08T00:26:32.391201-08:00,1005.5713500976562,10.816651,10816.651 +8137,2025-03-08T00:26:43.196865-08:00,1005.55810546875,10.805664,10805.664 +8138,2025-03-08T00:26:54.018866-08:00,1005.5424194335938,10.822001,10822.001 +8139,2025-03-08T00:27:04.824883-08:00,1005.5555419921875,10.806017,10806.017 +8140,2025-03-08T00:27:15.643623-08:00,1005.5490112304688,10.81874,10818.74 +8141,2025-03-08T00:27:26.451246-08:00,1005.5595092773438,10.807623,10807.623 +8142,2025-03-08T00:27:37.253281-08:00,1005.5595092773438,10.802035,10802.035 +8143,2025-03-08T00:27:48.062590-08:00,1005.54638671875,10.809309,10809.309 +8144,2025-03-08T00:27:58.879300-08:00,1005.5452270507812,10.81671,10816.71 +8145,2025-03-08T00:28:09.686879-08:00,1005.5635375976562,10.807579,10807.579 +8146,2025-03-08T00:28:20.494881-08:00,1005.5477294921875,10.808002,10808.002 +8147,2025-03-08T00:28:31.303886-08:00,1005.5623168945312,10.809005,10809.005 +8148,2025-03-08T00:28:42.110185-08:00,1005.5714111328125,10.806299,10806.299 +8149,2025-03-08T00:28:52.926240-08:00,1005.5582885742188,10.816055,10816.055 +8150,2025-03-08T00:29:03.736148-08:00,1005.53857421875,10.809908,10809.908 +8151,2025-03-08T00:29:14.552014-08:00,1005.5293579101562,10.815866,10815.866 +8152,2025-03-08T00:29:25.355082-08:00,1005.5282592773438,10.803068,10803.068 +8153,2025-03-08T00:29:36.170143-08:00,1005.5545043945312,10.815061,10815.061 +8154,2025-03-08T00:29:46.971889-08:00,1005.58203125,10.801746,10801.746 +8155,2025-03-08T00:29:57.787877-08:00,1005.565185546875,10.815988,10815.988 +8156,2025-03-08T00:30:08.597220-08:00,1005.5164184570312,10.809343,10809.343 +8157,2025-03-08T00:30:19.406013-08:00,1005.542724609375,10.808793,10808.793 +8158,2025-03-08T00:30:30.218149-08:00,1005.5361938476562,10.812136,10812.136 +8159,2025-03-08T00:30:41.029590-08:00,1005.5477905273438,10.811441,10811.441 +8160,2025-03-08T00:30:51.832877-08:00,1005.5281372070312,10.803287,10803.287 +8161,2025-03-08T00:31:02.642220-08:00,1005.5006103515625,10.809343,10809.343 +8162,2025-03-08T00:31:13.448107-08:00,1005.5057983398438,10.805887,10805.887 +8163,2025-03-08T00:31:24.261937-08:00,1005.52294921875,10.81383,10813.83 +8164,2025-03-08T00:31:35.080152-08:00,1005.509765625,10.818215,10818.215 +8165,2025-03-08T00:31:45.886087-08:00,1005.5689697265625,10.805935,10805.935 +8166,2025-03-08T00:31:56.696943-08:00,1005.5678100585938,10.810856,10810.856 +8167,2025-03-08T00:32:07.516442-08:00,1005.540283203125,10.819499,10819.499 +8168,2025-03-08T00:32:18.319866-08:00,1005.546875,10.803424,10803.424 +8169,2025-03-08T00:32:29.139740-08:00,1005.5574951171875,10.819874,10819.874 +8170,2025-03-08T00:32:39.946241-08:00,1005.5626831054688,10.806501,10806.501 +8171,2025-03-08T00:32:50.765445-08:00,1005.541748046875,10.819204,10819.204 +8172,2025-03-08T00:33:01.573881-08:00,1005.5614013671875,10.808436,10808.436 +8173,2025-03-08T00:33:12.382873-08:00,1005.5731201171875,10.808992,10808.992 +8174,2025-03-08T00:33:23.197887-08:00,1005.5928955078125,10.815014,10815.014 +8175,2025-03-08T00:33:34.010177-08:00,1005.5982666015625,10.81229,10812.29 +8176,2025-03-08T00:33:44.821193-08:00,1005.6231079101562,10.811016,10811.016 +8177,2025-03-08T00:33:55.635090-08:00,1005.615478515625,10.813897,10813.897 +8178,2025-03-08T00:34:06.438362-08:00,1005.602294921875,10.803272,10803.272 +8179,2025-03-08T00:34:17.245859-08:00,1005.6073608398438,10.807497,10807.497 +8180,2025-03-08T00:34:28.061887-08:00,1005.6062622070312,10.816028,10816.028 +8181,2025-03-08T00:34:38.866959-08:00,1005.6259155273438,10.805072,10805.072 +8182,2025-03-08T00:34:49.675038-08:00,1005.5956420898438,10.808079,10808.079 +8183,2025-03-08T00:35:00.488654-08:00,1005.6035766601562,10.813616,10813.616 +8184,2025-03-08T00:35:11.304878-08:00,1005.6021728515625,10.816224,10816.224 +8185,2025-03-08T00:35:22.113648-08:00,1005.6010131835938,10.80877,10808.77 +8186,2025-03-08T00:35:32.921862-08:00,1005.6189575195312,10.808214,10808.214 +8187,2025-03-08T00:35:43.731989-08:00,1005.6387329101562,10.810127,10810.127 +8188,2025-03-08T00:35:54.545222-08:00,1005.6112670898438,10.813233,10813.233 +8189,2025-03-08T00:36:05.354960-08:00,1005.621826171875,10.809738,10809.738 +8190,2025-03-08T00:36:16.158879-08:00,1005.621826171875,10.803919,10803.919 +8191,2025-03-08T00:36:26.972195-08:00,1005.62060546875,10.813316,10813.316 +8192,2025-03-08T00:36:37.788064-08:00,1005.5862426757812,10.815869,10815.869 +8193,2025-03-08T00:36:48.602079-08:00,1005.6060180664062,10.814015,10814.015 +8194,2025-03-08T00:36:59.410877-08:00,1005.57861328125,10.808798,10808.798 +8195,2025-03-08T00:37:10.223024-08:00,1005.6165771484375,10.812147,10812.147 +8196,2025-03-08T00:37:21.025045-08:00,1005.58251953125,10.802021,10802.021 +8197,2025-03-08T00:37:31.832363-08:00,1005.6286010742188,10.807318,10807.318 +8198,2025-03-08T00:37:42.651458-08:00,1005.6138916015625,10.819095,10819.095 +8199,2025-03-08T00:37:53.459278-08:00,1005.6062622070312,10.80782,10807.82 +8200,2025-03-08T00:38:04.270973-08:00,1005.5839233398438,10.811695,10811.695 +8201,2025-03-08T00:38:15.078879-08:00,1005.5970458984375,10.807906,10807.906 +8202,2025-03-08T00:38:25.882120-08:00,1005.568115234375,10.803241,10803.241 +8203,2025-03-08T00:38:36.690970-08:00,1005.566650390625,10.80885,10808.85 +8204,2025-03-08T00:38:47.494871-08:00,1005.58642578125,10.803901,10803.901 +8205,2025-03-08T00:38:58.298962-08:00,1005.583740234375,10.804091,10804.091 +8206,2025-03-08T00:39:09.106124-08:00,1005.598388671875,10.807162,10807.162 +8207,2025-03-08T00:39:19.914923-08:00,1005.6023559570312,10.808799,10808.799 +8208,2025-03-08T00:39:30.719878-08:00,1005.615478515625,10.804955,10804.955 +8209,2025-03-08T00:39:41.523421-08:00,1005.600830078125,10.803543,10803.543 +8210,2025-03-08T00:39:52.338696-08:00,1005.6220092773438,10.815275,10815.275 +8211,2025-03-08T00:40:03.148082-08:00,1005.578857421875,10.809386,10809.386 +8212,2025-03-08T00:40:13.956866-08:00,1005.578857421875,10.808784,10808.784 +8213,2025-03-08T00:40:24.765019-08:00,1005.578857421875,10.808153,10808.153 +8214,2025-03-08T00:40:35.573103-08:00,1005.57080078125,10.808084,10808.084 +8215,2025-03-08T00:40:46.376883-08:00,1005.5839233398438,10.80378,10803.78 +8216,2025-03-08T00:40:57.185878-08:00,1005.5828247070312,10.808995,10808.995 +8217,2025-03-08T00:41:07.989879-08:00,1005.60107421875,10.804001,10804.001 +8218,2025-03-08T00:41:18.811130-08:00,1005.581298828125,10.821251,10821.251 +8219,2025-03-08T00:41:29.617187-08:00,1005.60107421875,10.806057,10806.057 +8220,2025-03-08T00:41:40.417720-08:00,1005.59326171875,10.800533,10800.533 +8221,2025-03-08T00:41:51.226206-08:00,1005.5643920898438,10.808486,10808.486 +8222,2025-03-08T00:42:02.027496-08:00,1005.5775146484375,10.80129,10801.29 +8223,2025-03-08T00:42:12.833170-08:00,1005.5775146484375,10.805674,10805.674 +8224,2025-03-08T00:42:23.640952-08:00,1005.5984497070312,10.807782,10807.782 +8225,2025-03-08T00:42:34.443239-08:00,1005.5801391601562,10.802287,10802.287 +8226,2025-03-08T00:42:45.253134-08:00,1005.6065063476562,10.809895,10809.895 +8227,2025-03-08T00:42:56.063879-08:00,1005.5984497070312,10.810745,10810.745 +8228,2025-03-08T00:43:06.869961-08:00,1005.6065063476562,10.806082,10806.082 +8229,2025-03-08T00:43:17.679173-08:00,1005.5999145507812,10.809212,10809.212 +8230,2025-03-08T00:43:28.488107-08:00,1005.5747680664062,10.808934,10808.934 +8231,2025-03-08T00:43:39.303999-08:00,1005.5904541015625,10.815892,10815.892 +8232,2025-03-08T00:43:50.110150-08:00,1005.578857421875,10.806151,10806.151 +8233,2025-03-08T00:44:00.916162-08:00,1005.59033203125,10.806012,10806.012 +8234,2025-03-08T00:44:11.731872-08:00,1005.6192016601562,10.81571,10815.71 +8235,2025-03-08T00:44:22.539202-08:00,1005.57470703125,10.80733,10807.33 +8236,2025-03-08T00:44:33.350071-08:00,1005.6062622070312,10.810869,10810.869 +8237,2025-03-08T00:44:44.156861-08:00,1005.6165771484375,10.80679,10806.79 +8238,2025-03-08T00:44:54.960867-08:00,1005.5811767578125,10.804006,10804.006 +8239,2025-03-08T00:45:05.767005-08:00,1005.5703125,10.806138,10806.138 +8240,2025-03-08T00:45:16.577036-08:00,1005.62451171875,10.810031,10810.031 +8241,2025-03-08T00:45:27.388761-08:00,1005.587646484375,10.811725,10811.725 +8242,2025-03-08T00:45:38.192322-08:00,1005.5731201171875,10.803561,10803.561 +8243,2025-03-08T00:45:49.013003-08:00,1005.6177978515625,10.820681,10820.681 +8244,2025-03-08T00:45:59.819883-08:00,1005.6007080078125,10.80688,10806.88 +8245,2025-03-08T00:46:10.625075-08:00,1005.59130859375,10.805192,10805.192 +8246,2025-03-08T00:46:21.431921-08:00,1005.5834350585938,10.806846,10806.846 +8247,2025-03-08T00:46:32.235109-08:00,1005.6214599609375,10.803188,10803.188 +8248,2025-03-08T00:46:43.037934-08:00,1005.5900268554688,10.802825,10802.825 +8249,2025-03-08T00:46:53.859663-08:00,1005.6084594726562,10.821729,10821.729 +8250,2025-03-08T00:47:04.662020-08:00,1005.5990600585938,10.802357,10802.357 +8251,2025-03-08T00:47:15.472752-08:00,1005.615966796875,10.810732,10810.732 +8252,2025-03-08T00:47:26.288218-08:00,1005.6160278320312,10.815466,10815.466 +8253,2025-03-08T00:47:37.095038-08:00,1005.619873046875,10.80682,10806.82 +8254,2025-03-08T00:47:47.900159-08:00,1005.6026611328125,10.805121,10805.121 +8255,2025-03-08T00:47:58.708884-08:00,1005.58154296875,10.808725,10808.725 +8256,2025-03-08T00:48:09.512281-08:00,1005.5801391601562,10.803397,10803.397 +8257,2025-03-08T00:48:20.320883-08:00,1005.5828247070312,10.808602,10808.602 +8258,2025-03-08T00:48:31.127956-08:00,1005.607666015625,10.807073,10807.073 +8259,2025-03-08T00:48:41.934049-08:00,1005.5917358398438,10.806093,10806.093 +8260,2025-03-08T00:48:52.746923-08:00,1005.6181030273438,10.812874,10812.874 +8261,2025-03-08T00:49:03.562391-08:00,1005.6442260742188,10.815468,10815.468 +8262,2025-03-08T00:49:14.370935-08:00,1005.6231079101562,10.808544,10808.544 +8263,2025-03-08T00:49:25.175164-08:00,1005.65576171875,10.804229,10804.229 +8264,2025-03-08T00:49:35.984889-08:00,1005.6729736328125,10.809725,10809.725 +8265,2025-03-08T00:49:46.793880-08:00,1005.656982421875,10.808991,10808.991 +8266,2025-03-08T00:49:57.605124-08:00,1005.6541137695312,10.811244,10811.244 +8267,2025-03-08T00:50:08.415882-08:00,1005.6581420898438,10.810758,10810.758 +8268,2025-03-08T00:50:19.229426-08:00,1005.661865234375,10.813544,10813.544 +8269,2025-03-08T00:50:30.039244-08:00,1005.6593627929688,10.809818,10809.818 +8270,2025-03-08T00:50:40.858881-08:00,1005.6500244140625,10.819637,10819.637 +8271,2025-03-08T00:50:51.664872-08:00,1005.6591186523438,10.805991,10805.991 +8272,2025-03-08T00:51:02.477134-08:00,1005.651123046875,10.812262,10812.262 +8273,2025-03-08T00:51:13.275072-08:00,1005.6537475585938,10.797938,10797.938 +8274,2025-03-08T00:51:24.089879-08:00,1005.6431274414062,10.814807,10814.807 +8275,2025-03-08T00:51:34.898881-08:00,1005.6417236328125,10.809002,10809.002 +8276,2025-03-08T00:51:45.715179-08:00,1005.6707153320312,10.816298,10816.298 +8277,2025-03-08T00:51:56.528253-08:00,1005.6681518554688,10.813074,10813.074 +8278,2025-03-08T00:52:07.332880-08:00,1005.671875,10.804627,10804.627 +8279,2025-03-08T00:52:18.146906-08:00,1005.6495361328125,10.814026,10814.026 +8280,2025-03-08T00:52:28.949861-08:00,1005.6257934570312,10.802955,10802.955 +8281,2025-03-08T00:52:39.766873-08:00,1005.62841796875,10.817012,10817.012 +8282,2025-03-08T00:52:50.584114-08:00,1005.6453247070312,10.817241,10817.241 +8283,2025-03-08T00:53:01.386475-08:00,1005.6281127929688,10.802361,10802.361 +8284,2025-03-08T00:53:12.197205-08:00,1005.6504516601562,10.81073,10810.73 +8285,2025-03-08T00:53:23.004887-08:00,1005.6201782226562,10.807682,10807.682 +8286,2025-03-08T00:53:33.824376-08:00,1005.6084594726562,10.819489,10819.489 +8287,2025-03-08T00:53:44.622936-08:00,1005.6041259765625,10.79856,10798.56 +8288,2025-03-08T00:53:55.427191-08:00,1005.606689453125,10.804255,10804.255 +8289,2025-03-08T00:54:06.241009-08:00,1005.6173706054688,10.813818,10813.818 +8290,2025-03-08T00:54:17.042890-08:00,1005.5921630859375,10.801881,10801.881 +8291,2025-03-08T00:54:27.852878-08:00,1005.6235961914062,10.809988,10809.988 +8292,2025-03-08T00:54:38.655931-08:00,1005.6185302734375,10.803053,10803.053 +8293,2025-03-08T00:54:49.466098-08:00,1005.601318359375,10.810167,10810.167 +8294,2025-03-08T00:55:00.289370-08:00,1005.6353759765625,10.823272,10823.272 +8295,2025-03-08T00:55:11.097891-08:00,1005.61279296875,10.808521,10808.521 +8296,2025-03-08T00:55:21.915975-08:00,1005.6087646484375,10.818084,10818.084 +8297,2025-03-08T00:55:32.731715-08:00,1005.591552734375,10.81574,10815.74 +8298,2025-03-08T00:55:43.546193-08:00,1005.5850219726562,10.814478,10814.478 +8299,2025-03-08T00:55:54.353879-08:00,1005.6087646484375,10.807686,10807.686 +8300,2025-03-08T00:56:05.173878-08:00,1005.5982055664062,10.819999,10819.999 +8301,2025-03-08T00:56:15.985016-08:00,1005.599365234375,10.811138,10811.138 +8302,2025-03-08T00:56:26.792083-08:00,1005.6242065429688,10.807067,10807.067 +8303,2025-03-08T00:56:37.600635-08:00,1005.59130859375,10.808552,10808.552 +8304,2025-03-08T00:56:48.409230-08:00,1005.6203002929688,10.808595,10808.595 +8305,2025-03-08T00:56:59.220234-08:00,1005.5873413085938,10.811004,10811.004 +8306,2025-03-08T00:57:10.035013-08:00,1005.5701293945312,10.814779,10814.779 +8307,2025-03-08T00:57:20.848941-08:00,1005.55810546875,10.813928,10813.928 +8308,2025-03-08T00:57:31.662113-08:00,1005.5687255859375,10.813172,10813.172 +8309,2025-03-08T00:57:42.474220-08:00,1005.56982421875,10.812107,10812.107 +8310,2025-03-08T00:57:53.292975-08:00,1005.5778198242188,10.818755,10818.755 +8311,2025-03-08T00:58:04.100026-08:00,1005.5592041015625,10.807051,10807.051 +8312,2025-03-08T00:58:14.921883-08:00,1005.5632934570312,10.821857,10821.857 +8313,2025-03-08T00:58:25.731886-08:00,1005.5829467773438,10.810003,10810.003 +8314,2025-03-08T00:58:36.539432-08:00,1005.588134765625,10.807546,10807.546 +8315,2025-03-08T00:58:47.355400-08:00,1005.5684204101562,10.815968,10815.968 +8316,2025-03-08T00:58:58.157933-08:00,1005.5761108398438,10.802533,10802.533 +8317,2025-03-08T00:59:08.973256-08:00,1005.5853271484375,10.815323,10815.323 +8318,2025-03-08T00:59:19.781100-08:00,1005.6141967773438,10.807844,10807.844 +8319,2025-03-08T00:59:30.596885-08:00,1005.594482421875,10.815785,10815.785 +8320,2025-03-08T00:59:41.412240-08:00,1005.5626831054688,10.815355,10815.355 +8321,2025-03-08T00:59:52.230889-08:00,1005.5839233398438,10.818649,10818.649 +8322,2025-03-08T01:00:03.039964-08:00,1005.510009765625,10.809075,10809.075 +8323,2025-03-08T01:00:13.857696-08:00,1005.5809326171875,10.817732,10817.732 +8324,2025-03-08T01:00:24.663189-08:00,1005.5560913085938,10.805493,10805.493 +8325,2025-03-08T01:00:35.488267-08:00,1005.5770263671875,10.825078,10825.078 +8326,2025-03-08T01:00:46.306969-08:00,1005.599365234375,10.818702,10818.702 +8327,2025-03-08T01:00:57.124881-08:00,1005.55859375,10.817912,10817.912 +8328,2025-03-08T01:01:07.933112-08:00,1005.5809326171875,10.808231,10808.231 +8329,2025-03-08T01:01:18.747443-08:00,1005.6099243164062,10.814331,10814.331 +8330,2025-03-08T01:01:29.567880-08:00,1005.59423828125,10.820437,10820.437 +8331,2025-03-08T01:01:40.388216-08:00,1005.584716796875,10.820336,10820.336 +8332,2025-03-08T01:01:51.196928-08:00,1005.5861206054688,10.808712,10808.712 +8333,2025-03-08T01:02:02.019210-08:00,1005.53857421875,10.822282,10822.282 +8334,2025-03-08T01:02:12.838876-08:00,1005.5953369140625,10.819666,10819.666 +8335,2025-03-08T01:02:23.648888-08:00,1005.5557861328125,10.810012,10810.012 +8336,2025-03-08T01:02:34.468300-08:00,1005.5820922851562,10.819412,10819.412 +8337,2025-03-08T01:02:45.287028-08:00,1005.5778198242188,10.818728,10818.728 +8338,2025-03-08T01:02:56.100874-08:00,1005.5726318359375,10.813846,10813.846 +8339,2025-03-08T01:03:06.911940-08:00,1005.5594482421875,10.811066,10811.066 +8340,2025-03-08T01:03:17.720879-08:00,1005.5594482421875,10.808939,10808.939 +8341,2025-03-08T01:03:28.538158-08:00,1005.6093139648438,10.817279,10817.279 +8342,2025-03-08T01:03:39.350220-08:00,1005.5895385742188,10.812062,10812.062 +8343,2025-03-08T01:03:50.165128-08:00,1005.6026611328125,10.814908,10814.908 +8344,2025-03-08T01:04:00.975890-08:00,1005.5975952148438,10.810762,10810.762 +8345,2025-03-08T01:04:11.791888-08:00,1005.5987548828125,10.815998,10815.998 +8346,2025-03-08T01:04:22.602466-08:00,1005.606689453125,10.810578,10810.578 +8347,2025-03-08T01:04:33.407343-08:00,1005.6144409179688,10.804877,10804.877 +8348,2025-03-08T01:04:44.227866-08:00,1005.6170043945312,10.820523,10820.523 +8349,2025-03-08T01:04:55.042885-08:00,1005.6093139648438,10.815019,10815.019 +8350,2025-03-08T01:05:05.856140-08:00,1005.5972900390625,10.813255,10813.255 +8351,2025-03-08T01:05:16.670862-08:00,1005.6118774414062,10.814722,10814.722 +8352,2025-03-08T01:05:27.477656-08:00,1005.6448364257812,10.806794,10806.794 +8353,2025-03-08T01:05:38.263790-08:00,1005.6129760742188,10.786134,10786.134 +8354,2025-03-08T01:05:49.082891-08:00,1005.6342163085938,10.819101,10819.101 +8355,2025-03-08T01:05:59.888706-08:00,1005.5759887695312,10.805815,10805.815 +8356,2025-03-08T01:06:10.713953-08:00,1005.6090087890625,10.825247,10825.247 +8357,2025-03-08T01:06:21.523821-08:00,1005.6023559570312,10.809868,10809.868 +8358,2025-03-08T01:06:32.336688-08:00,1005.6195068359375,10.812867,10812.867 +8359,2025-03-08T01:06:43.149737-08:00,1005.598388671875,10.813049,10813.049 +8360,2025-03-08T01:06:53.960488-08:00,1005.6195068359375,10.810751,10810.751 +8361,2025-03-08T01:07:04.769705-08:00,1005.6404418945312,10.809217,10809.217 +8362,2025-03-08T01:07:15.585684-08:00,1005.6195068359375,10.815979,10815.979 +8363,2025-03-08T01:07:26.393690-08:00,1005.61669921875,10.808006,10808.006 +8364,2025-03-08T01:07:37.205223-08:00,1005.608642578125,10.811533,10811.533 +8365,2025-03-08T01:07:48.020664-08:00,1005.635009765625,10.815441,10815.441 +8366,2025-03-08T01:07:58.846111-08:00,1005.636474609375,10.825447,10825.447 +8367,2025-03-08T01:08:09.656663-08:00,1005.6243896484375,10.810552,10810.552 +8368,2025-03-08T01:08:20.466006-08:00,1005.623291015625,10.809343,10809.343 +8369,2025-03-08T01:08:31.274821-08:00,1005.635009765625,10.808815,10808.815 +8370,2025-03-08T01:08:42.096865-08:00,1005.623291015625,10.822044,10822.044 +8371,2025-03-08T01:08:52.910949-08:00,1005.61669921875,10.814084,10814.084 +8372,2025-03-08T01:09:03.727680-08:00,1005.6507568359375,10.816731,10816.731 +8373,2025-03-08T01:09:14.545795-08:00,1005.6442260742188,10.818115,10818.115 +8374,2025-03-08T01:09:25.352806-08:00,1005.6654052734375,10.807011,10807.011 +8375,2025-03-08T01:09:36.174987-08:00,1005.6654052734375,10.822181,10822.181 +8376,2025-03-08T01:09:46.995736-08:00,1005.6390380859375,10.820749,10820.749 +8377,2025-03-08T01:09:57.802773-08:00,1005.6548461914062,10.807037,10807.037 +8378,2025-03-08T01:10:08.617662-08:00,1005.6390380859375,10.814889,10814.889 +8379,2025-03-08T01:10:19.439584-08:00,1005.6599731445312,10.821922,10821.922 +8380,2025-03-08T01:10:30.249126-08:00,1005.646728515625,10.809542,10809.542 +8381,2025-03-08T01:10:41.068022-08:00,1005.69287109375,10.818896,10818.896 +8382,2025-03-08T01:10:51.888185-08:00,1005.69580078125,10.820163,10820.163 +8383,2025-03-08T01:11:02.705235-08:00,1005.66796875,10.81705,10817.05 +8384,2025-03-08T01:11:13.517681-08:00,1005.689208984375,10.812446,10812.446 +8385,2025-03-08T01:11:24.343910-08:00,1005.6906127929688,10.826229,10826.229 +8386,2025-03-08T01:11:35.154831-08:00,1005.687744140625,10.810921,10810.921 +8387,2025-03-08T01:11:45.974040-08:00,1005.677490234375,10.819209,10819.209 +8388,2025-03-08T01:11:56.790690-08:00,1005.676025390625,10.81665,10816.65 +8389,2025-03-08T01:12:07.602570-08:00,1005.7048950195312,10.81188,10811.88 +8390,2025-03-08T01:12:18.422109-08:00,1005.703857421875,10.819539,10819.539 +8391,2025-03-08T01:12:29.234057-08:00,1005.717041015625,10.811948,10811.948 +8392,2025-03-08T01:12:40.056737-08:00,1005.6906127929688,10.82268,10822.68 +8393,2025-03-08T01:12:50.866684-08:00,1005.6825561523438,10.809947,10809.947 +8394,2025-03-08T01:13:01.688040-08:00,1005.676025390625,10.821356,10821.356 +8395,2025-03-08T01:13:12.501022-08:00,1005.7023315429688,10.812982,10812.982 +8396,2025-03-08T01:13:23.320681-08:00,1005.68408203125,10.819659,10819.659 +8397,2025-03-08T01:13:34.142062-08:00,1005.68408203125,10.821381,10821.381 +8398,2025-03-08T01:13:44.954018-08:00,1005.69580078125,10.811956,10811.956 +8399,2025-03-08T01:13:55.768094-08:00,1005.6972045898438,10.814076,10814.076 +8400,2025-03-08T01:14:06.587122-08:00,1005.69580078125,10.819028,10819.028 +8401,2025-03-08T01:14:17.412690-08:00,1005.717041015625,10.825568,10825.568 +8402,2025-03-08T01:14:28.228209-08:00,1005.6825561523438,10.815519,10815.519 +8403,2025-03-08T01:14:39.051734-08:00,1005.6906127929688,10.823525,10823.525 +8404,2025-03-08T01:14:49.866860-08:00,1005.7103881835938,10.815126,10815.126 +8405,2025-03-08T01:15:00.682211-08:00,1005.7235717773438,10.815351,10815.351 +8406,2025-03-08T01:15:11.503262-08:00,1005.7023315429688,10.821051,10821.051 +8407,2025-03-08T01:15:22.317902-08:00,1005.703857421875,10.81464,10814.64 +8408,2025-03-08T01:15:33.131712-08:00,1005.703857421875,10.81381,10813.81 +8409,2025-03-08T01:15:43.953034-08:00,1005.715576171875,10.821322,10821.322 +8410,2025-03-08T01:15:54.761685-08:00,1005.7195434570312,10.808651,10808.651 +8411,2025-03-08T01:16:05.581683-08:00,1005.7048950195312,10.819998,10819.998 +8412,2025-03-08T01:16:16.391681-08:00,1005.717041015625,10.809998,10809.998 +8413,2025-03-08T01:16:27.208944-08:00,1005.7140502929688,10.817263,10817.263 +8414,2025-03-08T01:16:38.033763-08:00,1005.7312622070312,10.824819,10824.819 +8415,2025-03-08T01:16:48.838833-08:00,1005.7235717773438,10.80507,10805.07 +8416,2025-03-08T01:16:59.653727-08:00,1005.728759765625,10.814894,10814.894 +8417,2025-03-08T01:17:10.481015-08:00,1005.7103881835938,10.827288,10827.288 +8418,2025-03-08T01:17:21.289684-08:00,1005.7418823242188,10.808669,10808.669 +8419,2025-03-08T01:17:32.111448-08:00,1005.75,10.821764,10821.764 +8420,2025-03-08T01:17:42.925679-08:00,1005.7089233398438,10.814231,10814.231 +8421,2025-03-08T01:17:53.743004-08:00,1005.7312622070312,10.817325,10817.325 +8422,2025-03-08T01:18:04.558230-08:00,1005.7418823242188,10.815226,10815.226 +8423,2025-03-08T01:18:15.380347-08:00,1005.7235717773438,10.822117,10822.117 +8424,2025-03-08T01:18:26.190976-08:00,1005.720703125,10.810629,10810.629 +8425,2025-03-08T01:18:37.005174-08:00,1005.7140502929688,10.814198,10814.198 +8426,2025-03-08T01:18:47.822668-08:00,1005.7089233398438,10.817494,10817.494 +8427,2025-03-08T01:18:58.637690-08:00,1005.70751953125,10.815022,10815.022 +8428,2025-03-08T01:19:09.454685-08:00,1005.7352905273438,10.816995,10816.995 +8429,2025-03-08T01:19:20.269032-08:00,1005.75,10.814347,10814.347 +8430,2025-03-08T01:19:31.087683-08:00,1005.715576171875,10.818651,10818.651 +8431,2025-03-08T01:19:41.899214-08:00,1005.7235717773438,10.811531,10811.531 +8432,2025-03-08T01:19:52.713673-08:00,1005.720703125,10.814459,10814.459 +8433,2025-03-08T01:20:03.529190-08:00,1005.7418823242188,10.815517,10815.517 +8434,2025-03-08T01:20:14.338943-08:00,1005.728759765625,10.809753,10809.753 +8435,2025-03-08T01:20:25.156685-08:00,1005.7352905273438,10.817742,10817.742 +8436,2025-03-08T01:20:35.958997-08:00,1005.753662109375,10.802312,10802.312 +8437,2025-03-08T01:20:46.779679-08:00,1005.7140502929688,10.820682,10820.682 +8438,2025-03-08T01:20:57.585685-08:00,1005.7246704101562,10.806006,10806.006 +8439,2025-03-08T01:21:08.394991-08:00,1005.70751953125,10.809306,10809.306 +8440,2025-03-08T01:21:19.207140-08:00,1005.6995239257812,10.812149,10812.149 +8441,2025-03-08T01:21:30.019685-08:00,1005.7301635742188,10.812545,10812.545 +8442,2025-03-08T01:21:40.838138-08:00,1005.6983642578125,10.818453,10818.453 +8443,2025-03-08T01:21:51.649688-08:00,1005.6917114257812,10.81155,10811.55 +8444,2025-03-08T01:22:02.465121-08:00,1005.7352905273438,10.815433,10815.433 +8445,2025-03-08T01:22:13.280976-08:00,1005.6917114257812,10.815855,10815.855 +8446,2025-03-08T01:22:24.088687-08:00,1005.7390747070312,10.807711,10807.711 +8447,2025-03-08T01:22:34.904089-08:00,1005.7167358398438,10.815402,10815.402 +8448,2025-03-08T01:22:45.724834-08:00,1005.6968994140625,10.820745,10820.745 +8449,2025-03-08T01:22:56.539212-08:00,1005.7023315429688,10.814378,10814.378 +8450,2025-03-08T01:23:07.356923-08:00,1005.6995239257812,10.817711,10817.711 +8451,2025-03-08T01:23:18.164666-08:00,1005.7167358398438,10.807743,10807.743 +8452,2025-03-08T01:23:28.987732-08:00,1005.6917114257812,10.823066,10823.066 +8453,2025-03-08T01:23:39.806028-08:00,1005.6837768554688,10.818296,10818.296 +8454,2025-03-08T01:23:50.616718-08:00,1005.69580078125,10.81069,10810.69 +8455,2025-03-08T01:24:01.435797-08:00,1005.7298583984375,10.819079,10819.079 +8456,2025-03-08T01:24:12.252685-08:00,1005.6771850585938,10.816888,10816.888 +8457,2025-03-08T01:24:23.066683-08:00,1005.661376953125,10.813998,10813.998 +8458,2025-03-08T01:24:33.882831-08:00,1005.708984375,10.816148,10816.148 +8459,2025-03-08T01:24:44.698907-08:00,1005.70751953125,10.816076,10816.076 +8460,2025-03-08T01:24:55.503688-08:00,1005.6943969726562,10.804781,10804.781 +8461,2025-03-08T01:25:06.316689-08:00,1005.6799926757812,10.813001,10813.001 +8462,2025-03-08T01:25:17.123734-08:00,1005.7195434570312,10.807045,10807.045 +8463,2025-03-08T01:25:27.938881-08:00,1005.6854858398438,10.815147,10815.147 +8464,2025-03-08T01:25:38.750689-08:00,1005.6920166015625,10.811808,10811.808 +8465,2025-03-08T01:25:49.557688-08:00,1005.7118530273438,10.806999,10806.999 +8466,2025-03-08T01:26:00.369848-08:00,1005.71044921875,10.81216,10812.16 +8467,2025-03-08T01:26:11.179869-08:00,1005.6866455078125,10.810021,10810.021 +8468,2025-03-08T01:26:21.994824-08:00,1005.6906127929688,10.814955,10814.955 +8469,2025-03-08T01:26:32.797853-08:00,1005.6972045898438,10.803029,10803.029 +8470,2025-03-08T01:26:43.612138-08:00,1005.677490234375,10.814285,10814.285 +8471,2025-03-08T01:26:54.429662-08:00,1005.6682739257812,10.817524,10817.524 +8472,2025-03-08T01:27:05.240081-08:00,1005.6961059570312,10.810419,10810.419 +8473,2025-03-08T01:27:16.057903-08:00,1005.7290649414062,10.817822,10817.822 +8474,2025-03-08T01:27:26.871169-08:00,1005.7001342773438,10.813266,10813.266 +8475,2025-03-08T01:27:37.683553-08:00,1005.7078247070312,10.812384,10812.384 +8476,2025-03-08T01:27:48.490668-08:00,1005.6646118164062,10.807115,10807.115 +8477,2025-03-08T01:27:59.311382-08:00,1005.6646118164062,10.820714,10820.714 +8478,2025-03-08T01:28:10.119741-08:00,1005.6671752929688,10.808359,10808.359 +8479,2025-03-08T01:28:20.939604-08:00,1005.67236328125,10.819863,10819.863 +8480,2025-03-08T01:28:31.753271-08:00,1005.6843872070312,10.813667,10813.667 +8481,2025-03-08T01:28:42.572234-08:00,1005.6525268554688,10.818963,10818.963 +8482,2025-03-08T01:28:53.376684-08:00,1005.67236328125,10.80445,10804.45 +8483,2025-03-08T01:29:04.198688-08:00,1005.7118530273438,10.822004,10822.004 +8484,2025-03-08T01:29:15.018834-08:00,1005.6854858398438,10.820146,10820.146 +8485,2025-03-08T01:29:25.826791-08:00,1005.671142578125,10.807957,10807.957 +8486,2025-03-08T01:29:36.650679-08:00,1005.692138671875,10.823888,10823.888 +8487,2025-03-08T01:29:47.460810-08:00,1005.6802978515625,10.810131,10810.131 +8488,2025-03-08T01:29:58.281048-08:00,1005.6383056640625,10.820238,10820.238 +8489,2025-03-08T01:30:09.089687-08:00,1005.6591186523438,10.808639,10808.639 +8490,2025-03-08T01:30:19.909673-08:00,1005.692138671875,10.819986,10819.986 +8491,2025-03-08T01:30:30.731159-08:00,1005.6986694335938,10.821486,10821.486 +8492,2025-03-08T01:30:41.539946-08:00,1005.665771484375,10.808787,10808.787 +8493,2025-03-08T01:30:52.358685-08:00,1005.6525268554688,10.818739,10818.739 +8494,2025-03-08T01:31:03.168809-08:00,1005.6986694335938,10.810124,10810.124 +8495,2025-03-08T01:31:13.986666-08:00,1005.7118530273438,10.817857,10817.857 +8496,2025-03-08T01:31:24.801989-08:00,1005.7107543945312,10.815323,10815.323 +8497,2025-03-08T01:31:35.615882-08:00,1005.73046875,10.813893,10813.893 +8498,2025-03-08T01:31:46.428865-08:00,1005.69091796875,10.812983,10812.983 +8499,2025-03-08T01:31:57.240685-08:00,1005.7503051757812,10.81182,10811.82 +8500,2025-03-08T01:32:08.044687-08:00,1005.7107543945312,10.804002,10804.002 +8501,2025-03-08T01:32:18.855688-08:00,1005.7290649414062,10.811001,10811.001 +8502,2025-03-08T01:32:29.669756-08:00,1005.7173461914062,10.814068,10814.068 +8503,2025-03-08T01:32:40.481058-08:00,1005.7159423828125,10.811302,10811.302 +8504,2025-03-08T01:32:51.292694-08:00,1005.7107543945312,10.811636,10811.636 +8505,2025-03-08T01:33:02.100968-08:00,1005.7290649414062,10.808274,10808.274 +8506,2025-03-08T01:33:12.915033-08:00,1005.7213134765625,10.814065,10814.065 +8507,2025-03-08T01:33:23.731959-08:00,1005.7503051757812,10.816926,10816.926 +8508,2025-03-08T01:33:34.552281-08:00,1005.7159423828125,10.820322,10820.322 +8509,2025-03-08T01:33:45.361807-08:00,1005.7503051757812,10.809526,10809.526 +8510,2025-03-08T01:33:56.180689-08:00,1005.7568969726562,10.818882,10818.882 +8511,2025-03-08T01:34:07.001398-08:00,1005.7081298828125,10.820709,10820.709 +8512,2025-03-08T01:34:17.821721-08:00,1005.73828125,10.820323,10820.323 +8513,2025-03-08T01:34:28.635794-08:00,1005.6986694335938,10.814073,10814.073 +8514,2025-03-08T01:34:39.446850-08:00,1005.723876953125,10.811056,10811.056 +8515,2025-03-08T01:34:50.267058-08:00,1005.744873046875,10.820208,10820.208 +8516,2025-03-08T01:35:01.074881-08:00,1005.705322265625,10.807823,10807.823 +8517,2025-03-08T01:35:11.900008-08:00,1005.744873046875,10.825127,10825.127 +8518,2025-03-08T01:35:22.719943-08:00,1005.7606201171875,10.819935,10819.935 +8519,2025-03-08T01:35:33.530337-08:00,1005.7594604492188,10.810394,10810.394 +8520,2025-03-08T01:35:44.348931-08:00,1005.7672119140625,10.818594,10818.594 +8521,2025-03-08T01:35:55.170244-08:00,1005.7421875,10.821313,10821.313 +8522,2025-03-08T01:36:05.984684-08:00,1005.7763061523438,10.81444,10814.44 +8523,2025-03-08T01:36:16.798000-08:00,1005.7631225585938,10.813316,10813.316 +8524,2025-03-08T01:36:27.619793-08:00,1005.7514038085938,10.821793,10821.793 +8525,2025-03-08T01:36:38.428900-08:00,1005.7711791992188,10.809107,10809.107 +8526,2025-03-08T01:36:49.243687-08:00,1005.7711791992188,10.814787,10814.787 +8527,2025-03-08T01:37:00.065551-08:00,1005.7525024414062,10.821864,10821.864 +8528,2025-03-08T01:37:10.868220-08:00,1005.7514038085938,10.802669,10802.669 +8529,2025-03-08T01:37:21.690964-08:00,1005.7393798828125,10.822744,10822.744 +8530,2025-03-08T01:37:32.497914-08:00,1005.7734375,10.80695,10806.95 +8531,2025-03-08T01:37:43.308683-08:00,1005.7603149414062,10.810769,10810.769 +8532,2025-03-08T01:37:54.133194-08:00,1005.7760009765625,10.824511,10824.511 +8533,2025-03-08T01:38:04.946683-08:00,1005.755126953125,10.813489,10813.489 +8534,2025-03-08T01:38:15.771783-08:00,1005.794677734375,10.8251,10825.1 +8535,2025-03-08T01:38:26.587483-08:00,1005.780029296875,10.8157,10815.7 +8536,2025-03-08T01:38:37.405688-08:00,1005.768310546875,10.818205,10818.205 +8537,2025-03-08T01:38:48.215733-08:00,1005.8078002929688,10.810045,10810.045 +8538,2025-03-08T01:38:59.035684-08:00,1005.7957763671875,10.819951,10819.951 +8539,2025-03-08T01:39:09.863679-08:00,1005.8155517578125,10.827995,10827.995 +8540,2025-03-08T01:39:20.673951-08:00,1005.7971801757812,10.810272,10810.272 +8541,2025-03-08T01:39:31.491928-08:00,1005.8038330078125,10.817977,10817.977 +8542,2025-03-08T01:39:42.305991-08:00,1005.8023681640625,10.814063,10814.063 +8543,2025-03-08T01:39:53.122943-08:00,1005.8023681640625,10.816952,10816.952 +8544,2025-03-08T01:40:03.931825-08:00,1005.794677734375,10.808882,10808.882 +8545,2025-03-08T01:40:14.745670-08:00,1005.7760009765625,10.813845,10813.845 +8546,2025-03-08T01:40:25.563672-08:00,1005.7854614257812,10.818002,10818.002 +8547,2025-03-08T01:40:36.375299-08:00,1005.826171875,10.811627,10811.627 +8548,2025-03-08T01:40:47.191367-08:00,1005.8052978515625,10.816068,10816.068 +8549,2025-03-08T01:40:58.010715-08:00,1005.822509765625,10.819348,10819.348 +8550,2025-03-08T01:41:08.824932-08:00,1005.80810546875,10.814217,10814.217 +8551,2025-03-08T01:41:19.644083-08:00,1005.7923583984375,10.819151,10819.151 +8552,2025-03-08T01:41:30.455989-08:00,1005.8041381835938,10.811906,10811.906 +8553,2025-03-08T01:41:41.280683-08:00,1005.7832641601562,10.824694,10824.694 +8554,2025-03-08T01:41:52.089683-08:00,1005.7990112304688,10.809,10809.0 +8555,2025-03-08T01:42:02.909385-08:00,1005.791259765625,10.819702,10819.702 +8556,2025-03-08T01:42:13.711659-08:00,1005.7821044921875,10.802274,10802.274 +8557,2025-03-08T01:42:24.526969-08:00,1005.805908203125,10.81531,10815.31 +8558,2025-03-08T01:42:35.341725-08:00,1005.7952880859375,10.814756,10814.756 +8559,2025-03-08T01:42:46.145673-08:00,1005.79296875,10.803948,10803.948 +8560,2025-03-08T01:42:56.959006-08:00,1005.7915649414062,10.813333,10813.333 +8561,2025-03-08T01:43:07.774186-08:00,1005.7890014648438,10.81518,10815.18 +8562,2025-03-08T01:43:18.576673-08:00,1005.7798461914062,10.802487,10802.487 +8563,2025-03-08T01:43:29.390205-08:00,1005.7771606445312,10.813532,10813.532 +8564,2025-03-08T01:43:40.205713-08:00,1005.7603149414062,10.815508,10815.508 +8565,2025-03-08T01:43:51.021678-08:00,1005.7998657226562,10.815965,10815.965 +8566,2025-03-08T01:44:01.834689-08:00,1005.8211059570312,10.813011,10813.011 +8567,2025-03-08T01:44:12.656977-08:00,1005.8145141601562,10.822288,10822.288 +8568,2025-03-08T01:44:23.469177-08:00,1005.8082275390625,10.8122,10812.2 +8569,2025-03-08T01:44:34.280679-08:00,1005.8133544921875,10.811502,10811.502 +8570,2025-03-08T01:44:45.093667-08:00,1005.7752075195312,10.812988,10812.988 +8571,2025-03-08T01:44:55.907977-08:00,1005.8082275390625,10.81431,10814.31 +8572,2025-03-08T01:45:06.716068-08:00,1005.7979125976562,10.808091,10808.091 +8573,2025-03-08T01:45:17.533022-08:00,1005.802978515625,10.816954,10816.954 +8574,2025-03-08T01:45:28.336689-08:00,1005.7977905273438,10.803667,10803.667 +8575,2025-03-08T01:45:39.152858-08:00,1005.81103515625,10.816169,10816.169 +8576,2025-03-08T01:45:49.967805-08:00,1005.7732543945312,10.814947,10814.947 +8577,2025-03-08T01:46:00.775272-08:00,1005.8046875,10.807467,10807.467 +8578,2025-03-08T01:46:11.590967-08:00,1005.801025390625,10.815695,10815.695 +8579,2025-03-08T01:46:22.404735-08:00,1005.840576171875,10.813768,10813.768 +8580,2025-03-08T01:46:33.219668-08:00,1005.8390502929688,10.814933,10814.933 +8581,2025-03-08T01:46:44.026666-08:00,1005.8101806640625,10.806998,10806.998 +8582,2025-03-08T01:46:54.830674-08:00,1005.83935546875,10.804008,10804.008 +8583,2025-03-08T01:47:05.653686-08:00,1005.82470703125,10.823012,10823.012 +8584,2025-03-08T01:47:16.462280-08:00,1005.7957763671875,10.808594,10808.594 +8585,2025-03-08T01:47:27.275271-08:00,1005.7986450195312,10.812991,10812.991 +8586,2025-03-08T01:47:38.083685-08:00,1005.8236083984375,10.808414,10808.414 +8587,2025-03-08T01:47:48.897774-08:00,1005.8040771484375,10.814089,10814.089 +8588,2025-03-08T01:47:59.700728-08:00,1005.7777099609375,10.802954,10802.954 +8589,2025-03-08T01:48:10.520044-08:00,1005.80810546875,10.819316,10819.316 +8590,2025-03-08T01:48:21.341321-08:00,1005.814697265625,10.821277,10821.277 +8591,2025-03-08T01:48:32.147692-08:00,1005.7977905273438,10.806371,10806.371 +8592,2025-03-08T01:48:42.971687-08:00,1005.81494140625,10.823995,10823.995 +8593,2025-03-08T01:48:53.780680-08:00,1005.7871704101562,10.808993,10808.993 +8594,2025-03-08T01:49:04.597441-08:00,1005.7977294921875,10.816761,10816.761 +8595,2025-03-08T01:49:15.409112-08:00,1005.795166015625,10.811671,10811.671 +8596,2025-03-08T01:49:26.219481-08:00,1005.7940063476562,10.810369,10810.369 +8597,2025-03-08T01:49:37.027693-08:00,1005.7796630859375,10.808212,10808.212 +8598,2025-03-08T01:49:47.846993-08:00,1005.7913818359375,10.8193,10819.3 +8599,2025-03-08T01:49:58.651686-08:00,1005.7679443359375,10.804693,10804.693 +8600,2025-03-08T01:50:09.466403-08:00,1005.7810668945312,10.814717,10814.717 +8601,2025-03-08T01:50:20.282204-08:00,1005.7664794921875,10.815801,10815.801 +8602,2025-03-08T01:50:31.095944-08:00,1005.791748046875,10.81374,10813.74 +8603,2025-03-08T01:50:41.905688-08:00,1005.7693481445312,10.809744,10809.744 +8604,2025-03-08T01:50:52.725138-08:00,1005.7667236328125,10.81945,10819.45 +8605,2025-03-08T01:51:03.538812-08:00,1005.7916259765625,10.813674,10813.674 +8606,2025-03-08T01:51:14.347800-08:00,1005.7681274414062,10.808988,10808.988 +8607,2025-03-08T01:51:25.164693-08:00,1005.78125,10.816893,10816.893 +8608,2025-03-08T01:51:35.979015-08:00,1005.7535400390625,10.814322,10814.322 +8609,2025-03-08T01:51:46.789904-08:00,1005.7787475585938,10.810889,10810.889 +8610,2025-03-08T01:51:57.594735-08:00,1005.7826538085938,10.804831,10804.831 +8611,2025-03-08T01:52:08.409018-08:00,1005.7881469726562,10.814283,10814.283 +8612,2025-03-08T01:52:19.221055-08:00,1005.7998657226562,10.812037,10812.037 +8613,2025-03-08T01:52:30.041681-08:00,1005.7837524414062,10.820626,10820.626 +8614,2025-03-08T01:52:40.842939-08:00,1005.7771606445312,10.801258,10801.258 +8615,2025-03-08T01:52:51.657878-08:00,1005.78125,10.814939,10814.939 +8616,2025-03-08T01:53:02.460684-08:00,1005.8195190429688,10.802806,10802.806 +8617,2025-03-08T01:53:13.276045-08:00,1005.7998657226562,10.815361,10815.361 +8618,2025-03-08T01:53:24.084015-08:00,1005.826171875,10.80797,10807.97 +8619,2025-03-08T01:53:34.893357-08:00,1005.826171875,10.809342,10809.342 +8620,2025-03-08T01:53:45.704707-08:00,1005.8049926757812,10.81135,10811.35 +8621,2025-03-08T01:53:56.511819-08:00,1005.832763671875,10.807112,10807.112 +8622,2025-03-08T01:54:07.332378-08:00,1005.8535766601562,10.820559,10820.559 +8623,2025-03-08T01:54:18.136634-08:00,1005.83935546875,10.804256,10804.256 +8624,2025-03-08T01:54:28.943912-08:00,1005.844482421875,10.807278,10807.278 +8625,2025-03-08T01:54:39.759146-08:00,1005.8788452148438,10.815234,10815.234 +8626,2025-03-08T01:54:50.571002-08:00,1005.8367309570312,10.811856,10811.856 +8627,2025-03-08T01:55:01.386685-08:00,1005.876220703125,10.815683,10815.683 +8628,2025-03-08T01:55:12.204822-08:00,1005.8565063476562,10.818137,10818.137 +8629,2025-03-08T01:55:23.026111-08:00,1005.849853515625,10.821289,10821.289 +8630,2025-03-08T01:55:33.828993-08:00,1005.8275146484375,10.802882,10802.882 +8631,2025-03-08T01:55:44.638236-08:00,1005.8484497070312,10.809243,10809.243 +8632,2025-03-08T01:55:55.450688-08:00,1005.8418579101562,10.812452,10812.452 +8633,2025-03-08T01:56:06.253687-08:00,1005.83154296875,10.802999,10802.999 +8634,2025-03-08T01:56:17.069677-08:00,1005.8341674804688,10.81599,10815.99 +8635,2025-03-08T01:56:27.882724-08:00,1005.8512573242188,10.813047,10813.047 +8636,2025-03-08T01:56:38.687735-08:00,1005.8524169921875,10.805011,10805.011 +8637,2025-03-08T01:56:49.506683-08:00,1005.8250122070312,10.818948,10818.948 +8638,2025-03-08T01:57:00.311016-08:00,1005.8250122070312,10.804333,10804.333 +8639,2025-03-08T01:57:11.129689-08:00,1005.818359375,10.818673,10818.673 +8640,2025-03-08T01:57:21.931681-08:00,1005.8223266601562,10.801992,10801.992 +8641,2025-03-08T01:57:32.747856-08:00,1005.8289184570312,10.816175,10816.175 +8642,2025-03-08T01:57:43.551861-08:00,1005.8157958984375,10.804005,10804.005 +8643,2025-03-08T01:57:54.364380-08:00,1005.8010864257812,10.812519,10812.519 +8644,2025-03-08T01:58:05.180662-08:00,1005.8143920898438,10.816282,10816.282 +8645,2025-03-08T01:58:15.995911-08:00,1005.803955078125,10.815249,10815.249 +8646,2025-03-08T01:58:26.814688-08:00,1005.8171997070312,10.818777,10818.777 +8647,2025-03-08T01:58:37.623868-08:00,1005.8027954101562,10.80918,10809.18 +8648,2025-03-08T01:58:48.439038-08:00,1005.7816162109375,10.81517,10815.17 +8649,2025-03-08T01:58:59.248273-08:00,1005.7750244140625,10.809235,10809.235 +8650,2025-03-08T01:59:10.062687-08:00,1005.8134155273438,10.814414,10814.414 +8651,2025-03-08T01:59:20.878888-08:00,1005.7987670898438,10.816201,10816.201 +8652,2025-03-08T01:59:31.701242-08:00,1005.810791015625,10.822354,10822.354 +8653,2025-03-08T01:59:42.502959-08:00,1005.823974609375,10.801717,10801.717 +8654,2025-03-08T01:59:53.318691-08:00,1005.7962646484375,10.815732,10815.732 +8655,2025-03-08T02:00:04.129684-08:00,1005.8133544921875,10.810993,10810.993 +8656,2025-03-08T02:00:14.944662-08:00,1005.8265380859375,10.814978,10814.978 +8657,2025-03-08T02:00:25.762113-08:00,1005.8279418945312,10.817451,10817.451 +8658,2025-03-08T02:00:36.579243-08:00,1005.8265380859375,10.81713,10817.13 +8659,2025-03-08T02:00:47.395218-08:00,1005.8253784179688,10.815975,10815.975 +8660,2025-03-08T02:00:58.212690-08:00,1005.810791015625,10.817472,10817.472 +8661,2025-03-08T02:01:09.033970-08:00,1005.8173217773438,10.82128,10821.28 +8662,2025-03-08T02:01:19.848486-08:00,1005.8582763671875,10.814516,10814.516 +8663,2025-03-08T02:01:30.669335-08:00,1005.8370361328125,10.820849,10820.849 +8664,2025-03-08T02:01:41.476861-08:00,1005.816162109375,10.807526,10807.526 +8665,2025-03-08T02:01:52.302919-08:00,1005.8359375,10.826058,10826.058 +8666,2025-03-08T02:02:03.121666-08:00,1005.842529296875,10.818747,10818.747 +8667,2025-03-08T02:02:13.937884-08:00,1005.8201293945312,10.816218,10816.218 +8668,2025-03-08T02:02:24.746727-08:00,1005.8399047851562,10.808843,10808.843 +8669,2025-03-08T02:02:35.563633-08:00,1005.8450927734375,10.816906,10816.906 +8670,2025-03-08T02:02:46.381748-08:00,1005.8531494140625,10.818115,10818.115 +8671,2025-03-08T02:02:57.195689-08:00,1005.87939453125,10.813941,10813.941 +8672,2025-03-08T02:03:08.017504-08:00,1005.8450927734375,10.821815,10821.815 +8673,2025-03-08T02:03:18.825008-08:00,1005.8582763671875,10.807504,10807.504 +8674,2025-03-08T02:03:29.635030-08:00,1005.8318481445312,10.810022,10810.022 +8675,2025-03-08T02:03:40.454683-08:00,1005.8582763671875,10.819653,10819.653 +8676,2025-03-08T02:03:51.263930-08:00,1005.8582763671875,10.809247,10809.247 +8677,2025-03-08T02:04:02.076744-08:00,1005.8504638671875,10.812814,10812.814 +8678,2025-03-08T02:04:12.894175-08:00,1005.8900146484375,10.817431,10817.431 +8679,2025-03-08T02:04:23.711232-08:00,1005.8873291015625,10.817057,10817.057 +8680,2025-03-08T02:04:34.529677-08:00,1005.8819580078125,10.818445,10818.445 +8681,2025-03-08T02:04:45.342739-08:00,1005.8819580078125,10.813062,10813.062 +8682,2025-03-08T02:04:56.160888-08:00,1005.853271484375,10.818149,10818.149 +8683,2025-03-08T02:05:06.967022-08:00,1005.8599243164062,10.806134,10806.134 +8684,2025-03-08T02:05:17.783107-08:00,1005.8770141601562,10.816085,10816.085 +8685,2025-03-08T02:05:28.590811-08:00,1005.867919921875,10.807704,10807.704 +8686,2025-03-08T02:05:39.470705-08:00,1005.8836059570312,10.879894,10879.894 +8687,2025-03-08T02:05:50.284694-08:00,1005.9007568359375,10.813989,10813.989 +8688,2025-03-08T02:06:01.100304-08:00,1005.8942260742188,10.81561,10815.61 +8689,2025-03-08T02:06:11.900837-08:00,1005.885009765625,10.800533,10800.533 +8690,2025-03-08T02:06:22.719823-08:00,1005.8729858398438,10.818986,10818.986 +8691,2025-03-08T02:06:33.532808-08:00,1005.8861694335938,10.812985,10812.985 +8692,2025-03-08T02:06:44.337938-08:00,1005.9059448242188,10.80513,10805.13 +8693,2025-03-08T02:06:55.149149-08:00,1005.87841796875,10.811211,10811.211 +8694,2025-03-08T02:07:05.966700-08:00,1005.8638305664062,10.817551,10817.551 +8695,2025-03-08T02:07:16.792696-08:00,1005.8612670898438,10.825996,10825.996 +8696,2025-03-08T02:07:27.605947-08:00,1005.8612670898438,10.813251,10813.251 +8697,2025-03-08T02:07:38.421847-08:00,1005.8743896484375,10.8159,10815.9 +8698,2025-03-08T02:07:49.240029-08:00,1005.860107421875,10.818182,10818.182 +8699,2025-03-08T02:08:00.051096-08:00,1005.873291015625,10.811067,10811.067 +8700,2025-03-08T02:08:10.871703-08:00,1005.8640747070312,10.820607,10820.607 +8701,2025-03-08T02:08:21.688764-08:00,1005.8783569335938,10.817061,10817.061 +8702,2025-03-08T02:08:32.499208-08:00,1005.8837280273438,10.810444,10810.444 +8703,2025-03-08T02:08:43.309294-08:00,1005.890380859375,10.810086,10810.086 +8704,2025-03-08T02:08:54.118060-08:00,1005.8692016601562,10.808766,10808.766 +8705,2025-03-08T02:09:04.927707-08:00,1005.8837280273438,10.809647,10809.647 +8706,2025-03-08T02:09:15.744724-08:00,1005.8692016601562,10.817017,10817.017 +8707,2025-03-08T02:09:26.553747-08:00,1005.8692016601562,10.809023,10809.023 +8708,2025-03-08T02:09:37.360927-08:00,1005.8680419921875,10.80718,10807.18 +8709,2025-03-08T02:09:48.173086-08:00,1005.8680419921875,10.812159,10812.159 +8710,2025-03-08T02:09:58.989754-08:00,1005.8613891601562,10.816668,10816.668 +8711,2025-03-08T02:10:09.793033-08:00,1005.8863525390625,10.803279,10803.279 +8712,2025-03-08T02:10:20.601702-08:00,1005.9140625,10.808669,10808.669 +8713,2025-03-08T02:10:31.410952-08:00,1005.8863525390625,10.80925,10809.25 +8714,2025-03-08T02:10:42.218694-08:00,1005.8995361328125,10.807742,10807.742 +8715,2025-03-08T02:10:53.027833-08:00,1005.9049072265625,10.809139,10809.139 +8716,2025-03-08T02:11:03.832842-08:00,1005.9181518554688,10.805009,10805.009 +8717,2025-03-08T02:11:14.650511-08:00,1005.86279296875,10.817669,10817.669 +8718,2025-03-08T02:11:25.449939-08:00,1005.9378051757812,10.799428,10799.428 +8719,2025-03-08T02:11:36.259978-08:00,1005.887939453125,10.810039,10810.039 +8720,2025-03-08T02:11:47.073054-08:00,1005.908935546875,10.813076,10813.076 +8721,2025-03-08T02:11:57.882880-08:00,1005.895751953125,10.809826,10809.826 +8722,2025-03-08T02:12:08.690931-08:00,1005.8920288085938,10.808051,10808.051 +8723,2025-03-08T02:12:19.503928-08:00,1005.8721923828125,10.812997,10812.997 +8724,2025-03-08T02:12:30.306112-08:00,1005.8865356445312,10.802184,10802.184 +8725,2025-03-08T02:12:41.122701-08:00,1005.9182739257812,10.816589,10816.589 +8726,2025-03-08T02:12:51.928077-08:00,1005.8707885742188,10.805376,10805.376 +8727,2025-03-08T02:13:02.746086-08:00,1005.9076538085938,10.818009,10818.009 +8728,2025-03-08T02:13:13.545336-08:00,1005.8959350585938,10.79925,10799.25 +8729,2025-03-08T02:13:24.354181-08:00,1005.8933715820312,10.808845,10808.845 +8730,2025-03-08T02:13:35.171702-08:00,1005.88671875,10.817521,10817.521 +8731,2025-03-08T02:13:45.972694-08:00,1005.9131469726562,10.800992,10800.992 +8732,2025-03-08T02:13:56.782688-08:00,1005.8958740234375,10.809994,10809.994 +8733,2025-03-08T02:14:07.592696-08:00,1005.9039306640625,10.810008,10810.008 +8734,2025-03-08T02:14:18.403910-08:00,1005.8973388671875,10.811214,10811.214 +8735,2025-03-08T02:14:29.216982-08:00,1005.9090576171875,10.813072,10813.072 +8736,2025-03-08T02:14:40.027012-08:00,1005.9144287109375,10.81003,10810.03 +8737,2025-03-08T02:14:50.842894-08:00,1005.8947143554688,10.815882,10815.882 +8738,2025-03-08T02:15:01.653921-08:00,1005.9064331054688,10.811027,10811.027 +8739,2025-03-08T02:15:12.459703-08:00,1005.91845703125,10.805782,10805.782 +8740,2025-03-08T02:15:23.272895-08:00,1005.8800659179688,10.813192,10813.192 +8741,2025-03-08T02:15:34.077703-08:00,1005.9195556640625,10.804808,10804.808 +8742,2025-03-08T02:15:44.886854-08:00,1005.9249877929688,10.809151,10809.151 +8743,2025-03-08T02:15:55.696324-08:00,1005.915771484375,10.80947,10809.47 +8744,2025-03-08T02:16:06.503021-08:00,1005.9026489257812,10.806697,10806.697 +8745,2025-03-08T02:16:17.312145-08:00,1005.928955078125,10.809124,10809.124 +8746,2025-03-08T02:16:28.112833-08:00,1005.927490234375,10.800688,10800.688 +8747,2025-03-08T02:16:38.921700-08:00,1005.947265625,10.808867,10808.867 +8748,2025-03-08T02:17:00.541965-08:00,1005.9117431640625,21.620265,21620.265 +8749,2025-03-08T02:17:11.349698-08:00,1005.9051513671875,10.807733,10807.733 +8750,2025-03-08T02:17:22.156698-08:00,1005.9117431640625,10.807,10807.0 +8751,2025-03-08T02:17:32.970479-08:00,1005.9302978515625,10.813781,10813.781 +8752,2025-03-08T02:17:43.772359-08:00,1005.9369506835938,10.80188,10801.88 +8753,2025-03-08T02:17:54.581861-08:00,1005.921142578125,10.809502,10809.502 +8754,2025-03-08T02:18:05.393694-08:00,1005.9014282226562,10.811833,10811.833 +8755,2025-03-08T02:18:16.200957-08:00,1005.9199829101562,10.807263,10807.263 +8756,2025-03-08T02:18:27.013943-08:00,1005.93310546875,10.812986,10812.986 +8757,2025-03-08T02:18:37.818909-08:00,1005.9671630859375,10.804966,10804.966 +8758,2025-03-08T02:18:48.624681-08:00,1005.9382934570312,10.805772,10805.772 +8759,2025-03-08T02:18:59.432748-08:00,1005.9437255859375,10.808067,10808.067 +8760,2025-03-08T02:19:10.249984-08:00,1005.9568481445312,10.817236,10817.236 +8761,2025-03-08T02:19:21.056004-08:00,1005.9489135742188,10.80602,10806.02 +8762,2025-03-08T02:19:31.856845-08:00,1005.9554443359375,10.800841,10800.841 +8763,2025-03-08T02:19:42.664059-08:00,1005.9132690429688,10.807214,10807.214 +8764,2025-03-08T02:19:53.469020-08:00,1005.939697265625,10.804961,10804.961 +8765,2025-03-08T02:20:04.279755-08:00,1005.9304809570312,10.810735,10810.735 +8766,2025-03-08T02:20:15.092082-08:00,1005.9411010742188,10.812327,10812.327 +8767,2025-03-08T02:20:25.903702-08:00,1005.931884765625,10.81162,10811.62 +8768,2025-03-08T02:20:36.710694-08:00,1005.9462280273438,10.806992,10806.992 +8769,2025-03-08T02:20:47.522695-08:00,1005.93701171875,10.812001,10812.001 +8770,2025-03-08T02:20:58.334747-08:00,1005.8660888671875,10.812052,10812.052 +8771,2025-03-08T02:21:09.140964-08:00,1005.9304809570312,10.806217,10806.217 +8772,2025-03-08T02:21:19.951896-08:00,1005.9556274414062,10.810932,10810.932 +8773,2025-03-08T02:21:30.760768-08:00,1005.9359130859375,10.808872,10808.872 +8774,2025-03-08T02:21:39.783869-08:00,1005.9293823242188,9.023101,9023.101 +8775,2025-03-08T02:21:41.565699-08:00,1005.906982421875,1.78183,1781.83 +8776,2025-03-08T02:21:52.373156-08:00,1005.9161987304688,10.807457,10807.457 +8777,2025-03-08T02:22:03.176826-08:00,1005.89892578125,10.80367,10803.67 +8778,2025-03-08T02:22:13.983825-08:00,1005.920166015625,10.806999,10806.999 +8779,2025-03-08T02:22:24.798682-08:00,1005.8978271484375,10.814857,10814.857 +8780,2025-03-08T02:22:35.604959-08:00,1005.9054565429688,10.806277,10806.277 +8781,2025-03-08T02:22:46.406704-08:00,1005.8912353515625,10.801745,10801.745 +8782,2025-03-08T02:22:57.215616-08:00,1005.9095458984375,10.808912,10808.912 +8783,2025-03-08T02:23:08.024818-08:00,1005.9095458984375,10.809202,10809.202 +8784,2025-03-08T02:23:18.836851-08:00,1005.8688354492188,10.812033,10812.033 +8785,2025-03-08T02:23:29.649932-08:00,1005.8688354492188,10.813081,10813.081 +8786,2025-03-08T02:23:40.452311-08:00,1005.8859252929688,10.802379,10802.379 +8787,2025-03-08T02:23:51.262704-08:00,1005.9071655273438,10.810393,10810.393 +8788,2025-03-08T02:24:02.072936-08:00,1005.89404296875,10.810232,10810.232 +8789,2025-03-08T02:24:12.886694-08:00,1005.8859252929688,10.813758,10813.758 +8790,2025-03-08T02:24:23.684713-08:00,1005.8635864257812,10.798019,10798.019 +8791,2025-03-08T02:24:34.503021-08:00,1005.8914184570312,10.818308,10818.308 +8792,2025-03-08T02:24:45.306021-08:00,1005.8701782226562,10.803,10803.0 +8793,2025-03-08T02:24:56.120768-08:00,1005.8756103515625,10.814747,10814.747 +8794,2025-03-08T02:25:06.918035-08:00,1005.8822021484375,10.797267,10797.267 +8795,2025-03-08T02:25:17.726753-08:00,1005.9085083007812,10.808718,10808.718 +8796,2025-03-08T02:25:28.540914-08:00,1005.9268188476562,10.814161,10814.161 +8797,2025-03-08T02:25:39.348700-08:00,1005.9321899414062,10.807786,10807.786 +8798,2025-03-08T02:25:50.157940-08:00,1005.9190673828125,10.80924,10809.24 +8799,2025-03-08T02:26:00.964696-08:00,1005.9032592773438,10.806756,10806.756 +8800,2025-03-08T02:26:11.769692-08:00,1005.936279296875,10.804996,10804.996 +8801,2025-03-08T02:26:22.585045-08:00,1005.9215698242188,10.815353,10815.353 +8802,2025-03-08T02:26:33.389969-08:00,1005.9204711914062,10.804924,10804.924 +8803,2025-03-08T02:26:44.203976-08:00,1005.8992309570312,10.814007,10814.007 +8804,2025-03-08T02:26:55.002015-08:00,1005.9190063476562,10.798039,10798.039 +8805,2025-03-08T02:27:05.815968-08:00,1005.9243774414062,10.813953,10813.953 +8806,2025-03-08T02:27:16.617280-08:00,1005.9112548828125,10.801312,10801.312 +8807,2025-03-08T02:27:27.427897-08:00,1005.9151611328125,10.810617,10810.617 +8808,2025-03-08T02:27:38.235699-08:00,1005.9218139648438,10.807802,10807.802 +8809,2025-03-08T02:27:49.040693-08:00,1005.9295043945312,10.804994,10804.994 +8810,2025-03-08T02:27:59.842954-08:00,1005.887451171875,10.802261,10802.261 +8811,2025-03-08T02:28:10.645684-08:00,1005.88623046875,10.80273,10802.73 +8812,2025-03-08T02:28:21.449693-08:00,1005.8518676757812,10.804009,10804.009 +8813,2025-03-08T02:28:32.258681-08:00,1005.9137573242188,10.808988,10808.988 +8814,2025-03-08T02:28:43.061899-08:00,1005.8993530273438,10.803218,10803.218 +8815,2025-03-08T02:28:53.864703-08:00,1005.904541015625,10.802804,10802.804 +8816,2025-03-08T02:29:04.684767-08:00,1005.9034423828125,10.820064,10820.064 +8817,2025-03-08T02:29:15.485721-08:00,1005.9110717773438,10.800954,10800.954 +8818,2025-03-08T02:29:26.303575-08:00,1005.9110717773438,10.817854,10817.854 +8819,2025-03-08T02:29:37.101968-08:00,1005.9165649414062,10.798393,10798.393 +8820,2025-03-08T02:29:47.915803-08:00,1005.9351806640625,10.813835,10813.835 +8821,2025-03-08T02:29:58.716899-08:00,1005.9351806640625,10.801096,10801.096 +8822,2025-03-08T02:30:09.528564-08:00,1005.9351806640625,10.811665,10811.665 +8823,2025-03-08T02:30:20.333681-08:00,1005.9285888671875,10.805117,10805.117 +8824,2025-03-08T02:30:31.134350-08:00,1005.9193725585938,10.800669,10800.669 +8825,2025-03-08T02:30:41.941688-08:00,1005.9336547851562,10.807338,10807.338 +8826,2025-03-08T02:30:52.752182-08:00,1005.9522705078125,10.810494,10810.494 +8827,2025-03-08T02:31:03.562092-08:00,1005.924560546875,10.80991,10809.91 +8828,2025-03-08T02:31:14.364682-08:00,1005.9179077148438,10.80259,10802.59 +8829,2025-03-08T02:31:25.178704-08:00,1005.9310913085938,10.814022,10814.022 +8830,2025-03-08T02:31:35.988987-08:00,1005.929931640625,10.810283,10810.283 +8831,2025-03-08T02:31:46.798273-08:00,1005.9628295898438,10.809286,10809.286 +8832,2025-03-08T02:31:57.605696-08:00,1005.9415893554688,10.807423,10807.423 +8833,2025-03-08T02:32:08.409728-08:00,1005.9481201171875,10.804032,10804.032 +8834,2025-03-08T02:32:19.223692-08:00,1005.8995361328125,10.813964,10813.964 +8835,2025-03-08T02:32:30.027939-08:00,1005.92578125,10.804247,10804.247 +8836,2025-03-08T02:32:40.838694-08:00,1005.919189453125,10.810755,10810.755 +8837,2025-03-08T02:32:51.637703-08:00,1005.9324340820312,10.799009,10799.009 +8838,2025-03-08T02:33:02.438842-08:00,1005.9181518554688,10.801139,10801.139 +8839,2025-03-08T02:33:13.251693-08:00,1005.93896484375,10.812851,10812.851 +8840,2025-03-08T02:33:24.054706-08:00,1005.90234375,10.803013,10803.013 +8841,2025-03-08T02:33:34.858686-08:00,1005.9154663085938,10.80398,10803.98 +8842,2025-03-08T02:33:45.666670-08:00,1005.9297485351562,10.807984,10807.984 +8843,2025-03-08T02:33:56.475598-08:00,1005.9166259765625,10.808928,10808.928 +8844,2025-03-08T02:34:07.270703-08:00,1005.9154663085938,10.795105,10795.105 +8845,2025-03-08T02:34:18.082812-08:00,1005.8931274414062,10.812109,10812.109 +8846,2025-03-08T02:34:28.886501-08:00,1005.899658203125,10.803689,10803.689 +8847,2025-03-08T02:34:39.681743-08:00,1005.926025390625,10.795242,10795.242 +8848,2025-03-08T02:34:50.499442-08:00,1005.911376953125,10.817699,10817.699 +8849,2025-03-08T02:35:01.296965-08:00,1005.90625,10.797523,10797.523 +8850,2025-03-08T02:35:12.106087-08:00,1005.8677978515625,10.809122,10809.122 +8851,2025-03-08T02:35:22.907053-08:00,1005.8756103515625,10.800966,10800.966 +8852,2025-03-08T02:35:33.710519-08:00,1005.8756103515625,10.803466,10803.466 +8853,2025-03-08T02:35:44.514113-08:00,1005.8809204101562,10.803594,10803.594 +8854,2025-03-08T02:35:55.321124-08:00,1005.8875732421875,10.807011,10807.011 +8855,2025-03-08T02:36:06.128695-08:00,1005.8875732421875,10.807571,10807.571 +8856,2025-03-08T02:36:16.934104-08:00,1005.871826171875,10.805409,10805.409 +8857,2025-03-08T02:36:27.737283-08:00,1005.885009765625,10.803179,10803.179 +8858,2025-03-08T02:36:38.533918-08:00,1005.8663940429688,10.796635,10796.635 +8859,2025-03-08T02:36:49.340686-08:00,1005.8837280273438,10.806768,10806.768 +8860,2025-03-08T02:37:00.149696-08:00,1005.8981323242188,10.80901,10809.01 +8861,2025-03-08T02:37:10.958952-08:00,1005.8915405273438,10.809256,10809.256 +8862,2025-03-08T02:37:21.762706-08:00,1005.8443603515625,10.803754,10803.754 +8863,2025-03-08T02:37:32.574696-08:00,1005.8640747070312,10.81199,10811.99 +8864,2025-03-08T02:37:43.389918-08:00,1005.8837280273438,10.815222,10815.222 +8865,2025-03-08T02:37:54.187944-08:00,1005.888916015625,10.798026,10798.026 +8866,2025-03-08T02:38:04.996551-08:00,1005.8613891601562,10.808607,10808.607 +8867,2025-03-08T02:38:15.801727-08:00,1005.88232421875,10.805176,10805.176 +8868,2025-03-08T02:38:26.603860-08:00,1005.8811645507812,10.802133,10802.133 +8869,2025-03-08T02:38:37.405753-08:00,1005.9009399414062,10.801893,10801.893 +8870,2025-03-08T02:38:48.207749-08:00,1005.8679809570312,10.801996,10801.996 +8871,2025-03-08T02:38:59.012768-08:00,1005.8917236328125,10.805019,10805.019 +8872,2025-03-08T02:39:09.826973-08:00,1005.8786010742188,10.814205,10814.205 +8873,2025-03-08T02:39:20.624446-08:00,1005.8796997070312,10.797473,10797.473 +8874,2025-03-08T02:39:31.441355-08:00,1005.8851318359375,10.816909,10816.909 +8875,2025-03-08T02:39:42.243399-08:00,1005.8836669921875,10.802044,10802.044 +8876,2025-03-08T02:39:53.053690-08:00,1005.9099731445312,10.810291,10810.291 +8877,2025-03-08T02:40:03.856693-08:00,1005.8982543945312,10.803003,10803.003 +8878,2025-03-08T02:40:14.665704-08:00,1005.8956298828125,10.809011,10809.011 +8879,2025-03-08T02:40:25.468700-08:00,1005.87451171875,10.802996,10802.996 +8880,2025-03-08T02:40:36.275915-08:00,1005.886474609375,10.807215,10807.215 +8881,2025-03-08T02:40:47.080703-08:00,1005.8890380859375,10.804788,10804.788 +8882,2025-03-08T02:40:57.881695-08:00,1005.8470458984375,10.800992,10800.992 +8883,2025-03-08T02:41:08.681931-08:00,1005.886474609375,10.800236,10800.236 +8884,2025-03-08T02:41:19.479697-08:00,1005.8915405273438,10.797766,10797.766 +8885,2025-03-08T02:41:30.282703-08:00,1005.8757934570312,10.803006,10803.006 +8886,2025-03-08T02:41:41.087953-08:00,1005.8718872070312,10.80525,10805.25 +8887,2025-03-08T02:41:51.895081-08:00,1005.8915405273438,10.807128,10807.128 +8888,2025-03-08T02:42:02.710015-08:00,1005.8757934570312,10.814934,10814.934 +8889,2025-03-08T02:42:13.517699-08:00,1005.8772583007812,10.807684,10807.684 +8890,2025-03-08T02:42:24.327700-08:00,1005.8746948242188,10.810001,10810.001 +8891,2025-03-08T02:42:35.130017-08:00,1005.8681030273438,10.802317,10802.317 +8892,2025-03-08T02:42:45.940228-08:00,1005.8732299804688,10.810211,10810.211 +8893,2025-03-08T02:42:56.736910-08:00,1005.8732299804688,10.796682,10796.682 +8894,2025-03-08T02:43:07.546122-08:00,1005.8929443359375,10.809212,10809.212 +8895,2025-03-08T02:43:18.354274-08:00,1005.8929443359375,10.808152,10808.152 +8896,2025-03-08T02:43:29.151424-08:00,1005.8878173828125,10.79715,10797.15 +8897,2025-03-08T02:43:39.959030-08:00,1005.9115600585938,10.807606,10807.606 +8898,2025-03-08T02:43:50.764012-08:00,1005.8837280273438,10.804982,10804.982 +8899,2025-03-08T02:44:01.563575-08:00,1005.9115600585938,10.799563,10799.563 +8900,2025-03-08T02:44:12.365583-08:00,1005.8917236328125,10.802008,10802.008 +8901,2025-03-08T02:44:23.173292-08:00,1005.864013671875,10.807709,10807.709 +8902,2025-03-08T02:44:33.976973-08:00,1005.882568359375,10.803681,10803.681 +8903,2025-03-08T02:44:44.783939-08:00,1005.901123046875,10.806966,10806.966 +8904,2025-03-08T02:44:55.590407-08:00,1005.8968505859375,10.806468,10806.468 +8905,2025-03-08T02:45:06.386013-08:00,1005.89453125,10.795606,10795.606 +8906,2025-03-08T02:45:17.190151-08:00,1005.901123046875,10.804138,10804.138 +8907,2025-03-08T02:45:28.004690-08:00,1005.90771484375,10.814539,10814.539 +8908,2025-03-08T02:45:38.811814-08:00,1005.899658203125,10.807124,10807.124 +8909,2025-03-08T02:45:49.610941-08:00,1005.8773193359375,10.799127,10799.127 +8910,2025-03-08T02:46:00.425698-08:00,1005.8919677734375,10.814757,10814.757 +8911,2025-03-08T02:46:11.226949-08:00,1005.8510131835938,10.801251,10801.251 +8912,2025-03-08T02:46:22.037845-08:00,1005.8970336914062,10.810896,10810.896 +8913,2025-03-08T02:46:32.847681-08:00,1005.8959350585938,10.809836,10809.836 +8914,2025-03-08T02:46:43.656744-08:00,1005.889404296875,10.809063,10809.063 +8915,2025-03-08T02:46:54.464261-08:00,1005.8746948242188,10.807517,10807.517 +8916,2025-03-08T02:47:05.263206-08:00,1005.8812255859375,10.798945,10798.945 +8917,2025-03-08T02:47:16.071313-08:00,1005.88671875,10.808107,10808.107 +8918,2025-03-08T02:47:26.876259-08:00,1005.8812255859375,10.804946,10804.946 +8919,2025-03-08T02:47:37.686496-08:00,1005.866943359375,10.810237,10810.237 +8920,2025-03-08T02:47:48.488030-08:00,1005.8538208007812,10.801534,10801.534 +8921,2025-03-08T02:47:59.307959-08:00,1005.865478515625,10.819929,10819.929 +8922,2025-03-08T02:48:10.115696-08:00,1005.878662109375,10.807737,10807.737 +8923,2025-03-08T02:48:20.919943-08:00,1005.8643798828125,10.804247,10804.247 +8924,2025-03-08T02:48:31.720792-08:00,1005.865478515625,10.800849,10800.849 +8925,2025-03-08T02:48:42.530695-08:00,1005.8709106445312,10.809903,10809.903 +8926,2025-03-08T02:48:53.344699-08:00,1005.8365478515625,10.814004,10814.004 +8927,2025-03-08T02:49:04.149725-08:00,1005.8551635742188,10.805026,10805.026 +8928,2025-03-08T02:49:14.950681-08:00,1005.8562622070312,10.800956,10800.956 +8929,2025-03-08T02:49:25.763817-08:00,1005.8551635742188,10.813136,10813.136 +8930,2025-03-08T02:49:36.565043-08:00,1005.8682861328125,10.801226,10801.226 +8931,2025-03-08T02:49:47.368663-08:00,1005.8668823242188,10.80362,10803.62 +8932,2025-03-08T02:49:58.186119-08:00,1005.8682861328125,10.817456,10817.456 +8933,2025-03-08T02:50:08.986748-08:00,1005.8682861328125,10.800629,10800.629 +8934,2025-03-08T02:50:19.796699-08:00,1005.8722534179688,10.809951,10809.951 +8935,2025-03-08T02:50:30.604688-08:00,1005.8656005859375,10.807989,10807.989 +8936,2025-03-08T02:50:41.402703-08:00,1005.8641967773438,10.798015,10798.015 +8937,2025-03-08T02:50:52.210704-08:00,1005.8853759765625,10.808001,10808.001 +8938,2025-03-08T02:51:03.014947-08:00,1005.9036865234375,10.804243,10804.243 +8939,2025-03-08T02:51:13.817704-08:00,1005.8707885742188,10.802757,10802.757 +8940,2025-03-08T02:51:24.621920-08:00,1005.8904418945312,10.804216,10804.216 +8941,2025-03-08T02:51:35.434700-08:00,1005.8746948242188,10.81278,10812.78 +8942,2025-03-08T02:51:46.243832-08:00,1005.88134765625,10.809132,10809.132 +8943,2025-03-08T02:51:57.057605-08:00,1005.880126953125,10.813773,10813.773 +8944,2025-03-08T02:52:07.854906-08:00,1005.893310546875,10.797301,10797.301 +8945,2025-03-08T02:52:18.658811-08:00,1005.88134765625,10.803905,10803.905 +8946,2025-03-08T02:52:29.468497-08:00,1005.880126953125,10.809686,10809.686 +8947,2025-03-08T02:52:40.261702-08:00,1005.8643798828125,10.793205,10793.205 +8948,2025-03-08T02:52:51.068056-08:00,1005.8906860351562,10.806354,10806.354 +8949,2025-03-08T02:53:01.882023-08:00,1005.8775024414062,10.813967,10813.967 +8950,2025-03-08T02:53:12.682917-08:00,1005.869873046875,10.800894,10800.894 +8951,2025-03-08T02:53:23.491181-08:00,1005.8682861328125,10.808264,10808.264 +8952,2025-03-08T02:53:34.305035-08:00,1005.8682861328125,10.813854,10813.854 +8953,2025-03-08T02:53:45.113679-08:00,1005.8408813476562,10.808644,10808.644 +8954,2025-03-08T02:53:55.923927-08:00,1005.8749389648438,10.810248,10810.248 +8955,2025-03-08T02:54:06.732790-08:00,1005.8474731445312,10.808863,10808.863 +8956,2025-03-08T02:54:17.525785-08:00,1005.8474731445312,10.792995,10792.995 +8957,2025-03-08T02:54:28.339105-08:00,1005.8448486328125,10.81332,10813.32 +8958,2025-03-08T02:54:39.149066-08:00,1005.8197021484375,10.809961,10809.961 +8959,2025-03-08T02:54:49.952222-08:00,1005.8185424804688,10.803156,10803.156 +8960,2025-03-08T02:55:00.766084-08:00,1005.8052978515625,10.813862,10813.862 +8961,2025-03-08T02:55:11.563162-08:00,1005.7921752929688,10.797078,10797.078 +8962,2025-03-08T02:55:22.371874-08:00,1005.7698364257812,10.808712,10808.712 +8963,2025-03-08T02:55:33.183047-08:00,1005.8119506835938,10.811173,10811.173 +8964,2025-03-08T02:55:43.983721-08:00,1005.8301391601562,10.800674,10800.674 +8965,2025-03-08T02:55:54.785992-08:00,1005.7921752929688,10.802271,10802.271 +8966,2025-03-08T02:56:05.593159-08:00,1005.782958984375,10.807167,10807.167 +8967,2025-03-08T02:56:16.400697-08:00,1005.8078002929688,10.807538,10807.538 +8968,2025-03-08T02:56:27.208214-08:00,1005.8132934570312,10.807517,10807.517 +8969,2025-03-08T02:56:38.010921-08:00,1005.7672119140625,10.802707,10802.707 +8970,2025-03-08T02:56:48.816702-08:00,1005.7869262695312,10.805781,10805.781 +8971,2025-03-08T02:56:59.609233-08:00,1005.7869262695312,10.792531,10792.531 +8972,2025-03-08T02:57:10.416085-08:00,1005.7854614257812,10.806852,10806.852 +8973,2025-03-08T02:57:21.220234-08:00,1005.7579956054688,10.804149,10804.149 +8974,2025-03-08T02:57:32.026530-08:00,1005.7974853515625,10.806296,10806.296 +8975,2025-03-08T02:57:42.841936-08:00,1005.7894287109375,10.815406,10815.406 +8976,2025-03-08T02:57:53.636070-08:00,1005.7631225585938,10.794134,10794.134 +8977,2025-03-08T02:58:04.447172-08:00,1005.7894287109375,10.811102,10811.102 +8978,2025-03-08T02:58:15.246260-08:00,1005.7948608398438,10.799088,10799.088 +8979,2025-03-08T02:58:26.046695-08:00,1005.760498046875,10.800435,10800.435 +8980,2025-03-08T02:58:36.849190-08:00,1005.779052734375,10.802495,10802.495 +8981,2025-03-08T02:58:47.662700-08:00,1005.7276611328125,10.81351,10813.51 +8982,2025-03-08T02:58:58.461707-08:00,1005.773681640625,10.799007,10799.007 +8983,2025-03-08T02:59:09.257704-08:00,1005.790771484375,10.795997,10795.997 +8984,2025-03-08T02:59:20.063089-08:00,1005.7921752929688,10.805385,10805.385 +8985,2025-03-08T02:59:22.809160-08:00,1005.7842407226562,2.746071,2746.071 +8986,2025-03-08T02:59:30.864692-08:00,1005.8038940429688,8.055532,8055.532 +8987,2025-03-08T02:59:41.669927-08:00,1005.7987670898438,10.805235,10805.235 +8988,2025-03-08T02:59:52.476751-08:00,1005.7633056640625,10.806824,10806.824 +8989,2025-03-08T03:00:03.286760-08:00,1005.7764282226562,10.810009,10810.009 +8990,2025-03-08T03:00:14.099692-08:00,1005.7633056640625,10.812932,10812.932 +8991,2025-03-08T03:00:24.898834-08:00,1005.7818603515625,10.799142,10799.142 +8992,2025-03-08T03:00:35.707696-08:00,1005.7672729492188,10.808862,10808.862 +8993,2025-03-08T03:00:46.514870-08:00,1005.7726440429688,10.807174,10807.174 +8994,2025-03-08T03:00:57.305901-08:00,1005.7923583984375,10.791031,10791.031 +8995,2025-03-08T03:01:08.123749-08:00,1005.7726440429688,10.817848,10817.848 +8996,2025-03-08T03:01:18.925697-08:00,1005.77001953125,10.801948,10801.948 +8997,2025-03-08T03:01:29.735970-08:00,1005.7726440429688,10.810273,10810.273 +8998,2025-03-08T03:01:40.531775-08:00,1005.763427734375,10.795805,10795.805 +8999,2025-03-08T03:01:51.336223-08:00,1005.7608032226562,10.804448,10804.448 +9000,2025-03-08T03:02:02.144004-08:00,1005.77001953125,10.807781,10807.781 +9001,2025-03-08T03:02:12.953999-08:00,1005.7673950195312,10.809995,10809.995 +9002,2025-03-08T03:02:23.764271-08:00,1005.7357177734375,10.810272,10810.272 +9003,2025-03-08T03:02:34.567012-08:00,1005.7503051757812,10.802741,10802.741 +9004,2025-03-08T03:02:45.369560-08:00,1005.7593994140625,10.802548,10802.548 +9005,2025-03-08T03:02:56.171885-08:00,1005.7593994140625,10.802325,10802.325 +9006,2025-03-08T03:03:06.980257-08:00,1005.78564453125,10.808372,10808.372 +9007,2025-03-08T03:03:17.784797-08:00,1005.7581787109375,10.80454,10804.54 +9008,2025-03-08T03:03:28.589286-08:00,1005.7516479492188,10.804489,10804.489 +9009,2025-03-08T03:03:39.403694-08:00,1005.7725219726562,10.814408,10814.408 +9010,2025-03-08T03:03:50.199922-08:00,1005.7764282226562,10.796228,10796.228 +9011,2025-03-08T03:04:01.006177-08:00,1005.7830200195312,10.806255,10806.255 +9012,2025-03-08T03:04:11.816842-08:00,1005.7687377929688,10.810665,10810.665 +9013,2025-03-08T03:04:22.623678-08:00,1005.7474975585938,10.806836,10806.836 +9014,2025-03-08T03:04:33.419830-08:00,1005.7474975585938,10.796152,10796.152 +9015,2025-03-08T03:04:44.222699-08:00,1005.7726440429688,10.802869,10802.869 +9016,2025-03-08T03:04:55.024890-08:00,1005.75146484375,10.802191,10802.191 +9017,2025-03-08T03:05:05.829705-08:00,1005.7726440429688,10.804815,10804.815 +9018,2025-03-08T03:05:16.633707-08:00,1005.77001953125,10.804002,10804.002 +9019,2025-03-08T03:05:27.442700-08:00,1005.763427734375,10.808993,10808.993 +9020,2025-03-08T03:05:38.275445-08:00,1005.763427734375,10.832745,10832.745 +9021,2025-03-08T03:05:49.084451-08:00,1005.7568969726562,10.809006,10809.006 +9022,2025-03-08T03:05:59.883453-08:00,1005.7476806640625,10.799002,10799.002 +9023,2025-03-08T03:06:10.688946-08:00,1005.7871704101562,10.805493,10805.493 +9024,2025-03-08T03:06:21.496501-08:00,1005.7462768554688,10.807555,10807.555 +9025,2025-03-08T03:06:32.301435-08:00,1005.7384643554688,10.804934,10804.934 +9026,2025-03-08T03:06:43.113333-08:00,1005.7516479492188,10.811898,10811.898 +9027,2025-03-08T03:06:53.924035-08:00,1005.7779541015625,10.810702,10810.702 +9028,2025-03-08T03:07:04.724741-08:00,1005.7976684570312,10.800706,10800.706 +9029,2025-03-08T03:07:15.529495-08:00,1005.8119506835938,10.804754,10804.754 +9030,2025-03-08T03:07:26.341411-08:00,1005.7636108398438,10.811916,10811.916 +9031,2025-03-08T03:07:37.139841-08:00,1005.8147583007812,10.79843,10798.43 +9032,2025-03-08T03:07:47.940741-08:00,1005.7687377929688,10.8009,10800.9 +9033,2025-03-08T03:07:58.747085-08:00,1005.7965087890625,10.806344,10806.344 +9034,2025-03-08T03:08:09.559439-08:00,1005.8096923828125,10.812354,10812.354 +9035,2025-03-08T03:08:20.365449-08:00,1005.7938842773438,10.80601,10806.01 +9036,2025-03-08T03:08:31.169617-08:00,1005.7949829101562,10.804168,10804.168 +9037,2025-03-08T03:08:41.977444-08:00,1005.7857666015625,10.807827,10807.827 +9038,2025-03-08T03:08:52.779445-08:00,1005.8267211914062,10.802001,10802.001 +9039,2025-03-08T03:09:03.590485-08:00,1005.8253173828125,10.81104,10811.04 +9040,2025-03-08T03:09:14.395492-08:00,1005.8384399414062,10.805007,10805.007 +9041,2025-03-08T03:09:25.192166-08:00,1005.8423461914062,10.796674,10796.674 +9042,2025-03-08T03:09:35.994376-08:00,1005.8161010742188,10.80221,10802.21 +9043,2025-03-08T03:09:46.802572-08:00,1005.8292236328125,10.808196,10808.196 +9044,2025-03-08T03:09:57.611447-08:00,1005.8372802734375,10.808875,10808.875 +9045,2025-03-08T03:10:08.415437-08:00,1005.8478393554688,10.80399,10803.99 +9046,2025-03-08T03:10:19.225678-08:00,1005.806884765625,10.810241,10810.241 +9047,2025-03-08T03:10:30.032744-08:00,1005.8594360351562,10.807066,10807.066 +9048,2025-03-08T03:10:40.836445-08:00,1005.8331298828125,10.803701,10803.701 +9049,2025-03-08T03:10:51.640763-08:00,1005.8412475585938,10.804318,10804.318 +9050,2025-03-08T03:11:02.447755-08:00,1005.8478393554688,10.806992,10806.992 +9051,2025-03-08T03:11:13.252755-08:00,1005.8200073242188,10.805,10805.0 +9052,2025-03-08T03:11:24.060759-08:00,1005.8412475585938,10.808004,10808.004 +9053,2025-03-08T03:11:34.864715-08:00,1005.8189086914062,10.803956,10803.956 +9054,2025-03-08T03:11:45.666859-08:00,1005.8463134765625,10.802144,10802.144 +9055,2025-03-08T03:11:56.474604-08:00,1005.8648681640625,10.807745,10807.745 +9056,2025-03-08T03:12:07.280894-08:00,1005.842529296875,10.80629,10806.29 +9057,2025-03-08T03:12:18.077608-08:00,1005.8568725585938,10.796714,10796.714 +9058,2025-03-08T03:12:28.879868-08:00,1005.838623046875,10.80226,10802.26 +9059,2025-03-08T03:12:39.689655-08:00,1005.8582763671875,10.809787,10809.787 +9060,2025-03-08T03:12:50.488140-08:00,1005.8634643554688,10.798485,10798.485 +9061,2025-03-08T03:13:01.295454-08:00,1005.8568725585938,10.807314,10807.314 +9062,2025-03-08T03:13:12.093729-08:00,1005.841064453125,10.798275,10798.275 +9063,2025-03-08T03:13:22.896757-08:00,1005.8096923828125,10.803028,10803.028 +9064,2025-03-08T03:13:33.709723-08:00,1005.814697265625,10.812966,10812.966 +9065,2025-03-08T03:13:44.509438-08:00,1005.833251953125,10.799715,10799.715 +9066,2025-03-08T03:13:55.311539-08:00,1005.833251953125,10.802101,10802.101 +9067,2025-03-08T03:14:06.115668-08:00,1005.8070068359375,10.804129,10804.129 +9068,2025-03-08T03:14:16.912935-08:00,1005.844970703125,10.797267,10797.267 +9069,2025-03-08T03:14:27.708755-08:00,1005.8201293945312,10.79582,10795.82 +9070,2025-03-08T03:14:38.513696-08:00,1005.8318481445312,10.804941,10804.941 +9071,2025-03-08T03:14:49.318124-08:00,1005.8186645507812,10.804428,10804.428 +9072,2025-03-08T03:15:00.112437-08:00,1005.8029174804688,10.794313,10794.313 +9073,2025-03-08T03:15:10.910651-08:00,1005.8240356445312,10.798214,10798.214 +9074,2025-03-08T03:15:21.721679-08:00,1005.8357543945312,10.811028,10811.028 +9075,2025-03-08T03:15:32.525206-08:00,1005.8357543945312,10.803527,10803.527 +9076,2025-03-08T03:15:43.327755-08:00,1005.8226318359375,10.802549,10802.549 +9077,2025-03-08T03:15:54.131010-08:00,1005.7820434570312,10.803255,10803.255 +9078,2025-03-08T03:16:04.934112-08:00,1005.8134155273438,10.803102,10803.102 +9079,2025-03-08T03:16:15.731765-08:00,1005.8331298828125,10.797653,10797.653 +9080,2025-03-08T03:16:26.540177-08:00,1005.79248046875,10.808412,10808.412 +9081,2025-03-08T03:16:37.337851-08:00,1005.8253784179688,10.797674,10797.674 +9082,2025-03-08T03:16:48.141667-08:00,1005.8110961914062,10.803816,10803.816 +9083,2025-03-08T03:16:58.944607-08:00,1005.7913818359375,10.80294,10802.94 +9084,2025-03-08T03:17:09.753322-08:00,1005.8150024414062,10.808715,10808.715 +9085,2025-03-08T03:17:20.546453-08:00,1005.8084106445312,10.793131,10793.131 +9086,2025-03-08T03:17:31.355440-08:00,1005.7740478515625,10.808987,10808.987 +9087,2025-03-08T03:17:42.157502-08:00,1005.8004760742188,10.802062,10802.062 +9088,2025-03-08T03:17:52.961451-08:00,1005.8070068359375,10.803949,10803.949 +9089,2025-03-08T03:18:03.765477-08:00,1005.833251953125,10.804026,10804.026 +9090,2025-03-08T03:18:14.565445-08:00,1005.8240356445312,10.799968,10799.968 +9091,2025-03-08T03:18:25.372565-08:00,1005.7977905273438,10.80712,10807.12 +9092,2025-03-08T03:18:36.167429-08:00,1005.8306274414062,10.794864,10794.864 +9093,2025-03-08T03:18:46.976943-08:00,1005.8163452148438,10.809514,10809.514 +9094,2025-03-08T03:18:57.779770-08:00,1005.795166015625,10.802827,10802.827 +9095,2025-03-08T03:19:08.582560-08:00,1005.8043823242188,10.80279,10802.79 +9096,2025-03-08T03:19:19.393056-08:00,1005.783447265625,10.810496,10810.496 +9097,2025-03-08T03:19:30.200729-08:00,1005.78857421875,10.807673,10807.673 +9098,2025-03-08T03:19:40.995608-08:00,1005.8279418945312,10.794879,10794.879 +9099,2025-03-08T03:19:51.788712-08:00,1005.826904296875,10.793104,10793.104 +9100,2025-03-08T03:20:02.593443-08:00,1005.7597045898438,10.804731,10804.731 +9101,2025-03-08T03:20:13.404693-08:00,1005.7754516601562,10.81125,10811.25 +9102,2025-03-08T03:20:24.195835-08:00,1005.7650146484375,10.791142,10791.142 +9103,2025-03-08T03:20:35.003451-08:00,1005.799072265625,10.807616,10807.616 +9104,2025-03-08T03:20:45.808430-08:00,1005.7716674804688,10.804979,10804.979 +9105,2025-03-08T03:20:56.617769-08:00,1005.7979736328125,10.809339,10809.339 +9106,2025-03-08T03:21:07.413582-08:00,1005.7584228515625,10.795813,10795.813 +9107,2025-03-08T03:21:18.223610-08:00,1005.762451171875,10.810028,10810.028 +9108,2025-03-08T03:21:29.015677-08:00,1005.7781982421875,10.792067,10792.067 +9109,2025-03-08T03:21:39.821450-08:00,1005.762451171875,10.805773,10805.773 +9110,2025-03-08T03:21:50.621449-08:00,1005.75048828125,10.799999,10799.999 +9111,2025-03-08T03:22:01.424726-08:00,1005.7898559570312,10.803277,10803.277 +9112,2025-03-08T03:22:12.231451-08:00,1005.79638671875,10.806725,10806.725 +9113,2025-03-08T03:22:23.038453-08:00,1005.7689819335938,10.807002,10807.002 +9114,2025-03-08T03:22:33.835743-08:00,1005.7806396484375,10.79729,10797.29 +9115,2025-03-08T03:22:44.640732-08:00,1005.7648315429688,10.804989,10804.989 +9116,2025-03-08T03:22:55.447451-08:00,1005.7268676757812,10.806719,10806.719 +9117,2025-03-08T03:23:06.245459-08:00,1005.7664184570312,10.798008,10798.008 +9118,2025-03-08T03:23:17.053453-08:00,1005.7334594726562,10.807994,10807.994 +9119,2025-03-08T03:23:27.847577-08:00,1005.7412719726562,10.794124,10794.124 +9120,2025-03-08T03:23:38.657683-08:00,1005.7466430664062,10.810106,10810.106 +9121,2025-03-08T03:23:49.458461-08:00,1005.7385864257812,10.800778,10800.778 +9122,2025-03-08T03:24:00.263476-08:00,1005.7374267578125,10.805015,10805.015 +9123,2025-03-08T03:24:11.065746-08:00,1005.7439575195312,10.80227,10802.27 +9124,2025-03-08T03:24:21.879453-08:00,1005.7703247070312,10.813707,10813.707 +9125,2025-03-08T03:24:32.681522-08:00,1005.7282104492188,10.802069,10802.069 +9126,2025-03-08T03:24:43.486443-08:00,1005.7296752929688,10.804921,10804.921 +9127,2025-03-08T03:24:54.289487-08:00,1005.7572021484375,10.803044,10803.044 +9128,2025-03-08T03:25:05.097872-08:00,1005.7427978515625,10.808385,10808.385 +9129,2025-03-08T03:25:15.908323-08:00,1005.7493896484375,10.810451,10810.451 +9130,2025-03-08T03:25:26.711026-08:00,1005.7625122070312,10.802703,10802.703 +9131,2025-03-08T03:25:37.514641-08:00,1005.7401733398438,10.803615,10803.615 +9132,2025-03-08T03:25:48.314702-08:00,1005.73486328125,10.800061,10800.061 +9133,2025-03-08T03:25:59.120005-08:00,1005.7335815429688,10.805303,10805.303 +9134,2025-03-08T03:26:09.924631-08:00,1005.7401733398438,10.804626,10804.626 +9135,2025-03-08T03:26:20.726774-08:00,1005.7599487304688,10.802143,10802.143 +9136,2025-03-08T03:26:31.531001-08:00,1005.73876953125,10.804227,10804.227 +9137,2025-03-08T03:26:42.330957-08:00,1005.732177734375,10.799956,10799.956 +9138,2025-03-08T03:26:53.136762-08:00,1005.7112426757812,10.805805,10805.805 +9139,2025-03-08T03:27:03.940005-08:00,1005.744140625,10.803243,10803.243 +9140,2025-03-08T03:27:14.744278-08:00,1005.7229614257812,10.804273,10804.273 +9141,2025-03-08T03:27:25.546745-08:00,1005.7229614257812,10.802467,10802.467 +9142,2025-03-08T03:27:36.343281-08:00,1005.7086181640625,10.796536,10796.536 +9143,2025-03-08T03:27:47.152778-08:00,1005.7283325195312,10.809497,10809.497 +9144,2025-03-08T03:27:57.955679-08:00,1005.7295532226562,10.802901,10802.901 +9145,2025-03-08T03:28:08.759010-08:00,1005.739990234375,10.803331,10803.331 +9146,2025-03-08T03:28:19.569068-08:00,1005.7322387695312,10.810058,10810.058 +9147,2025-03-08T03:28:30.366808-08:00,1005.757080078125,10.79774,10797.74 +9148,2025-03-08T03:28:41.163928-08:00,1005.7307739257812,10.79712,10797.12 +9149,2025-03-08T03:28:51.972762-08:00,1005.7296752929688,10.808834,10808.834 +9150,2025-03-08T03:29:02.768199-08:00,1005.7242431640625,10.795437,10795.437 +9151,2025-03-08T03:29:13.568724-08:00,1005.7215576171875,10.800525,10800.525 +9152,2025-03-08T03:29:24.378759-08:00,1005.7586059570312,10.810035,10810.035 +9153,2025-03-08T03:29:35.173759-08:00,1005.7164916992188,10.795,10795.0 +9154,2025-03-08T03:29:45.971434-08:00,1005.7373657226562,10.797675,10797.675 +9155,2025-03-08T03:29:56.770447-08:00,1005.7478637695312,10.799013,10799.013 +9156,2025-03-08T03:30:07.582847-08:00,1005.7478637695312,10.8124,10812.4 +9157,2025-03-08T03:30:18.382429-08:00,1005.7332763671875,10.799582,10799.582 +9158,2025-03-08T03:30:29.183441-08:00,1005.7463989257812,10.801012,10801.012 +9159,2025-03-08T03:30:39.984683-08:00,1005.7449951171875,10.801242,10801.242 +9160,2025-03-08T03:30:50.787519-08:00,1005.7383422851562,10.802836,10802.836 +9161,2025-03-08T03:31:01.596449-08:00,1005.7291259765625,10.80893,10808.93 +9162,2025-03-08T03:31:12.385455-08:00,1005.7700805664062,10.789006,10789.006 +9163,2025-03-08T03:31:23.196457-08:00,1005.7620239257812,10.811002,10811.002 +9164,2025-03-08T03:31:33.990684-08:00,1005.7410888671875,10.794227,10794.227 +9165,2025-03-08T03:31:44.796583-08:00,1005.7593994140625,10.805899,10805.899 +9166,2025-03-08T03:31:55.595454-08:00,1005.7528076171875,10.798871,10798.871 +9167,2025-03-08T03:32:06.402838-08:00,1005.7542724609375,10.807384,10807.384 +9168,2025-03-08T03:32:17.200147-08:00,1005.7542724609375,10.797309,10797.309 +9169,2025-03-08T03:32:28.010441-08:00,1005.738525390625,10.810294,10810.294 +9170,2025-03-08T03:32:38.807453-08:00,1005.7648315429688,10.797012,10797.012 +9171,2025-03-08T03:32:49.618600-08:00,1005.7516479492188,10.811147,10811.147 +9172,2025-03-08T03:33:00.419506-08:00,1005.7833862304688,10.800906,10800.906 +9173,2025-03-08T03:33:11.224000-08:00,1005.73583984375,10.804494,10804.494 +9174,2025-03-08T03:33:22.031450-08:00,1005.7648315429688,10.80745,10807.45 +9175,2025-03-08T03:33:32.825432-08:00,1005.75439453125,10.793982,10793.982 +9176,2025-03-08T03:33:43.632661-08:00,1005.716064453125,10.807229,10807.229 +9177,2025-03-08T03:33:54.429439-08:00,1005.7609252929688,10.796778,10796.778 +9178,2025-03-08T03:34:05.236434-08:00,1005.747802734375,10.806995,10806.995 +9179,2025-03-08T03:34:16.038337-08:00,1005.7529907226562,10.801903,10801.903 +9180,2025-03-08T03:34:26.840505-08:00,1005.7529907226562,10.802168,10802.168 +9181,2025-03-08T03:34:37.644566-08:00,1005.7463989257812,10.804061,10804.061 +9182,2025-03-08T03:34:48.458661-08:00,1005.7320556640625,10.814095,10814.095 +9183,2025-03-08T03:34:59.255488-08:00,1005.7371826171875,10.796827,10796.827 +9184,2025-03-08T03:35:10.068686-08:00,1005.7622680664062,10.813198,10813.198 +9185,2025-03-08T03:35:20.873714-08:00,1005.7174072265625,10.805028,10805.028 +9186,2025-03-08T03:35:31.676447-08:00,1005.7424926757812,10.802733,10802.733 +9187,2025-03-08T03:35:42.479430-08:00,1005.7359619140625,10.802983,10802.983 +9188,2025-03-08T03:35:53.292728-08:00,1005.7491455078125,10.813298,10813.298 +9189,2025-03-08T03:36:04.098075-08:00,1005.7556762695312,10.805347,10805.347 +9190,2025-03-08T03:36:14.896510-08:00,1005.7410888671875,10.798435,10798.435 +9191,2025-03-08T03:36:25.705411-08:00,1005.7597045898438,10.808901,10808.901 +9192,2025-03-08T03:36:36.514720-08:00,1005.7581176757812,10.809309,10809.309 +9193,2025-03-08T03:36:47.316770-08:00,1005.771240234375,10.80205,10802.05 +9194,2025-03-08T03:36:58.126784-08:00,1005.7570190429688,10.810014,10810.014 +9195,2025-03-08T03:37:08.929999-08:00,1005.75048828125,10.803215,10803.215 +9196,2025-03-08T03:37:19.732941-08:00,1005.784423828125,10.802942,10802.942 +9197,2025-03-08T03:37:30.541424-08:00,1005.7701416015625,10.808483,10808.483 +9198,2025-03-08T03:37:41.337138-08:00,1005.8015747070312,10.795714,10795.714 +9199,2025-03-08T03:37:52.142525-08:00,1005.7949829101562,10.805387,10805.387 +9200,2025-03-08T03:38:02.945992-08:00,1005.8015747070312,10.803467,10803.467 +9201,2025-03-08T03:38:13.749500-08:00,1005.80810546875,10.803508,10803.508 +9202,2025-03-08T03:38:24.553394-08:00,1005.7937622070312,10.803894,10803.894 +9203,2025-03-08T03:38:35.351807-08:00,1005.7871704101562,10.798413,10798.413 +9204,2025-03-08T03:38:46.161927-08:00,1005.7845458984375,10.81012,10810.12 +9205,2025-03-08T03:38:56.966437-08:00,1005.81201171875,10.80451,10804.51 +9206,2025-03-08T03:39:07.764784-08:00,1005.837158203125,10.798347,10798.347 +9207,2025-03-08T03:39:18.578434-08:00,1005.8251342773438,10.81365,10813.65 +9208,2025-03-08T03:39:29.378444-08:00,1005.81591796875,10.80001,10800.01 +9209,2025-03-08T03:39:40.186589-08:00,1005.8027954101562,10.808145,10808.145 +9210,2025-03-08T03:39:50.990449-08:00,1005.8147583007812,10.80386,10803.86 +9211,2025-03-08T03:40:01.794449-08:00,1005.81591796875,10.804,10804.0 +9212,2025-03-08T03:40:12.591581-08:00,1005.822509765625,10.797132,10797.132 +9213,2025-03-08T03:40:23.388440-08:00,1005.8016357421875,10.796859,10796.859 +9214,2025-03-08T03:40:34.190828-08:00,1005.8055419921875,10.802388,10802.388 +9215,2025-03-08T03:40:44.999457-08:00,1005.8384399414062,10.808629,10808.629 +9216,2025-03-08T03:40:55.794332-08:00,1005.8345336914062,10.794875,10794.875 +9217,2025-03-08T03:41:06.600657-08:00,1005.8395385742188,10.806325,10806.325 +9218,2025-03-08T03:41:17.400897-08:00,1005.8790893554688,10.80024,10800.24 +9219,2025-03-08T03:41:28.201999-08:00,1005.8175048828125,10.801102,10801.102 +9220,2025-03-08T03:41:39.006459-08:00,1005.8504028320312,10.80446,10804.46 +9221,2025-03-08T03:41:49.807755-08:00,1005.8515625,10.801296,10801.296 +9222,2025-03-08T03:42:00.611728-08:00,1005.802978515625,10.803973,10803.973 +9223,2025-03-08T03:42:11.405497-08:00,1005.848876953125,10.793769,10793.769 +9224,2025-03-08T03:42:22.212614-08:00,1005.8504028320312,10.807117,10807.117 +9225,2025-03-08T03:42:33.005430-08:00,1005.8543090820312,10.792816,10792.816 +9226,2025-03-08T03:42:43.808475-08:00,1005.8423461914062,10.803045,10803.045 +9227,2025-03-08T03:42:54.613176-08:00,1005.8674926757812,10.804701,10804.701 +9228,2025-03-08T03:43:05.409435-08:00,1005.8609619140625,10.796259,10796.259 +9229,2025-03-08T03:43:16.211672-08:00,1005.8543090820312,10.802237,10802.237 +9230,2025-03-08T03:43:27.007456-08:00,1005.8648681640625,10.795784,10795.784 +9231,2025-03-08T03:43:37.816441-08:00,1005.8713989257812,10.808985,10808.985 +9232,2025-03-08T03:43:48.616684-08:00,1005.8713989257812,10.800243,10800.243 +9233,2025-03-08T03:43:59.415563-08:00,1005.8343505859375,10.798879,10798.879 +9234,2025-03-08T03:44:10.205830-08:00,1005.856689453125,10.790267,10790.267 +9235,2025-03-08T03:44:21.003710-08:00,1005.86328125,10.79788,10797.88 +9236,2025-03-08T03:44:31.806730-08:00,1005.8370361328125,10.80302,10803.02 +9237,2025-03-08T03:44:42.604452-08:00,1005.87646484375,10.797722,10797.722 +9238,2025-03-08T03:44:53.401786-08:00,1005.842529296875,10.797334,10797.334 +9239,2025-03-08T03:45:04.193451-08:00,1005.8359375,10.791665,10791.665 +9240,2025-03-08T03:45:14.992440-08:00,1005.8540649414062,10.798989,10798.989 +9241,2025-03-08T03:45:25.800703-08:00,1005.856689453125,10.808263,10808.263 +9242,2025-03-08T03:45:36.601533-08:00,1005.8607177734375,10.80083,10800.83 +9243,2025-03-08T03:45:47.402445-08:00,1005.888427734375,10.800912,10800.912 +9244,2025-03-08T03:45:58.209707-08:00,1005.8409423828125,10.807262,10807.262 +9245,2025-03-08T03:46:09.010585-08:00,1005.8621826171875,10.800878,10800.878 +9246,2025-03-08T03:46:19.811932-08:00,1005.8490600585938,10.801347,10801.347 +9247,2025-03-08T03:46:30.621617-08:00,1005.8343505859375,10.809685,10809.685 +9248,2025-03-08T03:46:41.422452-08:00,1005.8687744140625,10.800835,10800.835 +9249,2025-03-08T03:46:52.226420-08:00,1005.8607177734375,10.803968,10803.968 +9250,2025-03-08T03:47:03.027433-08:00,1005.8699340820312,10.801013,10801.013 +9251,2025-03-08T03:47:13.838488-08:00,1005.8621826171875,10.811055,10811.055 +9252,2025-03-08T03:47:24.642683-08:00,1005.856689453125,10.804195,10804.195 +9253,2025-03-08T03:47:35.440571-08:00,1005.8582763671875,10.797888,10797.888 +9254,2025-03-08T03:47:46.242424-08:00,1005.8856811523438,10.801853,10801.853 +9255,2025-03-08T03:47:57.049449-08:00,1005.88720703125,10.807025,10807.025 +9256,2025-03-08T03:48:07.844435-08:00,1005.88720703125,10.794986,10794.986 +9257,2025-03-08T03:48:18.642577-08:00,1005.88330078125,10.798142,10798.142 +9258,2025-03-08T03:48:29.445439-08:00,1005.863525390625,10.802862,10802.862 +9259,2025-03-08T03:48:40.247455-08:00,1005.8712768554688,10.802016,10802.016 +9260,2025-03-08T03:48:51.045509-08:00,1005.8646850585938,10.798054,10798.054 +9261,2025-03-08T03:49:01.843496-08:00,1005.8804931640625,10.797987,10797.987 +9262,2025-03-08T03:49:12.646755-08:00,1005.8856201171875,10.803259,10803.259 +9263,2025-03-08T03:49:23.455134-08:00,1005.8870239257812,10.808379,10808.379 +9264,2025-03-08T03:49:34.254912-08:00,1005.8948364257812,10.799778,10799.778 +9265,2025-03-08T03:49:45.057448-08:00,1005.896240234375,10.802536,10802.536 +9266,2025-03-08T03:49:55.860737-08:00,1005.8975219726562,10.803289,10803.289 +9267,2025-03-08T03:50:06.656891-08:00,1005.892333984375,10.796154,10796.154 +9268,2025-03-08T03:50:17.470708-08:00,1005.8831176757812,10.813817,10813.817 +9269,2025-03-08T03:50:28.271452-08:00,1005.89892578125,10.800744,10800.744 +9270,2025-03-08T03:50:39.073075-08:00,1005.9146728515625,10.801623,10801.623 +9271,2025-03-08T03:50:49.869755-08:00,1005.89501953125,10.79668,10796.68 +9272,2025-03-08T03:51:00.672757-08:00,1005.8976440429688,10.803002,10803.002 +9273,2025-03-08T03:51:11.476765-08:00,1005.8961791992188,10.804008,10804.008 +9274,2025-03-08T03:51:22.281030-08:00,1005.9068603515625,10.804265,10804.265 +9275,2025-03-08T03:51:33.084005-08:00,1005.8987426757812,10.802975,10802.975 +9276,2025-03-08T03:51:43.891832-08:00,1005.921142578125,10.807827,10807.827 +9277,2025-03-08T03:51:54.685715-08:00,1005.9384155273438,10.793883,10793.883 +9278,2025-03-08T03:52:05.486751-08:00,1005.8870239257812,10.801036,10801.036 +9279,2025-03-08T03:52:16.294207-08:00,1005.9263916015625,10.807456,10807.456 +9280,2025-03-08T03:52:27.094205-08:00,1005.9500122070312,10.799998,10799.998 +9281,2025-03-08T03:52:37.893634-08:00,1005.9093627929688,10.799429,10799.429 +9282,2025-03-08T03:52:48.702744-08:00,1005.892333984375,10.80911,10809.11 +9283,2025-03-08T03:52:59.510718-08:00,1005.9238891601562,10.807974,10807.974 +9284,2025-03-08T03:53:10.312359-08:00,1005.93701171875,10.801641,10801.641 +9285,2025-03-08T03:53:21.107565-08:00,1005.9121704101562,10.795206,10795.206 +9286,2025-03-08T03:53:31.907694-08:00,1005.9056396484375,10.800129,10800.129 +9287,2025-03-08T03:53:42.717998-08:00,1005.9268798828125,10.810304,10810.304 +9288,2025-03-08T03:53:53.520078-08:00,1005.9437255859375,10.80208,10802.08 +9289,2025-03-08T03:54:04.311450-08:00,1005.924072265625,10.791372,10791.372 +9290,2025-03-08T03:54:15.120504-08:00,1005.8978271484375,10.809054,10809.054 +9291,2025-03-08T03:54:25.925659-08:00,1005.9070434570312,10.805155,10805.155 +9292,2025-03-08T03:54:36.721497-08:00,1005.925537109375,10.795838,10795.838 +9293,2025-03-08T03:54:47.525504-08:00,1005.9096069335938,10.804007,10804.007 +9294,2025-03-08T03:54:58.334585-08:00,1005.903076171875,10.809081,10809.081 +9295,2025-03-08T03:55:09.132451-08:00,1005.9241943359375,10.797866,10797.866 +9296,2025-03-08T03:55:19.940446-08:00,1005.9202880859375,10.807995,10807.995 +9297,2025-03-08T03:55:30.743501-08:00,1005.9148559570312,10.803055,10803.055 +9298,2025-03-08T03:55:41.552360-08:00,1005.9307250976562,10.808859,10808.859 +9299,2025-03-08T03:55:52.345641-08:00,1005.931884765625,10.793281,10793.281 +9300,2025-03-08T03:56:03.147432-08:00,1005.8923950195312,10.801791,10801.791 +9301,2025-03-08T03:56:13.957893-08:00,1005.9332885742188,10.810461,10810.461 +9302,2025-03-08T03:56:24.765744-08:00,1005.914794921875,10.807851,10807.851 +9303,2025-03-08T03:56:35.570744-08:00,1005.9319458007812,10.805,10805.0 +9304,2025-03-08T03:56:46.370784-08:00,1005.916259765625,10.80004,10800.04 +9305,2025-03-08T03:56:57.170494-08:00,1005.892578125,10.79971,10799.71 +9306,2025-03-08T03:57:07.979631-08:00,1005.9254760742188,10.809137,10809.137 +9307,2025-03-08T03:57:18.772997-08:00,1005.954345703125,10.793366,10793.366 +9308,2025-03-08T03:57:29.574441-08:00,1005.9620971679688,10.801444,10801.444 +9309,2025-03-08T03:57:40.384493-08:00,1005.95556640625,10.810052,10810.052 +9310,2025-03-08T03:57:51.187456-08:00,1005.9515380859375,10.802963,10802.963 +9311,2025-03-08T03:58:01.983447-08:00,1005.946533203125,10.795991,10795.991 +9312,2025-03-08T03:58:12.794453-08:00,1005.9268188476562,10.811006,10811.006 +9313,2025-03-08T03:58:23.596479-08:00,1005.9082641601562,10.802026,10802.026 +9314,2025-03-08T03:58:34.396451-08:00,1005.955810546875,10.799972,10799.972 +9315,2025-03-08T03:58:45.202883-08:00,1005.9251708984375,10.806432,10806.432 +9316,2025-03-08T03:58:56.005456-08:00,1005.9464111328125,10.802573,10802.573 +9317,2025-03-08T03:59:06.816303-08:00,1005.9068603515625,10.810847,10810.847 +9318,2025-03-08T03:59:17.602645-08:00,1005.9490356445312,10.786342,10786.342 +9319,2025-03-08T03:59:28.405580-08:00,1005.943603515625,10.802935,10802.935 +9320,2025-03-08T03:59:39.209477-08:00,1005.931884765625,10.803897,10803.897 +9321,2025-03-08T03:59:50.012742-08:00,1005.9528198242188,10.803265,10803.265 +9322,2025-03-08T04:00:00.804457-08:00,1005.9067993164062,10.791715,10791.715 +9323,2025-03-08T04:00:11.608123-08:00,1005.92138671875,10.803666,10803.666 +9324,2025-03-08T04:00:22.404452-08:00,1005.9449462890625,10.796329,10796.329 +9325,2025-03-08T04:00:33.213489-08:00,1005.9266967773438,10.809037,10809.037 +9326,2025-03-08T04:00:44.006444-08:00,1005.96337890625,10.792955,10792.955 +9327,2025-03-08T04:00:54.813824-08:00,1005.945068359375,10.80738,10807.38 +9328,2025-03-08T04:01:05.605984-08:00,1005.9319458007812,10.79216,10792.16 +9329,2025-03-08T04:01:16.415816-08:00,1005.9423217773438,10.809832,10809.832 +9330,2025-03-08T04:01:27.211792-08:00,1005.9515380859375,10.795976,10795.976 +9331,2025-03-08T04:01:38.011054-08:00,1005.9132690429688,10.799262,10799.262 +9332,2025-03-08T04:01:48.802451-08:00,1005.8790893554688,10.791397,10791.397 +9333,2025-03-08T04:01:59.610010-08:00,1005.91845703125,10.807559,10807.559 +9334,2025-03-08T04:02:10.403761-08:00,1005.8765869140625,10.793751,10793.751 +9335,2025-03-08T04:02:21.211499-08:00,1005.8579711914062,10.807738,10807.738 +9336,2025-03-08T04:02:32.010508-08:00,1005.8331298828125,10.799009,10799.009 +9337,2025-03-08T04:02:42.808512-08:00,1005.9173583984375,10.798004,10798.004 +9338,2025-03-08T04:02:53.609786-08:00,1005.8646850585938,10.801274,10801.274 +9339,2025-03-08T04:03:04.409495-08:00,1005.8685302734375,10.799709,10799.709 +9340,2025-03-08T04:03:15.209575-08:00,1005.8696899414062,10.80008,10800.08 +9341,2025-03-08T04:03:26.002565-08:00,1005.8934936523438,10.79299,10792.99 +9342,2025-03-08T04:03:36.814310-08:00,1005.860595703125,10.811745,10811.745 +9343,2025-03-08T04:03:47.606798-08:00,1005.8829956054688,10.792488,10792.488 +9344,2025-03-08T04:03:58.412973-08:00,1005.8841552734375,10.806175,10806.175 +9345,2025-03-08T04:04:09.207839-08:00,1005.8724975585938,10.794866,10794.866 +9346,2025-03-08T04:04:20.007784-08:00,1005.8395385742188,10.799945,10799.945 +9347,2025-03-08T04:04:30.810011-08:00,1005.907958984375,10.802227,10802.227 +9348,2025-03-08T04:04:41.609498-08:00,1005.904052734375,10.799487,10799.487 +9349,2025-03-08T04:04:52.401504-08:00,1005.87890625,10.792006,10792.006 +9350,2025-03-08T04:05:03.197442-08:00,1005.9209594726562,10.795938,10795.938 +9351,2025-03-08T04:05:13.995680-08:00,1005.8803100585938,10.798238,10798.238 +9352,2025-03-08T04:05:24.802875-08:00,1005.8829956054688,10.807195,10807.195 +9353,2025-03-08T04:05:35.603378-08:00,1005.8775024414062,10.800503,10800.503 +9354,2025-03-08T04:05:46.397053-08:00,1005.869873046875,10.793675,10793.675 +9355,2025-03-08T04:05:57.193803-08:00,1005.8775024414062,10.79675,10796.75 +9356,2025-03-08T04:06:07.988173-08:00,1005.9181518554688,10.79437,10794.37 +9357,2025-03-08T04:06:18.792756-08:00,1005.884033203125,10.804583,10804.583 +9358,2025-03-08T04:06:29.596128-08:00,1005.8721313476562,10.803372,10803.372 +9359,2025-03-08T04:06:40.393067-08:00,1005.8853149414062,10.796939,10796.939 +9360,2025-03-08T04:06:51.188072-08:00,1005.89453125,10.795005,10795.005 +9361,2025-03-08T04:07:01.993072-08:00,1005.901123046875,10.805,10805.0 +9362,2025-03-08T04:07:12.792056-08:00,1005.8670043945312,10.798984,10798.984 +9363,2025-03-08T04:07:23.590066-08:00,1005.8959350585938,10.79801,10798.01 +9364,2025-03-08T04:07:34.392263-08:00,1005.8828125,10.802197,10802.197 +9365,2025-03-08T04:07:45.191555-08:00,1005.8839111328125,10.799292,10799.292 +9366,2025-03-08T04:07:55.985399-08:00,1005.8986206054688,10.793844,10793.844 +9367,2025-03-08T04:08:06.793207-08:00,1005.8970947265625,10.807808,10807.808 +9368,2025-03-08T04:08:17.597316-08:00,1005.8970947265625,10.804109,10804.109 +9369,2025-03-08T04:08:28.398342-08:00,1005.8681030273438,10.801026,10801.026 +9370,2025-03-08T04:08:39.191118-08:00,1005.8986206054688,10.792776,10792.776 +9371,2025-03-08T04:08:50.000405-08:00,1005.8590698242188,10.809287,10809.287 +9372,2025-03-08T04:09:00.802401-08:00,1005.8734130859375,10.801996,10801.996 +9373,2025-03-08T04:09:11.607207-08:00,1005.8904418945312,10.804806,10804.806 +9374,2025-03-08T04:09:22.405305-08:00,1005.8880615234375,10.798098,10798.098 +9375,2025-03-08T04:09:33.208386-08:00,1005.9011840820312,10.803081,10803.081 +9376,2025-03-08T04:09:44.011573-08:00,1005.895751953125,10.803187,10803.187 +9377,2025-03-08T04:09:54.824065-08:00,1005.8629150390625,10.812492,10812.492 +9378,2025-03-08T04:10:05.623451-08:00,1005.8694458007812,10.799386,10799.386 +9379,2025-03-08T04:10:16.419390-08:00,1005.88525390625,10.795939,10795.939 +9380,2025-03-08T04:10:27.229415-08:00,1005.8709106445312,10.810025,10810.025 +9381,2025-03-08T04:10:38.026348-08:00,1005.8998413085938,10.796933,10796.933 +9382,2025-03-08T04:10:48.834479-08:00,1005.880126953125,10.808131,10808.131 +9383,2025-03-08T04:10:59.644078-08:00,1005.8746948242188,10.809599,10809.599 +9384,2025-03-08T04:11:10.442646-08:00,1005.8959350585938,10.798568,10798.568 +9385,2025-03-08T04:11:21.240356-08:00,1005.8904418945312,10.79771,10797.71 +9386,2025-03-08T04:11:32.044229-08:00,1005.903564453125,10.803873,10803.873 +9387,2025-03-08T04:11:42.846760-08:00,1005.92333984375,10.802531,10802.531 +9388,2025-03-08T04:11:53.644131-08:00,1005.8814086914062,10.797371,10797.371 +9389,2025-03-08T04:12:04.448738-08:00,1005.899658203125,10.804607,10804.607 +9390,2025-03-08T04:12:15.245293-08:00,1005.9220581054688,10.796555,10796.555 +9391,2025-03-08T04:12:26.043066-08:00,1005.927490234375,10.797773,10797.773 +9392,2025-03-08T04:12:36.856386-08:00,1005.9154663085938,10.81332,10813.32 +9393,2025-03-08T04:12:47.660812-08:00,1005.90234375,10.804426,10804.426 +9394,2025-03-08T04:12:58.464318-08:00,1005.9297485351562,10.803506,10803.506 +9395,2025-03-08T04:13:09.261092-08:00,1005.9115600585938,10.796774,10796.774 +9396,2025-03-08T04:13:20.065068-08:00,1005.9115600585938,10.803976,10803.976 +9397,2025-03-08T04:13:30.874473-08:00,1005.9126586914062,10.809405,10809.405 +9398,2025-03-08T04:13:41.671067-08:00,1005.93896484375,10.796594,10796.594 +9399,2025-03-08T04:13:52.477240-08:00,1005.928466796875,10.806173,10806.173 +9400,2025-03-08T04:14:03.277271-08:00,1005.9087524414062,10.800031,10800.031 +9401,2025-03-08T04:14:14.087685-08:00,1005.8955688476562,10.810414,10810.414 +9402,2025-03-08T04:14:24.883253-08:00,1005.9376831054688,10.795568,10795.568 +9403,2025-03-08T04:14:35.695372-08:00,1005.924560546875,10.812119,10812.119 +9404,2025-03-08T04:14:46.497522-08:00,1005.9193725585938,10.80215,10802.15 +9405,2025-03-08T04:14:57.302368-08:00,1005.9220581054688,10.804846,10804.846 +9406,2025-03-08T04:15:08.108847-08:00,1005.962646484375,10.806479,10806.479 +9407,2025-03-08T04:15:18.911626-08:00,1005.93115234375,10.802779,10802.779 +9408,2025-03-08T04:15:29.709453-08:00,1005.93115234375,10.797827,10797.827 +9409,2025-03-08T04:15:40.517387-08:00,1005.933837890625,10.807934,10807.934 +9410,2025-03-08T04:15:51.315743-08:00,1005.933837890625,10.798356,10798.356 +9411,2025-03-08T04:16:02.123583-08:00,1005.9782104492188,10.80784,10807.84 +9412,2025-03-08T04:16:12.935327-08:00,1005.927001953125,10.811744,10811.744 +9413,2025-03-08T04:16:23.727452-08:00,1005.9771728515625,10.792125,10792.125 +9414,2025-03-08T04:16:34.535190-08:00,1005.9676513671875,10.807738,10807.738 +9415,2025-03-08T04:16:45.339424-08:00,1005.9918212890625,10.804234,10804.234 +9416,2025-03-08T04:16:56.148503-08:00,1005.9589233398438,10.809079,10809.079 +9417,2025-03-08T04:17:06.945415-08:00,1006.002197265625,10.796912,10796.912 +9418,2025-03-08T04:17:17.752459-08:00,1006.0179443359375,10.807044,10807.044 +9419,2025-03-08T04:17:28.562077-08:00,1006.0271606445312,10.809618,10809.618 +9420,2025-03-08T04:17:39.359655-08:00,1006.0062255859375,10.797578,10797.578 +9421,2025-03-08T04:17:50.165071-08:00,1006.0154418945312,10.805416,10805.416 +9422,2025-03-08T04:18:00.967553-08:00,1006.024658203125,10.802482,10802.482 +9423,2025-03-08T04:18:11.775245-08:00,1006.0443725585938,10.807692,10807.692 +9424,2025-03-08T04:18:22.576399-08:00,1006.0257568359375,10.801154,10801.154 +9425,2025-03-08T04:18:33.390104-08:00,1006.0048217773438,10.813705,10813.705 +9426,2025-03-08T04:18:44.186168-08:00,1006.0349731445312,10.796064,10796.064 +9427,2025-03-08T04:18:54.995308-08:00,1006.0338134765625,10.80914,10809.14 +9428,2025-03-08T04:19:05.794062-08:00,1006.0349731445312,10.798754,10798.754 +9429,2025-03-08T04:19:16.600280-08:00,1006.0349731445312,10.806218,10806.218 +9430,2025-03-08T04:19:27.405283-08:00,1006.0360717773438,10.805003,10805.003 +9431,2025-03-08T04:19:38.218292-08:00,1006.044189453125,10.813009,10813.009 +9432,2025-03-08T04:19:49.016383-08:00,1006.0244750976562,10.798091,10798.091 +9433,2025-03-08T04:19:59.820066-08:00,1006.0321655273438,10.803683,10803.683 +9434,2025-03-08T04:20:10.629586-08:00,1006.0650634765625,10.80952,10809.52 +9435,2025-03-08T04:20:21.424056-08:00,1006.0376586914062,10.79447,10794.47 +9436,2025-03-08T04:20:32.235072-08:00,1006.053466796875,10.811016,10811.016 +9437,2025-03-08T04:20:43.039063-08:00,1006.0599975585938,10.803991,10803.991 +9438,2025-03-08T04:20:53.841069-08:00,1006.0560302734375,10.802006,10802.006 +9439,2025-03-08T04:21:04.647066-08:00,1006.0691528320312,10.805997,10805.997 +9440,2025-03-08T04:21:15.447061-08:00,1006.063720703125,10.799995,10799.995 +9441,2025-03-08T04:21:26.256285-08:00,1006.0493774414062,10.809224,10809.224 +9442,2025-03-08T04:21:37.050061-08:00,1006.052001953125,10.793776,10793.776 +9443,2025-03-08T04:21:47.863046-08:00,1006.0440063476562,10.812985,10812.985 +9444,2025-03-08T04:21:58.666329-08:00,1006.052001953125,10.803283,10803.283 +9445,2025-03-08T04:22:09.473060-08:00,1006.052001953125,10.806731,10806.731 +9446,2025-03-08T04:22:20.268236-08:00,1006.0678100585938,10.795176,10795.176 +9447,2025-03-08T04:22:31.072546-08:00,1006.0546875,10.80431,10804.31 +9448,2025-03-08T04:22:41.882151-08:00,1006.0426635742188,10.809605,10809.605 +9449,2025-03-08T04:22:52.683119-08:00,1006.0440673828125,10.800968,10800.968 +9450,2025-03-08T04:23:03.480338-08:00,1006.071533203125,10.797219,10797.219 +9451,2025-03-08T04:23:14.289295-08:00,1006.078125,10.808957,10808.957 +9452,2025-03-08T04:23:25.088050-08:00,1006.0518798828125,10.798755,10798.755 +9453,2025-03-08T04:23:35.893189-08:00,1006.0518798828125,10.805139,10805.139 +9454,2025-03-08T04:23:46.690196-08:00,1006.059814453125,10.797007,10797.007 +9455,2025-03-08T04:23:57.491068-08:00,1006.0452880859375,10.800872,10800.872 +9456,2025-03-08T04:24:08.296049-08:00,1006.0401611328125,10.804981,10804.981 +9457,2025-03-08T04:24:19.094065-08:00,1006.03466796875,10.798016,10798.016 +9458,2025-03-08T04:24:29.895285-08:00,1006.054443359375,10.80122,10801.22 +9459,2025-03-08T04:24:40.694322-08:00,1006.0281372070312,10.799037,10799.037 +9460,2025-03-08T04:24:51.497376-08:00,1006.0296020507812,10.803054,10803.054 +9461,2025-03-08T04:25:02.311064-08:00,1006.0098266601562,10.813688,10813.688 +9462,2025-03-08T04:25:13.112272-08:00,1006.037353515625,10.801208,10801.208 +9463,2025-03-08T04:25:23.913075-08:00,1006.0164184570312,10.800803,10800.803 +9464,2025-03-08T04:25:34.721145-08:00,1006.017578125,10.80807,10808.07 +9465,2025-03-08T04:25:45.520057-08:00,1006.0399169921875,10.798912,10798.912 +9466,2025-03-08T04:25:56.335062-08:00,1006.0333862304688,10.815005,10815.005 +9467,2025-03-08T04:26:07.130324-08:00,1006.0267333984375,10.795262,10795.262 +9468,2025-03-08T04:26:17.946034-08:00,1006.0136108398438,10.81571,10815.71 +9469,2025-03-08T04:26:28.745391-08:00,1006.0399169921875,10.799357,10799.357 +9470,2025-03-08T04:26:39.556562-08:00,1005.993896484375,10.811171,10811.171 +9471,2025-03-08T04:26:50.355217-08:00,1006.0634155273438,10.798655,10798.655 +9472,2025-03-08T04:27:01.165107-08:00,1006.06494140625,10.80989,10809.89 +9473,2025-03-08T04:27:11.967040-08:00,1006.0595092773438,10.801933,10801.933 +9474,2025-03-08T04:27:22.770407-08:00,1006.0726318359375,10.803367,10803.367 +9475,2025-03-08T04:27:33.582344-08:00,1006.0884399414062,10.811937,10811.937 +9476,2025-03-08T04:27:44.389382-08:00,1006.0818481445312,10.807038,10807.038 +9477,2025-03-08T04:27:55.193452-08:00,1006.083251953125,10.80407,10804.07 +9478,2025-03-08T04:28:05.998758-08:00,1006.109619140625,10.805306,10805.306 +9479,2025-03-08T04:28:16.806703-08:00,1006.1107788085938,10.807945,10807.945 +9480,2025-03-08T04:28:27.610074-08:00,1006.0935668945312,10.803371,10803.371 +9481,2025-03-08T04:28:38.422341-08:00,1006.1107788085938,10.812267,10812.267 +9482,2025-03-08T04:28:49.221067-08:00,1006.1017456054688,10.798726,10798.726 +9483,2025-03-08T04:29:00.030723-08:00,1006.0990600585938,10.809656,10809.656 +9484,2025-03-08T04:29:10.824207-08:00,1006.0804443359375,10.793484,10793.484 +9485,2025-03-08T04:29:21.632350-08:00,1006.1411743164062,10.808143,10808.143 +9486,2025-03-08T04:29:32.439060-08:00,1006.1148681640625,10.80671,10806.71 +9487,2025-03-08T04:29:43.242114-08:00,1006.109375,10.803054,10803.054 +9488,2025-03-08T04:29:54.040464-08:00,1006.1279907226562,10.79835,10798.35 +9489,2025-03-08T04:30:04.849058-08:00,1006.1043090820312,10.808594,10808.594 +9490,2025-03-08T04:30:15.652359-08:00,1006.1529541015625,10.803301,10803.301 +9491,2025-03-08T04:30:26.456059-08:00,1006.1515502929688,10.8037,10803.7 +9492,2025-03-08T04:30:37.254200-08:00,1006.1475219726562,10.798141,10798.141 +9493,2025-03-08T04:30:48.056378-08:00,1006.1541137695312,10.802178,10802.178 +9494,2025-03-08T04:30:58.859327-08:00,1006.1553344726562,10.802949,10802.949 +9495,2025-03-08T04:31:09.663415-08:00,1006.1749877929688,10.804088,10804.088 +9496,2025-03-08T04:31:20.466122-08:00,1006.1212768554688,10.802707,10802.707 +9497,2025-03-08T04:31:31.275197-08:00,1006.1091918945312,10.809075,10809.075 +9498,2025-03-08T04:31:42.074070-08:00,1006.15673828125,10.798873,10798.873 +9499,2025-03-08T04:31:52.877066-08:00,1006.1487426757812,10.802996,10802.996 +9500,2025-03-08T04:32:03.677378-08:00,1006.15673828125,10.800312,10800.312 +9501,2025-03-08T04:32:14.472417-08:00,1006.1593627929688,10.795039,10795.039 +9502,2025-03-08T04:32:25.283074-08:00,1006.1790771484375,10.810657,10810.657 +9503,2025-03-08T04:32:36.078845-08:00,1006.1381225585938,10.795771,10795.771 +9504,2025-03-08T04:32:46.879329-08:00,1006.146240234375,10.800484,10800.484 +9505,2025-03-08T04:32:57.692330-08:00,1006.1751708984375,10.813001,10813.001 +9506,2025-03-08T04:33:08.498070-08:00,1006.1565551757812,10.80574,10805.74 +9507,2025-03-08T04:33:19.296388-08:00,1006.1843872070312,10.798318,10798.318 +9508,2025-03-08T04:33:30.100284-08:00,1006.177734375,10.803896,10803.896 +9509,2025-03-08T04:33:40.906419-08:00,1006.1788940429688,10.806135,10806.135 +9510,2025-03-08T04:33:51.710066-08:00,1006.1788940429688,10.803647,10803.647 +9511,2025-03-08T04:34:02.521067-08:00,1006.1815795898438,10.811001,10811.001 +9512,2025-03-08T04:34:13.321291-08:00,1006.1829833984375,10.800224,10800.224 +9513,2025-03-08T04:34:24.128067-08:00,1006.19873046875,10.806776,10806.776 +9514,2025-03-08T04:34:34.936065-08:00,1006.1998291015625,10.807998,10807.998 +9515,2025-03-08T04:34:45.739140-08:00,1006.205322265625,10.803075,10803.075 +9516,2025-03-08T04:34:56.540588-08:00,1006.18017578125,10.801448,10801.448 +9517,2025-03-08T04:35:07.351066-08:00,1006.1932983398438,10.810478,10810.478 +9518,2025-03-08T04:35:18.155053-08:00,1006.1959228515625,10.803987,10803.987 +9519,2025-03-08T04:35:28.953220-08:00,1006.21826171875,10.798167,10798.167 +9520,2025-03-08T04:35:39.763122-08:00,1006.1907958984375,10.809902,10809.902 +9521,2025-03-08T04:35:50.571625-08:00,1006.2062377929688,10.808503,10808.503 +9522,2025-03-08T04:36:01.380058-08:00,1006.207763671875,10.808433,10808.433 +9523,2025-03-08T04:36:12.180068-08:00,1006.2220458984375,10.80001,10800.01 +9524,2025-03-08T04:36:22.987062-08:00,1006.1891479492188,10.806994,10806.994 +9525,2025-03-08T04:36:33.796800-08:00,1006.1693725585938,10.809738,10809.738 +9526,2025-03-08T04:36:44.603873-08:00,1006.1707763671875,10.807073,10807.073 +9527,2025-03-08T04:36:55.417343-08:00,1006.1851806640625,10.81347,10813.47 +9528,2025-03-08T04:37:06.223057-08:00,1006.1931762695312,10.805714,10805.714 +9529,2025-03-08T04:37:17.027047-08:00,1006.1603393554688,10.80399,10803.99 +9530,2025-03-08T04:37:27.830753-08:00,1006.20751953125,10.803706,10803.706 +9531,2025-03-08T04:37:38.629208-08:00,1006.200927734375,10.798455,10798.455 +9532,2025-03-08T04:37:49.430399-08:00,1006.189208984375,10.801191,10801.191 +9533,2025-03-08T04:38:00.238326-08:00,1006.1826782226562,10.807927,10807.927 +9534,2025-03-08T04:38:11.044278-08:00,1006.2167358398438,10.805952,10805.952 +9535,2025-03-08T04:38:21.846206-08:00,1006.1878051757812,10.801928,10801.928 +9536,2025-03-08T04:38:32.650121-08:00,1006.1969604492188,10.803915,10803.915 +9537,2025-03-08T04:38:43.447075-08:00,1006.170654296875,10.796954,10796.954 +9538,2025-03-08T04:38:54.256412-08:00,1006.2101440429688,10.809337,10809.337 +9539,2025-03-08T04:39:05.064297-08:00,1006.1771850585938,10.807885,10807.885 +9540,2025-03-08T04:39:15.863066-08:00,1006.1852416992188,10.798769,10798.769 +9541,2025-03-08T04:39:37.469164-08:00,1006.2050170898438,21.606098,21606.098 +9542,2025-03-08T04:39:48.283049-08:00,1006.2009887695312,10.813885,10813.885 +9543,2025-03-08T04:39:59.091044-08:00,1006.1956176757812,10.807995,10807.995 +9544,2025-03-08T04:40:09.895275-08:00,1006.1746826171875,10.804231,10804.231 +9545,2025-03-08T04:40:20.698072-08:00,1006.22998046875,10.802797,10802.797 +9546,2025-03-08T04:40:31.507061-08:00,1006.216796875,10.808989,10808.989 +9547,2025-03-08T04:40:42.317482-08:00,1006.2047729492188,10.810421,10810.421 +9548,2025-03-08T04:40:53.113346-08:00,1006.1942138671875,10.795864,10795.864 +9549,2025-03-08T04:41:03.925113-08:00,1006.1915893554688,10.811767,10811.767 +9550,2025-03-08T04:41:14.731577-08:00,1006.2205200195312,10.806464,10806.464 +9551,2025-03-08T04:41:25.546201-08:00,1006.2337646484375,10.814624,10814.624 +9552,2025-03-08T04:41:36.344194-08:00,1006.2154541015625,10.797993,10797.993 +9553,2025-03-08T04:41:47.144386-08:00,1006.216552734375,10.800192,10800.192 +9554,2025-03-08T04:41:57.958453-08:00,1006.2177124023438,10.814067,10814.067 +9555,2025-03-08T04:42:08.760214-08:00,1006.2243041992188,10.801761,10801.761 +9556,2025-03-08T04:42:19.569120-08:00,1006.2257690429688,10.808906,10808.906 +9557,2025-03-08T04:42:30.381296-08:00,1006.1994018554688,10.812176,10812.176 +9558,2025-03-08T04:42:41.198074-08:00,1006.23095703125,10.816778,10816.778 +9559,2025-03-08T04:42:52.007050-08:00,1006.197998046875,10.808976,10808.976 +9560,2025-03-08T04:43:02.817173-08:00,1006.2111206054688,10.810123,10810.123 +9561,2025-03-08T04:43:13.626708-08:00,1006.1994018554688,10.809535,10809.535 +9562,2025-03-08T04:43:24.437064-08:00,1006.2467041015625,10.810356,10810.356 +9563,2025-03-08T04:43:35.237074-08:00,1006.2203369140625,10.80001,10800.01 +9564,2025-03-08T04:43:46.050133-08:00,1006.2151489257812,10.813059,10813.059 +9565,2025-03-08T04:43:56.855073-08:00,1006.2283325195312,10.80494,10804.94 +9566,2025-03-08T04:44:07.668218-08:00,1006.2268676757812,10.813145,10813.145 +9567,2025-03-08T04:44:18.474045-08:00,1006.263916015625,10.805827,10805.827 +9568,2025-03-08T04:44:29.277197-08:00,1006.24267578125,10.803152,10803.152 +9569,2025-03-08T04:44:40.091098-08:00,1006.2164306640625,10.813901,10813.901 +9570,2025-03-08T04:44:50.888068-08:00,1006.237548828125,10.79697,10796.97 +9571,2025-03-08T04:45:01.698115-08:00,1006.24267578125,10.810047,10810.047 +9572,2025-03-08T04:45:12.506211-08:00,1006.224365234375,10.808096,10808.096 +9573,2025-03-08T04:45:23.313341-08:00,1006.22705078125,10.80713,10807.13 +9574,2025-03-08T04:45:34.114028-08:00,1006.2453002929688,10.800687,10800.687 +9575,2025-03-08T04:45:44.925326-08:00,1006.2401733398438,10.811298,10811.298 +9576,2025-03-08T04:45:55.721833-08:00,1006.2255249023438,10.796507,10796.507 +9577,2025-03-08T04:46:06.523740-08:00,1006.2138061523438,10.801907,10801.907 +9578,2025-03-08T04:46:17.336674-08:00,1006.2150268554688,10.812934,10812.934 +9579,2025-03-08T04:46:28.130165-08:00,1006.2150268554688,10.793491,10793.491 +9580,2025-03-08T04:46:38.944435-08:00,1006.2281494140625,10.81427,10814.27 +9581,2025-03-08T04:46:49.741401-08:00,1006.2559204101562,10.796966,10796.966 +9582,2025-03-08T04:47:00.551405-08:00,1006.2625122070312,10.810004,10810.004 +9583,2025-03-08T04:47:11.361070-08:00,1006.26513671875,10.809665,10809.665 +9584,2025-03-08T04:47:22.164123-08:00,1006.2427978515625,10.803053,10803.053 +9585,2025-03-08T04:47:32.966049-08:00,1006.2346801757812,10.801926,10801.926 +9586,2025-03-08T04:47:43.774105-08:00,1006.2242431640625,10.808056,10808.056 +9587,2025-03-08T04:47:54.590066-08:00,1006.251953125,10.815961,10815.961 +9588,2025-03-08T04:48:05.393058-08:00,1006.2373657226562,10.802992,10802.992 +9589,2025-03-08T04:48:16.196062-08:00,1006.2201538085938,10.803004,10803.004 +9590,2025-03-08T04:48:27.002065-08:00,1006.2109985351562,10.806003,10806.003 +9591,2025-03-08T04:48:37.804054-08:00,1006.2256469726562,10.801989,10801.989 +9592,2025-03-08T04:48:48.615186-08:00,1006.2586059570312,10.811132,10811.132 +9593,2025-03-08T04:48:59.416101-08:00,1006.2267456054688,10.800915,10800.915 +9594,2025-03-08T04:49:10.223358-08:00,1006.2424926757812,10.807257,10807.257 +9595,2025-03-08T04:49:21.033649-08:00,1006.2095947265625,10.810291,10810.291 +9596,2025-03-08T04:49:31.830481-08:00,1006.2293701171875,10.796832,10796.832 +9597,2025-03-08T04:49:42.639545-08:00,1006.197998046875,10.809064,10809.064 +9598,2025-03-08T04:49:53.448731-08:00,1006.2396850585938,10.809186,10809.186 +9599,2025-03-08T04:50:04.245809-08:00,1006.2056274414062,10.797078,10797.078 +9600,2025-03-08T04:50:15.047913-08:00,1006.2056274414062,10.802104,10802.104 +9601,2025-03-08T04:50:25.858378-08:00,1006.2254028320312,10.810465,10810.465 +9602,2025-03-08T04:50:36.650130-08:00,1006.233154296875,10.791752,10791.752 +9603,2025-03-08T04:50:47.454184-08:00,1006.2489013671875,10.804054,10804.054 +9604,2025-03-08T04:50:58.263247-08:00,1006.25439453125,10.809063,10809.063 +9605,2025-03-08T04:51:09.065870-08:00,1006.2554931640625,10.802623,10802.623 +9606,2025-03-08T04:51:19.875615-08:00,1006.247802734375,10.809745,10809.745 +9607,2025-03-08T04:51:30.690302-08:00,1006.247802734375,10.814687,10814.687 +9608,2025-03-08T04:51:41.487374-08:00,1006.2620239257812,10.797072,10797.072 +9609,2025-03-08T04:51:52.298106-08:00,1006.2767333984375,10.810732,10810.732 +9610,2025-03-08T04:52:03.118045-08:00,1006.2449340820312,10.819939,10819.939 +9611,2025-03-08T04:52:13.924322-08:00,1006.2371826171875,10.806277,10806.277 +9612,2025-03-08T04:52:24.739172-08:00,1006.27783203125,10.81485,10814.85 +9613,2025-03-08T04:52:35.548359-08:00,1006.2449340820312,10.809187,10809.187 +9614,2025-03-08T04:52:46.358405-08:00,1006.259521484375,10.810046,10810.046 +9615,2025-03-08T04:52:57.154369-08:00,1006.2606811523438,10.795964,10795.964 +9616,2025-03-08T04:53:07.964399-08:00,1006.2672729492188,10.81003,10810.03 +9617,2025-03-08T04:53:18.780420-08:00,1006.26611328125,10.816021,10816.021 +9618,2025-03-08T04:53:29.581065-08:00,1006.2332153320312,10.800645,10800.645 +9619,2025-03-08T04:53:40.387060-08:00,1006.240966796875,10.805995,10805.995 +9620,2025-03-08T04:53:51.195055-08:00,1006.2581176757812,10.807995,10807.995 +9621,2025-03-08T04:54:02.011185-08:00,1006.26220703125,10.81613,10816.13 +9622,2025-03-08T04:54:12.812294-08:00,1006.2633056640625,10.801109,10801.109 +9623,2025-03-08T04:54:23.628402-08:00,1006.2357788085938,10.816108,10816.108 +9624,2025-03-08T04:54:34.443123-08:00,1006.255615234375,10.814721,10814.721 +9625,2025-03-08T04:54:45.245421-08:00,1006.2567138671875,10.802298,10802.298 +9626,2025-03-08T04:54:56.061066-08:00,1006.2725219726562,10.815645,10815.645 +9627,2025-03-08T04:54:57.123703-08:00,1006.2804565429688,1.062637,1062.637 +9628,2025-03-08T04:55:06.870050-08:00,1006.2713012695312,9.746347,9746.347 +9629,2025-03-08T04:55:17.682041-08:00,1006.2659301757812,10.811991,10811.991 +9630,2025-03-08T04:55:28.491353-08:00,1006.2725219726562,10.809312,10809.312 +9631,2025-03-08T04:55:39.302656-08:00,1006.2725219726562,10.811303,10811.303 +9632,2025-03-08T04:55:50.116315-08:00,1006.24609375,10.813659,10813.659 +9633,2025-03-08T04:56:00.919458-08:00,1006.2608032226562,10.803143,10803.143 +9634,2025-03-08T04:56:11.734244-08:00,1006.248779296875,10.814786,10814.786 +9635,2025-03-08T04:56:22.537061-08:00,1006.2750854492188,10.802817,10802.817 +9636,2025-03-08T04:56:33.352043-08:00,1006.2619018554688,10.814982,10814.982 +9637,2025-03-08T04:56:44.159065-08:00,1006.267333984375,10.807022,10807.022 +9638,2025-03-08T04:56:54.971252-08:00,1006.287109375,10.812187,10812.187 +9639,2025-03-08T04:57:05.774370-08:00,1006.2684936523438,10.803118,10803.118 +9640,2025-03-08T04:57:16.592431-08:00,1006.2608032226562,10.818061,10818.061 +9641,2025-03-08T04:57:27.402062-08:00,1006.2476806640625,10.809631,10809.631 +9642,2025-03-08T04:57:38.212066-08:00,1006.2567749023438,10.810004,10810.004 +9643,2025-03-08T04:57:49.018725-08:00,1006.227783203125,10.806659,10806.659 +9644,2025-03-08T04:57:59.828808-08:00,1006.248779296875,10.810083,10810.083 +9645,2025-03-08T04:58:10.643064-08:00,1006.2619018554688,10.814256,10814.256 +9646,2025-03-08T04:58:21.453010-08:00,1006.234375,10.809946,10809.946 +9647,2025-03-08T04:58:32.257077-08:00,1006.2804565429688,10.804067,10804.067 +9648,2025-03-08T04:58:43.065646-08:00,1006.28173828125,10.808569,10808.569 +9649,2025-03-08T04:58:53.875014-08:00,1006.27392578125,10.809368,10809.368 +9650,2025-03-08T04:59:04.679067-08:00,1006.2804565429688,10.804053,10804.053 +9651,2025-03-08T04:59:15.482389-08:00,1006.24609375,10.803322,10803.322 +9652,2025-03-08T04:59:26.290065-08:00,1006.2449951171875,10.807676,10807.676 +9653,2025-03-08T04:59:37.099326-08:00,1006.2725219726562,10.809261,10809.261 +9654,2025-03-08T04:59:47.916765-08:00,1006.2527465820312,10.817439,10817.439 +9655,2025-03-08T04:59:58.727274-08:00,1006.2476806640625,10.810509,10810.509 +9656,2025-03-08T05:00:09.529111-08:00,1006.2410278320312,10.801837,10801.837 +9657,2025-03-08T05:00:20.339727-08:00,1006.267333984375,10.810616,10810.616 +9658,2025-03-08T05:00:31.155454-08:00,1006.2515869140625,10.815727,10815.727 +9659,2025-03-08T05:00:41.964059-08:00,1006.2581176757812,10.808605,10808.605 +9660,2025-03-08T05:00:52.778297-08:00,1006.2515869140625,10.814238,10814.238 +9661,2025-03-08T05:01:03.590049-08:00,1006.2318725585938,10.811752,10811.752 +9662,2025-03-08T05:01:14.396360-08:00,1006.2567138671875,10.806311,10806.311 +9663,2025-03-08T05:01:25.205068-08:00,1006.2515869140625,10.808708,10808.708 +9664,2025-03-08T05:01:36.020425-08:00,1006.2252197265625,10.815357,10815.357 +9665,2025-03-08T05:01:46.829399-08:00,1006.2384643554688,10.808974,10808.974 +9666,2025-03-08T05:01:57.636323-08:00,1006.2515869140625,10.806924,10806.924 +9667,2025-03-08T05:02:08.436092-08:00,1006.2764892578125,10.799769,10799.769 +9668,2025-03-08T05:02:19.251061-08:00,1006.2369384765625,10.814969,10814.969 +9669,2025-03-08T05:02:30.053063-08:00,1006.2764892578125,10.802002,10802.002 +9670,2025-03-08T05:02:40.850320-08:00,1006.2369384765625,10.797257,10797.257 +9671,2025-03-08T05:02:51.670433-08:00,1006.2501831054688,10.820113,10820.113 +9672,2025-03-08T05:03:02.480066-08:00,1006.2687377929688,10.809633,10809.633 +9673,2025-03-08T05:03:13.283072-08:00,1006.2606811523438,10.803006,10803.006 +9674,2025-03-08T05:03:24.100356-08:00,1006.255615234375,10.817284,10817.284 +9675,2025-03-08T05:03:34.905401-08:00,1006.2606811523438,10.805045,10805.045 +9676,2025-03-08T05:03:45.706813-08:00,1006.2398681640625,10.801412,10801.412 +9677,2025-03-08T05:03:56.522578-08:00,1006.2398681640625,10.815765,10815.765 +9678,2025-03-08T05:04:07.332064-08:00,1006.2489624023438,10.809486,10809.486 +9679,2025-03-08T05:04:18.132051-08:00,1006.2423706054688,10.799987,10799.987 +9680,2025-03-08T05:04:28.941067-08:00,1006.214599609375,10.809016,10809.016 +9681,2025-03-08T05:04:39.749050-08:00,1006.2266235351562,10.807983,10807.983 +9682,2025-03-08T05:04:50.570434-08:00,1006.2463989257812,10.821384,10821.384 +9683,2025-03-08T05:05:01.378817-08:00,1006.23828125,10.808383,10808.383 +9684,2025-03-08T05:05:12.188413-08:00,1006.2463989257812,10.809596,10809.596 +9685,2025-03-08T05:05:22.996453-08:00,1006.2463989257812,10.80804,10808.04 +9686,2025-03-08T05:05:33.803050-08:00,1006.2463989257812,10.806597,10806.597 +9687,2025-03-08T05:05:44.610236-08:00,1006.2581176757812,10.807186,10807.186 +9688,2025-03-08T05:05:55.419480-08:00,1006.2306518554688,10.809244,10809.244 +9689,2025-03-08T05:06:06.228167-08:00,1006.231689453125,10.808687,10808.687 +9690,2025-03-08T05:06:17.041144-08:00,1006.2332153320312,10.812977,10812.977 +9691,2025-03-08T05:06:27.843309-08:00,1006.219970703125,10.802165,10802.165 +9692,2025-03-08T05:06:38.651157-08:00,1006.2463989257812,10.807848,10807.848 +9693,2025-03-08T05:06:49.459561-08:00,1006.2647094726562,10.808404,10808.404 +9694,2025-03-08T05:07:00.268375-08:00,1006.23828125,10.808814,10808.814 +9695,2025-03-08T05:07:11.076683-08:00,1006.2108764648438,10.808308,10808.308 +9696,2025-03-08T05:07:21.878580-08:00,1006.2463989257812,10.801897,10801.897 +9697,2025-03-08T05:07:32.688531-08:00,1006.2266235351562,10.809951,10809.951 +9698,2025-03-08T05:07:43.497960-08:00,1006.2251586914062,10.809429,10809.429 +9699,2025-03-08T05:07:54.294451-08:00,1006.1988525390625,10.796491,10796.491 +9700,2025-03-08T05:08:05.104512-08:00,1006.2251586914062,10.810061,10810.061 +9701,2025-03-08T05:08:15.914673-08:00,1006.2251586914062,10.810161,10810.161 +9702,2025-03-08T05:08:26.715911-08:00,1006.2529907226562,10.801238,10801.238 +9703,2025-03-08T05:08:37.525151-08:00,1006.271240234375,10.80924,10809.24 +9704,2025-03-08T05:08:48.330356-08:00,1006.2398681640625,10.805205,10805.205 +9705,2025-03-08T05:08:59.142161-08:00,1006.2503051757812,10.811805,10811.805 +9706,2025-03-08T05:09:09.958214-08:00,1006.2554931640625,10.816053,10816.053 +9707,2025-03-08T05:09:20.771287-08:00,1006.2279663085938,10.813073,10813.073 +9708,2025-03-08T05:09:31.576464-08:00,1006.2609252929688,10.805177,10805.177 +9709,2025-03-08T05:09:42.386493-08:00,1006.2345581054688,10.810029,10810.029 +9710,2025-03-08T05:09:53.204431-08:00,1006.2528686523438,10.817938,10817.938 +9711,2025-03-08T05:10:04.008252-08:00,1006.251708984375,10.803821,10803.821 +9712,2025-03-08T05:10:14.817434-08:00,1006.271484375,10.809182,10809.182 +9713,2025-03-08T05:10:25.621161-08:00,1006.2424926757812,10.803727,10803.727 +9714,2025-03-08T05:10:36.426767-08:00,1006.2556762695312,10.805606,10805.606 +9715,2025-03-08T05:10:47.239316-08:00,1006.2439575195312,10.812549,10812.549 +9716,2025-03-08T05:10:58.059456-08:00,1006.2359619140625,10.82014,10820.14 +9717,2025-03-08T05:11:07.774757-08:00,1006.2491455078125,9.715301,9715.301 +9718,2025-03-08T05:11:08.866417-08:00,1006.2754516601562,1.09166,1091.66 +9719,2025-03-08T05:11:19.675379-08:00,1006.2743530273438,10.808962,10808.962 +9720,2025-03-08T05:11:30.484161-08:00,1006.2531127929688,10.808782,10808.782 +9721,2025-03-08T05:11:41.295153-08:00,1006.2597045898438,10.810992,10810.992 +9722,2025-03-08T05:11:52.109275-08:00,1006.2229614257812,10.814122,10814.122 +9723,2025-03-08T05:12:02.911496-08:00,1006.2413330078125,10.802221,10802.221 +9724,2025-03-08T05:12:13.715521-08:00,1006.27685546875,10.804025,10804.025 +9725,2025-03-08T05:12:24.524908-08:00,1006.2545166015625,10.809387,10809.387 +9726,2025-03-08T05:12:35.338523-08:00,1006.2742309570312,10.813615,10813.615 +9727,2025-03-08T05:12:46.142370-08:00,1006.2532958984375,10.803847,10803.847 +9728,2025-03-08T05:12:56.957155-08:00,1006.2518920898438,10.814785,10814.785 +9729,2025-03-08T05:13:07.764161-08:00,1006.2665405273438,10.807006,10807.006 +9730,2025-03-08T05:13:18.568223-08:00,1006.2770385742188,10.804062,10804.062 +9731,2025-03-08T05:13:29.382162-08:00,1006.263916015625,10.813939,10813.939 +9732,2025-03-08T05:13:40.195314-08:00,1006.2678833007812,10.813152,10813.152 +9733,2025-03-08T05:13:51.001665-08:00,1006.2678833007812,10.806351,10806.351 +9734,2025-03-08T05:14:01.810484-08:00,1006.2993774414062,10.808819,10808.819 +9735,2025-03-08T05:14:12.620040-08:00,1006.294189453125,10.809556,10809.556 +9736,2025-03-08T05:14:23.427167-08:00,1006.2849731445312,10.807127,10807.127 +9737,2025-03-08T05:14:34.233151-08:00,1006.2784423828125,10.805984,10805.984 +9738,2025-03-08T05:14:45.034415-08:00,1006.2835693359375,10.801264,10801.264 +9739,2025-03-08T05:14:55.846156-08:00,1006.2572021484375,10.811741,10811.741 +9740,2025-03-08T05:15:06.664316-08:00,1006.2681274414062,10.81816,10818.16 +9741,2025-03-08T05:15:17.474190-08:00,1006.2706298828125,10.809874,10809.874 +9742,2025-03-08T05:15:28.282740-08:00,1006.2654418945312,10.80855,10808.55 +9743,2025-03-08T05:15:39.087963-08:00,1006.3023681640625,10.805223,10805.223 +9744,2025-03-08T05:15:49.900773-08:00,1006.280029296875,10.81281,10812.81 +9745,2025-03-08T05:16:00.710021-08:00,1006.2997436523438,10.809248,10809.248 +9746,2025-03-08T05:16:11.518172-08:00,1006.2839965820312,10.808151,10808.151 +9747,2025-03-08T05:16:22.326145-08:00,1006.278564453125,10.807973,10807.973 +9748,2025-03-08T05:16:33.129365-08:00,1006.2681884765625,10.80322,10803.22 +9749,2025-03-08T05:16:43.932165-08:00,1006.272216796875,10.8028,10802.8 +9750,2025-03-08T05:16:54.742156-08:00,1006.257568359375,10.809991,10809.991 +9751,2025-03-08T05:17:05.541157-08:00,1006.283935546875,10.799001,10799.001 +9752,2025-03-08T05:17:16.349480-08:00,1006.2615356445312,10.808323,10808.323 +9753,2025-03-08T05:17:27.145160-08:00,1006.2761840820312,10.79568,10795.68 +9754,2025-03-08T05:17:37.955157-08:00,1006.2669677734375,10.809997,10809.997 +9755,2025-03-08T05:17:48.765136-08:00,1006.2736206054688,10.809979,10809.979 +9756,2025-03-08T05:17:59.574287-08:00,1006.2457885742188,10.809151,10809.151 +9757,2025-03-08T05:18:10.383690-08:00,1006.2566528320312,10.809403,10809.403 +9758,2025-03-08T05:18:21.190524-08:00,1006.2210693359375,10.806834,10806.834 +9759,2025-03-08T05:18:31.996149-08:00,1006.2276611328125,10.805625,10805.625 +9760,2025-03-08T05:18:42.796514-08:00,1006.2235717773438,10.800365,10800.365 +9761,2025-03-08T05:18:53.609060-08:00,1006.2290649414062,10.812546,10812.546 +9762,2025-03-08T05:19:04.407987-08:00,1006.2329711914062,10.798927,10798.927 +9763,2025-03-08T05:19:15.214696-08:00,1006.247314453125,10.806709,10806.709 +9764,2025-03-08T05:19:26.018317-08:00,1006.2238159179688,10.803621,10803.621 +9765,2025-03-08T05:19:36.831506-08:00,1006.2157592773438,10.813189,10813.189 +9766,2025-03-08T05:19:47.635276-08:00,1006.227783203125,10.80377,10803.77 +9767,2025-03-08T05:19:58.441657-08:00,1006.2329711914062,10.806381,10806.381 +9768,2025-03-08T05:20:09.249167-08:00,1006.231689453125,10.80751,10807.51 +9769,2025-03-08T05:20:20.056167-08:00,1006.2329711914062,10.807,10807.0 +9770,2025-03-08T05:20:30.871296-08:00,1006.2647094726562,10.815129,10815.129 +9771,2025-03-08T05:20:41.674200-08:00,1006.2357788085938,10.802904,10802.904 +9772,2025-03-08T05:20:52.483246-08:00,1006.2056274414062,10.809046,10809.046 +9773,2025-03-08T05:21:03.292478-08:00,1006.223876953125,10.809232,10809.232 +9774,2025-03-08T05:21:14.100703-08:00,1006.2161865234375,10.808225,10808.225 +9775,2025-03-08T05:21:24.910354-08:00,1006.2332763671875,10.809651,10809.651 +9776,2025-03-08T05:21:35.721149-08:00,1006.225341796875,10.810795,10810.795 +9777,2025-03-08T05:21:46.534412-08:00,1006.230712890625,10.813263,10813.263 +9778,2025-03-08T05:21:57.338265-08:00,1006.2240600585938,10.803853,10803.853 +9779,2025-03-08T05:22:08.157420-08:00,1006.2240600585938,10.819155,10819.155 +9780,2025-03-08T05:22:18.960541-08:00,1006.2149047851562,10.803121,10803.121 +9781,2025-03-08T05:22:29.775481-08:00,1006.1991577148438,10.81494,10814.94 +9782,2025-03-08T05:22:40.573481-08:00,1006.23974609375,10.798,10798.0 +9783,2025-03-08T05:22:51.383010-08:00,1006.1911010742188,10.809529,10809.529 +9784,2025-03-08T05:23:02.197261-08:00,1006.203125,10.814251,10814.251 +9785,2025-03-08T05:23:13.004337-08:00,1006.1900024414062,10.807076,10807.076 +9786,2025-03-08T05:23:23.814390-08:00,1006.208251953125,10.810053,10810.053 +9787,2025-03-08T05:23:34.615160-08:00,1006.1873168945312,10.80077,10800.77 +9788,2025-03-08T05:23:45.416157-08:00,1006.2056274414062,10.800997,10800.997 +9789,2025-03-08T05:23:56.224463-08:00,1006.1978759765625,10.808306,10808.306 +9790,2025-03-08T05:24:07.042418-08:00,1006.1967163085938,10.817955,10817.955 +9791,2025-03-08T05:24:17.842184-08:00,1006.2150268554688,10.799766,10799.766 +9792,2025-03-08T05:24:28.651094-08:00,1006.19921875,10.80891,10808.91 +9793,2025-03-08T05:24:39.459724-08:00,1006.1531372070312,10.80863,10808.63 +9794,2025-03-08T05:24:50.259791-08:00,1006.1716918945312,10.800067,10800.067 +9795,2025-03-08T05:25:01.076170-08:00,1006.1900024414062,10.816379,10816.379 +9796,2025-03-08T05:25:11.875465-08:00,1006.2151489257812,10.799295,10799.295 +9797,2025-03-08T05:25:22.680174-08:00,1006.1796875,10.804709,10804.709 +9798,2025-03-08T05:25:33.488200-08:00,1006.2059326171875,10.808026,10808.026 +9799,2025-03-08T05:25:44.296566-08:00,1006.2045288085938,10.808366,10808.366 +9800,2025-03-08T05:25:55.096214-08:00,1006.2100219726562,10.799648,10799.648 +9801,2025-03-08T05:26:05.897442-08:00,1006.1942138671875,10.801228,10801.228 +9802,2025-03-08T05:26:16.701780-08:00,1006.215087890625,10.804338,10804.338 +9803,2025-03-08T05:26:27.505374-08:00,1006.201904296875,10.803594,10803.594 +9804,2025-03-08T05:26:38.319156-08:00,1006.233642578125,10.813782,10813.782 +9805,2025-03-08T05:26:49.117167-08:00,1006.2190551757812,10.798011,10798.011 +9806,2025-03-08T05:26:59.926297-08:00,1006.2033081054688,10.80913,10809.13 +9807,2025-03-08T05:27:10.728151-08:00,1006.1954956054688,10.801854,10801.854 +9808,2025-03-08T05:27:21.527390-08:00,1006.2427368164062,10.799239,10799.239 +9809,2025-03-08T05:27:32.342633-08:00,1006.2349853515625,10.815243,10815.243 +9810,2025-03-08T05:27:43.137157-08:00,1006.2269287109375,10.794524,10794.524 +9811,2025-03-08T05:27:53.940414-08:00,1006.218017578125,10.803257,10803.257 +9812,2025-03-08T05:28:04.751129-08:00,1006.2312622070312,10.810715,10810.715 +9813,2025-03-08T05:28:15.550162-08:00,1006.229736328125,10.799033,10799.033 +9814,2025-03-08T05:28:26.357158-08:00,1006.24951171875,10.806996,10806.996 +9815,2025-03-08T05:28:37.161153-08:00,1006.2626342773438,10.803995,10803.995 +9816,2025-03-08T05:28:47.970291-08:00,1006.2589111328125,10.809138,10809.138 +9817,2025-03-08T05:28:58.779135-08:00,1006.2720336914062,10.808844,10808.844 +9818,2025-03-08T05:29:09.587361-08:00,1006.2523193359375,10.808226,10808.226 +9819,2025-03-08T05:29:20.390640-08:00,1006.2706298828125,10.803279,10803.279 +9820,2025-03-08T05:29:31.195218-08:00,1006.2837524414062,10.804578,10804.578 +9821,2025-03-08T05:29:41.991908-08:00,1006.2745361328125,10.79669,10796.69 +9822,2025-03-08T05:29:52.801184-08:00,1006.2416381835938,10.809276,10809.276 +9823,2025-03-08T05:30:03.603767-08:00,1006.2587280273438,10.802583,10802.583 +9824,2025-03-08T05:30:14.401380-08:00,1006.2784423828125,10.797613,10797.613 +9825,2025-03-08T05:30:25.217311-08:00,1006.257568359375,10.815931,10815.931 +9826,2025-03-08T05:30:36.017736-08:00,1006.2642211914062,10.800425,10800.425 +9827,2025-03-08T05:30:46.818551-08:00,1006.269287109375,10.800815,10800.815 +9828,2025-03-08T05:30:57.626475-08:00,1006.29296875,10.807924,10807.924 +9829,2025-03-08T05:31:08.435710-08:00,1006.287841796875,10.809235,10809.235 +9830,2025-03-08T05:31:19.235385-08:00,1006.29443359375,10.799675,10799.675 +9831,2025-03-08T05:31:30.035842-08:00,1006.301025390625,10.800457,10800.457 +9832,2025-03-08T05:31:40.846167-08:00,1006.2852172851562,10.810325,10810.325 +9833,2025-03-08T05:31:51.643690-08:00,1006.283447265625,10.797523,10797.523 +9834,2025-03-08T05:32:02.452212-08:00,1006.2731323242188,10.808522,10808.522 +9835,2025-03-08T05:32:13.266438-08:00,1006.27197265625,10.814226,10814.226 +9836,2025-03-08T05:32:24.064165-08:00,1006.2759399414062,10.797727,10797.727 +9837,2025-03-08T05:32:34.878205-08:00,1006.2796630859375,10.81404,10814.04 +9838,2025-03-08T05:32:45.681402-08:00,1006.263916015625,10.803197,10803.197 +9839,2025-03-08T05:32:56.489149-08:00,1006.26123046875,10.807747,10807.747 +9840,2025-03-08T05:33:07.292153-08:00,1006.2536010742188,10.803004,10803.004 +9841,2025-03-08T05:33:18.105400-08:00,1006.2784423828125,10.813247,10813.247 +9842,2025-03-08T05:33:28.910163-08:00,1006.2732543945312,10.804763,10804.763 +9843,2025-03-08T05:33:39.708352-08:00,1006.2520141601562,10.798189,10798.189 +9844,2025-03-08T05:33:50.523182-08:00,1006.248291015625,10.81483,10814.83 +9845,2025-03-08T05:34:01.322347-08:00,1006.2626342773438,10.799165,10799.165 +9846,2025-03-08T05:34:12.124156-08:00,1006.2665405273438,10.801809,10801.809 +9847,2025-03-08T05:34:22.938494-08:00,1006.2877197265625,10.814338,10814.338 +9848,2025-03-08T05:34:33.753619-08:00,1006.2731323242188,10.815125,10815.125 +9849,2025-03-08T05:34:44.554163-08:00,1006.2442016601562,10.800544,10800.544 +9850,2025-03-08T05:34:55.366385-08:00,1006.252197265625,10.812222,10812.222 +9851,2025-03-08T05:35:06.174932-08:00,1006.3060302734375,10.808547,10808.547 +9852,2025-03-08T05:35:16.984404-08:00,1006.2902221679688,10.809472,10809.472 +9853,2025-03-08T05:35:27.787284-08:00,1006.3099975585938,10.80288,10802.88 +9854,2025-03-08T05:35:38.590157-08:00,1006.2481079101562,10.802873,10802.873 +9855,2025-03-08T05:35:49.396166-08:00,1006.2890625,10.806009,10806.009 +9856,2025-03-08T05:36:00.192354-08:00,1006.282470703125,10.796188,10796.188 +9857,2025-03-08T05:36:11.000162-08:00,1006.308837890625,10.807808,10807.808 +9858,2025-03-08T05:36:21.800295-08:00,1006.2890625,10.800133,10800.133 +9859,2025-03-08T05:36:32.612400-08:00,1006.2930297851562,10.812105,10812.105 +9860,2025-03-08T05:36:43.406157-08:00,1006.2496337890625,10.793757,10793.757 +9861,2025-03-08T05:36:54.205238-08:00,1006.2996215820312,10.799081,10799.081 +9862,2025-03-08T05:37:05.006171-08:00,1006.2876586914062,10.800933,10800.933 +9863,2025-03-08T05:37:15.814162-08:00,1006.30078125,10.807991,10807.991 +9864,2025-03-08T05:37:26.618228-08:00,1006.3128051757812,10.804066,10804.066 +9865,2025-03-08T05:37:37.420165-08:00,1006.3429565429688,10.801937,10801.937 +9866,2025-03-08T05:37:48.226144-08:00,1006.3035888671875,10.805979,10805.979 +9867,2025-03-08T05:37:59.039153-08:00,1006.3023681640625,10.813009,10813.009 +9868,2025-03-08T05:38:09.848194-08:00,1006.2826538085938,10.809041,10809.041 +9869,2025-03-08T05:38:20.651291-08:00,1006.3155517578125,10.803097,10803.097 +9870,2025-03-08T05:38:31.453243-08:00,1006.3338012695312,10.801952,10801.952 +9871,2025-03-08T05:38:42.252157-08:00,1006.3403930664062,10.798914,10798.914 +9872,2025-03-08T05:38:53.061206-08:00,1006.3180541992188,10.809049,10809.049 +9873,2025-03-08T05:39:03.870365-08:00,1006.3378295898438,10.809159,10809.159 +9874,2025-03-08T05:39:14.674588-08:00,1006.3245849609375,10.804223,10804.223 +9875,2025-03-08T05:39:25.476099-08:00,1006.3497924804688,10.801511,10801.511 +9876,2025-03-08T05:39:36.287471-08:00,1006.3629760742188,10.811372,10811.372 +9877,2025-03-08T05:39:47.092838-08:00,1006.34716796875,10.805367,10805.367 +9878,2025-03-08T05:39:57.899163-08:00,1006.353759765625,10.806325,10806.325 +9879,2025-03-08T05:40:08.702607-08:00,1006.325927734375,10.803444,10803.444 +9880,2025-03-08T05:40:19.498729-08:00,1006.3654174804688,10.796122,10796.122 +9881,2025-03-08T05:40:30.308473-08:00,1006.3707885742188,10.809744,10809.744 +9882,2025-03-08T05:40:41.122160-08:00,1006.3786010742188,10.813687,10813.687 +9883,2025-03-08T05:40:51.931155-08:00,1006.3641967773438,10.808995,10808.995 +9884,2025-03-08T05:41:02.723426-08:00,1006.35498046875,10.792271,10792.271 +9885,2025-03-08T05:41:13.533164-08:00,1006.3272094726562,10.809738,10809.738 +9886,2025-03-08T05:41:24.328169-08:00,1006.3457641601562,10.795005,10795.005 +9887,2025-03-08T05:41:35.138162-08:00,1006.3640747070312,10.809993,10809.993 +9888,2025-03-08T05:41:45.938302-08:00,1006.37060546875,10.80014,10800.14 +9889,2025-03-08T05:41:56.745161-08:00,1006.3679809570312,10.806859,10806.859 +9890,2025-03-08T05:42:07.554156-08:00,1006.3679809570312,10.808995,10808.995 +9891,2025-03-08T05:42:18.362684-08:00,1006.3471069335938,10.808528,10808.528 +9892,2025-03-08T05:42:29.160130-08:00,1006.353759765625,10.797446,10797.446 +9893,2025-03-08T05:42:39.966206-08:00,1006.3273315429688,10.806076,10806.076 +9894,2025-03-08T05:42:50.780155-08:00,1006.3734130859375,10.813949,10813.949 +9895,2025-03-08T05:43:01.581319-08:00,1006.3865356445312,10.801164,10801.164 +9896,2025-03-08T05:43:12.384154-08:00,1006.34326171875,10.802835,10802.835 +9897,2025-03-08T05:43:23.201508-08:00,1006.3565063476562,10.817354,10817.354 +9898,2025-03-08T05:43:34.007359-08:00,1006.3499145507812,10.805851,10805.851 +9899,2025-03-08T05:43:44.807163-08:00,1006.363037109375,10.799804,10799.804 +9900,2025-03-08T05:43:55.612820-08:00,1006.3275146484375,10.805657,10805.657 +9901,2025-03-08T05:44:06.417504-08:00,1006.3696899414062,10.804684,10804.684 +9902,2025-03-08T05:44:17.214237-08:00,1006.3604736328125,10.796733,10796.733 +9903,2025-03-08T05:44:28.025481-08:00,1006.3117065429688,10.811244,10811.244 +9904,2025-03-08T05:44:38.828766-08:00,1006.3314819335938,10.803285,10803.285 +9905,2025-03-08T05:44:49.627097-08:00,1006.3406982421875,10.798331,10798.331 +9906,2025-03-08T05:45:00.440510-08:00,1006.3234252929688,10.813413,10813.413 +9907,2025-03-08T05:45:11.239463-08:00,1006.3314819335938,10.798953,10798.953 +9908,2025-03-08T05:45:22.045833-08:00,1006.314208984375,10.80637,10806.37 +9909,2025-03-08T05:45:32.851574-08:00,1006.33544921875,10.805741,10805.741 +9910,2025-03-08T05:45:43.665928-08:00,1006.3289184570312,10.814354,10814.354 +9911,2025-03-08T05:45:54.469161-08:00,1006.322265625,10.803233,10803.233 +9912,2025-03-08T05:46:05.273400-08:00,1006.3197021484375,10.804239,10804.239 +9913,2025-03-08T05:46:16.075167-08:00,1006.2999267578125,10.801767,10801.767 +9914,2025-03-08T05:46:26.879151-08:00,1006.345947265625,10.803984,10803.984 +9915,2025-03-08T05:46:37.684163-08:00,1006.3328247070312,10.805012,10805.012 +9916,2025-03-08T05:46:48.483148-08:00,1006.35107421875,10.798985,10798.985 +9917,2025-03-08T05:46:59.297376-08:00,1006.3262329101562,10.814228,10814.228 +9918,2025-03-08T05:47:10.103150-08:00,1006.357666015625,10.805774,10805.774 +9919,2025-03-08T05:47:20.911017-08:00,1006.3220825195312,10.807867,10807.867 +9920,2025-03-08T05:47:31.716400-08:00,1006.349853515625,10.805383,10805.383 +9921,2025-03-08T05:47:42.516716-08:00,1006.3236083984375,10.800316,10800.316 +9922,2025-03-08T05:47:53.314407-08:00,1006.3287353515625,10.797691,10797.691 +9923,2025-03-08T05:48:04.123165-08:00,1006.3484497070312,10.808758,10808.758 +9924,2025-03-08T05:48:14.929145-08:00,1006.361572265625,10.80598,10805.98 +9925,2025-03-08T05:48:25.733163-08:00,1006.3538208007812,10.804018,10804.018 +9926,2025-03-08T05:48:36.542465-08:00,1006.35888671875,10.809302,10809.302 +9927,2025-03-08T05:48:47.349978-08:00,1006.38525390625,10.807513,10807.513 +9928,2025-03-08T05:48:58.157553-08:00,1006.38525390625,10.807575,10807.575 +9929,2025-03-08T05:49:08.967567-08:00,1006.3709106445312,10.810014,10810.014 +9930,2025-03-08T05:49:19.764740-08:00,1006.3826293945312,10.797173,10797.173 +9931,2025-03-08T05:49:30.580266-08:00,1006.328857421875,10.815526,10815.526 +9932,2025-03-08T05:49:41.382167-08:00,1006.3803100585938,10.801901,10801.901 +9933,2025-03-08T05:49:52.180500-08:00,1006.3826293945312,10.798333,10798.333 +9934,2025-03-08T05:50:02.989710-08:00,1006.3760986328125,10.80921,10809.21 +9935,2025-03-08T05:50:13.791658-08:00,1006.3814086914062,10.801948,10801.948 +9936,2025-03-08T05:50:24.601777-08:00,1006.40771484375,10.810119,10810.119 +9937,2025-03-08T05:50:35.405397-08:00,1006.40771484375,10.80362,10803.62 +9938,2025-03-08T05:50:46.210446-08:00,1006.4154663085938,10.805049,10805.049 +9939,2025-03-08T05:50:57.008163-08:00,1006.36962890625,10.797717,10797.717 +9940,2025-03-08T05:51:07.815336-08:00,1006.3986206054688,10.807173,10807.173 +9941,2025-03-08T05:51:18.620518-08:00,1006.3973388671875,10.805182,10805.182 +9942,2025-03-08T05:51:29.415161-08:00,1006.4156494140625,10.794643,10794.643 +9943,2025-03-08T05:51:40.214547-08:00,1006.435302734375,10.799386,10799.386 +9944,2025-03-08T05:51:51.021770-08:00,1006.3947143554688,10.807223,10807.223 +9945,2025-03-08T05:52:01.819488-08:00,1006.4013061523438,10.797718,10797.718 +9946,2025-03-08T05:52:12.624215-08:00,1006.398681640625,10.804727,10804.727 +9947,2025-03-08T05:52:23.422483-08:00,1006.3577270507812,10.798268,10798.268 +9948,2025-03-08T05:52:34.214613-08:00,1006.3616943359375,10.79213,10792.13 +9949,2025-03-08T05:52:45.021570-08:00,1006.3961181640625,10.806957,10806.957 +9950,2025-03-08T05:52:55.822221-08:00,1006.3828735351562,10.800651,10800.651 +9951,2025-03-08T05:53:06.628465-08:00,1006.3869018554688,10.806244,10806.244 +9952,2025-03-08T05:53:17.432179-08:00,1006.377685546875,10.803714,10803.714 +9953,2025-03-08T05:53:28.239892-08:00,1006.37109375,10.807713,10807.713 +9954,2025-03-08T05:53:39.039237-08:00,1006.3629760742188,10.799345,10799.345 +9955,2025-03-08T05:53:49.841687-08:00,1006.3826293945312,10.80245,10802.45 +9956,2025-03-08T05:54:00.652508-08:00,1006.381591796875,10.810821,10810.821 +9957,2025-03-08T05:54:11.446994-08:00,1006.3866577148438,10.794486,10794.486 +9958,2025-03-08T05:54:22.252595-08:00,1006.3602905273438,10.805601,10805.601 +9959,2025-03-08T05:54:33.061429-08:00,1006.3892822265625,10.808834,10808.834 +9960,2025-03-08T05:54:43.861489-08:00,1006.393310546875,10.80006,10800.06 +9961,2025-03-08T05:54:52.892937-08:00,1006.372314453125,9.031448,9031.448 +9962,2025-03-08T05:54:54.667027-08:00,1006.37890625,1.77409,1774.09 +9963,2025-03-08T05:55:05.459573-08:00,1006.3986206054688,10.792546,10792.546 +9964,2025-03-08T05:55:16.262170-08:00,1006.3526611328125,10.802597,10802.597 +9965,2025-03-08T05:55:27.062403-08:00,1006.370849609375,10.800233,10800.233 +9966,2025-03-08T05:55:37.870151-08:00,1006.4037475585938,10.807748,10807.748 +9967,2025-03-08T05:55:48.670894-08:00,1006.37744140625,10.800743,10800.743 +9968,2025-03-08T05:55:59.470226-08:00,1006.376220703125,10.799332,10799.332 +9969,2025-03-08T05:56:10.274430-08:00,1006.3696899414062,10.804204,10804.204 +9970,2025-03-08T05:56:21.073155-08:00,1006.3817138671875,10.798725,10798.725 +9971,2025-03-08T05:56:31.879161-08:00,1006.3604736328125,10.806006,10806.006 +9972,2025-03-08T05:56:42.685159-08:00,1006.389404296875,10.805998,10805.998 +9973,2025-03-08T05:56:53.485406-08:00,1006.41455078125,10.800247,10800.247 +9974,2025-03-08T05:57:04.300703-08:00,1006.3817138671875,10.815297,10815.297 +9975,2025-03-08T05:57:15.100212-08:00,1006.3724975585938,10.799509,10799.509 +9976,2025-03-08T05:57:25.902420-08:00,1006.3973388671875,10.802208,10802.208 +9977,2025-03-08T05:57:36.703210-08:00,1006.4039306640625,10.80079,10800.79 +9978,2025-03-08T05:57:47.500156-08:00,1006.3973388671875,10.796946,10796.946 +9979,2025-03-08T05:57:58.293167-08:00,1006.3764038085938,10.793011,10793.011 +9980,2025-03-08T05:58:09.093167-08:00,1006.3829956054688,10.8,10800.0 +9981,2025-03-08T05:58:19.901278-08:00,1006.4092407226562,10.808111,10808.111 +9982,2025-03-08T05:58:30.699388-08:00,1006.3934326171875,10.79811,10798.11 +9983,2025-03-08T05:58:41.502164-08:00,1006.36572265625,10.802776,10802.776 +9984,2025-03-08T05:58:52.311153-08:00,1006.3749389648438,10.808989,10808.989 +9985,2025-03-08T05:59:03.115653-08:00,1006.3986206054688,10.8045,10804.5 +9986,2025-03-08T05:59:13.916799-08:00,1006.3986206054688,10.801146,10801.146 +9987,2025-03-08T05:59:24.718230-08:00,1006.4117431640625,10.801431,10801.431 +9988,2025-03-08T05:59:35.524168-08:00,1006.375,10.805938,10805.938 +9989,2025-03-08T05:59:46.329488-08:00,1006.4090576171875,10.80532,10805.32 +9990,2025-03-08T05:59:57.129298-08:00,1006.4288330078125,10.79981,10799.81 +9991,2025-03-08T06:00:07.935399-08:00,1006.4064331054688,10.806101,10806.101 +9992,2025-03-08T06:00:18.748136-08:00,1006.4129638671875,10.812737,10812.737 +9993,2025-03-08T06:00:29.550858-08:00,1006.410400390625,10.802722,10802.722 +9994,2025-03-08T06:00:40.355155-08:00,1006.4381103515625,10.804297,10804.297 +9995,2025-03-08T06:00:51.154285-08:00,1006.43017578125,10.79913,10799.13 +9996,2025-03-08T06:01:01.960161-08:00,1006.4367065429688,10.805876,10805.876 +9997,2025-03-08T06:01:12.755154-08:00,1006.4537353515625,10.794993,10794.993 +9998,2025-03-08T06:01:23.562364-08:00,1006.4657592773438,10.80721,10807.21 +9999,2025-03-08T06:01:34.358149-08:00,1006.446044921875,10.795785,10795.785 +10000,2025-03-08T06:01:45.163312-08:00,1006.4445190429688,10.805163,10805.163 +10001,2025-03-08T06:01:55.968191-08:00,1006.4500122070312,10.804879,10804.879 +10002,2025-03-08T06:02:06.768161-08:00,1006.455322265625,10.79997,10799.97 +10003,2025-03-08T06:02:17.573479-08:00,1006.4159545898438,10.805318,10805.318 +10004,2025-03-08T06:02:28.386310-08:00,1006.4407958984375,10.812831,10812.831 +10005,2025-03-08T06:02:39.181389-08:00,1006.455322265625,10.795079,10795.079 +10006,2025-03-08T06:02:49.993436-08:00,1006.4290771484375,10.812047,10812.047 +10007,2025-03-08T06:03:00.798151-08:00,1006.46044921875,10.804715,10804.715 +10008,2025-03-08T06:03:11.598141-08:00,1006.4473266601562,10.79999,10799.99 +10009,2025-03-08T06:03:22.400319-08:00,1006.4762573242188,10.802178,10802.178 +10010,2025-03-08T06:03:33.205311-08:00,1006.44873046875,10.804992,10804.992 +10011,2025-03-08T06:03:44.015399-08:00,1006.44873046875,10.810088,10810.088 +10012,2025-03-08T06:03:54.811165-08:00,1006.4576416015625,10.795766,10795.766 +10013,2025-03-08T06:04:05.618161-08:00,1006.4500122070312,10.806996,10806.996 +10014,2025-03-08T06:04:16.418159-08:00,1006.4642333984375,10.799998,10799.998 +10015,2025-03-08T06:04:27.218486-08:00,1006.4445190429688,10.800327,10800.327 +10016,2025-03-08T06:04:38.020299-08:00,1006.4537353515625,10.801813,10801.813 +10017,2025-03-08T06:04:48.817403-08:00,1006.459228515625,10.797104,10797.104 +10018,2025-03-08T06:04:59.622508-08:00,1006.4668579101562,10.805105,10805.105 +10019,2025-03-08T06:05:10.415167-08:00,1006.4788818359375,10.792659,10792.659 +10020,2025-03-08T06:05:21.228188-08:00,1006.4840087890625,10.813021,10813.021 +10021,2025-03-08T06:05:32.025154-08:00,1006.4920043945312,10.796966,10796.966 +10022,2025-03-08T06:05:42.870817-08:00,1006.42626953125,10.845663,10845.663 +10023,2025-03-08T06:05:53.680016-08:00,1006.4854736328125,10.809199,10809.199 +10024,2025-03-08T06:06:04.485049-08:00,1006.4788818359375,10.805033,10805.033 +10025,2025-03-08T06:06:15.276912-08:00,1006.4723510742188,10.791863,10791.863 +10026,2025-03-08T06:06:26.085755-08:00,1006.505126953125,10.808843,10808.843 +10027,2025-03-08T06:06:36.882394-08:00,1006.4734497070312,10.796639,10796.639 +10028,2025-03-08T06:06:47.688911-08:00,1006.514404296875,10.806517,10806.517 +10029,2025-03-08T06:06:58.499128-08:00,1006.4617919921875,10.810217,10810.217 +10030,2025-03-08T06:07:09.298902-08:00,1006.4695434570312,10.799774,10799.774 +10031,2025-03-08T06:07:20.108903-08:00,1006.4644775390625,10.810001,10810.001 +10032,2025-03-08T06:07:30.904907-08:00,1006.5050659179688,10.796004,10796.004 +10033,2025-03-08T06:07:41.709377-08:00,1006.5092163085938,10.80447,10804.47 +10034,2025-03-08T06:07:52.509953-08:00,1006.474853515625,10.800576,10800.576 +10035,2025-03-08T06:08:03.312885-08:00,1006.45654296875,10.802932,10802.932 +10036,2025-03-08T06:08:14.112163-08:00,1006.4971923828125,10.799278,10799.278 +10037,2025-03-08T06:08:24.922129-08:00,1006.48291015625,10.809966,10809.966 +10038,2025-03-08T06:08:35.727150-08:00,1006.4986572265625,10.805021,10805.021 +10039,2025-03-08T06:08:46.529901-08:00,1006.4855346679688,10.802751,10802.751 +10040,2025-03-08T06:08:57.329895-08:00,1006.5064086914062,10.799994,10799.994 +10041,2025-03-08T06:09:08.129215-08:00,1006.4986572265625,10.79932,10799.32 +10042,2025-03-08T06:09:18.932139-08:00,1006.4880981445312,10.802924,10802.924 +10043,2025-03-08T06:09:29.735030-08:00,1006.50390625,10.802891,10802.891 +10044,2025-03-08T06:09:40.525199-08:00,1006.505126953125,10.790169,10790.169 +10045,2025-03-08T06:09:51.327622-08:00,1006.4788208007812,10.802423,10802.423 +10046,2025-03-08T06:10:02.133937-08:00,1006.4868774414062,10.806315,10806.315 +10047,2025-03-08T06:10:12.933634-08:00,1006.474853515625,10.799697,10799.697 +10048,2025-03-08T06:10:23.733467-08:00,1006.482666015625,10.799833,10799.833 +10049,2025-03-08T06:10:34.539193-08:00,1006.456298828125,10.805726,10805.726 +10050,2025-03-08T06:10:45.346056-08:00,1006.4918823242188,10.806863,10806.863 +10051,2025-03-08T06:10:56.150529-08:00,1006.4852905273438,10.804473,10804.473 +10052,2025-03-08T06:11:06.948198-08:00,1006.4866943359375,10.797669,10797.669 +10053,2025-03-08T06:11:17.758468-08:00,1006.4801635742188,10.81027,10810.27 +10054,2025-03-08T06:11:28.555580-08:00,1006.5010986328125,10.797112,10797.112 +10055,2025-03-08T06:11:39.363246-08:00,1006.516845703125,10.807666,10807.666 +10056,2025-03-08T06:11:50.171058-08:00,1006.5076293945312,10.807812,10807.812 +10057,2025-03-08T06:12:00.970248-08:00,1006.4959106445312,10.79919,10799.19 +10058,2025-03-08T06:12:11.772917-08:00,1006.4840087890625,10.802669,10802.669 +10059,2025-03-08T06:12:22.572187-08:00,1006.4920043945312,10.79927,10799.27 +10060,2025-03-08T06:12:33.368545-08:00,1006.4788818359375,10.796358,10796.358 +10061,2025-03-08T06:12:44.180125-08:00,1006.4788818359375,10.81158,10811.58 +10062,2025-03-08T06:12:54.986910-08:00,1006.4891967773438,10.806785,10806.785 +10063,2025-03-08T06:13:05.782496-08:00,1006.5393676757812,10.795586,10795.586 +10064,2025-03-08T06:13:16.586149-08:00,1006.5131225585938,10.803653,10803.653 +10065,2025-03-08T06:13:27.395261-08:00,1006.5339965820312,10.809112,10809.112 +10066,2025-03-08T06:13:38.199905-08:00,1006.4971923828125,10.804644,10804.644 +10067,2025-03-08T06:13:49.003189-08:00,1006.5037231445312,10.803284,10803.284 +10068,2025-03-08T06:13:59.810059-08:00,1006.5184326171875,10.80687,10806.87 +10069,2025-03-08T06:14:10.609259-08:00,1006.51416015625,10.7992,10799.2 +10070,2025-03-08T06:14:21.418891-08:00,1006.515625,10.809632,10809.632 +10071,2025-03-08T06:14:32.217862-08:00,1006.515625,10.798971,10798.971 +10072,2025-03-08T06:14:43.023908-08:00,1006.5379638671875,10.806046,10806.046 +10073,2025-03-08T06:14:53.825301-08:00,1006.5445556640625,10.801393,10801.393 +10074,2025-03-08T06:15:04.629904-08:00,1006.5445556640625,10.804603,10804.603 +10075,2025-03-08T06:15:15.440289-08:00,1006.5537719726562,10.810385,10810.385 +10076,2025-03-08T06:15:26.237150-08:00,1006.5498657226562,10.796861,10796.861 +10077,2025-03-08T06:15:37.050256-08:00,1006.53125,10.813106,10813.106 +10078,2025-03-08T06:15:47.853964-08:00,1006.51953125,10.803708,10803.708 +10079,2025-03-08T06:15:58.663230-08:00,1006.53271484375,10.809266,10809.266 +10080,2025-03-08T06:16:09.467899-08:00,1006.507568359375,10.804669,10804.669 +10081,2025-03-08T06:16:20.274455-08:00,1006.520751953125,10.806556,10806.556 +10082,2025-03-08T06:16:31.080146-08:00,1006.5431518554688,10.805691,10805.691 +10083,2025-03-08T06:16:41.881907-08:00,1006.5062255859375,10.801761,10801.761 +10084,2025-03-08T06:16:52.693907-08:00,1006.5062255859375,10.812,10812.0 +10085,2025-03-08T06:17:03.495301-08:00,1006.5560913085938,10.801394,10801.394 +10086,2025-03-08T06:17:14.305333-08:00,1006.5127563476562,10.810032,10810.032 +10087,2025-03-08T06:17:25.116213-08:00,1006.519287109375,10.81088,10810.88 +10088,2025-03-08T06:17:35.917228-08:00,1006.52734375,10.801015,10801.015 +10089,2025-03-08T06:17:46.720192-08:00,1006.530029296875,10.802964,10802.964 +10090,2025-03-08T06:17:57.529442-08:00,1006.478515625,10.80925,10809.25 +10091,2025-03-08T06:18:08.341892-08:00,1006.5260009765625,10.81245,10812.45 +10092,2025-03-08T06:18:19.146949-08:00,1006.5114135742188,10.805057,10805.057 +10093,2025-03-08T06:18:29.947246-08:00,1006.5140380859375,10.800297,10800.297 +10094,2025-03-08T06:18:40.753082-08:00,1006.5418701171875,10.805836,10805.836 +10095,2025-03-08T06:18:51.556907-08:00,1006.5035400390625,10.803825,10803.825 +10096,2025-03-08T06:19:02.362374-08:00,1006.53125,10.805467,10805.467 +10097,2025-03-08T06:19:13.157432-08:00,1006.4984130859375,10.795058,10795.058 +10098,2025-03-08T06:19:23.955246-08:00,1006.49951171875,10.797814,10797.814 +10099,2025-03-08T06:19:34.752240-08:00,1006.498291015625,10.796994,10796.994 +10100,2025-03-08T06:19:45.563279-08:00,1006.5392456054688,10.811039,10811.039 +10101,2025-03-08T06:19:56.359200-08:00,1006.50634765625,10.795921,10795.921 +10102,2025-03-08T06:20:07.171821-08:00,1006.5009155273438,10.812621,10812.621 +10103,2025-03-08T06:20:17.967217-08:00,1006.5020141601562,10.795396,10795.396 +10104,2025-03-08T06:20:28.765238-08:00,1006.5167236328125,10.798021,10798.021 +10105,2025-03-08T06:20:39.578173-08:00,1006.4981079101562,10.812935,10812.935 +10106,2025-03-08T06:20:50.380365-08:00,1006.50732421875,10.802192,10802.192 +10107,2025-03-08T06:21:01.188910-08:00,1006.5231323242188,10.808545,10808.545 +10108,2025-03-08T06:21:11.987485-08:00,1006.4901733398438,10.798575,10798.575 +10109,2025-03-08T06:21:22.792978-08:00,1006.5191650390625,10.805493,10805.493 +10110,2025-03-08T06:21:33.604892-08:00,1006.5140380859375,10.811914,10811.914 +10111,2025-03-08T06:21:44.404043-08:00,1006.5217895507812,10.799151,10799.151 +10112,2025-03-08T06:21:55.212473-08:00,1006.5232543945312,10.80843,10808.43 +10113,2025-03-08T06:22:06.012902-08:00,1006.51123046875,10.800429,10800.429 +10114,2025-03-08T06:22:16.818906-08:00,1006.5035400390625,10.806004,10806.004 +10115,2025-03-08T06:22:27.626907-08:00,1006.5127563476562,10.808001,10808.001 +10116,2025-03-08T06:22:38.435139-08:00,1006.4929809570312,10.808232,10808.232 +10117,2025-03-08T06:22:49.251904-08:00,1006.5285034179688,10.816765,10816.765 +10118,2025-03-08T06:23:00.050979-08:00,1006.5493774414062,10.799075,10799.075 +10119,2025-03-08T06:23:10.861781-08:00,1006.506103515625,10.810802,10810.802 +10120,2025-03-08T06:23:21.671465-08:00,1006.5087280273438,10.809684,10809.684 +10121,2025-03-08T06:23:32.471195-08:00,1006.5165405273438,10.79973,10799.73 +10122,2025-03-08T06:23:43.279297-08:00,1006.5374145507812,10.808102,10808.102 +10123,2025-03-08T06:23:54.092313-08:00,1006.5399780273438,10.813016,10813.016 +10124,2025-03-08T06:24:04.901403-08:00,1006.5125732421875,10.80909,10809.09 +10125,2025-03-08T06:24:15.709161-08:00,1006.5484619140625,10.807758,10807.758 +10126,2025-03-08T06:24:26.514911-08:00,1006.524658203125,10.80575,10805.75 +10127,2025-03-08T06:24:37.323901-08:00,1006.532470703125,10.80899,10808.99 +10128,2025-03-08T06:24:48.127126-08:00,1006.52734375,10.803225,10803.225 +10129,2025-03-08T06:24:58.941990-08:00,1006.52734375,10.814864,10814.864 +10130,2025-03-08T06:25:09.750423-08:00,1006.5706176757812,10.808433,10808.433 +10131,2025-03-08T06:25:20.563211-08:00,1006.5087280273438,10.812788,10812.788 +10132,2025-03-08T06:25:31.369514-08:00,1006.5337524414062,10.806303,10806.303 +10133,2025-03-08T06:25:42.167238-08:00,1006.5128173828125,10.797724,10797.724 +10134,2025-03-08T06:25:52.978297-08:00,1006.5140380859375,10.811059,10811.059 +10135,2025-03-08T06:26:03.785141-08:00,1006.5839233398438,10.806844,10806.844 +10136,2025-03-08T06:26:14.595133-08:00,1006.551025390625,10.809992,10809.992 +10137,2025-03-08T06:26:25.402895-08:00,1006.5416259765625,10.807762,10807.762 +10138,2025-03-08T06:26:36.212063-08:00,1006.507568359375,10.809168,10809.168 +10139,2025-03-08T06:26:47.031294-08:00,1006.5245361328125,10.819231,10819.231 +10140,2025-03-08T06:26:57.844516-08:00,1006.544189453125,10.813222,10813.222 +10141,2025-03-08T06:27:08.649528-08:00,1006.5783081054688,10.805012,10805.012 +10142,2025-03-08T06:27:19.459911-08:00,1006.5599975585938,10.810383,10810.383 +10143,2025-03-08T06:27:30.266011-08:00,1006.5282592773438,10.8061,10806.1 +10144,2025-03-08T06:27:41.077118-08:00,1006.5413818359375,10.811107,10811.107 +10145,2025-03-08T06:27:51.882034-08:00,1006.5231323242188,10.804916,10804.916 +10146,2025-03-08T06:28:02.694905-08:00,1006.48486328125,10.812871,10812.871 +10147,2025-03-08T06:28:13.506160-08:00,1006.4717407226562,10.811255,10811.255 +10148,2025-03-08T06:28:24.312956-08:00,1006.5218505859375,10.806796,10806.796 +10149,2025-03-08T06:28:35.121184-08:00,1006.5401611328125,10.808228,10808.228 +10150,2025-03-08T06:28:45.936275-08:00,1006.542724609375,10.815091,10815.091 +10151,2025-03-08T06:28:56.752911-08:00,1006.5164184570312,10.816636,10816.636 +10152,2025-03-08T06:29:07.560030-08:00,1006.529541015625,10.807119,10807.119 +10153,2025-03-08T06:29:18.381209-08:00,1006.5244750976562,10.821179,10821.179 +10154,2025-03-08T06:29:29.186489-08:00,1006.5783081054688,10.80528,10805.28 +10155,2025-03-08T06:29:39.998242-08:00,1006.5321655273438,10.811753,10811.753 +10156,2025-03-08T06:29:50.816132-08:00,1006.5452880859375,10.81789,10817.89 +10157,2025-03-08T06:30:01.626940-08:00,1006.5125122070312,10.810808,10810.808 +10158,2025-03-08T06:30:12.434949-08:00,1006.5150756835938,10.808009,10808.009 +10159,2025-03-08T06:30:23.246952-08:00,1006.5018920898438,10.812003,10812.003 +10160,2025-03-08T06:30:34.049910-08:00,1006.5440673828125,10.802958,10802.958 +10161,2025-03-08T06:30:44.864197-08:00,1006.5257568359375,10.814287,10814.287 +10162,2025-03-08T06:30:55.686095-08:00,1006.533447265625,10.821898,10821.898 +10163,2025-03-08T06:31:06.491905-08:00,1006.546630859375,10.80581,10805.81 +10164,2025-03-08T06:31:17.307906-08:00,1006.521484375,10.816001,10816.001 +10165,2025-03-08T06:31:28.119784-08:00,1006.5438842773438,10.811878,10811.878 +10166,2025-03-08T06:31:38.942909-08:00,1006.503173828125,10.823125,10823.125 +10167,2025-03-08T06:31:49.753246-08:00,1006.5240478515625,10.810337,10810.337 +10168,2025-03-08T06:32:00.571154-08:00,1006.5150146484375,10.817908,10817.908 +10169,2025-03-08T06:32:11.369911-08:00,1006.486083984375,10.798757,10798.757 +10170,2025-03-08T06:32:22.187640-08:00,1006.5018920898438,10.817729,10817.729 +10171,2025-03-08T06:32:32.998193-08:00,1006.4979858398438,10.810553,10810.553 +10172,2025-03-08T06:32:43.807885-08:00,1006.525390625,10.809692,10809.692 +10173,2025-03-08T06:32:54.617090-08:00,1006.507080078125,10.809205,10809.205 +10174,2025-03-08T06:33:05.426242-08:00,1006.4951782226562,10.809152,10809.152 +10175,2025-03-08T06:33:16.235910-08:00,1006.48193359375,10.809668,10809.668 +10176,2025-03-08T06:33:27.052957-08:00,1006.48193359375,10.817047,10817.047 +10177,2025-03-08T06:33:37.855898-08:00,1006.4556274414062,10.802941,10802.941 +10178,2025-03-08T06:33:48.668176-08:00,1006.489990234375,10.812278,10812.278 +10179,2025-03-08T06:33:59.482285-08:00,1006.4768676757812,10.814109,10814.109 +10180,2025-03-08T06:34:10.302119-08:00,1006.5254516601562,10.819834,10819.834 +10181,2025-03-08T06:34:21.109898-08:00,1006.489990234375,10.807779,10807.779 +10182,2025-03-08T06:34:31.925639-08:00,1006.5123291015625,10.815741,10815.741 +10183,2025-03-08T06:34:42.739215-08:00,1006.529296875,10.813576,10813.576 +10184,2025-03-08T06:34:53.562071-08:00,1006.5150146484375,10.822856,10822.856 +10185,2025-03-08T06:35:04.362115-08:00,1006.51611328125,10.800044,10800.044 +10186,2025-03-08T06:35:15.166219-08:00,1006.5029907226562,10.804104,10804.104 +10187,2025-03-08T06:35:25.987102-08:00,1006.5172729492188,10.820883,10820.883 +10188,2025-03-08T06:35:36.794384-08:00,1006.4974975585938,10.807282,10807.282 +10189,2025-03-08T06:35:47.607163-08:00,1006.5330200195312,10.812779,10812.779 +10190,2025-03-08T06:35:58.420915-08:00,1006.5264892578125,10.813752,10813.752 +10191,2025-03-08T06:36:09.235048-08:00,1006.5318603515625,10.814133,10814.133 +10192,2025-03-08T06:36:20.043159-08:00,1006.5198364257812,10.808111,10808.111 +10193,2025-03-08T06:36:30.867428-08:00,1006.5214233398438,10.824269,10824.269 +10194,2025-03-08T06:36:41.673885-08:00,1006.56201171875,10.806457,10806.457 +10195,2025-03-08T06:36:52.491045-08:00,1006.5410766601562,10.81716,10817.16 +10196,2025-03-08T06:37:03.302949-08:00,1006.548828125,10.811904,10811.904 +10197,2025-03-08T06:37:14.111336-08:00,1006.5437622070312,10.808387,10808.387 +10198,2025-03-08T06:37:24.927911-08:00,1006.556884765625,10.816575,10816.575 +10199,2025-03-08T06:37:35.741587-08:00,1006.5606079101562,10.813676,10813.676 +10200,2025-03-08T06:37:46.555197-08:00,1006.606689453125,10.81361,10813.61 +10201,2025-03-08T06:37:57.369927-08:00,1006.602783203125,10.81473,10814.73 +10202,2025-03-08T06:38:08.177051-08:00,1006.6015625,10.807124,10807.124 +10203,2025-03-08T06:38:18.987884-08:00,1006.5753173828125,10.810833,10810.833 +10204,2025-03-08T06:38:29.807343-08:00,1006.5753173828125,10.819459,10819.459 +10205,2025-03-08T06:38:40.619303-08:00,1006.5856323242188,10.81196,10811.96 +10206,2025-03-08T06:38:51.438988-08:00,1006.5829467773438,10.819685,10819.685 +10207,2025-03-08T06:39:02.247039-08:00,1006.5921630859375,10.808051,10808.051 +10208,2025-03-08T06:39:13.057134-08:00,1006.5856323242188,10.810095,10810.095 +10209,2025-03-08T06:39:23.875493-08:00,1006.56982421875,10.818359,10818.359 +10210,2025-03-08T06:39:34.698911-08:00,1006.564697265625,10.823418,10823.418 +10211,2025-03-08T06:39:45.509896-08:00,1006.5790405273438,10.810985,10810.985 +10212,2025-03-08T06:39:56.325142-08:00,1006.6134643554688,10.815246,10815.246 +10213,2025-03-08T06:40:07.134960-08:00,1006.6226806640625,10.809818,10809.818 +10214,2025-03-08T06:40:17.943240-08:00,1006.5962524414062,10.80828,10808.28 +10215,2025-03-08T06:40:28.764225-08:00,1006.6318969726562,10.820985,10820.985 +10216,2025-03-08T06:40:39.573540-08:00,1006.6040649414062,10.809315,10809.315 +10217,2025-03-08T06:40:50.392184-08:00,1006.6329956054688,10.818644,10818.644 +10218,2025-03-08T06:41:01.202918-08:00,1006.6329956054688,10.810734,10810.734 +10219,2025-03-08T06:41:12.027387-08:00,1006.5946655273438,10.824469,10824.469 +10220,2025-03-08T06:41:22.837906-08:00,1006.6290893554688,10.810519,10810.519 +10221,2025-03-08T06:41:33.650884-08:00,1006.6104736328125,10.812978,10812.978 +10222,2025-03-08T06:41:44.472669-08:00,1006.626220703125,10.821785,10821.785 +10223,2025-03-08T06:41:55.293911-08:00,1006.62109375,10.821242,10821.242 +10224,2025-03-08T06:42:06.112089-08:00,1006.623779296875,10.818178,10818.178 +10225,2025-03-08T06:42:16.916107-08:00,1006.6156005859375,10.804018,10804.018 +10226,2025-03-08T06:42:27.728040-08:00,1006.6288452148438,10.811933,10811.933 +10227,2025-03-08T06:42:38.544163-08:00,1006.5973510742188,10.816123,10816.123 +10228,2025-03-08T06:42:49.357183-08:00,1006.6314086914062,10.81302,10813.02 +10229,2025-03-08T06:43:00.177954-08:00,1006.6263427734375,10.820771,10820.771 +10230,2025-03-08T06:43:10.988909-08:00,1006.5934448242188,10.810955,10810.955 +10231,2025-03-08T06:43:21.805315-08:00,1006.635498046875,10.816406,10816.406 +10232,2025-03-08T06:43:32.622459-08:00,1006.622314453125,10.817144,10817.144 +10233,2025-03-08T06:43:43.439909-08:00,1006.6300659179688,10.81745,10817.45 +10234,2025-03-08T06:43:54.248211-08:00,1006.6091918945312,10.808302,10808.302 +10235,2025-03-08T06:44:05.068845-08:00,1006.63671875,10.820634,10820.634 +10236,2025-03-08T06:44:15.882037-08:00,1006.6168823242188,10.813192,10813.192 +10237,2025-03-08T06:44:26.700891-08:00,1006.6168823242188,10.818854,10818.854 +10238,2025-03-08T06:44:37.516128-08:00,1006.6392822265625,10.815237,10815.237 +10239,2025-03-08T06:44:48.326317-08:00,1006.62890625,10.810189,10810.189 +10240,2025-03-08T06:44:59.137228-08:00,1006.5789184570312,10.810911,10810.911 +10241,2025-03-08T06:45:09.955913-08:00,1006.61181640625,10.818685,10818.685 +10242,2025-03-08T06:45:20.766178-08:00,1006.61181640625,10.810265,10810.265 +10243,2025-03-08T06:45:31.586179-08:00,1006.5762329101562,10.820001,10820.001 +10244,2025-03-08T06:45:42.395081-08:00,1006.592041015625,10.808902,10808.902 +10245,2025-03-08T06:45:53.213025-08:00,1006.5932006835938,10.817944,10817.944 +10246,2025-03-08T06:46:04.019236-08:00,1006.5932006835938,10.806211,10806.211 +10247,2025-03-08T06:46:14.833980-08:00,1006.6012573242188,10.814744,10814.744 +10248,2025-03-08T06:46:25.646911-08:00,1006.5932006835938,10.812931,10812.931 +10249,2025-03-08T06:46:36.450905-08:00,1006.6221923828125,10.803994,10803.994 +10250,2025-03-08T06:46:47.273211-08:00,1006.5972900390625,10.822306,10822.306 +10251,2025-03-08T06:46:58.084957-08:00,1006.6181030273438,10.811746,10811.746 +10252,2025-03-08T06:47:08.899232-08:00,1006.606201171875,10.814275,10814.275 +10253,2025-03-08T06:47:19.712138-08:00,1006.6141967773438,10.812906,10812.906 +10254,2025-03-08T06:47:30.531211-08:00,1006.6234130859375,10.819073,10819.073 +10255,2025-03-08T06:47:41.355316-08:00,1006.631103515625,10.824105,10824.105 +10256,2025-03-08T06:47:52.163911-08:00,1006.6168823242188,10.808595,10808.595 +10257,2025-03-08T06:48:02.983709-08:00,1006.65234375,10.819798,10819.798 +10258,2025-03-08T06:48:13.806861-08:00,1006.6535034179688,10.823152,10823.152 +10259,2025-03-08T06:48:24.620100-08:00,1006.6641235351562,10.813239,10813.239 +10260,2025-03-08T06:48:35.433156-08:00,1006.6378173828125,10.813056,10813.056 +10261,2025-03-08T06:48:46.260848-08:00,1006.6257934570312,10.827692,10827.692 +10262,2025-03-08T06:48:57.070213-08:00,1006.66796875,10.809365,10809.365 +10263,2025-03-08T06:49:07.891925-08:00,1006.6495971679688,10.821712,10821.712 +10264,2025-03-08T06:49:18.700937-08:00,1006.635009765625,10.809012,10809.012 +10265,2025-03-08T06:49:29.522274-08:00,1006.65625,10.821337,10821.337 +10266,2025-03-08T06:49:40.337365-08:00,1006.6654052734375,10.815091,10815.091 +10267,2025-03-08T06:49:51.148379-08:00,1006.6467895507812,10.811014,10811.014 +10268,2025-03-08T06:50:01.956301-08:00,1006.6493530273438,10.807922,10807.922 +10269,2025-03-08T06:50:12.777911-08:00,1006.6834106445312,10.82161,10821.61 +10270,2025-03-08T06:50:23.594278-08:00,1006.6651611328125,10.816367,10816.367 +10271,2025-03-08T06:50:34.406952-08:00,1006.6571655273438,10.812674,10812.674 +10272,2025-03-08T06:50:45.214052-08:00,1006.688720703125,10.8071,10807.1 +10273,2025-03-08T06:50:56.024487-08:00,1006.6953125,10.810435,10810.435 +10274,2025-03-08T06:51:06.844132-08:00,1006.677001953125,10.819645,10819.645 +10275,2025-03-08T06:51:17.654118-08:00,1006.6571655273438,10.809986,10809.986 +10276,2025-03-08T06:51:28.469165-08:00,1006.6781005859375,10.815047,10815.047 +10277,2025-03-08T06:51:39.282912-08:00,1006.6861572265625,10.813747,10813.747 +10278,2025-03-08T06:51:50.101971-08:00,1006.6781005859375,10.819059,10819.059 +10279,2025-03-08T06:52:00.916036-08:00,1006.6994018554688,10.814065,10814.065 +10280,2025-03-08T06:52:11.729230-08:00,1006.6649780273438,10.813194,10813.194 +10281,2025-03-08T06:52:22.541493-08:00,1006.6729736328125,10.812263,10812.263 +10282,2025-03-08T06:52:33.352132-08:00,1006.6690673828125,10.810639,10810.639 +10283,2025-03-08T06:52:44.166035-08:00,1006.69140625,10.813903,10813.903 +10284,2025-03-08T06:52:54.982911-08:00,1006.6782836914062,10.816876,10816.876 +10285,2025-03-08T06:53:05.807906-08:00,1006.6925048828125,10.824995,10824.995 +10286,2025-03-08T06:53:16.621228-08:00,1006.7072143554688,10.813322,10813.322 +10287,2025-03-08T06:53:27.439910-08:00,1006.6859130859375,10.818682,10818.682 +10288,2025-03-08T06:53:38.249119-08:00,1006.7072143554688,10.809209,10809.209 +10289,2025-03-08T06:53:49.076211-08:00,1006.7137451171875,10.827092,10827.092 +10290,2025-03-08T06:53:59.888886-08:00,1006.7086181640625,10.812675,10812.675 +10291,2025-03-08T06:54:10.705908-08:00,1006.694091796875,10.817022,10817.022 +10292,2025-03-08T06:54:21.519494-08:00,1006.6837768554688,10.813586,10813.586 +10293,2025-03-08T06:54:32.341911-08:00,1006.705810546875,10.822417,10822.417 +10294,2025-03-08T06:54:43.155897-08:00,1006.7256469726562,10.813986,10813.986 +10295,2025-03-08T06:54:53.966100-08:00,1006.69921875,10.810203,10810.203 +10296,2025-03-08T06:55:04.789310-08:00,1006.724365234375,10.82321,10823.21 +10297,2025-03-08T06:55:15.605321-08:00,1006.69921875,10.816011,10816.011 +10298,2025-03-08T06:55:26.417913-08:00,1006.7084350585938,10.812592,10812.592 +10299,2025-03-08T06:55:37.237110-08:00,1006.7139282226562,10.819197,10819.197 +10300,2025-03-08T06:55:48.058059-08:00,1006.692626953125,10.820949,10820.949 +10301,2025-03-08T06:55:58.876908-08:00,1006.7296752929688,10.818849,10818.849 +10302,2025-03-08T06:56:09.688963-08:00,1006.707275390625,10.812055,10812.055 +10303,2025-03-08T06:56:20.507762-08:00,1006.7362670898438,10.818799,10818.799 +10304,2025-03-08T06:56:31.327912-08:00,1006.7296752929688,10.82015,10820.15 +10305,2025-03-08T06:56:42.142036-08:00,1006.7139282226562,10.814124,10814.124 +10306,2025-03-08T06:56:52.953156-08:00,1006.7347412109375,10.81112,10811.12 +10307,2025-03-08T06:57:03.769238-08:00,1006.7362670898438,10.816082,10816.082 +10308,2025-03-08T06:57:14.585299-08:00,1006.7307739257812,10.816061,10816.061 +10309,2025-03-08T06:57:25.398989-08:00,1006.7307739257812,10.81369,10813.69 +10310,2025-03-08T06:57:36.220912-08:00,1006.766357421875,10.821923,10821.923 +10311,2025-03-08T06:57:47.041176-08:00,1006.726806640625,10.820264,10820.264 +10312,2025-03-08T06:57:57.863907-08:00,1006.7413940429688,10.822731,10822.731 +10313,2025-03-08T06:58:08.673914-08:00,1006.7689208984375,10.810007,10810.007 +10314,2025-03-08T06:58:19.497570-08:00,1006.7228393554688,10.823656,10823.656 +10315,2025-03-08T06:58:30.304735-08:00,1006.7217407226562,10.807165,10807.165 +10316,2025-03-08T06:58:41.122930-08:00,1006.7413940429688,10.818195,10818.195 +10317,2025-03-08T06:58:51.945151-08:00,1006.73486328125,10.822221,10822.221 +10318,2025-03-08T06:59:02.764184-08:00,1006.713623046875,10.819033,10819.033 +10319,2025-03-08T06:59:13.585488-08:00,1006.726806640625,10.821304,10821.304 +10320,2025-03-08T06:59:24.398920-08:00,1006.6860961914062,10.813432,10813.432 +10321,2025-03-08T06:59:35.218037-08:00,1006.713623046875,10.819117,10819.117 +10322,2025-03-08T06:59:46.039904-08:00,1006.72021484375,10.821867,10821.867 +10323,2025-03-08T06:59:56.858036-08:00,1006.6939086914062,10.818132,10818.132 +10324,2025-03-08T07:00:07.685170-08:00,1006.7151489257812,10.827134,10827.134 +10325,2025-03-08T07:00:18.504972-08:00,1006.700439453125,10.819802,10819.802 +10326,2025-03-08T07:00:29.325910-08:00,1006.6964721679688,10.820938,10820.938 +10327,2025-03-08T07:00:40.140073-08:00,1006.70849609375,10.814163,10814.163 +10328,2025-03-08T07:00:50.967062-08:00,1006.7492065429688,10.826989,10826.989 +10329,2025-03-08T07:01:01.785954-08:00,1006.7217407226562,10.818892,10818.892 +10330,2025-03-08T07:01:12.602956-08:00,1006.7320556640625,10.817002,10817.002 +10331,2025-03-08T07:01:23.424904-08:00,1006.7243041992188,10.821948,10821.948 +10332,2025-03-08T07:01:34.248906-08:00,1006.7111206054688,10.824002,10824.002 +10333,2025-03-08T07:01:45.070265-08:00,1006.7122802734375,10.821359,10821.359 +10334,2025-03-08T07:01:55.897193-08:00,1006.7072143554688,10.826928,10826.928 +10335,2025-03-08T07:02:06.715907-08:00,1006.736083984375,10.818714,10818.714 +10336,2025-03-08T07:02:17.530727-08:00,1006.7109375,10.81482,10814.82 +10337,2025-03-08T07:02:28.350913-08:00,1006.717529296875,10.820186,10820.186 +10338,2025-03-08T07:02:39.170897-08:00,1006.73876953125,10.819984,10819.984 +10339,2025-03-08T07:02:49.992224-08:00,1006.7412719726562,10.821327,10821.327 +10340,2025-03-08T07:03:00.816912-08:00,1006.7134399414062,10.824688,10824.688 +10341,2025-03-08T07:03:11.635903-08:00,1006.7281494140625,10.818991,10818.991 +10342,2025-03-08T07:03:22.455345-08:00,1006.755615234375,10.819442,10819.442 +10343,2025-03-08T07:03:33.264539-08:00,1006.7490844726562,10.809194,10809.194 +10344,2025-03-08T07:03:44.080968-08:00,1006.7490844726562,10.816429,10816.429 +10345,2025-03-08T07:03:54.895132-08:00,1006.7490844726562,10.814164,10814.164 +10346,2025-03-08T07:04:05.705108-08:00,1006.7238159179688,10.809976,10809.976 +10347,2025-03-08T07:04:16.514676-08:00,1006.716064453125,10.809568,10809.568 +10348,2025-03-08T07:04:27.336181-08:00,1006.716064453125,10.821505,10821.505 +10349,2025-03-08T07:04:38.148897-08:00,1006.73046875,10.812716,10812.716 +10350,2025-03-08T07:04:48.964888-08:00,1006.7698974609375,10.815991,10815.991 +10351,2025-03-08T07:04:59.779183-08:00,1006.7633666992188,10.814295,10814.295 +10352,2025-03-08T07:05:10.590230-08:00,1006.7567138671875,10.811047,10811.047 +10353,2025-03-08T07:05:21.403248-08:00,1006.7095336914062,10.813018,10813.018 +10354,2025-03-08T07:05:32.226907-08:00,1006.7633666992188,10.823659,10823.659 +10355,2025-03-08T07:05:43.072395-08:00,1006.7648315429688,10.845488,10845.488 +10356,2025-03-08T07:05:53.881270-08:00,1006.7424926757812,10.808875,10808.875 +10357,2025-03-08T07:06:04.706667-08:00,1006.7698974609375,10.825397,10825.397 +10358,2025-03-08T07:06:15.516974-08:00,1006.76220703125,10.810307,10810.307 +10359,2025-03-08T07:06:26.330329-08:00,1006.7831420898438,10.813355,10813.355 +10360,2025-03-08T07:06:37.143505-08:00,1006.78076171875,10.813176,10813.176 +10361,2025-03-08T07:06:47.955212-08:00,1006.7544555664062,10.811707,10811.707 +10362,2025-03-08T07:06:58.763141-08:00,1006.7544555664062,10.807929,10807.929 +10363,2025-03-08T07:07:09.579055-08:00,1006.7940063476562,10.815914,10815.914 +10364,2025-03-08T07:07:20.390985-08:00,1006.781982421875,10.81193,10811.93 +10365,2025-03-08T07:07:31.217311-08:00,1006.799072265625,10.826326,10826.326 +10366,2025-03-08T07:07:42.028325-08:00,1006.813720703125,10.811014,10811.014 +10367,2025-03-08T07:07:52.846980-08:00,1006.7940063476562,10.818655,10818.655 +10368,2025-03-08T07:08:03.662203-08:00,1006.78076171875,10.815223,10815.223 +10369,2025-03-08T07:08:14.470989-08:00,1006.7940063476562,10.808786,10808.786 +10370,2025-03-08T07:08:25.287274-08:00,1006.7781982421875,10.816285,10816.285 +10371,2025-03-08T07:08:36.107045-08:00,1006.8123168945312,10.819771,10819.771 +10372,2025-03-08T07:08:46.915983-08:00,1006.826904296875,10.808938,10808.938 +10373,2025-03-08T07:08:57.743147-08:00,1006.826904296875,10.827164,10827.164 +10374,2025-03-08T07:09:08.546270-08:00,1006.8177490234375,10.803123,10803.123 +10375,2025-03-08T07:09:19.365340-08:00,1006.8162231445312,10.81907,10819.07 +10376,2025-03-08T07:09:30.175211-08:00,1006.8283081054688,10.809871,10809.871 +10377,2025-03-08T07:09:40.982989-08:00,1006.8217163085938,10.807778,10807.778 +10378,2025-03-08T07:09:51.804347-08:00,1006.8162231445312,10.821358,10821.358 +10379,2025-03-08T07:10:02.618184-08:00,1006.787353515625,10.813837,10813.837 +10380,2025-03-08T07:10:13.432993-08:00,1006.7887573242188,10.814809,10814.809 +10381,2025-03-08T07:10:24.247983-08:00,1006.8309326171875,10.81499,10814.99 +10382,2025-03-08T07:10:35.066980-08:00,1006.8136596679688,10.818997,10818.997 +10383,2025-03-08T07:10:45.878483-08:00,1006.8202514648438,10.811503,10811.503 +10384,2025-03-08T07:10:56.699047-08:00,1006.8070068359375,10.820564,10820.564 +10385,2025-03-08T07:11:07.519983-08:00,1006.8348388671875,10.820936,10820.936 +10386,2025-03-08T07:11:18.331537-08:00,1006.8389282226562,10.811554,10811.554 +10387,2025-03-08T07:11:29.148309-08:00,1006.8389282226562,10.816772,10816.772 +10388,2025-03-08T07:11:39.960992-08:00,1006.819091796875,10.812683,10812.683 +10389,2025-03-08T07:11:50.770985-08:00,1006.8400268554688,10.809993,10809.993 +10390,2025-03-08T07:12:01.586030-08:00,1006.8506469726562,10.815045,10815.045 +10391,2025-03-08T07:12:12.401377-08:00,1006.845458984375,10.815347,10815.347 +10392,2025-03-08T07:12:23.220316-08:00,1006.8531494140625,10.818939,10818.939 +10393,2025-03-08T07:12:34.028232-08:00,1006.819091796875,10.807916,10807.916 +10394,2025-03-08T07:12:44.838086-08:00,1006.8531494140625,10.809854,10809.854 +10395,2025-03-08T07:12:55.660191-08:00,1006.8546752929688,10.822105,10822.105 +10396,2025-03-08T07:13:06.470352-08:00,1006.8334350585938,10.810161,10810.161 +10397,2025-03-08T07:13:17.284059-08:00,1006.8729858398438,10.813707,10813.707 +10398,2025-03-08T07:13:28.096202-08:00,1006.8612670898438,10.812143,10812.143 +10399,2025-03-08T07:13:38.910023-08:00,1006.8389282226562,10.813821,10813.821 +10400,2025-03-08T07:13:49.723965-08:00,1006.85205078125,10.813942,10813.942 +10401,2025-03-08T07:14:00.532975-08:00,1006.804443359375,10.80901,10809.01 +10402,2025-03-08T07:14:11.350962-08:00,1006.830810546875,10.817987,10817.987 +10403,2025-03-08T07:14:22.163985-08:00,1006.871826171875,10.813023,10813.023 +10404,2025-03-08T07:14:32.972967-08:00,1006.885009765625,10.808982,10808.982 +10405,2025-03-08T07:14:43.786965-08:00,1006.8506469726562,10.813998,10813.998 +10406,2025-03-08T07:14:54.602184-08:00,1006.843994140625,10.815219,10815.219 +10407,2025-03-08T07:15:05.406994-08:00,1006.86376953125,10.80481,10804.81 +10408,2025-03-08T07:15:16.220724-08:00,1006.8900756835938,10.81373,10813.73 +10409,2025-03-08T07:15:27.029379-08:00,1006.8560180664062,10.808655,10808.655 +10410,2025-03-08T07:15:37.845987-08:00,1006.8768920898438,10.816608,10816.608 +10411,2025-03-08T07:15:48.657959-08:00,1006.8703002929688,10.811972,10811.972 +10412,2025-03-08T07:15:59.472212-08:00,1006.8757934570312,10.814253,10814.253 +10413,2025-03-08T07:16:10.285332-08:00,1006.885009765625,10.81312,10813.12 +10414,2025-03-08T07:16:21.097335-08:00,1006.9046630859375,10.812003,10812.003 +10415,2025-03-08T07:16:31.913979-08:00,1006.8703002929688,10.816644,10816.644 +10416,2025-03-08T07:16:42.731981-08:00,1006.9112548828125,10.818002,10818.002 +10417,2025-03-08T07:16:53.544885-08:00,1006.862548828125,10.812904,10812.904 +10418,2025-03-08T07:17:04.342340-08:00,1006.885009765625,10.797455,10797.455 +10419,2025-03-08T07:17:15.152732-08:00,1006.9124755859375,10.810392,10810.392 +10420,2025-03-08T07:17:25.968060-08:00,1006.9204711914062,10.815328,10815.328 +10421,2025-03-08T07:17:36.781007-08:00,1006.8861083984375,10.812947,10812.947 +10422,2025-03-08T07:17:47.586075-08:00,1006.9073486328125,10.805068,10805.068 +10423,2025-03-08T07:17:58.405968-08:00,1006.9282836914062,10.819893,10819.893 +10424,2025-03-08T07:18:09.216375-08:00,1006.8743896484375,10.810407,10810.407 +10425,2025-03-08T07:18:20.023893-08:00,1006.8875732421875,10.807518,10807.518 +10426,2025-03-08T07:18:30.834446-08:00,1006.921630859375,10.810553,10810.553 +10427,2025-03-08T07:18:41.643991-08:00,1006.8887329101562,10.809545,10809.545 +10428,2025-03-08T07:18:52.452249-08:00,1006.909912109375,10.808258,10808.258 +10429,2025-03-08T07:19:03.275965-08:00,1006.909912109375,10.823716,10823.716 +10430,2025-03-08T07:19:14.087245-08:00,1006.8941650390625,10.81128,10811.28 +10431,2025-03-08T07:19:24.906321-08:00,1006.9151000976562,10.819076,10819.076 +10432,2025-03-08T07:19:35.721991-08:00,1006.9241943359375,10.81567,10815.67 +10433,2025-03-08T07:19:46.536128-08:00,1006.896728515625,10.814137,10814.137 +10434,2025-03-08T07:19:57.343713-08:00,1006.923095703125,10.807585,10807.585 +10435,2025-03-08T07:20:08.152176-08:00,1006.9176635742188,10.808463,10808.463 +10436,2025-03-08T07:20:18.969327-08:00,1006.9466552734375,10.817151,10817.151 +10437,2025-03-08T07:20:29.782181-08:00,1006.932373046875,10.812854,10812.854 +10438,2025-03-08T07:20:40.600978-08:00,1006.9598388671875,10.818797,10818.797 +10439,2025-03-08T07:20:51.419984-08:00,1006.9334106445312,10.819006,10819.006 +10440,2025-03-08T07:21:02.242986-08:00,1006.955810546875,10.823002,10823.002 +10441,2025-03-08T07:21:13.058989-08:00,1006.9268798828125,10.816003,10816.003 +10442,2025-03-08T07:21:23.876964-08:00,1006.942626953125,10.817975,10817.975 +10443,2025-03-08T07:21:34.690342-08:00,1006.963623046875,10.813378,10813.378 +10444,2025-03-08T07:21:45.508126-08:00,1006.8950805664062,10.817784,10817.784 +10445,2025-03-08T07:21:56.328987-08:00,1006.9452514648438,10.820861,10820.861 +10446,2025-03-08T07:22:07.138232-08:00,1006.9742431640625,10.809245,10809.245 +10447,2025-03-08T07:22:17.952174-08:00,1006.9478149414062,10.813942,10813.942 +10448,2025-03-08T07:22:28.768993-08:00,1006.9544677734375,10.816819,10816.819 +10449,2025-03-08T07:22:39.587162-08:00,1006.951904296875,10.818169,10818.169 +10450,2025-03-08T07:22:50.402983-08:00,1006.9793701171875,10.815821,10815.821 +10451,2025-03-08T07:23:01.215302-08:00,1006.9478149414062,10.812319,10812.319 +10452,2025-03-08T07:23:12.032316-08:00,1006.9412231445312,10.817014,10817.014 +10453,2025-03-08T07:23:22.842408-08:00,1006.950439453125,10.810092,10810.092 +10454,2025-03-08T07:23:33.661572-08:00,1006.9490356445312,10.819164,10819.164 +10455,2025-03-08T07:23:44.482159-08:00,1006.9384155273438,10.820587,10820.587 +10456,2025-03-08T07:23:55.297993-08:00,1006.931884765625,10.815834,10815.834 +10457,2025-03-08T07:24:06.110085-08:00,1006.9054565429688,10.812092,10812.092 +10458,2025-03-08T07:24:16.929978-08:00,1006.9411010742188,10.819893,10819.893 +10459,2025-03-08T07:24:27.741029-08:00,1006.89892578125,10.811051,10811.051 +10460,2025-03-08T07:24:38.555258-08:00,1006.9622802734375,10.814229,10814.229 +10461,2025-03-08T07:24:49.364969-08:00,1006.9146728515625,10.809711,10809.711 +10462,2025-03-08T07:25:00.188211-08:00,1006.958251953125,10.823242,10823.242 +10463,2025-03-08T07:25:11.003231-08:00,1006.9451293945312,10.81502,10815.02 +10464,2025-03-08T07:25:21.818548-08:00,1006.9517211914062,10.815317,10815.317 +10465,2025-03-08T07:25:32.633990-08:00,1006.939697265625,10.815442,10815.442 +10466,2025-03-08T07:25:43.446980-08:00,1006.9462280273438,10.81299,10812.99 +10467,2025-03-08T07:25:54.263983-08:00,1006.93310546875,10.817003,10817.003 +10468,2025-03-08T07:26:05.077991-08:00,1006.92529296875,10.814008,10814.008 +10469,2025-03-08T07:26:15.887304-08:00,1006.927978515625,10.809313,10809.313 +10470,2025-03-08T07:26:26.701040-08:00,1006.914794921875,10.813736,10813.736 +10471,2025-03-08T07:26:37.515211-08:00,1006.89501953125,10.814171,10814.171 +10472,2025-03-08T07:26:48.331374-08:00,1006.9302368164062,10.816163,10816.163 +10473,2025-03-08T07:26:59.151507-08:00,1006.90283203125,10.820133,10820.133 +10474,2025-03-08T07:27:09.973272-08:00,1006.9236450195312,10.821765,10821.765 +10475,2025-03-08T07:27:20.782652-08:00,1006.9104614257812,10.80938,10809.38 +10476,2025-03-08T07:27:31.594046-08:00,1006.9104614257812,10.811394,10811.394 +10477,2025-03-08T07:27:42.414373-08:00,1006.9382934570312,10.820327,10820.327 +10478,2025-03-08T07:27:49.721651-08:00,1006.9170532226562,7.307278,7307.278 +10479,2025-03-08T07:27:53.229982-08:00,1006.9185180664062,3.508331,3508.331 +10480,2025-03-08T07:28:04.049984-08:00,1006.9185180664062,10.820002,10820.002 +10481,2025-03-08T07:28:14.870973-08:00,1006.8987426757812,10.820989,10820.989 +10482,2025-03-08T07:28:25.692890-08:00,1006.9317016601562,10.821917,10821.917 +10483,2025-03-08T07:28:36.504979-08:00,1006.8841552734375,10.812089,10812.089 +10484,2025-03-08T07:28:47.314228-08:00,1006.9053344726562,10.809249,10809.249 +10485,2025-03-08T07:28:58.135421-08:00,1006.934326171875,10.821193,10821.193 +10486,2025-03-08T07:29:08.955989-08:00,1006.9302368164062,10.820568,10820.568 +10487,2025-03-08T07:29:19.770339-08:00,1006.9382934570312,10.81435,10814.35 +10488,2025-03-08T07:29:30.595442-08:00,1006.9185180664062,10.825103,10825.103 +10489,2025-03-08T07:29:41.404331-08:00,1006.8922119140625,10.808889,10808.889 +10490,2025-03-08T07:29:52.224206-08:00,1006.947509765625,10.819875,10819.875 +10491,2025-03-08T07:30:03.038166-08:00,1006.919677734375,10.81396,10813.96 +10492,2025-03-08T07:30:13.865437-08:00,1006.9632568359375,10.827271,10827.271 +10493,2025-03-08T07:30:24.680052-08:00,1006.946044921875,10.814615,10814.615 +10494,2025-03-08T07:30:35.489212-08:00,1006.919677734375,10.80916,10809.16 +10495,2025-03-08T07:30:46.297982-08:00,1006.9354858398438,10.80877,10808.77 +10496,2025-03-08T07:30:57.116988-08:00,1006.9420166015625,10.819006,10819.006 +10497,2025-03-08T07:31:07.933340-08:00,1006.934326171875,10.816352,10816.352 +10498,2025-03-08T07:31:18.753201-08:00,1006.9210815429688,10.819861,10819.861 +10499,2025-03-08T07:31:29.571262-08:00,1006.9131469726562,10.818061,10818.061 +10500,2025-03-08T07:31:40.394246-08:00,1006.92626953125,10.822984,10822.984 +10501,2025-03-08T07:31:51.215908-08:00,1006.9420166015625,10.821662,10821.662 +10502,2025-03-08T07:32:02.028984-08:00,1006.9157104492188,10.813076,10813.076 +10503,2025-03-08T07:32:12.835978-08:00,1006.9328002929688,10.806994,10806.994 +10504,2025-03-08T07:32:23.649118-08:00,1006.9749755859375,10.81314,10813.14 +10505,2025-03-08T07:32:34.461400-08:00,1006.959228515625,10.812282,10812.282 +10506,2025-03-08T07:32:45.283272-08:00,1006.95263671875,10.821872,10821.872 +10507,2025-03-08T07:32:56.096036-08:00,1006.9617919921875,10.812764,10812.764 +10508,2025-03-08T07:33:06.909226-08:00,1006.947509765625,10.81319,10813.19 +10509,2025-03-08T07:33:17.729680-08:00,1006.934326171875,10.820454,10820.454 +10510,2025-03-08T07:33:28.538130-08:00,1006.9540405273438,10.80845,10808.45 +10511,2025-03-08T07:33:39.351464-08:00,1006.9684448242188,10.813334,10813.334 +10512,2025-03-08T07:33:50.157969-08:00,1006.9486083984375,10.806505,10806.505 +10513,2025-03-08T07:34:00.970045-08:00,1006.9763793945312,10.812076,10812.076 +10514,2025-03-08T07:34:11.774235-08:00,1006.9500732421875,10.80419,10804.19 +10515,2025-03-08T07:34:22.596446-08:00,1006.9171752929688,10.822211,10822.211 +10516,2025-03-08T07:34:33.405343-08:00,1006.9710083007812,10.808897,10808.897 +10517,2025-03-08T07:34:44.213986-08:00,1006.9578247070312,10.808643,10808.643 +10518,2025-03-08T07:34:55.029985-08:00,1006.9933471679688,10.815999,10815.999 +10519,2025-03-08T07:35:05.844114-08:00,1006.9933471679688,10.814129,10814.129 +10520,2025-03-08T07:35:16.653466-08:00,1006.98681640625,10.809352,10809.352 +10521,2025-03-08T07:35:27.474503-08:00,1006.9959106445312,10.821037,10821.037 +10522,2025-03-08T07:35:38.294242-08:00,1006.9827880859375,10.819739,10819.739 +10523,2025-03-08T07:35:49.114252-08:00,1006.9893798828125,10.82001,10820.01 +10524,2025-03-08T07:35:59.923908-08:00,1006.9776611328125,10.809656,10809.656 +10525,2025-03-08T07:36:10.741985-08:00,1006.993408203125,10.818077,10818.077 +10526,2025-03-08T07:36:21.559051-08:00,1006.967041015625,10.817066,10817.066 +10527,2025-03-08T07:36:32.382725-08:00,1007.002685546875,10.823674,10823.674 +10528,2025-03-08T07:36:43.192331-08:00,1006.9827880859375,10.809606,10809.606 +10529,2025-03-08T07:36:54.007077-08:00,1007.002685546875,10.814746,10814.746 +10530,2025-03-08T07:37:04.828126-08:00,1006.9723510742188,10.821049,10821.049 +10531,2025-03-08T07:37:15.650086-08:00,1006.9774169921875,10.82196,10821.96 +10532,2025-03-08T07:37:26.458671-08:00,1007.0119018554688,10.808585,10808.585 +10533,2025-03-08T07:37:37.270991-08:00,1006.981201171875,10.81232,10812.32 +10534,2025-03-08T07:37:48.086967-08:00,1006.9679565429688,10.815976,10815.976 +10535,2025-03-08T07:37:58.904985-08:00,1006.9679565429688,10.818018,10818.018 +10536,2025-03-08T07:38:09.709492-08:00,1006.98779296875,10.804507,10804.507 +10537,2025-03-08T07:38:20.524931-08:00,1007.0167236328125,10.815439,10815.439 +10538,2025-03-08T07:38:31.327643-08:00,1007.015625,10.802712,10802.712 +10539,2025-03-08T07:38:42.136360-08:00,1007.0101318359375,10.808717,10808.717 +10540,2025-03-08T07:38:52.961041-08:00,1007.0050048828125,10.824681,10824.681 +10541,2025-03-08T07:39:03.777010-08:00,1007.0181274414062,10.815969,10815.969 +10542,2025-03-08T07:39:14.581986-08:00,1007.0050048828125,10.804976,10804.976 +10543,2025-03-08T07:39:25.402045-08:00,1006.9812622070312,10.820059,10820.059 +10544,2025-03-08T07:39:36.204580-08:00,1007.0285034179688,10.802535,10802.535 +10545,2025-03-08T07:39:47.026302-08:00,1007.0285034179688,10.821722,10821.722 +10546,2025-03-08T07:39:57.839988-08:00,1007.0153198242188,10.813686,10813.686 +10547,2025-03-08T07:40:08.647962-08:00,1007.0285034179688,10.807974,10807.974 +10548,2025-03-08T07:40:19.459327-08:00,1006.99560546875,10.811365,10811.365 +10549,2025-03-08T07:40:30.278994-08:00,1007.0167846679688,10.819667,10819.667 +10550,2025-03-08T07:40:41.088216-08:00,1006.9970092773438,10.809222,10809.222 +10551,2025-03-08T07:40:51.907316-08:00,1007.0245361328125,10.8191,10819.1 +10552,2025-03-08T07:41:02.716988-08:00,1007.0167846679688,10.809672,10809.672 +10553,2025-03-08T07:41:13.527486-08:00,1007.0047607421875,10.810498,10810.498 +10554,2025-03-08T07:41:24.335158-08:00,1007.0391235351562,10.807672,10807.672 +10555,2025-03-08T07:41:35.143988-08:00,1007.0296630859375,10.80883,10808.83 +10556,2025-03-08T07:41:45.954261-08:00,1007.027099609375,10.810273,10810.273 +10557,2025-03-08T07:41:56.766984-08:00,1007.0850219726562,10.812723,10812.723 +10558,2025-03-08T07:42:07.569252-08:00,1007.0653076171875,10.802268,10802.268 +10559,2025-03-08T07:42:18.370961-08:00,1007.052001953125,10.801709,10801.709 +10560,2025-03-08T07:42:29.183388-08:00,1007.0323486328125,10.812427,10812.427 +10561,2025-03-08T07:42:39.992317-08:00,1007.0337524414062,10.808929,10808.929 +10562,2025-03-08T07:42:50.806187-08:00,1007.061279296875,10.81387,10813.87 +10563,2025-03-08T07:43:01.619380-08:00,1007.0440673828125,10.813193,10813.193 +10564,2025-03-08T07:43:12.427989-08:00,1007.0507202148438,10.808609,10808.609 +10565,2025-03-08T07:43:23.245318-08:00,1007.0584106445312,10.817329,10817.329 +10566,2025-03-08T07:43:34.055287-08:00,1007.0466918945312,10.809969,10809.969 +10567,2025-03-08T07:43:44.854301-08:00,1007.0584106445312,10.799014,10799.014 +10568,2025-03-08T07:43:55.664980-08:00,1007.0889282226562,10.810679,10810.679 +10569,2025-03-08T07:44:06.481333-08:00,1007.0914306640625,10.816353,10816.353 +10570,2025-03-08T07:44:17.288461-08:00,1007.0848388671875,10.807128,10807.128 +10571,2025-03-08T07:44:28.092294-08:00,1007.0767822265625,10.803833,10803.833 +10572,2025-03-08T07:44:38.903355-08:00,1007.0848388671875,10.811061,10811.061 +10573,2025-03-08T07:44:49.716157-08:00,1007.0940551757812,10.812802,10812.802 +10574,2025-03-08T07:45:00.531255-08:00,1007.0900268554688,10.815098,10815.098 +10575,2025-03-08T07:45:11.346040-08:00,1007.076904296875,10.814785,10814.785 +10576,2025-03-08T07:45:22.146045-08:00,1007.0992431640625,10.800005,10800.005 +10577,2025-03-08T07:45:32.962249-08:00,1007.08203125,10.816204,10816.204 +10578,2025-03-08T07:45:43.777985-08:00,1007.1307983398438,10.815736,10815.736 +10579,2025-03-08T07:45:54.585269-08:00,1007.1044311523438,10.807284,10807.284 +10580,2025-03-08T07:46:05.395226-08:00,1007.1319580078125,10.809957,10809.957 +10581,2025-03-08T07:46:16.218022-08:00,1007.0960693359375,10.822796,10822.796 +10582,2025-03-08T07:46:27.036274-08:00,1007.1173706054688,10.818252,10818.252 +10583,2025-03-08T07:46:37.845043-08:00,1007.0975952148438,10.808769,10808.769 +10584,2025-03-08T07:46:48.658967-08:00,1007.13427734375,10.813924,10813.924 +10585,2025-03-08T07:46:59.476984-08:00,1007.101318359375,10.818017,10818.017 +10586,2025-03-08T07:47:10.289261-08:00,1007.129150390625,10.812277,10812.277 +10587,2025-03-08T07:47:21.103288-08:00,1007.1383056640625,10.814027,10814.027 +10588,2025-03-08T07:47:31.912989-08:00,1007.135498046875,10.809701,10809.701 +10589,2025-03-08T07:47:42.732976-08:00,1007.1420288085938,10.819987,10819.987 +10590,2025-03-08T07:47:53.548047-08:00,1007.123779296875,10.815071,10815.071 +10591,2025-03-08T07:48:04.357002-08:00,1007.1051635742188,10.808955,10808.955 +10592,2025-03-08T07:48:15.169415-08:00,1007.134033203125,10.812413,10812.413 +10593,2025-03-08T07:48:25.990991-08:00,1007.1130981445312,10.821576,10821.576 +10594,2025-03-08T07:48:36.802984-08:00,1007.09716796875,10.811993,10811.993 +10595,2025-03-08T07:48:47.611026-08:00,1007.1195068359375,10.808042,10808.042 +10596,2025-03-08T07:48:58.418101-08:00,1007.1404418945312,10.807075,10807.075 +10597,2025-03-08T07:49:09.231441-08:00,1007.1470336914062,10.81334,10813.34 +10598,2025-03-08T07:49:20.043106-08:00,1007.1221313476562,10.811665,10811.665 +10599,2025-03-08T07:49:30.867306-08:00,1007.1312255859375,10.8242,10824.2 +10600,2025-03-08T07:49:41.675990-08:00,1007.1298217773438,10.808684,10808.684 +10601,2025-03-08T07:49:52.500294-08:00,1007.1539306640625,10.824304,10824.304 +10602,2025-03-08T07:50:03.306342-08:00,1007.1327514648438,10.806048,10806.048 +10603,2025-03-08T07:50:14.132108-08:00,1007.130126953125,10.825766,10825.766 +10604,2025-03-08T07:50:24.947450-08:00,1007.0851440429688,10.815342,10815.342 +10605,2025-03-08T07:50:35.762254-08:00,1007.1074829101562,10.814804,10814.804 +10606,2025-03-08T07:50:46.579980-08:00,1007.1617431640625,10.817726,10817.726 +10607,2025-03-08T07:50:57.407032-08:00,1007.1431274414062,10.827052,10827.052 +10608,2025-03-08T07:51:08.217370-08:00,1007.1402587890625,10.810338,10810.338 +10609,2025-03-08T07:51:19.037045-08:00,1007.1548461914062,10.819675,10819.675 +10610,2025-03-08T07:51:29.858400-08:00,1007.15087890625,10.821355,10821.355 +10611,2025-03-08T07:51:40.679220-08:00,1007.180908203125,10.82082,10820.82 +10612,2025-03-08T07:51:51.504980-08:00,1007.1626586914062,10.82576,10825.76 +10613,2025-03-08T07:52:02.317237-08:00,1007.190185546875,10.812257,10812.257 +10614,2025-03-08T07:52:13.138839-08:00,1007.1637573242188,10.821602,10821.602 +10615,2025-03-08T07:52:23.964245-08:00,1007.1531372070312,10.825406,10825.406 +10616,2025-03-08T07:52:34.780531-08:00,1007.1612548828125,10.816286,10816.286 +10617,2025-03-08T07:52:45.602733-08:00,1007.163818359375,10.822202,10822.202 +10618,2025-03-08T07:52:56.427204-08:00,1007.163818359375,10.824471,10824.471 +10619,2025-03-08T07:53:07.252433-08:00,1007.2070922851562,10.825229,10825.229 +10620,2025-03-08T07:53:18.071579-08:00,1007.18994140625,10.819146,10819.146 +10621,2025-03-08T07:53:28.898992-08:00,1007.1990356445312,10.827413,10827.413 +10622,2025-03-08T07:53:39.709402-08:00,1007.1884155273438,10.81041,10810.41 +10623,2025-03-08T07:53:50.541239-08:00,1007.17529296875,10.831837,10831.837 +10624,2025-03-08T07:54:01.360829-08:00,1007.1790771484375,10.81959,10819.59 +10625,2025-03-08T07:54:12.185319-08:00,1007.1856079101562,10.82449,10824.49 +10626,2025-03-08T07:54:23.000294-08:00,1007.1936645507812,10.814975,10814.975 +10627,2025-03-08T07:54:33.820453-08:00,1007.201416015625,10.820159,10820.159 +10628,2025-03-08T07:54:44.644605-08:00,1007.1922607421875,10.824152,10824.152 +10629,2025-03-08T07:54:55.463246-08:00,1007.2079467773438,10.818641,10818.641 +10630,2025-03-08T07:55:06.287856-08:00,1007.2091674804688,10.82461,10824.61 +10631,2025-03-08T07:55:17.105592-08:00,1007.2117309570312,10.817736,10817.736 +10632,2025-03-08T07:55:27.922396-08:00,1007.1986083984375,10.816804,10816.804 +10633,2025-03-08T07:55:38.741983-08:00,1007.1868896484375,10.819587,10819.587 +10634,2025-03-08T07:55:49.557010-08:00,1007.2037353515625,10.815027,10815.027 +10635,2025-03-08T07:56:00.390238-08:00,1007.2312622070312,10.833228,10833.228 +10636,2025-03-08T07:56:11.215206-08:00,1007.204833984375,10.824968,10824.968 +10637,2025-03-08T07:56:22.030362-08:00,1007.2023315429688,10.815156,10815.156 +10638,2025-03-08T07:56:32.862242-08:00,1007.204833984375,10.83188,10831.88 +10639,2025-03-08T07:56:43.683222-08:00,1007.20751953125,10.82098,10820.98 +10640,2025-03-08T07:56:54.513989-08:00,1007.1876831054688,10.830767,10830.767 +10641,2025-03-08T07:57:05.330410-08:00,1007.2034301757812,10.816421,10816.421 +10642,2025-03-08T07:57:16.151472-08:00,1007.2257690429688,10.821062,10821.062 +10643,2025-03-08T07:57:26.964538-08:00,1007.2072143554688,10.813066,10813.066 +10644,2025-03-08T07:57:37.788981-08:00,1007.2042846679688,10.824443,10824.443 +10645,2025-03-08T07:57:48.604564-08:00,1007.1925048828125,10.815583,10815.583 +10646,2025-03-08T07:57:59.426041-08:00,1007.216064453125,10.821477,10821.477 +10647,2025-03-08T07:58:10.243222-08:00,1007.2581787109375,10.817181,10817.181 +10648,2025-03-08T07:58:21.065528-08:00,1007.2398681640625,10.822306,10822.306 +10649,2025-03-08T07:58:31.884988-08:00,1007.2237548828125,10.81946,10819.46 +10650,2025-03-08T07:58:42.706986-08:00,1007.2120361328125,10.821998,10821.998 +10651,2025-03-08T07:58:53.520197-08:00,1007.248779296875,10.813211,10813.211 +10652,2025-03-08T07:59:04.334581-08:00,1007.268310546875,10.814384,10814.384 +10653,2025-03-08T07:59:15.161500-08:00,1007.2564697265625,10.826919,10826.919 +10654,2025-03-08T07:59:25.975235-08:00,1007.268310546875,10.813735,10813.735 +10655,2025-03-08T07:59:36.795521-08:00,1007.2616577148438,10.820286,10820.286 +10656,2025-03-08T07:59:47.617045-08:00,1007.2510375976562,10.821524,10821.524 +10657,2025-03-08T07:59:58.435476-08:00,1007.23779296875,10.818431,10818.431 +10658,2025-03-08T08:00:09.265128-08:00,1007.2338256835938,10.829652,10829.652 +10659,2025-03-08T08:00:20.081973-08:00,1007.2217407226562,10.816845,10816.845 +10660,2025-03-08T08:00:30.909534-08:00,1007.28515625,10.827561,10827.561 +10661,2025-03-08T08:00:41.728039-08:00,1007.2664794921875,10.818505,10818.505 +10662,2025-03-08T08:00:52.555980-08:00,1007.2415771484375,10.827941,10827.941 +10663,2025-03-08T08:01:03.377509-08:00,1007.2492065429688,10.821529,10821.529 +10664,2025-03-08T08:01:14.198228-08:00,1007.2913818359375,10.820719,10820.719 +10665,2025-03-08T08:01:25.028753-08:00,1007.2742309570312,10.830525,10830.525 +10666,2025-03-08T08:01:35.854001-08:00,1007.2713012695312,10.825248,10825.248 +10667,2025-03-08T08:01:46.672988-08:00,1007.2793579101562,10.818987,10818.987 +10668,2025-03-08T08:01:57.505268-08:00,1007.2529907226562,10.83228,10832.28 +10669,2025-03-08T08:02:08.326676-08:00,1007.2489013671875,10.821408,10821.408 +10670,2025-03-08T08:02:19.149271-08:00,1007.265869140625,10.822595,10822.595 +10671,2025-03-08T08:02:29.966146-08:00,1007.2343139648438,10.816875,10816.875 +10672,2025-03-08T08:02:40.786978-08:00,1007.2343139648438,10.820832,10820.832 +10673,2025-03-08T08:02:51.601985-08:00,1007.2570190429688,10.815007,10815.007 +10674,2025-03-08T08:03:02.427990-08:00,1007.2529907226562,10.826005,10826.005 +10675,2025-03-08T08:03:13.249290-08:00,1007.2619018554688,10.8213,10821.3 +10676,2025-03-08T08:03:24.069981-08:00,1007.2948608398438,10.820691,10820.691 +10677,2025-03-08T08:03:34.895990-08:00,1007.2709350585938,10.826009,10826.009 +10678,2025-03-08T08:03:45.715088-08:00,1007.251220703125,10.819098,10819.098 +10679,2025-03-08T08:03:56.536740-08:00,1007.2603149414062,10.821652,10821.652 +10680,2025-03-08T08:04:07.350991-08:00,1007.2617797851562,10.814251,10814.251 +10681,2025-03-08T08:04:18.181019-08:00,1007.2578125,10.830028,10830.028 +10682,2025-03-08T08:04:29.001386-08:00,1007.2589111328125,10.820367,10820.367 +10683,2025-03-08T08:04:39.830209-08:00,1007.2669677734375,10.828823,10828.823 +10684,2025-03-08T08:04:50.654319-08:00,1007.248291015625,10.82411,10824.11 +10685,2025-03-08T08:05:01.473100-08:00,1007.2681274414062,10.818781,10818.781 +10686,2025-03-08T08:05:12.289390-08:00,1007.2918701171875,10.81629,10816.29 +10687,2025-03-08T08:05:23.123265-08:00,1007.2589111328125,10.833875,10833.875 +10688,2025-03-08T08:05:33.941985-08:00,1007.2706298828125,10.81872,10818.72 +10689,2025-03-08T08:05:44.745834-08:00,1007.2468872070312,10.803849,10803.849 +10690,2025-03-08T08:05:55.567847-08:00,1007.2757568359375,10.822013,10822.013 +10691,2025-03-08T08:06:06.391950-08:00,1007.2849731445312,10.824103,10824.103 +10692,2025-03-08T08:06:17.216105-08:00,1007.271728515625,10.824155,10824.155 +10693,2025-03-08T08:06:28.039847-08:00,1007.2886962890625,10.823742,10823.742 +10694,2025-03-08T08:06:38.865951-08:00,1007.2835083007812,10.826104,10826.104 +10695,2025-03-08T08:06:49.683227-08:00,1007.2714233398438,10.817276,10817.276 +10696,2025-03-08T08:07:00.509833-08:00,1007.2806396484375,10.826606,10826.606 +10697,2025-03-08T08:07:11.333175-08:00,1007.2662353515625,10.823342,10823.342 +10698,2025-03-08T08:07:22.152059-08:00,1007.302978515625,10.818884,10818.884 +10699,2025-03-08T08:07:32.966824-08:00,1007.2648315429688,10.814765,10814.765 +10700,2025-03-08T08:07:43.787025-08:00,1007.267333984375,10.820201,10820.201 +10701,2025-03-08T08:07:54.607361-08:00,1007.275146484375,10.820336,10820.336 +10702,2025-03-08T08:08:05.439094-08:00,1007.2842407226562,10.831733,10831.733 +10703,2025-03-08T08:08:16.254633-08:00,1007.251220703125,10.815539,10815.539 +10704,2025-03-08T08:08:27.084980-08:00,1007.2340698242188,10.830347,10830.347 +10705,2025-03-08T08:08:37.911388-08:00,1007.262939453125,10.826408,10826.408 +10706,2025-03-08T08:08:48.733371-08:00,1007.2762451171875,10.821983,10821.983 +10707,2025-03-08T08:08:59.552021-08:00,1007.272216796875,10.81865,10818.65 +10708,2025-03-08T08:09:10.383240-08:00,1007.2945556640625,10.831219,10831.219 +10709,2025-03-08T08:09:21.203999-08:00,1007.2890625,10.820759,10820.759 +10710,2025-03-08T08:09:32.023940-08:00,1007.282470703125,10.819941,10819.941 +10711,2025-03-08T08:09:42.845200-08:00,1007.2626342773438,10.82126,10821.26 +10712,2025-03-08T08:09:53.670385-08:00,1007.2652587890625,10.825185,10825.185 +10713,2025-03-08T08:10:04.502853-08:00,1007.2732543945312,10.832468,10832.468 +10714,2025-03-08T08:10:15.327834-08:00,1007.3033447265625,10.824981,10824.981 +10715,2025-03-08T08:10:26.154401-08:00,1007.2849731445312,10.826567,10826.567 +10716,2025-03-08T08:10:36.978090-08:00,1007.2901611328125,10.823689,10823.689 +10717,2025-03-08T08:10:47.799893-08:00,1007.2809448242188,10.821803,10821.803 +10718,2025-03-08T08:10:58.630846-08:00,1007.2820434570312,10.830953,10830.953 +10719,2025-03-08T08:11:09.450978-08:00,1007.291259765625,10.820132,10820.132 +10720,2025-03-08T08:11:20.272154-08:00,1007.257080078125,10.821176,10821.176 +10721,2025-03-08T08:11:31.104847-08:00,1007.2792358398438,10.832693,10832.693 +10722,2025-03-08T08:11:41.925148-08:00,1007.3095092773438,10.820301,10820.301 +10723,2025-03-08T08:11:52.755236-08:00,1007.3187255859375,10.830088,10830.088 +10724,2025-03-08T08:12:03.573159-08:00,1007.2909545898438,10.817923,10817.923 +10725,2025-03-08T08:12:14.409680-08:00,1007.3212280273438,10.836521,10836.521 +10726,2025-03-08T08:12:25.228835-08:00,1007.327880859375,10.819155,10819.155 +10727,2025-03-08T08:12:36.050167-08:00,1007.286865234375,10.821332,10821.332 +10728,2025-03-08T08:12:46.876924-08:00,1007.2948608398438,10.826757,10826.757 +10729,2025-03-08T08:12:57.701216-08:00,1007.3040771484375,10.824292,10824.292 +10730,2025-03-08T08:13:08.538069-08:00,1007.3304443359375,10.836853,10836.853 +10731,2025-03-08T08:13:19.367231-08:00,1007.3172607421875,10.829162,10829.162 +10732,2025-03-08T08:13:30.185899-08:00,1007.318359375,10.818668,10818.668 +10733,2025-03-08T08:13:41.014779-08:00,1007.339599609375,10.82888,10828.88 +10734,2025-03-08T08:13:51.834986-08:00,1007.3329467773438,10.820207,10820.207 +10735,2025-03-08T08:14:02.654842-08:00,1007.3462524414062,10.819856,10819.856 +10736,2025-03-08T08:14:13.480390-08:00,1007.3367309570312,10.825548,10825.548 +10737,2025-03-08T08:14:24.308931-08:00,1007.3565673828125,10.828541,10828.541 +10738,2025-03-08T08:14:35.141214-08:00,1007.310302734375,10.832283,10832.283 +10739,2025-03-08T08:14:45.962842-08:00,1007.3025512695312,10.821628,10821.628 +10740,2025-03-08T08:14:56.788026-08:00,1007.3128051757812,10.825184,10825.184 +10741,2025-03-08T08:15:07.608996-08:00,1007.3458862304688,10.82097,10820.97 +10742,2025-03-08T08:15:18.432823-08:00,1007.3406982421875,10.823827,10823.827 +10743,2025-03-08T08:15:29.261197-08:00,1007.3340454101562,10.828374,10828.374 +10744,2025-03-08T08:15:40.086131-08:00,1007.33642578125,10.824934,10824.934 +10745,2025-03-08T08:15:50.917159-08:00,1007.3099975585938,10.831028,10831.028 +10746,2025-03-08T08:16:01.743844-08:00,1007.305908203125,10.826685,10826.685 +10747,2025-03-08T08:16:12.559838-08:00,1007.333740234375,10.815994,10815.994 +10748,2025-03-08T08:16:23.390850-08:00,1007.3348388671875,10.831012,10831.012 +10749,2025-03-08T08:16:34.222891-08:00,1007.3414916992188,10.832041,10832.041 +10750,2025-03-08T08:16:45.049123-08:00,1007.3217163085938,10.826232,10826.232 +10751,2025-03-08T08:16:55.870323-08:00,1007.3231201171875,10.8212,10821.2 +10752,2025-03-08T08:17:06.700142-08:00,1007.3283081054688,10.829819,10829.819 +10753,2025-03-08T08:17:17.521122-08:00,1007.3297119140625,10.82098,10820.98 +10754,2025-03-08T08:17:28.344631-08:00,1007.3389282226562,10.823509,10823.509 +10755,2025-03-08T08:17:39.166846-08:00,1007.3359375,10.822215,10822.215 +10756,2025-03-08T08:17:49.995823-08:00,1007.345458984375,10.828977,10828.977 +10757,2025-03-08T08:18:00.822173-08:00,1007.3348388671875,10.82635,10826.35 +10758,2025-03-08T08:18:11.649574-08:00,1007.3479614257812,10.827401,10827.401 +10759,2025-03-08T08:18:22.481898-08:00,1007.3201293945312,10.832324,10832.324 +10760,2025-03-08T08:18:33.310121-08:00,1007.37158203125,10.828223,10828.223 +10761,2025-03-08T08:18:44.135152-08:00,1007.37158203125,10.825031,10825.031 +10762,2025-03-08T08:18:54.952984-08:00,1007.3385009765625,10.817832,10817.832 +10763,2025-03-08T08:19:05.785207-08:00,1007.3399047851562,10.832223,10832.223 +10764,2025-03-08T08:19:16.607094-08:00,1007.3663330078125,10.821887,10821.887 +10765,2025-03-08T08:19:27.427346-08:00,1007.3623657226562,10.820252,10820.252 +10766,2025-03-08T08:19:38.254143-08:00,1007.3623657226562,10.826797,10826.797 +10767,2025-03-08T08:19:49.084929-08:00,1007.3531494140625,10.830786,10830.786 +10768,2025-03-08T08:19:59.910199-08:00,1007.3568725585938,10.82527,10825.27 +10769,2025-03-08T08:20:10.741845-08:00,1007.3568725585938,10.831646,10831.646 +10770,2025-03-08T08:20:21.572868-08:00,1007.3568725585938,10.831023,10831.023 +10771,2025-03-08T08:20:32.396991-08:00,1007.4056396484375,10.824123,10824.123 +10772,2025-03-08T08:20:43.226247-08:00,1007.392333984375,10.829256,10829.256 +10773,2025-03-08T08:20:54.052840-08:00,1007.373779296875,10.826593,10826.593 +10774,2025-03-08T08:21:04.891103-08:00,1007.3671264648438,10.838263,10838.263 +10775,2025-03-08T08:21:15.712391-08:00,1007.400146484375,10.821288,10821.288 +10776,2025-03-08T08:21:26.543181-08:00,1007.3894653320312,10.83079,10830.79 +10777,2025-03-08T08:21:37.370942-08:00,1007.3894653320312,10.827761,10827.761 +10778,2025-03-08T08:21:48.206827-08:00,1007.38427734375,10.835885,10835.885 +10779,2025-03-08T08:21:59.030920-08:00,1007.411865234375,10.824093,10824.093 +10780,2025-03-08T08:22:09.858438-08:00,1007.4132690429688,10.827518,10827.518 +10781,2025-03-08T08:22:20.694835-08:00,1007.40673828125,10.836397,10836.397 +10782,2025-03-08T08:22:31.527845-08:00,1007.4143676757812,10.83301,10833.01 +10783,2025-03-08T08:22:42.351891-08:00,1007.4209594726562,10.824046,10824.046 +10784,2025-03-08T08:22:53.185290-08:00,1007.4011840820312,10.833399,10833.399 +10785,2025-03-08T08:23:04.011288-08:00,1007.4078369140625,10.825998,10825.998 +10786,2025-03-08T08:23:14.832399-08:00,1007.4356079101562,10.821111,10821.111 +10787,2025-03-08T08:23:25.659130-08:00,1007.4224243164062,10.826731,10826.731 +10788,2025-03-08T08:23:36.484334-08:00,1007.4249877929688,10.825204,10825.204 +10789,2025-03-08T08:23:47.306840-08:00,1007.4260864257812,10.822506,10822.506 +10790,2025-03-08T08:23:58.135218-08:00,1007.4392700195312,10.828378,10828.378 +10791,2025-03-08T08:24:08.960974-08:00,1007.3931274414062,10.825756,10825.756 +10792,2025-03-08T08:24:19.792494-08:00,1007.4209594726562,10.83152,10831.52 +10793,2025-03-08T08:24:30.621890-08:00,1007.3931274414062,10.829396,10829.396 +10794,2025-03-08T08:24:41.449034-08:00,1007.4341430664062,10.827144,10827.144 +10795,2025-03-08T08:24:52.270958-08:00,1007.4209594726562,10.821924,10821.924 +10796,2025-03-08T08:25:03.090819-08:00,1007.4143676757812,10.819861,10819.861 +10797,2025-03-08T08:25:13.918167-08:00,1007.435302734375,10.827348,10827.348 +10798,2025-03-08T08:25:24.748845-08:00,1007.4300537109375,10.830678,10830.678 +10799,2025-03-08T08:25:35.576685-08:00,1007.4367065429688,10.82784,10827.84 +10800,2025-03-08T08:25:46.405088-08:00,1007.4458618164062,10.828403,10828.403 +10801,2025-03-08T08:25:57.236131-08:00,1007.41796875,10.831043,10831.043 +10802,2025-03-08T08:26:08.069018-08:00,1007.439208984375,10.832887,10832.887 +10803,2025-03-08T08:26:18.894271-08:00,1007.4205322265625,10.825253,10825.253 +10804,2025-03-08T08:26:29.726837-08:00,1007.4216918945312,10.832566,10832.566 +10805,2025-03-08T08:26:40.558999-08:00,1007.4216918945312,10.832162,10832.162 +10806,2025-03-08T08:26:51.398168-08:00,1007.3995971679688,10.839169,10839.169 +10807,2025-03-08T08:27:02.222850-08:00,1007.4366455078125,10.824682,10824.682 +10808,2025-03-08T08:27:13.053850-08:00,1007.43115234375,10.831,10831.0 +10809,2025-03-08T08:27:23.873469-08:00,1007.4481201171875,10.819619,10819.619 +10810,2025-03-08T08:27:34.706209-08:00,1007.4259643554688,10.83274,10832.74 +10811,2025-03-08T08:27:45.531958-08:00,1007.4193725585938,10.825749,10825.749 +10812,2025-03-08T08:27:56.364978-08:00,1007.4193725585938,10.83302,10833.02 +10813,2025-03-08T08:28:07.189841-08:00,1007.4271240234375,10.824863,10824.863 +10814,2025-03-08T08:28:18.020076-08:00,1007.4483642578125,10.830235,10830.235 +10815,2025-03-08T08:28:28.857335-08:00,1007.4376831054688,10.837259,10837.259 +10816,2025-03-08T08:28:39.683677-08:00,1007.4652099609375,10.826342,10826.342 +10817,2025-03-08T08:28:50.510824-08:00,1007.4347534179688,10.827147,10827.147 +10818,2025-03-08T08:29:01.345415-08:00,1007.4570922851562,10.834591,10834.591 +10819,2025-03-08T08:29:12.175842-08:00,1007.4651489257812,10.830427,10830.427 +10820,2025-03-08T08:29:23.010296-08:00,1007.4912719726562,10.834454,10834.454 +10821,2025-03-08T08:29:33.827823-08:00,1007.4659423828125,10.817527,10817.527 +10822,2025-03-08T08:29:44.655009-08:00,1007.473876953125,10.827186,10827.186 +10823,2025-03-08T08:29:55.485842-08:00,1007.4765014648438,10.830833,10830.833 +10824,2025-03-08T08:30:06.324290-08:00,1007.4669799804688,10.838448,10838.448 +10825,2025-03-08T08:30:17.144044-08:00,1007.4684448242188,10.819754,10819.754 +10826,2025-03-08T08:30:27.980152-08:00,1007.4852905273438,10.836108,10836.108 +10827,2025-03-08T08:30:38.806830-08:00,1007.4668579101562,10.826678,10826.678 +10828,2025-03-08T08:30:49.633415-08:00,1007.48779296875,10.826585,10826.585 +10829,2025-03-08T08:31:00.469842-08:00,1007.5115356445312,10.836427,10836.427 +10830,2025-03-08T08:31:11.304837-08:00,1007.4954833984375,10.834995,10834.995 +10831,2025-03-08T08:31:22.126896-08:00,1007.48486328125,10.822059,10822.059 +10832,2025-03-08T08:31:32.960452-08:00,1007.5137329101562,10.833556,10833.556 +10833,2025-03-08T08:31:43.789839-08:00,1007.4634399414062,10.829387,10829.387 +10834,2025-03-08T08:31:54.617845-08:00,1007.4935913085938,10.828006,10828.006 +10835,2025-03-08T08:32:05.442828-08:00,1007.5214233398438,10.824983,10824.983 +10836,2025-03-08T08:32:16.284089-08:00,1007.52392578125,10.841261,10841.261 +10837,2025-03-08T08:32:27.112996-08:00,1007.5184326171875,10.828907,10828.907 +10838,2025-03-08T08:32:37.937844-08:00,1007.5198364257812,10.824848,10824.848 +10839,2025-03-08T08:32:48.776959-08:00,1007.52099609375,10.839115,10839.115 +10840,2025-03-08T08:32:59.600848-08:00,1007.5236206054688,10.823889,10823.889 +10841,2025-03-08T08:33:10.439996-08:00,1007.5181274414062,10.839148,10839.148 +10842,2025-03-08T08:33:21.274841-08:00,1007.5140380859375,10.834845,10834.845 +10843,2025-03-08T08:33:32.105846-08:00,1007.5562744140625,10.831005,10831.005 +10844,2025-03-08T08:33:42.928834-08:00,1007.5256958007812,10.822988,10822.988 +10845,2025-03-08T08:33:53.761394-08:00,1007.548095703125,10.83256,10832.56 +10846,2025-03-08T08:34:04.590984-08:00,1007.5018920898438,10.82959,10829.59 +10847,2025-03-08T08:34:15.419007-08:00,1007.5586547851562,10.828023,10828.023 +10848,2025-03-08T08:34:26.250068-08:00,1007.5653076171875,10.831061,10831.061 +10849,2025-03-08T08:34:37.086853-08:00,1007.5744018554688,10.836785,10836.785 +10850,2025-03-08T08:34:47.914821-08:00,1007.5267333984375,10.827968,10827.968 +10851,2025-03-08T08:34:58.745844-08:00,1007.54248046875,10.831023,10831.023 +10852,2025-03-08T08:35:09.576234-08:00,1007.5347900390625,10.83039,10830.39 +10853,2025-03-08T08:35:20.409910-08:00,1007.561279296875,10.833676,10833.676 +10854,2025-03-08T08:35:31.244187-08:00,1007.5901489257812,10.834277,10834.277 +10855,2025-03-08T08:35:42.081836-08:00,1007.5648193359375,10.837649,10837.649 +10856,2025-03-08T08:35:52.916225-08:00,1007.5516357421875,10.834389,10834.389 +10857,2025-03-08T08:36:03.748327-08:00,1007.5769653320312,10.832102,10832.102 +10858,2025-03-08T08:36:14.572843-08:00,1007.5703125,10.824516,10824.516 +10859,2025-03-08T08:36:25.404400-08:00,1007.5662231445312,10.831557,10831.557 +10860,2025-03-08T08:36:36.246815-08:00,1007.563720703125,10.842415,10842.415 +10861,2025-03-08T08:36:47.080845-08:00,1007.537353515625,10.83403,10834.03 +10862,2025-03-08T08:36:57.910020-08:00,1007.5582885742188,10.829175,10829.175 +10863,2025-03-08T08:37:08.741841-08:00,1007.5596923828125,10.831821,10831.821 +10864,2025-03-08T08:37:19.567068-08:00,1007.5662231445312,10.825227,10825.227 +10865,2025-03-08T08:37:30.405842-08:00,1007.5861206054688,10.838774,10838.774 +10866,2025-03-08T08:37:41.240128-08:00,1007.5531005859375,10.834286,10834.286 +10867,2025-03-08T08:37:52.068992-08:00,1007.5861206054688,10.828864,10828.864 +10868,2025-03-08T08:38:02.901183-08:00,1007.6136474609375,10.832191,10832.191 +10869,2025-03-08T08:38:13.721843-08:00,1007.5449829101562,10.82066,10820.66 +10870,2025-03-08T08:38:24.553212-08:00,1007.5795288085938,10.831369,10831.369 +10871,2025-03-08T08:38:35.391831-08:00,1007.5728759765625,10.838619,10838.619 +10872,2025-03-08T08:38:46.222960-08:00,1007.5927124023438,10.831129,10831.129 +10873,2025-03-08T08:38:57.052892-08:00,1007.594970703125,10.829932,10829.932 +10874,2025-03-08T08:39:07.883917-08:00,1007.596435546875,10.831025,10831.025 +10875,2025-03-08T08:39:18.713868-08:00,1007.5817260742188,10.829951,10829.951 +10876,2025-03-08T08:39:29.537263-08:00,1007.5806274414062,10.823395,10823.395 +10877,2025-03-08T08:39:40.368841-08:00,1007.6029663085938,10.831578,10831.578 +10878,2025-03-08T08:39:51.195841-08:00,1007.6004638671875,10.827,10827.0 +10879,2025-03-08T08:40:02.028880-08:00,1007.5897827148438,10.833039,10833.039 +10880,2025-03-08T08:40:12.854222-08:00,1007.5700073242188,10.825342,10825.342 +10881,2025-03-08T08:40:23.690165-08:00,1007.608154296875,10.835943,10835.943 +10882,2025-03-08T08:40:34.521842-08:00,1007.5806274414062,10.831677,10831.677 +10883,2025-03-08T08:40:45.343943-08:00,1007.5938110351562,10.822101,10822.101 +10884,2025-03-08T08:40:56.185667-08:00,1007.5740356445312,10.841724,10841.724 +10885,2025-03-08T08:41:07.013594-08:00,1007.60595703125,10.827927,10827.927 +10886,2025-03-08T08:41:17.843514-08:00,1007.619140625,10.82992,10829.92 +10887,2025-03-08T08:41:28.677010-08:00,1007.60595703125,10.833496,10833.496 +10888,2025-03-08T08:41:39.523185-08:00,1007.60595703125,10.846175,10846.175 +10889,2025-03-08T08:41:50.346233-08:00,1007.5912475585938,10.823048,10823.048 +10890,2025-03-08T08:42:01.176197-08:00,1007.6124877929688,10.829964,10829.964 +10891,2025-03-08T08:42:12.007844-08:00,1007.5912475585938,10.831647,10831.647 +10892,2025-03-08T08:42:22.852832-08:00,1007.6232299804688,10.844988,10844.988 +10893,2025-03-08T08:42:33.683866-08:00,1007.5836181640625,10.831034,10831.034 +10894,2025-03-08T08:42:44.519834-08:00,1007.5822143554688,10.835968,10835.968 +10895,2025-03-08T08:42:55.359246-08:00,1007.621826171875,10.839412,10839.412 +10896,2025-03-08T08:43:06.188842-08:00,1007.6151733398438,10.829596,10829.596 +10897,2025-03-08T08:43:17.020847-08:00,1007.635009765625,10.832005,10832.005 +10898,2025-03-08T08:43:27.844903-08:00,1007.6074829101562,10.824056,10824.056 +10899,2025-03-08T08:43:38.676419-08:00,1007.62841796875,10.831516,10831.516 +10900,2025-03-08T08:43:49.510832-08:00,1007.6298217773438,10.834413,10834.413 +10901,2025-03-08T08:44:00.342039-08:00,1007.600830078125,10.831207,10831.207 +10902,2025-03-08T08:44:11.175165-08:00,1007.6140747070312,10.833126,10833.126 +10903,2025-03-08T08:44:22.011977-08:00,1007.6074829101562,10.836812,10836.812 +10904,2025-03-08T08:44:32.839324-08:00,1007.6151733398438,10.827347,10827.347 +10905,2025-03-08T08:44:43.674082-08:00,1007.5982666015625,10.834758,10834.758 +10906,2025-03-08T08:44:54.518070-08:00,1007.59423828125,10.843988,10843.988 +10907,2025-03-08T08:45:05.350223-08:00,1007.6019287109375,10.832153,10832.153 +10908,2025-03-08T08:45:16.180840-08:00,1007.6272583007812,10.830617,10830.617 +10909,2025-03-08T08:45:27.024012-08:00,1007.621826171875,10.843172,10843.172 +10910,2025-03-08T08:45:37.853834-08:00,1007.600830078125,10.829822,10829.822 +10911,2025-03-08T08:45:48.680819-08:00,1007.6060180664062,10.826985,10826.985 +10912,2025-03-08T08:45:59.521134-08:00,1007.6060180664062,10.840315,10840.315 +10913,2025-03-08T08:46:10.350571-08:00,1007.6404418945312,10.829437,10829.437 +10914,2025-03-08T08:46:21.182202-08:00,1007.6074829101562,10.831631,10831.631 +10915,2025-03-08T08:46:32.012970-08:00,1007.6548461914062,10.830768,10830.768 +10916,2025-03-08T08:46:42.847842-08:00,1007.6325073242188,10.834872,10834.872 +10917,2025-03-08T08:46:53.684104-08:00,1007.658935546875,10.836262,10836.262 +10918,2025-03-08T08:47:04.515847-08:00,1007.6181030273438,10.831743,10831.743 +10919,2025-03-08T08:47:15.342725-08:00,1007.63134765625,10.826878,10826.878 +10920,2025-03-08T08:47:26.171833-08:00,1007.658935546875,10.829108,10829.108 +10921,2025-03-08T08:47:36.999953-08:00,1007.6246948242188,10.82812,10828.12 +10922,2025-03-08T08:47:47.831216-08:00,1007.658935546875,10.831263,10831.263 +10923,2025-03-08T08:47:58.668190-08:00,1007.6431274414062,10.836974,10836.974 +10924,2025-03-08T08:48:09.499842-08:00,1007.6299438476562,10.831652,10831.652 +10925,2025-03-08T08:48:20.340831-08:00,1007.6207885742188,10.840989,10840.989 +10926,2025-03-08T08:48:31.170283-08:00,1007.6287231445312,10.829452,10829.452 +10927,2025-03-08T08:48:42.000835-08:00,1007.660400390625,10.830552,10830.552 +10928,2025-03-08T08:48:52.838243-08:00,1007.6592407226562,10.837408,10837.408 +10929,2025-03-08T08:49:03.663949-08:00,1007.6749877929688,10.825706,10825.706 +10930,2025-03-08T08:49:14.494377-08:00,1007.6537475585938,10.830428,10830.428 +10931,2025-03-08T08:49:25.334280-08:00,1007.6526489257812,10.839903,10839.903 +10932,2025-03-08T08:49:36.166849-08:00,1007.6923217773438,10.832569,10832.569 +10933,2025-03-08T08:49:46.998128-08:00,1007.6776733398438,10.831279,10831.279 +10934,2025-03-08T08:49:57.826074-08:00,1007.7054443359375,10.827946,10827.946 +10935,2025-03-08T08:50:08.659154-08:00,1007.6592407226562,10.83308,10833.08 +10936,2025-03-08T08:50:19.498846-08:00,1007.6394653320312,10.839692,10839.692 +10937,2025-03-08T08:50:27.156796-08:00,1007.6790771484375,7.65795,7657.95 +10938,2025-03-08T08:50:30.330889-08:00,1007.6790771484375,3.174093,3174.093 +10939,2025-03-08T08:50:41.165784-08:00,1007.6658325195312,10.834895,10834.895 +10940,2025-03-08T08:50:51.996829-08:00,1007.6592407226562,10.831045,10831.045 +10941,2025-03-08T08:51:02.835928-08:00,1007.6461181640625,10.839099,10839.099 +10942,2025-03-08T08:51:13.662839-08:00,1007.7000122070312,10.826911,10826.911 +10943,2025-03-08T08:51:24.504864-08:00,1007.6857299804688,10.842025,10842.025 +10944,2025-03-08T08:51:35.337641-08:00,1007.6923217773438,10.832777,10832.777 +10945,2025-03-08T08:51:46.174976-08:00,1007.6842041015625,10.837335,10837.335 +10946,2025-03-08T08:51:57.010841-08:00,1007.723876953125,10.835865,10835.865 +10947,2025-03-08T08:52:07.842281-08:00,1007.7173461914062,10.83144,10831.44 +10948,2025-03-08T08:52:18.668276-08:00,1007.721435546875,10.825995,10825.995 +10949,2025-03-08T08:52:29.506649-08:00,1007.6685180664062,10.838373,10838.373 +10950,2025-03-08T08:52:40.346836-08:00,1007.6740112304688,10.840187,10840.187 +10951,2025-03-08T08:52:51.170150-08:00,1007.700439453125,10.823314,10823.314 +10952,2025-03-08T08:53:01.997107-08:00,1007.7147827148438,10.826957,10826.957 +10953,2025-03-08T08:53:12.833291-08:00,1007.7334594726562,10.836184,10836.184 +10954,2025-03-08T08:53:23.664078-08:00,1007.74267578125,10.830787,10830.787 +10955,2025-03-08T08:53:34.492833-08:00,1007.72021484375,10.828755,10828.755 +10956,2025-03-08T08:53:45.330189-08:00,1007.7492065429688,10.837356,10837.356 +10957,2025-03-08T08:53:56.161116-08:00,1007.7360229492188,10.830927,10830.927 +10958,2025-03-08T08:54:06.992117-08:00,1007.723876953125,10.831001,10831.001 +10959,2025-03-08T08:54:17.830535-08:00,1007.7040405273438,10.838418,10838.418 +10960,2025-03-08T08:54:28.651259-08:00,1007.710693359375,10.820724,10820.724 +10961,2025-03-08T08:54:39.480050-08:00,1007.7360229492188,10.828791,10828.791 +10962,2025-03-08T08:54:50.314295-08:00,1007.723876953125,10.834245,10834.245 +10963,2025-03-08T08:55:01.136843-08:00,1007.7360229492188,10.822548,10822.548 +10964,2025-03-08T08:55:11.970158-08:00,1007.725341796875,10.833315,10833.315 +10965,2025-03-08T08:55:22.808849-08:00,1007.7371215820312,10.838691,10838.691 +10966,2025-03-08T08:55:33.633303-08:00,1007.723876953125,10.824454,10824.454 +10967,2025-03-08T08:55:44.467039-08:00,1007.7345581054688,10.833736,10833.736 +10968,2025-03-08T08:55:55.304849-08:00,1007.7279663085938,10.83781,10837.81 +10969,2025-03-08T08:56:06.129882-08:00,1007.7411499023438,10.825033,10825.033 +10970,2025-03-08T08:56:16.961840-08:00,1007.721435546875,10.831958,10831.958 +10971,2025-03-08T08:56:27.792373-08:00,1007.7279663085938,10.830533,10830.533 +10972,2025-03-08T08:56:38.614023-08:00,1007.72021484375,10.82165,10821.65 +10973,2025-03-08T08:56:49.455173-08:00,1007.721435546875,10.84115,10841.15 +10974,2025-03-08T08:57:00.277849-08:00,1007.7345581054688,10.822676,10822.676 +10975,2025-03-08T08:57:11.115184-08:00,1007.7279663085938,10.837335,10837.335 +10976,2025-03-08T08:57:21.952843-08:00,1007.7081298828125,10.837659,10837.659 +10977,2025-03-08T08:57:32.782987-08:00,1007.7411499023438,10.830144,10830.144 +10978,2025-03-08T08:57:43.621800-08:00,1007.7147827148438,10.838813,10838.813 +10979,2025-03-08T08:57:54.451185-08:00,1007.7161865234375,10.829385,10829.385 +10980,2025-03-08T08:58:05.291269-08:00,1007.6882934570312,10.840084,10840.084 +10981,2025-03-08T08:58:16.118546-08:00,1007.7147827148438,10.827277,10827.277 +10982,2025-03-08T08:58:26.957845-08:00,1007.721435546875,10.839299,10839.299 +10983,2025-03-08T08:58:37.788464-08:00,1007.6806030273438,10.830619,10830.619 +10984,2025-03-08T08:58:48.619278-08:00,1007.700439453125,10.830814,10830.814 +10985,2025-03-08T08:58:59.455165-08:00,1007.6806030273438,10.835887,10835.887 +10986,2025-03-08T08:59:10.286088-08:00,1007.7268676757812,10.830923,10830.923 +10987,2025-03-08T08:59:21.123833-08:00,1007.72021484375,10.837745,10837.745 +10988,2025-03-08T08:59:31.955308-08:00,1007.712158203125,10.831475,10831.475 +10989,2025-03-08T08:59:42.793840-08:00,1007.7254638671875,10.838532,10838.532 +10990,2025-03-08T08:59:53.630403-08:00,1007.69384765625,10.836563,10836.563 +10991,2025-03-08T09:00:04.460042-08:00,1007.70703125,10.829639,10829.639 +10992,2025-03-08T09:00:15.295245-08:00,1007.69384765625,10.835203,10835.203 +10993,2025-03-08T09:00:26.131227-08:00,1007.6673583984375,10.835982,10835.982 +10994,2025-03-08T09:00:36.962921-08:00,1007.700439453125,10.831694,10831.694 +10995,2025-03-08T09:00:47.799128-08:00,1007.6685180664062,10.836207,10836.207 +10996,2025-03-08T09:00:58.643839-08:00,1007.6882934570312,10.844711,10844.711 +10997,2025-03-08T09:01:09.474842-08:00,1007.6817016601562,10.831003,10831.003 +10998,2025-03-08T09:01:20.307017-08:00,1007.6817016601562,10.832175,10832.175 +10999,2025-03-08T09:01:31.138845-08:00,1007.6673583984375,10.831828,10831.828 +11000,2025-03-08T09:01:41.979844-08:00,1007.648681640625,10.840999,10840.999 +11001,2025-03-08T09:01:52.813593-08:00,1007.6394653320312,10.833749,10833.749 +11002,2025-03-08T09:02:03.653112-08:00,1007.6434936523438,10.839519,10839.519 +11003,2025-03-08T09:02:14.489356-08:00,1007.6644287109375,10.836244,10836.244 +11004,2025-03-08T09:02:25.321424-08:00,1007.65673828125,10.832068,10832.068 +11005,2025-03-08T09:02:36.163014-08:00,1007.6908569335938,10.84159,10841.59 +11006,2025-03-08T09:02:46.993237-08:00,1007.7000122070312,10.830223,10830.223 +11007,2025-03-08T09:02:57.823354-08:00,1007.686767578125,10.830117,10830.117 +11008,2025-03-08T09:03:08.657450-08:00,1007.65673828125,10.834096,10834.096 +11009,2025-03-08T09:03:19.490161-08:00,1007.6369018554688,10.832711,10832.711 +11010,2025-03-08T09:03:30.327842-08:00,1007.6644287109375,10.837681,10837.681 +11011,2025-03-08T09:03:41.160585-08:00,1007.6790771484375,10.832743,10832.743 +11012,2025-03-08T09:03:51.993844-08:00,1007.6710815429688,10.833259,10833.259 +11013,2025-03-08T09:04:02.823842-08:00,1007.650146484375,10.829998,10829.998 +11014,2025-03-08T09:04:13.661229-08:00,1007.6908569335938,10.837387,10837.387 +11015,2025-03-08T09:04:24.494098-08:00,1007.6685180664062,10.832869,10832.869 +11016,2025-03-08T09:04:35.335211-08:00,1007.669921875,10.841113,10841.113 +11017,2025-03-08T09:04:46.161988-08:00,1007.6751708984375,10.826777,10826.777 +11018,2025-03-08T09:04:56.993849-08:00,1007.6673583984375,10.831861,10831.861 +11019,2025-03-08T09:05:07.822951-08:00,1007.648681640625,10.829102,10829.102 +11020,2025-03-08T09:05:18.660859-08:00,1007.68310546875,10.837908,10837.908 +11021,2025-03-08T09:05:29.492928-08:00,1007.6842041015625,10.832069,10832.069 +11022,2025-03-08T09:05:40.355467-08:00,1007.6857299804688,10.862539,10862.539 +11023,2025-03-08T09:05:51.192917-08:00,1007.650146484375,10.83745,10837.45 +11024,2025-03-08T09:06:02.026255-08:00,1007.6908569335938,10.833338,10833.338 +11025,2025-03-08T09:06:12.858782-08:00,1007.6776733398438,10.832527,10832.527 +11026,2025-03-08T09:06:23.691704-08:00,1007.7054443359375,10.832922,10832.922 +11027,2025-03-08T09:06:34.524788-08:00,1007.6857299804688,10.833084,10833.084 +11028,2025-03-08T09:06:45.358523-08:00,1007.6923217773438,10.833735,10833.735 +11029,2025-03-08T09:06:56.190320-08:00,1007.6857299804688,10.831797,10831.797 +11030,2025-03-08T09:07:07.021324-08:00,1007.6776733398438,10.831004,10831.004 +11031,2025-03-08T09:07:17.857776-08:00,1007.6776733398438,10.836452,10836.452 +11032,2025-03-08T09:07:28.678830-08:00,1007.73193359375,10.821054,10821.054 +11033,2025-03-08T09:07:39.515933-08:00,1007.6765747070312,10.837103,10837.103 +11034,2025-03-08T09:07:50.347763-08:00,1007.6989135742188,10.83183,10831.83 +11035,2025-03-08T09:08:01.174782-08:00,1007.7385864257812,10.827019,10827.019 +11036,2025-03-08T09:08:12.011780-08:00,1007.7293701171875,10.836998,10836.998 +11037,2025-03-08T09:08:22.848073-08:00,1007.6765747070312,10.836293,10836.293 +11038,2025-03-08T09:08:33.678759-08:00,1007.7054443359375,10.830686,10830.686 +11039,2025-03-08T09:08:44.515807-08:00,1007.73046875,10.837048,10837.048 +11040,2025-03-08T09:08:55.343781-08:00,1007.7385864257812,10.827974,10827.974 +11041,2025-03-08T09:09:06.186100-08:00,1007.7029418945312,10.842319,10842.319 +11042,2025-03-08T09:09:17.011115-08:00,1007.7173461914062,10.825015,10825.015 +11043,2025-03-08T09:09:27.849964-08:00,1007.7095336914062,10.838849,10838.849 +11044,2025-03-08T09:09:38.682051-08:00,1007.7120971679688,10.832087,10832.087 +11045,2025-03-08T09:09:49.517359-08:00,1007.6908569335938,10.835308,10835.308 +11046,2025-03-08T09:10:00.346044-08:00,1007.725341796875,10.828685,10828.685 +11047,2025-03-08T09:10:11.178094-08:00,1007.6964111328125,10.83205,10832.05 +11048,2025-03-08T09:10:22.014786-08:00,1007.7040405273438,10.836692,10836.692 +11049,2025-03-08T09:10:32.854325-08:00,1007.723876953125,10.839539,10839.539 +11050,2025-03-08T09:10:43.689137-08:00,1007.723876953125,10.834812,10834.812 +11051,2025-03-08T09:10:54.516781-08:00,1007.73193359375,10.827644,10827.644 +11052,2025-03-08T09:11:05.342133-08:00,1007.7462768554688,10.825352,10825.352 +11053,2025-03-08T09:11:16.189223-08:00,1007.710693359375,10.84709,10847.09 +11054,2025-03-08T09:11:27.022799-08:00,1007.759521484375,10.833576,10833.576 +11055,2025-03-08T09:11:37.852777-08:00,1007.7569580078125,10.829978,10829.978 +11056,2025-03-08T09:11:48.684833-08:00,1007.751708984375,10.832056,10832.056 +11057,2025-03-08T09:11:59.506785-08:00,1007.7451782226562,10.821952,10821.952 +11058,2025-03-08T09:12:10.346304-08:00,1007.7451782226562,10.839519,10839.519 +11059,2025-03-08T09:12:21.182402-08:00,1007.7569580078125,10.836098,10836.098 +11060,2025-03-08T09:12:32.006782-08:00,1007.7451782226562,10.82438,10824.38 +11061,2025-03-08T09:12:42.839086-08:00,1007.76611328125,10.832304,10832.304 +11062,2025-03-08T09:12:53.673786-08:00,1007.71875,10.8347,10834.7 +11063,2025-03-08T09:13:04.513787-08:00,1007.7263793945312,10.840001,10840.001 +11064,2025-03-08T09:13:15.345558-08:00,1007.7462768554688,10.831771,10831.771 +11065,2025-03-08T09:13:26.182970-08:00,1007.73193359375,10.837412,10837.412 +11066,2025-03-08T09:13:37.014788-08:00,1007.759521484375,10.831818,10831.818 +11067,2025-03-08T09:13:47.845134-08:00,1007.7212524414062,10.830346,10830.346 +11068,2025-03-08T09:13:58.683135-08:00,1007.7410888671875,10.838001,10838.001 +11069,2025-03-08T09:14:09.509782-08:00,1007.7198486328125,10.826647,10826.647 +11070,2025-03-08T09:14:20.345774-08:00,1007.7198486328125,10.835992,10835.992 +11071,2025-03-08T09:14:31.185103-08:00,1007.6923217773438,10.839329,10839.329 +11072,2025-03-08T09:14:42.015780-08:00,1007.7198486328125,10.830677,10830.677 +11073,2025-03-08T09:14:52.847851-08:00,1007.6934204101562,10.832071,10832.071 +11074,2025-03-08T09:15:03.685246-08:00,1007.7330322265625,10.837395,10837.395 +11075,2025-03-08T09:15:14.523841-08:00,1007.701416015625,10.838595,10838.595 +11076,2025-03-08T09:15:25.361788-08:00,1007.71875,10.837947,10837.947 +11077,2025-03-08T09:15:36.198190-08:00,1007.6923217773438,10.836402,10836.402 +11078,2025-03-08T09:15:47.033009-08:00,1007.71875,10.834819,10834.819 +11079,2025-03-08T09:15:57.866123-08:00,1007.7054443359375,10.833114,10833.114 +11080,2025-03-08T09:16:08.696770-08:00,1007.7000122070312,10.830647,10830.647 +11081,2025-03-08T09:16:19.528795-08:00,1007.686767578125,10.832025,10832.025 +11082,2025-03-08T09:16:30.373359-08:00,1007.6989135742188,10.844564,10844.564 +11083,2025-03-08T09:16:41.198034-08:00,1007.7066650390625,10.824675,10824.675 +11084,2025-03-08T09:16:52.037127-08:00,1007.673583984375,10.839093,10839.093 +11085,2025-03-08T09:17:02.866782-08:00,1007.6749877929688,10.829655,10829.655 +11086,2025-03-08T09:17:13.699923-08:00,1007.6959228515625,10.833141,10833.141 +11087,2025-03-08T09:17:24.530242-08:00,1007.6563110351562,10.830319,10830.319 +11088,2025-03-08T09:17:46.201100-08:00,1007.6695556640625,21.670858,21670.858 +11089,2025-03-08T09:17:57.035038-08:00,1007.6775512695312,10.833938,10833.938 +11090,2025-03-08T09:18:07.871879-08:00,1007.6578369140625,10.836841,10836.841 +11091,2025-03-08T09:18:18.707895-08:00,1007.6867065429688,10.836016,10836.016 +11092,2025-03-08T09:18:29.550073-08:00,1007.69189453125,10.842178,10842.178 +11093,2025-03-08T09:18:40.383909-08:00,1007.6932983398438,10.833836,10833.836 +11094,2025-03-08T09:18:51.218985-08:00,1007.68017578125,10.835076,10835.076 +11095,2025-03-08T09:19:02.050782-08:00,1007.6735229492188,10.831797,10831.797 +11096,2025-03-08T09:19:12.894001-08:00,1007.6812744140625,10.843219,10843.219 +11097,2025-03-08T09:19:23.724972-08:00,1007.6878051757812,10.830971,10830.971 +11098,2025-03-08T09:19:34.565152-08:00,1007.6680297851562,10.84018,10840.18 +11099,2025-03-08T09:19:45.406780-08:00,1007.689208984375,10.841628,10841.628 +11100,2025-03-08T09:19:56.243855-08:00,1007.6852416992188,10.837075,10837.075 +11101,2025-03-08T09:20:07.077098-08:00,1007.670654296875,10.833243,10833.243 +11102,2025-03-08T09:20:17.916831-08:00,1007.6785888671875,10.839733,10839.733 +11103,2025-03-08T09:20:28.751306-08:00,1007.6995239257812,10.834475,10834.475 +11104,2025-03-08T09:20:39.589088-08:00,1007.6929931640625,10.837782,10837.782 +11105,2025-03-08T09:20:50.425617-08:00,1007.69189453125,10.836529,10836.529 +11106,2025-03-08T09:21:01.260782-08:00,1007.7050170898438,10.835165,10835.165 +11107,2025-03-08T09:21:12.094094-08:00,1007.70361328125,10.833312,10833.312 +11108,2025-03-08T09:21:22.937221-08:00,1007.65625,10.843127,10843.127 +11109,2025-03-08T09:21:33.779360-08:00,1007.694091796875,10.842139,10842.139 +11110,2025-03-08T09:21:44.611828-08:00,1007.6995239257812,10.832468,10832.468 +11111,2025-03-08T09:21:55.456068-08:00,1007.6995239257812,10.84424,10844.24 +11112,2025-03-08T09:22:06.298943-08:00,1007.7337646484375,10.842875,10842.875 +11113,2025-03-08T09:22:17.127787-08:00,1007.6995239257812,10.828844,10828.844 +11114,2025-03-08T09:22:27.967173-08:00,1007.6889038085938,10.839386,10839.386 +11115,2025-03-08T09:22:38.809194-08:00,1007.7006225585938,10.842021,10842.021 +11116,2025-03-08T09:22:49.636785-08:00,1007.6796875,10.827591,10827.591 +11117,2025-03-08T09:23:00.473186-08:00,1007.7061767578125,10.836401,10836.401 +11118,2025-03-08T09:23:11.310099-08:00,1007.6954956054688,10.836913,10836.913 +11119,2025-03-08T09:23:22.147779-08:00,1007.6532592773438,10.83768,10837.68 +11120,2025-03-08T09:23:32.990763-08:00,1007.673095703125,10.842984,10842.984 +11121,2025-03-08T09:23:43.830371-08:00,1007.673095703125,10.839608,10839.608 +11122,2025-03-08T09:23:54.666777-08:00,1007.6654052734375,10.836406,10836.406 +11123,2025-03-08T09:24:05.503924-08:00,1007.646728515625,10.837147,10837.147 +11124,2025-03-08T09:24:16.338728-08:00,1007.6532592773438,10.834804,10834.804 +11125,2025-03-08T09:24:27.170004-08:00,1007.646728515625,10.831276,10831.276 +11126,2025-03-08T09:24:38.000117-08:00,1007.6412353515625,10.830113,10830.113 +11127,2025-03-08T09:24:48.838852-08:00,1007.6412353515625,10.838735,10838.735 +11128,2025-03-08T09:24:59.667115-08:00,1007.6543579101562,10.828263,10828.263 +11129,2025-03-08T09:25:10.498020-08:00,1007.6558837890625,10.830905,10830.905 +11130,2025-03-08T09:25:21.342763-08:00,1007.6412353515625,10.844743,10844.743 +11131,2025-03-08T09:25:32.174113-08:00,1007.6437377929688,10.83135,10831.35 +11132,2025-03-08T09:25:43.017233-08:00,1007.6503295898438,10.84312,10843.12 +11133,2025-03-08T09:25:53.848811-08:00,1007.6690673828125,10.831578,10831.578 +11134,2025-03-08T09:26:04.686848-08:00,1007.6660766601562,10.838037,10838.037 +11135,2025-03-08T09:26:15.524786-08:00,1007.66748046875,10.837938,10837.938 +11136,2025-03-08T09:26:26.361782-08:00,1007.6620483398438,10.836996,10836.996 +11137,2025-03-08T09:26:37.211838-08:00,1007.6807861328125,10.850056,10850.056 +11138,2025-03-08T09:26:48.054294-08:00,1007.6620483398438,10.842456,10842.456 +11139,2025-03-08T09:26:58.886964-08:00,1007.6554565429688,10.83267,10832.67 +11140,2025-03-08T09:27:09.728866-08:00,1007.6554565429688,10.841902,10841.902 +11141,2025-03-08T09:27:20.567507-08:00,1007.66748046875,10.838641,10838.641 +11142,2025-03-08T09:27:31.396760-08:00,1007.681884765625,10.829253,10829.253 +11143,2025-03-08T09:27:42.234786-08:00,1007.6832885742188,10.838026,10838.026 +11144,2025-03-08T09:27:53.078105-08:00,1007.6503295898438,10.843319,10843.319 +11145,2025-03-08T09:28:03.920716-08:00,1007.703125,10.842611,10842.611 +11146,2025-03-08T09:28:14.751785-08:00,1007.6910400390625,10.831069,10831.069 +11147,2025-03-08T09:28:25.578921-08:00,1007.67919921875,10.827136,10827.136 +11148,2025-03-08T09:28:36.410780-08:00,1007.6990356445312,10.831859,10831.859 +11149,2025-03-08T09:28:47.253800-08:00,1007.693603515625,10.84302,10843.02 +11150,2025-03-08T09:28:58.094123-08:00,1007.6802978515625,10.840323,10840.323 +11151,2025-03-08T09:29:08.921908-08:00,1007.6619262695312,10.827785,10827.785 +11152,2025-03-08T09:29:19.765428-08:00,1007.6802978515625,10.84352,10843.52 +11153,2025-03-08T09:29:30.592791-08:00,1007.6737670898438,10.827363,10827.363 +11154,2025-03-08T09:29:41.427856-08:00,1007.7134399414062,10.835065,10835.065 +11155,2025-03-08T09:29:52.260831-08:00,1007.6802978515625,10.832975,10832.975 +11156,2025-03-08T09:30:03.090765-08:00,1007.6950073242188,10.829934,10829.934 +11157,2025-03-08T09:30:13.936113-08:00,1007.7093505859375,10.845348,10845.348 +11158,2025-03-08T09:30:24.778875-08:00,1007.76220703125,10.842762,10842.762 +11159,2025-03-08T09:30:35.609785-08:00,1007.7371826171875,10.83091,10830.91 +11160,2025-03-08T09:30:46.452927-08:00,1007.7581176757812,10.843142,10843.142 +11161,2025-03-08T09:30:57.283821-08:00,1007.7184448242188,10.830894,10830.894 +11162,2025-03-08T09:31:08.123021-08:00,1007.7750244140625,10.8392,10839.2 +11163,2025-03-08T09:31:18.960374-08:00,1007.7352905273438,10.837353,10837.353 +11164,2025-03-08T09:31:29.798983-08:00,1007.7379150390625,10.838609,10838.609 +11165,2025-03-08T09:31:40.641912-08:00,1007.7510986328125,10.842929,10842.929 +11166,2025-03-08T09:31:51.472966-08:00,1007.7393798828125,10.831054,10831.054 +11167,2025-03-08T09:32:02.316142-08:00,1007.7235717773438,10.843176,10843.176 +11168,2025-03-08T09:32:13.157817-08:00,1007.7459106445312,10.841675,10841.675 +11169,2025-03-08T09:32:23.996099-08:00,1007.712890625,10.838282,10838.282 +11170,2025-03-08T09:32:34.825643-08:00,1007.7352294921875,10.829544,10829.544 +11171,2025-03-08T09:32:45.668781-08:00,1007.7352294921875,10.843138,10843.138 +11172,2025-03-08T09:32:56.496978-08:00,1007.74951171875,10.828197,10828.197 +11173,2025-03-08T09:33:07.345294-08:00,1007.72314453125,10.848316,10848.316 +11174,2025-03-08T09:33:18.181761-08:00,1007.744384765625,10.836467,10836.467 +11175,2025-03-08T09:33:29.021785-08:00,1007.71142578125,10.840024,10840.024 +11176,2025-03-08T09:33:39.851413-08:00,1007.7323608398438,10.829628,10829.628 +11177,2025-03-08T09:33:50.688754-08:00,1007.728271484375,10.837341,10837.341 +11178,2025-03-08T09:34:01.535941-08:00,1007.73486328125,10.847187,10847.187 +11179,2025-03-08T09:34:12.365716-08:00,1007.7413940429688,10.829775,10829.775 +11180,2025-03-08T09:34:23.208373-08:00,1007.7362670898438,10.842657,10842.657 +11181,2025-03-08T09:34:34.047084-08:00,1007.7256469726562,10.838711,10838.711 +11182,2025-03-08T09:34:44.876173-08:00,1007.7230224609375,10.829089,10829.089 +11183,2025-03-08T09:34:55.713768-08:00,1007.7520141601562,10.837595,10837.595 +11184,2025-03-08T09:35:06.544088-08:00,1007.7267456054688,10.83032,10830.32 +11185,2025-03-08T09:35:17.371790-08:00,1007.708251953125,10.827702,10827.702 +11186,2025-03-08T09:35:28.214783-08:00,1007.7372436523438,10.842993,10842.993 +11187,2025-03-08T09:35:39.047086-08:00,1007.7754516601562,10.832303,10832.303 +11188,2025-03-08T09:35:49.888209-08:00,1007.72265625,10.841123,10841.123 +11189,2025-03-08T09:36:00.720782-08:00,1007.778076171875,10.832573,10832.573 +11190,2025-03-08T09:36:11.548781-08:00,1007.7372436523438,10.827999,10827.999 +11191,2025-03-08T09:36:22.385198-08:00,1007.7372436523438,10.836417,10836.417 +11192,2025-03-08T09:36:33.219290-08:00,1007.7372436523438,10.834092,10834.092 +11193,2025-03-08T09:36:44.053770-08:00,1007.7196655273438,10.83448,10834.48 +11194,2025-03-08T09:36:54.888094-08:00,1007.74609375,10.834324,10834.324 +11195,2025-03-08T09:37:05.729425-08:00,1007.7553100585938,10.841331,10841.331 +11196,2025-03-08T09:37:16.568199-08:00,1007.7486572265625,10.838774,10838.774 +11197,2025-03-08T09:37:27.401368-08:00,1007.7354736328125,10.833169,10833.169 +11198,2025-03-08T09:37:38.241339-08:00,1007.7633056640625,10.839971,10839.971 +11199,2025-03-08T09:37:49.083258-08:00,1007.772705078125,10.841919,10841.919 +11200,2025-03-08T09:37:59.916784-08:00,1007.7647094726562,10.833526,10833.526 +11201,2025-03-08T09:38:10.747821-08:00,1007.759521484375,10.831037,10831.037 +11202,2025-03-08T09:38:21.586827-08:00,1007.7407836914062,10.839006,10839.006 +11203,2025-03-08T09:38:32.422321-08:00,1007.71435546875,10.835494,10835.494 +11204,2025-03-08T09:38:43.259779-08:00,1007.782958984375,10.837458,10837.458 +11205,2025-03-08T09:38:54.091828-08:00,1007.735595703125,10.832049,10832.049 +11206,2025-03-08T09:39:04.934772-08:00,1007.7645874023438,10.842944,10842.944 +11207,2025-03-08T09:39:15.767202-08:00,1007.759033203125,10.83243,10832.43 +11208,2025-03-08T09:39:26.598848-08:00,1007.7672119140625,10.831646,10831.646 +11209,2025-03-08T09:39:37.434998-08:00,1007.7142333984375,10.83615,10836.15 +11210,2025-03-08T09:39:48.273955-08:00,1007.75390625,10.838957,10838.957 +11211,2025-03-08T09:39:59.106193-08:00,1007.7498168945312,10.832238,10832.238 +11212,2025-03-08T09:40:09.938774-08:00,1007.744384765625,10.832581,10832.581 +11213,2025-03-08T09:40:20.784847-08:00,1007.772216796875,10.846073,10846.073 +11214,2025-03-08T09:40:31.619119-08:00,1007.7259521484375,10.834272,10834.272 +11215,2025-03-08T09:40:42.460619-08:00,1007.720458984375,10.8415,10841.5 +11216,2025-03-08T09:40:53.290939-08:00,1007.7505493164062,10.83032,10830.32 +11217,2025-03-08T09:41:04.134988-08:00,1007.7362670898438,10.844049,10844.049 +11218,2025-03-08T09:41:14.966262-08:00,1007.7164306640625,10.831274,10831.274 +11219,2025-03-08T09:41:25.805023-08:00,1007.7134399414062,10.838761,10838.761 +11220,2025-03-08T09:41:36.654216-08:00,1007.7464599609375,10.849193,10849.193 +11221,2025-03-08T09:41:47.484819-08:00,1007.729248046875,10.830603,10830.603 +11222,2025-03-08T09:41:58.325777-08:00,1007.7490844726562,10.840958,10840.958 +11223,2025-03-08T09:42:09.166582-08:00,1007.7173461914062,10.840805,10840.805 +11224,2025-03-08T09:42:20.008785-08:00,1007.7515869140625,10.842203,10842.203 +11225,2025-03-08T09:42:30.845819-08:00,1007.7661743164062,10.837034,10837.034 +11226,2025-03-08T09:42:41.686508-08:00,1007.7540893554688,10.840689,10840.689 +11227,2025-03-08T09:42:52.527069-08:00,1007.7489013671875,10.840561,10840.561 +11228,2025-03-08T09:43:03.364047-08:00,1007.767333984375,10.836978,10836.978 +11229,2025-03-08T09:43:14.205045-08:00,1007.7687377929688,10.840998,10840.998 +11230,2025-03-08T09:43:25.050021-08:00,1007.7408447265625,10.844976,10844.976 +11231,2025-03-08T09:43:35.887084-08:00,1007.758056640625,10.837063,10837.063 +11232,2025-03-08T09:43:46.725868-08:00,1007.7591552734375,10.838784,10838.784 +11233,2025-03-08T09:43:57.562776-08:00,1007.7407836914062,10.836908,10836.908 +11234,2025-03-08T09:44:08.387686-08:00,1007.75390625,10.82491,10824.91 +11235,2025-03-08T09:44:19.225030-08:00,1007.7521362304688,10.837344,10837.344 +11236,2025-03-08T09:44:30.067915-08:00,1007.731201171875,10.842885,10842.885 +11237,2025-03-08T09:44:40.905098-08:00,1007.73779296875,10.837183,10837.183 +11238,2025-03-08T09:44:51.748393-08:00,1007.7256469726562,10.843295,10843.295 +11239,2025-03-08T09:45:02.586782-08:00,1007.7402954101562,10.838389,10838.389 +11240,2025-03-08T09:45:13.426385-08:00,1007.7072143554688,10.839603,10839.603 +11241,2025-03-08T09:45:24.265009-08:00,1007.72998046875,10.838624,10838.624 +11242,2025-03-08T09:45:35.105776-08:00,1007.7256469726562,10.840767,10840.767 +11243,2025-03-08T09:45:45.952864-08:00,1007.731201171875,10.847088,10847.088 +11244,2025-03-08T09:45:56.792204-08:00,1007.7256469726562,10.83934,10839.34 +11245,2025-03-08T09:46:07.631014-08:00,1007.76123046875,10.83881,10838.81 +11246,2025-03-08T09:46:18.470762-08:00,1007.7282104492188,10.839748,10839.748 +11247,2025-03-08T09:46:29.302129-08:00,1007.7413940429688,10.831367,10831.367 +11248,2025-03-08T09:46:40.136801-08:00,1007.7388916015625,10.834672,10834.672 +11249,2025-03-08T09:46:50.983759-08:00,1007.76123046875,10.846958,10846.958 +11250,2025-03-08T09:47:01.819778-08:00,1007.7413940429688,10.836019,10836.019 +11251,2025-03-08T09:47:12.663121-08:00,1007.7150268554688,10.843343,10843.343 +11252,2025-03-08T09:47:23.500855-08:00,1007.7402954101562,10.837734,10837.734 +11253,2025-03-08T09:47:34.346794-08:00,1007.7479858398438,10.845939,10845.939 +11254,2025-03-08T09:47:45.176964-08:00,1007.720458984375,10.83017,10830.17 +11255,2025-03-08T09:47:56.026074-08:00,1007.7282104492188,10.84911,10849.11 +11256,2025-03-08T09:48:06.865931-08:00,1007.7083740234375,10.839857,10839.857 +11257,2025-03-08T09:48:17.704823-08:00,1007.6676025390625,10.838892,10838.892 +11258,2025-03-08T09:48:28.537838-08:00,1007.7164306640625,10.833015,10833.015 +11259,2025-03-08T09:48:39.385023-08:00,1007.692626953125,10.847185,10847.185 +11260,2025-03-08T09:48:50.215036-08:00,1007.7017211914062,10.830013,10830.013 +11261,2025-03-08T09:49:01.063146-08:00,1007.7150268554688,10.84811,10848.11 +11262,2025-03-08T09:49:11.897786-08:00,1007.692626953125,10.83464,10834.64 +11263,2025-03-08T09:49:22.734782-08:00,1007.671630859375,10.836996,10836.996 +11264,2025-03-08T09:49:33.562428-08:00,1007.6874389648438,10.827646,10827.646 +11265,2025-03-08T09:49:44.408824-08:00,1007.6595458984375,10.846396,10846.396 +11266,2025-03-08T09:49:55.241891-08:00,1007.69921875,10.833067,10833.067 +11267,2025-03-08T09:50:06.084627-08:00,1007.6727905273438,10.842736,10842.736 +11268,2025-03-08T09:50:16.928037-08:00,1007.671630859375,10.84341,10843.41 +11269,2025-03-08T09:50:27.765040-08:00,1007.694091796875,10.837003,10837.003 +11270,2025-03-08T09:50:38.607777-08:00,1007.6529541015625,10.842737,10842.737 +11271,2025-03-08T09:50:49.445117-08:00,1007.6397094726562,10.83734,10837.34 +11272,2025-03-08T09:51:00.296123-08:00,1007.6529541015625,10.851006,10851.006 +11273,2025-03-08T09:51:11.129925-08:00,1007.6278686523438,10.833802,10833.802 +11274,2025-03-08T09:51:21.970832-08:00,1007.6885375976562,10.840907,10840.907 +11275,2025-03-08T09:51:32.813318-08:00,1007.694091796875,10.842486,10842.486 +11276,2025-03-08T09:51:43.660307-08:00,1007.6874389648438,10.846989,10846.989 +11277,2025-03-08T09:51:54.503786-08:00,1007.668701171875,10.843479,10843.479 +11278,2025-03-08T09:52:05.347782-08:00,1007.6356201171875,10.843996,10843.996 +11279,2025-03-08T09:52:16.187786-08:00,1007.619873046875,10.840004,10840.004 +11280,2025-03-08T09:52:27.034234-08:00,1007.6741943359375,10.846448,10846.448 +11281,2025-03-08T09:52:37.875827-08:00,1007.6331176757812,10.841593,10841.593 +11282,2025-03-08T09:52:48.708819-08:00,1007.6529541015625,10.832992,10832.992 +11283,2025-03-08T09:52:59.545330-08:00,1007.6661987304688,10.836511,10836.511 +11284,2025-03-08T09:53:10.386983-08:00,1007.6595458984375,10.841653,10841.653 +11285,2025-03-08T09:53:21.219913-08:00,1007.6397094726562,10.83293,10832.93 +11286,2025-03-08T09:53:32.053596-08:00,1007.6676025390625,10.833683,10833.683 +11287,2025-03-08T09:53:42.886045-08:00,1007.6859130859375,10.832449,10832.449 +11288,2025-03-08T09:53:53.722107-08:00,1007.6807861328125,10.836062,10836.062 +11289,2025-03-08T09:54:04.554934-08:00,1007.6463012695312,10.832827,10832.827 +11290,2025-03-08T09:54:15.398169-08:00,1007.6638793945312,10.843235,10843.235 +11291,2025-03-08T09:54:26.233945-08:00,1007.6375122070312,10.835776,10835.776 +11292,2025-03-08T09:54:37.069882-08:00,1007.6506958007812,10.835937,10835.937 +11293,2025-03-08T09:54:47.896852-08:00,1007.6492919921875,10.82697,10826.97 +11294,2025-03-08T09:54:58.728935-08:00,1007.6294555664062,10.832083,10832.083 +11295,2025-03-08T09:55:09.563831-08:00,1007.6481323242188,10.834896,10834.896 +11296,2025-03-08T09:55:20.405360-08:00,1007.6456298828125,10.841529,10841.529 +11297,2025-03-08T09:55:31.234867-08:00,1007.635009765625,10.829507,10829.507 +11298,2025-03-08T09:55:42.072325-08:00,1007.6522827148438,10.837458,10837.458 +11299,2025-03-08T09:55:52.904235-08:00,1007.646728515625,10.83191,10831.91 +11300,2025-03-08T09:56:03.734759-08:00,1007.6599731445312,10.830524,10830.524 +11301,2025-03-08T09:56:14.568092-08:00,1007.6324462890625,10.833333,10833.333 +11302,2025-03-08T09:56:25.412351-08:00,1007.6376342773438,10.844259,10844.259 +11303,2025-03-08T09:56:36.243780-08:00,1007.6720581054688,10.831429,10831.429 +11304,2025-03-08T09:56:47.074777-08:00,1007.6654663085938,10.830997,10830.997 +11305,2025-03-08T09:56:57.902247-08:00,1007.658935546875,10.82747,10827.47 +11306,2025-03-08T09:57:08.735115-08:00,1007.6192016601562,10.832868,10832.868 +11307,2025-03-08T09:57:19.579827-08:00,1007.6257934570312,10.844712,10844.712 +11308,2025-03-08T09:57:30.412788-08:00,1007.6456298828125,10.832961,10832.961 +11309,2025-03-08T09:57:41.248098-08:00,1007.6192016601562,10.83531,10835.31 +11310,2025-03-08T09:57:52.086777-08:00,1007.6257934570312,10.838679,10838.679 +11311,2025-03-08T09:58:02.930911-08:00,1007.6045532226562,10.844134,10844.134 +11312,2025-03-08T09:58:13.765195-08:00,1007.6268920898438,10.834284,10834.284 +11313,2025-03-08T09:58:24.605823-08:00,1007.658935546875,10.840628,10840.628 +11314,2025-03-08T09:58:35.450758-08:00,1007.6324462890625,10.844935,10844.935 +11315,2025-03-08T09:58:46.284928-08:00,1007.6336059570312,10.83417,10834.17 +11316,2025-03-08T09:58:57.123003-08:00,1007.6243896484375,10.838075,10838.075 +11317,2025-03-08T09:59:07.961923-08:00,1007.6522827148438,10.83892,10838.92 +11318,2025-03-08T09:59:18.815006-08:00,1007.6192016601562,10.853083,10853.083 +11319,2025-03-08T09:59:29.650888-08:00,1007.6376342773438,10.835882,10835.882 +11320,2025-03-08T09:59:40.483966-08:00,1007.6218872070312,10.833078,10833.078 +11321,2025-03-08T09:59:51.320931-08:00,1007.6365356445312,10.836965,10836.965 +11322,2025-03-08T10:00:02.160770-08:00,1007.6365356445312,10.839839,10839.839 +11323,2025-03-08T10:00:12.995774-08:00,1007.6310424804688,10.835004,10835.004 +11324,2025-03-08T10:00:23.834787-08:00,1007.6243896484375,10.839013,10839.013 +11325,2025-03-08T10:00:34.681776-08:00,1007.6111450195312,10.846989,10846.989 +11326,2025-03-08T10:00:45.515735-08:00,1007.6298217773438,10.833959,10833.959 +11327,2025-03-08T10:00:56.356984-08:00,1007.6442260742188,10.841249,10841.249 +11328,2025-03-08T10:01:07.196602-08:00,1007.6243896484375,10.839618,10839.618 +11329,2025-03-08T10:01:18.033029-08:00,1007.6257934570312,10.836427,10836.427 +11330,2025-03-08T10:01:28.881393-08:00,1007.6324462890625,10.848364,10848.364 +11331,2025-03-08T10:01:39.719832-08:00,1007.64013671875,10.838439,10838.439 +11332,2025-03-08T10:01:50.564785-08:00,1007.6599731445312,10.844953,10844.953 +11333,2025-03-08T10:02:01.406601-08:00,1007.6336059570312,10.841816,10841.816 +11334,2025-03-08T10:02:12.253154-08:00,1007.6415405273438,10.846553,10846.553 +11335,2025-03-08T10:02:23.091138-08:00,1007.6492919921875,10.837984,10837.984 +11336,2025-03-08T10:02:33.939787-08:00,1007.6492919921875,10.848649,10848.649 +11337,2025-03-08T10:02:44.778105-08:00,1007.692626953125,10.838318,10838.318 +11338,2025-03-08T10:02:55.626029-08:00,1007.6649780273438,10.847924,10847.924 +11339,2025-03-08T10:03:06.463800-08:00,1007.6386108398438,10.837771,10837.771 +11340,2025-03-08T10:03:17.306787-08:00,1007.634521484375,10.842987,10842.987 +11341,2025-03-08T10:03:28.150838-08:00,1007.64892578125,10.844051,10844.051 +11342,2025-03-08T10:03:38.995920-08:00,1007.681884765625,10.845082,10845.082 +11343,2025-03-08T10:03:49.829919-08:00,1007.6503295898438,10.833999,10833.999 +11344,2025-03-08T10:04:00.671794-08:00,1007.6568603515625,10.841875,10841.875 +11345,2025-03-08T10:04:11.509809-08:00,1007.6436767578125,10.838015,10838.015 +11346,2025-03-08T10:04:22.353351-08:00,1007.6712646484375,10.843542,10843.542 +11347,2025-03-08T10:04:33.194759-08:00,1007.65283203125,10.841408,10841.408 +11348,2025-03-08T10:04:44.029785-08:00,1007.6593627929688,10.835026,10835.026 +11349,2025-03-08T10:04:54.871460-08:00,1007.6604614257812,10.841675,10841.675 +11350,2025-03-08T10:05:05.708813-08:00,1007.6370239257812,10.837353,10837.353 +11351,2025-03-08T10:05:16.545840-08:00,1007.6869506835938,10.837027,10837.027 +11352,2025-03-08T10:05:27.394355-08:00,1007.6802978515625,10.848515,10848.515 +11353,2025-03-08T10:05:38.268906-08:00,1007.64208984375,10.874551,10874.551 +11354,2025-03-08T10:05:49.105936-08:00,1007.6619262695312,10.83703,10837.03 +11355,2025-03-08T10:05:59.948921-08:00,1007.669677734375,10.842985,10842.985 +11356,2025-03-08T10:06:10.785936-08:00,1007.6630249023438,10.837015,10837.015 +11357,2025-03-08T10:06:21.624875-08:00,1007.635498046875,10.838939,10838.939 +11358,2025-03-08T10:06:32.460464-08:00,1007.6776733398438,10.835589,10835.589 +11359,2025-03-08T10:06:43.298279-08:00,1007.6498413085938,10.837815,10837.815 +11360,2025-03-08T10:06:54.147059-08:00,1007.66455078125,10.84878,10848.78 +11361,2025-03-08T10:07:04.981944-08:00,1007.6589965820312,10.834885,10834.885 +11362,2025-03-08T10:07:15.827935-08:00,1007.6630249023438,10.845991,10845.991 +11363,2025-03-08T10:07:26.671688-08:00,1007.6630249023438,10.843753,10843.753 +11364,2025-03-08T10:07:37.503549-08:00,1007.6512451171875,10.831861,10831.861 +11365,2025-03-08T10:07:48.344120-08:00,1007.635498046875,10.840571,10840.571 +11366,2025-03-08T10:07:59.186108-08:00,1007.6300048828125,10.841988,10841.988 +11367,2025-03-08T10:08:10.025041-08:00,1007.6630249023438,10.838933,10838.933 +11368,2025-03-08T10:08:20.868346-08:00,1007.6487426757812,10.843305,10843.305 +11369,2025-03-08T10:08:31.719938-08:00,1007.6498413085938,10.851592,10851.592 +11370,2025-03-08T10:08:42.554116-08:00,1007.6365356445312,10.834178,10834.178 +11371,2025-03-08T10:08:53.397942-08:00,1007.6365356445312,10.843826,10843.826 +11372,2025-03-08T10:09:04.242330-08:00,1007.6776733398438,10.844388,10844.388 +11373,2025-03-08T10:09:15.076947-08:00,1007.6090698242188,10.834617,10834.617 +11374,2025-03-08T10:09:25.922943-08:00,1007.6630249023438,10.845996,10845.996 +11375,2025-03-08T10:09:36.760945-08:00,1007.64208984375,10.838002,10838.002 +11376,2025-03-08T10:09:47.595936-08:00,1007.6325073242188,10.834991,10834.991 +11377,2025-03-08T10:09:58.434181-08:00,1007.6222534179688,10.838245,10838.245 +11378,2025-03-08T10:10:09.281207-08:00,1007.6182250976562,10.847026,10847.026 +11379,2025-03-08T10:10:20.118203-08:00,1007.61669921875,10.836996,10836.996 +11380,2025-03-08T10:10:30.953083-08:00,1007.6024780273438,10.83488,10834.88 +11381,2025-03-08T10:10:41.802039-08:00,1007.59033203125,10.848956,10848.956 +11382,2025-03-08T10:10:52.637996-08:00,1007.6447143554688,10.835957,10835.957 +11383,2025-03-08T10:11:03.484196-08:00,1007.6101684570312,10.8462,10846.2 +11384,2025-03-08T10:11:14.322920-08:00,1007.6365356445312,10.838724,10838.724 +11385,2025-03-08T10:11:25.161913-08:00,1007.596923828125,10.838993,10838.993 +11386,2025-03-08T10:11:36.000302-08:00,1007.6512451171875,10.838389,10838.389 +11387,2025-03-08T10:11:46.849221-08:00,1007.635498046875,10.848919,10848.919 +11388,2025-03-08T10:11:57.683948-08:00,1007.6406860351562,10.834727,10834.727 +11389,2025-03-08T10:12:08.535170-08:00,1007.62890625,10.851222,10851.222 +11390,2025-03-08T10:12:19.371033-08:00,1007.6553344726562,10.835863,10835.863 +11391,2025-03-08T10:12:30.214747-08:00,1007.6300048828125,10.843714,10843.714 +11392,2025-03-08T10:12:41.045938-08:00,1007.607666015625,10.831191,10831.191 +11393,2025-03-08T10:12:51.878194-08:00,1007.6156005859375,10.832256,10832.256 +11394,2025-03-08T10:13:02.713445-08:00,1007.6275024414062,10.835251,10835.251 +11395,2025-03-08T10:13:13.561105-08:00,1007.6564331054688,10.84766,10847.66 +11396,2025-03-08T10:13:24.392997-08:00,1007.634033203125,10.831892,10831.892 +11397,2025-03-08T10:13:35.232925-08:00,1007.6619262695312,10.839928,10839.928 +11398,2025-03-08T10:13:46.075938-08:00,1007.6473388671875,10.843013,10843.013 +11399,2025-03-08T10:13:56.920583-08:00,1007.6406860351562,10.844645,10844.645 +11400,2025-03-08T10:14:07.753216-08:00,1007.6275024414062,10.832633,10832.633 +11401,2025-03-08T10:14:18.592915-08:00,1007.6473388671875,10.839699,10839.699 +11402,2025-03-08T10:14:29.436076-08:00,1007.6406860351562,10.843161,10843.161 +11403,2025-03-08T10:14:40.270218-08:00,1007.6051635742188,10.834142,10834.142 +11404,2025-03-08T10:14:51.106939-08:00,1007.607666015625,10.836721,10836.721 +11405,2025-03-08T10:15:01.943941-08:00,1007.6406860351562,10.837002,10837.002 +11406,2025-03-08T10:15:12.777056-08:00,1007.6329956054688,10.833115,10833.115 +11407,2025-03-08T10:15:23.614659-08:00,1007.6553344726562,10.837603,10837.603 +11408,2025-03-08T10:15:34.459222-08:00,1007.6275024414062,10.844563,10844.563 +11409,2025-03-08T10:15:45.294563-08:00,1007.6264038085938,10.835341,10835.341 +11410,2025-03-08T10:15:56.142372-08:00,1007.5878295898438,10.847809,10847.809 +11411,2025-03-08T10:16:06.989942-08:00,1007.62890625,10.84757,10847.57 +11412,2025-03-08T10:16:17.827185-08:00,1007.607666015625,10.837243,10837.243 +11413,2025-03-08T10:16:28.672554-08:00,1007.634033203125,10.845369,10845.369 +11414,2025-03-08T10:16:39.512158-08:00,1007.6197509765625,10.839604,10839.604 +11415,2025-03-08T10:16:50.359205-08:00,1007.620849609375,10.847047,10847.047 +11416,2025-03-08T10:17:01.198073-08:00,1007.620849609375,10.838868,10838.868 +11417,2025-03-08T10:17:12.032056-08:00,1007.6141967773438,10.833983,10833.983 +11418,2025-03-08T10:17:22.869937-08:00,1007.6156005859375,10.837881,10837.881 +11419,2025-03-08T10:17:33.701919-08:00,1007.6447143554688,10.831982,10831.982 +11420,2025-03-08T10:17:44.550196-08:00,1007.6431884765625,10.848277,10848.277 +11421,2025-03-08T10:17:55.387101-08:00,1007.6380615234375,10.836905,10836.905 +11422,2025-03-08T10:18:06.231942-08:00,1007.6589965820312,10.844841,10844.841 +11423,2025-03-08T10:18:17.079356-08:00,1007.6259155273438,10.847414,10847.414 +11424,2025-03-08T10:18:27.923326-08:00,1007.6325073242188,10.84397,10843.97 +11425,2025-03-08T10:18:38.767005-08:00,1007.6259155273438,10.843679,10843.679 +11426,2025-03-08T10:18:49.600580-08:00,1007.6574096679688,10.833575,10833.575 +11427,2025-03-08T10:19:00.447925-08:00,1007.6177368164062,10.847345,10847.345 +11428,2025-03-08T10:19:11.290199-08:00,1007.6588134765625,10.842274,10842.274 +11429,2025-03-08T10:19:22.135921-08:00,1007.6442260742188,10.845722,10845.722 +11430,2025-03-08T10:19:32.981199-08:00,1007.6257934570312,10.845278,10845.278 +11431,2025-03-08T10:19:43.815939-08:00,1007.6532592773438,10.83474,10834.74 +11432,2025-03-08T10:19:54.656313-08:00,1007.6192016601562,10.840374,10840.374 +11433,2025-03-08T10:20:05.504538-08:00,1007.6257934570312,10.848225,10848.225 +11434,2025-03-08T10:20:16.342937-08:00,1007.6492309570312,10.838399,10838.399 +11435,2025-03-08T10:20:27.188941-08:00,1007.6690673828125,10.846004,10846.004 +11436,2025-03-08T10:20:38.029239-08:00,1007.6389770507812,10.840298,10840.298 +11437,2025-03-08T10:20:48.867922-08:00,1007.6481323242188,10.838683,10838.683 +11438,2025-03-08T10:20:59.712535-08:00,1007.6532592773438,10.844613,10844.613 +11439,2025-03-08T10:21:10.551128-08:00,1007.6203002929688,10.838593,10838.593 +11440,2025-03-08T10:21:21.388269-08:00,1007.599365234375,10.837141,10837.141 +11441,2025-03-08T10:21:32.232264-08:00,1007.6136474609375,10.843995,10843.995 +11442,2025-03-08T10:21:43.070136-08:00,1007.6257934570312,10.837872,10837.872 +11443,2025-03-08T10:21:53.909089-08:00,1007.6217041015625,10.838953,10838.953 +11444,2025-03-08T10:22:04.752194-08:00,1007.62939453125,10.843105,10843.105 +11445,2025-03-08T10:22:15.599032-08:00,1007.6203002929688,10.846838,10846.838 +11446,2025-03-08T10:22:26.437444-08:00,1007.6282958984375,10.838412,10838.412 +11447,2025-03-08T10:22:37.278147-08:00,1007.622802734375,10.840703,10840.703 +11448,2025-03-08T10:22:48.115433-08:00,1007.596435546875,10.837286,10837.286 +11449,2025-03-08T10:22:58.957473-08:00,1007.6162719726562,10.84204,10842.04 +11450,2025-03-08T10:23:09.799934-08:00,1007.58203125,10.842461,10842.461 +11451,2025-03-08T10:23:20.650250-08:00,1007.6162719726562,10.850316,10850.316 +11452,2025-03-08T10:23:31.482952-08:00,1007.6173706054688,10.832702,10832.702 +11453,2025-03-08T10:23:42.329229-08:00,1007.59521484375,10.846277,10846.277 +11454,2025-03-08T10:23:53.172982-08:00,1007.6084594726562,10.843753,10843.753 +11455,2025-03-08T10:24:04.016303-08:00,1007.5938110351562,10.843321,10843.321 +11456,2025-03-08T10:24:14.868218-08:00,1007.6136474609375,10.851915,10851.915 +11457,2025-03-08T10:24:25.703737-08:00,1007.633544921875,10.835519,10835.519 +11458,2025-03-08T10:24:36.542706-08:00,1007.60595703125,10.838969,10838.969 +11459,2025-03-08T10:24:47.385188-08:00,1007.5927124023438,10.842482,10842.482 +11460,2025-03-08T10:24:58.226185-08:00,1007.6243896484375,10.840997,10840.997 +11461,2025-03-08T10:25:09.066936-08:00,1007.599365234375,10.840751,10840.751 +11462,2025-03-08T10:25:19.917230-08:00,1007.6203002929688,10.850294,10850.294 +11463,2025-03-08T10:25:30.758016-08:00,1007.611083984375,10.840786,10840.786 +11464,2025-03-08T10:25:41.597196-08:00,1007.6099853515625,10.83918,10839.18 +11465,2025-03-08T10:25:52.432988-08:00,1007.6218872070312,10.835792,10835.792 +11466,2025-03-08T10:26:03.277184-08:00,1007.623291015625,10.844196,10844.196 +11467,2025-03-08T10:26:14.124169-08:00,1007.6085815429688,10.846985,10846.985 +11468,2025-03-08T10:26:24.964936-08:00,1007.6140747070312,10.840767,10840.767 +11469,2025-03-08T10:26:35.804942-08:00,1007.6074829101562,10.840006,10840.006 +11470,2025-03-08T10:26:46.654952-08:00,1007.5887451171875,10.85001,10850.01 +11471,2025-03-08T10:26:57.491083-08:00,1007.6060791015625,10.836131,10836.131 +11472,2025-03-08T10:27:08.336159-08:00,1007.5917358398438,10.845076,10845.076 +11473,2025-03-08T10:27:19.180941-08:00,1007.5994262695312,10.844782,10844.782 +11474,2025-03-08T10:27:30.026761-08:00,1007.6325073242188,10.84582,10845.82 +11475,2025-03-08T10:27:40.865275-08:00,1007.6126708984375,10.838514,10838.514 +11476,2025-03-08T10:27:51.711915-08:00,1007.60498046875,10.84664,10846.64 +11477,2025-03-08T10:28:02.548361-08:00,1007.5994262695312,10.836446,10836.446 +11478,2025-03-08T10:28:13.387952-08:00,1007.6126708984375,10.839591,10839.591 +11479,2025-03-08T10:28:24.224975-08:00,1007.598388671875,10.837023,10837.023 +11480,2025-03-08T10:28:35.070185-08:00,1007.598388671875,10.84521,10845.21 +11481,2025-03-08T10:28:45.915940-08:00,1007.6101684570312,10.845755,10845.755 +11482,2025-03-08T10:28:56.753981-08:00,1007.611572265625,10.838041,10838.041 +11483,2025-03-08T10:29:07.595165-08:00,1007.6126708984375,10.841184,10841.184 +11484,2025-03-08T10:29:18.438970-08:00,1007.5718994140625,10.843805,10843.805 +11485,2025-03-08T10:29:29.272939-08:00,1007.6182250976562,10.833969,10833.969 +11486,2025-03-08T10:29:40.121931-08:00,1007.5917358398438,10.848992,10848.992 +11487,2025-03-08T10:29:50.954142-08:00,1007.5770874023438,10.832211,10832.211 +11488,2025-03-08T10:30:01.795944-08:00,1007.6300048828125,10.841802,10841.802 +11489,2025-03-08T10:30:12.632323-08:00,1007.6182250976562,10.836379,10836.379 +11490,2025-03-08T10:30:23.462008-08:00,1007.5826416015625,10.829685,10829.685 +11491,2025-03-08T10:30:34.305937-08:00,1007.6101684570312,10.843929,10843.929 +11492,2025-03-08T10:30:45.147253-08:00,1007.5878295898438,10.841316,10841.316 +11493,2025-03-08T10:30:55.993268-08:00,1007.6010131835938,10.846015,10846.015 +11494,2025-03-08T10:31:06.831359-08:00,1007.5602416992188,10.838091,10838.091 +11495,2025-03-08T10:31:17.669525-08:00,1007.5786743164062,10.838166,10838.166 +11496,2025-03-08T10:31:27.133410-08:00,1007.5775146484375,9.463885,9463.885 +11497,2025-03-08T10:31:28.513763-08:00,1007.5853271484375,1.380353,1380.353 +11498,2025-03-08T10:31:39.356185-08:00,1007.582763671875,10.842422,10842.422 +11499,2025-03-08T10:31:50.193932-08:00,1007.5907592773438,10.837747,10837.747 +11500,2025-03-08T10:32:01.025955-08:00,1007.5907592773438,10.832023,10832.023 +11501,2025-03-08T10:32:11.868431-08:00,1007.5907592773438,10.842476,10842.476 +11502,2025-03-08T10:32:22.707295-08:00,1007.558837890625,10.838864,10838.864 +11503,2025-03-08T10:32:33.549965-08:00,1007.584228515625,10.84267,10842.67 +11504,2025-03-08T10:32:44.390937-08:00,1007.582763671875,10.840972,10840.972 +11505,2025-03-08T10:32:55.227914-08:00,1007.572021484375,10.836977,10836.977 +11506,2025-03-08T10:33:06.065936-08:00,1007.5643920898438,10.838022,10838.022 +11507,2025-03-08T10:33:16.902945-08:00,1007.5431518554688,10.837009,10837.009 +11508,2025-03-08T10:33:27.737248-08:00,1007.572021484375,10.834303,10834.303 +11509,2025-03-08T10:33:38.573939-08:00,1007.5577392578125,10.836691,10836.691 +11510,2025-03-08T10:33:49.413137-08:00,1007.5750122070312,10.839198,10839.198 +11511,2025-03-08T10:34:00.257539-08:00,1007.536376953125,10.844402,10844.402 +11512,2025-03-08T10:34:11.090080-08:00,1007.548583984375,10.832541,10832.541 +11513,2025-03-08T10:34:21.923227-08:00,1007.5419311523438,10.833147,10833.147 +11514,2025-03-08T10:34:32.765450-08:00,1007.5750122070312,10.842223,10842.223 +11515,2025-03-08T10:34:43.602162-08:00,1007.5496826171875,10.836712,10836.712 +11516,2025-03-08T10:34:54.440910-08:00,1007.5496826171875,10.838748,10838.748 +11517,2025-03-08T10:35:05.284638-08:00,1007.5695190429688,10.843728,10843.728 +11518,2025-03-08T10:35:16.114934-08:00,1007.5419311523438,10.830296,10830.296 +11519,2025-03-08T10:35:26.954189-08:00,1007.512939453125,10.839255,10839.255 +11520,2025-03-08T10:35:37.787976-08:00,1007.561767578125,10.833787,10833.787 +11521,2025-03-08T10:35:48.632968-08:00,1007.5537719726562,10.844992,10844.992 +11522,2025-03-08T10:35:59.466164-08:00,1007.533935546875,10.833196,10833.196 +11523,2025-03-08T10:36:10.307474-08:00,1007.5382690429688,10.84131,10841.31 +11524,2025-03-08T10:36:21.146939-08:00,1007.5394287109375,10.839465,10839.465 +11525,2025-03-08T10:36:31.989943-08:00,1007.5394287109375,10.843004,10843.004 +11526,2025-03-08T10:36:42.826576-08:00,1007.5382690429688,10.836633,10836.633 +11527,2025-03-08T10:36:53.657941-08:00,1007.5262451171875,10.831365,10831.365 +11528,2025-03-08T10:37:04.501942-08:00,1007.5184936523438,10.844001,10844.001 +11529,2025-03-08T10:37:15.338393-08:00,1007.5328369140625,10.836451,10836.451 +11530,2025-03-08T10:37:26.165167-08:00,1007.5328369140625,10.826774,10826.774 +11531,2025-03-08T10:37:37.002945-08:00,1007.5262451171875,10.837778,10837.778 +11532,2025-03-08T10:37:47.850248-08:00,1007.5460815429688,10.847303,10847.303 +11533,2025-03-08T10:37:58.693292-08:00,1007.53173828125,10.843044,10843.044 +11534,2025-03-08T10:38:09.525986-08:00,1007.5460815429688,10.832694,10832.694 +11535,2025-03-08T10:38:20.369366-08:00,1007.5501708984375,10.84338,10843.38 +11536,2025-03-08T10:38:31.210581-08:00,1007.5449829101562,10.841215,10841.215 +11537,2025-03-08T10:38:42.047941-08:00,1007.5382690429688,10.83736,10837.36 +11538,2025-03-08T10:38:52.892186-08:00,1007.50390625,10.844245,10844.245 +11539,2025-03-08T10:39:03.727295-08:00,1007.513427734375,10.835109,10835.109 +11540,2025-03-08T10:39:14.572988-08:00,1007.5465087890625,10.845693,10845.693 +11541,2025-03-08T10:39:25.406680-08:00,1007.560791015625,10.833692,10833.692 +11542,2025-03-08T10:39:36.246900-08:00,1007.5571899414062,10.84022,10840.22 +11543,2025-03-08T10:39:47.076939-08:00,1007.5516967773438,10.830039,10830.039 +11544,2025-03-08T10:39:57.908943-08:00,1007.5438842773438,10.832004,10832.004 +11545,2025-03-08T10:40:08.741402-08:00,1007.5083618164062,10.832459,10832.459 +11546,2025-03-08T10:40:19.584019-08:00,1007.5042724609375,10.842617,10842.617 +11547,2025-03-08T10:40:30.416994-08:00,1007.54248046875,10.832975,10832.975 +11548,2025-03-08T10:40:41.254936-08:00,1007.54248046875,10.837942,10837.942 +11549,2025-03-08T10:40:52.086915-08:00,1007.5413818359375,10.831979,10831.979 +11550,2025-03-08T10:41:02.923524-08:00,1007.5557861328125,10.836609,10836.609 +11551,2025-03-08T10:41:13.756201-08:00,1007.5531005859375,10.832677,10832.677 +11552,2025-03-08T10:41:24.586979-08:00,1007.5516967773438,10.830778,10830.778 +11553,2025-03-08T10:41:35.419985-08:00,1007.58203125,10.833006,10833.006 +11554,2025-03-08T10:41:46.261940-08:00,1007.5343627929688,10.841955,10841.955 +11555,2025-03-08T10:41:57.102089-08:00,1007.5501708984375,10.840149,10840.149 +11556,2025-03-08T10:42:07.935970-08:00,1007.536865234375,10.833881,10833.881 +11557,2025-03-08T10:42:18.769107-08:00,1007.56591796875,10.833137,10833.137 +11558,2025-03-08T10:42:29.612122-08:00,1007.572509765625,10.843015,10843.015 +11559,2025-03-08T10:42:40.442495-08:00,1007.5460815429688,10.830373,10830.373 +11560,2025-03-08T10:42:51.273988-08:00,1007.56591796875,10.831493,10831.493 +11561,2025-03-08T10:43:02.107291-08:00,1007.5262451171875,10.833303,10833.303 +11562,2025-03-08T10:43:12.938943-08:00,1007.5684204101562,10.831652,10831.652 +11563,2025-03-08T10:43:23.782303-08:00,1007.572021484375,10.84336,10843.36 +11564,2025-03-08T10:43:34.611967-08:00,1007.5510864257812,10.829664,10829.664 +11565,2025-03-08T10:43:45.458005-08:00,1007.5323486328125,10.846038,10846.038 +11566,2025-03-08T10:43:56.289239-08:00,1007.5296630859375,10.831234,10831.234 +11567,2025-03-08T10:44:07.130976-08:00,1007.54296875,10.841737,10841.737 +11568,2025-03-08T10:44:17.974240-08:00,1007.5134887695312,10.843264,10843.264 +11569,2025-03-08T10:44:28.817503-08:00,1007.514892578125,10.843263,10843.263 +11570,2025-03-08T10:44:39.654238-08:00,1007.5094604492188,10.836735,10836.735 +11571,2025-03-08T10:44:50.497937-08:00,1007.5438842773438,10.843699,10843.699 +11572,2025-03-08T10:45:01.334952-08:00,1007.5582885742188,10.837015,10837.015 +11573,2025-03-08T10:45:12.175229-08:00,1007.52001953125,10.840277,10840.277 +11574,2025-03-08T10:45:23.009112-08:00,1007.5423583984375,10.833883,10833.883 +11575,2025-03-08T10:45:33.853314-08:00,1007.5314331054688,10.844202,10844.202 +11576,2025-03-08T10:45:44.682042-08:00,1007.5404663085938,10.828728,10828.728 +11577,2025-03-08T10:45:55.519029-08:00,1007.5443725585938,10.836987,10836.987 +11578,2025-03-08T10:46:06.346721-08:00,1007.5469360351562,10.827692,10827.692 +11579,2025-03-08T10:46:17.179389-08:00,1007.505859375,10.832668,10832.668 +11580,2025-03-08T10:46:28.015991-08:00,1007.5296630859375,10.836602,10836.602 +11581,2025-03-08T10:46:38.853100-08:00,1007.5479125976562,10.837109,10837.109 +11582,2025-03-08T10:46:49.697015-08:00,1007.5357666015625,10.843915,10843.915 +11583,2025-03-08T10:47:00.529939-08:00,1007.5424194335938,10.832924,10832.924 +11584,2025-03-08T10:47:11.372936-08:00,1007.5133056640625,10.842997,10842.997 +11585,2025-03-08T10:47:22.203961-08:00,1007.5089111328125,10.831025,10831.025 +11586,2025-03-08T10:47:33.046915-08:00,1007.5367431640625,10.842954,10842.954 +11587,2025-03-08T10:47:43.879287-08:00,1007.5392456054688,10.832372,10832.372 +11588,2025-03-08T10:47:54.714987-08:00,1007.5193481445312,10.8357,10835.7 +11589,2025-03-08T10:48:05.553529-08:00,1007.5418090820312,10.838542,10838.542 +11590,2025-03-08T10:48:16.384273-08:00,1007.5296630859375,10.830744,10830.744 +11591,2025-03-08T10:48:27.228987-08:00,1007.5189208984375,10.844714,10844.714 +11592,2025-03-08T10:48:38.060203-08:00,1007.5281372070312,10.831216,10831.216 +11593,2025-03-08T10:48:48.903585-08:00,1007.5504760742188,10.843382,10843.382 +11594,2025-03-08T10:48:59.733605-08:00,1007.5518798828125,10.83002,10830.02 +11595,2025-03-08T10:49:10.565083-08:00,1007.51220703125,10.831478,10831.478 +11596,2025-03-08T10:49:21.402905-08:00,1007.542236328125,10.837822,10837.822 +11597,2025-03-08T10:49:32.240932-08:00,1007.5208740234375,10.838027,10838.027 +11598,2025-03-08T10:49:43.084201-08:00,1007.5128173828125,10.843269,10843.269 +11599,2025-03-08T10:49:53.927084-08:00,1007.5142211914062,10.842883,10842.883 +11600,2025-03-08T10:50:04.758945-08:00,1007.5365600585938,10.831861,10831.861 +11601,2025-03-08T10:50:15.601226-08:00,1007.5509643554688,10.842281,10842.281 +11602,2025-03-08T10:50:26.442378-08:00,1007.553466796875,10.841152,10841.152 +11603,2025-03-08T10:50:37.277025-08:00,1007.5416259765625,10.834647,10834.647 +11604,2025-03-08T10:50:48.115147-08:00,1007.5176391601562,10.838122,10838.122 +11605,2025-03-08T10:50:58.962060-08:00,1007.5201416015625,10.846913,10846.913 +11606,2025-03-08T10:51:09.806911-08:00,1007.5359497070312,10.844851,10844.851 +11607,2025-03-08T10:51:20.638932-08:00,1007.522705078125,10.832021,10832.021 +11608,2025-03-08T10:51:31.482942-08:00,1007.546142578125,10.84401,10844.01 +11609,2025-03-08T10:51:42.316212-08:00,1007.5275268554688,10.83327,10833.27 +11610,2025-03-08T10:51:53.155970-08:00,1007.5365600585938,10.839758,10839.758 +11611,2025-03-08T10:52:03.999028-08:00,1007.564453125,10.843058,10843.058 +11612,2025-03-08T10:52:14.831091-08:00,1007.5328369140625,10.832063,10832.063 +11613,2025-03-08T10:52:25.672823-08:00,1007.5418701171875,10.841732,10841.732 +11614,2025-03-08T10:52:36.515086-08:00,1007.5300903320312,10.842263,10842.263 +11615,2025-03-08T10:52:47.347926-08:00,1007.516845703125,10.83284,10832.84 +11616,2025-03-08T10:52:58.190271-08:00,1007.5128173828125,10.842345,10842.345 +11617,2025-03-08T10:53:09.035982-08:00,1007.540283203125,10.845711,10845.711 +11618,2025-03-08T10:53:19.877202-08:00,1007.5706787109375,10.84122,10841.22 +11619,2025-03-08T10:53:30.720944-08:00,1007.544189453125,10.843742,10843.742 +11620,2025-03-08T10:53:41.564121-08:00,1007.55859375,10.843177,10843.177 +11621,2025-03-08T10:53:52.399971-08:00,1007.5401611328125,10.83585,10835.85 +11622,2025-03-08T10:54:03.239065-08:00,1007.530517578125,10.839094,10839.094 +11623,2025-03-08T10:54:14.081345-08:00,1007.55810546875,10.84228,10842.28 +11624,2025-03-08T10:54:24.925290-08:00,1007.5595092773438,10.843945,10843.945 +11625,2025-03-08T10:54:35.767968-08:00,1007.5606079101562,10.842678,10842.678 +11626,2025-03-08T10:54:46.610934-08:00,1007.5921020507812,10.842966,10842.966 +11627,2025-03-08T10:54:57.454269-08:00,1007.58544921875,10.843335,10843.335 +11628,2025-03-08T10:55:08.291522-08:00,1007.5921020507812,10.837253,10837.253 +11629,2025-03-08T10:55:19.132070-08:00,1007.5670166015625,10.840548,10840.548 +11630,2025-03-08T10:55:29.970936-08:00,1007.5496826171875,10.838866,10838.866 +11631,2025-03-08T10:55:40.815194-08:00,1007.5574340820312,10.844258,10844.258 +11632,2025-03-08T10:55:51.664064-08:00,1007.558837890625,10.84887,10848.87 +11633,2025-03-08T10:56:02.501672-08:00,1007.5466918945312,10.837608,10837.608 +11634,2025-03-08T10:56:13.345936-08:00,1007.5745239257812,10.844264,10844.264 +11635,2025-03-08T10:56:24.187944-08:00,1007.5889282226562,10.842008,10842.008 +11636,2025-03-08T10:56:35.029231-08:00,1007.5571899414062,10.841287,10841.287 +11637,2025-03-08T10:56:45.875261-08:00,1007.578125,10.84603,10846.03 +11638,2025-03-08T10:56:56.714155-08:00,1007.578125,10.838894,10838.894 +11639,2025-03-08T10:57:07.559938-08:00,1007.5726318359375,10.845783,10845.783 +11640,2025-03-08T10:57:18.402092-08:00,1007.5608520507812,10.842154,10842.154 +11641,2025-03-08T10:57:29.244487-08:00,1007.5765380859375,10.842395,10842.395 +11642,2025-03-08T10:57:40.088334-08:00,1007.5567016601562,10.843847,10843.847 +11643,2025-03-08T10:57:50.932921-08:00,1007.5628051757812,10.844587,10844.587 +11644,2025-03-08T10:58:01.776083-08:00,1007.5909423828125,10.843162,10843.162 +11645,2025-03-08T10:58:12.616736-08:00,1007.5552978515625,10.840653,10840.653 +11646,2025-03-08T10:58:23.461360-08:00,1007.5971069335938,10.844624,10844.624 +11647,2025-03-08T10:58:34.298340-08:00,1007.5843505859375,10.83698,10836.98 +11648,2025-03-08T10:58:45.139197-08:00,1007.5448608398438,10.840857,10840.857 +11649,2025-03-08T10:58:55.985142-08:00,1007.5661010742188,10.845945,10845.945 +11650,2025-03-08T10:59:06.824106-08:00,1007.5884399414062,10.838964,10838.964 +11651,2025-03-08T10:59:17.655451-08:00,1007.5804443359375,10.831345,10831.345 +11652,2025-03-08T10:59:28.497295-08:00,1007.6174926757812,10.841844,10841.844 +11653,2025-03-08T10:59:39.329133-08:00,1007.58544921875,10.831838,10831.838 +11654,2025-03-08T10:59:50.170932-08:00,1007.62109375,10.841799,10841.799 +11655,2025-03-08T11:00:01.013941-08:00,1007.5960083007812,10.843009,10843.009 +11656,2025-03-08T11:00:11.846138-08:00,1007.5839233398438,10.832197,10832.197 +11657,2025-03-08T11:00:22.689972-08:00,1007.5918579101562,10.843834,10843.834 +11658,2025-03-08T11:00:33.531131-08:00,1007.5811767578125,10.841159,10841.159 +11659,2025-03-08T11:00:44.365566-08:00,1007.59912109375,10.834435,10834.435 +11660,2025-03-08T11:00:55.210127-08:00,1007.5806884765625,10.844561,10844.561 +11661,2025-03-08T11:01:06.041697-08:00,1007.5765380859375,10.83157,10831.57 +11662,2025-03-08T11:01:16.882473-08:00,1007.5658569335938,10.840776,10840.776 +11663,2025-03-08T11:01:27.726281-08:00,1007.5750122070312,10.843808,10843.808 +11664,2025-03-08T11:01:38.569192-08:00,1007.5576782226562,10.842911,10842.911 +11665,2025-03-08T11:01:49.423043-08:00,1007.546875,10.853851,10853.851 +11666,2025-03-08T11:02:00.266292-08:00,1007.5692138671875,10.843249,10843.249 +11667,2025-03-08T11:02:11.110246-08:00,1007.5361938476562,10.843954,10843.954 +11668,2025-03-08T11:02:21.952258-08:00,1007.565185546875,10.842012,10842.012 +11669,2025-03-08T11:02:32.793942-08:00,1007.588623046875,10.841684,10841.684 +11670,2025-03-08T11:02:43.637943-08:00,1007.5831298828125,10.844001,10844.001 +11671,2025-03-08T11:02:54.470269-08:00,1007.564697265625,10.832326,10832.326 +11672,2025-03-08T11:03:05.308930-08:00,1007.5814819335938,10.838661,10838.661 +11673,2025-03-08T11:03:16.157943-08:00,1007.5748291015625,10.849013,10849.013 +11674,2025-03-08T11:03:26.995269-08:00,1007.57080078125,10.837326,10837.326 +11675,2025-03-08T11:03:37.831517-08:00,1007.5722045898438,10.836248,10836.248 +11676,2025-03-08T11:03:48.673920-08:00,1007.5548706054688,10.842403,10842.403 +11677,2025-03-08T11:03:59.519927-08:00,1007.5848388671875,10.846007,10846.007 +11678,2025-03-08T11:04:10.364945-08:00,1007.5476684570312,10.845018,10845.018 +11679,2025-03-08T11:04:21.202197-08:00,1007.5634155273438,10.837252,10837.252 +11680,2025-03-08T11:04:32.035143-08:00,1007.5684204101562,10.832946,10832.946 +11681,2025-03-08T11:04:42.879268-08:00,1007.5828247070312,10.844125,10844.125 +11682,2025-03-08T11:04:53.711271-08:00,1007.540283203125,10.832003,10832.003 +11683,2025-03-08T11:05:04.553929-08:00,1007.5811157226562,10.842658,10842.658 +11684,2025-03-08T11:05:15.386261-08:00,1007.5596923828125,10.832332,10832.332 +11685,2025-03-08T11:05:26.238937-08:00,1007.554443359375,10.852676,10852.676 +11686,2025-03-08T11:05:37.085100-08:00,1007.5513916015625,10.846163,10846.163 +11687,2025-03-08T11:05:47.923460-08:00,1007.5382080078125,10.83836,10838.36 +11688,2025-03-08T11:05:58.761729-08:00,1007.5682983398438,10.838269,10838.269 +11689,2025-03-08T11:06:09.603793-08:00,1007.5523681640625,10.842064,10842.064 +11690,2025-03-08T11:06:20.442454-08:00,1007.5680541992188,10.838661,10838.661 +11691,2025-03-08T11:06:31.278433-08:00,1007.53857421875,10.835979,10835.979 +11692,2025-03-08T11:06:42.116476-08:00,1007.549072265625,10.838043,10838.043 +11693,2025-03-08T11:06:52.948433-08:00,1007.5515747070312,10.831957,10831.957 +11694,2025-03-08T11:07:03.788795-08:00,1007.512939453125,10.840362,10840.362 +11695,2025-03-08T11:07:14.628927-08:00,1007.55517578125,10.840132,10840.132 +11696,2025-03-08T11:07:25.461518-08:00,1007.5179443359375,10.832591,10832.591 +11697,2025-03-08T11:07:36.292762-08:00,1007.540283203125,10.831244,10831.244 +11698,2025-03-08T11:07:47.132793-08:00,1007.523193359375,10.840031,10840.031 +11699,2025-03-08T11:07:57.967455-08:00,1007.523193359375,10.834662,10834.662 +11700,2025-03-08T11:08:08.807218-08:00,1007.5388793945312,10.839763,10839.763 +11701,2025-03-08T11:08:19.640995-08:00,1007.5111083984375,10.833777,10833.777 +11702,2025-03-08T11:08:30.473607-08:00,1007.5256958007812,10.832612,10832.612 +11703,2025-03-08T11:08:41.315707-08:00,1007.5215454101562,10.8421,10842.1 +11704,2025-03-08T11:08:52.157835-08:00,1007.5359497070312,10.842128,10842.128 +11705,2025-03-08T11:09:03.001715-08:00,1007.5491333007812,10.84388,10843.88 +11706,2025-03-08T11:09:13.851538-08:00,1007.4961547851562,10.849823,10849.823 +11707,2025-03-08T11:09:24.689452-08:00,1007.487060546875,10.837914,10837.914 +11708,2025-03-08T11:09:35.532805-08:00,1007.5003051757812,10.843353,10843.353 +11709,2025-03-08T11:09:46.383713-08:00,1007.50830078125,10.850908,10850.908 +11710,2025-03-08T11:09:57.230947-08:00,1007.5267944335938,10.847234,10847.234 +11711,2025-03-08T11:10:08.075482-08:00,1007.5267944335938,10.844535,10844.535 +11712,2025-03-08T11:10:18.915433-08:00,1007.5068969726562,10.839951,10839.951 +11713,2025-03-08T11:10:29.758697-08:00,1007.4713134765625,10.843264,10843.264 +11714,2025-03-08T11:10:40.603720-08:00,1007.51904296875,10.845023,10845.023 +11715,2025-03-08T11:10:51.444574-08:00,1007.51904296875,10.840854,10840.854 +11716,2025-03-08T11:11:02.285804-08:00,1007.4779663085938,10.84123,10841.23 +11717,2025-03-08T11:11:13.131826-08:00,1007.4859619140625,10.846022,10846.022 +11718,2025-03-08T11:11:23.975858-08:00,1007.4754638671875,10.844032,10844.032 +11719,2025-03-08T11:11:34.805456-08:00,1007.5044555664062,10.829598,10829.598 +11720,2025-03-08T11:11:45.648459-08:00,1007.501953125,10.843003,10843.003 +11721,2025-03-08T11:11:56.482074-08:00,1007.5086059570312,10.833615,10833.615 +11722,2025-03-08T11:12:07.322665-08:00,1007.5005493164062,10.840591,10840.591 +11723,2025-03-08T11:12:18.167523-08:00,1007.5535278320312,10.844858,10844.858 +11724,2025-03-08T11:12:29.011179-08:00,1007.5454711914062,10.843656,10843.656 +11725,2025-03-08T11:12:39.854816-08:00,1007.5322875976562,10.843637,10843.637 +11726,2025-03-08T11:12:50.694225-08:00,1007.5072021484375,10.839409,10839.409 +11727,2025-03-08T11:13:01.523453-08:00,1007.4969482421875,10.829228,10829.228 +11728,2025-03-08T11:13:12.366685-08:00,1007.5154418945312,10.843232,10843.232 +11729,2025-03-08T11:13:23.203511-08:00,1007.5087280273438,10.836826,10836.826 +11730,2025-03-08T11:13:34.040466-08:00,1007.4863891601562,10.836955,10836.955 +11731,2025-03-08T11:13:44.889835-08:00,1007.466552734375,10.849369,10849.369 +11732,2025-03-08T11:13:55.732536-08:00,1007.5037231445312,10.842701,10842.701 +11733,2025-03-08T11:14:06.574881-08:00,1007.5013427734375,10.842345,10842.345 +11734,2025-03-08T11:14:17.416456-08:00,1007.489501953125,10.841575,10841.575 +11735,2025-03-08T11:14:28.262608-08:00,1007.4880981445312,10.846152,10846.152 +11736,2025-03-08T11:14:39.095730-08:00,1007.5013427734375,10.833122,10833.122 +11737,2025-03-08T11:14:49.939638-08:00,1007.4656982421875,10.843908,10843.908 +11738,2025-03-08T11:15:00.772734-08:00,1007.4921875,10.833096,10833.096 +11739,2025-03-08T11:15:11.611735-08:00,1007.4723510742188,10.839001,10839.001 +11740,2025-03-08T11:15:22.453953-08:00,1007.4631958007812,10.842218,10842.218 +11741,2025-03-08T11:15:33.294731-08:00,1007.477783203125,10.840778,10840.778 +11742,2025-03-08T11:15:44.135698-08:00,1007.4910888671875,10.840967,10840.967 +11743,2025-03-08T11:15:54.983714-08:00,1007.4500122070312,10.848016,10848.016 +11744,2025-03-08T11:16:05.827766-08:00,1007.4845581054688,10.844052,10844.052 +11745,2025-03-08T11:16:16.670823-08:00,1007.4698486328125,10.843057,10843.057 +11746,2025-03-08T11:16:27.508646-08:00,1007.443359375,10.837823,10837.823 +11747,2025-03-08T11:16:38.343797-08:00,1007.4540405273438,10.835151,10835.151 +11748,2025-03-08T11:16:49.198901-08:00,1007.4554443359375,10.855104,10855.104 +11749,2025-03-08T11:17:00.035449-08:00,1007.4408569335938,10.836548,10836.548 +11750,2025-03-08T11:17:10.867757-08:00,1007.4408569335938,10.832308,10832.308 +11751,2025-03-08T11:17:21.703727-08:00,1007.4489135742188,10.83597,10835.97 +11752,2025-03-08T11:17:32.548582-08:00,1007.464599609375,10.844855,10844.855 +11753,2025-03-08T11:17:43.383456-08:00,1007.45654296875,10.834874,10834.874 +11754,2025-03-08T11:17:54.222824-08:00,1007.415771484375,10.839368,10839.368 +11755,2025-03-08T11:18:05.068173-08:00,1007.415771484375,10.845349,10845.349 +11756,2025-03-08T11:18:15.899449-08:00,1007.443359375,10.831276,10831.276 +11757,2025-03-08T11:18:26.740457-08:00,1007.4525146484375,10.841008,10841.008 +11758,2025-03-08T11:18:37.580256-08:00,1007.4458618164062,10.839799,10839.799 +11759,2025-03-08T11:18:48.420433-08:00,1007.3995361328125,10.840177,10840.177 +11760,2025-03-08T11:18:59.249791-08:00,1007.4381103515625,10.829358,10829.358 +11761,2025-03-08T11:19:10.092762-08:00,1007.4273681640625,10.842971,10842.971 +11762,2025-03-08T11:19:20.932455-08:00,1007.4326782226562,10.839693,10839.693 +11763,2025-03-08T11:19:31.769777-08:00,1007.4550170898438,10.837322,10837.322 +11764,2025-03-08T11:19:42.609893-08:00,1007.4550170898438,10.840116,10840.116 +11765,2025-03-08T11:19:53.451609-08:00,1007.4298706054688,10.841716,10841.716 +11766,2025-03-08T11:20:04.284701-08:00,1007.4298706054688,10.833092,10833.092 +11767,2025-03-08T11:20:25.968992-08:00,1007.443115234375,21.684291,21684.291 +11768,2025-03-08T11:20:36.800506-08:00,1007.440185546875,10.831514,10831.514 +11769,2025-03-08T11:20:47.639588-08:00,1007.4467163085938,10.839082,10839.082 +11770,2025-03-08T11:20:58.473461-08:00,1007.4481201171875,10.833873,10833.873 +11771,2025-03-08T11:21:09.319451-08:00,1007.4268798828125,10.84599,10845.99 +11772,2025-03-08T11:21:20.161509-08:00,1007.4373168945312,10.842058,10842.058 +11773,2025-03-08T11:21:30.997992-08:00,1007.421630859375,10.836483,10836.483 +11774,2025-03-08T11:21:41.837181-08:00,1007.41748046875,10.839189,10839.189 +11775,2025-03-08T11:21:52.677437-08:00,1007.41748046875,10.840256,10840.256 +11776,2025-03-08T11:22:03.528433-08:00,1007.4227294921875,10.850996,10850.996 +11777,2025-03-08T11:22:14.371589-08:00,1007.4131469726562,10.843156,10843.156 +11778,2025-03-08T11:22:25.210044-08:00,1007.4263305664062,10.838455,10838.455 +11779,2025-03-08T11:22:36.053528-08:00,1007.435791015625,10.843484,10843.484 +11780,2025-03-08T11:22:46.895931-08:00,1007.4026489257812,10.842403,10842.403 +11781,2025-03-08T11:22:57.735764-08:00,1007.3973999023438,10.839833,10839.833 +11782,2025-03-08T11:23:08.583067-08:00,1007.4051513671875,10.847303,10847.303 +11783,2025-03-08T11:23:19.424456-08:00,1007.39990234375,10.841389,10841.389 +11784,2025-03-08T11:23:30.264067-08:00,1007.4208374023438,10.839611,10839.611 +11785,2025-03-08T11:23:41.111589-08:00,1007.393310546875,10.847522,10847.522 +11786,2025-03-08T11:23:51.949568-08:00,1007.4010009765625,10.837979,10837.979 +11787,2025-03-08T11:24:02.804053-08:00,1007.381103515625,10.854485,10854.485 +11788,2025-03-08T11:24:13.643478-08:00,1007.3982543945312,10.839425,10839.425 +11789,2025-03-08T11:24:24.483856-08:00,1007.4034423828125,10.840378,10840.378 +11790,2025-03-08T11:24:35.334174-08:00,1007.3861083984375,10.850318,10850.318 +11791,2025-03-08T11:24:46.168320-08:00,1007.3993530273438,10.834146,10834.146 +11792,2025-03-08T11:24:57.017456-08:00,1007.3941650390625,10.849136,10849.136 +11793,2025-03-08T11:25:07.862686-08:00,1007.40185546875,10.84523,10845.23 +11794,2025-03-08T11:25:18.699437-08:00,1007.40185546875,10.836751,10836.751 +11795,2025-03-08T11:25:29.538820-08:00,1007.3701782226562,10.839383,10839.383 +11796,2025-03-08T11:25:40.385612-08:00,1007.3820190429688,10.846792,10846.792 +11797,2025-03-08T11:25:51.225491-08:00,1007.3579711914062,10.839879,10839.879 +11798,2025-03-08T11:26:02.072845-08:00,1007.3701782226562,10.847354,10847.354 +11799,2025-03-08T11:26:12.914760-08:00,1007.3447875976562,10.841915,10841.915 +11800,2025-03-08T11:26:23.756271-08:00,1007.3646240234375,10.841511,10841.511 +11801,2025-03-08T11:26:34.587758-08:00,1007.3646240234375,10.831487,10831.487 +11802,2025-03-08T11:26:45.431459-08:00,1007.3726806640625,10.843701,10843.701 +11803,2025-03-08T11:26:56.273033-08:00,1007.3660278320312,10.841574,10841.574 +11804,2025-03-08T11:27:07.116449-08:00,1007.3660278320312,10.843416,10843.416 +11805,2025-03-08T11:27:17.950496-08:00,1007.3748168945312,10.834047,10834.047 +11806,2025-03-08T11:27:28.793460-08:00,1007.3894653320312,10.842964,10842.964 +11807,2025-03-08T11:27:39.632582-08:00,1007.3828125,10.839122,10839.122 +11808,2025-03-08T11:27:50.478458-08:00,1007.3880615234375,10.845876,10845.876 +11809,2025-03-08T11:28:01.312502-08:00,1007.373779296875,10.834044,10834.044 +11810,2025-03-08T11:28:12.149486-08:00,1007.3748168945312,10.836984,10836.984 +11811,2025-03-08T11:28:22.996483-08:00,1007.3660278320312,10.846997,10846.997 +11812,2025-03-08T11:28:33.833441-08:00,1007.3748168945312,10.836958,10836.958 +11813,2025-03-08T11:28:44.673490-08:00,1007.3894653320312,10.840049,10840.049 +11814,2025-03-08T11:28:55.517713-08:00,1007.376220703125,10.844223,10844.223 +11815,2025-03-08T11:29:06.357609-08:00,1007.3828125,10.839896,10839.896 +11816,2025-03-08T11:29:17.190691-08:00,1007.376220703125,10.833082,10833.082 +11817,2025-03-08T11:29:28.028791-08:00,1007.3748168945312,10.8381,10838.1 +11818,2025-03-08T11:29:38.876743-08:00,1007.3482666015625,10.847952,10847.952 +11819,2025-03-08T11:29:49.711455-08:00,1007.3894653320312,10.834712,10834.712 +11820,2025-03-08T11:30:00.551795-08:00,1007.361572265625,10.84034,10840.34 +11821,2025-03-08T11:30:11.393342-08:00,1007.376220703125,10.841547,10841.547 +11822,2025-03-08T11:30:22.236448-08:00,1007.3748168945312,10.843106,10843.106 +11823,2025-03-08T11:30:33.079939-08:00,1007.361572265625,10.843491,10843.491 +11824,2025-03-08T11:30:43.915725-08:00,1007.36962890625,10.835786,10835.786 +11825,2025-03-08T11:30:54.754494-08:00,1007.3682250976562,10.838769,10838.769 +11826,2025-03-08T11:31:05.594693-08:00,1007.3507690429688,10.840199,10840.199 +11827,2025-03-08T11:31:16.429762-08:00,1007.3563842773438,10.835069,10835.069 +11828,2025-03-08T11:31:27.267715-08:00,1007.34423828125,10.837953,10837.953 +11829,2025-03-08T11:31:38.101766-08:00,1007.3233032226562,10.834051,10834.051 +11830,2025-03-08T11:31:48.947101-08:00,1007.3894653320312,10.845335,10845.335 +11831,2025-03-08T11:31:59.785967-08:00,1007.3482666015625,10.838866,10838.866 +11832,2025-03-08T11:32:10.623532-08:00,1007.3947143554688,10.837565,10837.565 +11833,2025-03-08T11:32:21.458052-08:00,1007.3748168945312,10.83452,10834.52 +11834,2025-03-08T11:32:32.298608-08:00,1007.3726806640625,10.840556,10840.556 +11835,2025-03-08T11:32:43.136423-08:00,1007.3726806640625,10.837815,10837.815 +11836,2025-03-08T11:32:53.979637-08:00,1007.39111328125,10.843214,10843.214 +11837,2025-03-08T11:33:04.822464-08:00,1007.34228515625,10.842827,10842.827 +11838,2025-03-08T11:33:15.658565-08:00,1007.350341796875,10.836101,10836.101 +11839,2025-03-08T11:33:26.494849-08:00,1007.302490234375,10.836284,10836.284 +11840,2025-03-08T11:33:37.333315-08:00,1007.3712768554688,10.838466,10838.466 +11841,2025-03-08T11:33:48.171672-08:00,1007.34228515625,10.838357,10838.357 +11842,2025-03-08T11:33:59.008719-08:00,1007.3875122070312,10.837047,10837.047 +11843,2025-03-08T11:34:09.852462-08:00,1007.3199462890625,10.843743,10843.743 +11844,2025-03-08T11:34:20.689180-08:00,1007.3345336914062,10.836718,10836.718 +11845,2025-03-08T11:34:31.531458-08:00,1007.3478393554688,10.842278,10842.278 +11846,2025-03-08T11:34:42.369455-08:00,1007.3397827148438,10.837997,10837.997 +11847,2025-03-08T11:34:53.207592-08:00,1007.3372802734375,10.838137,10838.137 +11848,2025-03-08T11:35:04.046464-08:00,1007.346435546875,10.838872,10838.872 +11849,2025-03-08T11:35:14.885457-08:00,1007.3290405273438,10.838993,10838.993 +11850,2025-03-08T11:35:25.729708-08:00,1007.3240356445312,10.844251,10844.251 +11851,2025-03-08T11:35:36.573777-08:00,1007.2857055664062,10.844069,10844.069 +11852,2025-03-08T11:35:47.410709-08:00,1007.2843627929688,10.836932,10836.932 +11853,2025-03-08T11:35:58.259131-08:00,1007.3132934570312,10.848422,10848.422 +11854,2025-03-08T11:36:09.091856-08:00,1007.2974853515625,10.832725,10832.725 +11855,2025-03-08T11:36:19.941530-08:00,1007.2898559570312,10.849674,10849.674 +11856,2025-03-08T11:36:30.776455-08:00,1007.2988891601562,10.834925,10834.925 +11857,2025-03-08T11:36:41.619458-08:00,1007.2843627929688,10.843003,10843.003 +11858,2025-03-08T11:36:52.452013-08:00,1007.3199462890625,10.832555,10832.555 +11859,2025-03-08T11:37:03.290433-08:00,1007.2923583984375,10.83842,10838.42 +11860,2025-03-08T11:37:14.127463-08:00,1007.2776489257812,10.83703,10837.03 +11861,2025-03-08T11:37:24.957018-08:00,1007.2633666992188,10.829555,10829.555 +11862,2025-03-08T11:37:35.801670-08:00,1007.251220703125,10.844652,10844.652 +11863,2025-03-08T11:37:46.643454-08:00,1007.2857055664062,10.841784,10841.784 +11864,2025-03-08T11:37:57.486708-08:00,1007.2368774414062,10.843254,10843.254 +11865,2025-03-08T11:38:08.325866-08:00,1007.2776489257812,10.839158,10839.158 +11866,2025-03-08T11:38:19.161456-08:00,1007.2857055664062,10.83559,10835.59 +11867,2025-03-08T11:38:29.995033-08:00,1007.2476806640625,10.833577,10833.577 +11868,2025-03-08T11:38:40.830486-08:00,1007.2686157226562,10.835453,10835.453 +11869,2025-03-08T11:38:51.669459-08:00,1007.2675170898438,10.838973,10838.973 +11870,2025-03-08T11:39:02.510932-08:00,1007.261962890625,10.841473,10841.473 +11871,2025-03-08T11:39:13.342498-08:00,1007.2410278320312,10.831566,10831.566 +11872,2025-03-08T11:39:24.185457-08:00,1007.248779296875,10.842959,10842.959 +11873,2025-03-08T11:39:35.018777-08:00,1007.2608642578125,10.83332,10833.32 +11874,2025-03-08T11:39:45.861764-08:00,1007.26611328125,10.842987,10842.987 +11875,2025-03-08T11:39:56.689455-08:00,1007.2740478515625,10.827691,10827.691 +11876,2025-03-08T11:40:07.533509-08:00,1007.225341796875,10.844054,10844.054 +11877,2025-03-08T11:40:18.370487-08:00,1007.3005981445312,10.836978,10836.978 +11878,2025-03-08T11:40:29.197464-08:00,1007.28076171875,10.826977,10826.977 +11879,2025-03-08T11:40:40.033277-08:00,1007.251708984375,10.835813,10835.813 +11880,2025-03-08T11:40:50.870685-08:00,1007.251708984375,10.837408,10837.408 +11881,2025-03-08T11:41:01.712599-08:00,1007.2503051757812,10.841914,10841.914 +11882,2025-03-08T11:41:12.553710-08:00,1007.23046875,10.841111,10841.111 +11883,2025-03-08T11:41:23.390431-08:00,1007.2503051757812,10.836721,10836.721 +11884,2025-03-08T11:41:34.226785-08:00,1007.2636108398438,10.836354,10836.354 +11885,2025-03-08T11:41:45.064107-08:00,1007.2503051757812,10.837322,10837.322 +11886,2025-03-08T11:41:55.906461-08:00,1007.2423706054688,10.842354,10842.354 +11887,2025-03-08T11:42:06.748459-08:00,1007.2144775390625,10.841998,10841.998 +11888,2025-03-08T11:42:17.582081-08:00,1007.2276611328125,10.833622,10833.622 +11889,2025-03-08T11:42:28.428822-08:00,1007.2464599609375,10.846741,10846.741 +11890,2025-03-08T11:42:39.267464-08:00,1007.232177734375,10.838642,10838.642 +11891,2025-03-08T11:42:50.104453-08:00,1007.245361328125,10.836989,10836.989 +11892,2025-03-08T11:43:00.941739-08:00,1007.2439575195312,10.837286,10837.286 +11893,2025-03-08T11:43:11.788314-08:00,1007.242919921875,10.846575,10846.575 +11894,2025-03-08T11:43:22.632480-08:00,1007.242919921875,10.844166,10844.166 +11895,2025-03-08T11:43:33.470437-08:00,1007.2271728515625,10.837957,10837.957 +11896,2025-03-08T11:43:44.302480-08:00,1007.2470092773438,10.832043,10832.043 +11897,2025-03-08T11:43:55.140445-08:00,1007.2191162109375,10.837965,10837.965 +11898,2025-03-08T11:44:05.982666-08:00,1007.2445068359375,10.842221,10842.221 +11899,2025-03-08T11:44:16.821911-08:00,1007.2553100585938,10.839245,10839.245 +11900,2025-03-08T11:44:27.651448-08:00,1007.2340698242188,10.829537,10829.537 +11901,2025-03-08T11:44:38.488596-08:00,1007.2461547851562,10.837148,10837.148 +11902,2025-03-08T11:44:49.332735-08:00,1007.2579956054688,10.844139,10844.139 +11903,2025-03-08T11:45:00.163797-08:00,1007.2213134765625,10.831062,10831.062 +11904,2025-03-08T11:45:11.005730-08:00,1007.2386474609375,10.841933,10841.933 +11905,2025-03-08T11:45:21.845687-08:00,1007.2174072265625,10.839957,10839.957 +11906,2025-03-08T11:45:32.694449-08:00,1007.2086181640625,10.848762,10848.762 +11907,2025-03-08T11:45:43.534684-08:00,1007.220458984375,10.840235,10840.235 +11908,2025-03-08T11:45:54.364461-08:00,1007.1837768554688,10.829777,10829.777 +11909,2025-03-08T11:46:05.212822-08:00,1007.2103271484375,10.848361,10848.361 +11910,2025-03-08T11:46:16.041073-08:00,1007.21435546875,10.828251,10828.251 +11911,2025-03-08T11:46:26.878789-08:00,1007.21435546875,10.837716,10837.716 +11912,2025-03-08T11:46:37.711449-08:00,1007.2039184570312,10.83266,10832.66 +11913,2025-03-08T11:46:48.559654-08:00,1007.1961669921875,10.848205,10848.205 +11914,2025-03-08T11:46:59.392458-08:00,1007.2079467773438,10.832804,10832.804 +11915,2025-03-08T11:47:10.231014-08:00,1007.21875,10.838556,10838.556 +11916,2025-03-08T11:47:21.066454-08:00,1007.2054443359375,10.83544,10835.44 +11917,2025-03-08T11:47:31.905532-08:00,1007.204345703125,10.839078,10839.078 +11918,2025-03-08T11:47:42.736456-08:00,1007.24267578125,10.830924,10830.924 +11919,2025-03-08T11:47:53.579526-08:00,1007.1983032226562,10.84307,10843.07 +11920,2025-03-08T11:48:04.417836-08:00,1007.1693725585938,10.83831,10838.31 +11921,2025-03-08T11:48:15.244450-08:00,1007.1903076171875,10.826614,10826.614 +11922,2025-03-08T11:48:26.090610-08:00,1007.18115234375,10.84616,10846.16 +11923,2025-03-08T11:48:36.923083-08:00,1007.19189453125,10.832473,10832.473 +11924,2025-03-08T11:48:47.756609-08:00,1007.1800537109375,10.833526,10833.526 +11925,2025-03-08T11:48:58.593456-08:00,1007.1695556640625,10.836847,10836.847 +11926,2025-03-08T11:49:09.430089-08:00,1007.1709594726562,10.836633,10836.633 +11927,2025-03-08T11:49:20.273805-08:00,1007.147216796875,10.843716,10843.716 +11928,2025-03-08T11:49:31.101001-08:00,1007.1328735351562,10.827196,10827.196 +11929,2025-03-08T11:49:41.935698-08:00,1007.1777954101562,10.834697,10834.697 +11930,2025-03-08T11:49:52.778433-08:00,1007.1777954101562,10.842735,10842.735 +11931,2025-03-08T11:50:03.606438-08:00,1007.1777954101562,10.828005,10828.005 +11932,2025-03-08T11:50:14.449778-08:00,1007.1990356445312,10.84334,10843.34 +11933,2025-03-08T11:50:25.292684-08:00,1007.2109375,10.842906,10842.906 +11934,2025-03-08T11:50:36.127462-08:00,1007.16455078125,10.834778,10834.778 +11935,2025-03-08T11:50:46.973940-08:00,1007.217529296875,10.846478,10846.478 +11936,2025-03-08T11:50:57.803454-08:00,1007.181884765625,10.829514,10829.514 +11937,2025-03-08T11:51:08.646758-08:00,1007.168701171875,10.843304,10843.304 +11938,2025-03-08T11:51:19.483570-08:00,1007.1766967773438,10.836812,10836.812 +11939,2025-03-08T11:51:30.321650-08:00,1007.2098388671875,10.83808,10838.08 +11940,2025-03-08T11:51:41.160460-08:00,1007.17529296875,10.83881,10838.81 +11941,2025-03-08T11:51:51.994892-08:00,1007.2230224609375,10.834432,10834.432 +11942,2025-03-08T11:52:02.828781-08:00,1007.145263671875,10.833889,10833.889 +11943,2025-03-08T11:52:13.660450-08:00,1007.1661987304688,10.831669,10831.669 +11944,2025-03-08T11:52:24.509560-08:00,1007.1543579101562,10.84911,10849.11 +11945,2025-03-08T11:52:35.336510-08:00,1007.1386108398438,10.82695,10826.95 +11946,2025-03-08T11:52:46.181972-08:00,1007.1793823242188,10.845462,10845.462 +11947,2025-03-08T11:52:57.015693-08:00,1007.1375122070312,10.833721,10833.721 +11948,2025-03-08T11:53:07.846460-08:00,1007.1320190429688,10.830767,10830.767 +11949,2025-03-08T11:53:18.684437-08:00,1007.158447265625,10.837977,10837.977 +11950,2025-03-08T11:53:29.521406-08:00,1007.1640014648438,10.836969,10836.969 +11951,2025-03-08T11:53:40.353512-08:00,1007.1482543945312,10.832106,10832.106 +11952,2025-03-08T11:53:51.192043-08:00,1007.1573486328125,10.838531,10838.531 +11953,2025-03-08T11:54:02.028646-08:00,1007.1162719726562,10.836603,10836.603 +11954,2025-03-08T11:54:12.860459-08:00,1007.1482543945312,10.831813,10831.813 +11955,2025-03-08T11:54:23.695735-08:00,1007.1482543945312,10.835276,10835.276 +11956,2025-03-08T11:54:34.522693-08:00,1007.1402587890625,10.826958,10826.958 +11957,2025-03-08T11:54:45.363775-08:00,1007.1482543945312,10.841082,10841.082 +11958,2025-03-08T11:54:56.197450-08:00,1007.1336059570312,10.833675,10833.675 +11959,2025-03-08T11:55:07.034706-08:00,1007.13916015625,10.837256,10837.256 +11960,2025-03-08T11:55:17.874506-08:00,1007.1468505859375,10.8398,10839.8 +11961,2025-03-08T11:55:28.699553-08:00,1007.1325073242188,10.825047,10825.047 +11962,2025-03-08T11:55:39.537691-08:00,1007.145751953125,10.838138,10838.138 +11963,2025-03-08T11:55:50.380960-08:00,1007.13916015625,10.843269,10843.269 +11964,2025-03-08T11:56:01.220592-08:00,1007.120361328125,10.839632,10839.632 +11965,2025-03-08T11:56:12.059694-08:00,1007.1325073242188,10.839102,10839.102 +11966,2025-03-08T11:56:22.895713-08:00,1007.1259155273438,10.836019,10836.019 +11967,2025-03-08T11:56:33.730433-08:00,1007.13916015625,10.83472,10834.72 +11968,2025-03-08T11:56:44.567453-08:00,1007.1060791015625,10.83702,10837.02 +11969,2025-03-08T11:56:55.417615-08:00,1007.1416625976562,10.850162,10850.162 +11970,2025-03-08T11:57:06.252925-08:00,1007.1482543945312,10.83531,10835.31 +11971,2025-03-08T11:57:17.095708-08:00,1007.117919921875,10.842783,10842.783 +11972,2025-03-08T11:57:27.931458-08:00,1007.1193237304688,10.83575,10835.75 +11973,2025-03-08T11:57:38.770786-08:00,1007.12451171875,10.839328,10839.328 +11974,2025-03-08T11:57:49.614768-08:00,1007.120361328125,10.843982,10843.982 +11975,2025-03-08T11:58:00.446458-08:00,1007.0862426757812,10.83169,10831.69 +11976,2025-03-08T11:58:11.277341-08:00,1007.1336059570312,10.830883,10830.883 +11977,2025-03-08T11:58:22.114147-08:00,1007.120361328125,10.836806,10836.806 +11978,2025-03-08T11:58:32.951435-08:00,1007.1193237304688,10.837288,10837.288 +11979,2025-03-08T11:58:43.790597-08:00,1007.11376953125,10.839162,10839.162 +11980,2025-03-08T11:58:54.622460-08:00,1007.0873413085938,10.831863,10831.863 +11981,2025-03-08T11:59:05.460497-08:00,1007.0994262695312,10.838037,10838.037 +11982,2025-03-08T11:59:16.295783-08:00,1007.1259155273438,10.835286,10835.286 +11983,2025-03-08T11:59:27.130461-08:00,1007.1046752929688,10.834678,10834.678 +11984,2025-03-08T11:59:37.970747-08:00,1007.1112670898438,10.840286,10840.286 +11985,2025-03-08T11:59:48.803483-08:00,1007.1168212890625,10.832736,10832.736 +11986,2025-03-08T11:59:59.639455-08:00,1007.0914306640625,10.835972,10835.972 +11987,2025-03-08T12:00:10.471642-08:00,1007.083740234375,10.832187,10832.187 +11988,2025-03-08T12:00:21.308868-08:00,1007.069091796875,10.837226,10837.226 +11989,2025-03-08T12:00:32.152458-08:00,1007.0823364257812,10.84359,10843.59 +11990,2025-03-08T12:00:42.978929-08:00,1007.0812377929688,10.826471,10826.471 +11991,2025-03-08T12:00:53.810484-08:00,1007.0731811523438,10.831555,10831.555 +11992,2025-03-08T12:01:04.647704-08:00,1007.0839233398438,10.83722,10837.22 +11993,2025-03-08T12:01:15.479449-08:00,1007.06298828125,10.831745,10831.745 +11994,2025-03-08T12:01:26.318462-08:00,1007.0894775390625,10.839013,10839.013 +11995,2025-03-08T12:01:37.154980-08:00,1007.0538940429688,10.836518,10836.518 +11996,2025-03-08T12:01:48.001679-08:00,1007.0406494140625,10.846699,10846.699 +11997,2025-03-08T12:01:58.832454-08:00,1007.044677734375,10.830775,10830.775 +11998,2025-03-08T12:02:09.665916-08:00,1007.0869750976562,10.833462,10833.462 +11999,2025-03-08T12:02:20.503698-08:00,1007.0565795898438,10.837782,10837.782 +12000,2025-03-08T12:02:31.336675-08:00,1007.0645141601562,10.832977,10832.977 +12001,2025-03-08T12:02:42.162674-08:00,1007.04638671875,10.825999,10825.999 +12002,2025-03-08T12:02:53.004443-08:00,1007.0278930664062,10.841769,10841.769 +12003,2025-03-08T12:03:14.666456-08:00,1007.03857421875,21.662013,21662.013 +12004,2025-03-08T12:03:25.500846-08:00,1007.0055541992188,10.83439,10834.39 +12005,2025-03-08T12:03:36.337496-08:00,1007.063720703125,10.83665,10836.65 +12006,2025-03-08T12:03:47.173460-08:00,1007.0306396484375,10.835964,10835.964 +12007,2025-03-08T12:03:58.012803-08:00,1007.0360717773438,10.839343,10839.343 +12008,2025-03-08T12:04:08.844498-08:00,1007.025634765625,10.831695,10831.695 +12009,2025-03-08T12:04:19.676725-08:00,1007.0479736328125,10.832227,10832.227 +12010,2025-03-08T12:04:30.512734-08:00,1007.038818359375,10.836009,10836.009 +12011,2025-03-08T12:04:41.360454-08:00,1007.0443725585938,10.84772,10847.72 +12012,2025-03-08T12:04:52.192651-08:00,1007.0310668945312,10.832197,10832.197 +12013,2025-03-08T12:05:03.036504-08:00,1007.025634765625,10.843853,10843.853 +12014,2025-03-08T12:05:13.880581-08:00,1007.0363159179688,10.844077,10844.077 +12015,2025-03-08T12:05:24.718709-08:00,1007.0363159179688,10.838128,10838.128 +12016,2025-03-08T12:05:35.554639-08:00,1007.0087280273438,10.83593,10835.93 +12017,2025-03-08T12:05:46.400414-08:00,1007.0352172851562,10.845775,10845.775 +12018,2025-03-08T12:05:57.236471-08:00,1007.0459594726562,10.836057,10836.057 +12019,2025-03-08T12:06:08.082562-08:00,1007.011474609375,10.846091,10846.091 +12020,2025-03-08T12:06:18.915635-08:00,1007.026123046875,10.833073,10833.073 +12021,2025-03-08T12:06:29.757322-08:00,1007.0139770507812,10.841687,10841.687 +12022,2025-03-08T12:06:40.585575-08:00,1007.0037231445312,10.828253,10828.253 +12023,2025-03-08T12:06:51.431677-08:00,1007.0181274414062,10.846102,10846.102 +12024,2025-03-08T12:07:02.264318-08:00,1006.998291015625,10.832641,10832.641 +12025,2025-03-08T12:07:13.096960-08:00,1007.0023193359375,10.832642,10832.642 +12026,2025-03-08T12:07:23.940290-08:00,1007.0145263671875,10.84333,10843.33 +12027,2025-03-08T12:07:34.778322-08:00,1006.9671020507812,10.838032,10838.032 +12028,2025-03-08T12:07:45.614268-08:00,1007.001220703125,10.835946,10835.946 +12029,2025-03-08T12:07:56.446356-08:00,1006.988037109375,10.832088,10832.088 +12030,2025-03-08T12:08:07.276341-08:00,1006.9802856445312,10.829985,10829.985 +12031,2025-03-08T12:08:18.109886-08:00,1006.9802856445312,10.833545,10833.545 +12032,2025-03-08T12:08:28.951490-08:00,1007.0120239257812,10.841604,10841.604 +12033,2025-03-08T12:08:39.784471-08:00,1007.0001831054688,10.832981,10832.981 +12034,2025-03-08T12:08:50.616360-08:00,1007.0120239257812,10.831889,10831.889 +12035,2025-03-08T12:09:01.447539-08:00,1006.9921875,10.831179,10831.179 +12036,2025-03-08T12:09:12.291435-08:00,1006.95654296875,10.843896,10843.896 +12037,2025-03-08T12:09:23.118292-08:00,1006.998779296875,10.826857,10826.857 +12038,2025-03-08T12:09:33.953304-08:00,1006.9712524414062,10.835012,10835.012 +12039,2025-03-08T12:09:44.793190-08:00,1006.943359375,10.839886,10839.886 +12040,2025-03-08T12:09:55.634327-08:00,1006.964599609375,10.841137,10841.137 +12041,2025-03-08T12:10:06.472514-08:00,1006.9631958007812,10.838187,10838.187 +12042,2025-03-08T12:10:17.305159-08:00,1006.9620361328125,10.832645,10832.645 +12043,2025-03-08T12:10:28.134321-08:00,1006.9554443359375,10.829162,10829.162 +12044,2025-03-08T12:10:38.967666-08:00,1006.943359375,10.833345,10833.345 +12045,2025-03-08T12:10:49.803324-08:00,1006.9554443359375,10.835658,10835.658 +12046,2025-03-08T12:11:00.638598-08:00,1006.9356079101562,10.835274,10835.274 +12047,2025-03-08T12:11:11.463639-08:00,1006.9265747070312,10.825041,10825.041 +12048,2025-03-08T12:11:22.302315-08:00,1006.9198608398438,10.838676,10838.676 +12049,2025-03-08T12:11:33.138349-08:00,1006.9595336914062,10.836034,10836.034 +12050,2025-03-08T12:11:43.968682-08:00,1006.9342041015625,10.830333,10830.333 +12051,2025-03-08T12:11:54.796524-08:00,1006.9620361328125,10.827842,10827.842 +12052,2025-03-08T12:12:05.628552-08:00,1006.9382934570312,10.832028,10832.028 +12053,2025-03-08T12:12:16.468390-08:00,1006.939697265625,10.839838,10839.838 +12054,2025-03-08T12:12:27.303171-08:00,1006.9066162109375,10.834781,10834.781 +12055,2025-03-08T12:12:38.137331-08:00,1006.8867797851562,10.83416,10834.16 +12056,2025-03-08T12:12:48.981671-08:00,1006.9053344726562,10.84434,10844.34 +12057,2025-03-08T12:12:59.810321-08:00,1006.9382934570312,10.82865,10828.65 +12058,2025-03-08T12:13:10.647569-08:00,1006.939697265625,10.837248,10837.248 +12059,2025-03-08T12:13:21.496313-08:00,1006.9265747070312,10.848744,10848.744 +12060,2025-03-08T12:13:32.327993-08:00,1006.91845703125,10.83168,10831.68 +12061,2025-03-08T12:13:43.169316-08:00,1006.9265747070312,10.841323,10841.323 +12062,2025-03-08T12:13:54.012442-08:00,1006.8920288085938,10.843126,10843.126 +12063,2025-03-08T12:14:04.845404-08:00,1006.911865234375,10.832962,10832.962 +12064,2025-03-08T12:14:15.692690-08:00,1006.9143676757812,10.847286,10847.286 +12065,2025-03-08T12:14:26.535297-08:00,1006.915771484375,10.842607,10842.607 +12066,2025-03-08T12:14:37.367323-08:00,1006.915771484375,10.832026,10832.026 +12067,2025-03-08T12:14:48.210847-08:00,1006.9248657226562,10.843524,10843.524 +12068,2025-03-08T12:14:59.041396-08:00,1006.8970336914062,10.830549,10830.549 +12069,2025-03-08T12:15:09.881380-08:00,1006.912841796875,10.839984,10839.984 +12070,2025-03-08T12:15:20.717760-08:00,1006.9326782226562,10.83638,10836.38 +12071,2025-03-08T12:15:31.544548-08:00,1006.8929443359375,10.826788,10826.788 +12072,2025-03-08T12:15:42.387508-08:00,1006.8786010742188,10.84296,10842.96 +12073,2025-03-08T12:15:53.227557-08:00,1006.915283203125,10.840049,10840.049 +12074,2025-03-08T12:16:04.066575-08:00,1006.9031372070312,10.839018,10839.018 +12075,2025-03-08T12:16:14.893296-08:00,1006.8822021484375,10.826721,10826.721 +12076,2025-03-08T12:16:25.724318-08:00,1006.8990478515625,10.831022,10831.022 +12077,2025-03-08T12:16:36.561326-08:00,1006.9056396484375,10.837008,10837.008 +12078,2025-03-08T12:16:47.392920-08:00,1006.8781127929688,10.831594,10831.594 +12079,2025-03-08T12:16:58.236318-08:00,1006.9081420898438,10.843398,10843.398 +12080,2025-03-08T12:17:09.066721-08:00,1006.8990478515625,10.830403,10830.403 +12081,2025-03-08T12:17:19.894443-08:00,1006.8948974609375,10.827722,10827.722 +12082,2025-03-08T12:17:30.733321-08:00,1006.8817138671875,10.838878,10838.878 +12083,2025-03-08T12:17:41.574740-08:00,1006.88720703125,10.841419,10841.419 +12084,2025-03-08T12:17:52.413318-08:00,1006.917236328125,10.838578,10838.578 +12085,2025-03-08T12:18:03.254296-08:00,1006.8963012695312,10.840978,10840.978 +12086,2025-03-08T12:18:14.083666-08:00,1006.918701171875,10.82937,10829.37 +12087,2025-03-08T12:18:24.923321-08:00,1006.9227905273438,10.839655,10839.655 +12088,2025-03-08T12:18:35.755588-08:00,1006.9161987304688,10.832267,10832.267 +12089,2025-03-08T12:18:46.590364-08:00,1006.875,10.834776,10834.776 +12090,2025-03-08T12:18:57.431323-08:00,1006.9451293945312,10.840959,10840.959 +12091,2025-03-08T12:19:08.275635-08:00,1006.8963012695312,10.844312,10844.312 +12092,2025-03-08T12:19:19.107324-08:00,1006.8988037109375,10.831689,10831.689 +12093,2025-03-08T12:19:29.943323-08:00,1006.8988037109375,10.835999,10835.999 +12094,2025-03-08T12:19:40.784317-08:00,1006.8618774414062,10.840994,10840.994 +12095,2025-03-08T12:19:51.624491-08:00,1006.8775024414062,10.840174,10840.174 +12096,2025-03-08T12:20:02.467735-08:00,1006.8709106445312,10.843244,10843.244 +12097,2025-03-08T12:20:13.308937-08:00,1006.8856201171875,10.841202,10841.202 +12098,2025-03-08T12:20:24.142660-08:00,1006.89990234375,10.833723,10833.723 +12099,2025-03-08T12:20:34.986432-08:00,1006.872314453125,10.843772,10843.772 +12100,2025-03-08T12:20:45.813321-08:00,1006.857666015625,10.826889,10826.889 +12101,2025-03-08T12:20:56.655453-08:00,1006.9065551757812,10.842132,10842.132 +12102,2025-03-08T12:21:07.490371-08:00,1006.8831176757812,10.834918,10834.918 +12103,2025-03-08T12:21:18.330385-08:00,1006.87890625,10.840014,10840.014 +12104,2025-03-08T12:21:29.164855-08:00,1006.8831176757812,10.83447,10834.47 +12105,2025-03-08T12:21:40.009950-08:00,1006.8817138671875,10.845095,10845.095 +12106,2025-03-08T12:21:50.851319-08:00,1006.869873046875,10.841369,10841.369 +12107,2025-03-08T12:22:01.695316-08:00,1006.8474731445312,10.843997,10843.997 +12108,2025-03-08T12:22:12.537650-08:00,1006.8499755859375,10.842334,10842.334 +12109,2025-03-08T12:22:23.376284-08:00,1006.8287353515625,10.838634,10838.634 +12110,2025-03-08T12:22:34.213621-08:00,1006.8395385742188,10.837337,10837.337 +12111,2025-03-08T12:22:45.056379-08:00,1006.8526611328125,10.842758,10842.758 +12112,2025-03-08T12:22:55.891611-08:00,1006.8395385742188,10.835232,10835.232 +12113,2025-03-08T12:23:04.746063-08:00,1006.817138671875,8.854452,8854.452 +12114,2025-03-08T12:23:06.720323-08:00,1006.8317260742188,1.97426,1974.26 +12115,2025-03-08T12:23:17.556865-08:00,1006.8384399414062,10.836542,10836.542 +12116,2025-03-08T12:23:28.393385-08:00,1006.8317260742188,10.83652,10836.52 +12117,2025-03-08T12:23:39.242474-08:00,1006.8317260742188,10.849089,10849.089 +12118,2025-03-08T12:23:50.077373-08:00,1006.817138671875,10.834899,10834.899 +12119,2025-03-08T12:24:00.922699-08:00,1006.8317260742188,10.845326,10845.326 +12120,2025-03-08T12:24:11.766878-08:00,1006.81298828125,10.844179,10844.179 +12121,2025-03-08T12:24:22.599313-08:00,1006.796142578125,10.832435,10832.435 +12122,2025-03-08T12:24:33.437781-08:00,1006.8220825195312,10.838468,10838.468 +12123,2025-03-08T12:24:44.285911-08:00,1006.774658203125,10.84813,10848.13 +12124,2025-03-08T12:24:55.124311-08:00,1006.810302734375,10.8384,10838.4 +12125,2025-03-08T12:25:05.966521-08:00,1006.7771606445312,10.84221,10842.21 +12126,2025-03-08T12:25:16.803119-08:00,1006.7915649414062,10.836598,10836.598 +12127,2025-03-08T12:25:27.644382-08:00,1006.7771606445312,10.841263,10841.263 +12128,2025-03-08T12:25:38.484530-08:00,1006.7771606445312,10.840148,10840.148 +12129,2025-03-08T12:25:49.316823-08:00,1006.799560546875,10.832293,10832.293 +12130,2025-03-08T12:26:00.151365-08:00,1006.775634765625,10.834542,10834.542 +12131,2025-03-08T12:26:10.995321-08:00,1006.739990234375,10.843956,10843.956 +12132,2025-03-08T12:26:21.833387-08:00,1006.7742309570312,10.838066,10838.066 +12133,2025-03-08T12:26:32.682660-08:00,1006.7557983398438,10.849273,10849.273 +12134,2025-03-08T12:26:43.513593-08:00,1006.7424926757812,10.830933,10830.933 +12135,2025-03-08T12:26:54.346355-08:00,1006.7767333984375,10.832762,10832.762 +12136,2025-03-08T12:27:05.188597-08:00,1006.7700805664062,10.842242,10842.242 +12137,2025-03-08T12:27:16.026326-08:00,1006.7304077148438,10.837729,10837.729 +12138,2025-03-08T12:27:26.867375-08:00,1006.78466796875,10.841049,10841.049 +12139,2025-03-08T12:27:37.706631-08:00,1006.7435913085938,10.839256,10839.256 +12140,2025-03-08T12:27:48.544486-08:00,1006.75830078125,10.837855,10837.855 +12141,2025-03-08T12:27:59.376642-08:00,1006.7725830078125,10.832156,10832.156 +12142,2025-03-08T12:28:10.213870-08:00,1006.7449951171875,10.837228,10837.228 +12143,2025-03-08T12:28:21.045320-08:00,1006.7039184570312,10.83145,10831.45 +12144,2025-03-08T12:28:31.886320-08:00,1006.7105712890625,10.841,10841.0 +12145,2025-03-08T12:28:42.718980-08:00,1006.72265625,10.83266,10832.66 +12146,2025-03-08T12:28:53.559353-08:00,1006.7359619140625,10.840373,10840.373 +12147,2025-03-08T12:29:04.392908-08:00,1006.716064453125,10.833555,10833.555 +12148,2025-03-08T12:29:15.233841-08:00,1006.7279052734375,10.840933,10840.933 +12149,2025-03-08T12:29:26.082689-08:00,1006.7028198242188,10.848848,10848.848 +12150,2025-03-08T12:29:36.913325-08:00,1006.6937255859375,10.830636,10830.636 +12151,2025-03-08T12:29:47.755682-08:00,1006.701416015625,10.842357,10842.357 +12152,2025-03-08T12:29:58.598847-08:00,1006.737060546875,10.843165,10843.165 +12153,2025-03-08T12:30:09.428317-08:00,1006.7700805664062,10.82947,10829.47 +12154,2025-03-08T12:30:20.269324-08:00,1006.7293090820312,10.841007,10841.007 +12155,2025-03-08T12:30:31.110673-08:00,1006.7293090820312,10.841349,10841.349 +12156,2025-03-08T12:30:41.942472-08:00,1006.7293090820312,10.831799,10831.799 +12157,2025-03-08T12:30:52.775381-08:00,1006.7345581054688,10.832909,10832.909 +12158,2025-03-08T12:31:03.609839-08:00,1006.737060546875,10.834458,10834.458 +12159,2025-03-08T12:31:14.443316-08:00,1006.7080688476562,10.833477,10833.477 +12160,2025-03-08T12:31:25.281249-08:00,1006.7080688476562,10.837933,10837.933 +12161,2025-03-08T12:31:36.113371-08:00,1006.7212524414062,10.832122,10832.122 +12162,2025-03-08T12:31:46.949869-08:00,1006.7279052734375,10.836498,10836.498 +12163,2025-03-08T12:31:57.780321-08:00,1006.701416015625,10.830452,10830.452 +12164,2025-03-08T12:32:08.613402-08:00,1006.7146606445312,10.833081,10833.081 +12165,2025-03-08T12:32:19.439322-08:00,1006.7003173828125,10.82592,10825.92 +12166,2025-03-08T12:32:30.277326-08:00,1006.712158203125,10.838004,10838.004 +12167,2025-03-08T12:32:41.115350-08:00,1006.6846313476562,10.838024,10838.024 +12168,2025-03-08T12:32:51.959367-08:00,1006.6724853515625,10.844017,10844.017 +12169,2025-03-08T12:33:02.784591-08:00,1006.726806640625,10.825224,10825.224 +12170,2025-03-08T12:33:13.109083-08:00,1006.7003173828125,10.324492,10324.492 +12171,2025-03-08T12:33:13.622727-08:00,1006.6923217773438,0.513644,513.644 +12172,2025-03-08T12:33:24.464662-08:00,1006.6369018554688,10.841935,10841.935 +12173,2025-03-08T12:33:35.294433-08:00,1006.650146484375,10.829771,10829.771 +12174,2025-03-08T12:33:46.139747-08:00,1006.6804809570312,10.845314,10845.314 +12175,2025-03-08T12:33:56.970551-08:00,1006.6434936523438,10.830804,10830.804 +12176,2025-03-08T12:34:07.803496-08:00,1006.664794921875,10.832945,10832.945 +12177,2025-03-08T12:34:18.638443-08:00,1006.6515502929688,10.834947,10834.947 +12178,2025-03-08T12:34:29.473640-08:00,1006.6515502929688,10.835197,10835.197 +12179,2025-03-08T12:34:40.309636-08:00,1006.6459350585938,10.835996,10835.996 +12180,2025-03-08T12:34:51.145292-08:00,1006.639404296875,10.835656,10835.656 +12181,2025-03-08T12:35:01.977647-08:00,1006.6484375,10.832355,10832.355 +12182,2025-03-08T12:35:12.816650-08:00,1006.66064453125,10.839003,10839.003 +12183,2025-03-08T12:35:23.652353-08:00,1006.6484375,10.835703,10835.703 +12184,2025-03-08T12:35:34.494309-08:00,1006.6473388671875,10.841956,10841.956 +12185,2025-03-08T12:35:45.328837-08:00,1006.6473388671875,10.834528,10834.528 +12186,2025-03-08T12:35:56.170313-08:00,1006.6220092773438,10.841476,10841.476 +12187,2025-03-08T12:36:07.009326-08:00,1006.6275024414062,10.839013,10839.013 +12188,2025-03-08T12:36:17.850365-08:00,1006.6286010742188,10.841039,10841.039 +12189,2025-03-08T12:36:28.689795-08:00,1006.6062622070312,10.83943,10839.43 +12190,2025-03-08T12:36:39.522328-08:00,1006.6087646484375,10.832533,10832.533 +12191,2025-03-08T12:36:50.359249-08:00,1006.594482421875,10.836921,10836.921 +12192,2025-03-08T12:37:01.205590-08:00,1006.6220092773438,10.846341,10846.341 +12193,2025-03-08T12:37:12.036321-08:00,1006.596923828125,10.830731,10830.731 +12194,2025-03-08T12:37:22.874428-08:00,1006.6275024414062,10.838107,10838.107 +12195,2025-03-08T12:37:33.710296-08:00,1006.6286010742188,10.835868,10835.868 +12196,2025-03-08T12:37:44.545499-08:00,1006.6021728515625,10.835203,10835.203 +12197,2025-03-08T12:37:55.382091-08:00,1006.6286010742188,10.836592,10836.592 +12198,2025-03-08T12:38:06.216302-08:00,1006.6220092773438,10.834211,10834.211 +12199,2025-03-08T12:38:17.051658-08:00,1006.5731811523438,10.835356,10835.356 +12200,2025-03-08T12:38:27.893584-08:00,1006.6328125,10.841926,10841.926 +12201,2025-03-08T12:38:38.725316-08:00,1006.6118774414062,10.831732,10831.732 +12202,2025-03-08T12:38:49.567326-08:00,1006.618408203125,10.84201,10842.01 +12203,2025-03-08T12:39:00.404574-08:00,1006.6129760742188,10.837248,10837.248 +12204,2025-03-08T12:39:11.242731-08:00,1006.6129760742188,10.838157,10838.157 +12205,2025-03-08T12:39:22.081466-08:00,1006.607666015625,10.838735,10838.735 +12206,2025-03-08T12:39:32.918707-08:00,1006.5812377929688,10.837241,10837.241 +12207,2025-03-08T12:39:43.760611-08:00,1006.583740234375,10.841904,10841.904 +12208,2025-03-08T12:39:54.594447-08:00,1006.5812377929688,10.833836,10833.836 +12209,2025-03-08T12:40:05.424940-08:00,1006.5770874023438,10.830493,10830.493 +12210,2025-03-08T12:40:16.264322-08:00,1006.6112670898438,10.839382,10839.382 +12211,2025-03-08T12:40:27.089854-08:00,1006.6112670898438,10.825532,10825.532 +12212,2025-03-08T12:40:37.930531-08:00,1006.6060791015625,10.840677,10840.677 +12213,2025-03-08T12:40:48.769526-08:00,1006.572998046875,10.838995,10838.995 +12214,2025-03-08T12:40:59.594709-08:00,1006.5675048828125,10.825183,10825.183 +12215,2025-03-08T12:41:10.426558-08:00,1006.5887451171875,10.831849,10831.849 +12216,2025-03-08T12:41:21.264556-08:00,1006.5912475585938,10.837998,10837.998 +12217,2025-03-08T12:41:32.104370-08:00,1006.5912475585938,10.839814,10839.814 +12218,2025-03-08T12:41:42.933053-08:00,1006.5515747070312,10.828683,10828.683 +12219,2025-03-08T12:41:53.770190-08:00,1006.5658569335938,10.837137,10837.137 +12220,2025-03-08T12:42:04.603588-08:00,1006.5382690429688,10.833398,10833.398 +12221,2025-03-08T12:42:15.429639-08:00,1006.5537719726562,10.826051,10826.051 +12222,2025-03-08T12:42:26.265321-08:00,1006.51953125,10.835682,10835.682 +12223,2025-03-08T12:42:37.105455-08:00,1006.505126953125,10.840134,10840.134 +12224,2025-03-08T12:42:47.941897-08:00,1006.5139770507812,10.836442,10836.442 +12225,2025-03-08T12:42:58.778382-08:00,1006.502197265625,10.836485,10836.485 +12226,2025-03-08T12:43:09.605473-08:00,1006.5164794921875,10.827091,10827.091 +12227,2025-03-08T12:43:20.440752-08:00,1006.4966430664062,10.835279,10835.279 +12228,2025-03-08T12:43:31.267494-08:00,1006.489990234375,10.826742,10826.742 +12229,2025-03-08T12:43:42.103946-08:00,1006.498046875,10.836452,10836.452 +12230,2025-03-08T12:43:52.946317-08:00,1006.4650268554688,10.842371,10842.371 +12231,2025-03-08T12:44:03.776547-08:00,1006.47265625,10.83023,10830.23 +12232,2025-03-08T12:44:14.615635-08:00,1006.466064453125,10.839088,10839.088 +12233,2025-03-08T12:44:25.459323-08:00,1006.4607543945312,10.843688,10843.688 +12234,2025-03-08T12:44:36.290854-08:00,1006.4806518554688,10.831531,10831.531 +12235,2025-03-08T12:44:47.129087-08:00,1006.4806518554688,10.838233,10838.233 +12236,2025-03-08T12:44:57.971317-08:00,1006.4740600585938,10.84223,10842.23 +12237,2025-03-08T12:45:08.804278-08:00,1006.4685668945312,10.832961,10832.961 +12238,2025-03-08T12:45:19.636511-08:00,1006.4841918945312,10.832233,10832.233 +12239,2025-03-08T12:45:30.456671-08:00,1006.4354858398438,10.82016,10820.16 +12240,2025-03-08T12:45:41.298666-08:00,1006.455322265625,10.841995,10841.995 +12241,2025-03-08T12:45:52.128369-08:00,1006.4632568359375,10.829703,10829.703 +12242,2025-03-08T12:46:02.960052-08:00,1006.427734375,10.831683,10831.683 +12243,2025-03-08T12:46:13.796319-08:00,1006.4089965820312,10.836267,10836.267 +12244,2025-03-08T12:46:24.631433-08:00,1006.4302368164062,10.835114,10835.114 +12245,2025-03-08T12:46:35.463838-08:00,1006.4089965820312,10.832405,10832.405 +12246,2025-03-08T12:46:46.301315-08:00,1006.4313354492188,10.837477,10837.477 +12247,2025-03-08T12:46:57.131727-08:00,1006.40625,10.830412,10830.412 +12248,2025-03-08T12:47:07.965449-08:00,1006.4404907226562,10.833722,10833.722 +12249,2025-03-08T12:47:18.801593-08:00,1006.4129028320312,10.836144,10836.144 +12250,2025-03-08T12:47:29.640638-08:00,1006.3929443359375,10.839045,10839.045 +12251,2025-03-08T12:47:40.471402-08:00,1006.4404907226562,10.830764,10830.764 +12252,2025-03-08T12:47:51.302649-08:00,1006.39404296875,10.831247,10831.247 +12253,2025-03-08T12:48:02.139566-08:00,1006.4220581054688,10.836917,10836.917 +12254,2025-03-08T12:48:12.973316-08:00,1006.4021606445312,10.83375,10833.75 +12255,2025-03-08T12:48:23.804296-08:00,1006.4163818359375,10.83098,10830.98 +12256,2025-03-08T12:48:34.640330-08:00,1006.4021606445312,10.836034,10836.034 +12257,2025-03-08T12:48:45.477888-08:00,1006.4177856445312,10.837558,10837.558 +12258,2025-03-08T12:48:56.315532-08:00,1006.3965454101562,10.837644,10837.644 +12259,2025-03-08T12:49:07.159317-08:00,1006.4296875,10.843785,10843.785 +12260,2025-03-08T12:49:17.991885-08:00,1006.423095703125,10.832568,10832.568 +12261,2025-03-08T12:49:28.822290-08:00,1006.4021606445312,10.830405,10830.405 +12262,2025-03-08T12:49:39.652466-08:00,1006.44189453125,10.830176,10830.176 +12263,2025-03-08T12:49:50.492446-08:00,1006.4021606445312,10.83998,10839.98 +12264,2025-03-08T12:50:01.318326-08:00,1006.3822631835938,10.82588,10825.88 +12265,2025-03-08T12:50:12.157967-08:00,1006.388916015625,10.839641,10839.641 +12266,2025-03-08T12:50:22.991318-08:00,1006.3929443359375,10.833351,10833.351 +12267,2025-03-08T12:50:33.823382-08:00,1006.3798217773438,10.832064,10832.064 +12268,2025-03-08T12:50:44.654958-08:00,1006.385009765625,10.831576,10831.576 +12269,2025-03-08T12:50:55.487552-08:00,1006.37060546875,10.832594,10832.594 +12270,2025-03-08T12:51:06.324603-08:00,1006.3640747070312,10.837051,10837.051 +12271,2025-03-08T12:51:17.155328-08:00,1006.3773193359375,10.830725,10830.725 +12272,2025-03-08T12:51:27.993324-08:00,1006.3773193359375,10.837996,10837.996 +12273,2025-03-08T12:51:38.826392-08:00,1006.3453369140625,10.833068,10833.068 +12274,2025-03-08T12:51:49.661430-08:00,1006.37841796875,10.835038,10835.038 +12275,2025-03-08T12:52:00.495710-08:00,1006.33203125,10.83428,10834.28 +12276,2025-03-08T12:52:11.319314-08:00,1006.34423828125,10.823604,10823.604 +12277,2025-03-08T12:52:22.158768-08:00,1006.34423828125,10.839454,10839.454 +12278,2025-03-08T12:52:32.995453-08:00,1006.3507690429688,10.836685,10836.685 +12279,2025-03-08T12:52:43.828517-08:00,1006.3096923828125,10.833064,10833.064 +12280,2025-03-08T12:52:54.670668-08:00,1006.3309326171875,10.842151,10842.151 +12281,2025-03-08T12:53:05.494558-08:00,1006.3045043945312,10.82389,10823.89 +12282,2025-03-08T12:53:16.334309-08:00,1006.3177490234375,10.839751,10839.751 +12283,2025-03-08T12:53:27.167358-08:00,1006.3045043945312,10.833049,10833.049 +12284,2025-03-08T12:53:38.003377-08:00,1006.2990112304688,10.836019,10836.019 +12285,2025-03-08T12:53:48.834185-08:00,1006.291259765625,10.830808,10830.808 +12286,2025-03-08T12:53:59.672313-08:00,1006.3031005859375,10.838128,10838.128 +12287,2025-03-08T12:54:10.503322-08:00,1006.3056030273438,10.831009,10831.009 +12288,2025-03-08T12:54:21.343479-08:00,1006.3056030273438,10.840157,10840.157 +12289,2025-03-08T12:54:32.179468-08:00,1006.2791137695312,10.835989,10835.989 +12290,2025-03-08T12:54:43.015439-08:00,1006.2871704101562,10.835971,10835.971 +12291,2025-03-08T12:54:53.851878-08:00,1006.27392578125,10.836439,10836.439 +12292,2025-03-08T12:55:04.688312-08:00,1006.2815551757812,10.836434,10836.434 +12293,2025-03-08T12:55:15.515687-08:00,1006.2882690429688,10.827375,10827.375 +12294,2025-03-08T12:55:26.343317-08:00,1006.2896728515625,10.82763,10827.63 +12295,2025-03-08T12:55:37.181642-08:00,1006.2962646484375,10.838325,10838.325 +12296,2025-03-08T12:55:48.011539-08:00,1006.2775268554688,10.829897,10829.897 +12297,2025-03-08T12:55:58.839321-08:00,1006.2642211914062,10.827782,10827.782 +12298,2025-03-08T12:56:09.675413-08:00,1006.2642211914062,10.836092,10836.092 +12299,2025-03-08T12:56:20.514347-08:00,1006.269775390625,10.838934,10838.934 +12300,2025-03-08T12:56:31.343581-08:00,1006.2722778320312,10.829234,10829.234 +12301,2025-03-08T12:56:42.180308-08:00,1006.2775268554688,10.836727,10836.727 +12302,2025-03-08T12:56:53.018379-08:00,1006.265625,10.838071,10838.071 +12303,2025-03-08T12:57:03.853612-08:00,1006.2722778320312,10.835233,10835.233 +12304,2025-03-08T12:57:14.688319-08:00,1006.259033203125,10.834707,10834.707 +12305,2025-03-08T12:57:25.531549-08:00,1006.25244140625,10.84323,10843.23 +12306,2025-03-08T12:57:36.368621-08:00,1006.2245483398438,10.837072,10837.072 +12307,2025-03-08T12:57:47.200315-08:00,1006.259033203125,10.831694,10831.694 +12308,2025-03-08T12:57:58.048321-08:00,1006.2326049804688,10.848006,10848.006 +12309,2025-03-08T12:58:08.876443-08:00,1006.2391967773438,10.828122,10828.122 +12310,2025-03-08T12:58:19.713795-08:00,1006.2576293945312,10.837352,10837.352 +12311,2025-03-08T12:58:30.544734-08:00,1006.2615356445312,10.830939,10830.939 +12312,2025-03-08T12:58:41.371318-08:00,1006.2245483398438,10.826584,10826.584 +12313,2025-03-08T12:58:52.207439-08:00,1006.244384765625,10.836121,10836.121 +12314,2025-03-08T12:59:03.040337-08:00,1006.2113037109375,10.832898,10832.898 +12315,2025-03-08T12:59:13.874333-08:00,1006.2168579101562,10.833996,10833.996 +12316,2025-03-08T12:59:24.704627-08:00,1006.210205078125,10.830294,10830.294 +12317,2025-03-08T12:59:35.536321-08:00,1006.231201171875,10.831694,10831.694 +12318,2025-03-08T12:59:46.373323-08:00,1006.2391967773438,10.837002,10837.002 +12319,2025-03-08T12:59:57.215963-08:00,1006.1981201171875,10.84264,10842.64 +12320,2025-03-08T13:00:08.051321-08:00,1006.1928100585938,10.835358,10835.358 +12321,2025-03-08T13:00:18.891515-08:00,1006.1981201171875,10.840194,10840.194 +12322,2025-03-08T13:00:29.714491-08:00,1006.184814453125,10.822976,10822.976 +12323,2025-03-08T13:00:40.547318-08:00,1006.1953125,10.832827,10832.827 +12324,2025-03-08T13:00:51.376322-08:00,1006.1981201171875,10.829004,10829.004 +12325,2025-03-08T13:01:02.210897-08:00,1006.1597900390625,10.834575,10834.575 +12326,2025-03-08T13:01:13.045806-08:00,1006.1729736328125,10.834909,10834.909 +12327,2025-03-08T13:01:23.881507-08:00,1006.2061157226562,10.835701,10835.701 +12328,2025-03-08T13:01:34.714763-08:00,1006.174072265625,10.833256,10833.256 +12329,2025-03-08T13:01:45.551370-08:00,1006.1451416015625,10.836607,10836.607 +12330,2025-03-08T13:01:56.387474-08:00,1006.1384887695312,10.836104,10836.104 +12331,2025-03-08T13:02:07.224602-08:00,1006.1649780273438,10.837128,10837.128 +12332,2025-03-08T13:02:18.053769-08:00,1006.1542358398438,10.829167,10829.167 +12333,2025-03-08T13:02:28.894957-08:00,1006.1409912109375,10.841188,10841.188 +12334,2025-03-08T13:02:39.731668-08:00,1006.1465454101562,10.836711,10836.711 +12335,2025-03-08T13:02:50.562892-08:00,1006.174072265625,10.831224,10831.224 +12336,2025-03-08T13:03:01.395660-08:00,1006.11865234375,10.832768,10832.768 +12337,2025-03-08T13:03:12.232476-08:00,1006.16748046875,10.836816,10836.816 +12338,2025-03-08T13:03:23.063323-08:00,1006.13330078125,10.830847,10830.847 +12339,2025-03-08T13:03:33.895913-08:00,1006.1253051757812,10.83259,10832.59 +12340,2025-03-08T13:03:44.733319-08:00,1006.0845336914062,10.837406,10837.406 +12341,2025-03-08T13:03:55.565606-08:00,1006.1253051757812,10.832287,10832.287 +12342,2025-03-08T13:04:06.393324-08:00,1006.1531372070312,10.827718,10827.718 +12343,2025-03-08T13:04:17.234316-08:00,1006.10546875,10.840992,10840.992 +12344,2025-03-08T13:04:28.066051-08:00,1006.0921630859375,10.831735,10831.735 +12345,2025-03-08T13:04:38.901342-08:00,1006.1079711914062,10.835291,10835.291 +12346,2025-03-08T13:04:49.735584-08:00,1006.1134643554688,10.834242,10834.242 +12347,2025-03-08T13:05:00.571456-08:00,1006.0935668945312,10.835872,10835.872 +12348,2025-03-08T13:05:11.402501-08:00,1006.1068725585938,10.831045,10831.045 +12349,2025-03-08T13:05:22.240579-08:00,1006.1068725585938,10.838078,10838.078 +12350,2025-03-08T13:05:33.072525-08:00,1006.0856323242188,10.831946,10831.946 +12351,2025-03-08T13:05:43.975097-08:00,1006.0935668945312,10.902572,10902.572 +12352,2025-03-08T13:05:54.808152-08:00,1006.0657958984375,10.833055,10833.055 +12353,2025-03-08T13:06:05.644355-08:00,1006.0604858398438,10.836203,10836.203 +12354,2025-03-08T13:06:16.487059-08:00,1006.0870361328125,10.842704,10842.704 +12355,2025-03-08T13:06:27.313505-08:00,1006.0803833007812,10.826446,10826.446 +12356,2025-03-08T13:06:38.150877-08:00,1006.0921630859375,10.837372,10837.372 +12357,2025-03-08T13:06:48.992469-08:00,1006.0921630859375,10.841592,10841.592 +12358,2025-03-08T13:06:59.830795-08:00,1006.0870361328125,10.838326,10838.326 +12359,2025-03-08T13:07:10.660922-08:00,1006.064697265625,10.830127,10830.127 +12360,2025-03-08T13:07:21.493431-08:00,1006.0870361328125,10.832509,10832.509 +12361,2025-03-08T13:07:32.337024-08:00,1006.126708984375,10.843593,10843.593 +12362,2025-03-08T13:07:43.169887-08:00,1006.0988159179688,10.832863,10832.863 +12363,2025-03-08T13:07:54.012397-08:00,1006.0845336914062,10.84251,10842.51 +12364,2025-03-08T13:08:04.842871-08:00,1006.0856323242188,10.830474,10830.474 +12365,2025-03-08T13:08:15.676880-08:00,1006.0789794921875,10.834009,10834.009 +12366,2025-03-08T13:08:26.514622-08:00,1006.0712280273438,10.837742,10837.742 +12367,2025-03-08T13:08:37.340289-08:00,1006.088134765625,10.825667,10825.667 +12368,2025-03-08T13:08:48.183709-08:00,1006.052490234375,10.84342,10843.42 +12369,2025-03-08T13:08:59.018878-08:00,1006.0580444335938,10.835169,10835.169 +12370,2025-03-08T13:09:09.851382-08:00,1006.0682983398438,10.832504,10832.504 +12371,2025-03-08T13:09:20.683119-08:00,1006.020751953125,10.831737,10831.737 +12372,2025-03-08T13:09:31.523204-08:00,1006.0009155273438,10.840085,10840.085 +12373,2025-03-08T13:09:42.352876-08:00,1006.0050659179688,10.829672,10829.672 +12374,2025-03-08T13:09:53.194917-08:00,1005.9810791015625,10.842041,10842.041 +12375,2025-03-08T13:10:04.021110-08:00,1005.9835815429688,10.826193,10826.193 +12376,2025-03-08T13:10:14.858260-08:00,1005.9877319335938,10.83715,10837.15 +12377,2025-03-08T13:10:25.700991-08:00,1006.007568359375,10.842731,10842.731 +12378,2025-03-08T13:10:36.538082-08:00,1005.9810791015625,10.837091,10837.091 +12379,2025-03-08T13:10:47.367165-08:00,1005.994384765625,10.829083,10829.083 +12380,2025-03-08T13:10:58.201203-08:00,1005.982177734375,10.834038,10834.038 +12381,2025-03-08T13:11:09.034193-08:00,1005.9888305664062,10.83299,10832.99 +12382,2025-03-08T13:11:19.877718-08:00,1005.9888305664062,10.843525,10843.525 +12383,2025-03-08T13:11:30.699933-08:00,1005.994384765625,10.822215,10822.215 +12384,2025-03-08T13:11:41.540866-08:00,1005.9968872070312,10.840933,10840.933 +12385,2025-03-08T13:11:52.361870-08:00,1006.0020141601562,10.821004,10821.004 +12386,2025-03-08T13:12:03.194678-08:00,1006.0167236328125,10.832808,10832.808 +12387,2025-03-08T13:12:14.025057-08:00,1005.982177734375,10.830379,10830.379 +12388,2025-03-08T13:12:24.850790-08:00,1006.0111083984375,10.825733,10825.733 +12389,2025-03-08T13:12:35.682248-08:00,1006.0243530273438,10.831458,10831.458 +12390,2025-03-08T13:12:46.519890-08:00,1005.9756469726562,10.837642,10837.642 +12391,2025-03-08T13:12:57.350931-08:00,1005.9968872070312,10.831041,10831.041 +12392,2025-03-08T13:13:08.185314-08:00,1005.9901733398438,10.834383,10834.383 +12393,2025-03-08T13:13:19.027420-08:00,1006.031005859375,10.842106,10842.106 +12394,2025-03-08T13:13:29.858872-08:00,1006.020263671875,10.831452,10831.452 +12395,2025-03-08T13:13:40.691054-08:00,1006.0323486328125,10.832182,10832.182 +12396,2025-03-08T13:13:51.516130-08:00,1006.0059204101562,10.825076,10825.076 +12397,2025-03-08T13:14:02.341754-08:00,1005.9912719726562,10.825624,10825.624 +12398,2025-03-08T13:14:13.178209-08:00,1006.0125122070312,10.836455,10836.455 +12399,2025-03-08T13:14:24.005859-08:00,1006.017822265625,10.82765,10827.65 +12400,2025-03-08T13:14:34.838104-08:00,1006.0111083984375,10.832245,10832.245 +12401,2025-03-08T13:14:45.673874-08:00,1006.00341796875,10.83577,10835.77 +12402,2025-03-08T13:14:56.501029-08:00,1006.0100708007812,10.827155,10827.155 +12403,2025-03-08T13:15:07.323880-08:00,1006.0086669921875,10.822851,10822.851 +12404,2025-03-08T13:15:18.157015-08:00,1005.9968872070312,10.833135,10833.135 +12405,2025-03-08T13:15:28.990178-08:00,1006.0218505859375,10.833163,10833.163 +12406,2025-03-08T13:15:39.820441-08:00,1006.0009155273438,10.830263,10830.263 +12407,2025-03-08T13:15:50.664016-08:00,1006.0100708007812,10.843575,10843.575 +12408,2025-03-08T13:16:01.491165-08:00,1006.0431518554688,10.827149,10827.149 +12409,2025-03-08T13:16:12.327921-08:00,1006.0218505859375,10.836756,10836.756 +12410,2025-03-08T13:16:23.149223-08:00,1005.994384765625,10.821302,10821.302 +12411,2025-03-08T13:16:33.991416-08:00,1005.9888305664062,10.842193,10842.193 +12412,2025-03-08T13:16:44.817121-08:00,1006.0009155273438,10.825705,10825.705 +12413,2025-03-08T13:16:55.650229-08:00,1006.020751953125,10.833108,10833.108 +12414,2025-03-08T13:17:06.486874-08:00,1005.994384765625,10.836645,10836.645 +12415,2025-03-08T13:17:17.317249-08:00,1006.0218505859375,10.830375,10830.375 +12416,2025-03-08T13:17:28.144310-08:00,1006.0153198242188,10.827061,10827.061 +12417,2025-03-08T13:17:38.981877-08:00,1005.99951171875,10.837567,10837.567 +12418,2025-03-08T13:17:49.823190-08:00,1005.9703369140625,10.841313,10841.313 +12419,2025-03-08T13:18:00.656028-08:00,1006.0100708007812,10.832838,10832.838 +12420,2025-03-08T13:18:11.488190-08:00,1005.9756469726562,10.832162,10832.162 +12421,2025-03-08T13:18:22.313868-08:00,1005.9846801757812,10.825678,10825.678 +12422,2025-03-08T13:18:33.149857-08:00,1005.9901733398438,10.835989,10835.989 +12423,2025-03-08T13:18:43.986174-08:00,1005.971435546875,10.836317,10836.317 +12424,2025-03-08T13:18:54.823275-08:00,1005.9954833984375,10.837101,10837.101 +12425,2025-03-08T13:19:05.657160-08:00,1005.9835815429688,10.833885,10833.885 +12426,2025-03-08T13:19:16.490019-08:00,1005.9794311523438,10.832859,10832.859 +12427,2025-03-08T13:19:27.330124-08:00,1005.9846801757812,10.840105,10840.105 +12428,2025-03-08T13:19:38.162219-08:00,1005.9835815429688,10.832095,10832.095 +12429,2025-03-08T13:19:48.996064-08:00,1005.9901733398438,10.833845,10833.845 +12430,2025-03-08T13:19:59.833858-08:00,1005.9979858398438,10.837794,10837.794 +12431,2025-03-08T13:20:10.663087-08:00,1005.97802734375,10.829229,10829.229 +12432,2025-03-08T13:20:21.499410-08:00,1005.9450073242188,10.836323,10836.323 +12433,2025-03-08T13:20:32.328984-08:00,1005.9397583007812,10.829574,10829.574 +12434,2025-03-08T13:20:43.160877-08:00,1005.9515380859375,10.831893,10831.893 +12435,2025-03-08T13:20:54.004319-08:00,1005.9581909179688,10.843442,10843.442 +12436,2025-03-08T13:21:04.841381-08:00,1005.9439086914062,10.837062,10837.062 +12437,2025-03-08T13:21:15.670872-08:00,1005.9595947265625,10.829491,10829.491 +12438,2025-03-08T13:21:26.512129-08:00,1005.93310546875,10.841257,10841.257 +12439,2025-03-08T13:21:37.356226-08:00,1005.9265747070312,10.844097,10844.097 +12440,2025-03-08T13:21:48.183855-08:00,1005.8843994140625,10.827629,10827.629 +12441,2025-03-08T13:21:59.021645-08:00,1005.9000244140625,10.83779,10837.79 +12442,2025-03-08T13:22:09.842166-08:00,1005.9185180664062,10.820521,10820.521 +12443,2025-03-08T13:22:20.680872-08:00,1005.9132690429688,10.838706,10838.706 +12444,2025-03-08T13:22:31.515049-08:00,1005.8934326171875,10.834177,10834.177 +12445,2025-03-08T13:22:42.356123-08:00,1005.880126953125,10.841074,10841.074 +12446,2025-03-08T13:22:53.198128-08:00,1005.9185180664062,10.842005,10842.005 +12447,2025-03-08T13:23:04.028067-08:00,1005.90771484375,10.829939,10829.939 +12448,2025-03-08T13:23:14.866142-08:00,1005.8867797851562,10.838075,10838.075 +12449,2025-03-08T13:23:25.708965-08:00,1005.8548583984375,10.842823,10842.823 +12450,2025-03-08T13:23:36.543084-08:00,1005.8746948242188,10.834119,10834.119 +12451,2025-03-08T13:23:47.373278-08:00,1005.9000244140625,10.830194,10830.194 +12452,2025-03-08T13:23:58.214288-08:00,1005.8746948242188,10.84101,10841.01 +12453,2025-03-08T13:24:09.045874-08:00,1005.85888671875,10.831586,10831.586 +12454,2025-03-08T13:24:19.886044-08:00,1005.8812255859375,10.84017,10840.17 +12455,2025-03-08T13:24:30.724414-08:00,1005.880126953125,10.83837,10838.37 +12456,2025-03-08T13:24:41.562180-08:00,1005.8934326171875,10.837766,10837.766 +12457,2025-03-08T13:24:52.383312-08:00,1005.9000244140625,10.821132,10821.132 +12458,2025-03-08T13:25:03.216120-08:00,1005.8787231445312,10.832808,10832.808 +12459,2025-03-08T13:25:14.059874-08:00,1005.885498046875,10.843754,10843.754 +12460,2025-03-08T13:25:24.892180-08:00,1005.8446044921875,10.832306,10832.306 +12461,2025-03-08T13:25:35.725157-08:00,1005.8630981445312,10.832977,10832.977 +12462,2025-03-08T13:25:46.566978-08:00,1005.87109375,10.841821,10841.821 +12463,2025-03-08T13:25:57.397416-08:00,1005.84326171875,10.830438,10830.438 +12464,2025-03-08T13:26:08.233935-08:00,1005.8289184570312,10.836519,10836.519 +12465,2025-03-08T13:26:19.071880-08:00,1005.8289184570312,10.837945,10837.945 +12466,2025-03-08T13:26:29.905046-08:00,1005.8341674804688,10.833166,10833.166 +12467,2025-03-08T13:26:40.739389-08:00,1005.860595703125,10.834343,10834.343 +12468,2025-03-08T13:26:51.584932-08:00,1005.8407592773438,10.845543,10845.543 +12469,2025-03-08T13:27:02.410872-08:00,1005.8330688476562,10.82594,10825.94 +12470,2025-03-08T13:27:13.254882-08:00,1005.8529052734375,10.84401,10844.01 +12471,2025-03-08T13:27:24.083460-08:00,1005.8529052734375,10.828578,10828.578 +12472,2025-03-08T13:27:34.925355-08:00,1005.8448486328125,10.841895,10841.895 +12473,2025-03-08T13:27:45.761146-08:00,1005.8529052734375,10.835791,10835.791 +12474,2025-03-08T13:27:56.589099-08:00,1005.8515014648438,10.827953,10827.953 +12475,2025-03-08T13:28:07.423962-08:00,1005.84130859375,10.834863,10834.863 +12476,2025-03-08T13:28:18.256178-08:00,1005.8504638671875,10.832216,10832.216 +12477,2025-03-08T13:28:29.100036-08:00,1005.8504638671875,10.843858,10843.858 +12478,2025-03-08T13:28:39.926182-08:00,1005.858154296875,10.826146,10826.146 +12479,2025-03-08T13:28:50.763606-08:00,1005.868896484375,10.837424,10837.424 +12480,2025-03-08T13:29:01.604873-08:00,1005.85205078125,10.841267,10841.267 +12481,2025-03-08T13:29:12.445863-08:00,1005.85205078125,10.84099,10840.99 +12482,2025-03-08T13:29:23.280176-08:00,1005.8043823242188,10.834313,10834.313 +12483,2025-03-08T13:29:34.114877-08:00,1005.8256225585938,10.834701,10834.701 +12484,2025-03-08T13:29:44.950045-08:00,1005.7809448242188,10.835168,10835.168 +12485,2025-03-08T13:29:55.786349-08:00,1005.78759765625,10.836304,10836.304 +12486,2025-03-08T13:30:06.628049-08:00,1005.8192138671875,10.8417,10841.7 +12487,2025-03-08T13:30:17.469434-08:00,1005.8115844726562,10.841385,10841.385 +12488,2025-03-08T13:30:28.309997-08:00,1005.8060302734375,10.840563,10840.563 +12489,2025-03-08T13:30:39.148038-08:00,1005.83251953125,10.838041,10838.041 +12490,2025-03-08T13:30:49.991862-08:00,1005.80078125,10.843824,10843.824 +12491,2025-03-08T13:31:00.833885-08:00,1005.8314208984375,10.842023,10842.023 +12492,2025-03-08T13:31:11.672465-08:00,1005.8258666992188,10.83858,10838.58 +12493,2025-03-08T13:31:22.504874-08:00,1005.7850952148438,10.832409,10832.409 +12494,2025-03-08T13:31:33.351062-08:00,1005.7971801757812,10.846188,10846.188 +12495,2025-03-08T13:31:44.188348-08:00,1005.8115844726562,10.837286,10837.286 +12496,2025-03-08T13:31:55.019314-08:00,1005.7993774414062,10.830966,10830.966 +12497,2025-03-08T13:32:05.857880-08:00,1005.8339233398438,10.838566,10838.566 +12498,2025-03-08T13:32:16.702178-08:00,1005.7850952148438,10.844298,10844.298 +12499,2025-03-08T13:32:27.531937-08:00,1005.770751953125,10.829759,10829.759 +12500,2025-03-08T13:32:38.371021-08:00,1005.8126831054688,10.839084,10839.084 +12501,2025-03-08T13:32:49.203143-08:00,1005.8060302734375,10.832122,10832.122 +12502,2025-03-08T13:33:00.034990-08:00,1005.8074340820312,10.831847,10831.847 +12503,2025-03-08T13:33:10.878874-08:00,1005.7545166015625,10.843884,10843.884 +12504,2025-03-08T13:33:21.709167-08:00,1005.7820434570312,10.830293,10830.293 +12505,2025-03-08T13:33:32.555868-08:00,1005.8032836914062,10.846701,10846.701 +12506,2025-03-08T13:33:43.390267-08:00,1005.7910766601562,10.834399,10834.399 +12507,2025-03-08T13:33:54.231230-08:00,1005.7514038085938,10.840963,10840.963 +12508,2025-03-08T13:34:05.065855-08:00,1005.7778930664062,10.834625,10834.625 +12509,2025-03-08T13:34:15.908136-08:00,1005.7726440429688,10.842281,10842.281 +12510,2025-03-08T13:34:26.746213-08:00,1005.760498046875,10.838077,10838.077 +12511,2025-03-08T13:34:37.583996-08:00,1005.7803955078125,10.837783,10837.783 +12512,2025-03-08T13:34:48.426051-08:00,1005.7564086914062,10.842055,10842.055 +12513,2025-03-08T13:34:59.269148-08:00,1005.7974853515625,10.843097,10843.097 +12514,2025-03-08T13:35:10.100905-08:00,1005.764404296875,10.831757,10831.757 +12515,2025-03-08T13:35:20.946871-08:00,1005.7603149414062,10.845966,10845.966 +12516,2025-03-08T13:35:31.787342-08:00,1005.7271728515625,10.840471,10840.471 +12517,2025-03-08T13:35:42.633872-08:00,1005.7362670898438,10.84653,10846.53 +12518,2025-03-08T13:35:53.468129-08:00,1005.742919921875,10.834257,10834.257 +12519,2025-03-08T13:36:04.309845-08:00,1005.7240600585938,10.841716,10841.716 +12520,2025-03-08T13:36:15.153878-08:00,1005.7453002929688,10.844033,10844.033 +12521,2025-03-08T13:36:25.997288-08:00,1005.7698364257812,10.84341,10843.41 +12522,2025-03-08T13:36:36.835912-08:00,1005.7566528320312,10.838624,10838.624 +12523,2025-03-08T13:36:47.676872-08:00,1005.7380981445312,10.84096,10840.96 +12524,2025-03-08T13:36:58.512481-08:00,1005.7391967773438,10.835609,10835.609 +12525,2025-03-08T13:37:09.362280-08:00,1005.7260131835938,10.849799,10849.799 +12526,2025-03-08T13:37:20.192873-08:00,1005.7128295898438,10.830593,10830.593 +12527,2025-03-08T13:37:31.036861-08:00,1005.7100219726562,10.843988,10843.988 +12528,2025-03-08T13:37:41.875025-08:00,1005.7431030273438,10.838164,10838.164 +12529,2025-03-08T13:37:52.724284-08:00,1005.724365234375,10.849259,10849.259 +12530,2025-03-08T13:38:03.554851-08:00,1005.7334594726562,10.830567,10830.567 +12531,2025-03-08T13:38:14.401876-08:00,1005.7257690429688,10.847025,10847.025 +12532,2025-03-08T13:38:25.231937-08:00,1005.7532958984375,10.830061,10830.061 +12533,2025-03-08T13:38:36.068108-08:00,1005.7413940429688,10.836171,10836.171 +12534,2025-03-08T13:38:46.912933-08:00,1005.7150268554688,10.844825,10844.825 +12535,2025-03-08T13:38:57.758875-08:00,1005.6656494140625,10.845942,10845.942 +12536,2025-03-08T13:39:08.592040-08:00,1005.7107543945312,10.833165,10833.165 +12537,2025-03-08T13:39:19.440284-08:00,1005.7199096679688,10.848244,10848.244 +12538,2025-03-08T13:39:30.279880-08:00,1005.6826782226562,10.839596,10839.596 +12539,2025-03-08T13:39:41.122205-08:00,1005.6415405273438,10.842325,10842.325 +12540,2025-03-08T13:39:51.960861-08:00,1005.6231079101562,10.838656,10838.656 +12541,2025-03-08T13:40:02.793879-08:00,1005.6903686523438,10.833018,10833.018 +12542,2025-03-08T13:40:13.639878-08:00,1005.660888671875,10.845999,10845.999 +12543,2025-03-08T13:40:24.479205-08:00,1005.6476440429688,10.839327,10839.327 +12544,2025-03-08T13:40:35.316952-08:00,1005.6278076171875,10.837747,10837.747 +12545,2025-03-08T13:40:46.157108-08:00,1005.629150390625,10.840156,10840.156 +12546,2025-03-08T13:40:57.001226-08:00,1005.6302490234375,10.844118,10844.118 +12547,2025-03-08T13:41:07.854643-08:00,1005.6856079101562,10.853417,10853.417 +12548,2025-03-08T13:41:18.695731-08:00,1005.6682739257812,10.841088,10841.088 +12549,2025-03-08T13:41:29.529947-08:00,1005.665771484375,10.834216,10834.216 +12550,2025-03-08T13:41:40.372013-08:00,1005.599609375,10.842066,10842.066 +12551,2025-03-08T13:41:51.215186-08:00,1005.6260986328125,10.843173,10843.173 +12552,2025-03-08T13:42:02.059167-08:00,1005.6484375,10.843981,10843.981 +12553,2025-03-08T13:42:12.891877-08:00,1005.6431274414062,10.83271,10832.71 +12554,2025-03-08T13:42:23.729127-08:00,1005.6365356445312,10.83725,10837.25 +12555,2025-03-08T13:42:34.571846-08:00,1005.6300048828125,10.842719,10842.719 +12556,2025-03-08T13:42:45.413873-08:00,1005.6192016601562,10.842027,10842.027 +12557,2025-03-08T13:43:07.099949-08:00,1005.6192016601562,21.686076,21686.076 +12558,2025-03-08T13:43:17.925864-08:00,1005.6268920898438,10.825915,10825.915 +12559,2025-03-08T13:43:28.771117-08:00,1005.601806640625,10.845253,10845.253 +12560,2025-03-08T13:43:39.613340-08:00,1005.6227416992188,10.842223,10842.223 +12561,2025-03-08T13:43:50.453715-08:00,1005.6185913085938,10.840375,10840.375 +12562,2025-03-08T13:44:01.286024-08:00,1005.604248046875,10.832309,10832.309 +12563,2025-03-08T13:44:12.130878-08:00,1005.6251831054688,10.844854,10844.854 +12564,2025-03-08T13:44:22.972482-08:00,1005.6199951171875,10.841604,10841.604 +12565,2025-03-08T13:44:33.805913-08:00,1005.6185913085938,10.833431,10833.431 +12566,2025-03-08T13:44:44.650313-08:00,1005.6052856445312,10.8444,10844.4 +12567,2025-03-08T13:44:55.493119-08:00,1005.6052856445312,10.842806,10842.806 +12568,2025-03-08T13:45:06.335808-08:00,1005.5910034179688,10.842689,10842.689 +12569,2025-03-08T13:45:17.165161-08:00,1005.604248046875,10.829353,10829.353 +12570,2025-03-08T13:45:28.010962-08:00,1005.604248046875,10.845801,10845.801 +12571,2025-03-08T13:45:38.851182-08:00,1005.6240844726562,10.84022,10840.22 +12572,2025-03-08T13:45:49.688873-08:00,1005.6251831054688,10.837691,10837.691 +12573,2025-03-08T13:46:00.524268-08:00,1005.6174926757812,10.835395,10835.395 +12574,2025-03-08T13:46:11.360308-08:00,1005.6265869140625,10.83604,10836.04 +12575,2025-03-08T13:46:22.208094-08:00,1005.6001586914062,10.847786,10847.786 +12576,2025-03-08T13:46:33.044855-08:00,1005.6199951171875,10.836761,10836.761 +12577,2025-03-08T13:46:43.883129-08:00,1005.6199951171875,10.838274,10838.274 +12578,2025-03-08T13:46:54.730191-08:00,1005.6143798828125,10.847062,10847.062 +12579,2025-03-08T13:47:05.568878-08:00,1005.6001586914062,10.838687,10838.687 +12580,2025-03-08T13:47:16.408546-08:00,1005.6251831054688,10.839668,10839.668 +12581,2025-03-08T13:47:27.250270-08:00,1005.5987548828125,10.841724,10841.724 +12582,2025-03-08T13:47:38.099584-08:00,1005.6119384765625,10.849314,10849.314 +12583,2025-03-08T13:47:48.934690-08:00,1005.58544921875,10.835106,10835.106 +12584,2025-03-08T13:47:59.777878-08:00,1005.58544921875,10.843188,10843.188 +12585,2025-03-08T13:48:10.616878-08:00,1005.5921020507812,10.839,10839.0 +12586,2025-03-08T13:48:21.459253-08:00,1005.5391235351562,10.842375,10842.375 +12587,2025-03-08T13:48:32.292207-08:00,1005.5778198242188,10.832954,10832.954 +12588,2025-03-08T13:48:43.140903-08:00,1005.5579833984375,10.848696,10848.696 +12589,2025-03-08T13:48:53.983178-08:00,1005.5711669921875,10.842275,10842.275 +12590,2025-03-08T13:49:04.828149-08:00,1005.5645141601562,10.844971,10844.971 +12591,2025-03-08T13:49:15.669878-08:00,1005.5789184570312,10.841729,10841.729 +12592,2025-03-08T13:49:26.506874-08:00,1005.55126953125,10.836996,10836.996 +12593,2025-03-08T13:49:37.344277-08:00,1005.54052734375,10.837403,10837.403 +12594,2025-03-08T13:49:48.186019-08:00,1005.519287109375,10.841742,10841.742 +12595,2025-03-08T13:49:59.029881-08:00,1005.52734375,10.843862,10843.862 +12596,2025-03-08T13:50:09.867936-08:00,1005.5349731445312,10.838055,10838.055 +12597,2025-03-08T13:50:20.712354-08:00,1005.5074462890625,10.844418,10844.418 +12598,2025-03-08T13:50:31.547867-08:00,1005.5228271484375,10.835513,10835.513 +12599,2025-03-08T13:50:42.398184-08:00,1005.51513671875,10.850317,10850.317 +12600,2025-03-08T13:50:53.234878-08:00,1005.5228271484375,10.836694,10836.694 +12601,2025-03-08T13:51:04.074213-08:00,1005.51513671875,10.839335,10839.335 +12602,2025-03-08T13:51:14.910117-08:00,1005.5426635742188,10.835904,10835.904 +12603,2025-03-08T13:51:25.751869-08:00,1005.521728515625,10.841752,10841.752 +12604,2025-03-08T13:51:36.600413-08:00,1005.5283813476562,10.848544,10848.544 +12605,2025-03-08T13:51:47.438955-08:00,1005.5095825195312,10.838542,10838.542 +12606,2025-03-08T13:51:58.279872-08:00,1005.5294799804688,10.840917,10840.917 +12607,2025-03-08T13:52:09.121272-08:00,1005.508544921875,10.8414,10841.4 +12608,2025-03-08T13:52:19.952485-08:00,1005.5308837890625,10.831213,10831.213 +12609,2025-03-08T13:52:30.795871-08:00,1005.5054931640625,10.843386,10843.386 +12610,2025-03-08T13:52:41.630112-08:00,1005.5332641601562,10.834241,10834.241 +12611,2025-03-08T13:52:52.473855-08:00,1005.4988403320312,10.843743,10843.743 +12612,2025-03-08T13:53:03.316997-08:00,1005.5343627929688,10.843142,10843.142 +12613,2025-03-08T13:53:14.155873-08:00,1005.5068969726562,10.838876,10838.876 +12614,2025-03-08T13:53:24.993925-08:00,1005.5423583984375,10.838052,10838.052 +12615,2025-03-08T13:53:35.840998-08:00,1005.549072265625,10.847073,10847.073 +12616,2025-03-08T13:53:46.685330-08:00,1005.536865234375,10.844332,10844.332 +12617,2025-03-08T13:53:57.523209-08:00,1005.54345703125,10.837879,10837.879 +12618,2025-03-08T13:54:08.371076-08:00,1005.5315551757812,10.847867,10847.867 +12619,2025-03-08T13:54:19.214275-08:00,1005.5315551757812,10.843199,10843.199 +12620,2025-03-08T13:54:30.044873-08:00,1005.5236206054688,10.830598,10830.598 +12621,2025-03-08T13:54:40.891884-08:00,1005.526123046875,10.847011,10847.011 +12622,2025-03-08T13:54:51.735940-08:00,1005.4971923828125,10.844056,10844.056 +12623,2025-03-08T13:55:02.579065-08:00,1005.5194702148438,10.843125,10843.125 +12624,2025-03-08T13:55:13.419002-08:00,1005.5275268554688,10.839937,10839.937 +12625,2025-03-08T13:55:24.263878-08:00,1005.5142211914062,10.844876,10844.876 +12626,2025-03-08T13:55:35.113027-08:00,1005.5340576171875,10.849149,10849.149 +12627,2025-03-08T13:55:45.948867-08:00,1005.5076293945312,10.83584,10835.84 +12628,2025-03-08T13:55:56.796642-08:00,1005.5418090820312,10.847775,10847.775 +12629,2025-03-08T13:56:07.638476-08:00,1005.53515625,10.841834,10841.834 +12630,2025-03-08T13:56:18.477063-08:00,1005.5630493164062,10.838587,10838.587 +12631,2025-03-08T13:56:29.323862-08:00,1005.5232543945312,10.846799,10846.799 +12632,2025-03-08T13:56:40.151870-08:00,1005.5243530273438,10.828008,10828.008 +12633,2025-03-08T13:56:51.000069-08:00,1005.5020141601562,10.848199,10848.199 +12634,2025-03-08T13:57:01.834010-08:00,1005.4954833984375,10.833941,10833.941 +12635,2025-03-08T13:57:12.680957-08:00,1005.5376586914062,10.846947,10846.947 +12636,2025-03-08T13:57:23.519588-08:00,1005.556396484375,10.838631,10838.631 +12637,2025-03-08T13:57:34.357876-08:00,1005.5299072265625,10.838288,10838.288 +12638,2025-03-08T13:57:45.189128-08:00,1005.5498657226562,10.831252,10831.252 +12639,2025-03-08T13:57:56.030354-08:00,1005.5574951171875,10.841226,10841.226 +12640,2025-03-08T13:58:06.867877-08:00,1005.55224609375,10.837523,10837.523 +12641,2025-03-08T13:58:17.713010-08:00,1005.54150390625,10.845133,10845.133 +12642,2025-03-08T13:58:28.559204-08:00,1005.4937744140625,10.846194,10846.194 +12643,2025-03-08T13:58:39.391176-08:00,1005.5150146484375,10.831972,10831.972 +12644,2025-03-08T13:58:50.235953-08:00,1005.5226440429688,10.844777,10844.777 +12645,2025-03-08T13:59:01.077925-08:00,1005.5226440429688,10.841972,10841.972 +12646,2025-03-08T13:59:11.917176-08:00,1005.4818725585938,10.839251,10839.251 +12647,2025-03-08T13:59:22.758254-08:00,1005.5175170898438,10.841078,10841.078 +12648,2025-03-08T13:59:33.605083-08:00,1005.4854736328125,10.846829,10846.829 +12649,2025-03-08T13:59:44.438157-08:00,1005.4976806640625,10.833074,10833.074 +12650,2025-03-08T13:59:55.286205-08:00,1005.525146484375,10.848048,10848.048 +12651,2025-03-08T14:00:06.124864-08:00,1005.5262451171875,10.838659,10838.659 +12652,2025-03-08T14:00:16.961878-08:00,1005.512939453125,10.837014,10837.014 +12653,2025-03-08T14:00:27.799904-08:00,1005.5186157226562,10.838026,10838.026 +12654,2025-03-08T14:00:38.645191-08:00,1005.5276489257812,10.845287,10845.287 +12655,2025-03-08T14:00:49.486934-08:00,1005.486572265625,10.841743,10841.743 +12656,2025-03-08T14:01:00.319121-08:00,1005.4788208007812,10.832187,10832.187 +12657,2025-03-08T14:01:11.160062-08:00,1005.4879150390625,10.840941,10840.941 +12658,2025-03-08T14:01:21.993872-08:00,1005.4666137695312,10.83381,10833.81 +12659,2025-03-08T14:01:32.841867-08:00,1005.4798583984375,10.847995,10847.995 +12660,2025-03-08T14:01:43.683878-08:00,1005.4693603515625,10.842011,10842.011 +12661,2025-03-08T14:01:54.523296-08:00,1005.4774169921875,10.839418,10839.418 +12662,2025-03-08T14:02:05.356884-08:00,1005.4959106445312,10.833588,10833.588 +12663,2025-03-08T14:02:16.205108-08:00,1005.4893188476562,10.848224,10848.224 +12664,2025-03-08T14:02:27.047205-08:00,1005.4600219726562,10.842097,10842.097 +12665,2025-03-08T14:02:37.893823-08:00,1005.47607421875,10.846618,10846.618 +12666,2025-03-08T14:02:48.727852-08:00,1005.482666015625,10.834029,10834.029 +12667,2025-03-08T14:02:59.564864-08:00,1005.4774169921875,10.837012,10837.012 +12668,2025-03-08T14:03:10.406461-08:00,1005.4906005859375,10.841597,10841.597 +12669,2025-03-08T14:03:21.259225-08:00,1005.4693603515625,10.852764,10852.764 +12670,2025-03-08T14:03:32.096129-08:00,1005.4851684570312,10.836904,10836.904 +12671,2025-03-08T14:03:42.941871-08:00,1005.478515625,10.845742,10845.742 +12672,2025-03-08T14:03:53.786151-08:00,1005.4798583984375,10.84428,10844.28 +12673,2025-03-08T14:04:04.623174-08:00,1005.5075073242188,10.837023,10837.023 +12674,2025-03-08T14:04:15.461878-08:00,1005.486572265625,10.838704,10838.704 +12675,2025-03-08T14:04:26.304002-08:00,1005.486572265625,10.842124,10842.124 +12676,2025-03-08T14:04:37.150019-08:00,1005.487548828125,10.846017,10846.017 +12677,2025-03-08T14:04:47.994469-08:00,1005.5099487304688,10.84445,10844.45 +12678,2025-03-08T14:04:58.838922-08:00,1005.5007934570312,10.844453,10844.453 +12679,2025-03-08T14:05:09.685117-08:00,1005.487548828125,10.846195,10846.195 +12680,2025-03-08T14:05:20.518874-08:00,1005.502197265625,10.833757,10833.757 +12681,2025-03-08T14:05:31.362325-08:00,1005.5032958984375,10.843451,10843.451 +12682,2025-03-08T14:05:42.067412-08:00,1005.5032958984375,10.705087,10705.087 +12683,2025-03-08T14:05:52.904415-08:00,1005.479248046875,10.837003,10837.003 +12684,2025-03-08T14:06:03.737642-08:00,1005.445068359375,10.833227,10833.227 +12685,2025-03-08T14:06:14.578455-08:00,1005.4650268554688,10.840813,10840.813 +12686,2025-03-08T14:06:25.410642-08:00,1005.4715576171875,10.832187,10832.187 +12687,2025-03-08T14:06:36.243690-08:00,1005.463623046875,10.833048,10833.048 +12688,2025-03-08T14:06:47.081285-08:00,1005.4751586914062,10.837595,10837.595 +12689,2025-03-08T14:06:57.919430-08:00,1005.4650268554688,10.838145,10838.145 +12690,2025-03-08T14:07:08.755426-08:00,1005.479248046875,10.835996,10835.996 +12691,2025-03-08T14:07:19.598510-08:00,1005.458251953125,10.843084,10843.084 +12692,2025-03-08T14:07:30.442427-08:00,1005.481689453125,10.843917,10843.917 +12693,2025-03-08T14:07:41.280001-08:00,1005.4632568359375,10.837574,10837.574 +12694,2025-03-08T14:07:52.122689-08:00,1005.5148315429688,10.842688,10842.688 +12695,2025-03-08T14:08:02.966404-08:00,1005.493896484375,10.843715,10843.715 +12696,2025-03-08T14:08:13.815423-08:00,1005.4618530273438,10.849019,10849.019 +12697,2025-03-08T14:08:24.656404-08:00,1005.4607543945312,10.840981,10840.981 +12698,2025-03-08T14:08:35.493725-08:00,1005.483154296875,10.837321,10837.321 +12699,2025-03-08T14:08:46.336866-08:00,1005.4751586914062,10.843141,10843.141 +12700,2025-03-08T14:08:57.180667-08:00,1005.4765014648438,10.843801,10843.801 +12701,2025-03-08T14:09:08.018414-08:00,1005.5029907226562,10.837747,10837.747 +12702,2025-03-08T14:09:18.865744-08:00,1005.4751586914062,10.84733,10847.33 +12703,2025-03-08T14:09:29.698457-08:00,1005.4444580078125,10.832713,10832.713 +12704,2025-03-08T14:09:40.537427-08:00,1005.506591796875,10.83897,10838.97 +12705,2025-03-08T14:09:51.386003-08:00,1005.5120239257812,10.848576,10848.576 +12706,2025-03-08T14:10:02.227809-08:00,1005.506591796875,10.841806,10841.806 +12707,2025-03-08T14:10:13.070530-08:00,1005.519775390625,10.842721,10842.721 +12708,2025-03-08T14:10:23.915069-08:00,1005.4601440429688,10.844539,10844.539 +12709,2025-03-08T14:10:34.746659-08:00,1005.520751953125,10.83159,10831.59 +12710,2025-03-08T14:10:45.599808-08:00,1005.5365600585938,10.853149,10853.149 +12711,2025-03-08T14:10:56.431415-08:00,1005.494384765625,10.831607,10831.607 +12712,2025-03-08T14:11:07.269421-08:00,1005.5420532226562,10.838006,10838.006 +12713,2025-03-08T14:11:18.110729-08:00,1005.5023193359375,10.841308,10841.308 +12714,2025-03-08T14:11:28.946420-08:00,1005.5114135742188,10.835691,10835.691 +12715,2025-03-08T14:11:39.780653-08:00,1005.5232543945312,10.834233,10834.233 +12716,2025-03-08T14:11:50.631533-08:00,1005.510009765625,10.85088,10850.88 +12717,2025-03-08T14:12:01.467700-08:00,1005.51806640625,10.836167,10836.167 +12718,2025-03-08T14:12:12.297410-08:00,1005.524658203125,10.82971,10829.71 +12719,2025-03-08T14:12:23.140648-08:00,1005.510009765625,10.843238,10843.238 +12720,2025-03-08T14:12:33.973916-08:00,1005.478271484375,10.833268,10833.268 +12721,2025-03-08T14:12:44.816650-08:00,1005.4717407226562,10.842734,10842.734 +12722,2025-03-08T14:12:55.649779-08:00,1005.4982299804688,10.833129,10833.129 +12723,2025-03-08T14:13:06.492566-08:00,1005.5059204101562,10.842787,10842.787 +12724,2025-03-08T14:13:17.334418-08:00,1005.4793701171875,10.841852,10841.852 +12725,2025-03-08T14:13:28.173427-08:00,1005.4849853515625,10.839009,10839.009 +12726,2025-03-08T14:13:39.025693-08:00,1005.5083618164062,10.852266,10852.266 +12727,2025-03-08T14:13:49.864762-08:00,1005.5150146484375,10.839069,10839.069 +12728,2025-03-08T14:14:00.703576-08:00,1005.5164184570312,10.838814,10838.814 +12729,2025-03-08T14:14:11.549427-08:00,1005.5097045898438,10.845851,10845.851 +12730,2025-03-08T14:14:22.393754-08:00,1005.4964599609375,10.844327,10844.327 +12731,2025-03-08T14:14:33.231386-08:00,1005.5215454101562,10.837632,10837.632 +12732,2025-03-08T14:14:44.076421-08:00,1005.5240478515625,10.845035,10845.035 +12733,2025-03-08T14:14:54.913460-08:00,1005.5362548828125,10.837039,10837.039 +12734,2025-03-08T14:15:05.750423-08:00,1005.4766235351562,10.836963,10836.963 +12735,2025-03-08T14:15:16.593997-08:00,1005.4884643554688,10.843574,10843.574 +12736,2025-03-08T14:15:27.426426-08:00,1005.5031127929688,10.832429,10832.429 +12737,2025-03-08T14:15:38.260838-08:00,1005.490966796875,10.834412,10834.412 +12738,2025-03-08T14:15:49.104768-08:00,1005.4807739257812,10.84393,10843.93 +12739,2025-03-08T14:15:59.936417-08:00,1005.4884643554688,10.831649,10831.649 +12740,2025-03-08T14:16:10.779424-08:00,1005.4832763671875,10.843007,10843.007 +12741,2025-03-08T14:16:21.611823-08:00,1005.467529296875,10.832399,10832.399 +12742,2025-03-08T14:16:32.449434-08:00,1005.4860229492188,10.837611,10837.611 +12743,2025-03-08T14:16:43.291472-08:00,1005.5271606445312,10.842038,10842.038 +12744,2025-03-08T14:16:54.129554-08:00,1005.501708984375,10.838082,10838.082 +12745,2025-03-08T14:17:04.974423-08:00,1005.4951782226562,10.844869,10844.869 +12746,2025-03-08T14:17:15.815701-08:00,1005.5072631835938,10.841278,10841.278 +12747,2025-03-08T14:17:26.657419-08:00,1005.4807739257812,10.841718,10841.718 +12748,2025-03-08T14:17:37.510739-08:00,1005.467529296875,10.85332,10853.32 +12749,2025-03-08T14:17:48.356904-08:00,1005.5215454101562,10.846165,10846.165 +12750,2025-03-08T14:17:59.188425-08:00,1005.4992065429688,10.831521,10831.521 +12751,2025-03-08T14:18:10.031427-08:00,1005.4462280273438,10.843002,10843.002 +12752,2025-03-08T14:18:20.873733-08:00,1005.4793701171875,10.842306,10842.306 +12753,2025-03-08T14:18:31.711798-08:00,1005.4752197265625,10.838065,10838.065 +12754,2025-03-08T14:18:42.550489-08:00,1005.4717407226562,10.838691,10838.691 +12755,2025-03-08T14:18:53.386703-08:00,1005.4462280273438,10.836214,10836.214 +12756,2025-03-08T14:19:04.233048-08:00,1005.4584350585938,10.846345,10846.345 +12757,2025-03-08T14:19:15.072423-08:00,1005.4462280273438,10.839375,10839.375 +12758,2025-03-08T14:19:25.909694-08:00,1005.465087890625,10.837271,10837.271 +12759,2025-03-08T14:19:36.750621-08:00,1005.4728393554688,10.840927,10840.927 +12760,2025-03-08T14:19:47.595830-08:00,1005.4330444335938,10.845209,10845.209 +12761,2025-03-08T14:19:58.435677-08:00,1005.4411010742188,10.839847,10839.847 +12762,2025-03-08T14:20:09.281427-08:00,1005.4344482421875,10.84575,10845.75 +12763,2025-03-08T14:20:20.115729-08:00,1005.4728393554688,10.834302,10834.302 +12764,2025-03-08T14:20:30.955599-08:00,1005.4462280273438,10.83987,10839.87 +12765,2025-03-08T14:20:41.801469-08:00,1005.42529296875,10.84587,10845.87 +12766,2025-03-08T14:20:52.637483-08:00,1005.4411010742188,10.836014,10836.014 +12767,2025-03-08T14:21:03.475003-08:00,1005.4553833007812,10.83752,10837.52 +12768,2025-03-08T14:21:14.308474-08:00,1005.4685668945312,10.833471,10833.471 +12769,2025-03-08T14:21:25.155648-08:00,1005.4288940429688,10.847174,10847.174 +12770,2025-03-08T14:21:35.986937-08:00,1005.4501342773438,10.831289,10831.289 +12771,2025-03-08T14:21:46.830586-08:00,1005.4368896484375,10.843649,10843.649 +12772,2025-03-08T14:21:57.668669-08:00,1005.4246826171875,10.838083,10838.083 +12773,2025-03-08T14:22:08.506941-08:00,1005.412841796875,10.838272,10838.272 +12774,2025-03-08T14:22:19.346427-08:00,1005.4337768554688,10.839486,10839.486 +12775,2025-03-08T14:22:30.195728-08:00,1005.4195556640625,10.849301,10849.301 +12776,2025-03-08T14:22:41.034420-08:00,1005.4484252929688,10.838692,10838.692 +12777,2025-03-08T14:22:51.868811-08:00,1005.4271850585938,10.834391,10834.391 +12778,2025-03-08T14:23:02.715464-08:00,1005.4073486328125,10.846653,10846.653 +12779,2025-03-08T14:23:13.542423-08:00,1005.4442138671875,10.826959,10826.959 +12780,2025-03-08T14:23:24.394643-08:00,1005.4219360351562,10.85222,10852.22 +12781,2025-03-08T14:23:35.234661-08:00,1005.4006958007812,10.840018,10840.018 +12782,2025-03-08T14:23:46.069422-08:00,1005.4087524414062,10.834761,10834.761 +12783,2025-03-08T14:23:56.907470-08:00,1005.4087524414062,10.838048,10838.048 +12784,2025-03-08T14:24:07.746155-08:00,1005.3888549804688,10.838685,10838.685 +12785,2025-03-08T14:24:18.587404-08:00,1005.4031372070312,10.841249,10841.249 +12786,2025-03-08T14:24:29.426644-08:00,1005.3847045898438,10.83924,10839.24 +12787,2025-03-08T14:24:40.274648-08:00,1005.3699951171875,10.848004,10848.004 +12788,2025-03-08T14:24:51.113309-08:00,1005.4188232421875,10.838661,10838.661 +12789,2025-03-08T14:25:01.949424-08:00,1005.4202270507812,10.836115,10836.115 +12790,2025-03-08T14:25:12.797458-08:00,1005.427978515625,10.848034,10848.034 +12791,2025-03-08T14:25:23.629764-08:00,1005.3948364257812,10.832306,10832.306 +12792,2025-03-08T14:25:34.476580-08:00,1005.4146728515625,10.846816,10846.816 +12793,2025-03-08T14:25:45.317659-08:00,1005.3804931640625,10.841079,10841.079 +12794,2025-03-08T14:25:56.154654-08:00,1005.3858032226562,10.836995,10836.995 +12795,2025-03-08T14:26:07.002791-08:00,1005.396240234375,10.848137,10848.137 +12796,2025-03-08T14:26:17.836401-08:00,1005.3948364257812,10.83361,10833.61 +12797,2025-03-08T14:26:28.684261-08:00,1005.409423828125,10.84786,10847.86 +12798,2025-03-08T14:26:39.523675-08:00,1005.390625,10.839414,10839.414 +12799,2025-03-08T14:26:50.354474-08:00,1005.4039306640625,10.830799,10830.799 +12800,2025-03-08T14:27:01.202476-08:00,1005.4074096679688,10.848002,10848.002 +12801,2025-03-08T14:27:12.038063-08:00,1005.420654296875,10.835587,10835.587 +12802,2025-03-08T14:27:22.881748-08:00,1005.3983764648438,10.843685,10843.685 +12803,2025-03-08T14:27:33.723669-08:00,1005.3798217773438,10.841921,10841.921 +12804,2025-03-08T14:27:44.573748-08:00,1005.3875122070312,10.850079,10850.079 +12805,2025-03-08T14:27:55.414404-08:00,1005.4098510742188,10.840656,10840.656 +12806,2025-03-08T14:28:06.250420-08:00,1005.3900146484375,10.836016,10836.016 +12807,2025-03-08T14:28:17.091207-08:00,1005.3858032226562,10.840787,10840.787 +12808,2025-03-08T14:28:27.928427-08:00,1005.3990478515625,10.83722,10837.22 +12809,2025-03-08T14:28:38.772683-08:00,1005.3925170898438,10.844256,10844.256 +12810,2025-03-08T14:28:49.601306-08:00,1005.3897094726562,10.828623,10828.623 +12811,2025-03-08T14:29:00.443560-08:00,1005.4081420898438,10.842254,10842.254 +12812,2025-03-08T14:29:11.278610-08:00,1005.4015502929688,10.83505,10835.05 +12813,2025-03-08T14:29:22.121793-08:00,1005.3973388671875,10.843183,10843.183 +12814,2025-03-08T14:29:32.962548-08:00,1005.3948974609375,10.840755,10840.755 +12815,2025-03-08T14:29:43.796931-08:00,1005.3897094726562,10.834383,10834.383 +12816,2025-03-08T14:29:54.639959-08:00,1005.370849609375,10.843028,10843.028 +12817,2025-03-08T14:30:05.477658-08:00,1005.37890625,10.837699,10837.699 +12818,2025-03-08T14:30:16.320424-08:00,1005.385498046875,10.842766,10842.766 +12819,2025-03-08T14:30:27.169419-08:00,1005.4053344726562,10.848995,10848.995 +12820,2025-03-08T14:30:38.007430-08:00,1005.3722534179688,10.838011,10838.011 +12821,2025-03-08T14:30:48.854696-08:00,1005.36669921875,10.847266,10847.266 +12822,2025-03-08T14:30:59.693793-08:00,1005.39453125,10.839097,10839.097 +12823,2025-03-08T14:31:10.529924-08:00,1005.373291015625,10.836131,10836.131 +12824,2025-03-08T14:31:21.378464-08:00,1005.373291015625,10.84854,10848.54 +12825,2025-03-08T14:31:32.216016-08:00,1005.339111328125,10.837552,10837.552 +12826,2025-03-08T14:31:43.057426-08:00,1005.3534545898438,10.84141,10841.41 +12827,2025-03-08T14:31:53.899837-08:00,1005.3705444335938,10.842411,10842.411 +12828,2025-03-08T14:32:04.746432-08:00,1005.329345703125,10.846595,10846.595 +12829,2025-03-08T14:32:15.581768-08:00,1005.30712890625,10.835336,10835.336 +12830,2025-03-08T14:32:26.420528-08:00,1005.313720703125,10.83876,10838.76 +12831,2025-03-08T14:32:37.262420-08:00,1005.360107421875,10.841892,10841.892 +12832,2025-03-08T14:32:48.112028-08:00,1005.30712890625,10.849608,10849.608 +12833,2025-03-08T14:32:58.949211-08:00,1005.313720703125,10.837183,10837.183 +12834,2025-03-08T14:33:09.793472-08:00,1005.30712890625,10.844261,10844.261 +12835,2025-03-08T14:33:20.630425-08:00,1005.3336181640625,10.836953,10836.953 +12836,2025-03-08T14:33:31.478420-08:00,1005.3468627929688,10.847995,10847.995 +12837,2025-03-08T14:33:42.322754-08:00,1005.360107421875,10.844334,10844.334 +12838,2025-03-08T14:33:53.159656-08:00,1005.360107421875,10.836902,10836.902 +12839,2025-03-08T14:34:04.007041-08:00,1005.37890625,10.847385,10847.385 +12840,2025-03-08T14:34:14.857501-08:00,1005.3457641601562,10.85046,10850.46 +12841,2025-03-08T14:34:25.694940-08:00,1005.36669921875,10.837439,10837.439 +12842,2025-03-08T14:34:36.538380-08:00,1005.3800048828125,10.84344,10843.44 +12843,2025-03-08T14:34:47.385756-08:00,1005.3590698242188,10.847376,10847.376 +12844,2025-03-08T14:34:58.232421-08:00,1005.33251953125,10.846665,10846.665 +12845,2025-03-08T14:35:09.072426-08:00,1005.3457641601562,10.840005,10840.005 +12846,2025-03-08T14:35:19.921425-08:00,1005.339111328125,10.848999,10848.999 +12847,2025-03-08T14:35:30.759454-08:00,1005.3523559570312,10.838029,10838.029 +12848,2025-03-08T14:35:41.596683-08:00,1005.3510131835938,10.837229,10837.229 +12849,2025-03-08T14:35:52.443629-08:00,1005.36669921875,10.846946,10846.946 +12850,2025-03-08T14:36:03.281706-08:00,1005.3800048828125,10.838077,10838.077 +12851,2025-03-08T14:36:14.126441-08:00,1005.33251953125,10.844735,10844.735 +12852,2025-03-08T14:36:24.967405-08:00,1005.3350219726562,10.840964,10840.964 +12853,2025-03-08T14:36:35.810650-08:00,1005.341552734375,10.843245,10843.245 +12854,2025-03-08T14:36:46.650474-08:00,1005.3782958984375,10.839824,10839.824 +12855,2025-03-08T14:36:57.496766-08:00,1005.3451538085938,10.846292,10846.292 +12856,2025-03-08T14:37:08.336715-08:00,1005.32421875,10.839949,10839.949 +12857,2025-03-08T14:37:19.186470-08:00,1005.3252563476562,10.849755,10849.755 +12858,2025-03-08T14:37:30.032417-08:00,1005.333251953125,10.845947,10845.947 +12859,2025-03-08T14:37:40.881481-08:00,1005.3318481445312,10.849064,10849.064 +12860,2025-03-08T14:37:51.729815-08:00,1005.3384399414062,10.848334,10848.334 +12861,2025-03-08T14:38:02.573312-08:00,1005.3409423828125,10.843497,10843.497 +12862,2025-03-08T14:38:13.410667-08:00,1005.3685302734375,10.837355,10837.355 +12863,2025-03-08T14:38:24.264421-08:00,1005.3475952148438,10.853754,10853.754 +12864,2025-03-08T14:38:35.108654-08:00,1005.3154907226562,10.844233,10844.233 +12865,2025-03-08T14:38:45.949423-08:00,1005.3154907226562,10.840769,10840.769 +12866,2025-03-08T14:38:56.793760-08:00,1005.3566284179688,10.844337,10844.337 +12867,2025-03-08T14:39:07.637458-08:00,1005.3590698242188,10.843698,10843.698 +12868,2025-03-08T14:39:18.486404-08:00,1005.3499755859375,10.848946,10848.946 +12869,2025-03-08T14:39:29.323425-08:00,1005.3222045898438,10.837021,10837.021 +12870,2025-03-08T14:39:40.173453-08:00,1005.36328125,10.850028,10850.028 +12871,2025-03-08T14:39:51.020794-08:00,1005.3367309570312,10.847341,10847.341 +12872,2025-03-08T14:40:01.848416-08:00,1005.3378295898438,10.827622,10827.622 +12873,2025-03-08T14:40:12.691417-08:00,1005.3392333984375,10.843001,10843.001 +12874,2025-03-08T14:40:23.534573-08:00,1005.3524780273438,10.843156,10843.156 +12875,2025-03-08T14:40:34.376744-08:00,1005.3668212890625,10.842171,10842.171 +12876,2025-03-08T14:40:45.225467-08:00,1005.36572265625,10.848723,10848.723 +12877,2025-03-08T14:40:56.067433-08:00,1005.3590698242188,10.841966,10841.966 +12878,2025-03-08T14:41:06.916421-08:00,1005.36328125,10.848988,10848.988 +12879,2025-03-08T14:41:17.761427-08:00,1005.3392333984375,10.845006,10845.006 +12880,2025-03-08T14:41:28.608812-08:00,1005.3325805664062,10.847385,10847.385 +12881,2025-03-08T14:41:39.447418-08:00,1005.36572265625,10.838606,10838.606 +12882,2025-03-08T14:41:50.291950-08:00,1005.3734130859375,10.844532,10844.532 +12883,2025-03-08T14:42:01.136572-08:00,1005.3270263671875,10.844622,10844.622 +12884,2025-03-08T14:42:11.977666-08:00,1005.3748168945312,10.841094,10841.094 +12885,2025-03-08T14:42:22.813458-08:00,1005.3668212890625,10.835792,10835.792 +12886,2025-03-08T14:42:33.661406-08:00,1005.3681030273438,10.847948,10847.948 +12887,2025-03-08T14:42:44.507434-08:00,1005.35595703125,10.846028,10846.028 +12888,2025-03-08T14:42:55.341760-08:00,1005.3890380859375,10.834326,10834.326 +12889,2025-03-08T14:43:06.186260-08:00,1005.3839111328125,10.8445,10844.5 +12890,2025-03-08T14:43:17.027422-08:00,1005.3681030273438,10.841162,10841.162 +12891,2025-03-08T14:43:27.869456-08:00,1005.3626708984375,10.842034,10842.034 +12892,2025-03-08T14:43:38.714001-08:00,1005.3284301757812,10.844545,10844.545 +12893,2025-03-08T14:43:49.564669-08:00,1005.3692016601562,10.850668,10850.668 +12894,2025-03-08T14:44:00.412733-08:00,1005.3549194335938,10.848064,10848.064 +12895,2025-03-08T14:44:11.256601-08:00,1005.3825073242188,10.843868,10843.868 +12896,2025-03-08T14:44:22.099418-08:00,1005.3692016601562,10.842817,10842.817 +12897,2025-03-08T14:44:32.948459-08:00,1005.3692016601562,10.849041,10849.041 +12898,2025-03-08T14:44:43.797687-08:00,1005.35595703125,10.849228,10849.228 +12899,2025-03-08T14:44:54.637829-08:00,1005.3758544921875,10.840142,10840.142 +12900,2025-03-08T14:45:05.482249-08:00,1005.3839111328125,10.84442,10844.42 +12901,2025-03-08T14:45:16.325423-08:00,1005.40234375,10.843174,10843.174 +12902,2025-03-08T14:45:27.176679-08:00,1005.3692016601562,10.851256,10851.256 +12903,2025-03-08T14:45:38.023188-08:00,1005.3626708984375,10.846509,10846.509 +12904,2025-03-08T14:45:48.867466-08:00,1005.3361206054688,10.844278,10844.278 +12905,2025-03-08T14:45:59.711724-08:00,1005.3162231445312,10.844258,10844.258 +12906,2025-03-08T14:46:10.563258-08:00,1005.37060546875,10.851534,10851.534 +12907,2025-03-08T14:46:21.401664-08:00,1005.3849487304688,10.838406,10838.406 +12908,2025-03-08T14:46:32.251421-08:00,1005.3929443359375,10.849757,10849.757 +12909,2025-03-08T14:46:43.104405-08:00,1005.3741455078125,10.852984,10852.984 +12910,2025-03-08T14:46:53.947460-08:00,1005.354248046875,10.843055,10843.055 +12911,2025-03-08T14:47:04.789727-08:00,1005.322509765625,10.842267,10842.267 +12912,2025-03-08T14:47:15.634354-08:00,1005.34765625,10.844627,10844.627 +12913,2025-03-08T14:47:26.469468-08:00,1005.3699951171875,10.835114,10835.114 +12914,2025-03-08T14:47:37.319655-08:00,1005.3831787109375,10.850187,10850.187 +12915,2025-03-08T14:47:48.164051-08:00,1005.4054565429688,10.844396,10844.396 +12916,2025-03-08T14:47:59.002745-08:00,1005.3936767578125,10.838694,10838.694 +12917,2025-03-08T14:48:09.849553-08:00,1005.420166015625,10.846808,10846.808 +12918,2025-03-08T14:48:20.692560-08:00,1005.4277954101562,10.843007,10843.007 +12919,2025-03-08T14:48:31.535429-08:00,1005.4288940429688,10.842869,10842.869 +12920,2025-03-08T14:48:42.372699-08:00,1005.4156494140625,10.83727,10837.27 +12921,2025-03-08T14:48:53.211023-08:00,1005.3825073242188,10.838324,10838.324 +12922,2025-03-08T14:49:04.053686-08:00,1005.3881225585938,10.842663,10842.663 +12923,2025-03-08T14:49:14.885832-08:00,1005.4288940429688,10.832146,10832.146 +12924,2025-03-08T14:49:25.729546-08:00,1005.3905639648438,10.843714,10843.714 +12925,2025-03-08T14:49:36.565615-08:00,1005.3892211914062,10.836069,10836.069 +12926,2025-03-08T14:49:47.410727-08:00,1005.4104614257812,10.845112,10845.112 +12927,2025-03-08T14:49:58.252747-08:00,1005.444580078125,10.84202,10842.02 +12928,2025-03-08T14:50:09.097420-08:00,1005.456787109375,10.844673,10844.673 +12929,2025-03-08T14:50:19.933417-08:00,1005.4710693359375,10.835997,10835.997 +12930,2025-03-08T14:50:30.777525-08:00,1005.444580078125,10.844108,10844.108 +12931,2025-03-08T14:50:41.617951-08:00,1005.4302978515625,10.840426,10840.426 +12932,2025-03-08T14:50:52.461651-08:00,1005.4302978515625,10.8437,10843.7 +12933,2025-03-08T14:51:03.301605-08:00,1005.4236450195312,10.839954,10839.954 +12934,2025-03-08T14:51:14.136120-08:00,1005.4104614257812,10.834515,10834.515 +12935,2025-03-08T14:51:24.986795-08:00,1005.42236328125,10.850675,10850.675 +12936,2025-03-08T14:51:35.828926-08:00,1005.4037475585938,10.842131,10842.131 +12937,2025-03-08T14:51:46.666427-08:00,1005.4246826171875,10.837501,10837.501 +12938,2025-03-08T14:51:57.509569-08:00,1005.4236450195312,10.843142,10843.142 +12939,2025-03-08T14:52:08.358555-08:00,1005.4048461914062,10.848986,10848.986 +12940,2025-03-08T14:52:19.207727-08:00,1005.3773193359375,10.849172,10849.172 +12941,2025-03-08T14:52:30.043271-08:00,1005.3839111328125,10.835544,10835.544 +12942,2025-03-08T14:52:40.892425-08:00,1005.37060546875,10.849154,10849.154 +12943,2025-03-08T14:52:51.731276-08:00,1005.3375244140625,10.838851,10838.851 +12944,2025-03-08T14:53:02.567961-08:00,1005.3807983398438,10.836685,10836.685 +12945,2025-03-08T14:53:13.410426-08:00,1005.37060546875,10.842465,10842.465 +12946,2025-03-08T14:53:24.254587-08:00,1005.3717041015625,10.844161,10844.161 +12947,2025-03-08T14:53:35.091564-08:00,1005.3518676757812,10.836977,10836.977 +12948,2025-03-08T14:53:45.935238-08:00,1005.37060546875,10.843674,10843.674 +12949,2025-03-08T14:53:56.777690-08:00,1005.3773193359375,10.842452,10842.452 +12950,2025-03-08T14:54:07.626421-08:00,1005.3905639648438,10.848731,10848.731 +12951,2025-03-08T14:54:18.466412-08:00,1005.4037475585938,10.839991,10839.991 +12952,2025-03-08T14:54:29.297659-08:00,1005.348388671875,10.831247,10831.247 +12953,2025-03-08T14:54:40.141419-08:00,1005.4146118164062,10.84376,10843.76 +12954,2025-03-08T14:54:50.994824-08:00,1005.361572265625,10.853405,10853.405 +12955,2025-03-08T14:55:01.831363-08:00,1005.373779296875,10.836539,10836.539 +12956,2025-03-08T14:55:12.669746-08:00,1005.3472900390625,10.838383,10838.383 +12957,2025-03-08T14:55:23.517455-08:00,1005.3881225585938,10.847709,10847.709 +12958,2025-03-08T14:55:34.359419-08:00,1005.3682861328125,10.841964,10841.964 +12959,2025-03-08T14:55:45.196710-08:00,1005.35498046875,10.837291,10837.291 +12960,2025-03-08T14:55:56.034319-08:00,1005.373779296875,10.837609,10837.609 +12961,2025-03-08T14:56:06.887426-08:00,1005.35498046875,10.853107,10853.107 +12962,2025-03-08T14:56:17.721237-08:00,1005.345947265625,10.833811,10833.811 +12963,2025-03-08T14:56:28.575618-08:00,1005.3538818359375,10.854381,10854.381 +12964,2025-03-08T14:56:39.413686-08:00,1005.3538818359375,10.838068,10838.068 +12965,2025-03-08T14:56:50.261715-08:00,1005.35498046875,10.848029,10848.029 +12966,2025-03-08T14:57:01.108126-08:00,1005.3538818359375,10.846411,10846.411 +12967,2025-03-08T14:57:11.958612-08:00,1005.361572265625,10.850486,10850.486 +12968,2025-03-08T14:57:22.800663-08:00,1005.3892211914062,10.842051,10842.051 +12969,2025-03-08T14:57:33.640470-08:00,1005.38037109375,10.839807,10839.807 +12970,2025-03-08T14:57:44.494975-08:00,1005.348388671875,10.854505,10854.505 +12971,2025-03-08T14:57:55.333699-08:00,1005.395751953125,10.838724,10838.724 +12972,2025-03-08T14:58:06.174419-08:00,1005.3814697265625,10.84072,10840.72 +12973,2025-03-08T14:58:17.017647-08:00,1005.349365234375,10.843228,10843.228 +12974,2025-03-08T14:58:27.856617-08:00,1005.3284301757812,10.83897,10838.97 +12975,2025-03-08T14:58:38.692579-08:00,1005.357421875,10.835962,10835.962 +12976,2025-03-08T14:58:49.539424-08:00,1005.357421875,10.846845,10846.845 +12977,2025-03-08T14:59:00.374621-08:00,1005.3309326171875,10.835197,10835.197 +12978,2025-03-08T14:59:11.216698-08:00,1005.338623046875,10.842077,10842.077 +12979,2025-03-08T14:59:22.053601-08:00,1005.3309326171875,10.836903,10836.903 +12980,2025-03-08T14:59:32.895405-08:00,1005.292236328125,10.841804,10841.804 +12981,2025-03-08T14:59:43.739660-08:00,1005.341064453125,10.844255,10844.255 +12982,2025-03-08T14:59:54.589480-08:00,1005.33447265625,10.84982,10849.82 +12983,2025-03-08T15:00:05.431635-08:00,1005.3026733398438,10.842155,10842.155 +12984,2025-03-08T15:00:16.284849-08:00,1005.3250122070312,10.853214,10853.214 +12985,2025-03-08T15:00:27.120425-08:00,1005.2971801757812,10.835576,10835.576 +12986,2025-03-08T15:00:37.973412-08:00,1005.2985229492188,10.852987,10852.987 +12987,2025-03-08T15:00:48.828612-08:00,1005.299560546875,10.8552,10855.2 +12988,2025-03-08T15:00:59.676641-08:00,1005.2918701171875,10.848029,10848.029 +12989,2025-03-08T15:01:10.518818-08:00,1005.341796875,10.842177,10842.177 +12990,2025-03-08T15:01:21.361967-08:00,1005.3233032226562,10.843149,10843.149 +12991,2025-03-08T15:01:32.214327-08:00,1005.3309326171875,10.85236,10852.36 +12992,2025-03-08T15:01:43.053423-08:00,1005.2846069335938,10.839096,10839.096 +12993,2025-03-08T15:01:53.901427-08:00,1005.306884765625,10.848004,10848.004 +12994,2025-03-08T15:02:04.749725-08:00,1005.321533203125,10.848298,10848.298 +12995,2025-03-08T15:02:15.590729-08:00,1005.302734375,10.841004,10841.004 +12996,2025-03-08T15:02:26.431473-08:00,1005.3261108398438,10.840744,10840.744 +12997,2025-03-08T15:02:37.273413-08:00,1005.3341674804688,10.84194,10841.94 +12998,2025-03-08T15:02:48.125367-08:00,1005.302001953125,10.851954,10851.954 +12999,2025-03-08T15:02:58.972424-08:00,1005.3208618164062,10.847057,10847.057 +13000,2025-03-08T15:03:09.815428-08:00,1005.3167114257812,10.843004,10843.004 +13001,2025-03-08T15:03:20.669499-08:00,1005.3219604492188,10.854071,10854.071 +13002,2025-03-08T15:03:31.514343-08:00,1005.3258056640625,10.844844,10844.844 +13003,2025-03-08T15:03:42.359557-08:00,1005.3244018554688,10.845214,10845.214 +13004,2025-03-08T15:03:53.204671-08:00,1005.34423828125,10.845114,10845.114 +13005,2025-03-08T15:04:04.048425-08:00,1005.3110961914062,10.843754,10843.754 +13006,2025-03-08T15:04:14.903429-08:00,1005.2901611328125,10.855004,10855.004 +13007,2025-03-08T15:04:25.744754-08:00,1005.291259765625,10.841325,10841.325 +13008,2025-03-08T15:04:36.588665-08:00,1005.3069458007812,10.843911,10843.911 +13009,2025-03-08T15:04:47.437649-08:00,1005.2937622070312,10.848984,10848.984 +13010,2025-03-08T15:04:58.280417-08:00,1005.3125,10.842768,10842.768 +13011,2025-03-08T15:05:09.125940-08:00,1005.3334350585938,10.845523,10845.523 +13012,2025-03-08T15:05:19.978427-08:00,1005.30029296875,10.852487,10852.487 +13013,2025-03-08T15:05:30.817416-08:00,1005.3323364257812,10.838989,10838.989 +13014,2025-03-08T15:05:41.854265-08:00,1005.326904296875,11.036849,11036.849 +13015,2025-03-08T15:05:52.698014-08:00,1005.2860107421875,10.843749,10843.749 +13016,2025-03-08T15:06:03.544741-08:00,1005.3135986328125,10.846727,10846.727 +13017,2025-03-08T15:06:14.396221-08:00,1005.3226318359375,10.85148,10851.48 +13018,2025-03-08T15:06:25.238899-08:00,1005.3135986328125,10.842678,10842.678 +13019,2025-03-08T15:06:36.080393-08:00,1005.3069458007812,10.841494,10841.494 +13020,2025-03-08T15:06:46.937062-08:00,1005.30029296875,10.856669,10856.669 +13021,2025-03-08T15:06:57.779283-08:00,1005.2828979492188,10.842221,10842.221 +13022,2025-03-08T15:07:08.621804-08:00,1005.2884521484375,10.842521,10842.521 +13023,2025-03-08T15:07:19.471005-08:00,1005.3093872070312,10.849201,10849.201 +13024,2025-03-08T15:07:30.324956-08:00,1005.2818603515625,10.853951,10853.951 +13025,2025-03-08T15:07:41.162338-08:00,1005.2697143554688,10.837382,10837.382 +13026,2025-03-08T15:07:52.013873-08:00,1005.3240356445312,10.851535,10851.535 +13027,2025-03-08T15:08:02.870152-08:00,1005.3118896484375,10.856279,10856.279 +13028,2025-03-08T15:08:13.716043-08:00,1005.3240356445312,10.845891,10845.891 +13029,2025-03-08T15:08:24.559997-08:00,1005.2909545898438,10.843954,10843.954 +13030,2025-03-08T15:08:35.402148-08:00,1005.2932739257812,10.842151,10842.151 +13031,2025-03-08T15:08:46.254987-08:00,1005.31982421875,10.852839,10852.839 +13032,2025-03-08T15:08:57.104763-08:00,1005.326416015625,10.849776,10849.776 +13033,2025-03-08T15:09:07.959004-08:00,1005.3463134765625,10.854241,10854.241 +13034,2025-03-08T15:09:18.801992-08:00,1005.3209228515625,10.842988,10842.988 +13035,2025-03-08T15:09:29.650312-08:00,1005.2932739257812,10.84832,10848.32 +13036,2025-03-08T15:09:40.497192-08:00,1005.3076782226562,10.84688,10846.88 +13037,2025-03-08T15:09:51.349083-08:00,1005.3023681640625,10.851891,10851.891 +13038,2025-03-08T15:10:02.201811-08:00,1005.30908203125,10.852728,10852.728 +13039,2025-03-08T15:10:13.046008-08:00,1005.318115234375,10.844197,10844.197 +13040,2025-03-08T15:10:23.888769-08:00,1005.305908203125,10.842761,10842.761 +13041,2025-03-08T15:10:34.744012-08:00,1005.2915649414062,10.855243,10855.243 +13042,2025-03-08T15:10:45.586138-08:00,1005.2849731445312,10.842126,10842.126 +13043,2025-03-08T15:10:56.436033-08:00,1005.3072509765625,10.849895,10849.895 +13044,2025-03-08T15:11:07.293204-08:00,1005.3125,10.857171,10857.171 +13045,2025-03-08T15:11:18.138988-08:00,1005.2793579101562,10.845784,10845.784 +13046,2025-03-08T15:11:28.992971-08:00,1005.3191528320312,10.853983,10853.983 +13047,2025-03-08T15:11:39.841097-08:00,1005.29931640625,10.848126,10848.126 +13048,2025-03-08T15:11:50.687764-08:00,1005.2518920898438,10.846667,10846.667 +13049,2025-03-08T15:12:01.539033-08:00,1005.28076171875,10.851269,10851.269 +13050,2025-03-08T15:12:12.392763-08:00,1005.2860107421875,10.85373,10853.73 +13051,2025-03-08T15:12:23.243421-08:00,1005.3536987304688,10.850658,10850.658 +13052,2025-03-08T15:12:34.103200-08:00,1005.322998046875,10.859779,10859.779 +13053,2025-03-08T15:12:44.953760-08:00,1005.3005981445312,10.85056,10850.56 +13054,2025-03-08T15:12:55.806966-08:00,1005.302001953125,10.853206,10853.206 +13055,2025-03-08T15:13:06.652933-08:00,1005.3086547851562,10.845967,10845.967 +13056,2025-03-08T15:13:17.498764-08:00,1005.3005981445312,10.845831,10845.831 +13057,2025-03-08T15:13:28.352810-08:00,1005.3072509765625,10.854046,10854.046 +13058,2025-03-08T15:13:39.193861-08:00,1005.29541015625,10.841051,10841.051 +13059,2025-03-08T15:13:50.041918-08:00,1005.3096923828125,10.848057,10848.057 +13060,2025-03-08T15:14:00.888764-08:00,1005.29541015625,10.846846,10846.846 +13061,2025-03-08T15:14:11.742896-08:00,1005.2821655273438,10.854132,10854.132 +13062,2025-03-08T15:14:22.583862-08:00,1005.3139038085938,10.840966,10840.966 +13063,2025-03-08T15:14:33.422323-08:00,1005.3096923828125,10.838461,10838.461 +13064,2025-03-08T15:14:44.268706-08:00,1005.3351440429688,10.846383,10846.383 +13065,2025-03-08T15:14:55.121761-08:00,1005.3495483398438,10.853055,10853.055 +13066,2025-03-08T15:15:05.966995-08:00,1005.32958984375,10.845234,10845.234 +13067,2025-03-08T15:15:16.809801-08:00,1005.32958984375,10.842806,10842.806 +13068,2025-03-08T15:15:27.664427-08:00,1005.3031005859375,10.854626,10854.626 +13069,2025-03-08T15:15:38.508821-08:00,1005.3244018554688,10.844394,10844.394 +13070,2025-03-08T15:15:49.365759-08:00,1005.3177490234375,10.856938,10856.938 +13071,2025-03-08T15:16:00.216768-08:00,1005.2988891601562,10.851009,10851.009 +13072,2025-03-08T15:16:11.056872-08:00,1005.2658081054688,10.840104,10840.104 +13073,2025-03-08T15:16:21.912081-08:00,1005.28564453125,10.855209,10855.209 +13074,2025-03-08T15:16:32.758362-08:00,1005.2779541015625,10.846281,10846.281 +13075,2025-03-08T15:16:43.608803-08:00,1005.3386840820312,10.850441,10850.441 +13076,2025-03-08T15:16:54.457429-08:00,1005.2681884765625,10.848626,10848.626 +13077,2025-03-08T15:17:05.306822-08:00,1005.2723388671875,10.849393,10849.393 +13078,2025-03-08T15:17:16.154149-08:00,1005.2870483398438,10.847327,10847.327 +13079,2025-03-08T15:17:27.005303-08:00,1005.281494140625,10.851154,10851.154 +13080,2025-03-08T15:17:37.852019-08:00,1005.2870483398438,10.846716,10846.716 +13081,2025-03-08T15:17:48.702174-08:00,1005.30029296875,10.850155,10850.155 +13082,2025-03-08T15:17:59.560105-08:00,1005.302734375,10.857931,10857.931 +13083,2025-03-08T15:18:10.411120-08:00,1005.2550048828125,10.851015,10851.015 +13084,2025-03-08T15:18:21.258062-08:00,1005.294677734375,10.846942,10846.942 +13085,2025-03-08T15:18:32.100745-08:00,1005.2960815429688,10.842683,10842.683 +13086,2025-03-08T15:18:42.953761-08:00,1005.3013305664062,10.853016,10853.016 +13087,2025-03-08T15:18:53.803815-08:00,1005.2748413085938,10.850054,10850.054 +13088,2025-03-08T15:19:04.651760-08:00,1005.3103637695312,10.847945,10847.945 +13089,2025-03-08T15:19:15.501786-08:00,1005.3103637695312,10.850026,10850.026 +13090,2025-03-08T15:19:26.345960-08:00,1005.3037719726562,10.844174,10844.174 +13091,2025-03-08T15:19:37.189031-08:00,1005.3292236328125,10.843071,10843.071 +13092,2025-03-08T15:19:48.047017-08:00,1005.2960815429688,10.857986,10857.986 +13093,2025-03-08T15:19:58.892109-08:00,1005.302734375,10.845092,10845.092 +13094,2025-03-08T15:20:09.739760-08:00,1005.330322265625,10.847651,10847.651 +13095,2025-03-08T15:20:20.590081-08:00,1005.3557739257812,10.850321,10850.321 +13096,2025-03-08T15:20:31.442909-08:00,1005.31591796875,10.852828,10852.828 +13097,2025-03-08T15:20:42.287018-08:00,1005.2894287109375,10.844109,10844.109 +13098,2025-03-08T15:20:53.141756-08:00,1005.3292236328125,10.854738,10854.738 +13099,2025-03-08T15:21:03.992641-08:00,1005.3557739257812,10.850885,10850.885 +13100,2025-03-08T15:21:14.835393-08:00,1005.3292236328125,10.842752,10842.752 +13101,2025-03-08T15:21:25.681806-08:00,1005.3225708007812,10.846413,10846.413 +13102,2025-03-08T15:21:36.525758-08:00,1005.3013305664062,10.843952,10843.952 +13103,2025-03-08T15:21:47.368763-08:00,1005.3225708007812,10.843005,10843.005 +13104,2025-03-08T15:21:58.212762-08:00,1005.3212280273438,10.843999,10843.999 +13105,2025-03-08T15:22:09.054997-08:00,1005.341064453125,10.842235,10842.235 +13106,2025-03-08T15:22:19.909519-08:00,1005.3334350585938,10.854522,10854.522 +13107,2025-03-08T15:22:30.747759-08:00,1005.353271484375,10.83824,10838.24 +13108,2025-03-08T15:22:41.601040-08:00,1005.30029296875,10.853281,10853.281 +13109,2025-03-08T15:22:52.448765-08:00,1005.3201293945312,10.847725,10847.725 +13110,2025-03-08T15:23:03.292737-08:00,1005.3467407226562,10.843972,10843.972 +13111,2025-03-08T15:23:14.140172-08:00,1005.33203125,10.847435,10847.435 +13112,2025-03-08T15:23:24.986003-08:00,1005.3267822265625,10.845831,10845.831 +13113,2025-03-08T15:23:35.841434-08:00,1005.341064453125,10.855431,10855.431 +13114,2025-03-08T15:23:46.679769-08:00,1005.291259765625,10.838335,10838.335 +13115,2025-03-08T15:23:57.533764-08:00,1005.306884765625,10.853995,10853.995 +13116,2025-03-08T15:24:08.379756-08:00,1005.3146362304688,10.845992,10845.992 +13117,2025-03-08T15:24:19.226996-08:00,1005.3358764648438,10.84724,10847.24 +13118,2025-03-08T15:24:30.077754-08:00,1005.30029296875,10.850758,10850.758 +13119,2025-03-08T15:24:40.924766-08:00,1005.3292236328125,10.847012,10847.012 +13120,2025-03-08T15:24:51.783003-08:00,1005.2971801757812,10.858237,10858.237 +13121,2025-03-08T15:25:02.623083-08:00,1005.2881469726562,10.84008,10840.08 +13122,2025-03-08T15:25:13.481904-08:00,1005.3013305664062,10.858821,10858.821 +13123,2025-03-08T15:25:24.322046-08:00,1005.302734375,10.840142,10840.142 +13124,2025-03-08T15:25:35.181064-08:00,1005.3037719726562,10.859018,10859.018 +13125,2025-03-08T15:25:46.030803-08:00,1005.3037719726562,10.849739,10849.739 +13126,2025-03-08T15:25:56.877763-08:00,1005.281494140625,10.84696,10846.96 +13127,2025-03-08T15:26:07.726754-08:00,1005.31591796875,10.848991,10848.991 +13128,2025-03-08T15:26:18.582953-08:00,1005.3184204101562,10.856199,10856.199 +13129,2025-03-08T15:26:29.432900-08:00,1005.311767578125,10.849947,10849.947 +13130,2025-03-08T15:26:40.280404-08:00,1005.2918701171875,10.847504,10847.504 +13131,2025-03-08T15:26:51.135939-08:00,1005.2985229492188,10.855535,10855.535 +13132,2025-03-08T15:27:01.978804-08:00,1005.3062744140625,10.842865,10842.865 +13133,2025-03-08T15:27:12.832093-08:00,1005.2985229492188,10.853289,10853.289 +13134,2025-03-08T15:27:23.682095-08:00,1005.314208984375,10.850002,10850.002 +13135,2025-03-08T15:27:34.529323-08:00,1005.2744750976562,10.847228,10847.228 +13136,2025-03-08T15:27:45.375996-08:00,1005.2598266601562,10.846673,10846.673 +13137,2025-03-08T15:27:56.222737-08:00,1005.2744750976562,10.846741,10846.741 +13138,2025-03-08T15:28:07.075396-08:00,1005.2754516601562,10.852659,10852.659 +13139,2025-03-08T15:28:17.914760-08:00,1005.2887573242188,10.839364,10839.364 +13140,2025-03-08T15:28:28.773829-08:00,1005.2689208984375,10.859069,10859.069 +13141,2025-03-08T15:28:39.621762-08:00,1005.303466796875,10.847933,10847.933 +13142,2025-03-08T15:28:50.465062-08:00,1005.2901611328125,10.8433,10843.3 +13143,2025-03-08T15:29:01.317169-08:00,1005.291259765625,10.852107,10852.107 +13144,2025-03-08T15:29:12.162795-08:00,1005.303466796875,10.845626,10845.626 +13145,2025-03-08T15:29:23.001763-08:00,1005.2966918945312,10.838968,10838.968 +13146,2025-03-08T15:29:33.859737-08:00,1005.2779541015625,10.857974,10857.974 +13147,2025-03-08T15:29:44.702767-08:00,1005.303466796875,10.84303,10843.03 +13148,2025-03-08T15:29:55.536726-08:00,1005.304443359375,10.833959,10833.959 +13149,2025-03-08T15:30:06.385815-08:00,1005.3058471679688,10.849089,10849.089 +13150,2025-03-08T15:30:17.232018-08:00,1005.2870483398438,10.846203,10846.203 +13151,2025-03-08T15:30:28.085822-08:00,1005.306884765625,10.853804,10853.804 +13152,2025-03-08T15:30:38.928754-08:00,1005.28173828125,10.842932,10842.932 +13153,2025-03-08T15:30:49.780734-08:00,1005.2870483398438,10.85198,10851.98 +13154,2025-03-08T15:31:00.628763-08:00,1005.28173828125,10.848029,10848.029 +13155,2025-03-08T15:31:11.470024-08:00,1005.3093872070312,10.841261,10841.261 +13156,2025-03-08T15:31:22.321318-08:00,1005.3037719726562,10.851294,10851.294 +13157,2025-03-08T15:31:33.179052-08:00,1005.3236694335938,10.857734,10857.734 +13158,2025-03-08T15:31:44.022799-08:00,1005.3194580078125,10.843747,10843.747 +13159,2025-03-08T15:31:54.872091-08:00,1005.3261108398438,10.849292,10849.292 +13160,2025-03-08T15:32:05.719759-08:00,1005.3009643554688,10.847668,10847.668 +13161,2025-03-08T15:32:16.564463-08:00,1005.2821655273438,10.844704,10844.704 +13162,2025-03-08T15:32:27.417766-08:00,1005.3086547851562,10.853303,10853.303 +13163,2025-03-08T15:32:38.261319-08:00,1005.3375854492188,10.843553,10843.553 +13164,2025-03-08T15:32:49.103617-08:00,1005.349853515625,10.842298,10842.298 +13165,2025-03-08T15:32:59.946045-08:00,1005.317626953125,10.842428,10842.428 +13166,2025-03-08T15:33:10.796760-08:00,1005.306884765625,10.850715,10850.715 +13167,2025-03-08T15:33:21.644136-08:00,1005.3323364257812,10.847376,10847.376 +13168,2025-03-08T15:33:32.494763-08:00,1005.3267211914062,10.850627,10850.627 +13169,2025-03-08T15:33:43.341014-08:00,1005.3467407226562,10.846251,10846.251 +13170,2025-03-08T15:33:54.190027-08:00,1005.2935791015625,10.849013,10849.013 +13171,2025-03-08T15:34:05.047827-08:00,1005.3239135742188,10.8578,10857.8 +13172,2025-03-08T15:34:15.897068-08:00,1005.3306274414062,10.849241,10849.241 +13173,2025-03-08T15:34:26.747064-08:00,1005.3093872070312,10.849996,10849.996 +13174,2025-03-08T15:34:37.603381-08:00,1005.3671875,10.856317,10856.317 +13175,2025-03-08T15:34:48.447789-08:00,1005.3329467773438,10.844408,10844.408 +13176,2025-03-08T15:34:59.289763-08:00,1005.3065795898438,10.841974,10841.974 +13177,2025-03-08T15:35:10.145755-08:00,1005.3075561523438,10.855992,10855.992 +13178,2025-03-08T15:35:20.989763-08:00,1005.3156127929688,10.844008,10844.008 +13179,2025-03-08T15:35:31.842772-08:00,1005.2743530273438,10.853009,10853.009 +13180,2025-03-08T15:35:42.698764-08:00,1005.3033447265625,10.855992,10855.992 +13181,2025-03-08T15:35:53.551758-08:00,1005.3114013671875,10.852994,10852.994 +13182,2025-03-08T15:36:04.395078-08:00,1005.3124389648438,10.84332,10843.32 +13183,2025-03-08T15:36:15.243415-08:00,1005.2870483398438,10.848337,10848.337 +13184,2025-03-08T15:36:26.091143-08:00,1005.2870483398438,10.847728,10847.728 +13185,2025-03-08T15:36:36.945842-08:00,1005.2737426757812,10.854699,10854.699 +13186,2025-03-08T15:36:47.800547-08:00,1005.3106079101562,10.854705,10854.705 +13187,2025-03-08T15:36:58.655242-08:00,1005.309326171875,10.854695,10854.695 +13188,2025-03-08T15:37:09.508574-08:00,1005.3357543945312,10.853332,10853.332 +13189,2025-03-08T15:37:20.352752-08:00,1005.2960815429688,10.844178,10844.178 +13190,2025-03-08T15:37:31.206147-08:00,1005.2761840820312,10.853395,10853.395 +13191,2025-03-08T15:37:42.061765-08:00,1005.309326171875,10.855618,10855.618 +13192,2025-03-08T15:37:52.915755-08:00,1005.288330078125,10.85399,10853.99 +13193,2025-03-08T15:38:03.768735-08:00,1005.2974243164062,10.85298,10852.98 +13194,2025-03-08T15:38:14.625760-08:00,1005.309326171875,10.857025,10857.025 +13195,2025-03-08T15:38:25.468966-08:00,1005.2893676757812,10.843206,10843.206 +13196,2025-03-08T15:38:36.322763-08:00,1005.3197021484375,10.853797,10853.797 +13197,2025-03-08T15:38:47.176013-08:00,1005.3117065429688,10.85325,10853.25 +13198,2025-03-08T15:38:58.019911-08:00,1005.32080078125,10.843898,10843.898 +13199,2025-03-08T15:39:08.874912-08:00,1005.2876586914062,10.855001,10855.001 +13200,2025-03-08T15:39:19.718070-08:00,1005.281005859375,10.843158,10843.158 +13201,2025-03-08T15:39:30.572103-08:00,1005.3074951171875,10.854033,10854.033 +13202,2025-03-08T15:39:41.433070-08:00,1005.3074951171875,10.860967,10860.967 +13203,2025-03-08T15:39:52.271849-08:00,1005.281005859375,10.838779,10838.779 +13204,2025-03-08T15:40:03.122945-08:00,1005.3009643554688,10.851096,10851.096 +13205,2025-03-08T15:40:13.967835-08:00,1005.3064575195312,10.84489,10844.89 +13206,2025-03-08T15:40:24.821234-08:00,1005.3009643554688,10.853399,10853.399 +13207,2025-03-08T15:40:35.677758-08:00,1005.3074951171875,10.856524,10856.524 +13208,2025-03-08T15:40:46.531913-08:00,1005.281005859375,10.854155,10854.155 +13209,2025-03-08T15:40:57.382764-08:00,1005.3131103515625,10.850851,10850.851 +13210,2025-03-08T15:41:08.239838-08:00,1005.2775268554688,10.857074,10857.074 +13211,2025-03-08T15:41:19.083301-08:00,1005.3026733398438,10.843463,10843.463 +13212,2025-03-08T15:41:29.936763-08:00,1005.255126953125,10.853462,10853.462 +13213,2025-03-08T15:41:40.791626-08:00,1005.2642211914062,10.854863,10854.863 +13214,2025-03-08T15:41:51.641445-08:00,1005.2510375976562,10.849819,10849.819 +13215,2025-03-08T15:42:02.476034-08:00,1005.2653198242188,10.834589,10834.589 +13216,2025-03-08T15:42:13.332374-08:00,1005.2709350585938,10.85634,10856.34 +13217,2025-03-08T15:42:24.186031-08:00,1005.2510375976562,10.853657,10853.657 +13218,2025-03-08T15:42:35.043022-08:00,1005.26953125,10.856991,10856.991 +13219,2025-03-08T15:42:45.895852-08:00,1005.2775268554688,10.85283,10852.83 +13220,2025-03-08T15:42:56.747992-08:00,1005.2842407226562,10.85214,10852.14 +13221,2025-03-08T15:43:07.592754-08:00,1005.2761840820312,10.844762,10844.762 +13222,2025-03-08T15:43:18.445969-08:00,1005.244384765625,10.853215,10853.215 +13223,2025-03-08T15:43:29.290762-08:00,1005.2842407226562,10.844793,10844.793 +13224,2025-03-08T15:43:40.145755-08:00,1005.2761840820312,10.854993,10854.993 +13225,2025-03-08T15:43:50.988764-08:00,1005.2352905273438,10.843009,10843.009 +13226,2025-03-08T15:44:01.833358-08:00,1005.1942138671875,10.844594,10844.594 +13227,2025-03-08T15:44:12.687052-08:00,1005.1875610351562,10.853694,10853.694 +13228,2025-03-08T15:44:23.533150-08:00,1005.2129516601562,10.846098,10846.098 +13229,2025-03-08T15:44:34.385805-08:00,1005.239501953125,10.852655,10852.655 +13230,2025-03-08T15:44:45.242115-08:00,1005.2450561523438,10.85631,10856.31 +13231,2025-03-08T15:44:56.092140-08:00,1005.2450561523438,10.850025,10850.025 +13232,2025-03-08T15:45:04.443838-08:00,1005.2503051757812,8.351698,8351.698 +13233,2025-03-08T15:45:06.942760-08:00,1005.2966918945312,2.498922,2498.922 +13234,2025-03-08T15:45:17.798754-08:00,1005.27685546875,10.855994,10855.994 +13235,2025-03-08T15:45:28.643757-08:00,1005.2782592773438,10.845003,10845.003 +13236,2025-03-08T15:45:39.491748-08:00,1005.2715454101562,10.847991,10847.991 +13237,2025-03-08T15:45:50.342758-08:00,1005.2437744140625,10.85101,10851.01 +13238,2025-03-08T15:46:01.196762-08:00,1005.2437744140625,10.854004,10854.004 +13239,2025-03-08T15:46:12.052008-08:00,1005.2293701171875,10.855246,10855.246 +13240,2025-03-08T15:46:22.904966-08:00,1005.2570190429688,10.852958,10852.958 +13241,2025-03-08T15:46:33.761958-08:00,1005.2384643554688,10.856992,10856.992 +13242,2025-03-08T15:46:44.614817-08:00,1005.2650146484375,10.852859,10852.859 +13243,2025-03-08T15:46:55.459080-08:00,1005.2859497070312,10.844263,10844.263 +13244,2025-03-08T15:47:06.316061-08:00,1005.270263671875,10.856981,10856.981 +13245,2025-03-08T15:47:17.166607-08:00,1005.251708984375,10.850546,10850.546 +13246,2025-03-08T15:47:28.020764-08:00,1005.2528076171875,10.854157,10854.157 +13247,2025-03-08T15:47:38.869120-08:00,1005.2803344726562,10.848356,10848.356 +13248,2025-03-08T15:47:49.721026-08:00,1005.29248046875,10.851906,10851.906 +13249,2025-03-08T15:48:00.573790-08:00,1005.3135375976562,10.852764,10852.764 +13250,2025-03-08T15:48:11.423904-08:00,1005.288330078125,10.850114,10850.114 +13251,2025-03-08T15:48:22.268752-08:00,1005.260498046875,10.844848,10844.848 +13252,2025-03-08T15:48:33.118803-08:00,1005.26708984375,10.850051,10850.051 +13253,2025-03-08T15:48:43.966766-08:00,1005.2761840820312,10.847963,10847.963 +13254,2025-03-08T15:48:54.815759-08:00,1005.2828369140625,10.848993,10848.993 +13255,2025-03-08T15:49:05.667767-08:00,1005.20458984375,10.852008,10852.008 +13256,2025-03-08T15:49:16.521763-08:00,1005.2775268554688,10.853996,10853.996 +13257,2025-03-08T15:49:27.365341-08:00,1005.2310791015625,10.843578,10843.578 +13258,2025-03-08T15:49:38.224761-08:00,1005.2496948242188,10.85942,10859.42 +13259,2025-03-08T15:49:49.073097-08:00,1005.2401733398438,10.848336,10848.336 +13260,2025-03-08T15:49:59.927117-08:00,1005.2014770507812,10.85402,10854.02 +13261,2025-03-08T15:50:10.781775-08:00,1005.2468872070312,10.854658,10854.658 +13262,2025-03-08T15:50:21.638068-08:00,1005.2335815429688,10.856293,10856.293 +13263,2025-03-08T15:50:32.490089-08:00,1005.2478637695312,10.852021,10852.021 +13264,2025-03-08T15:50:43.345198-08:00,1005.24267578125,10.855109,10855.109 +13265,2025-03-08T15:50:54.195080-08:00,1005.2545166015625,10.849882,10849.882 +13266,2025-03-08T15:51:05.057017-08:00,1005.2255249023438,10.861937,10861.937 +13267,2025-03-08T15:51:15.911064-08:00,1005.234619140625,10.854047,10854.047 +13268,2025-03-08T15:51:26.763022-08:00,1005.2478637695312,10.851958,10851.958 +13269,2025-03-08T15:51:37.605805-08:00,1005.2545166015625,10.842783,10842.783 +13270,2025-03-08T15:51:48.464930-08:00,1005.2279663085938,10.859125,10859.125 +13271,2025-03-08T15:51:59.309765-08:00,1005.2293701171875,10.844835,10844.835 +13272,2025-03-08T15:52:10.167195-08:00,1005.23046875,10.85743,10857.43 +13273,2025-03-08T15:52:21.022970-08:00,1005.2039184570312,10.855775,10855.775 +13274,2025-03-08T15:52:31.879210-08:00,1005.2105712890625,10.85624,10856.24 +13275,2025-03-08T15:52:42.731686-08:00,1005.2262573242188,10.852476,10852.476 +13276,2025-03-08T15:52:53.594284-08:00,1005.2408447265625,10.862598,10862.598 +13277,2025-03-08T15:53:04.443920-08:00,1005.2310791015625,10.849636,10849.636 +13278,2025-03-08T15:53:15.302220-08:00,1005.265625,10.8583,10858.3 +13279,2025-03-08T15:53:26.151981-08:00,1005.260009765625,10.849761,10849.761 +13280,2025-03-08T15:53:36.999136-08:00,1005.2509155273438,10.847155,10847.155 +13281,2025-03-08T15:53:47.858905-08:00,1005.2324829101562,10.859769,10859.769 +13282,2025-03-08T15:53:58.710079-08:00,1005.2457275390625,10.851174,10851.174 +13283,2025-03-08T15:54:09.556853-08:00,1005.260009765625,10.846774,10846.774 +13284,2025-03-08T15:54:20.411759-08:00,1005.260009765625,10.854906,10854.906 +13285,2025-03-08T15:54:31.266762-08:00,1005.2481079101562,10.855003,10855.003 +13286,2025-03-08T15:54:52.963912-08:00,1005.25341796875,21.69715,21697.15 +13287,2025-03-08T15:55:03.807819-08:00,1005.26904296875,10.843907,10843.907 +13288,2025-03-08T15:55:14.649378-08:00,1005.295654296875,10.841559,10841.559 +13289,2025-03-08T15:55:25.504003-08:00,1005.2890014648438,10.854625,10854.625 +13290,2025-03-08T15:55:36.359134-08:00,1005.283447265625,10.855131,10855.131 +13291,2025-03-08T15:55:47.214018-08:00,1005.2701416015625,10.854884,10854.884 +13292,2025-03-08T15:55:58.066892-08:00,1005.283447265625,10.852874,10852.874 +13293,2025-03-08T15:56:08.909756-08:00,1005.2899780273438,10.842864,10842.864 +13294,2025-03-08T15:56:19.765891-08:00,1005.2781372070312,10.856135,10856.135 +13295,2025-03-08T15:56:30.619814-08:00,1005.2913818359375,10.853923,10853.923 +13296,2025-03-08T15:56:41.463758-08:00,1005.2871704101562,10.843944,10843.944 +13297,2025-03-08T15:56:52.317902-08:00,1005.2806396484375,10.854144,10854.144 +13298,2025-03-08T15:57:03.172931-08:00,1005.3052978515625,10.855029,10855.029 +13299,2025-03-08T15:57:14.016893-08:00,1005.2920532226562,10.843962,10843.962 +13300,2025-03-08T15:57:24.881888-08:00,1005.3143920898438,10.864995,10864.995 +13301,2025-03-08T15:57:35.730984-08:00,1005.2665405273438,10.849096,10849.096 +13302,2025-03-08T15:57:46.583836-08:00,1005.3010864257812,10.852852,10852.852 +13303,2025-03-08T15:57:57.435745-08:00,1005.2888793945312,10.851909,10851.909 +13304,2025-03-08T15:58:08.297760-08:00,1005.311279296875,10.862015,10862.015 +13305,2025-03-08T15:58:19.142821-08:00,1005.2823486328125,10.845061,10845.061 +13306,2025-03-08T15:58:29.998014-08:00,1005.2979736328125,10.855193,10855.193 +13307,2025-03-08T15:58:40.843951-08:00,1005.2781372070312,10.845937,10845.937 +13308,2025-03-08T15:58:51.693333-08:00,1005.2662353515625,10.849382,10849.382 +13309,2025-03-08T15:59:02.547114-08:00,1005.2962646484375,10.853781,10853.781 +13310,2025-03-08T15:59:13.408270-08:00,1005.2762451171875,10.861156,10861.156 +13311,2025-03-08T15:59:24.255103-08:00,1005.2697143554688,10.846833,10846.833 +13312,2025-03-08T15:59:35.111080-08:00,1005.2498168945312,10.855977,10855.977 +13313,2025-03-08T15:59:45.963351-08:00,1005.2920532226562,10.852271,10852.271 +13314,2025-03-08T15:59:56.820041-08:00,1005.3118896484375,10.85669,10856.69 +13315,2025-03-08T16:00:07.670149-08:00,1005.2996826171875,10.850108,10850.108 +13316,2025-03-08T16:00:18.519788-08:00,1005.3142700195312,10.849639,10849.639 +13317,2025-03-08T16:00:29.363901-08:00,1005.3275756835938,10.844113,10844.113 +13318,2025-03-08T16:00:40.215755-08:00,1005.2943725585938,10.851854,10851.854 +13319,2025-03-08T16:00:51.072746-08:00,1005.287841796875,10.856991,10856.991 +13320,2025-03-08T16:01:01.927002-08:00,1005.2954711914062,10.854256,10854.256 +13321,2025-03-08T16:01:12.774951-08:00,1005.2570190429688,10.847949,10847.949 +13322,2025-03-08T16:01:23.635798-08:00,1005.3045043945312,10.860847,10860.847 +13323,2025-03-08T16:01:34.477101-08:00,1005.2954711914062,10.841303,10841.303 +13324,2025-03-08T16:01:45.331479-08:00,1005.296875,10.854378,10854.378 +13325,2025-03-08T16:01:56.180984-08:00,1005.28466796875,10.849505,10849.505 +13326,2025-03-08T16:02:07.034147-08:00,1005.2714233398438,10.853163,10853.163 +13327,2025-03-08T16:02:17.882887-08:00,1005.2437744140625,10.84874,10848.74 +13328,2025-03-08T16:02:28.726719-08:00,1005.291259765625,10.843832,10843.832 +13329,2025-03-08T16:02:39.574093-08:00,1005.305908203125,10.847374,10847.374 +13330,2025-03-08T16:02:50.418589-08:00,1005.259521484375,10.844496,10844.496 +13331,2025-03-08T16:03:01.272260-08:00,1005.28466796875,10.853671,10853.671 +13332,2025-03-08T16:03:12.117427-08:00,1005.30029296875,10.845167,10845.167 +13333,2025-03-08T16:03:22.959908-08:00,1005.2804565429688,10.842481,10842.481 +13334,2025-03-08T16:03:33.811023-08:00,1005.259521484375,10.851115,10851.115 +13335,2025-03-08T16:03:44.656897-08:00,1005.2793579101562,10.845874,10845.874 +13336,2025-03-08T16:03:55.504241-08:00,1005.2329711914062,10.847344,10847.344 +13337,2025-03-08T16:04:06.354007-08:00,1005.2605590820312,10.849766,10849.766 +13338,2025-03-08T16:04:17.207758-08:00,1005.2329711914062,10.853751,10853.751 +13339,2025-03-08T16:04:28.056767-08:00,1005.2315673828125,10.849009,10849.009 +13340,2025-03-08T16:04:38.904763-08:00,1005.2605590820312,10.847996,10847.996 +13341,2025-03-08T16:04:49.764107-08:00,1005.2926635742188,10.859344,10859.344 +13342,2025-03-08T16:05:00.612767-08:00,1005.2581176757812,10.84866,10848.66 +13343,2025-03-08T16:05:11.463081-08:00,1005.2462768554688,10.850314,10850.314 +13344,2025-03-08T16:05:22.311333-08:00,1005.2354125976562,10.848252,10848.252 +13345,2025-03-08T16:05:33.167002-08:00,1005.2154541015625,10.855669,10855.669 +13346,2025-03-08T16:05:44.014523-08:00,1005.2098999023438,10.847521,10847.521 +13347,2025-03-08T16:05:54.871506-08:00,1005.2179565429688,10.856983,10856.983 +13348,2025-03-08T16:06:05.718388-08:00,1005.2047119140625,10.846882,10846.882 +13349,2025-03-08T16:06:16.572445-08:00,1005.2056884765625,10.854057,10854.057 +13350,2025-03-08T16:06:27.421657-08:00,1005.1990356445312,10.849212,10849.212 +13351,2025-03-08T16:06:38.272835-08:00,1005.1815795898438,10.851178,10851.178 +13352,2025-03-08T16:06:49.128725-08:00,1005.221435546875,10.85589,10855.89 +13353,2025-03-08T16:06:59.979747-08:00,1005.2238159179688,10.851022,10851.022 +13354,2025-03-08T16:07:10.827630-08:00,1005.205322265625,10.847883,10847.883 +13355,2025-03-08T16:07:21.676322-08:00,1005.1787719726562,10.848692,10848.692 +13356,2025-03-08T16:07:32.514316-08:00,1005.2129516601562,10.837994,10837.994 +13357,2025-03-08T16:07:43.363589-08:00,1005.1941528320312,10.849273,10849.273 +13358,2025-03-08T16:07:54.207663-08:00,1005.1676635742188,10.844074,10844.074 +13359,2025-03-08T16:08:05.056155-08:00,1005.18994140625,10.848492,10848.492 +13360,2025-03-08T16:08:15.905547-08:00,1005.196533203125,10.849392,10849.392 +13361,2025-03-08T16:08:26.754388-08:00,1005.2122802734375,10.848841,10848.841 +13362,2025-03-08T16:08:37.612859-08:00,1005.2244262695312,10.858471,10858.471 +13363,2025-03-08T16:08:48.462442-08:00,1005.1923217773438,10.849583,10849.583 +13364,2025-03-08T16:08:59.309574-08:00,1005.1815795898438,10.847132,10847.132 +13365,2025-03-08T16:09:10.164334-08:00,1005.201416015625,10.85476,10854.76 +13366,2025-03-08T16:09:21.019403-08:00,1005.1961059570312,10.855069,10855.069 +13367,2025-03-08T16:09:31.862579-08:00,1005.182861328125,10.843176,10843.176 +13368,2025-03-08T16:09:42.711589-08:00,1005.1640625,10.84901,10849.01 +13369,2025-03-08T16:09:53.560491-08:00,1005.2208862304688,10.848902,10848.902 +13370,2025-03-08T16:10:04.414378-08:00,1005.212890625,10.853887,10853.887 +13371,2025-03-08T16:10:15.274789-08:00,1005.1995849609375,10.860411,10860.411 +13372,2025-03-08T16:10:26.118714-08:00,1005.1864013671875,10.843925,10843.925 +13373,2025-03-08T16:10:36.983779-08:00,1005.154541015625,10.865065,10865.065 +13374,2025-03-08T16:10:47.826848-08:00,1005.1810913085938,10.843069,10843.069 +13375,2025-03-08T16:10:58.692500-08:00,1005.1810913085938,10.865652,10865.652 +13376,2025-03-08T16:11:09.540694-08:00,1005.1744384765625,10.848194,10848.194 +13377,2025-03-08T16:11:20.387649-08:00,1005.1821899414062,10.846955,10846.955 +13378,2025-03-08T16:11:31.230322-08:00,1005.1621704101562,10.842673,10842.673 +13379,2025-03-08T16:11:42.079546-08:00,1005.1356811523438,10.849224,10849.224 +13380,2025-03-08T16:11:52.920379-08:00,1005.1517333984375,10.840833,10840.833 +13381,2025-03-08T16:12:03.769575-08:00,1005.1782836914062,10.849196,10849.196 +13382,2025-03-08T16:12:14.623534-08:00,1005.1572875976562,10.853959,10853.959 +13383,2025-03-08T16:12:25.467630-08:00,1005.15966796875,10.844096,10844.096 +13384,2025-03-08T16:12:36.314656-08:00,1005.150634765625,10.847026,10847.026 +13385,2025-03-08T16:12:47.168323-08:00,1005.1582641601562,10.853667,10853.667 +13386,2025-03-08T16:12:58.011596-08:00,1005.1611938476562,10.843273,10843.273 +13387,2025-03-08T16:13:08.866406-08:00,1005.1556396484375,10.85481,10854.81 +13388,2025-03-08T16:13:19.704723-08:00,1005.14404296875,10.838317,10838.317 +13389,2025-03-08T16:13:30.557335-08:00,1005.1556396484375,10.852612,10852.612 +13390,2025-03-08T16:13:41.407360-08:00,1005.138427734375,10.850025,10850.025 +13391,2025-03-08T16:13:52.254742-08:00,1005.1904907226562,10.847382,10847.382 +13392,2025-03-08T16:14:03.105683-08:00,1005.142333984375,10.850941,10850.941 +13393,2025-03-08T16:14:13.964888-08:00,1005.1556396484375,10.859205,10859.205 +13394,2025-03-08T16:14:24.809487-08:00,1005.1412353515625,10.844599,10844.599 +13395,2025-03-08T16:14:35.662374-08:00,1005.14794921875,10.852887,10852.887 +13396,2025-03-08T16:14:46.499330-08:00,1005.1123657226562,10.836956,10836.956 +13397,2025-03-08T16:14:57.353305-08:00,1005.154541015625,10.853975,10853.975 +13398,2025-03-08T16:15:08.198644-08:00,1005.1663818359375,10.845339,10845.339 +13399,2025-03-08T16:15:19.044310-08:00,1005.1507568359375,10.845666,10845.666 +13400,2025-03-08T16:15:29.888650-08:00,1005.1431274414062,10.84434,10844.34 +13401,2025-03-08T16:15:40.739397-08:00,1005.149658203125,10.850747,10850.747 +13402,2025-03-08T16:15:51.589630-08:00,1005.1298217773438,10.850233,10850.233 +13403,2025-03-08T16:16:02.435397-08:00,1005.12841796875,10.845767,10845.767 +13404,2025-03-08T16:16:13.273880-08:00,1005.1350708007812,10.838483,10838.483 +13405,2025-03-08T16:16:24.122682-08:00,1005.1298217773438,10.848802,10848.802 +13406,2025-03-08T16:16:34.972011-08:00,1005.1350708007812,10.849329,10849.329 +13407,2025-03-08T16:16:45.813905-08:00,1005.1605224609375,10.841894,10841.894 +13408,2025-03-08T16:16:56.662299-08:00,1005.1682739257812,10.848394,10848.394 +13409,2025-03-08T16:17:07.506420-08:00,1005.1260986328125,10.844121,10844.121 +13410,2025-03-08T16:17:18.352305-08:00,1005.131591796875,10.845885,10845.885 +13411,2025-03-08T16:17:29.208590-08:00,1005.1235961914062,10.856285,10856.285 +13412,2025-03-08T16:17:40.051326-08:00,1005.1212768554688,10.842736,10842.736 +13413,2025-03-08T16:17:50.890787-08:00,1005.126708984375,10.839461,10839.461 +13414,2025-03-08T16:18:01.745663-08:00,1005.1201782226562,10.854876,10854.876 +13415,2025-03-08T16:18:12.593348-08:00,1005.1498413085938,10.847685,10847.685 +13416,2025-03-08T16:18:23.439327-08:00,1005.1299438476562,10.845979,10845.979 +13417,2025-03-08T16:18:34.278571-08:00,1005.1009521484375,10.839244,10839.244 +13418,2025-03-08T16:18:45.133939-08:00,1005.099609375,10.855368,10855.368 +13419,2025-03-08T16:18:55.975918-08:00,1005.1129150390625,10.841979,10841.979 +13420,2025-03-08T16:19:06.820659-08:00,1005.0853271484375,10.844741,10844.741 +13421,2025-03-08T16:19:17.661865-08:00,1005.1341552734375,10.841206,10841.206 +13422,2025-03-08T16:19:28.508507-08:00,1005.139404296875,10.846642,10846.642 +13423,2025-03-08T16:19:39.354752-08:00,1005.0929565429688,10.846245,10846.245 +13424,2025-03-08T16:19:50.198358-08:00,1005.0985717773438,10.843606,10843.606 +13425,2025-03-08T16:20:01.041211-08:00,1005.0919799804688,10.842853,10842.853 +13426,2025-03-08T16:20:11.889367-08:00,1005.0985717773438,10.848156,10848.156 +13427,2025-03-08T16:20:22.733328-08:00,1005.1038208007812,10.843961,10843.961 +13428,2025-03-08T16:20:33.586518-08:00,1005.09716796875,10.85319,10853.19 +13429,2025-03-08T16:20:44.425327-08:00,1005.0853271484375,10.838809,10838.809 +13430,2025-03-08T16:20:55.278395-08:00,1005.0853271484375,10.853068,10853.068 +13431,2025-03-08T16:21:06.116102-08:00,1005.0640869140625,10.837707,10837.707 +13432,2025-03-08T16:21:16.953564-08:00,1005.09716796875,10.837462,10837.462 +13433,2025-03-08T16:21:27.796812-08:00,1005.0828857421875,10.843248,10843.248 +13434,2025-03-08T16:21:38.644517-08:00,1005.0654907226562,10.847705,10847.705 +13435,2025-03-08T16:21:49.495455-08:00,1005.05078125,10.850938,10850.938 +13436,2025-03-08T16:22:00.337690-08:00,1005.0374755859375,10.842235,10842.235 +13437,2025-03-08T16:22:11.175558-08:00,1005.0640869140625,10.837868,10837.868 +13438,2025-03-08T16:22:22.030536-08:00,1005.0374755859375,10.854978,10854.978 +13439,2025-03-08T16:22:32.861185-08:00,1005.0242309570312,10.830649,10830.649 +13440,2025-03-08T16:22:43.715647-08:00,1005.0697021484375,10.854462,10854.462 +13441,2025-03-08T16:22:54.558217-08:00,1005.0374755859375,10.84257,10842.57 +13442,2025-03-08T16:23:05.396381-08:00,1005.0298461914062,10.838164,10838.164 +13443,2025-03-08T16:23:16.244567-08:00,1005.0574340820312,10.848186,10848.186 +13444,2025-03-08T16:23:27.088315-08:00,1005.0521850585938,10.843748,10843.748 +13445,2025-03-08T16:23:37.930661-08:00,1005.044189453125,10.842346,10842.346 +13446,2025-03-08T16:23:48.779467-08:00,1005.0176391601562,10.848806,10848.806 +13447,2025-03-08T16:23:59.610484-08:00,1005.0587768554688,10.831017,10831.017 +13448,2025-03-08T16:24:10.458802-08:00,1005.0388793945312,10.848318,10848.318 +13449,2025-03-08T16:24:21.292408-08:00,1005.0332641601562,10.833606,10833.606 +13450,2025-03-08T16:24:42.995381-08:00,1005.0388793945312,21.702973,21702.973 +13451,2025-03-08T16:24:53.838471-08:00,1005.0479736328125,10.84309,10843.09 +13452,2025-03-08T16:25:04.686592-08:00,1005.059814453125,10.848121,10848.121 +13453,2025-03-08T16:25:15.530332-08:00,1005.0454711914062,10.84374,10843.74 +13454,2025-03-08T16:25:26.368125-08:00,1005.059814453125,10.837793,10837.793 +13455,2025-03-08T16:25:37.215377-08:00,1005.0678100585938,10.847252,10847.252 +13456,2025-03-08T16:25:48.060453-08:00,1005.0545043945312,10.845076,10845.076 +13457,2025-03-08T16:25:58.896692-08:00,1005.0587768554688,10.836239,10836.239 +13458,2025-03-08T16:26:09.739454-08:00,1005.0574340820312,10.842762,10842.762 +13459,2025-03-08T16:26:20.582565-08:00,1005.072021484375,10.843111,10843.111 +13460,2025-03-08T16:26:31.426318-08:00,1005.05078125,10.843753,10843.753 +13461,2025-03-08T16:26:42.269767-08:00,1005.044189453125,10.843449,10843.449 +13462,2025-03-08T16:26:53.117335-08:00,1005.0496826171875,10.847568,10847.568 +13463,2025-03-08T16:27:03.956259-08:00,1005.0218505859375,10.838924,10838.924 +13464,2025-03-08T16:27:14.794384-08:00,1005.041748046875,10.838125,10838.125 +13465,2025-03-08T16:27:25.634376-08:00,1005.0340576171875,10.839992,10839.992 +13466,2025-03-08T16:27:36.472405-08:00,1005.03515625,10.838029,10838.029 +13467,2025-03-08T16:27:47.322311-08:00,1005.0326538085938,10.849906,10849.906 +13468,2025-03-08T16:27:58.169527-08:00,1005.04736328125,10.847216,10847.216 +13469,2025-03-08T16:28:09.008327-08:00,1005.0393676757812,10.8388,10838.8 +13470,2025-03-08T16:28:19.849572-08:00,1005.0606079101562,10.841245,10841.245 +13471,2025-03-08T16:28:30.689705-08:00,1005.0870971679688,10.840133,10840.133 +13472,2025-03-08T16:28:41.530411-08:00,1005.0738525390625,10.840706,10840.706 +13473,2025-03-08T16:28:52.370329-08:00,1005.0960693359375,10.839918,10839.918 +13474,2025-03-08T16:29:03.211708-08:00,1005.0658569335938,10.841379,10841.379 +13475,2025-03-08T16:29:14.054783-08:00,1005.0525512695312,10.843075,10843.075 +13476,2025-03-08T16:29:24.892472-08:00,1005.036865234375,10.837689,10837.689 +13477,2025-03-08T16:29:35.728572-08:00,1005.0658569335938,10.8361,10836.1 +13478,2025-03-08T16:29:46.573680-08:00,1005.0714111328125,10.845108,10845.108 +13479,2025-03-08T16:29:57.416015-08:00,1005.0648193359375,10.842335,10842.335 +13480,2025-03-08T16:30:08.262407-08:00,1005.0979614257812,10.846392,10846.392 +13481,2025-03-08T16:30:19.103808-08:00,1005.082275390625,10.841401,10841.401 +13482,2025-03-08T16:30:29.945794-08:00,1005.06103515625,10.841986,10841.986 +13483,2025-03-08T16:30:40.782510-08:00,1005.0889282226562,10.836716,10836.716 +13484,2025-03-08T16:31:02.468331-08:00,1005.0386962890625,21.685821,21685.821 +13485,2025-03-08T16:31:13.317332-08:00,1005.06103515625,10.849001,10849.001 +13486,2025-03-08T16:31:24.161122-08:00,1005.0399780273438,10.84379,10843.79 +13487,2025-03-08T16:31:35.004628-08:00,1005.06103515625,10.843506,10843.506 +13488,2025-03-08T16:31:45.835398-08:00,1005.06103515625,10.83077,10830.77 +13489,2025-03-08T16:31:56.672919-08:00,1005.0941162109375,10.837521,10837.521 +13490,2025-03-08T16:32:07.516321-08:00,1005.079833984375,10.843402,10843.402 +13491,2025-03-08T16:32:18.351309-08:00,1005.079833984375,10.834988,10834.988 +13492,2025-03-08T16:32:29.191488-08:00,1005.0532836914062,10.840179,10840.179 +13493,2025-03-08T16:32:40.034855-08:00,1005.08642578125,10.843367,10843.367 +13494,2025-03-08T16:32:50.869756-08:00,1005.1007690429688,10.834901,10834.901 +13495,2025-03-08T16:33:01.709315-08:00,1005.08642578125,10.839559,10839.559 +13496,2025-03-08T16:33:12.556962-08:00,1005.0941162109375,10.847647,10847.647 +13497,2025-03-08T16:33:23.400516-08:00,1005.0784301757812,10.843554,10843.554 +13498,2025-03-08T16:33:34.230480-08:00,1005.098388671875,10.829964,10829.964 +13499,2025-03-08T16:33:45.076953-08:00,1005.0574951171875,10.846473,10846.473 +13500,2025-03-08T16:33:55.917663-08:00,1005.0931396484375,10.84071,10840.71 +13501,2025-03-08T16:34:06.761504-08:00,1005.0599975585938,10.843841,10843.841 +13502,2025-03-08T16:34:17.593291-08:00,1005.0941162109375,10.831787,10831.787 +13503,2025-03-08T16:34:28.438906-08:00,1005.12060546875,10.845615,10845.615 +13504,2025-03-08T16:34:39.285168-08:00,1005.0784301757812,10.846262,10846.262 +13505,2025-03-08T16:34:50.133160-08:00,1005.0941162109375,10.847992,10847.992 +13506,2025-03-08T16:35:00.972300-08:00,1005.08642578125,10.83914,10839.14 +13507,2025-03-08T16:35:11.819560-08:00,1005.126220703125,10.84726,10847.26 +13508,2025-03-08T16:35:22.662901-08:00,1005.1248168945312,10.843341,10843.341 +13509,2025-03-08T16:35:33.506831-08:00,1005.1105346679688,10.84393,10843.93 +13510,2025-03-08T16:35:44.348374-08:00,1005.1182861328125,10.841543,10841.543 +13511,2025-03-08T16:35:55.193840-08:00,1005.15380859375,10.845466,10845.466 +13512,2025-03-08T16:36:06.040334-08:00,1005.1182861328125,10.846494,10846.494 +13513,2025-03-08T16:36:16.886454-08:00,1005.1802978515625,10.84612,10846.12 +13514,2025-03-08T16:36:27.728337-08:00,1005.1238403320312,10.841883,10841.883 +13515,2025-03-08T16:36:38.570131-08:00,1005.1461181640625,10.841794,10841.794 +13516,2025-03-08T16:36:49.419325-08:00,1005.111572265625,10.849194,10849.194 +13517,2025-03-08T16:37:00.259328-08:00,1005.1395263671875,10.840003,10840.003 +13518,2025-03-08T16:37:11.100379-08:00,1005.0809326171875,10.841051,10841.051 +13519,2025-03-08T16:37:21.943536-08:00,1005.12060546875,10.843157,10843.157 +13520,2025-03-08T16:37:32.787330-08:00,1005.12060546875,10.843794,10843.794 +13521,2025-03-08T16:37:43.623716-08:00,1005.1154174804688,10.836386,10836.386 +13522,2025-03-08T16:37:54.465735-08:00,1005.1140747070312,10.842019,10842.019 +13523,2025-03-08T16:38:05.308804-08:00,1005.0931396484375,10.843069,10843.069 +13524,2025-03-08T16:38:16.160326-08:00,1005.1328735351562,10.851522,10851.522 +13525,2025-03-08T16:38:27.001309-08:00,1005.1273193359375,10.840983,10840.983 +13526,2025-03-08T16:38:37.850531-08:00,1005.15380859375,10.849222,10849.222 +13527,2025-03-08T16:38:48.689459-08:00,1005.1129760742188,10.838928,10838.928 +13528,2025-03-08T16:38:59.535630-08:00,1005.1007690429688,10.846171,10846.171 +13529,2025-03-08T16:39:10.369379-08:00,1005.126220703125,10.833749,10833.749 +13530,2025-03-08T16:39:21.216433-08:00,1005.0931396484375,10.847054,10847.054 +13531,2025-03-08T16:39:32.061245-08:00,1005.0731811523438,10.844812,10844.812 +13532,2025-03-08T16:39:42.897836-08:00,1005.10498046875,10.836591,10836.591 +13533,2025-03-08T16:39:53.735328-08:00,1005.08642578125,10.837492,10837.492 +13534,2025-03-08T16:40:04.577398-08:00,1005.1220092773438,10.84207,10842.07 +13535,2025-03-08T16:40:15.420378-08:00,1005.1021728515625,10.84298,10842.98 +13536,2025-03-08T16:40:26.264854-08:00,1005.1163940429688,10.844476,10844.476 +13537,2025-03-08T16:40:37.107412-08:00,1005.16845703125,10.842558,10842.558 +13538,2025-03-08T16:40:47.945473-08:00,1005.147216796875,10.838061,10838.061 +13539,2025-03-08T16:40:58.794334-08:00,1005.15380859375,10.848861,10848.861 +13540,2025-03-08T16:41:09.631325-08:00,1005.15283203125,10.836991,10836.991 +13541,2025-03-08T16:41:20.477328-08:00,1005.1817016601562,10.846003,10846.003 +13542,2025-03-08T16:41:31.317465-08:00,1005.1273193359375,10.840137,10840.137 +13543,2025-03-08T16:41:42.151657-08:00,1005.1670532226562,10.834192,10834.192 +13544,2025-03-08T16:41:52.998394-08:00,1005.1604614257812,10.846737,10846.737 +13545,2025-03-08T16:42:03.845029-08:00,1005.1395263671875,10.846635,10846.635 +13546,2025-03-08T16:42:14.680093-08:00,1005.1737670898438,10.835064,10835.064 +13547,2025-03-08T16:42:25.522480-08:00,1005.21240234375,10.842387,10842.387 +13548,2025-03-08T16:42:36.371817-08:00,1005.191162109375,10.849337,10849.337 +13549,2025-03-08T16:42:47.216318-08:00,1005.21240234375,10.844501,10844.501 +13550,2025-03-08T16:42:58.060299-08:00,1005.1646728515625,10.843981,10843.981 +13551,2025-03-08T16:43:08.899385-08:00,1005.1925048828125,10.839086,10839.086 +13552,2025-03-08T16:43:19.751543-08:00,1005.2257080078125,10.852158,10852.158 +13553,2025-03-08T16:43:30.586905-08:00,1005.2023315429688,10.835362,10835.362 +13554,2025-03-08T16:43:41.440638-08:00,1005.17578125,10.853733,10853.733 +13555,2025-03-08T16:43:52.277035-08:00,1005.1559448242188,10.836397,10836.397 +13556,2025-03-08T16:44:03.120311-08:00,1005.1720581054688,10.843276,10843.276 +13557,2025-03-08T16:44:13.964649-08:00,1005.1943969726562,10.844338,10844.338 +13558,2025-03-08T16:44:24.812611-08:00,1005.2184448242188,10.847962,10847.962 +13559,2025-03-08T16:44:35.648752-08:00,1005.2340698242188,10.836141,10836.141 +13560,2025-03-08T16:44:46.501604-08:00,1005.198486328125,10.852852,10852.852 +13561,2025-03-08T16:44:57.344309-08:00,1005.2340698242188,10.842705,10842.705 +13562,2025-03-08T16:45:08.188335-08:00,1005.1866455078125,10.844026,10844.026 +13563,2025-03-08T16:45:19.021434-08:00,1005.1866455078125,10.833099,10833.099 +13564,2025-03-08T16:45:29.864663-08:00,1005.1932983398438,10.843229,10843.229 +13565,2025-03-08T16:45:40.701486-08:00,1005.1842041015625,10.836823,10836.823 +13566,2025-03-08T16:45:51.535844-08:00,1005.1785888671875,10.834358,10834.358 +13567,2025-03-08T16:46:02.376563-08:00,1005.1810913085938,10.840719,10840.719 +13568,2025-03-08T16:46:13.214332-08:00,1005.156982421875,10.837769,10837.769 +13569,2025-03-08T16:46:24.055706-08:00,1005.1702270507812,10.841374,10841.374 +13570,2025-03-08T16:46:34.901634-08:00,1005.169189453125,10.845928,10845.928 +13571,2025-03-08T16:46:45.745330-08:00,1005.1967163085938,10.843696,10843.696 +13572,2025-03-08T16:46:56.583334-08:00,1005.1503295898438,10.838004,10838.004 +13573,2025-03-08T16:47:07.428835-08:00,1005.191162109375,10.845501,10845.501 +13574,2025-03-08T16:47:18.272856-08:00,1005.193603515625,10.844021,10844.021 +13575,2025-03-08T16:47:29.118465-08:00,1005.1593627929688,10.845609,10845.609 +13576,2025-03-08T16:47:39.965314-08:00,1005.1670532226562,10.846849,10846.849 +13577,2025-03-08T16:47:50.812326-08:00,1005.1925048828125,10.847012,10847.012 +13578,2025-03-08T16:48:01.653556-08:00,1005.1859130859375,10.84123,10841.23 +13579,2025-03-08T16:48:12.506333-08:00,1005.1817016601562,10.852777,10852.777 +13580,2025-03-08T16:48:23.352726-08:00,1005.1618041992188,10.846393,10846.393 +13581,2025-03-08T16:48:34.200725-08:00,1005.2015380859375,10.847999,10847.999 +13582,2025-03-08T16:48:45.039562-08:00,1005.15380859375,10.838837,10838.837 +13583,2025-03-08T16:48:55.895332-08:00,1005.2068481445312,10.85577,10855.77 +13584,2025-03-08T16:49:06.745278-08:00,1005.16845703125,10.849946,10849.946 +13585,2025-03-08T16:49:17.592335-08:00,1005.1737670898438,10.847057,10847.057 +13586,2025-03-08T16:49:28.435687-08:00,1005.2068481445312,10.843352,10843.352 +13587,2025-03-08T16:49:39.282592-08:00,1005.18701171875,10.846905,10846.905 +13588,2025-03-08T16:49:50.133093-08:00,1005.1859130859375,10.850501,10850.501 +13589,2025-03-08T16:50:00.971332-08:00,1005.2044677734375,10.838239,10838.239 +13590,2025-03-08T16:50:11.818328-08:00,1005.2431030273438,10.846996,10846.996 +13591,2025-03-08T16:50:22.662384-08:00,1005.2257080078125,10.844056,10844.056 +13592,2025-03-08T16:50:33.505638-08:00,1005.2508544921875,10.843254,10843.254 +13593,2025-03-08T16:50:44.358901-08:00,1005.2176513671875,10.853263,10853.263 +13594,2025-03-08T16:50:55.202542-08:00,1005.2232666015625,10.843641,10843.641 +13595,2025-03-08T16:51:06.057980-08:00,1005.1967163085938,10.855438,10855.438 +13596,2025-03-08T16:51:16.900526-08:00,1005.16015625,10.842546,10842.546 +13597,2025-03-08T16:51:27.743315-08:00,1005.2156372070312,10.842789,10842.789 +13598,2025-03-08T16:51:38.586673-08:00,1005.1943969726562,10.843358,10843.358 +13599,2025-03-08T16:51:49.428935-08:00,1005.1824340820312,10.842262,10842.262 +13600,2025-03-08T16:52:00.278935-08:00,1005.2075805664062,10.85,10850.0 +13601,2025-03-08T16:52:11.121331-08:00,1005.17578125,10.842396,10842.396 +13602,2025-03-08T16:52:21.964328-08:00,1005.1624755859375,10.842997,10842.997 +13603,2025-03-08T16:52:32.812328-08:00,1005.1810913085938,10.848,10848.0 +13604,2025-03-08T16:52:43.657815-08:00,1005.17578125,10.845487,10845.487 +13605,2025-03-08T16:52:54.510649-08:00,1005.200927734375,10.852834,10852.834 +13606,2025-03-08T16:53:05.355534-08:00,1005.1998291015625,10.844885,10844.885 +13607,2025-03-08T16:53:16.214600-08:00,1005.213134765625,10.859066,10859.066 +13608,2025-03-08T16:53:27.058307-08:00,1005.2184448242188,10.843707,10843.707 +13609,2025-03-08T16:53:37.899463-08:00,1005.1534423828125,10.841156,10841.156 +13610,2025-03-08T16:53:48.744367-08:00,1005.2027587890625,10.844904,10844.904 +13611,2025-03-08T16:53:59.598329-08:00,1005.2117919921875,10.853962,10853.962 +13612,2025-03-08T16:54:10.447390-08:00,1005.2040405273438,10.849061,10849.061 +13613,2025-03-08T16:54:21.290323-08:00,1005.2027587890625,10.842933,10842.933 +13614,2025-03-08T16:54:32.151159-08:00,1005.2159423828125,10.860836,10860.836 +13615,2025-03-08T16:54:42.993712-08:00,1005.2413940429688,10.842553,10842.553 +13616,2025-03-08T16:54:53.846514-08:00,1005.2359619140625,10.852802,10852.802 +13617,2025-03-08T16:55:04.695329-08:00,1005.1961059570312,10.848815,10848.815 +13618,2025-03-08T16:55:15.549643-08:00,1005.22265625,10.854314,10854.314 +13619,2025-03-08T16:55:26.399523-08:00,1005.2159423828125,10.84988,10849.88 +13620,2025-03-08T16:55:37.253652-08:00,1005.2003173828125,10.854129,10854.129 +13621,2025-03-08T16:55:48.097414-08:00,1005.22265625,10.843762,10843.762 +13622,2025-03-08T16:55:58.945375-08:00,1005.22265625,10.847961,10847.961 +13623,2025-03-08T16:56:09.795334-08:00,1005.2149047851562,10.849959,10849.959 +13624,2025-03-08T16:56:20.641758-08:00,1005.23828125,10.846424,10846.424 +13625,2025-03-08T16:56:31.493027-08:00,1005.1961059570312,10.851269,10851.269 +13626,2025-03-08T16:56:42.347119-08:00,1005.1828002929688,10.854092,10854.092 +13627,2025-03-08T16:56:53.191327-08:00,1005.2027587890625,10.844208,10844.208 +13628,2025-03-08T16:57:04.032702-08:00,1005.1950073242188,10.841375,10841.375 +13629,2025-03-08T16:57:14.881508-08:00,1005.2027587890625,10.848806,10848.806 +13630,2025-03-08T16:57:25.730634-08:00,1005.2215576171875,10.849126,10849.126 +13631,2025-03-08T16:57:36.573537-08:00,1005.1961059570312,10.842903,10842.903 +13632,2025-03-08T16:57:47.422061-08:00,1005.208251953125,10.848524,10848.524 +13633,2025-03-08T16:57:58.264328-08:00,1005.2282104492188,10.842267,10842.267 +13634,2025-03-08T16:58:09.109332-08:00,1005.2268676757812,10.845004,10845.004 +13635,2025-03-08T16:58:19.967330-08:00,1005.213623046875,10.857998,10857.998 +13636,2025-03-08T16:58:30.816580-08:00,1005.2523193359375,10.84925,10849.25 +13637,2025-03-08T16:58:41.667370-08:00,1005.2178344726562,10.85079,10850.79 +13638,2025-03-08T16:58:52.516332-08:00,1005.2285766601562,10.848962,10848.962 +13639,2025-03-08T16:59:03.356634-08:00,1005.1943969726562,10.840302,10840.302 +13640,2025-03-08T16:59:14.200942-08:00,1005.1797485351562,10.844308,10844.308 +13641,2025-03-08T16:59:25.057663-08:00,1005.2009887695312,10.856721,10856.721 +13642,2025-03-08T16:59:35.904475-08:00,1005.2274780273438,10.846812,10846.812 +13643,2025-03-08T16:59:46.754404-08:00,1005.2285766601562,10.849929,10849.929 +13644,2025-03-08T16:59:57.599307-08:00,1005.2129516601562,10.844903,10844.903 +13645,2025-03-08T17:00:08.445081-08:00,1005.2261962890625,10.845774,10845.774 +13646,2025-03-08T17:00:19.300325-08:00,1005.2474365234375,10.855244,10855.244 +13647,2025-03-08T17:00:30.148677-08:00,1005.2449951171875,10.848352,10848.352 +13648,2025-03-08T17:00:40.992096-08:00,1005.2327880859375,10.843419,10843.419 +13649,2025-03-08T17:00:51.844755-08:00,1005.2484130859375,10.852659,10852.659 +13650,2025-03-08T17:01:02.683467-08:00,1005.2725830078125,10.838712,10838.712 +13651,2025-03-08T17:01:13.523330-08:00,1005.24609375,10.839863,10839.863 +13652,2025-03-08T17:01:24.376201-08:00,1005.252685546875,10.852871,10852.871 +13653,2025-03-08T17:01:35.219647-08:00,1005.2683715820312,10.843446,10843.446 +13654,2025-03-08T17:01:46.058567-08:00,1005.2393798828125,10.83892,10838.92 +13655,2025-03-08T17:01:56.904327-08:00,1005.24609375,10.84576,10845.76 +13656,2025-03-08T17:02:07.746326-08:00,1005.237060546875,10.841999,10841.999 +13657,2025-03-08T17:02:18.590585-08:00,1005.2701416015625,10.844259,10844.259 +13658,2025-03-08T17:02:29.445677-08:00,1005.2568969726562,10.855092,10855.092 +13659,2025-03-08T17:02:40.287815-08:00,1005.2625122070312,10.842138,10842.138 +13660,2025-03-08T17:02:51.138380-08:00,1005.2503051757812,10.850565,10850.565 +13661,2025-03-08T17:03:01.987451-08:00,1005.2547607421875,10.849071,10849.071 +13662,2025-03-08T17:03:12.833380-08:00,1005.2547607421875,10.845929,10845.929 +13663,2025-03-08T17:03:23.679371-08:00,1005.2481079101562,10.845991,10845.991 +13664,2025-03-08T17:03:34.532599-08:00,1005.2335205078125,10.853228,10853.228 +13665,2025-03-08T17:03:45.375548-08:00,1005.2125854492188,10.842949,10842.949 +13666,2025-03-08T17:03:56.232644-08:00,1005.2335205078125,10.857096,10857.096 +13667,2025-03-08T17:04:07.076634-08:00,1005.2523193359375,10.84399,10843.99 +13668,2025-03-08T17:04:17.920857-08:00,1005.2401733398438,10.844223,10844.223 +13669,2025-03-08T17:04:28.767477-08:00,1005.2492065429688,10.84662,10846.62 +13670,2025-03-08T17:04:39.613723-08:00,1005.1780395507812,10.846246,10846.246 +13671,2025-03-08T17:04:50.451675-08:00,1005.2481079101562,10.837952,10837.952 +13672,2025-03-08T17:05:01.305649-08:00,1005.260009765625,10.853974,10853.974 +13673,2025-03-08T17:05:12.149097-08:00,1005.2324829101562,10.843448,10843.448 +13674,2025-03-08T17:05:23.009935-08:00,1005.2257690429688,10.860838,10860.838 +13675,2025-03-08T17:05:33.856079-08:00,1005.2244262695312,10.846144,10846.144 +13676,2025-03-08T17:05:44.707108-08:00,1005.1903076171875,10.851029,10851.029 +13677,2025-03-08T17:05:55.558633-08:00,1005.2390747070312,10.851525,10851.525 +13678,2025-03-08T17:06:06.412855-08:00,1005.2310791015625,10.854222,10854.222 +13679,2025-03-08T17:06:17.251302-08:00,1005.2244262695312,10.838447,10838.447 +13680,2025-03-08T17:06:28.110013-08:00,1005.2101440429688,10.858711,10858.711 +13681,2025-03-08T17:06:38.953307-08:00,1005.22998046875,10.843294,10843.294 +13682,2025-03-08T17:06:49.807454-08:00,1005.22998046875,10.854147,10854.147 +13683,2025-03-08T17:07:00.646298-08:00,1005.2324829101562,10.838844,10838.844 +13684,2025-03-08T17:07:11.492658-08:00,1005.2244262695312,10.84636,10846.36 +13685,2025-03-08T17:07:22.343463-08:00,1005.2178344726562,10.850805,10850.805 +13686,2025-03-08T17:07:33.185968-08:00,1005.2059326171875,10.842505,10842.505 +13687,2025-03-08T17:07:44.025472-08:00,1005.2589721679688,10.839504,10839.504 +13688,2025-03-08T17:07:54.869589-08:00,1005.2310791015625,10.844117,10844.117 +13689,2025-03-08T17:08:05.721673-08:00,1005.1944580078125,10.852084,10852.084 +13690,2025-03-08T17:08:16.565918-08:00,1005.2324829101562,10.844245,10844.245 +13691,2025-03-08T17:08:27.412274-08:00,1005.21435546875,10.846356,10846.356 +13692,2025-03-08T17:08:38.273280-08:00,1005.2474975585938,10.861006,10861.006 +13693,2025-03-08T17:08:49.115350-08:00,1005.2011108398438,10.84207,10842.07 +13694,2025-03-08T17:08:59.964662-08:00,1005.2118530273438,10.849312,10849.312 +13695,2025-03-08T17:09:10.813364-08:00,1005.2196044921875,10.848702,10848.702 +13696,2025-03-08T17:09:21.661513-08:00,1005.2341918945312,10.848149,10848.149 +13697,2025-03-08T17:09:32.503538-08:00,1005.2474975585938,10.842025,10842.025 +13698,2025-03-08T17:09:43.345357-08:00,1005.22998046875,10.841819,10841.819 +13699,2025-03-08T17:09:54.195307-08:00,1005.2408447265625,10.84995,10849.95 +13700,2025-03-08T17:10:05.052653-08:00,1005.206298828125,10.857346,10857.346 +13701,2025-03-08T17:10:15.896306-08:00,1005.2034912109375,10.843653,10843.653 +13702,2025-03-08T17:10:26.749307-08:00,1005.2076416015625,10.853001,10853.001 +13703,2025-03-08T17:10:37.588308-08:00,1005.2485961914062,10.839001,10839.001 +13704,2025-03-08T17:10:48.431738-08:00,1005.2022094726562,10.84343,10843.43 +13705,2025-03-08T17:10:59.284400-08:00,1005.2034912109375,10.852662,10852.662 +13706,2025-03-08T17:11:10.133846-08:00,1005.2167358398438,10.849446,10849.446 +13707,2025-03-08T17:11:20.982536-08:00,1005.2324829101562,10.84869,10848.69 +13708,2025-03-08T17:11:31.823442-08:00,1005.2234497070312,10.840906,10840.906 +13709,2025-03-08T17:11:42.669515-08:00,1005.1954956054688,10.846073,10846.073 +13710,2025-03-08T17:12:04.367308-08:00,1005.2034912109375,21.697793,21697.793 +13711,2025-03-08T17:12:15.213645-08:00,1005.162353515625,10.846337,10846.337 +13712,2025-03-08T17:12:26.063761-08:00,1005.208740234375,10.850116,10850.116 +13713,2025-03-08T17:12:36.908415-08:00,1005.2059326171875,10.844654,10844.654 +13714,2025-03-08T17:12:47.756922-08:00,1005.2112426757812,10.848507,10848.507 +13715,2025-03-08T17:12:58.605280-08:00,1005.197998046875,10.848358,10848.358 +13716,2025-03-08T17:13:09.453310-08:00,1005.2101440429688,10.84803,10848.03 +13717,2025-03-08T17:13:20.291641-08:00,1005.1954956054688,10.838331,10838.331 +13718,2025-03-08T17:13:31.145248-08:00,1005.2220458984375,10.853607,10853.607 +13719,2025-03-08T17:13:41.994124-08:00,1005.2262573242188,10.848876,10848.876 +13720,2025-03-08T17:13:52.840302-08:00,1005.208740234375,10.846178,10846.178 +13721,2025-03-08T17:14:03.690603-08:00,1005.2234497070312,10.850301,10850.301 +13722,2025-03-08T17:14:14.540726-08:00,1005.19970703125,10.850123,10850.123 +13723,2025-03-08T17:14:25.387306-08:00,1005.206298828125,10.84658,10846.58 +13724,2025-03-08T17:14:36.230440-08:00,1005.2408447265625,10.843134,10843.134 +13725,2025-03-08T17:14:47.082298-08:00,1005.2220458984375,10.851858,10851.858 +13726,2025-03-08T17:14:57.924190-08:00,1005.205322265625,10.841892,10841.892 +13727,2025-03-08T17:15:08.775351-08:00,1005.2095336914062,10.851161,10851.161 +13728,2025-03-08T17:15:19.622571-08:00,1005.2185668945312,10.84722,10847.22 +13729,2025-03-08T17:15:30.469309-08:00,1005.2105712890625,10.846738,10846.738 +13730,2025-03-08T17:15:41.326480-08:00,1005.2014770507812,10.857171,10857.171 +13731,2025-03-08T17:15:52.173345-08:00,1005.2412719726562,10.846865,10846.865 +13732,2025-03-08T17:16:03.026435-08:00,1005.216064453125,10.85309,10853.09 +13733,2025-03-08T17:16:13.880438-08:00,1005.154052734375,10.854003,10854.003 +13734,2025-03-08T17:16:24.724789-08:00,1005.1631469726562,10.844351,10844.351 +13735,2025-03-08T17:16:35.577669-08:00,1005.1896362304688,10.85288,10852.88 +13736,2025-03-08T17:16:46.427730-08:00,1005.19482421875,10.850061,10850.061 +13737,2025-03-08T17:16:57.267427-08:00,1005.1924438476562,10.839697,10839.697 +13738,2025-03-08T17:17:08.115370-08:00,1005.1924438476562,10.847943,10847.943 +13739,2025-03-08T17:17:18.956543-08:00,1005.17919921875,10.841173,10841.173 +13740,2025-03-08T17:17:29.804612-08:00,1005.1846923828125,10.848069,10848.069 +13741,2025-03-08T17:17:40.654310-08:00,1005.1846923828125,10.849698,10849.698 +13742,2025-03-08T17:17:51.506494-08:00,1005.1582641601562,10.852184,10852.184 +13743,2025-03-08T17:18:02.354616-08:00,1005.1846923828125,10.848122,10848.122 +13744,2025-03-08T17:18:13.203441-08:00,1005.197998046875,10.848825,10848.825 +13745,2025-03-08T17:18:24.045308-08:00,1005.1755981445312,10.841867,10841.867 +13746,2025-03-08T17:18:34.906808-08:00,1005.1966552734375,10.8615,10861.5 +13747,2025-03-08T17:18:45.748565-08:00,1005.185791015625,10.841757,10841.757 +13748,2025-03-08T17:18:56.592445-08:00,1005.2123413085938,10.84388,10843.88 +13749,2025-03-08T17:19:07.434882-08:00,1005.1781005859375,10.842437,10842.437 +13750,2025-03-08T17:19:18.283393-08:00,1005.185791015625,10.848511,10848.511 +13751,2025-03-08T17:19:29.126586-08:00,1005.197998046875,10.843193,10843.193 +13752,2025-03-08T17:19:39.974305-08:00,1005.197998046875,10.847719,10847.719 +13753,2025-03-08T17:19:50.812302-08:00,1005.2388305664062,10.837997,10837.997 +13754,2025-03-08T17:20:01.650573-08:00,1005.2056274414062,10.838271,10838.271 +13755,2025-03-08T17:20:12.499391-08:00,1005.2136840820312,10.848818,10848.818 +13756,2025-03-08T17:20:23.339298-08:00,1005.1937255859375,10.839907,10839.907 +13757,2025-03-08T17:20:34.186309-08:00,1005.1749877929688,10.847011,10847.011 +13758,2025-03-08T17:20:45.033560-08:00,1005.2028198242188,10.847251,10847.251 +13759,2025-03-08T17:20:55.877637-08:00,1005.2014770507812,10.844077,10844.077 +13760,2025-03-08T17:21:06.720145-08:00,1005.19482421875,10.842508,10842.508 +13761,2025-03-08T17:21:17.569362-08:00,1005.2081298828125,10.849217,10849.217 +13762,2025-03-08T17:21:28.411303-08:00,1005.216064453125,10.841941,10841.941 +13763,2025-03-08T17:21:39.255303-08:00,1005.2227172851562,10.844,10844.0 +13764,2025-03-08T17:21:50.098492-08:00,1005.1937255859375,10.843189,10843.189 +13765,2025-03-08T17:22:00.934867-08:00,1005.1924438476562,10.836375,10836.375 +13766,2025-03-08T17:22:11.786307-08:00,1005.2112426757812,10.85144,10851.44 +13767,2025-03-08T17:22:22.632531-08:00,1005.2123413085938,10.846224,10846.224 +13768,2025-03-08T17:22:33.471354-08:00,1005.20458984375,10.838823,10838.823 +13769,2025-03-08T17:22:44.319537-08:00,1005.1634521484375,10.848183,10848.183 +13770,2025-03-08T17:22:55.160542-08:00,1005.1966552734375,10.841005,10841.005 +13771,2025-03-08T17:23:06.000349-08:00,1005.2008056640625,10.839807,10839.807 +13772,2025-03-08T17:23:16.847296-08:00,1005.1599731445312,10.846947,10846.947 +13773,2025-03-08T17:23:27.698340-08:00,1005.195556640625,10.851044,10851.044 +13774,2025-03-08T17:23:38.547010-08:00,1005.1676635742188,10.84867,10848.67 +13775,2025-03-08T17:23:49.384054-08:00,1005.1610717773438,10.837044,10837.044 +13776,2025-03-08T17:24:00.227571-08:00,1005.17431640625,10.843517,10843.517 +13777,2025-03-08T17:24:11.073361-08:00,1005.193115234375,10.84579,10845.79 +13778,2025-03-08T17:24:21.918315-08:00,1005.1798706054688,10.844954,10844.954 +13779,2025-03-08T17:24:32.761621-08:00,1005.1997680664062,10.843306,10843.306 +13780,2025-03-08T17:24:43.604902-08:00,1005.18408203125,10.843281,10843.281 +13781,2025-03-08T17:24:54.454465-08:00,1005.1920166015625,10.849563,10849.563 +13782,2025-03-08T17:25:05.302306-08:00,1005.2251586914062,10.847841,10847.841 +13783,2025-03-08T17:25:16.146303-08:00,1005.2129516601562,10.843997,10843.997 +13784,2025-03-08T17:25:26.987403-08:00,1005.157470703125,10.8411,10841.1 +13785,2025-03-08T17:25:37.826897-08:00,1005.1854858398438,10.839494,10839.494 +13786,2025-03-08T17:25:48.673331-08:00,1005.1920166015625,10.846434,10846.434 +13787,2025-03-08T17:25:59.517309-08:00,1005.2238159179688,10.843978,10843.978 +13788,2025-03-08T17:26:10.360309-08:00,1005.2450561523438,10.843,10843.0 +13789,2025-03-08T17:26:21.204641-08:00,1005.2318725585938,10.844332,10844.332 +13790,2025-03-08T17:26:42.897447-08:00,1005.23046875,21.692806,21692.806 +13791,2025-03-08T17:26:53.739441-08:00,1005.23046875,10.841994,10841.994 +13792,2025-03-08T17:27:04.587714-08:00,1005.202880859375,10.848273,10848.273 +13793,2025-03-08T17:27:15.441413-08:00,1005.1973266601562,10.853699,10853.699 +13794,2025-03-08T17:27:26.274606-08:00,1005.2095336914062,10.833193,10833.193 +13795,2025-03-08T17:27:37.128625-08:00,1005.202880859375,10.854019,10854.019 +13796,2025-03-08T17:27:47.971958-08:00,1005.2171630859375,10.843333,10843.333 +13797,2025-03-08T17:27:58.814544-08:00,1005.2095336914062,10.842586,10842.586 +13798,2025-03-08T17:28:09.658295-08:00,1005.181640625,10.843751,10843.751 +13799,2025-03-08T17:28:20.501627-08:00,1005.1749877929688,10.843332,10843.332 +13800,2025-03-08T17:28:31.343723-08:00,1005.2412719726562,10.842096,10842.096 +13801,2025-03-08T17:28:42.186398-08:00,1005.2081298828125,10.842675,10842.675 +13802,2025-03-08T17:28:53.037533-08:00,1005.2137451171875,10.851135,10851.135 +13803,2025-03-08T17:29:03.879285-08:00,1005.221435546875,10.841752,10841.752 +13804,2025-03-08T17:29:14.718119-08:00,1005.2056884765625,10.838834,10838.834 +13805,2025-03-08T17:29:25.553486-08:00,1005.2147827148438,10.835367,10835.367 +13806,2025-03-08T17:29:36.399307-08:00,1005.2137451171875,10.845821,10845.821 +13807,2025-03-08T17:29:47.234548-08:00,1005.1925048828125,10.835241,10835.241 +13808,2025-03-08T17:29:58.083168-08:00,1005.2335815429688,10.84862,10848.62 +13809,2025-03-08T17:30:08.919221-08:00,1005.22705078125,10.836053,10836.053 +13810,2025-03-08T17:30:19.768298-08:00,1005.2346801757812,10.849077,10849.077 +13811,2025-03-08T17:30:30.606300-08:00,1005.2625122070312,10.838002,10838.002 +13812,2025-03-08T17:30:41.452662-08:00,1005.2412719726562,10.846362,10846.362 +13813,2025-03-08T17:30:52.297924-08:00,1005.25341796875,10.845262,10845.262 +13814,2025-03-08T17:31:03.148331-08:00,1005.2521362304688,10.850407,10850.407 +13815,2025-03-08T17:31:13.985548-08:00,1005.2601318359375,10.837217,10837.217 +13816,2025-03-08T17:31:24.835379-08:00,1005.2587280273438,10.849831,10849.831 +13817,2025-03-08T17:31:35.676644-08:00,1005.2733764648438,10.841265,10841.265 +13818,2025-03-08T17:31:46.519684-08:00,1005.2720336914062,10.84304,10843.04 +13819,2025-03-08T17:31:57.357307-08:00,1005.2587280273438,10.837623,10837.623 +13820,2025-03-08T17:32:08.196367-08:00,1005.280029296875,10.83906,10839.06 +13821,2025-03-08T17:32:19.047287-08:00,1005.244384765625,10.85092,10850.92 +13822,2025-03-08T17:32:29.891605-08:00,1005.2709350585938,10.844318,10844.318 +13823,2025-03-08T17:32:40.734355-08:00,1005.290771484375,10.84275,10842.75 +13824,2025-03-08T17:32:51.576529-08:00,1005.30517578125,10.842174,10842.174 +13825,2025-03-08T17:33:02.415579-08:00,1005.2828369140625,10.83905,10839.05 +13826,2025-03-08T17:33:13.266624-08:00,1005.2960815429688,10.851045,10851.045 +13827,2025-03-08T17:33:24.113220-08:00,1005.2828369140625,10.846596,10846.596 +13828,2025-03-08T17:33:34.951580-08:00,1005.1967163085938,10.83836,10838.36 +13829,2025-03-08T17:33:45.791309-08:00,1005.290771484375,10.839729,10839.729 +13830,2025-03-08T17:33:56.638302-08:00,1005.277587890625,10.846993,10846.993 +13831,2025-03-08T17:34:07.476702-08:00,1005.26708984375,10.8384,10838.4 +13832,2025-03-08T17:34:18.320279-08:00,1005.2949829101562,10.843577,10843.577 +13833,2025-03-08T17:34:29.165307-08:00,1005.2926025390625,10.845028,10845.028 +13834,2025-03-08T17:34:40.009553-08:00,1005.2803955078125,10.844246,10844.246 +13835,2025-03-08T17:34:50.851653-08:00,1005.2726440429688,10.8421,10842.1 +13836,2025-03-08T17:35:01.696376-08:00,1005.2461547851562,10.844723,10844.723 +13837,2025-03-08T17:35:12.537303-08:00,1005.26611328125,10.840927,10840.927 +13838,2025-03-08T17:35:23.380363-08:00,1005.2371215820312,10.84306,10843.06 +13839,2025-03-08T17:35:34.223301-08:00,1005.2570190429688,10.842938,10842.938 +13840,2025-03-08T17:35:45.067628-08:00,1005.2581176757812,10.844327,10844.327 +13841,2025-03-08T17:35:55.914586-08:00,1005.27685546875,10.846958,10846.958 +13842,2025-03-08T17:36:06.754306-08:00,1005.2966918945312,10.83972,10839.72 +13843,2025-03-08T17:36:17.603543-08:00,1005.2754516601562,10.849237,10849.237 +13844,2025-03-08T17:36:28.441182-08:00,1005.2622680664062,10.837639,10837.639 +13845,2025-03-08T17:36:39.288402-08:00,1005.2332763671875,10.84722,10847.22 +13846,2025-03-08T17:36:50.131459-08:00,1005.2479858398438,10.843057,10843.057 +13847,2025-03-08T17:37:00.969335-08:00,1005.22802734375,10.837876,10837.876 +13848,2025-03-08T17:37:22.654647-08:00,1005.2853393554688,21.685312,21685.312 +13849,2025-03-08T17:37:33.507589-08:00,1005.2863159179688,10.852942,10852.942 +13850,2025-03-08T17:37:44.348291-08:00,1005.25732421875,10.840702,10840.702 +13851,2025-03-08T17:37:55.197606-08:00,1005.2431030273438,10.849315,10849.315 +13852,2025-03-08T17:38:06.045302-08:00,1005.2971801757812,10.847696,10847.696 +13853,2025-03-08T17:38:16.885915-08:00,1005.2772827148438,10.840613,10840.613 +13854,2025-03-08T17:38:27.732757-08:00,1005.26953125,10.846842,10846.842 +13855,2025-03-08T17:38:38.569431-08:00,1005.2485961914062,10.836674,10836.674 +13856,2025-03-08T17:38:49.415544-08:00,1005.2196655273438,10.846113,10846.113 +13857,2025-03-08T17:39:00.260309-08:00,1005.2594604492188,10.844765,10844.765 +13858,2025-03-08T17:39:11.108303-08:00,1005.2779541015625,10.847994,10847.994 +13859,2025-03-08T17:39:21.946378-08:00,1005.2793579101562,10.838075,10838.075 +13860,2025-03-08T17:39:32.783554-08:00,1005.2462768554688,10.837176,10837.176 +13861,2025-03-08T17:39:43.625437-08:00,1005.2249755859375,10.841883,10841.883 +13862,2025-03-08T17:39:54.464454-08:00,1005.2647094726562,10.839017,10839.017 +13863,2025-03-08T17:40:05.313662-08:00,1005.2703247070312,10.849208,10849.208 +13864,2025-03-08T17:40:16.146551-08:00,1005.2713012695312,10.832889,10832.889 +13865,2025-03-08T17:40:26.988562-08:00,1005.2545166015625,10.842011,10842.011 +13866,2025-03-08T17:40:37.832565-08:00,1005.2754516601562,10.844003,10844.003 +13867,2025-03-08T17:40:48.674358-08:00,1005.2622680664062,10.841793,10841.793 +13868,2025-03-08T17:40:59.512300-08:00,1005.2545166015625,10.837942,10837.942 +13869,2025-03-08T17:41:10.356162-08:00,1005.26123046875,10.843862,10843.862 +13870,2025-03-08T17:41:21.202713-08:00,1005.2479858398438,10.846551,10846.551 +13871,2025-03-08T17:41:32.046185-08:00,1005.2200927734375,10.843472,10843.472 +13872,2025-03-08T17:41:42.889300-08:00,1005.2322387695312,10.843115,10843.115 +13873,2025-03-08T17:41:53.727578-08:00,1005.23095703125,10.838278,10838.278 +13874,2025-03-08T17:42:04.575573-08:00,1005.253173828125,10.847995,10847.995 +13875,2025-03-08T17:42:15.418728-08:00,1005.2232055664062,10.843155,10843.155 +13876,2025-03-08T17:42:26.251306-08:00,1005.23095703125,10.832578,10832.578 +13877,2025-03-08T17:42:37.094550-08:00,1005.204345703125,10.843244,10843.244 +13878,2025-03-08T17:42:47.943593-08:00,1005.2284545898438,10.849043,10849.043 +13879,2025-03-08T17:42:58.781645-08:00,1005.24169921875,10.838052,10838.052 +13880,2025-03-08T17:43:09.623524-08:00,1005.262939453125,10.841879,10841.879 +13881,2025-03-08T17:43:20.465359-08:00,1005.260498046875,10.841835,10841.835 +13882,2025-03-08T17:43:31.309499-08:00,1005.2340698242188,10.84414,10844.14 +13883,2025-03-08T17:43:42.147667-08:00,1005.2406005859375,10.838168,10838.168 +13884,2025-03-08T17:43:52.979302-08:00,1005.2391967773438,10.831635,10831.635 +13885,2025-03-08T17:44:03.824515-08:00,1005.2391967773438,10.845213,10845.213 +13886,2025-03-08T17:44:14.672673-08:00,1005.2658081054688,10.848158,10848.158 +13887,2025-03-08T17:44:25.514571-08:00,1005.2658081054688,10.841898,10841.898 +13888,2025-03-08T17:44:36.349455-08:00,1005.2713012695312,10.834884,10834.884 +13889,2025-03-08T17:44:47.193562-08:00,1005.2765502929688,10.844107,10844.107 +13890,2025-03-08T17:44:58.029702-08:00,1005.2159423828125,10.83614,10836.14 +13891,2025-03-08T17:45:08.874525-08:00,1005.2423706054688,10.844823,10844.823 +13892,2025-03-08T17:45:19.717298-08:00,1005.234375,10.842773,10842.773 +13893,2025-03-08T17:45:30.566411-08:00,1005.23193359375,10.849113,10849.113 +13894,2025-03-08T17:45:41.399788-08:00,1005.2197875976562,10.833377,10833.377 +13895,2025-03-08T17:45:52.247377-08:00,1005.1907958984375,10.847589,10847.589 +13896,2025-03-08T17:46:03.089506-08:00,1005.225341796875,10.842129,10842.129 +13897,2025-03-08T17:46:13.934303-08:00,1005.2162475585938,10.844797,10844.797 +13898,2025-03-08T17:46:24.771435-08:00,1005.197509765625,10.837132,10837.132 +13899,2025-03-08T17:46:35.619595-08:00,1005.20166015625,10.84816,10848.16 +13900,2025-03-08T17:46:46.469832-08:00,1005.2138061523438,10.850237,10850.237 +13901,2025-03-08T17:46:57.312371-08:00,1005.2479858398438,10.842539,10842.539 +13902,2025-03-08T17:47:08.160355-08:00,1005.19921875,10.847984,10847.984 +13903,2025-03-08T17:47:18.997543-08:00,1005.2257080078125,10.837188,10837.188 +13904,2025-03-08T17:47:29.846643-08:00,1005.2125244140625,10.8491,10849.1 +13905,2025-03-08T17:47:40.680431-08:00,1005.236572265625,10.833788,10833.788 +13906,2025-03-08T17:47:51.531585-08:00,1005.2298583984375,10.851154,10851.154 +13907,2025-03-08T17:48:02.373306-08:00,1005.2288208007812,10.841721,10841.721 +13908,2025-03-08T17:48:13.219499-08:00,1005.249755859375,10.846193,10846.193 +13909,2025-03-08T17:48:24.061946-08:00,1005.1943969726562,10.842447,10842.447 +13910,2025-03-08T17:48:34.910315-08:00,1005.22216796875,10.848369,10848.369 +13911,2025-03-08T17:48:45.748283-08:00,1005.2142333984375,10.837968,10837.968 +13912,2025-03-08T17:48:56.598396-08:00,1005.2249755859375,10.850113,10850.113 +13913,2025-03-08T17:49:07.434630-08:00,1005.2462768554688,10.836234,10836.234 +13914,2025-03-08T17:49:18.287635-08:00,1005.2420043945312,10.853005,10853.005 +13915,2025-03-08T17:49:29.127517-08:00,1005.2263793945312,10.839882,10839.882 +13916,2025-03-08T17:49:39.964585-08:00,1005.2606201171875,10.837068,10837.068 +13917,2025-03-08T17:49:50.806486-08:00,1005.244873046875,10.841901,10841.901 +13918,2025-03-08T17:50:01.646612-08:00,1005.2329711914062,10.840126,10840.126 +13919,2025-03-08T17:50:12.488298-08:00,1005.2305297851562,10.841686,10841.686 +13920,2025-03-08T17:50:23.331541-08:00,1005.2329711914062,10.843243,10843.243 +13921,2025-03-08T17:50:34.173591-08:00,1005.2371826171875,10.84205,10842.05 +13922,2025-03-08T17:50:45.013649-08:00,1005.2092895507812,10.840058,10840.058 +13923,2025-03-08T17:50:55.849361-08:00,1005.223876953125,10.835712,10835.712 +13924,2025-03-08T17:51:06.696298-08:00,1005.2092895507812,10.846937,10846.937 +13925,2025-03-08T17:51:17.538298-08:00,1005.244873046875,10.842,10842.0 +13926,2025-03-08T17:51:28.382881-08:00,1005.2347412109375,10.844583,10844.583 +13927,2025-03-08T17:51:39.220678-08:00,1005.2466430664062,10.837797,10837.797 +13928,2025-03-08T17:51:50.064459-08:00,1005.2532958984375,10.843781,10843.781 +13929,2025-03-08T17:52:00.902843-08:00,1005.2455444335938,10.838384,10838.384 +13930,2025-03-08T17:52:11.733298-08:00,1005.2496948242188,10.830455,10830.455 +13931,2025-03-08T17:52:22.573304-08:00,1005.2232666015625,10.840006,10840.006 +13932,2025-03-08T17:52:33.418285-08:00,1005.2445068359375,10.844981,10844.981 +13933,2025-03-08T17:52:44.258089-08:00,1005.2564086914062,10.839804,10839.804 +13934,2025-03-08T17:52:55.095307-08:00,1005.2842407226562,10.837218,10837.218 +13935,2025-03-08T17:53:05.936303-08:00,1005.2587280273438,10.840996,10840.996 +13936,2025-03-08T17:53:16.774571-08:00,1005.2496948242188,10.838268,10838.268 +13937,2025-03-08T17:53:25.882473-08:00,1005.2709350585938,9.107902,9107.902 +13938,2025-03-08T17:53:27.605307-08:00,1005.2686157226562,1.722834,1722.834 +13939,2025-03-08T17:53:38.454652-08:00,1005.2695922851562,10.849345,10849.345 +13940,2025-03-08T17:53:49.287623-08:00,1005.2564086914062,10.832971,10832.971 +13941,2025-03-08T17:54:00.128347-08:00,1005.2762451171875,10.840724,10840.724 +13942,2025-03-08T17:54:10.980807-08:00,1005.2884521484375,10.85246,10852.46 +13943,2025-03-08T17:54:21.811800-08:00,1005.2686157226562,10.830993,10830.993 +13944,2025-03-08T17:54:32.653670-08:00,1005.25390625,10.84187,10841.87 +13945,2025-03-08T17:54:43.491304-08:00,1005.2462768554688,10.837634,10837.634 +13946,2025-03-08T17:54:54.333308-08:00,1005.2553100585938,10.842004,10842.004 +13947,2025-03-08T17:55:05.181309-08:00,1005.2884521484375,10.848001,10848.001 +13948,2025-03-08T17:55:16.026386-08:00,1005.2462768554688,10.845077,10845.077 +13949,2025-03-08T17:55:26.876604-08:00,1005.2672119140625,10.850218,10850.218 +13950,2025-03-08T17:55:37.714348-08:00,1005.275146484375,10.837744,10837.744 +13951,2025-03-08T17:55:48.555772-08:00,1005.293701171875,10.841424,10841.424 +13952,2025-03-08T17:55:59.393653-08:00,1005.3058471679688,10.837881,10837.881 +13953,2025-03-08T17:56:10.232307-08:00,1005.293701171875,10.838654,10838.654 +13954,2025-03-08T17:56:21.078305-08:00,1005.2581176757812,10.845998,10845.998 +13955,2025-03-08T17:56:31.916307-08:00,1005.31494140625,10.838002,10838.002 +13956,2025-03-08T17:56:42.763259-08:00,1005.293701171875,10.846952,10846.952 +13957,2025-03-08T17:56:53.607626-08:00,1005.2804565429688,10.844367,10844.367 +13958,2025-03-08T17:57:04.441046-08:00,1005.272705078125,10.83342,10833.42 +13959,2025-03-08T17:57:15.283532-08:00,1005.2703247070312,10.842486,10842.486 +13960,2025-03-08T17:57:26.125979-08:00,1005.2581176757812,10.842447,10842.447 +13961,2025-03-08T17:57:36.968752-08:00,1005.2779541015625,10.842773,10842.773 +13962,2025-03-08T17:57:47.811292-08:00,1005.3177490234375,10.84254,10842.54 +13963,2025-03-08T17:57:58.644340-08:00,1005.3045043945312,10.833048,10833.048 +13964,2025-03-08T17:58:09.486639-08:00,1005.303466796875,10.842299,10842.299 +13965,2025-03-08T17:58:20.329348-08:00,1005.3309326171875,10.842709,10842.709 +13966,2025-03-08T17:58:31.168539-08:00,1005.2901611328125,10.839191,10839.191 +13967,2025-03-08T17:58:42.015306-08:00,1005.316650390625,10.846767,10846.767 +13968,2025-03-08T17:58:52.859725-08:00,1005.3284912109375,10.844419,10844.419 +13969,2025-03-08T17:59:03.697427-08:00,1005.3009643554688,10.837702,10837.702 +13970,2025-03-08T17:59:14.527305-08:00,1005.35498046875,10.829878,10829.878 +13971,2025-03-08T17:59:25.365635-08:00,1005.3153076171875,10.83833,10838.33 +13972,2025-03-08T17:59:36.209382-08:00,1005.32080078125,10.843747,10843.747 +13973,2025-03-08T17:59:47.059295-08:00,1005.3340454101562,10.849913,10849.913 +13974,2025-03-08T17:59:57.898301-08:00,1005.29296875,10.839006,10839.006 +13975,2025-03-08T18:00:08.750304-08:00,1005.3250122070312,10.852003,10852.003 +13976,2025-03-08T18:00:19.592913-08:00,1005.3340454101562,10.842609,10842.609 +13977,2025-03-08T18:00:30.436154-08:00,1005.3261108398438,10.843241,10843.241 +13978,2025-03-08T18:00:41.290809-08:00,1005.3117065429688,10.854655,10854.655 +13979,2025-03-08T18:00:52.133339-08:00,1005.3236083984375,10.84253,10842.53 +13980,2025-03-08T18:01:02.974307-08:00,1005.3448486328125,10.840968,10840.968 +13981,2025-03-08T18:01:13.814912-08:00,1005.31591796875,10.840605,10840.605 +13982,2025-03-08T18:01:24.652943-08:00,1005.3448486328125,10.838031,10838.031 +13983,2025-03-08T18:01:35.492308-08:00,1005.3316650390625,10.839365,10839.365 +13984,2025-03-08T18:01:46.336357-08:00,1005.31591796875,10.844049,10844.049 +13985,2025-03-08T18:01:57.178672-08:00,1005.3103637695312,10.842315,10842.315 +13986,2025-03-08T18:02:08.013422-08:00,1005.3170166015625,10.83475,10834.75 +13987,2025-03-08T18:02:18.856418-08:00,1005.3145141601562,10.842996,10842.996 +13988,2025-03-08T18:02:29.694535-08:00,1005.3292236328125,10.838117,10838.117 +13989,2025-03-08T18:02:40.541603-08:00,1005.3201293945312,10.847068,10847.068 +13990,2025-03-08T18:02:51.378303-08:00,1005.33447265625,10.8367,10836.7 +13991,2025-03-08T18:03:02.217663-08:00,1005.3135375976562,10.83936,10839.36 +13992,2025-03-08T18:03:13.064478-08:00,1005.3400268554688,10.846815,10846.815 +13993,2025-03-08T18:03:23.903305-08:00,1005.3543701171875,10.838827,10838.827 +13994,2025-03-08T18:03:34.753305-08:00,1005.3954467773438,10.85,10850.0 +13995,2025-03-08T18:03:45.590303-08:00,1005.3400268554688,10.836998,10836.998 +13996,2025-03-08T18:03:56.427703-08:00,1005.3490600585938,10.8374,10837.4 +13997,2025-03-08T18:04:07.276594-08:00,1005.341064453125,10.848891,10848.891 +13998,2025-03-08T18:04:18.114764-08:00,1005.3742065429688,10.83817,10838.17 +13999,2025-03-08T18:04:28.956281-08:00,1005.3742065429688,10.841517,10841.517 +14000,2025-03-08T18:04:39.804434-08:00,1005.35986328125,10.848153,10848.153 +14001,2025-03-08T18:04:50.647643-08:00,1005.4006958007812,10.843209,10843.209 +14002,2025-03-08T18:05:01.490025-08:00,1005.3898315429688,10.842382,10842.382 +14003,2025-03-08T18:05:12.328623-08:00,1005.4097900390625,10.838598,10838.598 +14004,2025-03-08T18:05:23.177308-08:00,1005.3875122070312,10.848685,10848.685 +14005,2025-03-08T18:05:34.023565-08:00,1005.38330078125,10.846257,10846.257 +14006,2025-03-08T18:05:44.933599-08:00,1005.3954467773438,10.910034,10910.034 +14007,2025-03-08T18:05:55.782138-08:00,1005.3756103515625,10.848539,10848.539 +14008,2025-03-08T18:06:06.618516-08:00,1005.355712890625,10.836378,10836.378 +14009,2025-03-08T18:06:17.467296-08:00,1005.4110717773438,10.84878,10848.78 +14010,2025-03-08T18:06:28.314274-08:00,1005.4177856445312,10.846978,10846.978 +14011,2025-03-08T18:06:39.152607-08:00,1005.3634643554688,10.838333,10838.333 +14012,2025-03-08T18:06:49.994342-08:00,1005.368896484375,10.841735,10841.735 +14013,2025-03-08T18:07:00.833543-08:00,1005.356689453125,10.839201,10839.201 +14014,2025-03-08T18:07:11.675540-08:00,1005.3515625,10.841997,10841.997 +14015,2025-03-08T18:07:22.529302-08:00,1005.3634643554688,10.853762,10853.762 +14016,2025-03-08T18:07:33.372827-08:00,1005.3368530273438,10.843525,10843.525 +14017,2025-03-08T18:07:44.212296-08:00,1005.3448486328125,10.839469,10839.469 +14018,2025-03-08T18:07:55.060295-08:00,1005.3250122070312,10.847999,10847.999 +14019,2025-03-08T18:08:05.903291-08:00,1005.36474609375,10.842996,10842.996 +14020,2025-03-08T18:08:16.741910-08:00,1005.3671875,10.838619,10838.619 +14021,2025-03-08T18:08:27.577353-08:00,1005.3316650390625,10.835443,10835.443 +14022,2025-03-08T18:08:38.422299-08:00,1005.30517578125,10.844946,10844.946 +14023,2025-03-08T18:08:49.262295-08:00,1005.36474609375,10.839996,10839.996 +14024,2025-03-08T18:09:00.102419-08:00,1005.345947265625,10.840124,10840.124 +14025,2025-03-08T18:09:10.950731-08:00,1005.3515625,10.848312,10848.312 +14026,2025-03-08T18:09:21.793372-08:00,1005.3368530273438,10.842641,10842.641 +14027,2025-03-08T18:09:32.631972-08:00,1005.3501586914062,10.8386,10838.6 +14028,2025-03-08T18:09:43.479840-08:00,1005.3713989257812,10.847868,10847.868 +14029,2025-03-08T18:09:54.317297-08:00,1005.3623657226562,10.837457,10837.457 +14030,2025-03-08T18:10:05.160306-08:00,1005.3634643554688,10.843009,10843.009 +14031,2025-03-08T18:10:15.998472-08:00,1005.3368530273438,10.838166,10838.166 +14032,2025-03-08T18:10:26.841036-08:00,1005.36474609375,10.842564,10842.564 +14033,2025-03-08T18:10:37.683752-08:00,1005.3847045898438,10.842716,10842.716 +14034,2025-03-08T18:10:48.525527-08:00,1005.38330078125,10.841775,10841.775 +14035,2025-03-08T18:10:59.358627-08:00,1005.3898315429688,10.8331,10833.1 +14036,2025-03-08T18:11:10.200587-08:00,1005.4177856445312,10.84196,10841.96 +14037,2025-03-08T18:11:21.032427-08:00,1005.4087524414062,10.83184,10831.84 +14038,2025-03-08T18:11:31.881276-08:00,1005.4296875,10.848849,10848.849 +14039,2025-03-08T18:11:42.714147-08:00,1005.3888549804688,10.832871,10832.871 +14040,2025-03-08T18:11:53.559295-08:00,1005.4110717773438,10.845148,10845.148 +14041,2025-03-08T18:12:04.395979-08:00,1005.4285888671875,10.836684,10836.684 +14042,2025-03-08T18:12:15.238623-08:00,1005.4229736328125,10.842644,10842.644 +14043,2025-03-08T18:12:26.073296-08:00,1005.4376831054688,10.834673,10834.673 +14044,2025-03-08T18:12:36.924082-08:00,1005.4097900390625,10.850786,10850.786 +14045,2025-03-08T18:12:47.764453-08:00,1005.4097900390625,10.840371,10840.371 +14046,2025-03-08T18:12:58.605525-08:00,1005.3954467773438,10.841072,10841.072 +14047,2025-03-08T18:13:09.443347-08:00,1005.3623657226562,10.837822,10837.822 +14048,2025-03-08T18:13:20.284769-08:00,1005.3822021484375,10.841422,10841.422 +14049,2025-03-08T18:13:31.122665-08:00,1005.3875122070312,10.837896,10837.896 +14050,2025-03-08T18:13:41.975621-08:00,1005.4087524414062,10.852956,10852.956 +14051,2025-03-08T18:13:52.815573-08:00,1005.4087524414062,10.839952,10839.952 +14052,2025-03-08T18:14:03.651275-08:00,1005.3888549804688,10.835702,10835.702 +14053,2025-03-08T18:14:14.494884-08:00,1005.4073486328125,10.843609,10843.609 +14054,2025-03-08T18:14:25.337347-08:00,1005.4073486328125,10.842463,10842.463 +14055,2025-03-08T18:14:36.170301-08:00,1005.4006958007812,10.832954,10832.954 +14056,2025-03-08T18:14:47.007599-08:00,1005.3699951171875,10.837298,10837.298 +14057,2025-03-08T18:14:57.849644-08:00,1005.368896484375,10.842045,10842.045 +14058,2025-03-08T18:15:08.689385-08:00,1005.3490600585938,10.839741,10839.741 +14059,2025-03-08T18:15:19.519295-08:00,1005.4296875,10.82991,10829.91 +14060,2025-03-08T18:15:30.362408-08:00,1005.4138793945312,10.843113,10843.113 +14061,2025-03-08T18:15:41.205153-08:00,1005.4020385742188,10.842745,10842.745 +14062,2025-03-08T18:15:52.042648-08:00,1005.4138793945312,10.837495,10837.495 +14063,2025-03-08T18:16:02.885270-08:00,1005.4417724609375,10.842622,10842.622 +14064,2025-03-08T18:16:13.734429-08:00,1005.4285888671875,10.849159,10849.159 +14065,2025-03-08T18:16:24.573573-08:00,1005.3954467773438,10.839144,10839.144 +14066,2025-03-08T18:16:35.420429-08:00,1005.415283203125,10.846856,10846.856 +14067,2025-03-08T18:16:46.255739-08:00,1005.4163818359375,10.83531,10835.31 +14068,2025-03-08T18:16:57.096568-08:00,1005.4296875,10.840829,10840.829 +14069,2025-03-08T18:17:07.937548-08:00,1005.4138793945312,10.84098,10840.98 +14070,2025-03-08T18:17:18.775642-08:00,1005.4163818359375,10.838094,10838.094 +14071,2025-03-08T18:17:29.605725-08:00,1005.4229736328125,10.830083,10830.083 +14072,2025-03-08T18:17:40.453854-08:00,1005.4310302734375,10.848129,10848.129 +14073,2025-03-08T18:17:51.300453-08:00,1005.45751953125,10.846599,10846.599 +14074,2025-03-08T18:18:02.142294-08:00,1005.4453125,10.841841,10841.841 +14075,2025-03-08T18:18:12.987293-08:00,1005.4453125,10.844999,10844.999 +14076,2025-03-08T18:18:23.826578-08:00,1005.4320068359375,10.839285,10839.285 +14077,2025-03-08T18:18:34.673427-08:00,1005.4121704101562,10.846849,10846.849 +14078,2025-03-08T18:18:45.506293-08:00,1005.4400634765625,10.832866,10832.866 +14079,2025-03-08T18:18:56.352437-08:00,1005.4268798828125,10.846144,10846.144 +14080,2025-03-08T18:19:07.192022-08:00,1005.4533081054688,10.839585,10839.585 +14081,2025-03-08T18:19:18.032284-08:00,1005.494140625,10.840262,10840.262 +14082,2025-03-08T18:19:28.865286-08:00,1005.4491577148438,10.833002,10833.002 +14083,2025-03-08T18:19:39.707840-08:00,1005.48095703125,10.842554,10842.554 +14084,2025-03-08T18:19:50.541564-08:00,1005.4320068359375,10.833724,10833.724 +14085,2025-03-08T18:20:01.392301-08:00,1005.48095703125,10.850737,10850.737 +14086,2025-03-08T18:20:12.232513-08:00,1005.4822387695312,10.840212,10840.212 +14087,2025-03-08T18:20:23.077753-08:00,1005.4268798828125,10.84524,10845.24 +14088,2025-03-08T18:20:33.924603-08:00,1005.4742431640625,10.84685,10846.85 +14089,2025-03-08T18:20:44.762297-08:00,1005.4467163085938,10.837694,10837.694 +14090,2025-03-08T18:20:55.606302-08:00,1005.4651489257812,10.844005,10844.005 +14091,2025-03-08T18:21:06.441628-08:00,1005.4600219726562,10.835326,10835.326 +14092,2025-03-08T18:21:17.285663-08:00,1005.4310302734375,10.844035,10844.035 +14093,2025-03-08T18:21:28.133597-08:00,1005.466552734375,10.847934,10847.934 +14094,2025-03-08T18:21:38.965275-08:00,1005.50390625,10.831678,10831.678 +14095,2025-03-08T18:21:49.808618-08:00,1005.5050048828125,10.843343,10843.343 +14096,2025-03-08T18:22:00.651890-08:00,1005.485107421875,10.843272,10843.272 +14097,2025-03-08T18:22:11.504968-08:00,1005.5328369140625,10.853078,10853.078 +14098,2025-03-08T18:22:22.343691-08:00,1005.510498046875,10.838723,10838.723 +14099,2025-03-08T18:22:33.179498-08:00,1005.5181884765625,10.835807,10835.807 +14100,2025-03-08T18:22:44.029439-08:00,1005.5091552734375,10.849941,10849.941 +14101,2025-03-08T18:22:54.867388-08:00,1005.5158081054688,10.837949,10837.949 +14102,2025-03-08T18:22:56.050076-08:00,1005.5223388671875,1.182688,1182.688 +14103,2025-03-08T18:23:05.710301-08:00,1005.5223388671875,9.660225,9660.225 +14104,2025-03-08T18:23:16.552640-08:00,1005.5289916992188,10.842339,10842.339 +14105,2025-03-08T18:23:27.391754-08:00,1005.5133056640625,10.839114,10839.114 +14106,2025-03-08T18:23:38.234421-08:00,1005.4923706054688,10.842667,10842.667 +14107,2025-03-08T18:23:49.070564-08:00,1005.51220703125,10.836143,10836.143 +14108,2025-03-08T18:23:59.924488-08:00,1005.493408203125,10.853924,10853.924 +14109,2025-03-08T18:24:10.767350-08:00,1005.537353515625,10.842862,10842.862 +14110,2025-03-08T18:24:21.604708-08:00,1005.5254516601562,10.837358,10837.358 +14111,2025-03-08T18:24:32.448734-08:00,1005.5230712890625,10.844026,10844.026 +14112,2025-03-08T18:24:43.286540-08:00,1005.5362548828125,10.837806,10837.806 +14113,2025-03-08T18:24:54.124623-08:00,1005.5429077148438,10.838083,10838.083 +14114,2025-03-08T18:25:04.965354-08:00,1005.5282592773438,10.840731,10840.731 +14115,2025-03-08T18:25:15.804617-08:00,1005.5216674804688,10.839263,10839.263 +14116,2025-03-08T18:25:26.643438-08:00,1005.5693969726562,10.838821,10838.821 +14117,2025-03-08T18:25:37.482558-08:00,1005.534912109375,10.83912,10839.12 +14118,2025-03-08T18:25:48.324517-08:00,1005.534912109375,10.841959,10841.959 +14119,2025-03-08T18:25:59.163331-08:00,1005.4996948242188,10.838814,10838.814 +14120,2025-03-08T18:26:09.991298-08:00,1005.5328369140625,10.827967,10827.967 +14121,2025-03-08T18:26:20.837299-08:00,1005.5592041015625,10.846001,10846.001 +14122,2025-03-08T18:26:31.672436-08:00,1005.5314331054688,10.835137,10835.137 +14123,2025-03-08T18:26:42.509598-08:00,1005.5421752929688,10.837162,10837.162 +14124,2025-03-08T18:26:53.346301-08:00,1005.557861328125,10.836703,10836.703 +14125,2025-03-08T18:27:04.191296-08:00,1005.5369262695312,10.844995,10844.995 +14126,2025-03-08T18:27:15.028922-08:00,1005.5791625976562,10.837626,10837.626 +14127,2025-03-08T18:27:25.864613-08:00,1005.55126953125,10.835691,10835.691 +14128,2025-03-08T18:27:36.707436-08:00,1005.5487670898438,10.842823,10842.823 +14129,2025-03-08T18:27:47.550393-08:00,1005.51220703125,10.842957,10842.957 +14130,2025-03-08T18:27:58.382697-08:00,1005.5187377929688,10.832304,10832.304 +14131,2025-03-08T18:28:09.231618-08:00,1005.5386962890625,10.848921,10848.921 +14132,2025-03-08T18:28:20.069540-08:00,1005.51220703125,10.837922,10837.922 +14133,2025-03-08T18:28:30.914885-08:00,1005.5331420898438,10.845345,10845.345 +14134,2025-03-08T18:28:41.752610-08:00,1005.525390625,10.837725,10837.725 +14135,2025-03-08T18:28:52.596524-08:00,1005.552978515625,10.843914,10843.914 +14136,2025-03-08T18:29:03.436377-08:00,1005.5386962890625,10.839853,10839.853 +14137,2025-03-08T18:29:14.281448-08:00,1005.5386962890625,10.845071,10845.071 +14138,2025-03-08T18:29:25.127627-08:00,1005.5372924804688,10.846179,10846.179 +14139,2025-03-08T18:29:35.970471-08:00,1005.5438842773438,10.842844,10842.844 +14140,2025-03-08T18:29:46.807615-08:00,1005.5494384765625,10.837144,10837.144 +14141,2025-03-08T18:29:57.646627-08:00,1005.563720703125,10.839012,10839.012 +14142,2025-03-08T18:30:08.489262-08:00,1005.5560913085938,10.842635,10842.635 +14143,2025-03-08T18:30:19.329282-08:00,1005.548095703125,10.84002,10840.02 +14144,2025-03-08T18:30:30.161349-08:00,1005.5337524414062,10.832067,10832.067 +14145,2025-03-08T18:30:41.014305-08:00,1005.5470581054688,10.852956,10852.956 +14146,2025-03-08T18:30:51.849575-08:00,1005.5643920898438,10.83527,10835.27 +14147,2025-03-08T18:31:02.693288-08:00,1005.5588989257812,10.843713,10843.713 +14148,2025-03-08T18:31:13.536548-08:00,1005.5578002929688,10.84326,10843.26 +14149,2025-03-08T18:31:24.378638-08:00,1005.5711059570312,10.84209,10842.09 +14150,2025-03-08T18:31:35.211446-08:00,1005.5909423828125,10.832808,10832.808 +14151,2025-03-08T18:31:46.048620-08:00,1005.5751342773438,10.837174,10837.174 +14152,2025-03-08T18:31:56.891519-08:00,1005.57763671875,10.842899,10842.899 +14153,2025-03-08T18:32:07.728987-08:00,1005.5697021484375,10.837468,10837.468 +14154,2025-03-08T18:32:18.567516-08:00,1005.5818481445312,10.838529,10838.529 +14155,2025-03-08T18:32:29.411290-08:00,1005.5828857421875,10.843774,10843.774 +14156,2025-03-08T18:32:40.245668-08:00,1005.5697021484375,10.834378,10834.378 +14157,2025-03-08T18:32:51.079442-08:00,1005.5804443359375,10.833774,10833.774 +14158,2025-03-08T18:33:01.927295-08:00,1005.5950927734375,10.847853,10847.853 +14159,2025-03-08T18:33:12.760458-08:00,1005.5859985351562,10.833163,10833.163 +14160,2025-03-08T18:33:23.602549-08:00,1005.5992431640625,10.842091,10842.091 +14161,2025-03-08T18:33:34.439606-08:00,1005.5717163085938,10.837057,10837.057 +14162,2025-03-08T18:33:45.290307-08:00,1005.6058349609375,10.850701,10850.701 +14163,2025-03-08T18:33:56.134717-08:00,1005.5890502929688,10.84441,10844.41 +14164,2025-03-08T18:34:06.973290-08:00,1005.5836181640625,10.838573,10838.573 +14165,2025-03-08T18:34:17.817288-08:00,1005.5890502929688,10.843998,10843.998 +14166,2025-03-08T18:34:28.653335-08:00,1005.574462890625,10.836047,10836.047 +14167,2025-03-08T18:34:39.504141-08:00,1005.6009521484375,10.850806,10850.806 +14168,2025-03-08T18:34:50.339731-08:00,1005.5811157226562,10.83559,10835.59 +14169,2025-03-08T18:35:01.184300-08:00,1005.625,10.844569,10844.569 +14170,2025-03-08T18:35:12.026542-08:00,1005.599853515625,10.842242,10842.242 +14171,2025-03-08T18:35:22.877407-08:00,1005.6197509765625,10.850865,10850.865 +14172,2025-03-08T18:35:33.711182-08:00,1005.597412109375,10.833775,10833.775 +14173,2025-03-08T18:35:44.550483-08:00,1005.584228515625,10.839301,10839.301 +14174,2025-03-08T18:35:55.398435-08:00,1005.597412109375,10.847952,10847.952 +14175,2025-03-08T18:36:06.241675-08:00,1005.5960693359375,10.84324,10843.24 +14176,2025-03-08T18:36:17.079352-08:00,1005.5817260742188,10.837677,10837.677 +14177,2025-03-08T18:36:27.918305-08:00,1005.6015625,10.838953,10838.953 +14178,2025-03-08T18:36:38.756555-08:00,1005.594970703125,10.83825,10838.25 +14179,2025-03-08T18:36:49.609372-08:00,1005.6002197265625,10.852817,10852.817 +14180,2025-03-08T18:37:00.453789-08:00,1005.5792236328125,10.844417,10844.417 +14181,2025-03-08T18:37:11.289296-08:00,1005.59912109375,10.835507,10835.507 +14182,2025-03-08T18:37:22.133297-08:00,1005.5935668945312,10.844001,10844.001 +14183,2025-03-08T18:37:32.977536-08:00,1005.564697265625,10.844239,10844.239 +14184,2025-03-08T18:37:43.814788-08:00,1005.59912109375,10.837252,10837.252 +14185,2025-03-08T18:37:54.663978-08:00,1005.5953369140625,10.84919,10849.19 +14186,2025-03-08T18:38:05.501309-08:00,1005.5834350585938,10.837331,10837.331 +14187,2025-03-08T18:38:16.334753-08:00,1005.61767578125,10.833444,10833.444 +14188,2025-03-08T18:38:27.180291-08:00,1005.5967407226562,10.845538,10845.538 +14189,2025-03-08T18:38:38.028294-08:00,1005.5834350585938,10.848003,10848.003 +14190,2025-03-08T18:38:48.864512-08:00,1005.6165771484375,10.836218,10836.218 +14191,2025-03-08T18:38:59.704392-08:00,1005.6298217773438,10.83988,10839.88 +14192,2025-03-08T18:39:10.544817-08:00,1005.600830078125,10.840425,10840.425 +14193,2025-03-08T18:39:21.390298-08:00,1005.6273193359375,10.845481,10845.481 +14194,2025-03-08T18:39:32.227449-08:00,1005.600830078125,10.837151,10837.151 +14195,2025-03-08T18:39:43.070636-08:00,1005.6207885742188,10.843187,10843.187 +14196,2025-03-08T18:39:53.909540-08:00,1005.6116333007812,10.838904,10838.904 +14197,2025-03-08T18:40:04.749435-08:00,1005.6102905273438,10.839895,10839.895 +14198,2025-03-08T18:40:15.590547-08:00,1005.6102905273438,10.841112,10841.112 +14199,2025-03-08T18:40:26.425395-08:00,1005.631591796875,10.834848,10834.848 +14200,2025-03-08T18:40:37.259442-08:00,1005.6514282226562,10.834047,10834.047 +14201,2025-03-08T18:40:48.100524-08:00,1005.5948486328125,10.841082,10841.082 +14202,2025-03-08T18:40:58.944924-08:00,1005.6146850585938,10.8444,10844.4 +14203,2025-03-08T18:41:09.780299-08:00,1005.6433715820312,10.835375,10835.375 +14204,2025-03-08T18:41:20.622298-08:00,1005.6157836914062,10.841999,10841.999 +14205,2025-03-08T18:41:31.466295-08:00,1005.6224365234375,10.843997,10843.997 +14206,2025-03-08T18:41:42.308279-08:00,1005.6174926757812,10.841984,10841.984 +14207,2025-03-08T18:41:53.145603-08:00,1005.6331787109375,10.837324,10837.324 +14208,2025-03-08T18:42:03.984508-08:00,1005.6122436523438,10.838905,10838.905 +14209,2025-03-08T18:42:14.824112-08:00,1005.6398315429688,10.839604,10839.604 +14210,2025-03-08T18:42:25.659296-08:00,1005.6453857421875,10.835184,10835.184 +14211,2025-03-08T18:42:36.492302-08:00,1005.6544799804688,10.833006,10833.006 +14212,2025-03-08T18:42:47.342795-08:00,1005.6282958984375,10.850493,10850.493 +14213,2025-03-08T18:42:58.188599-08:00,1005.614013671875,10.845804,10845.804 +14214,2025-03-08T18:43:09.032814-08:00,1005.612548828125,10.844215,10844.215 +14215,2025-03-08T18:43:19.873451-08:00,1005.5982666015625,10.840637,10840.637 +14216,2025-03-08T18:43:30.710623-08:00,1005.6257934570312,10.837172,10837.172 +14217,2025-03-08T18:43:41.551815-08:00,1005.6404418945312,10.841192,10841.192 +14218,2025-03-08T18:43:52.388297-08:00,1005.611572265625,10.836482,10836.482 +14219,2025-03-08T18:44:03.236334-08:00,1005.6445922851562,10.848037,10848.037 +14220,2025-03-08T18:44:14.076709-08:00,1005.6366577148438,10.840375,10840.375 +14221,2025-03-08T18:44:24.918435-08:00,1005.6181030273438,10.841726,10841.726 +14222,2025-03-08T18:44:35.758535-08:00,1005.6101684570312,10.8401,10840.1 +14223,2025-03-08T18:44:46.604295-08:00,1005.6233520507812,10.84576,10845.76 +14224,2025-03-08T18:44:57.441790-08:00,1005.6300048828125,10.837495,10837.495 +14225,2025-03-08T18:45:08.284798-08:00,1005.6355590820312,10.843008,10843.008 +14226,2025-03-08T18:45:19.136392-08:00,1005.6156005859375,10.851594,10851.594 +14227,2025-03-08T18:45:29.980539-08:00,1005.6233520507812,10.844147,10844.147 +14228,2025-03-08T18:45:40.823501-08:00,1005.643310546875,10.842962,10842.962 +14229,2025-03-08T18:45:51.666547-08:00,1005.6275024414062,10.843046,10843.046 +14230,2025-03-08T18:46:02.498530-08:00,1005.6342163085938,10.831983,10831.983 +14231,2025-03-08T18:46:13.349343-08:00,1005.6397094726562,10.850813,10850.813 +14232,2025-03-08T18:46:24.186563-08:00,1005.6408081054688,10.83722,10837.22 +14233,2025-03-08T18:46:35.027615-08:00,1005.6463012695312,10.841052,10841.052 +14234,2025-03-08T18:46:45.860302-08:00,1005.64501953125,10.832687,10832.687 +14235,2025-03-08T18:46:56.703298-08:00,1005.6780395507812,10.842996,10842.996 +14236,2025-03-08T18:47:07.535638-08:00,1005.6226806640625,10.83234,10832.34 +14237,2025-03-08T18:47:18.381908-08:00,1005.65576171875,10.84627,10846.27 +14238,2025-03-08T18:47:29.224398-08:00,1005.63720703125,10.84249,10842.49 +14239,2025-03-08T18:47:40.060295-08:00,1005.65576171875,10.835897,10835.897 +14240,2025-03-08T18:47:50.896286-08:00,1005.6414184570312,10.835991,10835.991 +14241,2025-03-08T18:48:01.739296-08:00,1005.6755981445312,10.84301,10843.01 +14242,2025-03-08T18:48:12.577855-08:00,1005.613525390625,10.838559,10838.559 +14243,2025-03-08T18:48:23.412644-08:00,1005.6400146484375,10.834789,10834.789 +14244,2025-03-08T18:48:34.254301-08:00,1005.638916015625,10.841657,10841.657 +14245,2025-03-08T18:48:45.091678-08:00,1005.6612548828125,10.837377,10837.377 +14246,2025-03-08T18:48:55.932680-08:00,1005.651123046875,10.841002,10841.002 +14247,2025-03-08T18:49:06.769289-08:00,1005.67626953125,10.836609,10836.609 +14248,2025-03-08T18:49:17.611716-08:00,1005.6629638671875,10.842427,10842.427 +14249,2025-03-08T18:49:28.462302-08:00,1005.6695556640625,10.850586,10850.586 +14250,2025-03-08T18:49:39.292836-08:00,1005.6472778320312,10.830534,10830.534 +14251,2025-03-08T18:49:50.131343-08:00,1005.6539306640625,10.838507,10838.507 +14252,2025-03-08T18:50:00.968304-08:00,1005.6751708984375,10.836961,10836.961 +14253,2025-03-08T18:50:11.806916-08:00,1005.6580200195312,10.838612,10838.612 +14254,2025-03-08T18:50:22.649296-08:00,1005.6116943359375,10.84238,10842.38 +14255,2025-03-08T18:50:33.491278-08:00,1005.6239013671875,10.841982,10841.982 +14256,2025-03-08T18:50:44.327654-08:00,1005.6448364257812,10.836376,10836.376 +14257,2025-03-08T18:50:55.161336-08:00,1005.6239013671875,10.833682,10833.682 +14258,2025-03-08T18:51:05.993530-08:00,1005.6158447265625,10.832194,10832.194 +14259,2025-03-08T18:51:16.836862-08:00,1005.6279907226562,10.843332,10843.332 +14260,2025-03-08T18:51:27.678517-08:00,1005.656982421875,10.841655,10841.655 +14261,2025-03-08T18:51:38.516290-08:00,1005.654541015625,10.837773,10837.773 +14262,2025-03-08T18:51:49.357302-08:00,1005.65966796875,10.841012,10841.012 +14263,2025-03-08T18:52:00.196586-08:00,1005.6199951171875,10.839284,10839.284 +14264,2025-03-08T18:52:11.027346-08:00,1005.6520385742188,10.83076,10830.76 +14265,2025-03-08T18:52:21.872520-08:00,1005.6322021484375,10.845174,10845.174 +14266,2025-03-08T18:52:32.710140-08:00,1005.6109619140625,10.83762,10837.62 +14267,2025-03-08T18:52:43.551517-08:00,1005.6572875976562,10.841377,10841.377 +14268,2025-03-08T18:52:54.389297-08:00,1005.6231079101562,10.83778,10837.78 +14269,2025-03-08T18:53:05.223332-08:00,1005.6307983398438,10.834035,10834.035 +14270,2025-03-08T18:53:16.063599-08:00,1005.6307983398438,10.840267,10840.267 +14271,2025-03-08T18:53:26.902316-08:00,1005.6307983398438,10.838717,10838.717 +14272,2025-03-08T18:53:37.733684-08:00,1005.64404296875,10.831368,10831.368 +14273,2025-03-08T18:53:48.575508-08:00,1005.6282958984375,10.841824,10841.824 +14274,2025-03-08T18:53:59.408276-08:00,1005.6561889648438,10.832768,10832.768 +14275,2025-03-08T18:54:10.244595-08:00,1005.6282958984375,10.836319,10836.319 +14276,2025-03-08T18:54:21.083366-08:00,1005.6150512695312,10.838771,10838.771 +14277,2025-03-08T18:54:31.921348-08:00,1005.6255493164062,10.837982,10837.982 +14278,2025-03-08T18:54:42.750671-08:00,1005.6300048828125,10.829323,10829.323 +14279,2025-03-08T18:54:53.594299-08:00,1005.6376342773438,10.843628,10843.628 +14280,2025-03-08T18:55:04.437293-08:00,1005.6234130859375,10.842994,10842.994 +14281,2025-03-08T18:55:15.277160-08:00,1005.6112670898438,10.839867,10839.867 +14282,2025-03-08T18:55:26.120929-08:00,1005.6244506835938,10.843769,10843.769 +14283,2025-03-08T18:55:36.949427-08:00,1005.6366577148438,10.828498,10828.498 +14284,2025-03-08T18:55:47.794305-08:00,1005.63525390625,10.844878,10844.878 +14285,2025-03-08T18:55:58.632644-08:00,1005.6366577148438,10.838339,10838.339 +14286,2025-03-08T18:56:09.474380-08:00,1005.6328125,10.841736,10841.736 +14287,2025-03-08T18:56:20.317486-08:00,1005.6342163085938,10.843106,10843.106 +14288,2025-03-08T18:56:31.155347-08:00,1005.6551513671875,10.837861,10837.861 +14289,2025-03-08T18:56:41.991342-08:00,1005.6342163085938,10.835995,10835.995 +14290,2025-03-08T18:56:52.831501-08:00,1005.66064453125,10.840159,10840.159 +14291,2025-03-08T18:57:03.666652-08:00,1005.64599609375,10.835151,10835.151 +14292,2025-03-08T18:57:14.496293-08:00,1005.667236328125,10.829641,10829.641 +14293,2025-03-08T18:57:25.335352-08:00,1005.6659545898438,10.839059,10839.059 +14294,2025-03-08T18:57:36.173583-08:00,1005.64599609375,10.838231,10838.231 +14295,2025-03-08T18:57:47.007626-08:00,1005.6303100585938,10.834043,10834.043 +14296,2025-03-08T18:57:57.838227-08:00,1005.6292114257812,10.830601,10830.601 +14297,2025-03-08T18:58:08.679607-08:00,1005.6079711914062,10.84138,10841.38 +14298,2025-03-08T18:58:19.503651-08:00,1005.6170043945312,10.824044,10824.044 +14299,2025-03-08T18:58:30.350382-08:00,1005.6278076171875,10.846731,10846.731 +14300,2025-03-08T18:58:41.176301-08:00,1005.6212768554688,10.825919,10825.919 +14301,2025-03-08T18:58:52.012870-08:00,1005.6212768554688,10.836569,10836.569 +14302,2025-03-08T18:59:02.857103-08:00,1005.6013793945312,10.844233,10844.233 +14303,2025-03-08T18:59:13.692300-08:00,1005.6013793945312,10.835197,10835.197 +14304,2025-03-08T18:59:24.532298-08:00,1005.6146240234375,10.839998,10839.998 +14305,2025-03-08T18:59:35.363029-08:00,1005.6079711914062,10.830731,10830.731 +14306,2025-03-08T18:59:46.199545-08:00,1005.613525390625,10.836516,10836.516 +14307,2025-03-08T18:59:57.027100-08:00,1005.57373046875,10.827555,10827.555 +14308,2025-03-08T19:00:07.858296-08:00,1005.5724487304688,10.831196,10831.196 +14309,2025-03-08T19:00:18.701509-08:00,1005.5870361328125,10.843213,10843.213 +14310,2025-03-08T19:00:29.533618-08:00,1005.5525512695312,10.832109,10832.109 +14311,2025-03-08T19:00:40.369300-08:00,1005.598876953125,10.835682,10835.682 +14312,2025-03-08T19:00:51.212801-08:00,1005.5978393554688,10.843501,10843.501 +14313,2025-03-08T19:01:02.044817-08:00,1005.6044311523438,10.832016,10832.016 +14314,2025-03-08T19:01:12.893301-08:00,1005.60302734375,10.848484,10848.484 +14315,2025-03-08T19:01:23.733290-08:00,1005.61767578125,10.839989,10839.989 +14316,2025-03-08T19:01:34.570403-08:00,1005.611083984375,10.837113,10837.113 +14317,2025-03-08T19:01:45.417627-08:00,1005.6162719726562,10.847224,10847.224 +14318,2025-03-08T19:01:56.261336-08:00,1005.6151733398438,10.843709,10843.709 +14319,2025-03-08T19:02:07.109583-08:00,1005.6085815429688,10.848247,10848.247 +14320,2025-03-08T19:02:17.947299-08:00,1005.6350708007812,10.837716,10837.716 +14321,2025-03-08T19:02:28.785260-08:00,1005.5797119140625,10.837961,10837.961 +14322,2025-03-08T19:02:39.632838-08:00,1005.6204833984375,10.847578,10847.578 +14323,2025-03-08T19:02:50.470295-08:00,1005.6326293945312,10.837457,10837.457 +14324,2025-03-08T19:03:01.309118-08:00,1005.619384765625,10.838823,10838.823 +14325,2025-03-08T19:03:12.146619-08:00,1005.6468505859375,10.837501,10837.501 +14326,2025-03-08T19:03:22.993431-08:00,1005.6525268554688,10.846812,10846.812 +14327,2025-03-08T19:03:33.823407-08:00,1005.6590576171875,10.829976,10829.976 +14328,2025-03-08T19:03:44.667760-08:00,1005.6179809570312,10.844353,10844.353 +14329,2025-03-08T19:03:55.510857-08:00,1005.63671875,10.843097,10843.097 +14330,2025-03-08T19:04:06.352299-08:00,1005.6632690429688,10.841442,10841.442 +14331,2025-03-08T19:04:17.182562-08:00,1005.6420288085938,10.830263,10830.263 +14332,2025-03-08T19:04:28.018640-08:00,1005.66845703125,10.836078,10836.078 +14333,2025-03-08T19:04:38.861291-08:00,1005.63427734375,10.842651,10842.651 +14334,2025-03-08T19:04:49.694081-08:00,1005.6353149414062,10.83279,10832.79 +14335,2025-03-08T19:05:00.536441-08:00,1005.6265869140625,10.84236,10842.36 +14336,2025-03-08T19:05:11.359418-08:00,1005.653076171875,10.822977,10822.977 +14337,2025-03-08T19:05:22.198945-08:00,1005.65966796875,10.839527,10839.527 +14338,2025-03-08T19:05:33.036296-08:00,1005.6729736328125,10.837351,10837.351 +14339,2025-03-08T19:05:43.896414-08:00,1005.6464233398438,10.860118,10860.118 +14340,2025-03-08T19:05:54.729343-08:00,1005.6649169921875,10.832929,10832.929 +14341,2025-03-08T19:06:05.566410-08:00,1005.69140625,10.837067,10837.067 +14342,2025-03-08T19:06:16.412469-08:00,1005.6704711914062,10.846059,10846.059 +14343,2025-03-08T19:06:27.257409-08:00,1005.65576171875,10.84494,10844.94 +14344,2025-03-08T19:06:38.101653-08:00,1005.7047119140625,10.844244,10844.244 +14345,2025-03-08T19:06:48.939975-08:00,1005.6624755859375,10.838322,10838.322 +14346,2025-03-08T19:06:59.781389-08:00,1005.6812744140625,10.841414,10841.414 +14347,2025-03-08T19:07:10.625412-08:00,1005.66796875,10.844023,10844.023 +14348,2025-03-08T19:07:21.467567-08:00,1005.693115234375,10.842155,10842.155 +14349,2025-03-08T19:07:32.305463-08:00,1005.7022094726562,10.837896,10837.896 +14350,2025-03-08T19:07:43.141641-08:00,1005.6721801757812,10.836178,10836.178 +14351,2025-03-08T19:07:53.987408-08:00,1005.6732177734375,10.845767,10845.767 +14352,2025-03-08T19:08:04.823761-08:00,1005.69970703125,10.836353,10836.353 +14353,2025-03-08T19:08:15.663673-08:00,1005.6787719726562,10.839912,10839.912 +14354,2025-03-08T19:08:26.508461-08:00,1005.6665649414062,10.844788,10844.788 +14355,2025-03-08T19:08:37.353842-08:00,1005.685302734375,10.845381,10845.381 +14356,2025-03-08T19:08:48.190541-08:00,1005.6920166015625,10.836699,10836.699 +14357,2025-03-08T19:08:59.036323-08:00,1005.6773681640625,10.845782,10845.782 +14358,2025-03-08T19:09:09.872404-08:00,1005.7195434570312,10.836081,10836.081 +14359,2025-03-08T19:09:20.713459-08:00,1005.7368774414062,10.841055,10841.055 +14360,2025-03-08T19:09:31.552950-08:00,1005.69970703125,10.839491,10839.491 +14361,2025-03-08T19:09:42.389409-08:00,1005.6920166015625,10.836459,10836.459 +14362,2025-03-08T19:09:53.229786-08:00,1005.7184448242188,10.840377,10840.377 +14363,2025-03-08T19:10:04.072795-08:00,1005.685302734375,10.843009,10843.009 +14364,2025-03-08T19:10:14.922709-08:00,1005.6906127929688,10.849914,10849.914 +14365,2025-03-08T19:10:25.759426-08:00,1005.6864013671875,10.836717,10836.717 +14366,2025-03-08T19:10:36.605525-08:00,1005.6798706054688,10.846099,10846.099 +14367,2025-03-08T19:10:47.446408-08:00,1005.693115234375,10.840883,10840.883 +14368,2025-03-08T19:10:58.278445-08:00,1005.6732177734375,10.832037,10832.037 +14369,2025-03-08T19:11:09.121407-08:00,1005.6812744140625,10.842962,10842.962 +14370,2025-03-08T19:11:19.969487-08:00,1005.6755981445312,10.84808,10848.08 +14371,2025-03-08T19:11:30.812639-08:00,1005.69140625,10.843152,10843.152 +14372,2025-03-08T19:11:41.652087-08:00,1005.6847534179688,10.839448,10839.448 +14373,2025-03-08T19:11:52.485404-08:00,1005.6847534179688,10.833317,10833.317 +14374,2025-03-08T19:12:03.322637-08:00,1005.6994018554688,10.837233,10837.233 +14375,2025-03-08T19:12:14.163802-08:00,1005.7203369140625,10.841165,10841.165 +14376,2025-03-08T19:12:25.000600-08:00,1005.7095336914062,10.836798,10836.798 +14377,2025-03-08T19:12:35.827987-08:00,1005.6974487304688,10.827387,10827.387 +14378,2025-03-08T19:12:46.660640-08:00,1005.6974487304688,10.832653,10832.653 +14379,2025-03-08T19:12:57.495391-08:00,1005.7064819335938,10.834751,10834.751 +14380,2025-03-08T19:13:08.339704-08:00,1005.723876953125,10.844313,10844.313 +14381,2025-03-08T19:13:19.176520-08:00,1005.7263793945312,10.836816,10836.816 +14382,2025-03-08T19:13:30.018565-08:00,1005.6932983398438,10.842045,10842.045 +14383,2025-03-08T19:13:40.858806-08:00,1005.6947021484375,10.840241,10840.241 +14384,2025-03-08T19:13:51.706874-08:00,1005.7012329101562,10.848068,10848.068 +14385,2025-03-08T19:14:02.535487-08:00,1005.734375,10.828613,10828.613 +14386,2025-03-08T19:14:13.370404-08:00,1005.7246704101562,10.834917,10834.917 +14387,2025-03-08T19:14:24.218958-08:00,1005.730224609375,10.848554,10848.554 +14388,2025-03-08T19:14:35.055545-08:00,1005.719482421875,10.836587,10836.587 +14389,2025-03-08T19:14:45.900469-08:00,1005.707275390625,10.844924,10844.924 +14390,2025-03-08T19:14:56.736208-08:00,1005.7351684570312,10.835739,10835.739 +14391,2025-03-08T19:15:07.573052-08:00,1005.7296142578125,10.836844,10836.844 +14392,2025-03-08T19:15:18.412613-08:00,1005.696533203125,10.839561,10839.561 +14393,2025-03-08T19:15:29.243684-08:00,1005.7427978515625,10.831071,10831.071 +14394,2025-03-08T19:15:40.091590-08:00,1005.7442016601562,10.847906,10847.906 +14395,2025-03-08T19:15:50.919805-08:00,1005.7376708984375,10.828215,10828.215 +14396,2025-03-08T19:16:01.760780-08:00,1005.73876953125,10.840975,10840.975 +14397,2025-03-08T19:16:12.597454-08:00,1005.73876953125,10.836674,10836.674 +14398,2025-03-08T19:16:23.430675-08:00,1005.7532958984375,10.833221,10833.221 +14399,2025-03-08T19:16:34.273417-08:00,1005.7809448242188,10.842742,10842.742 +14400,2025-03-08T19:16:45.110451-08:00,1005.7874755859375,10.837034,10837.034 +14401,2025-03-08T19:16:55.943714-08:00,1005.7212524414062,10.833263,10833.263 +14402,2025-03-08T19:17:06.780362-08:00,1005.7634887695312,10.836648,10836.648 +14403,2025-03-08T19:17:17.615698-08:00,1005.762451171875,10.835336,10835.336 +14404,2025-03-08T19:17:28.460404-08:00,1005.7446899414062,10.844706,10844.706 +14405,2025-03-08T19:17:39.298469-08:00,1005.79248046875,10.838065,10838.065 +14406,2025-03-08T19:17:50.128770-08:00,1005.7725830078125,10.830301,10830.301 +14407,2025-03-08T19:18:00.967533-08:00,1005.8123168945312,10.838763,10838.763 +14408,2025-03-08T19:18:11.811298-08:00,1005.76904296875,10.843765,10843.765 +14409,2025-03-08T19:18:22.645620-08:00,1005.7857666015625,10.834322,10834.322 +14410,2025-03-08T19:18:33.473393-08:00,1005.771240234375,10.827773,10827.773 +14411,2025-03-08T19:18:44.303458-08:00,1005.7910766601562,10.830065,10830.065 +14412,2025-03-08T19:18:55.141412-08:00,1005.7857666015625,10.837954,10837.954 +14413,2025-03-08T19:19:05.974735-08:00,1005.7871704101562,10.833323,10833.323 +14414,2025-03-08T19:19:16.822468-08:00,1005.7806396484375,10.847733,10847.733 +14415,2025-03-08T19:19:27.644496-08:00,1005.7608032226562,10.822028,10822.028 +14416,2025-03-08T19:19:38.485960-08:00,1005.816162109375,10.841464,10841.464 +14417,2025-03-08T19:19:49.317955-08:00,1005.816162109375,10.831995,10831.995 +14418,2025-03-08T19:20:00.149690-08:00,1005.805419921875,10.831735,10831.735 +14419,2025-03-08T19:20:10.992831-08:00,1005.8043212890625,10.843141,10843.141 +14420,2025-03-08T19:20:21.829406-08:00,1005.8134155273438,10.836575,10836.575 +14421,2025-03-08T19:20:32.661459-08:00,1005.8068237304688,10.832053,10832.053 +14422,2025-03-08T19:20:43.505745-08:00,1005.8357543945312,10.844286,10844.286 +14423,2025-03-08T19:20:54.343403-08:00,1005.8211059570312,10.837658,10837.658 +14424,2025-03-08T19:21:05.185454-08:00,1005.810302734375,10.842051,10842.051 +14425,2025-03-08T19:21:16.017498-08:00,1005.8381958007812,10.832044,10832.044 +14426,2025-03-08T19:21:26.860409-08:00,1005.8117065429688,10.842911,10842.911 +14427,2025-03-08T19:21:37.702639-08:00,1005.8193969726562,10.84223,10842.23 +14428,2025-03-08T19:21:48.541407-08:00,1005.8218994140625,10.838768,10838.768 +14429,2025-03-08T19:21:59.372451-08:00,1005.8340454101562,10.831044,10831.044 +14430,2025-03-08T19:22:10.203612-08:00,1005.82080078125,10.831161,10831.161 +14431,2025-03-08T19:22:21.041196-08:00,1005.829833984375,10.837584,10837.584 +14432,2025-03-08T19:22:31.884466-08:00,1005.83203125,10.84327,10843.27 +14433,2025-03-08T19:22:42.721666-08:00,1005.8267822265625,10.8372,10837.2 +14434,2025-03-08T19:22:53.555252-08:00,1005.842529296875,10.833586,10833.586 +14435,2025-03-08T19:23:04.399276-08:00,1005.8369750976562,10.844024,10844.024 +14436,2025-03-08T19:23:15.233563-08:00,1005.83837890625,10.834287,10834.287 +14437,2025-03-08T19:23:26.071692-08:00,1005.8184204101562,10.838129,10838.129 +14438,2025-03-08T19:23:36.910646-08:00,1005.8775024414062,10.838954,10838.954 +14439,2025-03-08T19:23:47.745409-08:00,1005.8565673828125,10.834763,10834.763 +14440,2025-03-08T19:23:58.590433-08:00,1005.8799438476562,10.845024,10845.024 +14441,2025-03-08T19:24:09.427763-08:00,1005.83251953125,10.83733,10837.33 +14442,2025-03-08T19:24:20.273507-08:00,1005.9022827148438,10.845744,10845.744 +14443,2025-03-08T19:24:31.106628-08:00,1005.8385009765625,10.833121,10833.121 +14444,2025-03-08T19:24:41.945853-08:00,1005.8782958984375,10.839225,10839.225 +14445,2025-03-08T19:24:52.783692-08:00,1005.8817138671875,10.837839,10837.839 +14446,2025-03-08T19:25:03.625454-08:00,1005.8975219726562,10.841762,10841.762 +14447,2025-03-08T19:25:14.468699-08:00,1005.904052734375,10.843245,10843.245 +14448,2025-03-08T19:25:25.313085-08:00,1005.8800659179688,10.844386,10844.386 +14449,2025-03-08T19:25:36.156652-08:00,1005.9013061523438,10.843567,10843.567 +14450,2025-03-08T19:25:46.985617-08:00,1005.907958984375,10.828965,10828.965 +14451,2025-03-08T19:25:57.824043-08:00,1005.920654296875,10.838426,10838.426 +14452,2025-03-08T19:26:08.654798-08:00,1005.90625,10.830755,10830.755 +14453,2025-03-08T19:26:19.498414-08:00,1005.9073486328125,10.843616,10843.616 +14454,2025-03-08T19:26:30.337379-08:00,1005.9006958007812,10.838965,10838.965 +14455,2025-03-08T19:26:41.182463-08:00,1005.8965454101562,10.845084,10845.084 +14456,2025-03-08T19:26:52.019400-08:00,1005.889892578125,10.836937,10836.937 +14457,2025-03-08T19:27:02.859876-08:00,1005.9111938476562,10.840476,10840.476 +14458,2025-03-08T19:27:13.693271-08:00,1005.9122924804688,10.833395,10833.395 +14459,2025-03-08T19:27:24.536661-08:00,1005.9202880859375,10.84339,10843.39 +14460,2025-03-08T19:27:35.380465-08:00,1005.9436645507812,10.843804,10843.804 +14461,2025-03-08T19:27:46.216751-08:00,1005.9237670898438,10.836286,10836.286 +14462,2025-03-08T19:27:57.048648-08:00,1005.90283203125,10.831897,10831.897 +14463,2025-03-08T19:28:07.883813-08:00,1005.9171752929688,10.835165,10835.165 +14464,2025-03-08T19:28:18.725326-08:00,1005.932861328125,10.841513,10841.513 +14465,2025-03-08T19:28:29.560389-08:00,1005.9395141601562,10.835063,10835.063 +14466,2025-03-08T19:28:40.386445-08:00,1005.9182739257812,10.826056,10826.056 +14467,2025-03-08T19:28:51.231411-08:00,1005.905029296875,10.844966,10844.966 +14468,2025-03-08T19:29:02.074735-08:00,1005.9381103515625,10.843324,10843.324 +14469,2025-03-08T19:29:12.915741-08:00,1005.96044921875,10.841006,10841.006 +14470,2025-03-08T19:29:23.752629-08:00,1005.9406127929688,10.836888,10836.888 +14471,2025-03-08T19:29:34.594408-08:00,1005.935302734375,10.841779,10841.779 +14472,2025-03-08T19:29:45.436637-08:00,1005.9419555664062,10.842229,10842.229 +14473,2025-03-08T19:29:56.287410-08:00,1005.9207153320312,10.850773,10850.773 +14474,2025-03-08T19:30:07.121939-08:00,1005.9511108398438,10.834529,10834.529 +14475,2025-03-08T19:30:17.968641-08:00,1005.9534912109375,10.846702,10846.702 +14476,2025-03-08T19:30:28.804410-08:00,1005.958740234375,10.835769,10835.769 +14477,2025-03-08T19:30:39.649733-08:00,1005.9389038085938,10.845323,10845.323 +14478,2025-03-08T19:30:50.486714-08:00,1005.9601440429688,10.836981,10836.981 +14479,2025-03-08T19:31:01.322536-08:00,1005.9744262695312,10.835822,10835.822 +14480,2025-03-08T19:31:12.161412-08:00,1005.9625854492188,10.838876,10838.876 +14481,2025-03-08T19:31:23.003732-08:00,1005.9703369140625,10.84232,10842.32 +14482,2025-03-08T19:31:33.839615-08:00,1005.9824829101562,10.835883,10835.883 +14483,2025-03-08T19:31:44.680406-08:00,1005.9835205078125,10.840791,10840.791 +14484,2025-03-08T19:31:55.509901-08:00,1005.9915771484375,10.829495,10829.495 +14485,2025-03-08T19:32:06.355406-08:00,1005.9859619140625,10.845505,10845.505 +14486,2025-03-08T19:32:17.185422-08:00,1005.9939575195312,10.830016,10830.016 +14487,2025-03-08T19:32:28.022435-08:00,1005.9619750976562,10.837013,10837.013 +14488,2025-03-08T19:32:38.859398-08:00,1005.9898681640625,10.836963,10836.963 +14489,2025-03-08T19:32:49.698417-08:00,1006.0264892578125,10.839019,10839.019 +14490,2025-03-08T19:33:00.540814-08:00,1006.0,10.842397,10842.397 +14491,2025-03-08T19:33:11.381448-08:00,1005.98779296875,10.840634,10840.634 +14492,2025-03-08T19:33:22.219555-08:00,1005.9745483398438,10.838107,10838.107 +14493,2025-03-08T19:33:33.063387-08:00,1006.0076293945312,10.843832,10843.832 +14494,2025-03-08T19:33:43.902160-08:00,1006.0101318359375,10.838773,10838.773 +14495,2025-03-08T19:33:54.740659-08:00,1006.0247802734375,10.838499,10838.499 +14496,2025-03-08T19:34:05.586415-08:00,1006.0247802734375,10.845756,10845.756 +14497,2025-03-08T19:34:16.424747-08:00,1006.02587890625,10.838332,10838.332 +14498,2025-03-08T19:34:27.253989-08:00,1005.9993896484375,10.829242,10829.242 +14499,2025-03-08T19:34:38.092417-08:00,1006.0139770507812,10.838428,10838.428 +14500,2025-03-08T19:34:48.933949-08:00,1006.034912109375,10.841532,10841.532 +14501,2025-03-08T19:34:59.771431-08:00,1005.9874877929688,10.837482,10837.482 +14502,2025-03-08T19:35:10.613660-08:00,1006.037353515625,10.842229,10842.229 +14503,2025-03-08T19:35:21.458396-08:00,1006.0098266601562,10.844736,10844.736 +14504,2025-03-08T19:35:32.303727-08:00,1006.0230712890625,10.845331,10845.331 +14505,2025-03-08T19:35:43.134612-08:00,1006.024169921875,10.830885,10830.885 +14506,2025-03-08T19:35:53.977414-08:00,1006.005615234375,10.842802,10842.802 +14507,2025-03-08T19:36:04.812959-08:00,1006.005615234375,10.835545,10835.545 +14508,2025-03-08T19:36:15.660266-08:00,1006.04638671875,10.847307,10847.307 +14509,2025-03-08T19:36:26.500641-08:00,1006.0189208984375,10.840375,10840.375 +14510,2025-03-08T19:36:37.344413-08:00,1006.041259765625,10.843772,10843.772 +14511,2025-03-08T19:36:48.189870-08:00,1006.0081176757812,10.845457,10845.457 +14512,2025-03-08T19:36:59.025460-08:00,1006.02001953125,10.83559,10835.59 +14513,2025-03-08T19:37:09.874722-08:00,1006.0158081054688,10.849262,10849.262 +14514,2025-03-08T19:37:20.706404-08:00,1006.029052734375,10.831682,10831.682 +14515,2025-03-08T19:37:31.552551-08:00,1006.03564453125,10.846147,10846.147 +14516,2025-03-08T19:37:42.403425-08:00,1006.0579833984375,10.850874,10850.874 +14517,2025-03-08T19:37:53.241747-08:00,1006.05029296875,10.838322,10838.322 +14518,2025-03-08T19:38:04.083638-08:00,1006.0646362304688,10.841891,10841.891 +14519,2025-03-08T19:38:14.926635-08:00,1006.0513916015625,10.842997,10842.997 +14520,2025-03-08T19:38:25.764358-08:00,1006.0471801757812,10.837723,10837.723 +14521,2025-03-08T19:38:36.604405-08:00,1006.0670166015625,10.840047,10840.047 +14522,2025-03-08T19:38:47.440413-08:00,1006.0792236328125,10.836008,10836.008 +14523,2025-03-08T19:38:58.279979-08:00,1006.07373046875,10.839566,10839.566 +14524,2025-03-08T19:39:09.127451-08:00,1006.0747680664062,10.847472,10847.472 +14525,2025-03-08T19:39:19.955570-08:00,1006.0548706054688,10.828119,10828.119 +14526,2025-03-08T19:39:30.798576-08:00,1006.1093139648438,10.843006,10843.006 +14527,2025-03-08T19:39:41.637912-08:00,1006.0615844726562,10.839336,10839.336 +14528,2025-03-08T19:39:52.486404-08:00,1006.0695190429688,10.848492,10848.492 +14529,2025-03-08T19:40:03.323391-08:00,1006.0471801757812,10.836987,10836.987 +14530,2025-03-08T19:40:14.169412-08:00,1006.0695190429688,10.846021,10846.021 +14531,2025-03-08T19:40:25.010681-08:00,1006.0604858398438,10.841269,10841.269 +14532,2025-03-08T19:40:35.859885-08:00,1006.0615844726562,10.849204,10849.204 +14533,2025-03-08T19:40:46.690412-08:00,1006.0828247070312,10.830527,10830.527 +14534,2025-03-08T19:40:57.545402-08:00,1006.07373046875,10.85499,10854.99 +14535,2025-03-08T19:41:08.381851-08:00,1006.076171875,10.836449,10836.449 +14536,2025-03-08T19:41:19.232759-08:00,1006.0918579101562,10.850908,10850.908 +14537,2025-03-08T19:41:30.073636-08:00,1006.0747680664062,10.840877,10840.877 +14538,2025-03-08T19:41:40.917598-08:00,1006.1183471679688,10.843962,10843.962 +14539,2025-03-08T19:41:51.756473-08:00,1006.1051635742188,10.838875,10838.875 +14540,2025-03-08T19:42:02.598962-08:00,1006.1406860351562,10.842489,10842.489 +14541,2025-03-08T19:42:13.437565-08:00,1006.1207885742188,10.838603,10838.603 +14542,2025-03-08T19:42:24.283531-08:00,1006.1207885742188,10.845966,10845.966 +14543,2025-03-08T19:42:35.128819-08:00,1006.1009521484375,10.845288,10845.288 +14544,2025-03-08T19:42:45.961728-08:00,1006.1166381835938,10.832909,10832.909 +14545,2025-03-08T19:42:56.801526-08:00,1006.1417236328125,10.839798,10839.798 +14546,2025-03-08T19:43:07.641826-08:00,1006.1351318359375,10.8403,10840.3 +14547,2025-03-08T19:43:18.488996-08:00,1006.134033203125,10.84717,10847.17 +14548,2025-03-08T19:43:29.325921-08:00,1006.11279296875,10.836925,10836.925 +14549,2025-03-08T19:43:40.168403-08:00,1006.134033203125,10.842482,10842.482 +14550,2025-03-08T19:43:51.003675-08:00,1006.1682739257812,10.835272,10835.272 +14551,2025-03-08T19:44:01.849827-08:00,1006.1497802734375,10.846152,10846.152 +14552,2025-03-08T19:44:12.690260-08:00,1006.1365356445312,10.840433,10840.433 +14553,2025-03-08T19:44:23.529521-08:00,1006.1707763671875,10.839261,10839.261 +14554,2025-03-08T19:44:34.368416-08:00,1006.1707763671875,10.838895,10838.895 +14555,2025-03-08T19:44:45.210960-08:00,1006.1773681640625,10.842544,10842.544 +14556,2025-03-08T19:44:56.054518-08:00,1006.158935546875,10.843558,10843.558 +14557,2025-03-08T19:45:06.896996-08:00,1006.158935546875,10.842478,10842.478 +14558,2025-03-08T19:45:17.734481-08:00,1006.15087890625,10.837485,10837.485 +14559,2025-03-08T19:45:28.565413-08:00,1006.1613159179688,10.830932,10830.932 +14560,2025-03-08T19:45:39.409658-08:00,1006.159912109375,10.844245,10844.245 +14561,2025-03-08T19:45:50.244684-08:00,1006.1532592773438,10.835026,10835.026 +14562,2025-03-08T19:46:01.081967-08:00,1006.15576171875,10.837283,10837.283 +14563,2025-03-08T19:46:11.934453-08:00,1006.1637573242188,10.852486,10852.486 +14564,2025-03-08T19:46:22.772078-08:00,1006.1715087890625,10.837625,10837.625 +14565,2025-03-08T19:46:33.618674-08:00,1006.1383056640625,10.846596,10846.596 +14566,2025-03-08T19:46:44.463644-08:00,1006.166259765625,10.84497,10844.97 +14567,2025-03-08T19:46:55.300412-08:00,1006.1596069335938,10.836768,10836.768 +14568,2025-03-08T19:47:06.145458-08:00,1006.1132202148438,10.845046,10845.046 +14569,2025-03-08T19:47:16.985547-08:00,1006.150146484375,10.840089,10840.089 +14570,2025-03-08T19:47:27.829459-08:00,1006.1422119140625,10.843912,10843.912 +14571,2025-03-08T19:47:38.673763-08:00,1006.1766967773438,10.844304,10844.304 +14572,2025-03-08T19:47:49.512413-08:00,1006.1526489257812,10.83865,10838.65 +14573,2025-03-08T19:48:00.359681-08:00,1006.14599609375,10.847268,10847.268 +14574,2025-03-08T19:48:11.197724-08:00,1006.1592407226562,10.838043,10838.043 +14575,2025-03-08T19:48:22.044524-08:00,1006.1314086914062,10.8468,10846.8 +14576,2025-03-08T19:48:32.892918-08:00,1006.1578979492188,10.848394,10848.394 +14577,2025-03-08T19:48:43.723418-08:00,1006.1351318359375,10.8305,10830.5 +14578,2025-03-08T19:48:54.570903-08:00,1006.176025390625,10.847485,10847.485 +14579,2025-03-08T19:49:05.405759-08:00,1006.1617431640625,10.834856,10834.856 +14580,2025-03-08T19:49:16.254443-08:00,1006.1973266601562,10.848684,10848.684 +14581,2025-03-08T19:49:27.097413-08:00,1006.1917114257812,10.84297,10842.97 +14582,2025-03-08T19:49:37.939720-08:00,1006.1917114257812,10.842307,10842.307 +14583,2025-03-08T19:49:48.783694-08:00,1006.2140502929688,10.843974,10843.974 +14584,2025-03-08T19:49:59.633505-08:00,1006.1942138671875,10.849811,10849.811 +14585,2025-03-08T19:50:10.473408-08:00,1006.1834106445312,10.839903,10839.903 +14586,2025-03-08T19:50:21.313409-08:00,1006.197998046875,10.840001,10840.001 +14587,2025-03-08T19:50:32.157414-08:00,1006.2352905273438,10.844005,10844.005 +14588,2025-03-08T19:50:42.998757-08:00,1006.2178955078125,10.841343,10841.343 +14589,2025-03-08T19:50:53.841496-08:00,1006.197998046875,10.842739,10842.739 +14590,2025-03-08T19:51:04.687574-08:00,1006.240234375,10.846078,10846.078 +14591,2025-03-08T19:51:15.534631-08:00,1006.232177734375,10.847057,10847.057 +14592,2025-03-08T19:51:26.384453-08:00,1006.221435546875,10.849822,10849.822 +14593,2025-03-08T19:51:37.215659-08:00,1006.218994140625,10.831206,10831.206 +14594,2025-03-08T19:51:48.062410-08:00,1006.2203369140625,10.846751,10846.751 +14595,2025-03-08T19:51:58.899555-08:00,1006.2081298828125,10.837145,10837.145 +14596,2025-03-08T19:52:09.741465-08:00,1006.25341796875,10.84191,10841.91 +14597,2025-03-08T19:52:20.586698-08:00,1006.2611694335938,10.845233,10845.233 +14598,2025-03-08T19:52:31.428436-08:00,1006.267822265625,10.841738,10841.738 +14599,2025-03-08T19:52:42.283510-08:00,1006.2601318359375,10.855074,10855.074 +14600,2025-03-08T19:52:53.125409-08:00,1006.2479858398438,10.841899,10841.899 +14601,2025-03-08T19:53:03.967393-08:00,1006.2601318359375,10.841984,10841.984 +14602,2025-03-08T19:53:14.804925-08:00,1006.25341796875,10.837532,10837.532 +14603,2025-03-08T19:53:25.645132-08:00,1006.2667236328125,10.840207,10840.207 +14604,2025-03-08T19:53:36.483412-08:00,1006.2943725585938,10.83828,10838.28 +14605,2025-03-08T19:53:47.326420-08:00,1006.2601318359375,10.843008,10843.008 +14606,2025-03-08T19:53:58.174709-08:00,1006.2653198242188,10.848289,10848.289 +14607,2025-03-08T19:54:09.010413-08:00,1006.2709350585938,10.835704,10835.704 +14608,2025-03-08T19:54:19.856712-08:00,1006.2775268554688,10.846299,10846.299 +14609,2025-03-08T19:54:30.700414-08:00,1006.2471923828125,10.843702,10843.702 +14610,2025-03-08T19:54:41.546797-08:00,1006.2659912109375,10.846383,10846.383 +14611,2025-03-08T19:54:52.389778-08:00,1006.260498046875,10.842981,10842.981 +14612,2025-03-08T19:55:03.229385-08:00,1006.2792358398438,10.839607,10839.607 +14613,2025-03-08T19:55:14.071408-08:00,1006.2568969726562,10.842023,10842.023 +14614,2025-03-08T19:55:24.908968-08:00,1006.2503051757812,10.83756,10837.56 +14615,2025-03-08T19:55:35.752461-08:00,1006.2820434570312,10.843493,10843.493 +14616,2025-03-08T19:55:46.601411-08:00,1006.2412719726562,10.84895,10848.95 +14617,2025-03-08T19:55:57.448412-08:00,1006.2677612304688,10.847001,10847.001 +14618,2025-03-08T19:56:08.293407-08:00,1006.2464599609375,10.844995,10844.995 +14619,2025-03-08T19:56:19.137896-08:00,1006.2927856445312,10.844489,10844.489 +14620,2025-03-08T19:56:29.987804-08:00,1006.2984619140625,10.849908,10849.908 +14621,2025-03-08T19:56:40.827434-08:00,1006.2904052734375,10.83963,10839.63 +14622,2025-03-08T19:56:51.668684-08:00,1006.2959594726562,10.84125,10841.25 +14623,2025-03-08T19:57:02.507404-08:00,1006.274658203125,10.83872,10838.72 +14624,2025-03-08T19:57:13.350960-08:00,1006.2893676757812,10.843556,10843.556 +14625,2025-03-08T19:57:24.195453-08:00,1006.2865600585938,10.844493,10844.493 +14626,2025-03-08T19:57:35.036718-08:00,1006.2708740234375,10.841265,10841.265 +14627,2025-03-08T19:57:45.873673-08:00,1006.2840576171875,10.836955,10836.955 +14628,2025-03-08T19:57:56.724004-08:00,1006.2708740234375,10.850331,10850.331 +14629,2025-03-08T19:58:07.559404-08:00,1006.303955078125,10.8354,10835.4 +14630,2025-03-08T19:58:18.398462-08:00,1006.2962646484375,10.839058,10839.058 +14631,2025-03-08T19:58:29.241412-08:00,1006.3203125,10.84295,10842.95 +14632,2025-03-08T19:58:40.083696-08:00,1006.3189086914062,10.842284,10842.284 +14633,2025-03-08T19:58:50.923723-08:00,1006.3468627929688,10.840027,10840.027 +14634,2025-03-08T19:59:01.763414-08:00,1006.311279296875,10.839691,10839.691 +14635,2025-03-08T19:59:12.608589-08:00,1006.3311157226562,10.845175,10845.175 +14636,2025-03-08T19:59:23.458046-08:00,1006.3231201171875,10.849457,10849.457 +14637,2025-03-08T19:59:34.298235-08:00,1006.3032836914062,10.840189,10840.189 +14638,2025-03-08T19:59:45.134401-08:00,1006.33642578125,10.836166,10836.166 +14639,2025-03-08T19:59:55.972413-08:00,1006.3551635742188,10.838012,10838.012 +14640,2025-03-08T20:00:06.817700-08:00,1006.349609375,10.845287,10845.287 +14641,2025-03-08T20:00:17.655412-08:00,1006.340576171875,10.837712,10837.712 +14642,2025-03-08T20:00:28.491640-08:00,1006.3394775390625,10.836228,10836.228 +14643,2025-03-08T20:00:39.335755-08:00,1006.3579711914062,10.844115,10844.115 +14644,2025-03-08T20:00:50.185455-08:00,1006.3435668945312,10.8497,10849.7 +14645,2025-03-08T20:01:01.027600-08:00,1006.3289794921875,10.842145,10842.145 +14646,2025-03-08T20:01:11.867416-08:00,1006.3543701171875,10.839816,10839.816 +14647,2025-03-08T20:01:22.710406-08:00,1006.3651733398438,10.84299,10842.99 +14648,2025-03-08T20:01:33.557403-08:00,1006.3585815429688,10.846997,10846.997 +14649,2025-03-08T20:01:44.403720-08:00,1006.3574829101562,10.846317,10846.317 +14650,2025-03-08T20:01:55.248688-08:00,1006.33935546875,10.844968,10844.968 +14651,2025-03-08T20:02:06.086398-08:00,1006.318115234375,10.83771,10837.71 +14652,2025-03-08T20:02:16.928691-08:00,1006.3526000976562,10.842293,10842.293 +14653,2025-03-08T20:02:27.766441-08:00,1006.3591918945312,10.83775,10837.75 +14654,2025-03-08T20:02:38.606403-08:00,1006.3278198242188,10.839962,10839.962 +14655,2025-03-08T20:02:49.445654-08:00,1006.3343505859375,10.839251,10839.251 +14656,2025-03-08T20:03:00.284661-08:00,1006.3552856445312,10.839007,10839.007 +14657,2025-03-08T20:03:11.133564-08:00,1006.3570556640625,10.848903,10848.903 +14658,2025-03-08T20:03:21.976413-08:00,1006.3650512695312,10.842849,10842.849 +14659,2025-03-08T20:03:32.828653-08:00,1006.3836059570312,10.85224,10852.24 +14660,2025-03-08T20:03:43.667377-08:00,1006.3703002929688,10.838724,10838.724 +14661,2025-03-08T20:03:54.518698-08:00,1006.381103515625,10.851321,10851.321 +14662,2025-03-08T20:04:05.355357-08:00,1006.3389282226562,10.836659,10836.659 +14663,2025-03-08T20:04:16.196414-08:00,1006.344482421875,10.841057,10841.057 +14664,2025-03-08T20:04:27.039404-08:00,1006.3562622070312,10.84299,10842.99 +14665,2025-03-08T20:04:37.883604-08:00,1006.3883666992188,10.8442,10844.2 +14666,2025-03-08T20:04:48.726714-08:00,1006.3618774414062,10.84311,10843.11 +14667,2025-03-08T20:05:10.415627-08:00,1006.3848266601562,21.688913,21688.913 +14668,2025-03-08T20:05:21.261499-08:00,1006.3426513671875,10.845872,10845.872 +14669,2025-03-08T20:05:32.098776-08:00,1006.36767578125,10.837277,10837.277 +14670,2025-03-08T20:05:42.997629-08:00,1006.373291015625,10.898853,10898.853 +14671,2025-03-08T20:05:53.835464-08:00,1006.3931274414062,10.837835,10837.835 +14672,2025-03-08T20:06:04.689123-08:00,1006.37744140625,10.853659,10853.659 +14673,2025-03-08T20:06:15.536121-08:00,1006.38818359375,10.846998,10846.998 +14674,2025-03-08T20:06:26.377122-08:00,1006.353759765625,10.841001,10841.001 +14675,2025-03-08T20:06:37.228119-08:00,1006.3591918945312,10.850997,10850.997 +14676,2025-03-08T20:06:48.075419-08:00,1006.3658447265625,10.8473,10847.3 +14677,2025-03-08T20:06:58.919170-08:00,1006.343505859375,10.843751,10843.751 +14678,2025-03-08T20:07:09.761329-08:00,1006.362060546875,10.842159,10842.159 +14679,2025-03-08T20:07:20.600273-08:00,1006.387451171875,10.838944,10838.944 +14680,2025-03-08T20:07:31.446531-08:00,1006.41943359375,10.846258,10846.258 +14681,2025-03-08T20:07:42.297299-08:00,1006.4302368164062,10.850768,10850.768 +14682,2025-03-08T20:07:53.154598-08:00,1006.3970947265625,10.857299,10857.299 +14683,2025-03-08T20:08:04.005093-08:00,1006.41455078125,10.850495,10850.495 +14684,2025-03-08T20:08:14.847349-08:00,1006.4462280273438,10.842256,10842.256 +14685,2025-03-08T20:08:25.698264-08:00,1006.4451293945312,10.850915,10850.915 +14686,2025-03-08T20:08:36.548112-08:00,1006.4305419921875,10.849848,10849.848 +14687,2025-03-08T20:08:47.395249-08:00,1006.4305419921875,10.847137,10847.137 +14688,2025-03-08T20:08:58.234120-08:00,1006.447998046875,10.838871,10838.871 +14689,2025-03-08T20:09:09.081455-08:00,1006.4534301757812,10.847335,10847.335 +14690,2025-03-08T20:09:19.931477-08:00,1006.4255981445312,10.850022,10850.022 +14691,2025-03-08T20:09:30.775101-08:00,1006.4495849609375,10.843624,10843.624 +14692,2025-03-08T20:09:41.622119-08:00,1006.4695434570312,10.847018,10847.018 +14693,2025-03-08T20:09:52.466503-08:00,1006.4338989257812,10.844384,10844.384 +14694,2025-03-08T20:10:03.310424-08:00,1006.4461059570312,10.843921,10843.921 +14695,2025-03-08T20:10:14.157109-08:00,1006.4302978515625,10.846685,10846.685 +14696,2025-03-08T20:10:24.999117-08:00,1006.4302978515625,10.842008,10842.008 +14697,2025-03-08T20:10:35.848116-08:00,1006.4411010742188,10.848999,10848.999 +14698,2025-03-08T20:10:46.694473-08:00,1006.4345092773438,10.846357,10846.357 +14699,2025-03-08T20:10:57.545116-08:00,1006.4279174804688,10.850643,10850.643 +14700,2025-03-08T20:11:08.388125-08:00,1006.451904296875,10.843009,10843.009 +14701,2025-03-08T20:11:19.231392-08:00,1006.4295043945312,10.843267,10843.267 +14702,2025-03-08T20:11:30.075264-08:00,1006.4375610351562,10.843872,10843.872 +14703,2025-03-08T20:11:40.923364-08:00,1006.4337768554688,10.8481,10848.1 +14704,2025-03-08T20:11:51.763171-08:00,1006.3995361328125,10.839807,10839.807 +14705,2025-03-08T20:12:02.600328-08:00,1006.40478515625,10.837157,10837.157 +14706,2025-03-08T20:12:13.441116-08:00,1006.411376953125,10.840788,10840.788 +14707,2025-03-08T20:12:24.285122-08:00,1006.4221801757812,10.844006,10844.006 +14708,2025-03-08T20:12:35.132118-08:00,1006.4144287109375,10.846996,10846.996 +14709,2025-03-08T20:12:45.975122-08:00,1006.4053344726562,10.843004,10843.004 +14710,2025-03-08T20:12:56.816440-08:00,1006.4171752929688,10.841318,10841.318 +14711,2025-03-08T20:13:07.670146-08:00,1006.4227294921875,10.853706,10853.706 +14712,2025-03-08T20:13:18.505341-08:00,1006.4146728515625,10.835195,10835.195 +14713,2025-03-08T20:13:29.361174-08:00,1006.41357421875,10.855833,10855.833 +14714,2025-03-08T20:13:40.210322-08:00,1006.42578125,10.849148,10849.148 +14715,2025-03-08T20:13:51.059171-08:00,1006.4324340820312,10.848849,10848.849 +14716,2025-03-08T20:14:01.903392-08:00,1006.4177856445312,10.844221,10844.221 +14717,2025-03-08T20:14:12.751886-08:00,1006.4498291015625,10.848494,10848.494 +14718,2025-03-08T20:14:23.600400-08:00,1006.421875,10.848514,10848.514 +14719,2025-03-08T20:14:34.443112-08:00,1006.4076538085938,10.842712,10842.712 +14720,2025-03-08T20:14:45.296116-08:00,1006.4285888671875,10.853004,10853.004 +14721,2025-03-08T20:14:56.140356-08:00,1006.41943359375,10.84424,10844.24 +14722,2025-03-08T20:15:06.990358-08:00,1006.41943359375,10.850002,10850.002 +14723,2025-03-08T20:15:17.837118-08:00,1006.4326782226562,10.84676,10846.76 +14724,2025-03-08T20:15:28.665108-08:00,1006.4026489257812,10.82799,10827.99 +14725,2025-03-08T20:15:39.513337-08:00,1006.39599609375,10.848229,10848.229 +14726,2025-03-08T20:15:50.362469-08:00,1006.4037475585938,10.849132,10849.132 +14727,2025-03-08T20:16:01.199729-08:00,1006.4120483398438,10.83726,10837.26 +14728,2025-03-08T20:16:12.054842-08:00,1006.400146484375,10.855113,10855.113 +14729,2025-03-08T20:16:22.891117-08:00,1006.4176025390625,10.836275,10836.275 +14730,2025-03-08T20:16:33.743091-08:00,1006.4293823242188,10.851974,10851.974 +14731,2025-03-08T20:16:44.583118-08:00,1006.3925170898438,10.840027,10840.027 +14732,2025-03-08T20:16:55.420825-08:00,1006.400146484375,10.837707,10837.707 +14733,2025-03-08T20:17:06.268422-08:00,1006.3925170898438,10.847597,10847.597 +14734,2025-03-08T20:17:17.100417-08:00,1006.3701782226562,10.831995,10831.995 +14735,2025-03-08T20:17:27.955426-08:00,1006.3833618164062,10.855009,10855.009 +14736,2025-03-08T20:17:38.798500-08:00,1006.3875122070312,10.843074,10843.074 +14737,2025-03-08T20:17:49.629957-08:00,1006.4352416992188,10.831457,10831.457 +14738,2025-03-08T20:18:00.486612-08:00,1006.4140014648438,10.856655,10856.655 +14739,2025-03-08T20:18:11.326337-08:00,1006.4536743164062,10.839725,10839.725 +14740,2025-03-08T20:18:22.171376-08:00,1006.4181518554688,10.845039,10845.039 +14741,2025-03-08T20:18:33.019121-08:00,1006.4512329101562,10.847745,10847.745 +14742,2025-03-08T20:18:43.866378-08:00,1006.4435424804688,10.847257,10847.257 +14743,2025-03-08T20:18:54.705808-08:00,1006.4343872070312,10.83943,10839.43 +14744,2025-03-08T20:19:05.554483-08:00,1006.423583984375,10.848675,10848.675 +14745,2025-03-08T20:19:16.400108-08:00,1006.455322265625,10.845625,10845.625 +14746,2025-03-08T20:19:27.240111-08:00,1006.4329833984375,10.840003,10840.003 +14747,2025-03-08T20:19:38.083457-08:00,1006.4263916015625,10.843346,10843.346 +14748,2025-03-08T20:19:48.933386-08:00,1006.42529296875,10.849929,10849.929 +14749,2025-03-08T20:19:59.768120-08:00,1006.4462280273438,10.834734,10834.734 +14750,2025-03-08T20:20:10.622116-08:00,1006.4054565429688,10.853996,10853.996 +14751,2025-03-08T20:20:21.462161-08:00,1006.4385986328125,10.840045,10840.045 +14752,2025-03-08T20:20:32.309729-08:00,1006.4329833984375,10.847568,10847.568 +14753,2025-03-08T20:20:43.148800-08:00,1006.4619750976562,10.839071,10839.071 +14754,2025-03-08T20:20:53.996262-08:00,1006.467529296875,10.847462,10847.462 +14755,2025-03-08T20:21:04.840165-08:00,1006.4197387695312,10.843903,10843.903 +14756,2025-03-08T20:21:15.681459-08:00,1006.455322265625,10.841294,10841.294 +14757,2025-03-08T20:21:26.528430-08:00,1006.4501342773438,10.846971,10846.971 +14758,2025-03-08T20:21:37.368810-08:00,1006.45263671875,10.84038,10840.38 +14759,2025-03-08T20:21:48.212676-08:00,1006.4658813476562,10.843866,10843.866 +14760,2025-03-08T20:21:59.055120-08:00,1006.4260864257812,10.842444,10842.444 +14761,2025-03-08T20:22:09.895798-08:00,1006.4195556640625,10.840678,10840.678 +14762,2025-03-08T20:22:20.735957-08:00,1006.4429931640625,10.840159,10840.159 +14763,2025-03-08T20:22:31.578451-08:00,1006.4376831054688,10.842494,10842.494 +14764,2025-03-08T20:22:42.422232-08:00,1006.4664306640625,10.843781,10843.781 +14765,2025-03-08T20:22:53.261451-08:00,1006.43603515625,10.839219,10839.219 +14766,2025-03-08T20:23:04.098329-08:00,1006.4573364257812,10.836878,10836.878 +14767,2025-03-08T20:23:14.945951-08:00,1006.453125,10.847622,10847.622 +14768,2025-03-08T20:23:25.777114-08:00,1006.4597778320312,10.831163,10831.163 +14769,2025-03-08T20:23:36.618517-08:00,1006.44091796875,10.841403,10841.403 +14770,2025-03-08T20:23:47.451120-08:00,1006.4713134765625,10.832603,10832.603 +14771,2025-03-08T20:23:58.295389-08:00,1006.4556274414062,10.844269,10844.269 +14772,2025-03-08T20:24:09.130406-08:00,1006.4393920898438,10.835017,10835.017 +14773,2025-03-08T20:24:19.971179-08:00,1006.4393920898438,10.840773,10840.773 +14774,2025-03-08T20:24:30.818091-08:00,1006.461669921875,10.846912,10846.912 +14775,2025-03-08T20:24:41.665115-08:00,1006.4696655273438,10.847024,10847.024 +14776,2025-03-08T20:24:52.508374-08:00,1006.4589233398438,10.843259,10843.259 +14777,2025-03-08T20:25:03.353443-08:00,1006.4442138671875,10.845069,10845.069 +14778,2025-03-08T20:25:14.195420-08:00,1006.4390869140625,10.841977,10841.977 +14779,2025-03-08T20:25:25.028377-08:00,1006.453369140625,10.832957,10832.957 +14780,2025-03-08T20:25:35.877188-08:00,1006.44921875,10.848811,10848.811 +14781,2025-03-08T20:25:46.715586-08:00,1006.4436645507812,10.838398,10838.398 +14782,2025-03-08T20:25:57.555424-08:00,1006.4436645507812,10.839838,10839.838 +14783,2025-03-08T20:26:08.388383-08:00,1006.4304809570312,10.832959,10832.959 +14784,2025-03-08T20:26:19.234474-08:00,1006.4395141601562,10.846091,10846.091 +14785,2025-03-08T20:26:30.064420-08:00,1006.44091796875,10.829946,10829.946 +14786,2025-03-08T20:26:40.903123-08:00,1006.4395141601562,10.838703,10838.703 +14787,2025-03-08T20:26:51.746140-08:00,1006.4251708984375,10.843017,10843.017 +14788,2025-03-08T20:27:02.570122-08:00,1006.4144287109375,10.823982,10823.982 +14789,2025-03-08T20:27:13.408253-08:00,1006.44091796875,10.838131,10838.131 +14790,2025-03-08T20:27:24.239547-08:00,1006.4461669921875,10.831294,10831.294 +14791,2025-03-08T20:27:35.078479-08:00,1006.4420166015625,10.838932,10838.932 +14792,2025-03-08T20:27:45.904100-08:00,1006.4367065429688,10.825621,10825.621 +14793,2025-03-08T20:27:56.738175-08:00,1006.4632568359375,10.834075,10834.075 +14794,2025-03-08T20:28:07.575439-08:00,1006.44091796875,10.837264,10837.264 +14795,2025-03-08T20:28:18.415149-08:00,1006.408935546875,10.83971,10839.71 +14796,2025-03-08T20:28:29.253717-08:00,1006.43017578125,10.838568,10838.568 +14797,2025-03-08T20:28:40.085695-08:00,1006.4168701171875,10.831978,10831.978 +14798,2025-03-08T20:28:50.929444-08:00,1006.4246215820312,10.843749,10843.749 +14799,2025-03-08T20:29:01.768342-08:00,1006.4469604492188,10.838898,10838.898 +14800,2025-03-08T20:29:12.608121-08:00,1006.427001953125,10.839779,10839.779 +14801,2025-03-08T20:29:23.440242-08:00,1006.400634765625,10.832121,10832.121 +14802,2025-03-08T20:29:34.273824-08:00,1006.4483642578125,10.833582,10833.582 +14803,2025-03-08T20:29:45.103648-08:00,1006.4243774414062,10.829824,10829.824 +14804,2025-03-08T20:29:55.942123-08:00,1006.4467163085938,10.838475,10838.475 +14805,2025-03-08T20:30:06.778367-08:00,1006.4187622070312,10.836244,10836.244 +14806,2025-03-08T20:30:17.610165-08:00,1006.4212646484375,10.831798,10831.798 +14807,2025-03-08T20:30:28.449123-08:00,1006.4359130859375,10.838958,10838.958 +14808,2025-03-08T20:30:39.296221-08:00,1006.439453125,10.847098,10847.098 +14809,2025-03-08T20:30:50.129138-08:00,1006.4603881835938,10.832917,10832.917 +14810,2025-03-08T20:31:00.968643-08:00,1006.4472045898438,10.839505,10839.505 +14811,2025-03-08T20:31:11.814834-08:00,1006.4220581054688,10.846191,10846.191 +14812,2025-03-08T20:31:22.655371-08:00,1006.435302734375,10.840537,10840.537 +14813,2025-03-08T20:31:33.490149-08:00,1006.4509887695312,10.834778,10834.778 +14814,2025-03-08T20:31:44.327179-08:00,1006.4667358398438,10.83703,10837.03 +14815,2025-03-08T20:31:55.170157-08:00,1006.4346923828125,10.842978,10842.978 +14816,2025-03-08T20:32:06.002118-08:00,1006.4402465820312,10.831961,10831.961 +14817,2025-03-08T20:32:16.840512-08:00,1006.4451293945312,10.838394,10838.394 +14818,2025-03-08T20:32:27.667435-08:00,1006.4120483398438,10.826923,10826.923 +14819,2025-03-08T20:32:38.509116-08:00,1006.4462280273438,10.841681,10841.681 +14820,2025-03-08T20:32:49.350113-08:00,1006.4818725585938,10.840997,10840.997 +14821,2025-03-08T20:33:00.188518-08:00,1006.43798828125,10.838405,10838.405 +14822,2025-03-08T20:33:11.030949-08:00,1006.451171875,10.842431,10842.431 +14823,2025-03-08T20:33:21.875117-08:00,1006.4710693359375,10.844168,10844.168 +14824,2025-03-08T20:33:32.718430-08:00,1006.4790649414062,10.843313,10843.313 +14825,2025-03-08T20:33:43.549404-08:00,1006.47705078125,10.830974,10830.974 +14826,2025-03-08T20:33:54.390411-08:00,1006.4519653320312,10.841007,10841.007 +14827,2025-03-08T20:34:05.225557-08:00,1006.485107421875,10.835146,10835.146 +14828,2025-03-08T20:34:16.067420-08:00,1006.4265747070312,10.841863,10841.863 +14829,2025-03-08T20:34:26.908833-08:00,1006.4503173828125,10.841413,10841.413 +14830,2025-03-08T20:34:37.751117-08:00,1006.4737548828125,10.842284,10842.284 +14831,2025-03-08T20:34:48.597337-08:00,1006.4395141601562,10.84622,10846.22 +14832,2025-03-08T20:34:59.440120-08:00,1006.5015869140625,10.842783,10842.783 +14833,2025-03-08T20:35:10.281457-08:00,1006.4287719726562,10.841337,10841.337 +14834,2025-03-08T20:35:21.125342-08:00,1006.43115234375,10.843885,10843.885 +14835,2025-03-08T20:35:31.964317-08:00,1006.4576416015625,10.838975,10838.975 +14836,2025-03-08T20:35:42.806181-08:00,1006.412353515625,10.841864,10841.864 +14837,2025-03-08T20:35:53.651155-08:00,1006.4623413085938,10.844974,10844.974 +14838,2025-03-08T20:36:04.500593-08:00,1006.4490356445312,10.849438,10849.438 +14839,2025-03-08T20:36:15.341282-08:00,1006.4581298828125,10.840689,10840.689 +14840,2025-03-08T20:36:26.180112-08:00,1006.4728393554688,10.83883,10838.83 +14841,2025-03-08T20:36:37.024171-08:00,1006.4671630859375,10.844059,10844.059 +14842,2025-03-08T20:36:47.860038-08:00,1006.4685668945312,10.835867,10835.867 +14843,2025-03-08T20:36:58.708298-08:00,1006.4630737304688,10.84826,10848.26 +14844,2025-03-08T20:37:09.552113-08:00,1006.4829711914062,10.843815,10843.815 +14845,2025-03-08T20:37:20.384476-08:00,1006.4920043945312,10.832363,10832.363 +14846,2025-03-08T20:37:31.225211-08:00,1006.4985961914062,10.840735,10840.735 +14847,2025-03-08T20:37:42.063108-08:00,1006.4644775390625,10.837897,10837.897 +14848,2025-03-08T20:37:52.906364-08:00,1006.4985961914062,10.843256,10843.256 +14849,2025-03-08T20:38:03.750435-08:00,1006.5,10.844071,10844.071 +14850,2025-03-08T20:38:14.581114-08:00,1006.4603271484375,10.830679,10830.679 +14851,2025-03-08T20:38:25.419234-08:00,1006.4854125976562,10.83812,10838.12 +14852,2025-03-08T20:38:36.259434-08:00,1006.4603271484375,10.8402,10840.2 +14853,2025-03-08T20:38:47.103254-08:00,1006.5010986328125,10.84382,10843.82 +14854,2025-03-08T20:38:57.941399-08:00,1006.4812622070312,10.838145,10838.145 +14855,2025-03-08T20:39:08.781123-08:00,1006.48779296875,10.839724,10839.724 +14856,2025-03-08T20:39:19.612284-08:00,1006.4679565429688,10.831161,10831.161 +14857,2025-03-08T20:39:30.461195-08:00,1006.4891967773438,10.848911,10848.911 +14858,2025-03-08T20:39:41.300420-08:00,1006.4795532226562,10.839225,10839.225 +14859,2025-03-08T20:39:52.136107-08:00,1006.4784545898438,10.835687,10835.687 +14860,2025-03-08T20:40:02.984122-08:00,1006.454345703125,10.848015,10848.015 +14861,2025-03-08T20:40:13.822666-08:00,1006.4874877929688,10.838544,10838.544 +14862,2025-03-08T20:40:24.658463-08:00,1006.4820556640625,10.835797,10835.797 +14863,2025-03-08T20:40:35.496776-08:00,1006.4844360351562,10.838313,10838.313 +14864,2025-03-08T20:40:46.335373-08:00,1006.498779296875,10.838597,10838.597 +14865,2025-03-08T20:40:57.170522-08:00,1006.501220703125,10.835149,10835.149 +14866,2025-03-08T20:41:08.008238-08:00,1006.49462890625,10.837716,10837.716 +14867,2025-03-08T20:41:18.854099-08:00,1006.5236206054688,10.845861,10845.861 +14868,2025-03-08T20:41:29.684564-08:00,1006.5183715820312,10.830465,10830.465 +14869,2025-03-08T20:41:40.516245-08:00,1006.5128173828125,10.831681,10831.681 +14870,2025-03-08T20:41:51.365244-08:00,1006.5020141601562,10.848999,10848.999 +14871,2025-03-08T20:42:02.199428-08:00,1006.5365600585938,10.834184,10834.184 +14872,2025-03-08T20:42:13.039107-08:00,1006.544189453125,10.839679,10839.679 +14873,2025-03-08T20:42:23.877350-08:00,1006.5390014648438,10.838243,10838.243 +14874,2025-03-08T20:42:34.720405-08:00,1006.5136108398438,10.843055,10843.055 +14875,2025-03-08T20:42:45.566381-08:00,1006.5306396484375,10.845976,10845.976 +14876,2025-03-08T20:42:56.405505-08:00,1006.538330078125,10.839124,10839.124 +14877,2025-03-08T20:43:07.244316-08:00,1006.52783203125,10.838811,10838.811 +14878,2025-03-08T20:43:18.087120-08:00,1006.5543823242188,10.842804,10842.804 +14879,2025-03-08T20:43:28.917295-08:00,1006.5156860351562,10.830175,10830.175 +14880,2025-03-08T20:43:39.758355-08:00,1006.5369262695312,10.84106,10841.06 +14881,2025-03-08T20:43:50.603181-08:00,1006.5379638671875,10.844826,10844.826 +14882,2025-03-08T20:44:01.442377-08:00,1006.5379638671875,10.839196,10839.196 +14883,2025-03-08T20:44:12.288426-08:00,1006.560302734375,10.846049,10846.049 +14884,2025-03-08T20:44:23.124747-08:00,1006.5328369140625,10.836321,10836.321 +14885,2025-03-08T20:44:33.976294-08:00,1006.5181274414062,10.851547,10851.547 +14886,2025-03-08T20:44:44.821369-08:00,1006.5247802734375,10.845075,10845.075 +14887,2025-03-08T20:44:55.669124-08:00,1006.5393676757812,10.847755,10847.755 +14888,2025-03-08T20:45:06.506396-08:00,1006.5393676757812,10.837272,10837.272 +14889,2025-03-08T20:45:17.359430-08:00,1006.5761108398438,10.853034,10853.034 +14890,2025-03-08T20:45:28.195346-08:00,1006.479736328125,10.835916,10835.916 +14891,2025-03-08T20:45:39.034677-08:00,1006.528564453125,10.839331,10839.331 +14892,2025-03-08T20:45:49.872164-08:00,1006.533935546875,10.837487,10837.487 +14893,2025-03-08T20:46:00.716101-08:00,1006.55517578125,10.843937,10843.937 +14894,2025-03-08T20:46:11.551116-08:00,1006.5599975585938,10.835015,10835.015 +14895,2025-03-08T20:46:22.396444-08:00,1006.5599975585938,10.845328,10845.328 +14896,2025-03-08T20:46:33.234194-08:00,1006.54541015625,10.83775,10837.75 +14897,2025-03-08T20:46:44.088119-08:00,1006.5599975585938,10.853925,10853.925 +14898,2025-03-08T20:46:54.933120-08:00,1006.5599975585938,10.845001,10845.001 +14899,2025-03-08T20:47:05.774120-08:00,1006.5701293945312,10.841,10841.0 +14900,2025-03-08T20:47:16.616314-08:00,1006.5491943359375,10.842194,10842.194 +14901,2025-03-08T20:47:27.454662-08:00,1006.51611328125,10.838348,10838.348 +14902,2025-03-08T20:47:38.297367-08:00,1006.5635986328125,10.842705,10842.705 +14903,2025-03-08T20:47:49.135306-08:00,1006.543701171875,10.837939,10837.939 +14904,2025-03-08T20:47:59.982194-08:00,1006.5384521484375,10.846888,10846.888 +14905,2025-03-08T20:48:10.823124-08:00,1006.5569458007812,10.84093,10840.93 +14906,2025-03-08T20:48:32.502175-08:00,1006.53955078125,21.679051,21679.051 +14907,2025-03-08T20:48:43.357332-08:00,1006.5527954101562,10.855157,10855.157 +14908,2025-03-08T20:48:54.197559-08:00,1006.5674438476562,10.840227,10840.227 +14909,2025-03-08T20:49:05.042447-08:00,1006.5939331054688,10.844888,10844.888 +14910,2025-03-08T20:49:15.897501-08:00,1006.58935546875,10.855054,10855.054 +14911,2025-03-08T20:49:26.736602-08:00,1006.576171875,10.839101,10839.101 +14912,2025-03-08T20:49:37.573448-08:00,1006.5695190429688,10.836846,10836.846 +14913,2025-03-08T20:49:48.425495-08:00,1006.576171875,10.852047,10852.047 +14914,2025-03-08T20:49:59.258262-08:00,1006.5443725585938,10.832767,10832.767 +14915,2025-03-08T20:50:10.104448-08:00,1006.5734252929688,10.846186,10846.186 +14916,2025-03-08T20:50:20.948287-08:00,1006.5535278320312,10.843839,10843.839 +14917,2025-03-08T20:50:31.794146-08:00,1006.5811157226562,10.845859,10845.859 +14918,2025-03-08T20:50:42.637691-08:00,1006.5890502929688,10.843545,10843.545 +14919,2025-03-08T20:50:53.490804-08:00,1006.5848999023438,10.853113,10853.113 +14920,2025-03-08T20:51:04.334271-08:00,1006.5584106445312,10.843467,10843.467 +14921,2025-03-08T20:51:15.171411-08:00,1006.5661010742188,10.83714,10837.14 +14922,2025-03-08T20:51:26.014463-08:00,1006.6082763671875,10.843052,10843.052 +14923,2025-03-08T20:51:36.863071-08:00,1006.57763671875,10.848608,10848.608 +14924,2025-03-08T20:51:47.705116-08:00,1006.6121826171875,10.842045,10842.045 +14925,2025-03-08T20:51:58.546990-08:00,1006.5999755859375,10.841874,10841.874 +14926,2025-03-08T20:52:09.398102-08:00,1006.6024169921875,10.851112,10851.112 +14927,2025-03-08T20:52:20.241348-08:00,1006.61572265625,10.843246,10843.246 +14928,2025-03-08T20:52:31.084657-08:00,1006.622314453125,10.843309,10843.309 +14929,2025-03-08T20:52:41.924417-08:00,1006.6048583984375,10.83976,10839.76 +14930,2025-03-08T20:52:52.770372-08:00,1006.5662231445312,10.845955,10845.955 +14931,2025-03-08T20:53:03.607705-08:00,1006.5818481445312,10.837333,10837.333 +14932,2025-03-08T20:53:14.446436-08:00,1006.5875244140625,10.838731,10838.731 +14933,2025-03-08T20:53:25.286098-08:00,1006.614990234375,10.839662,10839.662 +14934,2025-03-08T20:53:36.138355-08:00,1006.5965576171875,10.852257,10852.257 +14935,2025-03-08T20:53:46.979319-08:00,1006.604248046875,10.840964,10840.964 +14936,2025-03-08T20:53:57.816354-08:00,1006.583251953125,10.837035,10837.035 +14937,2025-03-08T20:54:08.666684-08:00,1006.5501708984375,10.85033,10850.33 +14938,2025-03-08T20:54:19.503350-08:00,1006.5711059570312,10.836666,10836.666 +14939,2025-03-08T20:54:30.347253-08:00,1006.5526733398438,10.843903,10843.903 +14940,2025-03-08T20:54:41.190747-08:00,1006.5658569335938,10.843494,10843.494 +14941,2025-03-08T20:54:52.028386-08:00,1006.5526733398438,10.837639,10837.639 +14942,2025-03-08T20:55:02.881102-08:00,1006.5459594726562,10.852716,10852.716 +14943,2025-03-08T20:55:13.729321-08:00,1006.56689453125,10.848219,10848.219 +14944,2025-03-08T20:55:24.579118-08:00,1006.5313110351562,10.849797,10849.797 +14945,2025-03-08T20:55:35.416117-08:00,1006.5404663085938,10.836999,10836.999 +14946,2025-03-08T20:55:46.267194-08:00,1006.5826416015625,10.851077,10851.077 +14947,2025-03-08T20:55:57.112705-08:00,1006.5459594726562,10.845511,10845.511 +14948,2025-03-08T20:56:07.948553-08:00,1006.5592041015625,10.835848,10835.848 +14949,2025-03-08T20:56:18.796337-08:00,1006.5549926757812,10.847784,10847.784 +14950,2025-03-08T20:56:29.631506-08:00,1006.5736083984375,10.835169,10835.169 +14951,2025-03-08T20:56:40.474704-08:00,1006.5801391601562,10.843198,10843.198 +14952,2025-03-08T20:56:51.330184-08:00,1006.5736083984375,10.85548,10855.48 +14953,2025-03-08T20:57:02.172114-08:00,1006.5736083984375,10.84193,10841.93 +14954,2025-03-08T20:57:13.005118-08:00,1006.5857543945312,10.833004,10833.004 +14955,2025-03-08T20:57:23.853776-08:00,1006.5711059570312,10.848658,10848.658 +14956,2025-03-08T20:57:34.696794-08:00,1006.5857543945312,10.843018,10843.018 +14957,2025-03-08T20:57:45.532380-08:00,1006.5909423828125,10.835586,10835.586 +14958,2025-03-08T20:57:56.382893-08:00,1006.5645141601562,10.850513,10850.513 +14959,2025-03-08T20:58:07.220713-08:00,1006.6031494140625,10.83782,10837.82 +14960,2025-03-08T20:58:18.074123-08:00,1006.583251953125,10.85341,10853.41 +14961,2025-03-08T20:58:28.925597-08:00,1006.5753173828125,10.851474,10851.474 +14962,2025-03-08T20:58:39.756118-08:00,1006.5885009765625,10.830521,10830.521 +14963,2025-03-08T20:58:50.598230-08:00,1006.5728149414062,10.842112,10842.112 +14964,2025-03-08T20:59:01.441246-08:00,1006.5609130859375,10.843016,10843.016 +14965,2025-03-08T20:59:12.291402-08:00,1006.5794677734375,10.850156,10850.156 +14966,2025-03-08T20:59:23.129122-08:00,1006.59716796875,10.83772,10837.72 +14967,2025-03-08T20:59:33.975095-08:00,1006.5773315429688,10.845973,10845.973 +14968,2025-03-08T20:59:44.813201-08:00,1006.5906372070312,10.838106,10838.106 +14969,2025-03-08T20:59:55.649186-08:00,1006.5839233398438,10.835985,10835.985 +14970,2025-03-08T21:00:06.478097-08:00,1006.588134765625,10.828911,10828.911 +14971,2025-03-08T21:00:17.325115-08:00,1006.5999755859375,10.847018,10847.018 +14972,2025-03-08T21:00:28.158163-08:00,1006.57763671875,10.833048,10833.048 +14973,2025-03-08T21:00:38.997390-08:00,1006.58984375,10.839227,10839.227 +14974,2025-03-08T21:00:49.839787-08:00,1006.5619506835938,10.842397,10842.397 +14975,2025-03-08T21:01:00.681428-08:00,1006.591552734375,10.841641,10841.641 +14976,2025-03-08T21:01:11.518112-08:00,1006.5926513671875,10.836684,10836.684 +14977,2025-03-08T21:01:22.361116-08:00,1006.6034545898438,10.843004,10843.004 +14978,2025-03-08T21:01:33.200107-08:00,1006.5943603515625,10.838991,10838.991 +14979,2025-03-08T21:01:44.047420-08:00,1006.6023559570312,10.847313,10847.313 +14980,2025-03-08T21:01:54.881859-08:00,1006.6023559570312,10.834439,10834.439 +14981,2025-03-08T21:02:05.729072-08:00,1006.599853515625,10.847213,10847.213 +14982,2025-03-08T21:02:16.573339-08:00,1006.597412109375,10.844267,10844.267 +14983,2025-03-08T21:02:27.420667-08:00,1006.5907592773438,10.847328,10847.328 +14984,2025-03-08T21:02:38.251248-08:00,1006.607177734375,10.830581,10830.581 +14985,2025-03-08T21:02:49.101331-08:00,1006.6015625,10.850083,10850.083 +14986,2025-03-08T21:02:59.938266-08:00,1006.5914306640625,10.836935,10836.935 +14987,2025-03-08T21:03:10.780551-08:00,1006.6270141601562,10.842285,10842.285 +14988,2025-03-08T21:03:21.618451-08:00,1006.5967407226562,10.8379,10837.9 +14989,2025-03-08T21:03:32.468221-08:00,1006.6141357421875,10.84977,10849.77 +14990,2025-03-08T21:03:43.310122-08:00,1006.6395263671875,10.841901,10841.901 +14991,2025-03-08T21:03:54.149523-08:00,1006.5948486328125,10.839401,10839.401 +14992,2025-03-08T21:04:04.991162-08:00,1006.6213989257812,10.841639,10841.639 +14993,2025-03-08T21:04:15.829122-08:00,1006.5910034179688,10.83796,10837.96 +14994,2025-03-08T21:04:26.667169-08:00,1006.60986328125,10.838047,10838.047 +14995,2025-03-08T21:04:37.510343-08:00,1006.6192016601562,10.843174,10843.174 +14996,2025-03-08T21:04:48.352175-08:00,1006.603515625,10.841832,10841.832 +14997,2025-03-08T21:04:59.190122-08:00,1006.5968627929688,10.837947,10837.947 +14998,2025-03-08T21:05:10.033699-08:00,1006.6209106445312,10.843577,10843.577 +14999,2025-03-08T21:05:20.875729-08:00,1006.618408203125,10.84203,10842.03 +15000,2025-03-08T21:05:31.724115-08:00,1006.6013793945312,10.848386,10848.386 +15001,2025-03-08T21:05:42.589165-08:00,1006.6320190429688,10.86505,10865.05 +15002,2025-03-08T21:05:53.432175-08:00,1006.62548828125,10.84301,10843.01 +15003,2025-03-08T21:06:04.271679-08:00,1006.6096801757812,10.839504,10839.504 +15004,2025-03-08T21:06:15.120218-08:00,1006.5862426757812,10.848539,10848.539 +15005,2025-03-08T21:06:25.956055-08:00,1006.64453125,10.835837,10835.837 +15006,2025-03-08T21:06:36.805253-08:00,1006.615966796875,10.849198,10849.198 +15007,2025-03-08T21:06:47.646820-08:00,1006.5896606445312,10.841567,10841.567 +15008,2025-03-08T21:06:58.493414-08:00,1006.59765625,10.846594,10846.594 +15009,2025-03-08T21:07:09.340916-08:00,1006.6270141601562,10.847502,10847.502 +15010,2025-03-08T21:07:20.186918-08:00,1006.6060180664062,10.846002,10846.002 +15011,2025-03-08T21:07:31.027957-08:00,1006.64990234375,10.841039,10841.039 +15012,2025-03-08T21:07:41.872171-08:00,1006.6475219726562,10.844214,10844.214 +15013,2025-03-08T21:07:52.718236-08:00,1006.654052734375,10.846065,10846.065 +15014,2025-03-08T21:08:03.567345-08:00,1006.6185302734375,10.849109,10849.109 +15015,2025-03-08T21:08:14.416196-08:00,1006.6634521484375,10.848851,10848.851 +15016,2025-03-08T21:08:25.260916-08:00,1006.6822509765625,10.84472,10844.72 +15017,2025-03-08T21:08:36.096337-08:00,1006.6543579101562,10.835421,10835.421 +15018,2025-03-08T21:08:46.941374-08:00,1006.6732177734375,10.845037,10845.037 +15019,2025-03-08T21:08:57.782560-08:00,1006.6640625,10.841186,10841.186 +15020,2025-03-08T21:09:08.626400-08:00,1006.6629638671875,10.84384,10843.84 +15021,2025-03-08T21:09:19.469049-08:00,1006.701416015625,10.842649,10842.649 +15022,2025-03-08T21:09:30.317175-08:00,1006.7068481445312,10.848126,10848.126 +15023,2025-03-08T21:09:41.147957-08:00,1006.6978149414062,10.830782,10830.782 +15024,2025-03-08T21:09:51.991951-08:00,1006.7162475585938,10.843994,10843.994 +15025,2025-03-08T21:10:02.830923-08:00,1006.709716796875,10.838972,10838.972 +15026,2025-03-08T21:10:13.660914-08:00,1006.7020263671875,10.829991,10829.991 +15027,2025-03-08T21:10:24.502225-08:00,1006.7047119140625,10.841311,10841.311 +15028,2025-03-08T21:10:35.350114-08:00,1006.6956176757812,10.847889,10847.889 +15029,2025-03-08T21:10:46.184521-08:00,1006.7144775390625,10.834407,10834.407 +15030,2025-03-08T21:10:57.023073-08:00,1006.692138671875,10.838552,10838.552 +15031,2025-03-08T21:11:07.861923-08:00,1006.6777954101562,10.83885,10838.85 +15032,2025-03-08T21:11:16.753957-08:00,1006.66064453125,8.892034,8892.034 +15033,2025-03-08T21:11:18.697792-08:00,1006.6951293945312,1.943835,1943.835 +15034,2025-03-08T21:11:29.536914-08:00,1006.7216186523438,10.839122,10839.122 +15035,2025-03-08T21:11:40.376164-08:00,1006.711181640625,10.83925,10839.25 +15036,2025-03-08T21:11:51.220922-08:00,1006.711181640625,10.844758,10844.758 +15037,2025-03-08T21:12:02.066116-08:00,1006.7100830078125,10.845194,10845.194 +15038,2025-03-08T21:12:12.896969-08:00,1006.7351684570312,10.830853,10830.853 +15039,2025-03-08T21:12:23.740165-08:00,1006.7117309570312,10.843196,10843.196 +15040,2025-03-08T21:12:34.589116-08:00,1006.67724609375,10.848951,10848.951 +15041,2025-03-08T21:12:45.430914-08:00,1006.7249755859375,10.841798,10841.798 +15042,2025-03-08T21:12:56.268915-08:00,1006.7078857421875,10.838001,10838.001 +15043,2025-03-08T21:13:07.118276-08:00,1006.7267456054688,10.849361,10849.361 +15044,2025-03-08T21:13:17.949921-08:00,1006.7054443359375,10.831645,10831.645 +15045,2025-03-08T21:13:28.797220-08:00,1006.7109375,10.847299,10847.299 +15046,2025-03-08T21:13:39.640959-08:00,1006.7008056640625,10.843739,10843.739 +15047,2025-03-08T21:13:50.483021-08:00,1006.73388671875,10.842062,10842.062 +15048,2025-03-08T21:14:01.324165-08:00,1006.7391357421875,10.841144,10841.144 +15049,2025-03-08T21:14:12.158522-08:00,1006.7234497070312,10.834357,10834.357 +15050,2025-03-08T21:14:23.012606-08:00,1006.7131958007812,10.854084,10854.084 +15051,2025-03-08T21:14:33.850897-08:00,1006.7041625976562,10.838291,10838.291 +15052,2025-03-08T21:14:44.688134-08:00,1006.7225952148438,10.837237,10837.237 +15053,2025-03-08T21:14:55.519269-08:00,1006.7347412109375,10.831135,10831.135 +15054,2025-03-08T21:15:06.359534-08:00,1006.7267456054688,10.840265,10840.265 +15055,2025-03-08T21:15:17.203394-08:00,1006.7267456054688,10.84386,10843.86 +15056,2025-03-08T21:15:28.038241-08:00,1006.7151489257812,10.834847,10834.847 +15057,2025-03-08T21:15:38.879891-08:00,1006.73388671875,10.84165,10841.65 +15058,2025-03-08T21:15:49.731919-08:00,1006.7061157226562,10.852028,10852.028 +15059,2025-03-08T21:16:00.572919-08:00,1006.724853515625,10.841,10841.0 +15060,2025-03-08T21:16:11.410218-08:00,1006.7435913085938,10.837299,10837.299 +15061,2025-03-08T21:16:22.253029-08:00,1006.747802734375,10.842811,10842.811 +15062,2025-03-08T21:16:33.094370-08:00,1006.7529907226562,10.841341,10841.341 +15063,2025-03-08T21:16:43.928255-08:00,1006.7662353515625,10.833885,10833.885 +15064,2025-03-08T21:16:54.778250-08:00,1006.7372436523438,10.849995,10849.995 +15065,2025-03-08T21:17:05.612916-08:00,1006.75048828125,10.834666,10834.666 +15066,2025-03-08T21:17:16.457918-08:00,1006.7546997070312,10.845002,10845.002 +15067,2025-03-08T21:17:27.301919-08:00,1006.7546997070312,10.844001,10844.001 +15068,2025-03-08T21:17:38.139108-08:00,1006.765380859375,10.837189,10837.189 +15069,2025-03-08T21:17:48.985224-08:00,1006.7496948242188,10.846116,10846.116 +15070,2025-03-08T21:17:59.830909-08:00,1006.7510986328125,10.845685,10845.685 +15071,2025-03-08T21:18:10.668216-08:00,1006.7352905273438,10.837307,10837.307 +15072,2025-03-08T21:18:21.511226-08:00,1006.7406005859375,10.84301,10843.01 +15073,2025-03-08T21:18:32.345912-08:00,1006.760498046875,10.834686,10834.686 +15074,2025-03-08T21:18:43.187241-08:00,1006.75,10.841329,10841.329 +15075,2025-03-08T21:18:54.029020-08:00,1006.7764282226562,10.841779,10841.779 +15076,2025-03-08T21:19:04.861947-08:00,1006.7234497070312,10.832927,10832.927 +15077,2025-03-08T21:19:15.697939-08:00,1006.7341918945312,10.835992,10835.992 +15078,2025-03-08T21:19:26.540925-08:00,1006.7341918945312,10.842986,10842.986 +15079,2025-03-08T21:19:37.382665-08:00,1006.7251586914062,10.84174,10841.74 +15080,2025-03-08T21:19:48.210166-08:00,1006.705322265625,10.827501,10827.501 +15081,2025-03-08T21:19:59.048536-08:00,1006.718505859375,10.83837,10838.37 +15082,2025-03-08T21:20:09.895257-08:00,1006.73583984375,10.846721,10846.721 +15083,2025-03-08T21:20:20.739172-08:00,1006.7251586914062,10.843915,10843.915 +15084,2025-03-08T21:20:31.581265-08:00,1006.7306518554688,10.842093,10842.093 +15085,2025-03-08T21:20:42.419034-08:00,1006.743896484375,10.837769,10837.769 +15086,2025-03-08T21:20:53.267190-08:00,1006.72265625,10.848156,10848.156 +15087,2025-03-08T21:21:04.108887-08:00,1006.729248046875,10.841697,10841.697 +15088,2025-03-08T21:21:14.943910-08:00,1006.7215576171875,10.835023,10835.023 +15089,2025-03-08T21:21:25.797185-08:00,1006.7135009765625,10.853275,10853.275 +15090,2025-03-08T21:21:36.641103-08:00,1006.7149047851562,10.843918,10843.918 +15091,2025-03-08T21:21:47.484706-08:00,1006.7215576171875,10.843603,10843.603 +15092,2025-03-08T21:21:58.321259-08:00,1006.7160034179688,10.836553,10836.553 +15093,2025-03-08T21:22:09.163365-08:00,1006.7017211914062,10.842106,10842.106 +15094,2025-03-08T21:22:20.005385-08:00,1006.7267456054688,10.84202,10842.02 +15095,2025-03-08T21:22:30.856198-08:00,1006.7093505859375,10.850813,10850.813 +15096,2025-03-08T21:22:41.688370-08:00,1006.6961669921875,10.832172,10832.172 +15097,2025-03-08T21:22:52.534960-08:00,1006.7149047851562,10.84659,10846.59 +15098,2025-03-08T21:23:03.386145-08:00,1006.7135009765625,10.851185,10851.185 +15099,2025-03-08T21:23:14.232923-08:00,1006.708251953125,10.846778,10846.778 +15100,2025-03-08T21:23:25.076972-08:00,1006.7281494140625,10.844049,10844.049 +15101,2025-03-08T21:23:35.919086-08:00,1006.7546997070312,10.842114,10842.114 +15102,2025-03-08T21:23:46.771532-08:00,1006.7149047851562,10.852446,10852.446 +15103,2025-03-08T21:23:57.610984-08:00,1006.7190551757812,10.839452,10839.452 +15104,2025-03-08T21:24:08.454259-08:00,1006.7479858398438,10.843275,10843.275 +15105,2025-03-08T21:24:19.299155-08:00,1006.7267456054688,10.844896,10844.896 +15106,2025-03-08T21:24:30.141914-08:00,1006.7190551757812,10.842759,10842.759 +15107,2025-03-08T21:24:40.988916-08:00,1006.7232055664062,10.847002,10847.002 +15108,2025-03-08T21:24:51.832907-08:00,1006.7587280273438,10.843991,10843.991 +15109,2025-03-08T21:25:02.684051-08:00,1006.7298583984375,10.851144,10851.144 +15110,2025-03-08T21:25:13.527645-08:00,1006.7019653320312,10.843594,10843.594 +15111,2025-03-08T21:25:24.376390-08:00,1006.7151489257812,10.848745,10848.745 +15112,2025-03-08T21:25:35.218967-08:00,1006.7363891601562,10.842577,10842.577 +15113,2025-03-08T21:25:46.071991-08:00,1006.716552734375,10.853024,10853.024 +15114,2025-03-08T21:25:56.915044-08:00,1006.7151489257812,10.843053,10843.053 +15115,2025-03-08T21:26:07.758261-08:00,1006.7349853515625,10.843217,10843.217 +15116,2025-03-08T21:26:18.606249-08:00,1006.699462890625,10.847988,10847.988 +15117,2025-03-08T21:26:29.444036-08:00,1006.7349853515625,10.837787,10837.787 +15118,2025-03-08T21:26:40.298777-08:00,1006.7406005859375,10.854741,10854.741 +15119,2025-03-08T21:26:51.144915-08:00,1006.699462890625,10.846138,10846.138 +15120,2025-03-08T21:27:01.985899-08:00,1006.7061157226562,10.840984,10840.984 +15121,2025-03-08T21:27:12.834179-08:00,1006.7050170898438,10.84828,10848.28 +15122,2025-03-08T21:27:23.671318-08:00,1006.724853515625,10.837139,10837.139 +15123,2025-03-08T21:27:34.525595-08:00,1006.7259521484375,10.854277,10854.277 +15124,2025-03-08T21:27:45.357162-08:00,1006.6917114257812,10.831567,10831.567 +15125,2025-03-08T21:27:56.204263-08:00,1006.7168579101562,10.847101,10847.101 +15126,2025-03-08T21:28:07.049489-08:00,1006.7234497070312,10.845226,10845.226 +15127,2025-03-08T21:28:17.890241-08:00,1006.6693725585938,10.840752,10840.752 +15128,2025-03-08T21:28:28.734002-08:00,1006.6495361328125,10.843761,10843.761 +15129,2025-03-08T21:28:39.572535-08:00,1006.7234497070312,10.838533,10838.533 +15130,2025-03-08T21:28:50.411925-08:00,1006.6945190429688,10.83939,10839.39 +15131,2025-03-08T21:29:01.257246-08:00,1006.6790771484375,10.845321,10845.321 +15132,2025-03-08T21:29:12.099937-08:00,1006.6668701171875,10.842691,10842.691 +15133,2025-03-08T21:29:22.934397-08:00,1006.686767578125,10.83446,10834.46 +15134,2025-03-08T21:29:33.766303-08:00,1006.6578369140625,10.831906,10831.906 +15135,2025-03-08T21:29:44.608916-08:00,1006.6526489257812,10.842613,10842.613 +15136,2025-03-08T21:29:55.455924-08:00,1006.6934204101562,10.847008,10847.008 +15137,2025-03-08T21:30:06.295286-08:00,1006.707763671875,10.839362,10839.362 +15138,2025-03-08T21:30:17.143970-08:00,1006.6857299804688,10.848684,10848.684 +15139,2025-03-08T21:30:27.980952-08:00,1006.6790771484375,10.836982,10836.982 +15140,2025-03-08T21:30:38.827916-08:00,1006.684326171875,10.846964,10846.964 +15141,2025-03-08T21:30:49.680514-08:00,1006.684326171875,10.852598,10852.598 +15142,2025-03-08T21:31:00.519317-08:00,1006.709716796875,10.838803,10838.803 +15143,2025-03-08T21:31:11.353266-08:00,1006.6832275390625,10.833949,10833.949 +15144,2025-03-08T21:31:22.202110-08:00,1006.6699829101562,10.848844,10848.844 +15145,2025-03-08T21:31:33.039965-08:00,1006.6710815429688,10.837855,10837.855 +15146,2025-03-08T21:31:43.877912-08:00,1006.663330078125,10.837947,10837.947 +15147,2025-03-08T21:31:54.715222-08:00,1006.6699829101562,10.83731,10837.31 +15148,2025-03-08T21:32:05.556201-08:00,1006.6487426757812,10.840979,10840.979 +15149,2025-03-08T21:32:16.402080-08:00,1006.663330078125,10.845879,10845.879 +15150,2025-03-08T21:32:27.237183-08:00,1006.6765747070312,10.835103,10835.103 +15151,2025-03-08T21:32:38.075918-08:00,1006.6765747070312,10.838735,10838.735 +15152,2025-03-08T21:32:48.921897-08:00,1006.6950073242188,10.845979,10845.979 +15153,2025-03-08T21:32:59.772144-08:00,1006.6818237304688,10.850247,10850.247 +15154,2025-03-08T21:33:10.611922-08:00,1006.6884155273438,10.839778,10839.778 +15155,2025-03-08T21:33:21.454920-08:00,1006.674072265625,10.842998,10842.998 +15156,2025-03-08T21:33:32.297037-08:00,1006.6818237304688,10.842117,10842.117 +15157,2025-03-08T21:33:43.144195-08:00,1006.6476440429688,10.847158,10847.158 +15158,2025-03-08T21:33:53.988320-08:00,1006.659423828125,10.844125,10844.125 +15159,2025-03-08T21:34:04.821401-08:00,1006.660888671875,10.833081,10833.081 +15160,2025-03-08T21:34:15.665162-08:00,1006.6726684570312,10.843761,10843.761 +15161,2025-03-08T21:34:26.505907-08:00,1006.674072265625,10.840745,10840.745 +15162,2025-03-08T21:34:37.350891-08:00,1006.6981201171875,10.844984,10844.984 +15163,2025-03-08T21:34:48.198920-08:00,1006.6503295898438,10.848029,10848.029 +15164,2025-03-08T21:34:59.034962-08:00,1006.6834106445312,10.836042,10836.042 +15165,2025-03-08T21:35:09.877923-08:00,1006.684814453125,10.842961,10842.961 +15166,2025-03-08T21:35:20.720547-08:00,1006.66357421875,10.842624,10842.624 +15167,2025-03-08T21:35:31.564910-08:00,1006.6768798828125,10.844363,10844.363 +15168,2025-03-08T21:35:42.408799-08:00,1006.66357421875,10.843889,10843.889 +15169,2025-03-08T21:35:53.249991-08:00,1006.6691284179688,10.841192,10841.192 +15170,2025-03-08T21:36:04.098041-08:00,1006.6768798828125,10.84805,10848.05 +15171,2025-03-08T21:36:14.938922-08:00,1006.6478881835938,10.840881,10840.881 +15172,2025-03-08T21:36:25.779197-08:00,1006.67578125,10.840275,10840.275 +15173,2025-03-08T21:36:36.629020-08:00,1006.68896484375,10.849823,10849.823 +15174,2025-03-08T21:36:47.469911-08:00,1006.6743774414062,10.840891,10840.891 +15175,2025-03-08T21:36:58.315919-08:00,1006.6900634765625,10.846008,10846.008 +15176,2025-03-08T21:37:09.158228-08:00,1006.67578125,10.842309,10842.309 +15177,2025-03-08T21:37:19.997191-08:00,1006.6559448242188,10.838963,10838.963 +15178,2025-03-08T21:37:30.845356-08:00,1006.6412353515625,10.848165,10848.165 +15179,2025-03-08T21:37:41.686156-08:00,1006.67578125,10.8408,10840.8 +15180,2025-03-08T21:37:52.519929-08:00,1006.682373046875,10.833773,10833.773 +15181,2025-03-08T21:38:03.363852-08:00,1006.68896484375,10.843923,10843.923 +15182,2025-03-08T21:38:14.197078-08:00,1006.667724609375,10.833226,10833.226 +15183,2025-03-08T21:38:25.038505-08:00,1006.682373046875,10.841427,10841.427 +15184,2025-03-08T21:38:35.885030-08:00,1006.6691284179688,10.846525,10846.525 +15185,2025-03-08T21:38:46.717755-08:00,1006.6956176757812,10.832725,10832.725 +15186,2025-03-08T21:38:57.559916-08:00,1006.682373046875,10.842161,10842.161 +15187,2025-03-08T21:39:08.403920-08:00,1006.69970703125,10.844004,10844.004 +15188,2025-03-08T21:39:19.248311-08:00,1006.680908203125,10.844391,10844.391 +15189,2025-03-08T21:39:30.090335-08:00,1006.6864624023438,10.842024,10842.024 +15190,2025-03-08T21:39:40.923168-08:00,1006.6798706054688,10.832833,10832.833 +15191,2025-03-08T21:39:51.777286-08:00,1006.657470703125,10.854118,10854.118 +15192,2025-03-08T21:40:02.608927-08:00,1006.6707763671875,10.831641,10831.641 +15193,2025-03-08T21:40:13.450971-08:00,1006.6906127929688,10.842044,10842.044 +15194,2025-03-08T21:40:24.294197-08:00,1006.671875,10.843226,10843.226 +15195,2025-03-08T21:40:35.136914-08:00,1006.6917114257812,10.842717,10842.717 +15196,2025-03-08T21:40:45.980674-08:00,1006.6773681640625,10.84376,10843.76 +15197,2025-03-08T21:40:56.828813-08:00,1006.671875,10.848139,10848.139 +15198,2025-03-08T21:41:07.660131-08:00,1006.6906127929688,10.831318,10831.318 +15199,2025-03-08T21:41:18.502496-08:00,1006.6851806640625,10.842365,10842.365 +15200,2025-03-08T21:41:29.347241-08:00,1006.678466796875,10.844745,10844.745 +15201,2025-03-08T21:41:40.185919-08:00,1006.6851806640625,10.838678,10838.678 +15202,2025-03-08T21:41:51.032914-08:00,1006.6585693359375,10.846995,10846.995 +15203,2025-03-08T21:42:01.882897-08:00,1006.6851806640625,10.849983,10849.983 +15204,2025-03-08T21:42:12.725987-08:00,1006.6851806640625,10.84309,10843.09 +15205,2025-03-08T21:42:23.578920-08:00,1006.6983032226562,10.852933,10852.933 +15206,2025-03-08T21:42:34.419457-08:00,1006.6641235351562,10.840537,10840.537 +15207,2025-03-08T21:42:45.264954-08:00,1006.6773681640625,10.845497,10845.497 +15208,2025-03-08T21:42:56.106345-08:00,1006.693115234375,10.841391,10841.391 +15209,2025-03-08T21:43:06.953918-08:00,1006.693115234375,10.847573,10847.573 +15210,2025-03-08T21:43:17.810918-08:00,1006.693115234375,10.857,10857.0 +15211,2025-03-08T21:43:28.650730-08:00,1006.6906127929688,10.839812,10839.812 +15212,2025-03-08T21:43:39.504105-08:00,1006.6599731445312,10.853375,10853.375 +15213,2025-03-08T21:43:50.353171-08:00,1006.6875610351562,10.849066,10849.066 +15214,2025-03-08T21:44:01.201170-08:00,1006.6864624023438,10.847999,10847.999 +15215,2025-03-08T21:44:12.045172-08:00,1006.6666259765625,10.844002,10844.002 +15216,2025-03-08T21:44:22.888904-08:00,1006.693115234375,10.843732,10843.732 +15217,2025-03-08T21:44:33.731924-08:00,1006.6798706054688,10.84302,10843.02 +15218,2025-03-08T21:44:44.576532-08:00,1006.6942138671875,10.844608,10844.608 +15219,2025-03-08T21:44:55.417956-08:00,1006.6983032226562,10.841424,10841.424 +15220,2025-03-08T21:45:06.261493-08:00,1006.6983032226562,10.843537,10843.537 +15221,2025-03-08T21:45:17.114916-08:00,1006.6917114257812,10.853423,10853.423 +15222,2025-03-08T21:45:27.962145-08:00,1006.671875,10.847229,10847.229 +15223,2025-03-08T21:45:38.803161-08:00,1006.6826782226562,10.841016,10841.016 +15224,2025-03-08T21:45:49.644452-08:00,1006.6958618164062,10.841291,10841.291 +15225,2025-03-08T21:46:00.491917-08:00,1006.6906127929688,10.847465,10847.465 +15226,2025-03-08T21:46:11.331894-08:00,1006.6693725585938,10.839977,10839.977 +15227,2025-03-08T21:46:22.174918-08:00,1006.7025146484375,10.843024,10843.024 +15228,2025-03-08T21:46:33.022045-08:00,1006.7079467773438,10.847127,10847.127 +15229,2025-03-08T21:46:43.865040-08:00,1006.6749267578125,10.842995,10842.995 +15230,2025-03-08T21:46:54.706389-08:00,1006.701416015625,10.841349,10841.349 +15231,2025-03-08T21:47:05.547425-08:00,1006.6682739257812,10.841036,10841.036 +15232,2025-03-08T21:47:16.391041-08:00,1006.6578369140625,10.843616,10843.616 +15233,2025-03-08T21:47:27.238167-08:00,1006.652587890625,10.847126,10847.126 +15234,2025-03-08T21:47:38.086267-08:00,1006.6897583007812,10.8481,10848.1 +15235,2025-03-08T21:47:48.929155-08:00,1006.6489868164062,10.842888,10842.888 +15236,2025-03-08T21:47:59.770917-08:00,1006.6358032226562,10.841762,10841.762 +15237,2025-03-08T21:48:10.626926-08:00,1006.6820068359375,10.856009,10856.009 +15238,2025-03-08T21:48:21.471063-08:00,1006.6475830078125,10.844137,10844.137 +15239,2025-03-08T21:48:32.312226-08:00,1006.6939086914062,10.841163,10841.163 +15240,2025-03-08T21:48:43.158419-08:00,1006.6795043945312,10.846193,10846.193 +15241,2025-03-08T21:48:54.000930-08:00,1006.6266479492188,10.842511,10842.511 +15242,2025-03-08T21:49:04.844920-08:00,1006.6439819335938,10.84399,10843.99 +15243,2025-03-08T21:49:15.687473-08:00,1006.6373291015625,10.842553,10842.553 +15244,2025-03-08T21:49:26.530149-08:00,1006.6649780273438,10.842676,10842.676 +15245,2025-03-08T21:49:37.371915-08:00,1006.6715698242188,10.841766,10841.766 +15246,2025-03-08T21:49:48.215145-08:00,1006.6649780273438,10.84323,10843.23 +15247,2025-03-08T21:49:59.058261-08:00,1006.6729736328125,10.843116,10843.116 +15248,2025-03-08T21:50:09.912332-08:00,1006.6757202148438,10.854071,10854.071 +15249,2025-03-08T21:50:20.745969-08:00,1006.70361328125,10.833637,10833.637 +15250,2025-03-08T21:50:31.599321-08:00,1006.695556640625,10.853352,10853.352 +15251,2025-03-08T21:50:42.442167-08:00,1006.6864013671875,10.842846,10842.846 +15252,2025-03-08T21:50:53.286861-08:00,1006.6878051757812,10.844694,10844.694 +15253,2025-03-08T21:51:04.129167-08:00,1006.6920166015625,10.842306,10842.306 +15254,2025-03-08T21:51:14.973160-08:00,1006.6961059570312,10.843993,10843.993 +15255,2025-03-08T21:51:25.802302-08:00,1006.669677734375,10.829142,10829.142 +15256,2025-03-08T21:51:36.646922-08:00,1006.6895141601562,10.84462,10844.62 +15257,2025-03-08T21:51:47.497061-08:00,1006.6604614257812,10.850139,10850.139 +15258,2025-03-08T21:51:58.336013-08:00,1006.67236328125,10.838952,10838.952 +15259,2025-03-08T21:52:09.183278-08:00,1006.6988525390625,10.847265,10847.265 +15260,2025-03-08T21:52:20.019915-08:00,1006.7307739257812,10.836637,10836.637 +15261,2025-03-08T21:52:30.862670-08:00,1006.7293701171875,10.842755,10842.755 +15262,2025-03-08T21:52:41.711201-08:00,1006.7228393554688,10.848531,10848.531 +15263,2025-03-08T21:52:52.552963-08:00,1006.7217407226562,10.841762,10841.762 +15264,2025-03-08T21:53:03.396179-08:00,1006.73388671875,10.843216,10843.216 +15265,2025-03-08T21:53:14.234925-08:00,1006.6983032226562,10.838746,10838.746 +15266,2025-03-08T21:53:25.083842-08:00,1006.7313842773438,10.848917,10848.917 +15267,2025-03-08T21:53:35.920082-08:00,1006.736572265625,10.83624,10836.24 +15268,2025-03-08T21:53:46.763160-08:00,1006.7263793945312,10.843078,10843.078 +15269,2025-03-08T21:53:57.595982-08:00,1006.7462768554688,10.832822,10832.822 +15270,2025-03-08T21:54:08.438100-08:00,1006.7396240234375,10.842118,10842.118 +15271,2025-03-08T21:54:19.271159-08:00,1006.74462890625,10.833059,10833.059 +15272,2025-03-08T21:54:30.112913-08:00,1006.7263793945312,10.841754,10841.754 +15273,2025-03-08T21:54:40.946084-08:00,1006.7528076171875,10.833171,10833.171 +15274,2025-03-08T21:54:51.785950-08:00,1006.7382202148438,10.839866,10839.866 +15275,2025-03-08T21:55:02.618774-08:00,1006.7371215820312,10.832824,10832.824 +15276,2025-03-08T21:55:13.454136-08:00,1006.7224731445312,10.835362,10835.362 +15277,2025-03-08T21:55:24.294911-08:00,1006.7147827148438,10.840775,10840.775 +15278,2025-03-08T21:55:35.139259-08:00,1006.7067260742188,10.844348,10844.348 +15279,2025-03-08T21:55:45.969070-08:00,1006.70263671875,10.829811,10829.811 +15280,2025-03-08T21:55:56.814064-08:00,1006.7001342773438,10.844994,10844.994 +15281,2025-03-08T21:56:07.656158-08:00,1006.6868896484375,10.842094,10842.094 +15282,2025-03-08T21:56:18.487356-08:00,1006.7001342773438,10.831198,10831.198 +15283,2025-03-08T21:56:29.329920-08:00,1006.7067260742188,10.842564,10842.564 +15284,2025-03-08T21:56:40.171905-08:00,1006.717529296875,10.841985,10841.985 +15285,2025-03-08T21:56:51.005257-08:00,1006.7229614257812,10.833352,10833.352 +15286,2025-03-08T21:57:01.846943-08:00,1006.7097778320312,10.841686,10841.686 +15287,2025-03-08T21:57:12.680078-08:00,1006.6807861328125,10.833135,10833.135 +15288,2025-03-08T21:57:23.523334-08:00,1006.7215576171875,10.843256,10843.256 +15289,2025-03-08T21:57:34.354920-08:00,1006.728271484375,10.831586,10831.586 +15290,2025-03-08T21:57:45.197105-08:00,1006.7246704101562,10.842185,10842.185 +15291,2025-03-08T21:57:56.019137-08:00,1006.7402954101562,10.822032,10822.032 +15292,2025-03-08T21:58:06.855054-08:00,1006.752197265625,10.835917,10835.917 +15293,2025-03-08T21:58:17.693531-08:00,1006.7577514648438,10.838477,10838.477 +15294,2025-03-08T21:58:28.525918-08:00,1006.7420043945312,10.832387,10832.387 +15295,2025-03-08T21:58:39.354922-08:00,1006.7354125976562,10.829004,10829.004 +15296,2025-03-08T21:58:50.188290-08:00,1006.7474975585938,10.833368,10833.368 +15297,2025-03-08T21:59:01.019973-08:00,1006.7516479492188,10.831683,10831.683 +15298,2025-03-08T21:59:11.863040-08:00,1006.739501953125,10.843067,10843.067 +15299,2025-03-08T21:59:22.689915-08:00,1006.739501953125,10.826875,10826.875 +15300,2025-03-08T21:59:33.526148-08:00,1006.7593994140625,10.836233,10836.233 +15301,2025-03-08T21:59:44.360366-08:00,1006.737060546875,10.834218,10834.218 +15302,2025-03-08T21:59:55.189921-08:00,1006.7527465820312,10.829555,10829.555 +15303,2025-03-08T22:00:06.022259-08:00,1006.7449951171875,10.832338,10832.338 +15304,2025-03-08T22:00:16.863916-08:00,1006.750244140625,10.841657,10841.657 +15305,2025-03-08T22:00:27.695055-08:00,1006.7557983398438,10.831139,10831.139 +15306,2025-03-08T22:00:38.539423-08:00,1006.75439453125,10.844368,10844.368 +15307,2025-03-08T22:00:49.370910-08:00,1006.7254028320312,10.831487,10831.487 +15308,2025-03-08T22:01:00.201999-08:00,1006.7452392578125,10.831089,10831.089 +15309,2025-03-08T22:01:11.045370-08:00,1006.712158203125,10.843371,10843.371 +15310,2025-03-08T22:01:21.872621-08:00,1006.7493896484375,10.827251,10827.251 +15311,2025-03-08T22:01:32.715021-08:00,1006.736083984375,10.8424,10842.4 +15312,2025-03-08T22:01:43.541247-08:00,1006.7005615234375,10.826226,10826.226 +15313,2025-03-08T22:01:54.374208-08:00,1006.7335815429688,10.832961,10832.961 +15314,2025-03-08T22:02:05.216940-08:00,1006.7259521484375,10.842732,10842.732 +15315,2025-03-08T22:02:16.047160-08:00,1006.7047119140625,10.83022,10830.22 +15316,2025-03-08T22:02:26.882123-08:00,1006.7245483398438,10.834963,10834.963 +15317,2025-03-08T22:02:37.722041-08:00,1006.7523193359375,10.839918,10839.918 +15318,2025-03-08T22:02:48.555604-08:00,1006.6958618164062,10.833563,10833.563 +15319,2025-03-08T22:02:59.386479-08:00,1006.6958618164062,10.830875,10830.875 +15320,2025-03-08T22:03:10.216966-08:00,1006.7025146484375,10.830487,10830.487 +15321,2025-03-08T22:03:21.048247-08:00,1006.720947265625,10.831281,10831.281 +15322,2025-03-08T22:03:31.881255-08:00,1006.7198486328125,10.833008,10833.008 +15323,2025-03-08T22:03:42.713327-08:00,1006.7263793945312,10.832072,10832.072 +15324,2025-03-08T22:03:53.556442-08:00,1006.772705078125,10.843115,10843.115 +15325,2025-03-08T22:04:04.387910-08:00,1006.7249755859375,10.831468,10831.468 +15326,2025-03-08T22:04:15.230920-08:00,1006.7437744140625,10.84301,10843.01 +15327,2025-03-08T22:04:26.063160-08:00,1006.72802734375,10.83224,10832.24 +15328,2025-03-08T22:04:36.906015-08:00,1006.7332763671875,10.842855,10842.855 +15329,2025-03-08T22:04:47.737280-08:00,1006.7109375,10.831265,10831.265 +15330,2025-03-08T22:04:58.568177-08:00,1006.732177734375,10.830897,10830.897 +15331,2025-03-08T22:05:09.401062-08:00,1006.7109375,10.832885,10832.885 +15332,2025-03-08T22:05:20.231960-08:00,1006.7164306640625,10.830898,10830.898 +15333,2025-03-08T22:05:31.074920-08:00,1006.7098388671875,10.84296,10842.96 +15334,2025-03-08T22:05:41.864912-08:00,1006.741455078125,10.789992,10789.992 +15335,2025-03-08T22:05:52.696070-08:00,1006.73486328125,10.831158,10831.158 +15336,2025-03-08T22:06:03.531057-08:00,1006.70068359375,10.834987,10834.987 +15337,2025-03-08T22:06:14.373452-08:00,1006.7257690429688,10.842395,10842.395 +15338,2025-03-08T22:06:25.204075-08:00,1006.724365234375,10.830623,10830.623 +15339,2025-03-08T22:06:36.036552-08:00,1006.724365234375,10.832477,10832.477 +15340,2025-03-08T22:06:46.867130-08:00,1006.703125,10.830578,10830.578 +15341,2025-03-08T22:06:57.700075-08:00,1006.6898193359375,10.832945,10832.945 +15342,2025-03-08T22:07:08.536108-08:00,1006.709716796875,10.836033,10836.033 +15343,2025-03-08T22:07:19.374073-08:00,1006.709716796875,10.837965,10837.965 +15344,2025-03-08T22:07:30.205398-08:00,1006.7229614257812,10.831325,10831.325 +15345,2025-03-08T22:07:41.032321-08:00,1006.7138061523438,10.826923,10826.923 +15346,2025-03-08T22:07:51.870081-08:00,1006.7006225585938,10.83776,10837.76 +15347,2025-03-08T22:08:02.701251-08:00,1006.7127075195312,10.83117,10831.17 +15348,2025-03-08T22:08:13.544229-08:00,1006.7050170898438,10.842978,10842.978 +15349,2025-03-08T22:08:24.381851-08:00,1006.7326049804688,10.837622,10837.622 +15350,2025-03-08T22:08:35.212347-08:00,1006.6984252929688,10.830496,10830.496 +15351,2025-03-08T22:08:46.049684-08:00,1006.7050170898438,10.837337,10837.337 +15352,2025-03-08T22:08:56.884304-08:00,1006.711669921875,10.83462,10834.62 +15353,2025-03-08T22:09:07.720069-08:00,1006.7234497070312,10.835765,10835.765 +15354,2025-03-08T22:09:18.550465-08:00,1006.7011108398438,10.830396,10830.396 +15355,2025-03-08T22:09:29.388476-08:00,1006.7132568359375,10.838011,10838.011 +15356,2025-03-08T22:09:40.209686-08:00,1006.6787719726562,10.82121,10821.21 +15357,2025-03-08T22:09:51.038078-08:00,1006.6986083984375,10.828392,10828.392 +15358,2025-03-08T22:10:01.879054-08:00,1006.682861328125,10.840976,10840.976 +15359,2025-03-08T22:10:12.705046-08:00,1006.7041625976562,10.825992,10825.992 +15360,2025-03-08T22:10:23.541420-08:00,1006.6776733398438,10.836374,10836.374 +15361,2025-03-08T22:10:34.363593-08:00,1006.67626953125,10.822173,10822.173 +15362,2025-03-08T22:10:45.200079-08:00,1006.6895141601562,10.836486,10836.486 +15363,2025-03-08T22:10:56.032408-08:00,1006.6751708984375,10.832329,10832.329 +15364,2025-03-08T22:11:06.874876-08:00,1006.7001342773438,10.842468,10842.468 +15365,2025-03-08T22:11:17.708294-08:00,1006.7001342773438,10.833418,10833.418 +15366,2025-03-08T22:11:28.529961-08:00,1006.67919921875,10.821667,10821.667 +15367,2025-03-08T22:11:39.371150-08:00,1006.66357421875,10.841189,10841.189 +15368,2025-03-08T22:11:50.208312-08:00,1006.705810546875,10.837162,10837.162 +15369,2025-03-08T22:12:01.033266-08:00,1006.6976318359375,10.824954,10824.954 +15370,2025-03-08T22:12:11.866334-08:00,1006.6554565429688,10.833068,10833.068 +15371,2025-03-08T22:12:22.696440-08:00,1006.6554565429688,10.830106,10830.106 +15372,2025-03-08T22:12:33.539197-08:00,1006.6741943359375,10.842757,10842.757 +15373,2025-03-08T22:12:44.375902-08:00,1006.694091796875,10.836705,10836.705 +15374,2025-03-08T22:12:55.201329-08:00,1006.6981811523438,10.825427,10825.427 +15375,2025-03-08T22:13:06.031121-08:00,1006.6702880859375,10.829792,10829.792 +15376,2025-03-08T22:13:16.863578-08:00,1006.68359375,10.832457,10832.457 +15377,2025-03-08T22:13:27.698086-08:00,1006.6615600585938,10.834508,10834.508 +15378,2025-03-08T22:13:38.529763-08:00,1006.68798828125,10.831677,10831.677 +15379,2025-03-08T22:13:49.367076-08:00,1006.6998291015625,10.837313,10837.313 +15380,2025-03-08T22:14:00.199089-08:00,1006.7185668945312,10.832013,10832.013 +15381,2025-03-08T22:14:11.028108-08:00,1006.6708374023438,10.829019,10829.019 +15382,2025-03-08T22:14:21.863252-08:00,1006.6484985351562,10.835144,10835.144 +15383,2025-03-08T22:14:32.692076-08:00,1006.6708374023438,10.828824,10828.824 +15384,2025-03-08T22:14:43.530117-08:00,1006.6815795898438,10.838041,10838.041 +15385,2025-03-08T22:14:54.364287-08:00,1006.6937255859375,10.83417,10834.17 +15386,2025-03-08T22:15:05.194642-08:00,1006.6804809570312,10.830355,10830.355 +15387,2025-03-08T22:15:16.020326-08:00,1006.6937255859375,10.825684,10825.684 +15388,2025-03-08T22:15:26.858075-08:00,1006.6592407226562,10.837749,10837.749 +15389,2025-03-08T22:15:37.685151-08:00,1006.677978515625,10.827076,10827.076 +15390,2025-03-08T22:15:48.521501-08:00,1006.6845092773438,10.83635,10836.35 +15391,2025-03-08T22:15:59.353228-08:00,1006.6556396484375,10.831727,10831.727 +15392,2025-03-08T22:16:10.185074-08:00,1006.6820068359375,10.831846,10831.846 +15393,2025-03-08T22:16:21.019073-08:00,1006.6861572265625,10.833999,10833.999 +15394,2025-03-08T22:16:31.848682-08:00,1006.6729736328125,10.829609,10829.609 +15395,2025-03-08T22:16:42.687125-08:00,1006.6928100585938,10.838443,10838.443 +15396,2025-03-08T22:16:53.519561-08:00,1006.6517333984375,10.832436,10832.436 +15397,2025-03-08T22:17:04.350384-08:00,1006.6704711914062,10.830823,10830.823 +15398,2025-03-08T22:17:15.181079-08:00,1006.642578125,10.830695,10830.695 +15399,2025-03-08T22:17:26.019351-08:00,1006.663818359375,10.838272,10838.272 +15400,2025-03-08T22:17:36.846129-08:00,1006.6690673828125,10.826778,10826.778 +15401,2025-03-08T22:17:47.682474-08:00,1006.6588134765625,10.836345,10836.345 +15402,2025-03-08T22:17:58.508068-08:00,1006.653564453125,10.825594,10825.594 +15403,2025-03-08T22:18:09.342277-08:00,1006.677490234375,10.834209,10834.209 +15404,2025-03-08T22:18:20.176505-08:00,1006.6576538085938,10.834228,10834.228 +15405,2025-03-08T22:18:30.998460-08:00,1006.636474609375,10.821955,10821.955 +15406,2025-03-08T22:18:41.827694-08:00,1006.6551513671875,10.829234,10829.234 +15407,2025-03-08T22:18:52.669078-08:00,1006.6551513671875,10.841384,10841.384 +15408,2025-03-08T22:19:03.498676-08:00,1006.6537475585938,10.829598,10829.598 +15409,2025-03-08T22:19:14.340180-08:00,1006.673583984375,10.841504,10841.504 +15410,2025-03-08T22:19:25.166506-08:00,1006.660400390625,10.826326,10826.326 +15411,2025-03-08T22:19:35.993364-08:00,1006.6593017578125,10.826858,10826.858 +15412,2025-03-08T22:19:46.830077-08:00,1006.6593017578125,10.836713,10836.713 +15413,2025-03-08T22:19:57.652216-08:00,1006.6248168945312,10.822139,10822.139 +15414,2025-03-08T22:20:08.483420-08:00,1006.6710815429688,10.831204,10831.204 +15415,2025-03-08T22:20:19.321732-08:00,1006.62890625,10.838312,10838.312 +15416,2025-03-08T22:20:30.157291-08:00,1006.6090698242188,10.835559,10835.559 +15417,2025-03-08T22:20:40.990342-08:00,1006.6553955078125,10.833051,10833.051 +15418,2025-03-08T22:20:51.820081-08:00,1006.6422119140625,10.829739,10829.739 +15419,2025-03-08T22:21:02.654582-08:00,1006.6386108398438,10.834501,10834.501 +15420,2025-03-08T22:21:13.483200-08:00,1006.6173706054688,10.828618,10828.618 +15421,2025-03-08T22:21:24.317308-08:00,1006.622802734375,10.834108,10834.108 +15422,2025-03-08T22:21:27.059686-08:00,1006.622802734375,2.742378,2742.378 +15423,2025-03-08T22:21:35.148201-08:00,1006.6004638671875,8.088515,8088.515 +15424,2025-03-08T22:21:45.984215-08:00,1006.6203002929688,10.836014,10836.014 +15425,2025-03-08T22:21:56.811823-08:00,1006.578125,10.827608,10827.608 +15426,2025-03-08T22:22:07.649078-08:00,1006.5914306640625,10.837255,10837.255 +15427,2025-03-08T22:22:18.487056-08:00,1006.5902099609375,10.837978,10837.978 +15428,2025-03-08T22:22:29.313065-08:00,1006.608642578125,10.826009,10826.009 +15429,2025-03-08T22:22:40.150082-08:00,1006.5888061523438,10.837017,10837.017 +15430,2025-03-08T22:22:50.985600-08:00,1006.5943603515625,10.835518,10835.518 +15431,2025-03-08T22:23:01.822290-08:00,1006.572021484375,10.83669,10836.69 +15432,2025-03-08T22:23:12.656265-08:00,1006.5706176757812,10.833975,10833.975 +15433,2025-03-08T22:23:23.489744-08:00,1006.5863037109375,10.833479,10833.479 +15434,2025-03-08T22:23:34.327069-08:00,1006.5918579101562,10.837325,10837.325 +15435,2025-03-08T22:23:45.152398-08:00,1006.5441284179688,10.825329,10825.329 +15436,2025-03-08T22:23:55.993207-08:00,1006.585205078125,10.840809,10840.809 +15437,2025-03-08T22:24:06.826886-08:00,1006.5984497070312,10.833679,10833.679 +15438,2025-03-08T22:24:17.659130-08:00,1006.5695190429688,10.832244,10832.244 +15439,2025-03-08T22:24:28.495075-08:00,1006.5838012695312,10.835945,10835.945 +15440,2025-03-08T22:24:39.339408-08:00,1006.55078125,10.844333,10844.333 +15441,2025-03-08T22:24:50.171218-08:00,1006.5374755859375,10.83181,10831.81 +15442,2025-03-08T22:25:01.007196-08:00,1006.557373046875,10.835978,10835.978 +15443,2025-03-08T22:25:11.841662-08:00,1006.546630859375,10.834466,10834.466 +15444,2025-03-08T22:25:22.678408-08:00,1006.5770263671875,10.836746,10836.746 +15445,2025-03-08T22:25:33.511330-08:00,1006.571533203125,10.832922,10832.922 +15446,2025-03-08T22:25:44.349547-08:00,1006.5704956054688,10.838217,10838.217 +15447,2025-03-08T22:25:55.173303-08:00,1006.5409545898438,10.823756,10823.756 +15448,2025-03-08T22:26:06.010345-08:00,1006.5831298828125,10.837042,10837.042 +15449,2025-03-08T22:26:16.842079-08:00,1006.5486450195312,10.831734,10831.734 +15450,2025-03-08T22:26:27.674997-08:00,1006.5567016601562,10.832918,10832.918 +15451,2025-03-08T22:26:38.508071-08:00,1006.5592041015625,10.833074,10833.074 +15452,2025-03-08T22:26:49.343078-08:00,1006.58154296875,10.835007,10835.007 +15453,2025-03-08T22:27:00.189331-08:00,1006.5617065429688,10.846253,10846.253 +15454,2025-03-08T22:27:11.024114-08:00,1006.536376953125,10.834783,10834.783 +15455,2025-03-08T22:27:21.855410-08:00,1006.551025390625,10.831296,10831.296 +15456,2025-03-08T22:27:32.695513-08:00,1006.5479736328125,10.840103,10840.103 +15457,2025-03-08T22:27:43.532269-08:00,1006.5413818359375,10.836756,10836.756 +15458,2025-03-08T22:27:54.361079-08:00,1006.5850219726562,10.82881,10828.81 +15459,2025-03-08T22:28:05.198051-08:00,1006.5518798828125,10.836972,10836.972 +15460,2025-03-08T22:28:16.035170-08:00,1006.57421875,10.837119,10837.119 +15461,2025-03-08T22:28:26.865528-08:00,1006.5554809570312,10.830358,10830.358 +15462,2025-03-08T22:28:37.693083-08:00,1006.5513916015625,10.827555,10827.555 +15463,2025-03-08T22:28:48.534298-08:00,1006.57373046875,10.841215,10841.215 +15464,2025-03-08T22:28:59.362126-08:00,1006.5697021484375,10.827828,10827.828 +15465,2025-03-08T22:29:10.195260-08:00,1006.5523681640625,10.833134,10833.134 +15466,2025-03-08T22:29:21.026648-08:00,1006.5599975585938,10.831388,10831.388 +15467,2025-03-08T22:29:31.857416-08:00,1006.5283813476562,10.830768,10830.768 +15468,2025-03-08T22:29:42.684800-08:00,1006.5507202148438,10.827384,10827.384 +15469,2025-03-08T22:29:53.516073-08:00,1006.545166015625,10.831273,10831.273 +15470,2025-03-08T22:30:04.348708-08:00,1006.5623168945312,10.832635,10832.635 +15471,2025-03-08T22:30:15.170079-08:00,1006.5711059570312,10.821371,10821.371 +15472,2025-03-08T22:30:25.994368-08:00,1006.5537719726562,10.824289,10824.289 +15473,2025-03-08T22:30:36.830259-08:00,1006.5496826171875,10.835891,10835.891 +15474,2025-03-08T22:30:47.668365-08:00,1006.558837890625,10.838106,10838.106 +15475,2025-03-08T22:30:58.506329-08:00,1006.5535888671875,10.837964,10837.964 +15476,2025-03-08T22:31:09.343071-08:00,1006.537353515625,10.836742,10836.742 +15477,2025-03-08T22:31:20.185078-08:00,1006.5531005859375,10.842007,10842.007 +15478,2025-03-08T22:31:31.015336-08:00,1006.5225219726562,10.830258,10830.258 +15479,2025-03-08T22:31:41.856074-08:00,1006.4974975585938,10.840738,10840.738 +15480,2025-03-08T22:31:52.693077-08:00,1006.5198364257812,10.837003,10837.003 +15481,2025-03-08T22:32:03.524468-08:00,1006.5509643554688,10.831391,10831.391 +15482,2025-03-08T22:32:14.370079-08:00,1006.532470703125,10.845611,10845.611 +15483,2025-03-08T22:32:25.210704-08:00,1006.55517578125,10.840625,10840.625 +15484,2025-03-08T22:32:36.043181-08:00,1006.5510864257812,10.832477,10832.477 +15485,2025-03-08T22:32:46.869136-08:00,1006.5546875,10.825955,10825.955 +15486,2025-03-08T22:32:57.709342-08:00,1006.5150146484375,10.840206,10840.206 +15487,2025-03-08T22:33:08.544381-08:00,1006.55859375,10.835039,10835.039 +15488,2025-03-08T22:33:19.381075-08:00,1006.5423583984375,10.836694,10836.694 +15489,2025-03-08T22:33:30.219376-08:00,1006.5437622070312,10.838301,10838.301 +15490,2025-03-08T22:33:41.055313-08:00,1006.5657958984375,10.835937,10835.937 +15491,2025-03-08T22:33:51.900306-08:00,1006.5431518554688,10.844993,10844.993 +15492,2025-03-08T22:34:02.733379-08:00,1006.55224609375,10.833073,10833.073 +15493,2025-03-08T22:34:13.561069-08:00,1006.5665893554688,10.82769,10827.69 +15494,2025-03-08T22:34:24.395325-08:00,1006.5679931640625,10.834256,10834.256 +15495,2025-03-08T22:34:35.230077-08:00,1006.5572509765625,10.834752,10834.752 +15496,2025-03-08T22:34:46.070255-08:00,1006.5608520507812,10.840178,10840.178 +15497,2025-03-08T22:34:56.912340-08:00,1006.5675048828125,10.842085,10842.085 +15498,2025-03-08T22:35:07.742077-08:00,1006.5567016601562,10.829737,10829.737 +15499,2025-03-08T22:35:18.585052-08:00,1006.4852905273438,10.842975,10842.975 +15500,2025-03-08T22:35:29.420422-08:00,1006.5128784179688,10.83537,10835.37 +15501,2025-03-08T22:35:40.263517-08:00,1006.5617065429688,10.843095,10843.095 +15502,2025-03-08T22:35:51.099074-08:00,1006.5363159179688,10.835557,10835.557 +15503,2025-03-08T22:36:01.926119-08:00,1006.552001953125,10.827045,10827.045 +15504,2025-03-08T22:36:12.767331-08:00,1006.5413208007812,10.841212,10841.212 +15505,2025-03-08T22:36:23.611054-08:00,1006.53466796875,10.843723,10843.723 +15506,2025-03-08T22:36:34.444418-08:00,1006.5040893554688,10.833364,10833.364 +15507,2025-03-08T22:36:45.282063-08:00,1006.5926513671875,10.837645,10837.645 +15508,2025-03-08T22:36:56.123076-08:00,1006.5543823242188,10.841013,10841.013 +15509,2025-03-08T22:37:06.961427-08:00,1006.5476684570312,10.838351,10838.351 +15510,2025-03-08T22:37:17.805074-08:00,1006.5435791015625,10.843647,10843.647 +15511,2025-03-08T22:37:28.630074-08:00,1006.5115356445312,10.825,10825.0 +15512,2025-03-08T22:37:39.467348-08:00,1006.533935546875,10.837274,10837.274 +15513,2025-03-08T22:37:50.311299-08:00,1006.5394287109375,10.843951,10843.951 +15514,2025-03-08T22:38:01.149314-08:00,1006.5562744140625,10.838015,10838.015 +15515,2025-03-08T22:38:11.979337-08:00,1006.5562744140625,10.830023,10830.023 +15516,2025-03-08T22:38:22.815127-08:00,1006.5454711914062,10.83579,10835.79 +15517,2025-03-08T22:38:33.647062-08:00,1006.5399780273438,10.831935,10831.935 +15518,2025-03-08T22:38:44.492436-08:00,1006.5134887695312,10.845374,10845.374 +15519,2025-03-08T22:38:55.324068-08:00,1006.5479736328125,10.831632,10831.632 +15520,2025-03-08T22:39:06.163316-08:00,1006.5281372070312,10.839248,10839.248 +15521,2025-03-08T22:39:17.000504-08:00,1006.5449829101562,10.837188,10837.188 +15522,2025-03-08T22:39:27.839077-08:00,1006.5159912109375,10.838573,10838.573 +15523,2025-03-08T22:39:38.685131-08:00,1006.5408325195312,10.846054,10846.054 +15524,2025-03-08T22:39:49.517328-08:00,1006.539794921875,10.832197,10832.197 +15525,2025-03-08T22:40:00.359543-08:00,1006.5276489257812,10.842215,10842.215 +15526,2025-03-08T22:40:11.202074-08:00,1006.51025390625,10.842531,10842.531 +15527,2025-03-08T22:40:22.036405-08:00,1006.5036010742188,10.834331,10834.331 +15528,2025-03-08T22:40:32.866048-08:00,1006.492919921875,10.829643,10829.643 +15529,2025-03-08T22:40:43.704055-08:00,1006.5127563476562,10.838007,10838.007 +15530,2025-03-08T22:40:54.537158-08:00,1006.4785766601562,10.833103,10833.103 +15531,2025-03-08T22:41:05.369319-08:00,1006.492919921875,10.832161,10832.161 +15532,2025-03-08T22:41:16.210209-08:00,1006.5152587890625,10.84089,10840.89 +15533,2025-03-08T22:41:27.046895-08:00,1006.4967041015625,10.836686,10836.686 +15534,2025-03-08T22:41:37.879071-08:00,1006.5320434570312,10.832176,10832.176 +15535,2025-03-08T22:41:48.722063-08:00,1006.51220703125,10.842992,10842.992 +15536,2025-03-08T22:41:59.560406-08:00,1006.5466918945312,10.838343,10838.343 +15537,2025-03-08T22:42:10.396074-08:00,1006.533447265625,10.835668,10835.668 +15538,2025-03-08T22:42:21.229373-08:00,1006.5399780273438,10.833299,10833.299 +15539,2025-03-08T22:42:32.060283-08:00,1006.5176391601562,10.83091,10830.91 +15540,2025-03-08T22:42:42.901062-08:00,1006.569091796875,10.840779,10840.779 +15541,2025-03-08T22:42:53.730201-08:00,1006.521240234375,10.829139,10829.139 +15542,2025-03-08T22:43:04.570074-08:00,1006.5557861328125,10.839873,10839.873 +15543,2025-03-08T22:43:15.410144-08:00,1006.5623168945312,10.84007,10840.07 +15544,2025-03-08T22:43:26.249091-08:00,1006.5502319335938,10.838947,10838.947 +15545,2025-03-08T22:43:37.094219-08:00,1006.5370483398438,10.845128,10845.128 +15546,2025-03-08T22:43:47.927073-08:00,1006.5648193359375,10.832854,10832.854 +15547,2025-03-08T22:43:58.766128-08:00,1006.5317993164062,10.839055,10839.055 +15548,2025-03-08T22:44:09.603143-08:00,1006.5328369140625,10.837015,10837.015 +15549,2025-03-08T22:44:20.447547-08:00,1006.5186157226562,10.844404,10844.404 +15550,2025-03-08T22:44:31.289085-08:00,1006.53955078125,10.841538,10841.538 +15551,2025-03-08T22:44:42.120366-08:00,1006.525146484375,10.831281,10831.281 +15552,2025-03-08T22:44:52.962063-08:00,1006.5317993164062,10.841697,10841.697 +15553,2025-03-08T22:45:03.798454-08:00,1006.552734375,10.836391,10836.391 +15554,2025-03-08T22:45:14.639536-08:00,1006.5195922851562,10.841082,10841.082 +15555,2025-03-08T22:45:25.485377-08:00,1006.5195922851562,10.845841,10845.841 +15556,2025-03-08T22:45:36.316089-08:00,1006.5262451171875,10.830712,10830.712 +15557,2025-03-08T22:45:47.161398-08:00,1006.5276489257812,10.845309,10845.309 +15558,2025-03-08T22:45:58.007595-08:00,1006.52099609375,10.846197,10846.197 +15559,2025-03-08T22:46:08.847331-08:00,1006.4986572265625,10.839736,10839.736 +15560,2025-03-08T22:46:19.685282-08:00,1006.4799194335938,10.837951,10837.951 +15561,2025-03-08T22:46:30.525354-08:00,1006.5154418945312,10.840072,10840.072 +15562,2025-03-08T22:46:41.362124-08:00,1006.4813232421875,10.83677,10836.77 +15563,2025-03-08T22:46:52.204398-08:00,1006.4945068359375,10.842274,10842.274 +15564,2025-03-08T22:47:03.043059-08:00,1006.4746704101562,10.838661,10838.661 +15565,2025-03-08T22:47:13.880400-08:00,1006.4970092773438,10.837341,10837.341 +15566,2025-03-08T22:47:24.717079-08:00,1006.5154418945312,10.836679,10836.679 +15567,2025-03-08T22:47:35.560260-08:00,1006.4915771484375,10.843181,10843.181 +15568,2025-03-08T22:47:46.403841-08:00,1006.4639282226562,10.843581,10843.581 +15569,2025-03-08T22:47:57.240110-08:00,1006.4559326171875,10.836269,10836.269 +15570,2025-03-08T22:48:08.084084-08:00,1006.4716186523438,10.843974,10843.974 +15571,2025-03-08T22:48:18.915355-08:00,1006.4517822265625,10.831271,10831.271 +15572,2025-03-08T22:48:29.754220-08:00,1006.478271484375,10.838865,10838.865 +15573,2025-03-08T22:48:40.599130-08:00,1006.4609375,10.84491,10844.91 +15574,2025-03-08T22:48:51.433072-08:00,1006.4266967773438,10.833942,10833.942 +15575,2025-03-08T22:49:02.276398-08:00,1006.4490356445312,10.843326,10843.326 +15576,2025-03-08T22:49:13.108078-08:00,1006.4501342773438,10.83168,10831.68 +15577,2025-03-08T22:49:23.954079-08:00,1006.45263671875,10.846001,10846.001 +15578,2025-03-08T22:49:34.790563-08:00,1006.4260864257812,10.836484,10836.484 +15579,2025-03-08T22:49:45.624316-08:00,1006.4407958984375,10.833753,10833.753 +15580,2025-03-08T22:49:56.473078-08:00,1006.414306640625,10.848762,10848.762 +15581,2025-03-08T22:50:07.311406-08:00,1006.450927734375,10.838328,10838.328 +15582,2025-03-08T22:50:18.143110-08:00,1006.4575805664062,10.831704,10831.704 +15583,2025-03-08T22:50:28.981078-08:00,1006.4388427734375,10.837968,10837.968 +15584,2025-03-08T22:50:39.806935-08:00,1006.4600830078125,10.825857,10825.857 +15585,2025-03-08T22:50:50.648073-08:00,1006.4678344726562,10.841138,10841.138 +15586,2025-03-08T22:51:01.478222-08:00,1006.42138671875,10.830149,10830.149 +15587,2025-03-08T22:51:12.324434-08:00,1006.4385986328125,10.846212,10846.212 +15588,2025-03-08T22:51:23.161754-08:00,1006.42529296875,10.83732,10837.32 +15589,2025-03-08T22:51:33.995115-08:00,1006.4462280273438,10.833361,10833.361 +15590,2025-03-08T22:51:44.838997-08:00,1006.455322265625,10.843882,10843.882 +15591,2025-03-08T22:51:55.673081-08:00,1006.442138671875,10.834084,10834.084 +15592,2025-03-08T22:52:06.512339-08:00,1006.43798828125,10.839258,10839.258 +15593,2025-03-08T22:52:17.356086-08:00,1006.4327392578125,10.843747,10843.747 +15594,2025-03-08T22:52:28.194149-08:00,1006.431396484375,10.838063,10838.063 +15595,2025-03-08T22:52:39.030069-08:00,1006.4129028320312,10.83592,10835.92 +15596,2025-03-08T22:52:49.867408-08:00,1006.4129028320312,10.837339,10837.339 +15597,2025-03-08T22:53:00.709174-08:00,1006.4073486328125,10.841766,10841.766 +15598,2025-03-08T22:53:11.545075-08:00,1006.4073486328125,10.835901,10835.901 +15599,2025-03-08T22:53:22.385066-08:00,1006.4163818359375,10.839991,10839.991 +15600,2025-03-08T22:53:33.215339-08:00,1006.4112548828125,10.830273,10830.273 +15601,2025-03-08T22:53:44.059124-08:00,1006.376708984375,10.843785,10843.785 +15602,2025-03-08T22:53:54.903316-08:00,1006.438720703125,10.844192,10844.192 +15603,2025-03-08T22:54:05.734937-08:00,1006.39794921875,10.831621,10831.621 +15604,2025-03-08T22:54:16.578266-08:00,1006.4134521484375,10.843329,10843.329 +15605,2025-03-08T22:54:27.410321-08:00,1006.442626953125,10.832055,10832.055 +15606,2025-03-08T22:54:38.240406-08:00,1006.4134521484375,10.830085,10830.085 +15607,2025-03-08T22:54:49.072344-08:00,1006.4307861328125,10.831938,10831.938 +15608,2025-03-08T22:54:59.904707-08:00,1006.4374389648438,10.832363,10832.363 +15609,2025-03-08T22:55:10.743070-08:00,1006.4241943359375,10.838363,10838.363 +15610,2025-03-08T22:55:21.575081-08:00,1006.4081420898438,10.832011,10832.011 +15611,2025-03-08T22:55:32.408153-08:00,1006.4573364257812,10.833072,10833.072 +15612,2025-03-08T22:55:43.249069-08:00,1006.42529296875,10.840916,10840.916 +15613,2025-03-08T22:55:54.087408-08:00,1006.4176025390625,10.838339,10838.339 +15614,2025-03-08T22:56:04.918079-08:00,1006.4109497070312,10.830671,10830.671 +15615,2025-03-08T22:56:15.758075-08:00,1006.4185791015625,10.839996,10839.996 +15616,2025-03-08T22:56:26.593379-08:00,1006.3976440429688,10.835304,10835.304 +15617,2025-03-08T22:56:37.418262-08:00,1006.3844604492188,10.824883,10824.883 +15618,2025-03-08T22:56:48.263200-08:00,1006.4053955078125,10.844938,10844.938 +15619,2025-03-08T22:56:59.093074-08:00,1006.37890625,10.829874,10829.874 +15620,2025-03-08T22:57:09.919213-08:00,1006.400146484375,10.826139,10826.139 +15621,2025-03-08T22:57:20.761641-08:00,1006.4210815429688,10.842428,10842.428 +15622,2025-03-08T22:57:31.593063-08:00,1006.3936157226562,10.831422,10831.422 +15623,2025-03-08T22:57:42.426396-08:00,1006.4012451171875,10.833333,10833.333 +15624,2025-03-08T22:57:53.267325-08:00,1006.41455078125,10.840929,10840.929 +15625,2025-03-08T22:58:04.101052-08:00,1006.4037475585938,10.833727,10833.727 +15626,2025-03-08T22:58:14.944085-08:00,1006.37060546875,10.843033,10843.033 +15627,2025-03-08T22:58:25.783451-08:00,1006.3761596679688,10.839366,10839.366 +15628,2025-03-08T22:58:36.630224-08:00,1006.3970947265625,10.846773,10846.773 +15629,2025-03-08T22:58:47.463621-08:00,1006.3970947265625,10.833397,10833.397 +15630,2025-03-08T22:58:58.303270-08:00,1006.391845703125,10.839649,10839.649 +15631,2025-03-08T22:59:09.144075-08:00,1006.3839111328125,10.840805,10840.805 +15632,2025-03-08T22:59:19.991078-08:00,1006.37060546875,10.847003,10847.003 +15633,2025-03-08T22:59:30.828068-08:00,1006.3786010742188,10.83699,10836.99 +15634,2025-03-08T22:59:41.660441-08:00,1006.3761596679688,10.832373,10832.373 +15635,2025-03-08T22:59:52.509279-08:00,1006.3731079101562,10.848838,10848.838 +15636,2025-03-08T23:00:03.345062-08:00,1006.3455200195312,10.835783,10835.783 +15637,2025-03-08T23:00:14.186951-08:00,1006.3786010742188,10.841889,10841.889 +15638,2025-03-08T23:00:25.027114-08:00,1006.3654174804688,10.840163,10840.163 +15639,2025-03-08T23:00:35.866310-08:00,1006.35986328125,10.839196,10839.196 +15640,2025-03-08T23:00:46.703141-08:00,1006.3864135742188,10.836831,10836.831 +15641,2025-03-08T23:00:57.542381-08:00,1006.3796997070312,10.83924,10839.24 +15642,2025-03-08T23:01:08.373546-08:00,1006.35986328125,10.831165,10831.165 +15643,2025-03-08T23:01:19.215080-08:00,1006.3786010742188,10.841534,10841.534 +15644,2025-03-08T23:01:30.050918-08:00,1006.3521728515625,10.835838,10835.838 +15645,2025-03-08T23:01:40.893064-08:00,1006.317626953125,10.842146,10842.146 +15646,2025-03-08T23:01:51.734074-08:00,1006.3839111328125,10.84101,10841.01 +15647,2025-03-08T23:02:02.564119-08:00,1006.3640747070312,10.830045,10830.045 +15648,2025-03-08T23:02:13.399336-08:00,1006.3786010742188,10.835217,10835.217 +15649,2025-03-08T23:02:24.245072-08:00,1006.3853149414062,10.845736,10845.736 +15650,2025-03-08T23:02:35.081344-08:00,1006.391845703125,10.836272,10836.272 +15651,2025-03-08T23:02:45.926075-08:00,1006.3720092773438,10.844731,10844.731 +15652,2025-03-08T23:02:56.773353-08:00,1006.40625,10.847278,10847.278 +15653,2025-03-08T23:03:07.611068-08:00,1006.391845703125,10.837715,10837.715 +15654,2025-03-08T23:03:18.444347-08:00,1006.3587646484375,10.833279,10833.279 +15655,2025-03-08T23:03:29.287074-08:00,1006.366455078125,10.842727,10842.727 +15656,2025-03-08T23:03:40.123391-08:00,1006.37451171875,10.836317,10836.317 +15657,2025-03-08T23:03:50.972472-08:00,1006.3929443359375,10.849081,10849.081 +15658,2025-03-08T23:04:01.809565-08:00,1006.3731079101562,10.837093,10837.093 +15659,2025-03-08T23:04:12.652300-08:00,1006.381103515625,10.842735,10842.735 +15660,2025-03-08T23:04:23.491078-08:00,1006.37451171875,10.838778,10838.778 +15661,2025-03-08T23:04:34.324161-08:00,1006.3888549804688,10.833083,10833.083 +15662,2025-03-08T23:04:45.171170-08:00,1006.3347778320312,10.847009,10847.009 +15663,2025-03-08T23:04:56.003009-08:00,1006.3836059570312,10.831839,10831.839 +15664,2025-03-08T23:05:06.841196-08:00,1006.36376953125,10.838187,10838.187 +15665,2025-03-08T23:05:17.677127-08:00,1006.344970703125,10.835931,10835.931 +15666,2025-03-08T23:05:28.515078-08:00,1006.342529296875,10.837951,10837.951 +15667,2025-03-08T23:05:39.428237-08:00,1006.3937377929688,10.913159,10913.159 +15668,2025-03-08T23:05:50.267589-08:00,1006.3540649414062,10.839352,10839.352 +15669,2025-03-08T23:06:01.103238-08:00,1006.360595703125,10.835649,10835.649 +15670,2025-03-08T23:06:11.951345-08:00,1006.31982421875,10.848107,10848.107 +15671,2025-03-08T23:06:22.788593-08:00,1006.3683471679688,10.837248,10837.248 +15672,2025-03-08T23:06:33.626295-08:00,1006.3630981445312,10.837702,10837.702 +15673,2025-03-08T23:06:44.470475-08:00,1006.34326171875,10.84418,10844.18 +15674,2025-03-08T23:06:55.306901-08:00,1006.3443603515625,10.836426,10836.426 +15675,2025-03-08T23:07:06.138319-08:00,1006.339111328125,10.831418,10831.418 +15676,2025-03-08T23:07:16.984375-08:00,1006.3656005859375,10.846056,10846.056 +15677,2025-03-08T23:07:27.814573-08:00,1006.3468627929688,10.830198,10830.198 +15678,2025-03-08T23:07:38.656406-08:00,1006.3426513671875,10.841833,10841.833 +15679,2025-03-08T23:07:49.482243-08:00,1006.3426513671875,10.825837,10825.837 +15680,2025-03-08T23:08:00.326259-08:00,1006.3440551757812,10.844016,10844.016 +15681,2025-03-08T23:08:11.160242-08:00,1006.330810546875,10.833983,10833.983 +15682,2025-03-08T23:08:21.994465-08:00,1006.3186645507812,10.834223,10834.223 +15683,2025-03-08T23:08:32.843659-08:00,1006.3426513671875,10.849194,10849.194 +15684,2025-03-08T23:08:43.670241-08:00,1006.3267211914062,10.826582,10826.582 +15685,2025-03-08T23:08:54.518250-08:00,1006.2910766601562,10.848009,10848.009 +15686,2025-03-08T23:09:05.353240-08:00,1006.307861328125,10.83499,10834.99 +15687,2025-03-08T23:09:16.187448-08:00,1006.3646850585938,10.834208,10834.208 +15688,2025-03-08T23:09:27.031705-08:00,1006.3526000976562,10.844257,10844.257 +15689,2025-03-08T23:09:37.879366-08:00,1006.3641357421875,10.847661,10847.661 +15690,2025-03-08T23:09:48.715623-08:00,1006.3167114257812,10.836257,10836.257 +15691,2025-03-08T23:09:59.556242-08:00,1006.3244018554688,10.840619,10840.619 +15692,2025-03-08T23:10:10.392241-08:00,1006.30810546875,10.835999,10835.999 +15693,2025-03-08T23:10:21.229282-08:00,1006.325439453125,10.837041,10837.041 +15694,2025-03-08T23:10:32.077567-08:00,1006.3334350585938,10.848285,10848.285 +15695,2025-03-08T23:10:42.912248-08:00,1006.3027954101562,10.834681,10834.681 +15696,2025-03-08T23:10:53.744056-08:00,1006.2962646484375,10.831808,10831.808 +15697,2025-03-08T23:11:04.585509-08:00,1006.2854614257812,10.841453,10841.453 +15698,2025-03-08T23:11:15.422259-08:00,1006.2986450195312,10.83675,10836.75 +15699,2025-03-08T23:11:26.266241-08:00,1006.2589111328125,10.843982,10843.982 +15700,2025-03-08T23:11:37.102411-08:00,1006.3078002929688,10.83617,10836.17 +15701,2025-03-08T23:11:47.935505-08:00,1006.2798461914062,10.833094,10833.094 +15702,2025-03-08T23:11:58.777348-08:00,1006.25341796875,10.841843,10841.843 +15703,2025-03-08T23:12:09.614432-08:00,1006.25341796875,10.837084,10837.084 +15704,2025-03-08T23:12:20.455248-08:00,1006.2401733398438,10.840816,10840.816 +15705,2025-03-08T23:12:31.288532-08:00,1006.2614135742188,10.833284,10833.284 +15706,2025-03-08T23:12:42.126851-08:00,1006.2625122070312,10.838319,10838.319 +15707,2025-03-08T23:12:52.965238-08:00,1006.2506103515625,10.838387,10838.387 +15708,2025-03-08T23:13:03.814223-08:00,1006.2360229492188,10.848985,10848.985 +15709,2025-03-08T23:13:14.655295-08:00,1006.255859375,10.841072,10841.072 +15710,2025-03-08T23:13:25.487626-08:00,1006.2293701171875,10.832331,10832.331 +15711,2025-03-08T23:13:36.338231-08:00,1006.22412109375,10.850605,10850.605 +15712,2025-03-08T23:13:47.172402-08:00,1006.217529296875,10.834171,10834.171 +15713,2025-03-08T23:13:58.005482-08:00,1006.2373657226562,10.83308,10833.08 +15714,2025-03-08T23:14:08.848374-08:00,1006.217529296875,10.842892,10842.892 +15715,2025-03-08T23:14:19.687587-08:00,1006.22412109375,10.839213,10839.213 +15716,2025-03-08T23:14:30.523647-08:00,1006.217529296875,10.83606,10836.06 +15717,2025-03-08T23:14:41.360235-08:00,1006.217529296875,10.836588,10836.588 +15718,2025-03-08T23:14:52.197498-08:00,1006.2185668945312,10.837263,10837.263 +15719,2025-03-08T23:15:03.040223-08:00,1006.2252197265625,10.842725,10842.725 +15720,2025-03-08T23:15:13.873220-08:00,1006.192138671875,10.832997,10832.997 +15721,2025-03-08T23:15:24.707379-08:00,1006.2252197265625,10.834159,10834.159 +15722,2025-03-08T23:15:35.555249-08:00,1006.21337890625,10.84787,10847.87 +15723,2025-03-08T23:15:46.385754-08:00,1006.219970703125,10.830505,10830.505 +15724,2025-03-08T23:15:57.232245-08:00,1006.2332763671875,10.846491,10846.491 +15725,2025-03-08T23:16:08.062693-08:00,1006.2276611328125,10.830448,10830.448 +15726,2025-03-08T23:16:18.892543-08:00,1006.1959228515625,10.82985,10829.85 +15727,2025-03-08T23:16:29.741241-08:00,1006.24755859375,10.848698,10848.698 +15728,2025-03-08T23:16:40.579498-08:00,1006.2078247070312,10.838257,10838.257 +15729,2025-03-08T23:16:51.410224-08:00,1006.2224731445312,10.830726,10830.726 +15730,2025-03-08T23:17:02.256470-08:00,1006.2144775390625,10.846246,10846.246 +15731,2025-03-08T23:17:13.089383-08:00,1006.2235717773438,10.832913,10832.913 +15732,2025-03-08T23:17:23.921335-08:00,1006.2423706054688,10.831952,10831.952 +15733,2025-03-08T23:17:34.767268-08:00,1006.1959228515625,10.845933,10845.933 +15734,2025-03-08T23:17:45.596587-08:00,1006.2025756835938,10.829319,10829.319 +15735,2025-03-08T23:17:56.439161-08:00,1006.2012329101562,10.842574,10842.574 +15736,2025-03-08T23:18:07.272475-08:00,1006.2276611328125,10.833314,10833.314 +15737,2025-03-08T23:18:18.113283-08:00,1006.2290649414062,10.840808,10840.808 +15738,2025-03-08T23:18:28.956846-08:00,1006.2210693359375,10.843563,10843.563 +15739,2025-03-08T23:18:39.798241-08:00,1006.2078247070312,10.841395,10841.395 +15740,2025-03-08T23:18:50.626400-08:00,1006.2120361328125,10.828159,10828.159 +15741,2025-03-08T23:19:01.466512-08:00,1006.2185668945312,10.840112,10840.112 +15742,2025-03-08T23:19:12.305448-08:00,1006.1854858398438,10.838936,10838.936 +15743,2025-03-08T23:19:23.136245-08:00,1006.2185668945312,10.830797,10830.797 +15744,2025-03-08T23:19:33.977143-08:00,1006.205322265625,10.840898,10840.898 +15745,2025-03-08T23:19:44.813299-08:00,1006.19873046875,10.836156,10836.156 +15746,2025-03-08T23:19:55.651300-08:00,1006.2265625,10.838001,10838.001 +15747,2025-03-08T23:20:06.491511-08:00,1006.2185668945312,10.840211,10840.211 +15748,2025-03-08T23:20:17.327058-08:00,1006.1843872070312,10.835547,10835.547 +15749,2025-03-08T23:20:28.159246-08:00,1006.1976318359375,10.832188,10832.188 +15750,2025-03-08T23:20:39.006555-08:00,1006.217529296875,10.847309,10847.309 +15751,2025-03-08T23:20:49.850287-08:00,1006.2042846679688,10.843732,10843.732 +15752,2025-03-08T23:21:00.688239-08:00,1006.1976318359375,10.837952,10837.952 +15753,2025-03-08T23:21:11.530302-08:00,1006.16455078125,10.842063,10842.063 +15754,2025-03-08T23:21:22.367799-08:00,1006.171142578125,10.837497,10837.497 +15755,2025-03-08T23:21:33.199224-08:00,1006.1777954101562,10.831425,10831.425 +15756,2025-03-08T23:21:44.038246-08:00,1006.1829833984375,10.839022,10839.022 +15757,2025-03-08T23:21:54.876293-08:00,1006.171142578125,10.838047,10838.047 +15758,2025-03-08T23:22:05.706565-08:00,1006.1854858398438,10.830272,10830.272 +15759,2025-03-08T23:22:16.550628-08:00,1006.171142578125,10.844063,10844.063 +15760,2025-03-08T23:22:27.390302-08:00,1006.1721801757812,10.839674,10839.674 +15761,2025-03-08T23:22:38.217484-08:00,1006.1854858398438,10.827182,10827.182 +15762,2025-03-08T23:22:49.055519-08:00,1006.13916015625,10.838035,10838.035 +15763,2025-03-08T23:22:59.886393-08:00,1006.162841796875,10.830874,10830.874 +15764,2025-03-08T23:23:10.731248-08:00,1006.16943359375,10.844855,10844.855 +15765,2025-03-08T23:23:21.568185-08:00,1006.1837768554688,10.836937,10836.937 +15766,2025-03-08T23:23:32.400342-08:00,1006.1743774414062,10.832157,10832.157 +15767,2025-03-08T23:23:43.238244-08:00,1006.1531372070312,10.837902,10837.902 +15768,2025-03-08T23:23:54.070427-08:00,1006.1347045898438,10.832183,10832.183 +15769,2025-03-08T23:24:04.912546-08:00,1006.142333984375,10.842119,10842.119 +15770,2025-03-08T23:24:15.755450-08:00,1006.1500854492188,10.842904,10842.904 +15771,2025-03-08T23:24:26.587530-08:00,1006.15673828125,10.83208,10832.08 +15772,2025-03-08T23:24:37.432245-08:00,1006.1500854492188,10.844715,10844.715 +15773,2025-03-08T23:24:48.268224-08:00,1006.1448364257812,10.835979,10835.979 +15774,2025-03-08T23:24:59.114237-08:00,1006.1591186523438,10.846013,10846.013 +15775,2025-03-08T23:25:09.954729-08:00,1006.1525268554688,10.840492,10840.492 +15776,2025-03-08T23:25:20.790244-08:00,1006.1525268554688,10.835515,10835.515 +15777,2025-03-08T23:25:31.632236-08:00,1006.1671752929688,10.841992,10841.992 +15778,2025-03-08T23:25:42.472550-08:00,1006.155029296875,10.840314,10840.314 +15779,2025-03-08T23:25:53.320412-08:00,1006.134033203125,10.847862,10847.862 +15780,2025-03-08T23:26:04.161223-08:00,1006.1085815429688,10.840811,10840.811 +15781,2025-03-08T23:26:15.002292-08:00,1006.136474609375,10.841069,10841.069 +15782,2025-03-08T23:26:25.841529-08:00,1006.136474609375,10.839237,10839.237 +15783,2025-03-08T23:26:36.684546-08:00,1006.157470703125,10.843017,10843.017 +15784,2025-03-08T23:26:47.524241-08:00,1006.11767578125,10.839695,10839.695 +15785,2025-03-08T23:26:58.362561-08:00,1006.1375732421875,10.83832,10838.32 +15786,2025-03-08T23:27:09.205560-08:00,1006.1442260742188,10.842999,10842.999 +15787,2025-03-08T23:27:20.048456-08:00,1006.13232421875,10.842896,10842.896 +15788,2025-03-08T23:27:30.895474-08:00,1006.1532592773438,10.847018,10847.018 +15789,2025-03-08T23:27:41.734239-08:00,1006.159912109375,10.838765,10838.765 +15790,2025-03-08T23:27:52.583391-08:00,1006.1400146484375,10.849152,10849.152 +15791,2025-03-08T23:28:03.425532-08:00,1006.1190795898438,10.842141,10842.141 +15792,2025-03-08T23:28:14.261363-08:00,1006.1267700195312,10.835831,10835.831 +15793,2025-03-08T23:28:25.111513-08:00,1006.1546630859375,10.85015,10850.15 +15794,2025-03-08T23:28:35.949591-08:00,1006.1281127929688,10.838078,10838.078 +15795,2025-03-08T23:28:46.794571-08:00,1006.1017456054688,10.84498,10844.98 +15796,2025-03-08T23:28:57.635485-08:00,1006.1281127929688,10.840914,10840.914 +15797,2025-03-08T23:29:08.473374-08:00,1006.1480712890625,10.837889,10837.889 +15798,2025-03-08T23:29:19.312248-08:00,1006.149169921875,10.838874,10838.874 +15799,2025-03-08T23:29:30.149828-08:00,1006.1226806640625,10.83758,10837.58 +15800,2025-03-08T23:29:40.991218-08:00,1006.100341796875,10.84139,10841.39 +15801,2025-03-08T23:29:51.833242-08:00,1006.1281127929688,10.842024,10842.024 +15802,2025-03-08T23:30:02.678716-08:00,1006.1068725585938,10.845474,10845.474 +15803,2025-03-08T23:30:13.518071-08:00,1006.12158203125,10.839355,10839.355 +15804,2025-03-08T23:30:24.363237-08:00,1006.0926513671875,10.845166,10845.166 +15805,2025-03-08T23:30:35.206239-08:00,1006.0912475585938,10.843002,10843.002 +15806,2025-03-08T23:30:46.050706-08:00,1006.11767578125,10.844467,10844.467 +15807,2025-03-08T23:30:56.892587-08:00,1006.11767578125,10.841881,10841.881 +15808,2025-03-08T23:31:07.735288-08:00,1006.1375732421875,10.842701,10842.701 +15809,2025-03-08T23:31:18.578223-08:00,1006.0978393554688,10.842935,10842.935 +15810,2025-03-08T23:31:29.415820-08:00,1006.115234375,10.837597,10837.597 +15811,2025-03-08T23:31:40.262223-08:00,1006.12841796875,10.846403,10846.403 +15812,2025-03-08T23:31:51.112833-08:00,1006.10205078125,10.85061,10850.61 +15813,2025-03-08T23:32:01.950527-08:00,1006.1207885742188,10.837694,10837.694 +15814,2025-03-08T23:32:12.793638-08:00,1006.1525268554688,10.843111,10843.111 +15815,2025-03-08T23:32:23.646240-08:00,1006.1182861328125,10.852602,10852.602 +15816,2025-03-08T23:32:34.482874-08:00,1006.1213989257812,10.836634,10836.634 +15817,2025-03-08T23:32:45.335620-08:00,1006.1148681640625,10.852746,10852.746 +15818,2025-03-08T23:32:56.178359-08:00,1006.08447265625,10.842739,10842.739 +15819,2025-03-08T23:33:07.020244-08:00,1006.103271484375,10.841885,10841.885 +15820,2025-03-08T23:33:17.871766-08:00,1006.1151733398438,10.851522,10851.522 +15821,2025-03-08T23:33:28.709822-08:00,1006.0728759765625,10.838056,10838.056 +15822,2025-03-08T23:33:39.559416-08:00,1006.099365234375,10.849594,10849.594 +15823,2025-03-08T23:33:50.403424-08:00,1006.1300048828125,10.844008,10844.008 +15824,2025-03-08T23:34:01.248370-08:00,1006.12890625,10.844946,10844.946 +15825,2025-03-08T23:34:12.090784-08:00,1006.0853881835938,10.842414,10842.414 +15826,2025-03-08T23:34:22.930495-08:00,1006.119873046875,10.839711,10839.711 +15827,2025-03-08T23:34:33.773558-08:00,1006.0630493164062,10.843063,10843.063 +15828,2025-03-08T23:34:44.620631-08:00,1006.0884399414062,10.847073,10847.073 +15829,2025-03-08T23:34:55.464241-08:00,1006.0848999023438,10.84361,10843.61 +15830,2025-03-08T23:35:06.311767-08:00,1006.0890502929688,10.847526,10847.526 +15831,2025-03-08T23:35:17.151544-08:00,1006.0841674804688,10.839777,10839.777 +15832,2025-03-08T23:35:27.999452-08:00,1006.0841674804688,10.847908,10847.908 +15833,2025-03-08T23:35:38.847620-08:00,1006.061767578125,10.848168,10848.168 +15834,2025-03-08T23:35:49.693543-08:00,1006.0314331054688,10.845923,10845.923 +15835,2025-03-08T23:36:00.537313-08:00,1006.0687255859375,10.84377,10843.77 +15836,2025-03-08T23:36:11.386808-08:00,1006.0519409179688,10.849495,10849.495 +15837,2025-03-08T23:36:22.220575-08:00,1006.065185546875,10.833767,10833.767 +15838,2025-03-08T23:36:33.070210-08:00,1006.0337524414062,10.849635,10849.635 +15839,2025-03-08T23:36:43.909361-08:00,1006.0445556640625,10.839151,10839.151 +15840,2025-03-08T23:36:54.751393-08:00,1006.0884399414062,10.842032,10842.032 +15841,2025-03-08T23:37:05.598463-08:00,1006.1124267578125,10.84707,10847.07 +15842,2025-03-08T23:37:16.446638-08:00,1006.0758056640625,10.848175,10848.175 +15843,2025-03-08T23:37:27.282260-08:00,1006.149658203125,10.835622,10835.622 +15844,2025-03-08T23:37:38.122244-08:00,1006.1314697265625,10.839984,10839.984 +15845,2025-03-08T23:37:48.967221-08:00,1006.1220092773438,10.844977,10844.977 +15846,2025-03-08T23:37:59.808554-08:00,1006.1251831054688,10.841333,10841.333 +15847,2025-03-08T23:38:10.650559-08:00,1006.1017456054688,10.842005,10842.005 +15848,2025-03-08T23:38:21.493528-08:00,1006.1257934570312,10.842969,10842.969 +15849,2025-03-08T23:38:32.337243-08:00,1006.136474609375,10.843715,10843.715 +15850,2025-03-08T23:38:43.176735-08:00,1006.1326293945312,10.839492,10839.492 +15851,2025-03-08T23:38:54.010246-08:00,1006.1051025390625,10.833511,10833.511 +15852,2025-03-08T23:39:04.852490-08:00,1006.1356811523438,10.842244,10842.244 +15853,2025-03-08T23:39:15.688495-08:00,1006.1251831054688,10.836005,10836.005 +15854,2025-03-08T23:39:26.524239-08:00,1006.1307983398438,10.835744,10835.744 +15855,2025-03-08T23:39:37.370233-08:00,1006.1073608398438,10.845994,10845.994 +15856,2025-03-08T23:39:48.202572-08:00,1006.110107421875,10.832339,10832.339 +15857,2025-03-08T23:39:59.042245-08:00,1006.1130981445312,10.839673,10839.673 +15858,2025-03-08T23:40:09.890244-08:00,1006.1197509765625,10.847999,10847.999 +15859,2025-03-08T23:40:20.729245-08:00,1006.1503295898438,10.839001,10839.001 +15860,2025-03-08T23:40:31.578287-08:00,1006.1347045898438,10.849042,10849.042 +15861,2025-03-08T23:40:42.421552-08:00,1006.105712890625,10.843265,10843.265 +15862,2025-03-08T23:40:53.252573-08:00,1006.1415405273438,10.831021,10831.021 +15863,2025-03-08T23:41:04.100338-08:00,1006.1592407226562,10.847765,10847.765 +15864,2025-03-08T23:41:14.938680-08:00,1006.1079711914062,10.838342,10838.342 +15865,2025-03-08T23:41:25.774215-08:00,1006.13720703125,10.835535,10835.535 +15866,2025-03-08T23:41:36.605244-08:00,1006.1361083984375,10.831029,10831.029 +15867,2025-03-08T23:41:47.432456-08:00,1006.11376953125,10.827212,10827.212 +15868,2025-03-08T23:41:58.269615-08:00,1006.131103515625,10.837159,10837.159 +15869,2025-03-08T23:42:09.110573-08:00,1006.141845703125,10.840958,10840.958 +15870,2025-03-08T23:42:19.935554-08:00,1006.1129150390625,10.824981,10824.981 +15871,2025-03-08T23:42:30.772462-08:00,1006.12255859375,10.836908,10836.908 +15872,2025-03-08T23:42:41.614495-08:00,1006.126708984375,10.842033,10842.033 +15873,2025-03-08T23:42:52.458275-08:00,1006.1162719726562,10.84378,10843.78 +15874,2025-03-08T23:43:03.288834-08:00,1006.1060180664062,10.830559,10830.559 +15875,2025-03-08T23:43:14.134711-08:00,1006.095458984375,10.845877,10845.877 +15876,2025-03-08T23:43:24.971214-08:00,1006.0797729492188,10.836503,10836.503 +15877,2025-03-08T23:43:35.813377-08:00,1006.103759765625,10.842163,10842.163 +15878,2025-03-08T23:43:46.660688-08:00,1006.0858764648438,10.847311,10847.311 +15879,2025-03-08T23:43:57.493585-08:00,1006.1043701171875,10.832897,10832.897 +15880,2025-03-08T23:44:08.338292-08:00,1006.067626953125,10.844707,10844.707 +15881,2025-03-08T23:44:19.170355-08:00,1006.10595703125,10.832063,10832.063 +15882,2025-03-08T23:44:30.000678-08:00,1006.0957641601562,10.830323,10830.323 +15883,2025-03-08T23:44:40.841491-08:00,1006.0853271484375,10.840813,10840.813 +15884,2025-03-08T23:44:51.676554-08:00,1006.0684204101562,10.835063,10835.063 +15885,2025-03-08T23:45:02.515581-08:00,1006.0806274414062,10.839027,10839.027 +15886,2025-03-08T23:45:13.361543-08:00,1006.0648193359375,10.845962,10845.962 +15887,2025-03-08T23:45:24.198562-08:00,1006.0557861328125,10.837019,10837.019 +15888,2025-03-08T23:45:35.043248-08:00,1006.08642578125,10.844686,10844.686 +15889,2025-03-08T23:45:45.879037-08:00,1006.0493774414062,10.835789,10835.789 +15890,2025-03-08T23:45:56.710260-08:00,1006.046875,10.831223,10831.223 +15891,2025-03-08T23:46:07.553942-08:00,1006.037841796875,10.843682,10843.682 +15892,2025-03-08T23:46:18.384269-08:00,1006.0496215820312,10.830327,10830.327 +15893,2025-03-08T23:46:29.217831-08:00,1006.02734375,10.833562,10833.562 +15894,2025-03-08T23:46:40.055457-08:00,1006.0501708984375,10.837626,10837.626 +15895,2025-03-08T23:46:50.892244-08:00,1006.055419921875,10.836787,10836.787 +15896,2025-03-08T23:47:01.723247-08:00,1006.0595092773438,10.831003,10831.003 +15897,2025-03-08T23:47:12.557281-08:00,1006.0462646484375,10.834034,10834.034 +15898,2025-03-08T23:47:23.388235-08:00,1006.0992431640625,10.830954,10830.954 +15899,2025-03-08T23:47:34.224860-08:00,1006.0610961914062,10.836625,10836.625 +15900,2025-03-08T23:47:45.060240-08:00,1006.052001953125,10.83538,10835.38 +15901,2025-03-08T23:47:55.895244-08:00,1006.0850830078125,10.835004,10835.004 +15902,2025-03-08T23:48:06.727292-08:00,1006.0718994140625,10.832048,10832.048 +15903,2025-03-08T23:48:17.557830-08:00,1006.0682983398438,10.830538,10830.538 +15904,2025-03-08T23:48:28.400541-08:00,1006.0657958984375,10.842711,10842.711 +15905,2025-03-08T23:48:39.235232-08:00,1006.0578002929688,10.834691,10834.691 +15906,2025-03-08T23:48:50.070290-08:00,1006.0552978515625,10.835058,10835.058 +15907,2025-03-08T23:49:00.913392-08:00,1006.0817260742188,10.843102,10843.102 +15908,2025-03-08T23:49:11.752581-08:00,1006.0516967773438,10.839189,10839.189 +15909,2025-03-08T23:49:22.583230-08:00,1006.0505981445312,10.830649,10830.649 +15910,2025-03-08T23:49:33.425563-08:00,1006.0282592773438,10.842333,10842.333 +15911,2025-03-08T23:49:44.258255-08:00,1006.0532836914062,10.832692,10832.692 +15912,2025-03-08T23:49:55.088511-08:00,1006.0323486328125,10.830256,10830.256 +15913,2025-03-08T23:50:05.926248-08:00,1006.0665893554688,10.837737,10837.737 +15914,2025-03-08T23:50:16.763286-08:00,1006.044189453125,10.837038,10837.038 +15915,2025-03-08T23:50:27.595611-08:00,1006.0747680664062,10.832325,10832.325 +15916,2025-03-08T23:50:38.438695-08:00,1006.020751953125,10.843084,10843.084 +15917,2025-03-08T23:50:49.267434-08:00,1006.02734375,10.828739,10828.739 +15918,2025-03-08T23:51:00.107304-08:00,1005.99951171875,10.83987,10839.87 +15919,2025-03-08T23:51:10.945280-08:00,1006.0223388671875,10.837976,10837.976 +15920,2025-03-08T23:51:21.778239-08:00,1006.0606079101562,10.832959,10832.959 +15921,2025-03-08T23:51:32.608575-08:00,1006.0162353515625,10.830336,10830.336 +15922,2025-03-08T23:51:43.445241-08:00,1006.03466796875,10.836666,10836.666 +15923,2025-03-08T23:51:54.280244-08:00,1006.0678100585938,10.835003,10835.003 +15924,2025-03-08T23:52:05.104249-08:00,1006.0402221679688,10.824005,10824.005 +15925,2025-03-08T23:52:15.947239-08:00,1006.0245361328125,10.84299,10842.99 +15926,2025-03-08T23:52:26.784563-08:00,1006.0363159179688,10.837324,10837.324 +15927,2025-03-08T23:52:37.614240-08:00,1006.0206298828125,10.829677,10829.677 +15928,2025-03-08T23:52:48.459456-08:00,1006.0404663085938,10.845216,10845.216 +15929,2025-03-08T23:52:59.285404-08:00,1006.026123046875,10.825948,10825.948 +15930,2025-03-08T23:53:10.129426-08:00,1006.04345703125,10.844022,10844.022 +15931,2025-03-08T23:53:20.958698-08:00,1006.0525512695312,10.829272,10829.272 +15932,2025-03-08T23:53:31.790241-08:00,1006.02880859375,10.831543,10831.543 +15933,2025-03-08T23:53:42.618386-08:00,1006.022216796875,10.828145,10828.145 +15934,2025-03-08T23:53:53.455364-08:00,1006.06982421875,10.836978,10836.978 +15935,2025-03-08T23:54:04.289254-08:00,1006.0409545898438,10.83389,10833.89 +15936,2025-03-08T23:54:15.118518-08:00,1006.0409545898438,10.829264,10829.264 +15937,2025-03-08T23:54:25.951219-08:00,1005.9896850585938,10.832701,10832.701 +15938,2025-03-08T23:54:36.792246-08:00,1006.061279296875,10.841027,10841.027 +15939,2025-03-08T23:54:47.623534-08:00,1006.0136108398438,10.831288,10831.288 +15940,2025-03-08T23:54:58.456290-08:00,1006.0191650390625,10.832756,10832.756 +15941,2025-03-08T23:55:09.288314-08:00,1006.0125122070312,10.832024,10832.024 +15942,2025-03-08T23:55:20.123239-08:00,1006.0165405273438,10.834925,10834.925 +15943,2025-03-08T23:55:30.963283-08:00,1006.0075073242188,10.840044,10840.044 +15944,2025-03-08T23:55:41.798504-08:00,1006.006103515625,10.835221,10835.221 +15945,2025-03-08T23:55:52.626488-08:00,1006.02734375,10.827984,10827.984 +15946,2025-03-08T23:56:03.458196-08:00,1006.0036010742188,10.831708,10831.708 +15947,2025-03-08T23:56:14.295230-08:00,1005.97607421875,10.837034,10837.034 +15948,2025-03-08T23:56:25.127315-08:00,1005.9746704101562,10.832085,10832.085 +15949,2025-03-08T23:56:35.966003-08:00,1006.0010986328125,10.838688,10838.688 +15950,2025-03-08T23:56:46.796376-08:00,1005.9630737304688,10.830373,10830.373 +15951,2025-03-08T23:56:57.622648-08:00,1005.9696655273438,10.826272,10826.272 +15952,2025-03-08T23:57:08.458362-08:00,1005.9751586914062,10.835714,10835.714 +15953,2025-03-08T23:57:19.287664-08:00,1005.9396362304688,10.829302,10829.302 +15954,2025-03-08T23:57:30.123237-08:00,1005.9371337890625,10.835573,10835.573 +15955,2025-03-08T23:57:40.951518-08:00,1005.942626953125,10.828281,10828.281 +15956,2025-03-08T23:57:51.785499-08:00,1005.9676513671875,10.833981,10833.981 +15957,2025-03-08T23:58:02.617242-08:00,1005.979736328125,10.831743,10831.743 +15958,2025-03-08T23:58:13.449370-08:00,1005.9717407226562,10.832128,10832.128 +15959,2025-03-08T23:58:24.285404-08:00,1005.9681396484375,10.836034,10836.034 +15960,2025-03-08T23:58:35.113353-08:00,1005.97998046875,10.827949,10827.949 +15961,2025-03-08T23:58:45.944250-08:00,1005.9656372070312,10.830897,10830.897 +15962,2025-03-08T23:58:56.776552-08:00,1005.949951171875,10.832302,10832.302 +15963,2025-03-08T23:59:07.616376-08:00,1005.9407958984375,10.839824,10839.824 +15964,2025-03-08T23:59:18.449353-08:00,1005.95263671875,10.832977,10832.977 +15965,2025-03-08T23:59:29.278465-08:00,1005.9514770507812,10.829112,10829.112 +15966,2025-03-08T23:59:40.115242-08:00,1005.9423217773438,10.836777,10836.777 +15967,2025-03-08T23:59:50.959394-08:00,1005.962158203125,10.844152,10844.152 +15968,2025-03-09T00:00:01.796244-08:00,1005.901611328125,10.83685,10836.85 +15969,2025-03-09T00:00:12.630240-08:00,1005.938720703125,10.833996,10833.996 +15970,2025-03-09T00:00:23.454595-08:00,1005.91748046875,10.824355,10824.355 +15971,2025-03-09T00:00:34.292240-08:00,1005.9017944335938,10.837645,10837.645 +15972,2025-03-09T00:00:45.117546-08:00,1005.9205322265625,10.825306,10825.306 +15973,2025-03-09T00:00:55.951087-08:00,1005.9180297851562,10.833541,10833.541 +15974,2025-03-09T00:01:06.781594-08:00,1005.9246826171875,10.830507,10830.507 +15975,2025-03-09T00:01:17.610228-08:00,1005.935302734375,10.828634,10828.634 +15976,2025-03-09T00:01:28.443334-08:00,1005.9273681640625,10.833106,10833.106 +15977,2025-03-09T00:01:39.277293-08:00,1005.937744140625,10.833959,10833.959 +15978,2025-03-09T00:01:50.107240-08:00,1005.9324951171875,10.829947,10829.947 +15979,2025-03-09T00:02:00.945393-08:00,1005.9473266601562,10.838153,10838.153 +15980,2025-03-09T00:02:11.779746-08:00,1005.9198608398438,10.834353,10834.353 +15981,2025-03-09T00:02:22.602872-08:00,1005.9081420898438,10.823126,10823.126 +15982,2025-03-09T00:02:33.434219-08:00,1005.9489135742188,10.831347,10831.347 +15983,2025-03-09T00:02:44.267717-08:00,1005.9357299804688,10.833498,10833.498 +15984,2025-03-09T00:02:55.093245-08:00,1005.91748046875,10.825528,10825.528 +15985,2025-03-09T00:03:05.925315-08:00,1005.9439086914062,10.83207,10832.07 +15986,2025-03-09T00:03:16.757649-08:00,1005.887451171875,10.832334,10832.334 +15987,2025-03-09T00:03:27.588347-08:00,1005.8782958984375,10.830698,10830.698 +15988,2025-03-09T00:03:38.431214-08:00,1005.8848266601562,10.842867,10842.867 +15989,2025-03-09T00:03:49.261239-08:00,1005.9074096679688,10.830025,10830.025 +15990,2025-03-09T00:04:00.087505-08:00,1005.8931274414062,10.826266,10826.266 +15991,2025-03-09T00:04:10.913469-08:00,1005.9327392578125,10.825964,10825.964 +15992,2025-03-09T00:04:21.742081-08:00,1005.9224853515625,10.828612,10828.612 +15993,2025-03-09T00:04:32.573242-08:00,1005.91455078125,10.831161,10831.161 +15994,2025-03-09T00:04:43.403531-08:00,1005.9042358398438,10.830289,10830.289 +15995,2025-03-09T00:04:54.236212-08:00,1005.89111328125,10.832681,10832.681 +15996,2025-03-09T00:05:05.062515-08:00,1005.8886108398438,10.826303,10826.303 +15997,2025-03-09T00:05:15.893477-08:00,1005.8515625,10.830962,10830.962 +15998,2025-03-09T00:05:26.719492-08:00,1005.868896484375,10.826015,10826.015 +15999,2025-03-09T00:05:37.550534-08:00,1005.8663940429688,10.831042,10831.042 +16000,2025-03-09T00:05:48.422902-08:00,1005.8597412109375,10.872368,10872.368 +16001,2025-03-09T00:05:59.254403-08:00,1005.82861328125,10.831501,10831.501 +16002,2025-03-09T00:06:10.079463-08:00,1005.8524780273438,10.82506,10825.06 +16003,2025-03-09T00:06:20.911454-08:00,1005.8632202148438,10.831991,10831.991 +16004,2025-03-09T00:06:31.738678-08:00,1005.8540649414062,10.827224,10827.224 +16005,2025-03-09T00:06:42.576436-08:00,1005.8435668945312,10.837758,10837.758 +16006,2025-03-09T00:06:53.395705-08:00,1005.8556518554688,10.819269,10819.269 +16007,2025-03-09T00:07:04.233583-08:00,1005.8531494140625,10.837878,10837.878 +16008,2025-03-09T00:07:15.054404-08:00,1005.8624267578125,10.820821,10820.821 +16009,2025-03-09T00:07:25.889385-08:00,1005.840087890625,10.834981,10834.981 +16010,2025-03-09T00:07:36.711594-08:00,1005.8654174804688,10.822209,10822.209 +16011,2025-03-09T00:07:47.543860-08:00,1005.8760986328125,10.832266,10832.266 +16012,2025-03-09T00:07:58.369629-08:00,1005.8602905273438,10.825769,10825.769 +16013,2025-03-09T00:08:09.200398-08:00,1005.8181762695312,10.830769,10830.769 +16014,2025-03-09T00:08:20.026650-08:00,1005.8552856445312,10.826252,10826.252 +16015,2025-03-09T00:08:30.859454-08:00,1005.8607788085938,10.832804,10832.804 +16016,2025-03-09T00:08:41.681735-08:00,1005.850341796875,10.822281,10822.281 +16017,2025-03-09T00:08:52.509403-08:00,1005.8609619140625,10.827668,10827.668 +16018,2025-03-09T00:09:03.338391-08:00,1005.8624877929688,10.828988,10828.988 +16019,2025-03-09T00:09:14.171293-08:00,1005.8878173828125,10.832902,10832.902 +16020,2025-03-09T00:09:24.996430-08:00,1005.865478515625,10.825137,10825.137 +16021,2025-03-09T00:09:35.825397-08:00,1005.8406372070312,10.828967,10828.967 +16022,2025-03-09T00:09:46.659410-08:00,1005.8803100585938,10.834013,10834.013 +16023,2025-03-09T00:09:57.488589-08:00,1005.8766479492188,10.829179,10829.179 +16024,2025-03-09T00:10:08.321646-08:00,1005.862060546875,10.833057,10833.057 +16025,2025-03-09T00:10:19.147383-08:00,1005.8595581054688,10.825737,10825.737 +16026,2025-03-09T00:10:29.978407-08:00,1005.8558349609375,10.831024,10831.024 +16027,2025-03-09T00:10:40.815725-08:00,1005.8543701171875,10.837318,10837.318 +16028,2025-03-09T00:10:51.644651-08:00,1005.8309326171875,10.828926,10828.926 +16029,2025-03-09T00:11:02.472770-08:00,1005.84716796875,10.828119,10828.119 +16030,2025-03-09T00:11:13.300614-08:00,1005.84716796875,10.827844,10827.844 +16031,2025-03-09T00:11:24.131803-08:00,1005.839111328125,10.831189,10831.189 +16032,2025-03-09T00:11:34.959678-08:00,1005.8538818359375,10.827875,10827.875 +16033,2025-03-09T00:11:45.800818-08:00,1005.83154296875,10.84114,10841.14 +16034,2025-03-09T00:11:56.623391-08:00,1005.8356323242188,10.822573,10822.573 +16035,2025-03-09T00:12:07.457626-08:00,1005.8477172851562,10.834235,10834.235 +16036,2025-03-09T00:12:18.276407-08:00,1005.8368530273438,10.818781,10818.781 +16037,2025-03-09T00:12:29.107511-08:00,1005.7672119140625,10.831104,10831.104 +16038,2025-03-09T00:12:39.929397-08:00,1005.8175048828125,10.821886,10821.886 +16039,2025-03-09T00:12:50.758894-08:00,1005.7940673828125,10.829497,10829.497 +16040,2025-03-09T00:13:01.580775-08:00,1005.8270263671875,10.821881,10821.881 +16041,2025-03-09T00:13:12.416405-08:00,1005.77685546875,10.83563,10835.63 +16042,2025-03-09T00:13:23.245634-08:00,1005.7798461914062,10.829229,10829.229 +16043,2025-03-09T00:13:34.073206-08:00,1005.7930297851562,10.827572,10827.572 +16044,2025-03-09T00:13:44.899764-08:00,1005.7626342773438,10.826558,10826.558 +16045,2025-03-09T00:13:55.731374-08:00,1005.7670288085938,10.83161,10831.61 +16046,2025-03-09T00:14:06.557867-08:00,1005.7763061523438,10.826493,10826.493 +16047,2025-03-09T00:14:17.378142-08:00,1005.7884521484375,10.820275,10820.275 +16048,2025-03-09T00:14:28.214831-08:00,1005.7726440429688,10.836689,10836.689 +16049,2025-03-09T00:14:39.029402-08:00,1005.75439453125,10.814571,10814.571 +16050,2025-03-09T00:14:49.855671-08:00,1005.7650756835938,10.826269,10826.269 +16051,2025-03-09T00:15:00.680507-08:00,1005.7559204101562,10.824836,10824.836 +16052,2025-03-09T00:15:11.507251-08:00,1005.7676391601562,10.826744,10826.744 +16053,2025-03-09T00:15:22.333643-08:00,1005.7798461914062,10.826392,10826.392 +16054,2025-03-09T00:15:33.166522-08:00,1005.762939453125,10.832879,10832.879 +16055,2025-03-09T00:15:43.987734-08:00,1005.7471923828125,10.821212,10821.212 +16056,2025-03-09T00:15:54.813402-08:00,1005.7589721679688,10.825668,10825.668 +16057,2025-03-09T00:16:05.639911-08:00,1005.7091674804688,10.826509,10826.509 +16058,2025-03-09T00:16:16.474599-08:00,1005.761962890625,10.834688,10834.688 +16059,2025-03-09T00:16:27.289760-08:00,1005.7593994140625,10.815161,10815.161 +16060,2025-03-09T00:16:38.115589-08:00,1005.7568969726562,10.825829,10825.829 +16061,2025-03-09T00:16:48.943708-08:00,1005.735595703125,10.828119,10828.119 +16062,2025-03-09T00:16:59.773559-08:00,1005.7477416992188,10.829851,10829.851 +16063,2025-03-09T00:17:10.597372-08:00,1005.7320556640625,10.823813,10823.813 +16064,2025-03-09T00:17:21.430610-08:00,1005.74267578125,10.833238,10833.238 +16065,2025-03-09T00:17:32.252648-08:00,1005.7467041015625,10.822038,10822.038 +16066,2025-03-09T00:17:43.077639-08:00,1005.752197265625,10.824991,10824.991 +16067,2025-03-09T00:17:53.909549-08:00,1005.7639770507812,10.83191,10831.91 +16068,2025-03-09T00:18:04.730406-08:00,1005.748291015625,10.820857,10820.857 +16069,2025-03-09T00:18:15.558450-08:00,1005.7471313476562,10.828044,10828.044 +16070,2025-03-09T00:18:26.376376-08:00,1005.7603149414062,10.817926,10817.926 +16071,2025-03-09T00:18:37.207057-08:00,1005.7288208007812,10.830681,10830.681 +16072,2025-03-09T00:18:48.027450-08:00,1005.7288208007812,10.820393,10820.393 +16073,2025-03-09T00:18:58.847434-08:00,1005.7142333984375,10.819984,10819.984 +16074,2025-03-09T00:19:09.673401-08:00,1005.6907958984375,10.825967,10825.967 +16075,2025-03-09T00:19:20.501706-08:00,1005.7091674804688,10.828305,10828.305 +16076,2025-03-09T00:19:31.316530-08:00,1005.7435913085938,10.814824,10814.824 +16077,2025-03-09T00:19:42.141408-08:00,1005.7212524414062,10.824878,10824.878 +16078,2025-03-09T00:19:52.972485-08:00,1005.7384643554688,10.831077,10831.077 +16079,2025-03-09T00:20:03.791382-08:00,1005.7120361328125,10.818897,10818.897 +16080,2025-03-09T00:20:14.619874-08:00,1005.7216186523438,10.828492,10828.492 +16081,2025-03-09T00:20:25.444660-08:00,1005.7216186523438,10.824786,10824.786 +16082,2025-03-09T00:20:36.266523-08:00,1005.713623046875,10.821863,10821.863 +16083,2025-03-09T00:20:47.085805-08:00,1005.7454833984375,10.819282,10819.282 +16084,2025-03-09T00:20:57.905408-08:00,1005.7217407226562,10.819603,10819.603 +16085,2025-03-09T00:21:08.725467-08:00,1005.7008056640625,10.820059,10820.059 +16086,2025-03-09T00:21:19.547765-08:00,1005.6994018554688,10.822298,10822.298 +16087,2025-03-09T00:21:30.375402-08:00,1005.7257690429688,10.827637,10827.637 +16088,2025-03-09T00:21:41.197710-08:00,1005.7221069335938,10.822308,10822.308 +16089,2025-03-09T00:21:52.010745-08:00,1005.7129516601562,10.813035,10813.035 +16090,2025-03-09T00:22:02.832395-08:00,1005.727294921875,10.82165,10821.65 +16091,2025-03-09T00:22:13.648277-08:00,1005.7023315429688,10.815882,10815.882 +16092,2025-03-09T00:22:24.476019-08:00,1005.6814575195312,10.827742,10827.742 +16093,2025-03-09T00:22:35.289406-08:00,1005.719970703125,10.813387,10813.387 +16094,2025-03-09T00:22:46.120954-08:00,1005.6698608398438,10.831548,10831.548 +16095,2025-03-09T00:22:56.940894-08:00,1005.6738891601562,10.81994,10819.94 +16096,2025-03-09T00:23:07.760406-08:00,1005.7002563476562,10.819512,10819.512 +16097,2025-03-09T00:23:18.580748-08:00,1005.6581420898438,10.820342,10820.342 +16098,2025-03-09T00:23:29.397400-08:00,1005.66357421875,10.816652,10816.652 +16099,2025-03-09T00:23:40.219617-08:00,1005.6885986328125,10.822217,10822.217 +16100,2025-03-09T00:23:51.042816-08:00,1005.6596069335938,10.823199,10823.199 +16101,2025-03-09T00:24:01.857706-08:00,1005.6793823242188,10.81489,10814.89 +16102,2025-03-09T00:24:12.675404-08:00,1005.6636962890625,10.817698,10817.698 +16103,2025-03-09T00:24:23.493455-08:00,1005.682373046875,10.818051,10818.051 +16104,2025-03-09T00:24:34.316761-08:00,1005.67578125,10.823306,10823.306 +16105,2025-03-09T00:24:45.146604-08:00,1005.6732177734375,10.829843,10829.843 +16106,2025-03-09T00:24:55.960720-08:00,1005.6376342773438,10.814116,10814.116 +16107,2025-03-09T00:25:06.786646-08:00,1005.6285400390625,10.825926,10825.926 +16108,2025-03-09T00:25:17.604396-08:00,1005.6681518554688,10.81775,10817.75 +16109,2025-03-09T00:25:28.425676-08:00,1005.6520385742188,10.82128,10821.28 +16110,2025-03-09T00:25:39.240783-08:00,1005.6322631835938,10.815107,10815.107 +16111,2025-03-09T00:25:50.061395-08:00,1005.6520385742188,10.820612,10820.612 +16112,2025-03-09T00:26:00.886724-08:00,1005.64697265625,10.825329,10825.329 +16113,2025-03-09T00:26:11.703658-08:00,1005.6483764648438,10.816934,10816.934 +16114,2025-03-09T00:26:22.525403-08:00,1005.6642456054688,10.821745,10821.745 +16115,2025-03-09T00:26:33.331390-08:00,1005.615478515625,10.805987,10805.987 +16116,2025-03-09T00:26:44.159100-08:00,1005.6408081054688,10.82771,10827.71 +16117,2025-03-09T00:26:54.976487-08:00,1005.6260986328125,10.817387,10817.387 +16118,2025-03-09T00:27:16.600402-08:00,1005.6091918945312,21.623915,21623.915 +16119,2025-03-09T00:27:27.423402-08:00,1005.6224365234375,10.823,10823.0 +16120,2025-03-09T00:27:38.230778-08:00,1005.646240234375,10.807376,10807.376 +16121,2025-03-09T00:27:49.050385-08:00,1005.6107788085938,10.819607,10819.607 +16122,2025-03-09T00:27:59.860555-08:00,1005.6082153320312,10.81017,10810.17 +16123,2025-03-09T00:28:10.681145-08:00,1005.6279907226562,10.82059,10820.59 +16124,2025-03-09T00:28:21.494612-08:00,1005.6320190429688,10.813467,10813.467 +16125,2025-03-09T00:28:32.308404-08:00,1005.62548828125,10.813792,10813.792 +16126,2025-03-09T00:28:43.123418-08:00,1005.6162719726562,10.815014,10815.014 +16127,2025-03-09T00:28:53.944774-08:00,1005.6294555664062,10.821356,10821.356 +16128,2025-03-09T00:29:04.761409-08:00,1005.6085815429688,10.816635,10816.635 +16129,2025-03-09T00:29:15.586398-08:00,1005.5914306640625,10.824989,10824.989 +16130,2025-03-09T00:29:26.404743-08:00,1005.6177978515625,10.818345,10818.345 +16131,2025-03-09T00:29:37.219655-08:00,1005.5888061523438,10.814912,10814.912 +16132,2025-03-09T00:29:48.033479-08:00,1005.5968627929688,10.813824,10813.824 +16133,2025-03-09T00:29:58.846400-08:00,1005.6074829101562,10.812921,10812.921 +16134,2025-03-09T00:30:09.671880-08:00,1005.545654296875,10.82548,10825.48 +16135,2025-03-09T00:30:20.494547-08:00,1005.5892333984375,10.822667,10822.667 +16136,2025-03-09T00:30:31.311400-08:00,1005.552490234375,10.816853,10816.853 +16137,2025-03-09T00:30:42.139910-08:00,1005.613037109375,10.82851,10828.51 +16138,2025-03-09T00:30:52.946410-08:00,1005.5460205078125,10.8065,10806.5 +16139,2025-03-09T00:31:03.766381-08:00,1005.5671997070312,10.819971,10819.971 +16140,2025-03-09T00:31:14.586669-08:00,1005.5778198242188,10.820288,10820.288 +16141,2025-03-09T00:31:25.404393-08:00,1005.5870361328125,10.817724,10817.724 +16142,2025-03-09T00:31:36.221603-08:00,1005.589599609375,10.81721,10817.21 +16143,2025-03-09T00:31:47.040465-08:00,1005.5621337890625,10.818862,10818.862 +16144,2025-03-09T00:31:57.865408-08:00,1005.54345703125,10.824943,10824.943 +16145,2025-03-09T00:32:08.681461-08:00,1005.59912109375,10.816053,10816.053 +16146,2025-03-09T00:32:19.494636-08:00,1005.57275390625,10.813175,10813.175 +16147,2025-03-09T00:32:30.317672-08:00,1005.5701293945312,10.823036,10823.036 +16148,2025-03-09T00:32:41.138180-08:00,1005.5556030273438,10.820508,10820.508 +16149,2025-03-09T00:32:51.952392-08:00,1005.5665893554688,10.814212,10814.212 +16150,2025-03-09T00:33:13.587961-08:00,1005.5584106445312,21.635569,21635.569 +16151,2025-03-09T00:33:24.399404-08:00,1005.5309448242188,10.811443,10811.443 +16152,2025-03-09T00:33:35.216394-08:00,1005.5639038085938,10.81699,10816.99 +16153,2025-03-09T00:33:46.037866-08:00,1005.5745849609375,10.821472,10821.472 +16154,2025-03-09T00:33:56.858401-08:00,1005.5390625,10.820535,10820.535 +16155,2025-03-09T00:34:07.677555-08:00,1005.55078125,10.819154,10819.154 +16156,2025-03-09T00:34:18.497204-08:00,1005.531005859375,10.819649,10819.649 +16157,2025-03-09T00:34:29.307968-08:00,1005.5350952148438,10.810764,10810.764 +16158,2025-03-09T00:34:40.126686-08:00,1005.54052734375,10.818718,10818.718 +16159,2025-03-09T00:34:50.944629-08:00,1005.5537719726562,10.817943,10817.943 +16160,2025-03-09T00:35:01.760029-08:00,1005.5654907226562,10.8154,10815.4 +16161,2025-03-09T00:35:12.586936-08:00,1005.5431518554688,10.826907,10826.907 +16162,2025-03-09T00:35:23.400473-08:00,1005.5420532226562,10.813537,10813.537 +16163,2025-03-09T00:35:34.211858-08:00,1005.5471801757812,10.811385,10811.385 +16164,2025-03-09T00:35:45.027824-08:00,1005.5592041015625,10.815966,10815.966 +16165,2025-03-09T00:35:55.835758-08:00,1005.544921875,10.807934,10807.934 +16166,2025-03-09T00:36:06.649552-08:00,1005.5555419921875,10.813794,10813.794 +16167,2025-03-09T00:36:17.479483-08:00,1005.500244140625,10.829931,10829.931 +16168,2025-03-09T00:36:28.294720-08:00,1005.552978515625,10.815237,10815.237 +16169,2025-03-09T00:36:39.105691-08:00,1005.538330078125,10.810971,10810.971 +16170,2025-03-09T00:36:49.925459-08:00,1005.566162109375,10.819768,10819.768 +16171,2025-03-09T00:37:00.744473-08:00,1005.521484375,10.819014,10819.014 +16172,2025-03-09T00:37:11.561663-08:00,1005.5267333984375,10.81719,10817.19 +16173,2025-03-09T00:37:22.382832-08:00,1005.5307006835938,10.821169,10821.169 +16174,2025-03-09T00:37:33.206565-08:00,1005.4910888671875,10.823733,10823.733 +16175,2025-03-09T00:37:44.022020-08:00,1005.5083618164062,10.815455,10815.455 +16176,2025-03-09T00:37:54.842407-08:00,1005.5240478515625,10.820387,10820.387 +16177,2025-03-09T00:38:05.667824-08:00,1005.4808349609375,10.825417,10825.417 +16178,2025-03-09T00:38:16.478653-08:00,1005.5138549804688,10.810829,10810.829 +16179,2025-03-09T00:38:27.297406-08:00,1005.48486328125,10.818753,10818.753 +16180,2025-03-09T00:38:38.116413-08:00,1005.4834594726562,10.819007,10819.007 +16181,2025-03-09T00:38:48.944692-08:00,1005.4812622070312,10.828279,10828.279 +16182,2025-03-09T00:38:59.759405-08:00,1005.5021362304688,10.814713,10814.713 +16183,2025-03-09T00:39:10.573398-08:00,1005.47314453125,10.813993,10813.993 +16184,2025-03-09T00:39:21.392403-08:00,1005.479736328125,10.819005,10819.005 +16185,2025-03-09T00:39:32.214413-08:00,1005.4970092773438,10.82201,10822.01 +16186,2025-03-09T00:39:43.028745-08:00,1005.4866943359375,10.814332,10814.332 +16187,2025-03-09T00:39:53.847525-08:00,1005.46435546875,10.81878,10818.78 +16188,2025-03-09T00:40:04.657550-08:00,1005.4629516601562,10.810025,10810.025 +16189,2025-03-09T00:40:15.482014-08:00,1005.4866943359375,10.824464,10824.464 +16190,2025-03-09T00:40:26.297386-08:00,1005.4552612304688,10.815372,10815.372 +16191,2025-03-09T00:40:37.113878-08:00,1005.44091796875,10.816492,10816.492 +16192,2025-03-09T00:40:47.938918-08:00,1005.4515380859375,10.82504,10825.04 +16193,2025-03-09T00:40:58.753394-08:00,1005.4544677734375,10.814476,10814.476 +16194,2025-03-09T00:41:09.568576-08:00,1005.4386596679688,10.815182,10815.182 +16195,2025-03-09T00:41:20.390356-08:00,1005.4611206054688,10.82178,10821.78 +16196,2025-03-09T00:41:31.215458-08:00,1005.4467163085938,10.825102,10825.102 +16197,2025-03-09T00:41:42.029643-08:00,1005.46875,10.814185,10814.185 +16198,2025-03-09T00:41:52.841629-08:00,1005.4717407226562,10.811986,10811.986 +16199,2025-03-09T00:42:03.669631-08:00,1005.45703125,10.828002,10828.002 +16200,2025-03-09T00:42:14.478671-08:00,1005.43359375,10.80904,10809.04 +16201,2025-03-09T00:42:25.297398-08:00,1005.443115234375,10.818727,10818.727 +16202,2025-03-09T00:42:36.115948-08:00,1005.4603271484375,10.81855,10818.55 +16203,2025-03-09T00:42:46.938619-08:00,1005.4024047851562,10.822671,10822.671 +16204,2025-03-09T00:42:57.759392-08:00,1005.4273681640625,10.820773,10820.773 +16205,2025-03-09T00:43:08.579729-08:00,1005.4459228515625,10.820337,10820.337 +16206,2025-03-09T00:43:19.388829-08:00,1005.4353637695312,10.8091,10809.1 +16207,2025-03-09T00:43:30.208402-08:00,1005.411865234375,10.819573,10819.573 +16208,2025-03-09T00:43:41.029458-08:00,1005.4371948242188,10.821056,10821.056 +16209,2025-03-09T00:43:51.848825-08:00,1005.43310546875,10.819367,10819.367 +16210,2025-03-09T00:44:02.666402-08:00,1005.427978515625,10.817577,10817.577 +16211,2025-03-09T00:44:13.491447-08:00,1005.4176635742188,10.825045,10825.045 +16212,2025-03-09T00:44:24.306910-08:00,1005.404541015625,10.815463,10815.463 +16213,2025-03-09T00:44:35.125407-08:00,1005.4004516601562,10.818497,10818.497 +16214,2025-03-09T00:44:45.941389-08:00,1005.4124755859375,10.815982,10815.982 +16215,2025-03-09T00:44:56.760826-08:00,1005.4007568359375,10.819437,10819.437 +16216,2025-03-09T00:45:07.570760-08:00,1005.37841796875,10.809934,10809.934 +16217,2025-03-09T00:45:18.386397-08:00,1005.374755859375,10.815637,10815.637 +16218,2025-03-09T00:45:29.198615-08:00,1005.3839111328125,10.812218,10812.218 +16219,2025-03-09T00:45:40.020685-08:00,1005.361572265625,10.82207,10822.07 +16220,2025-03-09T00:45:50.828982-08:00,1005.3604736328125,10.808297,10808.297 +16221,2025-03-09T00:46:01.638664-08:00,1005.3577880859375,10.809682,10809.682 +16222,2025-03-09T00:46:12.459737-08:00,1005.3867797851562,10.821073,10821.073 +16223,2025-03-09T00:46:23.269403-08:00,1005.3790893554688,10.809666,10809.666 +16224,2025-03-09T00:46:34.088436-08:00,1005.3687744140625,10.819033,10819.033 +16225,2025-03-09T00:46:44.908884-08:00,1005.3662719726562,10.820448,10820.448 +16226,2025-03-09T00:46:55.716459-08:00,1005.3662719726562,10.807575,10807.575 +16227,2025-03-09T00:47:06.531721-08:00,1005.371337890625,10.815262,10815.262 +16228,2025-03-09T00:47:17.352538-08:00,1005.3819580078125,10.820817,10820.817 +16229,2025-03-09T00:47:28.165724-08:00,1005.33984375,10.813186,10813.186 +16230,2025-03-09T00:47:38.980809-08:00,1005.3438110351562,10.815085,10815.085 +16231,2025-03-09T00:47:49.786478-08:00,1005.3782958984375,10.805669,10805.669 +16232,2025-03-09T00:48:00.603516-08:00,1005.3690795898438,10.817038,10817.038 +16233,2025-03-09T00:48:11.412462-08:00,1005.3701782226562,10.808946,10808.946 +16234,2025-03-09T00:48:22.229934-08:00,1005.3782958984375,10.817472,10817.472 +16235,2025-03-09T00:48:33.043875-08:00,1005.33984375,10.813941,10813.941 +16236,2025-03-09T00:48:43.851388-08:00,1005.3478393554688,10.807513,10807.513 +16237,2025-03-09T00:48:54.674705-08:00,1005.37939453125,10.823317,10823.317 +16238,2025-03-09T00:49:05.487662-08:00,1005.37939453125,10.812957,10812.957 +16239,2025-03-09T00:49:16.305031-08:00,1005.37646484375,10.817369,10817.369 +16240,2025-03-09T00:49:27.122260-08:00,1005.3897094726562,10.817229,10817.229 +16241,2025-03-09T00:49:37.930392-08:00,1005.344970703125,10.808132,10808.132 +16242,2025-03-09T00:49:48.746458-08:00,1005.3618774414062,10.816066,10816.066 +16243,2025-03-09T00:49:59.560997-08:00,1005.3735961914062,10.814539,10814.539 +16244,2025-03-09T00:50:10.379397-08:00,1005.389404296875,10.8184,10818.4 +16245,2025-03-09T00:50:21.204749-08:00,1005.3853149414062,10.825352,10825.352 +16246,2025-03-09T00:50:32.022349-08:00,1005.3825073242188,10.8176,10817.6 +16247,2025-03-09T00:50:42.829674-08:00,1005.3916625976562,10.807325,10807.325 +16248,2025-03-09T00:50:53.651523-08:00,1005.3956298828125,10.821849,10821.849 +16249,2025-03-09T00:51:04.465381-08:00,1005.4176635742188,10.813858,10813.858 +16250,2025-03-09T00:51:15.279769-08:00,1005.4031372070312,10.814388,10814.388 +16251,2025-03-09T00:51:26.099677-08:00,1005.4254760742188,10.819908,10819.908 +16252,2025-03-09T00:51:36.915652-08:00,1005.4148559570312,10.815975,10815.975 +16253,2025-03-09T00:51:47.729510-08:00,1005.3990478515625,10.813858,10813.858 +16254,2025-03-09T00:51:58.546408-08:00,1005.4148559570312,10.816898,10816.898 +16255,2025-03-09T00:52:09.358689-08:00,1005.4328002929688,10.812281,10812.281 +16256,2025-03-09T00:52:20.177706-08:00,1005.4090576171875,10.819017,10819.017 +16257,2025-03-09T00:52:30.998769-08:00,1005.4115600585938,10.821063,10821.063 +16258,2025-03-09T00:52:41.815783-08:00,1005.3878173828125,10.817014,10817.014 +16259,2025-03-09T00:52:52.629112-08:00,1005.4445190429688,10.813329,10813.329 +16260,2025-03-09T00:53:03.432837-08:00,1005.4259643554688,10.803725,10803.725 +16261,2025-03-09T00:53:14.247727-08:00,1005.4298706054688,10.81489,10814.89 +16262,2025-03-09T00:53:25.061402-08:00,1005.4310302734375,10.813675,10813.675 +16263,2025-03-09T00:53:35.877463-08:00,1005.454833984375,10.816061,10816.061 +16264,2025-03-09T00:53:46.697783-08:00,1005.4349975585938,10.82032,10820.32 +16265,2025-03-09T00:53:57.512601-08:00,1005.4464111328125,10.814818,10814.818 +16266,2025-03-09T00:54:08.331404-08:00,1005.4215698242188,10.818803,10818.803 +16267,2025-03-09T00:54:19.146293-08:00,1005.396240234375,10.814889,10814.889 +16268,2025-03-09T00:54:29.962288-08:00,1005.397705078125,10.815995,10815.995 +16269,2025-03-09T00:54:40.775393-08:00,1005.4478149414062,10.813105,10813.105 +16270,2025-03-09T00:54:51.595751-08:00,1005.4306030273438,10.820358,10820.358 +16271,2025-03-09T00:55:02.415981-08:00,1005.4595336914062,10.82023,10820.23 +16272,2025-03-09T00:55:13.242874-08:00,1005.4134521484375,10.826893,10826.893 +16273,2025-03-09T00:55:24.051539-08:00,1005.4215087890625,10.808665,10808.665 +16274,2025-03-09T00:55:34.863536-08:00,1005.4581298828125,10.811997,10811.997 +16275,2025-03-09T00:55:45.681286-08:00,1005.4317016601562,10.81775,10817.75 +16276,2025-03-09T00:55:56.501458-08:00,1005.4131469726562,10.820172,10820.172 +16277,2025-03-09T00:56:07.315398-08:00,1005.45263671875,10.81394,10813.94 +16278,2025-03-09T00:56:18.137694-08:00,1005.4420166015625,10.822296,10822.296 +16279,2025-03-09T00:56:28.951404-08:00,1005.4406127929688,10.81371,10813.71 +16280,2025-03-09T00:56:39.776697-08:00,1005.4537353515625,10.825293,10825.293 +16281,2025-03-09T00:56:50.591380-08:00,1005.4551391601562,10.814683,10814.683 +16282,2025-03-09T00:57:01.415407-08:00,1005.4354858398438,10.824027,10824.027 +16283,2025-03-09T00:57:12.225648-08:00,1005.4445190429688,10.810241,10810.241 +16284,2025-03-09T00:57:23.043852-08:00,1005.4445190429688,10.818204,10818.204 +16285,2025-03-09T00:57:33.873386-08:00,1005.4472045898438,10.829534,10829.534 +16286,2025-03-09T00:57:44.687397-08:00,1005.4405517578125,10.814011,10814.011 +16287,2025-03-09T00:57:55.498500-08:00,1005.443115234375,10.811103,10811.103 +16288,2025-03-09T00:58:06.324734-08:00,1005.4573974609375,10.826234,10826.234 +16289,2025-03-09T00:58:17.132241-08:00,1005.4442138671875,10.807507,10807.507 +16290,2025-03-09T00:58:27.957397-08:00,1005.4720458984375,10.825156,10825.156 +16291,2025-03-09T00:58:38.776962-08:00,1005.4534301757812,10.819565,10819.565 +16292,2025-03-09T00:58:49.593888-08:00,1005.4534301757812,10.816926,10816.926 +16293,2025-03-09T00:59:00.420403-08:00,1005.454833984375,10.826515,10826.515 +16294,2025-03-09T00:59:11.228405-08:00,1005.4559326171875,10.808002,10808.002 +16295,2025-03-09T00:59:22.054657-08:00,1005.4307250976562,10.826252,10826.252 +16296,2025-03-09T00:59:32.874403-08:00,1005.45849609375,10.819746,10819.746 +16297,2025-03-09T00:59:43.694451-08:00,1005.425537109375,10.820048,10820.048 +16298,2025-03-09T00:59:54.514508-08:00,1005.4201049804688,10.820057,10820.057 +16299,2025-03-09T01:00:05.327727-08:00,1005.4332885742188,10.813219,10813.219 +16300,2025-03-09T01:00:16.148401-08:00,1005.4226684570312,10.820674,10820.674 +16301,2025-03-09T01:00:26.980743-08:00,1005.42919921875,10.832342,10832.342 +16302,2025-03-09T01:00:37.792334-08:00,1005.4424438476562,10.811591,10811.591 +16303,2025-03-09T01:00:48.620493-08:00,1005.42919921875,10.828159,10828.159 +16304,2025-03-09T01:00:59.441745-08:00,1005.4384155273438,10.821252,10821.252 +16305,2025-03-09T01:01:10.264458-08:00,1005.421142578125,10.822713,10822.713 +16306,2025-03-09T01:01:21.083433-08:00,1005.4068603515625,10.818975,10818.975 +16307,2025-03-09T01:01:31.910398-08:00,1005.4039306640625,10.826965,10826.965 +16308,2025-03-09T01:01:42.733402-08:00,1005.4053955078125,10.823004,10823.004 +16309,2025-03-09T01:01:53.551064-08:00,1005.4131469726562,10.817662,10817.662 +16310,2025-03-09T01:02:04.371749-08:00,1005.434326171875,10.820685,10820.685 +16311,2025-03-09T01:02:15.194449-08:00,1005.419677734375,10.8227,10822.7 +16312,2025-03-09T01:02:26.004741-08:00,1005.4566650390625,10.810292,10810.292 +16313,2025-03-09T01:02:36.826812-08:00,1005.4434204101562,10.822071,10822.071 +16314,2025-03-09T01:02:47.643398-08:00,1005.4170532226562,10.816586,10816.586 +16315,2025-03-09T01:02:58.461392-08:00,1005.38525390625,10.817994,10817.994 +16316,2025-03-09T01:03:09.284800-08:00,1005.3720092773438,10.823408,10823.408 +16317,2025-03-09T01:03:20.101406-08:00,1005.4130249023438,10.816606,10816.606 +16318,2025-03-09T01:03:30.926733-08:00,1005.365478515625,10.825327,10825.327 +16319,2025-03-09T01:03:41.735992-08:00,1005.3943481445312,10.809259,10809.259 +16320,2025-03-09T01:03:52.554400-08:00,1005.4405517578125,10.818408,10818.408 +16321,2025-03-09T01:04:03.371383-08:00,1005.4338989257812,10.816983,10816.983 +16322,2025-03-09T01:04:14.190463-08:00,1005.429931640625,10.81908,10819.08 +16323,2025-03-09T01:04:25.006039-08:00,1005.3878173828125,10.815576,10815.576 +16324,2025-03-09T01:04:35.815993-08:00,1005.416748046875,10.809954,10809.954 +16325,2025-03-09T01:04:46.630621-08:00,1005.4207763671875,10.814628,10814.628 +16326,2025-03-09T01:04:57.459757-08:00,1005.4456176757812,10.829136,10829.136 +16327,2025-03-09T01:05:08.276008-08:00,1005.4522705078125,10.816251,10816.251 +16328,2025-03-09T01:05:19.097619-08:00,1005.4060668945312,10.821611,10821.611 +16329,2025-03-09T01:05:29.909400-08:00,1005.427001953125,10.811781,10811.781 +16330,2025-03-09T01:05:40.737320-08:00,1005.3796997070312,10.82792,10827.92 +16331,2025-03-09T01:05:51.562711-08:00,1005.3954467773438,10.825391,10825.391 +16332,2025-03-09T01:06:02.376264-08:00,1005.39404296875,10.813553,10813.553 +16333,2025-03-09T01:06:13.193263-08:00,1005.4691162109375,10.816999,10816.999 +16334,2025-03-09T01:06:24.004793-08:00,1005.3701782226562,10.81153,10811.53 +16335,2025-03-09T01:06:34.821958-08:00,1005.3701782226562,10.817165,10817.165 +16336,2025-03-09T01:06:45.637709-08:00,1005.3834228515625,10.815751,10815.751 +16337,2025-03-09T01:06:56.464770-08:00,1005.3529663085938,10.827061,10827.061 +16338,2025-03-09T01:07:07.278750-08:00,1005.3386840820312,10.81398,10813.98 +16339,2025-03-09T01:07:18.092721-08:00,1005.3621826171875,10.813971,10813.971 +16340,2025-03-09T01:07:28.903872-08:00,1005.3478393554688,10.811151,10811.151 +16341,2025-03-09T01:07:39.717436-08:00,1005.348876953125,10.813564,10813.564 +16342,2025-03-09T01:07:50.536721-08:00,1005.3778686523438,10.819285,10819.285 +16343,2025-03-09T01:08:01.352717-08:00,1005.3726806640625,10.815996,10815.996 +16344,2025-03-09T01:08:12.163711-08:00,1005.360595703125,10.810994,10810.994 +16345,2025-03-09T01:08:22.985085-08:00,1005.348876953125,10.821374,10821.374 +16346,2025-03-09T01:08:33.806708-08:00,1005.360595703125,10.821623,10821.623 +16347,2025-03-09T01:08:44.615723-08:00,1005.3895263671875,10.809015,10809.015 +16348,2025-03-09T01:08:55.430285-08:00,1005.3764038085938,10.814562,10814.562 +16349,2025-03-09T01:09:06.251207-08:00,1005.3855590820312,10.820922,10820.922 +16350,2025-03-09T01:09:17.063973-08:00,1005.3855590820312,10.812766,10812.766 +16351,2025-03-09T01:09:27.886978-08:00,1005.4287719726562,10.823005,10823.005 +16352,2025-03-09T01:09:38.707238-08:00,1005.423583984375,10.82026,10820.26 +16353,2025-03-09T01:09:49.524945-08:00,1005.395751953125,10.817707,10817.707 +16354,2025-03-09T01:10:00.345948-08:00,1005.3983764648438,10.821003,10821.003 +16355,2025-03-09T01:10:11.173216-08:00,1005.4064331054688,10.827268,10827.268 +16356,2025-03-09T01:10:21.997723-08:00,1005.4064331054688,10.824507,10824.507 +16357,2025-03-09T01:10:32.824039-08:00,1005.3668212890625,10.826316,10826.316 +16358,2025-03-09T01:10:43.640144-08:00,1005.395751953125,10.816105,10816.105 +16359,2025-03-09T01:10:54.461705-08:00,1005.3836669921875,10.821561,10821.561 +16360,2025-03-09T01:11:05.287973-08:00,1005.3770141601562,10.826268,10826.268 +16361,2025-03-09T01:11:16.112718-08:00,1005.3587646484375,10.824745,10824.745 +16362,2025-03-09T01:11:26.932985-08:00,1005.35986328125,10.820267,10820.267 +16363,2025-03-09T01:11:37.753151-08:00,1005.326904296875,10.820166,10820.166 +16364,2025-03-09T01:11:48.570864-08:00,1005.3847045898438,10.817713,10817.713 +16365,2025-03-09T01:11:59.391854-08:00,1005.3795166015625,10.82099,10820.99 +16366,2025-03-09T01:12:10.214353-08:00,1005.3674926757812,10.822499,10822.499 +16367,2025-03-09T01:12:21.034727-08:00,1005.3685913085938,10.820374,10820.374 +16368,2025-03-09T01:12:31.855717-08:00,1005.3488159179688,10.82099,10820.99 +16369,2025-03-09T01:12:42.674154-08:00,1005.3488159179688,10.818437,10818.437 +16370,2025-03-09T01:12:53.495729-08:00,1005.364501953125,10.821575,10821.575 +16371,2025-03-09T01:13:04.318029-08:00,1005.37255859375,10.8223,10822.3 +16372,2025-03-09T01:13:15.135919-08:00,1005.359375,10.81789,10817.89 +16373,2025-03-09T01:13:25.956725-08:00,1005.3828125,10.820806,10820.806 +16374,2025-03-09T01:13:36.777774-08:00,1005.349853515625,10.821049,10821.049 +16375,2025-03-09T01:13:47.598064-08:00,1005.3565063476562,10.82029,10820.29 +16376,2025-03-09T01:13:58.427721-08:00,1005.3446655273438,10.829657,10829.657 +16377,2025-03-09T01:14:09.250600-08:00,1005.3604736328125,10.822879,10822.879 +16378,2025-03-09T01:14:20.063759-08:00,1005.3392333984375,10.813159,10813.159 +16379,2025-03-09T01:14:30.889787-08:00,1005.348388671875,10.826028,10826.028 +16380,2025-03-09T01:14:41.710402-08:00,1005.348388671875,10.820615,10820.615 +16381,2025-03-09T01:14:52.536721-08:00,1005.3523559570312,10.826319,10826.319 +16382,2025-03-09T01:15:03.355704-08:00,1005.3629760742188,10.818983,10818.983 +16383,2025-03-09T01:15:14.190706-08:00,1005.3655395507812,10.835002,10835.002 +16384,2025-03-09T01:15:25.004282-08:00,1005.36669921875,10.813576,10813.576 +16385,2025-03-09T01:15:35.831220-08:00,1005.3482666015625,10.826938,10826.938 +16386,2025-03-09T01:15:46.655058-08:00,1005.377197265625,10.823838,10823.838 +16387,2025-03-09T01:15:57.487012-08:00,1005.3585815429688,10.831954,10831.954 +16388,2025-03-09T01:16:08.305727-08:00,1005.36767578125,10.818715,10818.715 +16389,2025-03-09T01:16:19.122931-08:00,1005.37548828125,10.817204,10817.204 +16390,2025-03-09T01:16:29.955994-08:00,1005.3424072265625,10.833063,10833.063 +16391,2025-03-09T01:16:40.774731-08:00,1005.344970703125,10.818737,10818.737 +16392,2025-03-09T01:16:51.598807-08:00,1005.3094482421875,10.824076,10824.076 +16393,2025-03-09T01:17:02.421056-08:00,1005.3251342773438,10.822249,10822.249 +16394,2025-03-09T01:17:13.239953-08:00,1005.3306274414062,10.818897,10818.897 +16395,2025-03-09T01:17:24.068074-08:00,1005.3474731445312,10.828121,10828.121 +16396,2025-03-09T01:17:34.881712-08:00,1005.3145141601562,10.813638,10813.638 +16397,2025-03-09T01:17:45.698721-08:00,1005.3291625976562,10.817009,10817.009 +16398,2025-03-09T01:17:56.521748-08:00,1005.3291625976562,10.823027,10823.027 +16399,2025-03-09T01:18:07.347286-08:00,1005.296142578125,10.825538,10825.538 +16400,2025-03-09T01:18:18.170023-08:00,1005.3251342773438,10.822737,10822.737 +16401,2025-03-09T01:18:29.000868-08:00,1005.3118896484375,10.830845,10830.845 +16402,2025-03-09T01:18:39.815114-08:00,1005.3328247070312,10.814246,10814.246 +16403,2025-03-09T01:18:50.640725-08:00,1005.32763671875,10.825611,10825.611 +16404,2025-03-09T01:19:01.457055-08:00,1005.294677734375,10.81633,10816.33 +16405,2025-03-09T01:19:12.283716-08:00,1005.2957763671875,10.826661,10826.661 +16406,2025-03-09T01:19:23.110011-08:00,1005.3089599609375,10.826295,10826.295 +16407,2025-03-09T01:19:33.937924-08:00,1005.298583984375,10.827913,10827.913 +16408,2025-03-09T01:19:44.762055-08:00,1005.2920532226562,10.824131,10824.131 +16409,2025-03-09T01:19:55.595715-08:00,1005.3011474609375,10.83366,10833.66 +16410,2025-03-09T01:20:06.423335-08:00,1005.2904663085938,10.82762,10827.62 +16411,2025-03-09T01:20:17.244717-08:00,1005.2890625,10.821382,10821.382 +16412,2025-03-09T01:20:28.064772-08:00,1005.3062744140625,10.820055,10820.055 +16413,2025-03-09T01:20:38.895060-08:00,1005.307373046875,10.830288,10830.288 +16414,2025-03-09T01:20:49.711934-08:00,1005.30078125,10.816874,10816.874 +16415,2025-03-09T01:21:00.533727-08:00,1005.3231201171875,10.821793,10821.793 +16416,2025-03-09T01:21:11.368746-08:00,1005.2890014648438,10.835019,10835.019 +16417,2025-03-09T01:21:22.189981-08:00,1005.271728515625,10.821235,10821.235 +16418,2025-03-09T01:21:33.013062-08:00,1005.3058471679688,10.823081,10823.081 +16419,2025-03-09T01:21:43.840714-08:00,1005.2809448242188,10.827652,10827.652 +16420,2025-03-09T01:21:54.671977-08:00,1005.30322265625,10.831263,10831.263 +16421,2025-03-09T01:22:05.492594-08:00,1005.3255615234375,10.820617,10820.617 +16422,2025-03-09T01:22:16.327029-08:00,1005.2926025390625,10.834435,10834.435 +16423,2025-03-09T01:22:27.155741-08:00,1005.3148193359375,10.828712,10828.712 +16424,2025-03-09T01:22:37.979998-08:00,1005.2698364257812,10.824257,10824.257 +16425,2025-03-09T01:22:48.807883-08:00,1005.284423828125,10.827885,10827.885 +16426,2025-03-09T01:22:59.638060-08:00,1005.2910766601562,10.830177,10830.177 +16427,2025-03-09T01:23:10.458787-08:00,1005.3211059570312,10.820727,10820.727 +16428,2025-03-09T01:23:21.280859-08:00,1005.307861328125,10.822072,10822.072 +16429,2025-03-09T01:23:32.111917-08:00,1005.294677734375,10.831058,10831.058 +16430,2025-03-09T01:23:42.933964-08:00,1005.2826538085938,10.822047,10822.047 +16431,2025-03-09T01:23:53.757064-08:00,1005.2774047851562,10.8231,10823.1 +16432,2025-03-09T01:24:04.583704-08:00,1005.291748046875,10.82664,10826.64 +16433,2025-03-09T01:24:15.415302-08:00,1005.3049926757812,10.831598,10831.598 +16434,2025-03-09T01:24:26.236953-08:00,1005.2667236328125,10.821651,10821.651 +16435,2025-03-09T01:24:37.067925-08:00,1005.3088989257812,10.830972,10830.972 +16436,2025-03-09T01:24:38.092861-08:00,1005.3009643554688,1.024936,1024.936 +16437,2025-03-09T01:24:47.889712-08:00,1005.2876586914062,9.796851,9796.851 +16438,2025-03-09T01:24:58.721768-08:00,1005.2770385742188,10.832056,10832.056 +16439,2025-03-09T01:25:09.540777-08:00,1005.282470703125,10.819009,10819.009 +16440,2025-03-09T01:25:20.363723-08:00,1005.2902221679688,10.822946,10822.946 +16441,2025-03-09T01:25:31.198734-08:00,1005.2982788085938,10.835011,10835.011 +16442,2025-03-09T01:25:42.023746-08:00,1005.27294921875,10.825012,10825.012 +16443,2025-03-09T01:25:52.845161-08:00,1005.28759765625,10.821415,10821.415 +16444,2025-03-09T01:26:03.672946-08:00,1005.2743530273438,10.827785,10827.785 +16445,2025-03-09T01:26:14.498144-08:00,1005.294189453125,10.825198,10825.198 +16446,2025-03-09T01:26:25.314235-08:00,1005.2689208984375,10.816091,10816.091 +16447,2025-03-09T01:26:36.135717-08:00,1005.2689208984375,10.821482,10821.482 +16448,2025-03-09T01:26:46.957471-08:00,1005.2703247070312,10.821754,10821.754 +16449,2025-03-09T01:26:57.783917-08:00,1005.25830078125,10.826446,10826.446 +16450,2025-03-09T01:27:08.609717-08:00,1005.291259765625,10.8258,10825.8 +16451,2025-03-09T01:27:19.431022-08:00,1005.2703247070312,10.821305,10821.305 +16452,2025-03-09T01:27:30.251767-08:00,1005.28466796875,10.820745,10820.745 +16453,2025-03-09T01:27:41.082851-08:00,1005.2739868164062,10.831084,10831.084 +16454,2025-03-09T01:27:51.902915-08:00,1005.2530517578125,10.820064,10820.064 +16455,2025-03-09T01:28:02.733850-08:00,1005.2662353515625,10.830935,10830.935 +16456,2025-03-09T01:28:13.558068-08:00,1005.2398681640625,10.824218,10824.218 +16457,2025-03-09T01:28:24.376730-08:00,1005.22119140625,10.818662,10818.662 +16458,2025-03-09T01:28:35.208981-08:00,1005.2225952148438,10.832251,10832.251 +16459,2025-03-09T01:28:46.032066-08:00,1005.2357788085938,10.823085,10823.085 +16460,2025-03-09T01:28:56.859769-08:00,1005.2093505859375,10.827703,10827.703 +16461,2025-03-09T01:29:07.690717-08:00,1005.227783203125,10.830948,10830.948 +16462,2025-03-09T01:29:18.513819-08:00,1005.2225952148438,10.823102,10823.102 +16463,2025-03-09T01:29:29.342690-08:00,1005.2379760742188,10.828871,10828.871 +16464,2025-03-09T01:29:40.175205-08:00,1005.2237548828125,10.832515,10832.515 +16465,2025-03-09T01:29:51.006727-08:00,1005.2262573242188,10.831522,10831.522 +16466,2025-03-09T01:30:01.827776-08:00,1005.1984252929688,10.821049,10821.049 +16467,2025-03-09T01:30:12.660031-08:00,1005.2064208984375,10.832255,10832.255 +16468,2025-03-09T01:30:23.485715-08:00,1005.214111328125,10.825684,10825.684 +16469,2025-03-09T01:30:34.311920-08:00,1005.224853515625,10.826205,10826.205 +16470,2025-03-09T01:30:45.132334-08:00,1005.2352905273438,10.820414,10820.414 +16471,2025-03-09T01:30:55.965712-08:00,1005.22216796875,10.833378,10833.378 +16472,2025-03-09T01:31:06.784043-08:00,1005.241943359375,10.818331,10818.331 +16473,2025-03-09T01:31:17.615317-08:00,1005.214111328125,10.831274,10831.274 +16474,2025-03-09T01:31:28.435875-08:00,1005.19580078125,10.820558,10820.558 +16475,2025-03-09T01:31:39.268264-08:00,1005.2156372070312,10.832389,10832.389 +16476,2025-03-09T01:31:50.081994-08:00,1005.2181396484375,10.81373,10813.73 +16477,2025-03-09T01:32:00.900716-08:00,1005.1825561523438,10.818722,10818.722 +16478,2025-03-09T01:32:11.735296-08:00,1005.1825561523438,10.83458,10834.58 +16479,2025-03-09T01:32:22.559854-08:00,1005.1903076171875,10.824558,10824.558 +16480,2025-03-09T01:32:33.381179-08:00,1005.2100830078125,10.821325,10821.325 +16481,2025-03-09T01:32:44.203263-08:00,1005.2034301757812,10.822084,10822.084 +16482,2025-03-09T01:32:55.026242-08:00,1005.228759765625,10.822979,10822.979 +16483,2025-03-09T01:33:05.853062-08:00,1005.1825561523438,10.82682,10826.82 +16484,2025-03-09T01:33:16.673167-08:00,1005.174560546875,10.820105,10820.105 +16485,2025-03-09T01:33:27.504663-08:00,1005.20751953125,10.831496,10831.496 +16486,2025-03-09T01:33:38.336701-08:00,1005.1825561523438,10.832038,10832.038 +16487,2025-03-09T01:33:49.162296-08:00,1005.1866455078125,10.825595,10825.595 +16488,2025-03-09T01:33:59.989729-08:00,1005.18408203125,10.827433,10827.433 +16489,2025-03-09T01:34:10.813968-08:00,1005.1973266601562,10.824239,10824.239 +16490,2025-03-09T01:34:21.638755-08:00,1005.18701171875,10.824787,10824.787 +16491,2025-03-09T01:34:32.471755-08:00,1005.2003173828125,10.833,10833.0 +16492,2025-03-09T01:34:43.293183-08:00,1005.19775390625,10.821428,10821.428 +16493,2025-03-09T01:34:54.113862-08:00,1005.166259765625,10.820679,10820.679 +16494,2025-03-09T01:35:04.938962-08:00,1005.1648559570312,10.8251,10825.1 +16495,2025-03-09T01:35:15.766405-08:00,1005.190185546875,10.827443,10827.443 +16496,2025-03-09T01:35:26.596430-08:00,1005.180908203125,10.830025,10830.025 +16497,2025-03-09T01:35:37.416723-08:00,1005.191650390625,10.820293,10820.293 +16498,2025-03-09T01:35:48.248894-08:00,1005.1668090820312,10.832171,10832.171 +16499,2025-03-09T01:35:59.074003-08:00,1005.1854858398438,10.825109,10825.109 +16500,2025-03-09T01:36:09.896715-08:00,1005.1774291992188,10.822712,10822.712 +16501,2025-03-09T01:36:20.720029-08:00,1005.1749267578125,10.823314,10823.314 +16502,2025-03-09T01:36:31.543765-08:00,1005.1328125,10.823736,10823.736 +16503,2025-03-09T01:36:42.366736-08:00,1005.1592407226562,10.822971,10822.971 +16504,2025-03-09T01:36:53.190727-08:00,1005.1448364257812,10.823991,10823.991 +16505,2025-03-09T01:37:04.024281-08:00,1005.1687622070312,10.833554,10833.554 +16506,2025-03-09T01:37:14.844954-08:00,1005.1661987304688,10.820673,10820.673 +16507,2025-03-09T01:37:25.674495-08:00,1005.1556396484375,10.829541,10829.541 +16508,2025-03-09T01:37:36.494304-08:00,1005.1423950195312,10.819809,10819.809 +16509,2025-03-09T01:37:47.316284-08:00,1005.1200561523438,10.82198,10821.98 +16510,2025-03-09T01:37:58.136001-08:00,1005.1439208984375,10.819717,10819.717 +16511,2025-03-09T01:38:08.958328-08:00,1005.1351318359375,10.822327,10822.327 +16512,2025-03-09T01:38:19.789023-08:00,1005.1138916015625,10.830695,10830.695 +16513,2025-03-09T01:38:30.612035-08:00,1005.103271484375,10.823012,10823.012 +16514,2025-03-09T01:38:41.441867-08:00,1005.153564453125,10.829832,10829.832 +16515,2025-03-09T01:38:52.262766-08:00,1005.1521606445312,10.820899,10820.899 +16516,2025-03-09T01:39:03.093048-08:00,1005.1429443359375,10.830282,10830.282 +16517,2025-03-09T01:39:13.919721-08:00,1005.1195068359375,10.826673,10826.673 +16518,2025-03-09T01:39:24.745728-08:00,1005.1156005859375,10.826007,10826.007 +16519,2025-03-09T01:39:35.563719-08:00,1005.1383056640625,10.817991,10817.991 +16520,2025-03-09T01:39:46.395793-08:00,1005.115966796875,10.832074,10832.074 +16521,2025-03-09T01:39:57.218726-08:00,1005.1199951171875,10.822933,10822.933 +16522,2025-03-09T01:40:08.049060-08:00,1005.0767822265625,10.830334,10830.334 +16523,2025-03-09T01:40:18.872009-08:00,1005.1006469726562,10.822949,10822.949 +16524,2025-03-09T01:40:29.695121-08:00,1005.1046752929688,10.823112,10823.112 +16525,2025-03-09T01:40:40.515724-08:00,1005.0889282226562,10.820603,10820.603 +16526,2025-03-09T01:40:51.335614-08:00,1005.099609375,10.81989,10819.89 +16527,2025-03-09T01:41:02.167974-08:00,1005.0904541015625,10.83236,10832.36 +16528,2025-03-09T01:41:12.987726-08:00,1005.1065673828125,10.819752,10819.752 +16529,2025-03-09T01:41:34.639511-08:00,1005.0777587890625,21.651785,21651.785 +16530,2025-03-09T01:41:45.468858-08:00,1005.094970703125,10.829347,10829.347 +16531,2025-03-09T01:41:56.297945-08:00,1005.0726318359375,10.829087,10829.087 +16532,2025-03-09T01:42:07.134343-08:00,1005.0491943359375,10.836398,10836.398 +16533,2025-03-09T01:42:17.966040-08:00,1005.059814453125,10.831697,10831.697 +16534,2025-03-09T01:42:28.791112-08:00,1005.0653076171875,10.825072,10825.072 +16535,2025-03-09T01:42:39.622116-08:00,1005.09033203125,10.831004,10831.004 +16536,2025-03-09T01:42:50.444130-08:00,1005.0535888671875,10.822014,10822.014 +16537,2025-03-09T01:43:01.275226-08:00,1005.0576782226562,10.831096,10831.096 +16538,2025-03-09T01:43:12.091717-08:00,1005.05517578125,10.816491,10816.491 +16539,2025-03-09T01:43:22.927782-08:00,1005.0379638671875,10.836065,10836.065 +16540,2025-03-09T01:43:33.754701-08:00,1005.04345703125,10.826919,10826.919 +16541,2025-03-09T01:43:44.579805-08:00,1005.0474853515625,10.825104,10825.104 +16542,2025-03-09T01:43:55.405715-08:00,1005.0306396484375,10.82591,10825.91 +16543,2025-03-09T01:44:06.232072-08:00,1005.0885009765625,10.826357,10826.357 +16544,2025-03-09T01:44:17.062961-08:00,1005.06103515625,10.830889,10830.889 +16545,2025-03-09T01:44:27.883649-08:00,1005.0635986328125,10.820688,10820.688 +16546,2025-03-09T01:44:38.699981-08:00,1005.0570068359375,10.816332,10816.332 +16547,2025-03-09T01:44:49.525008-08:00,1005.0518798828125,10.825027,10825.027 +16548,2025-03-09T01:45:00.350614-08:00,1005.0416259765625,10.825606,10825.606 +16549,2025-03-09T01:45:11.168713-08:00,1005.053466796875,10.818099,10818.099 +16550,2025-03-09T01:45:21.990705-08:00,1005.0508422851562,10.821992,10821.992 +16551,2025-03-09T01:45:32.818721-08:00,1005.0274047851562,10.828016,10828.016 +16552,2025-03-09T01:45:43.636719-08:00,1005.0248413085938,10.817998,10817.998 +16553,2025-03-09T01:45:54.453790-08:00,1005.036865234375,10.817071,10817.071 +16554,2025-03-09T01:46:05.267548-08:00,1005.0486450195312,10.813758,10813.758 +16555,2025-03-09T01:46:16.093717-08:00,1005.03955078125,10.826169,10826.169 +16556,2025-03-09T01:46:26.908717-08:00,1005.01611328125,10.815,10815.0 +16557,2025-03-09T01:46:37.716918-08:00,1005.0186767578125,10.808201,10808.201 +16558,2025-03-09T01:46:48.536328-08:00,1005.0109252929688,10.81941,10819.41 +16559,2025-03-09T01:46:59.357711-08:00,1005.0387573242188,10.821383,10821.383 +16560,2025-03-09T01:47:10.165853-08:00,1005.03076171875,10.808142,10808.142 +16561,2025-03-09T01:47:20.992468-08:00,1005.0482788085938,10.826615,10826.615 +16562,2025-03-09T01:47:31.806079-08:00,1005.0234375,10.813611,10813.611 +16563,2025-03-09T01:47:42.623006-08:00,1005.0208740234375,10.816927,10816.927 +16564,2025-03-09T01:47:53.437715-08:00,1005.0220336914062,10.814709,10814.709 +16565,2025-03-09T01:48:04.259247-08:00,1005.00732421875,10.821532,10821.532 +16566,2025-03-09T01:48:15.076989-08:00,1005.0733032226562,10.817742,10817.742 +16567,2025-03-09T01:48:25.886087-08:00,1005.0418701171875,10.809098,10809.098 +16568,2025-03-09T01:48:36.710721-08:00,1005.0407104492188,10.824634,10824.634 +16569,2025-03-09T01:48:47.526024-08:00,1005.0289916992188,10.815303,10815.303 +16570,2025-03-09T01:48:58.336060-08:00,1005.0066528320312,10.810036,10810.036 +16571,2025-03-09T01:49:09.154711-08:00,1005.009521484375,10.818651,10818.651 +16572,2025-03-09T01:49:19.965784-08:00,1005.021240234375,10.811073,10811.073 +16573,2025-03-09T01:49:30.785389-08:00,1005.0187377929688,10.819605,10819.605 +16574,2025-03-09T01:49:41.593004-08:00,1005.0242309570312,10.807615,10807.615 +16575,2025-03-09T01:49:52.408804-08:00,1005.0216674804688,10.8158,10815.8 +16576,2025-03-09T01:50:03.232711-08:00,1005.0070190429688,10.823907,10823.907 +16577,2025-03-09T01:50:14.040714-08:00,1004.9967041015625,10.808003,10808.003 +16578,2025-03-09T01:50:24.858603-08:00,1005.0087280273438,10.817889,10817.889 +16579,2025-03-09T01:50:35.669705-08:00,1005.002197265625,10.811102,10811.102 +16580,2025-03-09T01:50:46.488723-08:00,1004.9849853515625,10.819018,10819.018 +16581,2025-03-09T01:50:57.302718-08:00,1004.9915771484375,10.813995,10813.995 +16582,2025-03-09T01:51:08.123068-08:00,1004.990478515625,10.82035,10820.35 +16583,2025-03-09T01:51:18.942702-08:00,1004.9784545898438,10.819634,10819.634 +16584,2025-03-09T01:51:29.751949-08:00,1004.975830078125,10.809247,10809.247 +16585,2025-03-09T01:51:40.566963-08:00,1004.9667358398438,10.815014,10815.014 +16586,2025-03-09T01:51:51.392056-08:00,1004.9534912109375,10.825093,10825.093 +16587,2025-03-09T01:52:02.208079-08:00,1004.939208984375,10.816023,10816.023 +16588,2025-03-09T01:52:13.015770-08:00,1004.9523315429688,10.807691,10807.691 +16589,2025-03-09T01:52:23.841309-08:00,1004.9852905273438,10.825539,10825.539 +16590,2025-03-09T01:52:34.651015-08:00,1004.9300537109375,10.809706,10809.706 +16591,2025-03-09T01:52:45.465790-08:00,1004.9498291015625,10.814775,10814.775 +16592,2025-03-09T01:52:56.274705-08:00,1004.9615478515625,10.808915,10808.915 +16593,2025-03-09T01:53:07.096705-08:00,1004.9326782226562,10.822,10822.0 +16594,2025-03-09T01:53:17.915702-08:00,1004.91943359375,10.818997,10818.997 +16595,2025-03-09T01:53:28.726090-08:00,1004.9103393554688,10.810388,10810.388 +16596,2025-03-09T01:53:39.534876-08:00,1004.915771484375,10.808786,10808.786 +16597,2025-03-09T01:53:50.347717-08:00,1004.9065551757812,10.812841,10812.841 +16598,2025-03-09T01:54:01.166754-08:00,1004.9054565429688,10.819037,10819.037 +16599,2025-03-09T01:54:11.982838-08:00,1004.9171752929688,10.816084,10816.084 +16600,2025-03-09T01:54:22.802714-08:00,1004.8883056640625,10.819876,10819.876 +16601,2025-03-09T01:54:33.621831-08:00,1004.88720703125,10.819117,10819.117 +16602,2025-03-09T01:54:44.445199-08:00,1004.9135131835938,10.823368,10823.368 +16603,2025-03-09T01:54:55.254861-08:00,1004.8699951171875,10.809662,10809.662 +16604,2025-03-09T01:55:06.079711-08:00,1004.8831176757812,10.82485,10824.85 +16605,2025-03-09T01:55:16.892717-08:00,1004.855712890625,10.813006,10813.006 +16606,2025-03-09T01:55:27.712926-08:00,1004.8582763671875,10.820209,10820.209 +16607,2025-03-09T01:55:38.531900-08:00,1004.8517456054688,10.818974,10818.974 +16608,2025-03-09T01:55:49.348706-08:00,1004.8768920898438,10.816806,10816.806 +16609,2025-03-09T01:56:00.168027-08:00,1004.8611450195312,10.819321,10819.321 +16610,2025-03-09T01:56:10.990101-08:00,1004.8596801757812,10.822074,10822.074 +16611,2025-03-09T01:56:21.804982-08:00,1004.85205078125,10.814881,10814.881 +16612,2025-03-09T01:56:32.617931-08:00,1004.8574829101562,10.812949,10812.949 +16613,2025-03-09T01:56:43.434716-08:00,1004.8482666015625,10.816785,10816.785 +16614,2025-03-09T01:56:54.262718-08:00,1004.8351440429688,10.828002,10828.002 +16615,2025-03-09T01:57:05.075702-08:00,1004.837646484375,10.812984,10812.984 +16616,2025-03-09T01:57:15.894615-08:00,1004.8442993164062,10.818913,10818.913 +16617,2025-03-09T01:57:26.702866-08:00,1004.8365478515625,10.808251,10808.251 +16618,2025-03-09T01:57:37.518721-08:00,1004.8087768554688,10.815855,10815.855 +16619,2025-03-09T01:57:48.339805-08:00,1004.8523559570312,10.821084,10821.084 +16620,2025-03-09T01:57:59.154627-08:00,1004.8325805664062,10.814822,10814.822 +16621,2025-03-09T01:58:09.968064-08:00,1004.8485717773438,10.813437,10813.437 +16622,2025-03-09T01:58:20.788899-08:00,1004.8485717773438,10.820835,10820.835 +16623,2025-03-09T01:58:31.604999-08:00,1004.853759765625,10.8161,10816.1 +16624,2025-03-09T01:58:42.417152-08:00,1004.8591918945312,10.812153,10812.153 +16625,2025-03-09T01:58:53.235720-08:00,1004.802490234375,10.818568,10818.568 +16626,2025-03-09T01:59:04.061941-08:00,1004.79736328125,10.826221,10826.221 +16627,2025-03-09T01:59:14.866710-08:00,1004.82373046875,10.804769,10804.769 +16628,2025-03-09T01:59:25.675825-08:00,1004.8079833984375,10.809115,10809.115 +16629,2025-03-09T01:59:36.493170-08:00,1004.793701171875,10.817345,10817.345 +16630,2025-03-09T01:59:47.317723-08:00,1004.7845458984375,10.824553,10824.553 +16631,2025-03-09T01:59:58.132725-08:00,1004.8134155273438,10.815002,10815.002 +16632,2025-03-09T03:00:08.947076-07:00,1004.8108520507812,10.814351,10814.351 +16633,2025-03-09T03:00:19.756292-07:00,1004.7764892578125,10.809216,10809.216 +16634,2025-03-09T03:00:30.574965-07:00,1004.80029296875,10.818673,10818.673 +16635,2025-03-09T03:00:41.393704-07:00,1004.80029296875,10.818739,10818.739 +16636,2025-03-09T03:00:52.217015-07:00,1004.7991333007812,10.823311,10823.311 +16637,2025-03-09T03:01:03.023161-07:00,1004.8043212890625,10.806146,10806.146 +16638,2025-03-09T03:01:13.833723-07:00,1004.8175048828125,10.810562,10810.562 +16639,2025-03-09T03:01:24.648716-07:00,1004.8306274414062,10.814993,10814.993 +16640,2025-03-09T03:01:35.468705-07:00,1004.834716796875,10.819989,10819.989 +16641,2025-03-09T03:01:46.283056-07:00,1004.7991333007812,10.814351,10814.351 +16642,2025-03-09T03:01:57.093068-07:00,1004.8111572265625,10.810012,10810.012 +16643,2025-03-09T03:02:07.908104-07:00,1004.83203125,10.815036,10815.036 +16644,2025-03-09T03:02:18.720837-07:00,1004.828369140625,10.812733,10812.733 +16645,2025-03-09T03:02:29.524716-07:00,1004.8203125,10.803879,10803.879 +16646,2025-03-09T03:02:40.340882-07:00,1004.841552734375,10.816166,10816.166 +16647,2025-03-09T03:02:51.161048-07:00,1004.8005981445312,10.820166,10820.166 +16648,2025-03-09T03:03:01.976707-07:00,1004.8323364257812,10.815659,10815.659 +16649,2025-03-09T03:03:12.791679-07:00,1004.8323364257812,10.814972,10814.972 +16650,2025-03-09T03:03:23.603950-07:00,1004.8312377929688,10.812271,10812.271 +16651,2025-03-09T03:03:34.419039-07:00,1004.8258056640625,10.815089,10815.089 +16652,2025-03-09T03:03:45.235904-07:00,1004.8074951171875,10.816865,10816.865 +16653,2025-03-09T03:03:56.053727-07:00,1004.822021484375,10.817823,10817.823 +16654,2025-03-09T03:04:06.862723-07:00,1004.7943115234375,10.808996,10808.996 +16655,2025-03-09T03:04:17.683917-07:00,1004.8392333984375,10.821194,10821.194 +16656,2025-03-09T03:04:28.498006-07:00,1004.8338012695312,10.814089,10814.089 +16657,2025-03-09T03:04:39.308573-07:00,1004.823486328125,10.810567,10810.567 +16658,2025-03-09T03:04:50.121963-07:00,1004.8023681640625,10.81339,10813.39 +16659,2025-03-09T03:05:00.930773-07:00,1004.8011474609375,10.80881,10808.81 +16660,2025-03-09T03:05:11.738709-07:00,1004.8078002929688,10.807936,10807.936 +16661,2025-03-09T03:05:22.558838-07:00,1004.8143920898438,10.820129,10820.129 +16662,2025-03-09T03:05:33.370086-07:00,1004.81298828125,10.811248,10811.248 +16663,2025-03-09T03:05:44.218208-07:00,1004.7839965820312,10.848122,10848.122 +16664,2025-03-09T03:05:55.037427-07:00,1004.7854614257812,10.819219,10819.219 +16665,2025-03-09T03:06:05.858571-07:00,1004.81689453125,10.821144,10821.144 +16666,2025-03-09T03:06:16.669714-07:00,1004.768310546875,10.811143,10811.143 +16667,2025-03-09T03:06:27.491483-07:00,1004.81689453125,10.821769,10821.769 +16668,2025-03-09T03:06:38.308059-07:00,1004.7748413085938,10.816576,10816.576 +16669,2025-03-09T03:06:49.129573-07:00,1004.7711181640625,10.821514,10821.514 +16670,2025-03-09T03:06:59.943448-07:00,1004.7854614257812,10.813875,10813.875 +16671,2025-03-09T03:07:10.764387-07:00,1004.7631225585938,10.820939,10820.939 +16672,2025-03-09T03:07:21.572774-07:00,1004.7908325195312,10.808387,10808.387 +16673,2025-03-09T03:07:32.386661-07:00,1004.748779296875,10.813887,10813.887 +16674,2025-03-09T03:07:43.205220-07:00,1004.75537109375,10.818559,10818.559 +16675,2025-03-09T03:07:54.018426-07:00,1004.7608032226562,10.813206,10813.206 +16676,2025-03-09T03:08:04.825522-07:00,1004.7828369140625,10.807096,10807.096 +16677,2025-03-09T03:08:15.641400-07:00,1004.7711181640625,10.815878,10815.878 +16678,2025-03-09T03:08:26.465019-07:00,1004.7499389648438,10.823619,10823.619 +16679,2025-03-09T03:08:37.274235-07:00,1004.7366943359375,10.809216,10809.216 +16680,2025-03-09T03:08:48.084301-07:00,1004.735595703125,10.810066,10810.066 +16681,2025-03-09T03:08:58.915339-07:00,1004.7421875,10.831038,10831.038 +16682,2025-03-09T03:09:09.722955-07:00,1004.7553100585938,10.807616,10807.616 +16683,2025-03-09T03:09:20.535240-07:00,1004.7528076171875,10.812285,10812.285 +16684,2025-03-09T03:09:31.349632-07:00,1004.7659301757812,10.814392,10814.392 +16685,2025-03-09T03:09:42.168874-07:00,1004.737060546875,10.819242,10819.242 +16686,2025-03-09T03:09:52.988652-07:00,1004.737060546875,10.819778,10819.778 +16687,2025-03-09T03:10:03.803385-07:00,1004.735595703125,10.814733,10814.733 +16688,2025-03-09T03:10:14.619290-07:00,1004.7146606445312,10.815905,10815.905 +16689,2025-03-09T03:10:25.447658-07:00,1004.723876953125,10.828368,10828.368 +16690,2025-03-09T03:10:36.260368-07:00,1004.7157592773438,10.81271,10812.71 +16691,2025-03-09T03:10:47.079513-07:00,1004.7344360351562,10.819145,10819.145 +16692,2025-03-09T03:10:57.900850-07:00,1004.7263793945312,10.821337,10821.337 +16693,2025-03-09T03:11:08.712450-07:00,1004.7263793945312,10.8116,10811.6 +16694,2025-03-09T03:11:19.539371-07:00,1004.6843872070312,10.826921,10826.921 +16695,2025-03-09T03:11:30.351337-07:00,1004.697509765625,10.811966,10811.966 +16696,2025-03-09T03:11:41.176238-07:00,1004.697509765625,10.824901,10824.901 +16697,2025-03-09T03:11:51.999312-07:00,1004.7029418945312,10.823074,10823.074 +16698,2025-03-09T03:12:02.818629-07:00,1004.6685791015625,10.819317,10819.317 +16699,2025-03-09T03:12:13.636231-07:00,1004.6949462890625,10.817602,10817.602 +16700,2025-03-09T03:12:24.452217-07:00,1004.6949462890625,10.815986,10815.986 +16701,2025-03-09T03:12:35.276484-07:00,1004.7003784179688,10.824267,10824.267 +16702,2025-03-09T03:12:46.098235-07:00,1004.672607421875,10.821751,10821.751 +16703,2025-03-09T03:12:56.913336-07:00,1004.666015625,10.815101,10815.101 +16704,2025-03-09T03:13:07.732232-07:00,1004.67919921875,10.818896,10818.896 +16705,2025-03-09T03:13:18.559363-07:00,1004.6780395507812,10.827131,10827.131 +16706,2025-03-09T03:13:29.377236-07:00,1004.6978149414062,10.817873,10817.873 +16707,2025-03-09T03:13:40.193854-07:00,1004.6780395507812,10.816618,10816.618 +16708,2025-03-09T03:13:51.009525-07:00,1004.704345703125,10.815671,10815.671 +16709,2025-03-09T03:14:01.839269-07:00,1004.662353515625,10.829744,10829.744 +16710,2025-03-09T03:14:12.665462-07:00,1004.6688842773438,10.826193,10826.193 +16711,2025-03-09T03:14:23.486232-07:00,1004.680908203125,10.82077,10820.77 +16712,2025-03-09T03:14:34.306529-07:00,1004.6716918945312,10.820297,10820.297 +16713,2025-03-09T03:14:45.122079-07:00,1004.6651611328125,10.81555,10815.55 +16714,2025-03-09T03:14:55.940471-07:00,1004.6768798828125,10.818392,10818.392 +16715,2025-03-09T03:15:06.763232-07:00,1004.6585693359375,10.822761,10822.761 +16716,2025-03-09T03:15:17.588161-07:00,1004.66259765625,10.824929,10824.929 +16717,2025-03-09T03:15:28.397282-07:00,1004.6768798828125,10.809121,10809.121 +16718,2025-03-09T03:15:39.211568-07:00,1004.656005859375,10.814286,10814.286 +16719,2025-03-09T03:15:50.032502-07:00,1004.64794921875,10.820934,10820.934 +16720,2025-03-09T03:16:00.850806-07:00,1004.6402587890625,10.818304,10818.304 +16721,2025-03-09T03:16:11.678224-07:00,1004.6493530273438,10.827418,10827.418 +16722,2025-03-09T03:16:22.487451-07:00,1004.6797485351562,10.809227,10809.227 +16723,2025-03-09T03:16:33.303478-07:00,1004.6995239257812,10.816027,10816.027 +16724,2025-03-09T03:16:44.122540-07:00,1004.6442260742188,10.819062,10819.062 +16725,2025-03-09T03:16:54.937236-07:00,1004.670654296875,10.814696,10814.696 +16726,2025-03-09T03:17:05.753302-07:00,1004.6559448242188,10.816066,10816.066 +16727,2025-03-09T03:17:16.566222-07:00,1004.670654296875,10.81292,10812.92 +16728,2025-03-09T03:17:27.384540-07:00,1004.6691284179688,10.818318,10818.318 +16729,2025-03-09T03:17:38.201340-07:00,1004.661376953125,10.8168,10816.8 +16730,2025-03-09T03:17:49.020215-07:00,1004.6599731445312,10.818875,10818.875 +16731,2025-03-09T03:17:59.841585-07:00,1004.6402587890625,10.82137,10821.37 +16732,2025-03-09T03:18:10.651523-07:00,1004.62451171875,10.809938,10809.938 +16733,2025-03-09T03:18:21.466226-07:00,1004.6456298828125,10.814703,10814.703 +16734,2025-03-09T03:18:32.275485-07:00,1004.6365356445312,10.809259,10809.259 +16735,2025-03-09T03:18:43.093459-07:00,1004.6221923828125,10.817974,10817.974 +16736,2025-03-09T03:18:53.897428-07:00,1004.6221923828125,10.803969,10803.969 +16737,2025-03-09T03:19:04.710559-07:00,1004.6299438476562,10.813131,10813.131 +16738,2025-03-09T03:19:15.526365-07:00,1004.6273193359375,10.815806,10815.806 +16739,2025-03-09T03:19:26.336286-07:00,1004.6328125,10.809921,10809.921 +16740,2025-03-09T03:19:37.147234-07:00,1004.61962890625,10.810948,10810.948 +16741,2025-03-09T03:19:47.965445-07:00,1004.5654907226562,10.818211,10818.211 +16742,2025-03-09T03:19:58.785643-07:00,1004.63134765625,10.820198,10820.198 +16743,2025-03-09T03:20:09.599474-07:00,1004.6038818359375,10.813831,10813.831 +16744,2025-03-09T03:20:20.414728-07:00,1004.58154296875,10.815254,10815.254 +16745,2025-03-09T03:20:31.224374-07:00,1004.5750122070312,10.809646,10809.646 +16746,2025-03-09T03:20:42.044550-07:00,1004.5420532226562,10.820176,10820.176 +16747,2025-03-09T03:20:52.849135-07:00,1004.5958862304688,10.804585,10804.585 +16748,2025-03-09T03:21:03.657236-07:00,1004.5750122070312,10.808101,10808.101 +16749,2025-03-09T03:21:14.475414-07:00,1004.5723266601562,10.818178,10818.178 +16750,2025-03-09T03:21:25.286480-07:00,1004.6012573242188,10.811066,10811.066 +16751,2025-03-09T03:21:36.108861-07:00,1004.599853515625,10.822381,10822.381 +16752,2025-03-09T03:21:46.922644-07:00,1004.5855712890625,10.813783,10813.783 +16753,2025-03-09T03:21:57.741235-07:00,1004.5906372070312,10.818591,10818.591 +16754,2025-03-09T03:22:08.562273-07:00,1004.56982421875,10.821038,10821.038 +16755,2025-03-09T03:22:19.376181-07:00,1004.5840454101562,10.813908,10813.908 +16756,2025-03-09T03:22:30.191237-07:00,1004.5420532226562,10.815056,10815.056 +16757,2025-03-09T03:22:41.000391-07:00,1004.5709228515625,10.809154,10809.154 +16758,2025-03-09T03:22:51.818299-07:00,1004.5617065429688,10.817908,10817.908 +16759,2025-03-09T03:23:02.629878-07:00,1004.574951171875,10.811579,10811.579 +16760,2025-03-09T03:23:13.449577-07:00,1004.574951171875,10.819699,10819.699 +16761,2025-03-09T03:23:24.260486-07:00,1004.5671997070312,10.810909,10810.909 +16762,2025-03-09T03:23:35.078241-07:00,1004.5393676757812,10.817755,10817.755 +16763,2025-03-09T03:23:45.899441-07:00,1004.548583984375,10.8212,10821.2 +16764,2025-03-09T03:23:56.711528-07:00,1004.5474853515625,10.812087,10812.087 +16765,2025-03-09T03:24:07.534235-07:00,1004.53173828125,10.822707,10822.707 +16766,2025-03-09T03:24:18.348219-07:00,1004.5303344726562,10.813984,10813.984 +16767,2025-03-09T03:24:29.158335-07:00,1004.523681640625,10.810116,10810.116 +16768,2025-03-09T03:24:39.974194-07:00,1004.5093994140625,10.815859,10815.859 +16769,2025-03-09T03:24:50.793707-07:00,1004.5565795898438,10.819513,10819.513 +16770,2025-03-09T03:25:01.602550-07:00,1004.5014038085938,10.808843,10808.843 +16771,2025-03-09T03:25:12.419451-07:00,1004.5265502929688,10.816901,10816.901 +16772,2025-03-09T03:25:23.236540-07:00,1004.51220703125,10.817089,10817.089 +16773,2025-03-09T03:25:34.058344-07:00,1004.51220703125,10.821804,10821.804 +16774,2025-03-09T03:25:44.877237-07:00,1004.5145263671875,10.818893,10818.893 +16775,2025-03-09T03:25:55.692818-07:00,1004.5108032226562,10.815581,10815.581 +16776,2025-03-09T03:26:06.519237-07:00,1004.4899291992188,10.826419,10826.419 +16777,2025-03-09T03:26:17.341291-07:00,1004.4742431640625,10.822054,10822.054 +16778,2025-03-09T03:26:28.159569-07:00,1004.462158203125,10.818278,10818.278 +16779,2025-03-09T03:26:38.980242-07:00,1004.4675903320312,10.820673,10820.673 +16780,2025-03-09T03:26:49.801302-07:00,1004.46875,10.82106,10821.06 +16781,2025-03-09T03:27:00.620784-07:00,1004.466064453125,10.819482,10819.482 +16782,2025-03-09T03:27:11.439828-07:00,1004.466064453125,10.819044,10819.044 +16783,2025-03-09T03:27:22.252356-07:00,1004.4990844726562,10.812528,10812.528 +16784,2025-03-09T03:27:33.069268-07:00,1004.4701538085938,10.816912,10816.912 +16785,2025-03-09T03:27:43.874220-07:00,1004.4335327148438,10.804952,10804.952 +16786,2025-03-09T03:27:54.695298-07:00,1004.44921875,10.821078,10821.078 +16787,2025-03-09T03:28:05.508250-07:00,1004.4533081054688,10.812952,10812.952 +16788,2025-03-09T03:28:16.329238-07:00,1004.4071655273438,10.820988,10820.988 +16789,2025-03-09T03:28:27.144741-07:00,1004.4320068359375,10.815503,10815.503 +16790,2025-03-09T03:28:37.969599-07:00,1004.416259765625,10.824858,10824.858 +16791,2025-03-09T03:28:48.784227-07:00,1004.417724609375,10.814628,10814.628 +16792,2025-03-09T03:28:59.599444-07:00,1004.4375,10.815217,10815.217 +16793,2025-03-09T03:29:10.418847-07:00,1004.430908203125,10.819403,10819.403 +16794,2025-03-09T03:29:21.238477-07:00,1004.417724609375,10.81963,10819.63 +16795,2025-03-09T03:29:32.065825-07:00,1004.4111938476562,10.827348,10827.348 +16796,2025-03-09T03:29:42.882344-07:00,1004.416259765625,10.816519,10816.519 +16797,2025-03-09T03:29:53.688285-07:00,1004.430908203125,10.805941,10805.941 +16798,2025-03-09T03:30:04.510494-07:00,1004.4151611328125,10.822209,10822.209 +16799,2025-03-09T03:30:15.331518-07:00,1004.4268798828125,10.821024,10821.024 +16800,2025-03-09T03:30:26.150234-07:00,1004.4202880859375,10.818716,10818.716 +16801,2025-03-09T03:30:36.966234-07:00,1004.41259765625,10.816,10816.0 +16802,2025-03-09T03:30:47.772225-07:00,1004.4110717773438,10.805991,10805.991 +16803,2025-03-09T03:30:58.592888-07:00,1004.4296875,10.820663,10820.663 +16804,2025-03-09T03:31:09.409861-07:00,1004.4220581054688,10.816973,10816.973 +16805,2025-03-09T03:31:20.225101-07:00,1004.408935546875,10.81524,10815.24 +16806,2025-03-09T03:31:31.037635-07:00,1004.4165649414062,10.812534,10812.534 +16807,2025-03-09T03:31:41.863876-07:00,1004.3876342773438,10.826241,10826.241 +16808,2025-03-09T03:31:52.675232-07:00,1004.3942260742188,10.811356,10811.356 +16809,2025-03-09T03:32:03.488278-07:00,1004.3800048828125,10.813046,10813.046 +16810,2025-03-09T03:32:14.303238-07:00,1004.4007568359375,10.81496,10814.96 +16811,2025-03-09T03:32:25.127550-07:00,1004.3850708007812,10.824312,10824.312 +16812,2025-03-09T03:32:35.947481-07:00,1004.3652954101562,10.819931,10819.931 +16813,2025-03-09T03:32:46.757436-07:00,1004.3429565429688,10.809955,10809.955 +16814,2025-03-09T03:32:57.578102-07:00,1004.356201171875,10.820666,10820.666 +16815,2025-03-09T03:33:08.393707-07:00,1004.3353271484375,10.815605,10815.605 +16816,2025-03-09T03:33:19.196774-07:00,1004.356201171875,10.803067,10803.067 +16817,2025-03-09T03:33:30.016230-07:00,1004.36669921875,10.819456,10819.456 +16818,2025-03-09T03:33:40.841475-07:00,1004.369384765625,10.825245,10825.245 +16819,2025-03-09T03:33:51.656559-07:00,1004.3535766601562,10.815084,10815.084 +16820,2025-03-09T03:34:02.477229-07:00,1004.3535766601562,10.82067,10820.67 +16821,2025-03-09T03:34:13.292224-07:00,1004.373291015625,10.814995,10814.995 +16822,2025-03-09T03:34:24.109295-07:00,1004.3404541015625,10.817071,10817.071 +16823,2025-03-09T03:34:34.921489-07:00,1004.3535766601562,10.812194,10812.194 +16824,2025-03-09T03:34:45.742236-07:00,1004.3378295898438,10.820747,10820.747 +16825,2025-03-09T03:34:56.562345-07:00,1004.3367309570312,10.820109,10820.109 +16826,2025-03-09T03:35:07.384198-07:00,1004.3378295898438,10.821853,10821.853 +16827,2025-03-09T03:35:18.198230-07:00,1004.3378295898438,10.814032,10814.032 +16828,2025-03-09T03:35:29.017226-07:00,1004.34326171875,10.818996,10818.996 +16829,2025-03-09T03:35:39.836337-07:00,1004.3275146484375,10.819111,10819.111 +16830,2025-03-09T03:35:50.657229-07:00,1004.3457641601562,10.820892,10820.892 +16831,2025-03-09T03:36:01.467510-07:00,1004.311767578125,10.810281,10810.281 +16832,2025-03-09T03:36:12.291483-07:00,1004.3392333984375,10.823973,10823.973 +16833,2025-03-09T03:36:23.103514-07:00,1004.318359375,10.812031,10812.031 +16834,2025-03-09T03:36:33.917569-07:00,1004.3643798828125,10.814055,10814.055 +16835,2025-03-09T03:36:44.724360-07:00,1004.2734375,10.806791,10806.791 +16836,2025-03-09T03:36:55.542230-07:00,1004.310302734375,10.81787,10817.87 +16837,2025-03-09T03:37:06.365703-07:00,1004.2894287109375,10.823473,10823.473 +16838,2025-03-09T03:37:17.179685-07:00,1004.28173828125,10.813982,10813.982 +16839,2025-03-09T03:37:27.997480-07:00,1004.29345703125,10.817795,10817.795 +16840,2025-03-09T03:37:38.823311-07:00,1004.2737426757812,10.825831,10825.831 +16841,2025-03-09T03:37:49.635548-07:00,1004.26708984375,10.812237,10812.237 +16842,2025-03-09T03:38:00.446795-07:00,1004.2803344726562,10.811247,10811.247 +16843,2025-03-09T03:38:11.267463-07:00,1004.2725830078125,10.820668,10820.668 +16844,2025-03-09T03:38:22.075280-07:00,1004.2842407226562,10.807817,10807.817 +16845,2025-03-09T03:38:32.890232-07:00,1004.2791137695312,10.814952,10814.952 +16846,2025-03-09T03:38:43.704954-07:00,1004.2896728515625,10.814722,10814.722 +16847,2025-03-09T03:38:54.525226-07:00,1004.27001953125,10.820272,10820.272 +16848,2025-03-09T03:39:05.341226-07:00,1004.263427734375,10.816,10816.0 +16849,2025-03-09T03:39:16.153721-07:00,1004.2896728515625,10.812495,10812.495 +16850,2025-03-09T03:39:26.969725-07:00,1004.2462768554688,10.816004,10816.004 +16851,2025-03-09T03:39:37.778283-07:00,1004.2462768554688,10.808558,10808.558 +16852,2025-03-09T03:39:48.587743-07:00,1004.2739868164062,10.80946,10809.46 +16853,2025-03-09T03:39:59.392439-07:00,1004.279052734375,10.804696,10804.696 +16854,2025-03-09T03:40:10.209467-07:00,1004.2450561523438,10.817028,10817.028 +16855,2025-03-09T03:40:21.018827-07:00,1004.2845458984375,10.80936,10809.36 +16856,2025-03-09T03:40:31.829405-07:00,1004.26220703125,10.810578,10810.578 +16857,2025-03-09T03:40:42.655437-07:00,1004.255615234375,10.826032,10826.032 +16858,2025-03-09T03:40:53.460427-07:00,1004.2896728515625,10.80499,10804.99 +16859,2025-03-09T03:41:04.280314-07:00,1004.281982421875,10.819887,10819.887 +16860,2025-03-09T03:41:15.092229-07:00,1004.2662353515625,10.811915,10811.915 +16861,2025-03-09T03:41:25.906521-07:00,1004.275390625,10.814292,10814.292 +16862,2025-03-09T03:41:36.721547-07:00,1004.26220703125,10.815026,10815.026 +16863,2025-03-09T03:41:47.530450-07:00,1004.2713012695312,10.808903,10808.903 +16864,2025-03-09T03:41:58.345786-07:00,1004.243896484375,10.815336,10815.336 +16865,2025-03-09T03:42:09.154086-07:00,1004.243896484375,10.8083,10808.3 +16866,2025-03-09T03:42:19.964474-07:00,1004.26220703125,10.810388,10810.388 +16867,2025-03-09T03:42:30.772540-07:00,1004.23583984375,10.808066,10808.066 +16868,2025-03-09T03:42:41.587289-07:00,1004.2636108398438,10.814749,10814.749 +16869,2025-03-09T03:42:52.397306-07:00,1004.2123413085938,10.810017,10810.017 +16870,2025-03-09T03:43:03.215235-07:00,1004.2178344726562,10.817929,10817.929 +16871,2025-03-09T03:43:14.031659-07:00,1004.2178344726562,10.816424,10816.424 +16872,2025-03-09T03:43:24.845751-07:00,1004.2047119140625,10.814092,10814.092 +16873,2025-03-09T03:43:35.656218-07:00,1004.1981201171875,10.810467,10810.467 +16874,2025-03-09T03:43:46.470544-07:00,1004.1900024414062,10.814326,10814.326 +16875,2025-03-09T03:43:57.273269-07:00,1004.2229614257812,10.802725,10802.725 +16876,2025-03-09T03:44:08.088542-07:00,1004.2349853515625,10.815273,10815.273 +16877,2025-03-09T03:44:18.890211-07:00,1004.2020263671875,10.801669,10801.669 +16878,2025-03-09T03:44:29.711559-07:00,1004.2086181640625,10.821348,10821.348 +16879,2025-03-09T03:44:40.514946-07:00,1004.2284545898438,10.803387,10803.387 +16880,2025-03-09T03:44:51.329282-07:00,1004.2335205078125,10.814336,10814.336 +16881,2025-03-09T03:45:02.143569-07:00,1004.2257690429688,10.814287,10814.287 +16882,2025-03-09T03:45:12.951612-07:00,1004.224365234375,10.808043,10808.043 +16883,2025-03-09T03:45:23.765502-07:00,1004.2521362304688,10.81389,10813.89 +16884,2025-03-09T03:45:34.581098-07:00,1004.2034301757812,10.815596,10815.596 +16885,2025-03-09T03:45:45.397225-07:00,1004.2086181640625,10.816127,10816.127 +16886,2025-03-09T03:45:56.205279-07:00,1004.2217407226562,10.808054,10808.054 +16887,2025-03-09T03:46:07.019487-07:00,1004.1796875,10.814208,10814.208 +16888,2025-03-09T03:46:17.840277-07:00,1004.1954956054688,10.82079,10820.79 +16889,2025-03-09T03:46:28.656709-07:00,1004.2206420898438,10.816432,10816.432 +16890,2025-03-09T03:46:39.465294-07:00,1004.21923828125,10.808585,10808.585 +16891,2025-03-09T03:46:50.273302-07:00,1004.204833984375,10.808008,10808.008 +16892,2025-03-09T03:47:01.094512-07:00,1004.244384765625,10.82121,10821.21 +16893,2025-03-09T03:47:11.901220-07:00,1004.2022705078125,10.806708,10806.708 +16894,2025-03-09T03:47:22.722819-07:00,1004.1810913085938,10.821599,10821.599 +16895,2025-03-09T03:47:33.524824-07:00,1004.2549438476562,10.802005,10802.005 +16896,2025-03-09T03:47:44.335510-07:00,1004.2271728515625,10.810686,10810.686 +16897,2025-03-09T03:47:55.154230-07:00,1004.1913452148438,10.81872,10818.72 +16898,2025-03-09T03:48:05.961278-07:00,1004.2523193359375,10.807048,10807.048 +16899,2025-03-09T03:48:16.765281-07:00,1004.2100219726562,10.804003,10804.003 +16900,2025-03-09T03:48:27.582255-07:00,1004.2373657226562,10.816974,10816.974 +16901,2025-03-09T03:48:38.397581-07:00,1004.2073364257812,10.815326,10815.326 +16902,2025-03-09T03:48:49.206344-07:00,1004.166748046875,10.808763,10808.763 +16903,2025-03-09T03:49:00.006818-07:00,1004.1810913085938,10.800474,10800.474 +16904,2025-03-09T03:49:10.820308-07:00,1004.1942138671875,10.81349,10813.49 +16905,2025-03-09T03:49:21.630639-07:00,1004.1904907226562,10.810331,10810.331 +16906,2025-03-09T03:49:32.446594-07:00,1004.2047729492188,10.815955,10815.955 +16907,2025-03-09T03:49:43.251218-07:00,1004.178466796875,10.804624,10804.624 +16908,2025-03-09T03:49:54.065506-07:00,1004.1378173828125,10.814288,10814.288 +16909,2025-03-09T03:50:04.884239-07:00,1004.1707763671875,10.818733,10818.733 +16910,2025-03-09T03:50:15.701225-07:00,1004.1626586914062,10.816986,10816.986 +16911,2025-03-09T03:50:26.514222-07:00,1004.1812744140625,10.812997,10812.997 +16912,2025-03-09T03:50:37.329955-07:00,1004.1417846679688,10.815733,10815.733 +16913,2025-03-09T03:50:48.133671-07:00,1004.15234375,10.803716,10803.716 +16914,2025-03-09T03:50:58.948223-07:00,1004.145751953125,10.814552,10814.552 +16915,2025-03-09T03:51:09.750670-07:00,1004.14697265625,10.802447,10802.447 +16916,2025-03-09T03:51:20.560336-07:00,1004.16015625,10.809666,10809.666 +16917,2025-03-09T03:51:31.376219-07:00,1004.1443481445312,10.815883,10815.883 +16918,2025-03-09T03:51:42.188619-07:00,1004.1234130859375,10.8124,10812.4 +16919,2025-03-09T03:51:53.005034-07:00,1004.1681518554688,10.816415,10816.415 +16920,2025-03-09T03:52:03.806412-07:00,1004.17724609375,10.801378,10801.378 +16921,2025-03-09T03:52:14.612559-07:00,1004.15234375,10.806147,10806.147 +16922,2025-03-09T03:52:25.424958-07:00,1004.189208984375,10.812399,10812.399 +16923,2025-03-09T03:52:36.235469-07:00,1004.1681518554688,10.810511,10810.511 +16924,2025-03-09T03:52:47.038579-07:00,1004.1537475585938,10.80311,10803.11 +16925,2025-03-09T03:52:57.850271-07:00,1004.1785888671875,10.811692,10811.692 +16926,2025-03-09T03:53:08.667236-07:00,1004.1486206054688,10.816965,10816.965 +16927,2025-03-09T03:53:19.482014-07:00,1004.149658203125,10.814778,10814.778 +16928,2025-03-09T03:53:30.286786-07:00,1004.1300048828125,10.804772,10804.772 +16929,2025-03-09T03:53:41.100005-07:00,1004.1207885742188,10.813219,10813.219 +16930,2025-03-09T03:53:51.907226-07:00,1004.135498046875,10.807221,10807.221 +16931,2025-03-09T03:54:02.722522-07:00,1004.1537475585938,10.815296,10815.296 +16932,2025-03-09T03:54:13.532358-07:00,1004.1537475585938,10.809836,10809.836 +16933,2025-03-09T03:54:24.330227-07:00,1004.139404296875,10.797869,10797.869 +16934,2025-03-09T03:54:35.143231-07:00,1004.126220703125,10.813004,10813.004 +16935,2025-03-09T03:54:45.951434-07:00,1004.1459350585938,10.808203,10808.203 +16936,2025-03-09T03:54:56.761120-07:00,1004.1448364257812,10.809686,10809.686 +16937,2025-03-09T03:55:07.568811-07:00,1004.1317138671875,10.807691,10807.691 +16938,2025-03-09T03:55:18.375137-07:00,1004.1170043945312,10.806326,10806.326 +16939,2025-03-09T03:55:29.187230-07:00,1004.0947875976562,10.812093,10812.093 +16940,2025-03-09T03:55:39.997265-07:00,1004.1356201171875,10.810035,10810.035 +16941,2025-03-09T03:55:50.817311-07:00,1004.1079711914062,10.820046,10820.046 +16942,2025-03-09T03:56:01.634583-07:00,1004.0830688476562,10.817272,10817.272 +16943,2025-03-09T03:56:12.435554-07:00,1004.0935668945312,10.800971,10800.971 +16944,2025-03-09T03:56:23.251293-07:00,1004.1001586914062,10.815739,10815.739 +16945,2025-03-09T03:56:34.060482-07:00,1004.114501953125,10.809189,10809.189 +16946,2025-03-09T03:56:44.881220-07:00,1004.0384521484375,10.820738,10820.738 +16947,2025-03-09T03:56:55.687215-07:00,1004.106689453125,10.805995,10805.995 +16948,2025-03-09T03:57:06.497450-07:00,1004.064697265625,10.810235,10810.235 +16949,2025-03-09T03:57:17.318243-07:00,1004.0910034179688,10.820793,10820.793 +16950,2025-03-09T03:57:28.121569-07:00,1004.06982421875,10.803326,10803.326 +16951,2025-03-09T03:57:38.942213-07:00,1004.1015625,10.820644,10820.644 +16952,2025-03-09T03:57:49.746262-07:00,1004.094970703125,10.804049,10804.049 +16953,2025-03-09T03:58:00.555228-07:00,1004.0738525390625,10.808966,10808.966 +16954,2025-03-09T03:58:11.357495-07:00,1004.0606079101562,10.802267,10802.267 +16955,2025-03-09T03:58:22.161214-07:00,1004.0884399414062,10.803719,10803.719 +16956,2025-03-09T03:58:32.969783-07:00,1004.0935668945312,10.808569,10808.569 +16957,2025-03-09T03:58:43.777457-07:00,1004.106689453125,10.807674,10807.674 +16958,2025-03-09T03:58:54.587044-07:00,1004.0661010742188,10.809587,10809.587 +16959,2025-03-09T03:59:05.402590-07:00,1004.07666015625,10.815546,10815.546 +16960,2025-03-09T03:59:16.208366-07:00,1004.07666015625,10.805776,10805.776 +16961,2025-03-09T03:59:27.016234-07:00,1004.0843505859375,10.807868,10807.868 +16962,2025-03-09T03:59:37.829449-07:00,1004.08984375,10.813215,10813.215 +16963,2025-03-09T03:59:48.636220-07:00,1004.081787109375,10.806771,10806.771 +16964,2025-03-09T03:59:59.453368-07:00,1004.068603515625,10.817148,10817.148 +16965,2025-03-09T04:00:10.267496-07:00,1004.08837890625,10.814128,10814.128 +16966,2025-03-09T04:00:21.076527-07:00,1004.100341796875,10.809031,10809.031 +16967,2025-03-09T04:00:31.889650-07:00,1004.087158203125,10.813123,10813.123 +16968,2025-03-09T04:00:42.691569-07:00,1004.0857543945312,10.801919,10801.919 +16969,2025-03-09T04:00:53.509233-07:00,1004.0845947265625,10.817664,10817.664 +16970,2025-03-09T04:01:04.323413-07:00,1004.098876953125,10.81418,10814.18 +16971,2025-03-09T04:01:15.142642-07:00,1004.1398315429688,10.819229,10819.229 +16972,2025-03-09T04:01:25.952239-07:00,1004.0582885742188,10.809597,10809.597 +16973,2025-03-09T04:01:36.758183-07:00,1004.0831298828125,10.805944,10805.944 +16974,2025-03-09T04:01:47.569219-07:00,1004.1160888671875,10.811036,10811.036 +16975,2025-03-09T04:01:58.373347-07:00,1004.0765380859375,10.804128,10804.128 +16976,2025-03-09T04:02:09.183213-07:00,1004.088623046875,10.809866,10809.866 +16977,2025-03-09T04:02:19.992474-07:00,1004.0677490234375,10.809261,10809.261 +16978,2025-03-09T04:02:30.807236-07:00,1004.0531005859375,10.814762,10814.762 +16979,2025-03-09T04:02:41.617522-07:00,1004.0662231445312,10.810286,10810.286 +16980,2025-03-09T04:02:52.430285-07:00,1004.0465698242188,10.812763,10812.763 +16981,2025-03-09T04:03:03.244546-07:00,1004.052001953125,10.814261,10814.261 +16982,2025-03-09T04:03:14.057233-07:00,1004.04541015625,10.812687,10812.687 +16983,2025-03-09T04:03:24.872583-07:00,1004.037353515625,10.81535,10815.35 +16984,2025-03-09T04:03:35.688418-07:00,1004.0504760742188,10.815835,10815.835 +16985,2025-03-09T04:03:46.498302-07:00,1004.05712890625,10.809884,10809.884 +16986,2025-03-09T04:03:57.317550-07:00,1004.0215454101562,10.819248,10819.248 +16987,2025-03-09T04:04:08.133261-07:00,1004.0347900390625,10.815711,10815.711 +16988,2025-03-09T04:04:18.948973-07:00,1004.0215454101562,10.815712,10815.712 +16989,2025-03-09T04:04:29.761238-07:00,1004.0204467773438,10.812265,10812.265 +16990,2025-03-09T04:04:40.561297-07:00,1004.005859375,10.800059,10800.059 +16991,2025-03-09T04:04:51.371358-07:00,1004.0270385742188,10.810061,10810.061 +16992,2025-03-09T04:05:02.192414-07:00,1004.01123046875,10.821056,10821.056 +16993,2025-03-09T04:05:12.997469-07:00,1004.0178833007812,10.805055,10805.055 +16994,2025-03-09T04:05:23.806512-07:00,1004.0032958984375,10.809043,10809.043 +16995,2025-03-09T04:05:34.627984-07:00,1004.0032958984375,10.821472,10821.472 +16996,2025-03-09T04:05:45.471889-07:00,1004.0218505859375,10.843905,10843.905 +16997,2025-03-09T04:05:56.279026-07:00,1004.0164184570312,10.807137,10807.137 +16998,2025-03-09T04:06:07.089836-07:00,1003.962646484375,10.81081,10810.81 +16999,2025-03-09T04:06:17.908067-07:00,1003.9955444335938,10.818231,10818.231 +17000,2025-03-09T04:06:28.719424-07:00,1004.0153198242188,10.811357,10811.357 +17001,2025-03-09T04:06:39.533883-07:00,1003.9929809570312,10.814459,10814.459 +17002,2025-03-09T04:06:50.343842-07:00,1004.0203857421875,10.809959,10809.959 +17003,2025-03-09T04:07:01.158835-07:00,1003.9929809570312,10.814993,10814.993 +17004,2025-03-09T04:07:11.976880-07:00,1003.9981079101562,10.818045,10818.045 +17005,2025-03-09T04:07:22.788366-07:00,1003.95751953125,10.811486,10811.486 +17006,2025-03-09T04:07:33.603078-07:00,1003.9520263671875,10.814712,10814.712 +17007,2025-03-09T04:07:44.414833-07:00,1003.9640502929688,10.811755,10811.755 +17008,2025-03-09T04:07:55.218842-07:00,1003.9351806640625,10.804009,10804.009 +17009,2025-03-09T04:08:06.039824-07:00,1003.96923828125,10.820982,10820.982 +17010,2025-03-09T04:08:16.849301-07:00,1003.954833984375,10.809477,10809.477 +17011,2025-03-09T04:08:27.659284-07:00,1003.9456787109375,10.809983,10809.983 +17012,2025-03-09T04:08:38.473878-07:00,1003.9589233398438,10.814594,10814.594 +17013,2025-03-09T04:08:49.292458-07:00,1003.9456787109375,10.81858,10818.58 +17014,2025-03-09T04:09:00.100833-07:00,1003.9720458984375,10.808375,10808.375 +17015,2025-03-09T04:09:10.918835-07:00,1003.9365844726562,10.818002,10818.002 +17016,2025-03-09T04:09:21.731132-07:00,1003.903564453125,10.812297,10812.297 +17017,2025-03-09T04:09:32.539261-07:00,1003.9207763671875,10.808129,10808.129 +17018,2025-03-09T04:09:43.348084-07:00,1003.8775634765625,10.808823,10808.823 +17019,2025-03-09T04:09:54.154035-07:00,1003.9130249023438,10.805951,10805.951 +17020,2025-03-09T04:10:04.966886-07:00,1003.9130249023438,10.812851,10812.851 +17021,2025-03-09T04:10:15.772844-07:00,1003.9525146484375,10.805958,10805.958 +17022,2025-03-09T04:10:26.591823-07:00,1003.8958740234375,10.818979,10818.979 +17023,2025-03-09T04:10:37.393006-07:00,1003.8908081054688,10.801183,10801.183 +17024,2025-03-09T04:10:48.214164-07:00,1003.8881225585938,10.821158,10821.158 +17025,2025-03-09T04:10:59.022840-07:00,1003.8881225585938,10.808676,10808.676 +17026,2025-03-09T04:11:09.831830-07:00,1003.866943359375,10.80899,10808.99 +17027,2025-03-09T04:11:20.647833-07:00,1003.8855590820312,10.816003,10816.003 +17028,2025-03-09T04:11:31.450828-07:00,1003.8855590820312,10.802995,10802.995 +17029,2025-03-09T04:11:42.271813-07:00,1003.8855590820312,10.820985,10820.985 +17030,2025-03-09T04:11:53.080157-07:00,1003.8643798828125,10.808344,10808.344 +17031,2025-03-09T04:12:03.892103-07:00,1003.897216796875,10.811946,10811.946 +17032,2025-03-09T04:12:14.692121-07:00,1003.897216796875,10.800018,10800.018 +17033,2025-03-09T04:12:25.501385-07:00,1003.898681640625,10.809264,10809.264 +17034,2025-03-09T04:12:36.314044-07:00,1003.8961181640625,10.812659,10812.659 +17035,2025-03-09T04:12:47.129835-07:00,1003.9026489257812,10.815791,10815.791 +17036,2025-03-09T04:12:57.935841-07:00,1003.9143676757812,10.806006,10806.006 +17037,2025-03-09T04:13:08.759001-07:00,1003.8829956054688,10.82316,10823.16 +17038,2025-03-09T04:13:19.566200-07:00,1003.8934326171875,10.807199,10807.199 +17039,2025-03-09T04:13:30.382827-07:00,1003.8814697265625,10.816627,10816.627 +17040,2025-03-09T04:13:41.200855-07:00,1003.8961181640625,10.818028,10818.028 +17041,2025-03-09T04:13:52.012290-07:00,1003.9143676757812,10.811435,10811.435 +17042,2025-03-09T04:14:02.816853-07:00,1003.9026489257812,10.804563,10804.563 +17043,2025-03-09T04:14:13.625355-07:00,1003.873779296875,10.808502,10808.502 +17044,2025-03-09T04:14:24.435840-07:00,1003.9078369140625,10.810485,10810.485 +17045,2025-03-09T04:14:35.254283-07:00,1003.9132080078125,10.818443,10818.443 +17046,2025-03-09T04:14:46.067835-07:00,1003.9117431640625,10.813552,10813.552 +17047,2025-03-09T04:14:56.873139-07:00,1003.9051513671875,10.805304,10805.304 +17048,2025-03-09T04:15:07.687044-07:00,1003.8920288085938,10.813905,10813.905 +17049,2025-03-09T04:15:18.501100-07:00,1003.8986206054688,10.814056,10814.056 +17050,2025-03-09T04:15:29.310961-07:00,1003.8765869140625,10.809861,10809.861 +17051,2025-03-09T04:15:40.112503-07:00,1003.9028930664062,10.801542,10801.542 +17052,2025-03-09T04:15:50.929694-07:00,1003.9160766601562,10.817191,10817.191 +17053,2025-03-09T04:16:01.738054-07:00,1003.8685913085938,10.80836,10808.36 +17054,2025-03-09T04:16:12.546833-07:00,1003.8817138671875,10.808779,10808.779 +17055,2025-03-09T04:16:23.360731-07:00,1003.8739624023438,10.813898,10813.898 +17056,2025-03-09T04:16:34.174977-07:00,1003.8685913085938,10.814246,10814.246 +17057,2025-03-09T04:16:44.979146-07:00,1003.865966796875,10.804169,10804.169 +17058,2025-03-09T04:16:55.786840-07:00,1003.8724975585938,10.807694,10807.694 +17059,2025-03-09T04:17:06.594832-07:00,1003.859375,10.807992,10807.992 +17060,2025-03-09T04:17:17.412133-07:00,1003.859375,10.817301,10817.301 +17061,2025-03-09T04:17:28.221936-07:00,1003.8450927734375,10.809803,10809.803 +17062,2025-03-09T04:17:39.036883-07:00,1003.865966796875,10.814947,10814.947 +17063,2025-03-09T04:17:49.843120-07:00,1003.8516235351562,10.806237,10806.237 +17064,2025-03-09T04:18:00.646133-07:00,1003.8582763671875,10.803013,10803.013 +17065,2025-03-09T04:18:11.462081-07:00,1003.8516235351562,10.815948,10815.948 +17066,2025-03-09T04:18:22.276880-07:00,1003.8239135742188,10.814799,10814.799 +17067,2025-03-09T04:18:33.089074-07:00,1003.8319702148438,10.812194,10812.194 +17068,2025-03-09T04:18:43.900044-07:00,1003.842529296875,10.81097,10810.97 +17069,2025-03-09T04:18:54.708524-07:00,1003.829345703125,10.80848,10808.48 +17070,2025-03-09T04:19:05.520301-07:00,1003.8030395507812,10.811777,10811.777 +17071,2025-03-09T04:19:16.326164-07:00,1003.8450927734375,10.805863,10805.863 +17072,2025-03-09T04:19:27.134503-07:00,1003.8501586914062,10.808339,10808.339 +17073,2025-03-09T04:19:37.941446-07:00,1003.80810546875,10.806943,10806.943 +17074,2025-03-09T04:19:48.754882-07:00,1003.8070068359375,10.813436,10813.436 +17075,2025-03-09T04:19:59.569835-07:00,1003.8687744140625,10.814953,10814.953 +17076,2025-03-09T04:20:10.383262-07:00,1003.8267211914062,10.813427,10813.427 +17077,2025-03-09T04:20:21.198899-07:00,1003.85302734375,10.815637,10815.637 +17078,2025-03-09T04:20:32.009433-07:00,1003.8778686523438,10.810534,10810.534 +17079,2025-03-09T04:20:42.821833-07:00,1003.859619140625,10.8124,10812.4 +17080,2025-03-09T04:20:53.635975-07:00,1003.8646850585938,10.814142,10814.142 +17081,2025-03-09T04:21:04.451226-07:00,1003.8909912109375,10.815251,10815.251 +17082,2025-03-09T04:21:15.263398-07:00,1003.88330078125,10.812172,10812.172 +17083,2025-03-09T04:21:26.074920-07:00,1003.8898315429688,10.811522,10811.522 +17084,2025-03-09T04:21:36.886458-07:00,1003.8701782226562,10.811538,10811.538 +17085,2025-03-09T04:21:47.702822-07:00,1003.8609619140625,10.816364,10816.364 +17086,2025-03-09T04:21:58.521178-07:00,1003.8687744140625,10.818356,10818.356 +17087,2025-03-09T04:22:09.328211-07:00,1003.920166015625,10.807033,10807.033 +17088,2025-03-09T04:22:20.142340-07:00,1003.920166015625,10.814129,10814.129 +17089,2025-03-09T04:22:30.954829-07:00,1003.920166015625,10.812489,10812.489 +17090,2025-03-09T04:22:41.777025-07:00,1003.912109375,10.822196,10822.196 +17091,2025-03-09T04:22:52.597237-07:00,1003.912109375,10.820212,10820.212 +17092,2025-03-09T04:23:03.409901-07:00,1003.905517578125,10.812664,10812.664 +17093,2025-03-09T04:23:14.222510-07:00,1003.8912353515625,10.812609,10812.609 +17094,2025-03-09T04:23:25.041582-07:00,1003.8700561523438,10.819072,10819.072 +17095,2025-03-09T04:23:35.855447-07:00,1003.8568725585938,10.813865,10813.865 +17096,2025-03-09T04:23:46.670838-07:00,1003.8426513671875,10.815391,10815.391 +17097,2025-03-09T04:23:57.482833-07:00,1003.8820190429688,10.811995,10811.995 +17098,2025-03-09T04:24:08.297841-07:00,1003.8623657226562,10.815008,10815.008 +17099,2025-03-09T04:24:19.109823-07:00,1003.8279418945312,10.811982,10811.982 +17100,2025-03-09T04:24:29.930829-07:00,1003.8465576171875,10.821006,10821.006 +17101,2025-03-09T04:24:40.736633-07:00,1003.8848266601562,10.805804,10805.804 +17102,2025-03-09T04:24:51.554048-07:00,1003.8794555664062,10.817415,10817.415 +17103,2025-03-09T04:25:02.367833-07:00,1003.8728637695312,10.813785,10813.785 +17104,2025-03-09T04:25:13.182495-07:00,1003.8717041015625,10.814662,10814.662 +17105,2025-03-09T04:25:23.991261-07:00,1003.8505249023438,10.808766,10808.766 +17106,2025-03-09T04:25:34.812056-07:00,1003.8085327148438,10.820795,10820.795 +17107,2025-03-09T04:25:45.624824-07:00,1003.8428344726562,10.812768,10812.768 +17108,2025-03-09T04:25:56.441190-07:00,1003.8414306640625,10.816366,10816.366 +17109,2025-03-09T04:26:07.256900-07:00,1003.8204956054688,10.81571,10815.71 +17110,2025-03-09T04:26:18.068835-07:00,1003.85595703125,10.811935,10811.935 +17111,2025-03-09T04:26:28.879824-07:00,1003.8545532226562,10.810989,10810.989 +17112,2025-03-09T04:26:39.698717-07:00,1003.8336791992188,10.818893,10818.893 +17113,2025-03-09T04:26:50.514540-07:00,1003.8414306640625,10.815823,10815.823 +17114,2025-03-09T04:27:01.329433-07:00,1003.8270874023438,10.814893,10814.893 +17115,2025-03-09T04:27:12.135869-07:00,1003.8204956054688,10.806436,10806.436 +17116,2025-03-09T04:27:22.946860-07:00,1003.837646484375,10.810991,10810.991 +17117,2025-03-09T04:27:33.762823-07:00,1003.8245239257812,10.815963,10815.963 +17118,2025-03-09T04:27:44.582140-07:00,1003.84423828125,10.819317,10819.317 +17119,2025-03-09T04:27:55.385809-07:00,1003.809814453125,10.803669,10803.669 +17120,2025-03-09T04:28:06.204832-07:00,1003.8021850585938,10.819023,10819.023 +17121,2025-03-09T04:28:17.013837-07:00,1003.7849731445312,10.809005,10809.005 +17122,2025-03-09T04:28:27.818826-07:00,1003.8245239257812,10.804989,10804.989 +17123,2025-03-09T04:28:38.632163-07:00,1003.8427124023438,10.813337,10813.337 +17124,2025-03-09T04:28:49.452821-07:00,1003.7941284179688,10.820658,10820.658 +17125,2025-03-09T04:29:00.257409-07:00,1003.8218994140625,10.804588,10804.588 +17126,2025-03-09T04:29:11.070140-07:00,1003.799560546875,10.812731,10812.731 +17127,2025-03-09T04:29:21.890055-07:00,1003.8139038085938,10.819915,10819.915 +17128,2025-03-09T04:29:32.694823-07:00,1003.8139038085938,10.804768,10804.768 +17129,2025-03-09T04:29:43.507824-07:00,1003.786376953125,10.813001,10813.001 +17130,2025-03-09T04:29:54.322499-07:00,1003.7915649414062,10.814675,10814.675 +17131,2025-03-09T04:30:05.133963-07:00,1003.7837524414062,10.811464,10811.464 +17132,2025-03-09T04:30:15.942971-07:00,1003.7706298828125,10.809008,10809.008 +17133,2025-03-09T04:30:26.756835-07:00,1003.7954711914062,10.813864,10813.864 +17134,2025-03-09T04:30:37.571827-07:00,1003.7888793945312,10.814992,10814.992 +17135,2025-03-09T04:30:48.390764-07:00,1003.7665405273438,10.818937,10818.937 +17136,2025-03-09T04:30:59.194445-07:00,1003.76806640625,10.803681,10803.681 +17137,2025-03-09T04:31:10.000138-07:00,1003.78125,10.805693,10805.693 +17138,2025-03-09T04:31:20.810301-07:00,1003.7863159179688,10.810163,10810.163 +17139,2025-03-09T04:31:31.619826-07:00,1003.7589111328125,10.809525,10809.525 +17140,2025-03-09T04:31:42.434885-07:00,1003.7510986328125,10.815059,10815.059 +17141,2025-03-09T04:31:53.239831-07:00,1003.7982788085938,10.804946,10804.946 +17142,2025-03-09T04:32:04.053817-07:00,1003.7577514648438,10.813986,10813.986 +17143,2025-03-09T04:32:14.869818-07:00,1003.7628173828125,10.816001,10816.001 +17144,2025-03-09T04:32:25.678149-07:00,1003.7957153320312,10.808331,10808.331 +17145,2025-03-09T04:32:36.488577-07:00,1003.8128051757812,10.810428,10810.428 +17146,2025-03-09T04:32:47.298992-07:00,1003.7931518554688,10.810415,10810.415 +17147,2025-03-09T04:32:58.116962-07:00,1003.7996826171875,10.81797,10817.97 +17148,2025-03-09T04:33:08.920358-07:00,1003.84716796875,10.803396,10803.396 +17149,2025-03-09T04:33:19.741404-07:00,1003.8417358398438,10.821046,10821.046 +17150,2025-03-09T04:33:30.549870-07:00,1003.83251953125,10.808466,10808.466 +17151,2025-03-09T04:33:41.348140-07:00,1003.8588256835938,10.79827,10798.27 +17152,2025-03-09T04:33:52.161149-07:00,1003.8182983398438,10.813009,10813.009 +17153,2025-03-09T04:34:02.977209-07:00,1003.8406372070312,10.81606,10816.06 +17154,2025-03-09T04:34:13.784985-07:00,1003.8314208984375,10.807776,10807.776 +17155,2025-03-09T04:34:24.588914-07:00,1003.8248291015625,10.803929,10803.929 +17156,2025-03-09T04:34:35.406726-07:00,1003.8182983398438,10.817812,10817.812 +17157,2025-03-09T04:34:46.216884-07:00,1003.8101806640625,10.810158,10810.158 +17158,2025-03-09T04:34:57.033167-07:00,1003.8233642578125,10.816283,10816.283 +17159,2025-03-09T04:35:07.840889-07:00,1003.8562622070312,10.807722,10807.722 +17160,2025-03-09T04:35:18.654827-07:00,1003.8248291015625,10.813938,10813.938 +17161,2025-03-09T04:35:29.467053-07:00,1003.8287353515625,10.812226,10812.226 +17162,2025-03-09T04:35:40.275833-07:00,1003.8101806640625,10.80878,10808.78 +17163,2025-03-09T04:35:51.093165-07:00,1003.8167724609375,10.817332,10817.332 +17164,2025-03-09T04:36:01.900177-07:00,1003.774658203125,10.807012,10807.012 +17165,2025-03-09T04:36:12.707835-07:00,1003.8496704101562,10.807658,10807.658 +17166,2025-03-09T04:36:23.519063-07:00,1003.801025390625,10.811228,10811.228 +17167,2025-03-09T04:36:34.323882-07:00,1003.82080078125,10.804819,10804.819 +17168,2025-03-09T04:36:45.143083-07:00,1003.8076782226562,10.819201,10819.201 +17169,2025-03-09T04:36:55.953827-07:00,1003.7801513671875,10.810744,10810.744 +17170,2025-03-09T04:37:06.762587-07:00,1003.7853393554688,10.80876,10808.76 +17171,2025-03-09T04:37:17.582894-07:00,1003.7853393554688,10.820307,10820.307 +17172,2025-03-09T04:37:28.385843-07:00,1003.7655639648438,10.802949,10802.949 +17173,2025-03-09T04:37:39.195207-07:00,1003.7655639648438,10.809364,10809.364 +17174,2025-03-09T04:37:50.009826-07:00,1003.7655639648438,10.814619,10814.619 +17175,2025-03-09T04:38:00.812028-07:00,1003.7787475585938,10.802202,10802.202 +17176,2025-03-09T04:38:11.621883-07:00,1003.7826538085938,10.809855,10809.855 +17177,2025-03-09T04:38:22.430951-07:00,1003.7709350585938,10.809068,10809.068 +17178,2025-03-09T04:38:33.246563-07:00,1003.787841796875,10.815612,10815.612 +17179,2025-03-09T04:38:44.060831-07:00,1003.761474609375,10.814268,10814.268 +17180,2025-03-09T04:38:54.868829-07:00,1003.76953125,10.807998,10807.998 +17181,2025-03-09T04:39:05.687825-07:00,1003.75341796875,10.818996,10818.996 +17182,2025-03-09T04:39:16.494827-07:00,1003.7326049804688,10.807002,10807.002 +17183,2025-03-09T04:39:27.307249-07:00,1003.7391967773438,10.812422,10812.422 +17184,2025-03-09T04:39:38.123042-07:00,1003.7391967773438,10.815793,10815.793 +17185,2025-03-09T04:39:48.930024-07:00,1003.719482421875,10.806982,10806.982 +17186,2025-03-09T04:39:59.738830-07:00,1003.7337646484375,10.808806,10808.806 +17187,2025-03-09T04:40:10.549833-07:00,1003.7234497070312,10.811003,10811.003 +17188,2025-03-09T04:40:21.363823-07:00,1003.7496948242188,10.81399,10813.99 +17189,2025-03-09T04:40:32.180182-07:00,1003.7273559570312,10.816359,10816.359 +17190,2025-03-09T04:40:42.993177-07:00,1003.7168579101562,10.812995,10812.995 +17191,2025-03-09T04:40:53.797434-07:00,1003.74169921875,10.804257,10804.257 +17192,2025-03-09T04:41:04.611065-07:00,1003.7471313476562,10.813631,10813.631 +17193,2025-03-09T04:41:15.419072-07:00,1003.7679443359375,10.808007,10808.007 +17194,2025-03-09T04:41:26.234822-07:00,1003.7825927734375,10.81575,10815.75 +17195,2025-03-09T04:41:37.043823-07:00,1003.7525024414062,10.809001,10809.001 +17196,2025-03-09T04:41:47.863921-07:00,1003.7525024414062,10.820098,10820.098 +17197,2025-03-09T04:41:58.678148-07:00,1003.7379760742188,10.814227,10814.227 +17198,2025-03-09T04:42:09.487318-07:00,1003.7525024414062,10.80917,10809.17 +17199,2025-03-09T04:42:20.290103-07:00,1003.7459106445312,10.802785,10802.785 +17200,2025-03-09T04:42:31.110817-07:00,1003.7510986328125,10.820714,10820.714 +17201,2025-03-09T04:42:41.916094-07:00,1003.785400390625,10.805277,10805.277 +17202,2025-03-09T04:42:52.723982-07:00,1003.7734375,10.807888,10807.888 +17203,2025-03-09T04:43:03.532157-07:00,1003.7379760742188,10.808175,10808.175 +17204,2025-03-09T04:43:14.352184-07:00,1003.7499389648438,10.820027,10820.027 +17205,2025-03-09T04:43:25.156834-07:00,1003.7576293945312,10.80465,10804.65 +17206,2025-03-09T04:43:35.969971-07:00,1003.772216796875,10.813137,10813.137 +17207,2025-03-09T04:43:46.783072-07:00,1003.7564697265625,10.813101,10813.101 +17208,2025-03-09T04:43:57.584043-07:00,1003.711669921875,10.800971,10800.971 +17209,2025-03-09T04:44:08.392823-07:00,1003.7313232421875,10.80878,10808.78 +17210,2025-03-09T04:44:19.206160-07:00,1003.7025146484375,10.813337,10813.337 +17211,2025-03-09T04:44:30.011138-07:00,1003.728759765625,10.804978,10804.978 +17212,2025-03-09T04:44:40.824828-07:00,1003.7379760742188,10.81369,10813.69 +17213,2025-03-09T04:44:51.623168-07:00,1003.7433471679688,10.79834,10798.34 +17214,2025-03-09T04:45:02.436882-07:00,1003.7352905273438,10.813714,10813.714 +17215,2025-03-09T04:45:13.239064-07:00,1003.75390625,10.802182,10802.182 +17216,2025-03-09T04:45:24.048829-07:00,1003.7407836914062,10.809765,10809.765 +17217,2025-03-09T04:45:34.852908-07:00,1003.7090454101562,10.804079,10804.079 +17218,2025-03-09T04:45:45.673135-07:00,1003.7144775390625,10.820227,10820.227 +17219,2025-03-09T04:45:56.476125-07:00,1003.728759765625,10.80299,10802.99 +17220,2025-03-09T04:46:07.289927-07:00,1003.7352905273438,10.813802,10813.802 +17221,2025-03-09T04:46:18.098887-07:00,1003.728759765625,10.80896,10808.96 +17222,2025-03-09T04:46:28.911172-07:00,1003.7391967773438,10.812285,10812.285 +17223,2025-03-09T04:46:39.718975-07:00,1003.7484130859375,10.807803,10807.803 +17224,2025-03-09T04:46:50.521832-07:00,1003.7391967773438,10.802857,10802.857 +17225,2025-03-09T04:47:01.336130-07:00,1003.745849609375,10.814298,10814.298 +17226,2025-03-09T04:47:12.145002-07:00,1003.72607421875,10.808872,10808.872 +17227,2025-03-09T04:47:22.965827-07:00,1003.77734375,10.820825,10820.825 +17228,2025-03-09T04:47:33.769369-07:00,1003.774658203125,10.803542,10803.542 +17229,2025-03-09T04:47:44.586847-07:00,1003.7407836914062,10.817478,10817.478 +17230,2025-03-09T04:47:55.393826-07:00,1003.760498046875,10.806979,10806.979 +17231,2025-03-09T04:48:06.202033-07:00,1003.728759765625,10.808207,10808.207 +17232,2025-03-09T04:48:17.010453-07:00,1003.7341918945312,10.80842,10808.42 +17233,2025-03-09T04:48:27.811881-07:00,1003.7380981445312,10.801428,10801.428 +17234,2025-03-09T04:48:38.611640-07:00,1003.72607421875,10.799759,10799.759 +17235,2025-03-09T04:48:49.415067-07:00,1003.75244140625,10.803427,10803.427 +17236,2025-03-09T04:49:00.226827-07:00,1003.7249755859375,10.81176,10811.76 +17237,2025-03-09T04:49:11.035930-07:00,1003.7380981445312,10.809103,10809.103 +17238,2025-03-09T04:49:21.847169-07:00,1003.7315673828125,10.811239,10811.239 +17239,2025-03-09T04:49:32.655397-07:00,1003.7118530273438,10.808228,10808.228 +17240,2025-03-09T04:49:43.464196-07:00,1003.7366943359375,10.808799,10808.799 +17241,2025-03-09T04:49:54.274158-07:00,1003.7184448242188,10.809962,10809.962 +17242,2025-03-09T04:50:05.071879-07:00,1003.7157592773438,10.797721,10797.721 +17243,2025-03-09T04:50:15.884315-07:00,1003.709228515625,10.812436,10812.436 +17244,2025-03-09T04:50:26.694929-07:00,1003.6961059570312,10.810614,10810.614 +17245,2025-03-09T04:50:37.507881-07:00,1003.7471923828125,10.812952,10812.952 +17246,2025-03-09T04:50:48.307886-07:00,1003.7131958007812,10.800005,10800.005 +17247,2025-03-09T04:50:59.118046-07:00,1003.6934204101562,10.81016,10810.16 +17248,2025-03-09T04:51:09.921832-07:00,1003.6854858398438,10.803786,10803.786 +17249,2025-03-09T04:51:20.733420-07:00,1003.71826171875,10.811588,10811.588 +17250,2025-03-09T04:51:31.542369-07:00,1003.684326171875,10.808949,10808.949 +17251,2025-03-09T04:51:42.348319-07:00,1003.684326171875,10.80595,10805.95 +17252,2025-03-09T04:51:53.154842-07:00,1003.669677734375,10.806523,10806.523 +17253,2025-03-09T04:52:03.952477-07:00,1003.6959228515625,10.797635,10797.635 +17254,2025-03-09T04:52:14.755188-07:00,1003.6882934570312,10.802711,10802.711 +17255,2025-03-09T04:52:25.565177-07:00,1003.7145385742188,10.809989,10809.989 +17256,2025-03-09T04:52:36.366378-07:00,1003.7090454101562,10.801201,10801.201 +17257,2025-03-09T04:52:47.182083-07:00,1003.701416015625,10.815705,10815.705 +17258,2025-03-09T04:52:57.987834-07:00,1003.6802368164062,10.805751,10805.751 +17259,2025-03-09T04:53:08.789827-07:00,1003.6724853515625,10.801993,10801.993 +17260,2025-03-09T04:53:19.594195-07:00,1003.6973266601562,10.804368,10804.368 +17261,2025-03-09T04:53:30.400897-07:00,1003.6790771484375,10.806702,10806.702 +17262,2025-03-09T04:53:41.210822-07:00,1003.7118530273438,10.809925,10809.925 +17263,2025-03-09T04:53:52.014126-07:00,1003.69873046875,10.803304,10803.304 +17264,2025-03-09T04:54:02.820958-07:00,1003.713134765625,10.806832,10806.832 +17265,2025-03-09T04:54:13.627827-07:00,1003.71044921875,10.806869,10806.869 +17266,2025-03-09T04:54:24.437025-07:00,1003.69873046875,10.809198,10809.198 +17267,2025-03-09T04:54:35.238292-07:00,1003.705322265625,10.801267,10801.267 +17268,2025-03-09T04:54:46.042841-07:00,1003.705322265625,10.804549,10804.549 +17269,2025-03-09T04:54:56.851466-07:00,1003.6907958984375,10.808625,10808.625 +17270,2025-03-09T04:55:07.664899-07:00,1003.7027587890625,10.813433,10813.433 +17271,2025-03-09T04:55:18.469240-07:00,1003.71044921875,10.804341,10804.341 +17272,2025-03-09T04:55:29.277005-07:00,1003.7159423828125,10.807765,10807.765 +17273,2025-03-09T04:55:40.085834-07:00,1003.693603515625,10.808829,10808.829 +17274,2025-03-09T04:55:50.895888-07:00,1003.7027587890625,10.810054,10810.054 +17275,2025-03-09T04:56:01.700260-07:00,1003.681884765625,10.804372,10804.372 +17276,2025-03-09T04:56:12.511833-07:00,1003.681884765625,10.811573,10811.573 +17277,2025-03-09T04:56:23.321822-07:00,1003.7132568359375,10.809989,10809.989 +17278,2025-03-09T04:56:34.127149-07:00,1003.698974609375,10.805327,10805.327 +17279,2025-03-09T04:56:44.934559-07:00,1003.7171630859375,10.80741,10807.41 +17280,2025-03-09T04:56:55.742100-07:00,1003.71875,10.807541,10807.541 +17281,2025-03-09T04:57:06.546779-07:00,1003.7106323242188,10.804679,10804.679 +17282,2025-03-09T04:57:17.351173-07:00,1003.7040405273438,10.804394,10804.394 +17283,2025-03-09T04:57:28.159151-07:00,1003.71875,10.807978,10807.978 +17284,2025-03-09T04:57:38.962994-07:00,1003.7040405273438,10.803843,10803.843 +17285,2025-03-09T04:57:49.772389-07:00,1003.72265625,10.809395,10809.395 +17286,2025-03-09T04:58:00.570163-07:00,1003.7489013671875,10.797774,10797.774 +17287,2025-03-09T04:58:11.388875-07:00,1003.7014770507812,10.818712,10818.712 +17288,2025-03-09T04:58:22.187829-07:00,1003.7554931640625,10.798954,10798.954 +17289,2025-03-09T04:58:32.996217-07:00,1003.7540893554688,10.808388,10808.388 +17290,2025-03-09T04:58:43.803976-07:00,1003.7332153320312,10.807759,10807.759 +17291,2025-03-09T04:58:54.606828-07:00,1003.73828125,10.802852,10802.852 +17292,2025-03-09T04:59:05.421829-07:00,1003.744873046875,10.815001,10815.001 +17293,2025-03-09T04:59:16.220835-07:00,1003.735595703125,10.799006,10799.006 +17294,2025-03-09T04:59:27.034269-07:00,1003.731689453125,10.813434,10813.434 +17295,2025-03-09T04:59:37.838769-07:00,1003.7306518554688,10.8045,10804.5 +17296,2025-03-09T04:59:48.646360-07:00,1003.7488403320312,10.807591,10807.591 +17297,2025-03-09T04:59:59.446451-07:00,1003.7488403320312,10.800091,10800.091 +17298,2025-03-09T05:00:10.265848-07:00,1003.7224731445312,10.819397,10819.397 +17299,2025-03-09T05:00:21.067834-07:00,1003.721435546875,10.801986,10801.986 +17300,2025-03-09T05:00:31.882056-07:00,1003.7422485351562,10.814222,10814.222 +17301,2025-03-09T05:00:42.679841-07:00,1003.7265014648438,10.797785,10797.785 +17302,2025-03-09T05:00:53.484990-07:00,1003.7265014648438,10.805149,10805.149 +17303,2025-03-09T05:01:04.287887-07:00,1003.7396850585938,10.802897,10802.897 +17304,2025-03-09T05:01:15.089890-07:00,1003.7396850585938,10.802003,10802.003 +17305,2025-03-09T05:01:25.904822-07:00,1003.7528076171875,10.814932,10814.932 +17306,2025-03-09T05:01:36.707957-07:00,1003.73046875,10.803135,10803.135 +17307,2025-03-09T05:01:47.513115-07:00,1003.7449951171875,10.805158,10805.158 +17308,2025-03-09T05:01:58.322080-07:00,1003.7581787109375,10.808965,10808.965 +17309,2025-03-09T05:02:09.122828-07:00,1003.7501831054688,10.800748,10800.748 +17310,2025-03-09T05:02:19.927108-07:00,1003.7501831054688,10.80428,10804.28 +17311,2025-03-09T05:02:30.739962-07:00,1003.73583984375,10.812854,10812.854 +17312,2025-03-09T05:02:41.544778-07:00,1003.727783203125,10.804816,10804.816 +17313,2025-03-09T05:02:52.360177-07:00,1003.73583984375,10.815399,10815.399 +17314,2025-03-09T05:03:03.164197-07:00,1003.73583984375,10.80402,10804.02 +17315,2025-03-09T05:03:13.968131-07:00,1003.727783203125,10.803934,10803.934 +17316,2025-03-09T05:03:24.771340-07:00,1003.7321166992188,10.803209,10803.209 +17317,2025-03-09T05:03:35.575156-07:00,1003.7332763671875,10.803816,10803.816 +17318,2025-03-09T05:03:46.389895-07:00,1003.7398681640625,10.814739,10814.739 +17319,2025-03-09T05:03:57.196832-07:00,1003.7386474609375,10.806937,10806.937 +17320,2025-03-09T05:04:07.994836-07:00,1003.7306518554688,10.798004,10798.004 +17321,2025-03-09T05:04:18.804837-07:00,1003.7503051757812,10.810001,10810.001 +17322,2025-03-09T05:04:29.612828-07:00,1003.7295532226562,10.807991,10807.991 +17323,2025-03-09T05:04:40.417513-07:00,1003.7781372070312,10.804685,10804.685 +17324,2025-03-09T05:04:51.230073-07:00,1003.7623291015625,10.81256,10812.56 +17325,2025-03-09T05:05:02.031940-07:00,1003.7229614257812,10.801867,10801.867 +17326,2025-03-09T05:05:12.843351-07:00,1003.7557983398438,10.811411,10811.411 +17327,2025-03-09T05:05:23.646391-07:00,1003.8082885742188,10.80304,10803.04 +17328,2025-03-09T05:05:34.454841-07:00,1003.751708984375,10.80845,10808.45 +17329,2025-03-09T05:05:45.173531-07:00,1003.7451782226562,10.71869,10718.69 +17330,2025-03-09T05:05:55.973918-07:00,1003.7597045898438,10.800387,10800.387 +17331,2025-03-09T05:06:06.781260-07:00,1003.751708984375,10.807342,10807.342 +17332,2025-03-09T05:06:17.575178-07:00,1003.7687377929688,10.793918,10793.918 +17333,2025-03-09T05:06:28.381311-07:00,1003.8031005859375,10.806133,10806.133 +17334,2025-03-09T05:06:39.181929-07:00,1003.783447265625,10.800618,10800.618 +17335,2025-03-09T05:06:49.991279-07:00,1003.7938842773438,10.80935,10809.35 +17336,2025-03-09T05:07:00.804705-07:00,1003.772705078125,10.813426,10813.426 +17337,2025-03-09T05:07:11.610223-07:00,1003.779296875,10.805518,10805.518 +17338,2025-03-09T05:07:22.417951-07:00,1003.79248046875,10.807728,10807.728 +17339,2025-03-09T05:07:33.215226-07:00,1003.7584228515625,10.797275,10797.275 +17340,2025-03-09T05:07:44.023947-07:00,1003.7701416015625,10.808721,10808.721 +17341,2025-03-09T05:07:54.826938-07:00,1003.7636108398438,10.802991,10802.991 +17342,2025-03-09T05:08:05.640939-07:00,1003.7821044921875,10.814001,10814.001 +17343,2025-03-09T05:08:16.435180-07:00,1003.79638671875,10.794241,10794.241 +17344,2025-03-09T05:08:27.252954-07:00,1003.7740478515625,10.817774,10817.774 +17345,2025-03-09T05:08:38.057947-07:00,1003.7755737304688,10.804993,10804.993 +17346,2025-03-09T05:08:48.849429-07:00,1003.7689819335938,10.791482,10791.482 +17347,2025-03-09T05:08:59.661738-07:00,1003.7806396484375,10.812309,10812.309 +17348,2025-03-09T05:09:10.461933-07:00,1003.7821044921875,10.800195,10800.195 +17349,2025-03-09T05:09:21.265164-07:00,1003.779541015625,10.803231,10803.231 +17350,2025-03-09T05:09:32.083103-07:00,1003.77294921875,10.817939,10817.939 +17351,2025-03-09T05:09:42.882930-07:00,1003.759765625,10.799827,10799.827 +17352,2025-03-09T05:09:53.696458-07:00,1003.783447265625,10.813528,10813.528 +17353,2025-03-09T05:10:04.498384-07:00,1003.783447265625,10.801926,10801.926 +17354,2025-03-09T05:10:15.303380-07:00,1003.8057861328125,10.804996,10804.996 +17355,2025-03-09T05:10:26.112740-07:00,1003.7899780273438,10.80936,10809.36 +17356,2025-03-09T05:10:36.917304-07:00,1003.760009765625,10.804564,10804.564 +17357,2025-03-09T05:10:47.726765-07:00,1003.8148193359375,10.809461,10809.461 +17358,2025-03-09T05:10:58.539940-07:00,1003.7742309570312,10.813175,10813.175 +17359,2025-03-09T05:11:09.342930-07:00,1003.7665405273438,10.80299,10802.99 +17360,2025-03-09T05:11:20.151569-07:00,1003.7468872070312,10.808639,10808.639 +17361,2025-03-09T05:11:30.955938-07:00,1003.75341796875,10.804369,10804.369 +17362,2025-03-09T05:11:41.761940-07:00,1003.7731323242188,10.806002,10806.002 +17363,2025-03-09T05:11:52.571936-07:00,1003.8400268554688,10.809996,10809.996 +17364,2025-03-09T05:12:03.387627-07:00,1003.821533203125,10.815691,10815.691 +17365,2025-03-09T05:12:14.189287-07:00,1003.8007202148438,10.80166,10801.66 +17366,2025-03-09T05:12:24.994256-07:00,1003.8150024414062,10.804969,10804.969 +17367,2025-03-09T05:12:35.804237-07:00,1003.7941284179688,10.809981,10809.981 +17368,2025-03-09T05:12:46.615968-07:00,1003.8336181640625,10.811731,10811.731 +17369,2025-03-09T05:12:57.431172-07:00,1003.8057861328125,10.815204,10815.204 +17370,2025-03-09T05:13:08.235183-07:00,1003.7915649414062,10.804011,10804.011 +17371,2025-03-09T05:13:19.048926-07:00,1003.8046875,10.813743,10813.743 +17372,2025-03-09T05:13:29.848182-07:00,1003.7915649414062,10.799256,10799.256 +17373,2025-03-09T05:13:40.664214-07:00,1003.8123168945312,10.816032,10816.032 +17374,2025-03-09T05:13:51.477264-07:00,1003.7808837890625,10.81305,10813.05 +17375,2025-03-09T05:14:02.282455-07:00,1003.8228759765625,10.805191,10805.191 +17376,2025-03-09T05:14:13.084746-07:00,1003.7940063476562,10.802291,10802.291 +17377,2025-03-09T05:14:23.895213-07:00,1003.7545166015625,10.810467,10810.467 +17378,2025-03-09T05:14:34.697130-07:00,1003.7796630859375,10.801917,10801.917 +17379,2025-03-09T05:14:45.500526-07:00,1003.771728515625,10.803396,10803.396 +17380,2025-03-09T05:14:56.307932-07:00,1003.7862548828125,10.807406,10807.406 +17381,2025-03-09T05:15:07.111070-07:00,1003.771728515625,10.803138,10803.138 +17382,2025-03-09T05:15:17.922931-07:00,1003.7770385742188,10.811861,10811.861 +17383,2025-03-09T05:15:28.725073-07:00,1003.7427978515625,10.802142,10802.142 +17384,2025-03-09T05:15:39.542931-07:00,1003.7362670898438,10.817858,10817.858 +17385,2025-03-09T05:15:50.347933-07:00,1003.7284545898438,10.805002,10805.002 +17386,2025-03-09T05:16:01.148969-07:00,1003.7559204101562,10.801036,10801.036 +17387,2025-03-09T05:16:11.954932-07:00,1003.7427978515625,10.805963,10805.963 +17388,2025-03-09T05:16:22.761927-07:00,1003.7625122070312,10.806995,10806.995 +17389,2025-03-09T05:16:33.563922-07:00,1003.7218627929688,10.801995,10801.995 +17390,2025-03-09T05:16:44.368932-07:00,1003.7349853515625,10.80501,10805.01 +17391,2025-03-09T05:16:55.173307-07:00,1003.7349853515625,10.804375,10804.375 +17392,2025-03-09T05:17:05.972922-07:00,1003.7559204101562,10.799615,10799.615 +17393,2025-03-09T05:17:16.775070-07:00,1003.7139282226562,10.802148,10802.148 +17394,2025-03-09T05:17:27.583044-07:00,1003.7349853515625,10.807974,10807.974 +17395,2025-03-09T05:17:38.385160-07:00,1003.732421875,10.802116,10802.116 +17396,2025-03-09T05:17:49.182911-07:00,1003.7061767578125,10.797751,10797.751 +17397,2025-03-09T05:17:59.986215-07:00,1003.7401733398438,10.803304,10803.304 +17398,2025-03-09T05:18:10.784214-07:00,1003.7192993164062,10.797999,10797.999 +17399,2025-03-09T05:18:21.593930-07:00,1003.7047119140625,10.809716,10809.716 +17400,2025-03-09T05:18:32.389931-07:00,1003.67724609375,10.796001,10796.001 +17401,2025-03-09T05:18:43.199921-07:00,1003.7047119140625,10.80999,10809.99 +17402,2025-03-09T05:18:54.002946-07:00,1003.7178344726562,10.803025,10803.025 +17403,2025-03-09T05:19:04.811256-07:00,1003.6695556640625,10.80831,10808.31 +17404,2025-03-09T05:19:15.613928-07:00,1003.6695556640625,10.802672,10802.672 +17405,2025-03-09T05:19:26.413084-07:00,1003.6849975585938,10.799156,10799.156 +17406,2025-03-09T05:19:37.214928-07:00,1003.7023315429688,10.801844,10801.844 +17407,2025-03-09T05:19:48.025979-07:00,1003.6746826171875,10.811051,10811.051 +17408,2025-03-09T05:19:58.817932-07:00,1003.6668701171875,10.791953,10791.953 +17409,2025-03-09T05:20:09.613928-07:00,1003.6799926757812,10.795996,10795.996 +17410,2025-03-09T05:20:20.413155-07:00,1003.6537475585938,10.799227,10799.227 +17411,2025-03-09T05:20:31.214140-07:00,1003.6943969726562,10.800985,10800.985 +17412,2025-03-09T05:20:42.011934-07:00,1003.6720581054688,10.797794,10797.794 +17413,2025-03-09T05:20:52.823174-07:00,1003.65234375,10.81124,10811.24 +17414,2025-03-09T05:21:03.626233-07:00,1003.645751953125,10.803059,10803.059 +17415,2025-03-09T05:21:14.430934-07:00,1003.649658203125,10.804701,10804.701 +17416,2025-03-09T05:21:25.225184-07:00,1003.6168823242188,10.79425,10794.25 +17417,2025-03-09T05:21:36.029174-07:00,1003.637939453125,10.80399,10803.99 +17418,2025-03-09T05:21:46.828934-07:00,1003.6431274414062,10.79976,10799.76 +17419,2025-03-09T05:21:57.633211-07:00,1003.6365356445312,10.804277,10804.277 +17420,2025-03-09T05:22:08.433946-07:00,1003.649658203125,10.800735,10800.735 +17421,2025-03-09T05:22:19.245204-07:00,1003.666748046875,10.811258,10811.258 +17422,2025-03-09T05:22:30.044954-07:00,1003.6431274414062,10.79975,10799.75 +17423,2025-03-09T05:22:40.855230-07:00,1003.6353759765625,10.810276,10810.276 +17424,2025-03-09T05:22:51.660066-07:00,1003.6551513671875,10.804836,10804.836 +17425,2025-03-09T05:23:02.462004-07:00,1003.6339111328125,10.801938,10801.938 +17426,2025-03-09T05:23:13.271178-07:00,1003.6470336914062,10.809174,10809.174 +17427,2025-03-09T05:23:24.070519-07:00,1003.6484985351562,10.799341,10799.341 +17428,2025-03-09T05:23:34.871986-07:00,1003.626220703125,10.801467,10801.467 +17429,2025-03-09T05:23:45.675008-07:00,1003.6459350585938,10.803022,10803.022 +17430,2025-03-09T05:23:56.467080-07:00,1003.6459350585938,10.792072,10792.072 +17431,2025-03-09T05:24:07.276158-07:00,1003.6130981445312,10.809078,10809.078 +17432,2025-03-09T05:24:18.071242-07:00,1003.6235961914062,10.795084,10795.084 +17433,2025-03-09T05:24:28.877330-07:00,1003.6155395507812,10.806088,10806.088 +17434,2025-03-09T05:24:39.675285-07:00,1003.6235961914062,10.797955,10797.955 +17435,2025-03-09T05:24:50.485953-07:00,1003.6510009765625,10.810668,10810.668 +17436,2025-03-09T05:25:01.286954-07:00,1003.63525390625,10.801001,10801.001 +17437,2025-03-09T05:25:12.086661-07:00,1003.630126953125,10.799707,10799.707 +17438,2025-03-09T05:25:22.889702-07:00,1003.6104736328125,10.803041,10803.041 +17439,2025-03-09T05:25:33.685299-07:00,1003.6090087890625,10.795597,10795.597 +17440,2025-03-09T05:25:44.489283-07:00,1003.6209106445312,10.803984,10803.984 +17441,2025-03-09T05:25:55.287936-07:00,1003.6155395507812,10.798653,10798.653 +17442,2025-03-09T05:26:06.096730-07:00,1003.59326171875,10.808794,10808.794 +17443,2025-03-09T05:26:16.894215-07:00,1003.59326171875,10.797485,10797.485 +17444,2025-03-09T05:26:27.694980-07:00,1003.6063842773438,10.800765,10800.765 +17445,2025-03-09T05:26:38.496932-07:00,1003.6116943359375,10.801952,10801.952 +17446,2025-03-09T05:26:49.298987-07:00,1003.6129760742188,10.802055,10802.055 +17447,2025-03-09T05:27:00.098159-07:00,1003.6051635742188,10.799172,10799.172 +17448,2025-03-09T05:27:10.896159-07:00,1003.603759765625,10.798,10798.0 +17449,2025-03-09T05:27:21.703924-07:00,1003.6129760742188,10.807765,10807.765 +17450,2025-03-09T05:27:32.509073-07:00,1003.5906372070312,10.805149,10805.149 +17451,2025-03-09T05:27:43.307928-07:00,1003.5894775390625,10.798855,10798.855 +17452,2025-03-09T05:27:54.111130-07:00,1003.5828857421875,10.803202,10803.202 +17453,2025-03-09T05:28:04.911938-07:00,1003.5960083007812,10.800808,10800.808 +17454,2025-03-09T05:28:15.716928-07:00,1003.61572265625,10.80499,10804.99 +17455,2025-03-09T05:28:26.520949-07:00,1003.61572265625,10.804021,10804.021 +17456,2025-03-09T05:28:37.319278-07:00,1003.614501953125,10.798329,10798.329 +17457,2025-03-09T05:28:48.122938-07:00,1003.5934448242188,10.80366,10803.66 +17458,2025-03-09T05:28:58.927938-07:00,1003.6065673828125,10.805,10805.0 +17459,2025-03-09T05:29:09.726938-07:00,1003.6130981445312,10.799,10799.0 +17460,2025-03-09T05:29:20.524937-07:00,1003.6196899414062,10.797999,10797.999 +17461,2025-03-09T05:29:31.329196-07:00,1003.6038818359375,10.804259,10804.259 +17462,2025-03-09T05:29:42.132053-07:00,1003.6196899414062,10.802857,10802.857 +17463,2025-03-09T05:29:52.936939-07:00,1003.6185302734375,10.804886,10804.886 +17464,2025-03-09T05:30:03.741932-07:00,1003.6316528320312,10.804993,10804.993 +17465,2025-03-09T05:30:14.546932-07:00,1003.6513061523438,10.805,10805.0 +17466,2025-03-09T05:30:25.341948-07:00,1003.6564331054688,10.795016,10795.016 +17467,2025-03-09T05:30:36.149189-07:00,1003.6235961914062,10.807241,10807.241 +17468,2025-03-09T05:30:46.947932-07:00,1003.615966796875,10.798743,10798.743 +17469,2025-03-09T05:30:57.749945-07:00,1003.6356201171875,10.802013,10802.013 +17470,2025-03-09T05:31:08.547277-07:00,1003.6356201171875,10.797332,10797.332 +17471,2025-03-09T05:31:19.350935-07:00,1003.6422119140625,10.803658,10803.658 +17472,2025-03-09T05:31:30.153963-07:00,1003.6224975585938,10.803028,10803.028 +17473,2025-03-09T05:31:40.956081-07:00,1003.6487426757812,10.802118,10802.118 +17474,2025-03-09T05:31:51.765349-07:00,1003.66845703125,10.809268,10809.268 +17475,2025-03-09T05:32:02.565258-07:00,1003.6815795898438,10.799909,10799.909 +17476,2025-03-09T05:32:13.361251-07:00,1003.6553344726562,10.795993,10795.993 +17477,2025-03-09T05:32:24.171950-07:00,1003.640625,10.810699,10810.699 +17478,2025-03-09T05:32:34.973497-07:00,1003.66845703125,10.801547,10801.547 +17479,2025-03-09T05:32:45.766575-07:00,1003.6472778320312,10.793078,10793.078 +17480,2025-03-09T05:32:56.568355-07:00,1003.6669311523438,10.80178,10801.78 +17481,2025-03-09T05:33:07.371064-07:00,1003.6592407226562,10.802709,10802.709 +17482,2025-03-09T05:33:18.175254-07:00,1003.6931762695312,10.80419,10804.19 +17483,2025-03-09T05:33:28.971219-07:00,1003.6788940429688,10.795965,10795.965 +17484,2025-03-09T05:33:39.775006-07:00,1003.6643676757812,10.803787,10803.787 +17485,2025-03-09T05:33:50.587238-07:00,1003.7037353515625,10.812232,10812.232 +17486,2025-03-09T05:34:01.387578-07:00,1003.689453125,10.80034,10800.34 +17487,2025-03-09T05:34:12.190489-07:00,1003.6906127929688,10.802911,10802.911 +17488,2025-03-09T05:34:22.999221-07:00,1003.7025756835938,10.808732,10808.732 +17489,2025-03-09T05:34:33.799511-07:00,1003.6631469726562,10.80029,10800.29 +17490,2025-03-09T05:34:44.601918-07:00,1003.696044921875,10.802407,10802.407 +17491,2025-03-09T05:34:55.398139-07:00,1003.6945190429688,10.796221,10796.221 +17492,2025-03-09T05:35:06.207862-07:00,1003.7168579101562,10.809723,10809.723 +17493,2025-03-09T05:35:17.011398-07:00,1003.7273559570312,10.803536,10803.536 +17494,2025-03-09T05:35:27.814215-07:00,1003.7354125976562,10.802817,10802.817 +17495,2025-03-09T05:35:38.613313-07:00,1003.740478515625,10.799098,10799.098 +17496,2025-03-09T05:35:49.415928-07:00,1003.7196655273438,10.802615,10802.615 +17497,2025-03-09T05:36:00.225693-07:00,1003.7393798828125,10.809765,10809.765 +17498,2025-03-09T05:36:11.020940-07:00,1003.7196655273438,10.795247,10795.247 +17499,2025-03-09T05:36:21.825050-07:00,1003.7379150390625,10.80411,10804.11 +17500,2025-03-09T05:36:32.621930-07:00,1003.7000122070312,10.79688,10796.88 +17501,2025-03-09T05:36:43.425943-07:00,1003.7246704101562,10.804013,10804.013 +17502,2025-03-09T05:36:54.225944-07:00,1003.757568359375,10.800001,10800.001 +17503,2025-03-09T05:37:05.026930-07:00,1003.7246704101562,10.800986,10800.986 +17504,2025-03-09T05:37:15.823074-07:00,1003.7235717773438,10.796144,10796.144 +17505,2025-03-09T05:37:26.624937-07:00,1003.7235717773438,10.801863,10801.863 +17506,2025-03-09T05:37:37.427251-07:00,1003.7432861328125,10.802314,10802.314 +17507,2025-03-09T05:37:48.228948-07:00,1003.7432861328125,10.801697,10801.697 +17508,2025-03-09T05:37:59.026344-07:00,1003.7379150390625,10.797396,10797.396 +17509,2025-03-09T05:38:09.830955-07:00,1003.6892700195312,10.804611,10804.611 +17510,2025-03-09T05:38:20.627936-07:00,1003.7301635742188,10.796981,10796.981 +17511,2025-03-09T05:38:31.418639-07:00,1003.7221069335938,10.790703,10790.703 +17512,2025-03-09T05:38:42.218046-07:00,1003.6984252929688,10.799407,10799.407 +17513,2025-03-09T05:38:53.013935-07:00,1003.7012329101562,10.795889,10795.889 +17514,2025-03-09T05:39:03.813030-07:00,1003.7039184570312,10.799095,10799.095 +17515,2025-03-09T05:39:14.609084-07:00,1003.7115478515625,10.796054,10796.054 +17516,2025-03-09T05:39:25.411932-07:00,1003.6787719726562,10.802848,10802.848 +17517,2025-03-09T05:39:36.197262-07:00,1003.6721801757812,10.78533,10785.33 +17518,2025-03-09T05:39:47.002947-07:00,1003.685302734375,10.805685,10805.685 +17519,2025-03-09T05:39:57.788137-07:00,1003.7000122070312,10.78519,10785.19 +17520,2025-03-09T05:40:08.597912-07:00,1003.7181396484375,10.809775,10809.775 +17521,2025-03-09T05:40:19.394838-07:00,1003.693359375,10.796926,10796.926 +17522,2025-03-09T05:40:30.189934-07:00,1003.7207641601562,10.795096,10795.096 +17523,2025-03-09T05:40:40.997171-07:00,1003.6972045898438,10.807237,10807.237 +17524,2025-03-09T05:40:51.797938-07:00,1003.677490234375,10.800767,10800.767 +17525,2025-03-09T05:41:02.591455-07:00,1003.6369018554688,10.793517,10793.517 +17526,2025-03-09T05:41:13.389979-07:00,1003.68408203125,10.798524,10798.524 +17527,2025-03-09T05:41:24.193252-07:00,1003.6931762695312,10.803273,10803.273 +17528,2025-03-09T05:41:34.991938-07:00,1003.6800537109375,10.798686,10798.686 +17529,2025-03-09T05:41:45.787301-07:00,1003.66845703125,10.795363,10795.363 +17530,2025-03-09T05:41:56.584487-07:00,1003.6815795898438,10.797186,10797.186 +17531,2025-03-09T05:42:07.368928-07:00,1003.6695556640625,10.784441,10784.441 +17532,2025-03-09T05:42:18.174177-07:00,1003.6710815429688,10.805249,10805.249 +17533,2025-03-09T05:42:28.970938-07:00,1003.6736450195312,10.796761,10796.761 +17534,2025-03-09T05:42:39.771130-07:00,1003.6748657226562,10.800192,10800.192 +17535,2025-03-09T05:42:50.573932-07:00,1003.6682739257812,10.802802,10802.802 +17536,2025-03-09T05:43:01.369171-07:00,1003.65625,10.795239,10795.239 +17537,2025-03-09T05:43:12.167191-07:00,1003.645751953125,10.79802,10798.02 +17538,2025-03-09T05:43:22.973183-07:00,1003.6275024414062,10.805992,10805.992 +17539,2025-03-09T05:43:33.771146-07:00,1003.6575927734375,10.797963,10797.963 +17540,2025-03-09T05:43:44.565813-07:00,1003.69189453125,10.794667,10794.667 +17541,2025-03-09T05:43:55.365334-07:00,1003.6590576171875,10.799521,10799.521 +17542,2025-03-09T05:44:06.154448-07:00,1003.6551513671875,10.789114,10789.114 +17543,2025-03-09T05:44:16.953938-07:00,1003.6431274414062,10.79949,10799.49 +17544,2025-03-09T05:44:27.756936-07:00,1003.65234375,10.802998,10802.998 +17545,2025-03-09T05:44:38.559944-07:00,1003.645751953125,10.803008,10803.008 +17546,2025-03-09T05:44:49.357933-07:00,1003.634033203125,10.797989,10797.989 +17547,2025-03-09T05:45:00.159177-07:00,1003.6312255859375,10.801244,10801.244 +17548,2025-03-09T05:45:10.952947-07:00,1003.6470336914062,10.79377,10793.77 +17549,2025-03-09T05:45:21.751734-07:00,1003.6704711914062,10.798787,10798.787 +17550,2025-03-09T05:45:32.549122-07:00,1003.6507568359375,10.797388,10797.388 +17551,2025-03-09T05:45:43.343658-07:00,1003.6482543945312,10.794536,10794.536 +17552,2025-03-09T05:45:54.145023-07:00,1003.6429443359375,10.801365,10801.365 +17553,2025-03-09T05:46:04.942102-07:00,1003.5968627929688,10.797079,10797.079 +17554,2025-03-09T05:46:15.743990-07:00,1003.6470336914062,10.801888,10801.888 +17555,2025-03-09T05:46:26.541130-07:00,1003.6218872070312,10.79714,10797.14 +17556,2025-03-09T05:46:37.344990-07:00,1003.604736328125,10.80386,10803.86 +17557,2025-03-09T05:46:48.141234-07:00,1003.6271362304688,10.796244,10796.244 +17558,2025-03-09T05:46:58.939999-07:00,1003.6296997070312,10.798765,10798.765 +17559,2025-03-09T05:47:09.737219-07:00,1003.638916015625,10.79722,10797.22 +17560,2025-03-09T05:47:20.541369-07:00,1003.62841796875,10.80415,10804.15 +17561,2025-03-09T05:47:31.338365-07:00,1003.6704711914062,10.796996,10796.996 +17562,2025-03-09T05:47:42.138154-07:00,1003.6310424804688,10.799789,10799.789 +17563,2025-03-09T05:47:52.940293-07:00,1003.65185546875,10.802139,10802.139 +17564,2025-03-09T05:48:03.729933-07:00,1003.6478881835938,10.78964,10789.64 +17565,2025-03-09T05:48:14.542056-07:00,1003.6493530273438,10.812123,10812.123 +17566,2025-03-09T05:48:25.343618-07:00,1003.6504516601562,10.801562,10801.562 +17567,2025-03-09T05:48:36.139563-07:00,1003.6520385742188,10.795945,10795.945 +17568,2025-03-09T05:48:46.932973-07:00,1003.666259765625,10.79341,10793.41 +17569,2025-03-09T05:48:57.739124-07:00,1003.6768798828125,10.806151,10806.151 +17570,2025-03-09T05:49:08.537999-07:00,1003.6846923828125,10.798875,10798.875 +17571,2025-03-09T05:49:19.337211-07:00,1003.6663818359375,10.799212,10799.212 +17572,2025-03-09T05:49:30.135295-07:00,1003.6532592773438,10.798084,10798.084 +17573,2025-03-09T05:49:40.933299-07:00,1003.6543579101562,10.798004,10798.004 +17574,2025-03-09T05:49:51.734994-07:00,1003.6570434570312,10.801695,10801.695 +17575,2025-03-09T05:50:02.534369-07:00,1003.6373291015625,10.799375,10799.375 +17576,2025-03-09T05:50:13.332541-07:00,1003.6373291015625,10.798172,10798.172 +17577,2025-03-09T05:50:24.129501-07:00,1003.666259765625,10.79696,10796.96 +17578,2025-03-09T05:50:34.926195-07:00,1003.6476440429688,10.796694,10796.694 +17579,2025-03-09T05:50:45.728969-07:00,1003.62939453125,10.802774,10802.774 +17580,2025-03-09T05:50:56.522999-07:00,1003.6370849609375,10.79403,10794.03 +17581,2025-03-09T05:51:07.322156-07:00,1003.6412353515625,10.799157,10799.157 +17582,2025-03-09T05:51:18.121951-07:00,1003.6029663085938,10.799795,10799.795 +17583,2025-03-09T05:51:28.927185-07:00,1003.6095581054688,10.805234,10805.234 +17584,2025-03-09T05:51:39.718934-07:00,1003.6174926757812,10.791749,10791.749 +17585,2025-03-09T05:51:50.521931-07:00,1003.6070556640625,10.802997,10802.997 +17586,2025-03-09T05:52:01.328989-07:00,1003.5872802734375,10.807058,10807.058 +17587,2025-03-09T05:52:12.133496-07:00,1003.6070556640625,10.804507,10804.507 +17588,2025-03-09T05:52:22.930181-07:00,1003.5477905273438,10.796685,10796.685 +17589,2025-03-09T05:52:33.723219-07:00,1003.5621948242188,10.793038,10793.038 +17590,2025-03-09T05:52:44.531546-07:00,1003.5713500976562,10.808327,10808.327 +17591,2025-03-09T05:52:55.334256-07:00,1003.560791015625,10.80271,10802.71 +17592,2025-03-09T05:53:06.133262-07:00,1003.5685424804688,10.799006,10799.006 +17593,2025-03-09T05:53:16.934336-07:00,1003.5345458984375,10.801074,10801.074 +17594,2025-03-09T05:53:27.733437-07:00,1003.5159301757812,10.799101,10799.101 +17595,2025-03-09T05:53:38.537067-07:00,1003.5108032226562,10.80363,10803.63 +17596,2025-03-09T05:53:49.333984-07:00,1003.4871826171875,10.796917,10796.917 +17597,2025-03-09T05:54:00.139987-07:00,1003.4871826171875,10.806003,10806.003 +17598,2025-03-09T05:54:10.941075-07:00,1003.5211181640625,10.801088,10801.088 +17599,2025-03-09T05:54:21.738938-07:00,1003.4974975585938,10.797863,10797.863 +17600,2025-03-09T05:54:32.535610-07:00,1003.5252075195312,10.796672,10796.672 +17601,2025-03-09T05:54:43.340938-07:00,1003.5000610351562,10.805328,10805.328 +17602,2025-03-09T05:54:54.141101-07:00,1003.5172729492188,10.800163,10800.163 +17603,2025-03-09T05:55:04.934942-07:00,1003.49755859375,10.793841,10793.841 +17604,2025-03-09T05:55:15.742163-07:00,1003.4607543945312,10.807221,10807.221 +17605,2025-03-09T05:55:26.541166-07:00,1003.4880981445312,10.799003,10799.003 +17606,2025-03-09T05:55:37.334936-07:00,1003.510498046875,10.79377,10793.77 +17607,2025-03-09T05:55:48.140649-07:00,1003.5050659179688,10.805713,10805.713 +17608,2025-03-09T05:55:58.934268-07:00,1003.5156860351562,10.793619,10793.619 +17609,2025-03-09T05:56:09.742312-07:00,1003.463134765625,10.808044,10808.044 +17610,2025-03-09T05:56:20.534310-07:00,1003.4774169921875,10.791998,10791.998 +17611,2025-03-09T05:56:31.335811-07:00,1003.4883422851562,10.801501,10801.501 +17612,2025-03-09T05:56:42.137170-07:00,1003.5158081054688,10.801359,10801.359 +17613,2025-03-09T05:56:52.939140-07:00,1003.4855346679688,10.80197,10801.97 +17614,2025-03-09T05:57:03.743531-07:00,1003.4657592773438,10.804391,10804.391 +17615,2025-03-09T05:57:14.537790-07:00,1003.501220703125,10.794259,10794.259 +17616,2025-03-09T05:57:25.337948-07:00,1003.5159301757812,10.800158,10800.158 +17617,2025-03-09T05:57:36.148002-07:00,1003.5367431640625,10.810054,10810.054 +17618,2025-03-09T05:57:46.950943-07:00,1003.50390625,10.802941,10802.941 +17619,2025-03-09T05:57:57.752642-07:00,1003.5316162109375,10.801699,10801.699 +17620,2025-03-09T05:58:08.555096-07:00,1003.4790649414062,10.802454,10802.454 +17621,2025-03-09T05:58:19.366946-07:00,1003.5130615234375,10.81185,10811.85 +17622,2025-03-09T05:58:30.163344-07:00,1003.5145263671875,10.796398,10796.398 +17623,2025-03-09T05:58:40.977309-07:00,1003.503662109375,10.813965,10813.965 +17624,2025-03-09T05:58:51.779038-07:00,1003.5062255859375,10.801729,10801.729 +17625,2025-03-09T05:59:02.587262-07:00,1003.4996948242188,10.808224,10808.224 +17626,2025-03-09T05:59:13.391489-07:00,1003.5274047851562,10.804227,10804.227 +17627,2025-03-09T05:59:24.201289-07:00,1003.5154418945312,10.8098,10809.8 +17628,2025-03-09T05:59:34.999239-07:00,1003.516845703125,10.79795,10797.95 +17629,2025-03-09T05:59:45.809403-07:00,1003.516845703125,10.810164,10810.164 +17630,2025-03-09T05:59:56.605242-07:00,1003.5523681640625,10.795839,10795.839 +17631,2025-03-09T06:00:07.407252-07:00,1003.5271606445312,10.80201,10802.01 +17632,2025-03-09T06:00:18.202293-07:00,1003.5271606445312,10.795041,10795.041 +17633,2025-03-09T06:00:29.010010-07:00,1003.5286865234375,10.807717,10807.717 +17634,2025-03-09T06:00:39.802940-07:00,1003.5286865234375,10.79293,10792.93 +17635,2025-03-09T06:00:50.609168-07:00,1003.5298461914062,10.806228,10806.228 +17636,2025-03-09T06:01:01.413262-07:00,1003.5443725585938,10.804094,10804.094 +17637,2025-03-09T06:01:12.215988-07:00,1003.5324096679688,10.802726,10802.726 +17638,2025-03-09T06:01:23.014232-07:00,1003.574462890625,10.798244,10798.244 +17639,2025-03-09T06:01:33.823936-07:00,1003.5415649414062,10.809704,10809.704 +17640,2025-03-09T06:01:44.634241-07:00,1003.5415649414062,10.810305,10810.305 +17641,2025-03-09T06:01:55.435760-07:00,1003.544189453125,10.801519,10801.519 +17642,2025-03-09T06:02:06.252210-07:00,1003.5628051757812,10.81645,10816.45 +17643,2025-03-09T06:02:17.054118-07:00,1003.5716552734375,10.801908,10801.908 +17644,2025-03-09T06:02:27.861945-07:00,1003.5664672851562,10.807827,10807.827 +17645,2025-03-09T06:02:38.668932-07:00,1003.5545043945312,10.806987,10806.987 +17646,2025-03-09T06:02:49.476938-07:00,1003.569091796875,10.808006,10808.006 +17647,2025-03-09T06:03:00.279164-07:00,1003.552001953125,10.802226,10802.226 +17648,2025-03-09T06:03:11.083938-07:00,1003.5677490234375,10.804774,10804.774 +17649,2025-03-09T06:03:21.890090-07:00,1003.5689086914062,10.806152,10806.152 +17650,2025-03-09T06:03:32.692932-07:00,1003.5426025390625,10.802842,10802.842 +17651,2025-03-09T06:03:43.491174-07:00,1003.5440673828125,10.798242,10798.242 +17652,2025-03-09T06:03:54.302062-07:00,1003.5861206054688,10.810888,10810.888 +17653,2025-03-09T06:04:05.109212-07:00,1003.5254516601562,10.80715,10807.15 +17654,2025-03-09T06:04:15.918013-07:00,1003.5806274414062,10.808801,10808.801 +17655,2025-03-09T06:04:26.726446-07:00,1003.5886840820312,10.808433,10808.433 +17656,2025-03-09T06:04:37.528925-07:00,1003.556884765625,10.802479,10802.479 +17657,2025-03-09T06:04:48.339972-07:00,1003.5635375976562,10.811047,10811.047 +17658,2025-03-09T06:04:59.143269-07:00,1003.575439453125,10.803297,10803.297 +17659,2025-03-09T06:05:09.947683-07:00,1003.5792236328125,10.804414,10804.414 +17660,2025-03-09T06:05:20.749376-07:00,1003.5806884765625,10.801693,10801.693 +17661,2025-03-09T06:05:31.568936-07:00,1003.5595092773438,10.81956,10819.56 +17662,2025-03-09T06:05:42.458924-07:00,1003.5477905273438,10.889988,10889.988 +17663,2025-03-09T06:05:53.262708-07:00,1003.5621337890625,10.803784,10803.784 +17664,2025-03-09T06:06:04.069680-07:00,1003.5555419921875,10.806972,10806.972 +17665,2025-03-09T06:06:14.868631-07:00,1003.53466796875,10.798951,10798.951 +17666,2025-03-09T06:06:25.671000-07:00,1003.5423583984375,10.802369,10802.369 +17667,2025-03-09T06:06:36.480577-07:00,1003.5226440429688,10.809577,10809.577 +17668,2025-03-09T06:06:47.285573-07:00,1003.532958984375,10.804996,10804.996 +17669,2025-03-09T06:06:58.088572-07:00,1003.5369262695312,10.802999,10802.999 +17670,2025-03-09T06:07:08.894857-07:00,1003.5449829101562,10.806285,10806.285 +17671,2025-03-09T06:07:19.699855-07:00,1003.5449829101562,10.804998,10804.998 +17672,2025-03-09T06:07:30.502626-07:00,1003.5253295898438,10.802771,10802.771 +17673,2025-03-09T06:07:41.318803-07:00,1003.5618896484375,10.816177,10816.177 +17674,2025-03-09T06:07:52.115575-07:00,1003.534423828125,10.796772,10796.772 +17675,2025-03-09T06:08:02.924563-07:00,1003.5501708984375,10.808988,10808.988 +17676,2025-03-09T06:08:13.734580-07:00,1003.52392578125,10.810017,10810.017 +17677,2025-03-09T06:08:24.540778-07:00,1003.5330200195312,10.806198,10806.198 +17678,2025-03-09T06:08:35.343547-07:00,1003.5604858398438,10.802769,10802.769 +17679,2025-03-09T06:08:46.147567-07:00,1003.5316162109375,10.80402,10804.02 +17680,2025-03-09T06:08:56.951635-07:00,1003.5448608398438,10.804068,10804.068 +17681,2025-03-09T06:09:07.767658-07:00,1003.4999389648438,10.816023,10816.023 +17682,2025-03-09T06:09:18.567839-07:00,1003.498779296875,10.800181,10800.181 +17683,2025-03-09T06:09:29.374664-07:00,1003.4959106445312,10.806825,10806.825 +17684,2025-03-09T06:09:40.181720-07:00,1003.5379638671875,10.807056,10807.056 +17685,2025-03-09T06:09:50.980935-07:00,1003.5142211914062,10.799215,10799.215 +17686,2025-03-09T06:10:01.780895-07:00,1003.5076293945312,10.79996,10799.96 +17687,2025-03-09T06:10:12.583922-07:00,1003.5339965820312,10.803027,10803.027 +17688,2025-03-09T06:10:23.395631-07:00,1003.5208740234375,10.811709,10811.709 +17689,2025-03-09T06:10:34.200242-07:00,1003.541748046875,10.804611,10804.611 +17690,2025-03-09T06:10:44.995082-07:00,1003.5563354492188,10.79484,10794.84 +17691,2025-03-09T06:10:55.798702-07:00,1003.5103149414062,10.80362,10803.62 +17692,2025-03-09T06:11:06.590825-07:00,1003.5457763671875,10.792123,10792.123 +17693,2025-03-09T06:11:17.393755-07:00,1003.5245361328125,10.80293,10802.93 +17694,2025-03-09T06:11:28.196721-07:00,1003.5062255859375,10.802966,10802.966 +17695,2025-03-09T06:11:39.006786-07:00,1003.53515625,10.810065,10810.065 +17696,2025-03-09T06:11:49.802772-07:00,1003.523193359375,10.795986,10795.986 +17697,2025-03-09T06:12:00.612995-07:00,1003.5363159179688,10.810223,10810.223 +17698,2025-03-09T06:12:11.417854-07:00,1003.552001953125,10.804859,10804.859 +17699,2025-03-09T06:12:22.225659-07:00,1003.53125,10.807805,10807.805 +17700,2025-03-09T06:12:33.027872-07:00,1003.5075073242188,10.802213,10802.213 +17701,2025-03-09T06:12:43.831579-07:00,1003.5309448242188,10.803707,10803.707 +17702,2025-03-09T06:12:54.638869-07:00,1003.5374755859375,10.80729,10807.29 +17703,2025-03-09T06:13:05.433101-07:00,1003.5203857421875,10.794232,10794.232 +17704,2025-03-09T06:13:16.241871-07:00,1003.561279296875,10.80877,10808.77 +17705,2025-03-09T06:13:27.044677-07:00,1003.569091796875,10.802806,10802.806 +17706,2025-03-09T06:13:37.832122-07:00,1003.5426635742188,10.787445,10787.445 +17707,2025-03-09T06:13:48.639564-07:00,1003.5650024414062,10.807442,10807.442 +17708,2025-03-09T06:13:59.426559-07:00,1003.5255737304688,10.786995,10786.995 +17709,2025-03-09T06:14:10.225035-07:00,1003.5387573242188,10.798476,10798.476 +17710,2025-03-09T06:14:21.020895-07:00,1003.566162109375,10.79586,10795.86 +17711,2025-03-09T06:14:31.818844-07:00,1003.552978515625,10.797949,10797.949 +17712,2025-03-09T06:14:42.617870-07:00,1003.529296875,10.799026,10799.026 +17713,2025-03-09T06:14:53.421839-07:00,1003.537353515625,10.803969,10803.969 +17714,2025-03-09T06:15:04.228930-07:00,1003.51611328125,10.807091,10807.091 +17715,2025-03-09T06:15:15.026968-07:00,1003.5504760742188,10.798038,10798.038 +17716,2025-03-09T06:15:25.829846-07:00,1003.5384521484375,10.802878,10802.878 +17717,2025-03-09T06:15:36.639586-07:00,1003.5647583007812,10.80974,10809.74 +17718,2025-03-09T06:15:47.435594-07:00,1003.5936889648438,10.796008,10796.008 +17719,2025-03-09T06:15:58.240111-07:00,1003.5673217773438,10.804517,10804.517 +17720,2025-03-09T06:16:09.036904-07:00,1003.5885009765625,10.796793,10796.793 +17721,2025-03-09T06:16:19.840552-07:00,1003.6017456054688,10.803648,10803.648 +17722,2025-03-09T06:16:30.636803-07:00,1003.6017456054688,10.796251,10796.251 +17723,2025-03-09T06:16:41.434582-07:00,1003.615966796875,10.797779,10797.779 +17724,2025-03-09T06:16:52.238572-07:00,1003.5885009765625,10.80399,10803.99 +17725,2025-03-09T06:17:03.035970-07:00,1003.604248046875,10.797398,10797.398 +17726,2025-03-09T06:17:13.834677-07:00,1003.5962524414062,10.798707,10798.707 +17727,2025-03-09T06:17:24.634569-07:00,1003.591064453125,10.799892,10799.892 +17728,2025-03-09T06:17:35.434814-07:00,1003.591064453125,10.800245,10800.245 +17729,2025-03-09T06:17:46.243884-07:00,1003.591064453125,10.80907,10809.07 +17730,2025-03-09T06:17:57.046131-07:00,1003.604248046875,10.802247,10802.247 +17731,2025-03-09T06:18:07.853564-07:00,1003.5845336914062,10.807433,10807.433 +17732,2025-03-09T06:18:18.657779-07:00,1003.6185913085938,10.804215,10804.215 +17733,2025-03-09T06:18:29.462574-07:00,1003.591064453125,10.804795,10804.795 +17734,2025-03-09T06:18:40.259701-07:00,1003.5988159179688,10.797127,10797.127 +17735,2025-03-09T06:18:51.064605-07:00,1003.600341796875,10.804904,10804.904 +17736,2025-03-09T06:19:01.860645-07:00,1003.59375,10.79604,10796.04 +17737,2025-03-09T06:19:12.663798-07:00,1003.612060546875,10.803153,10803.153 +17738,2025-03-09T06:19:23.468559-07:00,1003.6160278320312,10.804761,10804.761 +17739,2025-03-09T06:19:34.270032-07:00,1003.5948486328125,10.801473,10801.473 +17740,2025-03-09T06:19:45.069575-07:00,1003.623779296875,10.799543,10799.543 +17741,2025-03-09T06:19:55.867958-07:00,1003.6094360351562,10.798383,10798.383 +17742,2025-03-09T06:20:06.676621-07:00,1003.6292114257812,10.808663,10808.663 +17743,2025-03-09T06:20:17.472939-07:00,1003.623779296875,10.796318,10796.318 +17744,2025-03-09T06:20:28.281903-07:00,1003.623779296875,10.808964,10808.964 +17745,2025-03-09T06:20:39.079930-07:00,1003.6251831054688,10.798027,10798.027 +17746,2025-03-09T06:20:49.878191-07:00,1003.6515502929688,10.798261,10798.261 +17747,2025-03-09T06:21:00.692794-07:00,1003.6251831054688,10.814603,10814.603 +17748,2025-03-09T06:21:11.494582-07:00,1003.6815795898438,10.801788,10801.788 +17749,2025-03-09T06:21:22.293585-07:00,1003.6526489257812,10.799003,10799.003 +17750,2025-03-09T06:21:33.098813-07:00,1003.647216796875,10.805228,10805.228 +17751,2025-03-09T06:21:43.900934-07:00,1003.6461181640625,10.802121,10802.121 +17752,2025-03-09T06:21:54.713570-07:00,1003.6800537109375,10.812636,10812.636 +17753,2025-03-09T06:22:05.512576-07:00,1003.6526489257812,10.799006,10799.006 +17754,2025-03-09T06:22:16.310577-07:00,1003.66845703125,10.798001,10798.001 +17755,2025-03-09T06:22:27.111918-07:00,1003.6749877929688,10.801341,10801.341 +17756,2025-03-09T06:22:37.910117-07:00,1003.6486206054688,10.798199,10798.199 +17757,2025-03-09T06:22:48.718898-07:00,1003.66845703125,10.808781,10808.781 +17758,2025-03-09T06:22:59.517846-07:00,1003.6447143554688,10.798948,10798.948 +17759,2025-03-09T06:23:10.323967-07:00,1003.6670532226562,10.806121,10806.121 +17760,2025-03-09T06:23:21.128838-07:00,1003.660400390625,10.804871,10804.871 +17761,2025-03-09T06:23:31.931963-07:00,1003.6260986328125,10.803125,10803.125 +17762,2025-03-09T06:23:42.739709-07:00,1003.6681518554688,10.807746,10807.746 +17763,2025-03-09T06:23:53.549788-07:00,1003.616943359375,10.810079,10810.079 +17764,2025-03-09T06:24:04.350817-07:00,1003.643310546875,10.801029,10801.029 +17765,2025-03-09T06:24:15.158567-07:00,1003.69189453125,10.80775,10807.75 +17766,2025-03-09T06:24:25.965572-07:00,1003.6721801757812,10.807005,10807.005 +17767,2025-03-09T06:24:36.773641-07:00,1003.6787719726562,10.808069,10808.069 +17768,2025-03-09T06:24:47.573853-07:00,1003.6312255859375,10.800212,10800.212 +17769,2025-03-09T06:24:58.375869-07:00,1003.6656494140625,10.802016,10802.016 +17770,2025-03-09T06:25:09.176626-07:00,1003.6864013671875,10.800757,10800.757 +17771,2025-03-09T06:25:19.987873-07:00,1003.6732788085938,10.811247,10811.247 +17772,2025-03-09T06:25:30.793786-07:00,1003.66015625,10.805913,10805.913 +17773,2025-03-09T06:25:41.594885-07:00,1003.6470336914062,10.801099,10801.099 +17774,2025-03-09T06:25:52.393559-07:00,1003.6510009765625,10.798674,10798.674 +17775,2025-03-09T06:26:03.195940-07:00,1003.6824951171875,10.802381,10802.381 +17776,2025-03-09T06:26:14.001766-07:00,1003.6838989257812,10.805826,10805.826 +17777,2025-03-09T06:26:24.796342-07:00,1003.6981811523438,10.794576,10794.576 +17778,2025-03-09T06:26:35.602565-07:00,1003.6443481445312,10.806223,10806.223 +17779,2025-03-09T06:26:46.396764-07:00,1003.6849975585938,10.794199,10794.199 +17780,2025-03-09T06:26:57.196024-07:00,1003.678466796875,10.79926,10799.26 +17781,2025-03-09T06:27:07.998914-07:00,1003.6744384765625,10.80289,10802.89 +17782,2025-03-09T06:27:18.801836-07:00,1003.6415405273438,10.802922,10802.922 +17783,2025-03-09T06:27:29.603958-07:00,1003.6546630859375,10.802122,10802.122 +17784,2025-03-09T06:27:40.396434-07:00,1003.6573486328125,10.792476,10792.476 +17785,2025-03-09T06:27:51.200813-07:00,1003.677001953125,10.804379,10804.379 +17786,2025-03-09T06:28:02.007893-07:00,1003.6847534179688,10.80708,10807.08 +17787,2025-03-09T06:28:12.811476-07:00,1003.6865844726562,10.803583,10803.583 +17788,2025-03-09T06:28:23.610940-07:00,1003.6704711914062,10.799464,10799.464 +17789,2025-03-09T06:28:34.413290-07:00,1003.674560546875,10.80235,10802.35 +17790,2025-03-09T06:28:45.217746-07:00,1003.6638793945312,10.804456,10804.456 +17791,2025-03-09T06:28:56.019544-07:00,1003.65625,10.801798,10801.798 +17792,2025-03-09T06:29:06.817872-07:00,1003.6507568359375,10.798328,10798.328 +17793,2025-03-09T06:29:17.622570-07:00,1003.649658203125,10.804698,10804.698 +17794,2025-03-09T06:29:28.429051-07:00,1003.6442260742188,10.806481,10806.481 +17795,2025-03-09T06:29:39.232800-07:00,1003.6796875,10.803749,10803.749 +17796,2025-03-09T06:29:50.023573-07:00,1003.6456298828125,10.790773,10790.773 +17797,2025-03-09T06:30:00.827806-07:00,1003.6521606445312,10.804233,10804.233 +17798,2025-03-09T06:30:11.625563-07:00,1003.6325073242188,10.797757,10797.757 +17799,2025-03-09T06:30:11.852901-07:00,1003.6336059570312,0.227338,227.338 +17800,2025-03-09T06:30:22.433093-07:00,1003.6416625976562,10.580192,10580.192 +17801,2025-03-09T06:30:33.237712-07:00,1003.6493530273438,10.804619,10804.619 +17802,2025-03-09T06:30:44.040854-07:00,1003.6705322265625,10.803142,10803.142 +17803,2025-03-09T06:30:54.848606-07:00,1003.6559448242188,10.807752,10807.752 +17804,2025-03-09T06:31:05.646784-07:00,1003.623046875,10.798178,10798.178 +17805,2025-03-09T06:31:16.463034-07:00,1003.6442260742188,10.81625,10816.25 +17806,2025-03-09T06:31:27.263476-07:00,1003.6453247070312,10.800442,10800.442 +17807,2025-03-09T06:31:38.062792-07:00,1003.6270141601562,10.799316,10799.316 +17808,2025-03-09T06:31:48.873870-07:00,1003.6387329101562,10.811078,10811.078 +17809,2025-03-09T06:31:59.679903-07:00,1003.6138916015625,10.806033,10806.033 +17810,2025-03-09T06:32:10.484565-07:00,1003.6204833984375,10.804662,10804.662 +17811,2025-03-09T06:32:21.274625-07:00,1003.6204833984375,10.79006,10790.06 +17812,2025-03-09T06:32:32.080565-07:00,1003.634765625,10.80594,10805.94 +17813,2025-03-09T06:32:42.881633-07:00,1003.64794921875,10.801068,10801.068 +17814,2025-03-09T06:32:53.692562-07:00,1003.6204833984375,10.810929,10810.929 +17815,2025-03-09T06:33:04.489605-07:00,1003.63623046875,10.797043,10797.043 +17816,2025-03-09T06:33:15.297580-07:00,1003.6559448242188,10.807975,10807.975 +17817,2025-03-09T06:33:26.101770-07:00,1003.62158203125,10.80419,10804.19 +17818,2025-03-09T06:33:36.906051-07:00,1003.6716918945312,10.804281,10804.281 +17819,2025-03-09T06:33:47.702885-07:00,1003.6439208984375,10.796834,10796.834 +17820,2025-03-09T06:33:58.513939-07:00,1003.6716918945312,10.811054,10811.054 +17821,2025-03-09T06:34:09.314309-07:00,1003.6925659179688,10.80037,10800.37 +17822,2025-03-09T06:34:20.110771-07:00,1003.6727905273438,10.796462,10796.462 +17823,2025-03-09T06:34:30.914745-07:00,1003.7214965820312,10.803974,10803.974 +17824,2025-03-09T06:34:41.724382-07:00,1003.6951293945312,10.809637,10809.637 +17825,2025-03-09T06:34:52.527099-07:00,1003.7017211914062,10.802717,10802.717 +17826,2025-03-09T06:35:03.331488-07:00,1003.6885986328125,10.804389,10804.389 +17827,2025-03-09T06:35:14.134462-07:00,1003.7134399414062,10.802974,10802.974 +17828,2025-03-09T06:35:24.948868-07:00,1003.7357788085938,10.814406,10814.406 +17829,2025-03-09T06:35:35.746886-07:00,1003.7028198242188,10.798018,10798.018 +17830,2025-03-09T06:35:46.537576-07:00,1003.7240600585938,10.79069,10790.69 +17831,2025-03-09T06:35:57.348927-07:00,1003.68310546875,10.811351,10811.351 +17832,2025-03-09T06:36:08.155773-07:00,1003.717529296875,10.806846,10806.846 +17833,2025-03-09T06:36:18.959189-07:00,1003.689697265625,10.803416,10803.416 +17834,2025-03-09T06:36:29.756478-07:00,1003.7042846679688,10.797289,10797.289 +17835,2025-03-09T06:36:40.562386-07:00,1003.717529296875,10.805908,10805.908 +17836,2025-03-09T06:36:51.374229-07:00,1003.67138671875,10.811843,10811.843 +17837,2025-03-09T06:37:02.173752-07:00,1003.70947265625,10.799523,10799.523 +17838,2025-03-09T06:37:12.980123-07:00,1003.6857299804688,10.806371,10806.371 +17839,2025-03-09T06:37:23.791813-07:00,1003.7042846679688,10.81169,10811.69 +17840,2025-03-09T06:37:34.595887-07:00,1003.7251586914062,10.804074,10804.074 +17841,2025-03-09T06:37:45.397988-07:00,1003.6923217773438,10.802101,10802.101 +17842,2025-03-09T06:37:56.208723-07:00,1003.6845092773438,10.810735,10810.735 +17843,2025-03-09T06:38:07.013777-07:00,1003.69775390625,10.805054,10805.054 +17844,2025-03-09T06:38:17.812582-07:00,1003.7054443359375,10.798805,10798.805 +17845,2025-03-09T06:38:28.616843-07:00,1003.7042846679688,10.804261,10804.261 +17846,2025-03-09T06:38:39.419565-07:00,1003.717529296875,10.802722,10802.722 +17847,2025-03-09T06:38:50.226573-07:00,1003.72265625,10.807008,10807.008 +17848,2025-03-09T06:39:01.037809-07:00,1003.7383422851562,10.811236,10811.236 +17849,2025-03-09T06:39:11.837703-07:00,1003.7489013671875,10.799894,10799.894 +17850,2025-03-09T06:39:22.639728-07:00,1003.759521484375,10.802025,10802.025 +17851,2025-03-09T06:39:33.446676-07:00,1003.759521484375,10.806948,10806.948 +17852,2025-03-09T06:39:44.264305-07:00,1003.7634887695312,10.817629,10817.629 +17853,2025-03-09T06:39:55.070938-07:00,1003.7383422851562,10.806633,10806.633 +17854,2025-03-09T06:40:05.874984-07:00,1003.759521484375,10.804046,10804.046 +17855,2025-03-09T06:40:16.682606-07:00,1003.77783203125,10.807622,10807.622 +17856,2025-03-09T06:40:27.481906-07:00,1003.799072265625,10.7993,10799.3 +17857,2025-03-09T06:40:38.295203-07:00,1003.7804565429688,10.813297,10813.297 +17858,2025-03-09T06:40:49.100135-07:00,1003.76611328125,10.804932,10804.932 +17859,2025-03-09T06:40:59.901104-07:00,1003.7672729492188,10.800969,10800.969 +17860,2025-03-09T06:41:10.710571-07:00,1003.7804565429688,10.809467,10809.467 +17861,2025-03-09T06:41:21.519873-07:00,1003.8067016601562,10.809302,10809.302 +17862,2025-03-09T06:41:32.316575-07:00,1003.796142578125,10.796702,10796.702 +17863,2025-03-09T06:41:43.120001-07:00,1003.7804565429688,10.803426,10803.426 +17864,2025-03-09T06:41:53.930582-07:00,1003.8304443359375,10.810581,10810.581 +17865,2025-03-09T06:42:04.732832-07:00,1003.810791015625,10.80225,10802.25 +17866,2025-03-09T06:42:15.540550-07:00,1003.7987670898438,10.807718,10807.718 +17867,2025-03-09T06:42:26.339576-07:00,1003.7976684570312,10.799026,10799.026 +17868,2025-03-09T06:42:37.143632-07:00,1003.8067016601562,10.804056,10804.056 +17869,2025-03-09T06:42:47.952810-07:00,1003.8132934570312,10.809178,10809.178 +17870,2025-03-09T06:42:58.759577-07:00,1003.8067016601562,10.806767,10806.767 +17871,2025-03-09T06:43:09.559569-07:00,1003.8001708984375,10.799992,10799.992 +17872,2025-03-09T06:43:20.362573-07:00,1003.7804565429688,10.803004,10803.004 +17873,2025-03-09T06:43:31.174808-07:00,1003.807861328125,10.812235,10812.235 +17874,2025-03-09T06:43:41.973581-07:00,1003.796142578125,10.798773,10798.773 +17875,2025-03-09T06:43:52.776756-07:00,1003.8052978515625,10.803175,10803.175 +17876,2025-03-09T06:44:03.593560-07:00,1003.8052978515625,10.816804,10816.804 +17877,2025-03-09T06:44:14.396617-07:00,1003.78564453125,10.803057,10803.057 +17878,2025-03-09T06:44:25.203435-07:00,1003.8064575195312,10.806818,10806.818 +17879,2025-03-09T06:44:35.994875-07:00,1003.80908203125,10.79144,10791.44 +17880,2025-03-09T06:44:46.811012-07:00,1003.8181762695312,10.816137,10816.137 +17881,2025-03-09T06:44:57.607130-07:00,1003.8035888671875,10.796118,10796.118 +17882,2025-03-09T06:45:08.422447-07:00,1003.8101806640625,10.815317,10815.317 +17883,2025-03-09T06:45:19.229208-07:00,1003.80615234375,10.806761,10806.761 +17884,2025-03-09T06:45:30.034950-07:00,1003.7615356445312,10.805742,10805.742 +17885,2025-03-09T06:45:40.844639-07:00,1003.8153076171875,10.809689,10809.689 +17886,2025-03-09T06:45:51.647108-07:00,1003.786376953125,10.802469,10802.469 +17887,2025-03-09T06:46:02.451583-07:00,1003.7824096679688,10.804475,10804.475 +17888,2025-03-09T06:46:13.260581-07:00,1003.77587890625,10.808998,10808.998 +17889,2025-03-09T06:46:24.067579-07:00,1003.7586669921875,10.806998,10806.998 +17890,2025-03-09T06:46:34.879797-07:00,1003.7743530273438,10.812218,10812.218 +17891,2025-03-09T06:46:45.684807-07:00,1003.781005859375,10.80501,10805.01 +17892,2025-03-09T06:46:56.495799-07:00,1003.7626342773438,10.810992,10810.992 +17893,2025-03-09T06:47:07.298719-07:00,1003.750732421875,10.80292,10802.92 +17894,2025-03-09T06:47:18.101625-07:00,1003.7374877929688,10.802906,10802.906 +17895,2025-03-09T06:47:28.910972-07:00,1003.779541015625,10.809347,10809.347 +17896,2025-03-09T06:47:39.726870-07:00,1003.7546997070312,10.815898,10815.898 +17897,2025-03-09T06:47:50.527964-07:00,1003.7689819335938,10.801094,10801.094 +17898,2025-03-09T06:48:01.337628-07:00,1003.7546997070312,10.809664,10809.664 +17899,2025-03-09T06:48:12.146835-07:00,1003.7704467773438,10.809207,10809.207 +17900,2025-03-09T06:48:22.955572-07:00,1003.7704467773438,10.808737,10808.737 +17901,2025-03-09T06:48:33.759562-07:00,1003.7835693359375,10.80399,10803.99 +17902,2025-03-09T06:48:44.576194-07:00,1003.7715454101562,10.816632,10816.632 +17903,2025-03-09T06:48:55.375870-07:00,1003.7518920898438,10.799676,10799.676 +17904,2025-03-09T06:49:06.187571-07:00,1003.774169921875,10.811701,10811.701 +17905,2025-03-09T06:49:17.001882-07:00,1003.779296875,10.814311,10814.311 +17906,2025-03-09T06:49:27.810178-07:00,1003.7412719726562,10.808296,10808.296 +17907,2025-03-09T06:49:38.618566-07:00,1003.719970703125,10.808388,10808.388 +17908,2025-03-09T06:49:49.415895-07:00,1003.7620849609375,10.797329,10797.329 +17909,2025-03-09T06:50:00.217862-07:00,1003.7346801757812,10.801967,10801.967 +17910,2025-03-09T06:50:11.029972-07:00,1003.75439453125,10.81211,10812.11 +17911,2025-03-09T06:50:21.830982-07:00,1003.7412719726562,10.80101,10801.01 +17912,2025-03-09T06:50:32.636630-07:00,1003.7555541992188,10.805648,10805.648 +17913,2025-03-09T06:50:43.438707-07:00,1003.729248046875,10.802077,10802.077 +17914,2025-03-09T06:50:54.235993-07:00,1003.7412719726562,10.797286,10797.286 +17915,2025-03-09T06:51:05.044571-07:00,1003.7281494140625,10.808578,10808.578 +17916,2025-03-09T06:51:15.860630-07:00,1003.716064453125,10.816059,10816.059 +17917,2025-03-09T06:51:26.661573-07:00,1003.7214965820312,10.800943,10800.943 +17918,2025-03-09T06:51:37.462261-07:00,1003.716064453125,10.800688,10800.688 +17919,2025-03-09T06:51:48.277834-07:00,1003.716064453125,10.815573,10815.573 +17920,2025-03-09T06:51:59.078570-07:00,1003.6962280273438,10.800736,10800.736 +17921,2025-03-09T06:52:09.894582-07:00,1003.70947265625,10.816012,10816.012 +17922,2025-03-09T06:52:20.702584-07:00,1003.702880859375,10.808002,10808.002 +17923,2025-03-09T06:52:31.505887-07:00,1003.7068481445312,10.803303,10803.303 +17924,2025-03-09T06:52:42.303741-07:00,1003.7149047851562,10.797854,10797.854 +17925,2025-03-09T06:52:53.111255-07:00,1003.708251953125,10.807514,10807.514 +17926,2025-03-09T06:53:03.916678-07:00,1003.708251953125,10.805423,10805.423 +17927,2025-03-09T06:53:14.725255-07:00,1003.7214965820312,10.808577,10808.577 +17928,2025-03-09T06:53:25.528076-07:00,1003.729248046875,10.802821,10802.821 +17929,2025-03-09T06:53:36.337043-07:00,1003.708251953125,10.808967,10808.967 +17930,2025-03-09T06:53:47.141631-07:00,1003.708251953125,10.804588,10804.588 +17931,2025-03-09T06:53:57.944935-07:00,1003.7017211914062,10.803304,10803.304 +17932,2025-03-09T06:54:08.749564-07:00,1003.69775390625,10.804629,10804.629 +17933,2025-03-09T06:54:19.561148-07:00,1003.7306518554688,10.811584,10811.584 +17934,2025-03-09T06:54:30.374576-07:00,1003.7423706054688,10.813428,10813.428 +17935,2025-03-09T06:54:41.179583-07:00,1003.70947265625,10.805007,10805.007 +17936,2025-03-09T06:54:51.992565-07:00,1003.729248046875,10.812982,10812.982 +17937,2025-03-09T06:55:02.806172-07:00,1003.72265625,10.813607,10813.607 +17938,2025-03-09T06:55:13.607198-07:00,1003.7357788085938,10.801026,10801.026 +17939,2025-03-09T06:55:24.414885-07:00,1003.708251953125,10.807687,10807.687 +17940,2025-03-09T06:55:35.230847-07:00,1003.7068481445312,10.815962,10815.962 +17941,2025-03-09T06:55:46.031462-07:00,1003.7503662109375,10.800615,10800.615 +17942,2025-03-09T06:55:56.845582-07:00,1003.6951293945312,10.81412,10814.12 +17943,2025-03-09T06:56:07.650576-07:00,1003.7149047851562,10.804994,10804.994 +17944,2025-03-09T06:56:18.462560-07:00,1003.7306518554688,10.811984,10811.984 +17945,2025-03-09T06:56:29.266572-07:00,1003.7240600585938,10.804012,10804.012 +17946,2025-03-09T06:56:40.067585-07:00,1003.7398681640625,10.801013,10801.013 +17947,2025-03-09T06:56:50.873575-07:00,1003.7185668945312,10.80599,10805.99 +17948,2025-03-09T06:57:01.689506-07:00,1003.69775390625,10.815931,10815.931 +17949,2025-03-09T06:57:12.492451-07:00,1003.7200927734375,10.802945,10802.945 +17950,2025-03-09T06:57:23.309567-07:00,1003.7332763671875,10.817116,10817.116 +17951,2025-03-09T06:57:34.111122-07:00,1003.734375,10.801555,10801.555 +17952,2025-03-09T06:57:44.931575-07:00,1003.70947265625,10.820453,10820.453 +17953,2025-03-09T06:57:55.736569-07:00,1003.72265625,10.804994,10804.994 +17954,2025-03-09T06:58:06.549720-07:00,1003.7318115234375,10.813151,10813.151 +17955,2025-03-09T06:58:17.357629-07:00,1003.7658081054688,10.807909,10807.909 +17956,2025-03-09T06:58:28.170926-07:00,1003.7302856445312,10.813297,10813.297 +17957,2025-03-09T06:58:38.975119-07:00,1003.7185668945312,10.804193,10804.193 +17958,2025-03-09T06:58:49.792298-07:00,1003.727783203125,10.817179,10817.179 +17959,2025-03-09T06:59:00.596575-07:00,1003.701416015625,10.804277,10804.277 +17960,2025-03-09T06:59:11.403579-07:00,1003.701416015625,10.807004,10807.004 +17961,2025-03-09T06:59:22.217722-07:00,1003.709228515625,10.814143,10814.143 +17962,2025-03-09T06:59:33.021889-07:00,1003.7315063476562,10.804167,10804.167 +17963,2025-03-09T06:59:43.836833-07:00,1003.7197875976562,10.814944,10814.944 +17964,2025-03-09T06:59:54.646082-07:00,1003.7537231445312,10.809249,10809.249 +17965,2025-03-09T07:00:05.456987-07:00,1003.7486572265625,10.810905,10810.905 +17966,2025-03-09T07:00:16.269583-07:00,1003.7197875976562,10.812596,10812.596 +17967,2025-03-09T07:00:27.072581-07:00,1003.71826171875,10.802998,10802.998 +17968,2025-03-09T07:00:37.892570-07:00,1003.71826171875,10.819989,10819.989 +17969,2025-03-09T07:00:48.695946-07:00,1003.7354736328125,10.803376,10803.376 +17970,2025-03-09T07:00:59.503575-07:00,1003.7274780273438,10.807629,10807.629 +17971,2025-03-09T07:01:10.311647-07:00,1003.709228515625,10.808072,10808.072 +17972,2025-03-09T07:01:21.118123-07:00,1003.7103271484375,10.806476,10806.476 +17973,2025-03-09T07:01:31.930856-07:00,1003.744384765625,10.812733,10812.733 +17974,2025-03-09T07:01:42.738237-07:00,1003.7025756835938,10.807381,10807.381 +17975,2025-03-09T07:01:53.546639-07:00,1003.7552490234375,10.808402,10808.402 +17976,2025-03-09T07:02:04.353565-07:00,1003.72998046875,10.806926,10806.926 +17977,2025-03-09T07:02:15.160565-07:00,1003.7234497070312,10.807,10807.0 +17978,2025-03-09T07:02:25.965585-07:00,1003.7025756835938,10.80502,10805.02 +17979,2025-03-09T07:02:36.782710-07:00,1003.6838989257812,10.817125,10817.125 +17980,2025-03-09T07:02:47.588826-07:00,1003.7103271484375,10.806116,10806.116 +17981,2025-03-09T07:02:58.403127-07:00,1003.7037353515625,10.814301,10814.301 +17982,2025-03-09T07:03:09.200598-07:00,1003.6587524414062,10.797471,10797.471 +17983,2025-03-09T07:03:20.009476-07:00,1003.6983032226562,10.808878,10808.878 +17984,2025-03-09T07:03:30.813591-07:00,1003.7260131835938,10.804115,10804.115 +17985,2025-03-09T07:03:41.622901-07:00,1003.67333984375,10.80931,10809.31 +17986,2025-03-09T07:03:52.424854-07:00,1003.7062377929688,10.801953,10801.953 +17987,2025-03-09T07:04:03.234692-07:00,1003.653564453125,10.809838,10809.838 +17988,2025-03-09T07:04:14.044148-07:00,1003.6956787109375,10.809456,10809.456 +17989,2025-03-09T07:04:24.850588-07:00,1003.6824951171875,10.80644,10806.44 +17990,2025-03-09T07:04:35.655437-07:00,1003.7073974609375,10.804849,10804.849 +17991,2025-03-09T07:04:46.473734-07:00,1003.6693725585938,10.818297,10818.297 +17992,2025-03-09T07:04:57.274573-07:00,1003.6917114257812,10.800839,10800.839 +17993,2025-03-09T07:05:08.082581-07:00,1003.6429443359375,10.808008,10808.008 +17994,2025-03-09T07:05:18.892560-07:00,1003.6507568359375,10.809979,10809.979 +17995,2025-03-09T07:05:29.704907-07:00,1003.6441650390625,10.812347,10812.347 +17996,2025-03-09T07:05:40.547689-07:00,1003.6390380859375,10.842782,10842.782 +17997,2025-03-09T07:05:51.365522-07:00,1003.6928100585938,10.817833,10817.833 +17998,2025-03-09T07:06:02.171813-07:00,1003.6390380859375,10.806291,10806.291 +17999,2025-03-09T07:06:12.978454-07:00,1003.646728515625,10.806641,10806.641 +18000,2025-03-09T07:06:23.789566-07:00,1003.646728515625,10.811112,10811.112 +18001,2025-03-09T07:06:34.596463-07:00,1003.6456298828125,10.806897,10806.897 +18002,2025-03-09T07:06:45.406196-07:00,1003.6796875,10.809733,10809.733 +18003,2025-03-09T07:06:56.214022-07:00,1003.6587524414062,10.807826,10807.826 +18004,2025-03-09T07:07:07.023751-07:00,1003.6598510742188,10.809729,10809.729 +18005,2025-03-09T07:07:17.828927-07:00,1003.6532592773438,10.805176,10805.176 +18006,2025-03-09T07:07:28.636480-07:00,1003.686279296875,10.807553,10807.553 +18007,2025-03-09T07:07:39.445792-07:00,1003.62841796875,10.809312,10809.312 +18008,2025-03-09T07:07:50.254475-07:00,1003.6481323242188,10.808683,10808.683 +18009,2025-03-09T07:08:11.865466-07:00,1003.6546630859375,21.610991,21610.991 +18010,2025-03-09T07:08:22.670460-07:00,1003.6270141601562,10.804994,10804.994 +18011,2025-03-09T07:08:33.467455-07:00,1003.62841796875,10.796995,10796.995 +18012,2025-03-09T07:08:44.272468-07:00,1003.6690673828125,10.805013,10805.013 +18013,2025-03-09T07:08:55.080455-07:00,1003.6375732421875,10.807987,10807.987 +18014,2025-03-09T07:08:57.765096-07:00,1003.6361083984375,2.684641,2684.641 +18015,2025-03-09T07:09:05.888463-07:00,1003.658447265625,8.123367,8123.367 +18016,2025-03-09T07:09:16.693470-07:00,1003.6309204101562,10.805007,10805.007 +18017,2025-03-09T07:09:27.489468-07:00,1003.6649780273438,10.795998,10795.998 +18018,2025-03-09T07:09:38.300751-07:00,1003.6994018554688,10.811283,10811.283 +18019,2025-03-09T07:09:49.112605-07:00,1003.6387329101562,10.811854,10811.854 +18020,2025-03-09T07:09:59.922616-07:00,1003.632080078125,10.810011,10810.011 +18021,2025-03-09T07:10:10.730889-07:00,1003.65185546875,10.808273,10808.273 +18022,2025-03-09T07:10:21.540160-07:00,1003.620361328125,10.809271,10809.271 +18023,2025-03-09T07:10:32.349634-07:00,1003.64013671875,10.809474,10809.474 +18024,2025-03-09T07:10:43.151799-07:00,1003.6543579101562,10.802165,10802.165 +18025,2025-03-09T07:10:53.958478-07:00,1003.646728515625,10.806679,10806.679 +18026,2025-03-09T07:11:04.776472-07:00,1003.6676025390625,10.817994,10817.994 +18027,2025-03-09T07:11:15.579767-07:00,1003.632080078125,10.803295,10803.295 +18028,2025-03-09T07:11:26.394643-07:00,1003.6478271484375,10.814876,10814.876 +18029,2025-03-09T07:11:37.203107-07:00,1003.6361083984375,10.808464,10808.464 +18030,2025-03-09T07:11:48.001653-07:00,1003.6426391601562,10.798546,10798.546 +18031,2025-03-09T07:11:58.815408-07:00,1003.6083374023438,10.813755,10813.755 +18032,2025-03-09T07:12:09.619025-07:00,1003.6426391601562,10.803617,10803.617 +18033,2025-03-09T07:12:20.422813-07:00,1003.6083374023438,10.803788,10803.788 +18034,2025-03-09T07:12:31.235503-07:00,1003.588623046875,10.81269,10812.69 +18035,2025-03-09T07:12:42.041527-07:00,1003.6229858398438,10.806024,10806.024 +18036,2025-03-09T07:12:52.849450-07:00,1003.6174926757812,10.807923,10807.923 +18037,2025-03-09T07:13:03.663751-07:00,1003.6043701171875,10.814301,10814.301 +18038,2025-03-09T07:13:14.472711-07:00,1003.600341796875,10.80896,10808.96 +18039,2025-03-09T07:13:25.280119-07:00,1003.6281127929688,10.807408,10807.408 +18040,2025-03-09T07:13:36.089827-07:00,1003.59375,10.809708,10809.708 +18041,2025-03-09T07:13:46.896071-07:00,1003.6226806640625,10.806244,10806.244 +18042,2025-03-09T07:13:57.692702-07:00,1003.6029052734375,10.796631,10796.631 +18043,2025-03-09T07:14:08.500541-07:00,1003.6581420898438,10.807839,10807.839 +18044,2025-03-09T07:14:19.306766-07:00,1003.6251831054688,10.806225,10806.225 +18045,2025-03-09T07:14:30.112791-07:00,1003.6251831054688,10.806025,10806.025 +18046,2025-03-09T07:14:40.928068-07:00,1003.5802612304688,10.815277,10815.277 +18047,2025-03-09T07:14:51.728697-07:00,1003.595947265625,10.800629,10800.629 +18048,2025-03-09T07:15:02.537807-07:00,1003.5948486328125,10.80911,10809.11 +18049,2025-03-09T07:15:13.345817-07:00,1003.610595703125,10.80801,10808.01 +18050,2025-03-09T07:15:24.152461-07:00,1003.5973510742188,10.806644,10806.644 +18051,2025-03-09T07:15:34.971739-07:00,1003.5973510742188,10.819278,10819.278 +18052,2025-03-09T07:15:45.775756-07:00,1003.557861328125,10.804017,10804.017 +18053,2025-03-09T07:15:56.589426-07:00,1003.60400390625,10.81367,10813.67 +18054,2025-03-09T07:16:07.388864-07:00,1003.6065673828125,10.799438,10799.438 +18055,2025-03-09T07:16:18.200819-07:00,1003.5985107421875,10.811955,10811.955 +18056,2025-03-09T07:16:29.011469-07:00,1003.6051635742188,10.81065,10810.65 +18057,2025-03-09T07:16:39.821935-07:00,1003.6065673828125,10.810466,10810.466 +18058,2025-03-09T07:16:50.631519-07:00,1003.57763671875,10.809584,10809.584 +18059,2025-03-09T07:17:01.444381-07:00,1003.6130981445312,10.812862,10812.862 +18060,2025-03-09T07:17:12.251708-07:00,1003.6051635742188,10.807327,10807.327 +18061,2025-03-09T07:17:23.062051-07:00,1003.6196899414062,10.810343,10810.343 +18062,2025-03-09T07:17:33.866244-07:00,1003.6065673828125,10.804193,10804.193 +18063,2025-03-09T07:17:44.681317-07:00,1003.626220703125,10.815073,10815.073 +18064,2025-03-09T07:17:55.482828-07:00,1003.62744140625,10.801511,10801.511 +18065,2025-03-09T07:18:06.286501-07:00,1003.60107421875,10.803673,10803.673 +18066,2025-03-09T07:18:17.097502-07:00,1003.6130981445312,10.811001,10811.001 +18067,2025-03-09T07:18:27.898797-07:00,1003.626220703125,10.801295,10801.295 +18068,2025-03-09T07:18:38.707457-07:00,1003.6130981445312,10.80866,10808.66 +18069,2025-03-09T07:18:49.517466-07:00,1003.6065673828125,10.810009,10810.009 +18070,2025-03-09T07:19:00.325510-07:00,1003.5747680664062,10.808044,10808.044 +18071,2025-03-09T07:19:11.129758-07:00,1003.5970458984375,10.804248,10804.248 +18072,2025-03-09T07:19:21.941650-07:00,1003.5945434570312,10.811892,10811.892 +18073,2025-03-09T07:19:32.752577-07:00,1003.6051025390625,10.810927,10810.927 +18074,2025-03-09T07:19:43.555668-07:00,1003.5970458984375,10.803091,10803.091 +18075,2025-03-09T07:19:54.365967-07:00,1003.5722045898438,10.810299,10810.299 +18076,2025-03-09T07:20:05.167775-07:00,1003.5839233398438,10.801808,10801.808 +18077,2025-03-09T07:20:15.981695-07:00,1003.5970458984375,10.81392,10813.92 +18078,2025-03-09T07:20:26.792719-07:00,1003.6062622070312,10.811024,10811.024 +18079,2025-03-09T07:20:37.596861-07:00,1003.57470703125,10.804142,10804.142 +18080,2025-03-09T07:20:48.402476-07:00,1003.5722045898438,10.805615,10805.615 +18081,2025-03-09T07:20:59.218450-07:00,1003.6051025390625,10.815974,10815.974 +18082,2025-03-09T07:21:10.022915-07:00,1003.58935546875,10.804465,10804.465 +18083,2025-03-09T07:21:20.842113-07:00,1003.5904541015625,10.819198,10819.198 +18084,2025-03-09T07:21:31.656759-07:00,1003.6222534179688,10.814646,10814.646 +18085,2025-03-09T07:21:42.464474-07:00,1003.5945434570312,10.807715,10807.715 +18086,2025-03-09T07:21:53.285454-07:00,1003.595947265625,10.82098,10820.98 +18087,2025-03-09T07:22:04.089518-07:00,1003.6024780273438,10.804064,10804.064 +18088,2025-03-09T07:22:14.898588-07:00,1003.620849609375,10.80907,10809.07 +18089,2025-03-09T07:22:25.713790-07:00,1003.6024780273438,10.815202,10815.202 +18090,2025-03-09T07:22:36.534463-07:00,1003.6222534179688,10.820673,10820.673 +18091,2025-03-09T07:22:47.337821-07:00,1003.6182861328125,10.803358,10803.358 +18092,2025-03-09T07:22:58.155455-07:00,1003.595947265625,10.817634,10817.634 +18093,2025-03-09T07:23:08.959457-07:00,1003.58935546875,10.804002,10804.002 +18094,2025-03-09T07:23:19.775068-07:00,1003.6024780273438,10.815611,10815.611 +18095,2025-03-09T07:23:30.590518-07:00,1003.58935546875,10.81545,10815.45 +18096,2025-03-09T07:23:41.403757-07:00,1003.595947265625,10.813239,10813.239 +18097,2025-03-09T07:23:52.222531-07:00,1003.6234130859375,10.818774,10818.774 +18098,2025-03-09T07:24:03.033502-07:00,1003.61572265625,10.810971,10810.971 +18099,2025-03-09T07:24:13.838721-07:00,1003.5985107421875,10.805219,10805.219 +18100,2025-03-09T07:24:24.639635-07:00,1003.58935546875,10.800914,10800.914 +18101,2025-03-09T07:24:35.445462-07:00,1003.6036987304688,10.805827,10805.827 +18102,2025-03-09T07:24:46.253948-07:00,1003.60107421875,10.808486,10808.486 +18103,2025-03-09T07:24:57.073507-07:00,1003.56298828125,10.819559,10819.559 +18104,2025-03-09T07:25:07.881700-07:00,1003.5352172851562,10.808193,10808.193 +18105,2025-03-09T07:25:18.684704-07:00,1003.5762329101562,10.803004,10803.004 +18106,2025-03-09T07:25:29.497466-07:00,1003.5747680664062,10.812762,10812.762 +18107,2025-03-09T07:25:40.303455-07:00,1003.5615844726562,10.805989,10805.989 +18108,2025-03-09T07:25:51.111600-07:00,1003.5549926757812,10.808145,10808.145 +18109,2025-03-09T07:26:01.927795-07:00,1003.5484619140625,10.816195,10816.195 +18110,2025-03-09T07:26:12.737356-07:00,1003.556396484375,10.809561,10809.561 +18111,2025-03-09T07:26:23.538854-07:00,1003.5641479492188,10.801498,10801.498 +18112,2025-03-09T07:26:34.353622-07:00,1003.5352172851562,10.814768,10814.768 +18113,2025-03-09T07:26:45.163468-07:00,1003.5103149414062,10.809846,10809.846 +18114,2025-03-09T07:26:55.972487-07:00,1003.5220336914062,10.809019,10809.019 +18115,2025-03-09T07:27:06.786457-07:00,1003.5301513671875,10.81397,10813.97 +18116,2025-03-09T07:27:17.594981-07:00,1003.5169677734375,10.808524,10808.524 +18117,2025-03-09T07:27:28.410791-07:00,1003.5301513671875,10.81581,10815.81 +18118,2025-03-09T07:27:39.210834-07:00,1003.5234985351562,10.800043,10800.043 +18119,2025-03-09T07:27:50.020880-07:00,1003.4971923828125,10.810046,10810.046 +18120,2025-03-09T07:28:00.829464-07:00,1003.5089111328125,10.808584,10808.584 +18121,2025-03-09T07:28:11.639708-07:00,1003.4840698242188,10.810244,10810.244 +18122,2025-03-09T07:28:22.445461-07:00,1003.5103149414062,10.805753,10805.753 +18123,2025-03-09T07:28:33.246656-07:00,1003.4826049804688,10.801195,10801.195 +18124,2025-03-09T07:28:44.055467-07:00,1003.4957885742188,10.808811,10808.811 +18125,2025-03-09T07:28:54.858460-07:00,1003.474853515625,10.802993,10802.993 +18126,2025-03-09T07:29:05.674709-07:00,1003.4891967773438,10.816249,10816.249 +18127,2025-03-09T07:29:16.480799-07:00,1003.46826171875,10.80609,10806.09 +18128,2025-03-09T07:29:27.291362-07:00,1003.4693603515625,10.810563,10810.563 +18129,2025-03-09T07:29:38.100799-07:00,1003.4906005859375,10.809437,10809.437 +18130,2025-03-09T07:29:48.919730-07:00,1003.4826049804688,10.818931,10818.931 +18131,2025-03-09T07:29:59.728615-07:00,1003.511474609375,10.808885,10808.885 +18132,2025-03-09T07:30:10.532865-07:00,1003.5048217773438,10.80425,10804.25 +18133,2025-03-09T07:30:21.334461-07:00,1003.498291015625,10.801596,10801.596 +18134,2025-03-09T07:30:32.144455-07:00,1003.486572265625,10.809994,10809.994 +18135,2025-03-09T07:30:42.952592-07:00,1003.4668579101562,10.808137,10808.137 +18136,2025-03-09T07:30:53.763809-07:00,1003.4957885742188,10.811217,10811.217 +18137,2025-03-09T07:31:04.565700-07:00,1003.4562377929688,10.801891,10801.891 +18138,2025-03-09T07:31:15.368515-07:00,1003.4628295898438,10.802815,10802.815 +18139,2025-03-09T07:31:26.172467-07:00,1003.49169921875,10.803952,10803.952 +18140,2025-03-09T07:31:36.976501-07:00,1003.4639282226562,10.804034,10804.034 +18141,2025-03-09T07:31:47.792194-07:00,1003.5125732421875,10.815693,10815.693 +18142,2025-03-09T07:31:58.593931-07:00,1003.4862670898438,10.801737,10801.737 +18143,2025-03-09T07:32:09.401868-07:00,1003.5005493164062,10.807937,10807.937 +18144,2025-03-09T07:32:20.210525-07:00,1003.482177734375,10.808657,10808.657 +18145,2025-03-09T07:32:31.016477-07:00,1003.482177734375,10.805952,10805.952 +18146,2025-03-09T07:32:41.823739-07:00,1003.4833374023438,10.807262,10807.262 +18147,2025-03-09T07:32:52.628677-07:00,1003.45703125,10.804938,10804.938 +18148,2025-03-09T07:33:03.436601-07:00,1003.4453125,10.807924,10807.924 +18149,2025-03-09T07:33:14.236603-07:00,1003.44384765625,10.800002,10800.002 +18150,2025-03-09T07:33:25.048695-07:00,1003.4742431640625,10.812092,10812.092 +18151,2025-03-09T07:33:35.850725-07:00,1003.4398193359375,10.80203,10802.03 +18152,2025-03-09T07:33:46.666463-07:00,1003.4423217773438,10.815738,10815.738 +18153,2025-03-09T07:33:57.481664-07:00,1003.4620971679688,10.815201,10815.201 +18154,2025-03-09T07:34:08.289839-07:00,1003.463623046875,10.808175,10808.175 +18155,2025-03-09T07:34:19.098523-07:00,1003.4515380859375,10.808684,10808.684 +18156,2025-03-09T07:34:29.897372-07:00,1003.4437255859375,10.798849,10798.849 +18157,2025-03-09T07:34:40.703813-07:00,1003.4251708984375,10.806441,10806.441 +18158,2025-03-09T07:34:51.511528-07:00,1003.4449462890625,10.807715,10807.715 +18159,2025-03-09T07:35:02.320472-07:00,1003.4515380859375,10.808944,10808.944 +18160,2025-03-09T07:35:13.117689-07:00,1003.4464111328125,10.797217,10797.217 +18161,2025-03-09T07:35:23.932715-07:00,1003.4317016601562,10.815026,10815.026 +18162,2025-03-09T07:35:34.739299-07:00,1003.4698486328125,10.806584,10806.584 +18163,2025-03-09T07:35:45.541468-07:00,1003.4317016601562,10.802169,10802.169 +18164,2025-03-09T07:35:56.357507-07:00,1003.4210815429688,10.816039,10816.039 +18165,2025-03-09T07:36:07.161679-07:00,1003.44091796875,10.804172,10804.172 +18166,2025-03-09T07:36:17.972793-07:00,1003.4434204101562,10.811114,10811.114 +18167,2025-03-09T07:36:28.779811-07:00,1003.4423217773438,10.807018,10807.018 +18168,2025-03-09T07:36:39.592698-07:00,1003.4566650390625,10.812887,10812.887 +18169,2025-03-09T07:36:50.400514-07:00,1003.4554443359375,10.807816,10807.816 +18170,2025-03-09T07:37:01.210466-07:00,1003.4606323242188,10.809952,10809.952 +18171,2025-03-09T07:37:12.024466-07:00,1003.427734375,10.814,10814.0 +18172,2025-03-09T07:37:22.834459-07:00,1003.477783203125,10.809993,10809.993 +18173,2025-03-09T07:37:33.639491-07:00,1003.4489135742188,10.805032,10805.032 +18174,2025-03-09T07:37:44.447430-07:00,1003.1072387695312,10.807939,10807.939 +18175,2025-03-09T07:37:55.258727-07:00,1003.4434204101562,10.811297,10811.297 +18176,2025-03-09T07:38:06.075473-07:00,1003.459228515625,10.816746,10816.746 +18177,2025-03-09T07:38:16.882474-07:00,1003.4393920898438,10.807001,10807.001 +18178,2025-03-09T07:38:27.690784-07:00,1003.4580688476562,10.80831,10808.31 +18179,2025-03-09T07:38:38.491455-07:00,1003.446044921875,10.800671,10800.671 +18180,2025-03-09T07:38:49.299753-07:00,1003.45263671875,10.808298,10808.298 +18181,2025-03-09T07:39:00.108479-07:00,1003.447509765625,10.808726,10808.726 +18182,2025-03-09T07:39:10.917675-07:00,1003.4723510742188,10.809196,10809.196 +18183,2025-03-09T07:39:21.722474-07:00,1003.4606323242188,10.804799,10804.799 +18184,2025-03-09T07:39:32.526508-07:00,1003.45263671875,10.804034,10804.034 +18185,2025-03-09T07:39:43.326690-07:00,1003.459228515625,10.800182,10800.182 +18186,2025-03-09T07:39:54.137568-07:00,1003.4328002929688,10.810878,10810.878 +18187,2025-03-09T07:40:04.947901-07:00,1003.4884643554688,10.810333,10810.333 +18188,2025-03-09T07:40:15.760478-07:00,1003.4671630859375,10.812577,10812.577 +18189,2025-03-09T07:40:26.558819-07:00,1003.447509765625,10.798341,10798.341 +18190,2025-03-09T07:40:37.366737-07:00,1003.4357299804688,10.807918,10807.918 +18191,2025-03-09T07:40:48.165791-07:00,1003.4554443359375,10.799054,10799.054 +18192,2025-03-09T07:40:58.974462-07:00,1003.4357299804688,10.808671,10808.671 +18193,2025-03-09T07:41:09.778455-07:00,1003.451416015625,10.803993,10803.993 +18194,2025-03-09T07:41:20.575817-07:00,1003.4357299804688,10.797362,10797.362 +18195,2025-03-09T07:41:31.389854-07:00,1003.381591796875,10.814037,10814.037 +18196,2025-03-09T07:41:42.194512-07:00,1003.396240234375,10.804658,10804.658 +18197,2025-03-09T07:41:53.002606-07:00,1003.394775390625,10.808094,10808.094 +18198,2025-03-09T07:42:03.811009-07:00,1003.4014282226562,10.808403,10808.403 +18199,2025-03-09T07:42:14.621739-07:00,1003.4408569335938,10.81073,10810.73 +18200,2025-03-09T07:42:25.418474-07:00,1003.4393920898438,10.796735,10796.735 +18201,2025-03-09T07:42:36.227462-07:00,1003.3973388671875,10.808988,10808.988 +18202,2025-03-09T07:42:47.043979-07:00,1003.3856201171875,10.816517,10816.517 +18203,2025-03-09T07:42:57.849032-07:00,1003.4014282226562,10.805053,10805.053 +18204,2025-03-09T07:43:08.661140-07:00,1003.4119262695312,10.812108,10812.108 +18205,2025-03-09T07:43:19.467472-07:00,1003.4039306640625,10.806332,10806.332 +18206,2025-03-09T07:43:30.277476-07:00,1003.4053955078125,10.810004,10810.004 +18207,2025-03-09T07:43:41.086445-07:00,1003.4251708984375,10.808969,10808.969 +18208,2025-03-09T07:43:51.885687-07:00,1003.37646484375,10.799242,10799.242 +18209,2025-03-09T07:44:02.698664-07:00,1003.4119262695312,10.812977,10812.977 +18210,2025-03-09T07:44:13.506711-07:00,1003.3973388671875,10.808047,10808.047 +18211,2025-03-09T07:44:24.303462-07:00,1003.4251708984375,10.796751,10796.751 +18212,2025-03-09T07:44:35.113459-07:00,1003.39990234375,10.809997,10809.997 +18213,2025-03-09T07:44:45.919797-07:00,1003.419677734375,10.806338,10806.338 +18214,2025-03-09T07:44:56.726815-07:00,1003.4210815429688,10.807018,10807.018 +18215,2025-03-09T07:45:07.534256-07:00,1003.393310546875,10.807441,10807.441 +18216,2025-03-09T07:45:18.344759-07:00,1003.4119262695312,10.810503,10810.503 +18217,2025-03-09T07:45:29.141950-07:00,1003.4342041015625,10.797191,10797.191 +18218,2025-03-09T07:45:39.959703-07:00,1003.380126953125,10.817753,10817.753 +18219,2025-03-09T07:45:50.768210-07:00,1003.4342041015625,10.808507,10808.507 +18220,2025-03-09T07:46:01.565467-07:00,1003.4131469726562,10.797257,10797.257 +18221,2025-03-09T07:46:12.377825-07:00,1003.4131469726562,10.812358,10812.358 +18222,2025-03-09T07:46:23.192764-07:00,1003.447509765625,10.814939,10814.939 +18223,2025-03-09T07:46:34.000455-07:00,1003.407958984375,10.807691,10807.691 +18224,2025-03-09T07:46:44.809723-07:00,1003.4489135742188,10.809268,10809.268 +18225,2025-03-09T07:46:55.613559-07:00,1003.4276733398438,10.803836,10803.836 +18226,2025-03-09T07:47:06.419900-07:00,1003.4554443359375,10.806341,10806.341 +18227,2025-03-09T07:47:17.237873-07:00,1003.4671630859375,10.817973,10817.973 +18228,2025-03-09T07:47:28.051715-07:00,1003.4671630859375,10.813842,10813.842 +18229,2025-03-09T07:47:38.855620-07:00,1003.4963989257812,10.803905,10803.905 +18230,2025-03-09T07:47:49.669466-07:00,1003.4634399414062,10.813846,10813.846 +18231,2025-03-09T07:48:00.473473-07:00,1003.490966796875,10.804007,10804.007 +18232,2025-03-09T07:48:11.276479-07:00,1003.484375,10.803006,10803.006 +18233,2025-03-09T07:48:22.083523-07:00,1003.501220703125,10.807044,10807.044 +18234,2025-03-09T07:48:32.887504-07:00,1003.489501953125,10.803981,10803.981 +18235,2025-03-09T07:48:43.714851-07:00,1003.474853515625,10.827347,10827.347 +18236,2025-03-09T07:48:54.521471-07:00,1003.474853515625,10.80662,10806.62 +18237,2025-03-09T07:49:05.320893-07:00,1003.5289916992188,10.799422,10799.422 +18238,2025-03-09T07:49:16.135474-07:00,1003.5078125,10.814581,10814.581 +18239,2025-03-09T07:49:26.939468-07:00,1003.5367431640625,10.803994,10803.994 +18240,2025-03-09T07:49:37.749613-07:00,1003.5092163085938,10.810145,10810.145 +18241,2025-03-09T07:49:48.551672-07:00,1003.51953125,10.802059,10802.059 +18242,2025-03-09T07:49:59.363780-07:00,1003.512939453125,10.812108,10812.108 +18243,2025-03-09T07:50:10.175376-07:00,1003.512939453125,10.811596,10811.596 +18244,2025-03-09T07:50:20.979087-07:00,1003.55908203125,10.803711,10803.711 +18245,2025-03-09T07:50:31.798481-07:00,1003.5524291992188,10.819394,10819.394 +18246,2025-03-09T07:50:42.603104-07:00,1003.526123046875,10.804623,10804.623 +18247,2025-03-09T07:50:53.407725-07:00,1003.5615844726562,10.804621,10804.621 +18248,2025-03-09T07:51:04.218462-07:00,1003.51953125,10.810737,10810.737 +18249,2025-03-09T07:51:15.020468-07:00,1003.5407104492188,10.802006,10802.006 +18250,2025-03-09T07:51:25.832945-07:00,1003.5484619140625,10.812477,10812.477 +18251,2025-03-09T07:51:36.646467-07:00,1003.5089111328125,10.813522,10813.522 +18252,2025-03-09T07:51:47.455498-07:00,1003.5418701171875,10.809031,10809.031 +18253,2025-03-09T07:51:58.257468-07:00,1003.5407104492188,10.80197,10801.97 +18254,2025-03-09T07:52:09.067928-07:00,1003.5340576171875,10.81046,10810.46 +18255,2025-03-09T07:52:19.876373-07:00,1003.5432739257812,10.808445,10808.445 +18256,2025-03-09T07:52:30.691464-07:00,1003.5498657226562,10.815091,10815.091 +18257,2025-03-09T07:52:41.501051-07:00,1003.516845703125,10.809587,10809.587 +18258,2025-03-09T07:52:52.308661-07:00,1003.5443725585938,10.80761,10807.61 +18259,2025-03-09T07:53:03.115507-07:00,1003.5114135742188,10.806846,10806.846 +18260,2025-03-09T07:53:13.923627-07:00,1003.5337524414062,10.80812,10808.12 +18261,2025-03-09T07:53:24.732701-07:00,1003.526123046875,10.809074,10809.074 +18262,2025-03-09T07:53:35.551663-07:00,1003.5392456054688,10.818962,10818.962 +18263,2025-03-09T07:53:46.354795-07:00,1003.53515625,10.803132,10803.132 +18264,2025-03-09T07:53:57.167822-07:00,1003.5206298828125,10.813027,10813.027 +18265,2025-03-09T07:54:07.972579-07:00,1003.528564453125,10.804757,10804.757 +18266,2025-03-09T07:54:18.782930-07:00,1003.53515625,10.810351,10810.351 +18267,2025-03-09T07:54:29.590688-07:00,1003.5692138671875,10.807758,10807.758 +18268,2025-03-09T07:54:40.398742-07:00,1003.5337524414062,10.808054,10808.054 +18269,2025-03-09T07:54:51.208466-07:00,1003.5429077148438,10.809724,10809.724 +18270,2025-03-09T07:55:02.028776-07:00,1003.55859375,10.82031,10820.31 +18271,2025-03-09T07:55:12.838060-07:00,1003.5549926757812,10.809284,10809.284 +18272,2025-03-09T07:55:23.656728-07:00,1003.5220336914062,10.818668,10818.668 +18273,2025-03-09T07:55:34.465462-07:00,1003.5772705078125,10.808734,10808.734 +18274,2025-03-09T07:55:45.274518-07:00,1003.5758056640625,10.809056,10809.056 +18275,2025-03-09T07:55:56.083650-07:00,1003.5560913085938,10.809132,10809.132 +18276,2025-03-09T07:56:06.899638-07:00,1003.5890502929688,10.815988,10815.988 +18277,2025-03-09T07:56:17.719700-07:00,1003.611328125,10.820062,10820.062 +18278,2025-03-09T07:56:28.521469-07:00,1003.5823974609375,10.801769,10801.769 +18279,2025-03-09T07:56:39.331097-07:00,1003.5970458984375,10.809628,10809.628 +18280,2025-03-09T07:56:50.144467-07:00,1003.5784301757812,10.81337,10813.37 +18281,2025-03-09T07:57:00.961163-07:00,1003.566650390625,10.816696,10816.696 +18282,2025-03-09T07:57:11.765816-07:00,1003.5733032226562,10.804653,10804.653 +18283,2025-03-09T07:57:22.580130-07:00,1003.5875244140625,10.814314,10814.314 +18284,2025-03-09T07:57:33.385478-07:00,1003.5809326171875,10.805348,10805.348 +18285,2025-03-09T07:57:44.200664-07:00,1003.553466796875,10.815186,10815.186 +18286,2025-03-09T07:57:55.013626-07:00,1003.540283203125,10.812962,10812.962 +18287,2025-03-09T07:58:05.825658-07:00,1003.579833984375,10.812032,10812.032 +18288,2025-03-09T07:58:16.635767-07:00,1003.5733032226562,10.810109,10810.109 +18289,2025-03-09T07:58:27.454728-07:00,1003.5611572265625,10.818961,10818.961 +18290,2025-03-09T07:58:38.261463-07:00,1003.5733032226562,10.806735,10806.735 +18291,2025-03-09T07:58:49.069203-07:00,1003.55859375,10.80774,10807.74 +18292,2025-03-09T07:58:59.889461-07:00,1003.591552734375,10.820258,10820.258 +18293,2025-03-09T07:59:10.697465-07:00,1003.552001953125,10.808004,10808.004 +18294,2025-03-09T07:59:21.515744-07:00,1003.5850219726562,10.818279,10818.279 +18295,2025-03-09T07:59:32.325925-07:00,1003.6046752929688,10.810181,10810.181 +18296,2025-03-09T07:59:43.129474-07:00,1003.5640869140625,10.803549,10803.549 +18297,2025-03-09T07:59:53.932650-07:00,1003.5706176757812,10.803176,10803.176 +18298,2025-03-09T08:00:04.747478-07:00,1003.5706176757812,10.814828,10814.828 +18299,2025-03-09T08:00:15.558465-07:00,1003.5429077148438,10.810987,10810.987 +18300,2025-03-09T08:00:26.369627-07:00,1003.5509643554688,10.811162,10811.162 +18301,2025-03-09T08:00:37.173797-07:00,1003.58642578125,10.80417,10804.17 +18302,2025-03-09T08:00:47.994860-07:00,1003.5706176757812,10.821063,10821.063 +18303,2025-03-09T08:00:58.802617-07:00,1003.591552734375,10.807757,10807.757 +18304,2025-03-09T08:01:09.616853-07:00,1003.5443725585938,10.814236,10814.236 +18305,2025-03-09T08:01:20.422659-07:00,1003.55859375,10.805806,10805.806 +18306,2025-03-09T08:01:31.241520-07:00,1003.5640869140625,10.818861,10818.861 +18307,2025-03-09T08:01:42.051745-07:00,1003.5509643554688,10.810225,10810.225 +18308,2025-03-09T08:01:52.857791-07:00,1003.58642578125,10.806046,10806.046 +18309,2025-03-09T08:02:03.658947-07:00,1003.58203125,10.801156,10801.156 +18310,2025-03-09T08:02:14.472492-07:00,1003.5875244140625,10.813545,10813.545 +18311,2025-03-09T08:02:25.276062-07:00,1003.5744018554688,10.80357,10803.57 +18312,2025-03-09T08:02:36.086730-07:00,1003.579833984375,10.810668,10810.668 +18313,2025-03-09T08:02:46.897641-07:00,1003.563720703125,10.810911,10810.911 +18314,2025-03-09T08:02:57.709468-07:00,1003.553466796875,10.811827,10811.827 +18315,2025-03-09T08:03:08.518462-07:00,1003.5809326171875,10.808994,10808.994 +18316,2025-03-09T08:03:19.337588-07:00,1003.575439453125,10.819126,10819.126 +18317,2025-03-09T08:03:30.148466-07:00,1003.5967407226562,10.810878,10810.878 +18318,2025-03-09T08:03:40.954732-07:00,1003.5546264648438,10.806266,10806.266 +18319,2025-03-09T08:03:51.768464-07:00,1003.5834350585938,10.813732,10813.732 +18320,2025-03-09T08:04:02.568834-07:00,1003.6109619140625,10.80037,10800.37 +18321,2025-03-09T08:04:13.379469-07:00,1003.5744018554688,10.810635,10810.635 +18322,2025-03-09T08:04:24.187472-07:00,1003.5967407226562,10.808003,10808.003 +18323,2025-03-09T08:04:35.007518-07:00,1003.60986328125,10.820046,10820.046 +18324,2025-03-09T08:04:45.821669-07:00,1003.590087890625,10.814151,10814.151 +18325,2025-03-09T08:04:56.625817-07:00,1003.6361694335938,10.804148,10804.148 +18326,2025-03-09T08:05:07.430493-07:00,1003.642822265625,10.804676,10804.676 +18327,2025-03-09T08:05:18.243458-07:00,1003.634765625,10.812965,10812.965 +18328,2025-03-09T08:05:29.053445-07:00,1003.642822265625,10.809987,10809.987 +18329,2025-03-09T08:05:39.874537-07:00,1003.6241455078125,10.821092,10821.092 +18330,2025-03-09T08:05:50.693790-07:00,1003.6453247070312,10.819253,10819.253 +18331,2025-03-09T08:06:01.494767-07:00,1003.6307983398438,10.800977,10800.977 +18332,2025-03-09T08:06:12.308555-07:00,1003.6464233398438,10.813788,10813.788 +18333,2025-03-09T08:06:23.123274-07:00,1003.63330078125,10.814719,10814.719 +18334,2025-03-09T08:06:33.937251-07:00,1003.6727905273438,10.813977,10813.977 +18335,2025-03-09T08:06:44.751256-07:00,1003.654541015625,10.814005,10814.005 +18336,2025-03-09T08:06:55.565880-07:00,1003.6281127929688,10.814624,10814.624 +18337,2025-03-09T08:07:06.378912-07:00,1003.670166015625,10.813032,10813.032 +18338,2025-03-09T08:07:17.184275-07:00,1003.66357421875,10.805363,10805.363 +18339,2025-03-09T08:07:28.000834-07:00,1003.6490478515625,10.816559,10816.559 +18340,2025-03-09T08:07:38.816258-07:00,1003.6556396484375,10.815424,10815.424 +18341,2025-03-09T08:07:49.621518-07:00,1003.677978515625,10.80526,10805.26 +18342,2025-03-09T08:08:00.443609-07:00,1003.6372680664062,10.822091,10822.091 +18343,2025-03-09T08:08:11.249655-07:00,1003.630615234375,10.806046,10806.046 +18344,2025-03-09T08:08:22.062668-07:00,1003.66357421875,10.813013,10813.013 +18345,2025-03-09T08:08:32.869323-07:00,1003.6439208984375,10.806655,10806.655 +18346,2025-03-09T08:08:43.686297-07:00,1003.6358032226562,10.816974,10816.974 +18347,2025-03-09T08:08:54.499607-07:00,1003.6347045898438,10.81331,10813.31 +18348,2025-03-09T08:09:05.307584-07:00,1003.6292114257812,10.807977,10807.977 +18349,2025-03-09T08:09:16.124270-07:00,1003.6490478515625,10.816686,10816.686 +18350,2025-03-09T08:09:26.933790-07:00,1003.6358032226562,10.80952,10809.52 +18351,2025-03-09T08:09:37.751272-07:00,1003.6570434570312,10.817482,10817.482 +18352,2025-03-09T08:09:48.561439-07:00,1003.6570434570312,10.810167,10810.167 +18353,2025-03-09T08:09:59.371553-07:00,1003.66357421875,10.810114,10810.114 +18354,2025-03-09T08:10:10.178563-07:00,1003.6240844726562,10.80701,10807.01 +18355,2025-03-09T08:10:20.992523-07:00,1003.6581420898438,10.81396,10813.96 +18356,2025-03-09T08:10:31.801272-07:00,1003.625244140625,10.808749,10808.749 +18357,2025-03-09T08:10:42.601260-07:00,1003.6185913085938,10.799988,10799.988 +18358,2025-03-09T08:10:53.416256-07:00,1003.598876953125,10.814996,10814.996 +18359,2025-03-09T08:11:04.217472-07:00,1003.6029052734375,10.801216,10801.216 +18360,2025-03-09T08:11:15.032492-07:00,1003.6174926757812,10.81502,10815.02 +18361,2025-03-09T08:11:25.840266-07:00,1003.638427734375,10.807774,10807.774 +18362,2025-03-09T08:11:36.644637-07:00,1003.625244140625,10.804371,10804.371 +18363,2025-03-09T08:11:47.438494-07:00,1003.6095581054688,10.793857,10793.857 +18364,2025-03-09T08:11:58.241255-07:00,1003.598876953125,10.802761,10802.761 +18365,2025-03-09T08:12:09.049260-07:00,1003.598876953125,10.808005,10808.005 +18366,2025-03-09T08:12:19.860365-07:00,1003.59375,10.811105,10811.105 +18367,2025-03-09T08:12:30.668272-07:00,1003.612060546875,10.807907,10807.907 +18368,2025-03-09T08:12:41.475851-07:00,1003.59228515625,10.807579,10807.579 +18369,2025-03-09T08:12:52.285566-07:00,1003.6409301757812,10.809715,10809.715 +18370,2025-03-09T08:13:03.089280-07:00,1003.6079711914062,10.803714,10803.714 +18371,2025-03-09T08:13:13.893558-07:00,1003.6358032226562,10.804278,10804.278 +18372,2025-03-09T08:13:24.707613-07:00,1003.59375,10.814055,10814.055 +18373,2025-03-09T08:13:35.517412-07:00,1003.6146240234375,10.809799,10809.799 +18374,2025-03-09T08:13:46.326267-07:00,1003.6068725585938,10.808855,10808.855 +18375,2025-03-09T08:13:57.136331-07:00,1003.6278076171875,10.810064,10810.064 +18376,2025-03-09T08:14:07.942262-07:00,1003.600341796875,10.805931,10805.931 +18377,2025-03-09T08:14:18.756611-07:00,1003.6211547851562,10.814349,10814.349 +18378,2025-03-09T08:14:29.571613-07:00,1003.6226806640625,10.815002,10815.002 +18379,2025-03-09T08:14:40.371399-07:00,1003.5962524414062,10.799786,10799.786 +18380,2025-03-09T08:14:51.187266-07:00,1003.6211547851562,10.815867,10815.867 +18381,2025-03-09T08:15:01.992270-07:00,1003.5948486328125,10.805004,10805.004 +18382,2025-03-09T08:15:12.795514-07:00,1003.6068725585938,10.803244,10803.244 +18383,2025-03-09T08:15:23.604398-07:00,1003.6211547851562,10.808884,10808.884 +18384,2025-03-09T08:15:34.403344-07:00,1003.6292114257812,10.798946,10798.946 +18385,2025-03-09T08:15:45.220268-07:00,1003.6094360351562,10.816924,10816.924 +18386,2025-03-09T08:15:56.021517-07:00,1003.6475219726562,10.801249,10801.249 +18387,2025-03-09T08:16:06.835778-07:00,1003.6079711914062,10.814261,10814.261 +18388,2025-03-09T08:16:17.638973-07:00,1003.602783203125,10.803195,10803.195 +18389,2025-03-09T08:16:28.449115-07:00,1003.6094360351562,10.810142,10810.142 +18390,2025-03-09T08:16:39.251640-07:00,1003.6500854492188,10.802525,10802.525 +18391,2025-03-09T08:16:50.059851-07:00,1003.6226806640625,10.808211,10808.211 +18392,2025-03-09T08:17:00.868267-07:00,1003.602783203125,10.808416,10808.416 +18393,2025-03-09T08:17:11.677268-07:00,1003.5882568359375,10.809001,10809.001 +18394,2025-03-09T08:17:22.485265-07:00,1003.6094360351562,10.807997,10807.997 +18395,2025-03-09T08:17:33.295258-07:00,1003.6500854492188,10.809993,10809.993 +18396,2025-03-09T08:17:44.104485-07:00,1003.623779296875,10.809227,10809.227 +18397,2025-03-09T08:17:54.916377-07:00,1003.6369018554688,10.811892,10811.892 +18398,2025-03-09T08:18:05.730838-07:00,1003.6461181640625,10.814461,10814.461 +18399,2025-03-09T08:18:16.538486-07:00,1003.6592407226562,10.807648,10807.648 +18400,2025-03-09T08:18:27.350319-07:00,1003.6526489257812,10.811833,10811.833 +18401,2025-03-09T08:18:38.155518-07:00,1003.6526489257812,10.805199,10805.199 +18402,2025-03-09T08:18:48.966255-07:00,1003.654052734375,10.810737,10810.737 +18403,2025-03-09T08:18:59.773271-07:00,1003.6881103515625,10.807016,10807.016 +18404,2025-03-09T08:19:10.574396-07:00,1003.6683349609375,10.801125,10801.125 +18405,2025-03-09T08:19:21.379266-07:00,1003.6749877929688,10.80487,10804.87 +18406,2025-03-09T08:19:32.189804-07:00,1003.6671752929688,10.810538,10810.538 +18407,2025-03-09T08:19:42.998550-07:00,1003.7001342773438,10.808746,10808.746 +18408,2025-03-09T08:19:53.803643-07:00,1003.689208984375,10.805093,10805.093 +18409,2025-03-09T08:20:04.604270-07:00,1003.6760864257812,10.800627,10800.627 +18410,2025-03-09T08:20:15.418461-07:00,1003.68408203125,10.814191,10814.191 +18411,2025-03-09T08:20:26.227962-07:00,1003.6906127929688,10.809501,10809.501 +18412,2025-03-09T08:20:37.036267-07:00,1003.6785888671875,10.808305,10808.305 +18413,2025-03-09T08:20:47.852258-07:00,1003.6878051757812,10.815991,10815.991 +18414,2025-03-09T08:20:58.651446-07:00,1003.6734619140625,10.799188,10799.188 +18415,2025-03-09T08:21:09.464261-07:00,1003.689208984375,10.812815,10812.815 +18416,2025-03-09T08:21:20.278503-07:00,1003.708984375,10.814242,10814.242 +18417,2025-03-09T08:21:31.081308-07:00,1003.6968994140625,10.802805,10802.805 +18418,2025-03-09T08:21:41.891145-07:00,1003.6851806640625,10.809837,10809.837 +18419,2025-03-09T08:21:52.706284-07:00,1003.6903076171875,10.815139,10815.139 +18420,2025-03-09T08:22:03.520257-07:00,1003.7181396484375,10.813973,10813.973 +18421,2025-03-09T08:22:14.324474-07:00,1003.69287109375,10.804217,10804.217 +18422,2025-03-09T08:22:25.131514-07:00,1003.7061157226562,10.80704,10807.04 +18423,2025-03-09T08:22:35.947860-07:00,1003.7140502929688,10.816346,10816.346 +18424,2025-03-09T08:22:46.755543-07:00,1003.6983642578125,10.807683,10807.683 +18425,2025-03-09T08:22:57.570237-07:00,1003.69287109375,10.814694,10814.694 +18426,2025-03-09T08:23:08.380280-07:00,1003.69287109375,10.810043,10810.043 +18427,2025-03-09T08:23:19.188638-07:00,1003.7206420898438,10.808358,10808.358 +18428,2025-03-09T08:23:30.000412-07:00,1003.7232055664062,10.811774,10811.774 +18429,2025-03-09T08:23:40.810519-07:00,1003.7086181640625,10.810107,10810.107 +18430,2025-03-09T08:23:51.626503-07:00,1003.7151489257812,10.815984,10815.984 +18431,2025-03-09T08:24:02.438635-07:00,1003.7232055664062,10.812132,10812.132 +18432,2025-03-09T08:24:13.244428-07:00,1003.7374877929688,10.805793,10805.793 +18433,2025-03-09T08:24:24.049573-07:00,1003.7177124023438,10.805145,10805.145 +18434,2025-03-09T08:24:34.868265-07:00,1003.7587280273438,10.818692,10818.692 +18435,2025-03-09T08:24:45.677262-07:00,1003.7572631835938,10.808997,10808.997 +18436,2025-03-09T08:24:56.492501-07:00,1003.750732421875,10.815239,10815.239 +18437,2025-03-09T08:25:07.300266-07:00,1003.73095703125,10.807765,10807.765 +18438,2025-03-09T08:25:18.122274-07:00,1003.7521362304688,10.822008,10822.008 +18439,2025-03-09T08:25:28.931259-07:00,1003.7718505859375,10.808985,10808.985 +18440,2025-03-09T08:25:39.745611-07:00,1003.7334594726562,10.814352,10814.352 +18441,2025-03-09T08:25:50.560271-07:00,1003.7466430664062,10.81466,10814.66 +18442,2025-03-09T08:26:01.368549-07:00,1003.7532958984375,10.808278,10808.278 +18443,2025-03-09T08:26:12.183586-07:00,1003.7400512695312,10.815037,10815.037 +18444,2025-03-09T08:26:23.003491-07:00,1003.7466430664062,10.819905,10819.905 +18445,2025-03-09T08:26:33.819556-07:00,1003.7334594726562,10.816065,10816.065 +18446,2025-03-09T08:26:44.633580-07:00,1003.7546997070312,10.814024,10814.024 +18447,2025-03-09T08:26:55.441946-07:00,1003.7162475585938,10.808366,10808.366 +18448,2025-03-09T08:27:06.258280-07:00,1003.7086181640625,10.816334,10816.334 +18449,2025-03-09T08:27:17.072399-07:00,1003.7506103515625,10.814119,10814.119 +18450,2025-03-09T08:27:27.897355-07:00,1003.7308349609375,10.824956,10824.956 +18451,2025-03-09T08:27:38.712575-07:00,1003.697998046875,10.81522,10815.22 +18452,2025-03-09T08:27:49.527310-07:00,1003.7111206054688,10.814735,10814.735 +18453,2025-03-09T08:28:00.350930-07:00,1003.721435546875,10.82362,10823.62 +18454,2025-03-09T08:28:11.168832-07:00,1003.7056274414062,10.817902,10817.902 +18455,2025-03-09T08:28:21.983607-07:00,1003.7067260742188,10.814775,10814.775 +18456,2025-03-09T08:28:32.797277-07:00,1003.7147827148438,10.81367,10813.67 +18457,2025-03-09T08:28:43.617274-07:00,1003.737060546875,10.819997,10819.997 +18458,2025-03-09T08:28:54.432918-07:00,1003.7279663085938,10.815644,10815.644 +18459,2025-03-09T08:29:05.250256-07:00,1003.7290649414062,10.817338,10817.338 +18460,2025-03-09T08:29:16.067261-07:00,1003.744873046875,10.817005,10817.005 +18461,2025-03-09T08:29:26.880414-07:00,1003.737060546875,10.813153,10813.153 +18462,2025-03-09T08:29:37.690444-07:00,1003.7173461914062,10.81003,10810.03 +18463,2025-03-09T08:29:48.505917-07:00,1003.6961059570312,10.815473,10815.473 +18464,2025-03-09T08:29:59.317271-07:00,1003.7027587890625,10.811354,10811.354 +18465,2025-03-09T08:30:10.135341-07:00,1003.723876953125,10.81807,10818.07 +18466,2025-03-09T08:30:20.949490-07:00,1003.7224731445312,10.814149,10814.149 +18467,2025-03-09T08:30:31.762871-07:00,1003.7081298828125,10.813381,10813.381 +18468,2025-03-09T08:30:42.583357-07:00,1003.737060546875,10.820486,10820.486 +18469,2025-03-09T08:30:53.398338-07:00,1003.6884155273438,10.814981,10814.981 +18470,2025-03-09T08:31:04.208259-07:00,1003.7092895507812,10.809921,10809.921 +18471,2025-03-09T08:31:15.023857-07:00,1003.6685791015625,10.815598,10815.598 +18472,2025-03-09T08:31:25.836567-07:00,1003.6829833984375,10.81271,10812.71 +18473,2025-03-09T08:31:36.656476-07:00,1003.6697387695312,10.819909,10819.909 +18474,2025-03-09T08:31:47.470512-07:00,1003.7184448242188,10.814036,10814.036 +18475,2025-03-09T08:31:58.281258-07:00,1003.6646118164062,10.810746,10810.746 +18476,2025-03-09T08:32:09.107538-07:00,1003.6788940429688,10.82628,10826.28 +18477,2025-03-09T08:32:19.923295-07:00,1003.6682739257812,10.815757,10815.757 +18478,2025-03-09T08:32:30.736986-07:00,1003.6500244140625,10.813691,10813.691 +18479,2025-03-09T08:32:41.556871-07:00,1003.651123046875,10.819885,10819.885 +18480,2025-03-09T08:32:52.373521-07:00,1003.655029296875,10.81665,10816.65 +18481,2025-03-09T08:33:03.191972-07:00,1003.6455688476562,10.818451,10818.451 +18482,2025-03-09T08:33:14.008454-07:00,1003.677001953125,10.816482,10816.482 +18483,2025-03-09T08:33:24.820923-07:00,1003.6597900390625,10.812469,10812.469 +18484,2025-03-09T08:33:35.637072-07:00,1003.67138671875,10.816149,10816.149 +18485,2025-03-09T08:33:46.462762-07:00,1003.65673828125,10.82569,10825.69 +18486,2025-03-09T08:33:57.275306-07:00,1003.66845703125,10.812544,10812.544 +18487,2025-03-09T08:34:08.091037-07:00,1003.7009887695312,10.815731,10815.731 +18488,2025-03-09T08:34:18.908330-07:00,1003.6453247070312,10.817293,10817.293 +18489,2025-03-09T08:34:29.725325-07:00,1003.6570434570312,10.816995,10816.995 +18490,2025-03-09T08:34:40.549528-07:00,1003.6280517578125,10.824203,10824.203 +18491,2025-03-09T08:34:51.365270-07:00,1003.6514282226562,10.815742,10815.742 +18492,2025-03-09T08:35:02.171278-07:00,1003.6356201171875,10.806008,10806.008 +18493,2025-03-09T08:35:12.988473-07:00,1003.6484375,10.817195,10817.195 +18494,2025-03-09T08:35:23.805479-07:00,1003.6443481445312,10.817006,10817.006 +18495,2025-03-09T08:35:34.625659-07:00,1003.6179809570312,10.82018,10820.18 +18496,2025-03-09T08:35:45.433414-07:00,1003.6336059570312,10.807755,10807.755 +18497,2025-03-09T08:35:56.254280-07:00,1003.6281127929688,10.820866,10820.866 +18498,2025-03-09T08:36:07.069274-07:00,1003.6383056640625,10.814994,10814.994 +18499,2025-03-09T08:36:17.887576-07:00,1003.63818359375,10.818302,10818.302 +18500,2025-03-09T08:36:28.704504-07:00,1003.615478515625,10.816928,10816.928 +18501,2025-03-09T08:36:39.521597-07:00,1003.6403198242188,10.817093,10817.093 +18502,2025-03-09T08:36:50.348607-07:00,1003.6585693359375,10.82701,10827.01 +18503,2025-03-09T08:37:01.170264-07:00,1003.6292114257812,10.821657,10821.657 +18504,2025-03-09T08:37:11.979773-07:00,1003.62109375,10.809509,10809.509 +18505,2025-03-09T08:37:22.801688-07:00,1003.627685546875,10.821915,10821.915 +18506,2025-03-09T08:37:33.629743-07:00,1003.630126953125,10.828055,10828.055 +18507,2025-03-09T08:37:44.441511-07:00,1003.650634765625,10.811768,10811.768 +18508,2025-03-09T08:37:55.256726-07:00,1003.6373291015625,10.815215,10815.215 +18509,2025-03-09T08:38:06.081400-07:00,1003.642333984375,10.824674,10824.674 +18510,2025-03-09T08:38:16.893530-07:00,1003.6448364257812,10.81213,10812.13 +18511,2025-03-09T08:38:27.712503-07:00,1003.64306640625,10.818973,10818.973 +18512,2025-03-09T08:38:38.537556-07:00,1003.6587524414062,10.825053,10825.053 +18513,2025-03-09T08:38:49.355245-07:00,1003.67041015625,10.817689,10817.689 +18514,2025-03-09T08:39:00.165525-07:00,1003.6610717773438,10.81028,10810.28 +18515,2025-03-09T08:39:10.980503-07:00,1003.664794921875,10.814978,10814.978 +18516,2025-03-09T08:39:21.794359-07:00,1003.6646728515625,10.813856,10813.856 +18517,2025-03-09T08:39:32.604613-07:00,1003.6550903320312,10.810254,10810.254 +18518,2025-03-09T08:39:43.423276-07:00,1003.6707763671875,10.818663,10818.663 +18519,2025-03-09T08:39:54.244014-07:00,1003.666748046875,10.820738,10820.738 +18520,2025-03-09T08:40:05.063738-07:00,1003.6758422851562,10.819724,10819.724 +18521,2025-03-09T08:40:15.881506-07:00,1003.6967163085938,10.817768,10817.768 +18522,2025-03-09T08:40:26.694267-07:00,1003.692626953125,10.812761,10812.761 +18523,2025-03-09T08:40:37.513280-07:00,1003.69921875,10.819013,10819.013 +18524,2025-03-09T08:40:48.331275-07:00,1003.7058715820312,10.817995,10817.995 +18525,2025-03-09T08:40:59.140494-07:00,1003.679443359375,10.809219,10809.219 +18526,2025-03-09T08:41:09.962255-07:00,1003.6729125976562,10.821761,10821.761 +18527,2025-03-09T08:41:20.784826-07:00,1003.6676635742188,10.822571,10822.571 +18528,2025-03-09T08:41:31.593595-07:00,1003.692626953125,10.808769,10808.769 +18529,2025-03-09T08:41:42.413498-07:00,1003.6915893554688,10.819903,10819.903 +18530,2025-03-09T08:41:53.234741-07:00,1003.6651611328125,10.821243,10821.243 +18531,2025-03-09T08:42:04.051006-07:00,1003.642822265625,10.816265,10816.265 +18532,2025-03-09T08:42:14.873504-07:00,1003.6716918945312,10.822498,10822.498 +18533,2025-03-09T08:42:25.694549-07:00,1003.6585693359375,10.821045,10821.045 +18534,2025-03-09T08:42:36.508616-07:00,1003.6702880859375,10.814067,10814.067 +18535,2025-03-09T08:42:47.332623-07:00,1003.6560668945312,10.824007,10824.007 +18536,2025-03-09T08:42:58.147261-07:00,1003.6758422851562,10.814638,10814.638 +18537,2025-03-09T08:43:08.972702-07:00,1003.6758422851562,10.825441,10825.441 +18538,2025-03-09T08:43:19.796516-07:00,1003.6612548828125,10.823814,10823.814 +18539,2025-03-09T08:43:30.618575-07:00,1003.6890869140625,10.822059,10822.059 +18540,2025-03-09T08:43:41.437918-07:00,1003.7073974609375,10.819343,10819.343 +18541,2025-03-09T08:43:52.253481-07:00,1003.6810302734375,10.815563,10815.563 +18542,2025-03-09T08:44:03.068272-07:00,1003.679931640625,10.814791,10814.791 +18543,2025-03-09T08:44:13.889019-07:00,1003.69970703125,10.820747,10820.747 +18544,2025-03-09T08:44:24.698552-07:00,1003.6785278320312,10.809533,10809.533 +18545,2025-03-09T08:44:35.528497-07:00,1003.6983032226562,10.829945,10829.945 +18546,2025-03-09T08:44:46.348985-07:00,1003.6693725585938,10.820488,10820.488 +18547,2025-03-09T08:44:57.169527-07:00,1003.6748657226562,10.820542,10820.542 +18548,2025-03-09T08:45:07.989496-07:00,1003.689208984375,10.819969,10819.969 +18549,2025-03-09T08:45:18.804787-07:00,1003.6825561523438,10.815291,10815.291 +18550,2025-03-09T08:45:29.625583-07:00,1003.69580078125,10.820796,10820.796 +18551,2025-03-09T08:45:40.450247-07:00,1003.6617431640625,10.824664,10824.664 +18552,2025-03-09T08:45:51.271035-07:00,1003.6814575195312,10.820788,10820.788 +18553,2025-03-09T08:46:02.076806-07:00,1003.6759643554688,10.805771,10805.771 +18554,2025-03-09T08:46:12.897520-07:00,1003.6682739257812,10.820714,10820.714 +18555,2025-03-09T08:46:23.716517-07:00,1003.6682739257812,10.818997,10818.997 +18556,2025-03-09T08:46:34.523254-07:00,1003.6448364257812,10.806737,10806.737 +18557,2025-03-09T08:46:45.338107-07:00,1003.6459350585938,10.814853,10814.853 +18558,2025-03-09T08:46:56.162322-07:00,1003.6592407226562,10.824215,10824.215 +18559,2025-03-09T08:47:06.973157-07:00,1003.652587890625,10.810835,10810.835 +18560,2025-03-09T08:47:17.789932-07:00,1003.6514282226562,10.816775,10816.775 +18561,2025-03-09T08:47:28.605617-07:00,1003.6434326171875,10.815685,10815.685 +18562,2025-03-09T08:47:39.429279-07:00,1003.6459350585938,10.823662,10823.662 +18563,2025-03-09T08:47:50.248254-07:00,1003.6514282226562,10.818975,10818.975 +18564,2025-03-09T08:48:01.070317-07:00,1003.6383056640625,10.822063,10822.063 +18565,2025-03-09T08:48:11.889779-07:00,1003.6592407226562,10.819462,10819.462 +18566,2025-03-09T08:48:22.708531-07:00,1003.6328125,10.818752,10818.752 +18567,2025-03-09T08:48:33.529584-07:00,1003.6536865234375,10.821053,10821.053 +18568,2025-03-09T08:48:44.347752-07:00,1003.6328125,10.818168,10818.168 +18569,2025-03-09T08:48:55.166313-07:00,1003.6668701171875,10.818561,10818.561 +18570,2025-03-09T08:49:05.987697-07:00,1003.6603393554688,10.821384,10821.384 +18571,2025-03-09T08:49:16.810557-07:00,1003.6825561523438,10.82286,10822.86 +18572,2025-03-09T08:49:27.622258-07:00,1003.6825561523438,10.811701,10811.701 +18573,2025-03-09T08:49:38.442331-07:00,1003.6603393554688,10.820073,10820.073 +18574,2025-03-09T08:49:49.262605-07:00,1003.6617431640625,10.820274,10820.274 +18575,2025-03-09T08:50:00.081268-07:00,1003.6906127929688,10.818663,10818.663 +18576,2025-03-09T08:50:10.909714-07:00,1003.6814575195312,10.828446,10828.446 +18577,2025-03-09T08:50:21.725524-07:00,1003.6693725585938,10.81581,10815.81 +18578,2025-03-09T08:50:32.546271-07:00,1003.6773681640625,10.820747,10820.747 +18579,2025-03-09T08:50:43.370050-07:00,1003.6839599609375,10.823779,10823.779 +18580,2025-03-09T08:50:54.193374-07:00,1003.6865844726562,10.823324,10823.324 +18581,2025-03-09T08:51:05.011265-07:00,1003.6707763671875,10.817891,10817.891 +18582,2025-03-09T08:51:15.831514-07:00,1003.6785278320312,10.820249,10820.249 +18583,2025-03-09T08:51:26.657267-07:00,1003.666748046875,10.825753,10825.753 +18584,2025-03-09T08:51:37.475266-07:00,1003.6956176757812,10.817999,10817.999 +18585,2025-03-09T08:51:48.284460-07:00,1003.679931640625,10.809194,10809.194 +18586,2025-03-09T08:51:59.111348-07:00,1003.6758422851562,10.826888,10826.888 +18587,2025-03-09T08:52:09.936393-07:00,1003.6824951171875,10.825045,10825.045 +18588,2025-03-09T08:52:20.757603-07:00,1003.68359375,10.82121,10821.21 +18589,2025-03-09T08:52:31.578548-07:00,1003.6849975585938,10.820945,10820.945 +18590,2025-03-09T08:52:42.396548-07:00,1003.6860961914062,10.818,10818.0 +18591,2025-03-09T08:52:53.214365-07:00,1003.6875,10.817817,10817.817 +18592,2025-03-09T08:53:04.029580-07:00,1003.6976318359375,10.815215,10815.215 +18593,2025-03-09T08:53:14.857272-07:00,1003.7123413085938,10.827692,10827.692 +18594,2025-03-09T08:53:25.673633-07:00,1003.6804809570312,10.816361,10816.361 +18595,2025-03-09T08:53:36.494384-07:00,1003.72802734375,10.820751,10820.751 +18596,2025-03-09T08:53:47.305268-07:00,1003.7093505859375,10.810884,10810.884 +18597,2025-03-09T08:53:58.123272-07:00,1003.6961669921875,10.818004,10818.004 +18598,2025-03-09T08:54:08.949275-07:00,1003.7184448242188,10.826003,10826.003 +18599,2025-03-09T08:54:19.760276-07:00,1003.6734619140625,10.811001,10811.001 +18600,2025-03-09T08:54:30.579278-07:00,1003.7012329101562,10.819002,10819.002 +18601,2025-03-09T08:54:41.396315-07:00,1003.6956787109375,10.817037,10817.037 +18602,2025-03-09T08:54:52.217523-07:00,1003.7037353515625,10.821208,10821.208 +18603,2025-03-09T08:55:03.040425-07:00,1003.7008056640625,10.822902,10822.902 +18604,2025-03-09T08:55:13.862777-07:00,1003.7271118164062,10.822352,10822.352 +18605,2025-03-09T08:55:24.690314-07:00,1003.7164306640625,10.827537,10827.537 +18606,2025-03-09T08:55:35.507266-07:00,1003.721923828125,10.816952,10816.952 +18607,2025-03-09T08:55:46.332883-07:00,1003.7098388671875,10.825617,10825.617 +18608,2025-03-09T08:55:57.159600-07:00,1003.684814453125,10.826717,10826.717 +18609,2025-03-09T08:56:07.980556-07:00,1003.7140502929688,10.820956,10820.956 +18610,2025-03-09T08:56:18.793855-07:00,1003.70751953125,10.813299,10813.299 +18611,2025-03-09T08:56:29.620262-07:00,1003.688720703125,10.826407,10826.407 +18612,2025-03-09T08:56:40.440787-07:00,1003.7176513671875,10.820525,10820.525 +18613,2025-03-09T08:56:51.267501-07:00,1003.7213134765625,10.826714,10826.714 +18614,2025-03-09T08:57:02.089319-07:00,1003.6806030273438,10.821818,10821.818 +18615,2025-03-09T08:57:12.902022-07:00,1003.716064453125,10.812703,10812.703 +18616,2025-03-09T08:57:23.718972-07:00,1003.65673828125,10.81695,10816.95 +18617,2025-03-09T08:57:34.542274-07:00,1003.7197875976562,10.823302,10823.302 +18618,2025-03-09T08:57:45.361878-07:00,1003.7000122070312,10.819604,10819.604 +18619,2025-03-09T08:57:56.178595-07:00,1003.7079467773438,10.816717,10816.717 +18620,2025-03-09T08:58:06.996279-07:00,1003.6973266601562,10.817684,10817.684 +18621,2025-03-09T08:58:17.818307-07:00,1003.6629028320312,10.822028,10822.028 +18622,2025-03-09T08:58:28.638611-07:00,1003.6654663085938,10.820304,10820.304 +18623,2025-03-09T08:58:39.454273-07:00,1003.7140502929688,10.815662,10815.662 +18624,2025-03-09T08:58:50.274274-07:00,1003.7166137695312,10.820001,10820.001 +18625,2025-03-09T08:59:01.094597-07:00,1003.704833984375,10.820323,10820.323 +18626,2025-03-09T08:59:11.919862-07:00,1003.6927490234375,10.825265,10825.265 +18627,2025-03-09T08:59:22.745946-07:00,1003.7228393554688,10.826084,10826.084 +18628,2025-03-09T08:59:33.561197-07:00,1003.7175903320312,10.815251,10815.251 +18629,2025-03-09T08:59:44.382368-07:00,1003.7267456054688,10.821171,10821.171 +18630,2025-03-09T08:59:55.196274-07:00,1003.7357788085938,10.813906,10813.906 +18631,2025-03-09T09:00:06.017735-07:00,1003.71044921875,10.821461,10821.461 +18632,2025-03-09T09:00:16.844271-07:00,1003.7251586914062,10.826536,10826.536 +18633,2025-03-09T09:00:27.661665-07:00,1003.7606201171875,10.817394,10817.394 +18634,2025-03-09T09:00:38.477985-07:00,1003.715576171875,10.81632,10816.32 +18635,2025-03-09T09:00:49.290313-07:00,1003.7103271484375,10.812328,10812.328 +18636,2025-03-09T09:01:00.111267-07:00,1003.7536010742188,10.820954,10820.954 +18637,2025-03-09T09:01:10.931600-07:00,1003.7814331054688,10.820333,10820.333 +18638,2025-03-09T09:01:21.751274-07:00,1003.71533203125,10.819674,10819.674 +18639,2025-03-09T09:01:32.573264-07:00,1003.7508544921875,10.82199,10821.99 +18640,2025-03-09T09:01:43.393121-07:00,1003.7244262695312,10.819857,10819.857 +18641,2025-03-09T09:01:54.201564-07:00,1003.7531127929688,10.808443,10808.443 +18642,2025-03-09T09:02:05.022280-07:00,1003.7464599609375,10.820716,10820.716 +18643,2025-03-09T09:02:15.853560-07:00,1003.71484375,10.83128,10831.28 +18644,2025-03-09T09:02:26.670785-07:00,1003.7636108398438,10.817225,10817.225 +18645,2025-03-09T09:02:37.489541-07:00,1003.7118530273438,10.818756,10818.756 +18646,2025-03-09T09:02:48.315807-07:00,1003.7078247070312,10.826266,10826.266 +18647,2025-03-09T09:02:59.143468-07:00,1003.7276611328125,10.827661,10827.661 +18648,2025-03-09T09:03:09.955883-07:00,1003.7301635742188,10.812415,10812.415 +18649,2025-03-09T09:03:20.781128-07:00,1003.7103271484375,10.825245,10825.245 +18650,2025-03-09T09:03:31.595530-07:00,1003.71826171875,10.814402,10814.402 +18651,2025-03-09T09:03:42.417532-07:00,1003.6995849609375,10.822002,10822.002 +18652,2025-03-09T09:03:53.240799-07:00,1003.728515625,10.823267,10823.267 +18653,2025-03-09T09:04:04.060529-07:00,1003.7020874023438,10.81973,10819.73 +18654,2025-03-09T09:04:14.878591-07:00,1003.6889038085938,10.818062,10818.062 +18655,2025-03-09T09:04:25.698098-07:00,1003.7112426757812,10.819507,10819.507 +18656,2025-03-09T09:04:36.520455-07:00,1003.6939086914062,10.822357,10822.357 +18657,2025-03-09T09:04:47.350317-07:00,1003.699462890625,10.829862,10829.862 +18658,2025-03-09T09:04:58.171645-07:00,1003.70166015625,10.821328,10821.328 +18659,2025-03-09T09:05:08.996273-07:00,1003.7305297851562,10.824628,10824.628 +18660,2025-03-09T09:05:19.819051-07:00,1003.7107543945312,10.822778,10822.778 +18661,2025-03-09T09:05:30.647392-07:00,1003.7410888671875,10.828341,10828.341 +18662,2025-03-09T09:05:41.499339-07:00,1003.748779296875,10.851947,10851.947 +18663,2025-03-09T09:05:52.326362-07:00,1003.7039184570312,10.827023,10827.023 +18664,2025-03-09T09:06:03.146356-07:00,1003.779052734375,10.819994,10819.994 +18665,2025-03-09T09:06:13.973262-07:00,1003.7327880859375,10.826906,10826.906 +18666,2025-03-09T09:06:24.797613-07:00,1003.7340087890625,10.824351,10824.351 +18667,2025-03-09T09:06:35.618401-07:00,1003.7406005859375,10.820788,10820.788 +18668,2025-03-09T09:06:46.450361-07:00,1003.7485961914062,10.83196,10831.96 +18669,2025-03-09T09:06:57.279871-07:00,1003.7167358398438,10.82951,10829.51 +18670,2025-03-09T09:07:08.097353-07:00,1003.7257690429688,10.817482,10817.482 +18671,2025-03-09T09:07:18.923344-07:00,1003.7084350585938,10.825991,10825.991 +18672,2025-03-09T09:07:29.744625-07:00,1003.7033081054688,10.821281,10821.281 +18673,2025-03-09T09:07:40.569343-07:00,1003.7175903320312,10.824718,10824.718 +18674,2025-03-09T09:07:51.396621-07:00,1003.725341796875,10.827278,10827.278 +18675,2025-03-09T09:08:02.219985-07:00,1003.7003173828125,10.823364,10823.364 +18676,2025-03-09T09:08:13.042364-07:00,1003.6790771484375,10.822379,10822.379 +18677,2025-03-09T09:08:23.870001-07:00,1003.6881103515625,10.827637,10827.637 +18678,2025-03-09T09:08:34.693577-07:00,1003.6631469726562,10.823576,10823.576 +18679,2025-03-09T09:08:45.519200-07:00,1003.6433715820312,10.825623,10825.623 +18680,2025-03-09T09:08:56.337363-07:00,1003.653564453125,10.818163,10818.163 +18681,2025-03-09T09:09:07.157260-07:00,1003.6403198242188,10.819897,10819.897 +18682,2025-03-09T09:09:17.987859-07:00,1003.64697265625,10.830599,10830.599 +18683,2025-03-09T09:09:28.809367-07:00,1003.6403198242188,10.821508,10821.508 +18684,2025-03-09T09:09:39.629492-07:00,1003.6681518554688,10.820125,10820.125 +18685,2025-03-09T09:09:50.452652-07:00,1003.6824951171875,10.82316,10823.16 +18686,2025-03-09T09:10:01.271367-07:00,1003.670654296875,10.818715,10818.715 +18687,2025-03-09T09:10:12.093641-07:00,1003.6838989257812,10.822274,10822.274 +18688,2025-03-09T09:10:22.920363-07:00,1003.6797485351562,10.826722,10826.722 +18689,2025-03-09T09:10:33.745571-07:00,1003.71533203125,10.825208,10825.208 +18690,2025-03-09T09:10:44.562699-07:00,1003.7296142578125,10.817128,10817.128 +18691,2025-03-09T09:10:55.385578-07:00,1003.724365234375,10.822879,10822.879 +18692,2025-03-09T09:11:06.207554-07:00,1003.7334594726562,10.821976,10821.976 +18693,2025-03-09T09:11:17.036366-07:00,1003.7189331054688,10.828812,10828.812 +18694,2025-03-09T09:11:27.864509-07:00,1003.7268676757812,10.828143,10828.143 +18695,2025-03-09T09:11:38.697008-07:00,1003.7620849609375,10.832499,10832.499 +18696,2025-03-09T09:11:49.511604-07:00,1003.7290649414062,10.814596,10814.596 +18697,2025-03-09T09:12:00.342709-07:00,1003.7514038085938,10.831105,10831.105 +18698,2025-03-09T09:12:11.164343-07:00,1003.7514038085938,10.821634,10821.634 +18699,2025-03-09T09:12:21.989343-07:00,1003.747314453125,10.825,10825.0 +18700,2025-03-09T09:12:32.809362-07:00,1003.7263793945312,10.820019,10820.019 +18701,2025-03-09T09:12:43.630409-07:00,1003.7432250976562,10.821047,10821.047 +18702,2025-03-09T09:12:54.453243-07:00,1003.72998046875,10.822834,10822.834 +18703,2025-03-09T09:13:05.274494-07:00,1003.6983642578125,10.821251,10821.251 +18704,2025-03-09T09:13:16.108411-07:00,1003.7061157226562,10.833917,10833.917 +18705,2025-03-09T09:13:26.927653-07:00,1003.753662109375,10.819242,10819.242 +18706,2025-03-09T09:13:37.758205-07:00,1003.7561645507812,10.830552,10830.552 +18707,2025-03-09T09:13:48.578911-07:00,1003.7454833984375,10.820706,10820.706 +18708,2025-03-09T09:13:59.412363-07:00,1003.7333374023438,10.833452,10833.452 +18709,2025-03-09T09:14:10.232641-07:00,1003.7058715820312,10.820278,10820.278 +18710,2025-03-09T09:14:21.064358-07:00,1003.7479858398438,10.831717,10831.717 +18711,2025-03-09T09:14:31.881361-07:00,1003.7567138671875,10.817003,10817.003 +18712,2025-03-09T09:14:42.714634-07:00,1003.7859497070312,10.833273,10833.273 +18713,2025-03-09T09:14:53.530365-07:00,1003.7793579101562,10.815731,10815.731 +18714,2025-03-09T09:15:04.350942-07:00,1003.7859497070312,10.820577,10820.577 +18715,2025-03-09T09:15:15.182604-07:00,1003.7609252929688,10.831662,10831.662 +18716,2025-03-09T09:15:26.008959-07:00,1003.7609252929688,10.826355,10826.355 +18717,2025-03-09T09:15:36.828365-07:00,1003.7620239257812,10.819406,10819.406 +18718,2025-03-09T09:15:47.655358-07:00,1003.7503051757812,10.826993,10826.993 +18719,2025-03-09T09:15:58.478819-07:00,1003.7843627929688,10.823461,10823.461 +18720,2025-03-09T09:16:09.308359-07:00,1003.786865234375,10.82954,10829.54 +18721,2025-03-09T09:16:20.128491-07:00,1003.7803344726562,10.820132,10820.132 +18722,2025-03-09T09:16:30.958450-07:00,1003.7619018554688,10.829959,10829.959 +18723,2025-03-09T09:16:41.790774-07:00,1003.7893676757812,10.832324,10832.324 +18724,2025-03-09T09:16:52.616356-07:00,1003.7842407226562,10.825582,10825.582 +18725,2025-03-09T09:17:03.436524-07:00,1003.7720336914062,10.820168,10820.168 +18726,2025-03-09T09:17:14.270504-07:00,1003.7800903320312,10.83398,10833.98 +18727,2025-03-09T09:17:25.100651-07:00,1003.7613525390625,10.830147,10830.147 +18728,2025-03-09T09:17:35.918365-07:00,1003.756103515625,10.817714,10817.714 +18729,2025-03-09T09:17:46.747365-07:00,1003.7572021484375,10.829,10829.0 +18730,2025-03-09T09:17:57.580365-07:00,1003.7531127929688,10.833,10833.0 +18731,2025-03-09T09:18:08.407491-07:00,1003.755615234375,10.827126,10827.126 +18732,2025-03-09T09:18:19.246570-07:00,1003.7134399414062,10.839079,10839.079 +18733,2025-03-09T09:18:30.073462-07:00,1003.744873046875,10.826892,10826.892 +18734,2025-03-09T09:18:40.895365-07:00,1003.7501831054688,10.821903,10821.903 +18735,2025-03-09T09:18:51.729236-07:00,1003.7658081054688,10.833871,10833.871 +18736,2025-03-09T09:19:02.551359-07:00,1003.7738037109375,10.822123,10822.123 +18737,2025-03-09T09:19:13.377370-07:00,1003.7525634765625,10.826011,10826.011 +18738,2025-03-09T09:19:24.203707-07:00,1003.7459106445312,10.826337,10826.337 +18739,2025-03-09T09:19:35.039355-07:00,1003.77490234375,10.835648,10835.648 +18740,2025-03-09T09:19:45.864610-07:00,1003.7550659179688,10.825255,10825.255 +18741,2025-03-09T09:19:56.681774-07:00,1003.7971801757812,10.817164,10817.164 +18742,2025-03-09T09:20:07.514714-07:00,1003.7815551757812,10.83294,10832.94 +18743,2025-03-09T09:20:18.343361-07:00,1003.794677734375,10.828647,10828.647 +18744,2025-03-09T09:20:29.170654-07:00,1003.7906494140625,10.827293,10827.293 +18745,2025-03-09T09:20:39.991482-07:00,1003.798583984375,10.820828,10820.828 +18746,2025-03-09T09:20:50.829559-07:00,1003.770751953125,10.838077,10838.077 +18747,2025-03-09T09:21:01.657604-07:00,1003.7920532226562,10.828045,10828.045 +18748,2025-03-09T09:21:12.482223-07:00,1003.7864990234375,10.824619,10824.619 +18749,2025-03-09T09:21:23.301652-07:00,1003.8063354492188,10.819429,10819.429 +18750,2025-03-09T09:21:34.128343-07:00,1003.7890014648438,10.826691,10826.691 +18751,2025-03-09T09:21:44.959362-07:00,1003.8076782226562,10.831019,10831.019 +18752,2025-03-09T09:21:55.787400-07:00,1003.7837524414062,10.828038,10828.038 +18753,2025-03-09T09:22:06.611701-07:00,1003.7837524414062,10.824301,10824.301 +18754,2025-03-09T09:22:17.441878-07:00,1003.79150390625,10.830177,10830.177 +18755,2025-03-09T09:22:28.274584-07:00,1003.79150390625,10.832706,10832.706 +18756,2025-03-09T09:22:39.107408-07:00,1003.771728515625,10.832824,10832.824 +18757,2025-03-09T09:22:49.940625-07:00,1003.7730712890625,10.833217,10833.217 +18758,2025-03-09T09:23:00.770664-07:00,1003.7664184570312,10.830039,10830.039 +18759,2025-03-09T09:23:11.597002-07:00,1003.7554931640625,10.826338,10826.338 +18760,2025-03-09T09:23:22.433701-07:00,1003.7832641601562,10.836699,10836.699 +18761,2025-03-09T09:23:33.264356-07:00,1003.776611328125,10.830655,10830.655 +18762,2025-03-09T09:23:44.090617-07:00,1003.7471923828125,10.826261,10826.261 +18763,2025-03-09T09:23:54.927354-07:00,1003.8013916015625,10.836737,10836.737 +18764,2025-03-09T09:24:05.756610-07:00,1003.8278198242188,10.829256,10829.256 +18765,2025-03-09T09:24:16.585501-07:00,1003.8223266601562,10.828891,10828.891 +18766,2025-03-09T09:24:27.412703-07:00,1003.7907104492188,10.827202,10827.202 +18767,2025-03-09T09:24:38.231503-07:00,1003.776123046875,10.8188,10818.8 +18768,2025-03-09T09:24:49.059522-07:00,1003.79736328125,10.828019,10828.019 +18769,2025-03-09T09:24:59.885371-07:00,1003.7576293945312,10.825849,10825.849 +18770,2025-03-09T09:25:10.716085-07:00,1003.7667846679688,10.830714,10830.714 +18771,2025-03-09T09:25:21.548356-07:00,1003.7918090820312,10.832271,10832.271 +18772,2025-03-09T09:25:32.367400-07:00,1003.7667846679688,10.819044,10819.044 +18773,2025-03-09T09:25:43.198352-07:00,1003.7876586914062,10.830952,10830.952 +18774,2025-03-09T09:25:54.026362-07:00,1003.756103515625,10.82801,10828.01 +18775,2025-03-09T09:26:04.853367-07:00,1003.7494506835938,10.827005,10827.005 +18776,2025-03-09T09:26:15.679555-07:00,1003.7572021484375,10.826188,10826.188 +18777,2025-03-09T09:26:26.503734-07:00,1003.7505493164062,10.824179,10824.179 +18778,2025-03-09T09:26:37.332358-07:00,1003.7230224609375,10.828624,10828.624 +18779,2025-03-09T09:26:48.163365-07:00,1003.7164306640625,10.831007,10831.007 +18780,2025-03-09T09:26:59.000407-07:00,1003.7463989257812,10.837042,10837.042 +18781,2025-03-09T09:27:09.826365-07:00,1003.719970703125,10.825958,10825.958 +18782,2025-03-09T09:27:20.649366-07:00,1003.7463989257812,10.823001,10823.001 +18783,2025-03-09T09:27:31.474817-07:00,1003.7224731445312,10.825451,10825.451 +18784,2025-03-09T09:27:42.308358-07:00,1003.6869506835938,10.833541,10833.541 +18785,2025-03-09T09:27:53.136693-07:00,1003.6869506835938,10.828335,10828.335 +18786,2025-03-09T09:28:03.962612-07:00,1003.734619140625,10.825919,10825.919 +18787,2025-03-09T09:28:14.793392-07:00,1003.7001342773438,10.83078,10830.78 +18788,2025-03-09T09:28:25.625649-07:00,1003.73046875,10.832257,10832.257 +18789,2025-03-09T09:28:36.450992-07:00,1003.7290649414062,10.825343,10825.343 +18790,2025-03-09T09:28:47.282363-07:00,1003.7315673828125,10.831371,10831.371 +18791,2025-03-09T09:28:58.110507-07:00,1003.7634887695312,10.828144,10828.144 +18792,2025-03-09T09:29:08.945905-07:00,1003.7393188476562,10.835398,10835.398 +18793,2025-03-09T09:29:19.781393-07:00,1003.732666015625,10.835488,10835.488 +18794,2025-03-09T09:29:30.607451-07:00,1003.7748413085938,10.826058,10826.058 +18795,2025-03-09T09:29:41.435341-07:00,1003.7340698242188,10.82789,10827.89 +18796,2025-03-09T09:29:52.268879-07:00,1003.71533203125,10.833538,10833.538 +18797,2025-03-09T09:30:03.094572-07:00,1003.7167358398438,10.825693,10825.693 +18798,2025-03-09T09:30:13.915349-07:00,1003.708740234375,10.820777,10820.777 +18799,2025-03-09T09:30:24.744503-07:00,1003.724365234375,10.829154,10829.154 +18800,2025-03-09T09:30:35.576748-07:00,1003.7390747070312,10.832245,10832.245 +18801,2025-03-09T09:30:46.409577-07:00,1003.7376708984375,10.832829,10832.829 +18802,2025-03-09T09:30:57.235355-07:00,1003.7401733398438,10.825778,10825.778 +18803,2025-03-09T09:31:08.071417-07:00,1003.7954711914062,10.836062,10836.062 +18804,2025-03-09T09:31:18.902693-07:00,1003.7679443359375,10.831276,10831.276 +18805,2025-03-09T09:31:29.731416-07:00,1003.7492065429688,10.828723,10828.723 +18806,2025-03-09T09:31:40.562922-07:00,1003.7638549804688,10.831506,10831.506 +18807,2025-03-09T09:31:51.385358-07:00,1003.74267578125,10.822436,10822.436 +18808,2025-03-09T09:32:02.219529-07:00,1003.75830078125,10.834171,10834.171 +18809,2025-03-09T09:32:13.040361-07:00,1003.779541015625,10.820832,10820.832 +18810,2025-03-09T09:32:23.873767-07:00,1003.8070068359375,10.833406,10833.406 +18811,2025-03-09T09:32:34.703360-07:00,1003.7740478515625,10.829593,10829.593 +18812,2025-03-09T09:32:45.534717-07:00,1003.7542114257812,10.831357,10831.357 +18813,2025-03-09T09:32:56.355362-07:00,1003.734375,10.820645,10820.645 +18814,2025-03-09T09:33:07.181446-07:00,1003.7489624023438,10.826084,10826.084 +18815,2025-03-09T09:33:18.018508-07:00,1003.7820434570312,10.837062,10837.062 +18816,2025-03-09T09:33:28.845552-07:00,1003.7831420898438,10.827044,10827.044 +18817,2025-03-09T09:33:39.672365-07:00,1003.7845458984375,10.826813,10826.813 +18818,2025-03-09T09:33:50.502524-07:00,1003.7567138671875,10.830159,10830.159 +18819,2025-03-09T09:34:01.336360-07:00,1003.7778930664062,10.833836,10833.836 +18820,2025-03-09T09:34:12.164810-07:00,1003.7845458984375,10.82845,10828.45 +18821,2025-03-09T09:34:23.002359-07:00,1003.7910766601562,10.837549,10837.549 +18822,2025-03-09T09:34:33.836827-07:00,1003.7910766601562,10.834468,10834.468 +18823,2025-03-09T09:34:44.672398-07:00,1003.7831420898438,10.835571,10835.571 +18824,2025-03-09T09:34:55.500360-07:00,1003.7896728515625,10.827962,10827.962 +18825,2025-03-09T09:35:06.330720-07:00,1003.7581176757812,10.83036,10830.36 +18826,2025-03-09T09:35:17.161517-07:00,1003.7658081054688,10.830797,10830.797 +18827,2025-03-09T09:35:28.000636-07:00,1003.7393798828125,10.839119,10839.119 +18828,2025-03-09T09:35:38.829230-07:00,1003.7592163085938,10.828594,10828.594 +18829,2025-03-09T09:35:49.650691-07:00,1003.747314453125,10.821461,10821.461 +18830,2025-03-09T09:36:00.482436-07:00,1003.768310546875,10.831745,10831.745 +18831,2025-03-09T09:36:11.317678-07:00,1003.742919921875,10.835242,10835.242 +18832,2025-03-09T09:36:22.146345-07:00,1003.7784423828125,10.828667,10828.667 +18833,2025-03-09T09:36:32.979617-07:00,1003.7676391601562,10.833272,10833.272 +18834,2025-03-09T09:36:43.800357-07:00,1003.7492065429688,10.82074,10820.74 +18835,2025-03-09T09:36:54.641367-07:00,1003.7715454101562,10.84101,10841.01 +18836,2025-03-09T09:37:05.460408-07:00,1003.751708984375,10.819041,10819.041 +18837,2025-03-09T09:37:16.299362-07:00,1003.7806396484375,10.838954,10838.954 +18838,2025-03-09T09:37:27.127414-07:00,1003.7553100585938,10.828052,10828.052 +18839,2025-03-09T09:37:37.953338-07:00,1003.7619018554688,10.825924,10825.924 +18840,2025-03-09T09:37:48.786518-07:00,1003.7354736328125,10.83318,10833.18 +18841,2025-03-09T09:37:59.623606-07:00,1003.7501831054688,10.837088,10837.088 +18842,2025-03-09T09:38:10.451691-07:00,1003.7302856445312,10.828085,10828.085 +18843,2025-03-09T09:38:21.284360-07:00,1003.751220703125,10.832669,10832.669 +18844,2025-03-09T09:38:32.113755-07:00,1003.7501831054688,10.829395,10829.395 +18845,2025-03-09T09:38:42.936693-07:00,1003.751220703125,10.822938,10822.938 +18846,2025-03-09T09:38:53.769608-07:00,1003.7379760742188,10.832915,10832.915 +18847,2025-03-09T09:39:04.607364-07:00,1003.7379760742188,10.837756,10837.756 +18848,2025-03-09T09:39:15.437552-07:00,1003.7748413085938,10.830188,10830.188 +18849,2025-03-09T09:39:26.270250-07:00,1003.7271728515625,10.832698,10832.698 +18850,2025-03-09T09:39:37.101611-07:00,1003.7195434570312,10.831361,10831.361 +18851,2025-03-09T09:39:47.932611-07:00,1003.7723999023438,10.831,10831.0 +18852,2025-03-09T09:39:58.758443-07:00,1003.7603149414062,10.825832,10825.832 +18853,2025-03-09T09:40:09.597680-07:00,1003.779052734375,10.839237,10839.237 +18854,2025-03-09T09:40:20.428587-07:00,1003.7801513671875,10.830907,10830.907 +18855,2025-03-09T09:40:31.265511-07:00,1003.7484130859375,10.836924,10836.924 +18856,2025-03-09T09:40:42.090363-07:00,1003.7393798828125,10.824852,10824.852 +18857,2025-03-09T09:40:52.919701-07:00,1003.7734985351562,10.829338,10829.338 +18858,2025-03-09T09:41:03.749043-07:00,1003.7801513671875,10.829342,10829.342 +18859,2025-03-09T09:41:14.569683-07:00,1003.78564453125,10.82064,10820.64 +18860,2025-03-09T09:41:25.400364-07:00,1003.7734985351562,10.830681,10830.681 +18861,2025-03-09T09:41:36.231362-07:00,1003.7734985351562,10.830998,10830.998 +18862,2025-03-09T09:41:47.060350-07:00,1003.7658081054688,10.828988,10828.988 +18863,2025-03-09T09:41:57.897498-07:00,1003.7459106445312,10.837148,10837.148 +18864,2025-03-09T09:42:08.726561-07:00,1003.7525634765625,10.829063,10829.063 +18865,2025-03-09T09:42:19.559713-07:00,1003.7748413085938,10.833152,10833.152 +18866,2025-03-09T09:42:30.388245-07:00,1003.7801513671875,10.828532,10828.532 +18867,2025-03-09T09:42:41.220343-07:00,1003.7734985351562,10.832098,10832.098 +18868,2025-03-09T09:42:52.049663-07:00,1003.7801513671875,10.82932,10829.32 +18869,2025-03-09T09:43:02.877065-07:00,1003.7801513671875,10.827402,10827.402 +18870,2025-03-09T09:43:13.707610-07:00,1003.7957763671875,10.830545,10830.545 +18871,2025-03-09T09:43:24.537362-07:00,1003.7734985351562,10.829752,10829.752 +18872,2025-03-09T09:43:35.365772-07:00,1003.766845703125,10.82841,10828.41 +18873,2025-03-09T09:43:46.200481-07:00,1003.7759399414062,10.834709,10834.709 +18874,2025-03-09T09:43:57.028831-07:00,1003.7484130859375,10.82835,10828.35 +18875,2025-03-09T09:44:07.863362-07:00,1003.7693481445312,10.834531,10834.531 +18876,2025-03-09T09:44:18.693482-07:00,1003.7704467773438,10.83012,10830.12 +18877,2025-03-09T09:44:29.521360-07:00,1003.7561645507812,10.827878,10827.878 +18878,2025-03-09T09:44:40.348749-07:00,1003.7572021484375,10.827389,10827.389 +18879,2025-03-09T09:44:51.173824-07:00,1003.7440795898438,10.825075,10825.075 +18880,2025-03-09T09:45:02.009514-07:00,1003.7520141601562,10.83569,10835.69 +18881,2025-03-09T09:45:12.833358-07:00,1003.7597045898438,10.823844,10823.844 +18882,2025-03-09T09:45:23.658607-07:00,1003.74658203125,10.825249,10825.249 +18883,2025-03-09T09:45:34.486363-07:00,1003.7332763671875,10.827756,10827.756 +18884,2025-03-09T09:45:45.324623-07:00,1003.7586059570312,10.83826,10838.26 +18885,2025-03-09T09:45:56.158488-07:00,1003.7398681640625,10.833865,10833.865 +18886,2025-03-09T09:46:06.982919-07:00,1003.7586059570312,10.824431,10824.431 +18887,2025-03-09T09:46:17.812362-07:00,1003.7388305664062,10.829443,10829.443 +18888,2025-03-09T09:46:28.643419-07:00,1003.7256469726562,10.831057,10831.057 +18889,2025-03-09T09:46:39.480978-07:00,1003.7134399414062,10.837559,10837.559 +18890,2025-03-09T09:46:50.312357-07:00,1003.7134399414062,10.831379,10831.379 +18891,2025-03-09T09:47:01.145130-07:00,1003.766357421875,10.832773,10832.773 +18892,2025-03-09T09:47:11.987740-07:00,1003.7531127929688,10.84261,10842.61 +18893,2025-03-09T09:47:22.813589-07:00,1003.7611083984375,10.825849,10825.849 +18894,2025-03-09T09:47:33.651822-07:00,1003.7489624023438,10.838233,10838.233 +18895,2025-03-09T09:47:44.481358-07:00,1003.7489624023438,10.829536,10829.536 +18896,2025-03-09T09:47:55.307619-07:00,1003.7478637695312,10.826261,10826.261 +18897,2025-03-09T09:48:06.138635-07:00,1003.7412719726562,10.831016,10831.016 +18898,2025-03-09T09:48:16.969653-07:00,1003.7357788085938,10.831018,10831.018 +18899,2025-03-09T09:48:27.815031-07:00,1003.783447265625,10.845378,10845.378 +18900,2025-03-09T09:48:38.642341-07:00,1003.7357788085938,10.82731,10827.31 +18901,2025-03-09T09:48:49.477429-07:00,1003.7281494140625,10.835088,10835.088 +18902,2025-03-09T09:49:00.309363-07:00,1003.7489624023438,10.831934,10831.934 +18903,2025-03-09T09:49:11.152344-07:00,1003.7357788085938,10.842981,10842.981 +18904,2025-03-09T09:49:21.989116-07:00,1003.76220703125,10.836772,10836.772 +18905,2025-03-09T09:49:32.817568-07:00,1003.7291259765625,10.828452,10828.452 +18906,2025-03-09T09:49:43.649563-07:00,1003.7281494140625,10.831995,10831.995 +18907,2025-03-09T09:49:54.479352-07:00,1003.7489624023438,10.829789,10829.789 +18908,2025-03-09T09:50:05.310695-07:00,1003.7371826171875,10.831343,10831.343 +18909,2025-03-09T09:50:16.142858-07:00,1003.76220703125,10.832163,10832.163 +18910,2025-03-09T09:50:26.970847-07:00,1003.7514038085938,10.827989,10827.989 +18911,2025-03-09T09:50:37.806352-07:00,1003.7570190429688,10.835505,10835.505 +18912,2025-03-09T09:50:48.626622-07:00,1003.744873046875,10.82027,10820.27 +18913,2025-03-09T09:50:59.463444-07:00,1003.79248046875,10.836822,10836.822 +18914,2025-03-09T09:51:10.290764-07:00,1003.7647094726562,10.82732,10827.32 +18915,2025-03-09T09:51:21.127598-07:00,1003.7977294921875,10.836834,10836.834 +18916,2025-03-09T09:51:31.960507-07:00,1003.7647094726562,10.832909,10832.909 +18917,2025-03-09T09:51:42.796668-07:00,1003.7570190429688,10.836161,10836.161 +18918,2025-03-09T09:51:53.622796-07:00,1003.755615234375,10.826128,10826.128 +18919,2025-03-09T09:52:04.464748-07:00,1003.76220703125,10.841952,10841.952 +18920,2025-03-09T09:52:15.297588-07:00,1003.78857421875,10.83284,10832.84 +18921,2025-03-09T09:52:26.128342-07:00,1003.755615234375,10.830754,10830.754 +18922,2025-03-09T09:52:36.971564-07:00,1003.7570190429688,10.843222,10843.222 +18923,2025-03-09T09:52:47.796366-07:00,1003.783447265625,10.824802,10824.802 +18924,2025-03-09T09:52:58.635570-07:00,1003.783447265625,10.839204,10839.204 +18925,2025-03-09T09:53:09.467811-07:00,1003.7778930664062,10.832241,10832.241 +18926,2025-03-09T09:53:20.304711-07:00,1003.73828125,10.8369,10836.9 +18927,2025-03-09T09:53:31.141618-07:00,1003.7357788085938,10.836907,10836.907 +18928,2025-03-09T09:53:41.968362-07:00,1003.7701416015625,10.826744,10826.744 +18929,2025-03-09T09:53:52.800680-07:00,1003.8043823242188,10.832318,10832.318 +18930,2025-03-09T09:54:03.638872-07:00,1003.768798828125,10.838192,10838.192 +18931,2025-03-09T09:54:14.474600-07:00,1003.8175048828125,10.835728,10835.728 +18932,2025-03-09T09:54:25.305635-07:00,1003.7977294921875,10.831035,10831.035 +18933,2025-03-09T09:54:36.139471-07:00,1003.8255615234375,10.833836,10833.836 +18934,2025-03-09T09:54:46.977814-07:00,1003.8175048828125,10.838343,10838.343 +18935,2025-03-09T09:54:57.809351-07:00,1003.7935791015625,10.831537,10831.537 +18936,2025-03-09T09:55:08.640360-07:00,1003.7884521484375,10.831009,10831.009 +18937,2025-03-09T09:55:19.467410-07:00,1003.7842407226562,10.82705,10827.05 +18938,2025-03-09T09:55:30.299615-07:00,1003.8076782226562,10.832205,10832.205 +18939,2025-03-09T09:55:41.135539-07:00,1003.8035278320312,10.835924,10835.924 +18940,2025-03-09T09:55:51.971364-07:00,1003.8004760742188,10.835825,10835.825 +18941,2025-03-09T09:56:02.803361-07:00,1003.799072265625,10.831997,10831.997 +18942,2025-03-09T09:56:13.636518-07:00,1003.789794921875,10.833157,10833.157 +18943,2025-03-09T09:56:24.473361-07:00,1003.8197631835938,10.836843,10836.843 +18944,2025-03-09T09:56:35.295363-07:00,1003.8037719726562,10.822002,10822.002 +18945,2025-03-09T09:56:46.120370-07:00,1003.80078125,10.825007,10825.007 +18946,2025-03-09T09:56:56.950709-07:00,1003.8175048828125,10.830339,10830.339 +18947,2025-03-09T09:57:07.783608-07:00,1003.8279418945312,10.832899,10832.899 +18948,2025-03-09T09:57:18.607419-07:00,1003.7918701171875,10.823811,10823.811 +18949,2025-03-09T09:57:29.434427-07:00,1003.7536010742188,10.827008,10827.008 +18950,2025-03-09T09:57:40.266692-07:00,1003.7860717773438,10.832265,10832.265 +18951,2025-03-09T09:57:51.098362-07:00,1003.8191528320312,10.83167,10831.67 +18952,2025-03-09T09:58:01.931057-07:00,1003.8108520507812,10.832695,10832.695 +18953,2025-03-09T09:58:12.761682-07:00,1003.8224487304688,10.830625,10830.625 +18954,2025-03-09T09:58:23.583739-07:00,1003.8273315429688,10.822057,10822.057 +18955,2025-03-09T09:58:34.424398-07:00,1003.7887573242188,10.840659,10840.659 +18956,2025-03-09T09:58:45.256898-07:00,1003.8165893554688,10.8325,10832.5 +18957,2025-03-09T09:58:56.097523-07:00,1003.8333740234375,10.840625,10840.625 +18958,2025-03-09T09:59:06.931413-07:00,1003.8226318359375,10.83389,10833.89 +18959,2025-03-09T09:59:17.758763-07:00,1003.8382568359375,10.82735,10827.35 +18960,2025-03-09T09:59:28.596361-07:00,1003.8143920898438,10.837598,10837.598 +18961,2025-03-09T09:59:39.431603-07:00,1003.825927734375,10.835242,10835.242 +18962,2025-03-09T09:59:50.265355-07:00,1003.8228149414062,10.833752,10833.752 +18963,2025-03-09T10:00:01.091364-07:00,1003.789794921875,10.826009,10826.009 +18964,2025-03-09T10:00:11.931674-07:00,1003.81591796875,10.84031,10840.31 +18965,2025-03-09T10:00:22.760699-07:00,1003.809326171875,10.829025,10829.025 +18966,2025-03-09T10:00:33.596776-07:00,1003.818359375,10.836077,10836.077 +18967,2025-03-09T10:00:44.439955-07:00,1003.8326416015625,10.843179,10843.179 +18968,2025-03-09T10:00:55.264663-07:00,1003.848388671875,10.824708,10824.708 +18969,2025-03-09T10:01:06.109505-07:00,1003.8178100585938,10.844842,10844.842 +18970,2025-03-09T10:01:16.946664-07:00,1003.8056030273438,10.837159,10837.159 +18971,2025-03-09T10:01:27.776362-07:00,1003.8279418945312,10.829698,10829.698 +18972,2025-03-09T10:01:38.612642-07:00,1003.8212280273438,10.83628,10836.28 +18973,2025-03-09T10:01:49.447770-07:00,1003.8292846679688,10.835128,10835.128 +18974,2025-03-09T10:02:00.282562-07:00,1003.8502197265625,10.834792,10834.792 +18975,2025-03-09T10:02:11.126709-07:00,1003.8251342773438,10.844147,10844.147 +18976,2025-03-09T10:02:21.954360-07:00,1003.8328247070312,10.827651,10827.651 +18977,2025-03-09T10:02:32.798616-07:00,1003.8143920898438,10.844256,10844.256 +18978,2025-03-09T10:02:43.623421-07:00,1003.834228515625,10.824805,10824.805 +18979,2025-03-09T10:02:54.465375-07:00,1003.7997436523438,10.841954,10841.954 +18980,2025-03-09T10:03:05.302632-07:00,1003.82763671875,10.837257,10837.257 +18981,2025-03-09T10:03:16.136359-07:00,1003.8088989257812,10.833727,10833.727 +18982,2025-03-09T10:03:26.977568-07:00,1003.80224609375,10.841209,10841.209 +18983,2025-03-09T10:03:37.806642-07:00,1003.8234252929688,10.829074,10829.074 +18984,2025-03-09T10:03:48.648339-07:00,1003.830078125,10.841697,10841.697 +18985,2025-03-09T10:03:59.478366-07:00,1003.795654296875,10.830027,10830.027 +18986,2025-03-09T10:04:10.311110-07:00,1003.8367309570312,10.832744,10832.744 +18987,2025-03-09T10:04:21.151509-07:00,1003.8046875,10.840399,10840.399 +18988,2025-03-09T10:04:31.995412-07:00,1003.8193969726562,10.843903,10843.903 +18989,2025-03-09T10:04:42.830096-07:00,1003.8457641601562,10.834684,10834.684 +18990,2025-03-09T10:04:53.661361-07:00,1003.8311767578125,10.831265,10831.265 +18991,2025-03-09T10:05:04.499374-07:00,1003.825927734375,10.838013,10838.013 +18992,2025-03-09T10:05:15.330638-07:00,1003.8102416992188,10.831264,10831.264 +18993,2025-03-09T10:05:26.172362-07:00,1003.8402099609375,10.841724,10841.724 +18994,2025-03-09T10:05:36.999852-07:00,1003.79150390625,10.82749,10827.49 +18995,2025-03-09T10:05:47.833494-07:00,1003.798095703125,10.833642,10833.642 +18996,2025-03-09T10:05:58.671404-07:00,1003.7650146484375,10.83791,10837.91 +18997,2025-03-09T10:06:09.507444-07:00,1003.7782592773438,10.83604,10836.04 +18998,2025-03-09T10:06:20.349418-07:00,1003.7705688476562,10.841974,10841.974 +18999,2025-03-09T10:06:31.193397-07:00,1003.8311767578125,10.843979,10843.979 +19000,2025-03-09T10:06:42.038063-07:00,1003.8102416992188,10.844666,10844.666 +19001,2025-03-09T10:06:52.874464-07:00,1003.7848510742188,10.836401,10836.401 +19002,2025-03-09T10:07:03.706489-07:00,1003.7837524414062,10.832025,10832.025 +19003,2025-03-09T10:07:14.533952-07:00,1003.7970581054688,10.827463,10827.463 +19004,2025-03-09T10:07:25.373406-07:00,1003.7824096679688,10.839454,10839.454 +19005,2025-03-09T10:07:36.217582-07:00,1003.7879638671875,10.844176,10844.176 +19006,2025-03-09T10:07:47.049867-07:00,1003.795654296875,10.832285,10832.285 +19007,2025-03-09T10:07:57.890618-07:00,1003.7681274414062,10.840751,10840.751 +19008,2025-03-09T10:08:08.723403-07:00,1003.8011474609375,10.832785,10832.785 +19009,2025-03-09T10:08:19.561303-07:00,1003.774658203125,10.8379,10837.9 +19010,2025-03-09T10:08:30.397406-07:00,1003.795654296875,10.836103,10836.103 +19011,2025-03-09T10:08:41.240384-07:00,1003.81689453125,10.842978,10842.978 +19012,2025-03-09T10:08:52.080838-07:00,1003.79150390625,10.840454,10840.454 +19013,2025-03-09T10:09:02.916693-07:00,1003.8203735351562,10.835855,10835.855 +19014,2025-03-09T10:09:13.743539-07:00,1003.7848510742188,10.826846,10826.846 +19015,2025-03-09T10:09:24.575396-07:00,1003.813720703125,10.831857,10831.857 +19016,2025-03-09T10:09:35.411649-07:00,1003.7862548828125,10.836253,10836.253 +19017,2025-03-09T10:09:46.244114-07:00,1003.7862548828125,10.832465,10832.465 +19018,2025-03-09T10:09:57.087401-07:00,1003.8019409179688,10.843287,10843.287 +19019,2025-03-09T10:10:07.913508-07:00,1003.7608642578125,10.826107,10826.107 +19020,2025-03-09T10:10:18.755797-07:00,1003.82177734375,10.842289,10842.289 +19021,2025-03-09T10:10:29.593531-07:00,1003.787353515625,10.837734,10837.734 +19022,2025-03-09T10:10:40.426692-07:00,1003.815185546875,10.833161,10833.161 +19023,2025-03-09T10:10:51.262753-07:00,1003.80859375,10.836061,10836.061 +19024,2025-03-09T10:11:02.089655-07:00,1003.7938842773438,10.826902,10826.902 +19025,2025-03-09T10:11:12.921455-07:00,1003.7862548828125,10.8318,10831.8 +19026,2025-03-09T10:11:23.766936-07:00,1003.7782592773438,10.845481,10845.481 +19027,2025-03-09T10:11:34.595991-07:00,1003.7927856445312,10.829055,10829.055 +19028,2025-03-09T10:11:45.432397-07:00,1003.8443603515625,10.836406,10836.406 +19029,2025-03-09T10:11:56.269463-07:00,1003.79150390625,10.837066,10837.066 +19030,2025-03-09T10:12:07.107767-07:00,1003.830078125,10.838304,10838.304 +19031,2025-03-09T10:12:17.951786-07:00,1003.7970581054688,10.844019,10844.019 +19032,2025-03-09T10:12:28.777403-07:00,1003.8088989257812,10.825617,10825.617 +19033,2025-03-09T10:12:39.610709-07:00,1003.8287353515625,10.833306,10833.306 +19034,2025-03-09T10:12:50.450549-07:00,1003.7879638671875,10.83984,10839.84 +19035,2025-03-09T10:13:01.295065-07:00,1003.7997436523438,10.844516,10844.516 +19036,2025-03-09T10:13:12.121726-07:00,1003.81298828125,10.826661,10826.661 +19037,2025-03-09T10:13:22.957403-07:00,1003.819580078125,10.835677,10835.677 +19038,2025-03-09T10:13:33.792760-07:00,1003.7854614257812,10.835357,10835.357 +19039,2025-03-09T10:13:44.632074-07:00,1003.8303833007812,10.839314,10839.314 +19040,2025-03-09T10:13:55.456867-07:00,1003.810546875,10.824793,10824.793 +19041,2025-03-09T10:14:06.302485-07:00,1003.7882690429688,10.845618,10845.618 +19042,2025-03-09T10:14:17.129619-07:00,1003.7896728515625,10.827134,10827.134 +19043,2025-03-09T10:14:27.959678-07:00,1003.8292846679688,10.830059,10830.059 +19044,2025-03-09T10:14:38.797375-07:00,1003.7948608398438,10.837697,10837.697 +19045,2025-03-09T10:14:49.632394-07:00,1003.8279418945312,10.835019,10835.019 +19046,2025-03-09T10:15:00.472417-07:00,1003.840087890625,10.840023,10840.023 +19047,2025-03-09T10:15:11.310672-07:00,1003.840087890625,10.838255,10838.255 +19048,2025-03-09T10:15:22.150693-07:00,1003.837646484375,10.840021,10840.021 +19049,2025-03-09T10:15:32.984728-07:00,1003.84423828125,10.834035,10834.035 +19050,2025-03-09T10:15:43.820651-07:00,1003.8208618164062,10.835923,10835.923 +19051,2025-03-09T10:15:54.657409-07:00,1003.8340454101562,10.836758,10836.758 +19052,2025-03-09T10:16:05.491711-07:00,1003.8218994140625,10.834302,10834.302 +19053,2025-03-09T10:16:16.322538-07:00,1003.8538818359375,10.830827,10830.827 +19054,2025-03-09T10:16:27.159031-07:00,1003.8275146484375,10.836493,10836.493 +19055,2025-03-09T10:16:37.985403-07:00,1003.848388671875,10.826372,10826.372 +19056,2025-03-09T10:16:48.828645-07:00,1003.8326416015625,10.843242,10843.242 +19057,2025-03-09T10:16:59.660963-07:00,1003.8538818359375,10.832318,10832.318 +19058,2025-03-09T10:17:10.503486-07:00,1003.8513793945312,10.842523,10842.523 +19059,2025-03-09T10:17:21.336532-07:00,1003.8434448242188,10.833046,10833.046 +19060,2025-03-09T10:17:32.171912-07:00,1003.856689453125,10.83538,10835.38 +19061,2025-03-09T10:17:43.015403-07:00,1003.856689453125,10.843491,10843.491 +19062,2025-03-09T10:17:53.849408-07:00,1003.8381958007812,10.834005,10834.005 +19063,2025-03-09T10:18:04.684690-07:00,1003.822509765625,10.835282,10835.282 +19064,2025-03-09T10:18:15.525479-07:00,1003.8556518554688,10.840789,10840.789 +19065,2025-03-09T10:18:26.360195-07:00,1003.81591796875,10.834716,10834.716 +19066,2025-03-09T10:18:37.191569-07:00,1003.822509765625,10.831374,10831.374 +19067,2025-03-09T10:18:48.028485-07:00,1003.8145141601562,10.836916,10836.916 +19068,2025-03-09T10:18:58.867403-07:00,1003.8134155273438,10.838918,10838.918 +19069,2025-03-09T10:19:09.703997-07:00,1003.8291625976562,10.836594,10836.594 +19070,2025-03-09T10:19:20.540406-07:00,1003.8409423828125,10.836409,10836.409 +19071,2025-03-09T10:19:31.373434-07:00,1003.8357543945312,10.833028,10833.028 +19072,2025-03-09T10:19:42.217677-07:00,1003.8145141601562,10.844243,10844.243 +19073,2025-03-09T10:19:53.047752-07:00,1003.8489990234375,10.830075,10830.075 +19074,2025-03-09T10:20:03.884390-07:00,1003.8409423828125,10.836638,10836.638 +19075,2025-03-09T10:20:14.727709-07:00,1003.8343505859375,10.843319,10843.319 +19076,2025-03-09T10:20:25.570401-07:00,1003.807861328125,10.842692,10842.692 +19077,2025-03-09T10:20:36.398642-07:00,1003.807861328125,10.828241,10828.241 +19078,2025-03-09T10:20:47.233405-07:00,1003.8277587890625,10.834763,10834.763 +19079,2025-03-09T10:20:58.072405-07:00,1003.8409423828125,10.839,10839.0 +19080,2025-03-09T10:21:08.909547-07:00,1003.8277587890625,10.837142,10837.142 +19081,2025-03-09T10:21:19.745886-07:00,1003.8489990234375,10.836339,10836.339 +19082,2025-03-09T10:21:30.587384-07:00,1003.8267211914062,10.841498,10841.498 +19083,2025-03-09T10:21:41.431382-07:00,1003.8343505859375,10.843998,10843.998 +19084,2025-03-09T10:21:52.264105-07:00,1003.8002319335938,10.832723,10832.723 +19085,2025-03-09T10:22:03.111626-07:00,1003.8253173828125,10.847521,10847.521 +19086,2025-03-09T10:22:11.998886-07:00,1003.8475952148438,8.88726,8887.26 +19087,2025-03-09T10:22:13.952091-07:00,1003.8423461914062,1.953205,1953.205 +19088,2025-03-09T10:22:24.788546-07:00,1003.8475952148438,10.836455,10836.455 +19089,2025-03-09T10:22:35.630291-07:00,1003.8134155273438,10.841745,10841.745 +19090,2025-03-09T10:22:46.471656-07:00,1003.8267211914062,10.841365,10841.365 +19091,2025-03-09T10:22:57.311406-07:00,1003.8291625976562,10.83975,10839.75 +19092,2025-03-09T10:23:08.150381-07:00,1003.8409423828125,10.838975,10838.975 +19093,2025-03-09T10:23:18.981393-07:00,1003.8291625976562,10.831012,10831.012 +19094,2025-03-09T10:23:29.824401-07:00,1003.822509765625,10.843008,10843.008 +19095,2025-03-09T10:23:40.648887-07:00,1003.807861328125,10.824486,10824.486 +19096,2025-03-09T10:23:51.493954-07:00,1003.8134155273438,10.845067,10845.067 +19097,2025-03-09T10:24:02.336768-07:00,1003.8475952148438,10.842814,10842.814 +19098,2025-03-09T10:24:13.170935-07:00,1003.798828125,10.834167,10834.167 +19099,2025-03-09T10:24:24.011402-07:00,1003.8145141601562,10.840467,10840.467 +19100,2025-03-09T10:24:34.849389-07:00,1003.83984375,10.837987,10837.987 +19101,2025-03-09T10:24:45.681968-07:00,1003.8134155273438,10.832579,10832.579 +19102,2025-03-09T10:24:56.520403-07:00,1003.833251953125,10.838435,10838.435 +19103,2025-03-09T10:25:07.360403-07:00,1003.8175659179688,10.84,10840.0 +19104,2025-03-09T10:25:18.198414-07:00,1003.8175659179688,10.838011,10838.011 +19105,2025-03-09T10:25:29.033459-07:00,1003.8096313476562,10.835045,10835.045 +19106,2025-03-09T10:25:39.866074-07:00,1003.8162231445312,10.832615,10832.615 +19107,2025-03-09T10:25:50.704816-07:00,1003.815185546875,10.838742,10838.742 +19108,2025-03-09T10:26:01.531468-07:00,1003.7675170898438,10.826652,10826.652 +19109,2025-03-09T10:26:12.369862-07:00,1003.825927734375,10.838394,10838.394 +19110,2025-03-09T10:26:23.205397-07:00,1003.811279296875,10.835535,10835.535 +19111,2025-03-09T10:26:34.033600-07:00,1003.8077392578125,10.828203,10828.203 +19112,2025-03-09T10:26:44.867455-07:00,1003.7999877929688,10.833855,10833.855 +19113,2025-03-09T10:26:55.706631-07:00,1003.7920532226562,10.839176,10839.176 +19114,2025-03-09T10:27:06.539904-07:00,1003.7763061523438,10.833273,10833.273 +19115,2025-03-09T10:27:17.376394-07:00,1003.7951049804688,10.83649,10836.49 +19116,2025-03-09T10:27:28.218614-07:00,1003.8093872070312,10.84222,10842.22 +19117,2025-03-09T10:27:39.051742-07:00,1003.8358764648438,10.833128,10833.128 +19118,2025-03-09T10:27:49.892720-07:00,1003.7991943359375,10.840978,10840.978 +19119,2025-03-09T10:28:00.726409-07:00,1003.8323364257812,10.833689,10833.689 +19120,2025-03-09T10:28:11.557376-07:00,1003.7977905273438,10.830967,10830.967 +19121,2025-03-09T10:28:22.388450-07:00,1003.7977905273438,10.831074,10831.074 +19122,2025-03-09T10:28:33.226709-07:00,1003.7966918945312,10.838259,10838.259 +19123,2025-03-09T10:28:44.060406-07:00,1003.79541015625,10.833697,10833.697 +19124,2025-03-09T10:28:54.900478-07:00,1003.8141479492188,10.840072,10840.072 +19125,2025-03-09T10:29:05.734114-07:00,1003.8406372070312,10.833636,10833.636 +19126,2025-03-09T10:29:16.577567-07:00,1003.8325805664062,10.843453,10843.453 +19127,2025-03-09T10:29:27.402407-07:00,1003.7876586914062,10.82484,10824.84 +19128,2025-03-09T10:29:38.232454-07:00,1003.799560546875,10.830047,10830.047 +19129,2025-03-09T10:29:49.074371-07:00,1003.838134765625,10.841917,10841.917 +19130,2025-03-09T10:29:59.919413-07:00,1003.825927734375,10.845042,10845.042 +19131,2025-03-09T10:30:10.749271-07:00,1003.8524169921875,10.829858,10829.858 +19132,2025-03-09T10:30:21.578460-07:00,1003.8248291015625,10.829189,10829.189 +19133,2025-03-09T10:30:32.413744-07:00,1003.838134765625,10.835284,10835.284 +19134,2025-03-09T10:30:43.246395-07:00,1003.8036499023438,10.832651,10832.651 +19135,2025-03-09T10:30:54.082280-07:00,1003.8224487304688,10.835885,10835.885 +19136,2025-03-09T10:31:04.915662-07:00,1003.8025512695312,10.833382,10833.382 +19137,2025-03-09T10:31:15.747396-07:00,1003.8036499023438,10.831734,10831.734 +19138,2025-03-09T10:31:26.584724-07:00,1003.8367309570312,10.837328,10837.328 +19139,2025-03-09T10:31:37.422398-07:00,1003.81689453125,10.837674,10837.674 +19140,2025-03-09T10:31:48.259410-07:00,1003.8025512695312,10.837012,10837.012 +19141,2025-03-09T10:31:59.091030-07:00,1003.8290405273438,10.83162,10831.62 +19142,2025-03-09T10:32:09.935531-07:00,1003.8590698242188,10.844501,10844.501 +19143,2025-03-09T10:32:20.777445-07:00,1003.8143920898438,10.841914,10841.914 +19144,2025-03-09T10:32:31.612932-07:00,1003.8143920898438,10.835487,10835.487 +19145,2025-03-09T10:32:42.449404-07:00,1003.834228515625,10.836472,10836.472 +19146,2025-03-09T10:32:53.289454-07:00,1003.831787109375,10.84005,10840.05 +19147,2025-03-09T10:33:04.122757-07:00,1003.844970703125,10.833303,10833.303 +19148,2025-03-09T10:33:14.964551-07:00,1003.8439331054688,10.841794,10841.794 +19149,2025-03-09T10:33:25.801549-07:00,1003.8494262695312,10.836998,10836.998 +19150,2025-03-09T10:33:36.644548-07:00,1003.8439331054688,10.842999,10842.999 +19151,2025-03-09T10:33:47.482726-07:00,1003.8505249023438,10.838178,10838.178 +19152,2025-03-09T10:33:58.315552-07:00,1003.844970703125,10.832826,10832.826 +19153,2025-03-09T10:34:09.151787-07:00,1003.8097534179688,10.836235,10836.235 +19154,2025-03-09T10:34:19.989403-07:00,1003.8529663085938,10.837616,10837.616 +19155,2025-03-09T10:34:30.827402-07:00,1003.8362426757812,10.837999,10837.999 +19156,2025-03-09T10:34:41.657733-07:00,1003.8139038085938,10.830331,10830.331 +19157,2025-03-09T10:34:52.500810-07:00,1003.8480224609375,10.843077,10843.077 +19158,2025-03-09T10:35:03.333612-07:00,1003.8306884765625,10.832802,10832.802 +19159,2025-03-09T10:35:14.165735-07:00,1003.8348388671875,10.832123,10832.123 +19160,2025-03-09T10:35:25.005396-07:00,1003.8612670898438,10.839661,10839.661 +19161,2025-03-09T10:35:35.845407-07:00,1003.81640625,10.840011,10840.011 +19162,2025-03-09T10:35:46.680728-07:00,1003.807373046875,10.835321,10835.321 +19163,2025-03-09T10:35:57.514013-07:00,1003.8428344726562,10.833285,10833.285 +19164,2025-03-09T10:36:08.354458-07:00,1003.8480224609375,10.840445,10840.445 +19165,2025-03-09T10:36:19.184525-07:00,1003.8362426757812,10.830067,10830.067 +19166,2025-03-09T10:36:30.021396-07:00,1003.8428344726562,10.836871,10836.871 +19167,2025-03-09T10:36:40.862626-07:00,1003.8428344726562,10.84123,10841.23 +19168,2025-03-09T10:36:51.697450-07:00,1003.8505249023438,10.834824,10834.824 +19169,2025-03-09T10:37:02.536674-07:00,1003.7965698242188,10.839224,10839.224 +19170,2025-03-09T10:37:13.377652-07:00,1003.8097534179688,10.840978,10840.978 +19171,2025-03-09T10:37:24.214377-07:00,1003.818603515625,10.836725,10836.725 +19172,2025-03-09T10:37:35.045484-07:00,1003.7832641601562,10.831107,10831.107 +19173,2025-03-09T10:37:45.885630-07:00,1003.8529663085938,10.840146,10840.146 +19174,2025-03-09T10:37:56.719627-07:00,1003.8367309570312,10.833997,10833.997 +19175,2025-03-09T10:38:07.547416-07:00,1003.8540649414062,10.827789,10827.789 +19176,2025-03-09T10:38:18.377668-07:00,1003.8687744140625,10.830252,10830.252 +19177,2025-03-09T10:38:29.215898-07:00,1003.8697509765625,10.83823,10838.23 +19178,2025-03-09T10:38:40.058392-07:00,1003.84326171875,10.842494,10842.494 +19179,2025-03-09T10:38:50.896469-07:00,1003.8325805664062,10.838077,10838.077 +19180,2025-03-09T10:39:01.738477-07:00,1003.8604736328125,10.842008,10842.008 +19181,2025-03-09T10:39:12.576465-07:00,1003.887939453125,10.837988,10837.988 +19182,2025-03-09T10:39:23.419003-07:00,1003.8350219726562,10.842538,10842.538 +19183,2025-03-09T10:39:34.251380-07:00,1003.8837280273438,10.832377,10832.377 +19184,2025-03-09T10:39:45.092401-07:00,1003.8719482421875,10.841021,10841.021 +19185,2025-03-09T10:39:55.936399-07:00,1003.8521728515625,10.843998,10843.998 +19186,2025-03-09T10:40:06.775513-07:00,1003.8612670898438,10.839114,10839.114 +19187,2025-03-09T10:40:17.617651-07:00,1003.8358764648438,10.842138,10842.138 +19188,2025-03-09T10:40:28.459504-07:00,1003.8358764648438,10.841853,10841.853 +19189,2025-03-09T10:40:39.303399-07:00,1003.8414306640625,10.843895,10843.895 +19190,2025-03-09T10:40:50.140174-07:00,1003.828125,10.836775,10836.775 +19191,2025-03-09T10:41:00.978889-07:00,1003.8438110351562,10.838715,10838.715 +19192,2025-03-09T10:41:11.826601-07:00,1003.8240356445312,10.847712,10847.712 +19193,2025-03-09T10:41:22.659734-07:00,1003.8570556640625,10.833133,10833.133 +19194,2025-03-09T10:41:33.502663-07:00,1003.8093872070312,10.842929,10842.929 +19195,2025-03-09T10:41:44.345464-07:00,1003.842529296875,10.842801,10842.801 +19196,2025-03-09T10:41:55.176744-07:00,1003.8556518554688,10.83128,10831.28 +19197,2025-03-09T10:42:06.003402-07:00,1003.86474609375,10.826658,10826.658 +19198,2025-03-09T10:42:16.839401-07:00,1003.8504638671875,10.835999,10835.999 +19199,2025-03-09T10:42:27.682733-07:00,1003.8870239257812,10.843332,10843.332 +19200,2025-03-09T10:42:38.521399-07:00,1003.8986206054688,10.838666,10838.666 +19201,2025-03-09T10:42:49.363923-07:00,1003.881591796875,10.842524,10842.524 +19202,2025-03-09T10:43:00.201887-07:00,1003.8912353515625,10.837964,10837.964 +19203,2025-03-09T10:43:11.039629-07:00,1003.905029296875,10.837742,10837.742 +19204,2025-03-09T10:43:21.881723-07:00,1003.8697509765625,10.842094,10842.094 +19205,2025-03-09T10:43:32.728407-07:00,1003.8662719726562,10.846684,10846.684 +19206,2025-03-09T10:43:43.563263-07:00,1003.8439331054688,10.834856,10834.856 +19207,2025-03-09T10:43:54.393427-07:00,1003.8734130859375,10.830164,10830.164 +19208,2025-03-09T10:44:05.233076-07:00,1003.8643798828125,10.839649,10839.649 +19209,2025-03-09T10:44:16.070734-07:00,1003.8908081054688,10.837658,10837.658 +19210,2025-03-09T10:44:26.902406-07:00,1003.8948974609375,10.831672,10831.672 +19211,2025-03-09T10:44:37.743401-07:00,1003.8485717773438,10.840995,10840.995 +19212,2025-03-09T10:44:48.583113-07:00,1003.8670043945312,10.839712,10839.712 +19213,2025-03-09T10:44:59.416759-07:00,1003.8485717773438,10.833646,10833.646 +19214,2025-03-09T10:44:59.658012-07:00,1003.8340454101562,0.241253,241.253 +19215,2025-03-09T10:45:10.247885-07:00,1003.8869018554688,10.589873,10589.873 +19216,2025-03-09T10:45:21.088540-07:00,1003.8869018554688,10.840655,10840.655 +19217,2025-03-09T10:45:31.925645-07:00,1003.868408203125,10.837105,10837.105 +19218,2025-03-09T10:45:42.771408-07:00,1003.9081420898438,10.845763,10845.763 +19219,2025-03-09T10:45:53.606186-07:00,1003.8604736328125,10.834778,10834.778 +19220,2025-03-09T10:46:04.441461-07:00,1003.8775634765625,10.835275,10835.275 +19221,2025-03-09T10:46:15.289571-07:00,1003.8973388671875,10.84811,10848.11 +19222,2025-03-09T10:46:26.125097-07:00,1003.85107421875,10.835526,10835.526 +19223,2025-03-09T10:46:36.957439-07:00,1003.8521728515625,10.832342,10832.342 +19224,2025-03-09T10:46:47.796457-07:00,1003.8890380859375,10.839018,10839.018 +19225,2025-03-09T10:46:58.634960-07:00,1003.8825073242188,10.838503,10838.503 +19226,2025-03-09T10:47:09.478994-07:00,1003.8612670898438,10.844034,10844.034 +19227,2025-03-09T10:47:20.311413-07:00,1003.8626708984375,10.832419,10832.419 +19228,2025-03-09T10:47:31.154805-07:00,1003.86376953125,10.843392,10843.392 +19229,2025-03-09T10:47:41.996679-07:00,1003.844970703125,10.841874,10841.874 +19230,2025-03-09T10:47:52.835622-07:00,1003.8648681640625,10.838943,10838.943 +19231,2025-03-09T10:48:03.674528-07:00,1003.8739013671875,10.838906,10838.906 +19232,2025-03-09T10:48:14.513704-07:00,1003.8829956054688,10.839176,10839.176 +19233,2025-03-09T10:48:25.352452-07:00,1003.8697509765625,10.838748,10838.748 +19234,2025-03-09T10:48:36.186401-07:00,1003.8630981445312,10.833949,10833.949 +19235,2025-03-09T10:48:47.020365-07:00,1003.864501953125,10.833964,10833.964 +19236,2025-03-09T10:48:57.864539-07:00,1003.8735961914062,10.844174,10844.174 +19237,2025-03-09T10:49:08.695401-07:00,1003.9078369140625,10.830862,10830.862 +19238,2025-03-09T10:49:19.538688-07:00,1003.887939453125,10.843287,10843.287 +19239,2025-03-09T10:49:30.377397-07:00,1003.9011840820312,10.838709,10838.709 +19240,2025-03-09T10:49:41.213645-07:00,1003.915771484375,10.836248,10836.248 +19241,2025-03-09T10:49:52.052399-07:00,1003.9025268554688,10.838754,10838.754 +19242,2025-03-09T10:50:02.888404-07:00,1003.9210205078125,10.836005,10836.005 +19243,2025-03-09T10:50:13.722403-07:00,1003.92236328125,10.833999,10833.999 +19244,2025-03-09T10:50:24.563566-07:00,1003.9421997070312,10.841163,10841.163 +19245,2025-03-09T10:50:35.404556-07:00,1003.9210205078125,10.84099,10840.99 +19246,2025-03-09T10:50:46.248642-07:00,1003.9011840820312,10.844086,10844.086 +19247,2025-03-09T10:50:57.088407-07:00,1003.9210205078125,10.839765,10839.765 +19248,2025-03-09T10:51:07.924239-07:00,1003.9011840820312,10.835832,10835.832 +19249,2025-03-09T10:51:18.762409-07:00,1003.919921875,10.83817,10838.17 +19250,2025-03-09T10:51:29.603400-07:00,1003.8987426757812,10.840991,10840.991 +19251,2025-03-09T10:51:40.437594-07:00,1003.90673828125,10.834194,10834.194 +19252,2025-03-09T10:51:51.279819-07:00,1003.9185180664062,10.842225,10842.225 +19253,2025-03-09T10:52:02.111611-07:00,1003.8976440429688,10.831792,10831.792 +19254,2025-03-09T10:52:12.950795-07:00,1003.9425048828125,10.839184,10839.184 +19255,2025-03-09T10:52:23.786616-07:00,1003.937255859375,10.835821,10835.821 +19256,2025-03-09T10:52:34.628396-07:00,1003.91748046875,10.84178,10841.78 +19257,2025-03-09T10:52:45.467705-07:00,1003.9317016601562,10.839309,10839.309 +19258,2025-03-09T10:52:56.312449-07:00,1003.9251708984375,10.844744,10844.744 +19259,2025-03-09T10:53:07.146548-07:00,1003.90673828125,10.834099,10834.099 +19260,2025-03-09T10:53:17.978715-07:00,1003.9397583007812,10.832167,10832.167 +19261,2025-03-09T10:53:28.815400-07:00,1003.9515380859375,10.836685,10836.685 +19262,2025-03-09T10:53:39.657395-07:00,1003.9515380859375,10.841995,10841.995 +19263,2025-03-09T10:53:50.490944-07:00,1003.93310546875,10.833549,10833.549 +19264,2025-03-09T10:54:01.329397-07:00,1003.9606323242188,10.838453,10838.453 +19265,2025-03-09T10:54:12.165656-07:00,1003.9143676757812,10.836259,10836.259 +19266,2025-03-09T10:54:23.002906-07:00,1003.9686889648438,10.83725,10837.25 +19267,2025-03-09T10:54:33.851761-07:00,1003.9662475585938,10.848855,10848.855 +19268,2025-03-09T10:54:44.690635-07:00,1003.9606323242188,10.838874,10838.874 +19269,2025-03-09T10:54:55.537432-07:00,1003.9000854492188,10.846797,10846.797 +19270,2025-03-09T10:55:06.372705-07:00,1003.975341796875,10.835273,10835.273 +19271,2025-03-09T10:55:17.222746-07:00,1004.0003051757812,10.850041,10850.041 +19272,2025-03-09T10:55:28.055603-07:00,1003.949951171875,10.832857,10832.857 +19273,2025-03-09T10:55:38.898658-07:00,1003.947509765625,10.843055,10843.055 +19274,2025-03-09T10:55:49.744784-07:00,1003.95654296875,10.846126,10846.126 +19275,2025-03-09T10:56:00.581784-07:00,1003.990966796875,10.837,10837.0 +19276,2025-03-09T10:56:11.428406-07:00,1003.9710693359375,10.846622,10846.622 +19277,2025-03-09T10:56:22.281648-07:00,1003.939208984375,10.853242,10853.242 +19278,2025-03-09T10:56:33.122407-07:00,1003.9259643554688,10.840759,10840.759 +19279,2025-03-09T10:56:43.964410-07:00,1003.9603881835938,10.842003,10842.003 +19280,2025-03-09T10:56:54.800428-07:00,1003.9429931640625,10.836018,10836.018 +19281,2025-03-09T10:57:05.644404-07:00,1003.97607421875,10.843976,10843.976 +19282,2025-03-09T10:57:16.485397-07:00,1003.9241943359375,10.840993,10840.993 +19283,2025-03-09T10:57:27.331225-07:00,1003.9556274414062,10.845828,10845.828 +19284,2025-03-09T10:57:38.166645-07:00,1003.9368896484375,10.83542,10835.42 +19285,2025-03-09T10:57:49.012453-07:00,1003.9435424804688,10.845808,10845.808 +19286,2025-03-09T10:57:59.842502-07:00,1003.959228515625,10.830049,10830.049 +19287,2025-03-09T10:58:10.691372-07:00,1003.9352416992188,10.84887,10848.87 +19288,2025-03-09T10:58:21.530378-07:00,1003.9617309570312,10.839006,10839.006 +19289,2025-03-09T10:58:32.378539-07:00,1003.9299926757812,10.848161,10848.161 +19290,2025-03-09T10:58:43.216495-07:00,1003.9456787109375,10.837956,10837.956 +19291,2025-03-09T10:58:54.069486-07:00,1003.9467163085938,10.852991,10852.991 +19292,2025-03-09T10:59:04.905960-07:00,1003.9293823242188,10.836474,10836.474 +19293,2025-03-09T10:59:15.744632-07:00,1003.945068359375,10.838672,10838.672 +19294,2025-03-09T10:59:26.589408-07:00,1003.959716796875,10.844776,10844.776 +19295,2025-03-09T10:59:37.431439-07:00,1003.96435546875,10.842031,10842.031 +19296,2025-03-09T10:59:48.273750-07:00,1003.9525146484375,10.842311,10842.311 +19297,2025-03-09T10:59:59.111401-07:00,1003.936279296875,10.837651,10837.651 +19298,2025-03-09T11:00:09.950664-07:00,1003.9375610351562,10.839263,10839.263 +19299,2025-03-09T11:00:20.796426-07:00,1003.9411010742188,10.845762,10845.762 +19300,2025-03-09T11:00:31.640177-07:00,1003.93701171875,10.843751,10843.751 +19301,2025-03-09T11:00:42.482380-07:00,1003.9342041015625,10.842203,10842.203 +19302,2025-03-09T11:00:53.334929-07:00,1003.890380859375,10.852549,10852.549 +19303,2025-03-09T11:01:04.178384-07:00,1003.9586791992188,10.843455,10843.455 +19304,2025-03-09T11:01:15.025616-07:00,1003.9625244140625,10.847232,10847.232 +19305,2025-03-09T11:01:25.865711-07:00,1003.9065551757812,10.840095,10840.095 +19306,2025-03-09T11:01:36.710617-07:00,1003.9368896484375,10.844906,10844.906 +19307,2025-03-09T11:01:47.554551-07:00,1003.9392700195312,10.843934,10843.934 +19308,2025-03-09T11:01:58.386805-07:00,1003.9682006835938,10.832254,10832.254 +19309,2025-03-09T11:02:09.227367-07:00,1003.9177856445312,10.840562,10840.562 +19310,2025-03-09T11:02:20.059400-07:00,1003.904541015625,10.832033,10832.033 +19311,2025-03-09T11:02:30.900402-07:00,1003.931396484375,10.841002,10841.002 +19312,2025-03-09T11:02:41.743668-07:00,1003.9342041015625,10.843266,10843.266 +19313,2025-03-09T11:02:52.595484-07:00,1003.8892822265625,10.851816,10851.816 +19314,2025-03-09T11:03:03.431052-07:00,1003.8785400390625,10.835568,10835.568 +19315,2025-03-09T11:03:14.287406-07:00,1003.9109497070312,10.856354,10856.354 +19316,2025-03-09T11:03:25.136417-07:00,1003.9081420898438,10.849011,10849.011 +19317,2025-03-09T11:03:35.975738-07:00,1003.9224853515625,10.839321,10839.321 +19318,2025-03-09T11:03:46.821832-07:00,1003.8744506835938,10.846094,10846.094 +19319,2025-03-09T11:03:57.670168-07:00,1003.8887329101562,10.848336,10848.336 +19320,2025-03-09T11:04:08.512462-07:00,1003.86474609375,10.842294,10842.294 +19321,2025-03-09T11:04:19.355675-07:00,1003.875244140625,10.843213,10843.213 +19322,2025-03-09T11:04:30.194830-07:00,1003.87109375,10.839155,10839.155 +19323,2025-03-09T11:04:41.042732-07:00,1003.8668823242188,10.847902,10847.902 +19324,2025-03-09T11:04:51.884655-07:00,1003.871826171875,10.841923,10841.923 +19325,2025-03-09T11:05:02.740431-07:00,1003.9070434570312,10.855776,10855.776 +19326,2025-03-09T11:05:13.574790-07:00,1003.8753051757812,10.834359,10834.359 +19327,2025-03-09T11:05:24.421538-07:00,1003.8869018554688,10.846748,10846.748 +19328,2025-03-09T11:05:35.268993-07:00,1003.8231201171875,10.847455,10847.455 +19329,2025-03-09T11:05:46.149080-07:00,1003.8663330078125,10.880087,10880.087 +19330,2025-03-09T11:05:56.996168-07:00,1003.9307861328125,10.847088,10847.088 +19331,2025-03-09T11:06:07.847395-07:00,1003.8990478515625,10.851227,10851.227 +19332,2025-03-09T11:06:18.693413-07:00,1003.8786010742188,10.846018,10846.018 +19333,2025-03-09T11:06:29.544428-07:00,1003.834716796875,10.851015,10851.015 +19334,2025-03-09T11:06:40.390566-07:00,1003.899169921875,10.846138,10846.138 +19335,2025-03-09T11:06:51.241423-07:00,1003.842041015625,10.850857,10850.857 +19336,2025-03-09T11:07:02.095675-07:00,1003.819091796875,10.854252,10854.252 +19337,2025-03-09T11:07:12.931701-07:00,1003.849365234375,10.836026,10836.026 +19338,2025-03-09T11:07:23.776615-07:00,1003.8340454101562,10.844914,10844.914 +19339,2025-03-09T11:07:34.627434-07:00,1003.8577880859375,10.850819,10850.819 +19340,2025-03-09T11:07:45.474651-07:00,1003.88916015625,10.847217,10847.217 +19341,2025-03-09T11:07:56.317495-07:00,1003.8529663085938,10.842844,10842.844 +19342,2025-03-09T11:08:07.158814-07:00,1003.8261108398438,10.841319,10841.319 +19343,2025-03-09T11:08:18.014402-07:00,1003.7874755859375,10.855588,10855.588 +19344,2025-03-09T11:08:28.855534-07:00,1003.80419921875,10.841132,10841.132 +19345,2025-03-09T11:08:39.689435-07:00,1003.802490234375,10.833901,10833.901 +19346,2025-03-09T11:08:50.541413-07:00,1003.8128662109375,10.851978,10851.978 +19347,2025-03-09T11:09:01.389099-07:00,1003.8484497070312,10.847686,10847.686 +19348,2025-03-09T11:09:12.239413-07:00,1003.8386840820312,10.850314,10850.314 +19349,2025-03-09T11:09:23.087957-07:00,1003.8665771484375,10.848544,10848.544 +19350,2025-03-09T11:09:33.930511-07:00,1003.8777465820312,10.842554,10842.554 +19351,2025-03-09T11:09:44.765431-07:00,1003.7745361328125,10.83492,10834.92 +19352,2025-03-09T11:09:55.616427-07:00,1003.7703247070312,10.850996,10850.996 +19353,2025-03-09T11:10:06.467990-07:00,1003.833740234375,10.851563,10851.563 +19354,2025-03-09T11:10:17.316524-07:00,1003.810791015625,10.848534,10848.534 +19355,2025-03-09T11:10:28.156962-07:00,1003.8145141601562,10.840438,10840.438 +19356,2025-03-09T11:10:39.010736-07:00,1003.7640380859375,10.853774,10853.774 +19357,2025-03-09T11:10:49.856441-07:00,1003.7529907226562,10.845705,10845.705 +19358,2025-03-09T11:11:00.700435-07:00,1003.78076171875,10.843994,10843.994 +19359,2025-03-09T11:11:11.542515-07:00,1003.7103271484375,10.84208,10842.08 +19360,2025-03-09T11:11:22.390573-07:00,1003.7368774414062,10.848058,10848.058 +19361,2025-03-09T11:11:33.234720-07:00,1003.78564453125,10.844147,10844.147 +19362,2025-03-09T11:11:44.089979-07:00,1003.7368774414062,10.855259,10855.259 +19363,2025-03-09T11:11:54.935479-07:00,1003.7354736328125,10.8455,10845.5 +19364,2025-03-09T11:12:05.783323-07:00,1003.7246704101562,10.847844,10847.844 +19365,2025-03-09T11:12:16.629514-07:00,1003.7734375,10.846191,10846.191 +19366,2025-03-09T11:12:27.479428-07:00,1003.7445068359375,10.849914,10849.914 +19367,2025-03-09T11:12:38.335555-07:00,1003.7511596679688,10.856127,10856.127 +19368,2025-03-09T11:12:49.181457-07:00,1003.7037353515625,10.845902,10845.902 +19369,2025-03-09T11:13:00.025466-07:00,1003.7723388671875,10.844009,10844.009 +19370,2025-03-09T11:13:10.885648-07:00,1003.7723388671875,10.860182,10860.182 +19371,2025-03-09T11:13:21.737912-07:00,1003.7459106445312,10.852264,10852.264 +19372,2025-03-09T11:13:32.589429-07:00,1003.7469482421875,10.851517,10851.517 +19373,2025-03-09T11:13:43.444069-07:00,1003.7615356445312,10.85464,10854.64 +19374,2025-03-09T11:13:54.296107-07:00,1003.7957763671875,10.852038,10852.038 +19375,2025-03-09T11:14:05.141746-07:00,1003.783935546875,10.845639,10845.639 +19376,2025-03-09T11:14:15.996353-07:00,1003.748291015625,10.854607,10854.607 +19377,2025-03-09T11:14:26.844551-07:00,1003.7706298828125,10.848198,10848.198 +19378,2025-03-09T11:14:37.692432-07:00,1003.771728515625,10.847881,10847.881 +19379,2025-03-09T11:14:48.545460-07:00,1003.7731323242188,10.853028,10853.028 +19380,2025-03-09T11:14:59.394435-07:00,1003.833740234375,10.848975,10848.975 +19381,2025-03-09T11:15:10.242629-07:00,1003.8071899414062,10.848194,10848.194 +19382,2025-03-09T11:15:21.102765-07:00,1003.7898559570312,10.860136,10860.136 +19383,2025-03-09T11:15:31.954432-07:00,1003.7988891601562,10.851667,10851.667 +19384,2025-03-09T11:15:42.806409-07:00,1003.7803344726562,10.851977,10851.977 +19385,2025-03-09T11:15:53.658693-07:00,1003.8236083984375,10.852284,10852.284 +19386,2025-03-09T11:16:04.525434-07:00,1003.7890625,10.866741,10866.741 +19387,2025-03-09T11:16:15.378779-07:00,1003.7904663085938,10.853345,10853.345 +19388,2025-03-09T11:16:26.238489-07:00,1003.8071899414062,10.85971,10859.71 +19389,2025-03-09T11:16:37.098238-07:00,1003.8270263671875,10.859749,10859.749 +19390,2025-03-09T11:16:47.946218-07:00,1003.8138427734375,10.84798,10847.98 +19391,2025-03-09T11:16:58.799432-07:00,1003.8326416015625,10.853214,10853.214 +19392,2025-03-09T11:17:09.653430-07:00,1003.8482666015625,10.853998,10853.998 +19393,2025-03-09T11:17:20.508431-07:00,1003.8138427734375,10.855001,10855.001 +19394,2025-03-09T11:17:31.364433-07:00,1003.8071899414062,10.856002,10856.002 +19395,2025-03-09T11:17:42.220414-07:00,1003.8071899414062,10.855981,10855.981 +19396,2025-03-09T11:17:53.071433-07:00,1003.8270263671875,10.851019,10851.019 +19397,2025-03-09T11:18:03.934452-07:00,1003.833740234375,10.863019,10863.019 +19398,2025-03-09T11:18:04.234857-07:00,1003.8060913085938,0.300405,300.405 +19399,2025-03-09T11:18:14.780437-07:00,1003.8138427734375,10.54558,10545.58 +19400,2025-03-09T11:18:25.634479-07:00,1003.8193969726562,10.854042,10854.042 +19401,2025-03-09T11:18:36.488436-07:00,1003.84033203125,10.853957,10853.957 +19402,2025-03-09T11:18:47.344428-07:00,1003.8758544921875,10.855992,10855.992 +19403,2025-03-09T11:18:58.197415-07:00,1003.8890380859375,10.852987,10852.987 +19404,2025-03-09T11:19:09.051436-07:00,1003.85595703125,10.854021,10854.021 +19405,2025-03-09T11:19:19.907569-07:00,1003.8584594726562,10.856133,10856.133 +19406,2025-03-09T11:19:30.750672-07:00,1003.8440551757812,10.843103,10843.103 +19407,2025-03-09T11:19:41.599710-07:00,1003.8465576171875,10.849038,10849.038 +19408,2025-03-09T11:19:52.449704-07:00,1003.8621826171875,10.849994,10849.994 +19409,2025-03-09T11:20:03.303438-07:00,1003.8145141601562,10.853734,10853.734 +19410,2025-03-09T11:20:14.154438-07:00,1003.8267211914062,10.851,10851.0 +19411,2025-03-09T11:20:25.001039-07:00,1003.8236083984375,10.846601,10846.601 +19412,2025-03-09T11:20:35.855777-07:00,1003.78271484375,10.854738,10854.738 +19413,2025-03-09T11:20:46.699544-07:00,1003.7904663085938,10.843767,10843.767 +19414,2025-03-09T11:20:57.560949-07:00,1003.8036499023438,10.861405,10861.405 +19415,2025-03-09T11:21:08.407916-07:00,1003.8367919921875,10.846967,10846.967 +19416,2025-03-09T11:21:19.251659-07:00,1003.8447875976562,10.843743,10843.743 +19417,2025-03-09T11:21:30.104506-07:00,1003.8513793945312,10.852847,10852.847 +19418,2025-03-09T11:21:40.954436-07:00,1003.825927734375,10.84993,10849.93 +19419,2025-03-09T11:21:51.803451-07:00,1003.8447875976562,10.849015,10849.015 +19420,2025-03-09T11:22:02.650810-07:00,1003.8140869140625,10.847359,10847.359 +19421,2025-03-09T11:22:13.506685-07:00,1003.7876586914062,10.855875,10855.875 +19422,2025-03-09T11:22:24.369527-07:00,1003.8273315429688,10.862842,10862.842 +19423,2025-03-09T11:22:35.220481-07:00,1003.830810546875,10.850954,10850.954 +19424,2025-03-09T11:22:46.066005-07:00,1003.8165893554688,10.845524,10845.524 +19425,2025-03-09T11:22:56.926627-07:00,1003.8253173828125,10.860622,10860.622 +19426,2025-03-09T11:23:07.783437-07:00,1003.8290405273438,10.85681,10856.81 +19427,2025-03-09T11:23:18.627050-07:00,1003.7945556640625,10.843613,10843.613 +19428,2025-03-09T11:23:29.480769-07:00,1003.8234252929688,10.853719,10853.719 +19429,2025-03-09T11:23:40.336263-07:00,1003.8126831054688,10.855494,10855.494 +19430,2025-03-09T11:23:51.190529-07:00,1003.8206176757812,10.854266,10854.266 +19431,2025-03-09T11:24:02.045775-07:00,1003.80322265625,10.855246,10855.246 +19432,2025-03-09T11:24:12.888664-07:00,1003.7767333984375,10.842889,10842.889 +19433,2025-03-09T11:24:23.743416-07:00,1003.791015625,10.854752,10854.752 +19434,2025-03-09T11:24:34.580929-07:00,1003.825439453125,10.837513,10837.513 +19435,2025-03-09T11:24:45.433570-07:00,1003.8067016601562,10.852641,10852.641 +19436,2025-03-09T11:24:56.281435-07:00,1003.786865234375,10.847865,10847.865 +19437,2025-03-09T11:25:07.126491-07:00,1003.8435668945312,10.845056,10845.056 +19438,2025-03-09T11:25:17.975548-07:00,1003.8976440429688,10.849057,10849.057 +19439,2025-03-09T11:25:28.834667-07:00,1003.8115844726562,10.859119,10859.119 +19440,2025-03-09T11:25:39.690438-07:00,1003.8150024414062,10.855771,10855.771 +19441,2025-03-09T11:25:50.532755-07:00,1003.841552734375,10.842317,10842.317 +19442,2025-03-09T11:26:01.374477-07:00,1003.8297119140625,10.841722,10841.722 +19443,2025-03-09T11:26:12.231459-07:00,1003.8373413085938,10.856982,10856.982 +19444,2025-03-09T11:26:23.077667-07:00,1003.7857055664062,10.846208,10846.208 +19445,2025-03-09T11:26:33.932569-07:00,1003.8146362304688,10.854902,10854.902 +19446,2025-03-09T11:26:44.783432-07:00,1003.8132934570312,10.850863,10850.863 +19447,2025-03-09T11:26:55.640609-07:00,1003.8170166015625,10.857177,10857.177 +19448,2025-03-09T11:27:06.498640-07:00,1003.845947265625,10.858031,10858.031 +19449,2025-03-09T11:27:17.346428-07:00,1003.8284301757812,10.847788,10847.788 +19450,2025-03-09T11:27:28.210757-07:00,1003.848388671875,10.864329,10864.329 +19451,2025-03-09T11:27:39.064604-07:00,1003.8096923828125,10.853847,10853.847 +19452,2025-03-09T11:27:49.921600-07:00,1003.8121337890625,10.856996,10856.996 +19453,2025-03-09T11:28:00.773472-07:00,1003.7779541015625,10.851872,10851.872 +19454,2025-03-09T11:28:11.626430-07:00,1003.7814331054688,10.852958,10852.958 +19455,2025-03-09T11:28:22.483611-07:00,1003.8036499023438,10.857181,10857.181 +19456,2025-03-09T11:28:33.350009-07:00,1003.8071899414062,10.866398,10866.398 +19457,2025-03-09T11:28:44.203765-07:00,1003.7927856445312,10.853756,10853.756 +19458,2025-03-09T11:28:55.047629-07:00,1003.8270263671875,10.843864,10843.864 +19459,2025-03-09T11:29:05.912007-07:00,1003.7952880859375,10.864378,10864.378 +19460,2025-03-09T11:29:16.763771-07:00,1003.8228149414062,10.851764,10851.764 +19461,2025-03-09T11:29:27.622804-07:00,1003.8095092773438,10.859033,10859.033 +19462,2025-03-09T11:29:38.471168-07:00,1003.7976684570312,10.848364,10848.364 +19463,2025-03-09T11:29:49.329837-07:00,1003.8318481445312,10.858669,10858.669 +19464,2025-03-09T11:30:00.174734-07:00,1003.833251953125,10.844897,10844.897 +19465,2025-03-09T11:30:11.040789-07:00,1003.7987670898438,10.866055,10866.055 +19466,2025-03-09T11:30:21.888382-07:00,1003.82421875,10.847593,10847.593 +19467,2025-03-09T11:30:32.753280-07:00,1003.87060546875,10.864898,10864.898 +19468,2025-03-09T11:30:43.608905-07:00,1003.82421875,10.855625,10855.625 +19469,2025-03-09T11:30:54.459996-07:00,1003.7802124023438,10.851091,10851.091 +19470,2025-03-09T11:31:05.325676-07:00,1003.8011474609375,10.86568,10865.68 +19471,2025-03-09T11:31:16.177436-07:00,1003.802490234375,10.85176,10851.76 +19472,2025-03-09T11:31:27.041430-07:00,1003.7969360351562,10.863994,10863.994 +19473,2025-03-09T11:31:37.897436-07:00,1003.8457641601562,10.856006,10856.006 +19474,2025-03-09T11:31:48.752409-07:00,1003.8206176757812,10.854973,10854.973 +19475,2025-03-09T11:31:59.606697-07:00,1003.795166015625,10.854288,10854.288 +19476,2025-03-09T11:32:10.460436-07:00,1003.8031005859375,10.853739,10853.739 +19477,2025-03-09T11:32:21.321433-07:00,1003.7898559570312,10.860997,10860.997 +19478,2025-03-09T11:32:32.169577-07:00,1003.744873046875,10.848144,10848.144 +19479,2025-03-09T11:32:43.025561-07:00,1003.7581176757812,10.855984,10855.984 +19480,2025-03-09T11:32:53.881560-07:00,1003.7605590820312,10.855999,10855.999 +19481,2025-03-09T11:33:04.737577-07:00,1003.7374877929688,10.856017,10856.017 +19482,2025-03-09T11:33:15.588432-07:00,1003.7640380859375,10.850855,10850.855 +19483,2025-03-09T11:33:26.448428-07:00,1003.7521362304688,10.859996,10859.996 +19484,2025-03-09T11:33:37.302423-07:00,1003.778564453125,10.853995,10853.995 +19485,2025-03-09T11:33:48.151426-07:00,1003.7952880859375,10.849003,10849.003 +19486,2025-03-09T11:33:59.005619-07:00,1003.7412719726562,10.854193,10854.193 +19487,2025-03-09T11:34:09.860481-07:00,1003.7437744140625,10.854862,10854.862 +19488,2025-03-09T11:34:20.716661-07:00,1003.7196044921875,10.85618,10856.18 +19489,2025-03-09T11:34:31.581670-07:00,1003.7537231445312,10.865009,10865.009 +19490,2025-03-09T11:34:42.441409-07:00,1003.7140502929688,10.859739,10859.739 +19491,2025-03-09T11:34:53.301175-07:00,1003.7230224609375,10.859766,10859.766 +19492,2025-03-09T11:35:04.155877-07:00,1003.708740234375,10.854702,10854.702 +19493,2025-03-09T11:35:15.011459-07:00,1003.7022094726562,10.855582,10855.582 +19494,2025-03-09T11:35:25.872963-07:00,1003.7575073242188,10.861504,10861.504 +19495,2025-03-09T11:35:36.731243-07:00,1003.7178344726562,10.85828,10858.28 +19496,2025-03-09T11:35:47.586610-07:00,1003.703125,10.855367,10855.367 +19497,2025-03-09T11:35:58.440255-07:00,1003.7310791015625,10.853645,10853.645 +19498,2025-03-09T11:36:09.295462-07:00,1003.6832885742188,10.855207,10855.207 +19499,2025-03-09T11:36:20.160470-07:00,1003.7022094726562,10.865008,10865.008 +19500,2025-03-09T11:36:31.015765-07:00,1003.7230224609375,10.855295,10855.295 +19501,2025-03-09T11:36:41.869510-07:00,1003.736328125,10.853745,10853.745 +19502,2025-03-09T11:36:52.734510-07:00,1003.7008056640625,10.865,10865.0 +19503,2025-03-09T11:37:03.593663-07:00,1003.727294921875,10.859153,10859.153 +19504,2025-03-09T11:37:14.454845-07:00,1003.727294921875,10.861182,10861.182 +19505,2025-03-09T11:37:25.309497-07:00,1003.7129516601562,10.854652,10854.652 +19506,2025-03-09T11:37:36.163875-07:00,1003.7262573242188,10.854378,10854.378 +19507,2025-03-09T11:37:47.029740-07:00,1003.678466796875,10.865865,10865.865 +19508,2025-03-09T11:37:57.885749-07:00,1003.724853515625,10.856009,10856.009 +19509,2025-03-09T11:38:08.749681-07:00,1003.71826171875,10.863932,10863.932 +19510,2025-03-09T11:38:19.615773-07:00,1003.7593994140625,10.866092,10866.092 +19511,2025-03-09T11:38:30.472436-07:00,1003.7050170898438,10.856663,10856.663 +19512,2025-03-09T11:38:52.202260-07:00,1003.7129516601562,21.729824,21729.824 +19513,2025-03-09T11:39:03.065869-07:00,1003.7050170898438,10.863609,10863.609 +19514,2025-03-09T11:39:13.923432-07:00,1003.7224731445312,10.857563,10857.563 +19515,2025-03-09T11:39:24.789593-07:00,1003.79248046875,10.866161,10866.161 +19516,2025-03-09T11:39:35.644431-07:00,1003.7659301757812,10.854838,10854.838 +19517,2025-03-09T11:39:46.517922-07:00,1003.7315063476562,10.873491,10873.491 +19518,2025-03-09T11:39:57.369468-07:00,1003.7380981445312,10.851546,10851.546 +19519,2025-03-09T11:40:08.242694-07:00,1003.7447509765625,10.873226,10873.226 +19520,2025-03-09T11:40:19.107421-07:00,1003.7129516601562,10.864727,10864.727 +19521,2025-03-09T11:40:29.961434-07:00,1003.7659301757812,10.854013,10854.013 +19522,2025-03-09T11:40:40.821588-07:00,1003.739501953125,10.860154,10860.154 +19523,2025-03-09T11:40:51.684589-07:00,1003.7910766601562,10.863001,10863.001 +19524,2025-03-09T11:41:02.546431-07:00,1003.77685546875,10.861842,10861.842 +19525,2025-03-09T11:41:13.411177-07:00,1003.7569580078125,10.864746,10864.746 +19526,2025-03-09T11:41:24.267276-07:00,1003.7821044921875,10.856099,10856.099 +19527,2025-03-09T11:41:35.122812-07:00,1003.7503051757812,10.855536,10855.536 +19528,2025-03-09T11:41:45.986431-07:00,1003.77685546875,10.863619,10863.619 +19529,2025-03-09T11:41:56.844457-07:00,1003.7015380859375,10.858026,10858.026 +19530,2025-03-09T11:42:07.705656-07:00,1003.7569580078125,10.861199,10861.199 +19531,2025-03-09T11:42:18.566711-07:00,1003.7412719726562,10.861055,10861.055 +19532,2025-03-09T11:42:29.428663-07:00,1003.7290649414062,10.861952,10861.952 +19533,2025-03-09T11:42:40.295506-07:00,1003.7290649414062,10.866843,10866.843 +19534,2025-03-09T11:42:51.148724-07:00,1003.7399291992188,10.853218,10853.218 +19535,2025-03-09T11:43:02.009876-07:00,1003.732177734375,10.861152,10861.152 +19536,2025-03-09T11:43:12.869809-07:00,1003.706787109375,10.859933,10859.933 +19537,2025-03-09T11:43:23.736435-07:00,1003.7412719726562,10.866626,10866.626 +19538,2025-03-09T11:43:34.593748-07:00,1003.7374877929688,10.857313,10857.313 +19539,2025-03-09T11:43:45.453432-07:00,1003.716552734375,10.859684,10859.684 +19540,2025-03-09T11:43:56.310438-07:00,1003.6900634765625,10.857006,10857.006 +19541,2025-03-09T11:44:07.164430-07:00,1003.7019653320312,10.853992,10853.992 +19542,2025-03-09T11:44:18.024927-07:00,1003.735107421875,10.860497,10860.497 +19543,2025-03-09T11:44:28.875716-07:00,1003.74169921875,10.850789,10850.789 +19544,2025-03-09T11:44:39.725580-07:00,1003.7207641601562,10.849864,10849.864 +19545,2025-03-09T11:44:50.591724-07:00,1003.7193603515625,10.866144,10866.144 +19546,2025-03-09T11:45:01.442436-07:00,1003.7249755859375,10.850712,10850.712 +19547,2025-03-09T11:45:12.312940-07:00,1003.6984252929688,10.870504,10870.504 +19548,2025-03-09T11:45:23.168313-07:00,1003.7483520507812,10.855373,10855.373 +19549,2025-03-09T11:45:34.033669-07:00,1003.6929931640625,10.865356,10865.356 +19550,2025-03-09T11:45:44.888094-07:00,1003.744873046875,10.854425,10854.425 +19551,2025-03-09T11:45:55.743773-07:00,1003.7316284179688,10.855679,10855.679 +19552,2025-03-09T11:46:06.607490-07:00,1003.7501831054688,10.863717,10863.717 +19553,2025-03-09T11:46:17.466437-07:00,1003.7501831054688,10.858947,10858.947 +19554,2025-03-09T11:46:28.327445-07:00,1003.744873046875,10.861008,10861.008 +19555,2025-03-09T11:46:39.184747-07:00,1003.717041015625,10.857302,10857.302 +19556,2025-03-09T11:46:50.039926-07:00,1003.7222900390625,10.855179,10855.179 +19557,2025-03-09T11:47:00.903475-07:00,1003.6759643554688,10.863549,10863.549 +19558,2025-03-09T11:47:11.753749-07:00,1003.7435302734375,10.850274,10850.274 +19559,2025-03-09T11:47:22.609433-07:00,1003.748779296875,10.855684,10855.684 +19560,2025-03-09T11:47:33.462425-07:00,1003.7288818359375,10.852992,10852.992 +19561,2025-03-09T11:47:44.316505-07:00,1003.727783203125,10.85408,10854.08 +19562,2025-03-09T11:47:55.180643-07:00,1003.7000122070312,10.864138,10864.138 +19563,2025-03-09T11:48:06.033535-07:00,1003.717529296875,10.852892,10852.892 +19564,2025-03-09T11:48:16.895656-07:00,1003.6699829101562,10.862121,10862.121 +19565,2025-03-09T11:48:27.745452-07:00,1003.6951293945312,10.849796,10849.796 +19566,2025-03-09T11:48:38.602753-07:00,1003.73388671875,10.857301,10857.301 +19567,2025-03-09T11:48:49.461709-07:00,1003.73388671875,10.858956,10858.956 +19568,2025-03-09T11:49:00.331523-07:00,1003.6927490234375,10.869814,10869.814 +19569,2025-03-09T11:49:11.185491-07:00,1003.6994018554688,10.853968,10853.968 +19570,2025-03-09T11:49:22.042436-07:00,1003.6983032226562,10.856945,10856.945 +19571,2025-03-09T11:49:32.897560-07:00,1003.71923828125,10.855124,10855.124 +19572,2025-03-09T11:49:43.759435-07:00,1003.6994018554688,10.861875,10861.875 +19573,2025-03-09T11:49:54.625485-07:00,1003.712646484375,10.86605,10866.05 +19574,2025-03-09T11:50:05.480541-07:00,1003.638671875,10.855056,10855.056 +19575,2025-03-09T11:50:16.343711-07:00,1003.6718139648438,10.86317,10863.17 +19576,2025-03-09T11:50:27.193957-07:00,1003.663818359375,10.850246,10850.246 +19577,2025-03-09T11:50:38.055448-07:00,1003.6849975585938,10.861491,10861.491 +19578,2025-03-09T11:50:48.912762-07:00,1003.6903076171875,10.857314,10857.314 +19579,2025-03-09T11:50:59.762701-07:00,1003.7181396484375,10.849939,10849.939 +19580,2025-03-09T11:51:10.623648-07:00,1003.7101440429688,10.860947,10860.947 +19581,2025-03-09T11:51:21.467978-07:00,1003.677001953125,10.84433,10844.33 +19582,2025-03-09T11:51:32.328716-07:00,1003.663818359375,10.860738,10860.738 +19583,2025-03-09T11:51:43.190905-07:00,1003.6860961914062,10.862189,10862.189 +19584,2025-03-09T11:51:54.046773-07:00,1003.6917114257812,10.855868,10855.868 +19585,2025-03-09T11:52:04.911484-07:00,1003.662841796875,10.864711,10864.711 +19586,2025-03-09T11:52:15.767740-07:00,1003.6296997070312,10.856256,10856.256 +19587,2025-03-09T11:52:26.626550-07:00,1003.6718139648438,10.85881,10858.81 +19588,2025-03-09T11:52:37.489541-07:00,1003.6704711914062,10.862991,10862.991 +19589,2025-03-09T11:52:48.347473-07:00,1003.6571655273438,10.857932,10857.932 +19590,2025-03-09T11:52:59.203554-07:00,1003.6837768554688,10.856081,10856.081 +19591,2025-03-09T11:53:10.074838-07:00,1003.7091674804688,10.871284,10871.284 +19592,2025-03-09T11:53:20.924765-07:00,1003.663818359375,10.849927,10849.927 +19593,2025-03-09T11:53:31.786684-07:00,1003.6693725585938,10.861919,10861.919 +19594,2025-03-09T11:53:42.653624-07:00,1003.6560668945312,10.86694,10866.94 +19595,2025-03-09T11:53:53.520558-07:00,1003.66796875,10.866934,10866.934 +19596,2025-03-09T11:54:04.379505-07:00,1003.7157592773438,10.858947,10858.947 +19597,2025-03-09T11:54:15.237433-07:00,1003.6826782226562,10.857928,10857.928 +19598,2025-03-09T11:54:26.097955-07:00,1003.6447143554688,10.860522,10860.522 +19599,2025-03-09T11:54:36.954699-07:00,1003.7109375,10.856744,10856.744 +19600,2025-03-09T11:54:47.815475-07:00,1003.6565551757812,10.860776,10860.776 +19601,2025-03-09T11:54:58.684434-07:00,1003.6478271484375,10.868959,10868.959 +19602,2025-03-09T11:55:09.540551-07:00,1003.6398315429688,10.856117,10856.117 +19603,2025-03-09T11:55:20.403432-07:00,1003.6520385742188,10.862881,10862.881 +19604,2025-03-09T11:55:31.262668-07:00,1003.671875,10.859236,10859.236 +19605,2025-03-09T11:55:42.121701-07:00,1003.6638793945312,10.859033,10859.033 +19606,2025-03-09T11:55:52.983232-07:00,1003.6771850585938,10.861531,10861.531 +19607,2025-03-09T11:56:03.837989-07:00,1003.6339111328125,10.854757,10854.757 +19608,2025-03-09T11:56:14.707428-07:00,1003.70263671875,10.869439,10869.439 +19609,2025-03-09T11:56:25.559436-07:00,1003.6695556640625,10.852008,10852.008 +19610,2025-03-09T11:56:36.418836-07:00,1003.635009765625,10.8594,10859.4 +19611,2025-03-09T11:56:47.281587-07:00,1003.6482543945312,10.862751,10862.751 +19612,2025-03-09T11:56:58.136439-07:00,1003.65380859375,10.854852,10854.852 +19613,2025-03-09T11:57:09.000432-07:00,1003.640625,10.863993,10863.993 +19614,2025-03-09T11:57:19.856911-07:00,1003.6381225585938,10.856479,10856.479 +19615,2025-03-09T11:57:30.722675-07:00,1003.6367797851562,10.865764,10865.764 +19616,2025-03-09T11:57:41.580690-07:00,1003.6434326171875,10.858015,10858.015 +19617,2025-03-09T11:57:52.435673-07:00,1003.6500244140625,10.854983,10854.983 +19618,2025-03-09T11:58:03.287424-07:00,1003.68212890625,10.851751,10851.751 +19619,2025-03-09T11:58:14.142751-07:00,1003.6409912109375,10.855327,10855.327 +19620,2025-03-09T11:58:24.991185-07:00,1003.6386108398438,10.848434,10848.434 +19621,2025-03-09T11:58:35.843435-07:00,1003.6693115234375,10.85225,10852.25 +19622,2025-03-09T11:58:46.699425-07:00,1003.62841796875,10.85599,10855.99 +19623,2025-03-09T11:58:57.548362-07:00,1003.6947021484375,10.848937,10848.937 +19624,2025-03-09T11:59:08.406426-07:00,1003.68017578125,10.858064,10858.064 +19625,2025-03-09T11:59:19.255409-07:00,1003.677978515625,10.848983,10848.983 +19626,2025-03-09T11:59:30.109653-07:00,1003.6912231445312,10.854244,10854.244 +19627,2025-03-09T11:59:40.965473-07:00,1003.6821899414062,10.85582,10855.82 +19628,2025-03-09T11:59:51.814426-07:00,1003.6917114257812,10.848953,10848.953 +19629,2025-03-09T12:00:02.122507-07:00,1003.6906127929688,10.308081,10308.081 +19630,2025-03-09T12:00:02.669614-07:00,1003.6983032226562,0.547107,547.107 +19631,2025-03-09T12:00:13.517413-07:00,1003.63623046875,10.847799,10847.799 +19632,2025-03-09T12:00:24.359423-07:00,1003.7223510742188,10.84201,10842.01 +19633,2025-03-09T12:00:35.214438-07:00,1003.7025146484375,10.855015,10855.015 +19634,2025-03-09T12:00:46.067317-07:00,1003.6791381835938,10.852879,10852.879 +19635,2025-03-09T12:00:56.915700-07:00,1003.6777954101562,10.848383,10848.383 +19636,2025-03-09T12:01:07.762887-07:00,1003.636962890625,10.847187,10847.187 +19637,2025-03-09T12:01:18.616869-07:00,1003.662109375,10.853982,10853.982 +19638,2025-03-09T12:01:29.469991-07:00,1003.653076171875,10.853122,10853.122 +19639,2025-03-09T12:01:40.310430-07:00,1003.6851806640625,10.840439,10840.439 +19640,2025-03-09T12:01:51.157848-07:00,1003.6447143554688,10.847418,10847.418 +19641,2025-03-09T12:02:02.005573-07:00,1003.6712646484375,10.847725,10847.725 +19642,2025-03-09T12:02:12.855421-07:00,1003.6304931640625,10.849848,10849.848 +19643,2025-03-09T12:02:23.705046-07:00,1003.6942138671875,10.849625,10849.625 +19644,2025-03-09T12:02:34.552901-07:00,1003.646484375,10.847855,10847.855 +19645,2025-03-09T12:02:45.406771-07:00,1003.6307983398438,10.85387,10853.87 +19646,2025-03-09T12:02:56.254306-07:00,1003.649658203125,10.847535,10847.535 +19647,2025-03-09T12:03:07.105427-07:00,1003.6165771484375,10.851121,10851.121 +19648,2025-03-09T12:03:17.963268-07:00,1003.640625,10.857841,10857.841 +19649,2025-03-09T12:03:28.811425-07:00,1003.6615600585938,10.848157,10848.157 +19650,2025-03-09T12:03:39.654657-07:00,1003.6127319335938,10.843232,10843.232 +19651,2025-03-09T12:03:50.512142-07:00,1003.6158447265625,10.857485,10857.485 +19652,2025-03-09T12:04:01.358456-07:00,1003.595947265625,10.846314,10846.314 +19653,2025-03-09T12:04:12.207432-07:00,1003.536376953125,10.848976,10848.976 +19654,2025-03-09T12:04:23.053424-07:00,1003.5792236328125,10.845992,10845.992 +19655,2025-03-09T12:04:33.906478-07:00,1003.5527954101562,10.853054,10853.054 +19656,2025-03-09T12:04:44.756806-07:00,1003.592529296875,10.850328,10850.328 +19657,2025-03-09T12:04:55.602630-07:00,1003.5845336914062,10.845824,10845.824 +19658,2025-03-09T12:05:06.440431-07:00,1003.5834350585938,10.837801,10837.801 +19659,2025-03-09T12:05:17.295541-07:00,1003.5928955078125,10.85511,10855.11 +19660,2025-03-09T12:05:28.145839-07:00,1003.5862426757812,10.850298,10850.298 +19661,2025-03-09T12:05:38.998564-07:00,1003.5928955078125,10.852725,10852.725 +19662,2025-03-09T12:05:49.712188-07:00,1003.6102905273438,10.713624,10713.624 +19663,2025-03-09T12:06:00.554269-07:00,1003.5904541015625,10.842081,10842.081 +19664,2025-03-09T12:06:11.404439-07:00,1003.576171875,10.85017,10850.17 +19665,2025-03-09T12:06:22.263328-07:00,1003.6026611328125,10.858889,10858.889 +19666,2025-03-09T12:06:33.117432-07:00,1003.552490234375,10.854104,10854.104 +19667,2025-03-09T12:06:43.960860-07:00,1003.5538940429688,10.843428,10843.428 +19668,2025-03-09T12:06:54.803958-07:00,1003.5845336914062,10.843098,10843.098 +19669,2025-03-09T12:07:05.654127-07:00,1003.5700073242188,10.850169,10850.169 +19670,2025-03-09T12:07:16.504228-07:00,1003.5567016601562,10.850101,10850.101 +19671,2025-03-09T12:07:27.356226-07:00,1003.5399780273438,10.851998,10851.998 +19672,2025-03-09T12:07:38.201108-07:00,1003.5609130859375,10.844882,10844.882 +19673,2025-03-09T12:07:49.042507-07:00,1003.5929565429688,10.841399,10841.399 +19674,2025-03-09T12:07:59.891966-07:00,1003.5333862304688,10.849459,10849.459 +19675,2025-03-09T12:08:10.745631-07:00,1003.5242919921875,10.853665,10853.665 +19676,2025-03-09T12:08:21.594007-07:00,1003.512451171875,10.848376,10848.376 +19677,2025-03-09T12:08:32.437460-07:00,1003.5496826171875,10.843453,10843.453 +19678,2025-03-09T12:08:43.284030-07:00,1003.5298461914062,10.84657,10846.57 +19679,2025-03-09T12:08:54.135079-07:00,1003.5284423828125,10.851049,10851.049 +19680,2025-03-09T12:09:04.978350-07:00,1003.539306640625,10.843271,10843.271 +19681,2025-03-09T12:09:15.832554-07:00,1003.56298828125,10.854204,10854.204 +19682,2025-03-09T12:09:26.686339-07:00,1003.5274047851562,10.853785,10853.785 +19683,2025-03-09T12:09:37.529853-07:00,1003.5194702148438,10.843514,10843.514 +19684,2025-03-09T12:09:48.372507-07:00,1003.4971923828125,10.842654,10842.654 +19685,2025-03-09T12:09:59.222017-07:00,1003.5302124023438,10.84951,10849.51 +19686,2025-03-09T12:10:10.065962-07:00,1003.5236206054688,10.843945,10843.945 +19687,2025-03-09T12:10:20.908947-07:00,1003.5765380859375,10.842985,10842.985 +19688,2025-03-09T12:10:31.750712-07:00,1003.4737548828125,10.841765,10841.765 +19689,2025-03-09T12:10:42.597116-07:00,1003.5267333984375,10.846404,10846.404 +19690,2025-03-09T12:10:53.447503-07:00,1003.525390625,10.850387,10850.387 +19691,2025-03-09T12:11:04.291033-07:00,1003.5399780273438,10.84353,10843.53 +19692,2025-03-09T12:11:15.146968-07:00,1003.497802734375,10.855935,10855.935 +19693,2025-03-09T12:11:25.989023-07:00,1003.4964599609375,10.842055,10842.055 +19694,2025-03-09T12:11:36.838915-07:00,1003.501708984375,10.849892,10849.892 +19695,2025-03-09T12:11:47.679787-07:00,1003.5150146484375,10.840872,10840.872 +19696,2025-03-09T12:11:58.510123-07:00,1003.520263671875,10.830336,10830.336 +19697,2025-03-09T12:12:09.352408-07:00,1003.5313110351562,10.842285,10842.285 +19698,2025-03-09T12:12:20.199526-07:00,1003.50341796875,10.847118,10847.118 +19699,2025-03-09T12:12:31.042009-07:00,1003.494384765625,10.842483,10842.483 +19700,2025-03-09T12:12:41.892291-07:00,1003.50341796875,10.850282,10850.282 +19701,2025-03-09T12:12:52.738363-07:00,1003.4866943359375,10.846072,10846.072 +19702,2025-03-09T12:13:03.582955-07:00,1003.4933471679688,10.844592,10844.592 +19703,2025-03-09T12:13:14.427301-07:00,1003.4933471679688,10.844346,10844.346 +19704,2025-03-09T12:13:25.275287-07:00,1003.4974975585938,10.847986,10847.986 +19705,2025-03-09T12:13:36.111700-07:00,1003.4829711914062,10.836413,10836.413 +19706,2025-03-09T12:13:46.961216-07:00,1003.4818725585938,10.849516,10849.516 +19707,2025-03-09T12:13:57.808197-07:00,1003.4553833007812,10.846981,10846.981 +19708,2025-03-09T12:14:08.647023-07:00,1003.4685668945312,10.838826,10838.826 +19709,2025-03-09T12:14:19.491584-07:00,1003.475341796875,10.844561,10844.561 +19710,2025-03-09T12:14:30.328095-07:00,1003.4606323242188,10.836511,10836.511 +19711,2025-03-09T12:14:41.170066-07:00,1003.4781494140625,10.841971,10841.971 +19712,2025-03-09T12:14:52.025089-07:00,1003.4846801757812,10.855023,10855.023 +19713,2025-03-09T12:15:02.868311-07:00,1003.50341796875,10.843222,10843.222 +19714,2025-03-09T12:15:13.710818-07:00,1003.4835815429688,10.842507,10842.507 +19715,2025-03-09T12:15:24.552965-07:00,1003.5087280273438,10.842147,10842.147 +19716,2025-03-09T12:15:35.396968-07:00,1003.4954833984375,10.844003,10844.003 +19717,2025-03-09T12:15:46.248967-07:00,1003.4600219726562,10.851999,10851.999 +19718,2025-03-09T12:15:57.098682-07:00,1003.512939453125,10.849715,10849.715 +19719,2025-03-09T12:16:07.944017-07:00,1003.466552734375,10.845335,10845.335 +19720,2025-03-09T12:16:18.792284-07:00,1003.4972534179688,10.848267,10848.267 +19721,2025-03-09T12:16:29.631979-07:00,1003.4707641601562,10.839695,10839.695 +19722,2025-03-09T12:16:40.478964-07:00,1003.4829711914062,10.846985,10846.985 +19723,2025-03-09T12:16:51.316030-07:00,1003.4696655273438,10.837066,10837.066 +19724,2025-03-09T12:17:00.257347-07:00,1003.4540405273438,8.941317,8941.317 +19725,2025-03-09T12:17:02.153447-07:00,1003.4961547851562,1.8961,1896.1 +19726,2025-03-09T12:17:12.993946-07:00,1003.48046875,10.840499,10840.499 +19727,2025-03-09T12:17:23.835843-07:00,1003.4818725585938,10.841897,10841.897 +19728,2025-03-09T12:17:34.690834-07:00,1003.486083984375,10.854991,10854.991 +19729,2025-03-09T12:17:45.523309-07:00,1003.4464111328125,10.832475,10832.475 +19730,2025-03-09T12:17:56.372270-07:00,1003.4979858398438,10.848961,10848.961 +19731,2025-03-09T12:18:07.210969-07:00,1003.471435546875,10.838699,10838.699 +19732,2025-03-09T12:18:18.055354-07:00,1003.4572143554688,10.844385,10844.385 +19733,2025-03-09T12:18:28.898693-07:00,1003.4835815429688,10.843339,10843.339 +19734,2025-03-09T12:18:39.740797-07:00,1003.4373168945312,10.842104,10842.104 +19735,2025-03-09T12:18:50.588961-07:00,1003.4373168945312,10.848164,10848.164 +19736,2025-03-09T12:19:01.438270-07:00,1003.4414672851562,10.849309,10849.309 +19737,2025-03-09T12:19:12.282112-07:00,1003.4425048828125,10.843842,10843.842 +19738,2025-03-09T12:19:23.124964-07:00,1003.408447265625,10.842852,10842.852 +19739,2025-03-09T12:19:33.968224-07:00,1003.4059448242188,10.84326,10843.26 +19740,2025-03-09T12:19:44.806016-07:00,1003.3861083984375,10.837792,10837.792 +19741,2025-03-09T12:19:55.653960-07:00,1003.388916015625,10.847944,10847.944 +19742,2025-03-09T12:20:06.491022-07:00,1003.4498291015625,10.837062,10837.062 +19743,2025-03-09T12:20:17.326718-07:00,1003.4365844726562,10.835696,10835.696 +19744,2025-03-09T12:20:28.171205-07:00,1003.5328369140625,10.844487,10844.487 +19745,2025-03-09T12:20:39.020975-07:00,1003.4920043945312,10.84977,10849.77 +19746,2025-03-09T12:20:49.864218-07:00,1003.3937377929688,10.843243,10843.243 +19747,2025-03-09T12:21:00.709183-07:00,1003.400390625,10.844965,10844.965 +19748,2025-03-09T12:21:11.547619-07:00,1003.41357421875,10.838436,10838.436 +19749,2025-03-09T12:21:22.393997-07:00,1003.4149780273438,10.846378,10846.378 +19750,2025-03-09T12:21:33.231968-07:00,1003.359619140625,10.837971,10837.971 +19751,2025-03-09T12:21:44.084975-07:00,1003.3540649414062,10.853007,10853.007 +19752,2025-03-09T12:21:54.927505-07:00,1003.3795166015625,10.84253,10842.53 +19753,2025-03-09T12:22:05.765014-07:00,1003.4202270507812,10.837509,10837.509 +19754,2025-03-09T12:22:16.602023-07:00,1003.3764038085938,10.837009,10837.009 +19755,2025-03-09T12:22:27.444970-07:00,1003.440185546875,10.842947,10842.947 +19756,2025-03-09T12:22:38.292411-07:00,1003.4703979492188,10.847441,10847.441 +19757,2025-03-09T12:22:49.131152-07:00,1003.408447265625,10.838741,10838.741 +19758,2025-03-09T12:22:59.968980-07:00,1003.4505615234375,10.837828,10837.828 +19759,2025-03-09T12:23:10.807318-07:00,1003.409423828125,10.838338,10838.338 +19760,2025-03-09T12:23:21.654299-07:00,1003.434814453125,10.846981,10846.981 +19761,2025-03-09T12:23:32.486207-07:00,1003.4107666015625,10.831908,10831.908 +19762,2025-03-09T12:23:43.330954-07:00,1003.3895874023438,10.844747,10844.747 +19763,2025-03-09T12:23:54.170513-07:00,1003.3764038085938,10.839559,10839.559 +19764,2025-03-09T12:24:05.010021-07:00,1003.3829956054688,10.839508,10839.508 +19765,2025-03-09T12:24:15.850045-07:00,1003.3764038085938,10.840024,10840.024 +19766,2025-03-09T12:24:26.697029-07:00,1003.3540649414062,10.846984,10846.984 +19767,2025-03-09T12:24:37.540368-07:00,1003.360595703125,10.843339,10843.339 +19768,2025-03-09T12:24:48.372941-07:00,1003.3951416015625,10.832573,10832.573 +19769,2025-03-09T12:24:59.216966-07:00,1003.359619140625,10.844025,10844.025 +19770,2025-03-09T12:25:10.057971-07:00,1003.357177734375,10.841005,10841.005 +19771,2025-03-09T12:25:20.900297-07:00,1003.3805541992188,10.842326,10842.326 +19772,2025-03-09T12:25:31.742424-07:00,1003.3582763671875,10.842127,10842.127 +19773,2025-03-09T12:25:42.587746-07:00,1003.3557739257812,10.845322,10845.322 +19774,2025-03-09T12:25:53.430212-07:00,1003.3175048828125,10.842466,10842.466 +19775,2025-03-09T12:26:04.275307-07:00,1003.3505249023438,10.845095,10845.095 +19776,2025-03-09T12:26:15.123287-07:00,1003.3557739257812,10.84798,10847.98 +19777,2025-03-09T12:26:25.964962-07:00,1003.3283081054688,10.841675,10841.675 +19778,2025-03-09T12:26:36.799497-07:00,1003.3439331054688,10.834535,10834.535 +19779,2025-03-09T12:26:47.645649-07:00,1003.34814453125,10.846152,10846.152 +19780,2025-03-09T12:26:58.488367-07:00,1003.3150024414062,10.842718,10842.718 +19781,2025-03-09T12:27:09.320190-07:00,1003.2871704101562,10.831823,10831.823 +19782,2025-03-09T12:27:20.163972-07:00,1003.3150024414062,10.843782,10843.782 +19783,2025-03-09T12:27:31.014268-07:00,1003.326904296875,10.850296,10850.296 +19784,2025-03-09T12:27:41.847729-07:00,1003.295166015625,10.833461,10833.461 +19785,2025-03-09T12:27:52.696500-07:00,1003.2662353515625,10.848771,10848.771 +19786,2025-03-09T12:28:03.535949-07:00,1003.3150024414062,10.839449,10839.449 +19787,2025-03-09T12:28:14.378945-07:00,1003.3136596679688,10.842996,10842.996 +19788,2025-03-09T12:28:25.221260-07:00,1003.305908203125,10.842315,10842.315 +19789,2025-03-09T12:28:36.061115-07:00,1003.2937622070312,10.839855,10839.855 +19790,2025-03-09T12:28:46.909055-07:00,1003.3216552734375,10.84794,10847.94 +19791,2025-03-09T12:28:57.756971-07:00,1003.279541015625,10.847916,10847.916 +19792,2025-03-09T12:29:08.590611-07:00,1003.3136596679688,10.83364,10833.64 +19793,2025-03-09T12:29:19.435556-07:00,1003.2648315429688,10.844945,10844.945 +19794,2025-03-09T12:29:30.280083-07:00,1003.3070068359375,10.844527,10844.527 +19795,2025-03-09T12:29:41.122965-07:00,1003.3126831054688,10.842882,10842.882 +19796,2025-03-09T12:29:51.966970-07:00,1003.2993774414062,10.844005,10844.005 +19797,2025-03-09T12:30:02.815998-07:00,1003.3126831054688,10.849028,10849.028 +19798,2025-03-09T12:30:13.651995-07:00,1003.2770385742188,10.835997,10835.997 +19799,2025-03-09T12:30:24.504971-07:00,1003.2823486328125,10.852976,10852.976 +19800,2025-03-09T12:30:35.349968-07:00,1003.2572021484375,10.844997,10844.997 +19801,2025-03-09T12:30:46.194140-07:00,1003.3021850585938,10.844172,10844.172 +19802,2025-03-09T12:30:57.036125-07:00,1003.287841796875,10.841985,10841.985 +19803,2025-03-09T12:31:07.886589-07:00,1003.2999877929688,10.850464,10850.464 +19804,2025-03-09T12:31:18.729051-07:00,1003.3397827148438,10.842462,10842.462 +19805,2025-03-09T12:31:29.577596-07:00,1003.2920532226562,10.848545,10848.545 +19806,2025-03-09T12:31:40.414962-07:00,1003.2868041992188,10.837366,10837.366 +19807,2025-03-09T12:31:51.263218-07:00,1003.3132934570312,10.848256,10848.256 +19808,2025-03-09T12:32:02.112029-07:00,1003.3175048828125,10.848811,10848.811 +19809,2025-03-09T12:32:12.947990-07:00,1003.2896118164062,10.835961,10835.961 +19810,2025-03-09T12:32:23.794967-07:00,1003.2499389648438,10.846977,10846.977 +19811,2025-03-09T12:32:34.635222-07:00,1003.2711181640625,10.840255,10840.255 +19812,2025-03-09T12:32:45.484183-07:00,1003.2645263671875,10.848961,10848.961 +19813,2025-03-09T12:32:56.334269-07:00,1003.2962646484375,10.850086,10850.086 +19814,2025-03-09T12:33:07.176984-07:00,1003.2620239257812,10.842715,10842.715 +19815,2025-03-09T12:33:18.015215-07:00,1003.2554931640625,10.838231,10838.231 +19816,2025-03-09T12:33:28.860493-07:00,1003.3095092773438,10.845278,10845.278 +19817,2025-03-09T12:33:39.710958-07:00,1003.2764282226562,10.850465,10850.465 +19818,2025-03-09T12:33:50.556120-07:00,1003.2976684570312,10.845162,10845.162 +19819,2025-03-09T12:34:01.400412-07:00,1003.30419921875,10.844292,10844.292 +19820,2025-03-09T12:34:12.233967-07:00,1003.3185424804688,10.833555,10833.555 +19821,2025-03-09T12:34:23.078631-07:00,1003.3067016601562,10.844664,10844.664 +19822,2025-03-09T12:34:33.916299-07:00,1003.3175048828125,10.837668,10837.668 +19823,2025-03-09T12:34:44.751976-07:00,1003.3240356445312,10.835677,10835.677 +19824,2025-03-09T12:34:55.591207-07:00,1003.3384399414062,10.839231,10839.231 +19825,2025-03-09T12:35:06.428272-07:00,1003.3251342773438,10.837065,10837.065 +19826,2025-03-09T12:35:17.280336-07:00,1003.3052978515625,10.852064,10852.064 +19827,2025-03-09T12:35:28.123006-07:00,1003.3027954101562,10.84267,10842.67 +19828,2025-03-09T12:35:38.968055-07:00,1003.2408447265625,10.845049,10845.049 +19829,2025-03-09T12:35:49.809959-07:00,1003.31982421875,10.841904,10841.904 +19830,2025-03-09T12:36:00.649741-07:00,1003.3027954101562,10.839782,10839.782 +19831,2025-03-09T12:36:11.495185-07:00,1003.3108520507812,10.845444,10845.444 +19832,2025-03-09T12:36:22.338962-07:00,1003.3175048828125,10.843777,10843.777 +19833,2025-03-09T12:36:33.172474-07:00,1003.3306884765625,10.833512,10833.512 +19834,2025-03-09T12:36:44.022047-07:00,1003.3175048828125,10.849573,10849.573 +19835,2025-03-09T12:36:54.855971-07:00,1003.2909545898438,10.833924,10833.924 +19836,2025-03-09T12:37:05.695957-07:00,1003.265625,10.839986,10839.986 +19837,2025-03-09T12:37:16.532335-07:00,1003.2523193359375,10.836378,10836.378 +19838,2025-03-09T12:37:27.369042-07:00,1003.272216796875,10.836707,10836.707 +19839,2025-03-09T12:37:38.217388-07:00,1003.2603149414062,10.848346,10848.346 +19840,2025-03-09T12:37:49.049949-07:00,1003.2139892578125,10.832561,10832.561 +19841,2025-03-09T12:37:59.894309-07:00,1003.1994018554688,10.84436,10844.36 +19842,2025-03-09T12:38:10.733351-07:00,1003.2603149414062,10.839042,10839.042 +19843,2025-03-09T12:38:21.574270-07:00,1003.2390747070312,10.840919,10840.919 +19844,2025-03-09T12:38:32.412305-07:00,1003.2523193359375,10.838035,10838.035 +19845,2025-03-09T12:38:43.255764-07:00,1003.2313842773438,10.843459,10843.459 +19846,2025-03-09T12:38:54.090962-07:00,1003.2589111328125,10.835198,10835.198 +19847,2025-03-09T12:39:04.929668-07:00,1003.2711181640625,10.838706,10838.706 +19848,2025-03-09T12:39:15.772779-07:00,1003.3108520507812,10.843111,10843.111 +19849,2025-03-09T12:39:26.610967-07:00,1003.251220703125,10.838188,10838.188 +19850,2025-03-09T12:39:37.449966-07:00,1003.2432861328125,10.838999,10838.999 +19851,2025-03-09T12:39:48.279423-07:00,1003.3175048828125,10.829457,10829.457 +19852,2025-03-09T12:39:59.128961-07:00,1003.2777099609375,10.849538,10849.538 +19853,2025-03-09T12:40:09.965452-07:00,1003.2589111328125,10.836491,10836.491 +19854,2025-03-09T12:40:20.813971-07:00,1003.2432861328125,10.848519,10848.519 +19855,2025-03-09T12:40:31.653573-07:00,1003.251220703125,10.839602,10839.602 +19856,2025-03-09T12:40:42.484968-07:00,1003.269775390625,10.831395,10831.395 +19857,2025-03-09T12:40:53.322001-07:00,1003.2578735351562,10.837033,10837.033 +19858,2025-03-09T12:41:04.165450-07:00,1003.2589111328125,10.843449,10843.449 +19859,2025-03-09T12:41:15.002963-07:00,1003.272216796875,10.837513,10837.513 +19860,2025-03-09T12:41:25.853204-07:00,1003.2446899414062,10.850241,10850.241 +19861,2025-03-09T12:41:36.686974-07:00,1003.265625,10.83377,10833.77 +19862,2025-03-09T12:41:47.531333-07:00,1003.2614135742188,10.844359,10844.359 +19863,2025-03-09T12:41:58.385291-07:00,1003.2471313476562,10.853958,10853.958 +19864,2025-03-09T12:42:09.224287-07:00,1003.265625,10.838996,10838.996 +19865,2025-03-09T12:42:20.065020-07:00,1003.2457885742188,10.840733,10840.733 +19866,2025-03-09T12:42:30.902565-07:00,1003.225830078125,10.837545,10837.545 +19867,2025-03-09T12:42:41.746933-07:00,1003.2324829101562,10.844368,10844.368 +19868,2025-03-09T12:42:52.583317-07:00,1003.225830078125,10.836384,10836.384 +19869,2025-03-09T12:43:03.421188-07:00,1003.2457885742188,10.837871,10837.871 +19870,2025-03-09T12:43:14.264342-07:00,1003.224853515625,10.843154,10843.154 +19871,2025-03-09T12:43:25.097970-07:00,1003.2457885742188,10.833628,10833.628 +19872,2025-03-09T12:43:35.939000-07:00,1003.2537231445312,10.84103,10841.03 +19873,2025-03-09T12:43:46.788974-07:00,1003.2457885742188,10.849974,10849.974 +19874,2025-03-09T12:43:57.623317-07:00,1003.27880859375,10.834343,10834.343 +19875,2025-03-09T12:44:08.468280-07:00,1003.2945556640625,10.844963,10844.963 +19876,2025-03-09T12:44:19.309960-07:00,1003.2523193359375,10.84168,10841.68 +19877,2025-03-09T12:44:30.153958-07:00,1003.2390747070312,10.843998,10843.998 +19878,2025-03-09T12:44:40.996293-07:00,1003.2523193359375,10.842335,10842.335 +19879,2025-03-09T12:44:51.836030-07:00,1003.2446899414062,10.839737,10839.737 +19880,2025-03-09T12:45:02.682973-07:00,1003.272216796875,10.846943,10846.943 +19881,2025-03-09T12:45:13.521942-07:00,1003.2313842773438,10.838969,10838.969 +19882,2025-03-09T12:45:24.358503-07:00,1003.2115478515625,10.836561,10836.561 +19883,2025-03-09T12:45:35.199482-07:00,1003.22900390625,10.840979,10840.979 +19884,2025-03-09T12:45:46.042962-07:00,1003.2499389648438,10.84348,10843.48 +19885,2025-03-09T12:45:56.876361-07:00,1003.2276611328125,10.833399,10833.399 +19886,2025-03-09T12:46:07.709232-07:00,1003.2474975585938,10.832871,10832.871 +19887,2025-03-09T12:46:18.559007-07:00,1003.2463989257812,10.849775,10849.775 +19888,2025-03-09T12:46:29.400244-07:00,1003.25830078125,10.841237,10841.237 +19889,2025-03-09T12:46:40.235430-07:00,1003.2251586914062,10.835186,10835.186 +19890,2025-03-09T12:46:51.071973-07:00,1003.2251586914062,10.836543,10836.543 +19891,2025-03-09T12:47:01.914107-07:00,1003.19873046875,10.842134,10842.134 +19892,2025-03-09T12:47:12.762027-07:00,1003.1934204101562,10.84792,10847.92 +19893,2025-03-09T12:47:23.600260-07:00,1003.2000732421875,10.838233,10838.233 +19894,2025-03-09T12:47:34.436066-07:00,1003.2119750976562,10.835806,10835.806 +19895,2025-03-09T12:47:45.284020-07:00,1003.2199096679688,10.847954,10847.954 +19896,2025-03-09T12:47:56.125386-07:00,1003.1589965820312,10.841366,10841.366 +19897,2025-03-09T12:48:06.960233-07:00,1003.2067260742188,10.834847,10834.847 +19898,2025-03-09T12:48:17.798237-07:00,1003.2276611328125,10.838004,10838.004 +19899,2025-03-09T12:48:28.638274-07:00,1003.2067260742188,10.840037,10840.037 +19900,2025-03-09T12:48:39.467399-07:00,1003.1760864257812,10.829125,10829.125 +19901,2025-03-09T12:48:50.311578-07:00,1003.2091674804688,10.844179,10844.179 +19902,2025-03-09T12:49:01.148135-07:00,1003.1878662109375,10.836557,10836.557 +19903,2025-03-09T12:49:11.981967-07:00,1003.1680297851562,10.833832,10833.832 +19904,2025-03-09T12:49:22.820217-07:00,1003.189208984375,10.83825,10838.25 +19905,2025-03-09T12:49:33.664958-07:00,1003.1959228515625,10.844741,10844.741 +19906,2025-03-09T12:49:44.518159-07:00,1003.1760864257812,10.853201,10853.201 +19907,2025-03-09T12:49:55.350060-07:00,1003.18505859375,10.831901,10831.901 +19908,2025-03-09T12:50:06.197821-07:00,1003.1917114257812,10.847761,10847.761 +19909,2025-03-09T12:50:17.043133-07:00,1003.1795043945312,10.845312,10845.312 +19910,2025-03-09T12:50:27.879237-07:00,1003.2059936523438,10.836104,10836.104 +19911,2025-03-09T12:50:38.717117-07:00,1003.2059936523438,10.83788,10837.88 +19912,2025-03-09T12:50:49.558969-07:00,1003.2095336914062,10.841852,10841.852 +19913,2025-03-09T12:51:00.399229-07:00,1003.2359619140625,10.84026,10840.26 +19914,2025-03-09T12:51:11.246243-07:00,1003.1976318359375,10.847014,10847.014 +19915,2025-03-09T12:51:22.096276-07:00,1003.1656494140625,10.850033,10850.033 +19916,2025-03-09T12:51:32.943992-07:00,1003.157958984375,10.847716,10847.716 +19917,2025-03-09T12:51:43.781985-07:00,1003.157958984375,10.837993,10837.993 +19918,2025-03-09T12:51:54.618025-07:00,1003.1934204101562,10.83604,10836.04 +19919,2025-03-09T12:52:05.465229-07:00,1003.1826782226562,10.847204,10847.204 +19920,2025-03-09T12:52:16.306127-07:00,1003.173583984375,10.840898,10840.898 +19921,2025-03-09T12:52:27.153026-07:00,1003.1945190429688,10.846899,10846.899 +19922,2025-03-09T12:52:37.997962-07:00,1003.1272583007812,10.844936,10844.936 +19923,2025-03-09T12:52:48.833567-07:00,1003.1415405273438,10.835605,10835.605 +19924,2025-03-09T12:52:59.683793-07:00,1003.150634765625,10.850226,10850.226 +19925,2025-03-09T12:53:10.526968-07:00,1003.1638793945312,10.843175,10843.175 +19926,2025-03-09T12:53:21.369211-07:00,1003.1571655273438,10.842243,10842.243 +19927,2025-03-09T12:53:32.214307-07:00,1003.1638793945312,10.845096,10845.096 +19928,2025-03-09T12:53:43.056299-07:00,1003.1652221679688,10.841992,10841.992 +19929,2025-03-09T12:53:53.887185-07:00,1003.1398315429688,10.830886,10830.886 +19930,2025-03-09T12:54:04.736967-07:00,1003.1322021484375,10.849782,10849.782 +19931,2025-03-09T12:54:15.580972-07:00,1003.1520385742188,10.844005,10844.005 +19932,2025-03-09T12:54:26.419298-07:00,1003.1411743164062,10.838326,10838.326 +19933,2025-03-09T12:54:37.271604-07:00,1003.1554565429688,10.852306,10852.306 +19934,2025-03-09T12:54:48.120011-07:00,1003.134521484375,10.848407,10848.407 +19935,2025-03-09T12:54:58.963441-07:00,1003.1199951171875,10.84343,10843.43 +19936,2025-03-09T12:55:09.810025-07:00,1003.121337890625,10.846584,10846.584 +19937,2025-03-09T12:55:20.641584-07:00,1003.1290893554688,10.831559,10831.559 +19938,2025-03-09T12:55:31.495278-07:00,1003.1422729492188,10.853694,10853.694 +19939,2025-03-09T12:55:42.346958-07:00,1003.1279907226562,10.85168,10851.68 +19940,2025-03-09T12:55:53.193974-07:00,1003.1279907226562,10.847016,10847.016 +19941,2025-03-09T12:56:04.042011-07:00,1003.1543579101562,10.848037,10848.037 +19942,2025-03-09T12:56:14.880134-07:00,1003.1543579101562,10.838123,10838.123 +19943,2025-03-09T12:56:25.734114-07:00,1003.1554565429688,10.85398,10853.98 +19944,2025-03-09T12:56:36.580220-07:00,1003.1146850585938,10.846106,10846.106 +19945,2025-03-09T12:56:47.428276-07:00,1003.1290893554688,10.848056,10848.056 +19946,2025-03-09T12:56:58.268964-07:00,1003.1356201171875,10.840688,10840.688 +19947,2025-03-09T12:57:09.126011-07:00,1003.1422729492188,10.857047,10857.047 +19948,2025-03-09T12:57:19.968581-07:00,1003.122314453125,10.84257,10842.57 +19949,2025-03-09T12:57:30.816975-07:00,1003.1171875,10.848394,10848.394 +19950,2025-03-09T12:57:41.659585-07:00,1003.1171875,10.84261,10842.61 +19951,2025-03-09T12:57:52.502238-07:00,1003.098388671875,10.842653,10842.653 +19952,2025-03-09T12:58:03.353696-07:00,1003.0996704101562,10.851458,10851.458 +19953,2025-03-09T12:58:14.189533-07:00,1003.12060546875,10.835837,10835.837 +19954,2025-03-09T12:58:25.037423-07:00,1003.1220092773438,10.84789,10847.89 +19955,2025-03-09T12:58:35.881971-07:00,1003.1021728515625,10.844548,10844.548 +19956,2025-03-09T12:58:46.733636-07:00,1003.095458984375,10.851665,10851.665 +19957,2025-03-09T12:58:57.568705-07:00,1003.0965576171875,10.835069,10835.069 +19958,2025-03-09T12:59:08.422315-07:00,1003.0979614257812,10.85361,10853.61 +19959,2025-03-09T12:59:19.260940-07:00,1003.1122436523438,10.838625,10838.625 +19960,2025-03-09T12:59:30.102080-07:00,1003.06591796875,10.84114,10841.14 +19961,2025-03-09T12:59:40.956328-07:00,1003.072509765625,10.854248,10854.248 +19962,2025-03-09T12:59:51.799212-07:00,1003.059326171875,10.842884,10842.884 +19963,2025-03-09T13:00:02.650258-07:00,1003.059326171875,10.851046,10851.046 +19964,2025-03-09T13:00:13.492095-07:00,1003.0802612304688,10.841837,10841.837 +19965,2025-03-09T13:00:24.338158-07:00,1003.068359375,10.846063,10846.063 +19966,2025-03-09T13:00:35.187972-07:00,1003.0693969726562,10.849814,10849.814 +19967,2025-03-09T13:00:46.026971-07:00,1003.0693969726562,10.838999,10838.999 +19968,2025-03-09T13:00:56.880094-07:00,1003.0718994140625,10.853123,10853.123 +19969,2025-03-09T13:01:07.718148-07:00,1003.0321044921875,10.838054,10838.054 +19970,2025-03-09T13:01:18.566949-07:00,1003.0543823242188,10.848801,10848.801 +19971,2025-03-09T13:01:29.420968-07:00,1003.0401611328125,10.854019,10854.019 +19972,2025-03-09T13:01:40.266285-07:00,1003.069091796875,10.845317,10845.317 +19973,2025-03-09T13:01:51.113362-07:00,1003.0369262695312,10.847077,10847.077 +19974,2025-03-09T13:02:01.960398-07:00,1003.0648193359375,10.847036,10847.036 +19975,2025-03-09T13:02:12.795150-07:00,1003.0449829101562,10.834752,10834.752 +19976,2025-03-09T13:02:23.642106-07:00,1003.0592041015625,10.846956,10846.956 +19977,2025-03-09T13:02:34.485971-07:00,1003.0460205078125,10.843865,10843.865 +19978,2025-03-09T13:02:45.339029-07:00,1003.0393676757812,10.853058,10853.058 +19979,2025-03-09T13:02:56.188966-07:00,1003.0275268554688,10.849937,10849.937 +19980,2025-03-09T13:03:07.032073-07:00,1003.0328369140625,10.843107,10843.107 +19981,2025-03-09T13:03:17.886189-07:00,1003.03515625,10.854116,10854.116 +19982,2025-03-09T13:03:28.724996-07:00,1003.0021362304688,10.838807,10838.807 +19983,2025-03-09T13:03:39.584530-07:00,1003.00341796875,10.859534,10859.534 +19984,2025-03-09T13:03:50.424954-07:00,1003.0232543945312,10.840424,10840.424 +19985,2025-03-09T13:04:01.270970-07:00,1002.9912719726562,10.846016,10846.016 +19986,2025-03-09T13:04:12.123957-07:00,1002.9818725585938,10.852987,10852.987 +19987,2025-03-09T13:04:22.959441-07:00,1002.99267578125,10.835484,10835.484 +19988,2025-03-09T13:04:33.803595-07:00,1002.9751586914062,10.844154,10844.154 +19989,2025-03-09T13:04:44.653206-07:00,1003.0303344726562,10.849611,10849.611 +19990,2025-03-09T13:04:55.494961-07:00,1003.0226440429688,10.841755,10841.755 +19991,2025-03-09T13:05:06.344517-07:00,1003.035888671875,10.849556,10849.556 +19992,2025-03-09T13:05:17.182974-07:00,1003.0264282226562,10.838457,10838.457 +19993,2025-03-09T13:05:28.033606-07:00,1002.9999389648438,10.850632,10850.632 +19994,2025-03-09T13:05:38.886276-07:00,1003.0420532226562,10.85267,10852.67 +19995,2025-03-09T13:05:49.772642-07:00,1003.0486450195312,10.886366,10886.366 +19996,2025-03-09T13:06:00.618792-07:00,1003.0037231445312,10.84615,10846.15 +19997,2025-03-09T13:06:11.465731-07:00,1003.054931640625,10.846939,10846.939 +19998,2025-03-09T13:06:22.310727-07:00,1003.03125,10.844996,10844.996 +19999,2025-03-09T13:06:33.166822-07:00,1002.993896484375,10.856095,10856.095 +20000,2025-03-09T13:06:44.008186-07:00,1002.98876953125,10.841364,10841.364 +20001,2025-03-09T13:06:54.858741-07:00,1002.9765625,10.850555,10850.555 +20002,2025-03-09T13:07:05.701165-07:00,1002.9656982421875,10.842424,10842.424 +20003,2025-03-09T13:07:16.544734-07:00,1002.964599609375,10.843569,10843.569 +20004,2025-03-09T13:07:27.394998-07:00,1002.9855346679688,10.850264,10850.264 +20005,2025-03-09T13:07:38.247738-07:00,1002.9656982421875,10.85274,10852.74 +20006,2025-03-09T13:07:49.090722-07:00,1002.954833984375,10.842984,10842.984 +20007,2025-03-09T13:07:59.942741-07:00,1002.939208984375,10.852019,10852.019 +20008,2025-03-09T13:08:10.785464-07:00,1002.9472045898438,10.842723,10842.723 +20009,2025-03-09T13:08:21.636067-07:00,1002.941650390625,10.850603,10850.603 +20010,2025-03-09T13:08:32.480739-07:00,1002.941650390625,10.844672,10844.672 +20011,2025-03-09T13:08:43.327733-07:00,1002.954833984375,10.846994,10846.994 +20012,2025-03-09T13:08:54.172178-07:00,1002.8953247070312,10.844445,10844.445 +20013,2025-03-09T13:09:05.020298-07:00,1002.9207153320312,10.84812,10848.12 +20014,2025-03-09T13:09:15.859969-07:00,1002.91650390625,10.839671,10839.671 +20015,2025-03-09T13:09:26.705994-07:00,1002.9349975585938,10.846025,10846.025 +20016,2025-03-09T13:09:37.565090-07:00,1002.9495849609375,10.859096,10859.096 +20017,2025-03-09T13:09:48.411974-07:00,1002.91650390625,10.846884,10846.884 +20018,2025-03-09T13:09:59.257914-07:00,1002.9451293945312,10.84594,10845.94 +20019,2025-03-09T13:10:10.107722-07:00,1002.9307861328125,10.849808,10849.808 +20020,2025-03-09T13:10:20.955791-07:00,1002.9862670898438,10.848069,10848.069 +20021,2025-03-09T13:10:31.811733-07:00,1002.931884765625,10.855942,10855.942 +20022,2025-03-09T13:10:42.667964-07:00,1002.947509765625,10.856231,10856.231 +20023,2025-03-09T13:10:53.512821-07:00,1002.9342041015625,10.844857,10844.857 +20024,2025-03-09T13:11:04.358099-07:00,1002.947509765625,10.845278,10845.278 +20025,2025-03-09T13:11:15.211752-07:00,1002.9011840820312,10.853653,10853.653 +20026,2025-03-09T13:11:26.069738-07:00,1002.9210815429688,10.857986,10857.986 +20027,2025-03-09T13:11:36.917286-07:00,1002.92236328125,10.847548,10847.548 +20028,2025-03-09T13:11:47.781769-07:00,1002.9422607421875,10.864483,10864.483 +20029,2025-03-09T13:11:58.629929-07:00,1002.9432983398438,10.84816,10848.16 +20030,2025-03-09T13:12:09.483307-07:00,1002.8959350585938,10.853378,10853.378 +20031,2025-03-09T13:12:20.325175-07:00,1002.903564453125,10.841868,10841.868 +20032,2025-03-09T13:12:31.170957-07:00,1002.9432983398438,10.845782,10845.782 +20033,2025-03-09T13:12:42.024852-07:00,1002.931396484375,10.853895,10853.895 +20034,2025-03-09T13:12:52.867730-07:00,1002.8861083984375,10.842878,10842.878 +20035,2025-03-09T13:13:03.718006-07:00,1002.9404907226562,10.850276,10850.276 +20036,2025-03-09T13:13:14.560770-07:00,1002.9373168945312,10.842764,10842.764 +20037,2025-03-09T13:13:25.414736-07:00,1002.9296875,10.853966,10853.966 +20038,2025-03-09T13:13:36.259069-07:00,1002.876708984375,10.844333,10844.333 +20039,2025-03-09T13:13:47.107292-07:00,1002.9386596679688,10.848223,10848.223 +20040,2025-03-09T13:13:57.958888-07:00,1002.9386596679688,10.851596,10851.596 +20041,2025-03-09T13:13:58.853213-07:00,1002.9464111328125,0.894325,894.325 +20042,2025-03-09T13:14:08.807129-07:00,1002.8856811523438,9.953916,9953.916 +20043,2025-03-09T13:14:19.664364-07:00,1002.8602905273438,10.857235,10857.235 +20044,2025-03-09T13:14:30.511420-07:00,1002.8856811523438,10.847056,10847.056 +20045,2025-03-09T13:14:41.359953-07:00,1002.833740234375,10.848533,10848.533 +20046,2025-03-09T13:14:52.214738-07:00,1002.8668823242188,10.854785,10854.785 +20047,2025-03-09T13:15:03.052864-07:00,1002.8790893554688,10.838126,10838.126 +20048,2025-03-09T13:15:13.909718-07:00,1002.8577880859375,10.856854,10856.854 +20049,2025-03-09T13:15:24.752346-07:00,1002.8247680664062,10.842628,10842.628 +20050,2025-03-09T13:15:35.594802-07:00,1002.8247680664062,10.842456,10842.456 +20051,2025-03-09T13:15:46.446015-07:00,1002.845947265625,10.851213,10851.213 +20052,2025-03-09T13:15:57.292733-07:00,1002.88330078125,10.846718,10846.718 +20053,2025-03-09T13:16:08.145943-07:00,1002.82373046875,10.85321,10853.21 +20054,2025-03-09T13:16:18.990625-07:00,1002.8965454101562,10.844682,10844.682 +20055,2025-03-09T13:16:29.840639-07:00,1002.87109375,10.850014,10850.014 +20056,2025-03-09T13:16:40.690864-07:00,1002.82373046875,10.850225,10850.225 +20057,2025-03-09T13:16:51.546823-07:00,1002.8379516601562,10.855959,10855.959 +20058,2025-03-09T13:17:02.396278-07:00,1002.8104858398438,10.849455,10849.455 +20059,2025-03-09T13:17:13.245923-07:00,1002.864501953125,10.849645,10849.645 +20060,2025-03-09T13:17:24.087212-07:00,1002.8314208984375,10.841289,10841.289 +20061,2025-03-09T13:17:34.938721-07:00,1002.7586059570312,10.851509,10851.509 +20062,2025-03-09T13:17:45.779740-07:00,1002.7971801757812,10.841019,10841.019 +20063,2025-03-09T13:17:56.629981-07:00,1002.7940673828125,10.850241,10850.241 +20064,2025-03-09T13:18:07.480927-07:00,1002.7982788085938,10.850946,10850.946 +20065,2025-03-09T13:18:18.326085-07:00,1002.77978515625,10.845158,10845.158 +20066,2025-03-09T13:18:29.183904-07:00,1002.7717895507812,10.857819,10857.819 +20067,2025-03-09T13:18:40.022769-07:00,1002.7832641601562,10.838865,10838.865 +20068,2025-03-09T13:18:50.876345-07:00,1002.7996215820312,10.853576,10853.576 +20069,2025-03-09T13:19:01.719753-07:00,1002.7567138671875,10.843408,10843.408 +20070,2025-03-09T13:19:12.564127-07:00,1002.8153076171875,10.844374,10844.374 +20071,2025-03-09T13:19:23.413286-07:00,1002.7410888671875,10.849159,10849.159 +20072,2025-03-09T13:19:34.256988-07:00,1002.7490844726562,10.843702,10843.702 +20073,2025-03-09T13:19:45.106298-07:00,1002.7581176757812,10.84931,10849.31 +20074,2025-03-09T13:19:55.962050-07:00,1002.7935791015625,10.855752,10855.752 +20075,2025-03-09T13:20:06.813767-07:00,1002.7567138671875,10.851717,10851.717 +20076,2025-03-09T13:20:17.661731-07:00,1002.8054809570312,10.847964,10847.964 +20077,2025-03-09T13:20:28.511945-07:00,1002.7977905273438,10.850214,10850.214 +20078,2025-03-09T13:20:39.365961-07:00,1002.7581176757812,10.854016,10854.016 +20079,2025-03-09T13:20:50.214733-07:00,1002.73828125,10.848772,10848.772 +20080,2025-03-09T13:21:01.060814-07:00,1002.7681884765625,10.846081,10846.081 +20081,2025-03-09T13:21:11.907407-07:00,1002.7406005859375,10.846593,10846.593 +20082,2025-03-09T13:21:22.751038-07:00,1002.7870483398438,10.843631,10843.631 +20083,2025-03-09T13:21:33.596141-07:00,1002.7647094726562,10.845103,10845.103 +20084,2025-03-09T13:21:44.444918-07:00,1002.7672119140625,10.848777,10848.777 +20085,2025-03-09T13:21:55.293738-07:00,1002.7681884765625,10.84882,10848.82 +20086,2025-03-09T13:22:06.133058-07:00,1002.7459106445312,10.83932,10839.32 +20087,2025-03-09T13:22:16.990013-07:00,1002.7472534179688,10.856955,10856.955 +20088,2025-03-09T13:22:27.830853-07:00,1002.7560424804688,10.84084,10840.84 +20089,2025-03-09T13:22:38.679313-07:00,1002.7550048828125,10.84846,10848.46 +20090,2025-03-09T13:22:49.519724-07:00,1002.7560424804688,10.840411,10840.411 +20091,2025-03-09T13:23:00.366623-07:00,1002.7284545898438,10.846899,10846.899 +20092,2025-03-09T13:23:11.222736-07:00,1002.7560424804688,10.856113,10856.113 +20093,2025-03-09T13:23:22.070736-07:00,1002.7681884765625,10.848,10848.0 +20094,2025-03-09T13:23:32.914738-07:00,1002.7550048828125,10.844002,10844.002 +20095,2025-03-09T13:23:43.762241-07:00,1002.7550048828125,10.847503,10847.503 +20096,2025-03-09T13:23:54.615746-07:00,1002.6897583007812,10.853505,10853.505 +20097,2025-03-09T13:24:05.469930-07:00,1002.7284545898438,10.854184,10854.184 +20098,2025-03-09T13:24:16.320057-07:00,1002.7274169921875,10.850127,10850.127 +20099,2025-03-09T13:24:27.160962-07:00,1002.7218627929688,10.840905,10840.905 +20100,2025-03-09T13:24:38.021402-07:00,1002.736083984375,10.86044,10860.44 +20101,2025-03-09T13:24:48.869205-07:00,1002.7295532226562,10.847803,10847.803 +20102,2025-03-09T13:24:59.715038-07:00,1002.735107421875,10.845833,10845.833 +20103,2025-03-09T13:25:10.558894-07:00,1002.736083984375,10.843856,10843.856 +20104,2025-03-09T13:25:21.403323-07:00,1002.7681884765625,10.844429,10844.429 +20105,2025-03-09T13:25:32.256131-07:00,1002.7507934570312,10.852808,10852.808 +20106,2025-03-09T13:25:43.109057-07:00,1002.7493896484375,10.852926,10852.926 +20107,2025-03-09T13:25:53.964494-07:00,1002.7117309570312,10.855437,10855.437 +20108,2025-03-09T13:26:04.819571-07:00,1002.7406005859375,10.855077,10855.077 +20109,2025-03-09T13:26:15.660572-07:00,1002.70751953125,10.841001,10841.001 +20110,2025-03-09T13:26:26.508964-07:00,1002.77587890625,10.848392,10848.392 +20111,2025-03-09T13:26:37.353431-07:00,1002.75390625,10.844467,10844.467 +20112,2025-03-09T13:26:48.212947-07:00,1002.69189453125,10.859516,10859.516 +20113,2025-03-09T13:26:59.058883-07:00,1002.7128295898438,10.845936,10845.936 +20114,2025-03-09T13:27:09.911738-07:00,1002.7393188476562,10.852855,10852.855 +20115,2025-03-09T13:27:20.754991-07:00,1002.7051391601562,10.843253,10843.253 +20116,2025-03-09T13:27:31.608347-07:00,1002.729248046875,10.853356,10853.356 +20117,2025-03-09T13:27:42.459730-07:00,1002.717041015625,10.851383,10851.383 +20118,2025-03-09T13:27:53.318999-07:00,1002.717041015625,10.859269,10859.269 +20119,2025-03-09T13:28:04.159050-07:00,1002.70263671875,10.840051,10840.051 +20120,2025-03-09T13:28:15.007225-07:00,1002.6592407226562,10.848175,10848.175 +20121,2025-03-09T13:28:25.847902-07:00,1002.7068481445312,10.840677,10840.677 +20122,2025-03-09T13:28:36.701733-07:00,1002.7212524414062,10.853831,10853.831 +20123,2025-03-09T13:28:47.547742-07:00,1002.67138671875,10.846009,10846.009 +20124,2025-03-09T13:28:58.389980-07:00,1002.6724853515625,10.842238,10842.238 +20125,2025-03-09T13:29:09.231100-07:00,1002.6682739257812,10.84112,10841.12 +20126,2025-03-09T13:29:20.084998-07:00,1002.6814575195312,10.853898,10853.898 +20127,2025-03-09T13:29:30.928787-07:00,1002.6448974609375,10.843789,10843.789 +20128,2025-03-09T13:29:41.771734-07:00,1002.6592407226562,10.842947,10842.947 +20129,2025-03-09T13:29:52.614873-07:00,1002.6327514648438,10.843139,10843.139 +20130,2025-03-09T13:30:03.461802-07:00,1002.59716796875,10.846929,10846.929 +20131,2025-03-09T13:30:14.312303-07:00,1002.6317138671875,10.850501,10850.501 +20132,2025-03-09T13:30:25.167067-07:00,1002.6292114257812,10.854764,10854.764 +20133,2025-03-09T13:30:36.011884-07:00,1002.6515502929688,10.844817,10844.817 +20134,2025-03-09T13:30:46.852081-07:00,1002.6358642578125,10.840197,10840.197 +20135,2025-03-09T13:30:57.707733-07:00,1002.6400756835938,10.855652,10855.652 +20136,2025-03-09T13:31:08.550897-07:00,1002.6278686523438,10.843164,10843.164 +20137,2025-03-09T13:31:19.405786-07:00,1002.6212768554688,10.854889,10854.889 +20138,2025-03-09T13:31:30.248894-07:00,1002.5989990234375,10.843108,10843.108 +20139,2025-03-09T13:31:41.097065-07:00,1002.59375,10.848171,10848.171 +20140,2025-03-09T13:31:51.949362-07:00,1002.5923461914062,10.852297,10852.297 +20141,2025-03-09T13:32:02.799081-07:00,1002.5923461914062,10.849719,10849.719 +20142,2025-03-09T13:32:13.644863-07:00,1002.6519775390625,10.845782,10845.782 +20143,2025-03-09T13:32:24.497012-07:00,1002.6121826171875,10.852149,10852.149 +20144,2025-03-09T13:32:35.342736-07:00,1002.5923461914062,10.845724,10845.724 +20145,2025-03-09T13:32:46.194737-07:00,1002.623046875,10.852001,10852.001 +20146,2025-03-09T13:32:57.038739-07:00,1002.623046875,10.844002,10844.002 +20147,2025-03-09T13:33:07.892992-07:00,1002.623046875,10.854253,10854.253 +20148,2025-03-09T13:33:18.736009-07:00,1002.582275390625,10.843017,10843.017 +20149,2025-03-09T13:33:29.590083-07:00,1002.607421875,10.854074,10854.074 +20150,2025-03-09T13:33:40.444067-07:00,1002.6339111328125,10.853984,10853.984 +20151,2025-03-09T13:33:51.285891-07:00,1002.6007690429688,10.841824,10841.824 +20152,2025-03-09T13:34:02.131857-07:00,1002.5864868164062,10.845966,10845.966 +20153,2025-03-09T13:34:12.978739-07:00,1002.6007690429688,10.846882,10846.882 +20154,2025-03-09T13:34:23.828877-07:00,1002.6118774414062,10.850138,10850.138 +20155,2025-03-09T13:34:34.672328-07:00,1002.58544921875,10.843451,10843.451 +20156,2025-03-09T13:34:45.524081-07:00,1002.607421875,10.851753,10851.753 +20157,2025-03-09T13:34:56.362745-07:00,1002.5722045898438,10.838664,10838.664 +20158,2025-03-09T13:35:07.211428-07:00,1002.647216796875,10.848683,10848.683 +20159,2025-03-09T13:35:18.055410-07:00,1002.553466796875,10.843982,10843.982 +20160,2025-03-09T13:35:28.898751-07:00,1002.5457153320312,10.843341,10843.341 +20161,2025-03-09T13:35:39.742007-07:00,1002.6105346679688,10.843256,10843.256 +20162,2025-03-09T13:35:50.585777-07:00,1002.638427734375,10.84377,10843.77 +20163,2025-03-09T13:36:01.439787-07:00,1002.5829467773438,10.85401,10854.01 +20164,2025-03-09T13:36:12.288726-07:00,1002.5565795898438,10.848939,10848.939 +20165,2025-03-09T13:36:23.138847-07:00,1002.5631103515625,10.850121,10850.121 +20166,2025-03-09T13:36:33.979712-07:00,1002.5697631835938,10.840865,10840.865 +20167,2025-03-09T13:36:44.829396-07:00,1002.6029052734375,10.849684,10849.684 +20168,2025-03-09T13:36:55.678057-07:00,1002.5973510742188,10.848661,10848.661 +20169,2025-03-09T13:37:06.532139-07:00,1002.6160888671875,10.854082,10854.082 +20170,2025-03-09T13:37:17.383976-07:00,1002.5882568359375,10.851837,10851.837 +20171,2025-03-09T13:37:28.230260-07:00,1002.561767578125,10.846284,10846.284 +20172,2025-03-09T13:37:39.070724-07:00,1002.6015625,10.840464,10840.464 +20173,2025-03-09T13:37:49.921730-07:00,1002.5962524414062,10.851006,10851.006 +20174,2025-03-09T13:38:00.757990-07:00,1002.5673217773438,10.83626,10836.26 +20175,2025-03-09T13:38:11.612791-07:00,1002.6336059570312,10.854801,10854.801 +20176,2025-03-09T13:38:22.463736-07:00,1002.6336059570312,10.850945,10850.945 +20177,2025-03-09T13:38:33.312992-07:00,1002.6732788085938,10.849256,10849.256 +20178,2025-03-09T13:38:44.153773-07:00,1002.6189575195312,10.840781,10840.781 +20179,2025-03-09T13:38:55.000737-07:00,1002.6123657226562,10.846964,10846.964 +20180,2025-03-09T13:39:05.851043-07:00,1002.6046752929688,10.850306,10850.306 +20181,2025-03-09T13:39:16.683137-07:00,1002.571533203125,10.832094,10832.094 +20182,2025-03-09T13:39:27.532036-07:00,1002.5980224609375,10.848899,10848.899 +20183,2025-03-09T13:39:38.375874-07:00,1002.5990600585938,10.843838,10843.838 +20184,2025-03-09T13:39:49.224707-07:00,1002.5792236328125,10.848833,10848.833 +20185,2025-03-09T13:40:00.064859-07:00,1002.5938110351562,10.840152,10840.152 +20186,2025-03-09T13:40:10.909466-07:00,1002.5726318359375,10.844607,10844.607 +20187,2025-03-09T13:40:21.753046-07:00,1002.5650024414062,10.84358,10843.58 +20188,2025-03-09T13:40:32.595773-07:00,1002.603271484375,10.842727,10842.727 +20189,2025-03-09T13:40:43.445966-07:00,1002.5781860351562,10.850193,10850.193 +20190,2025-03-09T13:40:54.295807-07:00,1002.5980224609375,10.849841,10849.841 +20191,2025-03-09T13:41:05.143973-07:00,1002.5848388671875,10.848166,10848.166 +20192,2025-03-09T13:41:15.991783-07:00,1002.5516967773438,10.84781,10847.81 +20193,2025-03-09T13:41:26.839040-07:00,1002.5384521484375,10.847257,10847.257 +20194,2025-03-09T13:41:37.689552-07:00,1002.576904296875,10.850512,10850.512 +20195,2025-03-09T13:41:48.528716-07:00,1002.5197143554688,10.839164,10839.164 +20196,2025-03-09T13:41:59.370724-07:00,1002.55029296875,10.842008,10842.008 +20197,2025-03-09T13:42:10.217970-07:00,1002.5293579101562,10.847246,10847.246 +20198,2025-03-09T13:42:21.066732-07:00,1002.5304565429688,10.848762,10848.762 +20199,2025-03-09T13:42:31.916739-07:00,1002.5148315429688,10.850007,10850.007 +20200,2025-03-09T13:42:42.764783-07:00,1002.5293579101562,10.848044,10848.044 +20201,2025-03-09T13:42:53.609574-07:00,1002.5029907226562,10.844791,10844.791 +20202,2025-03-09T13:43:04.467069-07:00,1002.509521484375,10.857495,10857.495 +20203,2025-03-09T13:43:15.309445-07:00,1002.5360717773438,10.842376,10842.376 +20204,2025-03-09T13:43:26.154813-07:00,1002.5625,10.845368,10845.368 +20205,2025-03-09T13:43:37.009254-07:00,1002.5479736328125,10.854441,10854.441 +20206,2025-03-09T13:43:47.852081-07:00,1002.5479736328125,10.842827,10842.827 +20207,2025-03-09T13:43:58.695326-07:00,1002.53466796875,10.843245,10843.245 +20208,2025-03-09T13:44:09.537755-07:00,1002.5758056640625,10.842429,10842.429 +20209,2025-03-09T13:44:20.375739-07:00,1002.546875,10.837984,10837.984 +20210,2025-03-09T13:44:31.225872-07:00,1002.54931640625,10.850133,10850.133 +20211,2025-03-09T13:44:42.077961-07:00,1002.555908203125,10.852089,10852.089 +20212,2025-03-09T13:44:52.921741-07:00,1002.5635986328125,10.84378,10843.78 +20213,2025-03-09T13:45:03.762275-07:00,1002.537109375,10.840534,10840.534 +20214,2025-03-09T13:45:14.608125-07:00,1002.528076171875,10.84585,10845.85 +20215,2025-03-09T13:45:25.452093-07:00,1002.509521484375,10.843968,10843.968 +20216,2025-03-09T13:45:36.295047-07:00,1002.5148315429688,10.842954,10842.954 +20217,2025-03-09T13:45:47.138399-07:00,1002.496337890625,10.843352,10843.352 +20218,2025-03-09T13:45:57.979626-07:00,1002.5228271484375,10.841227,10841.227 +20219,2025-03-09T13:46:08.815878-07:00,1002.54931640625,10.836252,10836.252 +20220,2025-03-09T13:46:19.660735-07:00,1002.4751586914062,10.844857,10844.857 +20221,2025-03-09T13:46:30.509739-07:00,1002.4751586914062,10.849004,10849.004 +20222,2025-03-09T13:46:41.357165-07:00,1002.4674072265625,10.847426,10847.426 +20223,2025-03-09T13:46:52.207049-07:00,1002.4618530273438,10.849884,10849.884 +20224,2025-03-09T13:47:03.048867-07:00,1002.4210815429688,10.841818,10841.818 +20225,2025-03-09T13:47:13.894886-07:00,1002.4698486328125,10.846019,10846.019 +20226,2025-03-09T13:47:24.735721-07:00,1002.5172119140625,10.840835,10840.835 +20227,2025-03-09T13:47:35.580075-07:00,1002.5081787109375,10.844354,10844.354 +20228,2025-03-09T13:47:46.432671-07:00,1002.4698486328125,10.852596,10852.596 +20229,2025-03-09T13:47:57.282169-07:00,1002.470947265625,10.849498,10849.498 +20230,2025-03-09T13:48:08.120741-07:00,1002.5106201171875,10.838572,10838.572 +20231,2025-03-09T13:48:18.973715-07:00,1002.4684448242188,10.852974,10852.974 +20232,2025-03-09T13:48:29.824933-07:00,1002.481689453125,10.851218,10851.218 +20233,2025-03-09T13:48:40.670736-07:00,1002.4674072265625,10.845803,10845.803 +20234,2025-03-09T13:48:51.517730-07:00,1002.5015869140625,10.846994,10846.994 +20235,2025-03-09T13:49:02.366786-07:00,1002.4542236328125,10.849056,10849.056 +20236,2025-03-09T13:49:13.224450-07:00,1002.4462280273438,10.857664,10857.664 +20237,2025-03-09T13:49:24.069035-07:00,1002.4475708007812,10.844585,10844.585 +20238,2025-03-09T13:49:34.920302-07:00,1002.4395141601562,10.851267,10851.267 +20239,2025-03-09T13:49:45.766044-07:00,1002.4263305664062,10.845742,10845.742 +20240,2025-03-09T13:49:56.609005-07:00,1002.4305419921875,10.842961,10842.961 +20241,2025-03-09T13:50:07.451878-07:00,1002.4305419921875,10.842873,10842.873 +20242,2025-03-09T13:50:18.295079-07:00,1002.3975219726562,10.843201,10843.201 +20243,2025-03-09T13:50:29.149024-07:00,1002.404052734375,10.853945,10853.945 +20244,2025-03-09T13:50:39.993193-07:00,1002.435791015625,10.844169,10844.169 +20245,2025-03-09T13:50:50.840741-07:00,1002.4277954101562,10.847548,10847.548 +20246,2025-03-09T13:51:01.689838-07:00,1002.3870239257812,10.849097,10849.097 +20247,2025-03-09T13:51:12.532733-07:00,1002.41455078125,10.842895,10842.895 +20248,2025-03-09T13:51:23.382733-07:00,1002.373779296875,10.85,10850.0 +20249,2025-03-09T13:51:34.233720-07:00,1002.3936767578125,10.850987,10850.987 +20250,2025-03-09T13:51:45.082866-07:00,1002.4135131835938,10.849146,10849.146 +20251,2025-03-09T13:51:55.927709-07:00,1002.3978271484375,10.844843,10844.843 +20252,2025-03-09T13:52:06.781034-07:00,1002.4058837890625,10.853325,10853.325 +20253,2025-03-09T13:52:17.632602-07:00,1002.3756103515625,10.851568,10851.568 +20254,2025-03-09T13:52:28.467747-07:00,1002.3348388671875,10.835145,10835.145 +20255,2025-03-09T13:52:39.322082-07:00,1002.3689575195312,10.854335,10854.335 +20256,2025-03-09T13:52:50.155057-07:00,1002.3612670898438,10.832975,10832.975 +20257,2025-03-09T13:53:01.005009-07:00,1002.3135986328125,10.849952,10849.952 +20258,2025-03-09T13:53:11.852105-07:00,1002.3070068359375,10.847096,10847.096 +20259,2025-03-09T13:53:22.699737-07:00,1002.2979736328125,10.847632,10847.632 +20260,2025-03-09T13:53:33.544054-07:00,1002.3334350585938,10.844317,10844.317 +20261,2025-03-09T13:53:44.391007-07:00,1002.30029296875,10.846953,10846.953 +20262,2025-03-09T13:53:55.232738-07:00,1002.305908203125,10.841731,10841.731 +20263,2025-03-09T13:54:06.079064-07:00,1002.3111572265625,10.846326,10846.326 +20264,2025-03-09T13:54:16.920892-07:00,1002.3178100585938,10.841828,10841.828 +20265,2025-03-09T13:54:27.765728-07:00,1002.3311157226562,10.844836,10844.836 +20266,2025-03-09T13:54:38.607969-07:00,1002.2703857421875,10.842241,10842.241 +20267,2025-03-09T13:54:49.452038-07:00,1002.2240600585938,10.844069,10844.069 +20268,2025-03-09T13:55:00.294130-07:00,1002.2028198242188,10.842092,10842.092 +20269,2025-03-09T13:55:11.138733-07:00,1002.231689453125,10.844603,10844.603 +20270,2025-03-09T13:55:21.987913-07:00,1002.2557983398438,10.84918,10849.18 +20271,2025-03-09T13:55:32.834734-07:00,1002.2637329101562,10.846821,10846.821 +20272,2025-03-09T13:55:43.674743-07:00,1002.2492065429688,10.840009,10840.009 +20273,2025-03-09T13:55:54.521311-07:00,1002.275634765625,10.846568,10846.568 +20274,2025-03-09T13:56:05.363981-07:00,1002.2557983398438,10.84267,10842.67 +20275,2025-03-09T13:56:16.199976-07:00,1002.2732543945312,10.835995,10835.995 +20276,2025-03-09T13:56:27.050739-07:00,1002.2823486328125,10.850763,10850.763 +20277,2025-03-09T13:56:37.895040-07:00,1002.2547607421875,10.844301,10844.301 +20278,2025-03-09T13:56:48.737071-07:00,1002.2547607421875,10.842031,10842.031 +20279,2025-03-09T13:56:59.582787-07:00,1002.2324829101562,10.845716,10845.716 +20280,2025-03-09T13:57:10.422734-07:00,1002.2864990234375,10.839947,10839.947 +20281,2025-03-09T13:57:21.265739-07:00,1002.2467041015625,10.843005,10843.005 +20282,2025-03-09T13:57:32.109303-07:00,1002.2666625976562,10.843564,10843.564 +20283,2025-03-09T13:57:42.952009-07:00,1002.287841796875,10.842706,10842.706 +20284,2025-03-09T13:57:53.801986-07:00,1002.2523193359375,10.849977,10849.977 +20285,2025-03-09T13:58:04.632734-07:00,1002.2467041015625,10.830748,10830.748 +20286,2025-03-09T13:58:15.481901-07:00,1002.2390747070312,10.849167,10849.167 +20287,2025-03-09T13:58:26.318735-07:00,1002.2390747070312,10.836834,10836.834 +20288,2025-03-09T13:58:37.167730-07:00,1002.2457275390625,10.848995,10848.995 +20289,2025-03-09T13:58:48.010727-07:00,1002.2523193359375,10.842997,10842.997 +20290,2025-03-09T13:58:58.853732-07:00,1002.2168579101562,10.843005,10843.005 +20291,2025-03-09T13:59:09.698056-07:00,1002.197998046875,10.844324,10844.324 +20292,2025-03-09T13:59:20.538932-07:00,1002.1771240234375,10.840876,10840.876 +20293,2025-03-09T13:59:31.379328-07:00,1002.1715698242188,10.840396,10840.396 +20294,2025-03-09T13:59:42.221800-07:00,1002.1847534179688,10.842472,10842.472 +20295,2025-03-09T13:59:53.054065-07:00,1002.2101440429688,10.832265,10832.265 +20296,2025-03-09T14:00:03.895943-07:00,1002.18896484375,10.841878,10841.878 +20297,2025-03-09T14:00:14.738859-07:00,1002.2047119140625,10.842916,10842.916 +20298,2025-03-09T14:00:25.588069-07:00,1002.1715698242188,10.84921,10849.21 +20299,2025-03-09T14:00:36.430057-07:00,1002.166259765625,10.841988,10841.988 +20300,2025-03-09T14:00:47.270892-07:00,1002.1847534179688,10.840835,10840.835 +20301,2025-03-09T14:00:58.118618-07:00,1002.2136840820312,10.847726,10847.726 +20302,2025-03-09T14:01:08.965731-07:00,1002.2017822265625,10.847113,10847.113 +20303,2025-03-09T14:01:19.803761-07:00,1002.212646484375,10.83803,10838.03 +20304,2025-03-09T14:01:30.640894-07:00,1002.1951293945312,10.837133,10837.133 +20305,2025-03-09T14:01:41.488969-07:00,1002.181884765625,10.848075,10848.075 +20306,2025-03-09T14:01:52.328728-07:00,1002.1951293945312,10.839759,10839.759 +20307,2025-03-09T14:02:03.172009-07:00,1002.1829833984375,10.843281,10843.281 +20308,2025-03-09T14:02:14.015171-07:00,1002.1687622070312,10.843162,10843.162 +20309,2025-03-09T14:02:24.849737-07:00,1002.1896362304688,10.834566,10834.566 +20310,2025-03-09T14:02:35.689961-07:00,1002.1687622070312,10.840224,10840.224 +20311,2025-03-09T14:02:46.530818-07:00,1002.1710815429688,10.840857,10840.857 +20312,2025-03-09T14:02:57.373821-07:00,1002.1620483398438,10.843003,10843.003 +20313,2025-03-09T14:03:08.211729-07:00,1002.1962280273438,10.837908,10837.908 +20314,2025-03-09T14:03:19.059715-07:00,1002.1578369140625,10.847986,10847.986 +20315,2025-03-09T14:03:29.898109-07:00,1002.1710815429688,10.838394,10838.394 +20316,2025-03-09T14:03:40.746043-07:00,1002.111572265625,10.847934,10847.934 +20317,2025-03-09T14:03:51.585435-07:00,1002.16455078125,10.839392,10839.392 +20318,2025-03-09T14:04:02.430743-07:00,1002.1414794921875,10.845308,10845.308 +20319,2025-03-09T14:04:13.264745-07:00,1002.1337280273438,10.834002,10834.002 +20320,2025-03-09T14:04:24.107015-07:00,1002.0951538085938,10.84227,10842.27 +20321,2025-03-09T14:04:34.952732-07:00,1002.0875244140625,10.845717,10845.717 +20322,2025-03-09T14:04:45.787818-07:00,1002.1031494140625,10.835086,10835.086 +20323,2025-03-09T14:04:56.627139-07:00,1002.117431640625,10.839321,10839.321 +20324,2025-03-09T14:05:07.473819-07:00,1002.080078125,10.84668,10846.68 +20325,2025-03-09T14:05:18.307738-07:00,1002.024658203125,10.833919,10833.919 +20326,2025-03-09T14:05:29.155021-07:00,1002.0814208984375,10.847283,10847.283 +20327,2025-03-09T14:05:39.992663-07:00,1002.0901489257812,10.837642,10837.642 +20328,2025-03-09T14:05:51.012359-07:00,1002.0783081054688,11.019696,11019.696 +20329,2025-03-09T14:06:01.844381-07:00,1002.0531005859375,10.832022,10832.022 +20330,2025-03-09T14:06:12.688397-07:00,1002.056884765625,10.844016,10844.016 +20331,2025-03-09T14:06:23.532647-07:00,1002.0792236328125,10.84425,10844.25 +20332,2025-03-09T14:06:34.384693-07:00,1002.0485229492188,10.852046,10852.046 +20333,2025-03-09T14:06:45.228421-07:00,1002.0850830078125,10.843728,10843.728 +20334,2025-03-09T14:06:56.081747-07:00,1002.0599365234375,10.853326,10853.326 +20335,2025-03-09T14:07:06.924452-07:00,1002.0964965820312,10.842705,10842.705 +20336,2025-03-09T14:07:17.769604-07:00,1002.0445556640625,10.845152,10845.152 +20337,2025-03-09T14:07:28.611819-07:00,1002.0072631835938,10.842215,10842.215 +20338,2025-03-09T14:07:39.455386-07:00,1002.041748046875,10.843567,10843.567 +20339,2025-03-09T14:07:50.309071-07:00,1002.0253295898438,10.853685,10853.685 +20340,2025-03-09T14:08:01.151393-07:00,1002.0409545898438,10.842322,10842.322 +20341,2025-03-09T14:08:11.984678-07:00,1002.09765625,10.833285,10833.285 +20342,2025-03-09T14:08:22.828624-07:00,1002.0084228515625,10.843946,10843.946 +20343,2025-03-09T14:08:33.670404-07:00,1002.0254516601562,10.84178,10841.78 +20344,2025-03-09T14:08:44.519376-07:00,1002.0254516601562,10.848972,10848.972 +20345,2025-03-09T14:08:55.368392-07:00,1002.0354614257812,10.849016,10849.016 +20346,2025-03-09T14:09:06.209398-07:00,1001.9981079101562,10.841006,10841.006 +20347,2025-03-09T14:09:17.054756-07:00,1002.040283203125,10.845358,10845.358 +20348,2025-03-09T14:09:27.896486-07:00,1002.0270385742188,10.84173,10841.73 +20349,2025-03-09T14:09:38.738584-07:00,1002.0106201171875,10.842098,10842.098 +20350,2025-03-09T14:09:49.572390-07:00,1002.0040893554688,10.833806,10833.806 +20351,2025-03-09T14:10:00.415716-07:00,1002.0702514648438,10.843326,10843.326 +20352,2025-03-09T14:10:11.258558-07:00,1002.0593872070312,10.842842,10842.842 +20353,2025-03-09T14:10:22.101385-07:00,1001.9854736328125,10.842827,10842.827 +20354,2025-03-09T14:10:32.944617-07:00,1002.046142578125,10.843232,10843.232 +20355,2025-03-09T14:10:43.799404-07:00,1002.048583984375,10.854787,10854.787 +20356,2025-03-09T14:10:54.636753-07:00,1002.0575561523438,10.837349,10837.349 +20357,2025-03-09T14:11:05.485058-07:00,1002.02099609375,10.848305,10848.305 +20358,2025-03-09T14:11:16.334383-07:00,1002.0167846679688,10.849325,10849.325 +20359,2025-03-09T14:11:27.184391-07:00,1002.0167846679688,10.850008,10850.008 +20360,2025-03-09T14:11:38.034712-07:00,1002.0125732421875,10.850321,10850.321 +20361,2025-03-09T14:11:48.879368-07:00,1002.048095703125,10.844656,10844.656 +20362,2025-03-09T14:11:59.721424-07:00,1001.973876953125,10.842056,10842.056 +20363,2025-03-09T14:12:10.571510-07:00,1002.023681640625,10.850086,10850.086 +20364,2025-03-09T14:12:21.416505-07:00,1002.0382690429688,10.844995,10844.995 +20365,2025-03-09T14:12:32.265441-07:00,1002.0194702148438,10.848936,10848.936 +20366,2025-03-09T14:12:43.107465-07:00,1001.986328125,10.842024,10842.024 +20367,2025-03-09T14:12:53.950389-07:00,1001.9678344726562,10.842924,10842.924 +20368,2025-03-09T14:13:04.801392-07:00,1001.9612426757812,10.851003,10851.003 +20369,2025-03-09T14:13:15.643430-07:00,1001.95703125,10.842038,10842.038 +20370,2025-03-09T14:13:26.490076-07:00,1001.9249267578125,10.846646,10846.646 +20371,2025-03-09T14:13:37.345819-07:00,1001.932861328125,10.855743,10855.743 +20372,2025-03-09T14:13:48.187523-07:00,1001.9405517578125,10.841704,10841.704 +20373,2025-03-09T14:13:59.026421-07:00,1001.9816284179688,10.838898,10838.898 +20374,2025-03-09T14:14:09.873396-07:00,1001.9163818359375,10.846975,10846.975 +20375,2025-03-09T14:14:20.713956-07:00,1001.9519653320312,10.84056,10840.56 +20376,2025-03-09T14:14:31.555570-07:00,1001.8856811523438,10.841614,10841.614 +20377,2025-03-09T14:14:42.405393-07:00,1001.954345703125,10.849823,10849.823 +20378,2025-03-09T14:14:53.242716-07:00,1001.9212646484375,10.837323,10837.323 +20379,2025-03-09T14:15:04.088528-07:00,1001.9026489257812,10.845812,10845.812 +20380,2025-03-09T14:15:14.934296-07:00,1001.9312744140625,10.845768,10845.768 +20381,2025-03-09T14:15:25.788020-07:00,1001.8849487304688,10.853724,10853.724 +20382,2025-03-09T14:15:36.628387-07:00,1001.864990234375,10.840367,10840.367 +20383,2025-03-09T14:15:47.464392-07:00,1001.854248046875,10.836005,10836.005 +20384,2025-03-09T14:15:58.318586-07:00,1001.885498046875,10.854194,10854.194 +20385,2025-03-09T14:16:09.161716-07:00,1001.9120483398438,10.84313,10843.13 +20386,2025-03-09T14:16:20.004125-07:00,1001.8523559570312,10.842409,10842.409 +20387,2025-03-09T14:16:30.848383-07:00,1001.8283081054688,10.844258,10844.258 +20388,2025-03-09T14:16:41.683506-07:00,1001.8428344726562,10.835123,10835.123 +20389,2025-03-09T14:16:52.521340-07:00,1001.8770141601562,10.837834,10837.834 +20390,2025-03-09T14:17:03.367653-07:00,1001.8651733398438,10.846313,10846.313 +20391,2025-03-09T14:17:14.209518-07:00,1001.8717041015625,10.841865,10841.865 +20392,2025-03-09T14:17:25.050423-07:00,1001.8685913085938,10.840905,10840.905 +20393,2025-03-09T14:17:35.894685-07:00,1001.86083984375,10.844262,10844.262 +20394,2025-03-09T14:17:46.733390-07:00,1001.8121337890625,10.838705,10838.705 +20395,2025-03-09T14:17:57.579697-07:00,1001.842041015625,10.846307,10846.307 +20396,2025-03-09T14:18:08.425392-07:00,1001.81689453125,10.845695,10845.695 +20397,2025-03-09T14:18:19.268019-07:00,1001.8126831054688,10.842627,10842.627 +20398,2025-03-09T14:18:30.110719-07:00,1001.86669921875,10.8427,10842.7 +20399,2025-03-09T14:18:40.953637-07:00,1001.829345703125,10.842918,10842.918 +20400,2025-03-09T14:18:51.794393-07:00,1001.8515625,10.840756,10840.756 +20401,2025-03-09T14:19:02.634617-07:00,1001.78955078125,10.840224,10840.224 +20402,2025-03-09T14:19:13.481979-07:00,1001.8118896484375,10.847362,10847.362 +20403,2025-03-09T14:19:24.323601-07:00,1001.8208618164062,10.841622,10841.622 +20404,2025-03-09T14:19:35.174465-07:00,1001.802001953125,10.850864,10850.864 +20405,2025-03-09T14:19:46.017610-07:00,1001.8099975585938,10.843145,10843.145 +20406,2025-03-09T14:19:56.859913-07:00,1001.8068237304688,10.842303,10842.303 +20407,2025-03-09T14:20:07.692616-07:00,1001.833251953125,10.832703,10832.703 +20408,2025-03-09T14:20:18.549722-07:00,1001.8147583007812,10.857106,10857.106 +20409,2025-03-09T14:20:29.392390-07:00,1001.8157958984375,10.842668,10842.668 +20410,2025-03-09T14:20:40.238385-07:00,1001.7826538085938,10.845995,10845.995 +20411,2025-03-09T14:20:51.080398-07:00,1001.8171997070312,10.842013,10842.013 +20412,2025-03-09T14:21:01.923712-07:00,1001.7442016601562,10.843314,10843.314 +20413,2025-03-09T14:21:12.774898-07:00,1001.726806640625,10.851186,10851.186 +20414,2025-03-09T14:21:23.616443-07:00,1001.7490844726562,10.841545,10841.545 +20415,2025-03-09T14:21:34.461697-07:00,1001.729248046875,10.845254,10845.254 +20416,2025-03-09T14:21:45.313423-07:00,1001.7371826171875,10.851726,10851.726 +20417,2025-03-09T14:21:56.162669-07:00,1001.7537231445312,10.849246,10849.246 +20418,2025-03-09T14:22:07.014448-07:00,1001.7726440429688,10.851779,10851.779 +20419,2025-03-09T14:22:17.854321-07:00,1001.7429809570312,10.839873,10839.873 +20420,2025-03-09T14:22:28.702814-07:00,1001.712158203125,10.848493,10848.493 +20421,2025-03-09T14:22:39.552440-07:00,1001.7410888671875,10.849626,10849.626 +20422,2025-03-09T14:22:50.398668-07:00,1001.7357788085938,10.846228,10846.228 +20423,2025-03-09T14:23:01.244393-07:00,1001.758056640625,10.845725,10845.725 +20424,2025-03-09T14:23:12.096386-07:00,1001.7723388671875,10.851993,10851.993 +20425,2025-03-09T14:23:22.940389-07:00,1001.7681274414062,10.844003,10844.003 +20426,2025-03-09T14:23:33.790388-07:00,1001.7715454101562,10.849999,10849.999 +20427,2025-03-09T14:23:44.634306-07:00,1001.7672729492188,10.843918,10843.918 +20428,2025-03-09T14:23:55.493680-07:00,1001.795166015625,10.859374,10859.374 +20429,2025-03-09T14:24:06.336710-07:00,1001.8093872070312,10.84303,10843.03 +20430,2025-03-09T14:24:17.178534-07:00,1001.827392578125,10.841824,10841.824 +20431,2025-03-09T14:24:28.028797-07:00,1001.8074951171875,10.850263,10850.263 +20432,2025-03-09T14:24:38.877721-07:00,1001.7943115234375,10.848924,10848.924 +20433,2025-03-09T14:24:49.729392-07:00,1001.7979736328125,10.851671,10851.671 +20434,2025-03-09T14:25:00.568474-07:00,1001.7937622070312,10.839082,10839.082 +20435,2025-03-09T14:25:11.412373-07:00,1001.7948608398438,10.843899,10843.899 +20436,2025-03-09T14:25:22.266391-07:00,1001.8038330078125,10.854018,10854.018 +20437,2025-03-09T14:25:33.114395-07:00,1001.7720336914062,10.848004,10848.004 +20438,2025-03-09T14:25:43.956387-07:00,1001.7687377929688,10.841992,10841.992 +20439,2025-03-09T14:25:54.811454-07:00,1001.7489013671875,10.855067,10855.067 +20440,2025-03-09T14:26:05.656389-07:00,1001.77783203125,10.844935,10844.935 +20441,2025-03-09T14:26:16.509147-07:00,1001.6860961914062,10.852758,10852.758 +20442,2025-03-09T14:26:27.353662-07:00,1001.7493896484375,10.844515,10844.515 +20443,2025-03-09T14:26:38.208761-07:00,1001.7306518554688,10.855099,10855.099 +20444,2025-03-09T14:26:49.059003-07:00,1001.7120361328125,10.850242,10850.242 +20445,2025-03-09T14:26:59.897750-07:00,1001.7101440429688,10.838747,10838.747 +20446,2025-03-09T14:27:10.750895-07:00,1001.74560546875,10.853145,10853.145 +20447,2025-03-09T14:27:21.585743-07:00,1001.7864990234375,10.834848,10834.848 +20448,2025-03-09T14:27:32.435971-07:00,1001.788818359375,10.850228,10850.228 +20449,2025-03-09T14:27:43.284749-07:00,1001.7779541015625,10.848778,10848.778 +20450,2025-03-09T14:27:54.127386-07:00,1001.7723388671875,10.842637,10842.637 +20451,2025-03-09T14:28:04.978396-07:00,1001.7658081054688,10.85101,10851.01 +20452,2025-03-09T14:28:15.831385-07:00,1001.761474609375,10.852989,10852.989 +20453,2025-03-09T14:28:26.673892-07:00,1001.7084350585938,10.842507,10842.507 +20454,2025-03-09T14:28:37.516384-07:00,1001.743896484375,10.842492,10842.492 +20455,2025-03-09T14:28:48.371393-07:00,1001.7240600585938,10.855009,10855.009 +20456,2025-03-09T14:28:59.214767-07:00,1001.7320556640625,10.843374,10843.374 +20457,2025-03-09T14:29:10.063209-07:00,1001.727783203125,10.848442,10848.442 +20458,2025-03-09T14:29:20.911442-07:00,1001.734375,10.848233,10848.233 +20459,2025-03-09T14:29:31.754394-07:00,1001.68798828125,10.842952,10842.952 +20460,2025-03-09T14:29:42.597448-07:00,1001.6890869140625,10.843054,10843.054 +20461,2025-03-09T14:29:53.448381-07:00,1001.6771240234375,10.850933,10850.933 +20462,2025-03-09T14:30:04.289887-07:00,1001.7003784179688,10.841506,10841.506 +20463,2025-03-09T14:30:15.137114-07:00,1001.618408203125,10.847227,10847.227 +20464,2025-03-09T14:30:25.998744-07:00,1001.6738891601562,10.86163,10861.63 +20465,2025-03-09T14:30:36.847647-07:00,1001.6994018554688,10.848903,10848.903 +20466,2025-03-09T14:30:47.695441-07:00,1001.619873046875,10.847794,10847.794 +20467,2025-03-09T14:30:58.533630-07:00,1001.651611328125,10.838189,10838.189 +20468,2025-03-09T14:31:09.388635-07:00,1001.6648559570312,10.855005,10855.005 +20469,2025-03-09T14:31:20.241389-07:00,1001.6529541015625,10.852754,10852.754 +20470,2025-03-09T14:31:31.085784-07:00,1001.618408203125,10.844395,10844.395 +20471,2025-03-09T14:31:41.940393-07:00,1001.7047119140625,10.854609,10854.609 +20472,2025-03-09T14:31:52.777752-07:00,1001.666259765625,10.837359,10837.359 +20473,2025-03-09T14:32:03.626563-07:00,1001.6264038085938,10.848811,10848.811 +20474,2025-03-09T14:32:14.471380-07:00,1001.66064453125,10.844817,10844.817 +20475,2025-03-09T14:32:25.323476-07:00,1001.712646484375,10.852096,10852.096 +20476,2025-03-09T14:32:36.167572-07:00,1001.6397094726562,10.844096,10844.096 +20477,2025-03-09T14:32:47.017372-07:00,1001.6132202148438,10.8498,10849.8 +20478,2025-03-09T14:32:57.865722-07:00,1001.6331176757812,10.84835,10848.35 +20479,2025-03-09T14:33:08.701626-07:00,1001.6463012695312,10.835904,10835.904 +20480,2025-03-09T14:33:19.545368-07:00,1001.605224609375,10.843742,10843.742 +20481,2025-03-09T14:33:30.382396-07:00,1001.6141967773438,10.837028,10837.028 +20482,2025-03-09T14:33:41.232691-07:00,1001.5711059570312,10.850295,10850.295 +20483,2025-03-09T14:33:52.070030-07:00,1001.556396484375,10.837339,10837.339 +20484,2025-03-09T14:34:02.912537-07:00,1001.5842895507812,10.842507,10842.507 +20485,2025-03-09T14:34:13.754379-07:00,1001.5763549804688,10.841842,10841.842 +20486,2025-03-09T14:34:24.603395-07:00,1001.6004638671875,10.849016,10849.016 +20487,2025-03-09T14:34:35.447745-07:00,1001.587158203125,10.84435,10844.35 +20488,2025-03-09T14:34:46.295025-07:00,1001.5939331054688,10.84728,10847.28 +20489,2025-03-09T14:34:57.138394-07:00,1001.620361328125,10.843369,10843.369 +20490,2025-03-09T14:35:07.980647-07:00,1001.616943359375,10.842253,10842.253 +20491,2025-03-09T14:35:18.824370-07:00,1001.6060791015625,10.843723,10843.723 +20492,2025-03-09T14:35:29.667750-07:00,1001.5994262695312,10.84338,10843.38 +20493,2025-03-09T14:35:40.519691-07:00,1001.5772094726562,10.851941,10851.941 +20494,2025-03-09T14:35:51.353394-07:00,1001.6146240234375,10.833703,10833.703 +20495,2025-03-09T14:36:02.201500-07:00,1001.6090087890625,10.848106,10848.106 +20496,2025-03-09T14:36:13.038819-07:00,1001.6785278320312,10.837319,10837.319 +20497,2025-03-09T14:36:23.889435-07:00,1001.6984252929688,10.850616,10850.616 +20498,2025-03-09T14:36:34.725670-07:00,1001.6705322265625,10.836235,10836.235 +20499,2025-03-09T14:36:45.568436-07:00,1001.6429443359375,10.842766,10842.766 +20500,2025-03-09T14:36:56.412398-07:00,1001.6220092773438,10.843962,10843.962 +20501,2025-03-09T14:37:07.250977-07:00,1001.6737670898438,10.838579,10838.579 +20502,2025-03-09T14:37:18.099442-07:00,1001.69921875,10.848465,10848.465 +20503,2025-03-09T14:37:28.932553-07:00,1001.697998046875,10.833111,10833.111 +20504,2025-03-09T14:37:39.769855-07:00,1001.6846923828125,10.837302,10837.302 +20505,2025-03-09T14:37:50.618201-07:00,1001.6755981445312,10.848346,10848.346 +20506,2025-03-09T14:38:01.465534-07:00,1001.6865844726562,10.847333,10847.333 +20507,2025-03-09T14:38:12.299632-07:00,1001.6666259765625,10.834098,10834.098 +20508,2025-03-09T14:38:23.145395-07:00,1001.6390380859375,10.845763,10845.763 +20509,2025-03-09T14:38:33.989026-07:00,1001.6576538085938,10.843631,10843.631 +20510,2025-03-09T14:38:44.833180-07:00,1001.6443481445312,10.844154,10844.154 +20511,2025-03-09T14:38:55.675598-07:00,1001.617919921875,10.842418,10842.418 +20512,2025-03-09T14:39:06.514385-07:00,1001.62451171875,10.838787,10838.787 +20513,2025-03-09T14:39:17.361973-07:00,1001.6046142578125,10.847588,10847.588 +20514,2025-03-09T14:39:28.199390-07:00,1001.6012573242188,10.837417,10837.417 +20515,2025-03-09T14:39:39.048746-07:00,1001.581298828125,10.849356,10849.356 +20516,2025-03-09T14:39:49.879444-07:00,1001.615478515625,10.830698,10830.698 +20517,2025-03-09T14:40:00.718711-07:00,1001.5865478515625,10.839267,10839.267 +20518,2025-03-09T14:40:11.561542-07:00,1001.6253051757812,10.842831,10842.831 +20519,2025-03-09T14:40:22.399526-07:00,1001.6343994140625,10.837984,10837.984 +20520,2025-03-09T14:40:33.231225-07:00,1001.5700073242188,10.831699,10831.699 +20521,2025-03-09T14:40:44.070427-07:00,1001.5831909179688,10.839202,10839.202 +20522,2025-03-09T14:40:54.903398-07:00,1001.614990234375,10.832971,10832.971 +20523,2025-03-09T14:41:05.754394-07:00,1001.6216430664062,10.850996,10850.996 +20524,2025-03-09T14:41:16.599693-07:00,1001.627197265625,10.845299,10845.299 +20525,2025-03-09T14:41:27.438381-07:00,1001.593017578125,10.838688,10838.688 +20526,2025-03-09T14:41:38.276448-07:00,1001.58935546875,10.838067,10838.067 +20527,2025-03-09T14:41:49.121002-07:00,1001.6622924804688,10.844554,10844.554 +20528,2025-03-09T14:41:59.958391-07:00,1001.6224975585938,10.837389,10837.389 +20529,2025-03-09T14:42:10.793724-07:00,1001.6158447265625,10.835333,10835.333 +20530,2025-03-09T14:42:21.636662-07:00,1001.6281127929688,10.842938,10842.938 +20531,2025-03-09T14:42:32.476235-07:00,1001.5779418945312,10.839573,10839.573 +20532,2025-03-09T14:42:43.318444-07:00,1001.576904296875,10.842209,10842.209 +20533,2025-03-09T14:42:54.155668-07:00,1001.6087646484375,10.837224,10837.224 +20534,2025-03-09T14:43:04.997859-07:00,1001.6045532226562,10.842191,10842.191 +20535,2025-03-09T14:43:15.842337-07:00,1001.6045532226562,10.844478,10844.478 +20536,2025-03-09T14:43:26.679440-07:00,1001.6498413085938,10.837103,10837.103 +20537,2025-03-09T14:43:37.526394-07:00,1001.6431884765625,10.846954,10846.954 +20538,2025-03-09T14:43:48.360943-07:00,1001.6342163085938,10.834549,10834.549 +20539,2025-03-09T14:43:59.205564-07:00,1001.67919921875,10.844621,10844.621 +20540,2025-03-09T14:44:10.045655-07:00,1001.6649780273438,10.840091,10840.091 +20541,2025-03-09T14:44:20.885618-07:00,1001.6185913085938,10.839963,10839.963 +20542,2025-03-09T14:44:31.732989-07:00,1001.6702270507812,10.847371,10847.371 +20543,2025-03-09T14:44:42.575406-07:00,1001.6824951171875,10.842417,10842.417 +20544,2025-03-09T14:44:53.424629-07:00,1001.6347045898438,10.849223,10849.223 +20545,2025-03-09T14:45:04.267364-07:00,1001.6677856445312,10.842735,10842.735 +20546,2025-03-09T14:45:15.112872-07:00,1001.6800537109375,10.845508,10845.508 +20547,2025-03-09T14:45:25.958396-07:00,1001.6303100585938,10.845524,10845.524 +20548,2025-03-09T14:45:36.809539-07:00,1001.672119140625,10.851143,10851.143 +20549,2025-03-09T14:45:47.645564-07:00,1001.637939453125,10.836025,10836.025 +20550,2025-03-09T14:45:58.497682-07:00,1001.6235961914062,10.852118,10852.118 +20551,2025-03-09T14:46:09.340544-07:00,1001.5947875976562,10.842862,10842.862 +20552,2025-03-09T14:46:20.193390-07:00,1001.572509765625,10.852846,10852.846 +20553,2025-03-09T14:46:31.041455-07:00,1001.6079711914062,10.848065,10848.065 +20554,2025-03-09T14:46:41.887805-07:00,1001.5934448242188,10.84635,10846.35 +20555,2025-03-09T14:46:52.736983-07:00,1001.5592041015625,10.849178,10849.178 +20556,2025-03-09T14:47:03.575419-07:00,1001.591064453125,10.838436,10838.436 +20557,2025-03-09T14:47:14.428606-07:00,1001.6043090820312,10.853187,10853.187 +20558,2025-03-09T14:47:25.278393-07:00,1001.6231079101562,10.849787,10849.787 +20559,2025-03-09T14:47:36.123385-07:00,1001.5886840820312,10.844992,10844.992 +20560,2025-03-09T14:47:46.975391-07:00,1001.6141357421875,10.852006,10852.006 +20561,2025-03-09T14:47:57.814540-07:00,1001.61279296875,10.839149,10839.149 +20562,2025-03-09T14:48:08.662725-07:00,1001.5610961914062,10.848185,10848.185 +20563,2025-03-09T14:48:19.511693-07:00,1001.59423828125,10.848968,10848.968 +20564,2025-03-09T14:48:30.350120-07:00,1001.5653076171875,10.838427,10838.427 +20565,2025-03-09T14:48:41.198390-07:00,1001.57861328125,10.84827,10848.27 +20566,2025-03-09T14:48:52.034988-07:00,1001.5762329101562,10.836598,10836.598 +20567,2025-03-09T14:49:02.884876-07:00,1001.5640869140625,10.849888,10849.888 +20568,2025-03-09T14:49:13.733648-07:00,1001.5857543945312,10.848772,10848.772 +20569,2025-03-09T14:49:24.574442-07:00,1001.588134765625,10.840794,10840.794 +20570,2025-03-09T14:49:35.423394-07:00,1001.5791625976562,10.848952,10848.952 +20571,2025-03-09T14:49:46.269786-07:00,1001.5923461914062,10.846392,10846.392 +20572,2025-03-09T14:49:57.114390-07:00,1001.5158081054688,10.844604,10844.604 +20573,2025-03-09T14:50:07.966493-07:00,1001.5223999023438,10.852103,10852.103 +20574,2025-03-09T14:50:18.814636-07:00,1001.5346069335938,10.848143,10848.143 +20575,2025-03-09T14:50:29.662849-07:00,1001.5597534179688,10.848213,10848.213 +20576,2025-03-09T14:50:40.507394-07:00,1001.5985107421875,10.844545,10844.545 +20577,2025-03-09T14:50:51.353618-07:00,1001.59716796875,10.846224,10846.224 +20578,2025-03-09T14:51:02.199683-07:00,1001.5549926757812,10.846065,10846.065 +20579,2025-03-09T14:51:13.044483-07:00,1001.5682983398438,10.8448,10844.8 +20580,2025-03-09T14:51:23.895732-07:00,1001.5748291015625,10.851249,10851.249 +20581,2025-03-09T14:51:34.733395-07:00,1001.5592041015625,10.837663,10837.663 +20582,2025-03-09T14:51:45.578436-07:00,1001.584716796875,10.845041,10845.041 +20583,2025-03-09T14:51:56.429394-07:00,1001.5435791015625,10.850958,10850.958 +20584,2025-03-09T14:52:07.273587-07:00,1001.5502319335938,10.844193,10844.193 +20585,2025-03-09T14:52:18.117395-07:00,1001.51611328125,10.843808,10843.808 +20586,2025-03-09T14:52:28.971407-07:00,1001.5557861328125,10.854012,10854.012 +20587,2025-03-09T14:52:39.807446-07:00,1001.5214233398438,10.836039,10836.039 +20588,2025-03-09T14:52:50.657472-07:00,1001.5346069335938,10.850026,10850.026 +20589,2025-03-09T14:53:01.505508-07:00,1001.5214233398438,10.848036,10848.036 +20590,2025-03-09T14:53:12.337864-07:00,1001.48583984375,10.832356,10832.356 +20591,2025-03-09T14:53:23.181386-07:00,1001.5226440429688,10.843522,10843.522 +20592,2025-03-09T14:53:34.035282-07:00,1001.48828125,10.853896,10853.896 +20593,2025-03-09T14:53:44.873379-07:00,1001.5070190429688,10.838097,10838.097 +20594,2025-03-09T14:53:55.721395-07:00,1001.5346069335938,10.848016,10848.016 +20595,2025-03-09T14:54:06.575673-07:00,1001.4871826171875,10.854278,10854.278 +20596,2025-03-09T14:54:17.417564-07:00,1001.5057983398438,10.841891,10841.891 +20597,2025-03-09T14:54:28.276576-07:00,1001.5137329101562,10.859012,10859.012 +20598,2025-03-09T14:54:39.123549-07:00,1001.494873046875,10.846973,10846.973 +20599,2025-03-09T14:54:49.966969-07:00,1001.5269775390625,10.84342,10843.42 +20600,2025-03-09T14:55:00.813432-07:00,1001.498046875,10.846463,10846.463 +20601,2025-03-09T14:55:11.668442-07:00,1001.4715576171875,10.85501,10855.01 +20602,2025-03-09T14:55:22.516393-07:00,1001.5081176757812,10.847951,10847.951 +20603,2025-03-09T14:55:33.367381-07:00,1001.5137329101562,10.850988,10850.988 +20604,2025-03-09T14:55:44.208397-07:00,1001.5203247070312,10.841016,10841.016 +20605,2025-03-09T14:55:55.059728-07:00,1001.541259765625,10.851331,10851.331 +20606,2025-03-09T14:56:05.901366-07:00,1001.48583984375,10.841638,10841.638 +20607,2025-03-09T14:56:16.750814-07:00,1001.4806518554688,10.849448,10849.448 +20608,2025-03-09T14:56:27.591898-07:00,1001.4938354492188,10.841084,10841.084 +20609,2025-03-09T14:56:38.445391-07:00,1001.48583984375,10.853493,10853.493 +20610,2025-03-09T14:56:49.288519-07:00,1001.489501953125,10.843128,10843.128 +20611,2025-03-09T14:57:00.132395-07:00,1001.473876953125,10.843876,10843.876 +20612,2025-03-09T14:57:10.977095-07:00,1001.4527587890625,10.8447,10844.7 +20613,2025-03-09T14:57:21.823439-07:00,1001.4220581054688,10.846344,10846.344 +20614,2025-03-09T14:57:32.671395-07:00,1001.4209594726562,10.847956,10847.956 +20615,2025-03-09T14:57:43.518388-07:00,1001.415283203125,10.846993,10846.993 +20616,2025-03-09T14:57:54.367390-07:00,1001.4365844726562,10.849002,10849.002 +20617,2025-03-09T14:58:05.215403-07:00,1001.4299926757812,10.848013,10848.013 +20618,2025-03-09T14:58:16.058738-07:00,1001.4243774414062,10.843335,10843.335 +20619,2025-03-09T14:58:26.896394-07:00,1001.4243774414062,10.837656,10837.656 +20620,2025-03-09T14:58:37.749444-07:00,1001.4257202148438,10.85305,10853.05 +20621,2025-03-09T14:58:48.598589-07:00,1001.4190673828125,10.849145,10849.145 +20622,2025-03-09T14:58:59.446423-07:00,1001.4100952148438,10.847834,10847.834 +20623,2025-03-09T14:59:10.288743-07:00,1001.4720458984375,10.84232,10842.32 +20624,2025-03-09T14:59:21.139397-07:00,1001.3992309570312,10.850654,10850.654 +20625,2025-03-09T14:59:31.993394-07:00,1001.4002075195312,10.853997,10853.997 +20626,2025-03-09T14:59:42.843415-07:00,1001.40576171875,10.850021,10850.021 +20627,2025-03-09T14:59:53.690726-07:00,1001.4015502929688,10.847311,10847.311 +20628,2025-03-09T15:00:04.546618-07:00,1001.3750610351562,10.855892,10855.892 +20629,2025-03-09T15:00:15.389413-07:00,1001.3726806640625,10.842795,10842.795 +20630,2025-03-09T15:00:26.232952-07:00,1001.3870239257812,10.843539,10843.539 +20631,2025-03-09T15:00:37.075443-07:00,1001.4002075195312,10.842491,10842.491 +20632,2025-03-09T15:00:47.930024-07:00,1001.3870239257812,10.854581,10854.581 +20633,2025-03-09T15:00:58.780104-07:00,1001.3936157226562,10.85008,10850.08 +20634,2025-03-09T15:01:09.614442-07:00,1001.3936157226562,10.834338,10834.338 +20635,2025-03-09T15:01:20.455602-07:00,1001.3936157226562,10.84116,10841.16 +20636,2025-03-09T15:01:31.296647-07:00,1001.3750610351562,10.841045,10841.045 +20637,2025-03-09T15:01:42.145453-07:00,1001.3329467773438,10.848806,10848.806 +20638,2025-03-09T15:01:52.994665-07:00,1001.3594360351562,10.849212,10849.212 +20639,2025-03-09T15:02:03.837265-07:00,1001.40576171875,10.8426,10842.6 +20640,2025-03-09T15:02:14.685867-07:00,1001.4257202148438,10.848602,10848.602 +20641,2025-03-09T15:02:25.521384-07:00,1001.3660888671875,10.835517,10835.517 +20642,2025-03-09T15:02:36.360753-07:00,1001.3992309570312,10.839369,10839.369 +20643,2025-03-09T15:02:47.213841-07:00,1001.3992309570312,10.853088,10853.088 +20644,2025-03-09T15:02:58.047440-07:00,1001.40576171875,10.833599,10833.599 +20645,2025-03-09T15:03:08.900387-07:00,1001.392578125,10.852947,10852.947 +20646,2025-03-09T15:03:19.739749-07:00,1001.3870239257812,10.839362,10839.362 +20647,2025-03-09T15:03:30.587396-07:00,1001.3594360351562,10.847647,10847.647 +20648,2025-03-09T15:03:41.431708-07:00,1001.3173217773438,10.844312,10844.312 +20649,2025-03-09T15:03:52.273820-07:00,1001.3107299804688,10.842112,10842.112 +20650,2025-03-09T15:04:03.127683-07:00,1001.3490600585938,10.853863,10853.863 +20651,2025-03-09T15:04:13.966108-07:00,1001.3515014648438,10.838425,10838.425 +20652,2025-03-09T15:04:24.809379-07:00,1001.3016967773438,10.843271,10843.271 +20653,2025-03-09T15:04:35.657726-07:00,1001.3480224609375,10.848347,10848.347 +20654,2025-03-09T15:04:46.507923-07:00,1001.3334350585938,10.850197,10850.197 +20655,2025-03-09T15:04:57.353478-07:00,1001.2937622070312,10.845555,10845.555 +20656,2025-03-09T15:05:08.198576-07:00,1001.305908203125,10.845098,10845.098 +20657,2025-03-09T15:05:19.051603-07:00,1001.3367309570312,10.853027,10853.027 +20658,2025-03-09T15:05:29.902389-07:00,1001.2548217773438,10.850786,10850.786 +20659,2025-03-09T15:05:40.739716-07:00,1001.2481079101562,10.837327,10837.327 +20660,2025-03-09T15:05:51.625228-07:00,1001.28125,10.885512,10885.512 +20661,2025-03-09T15:06:02.467265-07:00,1001.25244140625,10.842037,10842.037 +20662,2025-03-09T15:06:13.312861-07:00,1001.2803344726562,10.845596,10845.596 +20663,2025-03-09T15:06:24.149866-07:00,1001.286865234375,10.837005,10837.005 +20664,2025-03-09T15:06:35.004858-07:00,1001.3067016601562,10.854992,10854.992 +20665,2025-03-09T15:06:45.851216-07:00,1001.2670288085938,10.846358,10846.358 +20666,2025-03-09T15:06:56.700628-07:00,1001.2736206054688,10.849412,10849.412 +20667,2025-03-09T15:07:07.542861-07:00,1001.2879638671875,10.842233,10842.233 +20668,2025-03-09T15:07:18.387867-07:00,1001.23388671875,10.845006,10845.006 +20669,2025-03-09T15:07:29.233867-07:00,1001.286865234375,10.846,10846.0 +20670,2025-03-09T15:07:40.070182-07:00,1001.2670288085938,10.836315,10836.315 +20671,2025-03-09T15:07:50.917279-07:00,1001.2670288085938,10.847097,10847.097 +20672,2025-03-09T15:08:01.761939-07:00,1001.259033203125,10.84466,10844.66 +20673,2025-03-09T15:08:12.597999-07:00,1001.271240234375,10.83606,10836.06 +20674,2025-03-09T15:08:23.452945-07:00,1001.2723388671875,10.854946,10854.946 +20675,2025-03-09T15:08:34.292352-07:00,1001.2514038085938,10.839407,10839.407 +20676,2025-03-09T15:08:45.137441-07:00,1001.23681640625,10.845089,10845.089 +20677,2025-03-09T15:08:55.974909-07:00,1001.2235107421875,10.837468,10837.468 +20678,2025-03-09T15:09:06.811861-07:00,1001.2645874023438,10.836952,10836.952 +20679,2025-03-09T15:09:17.659173-07:00,1001.243408203125,10.847312,10847.312 +20680,2025-03-09T15:09:28.504167-07:00,1001.2542724609375,10.844994,10844.994 +20681,2025-03-09T15:09:39.339162-07:00,1001.2002563476562,10.834995,10834.995 +20682,2025-03-09T15:09:50.181912-07:00,1001.2201538085938,10.84275,10842.75 +20683,2025-03-09T15:10:01.017072-07:00,1001.258544921875,10.83516,10835.16 +20684,2025-03-09T15:10:11.863003-07:00,1001.2518920898438,10.845931,10845.931 +20685,2025-03-09T15:10:22.710231-07:00,1001.2532958984375,10.847228,10847.228 +20686,2025-03-09T15:10:33.559866-07:00,1001.2333374023438,10.849635,10849.635 +20687,2025-03-09T15:10:44.397997-07:00,1001.2320556640625,10.838131,10838.131 +20688,2025-03-09T15:10:55.248913-07:00,1001.24658203125,10.850916,10850.916 +20689,2025-03-09T15:11:06.095460-07:00,1001.2385864257812,10.846547,10846.547 +20690,2025-03-09T15:11:16.940908-07:00,1001.2508544921875,10.845448,10845.448 +20691,2025-03-09T15:11:27.782865-07:00,1001.2418823242188,10.841957,10841.957 +20692,2025-03-09T15:11:38.627047-07:00,1001.2296752929688,10.844182,10844.182 +20693,2025-03-09T15:11:49.465002-07:00,1001.23095703125,10.837955,10837.955 +20694,2025-03-09T15:12:00.313303-07:00,1001.2177124023438,10.848301,10848.301 +20695,2025-03-09T15:12:11.152022-07:00,1001.208740234375,10.838719,10838.719 +20696,2025-03-09T15:12:21.987124-07:00,1001.21533203125,10.835102,10835.102 +20697,2025-03-09T15:12:32.830130-07:00,1001.27734375,10.843006,10843.006 +20698,2025-03-09T15:12:43.674200-07:00,1001.26171875,10.84407,10844.07 +20699,2025-03-09T15:12:54.516868-07:00,1001.2285766601562,10.842668,10842.668 +20700,2025-03-09T15:13:05.359874-07:00,1001.208740234375,10.843006,10843.006 +20701,2025-03-09T15:13:16.203196-07:00,1001.2008056640625,10.843322,10843.322 +20702,2025-03-09T15:13:27.046709-07:00,1001.240478515625,10.843513,10843.513 +20703,2025-03-09T15:13:37.888994-07:00,1001.2484130859375,10.842285,10842.285 +20704,2025-03-09T15:13:48.742844-07:00,1001.2380981445312,10.85385,10853.85 +20705,2025-03-09T15:13:59.585863-07:00,1001.24609375,10.843019,10843.019 +20706,2025-03-09T15:14:10.426518-07:00,1001.2380981445312,10.840655,10840.655 +20707,2025-03-09T15:14:21.273247-07:00,1001.24609375,10.846729,10846.729 +20708,2025-03-09T15:14:32.115100-07:00,1001.2503051757812,10.841853,10841.853 +20709,2025-03-09T15:14:42.966926-07:00,1001.2447509765625,10.851826,10851.826 +20710,2025-03-09T15:14:53.803993-07:00,1001.1983642578125,10.837067,10837.067 +20711,2025-03-09T15:15:04.651436-07:00,1001.18408203125,10.847443,10847.443 +20712,2025-03-09T15:15:15.492173-07:00,1001.2106323242188,10.840737,10840.737 +20713,2025-03-09T15:15:26.329876-07:00,1001.2106323242188,10.837703,10837.703 +20714,2025-03-09T15:15:37.175863-07:00,1001.2238159179688,10.845987,10845.987 +20715,2025-03-09T15:15:48.016867-07:00,1001.2437744140625,10.841004,10841.004 +20716,2025-03-09T15:15:58.860194-07:00,1001.2224731445312,10.843327,10843.327 +20717,2025-03-09T15:16:09.716165-07:00,1001.2423706054688,10.855971,10855.971 +20718,2025-03-09T15:16:20.560187-07:00,1001.2224731445312,10.844022,10844.022 +20719,2025-03-09T15:16:31.397028-07:00,1001.2357788085938,10.836841,10836.841 +20720,2025-03-09T15:16:42.234400-07:00,1001.2137451171875,10.837372,10837.372 +20721,2025-03-09T15:16:53.086334-07:00,1001.21484375,10.851934,10851.934 +20722,2025-03-09T15:17:03.932385-07:00,1001.2346801757812,10.846051,10846.051 +20723,2025-03-09T15:17:14.768908-07:00,1001.2357788085938,10.836523,10836.523 +20724,2025-03-09T15:17:25.623109-07:00,1001.2158813476562,10.854201,10854.201 +20725,2025-03-09T15:17:36.454900-07:00,1001.2137451171875,10.831791,10831.791 +20726,2025-03-09T15:17:47.303413-07:00,1001.220458984375,10.848513,10848.513 +20727,2025-03-09T15:17:58.141923-07:00,1001.2005615234375,10.83851,10838.51 +20728,2025-03-09T15:18:08.986012-07:00,1001.2281494140625,10.844089,10844.089 +20729,2025-03-09T15:18:19.827033-07:00,1001.2005615234375,10.841021,10841.021 +20730,2025-03-09T15:18:30.674284-07:00,1001.1806030273438,10.847251,10847.251 +20731,2025-03-09T15:18:41.505859-07:00,1001.174072265625,10.831575,10831.575 +20732,2025-03-09T15:18:52.351866-07:00,1001.1915893554688,10.846007,10846.007 +20733,2025-03-09T15:19:03.201852-07:00,1001.1849365234375,10.849986,10849.986 +20734,2025-03-09T15:19:14.047867-07:00,1001.1607666015625,10.846015,10846.015 +20735,2025-03-09T15:19:24.890266-07:00,1001.1817016601562,10.842399,10842.399 +20736,2025-03-09T15:19:35.731866-07:00,1001.1674194335938,10.8416,10841.6 +20737,2025-03-09T15:19:46.574090-07:00,1001.1939086914062,10.842224,10842.224 +20738,2025-03-09T15:19:57.419196-07:00,1001.16845703125,10.845106,10845.106 +20739,2025-03-09T15:20:08.256169-07:00,1001.1817016601562,10.836973,10836.973 +20740,2025-03-09T15:20:19.096840-07:00,1001.2015380859375,10.840671,10840.671 +20741,2025-03-09T15:20:29.933091-07:00,1001.1882934570312,10.836251,10836.251 +20742,2025-03-09T15:20:40.776145-07:00,1001.2281494140625,10.843054,10843.054 +20743,2025-03-09T15:20:51.623186-07:00,1001.2015380859375,10.847041,10847.041 +20744,2025-03-09T15:21:02.467013-07:00,1001.1893920898438,10.843827,10843.827 +20745,2025-03-09T15:21:13.302857-07:00,1001.22705078125,10.835844,10835.844 +20746,2025-03-09T15:21:24.149179-07:00,1001.1475219726562,10.846322,10846.322 +20747,2025-03-09T15:21:34.998212-07:00,1001.1950073242188,10.849033,10849.033 +20748,2025-03-09T15:21:45.840549-07:00,1001.175048828125,10.842337,10842.337 +20749,2025-03-09T15:21:56.694140-07:00,1001.1551513671875,10.853591,10853.591 +20750,2025-03-09T15:22:07.533109-07:00,1001.1760864257812,10.838969,10838.969 +20751,2025-03-09T15:22:18.376868-07:00,1001.1973266601562,10.843759,10843.759 +20752,2025-03-09T15:22:29.225261-07:00,1001.1950073242188,10.848393,10848.393 +20753,2025-03-09T15:22:40.068208-07:00,1001.1959228515625,10.842947,10842.947 +20754,2025-03-09T15:22:50.903867-07:00,1001.16845703125,10.835659,10835.659 +20755,2025-03-09T15:23:01.749055-07:00,1001.175048828125,10.845188,10845.188 +20756,2025-03-09T15:23:12.590010-07:00,1001.1817016601562,10.840955,10840.955 +20757,2025-03-09T15:23:23.442219-07:00,1001.1364135742188,10.852209,10852.209 +20758,2025-03-09T15:23:34.277026-07:00,1001.1231079101562,10.834807,10834.807 +20759,2025-03-09T15:23:45.122004-07:00,1001.1377563476562,10.844978,10844.978 +20760,2025-03-09T15:23:55.956924-07:00,1001.131103515625,10.83492,10834.92 +20761,2025-03-09T15:24:06.805879-07:00,1001.1409301757812,10.848955,10848.955 +20762,2025-03-09T15:24:17.650269-07:00,1001.1495971679688,10.84439,10844.39 +20763,2025-03-09T15:24:28.495130-07:00,1001.1244506835938,10.844861,10844.861 +20764,2025-03-09T15:24:39.329868-07:00,1001.1231079101562,10.834738,10834.738 +20765,2025-03-09T15:24:50.173351-07:00,1001.1642456054688,10.843483,10843.483 +20766,2025-03-09T15:25:01.015926-07:00,1001.0889892578125,10.842575,10842.575 +20767,2025-03-09T15:25:11.866014-07:00,1001.1244506835938,10.850088,10850.088 +20768,2025-03-09T15:25:22.700853-07:00,1001.1429443359375,10.834839,10834.839 +20769,2025-03-09T15:25:33.550917-07:00,1001.10986328125,10.850064,10850.064 +20770,2025-03-09T15:25:44.395901-07:00,1001.0966186523438,10.844984,10844.984 +20771,2025-03-09T15:25:55.238155-07:00,1001.1056518554688,10.842254,10842.254 +20772,2025-03-09T15:26:06.086964-07:00,1001.15625,10.848809,10848.809 +20773,2025-03-09T15:26:16.928861-07:00,1001.1642456054688,10.841897,10841.897 +20774,2025-03-09T15:26:27.772861-07:00,1001.1429443359375,10.844,10844.0 +20775,2025-03-09T15:26:38.615202-07:00,1001.1297607421875,10.842341,10842.341 +20776,2025-03-09T15:26:49.454114-07:00,1001.1585693359375,10.838912,10838.912 +20777,2025-03-09T15:27:00.300973-07:00,1001.1135864257812,10.846859,10846.859 +20778,2025-03-09T15:27:11.144509-07:00,1001.1135864257812,10.843536,10843.536 +20779,2025-03-09T15:27:21.994870-07:00,1001.1202392578125,10.850361,10850.361 +20780,2025-03-09T15:27:32.836420-07:00,1001.0739135742188,10.84155,10841.55 +20781,2025-03-09T15:27:43.684139-07:00,1001.06298828125,10.847719,10847.719 +20782,2025-03-09T15:27:54.517026-07:00,1001.1027221679688,10.832887,10832.887 +20783,2025-03-09T15:28:05.360871-07:00,1001.0616455078125,10.843845,10843.845 +20784,2025-03-09T15:28:16.209852-07:00,1001.0839233398438,10.848981,10848.981 +20785,2025-03-09T15:28:27.046588-07:00,1001.109375,10.836736,10836.736 +20786,2025-03-09T15:28:37.887944-07:00,1001.0839233398438,10.841356,10841.356 +20787,2025-03-09T15:28:48.729287-07:00,1001.0431518554688,10.841343,10841.343 +20788,2025-03-09T15:28:59.581866-07:00,1001.1013793945312,10.852579,10852.579 +20789,2025-03-09T15:29:10.426257-07:00,1001.1104125976562,10.844391,10844.391 +20790,2025-03-09T15:29:21.272194-07:00,1001.0706176757812,10.845937,10845.937 +20791,2025-03-09T15:29:32.124184-07:00,1001.0640869140625,10.85199,10851.99 +20792,2025-03-09T15:29:42.959859-07:00,1001.0895385742188,10.835675,10835.675 +20793,2025-03-09T15:29:53.813984-07:00,1001.0762329101562,10.854125,10854.125 +20794,2025-03-09T15:30:04.657993-07:00,1001.05078125,10.844009,10844.009 +20795,2025-03-09T15:30:15.501414-07:00,1001.0797119140625,10.843421,10843.421 +20796,2025-03-09T15:30:26.354260-07:00,1001.0521240234375,10.852846,10852.846 +20797,2025-03-09T15:30:37.199119-07:00,1001.0123291015625,10.844859,10844.859 +20798,2025-03-09T15:30:48.052269-07:00,1000.9924926757812,10.85315,10853.15 +20799,2025-03-09T15:30:58.890397-07:00,1001.0531005859375,10.838128,10838.128 +20800,2025-03-09T15:31:09.736837-07:00,1001.0465698242188,10.84644,10846.44 +20801,2025-03-09T15:31:20.588085-07:00,1001.0597534179688,10.851248,10851.248 +20802,2025-03-09T15:31:31.431869-07:00,1001.0147094726562,10.843784,10843.784 +20803,2025-03-09T15:31:42.279559-07:00,1001.013427734375,10.84769,10847.69 +20804,2025-03-09T15:31:53.120902-07:00,1001.0279541015625,10.841343,10841.343 +20805,2025-03-09T15:32:03.964844-07:00,1000.9935302734375,10.843942,10843.942 +20806,2025-03-09T15:32:14.819856-07:00,1001.00146484375,10.855012,10855.012 +20807,2025-03-09T15:32:25.663183-07:00,1001.0091552734375,10.843327,10843.327 +20808,2025-03-09T15:32:36.506194-07:00,1001.0025024414062,10.843011,10843.011 +20809,2025-03-09T15:32:47.356343-07:00,1000.9760131835938,10.850149,10850.149 +20810,2025-03-09T15:32:58.198864-07:00,1001.03564453125,10.842521,10842.521 +20811,2025-03-09T15:33:09.052856-07:00,1001.042236328125,10.853992,10853.992 +20812,2025-03-09T15:33:19.895964-07:00,1001.0158081054688,10.843108,10843.108 +20813,2025-03-09T15:33:30.749861-07:00,1001.0025024414062,10.853897,10853.897 +20814,2025-03-09T15:33:41.592857-07:00,1001.0091552734375,10.842996,10842.996 +20815,2025-03-09T15:33:52.429198-07:00,1000.982666015625,10.836341,10836.341 +20816,2025-03-09T15:34:03.280550-07:00,1001.01708984375,10.851352,10851.352 +20817,2025-03-09T15:34:14.118982-07:00,1000.9773559570312,10.838432,10838.432 +20818,2025-03-09T15:34:24.966857-07:00,1000.9840087890625,10.847875,10847.875 +20819,2025-03-09T15:34:35.815939-07:00,1000.982666015625,10.849082,10849.082 +20820,2025-03-09T15:34:46.663165-07:00,1000.964111328125,10.847226,10847.226 +20821,2025-03-09T15:34:57.504173-07:00,1000.9230346679688,10.841008,10841.008 +20822,2025-03-09T15:35:08.345364-07:00,1000.9561767578125,10.841191,10841.191 +20823,2025-03-09T15:35:19.185845-07:00,1000.9906005859375,10.840481,10840.481 +20824,2025-03-09T15:35:30.035082-07:00,1000.964111328125,10.849237,10849.237 +20825,2025-03-09T15:35:40.885196-07:00,1000.9773559570312,10.850114,10850.114 +20826,2025-03-09T15:35:51.723171-07:00,1000.9972534179688,10.837975,10837.975 +20827,2025-03-09T15:36:02.566862-07:00,1000.9243774414062,10.843691,10843.691 +20828,2025-03-09T15:36:13.414852-07:00,1000.9320068359375,10.84799,10847.99 +20829,2025-03-09T15:36:24.256872-07:00,1000.8978881835938,10.84202,10842.02 +20830,2025-03-09T15:36:35.100774-07:00,1000.88037109375,10.843902,10843.902 +20831,2025-03-09T15:36:45.948954-07:00,1000.9068603515625,10.84818,10848.18 +20832,2025-03-09T15:36:56.791115-07:00,1000.8936157226562,10.842161,10842.161 +20833,2025-03-09T15:37:07.642863-07:00,1000.9135131835938,10.851748,10851.748 +20834,2025-03-09T15:37:18.483351-07:00,1000.9320068359375,10.840488,10840.488 +20835,2025-03-09T15:37:29.331921-07:00,1000.9466552734375,10.84857,10848.57 +20836,2025-03-09T15:37:40.170449-07:00,1000.9224853515625,10.838528,10838.528 +20837,2025-03-09T15:37:51.018349-07:00,1000.8970336914062,10.8479,10847.9 +20838,2025-03-09T15:38:01.874560-07:00,1000.951416015625,10.856211,10856.211 +20839,2025-03-09T15:38:12.711862-07:00,1000.890380859375,10.837302,10837.302 +20840,2025-03-09T15:38:23.564862-07:00,1000.93359375,10.853,10853.0 +20841,2025-03-09T15:38:34.407868-07:00,1000.935791015625,10.843006,10843.006 +20842,2025-03-09T15:38:45.265984-07:00,1000.93017578125,10.858116,10858.116 +20843,2025-03-09T15:38:56.113650-07:00,1000.964599609375,10.847666,10847.666 +20844,2025-03-09T15:39:06.956339-07:00,1000.939208984375,10.842689,10842.689 +20845,2025-03-09T15:39:17.807126-07:00,1000.9788818359375,10.850787,10850.787 +20846,2025-03-09T15:39:28.657278-07:00,1000.9182739257812,10.850152,10850.152 +20847,2025-03-09T15:39:39.506088-07:00,1000.9182739257812,10.84881,10848.81 +20848,2025-03-09T15:39:50.348862-07:00,1000.940185546875,10.842774,10842.774 +20849,2025-03-09T15:40:01.198256-07:00,1000.9723510742188,10.849394,10849.394 +20850,2025-03-09T15:40:12.048935-07:00,1000.968017578125,10.850679,10850.679 +20851,2025-03-09T15:40:22.898155-07:00,1000.9160766601562,10.84922,10849.22 +20852,2025-03-09T15:40:33.749844-07:00,1000.9070434570312,10.851689,10851.689 +20853,2025-03-09T15:40:44.597038-07:00,1000.9017944335938,10.847194,10847.194 +20854,2025-03-09T15:40:55.436910-07:00,1000.8795166015625,10.839872,10839.872 +20855,2025-03-09T15:41:06.290149-07:00,1000.893798828125,10.853239,10853.239 +20856,2025-03-09T15:41:17.140086-07:00,1000.8861694335938,10.849937,10849.937 +20857,2025-03-09T15:41:27.989856-07:00,1000.8753051757812,10.84977,10849.77 +20858,2025-03-09T15:41:38.832132-07:00,1000.9226684570312,10.842276,10842.276 +20859,2025-03-09T15:41:49.678317-07:00,1000.9017944335938,10.846185,10846.185 +20860,2025-03-09T15:42:00.529251-07:00,1000.8710327148438,10.850934,10850.934 +20861,2025-03-09T15:42:11.367693-07:00,1000.8696899414062,10.838442,10838.442 +20862,2025-03-09T15:42:22.213860-07:00,1000.88427734375,10.846167,10846.167 +20863,2025-03-09T15:42:33.070171-07:00,1000.8975219726562,10.856311,10856.311 +20864,2025-03-09T15:42:43.909180-07:00,1000.9017944335938,10.839009,10839.009 +20865,2025-03-09T15:42:54.761861-07:00,1000.9107666015625,10.852681,10852.681 +20866,2025-03-09T15:43:05.610252-07:00,1000.88427734375,10.848391,10848.391 +20867,2025-03-09T15:43:16.459871-07:00,1000.8909301757812,10.849619,10849.619 +20868,2025-03-09T15:43:27.310151-07:00,1000.9065551757812,10.85028,10850.28 +20869,2025-03-09T15:43:38.158294-07:00,1000.911865234375,10.848143,10848.143 +20870,2025-03-09T15:43:49.001838-07:00,1000.939697265625,10.843544,10843.544 +20871,2025-03-09T15:43:59.849120-07:00,1000.9131469726562,10.847282,10847.282 +20872,2025-03-09T15:44:10.695866-07:00,1000.82470703125,10.846746,10846.746 +20873,2025-03-09T15:44:21.553126-07:00,1000.9382934570312,10.85726,10857.26 +20874,2025-03-09T15:44:32.394928-07:00,1000.9174194335938,10.841802,10841.802 +20875,2025-03-09T15:44:43.250164-07:00,1000.9051513671875,10.855236,10855.236 +20876,2025-03-09T15:44:54.102315-07:00,1000.8720092773438,10.852151,10852.151 +20877,2025-03-09T15:45:04.958118-07:00,1000.8853149414062,10.855803,10855.803 +20878,2025-03-09T15:45:15.805713-07:00,1000.8563842773438,10.847595,10847.595 +20879,2025-03-09T15:45:26.648855-07:00,1000.8511962890625,10.843142,10843.142 +20880,2025-03-09T15:45:37.499855-07:00,1000.8421630859375,10.851,10851.0 +20881,2025-03-09T15:45:48.344043-07:00,1000.86865234375,10.844188,10844.188 +20882,2025-03-09T15:45:59.199868-07:00,1000.8407592773438,10.855825,10855.825 +20883,2025-03-09T15:46:10.045863-07:00,1000.8407592773438,10.845995,10845.995 +20884,2025-03-09T15:46:20.898861-07:00,1000.847412109375,10.852998,10852.998 +20885,2025-03-09T15:46:31.743104-07:00,1000.8596801757812,10.844243,10844.243 +20886,2025-03-09T15:46:42.592893-07:00,1000.86865234375,10.849789,10849.789 +20887,2025-03-09T15:46:53.435538-07:00,1000.8607177734375,10.842645,10842.645 +20888,2025-03-09T15:47:04.288950-07:00,1000.834228515625,10.853412,10853.412 +20889,2025-03-09T15:47:15.142995-07:00,1000.85205078125,10.854045,10854.045 +20890,2025-03-09T15:47:25.991900-07:00,1000.8818969726562,10.848905,10848.905 +20891,2025-03-09T15:47:36.847889-07:00,1000.8795166015625,10.855989,10855.989 +20892,2025-03-09T15:47:47.690857-07:00,1000.8638916015625,10.842968,10842.968 +20893,2025-03-09T15:47:58.545562-07:00,1000.8861694335938,10.854705,10854.705 +20894,2025-03-09T15:48:09.397862-07:00,1000.8851318359375,10.8523,10852.3 +20895,2025-03-09T15:48:20.237091-07:00,1000.8453979492188,10.839229,10839.229 +20896,2025-03-09T15:48:31.086325-07:00,1000.83740234375,10.849234,10849.234 +20897,2025-03-09T15:48:41.938589-07:00,1000.8851318359375,10.852264,10852.264 +20898,2025-03-09T15:48:52.790405-07:00,1000.8851318359375,10.851816,10851.816 +20899,2025-03-09T15:49:03.627468-07:00,1000.8638916015625,10.837063,10837.063 +20900,2025-03-09T15:49:14.475862-07:00,1000.8572387695312,10.848394,10848.394 +20901,2025-03-09T15:49:25.318918-07:00,1000.892822265625,10.843056,10843.056 +20902,2025-03-09T15:49:36.162917-07:00,1000.85205078125,10.843999,10843.999 +20903,2025-03-09T15:49:47.016991-07:00,1000.830810546875,10.854074,10854.074 +20904,2025-03-09T15:49:57.854905-07:00,1000.8705444335938,10.837914,10837.914 +20905,2025-03-09T15:50:08.697865-07:00,1000.8440551757812,10.84296,10842.96 +20906,2025-03-09T15:50:19.545934-07:00,1000.8320922851562,10.848069,10848.069 +20907,2025-03-09T15:50:30.390089-07:00,1000.8331298828125,10.844155,10844.155 +20908,2025-03-09T15:50:41.231781-07:00,1000.8209228515625,10.841692,10841.692 +20909,2025-03-09T15:50:52.075855-07:00,1000.8199462890625,10.844074,10844.074 +20910,2025-03-09T15:50:52.100165-07:00,1000.8265380859375,0.02431,24.31 +20911,2025-03-09T15:51:02.918365-07:00,1000.8453979492188,10.8182,10818.2 +20912,2025-03-09T15:51:13.765867-07:00,1000.85205078125,10.847502,10847.502 +20913,2025-03-09T15:51:24.615906-07:00,1000.8265380859375,10.850039,10850.039 +20914,2025-03-09T15:51:35.466862-07:00,1000.7857666015625,10.850956,10850.956 +20915,2025-03-09T15:51:46.314892-07:00,1000.83740234375,10.84803,10848.03 +20916,2025-03-09T15:51:57.169015-07:00,1000.812255859375,10.854123,10854.123 +20917,2025-03-09T15:52:08.014470-07:00,1000.8132934570312,10.845455,10845.455 +20918,2025-03-09T15:52:18.868165-07:00,1000.8010864257812,10.853695,10853.695 +20919,2025-03-09T15:52:29.720955-07:00,1000.8265380859375,10.85279,10852.79 +20920,2025-03-09T15:52:40.567165-07:00,1000.779052734375,10.84621,10846.21 +20921,2025-03-09T15:52:51.405148-07:00,1000.7645263671875,10.837983,10837.983 +20922,2025-03-09T15:53:02.254864-07:00,1000.7833862304688,10.849716,10849.716 +20923,2025-03-09T15:53:13.098452-07:00,1000.7820434570312,10.843588,10843.588 +20924,2025-03-09T15:53:23.951932-07:00,1000.7767333984375,10.85348,10853.48 +20925,2025-03-09T15:53:34.788863-07:00,1000.7645263671875,10.836931,10836.931 +20926,2025-03-09T15:53:45.643865-07:00,1000.7435913085938,10.855002,10855.002 +20927,2025-03-09T15:53:56.483857-07:00,1000.751220703125,10.839992,10839.992 +20928,2025-03-09T15:54:07.337045-07:00,1000.7767333984375,10.853188,10853.188 +20929,2025-03-09T15:54:18.189867-07:00,1000.77783203125,10.852822,10852.822 +20930,2025-03-09T15:54:29.031013-07:00,1000.7634887695312,10.841146,10841.146 +20931,2025-03-09T15:54:39.887006-07:00,1000.7687377929688,10.855993,10855.993 +20932,2025-03-09T15:54:50.735440-07:00,1000.7435913085938,10.848434,10848.434 +20933,2025-03-09T15:55:01.585182-07:00,1000.722412109375,10.849742,10849.742 +20934,2025-03-09T15:55:12.426186-07:00,1000.7725219726562,10.841004,10841.004 +20935,2025-03-09T15:55:23.264856-07:00,1000.7734985351562,10.83867,10838.67 +20936,2025-03-09T15:55:34.122104-07:00,1000.7801513671875,10.857248,10857.248 +20937,2025-03-09T15:55:44.959193-07:00,1000.7801513671875,10.837089,10837.089 +20938,2025-03-09T15:55:55.800507-07:00,1000.79345703125,10.841314,10841.314 +20939,2025-03-09T15:56:06.655291-07:00,1000.752685546875,10.854784,10854.784 +20940,2025-03-09T15:56:17.494024-07:00,1000.766845703125,10.838733,10838.733 +20941,2025-03-09T15:56:28.346861-07:00,1000.782470703125,10.852837,10852.837 +20942,2025-03-09T15:56:39.191868-07:00,1000.748046875,10.845007,10845.007 +20943,2025-03-09T15:56:50.039482-07:00,1000.7584228515625,10.847614,10847.614 +20944,2025-03-09T15:57:00.885184-07:00,1000.7915649414062,10.845702,10845.702 +20945,2025-03-09T15:57:11.735579-07:00,1000.798095703125,10.850395,10850.395 +20946,2025-03-09T15:57:22.579898-07:00,1000.7859497070312,10.844319,10844.319 +20947,2025-03-09T15:57:33.423861-07:00,1000.8057861328125,10.843963,10843.963 +20948,2025-03-09T15:57:44.271861-07:00,1000.8389282226562,10.848,10848.0 +20949,2025-03-09T15:57:55.120864-07:00,1000.7938842773438,10.849003,10849.003 +20950,2025-03-09T15:58:05.981870-07:00,1000.740966796875,10.861006,10861.006 +20951,2025-03-09T15:58:16.818130-07:00,1000.7528076171875,10.83626,10836.26 +20952,2025-03-09T15:58:27.672504-07:00,1000.7684326171875,10.854374,10854.374 +20953,2025-03-09T15:58:38.515604-07:00,1000.80810546875,10.8431,10843.1 +20954,2025-03-09T15:58:49.374113-07:00,1000.7806396484375,10.858509,10858.509 +20955,2025-03-09T15:59:00.217864-07:00,1000.7154541015625,10.843751,10843.751 +20956,2025-03-09T15:59:11.072855-07:00,1000.7352905273438,10.854991,10854.991 +20957,2025-03-09T15:59:21.922947-07:00,1000.7418823242188,10.850092,10850.092 +20958,2025-03-09T15:59:32.768856-07:00,1000.7575073242188,10.845909,10845.909 +20959,2025-03-09T15:59:43.618865-07:00,1000.7443237304688,10.850009,10850.009 +20960,2025-03-09T15:59:54.469089-07:00,1000.7101440429688,10.850224,10850.224 +20961,2025-03-09T16:00:05.322867-07:00,1000.677001953125,10.853778,10853.778 +20962,2025-03-09T16:00:16.170914-07:00,1000.724365234375,10.848047,10848.047 +20963,2025-03-09T16:00:27.020989-07:00,1000.7376708984375,10.850075,10850.075 +20964,2025-03-09T16:00:37.876061-07:00,1000.7257690429688,10.855072,10855.072 +20965,2025-03-09T16:00:48.711031-07:00,1000.7390747070312,10.83497,10834.97 +20966,2025-03-09T16:00:59.565908-07:00,1000.713623046875,10.854877,10854.877 +20967,2025-03-09T16:01:10.416226-07:00,1000.7125244140625,10.850318,10850.318 +20968,2025-03-09T16:01:21.261252-07:00,1000.68701171875,10.845026,10845.026 +20969,2025-03-09T16:01:32.115307-07:00,1000.7068481445312,10.854055,10854.055 +20970,2025-03-09T16:01:42.963005-07:00,1000.7479858398438,10.847698,10847.698 +20971,2025-03-09T16:01:53.805484-07:00,1000.7214965820312,10.842479,10842.479 +20972,2025-03-09T16:02:04.647549-07:00,1000.7068481445312,10.842065,10842.065 +20973,2025-03-09T16:02:15.502794-07:00,1000.7281494140625,10.855245,10855.245 +20974,2025-03-09T16:02:26.343867-07:00,1000.6950073242188,10.841073,10841.073 +20975,2025-03-09T16:02:37.195054-07:00,1000.680419921875,10.851187,10851.187 +20976,2025-03-09T16:02:48.044919-07:00,1000.6883544921875,10.849865,10849.865 +20977,2025-03-09T16:02:58.881008-07:00,1000.7039794921875,10.836089,10836.089 +20978,2025-03-09T16:03:09.729134-07:00,1000.71484375,10.848126,10848.126 +20979,2025-03-09T16:03:20.584202-07:00,1000.7201538085938,10.855068,10855.068 +20980,2025-03-09T16:03:31.427904-07:00,1000.7224731445312,10.843702,10843.702 +20981,2025-03-09T16:03:42.273855-07:00,1000.7490844726562,10.845951,10845.951 +20982,2025-03-09T16:03:53.126114-07:00,1000.6936645507812,10.852259,10852.259 +20983,2025-03-09T16:04:03.963033-07:00,1000.708251953125,10.836919,10836.919 +20984,2025-03-09T16:04:14.822110-07:00,1000.7092895507812,10.859077,10859.077 +20985,2025-03-09T16:04:25.660974-07:00,1000.6973266601562,10.838864,10838.864 +20986,2025-03-09T16:04:36.507228-07:00,1000.7092895507812,10.846254,10846.254 +20987,2025-03-09T16:04:47.357856-07:00,1000.6893920898438,10.850628,10850.628 +20988,2025-03-09T16:04:58.196090-07:00,1000.7159423828125,10.838234,10838.234 +20989,2025-03-09T16:05:09.048940-07:00,1000.6828002929688,10.85285,10852.85 +20990,2025-03-09T16:05:19.892192-07:00,1000.6785278320312,10.843252,10843.252 +20991,2025-03-09T16:05:30.739081-07:00,1000.6629028320312,10.846889,10846.889 +20992,2025-03-09T16:05:41.591193-07:00,1000.6907958984375,10.852112,10852.112 +20993,2025-03-09T16:05:52.448392-07:00,1000.6917114257812,10.857199,10857.199 +20994,2025-03-09T16:06:03.292732-07:00,1000.6695556640625,10.84434,10844.34 +20995,2025-03-09T16:06:14.151247-07:00,1000.677490234375,10.858515,10858.515 +20996,2025-03-09T16:06:24.991731-07:00,1000.6917114257812,10.840484,10840.484 +20997,2025-03-09T16:06:35.848682-07:00,1000.6785278320312,10.856951,10856.951 +20998,2025-03-09T16:06:46.695837-07:00,1000.7064208984375,10.847155,10847.155 +20999,2025-03-09T16:06:57.540882-07:00,1000.69970703125,10.845045,10845.045 +21000,2025-03-09T16:07:08.383684-07:00,1000.7008056640625,10.842802,10842.802 +21001,2025-03-09T16:07:19.237998-07:00,1000.71533203125,10.854314,10854.314 +21002,2025-03-09T16:07:30.085878-07:00,1000.6954956054688,10.84788,10847.88 +21003,2025-03-09T16:07:40.934755-07:00,1000.6889038085938,10.848877,10848.877 +21004,2025-03-09T16:07:51.777693-07:00,1000.68359375,10.842938,10842.938 +21005,2025-03-09T16:08:02.621672-07:00,1000.6713256835938,10.843979,10843.979 +21006,2025-03-09T16:08:13.464697-07:00,1000.6636962890625,10.843025,10843.025 +21007,2025-03-09T16:08:24.313023-07:00,1000.6737670898438,10.848326,10848.326 +21008,2025-03-09T16:08:35.172704-07:00,1000.631591796875,10.859681,10859.681 +21009,2025-03-09T16:08:46.010804-07:00,1000.6339111328125,10.8381,10838.1 +21010,2025-03-09T16:08:56.863750-07:00,1000.6484985351562,10.852946,10852.946 +21011,2025-03-09T16:09:07.713693-07:00,1000.66943359375,10.849943,10849.943 +21012,2025-03-09T16:09:18.555692-07:00,1000.6817016601562,10.841999,10841.999 +21013,2025-03-09T16:09:29.403687-07:00,1000.6353149414062,10.847995,10847.995 +21014,2025-03-09T16:09:40.249009-07:00,1000.6442260742188,10.845322,10845.322 +21015,2025-03-09T16:09:51.104069-07:00,1000.6177978515625,10.85506,10855.06 +21016,2025-03-09T16:10:01.946097-07:00,1000.6055297851562,10.842028,10842.028 +21017,2025-03-09T16:10:12.794690-07:00,1000.6864013671875,10.848593,10848.593 +21018,2025-03-09T16:10:23.642691-07:00,1000.6400146484375,10.848001,10848.001 +21019,2025-03-09T16:10:34.493049-07:00,1000.6201782226562,10.850358,10850.358 +21020,2025-03-09T16:10:45.350678-07:00,1000.65185546875,10.857629,10857.629 +21021,2025-03-09T16:10:56.190745-07:00,1000.673095703125,10.840067,10840.067 +21022,2025-03-09T16:11:07.039693-07:00,1000.6320190429688,10.848948,10848.948 +21023,2025-03-09T16:11:17.891751-07:00,1000.6797485351562,10.852058,10852.058 +21024,2025-03-09T16:11:28.730488-07:00,1000.6609497070312,10.838737,10838.737 +21025,2025-03-09T16:11:39.578726-07:00,1000.62548828125,10.848238,10848.238 +21026,2025-03-09T16:11:50.416920-07:00,1000.638671875,10.838194,10838.194 +21027,2025-03-09T16:12:01.260932-07:00,1000.6466674804688,10.844012,10844.012 +21028,2025-03-09T16:12:12.109339-07:00,1000.694091796875,10.848407,10848.407 +21029,2025-03-09T16:12:22.947826-07:00,1000.6068725585938,10.838487,10838.487 +21030,2025-03-09T16:12:33.799669-07:00,1000.6177978515625,10.851843,10851.843 +21031,2025-03-09T16:12:44.648681-07:00,1000.6320190429688,10.849012,10849.012 +21032,2025-03-09T16:12:55.487739-07:00,1000.638671875,10.839058,10839.058 +21033,2025-03-09T16:13:06.335687-07:00,1000.6320190429688,10.847948,10847.948 +21034,2025-03-09T16:13:17.185773-07:00,1000.597900390625,10.850086,10850.086 +21035,2025-03-09T16:13:28.034987-07:00,1000.623046875,10.849214,10849.214 +21036,2025-03-09T16:13:38.883661-07:00,1000.6220092773438,10.848674,10848.674 +21037,2025-03-09T16:13:49.723687-07:00,1000.5912475585938,10.840026,10840.026 +21038,2025-03-09T16:14:00.561906-07:00,1000.6220092773438,10.838219,10838.219 +21039,2025-03-09T16:14:11.413697-07:00,1000.6286010742188,10.851791,10851.791 +21040,2025-03-09T16:14:22.248349-07:00,1000.6561889648438,10.834652,10834.652 +21041,2025-03-09T16:14:33.093475-07:00,1000.6286010742188,10.845126,10845.126 +21042,2025-03-09T16:14:43.933767-07:00,1000.6220092773438,10.840292,10840.292 +21043,2025-03-09T16:14:54.783746-07:00,1000.582275390625,10.849979,10849.979 +21044,2025-03-09T16:15:05.627738-07:00,1000.6177978515625,10.843992,10843.992 +21045,2025-03-09T16:15:16.476005-07:00,1000.7039184570312,10.848267,10848.267 +21046,2025-03-09T16:15:27.317735-07:00,1000.6286010742188,10.84173,10841.73 +21047,2025-03-09T16:15:38.173718-07:00,1000.623046875,10.855983,10855.983 +21048,2025-03-09T16:15:49.017670-07:00,1000.6031494140625,10.843952,10843.952 +21049,2025-03-09T16:15:59.871005-07:00,1000.5889282226562,10.853335,10853.335 +21050,2025-03-09T16:16:10.709696-07:00,1000.5610961914062,10.838691,10838.691 +21051,2025-03-09T16:16:21.553159-07:00,1000.5997924804688,10.843463,10843.463 +21052,2025-03-09T16:16:32.407225-07:00,1000.5997924804688,10.854066,10854.066 +21053,2025-03-09T16:16:43.249682-07:00,1000.65283203125,10.842457,10842.457 +21054,2025-03-09T16:16:54.096909-07:00,1000.597412109375,10.847227,10847.227 +21055,2025-03-09T16:17:04.950686-07:00,1000.588134765625,10.853777,10853.777 +21056,2025-03-09T16:17:15.790073-07:00,1000.5907592773438,10.839387,10839.387 +21057,2025-03-09T16:17:26.637692-07:00,1000.609375,10.847619,10847.619 +21058,2025-03-09T16:17:37.483303-07:00,1000.5549926757812,10.845611,10845.611 +21059,2025-03-09T16:17:48.335009-07:00,1000.5870361328125,10.851706,10851.706 +21060,2025-03-09T16:17:59.178771-07:00,1000.6135864257812,10.843762,10843.762 +21061,2025-03-09T16:18:10.021687-07:00,1000.618896484375,10.842916,10842.916 +21062,2025-03-09T16:18:20.876741-07:00,1000.5914306640625,10.855054,10855.054 +21063,2025-03-09T16:18:31.720817-07:00,1000.5625,10.844076,10844.076 +21064,2025-03-09T16:18:42.566120-07:00,1000.6046142578125,10.845303,10845.303 +21065,2025-03-09T16:18:53.419114-07:00,1000.5635375976562,10.852994,10852.994 +21066,2025-03-09T16:19:04.268170-07:00,1000.60986328125,10.849056,10849.056 +21067,2025-03-09T16:19:15.115088-07:00,1000.5979614257812,10.846918,10846.918 +21068,2025-03-09T16:19:25.952683-07:00,1000.5857543945312,10.837595,10837.595 +21069,2025-03-09T16:19:36.800694-07:00,1000.6387329101562,10.848011,10848.011 +21070,2025-03-09T16:19:47.654832-07:00,1000.5990600585938,10.854138,10854.138 +21071,2025-03-09T16:19:58.498695-07:00,1000.60693359375,10.843863,10843.863 +21072,2025-03-09T16:20:09.349695-07:00,1000.6146240234375,10.851,10851.0 +21073,2025-03-09T16:20:20.184840-07:00,1000.6543579101562,10.835145,10835.145 +21074,2025-03-09T16:20:31.030674-07:00,1000.6135864257812,10.845834,10845.834 +21075,2025-03-09T16:20:41.871741-07:00,1000.6543579101562,10.841067,10841.067 +21076,2025-03-09T16:20:52.720692-07:00,1000.6202392578125,10.848951,10848.951 +21077,2025-03-09T16:21:03.563825-07:00,1000.6135864257812,10.843133,10843.133 +21078,2025-03-09T16:21:14.406682-07:00,1000.6334228515625,10.842857,10842.857 +21079,2025-03-09T16:21:25.261695-07:00,1000.6292114257812,10.855013,10855.013 +21080,2025-03-09T16:21:36.104691-07:00,1000.6292114257812,10.842996,10842.996 +21081,2025-03-09T16:21:46.957019-07:00,1000.6040649414062,10.852328,10852.328 +21082,2025-03-09T16:21:57.802687-07:00,1000.6358032226562,10.845668,10845.668 +21083,2025-03-09T16:22:08.639989-07:00,1000.5851440429688,10.837302,10837.302 +21084,2025-03-09T16:22:19.478811-07:00,1000.5984497070312,10.838822,10838.822 +21085,2025-03-09T16:22:30.329692-07:00,1000.5865478515625,10.850881,10850.881 +21086,2025-03-09T16:22:41.163941-07:00,1000.5931396484375,10.834249,10834.249 +21087,2025-03-09T16:22:52.004938-07:00,1000.5997924804688,10.840997,10840.997 +21088,2025-03-09T16:23:02.847691-07:00,1000.5809326171875,10.842753,10842.753 +21089,2025-03-09T16:23:13.699877-07:00,1000.613037109375,10.852186,10852.186 +21090,2025-03-09T16:23:24.539684-07:00,1000.6220092773438,10.839807,10839.807 +21091,2025-03-09T16:23:35.389676-07:00,1000.5623168945312,10.849992,10849.992 +21092,2025-03-09T16:23:46.229052-07:00,1000.553466796875,10.839376,10839.376 +21093,2025-03-09T16:23:57.080200-07:00,1000.5401611328125,10.851148,10851.148 +21094,2025-03-09T16:24:07.924745-07:00,1000.6051025390625,10.844545,10844.545 +21095,2025-03-09T16:24:18.776841-07:00,1000.6116943359375,10.852096,10852.096 +21096,2025-03-09T16:24:29.616691-07:00,1000.5775146484375,10.83985,10839.85 +21097,2025-03-09T16:24:40.465000-07:00,1000.5918579101562,10.848309,10848.309 +21098,2025-03-09T16:24:51.303247-07:00,1000.5576782226562,10.838247,10838.247 +21099,2025-03-09T16:25:02.152058-07:00,1000.5387573242188,10.848811,10848.811 +21100,2025-03-09T16:25:12.996153-07:00,1000.584228515625,10.844095,10844.095 +21101,2025-03-09T16:25:23.831915-07:00,1000.5894775390625,10.835762,10835.762 +21102,2025-03-09T16:25:34.679924-07:00,1000.6013793945312,10.848009,10848.009 +21103,2025-03-09T16:25:45.534690-07:00,1000.5762329101562,10.854766,10854.766 +21104,2025-03-09T16:25:56.375994-07:00,1000.5748291015625,10.841304,10841.304 +21105,2025-03-09T16:26:07.216245-07:00,1000.5738525390625,10.840251,10840.251 +21106,2025-03-09T16:26:18.063749-07:00,1000.5828247070312,10.847504,10847.504 +21107,2025-03-09T16:26:28.900929-07:00,1000.5857543945312,10.83718,10837.18 +21108,2025-03-09T16:26:39.750044-07:00,1000.6212768554688,10.849115,10849.115 +21109,2025-03-09T16:26:50.593005-07:00,1000.6212768554688,10.842961,10842.961 +21110,2025-03-09T16:27:01.440945-07:00,1000.6387329101562,10.84794,10847.94 +21111,2025-03-09T16:27:12.285924-07:00,1000.572509765625,10.844979,10844.979 +21112,2025-03-09T16:27:23.130682-07:00,1000.6056518554688,10.844758,10844.758 +21113,2025-03-09T16:27:33.966043-07:00,1000.578125,10.835361,10835.361 +21114,2025-03-09T16:27:44.810733-07:00,1000.618896484375,10.84469,10844.69 +21115,2025-03-09T16:27:55.660747-07:00,1000.5923461914062,10.850014,10850.014 +21116,2025-03-09T16:28:06.500675-07:00,1000.538330078125,10.839928,10839.928 +21117,2025-03-09T16:28:17.343928-07:00,1000.5635375976562,10.843253,10843.253 +21118,2025-03-09T16:28:28.192227-07:00,1000.5714721679688,10.848299,10848.299 +21119,2025-03-09T16:28:39.041412-07:00,1000.556884765625,10.849185,10849.185 +21120,2025-03-09T16:28:49.879958-07:00,1000.5714721679688,10.838546,10838.546 +21121,2025-03-09T16:29:00.720691-07:00,1000.584716796875,10.840733,10840.733 +21122,2025-03-09T16:29:11.562746-07:00,1000.578125,10.842055,10842.055 +21123,2025-03-09T16:29:22.403755-07:00,1000.541259765625,10.841009,10841.009 +21124,2025-03-09T16:29:33.254074-07:00,1000.5758056640625,10.850319,10850.319 +21125,2025-03-09T16:29:44.096696-07:00,1000.6177978515625,10.842622,10842.622 +21126,2025-03-09T16:29:54.937936-07:00,1000.6387329101562,10.84124,10841.24 +21127,2025-03-09T16:30:05.780054-07:00,1000.5767211914062,10.842118,10842.118 +21128,2025-03-09T16:30:16.623696-07:00,1000.5460205078125,10.843642,10843.642 +21129,2025-03-09T16:30:27.470690-07:00,1000.5275268554688,10.846994,10846.994 +21130,2025-03-09T16:30:38.320678-07:00,1000.5592041015625,10.849988,10849.988 +21131,2025-03-09T16:30:49.163663-07:00,1000.5791625976562,10.842985,10842.985 +21132,2025-03-09T16:31:00.006261-07:00,1000.600341796875,10.842598,10842.598 +21133,2025-03-09T16:31:10.839721-07:00,1000.5804443359375,10.83346,10833.46 +21134,2025-03-09T16:31:21.693284-07:00,1000.5393676757812,10.853563,10853.563 +21135,2025-03-09T16:31:32.537684-07:00,1000.5250854492188,10.8444,10844.4 +21136,2025-03-09T16:31:43.375686-07:00,1000.5275268554688,10.838002,10838.002 +21137,2025-03-09T16:31:54.223018-07:00,1000.494384765625,10.847332,10847.332 +21138,2025-03-09T16:32:05.058739-07:00,1000.5152587890625,10.835721,10835.721 +21139,2025-03-09T16:32:15.905690-07:00,1000.54736328125,10.846951,10846.951 +21140,2025-03-09T16:32:26.746668-07:00,1000.5814819335938,10.840978,10840.978 +21141,2025-03-09T16:32:37.595528-07:00,1000.597412109375,10.84886,10848.86 +21142,2025-03-09T16:32:48.433053-07:00,1000.5563354492188,10.837525,10837.525 +21143,2025-03-09T16:32:59.276055-07:00,1000.6051025390625,10.843002,10843.002 +21144,2025-03-09T16:33:10.117016-07:00,1000.5466918945312,10.840961,10840.961 +21145,2025-03-09T16:33:20.956129-07:00,1000.579833984375,10.839113,10839.113 +21146,2025-03-09T16:33:31.812370-07:00,1000.5466918945312,10.856241,10856.241 +21147,2025-03-09T16:33:42.652655-07:00,1000.5401611328125,10.840285,10840.285 +21148,2025-03-09T16:33:53.496841-07:00,1000.5543823242188,10.844186,10844.186 +21149,2025-03-09T16:34:04.334669-07:00,1000.521240234375,10.837828,10837.828 +21150,2025-03-09T16:34:15.180689-07:00,1000.5623168945312,10.84602,10846.02 +21151,2025-03-09T16:34:26.015718-07:00,1000.5491333007812,10.835029,10835.029 +21152,2025-03-09T16:34:36.858689-07:00,1000.5634155273438,10.842971,10842.971 +21153,2025-03-09T16:34:47.708688-07:00,1000.552490234375,10.849999,10849.999 +21154,2025-03-09T16:34:58.550902-07:00,1000.5193481445312,10.842214,10842.214 +21155,2025-03-09T16:35:09.389171-07:00,1000.5018920898438,10.838269,10838.269 +21156,2025-03-09T16:35:20.230069-07:00,1000.5416259765625,10.840898,10840.898 +21157,2025-03-09T16:35:31.085019-07:00,1000.5296630859375,10.85495,10854.95 +21158,2025-03-09T16:35:41.923192-07:00,1000.5572509765625,10.838173,10838.173 +21159,2025-03-09T16:35:52.769820-07:00,1000.5175170898438,10.846628,10846.628 +21160,2025-03-09T16:36:03.617220-07:00,1000.5396728515625,10.8474,10847.4 +21161,2025-03-09T16:36:14.452824-07:00,1000.488037109375,10.835604,10835.604 +21162,2025-03-09T16:36:25.291692-07:00,1000.5,10.838868,10838.868 +21163,2025-03-09T16:36:36.148737-07:00,1000.5023193359375,10.857045,10857.045 +21164,2025-03-09T16:36:46.991233-07:00,1000.54345703125,10.842496,10842.496 +21165,2025-03-09T16:36:57.824679-07:00,1000.54443359375,10.833446,10833.446 +21166,2025-03-09T16:37:08.670682-07:00,1000.53125,10.846003,10846.003 +21167,2025-03-09T16:37:19.503667-07:00,1000.490478515625,10.832985,10832.985 +21168,2025-03-09T16:37:30.348384-07:00,1000.53125,10.844717,10844.717 +21169,2025-03-09T16:37:41.191856-07:00,1000.5179443359375,10.843472,10843.472 +21170,2025-03-09T16:37:52.042742-07:00,1000.5279541015625,10.850886,10850.886 +21171,2025-03-09T16:38:02.873077-07:00,1000.5203247070312,10.830335,10830.335 +21172,2025-03-09T16:38:13.721576-07:00,1000.5269775390625,10.848499,10848.499 +21173,2025-03-09T16:38:24.560866-07:00,1000.4673461914062,10.83929,10839.29 +21174,2025-03-09T16:38:35.405873-07:00,1000.4762573242188,10.845007,10845.007 +21175,2025-03-09T16:38:46.246745-07:00,1000.4474487304688,10.840872,10840.872 +21176,2025-03-09T16:38:57.092949-07:00,1000.4882202148438,10.846204,10846.204 +21177,2025-03-09T16:39:07.942998-07:00,1000.5226440429688,10.850049,10850.049 +21178,2025-03-09T16:39:18.791011-07:00,1000.4961547851562,10.848013,10848.013 +21179,2025-03-09T16:39:29.638668-07:00,1000.5303344726562,10.847657,10847.657 +21180,2025-03-09T16:39:40.488741-07:00,1000.5038452148438,10.850073,10850.073 +21181,2025-03-09T16:39:51.336903-07:00,1000.5038452148438,10.848162,10848.162 +21182,2025-03-09T16:40:02.183825-07:00,1000.4918823242188,10.846922,10846.922 +21183,2025-03-09T16:40:13.023164-07:00,1000.4862670898438,10.839339,10839.339 +21184,2025-03-09T16:40:23.874009-07:00,1000.4664306640625,10.850845,10850.845 +21185,2025-03-09T16:40:34.708296-07:00,1000.4876708984375,10.834287,10834.287 +21186,2025-03-09T16:40:45.557653-07:00,1000.51513671875,10.849357,10849.357 +21187,2025-03-09T16:40:56.394692-07:00,1000.4554443359375,10.837039,10837.039 +21188,2025-03-09T16:41:07.239883-07:00,1000.489990234375,10.845191,10845.191 +21189,2025-03-09T16:41:18.076033-07:00,1000.4910278320312,10.83615,10836.15 +21190,2025-03-09T16:41:28.921161-07:00,1000.5042114257812,10.845128,10845.128 +21191,2025-03-09T16:41:39.761813-07:00,1000.4933471679688,10.840652,10840.652 +21192,2025-03-09T16:41:50.600314-07:00,1000.4615478515625,10.838501,10838.501 +21193,2025-03-09T16:42:01.452963-07:00,1000.4639282226562,10.852649,10852.649 +21194,2025-03-09T16:42:12.297930-07:00,1000.4771728515625,10.844967,10844.967 +21195,2025-03-09T16:42:23.140753-07:00,1000.4715576171875,10.842823,10842.823 +21196,2025-03-09T16:42:33.987892-07:00,1000.4927978515625,10.847139,10847.139 +21197,2025-03-09T16:42:44.830816-07:00,1000.473876953125,10.842924,10842.924 +21198,2025-03-09T16:42:55.684162-07:00,1000.4906005859375,10.853346,10853.346 +21199,2025-03-09T16:43:06.535788-07:00,1000.4351806640625,10.851626,10851.626 +21200,2025-03-09T16:43:17.378453-07:00,1000.4508056640625,10.842665,10842.665 +21201,2025-03-09T16:43:28.222681-07:00,1000.4232788085938,10.844228,10844.228 +21202,2025-03-09T16:43:38.676969-07:00,1000.4454956054688,10.454288,10454.288 +21203,2025-03-09T16:43:39.076688-07:00,1000.43994140625,0.399719,399.719 +21204,2025-03-09T16:43:49.917793-07:00,1000.4356079101562,10.841105,10841.105 +21205,2025-03-09T16:44:00.757014-07:00,1000.4502563476562,10.839221,10839.221 +21206,2025-03-09T16:44:11.612222-07:00,1000.42138671875,10.855208,10855.208 +21207,2025-03-09T16:44:22.447687-07:00,1000.4104614257812,10.835465,10835.465 +21208,2025-03-09T16:44:33.286688-07:00,1000.4104614257812,10.839001,10839.001 +21209,2025-03-09T16:44:44.132740-07:00,1000.42236328125,10.846052,10846.052 +21210,2025-03-09T16:44:54.983693-07:00,1000.4393920898438,10.850953,10850.953 +21211,2025-03-09T16:45:05.822116-07:00,1000.4668579101562,10.838423,10838.423 +21212,2025-03-09T16:45:16.678063-07:00,1000.427001953125,10.855947,10855.947 +21213,2025-03-09T16:45:27.522856-07:00,1000.3976440429688,10.844793,10844.793 +21214,2025-03-09T16:45:38.369692-07:00,1000.4132690429688,10.846836,10846.836 +21215,2025-03-09T16:45:49.209433-07:00,1000.4089965820312,10.839741,10839.741 +21216,2025-03-09T16:46:00.059688-07:00,1000.4905395507812,10.850255,10850.255 +21217,2025-03-09T16:46:10.908033-07:00,1000.4653930664062,10.848345,10848.345 +21218,2025-03-09T16:46:21.761069-07:00,1000.4412231445312,10.853036,10853.036 +21219,2025-03-09T16:46:32.598681-07:00,1000.4090576171875,10.837612,10837.612 +21220,2025-03-09T16:46:43.450950-07:00,1000.3915405273438,10.852269,10852.269 +21221,2025-03-09T16:46:54.285690-07:00,1000.411376953125,10.83474,10834.74 +21222,2025-03-09T16:47:05.138875-07:00,1000.412841796875,10.853185,10853.185 +21223,2025-03-09T16:47:15.979953-07:00,1000.4151611328125,10.841078,10841.078 +21224,2025-03-09T16:47:26.832068-07:00,1000.4095458984375,10.852115,10852.115 +21225,2025-03-09T16:47:37.675964-07:00,1000.4293823242188,10.843896,10843.896 +21226,2025-03-09T16:47:48.522660-07:00,1000.41748046875,10.846696,10846.696 +21227,2025-03-09T16:47:59.366848-07:00,1000.45166015625,10.844188,10844.188 +21228,2025-03-09T16:48:10.214951-07:00,1000.4407958984375,10.848103,10848.103 +21229,2025-03-09T16:48:21.066691-07:00,1000.4706420898438,10.85174,10851.74 +21230,2025-03-09T16:48:31.910945-07:00,1000.4375,10.844254,10844.254 +21231,2025-03-09T16:48:42.750707-07:00,1000.4464111328125,10.839762,10839.762 +21232,2025-03-09T16:48:53.598684-07:00,1000.459716796875,10.847977,10847.977 +21233,2025-03-09T16:49:04.452936-07:00,1000.4885864257812,10.854252,10854.252 +21234,2025-03-09T16:49:15.296814-07:00,1000.4634399414062,10.843878,10843.878 +21235,2025-03-09T16:49:26.139835-07:00,1000.46435546875,10.843021,10843.021 +21236,2025-03-09T16:49:36.983990-07:00,1000.4657592773438,10.844155,10844.155 +21237,2025-03-09T16:49:47.832099-07:00,1000.4468994140625,10.848109,10848.109 +21238,2025-03-09T16:49:58.685893-07:00,1000.427001953125,10.853794,10853.794 +21239,2025-03-09T16:50:09.525745-07:00,1000.4306030273438,10.839852,10839.852 +21240,2025-03-09T16:50:20.382687-07:00,1000.4293823242188,10.856942,10856.942 +21241,2025-03-09T16:50:31.221729-07:00,1000.4382934570312,10.839042,10839.042 +21242,2025-03-09T16:50:42.060008-07:00,1000.439697265625,10.838279,10838.279 +21243,2025-03-09T16:50:52.907027-07:00,1000.4539184570312,10.847019,10847.019 +21244,2025-03-09T16:51:03.748669-07:00,1000.4473266601562,10.841642,10841.642 +21245,2025-03-09T16:51:14.598692-07:00,1000.435302734375,10.850023,10850.023 +21246,2025-03-09T16:51:25.447832-07:00,1000.4761962890625,10.84914,10849.14 +21247,2025-03-09T16:51:36.294694-07:00,1000.4320068359375,10.846862,10846.862 +21248,2025-03-09T16:51:47.134121-07:00,1000.405517578125,10.839427,10839.427 +21249,2025-03-09T16:51:57.977338-07:00,1000.459716796875,10.843217,10843.217 +21250,2025-03-09T16:52:08.827866-07:00,1000.439697265625,10.850528,10850.528 +21251,2025-03-09T16:52:19.677832-07:00,1000.4453125,10.849966,10849.966 +21252,2025-03-09T16:52:30.529691-07:00,1000.4662475585938,10.851859,10851.859 +21253,2025-03-09T16:52:41.384144-07:00,1000.4343872070312,10.854453,10854.453 +21254,2025-03-09T16:52:52.232685-07:00,1000.4476318359375,10.848541,10848.541 +21255,2025-03-09T16:53:03.083777-07:00,1000.455322265625,10.851092,10851.092 +21256,2025-03-09T16:53:13.936693-07:00,1000.436767578125,10.852916,10852.916 +21257,2025-03-09T16:53:24.791058-07:00,1000.421142578125,10.854365,10854.365 +21258,2025-03-09T16:53:35.644941-07:00,1000.4434204101562,10.853883,10853.883 +21259,2025-03-09T16:53:46.490031-07:00,1000.4434204101562,10.84509,10845.09 +21260,2025-03-09T16:53:57.338187-07:00,1000.4523315429688,10.848156,10848.156 +21261,2025-03-09T16:54:08.181682-07:00,1000.4103393554688,10.843495,10843.495 +21262,2025-03-09T16:54:19.030055-07:00,1000.419189453125,10.848373,10848.373 +21263,2025-03-09T16:54:29.873684-07:00,1000.44580078125,10.843629,10843.629 +21264,2025-03-09T16:54:40.724828-07:00,1000.4679565429688,10.851144,10851.144 +21265,2025-03-09T16:54:51.580692-07:00,1000.4414672851562,10.855864,10855.864 +21266,2025-03-09T16:55:02.434688-07:00,1000.45703125,10.853996,10853.996 +21267,2025-03-09T16:55:13.275355-07:00,1000.4159545898438,10.840667,10840.667 +21268,2025-03-09T16:55:24.124011-07:00,1000.438232421875,10.848656,10848.656 +21269,2025-03-09T16:55:34.976280-07:00,1000.47265625,10.852269,10852.269 +21270,2025-03-09T16:55:45.817742-07:00,1000.47265625,10.841462,10841.462 +21271,2025-03-09T16:55:56.668946-07:00,1000.4338989257812,10.851204,10851.204 +21272,2025-03-09T16:56:07.516728-07:00,1000.4498291015625,10.847782,10847.782 +21273,2025-03-09T16:56:18.359936-07:00,1000.4445190429688,10.843208,10843.208 +21274,2025-03-09T16:56:29.214788-07:00,1000.4190673828125,10.854852,10854.852 +21275,2025-03-09T16:56:40.061021-07:00,1000.458740234375,10.846233,10846.233 +21276,2025-03-09T16:56:50.913062-07:00,1000.4545288085938,10.852041,10852.041 +21277,2025-03-09T16:57:01.766974-07:00,1000.4568481445312,10.853912,10853.912 +21278,2025-03-09T16:57:12.615334-07:00,1000.4545288085938,10.84836,10848.36 +21279,2025-03-09T16:57:23.475021-07:00,1000.4724731445312,10.859687,10859.687 +21280,2025-03-09T16:57:34.325225-07:00,1000.4857788085938,10.850204,10850.204 +21281,2025-03-09T16:57:45.167687-07:00,1000.5079956054688,10.842462,10842.462 +21282,2025-03-09T16:57:56.021825-07:00,1000.4923706054688,10.854138,10854.138 +21283,2025-03-09T16:58:06.858691-07:00,1000.4880981445312,10.836866,10836.866 +21284,2025-03-09T16:58:17.700909-07:00,1000.4824829101562,10.842218,10842.218 +21285,2025-03-09T16:58:28.556840-07:00,1000.4681396484375,10.855931,10855.931 +21286,2025-03-09T16:58:39.406810-07:00,1000.4813842773438,10.84997,10849.97 +21287,2025-03-09T16:58:50.251084-07:00,1000.5023193359375,10.844274,10844.274 +21288,2025-03-09T16:59:01.105006-07:00,1000.4970092773438,10.853922,10853.922 +21289,2025-03-09T16:59:11.943964-07:00,1000.48486328125,10.838958,10838.958 +21290,2025-03-09T16:59:22.797712-07:00,1000.503662109375,10.853748,10853.748 +21291,2025-03-09T16:59:33.637672-07:00,1000.46923828125,10.83996,10839.96 +21292,2025-03-09T16:59:44.492912-07:00,1000.4715576171875,10.85524,10855.24 +21293,2025-03-09T16:59:55.341062-07:00,1000.457275390625,10.84815,10848.15 +21294,2025-03-09T17:00:06.184029-07:00,1000.45166015625,10.842967,10842.967 +21295,2025-03-09T17:00:17.039187-07:00,1000.4439697265625,10.855158,10855.158 +21296,2025-03-09T17:00:27.887693-07:00,1000.4715576171875,10.848506,10848.506 +21297,2025-03-09T17:00:38.737684-07:00,1000.4662475585938,10.849991,10849.991 +21298,2025-03-09T17:00:49.579669-07:00,1000.4662475585938,10.841985,10841.985 +21299,2025-03-09T17:01:00.438686-07:00,1000.4439697265625,10.859017,10859.017 +21300,2025-03-09T17:01:11.282686-07:00,1000.4373168945312,10.844,10844.0 +21301,2025-03-09T17:01:22.132753-07:00,1000.4662475585938,10.850067,10850.067 +21302,2025-03-09T17:01:32.975744-07:00,1000.4715576171875,10.842991,10842.991 +21303,2025-03-09T17:01:43.834693-07:00,1000.4506225585938,10.858949,10858.949 +21304,2025-03-09T17:01:54.685684-07:00,1000.4728393554688,10.850991,10850.991 +21305,2025-03-09T17:02:05.532021-07:00,1000.4420166015625,10.846337,10846.337 +21306,2025-03-09T17:02:16.384003-07:00,1000.44970703125,10.851982,10851.982 +21307,2025-03-09T17:02:27.241269-07:00,1000.4486694335938,10.857266,10857.266 +21308,2025-03-09T17:02:38.095731-07:00,1000.4606323242188,10.854462,10854.462 +21309,2025-03-09T17:02:48.939715-07:00,1000.4619750976562,10.843984,10843.984 +21310,2025-03-09T17:02:59.800331-07:00,1000.49609375,10.860616,10860.616 +21311,2025-03-09T17:03:10.653972-07:00,1000.4841918945312,10.853641,10853.641 +21312,2025-03-09T17:03:21.492942-07:00,1000.470947265625,10.83897,10838.97 +21313,2025-03-09T17:03:32.340840-07:00,1000.4600219726562,10.847898,10847.898 +21314,2025-03-09T17:03:43.201734-07:00,1000.48095703125,10.860894,10860.894 +21315,2025-03-09T17:03:54.054753-07:00,1000.4874877929688,10.853019,10853.019 +21316,2025-03-09T17:04:04.899027-07:00,1000.4467163085938,10.844274,10844.274 +21317,2025-03-09T17:04:15.751695-07:00,1000.4553833007812,10.852668,10852.668 +21318,2025-03-09T17:04:26.595204-07:00,1000.469970703125,10.843509,10843.509 +21319,2025-03-09T17:04:37.441958-07:00,1000.4500732421875,10.846754,10846.754 +21320,2025-03-09T17:04:48.297052-07:00,1000.4511108398438,10.855094,10855.094 +21321,2025-03-09T17:04:59.147917-07:00,1000.4590454101562,10.850865,10850.865 +21322,2025-03-09T17:05:09.988689-07:00,1000.4732666015625,10.840772,10840.772 +21323,2025-03-09T17:05:20.844690-07:00,1000.46142578125,10.856001,10856.001 +21324,2025-03-09T17:05:31.697727-07:00,1000.4756469726562,10.853037,10853.037 +21325,2025-03-09T17:05:42.582953-07:00,1000.4491577148438,10.885226,10885.226 +21326,2025-03-09T17:05:53.441106-07:00,1000.44384765625,10.858153,10858.153 +21327,2025-03-09T17:06:04.287916-07:00,1000.4395141601562,10.84681,10846.81 +21328,2025-03-09T17:06:15.144856-07:00,1000.453857421875,10.85694,10856.94 +21329,2025-03-09T17:06:25.986054-07:00,1000.4405517578125,10.841198,10841.198 +21330,2025-03-09T17:06:36.833091-07:00,1000.46044921875,10.847037,10847.037 +21331,2025-03-09T17:06:47.687059-07:00,1000.4749755859375,10.853968,10853.968 +21332,2025-03-09T17:06:58.530567-07:00,1000.4219360351562,10.843508,10843.508 +21333,2025-03-09T17:07:09.381113-07:00,1000.4442138671875,10.850546,10850.546 +21334,2025-03-09T17:07:20.234268-07:00,1000.4176635742188,10.853155,10853.155 +21335,2025-03-09T17:07:31.087795-07:00,1000.4176635742188,10.853527,10853.527 +21336,2025-03-09T17:07:41.948244-07:00,1000.4319458007812,10.860449,10860.449 +21337,2025-03-09T17:07:52.795025-07:00,1000.467529296875,10.846781,10846.781 +21338,2025-03-09T17:08:03.641168-07:00,1000.446533203125,10.846143,10846.143 +21339,2025-03-09T17:08:14.500807-07:00,1000.447509765625,10.859639,10859.639 +21340,2025-03-09T17:08:25.354806-07:00,1000.4489135742188,10.853999,10853.999 +21341,2025-03-09T17:08:36.204237-07:00,1000.4554443359375,10.849431,10849.431 +21342,2025-03-09T17:08:47.059079-07:00,1000.4707641601562,10.854842,10854.842 +21343,2025-03-09T17:08:57.913799-07:00,1000.4763793945312,10.85472,10854.72 +21344,2025-03-09T17:09:08.768844-07:00,1000.4589233398438,10.855045,10855.045 +21345,2025-03-09T17:09:19.625782-07:00,1000.4877319335938,10.856938,10856.938 +21346,2025-03-09T17:09:30.470284-07:00,1000.4744262695312,10.844502,10844.502 +21347,2025-03-09T17:09:41.331898-07:00,1000.4977416992188,10.861614,10861.614 +21348,2025-03-09T17:09:52.180025-07:00,1000.510009765625,10.848127,10848.127 +21349,2025-03-09T17:10:03.029171-07:00,1000.4967041015625,10.849146,10849.146 +21350,2025-03-09T17:10:13.890815-07:00,1000.4834594726562,10.861644,10861.644 +21351,2025-03-09T17:10:24.742038-07:00,1000.4910888671875,10.851223,10851.223 +21352,2025-03-09T17:10:35.592875-07:00,1000.4946899414062,10.850837,10850.837 +21353,2025-03-09T17:10:46.451027-07:00,1000.493408203125,10.858152,10858.152 +21354,2025-03-09T17:10:57.301808-07:00,1000.493408203125,10.850781,10850.781 +21355,2025-03-09T17:11:08.167163-07:00,1000.4957885742188,10.865355,10865.355 +21356,2025-03-09T17:11:19.025872-07:00,1000.5147094726562,10.858709,10858.709 +21357,2025-03-09T17:11:29.885798-07:00,1000.521240234375,10.859926,10859.926 +21358,2025-03-09T17:11:40.744804-07:00,1000.5000610351562,10.859006,10859.006 +21359,2025-03-09T17:11:51.598810-07:00,1000.5037231445312,10.854006,10854.006 +21360,2025-03-09T17:12:02.449810-07:00,1000.4957885742188,10.851,10851.0 +21361,2025-03-09T17:12:13.314487-07:00,1000.4970092773438,10.864677,10864.677 +21362,2025-03-09T17:12:24.165850-07:00,1000.4981079101562,10.851363,10851.363 +21363,2025-03-09T17:12:35.019113-07:00,1000.4970092773438,10.853263,10853.263 +21364,2025-03-09T17:12:45.874085-07:00,1000.490478515625,10.854972,10854.972 +21365,2025-03-09T17:12:56.735457-07:00,1000.5259399414062,10.861372,10861.372 +21366,2025-03-09T17:13:07.589522-07:00,1000.4795532226562,10.854065,10854.065 +21367,2025-03-09T17:13:18.449008-07:00,1000.4927978515625,10.859486,10859.486 +21368,2025-03-09T17:13:29.303140-07:00,1000.4937744140625,10.854132,10854.132 +21369,2025-03-09T17:13:40.154109-07:00,1000.4913940429688,10.850969,10850.969 +21370,2025-03-09T17:13:51.012107-07:00,1000.4649047851562,10.857998,10857.998 +21371,2025-03-09T17:14:01.867111-07:00,1000.4782104492188,10.855004,10855.004 +21372,2025-03-09T17:14:12.727078-07:00,1000.4927978515625,10.859967,10859.967 +21373,2025-03-09T17:14:23.582816-07:00,1000.5137329101562,10.855738,10855.738 +21374,2025-03-09T17:14:34.442792-07:00,1000.4937744140625,10.859976,10859.976 +21375,2025-03-09T17:14:45.298749-07:00,1000.46728515625,10.855957,10855.957 +21376,2025-03-09T17:14:56.161805-07:00,1000.473876953125,10.863056,10863.056 +21377,2025-03-09T17:15:07.022217-07:00,1000.4884643554688,10.860412,10860.412 +21378,2025-03-09T17:15:17.887782-07:00,1000.4619750976562,10.865565,10865.565 +21379,2025-03-09T17:15:28.748791-07:00,1000.4695434570312,10.861009,10861.009 +21380,2025-03-09T17:15:39.602243-07:00,1000.4695434570312,10.853452,10853.452 +21381,2025-03-09T17:15:50.459113-07:00,1000.4639892578125,10.85687,10856.87 +21382,2025-03-09T17:16:01.328858-07:00,1000.45068359375,10.869745,10869.745 +21383,2025-03-09T17:16:12.180973-07:00,1000.4430541992188,10.852115,10852.115 +21384,2025-03-09T17:16:23.044169-07:00,1000.444091796875,10.863196,10863.196 +21385,2025-03-09T17:16:33.896059-07:00,1000.44970703125,10.85189,10851.89 +21386,2025-03-09T17:16:44.747483-07:00,1000.4718627929688,10.851424,10851.424 +21387,2025-03-09T17:16:55.606053-07:00,1000.4639892578125,10.85857,10858.57 +21388,2025-03-09T17:17:06.456041-07:00,1000.48388671875,10.849988,10849.988 +21389,2025-03-09T17:17:17.304124-07:00,1000.4785766601562,10.848083,10848.083 +21390,2025-03-09T17:17:28.159838-07:00,1000.4620361328125,10.855714,10855.714 +21391,2025-03-09T17:17:39.026193-07:00,1000.4464111328125,10.866355,10866.355 +21392,2025-03-09T17:17:49.885196-07:00,1000.4718627929688,10.859003,10859.003 +21393,2025-03-09T17:18:00.736892-07:00,1000.4620361328125,10.851696,10851.696 +21394,2025-03-09T17:18:11.595960-07:00,1000.44873046875,10.859068,10859.068 +21395,2025-03-09T17:18:22.460937-07:00,1000.454345703125,10.864977,10864.977 +21396,2025-03-09T17:18:33.309080-07:00,1000.44873046875,10.848143,10848.143 +21397,2025-03-09T17:18:44.169803-07:00,1000.4354858398438,10.860723,10860.723 +21398,2025-03-09T17:18:55.023138-07:00,1000.4378051757812,10.853335,10853.335 +21399,2025-03-09T17:19:05.882111-07:00,1000.4235229492188,10.858973,10858.973 +21400,2025-03-09T17:19:16.730742-07:00,1000.4590454101562,10.848631,10848.631 +21401,2025-03-09T17:19:27.592856-07:00,1000.44580078125,10.862114,10862.114 +21402,2025-03-09T17:19:38.453519-07:00,1000.4667358398438,10.860663,10860.663 +21403,2025-03-09T17:19:49.307986-07:00,1000.3992919921875,10.854467,10854.467 +21404,2025-03-09T17:20:00.178812-07:00,1000.4481201171875,10.870826,10870.826 +21405,2025-03-09T17:20:11.032140-07:00,1000.455810546875,10.853328,10853.328 +21406,2025-03-09T17:20:21.897054-07:00,1000.440185546875,10.864914,10864.914 +21407,2025-03-09T17:20:32.749807-07:00,1000.4613037109375,10.852753,10852.753 +21408,2025-03-09T17:20:43.604795-07:00,1000.4238891601562,10.854988,10854.988 +21409,2025-03-09T17:20:54.468146-07:00,1000.435791015625,10.863351,10863.351 +21410,2025-03-09T17:21:05.322861-07:00,1000.4636840820312,10.854715,10854.715 +21411,2025-03-09T17:21:16.181800-07:00,1000.39599609375,10.858939,10858.939 +21412,2025-03-09T17:21:27.030439-07:00,1000.3973388671875,10.848639,10848.639 +21413,2025-03-09T17:21:37.886021-07:00,1000.4527587890625,10.855582,10855.582 +21414,2025-03-09T17:21:48.739912-07:00,1000.4328002929688,10.853891,10853.891 +21415,2025-03-09T17:21:59.604785-07:00,1000.4315795898438,10.864873,10864.873 +21416,2025-03-09T17:22:10.458808-07:00,1000.4295043945312,10.854023,10854.023 +21417,2025-03-09T17:22:21.313845-07:00,1000.421875,10.855037,10855.037 +21418,2025-03-09T17:22:32.170807-07:00,1000.421875,10.856962,10856.962 +21419,2025-03-09T17:22:43.031016-07:00,1000.399658203125,10.860209,10860.209 +21420,2025-03-09T17:22:53.889506-07:00,1000.42626953125,10.85849,10858.49 +21421,2025-03-09T17:23:04.738316-07:00,1000.4404907226562,10.84881,10848.81 +21422,2025-03-09T17:23:15.593005-07:00,1000.4470825195312,10.854689,10854.689 +21423,2025-03-09T17:23:26.457195-07:00,1000.40966796875,10.86419,10864.19 +21424,2025-03-09T17:23:37.313193-07:00,1000.421875,10.855998,10855.998 +21425,2025-03-09T17:23:48.173082-07:00,1000.449462890625,10.859889,10859.889 +21426,2025-03-09T17:23:59.022144-07:00,1000.4417724609375,10.849062,10849.062 +21427,2025-03-09T17:24:09.883014-07:00,1000.4195556640625,10.86087,10860.87 +21428,2025-03-09T17:24:20.741047-07:00,1000.400634765625,10.858033,10858.033 +21429,2025-03-09T17:24:31.602169-07:00,1000.420654296875,10.861122,10861.122 +21430,2025-03-09T17:24:42.464950-07:00,1000.400634765625,10.862781,10862.781 +21431,2025-03-09T17:24:53.322808-07:00,1000.39404296875,10.857858,10857.858 +21432,2025-03-09T17:25:04.187253-07:00,1000.3929443359375,10.864445,10864.445 +21433,2025-03-09T17:25:15.037261-07:00,1000.4129638671875,10.850008,10850.008 +21434,2025-03-09T17:25:25.898742-07:00,1000.4195556640625,10.861481,10861.481 +21435,2025-03-09T17:25:36.758122-07:00,1000.3707885742188,10.85938,10859.38 +21436,2025-03-09T17:25:47.624445-07:00,1000.37744140625,10.866323,10866.323 +21437,2025-03-09T17:25:58.481241-07:00,1000.3574829101562,10.856796,10856.796 +21438,2025-03-09T17:26:09.338808-07:00,1000.389404296875,10.857567,10857.567 +21439,2025-03-09T17:26:20.186801-07:00,1000.3495483398438,10.847993,10847.993 +21440,2025-03-09T17:26:31.050807-07:00,1000.371826171875,10.864006,10864.006 +21441,2025-03-09T17:26:41.902595-07:00,1000.3850708007812,10.851788,10851.788 +21442,2025-03-09T17:26:52.765796-07:00,1000.37744140625,10.863201,10863.201 +21443,2025-03-09T17:27:03.615935-07:00,1000.3731079101562,10.850139,10850.139 +21444,2025-03-09T17:27:14.470800-07:00,1000.3797607421875,10.854865,10854.865 +21445,2025-03-09T17:27:25.326040-07:00,1000.371826171875,10.85524,10855.24 +21446,2025-03-09T17:27:36.180063-07:00,1000.37744140625,10.854023,10854.023 +21447,2025-03-09T17:27:47.032890-07:00,1000.39404296875,10.852827,10852.827 +21448,2025-03-09T17:27:57.883040-07:00,1000.3953247070312,10.85015,10850.15 +21449,2025-03-09T17:28:08.741799-07:00,1000.4020385742188,10.858759,10858.759 +21450,2025-03-09T17:28:19.586818-07:00,1000.3864135742188,10.845019,10845.019 +21451,2025-03-09T17:28:30.447802-07:00,1000.4073486328125,10.860984,10860.984 +21452,2025-03-09T17:28:41.306863-07:00,1000.3982543945312,10.859061,10859.061 +21453,2025-03-09T17:28:52.160809-07:00,1000.3731079101562,10.853946,10853.946 +21454,2025-03-09T17:29:03.026811-07:00,1000.3399047851562,10.866002,10866.002 +21455,2025-03-09T17:29:13.882799-07:00,1000.3807983398438,10.855988,10855.988 +21456,2025-03-09T17:29:24.741031-07:00,1000.3929443359375,10.858232,10858.232 +21457,2025-03-09T17:29:35.590803-07:00,1000.3873291015625,10.849772,10849.772 +21458,2025-03-09T17:29:46.450804-07:00,1000.399658203125,10.860001,10860.001 +21459,2025-03-09T17:29:57.311770-07:00,1000.400634765625,10.860966,10860.966 +21460,2025-03-09T17:30:08.176159-07:00,1000.4176025390625,10.864389,10864.389 +21461,2025-03-09T17:30:19.037912-07:00,1000.3873291015625,10.861753,10861.753 +21462,2025-03-09T17:30:29.895780-07:00,1000.4085693359375,10.857868,10857.868 +21463,2025-03-09T17:30:40.752053-07:00,1000.3873291015625,10.856273,10856.273 +21464,2025-03-09T17:30:51.600027-07:00,1000.3764038085938,10.847974,10847.974 +21465,2025-03-09T17:31:02.452499-07:00,1000.36083984375,10.852472,10852.472 +21466,2025-03-09T17:31:13.317431-07:00,1000.3731079101562,10.864932,10864.932 +21467,2025-03-09T17:31:24.169890-07:00,1000.39404296875,10.852459,10852.459 +21468,2025-03-09T17:31:35.023802-07:00,1000.3707885742188,10.853912,10853.912 +21469,2025-03-09T17:31:45.881931-07:00,1000.384033203125,10.858129,10858.129 +21470,2025-03-09T17:31:56.744159-07:00,1000.3973388671875,10.862228,10862.228 +21471,2025-03-09T17:32:07.593777-07:00,1000.37841796875,10.849618,10849.618 +21472,2025-03-09T17:32:18.455054-07:00,1000.4093017578125,10.861277,10861.277 +21473,2025-03-09T17:32:29.305805-07:00,1000.44482421875,10.850751,10850.751 +21474,2025-03-09T17:32:40.162677-07:00,1000.3883666992188,10.856872,10856.872 +21475,2025-03-09T17:32:51.010966-07:00,1000.3485717773438,10.848289,10848.289 +21476,2025-03-09T17:33:01.866804-07:00,1000.3883666992188,10.855838,10855.838 +21477,2025-03-09T17:33:12.719402-07:00,1000.3883666992188,10.852598,10852.598 +21478,2025-03-09T17:33:23.575810-07:00,1000.3870239257812,10.856408,10856.408 +21479,2025-03-09T17:33:34.442782-07:00,1000.39599609375,10.866972,10866.972 +21480,2025-03-09T17:33:45.297111-07:00,1000.38037109375,10.854329,10854.329 +21481,2025-03-09T17:33:56.162142-07:00,1000.39501953125,10.865031,10865.031 +21482,2025-03-09T17:34:07.020152-07:00,1000.3926391601562,10.85801,10858.01 +21483,2025-03-09T17:34:17.875135-07:00,1000.406982421875,10.854983,10854.983 +21484,2025-03-09T17:34:28.724817-07:00,1000.372802734375,10.849682,10849.682 +21485,2025-03-09T17:34:39.584125-07:00,1000.39794921875,10.859308,10859.308 +21486,2025-03-09T17:34:50.445307-07:00,1000.3781127929688,10.861182,10861.182 +21487,2025-03-09T17:35:01.305811-07:00,1000.3992919921875,10.860504,10860.504 +21488,2025-03-09T17:35:12.154809-07:00,1000.3936767578125,10.848998,10848.998 +21489,2025-03-09T17:35:23.012064-07:00,1000.37939453125,10.857255,10857.255 +21490,2025-03-09T17:35:33.879305-07:00,1000.4082641601562,10.867241,10867.241 +21491,2025-03-09T17:35:44.738954-07:00,1000.385986328125,10.859649,10859.649 +21492,2025-03-09T17:35:55.594117-07:00,1000.385986328125,10.855163,10855.163 +21493,2025-03-09T17:36:06.454002-07:00,1000.3781127929688,10.859885,10859.885 +21494,2025-03-09T17:36:17.319454-07:00,1000.36376953125,10.865452,10865.452 +21495,2025-03-09T17:36:28.173476-07:00,1000.39794921875,10.854022,10854.022 +21496,2025-03-09T17:36:39.035008-07:00,1000.3704833984375,10.861532,10861.532 +21497,2025-03-09T17:36:49.886054-07:00,1000.3713989257812,10.851046,10851.046 +21498,2025-03-09T17:37:00.749188-07:00,1000.3704833984375,10.863134,10863.134 +21499,2025-03-09T17:37:11.605324-07:00,1000.39794921875,10.856136,10856.136 +21500,2025-03-09T17:37:22.469295-07:00,1000.403564453125,10.863971,10863.971 +21501,2025-03-09T17:37:33.317870-07:00,1000.3613891601562,10.848575,10848.575 +21502,2025-03-09T17:37:44.179042-07:00,1000.3548583984375,10.861172,10861.172 +21503,2025-03-09T17:37:55.032811-07:00,1000.3601684570312,10.853769,10853.769 +21504,2025-03-09T17:38:05.887907-07:00,1000.3734130859375,10.855096,10855.096 +21505,2025-03-09T17:38:16.742027-07:00,1000.3681030273438,10.85412,10854.12 +21506,2025-03-09T17:38:27.592208-07:00,1000.3613891601562,10.850181,10850.181 +21507,2025-03-09T17:38:38.439113-07:00,1000.4065551757812,10.846905,10846.905 +21508,2025-03-09T17:38:49.292325-07:00,1000.3657836914062,10.853212,10853.212 +21509,2025-03-09T17:39:00.140111-07:00,1000.3856201171875,10.847786,10847.786 +21510,2025-03-09T17:39:21.845576-07:00,1000.3445434570312,21.705465,21705.465 +21511,2025-03-09T17:39:32.694812-07:00,1000.3524780273438,10.849236,10849.236 +21512,2025-03-09T17:39:43.554437-07:00,1000.3644409179688,10.859625,10859.625 +21513,2025-03-09T17:39:54.409069-07:00,1000.3634643554688,10.854632,10854.632 +21514,2025-03-09T17:40:05.263769-07:00,1000.3634643554688,10.8547,10854.7 +21515,2025-03-09T17:40:16.116700-07:00,1000.3312377929688,10.852931,10852.931 +21516,2025-03-09T17:40:26.973599-07:00,1000.3458862304688,10.856899,10856.899 +21517,2025-03-09T17:40:37.834285-07:00,1000.3046875,10.860686,10860.686 +21518,2025-03-09T17:40:48.687961-07:00,1000.3203125,10.853676,10853.676 +21519,2025-03-09T17:40:59.537119-07:00,1000.341552734375,10.849158,10849.158 +21520,2025-03-09T17:41:10.386860-07:00,1000.341552734375,10.849741,10849.741 +21521,2025-03-09T17:41:21.244841-07:00,1000.3216552734375,10.857981,10857.981 +21522,2025-03-09T17:41:32.094805-07:00,1000.3016967773438,10.849964,10849.964 +21523,2025-03-09T17:41:42.941803-07:00,1000.3004760742188,10.846998,10846.998 +21524,2025-03-09T17:41:53.796011-07:00,1000.3150024414062,10.854208,10854.208 +21525,2025-03-09T17:42:04.646808-07:00,1000.3084106445312,10.850797,10850.797 +21526,2025-03-09T17:42:15.492804-07:00,1000.3093872070312,10.845996,10845.996 +21527,2025-03-09T17:42:26.352791-07:00,1000.3084106445312,10.859987,10859.987 +21528,2025-03-09T17:42:37.203807-07:00,1000.2937622070312,10.851016,10851.016 +21529,2025-03-09T17:42:48.057800-07:00,1000.295166015625,10.853993,10853.993 +21530,2025-03-09T17:42:58.918187-07:00,1000.3359375,10.860387,10860.387 +21531,2025-03-09T17:43:09.773790-07:00,1000.3060913085938,10.855603,10855.603 +21532,2025-03-09T17:43:20.617803-07:00,1000.325927734375,10.844013,10844.013 +21533,2025-03-09T17:43:31.475012-07:00,1000.3070068359375,10.857209,10857.209 +21534,2025-03-09T17:43:42.337952-07:00,1000.2937622070312,10.86294,10862.94 +21535,2025-03-09T17:44:04.040159-07:00,1000.3126831054688,21.702207,21702.207 +21536,2025-03-09T17:44:14.892807-07:00,1000.3160400390625,10.852648,10852.648 +21537,2025-03-09T17:44:25.743194-07:00,1000.3150024414062,10.850387,10850.387 +21538,2025-03-09T17:44:36.603940-07:00,1000.2937622070312,10.860746,10860.746 +21539,2025-03-09T17:44:47.456803-07:00,1000.3203125,10.852863,10852.863 +21540,2025-03-09T17:44:58.310807-07:00,1000.27392578125,10.854004,10854.004 +21541,2025-03-09T17:45:09.161971-07:00,1000.3016967773438,10.851164,10851.164 +21542,2025-03-09T17:45:20.020938-07:00,1000.295166015625,10.858967,10858.967 +21543,2025-03-09T17:45:30.883830-07:00,1000.2904663085938,10.862892,10862.892 +21544,2025-03-09T17:45:41.737801-07:00,1000.2937622070312,10.853971,10853.971 +21545,2025-03-09T17:45:52.590048-07:00,1000.3126831054688,10.852247,10852.247 +21546,2025-03-09T17:46:03.449934-07:00,1000.3179931640625,10.859886,10859.886 +21547,2025-03-09T17:46:14.305012-07:00,1000.2927856445312,10.855078,10855.078 +21548,2025-03-09T17:46:25.152806-07:00,1000.3060913085938,10.847794,10847.794 +21549,2025-03-09T17:46:36.014806-07:00,1000.3114013671875,10.862,10862.0 +21550,2025-03-09T17:46:46.866807-07:00,1000.2848510742188,10.852001,10852.001 +21551,2025-03-09T17:46:57.717803-07:00,1000.313720703125,10.850996,10850.996 +21552,2025-03-09T17:47:08.559805-07:00,1000.3060913085938,10.842002,10842.002 +21553,2025-03-09T17:47:19.414408-07:00,1000.2715454101562,10.854603,10854.603 +21554,2025-03-09T17:47:30.274858-07:00,1000.2781982421875,10.86045,10860.45 +21555,2025-03-09T17:47:41.129043-07:00,1000.2715454101562,10.854185,10854.185 +21556,2025-03-09T17:47:51.982809-07:00,1000.2781982421875,10.853766,10853.766 +21557,2025-03-09T17:48:02.833805-07:00,1000.279541015625,10.850996,10850.996 +21558,2025-03-09T17:48:13.698034-07:00,1000.2860717773438,10.864229,10864.229 +21559,2025-03-09T17:48:24.550875-07:00,1000.2927856445312,10.852841,10852.841 +21560,2025-03-09T17:48:35.400803-07:00,1000.2927856445312,10.849928,10849.928 +21561,2025-03-09T17:48:46.253811-07:00,1000.2662353515625,10.853008,10853.008 +21562,2025-03-09T17:48:57.108809-07:00,1000.2871704101562,10.854998,10854.998 +21563,2025-03-09T17:49:07.960061-07:00,1000.279541015625,10.851252,10851.252 +21564,2025-03-09T17:49:18.814382-07:00,1000.2993774414062,10.854321,10854.321 +21565,2025-03-09T17:49:29.672014-07:00,1000.2662353515625,10.857632,10857.632 +21566,2025-03-09T17:49:40.519223-07:00,1000.2449951171875,10.847209,10847.209 +21567,2025-03-09T17:49:51.380003-07:00,1000.2384643554688,10.86078,10860.78 +21568,2025-03-09T17:50:02.226807-07:00,1000.2440795898438,10.846804,10846.804 +21569,2025-03-09T17:50:13.079803-07:00,1000.2396850585938,10.852996,10852.996 +21570,2025-03-09T17:50:23.938808-07:00,1000.2927856445312,10.859005,10859.005 +21571,2025-03-09T17:50:34.783292-07:00,1000.2848510742188,10.844484,10844.484 +21572,2025-03-09T17:50:45.639806-07:00,1000.2848510742188,10.856514,10856.514 +21573,2025-03-09T17:50:56.487115-07:00,1000.2781982421875,10.847309,10847.309 +21574,2025-03-09T17:51:07.348060-07:00,1000.263916015625,10.860945,10860.945 +21575,2025-03-09T17:51:18.198115-07:00,1000.2496948242188,10.850055,10850.055 +21576,2025-03-09T17:51:29.055226-07:00,1000.2761840820312,10.857111,10857.111 +21577,2025-03-09T17:51:39.915348-07:00,1000.2705688476562,10.860122,10860.122 +21578,2025-03-09T17:51:50.764018-07:00,1000.2838134765625,10.84867,10848.67 +21579,2025-03-09T17:52:01.615106-07:00,1000.2904663085938,10.851088,10851.088 +21580,2025-03-09T17:52:12.477805-07:00,1000.2828369140625,10.862699,10862.699 +21581,2025-03-09T17:52:23.332953-07:00,1000.2960815429688,10.855148,10855.148 +21582,2025-03-09T17:52:34.181995-07:00,1000.3114013671875,10.849042,10849.042 +21583,2025-03-09T17:52:45.032095-07:00,1000.3026733398438,10.8501,10850.1 +21584,2025-03-09T17:52:55.891814-07:00,1000.2960815429688,10.859719,10859.719 +21585,2025-03-09T17:53:06.740272-07:00,1000.2894287109375,10.848458,10848.458 +21586,2025-03-09T17:53:17.594138-07:00,1000.2970581054688,10.853866,10853.866 +21587,2025-03-09T17:53:28.455036-07:00,1000.31591796875,10.860898,10860.898 +21588,2025-03-09T17:53:39.307514-07:00,1000.31591796875,10.852478,10852.478 +21589,2025-03-09T17:53:50.162170-07:00,1000.2947387695312,10.854656,10854.656 +21590,2025-03-09T17:54:01.010157-07:00,1000.2881469726562,10.847987,10847.987 +21591,2025-03-09T17:54:11.868441-07:00,1000.3093872070312,10.858284,10858.284 +21592,2025-03-09T17:54:22.717260-07:00,1000.2804565429688,10.848819,10848.819 +21593,2025-03-09T17:54:33.582038-07:00,1000.2738037109375,10.864778,10864.778 +21594,2025-03-09T17:54:44.430391-07:00,1000.2725219726562,10.848353,10848.353 +21595,2025-03-09T17:54:55.291804-07:00,1000.2857666015625,10.861413,10861.413 +21596,2025-03-09T17:55:06.147414-07:00,1000.2725219726562,10.85561,10855.61 +21597,2025-03-09T17:55:17.001072-07:00,1000.2725219726562,10.853658,10853.658 +21598,2025-03-09T17:55:27.855011-07:00,1000.2791137695312,10.853939,10853.939 +21599,2025-03-09T17:55:38.711960-07:00,1000.3004150390625,10.856949,10856.949 +21600,2025-03-09T17:55:49.574041-07:00,1000.2791137695312,10.862081,10862.081 +21601,2025-03-09T17:56:00.432053-07:00,1000.3123168945312,10.858012,10858.012 +21602,2025-03-09T17:56:11.287801-07:00,1000.3046875,10.855748,10855.748 +21603,2025-03-09T17:56:22.147803-07:00,1000.2913818359375,10.860002,10860.002 +21604,2025-03-09T17:56:32.998061-07:00,1000.2913818359375,10.850258,10850.258 +21605,2025-03-09T17:56:43.851794-07:00,1000.2901000976562,10.853733,10853.733 +21606,2025-03-09T17:56:54.705805-07:00,1000.2890625,10.854011,10854.011 +21607,2025-03-09T17:57:05.572794-07:00,1000.27685546875,10.866989,10866.989 +21608,2025-03-09T17:57:16.425798-07:00,1000.2901000976562,10.853004,10853.004 +21609,2025-03-09T17:57:27.280804-07:00,1000.287841796875,10.855006,10855.006 +21610,2025-03-09T17:57:38.123201-07:00,1000.2957153320312,10.842397,10842.397 +21611,2025-03-09T17:57:48.974786-07:00,1000.2745361328125,10.851585,10851.585 +21612,2025-03-09T17:57:59.828466-07:00,1000.2745361328125,10.85368,10853.68 +21613,2025-03-09T17:58:10.681811-07:00,1000.287841796875,10.853345,10853.345 +21614,2025-03-09T17:58:21.529803-07:00,1000.2999877929688,10.847992,10847.992 +21615,2025-03-09T17:58:32.386034-07:00,1000.301025390625,10.856231,10856.231 +21616,2025-03-09T17:58:43.233152-07:00,1000.318603515625,10.847118,10847.118 +21617,2025-03-09T17:58:54.084125-07:00,1000.2787475585938,10.850973,10850.973 +21618,2025-03-09T17:59:04.937479-07:00,1000.272216796875,10.853354,10853.354 +21619,2025-03-09T17:59:15.791136-07:00,1000.2831420898438,10.853657,10853.657 +21620,2025-03-09T17:59:26.643167-07:00,1000.2645263671875,10.852031,10852.031 +21621,2025-03-09T17:59:37.500107-07:00,1000.2831420898438,10.85694,10856.94 +21622,2025-03-09T17:59:48.356140-07:00,1000.2698364257812,10.856033,10856.033 +21623,2025-03-09T17:59:59.207339-07:00,1000.2223510742188,10.851199,10851.199 +21624,2025-03-09T18:00:10.060241-07:00,1000.2843627929688,10.852902,10852.902 +21625,2025-03-09T18:00:20.918136-07:00,1000.302978515625,10.857895,10857.895 +21626,2025-03-09T18:00:31.779831-07:00,1000.29296875,10.861695,10861.695 +21627,2025-03-09T18:00:42.628260-07:00,1000.27978515625,10.848429,10848.429 +21628,2025-03-09T18:00:53.483135-07:00,1000.291748046875,10.854875,10854.875 +21629,2025-03-09T18:01:04.325830-07:00,1000.286376953125,10.842695,10842.695 +21630,2025-03-09T18:01:15.180851-07:00,1000.2717895507812,10.855021,10855.021 +21631,2025-03-09T18:01:26.033897-07:00,1000.2717895507812,10.853046,10853.046 +21632,2025-03-09T18:01:36.888844-07:00,1000.291748046875,10.854947,10854.947 +21633,2025-03-09T18:01:47.755165-07:00,1000.2453002929688,10.866321,10866.321 +21634,2025-03-09T18:01:58.609282-07:00,1000.2717895507812,10.854117,10854.117 +21635,2025-03-09T18:02:09.452056-07:00,1000.29736328125,10.842774,10842.774 +21636,2025-03-09T18:02:20.306840-07:00,1000.2907104492188,10.854784,10854.784 +21637,2025-03-09T18:02:31.162096-07:00,1000.2575073242188,10.855256,10855.256 +21638,2025-03-09T18:02:42.014974-07:00,1000.2498168945312,10.852878,10852.878 +21639,2025-03-09T18:02:52.869976-07:00,1000.2850952148438,10.855002,10855.002 +21640,2025-03-09T18:03:03.724267-07:00,1000.2575073242188,10.854291,10854.291 +21641,2025-03-09T18:03:14.571983-07:00,1000.2518920898438,10.847716,10847.716 +21642,2025-03-09T18:03:25.433844-07:00,1000.2518920898438,10.861861,10861.861 +21643,2025-03-09T18:03:36.277367-07:00,1000.2453002929688,10.843523,10843.523 +21644,2025-03-09T18:03:47.131870-07:00,1000.2509155273438,10.854503,10854.503 +21645,2025-03-09T18:03:57.985206-07:00,1000.253173828125,10.853336,10853.336 +21646,2025-03-09T18:04:08.839807-07:00,1000.2664794921875,10.854601,10854.601 +21647,2025-03-09T18:04:19.695960-07:00,1000.2453002929688,10.856153,10856.153 +21648,2025-03-09T18:04:30.545860-07:00,1000.23095703125,10.8499,10849.9 +21649,2025-03-09T18:04:41.401809-07:00,1000.239990234375,10.855949,10855.949 +21650,2025-03-09T18:04:52.248109-07:00,1000.253173828125,10.8463,10846.3 +21651,2025-03-09T18:05:03.101799-07:00,1000.24658203125,10.85369,10853.69 +21652,2025-03-09T18:05:13.951956-07:00,1000.239990234375,10.850157,10850.157 +21653,2025-03-09T18:05:24.805811-07:00,1000.2267456054688,10.853855,10853.855 +21654,2025-03-09T18:05:35.653297-07:00,1000.2210693359375,10.847486,10847.486 +21655,2025-03-09T18:05:46.538107-07:00,1000.1935424804688,10.88481,10884.81 +21656,2025-03-09T18:05:57.388690-07:00,1000.201171875,10.850583,10850.583 +21657,2025-03-09T18:06:08.236829-07:00,1000.2210693359375,10.848139,10848.139 +21658,2025-03-09T18:06:19.095030-07:00,1000.2276611328125,10.858201,10858.201 +21659,2025-03-09T18:06:29.941604-07:00,1000.1921997070312,10.846574,10846.574 +21660,2025-03-09T18:06:40.794165-07:00,1000.2223510742188,10.852561,10852.561 +21661,2025-03-09T18:06:51.649552-07:00,1000.201171875,10.855387,10855.387 +21662,2025-03-09T18:07:02.505626-07:00,1000.2223510742188,10.856074,10856.074 +21663,2025-03-09T18:07:13.364547-07:00,1000.2290649414062,10.858921,10858.921 +21664,2025-03-09T18:07:24.210022-07:00,1000.201171875,10.845475,10845.475 +21665,2025-03-09T18:07:35.064626-07:00,1000.201171875,10.854604,10854.604 +21666,2025-03-09T18:07:45.922657-07:00,1000.234375,10.858031,10858.031 +21667,2025-03-09T18:07:56.763429-07:00,1000.234375,10.840772,10840.772 +21668,2025-03-09T18:08:07.614481-07:00,1000.2210693359375,10.851052,10851.052 +21669,2025-03-09T18:08:18.461310-07:00,1000.2210693359375,10.846829,10846.829 +21670,2025-03-09T18:08:29.311337-07:00,1000.185546875,10.850027,10850.027 +21671,2025-03-09T18:08:40.166661-07:00,1000.2044677734375,10.855324,10855.324 +21672,2025-03-09T18:08:51.023419-07:00,1000.1921997070312,10.856758,10856.758 +21673,2025-03-09T18:09:01.868387-07:00,1000.2054443359375,10.844968,10844.968 +21674,2025-03-09T18:09:12.723340-07:00,1000.2120361328125,10.854953,10854.953 +21675,2025-03-09T18:09:23.565728-07:00,1000.2111206054688,10.842388,10842.388 +21676,2025-03-09T18:09:34.408482-07:00,1000.2320556640625,10.842754,10842.754 +21677,2025-03-09T18:09:45.264184-07:00,1000.2120361328125,10.855702,10855.702 +21678,2025-03-09T18:09:56.117814-07:00,1000.224365234375,10.85363,10853.63 +21679,2025-03-09T18:10:06.973546-07:00,1000.1835327148438,10.855732,10855.732 +21680,2025-03-09T18:10:17.820642-07:00,1000.2232666015625,10.847096,10847.096 +21681,2025-03-09T18:10:28.668519-07:00,1000.2034301757812,10.847877,10847.877 +21682,2025-03-09T18:10:39.519600-07:00,1000.23095703125,10.851081,10851.081 +21683,2025-03-09T18:10:50.375872-07:00,1000.2011108398438,10.856272,10856.272 +21684,2025-03-09T18:11:01.223338-07:00,1000.2011108398438,10.847466,10847.466 +21685,2025-03-09T18:11:12.083335-07:00,1000.2153930664062,10.859997,10859.997 +21686,2025-03-09T18:11:22.935261-07:00,1000.2285766601562,10.851926,10851.926 +21687,2025-03-09T18:11:33.785321-07:00,1000.208740234375,10.85006,10850.06 +21688,2025-03-09T18:11:44.640342-07:00,1000.2220458984375,10.855021,10855.021 +21689,2025-03-09T18:11:55.498340-07:00,1000.2432861328125,10.857998,10857.998 +21690,2025-03-09T18:12:06.348388-07:00,1000.193115234375,10.850048,10850.048 +21691,2025-03-09T18:12:17.203924-07:00,1000.2210083007812,10.855536,10855.536 +21692,2025-03-09T18:12:28.053825-07:00,1000.2153930664062,10.849901,10849.901 +21693,2025-03-09T18:12:38.912344-07:00,1000.2167358398438,10.858519,10858.519 +21694,2025-03-09T18:12:49.758933-07:00,1000.1888427734375,10.846589,10846.589 +21695,2025-03-09T18:13:00.616511-07:00,1000.190185546875,10.857578,10857.578 +21696,2025-03-09T18:13:11.463703-07:00,1000.2020874023438,10.847192,10847.192 +21697,2025-03-09T18:13:22.307073-07:00,1000.1888427734375,10.84337,10843.37 +21698,2025-03-09T18:13:33.164239-07:00,1000.1821899414062,10.857166,10857.166 +21699,2025-03-09T18:13:44.015898-07:00,1000.1878051757812,10.851659,10851.659 +21700,2025-03-09T18:13:54.865474-07:00,1000.1490478515625,10.849576,10849.576 +21701,2025-03-09T18:14:05.714104-07:00,1000.2034301757812,10.84863,10848.63 +21702,2025-03-09T18:14:16.563466-07:00,1000.2285766601562,10.849362,10849.362 +21703,2025-03-09T18:14:27.412330-07:00,1000.2020874023438,10.848864,10848.864 +21704,2025-03-09T18:14:38.259395-07:00,1000.208740234375,10.847065,10847.065 +21705,2025-03-09T18:14:49.115227-07:00,1000.1888427734375,10.855832,10855.832 +21706,2025-03-09T18:14:59.957398-07:00,1000.174560546875,10.842171,10842.171 +21707,2025-03-09T18:15:10.818340-07:00,1000.1865844726562,10.860942,10860.942 +21708,2025-03-09T18:15:21.658043-07:00,1000.1878051757812,10.839703,10839.703 +21709,2025-03-09T18:15:32.506095-07:00,1000.1865844726562,10.848052,10848.052 +21710,2025-03-09T18:15:43.359480-07:00,1000.1732788085938,10.853385,10853.385 +21711,2025-03-09T18:15:54.210419-07:00,1000.1878051757812,10.850939,10850.939 +21712,2025-03-09T18:16:05.063326-07:00,1000.2034301757812,10.852907,10852.907 +21713,2025-03-09T18:16:15.920481-07:00,1000.1878051757812,10.857155,10857.155 +21714,2025-03-09T18:16:26.768340-07:00,1000.1812744140625,10.847859,10847.859 +21715,2025-03-09T18:16:37.619341-07:00,1000.16796875,10.851001,10851.001 +21716,2025-03-09T18:16:48.474318-07:00,1000.1214599609375,10.854977,10854.977 +21717,2025-03-09T18:16:59.326573-07:00,1000.1612548828125,10.852255,10852.255 +21718,2025-03-09T18:17:10.172915-07:00,1000.1546630859375,10.846342,10846.342 +21719,2025-03-09T18:17:21.022753-07:00,1000.1821899414062,10.849838,10849.838 +21720,2025-03-09T18:17:31.868696-07:00,1000.16357421875,10.845943,10845.943 +21721,2025-03-09T18:17:42.711165-07:00,1000.1423950195312,10.842469,10842.469 +21722,2025-03-09T18:17:53.561336-07:00,1000.190185546875,10.850171,10850.171 +21723,2025-03-09T18:18:04.422490-07:00,1000.14794921875,10.861154,10861.154 +21724,2025-03-09T18:18:15.268337-07:00,1000.16357421875,10.845847,10845.847 +21725,2025-03-09T18:18:26.114644-07:00,1000.1503295898438,10.846307,10846.307 +21726,2025-03-09T18:18:36.971340-07:00,1000.1503295898438,10.856696,10856.696 +21727,2025-03-09T18:18:47.815325-07:00,1000.1570434570312,10.843985,10843.985 +21728,2025-03-09T18:18:58.665340-07:00,1000.1670532226562,10.850015,10850.015 +21729,2025-03-09T18:19:09.508365-07:00,1000.1646728515625,10.843025,10843.025 +21730,2025-03-09T18:19:20.367646-07:00,1000.173583984375,10.859281,10859.281 +21731,2025-03-09T18:19:31.218342-07:00,1000.1470336914062,10.850696,10850.696 +21732,2025-03-09T18:19:42.061535-07:00,1000.17236328125,10.843193,10843.193 +21733,2025-03-09T18:19:52.909381-07:00,1000.173583984375,10.847846,10847.846 +21734,2025-03-09T18:20:03.763351-07:00,1000.1537475585938,10.85397,10853.97 +21735,2025-03-09T18:20:14.616909-07:00,1000.1537475585938,10.853558,10853.558 +21736,2025-03-09T18:20:25.466335-07:00,1000.16796875,10.849426,10849.426 +21737,2025-03-09T18:20:36.315657-07:00,1000.16796875,10.849322,10849.322 +21738,2025-03-09T18:20:47.169339-07:00,1000.1603393554688,10.853682,10853.682 +21739,2025-03-09T18:20:58.014542-07:00,1000.161376953125,10.845203,10845.203 +21740,2025-03-09T18:21:08.867878-07:00,1000.1493530273438,10.853336,10853.336 +21741,2025-03-09T18:21:19.717341-07:00,1000.1782836914062,10.849463,10849.463 +21742,2025-03-09T18:21:30.565685-07:00,1000.142822265625,10.848344,10848.344 +21743,2025-03-09T18:21:41.418691-07:00,1000.1902465820312,10.853006,10853.006 +21744,2025-03-09T18:21:52.267482-07:00,1000.1769409179688,10.848791,10848.791 +21745,2025-03-09T18:22:03.124343-07:00,1000.142822265625,10.856861,10856.861 +21746,2025-03-09T18:22:13.970816-07:00,1000.1295166015625,10.846473,10846.473 +21747,2025-03-09T18:22:24.812592-07:00,1000.1504516601562,10.841776,10841.776 +21748,2025-03-09T18:22:35.668578-07:00,1000.171630859375,10.855986,10855.986 +21749,2025-03-09T18:22:46.519337-07:00,1000.1304931640625,10.850759,10850.759 +21750,2025-03-09T18:22:57.366667-07:00,1000.10400390625,10.84733,10847.33 +21751,2025-03-09T18:23:08.207572-07:00,1000.1504516601562,10.840905,10840.905 +21752,2025-03-09T18:23:19.061566-07:00,1000.1782836914062,10.853994,10853.994 +21753,2025-03-09T18:23:29.908679-07:00,1000.1981201171875,10.847113,10847.113 +21754,2025-03-09T18:23:40.749620-07:00,1000.1570434570312,10.840941,10840.941 +21755,2025-03-09T18:23:51.611954-07:00,1000.1782836914062,10.862334,10862.334 +21756,2025-03-09T18:24:02.458383-07:00,1000.1626586914062,10.846429,10846.429 +21757,2025-03-09T18:24:13.297334-07:00,1000.1636962890625,10.838951,10838.951 +21758,2025-03-09T18:24:24.146518-07:00,1000.1782836914062,10.849184,10849.184 +21759,2025-03-09T18:24:34.995913-07:00,1000.184814453125,10.849395,10849.395 +21760,2025-03-09T18:24:45.852346-07:00,1000.16796875,10.856433,10856.433 +21761,2025-03-09T18:24:56.702748-07:00,1000.1493530273438,10.850402,10850.402 +21762,2025-03-09T18:25:07.559592-07:00,1000.1902465820312,10.856844,10856.844 +21763,2025-03-09T18:25:18.406693-07:00,1000.1702880859375,10.847101,10847.101 +21764,2025-03-09T18:25:29.263664-07:00,1000.1769409179688,10.856971,10856.971 +21765,2025-03-09T18:25:40.115740-07:00,1000.1636962890625,10.852076,10852.076 +21766,2025-03-09T18:25:50.969659-07:00,1000.1726684570312,10.853919,10853.919 +21767,2025-03-09T18:26:01.824628-07:00,1000.1504516601562,10.854969,10854.969 +21768,2025-03-09T18:26:12.674805-07:00,1000.1782836914062,10.850177,10850.177 +21769,2025-03-09T18:26:23.531988-07:00,1000.1726684570312,10.857183,10857.183 +21770,2025-03-09T18:26:34.382367-07:00,1000.1649780273438,10.850379,10850.379 +21771,2025-03-09T18:26:45.236724-07:00,1000.13720703125,10.854357,10854.357 +21772,2025-03-09T18:26:56.086627-07:00,1000.1702880859375,10.849903,10849.903 +21773,2025-03-09T18:27:06.935035-07:00,1000.1517333984375,10.848408,10848.408 +21774,2025-03-09T18:27:17.781336-07:00,1000.1769409179688,10.846301,10846.301 +21775,2025-03-09T18:27:28.636656-07:00,1000.1636962890625,10.85532,10855.32 +21776,2025-03-09T18:27:39.490341-07:00,1000.1493530273438,10.853685,10853.685 +21777,2025-03-09T18:28:01.196557-07:00,1000.18359375,21.706216,21706.216 +21778,2025-03-09T18:28:12.053340-07:00,1000.1636962890625,10.856783,10856.783 +21779,2025-03-09T18:28:22.895339-07:00,1000.1560668945312,10.841999,10841.999 +21780,2025-03-09T18:28:33.754317-07:00,1000.1626586914062,10.858978,10858.978 +21781,2025-03-09T18:28:44.601340-07:00,1000.1759643554688,10.847023,10847.023 +21782,2025-03-09T18:28:55.451587-07:00,1000.1769409179688,10.850247,10850.247 +21783,2025-03-09T18:29:06.308442-07:00,1000.2181396484375,10.856855,10856.855 +21784,2025-03-09T18:29:17.171595-07:00,1000.1583862304688,10.863153,10863.153 +21785,2025-03-09T18:29:28.024036-07:00,1000.1759643554688,10.852441,10852.441 +21786,2025-03-09T18:29:38.879340-07:00,1000.1981201171875,10.855304,10855.304 +21787,2025-03-09T18:29:49.729433-07:00,1000.1693115234375,10.850093,10850.093 +21788,2025-03-09T18:30:00.586730-07:00,1000.1570434570312,10.857297,10857.297 +21789,2025-03-09T18:30:11.442347-07:00,1000.1636962890625,10.855617,10855.617 +21790,2025-03-09T18:30:22.291335-07:00,1000.16796875,10.848988,10848.988 +21791,2025-03-09T18:30:33.147579-07:00,1000.1546630859375,10.856244,10856.244 +21792,2025-03-09T18:30:44.005336-07:00,1000.1670532226562,10.857757,10857.757 +21793,2025-03-09T18:30:54.859336-07:00,1000.1935424804688,10.854,10854.0 +21794,2025-03-09T18:31:05.714330-07:00,1000.1390380859375,10.854994,10854.994 +21795,2025-03-09T18:31:16.565339-07:00,1000.1921997070312,10.851009,10851.009 +21796,2025-03-09T18:31:27.419613-07:00,1000.1802368164062,10.854274,10854.274 +21797,2025-03-09T18:31:38.270807-07:00,1000.1447143554688,10.851194,10851.194 +21798,2025-03-09T18:31:49.130381-07:00,1000.1835327148438,10.859574,10859.574 +21799,2025-03-09T18:31:59.982539-07:00,1000.16357421875,10.852158,10852.158 +21800,2025-03-09T18:32:10.837561-07:00,1000.1821899414062,10.855022,10855.022 +21801,2025-03-09T18:32:21.681579-07:00,1000.224365234375,10.844018,10844.018 +21802,2025-03-09T18:32:32.540342-07:00,1000.2044677734375,10.858763,10858.763 +21803,2025-03-09T18:32:43.389343-07:00,1000.1954956054688,10.849001,10849.001 +21804,2025-03-09T18:32:54.235694-07:00,1000.2232666015625,10.846351,10846.351 +21805,2025-03-09T18:33:05.087556-07:00,1000.1944580078125,10.851862,10851.862 +21806,2025-03-09T18:33:15.938591-07:00,1000.1944580078125,10.851035,10851.035 +21807,2025-03-09T18:33:26.795786-07:00,1000.208740234375,10.857195,10857.195 +21808,2025-03-09T18:33:37.643387-07:00,1000.2011108398438,10.847601,10847.601 +21809,2025-03-09T18:33:48.504600-07:00,1000.1921997070312,10.861213,10861.213 +21810,2025-03-09T18:33:59.354383-07:00,1000.1854858398438,10.849783,10849.783 +21811,2025-03-09T18:34:10.213994-07:00,1000.193115234375,10.859611,10859.611 +21812,2025-03-09T18:34:21.058420-07:00,1000.2186889648438,10.844426,10844.426 +21813,2025-03-09T18:34:31.915385-07:00,1000.2173461914062,10.856965,10856.965 +21814,2025-03-09T18:34:42.768476-07:00,1000.1964111328125,10.853091,10853.091 +21815,2025-03-09T18:34:53.614336-07:00,1000.1921997070312,10.84586,10845.86 +21816,2025-03-09T18:35:04.477353-07:00,1000.21435546875,10.863017,10863.017 +21817,2025-03-09T18:35:15.329735-07:00,1000.19873046875,10.852382,10852.382 +21818,2025-03-09T18:35:26.175652-07:00,1000.1997680664062,10.845917,10845.917 +21819,2025-03-09T18:35:37.031590-07:00,1000.2053833007812,10.855938,10855.938 +21820,2025-03-09T18:35:47.883486-07:00,1000.2130737304688,10.851896,10851.896 +21821,2025-03-09T18:35:58.742581-07:00,1000.2385864257812,10.859095,10859.095 +21822,2025-03-09T18:36:09.595781-07:00,1000.2130737304688,10.8532,10853.2 +21823,2025-03-09T18:36:20.450338-07:00,1000.2186889648438,10.854557,10854.557 +21824,2025-03-09T18:36:31.304336-07:00,1000.2385864257812,10.853998,10853.998 +21825,2025-03-09T18:36:42.147476-07:00,1000.2173461914062,10.84314,10843.14 +21826,2025-03-09T18:36:53.003336-07:00,1000.2186889648438,10.85586,10855.86 +21827,2025-03-09T18:37:03.854551-07:00,1000.1884155273438,10.851215,10851.215 +21828,2025-03-09T18:37:14.710342-07:00,1000.2083740234375,10.855791,10855.791 +21829,2025-03-09T18:37:25.560350-07:00,1000.228271484375,10.850008,10850.008 +21830,2025-03-09T18:37:36.413480-07:00,1000.2073364257812,10.85313,10853.13 +21831,2025-03-09T18:37:47.260833-07:00,1000.2405395507812,10.847353,10847.353 +21832,2025-03-09T18:37:58.105782-07:00,1000.212646484375,10.844949,10844.949 +21833,2025-03-09T18:38:08.961315-07:00,1000.2117309570312,10.855533,10855.533 +21834,2025-03-09T18:38:19.802574-07:00,1000.21826171875,10.841259,10841.259 +21835,2025-03-09T18:38:30.658334-07:00,1000.230224609375,10.85576,10855.76 +21836,2025-03-09T18:38:41.500558-07:00,1000.2235717773438,10.842224,10842.224 +21837,2025-03-09T18:38:52.343341-07:00,1000.1828002929688,10.842783,10842.783 +21838,2025-03-09T18:39:03.189825-07:00,1000.2225952148438,10.846484,10846.484 +21839,2025-03-09T18:39:14.041648-07:00,1000.2411499023438,10.851823,10851.823 +21840,2025-03-09T18:39:24.893677-07:00,1000.213623046875,10.852029,10852.029 +21841,2025-03-09T18:39:35.741385-07:00,1000.2335205078125,10.847708,10847.708 +21842,2025-03-09T18:39:46.600487-07:00,1000.2444458007812,10.859102,10859.102 +21843,2025-03-09T18:39:57.443769-07:00,1000.2189331054688,10.843282,10843.282 +21844,2025-03-09T18:40:08.291053-07:00,1000.249755859375,10.847284,10847.284 +21845,2025-03-09T18:40:19.139461-07:00,1000.2156372070312,10.848408,10848.408 +21846,2025-03-09T18:40:29.989341-07:00,1000.2156372070312,10.84988,10849.88 +21847,2025-03-09T18:40:40.825522-07:00,1000.2354736328125,10.836181,10836.181 +21848,2025-03-09T18:40:51.674758-07:00,1000.2686157226562,10.849236,10849.236 +21849,2025-03-09T18:41:02.512653-07:00,1000.27294921875,10.837895,10837.895 +21850,2025-03-09T18:41:13.360552-07:00,1000.217529296875,10.847899,10847.899 +21851,2025-03-09T18:41:24.205344-07:00,1000.2586669921875,10.844792,10844.792 +21852,2025-03-09T18:41:35.047638-07:00,1000.22314453125,10.842294,10842.294 +21853,2025-03-09T18:41:45.897642-07:00,1000.24169921875,10.850004,10850.004 +21854,2025-03-09T18:41:56.740485-07:00,1000.2351684570312,10.842843,10842.843 +21855,2025-03-09T18:42:07.599379-07:00,1000.24169921875,10.858894,10858.894 +21856,2025-03-09T18:42:18.445539-07:00,1000.2550048828125,10.84616,10846.16 +21857,2025-03-09T18:42:29.297344-07:00,1000.247314453125,10.851805,10851.805 +21858,2025-03-09T18:42:40.146719-07:00,1000.2616577148438,10.849375,10849.375 +21859,2025-03-09T18:42:50.994197-07:00,1000.2606201171875,10.847478,10847.478 +21860,2025-03-09T18:43:01.849652-07:00,1000.2393798828125,10.855455,10855.455 +21861,2025-03-09T18:43:12.689872-07:00,1000.2606201171875,10.84022,10840.22 +21862,2025-03-09T18:43:23.542762-07:00,1000.2384643554688,10.85289,10852.89 +21863,2025-03-09T18:43:34.385559-07:00,1000.2393798828125,10.842797,10842.797 +21864,2025-03-09T18:43:45.230478-07:00,1000.2293701171875,10.844919,10844.919 +21865,2025-03-09T18:43:56.072710-07:00,1000.23046875,10.842232,10842.232 +21866,2025-03-09T18:44:06.920339-07:00,1000.24267578125,10.847629,10847.629 +21867,2025-03-09T18:44:17.773340-07:00,1000.2281494140625,10.853001,10853.001 +21868,2025-03-09T18:44:28.616640-07:00,1000.2413940429688,10.8433,10843.3 +21869,2025-03-09T18:44:39.466141-07:00,1000.2536010742188,10.849501,10849.501 +21870,2025-03-09T18:44:50.314411-07:00,1000.2337646484375,10.84827,10848.27 +21871,2025-03-09T18:45:01.163453-07:00,1000.2536010742188,10.849042,10849.042 +21872,2025-03-09T18:45:12.012603-07:00,1000.2446899414062,10.84915,10849.15 +21873,2025-03-09T18:45:22.861481-07:00,1000.2379760742188,10.848878,10848.878 +21874,2025-03-09T18:45:33.715317-07:00,1000.2276611328125,10.853836,10853.836 +21875,2025-03-09T18:45:44.562861-07:00,1000.2764892578125,10.847544,10847.544 +21876,2025-03-09T18:45:55.410659-07:00,1000.2323608398438,10.847798,10847.798 +21877,2025-03-09T18:46:06.250343-07:00,1000.2267456054688,10.839684,10839.684 +21878,2025-03-09T18:46:17.103113-07:00,1000.2134399414062,10.85277,10852.77 +21879,2025-03-09T18:46:27.942567-07:00,1000.2332763671875,10.839454,10839.454 +21880,2025-03-09T18:46:38.789340-07:00,1000.24658203125,10.846773,10846.773 +21881,2025-03-09T18:46:49.640324-07:00,1000.2256469726562,10.850984,10850.984 +21882,2025-03-09T18:47:00.476642-07:00,1000.224365234375,10.836318,10836.318 +21883,2025-03-09T18:47:11.325657-07:00,1000.252197265625,10.849015,10849.015 +21884,2025-03-09T18:47:22.175385-07:00,1000.236572265625,10.849728,10849.728 +21885,2025-03-09T18:47:33.019400-07:00,1000.2498168945312,10.844015,10844.015 +21886,2025-03-09T18:47:43.866559-07:00,1000.2349853515625,10.847159,10847.159 +21887,2025-03-09T18:47:54.716341-07:00,1000.2498168945312,10.849782,10849.782 +21888,2025-03-09T18:48:05.558659-07:00,1000.2737426757812,10.842318,10842.318 +21889,2025-03-09T18:48:16.402720-07:00,1000.2391967773438,10.844061,10844.061 +21890,2025-03-09T18:48:27.249860-07:00,1000.2391967773438,10.84714,10847.14 +21891,2025-03-09T18:48:38.098314-07:00,1000.244873046875,10.848454,10848.454 +21892,2025-03-09T18:48:48.940549-07:00,1000.2315673828125,10.842235,10842.235 +21893,2025-03-09T18:48:59.782341-07:00,1000.217041015625,10.841792,10841.792 +21894,2025-03-09T18:49:10.616440-07:00,1000.2103881835938,10.834099,10834.099 +21895,2025-03-09T18:49:21.458485-07:00,1000.22265625,10.842045,10842.045 +21896,2025-03-09T18:49:32.307656-07:00,1000.2424926757812,10.849171,10849.171 +21897,2025-03-09T18:49:43.147785-07:00,1000.2080688476562,10.840129,10840.129 +21898,2025-03-09T18:49:53.988850-07:00,1000.2136840820312,10.841065,10841.065 +21899,2025-03-09T18:50:04.842776-07:00,1000.246826171875,10.853926,10853.926 +21900,2025-03-09T18:50:15.693230-07:00,1000.2136840820312,10.850454,10850.454 +21901,2025-03-09T18:50:26.530455-07:00,1000.2179565429688,10.837225,10837.225 +21902,2025-03-09T18:50:37.382547-07:00,1000.2245483398438,10.852092,10852.092 +21903,2025-03-09T18:50:48.226474-07:00,1000.246826171875,10.843927,10843.927 +21904,2025-03-09T18:50:59.081339-07:00,1000.2388916015625,10.854865,10854.865 +21905,2025-03-09T18:51:09.935343-07:00,1000.2166137695312,10.854004,10854.004 +21906,2025-03-09T18:51:20.781608-07:00,1000.2288818359375,10.846265,10846.265 +21907,2025-03-09T18:51:31.632980-07:00,1000.22216796875,10.851372,10851.372 +21908,2025-03-09T18:51:42.480581-07:00,1000.2354736328125,10.847601,10847.601 +21909,2025-03-09T18:51:53.332886-07:00,1000.2288818359375,10.852305,10852.305 +21910,2025-03-09T18:52:04.172317-07:00,1000.23876953125,10.839431,10839.431 +21911,2025-03-09T18:52:15.018341-07:00,1000.2132568359375,10.846024,10846.024 +21912,2025-03-09T18:52:25.861148-07:00,1000.2265625,10.842807,10842.807 +21913,2025-03-09T18:52:36.704843-07:00,1000.2474365234375,10.843695,10843.695 +21914,2025-03-09T18:52:47.551341-07:00,1000.2254638671875,10.846498,10846.498 +21915,2025-03-09T18:52:58.395396-07:00,1000.2374877929688,10.844055,10844.055 +21916,2025-03-09T18:53:09.245518-07:00,1000.2307739257812,10.850122,10850.122 +21917,2025-03-09T18:53:20.088312-07:00,1000.2374877929688,10.842794,10842.794 +21918,2025-03-09T18:53:30.940594-07:00,1000.2430419921875,10.852282,10852.282 +21919,2025-03-09T18:53:41.775381-07:00,1000.2496948242188,10.834787,10834.787 +21920,2025-03-09T18:53:52.629925-07:00,1000.2351684570312,10.854544,10854.544 +21921,2025-03-09T18:54:03.475335-07:00,1000.2151489257812,10.84541,10845.41 +21922,2025-03-09T18:54:14.316713-07:00,1000.247314453125,10.841378,10841.378 +21923,2025-03-09T18:54:25.170391-07:00,1000.2539672851562,10.853678,10853.678 +21924,2025-03-09T18:54:36.018340-07:00,1000.247314453125,10.847949,10847.949 +21925,2025-03-09T18:54:46.862775-07:00,1000.24072265625,10.844435,10844.435 +21926,2025-03-09T18:54:57.702326-07:00,1000.2184448242188,10.839551,10839.551 +21927,2025-03-09T18:55:08.551334-07:00,1000.2184448242188,10.849008,10849.008 +21928,2025-03-09T18:55:19.394373-07:00,1000.2516479492188,10.843039,10843.039 +21929,2025-03-09T18:55:30.238474-07:00,1000.2568969726562,10.844101,10844.101 +21930,2025-03-09T18:55:41.076527-07:00,1000.2251586914062,10.838053,10838.053 +21931,2025-03-09T18:55:51.922333-07:00,1000.2346801757812,10.845806,10845.806 +21932,2025-03-09T18:56:02.767331-07:00,1000.2449951171875,10.844998,10844.998 +21933,2025-03-09T18:56:13.599688-07:00,1000.2636108398438,10.832357,10832.357 +21934,2025-03-09T18:56:24.449844-07:00,1000.2757568359375,10.850156,10850.156 +21935,2025-03-09T18:56:35.286362-07:00,1000.2479858398438,10.836518,10836.518 +21936,2025-03-09T18:56:46.128567-07:00,1000.2824096679688,10.842205,10842.205 +21937,2025-03-09T18:56:56.971125-07:00,1000.2545166015625,10.842558,10842.558 +21938,2025-03-09T18:57:07.811654-07:00,1000.2469482421875,10.840529,10840.529 +21939,2025-03-09T18:57:18.657497-07:00,1000.252197265625,10.845843,10845.843 +21940,2025-03-09T18:57:29.497334-07:00,1000.2589111328125,10.839837,10839.837 +21941,2025-03-09T18:57:40.344344-07:00,1000.2578125,10.84701,10847.01 +21942,2025-03-09T18:57:51.187781-07:00,1000.272216796875,10.843437,10843.437 +21943,2025-03-09T18:58:02.041692-07:00,1000.2800903320312,10.853911,10853.911 +21944,2025-03-09T18:58:12.879586-07:00,1000.2777099609375,10.837894,10837.894 +21945,2025-03-09T18:58:23.731335-07:00,1000.251220703125,10.851749,10851.749 +21946,2025-03-09T18:58:34.568317-07:00,1000.223388671875,10.836982,10836.982 +21947,2025-03-09T18:58:45.420335-07:00,1000.223388671875,10.852018,10852.018 +21948,2025-03-09T18:58:56.264567-07:00,1000.26220703125,10.844232,10844.232 +21949,2025-03-09T18:59:07.112637-07:00,1000.2608032226562,10.84807,10848.07 +21950,2025-03-09T18:59:17.954527-07:00,1000.2608032226562,10.84189,10841.89 +21951,2025-03-09T18:59:28.806055-07:00,1000.2554931640625,10.851528,10851.528 +21952,2025-03-09T18:59:39.641418-07:00,1000.23193359375,10.835363,10835.363 +21953,2025-03-09T18:59:50.489640-07:00,1000.2584228515625,10.848222,10848.222 +21954,2025-03-09T19:00:01.340530-07:00,1000.2518920898438,10.85089,10850.89 +21955,2025-03-09T19:00:12.180283-07:00,1000.2385864257812,10.839753,10839.753 +21956,2025-03-09T19:00:23.021335-07:00,1000.2518920898438,10.841052,10841.052 +21957,2025-03-09T19:00:33.869563-07:00,1000.2664184570312,10.848228,10848.228 +21958,2025-03-09T19:00:44.706345-07:00,1000.2374877929688,10.836782,10836.782 +21959,2025-03-09T19:00:55.560372-07:00,1000.2518920898438,10.854027,10854.027 +21960,2025-03-09T19:01:06.403938-07:00,1000.2518920898438,10.843566,10843.566 +21961,2025-03-09T19:01:17.247335-07:00,1000.2431030273438,10.843397,10843.397 +21962,2025-03-09T19:01:28.094576-07:00,1000.236572265625,10.847241,10847.241 +21963,2025-03-09T19:01:38.938489-07:00,1000.2431030273438,10.843913,10843.913 +21964,2025-03-09T19:01:49.776684-07:00,1000.2351684570312,10.838195,10838.195 +21965,2025-03-09T19:02:00.624155-07:00,1000.2484130859375,10.847471,10847.471 +21966,2025-03-09T19:02:11.461339-07:00,1000.2262573242188,10.837184,10837.184 +21967,2025-03-09T19:02:22.311537-07:00,1000.2196044921875,10.850198,10850.198 +21968,2025-03-09T19:02:33.154420-07:00,1000.2185668945312,10.842883,10842.883 +21969,2025-03-09T19:02:44.001468-07:00,1000.2384643554688,10.847048,10847.048 +21970,2025-03-09T19:02:54.850707-07:00,1000.23046875,10.849239,10849.239 +21971,2025-03-09T19:03:05.691338-07:00,1000.1963500976562,10.840631,10840.631 +21972,2025-03-09T19:03:16.537303-07:00,1000.223876953125,10.845965,10845.965 +21973,2025-03-09T19:03:27.390603-07:00,1000.21484375,10.8533,10853.3 +21974,2025-03-09T19:03:38.234640-07:00,1000.2493896484375,10.844037,10844.037 +21975,2025-03-09T19:03:49.084476-07:00,1000.2404174804688,10.849836,10849.836 +21976,2025-03-09T19:03:59.920968-07:00,1000.2337646484375,10.836492,10836.492 +21977,2025-03-09T19:04:10.770323-07:00,1000.2413940429688,10.849355,10849.355 +21978,2025-03-09T19:04:21.618338-07:00,1000.2271728515625,10.848015,10848.015 +21979,2025-03-09T19:04:32.459481-07:00,1000.2470092773438,10.841143,10841.143 +21980,2025-03-09T19:04:43.311564-07:00,1000.2181396484375,10.852083,10852.083 +21981,2025-03-09T19:04:54.157724-07:00,1000.2115478515625,10.84616,10846.16 +21982,2025-03-09T19:05:04.997442-07:00,1000.224853515625,10.839718,10839.718 +21983,2025-03-09T19:05:15.845371-07:00,1000.253662109375,10.847929,10847.929 +21984,2025-03-09T19:05:26.698602-07:00,1000.2115478515625,10.853231,10853.231 +21985,2025-03-09T19:05:37.543337-07:00,1000.2271728515625,10.844735,10844.735 +21986,2025-03-09T19:05:48.287914-07:00,1000.2181396484375,10.744577,10744.577 +21987,2025-03-09T19:05:59.141741-07:00,1000.2433471679688,10.853827,10853.827 +21988,2025-03-09T19:06:09.990705-07:00,1000.2301025390625,10.848964,10848.964 +21989,2025-03-09T19:06:20.840995-07:00,1000.2313842773438,10.85029,10850.29 +21990,2025-03-09T19:06:31.695919-07:00,1000.2234497070312,10.854924,10854.924 +21991,2025-03-09T19:06:42.537212-07:00,1000.271240234375,10.841293,10841.293 +21992,2025-03-09T19:06:53.379707-07:00,1000.2301025390625,10.842495,10842.495 +21993,2025-03-09T19:07:04.228644-07:00,1000.238037109375,10.848937,10848.937 +21994,2025-03-09T19:07:15.065664-07:00,1000.271240234375,10.83702,10837.02 +21995,2025-03-09T19:07:25.909859-07:00,1000.27783203125,10.844195,10844.195 +21996,2025-03-09T19:07:36.754050-07:00,1000.2801513671875,10.844191,10844.191 +21997,2025-03-09T19:07:47.601666-07:00,1000.238037109375,10.847616,10847.616 +21998,2025-03-09T19:07:58.455405-07:00,1000.2290649414062,10.853739,10853.739 +21999,2025-03-09T19:08:09.299831-07:00,1000.238037109375,10.844426,10844.426 +22000,2025-03-09T19:08:20.138970-07:00,1000.209228515625,10.839139,10839.139 +22001,2025-03-09T19:08:30.991143-07:00,1000.2234497070312,10.852173,10852.173 +22002,2025-03-09T19:08:41.845011-07:00,1000.2433471679688,10.853868,10853.868 +22003,2025-03-09T19:08:52.690934-07:00,1000.2476806640625,10.845923,10845.923 +22004,2025-03-09T19:09:03.537809-07:00,1000.2433471679688,10.846875,10846.875 +22005,2025-03-09T19:09:14.386914-07:00,1000.2277221679688,10.849105,10849.105 +22006,2025-03-09T19:09:25.229656-07:00,1000.2210693359375,10.842742,10842.742 +22007,2025-03-09T19:09:36.079623-07:00,1000.2476806640625,10.849967,10849.967 +22008,2025-03-09T19:09:46.933666-07:00,1000.2476806640625,10.854043,10854.043 +22009,2025-03-09T19:09:57.774236-07:00,1000.1912231445312,10.84057,10840.57 +22010,2025-03-09T19:10:08.624860-07:00,1000.2177124023438,10.850624,10850.624 +22011,2025-03-09T19:10:19.476992-07:00,1000.2111206054688,10.852132,10852.132 +22012,2025-03-09T19:10:30.321819-07:00,1000.2254028320312,10.844827,10844.827 +22013,2025-03-09T19:10:41.164920-07:00,1000.2177124023438,10.843101,10843.101 +22014,2025-03-09T19:10:52.003665-07:00,1000.2100830078125,10.838745,10838.745 +22015,2025-03-09T19:11:02.857416-07:00,1000.2022094726562,10.853751,10853.751 +22016,2025-03-09T19:11:13.694250-07:00,1000.2418823242188,10.836834,10836.834 +22017,2025-03-09T19:11:24.534676-07:00,1000.2210083007812,10.840426,10840.426 +22018,2025-03-09T19:11:35.380789-07:00,1000.2498168945312,10.846113,10846.113 +22019,2025-03-09T19:11:46.230911-07:00,1000.2329711914062,10.850122,10850.122 +22020,2025-03-09T19:11:57.069042-07:00,1000.21435546875,10.838131,10838.131 +22021,2025-03-09T19:12:07.916763-07:00,1000.254150390625,10.847721,10847.721 +22022,2025-03-09T19:12:18.770240-07:00,1000.240966796875,10.853477,10853.477 +22023,2025-03-09T19:12:29.612918-07:00,1000.2262573242188,10.842678,10842.678 +22024,2025-03-09T19:12:40.456662-07:00,1000.2040405273438,10.843744,10843.744 +22025,2025-03-09T19:12:51.305704-07:00,1000.2295532226562,10.849042,10849.042 +22026,2025-03-09T19:13:02.149009-07:00,1000.2162475585938,10.843305,10843.305 +22027,2025-03-09T19:13:13.003651-07:00,1000.2229614257812,10.854642,10854.642 +22028,2025-03-09T19:13:23.846964-07:00,1000.2040405273438,10.843313,10843.313 +22029,2025-03-09T19:13:34.695887-07:00,1000.2162475585938,10.848923,10848.923 +22030,2025-03-09T19:13:45.541661-07:00,1000.223876953125,10.845774,10845.774 +22031,2025-03-09T19:13:56.387056-07:00,1000.2073364257812,10.845395,10845.395 +22032,2025-03-09T19:14:07.235667-07:00,1000.2139282226562,10.848611,10848.611 +22033,2025-03-09T19:14:18.082406-07:00,1000.2471313476562,10.846739,10846.739 +22034,2025-03-09T19:14:28.931789-07:00,1000.2471313476562,10.849383,10849.383 +22035,2025-03-09T19:14:39.779947-07:00,1000.2139282226562,10.848158,10848.158 +22036,2025-03-09T19:14:50.624844-07:00,1000.2050170898438,10.844897,10844.897 +22037,2025-03-09T19:15:01.478819-07:00,1000.2324829101562,10.853975,10853.975 +22038,2025-03-09T19:15:12.326752-07:00,1000.225830078125,10.847933,10847.933 +22039,2025-03-09T19:15:23.166720-07:00,1000.2380981445312,10.839968,10839.968 +22040,2025-03-09T19:15:34.008932-07:00,1000.224853515625,10.842212,10842.212 +22041,2025-03-09T19:15:44.844889-07:00,1000.2224731445312,10.835957,10835.957 +22042,2025-03-09T19:15:55.688663-07:00,1000.2158813476562,10.843774,10843.774 +22043,2025-03-09T19:16:06.531884-07:00,1000.20263671875,10.843221,10843.221 +22044,2025-03-09T19:16:17.389666-07:00,1000.2224731445312,10.857782,10857.782 +22045,2025-03-09T19:16:28.234926-07:00,1000.2145385742188,10.84526,10845.26 +22046,2025-03-09T19:16:39.083846-07:00,1000.227783203125,10.84892,10848.92 +22047,2025-03-09T19:16:49.925072-07:00,1000.234375,10.841226,10841.226 +22048,2025-03-09T19:17:00.765029-07:00,1000.2068481445312,10.839957,10839.957 +22049,2025-03-09T19:17:11.606662-07:00,1000.2145385742188,10.841633,10841.633 +22050,2025-03-09T19:17:22.457712-07:00,1000.1989135742188,10.85105,10851.05 +22051,2025-03-09T19:17:33.300630-07:00,1000.1790771484375,10.842918,10842.918 +22052,2025-03-09T19:17:44.148690-07:00,1000.2443237304688,10.84806,10848.06 +22053,2025-03-09T19:17:55.002786-07:00,1000.212158203125,10.854096,10854.096 +22054,2025-03-09T19:18:05.855910-07:00,1000.2178344726562,10.853124,10853.124 +22055,2025-03-09T19:18:16.694880-07:00,1000.22314453125,10.83897,10838.97 +22056,2025-03-09T19:18:27.549653-07:00,1000.2429809570312,10.854773,10854.773 +22057,2025-03-09T19:18:38.385931-07:00,1000.2376708984375,10.836278,10836.278 +22058,2025-03-09T19:18:49.235799-07:00,1000.2509155273438,10.849868,10849.868 +22059,2025-03-09T19:19:00.081241-07:00,1000.1945190429688,10.845442,10845.442 +22060,2025-03-09T19:19:10.921666-07:00,1000.2276611328125,10.840425,10840.425 +22061,2025-03-09T19:19:21.771166-07:00,1000.2276611328125,10.8495,10849.5 +22062,2025-03-09T19:19:32.625660-07:00,1000.2619018554688,10.854494,10854.494 +22063,2025-03-09T19:19:43.471883-07:00,1000.2210693359375,10.846223,10846.223 +22064,2025-03-09T19:19:54.322662-07:00,1000.2276611328125,10.850779,10850.779 +22065,2025-03-09T19:20:05.171673-07:00,1000.21435546875,10.849011,10849.011 +22066,2025-03-09T19:20:16.015314-07:00,1000.213134765625,10.843641,10843.641 +22067,2025-03-09T19:20:26.862995-07:00,1000.1998291015625,10.847681,10847.681 +22068,2025-03-09T19:20:37.713664-07:00,1000.2064208984375,10.850669,10850.669 +22069,2025-03-09T19:20:48.559777-07:00,1000.225341796875,10.846113,10846.113 +22070,2025-03-09T19:20:59.401666-07:00,1000.2329711914062,10.841889,10841.889 +22071,2025-03-09T19:21:10.247760-07:00,1000.23193359375,10.846094,10846.094 +22072,2025-03-09T19:21:21.095719-07:00,1000.2451782226562,10.847959,10847.959 +22073,2025-03-09T19:21:31.934699-07:00,1000.23193359375,10.83898,10838.98 +22074,2025-03-09T19:21:42.788915-07:00,1000.2040405273438,10.854216,10854.216 +22075,2025-03-09T19:21:53.629660-07:00,1000.1908569335938,10.840745,10840.745 +22076,2025-03-09T19:22:04.478734-07:00,1000.21875,10.849074,10849.074 +22077,2025-03-09T19:22:15.328891-07:00,1000.2120361328125,10.850157,10850.157 +22078,2025-03-09T19:22:26.173205-07:00,1000.21875,10.844314,10844.314 +22079,2025-03-09T19:22:37.019548-07:00,1000.203125,10.846343,10846.343 +22080,2025-03-09T19:22:47.869051-07:00,1000.209716796875,10.849503,10849.503 +22081,2025-03-09T19:22:58.712658-07:00,1000.1951293945312,10.843607,10843.607 +22082,2025-03-09T19:23:09.573897-07:00,1000.1808471679688,10.861239,10861.239 +22083,2025-03-09T19:23:20.417661-07:00,1000.1964111328125,10.843764,10843.764 +22084,2025-03-09T19:23:31.272652-07:00,1000.1676025390625,10.854991,10854.991 +22085,2025-03-09T19:23:42.123666-07:00,1000.1832275390625,10.851014,10851.014 +22086,2025-03-09T19:23:52.974665-07:00,1000.1620483398438,10.850999,10850.999 +22087,2025-03-09T19:24:03.826643-07:00,1000.1885375976562,10.851978,10851.978 +22088,2025-03-09T19:24:14.665661-07:00,1000.1676025390625,10.839018,10839.018 +22089,2025-03-09T19:24:25.516963-07:00,1000.2008056640625,10.851302,10851.302 +22090,2025-03-09T19:24:36.364003-07:00,1000.2073364257812,10.84704,10847.04 +22091,2025-03-09T19:24:47.210717-07:00,1000.1729125976562,10.846714,10846.714 +22092,2025-03-09T19:24:58.060813-07:00,1000.1729125976562,10.850096,10850.096 +22093,2025-03-09T19:25:08.907212-07:00,1000.1875,10.846399,10846.399 +22094,2025-03-09T19:25:19.757786-07:00,1000.1585693359375,10.850574,10850.574 +22095,2025-03-09T19:25:30.605671-07:00,1000.1771850585938,10.847885,10847.885 +22096,2025-03-09T19:25:41.450038-07:00,1000.166259765625,10.844367,10844.367 +22097,2025-03-09T19:25:52.292878-07:00,1000.1695556640625,10.84284,10842.84 +22098,2025-03-09T19:26:03.147825-07:00,1000.1760864257812,10.854947,10854.947 +22099,2025-03-09T19:26:13.989664-07:00,1000.2159423828125,10.841839,10841.839 +22100,2025-03-09T19:26:24.844961-07:00,1000.2301635742188,10.855297,10855.297 +22101,2025-03-09T19:26:35.695910-07:00,1000.243408203125,10.850949,10850.949 +22102,2025-03-09T19:26:46.536642-07:00,1000.2301635742188,10.840732,10840.732 +22103,2025-03-09T19:26:57.383662-07:00,1000.1880493164062,10.84702,10847.02 +22104,2025-03-09T19:27:08.234658-07:00,1000.2159423828125,10.850996,10850.996 +22105,2025-03-09T19:27:19.082983-07:00,1000.2201538085938,10.848325,10848.325 +22106,2025-03-09T19:27:29.925766-07:00,1000.2145385742188,10.842783,10842.783 +22107,2025-03-09T19:27:40.773649-07:00,1000.2003173828125,10.847883,10847.883 +22108,2025-03-09T19:27:51.629656-07:00,1000.1923217773438,10.856007,10856.007 +22109,2025-03-09T19:28:02.477754-07:00,1000.212158203125,10.848098,10848.098 +22110,2025-03-09T19:28:13.327656-07:00,1000.23876953125,10.849902,10849.902 +22111,2025-03-09T19:28:24.183949-07:00,1000.2652587890625,10.856293,10856.293 +22112,2025-03-09T19:28:35.018030-07:00,1000.273193359375,10.834081,10834.081 +22113,2025-03-09T19:28:45.873003-07:00,1000.2586059570312,10.854973,10854.973 +22114,2025-03-09T19:28:56.710794-07:00,1000.257568359375,10.837791,10837.791 +22115,2025-03-09T19:29:07.559467-07:00,1000.2532958984375,10.848673,10848.673 +22116,2025-03-09T19:29:18.398663-07:00,1000.2321166992188,10.839196,10839.196 +22117,2025-03-09T19:29:29.245671-07:00,1000.2188110351562,10.847008,10847.008 +22118,2025-03-09T19:29:40.089993-07:00,1000.2642211914062,10.844322,10844.322 +22119,2025-03-09T19:29:50.931686-07:00,1000.2586059570312,10.841693,10841.693 +22120,2025-03-09T19:30:01.780661-07:00,1000.2652587890625,10.848975,10848.975 +22121,2025-03-09T19:30:12.628660-07:00,1000.28515625,10.847999,10847.999 +22122,2025-03-09T19:30:23.479670-07:00,1000.2296752929688,10.85101,10851.01 +22123,2025-03-09T19:30:34.322164-07:00,1000.2310791015625,10.842494,10842.494 +22124,2025-03-09T19:30:45.154663-07:00,1000.22314453125,10.832499,10832.499 +22125,2025-03-09T19:30:55.999660-07:00,1000.2642211914062,10.844997,10844.997 +22126,2025-03-09T19:31:06.853662-07:00,1000.2893676757812,10.854002,10854.002 +22127,2025-03-09T19:31:17.699062-07:00,1000.2453002929688,10.8454,10845.4 +22128,2025-03-09T19:31:28.544667-07:00,1000.2784423828125,10.845605,10845.605 +22129,2025-03-09T19:31:39.380063-07:00,1000.2642211914062,10.835396,10835.396 +22130,2025-03-09T19:31:50.230132-07:00,1000.2178344726562,10.850069,10850.069 +22131,2025-03-09T19:32:01.073289-07:00,1000.2178344726562,10.843157,10843.157 +22132,2025-03-09T19:32:11.921661-07:00,1000.2098388671875,10.848372,10848.372 +22133,2025-03-09T19:32:22.759597-07:00,1000.241943359375,10.837936,10837.936 +22134,2025-03-09T19:32:33.613227-07:00,1000.2429809570312,10.85363,10853.63 +22135,2025-03-09T19:32:44.465283-07:00,1000.260498046875,10.852056,10852.056 +22136,2025-03-09T19:32:55.305180-07:00,1000.2207641601562,10.839897,10839.897 +22137,2025-03-09T19:33:06.160900-07:00,1000.182373046875,10.85572,10855.72 +22138,2025-03-09T19:33:17.006660-07:00,1000.1942138671875,10.84576,10845.76 +22139,2025-03-09T19:33:27.860656-07:00,1000.213134765625,10.853996,10853.996 +22140,2025-03-09T19:33:38.706666-07:00,1000.2528076171875,10.84601,10846.01 +22141,2025-03-09T19:33:49.547905-07:00,1000.260498046875,10.841239,10841.239 +22142,2025-03-09T19:34:00.395803-07:00,1000.2385864257812,10.847898,10847.898 +22143,2025-03-09T19:34:11.241984-07:00,1000.2518920898438,10.846181,10846.181 +22144,2025-03-09T19:34:22.095771-07:00,1000.25048828125,10.853787,10853.787 +22145,2025-03-09T19:34:32.937659-07:00,1000.25048828125,10.841888,10841.888 +22146,2025-03-09T19:34:43.780931-07:00,1000.25048828125,10.843272,10843.272 +22147,2025-03-09T19:34:54.629710-07:00,1000.2173461914062,10.848779,10848.779 +22148,2025-03-09T19:35:05.473999-07:00,1000.2229614257812,10.844289,10844.289 +22149,2025-03-09T19:35:16.315706-07:00,1000.2415771484375,10.841707,10841.707 +22150,2025-03-09T19:35:27.158659-07:00,1000.2547607421875,10.842953,10842.953 +22151,2025-03-09T19:35:37.995664-07:00,1000.2614135742188,10.837005,10837.005 +22152,2025-03-09T19:35:48.850643-07:00,1000.2693481445312,10.854979,10854.979 +22153,2025-03-09T19:35:59.687933-07:00,1000.2537231445312,10.83729,10837.29 +22154,2025-03-09T19:36:10.537760-07:00,1000.2736206054688,10.849827,10849.827 +22155,2025-03-09T19:36:21.381656-07:00,1000.2415771484375,10.843896,10843.896 +22156,2025-03-09T19:36:32.230715-07:00,1000.227294921875,10.849059,10849.059 +22157,2025-03-09T19:36:43.067764-07:00,1000.2315673828125,10.837049,10837.049 +22158,2025-03-09T19:36:53.913003-07:00,1000.2357788085938,10.845239,10845.239 +22159,2025-03-09T19:37:04.751907-07:00,1000.2447509765625,10.838904,10838.904 +22160,2025-03-09T19:37:15.598664-07:00,1000.23681640625,10.846757,10846.757 +22161,2025-03-09T19:37:26.438909-07:00,1000.255615234375,10.840245,10840.245 +22162,2025-03-09T19:37:37.286664-07:00,1000.2145385742188,10.847755,10847.755 +22163,2025-03-09T19:37:48.139666-07:00,1000.227783203125,10.853002,10853.002 +22164,2025-03-09T19:37:58.984863-07:00,1000.2357788085938,10.845197,10845.197 +22165,2025-03-09T19:38:09.828790-07:00,1000.2467041015625,10.843927,10843.927 +22166,2025-03-09T19:38:20.667666-07:00,1000.239990234375,10.838876,10838.876 +22167,2025-03-09T19:38:31.520065-07:00,1000.2212524414062,10.852399,10852.399 +22168,2025-03-09T19:38:42.363662-07:00,1000.2188110351562,10.843597,10843.597 +22169,2025-03-09T19:38:53.219767-07:00,1000.211181640625,10.856105,10856.105 +22170,2025-03-09T19:39:04.066047-07:00,1000.23876953125,10.84628,10846.28 +22171,2025-03-09T19:39:14.909266-07:00,1000.2098388671875,10.843219,10843.219 +22172,2025-03-09T19:39:25.750308-07:00,1000.2321166992188,10.841042,10841.042 +22173,2025-03-09T19:39:36.606784-07:00,1000.2244262695312,10.856476,10856.476 +22174,2025-03-09T19:39:47.451051-07:00,1000.2376708984375,10.844267,10844.267 +22175,2025-03-09T19:39:58.305666-07:00,1000.2098388671875,10.854615,10854.615 +22176,2025-03-09T19:40:09.154664-07:00,1000.167724609375,10.848998,10848.998 +22177,2025-03-09T19:40:20.002281-07:00,1000.2088012695312,10.847617,10847.617 +22178,2025-03-09T19:40:30.849828-07:00,1000.2008666992188,10.847547,10847.547 +22179,2025-03-09T19:40:41.694754-07:00,1000.2164916992188,10.844926,10844.926 +22180,2025-03-09T19:40:52.537663-07:00,1000.228759765625,10.842909,10842.909 +22181,2025-03-09T19:41:03.391659-07:00,1000.2340087890625,10.853996,10853.996 +22182,2025-03-09T19:41:14.247740-07:00,1000.2008666992188,10.856081,10856.081 +22183,2025-03-09T19:41:25.094925-07:00,1000.2207641601562,10.847185,10847.185 +22184,2025-03-09T19:41:35.947665-07:00,1000.2064819335938,10.85274,10852.74 +22185,2025-03-09T19:41:46.793809-07:00,1000.2184448242188,10.846144,10846.144 +22186,2025-03-09T19:41:57.636074-07:00,1000.198486328125,10.842265,10842.265 +22187,2025-03-09T19:42:08.479804-07:00,1000.2316284179688,10.84373,10843.73 +22188,2025-03-09T19:42:19.340091-07:00,1000.2037353515625,10.860287,10860.287 +22189,2025-03-09T19:42:30.181656-07:00,1000.2184448242188,10.841565,10841.565 +22190,2025-03-09T19:42:41.041266-07:00,1000.21044921875,10.85961,10859.61 +22191,2025-03-09T19:42:51.881662-07:00,1000.21044921875,10.840396,10840.396 +22192,2025-03-09T19:43:02.728678-07:00,1000.217041015625,10.847016,10847.016 +22193,2025-03-09T19:43:13.569668-07:00,1000.229248046875,10.84099,10840.99 +22194,2025-03-09T19:43:24.420861-07:00,1000.229248046875,10.851193,10851.193 +22195,2025-03-09T19:43:35.264972-07:00,1000.2213134765625,10.844111,10844.111 +22196,2025-03-09T19:43:46.107778-07:00,1000.247802734375,10.842806,10842.806 +22197,2025-03-09T19:43:56.948776-07:00,1000.2501831054688,10.840998,10840.998 +22198,2025-03-09T19:44:07.793661-07:00,1000.262451171875,10.844885,10844.885 +22199,2025-03-09T19:44:18.641893-07:00,1000.262451171875,10.848232,10848.232 +22200,2025-03-09T19:44:29.496930-07:00,1000.2491455078125,10.855037,10855.037 +22201,2025-03-09T19:44:40.345003-07:00,1000.2345581054688,10.848073,10848.073 +22202,2025-03-09T19:44:51.204286-07:00,1000.2213134765625,10.859283,10859.283 +22203,2025-03-09T19:45:02.049023-07:00,1000.2335815429688,10.844737,10844.737 +22204,2025-03-09T19:45:12.903524-07:00,1000.2335815429688,10.854501,10854.501 +22205,2025-03-09T19:45:23.750655-07:00,1000.2611083984375,10.847131,10847.131 +22206,2025-03-09T19:45:34.598658-07:00,1000.244384765625,10.848003,10848.003 +22207,2025-03-09T19:45:45.446654-07:00,1000.2587280273438,10.847996,10847.996 +22208,2025-03-09T19:45:56.286069-07:00,1000.2576293945312,10.839415,10839.415 +22209,2025-03-09T19:46:07.139946-07:00,1000.2762451171875,10.853877,10853.877 +22210,2025-03-09T19:46:17.984993-07:00,1000.302734375,10.845047,10845.047 +22211,2025-03-09T19:46:28.837915-07:00,1000.262939453125,10.852922,10852.922 +22212,2025-03-09T19:46:39.687433-07:00,1000.275146484375,10.849518,10849.518 +22213,2025-03-09T19:46:50.541463-07:00,1000.2606201171875,10.85403,10854.03 +22214,2025-03-09T19:47:01.387862-07:00,1000.2884521484375,10.846399,10846.399 +22215,2025-03-09T19:47:12.240883-07:00,1000.2539672851562,10.853021,10853.021 +22216,2025-03-09T19:47:23.088728-07:00,1000.3135986328125,10.847845,10847.845 +22217,2025-03-09T19:47:33.942639-07:00,1000.3070068359375,10.853911,10853.911 +22218,2025-03-09T19:47:44.780760-07:00,1000.2781372070312,10.838121,10838.121 +22219,2025-03-09T19:47:55.626737-07:00,1000.2979736328125,10.845977,10845.977 +22220,2025-03-09T19:48:06.476745-07:00,1000.3046264648438,10.850008,10850.008 +22221,2025-03-09T19:48:17.325277-07:00,1000.3035888671875,10.848532,10848.532 +22222,2025-03-09T19:48:28.175798-07:00,1000.3301391601562,10.850521,10850.521 +22223,2025-03-09T19:48:39.028805-07:00,1000.277099609375,10.853007,10853.007 +22224,2025-03-09T19:48:49.878999-07:00,1000.277099609375,10.850194,10850.194 +22225,2025-03-09T19:49:00.730658-07:00,1000.31787109375,10.851659,10851.659 +22226,2025-03-09T19:49:11.584936-07:00,1000.3035888671875,10.854278,10854.278 +22227,2025-03-09T19:49:22.440667-07:00,1000.2691650390625,10.855731,10855.731 +22228,2025-03-09T19:49:33.289817-07:00,1000.2913818359375,10.84915,10849.15 +22229,2025-03-09T19:49:44.134904-07:00,1000.305908203125,10.845087,10845.087 +22230,2025-03-09T19:49:54.981103-07:00,1000.2638549804688,10.846199,10846.199 +22231,2025-03-09T19:50:05.836093-07:00,1000.31787109375,10.85499,10854.99 +22232,2025-03-09T19:50:16.688666-07:00,1000.277099609375,10.852573,10852.573 +22233,2025-03-09T19:50:27.534983-07:00,1000.3088989257812,10.846317,10846.317 +22234,2025-03-09T19:50:38.395996-07:00,1000.2946166992188,10.861013,10861.013 +22235,2025-03-09T19:50:49.242972-07:00,1000.30126953125,10.846976,10846.976 +22236,2025-03-09T19:51:00.103772-07:00,1000.3065795898438,10.8608,10860.8 +22237,2025-03-09T19:51:10.939995-07:00,1000.30126953125,10.836223,10836.223 +22238,2025-03-09T19:51:21.794235-07:00,1000.2932739257812,10.85424,10854.24 +22239,2025-03-09T19:51:32.650686-07:00,1000.280029296875,10.856451,10856.451 +22240,2025-03-09T19:51:43.492665-07:00,1000.3145141601562,10.841979,10841.979 +22241,2025-03-09T19:51:54.346918-07:00,1000.3277587890625,10.854253,10854.253 +22242,2025-03-09T19:52:05.190693-07:00,1000.2776489257812,10.843775,10843.775 +22243,2025-03-09T19:52:16.045765-07:00,1000.30126953125,10.855072,10855.072 +22244,2025-03-09T19:52:26.886032-07:00,1000.3485717773438,10.840267,10840.267 +22245,2025-03-09T19:52:37.738810-07:00,1000.354248046875,10.852778,10852.778 +22246,2025-03-09T19:52:48.581661-07:00,1000.33203125,10.842851,10842.851 +22247,2025-03-09T19:52:59.440085-07:00,1000.3187255859375,10.858424,10858.424 +22248,2025-03-09T19:53:10.285665-07:00,1000.3174438476562,10.84558,10845.58 +22249,2025-03-09T19:53:21.133667-07:00,1000.3585205078125,10.848002,10848.002 +22250,2025-03-09T19:53:31.980913-07:00,1000.3428955078125,10.847246,10847.246 +22251,2025-03-09T19:53:42.834662-07:00,1000.3272705078125,10.853749,10853.749 +22252,2025-03-09T19:53:53.687656-07:00,1000.3418579101562,10.852994,10852.994 +22253,2025-03-09T19:54:04.540755-07:00,1000.3505249023438,10.853099,10853.099 +22254,2025-03-09T19:54:15.395703-07:00,1000.3495483398438,10.854948,10854.948 +22255,2025-03-09T19:54:26.247662-07:00,1000.3484497070312,10.851959,10851.959 +22256,2025-03-09T19:54:37.101717-07:00,1000.3604125976562,10.854055,10854.055 +22257,2025-03-09T19:54:47.949665-07:00,1000.32861328125,10.847948,10847.948 +22258,2025-03-09T19:54:58.788851-07:00,1000.34716796875,10.839186,10839.186 +22259,2025-03-09T19:55:09.632799-07:00,1000.3670043945312,10.843948,10843.948 +22260,2025-03-09T19:55:20.489991-07:00,1000.3892211914062,10.857192,10857.192 +22261,2025-03-09T19:55:31.340698-07:00,1000.3404541015625,10.850707,10850.707 +22262,2025-03-09T19:55:42.200743-07:00,1000.36279296875,10.860045,10860.045 +22263,2025-03-09T19:55:53.045665-07:00,1000.3551635742188,10.844922,10844.922 +22264,2025-03-09T19:56:03.901681-07:00,1000.3560791015625,10.856016,10856.016 +22265,2025-03-09T19:56:14.751937-07:00,1000.353759765625,10.850256,10850.256 +22266,2025-03-09T19:56:25.604662-07:00,1000.353759765625,10.852725,10852.725 +22267,2025-03-09T19:56:36.448912-07:00,1000.3527221679688,10.84425,10844.25 +22268,2025-03-09T19:56:47.308166-07:00,1000.375,10.859254,10859.254 +22269,2025-03-09T19:56:58.165655-07:00,1000.400146484375,10.857489,10857.489 +22270,2025-03-09T19:57:09.018933-07:00,1000.3735961914062,10.853278,10853.278 +22271,2025-03-09T19:57:19.863643-07:00,1000.3778686523438,10.84471,10844.71 +22272,2025-03-09T19:57:30.710260-07:00,1000.3990478515625,10.846617,10846.617 +22273,2025-03-09T19:57:41.565056-07:00,1000.3646850585938,10.854796,10854.796 +22274,2025-03-09T19:57:52.408100-07:00,1000.3858642578125,10.843044,10843.044 +22275,2025-03-09T19:58:03.263064-07:00,1000.39013671875,10.854964,10854.964 +22276,2025-03-09T19:58:14.103772-07:00,1000.412353515625,10.840708,10840.708 +22277,2025-03-09T19:58:24.950666-07:00,1000.4043579101562,10.846894,10846.894 +22278,2025-03-09T19:58:35.800861-07:00,1000.430908203125,10.850195,10850.195 +22279,2025-03-09T19:58:46.645668-07:00,1000.4176635742188,10.844807,10844.807 +22280,2025-03-09T19:58:57.490029-07:00,1000.4298706054688,10.844361,10844.361 +22281,2025-03-09T19:59:08.342999-07:00,1000.4351806640625,10.85297,10852.97 +22282,2025-03-09T19:59:19.194274-07:00,1000.4497680664062,10.851275,10851.275 +22283,2025-03-09T19:59:30.035992-07:00,1000.4564208984375,10.841718,10841.718 +22284,2025-03-09T19:59:40.892707-07:00,1000.4629516601562,10.856715,10856.715 +22285,2025-03-09T19:59:51.732904-07:00,1000.494873046875,10.840197,10840.197 +22286,2025-03-09T20:00:02.587703-07:00,1000.4984130859375,10.854799,10854.799 +22287,2025-03-09T20:00:13.432517-07:00,1000.427490234375,10.844814,10844.814 +22288,2025-03-09T20:00:24.278093-07:00,1000.473876953125,10.845576,10845.576 +22289,2025-03-09T20:00:35.130229-07:00,1000.4617309570312,10.852136,10852.136 +22290,2025-03-09T20:00:45.978027-07:00,1000.4724731445312,10.847798,10847.798 +22291,2025-03-09T20:00:56.826662-07:00,1000.4606323242188,10.848635,10848.635 +22292,2025-03-09T20:01:07.681874-07:00,1000.4990844726562,10.855212,10855.212 +22293,2025-03-09T20:01:18.531663-07:00,1000.4979858398438,10.849789,10849.789 +22294,2025-03-09T20:01:29.385860-07:00,1000.463623046875,10.854197,10854.197 +22295,2025-03-09T20:01:40.223441-07:00,1000.4701538085938,10.837581,10837.581 +22296,2025-03-09T20:01:51.069799-07:00,1000.476806640625,10.846358,10846.358 +22297,2025-03-09T20:02:01.916813-07:00,1000.4847412109375,10.847014,10847.014 +22298,2025-03-09T20:02:12.756622-07:00,1000.4979858398438,10.839809,10839.809 +22299,2025-03-09T20:02:23.609707-07:00,1000.5022583007812,10.853085,10853.085 +22300,2025-03-09T20:02:34.456644-07:00,1000.5022583007812,10.846937,10846.937 +22301,2025-03-09T20:02:45.302806-07:00,1000.49560546875,10.846162,10846.162 +22302,2025-03-09T20:02:56.147667-07:00,1000.5022583007812,10.844861,10844.861 +22303,2025-03-09T20:03:06.996544-07:00,1000.4998168945312,10.848877,10848.877 +22304,2025-03-09T20:03:17.838250-07:00,1000.506591796875,10.841706,10841.706 +22305,2025-03-09T20:03:28.679641-07:00,1000.5131225585938,10.841391,10841.391 +22306,2025-03-09T20:03:39.519660-07:00,1000.506591796875,10.840019,10840.019 +22307,2025-03-09T20:03:50.369653-07:00,1000.5131225585938,10.849993,10849.993 +22308,2025-03-09T20:04:01.210966-07:00,1000.5108032226562,10.841313,10841.313 +22309,2025-03-09T20:04:12.061128-07:00,1000.53173828125,10.850162,10850.162 +22310,2025-03-09T20:04:22.910429-07:00,1000.5184326171875,10.849301,10849.301 +22311,2025-03-09T20:04:33.754644-07:00,1000.51611328125,10.844215,10844.215 +22312,2025-03-09T20:04:44.603661-07:00,1000.4806518554688,10.849017,10849.017 +22313,2025-03-09T20:04:55.455902-07:00,1000.5150146484375,10.852241,10852.241 +22314,2025-03-09T20:05:06.303955-07:00,1000.4993896484375,10.848053,10848.053 +22315,2025-03-09T20:05:17.148219-07:00,1000.5150146484375,10.844264,10844.264 +22316,2025-03-09T20:05:28.006718-07:00,1000.513671875,10.858499,10858.499 +22317,2025-03-09T20:05:38.852839-07:00,1000.513671875,10.846121,10846.121 +22318,2025-03-09T20:05:49.847926-07:00,1000.4983520507812,10.995087,10995.087 +22319,2025-03-09T20:06:00.700948-07:00,1000.4983520507812,10.853022,10853.022 +22320,2025-03-09T20:06:11.541587-07:00,1000.490478515625,10.840639,10840.639 +22321,2025-03-09T20:06:22.394593-07:00,1000.5103149414062,10.853006,10853.006 +22322,2025-03-09T20:06:33.244821-07:00,1000.516845703125,10.850228,10850.228 +22323,2025-03-09T20:06:44.095592-07:00,1000.54345703125,10.850771,10850.771 +22324,2025-03-09T20:06:54.953732-07:00,1000.5092163085938,10.85814,10858.14 +22325,2025-03-09T20:07:05.809735-07:00,1000.5078735351562,10.856003,10856.003 +22326,2025-03-09T20:07:16.654693-07:00,1000.515869140625,10.844958,10844.958 +22327,2025-03-09T20:07:27.502595-07:00,1000.5003051757812,10.847902,10847.902 +22328,2025-03-09T20:07:38.352592-07:00,1000.5003051757812,10.849997,10849.997 +22329,2025-03-09T20:07:49.200982-07:00,1000.4935913085938,10.84839,10848.39 +22330,2025-03-09T20:08:00.055598-07:00,1000.5333862304688,10.854616,10854.616 +22331,2025-03-09T20:08:10.902834-07:00,1000.5320434570312,10.847236,10847.236 +22332,2025-03-09T20:08:21.750980-07:00,1000.5532836914062,10.848146,10848.146 +22333,2025-03-09T20:08:32.594738-07:00,1000.525390625,10.843758,10843.758 +22334,2025-03-09T20:08:43.451065-07:00,1000.5230712890625,10.856327,10856.327 +22335,2025-03-09T20:08:54.295596-07:00,1000.5386962890625,10.844531,10844.531 +22336,2025-03-09T20:09:05.147596-07:00,1000.5243530273438,10.852,10852.0 +22337,2025-03-09T20:09:15.999598-07:00,1000.525390625,10.852002,10852.002 +22338,2025-03-09T20:09:26.859740-07:00,1000.5296630859375,10.860142,10860.142 +22339,2025-03-09T20:09:37.711648-07:00,1000.5508422851562,10.851908,10851.908 +22340,2025-03-09T20:09:48.555597-07:00,1000.5429077148438,10.843949,10843.949 +22341,2025-03-09T20:09:59.404604-07:00,1000.531005859375,10.849007,10849.007 +22342,2025-03-09T20:10:10.266588-07:00,1000.5296630859375,10.861984,10861.984 +22343,2025-03-09T20:10:21.112924-07:00,1000.57080078125,10.846336,10846.336 +22344,2025-03-09T20:10:31.965885-07:00,1000.5508422851562,10.852961,10852.961 +22345,2025-03-09T20:10:42.817658-07:00,1000.5759887695312,10.851773,10851.773 +22346,2025-03-09T20:10:53.664899-07:00,1000.5418701171875,10.847241,10847.241 +22347,2025-03-09T20:11:04.515199-07:00,1000.5826416015625,10.8503,10850.3 +22348,2025-03-09T20:11:15.369895-07:00,1000.5693969726562,10.854696,10854.696 +22349,2025-03-09T20:11:26.223001-07:00,1000.580322265625,10.853106,10853.106 +22350,2025-03-09T20:11:37.072593-07:00,1000.5537719726562,10.849592,10849.592 +22351,2025-03-09T20:11:47.915886-07:00,1000.580322265625,10.843293,10843.293 +22352,2025-03-09T20:11:58.774594-07:00,1000.5792236328125,10.858708,10858.708 +22353,2025-03-09T20:12:09.617639-07:00,1000.5792236328125,10.843045,10843.045 +22354,2025-03-09T20:12:20.465574-07:00,1000.5792236328125,10.847935,10847.935 +22355,2025-03-09T20:12:31.313646-07:00,1000.6099853515625,10.848072,10848.072 +22356,2025-03-09T20:12:42.164606-07:00,1000.5967407226562,10.85096,10850.96 +22357,2025-03-09T20:12:53.014926-07:00,1000.5834350585938,10.85032,10850.32 +22358,2025-03-09T20:13:03.863914-07:00,1000.5712280273438,10.848988,10848.988 +22359,2025-03-09T20:13:14.717489-07:00,1000.5689086914062,10.853575,10853.575 +22360,2025-03-09T20:13:25.569181-07:00,1000.5755615234375,10.851692,10851.692 +22361,2025-03-09T20:13:36.423025-07:00,1000.5967407226562,10.853844,10853.844 +22362,2025-03-09T20:13:47.272628-07:00,1000.6110229492188,10.849603,10849.603 +22363,2025-03-09T20:13:58.111642-07:00,1000.6242065429688,10.839014,10839.014 +22364,2025-03-09T20:14:08.965666-07:00,1000.5901489257812,10.854024,10854.024 +22365,2025-03-09T20:14:19.815802-07:00,1000.5901489257812,10.850136,10850.136 +22366,2025-03-09T20:14:30.663966-07:00,1000.6099853515625,10.848164,10848.164 +22367,2025-03-09T20:14:41.512914-07:00,1000.5887451171875,10.848948,10848.948 +22368,2025-03-09T20:14:52.366897-07:00,1000.5822143554688,10.853983,10853.983 +22369,2025-03-09T20:15:03.210930-07:00,1000.561279296875,10.844033,10844.033 +22370,2025-03-09T20:15:14.060598-07:00,1000.5901489257812,10.849668,10849.668 +22371,2025-03-09T20:15:24.905646-07:00,1000.5702514648438,10.845048,10845.048 +22372,2025-03-09T20:15:35.757115-07:00,1000.5702514648438,10.851469,10851.469 +22373,2025-03-09T20:15:46.607646-07:00,1000.5424194335938,10.850531,10850.531 +22374,2025-03-09T20:15:57.463892-07:00,1000.5479736328125,10.856246,10856.246 +22375,2025-03-09T20:16:08.314215-07:00,1000.5556030273438,10.850323,10850.323 +22376,2025-03-09T20:16:19.156876-07:00,1000.562255859375,10.842661,10842.661 +22377,2025-03-09T20:16:30.012054-07:00,1000.5546264648438,10.855178,10855.178 +22378,2025-03-09T20:16:40.858765-07:00,1000.521484375,10.846711,10846.711 +22379,2025-03-09T20:16:51.712964-07:00,1000.5599365234375,10.854199,10854.199 +22380,2025-03-09T20:17:02.570628-07:00,1000.5678100585938,10.857664,10857.664 +22381,2025-03-09T20:17:13.417076-07:00,1000.5689086914062,10.846448,10846.448 +22382,2025-03-09T20:17:24.272170-07:00,1000.5822143554688,10.855094,10855.094 +22383,2025-03-09T20:17:35.126280-07:00,1000.5887451171875,10.85411,10854.11 +22384,2025-03-09T20:17:45.976271-07:00,1000.5745239257812,10.849991,10849.991 +22385,2025-03-09T20:17:56.817592-07:00,1000.5599365234375,10.841321,10841.321 +22386,2025-03-09T20:18:07.667246-07:00,1000.5654907226562,10.849654,10849.654 +22387,2025-03-09T20:18:18.523666-07:00,1000.564453125,10.85642,10856.42 +22388,2025-03-09T20:18:29.382586-07:00,1000.5787353515625,10.85892,10858.92 +22389,2025-03-09T20:18:40.236831-07:00,1000.5853271484375,10.854245,10854.245 +22390,2025-03-09T20:18:51.085599-07:00,1000.5819702148438,10.848768,10848.768 +22391,2025-03-09T20:19:01.931992-07:00,1000.5687255859375,10.846393,10846.393 +22392,2025-03-09T20:19:12.782602-07:00,1000.5806274414062,10.85061,10850.61 +22393,2025-03-09T20:19:23.626928-07:00,1000.572998046875,10.844326,10844.326 +22394,2025-03-09T20:19:34.488777-07:00,1000.5862426757812,10.861849,10861.849 +22395,2025-03-09T20:19:45.329872-07:00,1000.5626831054688,10.841095,10841.095 +22396,2025-03-09T20:19:56.190491-07:00,1000.5970458984375,10.860619,10860.619 +22397,2025-03-09T20:20:07.045913-07:00,1000.5758666992188,10.855422,10855.422 +22398,2025-03-09T20:20:17.894366-07:00,1000.5692138671875,10.848453,10848.453 +22399,2025-03-09T20:20:28.754049-07:00,1000.5549926757812,10.859683,10859.683 +22400,2025-03-09T20:20:39.596182-07:00,1000.5482788085938,10.842133,10842.133 +22401,2025-03-09T20:20:50.456932-07:00,1000.5946655273438,10.86075,10860.75 +22402,2025-03-09T20:21:01.315006-07:00,1000.5592041015625,10.858074,10858.074 +22403,2025-03-09T20:21:12.163911-07:00,1000.585693359375,10.848905,10848.905 +22404,2025-03-09T20:21:23.021441-07:00,1000.5615844726562,10.85753,10857.53 +22405,2025-03-09T20:21:33.878030-07:00,1000.5711059570312,10.856589,10856.589 +22406,2025-03-09T20:21:44.724150-07:00,1000.5790405273438,10.84612,10846.12 +22407,2025-03-09T20:21:55.589923-07:00,1000.572509765625,10.865773,10865.773 +22408,2025-03-09T20:22:06.438903-07:00,1000.5578002929688,10.84898,10848.98 +22409,2025-03-09T20:22:17.286622-07:00,1000.5592041015625,10.847719,10847.719 +22410,2025-03-09T20:22:28.141322-07:00,1000.5711059570312,10.8547,10854.7 +22411,2025-03-09T20:22:39.001957-07:00,1000.5446166992188,10.860635,10860.635 +22412,2025-03-09T20:22:49.856893-07:00,1000.5645141601562,10.854936,10854.936 +22413,2025-03-09T20:23:00.713709-07:00,1000.5777587890625,10.856816,10856.816 +22414,2025-03-09T20:23:11.565814-07:00,1000.5711059570312,10.852105,10852.105 +22415,2025-03-09T20:23:22.424856-07:00,1000.5369262695312,10.859042,10859.042 +22416,2025-03-09T20:23:33.281272-07:00,1000.5711059570312,10.856416,10856.416 +22417,2025-03-09T20:23:44.129383-07:00,1000.5501708984375,10.848111,10848.111 +22418,2025-03-09T20:23:54.977115-07:00,1000.5369262695312,10.847732,10847.732 +22419,2025-03-09T20:24:05.832582-07:00,1000.5446166992188,10.855467,10855.467 +22420,2025-03-09T20:24:16.686011-07:00,1000.5435791015625,10.853429,10853.429 +22421,2025-03-09T20:24:27.540392-07:00,1000.5525512695312,10.854381,10854.381 +22422,2025-03-09T20:24:38.382572-07:00,1000.5181274414062,10.84218,10842.18 +22423,2025-03-09T20:24:49.239705-07:00,1000.5369262695312,10.857133,10857.133 +22424,2025-03-09T20:25:00.092916-07:00,1000.526123046875,10.853211,10853.211 +22425,2025-03-09T20:25:10.945598-07:00,1000.5435791015625,10.852682,10852.682 +22426,2025-03-09T20:25:21.796773-07:00,1000.510498046875,10.851175,10851.175 +22427,2025-03-09T20:25:32.645788-07:00,1000.5289916992188,10.849015,10849.015 +22428,2025-03-09T20:25:43.497588-07:00,1000.5289916992188,10.8518,10851.8 +22429,2025-03-09T20:25:54.356374-07:00,1000.541259765625,10.858786,10858.786 +22430,2025-03-09T20:26:05.203598-07:00,1000.5554809570312,10.847224,10847.224 +22431,2025-03-09T20:26:16.058587-07:00,1000.5531005859375,10.854989,10854.989 +22432,2025-03-09T20:26:26.921591-07:00,1000.554443359375,10.863004,10863.004 +22433,2025-03-09T20:26:37.778580-07:00,1000.59423828125,10.856989,10856.989 +22434,2025-03-09T20:26:48.630820-07:00,1000.5795288085938,10.85224,10852.24 +22435,2025-03-09T20:26:59.480572-07:00,1000.5440673828125,10.849752,10849.752 +22436,2025-03-09T20:27:10.340579-07:00,1000.576171875,10.860007,10860.007 +22437,2025-03-09T20:27:21.198772-07:00,1000.5430297851562,10.858193,10858.193 +22438,2025-03-09T20:27:32.050587-07:00,1000.5552978515625,10.851815,10851.815 +22439,2025-03-09T20:27:42.899604-07:00,1000.5552978515625,10.849017,10849.017 +22440,2025-03-09T20:27:53.757875-07:00,1000.5274047851562,10.858271,10858.271 +22441,2025-03-09T20:28:04.613872-07:00,1000.5618896484375,10.855997,10855.997 +22442,2025-03-09T20:28:15.469598-07:00,1000.5595092773438,10.855726,10855.726 +22443,2025-03-09T20:28:26.316575-07:00,1000.51611328125,10.846977,10846.977 +22444,2025-03-09T20:28:37.168596-07:00,1000.5589599609375,10.852021,10852.021 +22445,2025-03-09T20:28:48.020594-07:00,1000.5391235351562,10.851998,10851.998 +22446,2025-03-09T20:28:58.867591-07:00,1000.5589599609375,10.846997,10846.997 +22447,2025-03-09T20:29:09.732703-07:00,1000.4837646484375,10.865112,10865.112 +22448,2025-03-09T20:29:20.582633-07:00,1000.537841796875,10.84993,10849.93 +22449,2025-03-09T20:29:31.442734-07:00,1000.5287475585938,10.860101,10860.101 +22450,2025-03-09T20:29:42.289855-07:00,1000.5685424804688,10.847121,10847.121 +22451,2025-03-09T20:29:53.140599-07:00,1000.56982421875,10.850744,10850.744 +22452,2025-03-09T20:30:04.000570-07:00,1000.5476684570312,10.859971,10859.971 +22453,2025-03-09T20:30:14.854596-07:00,1000.5409545898438,10.854026,10854.026 +22454,2025-03-09T20:30:25.702845-07:00,1000.5552978515625,10.848249,10848.249 +22455,2025-03-09T20:30:36.558736-07:00,1000.5476684570312,10.855891,10855.891 +22456,2025-03-09T20:30:47.408601-07:00,1000.5462646484375,10.849865,10849.865 +22457,2025-03-09T20:30:58.265744-07:00,1000.5529174804688,10.857143,10857.143 +22458,2025-03-09T20:31:09.117602-07:00,1000.532958984375,10.851858,10851.858 +22459,2025-03-09T20:31:19.965868-07:00,1000.5427856445312,10.848266,10848.266 +22460,2025-03-09T20:31:30.828600-07:00,1000.563720703125,10.862732,10862.732 +22461,2025-03-09T20:31:41.683916-07:00,1000.575927734375,10.855316,10855.316 +22462,2025-03-09T20:31:52.535592-07:00,1000.548095703125,10.851676,10851.676 +22463,2025-03-09T20:32:03.396841-07:00,1000.50634765625,10.861249,10861.249 +22464,2025-03-09T20:32:14.250597-07:00,1000.5261840820312,10.853756,10853.756 +22465,2025-03-09T20:32:25.102596-07:00,1000.5172119140625,10.851999,10851.999 +22466,2025-03-09T20:32:35.954600-07:00,1000.5172119140625,10.852004,10852.004 +22467,2025-03-09T20:32:46.816415-07:00,1000.5181884765625,10.861815,10861.815 +22468,2025-03-09T20:32:57.661645-07:00,1000.5248413085938,10.84523,10845.23 +22469,2025-03-09T20:33:08.521652-07:00,1000.5181884765625,10.860007,10860.007 +22470,2025-03-09T20:33:19.380986-07:00,1000.497314453125,10.859334,10859.334 +22471,2025-03-09T20:33:30.226587-07:00,1000.5115356445312,10.845601,10845.601 +22472,2025-03-09T20:33:41.086596-07:00,1000.5381469726562,10.860009,10860.009 +22473,2025-03-09T20:33:51.949746-07:00,1000.5513305664062,10.86315,10863.15 +22474,2025-03-09T20:34:02.804600-07:00,1000.544677734375,10.854854,10854.854 +22475,2025-03-09T20:34:13.658835-07:00,1000.559326171875,10.854235,10854.235 +22476,2025-03-09T20:34:24.525061-07:00,1000.5393676757812,10.866226,10866.226 +22477,2025-03-09T20:34:35.374636-07:00,1000.512939453125,10.849575,10849.575 +22478,2025-03-09T20:34:36.466159-07:00,1000.5404663085938,1.091523,1091.523 +22479,2025-03-09T20:34:46.233593-07:00,1000.50634765625,9.767434,9767.434 +22480,2025-03-09T20:34:57.086594-07:00,1000.5271606445312,10.853001,10853.001 +22481,2025-03-09T20:35:07.943833-07:00,1000.4983520507812,10.857239,10857.239 +22482,2025-03-09T20:35:18.810836-07:00,1000.4732055664062,10.867003,10867.003 +22483,2025-03-09T20:35:29.669693-07:00,1000.5139770507812,10.858857,10858.857 +22484,2025-03-09T20:35:40.519949-07:00,1000.50634765625,10.850256,10850.256 +22485,2025-03-09T20:35:51.372670-07:00,1000.4863891601562,10.852721,10852.721 +22486,2025-03-09T20:36:02.238591-07:00,1000.4874877929688,10.865921,10865.921 +22487,2025-03-09T20:36:13.095138-07:00,1000.4874877929688,10.856547,10856.547 +22488,2025-03-09T20:36:23.951905-07:00,1000.5084228515625,10.856767,10856.767 +22489,2025-03-09T20:36:34.819054-07:00,1000.4818725585938,10.867149,10867.149 +22490,2025-03-09T20:36:45.675829-07:00,1000.4874877929688,10.856775,10856.775 +22491,2025-03-09T20:36:56.537702-07:00,1000.5007934570312,10.861873,10861.873 +22492,2025-03-09T20:37:07.397886-07:00,1000.5084228515625,10.860184,10860.184 +22493,2025-03-09T20:37:18.251650-07:00,1000.4898681640625,10.853764,10853.764 +22494,2025-03-09T20:37:29.108620-07:00,1000.4951782226562,10.85697,10856.97 +22495,2025-03-09T20:37:39.971974-07:00,1000.4686889648438,10.863354,10863.354 +22496,2025-03-09T20:37:50.827938-07:00,1000.4554443359375,10.855964,10855.964 +22497,2025-03-09T20:38:01.693595-07:00,1000.4686889648438,10.865657,10865.657 +22498,2025-03-09T20:38:12.552742-07:00,1000.451171875,10.859147,10859.147 +22499,2025-03-09T20:38:23.402597-07:00,1000.4818725585938,10.849855,10849.855 +22500,2025-03-09T20:38:34.268872-07:00,1000.4634399414062,10.866275,10866.275 +22501,2025-03-09T20:38:45.123239-07:00,1000.47998046875,10.854367,10854.367 +22502,2025-03-09T20:38:55.987739-07:00,1000.4790649414062,10.8645,10864.5 +22503,2025-03-09T20:39:06.853603-07:00,1000.45361328125,10.865864,10865.864 +22504,2025-03-09T20:39:17.706592-07:00,1000.4790649414062,10.852989,10852.989 +22505,2025-03-09T20:39:28.564895-07:00,1000.4932861328125,10.858303,10858.303 +22506,2025-03-09T20:39:39.430287-07:00,1000.4591674804688,10.865392,10865.392 +22507,2025-03-09T20:39:50.283994-07:00,1000.466796875,10.853707,10853.707 +22508,2025-03-09T20:40:01.149632-07:00,1000.4260864257812,10.865638,10865.638 +22509,2025-03-09T20:40:12.003656-07:00,1000.4525146484375,10.854024,10854.024 +22510,2025-03-09T20:40:22.858144-07:00,1000.466796875,10.854488,10854.488 +22511,2025-03-09T20:40:33.721574-07:00,1000.4469604492188,10.86343,10863.43 +22512,2025-03-09T20:40:44.577714-07:00,1000.4459228515625,10.85614,10856.14 +22513,2025-03-09T20:40:55.427589-07:00,1000.4548950195312,10.849875,10849.875 +22514,2025-03-09T20:41:06.290593-07:00,1000.4417114257812,10.863004,10863.004 +22515,2025-03-09T20:41:17.150666-07:00,1000.4615478515625,10.860073,10860.073 +22516,2025-03-09T20:41:28.006656-07:00,1000.4417114257812,10.85599,10855.99 +22517,2025-03-09T20:41:38.869181-07:00,1000.4483032226562,10.862525,10862.525 +22518,2025-03-09T20:41:49.727910-07:00,1000.4349975585938,10.858729,10858.729 +22519,2025-03-09T20:42:00.596590-07:00,1000.4392700195312,10.86868,10868.68 +22520,2025-03-09T20:42:11.459711-07:00,1000.4337768554688,10.863121,10863.121 +22521,2025-03-09T20:42:22.315597-07:00,1000.427001953125,10.855886,10855.886 +22522,2025-03-09T20:42:33.183835-07:00,1000.4417114257812,10.868238,10868.238 +22523,2025-03-09T20:42:44.036597-07:00,1000.4193725585938,10.852762,10852.762 +22524,2025-03-09T20:42:54.901836-07:00,1000.413818359375,10.865239,10865.239 +22525,2025-03-09T20:43:05.757588-07:00,1000.442626953125,10.855752,10855.752 +22526,2025-03-09T20:43:16.615864-07:00,1000.429443359375,10.858276,10858.276 +22527,2025-03-09T20:43:27.477192-07:00,1000.3939819335938,10.861328,10861.328 +22528,2025-03-09T20:43:38.330975-07:00,1000.388671875,10.853783,10853.783 +22529,2025-03-09T20:43:49.196903-07:00,1000.428466796875,10.865928,10865.928 +22530,2025-03-09T20:44:00.061637-07:00,1000.41748046875,10.864734,10864.734 +22531,2025-03-09T20:44:10.913598-07:00,1000.41748046875,10.851961,10851.961 +22532,2025-03-09T20:44:21.772186-07:00,1000.4095458984375,10.858588,10858.588 +22533,2025-03-09T20:44:32.630593-07:00,1000.4109497070312,10.858407,10858.407 +22534,2025-03-09T20:44:43.489589-07:00,1000.4109497070312,10.858996,10858.996 +22535,2025-03-09T20:44:54.349621-07:00,1000.4119262695312,10.860032,10860.032 +22536,2025-03-09T20:45:05.206770-07:00,1000.404296875,10.857149,10857.149 +22537,2025-03-09T20:45:16.071897-07:00,1000.39208984375,10.865127,10865.127 +22538,2025-03-09T20:45:26.918934-07:00,1000.37890625,10.847037,10847.037 +22539,2025-03-09T20:45:37.783604-07:00,1000.42236328125,10.86467,10864.67 +22540,2025-03-09T20:45:48.636054-07:00,1000.3869018554688,10.85245,10852.45 +22541,2025-03-09T20:45:59.495599-07:00,1000.401123046875,10.859545,10859.545 +22542,2025-03-09T20:46:10.350617-07:00,1000.3812255859375,10.855018,10855.018 +22543,2025-03-09T20:46:21.211587-07:00,1000.4034423828125,10.86097,10860.97 +22544,2025-03-09T20:46:32.066596-07:00,1000.3902587890625,10.855009,10855.009 +22545,2025-03-09T20:46:42.927593-07:00,1000.398193359375,10.860997,10860.997 +22546,2025-03-09T20:46:53.782598-07:00,1000.3782958984375,10.855005,10855.005 +22547,2025-03-09T20:47:04.643570-07:00,1000.3939208984375,10.860972,10860.972 +22548,2025-03-09T20:47:15.497583-07:00,1000.3992309570312,10.854013,10854.013 +22549,2025-03-09T20:47:26.365672-07:00,1000.3963012695312,10.868089,10868.089 +22550,2025-03-09T20:47:37.216595-07:00,1000.3908081054688,10.850923,10850.923 +22551,2025-03-09T20:47:48.074495-07:00,1000.3875122070312,10.8579,10857.9 +22552,2025-03-09T20:47:58.939926-07:00,1000.388916015625,10.865431,10865.431 +22553,2025-03-09T20:48:09.795886-07:00,1000.4110717773438,10.85596,10855.96 +22554,2025-03-09T20:48:20.663572-07:00,1000.4254150390625,10.867686,10867.686 +22555,2025-03-09T20:48:31.524952-07:00,1000.4121704101562,10.86138,10861.38 +22556,2025-03-09T20:48:42.386722-07:00,1000.41455078125,10.86177,10861.77 +22557,2025-03-09T20:48:53.249393-07:00,1000.4103393554688,10.862671,10862.671 +22558,2025-03-09T20:49:04.111846-07:00,1000.3983764648438,10.862453,10862.453 +22559,2025-03-09T20:49:14.967198-07:00,1000.3875122070312,10.855352,10855.352 +22560,2025-03-09T20:49:25.831596-07:00,1000.4229736328125,10.864398,10864.398 +22561,2025-03-09T20:49:36.691598-07:00,1000.4329833984375,10.860002,10860.002 +22562,2025-03-09T20:49:47.556598-07:00,1000.4232177734375,10.865,10865.0 +22563,2025-03-09T20:49:58.419094-07:00,1000.4298706054688,10.862496,10862.496 +22564,2025-03-09T20:50:09.275878-07:00,1000.4268798828125,10.856784,10856.784 +22565,2025-03-09T20:50:20.140427-07:00,1000.427978515625,10.864549,10864.549 +22566,2025-03-09T20:50:30.989838-07:00,1000.42919921875,10.849411,10849.411 +22567,2025-03-09T20:50:41.850281-07:00,1000.3961181640625,10.860443,10860.443 +22568,2025-03-09T20:50:52.712824-07:00,1000.4525146484375,10.862543,10862.543 +22569,2025-03-09T20:51:03.568834-07:00,1000.4406127929688,10.85601,10856.01 +22570,2025-03-09T20:51:14.426871-07:00,1000.428466796875,10.858037,10858.037 +22571,2025-03-09T20:51:25.282991-07:00,1000.4132690429688,10.85612,10856.12 +22572,2025-03-09T20:51:36.148755-07:00,1000.4265747070312,10.865764,10865.764 +22573,2025-03-09T20:51:47.006726-07:00,1000.4530639648438,10.857971,10857.971 +22574,2025-03-09T20:51:57.869579-07:00,1000.4143676757812,10.862853,10862.853 +22575,2025-03-09T20:52:08.736386-07:00,1000.419921875,10.866807,10866.807 +22576,2025-03-09T20:52:19.599972-07:00,1000.4288940429688,10.863586,10863.586 +22577,2025-03-09T20:52:30.461595-07:00,1000.4312744140625,10.861623,10861.623 +22578,2025-03-09T20:52:41.322596-07:00,1000.4445190429688,10.861001,10861.001 +22579,2025-03-09T20:52:52.178262-07:00,1000.4257202148438,10.855666,10855.666 +22580,2025-03-09T20:53:03.040288-07:00,1000.3782958984375,10.862026,10862.026 +22581,2025-03-09T20:53:13.890803-07:00,1000.3673706054688,10.850515,10850.515 +22582,2025-03-09T20:53:24.759739-07:00,1000.427001953125,10.868936,10868.936 +22583,2025-03-09T20:53:35.623216-07:00,1000.4071655273438,10.863477,10863.477 +22584,2025-03-09T20:53:46.481875-07:00,1000.4015502929688,10.858659,10858.659 +22585,2025-03-09T20:53:57.343959-07:00,1000.4160766601562,10.862084,10862.084 +22586,2025-03-09T20:54:08.202598-07:00,1000.4237670898438,10.858639,10858.639 +22587,2025-03-09T20:54:19.067804-07:00,1000.4450073242188,10.865206,10865.206 +22588,2025-03-09T20:54:29.929591-07:00,1000.4209594726562,10.861787,10861.787 +22589,2025-03-09T20:54:40.794637-07:00,1000.4142456054688,10.865046,10865.046 +22590,2025-03-09T20:54:51.661945-07:00,1000.3954467773438,10.867308,10867.308 +22591,2025-03-09T20:55:02.525922-07:00,1000.4110107421875,10.863977,10863.977 +22592,2025-03-09T20:55:13.384600-07:00,1000.40576171875,10.858678,10858.678 +22593,2025-03-09T20:55:24.246602-07:00,1000.4422607421875,10.862002,10862.002 +22594,2025-03-09T20:55:35.112593-07:00,1000.3948364257812,10.865991,10865.991 +22595,2025-03-09T20:55:45.979144-07:00,1000.4168090820312,10.866551,10866.551 +22596,2025-03-09T20:55:56.844685-07:00,1000.43798828125,10.865541,10865.541 +22597,2025-03-09T20:56:07.708878-07:00,1000.4559326171875,10.864193,10864.193 +22598,2025-03-09T20:56:18.574701-07:00,1000.46923828125,10.865823,10865.823 +22599,2025-03-09T20:56:29.430574-07:00,1000.4503784179688,10.855873,10855.873 +22600,2025-03-09T20:56:40.291722-07:00,1000.4185791015625,10.861148,10861.148 +22601,2025-03-09T20:56:51.152616-07:00,1000.3931274414062,10.860894,10860.894 +22602,2025-03-09T20:57:02.017932-07:00,1000.4498291015625,10.865316,10865.316 +22603,2025-03-09T20:57:12.878940-07:00,1000.4508666992188,10.861008,10861.008 +22604,2025-03-09T20:57:23.743595-07:00,1000.4522094726562,10.864655,10864.655 +22605,2025-03-09T20:57:34.597574-07:00,1000.4280395507812,10.853979,10853.979 +22606,2025-03-09T20:57:45.462592-07:00,1000.4568481445312,10.865018,10865.018 +22607,2025-03-09T20:57:56.317845-07:00,1000.4357299804688,10.855253,10855.253 +22608,2025-03-09T20:58:07.179795-07:00,1000.4328002929688,10.86195,10861.95 +22609,2025-03-09T20:58:18.040783-07:00,1000.4564208984375,10.860988,10860.988 +22610,2025-03-09T20:58:28.899073-07:00,1000.4441528320312,10.85829,10858.29 +22611,2025-03-09T20:58:39.755870-07:00,1000.4412231445312,10.856797,10856.797 +22612,2025-03-09T20:58:50.612884-07:00,1000.4369506835938,10.857014,10857.014 +22613,2025-03-09T20:59:01.473905-07:00,1000.4302978515625,10.861021,10861.021 +22614,2025-03-09T20:59:12.341834-07:00,1000.4193725585938,10.867929,10867.929 +22615,2025-03-09T20:59:23.205591-07:00,1000.4326782226562,10.863757,10863.757 +22616,2025-03-09T20:59:34.059703-07:00,1000.4193725585938,10.854112,10854.112 +22617,2025-03-09T20:59:44.926624-07:00,1000.4417114257812,10.866921,10866.921 +22618,2025-03-09T20:59:55.801842-07:00,1000.444091796875,10.875218,10875.218 +22619,2025-03-09T21:00:06.656754-07:00,1000.4318237304688,10.854912,10854.912 +22620,2025-03-09T21:00:17.522589-07:00,1000.427490234375,10.865835,10865.835 +22621,2025-03-09T21:00:28.383804-07:00,1000.4328002929688,10.861215,10861.215 +22622,2025-03-09T21:00:39.244593-07:00,1000.421875,10.860789,10860.789 +22623,2025-03-09T21:00:50.111150-07:00,1000.4573974609375,10.866557,10866.557 +22624,2025-03-09T21:01:00.975466-07:00,1000.4099731445312,10.864316,10864.316 +22625,2025-03-09T21:01:11.839945-07:00,1000.43994140625,10.864479,10864.479 +22626,2025-03-09T21:01:22.709580-07:00,1000.4266357421875,10.869635,10869.635 +22627,2025-03-09T21:01:33.566914-07:00,1000.4346313476562,10.857334,10857.334 +22628,2025-03-09T21:01:44.440260-07:00,1000.4369506835938,10.873346,10873.346 +22629,2025-03-09T21:01:55.305608-07:00,1000.431396484375,10.865348,10865.348 +22630,2025-03-09T21:02:06.162593-07:00,1000.45361328125,10.856985,10856.985 +22631,2025-03-09T21:02:17.026829-07:00,1000.460205078125,10.864236,10864.236 +22632,2025-03-09T21:02:27.880592-07:00,1000.442626953125,10.853763,10853.763 +22633,2025-03-09T21:02:38.743597-07:00,1000.4109497070312,10.863005,10863.005 +22634,2025-03-09T21:02:49.615883-07:00,1000.4318237304688,10.872286,10872.286 +22635,2025-03-09T21:03:00.477547-07:00,1000.4540405273438,10.861664,10861.664 +22636,2025-03-09T21:03:11.346832-07:00,1000.4198608398438,10.869285,10869.285 +22637,2025-03-09T21:03:22.204725-07:00,1000.4498291015625,10.857893,10857.893 +22638,2025-03-09T21:03:33.066590-07:00,1000.4573974609375,10.861865,10861.865 +22639,2025-03-09T21:03:43.938854-07:00,1000.4522094726562,10.872264,10872.264 +22640,2025-03-09T21:03:54.799131-07:00,1000.412353515625,10.860277,10860.277 +22641,2025-03-09T21:04:05.660597-07:00,1000.3934936523438,10.861466,10861.466 +22642,2025-03-09T21:04:16.515597-07:00,1000.4081420898438,10.855,10855.0 +22643,2025-03-09T21:04:27.370855-07:00,1000.4356079101562,10.855258,10855.258 +22644,2025-03-09T21:04:38.234730-07:00,1000.4114990234375,10.863875,10863.875 +22645,2025-03-09T21:04:49.098597-07:00,1000.4326782226562,10.863867,10863.867 +22646,2025-03-09T21:04:59.952832-07:00,1000.400634765625,10.854235,10854.235 +22647,2025-03-09T21:05:10.808597-07:00,1000.3806762695312,10.855765,10855.765 +22648,2025-03-09T21:05:21.673921-07:00,1000.3953247070312,10.865324,10865.324 +22649,2025-03-09T21:05:32.541720-07:00,1000.3577880859375,10.867799,10867.799 +22650,2025-03-09T21:05:43.436118-07:00,1000.37109375,10.894398,10894.398 +22651,2025-03-09T21:05:54.293837-07:00,1000.383056640625,10.857719,10857.719 +22652,2025-03-09T21:06:05.162836-07:00,1000.3933715820312,10.868999,10868.999 +22653,2025-03-09T21:06:16.030557-07:00,1000.4010009765625,10.867721,10867.721 +22654,2025-03-09T21:06:26.898988-07:00,1000.4241943359375,10.868431,10868.431 +22655,2025-03-09T21:06:37.758837-07:00,1000.384521484375,10.859849,10859.849 +22656,2025-03-09T21:06:48.627527-07:00,1000.412353515625,10.86869,10868.69 +22657,2025-03-09T21:06:59.486835-07:00,1000.428955078125,10.859308,10859.308 +22658,2025-03-09T21:07:10.353442-07:00,1000.3839111328125,10.866607,10866.607 +22659,2025-03-09T21:07:21.222124-07:00,1000.4193725585938,10.868682,10868.682 +22660,2025-03-09T21:07:32.079092-07:00,1000.4403076171875,10.856968,10856.968 +22661,2025-03-09T21:07:42.950874-07:00,1000.4392700195312,10.871782,10871.782 +22662,2025-03-09T21:07:53.804823-07:00,1000.441650390625,10.853949,10853.949 +22663,2025-03-09T21:08:04.675583-07:00,1000.4307861328125,10.87076,10870.76 +22664,2025-03-09T21:08:15.538173-07:00,1000.46484375,10.86259,10862.59 +22665,2025-03-09T21:08:26.395552-07:00,1000.4506225585938,10.857379,10857.379 +22666,2025-03-09T21:08:37.267077-07:00,1000.4728393554688,10.871525,10871.525 +22667,2025-03-09T21:08:48.132065-07:00,1000.4606323242188,10.864988,10864.988 +22668,2025-03-09T21:08:59.003128-07:00,1000.455322265625,10.871063,10871.063 +22669,2025-03-09T21:09:09.867111-07:00,1000.4762573242188,10.863983,10863.983 +22670,2025-03-09T21:09:20.743206-07:00,1000.48388671875,10.876095,10876.095 +22671,2025-03-09T21:09:31.604989-07:00,1000.490478515625,10.861783,10861.783 +22672,2025-03-09T21:09:42.465155-07:00,1000.4762573242188,10.860166,10860.166 +22673,2025-03-09T21:09:53.329187-07:00,1000.4862670898438,10.864032,10864.032 +22674,2025-03-09T21:10:04.206436-07:00,1000.487548828125,10.877249,10877.249 +22675,2025-03-09T21:10:15.067165-07:00,1000.4885864257812,10.860729,10860.729 +22676,2025-03-09T21:10:25.938225-07:00,1000.48193359375,10.87106,10871.06 +22677,2025-03-09T21:10:36.804819-07:00,1000.5031127929688,10.866594,10866.594 +22678,2025-03-09T21:10:47.674087-07:00,1000.48193359375,10.869268,10869.268 +22679,2025-03-09T21:10:58.536040-07:00,1000.469970703125,10.861953,10861.953 +22680,2025-03-09T21:11:09.412157-07:00,1000.4922485351562,10.876117,10876.117 +22681,2025-03-09T21:11:20.273842-07:00,1000.485595703125,10.861685,10861.685 +22682,2025-03-09T21:11:31.143982-07:00,1000.4525146484375,10.87014,10870.14 +22683,2025-03-09T21:11:42.015830-07:00,1000.4866333007812,10.871848,10871.848 +22684,2025-03-09T21:11:52.878501-07:00,1000.4667358398438,10.862671,10862.671 +22685,2025-03-09T21:12:03.748117-07:00,1000.4681396484375,10.869616,10869.616 +22686,2025-03-09T21:12:14.609263-07:00,1000.470458984375,10.861146,10861.146 +22687,2025-03-09T21:12:25.477830-07:00,1000.4625244140625,10.868567,10868.567 +22688,2025-03-09T21:12:36.339563-07:00,1000.4515380859375,10.861733,10861.733 +22689,2025-03-09T21:12:47.211127-07:00,1000.4728393554688,10.871564,10871.564 +22690,2025-03-09T21:12:58.082061-07:00,1000.4737548828125,10.870934,10870.934 +22691,2025-03-09T21:13:08.948129-07:00,1000.4907836914062,10.866068,10866.068 +22692,2025-03-09T21:13:19.816115-07:00,1000.462890625,10.867986,10867.986 +22693,2025-03-09T21:13:30.679842-07:00,1000.4718627929688,10.863727,10863.727 +22694,2025-03-09T21:13:41.550833-07:00,1000.4662475585938,10.870991,10870.991 +22695,2025-03-09T21:13:52.418443-07:00,1000.4808349609375,10.86761,10867.61 +22696,2025-03-09T21:14:03.275864-07:00,1000.4963989257812,10.857421,10857.421 +22697,2025-03-09T21:14:14.143223-07:00,1000.5007934570312,10.867359,10867.359 +22698,2025-03-09T21:14:25.013842-07:00,1000.4699096679688,10.870619,10870.619 +22699,2025-03-09T21:14:35.874984-07:00,1000.46435546875,10.861142,10861.142 +22700,2025-03-09T21:14:46.745115-07:00,1000.4921875,10.870131,10870.131 +22701,2025-03-09T21:14:57.601619-07:00,1000.4732666015625,10.856504,10856.504 +22702,2025-03-09T21:15:08.474964-07:00,1000.4656372070312,10.873345,10873.345 +22703,2025-03-09T21:15:19.340576-07:00,1000.5087280273438,10.865612,10865.612 +22704,2025-03-09T21:15:30.205839-07:00,1000.5045166015625,10.865263,10865.263 +22705,2025-03-09T21:15:41.072115-07:00,1000.484619140625,10.866276,10866.276 +22706,2025-03-09T21:15:51.939108-07:00,1000.471435546875,10.866993,10866.993 +22707,2025-03-09T21:16:02.802837-07:00,1000.4935913085938,10.863729,10863.729 +22708,2025-03-09T21:16:13.668839-07:00,1000.5018920898438,10.866002,10866.002 +22709,2025-03-09T21:16:24.543755-07:00,1000.51513671875,10.874916,10874.916 +22710,2025-03-09T21:16:35.409024-07:00,1000.4885864257812,10.865269,10865.269 +22711,2025-03-09T21:16:46.276179-07:00,1000.490966796875,10.867155,10867.155 +22712,2025-03-09T21:16:57.148949-07:00,1000.4654541015625,10.87277,10872.77 +22713,2025-03-09T21:17:08.008296-07:00,1000.51953125,10.859347,10859.347 +22714,2025-03-09T21:17:18.881486-07:00,1000.5231323242188,10.87319,10873.19 +22715,2025-03-09T21:17:29.749979-07:00,1000.5086059570312,10.868493,10868.493 +22716,2025-03-09T21:17:40.617838-07:00,1000.53076171875,10.867859,10867.859 +22717,2025-03-09T21:17:51.477951-07:00,1000.5099487304688,10.860113,10860.113 +22718,2025-03-09T21:18:02.354119-07:00,1000.5440673828125,10.876168,10876.168 +22719,2025-03-09T21:18:13.210477-07:00,1000.5586547851562,10.856358,10856.358 +22720,2025-03-09T21:18:24.079060-07:00,1000.5254516601562,10.868583,10868.583 +22721,2025-03-09T21:18:34.947884-07:00,1000.5289306640625,10.868824,10868.824 +22722,2025-03-09T21:18:45.812157-07:00,1000.521240234375,10.864273,10864.273 +22723,2025-03-09T21:18:56.678345-07:00,1000.5567016601562,10.866188,10866.188 +22724,2025-03-09T21:19:07.553177-07:00,1000.5179443359375,10.874832,10874.832 +22725,2025-03-09T21:19:18.420692-07:00,1000.5445556640625,10.867515,10867.515 +22726,2025-03-09T21:19:29.290086-07:00,1000.552490234375,10.869394,10869.394 +22727,2025-03-09T21:19:40.157691-07:00,1000.5348510742188,10.867605,10867.605 +22728,2025-03-09T21:19:51.023218-07:00,1000.5348510742188,10.865527,10865.527 +22729,2025-03-09T21:20:01.902019-07:00,1000.548095703125,10.878801,10878.801 +22730,2025-03-09T21:20:12.763842-07:00,1000.489501953125,10.861823,10861.823 +22731,2025-03-09T21:20:23.627007-07:00,1000.5093994140625,10.863165,10863.165 +22732,2025-03-09T21:20:34.504986-07:00,1000.5159912109375,10.877979,10877.979 +22733,2025-03-09T21:20:45.370832-07:00,1000.5263061523438,10.865846,10865.846 +22734,2025-03-09T21:20:56.228184-07:00,1000.5130615234375,10.857352,10857.352 +22735,2025-03-09T21:21:07.098117-07:00,1000.52734375,10.869933,10869.933 +22736,2025-03-09T21:21:17.968025-07:00,1000.5206909179688,10.869908,10869.908 +22737,2025-03-09T21:21:28.841129-07:00,1000.5007934570312,10.873104,10873.104 +22738,2025-03-09T21:21:39.710838-07:00,1000.5283813476562,10.869709,10869.709 +22739,2025-03-09T21:21:50.571836-07:00,1000.5164184570312,10.860998,10860.998 +22740,2025-03-09T21:22:01.454847-07:00,1000.490966796875,10.883011,10883.011 +22741,2025-03-09T21:22:12.317202-07:00,1000.4945068359375,10.862355,10862.355 +22742,2025-03-09T21:22:23.190825-07:00,1000.4945068359375,10.873623,10873.623 +22743,2025-03-09T21:22:34.052865-07:00,1000.5011596679688,10.86204,10862.04 +22744,2025-03-09T21:22:44.927887-07:00,1000.5045166015625,10.875022,10875.022 +22745,2025-03-09T21:22:55.787836-07:00,1000.5045166015625,10.859949,10859.949 +22746,2025-03-09T21:23:06.661835-07:00,1000.4935913085938,10.873999,10873.999 +22747,2025-03-09T21:23:17.536962-07:00,1000.4472045898438,10.875127,10875.127 +22748,2025-03-09T21:23:28.405137-07:00,1000.4707641601562,10.868175,10868.175 +22749,2025-03-09T21:23:39.264245-07:00,1000.4717407226562,10.859108,10859.108 +22750,2025-03-09T21:23:50.136189-07:00,1000.4598388671875,10.871944,10871.944 +22751,2025-03-09T21:24:01.010980-07:00,1000.43994140625,10.874791,10874.791 +22752,2025-03-09T21:24:11.870841-07:00,1000.4740600585938,10.859861,10859.861 +22753,2025-03-09T21:24:22.744839-07:00,1000.43994140625,10.873998,10873.998 +22754,2025-03-09T21:24:33.601836-07:00,1000.463134765625,10.856997,10856.997 +22755,2025-03-09T21:24:44.471352-07:00,1000.4356079101562,10.869516,10869.516 +22756,2025-03-09T21:24:55.342157-07:00,1000.4366455078125,10.870805,10870.805 +22757,2025-03-09T21:25:06.212170-07:00,1000.450927734375,10.870013,10870.013 +22758,2025-03-09T21:25:17.074022-07:00,1000.4442138671875,10.861852,10861.852 +22759,2025-03-09T21:25:27.945039-07:00,1000.4442138671875,10.871017,10871.017 +22760,2025-03-09T21:25:38.816865-07:00,1000.4389038085938,10.871826,10871.826 +22761,2025-03-09T21:25:49.676057-07:00,1000.4389038085938,10.859192,10859.192 +22762,2025-03-09T21:26:00.549648-07:00,1000.4389038085938,10.873591,10873.591 +22763,2025-03-09T21:26:11.417503-07:00,1000.4280395507812,10.867855,10867.855 +22764,2025-03-09T21:26:22.275833-07:00,1000.4190673828125,10.85833,10858.33 +22765,2025-03-09T21:26:33.150416-07:00,1000.4456176757812,10.874583,10874.583 +22766,2025-03-09T21:26:44.012294-07:00,1000.4190673828125,10.861878,10861.878 +22767,2025-03-09T21:26:54.882146-07:00,1000.4299926757812,10.869852,10869.852 +22768,2025-03-09T21:27:05.744839-07:00,1000.4432983398438,10.862693,10862.693 +22769,2025-03-09T21:27:16.613311-07:00,1000.4090576171875,10.868472,10868.472 +22770,2025-03-09T21:27:27.485447-07:00,1000.4210205078125,10.872136,10872.136 +22771,2025-03-09T21:27:38.356671-07:00,1000.3934326171875,10.871224,10871.224 +22772,2025-03-09T21:27:49.218118-07:00,1000.4120483398438,10.861447,10861.447 +22773,2025-03-09T21:28:00.076856-07:00,1000.43994140625,10.858738,10858.738 +22774,2025-03-09T21:28:10.947839-07:00,1000.4078369140625,10.870983,10870.983 +22775,2025-03-09T21:28:21.804098-07:00,1000.413330078125,10.856259,10856.259 +22776,2025-03-09T21:28:32.661972-07:00,1000.42529296875,10.857874,10857.874 +22777,2025-03-09T21:28:43.524157-07:00,1000.4176635742188,10.862185,10862.185 +22778,2025-03-09T21:28:54.385900-07:00,1000.4176635742188,10.861743,10861.743 +22779,2025-03-09T21:29:05.259113-07:00,1000.42431640625,10.873213,10873.213 +22780,2025-03-09T21:29:16.111870-07:00,1000.4087524414062,10.852757,10852.757 +22781,2025-03-09T21:29:26.975840-07:00,1000.40966796875,10.86397,10863.97 +22782,2025-03-09T21:29:37.843550-07:00,1000.4087524414062,10.86771,10867.71 +22783,2025-03-09T21:29:48.697521-07:00,1000.44189453125,10.853971,10853.971 +22784,2025-03-09T21:29:59.550103-07:00,1000.4182739257812,10.852582,10852.582 +22785,2025-03-09T21:30:10.408193-07:00,1000.419677734375,10.85809,10858.09 +22786,2025-03-09T21:30:21.261788-07:00,1000.4117431640625,10.853595,10853.595 +22787,2025-03-09T21:30:32.119314-07:00,1000.4371948242188,10.857526,10857.526 +22788,2025-03-09T21:30:42.971653-07:00,1000.4017333984375,10.852339,10852.339 +22789,2025-03-09T21:30:53.837066-07:00,1000.384765625,10.865413,10865.413 +22790,2025-03-09T21:31:04.695582-07:00,1000.390380859375,10.858516,10858.516 +22791,2025-03-09T21:31:15.553070-07:00,1000.423583984375,10.857488,10857.488 +22792,2025-03-09T21:31:26.420834-07:00,1000.44775390625,10.867764,10867.764 +22793,2025-03-09T21:31:37.277835-07:00,1000.4400634765625,10.857001,10857.001 +22794,2025-03-09T21:31:48.132288-07:00,1000.438720703125,10.854453,10854.453 +22795,2025-03-09T21:31:58.991836-07:00,1000.4177856445312,10.859548,10859.548 +22796,2025-03-09T21:32:09.851171-07:00,1000.4154663085938,10.859335,10859.335 +22797,2025-03-09T21:32:20.715192-07:00,1000.4131469726562,10.864021,10864.021 +22798,2025-03-09T21:32:31.576082-07:00,1000.4529418945312,10.86089,10860.89 +22799,2025-03-09T21:32:42.437318-07:00,1000.4227905273438,10.861236,10861.236 +22800,2025-03-09T21:32:53.290839-07:00,1000.442626953125,10.853521,10853.521 +22801,2025-03-09T21:33:04.151964-07:00,1000.4771728515625,10.861125,10861.125 +22802,2025-03-09T21:33:15.012044-07:00,1000.4337768554688,10.86008,10860.08 +22803,2025-03-09T21:33:25.873085-07:00,1000.45361328125,10.861041,10861.041 +22804,2025-03-09T21:33:36.728838-07:00,1000.4790649414062,10.855753,10855.753 +22805,2025-03-09T21:33:47.592878-07:00,1000.4710693359375,10.86404,10864.04 +22806,2025-03-09T21:33:58.457140-07:00,1000.4489135742188,10.864262,10864.262 +22807,2025-03-09T21:34:09.324244-07:00,1000.4356079101562,10.867104,10867.104 +22808,2025-03-09T21:34:20.193847-07:00,1000.4332885742188,10.869603,10869.603 +22809,2025-03-09T21:34:31.056071-07:00,1000.445556640625,10.862224,10862.224 +22810,2025-03-09T21:34:41.922173-07:00,1000.4232788085938,10.866102,10866.102 +22811,2025-03-09T21:34:52.772200-07:00,1000.429931640625,10.850027,10850.027 +22812,2025-03-09T21:35:03.639169-07:00,1000.4073486328125,10.866969,10866.969 +22813,2025-03-09T21:35:14.494069-07:00,1000.3931274414062,10.8549,10854.9 +22814,2025-03-09T21:35:25.353845-07:00,1000.4182739257812,10.859776,10859.776 +22815,2025-03-09T21:35:36.213842-07:00,1000.422607421875,10.859997,10859.997 +22816,2025-03-09T21:35:47.083115-07:00,1000.44482421875,10.869273,10869.273 +22817,2025-03-09T21:35:57.943081-07:00,1000.4149780273438,10.859966,10859.966 +22818,2025-03-09T21:36:08.801899-07:00,1000.42822265625,10.858818,10858.818 +22819,2025-03-09T21:36:19.662667-07:00,1000.4149780273438,10.860768,10860.768 +22820,2025-03-09T21:36:30.527020-07:00,1000.3914184570312,10.864353,10864.353 +22821,2025-03-09T21:36:41.389639-07:00,1000.403564453125,10.862619,10862.619 +22822,2025-03-09T21:36:52.261078-07:00,1000.387939453125,10.871439,10871.439 +22823,2025-03-09T21:37:03.115838-07:00,1000.4000244140625,10.85476,10854.76 +22824,2025-03-09T21:37:13.987886-07:00,1000.4121704101562,10.872048,10872.048 +22825,2025-03-09T21:37:24.853840-07:00,1000.3965454101562,10.865954,10865.954 +22826,2025-03-09T21:37:35.708840-07:00,1000.4141235351562,10.855,10855.0 +22827,2025-03-09T21:37:46.560942-07:00,1000.391845703125,10.852102,10852.102 +22828,2025-03-09T21:37:57.425463-07:00,1000.40283203125,10.864521,10864.521 +22829,2025-03-09T21:38:08.281835-07:00,1000.409423828125,10.856372,10856.372 +22830,2025-03-09T21:38:19.137040-07:00,1000.4126586914062,10.855205,10855.205 +22831,2025-03-09T21:38:29.989841-07:00,1000.4103393554688,10.852801,10852.801 +22832,2025-03-09T21:38:40.849877-07:00,1000.4288940429688,10.860036,10860.036 +22833,2025-03-09T21:38:51.700496-07:00,1000.4188842773438,10.850619,10850.619 +22834,2025-03-09T21:39:02.557840-07:00,1000.396728515625,10.857344,10857.344 +22835,2025-03-09T21:39:13.408837-07:00,1000.3853149414062,10.850997,10850.997 +22836,2025-03-09T21:39:24.267836-07:00,1000.408447265625,10.858999,10858.999 +22837,2025-03-09T21:39:35.128841-07:00,1000.426025390625,10.861005,10861.005 +22838,2025-03-09T21:39:45.976839-07:00,1000.4037475585938,10.847998,10847.998 +22839,2025-03-09T21:39:56.821082-07:00,1000.3858032226562,10.844243,10844.243 +22840,2025-03-09T21:40:07.679840-07:00,1000.396728515625,10.858758,10858.758 +22841,2025-03-09T21:40:18.528840-07:00,1000.37451171875,10.849,10849.0 +22842,2025-03-09T21:40:29.391516-07:00,1000.3621826171875,10.862676,10862.676 +22843,2025-03-09T21:40:40.240843-07:00,1000.3796997070312,10.849327,10849.327 +22844,2025-03-09T21:40:51.081373-07:00,1000.3551025390625,10.84053,10840.53 +22845,2025-03-09T21:41:01.937120-07:00,1000.359375,10.855747,10855.747 +22846,2025-03-09T21:41:12.787322-07:00,1000.4232788085938,10.850202,10850.202 +22847,2025-03-09T21:41:23.635884-07:00,1000.3822021484375,10.848562,10848.562 +22848,2025-03-09T21:41:34.483813-07:00,1000.364501953125,10.847929,10847.929 +22849,2025-03-09T21:41:45.343198-07:00,1000.4029541015625,10.859385,10859.385 +22850,2025-03-09T21:41:56.185843-07:00,1000.3717041015625,10.842645,10842.645 +22851,2025-03-09T21:42:07.035837-07:00,1000.3892211914062,10.849994,10849.994 +22852,2025-03-09T21:42:17.884111-07:00,1000.3858642578125,10.848274,10848.274 +22853,2025-03-09T21:42:28.733838-07:00,1000.4099731445312,10.849727,10849.727 +22854,2025-03-09T21:42:39.581185-07:00,1000.37451171875,10.847347,10847.347 +22855,2025-03-09T21:42:50.436183-07:00,1000.37109375,10.854998,10854.998 +22856,2025-03-09T21:43:01.288313-07:00,1000.3621826171875,10.85213,10852.13 +22857,2025-03-09T21:43:12.138031-07:00,1000.373046875,10.849718,10849.718 +22858,2025-03-09T21:43:22.988209-07:00,1000.3650512695312,10.850178,10850.178 +22859,2025-03-09T21:43:33.835817-07:00,1000.4025268554688,10.847608,10847.608 +22860,2025-03-09T21:43:44.688870-07:00,1000.3602905273438,10.853053,10853.053 +22861,2025-03-09T21:43:55.528078-07:00,1000.35693359375,10.839208,10839.208 +22862,2025-03-09T21:44:06.370846-07:00,1000.4085693359375,10.842768,10842.768 +22863,2025-03-09T21:44:17.223304-07:00,1000.3429565429688,10.852458,10852.458 +22864,2025-03-09T21:44:28.069124-07:00,1000.402587890625,10.84582,10845.82 +22865,2025-03-09T21:44:38.914159-07:00,1000.3803100585938,10.845035,10845.035 +22866,2025-03-09T21:44:49.753834-07:00,1000.3646850585938,10.839675,10839.675 +22867,2025-03-09T21:45:00.611028-07:00,1000.3836059570312,10.857194,10857.194 +22868,2025-03-09T21:45:11.460804-07:00,1000.386474609375,10.849776,10849.776 +22869,2025-03-09T21:45:22.307844-07:00,1000.4252319335938,10.84704,10847.04 +22870,2025-03-09T21:45:33.156240-07:00,1000.3685302734375,10.848396,10848.396 +22871,2025-03-09T21:45:44.000415-07:00,1000.3740844726562,10.844175,10844.175 +22872,2025-03-09T21:45:54.859633-07:00,1000.3717041015625,10.859218,10859.218 +22873,2025-03-09T21:46:05.703361-07:00,1000.34716796875,10.843728,10843.728 +22874,2025-03-09T21:46:16.557014-07:00,1000.3328247070312,10.853653,10853.653 +22875,2025-03-09T21:46:27.406958-07:00,1000.3702392578125,10.849944,10849.944 +22876,2025-03-09T21:46:38.253836-07:00,1000.383544921875,10.846878,10846.878 +22877,2025-03-09T21:46:49.104614-07:00,1000.3721923828125,10.850778,10850.778 +22878,2025-03-09T21:46:59.947830-07:00,1000.3509521484375,10.843216,10843.216 +22879,2025-03-09T21:47:10.795839-07:00,1000.3409423828125,10.848009,10848.009 +22880,2025-03-09T21:47:21.639157-07:00,1000.3792724609375,10.843318,10843.318 +22881,2025-03-09T21:47:32.487413-07:00,1000.3186645507812,10.848256,10848.256 +22882,2025-03-09T21:47:43.333874-07:00,1000.3295288085938,10.846461,10846.461 +22883,2025-03-09T21:47:54.173324-07:00,1000.3836059570312,10.83945,10839.45 +22884,2025-03-09T21:48:05.032980-07:00,1000.4024047851562,10.859656,10859.656 +22885,2025-03-09T21:48:15.877046-07:00,1000.3990478515625,10.844066,10844.066 +22886,2025-03-09T21:48:26.730853-07:00,1000.3976440429688,10.853807,10853.807 +22887,2025-03-09T21:48:37.573464-07:00,1000.3834228515625,10.842611,10842.611 +22888,2025-03-09T21:48:48.418335-07:00,1000.3876342773438,10.844871,10844.871 +22889,2025-03-09T21:48:59.271452-07:00,1000.3853149414062,10.853117,10853.117 +22890,2025-03-09T21:49:10.116842-07:00,1000.3905639648438,10.84539,10845.39 +22891,2025-03-09T21:49:20.965839-07:00,1000.3839111328125,10.848997,10848.997 +22892,2025-03-09T21:49:31.817837-07:00,1000.40283203125,10.851998,10851.998 +22893,2025-03-09T21:49:42.660838-07:00,1000.3739013671875,10.843001,10843.001 +22894,2025-03-09T21:49:53.512520-07:00,1000.3858032226562,10.851682,10851.682 +22895,2025-03-09T21:50:04.353175-07:00,1000.37158203125,10.840655,10840.655 +22896,2025-03-09T21:50:15.195058-07:00,1000.3677978515625,10.841883,10841.883 +22897,2025-03-09T21:50:26.045922-07:00,1000.3757934570312,10.850864,10850.864 +22898,2025-03-09T21:50:36.893838-07:00,1000.381103515625,10.847916,10847.916 +22899,2025-03-09T21:50:47.732255-07:00,1000.3922729492188,10.838417,10838.417 +22900,2025-03-09T21:50:58.586840-07:00,1000.3643798828125,10.854585,10854.585 +22901,2025-03-09T21:51:09.428829-07:00,1000.38330078125,10.841989,10841.989 +22902,2025-03-09T21:51:20.273807-07:00,1000.36865234375,10.844978,10844.978 +22903,2025-03-09T21:51:31.122175-07:00,1000.33740234375,10.848368,10848.368 +22904,2025-03-09T21:51:41.969841-07:00,1000.3596801757812,10.847666,10847.666 +22905,2025-03-09T21:51:52.814205-07:00,1000.3785400390625,10.844364,10844.364 +22906,2025-03-09T21:52:03.659842-07:00,1000.3748168945312,10.845637,10845.637 +22907,2025-03-09T21:52:14.499625-07:00,1000.3870239257812,10.839783,10839.783 +22908,2025-03-09T21:52:25.347002-07:00,1000.3870239257812,10.847377,10847.377 +22909,2025-03-09T21:52:36.200288-07:00,1000.36474609375,10.853286,10853.286 +22910,2025-03-09T21:52:47.043836-07:00,1000.3912353515625,10.843548,10843.548 +22911,2025-03-09T21:52:57.889220-07:00,1000.36767578125,10.845384,10845.384 +22912,2025-03-09T21:53:08.743082-07:00,1000.4007568359375,10.853862,10853.862 +22913,2025-03-09T21:53:19.581167-07:00,1000.3718872070312,10.838085,10838.085 +22914,2025-03-09T21:53:30.429014-07:00,1000.3841552734375,10.847847,10847.847 +22915,2025-03-09T21:53:41.279140-07:00,1000.3908081054688,10.850126,10850.126 +22916,2025-03-09T21:53:52.120813-07:00,1000.3973388671875,10.841673,10841.673 +22917,2025-03-09T21:54:02.958836-07:00,1000.3817138671875,10.838023,10838.023 +22918,2025-03-09T21:54:13.809147-07:00,1000.37939453125,10.850311,10850.311 +22919,2025-03-09T21:54:24.655422-07:00,1000.385009765625,10.846275,10846.275 +22920,2025-03-09T21:54:35.497881-07:00,1000.382568359375,10.842459,10842.459 +22921,2025-03-09T21:54:46.341965-07:00,1000.382568359375,10.844084,10844.084 +22922,2025-03-09T21:54:57.195844-07:00,1000.3878173828125,10.853879,10853.879 +22923,2025-03-09T21:55:08.040055-07:00,1000.3656005859375,10.844211,10844.211 +22924,2025-03-09T21:55:18.882297-07:00,1000.3778076171875,10.842242,10842.242 +22925,2025-03-09T21:55:29.732202-07:00,1000.3976440429688,10.849905,10849.905 +22926,2025-03-09T21:55:40.572098-07:00,1000.3565673828125,10.839896,10839.896 +22927,2025-03-09T21:55:51.417817-07:00,1000.3688354492188,10.845719,10845.719 +22928,2025-03-09T21:56:02.263817-07:00,1000.37646484375,10.846,10846.0 +22929,2025-03-09T21:56:13.115022-07:00,1000.3796997070312,10.851205,10851.205 +22930,2025-03-09T21:56:23.956156-07:00,1000.3663940429688,10.841134,10841.134 +22931,2025-03-09T21:56:34.812844-07:00,1000.369384765625,10.856688,10856.688 +22932,2025-03-09T21:56:45.661179-07:00,1000.3915405273438,10.848335,10848.335 +22933,2025-03-09T21:56:56.507981-07:00,1000.3640747070312,10.846802,10846.802 +22934,2025-03-09T21:57:07.347975-07:00,1000.3881225585938,10.839994,10839.994 +22935,2025-03-09T21:57:18.197910-07:00,1000.3792114257812,10.849935,10849.935 +22936,2025-03-09T21:57:29.044845-07:00,1000.3914184570312,10.846935,10846.935 +22937,2025-03-09T21:57:30.046318-07:00,1000.3900146484375,1.001473,1001.473 +22938,2025-03-09T21:57:39.882640-07:00,1000.3582763671875,9.836322,9836.322 +22939,2025-03-09T21:57:50.731320-07:00,1000.38232421875,10.84868,10848.68 +22940,2025-03-09T21:58:01.576857-07:00,1000.3757934570312,10.845537,10845.537 +22941,2025-03-09T21:58:12.424061-07:00,1000.3998413085938,10.847204,10847.204 +22942,2025-03-09T21:58:23.266897-07:00,1000.3601684570312,10.842836,10842.836 +22943,2025-03-09T21:58:34.113887-07:00,1000.3521728515625,10.84699,10846.99 +22944,2025-03-09T21:58:44.963970-07:00,1000.3099975585938,10.850083,10850.083 +22945,2025-03-09T21:58:55.801876-07:00,1000.3709106445312,10.837906,10837.906 +22946,2025-03-09T21:59:06.644320-07:00,1000.3629760742188,10.842444,10842.444 +22947,2025-03-09T21:59:17.491984-07:00,1000.376220703125,10.847664,10847.664 +22948,2025-03-09T21:59:28.343853-07:00,1000.3396606445312,10.851869,10851.869 +22949,2025-03-09T21:59:39.185118-07:00,1000.3739013671875,10.841265,10841.265 +22950,2025-03-09T21:59:50.027371-07:00,1000.3662719726562,10.842253,10842.253 +22951,2025-03-09T22:00:00.874839-07:00,1000.3870849609375,10.847468,10847.468 +22952,2025-03-09T22:00:11.711137-07:00,1000.4098510742188,10.836298,10836.298 +22953,2025-03-09T22:00:22.552146-07:00,1000.3820190429688,10.841009,10841.009 +22954,2025-03-09T22:00:33.396264-07:00,1000.3876342773438,10.844118,10844.118 +22955,2025-03-09T22:00:44.250413-07:00,1000.3743896484375,10.854149,10854.149 +22956,2025-03-09T22:00:55.094121-07:00,1000.3402099609375,10.843708,10843.708 +22957,2025-03-09T22:01:05.941816-07:00,1000.38525390625,10.847695,10847.695 +22958,2025-03-09T22:01:16.779836-07:00,1000.3775634765625,10.83802,10838.02 +22959,2025-03-09T22:01:27.632907-07:00,1000.3895263671875,10.853071,10853.071 +22960,2025-03-09T22:01:38.470942-07:00,1000.3950805664062,10.838035,10838.035 +22961,2025-03-09T22:01:49.309813-07:00,1000.3895263671875,10.838871,10838.871 +22962,2025-03-09T22:02:00.156810-07:00,1000.3870849609375,10.846997,10846.997 +22963,2025-03-09T22:02:10.999017-07:00,1000.372802734375,10.842207,10842.207 +22964,2025-03-09T22:02:21.841148-07:00,1000.3847045898438,10.842131,10842.131 +22965,2025-03-09T22:02:32.698732-07:00,1000.3714599609375,10.857584,10857.584 +22966,2025-03-09T22:02:43.536839-07:00,1000.357177734375,10.838107,10838.107 +22967,2025-03-09T22:02:54.390838-07:00,1000.375732421875,10.853999,10853.999 +22968,2025-03-09T22:03:05.236839-07:00,1000.357177734375,10.846001,10846.001 +22969,2025-03-09T22:03:16.088038-07:00,1000.3217163085938,10.851199,10851.199 +22970,2025-03-09T22:03:26.928148-07:00,1000.341552734375,10.84011,10840.11 +22971,2025-03-09T22:03:37.783898-07:00,1000.3457641601562,10.85575,10855.75 +22972,2025-03-09T22:03:48.631239-07:00,1000.3643798828125,10.847341,10847.341 +22973,2025-03-09T22:03:59.472080-07:00,1000.3499755859375,10.840841,10840.841 +22974,2025-03-09T22:04:10.313836-07:00,1000.356689453125,10.841756,10841.756 +22975,2025-03-09T22:04:21.157887-07:00,1000.3222045898438,10.844051,10844.051 +22976,2025-03-09T22:04:31.994130-07:00,1000.3301391601562,10.836243,10836.243 +22977,2025-03-09T22:04:42.839154-07:00,1000.3211669921875,10.845024,10845.024 +22978,2025-03-09T22:04:53.693368-07:00,1000.3145141601562,10.854214,10854.214 +22979,2025-03-09T22:05:04.536103-07:00,1000.2814331054688,10.842735,10842.735 +22980,2025-03-09T22:05:15.377972-07:00,1000.2857055664062,10.841869,10841.869 +22981,2025-03-09T22:05:26.221431-07:00,1000.28466796875,10.843459,10843.459 +22982,2025-03-09T22:05:37.067102-07:00,1000.2568969726562,10.845671,10845.671 +22983,2025-03-09T22:05:47.920084-07:00,1000.275634765625,10.852982,10852.982 +22984,2025-03-09T22:05:58.748109-07:00,1000.2832641601562,10.828025,10828.025 +22985,2025-03-09T22:06:09.591264-07:00,1000.2888793945312,10.843155,10843.155 +22986,2025-03-09T22:06:20.435126-07:00,1000.26904296875,10.843862,10843.862 +22987,2025-03-09T22:06:31.278966-07:00,1000.260009765625,10.84384,10843.84 +22988,2025-03-09T22:06:42.123353-07:00,1000.2676391601562,10.844387,10844.387 +22989,2025-03-09T22:06:52.971165-07:00,1000.2666625976562,10.847812,10847.812 +22990,2025-03-09T22:07:03.809670-07:00,1000.2798461914062,10.838505,10838.505 +22991,2025-03-09T22:07:14.653959-07:00,1000.28515625,10.844289,10844.289 +22992,2025-03-09T22:07:25.495365-07:00,1000.2510375976562,10.841406,10841.406 +22993,2025-03-09T22:07:36.327186-07:00,1000.2761840820312,10.831821,10831.821 +22994,2025-03-09T22:07:47.175703-07:00,1000.22216796875,10.848517,10848.517 +22995,2025-03-09T22:07:58.016988-07:00,1000.2761840820312,10.841285,10841.285 +22996,2025-03-09T22:08:08.855488-07:00,1000.2803955078125,10.8385,10838.5 +22997,2025-03-09T22:08:19.694239-07:00,1000.2553100585938,10.838751,10838.751 +22998,2025-03-09T22:08:30.528966-07:00,1000.275146484375,10.834727,10834.727 +22999,2025-03-09T22:08:41.368254-07:00,1000.2926025390625,10.839288,10839.288 +23000,2025-03-09T22:08:52.216964-07:00,1000.26611328125,10.84871,10848.71 +23001,2025-03-09T22:09:03.060332-07:00,1000.2637329101562,10.843368,10843.368 +23002,2025-03-09T22:09:13.894466-07:00,1000.243896484375,10.834134,10834.134 +23003,2025-03-09T22:09:24.733994-07:00,1000.2901611328125,10.839528,10839.528 +23004,2025-03-09T22:09:35.578552-07:00,1000.2954711914062,10.844558,10844.558 +23005,2025-03-09T22:09:46.426729-07:00,1000.2901611328125,10.848177,10848.177 +23006,2025-03-09T22:09:57.264124-07:00,1000.3010864257812,10.837395,10837.395 +23007,2025-03-09T22:10:08.109592-07:00,1000.2986450195312,10.845468,10845.468 +23008,2025-03-09T22:10:18.948947-07:00,1000.275390625,10.839355,10839.355 +23009,2025-03-09T22:10:29.788263-07:00,1000.2820434570312,10.839316,10839.316 +23010,2025-03-09T22:10:40.621027-07:00,1000.2687377929688,10.832764,10832.764 +23011,2025-03-09T22:10:51.464002-07:00,1000.2531127929688,10.842975,10842.975 +23012,2025-03-09T22:11:02.305454-07:00,1000.2517700195312,10.841452,10841.452 +23013,2025-03-09T22:11:13.140956-07:00,1000.2584228515625,10.835502,10835.502 +23014,2025-03-09T22:11:23.986114-07:00,1000.2782592773438,10.845158,10845.158 +23015,2025-03-09T22:11:34.826958-07:00,1000.2692260742188,10.840844,10840.844 +23016,2025-03-09T22:11:45.666723-07:00,1000.27587890625,10.839765,10839.765 +23017,2025-03-09T22:11:56.503372-07:00,1000.2867431640625,10.836649,10836.649 +23018,2025-03-09T22:12:07.347103-07:00,1000.294677734375,10.843731,10843.731 +23019,2025-03-09T22:12:18.196968-07:00,1000.2867431640625,10.849865,10849.865 +23020,2025-03-09T22:12:29.037993-07:00,1000.2932739257812,10.841025,10841.025 +23021,2025-03-09T22:12:39.881332-07:00,1000.3121948242188,10.843339,10843.339 +23022,2025-03-09T22:12:50.715209-07:00,1000.3240356445312,10.833877,10833.877 +23023,2025-03-09T22:13:01.562971-07:00,1000.3121948242188,10.847762,10847.762 +23024,2025-03-09T22:13:12.401147-07:00,1000.31640625,10.838176,10838.176 +23025,2025-03-09T22:13:23.242961-07:00,1000.31640625,10.841814,10841.814 +23026,2025-03-09T22:13:34.080949-07:00,1000.3097534179688,10.837988,10837.988 +23027,2025-03-09T22:13:44.918995-07:00,1000.3372802734375,10.838046,10838.046 +23028,2025-03-09T22:13:55.765732-07:00,1000.3192138671875,10.846737,10846.737 +23029,2025-03-09T22:14:06.596966-07:00,1000.30078125,10.831234,10831.234 +23030,2025-03-09T22:14:17.436046-07:00,1000.3192138671875,10.83908,10839.08 +23031,2025-03-09T22:14:28.273219-07:00,1000.3181762695312,10.837173,10837.173 +23032,2025-03-09T22:14:39.120808-07:00,1000.3115844726562,10.847589,10847.589 +23033,2025-03-09T22:14:49.961963-07:00,1000.3049926757812,10.841155,10841.155 +23034,2025-03-09T22:15:00.802363-07:00,1000.2861938476562,10.8404,10840.4 +23035,2025-03-09T22:15:11.634871-07:00,1000.31689453125,10.832508,10832.508 +23036,2025-03-09T22:15:22.476943-07:00,1000.3092041015625,10.842072,10842.072 +23037,2025-03-09T22:15:33.319962-07:00,1000.276123046875,10.843019,10843.019 +23038,2025-03-09T22:15:44.152041-07:00,1000.3290405273438,10.832079,10832.079 +23039,2025-03-09T22:15:54.994963-07:00,1000.3224487304688,10.842922,10842.922 +23040,2025-03-09T22:16:05.836966-07:00,1000.2869262695312,10.842003,10842.003 +23041,2025-03-09T22:16:16.673243-07:00,1000.3147583007812,10.836277,10836.277 +23042,2025-03-09T22:16:27.507963-07:00,1000.3001708984375,10.83472,10834.72 +23043,2025-03-09T22:16:38.342950-07:00,1000.3134155273438,10.834987,10834.987 +23044,2025-03-09T22:16:49.175122-07:00,1000.2882690429688,10.832172,10832.172 +23045,2025-03-09T22:17:00.020962-07:00,1000.3123168945312,10.84584,10845.84 +23046,2025-03-09T22:17:10.851347-07:00,1000.2803344726562,10.830385,10830.385 +23047,2025-03-09T22:17:21.694420-07:00,1000.260498046875,10.843073,10843.073 +23048,2025-03-09T22:17:32.532189-07:00,1000.2803344726562,10.837769,10837.769 +23049,2025-03-09T22:17:43.380969-07:00,1000.3134155273438,10.84878,10848.78 +23050,2025-03-09T22:17:54.212263-07:00,1000.2901611328125,10.831294,10831.294 +23051,2025-03-09T22:18:05.051591-07:00,1000.3043823242188,10.839328,10839.328 +23052,2025-03-09T22:18:15.898956-07:00,1000.31103515625,10.847365,10847.365 +23053,2025-03-09T22:18:26.740938-07:00,1000.32421875,10.841982,10841.982 +23054,2025-03-09T22:18:37.579541-07:00,1000.30859375,10.838603,10838.603 +23055,2025-03-09T22:18:48.414108-07:00,1000.3152465820312,10.834567,10834.567 +23056,2025-03-09T22:18:59.257962-07:00,1000.3075561523438,10.843854,10843.854 +23057,2025-03-09T22:19:10.088737-07:00,1000.2787475585938,10.830775,10830.775 +23058,2025-03-09T22:19:20.933343-07:00,1000.30517578125,10.844606,10844.606 +23059,2025-03-09T22:19:31.762291-07:00,1000.3382568359375,10.828948,10828.948 +23060,2025-03-09T22:19:42.602876-07:00,1000.3027954101562,10.840585,10840.585 +23061,2025-03-09T22:19:53.440318-07:00,1000.3093872070312,10.837442,10837.442 +23062,2025-03-09T22:20:04.282941-07:00,1000.2792358398438,10.842623,10842.623 +23063,2025-03-09T22:20:15.122105-07:00,1000.2659301757812,10.839164,10839.164 +23064,2025-03-09T22:20:25.967541-07:00,1000.2857666015625,10.845436,10845.436 +23065,2025-03-09T22:20:36.803956-07:00,1000.2781372070312,10.836415,10836.415 +23066,2025-03-09T22:20:47.640200-07:00,1000.2767944335938,10.836244,10836.244 +23067,2025-03-09T22:20:58.483107-07:00,1000.2899780273438,10.842907,10842.907 +23068,2025-03-09T22:21:09.317964-07:00,1000.2701416015625,10.834857,10834.857 +23069,2025-03-09T22:21:20.152104-07:00,1000.2691650390625,10.83414,10834.14 +23070,2025-03-09T22:21:30.995232-07:00,1000.2757568359375,10.843128,10843.128 +23071,2025-03-09T22:21:41.839030-07:00,1000.2667236328125,10.843798,10843.798 +23072,2025-03-09T22:21:52.675947-07:00,1000.2743530273438,10.836917,10836.917 +23073,2025-03-09T22:22:03.512646-07:00,1000.280029296875,10.836699,10836.699 +23074,2025-03-09T22:22:14.349189-07:00,1000.2921752929688,10.836543,10836.543 +23075,2025-03-09T22:22:25.175164-07:00,1000.2865600585938,10.825975,10825.975 +23076,2025-03-09T22:22:36.008000-07:00,1000.2421264648438,10.832836,10832.836 +23077,2025-03-09T22:22:46.846968-07:00,1000.2789306640625,10.838968,10838.968 +23078,2025-03-09T22:22:57.681352-07:00,1000.2633056640625,10.834384,10834.384 +23079,2025-03-09T22:23:08.525662-07:00,1000.2567138671875,10.84431,10844.31 +23080,2025-03-09T22:23:19.363598-07:00,1000.2633056640625,10.837936,10837.936 +23081,2025-03-09T22:23:30.203141-07:00,1000.2633056640625,10.839543,10839.543 +23082,2025-03-09T22:23:41.037658-07:00,1000.2288818359375,10.834517,10834.517 +23083,2025-03-09T22:23:51.873094-07:00,1000.2686157226562,10.835436,10835.436 +23084,2025-03-09T22:24:02.713098-07:00,1000.2421264648438,10.840004,10840.004 +23085,2025-03-09T22:24:13.555154-07:00,1000.2368774414062,10.842056,10842.056 +23086,2025-03-09T22:24:24.390801-07:00,1000.2222900390625,10.835647,10835.647 +23087,2025-03-09T22:24:35.232468-07:00,1000.2246704101562,10.841667,10841.667 +23088,2025-03-09T22:24:46.065266-07:00,1000.2368774414062,10.832798,10832.798 +23089,2025-03-09T22:24:56.916701-07:00,1000.2402954101562,10.851435,10851.435 +23090,2025-03-09T22:25:07.753085-07:00,1000.2128295898438,10.836384,10836.384 +23091,2025-03-09T22:25:18.596962-07:00,1000.1807861328125,10.843877,10843.877 +23092,2025-03-09T22:25:29.440463-07:00,1000.2346801757812,10.843501,10843.501 +23093,2025-03-09T22:25:40.264094-07:00,1000.1964111328125,10.823631,10823.631 +23094,2025-03-09T22:25:51.104962-07:00,1000.1897583007812,10.840868,10840.868 +23095,2025-03-09T22:26:01.956204-07:00,1000.1974487304688,10.851242,10851.242 +23096,2025-03-09T22:26:12.791276-07:00,1000.1998291015625,10.835072,10835.072 +23097,2025-03-09T22:26:23.631053-07:00,1000.2154541015625,10.839777,10839.777 +23098,2025-03-09T22:26:34.476480-07:00,1000.1746826171875,10.845427,10845.427 +23099,2025-03-09T22:26:45.301950-07:00,1000.1889038085938,10.82547,10825.47 +23100,2025-03-09T22:26:56.139327-07:00,1000.2376708984375,10.837377,10837.377 +23101,2025-03-09T22:27:06.983976-07:00,1000.20703125,10.844649,10844.649 +23102,2025-03-09T22:27:17.825005-07:00,1000.1884155273438,10.841029,10841.029 +23103,2025-03-09T22:27:28.670009-07:00,1000.2107543945312,10.845004,10845.004 +23104,2025-03-09T22:27:39.504140-07:00,1000.182861328125,10.834131,10834.131 +23105,2025-03-09T22:27:50.349145-07:00,1000.200927734375,10.845005,10845.005 +23106,2025-03-09T22:28:01.186116-07:00,1000.1824340820312,10.836971,10836.971 +23107,2025-03-09T22:28:12.032252-07:00,1000.2374267578125,10.846136,10846.136 +23108,2025-03-09T22:28:22.874318-07:00,1000.2109375,10.842066,10842.066 +23109,2025-03-09T22:28:33.704264-07:00,1000.219970703125,10.829946,10829.946 +23110,2025-03-09T22:28:44.548013-07:00,1000.21337890625,10.843749,10843.749 +23111,2025-03-09T22:28:55.399079-07:00,1000.1892700195312,10.851066,10851.066 +23112,2025-03-09T22:29:06.230013-07:00,1000.2247924804688,10.830934,10830.934 +23113,2025-03-09T22:29:17.071232-07:00,1000.2181396484375,10.841219,10841.219 +23114,2025-03-09T22:29:27.908098-07:00,1000.2327270507812,10.836866,10836.866 +23115,2025-03-09T22:29:38.755111-07:00,1000.2560424804688,10.847013,10847.013 +23116,2025-03-09T22:29:49.601162-07:00,1000.2295532226562,10.846051,10846.051 +23117,2025-03-09T22:30:00.441223-07:00,1000.204345703125,10.840061,10840.061 +23118,2025-03-09T22:30:11.281319-07:00,1000.219970703125,10.840096,10840.096 +23119,2025-03-09T22:30:22.119191-07:00,1000.2343139648438,10.837872,10837.872 +23120,2025-03-09T22:30:32.969283-07:00,1000.2078247070312,10.850092,10850.092 +23121,2025-03-09T22:30:43.804848-07:00,1000.2432861328125,10.835565,10835.565 +23122,2025-03-09T22:30:54.641182-07:00,1000.2245483398438,10.836334,10836.334 +23123,2025-03-09T22:31:05.479958-07:00,1000.2491455078125,10.838776,10838.776 +23124,2025-03-09T22:31:16.324007-07:00,1000.2240600585938,10.844049,10844.049 +23125,2025-03-09T22:31:27.159008-07:00,1000.2293090820312,10.835001,10835.001 +23126,2025-03-09T22:31:38.002954-07:00,1000.2240600585938,10.843946,10843.946 +23127,2025-03-09T22:31:48.849049-07:00,1000.2329711914062,10.846095,10846.095 +23128,2025-03-09T22:31:59.689592-07:00,1000.2207641601562,10.840543,10840.543 +23129,2025-03-09T22:32:10.533241-07:00,1000.2207641601562,10.843649,10843.649 +23130,2025-03-09T22:32:21.371212-07:00,1000.22216796875,10.837971,10837.971 +23131,2025-03-09T22:32:32.217944-07:00,1000.203369140625,10.846732,10846.732 +23132,2025-03-09T22:32:43.060979-07:00,1000.190185546875,10.843035,10843.035 +23133,2025-03-09T22:32:53.916384-07:00,1000.218994140625,10.855405,10855.405 +23134,2025-03-09T22:33:04.750214-07:00,1000.19384765625,10.83383,10833.83 +23135,2025-03-09T22:33:15.601171-07:00,1000.1409301757812,10.850957,10850.957 +23136,2025-03-09T22:33:26.434966-07:00,1000.1498413085938,10.833795,10833.795 +23137,2025-03-09T22:33:37.278287-07:00,1000.1498413085938,10.843321,10843.321 +23138,2025-03-09T22:33:48.114969-07:00,1000.159912109375,10.836682,10836.682 +23139,2025-03-09T22:33:58.962205-07:00,1000.1821899414062,10.847236,10847.236 +23140,2025-03-09T22:34:09.801961-07:00,1000.1358032226562,10.839756,10839.756 +23141,2025-03-09T22:34:20.648012-07:00,1000.1514282226562,10.846051,10846.051 +23142,2025-03-09T22:34:31.481377-07:00,1000.1525268554688,10.833365,10833.365 +23143,2025-03-09T22:34:42.327017-07:00,1000.1364135742188,10.84564,10845.64 +23144,2025-03-09T22:34:53.173108-07:00,1000.1529541015625,10.846091,10846.091 +23145,2025-03-09T22:35:04.009520-07:00,1000.1156005859375,10.836412,10836.412 +23146,2025-03-09T22:35:14.855240-07:00,1000.166748046875,10.84572,10845.72 +23147,2025-03-09T22:35:25.692959-07:00,1000.119384765625,10.837719,10837.719 +23148,2025-03-09T22:35:36.541966-07:00,1000.1426391601562,10.849007,10849.007 +23149,2025-03-09T22:35:47.378170-07:00,1000.1317749023438,10.836204,10836.204 +23150,2025-03-09T22:35:58.226299-07:00,1000.1119384765625,10.848129,10848.129 +23151,2025-03-09T22:36:09.064958-07:00,1000.1464233398438,10.838659,10838.659 +23152,2025-03-09T22:36:19.904129-07:00,1000.1620483398438,10.839171,10839.171 +23153,2025-03-09T22:36:30.738646-07:00,1000.1113891601562,10.834517,10834.517 +23154,2025-03-09T22:36:41.574219-07:00,1000.12841796875,10.835573,10835.573 +23155,2025-03-09T22:36:52.415069-07:00,1000.1492919921875,10.84085,10840.85 +23156,2025-03-09T22:37:03.251291-07:00,1000.14501953125,10.836222,10836.222 +23157,2025-03-09T22:37:14.098841-07:00,1000.14501953125,10.84755,10847.55 +23158,2025-03-09T22:37:24.932961-07:00,1000.154052734375,10.83412,10834.12 +23159,2025-03-09T22:37:35.759255-07:00,1000.1222534179688,10.826294,10826.294 +23160,2025-03-09T22:37:46.592965-07:00,1000.1034545898438,10.83371,10833.71 +23161,2025-03-09T22:37:57.432231-07:00,1000.138916015625,10.839266,10839.266 +23162,2025-03-09T22:38:08.259133-07:00,1000.1356811523438,10.826902,10826.902 +23163,2025-03-09T22:38:19.095939-07:00,1000.095947265625,10.836806,10836.806 +23164,2025-03-09T22:38:29.936343-07:00,1000.1129760742188,10.840404,10840.404 +23165,2025-03-09T22:38:40.765454-07:00,1000.13623046875,10.829111,10829.111 +23166,2025-03-09T22:38:51.600961-07:00,1000.0921630859375,10.835507,10835.507 +23167,2025-03-09T22:39:02.439366-07:00,1000.1300659179688,10.838405,10838.405 +23168,2025-03-09T22:39:13.271965-07:00,1000.1248168945312,10.832599,10832.599 +23169,2025-03-09T22:39:24.118023-07:00,1000.1070556640625,10.846058,10846.058 +23170,2025-03-09T22:39:34.951358-07:00,1000.1160278320312,10.833335,10833.335 +23171,2025-03-09T22:39:45.794966-07:00,1000.09326171875,10.843608,10843.608 +23172,2025-03-09T22:39:56.637964-07:00,1000.1220092773438,10.842998,10842.998 +23173,2025-03-09T22:40:07.478966-07:00,1000.1056518554688,10.841002,10841.002 +23174,2025-03-09T22:40:18.319363-07:00,1000.1334228515625,10.840397,10840.397 +23175,2025-03-09T22:40:29.156216-07:00,1000.1170043945312,10.836853,10836.853 +23176,2025-03-09T22:40:39.998231-07:00,1000.06298828125,10.842015,10842.015 +23177,2025-03-09T22:40:50.829651-07:00,1000.0984497070312,10.83142,10831.42 +23178,2025-03-09T22:41:01.657189-07:00,1000.088623046875,10.827538,10827.538 +23179,2025-03-09T22:41:12.489698-07:00,1000.0896606445312,10.832509,10832.509 +23180,2025-03-09T22:41:23.336009-07:00,1000.0985717773438,10.846311,10846.311 +23181,2025-03-09T22:41:34.176166-07:00,1000.0999755859375,10.840157,10840.157 +23182,2025-03-09T22:41:45.013264-07:00,1000.0745239257812,10.837098,10837.098 +23183,2025-03-09T22:41:55.848958-07:00,1000.0625610351562,10.835694,10835.694 +23184,2025-03-09T22:42:06.696202-07:00,1000.0834350585938,10.847244,10847.244 +23185,2025-03-09T22:42:17.535149-07:00,1000.06591796875,10.838947,10838.947 +23186,2025-03-09T22:42:28.372405-07:00,1000.1004638671875,10.837256,10837.256 +23187,2025-03-09T22:42:39.209281-07:00,1000.0673217773438,10.836876,10836.876 +23188,2025-03-09T22:42:50.052207-07:00,1000.0352172851562,10.842926,10842.926 +23189,2025-03-09T22:43:00.891293-07:00,1000.0376586914062,10.839086,10839.086 +23190,2025-03-09T22:43:11.726231-07:00,1000.044189453125,10.834938,10834.938 +23191,2025-03-09T22:43:22.571557-07:00,1000.0521850585938,10.845326,10845.326 +23192,2025-03-09T22:43:33.405069-07:00,1000.0545043945312,10.833512,10833.512 +23193,2025-03-09T22:43:44.241691-07:00,1000.0479736328125,10.836622,10836.622 +23194,2025-03-09T22:43:55.095305-07:00,1000.0479736328125,10.853614,10853.614 +23195,2025-03-09T22:44:05.933137-07:00,1000.0399780273438,10.837832,10837.832 +23196,2025-03-09T22:44:16.770314-07:00,1000.0323486328125,10.837177,10837.177 +23197,2025-03-09T22:44:27.612225-07:00,1000.0423583984375,10.841911,10841.911 +23198,2025-03-09T22:44:38.454961-07:00,1000.0423583984375,10.842736,10842.736 +23199,2025-03-09T22:44:49.296089-07:00,1000.0158081054688,10.841128,10841.128 +23200,2025-03-09T22:45:00.145967-07:00,1000.016845703125,10.849878,10849.878 +23201,2025-03-09T22:45:10.983299-07:00,1000.0248413085938,10.837332,10837.332 +23202,2025-03-09T22:45:21.821208-07:00,1000.0050048828125,10.837909,10837.909 +23203,2025-03-09T22:45:32.664993-07:00,1000.0457153320312,10.843785,10843.785 +23204,2025-03-09T22:45:43.503347-07:00,1000.0059204101562,10.838354,10838.354 +23205,2025-03-09T22:45:54.340958-07:00,1000.0192260742188,10.837611,10837.611 +23206,2025-03-09T22:46:05.178960-07:00,999.9993896484375,10.838002,10838.002 +23207,2025-03-09T22:46:16.025210-07:00,1000.0205688476562,10.84625,10846.25 +23208,2025-03-09T22:46:22.706964-07:00,1000.02587890625,6.681754,6681.754 +23209,2025-03-09T22:46:26.862309-07:00,1000.0281982421875,4.155345,4155.345 +23210,2025-03-09T22:46:37.706044-07:00,1000.0150146484375,10.843735,10843.735 +23211,2025-03-09T22:46:48.549459-07:00,1000.001708984375,10.843415,10843.415 +23212,2025-03-09T22:46:59.387961-07:00,999.9963989257812,10.838502,10838.502 +23213,2025-03-09T22:47:10.228486-07:00,1000.02294921875,10.840525,10840.525 +23214,2025-03-09T22:47:21.066961-07:00,999.9963989257812,10.838475,10838.475 +23215,2025-03-09T22:47:31.899303-07:00,1000.0054931640625,10.832342,10832.342 +23216,2025-03-09T22:47:42.744467-07:00,1000.0318603515625,10.845164,10845.164 +23217,2025-03-09T22:47:53.572961-07:00,1000.0120239257812,10.828494,10828.494 +23218,2025-03-09T22:48:04.412065-07:00,1000.0120239257812,10.839104,10839.104 +23219,2025-03-09T22:48:15.255174-07:00,1000.03955078125,10.843109,10843.109 +23220,2025-03-09T22:48:26.089089-07:00,999.9932250976562,10.833915,10833.915 +23221,2025-03-09T22:48:36.935243-07:00,1000.0263061523438,10.846154,10846.154 +23222,2025-03-09T22:48:47.771263-07:00,1000.0197143554688,10.83602,10836.02 +23223,2025-03-09T22:48:58.605963-07:00,1000.0197143554688,10.8347,10834.7 +23224,2025-03-09T22:49:09.447959-07:00,1000.0197143554688,10.841996,10841.996 +23225,2025-03-09T22:49:20.295995-07:00,1000.03955078125,10.848036,10848.036 +23226,2025-03-09T22:49:31.139301-07:00,1000.03955078125,10.843306,10843.306 +23227,2025-03-09T22:49:41.983393-07:00,1000.0263061523438,10.844092,10844.092 +23228,2025-03-09T22:49:52.825943-07:00,1000.0130615234375,10.84255,10842.55 +23229,2025-03-09T22:50:03.665015-07:00,1000.0263061523438,10.839072,10839.072 +23230,2025-03-09T22:50:14.507956-07:00,1000.0342407226562,10.842941,10842.941 +23231,2025-03-09T22:50:25.344318-07:00,1000.02392578125,10.836362,10836.362 +23232,2025-03-09T22:50:36.183109-07:00,1000.0318603515625,10.838791,10838.791 +23233,2025-03-09T22:50:37.279052-07:00,1000.0418701171875,1.095943,1095.943 +23234,2025-03-09T22:50:47.029969-07:00,1000.0186767578125,9.750917,9750.917 +23235,2025-03-09T22:50:57.869451-07:00,1000.0253295898438,10.839482,10839.482 +23236,2025-03-09T22:51:08.726358-07:00,1000.060791015625,10.856907,10856.907 +23237,2025-03-09T22:51:19.563939-07:00,1000.0474853515625,10.837581,10837.581 +23238,2025-03-09T22:51:30.406950-07:00,1000.0130615234375,10.843011,10843.011 +23239,2025-03-09T22:51:41.248222-07:00,1000.03955078125,10.841272,10841.272 +23240,2025-03-09T22:51:52.098000-07:00,1000.0220336914062,10.849778,10849.778 +23241,2025-03-09T22:52:02.945509-07:00,1000.0276489257812,10.847509,10847.509 +23242,2025-03-09T22:52:13.786581-07:00,1000.0541381835938,10.841072,10841.072 +23243,2025-03-09T22:52:24.641153-07:00,1000.061767578125,10.854572,10854.572 +23244,2025-03-09T22:52:35.482962-07:00,1000.0565795898438,10.841809,10841.809 +23245,2025-03-09T22:52:46.321381-07:00,1000.0443115234375,10.838419,10838.419 +23246,2025-03-09T22:52:57.158502-07:00,1000.0532836914062,10.837121,10837.121 +23247,2025-03-09T22:53:08.000664-07:00,1000.0443115234375,10.842162,10842.162 +23248,2025-03-09T22:53:18.842943-07:00,1000.0720825195312,10.842279,10842.279 +23249,2025-03-09T22:53:29.688994-07:00,1000.045654296875,10.846051,10846.051 +23250,2025-03-09T22:53:40.525441-07:00,1000.033447265625,10.836447,10836.447 +23251,2025-03-09T22:53:51.374299-07:00,1000.0148315429688,10.848858,10848.858 +23252,2025-03-09T22:54:02.217192-07:00,1000.0513916015625,10.842893,10842.893 +23253,2025-03-09T22:54:13.055972-07:00,1000.031494140625,10.83878,10838.78 +23254,2025-03-09T22:54:23.887309-07:00,1000.0192260742188,10.831337,10831.337 +23255,2025-03-09T22:54:34.730175-07:00,1000.0206298828125,10.842866,10842.866 +23256,2025-03-09T22:54:45.576956-07:00,1000.0504760742188,10.846781,10846.781 +23257,2025-03-09T22:54:56.415085-07:00,1000.0494384765625,10.838129,10838.129 +23258,2025-03-09T22:55:07.253001-07:00,1000.0494384765625,10.837916,10837.916 +23259,2025-03-09T22:55:18.095446-07:00,1000.017333984375,10.842445,10842.445 +23260,2025-03-09T22:55:28.934209-07:00,1000.0253295898438,10.838763,10838.763 +23261,2025-03-09T22:55:39.780391-07:00,1000.060791015625,10.846182,10846.182 +23262,2025-03-09T22:55:50.614965-07:00,1000.0211181640625,10.834574,10834.574 +23263,2025-03-09T22:56:01.457951-07:00,1000.0287475585938,10.842986,10842.986 +23264,2025-03-09T22:56:12.296733-07:00,1000.0011596679688,10.838782,10838.782 +23265,2025-03-09T22:56:23.138585-07:00,1000.0101318359375,10.841852,10841.852 +23266,2025-03-09T22:56:33.986906-07:00,999.9902954101562,10.848321,10848.321 +23267,2025-03-09T22:56:44.823374-07:00,999.981689453125,10.836468,10836.468 +23268,2025-03-09T22:56:55.666089-07:00,999.981689453125,10.842715,10842.715 +23269,2025-03-09T22:57:06.503330-07:00,1000.0225219726562,10.837241,10837.241 +23270,2025-03-09T22:57:17.344958-07:00,999.9907836914062,10.841628,10841.628 +23271,2025-03-09T22:57:28.190023-07:00,1000.0328369140625,10.845065,10845.065 +23272,2025-03-09T22:57:39.033959-07:00,999.9718627929688,10.843936,10843.936 +23273,2025-03-09T22:57:49.880202-07:00,1000.0116577148438,10.846243,10846.243 +23274,2025-03-09T22:58:00.721301-07:00,1000.0248413085938,10.841099,10841.099 +23275,2025-03-09T22:58:11.562963-07:00,1000.0142822265625,10.841662,10841.662 +23276,2025-03-09T22:58:22.411667-07:00,1000.0166625976562,10.848704,10848.704 +23277,2025-03-09T22:58:33.266966-07:00,1000.00341796875,10.855299,10855.299 +23278,2025-03-09T22:58:44.108092-07:00,999.9901733398438,10.841126,10841.126 +23279,2025-03-09T22:58:54.947280-07:00,999.982177734375,10.839188,10839.188 +23280,2025-03-09T22:59:05.793185-07:00,999.9835205078125,10.845905,10845.905 +23281,2025-03-09T22:59:16.643560-07:00,999.9859619140625,10.850375,10850.375 +23282,2025-03-09T22:59:27.485264-07:00,1000.013427734375,10.841704,10841.704 +23283,2025-03-09T22:59:38.337099-07:00,1000.0001831054688,10.851835,10851.835 +23284,2025-03-09T22:59:49.180386-07:00,1000.0267333984375,10.843287,10843.287 +23285,2025-03-09T23:00:00.022056-07:00,1000.01708984375,10.84167,10841.67 +23286,2025-03-09T23:00:10.870604-07:00,1000.0237426757812,10.848548,10848.548 +23287,2025-03-09T23:00:21.708961-07:00,1000.0181274414062,10.838357,10838.357 +23288,2025-03-09T23:00:32.555988-07:00,1000.0194702148438,10.847027,10847.027 +23289,2025-03-09T23:00:43.406973-07:00,1000.0535888671875,10.850985,10850.985 +23290,2025-03-09T23:00:54.249893-07:00,1000.0204467773438,10.84292,10842.92 +23291,2025-03-09T23:01:05.093951-07:00,999.9886474609375,10.844058,10844.058 +23292,2025-03-09T23:01:15.934967-07:00,999.967529296875,10.841016,10841.016 +23293,2025-03-09T23:01:26.778018-07:00,1000.01513671875,10.843051,10843.051 +23294,2025-03-09T23:01:37.626091-07:00,1000.0029907226562,10.848073,10848.073 +23295,2025-03-09T23:01:48.475166-07:00,999.9886474609375,10.849075,10849.075 +23296,2025-03-09T23:01:59.320217-07:00,999.984375,10.845051,10845.051 +23297,2025-03-09T23:02:10.161216-07:00,1000.0109252929688,10.840999,10840.999 +23298,2025-03-09T23:02:21.009965-07:00,1000.0275268554688,10.848749,10848.749 +23299,2025-03-09T23:02:31.853070-07:00,1000.0066528320312,10.843105,10843.105 +23300,2025-03-09T23:02:42.704066-07:00,1000.0066528320312,10.850996,10850.996 +23301,2025-03-09T23:02:53.539613-07:00,1000.0076293945312,10.835547,10835.547 +23302,2025-03-09T23:03:04.388199-07:00,1000.02197265625,10.848586,10848.586 +23303,2025-03-09T23:03:15.233092-07:00,1000.0010986328125,10.844893,10844.893 +23304,2025-03-09T23:03:26.081207-07:00,1000.0142822265625,10.848115,10848.115 +23305,2025-03-09T23:03:36.928961-07:00,999.9954833984375,10.847754,10847.754 +23306,2025-03-09T23:03:47.772041-07:00,1000.0010986328125,10.84308,10843.08 +23307,2025-03-09T23:03:58.622264-07:00,1000.0076293945312,10.850223,10850.223 +23308,2025-03-09T23:04:09.483225-07:00,1000.0076293945312,10.860961,10860.961 +23309,2025-03-09T23:04:20.332252-07:00,999.9703369140625,10.849027,10849.027 +23310,2025-03-09T23:04:31.173351-07:00,999.9668579101562,10.841099,10841.099 +23311,2025-03-09T23:04:42.026009-07:00,999.9866943359375,10.852658,10852.658 +23312,2025-03-09T23:04:52.883301-07:00,999.9612426757812,10.857292,10857.292 +23313,2025-03-09T23:05:03.724966-07:00,999.9954833984375,10.841665,10841.665 +23314,2025-03-09T23:05:14.575226-07:00,1000.0010986328125,10.85026,10850.26 +23315,2025-03-09T23:05:25.424156-07:00,999.947998046875,10.84893,10848.93 +23316,2025-03-09T23:05:36.272078-07:00,1000.0010986328125,10.847922,10847.922 +23317,2025-03-09T23:05:47.172232-07:00,999.981201171875,10.900154,10900.154 +23318,2025-03-09T23:05:58.015362-07:00,1000.0066528320312,10.84313,10843.13 +23319,2025-03-09T23:06:08.859895-07:00,1000.0076293945312,10.844533,10844.533 +23320,2025-03-09T23:06:19.714884-07:00,1000.0066528320312,10.854989,10854.989 +23321,2025-03-09T23:06:30.568108-07:00,999.9854736328125,10.853224,10853.224 +23322,2025-03-09T23:06:41.424950-07:00,999.9854736328125,10.856842,10856.842 +23323,2025-03-09T23:06:52.270556-07:00,999.983154296875,10.845606,10845.606 +23324,2025-03-09T23:07:03.124946-07:00,999.996337890625,10.85439,10854.39 +23325,2025-03-09T23:07:13.986527-07:00,1000.0162353515625,10.861581,10861.581 +23326,2025-03-09T23:07:24.833138-07:00,1000.0228271484375,10.846611,10846.611 +23327,2025-03-09T23:07:35.686040-07:00,1000.009521484375,10.852902,10852.902 +23328,2025-03-09T23:07:46.543510-07:00,999.9886474609375,10.85747,10857.47 +23329,2025-03-09T23:07:57.392895-07:00,1000.0217895507812,10.849385,10849.385 +23330,2025-03-09T23:08:08.237900-07:00,999.9939575195312,10.845005,10845.005 +23331,2025-03-09T23:08:19.088873-07:00,999.9939575195312,10.850973,10850.973 +23332,2025-03-09T23:08:29.949888-07:00,1000.0018920898438,10.861015,10861.015 +23333,2025-03-09T23:08:40.807527-07:00,1000.011474609375,10.857639,10857.639 +23334,2025-03-09T23:08:51.651959-07:00,1000.010498046875,10.844432,10844.432 +23335,2025-03-09T23:09:02.507893-07:00,999.9915771484375,10.855934,10855.934 +23336,2025-03-09T23:09:13.359296-07:00,1000.0025024414062,10.851403,10851.403 +23337,2025-03-09T23:09:24.209907-07:00,1000.0147094726562,10.850611,10850.611 +23338,2025-03-09T23:09:35.064937-07:00,999.997802734375,10.85503,10855.03 +23339,2025-03-09T23:09:45.918950-07:00,999.9556884765625,10.854013,10854.013 +23340,2025-03-09T23:09:56.769207-07:00,999.9756469726562,10.850257,10850.257 +23341,2025-03-09T23:10:07.617336-07:00,1000.0010986328125,10.848129,10848.129 +23342,2025-03-09T23:10:18.458879-07:00,999.9931030273438,10.841543,10841.543 +23343,2025-03-09T23:10:29.306230-07:00,1000.0142822265625,10.847351,10847.351 +23344,2025-03-09T23:10:40.162277-07:00,1000.0116577148438,10.856047,10856.047 +23345,2025-03-09T23:10:51.011659-07:00,1000.0159301757812,10.849382,10849.382 +23346,2025-03-09T23:11:01.857895-07:00,1000.0347900390625,10.846236,10846.236 +23347,2025-03-09T23:11:12.698764-07:00,1000.0479736328125,10.840869,10840.869 +23348,2025-03-09T23:11:23.555283-07:00,999.99365234375,10.856519,10856.519 +23349,2025-03-09T23:11:34.399612-07:00,1000.0432739257812,10.844329,10844.329 +23350,2025-03-09T23:11:45.255869-07:00,1000.064208984375,10.856257,10856.257 +23351,2025-03-09T23:11:56.097881-07:00,1000.0154418945312,10.842012,10842.012 +23352,2025-03-09T23:12:06.954883-07:00,1000.0419311523438,10.857002,10857.002 +23353,2025-03-09T23:12:17.804897-07:00,1000.0264282226562,10.850014,10850.014 +23354,2025-03-09T23:12:28.655129-07:00,1000.0040893554688,10.850232,10850.232 +23355,2025-03-09T23:12:39.504521-07:00,1000.0031127929688,10.849392,10849.392 +23356,2025-03-09T23:12:50.354133-07:00,1000.0362548828125,10.849612,10849.612 +23357,2025-03-09T23:13:01.201888-07:00,1000.0282592773438,10.847755,10847.755 +23358,2025-03-09T23:13:12.053893-07:00,1000.0084228515625,10.852005,10852.005 +23359,2025-03-09T23:13:22.899203-07:00,1000.0248413085938,10.84531,10845.31 +23360,2025-03-09T23:13:33.751308-07:00,999.9960327148438,10.852105,10852.105 +23361,2025-03-09T23:13:44.596934-07:00,1000.0225219726562,10.845626,10845.626 +23362,2025-03-09T23:13:55.443880-07:00,1000.0039672851562,10.846946,10846.946 +23363,2025-03-09T23:14:06.287973-07:00,1000.0159301757812,10.844093,10844.093 +23364,2025-03-09T23:14:17.137895-07:00,999.987060546875,10.849922,10849.922 +23365,2025-03-09T23:14:27.992924-07:00,999.99267578125,10.855029,10855.029 +23366,2025-03-09T23:14:38.854068-07:00,999.9902954101562,10.861144,10861.144 +23367,2025-03-09T23:14:49.695007-07:00,999.9968872070312,10.840939,10840.939 +23368,2025-03-09T23:15:00.553891-07:00,999.9879150390625,10.858884,10858.884 +23369,2025-03-09T23:15:11.411906-07:00,999.97998046875,10.858015,10858.015 +23370,2025-03-09T23:15:22.263894-07:00,999.9776000976562,10.851988,10851.988 +23371,2025-03-09T23:15:33.120900-07:00,999.9974975585938,10.857006,10857.006 +23372,2025-03-09T23:15:43.973534-07:00,1000.0030517578125,10.852634,10852.634 +23373,2025-03-09T23:15:54.827897-07:00,1000.0030517578125,10.854363,10854.363 +23374,2025-03-09T23:16:05.682332-07:00,999.9464111328125,10.854435,10854.435 +23375,2025-03-09T23:16:16.526230-07:00,999.9572143554688,10.843898,10843.898 +23376,2025-03-09T23:16:27.380212-07:00,999.970458984375,10.853982,10853.982 +23377,2025-03-09T23:16:38.229765-07:00,999.9617919921875,10.849553,10849.553 +23378,2025-03-09T23:16:49.083206-07:00,999.9684448242188,10.853441,10853.441 +23379,2025-03-09T23:16:59.929893-07:00,999.96044921875,10.846687,10846.687 +23380,2025-03-09T23:17:10.793047-07:00,999.9646606445312,10.863154,10863.154 +23381,2025-03-09T23:17:21.641284-07:00,999.9793701171875,10.848237,10848.237 +23382,2025-03-09T23:17:32.495521-07:00,999.966064453125,10.854237,10854.237 +23383,2025-03-09T23:17:43.352160-07:00,999.9623413085938,10.856639,10856.639 +23384,2025-03-09T23:17:54.205176-07:00,999.9547119140625,10.853016,10853.016 +23385,2025-03-09T23:18:05.059403-07:00,999.9745483398438,10.854227,10854.227 +23386,2025-03-09T23:18:15.923250-07:00,999.97216796875,10.863847,10863.847 +23387,2025-03-09T23:18:26.772806-07:00,999.9656372070312,10.849556,10849.556 +23388,2025-03-09T23:18:37.624138-07:00,999.998779296875,10.851332,10851.332 +23389,2025-03-09T23:18:48.470894-07:00,999.95654296875,10.846756,10846.756 +23390,2025-03-09T23:18:59.331287-07:00,999.9608764648438,10.860393,10860.393 +23391,2025-03-09T23:19:10.184762-07:00,999.9595336914062,10.853475,10853.475 +23392,2025-03-09T23:19:21.029095-07:00,999.9651489257812,10.844333,10844.333 +23393,2025-03-09T23:19:31.882887-07:00,999.94287109375,10.853792,10853.792 +23394,2025-03-09T23:19:42.727181-07:00,999.9174194335938,10.844294,10844.294 +23395,2025-03-09T23:19:53.583885-07:00,999.9683837890625,10.856704,10856.704 +23396,2025-03-09T23:20:04.431872-07:00,999.932861328125,10.847987,10847.987 +23397,2025-03-09T23:20:15.287114-07:00,999.9249267578125,10.855242,10855.242 +23398,2025-03-09T23:20:26.134614-07:00,999.8973388671875,10.8475,10847.5 +23399,2025-03-09T23:20:36.981962-07:00,999.9148559570312,10.847348,10847.348 +23400,2025-03-09T23:20:47.830478-07:00,999.9215698242188,10.848516,10848.516 +23401,2025-03-09T23:20:58.684177-07:00,999.9124755859375,10.853699,10853.699 +23402,2025-03-09T23:21:09.539183-07:00,999.9442749023438,10.855006,10855.006 +23403,2025-03-09T23:21:20.389203-07:00,999.9143676757812,10.85002,10850.02 +23404,2025-03-09T23:21:31.237246-07:00,999.9234619140625,10.848043,10848.043 +23405,2025-03-09T23:21:42.081910-07:00,999.934326171875,10.844664,10844.664 +23406,2025-03-09T23:21:52.934948-07:00,999.9120483398438,10.853038,10853.038 +23407,2025-03-09T23:22:03.777900-07:00,999.916259765625,10.842952,10842.952 +23408,2025-03-09T23:22:14.630897-07:00,999.8831176757812,10.852997,10852.997 +23409,2025-03-09T23:22:25.476523-07:00,999.9138793945312,10.845626,10845.626 +23410,2025-03-09T23:22:36.329330-07:00,999.9512329101562,10.852807,10852.807 +23411,2025-03-09T23:22:47.184722-07:00,999.8803100585938,10.855392,10855.392 +23412,2025-03-09T23:22:58.027717-07:00,999.914794921875,10.842995,10842.995 +23413,2025-03-09T23:23:08.878842-07:00,999.8779907226562,10.851125,10851.125 +23414,2025-03-09T23:23:19.721872-07:00,999.8836059570312,10.84303,10843.03 +23415,2025-03-09T23:23:30.572893-07:00,999.8756103515625,10.851021,10851.021 +23416,2025-03-09T23:23:41.422895-07:00,999.8599853515625,10.850002,10850.002 +23417,2025-03-09T23:23:52.276570-07:00,999.8788452148438,10.853675,10853.675 +23418,2025-03-09T23:24:03.122893-07:00,999.8443603515625,10.846323,10846.323 +23419,2025-03-09T23:24:13.981218-07:00,999.868408203125,10.858325,10858.325 +23420,2025-03-09T23:24:24.839127-07:00,999.8595581054688,10.857909,10857.909 +23421,2025-03-09T23:24:35.691948-07:00,999.9005737304688,10.852821,10852.821 +23422,2025-03-09T23:24:46.547896-07:00,999.84423828125,10.855948,10855.948 +23423,2025-03-09T23:24:57.397183-07:00,999.8584594726562,10.849287,10849.287 +23424,2025-03-09T23:25:08.251894-07:00,999.8626708984375,10.854711,10854.711 +23425,2025-03-09T23:25:19.103132-07:00,999.8749389648438,10.851238,10851.238 +23426,2025-03-09T23:25:29.950050-07:00,999.865966796875,10.846918,10846.918 +23427,2025-03-09T23:25:40.808887-07:00,999.8460693359375,10.858837,10858.837 +23428,2025-03-09T23:25:51.652193-07:00,999.8778076171875,10.843306,10843.306 +23429,2025-03-09T23:26:02.508224-07:00,999.8876342773438,10.856031,10856.031 +23430,2025-03-09T23:26:13.360327-07:00,999.8545532226562,10.852103,10852.103 +23431,2025-03-09T23:26:24.209230-07:00,999.8663940429688,10.848903,10848.903 +23432,2025-03-09T23:26:35.059935-07:00,999.8507690429688,10.850705,10850.705 +23433,2025-03-09T23:26:45.912085-07:00,999.8895263671875,10.85215,10852.15 +23434,2025-03-09T23:26:56.762885-07:00,999.8934326171875,10.8508,10850.8 +23435,2025-03-09T23:27:07.618768-07:00,999.885498046875,10.855883,10855.883 +23436,2025-03-09T23:27:18.469030-07:00,999.8767700195312,10.850262,10850.262 +23437,2025-03-09T23:27:29.320499-07:00,999.8677978515625,10.851469,10851.469 +23438,2025-03-09T23:27:40.159895-07:00,999.865478515625,10.839396,10839.396 +23439,2025-03-09T23:27:51.005361-07:00,999.8244018554688,10.845466,10845.466 +23440,2025-03-09T23:28:01.856162-07:00,999.8432006835938,10.850801,10850.801 +23441,2025-03-09T23:28:12.699143-07:00,999.8683471679688,10.842981,10842.981 +23442,2025-03-09T23:28:23.541060-07:00,999.8551635742188,10.841917,10841.917 +23443,2025-03-09T23:28:34.384917-07:00,999.8318481445312,10.843857,10843.857 +23444,2025-03-09T23:28:45.239942-07:00,999.8294677734375,10.855025,10855.025 +23445,2025-03-09T23:28:56.090172-07:00,999.834716796875,10.85023,10850.23 +23446,2025-03-09T23:29:06.942890-07:00,999.8361206054688,10.852718,10852.718 +23447,2025-03-09T23:29:17.784516-07:00,999.833740234375,10.841626,10841.626 +23448,2025-03-09T23:29:28.638146-07:00,999.8323364257812,10.85363,10853.63 +23449,2025-03-09T23:29:39.484050-07:00,999.8233642578125,10.845904,10845.904 +23450,2025-03-09T23:29:50.337053-07:00,999.818115234375,10.853003,10853.003 +23451,2025-03-09T23:30:01.192079-07:00,999.7892456054688,10.855026,10855.026 +23452,2025-03-09T23:30:12.041122-07:00,999.8013916015625,10.849043,10849.043 +23453,2025-03-09T23:30:22.890041-07:00,999.814697265625,10.848919,10848.919 +23454,2025-03-09T23:30:33.732938-07:00,999.8212280273438,10.842897,10842.897 +23455,2025-03-09T23:30:44.575183-07:00,999.7976684570312,10.842245,10842.245 +23456,2025-03-09T23:30:55.423777-07:00,999.7899780273438,10.848594,10848.594 +23457,2025-03-09T23:31:06.267885-07:00,999.8231201171875,10.844108,10844.108 +23458,2025-03-09T23:31:17.115449-07:00,999.8009643554688,10.847564,10847.564 +23459,2025-03-09T23:31:27.957884-07:00,999.798583984375,10.842435,10842.435 +23460,2025-03-09T23:31:38.801891-07:00,999.783935546875,10.844007,10844.007 +23461,2025-03-09T23:31:49.641061-07:00,999.8170166015625,10.83917,10839.17 +23462,2025-03-09T23:32:00.490013-07:00,999.8027954101562,10.848952,10848.952 +23463,2025-03-09T23:32:11.330894-07:00,999.8093872070312,10.840881,10840.881 +23464,2025-03-09T23:32:22.177608-07:00,999.8004150390625,10.846714,10846.714 +23465,2025-03-09T23:32:33.018208-07:00,999.81787109375,10.8406,10840.6 +23466,2025-03-09T23:32:43.861849-07:00,999.7871704101562,10.843641,10843.641 +23467,2025-03-09T23:32:54.715568-07:00,999.8099365234375,10.853719,10853.719 +23468,2025-03-09T23:33:05.563571-07:00,999.7913818359375,10.848003,10848.003 +23469,2025-03-09T23:33:16.407131-07:00,999.77685546875,10.84356,10843.56 +23470,2025-03-09T23:33:27.255030-07:00,999.8088989257812,10.847899,10847.899 +23471,2025-03-09T23:33:38.097289-07:00,999.7932739257812,10.842259,10842.259 +23472,2025-03-09T23:33:48.939168-07:00,999.7578125,10.841879,10841.879 +23473,2025-03-09T23:33:59.785895-07:00,999.7884521484375,10.846727,10846.727 +23474,2025-03-09T23:34:10.628893-07:00,999.8007202148438,10.842998,10842.998 +23475,2025-03-09T23:34:21.470883-07:00,999.7993774414062,10.84199,10841.99 +23476,2025-03-09T23:34:32.316888-07:00,999.7718505859375,10.846005,10846.005 +23477,2025-03-09T23:34:43.157556-07:00,999.7704467773438,10.840668,10840.668 +23478,2025-03-09T23:34:53.998893-07:00,999.7837524414062,10.841337,10841.337 +23479,2025-03-09T23:35:04.840890-07:00,999.8091430664062,10.841997,10841.997 +23480,2025-03-09T23:35:15.686889-07:00,999.80126953125,10.845999,10845.999 +23481,2025-03-09T23:35:26.525321-07:00,999.78564453125,10.838432,10838.432 +23482,2025-03-09T23:35:37.368052-07:00,999.7977905273438,10.842731,10842.731 +23483,2025-03-09T23:35:48.211137-07:00,999.8043823242188,10.843085,10843.085 +23484,2025-03-09T23:35:59.061897-07:00,999.7898559570312,10.85076,10850.76 +23485,2025-03-09T23:36:09.909046-07:00,999.7898559570312,10.847149,10847.149 +23486,2025-03-09T23:36:20.744801-07:00,999.817626953125,10.835755,10835.755 +23487,2025-03-09T23:36:31.589720-07:00,999.80859375,10.844919,10844.919 +23488,2025-03-09T23:36:42.429882-07:00,999.8204956054688,10.840162,10840.162 +23489,2025-03-09T23:36:53.275173-07:00,999.832763671875,10.845291,10845.291 +23490,2025-03-09T23:37:04.129361-07:00,999.8526000976562,10.854188,10854.188 +23491,2025-03-09T23:37:14.978955-07:00,999.845947265625,10.849594,10849.594 +23492,2025-03-09T23:37:25.827179-07:00,999.8713989257812,10.848224,10848.224 +23493,2025-03-09T23:37:36.670027-07:00,999.830322265625,10.842848,10842.848 +23494,2025-03-09T23:37:47.514002-07:00,999.817138671875,10.843975,10843.975 +23495,2025-03-09T23:37:58.367939-07:00,999.8435668945312,10.853937,10853.937 +23496,2025-03-09T23:38:09.209023-07:00,999.8557739257812,10.841084,10841.084 +23497,2025-03-09T23:38:20.049216-07:00,999.842529296875,10.840193,10840.193 +23498,2025-03-09T23:38:30.890885-07:00,999.799072265625,10.841669,10841.669 +23499,2025-03-09T23:38:41.732893-07:00,999.8387451171875,10.842008,10842.008 +23500,2025-03-09T23:38:52.570378-07:00,999.8585815429688,10.837485,10837.485 +23501,2025-03-09T23:39:03.414203-07:00,999.8652954101562,10.843825,10843.825 +23502,2025-03-09T23:39:14.264417-07:00,999.8496704101562,10.850214,10850.214 +23503,2025-03-09T23:39:25.111934-07:00,999.8429565429688,10.847517,10847.517 +23504,2025-03-09T23:39:35.956224-07:00,999.8353271484375,10.84429,10844.29 +23505,2025-03-09T23:39:46.797887-07:00,999.8154907226562,10.841663,10841.663 +23506,2025-03-09T23:39:57.641469-07:00,999.8074951171875,10.843582,10843.582 +23507,2025-03-09T23:40:08.484353-07:00,999.8231201171875,10.842884,10842.884 +23508,2025-03-09T23:40:19.338249-07:00,999.8222045898438,10.853896,10853.896 +23509,2025-03-09T23:40:30.177029-07:00,999.811767578125,10.83878,10838.78 +23510,2025-03-09T23:40:41.025130-07:00,999.814208984375,10.848101,10848.101 +23511,2025-03-09T23:40:51.862911-07:00,999.7932739257812,10.837781,10837.781 +23512,2025-03-09T23:41:02.707323-07:00,999.7932739257812,10.844412,10844.412 +23513,2025-03-09T23:41:13.554292-07:00,999.764404296875,10.846969,10846.969 +23514,2025-03-09T23:41:24.391895-07:00,999.7776489257812,10.837603,10837.603 +23515,2025-03-09T23:41:35.238900-07:00,999.78955078125,10.847005,10847.005 +23516,2025-03-09T23:41:46.083340-07:00,999.8438110351562,10.84444,10844.44 +23517,2025-03-09T23:41:56.926409-07:00,999.78955078125,10.843069,10843.069 +23518,2025-03-09T23:42:07.774890-07:00,999.8281860351562,10.848481,10848.481 +23519,2025-03-09T23:42:18.620887-07:00,999.826904296875,10.845997,10845.997 +23520,2025-03-09T23:42:29.455889-07:00,999.8334350585938,10.835002,10835.002 +23521,2025-03-09T23:42:40.299228-07:00,999.7662353515625,10.843339,10843.339 +23522,2025-03-09T23:42:51.154206-07:00,999.7860717773438,10.854978,10854.978 +23523,2025-03-09T23:43:01.996732-07:00,999.8046264648438,10.842526,10842.526 +23524,2025-03-09T23:43:12.830106-07:00,999.7781372070312,10.833374,10833.374 +23525,2025-03-09T23:43:23.671274-07:00,999.7993774414062,10.841168,10841.168 +23526,2025-03-09T23:43:34.515421-07:00,999.802490234375,10.844147,10844.147 +23527,2025-03-09T23:43:45.357874-07:00,999.8234252929688,10.842453,10842.453 +23528,2025-03-09T23:43:56.211890-07:00,999.811279296875,10.854016,10854.016 +23529,2025-03-09T23:44:07.048891-07:00,999.7694702148438,10.837001,10837.001 +23530,2025-03-09T23:44:17.898147-07:00,999.748291015625,10.849256,10849.256 +23531,2025-03-09T23:44:28.738212-07:00,999.7416381835938,10.840065,10840.065 +23532,2025-03-09T23:44:39.591051-07:00,999.78564453125,10.852839,10852.839 +23533,2025-03-09T23:44:50.432893-07:00,999.7658081054688,10.841842,10841.842 +23534,2025-03-09T23:45:01.283960-07:00,999.7831420898438,10.851067,10851.067 +23535,2025-03-09T23:45:12.125894-07:00,999.81103515625,10.841934,10841.934 +23536,2025-03-09T23:45:22.969778-07:00,999.7887573242188,10.843884,10843.884 +23537,2025-03-09T23:45:33.811135-07:00,999.7765502929688,10.841357,10841.357 +23538,2025-03-09T23:45:44.659934-07:00,999.7765502929688,10.848799,10848.799 +23539,2025-03-09T23:45:55.502230-07:00,999.802001953125,10.842296,10842.296 +23540,2025-03-09T23:46:06.352041-07:00,999.75439453125,10.849811,10849.811 +23541,2025-03-09T23:46:17.193893-07:00,999.76416015625,10.841852,10841.852 +23542,2025-03-09T23:46:28.035248-07:00,999.77978515625,10.841355,10841.355 +23543,2025-03-09T23:46:29.005384-07:00,999.76513671875,0.970136,970.136 +23544,2025-03-09T23:46:38.887322-07:00,999.7849731445312,9.881938,9881.938 +23545,2025-03-09T23:46:49.734050-07:00,999.8128051757812,10.846728,10846.728 +23546,2025-03-09T23:47:00.579894-07:00,999.7839965820312,10.845844,10845.844 +23547,2025-03-09T23:47:11.426884-07:00,999.76513671875,10.84699,10846.99 +23548,2025-03-09T23:47:22.266221-07:00,999.7839965820312,10.839337,10839.337 +23549,2025-03-09T23:47:33.097112-07:00,999.7826538085938,10.830891,10830.891 +23550,2025-03-09T23:47:43.939039-07:00,999.7628173828125,10.841927,10841.927 +23551,2025-03-09T23:47:54.779193-07:00,999.7948608398438,10.840154,10840.154 +23552,2025-03-09T23:48:05.626219-07:00,999.7750244140625,10.847026,10847.026 +23553,2025-03-09T23:48:16.467950-07:00,999.7725830078125,10.841731,10841.731 +23554,2025-03-09T23:48:27.310119-07:00,999.786865234375,10.842169,10842.169 +23555,2025-03-09T23:48:38.145203-07:00,999.7701416015625,10.835084,10835.084 +23556,2025-03-09T23:48:48.986201-07:00,999.7514038085938,10.840998,10840.998 +23557,2025-03-09T23:48:59.824128-07:00,999.7701416015625,10.837927,10837.927 +23558,2025-03-09T23:49:10.671895-07:00,999.749267578125,10.847767,10847.767 +23559,2025-03-09T23:49:21.504258-07:00,999.7281494140625,10.832363,10832.363 +23560,2025-03-09T23:49:32.341885-07:00,999.7413330078125,10.837627,10837.627 +23561,2025-03-09T23:49:43.185894-07:00,999.7545166015625,10.844009,10844.009 +23562,2025-03-09T23:49:54.023596-07:00,999.764404296875,10.837702,10837.702 +23563,2025-03-09T23:50:04.866250-07:00,999.7654418945312,10.842654,10842.654 +23564,2025-03-09T23:50:15.705891-07:00,999.7455444335938,10.839641,10839.641 +23565,2025-03-09T23:50:26.551064-07:00,999.7564086914062,10.845173,10845.173 +23566,2025-03-09T23:50:37.395894-07:00,999.7265625,10.84483,10844.83 +23567,2025-03-09T23:50:48.232265-07:00,999.7265625,10.836371,10836.371 +23568,2025-03-09T23:50:59.075879-07:00,999.7265625,10.843614,10843.614 +23569,2025-03-09T23:51:09.907173-07:00,999.69873046875,10.831294,10831.294 +23570,2025-03-09T23:51:20.755344-07:00,999.7251586914062,10.848171,10848.171 +23571,2025-03-09T23:51:31.597758-07:00,999.7095336914062,10.842414,10842.414 +23572,2025-03-09T23:51:42.441113-07:00,999.7161865234375,10.843355,10843.355 +23573,2025-03-09T23:51:53.279868-07:00,999.7084350585938,10.838755,10838.755 +23574,2025-03-09T23:52:04.117147-07:00,999.6873168945312,10.837279,10837.279 +23575,2025-03-09T23:52:14.967036-07:00,999.701904296875,10.849889,10849.889 +23576,2025-03-09T23:52:25.803890-07:00,999.6859130859375,10.836854,10836.854 +23577,2025-03-09T23:52:36.646994-07:00,999.66748046875,10.843104,10843.104 +23578,2025-03-09T23:52:47.491400-07:00,999.677978515625,10.844406,10844.406 +23579,2025-03-09T23:52:58.326889-07:00,999.6637573242188,10.835489,10835.489 +23580,2025-03-09T23:53:09.164891-07:00,999.67138671875,10.838002,10838.002 +23581,2025-03-09T23:53:20.012896-07:00,999.69677734375,10.848005,10848.005 +23582,2025-03-09T23:53:30.849483-07:00,999.6912231445312,10.836587,10836.587 +23583,2025-03-09T23:53:41.700228-07:00,999.7020263671875,10.850745,10850.745 +23584,2025-03-09T23:53:52.548525-07:00,999.7232666015625,10.848297,10848.297 +23585,2025-03-09T23:54:03.380071-07:00,999.7076416015625,10.831546,10831.546 +23586,2025-03-09T23:54:14.223170-07:00,999.7198486328125,10.843099,10843.099 +23587,2025-03-09T23:54:25.076271-07:00,999.6735229492188,10.853101,10853.101 +23588,2025-03-09T23:54:35.915009-07:00,999.6920166015625,10.838738,10838.738 +23589,2025-03-09T23:54:46.762308-07:00,999.7000122070312,10.847299,10847.299 +23590,2025-03-09T23:54:57.596114-07:00,999.6853637695312,10.833806,10833.806 +23591,2025-03-09T23:55:08.432610-07:00,999.6975708007812,10.836496,10836.496 +23592,2025-03-09T23:55:19.280351-07:00,999.6763916015625,10.847741,10847.741 +23593,2025-03-09T23:55:29.452450-07:00,999.6687622070312,10.172099,10172.099 +23594,2025-03-09T23:55:30.115127-07:00,999.6740112304688,0.662677,662.677 +23595,2025-03-09T23:55:40.963151-07:00,999.6631469726562,10.848024,10848.024 +23596,2025-03-09T23:55:51.804030-07:00,999.6806030273438,10.840879,10840.879 +23597,2025-03-09T23:56:02.636890-07:00,999.6806030273438,10.83286,10832.86 +23598,2025-03-09T23:56:13.475154-07:00,999.7084350585938,10.838264,10838.264 +23599,2025-03-09T23:56:24.312293-07:00,999.69384765625,10.837139,10837.139 +23600,2025-03-09T23:56:35.162934-07:00,999.69140625,10.850641,10850.641 +23601,2025-03-09T23:56:45.992172-07:00,999.6795043945312,10.829238,10829.238 +23602,2025-03-09T23:56:56.834243-07:00,999.6318969726562,10.842071,10842.071 +23603,2025-03-09T23:57:07.671894-07:00,999.67822265625,10.837651,10837.651 +23604,2025-03-09T23:57:18.515890-07:00,999.67822265625,10.843996,10843.996 +23605,2025-03-09T23:57:29.347151-07:00,999.69140625,10.831261,10831.261 +23606,2025-03-09T23:57:40.183939-07:00,999.6705322265625,10.836788,10836.788 +23607,2025-03-09T23:57:51.029891-07:00,999.697021484375,10.845952,10845.952 +23608,2025-03-09T23:58:01.870203-07:00,999.6482543945312,10.840312,10840.312 +23609,2025-03-09T23:58:12.715137-07:00,999.66259765625,10.844934,10844.934 +23610,2025-03-09T23:58:23.556232-07:00,999.6890869140625,10.841095,10841.095 +23611,2025-03-09T23:58:34.397870-07:00,999.6747436523438,10.841638,10841.638 +23612,2025-03-09T23:58:45.241944-07:00,999.7012329101562,10.844074,10844.074 +23613,2025-03-09T23:58:56.073256-07:00,999.6549072265625,10.831312,10831.312 +23614,2025-03-09T23:59:06.917829-07:00,999.6511840820312,10.844573,10844.573 +23615,2025-03-09T23:59:17.758932-07:00,999.67236328125,10.841103,10841.103 +23616,2025-03-09T23:59:28.610033-07:00,999.6591186523438,10.851101,10851.101 +23617,2025-03-09T23:59:39.452017-07:00,999.6459350585938,10.841984,10841.984 +23618,2025-03-09T23:59:50.296139-07:00,999.6643676757812,10.844122,10844.122 +23619,2025-03-10T00:00:01.132872-07:00,999.6699829101562,10.836733,10836.733 +23620,2025-03-10T00:00:11.970030-07:00,999.6578369140625,10.837158,10837.158 +23621,2025-03-10T00:00:22.814948-07:00,999.697509765625,10.844918,10844.918 +23622,2025-03-10T00:00:33.645879-07:00,999.6643676757812,10.830931,10830.931 +23623,2025-03-10T00:00:44.482879-07:00,999.6832275390625,10.837,10837.0 +23624,2025-03-10T00:00:55.327236-07:00,999.6765747070312,10.844357,10844.357 +23625,2025-03-10T00:01:06.168413-07:00,999.6609497070312,10.841177,10841.177 +23626,2025-03-10T00:01:16.999151-07:00,999.6596069335938,10.830738,10830.738 +23627,2025-03-10T00:01:27.833238-07:00,999.6331176757812,10.834087,10834.087 +23628,2025-03-10T00:01:38.677162-07:00,999.6596069335938,10.843924,10843.924 +23629,2025-03-10T00:01:49.508479-07:00,999.6707763671875,10.831317,10831.317 +23630,2025-03-10T00:02:00.344990-07:00,999.6561889648438,10.836511,10836.511 +23631,2025-03-10T00:02:11.180893-07:00,999.6484985351562,10.835903,10835.903 +23632,2025-03-10T00:02:22.020142-07:00,999.647216796875,10.839249,10839.249 +23633,2025-03-10T00:02:32.852573-07:00,999.6551513671875,10.832431,10832.431 +23634,2025-03-10T00:02:43.688890-07:00,999.6646118164062,10.836317,10836.317 +23635,2025-03-10T00:02:54.532228-07:00,999.660400390625,10.843338,10843.338 +23636,2025-03-10T00:03:05.370087-07:00,999.657958984375,10.837859,10837.859 +23637,2025-03-10T00:03:16.196732-07:00,999.6646118164062,10.826645,10826.645 +23638,2025-03-10T00:03:27.039914-07:00,999.66357421875,10.843182,10843.182 +23639,2025-03-10T00:03:37.869930-07:00,999.6621704101562,10.830016,10830.016 +23640,2025-03-10T00:03:48.706892-07:00,999.670166015625,10.836962,10836.962 +23641,2025-03-10T00:03:59.532689-07:00,999.6876831054688,10.825797,10825.797 +23642,2025-03-10T00:04:10.364753-07:00,999.6810302734375,10.832064,10832.064 +23643,2025-03-10T00:04:21.196195-07:00,999.6663818359375,10.831442,10831.442 +23644,2025-03-10T00:04:32.038939-07:00,999.6598510742188,10.842744,10842.744 +23645,2025-03-10T00:04:42.877536-07:00,999.6720581054688,10.838597,10838.597 +23646,2025-03-10T00:04:53.715221-07:00,999.6521606445312,10.837685,10837.685 +23647,2025-03-10T00:05:04.542878-07:00,999.6564331054688,10.827657,10827.657 +23648,2025-03-10T00:05:15.376334-07:00,999.6286010742188,10.833456,10833.456 +23649,2025-03-10T00:05:26.211184-07:00,999.6431274414062,10.83485,10834.85 +23650,2025-03-10T00:05:37.052885-07:00,999.6299438476562,10.841701,10841.701 +23651,2025-03-10T00:05:47.859427-07:00,999.6431274414062,10.806542,10806.542 +23652,2025-03-10T00:05:58.702361-07:00,999.6219482421875,10.842934,10842.934 +23653,2025-03-10T00:06:09.536084-07:00,999.6209106445312,10.833723,10833.723 +23654,2025-03-10T00:06:20.382307-07:00,999.639404296875,10.846223,10846.223 +23655,2025-03-10T00:06:31.212246-07:00,999.6195068359375,10.829939,10829.939 +23656,2025-03-10T00:06:42.052090-07:00,999.6408081054688,10.839844,10839.844 +23657,2025-03-10T00:06:52.885487-07:00,999.6748657226562,10.833397,10833.397 +23658,2025-03-10T00:07:03.726700-07:00,999.6063232421875,10.841213,10841.213 +23659,2025-03-10T00:07:14.573090-07:00,999.6328125,10.84639,10846.39 +23660,2025-03-10T00:07:25.408343-07:00,999.6185302734375,10.835253,10835.253 +23661,2025-03-10T00:07:36.252086-07:00,999.6174926757812,10.843743,10843.743 +23662,2025-03-10T00:07:47.088347-07:00,999.5986938476562,10.836261,10836.261 +23663,2025-03-10T00:07:57.931217-07:00,999.6160888671875,10.84287,10842.87 +23664,2025-03-10T00:08:08.762442-07:00,999.6029052734375,10.831225,10831.225 +23665,2025-03-10T00:08:19.608580-07:00,999.5962524414062,10.846138,10846.138 +23666,2025-03-10T00:08:30.437086-07:00,999.6004638671875,10.828506,10828.506 +23667,2025-03-10T00:08:41.276195-07:00,999.6060791015625,10.839109,10839.109 +23668,2025-03-10T00:08:52.111153-07:00,999.6071166992188,10.834958,10834.958 +23669,2025-03-10T00:09:02.945540-07:00,999.6217041015625,10.834387,10834.387 +23670,2025-03-10T00:09:13.783570-07:00,999.6060791015625,10.83803,10838.03 +23671,2025-03-10T00:09:24.621082-07:00,999.6046752929688,10.837512,10837.512 +23672,2025-03-10T00:09:35.452082-07:00,999.5848388671875,10.831,10831.0 +23673,2025-03-10T00:09:46.281457-07:00,999.6311645507812,10.829375,10829.375 +23674,2025-03-10T00:09:57.110348-07:00,999.5772094726562,10.828891,10828.891 +23675,2025-03-10T00:10:07.942088-07:00,999.6046752929688,10.83174,10831.74 +23676,2025-03-10T00:10:18.784059-07:00,999.6023559570312,10.841971,10841.971 +23677,2025-03-10T00:10:27.623950-07:00,999.5615844726562,8.839891,8839.891 +23678,2025-03-10T00:10:29.621088-07:00,999.5890502929688,1.997138,1997.138 +23679,2025-03-10T00:10:40.464355-07:00,999.6012573242188,10.843267,10843.267 +23680,2025-03-10T00:10:51.296128-07:00,999.5880737304688,10.831773,10831.773 +23681,2025-03-10T00:11:02.138092-07:00,999.5602416992188,10.841964,10841.964 +23682,2025-03-10T00:11:12.977626-07:00,999.5921630859375,10.839534,10839.534 +23683,2025-03-10T00:11:23.821069-07:00,999.57763671875,10.843443,10843.443 +23684,2025-03-10T00:11:34.655068-07:00,999.5765380859375,10.833999,10833.999 +23685,2025-03-10T00:11:45.489630-07:00,999.5543823242188,10.834562,10834.562 +23686,2025-03-10T00:11:56.327085-07:00,999.56201171875,10.837455,10837.455 +23687,2025-03-10T00:12:07.174201-07:00,999.5477905273438,10.847116,10847.116 +23688,2025-03-10T00:12:18.014081-07:00,999.533203125,10.83988,10839.88 +23689,2025-03-10T00:12:28.846085-07:00,999.567626953125,10.832004,10832.004 +23690,2025-03-10T00:12:39.679082-07:00,999.5718994140625,10.832997,10832.997 +23691,2025-03-10T00:12:50.523094-07:00,999.5718994140625,10.844012,10844.012 +23692,2025-03-10T00:13:01.363228-07:00,999.5784301757812,10.840134,10840.134 +23693,2025-03-10T00:13:12.198363-07:00,999.5881958007812,10.835135,10835.135 +23694,2025-03-10T00:13:23.036154-07:00,999.5452880859375,10.837791,10837.791 +23695,2025-03-10T00:13:33.873851-07:00,999.5850219726562,10.837697,10837.697 +23696,2025-03-10T00:13:44.715500-07:00,999.5784301757812,10.841649,10841.649 +23697,2025-03-10T00:13:55.547090-07:00,999.5505981445312,10.83159,10831.59 +23698,2025-03-10T00:14:06.380472-07:00,999.59033203125,10.833382,10833.382 +23699,2025-03-10T00:14:17.223113-07:00,999.549560546875,10.842641,10842.641 +23700,2025-03-10T00:14:28.050433-07:00,999.5296630859375,10.82732,10827.32 +23701,2025-03-10T00:14:38.898371-07:00,999.5617065429688,10.847938,10847.938 +23702,2025-03-10T00:14:49.728295-07:00,999.5948486328125,10.829924,10829.924 +23703,2025-03-10T00:15:00.562349-07:00,999.5250244140625,10.834054,10834.054 +23704,2025-03-10T00:15:11.404241-07:00,999.5437622070312,10.841892,10841.892 +23705,2025-03-10T00:15:22.236089-07:00,999.52392578125,10.831848,10831.848 +23706,2025-03-10T00:15:33.079394-07:00,999.52392578125,10.843305,10843.305 +23707,2025-03-10T00:15:43.917796-07:00,999.5712280273438,10.838402,10838.402 +23708,2025-03-10T00:15:54.754086-07:00,999.5569458007812,10.83629,10836.29 +23709,2025-03-10T00:16:05.598086-07:00,999.5437622070312,10.844,10844.0 +23710,2025-03-10T00:16:16.429036-07:00,999.5291137695312,10.83095,10830.95 +23711,2025-03-10T00:16:27.271235-07:00,999.5646362304688,10.842199,10842.199 +23712,2025-03-10T00:16:38.106011-07:00,999.5423583984375,10.834776,10834.776 +23713,2025-03-10T00:16:48.947310-07:00,999.55322265625,10.841299,10841.299 +23714,2025-03-10T00:16:59.781058-07:00,999.5545043945312,10.833748,10833.748 +23715,2025-03-10T00:17:10.616205-07:00,999.5333862304688,10.835147,10835.147 +23716,2025-03-10T00:17:21.453298-07:00,999.5521850585938,10.837093,10837.093 +23717,2025-03-10T00:17:32.286137-07:00,999.5388793945312,10.832839,10832.839 +23718,2025-03-10T00:17:43.122996-07:00,999.544189453125,10.836859,10836.859 +23719,2025-03-10T00:17:53.959425-07:00,999.55078125,10.836429,10836.429 +23720,2025-03-10T00:18:04.798085-07:00,999.5640869140625,10.83866,10838.66 +23721,2025-03-10T00:18:15.630520-07:00,999.5497436523438,10.832435,10832.435 +23722,2025-03-10T00:18:26.466090-07:00,999.5549926757812,10.83557,10835.57 +23723,2025-03-10T00:18:37.298392-07:00,999.5484619140625,10.832302,10832.302 +23724,2025-03-10T00:18:48.128085-07:00,999.54736328125,10.829693,10829.693 +23725,2025-03-10T00:18:58.973089-07:00,999.5606079101562,10.845004,10845.004 +23726,2025-03-10T00:19:09.803645-07:00,999.5393676757812,10.830556,10830.556 +23727,2025-03-10T00:19:20.638435-07:00,999.5592041015625,10.83479,10834.79 +23728,2025-03-10T00:19:31.485145-07:00,999.5606079101562,10.84671,10846.71 +23729,2025-03-10T00:19:42.324417-07:00,999.5700073242188,10.839272,10839.272 +23730,2025-03-10T00:19:53.155212-07:00,999.5756225585938,10.830795,10830.795 +23731,2025-03-10T00:20:03.995524-07:00,999.56103515625,10.840312,10840.312 +23732,2025-03-10T00:20:03.995524-07:00,999.56103515625,0.0,0.0 +23733,2025-03-10T00:20:14.827427-07:00,999.5689697265625,10.831903,10831.903 +23734,2025-03-10T00:20:25.664260-07:00,999.5689697265625,10.836833,10836.833 +23735,2025-03-10T00:20:36.488329-07:00,999.5279541015625,10.824069,10824.069 +23736,2025-03-10T00:20:47.322320-07:00,999.5401611328125,10.833991,10833.991 +23737,2025-03-10T00:20:58.163317-07:00,999.5335083007812,10.840997,10840.997 +23738,2025-03-10T00:21:08.998500-07:00,999.5335083007812,10.835183,10835.183 +23739,2025-03-10T00:21:19.837080-07:00,999.4927978515625,10.83858,10838.58 +23740,2025-03-10T00:21:30.674564-07:00,999.5126342773438,10.837484,10837.484 +23741,2025-03-10T00:21:41.500435-07:00,999.5310668945312,10.825871,10825.871 +23742,2025-03-10T00:21:52.343079-07:00,999.5377197265625,10.842644,10842.644 +23743,2025-03-10T00:22:03.176271-07:00,999.5245361328125,10.833192,10833.192 +23744,2025-03-10T00:22:14.012284-07:00,999.516845703125,10.836013,10836.013 +23745,2025-03-10T00:22:24.843123-07:00,999.5022583007812,10.830839,10830.839 +23746,2025-03-10T00:22:35.687425-07:00,999.51025390625,10.844302,10844.302 +23747,2025-03-10T00:22:46.519351-07:00,999.4913940429688,10.831926,10831.926 +23748,2025-03-10T00:22:57.346090-07:00,999.5234375,10.826739,10826.739 +23749,2025-03-10T00:23:08.182165-07:00,999.4970092773438,10.836075,10836.075 +23750,2025-03-10T00:23:19.020309-07:00,999.5245361328125,10.838144,10838.144 +23751,2025-03-10T00:23:29.852407-07:00,999.4904174804688,10.832098,10832.098 +23752,2025-03-10T00:23:40.687085-07:00,999.5154418945312,10.834678,10834.678 +23753,2025-03-10T00:23:51.531214-07:00,999.46923828125,10.844129,10844.129 +23754,2025-03-10T00:24:02.364407-07:00,999.5089111328125,10.833193,10833.193 +23755,2025-03-10T00:24:13.190085-07:00,999.5046997070312,10.825678,10825.678 +23756,2025-03-10T00:24:24.022485-07:00,999.5036010742188,10.8324,10832.4 +23757,2025-03-10T00:24:34.858254-07:00,999.4771728515625,10.835769,10835.769 +23758,2025-03-10T00:24:45.691088-07:00,999.4508056640625,10.832834,10832.834 +23759,2025-03-10T00:24:56.527898-07:00,999.4862670898438,10.83681,10836.81 +23760,2025-03-10T00:25:07.365561-07:00,999.5178833007812,10.837663,10837.663 +23761,2025-03-10T00:25:18.204225-07:00,999.5178833007812,10.838664,10838.664 +23762,2025-03-10T00:25:29.039551-07:00,999.4706420898438,10.835326,10835.326 +23763,2025-03-10T00:25:39.870100-07:00,999.478271484375,10.830549,10830.549 +23764,2025-03-10T00:25:50.702634-07:00,999.48486328125,10.832534,10832.534 +23765,2025-03-10T00:26:01.540072-07:00,999.50048828125,10.837438,10837.438 +23766,2025-03-10T00:26:12.377147-07:00,999.4715576171875,10.837075,10837.075 +23767,2025-03-10T00:26:23.219949-07:00,999.50048828125,10.842802,10842.802 +23768,2025-03-10T00:26:34.053065-07:00,999.493896484375,10.833116,10833.116 +23769,2025-03-10T00:26:44.897224-07:00,999.4862670898438,10.844159,10844.159 +23770,2025-03-10T00:26:55.735231-07:00,999.446533203125,10.838007,10838.007 +23771,2025-03-10T00:27:06.571162-07:00,999.4573364257812,10.835931,10835.931 +23772,2025-03-10T00:27:17.400130-07:00,999.4441528320312,10.828968,10828.968 +23773,2025-03-10T00:27:28.232247-07:00,999.478271484375,10.832117,10832.117 +23774,2025-03-10T00:27:39.072131-07:00,999.4862670898438,10.839884,10839.884 +23775,2025-03-10T00:27:49.899344-07:00,999.4715576171875,10.827213,10827.213 +23776,2025-03-10T00:28:00.735643-07:00,999.4494018554688,10.836299,10836.299 +23777,2025-03-10T00:28:11.573139-07:00,999.4451293945312,10.837496,10837.496 +23778,2025-03-10T00:28:22.403920-07:00,999.4650268554688,10.830781,10830.781 +23779,2025-03-10T00:28:33.225084-07:00,999.4650268554688,10.821164,10821.164 +23780,2025-03-10T00:28:44.067717-07:00,999.4176635742188,10.842633,10842.633 +23781,2025-03-10T00:28:54.904785-07:00,999.4375,10.837068,10837.068 +23782,2025-03-10T00:29:05.731435-07:00,999.430908203125,10.82665,10826.65 +23783,2025-03-10T00:29:16.567147-07:00,999.4361572265625,10.835712,10835.712 +23784,2025-03-10T00:29:27.393481-07:00,999.462646484375,10.826334,10826.334 +23785,2025-03-10T00:29:38.232632-07:00,999.4361572265625,10.839151,10839.151 +23786,2025-03-10T00:29:49.058318-07:00,999.415283203125,10.825686,10825.686 +23787,2025-03-10T00:29:59.889466-07:00,999.4138793945312,10.831148,10831.148 +23788,2025-03-10T00:30:10.721335-07:00,999.40625,10.831869,10831.869 +23789,2025-03-10T00:30:21.554396-07:00,999.4129028320312,10.833061,10833.061 +23790,2025-03-10T00:30:32.380189-07:00,999.4129028320312,10.825793,10825.793 +23791,2025-03-10T00:30:43.205369-07:00,999.43798828125,10.82518,10825.18 +23792,2025-03-10T00:30:54.036067-07:00,999.4260864257812,10.830698,10830.698 +23793,2025-03-10T00:31:04.873260-07:00,999.43798828125,10.837193,10837.193 +23794,2025-03-10T00:31:15.701219-07:00,999.4025268554688,10.827959,10827.959 +23795,2025-03-10T00:31:26.543087-07:00,999.3917236328125,10.841868,10841.868 +23796,2025-03-10T00:31:37.375763-07:00,999.3917236328125,10.832676,10832.676 +23797,2025-03-10T00:31:48.206086-07:00,999.4025268554688,10.830323,10830.323 +23798,2025-03-10T00:31:59.046807-07:00,999.3959350585938,10.840721,10840.721 +23799,2025-03-10T00:32:09.889392-07:00,999.4104614257812,10.842585,10842.585 +23800,2025-03-10T00:32:20.721089-07:00,999.4039306640625,10.831697,10831.697 +23801,2025-03-10T00:32:31.563209-07:00,999.3892822265625,10.84212,10842.12 +23802,2025-03-10T00:32:42.394326-07:00,999.4039306640625,10.831117,10831.117 +23803,2025-03-10T00:32:53.226087-07:00,999.4039306640625,10.831761,10831.761 +23804,2025-03-10T00:33:04.070067-07:00,999.3883056640625,10.84398,10843.98 +23805,2025-03-10T00:33:14.904334-07:00,999.36181640625,10.834267,10834.267 +23806,2025-03-10T00:33:25.744234-07:00,999.3934326171875,10.8399,10839.9 +23807,2025-03-10T00:33:36.587260-07:00,999.3803100585938,10.843026,10843.026 +23808,2025-03-10T00:33:47.429664-07:00,999.3934326171875,10.842404,10842.404 +23809,2025-03-10T00:33:58.267343-07:00,999.3869018554688,10.837679,10837.679 +23810,2025-03-10T00:34:09.109228-07:00,999.3990478515625,10.841885,10841.885 +23811,2025-03-10T00:34:19.953061-07:00,999.3883056640625,10.843833,10843.833 +23812,2025-03-10T00:34:30.792444-07:00,999.404296875,10.839383,10839.383 +23813,2025-03-10T00:34:41.629338-07:00,999.384521484375,10.836894,10836.894 +23814,2025-03-10T00:34:52.468621-07:00,999.3580322265625,10.839283,10839.283 +23815,2025-03-10T00:35:03.307349-07:00,999.3778076171875,10.838728,10838.728 +23816,2025-03-10T00:35:14.144317-07:00,999.3490600585938,10.836968,10836.968 +23817,2025-03-10T00:35:24.974087-07:00,999.3513793945312,10.82977,10829.77 +23818,2025-03-10T00:35:35.813435-07:00,999.3621826171875,10.839348,10839.348 +23819,2025-03-10T00:35:46.663560-07:00,999.3357543945312,10.850125,10850.125 +23820,2025-03-10T00:35:57.502093-07:00,999.352783203125,10.838533,10838.533 +23821,2025-03-10T00:36:08.341417-07:00,999.352783203125,10.839324,10839.324 +23822,2025-03-10T00:36:19.185451-07:00,999.34619140625,10.844034,10844.034 +23823,2025-03-10T00:36:30.023153-07:00,999.3538208007812,10.837702,10837.702 +23824,2025-03-10T00:36:40.863081-07:00,999.34716796875,10.839928,10839.928 +23825,2025-03-10T00:36:51.716091-07:00,999.3604736328125,10.85301,10853.01 +23826,2025-03-10T00:37:02.558672-07:00,999.3869018554688,10.842581,10842.581 +23827,2025-03-10T00:37:13.391084-07:00,999.3485717773438,10.832412,10832.412 +23828,2025-03-10T00:37:24.241750-07:00,999.3551635742188,10.850666,10850.666 +23829,2025-03-10T00:37:35.084425-07:00,999.3419799804688,10.842675,10842.675 +23830,2025-03-10T00:37:45.928192-07:00,999.3707885742188,10.843767,10843.767 +23831,2025-03-10T00:37:56.766417-07:00,999.349609375,10.838225,10838.225 +23832,2025-03-10T00:38:07.602082-07:00,999.3562622070312,10.835665,10835.665 +23833,2025-03-10T00:38:18.448067-07:00,999.36279296875,10.845985,10845.985 +23834,2025-03-10T00:38:29.281922-07:00,999.3311157226562,10.833855,10833.855 +23835,2025-03-10T00:38:40.133131-07:00,999.3585815429688,10.851209,10851.209 +23836,2025-03-10T00:38:50.977312-07:00,999.3641967773438,10.844181,10844.181 +23837,2025-03-10T00:39:01.825080-07:00,999.3387451171875,10.847768,10847.768 +23838,2025-03-10T00:39:12.663085-07:00,999.3478393554688,10.838005,10838.005 +23839,2025-03-10T00:39:23.515094-07:00,999.3689575195312,10.852009,10852.009 +23840,2025-03-10T00:39:34.359425-07:00,999.376708984375,10.844331,10844.331 +23841,2025-03-10T00:39:45.200086-07:00,999.3425903320312,10.840661,10840.661 +23842,2025-03-10T00:39:56.047126-07:00,999.3779907226562,10.84704,10847.04 +23843,2025-03-10T00:40:06.887333-07:00,999.3699951171875,10.840207,10840.207 +23844,2025-03-10T00:40:17.727097-07:00,999.3912353515625,10.839764,10839.764 +23845,2025-03-10T00:40:28.574528-07:00,999.3790893554688,10.847431,10847.431 +23846,2025-03-10T00:40:39.417403-07:00,999.3568725585938,10.842875,10842.875 +23847,2025-03-10T00:40:50.260664-07:00,999.3790893554688,10.843261,10843.261 +23848,2025-03-10T00:41:01.092659-07:00,999.3779907226562,10.831995,10831.995 +23849,2025-03-10T00:41:11.935081-07:00,999.3724975585938,10.842422,10842.422 +23850,2025-03-10T00:41:22.782440-07:00,999.3460083007812,10.847359,10847.359 +23851,2025-03-10T00:41:33.628336-07:00,999.3658447265625,10.845896,10845.896 +23852,2025-03-10T00:41:44.469293-07:00,999.3502197265625,10.840957,10840.957 +23853,2025-03-10T00:41:55.318390-07:00,999.3435668945312,10.849097,10849.097 +23854,2025-03-10T00:42:06.151145-07:00,999.3502197265625,10.832755,10832.755 +23855,2025-03-10T00:42:16.994599-07:00,999.3634643554688,10.843454,10843.454 +23856,2025-03-10T00:42:27.835139-07:00,999.344970703125,10.84054,10840.54 +23857,2025-03-10T00:42:38.676213-07:00,999.3359375,10.841074,10841.074 +23858,2025-03-10T00:42:49.514218-07:00,999.3689575195312,10.838005,10838.005 +23859,2025-03-10T00:43:00.348191-07:00,999.3699951171875,10.833973,10833.973 +23860,2025-03-10T00:43:11.189129-07:00,999.3359375,10.840938,10840.938 +23861,2025-03-10T00:43:22.020355-07:00,999.3699951171875,10.831226,10831.226 +23862,2025-03-10T00:43:32.865217-07:00,999.3123168945312,10.844862,10844.862 +23863,2025-03-10T00:43:43.708388-07:00,999.3599853515625,10.843171,10843.171 +23864,2025-03-10T00:43:54.547407-07:00,999.3256225585938,10.839019,10839.019 +23865,2025-03-10T00:44:05.382090-07:00,999.3401489257812,10.834683,10834.683 +23866,2025-03-10T00:44:16.229081-07:00,999.3179931640625,10.846991,10846.991 +23867,2025-03-10T00:44:27.069294-07:00,999.3322143554688,10.840213,10840.213 +23868,2025-03-10T00:44:37.912337-07:00,999.3245239257812,10.843043,10843.043 +23869,2025-03-10T00:44:48.747696-07:00,999.3046875,10.835359,10835.359 +23870,2025-03-10T00:44:59.590363-07:00,999.3231201171875,10.842667,10842.667 +23871,2025-03-10T00:45:10.432312-07:00,999.3009643554688,10.841949,10841.949 +23872,2025-03-10T00:45:21.270278-07:00,999.2998657226562,10.837966,10837.966 +23873,2025-03-10T00:45:32.111090-07:00,999.3065795898438,10.840812,10840.812 +23874,2025-03-10T00:45:42.960945-07:00,999.2909545898438,10.849855,10849.855 +23875,2025-03-10T00:45:53.796063-07:00,999.3131103515625,10.835118,10835.118 +23876,2025-03-10T00:46:04.635189-07:00,999.28955078125,10.839126,10839.126 +23877,2025-03-10T00:46:15.483427-07:00,999.3016967773438,10.848238,10848.238 +23878,2025-03-10T00:46:26.323590-07:00,999.2884521484375,10.840163,10840.163 +23879,2025-03-10T00:46:37.171152-07:00,999.2818603515625,10.847562,10847.562 +23880,2025-03-10T00:46:48.009086-07:00,999.2794799804688,10.837934,10837.934 +23881,2025-03-10T00:46:58.853090-07:00,999.2742309570312,10.844004,10844.004 +23882,2025-03-10T00:47:09.706086-07:00,999.2662353515625,10.852996,10852.996 +23883,2025-03-10T00:47:20.552088-07:00,999.2398681640625,10.846002,10846.002 +23884,2025-03-10T00:47:31.392521-07:00,999.2742309570312,10.840433,10840.433 +23885,2025-03-10T00:47:42.239211-07:00,999.2415771484375,10.84669,10846.69 +23886,2025-03-10T00:47:53.073045-07:00,999.2363891601562,10.833834,10833.834 +23887,2025-03-10T00:48:03.917254-07:00,999.24951171875,10.844209,10844.209 +23888,2025-03-10T00:48:14.753087-07:00,999.2415771484375,10.835833,10835.833 +23889,2025-03-10T00:48:25.597085-07:00,999.274658203125,10.843998,10843.998 +23890,2025-03-10T00:48:36.446088-07:00,999.2349853515625,10.849003,10849.003 +23891,2025-03-10T00:48:47.290095-07:00,999.24951171875,10.844007,10844.007 +23892,2025-03-10T00:48:58.130655-07:00,999.2440795898438,10.84056,10840.56 +23893,2025-03-10T00:49:08.973131-07:00,999.2284545898438,10.842476,10842.476 +23894,2025-03-10T00:49:19.820394-07:00,999.2572021484375,10.847263,10847.263 +23895,2025-03-10T00:49:30.655693-07:00,999.2086181640625,10.835299,10835.299 +23896,2025-03-10T00:49:41.486085-07:00,999.216552734375,10.830392,10830.392 +23897,2025-03-10T00:49:52.324090-07:00,999.23388671875,10.838005,10838.005 +23898,2025-03-10T00:50:03.164091-07:00,999.2140502929688,10.840001,10840.001 +23899,2025-03-10T00:50:13.999129-07:00,999.2140502929688,10.835038,10835.038 +23900,2025-03-10T00:50:24.848090-07:00,999.2140502929688,10.848961,10848.961 +23901,2025-03-10T00:50:35.681578-07:00,999.21826171875,10.833488,10833.488 +23902,2025-03-10T00:50:46.529458-07:00,999.2207641601562,10.84788,10847.88 +23903,2025-03-10T00:50:57.360911-07:00,999.2061767578125,10.831453,10831.453 +23904,2025-03-10T00:51:08.202078-07:00,999.1905517578125,10.841167,10841.167 +23905,2025-03-10T00:51:19.032501-07:00,999.1838989257812,10.830423,10830.423 +23906,2025-03-10T00:51:29.868185-07:00,999.21826171875,10.835684,10835.684 +23907,2025-03-10T00:51:40.710522-07:00,999.2117309570312,10.842337,10842.337 +23908,2025-03-10T00:51:51.553913-07:00,999.1838989257812,10.843391,10843.391 +23909,2025-03-10T00:52:02.385283-07:00,999.2159423828125,10.83137,10831.37 +23910,2025-03-10T00:52:13.227269-07:00,999.1961059570312,10.841986,10841.986 +23911,2025-03-10T00:52:24.072311-07:00,999.1749267578125,10.845042,10845.042 +23912,2025-03-10T00:52:34.904133-07:00,999.1738891601562,10.831822,10831.822 +23913,2025-03-10T00:52:45.746088-07:00,999.182861328125,10.841955,10841.955 +23914,2025-03-10T00:52:56.579492-07:00,999.167236328125,10.833404,10833.404 +23915,2025-03-10T00:53:07.411080-07:00,999.1394653320312,10.831588,10831.588 +23916,2025-03-10T00:53:18.246090-07:00,999.1777954101562,10.83501,10835.01 +23917,2025-03-10T00:53:29.090101-07:00,999.20556640625,10.844011,10844.011 +23918,2025-03-10T00:53:39.927175-07:00,999.2013549804688,10.837074,10837.074 +23919,2025-03-10T00:53:50.770827-07:00,999.1790771484375,10.843652,10843.652 +23920,2025-03-10T00:54:01.614571-07:00,999.1843872070312,10.843744,10843.744 +23921,2025-03-10T00:54:12.446268-07:00,999.2320556640625,10.831697,10831.697 +23922,2025-03-10T00:54:23.288325-07:00,999.185791015625,10.842057,10842.057 +23923,2025-03-10T00:54:34.127312-07:00,999.1843872070312,10.838987,10838.987 +23924,2025-03-10T00:54:44.970089-07:00,999.155517578125,10.842777,10842.777 +23925,2025-03-10T00:54:55.816415-07:00,999.1829833984375,10.846326,10846.326 +23926,2025-03-10T00:55:06.650548-07:00,999.1843872070312,10.834133,10834.133 +23927,2025-03-10T00:55:17.485416-07:00,999.1829833984375,10.834868,10834.868 +23928,2025-03-10T00:55:28.312533-07:00,999.1896362304688,10.827117,10827.117 +23929,2025-03-10T00:55:39.155714-07:00,999.1475830078125,10.843181,10843.181 +23930,2025-03-10T00:55:49.993234-07:00,999.155517578125,10.83752,10837.52 +23931,2025-03-10T00:56:00.828136-07:00,999.19384765625,10.834902,10834.902 +23932,2025-03-10T00:56:11.668090-07:00,999.1806030273438,10.839954,10839.954 +23933,2025-03-10T00:56:22.507968-07:00,999.15966796875,10.839878,10839.878 +23934,2025-03-10T00:56:33.335082-07:00,999.1795043945312,10.827114,10827.114 +23935,2025-03-10T00:56:44.181147-07:00,999.1771850585938,10.846065,10846.065 +23936,2025-03-10T00:56:55.010430-07:00,999.1531372070312,10.829283,10829.283 +23937,2025-03-10T00:57:05.846082-07:00,999.1350708007812,10.835652,10835.652 +23938,2025-03-10T00:57:16.688134-07:00,999.1785278320312,10.842052,10842.052 +23939,2025-03-10T00:57:27.525425-07:00,999.1638793945312,10.837291,10837.291 +23940,2025-03-10T00:57:38.361306-07:00,999.149658203125,10.835881,10835.881 +23941,2025-03-10T00:57:49.193292-07:00,999.1629028320312,10.831986,10831.986 +23942,2025-03-10T00:58:00.038398-07:00,999.1549072265625,10.845106,10845.106 +23943,2025-03-10T00:58:10.865212-07:00,999.1539306640625,10.826814,10826.814 +23944,2025-03-10T00:58:21.712131-07:00,999.140625,10.846919,10846.919 +23945,2025-03-10T00:58:32.544300-07:00,999.1383056640625,10.832169,10832.169 +23946,2025-03-10T00:58:43.376079-07:00,999.1316528320312,10.831779,10831.779 +23947,2025-03-10T00:58:54.214063-07:00,999.1316528320312,10.837984,10837.984 +23948,2025-03-10T00:59:05.051131-07:00,999.1170043945312,10.837068,10837.068 +23949,2025-03-10T00:59:15.893172-07:00,999.1369018554688,10.842041,10842.041 +23950,2025-03-10T00:59:26.729449-07:00,999.109375,10.836277,10836.277 +23951,2025-03-10T00:59:37.568660-07:00,999.1425170898438,10.839211,10839.211 +23952,2025-03-10T00:59:48.409229-07:00,999.1334228515625,10.840569,10840.569 +23953,2025-03-10T00:59:59.242088-07:00,999.1268920898438,10.832859,10832.859 +23954,2025-03-10T01:00:10.079123-07:00,999.1268920898438,10.837035,10837.035 +23955,2025-03-10T01:00:20.921140-07:00,999.12548828125,10.842017,10842.017 +23956,2025-03-10T01:00:31.750360-07:00,999.1243896484375,10.82922,10829.22 +23957,2025-03-10T01:00:42.582089-07:00,999.1220092773438,10.831729,10831.729 +23958,2025-03-10T01:00:53.411571-07:00,999.1007690429688,10.829482,10829.482 +23959,2025-03-10T01:01:04.255339-07:00,999.0997924804688,10.843768,10843.768 +23960,2025-03-10T01:01:15.087085-07:00,999.0907592773438,10.831746,10831.746 +23961,2025-03-10T01:01:25.919338-07:00,999.1171875,10.832253,10832.253 +23962,2025-03-10T01:01:36.761826-07:00,999.1248168945312,10.842488,10842.488 +23963,2025-03-10T01:01:47.605087-07:00,999.0896606445312,10.843261,10843.261 +23964,2025-03-10T01:01:58.436094-07:00,999.0806884765625,10.831007,10831.007 +23965,2025-03-10T01:02:09.280691-07:00,999.0661010742188,10.844597,10844.597 +23966,2025-03-10T01:02:20.113122-07:00,999.0740356445312,10.832431,10832.431 +23967,2025-03-10T01:02:30.950440-07:00,999.0806884765625,10.837318,10837.318 +23968,2025-03-10T01:02:41.798504-07:00,999.0518798828125,10.848064,10848.064 +23969,2025-03-10T01:02:52.631088-07:00,999.0306396484375,10.832584,10832.584 +23970,2025-03-10T01:03:03.460084-07:00,999.0427856445312,10.828996,10828.996 +23971,2025-03-10T01:03:14.295323-07:00,999.05712890625,10.835239,10835.239 +23972,2025-03-10T01:03:25.136452-07:00,999.0504760742188,10.841129,10841.129 +23973,2025-03-10T01:03:35.968404-07:00,999.048095703125,10.831952,10831.952 +23974,2025-03-10T01:03:46.798331-07:00,999.0150146484375,10.829927,10829.927 +23975,2025-03-10T01:03:57.643088-07:00,999.0181884765625,10.844757,10844.757 +23976,2025-03-10T01:04:08.474626-07:00,999.0470581054688,10.831538,10831.538 +23977,2025-03-10T01:04:19.306061-07:00,999.0115356445312,10.831435,10831.435 +23978,2025-03-10T01:04:30.142425-07:00,999.0588989257812,10.836364,10836.364 +23979,2025-03-10T01:04:40.969085-07:00,999.03564453125,10.82666,10826.66 +23980,2025-03-10T01:04:51.801087-07:00,998.9959106445312,10.832002,10832.002 +23981,2025-03-10T01:05:02.634474-07:00,998.9879760742188,10.833387,10833.387 +23982,2025-03-10T01:05:13.475768-07:00,999.0342407226562,10.841294,10841.294 +23983,2025-03-10T01:05:24.307135-07:00,999.0398559570312,10.831367,10831.367 +23984,2025-03-10T01:05:35.138230-07:00,999.0648193359375,10.831095,10831.095 +23985,2025-03-10T01:05:46.055190-07:00,999.0242309570312,10.91696,10916.96 +23986,2025-03-10T01:05:56.887483-07:00,999.0099487304688,10.832293,10832.293 +23987,2025-03-10T01:06:07.719097-07:00,999.0349731445312,10.831614,10831.614 +23988,2025-03-10T01:06:18.550411-07:00,999.0217895507812,10.831314,10831.314 +23989,2025-03-10T01:06:29.373001-07:00,999.0325927734375,10.82259,10822.59 +23990,2025-03-10T01:06:40.209931-07:00,999.0524291992188,10.83693,10836.93 +23991,2025-03-10T01:06:51.048940-07:00,999.0524291992188,10.839009,10839.009 +23992,2025-03-10T01:07:01.890203-07:00,999.0236206054688,10.841263,10841.263 +23993,2025-03-10T01:07:12.722397-07:00,999.0225219726562,10.832194,10832.194 +23994,2025-03-10T01:07:23.562951-07:00,999.0291137695312,10.840554,10840.554 +23995,2025-03-10T01:07:34.393124-07:00,999.0211791992188,10.830173,10830.173 +23996,2025-03-10T01:07:45.236315-07:00,999.0068969726562,10.843191,10843.191 +23997,2025-03-10T01:07:56.077949-07:00,999.0267333984375,10.841634,10841.634 +23998,2025-03-10T01:08:06.914090-07:00,999.0111083984375,10.836141,10836.141 +23999,2025-03-10T01:08:17.757313-07:00,999.0176391601562,10.843223,10843.223 +24000,2025-03-10T01:08:28.589438-07:00,999.0031127929688,10.832125,10832.125 +24001,2025-03-10T01:08:39.428950-07:00,998.9954833984375,10.839512,10839.512 +24002,2025-03-10T01:08:50.262274-07:00,998.9874877929688,10.833324,10833.324 +24003,2025-03-10T01:09:01.107396-07:00,998.9874877929688,10.845122,10845.122 +24004,2025-03-10T01:09:11.938958-07:00,998.99169921875,10.831562,10831.562 +24005,2025-03-10T01:09:22.782290-07:00,998.96533203125,10.843332,10843.332 +24006,2025-03-10T01:09:33.624369-07:00,999.024658203125,10.842079,10842.079 +24007,2025-03-10T01:09:44.463951-07:00,998.98828125,10.839582,10839.582 +24008,2025-03-10T01:09:55.309955-07:00,998.97607421875,10.846004,10846.004 +24009,2025-03-10T01:10:06.153198-07:00,999.0070190429688,10.843243,10843.243 +24010,2025-03-10T01:10:16.996272-07:00,998.9871826171875,10.843074,10843.074 +24011,2025-03-10T01:10:27.839820-07:00,998.979248046875,10.843548,10843.548 +24012,2025-03-10T01:10:38.683185-07:00,998.963623046875,10.843365,10843.365 +24013,2025-03-10T01:10:49.525934-07:00,998.9781494140625,10.842749,10842.749 +24014,2025-03-10T01:11:00.368508-07:00,998.9757690429688,10.842574,10842.574 +24015,2025-03-10T01:11:11.211752-07:00,999.0087280273438,10.843244,10843.244 +24016,2025-03-10T01:11:22.059951-07:00,998.9678344726562,10.848199,10848.199 +24017,2025-03-10T01:11:32.900174-07:00,998.947998046875,10.840223,10840.223 +24018,2025-03-10T01:11:43.743955-07:00,998.9799194335938,10.843781,10843.781 +24019,2025-03-10T01:11:54.584266-07:00,998.9445190429688,10.840311,10840.311 +24020,2025-03-10T01:12:05.427106-07:00,998.9576416015625,10.84284,10842.84 +24021,2025-03-10T01:12:16.270078-07:00,998.9642944335938,10.842972,10842.972 +24022,2025-03-10T01:12:27.112945-07:00,998.955322265625,10.842867,10842.867 +24023,2025-03-10T01:12:37.958519-07:00,998.9605712890625,10.845574,10845.574 +24024,2025-03-10T01:12:48.799954-07:00,998.9473266601562,10.841435,10841.435 +24025,2025-03-10T01:12:59.651951-07:00,998.952880859375,10.851997,10851.997 +24026,2025-03-10T01:13:10.496096-07:00,998.9515380859375,10.844145,10844.145 +24027,2025-03-10T01:13:21.328955-07:00,998.9595336914062,10.832859,10832.859 +24028,2025-03-10T01:13:32.172263-07:00,998.9425048828125,10.843308,10843.308 +24029,2025-03-10T01:13:43.002952-07:00,998.937255859375,10.830689,10830.689 +24030,2025-03-10T01:13:53.846953-07:00,998.9149780273438,10.844001,10844.001 +24031,2025-03-10T01:14:04.679202-07:00,998.9359130859375,10.832249,10832.249 +24032,2025-03-10T01:14:15.522192-07:00,998.9160766601562,10.84299,10842.99 +24033,2025-03-10T01:14:26.364129-07:00,998.9136962890625,10.841937,10841.937 +24034,2025-03-10T01:14:37.206169-07:00,998.9004516601562,10.84204,10842.04 +24035,2025-03-10T01:14:48.033940-07:00,998.8982543945312,10.827771,10827.771 +24036,2025-03-10T01:14:58.882021-07:00,998.905029296875,10.848081,10848.081 +24037,2025-03-10T01:15:09.724228-07:00,998.8959350585938,10.842207,10842.207 +24038,2025-03-10T01:15:20.567842-07:00,998.8959350585938,10.843614,10843.614 +24039,2025-03-10T01:15:31.399482-07:00,998.8681030273438,10.83164,10831.64 +24040,2025-03-10T01:15:42.239949-07:00,998.8934936523438,10.840467,10840.467 +24041,2025-03-10T01:15:53.075615-07:00,998.873779296875,10.835666,10835.666 +24042,2025-03-10T01:16:03.917971-07:00,998.872314453125,10.842356,10842.356 +24043,2025-03-10T01:16:14.750187-07:00,998.858154296875,10.832216,10832.216 +24044,2025-03-10T01:16:25.592587-07:00,998.86328125,10.8424,10842.4 +24045,2025-03-10T01:16:36.422363-07:00,998.8490600585938,10.829776,10829.776 +24046,2025-03-10T01:16:47.266422-07:00,998.841064453125,10.844059,10844.059 +24047,2025-03-10T01:16:58.100315-07:00,998.8543090820312,10.833893,10833.893 +24048,2025-03-10T01:17:08.941690-07:00,998.8189086914062,10.841375,10841.375 +24049,2025-03-10T01:17:19.785021-07:00,998.8178100585938,10.843331,10843.331 +24050,2025-03-10T01:17:30.628025-07:00,998.83203125,10.843004,10843.004 +24051,2025-03-10T01:17:41.471075-07:00,998.7767944335938,10.84305,10843.05 +24052,2025-03-10T01:17:52.299949-07:00,998.8297119140625,10.828874,10828.874 +24053,2025-03-10T01:18:03.143955-07:00,998.82861328125,10.844006,10844.006 +24054,2025-03-10T01:18:13.977296-07:00,998.82861328125,10.833341,10833.341 +24055,2025-03-10T01:18:24.821090-07:00,998.7921142578125,10.843794,10843.794 +24056,2025-03-10T01:18:35.663955-07:00,998.810546875,10.842865,10842.865 +24057,2025-03-10T01:18:46.491267-07:00,998.7740478515625,10.827312,10827.312 +24058,2025-03-10T01:18:57.337474-07:00,998.8178100585938,10.846207,10846.207 +24059,2025-03-10T01:19:08.170041-07:00,998.7810668945312,10.832567,10832.567 +24060,2025-03-10T01:19:19.002263-07:00,998.8015747070312,10.832222,10832.222 +24061,2025-03-10T01:19:29.842216-07:00,998.7568969726562,10.839953,10839.953 +24062,2025-03-10T01:19:40.677316-07:00,998.78076171875,10.8351,10835.1 +24063,2025-03-10T01:19:51.508178-07:00,998.7957763671875,10.830862,10830.862 +24064,2025-03-10T01:20:02.340101-07:00,998.779052734375,10.831923,10831.923 +24065,2025-03-10T01:20:13.172327-07:00,998.7753295898438,10.832226,10832.226 +24066,2025-03-10T01:20:24.015991-07:00,998.78369140625,10.843664,10843.664 +24067,2025-03-10T01:20:34.846005-07:00,998.7485961914062,10.830014,10830.014 +24068,2025-03-10T01:20:45.678037-07:00,998.7659301757812,10.832032,10832.032 +24069,2025-03-10T01:20:56.508944-07:00,998.7899169921875,10.830907,10830.907 +24070,2025-03-10T01:21:07.353963-07:00,998.7694702148438,10.845019,10845.019 +24071,2025-03-10T01:21:18.184083-07:00,998.78125,10.83012,10830.12 +24072,2025-03-10T01:21:29.026943-07:00,998.7764282226562,10.84286,10842.86 +24073,2025-03-10T01:21:39.859284-07:00,998.7542114257812,10.832341,10832.341 +24074,2025-03-10T01:21:50.701298-07:00,998.7586669921875,10.842014,10842.014 +24075,2025-03-10T01:22:01.532953-07:00,998.7406005859375,10.831655,10831.655 +24076,2025-03-10T01:22:12.373006-07:00,998.7645874023438,10.840053,10840.053 +24077,2025-03-10T01:22:23.207260-07:00,998.775390625,10.834254,10834.254 +24078,2025-03-10T01:22:34.042158-07:00,998.7584228515625,10.834898,10834.898 +24079,2025-03-10T01:22:44.879414-07:00,998.748291015625,10.837256,10837.256 +24080,2025-03-10T01:22:55.714129-07:00,998.719482421875,10.834715,10834.715 +24081,2025-03-10T01:23:06.546203-07:00,998.7410278320312,10.832074,10832.074 +24082,2025-03-10T01:23:17.387314-07:00,998.7542114257812,10.841111,10841.111 +24083,2025-03-10T01:23:28.222352-07:00,998.763916015625,10.835038,10835.038 +24084,2025-03-10T01:23:39.053173-07:00,998.7391967773438,10.830821,10830.821 +24085,2025-03-10T01:23:49.876956-07:00,998.7709350585938,10.823783,10823.783 +24086,2025-03-10T01:24:00.705259-07:00,998.74755859375,10.828303,10828.303 +24087,2025-03-10T01:24:11.538207-07:00,998.751708984375,10.832948,10832.948 +24088,2025-03-10T01:24:22.357169-07:00,998.7493896484375,10.818962,10818.962 +24089,2025-03-10T01:24:33.188949-07:00,998.761474609375,10.83178,10831.78 +24090,2025-03-10T01:24:44.021286-07:00,998.7457885742188,10.832337,10832.337 +24091,2025-03-10T01:24:54.851932-07:00,998.7420043945312,10.830646,10830.646 +24092,2025-03-10T01:25:05.684018-07:00,998.740966796875,10.832086,10832.086 +24093,2025-03-10T01:25:16.526162-07:00,998.7451782226562,10.842144,10842.144 +24094,2025-03-10T01:25:27.347032-07:00,998.7190551757812,10.82087,10820.87 +24095,2025-03-10T01:25:38.178986-07:00,998.7059326171875,10.831954,10831.954 +24096,2025-03-10T01:25:49.011223-07:00,998.7298583984375,10.832237,10832.237 +24097,2025-03-10T01:25:59.842543-07:00,998.70654296875,10.83132,10831.32 +24098,2025-03-10T01:26:10.673458-07:00,998.6790771484375,10.830915,10830.915 +24099,2025-03-10T01:26:21.505305-07:00,998.697509765625,10.831847,10831.847 +24100,2025-03-10T01:26:32.332936-07:00,998.6676635742188,10.827631,10827.631 +24101,2025-03-10T01:26:43.169252-07:00,998.692626953125,10.836316,10836.316 +24102,2025-03-10T01:26:53.988955-07:00,998.663818359375,10.819703,10819.703 +24103,2025-03-10T01:27:04.820274-07:00,998.6825561523438,10.831319,10831.319 +24104,2025-03-10T01:27:15.653494-07:00,998.6932983398438,10.83322,10833.22 +24105,2025-03-10T01:27:26.484764-07:00,998.69091796875,10.83127,10831.27 +24106,2025-03-10T01:27:37.316949-07:00,998.6961059570312,10.832185,10832.185 +24107,2025-03-10T01:27:48.149958-07:00,998.67529296875,10.833009,10833.009 +24108,2025-03-10T01:27:58.980005-07:00,998.7068481445312,10.830047,10830.047 +24109,2025-03-10T01:28:09.800290-07:00,998.67041015625,10.820285,10820.285 +24110,2025-03-10T01:28:20.630197-07:00,998.68359375,10.829907,10829.907 +24111,2025-03-10T01:28:31.464001-07:00,998.70751953125,10.833804,10833.804 +24112,2025-03-10T01:28:42.298405-07:00,998.6849975585938,10.834404,10834.404 +24113,2025-03-10T01:28:53.126958-07:00,998.7103271484375,10.828553,10828.553 +24114,2025-03-10T01:29:03.950929-07:00,998.6814575195312,10.823971,10823.971 +24115,2025-03-10T01:29:14.784955-07:00,998.7078857421875,10.834026,10834.026 +24116,2025-03-10T01:29:25.610998-07:00,998.6856079101562,10.826043,10826.043 +24117,2025-03-10T01:29:36.442207-07:00,998.7568969726562,10.831209,10831.209 +24118,2025-03-10T01:29:47.273921-07:00,998.7095947265625,10.831714,10831.714 +24119,2025-03-10T01:29:58.106612-07:00,998.721435546875,10.832691,10832.691 +24120,2025-03-10T01:30:08.937272-07:00,998.7269287109375,10.83066,10830.66 +24121,2025-03-10T01:30:19.762006-07:00,998.718994140625,10.824734,10824.734 +24122,2025-03-10T01:30:30.590257-07:00,998.7310791015625,10.828251,10828.251 +24123,2025-03-10T01:30:41.420955-07:00,998.7286987304688,10.830698,10830.698 +24124,2025-03-10T01:30:52.252606-07:00,998.7352294921875,10.831651,10831.651 +24125,2025-03-10T01:31:03.084094-07:00,998.6998291015625,10.831488,10831.488 +24126,2025-03-10T01:31:13.904638-07:00,998.7146606445312,10.820544,10820.544 +24127,2025-03-10T01:31:24.734932-07:00,998.7345581054688,10.830294,10830.294 +24128,2025-03-10T01:31:35.568252-07:00,998.700439453125,10.83332,10833.32 +24129,2025-03-10T01:31:46.399033-07:00,998.7203369140625,10.830781,10830.781 +24130,2025-03-10T01:31:57.231828-07:00,998.7254638671875,10.832795,10832.795 +24131,2025-03-10T01:32:08.062947-07:00,998.7112426757812,10.831119,10831.119 +24132,2025-03-10T01:32:18.894777-07:00,998.7056884765625,10.83183,10831.83 +24133,2025-03-10T01:32:29.714949-07:00,998.7507934570312,10.820172,10820.172 +24134,2025-03-10T01:32:40.548263-07:00,998.75732421875,10.833314,10833.314 +24135,2025-03-10T01:32:51.375955-07:00,998.7362670898438,10.827692,10827.692 +24136,2025-03-10T01:33:02.216202-07:00,998.7285766601562,10.840247,10840.247 +24137,2025-03-10T01:33:13.043257-07:00,998.75732421875,10.827055,10827.055 +24138,2025-03-10T01:33:23.869282-07:00,998.7560424804688,10.826025,10826.025 +24139,2025-03-10T01:33:34.705935-07:00,998.7296752929688,10.836653,10836.653 +24140,2025-03-10T01:33:45.531954-07:00,998.7427978515625,10.826019,10826.019 +24141,2025-03-10T01:33:56.356166-07:00,998.7550048828125,10.824212,10824.212 +24142,2025-03-10T01:34:07.188958-07:00,998.7483520507812,10.832792,10832.792 +24143,2025-03-10T01:34:18.020243-07:00,998.7470092773438,10.831285,10831.285 +24144,2025-03-10T01:34:28.851226-07:00,998.7327270507812,10.830983,10830.983 +24145,2025-03-10T01:34:39.673394-07:00,998.780029296875,10.822168,10822.168 +24146,2025-03-10T01:34:50.496509-07:00,998.7656860351562,10.823115,10823.115 +24147,2025-03-10T01:35:01.322952-07:00,998.72607421875,10.826443,10826.443 +24148,2025-03-10T01:35:12.145354-07:00,998.7379760742188,10.822402,10822.402 +24149,2025-03-10T01:35:22.977395-07:00,998.7181396484375,10.832041,10832.041 +24150,2025-03-10T01:35:33.808575-07:00,998.7080688476562,10.83118,10831.18 +24151,2025-03-10T01:35:44.639033-07:00,998.7500610351562,10.830458,10830.458 +24152,2025-03-10T01:35:55.471107-07:00,998.7368774414062,10.832074,10832.074 +24153,2025-03-10T01:36:06.302990-07:00,998.7553100585938,10.831883,10831.883 +24154,2025-03-10T01:36:17.135349-07:00,998.7684326171875,10.832359,10832.359 +24155,2025-03-10T01:36:27.966719-07:00,998.7698364257812,10.83137,10831.37 +24156,2025-03-10T01:36:38.797950-07:00,998.7608032226562,10.831231,10831.231 +24157,2025-03-10T01:36:46.808546-07:00,998.7462768554688,8.010596,8010.596 +24158,2025-03-10T01:36:49.618974-07:00,998.7608032226562,2.810428,2810.428 +24159,2025-03-10T01:37:00.451012-07:00,998.75732421875,10.832038,10832.038 +24160,2025-03-10T01:37:11.270955-07:00,998.7715454101562,10.819943,10819.943 +24161,2025-03-10T01:37:22.091257-07:00,998.7583618164062,10.820302,10820.302 +24162,2025-03-10T01:37:32.923255-07:00,998.7374877929688,10.831998,10831.998 +24163,2025-03-10T01:37:43.753196-07:00,998.7493896484375,10.829941,10829.941 +24164,2025-03-10T01:37:54.573932-07:00,998.7218627929688,10.820736,10820.736 +24165,2025-03-10T01:38:05.406543-07:00,998.7020263671875,10.832611,10832.611 +24166,2025-03-10T01:38:16.228180-07:00,998.718017578125,10.821637,10821.637 +24167,2025-03-10T01:38:27.058447-07:00,998.7193603515625,10.830267,10830.267 +24168,2025-03-10T01:38:37.889163-07:00,998.7510375976562,10.830716,10830.716 +24169,2025-03-10T01:38:48.710308-07:00,998.70654296875,10.821145,10821.145 +24170,2025-03-10T01:38:59.543010-07:00,998.7000122070312,10.832702,10832.702 +24171,2025-03-10T01:39:10.372136-07:00,998.7120361328125,10.829126,10829.126 +24172,2025-03-10T01:39:21.195945-07:00,998.7516479492188,10.823809,10823.809 +24173,2025-03-10T01:39:32.013142-07:00,998.7384643554688,10.817197,10817.197 +24174,2025-03-10T01:39:42.847329-07:00,998.7568969726562,10.834187,10834.187 +24175,2025-03-10T01:39:53.668418-07:00,998.7503051757812,10.821089,10821.089 +24176,2025-03-10T01:40:04.499502-07:00,998.7557983398438,10.831084,10831.084 +24177,2025-03-10T01:40:15.319178-07:00,998.7623291015625,10.819676,10819.676 +24178,2025-03-10T01:40:26.150341-07:00,998.760986328125,10.831163,10831.163 +24179,2025-03-10T01:40:36.971947-07:00,998.7863159179688,10.821606,10821.606 +24180,2025-03-10T01:40:47.803001-07:00,998.7731323242188,10.831054,10831.054 +24181,2025-03-10T01:40:58.633928-07:00,998.7783813476562,10.830927,10830.927 +24182,2025-03-10T01:41:09.452950-07:00,998.73876953125,10.819022,10819.022 +24183,2025-03-10T01:41:20.284497-07:00,998.74951171875,10.831547,10831.547 +24184,2025-03-10T01:41:31.106947-07:00,998.7352905273438,10.82245,10822.45 +24185,2025-03-10T01:41:41.926933-07:00,998.7616577148438,10.819986,10819.986 +24186,2025-03-10T01:41:52.761188-07:00,998.7616577148438,10.834255,10834.255 +24187,2025-03-10T01:42:03.582590-07:00,998.7935791015625,10.821402,10821.402 +24188,2025-03-10T01:42:14.412171-07:00,998.7393798828125,10.829581,10829.581 +24189,2025-03-10T01:42:25.242988-07:00,998.73828125,10.830817,10830.817 +24190,2025-03-10T01:42:36.072200-07:00,998.7658081054688,10.829212,10829.212 +24191,2025-03-10T01:42:46.896212-07:00,998.7251586914062,10.824012,10824.012 +24192,2025-03-10T01:42:57.726950-07:00,998.7119750976562,10.830738,10830.738 +24193,2025-03-10T01:43:08.547094-07:00,998.7237548828125,10.820144,10820.144 +24194,2025-03-10T01:43:19.369282-07:00,998.7424926757812,10.822188,10822.188 +24195,2025-03-10T01:43:30.198954-07:00,998.7501831054688,10.829672,10829.672 +24196,2025-03-10T01:43:41.031574-07:00,998.650146484375,10.83262,10832.62 +24197,2025-03-10T01:43:51.854199-07:00,998.7015380859375,10.822625,10822.625 +24198,2025-03-10T01:44:02.680492-07:00,998.6685791015625,10.826293,10826.293 +24199,2025-03-10T01:44:13.508949-07:00,998.6963500976562,10.828457,10828.457 +24200,2025-03-10T01:44:24.346397-07:00,998.674072265625,10.837448,10837.448 +24201,2025-03-10T01:44:35.165955-07:00,998.6595458984375,10.819558,10819.558 +24202,2025-03-10T01:44:46.002199-07:00,998.6649780273438,10.836244,10836.244 +24203,2025-03-10T01:44:56.829992-07:00,998.6834106445312,10.827793,10827.793 +24204,2025-03-10T01:45:07.650189-07:00,998.6636962890625,10.820197,10820.197 +24205,2025-03-10T01:45:18.467943-07:00,998.671630859375,10.817754,10817.754 +24206,2025-03-10T01:45:29.290205-07:00,998.6677856445312,10.822262,10822.262 +24207,2025-03-10T01:45:40.115471-07:00,998.6702880859375,10.825266,10825.266 +24208,2025-03-10T01:45:50.937854-07:00,998.680908203125,10.822383,10822.383 +24209,2025-03-10T01:46:01.756189-07:00,998.6966552734375,10.818335,10818.335 +24210,2025-03-10T01:46:12.573628-07:00,998.669189453125,10.817439,10817.439 +24211,2025-03-10T01:46:23.402195-07:00,998.64697265625,10.828567,10828.567 +24212,2025-03-10T01:46:34.229078-07:00,998.679931640625,10.826883,10826.883 +24213,2025-03-10T01:46:45.044547-07:00,998.6576538085938,10.815469,10815.469 +24214,2025-03-10T01:46:55.875144-07:00,998.6587524414062,10.830597,10830.597 +24215,2025-03-10T01:47:06.708087-07:00,998.6431274414062,10.832943,10832.943 +24216,2025-03-10T01:47:17.527992-07:00,998.61669921875,10.819905,10819.905 +24217,2025-03-10T01:47:28.353268-07:00,998.6629028320312,10.825276,10825.276 +24218,2025-03-10T01:47:39.174955-07:00,998.6719360351562,10.821687,10821.687 +24219,2025-03-10T01:47:50.004218-07:00,998.6156005859375,10.829263,10829.263 +24220,2025-03-10T01:48:00.820000-07:00,998.6552124023438,10.815782,10815.782 +24221,2025-03-10T01:48:11.651236-07:00,998.619873046875,10.831236,10831.236 +24222,2025-03-10T01:48:22.474326-07:00,998.6593627929688,10.82309,10823.09 +24223,2025-03-10T01:48:33.304981-07:00,998.6517333984375,10.830655,10830.655 +24224,2025-03-10T01:48:44.124859-07:00,998.6384887695312,10.819878,10819.878 +24225,2025-03-10T01:48:54.956781-07:00,998.6690673828125,10.831922,10831.922 +24226,2025-03-10T01:49:05.776296-07:00,998.6503295898438,10.819515,10819.515 +24227,2025-03-10T01:49:16.598286-07:00,998.6295166015625,10.82199,10821.99 +24228,2025-03-10T01:49:27.431242-07:00,998.6568603515625,10.832956,10832.956 +24229,2025-03-10T01:49:38.253472-07:00,998.6412353515625,10.82223,10822.23 +24230,2025-03-10T01:49:49.079930-07:00,998.6478881835938,10.826458,10826.458 +24231,2025-03-10T01:49:59.912831-07:00,998.6281127929688,10.832901,10832.901 +24232,2025-03-10T01:50:10.743095-07:00,998.6322021484375,10.830264,10830.264 +24233,2025-03-10T01:50:21.562380-07:00,998.6270141601562,10.819285,10819.285 +24234,2025-03-10T01:50:32.388956-07:00,998.6256103515625,10.826576,10826.576 +24235,2025-03-10T01:50:43.216223-07:00,998.6190795898438,10.827267,10827.267 +24236,2025-03-10T01:50:54.044092-07:00,998.6204833984375,10.827869,10827.869 +24237,2025-03-10T01:51:04.867318-07:00,998.591552734375,10.823226,10823.226 +24238,2025-03-10T01:51:15.695268-07:00,998.6048583984375,10.82795,10827.95 +24239,2025-03-10T01:51:26.520968-07:00,998.6378173828125,10.8257,10825.7 +24240,2025-03-10T01:51:37.341176-07:00,998.5968627929688,10.820208,10820.208 +24241,2025-03-10T01:51:48.162615-07:00,998.6113891601562,10.821439,10821.439 +24242,2025-03-10T01:51:58.980966-07:00,998.6099853515625,10.818351,10818.351 +24243,2025-03-10T01:52:09.810955-07:00,998.6099853515625,10.829989,10829.989 +24244,2025-03-10T01:52:31.462736-07:00,998.6076049804688,21.651781,21651.781 +24245,2025-03-10T01:52:42.285207-07:00,998.59326171875,10.822471,10822.471 +24246,2025-03-10T01:52:53.105402-07:00,998.5878295898438,10.820195,10820.195 +24247,2025-03-10T01:53:03.933261-07:00,998.6065063476562,10.827859,10827.859 +24248,2025-03-10T01:53:14.757947-07:00,998.57763671875,10.824686,10824.686 +24249,2025-03-10T01:53:25.582177-07:00,998.584228515625,10.82423,10824.23 +24250,2025-03-10T01:53:36.408944-07:00,998.5853271484375,10.826767,10826.767 +24251,2025-03-10T01:53:47.241263-07:00,998.55126953125,10.832319,10832.319 +24252,2025-03-10T01:53:58.061948-07:00,998.5985107421875,10.820685,10820.685 +24253,2025-03-10T01:54:08.900179-07:00,998.55126953125,10.838231,10838.231 +24254,2025-03-10T01:54:19.725164-07:00,998.581787109375,10.824985,10824.985 +24255,2025-03-10T01:54:30.557552-07:00,998.5894775390625,10.832388,10832.388 +24256,2025-03-10T01:54:41.376951-07:00,998.5828857421875,10.819399,10819.399 +24257,2025-03-10T01:54:52.209286-07:00,998.5738525390625,10.832335,10832.335 +24258,2025-03-10T01:55:03.036955-07:00,998.5540771484375,10.827669,10827.669 +24259,2025-03-10T01:55:13.872368-07:00,998.54638671875,10.835413,10835.413 +24260,2025-03-10T01:55:24.695932-07:00,998.592529296875,10.823564,10823.564 +24261,2025-03-10T01:55:35.531460-07:00,998.5650634765625,10.835528,10835.528 +24262,2025-03-10T01:55:46.358351-07:00,998.5717163085938,10.826891,10826.891 +24263,2025-03-10T01:55:57.180302-07:00,998.5650634765625,10.821951,10821.951 +24264,2025-03-10T01:56:08.008932-07:00,998.5890502929688,10.82863,10828.63 +24265,2025-03-10T01:56:18.840282-07:00,998.5560913085938,10.83135,10831.35 +24266,2025-03-10T01:56:29.666957-07:00,998.5717163085938,10.826675,10826.675 +24267,2025-03-10T01:56:40.491740-07:00,998.5650634765625,10.824783,10824.783 +24268,2025-03-10T01:56:51.322953-07:00,998.5967407226562,10.831213,10831.213 +24269,2025-03-10T01:57:02.144986-07:00,998.5890502929688,10.822033,10822.033 +24270,2025-03-10T01:57:12.969274-07:00,998.6154174804688,10.824288,10824.288 +24271,2025-03-10T01:57:23.793949-07:00,998.587646484375,10.824675,10824.675 +24272,2025-03-10T01:57:34.620290-07:00,998.5678100585938,10.826341,10826.341 +24273,2025-03-10T01:57:45.448174-07:00,998.5758056640625,10.827884,10827.884 +24274,2025-03-10T01:57:56.281296-07:00,998.5865478515625,10.833122,10833.122 +24275,2025-03-10T01:58:07.108732-07:00,998.5733642578125,10.827436,10827.436 +24276,2025-03-10T01:58:17.933257-07:00,998.5851440429688,10.824525,10824.525 +24277,2025-03-10T01:58:28.752955-07:00,998.5733642578125,10.819698,10819.698 +24278,2025-03-10T01:58:39.579197-07:00,998.57861328125,10.826242,10826.242 +24279,2025-03-10T01:58:50.401143-07:00,998.5653686523438,10.821946,10821.946 +24280,2025-03-10T01:59:01.225946-07:00,998.5775146484375,10.824803,10824.803 +24281,2025-03-10T01:59:12.055957-07:00,998.611572265625,10.830011,10830.011 +24282,2025-03-10T01:59:22.883171-07:00,998.5684204101562,10.827214,10827.214 +24283,2025-03-10T01:59:33.709260-07:00,998.5604858398438,10.826089,10826.089 +24284,2025-03-10T01:59:44.542058-07:00,998.5527954101562,10.832798,10832.798 +24285,2025-03-10T01:59:55.369268-07:00,998.5396728515625,10.82721,10827.21 +24286,2025-03-10T02:00:06.197955-07:00,998.5670166015625,10.828687,10828.687 +24287,2025-03-10T02:00:17.014031-07:00,998.5407104492188,10.816076,10816.076 +24288,2025-03-10T02:00:27.833313-07:00,998.5250854492188,10.819282,10819.282 +24289,2025-03-10T02:00:38.662099-07:00,998.5184326171875,10.828786,10828.786 +24290,2025-03-10T02:00:49.485206-07:00,998.5239868164062,10.823107,10823.107 +24291,2025-03-10T02:01:00.322273-07:00,998.5239868164062,10.837067,10837.067 +24292,2025-03-10T02:01:11.149528-07:00,998.4951782226562,10.827255,10827.255 +24293,2025-03-10T02:01:21.966204-07:00,998.5267333984375,10.816676,10816.676 +24294,2025-03-10T02:01:32.796628-07:00,998.5281372070312,10.830424,10830.424 +24295,2025-03-10T02:01:43.622203-07:00,998.4607543945312,10.825575,10825.575 +24296,2025-03-10T02:01:54.454238-07:00,998.5059204101562,10.832035,10832.035 +24297,2025-03-10T02:02:05.274948-07:00,998.486083984375,10.82071,10820.71 +24298,2025-03-10T02:02:16.104023-07:00,998.4846801757812,10.829075,10829.075 +24299,2025-03-10T02:02:26.927271-07:00,998.4639282226562,10.823248,10823.248 +24300,2025-03-10T02:02:37.752951-07:00,998.483642578125,10.82568,10825.68 +24301,2025-03-10T02:02:48.573471-07:00,998.5111083984375,10.82052,10820.52 +24302,2025-03-10T02:02:59.405167-07:00,998.4693603515625,10.831696,10831.696 +24303,2025-03-10T02:03:10.228802-07:00,998.4760131835938,10.823635,10823.635 +24304,2025-03-10T02:03:21.052164-07:00,998.4812622070312,10.823362,10823.362 +24305,2025-03-10T02:03:31.881002-07:00,998.4339599609375,10.828838,10828.838 +24306,2025-03-10T02:03:42.706322-07:00,998.44580078125,10.82532,10825.32 +24307,2025-03-10T02:03:53.532953-07:00,998.4523315429688,10.826631,10826.631 +24308,2025-03-10T02:04:04.366042-07:00,998.4367065429688,10.833089,10833.089 +24309,2025-03-10T02:04:15.186252-07:00,998.4523315429688,10.82021,10820.21 +24310,2025-03-10T02:04:26.017329-07:00,998.4696655273438,10.831077,10831.077 +24311,2025-03-10T02:04:36.838956-07:00,998.45654296875,10.821627,10821.627 +24312,2025-03-10T02:04:47.657552-07:00,998.449951171875,10.818596,10818.596 +24313,2025-03-10T02:04:58.478284-07:00,998.4489135742188,10.820732,10820.732 +24314,2025-03-10T02:05:09.301274-07:00,998.463134765625,10.82299,10822.99 +24315,2025-03-10T02:05:20.118994-07:00,998.4685668945312,10.81772,10817.72 +24316,2025-03-10T02:05:30.946092-07:00,998.44091796875,10.827098,10827.098 +24317,2025-03-10T02:05:41.766955-07:00,998.4210815429688,10.820863,10820.863 +24318,2025-03-10T02:05:52.611671-07:00,998.4606323242188,10.844716,10844.716 +24319,2025-03-10T02:06:03.442412-07:00,998.41455078125,10.830741,10830.741 +24320,2025-03-10T02:06:14.267360-07:00,998.4464111328125,10.824948,10824.948 +24321,2025-03-10T02:06:25.082618-07:00,998.4068603515625,10.815258,10815.258 +24322,2025-03-10T02:06:35.903375-07:00,998.4464111328125,10.820757,10820.757 +24323,2025-03-10T02:06:46.725345-07:00,998.4502563476562,10.82197,10821.97 +24324,2025-03-10T02:06:57.553371-07:00,998.46484375,10.828026,10828.026 +24325,2025-03-10T02:07:08.375421-07:00,998.441162109375,10.82205,10822.05 +24326,2025-03-10T02:07:19.199616-07:00,998.4634399414062,10.824195,10824.195 +24327,2025-03-10T02:07:30.026441-07:00,998.441162109375,10.826825,10826.825 +24328,2025-03-10T02:07:40.858745-07:00,998.4464111328125,10.832304,10832.304 +24329,2025-03-10T02:07:51.674640-07:00,998.467529296875,10.815895,10815.895 +24330,2025-03-10T02:08:02.502411-07:00,998.4478149414062,10.827771,10827.771 +24331,2025-03-10T02:08:13.328420-07:00,998.4265747070312,10.826009,10826.009 +24332,2025-03-10T02:08:24.153365-07:00,998.4188842773438,10.824945,10824.945 +24333,2025-03-10T02:08:34.978424-07:00,998.441162109375,10.825059,10825.059 +24334,2025-03-10T02:08:45.802369-07:00,998.467529296875,10.823945,10823.945 +24335,2025-03-10T02:08:56.620348-07:00,998.467529296875,10.817979,10817.979 +24336,2025-03-10T02:09:07.443738-07:00,998.45849609375,10.82339,10823.39 +24337,2025-03-10T02:09:18.272365-07:00,998.436279296875,10.828627,10828.627 +24338,2025-03-10T02:09:29.098669-07:00,998.478271484375,10.826304,10826.304 +24339,2025-03-10T02:09:39.918090-07:00,998.4373168945312,10.819421,10819.421 +24340,2025-03-10T02:09:50.748796-07:00,998.450439453125,10.830706,10830.706 +24341,2025-03-10T02:10:01.578360-07:00,998.450439453125,10.829564,10829.564 +24342,2025-03-10T02:10:12.401402-07:00,998.4351806640625,10.823042,10823.042 +24343,2025-03-10T02:10:23.236601-07:00,998.449462890625,10.835199,10835.199 +24344,2025-03-10T02:10:34.063412-07:00,998.41650390625,10.826811,10826.811 +24345,2025-03-10T02:10:44.883889-07:00,998.4220581054688,10.820477,10820.477 +24346,2025-03-10T02:10:55.711586-07:00,998.3931884765625,10.827697,10827.697 +24347,2025-03-10T02:11:06.544362-07:00,998.4074096679688,10.832776,10832.776 +24348,2025-03-10T02:11:17.368368-07:00,998.3786010742188,10.824006,10824.006 +24349,2025-03-10T02:11:28.188702-07:00,998.3931884765625,10.820334,10820.334 +24350,2025-03-10T02:11:39.013589-07:00,998.3734130859375,10.824887,10824.887 +24351,2025-03-10T02:11:49.848942-07:00,998.3734130859375,10.835353,10835.353 +24352,2025-03-10T02:12:00.673362-07:00,998.3511962890625,10.82442,10824.42 +24353,2025-03-10T02:12:11.504708-07:00,998.3720092773438,10.831346,10831.346 +24354,2025-03-10T02:12:22.331673-07:00,998.349853515625,10.826965,10826.965 +24355,2025-03-10T02:12:33.156298-07:00,998.349853515625,10.824625,10824.625 +24356,2025-03-10T02:12:43.987940-07:00,998.349853515625,10.831642,10831.642 +24357,2025-03-10T02:12:54.809417-07:00,998.3289184570312,10.821477,10821.477 +24358,2025-03-10T02:13:05.629697-07:00,998.3563842773438,10.82028,10820.28 +24359,2025-03-10T02:13:16.460605-07:00,998.349853515625,10.830908,10830.908 +24360,2025-03-10T02:13:27.280706-07:00,998.3289184570312,10.820101,10820.101 +24361,2025-03-10T02:13:38.101396-07:00,998.3001708984375,10.82069,10820.69 +24362,2025-03-10T02:13:48.918405-07:00,998.3473510742188,10.817009,10817.009 +24363,2025-03-10T02:13:59.753369-07:00,998.3157958984375,10.834964,10834.964 +24364,2025-03-10T02:14:10.572482-07:00,998.3067016601562,10.819113,10819.113 +24365,2025-03-10T02:14:21.405893-07:00,998.2987670898438,10.833411,10833.411 +24366,2025-03-10T02:14:32.224651-07:00,998.2962646484375,10.818758,10818.758 +24367,2025-03-10T02:14:43.052351-07:00,998.3118896484375,10.8277,10827.7 +24368,2025-03-10T02:14:53.873598-07:00,998.2910766601562,10.821247,10821.247 +24369,2025-03-10T02:15:04.703635-07:00,998.3118896484375,10.830037,10830.037 +24370,2025-03-10T02:15:15.526251-07:00,998.2976684570312,10.822616,10822.616 +24371,2025-03-10T02:15:26.360688-07:00,998.3029174804688,10.834437,10834.437 +24372,2025-03-10T02:15:37.189358-07:00,998.3029174804688,10.82867,10828.67 +24373,2025-03-10T02:15:48.010167-07:00,998.2896728515625,10.820809,10820.809 +24374,2025-03-10T02:15:58.833668-07:00,998.2754516601562,10.823501,10823.501 +24375,2025-03-10T02:16:09.665669-07:00,998.2896728515625,10.832001,10832.001 +24376,2025-03-10T02:16:20.495804-07:00,998.3018188476562,10.830135,10830.135 +24377,2025-03-10T02:16:31.312461-07:00,998.3018188476562,10.816657,10816.657 +24378,2025-03-10T02:16:42.137588-07:00,998.2861938476562,10.825127,10825.127 +24379,2025-03-10T02:16:52.950723-07:00,998.2847900390625,10.813135,10813.135 +24380,2025-03-10T02:17:03.773358-07:00,998.2442016601562,10.822635,10822.635 +24381,2025-03-10T02:17:14.596367-07:00,998.2704467773438,10.823009,10823.009 +24382,2025-03-10T02:17:25.425690-07:00,998.2548217773438,10.829323,10829.323 +24383,2025-03-10T02:17:36.240803-07:00,998.26806640625,10.815113,10815.113 +24384,2025-03-10T02:17:47.068767-07:00,998.2736206054688,10.827964,10827.964 +24385,2025-03-10T02:17:57.891565-07:00,998.25244140625,10.822798,10822.798 +24386,2025-03-10T02:18:08.700438-07:00,998.2579956054688,10.808873,10808.873 +24387,2025-03-10T02:18:19.520399-07:00,998.2645263671875,10.819961,10819.961 +24388,2025-03-10T02:18:30.339793-07:00,998.2711181640625,10.819394,10819.394 +24389,2025-03-10T02:18:41.161364-07:00,998.2787475585938,10.821571,10821.571 +24390,2025-03-10T02:18:51.988932-07:00,998.256591796875,10.827568,10827.568 +24391,2025-03-10T02:19:02.814735-07:00,998.2711181640625,10.825803,10825.803 +24392,2025-03-10T02:19:13.631353-07:00,998.2631225585938,10.816618,10816.618 +24393,2025-03-10T02:19:24.447702-07:00,998.256591796875,10.816349,10816.349 +24394,2025-03-10T02:19:35.264785-07:00,998.2606811523438,10.817083,10817.083 +24395,2025-03-10T02:19:46.090388-07:00,998.2540893554688,10.825603,10825.603 +24396,2025-03-10T02:19:56.904394-07:00,998.2595825195312,10.814006,10814.006 +24397,2025-03-10T02:20:07.731362-07:00,998.2516479492188,10.826968,10826.968 +24398,2025-03-10T02:20:18.547515-07:00,998.2595825195312,10.816153,10816.153 +24399,2025-03-10T02:20:29.370710-07:00,998.21875,10.823195,10823.195 +24400,2025-03-10T02:20:40.192372-07:00,998.2449951171875,10.821662,10821.662 +24401,2025-03-10T02:20:51.004391-07:00,998.2349243164062,10.812019,10812.019 +24402,2025-03-10T02:21:01.833735-07:00,998.2557983398438,10.829344,10829.344 +24403,2025-03-10T02:21:12.653362-07:00,998.2425537109375,10.819627,10819.627 +24404,2025-03-10T02:21:23.476357-07:00,998.2415771484375,10.822995,10822.995 +24405,2025-03-10T02:21:34.296958-07:00,998.2217407226562,10.820601,10820.601 +24406,2025-03-10T02:21:45.120855-07:00,998.2203369140625,10.823897,10823.897 +24407,2025-03-10T02:21:55.938349-07:00,998.2349243164062,10.817494,10817.494 +24408,2025-03-10T02:22:06.755692-07:00,998.2269287109375,10.817343,10817.343 +24409,2025-03-10T02:22:17.576606-07:00,998.225830078125,10.820914,10820.914 +24410,2025-03-10T02:22:28.392506-07:00,998.1915893554688,10.8159,10815.9 +24411,2025-03-10T02:22:39.212224-07:00,998.197021484375,10.819718,10819.718 +24412,2025-03-10T02:22:50.039653-07:00,998.2310791015625,10.827429,10827.429 +24413,2025-03-10T02:23:00.859367-07:00,998.197021484375,10.819714,10819.714 +24414,2025-03-10T02:23:11.668424-07:00,998.1627197265625,10.809057,10809.057 +24415,2025-03-10T02:23:22.490726-07:00,998.1824951171875,10.822302,10822.302 +24416,2025-03-10T02:23:33.319367-07:00,998.1956176757812,10.828641,10828.641 +24417,2025-03-10T02:23:44.141652-07:00,998.1802978515625,10.822285,10822.285 +24418,2025-03-10T02:23:54.954683-07:00,998.1868896484375,10.813031,10813.031 +24419,2025-03-10T02:24:05.776354-07:00,998.1712646484375,10.821671,10821.671 +24420,2025-03-10T02:24:16.589757-07:00,998.1448974609375,10.813403,10813.403 +24421,2025-03-10T02:24:27.407692-07:00,998.1712646484375,10.817935,10817.935 +24422,2025-03-10T02:24:38.224362-07:00,998.1868896484375,10.81667,10816.67 +24423,2025-03-10T02:24:49.040348-07:00,998.169921875,10.815986,10815.986 +24424,2025-03-10T02:24:59.856369-07:00,998.1779174804688,10.816021,10816.021 +24425,2025-03-10T02:25:10.671704-07:00,998.1688232421875,10.815335,10815.335 +24426,2025-03-10T02:25:21.497036-07:00,998.1621704101562,10.825332,10825.332 +24427,2025-03-10T02:25:32.310343-07:00,998.16748046875,10.813307,10813.307 +24428,2025-03-10T02:25:43.132671-07:00,998.1556396484375,10.822328,10822.328 +24429,2025-03-10T02:25:53.948607-07:00,998.108154296875,10.815936,10815.936 +24430,2025-03-10T02:26:04.770346-07:00,998.160888671875,10.821739,10821.739 +24431,2025-03-10T02:26:15.593675-07:00,998.145263671875,10.823329,10823.329 +24432,2025-03-10T02:26:26.404656-07:00,998.1386108398438,10.810981,10810.981 +24433,2025-03-10T02:26:37.222370-07:00,998.1112670898438,10.817714,10817.714 +24434,2025-03-10T02:26:48.048277-07:00,998.1243896484375,10.825907,10825.907 +24435,2025-03-10T02:26:58.870366-07:00,998.1032104492188,10.822089,10822.089 +24436,2025-03-10T02:27:09.682369-07:00,998.1163940429688,10.812003,10812.003 +24437,2025-03-10T02:27:20.504614-07:00,998.1243896484375,10.822245,10822.245 +24438,2025-03-10T02:27:31.319697-07:00,998.10986328125,10.815083,10815.083 +24439,2025-03-10T02:27:42.135533-07:00,998.09423828125,10.815836,10815.836 +24440,2025-03-10T02:27:52.960702-07:00,998.0914306640625,10.825169,10825.169 +24441,2025-03-10T02:28:03.775560-07:00,998.0955200195312,10.814858,10814.858 +24442,2025-03-10T02:28:14.594468-07:00,998.0875854492188,10.818908,10818.908 +24443,2025-03-10T02:28:25.413344-07:00,998.0996704101562,10.818876,10818.876 +24444,2025-03-10T02:28:36.240418-07:00,998.0809326171875,10.827074,10827.074 +24445,2025-03-10T02:28:47.053632-07:00,998.0931396484375,10.813214,10813.214 +24446,2025-03-10T02:28:57.874700-07:00,998.0678100585938,10.821068,10821.068 +24447,2025-03-10T02:29:08.696155-07:00,998.0653076171875,10.821455,10821.455 +24448,2025-03-10T02:29:19.503639-07:00,998.0784912109375,10.807484,10807.484 +24449,2025-03-10T02:29:30.332371-07:00,998.0445556640625,10.828732,10828.732 +24450,2025-03-10T02:29:41.143365-07:00,998.0653076171875,10.810994,10810.994 +24451,2025-03-10T02:29:51.964734-07:00,998.0708618164062,10.821369,10821.369 +24452,2025-03-10T02:30:02.786370-07:00,998.0562744140625,10.821636,10821.636 +24453,2025-03-10T02:30:13.599524-07:00,998.0576782226562,10.813154,10813.154 +24454,2025-03-10T02:30:24.423122-07:00,998.0445556640625,10.823598,10823.598 +24455,2025-03-10T02:30:35.242520-07:00,998.0167236328125,10.819398,10819.398 +24456,2025-03-10T02:30:46.060522-07:00,998.0340576171875,10.818002,10818.002 +24457,2025-03-10T02:30:56.883272-07:00,998.0264282226562,10.82275,10822.75 +24458,2025-03-10T02:31:07.709625-07:00,998.0209350585938,10.826353,10826.353 +24459,2025-03-10T02:31:18.520592-07:00,998.0209350585938,10.810967,10810.967 +24460,2025-03-10T02:31:29.344940-07:00,998.032958984375,10.824348,10824.348 +24461,2025-03-10T02:31:40.164673-07:00,998.0275268554688,10.819733,10819.733 +24462,2025-03-10T02:31:50.974361-07:00,998.0275268554688,10.809688,10809.688 +24463,2025-03-10T02:32:01.797448-07:00,998.032958984375,10.823087,10823.087 +24464,2025-03-10T02:32:12.623524-07:00,998.0264282226562,10.826076,10826.076 +24465,2025-03-10T02:32:23.434981-07:00,997.9923706054688,10.811457,10811.457 +24466,2025-03-10T02:32:34.258384-07:00,998.0,10.823403,10823.403 +24467,2025-03-10T02:32:45.080776-07:00,997.977783203125,10.822392,10822.392 +24468,2025-03-10T02:32:55.899348-07:00,997.9580688476562,10.818572,10818.572 +24469,2025-03-10T02:33:06.720417-07:00,998.01220703125,10.821069,10821.069 +24470,2025-03-10T02:33:17.536447-07:00,997.977783203125,10.81603,10816.03 +24471,2025-03-10T02:33:28.357971-07:00,998.0318603515625,10.821524,10821.524 +24472,2025-03-10T02:33:39.183398-07:00,998.0142822265625,10.825427,10825.427 +24473,2025-03-10T02:33:49.996669-07:00,998.0156860351562,10.813271,10813.271 +24474,2025-03-10T02:34:00.819363-07:00,998.0275268554688,10.822694,10822.694 +24475,2025-03-10T02:34:11.643406-07:00,997.9959106445312,10.824043,10824.043 +24476,2025-03-10T02:34:22.469797-07:00,997.9868774414062,10.826391,10826.391 +24477,2025-03-10T02:34:33.285622-07:00,997.95947265625,10.815825,10815.825 +24478,2025-03-10T02:34:44.110926-07:00,998.0233764648438,10.825304,10825.304 +24479,2025-03-10T02:34:54.932741-07:00,997.9879760742188,10.821815,10821.815 +24480,2025-03-10T02:35:05.753815-07:00,997.9813842773438,10.821074,10821.074 +24481,2025-03-10T02:35:16.567412-07:00,997.993408203125,10.813597,10813.597 +24482,2025-03-10T02:35:27.381047-07:00,997.9945068359375,10.813635,10813.635 +24483,2025-03-10T02:35:38.193511-07:00,997.993408203125,10.812464,10812.464 +24484,2025-03-10T02:35:49.009349-07:00,997.9879760742188,10.815838,10815.838 +24485,2025-03-10T02:35:59.828604-07:00,997.9802856445312,10.819255,10819.255 +24486,2025-03-10T02:36:10.644671-07:00,997.9473266601562,10.816067,10816.067 +24487,2025-03-10T02:36:21.464990-07:00,997.9813842773438,10.820319,10820.319 +24488,2025-03-10T02:36:32.284549-07:00,997.9802856445312,10.819559,10819.559 +24489,2025-03-10T02:36:43.100076-07:00,997.9945068359375,10.815527,10815.527 +24490,2025-03-10T02:36:53.908525-07:00,997.979248046875,10.808449,10808.449 +24491,2025-03-10T02:37:04.729486-07:00,997.9660034179688,10.820961,10820.961 +24492,2025-03-10T02:37:15.539519-07:00,997.9857788085938,10.810033,10810.033 +24493,2025-03-10T02:37:26.361208-07:00,997.97265625,10.821689,10821.689 +24494,2025-03-10T02:37:37.172640-07:00,997.97265625,10.811432,10811.432 +24495,2025-03-10T02:37:47.987436-07:00,997.9712524414062,10.814796,10814.796 +24496,2025-03-10T02:37:58.807367-07:00,997.95703125,10.819931,10819.931 +24497,2025-03-10T02:38:09.627755-07:00,997.94482421875,10.820388,10820.388 +24498,2025-03-10T02:38:20.450412-07:00,997.9371948242188,10.822657,10822.657 +24499,2025-03-10T02:38:31.273376-07:00,997.9514770507812,10.822964,10822.964 +24500,2025-03-10T02:38:42.082821-07:00,997.9503784179688,10.809445,10809.445 +24501,2025-03-10T02:38:52.909396-07:00,997.9767456054688,10.826575,10826.575 +24502,2025-03-10T02:39:03.722366-07:00,997.9556274414062,10.81297,10812.97 +24503,2025-03-10T02:39:14.545002-07:00,997.92919921875,10.822636,10822.636 +24504,2025-03-10T02:39:25.371574-07:00,997.94140625,10.826572,10826.572 +24505,2025-03-10T02:39:36.190359-07:00,997.953125,10.818785,10818.785 +24506,2025-03-10T02:39:47.012727-07:00,997.9347534179688,10.822368,10822.368 +24507,2025-03-10T02:39:57.832365-07:00,997.932373046875,10.819638,10819.638 +24508,2025-03-10T02:40:08.644373-07:00,997.959716796875,10.812008,10812.008 +24509,2025-03-10T02:40:19.464460-07:00,997.9389038085938,10.820087,10820.087 +24510,2025-03-10T02:40:30.282275-07:00,997.9389038085938,10.817815,10817.815 +24511,2025-03-10T02:40:41.098371-07:00,997.946533203125,10.816096,10816.096 +24512,2025-03-10T02:40:51.926689-07:00,997.9520263671875,10.828318,10828.318 +24513,2025-03-10T02:41:02.745801-07:00,997.96630859375,10.819112,10819.112 +24514,2025-03-10T02:41:13.564361-07:00,997.9506225585938,10.81856,10818.56 +24515,2025-03-10T02:41:24.386652-07:00,997.9652099609375,10.822291,10822.291 +24516,2025-03-10T02:41:35.202697-07:00,997.9901733398438,10.816045,10816.045 +24517,2025-03-10T02:41:46.024361-07:00,997.9901733398438,10.821664,10821.664 +24518,2025-03-10T02:41:56.850626-07:00,997.9639282226562,10.826265,10826.265 +24519,2025-03-10T02:42:07.669647-07:00,997.9759521484375,10.819021,10819.021 +24520,2025-03-10T02:42:18.490553-07:00,997.928466796875,10.820906,10820.906 +24521,2025-03-10T02:42:29.315755-07:00,997.928466796875,10.825202,10825.202 +24522,2025-03-10T02:42:40.146363-07:00,997.921875,10.830608,10830.608 +24523,2025-03-10T02:42:50.964420-07:00,997.9364013671875,10.818057,10818.057 +24524,2025-03-10T02:43:01.794564-07:00,997.921875,10.830144,10830.144 +24525,2025-03-10T02:43:12.617375-07:00,997.921875,10.822811,10822.811 +24526,2025-03-10T02:43:23.435155-07:00,997.9349975585938,10.81778,10817.78 +24527,2025-03-10T02:43:34.254346-07:00,997.915283203125,10.819191,10819.191 +24528,2025-03-10T02:43:45.080423-07:00,997.921875,10.826077,10826.077 +24529,2025-03-10T02:43:55.895414-07:00,997.9364013671875,10.814991,10814.991 +24530,2025-03-10T02:44:06.715963-07:00,997.9142456054688,10.820549,10820.549 +24531,2025-03-10T02:44:17.536677-07:00,997.902099609375,10.820714,10820.714 +24532,2025-03-10T02:44:28.358161-07:00,997.9010009765625,10.821484,10821.484 +24533,2025-03-10T02:44:39.179406-07:00,997.8798217773438,10.821245,10821.245 +24534,2025-03-10T02:44:49.997365-07:00,997.9207763671875,10.817959,10817.959 +24535,2025-03-10T02:45:00.805367-07:00,997.886474609375,10.808002,10808.002 +24536,2025-03-10T02:45:11.624684-07:00,997.916748046875,10.819317,10819.317 +24537,2025-03-10T02:45:22.450369-07:00,997.8878173828125,10.825685,10825.685 +24538,2025-03-10T02:45:33.267510-07:00,997.9087524414062,10.817141,10817.141 +24539,2025-03-10T02:45:44.075738-07:00,997.9142456054688,10.808228,10808.228 +24540,2025-03-10T02:45:54.898157-07:00,997.886474609375,10.822419,10822.419 +24541,2025-03-10T02:46:05.711280-07:00,997.886474609375,10.813123,10813.123 +24542,2025-03-10T02:46:16.532605-07:00,997.873291015625,10.821325,10821.325 +24543,2025-03-10T02:46:27.346899-07:00,997.8641967773438,10.814294,10814.294 +24544,2025-03-10T02:46:38.170426-07:00,997.87744140625,10.823527,10823.527 +24545,2025-03-10T02:46:48.985613-07:00,997.8895263671875,10.815187,10815.187 +24546,2025-03-10T02:46:59.807913-07:00,997.8721923828125,10.8223,10822.3 +24547,2025-03-10T02:47:10.619637-07:00,997.8367919921875,10.811724,10811.724 +24548,2025-03-10T02:47:21.444184-07:00,997.8630981445312,10.824547,10824.547 +24549,2025-03-10T02:47:32.258544-07:00,997.8485717773438,10.81436,10814.36 +24550,2025-03-10T02:47:43.077688-07:00,997.8697509765625,10.819144,10819.144 +24551,2025-03-10T02:47:53.897028-07:00,997.83544921875,10.81934,10819.34 +24552,2025-03-10T02:48:04.713348-07:00,997.881591796875,10.81632,10816.32 +24553,2025-03-10T02:48:15.538805-07:00,997.86181640625,10.825457,10825.457 +24554,2025-03-10T02:48:26.346716-07:00,997.8540649414062,10.807911,10807.911 +24555,2025-03-10T02:48:37.165421-07:00,997.8527221679688,10.818705,10818.705 +24556,2025-03-10T02:48:47.982370-07:00,997.8870239257812,10.816949,10816.949 +24557,2025-03-10T02:48:58.808712-07:00,997.859375,10.826342,10826.342 +24558,2025-03-10T02:49:09.624370-07:00,997.8516235351562,10.815658,10815.658 +24559,2025-03-10T02:49:20.433411-07:00,997.8845825195312,10.809041,10809.041 +24560,2025-03-10T02:49:31.251583-07:00,997.8703002929688,10.818172,10818.172 +24561,2025-03-10T02:49:42.076360-07:00,997.86376953125,10.824777,10824.777 +24562,2025-03-10T02:49:52.888810-07:00,997.8492431640625,10.81245,10812.45 +24563,2025-03-10T02:50:03.707575-07:00,997.8467407226562,10.818765,10818.765 +24564,2025-03-10T02:50:14.518926-07:00,997.8467407226562,10.811351,10811.351 +24565,2025-03-10T02:50:25.338700-07:00,997.8203735351562,10.819774,10819.774 +24566,2025-03-10T02:50:36.149048-07:00,997.8401489257812,10.810348,10810.348 +24567,2025-03-10T02:50:46.965421-07:00,997.8005981445312,10.816373,10816.373 +24568,2025-03-10T02:50:57.783496-07:00,997.8046875,10.818075,10818.075 +24569,2025-03-10T02:51:08.596669-07:00,997.7904663085938,10.813173,10813.173 +24570,2025-03-10T02:51:19.408824-07:00,997.8046875,10.812155,10812.155 +24571,2025-03-10T02:51:30.219990-07:00,997.82861328125,10.811166,10811.166 +24572,2025-03-10T02:51:41.040370-07:00,997.7904663085938,10.82038,10820.38 +24573,2025-03-10T02:51:51.854416-07:00,997.835205078125,10.814046,10814.046 +24574,2025-03-10T02:52:02.669377-07:00,997.8473510742188,10.814961,10814.961 +24575,2025-03-10T02:52:13.494361-07:00,997.8341674804688,10.824984,10824.984 +24576,2025-03-10T02:52:24.303362-07:00,997.8275146484375,10.809001,10809.001 +24577,2025-03-10T02:52:35.125732-07:00,997.845947265625,10.82237,10822.37 +24578,2025-03-10T02:52:45.944400-07:00,997.8368530273438,10.818668,10818.668 +24579,2025-03-10T02:52:56.759414-07:00,997.8448486328125,10.815014,10815.014 +24580,2025-03-10T02:53:07.572765-07:00,997.8499755859375,10.813351,10813.351 +24581,2025-03-10T02:53:18.394023-07:00,997.814697265625,10.821258,10821.258 +24582,2025-03-10T02:53:29.210617-07:00,997.8343505859375,10.816594,10816.594 +24583,2025-03-10T02:53:40.018360-07:00,997.8475952148438,10.807743,10807.743 +24584,2025-03-10T02:53:50.838041-07:00,997.833251953125,10.819681,10819.681 +24585,2025-03-10T02:54:01.647970-07:00,997.8319702148438,10.809929,10809.929 +24586,2025-03-10T02:54:12.470042-07:00,997.833251953125,10.822072,10822.072 +24587,2025-03-10T02:54:23.283365-07:00,997.82421875,10.813323,10813.323 +24588,2025-03-10T02:54:34.101860-07:00,997.8385009765625,10.818495,10818.495 +24589,2025-03-10T02:54:44.912637-07:00,997.8780517578125,10.810777,10810.777 +24590,2025-03-10T02:54:55.731422-07:00,997.8284301757812,10.818785,10818.785 +24591,2025-03-10T02:55:06.541600-07:00,997.8110961914062,10.810178,10810.178 +24592,2025-03-10T02:55:17.350507-07:00,997.83642578125,10.808907,10808.907 +24593,2025-03-10T02:55:28.163371-07:00,997.8152465820312,10.812864,10812.864 +24594,2025-03-10T02:55:38.986134-07:00,997.8117065429688,10.822763,10822.763 +24595,2025-03-10T02:55:49.794585-07:00,997.8273315429688,10.808451,10808.451 +24596,2025-03-10T02:56:00.608369-07:00,997.80615234375,10.813784,10813.784 +24597,2025-03-10T02:56:11.425362-07:00,997.8234252929688,10.816993,10816.993 +24598,2025-03-10T02:56:22.248686-07:00,997.81689453125,10.823324,10823.324 +24599,2025-03-10T02:56:33.059888-07:00,997.8512573242188,10.811202,10811.202 +24600,2025-03-10T02:56:43.884435-07:00,997.8487548828125,10.824547,10824.547 +24601,2025-03-10T02:56:54.704786-07:00,997.8289794921875,10.820351,10820.351 +24602,2025-03-10T02:57:05.525421-07:00,997.8199462890625,10.820635,10820.635 +24603,2025-03-10T02:57:16.348252-07:00,997.821044921875,10.822831,10822.831 +24604,2025-03-10T02:57:27.169652-07:00,997.8251342773438,10.8214,10821.4 +24605,2025-03-10T02:57:37.986504-07:00,997.7935791015625,10.816852,10816.852 +24606,2025-03-10T02:57:48.810368-07:00,997.8251342773438,10.823864,10823.864 +24607,2025-03-10T02:57:59.638595-07:00,997.7976684570312,10.828227,10828.227 +24608,2025-03-10T02:58:10.447382-07:00,997.8001708984375,10.808787,10808.787 +24609,2025-03-10T02:58:21.272369-07:00,997.8306274414062,10.824987,10824.987 +24610,2025-03-10T02:58:32.082905-07:00,997.8226318359375,10.810536,10810.536 +24611,2025-03-10T02:58:42.909027-07:00,997.7820434570312,10.826122,10826.122 +24612,2025-03-10T02:58:53.721369-07:00,997.75439453125,10.812342,10812.342 +24613,2025-03-10T02:59:04.542521-07:00,997.7689208984375,10.821152,10821.152 +24614,2025-03-10T02:59:15.355924-07:00,997.77294921875,10.813403,10813.403 +24615,2025-03-10T02:59:26.173348-07:00,997.7796020507812,10.817424,10817.424 +24616,2025-03-10T02:59:36.993365-07:00,997.7715454101562,10.820017,10820.017 +24617,2025-03-10T02:59:47.807436-07:00,997.7598266601562,10.814071,10814.071 +24618,2025-03-10T02:59:58.628652-07:00,997.763916015625,10.821216,10821.216 +24619,2025-03-10T03:00:09.437430-07:00,997.7781982421875,10.808778,10808.778 +24620,2025-03-10T03:00:20.259509-07:00,997.7559204101562,10.822079,10822.079 +24621,2025-03-10T03:00:31.077981-07:00,997.748291015625,10.818472,10818.472 +24622,2025-03-10T03:00:41.903545-07:00,997.7823486328125,10.825564,10825.564 +24623,2025-03-10T03:00:52.729417-07:00,997.7493896484375,10.825872,10825.872 +24624,2025-03-10T03:01:03.543050-07:00,997.732666015625,10.813633,10813.633 +24625,2025-03-10T03:01:14.373500-07:00,997.761474609375,10.83045,10830.45 +24626,2025-03-10T03:01:25.184522-07:00,997.75244140625,10.811022,10811.022 +24627,2025-03-10T03:01:36.004151-07:00,997.765625,10.819629,10819.629 +24628,2025-03-10T03:01:46.830365-07:00,997.7867431640625,10.826214,10826.214 +24629,2025-03-10T03:01:57.644420-07:00,997.7562255859375,10.814055,10814.055 +24630,2025-03-10T03:02:19.286350-07:00,997.7365112304688,21.64193,21641.93 +24631,2025-03-10T03:02:30.094628-07:00,997.7288208007812,10.808278,10808.278 +24632,2025-03-10T03:02:40.909366-07:00,997.7485961914062,10.814738,10814.738 +24633,2025-03-10T03:02:51.730632-07:00,997.7562255859375,10.821266,10821.266 +24634,2025-03-10T03:03:02.541530-07:00,997.7420043945312,10.810898,10810.898 +24635,2025-03-10T03:03:13.353597-07:00,997.752685546875,10.812067,10812.067 +24636,2025-03-10T03:03:24.158365-07:00,997.7734985351562,10.804768,10804.768 +24637,2025-03-10T03:03:34.976727-07:00,997.7578735351562,10.818362,10818.362 +24638,2025-03-10T03:03:45.787361-07:00,997.723876953125,10.810634,10810.634 +24639,2025-03-10T03:03:56.598640-07:00,997.7567749023438,10.811279,10811.279 +24640,2025-03-10T03:04:07.410716-07:00,997.7435913085938,10.812076,10812.076 +24641,2025-03-10T03:04:18.224618-07:00,997.7740478515625,10.813902,10813.902 +24642,2025-03-10T03:04:29.046941-07:00,997.7609252929688,10.822323,10822.323 +24643,2025-03-10T03:04:39.855365-07:00,997.721435546875,10.808424,10808.424 +24644,2025-03-10T03:04:50.668698-07:00,997.7463989257812,10.813333,10813.333 +24645,2025-03-10T03:05:01.483469-07:00,997.7675170898438,10.814771,10814.771 +24646,2025-03-10T03:05:12.303365-07:00,997.7518920898438,10.819896,10819.896 +24647,2025-03-10T03:05:23.119420-07:00,997.7584228515625,10.816055,10816.055 +24648,2025-03-10T03:05:33.938731-07:00,997.7296752929688,10.819311,10819.311 +24649,2025-03-10T03:05:44.685763-07:00,997.75048828125,10.747032,10747.032 +24650,2025-03-10T03:05:55.499761-07:00,997.7296752929688,10.813998,10813.998 +24651,2025-03-10T03:06:06.324053-07:00,997.7584228515625,10.824292,10824.292 +24652,2025-03-10T03:06:17.138172-07:00,997.7493896484375,10.814119,10814.119 +24653,2025-03-10T03:06:27.959018-07:00,997.7601318359375,10.820846,10820.846 +24654,2025-03-10T03:06:38.780541-07:00,997.7468872070312,10.821523,10821.523 +24655,2025-03-10T03:06:49.592997-07:00,997.7271728515625,10.812456,10812.456 +24656,2025-03-10T03:07:00.406961-07:00,997.7402954101562,10.813964,10813.964 +24657,2025-03-10T03:07:11.223771-07:00,997.7468872070312,10.81681,10816.81 +24658,2025-03-10T03:07:22.049055-07:00,997.7323608398438,10.825284,10825.284 +24659,2025-03-10T03:07:32.869935-07:00,997.7379150390625,10.82088,10820.88 +24660,2025-03-10T03:07:43.682766-07:00,997.7323608398438,10.812831,10812.831 +24661,2025-03-10T03:07:54.505522-07:00,997.7235717773438,10.822756,10822.756 +24662,2025-03-10T03:08:05.329768-07:00,997.7301635742188,10.824246,10824.246 +24663,2025-03-10T03:08:16.150763-07:00,997.717041015625,10.820995,10820.995 +24664,2025-03-10T03:08:26.977075-07:00,997.7235717773438,10.826312,10826.312 +24665,2025-03-10T03:08:37.791775-07:00,997.70654296875,10.8147,10814.7 +24666,2025-03-10T03:08:48.616954-07:00,997.734375,10.825179,10825.179 +24667,2025-03-10T03:08:59.432098-07:00,997.7277221679688,10.815144,10815.144 +24668,2025-03-10T03:09:10.249790-07:00,997.72119140625,10.817692,10817.692 +24669,2025-03-10T03:09:21.060789-07:00,997.7277221679688,10.810999,10810.999 +24670,2025-03-10T03:09:31.884511-07:00,997.7329711914062,10.823722,10823.722 +24671,2025-03-10T03:09:42.709084-07:00,997.70654296875,10.824573,10824.573 +24672,2025-03-10T03:09:53.519976-07:00,997.7474975585938,10.810892,10810.892 +24673,2025-03-10T03:10:04.336739-07:00,997.7228393554688,10.816763,10816.763 +24674,2025-03-10T03:10:15.151845-07:00,997.6923217773438,10.815106,10815.106 +24675,2025-03-10T03:10:25.967090-07:00,997.7054443359375,10.815245,10815.245 +24676,2025-03-10T03:10:36.785765-07:00,997.7095947265625,10.818675,10818.675 +24677,2025-03-10T03:10:47.606766-07:00,997.697509765625,10.821001,10821.001 +24678,2025-03-10T03:10:58.424071-07:00,997.681884765625,10.817305,10817.305 +24679,2025-03-10T03:11:09.247870-07:00,997.6766967773438,10.823799,10823.799 +24680,2025-03-10T03:11:20.061823-07:00,997.67529296875,10.813953,10813.953 +24681,2025-03-10T03:11:30.878391-07:00,997.6676635742188,10.816568,10816.568 +24682,2025-03-10T03:11:41.702771-07:00,997.681884765625,10.82438,10824.38 +24683,2025-03-10T03:11:52.515749-07:00,997.6585693359375,10.812978,10812.978 +24684,2025-03-10T03:12:03.338471-07:00,997.6727905273438,10.822722,10822.722 +24685,2025-03-10T03:12:14.142742-07:00,997.708251953125,10.804271,10804.271 +24686,2025-03-10T03:12:24.960828-07:00,997.6716918945312,10.818086,10818.086 +24687,2025-03-10T03:12:35.772951-07:00,997.68603515625,10.812123,10812.123 +24688,2025-03-10T03:12:46.586765-07:00,997.6849365234375,10.813814,10813.814 +24689,2025-03-10T03:12:57.406245-07:00,997.6560668945312,10.81948,10819.48 +24690,2025-03-10T03:13:08.209001-07:00,997.67041015625,10.802756,10802.756 +24691,2025-03-10T03:13:19.029746-07:00,997.6890869140625,10.820745,10820.745 +24692,2025-03-10T03:13:29.844003-07:00,997.6571655273438,10.814257,10814.257 +24693,2025-03-10T03:13:40.653798-07:00,997.6560668945312,10.809795,10809.795 +24694,2025-03-10T03:13:51.473025-07:00,997.6613159179688,10.819227,10819.227 +24695,2025-03-10T03:14:02.292021-07:00,997.6076049804688,10.818996,10818.996 +24696,2025-03-10T03:14:13.106771-07:00,997.6339111328125,10.81475,10814.75 +24697,2025-03-10T03:14:23.926771-07:00,997.6339111328125,10.82,10820.0 +24698,2025-03-10T03:14:34.746707-07:00,997.6390380859375,10.819936,10819.936 +24699,2025-03-10T03:14:45.564764-07:00,997.6248168945312,10.818057,10818.057 +24700,2025-03-10T03:14:56.384744-07:00,997.6522827148438,10.81998,10819.98 +24701,2025-03-10T03:15:07.202029-07:00,997.6445922851562,10.817285,10817.285 +24702,2025-03-10T03:15:18.025755-07:00,997.6339111328125,10.823726,10823.726 +24703,2025-03-10T03:15:28.839761-07:00,997.6456298828125,10.814006,10814.006 +24704,2025-03-10T03:15:39.666054-07:00,997.608154296875,10.826293,10826.293 +24705,2025-03-10T03:15:50.480969-07:00,997.610595703125,10.814915,10814.915 +24706,2025-03-10T03:16:01.288765-07:00,997.622314453125,10.807796,10807.796 +24707,2025-03-10T03:16:12.104771-07:00,997.6698608398438,10.816006,10816.006 +24708,2025-03-10T03:16:22.928567-07:00,997.64111328125,10.823796,10823.796 +24709,2025-03-10T03:16:33.744051-07:00,997.6487426757812,10.815484,10815.484 +24710,2025-03-10T03:16:44.553820-07:00,997.6673583984375,10.809769,10809.769 +24711,2025-03-10T03:16:55.368053-07:00,997.6553344726562,10.814233,10814.233 +24712,2025-03-10T03:17:06.181768-07:00,997.6542358398438,10.813715,10813.715 +24713,2025-03-10T03:17:16.993378-07:00,997.619873046875,10.81161,10811.61 +24714,2025-03-10T03:17:27.806106-07:00,997.6397094726562,10.812728,10812.728 +24715,2025-03-10T03:17:38.626769-07:00,997.619873046875,10.820663,10820.663 +24716,2025-03-10T03:17:49.436744-07:00,997.6188354492188,10.809975,10809.975 +24717,2025-03-10T03:18:00.263017-07:00,997.5965576171875,10.826273,10826.273 +24718,2025-03-10T03:18:11.076952-07:00,997.6386108398438,10.813935,10813.935 +24719,2025-03-10T03:18:21.893764-07:00,997.6229858398438,10.816812,10816.812 +24720,2025-03-10T03:18:32.708274-07:00,997.614990234375,10.81451,10814.51 +24721,2025-03-10T03:18:43.526088-07:00,997.6031494140625,10.817814,10817.814 +24722,2025-03-10T03:18:54.340349-07:00,997.6412353515625,10.814261,10814.261 +24723,2025-03-10T03:19:05.162997-07:00,997.601806640625,10.822648,10822.648 +24724,2025-03-10T03:19:15.971899-07:00,997.6083374023438,10.808902,10808.902 +24725,2025-03-10T03:19:26.791590-07:00,997.5982666015625,10.819691,10819.691 +24726,2025-03-10T03:19:37.603767-07:00,997.6124877929688,10.812177,10812.177 +24727,2025-03-10T03:19:48.424816-07:00,997.599365234375,10.821049,10821.049 +24728,2025-03-10T03:19:59.241742-07:00,997.6190795898438,10.816926,10816.926 +24729,2025-03-10T03:20:10.055088-07:00,997.64013671875,10.813346,10813.346 +24730,2025-03-10T03:20:20.875014-07:00,997.5916137695312,10.819926,10819.926 +24731,2025-03-10T03:20:31.689764-07:00,997.6190795898438,10.81475,10814.75 +24732,2025-03-10T03:20:42.516279-07:00,997.5927124023438,10.826515,10826.515 +24733,2025-03-10T03:20:53.336800-07:00,997.6034545898438,10.820521,10820.521 +24734,2025-03-10T03:21:04.153041-07:00,997.631103515625,10.816241,10816.241 +24735,2025-03-10T03:21:14.977059-07:00,997.5968627929688,10.824018,10824.018 +24736,2025-03-10T03:21:25.796774-07:00,997.5836791992188,10.819715,10819.715 +24737,2025-03-10T03:21:36.604765-07:00,997.59033203125,10.807991,10807.991 +24738,2025-03-10T03:21:47.426799-07:00,997.5628051757812,10.822034,10822.034 +24739,2025-03-10T03:21:58.242432-07:00,997.5759887695312,10.815633,10815.633 +24740,2025-03-10T03:22:09.062856-07:00,997.59033203125,10.820424,10820.424 +24741,2025-03-10T03:22:19.884769-07:00,997.5680541992188,10.821913,10821.913 +24742,2025-03-10T03:22:30.695673-07:00,997.5745849609375,10.810904,10810.904 +24743,2025-03-10T03:22:41.517772-07:00,997.5680541992188,10.822099,10822.099 +24744,2025-03-10T03:22:52.326011-07:00,997.5812377929688,10.808239,10808.239 +24745,2025-03-10T03:23:03.147039-07:00,997.5736083984375,10.821028,10821.028 +24746,2025-03-10T03:23:13.965108-07:00,997.5589599609375,10.818069,10818.069 +24747,2025-03-10T03:23:24.782331-07:00,997.5669555664062,10.817223,10817.223 +24748,2025-03-10T03:23:35.591768-07:00,997.5603637695312,10.809437,10809.437 +24749,2025-03-10T03:23:46.402919-07:00,997.5392456054688,10.811151,10811.151 +24750,2025-03-10T03:23:57.221106-07:00,997.5589599609375,10.818187,10818.187 +24751,2025-03-10T03:24:08.030532-07:00,997.5457763671875,10.809426,10809.426 +24752,2025-03-10T03:24:18.843125-07:00,997.5381469726562,10.812593,10812.593 +24753,2025-03-10T03:24:29.663771-07:00,997.557861328125,10.820646,10820.646 +24754,2025-03-10T03:24:40.474489-07:00,997.5513305664062,10.810718,10810.718 +24755,2025-03-10T03:24:51.298642-07:00,997.501708984375,10.824153,10824.153 +24756,2025-03-10T03:25:02.120762-07:00,997.5411987304688,10.82212,10822.12 +24757,2025-03-10T03:25:12.929903-07:00,997.5477905273438,10.809141,10809.141 +24758,2025-03-10T03:25:23.751788-07:00,997.5255737304688,10.821885,10821.885 +24759,2025-03-10T03:25:34.568766-07:00,997.5265502929688,10.816978,10816.978 +24760,2025-03-10T03:25:45.382773-07:00,997.5411987304688,10.814007,10814.007 +24761,2025-03-10T03:25:56.204100-07:00,997.5504760742188,10.821327,10821.327 +24762,2025-03-10T03:26:07.023364-07:00,997.508544921875,10.819264,10819.264 +24763,2025-03-10T03:26:17.837968-07:00,997.5282592773438,10.814604,10814.604 +24764,2025-03-10T03:26:28.648771-07:00,997.5296630859375,10.810803,10810.803 +24765,2025-03-10T03:26:39.474142-07:00,997.5032958984375,10.825371,10825.371 +24766,2025-03-10T03:26:50.298902-07:00,997.524169921875,10.82476,10824.76 +24767,2025-03-10T03:27:01.116369-07:00,997.5074462890625,10.817467,10817.467 +24768,2025-03-10T03:27:11.929175-07:00,997.4927978515625,10.812806,10812.806 +24769,2025-03-10T03:27:22.744211-07:00,997.4969482421875,10.815036,10815.036 +24770,2025-03-10T03:27:33.550406-07:00,997.5323486328125,10.806195,10806.195 +24771,2025-03-10T03:27:44.362114-07:00,997.5036010742188,10.811708,10811.708 +24772,2025-03-10T03:27:55.180765-07:00,997.5101318359375,10.818651,10818.651 +24773,2025-03-10T03:28:05.996824-07:00,997.4959106445312,10.816059,10816.059 +24774,2025-03-10T03:28:16.810383-07:00,997.5076293945312,10.813559,10813.559 +24775,2025-03-10T03:28:27.626939-07:00,997.515625,10.816556,10816.556 +24776,2025-03-10T03:28:38.447897-07:00,997.5010986328125,10.820958,10820.958 +24777,2025-03-10T03:28:49.269660-07:00,997.5025024414062,10.821763,10821.763 +24778,2025-03-10T03:29:00.089758-07:00,997.4868774414062,10.820098,10820.098 +24779,2025-03-10T03:29:10.902019-07:00,997.493408203125,10.812261,10812.261 +24780,2025-03-10T03:29:21.719758-07:00,997.493408203125,10.817739,10817.739 +24781,2025-03-10T03:29:32.537602-07:00,997.4788818359375,10.817844,10817.844 +24782,2025-03-10T03:29:43.349190-07:00,997.4698486328125,10.811588,10811.588 +24783,2025-03-10T03:30:04.980144-07:00,997.462158203125,21.630954,21630.954 +24784,2025-03-10T03:30:15.801793-07:00,997.4631958007812,10.821649,10821.649 +24785,2025-03-10T03:30:26.619746-07:00,997.4763793945312,10.817953,10817.953 +24786,2025-03-10T03:30:37.436089-07:00,997.4818725585938,10.816343,10816.343 +24787,2025-03-10T03:30:48.253976-07:00,997.462158203125,10.817887,10817.887 +24788,2025-03-10T03:30:59.077248-07:00,997.4728393554688,10.823272,10823.272 +24789,2025-03-10T03:31:09.896981-07:00,997.4464721679688,10.819733,10819.733 +24790,2025-03-10T03:31:20.708767-07:00,997.4541625976562,10.811786,10811.786 +24791,2025-03-10T03:31:31.526772-07:00,997.487060546875,10.818005,10818.005 +24792,2025-03-10T03:31:42.352764-07:00,997.4388427734375,10.825992,10825.992 +24793,2025-03-10T03:31:53.172008-07:00,997.4637451171875,10.819244,10819.244 +24794,2025-03-10T03:32:03.986353-07:00,997.4520263671875,10.814345,10814.345 +24795,2025-03-10T03:32:14.801125-07:00,997.4768676757812,10.814772,10814.772 +24796,2025-03-10T03:32:25.620991-07:00,997.4572143554688,10.819866,10819.866 +24797,2025-03-10T03:32:36.448517-07:00,997.4717407226562,10.827526,10827.526 +24798,2025-03-10T03:32:47.258524-07:00,997.4835205078125,10.810007,10810.007 +24799,2025-03-10T03:32:58.077771-07:00,997.462646484375,10.819247,10819.247 +24800,2025-03-10T03:33:08.903449-07:00,997.4678344726562,10.825678,10825.678 +24801,2025-03-10T03:33:19.714020-07:00,997.4851684570312,10.810571,10810.571 +24802,2025-03-10T03:33:30.532812-07:00,997.4601440429688,10.818792,10818.792 +24803,2025-03-10T03:33:41.342069-07:00,997.458740234375,10.809257,10809.257 +24804,2025-03-10T03:33:52.156767-07:00,997.4324951171875,10.814698,10814.698 +24805,2025-03-10T03:34:02.971820-07:00,997.458740234375,10.815053,10815.053 +24806,2025-03-10T03:34:13.783039-07:00,997.456298828125,10.811219,10811.219 +24807,2025-03-10T03:34:24.601770-07:00,997.4931030273438,10.818731,10818.731 +24808,2025-03-10T03:34:35.420795-07:00,997.458740234375,10.819025,10819.025 +24809,2025-03-10T03:34:46.243075-07:00,997.4774780273438,10.82228,10822.28 +24810,2025-03-10T03:34:57.058025-07:00,997.4851684570312,10.81495,10814.95 +24811,2025-03-10T03:35:07.883406-07:00,997.4785766601562,10.825381,10825.381 +24812,2025-03-10T03:35:18.698009-07:00,997.4906005859375,10.814603,10814.603 +24813,2025-03-10T03:35:29.519008-07:00,997.4695434570312,10.820999,10820.999 +24814,2025-03-10T03:35:40.331772-07:00,997.4971923828125,10.812764,10812.764 +24815,2025-03-10T03:35:51.150010-07:00,997.482666015625,10.818238,10818.238 +24816,2025-03-10T03:36:01.965900-07:00,997.4880981445312,10.81589,10815.89 +24817,2025-03-10T03:36:12.788768-07:00,997.5013427734375,10.822868,10822.868 +24818,2025-03-10T03:36:23.601765-07:00,997.4749755859375,10.812997,10812.997 +24819,2025-03-10T03:36:34.428633-07:00,997.4957885742188,10.826868,10826.868 +24820,2025-03-10T03:36:45.240203-07:00,997.4815673828125,10.81157,10811.57 +24821,2025-03-10T03:36:56.061759-07:00,997.482666015625,10.821556,10821.556 +24822,2025-03-10T03:37:06.881979-07:00,997.4866943359375,10.82022,10820.22 +24823,2025-03-10T03:37:17.693053-07:00,997.4618530273438,10.811074,10811.074 +24824,2025-03-10T03:37:28.513754-07:00,997.46044921875,10.820701,10820.701 +24825,2025-03-10T03:37:39.327106-07:00,997.447265625,10.813352,10813.352 +24826,2025-03-10T03:37:50.149177-07:00,997.4263916015625,10.822071,10822.071 +24827,2025-03-10T03:38:00.973031-07:00,997.451416015625,10.823854,10823.854 +24828,2025-03-10T03:38:11.781769-07:00,997.4461669921875,10.808738,10808.738 +24829,2025-03-10T03:38:22.596758-07:00,997.44482421875,10.814989,10814.989 +24830,2025-03-10T03:38:33.422149-07:00,997.451416015625,10.825391,10825.391 +24831,2025-03-10T03:38:44.236098-07:00,997.4249877929688,10.813949,10813.949 +24832,2025-03-10T03:38:55.039904-07:00,997.4249877929688,10.803806,10803.806 +24833,2025-03-10T03:39:05.855088-07:00,997.4238891601562,10.815184,10815.184 +24834,2025-03-10T03:39:16.676838-07:00,997.4159545898438,10.82175,10821.75 +24835,2025-03-10T03:39:27.488044-07:00,997.40283203125,10.811206,10811.206 +24836,2025-03-10T03:39:38.294792-07:00,997.3897094726562,10.806748,10806.748 +24837,2025-03-10T03:39:49.118001-07:00,997.4215087890625,10.823209,10823.209 +24838,2025-03-10T03:39:59.925008-07:00,997.4503173828125,10.807007,10807.007 +24839,2025-03-10T03:40:10.751052-07:00,997.422607421875,10.826044,10826.044 +24840,2025-03-10T03:40:21.559028-07:00,997.4215087890625,10.807976,10807.976 +24841,2025-03-10T03:40:32.374073-07:00,997.3992309570312,10.815045,10815.045 +24842,2025-03-10T03:40:43.186023-07:00,997.3915405273438,10.81195,10811.95 +24843,2025-03-10T03:40:54.006890-07:00,997.4453125,10.820867,10820.867 +24844,2025-03-10T03:41:04.821071-07:00,997.40478515625,10.814181,10814.181 +24845,2025-03-10T03:41:15.637762-07:00,997.385009765625,10.816691,10816.691 +24846,2025-03-10T03:41:26.455844-07:00,997.3967895507812,10.818082,10818.082 +24847,2025-03-10T03:41:37.271865-07:00,997.4154663085938,10.816021,10816.021 +24848,2025-03-10T03:41:48.088102-07:00,997.4154663085938,10.816237,10816.237 +24849,2025-03-10T03:41:58.893447-07:00,997.4220581054688,10.805345,10805.345 +24850,2025-03-10T03:42:09.712025-07:00,997.408935546875,10.818578,10818.578 +24851,2025-03-10T03:42:20.517814-07:00,997.4337768554688,10.805789,10805.789 +24852,2025-03-10T03:42:31.328017-07:00,997.407470703125,10.810203,10810.203 +24853,2025-03-10T03:42:42.142808-07:00,997.4064331054688,10.814791,10814.791 +24854,2025-03-10T03:42:52.959246-07:00,997.394287109375,10.816438,10816.438 +24855,2025-03-10T03:43:03.768032-07:00,997.394287109375,10.808786,10808.786 +24856,2025-03-10T03:43:14.589272-07:00,997.420654296875,10.82124,10821.24 +24857,2025-03-10T03:43:25.400946-07:00,997.4285888671875,10.811674,10811.674 +24858,2025-03-10T03:43:36.217899-07:00,997.408935546875,10.816953,10816.953 +24859,2025-03-10T03:43:47.030079-07:00,997.4009399414062,10.81218,10812.18 +24860,2025-03-10T03:43:57.848767-07:00,997.3890380859375,10.818688,10818.688 +24861,2025-03-10T03:44:08.666763-07:00,997.4220581054688,10.817996,10817.996 +24862,2025-03-10T03:44:19.474962-07:00,997.3704833984375,10.808199,10808.199 +24863,2025-03-10T03:44:30.291044-07:00,997.36279296875,10.816082,10816.082 +24864,2025-03-10T03:44:41.098150-07:00,997.37451171875,10.807106,10807.106 +24865,2025-03-10T03:44:51.918645-07:00,997.329833984375,10.820495,10820.495 +24866,2025-03-10T03:45:02.733755-07:00,997.36279296875,10.81511,10815.11 +24867,2025-03-10T03:45:13.543769-07:00,997.3194580078125,10.810014,10810.014 +24868,2025-03-10T03:45:24.358359-07:00,997.3259887695312,10.81459,10814.59 +24869,2025-03-10T03:45:35.178013-07:00,997.333984375,10.819654,10819.654 +24870,2025-03-10T03:45:45.995769-07:00,997.3548583984375,10.817756,10817.756 +24871,2025-03-10T03:45:56.804959-07:00,997.32080078125,10.80919,10809.19 +24872,2025-03-10T03:46:07.625168-07:00,997.3406372070312,10.820209,10820.209 +24873,2025-03-10T03:46:18.435809-07:00,997.3194580078125,10.810641,10810.641 +24874,2025-03-10T03:46:29.252762-07:00,997.3325805664062,10.816953,10816.953 +24875,2025-03-10T03:46:40.075989-07:00,997.3194580078125,10.823227,10823.227 +24876,2025-03-10T03:46:50.886333-07:00,997.2920532226562,10.810344,10810.344 +24877,2025-03-10T03:47:01.701746-07:00,997.3128051757812,10.815413,10815.413 +24878,2025-03-10T03:47:12.518774-07:00,997.3169555664062,10.817028,10817.028 +24879,2025-03-10T03:47:23.343073-07:00,997.2906494140625,10.824299,10824.299 +24880,2025-03-10T03:47:44.963911-07:00,997.2971801757812,21.620838,21620.838 +24881,2025-03-10T03:47:55.784762-07:00,997.2960815429688,10.820851,10820.851 +24882,2025-03-10T03:48:04.506188-07:00,997.3367309570312,8.721426,8721.426 +24883,2025-03-10T03:48:06.605477-07:00,997.3367309570312,2.099289,2099.289 +24884,2025-03-10T03:48:17.427032-07:00,997.34326171875,10.821555,10821.555 +24885,2025-03-10T03:48:28.246016-07:00,997.3290405273438,10.818984,10818.984 +24886,2025-03-10T03:48:39.061991-07:00,997.3002319335938,10.815975,10815.975 +24887,2025-03-10T03:48:49.874056-07:00,997.32763671875,10.812065,10812.065 +24888,2025-03-10T03:49:00.701947-07:00,997.3068237304688,10.827891,10827.891 +24889,2025-03-10T03:49:11.515771-07:00,997.298828125,10.813824,10813.824 +24890,2025-03-10T03:49:22.332775-07:00,997.292236328125,10.817004,10817.004 +24891,2025-03-10T03:49:33.156779-07:00,997.3251342773438,10.824004,10824.004 +24892,2025-03-10T03:49:33.156779-07:00,997.3251342773438,0.0,0.0 +24893,2025-03-10T03:49:43.975760-07:00,997.3134155273438,10.818981,10818.981 +24894,2025-03-10T03:49:54.793119-07:00,997.3331298828125,10.817359,10817.359 +24895,2025-03-10T03:50:05.606464-07:00,997.2779541015625,10.813345,10813.345 +24896,2025-03-10T03:50:16.431975-07:00,997.276611328125,10.825511,10825.511 +24897,2025-03-10T03:50:27.248500-07:00,997.3109130859375,10.816525,10816.525 +24898,2025-03-10T03:50:38.076325-07:00,997.3175048828125,10.827825,10827.825 +24899,2025-03-10T03:50:48.884748-07:00,997.302978515625,10.808423,10808.423 +24900,2025-03-10T03:50:59.708183-07:00,997.276611328125,10.823435,10823.435 +24901,2025-03-10T03:51:10.524371-07:00,997.2887573242188,10.816188,10816.188 +24902,2025-03-10T03:51:21.347767-07:00,997.27001953125,10.823396,10823.396 +24903,2025-03-10T03:51:32.163761-07:00,997.283203125,10.815994,10815.994 +24904,2025-03-10T03:51:42.978289-07:00,997.298828125,10.814528,10814.528 +24905,2025-03-10T03:51:53.796960-07:00,997.2557983398438,10.818671,10818.671 +24906,2025-03-10T03:52:04.608269-07:00,997.2492065429688,10.811309,10811.309 +24907,2025-03-10T03:52:15.439325-07:00,997.289794921875,10.831056,10831.056 +24908,2025-03-10T03:52:26.253826-07:00,997.2689208984375,10.814501,10814.501 +24909,2025-03-10T03:52:37.074905-07:00,997.267578125,10.821079,10821.079 +24910,2025-03-10T03:52:47.907030-07:00,997.287353515625,10.832125,10832.125 +24911,2025-03-10T03:52:58.729051-07:00,997.2755737304688,10.822021,10822.021 +24912,2025-03-10T03:53:09.541769-07:00,997.3070068359375,10.812718,10812.718 +24913,2025-03-10T03:53:20.374181-07:00,997.2730712890625,10.832412,10832.412 +24914,2025-03-10T03:53:31.187834-07:00,997.274169921875,10.813653,10813.653 +24915,2025-03-10T03:53:42.006906-07:00,997.2796630859375,10.819072,10819.072 +24916,2025-03-10T03:53:52.825038-07:00,997.2664794921875,10.818132,10818.132 +24917,2025-03-10T03:54:03.648979-07:00,997.287353515625,10.823941,10823.941 +24918,2025-03-10T03:54:14.472203-07:00,997.2730712890625,10.823224,10823.224 +24919,2025-03-10T03:54:25.293132-07:00,997.258544921875,10.820929,10820.929 +24920,2025-03-10T03:54:36.113763-07:00,997.2453002929688,10.820631,10820.631 +24921,2025-03-10T03:54:46.935837-07:00,997.2993774414062,10.822074,10822.074 +24922,2025-03-10T03:54:57.756354-07:00,997.258544921875,10.820517,10820.517 +24923,2025-03-10T03:55:08.570765-07:00,997.2628784179688,10.814411,10814.411 +24924,2025-03-10T03:55:19.391812-07:00,997.296875,10.821047,10821.047 +24925,2025-03-10T03:55:30.216140-07:00,997.249755859375,10.824328,10824.328 +24926,2025-03-10T03:55:41.029759-07:00,997.2639770507812,10.813619,10813.619 +24927,2025-03-10T03:55:51.844769-07:00,997.2892456054688,10.81501,10815.01 +24928,2025-03-10T03:56:02.666276-07:00,997.2736206054688,10.821507,10821.507 +24929,2025-03-10T03:56:13.483416-07:00,997.2801513671875,10.81714,10817.14 +24930,2025-03-10T03:56:24.306824-07:00,997.2525024414062,10.823408,10823.408 +24931,2025-03-10T03:56:35.121016-07:00,997.2472534179688,10.814192,10814.192 +24932,2025-03-10T03:56:45.939354-07:00,997.22607421875,10.818338,10818.338 +24933,2025-03-10T03:56:56.756233-07:00,997.2801513671875,10.816879,10816.879 +24934,2025-03-10T03:57:07.574767-07:00,997.265625,10.818534,10818.534 +24935,2025-03-10T03:57:18.389875-07:00,997.22607421875,10.815108,10815.108 +24936,2025-03-10T03:57:29.212767-07:00,997.25390625,10.822892,10822.892 +24937,2025-03-10T03:57:40.025765-07:00,997.24072265625,10.812998,10812.998 +24938,2025-03-10T03:57:50.853100-07:00,997.2867431640625,10.827335,10827.335 +24939,2025-03-10T03:58:01.667174-07:00,997.25390625,10.814074,10814.074 +24940,2025-03-10T03:58:12.490824-07:00,997.2382202148438,10.82365,10823.65 +24941,2025-03-10T03:58:23.309409-07:00,997.2382202148438,10.818585,10818.585 +24942,2025-03-10T03:58:34.120021-07:00,997.2039184570312,10.810612,10810.612 +24943,2025-03-10T03:58:44.937014-07:00,997.265625,10.816993,10816.993 +24944,2025-03-10T03:58:55.756021-07:00,997.2236938476562,10.819007,10819.007 +24945,2025-03-10T03:59:06.572767-07:00,997.2514038085938,10.816746,10816.746 +24946,2025-03-10T03:59:17.386155-07:00,997.230224609375,10.813388,10813.388 +24947,2025-03-10T03:59:28.202770-07:00,997.245849609375,10.816615,10816.615 +24948,2025-03-10T03:59:39.018004-07:00,997.230224609375,10.815234,10815.234 +24949,2025-03-10T03:59:49.831763-07:00,997.244873046875,10.813759,10813.759 +24950,2025-03-10T04:00:00.659102-07:00,997.2225952148438,10.827339,10827.339 +24951,2025-03-10T04:00:11.476755-07:00,997.244873046875,10.817653,10817.653 +24952,2025-03-10T04:00:22.298505-07:00,997.217041015625,10.82175,10821.75 +24953,2025-03-10T04:00:33.112861-07:00,997.2079467773438,10.814356,10814.356 +24954,2025-03-10T04:00:43.936796-07:00,997.2225952148438,10.823935,10823.935 +24955,2025-03-10T04:00:54.755021-07:00,997.2093505859375,10.818225,10818.225 +24956,2025-03-10T04:01:05.573863-07:00,997.214599609375,10.818842,10818.842 +24957,2025-03-10T04:01:16.383866-07:00,997.1882934570312,10.810003,10810.003 +24958,2025-03-10T04:01:27.203773-07:00,997.20556640625,10.819907,10819.907 +24959,2025-03-10T04:01:38.021772-07:00,997.2003173828125,10.817999,10817.999 +24960,2025-03-10T04:01:48.842889-07:00,997.185791015625,10.821117,10821.117 +24961,2025-03-10T04:01:59.669752-07:00,997.185791015625,10.826863,10826.863 +24962,2025-03-10T04:02:10.484822-07:00,997.1595458984375,10.81507,10815.07 +24963,2025-03-10T04:02:21.305835-07:00,997.1660766601562,10.821013,10821.013 +24964,2025-03-10T04:02:32.127965-07:00,997.1726684570312,10.82213,10822.13 +24965,2025-03-10T04:02:42.951060-07:00,997.1660766601562,10.823095,10823.095 +24966,2025-03-10T04:02:53.769957-07:00,997.1923217773438,10.818897,10818.897 +24967,2025-03-10T04:03:04.582187-07:00,997.1504516601562,10.81223,10812.23 +24968,2025-03-10T04:03:15.401245-07:00,997.1463012695312,10.819058,10819.058 +24969,2025-03-10T04:03:26.221377-07:00,997.185791015625,10.820132,10820.132 +24970,2025-03-10T04:03:37.036974-07:00,997.158447265625,10.815597,10815.597 +24971,2025-03-10T04:03:47.854770-07:00,997.1715698242188,10.817796,10817.796 +24972,2025-03-10T04:03:58.678106-07:00,997.1871948242188,10.823336,10823.336 +24973,2025-03-10T04:04:09.504767-07:00,997.1806030273438,10.826661,10826.661 +24974,2025-03-10T04:04:20.325553-07:00,997.1331176757812,10.820786,10820.786 +24975,2025-03-10T04:04:31.149767-07:00,997.174072265625,10.824214,10824.214 +24976,2025-03-10T04:04:41.968871-07:00,997.154296875,10.819104,10819.104 +24977,2025-03-10T04:04:52.794295-07:00,997.1487426757812,10.825424,10825.424 +24978,2025-03-10T04:05:03.605100-07:00,997.14111328125,10.810805,10810.805 +24979,2025-03-10T04:05:14.430754-07:00,997.1290893554688,10.825654,10825.654 +24980,2025-03-10T04:05:25.245754-07:00,997.1279907226562,10.815,10815.0 +24981,2025-03-10T04:05:36.070008-07:00,997.0895385742188,10.824254,10824.254 +24982,2025-03-10T04:05:46.944146-07:00,997.1173706054688,10.874138,10874.138 +24983,2025-03-10T04:05:57.750897-07:00,997.150146484375,10.806751,10806.751 +24984,2025-03-10T04:06:08.572997-07:00,997.1512451171875,10.8221,10822.1 +24985,2025-03-10T04:06:19.387976-07:00,997.131591796875,10.814979,10814.979 +24986,2025-03-10T04:06:30.211897-07:00,997.1132202148438,10.823921,10823.921 +24987,2025-03-10T04:06:41.033960-07:00,997.1143188476562,10.822063,10822.063 +24988,2025-03-10T04:06:51.852352-07:00,997.1486206054688,10.818392,10818.392 +24989,2025-03-10T04:07:02.669891-07:00,997.11669921875,10.817539,10817.539 +24990,2025-03-10T04:07:13.489885-07:00,997.0970458984375,10.819994,10819.994 +24991,2025-03-10T04:07:24.309211-07:00,997.08935546875,10.819326,10819.326 +24992,2025-03-10T04:07:35.118045-07:00,997.11669921875,10.808834,10808.834 +24993,2025-03-10T04:07:45.931945-07:00,997.10498046875,10.8139,10813.9 +24994,2025-03-10T04:07:56.750874-07:00,997.1126708984375,10.818929,10818.929 +24995,2025-03-10T04:08:07.562932-07:00,997.1389770507812,10.812058,10812.058 +24996,2025-03-10T04:08:18.371246-07:00,997.0863037109375,10.808314,10808.314 +24997,2025-03-10T04:08:29.190134-07:00,997.11376953125,10.818888,10818.888 +24998,2025-03-10T04:08:40.011203-07:00,997.12939453125,10.821069,10821.069 +24999,2025-03-10T04:08:50.824036-07:00,997.1359252929688,10.812833,10812.833 +25000,2025-03-10T04:09:01.636480-07:00,997.1307983398438,10.812444,10812.444 +25001,2025-03-10T04:09:12.445238-07:00,997.164794921875,10.808758,10808.758 +25002,2025-03-10T04:09:23.258970-07:00,997.1253051757812,10.813732,10813.732 +25003,2025-03-10T04:09:34.080941-07:00,997.1529541015625,10.821971,10821.971 +25004,2025-03-10T04:09:44.887891-07:00,997.1358032226562,10.80695,10806.95 +25005,2025-03-10T04:09:55.705208-07:00,997.115966796875,10.817317,10817.317 +25006,2025-03-10T04:10:06.518260-07:00,997.118408203125,10.813052,10813.052 +25007,2025-03-10T04:10:17.344897-07:00,997.125,10.826637,10826.637 +25008,2025-03-10T04:10:28.160084-07:00,997.1118774414062,10.815187,10815.187 +25009,2025-03-10T04:10:38.979234-07:00,997.1209106445312,10.81915,10819.15 +25010,2025-03-10T04:10:49.787998-07:00,997.1275024414062,10.808764,10808.764 +25011,2025-03-10T04:11:00.610888-07:00,997.0970458984375,10.82289,10822.89 +25012,2025-03-10T04:11:11.428946-07:00,997.102294921875,10.818058,10818.058 +25013,2025-03-10T04:11:22.240657-07:00,997.12451171875,10.811711,10811.711 +25014,2025-03-10T04:11:33.053078-07:00,997.1179809570312,10.812421,10812.421 +25015,2025-03-10T04:11:43.871891-07:00,997.0995483398438,10.818813,10818.813 +25016,2025-03-10T04:11:54.691195-07:00,997.122802734375,10.819304,10819.304 +25017,2025-03-10T04:12:05.508386-07:00,997.1085815429688,10.817191,10817.191 +25018,2025-03-10T04:12:16.319041-07:00,997.0809326171875,10.810655,10810.655 +25019,2025-03-10T04:12:27.135872-07:00,997.1304931640625,10.816831,10816.831 +25020,2025-03-10T04:12:37.953041-07:00,997.1450805664062,10.817169,10817.169 +25021,2025-03-10T04:12:48.767690-07:00,997.1056518554688,10.814649,10814.649 +25022,2025-03-10T04:12:59.582120-07:00,997.106689453125,10.81443,10814.43 +25023,2025-03-10T04:13:10.387879-07:00,997.1146850585938,10.805759,10805.759 +25024,2025-03-10T04:13:21.199981-07:00,997.0869750976562,10.812102,10812.102 +25025,2025-03-10T04:13:32.012942-07:00,997.0828247070312,10.812961,10812.961 +25026,2025-03-10T04:13:42.823973-07:00,997.1038818359375,10.811031,10811.031 +25027,2025-03-10T04:13:53.638892-07:00,997.0918579101562,10.814919,10814.919 +25028,2025-03-10T04:14:04.454149-07:00,997.1063842773438,10.815257,10815.257 +25029,2025-03-10T04:14:15.271886-07:00,997.0957641601562,10.817737,10817.737 +25030,2025-03-10T04:14:26.087028-07:00,997.0718994140625,10.815142,10815.142 +25031,2025-03-10T04:14:36.890930-07:00,997.1058349609375,10.803902,10803.902 +25032,2025-03-10T04:14:47.711177-07:00,997.1017456054688,10.820247,10820.247 +25033,2025-03-10T04:14:58.526216-07:00,997.0900268554688,10.815039,10815.039 +25034,2025-03-10T04:15:09.346147-07:00,997.0713500976562,10.819931,10819.931 +25035,2025-03-10T04:15:20.160279-07:00,997.1096801757812,10.814132,10814.132 +25036,2025-03-10T04:15:30.975964-07:00,997.1305541992188,10.815685,10815.685 +25037,2025-03-10T04:15:41.783950-07:00,997.0921630859375,10.807986,10807.986 +25038,2025-03-10T04:15:52.605048-07:00,997.08935546875,10.821098,10821.098 +25039,2025-03-10T04:16:03.418032-07:00,997.0971069335938,10.812984,10812.984 +25040,2025-03-10T04:16:14.230413-07:00,997.1116333007812,10.812381,10812.381 +25041,2025-03-10T04:16:25.045899-07:00,997.0984497070312,10.815486,10815.486 +25042,2025-03-10T04:16:35.858895-07:00,997.1074829101562,10.812996,10812.996 +25043,2025-03-10T04:16:46.663891-07:00,997.0878295898438,10.804996,10804.996 +25044,2025-03-10T04:16:57.486904-07:00,997.0889282226562,10.823013,10823.013 +25045,2025-03-10T04:17:08.302430-07:00,997.126708984375,10.815526,10815.526 +25046,2025-03-10T04:17:19.115223-07:00,997.1004028320312,10.812793,10812.793 +25047,2025-03-10T04:17:29.934122-07:00,997.0951538085938,10.818899,10818.899 +25048,2025-03-10T04:17:40.756431-07:00,997.1239624023438,10.822309,10822.309 +25049,2025-03-10T04:17:51.571054-07:00,997.1250610351562,10.814623,10814.623 +25050,2025-03-10T04:18:02.388064-07:00,997.155029296875,10.81701,10817.01 +25051,2025-03-10T04:18:13.205005-07:00,997.1431274414062,10.816941,10816.941 +25052,2025-03-10T04:18:24.022671-07:00,997.1376342773438,10.817666,10817.666 +25053,2025-03-10T04:18:34.843466-07:00,997.1259155273438,10.820795,10820.795 +25054,2025-03-10T04:18:45.657749-07:00,997.1532592773438,10.814283,10814.283 +25055,2025-03-10T04:18:56.470880-07:00,997.1637573242188,10.813131,10813.131 +25056,2025-03-10T04:19:07.288415-07:00,997.1859130859375,10.817535,10817.535 +25057,2025-03-10T04:19:18.104134-07:00,997.1738891601562,10.815719,10815.719 +25058,2025-03-10T04:19:28.925895-07:00,997.1620483398438,10.821761,10821.761 +25059,2025-03-10T04:19:39.740892-07:00,997.16455078125,10.814997,10814.997 +25060,2025-03-10T04:19:50.562080-07:00,997.18017578125,10.821188,10821.188 +25061,2025-03-10T04:20:01.370015-07:00,997.1746826171875,10.807935,10807.935 +25062,2025-03-10T04:20:12.189891-07:00,997.2166137695312,10.819876,10819.876 +25063,2025-03-10T04:20:33.825890-07:00,997.1928100585938,21.635999,21635.999 +25064,2025-03-10T04:20:44.636142-07:00,997.201904296875,10.810252,10810.252 +25065,2025-03-10T04:20:55.454181-07:00,997.216064453125,10.818039,10818.039 +25066,2025-03-10T04:21:06.276261-07:00,997.1976318359375,10.82208,10822.08 +25067,2025-03-10T04:21:17.090894-07:00,997.2067260742188,10.814633,10814.633 +25068,2025-03-10T04:21:27.910932-07:00,997.1961059570312,10.820038,10820.038 +25069,2025-03-10T04:21:38.721894-07:00,997.1773681640625,10.810962,10810.962 +25070,2025-03-10T04:21:49.532924-07:00,997.1732788085938,10.81103,10811.03 +25071,2025-03-10T04:22:00.354308-07:00,997.1757202148438,10.821384,10821.384 +25072,2025-03-10T04:22:11.164895-07:00,997.1614990234375,10.810587,10810.587 +25073,2025-03-10T04:22:21.978138-07:00,997.1624755859375,10.813243,10813.243 +25074,2025-03-10T04:22:32.791895-07:00,997.1310424804688,10.813757,10813.757 +25075,2025-03-10T04:22:43.608682-07:00,997.1279907226562,10.816787,10816.787 +25076,2025-03-10T04:22:54.427900-07:00,997.1265869140625,10.819218,10819.218 +25077,2025-03-10T04:23:05.234898-07:00,997.169921875,10.806998,10806.998 +25078,2025-03-10T04:23:16.050980-07:00,997.1461181640625,10.816082,10816.082 +25079,2025-03-10T04:23:26.870691-07:00,997.1182861328125,10.819711,10819.711 +25080,2025-03-10T04:23:37.688891-07:00,997.1141967773438,10.8182,10818.2 +25081,2025-03-10T04:23:48.501138-07:00,997.1298217773438,10.812247,10812.247 +25082,2025-03-10T04:23:59.317885-07:00,997.138916015625,10.816747,10816.747 +25083,2025-03-10T04:24:10.126896-07:00,997.0982666015625,10.809011,10809.011 +25084,2025-03-10T04:24:20.945692-07:00,997.12158203125,10.818796,10818.796 +25085,2025-03-10T04:24:31.758968-07:00,997.1163940429688,10.813276,10813.276 +25086,2025-03-10T04:24:42.575100-07:00,997.1334228515625,10.816132,10816.132 +25087,2025-03-10T04:24:53.389232-07:00,997.1135864257812,10.814132,10814.132 +25088,2025-03-10T04:25:04.196925-07:00,997.12158203125,10.807693,10807.693 +25089,2025-03-10T04:25:15.020261-07:00,997.139404296875,10.823336,10823.336 +25090,2025-03-10T04:25:25.829897-07:00,997.1210327148438,10.809636,10809.636 +25091,2025-03-10T04:25:36.647896-07:00,997.1473388671875,10.817999,10817.999 +25092,2025-03-10T04:25:47.457889-07:00,997.1023559570312,10.809993,10809.993 +25093,2025-03-10T04:25:58.282939-07:00,997.1012573242188,10.82505,10825.05 +25094,2025-03-10T04:26:09.095880-07:00,997.1220092773438,10.812941,10812.941 +25095,2025-03-10T04:26:19.917883-07:00,997.0773315429688,10.822003,10822.003 +25096,2025-03-10T04:26:30.725199-07:00,997.0995483398438,10.807316,10807.316 +25097,2025-03-10T04:26:41.541856-07:00,997.1259155273438,10.816657,10816.657 +25098,2025-03-10T04:26:52.357201-07:00,997.0995483398438,10.815345,10815.345 +25099,2025-03-10T04:27:03.164616-07:00,997.1006469726562,10.807415,10807.415 +25100,2025-03-10T04:27:13.973883-07:00,997.0742797851562,10.809267,10809.267 +25101,2025-03-10T04:27:24.793929-07:00,997.1045532226562,10.820046,10820.046 +25102,2025-03-10T04:27:35.609197-07:00,997.0833740234375,10.815268,10815.268 +25103,2025-03-10T04:27:46.421149-07:00,997.0518188476562,10.811952,10811.952 +25104,2025-03-10T04:27:57.233878-07:00,997.0650024414062,10.812729,10812.729 +25105,2025-03-10T04:28:08.040885-07:00,997.0740356445312,10.807007,10807.007 +25106,2025-03-10T04:28:18.861945-07:00,997.0684204101562,10.82106,10821.06 +25107,2025-03-10T04:28:29.676022-07:00,997.0830688476562,10.814077,10814.077 +25108,2025-03-10T04:28:40.486180-07:00,997.0709228515625,10.810158,10810.158 +25109,2025-03-10T04:28:51.305948-07:00,997.01171875,10.819768,10819.768 +25110,2025-03-10T04:29:02.115136-07:00,997.0734252929688,10.809188,10809.188 +25111,2025-03-10T04:29:12.927935-07:00,997.0667724609375,10.812799,10812.799 +25112,2025-03-10T04:29:23.738870-07:00,997.0546875,10.810935,10810.935 +25113,2025-03-10T04:29:34.553003-07:00,997.0571899414062,10.814133,10814.133 +25114,2025-03-10T04:29:45.366974-07:00,997.03076171875,10.813971,10813.971 +25115,2025-03-10T04:29:56.185893-07:00,997.0452880859375,10.818919,10818.919 +25116,2025-03-10T04:30:06.995959-07:00,997.0477905273438,10.810066,10810.066 +25117,2025-03-10T04:30:17.812462-07:00,997.0543823242188,10.816503,10816.503 +25118,2025-03-10T04:30:28.625411-07:00,997.0267333984375,10.812949,10812.949 +25119,2025-03-10T04:30:39.434232-07:00,997.03466796875,10.808821,10808.821 +25120,2025-03-10T04:30:50.247896-07:00,997.0447387695312,10.813664,10813.664 +25121,2025-03-10T04:31:01.070982-07:00,997.0513916015625,10.823086,10823.086 +25122,2025-03-10T04:31:11.883344-07:00,997.043701171875,10.812362,10812.362 +25123,2025-03-10T04:31:22.709888-07:00,997.0670166015625,10.826544,10826.544 +25124,2025-03-10T04:31:33.524108-07:00,997.059326171875,10.81422,10814.22 +25125,2025-03-10T04:31:44.345251-07:00,997.0617065429688,10.821143,10821.143 +25126,2025-03-10T04:31:55.153876-07:00,997.05517578125,10.808625,10808.625 +25127,2025-03-10T04:32:05.974886-07:00,997.0364990234375,10.82101,10821.01 +25128,2025-03-10T04:32:16.790249-07:00,997.0454711914062,10.815363,10815.363 +25129,2025-03-10T04:32:27.604285-07:00,997.0521240234375,10.814036,10814.036 +25130,2025-03-10T04:32:38.418960-07:00,997.0667114257812,10.814675,10814.675 +25131,2025-03-10T04:32:49.240874-07:00,997.0687255859375,10.821914,10821.914 +25132,2025-03-10T04:33:00.059674-07:00,997.049072265625,10.8188,10818.8 +25133,2025-03-10T04:33:10.877291-07:00,997.04248046875,10.817617,10817.617 +25134,2025-03-10T04:33:21.693944-07:00,997.0348510742188,10.816653,10816.653 +25135,2025-03-10T04:33:32.505889-07:00,997.0712280273438,10.811945,10811.945 +25136,2025-03-10T04:33:43.326228-07:00,997.0661010742188,10.820339,10820.339 +25137,2025-03-10T04:33:54.140885-07:00,997.040771484375,10.814657,10814.657 +25138,2025-03-10T04:34:04.952890-07:00,997.060546875,10.812005,10812.005 +25139,2025-03-10T04:34:15.768133-07:00,997.0396728515625,10.815243,10815.243 +25140,2025-03-10T04:34:26.576181-07:00,997.0618896484375,10.808048,10808.048 +25141,2025-03-10T04:34:37.391876-07:00,997.0421752929688,10.815695,10815.695 +25142,2025-03-10T04:34:48.212619-07:00,997.0498657226562,10.820743,10820.743 +25143,2025-03-10T04:34:59.018899-07:00,997.0654907226562,10.80628,10806.28 +25144,2025-03-10T04:35:09.832133-07:00,997.0446166992188,10.813234,10813.234 +25145,2025-03-10T04:35:20.649930-07:00,997.0314331054688,10.817797,10817.797 +25146,2025-03-10T04:35:31.465065-07:00,997.061279296875,10.815135,10815.135 +25147,2025-03-10T04:35:42.279975-07:00,997.0283813476562,10.81491,10814.91 +25148,2025-03-10T04:35:53.098894-07:00,997.0231323242188,10.818919,10818.919 +25149,2025-03-10T04:36:03.919283-07:00,997.0585327148438,10.820389,10820.389 +25150,2025-03-10T04:36:14.731192-07:00,997.012451171875,10.811909,10811.909 +25151,2025-03-10T04:36:25.548981-07:00,997.0332641601562,10.817789,10817.789 +25152,2025-03-10T04:36:36.364956-07:00,997.0398559570312,10.815975,10815.975 +25153,2025-03-10T04:36:47.177088-07:00,997.029052734375,10.812132,10812.132 +25154,2025-03-10T04:36:57.994053-07:00,997.0370483398438,10.816965,10816.965 +25155,2025-03-10T04:37:08.820023-07:00,997.0315551757812,10.82597,10825.97 +25156,2025-03-10T04:37:19.639924-07:00,997.0457763671875,10.819901,10819.901 +25157,2025-03-10T04:37:30.448335-07:00,997.0523681640625,10.808411,10808.411 +25158,2025-03-10T04:37:41.269149-07:00,997.0496215820312,10.820814,10820.814 +25159,2025-03-10T04:37:48.266328-07:00,997.0628051757812,6.997179,6997.179 +25160,2025-03-10T04:37:52.089493-07:00,997.0770263671875,3.823165,3823.165 +25161,2025-03-10T04:38:02.910214-07:00,997.052001953125,10.820721,10820.721 +25162,2025-03-10T04:38:13.726296-07:00,997.0652465820312,10.816082,10816.082 +25163,2025-03-10T04:38:24.551151-07:00,997.03466796875,10.824855,10824.855 +25164,2025-03-10T04:38:35.370445-07:00,997.0371704101562,10.819294,10819.294 +25165,2025-03-10T04:38:46.182308-07:00,997.0556030273438,10.811863,10811.863 +25166,2025-03-10T04:38:57.000878-07:00,997.0579833984375,10.81857,10818.57 +25167,2025-03-10T04:39:07.824891-07:00,997.0646362304688,10.824013,10824.013 +25168,2025-03-10T04:39:18.636557-07:00,997.0868530273438,10.811666,10811.666 +25169,2025-03-10T04:39:29.460028-07:00,997.0750122070312,10.823471,10823.471 +25170,2025-03-10T04:39:40.273091-07:00,997.0407104492188,10.813063,10813.063 +25171,2025-03-10T04:39:51.086936-07:00,997.0892333984375,10.813845,10813.845 +25172,2025-03-10T04:40:01.899857-07:00,997.0775146484375,10.812921,10812.921 +25173,2025-03-10T04:40:12.721039-07:00,997.0917358398438,10.821182,10821.182 +25174,2025-03-10T04:40:23.533179-07:00,997.0181274414062,10.81214,10812.14 +25175,2025-03-10T04:40:34.361186-07:00,997.0587768554688,10.828007,10828.007 +25176,2025-03-10T04:40:45.180183-07:00,997.0941162109375,10.818997,10818.997 +25177,2025-03-10T04:40:55.995130-07:00,997.0744018554688,10.814947,10814.947 +25178,2025-03-10T04:41:06.808885-07:00,997.0479736328125,10.813755,10813.755 +25179,2025-03-10T04:41:17.630216-07:00,997.088623046875,10.821331,10821.331 +25180,2025-03-10T04:41:28.445195-07:00,997.091064453125,10.814979,10814.979 +25181,2025-03-10T04:41:39.260057-07:00,997.0792236328125,10.814862,10814.862 +25182,2025-03-10T04:41:50.081978-07:00,997.0671997070312,10.821921,10821.921 +25183,2025-03-10T04:42:00.900271-07:00,997.07373046875,10.818293,10818.293 +25184,2025-03-10T04:42:11.715136-07:00,997.064697265625,10.814865,10814.865 +25185,2025-03-10T04:42:22.530927-07:00,997.02099609375,10.815791,10815.791 +25186,2025-03-10T04:42:33.343889-07:00,997.0671997070312,10.812962,10812.962 +25187,2025-03-10T04:42:44.160096-07:00,997.0289916992188,10.816207,10816.207 +25188,2025-03-10T04:42:54.983139-07:00,997.03662109375,10.823043,10823.043 +25189,2025-03-10T04:43:05.805027-07:00,997.06298828125,10.821888,10821.888 +25190,2025-03-10T04:43:16.618482-07:00,997.0390625,10.813455,10813.455 +25191,2025-03-10T04:43:27.424518-07:00,997.0578002929688,10.806036,10806.036 +25192,2025-03-10T04:43:38.238040-07:00,997.0588989257812,10.813522,10813.522 +25193,2025-03-10T04:43:49.057874-07:00,997.0446166992188,10.819834,10819.834 +25194,2025-03-10T04:43:59.869895-07:00,997.033935546875,10.812021,10812.021 +25195,2025-03-10T04:44:10.675963-07:00,997.033935546875,10.806068,10806.068 +25196,2025-03-10T04:44:21.497214-07:00,997.032470703125,10.821251,10821.251 +25197,2025-03-10T04:44:32.306038-07:00,997.01513671875,10.808824,10808.824 +25198,2025-03-10T04:44:43.125154-07:00,997.0283813476562,10.819116,10819.116 +25199,2025-03-10T04:44:53.940131-07:00,997.050537109375,10.814977,10814.977 +25200,2025-03-10T04:45:04.748918-07:00,997.0283813476562,10.808787,10808.787 +25201,2025-03-10T04:45:15.574935-07:00,997.00439453125,10.826017,10826.017 +25202,2025-03-10T04:45:26.384886-07:00,996.9846801757812,10.809951,10809.951 +25203,2025-03-10T04:45:37.205210-07:00,996.9912719726562,10.820324,10820.324 +25204,2025-03-10T04:45:48.025236-07:00,997.0057983398438,10.820026,10820.026 +25205,2025-03-10T04:45:58.845724-07:00,996.9860229492188,10.820488,10820.488 +25206,2025-03-10T04:46:09.658894-07:00,996.9781494140625,10.81317,10813.17 +25207,2025-03-10T04:46:20.481843-07:00,997.0068969726562,10.822949,10822.949 +25208,2025-03-10T04:46:31.304888-07:00,996.9829711914062,10.823045,10823.045 +25209,2025-03-10T04:46:42.115891-07:00,996.9818725585938,10.811003,10811.003 +25210,2025-03-10T04:46:52.942809-07:00,996.9620971679688,10.826918,10826.918 +25211,2025-03-10T04:47:03.761890-07:00,997.0037231445312,10.819081,10819.081 +25212,2025-03-10T04:47:14.582884-07:00,996.9774169921875,10.820994,10820.994 +25213,2025-03-10T04:47:25.403722-07:00,996.9697875976562,10.820838,10820.838 +25214,2025-03-10T04:47:36.223115-07:00,996.9378662109375,10.819393,10819.393 +25215,2025-03-10T04:47:47.039400-07:00,996.968017578125,10.816285,10816.285 +25216,2025-03-10T04:48:08.676143-07:00,996.9351806640625,21.636743,21636.743 +25217,2025-03-10T04:48:19.492159-07:00,996.9483032226562,10.816016,10816.016 +25218,2025-03-10T04:48:30.311887-07:00,996.9559326171875,10.819728,10819.728 +25219,2025-03-10T04:48:39.074012-07:00,996.9559326171875,8.762125,8762.125 +25220,2025-03-10T04:48:41.122118-07:00,996.9361572265625,2.048106,2048.106 +25221,2025-03-10T04:48:51.940317-07:00,996.9690551757812,10.818199,10818.199 +25222,2025-03-10T04:49:02.763881-07:00,996.9573364257812,10.823564,10823.564 +25223,2025-03-10T04:49:13.579945-07:00,996.9517822265625,10.816064,10816.064 +25224,2025-03-10T04:49:24.398494-07:00,996.95068359375,10.818549,10818.549 +25225,2025-03-10T04:49:35.213887-07:00,996.9729614257812,10.815393,10815.393 +25226,2025-03-10T04:49:46.034976-07:00,996.946533203125,10.821089,10821.089 +25227,2025-03-10T04:49:56.855382-07:00,996.9542236328125,10.820406,10820.406 +25228,2025-03-10T04:50:07.670195-07:00,996.9566650390625,10.814813,10814.813 +25229,2025-03-10T04:50:18.489172-07:00,996.9632568359375,10.818977,10818.977 +25230,2025-03-10T04:50:29.318515-07:00,996.964599609375,10.829343,10829.343 +25231,2025-03-10T04:50:40.136364-07:00,996.967041015625,10.817849,10817.849 +25232,2025-03-10T04:50:50.949893-07:00,996.927490234375,10.813529,10813.529 +25233,2025-03-10T04:51:01.775868-07:00,996.962890625,10.825975,10825.975 +25234,2025-03-10T04:51:12.596898-07:00,996.929931640625,10.82103,10821.03 +25235,2025-03-10T04:51:23.421471-07:00,996.9522094726562,10.824573,10824.573 +25236,2025-03-10T04:51:34.240060-07:00,996.9476318359375,10.818589,10818.589 +25237,2025-03-10T04:51:45.051897-07:00,996.9729614257812,10.811837,10811.837 +25238,2025-03-10T04:51:55.876896-07:00,996.9345092773438,10.824999,10824.999 +25239,2025-03-10T04:52:06.692914-07:00,996.9556274414062,10.816018,10816.018 +25240,2025-03-10T04:52:17.507029-07:00,996.9632568359375,10.814115,10814.115 +25241,2025-03-10T04:52:28.328892-07:00,996.9581298828125,10.821863,10821.863 +25242,2025-03-10T04:52:39.145892-07:00,996.9302978515625,10.817,10817.0 +25243,2025-03-10T04:52:49.971902-07:00,996.9251708984375,10.82601,10826.01 +25244,2025-03-10T04:53:00.782895-07:00,996.9525146484375,10.810993,10810.993 +25245,2025-03-10T04:53:11.609893-07:00,996.9053344726562,10.826998,10826.998 +25246,2025-03-10T04:53:22.425342-07:00,996.9354858398438,10.815449,10815.449 +25247,2025-03-10T04:53:33.241889-07:00,996.9368896484375,10.816547,10816.547 +25248,2025-03-10T04:53:44.064942-07:00,996.931396484375,10.823053,10823.053 +25249,2025-03-10T04:53:54.882256-07:00,996.9445190429688,10.817314,10817.314 +25250,2025-03-10T04:54:05.692929-07:00,996.9064331054688,10.810673,10810.673 +25251,2025-03-10T04:54:16.514133-07:00,996.9327392578125,10.821204,10821.204 +25252,2025-03-10T04:54:27.324874-07:00,996.9403686523438,10.810741,10810.741 +25253,2025-03-10T04:54:38.148165-07:00,996.9285888671875,10.823291,10823.291 +25254,2025-03-10T04:54:48.971876-07:00,996.9442138671875,10.823711,10823.711 +25255,2025-03-10T04:54:59.794107-07:00,996.9230346679688,10.822231,10822.231 +25256,2025-03-10T04:55:10.608203-07:00,996.9254760742188,10.814096,10814.096 +25257,2025-03-10T04:55:21.424894-07:00,996.9320068359375,10.816691,10816.691 +25258,2025-03-10T04:55:32.249960-07:00,996.9136962890625,10.825066,10825.066 +25259,2025-03-10T04:55:43.064838-07:00,996.9146728515625,10.814878,10814.878 +25260,2025-03-10T04:55:53.880896-07:00,996.9435424804688,10.816058,10816.058 +25261,2025-03-10T04:56:04.695018-07:00,996.9237670898438,10.814122,10814.122 +25262,2025-03-10T04:56:15.508883-07:00,996.9285888671875,10.813865,10813.865 +25263,2025-03-10T04:56:26.335214-07:00,996.9195556640625,10.826331,10826.331 +25264,2025-03-10T04:56:37.148659-07:00,996.920654296875,10.813445,10813.445 +25265,2025-03-10T04:56:47.969791-07:00,996.8998413085938,10.821132,10821.132 +25266,2025-03-10T04:56:58.777891-07:00,996.9021606445312,10.8081,10808.1 +25267,2025-03-10T04:57:09.604252-07:00,996.9088134765625,10.826361,10826.361 +25268,2025-03-10T04:57:20.411901-07:00,996.9021606445312,10.807649,10807.649 +25269,2025-03-10T04:57:31.228895-07:00,996.8768920898438,10.816994,10816.994 +25270,2025-03-10T04:57:42.054815-07:00,996.8758544921875,10.82592,10825.92 +25271,2025-03-10T04:57:52.871044-07:00,996.9244384765625,10.816229,10816.229 +25272,2025-03-10T04:58:03.695151-07:00,996.9112548828125,10.824107,10824.107 +25273,2025-03-10T04:58:14.506913-07:00,996.8873291015625,10.811762,10811.762 +25274,2025-03-10T04:58:25.330010-07:00,996.9359130859375,10.823097,10823.097 +25275,2025-03-10T04:58:36.155937-07:00,996.9425048828125,10.825927,10825.927 +25276,2025-03-10T04:58:46.987247-07:00,996.9171752929688,10.83131,10831.31 +25277,2025-03-10T04:58:57.806870-07:00,996.9237670898438,10.819623,10819.623 +25278,2025-03-10T04:59:08.628922-07:00,996.9226684570312,10.822052,10822.052 +25279,2025-03-10T04:59:19.455933-07:00,996.8842163085938,10.827011,10827.011 +25280,2025-03-10T04:59:30.268041-07:00,996.9382934570312,10.812108,10812.108 +25281,2025-03-10T04:59:41.084133-07:00,996.9119262695312,10.816092,10816.092 +25282,2025-03-10T04:59:51.905405-07:00,996.9095458984375,10.821272,10821.272 +25283,2025-03-10T05:00:02.724160-07:00,996.9317016601562,10.818755,10818.755 +25284,2025-03-10T05:00:13.549483-07:00,996.9196166992188,10.825323,10825.323 +25285,2025-03-10T05:00:24.373640-07:00,996.9251708984375,10.824157,10824.157 +25286,2025-03-10T05:00:35.199114-07:00,996.9119262695312,10.825474,10825.474 +25287,2025-03-10T05:00:46.015362-07:00,996.9064331054688,10.816248,10816.248 +25288,2025-03-10T05:00:56.844300-07:00,996.9143676757812,10.828938,10828.938 +25289,2025-03-10T05:01:07.661128-07:00,996.9143676757812,10.816828,10816.828 +25290,2025-03-10T05:01:18.492277-07:00,996.9341430664062,10.831149,10831.149 +25291,2025-03-10T05:01:29.310130-07:00,996.9209594726562,10.817853,10817.853 +25292,2025-03-10T05:01:40.127891-07:00,996.9088134765625,10.817761,10817.761 +25293,2025-03-10T05:01:50.955144-07:00,996.8945922851562,10.827253,10827.253 +25294,2025-03-10T05:02:01.783436-07:00,996.903564453125,10.828292,10828.292 +25295,2025-03-10T05:02:12.603526-07:00,996.877197265625,10.82009,10820.09 +25296,2025-03-10T05:02:23.415891-07:00,996.8914794921875,10.812365,10812.365 +25297,2025-03-10T05:02:34.242149-07:00,996.8981323242188,10.826258,10826.258 +25298,2025-03-10T05:02:45.065158-07:00,996.8717041015625,10.823009,10823.009 +25299,2025-03-10T05:02:55.885134-07:00,996.92138671875,10.819976,10819.976 +25300,2025-03-10T05:03:06.708313-07:00,996.9345092773438,10.823179,10823.179 +25301,2025-03-10T05:03:17.529451-07:00,996.9137573242188,10.821138,10821.138 +25302,2025-03-10T05:03:28.356142-07:00,996.9029541015625,10.826691,10826.691 +25303,2025-03-10T05:03:39.180499-07:00,996.89501953125,10.824357,10824.357 +25304,2025-03-10T05:03:49.996316-07:00,996.89501953125,10.815817,10815.817 +25305,2025-03-10T05:04:00.822249-07:00,996.9039916992188,10.825933,10825.933 +25306,2025-03-10T05:04:11.639377-07:00,996.8897705078125,10.817128,10817.128 +25307,2025-03-10T05:04:22.459238-07:00,996.8831176757812,10.819861,10819.861 +25308,2025-03-10T05:04:33.282889-07:00,996.9119262695312,10.823651,10823.651 +25309,2025-03-10T05:04:44.106181-07:00,996.9185791015625,10.823292,10823.292 +25310,2025-03-10T05:04:54.935163-07:00,996.8856201171875,10.828982,10828.982 +25311,2025-03-10T05:05:05.756966-07:00,996.9064331054688,10.821803,10821.803 +25312,2025-03-10T05:05:16.577894-07:00,996.9196166992188,10.820928,10820.928 +25313,2025-03-10T05:05:27.396164-07:00,996.8998413085938,10.81827,10818.27 +25314,2025-03-10T05:05:38.207897-07:00,996.9220581054688,10.811733,10811.733 +25315,2025-03-10T05:05:49.042104-07:00,996.8748168945312,10.834207,10834.207 +25316,2025-03-10T05:05:59.866258-07:00,996.9088134765625,10.824154,10824.154 +25317,2025-03-10T05:06:10.685594-07:00,996.9046630859375,10.819336,10819.336 +25318,2025-03-10T05:06:21.501136-07:00,996.91015625,10.815542,10815.542 +25319,2025-03-10T05:06:32.316187-07:00,996.8904418945312,10.815051,10815.051 +25320,2025-03-10T05:06:43.138116-07:00,996.9177856445312,10.821929,10821.929 +25321,2025-03-10T05:06:53.955455-07:00,996.9060668945312,10.817339,10817.339 +25322,2025-03-10T05:07:04.774238-07:00,996.9071044921875,10.818783,10818.783 +25323,2025-03-10T05:07:15.595261-07:00,996.9071044921875,10.821023,10821.023 +25324,2025-03-10T05:07:26.420413-07:00,996.8873291015625,10.825152,10825.152 +25325,2025-03-10T05:07:37.238050-07:00,996.9071044921875,10.817637,10817.637 +25326,2025-03-10T05:07:48.069133-07:00,996.882080078125,10.831083,10831.083 +25327,2025-03-10T05:07:58.887128-07:00,996.87548828125,10.817995,10817.995 +25328,2025-03-10T05:08:09.702120-07:00,996.9095458984375,10.814992,10814.992 +25329,2025-03-10T05:08:20.519122-07:00,996.8987426757812,10.817002,10817.002 +25330,2025-03-10T05:08:31.348366-07:00,996.8856201171875,10.829244,10829.244 +25331,2025-03-10T05:08:42.173166-07:00,996.9132690429688,10.8248,10824.8 +25332,2025-03-10T05:08:52.991115-07:00,996.9078369140625,10.817949,10817.949 +25333,2025-03-10T05:09:03.820126-07:00,996.9209594726562,10.829011,10829.011 +25334,2025-03-10T05:09:14.632118-07:00,996.9234619140625,10.811992,10811.992 +25335,2025-03-10T05:09:25.458411-07:00,996.9177856445312,10.826293,10826.293 +25336,2025-03-10T05:09:36.282133-07:00,996.9004516601562,10.823722,10823.722 +25337,2025-03-10T05:09:47.104168-07:00,996.9136962890625,10.822035,10822.035 +25338,2025-03-10T05:09:57.920641-07:00,996.9293212890625,10.816473,10816.473 +25339,2025-03-10T05:10:08.744168-07:00,996.9132690429688,10.823527,10823.527 +25340,2025-03-10T05:10:19.569445-07:00,996.9251708984375,10.825277,10825.277 +25341,2025-03-10T05:10:30.381815-07:00,996.9288940429688,10.81237,10812.37 +25342,2025-03-10T05:10:41.205120-07:00,996.94873046875,10.823305,10823.305 +25343,2025-03-10T05:10:52.035511-07:00,996.9143676757812,10.830391,10830.391 +25344,2025-03-10T05:11:02.859122-07:00,996.943115234375,10.823611,10823.611 +25345,2025-03-10T05:11:13.681372-07:00,996.9246826171875,10.82225,10822.25 +25346,2025-03-10T05:11:24.499340-07:00,996.903564453125,10.817968,10817.968 +25347,2025-03-10T05:11:35.323403-07:00,996.9271850585938,10.824063,10824.063 +25348,2025-03-10T05:11:46.145393-07:00,996.9271850585938,10.82199,10821.99 +25349,2025-03-10T05:11:56.970385-07:00,996.92919921875,10.824992,10824.992 +25350,2025-03-10T05:12:07.780129-07:00,996.950439453125,10.809744,10809.744 +25351,2025-03-10T05:12:18.606734-07:00,996.95703125,10.826605,10826.605 +25352,2025-03-10T05:12:29.427121-07:00,996.94482421875,10.820387,10820.387 +25353,2025-03-10T05:12:40.248350-07:00,996.9528198242188,10.821229,10821.229 +25354,2025-03-10T05:12:51.079660-07:00,996.940673828125,10.83131,10831.31 +25355,2025-03-10T05:13:01.892843-07:00,996.93408203125,10.813183,10813.183 +25356,2025-03-10T05:13:12.719359-07:00,996.93408203125,10.826516,10826.516 +25357,2025-03-10T05:13:23.543845-07:00,996.9684448242188,10.824486,10824.486 +25358,2025-03-10T05:13:34.370169-07:00,996.956298828125,10.826324,10826.324 +25359,2025-03-10T05:13:45.197422-07:00,996.9576416015625,10.827253,10827.253 +25360,2025-03-10T05:13:56.018348-07:00,996.9365844726562,10.820926,10820.926 +25361,2025-03-10T05:14:06.844162-07:00,996.9851684570312,10.825814,10825.814 +25362,2025-03-10T05:14:17.670126-07:00,996.998291015625,10.825964,10825.964 +25363,2025-03-10T05:14:28.490099-07:00,996.96533203125,10.819973,10819.973 +25364,2025-03-10T05:14:39.309797-07:00,996.974365234375,10.819698,10819.698 +25365,2025-03-10T05:14:50.135145-07:00,996.9690551757812,10.825348,10825.348 +25366,2025-03-10T05:15:00.962330-07:00,996.9559326171875,10.827185,10827.185 +25367,2025-03-10T05:15:11.781553-07:00,996.9874877929688,10.819223,10819.223 +25368,2025-03-10T05:15:22.605192-07:00,996.9678344726562,10.823639,10823.639 +25369,2025-03-10T05:15:33.433548-07:00,996.9371948242188,10.828356,10828.356 +25370,2025-03-10T05:15:44.266108-07:00,996.9650268554688,10.83256,10832.56 +25371,2025-03-10T05:15:55.087109-07:00,996.9385986328125,10.821001,10821.001 +25372,2025-03-10T05:16:05.914126-07:00,996.9385986328125,10.827017,10827.017 +25373,2025-03-10T05:16:16.740203-07:00,996.9319458007812,10.826077,10826.077 +25374,2025-03-10T05:16:27.564018-07:00,996.9650268554688,10.823815,10823.815 +25375,2025-03-10T05:16:38.390349-07:00,996.9857788085938,10.826331,10826.331 +25376,2025-03-10T05:16:49.218131-07:00,996.9263916015625,10.827782,10827.782 +25377,2025-03-10T05:16:59.724158-07:00,996.9329833984375,10.506027,10506.027 +25378,2025-03-10T05:17:00.034453-07:00,996.9198608398438,0.310295,310.295 +25379,2025-03-10T05:17:10.863169-07:00,996.9385986328125,10.828716,10828.716 +25380,2025-03-10T05:17:21.689258-07:00,996.9329833984375,10.826089,10826.089 +25381,2025-03-10T05:17:32.527436-07:00,996.9354858398438,10.838178,10838.178 +25382,2025-03-10T05:17:43.360122-07:00,996.9618530273438,10.832686,10832.686 +25383,2025-03-10T05:17:54.186280-07:00,996.9420166015625,10.826158,10826.158 +25384,2025-03-10T05:18:05.021365-07:00,996.9156494140625,10.835085,10835.085 +25385,2025-03-10T05:18:15.844712-07:00,996.9697875976562,10.823347,10823.347 +25386,2025-03-10T05:18:26.678120-07:00,996.9906005859375,10.833408,10833.408 +25387,2025-03-10T05:18:37.505508-07:00,996.9576416015625,10.827388,10827.388 +25388,2025-03-10T05:18:48.336168-07:00,996.9600830078125,10.83066,10830.66 +25389,2025-03-10T05:18:59.157414-07:00,996.9611206054688,10.821246,10821.246 +25390,2025-03-10T05:19:09.984130-07:00,996.9767456054688,10.826716,10826.716 +25391,2025-03-10T05:19:20.812369-07:00,996.9517211914062,10.828239,10828.239 +25392,2025-03-10T05:19:31.640273-07:00,996.9635009765625,10.827904,10827.904 +25393,2025-03-10T05:19:42.478480-07:00,996.9899291992188,10.838207,10838.207 +25394,2025-03-10T05:19:53.304118-07:00,997.0055541992188,10.825638,10825.638 +25395,2025-03-10T05:20:04.136492-07:00,996.9871215820312,10.832374,10832.374 +25396,2025-03-10T05:20:14.970269-07:00,996.960693359375,10.833777,10833.777 +25397,2025-03-10T05:20:25.798348-07:00,996.9540405273438,10.828079,10828.079 +25398,2025-03-10T05:20:36.630308-07:00,996.99609375,10.83196,10831.96 +25399,2025-03-10T05:20:47.461428-07:00,996.9829711914062,10.83112,10831.12 +25400,2025-03-10T05:20:58.289095-07:00,996.9551391601562,10.827667,10827.667 +25401,2025-03-10T05:21:09.126373-07:00,996.95654296875,10.837278,10837.278 +25402,2025-03-10T05:21:19.954779-07:00,996.989501953125,10.828406,10828.406 +25403,2025-03-10T05:21:30.780411-07:00,996.976318359375,10.825632,10825.632 +25404,2025-03-10T05:21:41.612137-07:00,996.9617309570312,10.831726,10831.726 +25405,2025-03-10T05:21:52.450335-07:00,996.9840087890625,10.838198,10838.198 +25406,2025-03-10T05:22:03.274655-07:00,996.9798583984375,10.82432,10824.32 +25407,2025-03-10T05:22:14.105380-07:00,996.99951171875,10.830725,10830.725 +25408,2025-03-10T05:22:24.938443-07:00,997.0009155273438,10.833063,10833.063 +25409,2025-03-10T05:22:35.770122-07:00,996.994384765625,10.831679,10831.679 +25410,2025-03-10T05:22:46.592384-07:00,996.9798583984375,10.822262,10822.262 +25411,2025-03-10T05:22:57.421089-07:00,996.9679565429688,10.828705,10828.705 +25412,2025-03-10T05:23:08.240102-07:00,996.96484375,10.819013,10819.013 +25413,2025-03-10T05:23:19.070171-07:00,996.9912719726562,10.830069,10830.069 +25414,2025-03-10T05:23:29.906410-07:00,996.9935913085938,10.836239,10836.239 +25415,2025-03-10T05:23:40.725305-07:00,996.9595947265625,10.818895,10818.895 +25416,2025-03-10T05:23:51.559424-07:00,996.9946899414062,10.834119,10834.119 +25417,2025-03-10T05:24:02.391124-07:00,996.99609375,10.8317,10831.7 +25418,2025-03-10T05:24:13.208160-07:00,996.9749145507812,10.817036,10817.036 +25419,2025-03-10T05:24:24.041124-07:00,997.001220703125,10.832964,10832.964 +25420,2025-03-10T05:24:34.862103-07:00,996.9971313476562,10.820979,10820.979 +25421,2025-03-10T05:24:45.699391-07:00,996.99609375,10.837288,10837.288 +25422,2025-03-10T05:24:56.525212-07:00,996.9971313476562,10.825821,10825.821 +25423,2025-03-10T05:25:07.358118-07:00,997.0050659179688,10.832906,10832.906 +25424,2025-03-10T05:25:18.200453-07:00,997.032470703125,10.842335,10842.335 +25425,2025-03-10T05:25:29.030367-07:00,996.9984130859375,10.829914,10829.914 +25426,2025-03-10T05:25:39.861380-07:00,996.986328125,10.831013,10831.013 +25427,2025-03-10T05:25:50.703453-07:00,996.966552734375,10.842073,10842.073 +25428,2025-03-10T05:26:01.526182-07:00,997.001953125,10.822729,10822.729 +25429,2025-03-10T05:26:12.364473-07:00,996.9967041015625,10.838291,10838.291 +25430,2025-03-10T05:26:23.190120-07:00,996.9755249023438,10.825647,10825.647 +25431,2025-03-10T05:26:34.021695-07:00,996.982177734375,10.831575,10831.575 +25432,2025-03-10T05:26:44.864168-07:00,996.9977416992188,10.842473,10842.473 +25433,2025-03-10T05:26:55.697254-07:00,996.9647827148438,10.833086,10833.086 +25434,2025-03-10T05:27:06.527635-07:00,997.0067138671875,10.830381,10830.381 +25435,2025-03-10T05:27:17.354126-07:00,996.9737548828125,10.826491,10826.491 +25436,2025-03-10T05:27:28.191431-07:00,996.9924926757812,10.837305,10837.305 +25437,2025-03-10T05:27:39.022321-07:00,996.9793701171875,10.83089,10830.89 +25438,2025-03-10T05:27:49.856486-07:00,996.9804077148438,10.834165,10834.165 +25439,2025-03-10T05:28:00.698309-07:00,996.9949340820312,10.841823,10841.823 +25440,2025-03-10T05:28:11.528122-07:00,996.9935913085938,10.829813,10829.813 +25441,2025-03-10T05:28:22.352564-07:00,996.98828125,10.824442,10824.442 +25442,2025-03-10T05:28:33.183366-07:00,996.9910888671875,10.830802,10830.802 +25443,2025-03-10T05:28:44.027471-07:00,996.9827880859375,10.844105,10844.105 +25444,2025-03-10T05:28:54.862624-07:00,996.9893798828125,10.835153,10835.153 +25445,2025-03-10T05:29:05.693124-07:00,996.977783203125,10.8305,10830.5 +25446,2025-03-10T05:29:16.521192-07:00,996.9802856445312,10.828068,10828.068 +25447,2025-03-10T05:29:27.340979-07:00,996.967041015625,10.819787,10819.787 +25448,2025-03-10T05:29:38.184065-07:00,997.0087280273438,10.843086,10843.086 +25449,2025-03-10T05:29:49.016205-07:00,996.9548950195312,10.83214,10832.14 +25450,2025-03-10T05:29:59.846477-07:00,996.9813232421875,10.830272,10830.272 +25451,2025-03-10T05:30:10.668118-07:00,996.9757690429688,10.821641,10821.641 +25452,2025-03-10T05:30:21.498606-07:00,997.0035400390625,10.830488,10830.488 +25453,2025-03-10T05:30:32.336126-07:00,996.9705200195312,10.83752,10837.52 +25454,2025-03-10T05:30:43.163713-07:00,996.96923828125,10.827587,10827.587 +25455,2025-03-10T05:30:54.007148-07:00,996.9650268554688,10.843435,10843.435 +25456,2025-03-10T05:31:04.842105-07:00,996.9729614257812,10.834957,10834.957 +25457,2025-03-10T05:31:15.668784-07:00,996.9837646484375,10.826679,10826.679 +25458,2025-03-10T05:31:26.504368-07:00,996.9729614257812,10.835584,10835.584 +25459,2025-03-10T05:31:37.333459-07:00,996.9993896484375,10.829091,10829.091 +25460,2025-03-10T05:31:48.169121-07:00,996.9847412109375,10.835662,10835.662 +25461,2025-03-10T05:31:59.001443-07:00,996.9781494140625,10.832322,10832.322 +25462,2025-03-10T05:32:09.838747-07:00,996.9739990234375,10.837304,10837.304 +25463,2025-03-10T05:32:20.661380-07:00,996.953125,10.822633,10822.633 +25464,2025-03-10T05:32:31.503443-07:00,996.9597778320312,10.842063,10842.063 +25465,2025-03-10T05:32:42.325679-07:00,996.9542236328125,10.822236,10822.236 +25466,2025-03-10T05:32:53.160430-07:00,996.9739990234375,10.834751,10834.751 +25467,2025-03-10T05:33:03.997104-07:00,996.96875,10.836674,10836.674 +25468,2025-03-10T05:33:14.819852-07:00,996.9896240234375,10.822748,10822.748 +25469,2025-03-10T05:33:25.650128-07:00,996.95556640625,10.830276,10830.276 +25470,2025-03-10T05:33:36.482231-07:00,996.975341796875,10.832103,10832.103 +25471,2025-03-10T05:33:47.322962-07:00,996.9951782226562,10.840731,10840.731 +25472,2025-03-10T05:33:58.156104-07:00,996.99755859375,10.833142,10833.142 +25473,2025-03-10T05:34:08.999824-07:00,996.9698486328125,10.84372,10843.72 +25474,2025-03-10T05:34:19.832209-07:00,997.017333984375,10.832385,10832.385 +25475,2025-03-10T05:34:30.667120-07:00,997.017333984375,10.834911,10834.911 +25476,2025-03-10T05:34:41.494615-07:00,997.0225830078125,10.827495,10827.495 +25477,2025-03-10T05:34:52.328368-07:00,997.0292358398438,10.833753,10833.753 +25478,2025-03-10T05:35:03.164353-07:00,996.9962768554688,10.835985,10835.985 +25479,2025-03-10T05:35:14.003670-07:00,997.0028076171875,10.839317,10839.317 +25480,2025-03-10T05:35:24.839667-07:00,997.0225830078125,10.835997,10835.997 +25481,2025-03-10T05:35:35.664918-07:00,997.0093994140625,10.825251,10825.251 +25482,2025-03-10T05:35:46.498121-07:00,997.0159301757812,10.833203,10833.203 +25483,2025-03-10T05:35:57.340139-07:00,996.95556640625,10.842018,10842.018 +25484,2025-03-10T05:36:08.171310-07:00,996.99755859375,10.831171,10831.171 +25485,2025-03-10T05:36:19.004400-07:00,997.030517578125,10.83309,10833.09 +25486,2025-03-10T05:36:29.834809-07:00,997.0108032226562,10.830409,10830.409 +25487,2025-03-10T05:36:40.677118-07:00,996.99755859375,10.842309,10842.309 +25488,2025-03-10T05:36:51.509167-07:00,996.98193359375,10.832049,10832.049 +25489,2025-03-10T05:37:02.355491-07:00,997.004150390625,10.846324,10846.324 +25490,2025-03-10T05:37:13.185423-07:00,996.9698486328125,10.829932,10829.932 +25491,2025-03-10T05:37:24.022445-07:00,997.0250244140625,10.837022,10837.022 +25492,2025-03-10T05:37:34.863405-07:00,997.030517578125,10.84096,10840.96 +25493,2025-03-10T05:37:45.691361-07:00,996.9896240234375,10.827956,10827.956 +25494,2025-03-10T05:37:56.520471-07:00,996.9866943359375,10.82911,10829.11 +25495,2025-03-10T05:38:07.355121-07:00,997.0184326171875,10.83465,10834.65 +25496,2025-03-10T05:38:18.174952-07:00,997.0,10.819831,10819.831 +25497,2025-03-10T05:38:29.006447-07:00,996.9656372070312,10.831495,10831.495 +25498,2025-03-10T05:38:39.839727-07:00,997.0076293945312,10.83328,10833.28 +25499,2025-03-10T05:38:50.662868-07:00,996.9603881835938,10.823141,10823.141 +25500,2025-03-10T05:39:01.490638-07:00,996.9429931640625,10.82777,10827.77 +25501,2025-03-10T05:39:12.316186-07:00,996.9483032226562,10.825548,10825.548 +25502,2025-03-10T05:39:23.154410-07:00,996.9349975585938,10.838224,10838.224 +25503,2025-03-10T05:39:33.987103-07:00,996.9628295898438,10.832693,10832.693 +25504,2025-03-10T05:39:44.817547-07:00,996.9826049804688,10.830444,10830.444 +25505,2025-03-10T05:39:55.644366-07:00,996.9572143554688,10.826819,10826.819 +25506,2025-03-10T05:40:06.484354-07:00,996.9784545898438,10.839988,10839.988 +25507,2025-03-10T05:40:17.313469-07:00,996.9520263671875,10.829115,10829.115 +25508,2025-03-10T05:40:28.141370-07:00,996.9255981445312,10.827901,10827.901 +25509,2025-03-10T05:40:38.964125-07:00,996.9784545898438,10.822755,10822.755 +25510,2025-03-10T05:40:49.796428-07:00,996.97705078125,10.832303,10832.303 +25511,2025-03-10T05:41:00.622655-07:00,996.9676513671875,10.826227,10826.227 +25512,2025-03-10T05:41:11.460277-07:00,996.9609985351562,10.837622,10837.622 +25513,2025-03-10T05:41:22.292780-07:00,996.954345703125,10.832503,10832.503 +25514,2025-03-10T05:41:33.113127-07:00,996.9489135742188,10.820347,10820.347 +25515,2025-03-10T05:41:43.946170-07:00,996.9609985351562,10.833043,10833.043 +25516,2025-03-10T05:41:54.776478-07:00,996.9818725585938,10.830308,10830.308 +25517,2025-03-10T05:42:05.604884-07:00,996.9620361328125,10.828406,10828.406 +25518,2025-03-10T05:42:16.449353-07:00,996.9776611328125,10.844469,10844.469 +25519,2025-03-10T05:42:27.284383-07:00,996.9512329101562,10.83503,10835.03 +25520,2025-03-10T05:42:38.110195-07:00,996.956787109375,10.825812,10825.812 +25521,2025-03-10T05:42:48.940439-07:00,996.9536743164062,10.830244,10830.244 +25522,2025-03-10T05:42:59.777650-07:00,996.9613037109375,10.837211,10837.211 +25523,2025-03-10T05:43:10.612125-07:00,996.9613037109375,10.834475,10834.475 +25524,2025-03-10T05:43:21.440440-07:00,996.9296875,10.828315,10828.315 +25525,2025-03-10T05:43:32.281120-07:00,996.9282836914062,10.84068,10840.68 +25526,2025-03-10T05:43:43.117198-07:00,996.936279296875,10.836078,10836.078 +25527,2025-03-10T05:43:53.947116-07:00,996.923095703125,10.829918,10829.918 +25528,2025-03-10T05:44:04.784103-07:00,996.91748046875,10.836987,10836.987 +25529,2025-03-10T05:44:15.611713-07:00,996.93212890625,10.82761,10827.61 +25530,2025-03-10T05:44:26.454304-07:00,996.9109497070312,10.842591,10842.591 +25531,2025-03-10T05:44:37.286304-07:00,996.9109497070312,10.832,10832.0 +25532,2025-03-10T05:44:48.124422-07:00,996.9254760742188,10.838118,10838.118 +25533,2025-03-10T05:44:58.955247-07:00,996.9109497070312,10.830825,10830.825 +25534,2025-03-10T05:45:09.790154-07:00,996.90673828125,10.834907,10834.907 +25535,2025-03-10T05:45:20.625173-07:00,996.9043579101562,10.835019,10835.019 +25536,2025-03-10T05:45:31.450453-07:00,996.9188842773438,10.82528,10825.28 +25537,2025-03-10T05:45:42.285414-07:00,996.9014892578125,10.834961,10834.961 +25538,2025-03-10T05:45:53.120511-07:00,996.9435424804688,10.835097,10835.097 +25539,2025-03-10T05:46:03.956177-07:00,996.9104614257812,10.835666,10835.666 +25540,2025-03-10T05:46:14.796510-07:00,996.8643188476562,10.840333,10840.333 +25541,2025-03-10T05:46:25.626434-07:00,996.9063110351562,10.829924,10829.924 +25542,2025-03-10T05:46:36.467461-07:00,996.9073486328125,10.841027,10841.027 +25543,2025-03-10T05:46:47.299122-07:00,996.915283203125,10.831661,10831.661 +25544,2025-03-10T05:46:58.134109-07:00,996.9229736328125,10.834987,10834.987 +25545,2025-03-10T05:47:08.964165-07:00,996.9229736328125,10.830056,10830.056 +25546,2025-03-10T05:47:19.796392-07:00,996.904541015625,10.832227,10832.227 +25547,2025-03-10T05:47:30.639120-07:00,996.9428100585938,10.842728,10842.728 +25548,2025-03-10T05:47:41.468126-07:00,996.9121704101562,10.829006,10829.006 +25549,2025-03-10T05:47:52.293385-07:00,996.9121704101562,10.825259,10825.259 +25550,2025-03-10T05:48:03.124115-07:00,996.9266967773438,10.83073,10830.73 +25551,2025-03-10T05:48:13.953119-07:00,996.9068603515625,10.829004,10829.004 +25552,2025-03-10T05:48:24.796014-07:00,996.920166015625,10.842895,10842.895 +25553,2025-03-10T05:48:35.632191-07:00,996.9156494140625,10.836177,10836.177 +25554,2025-03-10T05:48:46.466366-07:00,996.9266967773438,10.834175,10834.175 +25555,2025-03-10T05:48:57.290190-07:00,996.9024047851562,10.823824,10823.824 +25556,2025-03-10T05:49:08.112192-07:00,996.921142578125,10.822002,10822.002 +25557,2025-03-10T05:49:18.944351-07:00,996.943359375,10.832159,10832.159 +25558,2025-03-10T05:49:29.779292-07:00,996.921142578125,10.834941,10834.941 +25559,2025-03-10T05:49:40.611123-07:00,996.9090576171875,10.831831,10831.831 +25560,2025-03-10T05:49:51.450627-07:00,996.9170532226562,10.839504,10839.504 +25561,2025-03-10T05:50:02.284706-07:00,996.9090576171875,10.834079,10834.079 +25562,2025-03-10T05:50:13.120123-07:00,996.9024047851562,10.835417,10835.417 +25563,2025-03-10T05:50:23.949378-07:00,996.907958984375,10.829255,10829.255 +25564,2025-03-10T05:50:34.784344-07:00,996.923583984375,10.834966,10834.966 +25565,2025-03-10T05:50:45.619461-07:00,996.9312744140625,10.835117,10835.117 +25566,2025-03-10T05:50:56.451645-07:00,996.9170532226562,10.832184,10832.184 +25567,2025-03-10T05:51:07.282166-07:00,996.93017578125,10.830521,10830.521 +25568,2025-03-10T05:51:18.127121-07:00,996.93017578125,10.844955,10844.955 +25569,2025-03-10T05:51:28.960147-07:00,996.910400390625,10.833026,10833.026 +25570,2025-03-10T05:51:39.790652-07:00,996.9221801757812,10.830505,10830.505 +25571,2025-03-10T05:51:50.623408-07:00,996.910400390625,10.832756,10832.756 +25572,2025-03-10T05:52:01.462241-07:00,996.890625,10.838833,10838.833 +25573,2025-03-10T05:52:12.308387-07:00,996.910400390625,10.846146,10846.146 +25574,2025-03-10T05:52:23.139392-07:00,996.911376953125,10.831005,10831.005 +25575,2025-03-10T05:52:33.975738-07:00,996.890625,10.836346,10836.346 +25576,2025-03-10T05:52:44.806964-07:00,996.9325561523438,10.831226,10831.226 +25577,2025-03-10T05:52:55.640360-07:00,996.939208984375,10.833396,10833.396 +25578,2025-03-10T05:53:06.465379-07:00,996.9509887695312,10.825019,10825.019 +25579,2025-03-10T05:53:17.301175-07:00,996.9443969726562,10.835796,10835.796 +25580,2025-03-10T05:53:28.134729-07:00,996.9170532226562,10.833554,10833.554 +25581,2025-03-10T05:53:38.974095-07:00,996.9259643554688,10.839366,10839.366 +25582,2025-03-10T05:53:49.800455-07:00,996.9378051757812,10.82636,10826.36 +25583,2025-03-10T05:54:00.641122-07:00,996.9170532226562,10.840667,10840.667 +25584,2025-03-10T05:54:11.477502-07:00,996.9193725585938,10.83638,10836.38 +25585,2025-03-10T05:54:22.306617-07:00,996.911376953125,10.829115,10829.115 +25586,2025-03-10T05:54:33.142430-07:00,996.9523315429688,10.835813,10835.813 +25587,2025-03-10T05:54:43.975152-07:00,996.9468994140625,10.832722,10832.722 +25588,2025-03-10T05:54:54.805133-07:00,996.9732666015625,10.829981,10829.981 +25589,2025-03-10T05:55:05.634121-07:00,996.9246215820312,10.828988,10828.988 +25590,2025-03-10T05:55:16.475325-07:00,996.9193725585938,10.841204,10841.204 +25591,2025-03-10T05:55:27.308430-07:00,996.9325561523438,10.833105,10833.105 +25592,2025-03-10T05:55:38.143174-07:00,996.927001953125,10.834744,10834.744 +25593,2025-03-10T05:55:48.975388-07:00,996.93359375,10.832214,10832.214 +25594,2025-03-10T05:55:59.807431-07:00,996.9481201171875,10.832043,10832.043 +25595,2025-03-10T05:56:10.635629-07:00,996.9402465820312,10.828198,10828.198 +25596,2025-03-10T05:56:21.477483-07:00,996.942626953125,10.841854,10841.854 +25597,2025-03-10T05:56:32.308126-07:00,996.96240234375,10.830643,10830.643 +25598,2025-03-10T05:56:43.142983-07:00,996.9227905273438,10.834857,10834.857 +25599,2025-03-10T05:56:53.977619-07:00,996.9373168945312,10.834636,10834.636 +25600,2025-03-10T05:57:04.820432-07:00,996.931884765625,10.842813,10842.813 +25601,2025-03-10T05:57:15.642151-07:00,996.9397583007812,10.821719,10821.719 +25602,2025-03-10T05:57:26.480280-07:00,996.9464111328125,10.838129,10838.129 +25603,2025-03-10T05:57:37.323104-07:00,996.900146484375,10.842824,10842.824 +25604,2025-03-10T05:57:48.159415-07:00,996.9342041015625,10.836311,10836.311 +25605,2025-03-10T05:57:58.987314-07:00,996.9342041015625,10.827899,10827.899 +25606,2025-03-10T05:58:09.824174-07:00,996.8959350585938,10.83686,10836.86 +25607,2025-03-10T05:58:20.659116-07:00,996.92236328125,10.834942,10834.942 +25608,2025-03-10T05:58:31.501270-07:00,996.9234619140625,10.842154,10842.154 +25609,2025-03-10T05:58:42.336745-07:00,996.8970336914062,10.835475,10835.475 +25610,2025-03-10T05:58:53.179776-07:00,996.903564453125,10.843031,10843.031 +25611,2025-03-10T05:59:04.016108-07:00,996.93798828125,10.836332,10836.332 +25612,2025-03-10T05:59:14.847223-07:00,996.9115600585938,10.831115,10831.115 +25613,2025-03-10T05:59:25.679114-07:00,996.8970336914062,10.831891,10831.891 +25614,2025-03-10T05:59:36.508528-07:00,996.8984375,10.829414,10829.414 +25615,2025-03-10T05:59:47.345216-07:00,996.9248657226562,10.836688,10836.688 +25616,2025-03-10T05:59:58.179566-07:00,996.9115600585938,10.83435,10834.35 +25617,2025-03-10T06:00:09.011437-07:00,996.8994750976562,10.831871,10831.871 +25618,2025-03-10T06:00:19.837104-07:00,996.9140014648438,10.825667,10825.667 +25619,2025-03-10T06:00:30.674235-07:00,996.9007568359375,10.837131,10837.131 +25620,2025-03-10T06:00:41.506122-07:00,996.8743896484375,10.831887,10831.887 +25621,2025-03-10T06:00:52.338455-07:00,996.9160766601562,10.832333,10832.333 +25622,2025-03-10T06:01:03.163178-07:00,996.8875732421875,10.824723,10824.723 +25623,2025-03-10T06:01:13.995126-07:00,996.908447265625,10.831948,10831.948 +25624,2025-03-10T06:01:24.828215-07:00,996.9028930664062,10.833089,10833.089 +25625,2025-03-10T06:01:35.654487-07:00,996.8886108398438,10.826272,10826.272 +25626,2025-03-10T06:01:46.489534-07:00,996.9107666015625,10.835047,10835.047 +25627,2025-03-10T06:01:57.310394-07:00,996.9042358398438,10.82086,10820.86 +25628,2025-03-10T06:02:08.152438-07:00,996.869873046875,10.842044,10842.044 +25629,2025-03-10T06:02:18.987106-07:00,996.9042358398438,10.834668,10834.668 +25630,2025-03-10T06:02:29.818145-07:00,996.911865234375,10.831039,10831.039 +25631,2025-03-10T06:02:40.649354-07:00,996.911865234375,10.831209,10831.209 +25632,2025-03-10T06:02:51.482120-07:00,996.9053344726562,10.832766,10832.766 +25633,2025-03-10T06:03:02.319601-07:00,996.9053344726562,10.837481,10837.481 +25634,2025-03-10T06:03:13.156130-07:00,996.9066162109375,10.836529,10836.529 +25635,2025-03-10T06:03:23.988178-07:00,996.9330444335938,10.832048,10832.048 +25636,2025-03-10T06:03:34.827437-07:00,996.8712768554688,10.839259,10839.259 +25637,2025-03-10T06:03:45.662177-07:00,996.9263916015625,10.83474,10834.74 +25638,2025-03-10T06:03:56.495395-07:00,996.9066162109375,10.833218,10833.218 +25639,2025-03-10T06:04:07.326124-07:00,996.885498046875,10.830729,10830.729 +25640,2025-03-10T06:04:18.168729-07:00,996.8920288085938,10.842605,10842.605 +25641,2025-03-10T06:04:29.000927-07:00,996.9288330078125,10.832198,10832.198 +25642,2025-03-10T06:04:39.843649-07:00,996.9076538085938,10.842722,10842.722 +25643,2025-03-10T06:04:50.678127-07:00,996.9076538085938,10.834478,10834.478 +25644,2025-03-10T06:05:01.514699-07:00,996.901123046875,10.836572,10836.572 +25645,2025-03-10T06:05:12.351299-07:00,996.9246826171875,10.8366,10836.6 +25646,2025-03-10T06:05:23.178451-07:00,996.943115234375,10.827152,10827.152 +25647,2025-03-10T06:05:34.025576-07:00,996.9100952148438,10.847125,10847.125 +25648,2025-03-10T06:05:44.893414-07:00,996.8892211914062,10.867838,10867.838 +25649,2025-03-10T06:05:55.721934-07:00,996.916748046875,10.82852,10828.52 +25650,2025-03-10T06:06:06.556572-07:00,996.9232788085938,10.834638,10834.638 +25651,2025-03-10T06:06:17.396886-07:00,996.9298706054688,10.840314,10840.314 +25652,2025-03-10T06:06:28.231732-07:00,996.8892211914062,10.834846,10834.846 +25653,2025-03-10T06:06:39.063800-07:00,996.9180297851562,10.832068,10832.068 +25654,2025-03-10T06:06:49.906551-07:00,996.9232788085938,10.842751,10842.751 +25655,2025-03-10T06:07:00.739869-07:00,996.9389038085938,10.833318,10833.318 +25656,2025-03-10T06:07:11.562892-07:00,996.9378051757812,10.823023,10823.023 +25657,2025-03-10T06:07:22.395607-07:00,996.9090576171875,10.832715,10832.715 +25658,2025-03-10T06:07:33.232574-07:00,996.9774169921875,10.836967,10836.967 +25659,2025-03-10T06:07:44.065886-07:00,996.9156494140625,10.833312,10833.312 +25660,2025-03-10T06:07:54.898750-07:00,996.9354858398438,10.832864,10832.864 +25661,2025-03-10T06:08:05.729285-07:00,996.9232788085938,10.830535,10830.535 +25662,2025-03-10T06:08:16.566570-07:00,996.916748046875,10.837285,10837.285 +25663,2025-03-10T06:08:27.392674-07:00,996.943115234375,10.826104,10826.104 +25664,2025-03-10T06:08:38.223618-07:00,996.9076538085938,10.830944,10830.944 +25665,2025-03-10T06:08:49.057550-07:00,996.9420166015625,10.833932,10833.932 +25666,2025-03-10T06:08:59.887838-07:00,996.9684448242188,10.830288,10830.288 +25667,2025-03-10T06:09:10.711672-07:00,996.9552612304688,10.823834,10823.834 +25668,2025-03-10T06:09:21.551825-07:00,996.9371948242188,10.840153,10840.153 +25669,2025-03-10T06:09:32.375706-07:00,996.9317016601562,10.823881,10823.881 +25670,2025-03-10T06:09:43.209871-07:00,996.94482421875,10.834165,10834.165 +25671,2025-03-10T06:09:54.053570-07:00,996.9306030273438,10.843699,10843.699 +25672,2025-03-10T06:10:04.884550-07:00,996.924072265625,10.83098,10830.98 +25673,2025-03-10T06:10:15.708616-07:00,996.9359130859375,10.824066,10824.066 +25674,2025-03-10T06:10:26.536818-07:00,996.9556884765625,10.828202,10828.202 +25675,2025-03-10T06:10:37.367727-07:00,996.9556884765625,10.830909,10830.909 +25676,2025-03-10T06:10:48.195633-07:00,996.95361328125,10.827906,10827.906 +25677,2025-03-10T06:10:59.021546-07:00,996.9678344726562,10.825913,10825.913 +25678,2025-03-10T06:11:09.857678-07:00,996.9547119140625,10.836132,10836.132 +25679,2025-03-10T06:11:20.684526-07:00,996.9556884765625,10.826848,10826.848 +25680,2025-03-10T06:11:31.508825-07:00,996.9689331054688,10.824299,10824.299 +25681,2025-03-10T06:11:42.334831-07:00,996.9547119140625,10.826006,10826.006 +25682,2025-03-10T06:11:53.172574-07:00,996.947021484375,10.837743,10837.743 +25683,2025-03-10T06:12:03.999698-07:00,996.9810791015625,10.827124,10827.124 +25684,2025-03-10T06:12:14.831572-07:00,996.9785766601562,10.831874,10831.874 +25685,2025-03-10T06:12:25.662912-07:00,996.9841918945312,10.83134,10831.34 +25686,2025-03-10T06:12:36.488012-07:00,996.966796875,10.8251,10825.1 +25687,2025-03-10T06:12:47.326826-07:00,996.918212890625,10.838814,10838.814 +25688,2025-03-10T06:12:58.152562-07:00,996.9932250976562,10.825736,10825.736 +25689,2025-03-10T06:13:08.977211-07:00,996.9654541015625,10.824649,10824.649 +25690,2025-03-10T06:13:19.809670-07:00,996.951171875,10.832459,10832.459 +25691,2025-03-10T06:13:30.635719-07:00,996.9522094726562,10.826049,10826.049 +25692,2025-03-10T06:13:41.461567-07:00,996.9852294921875,10.825848,10825.848 +25693,2025-03-10T06:13:52.293713-07:00,996.9998168945312,10.832146,10832.146 +25694,2025-03-10T06:14:03.120892-07:00,996.9720458984375,10.827179,10827.179 +25695,2025-03-10T06:14:13.950300-07:00,997.0050048828125,10.829408,10829.408 +25696,2025-03-10T06:14:24.776897-07:00,996.9654541015625,10.826597,10826.597 +25697,2025-03-10T06:14:35.603624-07:00,996.9932250976562,10.826727,10826.727 +25698,2025-03-10T06:14:46.430751-07:00,996.9785766601562,10.827127,10827.127 +25699,2025-03-10T06:14:57.256745-07:00,997.0172119140625,10.825994,10825.994 +25700,2025-03-10T06:15:08.090580-07:00,996.997314453125,10.833835,10833.835 +25701,2025-03-10T06:15:18.919760-07:00,997.0116577148438,10.82918,10829.18 +25702,2025-03-10T06:15:29.733398-07:00,996.9827880859375,10.813638,10813.638 +25703,2025-03-10T06:15:40.564565-07:00,997.0050048828125,10.831167,10831.167 +25704,2025-03-10T06:15:51.385392-07:00,996.9918823242188,10.820827,10820.827 +25705,2025-03-10T06:16:02.212571-07:00,996.9841918945312,10.827179,10827.179 +25706,2025-03-10T06:16:13.043512-07:00,997.0039672851562,10.830941,10830.941 +25707,2025-03-10T06:16:23.873801-07:00,997.0314331054688,10.830289,10830.289 +25708,2025-03-10T06:16:34.689944-07:00,996.9984130859375,10.816143,10816.143 +25709,2025-03-10T06:16:45.521618-07:00,996.997314453125,10.831674,10831.674 +25710,2025-03-10T06:16:56.344559-07:00,996.9907836914062,10.822941,10822.941 +25711,2025-03-10T06:17:07.174549-07:00,997.0092163085938,10.82999,10829.99 +25712,2025-03-10T06:17:18.005577-07:00,997.002685546875,10.831028,10831.028 +25713,2025-03-10T06:17:28.836605-07:00,997.03564453125,10.831028,10831.028 +25714,2025-03-10T06:17:39.661816-07:00,997.0225219726562,10.825211,10825.211 +25715,2025-03-10T06:17:50.486056-07:00,997.0214233398438,10.82424,10824.24 +25716,2025-03-10T06:18:01.320563-07:00,997.0068969726562,10.834507,10834.507 +25717,2025-03-10T06:18:12.146939-07:00,997.0477905273438,10.826376,10826.376 +25718,2025-03-10T06:18:22.974800-07:00,997.0123291015625,10.827861,10827.861 +25719,2025-03-10T06:18:33.797912-07:00,997.0189819335938,10.823112,10823.112 +25720,2025-03-10T06:18:44.630678-07:00,997.02001953125,10.832766,10832.766 +25721,2025-03-10T06:18:55.455823-07:00,997.0044555664062,10.825145,10825.145 +25722,2025-03-10T06:19:06.284252-07:00,997.0165405273438,10.828429,10828.429 +25723,2025-03-10T06:19:17.113855-07:00,997.0165405273438,10.829603,10829.603 +25724,2025-03-10T06:19:27.944367-07:00,997.0165405273438,10.830512,10830.512 +25725,2025-03-10T06:19:38.777890-07:00,996.9901733398438,10.833523,10833.523 +25726,2025-03-10T06:19:49.610550-07:00,997.0020141601562,10.83266,10832.66 +25727,2025-03-10T06:20:00.435972-07:00,996.9846801757812,10.825422,10825.422 +25728,2025-03-10T06:20:11.271691-07:00,997.0057983398438,10.835719,10835.719 +25729,2025-03-10T06:20:22.100797-07:00,997.00341796875,10.829106,10829.106 +25730,2025-03-10T06:20:32.935469-07:00,996.997802734375,10.834672,10834.672 +25731,2025-03-10T06:20:54.586617-07:00,997.0068969726562,21.651148,21651.148 +25732,2025-03-10T06:21:05.414179-07:00,997.0279541015625,10.827562,10827.562 +25733,2025-03-10T06:21:16.252261-07:00,996.997802734375,10.838082,10838.082 +25734,2025-03-10T06:21:27.071630-07:00,996.997802734375,10.819369,10819.369 +25735,2025-03-10T06:21:37.904629-07:00,997.0057983398438,10.832999,10832.999 +25736,2025-03-10T06:21:48.729622-07:00,996.9540405273438,10.824993,10824.993 +25737,2025-03-10T06:21:59.566992-07:00,997.0148315429688,10.83737,10837.37 +25738,2025-03-10T06:22:10.386667-07:00,996.98046875,10.819675,10819.675 +25739,2025-03-10T06:22:21.222744-07:00,996.9827880859375,10.836077,10836.077 +25740,2025-03-10T06:22:32.049741-07:00,996.99609375,10.826997,10826.997 +25741,2025-03-10T06:22:42.878328-07:00,997.018310546875,10.828587,10828.587 +25742,2025-03-10T06:22:53.708563-07:00,997.002685546875,10.830235,10830.235 +25743,2025-03-10T06:23:04.533594-07:00,996.9884643554688,10.825031,10825.031 +25744,2025-03-10T06:23:15.354908-07:00,997.0092163085938,10.821314,10821.314 +25745,2025-03-10T06:23:26.183798-07:00,997.0039672851562,10.82889,10828.89 +25746,2025-03-10T06:23:37.019572-07:00,997.0106201171875,10.835774,10835.774 +25747,2025-03-10T06:23:47.841571-07:00,996.9907836914062,10.821999,10821.999 +25748,2025-03-10T06:23:58.681554-07:00,996.9841918945312,10.839983,10839.983 +25749,2025-03-10T06:24:09.507551-07:00,997.002685546875,10.825997,10825.997 +25750,2025-03-10T06:24:20.338695-07:00,997.002685546875,10.831144,10831.144 +25751,2025-03-10T06:24:31.165085-07:00,997.044677734375,10.82639,10826.39 +25752,2025-03-10T06:24:41.996835-07:00,997.0039672851562,10.83175,10831.75 +25753,2025-03-10T06:24:52.818568-07:00,996.9907836914062,10.821733,10821.733 +25754,2025-03-10T06:25:03.648610-07:00,996.997314453125,10.830042,10830.042 +25755,2025-03-10T06:25:14.469804-07:00,997.0039672851562,10.821194,10821.194 +25756,2025-03-10T06:25:25.296848-07:00,997.0039672851562,10.827044,10827.044 +25757,2025-03-10T06:25:36.127569-07:00,996.9918823242188,10.830721,10830.721 +25758,2025-03-10T06:25:46.948948-07:00,996.970947265625,10.821379,10821.379 +25759,2025-03-10T06:25:57.779705-07:00,997.0050048828125,10.830757,10830.757 +25760,2025-03-10T06:26:08.605189-07:00,996.9852294921875,10.825484,10825.484 +25761,2025-03-10T06:26:19.442546-07:00,996.966796875,10.837357,10837.357 +25762,2025-03-10T06:26:30.270912-07:00,996.970947265625,10.828366,10828.366 +25763,2025-03-10T06:26:41.100572-07:00,996.9654541015625,10.82966,10829.66 +25764,2025-03-10T06:26:51.932182-07:00,996.9654541015625,10.83161,10831.61 +25765,2025-03-10T06:27:02.751800-07:00,996.97998046875,10.819618,10819.618 +25766,2025-03-10T06:27:13.584877-07:00,996.9734497070312,10.833077,10833.077 +25767,2025-03-10T06:27:24.411620-07:00,996.9734497070312,10.826743,10826.743 +25768,2025-03-10T06:27:35.235935-07:00,996.9876708984375,10.824315,10824.315 +25769,2025-03-10T06:27:46.067431-07:00,996.9821166992188,10.831496,10831.496 +25770,2025-03-10T06:27:56.895904-07:00,996.9953002929688,10.828473,10828.473 +25771,2025-03-10T06:28:07.730559-07:00,996.9768676757812,10.834655,10834.655 +25772,2025-03-10T06:28:18.554833-07:00,996.9623413085938,10.824274,10824.274 +25773,2025-03-10T06:28:29.389546-07:00,996.9754638671875,10.834713,10834.713 +25774,2025-03-10T06:28:40.220879-07:00,997.0032958984375,10.831333,10831.333 +25775,2025-03-10T06:28:51.048405-07:00,996.9779052734375,10.827526,10827.526 +25776,2025-03-10T06:29:01.877871-07:00,996.98583984375,10.829466,10829.466 +25777,2025-03-10T06:29:12.704791-07:00,997.0000610351562,10.82692,10826.92 +25778,2025-03-10T06:29:23.541564-07:00,996.994873046875,10.836773,10836.773 +25779,2025-03-10T06:29:34.379831-07:00,996.9868774414062,10.838267,10838.267 +25780,2025-03-10T06:29:45.205577-07:00,996.98828125,10.825746,10825.746 +25781,2025-03-10T06:29:56.039089-07:00,997.009033203125,10.833512,10833.512 +25782,2025-03-10T06:30:06.869563-07:00,997.0354614257812,10.830474,10830.474 +25783,2025-03-10T06:30:17.702836-07:00,997.0156860351562,10.833273,10833.273 +25784,2025-03-10T06:30:28.531566-07:00,997.0302124023438,10.82873,10828.73 +25785,2025-03-10T06:30:39.364961-07:00,997.04345703125,10.833395,10833.395 +25786,2025-03-10T06:30:50.179789-07:00,997.009033203125,10.814828,10814.828 +25787,2025-03-10T06:31:01.005066-07:00,997.056640625,10.825277,10825.277 +25788,2025-03-10T06:31:11.844569-07:00,997.0236206054688,10.839503,10839.503 +25789,2025-03-10T06:31:22.668985-07:00,997.0170288085938,10.824416,10824.416 +25790,2025-03-10T06:31:33.499822-07:00,997.011474609375,10.830837,10830.837 +25791,2025-03-10T06:31:44.327696-07:00,997.010498046875,10.827874,10827.874 +25792,2025-03-10T06:31:55.159892-07:00,997.0302124023438,10.832196,10832.196 +25793,2025-03-10T06:32:05.984222-07:00,997.0181274414062,10.82433,10824.33 +25794,2025-03-10T06:32:16.813817-07:00,997.0458374023438,10.829595,10829.595 +25795,2025-03-10T06:32:27.648860-07:00,997.0798950195312,10.835043,10835.043 +25796,2025-03-10T06:32:38.474566-07:00,997.052490234375,10.825706,10825.706 +25797,2025-03-10T06:32:49.293548-07:00,997.0062255859375,10.818982,10818.982 +25798,2025-03-10T06:33:00.120565-07:00,997.0170288085938,10.827017,10827.017 +25799,2025-03-10T06:33:10.950909-07:00,997.046875,10.830344,10830.344 +25800,2025-03-10T06:33:21.777240-07:00,997.092041015625,10.826331,10826.331 +25801,2025-03-10T06:33:32.609569-07:00,997.0667114257812,10.832329,10832.329 +25802,2025-03-10T06:33:43.431569-07:00,997.0194702148438,10.822,10822.0 +25803,2025-03-10T06:33:54.266910-07:00,997.0482788085938,10.835341,10835.341 +25804,2025-03-10T06:34:05.095569-07:00,997.05908203125,10.828659,10828.659 +25805,2025-03-10T06:34:15.916569-07:00,997.027099609375,10.821,10821.0 +25806,2025-03-10T06:34:26.744624-07:00,997.0458374023438,10.828055,10828.055 +25807,2025-03-10T06:34:37.583618-07:00,997.03125,10.838994,10838.994 +25808,2025-03-10T06:34:48.412660-07:00,997.0614013671875,10.829042,10829.042 +25809,2025-03-10T06:34:59.246351-07:00,997.0535278320312,10.833691,10833.691 +25810,2025-03-10T06:35:10.075572-07:00,997.04931640625,10.829221,10829.221 +25811,2025-03-10T06:35:20.898612-07:00,997.055908203125,10.82304,10823.04 +25812,2025-03-10T06:35:31.717906-07:00,997.0218505859375,10.819294,10819.294 +25813,2025-03-10T06:35:42.545776-07:00,997.0416259765625,10.82787,10827.87 +25814,2025-03-10T06:35:53.370877-07:00,997.0228881835938,10.825101,10825.101 +25815,2025-03-10T06:36:04.201546-07:00,997.0242309570312,10.830669,10830.669 +25816,2025-03-10T06:36:15.034981-07:00,997.0385131835938,10.833435,10833.435 +25817,2025-03-10T06:36:25.859574-07:00,997.0530395507812,10.824593,10824.593 +25818,2025-03-10T06:36:36.693576-07:00,997.0242309570312,10.834002,10834.002 +25819,2025-03-10T06:36:47.522846-07:00,997.0332641601562,10.82927,10829.27 +25820,2025-03-10T06:36:58.347409-07:00,997.0398559570312,10.824563,10824.563 +25821,2025-03-10T06:37:09.172286-07:00,997.0343017578125,10.824877,10824.877 +25822,2025-03-10T06:37:19.998060-07:00,997.042236328125,10.825774,10825.774 +25823,2025-03-10T06:37:30.811890-07:00,997.0276489257812,10.81383,10813.83 +25824,2025-03-10T06:37:41.646620-07:00,997.0409545898438,10.83473,10834.73 +25825,2025-03-10T06:37:52.462984-07:00,997.042236328125,10.816364,10816.364 +25826,2025-03-10T06:38:03.293571-07:00,997.0409545898438,10.830587,10830.587 +25827,2025-03-10T06:38:14.113959-07:00,997.0225219726562,10.820388,10820.388 +25828,2025-03-10T06:38:24.947871-07:00,997.06201171875,10.833912,10833.912 +25829,2025-03-10T06:38:35.773892-07:00,997.0211181640625,10.826021,10826.021 +25830,2025-03-10T06:38:46.604575-07:00,997.0234375,10.830683,10830.683 +25831,2025-03-10T06:38:57.440895-07:00,997.0234375,10.83632,10836.32 +25832,2025-03-10T06:39:08.258567-07:00,997.0145263671875,10.817672,10817.672 +25833,2025-03-10T06:39:19.082952-07:00,996.9970092773438,10.824385,10824.385 +25834,2025-03-10T06:39:29.917736-07:00,997.0211181640625,10.834784,10834.784 +25835,2025-03-10T06:39:40.735708-07:00,997.015869140625,10.817972,10817.972 +25836,2025-03-10T06:39:51.563962-07:00,996.9894409179688,10.828254,10828.254 +25837,2025-03-10T06:40:02.388659-07:00,996.99609375,10.824697,10824.697 +25838,2025-03-10T06:40:13.216912-07:00,997.0300903320312,10.828253,10828.253 +25839,2025-03-10T06:40:24.055870-07:00,996.9935913085938,10.838958,10838.958 +25840,2025-03-10T06:40:34.877630-07:00,996.9815063476562,10.82176,10821.76 +25841,2025-03-10T06:40:45.707054-07:00,997.000244140625,10.829424,10829.424 +25842,2025-03-10T06:40:56.526820-07:00,997.0187377929688,10.819766,10819.766 +25843,2025-03-10T06:41:07.352801-07:00,997.0332641601562,10.825981,10825.981 +25844,2025-03-10T06:41:18.185926-07:00,997.0111083984375,10.833125,10833.125 +25845,2025-03-10T06:41:29.005581-07:00,997.0044555664062,10.819655,10819.655 +25846,2025-03-10T06:41:39.844376-07:00,997.0242309570312,10.838795,10838.795 +25847,2025-03-10T06:41:50.675574-07:00,997.0218505859375,10.831198,10831.198 +25848,2025-03-10T06:42:01.502914-07:00,997.0360717773438,10.82734,10827.34 +25849,2025-03-10T06:42:12.334017-07:00,997.0031127929688,10.831103,10831.103 +25850,2025-03-10T06:42:23.152147-07:00,997.0337524414062,10.81813,10818.13 +25851,2025-03-10T06:42:33.979548-07:00,997.0548706054688,10.827401,10827.401 +25852,2025-03-10T06:42:44.799555-07:00,997.0349731445312,10.820007,10820.007 +25853,2025-03-10T06:42:55.625884-07:00,997.040283203125,10.826329,10826.329 +25854,2025-03-10T06:43:06.456567-07:00,997.0284423828125,10.830683,10830.683 +25855,2025-03-10T06:43:17.285726-07:00,997.027099609375,10.829159,10829.159 +25856,2025-03-10T06:43:28.104645-07:00,997.026123046875,10.818919,10818.919 +25857,2025-03-10T06:43:38.937095-07:00,997.0548706054688,10.83245,10832.45 +25858,2025-03-10T06:43:49.766127-07:00,997.0535278320312,10.829032,10829.032 +25859,2025-03-10T06:44:00.588156-07:00,997.0667114257812,10.822029,10822.029 +25860,2025-03-10T06:44:11.413698-07:00,997.0535278320312,10.825542,10825.542 +25861,2025-03-10T06:44:22.233672-07:00,997.0218505859375,10.819974,10819.974 +25862,2025-03-10T06:44:33.057875-07:00,997.0284423828125,10.824203,10824.203 +25863,2025-03-10T06:44:43.881707-07:00,997.0349731445312,10.823832,10823.832 +25864,2025-03-10T06:44:54.707450-07:00,997.0349731445312,10.825743,10825.743 +25865,2025-03-10T06:45:05.536622-07:00,997.055908203125,10.829172,10829.172 +25866,2025-03-10T06:45:16.356643-07:00,997.0337524414062,10.820021,10820.021 +25867,2025-03-10T06:45:27.173912-07:00,997.0349731445312,10.817269,10817.269 +25868,2025-03-10T06:45:37.999572-07:00,997.0360717773438,10.82566,10825.66 +25869,2025-03-10T06:45:48.825155-07:00,997.0284423828125,10.825583,10825.583 +25870,2025-03-10T06:45:59.652782-07:00,997.0218505859375,10.827627,10827.627 +25871,2025-03-10T06:46:10.481404-07:00,997.0228881835938,10.828622,10828.622 +25872,2025-03-10T06:46:21.297628-07:00,997.0086059570312,10.816224,10816.224 +25873,2025-03-10T06:46:32.123799-07:00,996.9964599609375,10.826171,10826.171 +25874,2025-03-10T06:46:42.944871-07:00,996.9964599609375,10.821072,10821.072 +25875,2025-03-10T06:46:53.764567-07:00,996.997802734375,10.819696,10819.696 +25876,2025-03-10T06:47:04.594691-07:00,996.9898681640625,10.830124,10830.124 +25877,2025-03-10T06:47:15.422596-07:00,996.9912719726562,10.827905,10827.905 +25878,2025-03-10T06:47:26.253573-07:00,997.0120849609375,10.830977,10830.977 +25879,2025-03-10T06:47:37.077703-07:00,996.9857177734375,10.82413,10824.13 +25880,2025-03-10T06:47:47.900053-07:00,996.9790649414062,10.82235,10822.35 +25881,2025-03-10T06:47:58.729088-07:00,996.9738159179688,10.829035,10829.035 +25882,2025-03-10T06:48:09.552569-07:00,996.9790649414062,10.823481,10823.481 +25883,2025-03-10T06:48:20.378038-07:00,996.9880981445312,10.825469,10825.469 +25884,2025-03-10T06:48:31.204571-07:00,996.9738159179688,10.826533,10826.533 +25885,2025-03-10T06:48:42.024549-07:00,996.9946899414062,10.819978,10819.978 +25886,2025-03-10T06:48:52.855027-07:00,996.987060546875,10.830478,10830.478 +25887,2025-03-10T06:49:03.676875-07:00,996.9696655273438,10.821848,10821.848 +25888,2025-03-10T06:49:14.510132-07:00,996.9696655273438,10.833257,10833.257 +25889,2025-03-10T06:49:15.213722-07:00,996.98388671875,0.70359,703.59 +25890,2025-03-10T06:49:25.328624-07:00,996.96826171875,10.114902,10114.902 +25891,2025-03-10T06:49:36.165752-07:00,996.9762573242188,10.837128,10837.128 +25892,2025-03-10T06:49:46.987567-07:00,996.98388671875,10.821815,10821.815 +25893,2025-03-10T06:49:57.817583-07:00,996.98388671875,10.830016,10830.016 +25894,2025-03-10T06:50:08.638573-07:00,996.9849243164062,10.82099,10820.99 +25895,2025-03-10T06:50:19.476073-07:00,997.006103515625,10.8375,10837.5 +25896,2025-03-10T06:50:30.296819-07:00,996.99951171875,10.820746,10820.746 +25897,2025-03-10T06:50:41.116823-07:00,996.9873657226562,10.820004,10820.004 +25898,2025-03-10T06:50:51.947567-07:00,996.993896484375,10.830744,10830.744 +25899,2025-03-10T06:51:02.768795-07:00,996.9862670898438,10.821228,10821.228 +25900,2025-03-10T06:51:13.598928-07:00,996.9873657226562,10.830133,10830.133 +25901,2025-03-10T06:51:24.428624-07:00,996.9796752929688,10.829696,10829.696 +25902,2025-03-10T06:51:35.246900-07:00,996.9556274414062,10.818276,10818.276 +25903,2025-03-10T06:51:46.078906-07:00,996.9820556640625,10.832006,10832.006 +25904,2025-03-10T06:51:56.907828-07:00,996.996337890625,10.828922,10828.922 +25905,2025-03-10T06:52:07.731763-07:00,997.0293579101562,10.823935,10823.935 +25906,2025-03-10T06:52:18.567890-07:00,996.9765625,10.836127,10836.127 +25907,2025-03-10T06:52:29.398596-07:00,997.0119018554688,10.830706,10830.706 +25908,2025-03-10T06:52:40.228079-07:00,996.9910888671875,10.829483,10829.483 +25909,2025-03-10T06:52:51.050790-07:00,996.9765625,10.822711,10822.711 +25910,2025-03-10T06:53:01.883890-07:00,996.9632568359375,10.8331,10833.1 +25911,2025-03-10T06:53:12.715885-07:00,996.9580688476562,10.831995,10831.995 +25912,2025-03-10T06:53:23.538843-07:00,996.9845581054688,10.822958,10822.958 +25913,2025-03-10T06:53:34.373550-07:00,996.9845581054688,10.834707,10834.707 +25914,2025-03-10T06:53:45.198908-07:00,996.94775390625,10.825358,10825.358 +25915,2025-03-10T06:53:56.031717-07:00,996.9765625,10.832809,10832.809 +25916,2025-03-10T06:54:06.851836-07:00,996.9689331054688,10.820119,10820.119 +25917,2025-03-10T06:54:17.688563-07:00,996.9609375,10.836727,10836.727 +25918,2025-03-10T06:54:28.514887-07:00,996.9598388671875,10.826324,10826.324 +25919,2025-03-10T06:54:39.339572-07:00,996.9886474609375,10.824685,10824.685 +25920,2025-03-10T06:54:50.171538-07:00,996.9533081054688,10.831966,10831.966 +25921,2025-03-10T06:55:01.003869-07:00,996.9754638671875,10.832331,10832.331 +25922,2025-03-10T06:55:11.828931-07:00,996.9490356445312,10.825062,10825.062 +25923,2025-03-10T06:55:22.661718-07:00,996.9622802734375,10.832787,10832.787 +25924,2025-03-10T06:55:33.494965-07:00,996.9490356445312,10.833247,10833.247 +25925,2025-03-10T06:55:44.322617-07:00,996.9490356445312,10.827652,10827.652 +25926,2025-03-10T06:55:55.152707-07:00,996.9160766601562,10.83009,10830.09 +25927,2025-03-10T06:56:05.977822-07:00,996.9556274414062,10.825115,10825.115 +25928,2025-03-10T06:56:16.804234-07:00,996.9302978515625,10.826412,10826.412 +25929,2025-03-10T06:56:27.633568-07:00,996.9104614257812,10.829334,10829.334 +25930,2025-03-10T06:56:38.461873-07:00,996.909423828125,10.828305,10828.305 +25931,2025-03-10T06:56:49.282076-07:00,996.8948364257812,10.820203,10820.203 +25932,2025-03-10T06:57:00.118860-07:00,996.9345092773438,10.836784,10836.784 +25933,2025-03-10T06:57:10.945824-07:00,996.9435424804688,10.826964,10826.964 +25934,2025-03-10T06:57:21.773142-07:00,996.9237670898438,10.827318,10827.318 +25935,2025-03-10T06:57:32.598746-07:00,996.9382934570312,10.825604,10825.604 +25936,2025-03-10T06:57:43.428573-07:00,996.8986206054688,10.829827,10829.827 +25937,2025-03-10T06:57:54.264572-07:00,996.91845703125,10.835999,10835.999 +25938,2025-03-10T06:58:05.080599-07:00,996.8775024414062,10.816027,10816.027 +25939,2025-03-10T06:58:15.911673-07:00,996.9171142578125,10.831074,10831.074 +25940,2025-03-10T06:58:26.734560-07:00,996.884033203125,10.822887,10822.887 +25941,2025-03-10T06:58:37.558840-07:00,996.9326782226562,10.82428,10824.28 +25942,2025-03-10T06:58:48.384557-07:00,996.8973388671875,10.825717,10825.717 +25943,2025-03-10T06:58:59.212053-07:00,996.91845703125,10.827496,10827.496 +25944,2025-03-10T06:59:10.031573-07:00,996.90625,10.81952,10819.52 +25945,2025-03-10T06:59:20.861126-07:00,996.927490234375,10.829553,10829.553 +25946,2025-03-10T06:59:31.682627-07:00,996.9052124023438,10.821501,10821.501 +25947,2025-03-10T06:59:42.508547-07:00,996.899658203125,10.82592,10825.92 +25948,2025-03-10T06:59:53.341435-07:00,996.9195556640625,10.832888,10832.888 +25949,2025-03-10T07:00:04.176826-07:00,996.9208374023438,10.835391,10835.391 +25950,2025-03-10T07:00:15.004827-07:00,996.9129028320312,10.828001,10828.001 +25951,2025-03-10T07:00:25.829715-07:00,996.90869140625,10.824888,10824.888 +25952,2025-03-10T07:00:36.655575-07:00,996.921875,10.82586,10825.86 +25953,2025-03-10T07:00:47.481571-07:00,996.927490234375,10.825996,10825.996 +25954,2025-03-10T07:00:58.309208-07:00,996.93505859375,10.827637,10827.637 +25955,2025-03-10T07:01:09.127569-07:00,996.9364013671875,10.818361,10818.361 +25956,2025-03-10T07:01:19.957912-07:00,996.9020385742188,10.830343,10830.343 +25957,2025-03-10T07:01:30.787573-07:00,996.93505859375,10.829661,10829.661 +25958,2025-03-10T07:01:41.618142-07:00,996.915283203125,10.830569,10830.569 +25959,2025-03-10T07:01:52.447031-07:00,996.95068359375,10.828889,10828.889 +25960,2025-03-10T07:02:03.265057-07:00,996.9784545898438,10.818026,10818.026 +25961,2025-03-10T07:02:14.091566-07:00,996.9586181640625,10.826509,10826.509 +25962,2025-03-10T07:02:24.922240-07:00,996.944091796875,10.830674,10830.674 +25963,2025-03-10T07:02:35.754572-07:00,996.959716796875,10.832332,10832.332 +25964,2025-03-10T07:02:46.575567-07:00,996.9718627929688,10.820995,10820.995 +25965,2025-03-10T07:02:57.398969-07:00,996.953125,10.823402,10823.402 +25966,2025-03-10T07:03:08.220567-07:00,996.9662475585938,10.821598,10821.598 +25967,2025-03-10T07:03:19.048497-07:00,996.9662475585938,10.82793,10827.93 +25968,2025-03-10T07:03:29.865063-07:00,996.9832763671875,10.816566,10816.566 +25969,2025-03-10T07:03:40.693706-07:00,996.953125,10.828643,10828.643 +25970,2025-03-10T07:03:51.509070-07:00,996.9544677734375,10.815364,10815.364 +25971,2025-03-10T07:04:02.335078-07:00,996.9478149414062,10.826008,10826.008 +25972,2025-03-10T07:04:13.164914-07:00,996.9662475585938,10.829836,10829.836 +25973,2025-03-10T07:04:23.985574-07:00,996.95068359375,10.82066,10820.66 +25974,2025-03-10T07:04:34.804609-07:00,996.9611206054688,10.819035,10819.035 +25975,2025-03-10T07:04:45.632396-07:00,996.9573364257812,10.827787,10827.787 +25976,2025-03-10T07:04:56.454572-07:00,996.9166259765625,10.822176,10822.176 +25977,2025-03-10T07:05:07.289855-07:00,996.9586181640625,10.835283,10835.283 +25978,2025-03-10T07:05:18.109628-07:00,996.970458984375,10.819773,10819.773 +25979,2025-03-10T07:05:28.929636-07:00,996.9483032226562,10.820008,10820.008 +25980,2025-03-10T07:05:39.754855-07:00,996.947265625,10.825219,10825.219 +25981,2025-03-10T07:05:50.614841-07:00,996.9628295898438,10.859986,10859.986 +25982,2025-03-10T07:06:01.439750-07:00,996.9874877929688,10.824909,10824.909 +25983,2025-03-10T07:06:12.271849-07:00,996.9110717773438,10.832099,10832.099 +25984,2025-03-10T07:06:23.086832-07:00,996.9321899414062,10.814983,10814.983 +25985,2025-03-10T07:06:33.906223-07:00,996.9586181640625,10.819391,10819.391 +25986,2025-03-10T07:06:44.737891-07:00,996.9662475585938,10.831668,10831.668 +25987,2025-03-10T07:06:55.559157-07:00,996.9818725585938,10.821266,10821.266 +25988,2025-03-10T07:07:06.381916-07:00,996.9544677734375,10.822759,10822.759 +25989,2025-03-10T07:07:17.196836-07:00,996.9464721679688,10.81492,10814.92 +25990,2025-03-10T07:07:28.024185-07:00,996.9554443359375,10.827349,10827.349 +25991,2025-03-10T07:07:38.855091-07:00,996.9422607421875,10.830906,10830.906 +25992,2025-03-10T07:07:49.676950-07:00,996.9422607421875,10.821859,10821.859 +25993,2025-03-10T07:08:00.498836-07:00,996.943603515625,10.821886,10821.886 +25994,2025-03-10T07:08:11.317834-07:00,996.9634399414062,10.818998,10818.998 +25995,2025-03-10T07:08:22.154998-07:00,996.9554443359375,10.837164,10837.164 +25996,2025-03-10T07:08:32.973001-07:00,996.9710693359375,10.818003,10818.003 +25997,2025-03-10T07:08:43.797163-07:00,996.9988403320312,10.824162,10824.162 +25998,2025-03-10T07:08:54.616833-07:00,996.9832763671875,10.81967,10819.67 +25999,2025-03-10T07:09:05.442426-07:00,996.9963989257812,10.825593,10825.593 +26000,2025-03-10T07:09:16.260159-07:00,996.9898681640625,10.817733,10817.733 +26001,2025-03-10T07:09:27.082839-07:00,996.9988403320312,10.82268,10822.68 +26002,2025-03-10T07:09:37.909519-07:00,996.9776611328125,10.82668,10826.68 +26003,2025-03-10T07:09:48.739881-07:00,996.9512329101562,10.830362,10830.362 +26004,2025-03-10T07:09:59.566271-07:00,997.0120239257812,10.82639,10826.39 +26005,2025-03-10T07:10:10.386406-07:00,996.9766235351562,10.820135,10820.135 +26006,2025-03-10T07:10:21.211827-07:00,997.00830078125,10.825421,10825.421 +26007,2025-03-10T07:10:32.039378-07:00,996.9818725585938,10.827551,10827.551 +26008,2025-03-10T07:10:42.872839-07:00,996.9676513671875,10.833461,10833.461 +26009,2025-03-10T07:10:53.702224-07:00,996.969970703125,10.829385,10829.385 +26010,2025-03-10T07:11:04.531881-07:00,996.9676513671875,10.829657,10829.657 +26011,2025-03-10T07:11:15.353144-07:00,997.00830078125,10.821263,10821.263 +26012,2025-03-10T07:11:26.176109-07:00,996.972900390625,10.822965,10822.965 +26013,2025-03-10T07:11:37.000055-07:00,997.014892578125,10.823946,10823.946 +26014,2025-03-10T07:11:47.814397-07:00,997.0048217773438,10.814342,10814.342 +26015,2025-03-10T07:11:58.636152-07:00,997.013916015625,10.821755,10821.755 +26016,2025-03-10T07:12:09.462021-07:00,997.0006103515625,10.825869,10825.869 +26017,2025-03-10T07:12:20.289082-07:00,997.01904296875,10.827061,10827.061 +26018,2025-03-10T07:12:31.105834-07:00,997.013916015625,10.816752,10816.752 +26019,2025-03-10T07:12:41.926700-07:00,997.03369140625,10.820866,10820.866 +26020,2025-03-10T07:12:52.748844-07:00,997.0204467773438,10.822144,10822.144 +26021,2025-03-10T07:13:03.574833-07:00,996.9940795898438,10.825989,10825.989 +26022,2025-03-10T07:13:14.389447-07:00,997.0270385742188,10.814614,10814.614 +26023,2025-03-10T07:13:25.217883-07:00,996.998291015625,10.828436,10828.436 +26024,2025-03-10T07:13:36.040887-07:00,997.0059204101562,10.823004,10823.004 +26025,2025-03-10T07:13:46.862181-07:00,996.9891967773438,10.821294,10821.294 +26026,2025-03-10T07:13:57.681843-07:00,996.9891967773438,10.819662,10819.662 +26027,2025-03-10T07:14:08.496842-07:00,996.9891967773438,10.814999,10814.999 +26028,2025-03-10T07:14:19.314122-07:00,996.9849853515625,10.81728,10817.28 +26029,2025-03-10T07:14:30.138822-07:00,996.998291015625,10.8247,10824.7 +26030,2025-03-10T07:14:40.964286-07:00,997.011474609375,10.825464,10825.464 +26031,2025-03-10T07:14:51.789342-07:00,997.011474609375,10.825056,10825.056 +26032,2025-03-10T07:15:02.610214-07:00,996.9771118164062,10.820872,10820.872 +26033,2025-03-10T07:15:13.436171-07:00,996.998291015625,10.825957,10825.957 +26034,2025-03-10T07:15:24.250906-07:00,997.0167236328125,10.814735,10814.735 +26035,2025-03-10T07:15:35.070842-07:00,996.9968872070312,10.819936,10819.936 +26036,2025-03-10T07:15:45.893171-07:00,997.0167236328125,10.822329,10822.329 +26037,2025-03-10T07:15:56.718674-07:00,996.9916381835938,10.825503,10825.503 +26038,2025-03-10T07:16:07.548464-07:00,996.9968872070312,10.82979,10829.79 +26039,2025-03-10T07:16:18.368113-07:00,997.0388793945312,10.819649,10819.649 +26040,2025-03-10T07:16:29.183843-07:00,996.995849609375,10.81573,10815.73 +26041,2025-03-10T07:16:40.001044-07:00,996.9849853515625,10.817201,10817.201 +26042,2025-03-10T07:16:50.825893-07:00,997.0167236328125,10.824849,10824.849 +26043,2025-03-10T07:17:01.654941-07:00,996.9813232421875,10.829048,10829.048 +26044,2025-03-10T07:17:12.472209-07:00,997.0048217773438,10.817268,10817.268 +26045,2025-03-10T07:17:23.291844-07:00,996.998291015625,10.819635,10819.635 +26046,2025-03-10T07:17:34.126547-07:00,996.9968872070312,10.834703,10834.703 +26047,2025-03-10T07:17:44.949102-07:00,996.995849609375,10.822555,10822.555 +26048,2025-03-10T07:17:55.769836-07:00,997.0025024414062,10.820734,10820.734 +26049,2025-03-10T07:18:06.591440-07:00,996.9771118164062,10.821604,10821.604 +26050,2025-03-10T07:18:17.411839-07:00,996.982666015625,10.820399,10820.399 +26051,2025-03-10T07:18:28.231841-07:00,996.9837646484375,10.820002,10820.002 +26052,2025-03-10T07:18:39.053171-07:00,997.0048217773438,10.82133,10821.33 +26053,2025-03-10T07:18:49.880967-07:00,997.0379028320312,10.827796,10827.796 +26054,2025-03-10T07:19:00.702043-07:00,997.0048217773438,10.821076,10821.076 +26055,2025-03-10T07:19:11.527853-07:00,996.9837646484375,10.82581,10825.81 +26056,2025-03-10T07:19:22.344843-07:00,996.986083984375,10.81699,10816.99 +26057,2025-03-10T07:19:33.169804-07:00,996.986083984375,10.824961,10824.961 +26058,2025-03-10T07:19:43.995838-07:00,996.9554443359375,10.826034,10826.034 +26059,2025-03-10T07:19:54.814058-07:00,996.9940795898438,10.81822,10818.22 +26060,2025-03-10T07:20:05.643242-07:00,997.0040893554688,10.829184,10829.184 +26061,2025-03-10T07:20:16.459834-07:00,997.0304565429688,10.816592,10816.592 +26062,2025-03-10T07:20:27.281936-07:00,997.0040893554688,10.822102,10822.102 +26063,2025-03-10T07:20:38.101260-07:00,996.9766235351562,10.819324,10819.324 +26064,2025-03-10T07:20:48.923893-07:00,996.9998168945312,10.822633,10822.633 +26065,2025-03-10T07:20:59.751207-07:00,997.0253295898438,10.827314,10827.314 +26066,2025-03-10T07:21:10.575847-07:00,997.017333984375,10.82464,10824.64 +26067,2025-03-10T07:21:21.401839-07:00,997.0054931640625,10.825992,10825.992 +26068,2025-03-10T07:21:32.224066-07:00,997.0304565429688,10.822227,10822.227 +26069,2025-03-10T07:21:43.053087-07:00,997.0328979492188,10.829021,10829.021 +26070,2025-03-10T07:21:53.868208-07:00,997.0318603515625,10.815121,10815.121 +26071,2025-03-10T07:22:04.696096-07:00,997.0516967773438,10.827888,10827.888 +26072,2025-03-10T07:22:15.511333-07:00,997.0460815429688,10.815237,10815.237 +26073,2025-03-10T07:22:26.340212-07:00,997.02734375,10.828879,10828.879 +26074,2025-03-10T07:22:37.157964-07:00,997.05517578125,10.817752,10817.752 +26075,2025-03-10T07:22:47.975898-07:00,997.0485229492188,10.817934,10817.934 +26076,2025-03-10T07:22:58.796150-07:00,997.05615234375,10.820252,10820.252 +26077,2025-03-10T07:23:09.613899-07:00,997.0296630859375,10.817749,10817.749 +26078,2025-03-10T07:23:20.430844-07:00,997.065185546875,10.816945,10816.945 +26079,2025-03-10T07:23:31.251440-07:00,997.0574951171875,10.820596,10820.596 +26080,2025-03-10T07:23:42.079827-07:00,997.091552734375,10.828387,10828.387 +26081,2025-03-10T07:23:52.903885-07:00,997.0418701171875,10.824058,10824.058 +26082,2025-03-10T07:24:03.735889-07:00,997.0773315429688,10.832004,10832.004 +26083,2025-03-10T07:24:14.552030-07:00,997.075927734375,10.816141,10816.141 +26084,2025-03-10T07:24:25.370975-07:00,997.074951171875,10.818945,10818.945 +26085,2025-03-10T07:24:36.195970-07:00,997.1023559570312,10.824995,10824.995 +26086,2025-03-10T07:24:47.015891-07:00,997.08154296875,10.819921,10819.921 +26087,2025-03-10T07:24:57.848445-07:00,997.0933837890625,10.832554,10832.554 +26088,2025-03-10T07:25:08.662069-07:00,997.114501953125,10.813624,10813.624 +26089,2025-03-10T07:25:19.488522-07:00,997.119873046875,10.826453,10826.453 +26090,2025-03-10T07:25:30.308260-07:00,997.06591796875,10.819738,10819.738 +26091,2025-03-10T07:25:41.125088-07:00,997.0857543945312,10.816828,10816.828 +26092,2025-03-10T07:25:51.959373-07:00,997.088134765625,10.834285,10834.285 +26093,2025-03-10T07:26:02.779826-07:00,997.1287231445312,10.820453,10820.453 +26094,2025-03-10T07:26:13.602189-07:00,997.0867309570312,10.822363,10822.363 +26095,2025-03-10T07:26:24.428024-07:00,997.0957641601562,10.825835,10825.835 +26096,2025-03-10T07:26:35.250835-07:00,997.0946655273438,10.822811,10822.811 +26097,2025-03-10T07:26:46.073104-07:00,997.0736083984375,10.822269,10822.269 +26098,2025-03-10T07:26:56.906231-07:00,997.1023559570312,10.833127,10833.127 +26099,2025-03-10T07:27:07.733381-07:00,997.12353515625,10.82715,10827.15 +26100,2025-03-10T07:27:18.546844-07:00,997.0773315429688,10.813463,10813.463 +26101,2025-03-10T07:27:29.372065-07:00,997.091552734375,10.825221,10825.221 +26102,2025-03-10T07:27:40.194573-07:00,997.08154296875,10.822508,10822.508 +26103,2025-03-10T07:27:51.007393-07:00,997.0839233398438,10.81282,10812.82 +26104,2025-03-10T07:28:01.828206-07:00,997.0957641601562,10.820813,10820.813 +26105,2025-03-10T07:28:12.660290-07:00,997.0957641601562,10.832084,10832.084 +26106,2025-03-10T07:28:23.479966-07:00,997.130126953125,10.819676,10819.676 +26107,2025-03-10T07:28:34.300862-07:00,997.1023559570312,10.820896,10820.896 +26108,2025-03-10T07:28:45.121195-07:00,997.1023559570312,10.820333,10820.333 +26109,2025-03-10T07:28:55.941836-07:00,997.0904541015625,10.820641,10820.641 +26110,2025-03-10T07:29:06.769171-07:00,997.0839233398438,10.827335,10827.335 +26111,2025-03-10T07:29:17.594150-07:00,997.0693969726562,10.824979,10824.979 +26112,2025-03-10T07:29:28.410030-07:00,997.08154296875,10.81588,10815.88 +26113,2025-03-10T07:29:39.244110-07:00,997.0617065429688,10.83408,10834.08 +26114,2025-03-10T07:29:50.067947-07:00,997.0904541015625,10.823837,10823.837 +26115,2025-03-10T07:30:00.880835-07:00,997.09814453125,10.812888,10812.888 +26116,2025-03-10T07:30:11.704895-07:00,997.078369140625,10.82406,10824.06 +26117,2025-03-10T07:30:22.516847-07:00,997.078369140625,10.811952,10811.952 +26118,2025-03-10T07:30:33.338093-07:00,997.0904541015625,10.821246,10821.246 +26119,2025-03-10T07:30:44.156165-07:00,997.088134765625,10.818072,10818.072 +26120,2025-03-10T07:30:54.987033-07:00,997.078369140625,10.830868,10830.868 +26121,2025-03-10T07:31:05.796811-07:00,997.049560546875,10.809778,10809.778 +26122,2025-03-10T07:31:16.624841-07:00,997.0640869140625,10.82803,10828.03 +26123,2025-03-10T07:31:27.443100-07:00,997.0971069335938,10.818259,10818.259 +26124,2025-03-10T07:31:38.256833-07:00,997.075927734375,10.813733,10813.733 +26125,2025-03-10T07:31:49.083970-07:00,997.0892333984375,10.827137,10827.137 +26126,2025-03-10T07:31:59.910486-07:00,997.0825805664062,10.826516,10826.516 +26127,2025-03-10T07:32:10.740113-07:00,997.075927734375,10.829627,10829.627 +26128,2025-03-10T07:32:21.572838-07:00,997.0904541015625,10.832725,10832.725 +26129,2025-03-10T07:32:32.395262-07:00,997.05517578125,10.822424,10822.424 +26130,2025-03-10T07:32:43.215841-07:00,997.0617065429688,10.820579,10820.579 +26131,2025-03-10T07:32:54.040839-07:00,997.0825805664062,10.824998,10824.998 +26132,2025-03-10T07:33:04.865825-07:00,997.0471801757812,10.824986,10824.986 +26133,2025-03-10T07:33:15.697185-07:00,997.0933837890625,10.83136,10831.36 +26134,2025-03-10T07:33:26.522953-07:00,997.08154296875,10.825768,10825.768 +26135,2025-03-10T07:33:37.344834-07:00,997.0537719726562,10.821881,10821.881 +26136,2025-03-10T07:33:48.170203-07:00,997.08154296875,10.825369,10825.369 +26137,2025-03-10T07:33:58.995895-07:00,997.0669555664062,10.825692,10825.692 +26138,2025-03-10T07:34:09.816832-07:00,997.0669555664062,10.820937,10820.937 +26139,2025-03-10T07:34:20.637836-07:00,997.08154296875,10.821004,10821.004 +26140,2025-03-10T07:34:31.456919-07:00,997.0825805664062,10.819083,10819.083 +26141,2025-03-10T07:34:42.285594-07:00,997.03955078125,10.828675,10828.675 +26142,2025-03-10T07:34:53.098201-07:00,997.0617065429688,10.812607,10812.607 +26143,2025-03-10T07:35:03.923827-07:00,997.0693969726562,10.825626,10825.626 +26144,2025-03-10T07:35:14.757327-07:00,997.0904541015625,10.8335,10833.5 +26145,2025-03-10T07:35:25.579837-07:00,997.1023559570312,10.82251,10822.51 +26146,2025-03-10T07:35:36.397065-07:00,997.02734375,10.817228,10817.228 +26147,2025-03-10T07:35:47.230837-07:00,997.0717163085938,10.833772,10833.772 +26148,2025-03-10T07:35:58.054067-07:00,997.0717163085938,10.82323,10823.23 +26149,2025-03-10T07:36:08.878092-07:00,997.065185546875,10.824025,10824.025 +26150,2025-03-10T07:36:19.701819-07:00,997.0717163085938,10.823727,10823.727 +26151,2025-03-10T07:36:30.539701-07:00,997.0797119140625,10.837882,10837.882 +26152,2025-03-10T07:36:41.362842-07:00,997.059814453125,10.823141,10823.141 +26153,2025-03-10T07:36:52.185209-07:00,997.1005249023438,10.822367,10822.367 +26154,2025-03-10T07:37:03.014077-07:00,997.107177734375,10.828868,10828.868 +26155,2025-03-10T07:37:13.842162-07:00,997.0741577148438,10.828085,10828.085 +26156,2025-03-10T07:37:24.668839-07:00,997.0953369140625,10.826677,10826.677 +26157,2025-03-10T07:37:35.490971-07:00,997.1492309570312,10.822132,10822.132 +26158,2025-03-10T07:37:46.319841-07:00,997.0831298828125,10.82887,10828.87 +26159,2025-03-10T07:37:57.146909-07:00,997.1282958984375,10.827068,10827.068 +26160,2025-03-10T07:38:07.967377-07:00,997.0501708984375,10.820468,10820.468 +26161,2025-03-10T07:38:18.789148-07:00,997.1052856445312,10.821771,10821.771 +26162,2025-03-10T07:38:29.618789-07:00,997.0897827148438,10.829641,10829.641 +26163,2025-03-10T07:38:40.444888-07:00,997.0567016601562,10.826099,10826.099 +26164,2025-03-10T07:38:51.271941-07:00,997.091064453125,10.827053,10827.053 +26165,2025-03-10T07:39:02.096839-07:00,997.064697265625,10.824898,10824.898 +26166,2025-03-10T07:39:12.920832-07:00,997.0604858398438,10.823993,10823.993 +26167,2025-03-10T07:39:23.753844-07:00,997.0879516601562,10.833012,10833.012 +26168,2025-03-10T07:39:34.576821-07:00,997.0879516601562,10.822977,10822.977 +26169,2025-03-10T07:39:45.413218-07:00,997.07470703125,10.836397,10836.397 +26170,2025-03-10T07:39:56.231844-07:00,997.0482788085938,10.818626,10818.626 +26171,2025-03-10T07:40:07.064838-07:00,997.0430297851562,10.832994,10832.994 +26172,2025-03-10T07:40:17.895881-07:00,997.036376953125,10.831043,10831.043 +26173,2025-03-10T07:40:28.721903-07:00,997.0653076171875,10.826022,10826.022 +26174,2025-03-10T07:40:39.547225-07:00,997.0496826171875,10.825322,10825.322 +26175,2025-03-10T07:40:50.374839-07:00,997.0208740234375,10.827614,10827.614 +26176,2025-03-10T07:41:01.200092-07:00,997.054931640625,10.825253,10825.253 +26177,2025-03-10T07:41:12.033728-07:00,997.0670166015625,10.833636,10833.636 +26178,2025-03-10T07:41:22.860830-07:00,997.0285034179688,10.827102,10827.102 +26179,2025-03-10T07:41:33.683213-07:00,997.0430297851562,10.822383,10822.383 +26180,2025-03-10T07:41:44.516128-07:00,997.0695190429688,10.832915,10832.915 +26181,2025-03-10T07:41:55.343300-07:00,997.00341796875,10.827172,10827.172 +26182,2025-03-10T07:42:06.167298-07:00,997.0388793945312,10.823998,10823.998 +26183,2025-03-10T07:42:16.995095-07:00,997.036376953125,10.827797,10827.797 +26184,2025-03-10T07:42:27.829834-07:00,997.0628051757812,10.834739,10834.739 +26185,2025-03-10T07:42:38.663586-07:00,997.0695190429688,10.833752,10833.752 +26186,2025-03-10T07:42:49.481090-07:00,997.052001953125,10.817504,10817.504 +26187,2025-03-10T07:43:00.315372-07:00,997.036376953125,10.834282,10834.282 +26188,2025-03-10T07:43:11.147158-07:00,997.0176391601562,10.831786,10831.786 +26189,2025-03-10T07:43:21.972784-07:00,997.052001953125,10.825626,10825.626 +26190,2025-03-10T07:43:32.795838-07:00,997.0454711914062,10.823054,10823.054 +26191,2025-03-10T07:43:43.613133-07:00,997.052001953125,10.817295,10817.295 +26192,2025-03-10T07:43:54.439510-07:00,997.0440673828125,10.826377,10826.377 +26193,2025-03-10T07:44:05.257981-07:00,997.0653076171875,10.818471,10818.471 +26194,2025-03-10T07:44:16.087643-07:00,997.0728759765625,10.829662,10829.662 +26195,2025-03-10T07:44:26.913090-07:00,997.0454711914062,10.825447,10825.447 +26196,2025-03-10T07:44:37.744389-07:00,997.0388793945312,10.831299,10831.299 +26197,2025-03-10T07:44:48.574822-07:00,997.0332641601562,10.830433,10830.433 +26198,2025-03-10T07:44:59.402214-07:00,997.0242919921875,10.827392,10827.392 +26199,2025-03-10T07:45:10.230960-07:00,997.0321655273438,10.828746,10828.746 +26200,2025-03-10T07:45:21.058908-07:00,997.0653076171875,10.827948,10827.948 +26201,2025-03-10T07:45:31.888080-07:00,997.025634765625,10.829172,10829.172 +26202,2025-03-10T07:45:42.711875-07:00,997.0496826171875,10.823795,10823.795 +26203,2025-03-10T07:45:53.536894-07:00,997.054931640625,10.825019,10825.019 +26204,2025-03-10T07:46:04.357078-07:00,997.081298828125,10.820184,10820.184 +26205,2025-03-10T07:46:15.179208-07:00,997.083740234375,10.82213,10822.13 +26206,2025-03-10T07:46:26.004842-07:00,997.0628051757812,10.825634,10825.634 +26207,2025-03-10T07:46:36.822839-07:00,997.0374755859375,10.817997,10817.997 +26208,2025-03-10T07:46:47.660984-07:00,997.0430297851562,10.838145,10838.145 +26209,2025-03-10T07:46:58.494630-07:00,997.0507202148438,10.833646,10833.646 +26210,2025-03-10T07:47:09.318547-07:00,997.0496826171875,10.823917,10823.917 +26211,2025-03-10T07:47:20.151271-07:00,997.0242919921875,10.832724,10832.724 +26212,2025-03-10T07:47:30.970968-07:00,997.0639038085938,10.819697,10819.697 +26213,2025-03-10T07:47:41.790837-07:00,997.0111083984375,10.819869,10819.869 +26214,2025-03-10T07:47:52.624185-07:00,997.010009765625,10.833348,10833.348 +26215,2025-03-10T07:48:03.455080-07:00,996.990234375,10.830895,10830.895 +26216,2025-03-10T07:48:14.286844-07:00,997.0166625976562,10.831764,10831.764 +26217,2025-03-10T07:48:25.113832-07:00,997.0232543945312,10.826988,10826.988 +26218,2025-03-10T07:48:35.939637-07:00,997.00341796875,10.825805,10825.805 +26219,2025-03-10T07:48:46.782111-07:00,996.9992065429688,10.842474,10842.474 +26220,2025-03-10T07:48:57.607838-07:00,997.0079956054688,10.825727,10825.727 +26221,2025-03-10T07:49:08.432304-07:00,997.0293579101562,10.824466,10824.466 +26222,2025-03-10T07:49:19.263171-07:00,996.9723510742188,10.830867,10830.867 +26223,2025-03-10T07:49:30.085042-07:00,996.9681396484375,10.821871,10821.871 +26224,2025-03-10T07:49:40.922836-07:00,997.0111694335938,10.837794,10837.794 +26225,2025-03-10T07:49:51.755019-07:00,997.0003051757812,10.832183,10832.183 +26226,2025-03-10T07:50:02.576964-07:00,997.00830078125,10.821945,10821.945 +26227,2025-03-10T07:50:13.411739-07:00,997.0027465820312,10.834775,10834.775 +26228,2025-03-10T07:50:24.244336-07:00,996.9852905273438,10.832597,10832.597 +26229,2025-03-10T07:50:35.067365-07:00,996.99560546875,10.823029,10823.029 +26230,2025-03-10T07:50:45.897976-07:00,996.9910888671875,10.830611,10830.611 +26231,2025-03-10T07:50:56.728514-07:00,996.981689453125,10.830538,10830.538 +26232,2025-03-10T07:51:07.560834-07:00,996.9520263671875,10.83232,10832.32 +26233,2025-03-10T07:51:18.390171-07:00,996.9544677734375,10.829337,10829.337 +26234,2025-03-10T07:51:29.224245-07:00,997.0001831054688,10.834074,10834.074 +26235,2025-03-10T07:51:40.049918-07:00,997.0036010742188,10.825673,10825.673 +26236,2025-03-10T07:51:50.874036-07:00,996.9885864257812,10.824118,10824.118 +26237,2025-03-10T07:52:01.708126-07:00,997.006591796875,10.83409,10834.09 +26238,2025-03-10T07:52:12.540220-07:00,996.9547729492188,10.832094,10832.094 +26239,2025-03-10T07:52:23.371210-07:00,996.9132690429688,10.83099,10830.99 +26240,2025-03-10T07:52:34.192822-07:00,996.9354858398438,10.821612,10821.612 +26241,2025-03-10T07:52:45.024120-07:00,996.9222412109375,10.831298,10831.298 +26242,2025-03-10T07:52:55.843848-07:00,996.952392578125,10.819728,10819.728 +26243,2025-03-10T07:53:06.668122-07:00,996.9193725585938,10.824274,10824.274 +26244,2025-03-10T07:53:17.493838-07:00,996.913818359375,10.825716,10825.716 +26245,2025-03-10T07:53:28.326872-07:00,996.942626953125,10.833034,10833.034 +26246,2025-03-10T07:53:39.158854-07:00,996.9436645507812,10.831982,10831.982 +26247,2025-03-10T07:53:49.984066-07:00,996.92626953125,10.825212,10825.212 +26248,2025-03-10T07:54:00.806019-07:00,996.9285888671875,10.821953,10821.953 +26249,2025-03-10T07:54:11.635839-07:00,996.930908203125,10.82982,10829.82 +26250,2025-03-10T07:54:22.464513-07:00,996.9442138671875,10.828674,10828.674 +26251,2025-03-10T07:54:33.292082-07:00,996.9389038085938,10.827569,10827.569 +26252,2025-03-10T07:54:44.122351-07:00,996.9478759765625,10.830269,10830.269 +26253,2025-03-10T07:54:54.941840-07:00,996.9545288085938,10.819489,10819.489 +26254,2025-03-10T07:55:05.767349-07:00,996.95556640625,10.825509,10825.509 +26255,2025-03-10T07:55:16.597842-07:00,996.9290771484375,10.830493,10830.493 +26256,2025-03-10T07:55:27.423215-07:00,996.9513549804688,10.825373,10825.373 +26257,2025-03-10T07:55:38.254879-07:00,996.93701171875,10.831664,10831.664 +26258,2025-03-10T07:55:49.084077-07:00,996.9635009765625,10.829198,10829.198 +26259,2025-03-10T07:55:59.911822-07:00,996.9635009765625,10.827745,10827.745 +26260,2025-03-10T07:56:10.737432-07:00,996.9381103515625,10.82561,10825.61 +26261,2025-03-10T07:56:21.560942-07:00,996.9314575195312,10.82351,10823.51 +26262,2025-03-10T07:56:32.387830-07:00,996.9461059570312,10.826888,10826.888 +26263,2025-03-10T07:56:43.218840-07:00,996.94189453125,10.83101,10831.01 +26264,2025-03-10T07:56:54.057072-07:00,996.962646484375,10.838232,10838.232 +26265,2025-03-10T07:57:04.881051-07:00,996.9452514648438,10.823979,10823.979 +26266,2025-03-10T07:57:15.713203-07:00,996.9552612304688,10.832152,10832.152 +26267,2025-03-10T07:57:26.540988-07:00,996.9354858398438,10.827785,10827.785 +26268,2025-03-10T07:57:37.376163-07:00,996.9193725585938,10.835175,10835.175 +26269,2025-03-10T07:57:48.209729-07:00,996.94921875,10.833566,10833.566 +26270,2025-03-10T07:57:59.035802-07:00,996.9449462890625,10.826073,10826.073 +26271,2025-03-10T07:58:09.870065-07:00,996.927490234375,10.834263,10834.263 +26272,2025-03-10T07:58:20.700103-07:00,996.9232788085938,10.830038,10830.038 +26273,2025-03-10T07:58:31.528840-07:00,996.90576171875,10.828737,10828.737 +26274,2025-03-10T07:58:42.363198-07:00,996.9092407226562,10.834358,10834.358 +26275,2025-03-10T07:58:53.198694-07:00,996.9260864257812,10.835496,10835.496 +26276,2025-03-10T07:59:04.027817-07:00,996.9403686523438,10.829123,10829.123 +26277,2025-03-10T07:59:14.863163-07:00,996.9385375976562,10.835346,10835.346 +26278,2025-03-10T07:59:25.690162-07:00,996.9512329101562,10.826999,10826.999 +26279,2025-03-10T07:59:36.521068-07:00,996.944580078125,10.830906,10830.906 +26280,2025-03-10T07:59:47.350831-07:00,996.95703125,10.829763,10829.763 +26281,2025-03-10T07:59:58.188341-07:00,996.9606323242188,10.83751,10837.51 +26282,2025-03-10T08:00:09.007950-07:00,996.9554443359375,10.819609,10819.609 +26283,2025-03-10T08:00:19.836755-07:00,996.9710083007812,10.828805,10828.805 +26284,2025-03-10T08:00:30.660880-07:00,996.986572265625,10.824125,10824.125 +26285,2025-03-10T08:00:41.500937-07:00,996.9757690429688,10.840057,10840.057 +26286,2025-03-10T08:00:52.332835-07:00,997.0045166015625,10.831898,10831.898 +26287,2025-03-10T08:01:03.157924-07:00,997.0134887695312,10.825089,10825.089 +26288,2025-03-10T08:01:13.993838-07:00,997.0013427734375,10.835914,10835.914 +26289,2025-03-10T08:01:24.819601-07:00,997.0301513671875,10.825763,10825.763 +26290,2025-03-10T08:01:35.652012-07:00,997.0113525390625,10.832411,10832.411 +26291,2025-03-10T08:01:46.484979-07:00,997.006103515625,10.832967,10832.967 +26292,2025-03-10T08:01:57.315550-07:00,997.02685546875,10.830571,10830.571 +26293,2025-03-10T08:02:08.141841-07:00,997.0282592773438,10.826291,10826.291 +26294,2025-03-10T08:02:18.966863-07:00,997.0282592773438,10.825022,10825.022 +26295,2025-03-10T08:02:29.799062-07:00,997.0108032226562,10.832199,10832.199 +26296,2025-03-10T08:02:40.630336-07:00,997.0184326171875,10.831274,10831.274 +26297,2025-03-10T08:02:51.457675-07:00,997.022216796875,10.827339,10827.339 +26298,2025-03-10T08:03:02.285893-07:00,997.0377197265625,10.828218,10828.218 +26299,2025-03-10T08:03:13.123324-07:00,997.0401611328125,10.837431,10837.431 +26300,2025-03-10T08:03:23.947356-07:00,997.02685546875,10.824032,10824.032 +26301,2025-03-10T08:03:34.781821-07:00,997.0289306640625,10.834465,10834.465 +26302,2025-03-10T08:03:45.612126-07:00,997.0355224609375,10.830305,10830.305 +26303,2025-03-10T08:03:56.446444-07:00,997.0303344726562,10.834318,10834.318 +26304,2025-03-10T08:04:07.279020-07:00,997.0501708984375,10.832576,10832.576 +26305,2025-03-10T08:04:18.102839-07:00,997.03125,10.823819,10823.819 +26306,2025-03-10T08:04:28.938831-07:00,997.0567016601562,10.835992,10835.992 +26307,2025-03-10T08:04:39.769889-07:00,997.0501708984375,10.831058,10831.058 +26308,2025-03-10T08:04:50.592204-07:00,997.0577392578125,10.822315,10822.315 +26309,2025-03-10T08:05:01.422076-07:00,997.0289306640625,10.829872,10829.872 +26310,2025-03-10T08:05:12.258881-07:00,997.0181274414062,10.836805,10836.805 +26311,2025-03-10T08:05:23.087240-07:00,997.0223388671875,10.828359,10828.359 +26312,2025-03-10T08:05:33.927843-07:00,997.036865234375,10.840603,10840.603 +26313,2025-03-10T08:05:44.749811-07:00,997.0303344726562,10.821968,10821.968 +26314,2025-03-10T08:05:55.585188-07:00,997.0643920898438,10.835377,10835.377 +26315,2025-03-10T08:06:06.415767-07:00,997.05908203125,10.830579,10830.579 +26316,2025-03-10T08:06:17.246425-07:00,997.0601806640625,10.830658,10830.658 +26317,2025-03-10T08:06:28.069602-07:00,997.0723266601562,10.823177,10823.177 +26318,2025-03-10T08:06:38.902424-07:00,997.0458374023438,10.832822,10832.822 +26319,2025-03-10T08:06:49.740477-07:00,997.065673828125,10.838053,10838.053 +26320,2025-03-10T08:07:00.564215-07:00,997.0510864257812,10.823738,10823.738 +26321,2025-03-10T08:07:11.402425-07:00,997.0884399414062,10.83821,10838.21 +26322,2025-03-10T08:07:22.240568-07:00,997.0543823242188,10.838143,10838.143 +26323,2025-03-10T08:07:33.071190-07:00,997.080810546875,10.830622,10830.622 +26324,2025-03-10T08:07:43.892454-07:00,997.0575561523438,10.821264,10821.264 +26325,2025-03-10T08:07:54.729465-07:00,997.05517578125,10.837011,10837.011 +26326,2025-03-10T08:08:05.559504-07:00,997.080322265625,10.830039,10830.039 +26327,2025-03-10T08:08:16.386253-07:00,997.0570068359375,10.826749,10826.749 +26328,2025-03-10T08:08:27.216439-07:00,997.0623168945312,10.830186,10830.186 +26329,2025-03-10T08:08:38.054547-07:00,997.051025390625,10.838108,10838.108 +26330,2025-03-10T08:08:48.882188-07:00,997.063232421875,10.827641,10827.641 +26331,2025-03-10T08:08:59.710328-07:00,997.0684204101562,10.82814,10828.14 +26332,2025-03-10T08:09:10.534462-07:00,997.0362548828125,10.824134,10824.134 +26333,2025-03-10T08:09:21.364235-07:00,997.0748291015625,10.829773,10829.773 +26334,2025-03-10T08:09:32.198183-07:00,997.044677734375,10.833948,10833.948 +26335,2025-03-10T08:09:43.030187-07:00,997.0267944335938,10.832004,10832.004 +26336,2025-03-10T08:09:53.856186-07:00,997.0465698242188,10.825999,10825.999 +26337,2025-03-10T08:10:04.692503-07:00,997.0376586914062,10.836317,10836.317 +26338,2025-03-10T08:10:15.517186-07:00,997.02734375,10.824683,10824.683 +26339,2025-03-10T08:10:26.349594-07:00,997.0457763671875,10.832408,10832.408 +26340,2025-03-10T08:10:37.181780-07:00,997.0070190429688,10.832186,10832.186 +26341,2025-03-10T08:10:48.011507-07:00,996.9890747070312,10.829727,10829.727 +26342,2025-03-10T08:10:58.840256-07:00,997.0131225585938,10.828749,10828.749 +26343,2025-03-10T08:11:09.660221-07:00,997.0437622070312,10.819965,10819.965 +26344,2025-03-10T08:11:20.495180-07:00,997.0257568359375,10.834959,10834.959 +26345,2025-03-10T08:11:31.330196-07:00,997.0365600585938,10.835016,10835.016 +26346,2025-03-10T08:11:42.150271-07:00,997.0279541015625,10.820075,10820.075 +26347,2025-03-10T08:11:52.982626-07:00,997.010986328125,10.832355,10832.355 +26348,2025-03-10T08:12:03.812180-07:00,997.0406494140625,10.829554,10829.554 +26349,2025-03-10T08:12:14.642402-07:00,997.0028076171875,10.830222,10830.222 +26350,2025-03-10T08:12:25.482724-07:00,997.0401611328125,10.840322,10840.322 +26351,2025-03-10T08:12:36.312182-07:00,997.0353393554688,10.829458,10829.458 +26352,2025-03-10T08:12:47.139923-07:00,997.0527954101562,10.827741,10827.741 +26353,2025-03-10T08:12:57.973417-07:00,997.02294921875,10.833494,10833.494 +26354,2025-03-10T08:13:08.811501-07:00,997.045654296875,10.838084,10838.084 +26355,2025-03-10T08:13:19.641167-07:00,997.05126953125,10.829666,10829.666 +26356,2025-03-10T08:13:30.470577-07:00,997.060791015625,10.82941,10829.41 +26357,2025-03-10T08:13:41.305177-07:00,997.026611328125,10.8346,10834.6 +26358,2025-03-10T08:13:52.138190-07:00,997.0625610351562,10.833013,10833.013 +26359,2025-03-10T08:14:02.968670-07:00,997.0865478515625,10.83048,10830.48 +26360,2025-03-10T08:14:13.800170-07:00,997.0765380859375,10.8315,10831.5 +26361,2025-03-10T08:14:24.631240-07:00,997.0887451171875,10.83107,10831.07 +26362,2025-03-10T08:14:35.461247-07:00,997.0995483398438,10.830007,10830.007 +26363,2025-03-10T08:14:46.293507-07:00,997.0958862304688,10.83226,10832.26 +26364,2025-03-10T08:14:57.115430-07:00,997.09765625,10.821923,10821.923 +26365,2025-03-10T08:15:07.946892-07:00,997.0967407226562,10.831462,10831.462 +26366,2025-03-10T08:15:18.777184-07:00,997.1060791015625,10.830292,10830.292 +26367,2025-03-10T08:15:29.602365-07:00,997.0960693359375,10.825181,10825.181 +26368,2025-03-10T08:15:40.424655-07:00,997.0861206054688,10.82229,10822.29 +26369,2025-03-10T08:15:51.261438-07:00,997.103515625,10.836783,10836.783 +26370,2025-03-10T08:16:02.090197-07:00,997.1077270507812,10.828759,10828.759 +26371,2025-03-10T08:16:12.924611-07:00,997.1261596679688,10.834414,10834.414 +26372,2025-03-10T08:16:23.757402-07:00,997.1029663085938,10.832791,10832.791 +26373,2025-03-10T08:16:34.577640-07:00,997.0939331054688,10.820238,10820.238 +26374,2025-03-10T08:16:45.413187-07:00,997.0770263671875,10.835547,10835.547 +26375,2025-03-10T08:16:56.240725-07:00,997.05517578125,10.827538,10827.538 +26376,2025-03-10T08:17:07.068442-07:00,997.0791625976562,10.827717,10827.717 +26377,2025-03-10T08:17:17.898428-07:00,997.0621948242188,10.829986,10829.986 +26378,2025-03-10T08:17:28.740184-07:00,997.158935546875,10.841756,10841.756 +26379,2025-03-10T08:17:39.567727-07:00,997.0970458984375,10.827543,10827.543 +26380,2025-03-10T08:17:50.394170-07:00,997.1157836914062,10.826443,10826.443 +26381,2025-03-10T08:18:01.227240-07:00,997.1001586914062,10.83307,10833.07 +26382,2025-03-10T08:18:12.065021-07:00,997.1096801757812,10.837781,10837.781 +26383,2025-03-10T08:18:22.895184-07:00,997.1115112304688,10.830163,10830.163 +26384,2025-03-10T08:18:33.722523-07:00,997.0826416015625,10.827339,10827.339 +26385,2025-03-10T08:18:44.557190-07:00,997.11328125,10.834667,10834.667 +26386,2025-03-10T08:18:55.395723-07:00,997.122802734375,10.838533,10838.533 +26387,2025-03-10T08:19:06.216175-07:00,997.1018676757812,10.820452,10820.452 +26388,2025-03-10T08:19:17.048240-07:00,997.09814453125,10.832065,10832.065 +26389,2025-03-10T08:19:27.874177-07:00,997.101318359375,10.825937,10825.937 +26390,2025-03-10T08:19:38.716166-07:00,997.1045532226562,10.841989,10841.989 +26391,2025-03-10T08:19:49.538163-07:00,997.0889282226562,10.821997,10821.997 +26392,2025-03-10T08:20:00.374175-07:00,997.0750732421875,10.836012,10836.012 +26393,2025-03-10T08:20:11.206988-07:00,997.1015625,10.832813,10832.813 +26394,2025-03-10T08:20:22.040180-07:00,997.0845336914062,10.833192,10833.192 +26395,2025-03-10T08:20:32.858506-07:00,997.08349609375,10.818326,10818.326 +26396,2025-03-10T08:20:43.685192-07:00,997.0995483398438,10.826686,10826.686 +26397,2025-03-10T08:20:54.517342-07:00,997.0762329101562,10.83215,10832.15 +26398,2025-03-10T08:21:05.343156-07:00,997.100341796875,10.825814,10825.814 +26399,2025-03-10T08:21:16.169138-07:00,997.1058349609375,10.825982,10825.982 +26400,2025-03-10T08:21:27.001188-07:00,997.0505981445312,10.83205,10832.05 +26401,2025-03-10T08:21:37.819249-07:00,997.107666015625,10.818061,10818.061 +26402,2025-03-10T08:21:48.651721-07:00,997.1141967773438,10.832472,10832.472 +26403,2025-03-10T08:21:59.478564-07:00,997.0906982421875,10.826843,10826.843 +26404,2025-03-10T08:22:10.298014-07:00,997.0882568359375,10.81945,10819.45 +26405,2025-03-10T08:22:21.128184-07:00,997.0939331054688,10.83017,10830.17 +26406,2025-03-10T08:22:31.950187-07:00,997.1099243164062,10.822003,10822.003 +26407,2025-03-10T08:22:42.775178-07:00,997.0890502929688,10.824991,10824.991 +26408,2025-03-10T08:22:53.606344-07:00,997.09326171875,10.831166,10831.166 +26409,2025-03-10T08:23:04.427787-07:00,997.1040649414062,10.821443,10821.443 +26410,2025-03-10T08:23:15.259175-07:00,997.084228515625,10.831388,10831.388 +26411,2025-03-10T08:23:26.089318-07:00,997.0884399414062,10.830143,10830.143 +26412,2025-03-10T08:23:36.912214-07:00,997.0850219726562,10.822896,10822.896 +26413,2025-03-10T08:23:47.739664-07:00,997.1048583984375,10.82745,10827.45 +26414,2025-03-10T08:23:58.570413-07:00,997.1065673828125,10.830749,10830.749 +26415,2025-03-10T08:24:09.391743-07:00,997.0975952148438,10.82133,10821.33 +26416,2025-03-10T08:24:20.228181-07:00,997.1017456054688,10.836438,10836.438 +26417,2025-03-10T08:24:31.057602-07:00,997.114990234375,10.829421,10829.421 +26418,2025-03-10T08:24:41.875324-07:00,997.1192016601562,10.817722,10817.722 +26419,2025-03-10T08:24:52.700486-07:00,997.1101684570312,10.825162,10825.162 +26420,2025-03-10T08:25:03.527453-07:00,997.07373046875,10.826967,10826.967 +26421,2025-03-10T08:25:14.354185-07:00,997.0789184570312,10.826732,10826.732 +26422,2025-03-10T08:25:25.187180-07:00,997.0820922851562,10.832995,10832.995 +26423,2025-03-10T08:25:36.004904-07:00,997.080810546875,10.817724,10817.724 +26424,2025-03-10T08:25:46.842433-07:00,997.0731201171875,10.837529,10837.529 +26425,2025-03-10T08:25:57.669385-07:00,997.0640869140625,10.826952,10826.952 +26426,2025-03-10T08:26:08.496197-07:00,997.0693969726562,10.826812,10826.812 +26427,2025-03-10T08:26:19.331205-07:00,997.0711059570312,10.835008,10835.008 +26428,2025-03-10T08:26:30.158189-07:00,997.0370483398438,10.826984,10826.984 +26429,2025-03-10T08:26:40.980412-07:00,997.0468139648438,10.822223,10822.223 +26430,2025-03-10T08:26:51.811237-07:00,997.05859375,10.830825,10830.825 +26431,2025-03-10T08:27:02.635190-07:00,997.0759887695312,10.823953,10823.953 +26432,2025-03-10T08:27:13.469529-07:00,997.0603637695312,10.834339,10834.339 +26433,2025-03-10T08:27:24.292190-07:00,997.052734375,10.822661,10822.661 +26434,2025-03-10T08:27:35.117794-07:00,997.05029296875,10.825604,10825.604 +26435,2025-03-10T08:27:45.935658-07:00,997.083251953125,10.817864,10817.864 +26436,2025-03-10T08:27:56.755175-07:00,997.057373046875,10.819517,10819.517 +26437,2025-03-10T08:28:07.582488-07:00,997.0718994140625,10.827313,10827.313 +26438,2025-03-10T08:28:18.408377-07:00,997.0695190429688,10.825889,10825.889 +26439,2025-03-10T08:28:29.232988-07:00,997.081298828125,10.824611,10824.611 +26440,2025-03-10T08:28:40.052355-07:00,997.0382690429688,10.819367,10819.367 +26441,2025-03-10T08:28:50.880421-07:00,997.09765625,10.828066,10828.066 +26442,2025-03-10T08:29:01.704573-07:00,997.0609130859375,10.824152,10824.152 +26443,2025-03-10T08:29:12.526252-07:00,997.0595092773438,10.821679,10821.679 +26444,2025-03-10T08:29:23.357484-07:00,997.07275390625,10.831232,10831.232 +26445,2025-03-10T08:29:34.176238-07:00,997.0703125,10.818754,10818.754 +26446,2025-03-10T08:29:45.008148-07:00,997.06787109375,10.83191,10831.91 +26447,2025-03-10T08:29:55.833317-07:00,997.0720825195312,10.825169,10825.169 +26448,2025-03-10T08:30:06.667540-07:00,997.0523681640625,10.834223,10834.223 +26449,2025-03-10T08:30:17.494324-07:00,997.05126953125,10.826784,10826.784 +26450,2025-03-10T08:30:28.325155-07:00,997.0697021484375,10.830831,10830.831 +26451,2025-03-10T08:30:39.163182-07:00,997.0498657226562,10.838027,10838.027 +26452,2025-03-10T08:30:49.986447-07:00,997.0870361328125,10.823265,10823.265 +26453,2025-03-10T08:31:00.819169-07:00,997.0505981445312,10.832722,10832.722 +26454,2025-03-10T08:31:11.650242-07:00,997.065185546875,10.831073,10831.073 +26455,2025-03-10T08:31:22.477182-07:00,997.036376953125,10.82694,10826.94 +26456,2025-03-10T08:31:33.315053-07:00,997.062744140625,10.837871,10837.871 +26457,2025-03-10T08:31:44.138330-07:00,997.0655517578125,10.823277,10823.277 +26458,2025-03-10T08:31:54.967831-07:00,997.0433349609375,10.829501,10829.501 +26459,2025-03-10T08:32:05.792422-07:00,997.0645141601562,10.824591,10824.591 +26460,2025-03-10T08:32:16.624233-07:00,997.0499877929688,10.831811,10831.811 +26461,2025-03-10T08:32:27.451182-07:00,997.06201171875,10.826949,10826.949 +26462,2025-03-10T08:32:38.277693-07:00,997.0465087890625,10.826511,10826.511 +26463,2025-03-10T08:32:49.107443-07:00,997.0582885742188,10.82975,10829.75 +26464,2025-03-10T08:32:59.929197-07:00,997.04931640625,10.821754,10821.754 +26465,2025-03-10T08:33:10.750269-07:00,997.069091796875,10.821072,10821.072 +26466,2025-03-10T08:33:21.574176-07:00,997.0392456054688,10.823907,10823.907 +26467,2025-03-10T08:33:32.402307-07:00,997.03125,10.828131,10828.131 +26468,2025-03-10T08:33:43.227189-07:00,997.0301513671875,10.824882,10824.882 +26469,2025-03-10T08:33:54.053586-07:00,997.0399169921875,10.826397,10826.397 +26470,2025-03-10T08:34:04.869170-07:00,996.9979858398438,10.815584,10815.584 +26471,2025-03-10T08:34:15.706243-07:00,997.0440673828125,10.837073,10837.073 +26472,2025-03-10T08:34:26.525512-07:00,996.994140625,10.819269,10819.269 +26473,2025-03-10T08:34:37.354315-07:00,997.0062255859375,10.828803,10828.803 +26474,2025-03-10T08:34:48.180186-07:00,996.998291015625,10.825871,10825.871 +26475,2025-03-10T08:34:59.017228-07:00,997.015625,10.837042,10837.042 +26476,2025-03-10T08:35:09.840421-07:00,996.9736938476562,10.823193,10823.193 +26477,2025-03-10T08:35:20.679201-07:00,997.0067138671875,10.83878,10838.78 +26478,2025-03-10T08:35:31.512376-07:00,996.9990844726562,10.833175,10833.175 +26479,2025-03-10T08:35:42.342507-07:00,996.9976806640625,10.830131,10830.131 +26480,2025-03-10T08:35:53.173190-07:00,996.9910888671875,10.830683,10830.683 +26481,2025-03-10T08:36:04.000622-07:00,996.989990234375,10.827432,10827.432 +26482,2025-03-10T08:36:14.824396-07:00,997.0361938476562,10.823774,10823.774 +26483,2025-03-10T08:36:25.655922-07:00,997.0062255859375,10.831526,10831.526 +26484,2025-03-10T08:36:36.478416-07:00,997.013916015625,10.822494,10822.494 +26485,2025-03-10T08:36:47.309660-07:00,997.024658203125,10.831244,10831.244 +26486,2025-03-10T08:36:58.130438-07:00,996.9972534179688,10.820778,10820.778 +26487,2025-03-10T08:37:08.955395-07:00,997.009033203125,10.824957,10824.957 +26488,2025-03-10T08:37:19.788168-07:00,997.0133056640625,10.832773,10832.773 +26489,2025-03-10T08:37:30.613164-07:00,997.0264892578125,10.824996,10824.996 +26490,2025-03-10T08:37:41.445252-07:00,997.0264892578125,10.832088,10832.088 +26491,2025-03-10T08:37:52.264183-07:00,997.02294921875,10.818931,10818.931 +26492,2025-03-10T08:38:03.097578-07:00,997.029541015625,10.833395,10833.395 +26493,2025-03-10T08:38:13.923424-07:00,997.0150146484375,10.825846,10825.846 +26494,2025-03-10T08:38:24.751455-07:00,997.0281982421875,10.828031,10828.031 +26495,2025-03-10T08:38:35.579318-07:00,997.0115356445312,10.827863,10827.863 +26496,2025-03-10T08:38:46.410608-07:00,997.0167236328125,10.83129,10831.29 +26497,2025-03-10T08:38:57.240179-07:00,997.0101318359375,10.829571,10829.571 +26498,2025-03-10T08:39:08.062787-07:00,997.0115356445312,10.822608,10822.608 +26499,2025-03-10T08:39:18.896226-07:00,997.0036010742188,10.833439,10833.439 +26500,2025-03-10T08:39:29.728475-07:00,997.014404296875,10.832249,10832.249 +26501,2025-03-10T08:39:40.553172-07:00,997.0275268554688,10.824697,10824.697 +26502,2025-03-10T08:39:51.385313-07:00,997.0331420898438,10.832141,10832.141 +26503,2025-03-10T08:40:02.207409-07:00,997.01220703125,10.822096,10822.096 +26504,2025-03-10T08:40:13.035515-07:00,997.0150146484375,10.828106,10828.106 +26505,2025-03-10T08:40:23.862189-07:00,997.0084228515625,10.826674,10826.674 +26506,2025-03-10T08:40:34.685072-07:00,997.0281982421875,10.822883,10822.883 +26507,2025-03-10T08:40:45.523631-07:00,997.0257568359375,10.838559,10838.559 +26508,2025-03-10T08:40:56.342430-07:00,997.0181274414062,10.818799,10818.799 +26509,2025-03-10T08:41:07.174173-07:00,997.0695190429688,10.831743,10831.743 +26510,2025-03-10T08:41:17.996773-07:00,997.0011596679688,10.8226,10822.6 +26511,2025-03-10T08:41:28.820509-07:00,997.0198364257812,10.823736,10823.736 +26512,2025-03-10T08:41:39.646818-07:00,997.0396728515625,10.826309,10826.309 +26513,2025-03-10T08:41:50.467815-07:00,997.0306396484375,10.820997,10820.997 +26514,2025-03-10T08:42:01.294525-07:00,997.035888671875,10.82671,10826.71 +26515,2025-03-10T08:42:12.120646-07:00,997.0226440429688,10.826121,10826.121 +26516,2025-03-10T08:42:22.949376-07:00,997.0413818359375,10.82873,10828.73 +26517,2025-03-10T08:42:33.777277-07:00,997.046630859375,10.827901,10827.901 +26518,2025-03-10T08:42:44.592419-07:00,997.0399780273438,10.815142,10815.142 +26519,2025-03-10T08:42:55.420828-07:00,997.0653076171875,10.828409,10828.409 +26520,2025-03-10T08:43:06.247488-07:00,997.0521850585938,10.82666,10826.66 +26521,2025-03-10T08:43:17.069190-07:00,997.0376586914062,10.821702,10821.702 +26522,2025-03-10T08:43:27.902462-07:00,997.0772094726562,10.833272,10833.272 +26523,2025-03-10T08:43:38.723190-07:00,997.06298828125,10.820728,10820.728 +26524,2025-03-10T08:43:49.548167-07:00,997.0330200195312,10.824977,10824.977 +26525,2025-03-10T08:44:00.373466-07:00,997.0538940429688,10.825299,10825.299 +26526,2025-03-10T08:44:11.199174-07:00,997.0504150390625,10.825708,10825.708 +26527,2025-03-10T08:44:22.033246-07:00,997.0843505859375,10.834072,10834.072 +26528,2025-03-10T08:44:32.857416-07:00,997.0580444335938,10.82417,10824.17 +26529,2025-03-10T08:44:43.677715-07:00,997.0712280273438,10.820299,10820.299 +26530,2025-03-10T08:44:54.509371-07:00,997.0570068359375,10.831656,10831.656 +26531,2025-03-10T08:45:05.326179-07:00,997.0753784179688,10.816808,10816.808 +26532,2025-03-10T08:45:16.160361-07:00,997.0809326171875,10.834182,10834.182 +26533,2025-03-10T08:45:26.980214-07:00,997.06640625,10.819853,10819.853 +26534,2025-03-10T08:45:37.797675-07:00,997.0653076171875,10.817461,10817.461 +26535,2025-03-10T08:45:48.628189-07:00,997.0587768554688,10.830514,10830.514 +26536,2025-03-10T08:45:59.460787-07:00,997.057373046875,10.832598,10832.598 +26537,2025-03-10T08:46:10.286415-07:00,997.0365600585938,10.825628,10825.628 +26538,2025-03-10T08:46:21.102322-07:00,997.0736083984375,10.815907,10815.907 +26539,2025-03-10T08:46:31.933184-07:00,997.0802612304688,10.830862,10830.862 +26540,2025-03-10T08:46:42.758185-07:00,997.0985717773438,10.825001,10825.001 +26541,2025-03-10T08:46:53.574508-07:00,997.0632934570312,10.816323,10816.323 +26542,2025-03-10T08:47:04.404167-07:00,997.076416015625,10.829659,10829.659 +26543,2025-03-10T08:47:15.224183-07:00,997.1107788085938,10.820016,10820.016 +26544,2025-03-10T08:47:26.046192-07:00,997.0795288085938,10.822009,10822.009 +26545,2025-03-10T08:47:36.876207-07:00,997.0916137695312,10.830015,10830.015 +26546,2025-03-10T08:47:47.700637-07:00,997.1099853515625,10.82443,10824.43 +26547,2025-03-10T08:47:58.525434-07:00,997.0968627929688,10.824797,10824.797 +26548,2025-03-10T08:48:09.350785-07:00,997.0430297851562,10.825351,10825.351 +26549,2025-03-10T08:48:20.163617-07:00,997.0826416015625,10.812832,10812.832 +26550,2025-03-10T08:48:30.982220-07:00,997.1090087890625,10.818603,10818.603 +26551,2025-03-10T08:48:41.811442-07:00,997.1034545898438,10.829222,10829.222 +26552,2025-03-10T08:48:52.641187-07:00,997.0985717773438,10.829745,10829.745 +26553,2025-03-10T08:49:03.456190-07:00,997.0943603515625,10.815003,10815.003 +26554,2025-03-10T08:49:14.286637-07:00,997.0722045898438,10.830447,10830.447 +26555,2025-03-10T08:49:25.102519-07:00,997.1183471679688,10.815882,10815.882 +26556,2025-03-10T08:49:35.917415-07:00,997.076416015625,10.814896,10814.896 +26557,2025-03-10T08:49:46.743299-07:00,997.0843505859375,10.825884,10825.884 +26558,2025-03-10T08:49:57.570165-07:00,997.0829467773438,10.826866,10826.866 +26559,2025-03-10T08:50:08.390349-07:00,997.0895385742188,10.820184,10820.184 +26560,2025-03-10T08:50:19.211167-07:00,997.0753173828125,10.820818,10820.818 +26561,2025-03-10T08:50:30.031230-07:00,997.0753173828125,10.820063,10820.063 +26562,2025-03-10T08:50:40.845182-07:00,997.0673217773438,10.813952,10813.952 +26563,2025-03-10T08:50:51.665332-07:00,997.0712280273438,10.82015,10820.15 +26564,2025-03-10T08:51:02.492186-07:00,997.0513916015625,10.826854,10826.854 +26565,2025-03-10T08:51:13.307371-07:00,997.0437622070312,10.815185,10815.185 +26566,2025-03-10T08:51:24.128225-07:00,997.0923461914062,10.820854,10820.854 +26567,2025-03-10T08:51:34.940277-07:00,997.0701293945312,10.812052,10812.052 +26568,2025-03-10T08:51:45.771229-07:00,997.0635986328125,10.830952,10830.952 +26569,2025-03-10T08:51:56.592180-07:00,997.0621948242188,10.820951,10820.951 +26570,2025-03-10T08:52:07.417184-07:00,997.067626953125,10.825004,10825.004 +26571,2025-03-10T08:52:18.235128-07:00,997.0596923828125,10.817944,10817.944 +26572,2025-03-10T08:52:29.060178-07:00,997.0875244140625,10.82505,10825.05 +26573,2025-03-10T08:52:39.888643-07:00,997.067626953125,10.828465,10828.465 +26574,2025-03-10T08:52:50.713011-07:00,997.0861206054688,10.824368,10824.368 +26575,2025-03-10T08:53:01.533240-07:00,997.037841796875,10.820229,10820.229 +26576,2025-03-10T08:53:12.349531-07:00,997.051025390625,10.816291,10816.291 +26577,2025-03-10T08:53:23.168580-07:00,997.015625,10.819049,10819.049 +26578,2025-03-10T08:53:33.995996-07:00,997.0496826171875,10.827416,10827.416 +26579,2025-03-10T08:53:44.818492-07:00,997.0420532226562,10.822496,10822.496 +26580,2025-03-10T08:53:55.640179-07:00,997.05517578125,10.821687,10821.687 +26581,2025-03-10T08:54:06.458186-07:00,997.0617065429688,10.818007,10818.007 +26582,2025-03-10T08:54:17.281561-07:00,997.0460815429688,10.823375,10823.375 +26583,2025-03-10T08:54:28.101296-07:00,997.03955078125,10.819735,10819.735 +26584,2025-03-10T08:54:38.915179-07:00,997.03955078125,10.813883,10813.883 +26585,2025-03-10T08:54:49.729220-07:00,997.052734375,10.814041,10814.041 +26586,2025-03-10T08:55:00.557185-07:00,996.9920043945312,10.827965,10827.965 +26587,2025-03-10T08:55:11.367240-07:00,997.01318359375,10.810055,10810.055 +26588,2025-03-10T08:55:22.181323-07:00,997.0381469726562,10.814083,10814.083 +26589,2025-03-10T08:55:33.000163-07:00,997.017333984375,10.81884,10818.84 +26590,2025-03-10T08:55:43.815230-07:00,997.0028076171875,10.815067,10815.067 +26591,2025-03-10T08:55:54.636181-07:00,997.0315551757812,10.820951,10820.951 +26592,2025-03-10T08:56:05.456176-07:00,997.0225830078125,10.819995,10819.995 +26593,2025-03-10T08:56:16.270550-07:00,997.0423583984375,10.814374,10814.374 +26594,2025-03-10T08:56:27.096179-07:00,997.041259765625,10.825629,10825.629 +26595,2025-03-10T08:56:37.909186-07:00,997.00830078125,10.813007,10813.007 +26596,2025-03-10T08:56:48.727506-07:00,997.0465087890625,10.81832,10818.32 +26597,2025-03-10T08:56:59.552462-07:00,997.0610961914062,10.824956,10824.956 +26598,2025-03-10T08:57:10.383759-07:00,997.021484375,10.831297,10831.297 +26599,2025-03-10T08:57:21.202861-07:00,997.014892578125,10.819102,10819.102 +26600,2025-03-10T08:57:32.018184-07:00,997.0531005859375,10.815323,10815.323 +26601,2025-03-10T08:57:42.844788-07:00,996.9871826171875,10.826604,10826.604 +26602,2025-03-10T08:57:53.675182-07:00,997.038818359375,10.830394,10830.394 +26603,2025-03-10T08:58:04.496211-07:00,997.0242309570312,10.821029,10821.029 +26604,2025-03-10T08:58:15.318517-07:00,997.025634765625,10.822306,10822.306 +26605,2025-03-10T08:58:26.142174-07:00,997.0571899414062,10.823657,10823.657 +26606,2025-03-10T08:58:36.968460-07:00,997.0308837890625,10.826286,10826.286 +26607,2025-03-10T08:58:47.790429-07:00,997.0166625976562,10.821969,10821.969 +26608,2025-03-10T08:58:58.612320-07:00,997.05615234375,10.821891,10821.891 +26609,2025-03-10T08:59:09.448401-07:00,997.04296875,10.836081,10836.081 +26610,2025-03-10T08:59:20.261239-07:00,997.0482177734375,10.812838,10812.838 +26611,2025-03-10T08:59:31.087687-07:00,997.0166625976562,10.826448,10826.448 +26612,2025-03-10T08:59:41.905644-07:00,997.0482177734375,10.817957,10817.957 +26613,2025-03-10T08:59:52.724439-07:00,997.0471801757812,10.818795,10818.795 +26614,2025-03-10T09:00:03.554698-07:00,997.04052734375,10.830259,10830.259 +26615,2025-03-10T09:00:14.365226-07:00,997.0457763671875,10.810528,10810.528 +26616,2025-03-10T09:00:25.192174-07:00,997.060302734375,10.826948,10826.948 +26617,2025-03-10T09:00:36.018866-07:00,997.0588989257812,10.826692,10826.692 +26618,2025-03-10T09:00:46.836184-07:00,997.0259399414062,10.817318,10817.318 +26619,2025-03-10T09:00:57.654156-07:00,997.0432739257812,10.817972,10817.972 +26620,2025-03-10T09:01:08.472683-07:00,997.0711059570312,10.818527,10818.527 +26621,2025-03-10T09:01:19.297167-07:00,997.0631103515625,10.824484,10824.484 +26622,2025-03-10T09:01:30.117400-07:00,997.0488891601562,10.820233,10820.233 +26623,2025-03-10T09:01:40.936531-07:00,997.0499267578125,10.819131,10819.131 +26624,2025-03-10T09:01:51.753418-07:00,997.0609130859375,10.816887,10816.887 +26625,2025-03-10T09:02:02.585773-07:00,997.041259765625,10.832355,10832.355 +26626,2025-03-10T09:02:13.404764-07:00,997.041259765625,10.818991,10818.991 +26627,2025-03-10T09:02:24.230425-07:00,997.0057983398438,10.825661,10825.661 +26628,2025-03-10T09:02:35.048515-07:00,997.066162109375,10.81809,10818.09 +26629,2025-03-10T09:02:45.866177-07:00,997.049560546875,10.817662,10817.662 +26630,2025-03-10T09:02:56.685320-07:00,997.0560913085938,10.819143,10819.143 +26631,2025-03-10T09:03:07.508461-07:00,997.0626831054688,10.823141,10823.141 +26632,2025-03-10T09:03:18.333188-07:00,997.021728515625,10.824727,10824.727 +26633,2025-03-10T09:03:29.147183-07:00,997.0363159179688,10.813995,10813.995 +26634,2025-03-10T09:03:39.962399-07:00,997.0560913085938,10.815216,10815.216 +26635,2025-03-10T09:03:50.781523-07:00,997.0745239257812,10.819124,10819.124 +26636,2025-03-10T09:04:01.600303-07:00,997.0546875,10.81878,10818.78 +26637,2025-03-10T09:04:12.423229-07:00,997.0932006835938,10.822926,10822.926 +26638,2025-03-10T09:04:23.252240-07:00,997.0470581054688,10.829011,10829.011 +26639,2025-03-10T09:04:34.070167-07:00,997.0745239257812,10.817927,10817.927 +26640,2025-03-10T09:04:44.889737-07:00,997.087646484375,10.81957,10819.57 +26641,2025-03-10T09:04:55.712383-07:00,997.032470703125,10.822646,10822.646 +26642,2025-03-10T09:05:06.529178-07:00,997.0997924804688,10.816795,10816.795 +26643,2025-03-10T09:05:17.350716-07:00,997.07861328125,10.821538,10821.538 +26644,2025-03-10T09:05:28.165529-07:00,997.0775756835938,10.814813,10814.813 +26645,2025-03-10T09:05:38.988410-07:00,997.0654907226562,10.822881,10822.881 +26646,2025-03-10T09:05:49.645600-07:00,997.0932006835938,10.65719,10657.19 +26647,2025-03-10T09:06:00.467893-07:00,997.10498046875,10.822293,10822.293 +26648,2025-03-10T09:06:11.280610-07:00,997.06689453125,10.812717,10812.717 +26649,2025-03-10T09:06:22.101922-07:00,997.0984497070312,10.821312,10821.312 +26650,2025-03-10T09:06:32.912615-07:00,997.10498046875,10.810693,10810.693 +26651,2025-03-10T09:06:43.729909-07:00,997.1314086914062,10.817294,10817.294 +26652,2025-03-10T09:06:54.553853-07:00,997.0907592773438,10.823944,10823.944 +26653,2025-03-10T09:07:05.365840-07:00,997.1038818359375,10.811987,10811.987 +26654,2025-03-10T09:07:16.188218-07:00,997.123779296875,10.822378,10822.378 +26655,2025-03-10T09:07:27.001237-07:00,997.0948486328125,10.813019,10813.019 +26656,2025-03-10T09:07:37.821842-07:00,997.0984497070312,10.820605,10820.605 +26657,2025-03-10T09:07:48.642285-07:00,997.095947265625,10.820443,10820.443 +26658,2025-03-10T09:07:59.454160-07:00,997.1038818359375,10.811875,10811.875 +26659,2025-03-10T09:08:10.277877-07:00,997.0828247070312,10.823717,10823.717 +26660,2025-03-10T09:08:21.090895-07:00,997.0828247070312,10.813018,10813.018 +26661,2025-03-10T09:08:31.903981-07:00,997.0817260742188,10.813086,10813.086 +26662,2025-03-10T09:08:42.714646-07:00,997.0882568359375,10.810665,10810.665 +26663,2025-03-10T09:08:53.529949-07:00,997.1015014648438,10.815303,10815.303 +26664,2025-03-10T09:09:04.349032-07:00,997.1015014648438,10.819083,10819.083 +26665,2025-03-10T09:09:15.170067-07:00,997.1015014648438,10.821035,10821.035 +26666,2025-03-10T09:09:25.987350-07:00,997.08935546875,10.817283,10817.283 +26667,2025-03-10T09:09:36.795896-07:00,997.12890625,10.808546,10808.546 +26668,2025-03-10T09:09:47.613976-07:00,997.108154296875,10.81808,10818.08 +26669,2025-03-10T09:09:58.440538-07:00,997.108154296875,10.826562,10826.562 +26670,2025-03-10T09:10:09.247213-07:00,997.0868530273438,10.806675,10806.675 +26671,2025-03-10T09:10:20.068837-07:00,997.1001586914062,10.821624,10821.624 +26672,2025-03-10T09:10:41.693435-07:00,997.0990600585938,21.624598,21624.598 +26673,2025-03-10T09:10:52.520216-07:00,997.0858764648438,10.826781,10826.781 +26674,2025-03-10T09:11:03.334112-07:00,997.1121826171875,10.813896,10813.896 +26675,2025-03-10T09:11:14.143160-07:00,997.1031494140625,10.809048,10809.048 +26676,2025-03-10T09:11:24.970145-07:00,997.130615234375,10.826985,10826.985 +26677,2025-03-10T09:11:35.784381-07:00,997.101806640625,10.814236,10814.236 +26678,2025-03-10T09:11:46.604614-07:00,997.1084594726562,10.820233,10820.233 +26679,2025-03-10T09:11:57.425615-07:00,997.1281127929688,10.821001,10821.001 +26680,2025-03-10T09:12:08.245620-07:00,997.12158203125,10.820005,10820.005 +26681,2025-03-10T09:12:19.054049-07:00,997.1007690429688,10.808429,10808.429 +26682,2025-03-10T09:12:29.879322-07:00,997.0931396484375,10.825273,10825.273 +26683,2025-03-10T09:12:40.695414-07:00,997.1138916015625,10.816092,10816.092 +26684,2025-03-10T09:12:51.507421-07:00,997.1281127929688,10.812007,10812.007 +26685,2025-03-10T09:13:02.324251-07:00,997.1138916015625,10.81683,10816.83 +26686,2025-03-10T09:13:13.138816-07:00,997.0809326171875,10.814565,10814.565 +26687,2025-03-10T09:13:23.956918-07:00,997.1073608398438,10.818102,10818.102 +26688,2025-03-10T09:13:34.774746-07:00,997.12158203125,10.817828,10817.828 +26689,2025-03-10T09:13:45.583979-07:00,997.08203125,10.809233,10809.233 +26690,2025-03-10T09:13:56.406854-07:00,997.101806640625,10.822875,10822.875 +26691,2025-03-10T09:14:07.223157-07:00,997.1084594726562,10.816303,10816.303 +26692,2025-03-10T09:14:18.044623-07:00,997.1138916015625,10.821466,10821.466 +26693,2025-03-10T09:14:28.867612-07:00,997.101806640625,10.822989,10822.989 +26694,2025-03-10T09:14:39.686001-07:00,997.0941162109375,10.818389,10818.389 +26695,2025-03-10T09:14:50.498922-07:00,997.1007690429688,10.812921,10812.921 +26696,2025-03-10T09:15:01.325875-07:00,997.1204833984375,10.826953,10826.953 +26697,2025-03-10T09:15:12.134898-07:00,997.0996704101562,10.809023,10809.023 +26698,2025-03-10T09:15:22.959974-07:00,997.0719604492188,10.825076,10825.076 +26699,2025-03-10T09:15:33.768849-07:00,997.0809326171875,10.808875,10808.875 +26700,2025-03-10T09:15:44.583645-07:00,997.0931396484375,10.814796,10814.796 +26701,2025-03-10T09:15:55.404608-07:00,997.1007690429688,10.820963,10820.963 +26702,2025-03-10T09:16:06.224642-07:00,997.1073608398438,10.820034,10820.034 +26703,2025-03-10T09:16:17.047622-07:00,997.0931396484375,10.82298,10822.98 +26704,2025-03-10T09:16:27.868385-07:00,997.1194458007812,10.820763,10820.763 +26705,2025-03-10T09:16:38.686676-07:00,997.0996704101562,10.818291,10818.291 +26706,2025-03-10T09:16:49.498599-07:00,997.0941162109375,10.811923,10811.923 +26707,2025-03-10T09:17:00.324610-07:00,997.0906372070312,10.826011,10826.011 +26708,2025-03-10T09:17:11.140959-07:00,997.0917358398438,10.816349,10816.349 +26709,2025-03-10T09:17:21.956328-07:00,997.0906372070312,10.815369,10815.369 +26710,2025-03-10T09:17:32.780664-07:00,997.0826416015625,10.824336,10824.336 +26711,2025-03-10T09:17:43.600949-07:00,997.1180419921875,10.820285,10820.285 +26712,2025-03-10T09:17:54.416957-07:00,997.09716796875,10.816008,10816.008 +26713,2025-03-10T09:18:05.236853-07:00,997.1104125976562,10.819896,10819.896 +26714,2025-03-10T09:18:16.049868-07:00,997.1104125976562,10.813015,10813.015 +26715,2025-03-10T09:18:26.871191-07:00,997.1024169921875,10.821323,10821.323 +26716,2025-03-10T09:18:37.679670-07:00,997.0958862304688,10.808479,10808.479 +26717,2025-03-10T09:18:48.496901-07:00,997.0917358398438,10.817231,10817.231 +26718,2025-03-10T09:18:59.313621-07:00,997.0892333984375,10.81672,10816.72 +26719,2025-03-10T09:19:10.130935-07:00,997.1090698242188,10.817314,10817.314 +26720,2025-03-10T09:19:20.962858-07:00,997.083251953125,10.831923,10831.923 +26721,2025-03-10T09:19:31.783225-07:00,997.1231079101562,10.820367,10820.367 +26722,2025-03-10T09:19:42.591989-07:00,997.0853271484375,10.808764,10808.764 +26723,2025-03-10T09:19:53.420862-07:00,997.0939331054688,10.828873,10828.873 +26724,2025-03-10T09:20:04.235824-07:00,997.1136474609375,10.814962,10814.962 +26725,2025-03-10T09:20:15.065871-07:00,997.1163940429688,10.830047,10830.047 +26726,2025-03-10T09:20:25.883619-07:00,997.114013671875,10.817748,10817.748 +26727,2025-03-10T09:20:36.696993-07:00,997.1195068359375,10.813374,10813.374 +26728,2025-03-10T09:20:47.520022-07:00,997.1235961914062,10.823029,10823.029 +26729,2025-03-10T09:20:58.340618-07:00,997.111572265625,10.820596,10820.596 +26730,2025-03-10T09:21:09.164467-07:00,997.1024780273438,10.823849,10823.849 +26731,2025-03-10T09:21:19.973236-07:00,997.0948486328125,10.808769,10808.769 +26732,2025-03-10T09:21:30.796094-07:00,997.1246948242188,10.822858,10822.858 +26733,2025-03-10T09:21:41.611852-07:00,997.1246948242188,10.815758,10815.758 +26734,2025-03-10T09:21:52.434874-07:00,997.1260986328125,10.823022,10823.022 +26735,2025-03-10T09:22:03.249918-07:00,997.127197265625,10.815044,10815.044 +26736,2025-03-10T09:22:14.062611-07:00,997.123046875,10.812693,10812.693 +26737,2025-03-10T09:22:24.878807-07:00,997.0967407226562,10.816196,10816.196 +26738,2025-03-10T09:22:35.694215-07:00,997.108154296875,10.815408,10815.408 +26739,2025-03-10T09:22:46.521738-07:00,997.1436157226562,10.827523,10827.523 +26740,2025-03-10T09:22:57.334612-07:00,997.139404296875,10.812874,10812.874 +26741,2025-03-10T09:23:08.156979-07:00,997.1196899414062,10.822367,10822.367 +26742,2025-03-10T09:23:18.975480-07:00,997.1495361328125,10.818501,10818.501 +26743,2025-03-10T09:23:29.788602-07:00,997.1322021484375,10.813122,10813.122 +26744,2025-03-10T09:23:40.604616-07:00,997.1503295898438,10.816014,10816.014 +26745,2025-03-10T09:23:51.423891-07:00,997.1461181640625,10.819275,10819.275 +26746,2025-03-10T09:24:02.228963-07:00,997.1433715820312,10.805072,10805.072 +26747,2025-03-10T09:24:13.045617-07:00,997.15234375,10.816654,10816.654 +26748,2025-03-10T09:24:23.857616-07:00,997.1138916015625,10.811999,10811.999 +26749,2025-03-10T09:24:34.684516-07:00,997.1583862304688,10.8269,10826.9 +26750,2025-03-10T09:24:45.500622-07:00,997.1476440429688,10.816106,10816.106 +26751,2025-03-10T09:24:56.318860-07:00,997.1632690429688,10.818238,10818.238 +26752,2025-03-10T09:25:07.139610-07:00,997.164306640625,10.82075,10820.75 +26753,2025-03-10T09:25:17.964776-07:00,997.1878662109375,10.825166,10825.166 +26754,2025-03-10T09:25:28.785620-07:00,997.1442260742188,10.820844,10820.844 +26755,2025-03-10T09:25:39.610768-07:00,997.16748046875,10.825148,10825.148 +26756,2025-03-10T09:25:50.427867-07:00,997.1422119140625,10.817099,10817.099 +26757,2025-03-10T09:26:01.245850-07:00,997.152587890625,10.817983,10817.983 +26758,2025-03-10T09:26:12.069447-07:00,997.1484375,10.823597,10823.597 +26759,2025-03-10T09:26:22.890620-07:00,997.1495361328125,10.821173,10821.173 +26760,2025-03-10T09:26:33.708724-07:00,997.1532592773438,10.818104,10818.104 +26761,2025-03-10T09:26:44.534175-07:00,997.1162719726562,10.825451,10825.451 +26762,2025-03-10T09:26:55.354778-07:00,997.1370239257812,10.820603,10820.603 +26763,2025-03-10T09:27:06.175616-07:00,997.173828125,10.820838,10820.838 +26764,2025-03-10T09:27:16.998034-07:00,997.156494140625,10.822418,10822.418 +26765,2025-03-10T09:27:27.825615-07:00,997.1520385742188,10.827581,10827.581 +26766,2025-03-10T09:27:38.634622-07:00,997.1610717773438,10.809007,10809.007 +26767,2025-03-10T09:27:49.461315-07:00,997.1755981445312,10.826693,10826.693 +26768,2025-03-10T09:28:00.279622-07:00,997.166259765625,10.818307,10818.307 +26769,2025-03-10T09:28:11.101657-07:00,997.1634521484375,10.822035,10822.035 +26770,2025-03-10T09:28:21.923994-07:00,997.1710815429688,10.822337,10822.337 +26771,2025-03-10T09:28:43.563248-07:00,997.2023315429688,21.639254,21639.254 +26772,2025-03-10T09:28:54.388676-07:00,997.2037353515625,10.825428,10825.428 +26773,2025-03-10T09:29:05.203605-07:00,997.1860961914062,10.814929,10814.929 +26774,2025-03-10T09:29:16.034920-07:00,997.1741943359375,10.831315,10831.315 +26775,2025-03-10T09:29:26.853630-07:00,997.177734375,10.81871,10818.71 +26776,2025-03-10T09:29:37.673878-07:00,997.147216796875,10.820248,10820.248 +26777,2025-03-10T09:29:48.491580-07:00,997.1947021484375,10.817702,10817.702 +26778,2025-03-10T09:29:59.310874-07:00,997.1693725585938,10.819294,10819.294 +26779,2025-03-10T09:30:10.136751-07:00,997.2193603515625,10.825877,10825.877 +26780,2025-03-10T09:30:20.946655-07:00,997.2326049804688,10.809904,10809.904 +26781,2025-03-10T09:30:31.767863-07:00,997.194091796875,10.821208,10821.208 +26782,2025-03-10T09:30:42.590616-07:00,997.203125,10.822753,10822.753 +26783,2025-03-10T09:30:53.407518-07:00,997.1912231445312,10.816902,10816.902 +26784,2025-03-10T09:31:04.227948-07:00,997.2267456054688,10.82043,10820.43 +26785,2025-03-10T09:31:15.052823-07:00,997.234375,10.824875,10824.875 +26786,2025-03-10T09:31:25.867259-07:00,997.2156372070312,10.814436,10814.436 +26787,2025-03-10T09:31:36.697893-07:00,997.1774291992188,10.830634,10830.634 +26788,2025-03-10T09:31:47.519635-07:00,997.2246704101562,10.821742,10821.742 +26789,2025-03-10T09:31:58.335939-07:00,997.2218627929688,10.816304,10816.304 +26790,2025-03-10T09:32:09.154544-07:00,997.2218627929688,10.818605,10818.605 +26791,2025-03-10T09:32:19.968612-07:00,997.21875,10.814068,10814.068 +26792,2025-03-10T09:32:30.790793-07:00,997.225341796875,10.822181,10822.181 +26793,2025-03-10T09:32:41.610919-07:00,997.2003173828125,10.820126,10820.126 +26794,2025-03-10T09:32:52.441622-07:00,997.2093505859375,10.830703,10830.703 +26795,2025-03-10T09:33:03.269624-07:00,997.1961669921875,10.828002,10828.002 +26796,2025-03-10T09:33:14.087622-07:00,997.1788330078125,10.817998,10817.998 +26797,2025-03-10T09:33:24.914949-07:00,997.2051391601562,10.827327,10827.327 +26798,2025-03-10T09:33:35.729874-07:00,997.2207641601562,10.814925,10814.925 +26799,2025-03-10T09:33:46.555671-07:00,997.182373046875,10.825797,10825.797 +26800,2025-03-10T09:33:57.376646-07:00,997.2111206054688,10.820975,10820.975 +26801,2025-03-10T09:34:08.203616-07:00,997.2045288085938,10.82697,10826.97 +26802,2025-03-10T09:34:19.028647-07:00,997.1913452148438,10.825031,10825.031 +26803,2025-03-10T09:34:29.847960-07:00,997.225341796875,10.819313,10819.313 +26804,2025-03-10T09:34:40.664764-07:00,997.2267456054688,10.816804,10816.804 +26805,2025-03-10T09:34:51.487655-07:00,997.2332763671875,10.822891,10822.891 +26806,2025-03-10T09:35:02.314675-07:00,997.234375,10.82702,10827.02 +26807,2025-03-10T09:35:13.127772-07:00,997.243408203125,10.813097,10813.097 +26808,2025-03-10T09:35:23.959926-07:00,997.2447509765625,10.832154,10832.154 +26809,2025-03-10T09:35:34.779709-07:00,997.2184448242188,10.819783,10819.783 +26810,2025-03-10T09:35:45.589801-07:00,997.2142333984375,10.810092,10810.092 +26811,2025-03-10T09:35:56.417521-07:00,997.2496948242188,10.82772,10827.72 +26812,2025-03-10T09:36:07.242864-07:00,997.21533203125,10.825343,10825.343 +26813,2025-03-10T09:36:18.062628-07:00,997.2034301757812,10.819764,10819.764 +26814,2025-03-10T09:36:28.891618-07:00,997.23095703125,10.82899,10828.99 +26815,2025-03-10T09:36:39.715615-07:00,997.2111206054688,10.823997,10823.997 +26816,2025-03-10T09:36:50.540920-07:00,997.2190551757812,10.825305,10825.305 +26817,2025-03-10T09:37:01.361740-07:00,997.2225952148438,10.82082,10820.82 +26818,2025-03-10T09:37:12.194526-07:00,997.2093505859375,10.832786,10832.786 +26819,2025-03-10T09:37:23.008208-07:00,997.245849609375,10.813682,10813.682 +26820,2025-03-10T09:37:33.838611-07:00,997.1732788085938,10.830403,10830.403 +26821,2025-03-10T09:37:44.658976-07:00,997.2051391601562,10.820365,10820.365 +26822,2025-03-10T09:37:55.486765-07:00,997.1746826171875,10.827789,10827.789 +26823,2025-03-10T09:38:06.306461-07:00,997.1903076171875,10.819696,10819.696 +26824,2025-03-10T09:38:17.132621-07:00,997.2125244140625,10.82616,10826.16 +26825,2025-03-10T09:38:27.963926-07:00,997.2190551757812,10.831305,10831.305 +26826,2025-03-10T09:38:38.784204-07:00,997.1913452148438,10.820278,10820.278 +26827,2025-03-10T09:38:49.613591-07:00,997.1871948242188,10.829387,10829.387 +26828,2025-03-10T09:39:00.446673-07:00,997.2214965820312,10.833082,10833.082 +26829,2025-03-10T09:39:11.268616-07:00,997.1806030273438,10.821943,10821.943 +26830,2025-03-10T09:39:22.098967-07:00,997.1951293945312,10.830351,10830.351 +26831,2025-03-10T09:39:32.925127-07:00,997.1885375976562,10.82616,10826.16 +26832,2025-03-10T09:39:43.744212-07:00,997.2041625976562,10.819085,10819.085 +26833,2025-03-10T09:39:54.565941-07:00,997.239501953125,10.821729,10821.729 +26834,2025-03-10T09:40:05.390616-07:00,997.2117919921875,10.824675,10824.675 +26835,2025-03-10T09:40:16.219191-07:00,997.1920166015625,10.828575,10828.575 +26836,2025-03-10T09:40:27.030826-07:00,997.208984375,10.811635,10811.635 +26837,2025-03-10T09:40:37.858974-07:00,997.1986083984375,10.828148,10828.148 +26838,2025-03-10T09:40:48.680219-07:00,997.2142333984375,10.821245,10821.245 +26839,2025-03-10T09:40:59.501610-07:00,997.2076416015625,10.821391,10821.391 +26840,2025-03-10T09:41:10.325072-07:00,997.213134765625,10.823462,10823.462 +26841,2025-03-10T09:41:21.145673-07:00,997.2274169921875,10.820601,10820.601 +26842,2025-03-10T09:41:31.969595-07:00,997.2207641601562,10.823922,10823.922 +26843,2025-03-10T09:41:42.791776-07:00,997.1836547851562,10.822181,10822.181 +26844,2025-03-10T09:41:53.617622-07:00,997.2100219726562,10.825846,10825.846 +26845,2025-03-10T09:42:04.437833-07:00,997.177001953125,10.820211,10820.211 +26846,2025-03-10T09:42:15.257060-07:00,997.1981811523438,10.819227,10819.227 +26847,2025-03-10T09:42:26.080837-07:00,997.177001953125,10.823777,10823.777 +26848,2025-03-10T09:42:36.910132-07:00,997.1903076171875,10.829295,10829.295 +26849,2025-03-10T09:42:47.730151-07:00,997.1860961914062,10.820019,10820.019 +26850,2025-03-10T09:42:58.563481-07:00,997.1465454101562,10.83333,10833.33 +26851,2025-03-10T09:43:09.383622-07:00,997.1520385742188,10.820141,10820.141 +26852,2025-03-10T09:43:20.205614-07:00,997.1687622070312,10.821992,10821.992 +26853,2025-03-10T09:43:31.030907-07:00,997.1554565429688,10.825293,10825.293 +26854,2025-03-10T09:43:41.858757-07:00,997.162109375,10.82785,10827.85 +26855,2025-03-10T09:43:52.677664-07:00,997.1358032226562,10.818907,10818.907 +26856,2025-03-10T09:44:03.501759-07:00,997.14892578125,10.824095,10824.095 +26857,2025-03-10T09:44:14.327860-07:00,997.1829833984375,10.826101,10826.101 +26858,2025-03-10T09:44:25.149176-07:00,997.1697387695312,10.821316,10821.316 +26859,2025-03-10T09:44:35.975926-07:00,997.1554565429688,10.82675,10826.75 +26860,2025-03-10T09:44:46.794614-07:00,997.1358032226562,10.818688,10818.688 +26861,2025-03-10T09:44:57.628856-07:00,997.14892578125,10.834242,10834.242 +26862,2025-03-10T09:45:08.447599-07:00,997.2041625976562,10.818743,10818.743 +26863,2025-03-10T09:45:19.274104-07:00,997.142333984375,10.826505,10826.505 +26864,2025-03-10T09:45:30.092615-07:00,997.14892578125,10.818511,10818.511 +26865,2025-03-10T09:45:40.913900-07:00,997.144775390625,10.821285,10821.285 +26866,2025-03-10T09:45:51.747892-07:00,997.131591796875,10.833992,10833.992 +26867,2025-03-10T09:46:02.564855-07:00,997.157958984375,10.816963,10816.963 +26868,2025-03-10T09:46:13.392772-07:00,997.157958984375,10.827917,10827.917 +26869,2025-03-10T09:46:24.217837-07:00,997.16455078125,10.825065,10825.065 +26870,2025-03-10T09:46:35.045244-07:00,997.1710815429688,10.827407,10827.407 +26871,2025-03-10T09:46:45.868606-07:00,997.1843872070312,10.823362,10823.362 +26872,2025-03-10T09:46:56.685606-07:00,997.1589965820312,10.817,10817.0 +26873,2025-03-10T09:47:07.506279-07:00,997.1631469726562,10.820673,10820.673 +26874,2025-03-10T09:47:18.325616-07:00,997.1787719726562,10.819337,10819.337 +26875,2025-03-10T09:47:29.146605-07:00,997.1721801757812,10.820989,10820.989 +26876,2025-03-10T09:47:39.970065-07:00,997.1920166015625,10.82346,10823.46 +26877,2025-03-10T09:47:50.794616-07:00,997.142333984375,10.824551,10824.551 +26878,2025-03-10T09:48:01.630238-07:00,997.1920166015625,10.835622,10835.622 +26879,2025-03-10T09:48:12.448205-07:00,997.1787719726562,10.817967,10817.967 +26880,2025-03-10T09:48:23.275859-07:00,997.1721801757812,10.827654,10827.654 +26881,2025-03-10T09:48:34.096597-07:00,997.1721801757812,10.820738,10820.738 +26882,2025-03-10T09:48:44.923618-07:00,997.18017578125,10.827021,10827.021 +26883,2025-03-10T09:48:55.749010-07:00,997.1812744140625,10.825392,10825.392 +26884,2025-03-10T09:49:06.572621-07:00,997.1392211914062,10.823611,10823.611 +26885,2025-03-10T09:49:17.402924-07:00,997.1812744140625,10.830303,10830.303 +26886,2025-03-10T09:49:28.226790-07:00,997.1524047851562,10.823866,10823.866 +26887,2025-03-10T09:49:39.047836-07:00,997.18359375,10.821046,10821.046 +26888,2025-03-10T09:49:49.872617-07:00,997.2023315429688,10.824781,10824.781 +26889,2025-03-10T09:50:00.688874-07:00,997.18359375,10.816257,10816.257 +26890,2025-03-10T09:50:11.513464-07:00,997.1849975585938,10.82459,10824.59 +26891,2025-03-10T09:50:22.332752-07:00,997.18359375,10.819288,10819.288 +26892,2025-03-10T09:50:33.154746-07:00,997.18359375,10.821994,10821.994 +26893,2025-03-10T09:50:43.970613-07:00,997.1849975585938,10.815867,10815.867 +26894,2025-03-10T09:50:54.794616-07:00,997.1585693359375,10.824003,10824.003 +26895,2025-03-10T09:51:05.621759-07:00,997.1676635742188,10.827143,10827.143 +26896,2025-03-10T09:51:16.441463-07:00,997.1874389648438,10.819704,10819.704 +26897,2025-03-10T09:51:27.253866-07:00,997.1741943359375,10.812403,10812.403 +26898,2025-03-10T09:51:38.082769-07:00,997.1898193359375,10.828903,10828.903 +26899,2025-03-10T09:51:48.907894-07:00,997.1964111328125,10.825125,10825.125 +26900,2025-03-10T09:51:59.726910-07:00,997.14892578125,10.819016,10819.016 +26901,2025-03-10T09:52:10.560959-07:00,997.2054443359375,10.834049,10834.049 +26902,2025-03-10T09:52:21.380620-07:00,997.2054443359375,10.819661,10819.661 +26903,2025-03-10T09:52:32.206734-07:00,997.20654296875,10.826114,10826.114 +26904,2025-03-10T09:52:43.030675-07:00,997.1932983398438,10.823941,10823.941 +26905,2025-03-10T09:52:53.852613-07:00,997.2054443359375,10.821938,10821.938 +26906,2025-03-10T09:53:04.673219-07:00,997.213134765625,10.820606,10820.606 +26907,2025-03-10T09:53:15.500633-07:00,997.1922607421875,10.827414,10827.414 +26908,2025-03-10T09:53:26.323795-07:00,997.2054443359375,10.823162,10823.162 +26909,2025-03-10T09:53:37.145949-07:00,997.2408447265625,10.822154,10822.154 +26910,2025-03-10T09:53:47.974865-07:00,997.2408447265625,10.828916,10828.916 +26911,2025-03-10T09:53:58.796901-07:00,997.24853515625,10.822036,10822.036 +26912,2025-03-10T09:54:09.618903-07:00,997.213134765625,10.822002,10822.002 +26913,2025-03-10T09:54:20.445617-07:00,997.2221069335938,10.826714,10826.714 +26914,2025-03-10T09:54:31.267615-07:00,997.2276611328125,10.821998,10821.998 +26915,2025-03-10T09:54:42.086605-07:00,997.228759765625,10.81899,10818.99 +26916,2025-03-10T09:54:52.918380-07:00,997.2221069335938,10.831775,10831.775 +26917,2025-03-10T09:55:03.741622-07:00,997.2168579101562,10.823242,10823.242 +26918,2025-03-10T09:55:14.562773-07:00,997.2377319335938,10.821151,10821.151 +26919,2025-03-10T09:55:25.385965-07:00,997.2377319335938,10.823192,10823.192 +26920,2025-03-10T09:55:36.213876-07:00,997.2154541015625,10.827911,10827.911 +26921,2025-03-10T09:55:47.035223-07:00,997.2706909179688,10.821347,10821.347 +26922,2025-03-10T09:55:57.855616-07:00,997.2640380859375,10.820393,10820.393 +26923,2025-03-10T09:56:08.687987-07:00,997.2586059570312,10.832371,10832.371 +26924,2025-03-10T09:56:19.502611-07:00,997.2520141601562,10.814624,10814.624 +26925,2025-03-10T09:56:30.338668-07:00,997.2609252929688,10.836057,10836.057 +26926,2025-03-10T09:56:41.158991-07:00,997.2609252929688,10.820323,10820.323 +26927,2025-03-10T09:56:51.981611-07:00,997.2609252929688,10.82262,10822.62 +26928,2025-03-10T09:57:02.800654-07:00,997.2742309570312,10.819043,10819.043 +26929,2025-03-10T09:57:24.451877-07:00,997.2335815429688,21.651223,21651.223 +26930,2025-03-10T09:57:35.272938-07:00,997.234619140625,10.821061,10821.061 +26931,2025-03-10T09:57:46.099609-07:00,997.2279663085938,10.826671,10826.671 +26932,2025-03-10T09:57:56.934052-07:00,997.2137451171875,10.834443,10834.443 +26933,2025-03-10T09:58:07.762616-07:00,997.2123413085938,10.828564,10828.564 +26934,2025-03-10T09:58:18.586953-07:00,997.2203369140625,10.824337,10824.337 +26935,2025-03-10T09:58:29.410829-07:00,997.232177734375,10.823876,10823.876 +26936,2025-03-10T09:58:40.239654-07:00,997.2047119140625,10.828825,10828.825 +26937,2025-03-10T09:58:51.068788-07:00,997.19921875,10.829134,10829.134 +26938,2025-03-10T09:59:01.886588-07:00,997.192626953125,10.8178,10817.8 +26939,2025-03-10T09:59:12.723633-07:00,997.1950073242188,10.837045,10837.045 +26940,2025-03-10T09:59:23.545615-07:00,997.20166015625,10.821982,10821.982 +26941,2025-03-10T09:59:34.373601-07:00,997.1807861328125,10.827986,10827.986 +26942,2025-03-10T09:59:45.198856-07:00,997.1398315429688,10.825255,10825.255 +26943,2025-03-10T09:59:56.033611-07:00,997.1884155273438,10.834755,10834.755 +26944,2025-03-10T10:00:06.851762-07:00,997.1554565429688,10.818151,10818.151 +26945,2025-03-10T10:00:17.678959-07:00,997.1567993164062,10.827197,10827.197 +26946,2025-03-10T10:00:28.507604-07:00,997.1776733398438,10.828645,10828.645 +26947,2025-03-10T10:00:39.340444-07:00,997.1634521484375,10.83284,10832.84 +26948,2025-03-10T10:00:50.158874-07:00,997.1724243164062,10.81843,10818.43 +26949,2025-03-10T10:01:00.982794-07:00,997.1196899414062,10.82392,10823.92 +26950,2025-03-10T10:01:11.805870-07:00,997.1051025390625,10.823076,10823.076 +26951,2025-03-10T10:01:22.630618-07:00,997.1328125,10.824748,10824.748 +26952,2025-03-10T10:01:33.458924-07:00,997.1273193359375,10.828306,10828.306 +26953,2025-03-10T10:01:44.283675-07:00,997.141845703125,10.824751,10824.751 +26954,2025-03-10T10:01:55.115714-07:00,997.115478515625,10.832039,10832.039 +26955,2025-03-10T10:02:05.934618-07:00,997.1244506835938,10.818904,10818.904 +26956,2025-03-10T10:02:16.761096-07:00,997.1099243164062,10.826478,10826.478 +26957,2025-03-10T10:02:27.593735-07:00,997.132080078125,10.832639,10832.639 +26958,2025-03-10T10:02:38.418879-07:00,997.118896484375,10.825144,10825.144 +26959,2025-03-10T10:02:49.240601-07:00,997.1112670898438,10.821722,10821.722 +26960,2025-03-10T10:03:00.070775-07:00,997.118896484375,10.830174,10830.174 +26961,2025-03-10T10:03:10.908671-07:00,997.092529296875,10.837896,10837.896 +26962,2025-03-10T10:03:21.736005-07:00,997.121337890625,10.827334,10827.334 +26963,2025-03-10T10:03:32.557622-07:00,997.1268920898438,10.821617,10821.617 +26964,2025-03-10T10:03:43.388610-07:00,997.1203002929688,10.830988,10830.988 +26965,2025-03-10T10:03:54.224617-07:00,997.1046752929688,10.836007,10836.007 +26966,2025-03-10T10:04:05.051907-07:00,997.1532592773438,10.82729,10827.29 +26967,2025-03-10T10:04:15.875627-07:00,997.1057739257812,10.82372,10823.72 +26968,2025-03-10T10:04:26.702840-07:00,997.15185546875,10.827213,10827.213 +26969,2025-03-10T10:04:37.534623-07:00,997.1057739257812,10.831783,10831.783 +26970,2025-03-10T10:04:48.364618-07:00,997.1543579101562,10.829995,10829.995 +26971,2025-03-10T10:04:59.198622-07:00,997.1136474609375,10.834004,10834.004 +26972,2025-03-10T10:05:10.022764-07:00,997.1136474609375,10.824142,10824.142 +26973,2025-03-10T10:05:20.848991-07:00,997.1268920898438,10.826227,10826.227 +26974,2025-03-10T10:05:31.691593-07:00,997.1279907226562,10.842602,10842.602 +26975,2025-03-10T10:05:42.513617-07:00,997.1136474609375,10.822024,10822.024 +26976,2025-03-10T10:05:53.564014-07:00,997.1229858398438,11.050397,11050.397 +26977,2025-03-10T10:06:04.394713-07:00,997.16259765625,10.830699,10830.699 +26978,2025-03-10T10:06:15.235800-07:00,997.1504516601562,10.841087,10841.087 +26979,2025-03-10T10:06:26.063714-07:00,997.13623046875,10.827914,10827.914 +26980,2025-03-10T10:06:36.886080-07:00,997.147705078125,10.822366,10822.366 +26981,2025-03-10T10:06:47.721739-07:00,997.1570434570312,10.835659,10835.659 +26982,2025-03-10T10:06:58.545073-07:00,997.15283203125,10.823334,10823.334 +26983,2025-03-10T10:07:09.366730-07:00,997.17919921875,10.821657,10821.657 +26984,2025-03-10T10:07:20.191005-07:00,997.1726684570312,10.824275,10824.275 +26985,2025-03-10T10:07:31.016112-07:00,997.1660766601562,10.825107,10825.107 +26986,2025-03-10T10:07:41.847715-07:00,997.184814453125,10.831603,10831.603 +26987,2025-03-10T10:07:52.663069-07:00,997.1935424804688,10.815354,10815.354 +26988,2025-03-10T10:08:03.490049-07:00,997.1858520507812,10.82698,10826.98 +26989,2025-03-10T10:08:14.327082-07:00,997.1737670898438,10.837033,10837.033 +26990,2025-03-10T10:08:25.144728-07:00,997.1726684570312,10.817646,10817.646 +26991,2025-03-10T10:08:35.969767-07:00,997.233154296875,10.825039,10825.039 +26992,2025-03-10T10:08:46.804965-07:00,997.1817016601562,10.835198,10835.198 +26993,2025-03-10T10:08:57.630973-07:00,997.2025146484375,10.826008,10826.008 +26994,2025-03-10T10:09:08.455722-07:00,997.2067260742188,10.824749,10824.749 +26995,2025-03-10T10:09:19.282747-07:00,997.2080688476562,10.827025,10827.025 +26996,2025-03-10T10:09:30.115083-07:00,997.2001342773438,10.832336,10832.336 +26997,2025-03-10T10:09:40.943813-07:00,997.201416015625,10.82873,10828.73 +26998,2025-03-10T10:09:51.775972-07:00,997.2156982421875,10.832159,10832.159 +26999,2025-03-10T10:10:02.600003-07:00,997.2344360351562,10.824031,10824.031 +27000,2025-03-10T10:10:13.422766-07:00,997.2001342773438,10.822763,10822.763 +27001,2025-03-10T10:10:24.261587-07:00,997.2354736328125,10.838821,10838.821 +27002,2025-03-10T10:10:35.080724-07:00,997.2067260742188,10.819137,10819.137 +27003,2025-03-10T10:10:45.914753-07:00,997.2080688476562,10.834029,10834.029 +27004,2025-03-10T10:10:56.747127-07:00,997.2132568359375,10.832374,10832.374 +27005,2025-03-10T10:11:07.575003-07:00,997.1868896484375,10.827876,10827.876 +27006,2025-03-10T10:11:18.397416-07:00,997.201416015625,10.822413,10822.413 +27007,2025-03-10T10:11:29.218893-07:00,997.2212524414062,10.821477,10821.477 +27008,2025-03-10T10:11:40.054746-07:00,997.2344360351562,10.835853,10835.853 +27009,2025-03-10T10:11:50.879725-07:00,997.2067260742188,10.824979,10824.979 +27010,2025-03-10T10:12:01.712085-07:00,997.2132568359375,10.83236,10832.36 +27011,2025-03-10T10:12:12.543769-07:00,997.1935424804688,10.831684,10831.684 +27012,2025-03-10T10:12:23.370338-07:00,997.19482421875,10.826569,10826.569 +27013,2025-03-10T10:12:34.193941-07:00,997.175048828125,10.823603,10823.603 +27014,2025-03-10T10:12:45.028854-07:00,997.2354736328125,10.834913,10834.913 +27015,2025-03-10T10:12:55.849163-07:00,997.1802978515625,10.820309,10820.309 +27016,2025-03-10T10:13:06.680067-07:00,997.1935424804688,10.830904,10830.904 +27017,2025-03-10T10:13:17.507795-07:00,997.175048828125,10.827728,10827.728 +27018,2025-03-10T10:13:28.338731-07:00,997.2156982421875,10.830936,10830.936 +27019,2025-03-10T10:13:39.157792-07:00,997.19482421875,10.819061,10819.061 +27020,2025-03-10T10:13:49.992165-07:00,997.1882934570312,10.834373,10834.373 +27021,2025-03-10T10:14:00.816766-07:00,997.1817016601562,10.824601,10824.601 +27022,2025-03-10T10:14:11.652982-07:00,997.1868896484375,10.836216,10836.216 +27023,2025-03-10T10:14:22.480014-07:00,997.201416015625,10.827032,10827.032 +27024,2025-03-10T10:14:33.306763-07:00,997.201416015625,10.826749,10826.749 +27025,2025-03-10T10:14:44.132732-07:00,997.1726684570312,10.825969,10825.969 +27026,2025-03-10T10:14:54.951878-07:00,997.1539306640625,10.819146,10819.146 +27027,2025-03-10T10:15:05.778067-07:00,997.1473388671875,10.826189,10826.189 +27028,2025-03-10T10:15:16.603722-07:00,997.1553344726562,10.825655,10825.655 +27029,2025-03-10T10:15:27.427026-07:00,997.1473388671875,10.823304,10823.304 +27030,2025-03-10T10:15:38.252886-07:00,997.1671142578125,10.82586,10825.86 +27031,2025-03-10T10:15:49.082516-07:00,997.148681640625,10.82963,10829.63 +27032,2025-03-10T10:15:59.907871-07:00,997.1406860351562,10.825355,10825.355 +27033,2025-03-10T10:16:10.739028-07:00,997.134033203125,10.831157,10831.157 +27034,2025-03-10T10:16:21.554805-07:00,997.1604614257812,10.815777,10815.777 +27035,2025-03-10T10:16:32.381708-07:00,997.134033203125,10.826903,10826.903 +27036,2025-03-10T10:16:43.219342-07:00,997.1275024414062,10.837634,10837.634 +27037,2025-03-10T10:16:54.037990-07:00,997.10107421875,10.818648,10818.648 +27038,2025-03-10T10:17:04.864994-07:00,997.135498046875,10.827004,10827.004 +27039,2025-03-10T10:17:15.686720-07:00,997.119873046875,10.821726,10821.726 +27040,2025-03-10T10:17:26.505903-07:00,997.12890625,10.819183,10819.183 +27041,2025-03-10T10:17:37.337735-07:00,997.11572265625,10.831832,10831.832 +27042,2025-03-10T10:17:48.168870-07:00,997.10107421875,10.831135,10831.135 +27043,2025-03-10T10:17:58.998726-07:00,997.0892944335938,10.829856,10829.856 +27044,2025-03-10T10:18:09.825553-07:00,997.070556640625,10.826827,10826.827 +27045,2025-03-10T10:18:20.653061-07:00,997.11572265625,10.827508,10827.508 +27046,2025-03-10T10:18:31.492047-07:00,997.068115234375,10.838986,10838.986 +27047,2025-03-10T10:18:42.322731-07:00,997.11669921875,10.830684,10830.684 +27048,2025-03-10T10:18:53.155065-07:00,997.11572265625,10.832334,10832.334 +27049,2025-03-10T10:19:03.974779-07:00,997.1275024414062,10.819714,10819.714 +27050,2025-03-10T10:19:14.806505-07:00,997.0761108398438,10.831726,10831.726 +27051,2025-03-10T10:19:25.629720-07:00,997.0879516601562,10.823215,10823.215 +27052,2025-03-10T10:19:36.462042-07:00,997.0615844726562,10.832322,10832.322 +27053,2025-03-10T10:19:47.282728-07:00,997.09033203125,10.820686,10820.686 +27054,2025-03-10T10:19:58.109765-07:00,997.10107421875,10.827037,10827.037 +27055,2025-03-10T10:20:08.936731-07:00,997.0549926757812,10.826966,10826.966 +27056,2025-03-10T10:20:19.775038-07:00,997.07470703125,10.838307,10838.307 +27057,2025-03-10T10:20:30.595965-07:00,997.0695190429688,10.820927,10820.927 +27058,2025-03-10T10:20:41.417897-07:00,997.0879516601562,10.821932,10821.932 +27059,2025-03-10T10:20:52.246724-07:00,997.10107421875,10.828827,10828.827 +27060,2025-03-10T10:21:03.082922-07:00,997.0604858398438,10.836198,10836.198 +27061,2025-03-10T10:21:13.909868-07:00,997.080322265625,10.826946,10826.946 +27062,2025-03-10T10:21:24.730795-07:00,997.0604858398438,10.820927,10820.927 +27063,2025-03-10T10:21:35.566583-07:00,997.068115234375,10.835788,10835.788 +27064,2025-03-10T10:21:46.387716-07:00,997.1143798828125,10.821133,10821.133 +27065,2025-03-10T10:21:57.218339-07:00,997.0736694335938,10.830623,10830.623 +27066,2025-03-10T10:22:08.048720-07:00,997.0462646484375,10.830381,10830.381 +27067,2025-03-10T10:22:18.872018-07:00,997.0330200195312,10.823298,10823.298 +27068,2025-03-10T10:22:29.702779-07:00,997.03173828125,10.830761,10830.761 +27069,2025-03-10T10:22:40.523714-07:00,997.051513671875,10.820935,10820.935 +27070,2025-03-10T10:22:51.349726-07:00,997.067138671875,10.826012,10826.012 +27071,2025-03-10T10:23:02.182278-07:00,997.0661010742188,10.832552,10832.552 +27072,2025-03-10T10:23:12.999091-07:00,997.0527954101562,10.816813,10816.813 +27073,2025-03-10T10:23:23.826722-07:00,997.0594482421875,10.827631,10827.631 +27074,2025-03-10T10:23:34.653776-07:00,997.0594482421875,10.827054,10827.054 +27075,2025-03-10T10:23:45.474725-07:00,997.0462646484375,10.820949,10820.949 +27076,2025-03-10T10:23:56.299482-07:00,997.0330200195312,10.824757,10824.757 +27077,2025-03-10T10:24:07.115371-07:00,997.0462646484375,10.815889,10815.889 +27078,2025-03-10T10:24:17.945719-07:00,997.067138671875,10.830348,10830.348 +27079,2025-03-10T10:24:28.771611-07:00,997.04736328125,10.825892,10825.892 +27080,2025-03-10T10:24:39.604727-07:00,997.067138671875,10.833116,10833.116 +27081,2025-03-10T10:24:50.429875-07:00,997.04736328125,10.825148,10825.148 +27082,2025-03-10T10:25:01.250784-07:00,997.03173828125,10.820909,10820.909 +27083,2025-03-10T10:25:12.083345-07:00,997.0184326171875,10.832561,10832.561 +27084,2025-03-10T10:25:22.911771-07:00,997.0275268554688,10.828426,10828.426 +27085,2025-03-10T10:25:33.743056-07:00,997.0133056640625,10.831285,10831.285 +27086,2025-03-10T10:25:44.566981-07:00,997.051513671875,10.823925,10823.925 +27087,2025-03-10T10:25:55.398495-07:00,997.0184326171875,10.831514,10831.514 +27088,2025-03-10T10:26:06.216730-07:00,997.0173950195312,10.818235,10818.235 +27089,2025-03-10T10:26:17.048932-07:00,997.0604858398438,10.832202,10832.202 +27090,2025-03-10T10:26:27.874840-07:00,997.0264282226562,10.825908,10825.908 +27091,2025-03-10T10:26:38.706899-07:00,997.0010986328125,10.832059,10832.059 +27092,2025-03-10T10:26:49.532921-07:00,997.03515625,10.826022,10826.022 +27093,2025-03-10T10:27:00.366242-07:00,997.041748046875,10.833321,10833.321 +27094,2025-03-10T10:27:11.183880-07:00,997.02197265625,10.817638,10817.638 +27095,2025-03-10T10:27:22.018614-07:00,997.0209350585938,10.834734,10834.734 +27096,2025-03-10T10:27:32.841708-07:00,997.0365600585938,10.823094,10823.094 +27097,2025-03-10T10:27:43.675230-07:00,996.9955444335938,10.833522,10833.522 +27098,2025-03-10T10:27:54.494102-07:00,996.9705200195312,10.818872,10818.872 +27099,2025-03-10T10:28:05.321620-07:00,997.0101318359375,10.827518,10827.518 +27100,2025-03-10T10:28:16.150981-07:00,996.9715576171875,10.829361,10829.361 +27101,2025-03-10T10:28:26.973840-07:00,997.0101318359375,10.822859,10822.859 +27102,2025-03-10T10:28:37.798692-07:00,996.9559326171875,10.824852,10824.852 +27103,2025-03-10T10:28:48.631729-07:00,996.9837646484375,10.833037,10833.037 +27104,2025-03-10T10:28:59.449902-07:00,996.9968872070312,10.818173,10818.173 +27105,2025-03-10T10:29:10.276202-07:00,997.0059204101562,10.8263,10826.3 +27106,2025-03-10T10:29:21.102724-07:00,996.9795532226562,10.826522,10826.522 +27107,2025-03-10T10:29:31.924970-07:00,996.9993896484375,10.822246,10822.246 +27108,2025-03-10T10:29:42.757713-07:00,996.986083984375,10.832743,10832.743 +27109,2025-03-10T10:29:53.586242-07:00,996.9673461914062,10.828529,10828.529 +27110,2025-03-10T10:30:04.400815-07:00,996.9597778320312,10.814573,10814.573 +27111,2025-03-10T10:30:15.235051-07:00,996.9673461914062,10.834236,10834.236 +27112,2025-03-10T10:30:26.059732-07:00,996.962158203125,10.824681,10824.681 +27113,2025-03-10T10:30:36.894036-07:00,996.9410400390625,10.834304,10834.304 +27114,2025-03-10T10:30:47.721364-07:00,996.975341796875,10.827328,10827.328 +27115,2025-03-10T10:30:58.555030-07:00,996.9423217773438,10.833666,10833.666 +27116,2025-03-10T10:31:09.380652-07:00,996.9410400390625,10.825622,10825.622 +27117,2025-03-10T10:31:20.205536-07:00,996.9146118164062,10.824884,10824.884 +27118,2025-03-10T10:31:31.041732-07:00,996.9434204101562,10.836196,10836.196 +27119,2025-03-10T10:31:41.868894-07:00,996.9590454101562,10.827162,10827.162 +27120,2025-03-10T10:31:52.700722-07:00,996.9302368164062,10.831828,10831.828 +27121,2025-03-10T10:32:03.519981-07:00,996.9735717773438,10.819259,10819.259 +27122,2025-03-10T10:32:14.359712-07:00,996.89306640625,10.839731,10839.731 +27123,2025-03-10T10:32:25.197722-07:00,996.8878173828125,10.83801,10838.01 +27124,2025-03-10T10:32:36.016725-07:00,996.9152221679688,10.819003,10819.003 +27125,2025-03-10T10:32:46.845411-07:00,996.9339599609375,10.828686,10828.686 +27126,2025-03-10T10:32:57.680698-07:00,996.9142456054688,10.835287,10835.287 +27127,2025-03-10T10:33:08.502321-07:00,996.8756103515625,10.821623,10821.623 +27128,2025-03-10T10:33:19.332105-07:00,996.9085693359375,10.829784,10829.784 +27129,2025-03-10T10:33:30.159641-07:00,996.8770141601562,10.827536,10827.536 +27130,2025-03-10T10:33:40.992712-07:00,996.9165649414062,10.833071,10833.071 +27131,2025-03-10T10:33:51.824104-07:00,996.9176635742188,10.831392,10831.392 +27132,2025-03-10T10:34:02.653093-07:00,996.89013671875,10.828989,10828.989 +27133,2025-03-10T10:34:13.490957-07:00,996.89013671875,10.837864,10837.864 +27134,2025-03-10T10:34:24.317720-07:00,996.9044799804688,10.826763,10826.763 +27135,2025-03-10T10:34:35.148723-07:00,996.8912353515625,10.831003,10831.003 +27136,2025-03-10T10:34:45.986458-07:00,996.8912353515625,10.837735,10837.735 +27137,2025-03-10T10:34:56.812714-07:00,996.90576171875,10.826256,10826.256 +27138,2025-03-10T10:35:07.650115-07:00,996.8648681640625,10.837401,10837.401 +27139,2025-03-10T10:35:18.478746-07:00,996.8926391601562,10.828631,10828.631 +27140,2025-03-10T10:35:29.301917-07:00,996.9266357421875,10.823171,10823.171 +27141,2025-03-10T10:35:40.133962-07:00,996.9124145507812,10.832045,10832.045 +27142,2025-03-10T10:35:50.965075-07:00,996.9255981445312,10.831113,10831.113 +27143,2025-03-10T10:36:01.797725-07:00,996.9398193359375,10.83265,10832.65 +27144,2025-03-10T10:36:12.619100-07:00,996.938720703125,10.821375,10821.375 +27145,2025-03-10T10:36:23.449720-07:00,996.9321899414062,10.83062,10830.62 +27146,2025-03-10T10:36:34.281081-07:00,996.9134521484375,10.831361,10831.361 +27147,2025-03-10T10:36:45.111720-07:00,996.9199829101562,10.830639,10830.639 +27148,2025-03-10T10:36:55.940731-07:00,996.9026489257812,10.829011,10829.011 +27149,2025-03-10T10:37:06.770733-07:00,996.9422607421875,10.830002,10830.002 +27150,2025-03-10T10:37:17.597198-07:00,996.9290771484375,10.826465,10826.465 +27151,2025-03-10T10:37:28.429729-07:00,996.9290771484375,10.832531,10832.531 +27152,2025-03-10T10:37:39.254977-07:00,996.9489135742188,10.825248,10825.248 +27153,2025-03-10T10:37:50.073227-07:00,996.9489135742188,10.81825,10818.25 +27154,2025-03-10T10:38:00.900197-07:00,996.9158325195312,10.82697,10826.97 +27155,2025-03-10T10:38:11.727357-07:00,996.9502563476562,10.82716,10827.16 +27156,2025-03-10T10:38:22.559958-07:00,996.8961181640625,10.832601,10832.601 +27157,2025-03-10T10:38:33.376081-07:00,996.91064453125,10.816123,10816.123 +27158,2025-03-10T10:38:44.203718-07:00,996.956787109375,10.827637,10827.637 +27159,2025-03-10T10:38:55.035724-07:00,996.9314575195312,10.832006,10832.006 +27160,2025-03-10T10:39:05.863720-07:00,996.9193725585938,10.827996,10827.996 +27161,2025-03-10T10:39:16.685706-07:00,996.9282836914062,10.821986,10821.986 +27162,2025-03-10T10:39:27.510808-07:00,996.907470703125,10.825102,10825.102 +27163,2025-03-10T10:39:38.345778-07:00,996.907470703125,10.83497,10834.97 +27164,2025-03-10T10:39:49.166002-07:00,996.9127197265625,10.820224,10820.224 +27165,2025-03-10T10:40:00.004287-07:00,996.9140625,10.838285,10838.285 +27166,2025-03-10T10:40:10.834710-07:00,996.9296875,10.830423,10830.423 +27167,2025-03-10T10:40:21.660869-07:00,996.8995361328125,10.826159,10826.159 +27168,2025-03-10T10:40:32.491703-07:00,996.923095703125,10.830834,10830.834 +27169,2025-03-10T10:40:43.314973-07:00,996.9085083007812,10.82327,10823.27 +27170,2025-03-10T10:40:54.148724-07:00,996.9151611328125,10.833751,10833.751 +27171,2025-03-10T10:41:04.976268-07:00,996.9098510742188,10.827544,10827.544 +27172,2025-03-10T10:41:15.799935-07:00,996.9188842773438,10.823667,10823.667 +27173,2025-03-10T10:41:26.628605-07:00,996.9199829101562,10.82867,10828.67 +27174,2025-03-10T10:41:37.464710-07:00,996.8859252929688,10.836105,10836.105 +27175,2025-03-10T10:41:48.286993-07:00,996.8529052734375,10.822283,10822.283 +27176,2025-03-10T10:41:59.117824-07:00,996.873779296875,10.830831,10830.831 +27177,2025-03-10T10:42:09.957787-07:00,996.873779296875,10.839963,10839.963 +27178,2025-03-10T10:42:20.781708-07:00,996.8538818359375,10.823921,10823.921 +27179,2025-03-10T10:42:31.608770-07:00,996.8473510742188,10.827062,10827.062 +27180,2025-03-10T10:42:42.444898-07:00,996.8275146484375,10.836128,10836.128 +27181,2025-03-10T10:42:53.278972-07:00,996.8223266601562,10.834074,10834.074 +27182,2025-03-10T10:43:04.099705-07:00,996.831298828125,10.820733,10820.733 +27183,2025-03-10T10:43:14.928773-07:00,996.7993774414062,10.829068,10829.068 +27184,2025-03-10T10:43:25.764152-07:00,996.818115234375,10.835379,10835.379 +27185,2025-03-10T10:43:36.591732-07:00,996.804931640625,10.82758,10827.58 +27186,2025-03-10T10:43:47.420728-07:00,996.807373046875,10.828996,10828.996 +27187,2025-03-10T10:43:58.248990-07:00,996.8468627929688,10.828262,10828.262 +27188,2025-03-10T10:44:09.082104-07:00,996.833740234375,10.833114,10833.114 +27189,2025-03-10T10:44:19.916783-07:00,996.7927856445312,10.834679,10834.679 +27190,2025-03-10T10:44:30.745754-07:00,996.8361206054688,10.828971,10828.971 +27191,2025-03-10T10:44:41.567781-07:00,996.8361206054688,10.822027,10822.027 +27192,2025-03-10T10:44:52.397461-07:00,996.837158203125,10.82968,10829.68 +27193,2025-03-10T10:45:03.216043-07:00,996.8295288085938,10.818582,10818.582 +27194,2025-03-10T10:45:14.054549-07:00,996.822998046875,10.838506,10838.506 +27195,2025-03-10T10:45:24.871934-07:00,996.84375,10.817385,10817.385 +27196,2025-03-10T10:45:35.699867-07:00,996.8253173828125,10.827933,10827.933 +27197,2025-03-10T10:45:46.529316-07:00,996.8451538085938,10.829449,10829.449 +27198,2025-03-10T10:45:57.347717-07:00,996.8253173828125,10.818401,10818.401 +27199,2025-03-10T10:46:08.177355-07:00,996.8187255859375,10.829638,10829.638 +27200,2025-03-10T10:46:19.006716-07:00,996.8318481445312,10.829361,10829.361 +27201,2025-03-10T10:46:29.832674-07:00,996.8395385742188,10.825958,10825.958 +27202,2025-03-10T10:46:40.654733-07:00,996.826416015625,10.822059,10822.059 +27203,2025-03-10T10:46:51.485976-07:00,996.7933349609375,10.831243,10831.243 +27204,2025-03-10T10:47:02.314713-07:00,996.8156127929688,10.828737,10828.737 +27205,2025-03-10T10:47:13.147919-07:00,996.7881469726562,10.833206,10833.206 +27206,2025-03-10T10:47:23.972463-07:00,996.7957763671875,10.824544,10824.544 +27207,2025-03-10T10:47:34.799146-07:00,996.7759399414062,10.826683,10826.683 +27208,2025-03-10T10:47:45.632841-07:00,996.74951171875,10.833695,10833.695 +27209,2025-03-10T10:47:56.451725-07:00,996.7835693359375,10.818884,10818.884 +27210,2025-03-10T10:48:07.287724-07:00,996.7915649414062,10.835999,10835.999 +27211,2025-03-10T10:48:18.112726-07:00,996.7638549804688,10.825002,10825.002 +27212,2025-03-10T10:48:28.953724-07:00,996.7793579101562,10.840998,10840.998 +27213,2025-03-10T10:48:39.776418-07:00,996.7662353515625,10.822694,10822.694 +27214,2025-03-10T10:48:50.605730-07:00,996.7411499023438,10.829312,10829.312 +27215,2025-03-10T10:49:01.439069-07:00,996.7332763671875,10.833339,10833.339 +27216,2025-03-10T10:49:12.261785-07:00,996.7463989257812,10.822716,10822.716 +27217,2025-03-10T10:49:23.095337-07:00,996.7554931640625,10.833552,10833.552 +27218,2025-03-10T10:49:33.925920-07:00,996.7081298828125,10.830583,10830.583 +27219,2025-03-10T10:49:44.764875-07:00,996.722412109375,10.838955,10838.955 +27220,2025-03-10T10:49:55.596174-07:00,996.721435546875,10.831299,10831.299 +27221,2025-03-10T10:50:06.422043-07:00,996.7435913085938,10.825869,10825.869 +27222,2025-03-10T10:50:17.251707-07:00,996.7379760742188,10.829664,10829.664 +27223,2025-03-10T10:50:28.079002-07:00,996.7171630859375,10.827295,10827.295 +27224,2025-03-10T10:50:38.911080-07:00,996.7578125,10.832078,10832.078 +27225,2025-03-10T10:50:49.744081-07:00,996.7206420898438,10.833001,10833.001 +27226,2025-03-10T10:51:00.567710-07:00,996.7206420898438,10.823629,10823.629 +27227,2025-03-10T10:51:11.397880-07:00,996.7064208984375,10.83017,10830.17 +27228,2025-03-10T10:51:22.221726-07:00,996.7073974609375,10.823846,10823.846 +27229,2025-03-10T10:51:33.047258-07:00,996.7296142578125,10.825532,10825.532 +27230,2025-03-10T10:51:43.868392-07:00,996.71533203125,10.821134,10821.134 +27231,2025-03-10T10:51:54.693776-07:00,996.7757568359375,10.825384,10825.384 +27232,2025-03-10T10:52:05.520011-07:00,996.7427978515625,10.826235,10826.235 +27233,2025-03-10T10:52:16.331954-07:00,996.7362670898438,10.811943,10811.943 +27234,2025-03-10T10:52:27.160488-07:00,996.74169921875,10.828534,10828.534 +27235,2025-03-10T10:52:37.985061-07:00,996.71533203125,10.824573,10824.573 +27236,2025-03-10T10:52:48.802725-07:00,996.7164306640625,10.817664,10817.664 +27237,2025-03-10T10:52:59.632720-07:00,996.7296142578125,10.829995,10829.995 +27238,2025-03-10T10:53:10.463712-07:00,996.7271728515625,10.830992,10830.992 +27239,2025-03-10T10:53:21.295292-07:00,996.737548828125,10.83158,10831.58 +27240,2025-03-10T10:53:32.121718-07:00,996.7296142578125,10.826426,10826.426 +27241,2025-03-10T10:53:42.949760-07:00,996.7362670898438,10.828042,10828.042 +27242,2025-03-10T10:53:53.782875-07:00,996.71533203125,10.833115,10833.115 +27243,2025-03-10T10:54:04.603104-07:00,996.7427978515625,10.820229,10820.229 +27244,2025-03-10T10:54:15.434743-07:00,996.7452392578125,10.831639,10831.639 +27245,2025-03-10T10:54:26.252078-07:00,996.7362670898438,10.817335,10817.335 +27246,2025-03-10T10:54:37.077972-07:00,996.7351684570312,10.825894,10825.894 +27247,2025-03-10T10:54:47.909018-07:00,996.739990234375,10.831046,10831.046 +27248,2025-03-10T10:54:58.739731-07:00,996.7385864257812,10.830713,10830.713 +27249,2025-03-10T10:55:09.568079-07:00,996.7385864257812,10.828348,10828.348 +27250,2025-03-10T10:55:20.399930-07:00,996.77294921875,10.831851,10831.851 +27251,2025-03-10T10:55:31.224759-07:00,996.7333374023438,10.824829,10824.829 +27252,2025-03-10T10:55:42.062869-07:00,996.7201538085938,10.83811,10838.11 +27253,2025-03-10T10:55:52.893992-07:00,996.74658203125,10.831123,10831.123 +27254,2025-03-10T10:56:03.715724-07:00,996.74658203125,10.821732,10821.732 +27255,2025-03-10T10:56:14.549380-07:00,996.714599609375,10.833656,10833.656 +27256,2025-03-10T10:56:25.385733-07:00,996.7212524414062,10.836353,10836.353 +27257,2025-03-10T10:56:36.213724-07:00,996.734375,10.827991,10827.991 +27258,2025-03-10T10:56:47.046785-07:00,996.6815795898438,10.833061,10833.061 +27259,2025-03-10T10:56:57.877786-07:00,996.7093505859375,10.831001,10831.001 +27260,2025-03-10T10:57:08.708063-07:00,996.6961669921875,10.830277,10830.277 +27261,2025-03-10T10:57:19.529109-07:00,996.7037353515625,10.821046,10821.046 +27262,2025-03-10T10:57:30.362285-07:00,996.6849975585938,10.833176,10833.176 +27263,2025-03-10T10:57:41.192732-07:00,996.68408203125,10.830447,10830.447 +27264,2025-03-10T10:57:52.014719-07:00,996.6849975585938,10.821987,10821.987 +27265,2025-03-10T10:58:02.844759-07:00,996.704833984375,10.83004,10830.04 +27266,2025-03-10T10:58:13.672014-07:00,996.6665649414062,10.827255,10827.255 +27267,2025-03-10T10:58:24.499303-07:00,996.607177734375,10.827289,10827.289 +27268,2025-03-10T10:58:35.325721-07:00,996.61376953125,10.826418,10826.418 +27269,2025-03-10T10:58:46.154998-07:00,996.6213989257812,10.829277,10829.277 +27270,2025-03-10T10:58:56.991928-07:00,996.6213989257812,10.83693,10836.93 +27271,2025-03-10T10:59:07.819729-07:00,996.6359252929688,10.827801,10827.801 +27272,2025-03-10T10:59:18.655511-07:00,996.6161499023438,10.835782,10835.782 +27273,2025-03-10T10:59:29.474729-07:00,996.568603515625,10.819218,10819.218 +27274,2025-03-10T10:59:40.308773-07:00,996.6040649414062,10.834044,10834.044 +27275,2025-03-10T10:59:51.135805-07:00,996.568603515625,10.827032,10827.032 +27276,2025-03-10T11:00:01.973319-07:00,996.6095581054688,10.837514,10837.514 +27277,2025-03-10T11:00:12.791978-07:00,996.5907592773438,10.818659,10818.659 +27278,2025-03-10T11:00:23.624185-07:00,996.57763671875,10.832207,10832.207 +27279,2025-03-10T11:00:34.460798-07:00,996.597412109375,10.836613,10836.613 +27280,2025-03-10T11:00:45.294071-07:00,996.5856323242188,10.833273,10833.273 +27281,2025-03-10T11:00:56.107981-07:00,996.5592041015625,10.81391,10813.91 +27282,2025-03-10T11:01:06.935893-07:00,996.5723266601562,10.827912,10827.912 +27283,2025-03-10T11:01:17.764873-07:00,996.5814208984375,10.82898,10828.98 +27284,2025-03-10T11:01:28.603131-07:00,996.5879516601562,10.838258,10838.258 +27285,2025-03-10T11:01:39.428952-07:00,996.6011962890625,10.825821,10825.821 +27286,2025-03-10T11:01:50.255768-07:00,996.5921630859375,10.826816,10826.816 +27287,2025-03-10T11:02:01.091090-07:00,996.5758056640625,10.835322,10835.322 +27288,2025-03-10T11:02:11.912872-07:00,996.5615844726562,10.821782,10821.782 +27289,2025-03-10T11:02:22.746049-07:00,996.5814208984375,10.833177,10833.177 +27290,2025-03-10T11:02:33.584051-07:00,996.6220092773438,10.838002,10838.002 +27291,2025-03-10T11:02:44.407932-07:00,996.5932006835938,10.823881,10823.881 +27292,2025-03-10T11:02:55.227928-07:00,996.61669921875,10.819996,10819.996 +27293,2025-03-10T11:03:06.059732-07:00,996.5879516601562,10.831804,10831.804 +27294,2025-03-10T11:03:16.886569-07:00,996.6035766601562,10.826837,10826.837 +27295,2025-03-10T11:03:27.707067-07:00,996.5626831054688,10.820498,10820.498 +27296,2025-03-10T11:03:38.537920-07:00,996.6101684570312,10.830853,10830.853 +27297,2025-03-10T11:03:49.365709-07:00,996.6088256835938,10.827789,10827.789 +27298,2025-03-10T11:04:00.200856-07:00,996.6484375,10.835147,10835.147 +27299,2025-03-10T11:04:11.022065-07:00,996.6021728515625,10.821209,10821.209 +27300,2025-03-10T11:04:21.849715-07:00,996.6720581054688,10.82765,10827.65 +27301,2025-03-10T11:04:32.671978-07:00,996.6507568359375,10.822263,10822.263 +27302,2025-03-10T11:04:43.494725-07:00,996.5956420898438,10.822747,10822.747 +27303,2025-03-10T11:04:54.325347-07:00,996.6243896484375,10.830622,10830.622 +27304,2025-03-10T11:05:05.144212-07:00,996.6257934570312,10.818865,10818.865 +27305,2025-03-10T11:05:15.978032-07:00,996.63232421875,10.83382,10833.82 +27306,2025-03-10T11:05:26.794211-07:00,996.6456298828125,10.816179,10816.179 +27307,2025-03-10T11:05:37.623959-07:00,996.6334228515625,10.829748,10829.748 +27308,2025-03-10T11:05:48.448275-07:00,996.6192016601562,10.824316,10824.316 +27309,2025-03-10T11:05:59.271720-07:00,996.6192016601562,10.823445,10823.445 +27310,2025-03-10T11:06:10.087800-07:00,996.6267700195312,10.81608,10816.08 +27311,2025-03-10T11:06:20.914886-07:00,996.6389770507812,10.827086,10827.086 +27312,2025-03-10T11:06:31.732744-07:00,996.6389770507812,10.817858,10817.858 +27313,2025-03-10T11:06:42.555720-07:00,996.6531982421875,10.822976,10822.976 +27314,2025-03-10T11:06:53.377735-07:00,996.6267700195312,10.822015,10822.015 +27315,2025-03-10T11:07:04.190766-07:00,996.6267700195312,10.813031,10813.031 +27316,2025-03-10T11:07:15.012729-07:00,996.614990234375,10.821963,10821.963 +27317,2025-03-10T11:07:25.835077-07:00,996.602783203125,10.822348,10822.348 +27318,2025-03-10T11:07:36.653016-07:00,996.602783203125,10.817939,10817.939 +27319,2025-03-10T11:07:47.487268-07:00,996.602783203125,10.834252,10834.252 +27320,2025-03-10T11:07:58.306991-07:00,996.5819702148438,10.819723,10819.723 +27321,2025-03-10T11:08:09.142585-07:00,996.5909423828125,10.835594,10835.594 +27322,2025-03-10T11:08:19.966939-07:00,996.5909423828125,10.824354,10824.354 +27323,2025-03-10T11:08:30.775730-07:00,996.576416015625,10.808791,10808.791 +27324,2025-03-10T11:08:41.596774-07:00,996.5974731445312,10.821044,10821.044 +27325,2025-03-10T11:08:52.429970-07:00,996.5499877929688,10.833196,10833.196 +27326,2025-03-10T11:09:03.243854-07:00,996.5777587890625,10.813884,10813.884 +27327,2025-03-10T11:09:14.072954-07:00,996.5513305664062,10.8291,10829.1 +27328,2025-03-10T11:09:24.888950-07:00,996.5457763671875,10.815996,10815.996 +27329,2025-03-10T11:09:35.720471-07:00,996.5537719726562,10.831521,10831.521 +27330,2025-03-10T11:09:46.540878-07:00,996.5457763671875,10.820407,10820.407 +27331,2025-03-10T11:09:57.375774-07:00,996.5128173828125,10.834896,10834.896 +27332,2025-03-10T11:10:08.200723-07:00,996.5206909179688,10.824949,10824.949 +27333,2025-03-10T11:10:19.021797-07:00,996.521728515625,10.821074,10821.074 +27334,2025-03-10T11:10:29.845050-07:00,996.5086059570312,10.823253,10823.253 +27335,2025-03-10T11:10:40.671957-07:00,996.5228271484375,10.826907,10826.907 +27336,2025-03-10T11:10:51.490988-07:00,996.5095825195312,10.819031,10819.031 +27337,2025-03-10T11:11:02.317708-07:00,996.4953002929688,10.82672,10826.72 +27338,2025-03-10T11:11:13.143724-07:00,996.5029907226562,10.826016,10826.016 +27339,2025-03-10T11:11:23.970034-07:00,996.4977416992188,10.82631,10826.31 +27340,2025-03-10T11:11:34.787712-07:00,996.5186157226562,10.817678,10817.678 +27341,2025-03-10T11:11:45.609836-07:00,996.4713134765625,10.822124,10822.124 +27342,2025-03-10T11:11:56.426661-07:00,996.4921875,10.816825,10816.825 +27343,2025-03-10T11:12:07.248721-07:00,996.498779296875,10.82206,10822.06 +27344,2025-03-10T11:12:18.067287-07:00,996.5001831054688,10.818566,10818.566 +27345,2025-03-10T11:12:28.893308-07:00,996.4935302734375,10.826021,10826.021 +27346,2025-03-10T11:12:39.718991-07:00,996.4921875,10.825683,10825.683 +27347,2025-03-10T11:12:50.540040-07:00,996.4879760742188,10.821049,10821.049 +27348,2025-03-10T11:13:01.360011-07:00,996.4935302734375,10.819971,10819.971 +27349,2025-03-10T11:13:12.179718-07:00,996.4935302734375,10.819707,10819.707 +27350,2025-03-10T11:13:23.005036-07:00,996.4959106445312,10.825318,10825.318 +27351,2025-03-10T11:13:33.826936-07:00,996.5223388671875,10.8219,10821.9 +27352,2025-03-10T11:13:44.663020-07:00,996.514404296875,10.836084,10836.084 +27353,2025-03-10T11:13:55.486154-07:00,996.462890625,10.823134,10823.134 +27354,2025-03-10T11:14:06.315667-07:00,996.5101318359375,10.829513,10829.513 +27355,2025-03-10T11:14:17.144721-07:00,996.530029296875,10.829054,10829.054 +27356,2025-03-10T11:14:27.973032-07:00,996.5025024414062,10.828311,10828.311 +27357,2025-03-10T11:14:38.792728-07:00,996.4837646484375,10.819696,10819.696 +27358,2025-03-10T11:14:49.620067-07:00,996.5204467773438,10.827339,10827.339 +27359,2025-03-10T11:15:00.456733-07:00,996.4851684570312,10.836666,10836.666 +27360,2025-03-10T11:15:11.281724-07:00,996.486083984375,10.824991,10824.991 +27361,2025-03-10T11:15:22.114966-07:00,996.4508056640625,10.833242,10833.242 +27362,2025-03-10T11:15:32.933711-07:00,996.4611206054688,10.818745,10818.745 +27363,2025-03-10T11:15:43.772614-07:00,996.486083984375,10.838903,10838.903 +27364,2025-03-10T11:15:54.603222-07:00,996.4851684570312,10.830608,10830.608 +27365,2025-03-10T11:16:05.432734-07:00,996.49169921875,10.829512,10829.512 +27366,2025-03-10T11:16:16.257773-07:00,996.4795532226562,10.825039,10825.039 +27367,2025-03-10T11:16:27.086739-07:00,996.46630859375,10.828966,10828.966 +27368,2025-03-10T11:16:37.922330-07:00,996.459716796875,10.835591,10835.591 +27369,2025-03-10T11:16:48.747719-07:00,996.4545288085938,10.825389,10825.389 +27370,2025-03-10T11:16:59.577065-07:00,996.4554443359375,10.829346,10829.346 +27371,2025-03-10T11:17:10.402986-07:00,996.46875,10.825921,10825.921 +27372,2025-03-10T11:17:21.234210-07:00,996.4898681640625,10.831224,10831.224 +27373,2025-03-10T11:17:32.049743-07:00,996.4503173828125,10.815533,10815.533 +27374,2025-03-10T11:17:42.882844-07:00,996.4238891601562,10.833101,10833.101 +27375,2025-03-10T11:17:53.701817-07:00,996.485595703125,10.818973,10818.973 +27376,2025-03-10T11:18:04.533814-07:00,996.417236328125,10.831997,10831.997 +27377,2025-03-10T11:18:15.364776-07:00,996.4404907226562,10.830962,10830.962 +27378,2025-03-10T11:18:26.190966-07:00,996.4381103515625,10.82619,10826.19 +27379,2025-03-10T11:18:37.017308-07:00,996.439453125,10.826342,10826.342 +27380,2025-03-10T11:18:47.843718-07:00,996.42626953125,10.82641,10826.41 +27381,2025-03-10T11:18:58.674022-07:00,996.4578857421875,10.830304,10830.304 +27382,2025-03-10T11:19:09.505799-07:00,996.4461059570312,10.831777,10831.777 +27383,2025-03-10T11:19:20.338087-07:00,996.4117431640625,10.832288,10832.288 +27384,2025-03-10T11:19:31.170287-07:00,996.4724731445312,10.8322,10832.2 +27385,2025-03-10T11:19:41.991117-07:00,996.3853149414062,10.82083,10820.83 +27386,2025-03-10T11:19:52.822731-07:00,996.381103515625,10.831614,10831.614 +27387,2025-03-10T11:20:03.652724-07:00,996.3734130859375,10.829993,10829.993 +27388,2025-03-10T11:20:14.477802-07:00,996.381103515625,10.825078,10825.078 +27389,2025-03-10T11:20:25.313785-07:00,996.3734130859375,10.835983,10835.983 +27390,2025-03-10T11:20:36.137977-07:00,996.349365234375,10.824192,10824.192 +27391,2025-03-10T11:20:46.974729-07:00,996.3535766601562,10.836752,10836.752 +27392,2025-03-10T11:20:57.799859-07:00,996.3876342773438,10.82513,10825.13 +27393,2025-03-10T11:21:08.632734-07:00,996.3834228515625,10.832875,10832.875 +27394,2025-03-10T11:21:19.465099-07:00,996.3757934570312,10.832365,10832.365 +27395,2025-03-10T11:21:30.291736-07:00,996.3757934570312,10.826637,10826.637 +27396,2025-03-10T11:21:41.122894-07:00,996.3757934570312,10.831158,10831.158 +27397,2025-03-10T11:21:51.949970-07:00,996.3900146484375,10.827076,10827.076 +27398,2025-03-10T11:22:02.774711-07:00,996.3428344726562,10.824741,10824.741 +27399,2025-03-10T11:22:13.612040-07:00,996.3206176757812,10.837329,10837.329 +27400,2025-03-10T11:22:24.439730-07:00,996.338623046875,10.82769,10827.69 +27401,2025-03-10T11:22:35.269855-07:00,996.3504638671875,10.830125,10830.125 +27402,2025-03-10T11:22:46.094853-07:00,996.337158203125,10.824998,10824.998 +27403,2025-03-10T11:22:56.921883-07:00,996.3240356445312,10.82703,10827.03 +27404,2025-03-10T11:23:07.751733-07:00,996.33203125,10.82985,10829.85 +27405,2025-03-10T11:23:18.584988-07:00,996.3174438476562,10.833255,10833.255 +27406,2025-03-10T11:23:29.417121-07:00,996.313232421875,10.832133,10832.133 +27407,2025-03-10T11:23:40.242966-07:00,996.3121948242188,10.825845,10825.845 +27408,2025-03-10T11:23:51.067728-07:00,996.2503051757812,10.824762,10824.762 +27409,2025-03-10T11:24:01.899710-07:00,996.2514038085938,10.831982,10831.982 +27410,2025-03-10T11:24:12.725318-07:00,996.2645874023438,10.825608,10825.608 +27411,2025-03-10T11:24:23.558734-07:00,996.2857666015625,10.833416,10833.416 +27412,2025-03-10T11:24:34.388581-07:00,996.2645874023438,10.829847,10829.847 +27413,2025-03-10T11:24:45.216733-07:00,996.27783203125,10.828152,10828.152 +27414,2025-03-10T11:24:56.048804-07:00,996.30419921875,10.832071,10832.071 +27415,2025-03-10T11:25:06.873970-07:00,996.291015625,10.825166,10825.166 +27416,2025-03-10T11:25:17.693976-07:00,996.2701416015625,10.820006,10820.006 +27417,2025-03-10T11:25:28.531878-07:00,996.2701416015625,10.837902,10837.902 +27418,2025-03-10T11:25:39.352718-07:00,996.2490844726562,10.82084,10820.84 +27419,2025-03-10T11:25:50.183059-07:00,996.242431640625,10.830341,10830.341 +27420,2025-03-10T11:26:01.008735-07:00,996.2490844726562,10.825676,10825.676 +27421,2025-03-10T11:26:11.840915-07:00,996.2490844726562,10.83218,10832.18 +27422,2025-03-10T11:26:22.668669-07:00,996.27783203125,10.827754,10827.754 +27423,2025-03-10T11:26:33.500020-07:00,996.26220703125,10.831351,10831.351 +27424,2025-03-10T11:26:44.329900-07:00,996.268798828125,10.82988,10829.88 +27425,2025-03-10T11:26:55.150746-07:00,996.239990234375,10.820846,10820.846 +27426,2025-03-10T11:27:05.981727-07:00,996.267822265625,10.830981,10830.981 +27427,2025-03-10T11:27:16.810071-07:00,996.2611694335938,10.828344,10828.344 +27428,2025-03-10T11:27:27.639953-07:00,996.2743530273438,10.829882,10829.882 +27429,2025-03-10T11:27:38.472789-07:00,996.2508544921875,10.832836,10832.836 +27430,2025-03-10T11:27:49.303930-07:00,996.2862548828125,10.831141,10831.141 +27431,2025-03-10T11:28:00.135737-07:00,996.2418823242188,10.831807,10831.807 +27432,2025-03-10T11:28:10.959944-07:00,996.2508544921875,10.824207,10824.207 +27433,2025-03-10T11:28:21.789038-07:00,996.26171875,10.829094,10829.094 +27434,2025-03-10T11:28:32.619773-07:00,996.22998046875,10.830735,10830.735 +27435,2025-03-10T11:28:43.450945-07:00,996.2234497070312,10.831172,10831.172 +27436,2025-03-10T11:28:54.287956-07:00,996.2498168945312,10.837011,10837.011 +27437,2025-03-10T11:29:05.120975-07:00,996.2720336914062,10.833019,10833.019 +27438,2025-03-10T11:29:15.942045-07:00,996.2352905273438,10.82107,10821.07 +27439,2025-03-10T11:29:26.777724-07:00,996.22998046875,10.835679,10835.679 +27440,2025-03-10T11:29:37.615067-07:00,996.2432250976562,10.837343,10837.343 +27441,2025-03-10T11:29:48.440730-07:00,996.2310791015625,10.825663,10825.663 +27442,2025-03-10T11:29:59.267040-07:00,996.2376708984375,10.82631,10826.31 +27443,2025-03-10T11:30:10.099061-07:00,996.2432250976562,10.832021,10832.021 +27444,2025-03-10T11:30:20.936739-07:00,996.22998046875,10.837678,10837.678 +27445,2025-03-10T11:30:31.763728-07:00,996.2244262695312,10.826989,10826.989 +27446,2025-03-10T11:30:42.589709-07:00,996.20361328125,10.825981,10825.981 +27447,2025-03-10T11:30:53.413970-07:00,996.2310791015625,10.824261,10824.261 +27448,2025-03-10T11:31:04.245767-07:00,996.19140625,10.831797,10831.797 +27449,2025-03-10T11:31:15.070723-07:00,996.2101440429688,10.824956,10824.956 +27450,2025-03-10T11:31:25.902734-07:00,996.2047119140625,10.832011,10832.011 +27451,2025-03-10T11:31:36.735769-07:00,996.197021484375,10.833035,10833.035 +27452,2025-03-10T11:31:47.567735-07:00,996.2022705078125,10.831966,10831.966 +27453,2025-03-10T11:31:58.391922-07:00,996.19140625,10.824187,10824.187 +27454,2025-03-10T11:32:09.217792-07:00,996.2220458984375,10.82587,10825.87 +27455,2025-03-10T11:32:20.049769-07:00,996.1748657226562,10.831977,10831.977 +27456,2025-03-10T11:32:30.871912-07:00,996.1956176757812,10.822143,10822.143 +27457,2025-03-10T11:32:41.700117-07:00,996.21435546875,10.828205,10828.205 +27458,2025-03-10T11:32:52.533953-07:00,996.194580078125,10.833836,10833.836 +27459,2025-03-10T11:33:03.372662-07:00,996.1734619140625,10.838709,10838.709 +27460,2025-03-10T11:33:14.197021-07:00,996.2276611328125,10.824359,10824.359 +27461,2025-03-10T11:33:25.037461-07:00,996.18798828125,10.84044,10840.44 +27462,2025-03-10T11:33:35.864867-07:00,996.2154541015625,10.827406,10827.406 +27463,2025-03-10T11:33:46.694071-07:00,996.1956176757812,10.829204,10829.204 +27464,2025-03-10T11:33:57.519734-07:00,996.1758422851562,10.825663,10825.663 +27465,2025-03-10T11:34:08.351006-07:00,996.1837768554688,10.831272,10831.272 +27466,2025-03-10T11:34:19.182928-07:00,996.13623046875,10.831922,10831.922 +27467,2025-03-10T11:34:30.014826-07:00,996.1715698242188,10.831898,10831.898 +27468,2025-03-10T11:34:40.844729-07:00,996.1626586914062,10.829903,10829.903 +27469,2025-03-10T11:34:51.671125-07:00,996.142822265625,10.826396,10826.396 +27470,2025-03-10T11:35:02.503034-07:00,996.1386108398438,10.831909,10831.909 +27471,2025-03-10T11:35:13.333732-07:00,996.1163940429688,10.830698,10830.698 +27472,2025-03-10T11:35:24.160729-07:00,996.1640014648438,10.826997,10826.997 +27473,2025-03-10T11:35:34.992951-07:00,996.142822265625,10.832222,10832.222 +27474,2025-03-10T11:35:45.817861-07:00,996.1493530273438,10.82491,10824.91 +27475,2025-03-10T11:35:56.650250-07:00,996.1375732421875,10.832389,10832.389 +27476,2025-03-10T11:36:07.481774-07:00,996.1309204101562,10.831524,10831.524 +27477,2025-03-10T11:36:18.314727-07:00,996.1400146484375,10.832953,10832.953 +27478,2025-03-10T11:36:29.157092-07:00,996.1177978515625,10.842365,10842.365 +27479,2025-03-10T11:36:39.987785-07:00,996.1386108398438,10.830693,10830.693 +27480,2025-03-10T11:36:50.826730-07:00,996.1386108398438,10.838945,10838.945 +27481,2025-03-10T11:37:01.652762-07:00,996.10986328125,10.826032,10826.032 +27482,2025-03-10T11:37:12.496004-07:00,996.1386108398438,10.843242,10843.242 +27483,2025-03-10T11:37:23.327102-07:00,996.1253662109375,10.831098,10831.098 +27484,2025-03-10T11:37:34.154833-07:00,996.1309204101562,10.827731,10827.731 +27485,2025-03-10T11:37:44.994830-07:00,996.1278076171875,10.839997,10839.997 +27486,2025-03-10T11:37:55.822853-07:00,996.1187744140625,10.828023,10828.023 +27487,2025-03-10T11:38:06.654971-07:00,996.1517944335938,10.832118,10832.118 +27488,2025-03-10T11:38:17.486766-07:00,996.1135864257812,10.831795,10831.795 +27489,2025-03-10T11:38:28.316726-07:00,996.1409301757812,10.82996,10829.96 +27490,2025-03-10T11:38:39.149065-07:00,996.1358032226562,10.832339,10832.339 +27491,2025-03-10T11:38:49.973776-07:00,996.1542358398438,10.824711,10824.711 +27492,2025-03-10T11:39:00.808189-07:00,996.1201782226562,10.834413,10834.413 +27493,2025-03-10T11:39:11.637060-07:00,996.1135864257812,10.828871,10828.871 +27494,2025-03-10T11:39:22.477413-07:00,996.129150390625,10.840353,10840.353 +27495,2025-03-10T11:39:33.301266-07:00,996.1079711914062,10.823853,10823.853 +27496,2025-03-10T11:39:44.129050-07:00,996.1249389648438,10.827784,10827.784 +27497,2025-03-10T11:39:54.964722-07:00,996.1513061523438,10.835672,10835.672 +27498,2025-03-10T11:40:05.792728-07:00,996.116943359375,10.828006,10828.006 +27499,2025-03-10T11:40:16.622079-07:00,996.08154296875,10.829351,10829.351 +27500,2025-03-10T11:40:27.448042-07:00,996.100341796875,10.825963,10825.963 +27501,2025-03-10T11:40:38.286881-07:00,996.114501953125,10.838839,10838.839 +27502,2025-03-10T11:40:49.116709-07:00,996.1013793945312,10.829828,10829.828 +27503,2025-03-10T11:40:59.944521-07:00,996.08056640625,10.827812,10827.812 +27504,2025-03-10T11:41:10.772706-07:00,996.1027221679688,10.828185,10828.185 +27505,2025-03-10T11:41:21.614077-07:00,996.0923461914062,10.841371,10841.371 +27506,2025-03-10T11:41:32.444965-07:00,996.1013793945312,10.830888,10830.888 +27507,2025-03-10T11:41:43.281773-07:00,996.0593872070312,10.836808,10836.808 +27508,2025-03-10T11:41:54.106774-07:00,996.0527954101562,10.825001,10825.001 +27509,2025-03-10T11:42:04.944815-07:00,996.068359375,10.838041,10838.041 +27510,2025-03-10T11:42:15.777918-07:00,996.03955078125,10.833103,10833.103 +27511,2025-03-10T11:42:26.605959-07:00,996.0540771484375,10.828041,10828.041 +27512,2025-03-10T11:42:37.435036-07:00,996.006591796875,10.829077,10829.077 +27513,2025-03-10T11:42:48.261724-07:00,996.0264282226562,10.826688,10826.688 +27514,2025-03-10T11:42:59.094556-07:00,995.9989013671875,10.832832,10832.832 +27515,2025-03-10T11:43:09.926732-07:00,995.9989013671875,10.832176,10832.176 +27516,2025-03-10T11:43:20.757956-07:00,996.017333984375,10.831224,10831.224 +27517,2025-03-10T11:43:31.594194-07:00,996.0042114257812,10.836238,10836.238 +27518,2025-03-10T11:43:42.428134-07:00,996.0239868164062,10.83394,10833.94 +27519,2025-03-10T11:43:53.256915-07:00,995.9820556640625,10.828781,10828.781 +27520,2025-03-10T11:44:04.083709-07:00,996.0017700195312,10.826794,10826.794 +27521,2025-03-10T11:44:14.922016-07:00,996.0164184570312,10.838307,10838.307 +27522,2025-03-10T11:44:25.742741-07:00,995.977783203125,10.820725,10820.725 +27523,2025-03-10T11:44:36.585330-07:00,995.99755859375,10.842589,10842.589 +27524,2025-03-10T11:44:47.403217-07:00,995.9874877929688,10.817887,10817.887 +27525,2025-03-10T11:44:58.231136-07:00,995.98095703125,10.827919,10827.919 +27526,2025-03-10T11:45:09.063724-07:00,995.9885864257812,10.832588,10832.588 +27527,2025-03-10T11:45:19.894532-07:00,995.9951782226562,10.830808,10830.808 +27528,2025-03-10T11:45:30.714730-07:00,995.9951782226562,10.820198,10820.198 +27529,2025-03-10T11:45:41.539874-07:00,995.9611206054688,10.825144,10825.144 +27530,2025-03-10T11:45:52.372791-07:00,995.9678344726562,10.832917,10832.917 +27531,2025-03-10T11:46:03.209259-07:00,995.9413452148438,10.836468,10836.468 +27532,2025-03-10T11:46:14.039970-07:00,995.9720458984375,10.830711,10830.711 +27533,2025-03-10T11:46:24.867132-07:00,995.9729614257812,10.827162,10827.162 +27534,2025-03-10T11:46:35.687956-07:00,995.9664306640625,10.820824,10820.824 +27535,2025-03-10T11:46:46.518372-07:00,995.9389038085938,10.830416,10830.416 +27536,2025-03-10T11:46:57.345723-07:00,995.9268188476562,10.827351,10827.351 +27537,2025-03-10T11:47:08.170984-07:00,995.9456176757812,10.825261,10825.261 +27538,2025-03-10T11:47:18.993059-07:00,995.9573974609375,10.822075,10822.075 +27539,2025-03-10T11:47:29.829945-07:00,995.9191284179688,10.836886,10836.886 +27540,2025-03-10T11:47:40.650986-07:00,995.9456176757812,10.821041,10821.041 +27541,2025-03-10T11:47:51.481933-07:00,995.9456176757812,10.830947,10830.947 +27542,2025-03-10T11:48:02.313307-07:00,995.9191284179688,10.831374,10831.374 +27543,2025-03-10T11:48:13.133724-07:00,995.9191284179688,10.820417,10820.417 +27544,2025-03-10T11:48:23.971021-07:00,995.9268188476562,10.837297,10837.297 +27545,2025-03-10T11:48:34.800712-07:00,995.91015625,10.829691,10829.691 +27546,2025-03-10T11:48:45.632739-07:00,995.9522094726562,10.832027,10832.027 +27547,2025-03-10T11:48:56.459944-07:00,995.9124755859375,10.827205,10827.205 +27548,2025-03-10T11:49:07.287734-07:00,995.9177856445312,10.82779,10827.79 +27549,2025-03-10T11:49:18.119086-07:00,995.92578125,10.831352,10831.352 +27550,2025-03-10T11:49:28.950739-07:00,995.89794921875,10.831653,10831.653 +27551,2025-03-10T11:49:39.781487-07:00,995.9112548828125,10.830748,10830.748 +27552,2025-03-10T11:49:50.602732-07:00,995.9046020507812,10.821245,10821.245 +27553,2025-03-10T11:50:01.436745-07:00,995.9046020507812,10.834013,10834.013 +27554,2025-03-10T11:50:12.266032-07:00,995.92578125,10.829287,10829.287 +27555,2025-03-10T11:50:23.085660-07:00,995.9112548828125,10.819628,10819.628 +27556,2025-03-10T11:50:33.905287-07:00,995.9177856445312,10.819627,10819.627 +27557,2025-03-10T11:50:44.738794-07:00,995.9059448242188,10.833507,10833.507 +27558,2025-03-10T11:50:55.558064-07:00,995.9112548828125,10.81927,10819.27 +27559,2025-03-10T11:51:06.390730-07:00,995.8903198242188,10.832666,10832.666 +27560,2025-03-10T11:51:17.210769-07:00,995.864990234375,10.820039,10820.039 +27561,2025-03-10T11:51:28.035720-07:00,995.8848266601562,10.824951,10824.951 +27562,2025-03-10T11:51:38.874187-07:00,995.8848266601562,10.838467,10838.467 +27563,2025-03-10T11:51:49.693296-07:00,995.8692016601562,10.819109,10819.109 +27564,2025-03-10T11:52:00.527021-07:00,995.8626708984375,10.833725,10833.725 +27565,2025-03-10T11:52:11.357753-07:00,995.8705444335938,10.830732,10830.732 +27566,2025-03-10T11:52:22.183720-07:00,995.8848266601562,10.825967,10825.967 +27567,2025-03-10T11:52:33.004777-07:00,995.89697265625,10.821057,10821.057 +27568,2025-03-10T11:52:43.833817-07:00,995.878173828125,10.82904,10829.04 +27569,2025-03-10T11:52:54.667788-07:00,995.849365234375,10.833971,10833.971 +27570,2025-03-10T11:53:05.495780-07:00,995.82958984375,10.827992,10827.992 +27571,2025-03-10T11:53:16.325857-07:00,995.89697265625,10.830077,10830.077 +27572,2025-03-10T11:53:27.159281-07:00,995.8692016601562,10.833424,10833.424 +27573,2025-03-10T11:53:37.984988-07:00,995.8903198242188,10.825707,10825.707 +27574,2025-03-10T11:53:48.808726-07:00,995.8824462890625,10.823738,10823.738 +27575,2025-03-10T11:53:59.629956-07:00,995.878173828125,10.82123,10821.23 +27576,2025-03-10T11:54:10.459987-07:00,995.8573608398438,10.830031,10830.031 +27577,2025-03-10T11:54:21.281552-07:00,995.8692016601562,10.821565,10821.565 +27578,2025-03-10T11:54:32.108734-07:00,995.8837280273438,10.827182,10827.182 +27579,2025-03-10T11:54:42.931724-07:00,995.8428344726562,10.82299,10822.99 +27580,2025-03-10T11:54:53.762887-07:00,995.8626708984375,10.831163,10831.163 +27581,2025-03-10T11:55:04.579711-07:00,995.8428344726562,10.816824,10816.824 +27582,2025-03-10T11:55:15.409021-07:00,995.8681030273438,10.82931,10829.31 +27583,2025-03-10T11:55:26.233722-07:00,995.85498046875,10.824701,10824.701 +27584,2025-03-10T11:55:37.071124-07:00,995.8362426757812,10.837402,10837.402 +27585,2025-03-10T11:55:47.903724-07:00,995.8262329101562,10.8326,10832.6 +27586,2025-03-10T11:55:58.731881-07:00,995.8473510742188,10.828157,10828.157 +27587,2025-03-10T11:56:09.559779-07:00,995.848388671875,10.827898,10827.898 +27588,2025-03-10T11:56:20.389242-07:00,995.8724365234375,10.829463,10829.463 +27589,2025-03-10T11:56:31.210734-07:00,995.8538818359375,10.821492,10821.492 +27590,2025-03-10T11:56:42.040102-07:00,995.8262329101562,10.829368,10829.368 +27591,2025-03-10T11:56:52.875722-07:00,995.8473510742188,10.83562,10835.62 +27592,2025-03-10T11:57:03.696671-07:00,995.83837890625,10.820949,10820.949 +27593,2025-03-10T11:57:14.531731-07:00,995.8077392578125,10.83506,10835.06 +27594,2025-03-10T11:57:25.358075-07:00,995.8052978515625,10.826344,10826.344 +27595,2025-03-10T11:57:36.190730-07:00,995.83935546875,10.832655,10832.655 +27596,2025-03-10T11:57:47.029971-07:00,995.8328247070312,10.839241,10839.241 +27597,2025-03-10T11:57:57.860108-07:00,995.8526611328125,10.830137,10830.137 +27598,2025-03-10T11:58:08.689977-07:00,995.83935546875,10.829869,10829.869 +27599,2025-03-10T11:58:19.507784-07:00,995.8515625,10.817807,10817.807 +27600,2025-03-10T11:58:30.344069-07:00,995.8460083007812,10.836285,10836.285 +27601,2025-03-10T11:58:41.164898-07:00,995.819580078125,10.820829,10820.829 +27602,2025-03-10T11:58:51.996785-07:00,995.8473510742188,10.831887,10831.887 +27603,2025-03-10T11:59:02.827083-07:00,995.8351440429688,10.830298,10830.298 +27604,2025-03-10T11:59:13.653852-07:00,995.8407592773438,10.826769,10826.769 +27605,2025-03-10T11:59:24.476722-07:00,995.8328247070312,10.82287,10822.87 +27606,2025-03-10T11:59:35.299055-07:00,995.8351440429688,10.822333,10822.333 +27607,2025-03-10T11:59:46.125813-07:00,995.8275146484375,10.826758,10826.758 +27608,2025-03-10T11:59:56.953532-07:00,995.8341674804688,10.827719,10827.719 +27609,2025-03-10T12:00:07.783421-07:00,995.8275146484375,10.829889,10829.889 +27610,2025-03-10T12:00:18.603926-07:00,995.82861328125,10.820505,10820.505 +27611,2025-03-10T12:00:29.436148-07:00,995.8275146484375,10.832222,10832.222 +27612,2025-03-10T12:00:40.265715-07:00,995.7945556640625,10.829567,10829.567 +27613,2025-03-10T12:00:51.086077-07:00,995.7998657226562,10.820362,10820.362 +27614,2025-03-10T12:01:01.915728-07:00,995.8341674804688,10.829651,10829.651 +27615,2025-03-10T12:01:12.750919-07:00,995.8351440429688,10.835191,10835.191 +27616,2025-03-10T12:01:23.568854-07:00,995.8021850585938,10.817935,10817.935 +27617,2025-03-10T12:01:34.404711-07:00,995.8021850585938,10.835857,10835.857 +27618,2025-03-10T12:01:45.235065-07:00,995.8219604492188,10.830354,10830.354 +27619,2025-03-10T12:01:56.056142-07:00,995.82958984375,10.821077,10821.077 +27620,2025-03-10T12:02:06.887734-07:00,995.82958984375,10.831592,10831.592 +27621,2025-03-10T12:02:17.719228-07:00,995.7965698242188,10.831494,10831.494 +27622,2025-03-10T12:02:28.547013-07:00,995.80322265625,10.827785,10827.785 +27623,2025-03-10T12:02:39.382450-07:00,995.7965698242188,10.835437,10835.437 +27624,2025-03-10T12:02:50.200729-07:00,995.809814453125,10.818279,10818.279 +27625,2025-03-10T12:03:01.034728-07:00,995.7913208007812,10.833999,10833.999 +27626,2025-03-10T12:03:11.854798-07:00,995.7913208007812,10.82007,10820.07 +27627,2025-03-10T12:03:22.686263-07:00,995.8056030273438,10.831465,10831.465 +27628,2025-03-10T12:03:33.513707-07:00,995.7979736328125,10.827444,10827.444 +27629,2025-03-10T12:03:44.343927-07:00,995.8110961914062,10.83022,10830.22 +27630,2025-03-10T12:03:55.165872-07:00,995.7990112304688,10.821945,10821.945 +27631,2025-03-10T12:04:05.989583-07:00,995.7937622070312,10.823711,10823.711 +27632,2025-03-10T12:04:16.823113-07:00,995.8045043945312,10.83353,10833.53 +27633,2025-03-10T12:04:27.643110-07:00,995.7923583984375,10.819997,10819.997 +27634,2025-03-10T12:04:38.475732-07:00,995.764892578125,10.832622,10832.622 +27635,2025-03-10T12:04:49.306361-07:00,995.783447265625,10.830629,10830.629 +27636,2025-03-10T12:05:00.131734-07:00,995.7857666015625,10.825373,10825.373 +27637,2025-03-10T12:05:10.958775-07:00,995.7979736328125,10.827041,10827.041 +27638,2025-03-10T12:05:21.781573-07:00,995.7913208007812,10.822798,10822.798 +27639,2025-03-10T12:05:32.609733-07:00,995.7913208007812,10.82816,10828.16 +27640,2025-03-10T12:05:43.432046-07:00,995.8045043945312,10.822313,10822.313 +27641,2025-03-10T12:05:54.294184-07:00,995.78466796875,10.862138,10862.138 +27642,2025-03-10T12:06:05.125247-07:00,995.78466796875,10.831063,10831.063 +27643,2025-03-10T12:06:15.949048-07:00,995.7913208007812,10.823801,10823.801 +27644,2025-03-10T12:06:26.777732-07:00,995.8177490234375,10.828684,10828.684 +27645,2025-03-10T12:06:37.602560-07:00,995.7899780273438,10.824828,10824.828 +27646,2025-03-10T12:06:48.439191-07:00,995.7691650390625,10.836631,10836.631 +27647,2025-03-10T12:06:59.261241-07:00,995.75830078125,10.82205,10822.05 +27648,2025-03-10T12:07:10.091851-07:00,995.764892578125,10.83061,10830.61 +27649,2025-03-10T12:07:20.919176-07:00,995.7636108398438,10.827325,10827.325 +27650,2025-03-10T12:07:31.738050-07:00,995.7913208007812,10.818874,10818.874 +27651,2025-03-10T12:07:42.569317-07:00,995.751708984375,10.831267,10831.267 +27652,2025-03-10T12:07:53.396030-07:00,995.7306518554688,10.826713,10826.713 +27653,2025-03-10T12:08:04.217521-07:00,995.751708984375,10.821491,10821.491 +27654,2025-03-10T12:08:15.054044-07:00,995.7329711914062,10.836523,10836.523 +27655,2025-03-10T12:08:25.875387-07:00,995.7276611328125,10.821343,10821.343 +27656,2025-03-10T12:08:36.705043-07:00,995.740966796875,10.829656,10829.656 +27657,2025-03-10T12:08:47.542914-07:00,995.7145385742188,10.837871,10837.871 +27658,2025-03-10T12:08:58.369173-07:00,995.7276611328125,10.826259,10826.259 +27659,2025-03-10T12:09:09.194288-07:00,995.6867065429688,10.825115,10825.115 +27660,2025-03-10T12:09:20.026025-07:00,995.7276611328125,10.831737,10831.737 +27661,2025-03-10T12:09:30.853152-07:00,995.741943359375,10.827127,10827.127 +27662,2025-03-10T12:09:41.679477-07:00,995.6891479492188,10.826325,10826.325 +27663,2025-03-10T12:09:52.499881-07:00,995.7234497070312,10.820404,10820.404 +27664,2025-03-10T12:10:03.338037-07:00,995.7023315429688,10.838156,10838.156 +27665,2025-03-10T12:10:14.162234-07:00,995.7432861328125,10.824197,10824.197 +27666,2025-03-10T12:10:24.995944-07:00,995.7310791015625,10.83371,10833.71 +27667,2025-03-10T12:10:35.826180-07:00,995.7352905273438,10.830236,10830.236 +27668,2025-03-10T12:10:46.660037-07:00,995.7113037109375,10.833857,10833.857 +27669,2025-03-10T12:10:57.488431-07:00,995.72216796875,10.828394,10828.394 +27670,2025-03-10T12:11:08.311048-07:00,995.6904907226562,10.822617,10822.617 +27671,2025-03-10T12:11:19.135203-07:00,995.7078857421875,10.824155,10824.155 +27672,2025-03-10T12:11:29.956348-07:00,995.7145385742188,10.821145,10821.145 +27673,2025-03-10T12:11:40.794234-07:00,995.7103271484375,10.837886,10837.886 +27674,2025-03-10T12:11:51.609042-07:00,995.7103271484375,10.814808,10814.808 +27675,2025-03-10T12:12:02.434047-07:00,995.6981201171875,10.825005,10825.005 +27676,2025-03-10T12:12:13.266535-07:00,995.6904907226562,10.832488,10832.488 +27677,2025-03-10T12:12:24.092284-07:00,995.7245483398438,10.825749,10825.749 +27678,2025-03-10T12:12:34.918045-07:00,995.7047119140625,10.825761,10825.761 +27679,2025-03-10T12:12:45.749281-07:00,995.6796875,10.831236,10831.236 +27680,2025-03-10T12:12:56.575373-07:00,995.6885986328125,10.826092,10826.092 +27681,2025-03-10T12:13:07.407177-07:00,995.716064453125,10.831804,10831.804 +27682,2025-03-10T12:13:18.239459-07:00,995.6556396484375,10.832282,10832.282 +27683,2025-03-10T12:13:29.066507-07:00,995.7263793945312,10.827048,10827.048 +27684,2025-03-10T12:13:39.902251-07:00,995.7274169921875,10.835744,10835.744 +27685,2025-03-10T12:13:50.730220-07:00,995.7023315429688,10.827969,10827.969 +27686,2025-03-10T12:14:01.553241-07:00,995.7429809570312,10.823021,10823.021 +27687,2025-03-10T12:14:12.386098-07:00,995.7352905273438,10.832857,10832.857 +27688,2025-03-10T12:14:23.218282-07:00,995.7232055664062,10.832184,10832.184 +27689,2025-03-10T12:14:34.045448-07:00,995.7179565429688,10.827166,10827.166 +27690,2025-03-10T12:14:44.871050-07:00,995.7245483398438,10.825602,10825.602 +27691,2025-03-10T12:14:55.699043-07:00,995.7113037109375,10.827993,10827.993 +27692,2025-03-10T12:15:06.535049-07:00,995.7113037109375,10.836006,10836.006 +27693,2025-03-10T12:15:17.365322-07:00,995.6849365234375,10.830273,10830.273 +27694,2025-03-10T12:15:28.198292-07:00,995.68359375,10.83297,10832.97 +27695,2025-03-10T12:15:39.024235-07:00,995.7001342773438,10.825943,10825.943 +27696,2025-03-10T12:15:49.861490-07:00,995.6769409179688,10.837255,10837.255 +27697,2025-03-10T12:16:00.688521-07:00,995.6727294921875,10.827031,10827.031 +27698,2025-03-10T12:16:11.523048-07:00,995.6553344726562,10.834527,10834.527 +27699,2025-03-10T12:16:22.356261-07:00,995.6209106445312,10.833213,10833.213 +27700,2025-03-10T12:16:33.184040-07:00,995.66064453125,10.827779,10827.779 +27701,2025-03-10T12:16:44.020044-07:00,995.6685180664062,10.836004,10836.004 +27702,2025-03-10T12:16:54.841419-07:00,995.6397094726562,10.821375,10821.375 +27703,2025-03-10T12:17:05.683286-07:00,995.62890625,10.841867,10841.867 +27704,2025-03-10T12:17:16.512354-07:00,995.632080078125,10.829068,10829.068 +27705,2025-03-10T12:17:27.336043-07:00,995.66064453125,10.823689,10823.689 +27706,2025-03-10T12:17:38.168666-07:00,995.6408081054688,10.832623,10832.623 +27707,2025-03-10T12:17:48.999043-07:00,995.66064453125,10.830377,10830.377 +27708,2025-03-10T12:17:59.819150-07:00,995.6341552734375,10.820107,10820.107 +27709,2025-03-10T12:18:10.652388-07:00,995.6408081054688,10.833238,10833.238 +27710,2025-03-10T12:18:21.472273-07:00,995.6341552734375,10.819885,10819.885 +27711,2025-03-10T12:18:32.308043-07:00,995.6341552734375,10.83577,10835.77 +27712,2025-03-10T12:18:43.128039-07:00,995.6275024414062,10.819996,10819.996 +27713,2025-03-10T12:18:53.955438-07:00,995.6576538085938,10.827399,10827.399 +27714,2025-03-10T12:19:04.777026-07:00,995.671875,10.821588,10821.588 +27715,2025-03-10T12:19:15.600137-07:00,995.651123046875,10.823111,10823.111 +27716,2025-03-10T12:19:26.428053-07:00,995.6402587890625,10.827916,10827.916 +27717,2025-03-10T12:19:37.254457-07:00,995.638916015625,10.826404,10826.404 +27718,2025-03-10T12:19:48.068617-07:00,995.6180419921875,10.81416,10814.16 +27719,2025-03-10T12:19:58.900034-07:00,995.6534423828125,10.831417,10831.417 +27720,2025-03-10T12:20:09.732345-07:00,995.6281127929688,10.832311,10832.311 +27721,2025-03-10T12:20:20.559097-07:00,995.6281127929688,10.826752,10826.752 +27722,2025-03-10T12:20:31.389162-07:00,995.609619140625,10.830065,10830.065 +27723,2025-03-10T12:20:42.216044-07:00,995.6082763671875,10.826882,10826.882 +27724,2025-03-10T12:20:53.046817-07:00,995.6412353515625,10.830773,10830.773 +27725,2025-03-10T12:21:03.872023-07:00,995.62939453125,10.825206,10825.206 +27726,2025-03-10T12:21:14.702310-07:00,995.6436157226562,10.830287,10830.287 +27727,2025-03-10T12:21:25.530104-07:00,995.6029663085938,10.827794,10827.794 +27728,2025-03-10T12:21:36.364393-07:00,995.6040649414062,10.834289,10834.289 +27729,2025-03-10T12:21:47.192274-07:00,995.6171875,10.827881,10827.881 +27730,2025-03-10T12:21:58.025299-07:00,995.6370239257812,10.833025,10833.025 +27731,2025-03-10T12:22:08.852097-07:00,995.6304931640625,10.826798,10826.798 +27732,2025-03-10T12:22:19.689023-07:00,995.638427734375,10.836926,10836.926 +27733,2025-03-10T12:22:30.518043-07:00,995.6171875,10.82902,10829.02 +27734,2025-03-10T12:22:41.352087-07:00,995.610595703125,10.834044,10834.044 +27735,2025-03-10T12:22:52.185348-07:00,995.5987548828125,10.833261,10833.261 +27736,2025-03-10T12:23:03.010377-07:00,995.5932006835938,10.825029,10825.029 +27737,2025-03-10T12:23:13.832283-07:00,995.5643920898438,10.821906,10821.906 +27738,2025-03-10T12:23:24.665040-07:00,995.5855712890625,10.832757,10832.757 +27739,2025-03-10T12:23:35.490558-07:00,995.584228515625,10.825518,10825.518 +27740,2025-03-10T12:23:46.325572-07:00,995.6040649414062,10.835014,10835.014 +27741,2025-03-10T12:23:57.146366-07:00,995.5865478515625,10.820794,10820.794 +27742,2025-03-10T12:24:07.981048-07:00,995.599853515625,10.834682,10834.682 +27743,2025-03-10T12:24:18.810404-07:00,995.5921630859375,10.829356,10829.356 +27744,2025-03-10T12:24:29.642259-07:00,995.5865478515625,10.831855,10831.855 +27745,2025-03-10T12:24:40.473335-07:00,995.599853515625,10.831076,10831.076 +27746,2025-03-10T12:24:51.299325-07:00,995.5800170898438,10.82599,10825.99 +27747,2025-03-10T12:25:02.127563-07:00,995.5601806640625,10.828238,10828.238 +27748,2025-03-10T12:25:12.951238-07:00,995.5723266601562,10.823675,10823.675 +27749,2025-03-10T12:25:23.783717-07:00,995.5393676757812,10.832479,10832.479 +27750,2025-03-10T12:25:34.611027-07:00,995.5734252929688,10.82731,10827.31 +27751,2025-03-10T12:25:45.441658-07:00,995.53271484375,10.830631,10830.631 +27752,2025-03-10T12:25:56.268513-07:00,995.5469360351562,10.826855,10826.855 +27753,2025-03-10T12:26:07.098509-07:00,995.554931640625,10.829996,10829.996 +27754,2025-03-10T12:26:17.924197-07:00,995.5469360351562,10.825688,10825.688 +27755,2025-03-10T12:26:28.758142-07:00,995.5205688476562,10.833945,10833.945 +27756,2025-03-10T12:26:39.588036-07:00,995.5337524414062,10.829894,10829.894 +27757,2025-03-10T12:26:50.403038-07:00,995.5218505859375,10.815002,10815.002 +27758,2025-03-10T12:27:01.234181-07:00,995.5086669921875,10.831143,10831.143 +27759,2025-03-10T12:27:12.051283-07:00,995.529541015625,10.817102,10817.102 +27760,2025-03-10T12:27:22.875551-07:00,995.4874877929688,10.824268,10824.268 +27761,2025-03-10T12:27:33.711490-07:00,995.494140625,10.835939,10835.939 +27762,2025-03-10T12:27:44.528240-07:00,995.4732666015625,10.81675,10816.75 +27763,2025-03-10T12:27:55.359531-07:00,995.541748046875,10.831291,10831.291 +27764,2025-03-10T12:28:06.179046-07:00,995.4874877929688,10.819515,10819.515 +27765,2025-03-10T12:28:17.011367-07:00,995.4732666015625,10.832321,10832.321 +27766,2025-03-10T12:28:27.832408-07:00,995.4732666015625,10.821041,10821.041 +27767,2025-03-10T12:28:38.660528-07:00,995.494140625,10.82812,10828.12 +27768,2025-03-10T12:28:49.491103-07:00,995.4931030273438,10.830575,10830.575 +27769,2025-03-10T12:29:00.316383-07:00,995.4545288085938,10.82528,10825.28 +27770,2025-03-10T12:29:11.148053-07:00,995.4785766601562,10.83167,10831.67 +27771,2025-03-10T12:29:21.973872-07:00,995.4732666015625,10.825819,10825.819 +27772,2025-03-10T12:29:32.807648-07:00,995.447998046875,10.833776,10833.776 +27773,2025-03-10T12:29:43.639311-07:00,995.48095703125,10.831663,10831.663 +27774,2025-03-10T12:29:54.462365-07:00,995.447998046875,10.823054,10823.054 +27775,2025-03-10T12:30:05.296513-07:00,995.4545288085938,10.834148,10834.148 +27776,2025-03-10T12:30:16.121268-07:00,995.4403076171875,10.824755,10824.755 +27777,2025-03-10T12:30:26.958303-07:00,995.4534301757812,10.837035,10837.035 +27778,2025-03-10T12:30:37.789088-07:00,995.442626953125,10.830785,10830.785 +27779,2025-03-10T12:30:48.610400-07:00,995.4634399414062,10.821312,10821.312 +27780,2025-03-10T12:30:59.442091-07:00,995.4360961914062,10.831691,10831.691 +27781,2025-03-10T12:31:10.270290-07:00,995.4634399414062,10.828199,10828.199 +27782,2025-03-10T12:31:21.101190-07:00,995.4227905273438,10.8309,10830.9 +27783,2025-03-10T12:31:31.933470-07:00,995.4634399414062,10.83228,10832.28 +27784,2025-03-10T12:31:42.763499-07:00,995.44921875,10.830029,10830.029 +27785,2025-03-10T12:31:53.587185-07:00,995.4227905273438,10.823686,10823.686 +27786,2025-03-10T12:32:04.411022-07:00,995.40966796875,10.823837,10823.837 +27787,2025-03-10T12:32:15.242713-07:00,995.43701171875,10.831691,10831.691 +27788,2025-03-10T12:32:26.074265-07:00,995.4227905273438,10.831552,10831.552 +27789,2025-03-10T12:32:36.891639-07:00,995.3964233398438,10.817374,10817.374 +27790,2025-03-10T12:32:47.715048-07:00,995.416259765625,10.823409,10823.409 +27791,2025-03-10T12:32:58.545746-07:00,995.44921875,10.830698,10830.698 +27792,2025-03-10T12:33:09.371044-07:00,995.427001953125,10.825298,10825.298 +27793,2025-03-10T12:33:20.193200-07:00,995.4148559570312,10.822156,10822.156 +27794,2025-03-10T12:33:31.020302-07:00,995.4215698242188,10.827102,10827.102 +27795,2025-03-10T12:33:41.845193-07:00,995.442626953125,10.824891,10824.891 +27796,2025-03-10T12:33:52.671606-07:00,995.416259765625,10.826413,10826.413 +27797,2025-03-10T12:34:03.492288-07:00,995.3898315429688,10.820682,10820.682 +27798,2025-03-10T12:34:14.323000-07:00,995.4360961914062,10.830712,10830.712 +27799,2025-03-10T12:34:25.151045-07:00,995.4017333984375,10.828045,10828.045 +27800,2025-03-10T12:34:35.983364-07:00,995.40966796875,10.832319,10832.319 +27801,2025-03-10T12:34:46.805110-07:00,995.41064453125,10.821746,10821.746 +27802,2025-03-10T12:34:57.637593-07:00,995.3987426757812,10.832483,10832.483 +27803,2025-03-10T12:35:08.464294-07:00,995.4053955078125,10.826701,10826.701 +27804,2025-03-10T12:35:19.300293-07:00,995.4053955078125,10.835999,10835.999 +27805,2025-03-10T12:35:30.126263-07:00,995.4143676757812,10.82597,10825.97 +27806,2025-03-10T12:35:40.954356-07:00,995.362548828125,10.828093,10828.093 +27807,2025-03-10T12:35:51.786050-07:00,995.3692016601562,10.831694,10831.694 +27808,2025-03-10T12:36:02.612704-07:00,995.3692016601562,10.826654,10826.654 +27809,2025-03-10T12:36:13.443690-07:00,995.3916625976562,10.830986,10830.986 +27810,2025-03-10T12:36:24.268298-07:00,995.3834228515625,10.824608,10824.608 +27811,2025-03-10T12:36:35.101048-07:00,995.3662719726562,10.83275,10832.75 +27812,2025-03-10T12:36:45.928436-07:00,995.3096923828125,10.827388,10827.388 +27813,2025-03-10T12:36:56.749045-07:00,995.35205078125,10.820609,10820.609 +27814,2025-03-10T12:37:07.579375-07:00,995.333251953125,10.83033,10830.33 +27815,2025-03-10T12:37:18.405290-07:00,995.3256225585938,10.825915,10825.915 +27816,2025-03-10T12:37:29.227799-07:00,995.3412475585938,10.822509,10822.509 +27817,2025-03-10T12:37:40.056631-07:00,995.35546875,10.828832,10828.832 +27818,2025-03-10T12:37:50.878038-07:00,995.3290405273438,10.821407,10821.407 +27819,2025-03-10T12:38:01.710431-07:00,995.32373046875,10.832393,10832.393 +27820,2025-03-10T12:38:12.530097-07:00,995.330322265625,10.819666,10819.666 +27821,2025-03-10T12:38:23.356049-07:00,995.3049926757812,10.825952,10825.952 +27822,2025-03-10T12:38:34.181262-07:00,995.3247680664062,10.825213,10825.213 +27823,2025-03-10T12:38:45.005742-07:00,995.3115844726562,10.82448,10824.48 +27824,2025-03-10T12:38:55.833643-07:00,995.2841186523438,10.827901,10827.901 +27825,2025-03-10T12:39:06.653254-07:00,995.3128662109375,10.819611,10819.611 +27826,2025-03-10T12:39:17.484387-07:00,995.3128662109375,10.831133,10831.133 +27827,2025-03-10T12:39:28.310094-07:00,995.3261108398438,10.825707,10825.707 +27828,2025-03-10T12:39:39.138067-07:00,995.29736328125,10.827973,10827.973 +27829,2025-03-10T12:39:49.960207-07:00,995.3115844726562,10.82214,10822.14 +27830,2025-03-10T12:40:00.789089-07:00,995.2864990234375,10.828882,10828.882 +27831,2025-03-10T12:40:11.621222-07:00,995.3139038085938,10.832133,10832.133 +27832,2025-03-10T12:40:22.453611-07:00,995.3115844726562,10.832389,10832.389 +27833,2025-03-10T12:40:33.274040-07:00,995.2931518554688,10.820429,10820.429 +27834,2025-03-10T12:40:44.112365-07:00,995.2874755859375,10.838325,10838.325 +27835,2025-03-10T12:40:54.936081-07:00,995.2667236328125,10.823716,10823.716 +27836,2025-03-10T12:41:05.762043-07:00,995.262451171875,10.825962,10825.962 +27837,2025-03-10T12:41:16.589040-07:00,995.288818359375,10.826997,10826.997 +27838,2025-03-10T12:41:27.420226-07:00,995.2832641601562,10.831186,10831.186 +27839,2025-03-10T12:41:38.257294-07:00,995.2832641601562,10.837068,10837.068 +27840,2025-03-10T12:41:49.078025-07:00,995.237060546875,10.820731,10820.731 +27841,2025-03-10T12:41:59.900034-07:00,995.2767333984375,10.822009,10822.009 +27842,2025-03-10T12:42:10.725695-07:00,995.2460327148438,10.825661,10825.661 +27843,2025-03-10T12:42:21.551130-07:00,995.252685546875,10.825435,10825.435 +27844,2025-03-10T12:42:32.386037-07:00,995.25390625,10.834907,10834.907 +27845,2025-03-10T12:42:43.208367-07:00,995.24169921875,10.82233,10822.33 +27846,2025-03-10T12:42:54.029050-07:00,995.2550048828125,10.820683,10820.683 +27847,2025-03-10T12:43:04.855025-07:00,995.2681274414062,10.825975,10825.975 +27848,2025-03-10T12:43:15.692032-07:00,995.2483520507812,10.837007,10837.007 +27849,2025-03-10T12:43:26.512223-07:00,995.24169921875,10.820191,10820.191 +27850,2025-03-10T12:43:37.347043-07:00,995.263916015625,10.83482,10834.82 +27851,2025-03-10T12:43:48.165038-07:00,995.244140625,10.817995,10817.995 +27852,2025-03-10T12:43:58.992298-07:00,995.2374877929688,10.82726,10827.26 +27853,2025-03-10T12:44:09.814375-07:00,995.25634765625,10.822077,10822.077 +27854,2025-03-10T12:44:20.644624-07:00,995.25732421875,10.830249,10830.249 +27855,2025-03-10T12:44:31.467298-07:00,995.263916015625,10.822674,10822.674 +27856,2025-03-10T12:44:42.279289-07:00,995.2365112304688,10.811991,10811.991 +27857,2025-03-10T12:44:53.105533-07:00,995.2176513671875,10.826244,10826.244 +27858,2025-03-10T12:45:03.925306-07:00,995.23095703125,10.819773,10819.773 +27859,2025-03-10T12:45:14.757784-07:00,995.244140625,10.832478,10832.478 +27860,2025-03-10T12:45:25.577052-07:00,995.2100830078125,10.819268,10819.268 +27861,2025-03-10T12:45:36.408094-07:00,995.2243041992188,10.831042,10831.042 +27862,2025-03-10T12:45:47.221402-07:00,995.2507934570312,10.813308,10813.308 +27863,2025-03-10T12:45:58.049464-07:00,995.2431030273438,10.828062,10828.062 +27864,2025-03-10T12:46:08.874493-07:00,995.221923828125,10.825029,10825.029 +27865,2025-03-10T12:46:19.702025-07:00,995.2496948242188,10.827532,10827.532 +27866,2025-03-10T12:46:30.526213-07:00,995.208740234375,10.824188,10824.188 +27867,2025-03-10T12:46:41.353191-07:00,995.2431030273438,10.826978,10826.978 +27868,2025-03-10T12:46:52.186040-07:00,995.24169921875,10.832849,10832.849 +27869,2025-03-10T12:47:03.011091-07:00,995.1997680664062,10.825051,10825.051 +27870,2025-03-10T12:47:13.837043-07:00,995.2076416015625,10.825952,10825.952 +27871,2025-03-10T12:47:24.663521-07:00,995.21533203125,10.826478,10826.478 +27872,2025-03-10T12:47:35.483046-07:00,995.2129516601562,10.819525,10819.525 +27873,2025-03-10T12:47:46.303095-07:00,995.193115234375,10.820049,10820.049 +27874,2025-03-10T12:47:57.130484-07:00,995.19873046875,10.827389,10827.389 +27875,2025-03-10T12:48:07.949272-07:00,995.23046875,10.818788,10818.788 +27876,2025-03-10T12:48:18.776348-07:00,995.2460327148438,10.827076,10827.076 +27877,2025-03-10T12:48:29.597043-07:00,995.205322265625,10.820695,10820.695 +27878,2025-03-10T12:48:40.414104-07:00,995.1974487304688,10.817061,10817.061 +27879,2025-03-10T12:48:51.235374-07:00,995.1788940429688,10.82127,10821.27 +27880,2025-03-10T12:49:02.068098-07:00,995.1788940429688,10.832724,10832.724 +27881,2025-03-10T12:49:12.900670-07:00,995.2238159179688,10.832572,10832.572 +27882,2025-03-10T12:49:23.721044-07:00,995.19873046875,10.820374,10820.374 +27883,2025-03-10T12:49:34.543158-07:00,995.1997680664062,10.822114,10822.114 +27884,2025-03-10T12:49:45.362363-07:00,995.15673828125,10.819205,10819.205 +27885,2025-03-10T12:49:56.195173-07:00,995.1788940429688,10.83281,10832.81 +27886,2025-03-10T12:50:07.020060-07:00,995.2393798828125,10.824887,10824.887 +27887,2025-03-10T12:50:17.842124-07:00,995.1907958984375,10.822064,10822.064 +27888,2025-03-10T12:50:28.665300-07:00,995.1907958984375,10.823176,10823.176 +27889,2025-03-10T12:50:39.492038-07:00,995.1699829101562,10.826738,10826.738 +27890,2025-03-10T12:50:50.313095-07:00,995.181884765625,10.821057,10821.057 +27891,2025-03-10T12:51:01.138427-07:00,995.1950073242188,10.825332,10825.332 +27892,2025-03-10T12:51:11.971293-07:00,995.1884155273438,10.832866,10832.866 +27893,2025-03-10T12:51:22.796095-07:00,995.1884155273438,10.824802,10824.802 +27894,2025-03-10T12:51:33.623381-07:00,995.163330078125,10.827286,10827.286 +27895,2025-03-10T12:51:44.453428-07:00,995.1620483398438,10.830047,10830.047 +27896,2025-03-10T12:51:55.280049-07:00,995.1422119140625,10.826621,10826.621 +27897,2025-03-10T12:52:06.106667-07:00,995.1554565429688,10.826618,10826.618 +27898,2025-03-10T12:52:16.939032-07:00,995.1478271484375,10.832365,10832.365 +27899,2025-03-10T12:52:27.774871-07:00,995.1290893554688,10.835839,10835.839 +27900,2025-03-10T12:52:38.596045-07:00,995.1412353515625,10.821174,10821.174 +27901,2025-03-10T12:52:49.430267-07:00,995.1213989257812,10.834222,10834.222 +27902,2025-03-10T12:53:00.260040-07:00,995.1134643554688,10.829773,10829.773 +27903,2025-03-10T12:53:11.085398-07:00,995.108154296875,10.825358,10825.358 +27904,2025-03-10T12:53:21.909107-07:00,995.1026000976562,10.823709,10823.709 +27905,2025-03-10T12:53:32.743093-07:00,995.1224365234375,10.833986,10833.986 +27906,2025-03-10T12:53:43.571090-07:00,995.1015625,10.827997,10827.997 +27907,2025-03-10T12:53:54.401411-07:00,995.1171875,10.830321,10830.321 +27908,2025-03-10T12:54:05.226667-07:00,995.095947265625,10.825256,10825.256 +27909,2025-03-10T12:54:16.051346-07:00,995.094970703125,10.824679,10824.679 +27910,2025-03-10T12:54:26.884047-07:00,995.098388671875,10.832701,10832.701 +27911,2025-03-10T12:54:37.708564-07:00,995.1129150390625,10.824517,10824.517 +27912,2025-03-10T12:54:48.533045-07:00,995.0719604492188,10.824481,10824.481 +27913,2025-03-10T12:54:59.367367-07:00,995.0719604492188,10.834322,10834.322 +27914,2025-03-10T12:55:10.189044-07:00,995.07861328125,10.821677,10821.677 +27915,2025-03-10T12:55:21.019630-07:00,995.067626953125,10.830586,10830.586 +27916,2025-03-10T12:55:31.842048-07:00,995.0454711914062,10.822418,10822.418 +27917,2025-03-10T12:55:42.669319-07:00,995.053466796875,10.827271,10827.271 +27918,2025-03-10T12:55:53.491417-07:00,995.0214233398438,10.822098,10822.098 +27919,2025-03-10T12:56:04.314311-07:00,995.0479125976562,10.822894,10822.894 +27920,2025-03-10T12:56:15.140496-07:00,995.0148315429688,10.826185,10826.185 +27921,2025-03-10T12:56:25.971041-07:00,995.0172119140625,10.830545,10830.545 +27922,2025-03-10T12:56:36.790048-07:00,994.9884643554688,10.819007,10819.007 +27923,2025-03-10T12:56:47.627027-07:00,995.0304565429688,10.836979,10836.979 +27924,2025-03-10T12:56:58.450093-07:00,994.9974365234375,10.823066,10823.066 +27925,2025-03-10T12:57:09.287047-07:00,995.0304565429688,10.836954,10836.954 +27926,2025-03-10T12:57:20.118346-07:00,995.011962890625,10.831299,10831.299 +27927,2025-03-10T12:57:30.942286-07:00,995.0186157226562,10.82394,10823.94 +27928,2025-03-10T12:57:41.765406-07:00,994.999755859375,10.82312,10823.12 +27929,2025-03-10T12:57:52.597102-07:00,994.999755859375,10.831696,10831.696 +27930,2025-03-10T12:58:03.418272-07:00,995.0064086914062,10.82117,10821.17 +27931,2025-03-10T12:58:14.243298-07:00,995.0021362304688,10.825026,10825.026 +27932,2025-03-10T12:58:25.069408-07:00,995.0076293945312,10.82611,10826.11 +27933,2025-03-10T12:58:35.908184-07:00,995.0087280273438,10.838776,10838.776 +27934,2025-03-10T12:58:46.737047-07:00,994.9812622070312,10.828863,10828.863 +27935,2025-03-10T12:58:57.562049-07:00,994.9681396484375,10.825002,10825.002 +27936,2025-03-10T12:59:08.390140-07:00,994.9899291992188,10.828091,10828.091 +27937,2025-03-10T12:59:19.221741-07:00,994.9888916015625,10.831601,10831.601 +27938,2025-03-10T12:59:30.045038-07:00,994.9757080078125,10.823297,10823.297 +27939,2025-03-10T12:59:40.871278-07:00,994.9690551757812,10.82624,10826.24 +27940,2025-03-10T12:59:51.695156-07:00,994.9899291992188,10.823878,10823.878 +27941,2025-03-10T13:00:02.515194-07:00,994.954833984375,10.820038,10820.038 +27942,2025-03-10T13:00:13.342048-07:00,994.9483032226562,10.826854,10826.854 +27943,2025-03-10T13:00:24.177330-07:00,994.942626953125,10.835282,10835.282 +27944,2025-03-10T13:00:35.002026-07:00,994.954833984375,10.824696,10824.696 +27945,2025-03-10T13:00:45.835908-07:00,994.9360961914062,10.833882,10833.882 +27946,2025-03-10T13:00:56.662047-07:00,994.921875,10.826139,10826.139 +27947,2025-03-10T13:01:07.488448-07:00,994.90966796875,10.826401,10826.401 +27948,2025-03-10T13:01:18.324313-07:00,994.9152221679688,10.835865,10835.865 +27949,2025-03-10T13:01:29.151297-07:00,994.8888549804688,10.826984,10826.984 +27950,2025-03-10T13:01:39.981188-07:00,994.8888549804688,10.829891,10829.891 +27951,2025-03-10T13:01:50.810631-07:00,994.861083984375,10.829443,10829.443 +27952,2025-03-10T13:02:01.637400-07:00,994.86767578125,10.826769,10826.769 +27953,2025-03-10T13:02:12.471997-07:00,994.8756103515625,10.834597,10834.597 +27954,2025-03-10T13:02:23.296185-07:00,994.8425903320312,10.824188,10824.188 +27955,2025-03-10T13:02:34.118074-07:00,994.8766479492188,10.821889,10821.889 +27956,2025-03-10T13:02:44.950320-07:00,994.8446655273438,10.832246,10832.246 +27957,2025-03-10T13:02:55.765269-07:00,994.8359375,10.814949,10814.949 +27958,2025-03-10T13:03:06.590430-07:00,994.8478393554688,10.825161,10825.161 +27959,2025-03-10T13:03:17.419043-07:00,994.834716796875,10.828613,10828.613 +27960,2025-03-10T13:03:28.243353-07:00,994.845458984375,10.82431,10824.31 +27961,2025-03-10T13:03:39.070047-07:00,994.82568359375,10.826694,10826.694 +27962,2025-03-10T13:03:49.890085-07:00,994.8534545898438,10.820038,10820.038 +27963,2025-03-10T13:04:00.715638-07:00,994.8336181640625,10.825553,10825.553 +27964,2025-03-10T13:04:11.539124-07:00,994.819091796875,10.823486,10823.486 +27965,2025-03-10T13:04:22.363583-07:00,994.8138427734375,10.824459,10824.459 +27966,2025-03-10T13:04:33.189128-07:00,994.8412475585938,10.825545,10825.545 +27967,2025-03-10T13:04:44.020026-07:00,994.8412475585938,10.830898,10830.898 +27968,2025-03-10T13:04:54.842050-07:00,994.802978515625,10.822024,10822.024 +27969,2025-03-10T13:05:05.669044-07:00,994.802978515625,10.826994,10826.994 +27970,2025-03-10T13:05:16.511313-07:00,994.7720336914062,10.842269,10842.269 +27971,2025-03-10T13:05:27.336070-07:00,994.7709350585938,10.824757,10824.757 +27972,2025-03-10T13:05:38.163042-07:00,994.778564453125,10.826972,10826.972 +27973,2025-03-10T13:05:48.971984-07:00,994.7732543945312,10.808942,10808.942 +27974,2025-03-10T13:05:59.792654-07:00,994.7587280273438,10.82067,10820.67 +27975,2025-03-10T13:06:10.624430-07:00,994.75341796875,10.831776,10831.776 +27976,2025-03-10T13:06:21.453759-07:00,994.7402954101562,10.829329,10829.329 +27977,2025-03-10T13:06:32.289424-07:00,994.7667236328125,10.835665,10835.665 +27978,2025-03-10T13:06:43.114865-07:00,994.7625122070312,10.825441,10825.441 +27979,2025-03-10T13:06:53.941144-07:00,994.7625122070312,10.826279,10826.279 +27980,2025-03-10T13:07:04.770636-07:00,994.7412719726562,10.829492,10829.492 +27981,2025-03-10T13:07:15.603251-07:00,994.775634765625,10.832615,10832.615 +27982,2025-03-10T13:07:26.425922-07:00,994.7625122070312,10.822671,10822.671 +27983,2025-03-10T13:07:37.265098-07:00,994.7360229492188,10.839176,10839.176 +27984,2025-03-10T13:07:48.089924-07:00,994.74365234375,10.824826,10824.826 +27985,2025-03-10T13:07:58.920119-07:00,994.7592163085938,10.830195,10830.195 +27986,2025-03-10T13:08:09.739897-07:00,994.7251586914062,10.819778,10819.778 +27987,2025-03-10T13:08:20.570533-07:00,994.7515869140625,10.830636,10830.636 +27988,2025-03-10T13:08:31.403656-07:00,994.7119750976562,10.833123,10833.123 +27989,2025-03-10T13:08:42.222693-07:00,994.734130859375,10.819037,10819.037 +27990,2025-03-10T13:08:53.048937-07:00,994.7196044921875,10.826244,10826.244 +27991,2025-03-10T13:09:03.882930-07:00,994.747314453125,10.833993,10833.993 +27992,2025-03-10T13:09:14.707678-07:00,994.7285766601562,10.824748,10824.748 +27993,2025-03-10T13:09:25.533651-07:00,994.7076416015625,10.825973,10825.973 +27994,2025-03-10T13:09:36.359990-07:00,994.7076416015625,10.826339,10826.339 +27995,2025-03-10T13:09:47.183657-07:00,994.6757202148438,10.823667,10823.667 +27996,2025-03-10T13:09:58.011258-07:00,994.721923828125,10.827601,10827.601 +27997,2025-03-10T13:10:08.843776-07:00,994.7020874023438,10.832518,10832.518 +27998,2025-03-10T13:10:19.674994-07:00,994.6889038085938,10.831218,10831.218 +27999,2025-03-10T13:10:30.492651-07:00,994.6681518554688,10.817657,10817.657 +28000,2025-03-10T13:10:41.319744-07:00,994.6704711914062,10.827093,10827.093 +28001,2025-03-10T13:10:52.142861-07:00,994.6954956054688,10.823117,10823.117 +28002,2025-03-10T13:11:02.967810-07:00,994.7034301757812,10.824949,10824.949 +28003,2025-03-10T13:11:13.802659-07:00,994.68359375,10.834849,10834.849 +28004,2025-03-10T13:11:24.629787-07:00,994.677001953125,10.827128,10827.128 +28005,2025-03-10T13:11:35.451067-07:00,994.6954956054688,10.82128,10821.28 +28006,2025-03-10T13:11:46.278994-07:00,994.6912231445312,10.827927,10827.927 +28007,2025-03-10T13:11:57.103946-07:00,994.6889038085938,10.824952,10824.952 +28008,2025-03-10T13:12:07.936648-07:00,994.6361083984375,10.832702,10832.702 +28009,2025-03-10T13:12:18.761428-07:00,994.6846923828125,10.82478,10824.78 +28010,2025-03-10T13:12:29.587824-07:00,994.6582641601562,10.826396,10826.396 +28011,2025-03-10T13:12:40.408700-07:00,994.651611328125,10.820876,10820.876 +28012,2025-03-10T13:12:51.233710-07:00,994.6912231445312,10.82501,10825.01 +28013,2025-03-10T13:13:02.058851-07:00,994.6978759765625,10.825141,10825.141 +28014,2025-03-10T13:13:12.890652-07:00,994.680419921875,10.831801,10831.801 +28015,2025-03-10T13:13:23.720650-07:00,994.638427734375,10.829998,10829.998 +28016,2025-03-10T13:13:34.544049-07:00,994.6793823242188,10.823399,10823.399 +28017,2025-03-10T13:13:45.367891-07:00,994.6251831054688,10.823842,10823.842 +28018,2025-03-10T13:13:56.195939-07:00,994.6473388671875,10.828048,10828.048 +28019,2025-03-10T13:14:07.028210-07:00,994.61328125,10.832271,10832.271 +28020,2025-03-10T13:14:17.859010-07:00,994.6199340820312,10.8308,10830.8 +28021,2025-03-10T13:14:28.679655-07:00,994.606689453125,10.820645,10820.645 +28022,2025-03-10T13:14:39.510248-07:00,994.6331176757812,10.830593,10830.593 +28023,2025-03-10T13:14:50.336929-07:00,994.6318969726562,10.826681,10826.681 +28024,2025-03-10T13:15:01.163105-07:00,994.6209106445312,10.826176,10826.176 +28025,2025-03-10T13:15:11.995659-07:00,994.623291015625,10.832554,10832.554 +28026,2025-03-10T13:15:22.827230-07:00,994.64208984375,10.831571,10831.571 +28027,2025-03-10T13:15:33.647699-07:00,994.581298828125,10.820469,10820.469 +28028,2025-03-10T13:15:44.478781-07:00,994.5892333984375,10.831082,10831.082 +28029,2025-03-10T13:15:55.298647-07:00,994.5892333984375,10.819866,10819.866 +28030,2025-03-10T13:16:06.123656-07:00,994.5892333984375,10.825009,10825.009 +28031,2025-03-10T13:16:16.951239-07:00,994.5761108398438,10.827583,10827.583 +28032,2025-03-10T13:16:27.780655-07:00,994.5694580078125,10.829416,10829.416 +28033,2025-03-10T13:16:38.598205-07:00,994.5572509765625,10.81755,10817.55 +28034,2025-03-10T13:16:49.425634-07:00,994.5482788085938,10.827429,10827.429 +28035,2025-03-10T13:17:00.248646-07:00,994.554931640625,10.823012,10823.012 +28036,2025-03-10T13:17:11.075653-07:00,994.5615844726562,10.827007,10827.007 +28037,2025-03-10T13:17:21.903574-07:00,994.57373046875,10.827921,10827.921 +28038,2025-03-10T13:17:32.732780-07:00,994.5153198242188,10.829206,10829.206 +28039,2025-03-10T13:17:43.571202-07:00,994.5208740234375,10.838422,10838.422 +28040,2025-03-10T13:17:54.397489-07:00,994.4944458007812,10.826287,10826.287 +28041,2025-03-10T13:18:05.219104-07:00,994.5010986328125,10.821615,10821.615 +28042,2025-03-10T13:18:16.056660-07:00,994.5076293945312,10.837556,10837.556 +28043,2025-03-10T13:18:26.882652-07:00,994.48779296875,10.825992,10825.992 +28044,2025-03-10T13:18:37.706647-07:00,994.48779296875,10.823995,10823.995 +28045,2025-03-10T13:18:48.535053-07:00,994.455810546875,10.828406,10828.406 +28046,2025-03-10T13:18:59.370647-07:00,994.510986328125,10.835594,10835.594 +28047,2025-03-10T13:19:10.194926-07:00,994.4901733398438,10.824279,10824.279 +28048,2025-03-10T13:19:21.018241-07:00,994.5020141601562,10.823315,10823.315 +28049,2025-03-10T13:19:31.856848-07:00,994.442626953125,10.838607,10838.607 +28050,2025-03-10T13:19:42.690367-07:00,994.4901733398438,10.833519,10833.519 +28051,2025-03-10T13:19:53.524192-07:00,994.4690551757812,10.833825,10833.825 +28052,2025-03-10T13:20:04.357634-07:00,994.455810546875,10.833442,10833.442 +28053,2025-03-10T13:20:15.187920-07:00,994.4703369140625,10.830286,10830.286 +28054,2025-03-10T13:20:26.024700-07:00,994.4439086914062,10.83678,10836.78 +28055,2025-03-10T13:20:36.851792-07:00,994.4373168945312,10.827092,10827.092 +28056,2025-03-10T13:20:47.674651-07:00,994.43603515625,10.822859,10822.859 +28057,2025-03-10T13:20:58.509346-07:00,994.4317016601562,10.834695,10834.695 +28058,2025-03-10T13:21:09.333661-07:00,994.4317016601562,10.824315,10824.315 +28059,2025-03-10T13:21:20.159662-07:00,994.4251708984375,10.826001,10826.001 +28060,2025-03-10T13:21:30.990645-07:00,994.4076538085938,10.830983,10830.983 +28061,2025-03-10T13:21:41.817990-07:00,994.4483032226562,10.827345,10827.345 +28062,2025-03-10T13:21:52.649635-07:00,994.4142456054688,10.831645,10831.645 +28063,2025-03-10T13:22:03.467914-07:00,994.3802490234375,10.818279,10818.279 +28064,2025-03-10T13:22:14.296657-07:00,994.4132690429688,10.828743,10828.743 +28065,2025-03-10T13:22:25.115220-07:00,994.4034423828125,10.818563,10818.563 +28066,2025-03-10T13:22:35.935772-07:00,994.3812255859375,10.820552,10820.552 +28067,2025-03-10T13:22:46.756647-07:00,994.4043579101562,10.820875,10820.875 +28068,2025-03-10T13:22:57.586276-07:00,994.370361328125,10.829629,10829.629 +28069,2025-03-10T13:23:08.399893-07:00,994.399169921875,10.813617,10813.617 +28070,2025-03-10T13:23:19.232683-07:00,994.3756103515625,10.83279,10832.79 +28071,2025-03-10T13:23:30.066886-07:00,994.3836059570312,10.834203,10834.203 +28072,2025-03-10T13:23:40.891984-07:00,994.3845825195312,10.825098,10825.098 +28073,2025-03-10T13:23:51.725802-07:00,994.3845825195312,10.833818,10833.818 +28074,2025-03-10T13:24:02.562922-07:00,994.40576171875,10.83712,10837.12 +28075,2025-03-10T13:24:13.387651-07:00,994.3671875,10.824729,10824.729 +28076,2025-03-10T13:24:24.226810-07:00,994.3803100585938,10.839159,10839.159 +28077,2025-03-10T13:24:35.056936-07:00,994.368408203125,10.830126,10830.126 +28078,2025-03-10T13:24:45.881791-07:00,994.3618774414062,10.824855,10824.855 +28079,2025-03-10T13:24:56.711651-07:00,994.33642578125,10.82986,10829.86 +28080,2025-03-10T13:25:07.543656-07:00,994.3311767578125,10.832005,10832.005 +28081,2025-03-10T13:25:18.371963-07:00,994.3467407226562,10.828307,10828.307 +28082,2025-03-10T13:25:29.213571-07:00,994.3401489257812,10.841608,10841.608 +28083,2025-03-10T13:25:40.041179-07:00,994.3292236328125,10.827608,10827.608 +28084,2025-03-10T13:25:50.878653-07:00,994.3093872070312,10.837474,10837.474 +28085,2025-03-10T13:26:01.711898-07:00,994.3117065429688,10.833245,10833.245 +28086,2025-03-10T13:26:12.537874-07:00,994.3193969726562,10.825976,10825.976 +28087,2025-03-10T13:26:23.360938-07:00,994.3326416015625,10.823064,10823.064 +28088,2025-03-10T13:26:34.184039-07:00,994.3217163085938,10.823101,10823.101 +28089,2025-03-10T13:26:45.025891-07:00,994.3085327148438,10.841852,10841.852 +28090,2025-03-10T13:26:55.852650-07:00,994.30419921875,10.826759,10826.759 +28091,2025-03-10T13:27:06.681861-07:00,994.2689208984375,10.829211,10829.211 +28092,2025-03-10T13:27:17.512484-07:00,994.2920532226562,10.830623,10830.623 +28093,2025-03-10T13:27:28.339963-07:00,994.2920532226562,10.827479,10827.479 +28094,2025-03-10T13:27:39.156934-07:00,994.2736206054688,10.816971,10816.971 +28095,2025-03-10T13:27:49.988343-07:00,994.2736206054688,10.831409,10831.409 +28096,2025-03-10T13:28:00.814657-07:00,994.2650146484375,10.826314,10826.314 +28097,2025-03-10T13:28:11.647213-07:00,994.2362670898438,10.832556,10832.556 +28098,2025-03-10T13:28:22.471973-07:00,994.2517700195312,10.82476,10824.76 +28099,2025-03-10T13:28:33.310848-07:00,994.2517700195312,10.838875,10838.875 +28100,2025-03-10T13:28:44.138908-07:00,994.2320556640625,10.82806,10828.06 +28101,2025-03-10T13:28:54.977657-07:00,994.20556640625,10.838749,10838.749 +28102,2025-03-10T13:29:05.794655-07:00,994.2396240234375,10.816998,10816.998 +28103,2025-03-10T13:29:16.623007-07:00,994.2263793945312,10.828352,10828.352 +28104,2025-03-10T13:29:27.462653-07:00,994.1947021484375,10.839646,10839.646 +28105,2025-03-10T13:29:38.289659-07:00,994.1947021484375,10.827006,10827.006 +28106,2025-03-10T13:29:49.132146-07:00,994.2023315429688,10.842487,10842.487 +28107,2025-03-10T13:29:59.958264-07:00,994.2221069335938,10.826118,10826.118 +28108,2025-03-10T13:30:10.800710-07:00,994.1890869140625,10.842446,10842.446 +28109,2025-03-10T13:30:21.627938-07:00,994.19140625,10.827228,10827.228 +28110,2025-03-10T13:30:32.452974-07:00,994.1771850585938,10.825036,10825.036 +28111,2025-03-10T13:30:43.288655-07:00,994.1860961914062,10.835681,10835.681 +28112,2025-03-10T13:30:54.115805-07:00,994.1649780273438,10.82715,10827.15 +28113,2025-03-10T13:31:04.951635-07:00,994.1649780273438,10.83583,10835.83 +28114,2025-03-10T13:31:15.785912-07:00,994.15966796875,10.834277,10834.277 +28115,2025-03-10T13:31:26.618855-07:00,994.1200561523438,10.832943,10832.943 +28116,2025-03-10T13:31:37.452965-07:00,994.13427734375,10.83411,10834.11 +28117,2025-03-10T13:31:48.285911-07:00,994.1134643554688,10.832946,10832.946 +28118,2025-03-10T13:31:59.122978-07:00,994.1026000976562,10.837067,10837.067 +28119,2025-03-10T13:32:09.955651-07:00,994.122314453125,10.832673,10832.673 +28120,2025-03-10T13:32:20.783698-07:00,994.08935546875,10.828047,10828.047 +28121,2025-03-10T13:32:31.620200-07:00,994.111572265625,10.836502,10836.502 +28122,2025-03-10T13:32:42.444793-07:00,994.1168212890625,10.824593,10824.593 +28123,2025-03-10T13:32:53.277940-07:00,994.0718994140625,10.833147,10833.147 +28124,2025-03-10T13:33:04.103990-07:00,994.0653076171875,10.82605,10826.05 +28125,2025-03-10T13:33:14.930984-07:00,994.05078125,10.826994,10826.994 +28126,2025-03-10T13:33:25.772652-07:00,994.04638671875,10.841668,10841.668 +28127,2025-03-10T13:33:36.599651-07:00,994.0609130859375,10.826999,10826.999 +28128,2025-03-10T13:33:47.437518-07:00,994.0818481445312,10.837867,10837.867 +28129,2025-03-10T13:33:58.267137-07:00,994.069580078125,10.829619,10829.619 +28130,2025-03-10T13:34:09.103658-07:00,994.043212890625,10.836521,10836.521 +28131,2025-03-10T13:34:19.933943-07:00,994.0653076171875,10.830285,10830.285 +28132,2025-03-10T13:34:30.769647-07:00,994.0577392578125,10.835704,10835.704 +28133,2025-03-10T13:34:41.598015-07:00,994.0256958007812,10.828368,10828.368 +28134,2025-03-10T13:34:52.431957-07:00,993.99267578125,10.833942,10833.942 +28135,2025-03-10T13:35:03.259220-07:00,994.028076171875,10.827263,10827.263 +28136,2025-03-10T13:35:14.093843-07:00,994.06005859375,10.834623,10834.623 +28137,2025-03-10T13:35:24.927793-07:00,994.03466796875,10.83395,10833.95 +28138,2025-03-10T13:35:35.765892-07:00,994.054443359375,10.838099,10838.099 +28139,2025-03-10T13:35:46.589158-07:00,994.0491943359375,10.823266,10823.266 +28140,2025-03-10T13:35:57.416393-07:00,994.0700073242188,10.827235,10827.235 +28141,2025-03-10T13:36:08.246656-07:00,994.0237426757812,10.830263,10830.263 +28142,2025-03-10T13:36:19.086636-07:00,994.0448608398438,10.83998,10839.98 +28143,2025-03-10T13:36:29.911813-07:00,994.0435791015625,10.825177,10825.177 +28144,2025-03-10T13:36:40.745804-07:00,994.0326538085938,10.833991,10833.991 +28145,2025-03-10T13:36:51.569819-07:00,994.0349731445312,10.824015,10824.015 +28146,2025-03-10T13:37:02.407961-07:00,994.0416259765625,10.838142,10838.142 +28147,2025-03-10T13:37:13.239706-07:00,994.0086059570312,10.831745,10831.745 +28148,2025-03-10T13:37:24.071713-07:00,994.0284423828125,10.832007,10832.007 +28149,2025-03-10T13:37:34.899663-07:00,994.0042724609375,10.82795,10827.95 +28150,2025-03-10T13:37:45.724125-07:00,994.018798828125,10.824462,10824.462 +28151,2025-03-10T13:37:56.565912-07:00,993.992431640625,10.841787,10841.787 +28152,2025-03-10T13:38:07.391653-07:00,994.0264282226562,10.825741,10825.741 +28153,2025-03-10T13:38:18.227976-07:00,994.005615234375,10.836323,10836.323 +28154,2025-03-10T13:38:29.059772-07:00,993.992431640625,10.831796,10831.796 +28155,2025-03-10T13:38:39.887659-07:00,994.0066528320312,10.827887,10827.887 +28156,2025-03-10T13:38:50.729979-07:00,993.9880981445312,10.84232,10842.32 +28157,2025-03-10T13:39:01.563722-07:00,993.967041015625,10.833743,10833.743 +28158,2025-03-10T13:39:12.387286-07:00,993.9880981445312,10.823564,10823.564 +28159,2025-03-10T13:39:23.228346-07:00,993.962646484375,10.84106,10841.06 +28160,2025-03-10T13:39:34.062636-07:00,993.9749145507812,10.83429,10834.29 +28161,2025-03-10T13:39:44.895806-07:00,994.0178833007812,10.83317,10833.17 +28162,2025-03-10T13:39:55.725695-07:00,994.0245361328125,10.829889,10829.889 +28163,2025-03-10T13:40:06.547151-07:00,993.9901733398438,10.821456,10821.456 +28164,2025-03-10T13:40:17.379649-07:00,993.9373168945312,10.832498,10832.498 +28165,2025-03-10T13:40:28.211714-07:00,993.9901733398438,10.832065,10832.065 +28166,2025-03-10T13:40:39.041706-07:00,993.966064453125,10.829992,10829.992 +28167,2025-03-10T13:40:49.872807-07:00,993.9451293945312,10.831101,10831.101 +28168,2025-03-10T13:41:00.715899-07:00,993.91455078125,10.843092,10843.092 +28169,2025-03-10T13:41:11.540011-07:00,993.9065551757812,10.824112,10824.112 +28170,2025-03-10T13:41:22.382085-07:00,993.9000244140625,10.842074,10842.074 +28171,2025-03-10T13:41:33.208394-07:00,993.9198608398438,10.826309,10826.309 +28172,2025-03-10T13:41:44.043106-07:00,993.8947143554688,10.834712,10834.712 +28173,2025-03-10T13:41:54.883656-07:00,993.8668823242188,10.84055,10840.55 +28174,2025-03-10T13:42:05.718632-07:00,993.8890380859375,10.834976,10834.976 +28175,2025-03-10T13:42:16.549700-07:00,993.8890380859375,10.831068,10831.068 +28176,2025-03-10T13:42:27.384702-07:00,993.8890380859375,10.835002,10835.002 +28177,2025-03-10T13:42:38.219971-07:00,993.8748168945312,10.835269,10835.269 +28178,2025-03-10T13:42:49.046005-07:00,993.91015625,10.826034,10826.034 +28179,2025-03-10T13:42:59.883657-07:00,993.8890380859375,10.837652,10837.652 +28180,2025-03-10T13:43:10.707656-07:00,993.8758544921875,10.823999,10823.999 +28181,2025-03-10T13:43:21.541405-07:00,993.8428344726562,10.833749,10833.749 +28182,2025-03-10T13:43:32.361845-07:00,993.8428344726562,10.82044,10820.44 +28183,2025-03-10T13:43:43.202972-07:00,993.82958984375,10.841127,10841.127 +28184,2025-03-10T13:43:54.036936-07:00,993.822998046875,10.833964,10833.964 +28185,2025-03-10T13:44:04.867996-07:00,993.8375244140625,10.83106,10831.06 +28186,2025-03-10T13:44:15.710812-07:00,993.8309326171875,10.842816,10842.816 +28187,2025-03-10T13:44:26.540881-07:00,993.8385009765625,10.830069,10830.069 +28188,2025-03-10T13:44:37.373792-07:00,993.8200073242188,10.832911,10832.911 +28189,2025-03-10T13:44:48.216215-07:00,993.8200073242188,10.842423,10842.423 +28190,2025-03-10T13:44:59.048654-07:00,993.82666015625,10.832439,10832.439 +28191,2025-03-10T13:45:09.891932-07:00,993.8054809570312,10.843278,10843.278 +28192,2025-03-10T13:45:20.724167-07:00,993.81640625,10.832235,10832.235 +28193,2025-03-10T13:45:31.545656-07:00,993.8318481445312,10.821489,10821.489 +28194,2025-03-10T13:45:42.376230-07:00,993.82666015625,10.830574,10830.574 +28195,2025-03-10T13:45:53.213658-07:00,993.8187255859375,10.837428,10837.428 +28196,2025-03-10T13:46:04.038594-07:00,993.8253173828125,10.824936,10824.936 +28197,2025-03-10T13:46:14.877656-07:00,993.78564453125,10.839062,10839.062 +28198,2025-03-10T13:46:25.702013-07:00,993.8001708984375,10.824357,10824.357 +28199,2025-03-10T13:46:36.534742-07:00,993.81201171875,10.832729,10832.729 +28200,2025-03-10T13:46:47.365652-07:00,993.834228515625,10.83091,10830.91 +28201,2025-03-10T13:46:58.185664-07:00,993.8408813476562,10.820012,10820.012 +28202,2025-03-10T13:47:09.021930-07:00,993.78466796875,10.836266,10836.266 +28203,2025-03-10T13:47:19.849797-07:00,993.779052734375,10.827867,10827.867 +28204,2025-03-10T13:47:30.681418-07:00,993.78466796875,10.831621,10831.621 +28205,2025-03-10T13:47:41.501795-07:00,993.8068237304688,10.820377,10820.377 +28206,2025-03-10T13:47:52.338777-07:00,993.7977905273438,10.836982,10836.982 +28207,2025-03-10T13:48:03.174861-07:00,993.8054809570312,10.836084,10836.084 +28208,2025-03-10T13:48:14.002986-07:00,993.8001708984375,10.828125,10828.125 +28209,2025-03-10T13:48:24.827888-07:00,993.7945556640625,10.824902,10824.902 +28210,2025-03-10T13:48:35.650829-07:00,993.7605590820312,10.822941,10822.941 +28211,2025-03-10T13:48:46.483631-07:00,993.7803344726562,10.832802,10832.802 +28212,2025-03-10T13:48:57.310454-07:00,993.7737426757812,10.826823,10826.823 +28213,2025-03-10T13:49:08.132656-07:00,993.7549438476562,10.822202,10822.202 +28214,2025-03-10T13:49:18.970667-07:00,993.748291015625,10.838011,10838.011 +28215,2025-03-10T13:49:29.794700-07:00,993.7351684570312,10.824033,10824.033 +28216,2025-03-10T13:49:40.628957-07:00,993.7496948242188,10.834257,10834.257 +28217,2025-03-10T13:49:51.458653-07:00,993.7430419921875,10.829696,10829.696 +28218,2025-03-10T13:50:02.288710-07:00,993.7463989257812,10.830057,10830.057 +28219,2025-03-10T13:50:13.122708-07:00,993.7242431640625,10.833998,10833.998 +28220,2025-03-10T13:50:23.953875-07:00,993.73876953125,10.831167,10831.167 +28221,2025-03-10T13:50:34.786239-07:00,993.7123413085938,10.832364,10832.364 +28222,2025-03-10T13:50:45.617155-07:00,993.7056884765625,10.830916,10830.916 +28223,2025-03-10T13:50:56.437868-07:00,993.7067260742188,10.820713,10820.713 +28224,2025-03-10T13:51:07.270880-07:00,993.7212524414062,10.833012,10833.012 +28225,2025-03-10T13:51:18.100984-07:00,993.7288818359375,10.830104,10830.104 +28226,2025-03-10T13:51:28.926658-07:00,993.689208984375,10.825674,10825.674 +28227,2025-03-10T13:51:39.763962-07:00,993.689208984375,10.837304,10837.304 +28228,2025-03-10T13:51:50.591148-07:00,993.6915893554688,10.827186,10827.186 +28229,2025-03-10T13:52:01.425076-07:00,993.6915893554688,10.833928,10833.928 +28230,2025-03-10T13:52:12.258880-07:00,993.6673583984375,10.833804,10833.804 +28231,2025-03-10T13:52:23.086748-07:00,993.6542358398438,10.827868,10827.868 +28232,2025-03-10T13:52:33.913655-07:00,993.6542358398438,10.826907,10826.907 +28233,2025-03-10T13:52:44.747996-07:00,993.6409301757812,10.834341,10834.341 +28234,2025-03-10T13:52:55.574656-07:00,993.6079711914062,10.82666,10826.66 +28235,2025-03-10T13:53:06.407907-07:00,993.6234130859375,10.833251,10833.251 +28236,2025-03-10T13:53:17.238603-07:00,993.6257934570312,10.830696,10830.696 +28237,2025-03-10T13:53:28.071657-07:00,993.631103515625,10.833054,10833.054 +28238,2025-03-10T13:53:38.913083-07:00,993.5979614257812,10.841426,10841.426 +28239,2025-03-10T13:53:49.739624-07:00,993.6257934570312,10.826541,10826.541 +28240,2025-03-10T13:54:00.575637-07:00,993.6124877929688,10.836013,10836.013 +28241,2025-03-10T13:54:11.406658-07:00,993.6006469726562,10.831021,10831.021 +28242,2025-03-10T13:54:22.230121-07:00,993.58740234375,10.823463,10823.463 +28243,2025-03-10T13:54:33.059923-07:00,993.5953369140625,10.829802,10829.802 +28244,2025-03-10T13:54:43.897656-07:00,993.5623168945312,10.837733,10837.733 +28245,2025-03-10T13:54:54.725700-07:00,993.5411987304688,10.828044,10828.044 +28246,2025-03-10T13:55:05.556957-07:00,993.549072265625,10.831257,10831.257 +28247,2025-03-10T13:55:16.391963-07:00,993.5623168945312,10.835006,10835.006 +28248,2025-03-10T13:55:27.223905-07:00,993.536865234375,10.831942,10831.942 +28249,2025-03-10T13:55:38.050976-07:00,993.535888671875,10.827071,10827.071 +28250,2025-03-10T13:55:48.882939-07:00,993.5292358398438,10.831963,10831.963 +28251,2025-03-10T13:55:59.713839-07:00,993.5183715820312,10.8309,10830.9 +28252,2025-03-10T13:56:10.546226-07:00,993.5250244140625,10.832387,10832.387 +28253,2025-03-10T13:56:21.377712-07:00,993.51171875,10.831486,10831.486 +28254,2025-03-10T13:56:32.209760-07:00,993.5038452148438,10.832048,10832.048 +28255,2025-03-10T13:56:43.042092-07:00,993.4390869140625,10.832332,10832.332 +28256,2025-03-10T13:56:53.877007-07:00,993.4840087890625,10.834915,10834.915 +28257,2025-03-10T13:57:04.704803-07:00,993.47314453125,10.827796,10827.796 +28258,2025-03-10T13:57:15.537002-07:00,993.4720458984375,10.832199,10832.199 +28259,2025-03-10T13:57:26.365062-07:00,993.4522094726562,10.82806,10828.06 +28260,2025-03-10T13:57:37.200996-07:00,993.4654541015625,10.835934,10835.934 +28261,2025-03-10T13:57:48.032549-07:00,993.4654541015625,10.831553,10831.553 +28262,2025-03-10T13:57:58.854217-07:00,993.4862670898438,10.821668,10821.668 +28263,2025-03-10T13:58:09.686653-07:00,993.4654541015625,10.832436,10832.436 +28264,2025-03-10T13:58:20.509226-07:00,993.4456176757812,10.822573,10822.573 +28265,2025-03-10T13:58:31.342655-07:00,993.4918823242188,10.833429,10833.429 +28266,2025-03-10T13:58:42.169189-07:00,993.4654541015625,10.826534,10826.534 +28267,2025-03-10T13:58:52.999654-07:00,993.4786987304688,10.830465,10830.465 +28268,2025-03-10T13:59:03.831802-07:00,993.49853515625,10.832148,10832.148 +28269,2025-03-10T13:59:14.659890-07:00,993.4654541015625,10.828088,10828.088 +28270,2025-03-10T13:59:25.493914-07:00,993.4796752929688,10.834024,10834.024 +28271,2025-03-10T13:59:36.327106-07:00,993.4786987304688,10.833192,10833.192 +28272,2025-03-10T13:59:47.152972-07:00,993.45751953125,10.825866,10825.866 +28273,2025-03-10T13:59:57.990171-07:00,993.419189453125,10.837199,10837.199 +28274,2025-03-10T14:00:08.821798-07:00,993.4654541015625,10.831627,10831.627 +28275,2025-03-10T14:00:19.652907-07:00,993.4796752929688,10.831109,10831.109 +28276,2025-03-10T14:00:30.476822-07:00,993.4678344726562,10.823915,10823.915 +28277,2025-03-10T14:00:41.299647-07:00,993.4678344726562,10.822825,10822.825 +28278,2025-03-10T14:00:52.127920-07:00,993.46875,10.828273,10828.273 +28279,2025-03-10T14:01:02.956866-07:00,993.4413452148438,10.828946,10828.946 +28280,2025-03-10T14:01:13.790232-07:00,993.4700927734375,10.833366,10833.366 +28281,2025-03-10T14:01:24.621630-07:00,993.4413452148438,10.831398,10831.398 +28282,2025-03-10T14:01:35.448887-07:00,993.419189453125,10.827257,10827.257 +28283,2025-03-10T14:01:46.291654-07:00,993.4545288085938,10.842767,10842.767 +28284,2025-03-10T14:01:57.118655-07:00,993.4598388671875,10.827001,10827.001 +28285,2025-03-10T14:02:07.949049-07:00,993.4400024414062,10.830394,10830.394 +28286,2025-03-10T14:02:18.779649-07:00,993.41357421875,10.8306,10830.6 +28287,2025-03-10T14:02:29.612922-07:00,993.4082641601562,10.833273,10833.273 +28288,2025-03-10T14:02:40.433656-07:00,993.4059448242188,10.820734,10820.734 +28289,2025-03-10T14:02:51.263670-07:00,993.3993530273438,10.830014,10830.014 +28290,2025-03-10T14:03:02.095645-07:00,993.4070434570312,10.831975,10831.975 +28291,2025-03-10T14:03:12.928086-07:00,993.420166015625,10.832441,10832.441 +28292,2025-03-10T14:03:23.750726-07:00,993.3937377929688,10.82264,10822.64 +28293,2025-03-10T14:03:34.579746-07:00,993.3739013671875,10.82902,10829.02 +28294,2025-03-10T14:03:45.422761-07:00,993.3894653320312,10.843015,10843.015 +28295,2025-03-10T14:03:56.253839-07:00,993.362060546875,10.831078,10831.078 +28296,2025-03-10T14:04:07.082990-07:00,993.376220703125,10.829151,10829.151 +28297,2025-03-10T14:04:17.912885-07:00,993.3961181640625,10.829895,10829.895 +28298,2025-03-10T14:04:28.742904-07:00,993.3709106445312,10.830019,10830.019 +28299,2025-03-10T14:04:39.581657-07:00,993.3487548828125,10.838753,10838.753 +28300,2025-03-10T14:04:50.407891-07:00,993.349853515625,10.826234,10826.234 +28301,2025-03-10T14:05:01.239945-07:00,993.3445434570312,10.832054,10832.054 +28302,2025-03-10T14:05:12.065969-07:00,993.373291015625,10.826024,10826.024 +28303,2025-03-10T14:05:22.894904-07:00,993.3521118164062,10.828935,10828.935 +28304,2025-03-10T14:05:33.727878-07:00,993.3521118164062,10.832974,10832.974 +28305,2025-03-10T14:05:44.559675-07:00,993.3336181640625,10.831797,10831.797 +28306,2025-03-10T14:05:55.452877-07:00,993.3412475585938,10.893202,10893.202 +28307,2025-03-10T14:06:06.286917-07:00,993.3094482421875,10.83404,10834.04 +28308,2025-03-10T14:06:17.117437-07:00,993.3236694335938,10.83052,10830.52 +28309,2025-03-10T14:06:27.941257-07:00,993.3359375,10.82382,10823.82 +28310,2025-03-10T14:06:38.781208-07:00,993.3501586914062,10.839951,10839.951 +28311,2025-03-10T14:06:49.614198-07:00,993.3712768554688,10.83299,10832.99 +28312,2025-03-10T14:07:00.439465-07:00,993.3236694335938,10.825267,10825.267 +28313,2025-03-10T14:07:11.273875-07:00,993.3117065429688,10.83441,10834.41 +28314,2025-03-10T14:07:22.098414-07:00,993.3250122070312,10.824539,10824.539 +28315,2025-03-10T14:07:32.929743-07:00,993.3184204101562,10.831329,10831.329 +28316,2025-03-10T14:07:43.760447-07:00,993.3336181640625,10.830704,10830.704 +28317,2025-03-10T14:07:54.593213-07:00,993.30615234375,10.832766,10832.766 +28318,2025-03-10T14:08:05.434548-07:00,993.34814453125,10.841335,10841.335 +28319,2025-03-10T14:08:16.264455-07:00,993.341552734375,10.829907,10829.907 +28320,2025-03-10T14:08:27.102578-07:00,993.34814453125,10.838123,10838.123 +28321,2025-03-10T14:08:37.930320-07:00,993.34912109375,10.827742,10827.742 +28322,2025-03-10T14:08:48.764473-07:00,993.34912109375,10.834153,10834.153 +28323,2025-03-10T14:08:59.588201-07:00,993.2962646484375,10.823728,10823.728 +28324,2025-03-10T14:09:10.416282-07:00,993.3306274414062,10.828081,10828.081 +28325,2025-03-10T14:09:21.247207-07:00,993.3250122070312,10.830925,10830.925 +28326,2025-03-10T14:09:32.081477-07:00,993.365966796875,10.83427,10834.27 +28327,2025-03-10T14:09:42.911258-07:00,993.3382568359375,10.829781,10829.781 +28328,2025-03-10T14:09:53.743253-07:00,993.3197021484375,10.831995,10831.995 +28329,2025-03-10T14:10:04.564190-07:00,993.3339233398438,10.820937,10820.937 +28330,2025-03-10T14:10:15.404342-07:00,993.3184204101562,10.840152,10840.152 +28331,2025-03-10T14:10:26.231902-07:00,993.3140869140625,10.82756,10827.56 +28332,2025-03-10T14:10:37.066737-07:00,993.32861328125,10.834835,10834.835 +28333,2025-03-10T14:10:47.890172-07:00,993.3140869140625,10.823435,10823.435 +28334,2025-03-10T14:10:58.719262-07:00,993.3131103515625,10.82909,10829.09 +28335,2025-03-10T14:11:09.552501-07:00,993.3074951171875,10.833239,10833.239 +28336,2025-03-10T14:11:20.379381-07:00,993.28662109375,10.82688,10826.88 +28337,2025-03-10T14:11:31.204338-07:00,993.3008422851562,10.824957,10824.957 +28338,2025-03-10T14:11:42.040207-07:00,993.2734375,10.835869,10835.869 +28339,2025-03-10T14:11:52.868524-07:00,993.3008422851562,10.828317,10828.317 +28340,2025-03-10T14:12:03.707211-07:00,993.280029296875,10.838687,10838.687 +28341,2025-03-10T14:12:14.533550-07:00,993.2823486328125,10.826339,10826.339 +28342,2025-03-10T14:12:25.362202-07:00,993.2634887695312,10.828652,10828.652 +28343,2025-03-10T14:12:36.183548-07:00,993.2634887695312,10.821346,10821.346 +28344,2025-03-10T14:12:47.015256-07:00,993.2767333984375,10.831708,10831.708 +28345,2025-03-10T14:12:57.848489-07:00,993.2568969726562,10.833233,10833.233 +28346,2025-03-10T14:13:08.678257-07:00,993.2625122070312,10.829768,10829.768 +28347,2025-03-10T14:13:19.507190-07:00,993.249267578125,10.828933,10828.933 +28348,2025-03-10T14:13:30.342530-07:00,993.2625122070312,10.83534,10835.34 +28349,2025-03-10T14:13:41.176205-07:00,993.2559204101562,10.833675,10833.675 +28350,2025-03-10T14:13:52.008486-07:00,993.236083984375,10.832281,10832.281 +28351,2025-03-10T14:14:02.837207-07:00,993.237060546875,10.828721,10828.721 +28352,2025-03-10T14:14:13.669531-07:00,993.2294311523438,10.832324,10832.324 +28353,2025-03-10T14:14:24.502354-07:00,993.2503051757812,10.832823,10832.823 +28354,2025-03-10T14:14:35.331572-07:00,993.223876953125,10.829218,10829.218 +28355,2025-03-10T14:14:46.165433-07:00,993.209716796875,10.833861,10833.861 +28356,2025-03-10T14:14:57.006366-07:00,993.2171630859375,10.840933,10840.933 +28357,2025-03-10T14:15:07.838528-07:00,993.2029418945312,10.832162,10832.162 +28358,2025-03-10T14:15:18.670451-07:00,993.2029418945312,10.831923,10831.923 +28359,2025-03-10T14:15:29.503105-07:00,993.1974487304688,10.832654,10832.654 +28360,2025-03-10T14:15:40.334213-07:00,993.1643676757812,10.831108,10831.108 +28361,2025-03-10T14:15:51.173685-07:00,993.237060546875,10.839472,10839.472 +28362,2025-03-10T14:16:01.999478-07:00,993.2029418945312,10.825793,10825.793 +28363,2025-03-10T14:16:12.819548-07:00,993.181884765625,10.82007,10820.07 +28364,2025-03-10T14:16:23.646276-07:00,993.17529296875,10.826728,10826.728 +28365,2025-03-10T14:16:34.477443-07:00,993.163330078125,10.831167,10831.167 +28366,2025-03-10T14:16:45.312293-07:00,993.1964111328125,10.83485,10834.85 +28367,2025-03-10T14:16:56.133733-07:00,993.1832275390625,10.82144,10821.44 +28368,2025-03-10T14:17:06.965343-07:00,993.15673828125,10.83161,10831.61 +28369,2025-03-10T14:17:17.798216-07:00,993.1356201171875,10.832873,10832.873 +28370,2025-03-10T14:17:28.634402-07:00,993.1643676757812,10.836186,10836.186 +28371,2025-03-10T14:17:39.466526-07:00,993.1775512695312,10.832124,10832.124 +28372,2025-03-10T14:17:50.303475-07:00,993.15771484375,10.836949,10836.949 +28373,2025-03-10T14:18:01.132212-07:00,993.1392211914062,10.828737,10828.737 +28374,2025-03-10T14:18:11.963481-07:00,993.145751953125,10.831269,10831.269 +28375,2025-03-10T14:18:22.788277-07:00,993.1643676757812,10.824796,10824.796 +28376,2025-03-10T14:18:33.619558-07:00,993.15771484375,10.831281,10831.281 +28377,2025-03-10T14:18:44.449209-07:00,993.1590576171875,10.829651,10829.651 +28378,2025-03-10T14:18:55.283350-07:00,993.123779296875,10.834141,10834.141 +28379,2025-03-10T14:19:06.113530-07:00,993.1326293945312,10.83018,10830.18 +28380,2025-03-10T14:19:16.935188-07:00,993.1115112304688,10.821658,10821.658 +28381,2025-03-10T14:19:27.761412-07:00,993.1326293945312,10.826224,10826.224 +28382,2025-03-10T14:19:38.604236-07:00,993.106201171875,10.842824,10842.824 +28383,2025-03-10T14:19:49.440759-07:00,993.11376953125,10.836523,10836.523 +28384,2025-03-10T14:20:00.272213-07:00,993.106201171875,10.831454,10831.454 +28385,2025-03-10T14:20:11.100529-07:00,993.1115112304688,10.828316,10828.316 +28386,2025-03-10T14:20:21.925207-07:00,993.0972900390625,10.824678,10824.678 +28387,2025-03-10T14:20:32.757531-07:00,993.1038818359375,10.832324,10832.324 +28388,2025-03-10T14:20:43.588455-07:00,993.0850219726562,10.830924,10830.924 +28389,2025-03-10T14:20:54.421465-07:00,993.0916137695312,10.83301,10833.01 +28390,2025-03-10T14:21:05.257208-07:00,993.0972900390625,10.835743,10835.743 +28391,2025-03-10T14:21:16.084207-07:00,993.065185546875,10.826999,10826.999 +28392,2025-03-10T14:21:26.916511-07:00,993.1104736328125,10.832304,10832.304 +28393,2025-03-10T14:21:37.760209-07:00,993.0804443359375,10.843698,10843.698 +28394,2025-03-10T14:21:48.589238-07:00,993.0804443359375,10.829029,10829.029 +28395,2025-03-10T14:21:59.431479-07:00,993.08935546875,10.842241,10842.241 +28396,2025-03-10T14:22:10.266110-07:00,993.07373046875,10.834631,10834.631 +28397,2025-03-10T14:22:21.096517-07:00,993.0882568359375,10.830407,10830.407 +28398,2025-03-10T14:22:31.929378-07:00,993.0618896484375,10.832861,10832.861 +28399,2025-03-10T14:22:42.774214-07:00,993.0840454101562,10.844836,10844.836 +28400,2025-03-10T14:22:53.604181-07:00,993.0817260742188,10.829967,10829.967 +28401,2025-03-10T14:23:04.445205-07:00,993.077392578125,10.841024,10841.024 +28402,2025-03-10T14:23:15.273222-07:00,993.0695190429688,10.828017,10828.017 +28403,2025-03-10T14:23:26.110248-07:00,993.0761108398438,10.837026,10837.026 +28404,2025-03-10T14:23:36.935100-07:00,993.0906372070312,10.824852,10824.852 +28405,2025-03-10T14:23:47.763203-07:00,993.1038818359375,10.828103,10828.103 +28406,2025-03-10T14:23:58.594200-07:00,993.1024780273438,10.830997,10830.997 +28407,2025-03-10T14:24:09.437622-07:00,993.0695190429688,10.843422,10843.422 +28408,2025-03-10T14:24:20.270202-07:00,993.0784301757812,10.83258,10832.58 +28409,2025-03-10T14:24:31.100286-07:00,993.077392578125,10.830084,10830.084 +28410,2025-03-10T14:24:41.932207-07:00,993.0906372070312,10.831921,10831.921 +28411,2025-03-10T14:24:52.764214-07:00,993.0916137695312,10.832007,10832.007 +28412,2025-03-10T14:25:03.596548-07:00,993.1048583984375,10.832334,10832.334 +28413,2025-03-10T14:25:14.432215-07:00,993.07177734375,10.835667,10835.667 +28414,2025-03-10T14:25:25.271529-07:00,993.0509643554688,10.839314,10839.314 +28415,2025-03-10T14:25:36.108420-07:00,993.065185546875,10.836891,10836.891 +28416,2025-03-10T14:25:46.936127-07:00,993.0863037109375,10.827707,10827.707 +28417,2025-03-10T14:25:57.777513-07:00,993.1005249023438,10.841386,10841.386 +28418,2025-03-10T14:26:08.622519-07:00,993.09521484375,10.845006,10845.006 +28419,2025-03-10T14:26:19.452227-07:00,993.0740356445312,10.829708,10829.708 +28420,2025-03-10T14:26:30.295859-07:00,993.0896606445312,10.843632,10843.632 +28421,2025-03-10T14:26:41.125201-07:00,993.0829467773438,10.829342,10829.342 +28422,2025-03-10T14:26:51.960207-07:00,993.063232421875,10.835006,10835.006 +28423,2025-03-10T14:27:02.802974-07:00,993.0777587890625,10.842767,10842.767 +28424,2025-03-10T14:27:13.643511-07:00,993.0843505859375,10.840537,10840.537 +28425,2025-03-10T14:27:24.476207-07:00,993.0367431640625,10.832696,10832.696 +28426,2025-03-10T14:27:35.306143-07:00,993.0744018554688,10.829936,10829.936 +28427,2025-03-10T14:27:46.141599-07:00,993.0390625,10.835456,10835.456 +28428,2025-03-10T14:27:56.973550-07:00,993.044677734375,10.831951,10831.951 +28429,2025-03-10T14:28:07.803280-07:00,993.0800170898438,10.82973,10829.73 +28430,2025-03-10T14:28:18.640535-07:00,993.0535888671875,10.837255,10837.255 +28431,2025-03-10T14:28:29.474448-07:00,993.0588989257812,10.833913,10833.913 +28432,2025-03-10T14:28:40.310201-07:00,993.05224609375,10.835753,10835.753 +28433,2025-03-10T14:28:51.136292-07:00,993.0337524414062,10.826091,10826.091 +28434,2025-03-10T14:29:01.973467-07:00,993.040283203125,10.837175,10837.175 +28435,2025-03-10T14:29:12.817366-07:00,993.0271606445312,10.843899,10843.899 +28436,2025-03-10T14:29:23.649156-07:00,992.9940795898438,10.83179,10831.79 +28437,2025-03-10T14:29:34.478424-07:00,993.002685546875,10.829268,10829.268 +28438,2025-03-10T14:29:45.300801-07:00,993.0159301757812,10.822377,10822.377 +28439,2025-03-10T14:29:56.143208-07:00,992.99609375,10.842407,10842.407 +28440,2025-03-10T14:30:06.974989-07:00,993.0106201171875,10.831781,10831.781 +28441,2025-03-10T14:30:17.807352-07:00,993.0106201171875,10.832363,10832.363 +28442,2025-03-10T14:30:28.649215-07:00,993.0314331054688,10.841863,10841.863 +28443,2025-03-10T14:30:39.482380-07:00,992.9718627929688,10.833165,10833.165 +28444,2025-03-10T14:30:50.314078-07:00,992.9718627929688,10.831698,10831.698 +28445,2025-03-10T14:31:01.146615-07:00,993.0062255859375,10.832537,10832.537 +28446,2025-03-10T14:31:11.984268-07:00,992.966552734375,10.837653,10837.653 +28447,2025-03-10T14:31:22.819210-07:00,992.9931030273438,10.834942,10834.942 +28448,2025-03-10T14:31:33.652509-07:00,992.9808349609375,10.833299,10833.299 +28449,2025-03-10T14:31:44.483184-07:00,992.98876953125,10.830675,10830.675 +28450,2025-03-10T14:31:55.327428-07:00,992.9874877929688,10.844244,10844.244 +28451,2025-03-10T14:32:06.152188-07:00,992.954345703125,10.82476,10824.76 +28452,2025-03-10T14:32:16.992518-07:00,992.983154296875,10.84033,10840.33 +28453,2025-03-10T14:32:27.821816-07:00,992.98974609375,10.829298,10829.298 +28454,2025-03-10T14:32:38.666009-07:00,992.9874877929688,10.844193,10844.193 +28455,2025-03-10T14:32:49.508821-07:00,992.9567260742188,10.842812,10842.812 +28456,2025-03-10T14:33:00.340816-07:00,992.9844360351562,10.831995,10831.995 +28457,2025-03-10T14:33:11.182783-07:00,992.9632568359375,10.841967,10841.967 +28458,2025-03-10T14:33:22.026446-07:00,992.9579467773438,10.843663,10843.663 +28459,2025-03-10T14:33:32.868203-07:00,992.9536743164062,10.841757,10841.757 +28460,2025-03-10T14:33:43.704491-07:00,992.9788208007812,10.836288,10836.288 +28461,2025-03-10T14:33:54.544250-07:00,992.9547119140625,10.839759,10839.759 +28462,2025-03-10T14:34:05.388321-07:00,992.9735107421875,10.844071,10844.071 +28463,2025-03-10T14:34:16.230730-07:00,992.9612426757812,10.842409,10842.409 +28464,2025-03-10T14:34:27.062096-07:00,992.9625854492188,10.831366,10831.366 +28465,2025-03-10T14:34:37.897897-07:00,992.9768676757812,10.835801,10835.801 +28466,2025-03-10T14:34:48.720511-07:00,992.9494018554688,10.822614,10822.614 +28467,2025-03-10T14:34:59.558210-07:00,992.95703125,10.837699,10837.699 +28468,2025-03-10T14:35:10.389282-07:00,992.9238891601562,10.831072,10831.072 +28469,2025-03-10T14:35:21.231622-07:00,992.9461059570312,10.84234,10842.34 +28470,2025-03-10T14:35:32.070805-07:00,992.9341430664062,10.839183,10839.183 +28471,2025-03-10T14:35:42.906205-07:00,992.970458984375,10.8354,10835.4 +28472,2025-03-10T14:35:53.749513-07:00,992.9417114257812,10.843308,10843.308 +28473,2025-03-10T14:36:04.593176-07:00,992.9351806640625,10.843663,10843.663 +28474,2025-03-10T14:36:15.436479-07:00,992.915283203125,10.843303,10843.303 +28475,2025-03-10T14:36:26.278264-07:00,992.914306640625,10.841785,10841.785 +28476,2025-03-10T14:36:37.111206-07:00,992.9364013671875,10.832942,10832.942 +28477,2025-03-10T14:36:47.952270-07:00,992.9020385742188,10.841064,10841.064 +28478,2025-03-10T14:36:58.795205-07:00,992.9307861328125,10.842935,10842.935 +28479,2025-03-10T14:37:09.628519-07:00,992.921875,10.833314,10833.314 +28480,2025-03-10T14:37:20.460207-07:00,992.914306640625,10.831688,10831.688 +28481,2025-03-10T14:37:31.295777-07:00,992.9165649414062,10.83557,10835.57 +28482,2025-03-10T14:37:42.129208-07:00,992.9176025390625,10.833431,10833.431 +28483,2025-03-10T14:37:52.962354-07:00,992.896728515625,10.833146,10833.146 +28484,2025-03-10T14:38:03.810212-07:00,992.883544921875,10.847858,10847.858 +28485,2025-03-10T14:38:14.649227-07:00,992.8822021484375,10.839015,10839.015 +28486,2025-03-10T14:38:25.485351-07:00,992.883544921875,10.836124,10836.124 +28487,2025-03-10T14:38:36.326434-07:00,992.8987426757812,10.841083,10841.083 +28488,2025-03-10T14:38:47.154209-07:00,992.8570556640625,10.827775,10827.775 +28489,2025-03-10T14:38:57.985214-07:00,992.8646850585938,10.831005,10831.005 +28490,2025-03-10T14:39:08.819569-07:00,992.8812255859375,10.834355,10834.355 +28491,2025-03-10T14:39:19.659191-07:00,992.9142456054688,10.839622,10839.622 +28492,2025-03-10T14:39:30.498375-07:00,992.8878173828125,10.839184,10839.184 +28493,2025-03-10T14:39:41.341544-07:00,992.8934326171875,10.843169,10843.169 +28494,2025-03-10T14:39:52.178511-07:00,992.8746337890625,10.836967,10836.967 +28495,2025-03-10T14:40:03.015215-07:00,992.88916015625,10.836704,10836.704 +28496,2025-03-10T14:40:24.690421-07:00,992.854736328125,21.675206,21675.206 +28497,2025-03-10T14:40:35.522356-07:00,992.8339233398438,10.831935,10831.935 +28498,2025-03-10T14:40:46.365855-07:00,992.854736328125,10.843499,10843.499 +28499,2025-03-10T14:40:57.208729-07:00,992.853759765625,10.842874,10842.874 +28500,2025-03-10T14:41:08.038211-07:00,992.8613891601562,10.829482,10829.482 +28501,2025-03-10T14:41:18.884211-07:00,992.8693237304688,10.846,10846.0 +28502,2025-03-10T14:41:29.721909-07:00,992.8759155273438,10.837698,10837.698 +28503,2025-03-10T14:41:40.558204-07:00,992.8636474609375,10.836295,10836.295 +28504,2025-03-10T14:41:51.401214-07:00,992.8428344726562,10.84301,10843.01 +28505,2025-03-10T14:42:02.235513-07:00,992.822998046875,10.834299,10834.299 +28506,2025-03-10T14:42:13.076181-07:00,992.82958984375,10.840668,10840.668 +28507,2025-03-10T14:42:23.919208-07:00,992.81640625,10.843027,10843.027 +28508,2025-03-10T14:42:34.751461-07:00,992.8438110351562,10.832253,10832.253 +28509,2025-03-10T14:42:45.599868-07:00,992.8428344726562,10.848407,10848.407 +28510,2025-03-10T14:42:56.425215-07:00,992.82958984375,10.825347,10825.347 +28511,2025-03-10T14:43:07.257776-07:00,992.8438110351562,10.832561,10832.561 +28512,2025-03-10T14:43:18.096707-07:00,992.8041381835938,10.838931,10838.931 +28513,2025-03-10T14:43:28.935208-07:00,992.8041381835938,10.838501,10838.501 +28514,2025-03-10T14:43:39.763234-07:00,992.8451538085938,10.828026,10828.026 +28515,2025-03-10T14:43:50.598459-07:00,992.8318481445312,10.835225,10835.225 +28516,2025-03-10T14:44:01.430598-07:00,992.823974609375,10.832139,10832.139 +28517,2025-03-10T14:44:12.276205-07:00,992.8328857421875,10.845607,10845.607 +28518,2025-03-10T14:44:23.112204-07:00,992.8460693359375,10.835999,10835.999 +28519,2025-03-10T14:44:33.946790-07:00,992.8275756835938,10.834586,10834.586 +28520,2025-03-10T14:44:44.777477-07:00,992.8130493164062,10.830687,10830.687 +28521,2025-03-10T14:44:55.618528-07:00,992.8143920898438,10.841051,10841.051 +28522,2025-03-10T14:45:06.450215-07:00,992.8087768554688,10.831687,10831.687 +28523,2025-03-10T14:45:17.292459-07:00,992.816650390625,10.842244,10842.244 +28524,2025-03-10T14:45:28.132216-07:00,992.8010864257812,10.839757,10839.757 +28525,2025-03-10T14:45:38.966093-07:00,992.7888793945312,10.833877,10833.877 +28526,2025-03-10T14:45:49.799458-07:00,992.7823486328125,10.833365,10833.365 +28527,2025-03-10T14:46:00.644207-07:00,992.7845458984375,10.844749,10844.749 +28528,2025-03-10T14:46:11.476873-07:00,992.7835693359375,10.832666,10832.666 +28529,2025-03-10T14:46:22.318211-07:00,992.7779541015625,10.841338,10841.338 +28530,2025-03-10T14:46:33.150215-07:00,992.791259765625,10.832004,10832.004 +28531,2025-03-10T14:46:43.993757-07:00,992.7977905273438,10.843542,10843.542 +28532,2025-03-10T14:46:54.830208-07:00,992.73828125,10.836451,10836.451 +28533,2025-03-10T14:47:05.669263-07:00,992.799072265625,10.839055,10839.055 +28534,2025-03-10T14:47:16.502269-07:00,992.8057861328125,10.833006,10833.006 +28535,2025-03-10T14:47:27.333204-07:00,992.791259765625,10.830935,10830.935 +28536,2025-03-10T14:47:38.165542-07:00,992.8200073242188,10.832338,10832.338 +28537,2025-03-10T14:47:49.001658-07:00,992.7845458984375,10.836116,10836.116 +28538,2025-03-10T14:47:59.827677-07:00,992.773681640625,10.826019,10826.019 +28539,2025-03-10T14:48:10.672192-07:00,992.7803344726562,10.844515,10844.515 +28540,2025-03-10T14:48:21.501455-07:00,992.8023681640625,10.829263,10829.263 +28541,2025-03-10T14:48:32.346208-07:00,992.8067016601562,10.844753,10844.753 +28542,2025-03-10T14:48:43.177419-07:00,992.7881469726562,10.831211,10831.211 +28543,2025-03-10T14:48:54.009519-07:00,992.7792358398438,10.8321,10832.1 +28544,2025-03-10T14:49:04.853207-07:00,992.7948608398438,10.843688,10843.688 +28545,2025-03-10T14:49:15.678213-07:00,992.773681640625,10.825006,10825.006 +28546,2025-03-10T14:49:26.515661-07:00,992.760498046875,10.837448,10837.448 +28547,2025-03-10T14:49:37.348262-07:00,992.8023681640625,10.832601,10832.601 +28548,2025-03-10T14:49:48.180417-07:00,992.7759399414062,10.832155,10832.155 +28549,2025-03-10T14:49:59.023539-07:00,992.7759399414062,10.843122,10843.122 +28550,2025-03-10T14:50:09.865685-07:00,992.768310546875,10.842146,10842.146 +28551,2025-03-10T14:50:20.701047-07:00,992.7750244140625,10.835362,10835.362 +28552,2025-03-10T14:50:31.529665-07:00,992.7881469726562,10.828618,10828.618 +28553,2025-03-10T14:50:42.372252-07:00,992.7815551757812,10.842587,10842.587 +28554,2025-03-10T14:50:53.207254-07:00,992.7693481445312,10.835002,10835.002 +28555,2025-03-10T14:51:04.030354-07:00,992.76171875,10.8231,10823.1 +28556,2025-03-10T14:51:14.867487-07:00,992.7220458984375,10.837133,10837.133 +28557,2025-03-10T14:51:25.706449-07:00,992.74853515625,10.838962,10838.962 +28558,2025-03-10T14:51:36.542525-07:00,992.7296752929688,10.836076,10836.076 +28559,2025-03-10T14:51:47.373433-07:00,992.7442016601562,10.830908,10830.908 +28560,2025-03-10T14:51:58.217142-07:00,992.7362670898438,10.843709,10843.709 +28561,2025-03-10T14:52:09.047211-07:00,992.7088012695312,10.830069,10830.069 +28562,2025-03-10T14:52:19.878438-07:00,992.7352905273438,10.831227,10831.227 +28563,2025-03-10T14:52:30.707251-07:00,992.7230224609375,10.828813,10828.813 +28564,2025-03-10T14:52:41.551335-07:00,992.7088012695312,10.844084,10844.084 +28565,2025-03-10T14:52:52.377465-07:00,992.7031860351562,10.82613,10826.13 +28566,2025-03-10T14:53:03.217455-07:00,992.742919921875,10.83999,10839.99 +28567,2025-03-10T14:53:14.056262-07:00,992.6876831054688,10.838807,10838.807 +28568,2025-03-10T14:53:24.893534-07:00,992.7031860351562,10.837272,10837.272 +28569,2025-03-10T14:53:35.733210-07:00,992.742919921875,10.839676,10839.676 +28570,2025-03-10T14:53:46.579109-07:00,992.700927734375,10.845899,10845.899 +28571,2025-03-10T14:53:57.423485-07:00,992.7362670898438,10.844376,10844.376 +28572,2025-03-10T14:54:08.266740-07:00,992.6956176757812,10.843255,10843.255 +28573,2025-03-10T14:54:19.108045-07:00,992.6876831054688,10.841305,10841.305 +28574,2025-03-10T14:54:29.952511-07:00,992.6900024414062,10.844466,10844.466 +28575,2025-03-10T14:54:40.785211-07:00,992.67578125,10.8327,10832.7 +28576,2025-03-10T14:54:51.635216-07:00,992.7031860351562,10.850005,10850.005 +28577,2025-03-10T14:55:02.480510-07:00,992.7045288085938,10.845294,10845.294 +28578,2025-03-10T14:55:13.324361-07:00,992.696533203125,10.843851,10843.851 +28579,2025-03-10T14:55:24.167214-07:00,992.7111206054688,10.842853,10842.853 +28580,2025-03-10T14:55:35.010523-07:00,992.6922607421875,10.843309,10843.309 +28581,2025-03-10T14:55:45.843461-07:00,992.71875,10.832938,10832.938 +28582,2025-03-10T14:55:56.685068-07:00,992.6856079101562,10.841607,10841.607 +28583,2025-03-10T14:56:07.527442-07:00,992.6724243164062,10.842374,10842.374 +28584,2025-03-10T14:56:18.361503-07:00,992.6790771484375,10.834061,10834.061 +28585,2025-03-10T14:56:29.203578-07:00,992.6856079101562,10.842075,10842.075 +28586,2025-03-10T14:56:40.043221-07:00,992.652587890625,10.839643,10839.643 +28587,2025-03-10T14:56:50.891246-07:00,992.6869506835938,10.848025,10848.025 +28588,2025-03-10T14:57:01.725711-07:00,992.6790771484375,10.834465,10834.465 +28589,2025-03-10T14:57:12.577572-07:00,992.693603515625,10.851861,10851.861 +28590,2025-03-10T14:57:23.417654-07:00,992.6989135742188,10.840082,10840.082 +28591,2025-03-10T14:57:34.270191-07:00,992.6989135742188,10.852537,10852.537 +28592,2025-03-10T14:57:45.116531-07:00,992.7266235351562,10.84634,10846.34 +28593,2025-03-10T14:57:55.962205-07:00,992.7054443359375,10.845674,10845.674 +28594,2025-03-10T14:58:06.803521-07:00,992.701171875,10.841316,10841.316 +28595,2025-03-10T14:58:17.649609-07:00,992.6671142578125,10.846088,10846.088 +28596,2025-03-10T14:58:28.493268-07:00,992.6802978515625,10.843659,10843.659 +28597,2025-03-10T14:58:39.338376-07:00,992.6813354492188,10.845108,10845.108 +28598,2025-03-10T14:58:50.191202-07:00,992.6813354492188,10.852826,10852.826 +28599,2025-03-10T14:59:01.029548-07:00,992.6968994140625,10.838346,10838.346 +28600,2025-03-10T14:59:11.877489-07:00,992.677001953125,10.847941,10847.941 +28601,2025-03-10T14:59:22.722212-07:00,992.6991577148438,10.844723,10844.723 +28602,2025-03-10T14:59:33.564752-07:00,992.71337890625,10.84254,10842.54 +28603,2025-03-10T14:59:44.414480-07:00,992.7090454101562,10.849728,10849.728 +28604,2025-03-10T14:59:55.270228-07:00,992.69482421875,10.855748,10855.748 +28605,2025-03-10T15:00:06.112652-07:00,992.7245483398438,10.842424,10842.424 +28606,2025-03-10T15:00:16.952706-07:00,992.69482421875,10.840054,10840.054 +28607,2025-03-10T15:00:27.797509-07:00,992.6838989257812,10.844803,10844.803 +28608,2025-03-10T15:00:38.639335-07:00,992.7113037109375,10.841826,10841.826 +28609,2025-03-10T15:00:49.481405-07:00,992.6914672851562,10.84207,10842.07 +28610,2025-03-10T15:01:00.324627-07:00,992.708251953125,10.843222,10843.222 +28611,2025-03-10T15:01:11.166213-07:00,992.708251953125,10.841586,10841.586 +28612,2025-03-10T15:01:22.011208-07:00,992.708251953125,10.844995,10844.995 +28613,2025-03-10T15:01:32.850228-07:00,992.7149047851562,10.83902,10839.02 +28614,2025-03-10T15:01:43.695213-07:00,992.7357788085938,10.844985,10844.985 +28615,2025-03-10T15:01:54.537445-07:00,992.689453125,10.842232,10842.232 +28616,2025-03-10T15:02:05.380454-07:00,992.7050170898438,10.843009,10843.009 +28617,2025-03-10T15:02:16.218210-07:00,992.6961059570312,10.837756,10837.756 +28618,2025-03-10T15:02:27.063539-07:00,992.6961059570312,10.845329,10845.329 +28619,2025-03-10T15:02:37.910468-07:00,992.6907958984375,10.846929,10846.929 +28620,2025-03-10T15:02:48.737585-07:00,992.7039184570312,10.827117,10827.117 +28621,2025-03-10T15:02:59.577693-07:00,992.7017211914062,10.840108,10840.108 +28622,2025-03-10T15:03:10.410415-07:00,992.7182006835938,10.832722,10832.722 +28623,2025-03-10T15:03:21.253319-07:00,992.67626953125,10.842904,10842.904 +28624,2025-03-10T15:03:32.095455-07:00,992.7106323242188,10.842136,10842.136 +28625,2025-03-10T15:03:42.927336-07:00,992.7224731445312,10.831881,10831.881 +28626,2025-03-10T15:03:53.765353-07:00,992.7092895507812,10.838017,10838.017 +28627,2025-03-10T15:04:04.611034-07:00,992.713623046875,10.845681,10845.681 +28628,2025-03-10T15:04:15.440728-07:00,992.7224731445312,10.829694,10829.694 +28629,2025-03-10T15:04:26.276642-07:00,992.708251953125,10.835914,10835.914 +28630,2025-03-10T15:04:37.116391-07:00,992.708251953125,10.839749,10839.749 +28631,2025-03-10T15:04:47.953201-07:00,992.7291259765625,10.83681,10836.81 +28632,2025-03-10T15:04:58.791203-07:00,992.70263671875,10.838002,10838.002 +28633,2025-03-10T15:05:09.638469-07:00,992.7017211914062,10.847266,10847.266 +28634,2025-03-10T15:05:20.470437-07:00,992.7291259765625,10.831968,10831.968 +28635,2025-03-10T15:05:31.314258-07:00,992.70263671875,10.843821,10843.821 +28636,2025-03-10T15:05:42.163276-07:00,992.6884155273438,10.849018,10849.018 +28637,2025-03-10T15:05:52.916855-07:00,992.7224731445312,10.753579,10753.579 +28638,2025-03-10T15:06:03.756526-07:00,992.7039184570312,10.839671,10839.671 +28639,2025-03-10T15:06:14.598486-07:00,992.689453125,10.84196,10841.96 +28640,2025-03-10T15:06:25.447459-07:00,992.7039184570312,10.848973,10848.973 +28641,2025-03-10T15:06:36.277469-07:00,992.70263671875,10.83001,10830.01 +28642,2025-03-10T15:06:47.117427-07:00,992.6709594726562,10.839958,10839.958 +28643,2025-03-10T15:06:57.960231-07:00,992.6696166992188,10.842804,10842.804 +28644,2025-03-10T15:07:08.793646-07:00,992.681884765625,10.833415,10833.415 +28645,2025-03-10T15:07:19.644802-07:00,992.6620483398438,10.851156,10851.156 +28646,2025-03-10T15:07:30.484147-07:00,992.7149047851562,10.839345,10839.345 +28647,2025-03-10T15:07:41.315632-07:00,992.6738891601562,10.831485,10831.485 +28648,2025-03-10T15:07:52.156687-07:00,992.7039184570312,10.841055,10841.055 +28649,2025-03-10T15:08:03.002225-07:00,992.6907958984375,10.845538,10845.538 +28650,2025-03-10T15:08:13.831486-07:00,992.6828002929688,10.829261,10829.261 +28651,2025-03-10T15:08:24.676491-07:00,992.6497802734375,10.845005,10845.005 +28652,2025-03-10T15:08:35.515293-07:00,992.6629638671875,10.838802,10838.802 +28653,2025-03-10T15:08:46.349539-07:00,992.6497802734375,10.834246,10834.246 +28654,2025-03-10T15:08:57.178504-07:00,992.664306640625,10.828965,10828.965 +28655,2025-03-10T15:09:08.014631-07:00,992.6497802734375,10.836127,10836.127 +28656,2025-03-10T15:09:18.851708-07:00,992.6422119140625,10.837077,10837.077 +28657,2025-03-10T15:09:29.684688-07:00,992.6365356445312,10.83298,10832.98 +28658,2025-03-10T15:09:40.516742-07:00,992.6299438476562,10.832054,10832.054 +28659,2025-03-10T15:09:51.352811-07:00,992.6365356445312,10.836069,10836.069 +28660,2025-03-10T15:10:02.197069-07:00,992.6378173828125,10.844258,10844.258 +28661,2025-03-10T15:10:13.028487-07:00,992.6123657226562,10.831418,10831.418 +28662,2025-03-10T15:10:23.864709-07:00,992.6179809570312,10.836222,10836.222 +28663,2025-03-10T15:10:34.705769-07:00,992.61669921875,10.84106,10841.06 +28664,2025-03-10T15:10:45.533738-07:00,992.59814453125,10.827969,10827.969 +28665,2025-03-10T15:10:56.377512-07:00,992.5902099609375,10.843774,10843.774 +28666,2025-03-10T15:11:07.210535-07:00,992.5848999023438,10.833023,10833.023 +28667,2025-03-10T15:11:18.052551-07:00,992.6034545898438,10.842016,10842.016 +28668,2025-03-10T15:11:28.883920-07:00,992.6246337890625,10.831369,10831.369 +28669,2025-03-10T15:11:39.727361-07:00,992.5892333984375,10.843441,10843.441 +28670,2025-03-10T15:11:50.563486-07:00,992.6179809570312,10.836125,10836.125 +28671,2025-03-10T15:12:01.391736-07:00,992.610107421875,10.82825,10828.25 +28672,2025-03-10T15:12:12.222487-07:00,992.610107421875,10.830751,10830.751 +28673,2025-03-10T15:12:23.065493-07:00,992.5958862304688,10.843006,10843.006 +28674,2025-03-10T15:12:33.908829-07:00,992.604736328125,10.843336,10843.336 +28675,2025-03-10T15:12:44.744547-07:00,992.6034545898438,10.835718,10835.718 +28676,2025-03-10T15:12:55.583490-07:00,992.6189575195312,10.838943,10838.943 +28677,2025-03-10T15:13:06.415813-07:00,992.6034545898438,10.832323,10832.323 +28678,2025-03-10T15:13:17.246541-07:00,992.5902099609375,10.830728,10830.728 +28679,2025-03-10T15:13:28.089484-07:00,992.6268920898438,10.842943,10842.943 +28680,2025-03-10T15:13:38.922130-07:00,992.5859375,10.832646,10832.646 +28681,2025-03-10T15:13:49.759855-07:00,992.5902099609375,10.837725,10837.725 +28682,2025-03-10T15:14:00.597672-07:00,992.6179809570312,10.837817,10837.817 +28683,2025-03-10T15:14:11.442173-07:00,992.6123657226562,10.844501,10844.501 +28684,2025-03-10T15:14:22.272211-07:00,992.5848999023438,10.830038,10830.038 +28685,2025-03-10T15:14:33.115486-07:00,992.6322021484375,10.843275,10843.275 +28686,2025-03-10T15:14:43.945628-07:00,992.6034545898438,10.830142,10830.142 +28687,2025-03-10T15:14:54.777552-07:00,992.59912109375,10.831924,10831.924 +28688,2025-03-10T15:15:05.611769-07:00,992.6203002929688,10.834217,10834.217 +28689,2025-03-10T15:15:16.452792-07:00,992.6454467773438,10.841023,10841.023 +28690,2025-03-10T15:15:27.286770-07:00,992.6123657226562,10.833978,10833.978 +28691,2025-03-10T15:15:38.125913-07:00,992.6256103515625,10.839143,10839.143 +28692,2025-03-10T15:15:48.961488-07:00,992.6365356445312,10.835575,10835.575 +28693,2025-03-10T15:15:59.812492-07:00,992.6299438476562,10.851004,10851.004 +28694,2025-03-10T15:16:10.645680-07:00,992.6113891601562,10.833188,10833.188 +28695,2025-03-10T15:16:21.485019-07:00,992.6378173828125,10.839339,10839.339 +28696,2025-03-10T15:16:32.313721-07:00,992.610107421875,10.828702,10828.702 +28697,2025-03-10T15:16:43.151871-07:00,992.61669921875,10.83815,10838.15 +28698,2025-03-10T15:16:53.995032-07:00,992.6312255859375,10.843161,10843.161 +28699,2025-03-10T15:17:04.824688-07:00,992.6444702148438,10.829656,10829.656 +28700,2025-03-10T15:17:15.669493-07:00,992.6520385742188,10.844805,10844.805 +28701,2025-03-10T15:17:26.506881-07:00,992.6444702148438,10.837388,10837.388 +28702,2025-03-10T15:17:37.342491-07:00,992.6189575195312,10.83561,10835.61 +28703,2025-03-10T15:17:48.176819-07:00,992.6388549804688,10.834328,10834.328 +28704,2025-03-10T15:17:59.019576-07:00,992.6609497070312,10.842757,10842.757 +28705,2025-03-10T15:18:09.859484-07:00,992.6123657226562,10.839908,10839.908 +28706,2025-03-10T15:18:20.693737-07:00,992.6189575195312,10.834253,10834.253 +28707,2025-03-10T15:18:31.529083-07:00,992.6543579101562,10.835346,10835.346 +28708,2025-03-10T15:18:42.365483-07:00,992.634521484375,10.8364,10836.4 +28709,2025-03-10T15:18:53.201874-07:00,992.6278686523438,10.836391,10836.391 +28710,2025-03-10T15:19:04.042154-07:00,992.647705078125,10.84028,10840.28 +28711,2025-03-10T15:19:14.874808-07:00,992.6632690429688,10.832654,10832.654 +28712,2025-03-10T15:19:25.707809-07:00,992.6235961914062,10.833001,10833.001 +28713,2025-03-10T15:19:36.538523-07:00,992.68408203125,10.830714,10830.714 +28714,2025-03-10T15:19:47.369476-07:00,992.6642456054688,10.830953,10830.953 +28715,2025-03-10T15:19:58.213255-07:00,992.630126953125,10.843779,10843.779 +28716,2025-03-10T15:20:09.045487-07:00,992.65234375,10.832232,10832.232 +28717,2025-03-10T15:20:19.884453-07:00,992.600341796875,10.838966,10838.966 +28718,2025-03-10T15:20:30.720693-07:00,992.5662231445312,10.83624,10836.24 +28719,2025-03-10T15:20:41.554726-07:00,992.64892578125,10.834033,10834.033 +28720,2025-03-10T15:20:52.394940-07:00,992.5973510742188,10.840214,10840.214 +28721,2025-03-10T15:21:03.236528-07:00,992.6049194335938,10.841588,10841.588 +28722,2025-03-10T15:21:14.076628-07:00,992.624755859375,10.8401,10840.1 +28723,2025-03-10T15:21:24.914495-07:00,992.611572265625,10.837867,10837.867 +28724,2025-03-10T15:21:35.759014-07:00,992.5599365234375,10.844519,10844.519 +28725,2025-03-10T15:21:46.595481-07:00,992.5652465820312,10.836467,10836.467 +28726,2025-03-10T15:21:57.431540-07:00,992.5675048828125,10.836059,10836.059 +28727,2025-03-10T15:22:08.274823-07:00,992.55859375,10.843283,10843.283 +28728,2025-03-10T15:22:19.118465-07:00,992.5599365234375,10.843642,10843.642 +28729,2025-03-10T15:22:29.956492-07:00,992.534423828125,10.838027,10838.027 +28730,2025-03-10T15:22:40.803491-07:00,992.5003662109375,10.846999,10846.999 +28731,2025-03-10T15:22:51.650553-07:00,992.52783203125,10.847062,10847.062 +28732,2025-03-10T15:23:02.492066-07:00,992.5357666015625,10.841513,10841.513 +28733,2025-03-10T15:23:13.336684-07:00,992.5410766601562,10.844618,10844.618 +28734,2025-03-10T15:23:24.184503-07:00,992.5357666015625,10.847819,10847.819 +28735,2025-03-10T15:23:35.025541-07:00,992.563232421875,10.841038,10841.038 +28736,2025-03-10T15:23:45.870722-07:00,992.5556030273438,10.845181,10845.181 +28737,2025-03-10T15:23:56.709747-07:00,992.5621948242188,10.839025,10839.025 +28738,2025-03-10T15:24:07.560205-07:00,992.5499877929688,10.850458,10850.458 +28739,2025-03-10T15:24:18.397559-07:00,992.5234985351562,10.837354,10837.354 +28740,2025-03-10T15:24:29.237737-07:00,992.5367431640625,10.840178,10840.178 +28741,2025-03-10T15:24:40.084494-07:00,992.5301513671875,10.846757,10846.757 +28742,2025-03-10T15:24:50.931790-07:00,992.55126953125,10.847296,10847.296 +28743,2025-03-10T15:25:01.770626-07:00,992.5291137695312,10.838836,10838.836 +28744,2025-03-10T15:25:12.616479-07:00,992.5225219726562,10.845853,10845.853 +28745,2025-03-10T15:25:23.461735-07:00,992.5181884765625,10.845256,10845.256 +28746,2025-03-10T15:25:34.305792-07:00,992.5314331054688,10.844057,10844.057 +28747,2025-03-10T15:25:45.142678-07:00,992.516845703125,10.836886,10836.886 +28748,2025-03-10T15:25:55.986487-07:00,992.4983520507812,10.843809,10843.809 +28749,2025-03-10T15:26:06.832469-07:00,992.545654296875,10.845982,10845.982 +28750,2025-03-10T15:26:17.671541-07:00,992.5314331054688,10.839072,10839.072 +28751,2025-03-10T15:26:28.519835-07:00,992.5337524414062,10.848294,10848.294 +28752,2025-03-10T15:26:39.375792-07:00,992.544677734375,10.855957,10855.957 +28753,2025-03-10T15:26:50.221947-07:00,992.5324096679688,10.846155,10846.155 +28754,2025-03-10T15:27:01.059482-07:00,992.5006103515625,10.837535,10837.535 +28755,2025-03-10T15:27:11.903951-07:00,992.5059204101562,10.844469,10844.469 +28756,2025-03-10T15:27:22.748075-07:00,992.540283203125,10.844124,10844.124 +28757,2025-03-10T15:27:33.596760-07:00,992.513916015625,10.848685,10848.685 +28758,2025-03-10T15:27:44.442817-07:00,992.5072021484375,10.846057,10846.057 +28759,2025-03-10T15:27:55.286488-07:00,992.5072021484375,10.843671,10843.671 +28760,2025-03-10T15:28:06.130727-07:00,992.53466796875,10.844239,10844.239 +28761,2025-03-10T15:28:16.974488-07:00,992.5359497070312,10.843761,10843.761 +28762,2025-03-10T15:28:27.812729-07:00,992.522705078125,10.838241,10838.241 +28763,2025-03-10T15:28:38.651533-07:00,992.5293579101562,10.838804,10838.804 +28764,2025-03-10T15:28:49.495104-07:00,992.522705078125,10.843571,10843.571 +28765,2025-03-10T15:29:00.344805-07:00,992.51708984375,10.849701,10849.701 +28766,2025-03-10T15:29:11.185039-07:00,992.51611328125,10.840234,10840.234 +28767,2025-03-10T15:29:22.021547-07:00,992.4906005859375,10.836508,10836.508 +28768,2025-03-10T15:29:32.863715-07:00,992.510498046875,10.842168,10842.168 +28769,2025-03-10T15:29:43.707492-07:00,992.4830322265625,10.843777,10843.777 +28770,2025-03-10T15:29:54.562631-07:00,992.481689453125,10.855139,10855.139 +28771,2025-03-10T15:30:05.407827-07:00,992.4763793945312,10.845196,10845.196 +28772,2025-03-10T15:30:16.254712-07:00,992.4906005859375,10.846885,10846.885 +28773,2025-03-10T15:30:27.091798-07:00,992.5048217773438,10.837086,10837.086 +28774,2025-03-10T15:30:37.941679-07:00,992.4972534179688,10.849881,10849.881 +28775,2025-03-10T15:30:48.789490-07:00,992.4642333984375,10.847811,10847.811 +28776,2025-03-10T15:30:59.643682-07:00,992.4784545898438,10.854192,10854.192 +28777,2025-03-10T15:31:10.490035-07:00,992.4784545898438,10.846353,10846.353 +28778,2025-03-10T15:31:21.329839-07:00,992.4598388671875,10.839804,10839.804 +28779,2025-03-10T15:31:32.171938-07:00,992.4820556640625,10.842099,10842.099 +28780,2025-03-10T15:31:43.015541-07:00,992.480712890625,10.843603,10843.603 +28781,2025-03-10T15:31:53.860749-07:00,992.4740600585938,10.845208,10845.208 +28782,2025-03-10T15:32:04.712527-07:00,992.480712890625,10.851778,10851.778 +28783,2025-03-10T15:32:15.560761-07:00,992.4533081054688,10.848234,10848.234 +28784,2025-03-10T15:32:26.410910-07:00,992.4533081054688,10.850149,10850.149 +28785,2025-03-10T15:32:37.252658-07:00,992.4410400390625,10.841748,10841.748 +28786,2025-03-10T15:32:48.097547-07:00,992.45556640625,10.844889,10844.889 +28787,2025-03-10T15:32:58.952155-07:00,992.443603515625,10.854608,10854.608 +28788,2025-03-10T15:33:09.794662-07:00,992.4501342773438,10.842507,10842.507 +28789,2025-03-10T15:33:20.647698-07:00,992.4302978515625,10.853036,10853.036 +28790,2025-03-10T15:33:31.495919-07:00,992.4357299804688,10.848221,10848.221 +28791,2025-03-10T15:33:42.335746-07:00,992.4525146484375,10.839827,10839.827 +28792,2025-03-10T15:33:53.189940-07:00,992.44482421875,10.854194,10854.194 +28793,2025-03-10T15:34:04.044639-07:00,992.4249877929688,10.854699,10854.699 +28794,2025-03-10T15:34:14.891905-07:00,992.4051513671875,10.847266,10847.266 +28795,2025-03-10T15:34:25.742750-07:00,992.4193725585938,10.850845,10850.845 +28796,2025-03-10T15:34:36.595965-07:00,992.4249877929688,10.853215,10853.215 +28797,2025-03-10T15:34:47.439490-07:00,992.412841796875,10.843525,10843.525 +28798,2025-03-10T15:34:58.291744-07:00,992.4349365234375,10.852254,10852.254 +28799,2025-03-10T15:35:09.137493-07:00,992.407470703125,10.845749,10845.749 +28800,2025-03-10T15:35:19.978810-07:00,992.4349365234375,10.841317,10841.317 +28801,2025-03-10T15:35:30.824667-07:00,992.407470703125,10.845857,10845.857 +28802,2025-03-10T15:35:41.673709-07:00,992.3810424804688,10.849042,10849.042 +28803,2025-03-10T15:35:52.522489-07:00,992.3796997070312,10.84878,10848.78 +28804,2025-03-10T15:36:03.365641-07:00,992.3886108398438,10.843152,10843.152 +28805,2025-03-10T15:36:14.218491-07:00,992.4031372070312,10.85285,10852.85 +28806,2025-03-10T15:36:25.061550-07:00,992.3687744140625,10.843059,10843.059 +28807,2025-03-10T15:36:35.904996-07:00,992.3965454101562,10.843446,10843.446 +28808,2025-03-10T15:36:46.747490-07:00,992.3997802734375,10.842494,10842.494 +28809,2025-03-10T15:36:57.591487-07:00,992.3922119140625,10.843997,10843.997 +28810,2025-03-10T15:37:08.435486-07:00,992.3865356445312,10.843999,10843.999 +28811,2025-03-10T15:37:19.277069-07:00,992.3987426757812,10.841583,10841.583 +28812,2025-03-10T15:37:30.130821-07:00,992.4064331054688,10.853752,10853.752 +28813,2025-03-10T15:37:40.975777-07:00,992.3799438476562,10.844956,10844.956 +28814,2025-03-10T15:37:51.820484-07:00,992.3888549804688,10.844707,10844.707 +28815,2025-03-10T15:38:02.669757-07:00,992.4099731445312,10.849273,10849.273 +28816,2025-03-10T15:38:13.516649-07:00,992.415283203125,10.846892,10846.892 +28817,2025-03-10T15:38:24.359708-07:00,992.4109497070312,10.843059,10843.059 +28818,2025-03-10T15:38:35.214214-07:00,992.4176025390625,10.854506,10854.506 +28819,2025-03-10T15:38:46.056649-07:00,992.3990478515625,10.842435,10842.435 +28820,2025-03-10T15:38:56.909995-07:00,992.4065551757812,10.853346,10853.346 +28821,2025-03-10T15:39:07.754055-07:00,992.3990478515625,10.84406,10844.06 +28822,2025-03-10T15:39:18.608666-07:00,992.4000244140625,10.854611,10854.611 +28823,2025-03-10T15:39:29.461484-07:00,992.43408203125,10.852818,10852.818 +28824,2025-03-10T15:39:40.308491-07:00,992.408935546875,10.847007,10847.007 +28825,2025-03-10T15:39:51.149490-07:00,992.4154663085938,10.840999,10840.999 +28826,2025-03-10T15:40:01.991798-07:00,992.4098510742188,10.842308,10842.308 +28827,2025-03-10T15:40:12.836781-07:00,992.4332885742188,10.844983,10844.983 +28828,2025-03-10T15:40:23.679485-07:00,992.4584350585938,10.842704,10842.704 +28829,2025-03-10T15:40:34.531691-07:00,992.4508666992188,10.852206,10852.206 +28830,2025-03-10T15:40:45.376764-07:00,992.4385986328125,10.845073,10845.073 +28831,2025-03-10T15:40:56.231100-07:00,992.44091796875,10.854336,10854.336 +28832,2025-03-10T15:41:07.075041-07:00,992.3912353515625,10.843941,10843.941 +28833,2025-03-10T15:41:17.916669-07:00,992.39892578125,10.841628,10841.628 +28834,2025-03-10T15:41:28.759487-07:00,992.4157104492188,10.842818,10842.818 +28835,2025-03-10T15:41:39.614484-07:00,992.3803100585938,10.854997,10854.997 +28836,2025-03-10T15:41:50.454716-07:00,992.3826293945312,10.840232,10840.232 +28837,2025-03-10T15:42:01.303686-07:00,992.3826293945312,10.84897,10848.97 +28838,2025-03-10T15:42:12.142792-07:00,992.3968505859375,10.839106,10839.106 +28839,2025-03-10T15:42:22.993353-07:00,992.3584594726562,10.850561,10850.561 +28840,2025-03-10T15:42:33.838654-07:00,992.3726806640625,10.845301,10845.301 +28841,2025-03-10T15:42:44.696550-07:00,992.351806640625,10.857896,10857.896 +28842,2025-03-10T15:42:55.538741-07:00,992.351806640625,10.842191,10842.191 +28843,2025-03-10T15:43:06.393013-07:00,992.3792114257812,10.854272,10854.272 +28844,2025-03-10T15:43:17.236767-07:00,992.3660278320312,10.843754,10843.754 +28845,2025-03-10T15:43:28.093842-07:00,992.292236328125,10.857075,10857.075 +28846,2025-03-10T15:43:38.944928-07:00,992.3395385742188,10.851086,10851.086 +28847,2025-03-10T15:43:49.788774-07:00,992.3474731445312,10.843846,10843.846 +28848,2025-03-10T15:44:00.643523-07:00,992.3197021484375,10.854749,10854.749 +28849,2025-03-10T15:44:11.481789-07:00,992.3263549804688,10.838266,10838.266 +28850,2025-03-10T15:44:22.332491-07:00,992.3099975585938,10.850702,10850.702 +28851,2025-03-10T15:44:33.184482-07:00,992.2954711914062,10.851991,10851.991 +28852,2025-03-10T15:44:44.033754-07:00,992.2954711914062,10.849272,10849.272 +28853,2025-03-10T15:44:54.878493-07:00,992.3021850585938,10.844739,10844.739 +28854,2025-03-10T15:45:05.737489-07:00,992.28125,10.858996,10858.996 +28855,2025-03-10T15:45:16.578496-07:00,992.2977905273438,10.841007,10841.007 +28856,2025-03-10T15:45:27.427536-07:00,992.3043823242188,10.84904,10849.04 +28857,2025-03-10T15:45:38.277808-07:00,992.3057250976562,10.850272,10850.272 +28858,2025-03-10T15:45:49.119503-07:00,992.2845458984375,10.841695,10841.695 +28859,2025-03-10T15:45:59.974205-07:00,992.285888671875,10.854702,10854.702 +28860,2025-03-10T15:46:10.818493-07:00,992.275634765625,10.844288,10844.288 +28861,2025-03-10T15:46:21.666749-07:00,992.257080078125,10.848256,10848.256 +28862,2025-03-10T15:46:32.504210-07:00,992.2713012695312,10.837461,10837.461 +28863,2025-03-10T15:46:43.345953-07:00,992.2581176757812,10.841743,10841.743 +28864,2025-03-10T15:46:54.200095-07:00,992.239501953125,10.854142,10854.142 +28865,2025-03-10T15:47:05.043306-07:00,992.25048828125,10.843211,10843.211 +28866,2025-03-10T15:47:15.881981-07:00,992.23291015625,10.838675,10838.675 +28867,2025-03-10T15:47:26.728494-07:00,992.23828125,10.846513,10846.513 +28868,2025-03-10T15:47:37.583820-07:00,992.239501953125,10.855326,10855.326 +28869,2025-03-10T15:47:48.429254-07:00,992.2679443359375,10.845434,10845.434 +28870,2025-03-10T15:47:59.266711-07:00,992.2240600585938,10.837457,10837.457 +28871,2025-03-10T15:48:10.123530-07:00,992.2613525390625,10.856819,10856.819 +28872,2025-03-10T15:48:20.970490-07:00,992.2064208984375,10.84696,10846.96 +28873,2025-03-10T15:48:31.815494-07:00,992.2216186523438,10.845004,10845.004 +28874,2025-03-10T15:48:42.656049-07:00,992.1799926757812,10.840555,10840.555 +28875,2025-03-10T15:48:53.511481-07:00,992.1865844726562,10.855432,10855.432 +28876,2025-03-10T15:49:04.352113-07:00,992.23486328125,10.840632,10840.632 +28877,2025-03-10T15:49:15.196490-07:00,992.228271484375,10.844377,10844.377 +28878,2025-03-10T15:49:26.038476-07:00,992.21630859375,10.841986,10841.986 +28879,2025-03-10T15:49:36.891768-07:00,992.1875610351562,10.853292,10853.292 +28880,2025-03-10T15:49:47.741776-07:00,992.2503662109375,10.850008,10850.008 +28881,2025-03-10T15:49:58.585955-07:00,992.2185668945312,10.844179,10844.179 +28882,2025-03-10T15:50:09.432811-07:00,992.2106323242188,10.846856,10846.856 +28883,2025-03-10T15:50:20.278924-07:00,992.2119750976562,10.846113,10846.113 +28884,2025-03-10T15:50:31.136885-07:00,992.2173461914062,10.857961,10857.961 +28885,2025-03-10T15:50:41.986851-07:00,992.2318115234375,10.849966,10849.966 +28886,2025-03-10T15:50:52.827702-07:00,992.1854858398438,10.840851,10840.851 +28887,2025-03-10T15:51:03.681644-07:00,992.1775512695312,10.853942,10853.942 +28888,2025-03-10T15:51:14.527756-07:00,992.19970703125,10.846112,10846.112 +28889,2025-03-10T15:51:25.373744-07:00,992.2195434570312,10.845988,10845.988 +28890,2025-03-10T15:51:36.223482-07:00,992.2195434570312,10.849738,10849.738 +28891,2025-03-10T15:51:47.068742-07:00,992.1864624023438,10.84526,10845.26 +28892,2025-03-10T15:51:57.912486-07:00,992.1943969726562,10.843744,10843.744 +28893,2025-03-10T15:52:08.768484-07:00,992.1953125,10.855998,10855.998 +28894,2025-03-10T15:52:19.613006-07:00,992.2151489257812,10.844522,10844.522 +28895,2025-03-10T15:52:30.467491-07:00,992.2164916992188,10.854485,10854.485 +28896,2025-03-10T15:52:41.309617-07:00,992.2240600585938,10.842126,10842.126 +28897,2025-03-10T15:52:52.166343-07:00,992.217529296875,10.856726,10856.726 +28898,2025-03-10T15:53:03.015492-07:00,992.1900024414062,10.849149,10849.149 +28899,2025-03-10T15:53:13.867487-07:00,992.2042236328125,10.851995,10851.995 +28900,2025-03-10T15:53:24.711808-07:00,992.1989135742188,10.844321,10844.321 +28901,2025-03-10T15:53:35.563809-07:00,992.1998291015625,10.852001,10852.001 +28902,2025-03-10T15:53:46.402490-07:00,992.2276611328125,10.838681,10838.681 +28903,2025-03-10T15:53:57.252630-07:00,992.2276611328125,10.85014,10850.14 +28904,2025-03-10T15:54:08.095827-07:00,992.240966796875,10.843197,10843.197 +28905,2025-03-10T15:54:18.942853-07:00,992.1945190429688,10.847026,10847.026 +28906,2025-03-10T15:54:29.798878-07:00,992.2232666015625,10.856025,10856.025 +28907,2025-03-10T15:54:40.641790-07:00,992.2153930664062,10.842912,10842.912 +28908,2025-03-10T15:54:51.497364-07:00,992.2100830078125,10.855574,10855.574 +28909,2025-03-10T15:55:02.349650-07:00,992.208740234375,10.852286,10852.286 +28910,2025-03-10T15:55:13.193487-07:00,992.2167358398438,10.843837,10843.837 +28911,2025-03-10T15:55:24.039671-07:00,992.1978149414062,10.846184,10846.184 +28912,2025-03-10T15:55:34.879522-07:00,992.2243041992188,10.839851,10839.851 +28913,2025-03-10T15:55:45.724492-07:00,992.1889038085938,10.84497,10844.97 +28914,2025-03-10T15:55:56.571705-07:00,992.2299194335938,10.847213,10847.213 +28915,2025-03-10T15:56:07.409689-07:00,992.23095703125,10.837984,10837.984 +28916,2025-03-10T15:56:18.264555-07:00,992.2189331054688,10.854866,10854.866 +28917,2025-03-10T15:56:29.106498-07:00,992.204345703125,10.841943,10841.943 +28918,2025-03-10T15:56:39.949969-07:00,992.2132568359375,10.843471,10843.471 +28919,2025-03-10T15:56:50.791988-07:00,992.232177734375,10.842019,10842.019 +28920,2025-03-10T15:57:01.631486-07:00,992.244140625,10.839498,10839.498 +28921,2025-03-10T15:57:12.484716-07:00,992.23095703125,10.85323,10853.23 +28922,2025-03-10T15:57:23.323486-07:00,992.2374877929688,10.83877,10838.77 +28923,2025-03-10T15:57:34.176823-07:00,992.232177734375,10.853337,10853.337 +28924,2025-03-10T15:57:45.023482-07:00,992.232177734375,10.846659,10846.659 +28925,2025-03-10T15:57:55.875201-07:00,992.244140625,10.851719,10851.719 +28926,2025-03-10T15:58:06.723775-07:00,992.25732421875,10.848574,10848.574 +28927,2025-03-10T15:58:17.565921-07:00,992.23095703125,10.842146,10842.146 +28928,2025-03-10T15:58:28.408591-07:00,992.2653198242188,10.84267,10842.67 +28929,2025-03-10T15:58:39.258490-07:00,992.23876953125,10.849899,10849.899 +28930,2025-03-10T15:58:50.108727-07:00,992.2431030273438,10.850237,10850.237 +28931,2025-03-10T15:59:00.950487-07:00,992.2520141601562,10.84176,10841.76 +28932,2025-03-10T15:59:11.798041-07:00,992.2639770507812,10.847554,10847.554 +28933,2025-03-10T15:59:22.647844-07:00,992.2904663085938,10.849803,10849.803 +28934,2025-03-10T15:59:33.485730-07:00,992.2564086914062,10.837886,10837.886 +28935,2025-03-10T15:59:44.329632-07:00,992.2232666015625,10.843902,10843.902 +28936,2025-03-10T15:59:55.176819-07:00,992.2639770507812,10.847187,10847.187 +28937,2025-03-10T16:00:06.021774-07:00,992.23095703125,10.844955,10844.955 +28938,2025-03-10T16:00:16.865811-07:00,992.25732421875,10.844037,10844.037 +28939,2025-03-10T16:00:27.705765-07:00,992.2520141601562,10.839954,10839.954 +28940,2025-03-10T16:00:38.547800-07:00,992.23876953125,10.842035,10842.035 +28941,2025-03-10T16:00:49.398827-07:00,992.2520141601562,10.851027,10851.027 +28942,2025-03-10T16:01:00.242065-07:00,992.2586669921875,10.843238,10843.238 +28943,2025-03-10T16:01:11.089864-07:00,992.2639770507812,10.847799,10847.799 +28944,2025-03-10T16:01:21.938621-07:00,992.2653198242188,10.848757,10848.757 +28945,2025-03-10T16:01:32.781493-07:00,992.2067260742188,10.842872,10842.872 +28946,2025-03-10T16:01:43.630488-07:00,992.2176513671875,10.848995,10848.995 +28947,2025-03-10T16:01:54.475494-07:00,992.23974609375,10.845006,10845.006 +28948,2025-03-10T16:02:05.315808-07:00,992.2410888671875,10.840314,10840.314 +28949,2025-03-10T16:02:16.163604-07:00,992.2000732421875,10.847796,10847.796 +28950,2025-03-10T16:02:27.013529-07:00,992.22216796875,10.849925,10849.925 +28951,2025-03-10T16:02:37.876821-07:00,992.214599609375,10.863292,10863.292 +28952,2025-03-10T16:02:48.722540-07:00,992.2410888671875,10.845719,10845.719 +28953,2025-03-10T16:02:59.565748-07:00,992.2156372070312,10.843208,10843.208 +28954,2025-03-10T16:03:10.422570-07:00,992.2199096679688,10.856822,10856.822 +28955,2025-03-10T16:03:21.277497-07:00,992.2067260742188,10.854927,10854.927 +28956,2025-03-10T16:03:32.123484-07:00,992.2067260742188,10.845987,10845.987 +28957,2025-03-10T16:03:42.980877-07:00,992.1802368164062,10.857393,10857.393 +28958,2025-03-10T16:03:53.824821-07:00,992.2079467773438,10.843944,10843.944 +28959,2025-03-10T16:04:04.665794-07:00,992.2000732421875,10.840973,10840.973 +28960,2025-03-10T16:04:15.514444-07:00,992.2089233398438,10.84865,10848.65 +28961,2025-03-10T16:04:26.356468-07:00,992.2079467773438,10.842024,10842.024 +28962,2025-03-10T16:04:37.208465-07:00,992.1758422851562,10.851997,10851.997 +28963,2025-03-10T16:04:48.060918-07:00,992.2089233398438,10.852453,10852.453 +28964,2025-03-10T16:04:58.907484-07:00,992.2023315429688,10.846566,10846.566 +28965,2025-03-10T16:05:09.756535-07:00,992.1537475585938,10.849051,10849.051 +28966,2025-03-10T16:05:20.606492-07:00,992.19580078125,10.849957,10849.957 +28967,2025-03-10T16:05:31.444304-07:00,992.1815795898438,10.837812,10837.812 +28968,2025-03-10T16:05:42.296823-07:00,992.1868896484375,10.852519,10852.519 +28969,2025-03-10T16:05:53.244923-07:00,992.166015625,10.9481,10948.1 +28970,2025-03-10T16:06:04.088213-07:00,992.1383056640625,10.84329,10843.29 +28971,2025-03-10T16:06:14.926223-07:00,992.1934204101562,10.83801,10838.01 +28972,2025-03-10T16:06:25.773047-07:00,992.177978515625,10.846824,10846.824 +28973,2025-03-10T16:06:36.610880-07:00,992.204345703125,10.837833,10837.833 +28974,2025-03-10T16:06:47.463881-07:00,992.1726684570312,10.853001,10853.001 +28975,2025-03-10T16:06:58.302884-07:00,992.191162109375,10.839003,10839.003 +28976,2025-03-10T16:07:09.145887-07:00,992.1925048828125,10.843003,10843.003 +28977,2025-03-10T16:07:19.995865-07:00,992.1934204101562,10.849978,10849.978 +28978,2025-03-10T16:07:30.850003-07:00,992.1802368164062,10.854138,10854.138 +28979,2025-03-10T16:07:41.699274-07:00,992.17919921875,10.849271,10849.271 +28980,2025-03-10T16:07:52.534060-07:00,992.1461791992188,10.834786,10834.786 +28981,2025-03-10T16:08:03.378883-07:00,992.1947021484375,10.844823,10844.823 +28982,2025-03-10T16:08:14.227886-07:00,992.16162109375,10.849003,10849.003 +28983,2025-03-10T16:08:25.070889-07:00,992.1670532226562,10.843003,10843.003 +28984,2025-03-10T16:08:35.924018-07:00,992.1824951171875,10.853129,10853.129 +28985,2025-03-10T16:08:46.761548-07:00,992.1726684570312,10.83753,10837.53 +28986,2025-03-10T16:08:57.599958-07:00,992.16162109375,10.83841,10838.41 +28987,2025-03-10T16:09:08.450074-07:00,992.1881103515625,10.850116,10850.116 +28988,2025-03-10T16:09:19.296869-07:00,992.1603393554688,10.846795,10846.795 +28989,2025-03-10T16:09:30.141176-07:00,992.169189453125,10.844307,10844.307 +28990,2025-03-10T16:09:40.989475-07:00,992.155029296875,10.848299,10848.299 +28991,2025-03-10T16:09:51.827891-07:00,992.156005859375,10.838416,10838.416 +28992,2025-03-10T16:10:02.682919-07:00,992.1484375,10.855028,10855.028 +28993,2025-03-10T16:10:13.524518-07:00,992.155029296875,10.841599,10841.599 +28994,2025-03-10T16:10:24.367673-07:00,992.1437377929688,10.843155,10843.155 +28995,2025-03-10T16:10:35.217986-07:00,992.16162109375,10.850313,10850.313 +28996,2025-03-10T16:10:46.076292-07:00,992.1758422851562,10.858306,10858.306 +28997,2025-03-10T16:10:56.919496-07:00,992.16162109375,10.843204,10843.204 +28998,2025-03-10T16:11:07.757401-07:00,992.1626586914062,10.837905,10837.905 +28999,2025-03-10T16:11:18.600884-07:00,992.1484375,10.843483,10843.483 +29000,2025-03-10T16:11:29.445214-07:00,992.1824951171875,10.84433,10844.33 +29001,2025-03-10T16:11:40.287673-07:00,992.1815795898438,10.842459,10842.459 +29002,2025-03-10T16:11:51.134169-07:00,992.1802368164062,10.846496,10846.496 +29003,2025-03-10T16:12:01.971886-07:00,992.2156372070312,10.837717,10837.717 +29004,2025-03-10T16:12:12.816881-07:00,992.173583984375,10.844995,10844.995 +29005,2025-03-10T16:12:23.666223-07:00,992.1990356445312,10.849342,10849.342 +29006,2025-03-10T16:12:34.506886-07:00,992.1802368164062,10.840663,10840.663 +29007,2025-03-10T16:12:45.341117-07:00,992.1702880859375,10.834231,10834.231 +29008,2025-03-10T16:12:56.182888-07:00,992.18359375,10.841771,10841.771 +29009,2025-03-10T16:13:07.027297-07:00,992.2056884765625,10.844409,10844.409 +29010,2025-03-10T16:13:17.864043-07:00,992.177001953125,10.836746,10836.746 +29011,2025-03-10T16:13:28.705874-07:00,992.15576171875,10.841831,10841.831 +29012,2025-03-10T16:13:39.543278-07:00,992.1757202148438,10.837404,10837.404 +29013,2025-03-10T16:13:50.386678-07:00,992.1614990234375,10.8434,10843.4 +29014,2025-03-10T16:14:01.231887-07:00,992.1799926757812,10.845209,10845.209 +29015,2025-03-10T16:14:12.073106-07:00,992.153564453125,10.841219,10841.219 +29016,2025-03-10T16:14:22.913890-07:00,992.16015625,10.840784,10840.784 +29017,2025-03-10T16:14:33.753249-07:00,992.1923217773438,10.839359,10839.359 +29018,2025-03-10T16:14:44.591194-07:00,992.1989135742188,10.837945,10837.945 +29019,2025-03-10T16:14:55.423231-07:00,992.1866455078125,10.832037,10832.037 +29020,2025-03-10T16:15:06.260215-07:00,992.1910400390625,10.836984,10836.984 +29021,2025-03-10T16:15:17.098881-07:00,992.1976318359375,10.838666,10838.666 +29022,2025-03-10T16:15:27.946591-07:00,992.1966552734375,10.84771,10847.71 +29023,2025-03-10T16:15:38.772051-07:00,992.2086181640625,10.82546,10825.46 +29024,2025-03-10T16:15:49.609861-07:00,992.2129516601562,10.83781,10837.81 +29025,2025-03-10T16:16:00.447493-07:00,992.2151489257812,10.837632,10837.632 +29026,2025-03-10T16:16:11.288626-07:00,992.2340698242188,10.841133,10841.133 +29027,2025-03-10T16:16:22.122020-07:00,992.2218627929688,10.833394,10833.394 +29028,2025-03-10T16:16:32.969041-07:00,992.2173461914062,10.847021,10847.021 +29029,2025-03-10T16:16:43.808202-07:00,992.248291015625,10.839161,10839.161 +29030,2025-03-10T16:17:05.492564-07:00,992.2318115234375,21.684362,21684.362 +29031,2025-03-10T16:17:16.334377-07:00,992.1854858398438,10.841813,10841.813 +29032,2025-03-10T16:17:27.163883-07:00,992.2185668945312,10.829506,10829.506 +29033,2025-03-10T16:17:37.998903-07:00,992.203125,10.83502,10835.02 +29034,2025-03-10T16:17:48.838405-07:00,992.2216186523438,10.839502,10839.502 +29035,2025-03-10T16:17:59.681336-07:00,992.1819458007812,10.842931,10842.931 +29036,2025-03-10T16:18:10.529554-07:00,992.2008056640625,10.848218,10848.218 +29037,2025-03-10T16:18:21.363916-07:00,992.228271484375,10.834362,10834.362 +29038,2025-03-10T16:18:32.211151-07:00,992.2073974609375,10.847235,10847.235 +29039,2025-03-10T16:18:43.041933-07:00,992.2064208984375,10.830782,10830.782 +29040,2025-03-10T16:18:53.888882-07:00,992.2528076171875,10.846949,10846.949 +29041,2025-03-10T16:19:04.718115-07:00,992.1698608398438,10.829233,10829.233 +29042,2025-03-10T16:19:15.555934-07:00,992.2240600585938,10.837819,10837.819 +29043,2025-03-10T16:19:26.397125-07:00,992.1953125,10.841191,10841.191 +29044,2025-03-10T16:19:37.235920-07:00,992.2095336914062,10.838795,10838.795 +29045,2025-03-10T16:19:48.066883-07:00,992.202880859375,10.830963,10830.963 +29046,2025-03-10T16:19:58.908964-07:00,992.1939697265625,10.842081,10842.081 +29047,2025-03-10T16:20:09.747888-07:00,992.1797485351562,10.838924,10838.924 +29048,2025-03-10T16:20:20.585890-07:00,992.1851806640625,10.838002,10838.002 +29049,2025-03-10T16:20:31.426869-07:00,992.1797485351562,10.840979,10840.979 +29050,2025-03-10T16:20:42.266003-07:00,992.1873168945312,10.839134,10839.134 +29051,2025-03-10T16:20:53.103750-07:00,992.1807861328125,10.837747,10837.747 +29052,2025-03-10T16:21:03.933935-07:00,992.1864013671875,10.830185,10830.185 +29053,2025-03-10T16:21:14.783926-07:00,992.1665649414062,10.849991,10849.991 +29054,2025-03-10T16:21:25.615213-07:00,992.2050170898438,10.831287,10831.287 +29055,2025-03-10T16:21:36.457497-07:00,992.171875,10.842284,10842.284 +29056,2025-03-10T16:21:47.290018-07:00,992.1453857421875,10.832521,10832.521 +29057,2025-03-10T16:21:58.133683-07:00,992.1851806640625,10.843665,10843.665 +29058,2025-03-10T16:22:08.973837-07:00,992.1709594726562,10.840154,10840.154 +29059,2025-03-10T16:22:19.813335-07:00,992.1709594726562,10.839498,10839.498 +29060,2025-03-10T16:22:30.651128-07:00,992.165283203125,10.837793,10837.793 +29061,2025-03-10T16:22:41.483205-07:00,992.1709594726562,10.832077,10832.077 +29062,2025-03-10T16:22:52.325092-07:00,992.189453125,10.841887,10841.887 +29063,2025-03-10T16:23:03.167884-07:00,992.189453125,10.842792,10842.792 +29064,2025-03-10T16:23:14.013806-07:00,992.1355590820312,10.845922,10845.922 +29065,2025-03-10T16:23:24.849607-07:00,992.1629638671875,10.835801,10835.801 +29066,2025-03-10T16:23:35.692887-07:00,992.1709594726562,10.84328,10843.28 +29067,2025-03-10T16:23:46.527947-07:00,992.1431274414062,10.83506,10835.06 +29068,2025-03-10T16:23:57.376201-07:00,992.1143798828125,10.848254,10848.254 +29069,2025-03-10T16:24:08.212885-07:00,992.1355590820312,10.836684,10836.684 +29070,2025-03-10T16:24:19.041092-07:00,992.1398315429688,10.828207,10828.207 +29071,2025-03-10T16:24:29.885214-07:00,992.1620483398438,10.844122,10844.122 +29072,2025-03-10T16:24:40.720871-07:00,992.1564331054688,10.835657,10835.657 +29073,2025-03-10T16:24:51.557173-07:00,992.1620483398438,10.836302,10836.302 +29074,2025-03-10T16:25:02.397296-07:00,992.1642456054688,10.840123,10840.123 +29075,2025-03-10T16:25:13.228215-07:00,992.1487426757812,10.830919,10830.919 +29076,2025-03-10T16:25:24.071876-07:00,992.1046752929688,10.843661,10843.661 +29077,2025-03-10T16:25:34.915194-07:00,992.1629638671875,10.843318,10843.318 +29078,2025-03-10T16:25:45.752100-07:00,992.1851806640625,10.836906,10836.906 +29079,2025-03-10T16:25:56.588880-07:00,992.1785278320312,10.83678,10836.78 +29080,2025-03-10T16:26:07.432869-07:00,992.1312255859375,10.843989,10843.989 +29081,2025-03-10T16:26:18.277634-07:00,992.173095703125,10.844765,10844.765 +29082,2025-03-10T16:26:29.112108-07:00,992.1312255859375,10.834474,10834.474 +29083,2025-03-10T16:26:39.962252-07:00,992.1046752929688,10.850144,10850.144 +29084,2025-03-10T16:26:50.803882-07:00,992.1387329101562,10.84163,10841.63 +29085,2025-03-10T16:27:01.644341-07:00,992.111328125,10.840459,10840.459 +29086,2025-03-10T16:27:12.489741-07:00,992.1268920898438,10.8454,10845.4 +29087,2025-03-10T16:27:23.321935-07:00,992.1322021484375,10.832194,10832.194 +29088,2025-03-10T16:27:34.161194-07:00,992.1046752929688,10.839259,10839.259 +29089,2025-03-10T16:27:44.999098-07:00,992.1179809570312,10.837904,10837.904 +29090,2025-03-10T16:27:55.835878-07:00,992.1255493164062,10.83678,10836.78 +29091,2025-03-10T16:28:06.677215-07:00,992.1585693359375,10.841337,10841.337 +29092,2025-03-10T16:28:17.516257-07:00,992.146728515625,10.839042,10839.042 +29093,2025-03-10T16:28:28.349101-07:00,992.1365356445312,10.832844,10832.844 +29094,2025-03-10T16:28:39.201704-07:00,992.1609497070312,10.852603,10852.603 +29095,2025-03-10T16:28:50.041186-07:00,992.111328125,10.839482,10839.482 +29096,2025-03-10T16:29:00.884078-07:00,992.12451171875,10.842892,10842.892 +29097,2025-03-10T16:29:11.726886-07:00,992.1034545898438,10.842808,10842.808 +29098,2025-03-10T16:29:22.569876-07:00,992.0914916992188,10.84299,10842.99 +29099,2025-03-10T16:29:33.407457-07:00,992.0848388671875,10.837581,10837.581 +29100,2025-03-10T16:29:55.078888-07:00,992.0826416015625,21.671431,21671.431 +29101,2025-03-10T16:30:05.913205-07:00,992.1365356445312,10.834317,10834.317 +29102,2025-03-10T16:30:16.758051-07:00,992.11572265625,10.844846,10844.846 +29103,2025-03-10T16:30:27.584125-07:00,992.1090698242188,10.826074,10826.074 +29104,2025-03-10T16:30:38.426219-07:00,992.0826416015625,10.842094,10842.094 +29105,2025-03-10T16:30:49.260865-07:00,992.0879516601562,10.834646,10834.646 +29106,2025-03-10T16:31:00.094168-07:00,992.075927734375,10.833303,10833.303 +29107,2025-03-10T16:31:10.938199-07:00,992.1143798828125,10.844031,10844.031 +29108,2025-03-10T16:31:21.769188-07:00,992.0716552734375,10.830989,10830.989 +29109,2025-03-10T16:31:32.613128-07:00,992.0958862304688,10.84394,10843.94 +29110,2025-03-10T16:31:43.446166-07:00,992.0892333984375,10.833038,10833.038 +29111,2025-03-10T16:31:54.284883-07:00,992.0968627929688,10.838717,10838.717 +29112,2025-03-10T16:32:05.124897-07:00,992.0914916992188,10.840014,10840.014 +29113,2025-03-10T16:32:15.967986-07:00,992.063720703125,10.843089,10843.089 +29114,2025-03-10T16:32:26.806940-07:00,992.0482788085938,10.838954,10838.954 +29115,2025-03-10T16:32:37.648172-07:00,992.1034545898438,10.841232,10841.232 +29116,2025-03-10T16:32:48.486876-07:00,992.0901489257812,10.838704,10838.704 +29117,2025-03-10T16:32:59.323609-07:00,992.123291015625,10.836733,10836.733 +29118,2025-03-10T16:33:10.175653-07:00,992.1322021484375,10.852044,10852.044 +29119,2025-03-10T16:33:21.009854-07:00,992.1387329101562,10.834201,10834.201 +29120,2025-03-10T16:33:31.855884-07:00,992.1387329101562,10.84603,10846.03 +29121,2025-03-10T16:33:42.695429-07:00,992.1387329101562,10.839545,10839.545 +29122,2025-03-10T16:33:53.534973-07:00,992.1443481445312,10.839544,10839.544 +29123,2025-03-10T16:34:04.378271-07:00,992.1312255859375,10.843298,10843.298 +29124,2025-03-10T16:34:15.219651-07:00,992.1322021484375,10.84138,10841.38 +29125,2025-03-10T16:34:26.056354-07:00,992.118896484375,10.836703,10836.703 +29126,2025-03-10T16:34:36.893862-07:00,992.1268920898438,10.837508,10837.508 +29127,2025-03-10T16:34:47.738889-07:00,992.1268920898438,10.845027,10845.027 +29128,2025-03-10T16:34:58.580284-07:00,992.1202392578125,10.841395,10841.395 +29129,2025-03-10T16:35:09.417927-07:00,992.1290893554688,10.837643,10837.643 +29130,2025-03-10T16:35:20.259887-07:00,992.1146240234375,10.84196,10841.96 +29131,2025-03-10T16:35:31.097943-07:00,992.1026611328125,10.838056,10838.056 +29132,2025-03-10T16:35:41.929880-07:00,992.115966796875,10.831937,10831.937 +29133,2025-03-10T16:35:52.764109-07:00,992.142333984375,10.834229,10834.229 +29134,2025-03-10T16:36:03.600245-07:00,992.14892578125,10.836136,10836.136 +29135,2025-03-10T16:36:14.441194-07:00,992.1512451171875,10.840949,10840.949 +29136,2025-03-10T16:36:25.277013-07:00,992.1710815429688,10.835819,10835.819 +29137,2025-03-10T16:36:36.112256-07:00,992.1644287109375,10.835243,10835.243 +29138,2025-03-10T16:36:46.939133-07:00,992.1578369140625,10.826877,10826.877 +29139,2025-03-10T16:36:57.777034-07:00,992.1512451171875,10.837901,10837.901 +29140,2025-03-10T16:37:08.612257-07:00,992.1720581054688,10.835223,10835.223 +29141,2025-03-10T16:37:19.463025-07:00,992.1588134765625,10.850768,10850.768 +29142,2025-03-10T16:37:30.297236-07:00,992.143310546875,10.834211,10834.211 +29143,2025-03-10T16:37:41.136874-07:00,992.0960083007812,10.839638,10839.638 +29144,2025-03-10T16:37:51.970664-07:00,992.1644287109375,10.83379,10833.79 +29145,2025-03-10T16:38:02.813925-07:00,992.1654663085938,10.843261,10843.261 +29146,2025-03-10T16:38:13.649055-07:00,992.17333984375,10.83513,10835.13 +29147,2025-03-10T16:38:24.485283-07:00,992.1865844726562,10.836228,10836.228 +29148,2025-03-10T16:38:35.322882-07:00,992.2008056640625,10.837599,10837.599 +29149,2025-03-10T16:38:46.159760-07:00,992.2073974609375,10.836878,10836.878 +29150,2025-03-10T16:38:56.997021-07:00,992.167724609375,10.837261,10837.261 +29151,2025-03-10T16:39:07.850003-07:00,992.1865844726562,10.852982,10852.982 +29152,2025-03-10T16:39:18.684887-07:00,992.1875610351562,10.834884,10834.884 +29153,2025-03-10T16:39:29.531959-07:00,992.2206420898438,10.847072,10847.072 +29154,2025-03-10T16:39:40.385140-07:00,992.2216186523438,10.853181,10853.181 +29155,2025-03-10T16:39:51.230816-07:00,992.2140502929688,10.845676,10845.676 +29156,2025-03-10T16:40:02.073259-07:00,992.1931762695312,10.842443,10842.443 +29157,2025-03-10T16:40:12.916797-07:00,992.2150268554688,10.843538,10843.538 +29158,2025-03-10T16:40:23.766888-07:00,992.1875610351562,10.850091,10850.091 +29159,2025-03-10T16:40:34.610225-07:00,992.2064208984375,10.843337,10843.337 +29160,2025-03-10T16:40:45.457254-07:00,992.1942138671875,10.847029,10847.029 +29161,2025-03-10T16:40:56.299172-07:00,992.2471313476562,10.841918,10841.918 +29162,2025-03-10T16:41:07.148114-07:00,992.1964111328125,10.848942,10848.942 +29163,2025-03-10T16:41:17.989884-07:00,992.1875610351562,10.84177,10841.77 +29164,2025-03-10T16:41:28.833892-07:00,992.241455078125,10.844008,10844.008 +29165,2025-03-10T16:41:39.679188-07:00,992.241455078125,10.845296,10845.296 +29166,2025-03-10T16:41:50.533094-07:00,992.241455078125,10.853906,10853.906 +29167,2025-03-10T16:42:01.370959-07:00,992.2570190429688,10.837865,10837.865 +29168,2025-03-10T16:42:12.213021-07:00,992.283447265625,10.842062,10842.062 +29169,2025-03-10T16:42:23.060151-07:00,992.2427978515625,10.84713,10847.13 +29170,2025-03-10T16:42:33.912482-07:00,992.2570190429688,10.852331,10852.331 +29171,2025-03-10T16:42:44.748001-07:00,992.2636108398438,10.835519,10835.519 +29172,2025-03-10T16:42:55.590375-07:00,992.2692260742188,10.842374,10842.374 +29173,2025-03-10T16:43:06.433883-07:00,992.2185668945312,10.843508,10843.508 +29174,2025-03-10T16:43:17.278892-07:00,992.2427978515625,10.845009,10845.009 +29175,2025-03-10T16:43:28.121190-07:00,992.2626342773438,10.842298,10842.298 +29176,2025-03-10T16:43:38.971221-07:00,992.2546997070312,10.850031,10850.031 +29177,2025-03-10T16:43:49.806925-07:00,992.1885986328125,10.835704,10835.704 +29178,2025-03-10T16:44:00.656426-07:00,992.228271484375,10.849501,10849.501 +29179,2025-03-10T16:44:11.494257-07:00,992.1799926757812,10.837831,10837.831 +29180,2025-03-10T16:44:22.341070-07:00,992.1931762695312,10.846813,10846.813 +29181,2025-03-10T16:44:33.188777-07:00,992.1578369140625,10.847707,10847.707 +29182,2025-03-10T16:44:44.021887-07:00,992.1720581054688,10.83311,10833.11 +29183,2025-03-10T16:44:54.865508-07:00,992.2051391601562,10.843621,10843.621 +29184,2025-03-10T16:45:05.708219-07:00,992.1654663085938,10.842711,10842.711 +29185,2025-03-10T16:45:16.550131-07:00,992.1512451171875,10.841912,10841.912 +29186,2025-03-10T16:45:27.394939-07:00,992.185302734375,10.844808,10844.808 +29187,2025-03-10T16:45:38.232102-07:00,992.115966796875,10.837163,10837.163 +29188,2025-03-10T16:45:49.069609-07:00,992.1621704101562,10.837507,10837.507 +29189,2025-03-10T16:45:59.911879-07:00,992.1698608398438,10.84227,10842.27 +29190,2025-03-10T16:46:10.765885-07:00,992.115966796875,10.854006,10854.006 +29191,2025-03-10T16:46:21.599997-07:00,992.1181030273438,10.834112,10834.112 +29192,2025-03-10T16:46:32.453026-07:00,992.1565551757812,10.853029,10853.029 +29193,2025-03-10T16:46:43.297270-07:00,992.1556396484375,10.844244,10844.244 +29194,2025-03-10T16:46:54.133886-07:00,992.2174072265625,10.836616,10836.616 +29195,2025-03-10T16:47:04.977105-07:00,992.1556396484375,10.843219,10843.219 +29196,2025-03-10T16:47:15.824888-07:00,992.130126953125,10.847783,10847.783 +29197,2025-03-10T16:47:26.668241-07:00,992.1013793945312,10.843353,10843.353 +29198,2025-03-10T16:47:37.509788-07:00,992.1146240234375,10.841547,10841.547 +29199,2025-03-10T16:47:48.347144-07:00,992.146728515625,10.837356,10837.356 +29200,2025-03-10T16:47:59.184038-07:00,992.0960083007812,10.836894,10836.894 +29201,2025-03-10T16:48:10.027505-07:00,992.115966796875,10.843467,10843.467 +29202,2025-03-10T16:48:20.873145-07:00,992.143310546875,10.84564,10845.64 +29203,2025-03-10T16:48:31.711887-07:00,992.0970458984375,10.838742,10838.742 +29204,2025-03-10T16:48:42.548215-07:00,992.130126953125,10.836328,10836.328 +29205,2025-03-10T16:48:53.392544-07:00,992.13232421875,10.844329,10844.329 +29206,2025-03-10T16:49:04.227861-07:00,992.0861206054688,10.835317,10835.317 +29207,2025-03-10T16:49:15.077026-07:00,992.0861206054688,10.849165,10849.165 +29208,2025-03-10T16:49:25.909442-07:00,992.1157836914062,10.832416,10832.416 +29209,2025-03-10T16:49:36.754108-07:00,992.122314453125,10.844666,10844.666 +29210,2025-03-10T16:49:47.594254-07:00,992.122314453125,10.840146,10840.146 +29211,2025-03-10T16:49:58.428200-07:00,992.0640869140625,10.833946,10833.946 +29212,2025-03-10T16:50:09.274414-07:00,992.1303100585938,10.846214,10846.214 +29213,2025-03-10T16:50:20.113861-07:00,992.083984375,10.839447,10839.447 +29214,2025-03-10T16:50:30.967102-07:00,992.1378784179688,10.853241,10853.241 +29215,2025-03-10T16:50:41.808926-07:00,992.1259155273438,10.841824,10841.824 +29216,2025-03-10T16:50:52.652145-07:00,992.151123046875,10.843219,10843.219 +29217,2025-03-10T16:51:03.497184-07:00,992.163330078125,10.845039,10845.039 +29218,2025-03-10T16:51:14.347435-07:00,992.14453125,10.850251,10850.251 +29219,2025-03-10T16:51:25.185042-07:00,992.1236572265625,10.837607,10837.607 +29220,2025-03-10T16:51:36.027572-07:00,992.0882568359375,10.84253,10842.53 +29221,2025-03-10T16:51:46.869171-07:00,992.1038208007812,10.841599,10841.599 +29222,2025-03-10T16:51:57.719393-07:00,992.1312255859375,10.850222,10850.222 +29223,2025-03-10T16:52:08.565021-07:00,992.108154296875,10.845628,10845.628 +29224,2025-03-10T16:52:19.408085-07:00,992.1104736328125,10.843064,10843.064 +29225,2025-03-10T16:52:30.241882-07:00,992.1434936523438,10.833797,10833.797 +29226,2025-03-10T16:52:41.085158-07:00,992.1643676757812,10.843276,10843.276 +29227,2025-03-10T16:52:51.927917-07:00,992.1104736328125,10.842759,10842.759 +29228,2025-03-10T16:53:02.770886-07:00,992.1378784179688,10.842969,10842.969 +29229,2025-03-10T16:53:13.610061-07:00,992.1113891601562,10.839175,10839.175 +29230,2025-03-10T16:53:24.463154-07:00,992.1303100585938,10.853093,10853.093 +29231,2025-03-10T16:53:35.305446-07:00,992.1392211914062,10.842292,10842.292 +29232,2025-03-10T16:53:46.142886-07:00,992.0938110351562,10.83744,10837.44 +29233,2025-03-10T16:53:56.985931-07:00,992.119384765625,10.843045,10843.045 +29234,2025-03-10T16:54:07.832866-07:00,992.1126708984375,10.846935,10846.935 +29235,2025-03-10T16:54:18.680082-07:00,992.1060791015625,10.847216,10847.216 +29236,2025-03-10T16:54:29.522815-07:00,992.1336059570312,10.842733,10842.733 +29237,2025-03-10T16:54:40.360196-07:00,992.1423950195312,10.837381,10837.381 +29238,2025-03-10T16:54:51.204210-07:00,992.114990234375,10.844014,10844.014 +29239,2025-03-10T16:55:02.043298-07:00,992.1370239257812,10.839088,10839.088 +29240,2025-03-10T16:55:12.889127-07:00,992.1381225585938,10.845829,10845.829 +29241,2025-03-10T16:55:23.742735-07:00,992.1138916015625,10.853608,10853.608 +29242,2025-03-10T16:55:34.585871-07:00,992.1813354492188,10.843136,10843.136 +29243,2025-03-10T16:55:45.425387-07:00,992.12939453125,10.839516,10839.516 +29244,2025-03-10T16:55:56.279317-07:00,992.1581420898438,10.85393,10853.93 +29245,2025-03-10T16:56:07.124891-07:00,992.104248046875,10.845574,10845.574 +29246,2025-03-10T16:56:17.965471-07:00,992.1461791992188,10.84058,10840.58 +29247,2025-03-10T16:56:28.807882-07:00,992.1417846679688,10.842411,10842.411 +29248,2025-03-10T16:56:39.661116-07:00,992.1031494140625,10.853234,10853.234 +29249,2025-03-10T16:56:50.500890-07:00,992.1582641601562,10.839774,10839.774 +29250,2025-03-10T16:57:01.337983-07:00,992.1526489257812,10.837093,10837.093 +29251,2025-03-10T16:57:12.185461-07:00,992.1261596679688,10.847478,10847.478 +29252,2025-03-10T16:57:23.025882-07:00,992.121826171875,10.840421,10840.421 +29253,2025-03-10T16:57:33.865878-07:00,992.121826171875,10.839996,10839.996 +29254,2025-03-10T16:57:44.713891-07:00,992.12841796875,10.848013,10848.013 +29255,2025-03-10T16:57:55.568213-07:00,992.1386108398438,10.854322,10854.322 +29256,2025-03-10T16:58:06.419891-07:00,992.11083984375,10.851678,10851.678 +29257,2025-03-10T16:58:17.267215-07:00,992.1484375,10.847324,10847.324 +29258,2025-03-10T16:58:28.114824-07:00,992.1431274414062,10.847609,10847.609 +29259,2025-03-10T16:58:38.962999-07:00,992.1298217773438,10.848175,10848.175 +29260,2025-03-10T16:58:49.802348-07:00,992.1585693359375,10.839349,10839.349 +29261,2025-03-10T16:59:00.650128-07:00,992.0814208984375,10.84778,10847.78 +29262,2025-03-10T16:59:11.501023-07:00,992.1364135742188,10.850895,10850.895 +29263,2025-03-10T16:59:22.348470-07:00,992.1751708984375,10.847447,10847.447 +29264,2025-03-10T16:59:33.186879-07:00,992.204833984375,10.838409,10838.409 +29265,2025-03-10T16:59:44.030880-07:00,992.2203369140625,10.844001,10844.001 +29266,2025-03-10T16:59:54.873617-07:00,992.1885375976562,10.842737,10842.737 +29267,2025-03-10T17:00:05.720148-07:00,992.1961059570312,10.846531,10846.531 +29268,2025-03-10T17:00:16.563394-07:00,992.1387329101562,10.843246,10843.246 +29269,2025-03-10T17:00:27.408935-07:00,992.2446899414062,10.845541,10845.541 +29270,2025-03-10T17:00:38.242865-07:00,992.1532592773438,10.83393,10833.93 +29271,2025-03-10T17:00:49.088115-07:00,992.2095336914062,10.84525,10845.25 +29272,2025-03-10T17:00:59.941075-07:00,992.1763916015625,10.85296,10852.96 +29273,2025-03-10T17:01:10.791472-07:00,992.19091796875,10.850397,10850.397 +29274,2025-03-10T17:01:21.629135-07:00,992.198486328125,10.837663,10837.663 +29275,2025-03-10T17:01:32.474929-07:00,992.2020263671875,10.845794,10845.794 +29276,2025-03-10T17:01:43.319093-07:00,992.2030639648438,10.844164,10844.164 +29277,2025-03-10T17:01:54.174735-07:00,992.1500854492188,10.855642,10855.642 +29278,2025-03-10T17:02:05.022421-07:00,992.1842041015625,10.847686,10847.686 +29279,2025-03-10T17:02:15.869941-07:00,992.146728515625,10.84752,10847.52 +29280,2025-03-10T17:02:26.715567-07:00,992.1820068359375,10.845626,10845.626 +29281,2025-03-10T17:02:37.565449-07:00,992.1900024414062,10.849882,10849.882 +29282,2025-03-10T17:02:48.407248-07:00,992.1710815429688,10.841799,10841.799 +29283,2025-03-10T17:02:59.265089-07:00,992.1799926757812,10.857841,10857.841 +29284,2025-03-10T17:03:10.121064-07:00,992.1746215820312,10.855975,10855.975 +29285,2025-03-10T17:03:20.964215-07:00,992.1702270507812,10.843151,10843.151 +29286,2025-03-10T17:03:31.818194-07:00,992.1911010742188,10.853979,10853.979 +29287,2025-03-10T17:03:42.662207-07:00,992.1668701171875,10.844013,10844.013 +29288,2025-03-10T17:03:53.505223-07:00,992.2145385742188,10.843016,10843.016 +29289,2025-03-10T17:04:04.358494-07:00,992.2022094726562,10.853271,10853.271 +29290,2025-03-10T17:04:15.209420-07:00,992.177001953125,10.850926,10850.926 +29291,2025-03-10T17:04:26.064580-07:00,992.1581420898438,10.85516,10855.16 +29292,2025-03-10T17:04:36.907532-07:00,992.17236328125,10.842952,10842.952 +29293,2025-03-10T17:04:47.761912-07:00,992.1881103515625,10.85438,10854.38 +29294,2025-03-10T17:04:58.614104-07:00,992.1638793945312,10.852192,10852.192 +29295,2025-03-10T17:05:09.457077-07:00,992.1837768554688,10.842973,10842.973 +29296,2025-03-10T17:05:20.310389-07:00,992.1453247070312,10.853312,10853.312 +29297,2025-03-10T17:05:31.161075-07:00,992.2359619140625,10.850686,10850.686 +29298,2025-03-10T17:05:42.001282-07:00,992.1817016601562,10.840207,10840.207 +29299,2025-03-10T17:05:52.904013-07:00,992.1972045898438,10.902731,10902.731 +29300,2025-03-10T17:06:03.752318-07:00,992.2037353515625,10.848305,10848.305 +29301,2025-03-10T17:06:14.596048-07:00,992.2259521484375,10.84373,10843.73 +29302,2025-03-10T17:06:25.443004-07:00,992.19189453125,10.846956,10846.956 +29303,2025-03-10T17:06:36.292223-07:00,992.1861572265625,10.849219,10849.219 +29304,2025-03-10T17:06:47.142004-07:00,992.1928100585938,10.849781,10849.781 +29305,2025-03-10T17:06:57.991045-07:00,992.2149047851562,10.849041,10849.041 +29306,2025-03-10T17:07:08.844225-07:00,992.1884155273438,10.85318,10853.18 +29307,2025-03-10T17:07:19.683467-07:00,992.204833984375,10.839242,10839.242 +29308,2025-03-10T17:07:30.530708-07:00,992.2061767578125,10.847241,10847.241 +29309,2025-03-10T17:07:41.374217-07:00,992.204833984375,10.843509,10843.509 +29310,2025-03-10T17:07:52.217164-07:00,992.186279296875,10.842947,10842.947 +29311,2025-03-10T17:08:03.065013-07:00,992.2072143554688,10.847849,10847.849 +29312,2025-03-10T17:08:13.911065-07:00,992.2084350585938,10.846052,10846.052 +29313,2025-03-10T17:08:24.753373-07:00,992.2160034179688,10.842308,10842.308 +29314,2025-03-10T17:08:35.602048-07:00,992.17626953125,10.848675,10848.675 +29315,2025-03-10T17:08:46.455024-07:00,992.1851806640625,10.852976,10852.976 +29316,2025-03-10T17:08:57.304103-07:00,992.2327880859375,10.849079,10849.079 +29317,2025-03-10T17:09:08.153089-07:00,992.1864013671875,10.848986,10848.986 +29318,2025-03-10T17:09:18.996041-07:00,992.207275390625,10.842952,10842.952 +29319,2025-03-10T17:09:29.850142-07:00,992.1807861328125,10.854101,10854.101 +29320,2025-03-10T17:09:40.705050-07:00,992.1665649414062,10.854908,10854.908 +29321,2025-03-10T17:09:51.550264-07:00,992.1732788085938,10.845214,10845.214 +29322,2025-03-10T17:10:02.401575-07:00,992.19091796875,10.851311,10851.311 +29323,2025-03-10T17:10:13.243882-07:00,992.2042236328125,10.842307,10842.307 +29324,2025-03-10T17:10:24.101385-07:00,992.185302734375,10.857503,10857.503 +29325,2025-03-10T17:10:34.942991-07:00,992.19189453125,10.841606,10841.606 +29326,2025-03-10T17:10:45.799988-07:00,992.1942138671875,10.856997,10856.997 +29327,2025-03-10T17:10:56.649331-07:00,992.1964111328125,10.849343,10849.343 +29328,2025-03-10T17:11:07.506676-07:00,992.2030639648438,10.857345,10857.345 +29329,2025-03-10T17:11:18.350154-07:00,992.1976318359375,10.843478,10843.478 +29330,2025-03-10T17:11:29.204065-07:00,992.20751953125,10.853911,10853.911 +29331,2025-03-10T17:11:40.053015-07:00,992.1864013671875,10.84895,10848.95 +29332,2025-03-10T17:11:50.901799-07:00,992.2229614257812,10.848784,10848.784 +29333,2025-03-10T17:12:01.748283-07:00,992.2097778320312,10.846484,10846.484 +29334,2025-03-10T17:12:12.611009-07:00,992.2371826171875,10.862726,10862.726 +29335,2025-03-10T17:12:23.456331-07:00,992.2318725585938,10.845322,10845.322 +29336,2025-03-10T17:12:34.309071-07:00,992.2120361328125,10.85274,10852.74 +29337,2025-03-10T17:12:45.163072-07:00,992.2142333984375,10.854001,10854.001 +29338,2025-03-10T17:12:56.007101-07:00,992.1943969726562,10.844029,10844.029 +29339,2025-03-10T17:13:06.865968-07:00,992.1865844726562,10.858867,10858.867 +29340,2025-03-10T17:13:17.716189-07:00,992.22314453125,10.850221,10850.221 +29341,2025-03-10T17:13:28.568039-07:00,992.2033081054688,10.85185,10851.85 +29342,2025-03-10T17:13:39.412298-07:00,992.1768188476562,10.844259,10844.259 +29343,2025-03-10T17:13:50.266245-07:00,992.2320556640625,10.853947,10853.947 +29344,2025-03-10T17:14:01.111009-07:00,992.2042236328125,10.844764,10844.764 +29345,2025-03-10T17:14:11.964011-07:00,992.2254028320312,10.853002,10853.002 +29346,2025-03-10T17:14:22.814282-07:00,992.2254028320312,10.850271,10850.271 +29347,2025-03-10T17:14:33.656251-07:00,992.212158203125,10.841969,10841.969 +29348,2025-03-10T17:14:44.506049-07:00,992.21533203125,10.849798,10849.798 +29349,2025-03-10T17:14:55.348013-07:00,992.236572265625,10.841964,10841.964 +29350,2025-03-10T17:15:06.197057-07:00,992.2431030273438,10.849044,10849.044 +29351,2025-03-10T17:15:17.046013-07:00,992.2564086914062,10.848956,10848.956 +29352,2025-03-10T17:15:27.895098-07:00,992.2728271484375,10.849085,10849.085 +29353,2025-03-10T17:15:38.742995-07:00,992.2606201171875,10.847897,10847.897 +29354,2025-03-10T17:15:49.584601-07:00,992.2552490234375,10.841606,10841.606 +29355,2025-03-10T17:16:00.442345-07:00,992.2575073242188,10.857744,10857.744 +29356,2025-03-10T17:16:11.284147-07:00,992.2628173828125,10.841802,10841.802 +29357,2025-03-10T17:16:22.139181-07:00,992.2531127929688,10.855034,10855.034 +29358,2025-03-10T17:16:32.982018-07:00,992.2937622070312,10.842837,10842.837 +29359,2025-03-10T17:16:43.833347-07:00,992.3016967773438,10.851329,10851.329 +29360,2025-03-10T17:16:54.676014-07:00,992.2960815429688,10.842667,10842.667 +29361,2025-03-10T17:17:05.526410-07:00,992.2907104492188,10.850396,10850.396 +29362,2025-03-10T17:17:16.371012-07:00,992.291748046875,10.844602,10844.602 +29363,2025-03-10T17:17:27.222314-07:00,992.291748046875,10.851302,10851.302 +29364,2025-03-10T17:17:38.068981-07:00,992.2740478515625,10.846667,10846.667 +29365,2025-03-10T17:17:48.924014-07:00,992.295166015625,10.855033,10855.033 +29366,2025-03-10T17:17:59.769003-07:00,992.281982421875,10.844989,10844.989 +29367,2025-03-10T17:18:10.614015-07:00,992.28955078125,10.845012,10845.012 +29368,2025-03-10T17:18:21.460007-07:00,992.3049926757812,10.845992,10845.992 +29369,2025-03-10T17:18:32.313016-07:00,992.2785034179688,10.853009,10853.009 +29370,2025-03-10T17:18:43.155298-07:00,992.2974243164062,10.842282,10842.282 +29371,2025-03-10T17:18:54.011310-07:00,992.2993774414062,10.856012,10856.012 +29372,2025-03-10T17:19:04.864311-07:00,992.3015747070312,10.853001,10853.001 +29373,2025-03-10T17:19:15.709310-07:00,992.282958984375,10.844999,10844.999 +29374,2025-03-10T17:19:26.563055-07:00,992.2498168945312,10.853745,10853.745 +29375,2025-03-10T17:19:37.412998-07:00,992.2796020507812,10.849943,10849.943 +29376,2025-03-10T17:19:48.260006-07:00,992.2874755859375,10.847008,10847.008 +29377,2025-03-10T17:19:59.107013-07:00,992.2818603515625,10.847007,10847.007 +29378,2025-03-10T17:20:09.952502-07:00,992.2818603515625,10.845489,10845.489 +29379,2025-03-10T17:20:20.796521-07:00,992.2642211914062,10.844019,10844.019 +29380,2025-03-10T17:20:31.636316-07:00,992.2642211914062,10.839795,10839.795 +29381,2025-03-10T17:20:42.495053-07:00,992.2731323242188,10.858737,10858.737 +29382,2025-03-10T17:20:53.340237-07:00,992.2863159179688,10.845184,10845.184 +29383,2025-03-10T17:21:04.191052-07:00,992.28759765625,10.850815,10850.815 +29384,2025-03-10T17:21:15.041073-07:00,992.3173217773438,10.850021,10850.021 +29385,2025-03-10T17:21:25.889255-07:00,992.3106079101562,10.848182,10848.182 +29386,2025-03-10T17:21:36.735762-07:00,992.2567138671875,10.846507,10846.507 +29387,2025-03-10T17:21:47.588676-07:00,992.2633056640625,10.852914,10852.914 +29388,2025-03-10T17:21:58.435322-07:00,992.2567138671875,10.846646,10846.646 +29389,2025-03-10T17:22:09.268259-07:00,992.2457275390625,10.832937,10832.937 +29390,2025-03-10T17:22:20.120063-07:00,992.2940673828125,10.851804,10851.804 +29391,2025-03-10T17:22:30.964007-07:00,992.2820434570312,10.843944,10843.944 +29392,2025-03-10T17:22:41.809420-07:00,992.282958984375,10.845413,10845.413 +29393,2025-03-10T17:22:52.664662-07:00,992.2962646484375,10.855242,10855.242 +29394,2025-03-10T17:23:03.502322-07:00,992.26220703125,10.83766,10837.66 +29395,2025-03-10T17:23:14.356797-07:00,992.2974853515625,10.854475,10854.475 +29396,2025-03-10T17:23:25.202410-07:00,992.306396484375,10.845613,10845.613 +29397,2025-03-10T17:23:36.045256-07:00,992.306396484375,10.842846,10842.846 +29398,2025-03-10T17:23:46.886339-07:00,992.3117065429688,10.841083,10841.083 +29399,2025-03-10T17:23:57.732288-07:00,992.306396484375,10.845949,10845.949 +29400,2025-03-10T17:24:08.572444-07:00,992.31298828125,10.840156,10840.156 +29401,2025-03-10T17:24:19.421992-07:00,992.307373046875,10.849548,10849.548 +29402,2025-03-10T17:24:30.267221-07:00,992.2963256835938,10.845229,10845.229 +29403,2025-03-10T17:24:41.103386-07:00,992.302978515625,10.836165,10836.165 +29404,2025-03-10T17:24:51.958343-07:00,992.3317260742188,10.854957,10854.957 +29405,2025-03-10T17:25:02.808264-07:00,992.3175048828125,10.849921,10849.921 +29406,2025-03-10T17:25:13.651020-07:00,992.3197021484375,10.842756,10842.756 +29407,2025-03-10T17:25:24.497228-07:00,992.3140869140625,10.846208,10846.208 +29408,2025-03-10T17:25:35.347151-07:00,992.3273315429688,10.849923,10849.923 +29409,2025-03-10T17:25:46.191007-07:00,992.3428344726562,10.843856,10843.856 +29410,2025-03-10T17:25:57.036014-07:00,992.3096923828125,10.845007,10845.007 +29411,2025-03-10T17:26:07.884436-07:00,992.3118896484375,10.848422,10848.422 +29412,2025-03-10T17:26:18.737333-07:00,992.331787109375,10.852897,10852.897 +29413,2025-03-10T17:26:29.579387-07:00,992.3343505859375,10.842054,10842.054 +29414,2025-03-10T17:26:40.428266-07:00,992.3154907226562,10.848879,10848.879 +29415,2025-03-10T17:26:51.284737-07:00,992.3375244140625,10.856471,10856.471 +29416,2025-03-10T17:27:02.137341-07:00,992.345458984375,10.852604,10852.604 +29417,2025-03-10T17:27:12.986310-07:00,992.3543090820312,10.848969,10848.969 +29418,2025-03-10T17:27:23.835007-07:00,992.342041015625,10.848697,10848.697 +29419,2025-03-10T17:27:34.691981-07:00,992.336669921875,10.856974,10856.974 +29420,2025-03-10T17:27:45.533349-07:00,992.345458984375,10.841368,10841.368 +29421,2025-03-10T17:27:56.382485-07:00,992.33984375,10.849136,10849.136 +29422,2025-03-10T17:28:07.234737-07:00,992.3477172851562,10.852252,10852.252 +29423,2025-03-10T17:28:18.079400-07:00,992.3278198242188,10.844663,10844.663 +29424,2025-03-10T17:28:28.923249-07:00,992.3565673828125,10.843849,10843.849 +29425,2025-03-10T17:28:39.772235-07:00,992.337646484375,10.848986,10848.986 +29426,2025-03-10T17:28:50.618011-07:00,992.337646484375,10.845776,10845.776 +29427,2025-03-10T17:29:01.458075-07:00,992.3057861328125,10.840064,10840.064 +29428,2025-03-10T17:29:12.312161-07:00,992.273681640625,10.854086,10854.086 +29429,2025-03-10T17:29:23.156353-07:00,992.3057861328125,10.844192,10844.192 +29430,2025-03-10T17:29:34.012359-07:00,992.283447265625,10.856006,10856.006 +29431,2025-03-10T17:29:44.865472-07:00,992.2745971679688,10.853113,10853.113 +29432,2025-03-10T17:29:55.712343-07:00,992.2913818359375,10.846871,10846.871 +29433,2025-03-10T17:30:06.568036-07:00,992.2990112304688,10.855693,10855.693 +29434,2025-03-10T17:30:17.421920-07:00,992.2913818359375,10.853884,10853.884 +29435,2025-03-10T17:30:28.265007-07:00,992.2923583984375,10.843087,10843.087 +29436,2025-03-10T17:30:39.119010-07:00,992.30126953125,10.854003,10854.003 +29437,2025-03-10T17:30:49.962203-07:00,992.3333740234375,10.843193,10843.193 +29438,2025-03-10T17:31:00.817025-07:00,992.26708984375,10.854822,10854.822 +29439,2025-03-10T17:31:11.667869-07:00,992.274658203125,10.850844,10850.844 +29440,2025-03-10T17:31:22.514372-07:00,992.3157958984375,10.846503,10846.503 +29441,2025-03-10T17:31:33.369530-07:00,992.3189086914062,10.855158,10855.158 +29442,2025-03-10T17:31:44.217286-07:00,992.3123168945312,10.847756,10847.756 +29443,2025-03-10T17:31:55.069290-07:00,992.293701171875,10.852004,10852.004 +29444,2025-03-10T17:32:05.920486-07:00,992.3224487304688,10.851196,10851.196 +29445,2025-03-10T17:32:16.759012-07:00,992.3224487304688,10.838526,10838.526 +29446,2025-03-10T17:32:27.607010-07:00,992.2835693359375,10.847998,10847.998 +29447,2025-03-10T17:32:38.456406-07:00,992.2760009765625,10.849396,10849.396 +29448,2025-03-10T17:32:49.298147-07:00,992.2659301757812,10.841741,10841.741 +29449,2025-03-10T17:33:00.147646-07:00,992.2672119140625,10.849499,10849.499 +29450,2025-03-10T17:33:11.001328-07:00,992.2881469726562,10.853682,10853.682 +29451,2025-03-10T17:33:21.845212-07:00,992.296875,10.843884,10843.884 +29452,2025-03-10T17:33:32.700047-07:00,992.28466796875,10.854835,10854.835 +29453,2025-03-10T17:33:43.542007-07:00,992.3178100585938,10.84196,10841.96 +29454,2025-03-10T17:33:54.393300-07:00,992.279296875,10.851293,10851.293 +29455,2025-03-10T17:34:05.240009-07:00,992.3001708984375,10.846709,10846.709 +29456,2025-03-10T17:34:16.084578-07:00,992.3067016601562,10.844569,10844.569 +29457,2025-03-10T17:34:26.938351-07:00,992.3035888671875,10.853773,10853.773 +29458,2025-03-10T17:34:37.788219-07:00,992.27587890625,10.849868,10849.868 +29459,2025-03-10T17:34:48.634824-07:00,992.3222045898438,10.846605,10846.605 +29460,2025-03-10T17:34:59.476000-07:00,992.352294921875,10.841176,10841.176 +29461,2025-03-10T17:35:10.328402-07:00,992.3125,10.852402,10852.402 +29462,2025-03-10T17:35:21.176012-07:00,992.2991943359375,10.84761,10847.61 +29463,2025-03-10T17:35:32.031004-07:00,992.3134155273438,10.854992,10854.992 +29464,2025-03-10T17:35:42.881416-07:00,992.30810546875,10.850412,10850.412 +29465,2025-03-10T17:35:53.724006-07:00,992.3355712890625,10.84259,10842.59 +29466,2025-03-10T17:36:04.570596-07:00,992.310302734375,10.84659,10846.59 +29467,2025-03-10T17:36:15.424345-07:00,992.35986328125,10.853749,10853.749 +29468,2025-03-10T17:36:26.268825-07:00,992.347900390625,10.84448,10844.48 +29469,2025-03-10T17:36:37.122259-07:00,992.3201293945312,10.853434,10853.434 +29470,2025-03-10T17:36:47.978989-07:00,992.3125,10.85673,10856.73 +29471,2025-03-10T17:36:58.827151-07:00,992.3279418945312,10.848162,10848.162 +29472,2025-03-10T17:37:09.679250-07:00,992.3621215820312,10.852099,10852.099 +29473,2025-03-10T17:37:20.530014-07:00,992.3289794921875,10.850764,10850.764 +29474,2025-03-10T17:37:31.387104-07:00,992.35546875,10.85709,10857.09 +29475,2025-03-10T17:37:42.241294-07:00,992.3696899414062,10.85419,10854.19 +29476,2025-03-10T17:37:53.095167-07:00,992.390869140625,10.853873,10853.873 +29477,2025-03-10T17:38:03.949012-07:00,992.3719482421875,10.853845,10853.845 +29478,2025-03-10T17:38:14.799325-07:00,992.3732299804688,10.850313,10850.313 +29479,2025-03-10T17:38:25.662077-07:00,992.3630981445312,10.862752,10862.752 +29480,2025-03-10T17:38:36.511005-07:00,992.3423461914062,10.848928,10848.928 +29481,2025-03-10T17:38:47.359281-07:00,992.3233642578125,10.848276,10848.276 +29482,2025-03-10T17:38:58.214014-07:00,992.3245849609375,10.854733,10854.733 +29483,2025-03-10T17:39:09.064040-07:00,992.3322143554688,10.850026,10850.026 +29484,2025-03-10T17:39:19.920468-07:00,992.341064453125,10.856428,10856.428 +29485,2025-03-10T17:39:30.766496-07:00,992.3079833984375,10.846028,10846.028 +29486,2025-03-10T17:39:41.628010-07:00,992.3577880859375,10.861514,10861.514 +29487,2025-03-10T17:39:52.476567-07:00,992.3445434570312,10.848557,10848.557 +29488,2025-03-10T17:40:03.336016-07:00,992.3401489257812,10.859449,10859.449 +29489,2025-03-10T17:40:14.195291-07:00,992.36669921875,10.859275,10859.275 +29490,2025-03-10T17:40:25.047415-07:00,992.3809204101562,10.852124,10852.124 +29491,2025-03-10T17:40:35.894908-07:00,992.3831176757812,10.847493,10847.493 +29492,2025-03-10T17:40:46.755044-07:00,992.3831176757812,10.860136,10860.136 +29493,2025-03-10T17:40:57.609015-07:00,992.369873046875,10.853971,10853.971 +29494,2025-03-10T17:41:08.461054-07:00,992.3707885742188,10.852039,10852.039 +29495,2025-03-10T17:41:19.316994-07:00,992.3597412109375,10.85594,10855.94 +29496,2025-03-10T17:41:30.168314-07:00,992.3521728515625,10.85132,10851.32 +29497,2025-03-10T17:41:41.015347-07:00,992.3875732421875,10.847033,10847.033 +29498,2025-03-10T17:41:51.875551-07:00,992.3552856445312,10.860204,10860.204 +29499,2025-03-10T17:42:02.723400-07:00,992.36767578125,10.847849,10847.849 +29500,2025-03-10T17:42:13.576405-07:00,992.362060546875,10.853005,10853.005 +29501,2025-03-10T17:42:24.428491-07:00,992.362060546875,10.852086,10852.086 +29502,2025-03-10T17:42:35.281786-07:00,992.36328125,10.853295,10853.295 +29503,2025-03-10T17:42:46.142345-07:00,992.36328125,10.860559,10860.559 +29504,2025-03-10T17:42:56.991741-07:00,992.370849609375,10.849396,10849.396 +29505,2025-03-10T17:43:07.850453-07:00,992.403076171875,10.858712,10858.712 +29506,2025-03-10T17:43:18.693669-07:00,992.4251708984375,10.843216,10843.216 +29507,2025-03-10T17:43:29.547713-07:00,992.411865234375,10.854044,10854.044 +29508,2025-03-10T17:43:40.398625-07:00,992.4238891601562,10.850912,10850.912 +29509,2025-03-10T17:43:51.249086-07:00,992.4251708984375,10.850461,10850.461 +29510,2025-03-10T17:44:02.106187-07:00,992.4318237304688,10.857101,10857.101 +29511,2025-03-10T17:44:12.952067-07:00,992.4406127929688,10.84588,10845.88 +29512,2025-03-10T17:44:23.808145-07:00,992.446044921875,10.856078,10856.078 +29513,2025-03-10T17:44:34.654090-07:00,992.4327392578125,10.845945,10845.945 +29514,2025-03-10T17:44:45.505012-07:00,992.4539184570312,10.850922,10850.922 +29515,2025-03-10T17:44:56.361014-07:00,992.4327392578125,10.856002,10856.002 +29516,2025-03-10T17:45:07.214005-07:00,992.4260864257812,10.852991,10852.991 +29517,2025-03-10T17:45:18.068668-07:00,992.447265625,10.854663,10854.663 +29518,2025-03-10T17:45:28.916015-07:00,992.412841796875,10.847347,10847.347 +29519,2025-03-10T17:45:39.771014-07:00,992.3809204101562,10.854999,10854.999 +29520,2025-03-10T17:45:50.614454-07:00,992.40087890625,10.84344,10843.44 +29521,2025-03-10T17:46:01.472205-07:00,992.3964233398438,10.857751,10857.751 +29522,2025-03-10T17:46:12.326643-07:00,992.40087890625,10.854438,10854.438 +29523,2025-03-10T17:46:23.180148-07:00,992.40185546875,10.853505,10853.505 +29524,2025-03-10T17:46:34.035026-07:00,992.4273681640625,10.854878,10854.878 +29525,2025-03-10T17:46:44.894012-07:00,992.436279296875,10.858986,10858.986 +29526,2025-03-10T17:46:55.744221-07:00,992.3951416015625,10.850209,10850.209 +29527,2025-03-10T17:47:06.594274-07:00,992.40966796875,10.850053,10850.053 +29528,2025-03-10T17:47:17.446670-07:00,992.40966796875,10.852396,10852.396 +29529,2025-03-10T17:47:28.301793-07:00,992.4238891601562,10.855123,10855.123 +29530,2025-03-10T17:47:39.151349-07:00,992.4238891601562,10.849556,10849.556 +29531,2025-03-10T17:47:50.008540-07:00,992.445068359375,10.857191,10857.191 +29532,2025-03-10T17:48:00.860075-07:00,992.4592895507812,10.851535,10851.535 +29533,2025-03-10T17:48:11.719281-07:00,992.407470703125,10.859206,10859.206 +29534,2025-03-10T17:48:22.569314-07:00,992.4207763671875,10.850033,10850.033 +29535,2025-03-10T17:48:33.418061-07:00,992.441650390625,10.848747,10848.747 +29536,2025-03-10T17:48:55.119012-07:00,992.4615478515625,21.700951,21700.951 +29537,2025-03-10T17:49:05.970996-07:00,992.4160766601562,10.851984,10851.984 +29538,2025-03-10T17:49:16.823021-07:00,992.451416015625,10.852025,10852.025 +29539,2025-03-10T17:49:27.673204-07:00,992.451416015625,10.850183,10850.183 +29540,2025-03-10T17:49:38.521991-07:00,992.3975219726562,10.848787,10848.787 +29541,2025-03-10T17:49:49.370237-07:00,992.471435546875,10.848246,10848.246 +29542,2025-03-10T17:50:00.224074-07:00,992.4593505859375,10.853837,10853.837 +29543,2025-03-10T17:50:11.083019-07:00,992.4603271484375,10.858945,10858.945 +29544,2025-03-10T17:50:21.935020-07:00,992.447021484375,10.852001,10852.001 +29545,2025-03-10T17:50:32.781452-07:00,992.428466796875,10.846432,10846.432 +29546,2025-03-10T17:50:43.635358-07:00,992.442626953125,10.853906,10853.906 +29547,2025-03-10T17:50:54.486687-07:00,992.470458984375,10.851329,10851.329 +29548,2025-03-10T17:51:05.334983-07:00,992.4637451171875,10.848296,10848.296 +29549,2025-03-10T17:51:16.189302-07:00,992.47705078125,10.854319,10854.319 +29550,2025-03-10T17:51:27.043008-07:00,992.470458984375,10.853706,10853.706 +29551,2025-03-10T17:51:37.897673-07:00,992.4912719726562,10.854665,10854.665 +29552,2025-03-10T17:51:48.735634-07:00,992.4890747070312,10.837961,10837.961 +29553,2025-03-10T17:51:59.593258-07:00,992.4978637695312,10.857624,10857.624 +29554,2025-03-10T17:52:10.448003-07:00,992.4779663085938,10.854745,10854.745 +29555,2025-03-10T17:52:21.292998-07:00,992.4572143554688,10.844995,10844.995 +29556,2025-03-10T17:52:32.140062-07:00,992.4647827148438,10.847064,10847.064 +29557,2025-03-10T17:52:42.992166-07:00,992.4846801757812,10.852104,10852.104 +29558,2025-03-10T17:52:53.848012-07:00,992.4581298828125,10.855846,10855.846 +29559,2025-03-10T17:53:04.688530-07:00,992.4660034179688,10.840518,10840.518 +29560,2025-03-10T17:53:15.537212-07:00,992.4859619140625,10.848682,10848.682 +29561,2025-03-10T17:53:26.395381-07:00,992.4593505859375,10.858169,10858.169 +29562,2025-03-10T17:53:37.241390-07:00,992.4660034179688,10.846009,10846.009 +29563,2025-03-10T17:53:48.088570-07:00,992.4735717773438,10.84718,10847.18 +29564,2025-03-10T17:53:58.948179-07:00,992.4527587890625,10.859609,10859.609 +29565,2025-03-10T17:54:09.798011-07:00,992.5079956054688,10.849832,10849.832 +29566,2025-03-10T17:54:20.652257-07:00,992.4859619140625,10.854246,10854.246 +29567,2025-03-10T17:54:31.501012-07:00,992.4603271484375,10.848755,10848.755 +29568,2025-03-10T17:54:42.362368-07:00,992.4395141601562,10.861356,10861.356 +29569,2025-03-10T17:54:53.205472-07:00,992.4138793945312,10.843104,10843.104 +29570,2025-03-10T17:55:04.054017-07:00,992.4735717773438,10.848545,10848.545 +29571,2025-03-10T17:55:14.909896-07:00,992.4603271484375,10.855879,10855.879 +29572,2025-03-10T17:55:25.757013-07:00,992.474853515625,10.847117,10847.117 +29573,2025-03-10T17:55:36.608379-07:00,992.4537353515625,10.851366,10851.366 +29574,2025-03-10T17:55:47.447819-07:00,992.46826171875,10.83944,10839.44 +29575,2025-03-10T17:55:58.302466-07:00,992.4550170898438,10.854647,10854.647 +29576,2025-03-10T17:56:09.151987-07:00,992.4669799804688,10.849521,10849.521 +29577,2025-03-10T17:56:20.005219-07:00,992.4195556640625,10.853232,10853.232 +29578,2025-03-10T17:56:30.858027-07:00,992.4461059570312,10.852808,10852.808 +29579,2025-03-10T17:56:41.702204-07:00,992.4461059570312,10.844177,10844.177 +29580,2025-03-10T17:56:52.559500-07:00,992.4227294921875,10.857296,10857.296 +29581,2025-03-10T17:57:03.415063-07:00,992.437255859375,10.855563,10855.563 +29582,2025-03-10T17:57:14.268010-07:00,992.4227294921875,10.852947,10852.947 +29583,2025-03-10T17:57:25.120486-07:00,992.4306030273438,10.852476,10852.476 +29584,2025-03-10T17:57:35.976140-07:00,992.4572143554688,10.855654,10855.654 +29585,2025-03-10T17:57:46.827186-07:00,992.44921875,10.851046,10851.046 +29586,2025-03-10T17:57:57.678244-07:00,992.4483032226562,10.851058,10851.058 +29587,2025-03-10T17:58:08.528040-07:00,992.447021484375,10.849796,10849.796 +29588,2025-03-10T17:58:19.372009-07:00,992.4107055664062,10.843969,10843.969 +29589,2025-03-10T17:58:30.228062-07:00,992.4371948242188,10.856053,10856.053 +29590,2025-03-10T17:58:41.080011-07:00,992.4293823242188,10.851949,10851.949 +29591,2025-03-10T17:58:51.930351-07:00,992.409423828125,10.85034,10850.34 +29592,2025-03-10T17:59:02.784328-07:00,992.4151611328125,10.853977,10853.977 +29593,2025-03-10T17:59:13.637362-07:00,992.428466796875,10.853034,10853.034 +29594,2025-03-10T17:59:14.604737-07:00,992.4216918945312,0.967375,967.375 +29595,2025-03-10T17:59:24.497173-07:00,992.4129028320312,9.892436,9892.436 +29596,2025-03-10T17:59:35.345332-07:00,992.408447265625,10.848159,10848.159 +29597,2025-03-10T17:59:46.207021-07:00,992.4009399414062,10.861689,10861.689 +29598,2025-03-10T17:59:57.061160-07:00,992.3929443359375,10.854139,10854.139 +29599,2025-03-10T18:00:07.915538-07:00,992.4141235351562,10.854378,10854.378 +29600,2025-03-10T18:00:18.771018-07:00,992.4393920898438,10.85548,10855.48 +29601,2025-03-10T18:00:29.635021-07:00,992.431884765625,10.864003,10864.003 +29602,2025-03-10T18:00:40.486012-07:00,992.4328002929688,10.850991,10850.991 +29603,2025-03-10T18:00:51.341246-07:00,992.404052734375,10.855234,10855.234 +29604,2025-03-10T18:01:02.205250-07:00,992.4251708984375,10.864004,10864.004 +29605,2025-03-10T18:01:13.054144-07:00,992.3886108398438,10.848894,10848.894 +29606,2025-03-10T18:01:23.913015-07:00,992.362060546875,10.858871,10858.871 +29607,2025-03-10T18:01:34.763196-07:00,992.3942260742188,10.850181,10850.181 +29608,2025-03-10T18:01:45.617012-07:00,992.4141235351562,10.853816,10853.816 +29609,2025-03-10T18:01:56.473013-07:00,992.40087890625,10.856001,10856.001 +29610,2025-03-10T18:02:07.322374-07:00,992.3731079101562,10.849361,10849.361 +29611,2025-03-10T18:02:18.180264-07:00,992.3986206054688,10.85789,10857.89 +29612,2025-03-10T18:02:29.019179-07:00,992.40625,10.838915,10838.915 +29613,2025-03-10T18:02:39.880012-07:00,992.4393920898438,10.860833,10860.833 +29614,2025-03-10T18:02:50.728408-07:00,992.3753051757812,10.848396,10848.396 +29615,2025-03-10T18:03:01.573376-07:00,992.3853759765625,10.844968,10844.968 +29616,2025-03-10T18:03:12.422504-07:00,992.3908081054688,10.849128,10849.128 +29617,2025-03-10T18:03:23.278055-07:00,992.3964233398438,10.855551,10855.551 +29618,2025-03-10T18:03:34.123497-07:00,992.4163208007812,10.845442,10845.442 +29619,2025-03-10T18:03:44.981258-07:00,992.3884887695312,10.857761,10857.761 +29620,2025-03-10T18:03:55.837015-07:00,992.3875732421875,10.855757,10855.757 +29621,2025-03-10T18:04:06.686006-07:00,992.327880859375,10.848991,10848.991 +29622,2025-03-10T18:04:17.540015-07:00,992.3875732421875,10.854009,10854.009 +29623,2025-03-10T18:04:28.390009-07:00,992.38623046875,10.849994,10849.994 +29624,2025-03-10T18:04:39.230985-07:00,992.365478515625,10.840976,10840.976 +29625,2025-03-10T18:04:50.087463-07:00,992.373046875,10.856478,10856.478 +29626,2025-03-10T18:05:00.935638-07:00,992.3853149414062,10.848175,10848.175 +29627,2025-03-10T18:05:11.772157-07:00,992.3853149414062,10.836519,10836.519 +29628,2025-03-10T18:05:22.629004-07:00,992.4039916992188,10.856847,10856.847 +29629,2025-03-10T18:05:33.470007-07:00,992.3973388671875,10.841003,10841.003 +29630,2025-03-10T18:05:44.320328-07:00,992.3906860351562,10.850321,10850.321 +29631,2025-03-10T18:05:55.183752-07:00,992.3951416015625,10.863424,10863.424 +29632,2025-03-10T18:06:06.044684-07:00,992.3742065429688,10.860932,10860.932 +29633,2025-03-10T18:06:16.898691-07:00,992.3986206054688,10.854007,10854.007 +29634,2025-03-10T18:06:27.752681-07:00,992.37109375,10.85399,10853.99 +29635,2025-03-10T18:06:38.612668-07:00,992.3931884765625,10.859987,10859.987 +29636,2025-03-10T18:06:49.461668-07:00,992.3976440429688,10.849,10849.0 +29637,2025-03-10T18:07:00.314843-07:00,992.3843994140625,10.853175,10853.175 +29638,2025-03-10T18:07:11.184137-07:00,992.410888671875,10.869294,10869.294 +29639,2025-03-10T18:07:22.038740-07:00,992.4085693359375,10.854603,10854.603 +29640,2025-03-10T18:07:32.893647-07:00,992.4096069335938,10.854907,10854.907 +29641,2025-03-10T18:07:43.747580-07:00,992.424072265625,10.853933,10853.933 +29642,2025-03-10T18:07:54.609159-07:00,992.4020385742188,10.861579,10861.579 +29643,2025-03-10T18:08:05.462244-07:00,992.415283203125,10.853085,10853.085 +29644,2025-03-10T18:08:16.317879-07:00,992.4329833984375,10.855635,10855.635 +29645,2025-03-10T18:08:27.167948-07:00,992.4064331054688,10.850069,10850.069 +29646,2025-03-10T18:08:38.021047-07:00,992.4140014648438,10.853099,10853.099 +29647,2025-03-10T18:08:48.873969-07:00,992.4140014648438,10.852922,10852.922 +29648,2025-03-10T18:08:59.729158-07:00,992.4338989257812,10.855189,10855.189 +29649,2025-03-10T18:09:10.588916-07:00,992.420654296875,10.859758,10859.758 +29650,2025-03-10T18:09:21.438972-07:00,992.42626953125,10.850056,10850.056 +29651,2025-03-10T18:09:32.292751-07:00,992.420654296875,10.853779,10853.779 +29652,2025-03-10T18:09:43.146850-07:00,992.3997802734375,10.854099,10854.099 +29653,2025-03-10T18:09:54.001553-07:00,992.415283203125,10.854703,10854.703 +29654,2025-03-10T18:10:04.854991-07:00,992.420654296875,10.853438,10853.438 +29655,2025-03-10T18:10:15.709477-07:00,992.419677734375,10.854486,10854.486 +29656,2025-03-10T18:10:26.552929-07:00,992.3984985351562,10.843452,10843.452 +29657,2025-03-10T18:10:37.412669-07:00,992.38525390625,10.85974,10859.74 +29658,2025-03-10T18:10:48.256681-07:00,992.3909301757812,10.844012,10844.012 +29659,2025-03-10T18:10:59.115977-07:00,992.4107666015625,10.859296,10859.296 +29660,2025-03-10T18:11:09.964551-07:00,992.3909301757812,10.848574,10848.574 +29661,2025-03-10T18:11:20.814731-07:00,992.4227905273438,10.85018,10850.18 +29662,2025-03-10T18:11:31.668634-07:00,992.4161987304688,10.853903,10853.903 +29663,2025-03-10T18:11:42.519752-07:00,992.4271850585938,10.851118,10851.118 +29664,2025-03-10T18:11:53.368102-07:00,992.4625854492188,10.84835,10848.35 +29665,2025-03-10T18:12:04.215720-07:00,992.4095458984375,10.847618,10847.618 +29666,2025-03-10T18:12:15.066034-07:00,992.46484375,10.850314,10850.314 +29667,2025-03-10T18:12:25.918002-07:00,992.4494018554688,10.851968,10851.968 +29668,2025-03-10T18:12:36.772040-07:00,992.4138793945312,10.854038,10854.038 +29669,2025-03-10T18:12:47.619314-07:00,992.420654296875,10.847274,10847.274 +29670,2025-03-10T18:12:58.470068-07:00,992.4550170898438,10.850754,10850.754 +29671,2025-03-10T18:13:09.324736-07:00,992.474853515625,10.854668,10854.668 +29672,2025-03-10T18:13:20.172664-07:00,992.4735717773438,10.847928,10847.928 +29673,2025-03-10T18:13:31.017987-07:00,992.4505615234375,10.845323,10845.323 +29674,2025-03-10T18:13:41.875691-07:00,992.47705078125,10.857704,10857.704 +29675,2025-03-10T18:13:52.724055-07:00,992.4625244140625,10.848364,10848.364 +29676,2025-03-10T18:14:03.567822-07:00,992.4593505859375,10.843767,10843.767 +29677,2025-03-10T18:14:14.417116-07:00,992.450439453125,10.849294,10849.294 +29678,2025-03-10T18:14:25.265798-07:00,992.4628295898438,10.848682,10848.682 +29679,2025-03-10T18:14:36.108859-07:00,992.48046875,10.843061,10843.061 +29680,2025-03-10T18:14:46.953688-07:00,992.492431640625,10.844829,10844.829 +29681,2025-03-10T18:14:57.799770-07:00,992.4835815429688,10.846082,10846.082 +29682,2025-03-10T18:15:08.648022-07:00,992.4826049804688,10.848252,10848.252 +29683,2025-03-10T18:15:19.485997-07:00,992.4891967773438,10.837975,10837.975 +29684,2025-03-10T18:15:30.342003-07:00,992.5068969726562,10.856006,10856.006 +29685,2025-03-10T18:15:41.197156-07:00,992.5254516601562,10.855153,10855.153 +29686,2025-03-10T18:15:52.033687-07:00,992.4891357421875,10.836531,10836.531 +29687,2025-03-10T18:16:02.883972-07:00,992.509033203125,10.850285,10850.285 +29688,2025-03-10T18:16:13.730687-07:00,992.5001831054688,10.846715,10846.715 +29689,2025-03-10T18:16:24.575695-07:00,992.4970092773438,10.845008,10845.008 +29690,2025-03-10T18:16:35.422991-07:00,992.5301513671875,10.847296,10847.296 +29691,2025-03-10T18:16:46.283961-07:00,992.5014038085938,10.86097,10860.97 +29692,2025-03-10T18:16:57.122606-07:00,992.4859619140625,10.838645,10838.645 +29693,2025-03-10T18:17:07.975042-07:00,992.5045166015625,10.852436,10852.436 +29694,2025-03-10T18:17:18.821687-07:00,992.4823608398438,10.846645,10846.645 +29695,2025-03-10T18:17:29.671824-07:00,992.4813842773438,10.850137,10850.137 +29696,2025-03-10T18:17:40.520686-07:00,992.479248046875,10.848862,10848.862 +29697,2025-03-10T18:17:51.376902-07:00,992.4845581054688,10.856216,10856.216 +29698,2025-03-10T18:18:02.220338-07:00,992.5100708007812,10.843436,10843.436 +29699,2025-03-10T18:18:13.063953-07:00,992.4813232421875,10.843615,10843.615 +29700,2025-03-10T18:18:23.916812-07:00,992.4866943359375,10.852859,10852.859 +29701,2025-03-10T18:18:34.762967-07:00,992.4979858398438,10.846155,10846.155 +29702,2025-03-10T18:18:45.610770-07:00,992.5198364257812,10.847803,10847.803 +29703,2025-03-10T18:18:56.462724-07:00,992.4979858398438,10.851954,10851.954 +29704,2025-03-10T18:19:07.306746-07:00,992.4901733398438,10.844022,10844.022 +29705,2025-03-10T18:19:18.154887-07:00,992.45703125,10.848141,10848.141 +29706,2025-03-10T18:19:29.007860-07:00,992.50244140625,10.852973,10852.973 +29707,2025-03-10T18:19:39.846999-07:00,992.46923828125,10.839139,10839.139 +29708,2025-03-10T18:19:50.694979-07:00,992.514404296875,10.84798,10847.98 +29709,2025-03-10T18:20:01.550508-07:00,992.5001831054688,10.855529,10855.529 +29710,2025-03-10T18:20:12.393691-07:00,992.5010986328125,10.843183,10843.183 +29711,2025-03-10T18:20:23.244030-07:00,992.4957885742188,10.850339,10850.339 +29712,2025-03-10T18:20:34.090690-07:00,992.4935913085938,10.84666,10846.66 +29713,2025-03-10T18:20:44.927932-07:00,992.5267333984375,10.837242,10837.242 +29714,2025-03-10T18:20:55.770989-07:00,992.5399169921875,10.843057,10843.057 +29715,2025-03-10T18:21:06.618026-07:00,992.5332641601562,10.847037,10847.037 +29716,2025-03-10T18:21:17.469024-07:00,992.4967041015625,10.850998,10850.998 +29717,2025-03-10T18:21:28.313898-07:00,992.4989013671875,10.844874,10844.874 +29718,2025-03-10T18:21:39.170895-07:00,992.4824829101562,10.856997,10856.997 +29719,2025-03-10T18:21:50.015993-07:00,992.4913330078125,10.845098,10845.098 +29720,2025-03-10T18:22:00.871687-07:00,992.5099487304688,10.855694,10855.694 +29721,2025-03-10T18:22:11.720831-07:00,992.4745483398438,10.849144,10849.144 +29722,2025-03-10T18:22:22.573923-07:00,992.5089111328125,10.853092,10853.092 +29723,2025-03-10T18:22:33.428937-07:00,992.5099487304688,10.855014,10855.014 +29724,2025-03-10T18:22:44.271496-07:00,992.5032958984375,10.842559,10842.559 +29725,2025-03-10T18:22:55.121169-07:00,992.5023193359375,10.849673,10849.673 +29726,2025-03-10T18:23:05.976174-07:00,992.5023193359375,10.855005,10855.005 +29727,2025-03-10T18:23:16.822917-07:00,992.5231323242188,10.846743,10846.743 +29728,2025-03-10T18:23:27.673912-07:00,992.494384765625,10.850995,10850.995 +29729,2025-03-10T18:23:38.527686-07:00,992.4757690429688,10.853774,10853.774 +29730,2025-03-10T18:23:49.369532-07:00,992.5076293945312,10.841846,10841.846 +29731,2025-03-10T18:24:00.219690-07:00,992.5298461914062,10.850158,10850.158 +29732,2025-03-10T18:24:11.074876-07:00,992.5142822265625,10.855186,10855.186 +29733,2025-03-10T18:24:21.925954-07:00,992.52880859375,10.851078,10851.078 +29734,2025-03-10T18:24:32.769685-07:00,992.52001953125,10.843731,10843.731 +29735,2025-03-10T18:24:43.619244-07:00,992.515625,10.849559,10849.559 +29736,2025-03-10T18:24:54.466991-07:00,992.5067138671875,10.847747,10847.747 +29737,2025-03-10T18:25:05.326313-07:00,992.527587890625,10.859322,10859.322 +29738,2025-03-10T18:25:16.177274-07:00,992.481201171875,10.850961,10850.961 +29739,2025-03-10T18:25:27.021872-07:00,992.5133666992188,10.844598,10844.598 +29740,2025-03-10T18:25:37.869677-07:00,992.5187377929688,10.847805,10847.805 +29741,2025-03-10T18:25:48.722840-07:00,992.5398559570312,10.853163,10853.163 +29742,2025-03-10T18:25:59.564755-07:00,992.52001953125,10.841915,10841.915 +29743,2025-03-10T18:26:10.418941-07:00,992.540771484375,10.854186,10854.186 +29744,2025-03-10T18:26:21.270978-07:00,992.5133666992188,10.852037,10852.037 +29745,2025-03-10T18:26:32.117742-07:00,992.4921875,10.846764,10846.764 +29746,2025-03-10T18:26:42.977691-07:00,992.5474853515625,10.859949,10859.949 +29747,2025-03-10T18:26:53.828799-07:00,992.4921875,10.851108,10851.108 +29748,2025-03-10T18:27:04.675294-07:00,992.4957275390625,10.846495,10846.495 +29749,2025-03-10T18:27:15.529085-07:00,992.5552978515625,10.853791,10853.791 +29750,2025-03-10T18:27:26.383045-07:00,992.5354614257812,10.85396,10853.96 +29751,2025-03-10T18:27:37.233705-07:00,992.5342407226562,10.85066,10850.66 +29752,2025-03-10T18:27:48.094053-07:00,992.540771484375,10.860348,10860.348 +29753,2025-03-10T18:27:58.950022-07:00,992.5398559570312,10.855969,10855.969 +29754,2025-03-10T18:28:09.799367-07:00,992.5540771484375,10.849345,10849.345 +29755,2025-03-10T18:28:20.645927-07:00,992.5540771484375,10.84656,10846.56 +29756,2025-03-10T18:28:31.502257-07:00,992.5673217773438,10.85633,10856.33 +29757,2025-03-10T18:28:42.349685-07:00,992.56640625,10.847428,10847.428 +29758,2025-03-10T18:28:53.209369-07:00,992.5596923828125,10.859684,10859.684 +29759,2025-03-10T18:29:04.052119-07:00,992.587158203125,10.84275,10842.75 +29760,2025-03-10T18:29:14.905691-07:00,992.5673217773438,10.853572,10853.572 +29761,2025-03-10T18:29:25.759901-07:00,992.540771484375,10.85421,10854.21 +29762,2025-03-10T18:29:36.612930-07:00,992.5253295898438,10.853029,10853.029 +29763,2025-03-10T18:29:47.464690-07:00,992.5619506835938,10.85176,10851.76 +29764,2025-03-10T18:29:58.308773-07:00,992.5265502929688,10.844083,10844.083 +29765,2025-03-10T18:30:09.163063-07:00,992.5398559570312,10.85429,10854.29 +29766,2025-03-10T18:30:20.020668-07:00,992.57080078125,10.857605,10857.605 +29767,2025-03-10T18:30:30.861691-07:00,992.484619140625,10.841023,10841.023 +29768,2025-03-10T18:30:41.720939-07:00,992.5045166015625,10.859248,10859.248 +29769,2025-03-10T18:30:52.562030-07:00,992.5309448242188,10.841091,10841.091 +29770,2025-03-10T18:31:03.408541-07:00,992.5243530273438,10.846511,10846.511 +29771,2025-03-10T18:31:14.260112-07:00,992.5296630859375,10.851571,10851.571 +29772,2025-03-10T18:31:25.103365-07:00,992.5363159179688,10.843253,10843.253 +29773,2025-03-10T18:31:35.953879-07:00,992.5089111328125,10.850514,10850.514 +29774,2025-03-10T18:31:46.793026-07:00,992.5,10.839147,10839.147 +29775,2025-03-10T18:31:57.645296-07:00,992.5606079101562,10.85227,10852.27 +29776,2025-03-10T18:32:08.481731-07:00,992.539794921875,10.836435,10836.435 +29777,2025-03-10T18:32:19.342799-07:00,992.5596923828125,10.861068,10861.068 +29778,2025-03-10T18:32:30.184732-07:00,992.5252075195312,10.841933,10841.933 +29779,2025-03-10T18:32:41.027157-07:00,992.5596923828125,10.842425,10842.425 +29780,2025-03-10T18:32:51.879719-07:00,992.5516967773438,10.852562,10852.562 +29781,2025-03-10T18:33:02.724704-07:00,992.5570068359375,10.844985,10844.985 +29782,2025-03-10T18:33:13.568464-07:00,992.563720703125,10.84376,10843.76 +29783,2025-03-10T18:33:24.420028-07:00,992.562744140625,10.851564,10851.564 +29784,2025-03-10T18:33:35.265279-07:00,992.5693969726562,10.845251,10845.251 +29785,2025-03-10T18:33:46.099833-07:00,992.5968627929688,10.834554,10834.554 +29786,2025-03-10T18:33:56.953944-07:00,992.5826416015625,10.854111,10854.111 +29787,2025-03-10T18:34:07.794989-07:00,992.5438232421875,10.841045,10841.045 +29788,2025-03-10T18:34:18.650017-07:00,992.549560546875,10.855028,10855.028 +29789,2025-03-10T18:34:29.493322-07:00,992.5296020507812,10.843305,10843.305 +29790,2025-03-10T18:34:40.347507-07:00,992.5703125,10.854185,10854.185 +29791,2025-03-10T18:34:51.192270-07:00,992.5482788085938,10.844763,10844.763 +29792,2025-03-10T18:35:02.046216-07:00,992.5482788085938,10.853946,10853.946 +29793,2025-03-10T18:35:12.898670-07:00,992.5548706054688,10.852454,10852.454 +29794,2025-03-10T18:35:23.742696-07:00,992.53271484375,10.844026,10844.026 +29795,2025-03-10T18:35:34.600668-07:00,992.5526733398438,10.857972,10857.972 +29796,2025-03-10T18:35:45.457683-07:00,992.5449829101562,10.857015,10857.015 +29797,2025-03-10T18:35:56.301691-07:00,992.5516357421875,10.844008,10844.008 +29798,2025-03-10T18:36:07.150694-07:00,992.571533203125,10.849003,10849.003 +29799,2025-03-10T18:36:18.001694-07:00,992.571533203125,10.851,10851.0 +29800,2025-03-10T18:36:28.845006-07:00,992.5847778320312,10.843312,10843.312 +29801,2025-03-10T18:36:39.701286-07:00,992.575927734375,10.85628,10856.28 +29802,2025-03-10T18:36:50.543734-07:00,992.5560302734375,10.842448,10842.448 +29803,2025-03-10T18:37:01.402305-07:00,992.5901489257812,10.858571,10858.571 +29804,2025-03-10T18:37:12.253556-07:00,992.6024169921875,10.851251,10851.251 +29805,2025-03-10T18:37:23.101686-07:00,992.5945434570312,10.84813,10848.13 +29806,2025-03-10T18:37:33.942908-07:00,992.5868530273438,10.841222,10841.222 +29807,2025-03-10T18:37:44.788010-07:00,992.580322265625,10.845102,10845.102 +29808,2025-03-10T18:37:55.637296-07:00,992.5935668945312,10.849286,10849.286 +29809,2025-03-10T18:38:06.481972-07:00,992.598876953125,10.844676,10844.676 +29810,2025-03-10T18:38:17.332436-07:00,992.5591430664062,10.850464,10850.464 +29811,2025-03-10T18:38:28.174737-07:00,992.5392456054688,10.842301,10842.301 +29812,2025-03-10T18:38:39.030812-07:00,992.5780639648438,10.856075,10856.075 +29813,2025-03-10T18:38:49.881192-07:00,992.5912475585938,10.85038,10850.38 +29814,2025-03-10T18:39:00.727685-07:00,992.60546875,10.846493,10846.493 +29815,2025-03-10T18:39:11.574003-07:00,992.5701293945312,10.846318,10846.318 +29816,2025-03-10T18:39:22.421699-07:00,992.6111450195312,10.847696,10847.696 +29817,2025-03-10T18:39:33.272800-07:00,992.5900268554688,10.851101,10851.101 +29818,2025-03-10T18:39:44.119509-07:00,992.5692138671875,10.846709,10846.709 +29819,2025-03-10T18:39:54.963668-07:00,992.5758056640625,10.844159,10844.159 +29820,2025-03-10T18:40:05.810909-07:00,992.6177978515625,10.847241,10847.241 +29821,2025-03-10T18:40:16.663675-07:00,992.5943603515625,10.852766,10852.766 +29822,2025-03-10T18:40:27.503856-07:00,992.5801391601562,10.840181,10840.181 +29823,2025-03-10T18:40:38.353034-07:00,992.607666015625,10.849178,10849.178 +29824,2025-03-10T18:40:49.206281-07:00,992.606689453125,10.853247,10853.247 +29825,2025-03-10T18:41:00.048370-07:00,992.6143188476562,10.842089,10842.089 +29826,2025-03-10T18:41:10.898064-07:00,992.5789184570312,10.849694,10849.694 +29827,2025-03-10T18:41:21.740686-07:00,992.5921630859375,10.842622,10842.622 +29828,2025-03-10T18:41:32.597816-07:00,992.5987548828125,10.85713,10857.13 +29829,2025-03-10T18:41:43.443765-07:00,992.611083984375,10.845949,10845.949 +29830,2025-03-10T18:41:54.293683-07:00,992.5902099609375,10.849918,10849.918 +29831,2025-03-10T18:42:05.148951-07:00,992.5978393554688,10.855268,10855.268 +29832,2025-03-10T18:42:15.996834-07:00,992.5879516601562,10.847883,10847.883 +29833,2025-03-10T18:42:26.849097-07:00,992.57568359375,10.852263,10852.263 +29834,2025-03-10T18:42:37.696251-07:00,992.6233520507812,10.847154,10847.154 +29835,2025-03-10T18:42:48.549979-07:00,992.6233520507812,10.853728,10853.728 +29836,2025-03-10T18:42:59.398783-07:00,992.624267578125,10.848804,10848.804 +29837,2025-03-10T18:43:10.245239-07:00,992.6088256835938,10.846456,10846.456 +29838,2025-03-10T18:43:21.100987-07:00,992.611083984375,10.855748,10855.748 +29839,2025-03-10T18:43:31.943686-07:00,992.6021728515625,10.842699,10842.699 +29840,2025-03-10T18:43:42.798692-07:00,992.614501953125,10.855006,10855.006 +29841,2025-03-10T18:43:53.647010-07:00,992.6542358398438,10.848318,10848.318 +29842,2025-03-10T18:44:04.501730-07:00,992.6595458984375,10.85472,10854.72 +29843,2025-03-10T18:44:15.344734-07:00,992.6387329101562,10.843004,10843.004 +29844,2025-03-10T18:44:26.204766-07:00,992.62548828125,10.860032,10860.032 +29845,2025-03-10T18:44:37.055032-07:00,992.6121826171875,10.850266,10850.266 +29846,2025-03-10T18:44:47.902916-07:00,992.6109619140625,10.847884,10847.884 +29847,2025-03-10T18:44:58.755089-07:00,992.5967407226562,10.852173,10852.173 +29848,2025-03-10T18:45:09.605176-07:00,992.60205078125,10.850087,10850.087 +29849,2025-03-10T18:45:20.458045-07:00,992.5878295898438,10.852869,10852.869 +29850,2025-03-10T18:45:31.300687-07:00,992.6209106445312,10.842642,10842.642 +29851,2025-03-10T18:45:42.158276-07:00,992.6475219726562,10.857589,10857.589 +29852,2025-03-10T18:45:53.008519-07:00,992.6187744140625,10.850243,10850.243 +29853,2025-03-10T18:46:03.856658-07:00,992.6240844726562,10.848139,10848.139 +29854,2025-03-10T18:46:14.716849-07:00,992.598876953125,10.860191,10860.191 +29855,2025-03-10T18:46:25.566934-07:00,992.6306762695312,10.850085,10850.085 +29856,2025-03-10T18:46:36.419688-07:00,992.6218872070312,10.852754,10852.754 +29857,2025-03-10T18:46:47.273691-07:00,992.6296997070312,10.854003,10854.003 +29858,2025-03-10T18:46:58.131321-07:00,992.5965576171875,10.85763,10857.63 +29859,2025-03-10T18:47:08.982832-07:00,992.6019287109375,10.851511,10851.511 +29860,2025-03-10T18:47:19.838668-07:00,992.6275024414062,10.855836,10855.836 +29861,2025-03-10T18:47:30.691830-07:00,992.6275024414062,10.853162,10853.162 +29862,2025-03-10T18:47:41.541675-07:00,992.655029296875,10.849845,10849.845 +29863,2025-03-10T18:47:52.389691-07:00,992.6482543945312,10.848016,10848.016 +29864,2025-03-10T18:48:03.233815-07:00,992.668212890625,10.844124,10844.124 +29865,2025-03-10T18:48:14.090941-07:00,992.6539916992188,10.857126,10857.126 +29866,2025-03-10T18:48:24.934086-07:00,992.6473388671875,10.843145,10843.145 +29867,2025-03-10T18:48:35.788881-07:00,992.6394653320312,10.854795,10854.795 +29868,2025-03-10T18:48:46.639566-07:00,992.6328125,10.850685,10850.685 +29869,2025-03-10T18:48:57.488725-07:00,992.67919921875,10.849159,10849.159 +29870,2025-03-10T18:49:08.340740-07:00,992.6593627929688,10.852015,10852.015 +29871,2025-03-10T18:49:19.185810-07:00,992.5908813476562,10.84507,10845.07 +29872,2025-03-10T18:49:30.036035-07:00,992.6527099609375,10.850225,10850.225 +29873,2025-03-10T18:49:40.888690-07:00,992.6504516601562,10.852655,10852.655 +29874,2025-03-10T18:49:51.737937-07:00,992.6759643554688,10.849247,10849.247 +29875,2025-03-10T18:50:02.590691-07:00,992.6769409179688,10.852754,10852.754 +29876,2025-03-10T18:50:13.439745-07:00,992.6504516601562,10.849054,10849.054 +29877,2025-03-10T18:50:24.287377-07:00,992.6239624023438,10.847632,10847.632 +29878,2025-03-10T18:50:35.145009-07:00,992.6428833007812,10.857632,10857.632 +29879,2025-03-10T18:50:45.998024-07:00,992.629638671875,10.853015,10853.015 +29880,2025-03-10T18:50:56.848177-07:00,992.66845703125,10.850153,10850.153 +29881,2025-03-10T18:51:07.697963-07:00,992.6495361328125,10.849786,10849.786 +29882,2025-03-10T18:51:18.549868-07:00,992.640625,10.851905,10851.905 +29883,2025-03-10T18:51:29.403881-07:00,992.6604614257812,10.854013,10854.013 +29884,2025-03-10T18:51:40.264605-07:00,992.6286010742188,10.860724,10860.724 +29885,2025-03-10T18:51:51.115213-07:00,992.6528930664062,10.850608,10850.608 +29886,2025-03-10T18:52:01.967407-07:00,992.6737670898438,10.852194,10852.194 +29887,2025-03-10T18:52:12.821463-07:00,992.6660766601562,10.854056,10854.056 +29888,2025-03-10T18:52:23.670694-07:00,992.64501953125,10.849231,10849.231 +29889,2025-03-10T18:52:34.531654-07:00,992.6228637695312,10.86096,10860.96 +29890,2025-03-10T18:52:45.386608-07:00,992.6771850585938,10.854954,10854.954 +29891,2025-03-10T18:52:56.240286-07:00,992.6427612304688,10.853678,10853.678 +29892,2025-03-10T18:53:07.096964-07:00,992.6758422851562,10.856678,10856.678 +29893,2025-03-10T18:53:17.954202-07:00,992.6626586914062,10.857238,10857.238 +29894,2025-03-10T18:53:28.804279-07:00,992.6129760742188,10.850077,10850.077 +29895,2025-03-10T18:53:39.657393-07:00,992.6417236328125,10.853114,10853.114 +29896,2025-03-10T18:53:50.505690-07:00,992.6328735351562,10.848297,10848.297 +29897,2025-03-10T18:54:01.367915-07:00,992.6448364257812,10.862225,10862.225 +29898,2025-03-10T18:54:12.220822-07:00,992.6316528320312,10.852907,10852.907 +29899,2025-03-10T18:54:23.076045-07:00,992.6448364257812,10.855223,10855.223 +29900,2025-03-10T18:54:33.930129-07:00,992.6646728515625,10.854084,10854.084 +29901,2025-03-10T18:54:44.778691-07:00,992.6359252929688,10.848562,10848.562 +29902,2025-03-10T18:54:55.639621-07:00,992.6558837890625,10.86093,10860.93 +29903,2025-03-10T18:55:06.481920-07:00,992.682373046875,10.842299,10842.299 +29904,2025-03-10T18:55:17.336685-07:00,992.6416625976562,10.854765,10854.765 +29905,2025-03-10T18:55:28.197687-07:00,992.6217041015625,10.861002,10861.002 +29906,2025-03-10T18:55:39.040668-07:00,992.6470336914062,10.842981,10842.981 +29907,2025-03-10T18:55:49.899668-07:00,992.6681518554688,10.859,10859.0 +29908,2025-03-10T18:56:00.740207-07:00,992.6592407226562,10.840539,10840.539 +29909,2025-03-10T18:56:11.592692-07:00,992.6659545898438,10.852485,10852.485 +29910,2025-03-10T18:56:22.448574-07:00,992.6659545898438,10.855882,10855.882 +29911,2025-03-10T18:56:33.303946-07:00,992.6646118164062,10.855372,10855.372 +29912,2025-03-10T18:56:44.158694-07:00,992.650390625,10.854748,10854.748 +29913,2025-03-10T18:56:55.010681-07:00,992.6845092773438,10.851987,10851.987 +29914,2025-03-10T18:57:05.863945-07:00,992.6777954101562,10.853264,10853.264 +29915,2025-03-10T18:57:16.722691-07:00,992.6493530273438,10.858746,10858.746 +29916,2025-03-10T18:57:27.572684-07:00,992.62060546875,10.849993,10849.993 +29917,2025-03-10T18:57:38.431928-07:00,992.661376953125,10.859244,10859.244 +29918,2025-03-10T18:57:49.287541-07:00,992.6282958984375,10.855613,10855.613 +29919,2025-03-10T18:58:00.137658-07:00,992.6493530273438,10.850117,10850.117 +29920,2025-03-10T18:58:10.984278-07:00,992.614990234375,10.84662,10846.62 +29921,2025-03-10T18:58:21.828991-07:00,992.63720703125,10.844713,10844.713 +29922,2025-03-10T18:58:32.678343-07:00,992.6415405273438,10.849352,10849.352 +29923,2025-03-10T18:58:43.526747-07:00,992.6626586914062,10.848404,10848.404 +29924,2025-03-10T18:58:54.368247-07:00,992.6348266601562,10.8415,10841.5 +29925,2025-03-10T18:59:05.221691-07:00,992.6415405273438,10.853444,10853.444 +29926,2025-03-10T18:59:16.072774-07:00,992.62060546875,10.851083,10851.083 +29927,2025-03-10T18:59:26.922422-07:00,992.65478515625,10.849648,10849.648 +29928,2025-03-10T18:59:37.776227-07:00,992.6273193359375,10.853805,10853.805 +29929,2025-03-10T18:59:48.623907-07:00,992.6140747070312,10.84768,10847.68 +29930,2025-03-10T18:59:59.473036-07:00,992.6405639648438,10.849129,10849.129 +29931,2025-03-10T19:00:10.321853-07:00,992.6459350585938,10.848817,10848.817 +29932,2025-03-10T19:00:21.172444-07:00,992.6326293945312,10.850591,10850.591 +29933,2025-03-10T19:00:32.021688-07:00,992.6525268554688,10.849244,10849.244 +29934,2025-03-10T19:00:42.867820-07:00,992.6459350585938,10.846132,10846.132 +29935,2025-03-10T19:00:53.724830-07:00,992.6370239257812,10.85701,10857.01 +29936,2025-03-10T19:01:04.577857-07:00,992.618408203125,10.853027,10853.027 +29937,2025-03-10T19:01:15.429687-07:00,992.6436157226562,10.85183,10851.83 +29938,2025-03-10T19:01:26.282686-07:00,992.6537475585938,10.852999,10852.999 +29939,2025-03-10T19:01:37.127929-07:00,992.623779296875,10.845243,10845.243 +29940,2025-03-10T19:01:47.986690-07:00,992.63037109375,10.858761,10858.761 +29941,2025-03-10T19:01:58.834733-07:00,992.62939453125,10.848043,10848.043 +29942,2025-03-10T19:02:09.671846-07:00,992.6492919921875,10.837113,10837.113 +29943,2025-03-10T19:02:20.526979-07:00,992.6104736328125,10.855133,10855.133 +29944,2025-03-10T19:02:31.369922-07:00,992.5962524414062,10.842943,10842.943 +29945,2025-03-10T19:02:42.216999-07:00,992.594970703125,10.847077,10847.077 +29946,2025-03-10T19:02:53.055914-07:00,992.5884399414062,10.838915,10838.915 +29947,2025-03-10T19:03:03.902747-07:00,992.58740234375,10.846833,10846.833 +29948,2025-03-10T19:03:14.747299-07:00,992.58740234375,10.844552,10844.552 +29949,2025-03-10T19:03:25.589926-07:00,992.5940551757812,10.842627,10842.627 +29950,2025-03-10T19:03:36.438980-07:00,992.5940551757812,10.849054,10849.054 +29951,2025-03-10T19:03:47.280687-07:00,992.6138916015625,10.841707,10841.707 +29952,2025-03-10T19:03:58.117960-07:00,992.5861206054688,10.837273,10837.273 +29953,2025-03-10T19:04:08.965156-07:00,992.5851440429688,10.847196,10847.196 +29954,2025-03-10T19:04:19.805818-07:00,992.591796875,10.840662,10840.662 +29955,2025-03-10T19:04:30.648005-07:00,992.59716796875,10.842187,10842.187 +29956,2025-03-10T19:04:41.487030-07:00,992.6248168945312,10.839025,10839.025 +29957,2025-03-10T19:04:52.332167-07:00,992.6235961914062,10.845137,10845.137 +29958,2025-03-10T19:05:03.176689-07:00,992.609375,10.844522,10844.522 +29959,2025-03-10T19:05:14.022953-07:00,992.609375,10.846264,10846.264 +29960,2025-03-10T19:05:24.863884-07:00,992.5939331054688,10.840931,10840.931 +29961,2025-03-10T19:05:35.708691-07:00,992.5872802734375,10.844807,10844.807 +29962,2025-03-10T19:05:46.559205-07:00,992.5440673828125,10.850514,10850.514 +29963,2025-03-10T19:05:57.445790-07:00,992.5850219726562,10.886585,10886.585 +29964,2025-03-10T19:06:08.289894-07:00,992.579345703125,10.844104,10844.104 +29965,2025-03-10T19:06:19.126743-07:00,992.5770874023438,10.836849,10836.849 +29966,2025-03-10T19:06:29.963719-07:00,992.5728149414062,10.836976,10836.976 +29967,2025-03-10T19:06:40.809752-07:00,992.5552978515625,10.846033,10846.033 +29968,2025-03-10T19:06:51.650168-07:00,992.5562744140625,10.840416,10840.416 +29969,2025-03-10T19:07:02.501753-07:00,992.5761108398438,10.851585,10851.585 +29970,2025-03-10T19:07:13.341160-07:00,992.568603515625,10.839407,10839.407 +29971,2025-03-10T19:07:24.179844-07:00,992.5739135742188,10.838684,10838.684 +29972,2025-03-10T19:07:35.032024-07:00,992.6017456054688,10.85218,10852.18 +29973,2025-03-10T19:07:45.865757-07:00,992.5672607421875,10.833733,10833.733 +29974,2025-03-10T19:07:56.720135-07:00,992.5795288085938,10.854378,10854.378 +29975,2025-03-10T19:08:07.559236-07:00,992.5362548828125,10.839101,10839.101 +29976,2025-03-10T19:08:18.405545-07:00,992.5429077148438,10.846309,10846.309 +29977,2025-03-10T19:08:29.252741-07:00,992.5773315429688,10.847196,10847.196 +29978,2025-03-10T19:08:40.106726-07:00,992.6090698242188,10.853985,10853.985 +29979,2025-03-10T19:08:50.951747-07:00,992.5538940429688,10.845021,10845.021 +29980,2025-03-10T19:09:01.794748-07:00,992.566162109375,10.843001,10843.001 +29981,2025-03-10T19:09:12.638801-07:00,992.5396728515625,10.844053,10844.053 +29982,2025-03-10T19:09:23.489186-07:00,992.5516357421875,10.850385,10850.385 +29983,2025-03-10T19:09:34.327730-07:00,992.5529174804688,10.838544,10838.544 +29984,2025-03-10T19:09:45.177750-07:00,992.5714721679688,10.85002,10850.02 +29985,2025-03-10T19:09:56.011759-07:00,992.53173828125,10.834009,10834.009 +29986,2025-03-10T19:10:06.865005-07:00,992.5626831054688,10.853246,10853.246 +29987,2025-03-10T19:10:17.709102-07:00,992.542724609375,10.844097,10844.097 +29988,2025-03-10T19:10:28.545004-07:00,992.583740234375,10.835902,10835.902 +29989,2025-03-10T19:10:39.388742-07:00,992.53515625,10.843738,10843.738 +29990,2025-03-10T19:10:50.234591-07:00,992.5626831054688,10.845849,10845.849 +29991,2025-03-10T19:11:01.084308-07:00,992.5272827148438,10.849717,10849.717 +29992,2025-03-10T19:11:11.931059-07:00,992.533935546875,10.846751,10846.751 +29993,2025-03-10T19:11:22.774264-07:00,992.5726318359375,10.843205,10843.205 +29994,2025-03-10T19:11:33.623746-07:00,992.547119140625,10.849482,10849.482 +29995,2025-03-10T19:11:44.480870-07:00,992.5670166015625,10.857124,10857.124 +29996,2025-03-10T19:11:55.323754-07:00,992.53955078125,10.842884,10842.884 +29997,2025-03-10T19:12:06.171804-07:00,992.5460815429688,10.84805,10848.05 +29998,2025-03-10T19:12:17.011163-07:00,992.55712890625,10.839359,10839.359 +29999,2025-03-10T19:12:27.866160-07:00,992.5108032226562,10.854997,10854.997 +30000,2025-03-10T19:12:38.703051-07:00,992.4974975585938,10.836891,10836.891 +30001,2025-03-10T19:12:49.548987-07:00,992.5770263671875,10.845936,10845.936 +30002,2025-03-10T19:13:00.388997-07:00,992.563720703125,10.84001,10840.01 +30003,2025-03-10T19:13:11.238917-07:00,992.51611328125,10.84992,10849.92 +30004,2025-03-10T19:13:22.083736-07:00,992.5349731445312,10.844819,10844.819 +30005,2025-03-10T19:13:32.939003-07:00,992.5491943359375,10.855267,10855.267 +30006,2025-03-10T19:13:43.790069-07:00,992.521728515625,10.851066,10851.066 +30007,2025-03-10T19:13:54.631796-07:00,992.6101684570312,10.841727,10841.727 +30008,2025-03-10T19:14:05.473747-07:00,992.6088256835938,10.841951,10841.951 +30009,2025-03-10T19:14:16.325310-07:00,992.5879516601562,10.851563,10851.563 +30010,2025-03-10T19:14:27.164951-07:00,992.57568359375,10.839641,10839.641 +30011,2025-03-10T19:14:38.018167-07:00,992.5889282226562,10.853216,10853.216 +30012,2025-03-10T19:14:48.866577-07:00,992.6088256835938,10.84841,10848.41 +30013,2025-03-10T19:14:59.704753-07:00,992.5889282226562,10.838176,10838.176 +30014,2025-03-10T19:15:10.563070-07:00,992.6343994140625,10.858317,10858.317 +30015,2025-03-10T19:15:21.401076-07:00,992.6068725585938,10.838006,10838.006 +30016,2025-03-10T19:15:32.254033-07:00,992.5889282226562,10.852957,10852.957 +30017,2025-03-10T19:15:43.096747-07:00,992.6353149414062,10.842714,10842.714 +30018,2025-03-10T19:15:53.941088-07:00,992.6012573242188,10.844341,10844.341 +30019,2025-03-10T19:16:04.796019-07:00,992.6144409179688,10.854931,10854.931 +30020,2025-03-10T19:16:15.645022-07:00,992.6144409179688,10.849003,10849.003 +30021,2025-03-10T19:16:26.487260-07:00,992.6144409179688,10.842238,10842.238 +30022,2025-03-10T19:16:37.330811-07:00,992.6333618164062,10.843551,10843.551 +30023,2025-03-10T19:16:48.173154-07:00,992.5393676757812,10.842343,10842.343 +30024,2025-03-10T19:16:59.032004-07:00,992.6144409179688,10.85885,10858.85 +30025,2025-03-10T19:17:09.878029-07:00,992.6188354492188,10.846025,10846.025 +30026,2025-03-10T19:17:20.719549-07:00,992.638671875,10.84152,10841.52 +30027,2025-03-10T19:17:31.568749-07:00,992.6046142578125,10.8492,10849.2 +30028,2025-03-10T19:17:42.404928-07:00,992.5979614257812,10.836179,10836.179 +30029,2025-03-10T19:17:53.259789-07:00,992.603271484375,10.854861,10854.861 +30030,2025-03-10T19:18:04.100759-07:00,992.6320190429688,10.84097,10840.97 +30031,2025-03-10T19:18:14.949073-07:00,992.6232299804688,10.848314,10848.314 +30032,2025-03-10T19:18:25.789785-07:00,992.6288452148438,10.840712,10840.712 +30033,2025-03-10T19:18:36.643941-07:00,992.6221923828125,10.854156,10854.156 +30034,2025-03-10T19:18:47.488953-07:00,992.64306640625,10.845012,10845.012 +30035,2025-03-10T19:18:58.326754-07:00,992.6420288085938,10.837801,10837.801 +30036,2025-03-10T19:19:09.181879-07:00,992.6408081054688,10.855125,10855.125 +30037,2025-03-10T19:19:20.022059-07:00,992.6738891601562,10.84018,10840.18 +30038,2025-03-10T19:19:30.870491-07:00,992.6318969726562,10.848432,10848.432 +30039,2025-03-10T19:19:41.713269-07:00,992.6253051757812,10.842778,10842.778 +30040,2025-03-10T19:19:52.554806-07:00,992.6729736328125,10.841537,10841.537 +30041,2025-03-10T19:20:03.400749-07:00,992.6375122070312,10.845943,10845.943 +30042,2025-03-10T19:20:14.244065-07:00,992.6507568359375,10.843316,10843.316 +30043,2025-03-10T19:20:25.097103-07:00,992.670654296875,10.853038,10853.038 +30044,2025-03-10T19:20:35.938749-07:00,992.6640625,10.841646,10841.646 +30045,2025-03-10T19:20:46.782806-07:00,992.6826782226562,10.844057,10844.057 +30046,2025-03-10T19:20:57.621817-07:00,992.7157592773438,10.839011,10839.011 +30047,2025-03-10T19:21:08.473434-07:00,992.6560668945312,10.851617,10851.617 +30048,2025-03-10T19:21:19.312993-07:00,992.7081298828125,10.839559,10839.559 +30049,2025-03-10T19:21:30.151945-07:00,992.689208984375,10.838952,10838.952 +30050,2025-03-10T19:21:40.999389-07:00,992.68701171875,10.847444,10847.444 +30051,2025-03-10T19:21:51.839198-07:00,992.6882934570312,10.839809,10839.809 +30052,2025-03-10T19:22:02.685053-07:00,992.6846923828125,10.845855,10845.855 +30053,2025-03-10T19:22:13.528122-07:00,992.692626953125,10.843069,10843.069 +30054,2025-03-10T19:22:24.377749-07:00,992.697998046875,10.849627,10849.627 +30055,2025-03-10T19:22:35.215735-07:00,992.7190551757812,10.837986,10837.986 +30056,2025-03-10T19:22:46.058161-07:00,992.7257690429688,10.842426,10842.426 +30057,2025-03-10T19:22:56.908006-07:00,992.7112426757812,10.849845,10849.845 +30058,2025-03-10T19:23:07.750512-07:00,992.7086181640625,10.842506,10842.506 +30059,2025-03-10T19:23:18.597753-07:00,992.7086181640625,10.847241,10847.241 +30060,2025-03-10T19:23:29.453403-07:00,992.7244262695312,10.85565,10855.65 +30061,2025-03-10T19:23:40.296970-07:00,992.7363891601562,10.843567,10843.567 +30062,2025-03-10T19:23:51.146032-07:00,992.7218627929688,10.849062,10849.062 +30063,2025-03-10T19:24:02.000743-07:00,992.7033081054688,10.854711,10854.711 +30064,2025-03-10T19:24:12.844786-07:00,992.720947265625,10.844043,10844.043 +30065,2025-03-10T19:24:23.697869-07:00,992.6878051757812,10.853083,10853.083 +30066,2025-03-10T19:24:34.545104-07:00,992.7274780273438,10.847235,10847.235 +30067,2025-03-10T19:24:45.392990-07:00,992.7067260742188,10.847886,10847.886 +30068,2025-03-10T19:24:56.245178-07:00,992.7274780273438,10.852188,10852.188 +30069,2025-03-10T19:25:07.086753-07:00,992.7463989257812,10.841575,10841.575 +30070,2025-03-10T19:25:17.935749-07:00,992.7076416015625,10.848996,10848.996 +30071,2025-03-10T19:25:28.785816-07:00,992.69873046875,10.850067,10850.067 +30072,2025-03-10T19:25:39.639143-07:00,992.67236328125,10.853327,10853.327 +30073,2025-03-10T19:25:50.482084-07:00,992.703125,10.842941,10842.941 +30074,2025-03-10T19:26:01.320739-07:00,992.7120361328125,10.838655,10838.655 +30075,2025-03-10T19:26:12.165751-07:00,992.696533203125,10.845012,10845.012 +30076,2025-03-10T19:26:23.012890-07:00,992.6822509765625,10.847139,10847.139 +30077,2025-03-10T19:26:33.863753-07:00,992.6755981445312,10.850863,10850.863 +30078,2025-03-10T19:26:44.709803-07:00,992.70751953125,10.84605,10846.05 +30079,2025-03-10T19:26:55.560071-07:00,992.6456298828125,10.850268,10850.268 +30080,2025-03-10T19:27:06.390750-07:00,992.6876831054688,10.830679,10830.679 +30081,2025-03-10T19:27:17.237725-07:00,992.6810302734375,10.846975,10846.975 +30082,2025-03-10T19:27:28.081754-07:00,992.6799926757812,10.844029,10844.029 +30083,2025-03-10T19:27:38.919888-07:00,992.7008666992188,10.838134,10838.134 +30084,2025-03-10T19:27:49.755722-07:00,992.6654663085938,10.835834,10835.834 +30085,2025-03-10T19:28:00.598471-07:00,992.6932983398438,10.842749,10842.749 +30086,2025-03-10T19:28:11.435473-07:00,992.6799926757812,10.837002,10837.002 +30087,2025-03-10T19:28:22.280855-07:00,992.66015625,10.845382,10845.382 +30088,2025-03-10T19:28:33.127676-07:00,992.677734375,10.846821,10846.821 +30089,2025-03-10T19:28:43.971759-07:00,992.6866455078125,10.844083,10844.083 +30090,2025-03-10T19:28:54.814996-07:00,992.6512451171875,10.843237,10843.237 +30091,2025-03-10T19:29:05.658748-07:00,992.7095336914062,10.843752,10843.752 +30092,2025-03-10T19:29:16.499660-07:00,992.6920166015625,10.840912,10840.912 +30093,2025-03-10T19:29:27.337051-07:00,992.6843872070312,10.837391,10837.391 +30094,2025-03-10T19:29:38.183121-07:00,992.677734375,10.84607,10846.07 +30095,2025-03-10T19:29:49.025804-07:00,992.676513671875,10.842683,10842.683 +30096,2025-03-10T19:29:59.862039-07:00,992.68212890625,10.836235,10836.235 +30097,2025-03-10T19:30:10.702804-07:00,992.676513671875,10.840765,10840.765 +30098,2025-03-10T19:30:21.552752-07:00,992.676513671875,10.849948,10849.948 +30099,2025-03-10T19:30:32.389223-07:00,992.68310546875,10.836471,10836.471 +30100,2025-03-10T19:30:43.228748-07:00,992.749267578125,10.839525,10839.525 +30101,2025-03-10T19:30:54.078743-07:00,992.7228393554688,10.849995,10849.995 +30102,2025-03-10T19:31:04.926968-07:00,992.735107421875,10.848225,10848.225 +30103,2025-03-10T19:31:15.763907-07:00,992.7218627929688,10.836939,10836.939 +30104,2025-03-10T19:31:26.607969-07:00,992.7151489257812,10.844062,10844.062 +30105,2025-03-10T19:31:37.454954-07:00,992.7073364257812,10.846985,10846.985 +30106,2025-03-10T19:31:48.296817-07:00,992.6599731445312,10.841863,10841.863 +30107,2025-03-10T19:31:59.142992-07:00,992.7129516601562,10.846175,10846.175 +30108,2025-03-10T19:32:09.989612-07:00,992.6775512695312,10.84662,10846.62 +30109,2025-03-10T19:32:20.841005-07:00,992.69970703125,10.851393,10851.393 +30110,2025-03-10T19:32:31.682567-07:00,992.706298828125,10.841562,10841.562 +30111,2025-03-10T19:32:42.520263-07:00,992.7139282226562,10.837696,10837.696 +30112,2025-03-10T19:32:53.373098-07:00,992.6798706054688,10.852835,10852.835 +30113,2025-03-10T19:33:04.212435-07:00,992.6917724609375,10.839337,10839.337 +30114,2025-03-10T19:33:15.067752-07:00,992.68212890625,10.855317,10855.317 +30115,2025-03-10T19:33:25.910896-07:00,992.7019653320312,10.843144,10843.144 +30116,2025-03-10T19:33:36.751874-07:00,992.6798706054688,10.840978,10840.978 +30117,2025-03-10T19:33:47.588980-07:00,992.6732788085938,10.837106,10837.106 +30118,2025-03-10T19:33:58.429146-07:00,992.6741943359375,10.840166,10840.166 +30119,2025-03-10T19:34:09.282754-07:00,992.6732788085938,10.853608,10853.608 +30120,2025-03-10T19:34:20.120498-07:00,992.65771484375,10.837744,10837.744 +30121,2025-03-10T19:34:30.959746-07:00,992.6775512695312,10.839248,10839.248 +30122,2025-03-10T19:34:41.801747-07:00,992.6917724609375,10.842001,10842.001 +30123,2025-03-10T19:34:52.643753-07:00,992.6907958984375,10.842006,10842.006 +30124,2025-03-10T19:35:03.496751-07:00,992.6842041015625,10.852998,10852.998 +30125,2025-03-10T19:35:14.346072-07:00,992.6961669921875,10.849321,10849.321 +30126,2025-03-10T19:35:25.189066-07:00,992.6917724609375,10.842994,10842.994 +30127,2025-03-10T19:35:36.033794-07:00,992.7040405273438,10.844728,10844.728 +30128,2025-03-10T19:35:46.886738-07:00,992.665283203125,10.852944,10852.944 +30129,2025-03-10T19:35:57.734994-07:00,992.7050170898438,10.848256,10848.256 +30130,2025-03-10T19:36:08.571675-07:00,992.6984252929688,10.836681,10836.681 +30131,2025-03-10T19:36:19.420804-07:00,992.706298828125,10.849129,10849.129 +30132,2025-03-10T19:36:30.264748-07:00,992.6907958984375,10.843944,10843.944 +30133,2025-03-10T19:36:41.118748-07:00,992.7380981445312,10.854,10854.0 +30134,2025-03-10T19:36:51.956823-07:00,992.7106323242188,10.838075,10838.075 +30135,2025-03-10T19:37:02.799860-07:00,992.723876953125,10.843037,10843.037 +30136,2025-03-10T19:37:13.643039-07:00,992.697509765625,10.843179,10843.179 +30137,2025-03-10T19:37:24.486958-07:00,992.7503662109375,10.843919,10843.919 +30138,2025-03-10T19:37:35.329806-07:00,992.73583984375,10.842848,10842.848 +30139,2025-03-10T19:37:46.172425-07:00,992.73583984375,10.842619,10842.619 +30140,2025-03-10T19:37:57.016213-07:00,992.72265625,10.843788,10843.788 +30141,2025-03-10T19:38:07.862059-07:00,992.7084350585938,10.845846,10845.846 +30142,2025-03-10T19:38:18.712880-07:00,992.7514038085938,10.850821,10850.821 +30143,2025-03-10T19:38:29.556411-07:00,992.7173461914062,10.843531,10843.531 +30144,2025-03-10T19:38:40.408728-07:00,992.72265625,10.852317,10852.317 +30145,2025-03-10T19:38:51.247757-07:00,992.729248046875,10.839029,10839.029 +30146,2025-03-10T19:39:02.083354-07:00,992.7557983398438,10.835597,10835.597 +30147,2025-03-10T19:39:12.917863-07:00,992.7481079101562,10.834509,10834.509 +30148,2025-03-10T19:39:23.760096-07:00,992.7437744140625,10.842233,10842.233 +30149,2025-03-10T19:39:34.603141-07:00,992.7570190429688,10.843045,10843.045 +30150,2025-03-10T19:39:45.446207-07:00,992.7415771484375,10.843066,10843.066 +30151,2025-03-10T19:39:56.283819-07:00,992.7623291015625,10.837612,10837.612 +30152,2025-03-10T19:40:07.126792-07:00,992.775634765625,10.842973,10842.973 +30153,2025-03-10T19:40:17.964725-07:00,992.7689819335938,10.837933,10837.933 +30154,2025-03-10T19:40:28.816023-07:00,992.7424926757812,10.851298,10851.298 +30155,2025-03-10T19:40:39.662800-07:00,992.7623291015625,10.846777,10846.777 +30156,2025-03-10T19:40:50.506463-07:00,992.7468872070312,10.843663,10843.663 +30157,2025-03-10T19:41:01.352740-07:00,992.73486328125,10.846277,10846.277 +30158,2025-03-10T19:41:12.192015-07:00,992.7679443359375,10.839275,10839.275 +30159,2025-03-10T19:41:23.040533-07:00,992.7945556640625,10.848518,10848.518 +30160,2025-03-10T19:41:33.883749-07:00,992.7732543945312,10.843216,10843.216 +30161,2025-03-10T19:41:44.716841-07:00,992.8054809570312,10.833092,10833.092 +30162,2025-03-10T19:41:55.566750-07:00,992.7865600585938,10.849909,10849.909 +30163,2025-03-10T19:42:06.411871-07:00,992.7723388671875,10.845121,10845.121 +30164,2025-03-10T19:42:17.250080-07:00,992.8031005859375,10.838209,10838.209 +30165,2025-03-10T19:42:28.094747-07:00,992.804443359375,10.844667,10844.667 +30166,2025-03-10T19:42:38.942001-07:00,992.809814453125,10.847254,10847.254 +30167,2025-03-10T19:42:49.779122-07:00,992.7846069335938,10.837121,10837.121 +30168,2025-03-10T19:43:00.622090-07:00,992.793212890625,10.842968,10842.968 +30169,2025-03-10T19:43:11.470746-07:00,992.7789306640625,10.848656,10848.656 +30170,2025-03-10T19:43:22.313513-07:00,992.737060546875,10.842767,10842.767 +30171,2025-03-10T19:43:33.161748-07:00,992.7515869140625,10.848235,10848.235 +30172,2025-03-10T19:43:43.995019-07:00,992.7237548828125,10.833271,10833.271 +30173,2025-03-10T19:43:54.838379-07:00,992.737060546875,10.84336,10843.36 +30174,2025-03-10T19:44:05.691822-07:00,992.74267578125,10.853443,10853.443 +30175,2025-03-10T19:44:16.529743-07:00,992.750244140625,10.837921,10837.921 +30176,2025-03-10T19:44:27.367227-07:00,992.7767333984375,10.837484,10837.484 +30177,2025-03-10T19:44:38.214967-07:00,992.7767333984375,10.84774,10847.74 +30178,2025-03-10T19:44:49.058748-07:00,992.7625122070312,10.843781,10843.781 +30179,2025-03-10T19:44:59.906750-07:00,992.7832641601562,10.848002,10848.002 +30180,2025-03-10T19:45:10.750730-07:00,992.76904296875,10.84398,10843.98 +30181,2025-03-10T19:45:21.607726-07:00,992.750244140625,10.856996,10856.996 +30182,2025-03-10T19:45:32.447824-07:00,992.73828125,10.840098,10840.098 +30183,2025-03-10T19:45:43.298970-07:00,992.7581176757812,10.851146,10851.146 +30184,2025-03-10T19:45:54.145278-07:00,992.755859375,10.846308,10846.308 +30185,2025-03-10T19:46:04.994813-07:00,992.750244140625,10.849535,10849.535 +30186,2025-03-10T19:46:15.831991-07:00,992.7281494140625,10.837178,10837.178 +30187,2025-03-10T19:46:26.676748-07:00,992.7977905273438,10.844757,10844.757 +30188,2025-03-10T19:46:37.523987-07:00,992.76904296875,10.847239,10847.239 +30189,2025-03-10T19:46:48.369197-07:00,992.7611694335938,10.84521,10845.21 +30190,2025-03-10T19:46:59.208759-07:00,992.7601318359375,10.839562,10839.562 +30191,2025-03-10T19:47:10.053796-07:00,992.767822265625,10.845037,10845.037 +30192,2025-03-10T19:47:20.900893-07:00,992.7536010742188,10.847097,10847.097 +30193,2025-03-10T19:47:31.735090-07:00,992.7257690429688,10.834197,10834.197 +30194,2025-03-10T19:47:42.588018-07:00,992.7469482421875,10.852928,10852.928 +30195,2025-03-10T19:47:53.425745-07:00,992.7446899414062,10.837727,10837.727 +30196,2025-03-10T19:48:04.277058-07:00,992.7446899414062,10.851313,10851.313 +30197,2025-03-10T19:48:15.120172-07:00,992.7313842773438,10.843114,10843.114 +30198,2025-03-10T19:48:25.971971-07:00,992.73681640625,10.851799,10851.799 +30199,2025-03-10T19:48:36.815166-07:00,992.7623291015625,10.843195,10843.195 +30200,2025-03-10T19:48:47.658381-07:00,992.743408203125,10.843215,10843.215 +30201,2025-03-10T19:48:58.494754-07:00,992.7279052734375,10.836373,10836.373 +30202,2025-03-10T19:49:09.334495-07:00,992.743408203125,10.839741,10839.741 +30203,2025-03-10T19:49:20.176065-07:00,992.7490844726562,10.84157,10841.57 +30204,2025-03-10T19:49:31.018963-07:00,992.7623291015625,10.842898,10842.898 +30205,2025-03-10T19:49:41.863747-07:00,992.7279052734375,10.844784,10844.784 +30206,2025-03-10T19:49:52.705808-07:00,992.7146606445312,10.842061,10842.061 +30207,2025-03-10T19:50:03.553227-07:00,992.7410888671875,10.847419,10847.419 +30208,2025-03-10T19:50:14.399239-07:00,992.7410888671875,10.846012,10846.012 +30209,2025-03-10T19:50:25.240748-07:00,992.7335815429688,10.841509,10841.509 +30210,2025-03-10T19:50:36.088749-07:00,992.7279052734375,10.848001,10848.001 +30211,2025-03-10T19:50:46.932747-07:00,992.7146606445312,10.843998,10843.998 +30212,2025-03-10T19:50:57.774749-07:00,992.70703125,10.842002,10842.002 +30213,2025-03-10T19:51:08.619053-07:00,992.7256469726562,10.844304,10844.304 +30214,2025-03-10T19:51:19.454955-07:00,992.70703125,10.835902,10835.902 +30215,2025-03-10T19:51:30.306843-07:00,992.701416015625,10.851888,10851.888 +30216,2025-03-10T19:51:41.142292-07:00,992.7190551757812,10.835449,10835.449 +30217,2025-03-10T19:51:51.991103-07:00,992.6782836914062,10.848811,10848.811 +30218,2025-03-10T19:52:02.834426-07:00,992.677001953125,10.843323,10843.323 +30219,2025-03-10T19:52:13.682752-07:00,992.677001953125,10.848326,10848.326 +30220,2025-03-10T19:52:24.537749-07:00,992.6903076171875,10.854997,10854.997 +30221,2025-03-10T19:52:35.375747-07:00,992.7101440429688,10.837998,10837.998 +30222,2025-03-10T19:52:46.227755-07:00,992.6968994140625,10.852008,10852.008 +30223,2025-03-10T19:52:57.079976-07:00,992.7012329101562,10.852221,10852.221 +30224,2025-03-10T19:53:07.925898-07:00,992.6959228515625,10.845922,10845.922 +30225,2025-03-10T19:53:18.770158-07:00,992.6747436523438,10.84426,10844.26 +30226,2025-03-10T19:53:29.610753-07:00,992.6747436523438,10.840595,10840.595 +30227,2025-03-10T19:53:40.457724-07:00,992.68798828125,10.846971,10846.971 +30228,2025-03-10T19:53:51.304026-07:00,992.7145385742188,10.846302,10846.302 +30229,2025-03-10T19:54:02.159748-07:00,992.7290649414062,10.855722,10855.722 +30230,2025-03-10T19:54:13.008761-07:00,992.7201538085938,10.849013,10849.013 +30231,2025-03-10T19:54:23.845072-07:00,992.7267456054688,10.836311,10836.311 +30232,2025-03-10T19:54:34.687730-07:00,992.734375,10.842658,10842.658 +30233,2025-03-10T19:54:45.532750-07:00,992.7178344726562,10.84502,10845.02 +30234,2025-03-10T19:54:56.376322-07:00,992.7244262695312,10.843572,10843.572 +30235,2025-03-10T19:55:07.221910-07:00,992.739990234375,10.845588,10845.588 +30236,2025-03-10T19:55:18.077995-07:00,992.7366943359375,10.856085,10856.085 +30237,2025-03-10T19:55:28.920065-07:00,992.7178344726562,10.84207,10842.07 +30238,2025-03-10T19:55:39.773010-07:00,992.697021484375,10.852945,10852.945 +30239,2025-03-10T19:55:50.614744-07:00,992.6903686523438,10.841734,10841.734 +30240,2025-03-10T19:56:01.456806-07:00,992.710205078125,10.842062,10842.062 +30241,2025-03-10T19:56:12.305760-07:00,992.7079467773438,10.848954,10848.954 +30242,2025-03-10T19:56:23.144183-07:00,992.727783203125,10.838423,10838.423 +30243,2025-03-10T19:56:33.984748-07:00,992.6934204101562,10.840565,10840.565 +30244,2025-03-10T19:56:44.839743-07:00,992.6947021484375,10.854995,10854.995 +30245,2025-03-10T19:56:55.686745-07:00,992.714599609375,10.847002,10847.002 +30246,2025-03-10T19:57:06.533374-07:00,992.7212524414062,10.846629,10846.629 +30247,2025-03-10T19:57:17.376753-07:00,992.733154296875,10.843379,10843.379 +30248,2025-03-10T19:57:28.224799-07:00,992.7344360351562,10.848046,10848.046 +30249,2025-03-10T19:57:39.068703-07:00,992.7123413085938,10.843904,10843.904 +30250,2025-03-10T19:57:49.916907-07:00,992.7189331054688,10.848204,10848.204 +30251,2025-03-10T19:58:00.753038-07:00,992.6934204101562,10.836131,10836.131 +30252,2025-03-10T19:58:11.602754-07:00,992.73876953125,10.849716,10849.716 +30253,2025-03-10T19:58:22.446327-07:00,992.6925048828125,10.843573,10843.573 +30254,2025-03-10T19:58:33.288178-07:00,992.7034301757812,10.841851,10841.851 +30255,2025-03-10T19:58:44.129753-07:00,992.7100219726562,10.841575,10841.575 +30256,2025-03-10T19:58:54.972754-07:00,992.749755859375,10.843001,10843.001 +30257,2025-03-10T19:59:05.816834-07:00,992.7298583984375,10.84408,10844.08 +30258,2025-03-10T19:59:16.665031-07:00,992.7232666015625,10.848197,10848.197 +30259,2025-03-10T19:59:27.515348-07:00,992.76171875,10.850317,10850.317 +30260,2025-03-10T19:59:38.358804-07:00,992.736572265625,10.843456,10843.456 +30261,2025-03-10T19:59:49.199003-07:00,992.7418823242188,10.840199,10840.199 +30262,2025-03-10T20:00:00.044748-07:00,992.7210083007812,10.845745,10845.745 +30263,2025-03-10T20:00:10.901661-07:00,992.7285766601562,10.856913,10856.913 +30264,2025-03-10T20:00:21.755827-07:00,992.7418823242188,10.854166,10854.166 +30265,2025-03-10T20:00:32.602088-07:00,992.7474975585938,10.846261,10846.261 +30266,2025-03-10T20:00:43.445909-07:00,992.7606811523438,10.843821,10843.821 +30267,2025-03-10T20:00:54.294393-07:00,992.779296875,10.848484,10848.484 +30268,2025-03-10T20:01:05.144953-07:00,992.779296875,10.85056,10850.56 +30269,2025-03-10T20:01:16.003145-07:00,992.7451782226562,10.858192,10858.192 +30270,2025-03-10T20:01:26.847745-07:00,992.7196655273438,10.8446,10844.6 +30271,2025-03-10T20:01:37.700838-07:00,992.7462768554688,10.853093,10853.093 +30272,2025-03-10T20:01:48.550751-07:00,992.7593994140625,10.849913,10849.913 +30273,2025-03-10T20:01:59.396752-07:00,992.7528076171875,10.846001,10846.001 +30274,2025-03-10T20:02:10.247726-07:00,992.7451782226562,10.850974,10850.974 +30275,2025-03-10T20:02:21.096888-07:00,992.7637329101562,10.849162,10849.162 +30276,2025-03-10T20:02:31.939036-07:00,992.7760009765625,10.842148,10842.148 +30277,2025-03-10T20:02:42.792094-07:00,992.7826538085938,10.853058,10853.058 +30278,2025-03-10T20:02:53.638803-07:00,992.8091430664062,10.846709,10846.709 +30279,2025-03-10T20:03:04.502262-07:00,992.7892456054688,10.863459,10863.459 +30280,2025-03-10T20:03:15.344956-07:00,992.806884765625,10.842694,10842.694 +30281,2025-03-10T20:03:26.193747-07:00,992.7879638671875,10.848791,10848.791 +30282,2025-03-10T20:03:37.046746-07:00,992.774658203125,10.852999,10852.999 +30283,2025-03-10T20:03:47.897751-07:00,992.8121948242188,10.851005,10851.005 +30284,2025-03-10T20:03:58.746752-07:00,992.7781372070312,10.849001,10849.001 +30285,2025-03-10T20:04:09.598878-07:00,992.8045043945312,10.852126,10852.126 +30286,2025-03-10T20:04:20.453744-07:00,992.8045043945312,10.854866,10854.866 +30287,2025-03-10T20:04:31.300837-07:00,992.8244018554688,10.847093,10847.093 +30288,2025-03-10T20:04:42.158750-07:00,992.8222045898438,10.857913,10857.913 +30289,2025-03-10T20:04:53.008349-07:00,992.81689453125,10.849599,10849.599 +30290,2025-03-10T20:05:03.856102-07:00,992.8023681640625,10.847753,10847.753 +30291,2025-03-10T20:05:14.700873-07:00,992.7814331054688,10.844771,10844.771 +30292,2025-03-10T20:05:25.553235-07:00,992.7748413085938,10.852362,10852.362 +30293,2025-03-10T20:05:36.405702-07:00,992.7837524414062,10.852467,10852.467 +30294,2025-03-10T20:05:47.292127-07:00,992.7890625,10.886425,10886.425 +30295,2025-03-10T20:05:58.139979-07:00,992.7890625,10.847852,10847.852 +30296,2025-03-10T20:06:08.995124-07:00,992.7999877929688,10.855145,10855.145 +30297,2025-03-10T20:06:19.850749-07:00,992.8278198242188,10.855625,10855.625 +30298,2025-03-10T20:06:30.703978-07:00,992.8211669921875,10.853229,10853.229 +30299,2025-03-10T20:06:41.552213-07:00,992.8278198242188,10.848235,10848.235 +30300,2025-03-10T20:06:52.412040-07:00,992.8222045898438,10.859827,10859.827 +30301,2025-03-10T20:07:03.262703-07:00,992.8264770507812,10.850663,10850.663 +30302,2025-03-10T20:07:14.110275-07:00,992.8189086914062,10.847572,10847.572 +30303,2025-03-10T20:07:24.957981-07:00,992.8396606445312,10.847706,10847.706 +30304,2025-03-10T20:07:35.812044-07:00,992.817626953125,10.854063,10854.063 +30305,2025-03-10T20:07:46.660996-07:00,992.825439453125,10.848952,10848.952 +30306,2025-03-10T20:07:57.506028-07:00,992.8387451171875,10.845032,10845.032 +30307,2025-03-10T20:08:08.361995-07:00,992.8507080078125,10.855967,10855.967 +30308,2025-03-10T20:08:19.208638-07:00,992.829833984375,10.846643,10846.643 +30309,2025-03-10T20:08:30.064256-07:00,992.8496704101562,10.855618,10855.618 +30310,2025-03-10T20:08:40.907322-07:00,992.8431396484375,10.843066,10843.066 +30311,2025-03-10T20:08:51.748991-07:00,992.841796875,10.841669,10841.669 +30312,2025-03-10T20:09:02.599513-07:00,992.8364868164062,10.850522,10850.522 +30313,2025-03-10T20:09:13.435380-07:00,992.8496704101562,10.835867,10835.867 +30314,2025-03-10T20:09:24.288640-07:00,992.841796875,10.85326,10853.26 +30315,2025-03-10T20:09:35.133245-07:00,992.8484497070312,10.844605,10844.605 +30316,2025-03-10T20:09:45.975256-07:00,992.834228515625,10.842011,10842.011 +30317,2025-03-10T20:09:56.825244-07:00,992.8407592773438,10.849988,10849.988 +30318,2025-03-10T20:10:07.669145-07:00,992.847412109375,10.843901,10843.901 +30319,2025-03-10T20:10:18.523996-07:00,992.8197021484375,10.854851,10854.851 +30320,2025-03-10T20:10:29.364282-07:00,992.8407592773438,10.840286,10840.286 +30321,2025-03-10T20:10:40.210144-07:00,992.8407592773438,10.845862,10845.862 +30322,2025-03-10T20:10:51.063609-07:00,992.8517456054688,10.853465,10853.465 +30323,2025-03-10T20:11:01.919527-07:00,992.8439331054688,10.855918,10855.918 +30324,2025-03-10T20:11:12.768169-07:00,992.8782958984375,10.848642,10848.642 +30325,2025-03-10T20:11:23.610035-07:00,992.8504638671875,10.841866,10841.866 +30326,2025-03-10T20:11:34.452202-07:00,992.8703002929688,10.842167,10842.167 +30327,2025-03-10T20:11:45.297322-07:00,992.8703002929688,10.84512,10845.12 +30328,2025-03-10T20:11:56.146231-07:00,992.8703002929688,10.848909,10848.909 +30329,2025-03-10T20:12:06.982113-07:00,992.8736572265625,10.835882,10835.882 +30330,2025-03-10T20:12:17.832228-07:00,992.8812255859375,10.850115,10850.115 +30331,2025-03-10T20:12:28.673990-07:00,992.900146484375,10.841762,10841.762 +30332,2025-03-10T20:12:39.519222-07:00,992.90771484375,10.845232,10845.232 +30333,2025-03-10T20:12:50.358250-07:00,992.8869018554688,10.839028,10839.028 +30334,2025-03-10T20:13:01.199043-07:00,992.8657836914062,10.840793,10840.793 +30335,2025-03-10T20:13:12.042124-07:00,992.8856201171875,10.843081,10843.081 +30336,2025-03-10T20:13:22.891369-07:00,992.8856201171875,10.849245,10849.245 +30337,2025-03-10T20:13:33.738303-07:00,992.9243774414062,10.846934,10846.934 +30338,2025-03-10T20:13:44.594330-07:00,992.8922119140625,10.856027,10856.027 +30339,2025-03-10T20:13:55.428987-07:00,992.9120483398438,10.834657,10834.657 +30340,2025-03-10T20:14:06.272994-07:00,992.8847045898438,10.844007,10844.007 +30341,2025-03-10T20:14:17.110317-07:00,992.8912353515625,10.837323,10837.323 +30342,2025-03-10T20:14:27.954280-07:00,992.9163818359375,10.843963,10843.963 +30343,2025-03-10T20:14:38.804522-07:00,992.9021606445312,10.850242,10850.242 +30344,2025-03-10T20:14:49.650011-07:00,992.8833618164062,10.845489,10845.489 +30345,2025-03-10T20:15:00.497487-07:00,992.9296875,10.847476,10847.476 +30346,2025-03-10T20:15:11.332462-07:00,992.9495239257812,10.834975,10834.975 +30347,2025-03-10T20:15:22.176153-07:00,992.9276733398438,10.843691,10843.691 +30348,2025-03-10T20:15:33.019792-07:00,992.9462280273438,10.843639,10843.639 +30349,2025-03-10T20:15:43.874994-07:00,992.9320068359375,10.855202,10855.202 +30350,2025-03-10T20:15:54.718991-07:00,992.9396362304688,10.843997,10843.997 +30351,2025-03-10T20:16:05.564276-07:00,992.9385986328125,10.845285,10845.285 +30352,2025-03-10T20:16:16.412994-07:00,992.951904296875,10.848718,10848.718 +30353,2025-03-10T20:16:27.261995-07:00,992.9098510742188,10.849001,10849.001 +30354,2025-03-10T20:16:38.106472-07:00,992.9637451171875,10.844477,10844.477 +30355,2025-03-10T20:16:48.941990-07:00,992.921875,10.835518,10835.518 +30356,2025-03-10T20:16:59.795591-07:00,992.924072265625,10.853601,10853.601 +30357,2025-03-10T20:17:10.636104-07:00,992.9151611328125,10.840513,10840.513 +30358,2025-03-10T20:17:21.489542-07:00,992.9506225585938,10.853438,10853.438 +30359,2025-03-10T20:17:32.327321-07:00,992.8953247070312,10.837779,10837.779 +30360,2025-03-10T20:17:43.170989-07:00,992.9364013671875,10.843668,10843.668 +30361,2025-03-10T20:17:54.022991-07:00,992.928466796875,10.852002,10852.002 +30362,2025-03-10T20:18:01.739478-07:00,992.9681396484375,7.716487,7716.487 +30363,2025-03-10T20:18:04.873050-07:00,992.9813842773438,3.133572,3133.572 +30364,2025-03-10T20:18:15.714985-07:00,992.928466796875,10.841935,10841.935 +30365,2025-03-10T20:18:26.559994-07:00,992.93505859375,10.845009,10845.009 +30366,2025-03-10T20:18:37.407100-07:00,992.9328002929688,10.847106,10847.106 +30367,2025-03-10T20:18:48.251827-07:00,992.9195556640625,10.844727,10844.727 +30368,2025-03-10T20:18:59.100452-07:00,992.93408203125,10.848625,10848.625 +30369,2025-03-10T20:19:09.943703-07:00,992.9393920898438,10.843251,10843.251 +30370,2025-03-10T20:19:20.782002-07:00,992.9737548828125,10.838299,10838.299 +30371,2025-03-10T20:19:31.624338-07:00,992.946044921875,10.842336,10842.336 +30372,2025-03-10T20:19:42.460110-07:00,992.91064453125,10.835772,10835.772 +30373,2025-03-10T20:19:53.301498-07:00,992.9781494140625,10.841388,10841.388 +30374,2025-03-10T20:20:04.144183-07:00,992.9437255859375,10.842685,10842.685 +30375,2025-03-10T20:20:14.990564-07:00,992.958251953125,10.846381,10846.381 +30376,2025-03-10T20:20:25.841409-07:00,992.9450073242188,10.850845,10850.845 +30377,2025-03-10T20:20:36.683494-07:00,992.9371337890625,10.842085,10842.085 +30378,2025-03-10T20:20:47.524990-07:00,992.9384155273438,10.841496,10841.496 +30379,2025-03-10T20:20:58.374119-07:00,992.9328002929688,10.849129,10849.129 +30380,2025-03-10T20:21:09.217326-07:00,992.9714965820312,10.843207,10843.207 +30381,2025-03-10T20:21:20.052968-07:00,992.9238891601562,10.835642,10835.642 +30382,2025-03-10T20:21:30.901987-07:00,992.9781494140625,10.849019,10849.019 +30383,2025-03-10T20:21:41.752988-07:00,992.96484375,10.851001,10851.001 +30384,2025-03-10T20:21:52.586303-07:00,992.9781494140625,10.833315,10833.315 +30385,2025-03-10T20:22:03.435608-07:00,992.9834594726562,10.849305,10849.305 +30386,2025-03-10T20:22:14.282836-07:00,992.982421875,10.847228,10847.228 +30387,2025-03-10T20:22:25.125999-07:00,992.9547119140625,10.843163,10843.163 +30388,2025-03-10T20:22:35.962517-07:00,993.0032958984375,10.836518,10836.518 +30389,2025-03-10T20:22:46.805491-07:00,993.0032958984375,10.842974,10842.974 +30390,2025-03-10T20:22:57.654824-07:00,992.9559326171875,10.849333,10849.333 +30391,2025-03-10T20:23:08.501785-07:00,992.96923828125,10.846961,10846.961 +30392,2025-03-10T20:23:19.343200-07:00,992.9559326171875,10.841415,10841.415 +30393,2025-03-10T20:23:30.186900-07:00,992.9427490234375,10.8437,10843.7 +30394,2025-03-10T20:23:41.024229-07:00,992.989990234375,10.837329,10837.329 +30395,2025-03-10T20:23:51.862141-07:00,992.9494018554688,10.837912,10837.912 +30396,2025-03-10T20:24:02.706665-07:00,992.99560546875,10.844524,10844.524 +30397,2025-03-10T20:24:13.549996-07:00,992.98779296875,10.843331,10843.331 +30398,2025-03-10T20:24:24.388106-07:00,993.0076293945312,10.83811,10838.11 +30399,2025-03-10T20:24:35.230192-07:00,993.0076293945312,10.842086,10842.086 +30400,2025-03-10T20:24:46.075963-07:00,993.0,10.845771,10845.771 +30401,2025-03-10T20:24:56.920099-07:00,992.9801635742188,10.844136,10844.136 +30402,2025-03-10T20:25:07.770994-07:00,993.0066528320312,10.850895,10850.895 +30403,2025-03-10T20:25:18.614480-07:00,992.9646606445312,10.843486,10843.486 +30404,2025-03-10T20:25:29.463253-07:00,992.9854736328125,10.848773,10848.773 +30405,2025-03-10T20:25:40.305044-07:00,993.0053100585938,10.841791,10841.791 +30406,2025-03-10T20:25:51.138978-07:00,992.9765625,10.833934,10833.934 +30407,2025-03-10T20:26:01.993131-07:00,993.0162353515625,10.854153,10854.153 +30408,2025-03-10T20:26:12.831490-07:00,993.0030517578125,10.838359,10838.359 +30409,2025-03-10T20:26:23.666985-07:00,992.9756469726562,10.835495,10835.495 +30410,2025-03-10T20:26:34.509198-07:00,992.9888305664062,10.842213,10842.213 +30411,2025-03-10T20:26:45.347988-07:00,993.0086669921875,10.83879,10838.79 +30412,2025-03-10T20:26:56.180046-07:00,992.9679565429688,10.832058,10832.058 +30413,2025-03-10T20:27:07.028985-07:00,992.9799194335938,10.848939,10848.939 +30414,2025-03-10T20:27:17.875082-07:00,992.9954833984375,10.846097,10846.097 +30415,2025-03-10T20:27:28.709537-07:00,993.0142822265625,10.834455,10834.455 +30416,2025-03-10T20:27:39.552983-07:00,992.982177734375,10.843446,10843.446 +30417,2025-03-10T20:27:50.390995-07:00,992.9855346679688,10.838012,10838.012 +30418,2025-03-10T20:28:01.232994-07:00,992.986572265625,10.841999,10841.999 +30419,2025-03-10T20:28:12.082227-07:00,992.9534301757812,10.849233,10849.233 +30420,2025-03-10T20:28:22.924311-07:00,992.999755859375,10.842084,10842.084 +30421,2025-03-10T20:28:33.773481-07:00,992.9710083007812,10.84917,10849.17 +30422,2025-03-10T20:28:44.611635-07:00,992.9974975585938,10.838154,10838.154 +30423,2025-03-10T20:28:55.457997-07:00,992.98095703125,10.846362,10846.362 +30424,2025-03-10T20:29:06.301564-07:00,992.9964599609375,10.843567,10843.567 +30425,2025-03-10T20:29:17.140991-07:00,993.0017700195312,10.839427,10839.427 +30426,2025-03-10T20:29:27.981042-07:00,992.9620971679688,10.840051,10840.051 +30427,2025-03-10T20:29:38.816995-07:00,992.974365234375,10.835953,10835.953 +30428,2025-03-10T20:29:49.659336-07:00,992.975341796875,10.842341,10842.341 +30429,2025-03-10T20:30:00.512084-07:00,992.9862670898438,10.852748,10852.748 +30430,2025-03-10T20:30:11.354961-07:00,992.9720458984375,10.842877,10842.877 +30431,2025-03-10T20:30:22.203987-07:00,992.9730224609375,10.849026,10849.026 +30432,2025-03-10T20:30:33.041989-07:00,992.98095703125,10.838002,10838.002 +30433,2025-03-10T20:30:43.885165-07:00,992.9885864257812,10.843176,10843.176 +30434,2025-03-10T20:30:54.721243-07:00,992.95751953125,10.836078,10836.078 +30435,2025-03-10T20:31:05.559248-07:00,992.9796752929688,10.838005,10838.005 +30436,2025-03-10T20:31:16.407993-07:00,992.964111328125,10.848745,10848.745 +30437,2025-03-10T20:31:27.250273-07:00,992.9707641601562,10.84228,10842.28 +30438,2025-03-10T20:31:38.087983-07:00,992.9852905273438,10.83771,10837.71 +30439,2025-03-10T20:31:48.926207-07:00,992.95654296875,10.838224,10838.224 +30440,2025-03-10T20:31:59.769369-07:00,992.9971923828125,10.843162,10843.162 +30441,2025-03-10T20:32:10.618725-07:00,992.9962768554688,10.849356,10849.356 +30442,2025-03-10T20:32:21.461134-07:00,992.981689453125,10.842409,10842.409 +30443,2025-03-10T20:32:32.302995-07:00,992.981689453125,10.841861,10841.861 +30444,2025-03-10T20:32:43.152985-07:00,993.0015869140625,10.84999,10849.99 +30445,2025-03-10T20:32:53.995138-07:00,993.0148315429688,10.842153,10842.153 +30446,2025-03-10T20:33:04.836317-07:00,993.0006103515625,10.841179,10841.179 +30447,2025-03-10T20:33:15.682038-07:00,993.0081176757812,10.845721,10845.721 +30448,2025-03-10T20:33:26.525030-07:00,993.0072021484375,10.842992,10842.992 +30449,2025-03-10T20:33:37.370230-07:00,992.9728393554688,10.8452,10845.2 +30450,2025-03-10T20:33:48.207797-07:00,993.0006103515625,10.837567,10837.567 +30451,2025-03-10T20:33:59.045994-07:00,992.9517211914062,10.838197,10838.197 +30452,2025-03-10T20:34:09.890985-07:00,992.9277954101562,10.844991,10844.991 +30453,2025-03-10T20:34:20.725063-07:00,992.9343872070312,10.834078,10834.078 +30454,2025-03-10T20:34:31.567393-07:00,992.9517211914062,10.84233,10842.33 +30455,2025-03-10T20:34:42.409985-07:00,992.9595336914062,10.842592,10842.592 +30456,2025-03-10T20:34:53.248125-07:00,992.9913940429688,10.83814,10838.14 +30457,2025-03-10T20:35:04.094268-07:00,992.986083984375,10.846143,10846.143 +30458,2025-03-10T20:35:14.934353-07:00,992.9715576171875,10.840085,10840.085 +30459,2025-03-10T20:35:25.772219-07:00,992.963623046875,10.837866,10837.866 +30460,2025-03-10T20:35:36.624042-07:00,992.9595336914062,10.851823,10851.823 +30461,2025-03-10T20:35:47.457982-07:00,992.999267578125,10.83394,10833.94 +30462,2025-03-10T20:35:58.295038-07:00,992.9715576171875,10.837056,10837.056 +30463,2025-03-10T20:36:09.142994-07:00,992.999267578125,10.847956,10847.956 +30464,2025-03-10T20:36:19.986962-07:00,992.9649047851562,10.843968,10843.968 +30465,2025-03-10T20:36:30.828299-07:00,992.9900512695312,10.841337,10841.337 +30466,2025-03-10T20:36:41.654987-07:00,992.9715576171875,10.826688,10826.688 +30467,2025-03-10T20:36:52.497985-07:00,992.9768676757812,10.842998,10842.998 +30468,2025-03-10T20:37:03.341990-07:00,992.9371948242188,10.844005,10844.005 +30469,2025-03-10T20:37:14.192147-07:00,992.9494018554688,10.850157,10850.157 +30470,2025-03-10T20:37:25.031151-07:00,992.98779296875,10.839004,10839.004 +30471,2025-03-10T20:37:35.876332-07:00,992.98779296875,10.845181,10845.181 +30472,2025-03-10T20:37:46.717989-07:00,992.962646484375,10.841657,10841.657 +30473,2025-03-10T20:37:57.558358-07:00,992.97021484375,10.840369,10840.369 +30474,2025-03-10T20:38:08.398114-07:00,992.9437255859375,10.839756,10839.756 +30475,2025-03-10T20:38:19.230989-07:00,992.9414672851562,10.832875,10832.875 +30476,2025-03-10T20:38:30.069997-07:00,992.9437255859375,10.839008,10839.008 +30477,2025-03-10T20:38:40.917254-07:00,992.9437255859375,10.847257,10847.257 +30478,2025-03-10T20:38:51.746181-07:00,992.9768676757812,10.828927,10828.927 +30479,2025-03-10T20:39:02.592242-07:00,992.97021484375,10.846061,10846.061 +30480,2025-03-10T20:39:13.424332-07:00,992.9238891601562,10.83209,10832.09 +30481,2025-03-10T20:39:24.265998-07:00,992.9295043945312,10.841666,10841.666 +30482,2025-03-10T20:39:35.109968-07:00,992.963623046875,10.84397,10843.97 +30483,2025-03-10T20:39:45.954042-07:00,992.963623046875,10.844074,10844.074 +30484,2025-03-10T20:39:56.797564-07:00,992.9229736328125,10.843522,10843.522 +30485,2025-03-10T20:40:07.647303-07:00,992.9361572265625,10.849739,10849.739 +30486,2025-03-10T20:40:18.480995-07:00,992.9295043945312,10.833692,10833.692 +30487,2025-03-10T20:40:29.327311-07:00,992.9140625,10.846316,10846.316 +30488,2025-03-10T20:40:40.163671-07:00,992.9414672851562,10.83636,10836.36 +30489,2025-03-10T20:40:51.005430-07:00,992.9064331054688,10.841759,10841.759 +30490,2025-03-10T20:41:01.855046-07:00,992.9414672851562,10.849616,10849.616 +30491,2025-03-10T20:41:12.692462-07:00,992.9249877929688,10.837416,10837.416 +30492,2025-03-10T20:41:23.540133-07:00,992.8931884765625,10.847671,10847.671 +30493,2025-03-10T20:41:34.383584-07:00,992.9051513671875,10.843451,10843.451 +30494,2025-03-10T20:41:45.220985-07:00,992.92626953125,10.837401,10837.401 +30495,2025-03-10T20:41:56.059051-07:00,992.9183349609375,10.838066,10838.066 +30496,2025-03-10T20:42:06.902477-07:00,992.9315795898438,10.843426,10843.426 +30497,2025-03-10T20:42:17.730062-07:00,992.9173583984375,10.827585,10827.585 +30498,2025-03-10T20:42:28.568190-07:00,992.9240112304688,10.838128,10838.128 +30499,2025-03-10T20:42:39.410281-07:00,992.9107666015625,10.842091,10842.091 +30500,2025-03-10T20:42:50.246967-07:00,992.9173583984375,10.836686,10836.686 +30501,2025-03-10T20:43:01.083985-07:00,992.9240112304688,10.837018,10837.018 +30502,2025-03-10T20:43:11.933039-07:00,992.9051513671875,10.849054,10849.054 +30503,2025-03-10T20:43:22.764989-07:00,992.8984985351562,10.83195,10831.95 +30504,2025-03-10T20:43:33.601926-07:00,992.9041137695312,10.836937,10836.937 +30505,2025-03-10T20:43:44.444983-07:00,992.88427734375,10.843057,10843.057 +30506,2025-03-10T20:43:55.294372-07:00,992.8733520507812,10.849389,10849.389 +30507,2025-03-10T20:44:06.132088-07:00,992.9074096679688,10.837716,10837.716 +30508,2025-03-10T20:44:16.973989-07:00,992.908447265625,10.841901,10841.901 +30509,2025-03-10T20:44:27.817993-07:00,992.8931884765625,10.844004,10844.004 +30510,2025-03-10T20:44:38.661312-07:00,992.920654296875,10.843319,10843.319 +30511,2025-03-10T20:44:49.502974-07:00,992.8865356445312,10.841662,10841.662 +30512,2025-03-10T20:45:00.340990-07:00,992.9163208007812,10.838016,10838.016 +30513,2025-03-10T20:45:11.189987-07:00,992.904052734375,10.848997,10848.997 +30514,2025-03-10T20:45:22.032139-07:00,992.8766479492188,10.842152,10842.152 +30515,2025-03-10T20:45:32.873342-07:00,992.9185791015625,10.841203,10841.203 +30516,2025-03-10T20:45:43.719981-07:00,992.8842163085938,10.846639,10846.639 +30517,2025-03-10T20:45:54.555159-07:00,992.8987426757812,10.835178,10835.178 +30518,2025-03-10T20:46:05.399999-07:00,992.9013061523438,10.84484,10844.84 +30519,2025-03-10T20:46:16.238027-07:00,992.90234375,10.838028,10838.028 +30520,2025-03-10T20:46:27.074990-07:00,992.890380859375,10.836963,10836.963 +30521,2025-03-10T20:46:37.910995-07:00,992.9015502929688,10.836005,10836.005 +30522,2025-03-10T20:46:48.761156-07:00,992.9290771484375,10.850161,10850.161 +30523,2025-03-10T20:46:59.586990-07:00,992.93798828125,10.825834,10825.834 +30524,2025-03-10T20:47:10.430238-07:00,992.9071655273438,10.843248,10843.248 +30525,2025-03-10T20:47:21.273340-07:00,992.9368896484375,10.843102,10843.102 +30526,2025-03-10T20:47:32.121706-07:00,992.897216796875,10.848366,10848.366 +30527,2025-03-10T20:47:42.964990-07:00,992.92822265625,10.843284,10843.284 +30528,2025-03-10T20:47:53.800995-07:00,992.9149780273438,10.836005,10836.005 +30529,2025-03-10T20:48:04.644030-07:00,992.8987426757812,10.843035,10843.035 +30530,2025-03-10T20:48:15.493164-07:00,992.95166015625,10.849134,10849.134 +30531,2025-03-10T20:48:26.332322-07:00,992.93408203125,10.839158,10839.158 +30532,2025-03-10T20:48:37.168991-07:00,992.9151611328125,10.836669,10836.669 +30533,2025-03-10T20:48:48.017209-07:00,992.9085693359375,10.848218,10848.218 +30534,2025-03-10T20:48:58.855312-07:00,992.9329833984375,10.838103,10838.103 +30535,2025-03-10T20:49:09.697990-07:00,992.89892578125,10.842678,10842.678 +30536,2025-03-10T20:49:20.539046-07:00,992.9163818359375,10.841056,10841.056 +30537,2025-03-10T20:49:31.377996-07:00,992.8956298828125,10.83895,10838.95 +30538,2025-03-10T20:49:42.223602-07:00,992.9054565429688,10.845606,10845.606 +30539,2025-03-10T20:49:53.065032-07:00,992.8847045898438,10.84143,10841.43 +30540,2025-03-10T20:50:03.902118-07:00,992.8856201171875,10.837086,10837.086 +30541,2025-03-10T20:50:14.752991-07:00,992.8978271484375,10.850873,10850.873 +30542,2025-03-10T20:50:25.595326-07:00,992.8803100585938,10.842335,10842.335 +30543,2025-03-10T20:50:36.443251-07:00,992.8524780273438,10.847925,10847.925 +30544,2025-03-10T20:50:47.277988-07:00,992.8538208007812,10.834737,10834.737 +30545,2025-03-10T20:50:58.117986-07:00,992.8613891601562,10.839998,10839.998 +30546,2025-03-10T20:51:08.969999-07:00,992.8495483398438,10.852013,10852.013 +30547,2025-03-10T20:51:19.809253-07:00,992.8297119140625,10.839254,10839.254 +30548,2025-03-10T20:51:30.658877-07:00,992.8703002929688,10.849624,10849.624 +30549,2025-03-10T20:51:41.500962-07:00,992.859375,10.842085,10842.085 +30550,2025-03-10T20:51:52.339365-07:00,992.8407592773438,10.838403,10838.403 +30551,2025-03-10T20:52:03.181334-07:00,992.7998657226562,10.841969,10841.969 +30552,2025-03-10T20:52:14.026616-07:00,992.841796875,10.845282,10845.282 +30553,2025-03-10T20:52:24.868251-07:00,992.82861328125,10.841635,10841.635 +30554,2025-03-10T20:52:35.702987-07:00,992.82421875,10.834736,10834.736 +30555,2025-03-10T20:52:46.543328-07:00,992.799072265625,10.840341,10840.341 +30556,2025-03-10T20:52:57.392249-07:00,992.8056030273438,10.848921,10848.921 +30557,2025-03-10T20:53:08.235568-07:00,992.8278198242188,10.843319,10843.319 +30558,2025-03-10T20:53:19.072224-07:00,992.8101806640625,10.836656,10836.656 +30559,2025-03-10T20:53:29.916439-07:00,992.8045043945312,10.844215,10844.215 +30560,2025-03-10T20:53:40.752995-07:00,992.7913208007812,10.836556,10836.556 +30561,2025-03-10T20:53:51.600555-07:00,992.7988891601562,10.84756,10847.56 +30562,2025-03-10T20:54:02.442990-07:00,992.7959594726562,10.842435,10842.435 +30563,2025-03-10T20:54:13.283997-07:00,992.7946166992188,10.841007,10841.007 +30564,2025-03-10T20:54:24.127317-07:00,992.7892456054688,10.84332,10843.32 +30565,2025-03-10T20:54:34.963498-07:00,992.7991333007812,10.836181,10836.181 +30566,2025-03-10T20:54:45.799250-07:00,992.8212280273438,10.835752,10835.752 +30567,2025-03-10T20:54:56.638539-07:00,992.7948608398438,10.839289,10839.289 +30568,2025-03-10T20:55:07.475987-07:00,992.8036499023438,10.837448,10837.448 +30569,2025-03-10T20:55:18.316994-07:00,992.8258056640625,10.841007,10841.007 +30570,2025-03-10T20:55:29.155551-07:00,992.8082885742188,10.838557,10838.557 +30571,2025-03-10T20:55:39.995140-07:00,992.8228149414062,10.839589,10839.589 +30572,2025-03-10T20:55:50.832160-07:00,992.818115234375,10.83702,10837.02 +30573,2025-03-10T20:56:01.667377-07:00,992.8217163085938,10.835217,10835.217 +30574,2025-03-10T20:56:12.505135-07:00,992.837158203125,10.837758,10837.758 +30575,2025-03-10T20:56:23.346994-07:00,992.806396484375,10.841859,10841.859 +30576,2025-03-10T20:56:34.186995-07:00,992.8272094726562,10.840001,10840.001 +30577,2025-03-10T20:56:45.030109-07:00,992.8417358398438,10.843114,10843.114 +30578,2025-03-10T20:56:55.866361-07:00,992.830810546875,10.836252,10836.252 +30579,2025-03-10T20:57:06.708993-07:00,992.844970703125,10.842632,10842.632 +30580,2025-03-10T20:57:17.552578-07:00,992.8065795898438,10.843585,10843.585 +30581,2025-03-10T20:57:28.381994-07:00,992.8428955078125,10.829416,10829.416 +30582,2025-03-10T20:57:39.226934-07:00,992.857421875,10.84494,10844.94 +30583,2025-03-10T20:57:50.063279-07:00,992.8110961914062,10.836345,10836.345 +30584,2025-03-10T20:58:00.912342-07:00,992.834228515625,10.849063,10849.063 +30585,2025-03-10T20:58:11.752065-07:00,992.841796875,10.839723,10839.723 +30586,2025-03-10T20:58:22.598994-07:00,992.8375244140625,10.846929,10846.929 +30587,2025-03-10T20:58:33.445997-07:00,992.8375244140625,10.847003,10847.003 +30588,2025-03-10T20:58:44.288316-07:00,992.8387451171875,10.842319,10842.319 +30589,2025-03-10T20:58:55.128505-07:00,992.80126953125,10.840189,10840.189 +30590,2025-03-10T20:59:05.967990-07:00,992.836669921875,10.839485,10839.485 +30591,2025-03-10T20:59:16.814235-07:00,992.84423828125,10.846245,10846.245 +30592,2025-03-10T20:59:27.654138-07:00,992.8101806640625,10.839903,10839.903 +30593,2025-03-10T20:59:38.488094-07:00,992.8256225585938,10.833956,10833.956 +30594,2025-03-10T20:59:49.333022-07:00,992.814697265625,10.844928,10844.928 +30595,2025-03-10T21:00:00.181234-07:00,992.8289184570312,10.848212,10848.212 +30596,2025-03-10T21:00:11.019339-07:00,992.797119140625,10.838105,10838.105 +30597,2025-03-10T21:00:21.862345-07:00,992.8311767578125,10.843006,10843.006 +30598,2025-03-10T21:00:32.711184-07:00,992.8079833984375,10.848839,10848.839 +30599,2025-03-10T21:00:43.558995-07:00,992.8026733398438,10.847811,10847.811 +30600,2025-03-10T21:00:54.408979-07:00,992.8184204101562,10.849984,10849.984 +30601,2025-03-10T21:01:05.253234-07:00,992.8283081054688,10.844255,10844.255 +30602,2025-03-10T21:01:16.104995-07:00,992.80078125,10.851761,10851.761 +30603,2025-03-10T21:01:26.953232-07:00,992.783203125,10.848237,10848.237 +30604,2025-03-10T21:01:37.790170-07:00,992.7753295898438,10.836938,10836.938 +30605,2025-03-10T21:01:48.641068-07:00,992.7854614257812,10.850898,10850.898 +30606,2025-03-10T21:01:59.478988-07:00,992.773193359375,10.83792,10837.92 +30607,2025-03-10T21:02:10.327042-07:00,992.7754516601562,10.848054,10848.054 +30608,2025-03-10T21:02:21.177991-07:00,992.755615234375,10.850949,10850.949 +30609,2025-03-10T21:02:32.024459-07:00,992.72607421875,10.846468,10846.468 +30610,2025-03-10T21:02:42.874764-07:00,992.7611083984375,10.850305,10850.305 +30611,2025-03-10T21:02:53.715967-07:00,992.7412719726562,10.841203,10841.203 +30612,2025-03-10T21:03:04.569972-07:00,992.721435546875,10.854005,10854.005 +30613,2025-03-10T21:03:15.413995-07:00,992.717041015625,10.844023,10844.023 +30614,2025-03-10T21:03:26.262994-07:00,992.7235717773438,10.848999,10848.999 +30615,2025-03-10T21:03:37.106141-07:00,992.712646484375,10.843147,10843.147 +30616,2025-03-10T21:03:47.950282-07:00,992.740478515625,10.844141,10844.141 +30617,2025-03-10T21:03:58.804292-07:00,992.7281494140625,10.85401,10854.01 +30618,2025-03-10T21:04:09.644033-07:00,992.73046875,10.839741,10839.741 +30619,2025-03-10T21:04:20.500039-07:00,992.6963500976562,10.856006,10856.006 +30620,2025-03-10T21:04:31.347144-07:00,992.6787719726562,10.847105,10847.105 +30621,2025-03-10T21:04:42.194052-07:00,992.672119140625,10.846908,10846.908 +30622,2025-03-10T21:04:53.026457-07:00,992.703125,10.832405,10832.405 +30623,2025-03-10T21:05:03.874125-07:00,992.6356201171875,10.847668,10847.668 +30624,2025-03-10T21:05:14.721040-07:00,992.651123046875,10.846915,10846.915 +30625,2025-03-10T21:05:25.566228-07:00,992.7129516601562,10.845188,10845.188 +30626,2025-03-10T21:05:36.424999-07:00,992.6533813476562,10.858771,10858.771 +30627,2025-03-10T21:05:47.287668-07:00,992.6533813476562,10.862669,10862.669 +30628,2025-03-10T21:05:58.136576-07:00,992.6091918945312,10.848908,10848.908 +30629,2025-03-10T21:06:08.981531-07:00,992.6135864257812,10.844955,10844.955 +30630,2025-03-10T21:06:19.838807-07:00,992.6710815429688,10.857276,10857.276 +30631,2025-03-10T21:06:30.677288-07:00,992.6565551757812,10.838481,10838.481 +30632,2025-03-10T21:06:41.530039-07:00,992.6535034179688,10.852751,10852.751 +30633,2025-03-10T21:06:52.384934-07:00,992.6468505859375,10.854895,10854.895 +30634,2025-03-10T21:07:03.233613-07:00,992.680908203125,10.848679,10848.679 +30635,2025-03-10T21:07:14.078531-07:00,992.6535034179688,10.844918,10844.918 +30636,2025-03-10T21:07:24.927815-07:00,992.6292114257812,10.849284,10849.284 +30637,2025-03-10T21:07:35.786859-07:00,992.6292114257812,10.859044,10859.044 +30638,2025-03-10T21:07:46.634583-07:00,992.6712646484375,10.847724,10847.724 +30639,2025-03-10T21:07:57.478815-07:00,992.6434326171875,10.844232,10844.232 +30640,2025-03-10T21:08:08.337591-07:00,992.6514282226562,10.858776,10858.776 +30641,2025-03-10T21:08:19.184865-07:00,992.6668701171875,10.847274,10847.274 +30642,2025-03-10T21:08:30.035898-07:00,992.653564453125,10.851033,10851.033 +30643,2025-03-10T21:08:40.890869-07:00,992.6546020507812,10.854971,10854.971 +30644,2025-03-10T21:08:51.744919-07:00,992.6546020507812,10.85405,10854.05 +30645,2025-03-10T21:09:02.592454-07:00,992.6603393554688,10.847535,10847.535 +30646,2025-03-10T21:09:13.442772-07:00,992.6612548828125,10.850318,10850.318 +30647,2025-03-10T21:09:24.295795-07:00,992.687744140625,10.853023,10853.023 +30648,2025-03-10T21:09:35.144760-07:00,992.6470336914062,10.848965,10848.965 +30649,2025-03-10T21:09:45.988525-07:00,992.64794921875,10.843765,10843.765 +30650,2025-03-10T21:09:56.836775-07:00,992.634765625,10.84825,10848.25 +30651,2025-03-10T21:10:07.688531-07:00,992.6624755859375,10.851756,10851.756 +30652,2025-03-10T21:10:18.537769-07:00,992.6503295898438,10.849238,10849.238 +30653,2025-03-10T21:10:29.388524-07:00,992.62939453125,10.850755,10850.755 +30654,2025-03-10T21:10:40.228176-07:00,992.6492919921875,10.839652,10839.652 +30655,2025-03-10T21:10:51.067757-07:00,992.6492919921875,10.839581,10839.581 +30656,2025-03-10T21:11:01.921387-07:00,992.6281127929688,10.85363,10853.63 +30657,2025-03-10T21:11:12.760528-07:00,992.6436157226562,10.839141,10839.141 +30658,2025-03-10T21:11:23.610448-07:00,992.622802734375,10.84992,10849.92 +30659,2025-03-10T21:11:34.458921-07:00,992.6370239257812,10.848473,10848.473 +30660,2025-03-10T21:11:45.312995-07:00,992.6670532226562,10.854074,10854.074 +30661,2025-03-10T21:11:56.157976-07:00,992.6383056640625,10.844981,10844.981 +30662,2025-03-10T21:12:07.004516-07:00,992.6060791015625,10.84654,10846.54 +30663,2025-03-10T21:12:17.852531-07:00,992.61279296875,10.848015,10848.015 +30664,2025-03-10T21:12:28.697528-07:00,992.6140747070312,10.844997,10844.997 +30665,2025-03-10T21:12:39.544900-07:00,992.6239013671875,10.847372,10847.372 +30666,2025-03-10T21:12:50.389521-07:00,992.6437377929688,10.844621,10844.621 +30667,2025-03-10T21:13:01.241720-07:00,992.657958984375,10.852199,10852.199 +30668,2025-03-10T21:13:12.086712-07:00,992.6526489257812,10.844992,10844.992 +30669,2025-03-10T21:13:22.934734-07:00,992.6602172851562,10.848022,10848.022 +30670,2025-03-10T21:13:33.790711-07:00,992.6602172851562,10.855977,10855.977 +30671,2025-03-10T21:13:44.631759-07:00,992.677001953125,10.841048,10841.048 +30672,2025-03-10T21:13:55.486528-07:00,992.67041015625,10.854769,10854.769 +30673,2025-03-10T21:14:06.333529-07:00,992.65283203125,10.847001,10847.001 +30674,2025-03-10T21:14:17.185707-07:00,992.6383056640625,10.852178,10852.178 +30675,2025-03-10T21:14:28.034531-07:00,992.6417236328125,10.848824,10848.824 +30676,2025-03-10T21:14:38.883120-07:00,992.6285400390625,10.848589,10848.589 +30677,2025-03-10T21:14:49.723402-07:00,992.655029296875,10.840282,10840.282 +30678,2025-03-10T21:15:00.566768-07:00,992.6361083984375,10.843366,10843.366 +30679,2025-03-10T21:15:11.406503-07:00,992.6383666992188,10.839735,10839.735 +30680,2025-03-10T21:15:22.252673-07:00,992.6604614257812,10.84617,10846.17 +30681,2025-03-10T21:15:33.096817-07:00,992.640625,10.844144,10844.144 +30682,2025-03-10T21:15:43.953842-07:00,992.6286010742188,10.857025,10857.025 +30683,2025-03-10T21:15:54.802513-07:00,992.6504516601562,10.848671,10848.671 +30684,2025-03-10T21:16:05.645528-07:00,992.626220703125,10.843015,10843.015 +30685,2025-03-10T21:16:16.493672-07:00,992.655029296875,10.848144,10848.144 +30686,2025-03-10T21:16:27.333654-07:00,992.65625,10.839982,10839.982 +30687,2025-03-10T21:16:38.184832-07:00,992.6695556640625,10.851178,10851.178 +30688,2025-03-10T21:16:49.038760-07:00,992.6793823242188,10.853928,10853.928 +30689,2025-03-10T21:16:59.886913-07:00,992.6806030273438,10.848153,10848.153 +30690,2025-03-10T21:17:10.731818-07:00,992.6484375,10.844905,10844.905 +30691,2025-03-10T21:17:21.573519-07:00,992.6696166992188,10.841701,10841.701 +30692,2025-03-10T21:17:32.422834-07:00,992.6307983398438,10.849315,10849.315 +30693,2025-03-10T21:17:43.274112-07:00,992.6375122070312,10.851278,10851.278 +30694,2025-03-10T21:17:54.120792-07:00,992.6387329101562,10.84668,10846.68 +30695,2025-03-10T21:18:04.969324-07:00,992.66845703125,10.848532,10848.532 +30696,2025-03-10T21:18:15.812963-07:00,992.6498413085938,10.843639,10843.639 +30697,2025-03-10T21:18:26.661275-07:00,992.6773681640625,10.848312,10848.312 +30698,2025-03-10T21:18:37.509731-07:00,992.6716918945312,10.848456,10848.456 +30699,2025-03-10T21:18:48.348530-07:00,992.6429443359375,10.838799,10838.799 +30700,2025-03-10T21:18:59.195759-07:00,992.6209106445312,10.847229,10847.229 +30701,2025-03-10T21:19:10.039170-07:00,992.657470703125,10.843411,10843.411 +30702,2025-03-10T21:19:20.891958-07:00,992.6453247070312,10.852788,10852.788 +30703,2025-03-10T21:19:31.737906-07:00,992.678466796875,10.845948,10845.948 +30704,2025-03-10T21:19:42.585529-07:00,992.6607666015625,10.847623,10847.623 +30705,2025-03-10T21:19:53.428527-07:00,992.668701171875,10.842998,10842.998 +30706,2025-03-10T21:20:04.283723-07:00,992.6497802734375,10.855196,10855.196 +30707,2025-03-10T21:20:15.126802-07:00,992.6443481445312,10.843079,10843.079 +30708,2025-03-10T21:20:25.981514-07:00,992.6820068359375,10.854712,10854.712 +30709,2025-03-10T21:20:36.836923-07:00,992.660888671875,10.855409,10855.409 +30710,2025-03-10T21:20:47.672826-07:00,992.660888671875,10.835903,10835.903 +30711,2025-03-10T21:20:58.526880-07:00,992.6754150390625,10.854054,10854.054 +30712,2025-03-10T21:21:09.367523-07:00,992.6896362304688,10.840643,10840.643 +30713,2025-03-10T21:21:20.216562-07:00,992.6842041015625,10.849039,10849.039 +30714,2025-03-10T21:21:31.068779-07:00,992.6524047851562,10.852217,10852.217 +30715,2025-03-10T21:21:41.910747-07:00,992.6631469726562,10.841968,10841.968 +30716,2025-03-10T21:21:52.771516-07:00,992.6643676757812,10.860769,10860.769 +30717,2025-03-10T21:22:03.619532-07:00,992.6710205078125,10.848016,10848.016 +30718,2025-03-10T21:22:14.467887-07:00,992.6590576171875,10.848355,10848.355 +30719,2025-03-10T21:22:25.318116-07:00,992.6578369140625,10.850229,10850.229 +30720,2025-03-10T21:22:36.173897-07:00,992.68115234375,10.855781,10855.781 +30721,2025-03-10T21:22:47.014648-07:00,992.6599731445312,10.840751,10840.751 +30722,2025-03-10T21:22:57.863524-07:00,992.6865844726562,10.848876,10848.876 +30723,2025-03-10T21:23:08.718533-07:00,992.6865844726562,10.855009,10855.009 +30724,2025-03-10T21:23:19.565915-07:00,992.6997680664062,10.847382,10847.382 +30725,2025-03-10T21:23:29.020449-07:00,992.688720703125,9.454534,9454.534 +30726,2025-03-10T21:23:30.420590-07:00,992.6524047851562,1.400141,1400.141 +30727,2025-03-10T21:23:41.270700-07:00,992.6878051757812,10.85011,10850.11 +30728,2025-03-10T21:23:52.106583-07:00,992.68212890625,10.835883,10835.883 +30729,2025-03-10T21:24:02.955649-07:00,992.7407836914062,10.849066,10849.066 +30730,2025-03-10T21:24:13.802893-07:00,992.68115234375,10.847244,10847.244 +30731,2025-03-10T21:24:24.659812-07:00,992.68212890625,10.856919,10856.919 +30732,2025-03-10T21:24:35.506980-07:00,992.6997680664062,10.847168,10847.168 +30733,2025-03-10T21:24:46.351523-07:00,992.7009887695312,10.844543,10844.543 +30734,2025-03-10T21:24:57.200934-07:00,992.6732788085938,10.849411,10849.411 +30735,2025-03-10T21:25:08.054246-07:00,992.7064208984375,10.853312,10853.312 +30736,2025-03-10T21:25:18.908757-07:00,992.6722412109375,10.854511,10854.511 +30737,2025-03-10T21:25:29.758513-07:00,992.6643676757812,10.849756,10849.756 +30738,2025-03-10T21:25:40.601568-07:00,992.6763916015625,10.843055,10843.055 +30739,2025-03-10T21:25:51.461535-07:00,992.669677734375,10.859967,10859.967 +30740,2025-03-10T21:26:02.307140-07:00,992.656494140625,10.845605,10845.605 +30741,2025-03-10T21:26:13.158873-07:00,992.6896362304688,10.851733,10851.733 +30742,2025-03-10T21:26:24.012804-07:00,992.660888671875,10.853931,10853.931 +30743,2025-03-10T21:26:34.868567-07:00,992.6885986328125,10.855763,10855.763 +30744,2025-03-10T21:26:45.719934-07:00,992.6864013671875,10.851367,10851.367 +30745,2025-03-10T21:26:56.564812-07:00,992.6797485351562,10.844878,10844.878 +30746,2025-03-10T21:27:07.419558-07:00,992.673095703125,10.854746,10854.746 +30747,2025-03-10T21:27:18.267659-07:00,992.6864013671875,10.848101,10848.101 +30748,2025-03-10T21:27:29.115749-07:00,992.6576538085938,10.84809,10848.09 +30749,2025-03-10T21:27:39.958524-07:00,992.6629638671875,10.842775,10842.775 +30750,2025-03-10T21:27:50.812669-07:00,992.67529296875,10.854145,10854.145 +30751,2025-03-10T21:28:01.652548-07:00,992.668701171875,10.839879,10839.879 +30752,2025-03-10T21:28:12.501906-07:00,992.669677734375,10.849358,10849.358 +30753,2025-03-10T21:28:23.345738-07:00,992.700439453125,10.843832,10843.832 +30754,2025-03-10T21:28:34.198454-07:00,992.681884765625,10.852716,10852.716 +30755,2025-03-10T21:28:45.051815-07:00,992.6806030273438,10.853361,10853.361 +30756,2025-03-10T21:28:55.901578-07:00,992.7128295898438,10.849763,10849.763 +30757,2025-03-10T21:29:06.756595-07:00,992.678466796875,10.855017,10855.017 +30758,2025-03-10T21:29:17.603583-07:00,992.7181396484375,10.846988,10846.988 +30759,2025-03-10T21:29:28.458525-07:00,992.6973266601562,10.854942,10854.942 +30760,2025-03-10T21:29:39.301077-07:00,992.7159423828125,10.842552,10842.552 +30761,2025-03-10T21:29:50.152503-07:00,992.73046875,10.851426,10851.426 +30762,2025-03-10T21:30:01.006224-07:00,992.708251953125,10.853721,10853.721 +30763,2025-03-10T21:30:11.853885-07:00,992.7268676757812,10.847661,10847.661 +30764,2025-03-10T21:30:22.702660-07:00,992.699462890625,10.848775,10848.775 +30765,2025-03-10T21:30:33.553275-07:00,992.6849365234375,10.850615,10850.615 +30766,2025-03-10T21:30:44.400577-07:00,992.658447265625,10.847302,10847.302 +30767,2025-03-10T21:30:55.242921-07:00,992.6962280273438,10.842344,10842.344 +30768,2025-03-10T21:31:06.101571-07:00,992.6631469726562,10.85865,10858.65 +30769,2025-03-10T21:31:16.947525-07:00,992.6817016601562,10.845954,10845.954 +30770,2025-03-10T21:31:27.796574-07:00,992.7015380859375,10.849049,10849.049 +30771,2025-03-10T21:31:38.642856-07:00,992.674072265625,10.846282,10846.282 +30772,2025-03-10T21:31:49.481405-07:00,992.6860961914062,10.838549,10838.549 +30773,2025-03-10T21:32:00.336671-07:00,992.678466796875,10.855266,10855.266 +30774,2025-03-10T21:32:11.187846-07:00,992.683837890625,10.851175,10851.175 +30775,2025-03-10T21:32:22.029518-07:00,992.7125854492188,10.841672,10841.672 +30776,2025-03-10T21:32:32.881739-07:00,992.683837890625,10.852221,10852.221 +30777,2025-03-10T21:32:43.725759-07:00,992.683837890625,10.84402,10844.02 +30778,2025-03-10T21:32:54.568884-07:00,992.7081298828125,10.843125,10843.125 +30779,2025-03-10T21:33:05.408530-07:00,992.7203369140625,10.839646,10839.646 +30780,2025-03-10T21:33:16.266792-07:00,992.6783447265625,10.858262,10858.262 +30781,2025-03-10T21:33:27.121019-07:00,992.70361328125,10.854227,10854.227 +30782,2025-03-10T21:33:37.968517-07:00,992.7366943359375,10.847498,10847.498 +30783,2025-03-10T21:33:48.815525-07:00,992.7290649414062,10.847008,10847.008 +30784,2025-03-10T21:33:59.658525-07:00,992.6937255859375,10.843,10843.0 +30785,2025-03-10T21:34:10.499701-07:00,992.6968994140625,10.841176,10841.176 +30786,2025-03-10T21:34:21.348069-07:00,992.724609375,10.848368,10848.368 +30787,2025-03-10T21:34:32.190861-07:00,992.7167358398438,10.842792,10842.792 +30788,2025-03-10T21:34:43.032224-07:00,992.6882934570312,10.841363,10841.363 +30789,2025-03-10T21:34:53.878857-07:00,992.7545166015625,10.846633,10846.633 +30790,2025-03-10T21:35:04.732058-07:00,992.70458984375,10.853201,10853.201 +30791,2025-03-10T21:35:15.574857-07:00,992.7310791015625,10.842799,10842.799 +30792,2025-03-10T21:35:26.425122-07:00,992.7566528320312,10.850265,10850.265 +30793,2025-03-10T21:35:37.271247-07:00,992.748779296875,10.846125,10846.125 +30794,2025-03-10T21:35:48.109771-07:00,992.760986328125,10.838524,10838.524 +30795,2025-03-10T21:35:58.963530-07:00,992.747802734375,10.853759,10853.759 +30796,2025-03-10T21:36:09.799059-07:00,992.72998046875,10.835529,10835.529 +30797,2025-03-10T21:36:20.639678-07:00,992.7508544921875,10.840619,10840.619 +30798,2025-03-10T21:36:31.480742-07:00,992.7498168945312,10.841064,10841.064 +30799,2025-03-10T21:36:42.329508-07:00,992.7498168945312,10.848766,10848.766 +30800,2025-03-10T21:36:53.171780-07:00,992.727783203125,10.842272,10842.272 +30801,2025-03-10T21:37:04.012817-07:00,992.7529907226562,10.841037,10841.037 +30802,2025-03-10T21:37:14.859226-07:00,992.7652587890625,10.846409,10846.409 +30803,2025-03-10T21:37:25.713423-07:00,992.745361328125,10.854197,10854.197 +30804,2025-03-10T21:37:36.562516-07:00,992.750732421875,10.849093,10849.093 +30805,2025-03-10T21:37:47.409529-07:00,992.8169555664062,10.847013,10847.013 +30806,2025-03-10T21:37:58.255681-07:00,992.7771606445312,10.846152,10846.152 +30807,2025-03-10T21:38:09.110083-07:00,992.7838134765625,10.854402,10854.402 +30808,2025-03-10T21:38:19.951508-07:00,992.810302734375,10.841425,10841.425 +30809,2025-03-10T21:38:30.796068-07:00,992.7828369140625,10.84456,10844.56 +30810,2025-03-10T21:38:41.637553-07:00,992.78955078125,10.841485,10841.485 +30811,2025-03-10T21:38:52.485843-07:00,992.8236083984375,10.84829,10848.29 +30812,2025-03-10T21:39:03.334531-07:00,992.8490600585938,10.848688,10848.688 +30813,2025-03-10T21:39:14.190557-07:00,992.7818603515625,10.856026,10856.026 +30814,2025-03-10T21:39:25.027690-07:00,992.8336181640625,10.837133,10837.133 +30815,2025-03-10T21:39:35.876916-07:00,992.8016967773438,10.849226,10849.226 +30816,2025-03-10T21:39:46.731083-07:00,992.8534545898438,10.854167,10854.167 +30817,2025-03-10T21:39:57.568514-07:00,992.8524780273438,10.837431,10837.431 +30818,2025-03-10T21:40:08.416752-07:00,992.87109375,10.848238,10848.238 +30819,2025-03-10T21:40:19.259528-07:00,992.8568725585938,10.842776,10842.776 +30820,2025-03-10T21:40:30.109768-07:00,992.9085693359375,10.85024,10850.24 +30821,2025-03-10T21:40:40.946863-07:00,992.90625,10.837095,10837.095 +30822,2025-03-10T21:40:51.793175-07:00,992.9053344726562,10.846312,10846.312 +30823,2025-03-10T21:41:02.642585-07:00,992.8987426757812,10.84941,10849.41 +30824,2025-03-10T21:41:13.486793-07:00,992.8964233398438,10.844208,10844.208 +30825,2025-03-10T21:41:24.329748-07:00,992.90966796875,10.842955,10842.955 +30826,2025-03-10T21:41:35.183780-07:00,992.8928833007812,10.854032,10854.032 +30827,2025-03-10T21:41:46.032832-07:00,992.921630859375,10.849052,10849.052 +30828,2025-03-10T21:41:56.872856-07:00,992.9459228515625,10.840024,10840.024 +30829,2025-03-10T21:42:07.715529-07:00,992.9635009765625,10.842673,10842.673 +30830,2025-03-10T21:42:18.569672-07:00,992.94921875,10.854143,10854.143 +30831,2025-03-10T21:42:29.410524-07:00,992.9668579101562,10.840852,10840.852 +30832,2025-03-10T21:42:40.255522-07:00,992.9659423828125,10.844998,10844.998 +30833,2025-03-10T21:42:51.099882-07:00,992.9447631835938,10.84436,10844.36 +30834,2025-03-10T21:43:01.939878-07:00,992.9503784179688,10.839996,10839.996 +30835,2025-03-10T21:43:12.788963-07:00,992.968994140625,10.849085,10849.085 +30836,2025-03-10T21:43:23.632528-07:00,992.9601440429688,10.843565,10843.565 +30837,2025-03-10T21:43:34.471094-07:00,992.9667358398438,10.838566,10838.566 +30838,2025-03-10T21:43:45.308765-07:00,992.9644775390625,10.837671,10837.671 +30839,2025-03-10T21:43:56.161525-07:00,992.9644775390625,10.85276,10852.76 +30840,2025-03-10T21:44:06.998614-07:00,992.962158203125,10.837089,10837.089 +30841,2025-03-10T21:44:17.844526-07:00,992.9863891601562,10.845912,10845.912 +30842,2025-03-10T21:44:28.697522-07:00,993.0062255859375,10.852996,10852.996 +30843,2025-03-10T21:44:39.538791-07:00,992.9876708984375,10.841269,10841.269 +30844,2025-03-10T21:44:50.390863-07:00,993.0186157226562,10.852072,10852.072 +30845,2025-03-10T21:45:01.232104-07:00,992.9841918945312,10.841241,10841.241 +30846,2025-03-10T21:45:12.074558-07:00,993.0097045898438,10.842454,10842.454 +30847,2025-03-10T21:45:22.923761-07:00,993.0030517578125,10.849203,10849.203 +30848,2025-03-10T21:45:33.770095-07:00,993.0030517578125,10.846334,10846.334 +30849,2025-03-10T21:45:44.609856-07:00,993.0282592773438,10.839761,10839.761 +30850,2025-03-10T21:45:55.463937-07:00,993.0007934570312,10.854081,10854.081 +30851,2025-03-10T21:46:06.309529-07:00,993.0326538085938,10.845592,10845.592 +30852,2025-03-10T21:46:17.145528-07:00,993.0184326171875,10.835999,10835.999 +30853,2025-03-10T21:46:27.992534-07:00,993.01611328125,10.847006,10847.006 +30854,2025-03-10T21:46:38.835842-07:00,993.0359497070312,10.843308,10843.308 +30855,2025-03-10T21:46:49.687003-07:00,993.0426635742188,10.851161,10851.161 +30856,2025-03-10T21:47:00.532573-07:00,993.0426635742188,10.84557,10845.57 +30857,2025-03-10T21:47:11.379984-07:00,993.0284423828125,10.847411,10847.411 +30858,2025-03-10T21:47:22.210977-07:00,993.0601806640625,10.830993,10830.993 +30859,2025-03-10T21:47:33.051873-07:00,993.080078125,10.840896,10840.896 +30860,2025-03-10T21:47:43.895527-07:00,993.0711669921875,10.843654,10843.654 +30861,2025-03-10T21:47:54.737529-07:00,993.0711669921875,10.842002,10842.002 +30862,2025-03-10T21:48:05.575579-07:00,993.0480346679688,10.83805,10838.05 +30863,2025-03-10T21:48:16.415570-07:00,993.0822143554688,10.839991,10839.991 +30864,2025-03-10T21:48:27.255526-07:00,993.0733032226562,10.839956,10839.956 +30865,2025-03-10T21:48:38.090827-07:00,993.0921630859375,10.835301,10835.301 +30866,2025-03-10T21:48:48.941269-07:00,993.0943603515625,10.850442,10850.442 +30867,2025-03-10T21:48:59.785802-07:00,993.084228515625,10.844533,10844.533 +30868,2025-03-10T21:49:10.627528-07:00,993.125244140625,10.841726,10841.726 +30869,2025-03-10T21:49:21.477529-07:00,993.0806884765625,10.850001,10850.001 +30870,2025-03-10T21:49:32.324725-07:00,993.0939331054688,10.847196,10847.196 +30871,2025-03-10T21:49:43.163570-07:00,993.107177734375,10.838845,10838.845 +30872,2025-03-10T21:49:54.007327-07:00,993.079345703125,10.843757,10843.757 +30873,2025-03-10T21:50:04.848514-07:00,993.10595703125,10.841187,10841.187 +30874,2025-03-10T21:50:15.696235-07:00,993.0982666015625,10.847721,10847.721 +30875,2025-03-10T21:50:26.541112-07:00,993.1105346679688,10.844877,10844.877 +30876,2025-03-10T21:50:37.385867-07:00,993.1091918945312,10.844755,10844.755 +30877,2025-03-10T21:50:48.234966-07:00,993.12158203125,10.849099,10849.099 +30878,2025-03-10T21:50:59.081090-07:00,993.1556396484375,10.846124,10846.124 +30879,2025-03-10T21:51:09.922521-07:00,993.14794921875,10.841431,10841.431 +30880,2025-03-10T21:51:20.767591-07:00,993.1400756835938,10.84507,10845.07 +30881,2025-03-10T21:51:31.609789-07:00,993.1400756835938,10.842198,10842.198 +30882,2025-03-10T21:51:42.449881-07:00,993.1456909179688,10.840092,10840.092 +30883,2025-03-10T21:51:53.296568-07:00,993.130126953125,10.846687,10846.687 +30884,2025-03-10T21:52:04.138519-07:00,993.1434326171875,10.841951,10841.951 +30885,2025-03-10T21:52:14.984529-07:00,993.1632690429688,10.84601,10846.01 +30886,2025-03-10T21:52:25.815189-07:00,993.1841430664062,10.83066,10830.66 +30887,2025-03-10T21:52:36.664826-07:00,993.1487426757812,10.849637,10849.637 +30888,2025-03-10T21:52:47.499525-07:00,993.1398315429688,10.834699,10834.699 +30889,2025-03-10T21:52:58.344522-07:00,993.134521484375,10.844997,10844.997 +30890,2025-03-10T21:53:09.187812-07:00,993.1531372070312,10.84329,10843.29 +30891,2025-03-10T21:53:30.873526-07:00,993.1376342773438,21.685714,21685.714 +30892,2025-03-10T21:53:41.724774-07:00,993.09033203125,10.851248,10851.248 +30893,2025-03-10T21:53:52.559897-07:00,993.1045532226562,10.835123,10835.123 +30894,2025-03-10T21:54:03.404857-07:00,993.09033203125,10.84496,10844.96 +30895,2025-03-10T21:54:14.249524-07:00,993.1221313476562,10.844667,10844.667 +30896,2025-03-10T21:54:25.094523-07:00,993.12109375,10.844999,10844.999 +30897,2025-03-10T21:54:35.931530-07:00,993.1132202148438,10.837007,10837.007 +30898,2025-03-10T21:54:46.785065-07:00,993.0999755859375,10.853535,10853.535 +30899,2025-03-10T21:54:57.625049-07:00,993.1175537109375,10.839984,10839.984 +30900,2025-03-10T21:55:08.460830-07:00,993.118896484375,10.835781,10835.781 +30901,2025-03-10T21:55:19.298846-07:00,993.1307983398438,10.838016,10838.016 +30902,2025-03-10T21:55:30.147839-07:00,993.103271484375,10.848993,10848.993 +30903,2025-03-10T21:55:40.981520-07:00,993.1288452148438,10.833681,10833.681 +30904,2025-03-10T21:55:51.833557-07:00,993.1288452148438,10.852037,10852.037 +30905,2025-03-10T21:56:02.669155-07:00,993.1553344726562,10.835598,10835.598 +30906,2025-03-10T21:56:13.514712-07:00,993.1341552734375,10.845557,10845.557 +30907,2025-03-10T21:56:24.361962-07:00,993.1408081054688,10.84725,10847.25 +30908,2025-03-10T21:56:35.199715-07:00,993.10009765625,10.837753,10837.753 +30909,2025-03-10T21:56:46.038528-07:00,993.1253051757812,10.838813,10838.813 +30910,2025-03-10T21:56:56.883856-07:00,993.1398315429688,10.845328,10845.328 +30911,2025-03-10T21:57:07.734908-07:00,993.1573486328125,10.851052,10851.052 +30912,2025-03-10T21:57:18.573530-07:00,993.1904907226562,10.838622,10838.622 +30913,2025-03-10T21:57:29.420520-07:00,993.1626586914062,10.84699,10846.99 +30914,2025-03-10T21:57:40.263530-07:00,993.15380859375,10.84301,10843.01 +30915,2025-03-10T21:57:51.101685-07:00,993.140625,10.838155,10838.155 +30916,2025-03-10T21:58:01.939565-07:00,993.1551513671875,10.83788,10837.88 +30917,2025-03-10T21:58:12.787196-07:00,993.1736450195312,10.847631,10847.631 +30918,2025-03-10T21:58:20.375622-07:00,993.1626586914062,7.588426,7588.426 +30919,2025-03-10T21:58:23.625806-07:00,993.159423828125,3.250184,3250.184 +30920,2025-03-10T21:58:34.468915-07:00,993.1793212890625,10.843109,10843.109 +30921,2025-03-10T21:58:45.309507-07:00,993.1726684570312,10.840592,10840.592 +30922,2025-03-10T21:58:56.153585-07:00,993.1925048828125,10.844078,10844.078 +30923,2025-03-10T21:59:06.997530-07:00,993.177978515625,10.843945,10843.945 +30924,2025-03-10T21:59:17.829838-07:00,993.17138671875,10.832308,10832.308 +30925,2025-03-10T21:59:28.671711-07:00,993.1704711914062,10.841873,10841.873 +30926,2025-03-10T21:59:39.514527-07:00,993.1704711914062,10.842816,10842.816 +30927,2025-03-10T21:59:50.352638-07:00,993.18798828125,10.838111,10838.111 +30928,2025-03-10T22:00:01.203907-07:00,993.181396484375,10.851269,10851.269 +30929,2025-03-10T22:00:12.045193-07:00,993.1867065429688,10.841286,10841.286 +30930,2025-03-10T22:00:22.881770-07:00,993.181396484375,10.836577,10836.577 +30931,2025-03-10T22:00:33.720598-07:00,993.1867065429688,10.838828,10838.828 +30932,2025-03-10T22:00:44.575517-07:00,993.1867065429688,10.854919,10854.919 +30933,2025-03-10T22:00:55.412258-07:00,993.213134765625,10.836741,10836.741 +30934,2025-03-10T22:01:06.253830-07:00,993.1724853515625,10.841572,10841.572 +30935,2025-03-10T22:01:17.098470-07:00,993.170166015625,10.84464,10844.64 +30936,2025-03-10T22:01:27.946962-07:00,993.2012329101562,10.848492,10848.492 +30937,2025-03-10T22:01:38.795760-07:00,993.171142578125,10.848798,10848.798 +30938,2025-03-10T22:01:49.632460-07:00,993.1658325195312,10.8367,10836.7 +30939,2025-03-10T22:02:00.475522-07:00,993.1481323242188,10.843062,10843.062 +30940,2025-03-10T22:02:11.313753-07:00,993.1556396484375,10.838231,10838.231 +30941,2025-03-10T22:02:22.163798-07:00,993.18115234375,10.850045,10850.045 +30942,2025-03-10T22:02:33.011784-07:00,993.1878051757812,10.847986,10847.986 +30943,2025-03-10T22:02:43.847759-07:00,993.1612548828125,10.835975,10835.975 +30944,2025-03-10T22:02:54.699520-07:00,993.1603393554688,10.851761,10851.761 +30945,2025-03-10T22:03:05.534781-07:00,993.1404418945312,10.835261,10835.261 +30946,2025-03-10T22:03:16.378466-07:00,993.173583984375,10.843685,10843.685 +30947,2025-03-10T22:03:27.215520-07:00,993.1878051757812,10.837054,10837.054 +30948,2025-03-10T22:03:38.062530-07:00,993.1722412109375,10.84701,10847.01 +30949,2025-03-10T22:03:48.905517-07:00,993.145751953125,10.842987,10842.987 +30950,2025-03-10T22:03:59.749012-07:00,993.1259155273438,10.843495,10843.495 +30951,2025-03-10T22:04:10.592442-07:00,993.1514282226562,10.84343,10843.43 +30952,2025-03-10T22:04:21.434640-07:00,993.1514282226562,10.842198,10842.198 +30953,2025-03-10T22:04:32.268528-07:00,993.1854858398438,10.833888,10833.888 +30954,2025-03-10T22:04:43.111567-07:00,993.1699829101562,10.843039,10843.039 +30955,2025-03-10T22:04:53.960857-07:00,993.1755981445312,10.84929,10849.29 +30956,2025-03-10T22:05:04.813935-07:00,993.1832275390625,10.853078,10853.078 +30957,2025-03-10T22:05:15.655521-07:00,993.1743774414062,10.841586,10841.586 +30958,2025-03-10T22:05:26.499073-07:00,993.1954956054688,10.843552,10843.552 +30959,2025-03-10T22:05:37.354525-07:00,993.1610717773438,10.855452,10855.452 +30960,2025-03-10T22:05:48.235134-07:00,993.2008056640625,10.880609,10880.609 +30961,2025-03-10T22:05:59.074968-07:00,993.185302734375,10.839834,10839.834 +30962,2025-03-10T22:06:09.917495-07:00,993.1875610351562,10.842527,10842.527 +30963,2025-03-10T22:06:20.770907-07:00,993.1998291015625,10.853412,10853.412 +30964,2025-03-10T22:06:31.619963-07:00,993.1799926757812,10.849056,10849.056 +30965,2025-03-10T22:06:42.468021-07:00,993.2064208984375,10.848058,10848.058 +30966,2025-03-10T22:06:53.309133-07:00,993.1710815429688,10.841112,10841.112 +30967,2025-03-10T22:07:04.159911-07:00,993.2117309570312,10.850778,10850.778 +30968,2025-03-10T22:07:15.005639-07:00,993.23388671875,10.845728,10845.728 +30969,2025-03-10T22:07:25.856278-07:00,993.197509765625,10.850639,10850.639 +30970,2025-03-10T22:07:36.692910-07:00,993.198486328125,10.836632,10836.632 +30971,2025-03-10T22:07:47.534240-07:00,993.2051391601562,10.84133,10841.33 +30972,2025-03-10T22:07:58.375968-07:00,993.2315673828125,10.841728,10841.728 +30973,2025-03-10T22:08:09.218201-07:00,993.2173461914062,10.842233,10842.233 +30974,2025-03-10T22:08:20.068559-07:00,993.22265625,10.850358,10850.358 +30975,2025-03-10T22:08:30.905066-07:00,993.1687622070312,10.836507,10836.507 +30976,2025-03-10T22:08:41.754197-07:00,993.23828125,10.849131,10849.131 +30977,2025-03-10T22:08:52.609247-07:00,993.1644287109375,10.85505,10855.05 +30978,2025-03-10T22:09:03.444283-07:00,993.1290893554688,10.835036,10835.036 +30979,2025-03-10T22:09:14.287535-07:00,993.2041625976562,10.843252,10843.252 +30980,2025-03-10T22:09:25.128914-07:00,993.216064453125,10.841379,10841.379 +30981,2025-03-10T22:09:35.973959-07:00,993.1962280273438,10.845045,10845.045 +30982,2025-03-10T22:09:46.827912-07:00,993.16748046875,10.853953,10853.953 +30983,2025-03-10T22:09:57.670447-07:00,993.201904296875,10.842535,10842.535 +30984,2025-03-10T22:10:08.511210-07:00,993.173095703125,10.840763,10840.763 +30985,2025-03-10T22:10:19.357171-07:00,993.1939086914062,10.845961,10845.961 +30986,2025-03-10T22:10:30.201253-07:00,993.1687622070312,10.844082,10844.082 +30987,2025-03-10T22:10:41.049986-07:00,993.220458984375,10.848733,10848.733 +30988,2025-03-10T22:10:51.892142-07:00,993.232666015625,10.842156,10842.156 +30989,2025-03-10T22:11:02.730458-07:00,993.219482421875,10.838316,10838.316 +30990,2025-03-10T22:11:13.579241-07:00,993.1642456054688,10.848783,10848.783 +30991,2025-03-10T22:11:24.417921-07:00,993.1917114257812,10.83868,10838.68 +30992,2025-03-10T22:11:35.265944-07:00,993.24462890625,10.848023,10848.023 +30993,2025-03-10T22:11:46.114922-07:00,993.2105712890625,10.848978,10848.978 +30994,2025-03-10T22:11:56.961237-07:00,993.1893920898438,10.846315,10846.315 +30995,2025-03-10T22:12:07.806160-07:00,993.1884155273438,10.844923,10844.923 +30996,2025-03-10T22:12:18.644916-07:00,993.1884155273438,10.838756,10838.756 +30997,2025-03-10T22:12:29.495048-07:00,993.1795043945312,10.850132,10850.132 +30998,2025-03-10T22:12:40.330327-07:00,993.21484375,10.835279,10835.279 +30999,2025-03-10T22:12:51.179257-07:00,993.1917114257812,10.84893,10848.93 +31000,2025-03-10T22:13:02.021906-07:00,993.1994018554688,10.842649,10842.649 +31001,2025-03-10T22:13:12.861954-07:00,993.21826171875,10.840048,10840.048 +31002,2025-03-10T22:13:23.712920-07:00,993.171875,10.850966,10850.966 +31003,2025-03-10T22:13:34.549161-07:00,993.2103271484375,10.836241,10836.241 +31004,2025-03-10T22:13:45.389093-07:00,993.1895141601562,10.839932,10839.932 +31005,2025-03-10T22:13:56.230916-07:00,993.1617431640625,10.841823,10841.823 +31006,2025-03-10T22:14:07.080027-07:00,993.1961059570312,10.849111,10849.111 +31007,2025-03-10T22:14:17.916267-07:00,993.2027587890625,10.83624,10836.24 +31008,2025-03-10T22:14:28.761606-07:00,993.2093505859375,10.845339,10845.339 +31009,2025-03-10T22:14:39.615086-07:00,993.1749877929688,10.85348,10853.48 +31010,2025-03-10T22:14:50.449074-07:00,993.2027587890625,10.833988,10833.988 +31011,2025-03-10T22:15:01.294152-07:00,993.2136840820312,10.845078,10845.078 +31012,2025-03-10T22:15:12.139062-07:00,993.2080688476562,10.84491,10844.91 +31013,2025-03-10T22:15:22.994077-07:00,993.1607666015625,10.855015,10855.015 +31014,2025-03-10T22:15:33.828038-07:00,993.2123413085938,10.833961,10833.961 +31015,2025-03-10T22:15:44.664953-07:00,993.1660766601562,10.836915,10836.915 +31016,2025-03-10T22:15:55.512916-07:00,993.1793212890625,10.847963,10847.963 +31017,2025-03-10T22:16:06.360277-07:00,993.1925048828125,10.847361,10847.361 +31018,2025-03-10T22:16:17.197153-07:00,993.1373291015625,10.836876,10836.876 +31019,2025-03-10T22:16:28.056519-07:00,993.18359375,10.859366,10859.366 +31020,2025-03-10T22:16:38.900064-07:00,993.1782836914062,10.843545,10843.545 +31021,2025-03-10T22:16:49.748974-07:00,993.1693725585938,10.84891,10848.91 +31022,2025-03-10T22:17:00.603739-07:00,993.189208984375,10.854765,10854.765 +31023,2025-03-10T22:17:11.447164-07:00,993.189208984375,10.843425,10843.425 +31024,2025-03-10T22:17:22.297921-07:00,993.1681518554688,10.850757,10850.757 +31025,2025-03-10T22:17:33.146175-07:00,993.140625,10.848254,10848.254 +31026,2025-03-10T22:17:43.985112-07:00,993.1129150390625,10.838937,10838.937 +31027,2025-03-10T22:17:54.831581-07:00,993.1604614257812,10.846469,10846.469 +31028,2025-03-10T22:18:05.684918-07:00,993.1813354492188,10.853337,10853.337 +31029,2025-03-10T22:18:16.534061-07:00,993.1539306640625,10.849143,10849.143 +31030,2025-03-10T22:18:27.373504-07:00,993.1459350585938,10.839443,10839.443 +31031,2025-03-10T22:18:38.226719-07:00,993.1548461914062,10.853215,10853.215 +31032,2025-03-10T22:18:46.400237-07:00,993.140625,8.173518,8173.518 +31033,2025-03-10T22:18:49.068177-07:00,993.1548461914062,2.66794,2667.94 +31034,2025-03-10T22:18:59.916881-07:00,993.1614990234375,10.848704,10848.704 +31035,2025-03-10T22:19:10.758923-07:00,993.1459350585938,10.842042,10842.042 +31036,2025-03-10T22:19:21.604921-07:00,993.1238403320312,10.845998,10845.998 +31037,2025-03-10T22:19:32.450966-07:00,993.1195068359375,10.846045,10846.045 +31038,2025-03-10T22:19:43.301097-07:00,993.10400390625,10.850131,10850.131 +31039,2025-03-10T22:19:54.146205-07:00,993.1459350585938,10.845108,10845.108 +31040,2025-03-10T22:20:05.002235-07:00,993.1304931640625,10.85603,10856.03 +31041,2025-03-10T22:20:15.842975-07:00,993.1162719726562,10.84074,10840.74 +31042,2025-03-10T22:20:26.685071-07:00,993.122802734375,10.842096,10842.096 +31043,2025-03-10T22:20:37.539906-07:00,993.1426391601562,10.854835,10854.835 +31044,2025-03-10T22:20:48.383093-07:00,993.1149291992188,10.843187,10843.187 +31045,2025-03-10T22:20:59.238918-07:00,993.0875244140625,10.855825,10855.825 +31046,2025-03-10T22:21:10.080457-07:00,993.1082763671875,10.841539,10841.539 +31047,2025-03-10T22:21:20.929695-07:00,993.1281127929688,10.849238,10849.238 +31048,2025-03-10T22:21:31.772147-07:00,993.1129760742188,10.842452,10842.452 +31049,2025-03-10T22:21:42.627921-07:00,993.0996704101562,10.855774,10855.774 +31050,2025-03-10T22:21:53.468302-07:00,993.091796875,10.840381,10840.381 +31051,2025-03-10T22:22:04.317899-07:00,993.1040649414062,10.849597,10849.597 +31052,2025-03-10T22:22:15.162908-07:00,993.1182861328125,10.845009,10845.009 +31053,2025-03-10T22:22:26.002329-07:00,993.131591796875,10.839421,10839.421 +31054,2025-03-10T22:22:36.846253-07:00,993.1570434570312,10.843924,10843.924 +31055,2025-03-10T22:22:47.701963-07:00,993.1239013671875,10.85571,10855.71 +31056,2025-03-10T22:22:58.544966-07:00,993.0907592773438,10.843003,10843.003 +31057,2025-03-10T22:23:09.382921-07:00,993.1437377929688,10.837955,10837.955 +31058,2025-03-10T22:23:20.236285-07:00,993.13720703125,10.853364,10853.364 +31059,2025-03-10T22:23:31.077400-07:00,993.1239013671875,10.841115,10841.115 +31060,2025-03-10T22:23:41.916142-07:00,993.1173706054688,10.838742,10838.742 +31061,2025-03-10T22:23:52.765939-07:00,993.115966796875,10.849797,10849.797 +31062,2025-03-10T22:24:03.602175-07:00,993.12158203125,10.836236,10836.236 +31063,2025-03-10T22:24:14.457922-07:00,993.12158203125,10.855747,10855.747 +31064,2025-03-10T22:24:25.294552-07:00,993.0753173828125,10.83663,10836.63 +31065,2025-03-10T22:24:36.143125-07:00,993.1017456054688,10.848573,10848.573 +31066,2025-03-10T22:24:46.985150-07:00,993.12158203125,10.842025,10842.025 +31067,2025-03-10T22:24:57.840532-07:00,993.1490478515625,10.855382,10855.382 +31068,2025-03-10T22:25:08.684913-07:00,993.1113891601562,10.844381,10844.381 +31069,2025-03-10T22:25:19.527251-07:00,993.1392211914062,10.842338,10842.338 +31070,2025-03-10T22:25:30.370682-07:00,993.1392211914062,10.843431,10843.431 +31071,2025-03-10T22:25:41.220181-07:00,993.1378784179688,10.849499,10849.499 +31072,2025-03-10T22:25:52.064053-07:00,993.0892944335938,10.843872,10843.872 +31073,2025-03-10T22:26:02.910920-07:00,993.1236572265625,10.846867,10846.867 +31074,2025-03-10T22:26:13.756917-07:00,993.1024780273438,10.845997,10845.997 +31075,2025-03-10T22:26:24.612834-07:00,993.122314453125,10.855917,10855.917 +31076,2025-03-10T22:26:35.452118-07:00,993.1289672851562,10.839284,10839.284 +31077,2025-03-10T22:26:46.298523-07:00,993.1478271484375,10.846405,10846.405 +31078,2025-03-10T22:26:57.149140-07:00,993.1412353515625,10.850617,10850.617 +31079,2025-03-10T22:27:07.992912-07:00,993.1554565429688,10.843772,10843.772 +31080,2025-03-10T22:27:18.842976-07:00,993.1663818359375,10.850064,10850.064 +31081,2025-03-10T22:27:29.690102-07:00,993.125732421875,10.847126,10847.126 +31082,2025-03-10T22:27:40.534669-07:00,993.1521606445312,10.844567,10844.567 +31083,2025-03-10T22:27:51.383405-07:00,993.1707763671875,10.848736,10848.736 +31084,2025-03-10T22:28:02.237908-07:00,993.1498413085938,10.854503,10854.503 +31085,2025-03-10T22:28:13.078970-07:00,993.1509399414062,10.841062,10841.062 +31086,2025-03-10T22:28:34.771554-07:00,993.1895141601562,21.692584,21692.584 +31087,2025-03-10T22:28:45.623143-07:00,993.1343994140625,10.851589,10851.589 +31088,2025-03-10T22:28:56.468076-07:00,993.16845703125,10.844933,10844.933 +31089,2025-03-10T22:29:07.312253-07:00,993.1817016601562,10.844177,10844.177 +31090,2025-03-10T22:29:18.162238-07:00,993.1807250976562,10.849985,10849.985 +31091,2025-03-10T22:29:28.998217-07:00,993.1607666015625,10.835979,10835.979 +31092,2025-03-10T22:29:39.845291-07:00,993.1718139648438,10.847074,10847.074 +31093,2025-03-10T22:29:50.695916-07:00,993.1598510742188,10.850625,10850.625 +31094,2025-03-10T22:30:01.534275-07:00,993.1387329101562,10.838359,10838.359 +31095,2025-03-10T22:30:12.379957-07:00,993.178466796875,10.845682,10845.682 +31096,2025-03-10T22:30:23.230135-07:00,993.1718139648438,10.850178,10850.178 +31097,2025-03-10T22:30:34.068056-07:00,993.1651611328125,10.837921,10837.921 +31098,2025-03-10T22:30:44.917326-07:00,993.18408203125,10.84927,10849.27 +31099,2025-03-10T22:30:55.760085-07:00,993.2128295898438,10.842759,10842.759 +31100,2025-03-10T22:31:06.609491-07:00,993.191650390625,10.849406,10849.406 +31101,2025-03-10T22:31:17.459265-07:00,993.1906127929688,10.849774,10849.774 +31102,2025-03-10T22:31:28.315275-07:00,993.1751708984375,10.85601,10856.01 +31103,2025-03-10T22:31:39.154064-07:00,993.1760864257812,10.838789,10838.789 +31104,2025-03-10T22:31:50.009895-07:00,993.1553344726562,10.855831,10855.831 +31105,2025-03-10T22:32:00.859393-07:00,993.1936645507812,10.849498,10849.498 +31106,2025-03-10T22:32:11.706283-07:00,993.166259765625,10.84689,10846.89 +31107,2025-03-10T22:32:22.556165-07:00,993.1450805664062,10.849882,10849.882 +31108,2025-03-10T22:32:33.410714-07:00,993.192626953125,10.854549,10854.549 +31109,2025-03-10T22:32:44.253304-07:00,993.2112426757812,10.84259,10842.59 +31110,2025-03-10T22:32:55.096723-07:00,993.1758422851562,10.843419,10843.419 +31111,2025-03-10T22:33:05.950808-07:00,993.1748657226562,10.854085,10854.085 +31112,2025-03-10T22:33:16.792916-07:00,993.2168579101562,10.842108,10842.108 +31113,2025-03-10T22:33:27.635964-07:00,993.2168579101562,10.843048,10843.048 +31114,2025-03-10T22:33:38.469248-07:00,993.1881103515625,10.833284,10833.284 +31115,2025-03-10T22:33:49.305133-07:00,993.2145385742188,10.835885,10835.885 +31116,2025-03-10T22:34:00.150194-07:00,993.215576171875,10.845061,10845.061 +31117,2025-03-10T22:34:11.001554-07:00,993.2023315429688,10.85136,10851.36 +31118,2025-03-10T22:34:21.841274-07:00,993.2013549804688,10.83972,10839.72 +31119,2025-03-10T22:34:32.684793-07:00,993.1881103515625,10.843519,10843.519 +31120,2025-03-10T22:34:43.526969-07:00,993.227783203125,10.842176,10842.176 +31121,2025-03-10T22:34:54.364916-07:00,993.1924438476562,10.837947,10837.947 +31122,2025-03-10T22:35:05.208899-07:00,993.2254638671875,10.843983,10843.983 +31123,2025-03-10T22:35:16.055230-07:00,993.2396850585938,10.846331,10846.331 +31124,2025-03-10T22:35:26.898961-07:00,993.2189331054688,10.843731,10843.731 +31125,2025-03-10T22:35:37.742247-07:00,993.23876953125,10.843286,10843.286 +31126,2025-03-10T22:35:48.579970-07:00,993.2056274414062,10.837723,10837.723 +31127,2025-03-10T22:35:59.420187-07:00,993.2374267578125,10.840217,10840.217 +31128,2025-03-10T22:36:10.256224-07:00,993.2242431640625,10.836037,10836.037 +31129,2025-03-10T22:36:21.098197-07:00,993.2440795898438,10.841973,10841.973 +31130,2025-03-10T22:36:31.935243-07:00,993.236083984375,10.837046,10837.046 +31131,2025-03-10T22:36:42.773375-07:00,993.222900390625,10.838132,10838.132 +31132,2025-03-10T22:36:53.610955-07:00,993.2150268554688,10.83758,10837.58 +31133,2025-03-10T22:37:04.462901-07:00,993.2625732421875,10.851946,10851.946 +31134,2025-03-10T22:37:15.296541-07:00,993.2481079101562,10.83364,10833.64 +31135,2025-03-10T22:37:26.138146-07:00,993.2625732421875,10.841605,10841.605 +31136,2025-03-10T22:37:36.977921-07:00,993.2481079101562,10.839775,10839.775 +31137,2025-03-10T22:37:47.813206-07:00,993.2206420898438,10.835285,10835.285 +31138,2025-03-10T22:37:58.658959-07:00,993.2271728515625,10.845753,10845.753 +31139,2025-03-10T22:38:09.494918-07:00,993.240478515625,10.835959,10835.959 +31140,2025-03-10T22:38:20.344219-07:00,993.2801513671875,10.849301,10849.301 +31141,2025-03-10T22:38:31.188202-07:00,993.2801513671875,10.843983,10843.983 +31142,2025-03-10T22:38:42.029843-07:00,993.272216796875,10.841641,10841.641 +31143,2025-03-10T22:38:52.858921-07:00,993.2867431640625,10.829078,10829.078 +31144,2025-03-10T22:39:03.701165-07:00,993.2854614257812,10.842244,10842.244 +31145,2025-03-10T22:39:14.536969-07:00,993.2579956054688,10.835804,10835.804 +31146,2025-03-10T22:39:25.375922-07:00,993.2380981445312,10.838953,10838.953 +31147,2025-03-10T22:39:36.222973-07:00,993.2447509765625,10.847051,10847.051 +31148,2025-03-10T22:39:47.066259-07:00,993.2579956054688,10.843286,10843.286 +31149,2025-03-10T22:39:57.898158-07:00,993.270263671875,10.831899,10831.899 +31150,2025-03-10T22:40:08.733925-07:00,993.2490844726562,10.835767,10835.767 +31151,2025-03-10T22:40:19.581143-07:00,993.2645874023438,10.847218,10847.218 +31152,2025-03-10T22:40:30.416996-07:00,993.23486328125,10.835853,10835.853 +31153,2025-03-10T22:40:41.248042-07:00,993.270263671875,10.831046,10831.046 +31154,2025-03-10T22:40:52.090465-07:00,993.270263671875,10.842423,10842.423 +31155,2025-03-10T22:41:02.919969-07:00,993.2490844726562,10.829504,10829.504 +31156,2025-03-10T22:41:13.760209-07:00,993.2556762695312,10.84024,10840.24 +31157,2025-03-10T22:41:24.603922-07:00,993.2269287109375,10.843713,10843.713 +31158,2025-03-10T22:41:35.439629-07:00,993.2546997070312,10.835707,10835.707 +31159,2025-03-10T22:41:46.278283-07:00,993.2216186523438,10.838654,10838.654 +31160,2025-03-10T22:41:57.125317-07:00,993.241455078125,10.847034,10847.034 +31161,2025-03-10T22:42:07.970504-07:00,993.2326049804688,10.845187,10845.187 +31162,2025-03-10T22:42:18.812126-07:00,993.25244140625,10.841622,10841.622 +31163,2025-03-10T22:42:29.641922-07:00,993.204833984375,10.829796,10829.796 +31164,2025-03-10T22:42:40.493912-07:00,993.21142578125,10.85199,10851.99 +31165,2025-03-10T22:42:47.893517-07:00,993.217041015625,7.399605,7399.605 +31166,2025-03-10T22:42:51.325683-07:00,993.2302856445312,3.432166,3432.166 +31167,2025-03-10T22:43:02.161173-07:00,993.217041015625,10.83549,10835.49 +31168,2025-03-10T22:43:13.005154-07:00,993.2379150390625,10.843981,10843.981 +31169,2025-03-10T22:43:23.848255-07:00,993.1972045898438,10.843101,10843.101 +31170,2025-03-10T22:43:34.686081-07:00,993.2379150390625,10.837826,10837.826 +31171,2025-03-10T22:43:45.530053-07:00,993.203857421875,10.843972,10843.972 +31172,2025-03-10T22:43:56.359934-07:00,993.217041015625,10.829881,10829.881 +31173,2025-03-10T22:44:07.212140-07:00,993.218017578125,10.852206,10852.206 +31174,2025-03-10T22:44:18.045139-07:00,993.218017578125,10.832999,10832.999 +31175,2025-03-10T22:44:28.894913-07:00,993.217041015625,10.849774,10849.774 +31176,2025-03-10T22:44:39.732713-07:00,993.2312622070312,10.8378,10837.8 +31177,2025-03-10T22:44:50.582704-07:00,993.21044921875,10.849991,10849.991 +31178,2025-03-10T22:45:01.420239-07:00,993.2259521484375,10.837535,10837.535 +31179,2025-03-10T22:45:12.265171-07:00,993.2246704101562,10.844932,10844.932 +31180,2025-03-10T22:45:23.099923-07:00,993.21044921875,10.834752,10834.752 +31181,2025-03-10T22:45:33.937640-07:00,993.2193603515625,10.837717,10837.717 +31182,2025-03-10T22:45:44.785386-07:00,993.1981811523438,10.847746,10847.746 +31183,2025-03-10T22:45:55.623165-07:00,993.2216186523438,10.837779,10837.779 +31184,2025-03-10T22:46:06.472149-07:00,993.2269287109375,10.848984,10848.984 +31185,2025-03-10T22:46:17.318500-07:00,993.1806030273438,10.846351,10846.351 +31186,2025-03-10T22:46:28.157894-07:00,993.23583984375,10.839394,10839.394 +31187,2025-03-10T22:46:38.995912-07:00,993.223876953125,10.838018,10838.018 +31188,2025-03-10T22:46:49.843511-07:00,993.2315673828125,10.847599,10847.599 +31189,2025-03-10T22:47:00.681912-07:00,993.1852416992188,10.838401,10838.401 +31190,2025-03-10T22:47:11.518952-07:00,993.1951293945312,10.83704,10837.04 +31191,2025-03-10T22:47:22.362050-07:00,993.181884765625,10.843098,10843.098 +31192,2025-03-10T22:47:33.204188-07:00,993.1832275390625,10.842138,10842.138 +31193,2025-03-10T22:47:44.047316-07:00,993.1832275390625,10.843128,10843.128 +31194,2025-03-10T22:47:54.881919-07:00,993.173583984375,10.834603,10834.603 +31195,2025-03-10T22:48:05.727905-07:00,993.1484375,10.845986,10845.986 +31196,2025-03-10T22:48:16.571915-07:00,993.142822265625,10.84401,10844.01 +31197,2025-03-10T22:48:27.406296-07:00,993.1847534179688,10.834381,10834.381 +31198,2025-03-10T22:48:38.253963-07:00,993.1397705078125,10.847667,10847.667 +31199,2025-03-10T22:48:49.090915-07:00,993.209228515625,10.836952,10836.952 +31200,2025-03-10T22:48:59.938923-07:00,993.1707763671875,10.848008,10848.008 +31201,2025-03-10T22:49:10.781309-07:00,993.1532592773438,10.842386,10842.386 +31202,2025-03-10T22:49:21.624226-07:00,993.1498413085938,10.842917,10842.917 +31203,2025-03-10T22:49:32.465227-07:00,993.157470703125,10.841001,10841.001 +31204,2025-03-10T22:49:43.306095-07:00,993.180908203125,10.840868,10840.868 +31205,2025-03-10T22:49:54.148939-07:00,993.1898193359375,10.842844,10842.844 +31206,2025-03-10T22:50:04.994228-07:00,993.1842041015625,10.845289,10845.289 +31207,2025-03-10T22:50:15.833922-07:00,993.1722412109375,10.839694,10839.694 +31208,2025-03-10T22:50:26.676143-07:00,993.1666259765625,10.842221,10842.221 +31209,2025-03-10T22:50:37.520189-07:00,993.162353515625,10.844046,10844.046 +31210,2025-03-10T22:50:48.357219-07:00,993.2109375,10.83703,10837.03 +31211,2025-03-10T22:50:59.195894-07:00,993.1867065429688,10.838675,10838.675 +31212,2025-03-10T22:51:10.038912-07:00,993.193359375,10.843018,10843.018 +31213,2025-03-10T22:51:20.875478-07:00,993.1890869140625,10.836566,10836.566 +31214,2025-03-10T22:51:31.716951-07:00,993.1966552734375,10.841473,10841.473 +31215,2025-03-10T22:51:42.547918-07:00,993.2045288085938,10.830967,10830.967 +31216,2025-03-10T22:51:53.382021-07:00,993.2054443359375,10.834103,10834.103 +31217,2025-03-10T22:52:04.214919-07:00,993.2276611328125,10.832898,10832.898 +31218,2025-03-10T22:52:15.062241-07:00,993.2288818359375,10.847322,10847.322 +31219,2025-03-10T22:52:25.906978-07:00,993.1968994140625,10.844737,10844.737 +31220,2025-03-10T22:52:36.742953-07:00,993.21142578125,10.835975,10835.975 +31221,2025-03-10T22:52:47.584908-07:00,993.2335205078125,10.841955,10841.955 +31222,2025-03-10T22:52:58.428930-07:00,993.2212524414062,10.844022,10844.022 +31223,2025-03-10T22:53:09.260621-07:00,993.2279052734375,10.831691,10831.691 +31224,2025-03-10T22:53:20.099270-07:00,993.2357788085938,10.838649,10838.649 +31225,2025-03-10T22:53:30.947918-07:00,993.2301635742188,10.848648,10848.648 +31226,2025-03-10T22:53:41.779315-07:00,993.2324829101562,10.831397,10831.397 +31227,2025-03-10T22:53:52.627685-07:00,993.2479858398438,10.84837,10848.37 +31228,2025-03-10T22:54:03.465508-07:00,993.2402954101562,10.837823,10837.823 +31229,2025-03-10T22:54:14.308916-07:00,993.2536010742188,10.843408,10843.408 +31230,2025-03-10T22:54:25.146674-07:00,993.2423706054688,10.837758,10837.758 +31231,2025-03-10T22:54:35.981920-07:00,993.2767333984375,10.835246,10835.246 +31232,2025-03-10T22:54:46.814921-07:00,993.2645263671875,10.833001,10833.001 +31233,2025-03-10T22:54:57.662076-07:00,993.2723388671875,10.847155,10847.155 +31234,2025-03-10T22:55:08.496114-07:00,993.28125,10.834038,10834.038 +31235,2025-03-10T22:55:19.334035-07:00,993.2945556640625,10.837921,10837.921 +31236,2025-03-10T22:55:30.183054-07:00,993.2769775390625,10.849019,10849.019 +31237,2025-03-10T22:55:41.019780-07:00,993.299072265625,10.836726,10836.726 +31238,2025-03-10T22:55:51.861179-07:00,993.29248046875,10.841399,10841.399 +31239,2025-03-10T22:56:02.692973-07:00,993.3013916015625,10.831794,10831.794 +31240,2025-03-10T22:56:13.542166-07:00,993.2904663085938,10.849193,10849.193 +31241,2025-03-10T22:56:24.372918-07:00,993.305908203125,10.830752,10830.752 +31242,2025-03-10T22:56:35.222139-07:00,993.293701171875,10.849221,10849.221 +31243,2025-03-10T22:56:46.060956-07:00,993.276123046875,10.838817,10838.817 +31244,2025-03-10T22:56:56.909278-07:00,993.2518920898438,10.848322,10848.322 +31245,2025-03-10T22:57:07.751683-07:00,993.259521484375,10.842405,10842.405 +31246,2025-03-10T22:57:18.597971-07:00,993.3214111328125,10.846288,10846.288 +31247,2025-03-10T22:57:29.442161-07:00,993.29052734375,10.84419,10844.19 +31248,2025-03-10T22:57:40.283066-07:00,993.2852172851562,10.840905,10840.905 +31249,2025-03-10T22:57:51.119888-07:00,993.2597045898438,10.836822,10836.822 +31250,2025-03-10T22:58:01.966060-07:00,993.2464599609375,10.846172,10846.172 +31251,2025-03-10T22:58:12.815893-07:00,993.2676391601562,10.849833,10849.833 +31252,2025-03-10T22:58:23.657045-07:00,993.2831420898438,10.841152,10841.152 +31253,2025-03-10T22:58:34.502899-07:00,993.2798461914062,10.845854,10845.854 +31254,2025-03-10T22:58:45.357375-07:00,993.2996826171875,10.854476,10854.476 +31255,2025-03-10T22:58:56.201405-07:00,993.30419921875,10.84403,10844.03 +31256,2025-03-10T22:59:07.037917-07:00,993.2886962890625,10.836512,10836.512 +31257,2025-03-10T22:59:17.879912-07:00,993.2919311523438,10.841995,10841.995 +31258,2025-03-10T22:59:28.721568-07:00,993.2954711914062,10.841656,10841.656 +31259,2025-03-10T22:59:39.563234-07:00,993.2954711914062,10.841666,10841.666 +31260,2025-03-10T22:59:50.404072-07:00,993.276611328125,10.840838,10840.838 +31261,2025-03-10T23:00:01.243386-07:00,993.29345703125,10.839314,10839.314 +31262,2025-03-10T23:00:12.073907-07:00,993.2855224609375,10.830521,10830.521 +31263,2025-03-10T23:00:22.914121-07:00,993.2943725585938,10.840214,10840.214 +31264,2025-03-10T23:00:33.761924-07:00,993.2966918945312,10.847803,10847.803 +31265,2025-03-10T23:00:44.603643-07:00,993.25830078125,10.841719,10841.719 +31266,2025-03-10T23:00:55.447228-07:00,993.2592163085938,10.843585,10843.585 +31267,2025-03-10T23:01:06.286995-07:00,993.2615356445312,10.839767,10839.767 +31268,2025-03-10T23:01:17.121655-07:00,993.2859497070312,10.83466,10834.66 +31269,2025-03-10T23:01:27.971092-07:00,993.295166015625,10.849437,10849.437 +31270,2025-03-10T23:01:38.807182-07:00,993.3016967773438,10.83609,10836.09 +31271,2025-03-10T23:01:49.648895-07:00,993.3106079101562,10.841713,10841.713 +31272,2025-03-10T23:02:00.489951-07:00,993.2742309570312,10.841056,10841.056 +31273,2025-03-10T23:02:11.324251-07:00,993.2896728515625,10.8343,10834.3 +31274,2025-03-10T23:02:22.165063-07:00,993.2962646484375,10.840812,10840.812 +31275,2025-03-10T23:02:32.999151-07:00,993.311767578125,10.834088,10834.088 +31276,2025-03-10T23:02:43.836533-07:00,993.2787475585938,10.837382,10837.382 +31277,2025-03-10T23:02:54.673476-07:00,993.322021484375,10.836943,10836.943 +31278,2025-03-10T23:03:05.505351-07:00,993.2965087890625,10.831875,10831.875 +31279,2025-03-10T23:03:16.344172-07:00,993.305419921875,10.838821,10838.821 +31280,2025-03-10T23:03:27.180736-07:00,993.2709350585938,10.836564,10836.564 +31281,2025-03-10T23:03:38.022991-07:00,993.2854614257812,10.842255,10842.255 +31282,2025-03-10T23:03:48.854255-07:00,993.301025390625,10.831264,10831.264 +31283,2025-03-10T23:03:59.691137-07:00,993.2679443359375,10.836882,10836.882 +31284,2025-03-10T23:04:10.535923-07:00,993.2943725585938,10.844786,10844.786 +31285,2025-03-10T23:04:21.373509-07:00,993.2689208984375,10.837586,10837.586 +31286,2025-03-10T23:04:32.212924-07:00,993.2569580078125,10.839415,10839.415 +31287,2025-03-10T23:04:43.058899-07:00,993.2569580078125,10.845975,10845.975 +31288,2025-03-10T23:04:53.892019-07:00,993.2525634765625,10.83312,10833.12 +31289,2025-03-10T23:05:04.726895-07:00,993.2734375,10.834876,10834.876 +31290,2025-03-10T23:05:15.564170-07:00,993.2402954101562,10.837275,10837.275 +31291,2025-03-10T23:05:26.415061-07:00,993.2770385742188,10.850891,10850.891 +31292,2025-03-10T23:05:37.251458-07:00,993.2770385742188,10.836397,10836.397 +31293,2025-03-10T23:05:48.137093-07:00,993.2647094726562,10.885635,10885.635 +31294,2025-03-10T23:05:58.981146-07:00,993.268310546875,10.844053,10844.053 +31295,2025-03-10T23:06:09.813454-07:00,993.2670288085938,10.832308,10832.308 +31296,2025-03-10T23:06:20.650925-07:00,993.268310546875,10.837471,10837.471 +31297,2025-03-10T23:06:31.499067-07:00,993.2506103515625,10.848142,10848.142 +31298,2025-03-10T23:06:42.342925-07:00,993.2592163085938,10.843858,10843.858 +31299,2025-03-10T23:06:53.178302-07:00,993.2879638671875,10.835377,10835.377 +31300,2025-03-10T23:07:04.017968-07:00,993.2615356445312,10.839666,10839.666 +31301,2025-03-10T23:07:14.871830-07:00,993.2849731445312,10.853862,10853.862 +31302,2025-03-10T23:07:25.707918-07:00,993.2782592773438,10.836088,10836.088 +31303,2025-03-10T23:07:36.553934-07:00,993.2806396484375,10.846016,10846.016 +31304,2025-03-10T23:07:47.395845-07:00,993.2408447265625,10.841911,10841.911 +31305,2025-03-10T23:07:58.227157-07:00,993.2894287109375,10.831312,10831.312 +31306,2025-03-10T23:08:09.071167-07:00,993.23876953125,10.84401,10844.01 +31307,2025-03-10T23:08:19.908228-07:00,993.2662353515625,10.837061,10837.061 +31308,2025-03-10T23:08:30.750957-07:00,993.2631225585938,10.842729,10842.729 +31309,2025-03-10T23:08:41.592920-07:00,993.27734375,10.841963,10841.963 +31310,2025-03-10T23:08:52.425313-07:00,993.26416015625,10.832393,10832.393 +31311,2025-03-10T23:09:03.261165-07:00,993.2388916015625,10.835852,10835.852 +31312,2025-03-10T23:09:14.106909-07:00,993.2739868164062,10.845744,10845.744 +31313,2025-03-10T23:09:24.942912-07:00,993.2355346679688,10.836003,10836.003 +31314,2025-03-10T23:09:35.783529-07:00,993.2421875,10.840617,10840.617 +31315,2025-03-10T23:09:46.623918-07:00,993.2222900390625,10.840389,10840.389 +31316,2025-03-10T23:09:57.460143-07:00,993.244384765625,10.836225,10836.225 +31317,2025-03-10T23:10:08.298997-07:00,993.2112426757812,10.838854,10838.854 +31318,2025-03-10T23:10:19.143157-07:00,993.2298583984375,10.84416,10844.16 +31319,2025-03-10T23:10:29.977914-07:00,993.2179565429688,10.834757,10834.757 +31320,2025-03-10T23:10:40.810211-07:00,993.2047119140625,10.832297,10832.297 +31321,2025-03-10T23:10:51.660837-07:00,993.185791015625,10.850626,10850.626 +31322,2025-03-10T23:11:02.486293-07:00,993.2056274414062,10.825456,10825.456 +31323,2025-03-10T23:11:13.331241-07:00,993.185791015625,10.844948,10844.948 +31324,2025-03-10T23:11:24.172292-07:00,993.173828125,10.841051,10841.051 +31325,2025-03-10T23:11:35.007897-07:00,993.2003173828125,10.835605,10835.605 +31326,2025-03-10T23:11:45.846162-07:00,993.1681518554688,10.838265,10838.265 +31327,2025-03-10T23:11:56.689183-07:00,993.1671752929688,10.843021,10843.021 +31328,2025-03-10T23:12:07.540334-07:00,993.1615600585938,10.851151,10851.151 +31329,2025-03-10T23:12:18.382160-07:00,993.1959228515625,10.841826,10841.826 +31330,2025-03-10T23:12:29.218969-07:00,993.1748657226562,10.836809,10836.809 +31331,2025-03-10T23:12:40.057812-07:00,993.1748657226562,10.838843,10838.843 +31332,2025-03-10T23:12:50.905905-07:00,993.1651000976562,10.848093,10848.093 +31333,2025-03-10T23:13:01.749359-07:00,993.158447265625,10.843454,10843.454 +31334,2025-03-10T23:13:12.591919-07:00,993.1571655273438,10.84256,10842.56 +31335,2025-03-10T23:13:23.437172-07:00,993.1240844726562,10.845253,10845.253 +31336,2025-03-10T23:13:34.277229-07:00,993.1673583984375,10.840057,10840.057 +31337,2025-03-10T23:13:45.121228-07:00,993.1660766601562,10.843999,10843.999 +31338,2025-03-10T23:13:55.952213-07:00,993.1461791992188,10.830985,10830.985 +31339,2025-03-10T23:14:06.800980-07:00,993.140869140625,10.848767,10848.767 +31340,2025-03-10T23:14:17.638188-07:00,993.1484375,10.837208,10837.208 +31341,2025-03-10T23:14:28.480923-07:00,993.1484375,10.842735,10842.735 +31342,2025-03-10T23:14:39.325972-07:00,993.136474609375,10.845049,10845.049 +31343,2025-03-10T23:14:50.177902-07:00,993.1595458984375,10.85193,10851.93 +31344,2025-03-10T23:15:01.018929-07:00,993.1397094726562,10.841027,10841.027 +31345,2025-03-10T23:15:11.865259-07:00,993.1539306640625,10.84633,10846.33 +31346,2025-03-10T23:15:22.704003-07:00,993.1551513671875,10.838744,10838.744 +31347,2025-03-10T23:15:33.542930-07:00,993.1375732421875,10.838927,10838.927 +31348,2025-03-10T23:15:44.377977-07:00,993.1296997070312,10.835047,10835.047 +31349,2025-03-10T23:15:55.226326-07:00,993.15087890625,10.848349,10848.349 +31350,2025-03-10T23:16:06.068808-07:00,993.1177368164062,10.842482,10842.482 +31351,2025-03-10T23:16:16.908977-07:00,993.1243896484375,10.840169,10840.169 +31352,2025-03-10T23:16:27.750914-07:00,993.1398315429688,10.841937,10841.937 +31353,2025-03-10T23:16:38.594673-07:00,993.10546875,10.843759,10843.759 +31354,2025-03-10T23:16:49.429891-07:00,993.1187744140625,10.835218,10835.218 +31355,2025-03-10T23:17:00.281107-07:00,993.1199951171875,10.851216,10851.216 +31356,2025-03-10T23:17:11.119279-07:00,993.106689453125,10.838172,10838.172 +31357,2025-03-10T23:17:21.965751-07:00,993.107666015625,10.846472,10846.472 +31358,2025-03-10T23:17:32.814310-07:00,993.0868530273438,10.848559,10848.559 +31359,2025-03-10T23:17:43.646902-07:00,993.1099853515625,10.832592,10832.592 +31360,2025-03-10T23:17:54.489924-07:00,993.0679931640625,10.843022,10843.022 +31361,2025-03-10T23:18:05.337108-07:00,993.0635986328125,10.847184,10847.184 +31362,2025-03-10T23:18:16.175116-07:00,993.0635986328125,10.838008,10838.008 +31363,2025-03-10T23:18:27.023074-07:00,993.0701293945312,10.847958,10847.958 +31364,2025-03-10T23:18:37.868094-07:00,993.0657958984375,10.84502,10845.02 +31365,2025-03-10T23:18:48.707288-07:00,993.072509765625,10.839194,10839.194 +31366,2025-03-10T23:18:59.559276-07:00,993.0471801757812,10.851988,10851.988 +31367,2025-03-10T23:19:10.403174-07:00,993.067138671875,10.843898,10843.898 +31368,2025-03-10T23:19:21.249918-07:00,993.0349731445312,10.846744,10846.744 +31369,2025-03-10T23:19:32.103173-07:00,993.0008544921875,10.853255,10853.255 +31370,2025-03-10T23:19:42.948918-07:00,993.02294921875,10.845745,10845.745 +31371,2025-03-10T23:19:53.786904-07:00,992.9964599609375,10.837986,10837.986 +31372,2025-03-10T23:20:04.637903-07:00,993.0097045898438,10.850999,10850.999 +31373,2025-03-10T23:20:15.484098-07:00,992.9951782226562,10.846195,10846.195 +31374,2025-03-10T23:20:26.326579-07:00,992.9964599609375,10.842481,10842.481 +31375,2025-03-10T23:20:37.174919-07:00,993.0031127929688,10.84834,10848.34 +31376,2025-03-10T23:20:48.024228-07:00,992.969970703125,10.849309,10849.309 +31377,2025-03-10T23:20:58.860917-07:00,992.9974975585938,10.836689,10836.689 +31378,2025-03-10T23:21:09.711779-07:00,992.9832763671875,10.850862,10850.862 +31379,2025-03-10T23:21:20.565249-07:00,992.966552734375,10.85347,10853.47 +31380,2025-03-10T23:21:31.401634-07:00,992.9798583984375,10.836385,10836.385 +31381,2025-03-10T23:21:42.258393-07:00,992.9600219726562,10.856759,10856.759 +31382,2025-03-10T23:21:53.095007-07:00,992.9754638671875,10.836614,10836.614 +31383,2025-03-10T23:22:03.951916-07:00,992.9896850585938,10.856909,10856.909 +31384,2025-03-10T23:22:14.796976-07:00,992.984375,10.84506,10845.06 +31385,2025-03-10T23:22:25.644077-07:00,992.9654541015625,10.847101,10847.101 +31386,2025-03-10T23:22:36.488210-07:00,993.0140380859375,10.844133,10844.133 +31387,2025-03-10T23:22:47.332265-07:00,992.9611206054688,10.844055,10844.055 +31388,2025-03-10T23:22:58.181412-07:00,992.9977416992188,10.849147,10849.147 +31389,2025-03-10T23:23:09.029150-07:00,992.9623413085938,10.847738,10847.738 +31390,2025-03-10T23:23:19.878994-07:00,992.965576171875,10.849844,10849.844 +31391,2025-03-10T23:23:30.727140-07:00,992.9567260742188,10.848146,10848.146 +31392,2025-03-10T23:23:41.570676-07:00,992.9668579101562,10.843536,10843.536 +31393,2025-03-10T23:23:52.427510-07:00,992.9823608398438,10.856834,10856.834 +31394,2025-03-10T23:24:03.273062-07:00,992.9757080078125,10.845552,10845.552 +31395,2025-03-10T23:24:14.132357-07:00,992.956787109375,10.859295,10859.295 +31396,2025-03-10T23:24:24.977477-07:00,992.9581298828125,10.84512,10845.12 +31397,2025-03-10T23:24:35.824086-07:00,992.9590454101562,10.846609,10846.609 +31398,2025-03-10T23:24:46.673915-07:00,992.9281005859375,10.849829,10849.829 +31399,2025-03-10T23:24:57.518922-07:00,992.9547119140625,10.845007,10845.007 +31400,2025-03-10T23:25:08.372602-07:00,992.9227905273438,10.85368,10853.68 +31401,2025-03-10T23:25:19.213924-07:00,992.9439697265625,10.841322,10841.322 +31402,2025-03-10T23:25:30.059245-07:00,992.9439697265625,10.845321,10845.321 +31403,2025-03-10T23:25:40.904897-07:00,992.9317016601562,10.845652,10845.652 +31404,2025-03-10T23:25:51.755960-07:00,992.9317016601562,10.851063,10851.063 +31405,2025-03-10T23:26:02.600068-07:00,992.925048828125,10.844108,10844.108 +31406,2025-03-10T23:26:13.452118-07:00,992.91845703125,10.85205,10852.05 +31407,2025-03-10T23:26:24.299994-07:00,992.9329833984375,10.847876,10847.876 +31408,2025-03-10T23:26:35.152131-07:00,992.920654296875,10.852137,10852.137 +31409,2025-03-10T23:26:45.994294-07:00,992.9219360351562,10.842163,10842.163 +31410,2025-03-10T23:26:56.849191-07:00,992.9484252929688,10.854897,10854.897 +31411,2025-03-10T23:27:07.703746-07:00,992.9020385742188,10.854555,10854.555 +31412,2025-03-10T23:27:18.546517-07:00,992.916259765625,10.842771,10842.771 +31413,2025-03-10T23:27:29.388978-07:00,992.9241943359375,10.842461,10842.461 +31414,2025-03-10T23:27:40.243908-07:00,992.9375,10.85493,10854.93 +31415,2025-03-10T23:27:51.094228-07:00,992.8954467773438,10.85032,10850.32 +31416,2025-03-10T23:28:01.939923-07:00,992.9109497070312,10.845695,10845.695 +31417,2025-03-10T23:28:12.785958-07:00,992.9229736328125,10.846035,10846.035 +31418,2025-03-10T23:28:23.626241-07:00,992.8831176757812,10.840283,10840.283 +31419,2025-03-10T23:28:34.465915-07:00,992.9185791015625,10.839674,10839.674 +31420,2025-03-10T23:28:45.309923-07:00,992.916259765625,10.844008,10844.008 +31421,2025-03-10T23:28:56.151925-07:00,992.9384155273438,10.842002,10842.002 +31422,2025-03-10T23:29:07.000232-07:00,992.8888549804688,10.848307,10848.307 +31423,2025-03-10T23:29:17.849998-07:00,992.8898315429688,10.849766,10849.766 +31424,2025-03-10T23:29:28.698185-07:00,992.8964233398438,10.848187,10848.187 +31425,2025-03-10T23:29:39.536919-07:00,992.903076171875,10.838734,10838.734 +31426,2025-03-10T23:29:50.388965-07:00,992.8954467773438,10.852046,10852.046 +31427,2025-03-10T23:30:01.227919-07:00,992.8623657226562,10.838954,10838.954 +31428,2025-03-10T23:30:12.074422-07:00,992.8954467773438,10.846503,10846.503 +31429,2025-03-10T23:30:22.920468-07:00,992.86669921875,10.846046,10846.046 +31430,2025-03-10T23:30:33.762906-07:00,992.8865356445312,10.842438,10842.438 +31431,2025-03-10T23:30:44.603930-07:00,992.877685546875,10.841024,10841.024 +31432,2025-03-10T23:30:55.453920-07:00,992.891845703125,10.84999,10849.99 +31433,2025-03-10T23:31:06.290912-07:00,992.8630981445312,10.836992,10836.992 +31434,2025-03-10T23:31:17.137885-07:00,992.84765625,10.846973,10846.973 +31435,2025-03-10T23:31:27.980965-07:00,992.8963012695312,10.84308,10843.08 +31436,2025-03-10T23:31:38.835955-07:00,992.8618774414062,10.85499,10854.99 +31437,2025-03-10T23:31:49.676134-07:00,992.8807983398438,10.840179,10840.179 +31438,2025-03-10T23:32:00.523925-07:00,992.892822265625,10.847791,10847.791 +31439,2025-03-10T23:32:11.367194-07:00,992.8728637695312,10.843269,10843.269 +31440,2025-03-10T23:32:22.217241-07:00,992.8719482421875,10.850047,10850.047 +31441,2025-03-10T23:32:33.055123-07:00,992.8432006835938,10.837882,10837.882 +31442,2025-03-10T23:32:43.909586-07:00,992.8640747070312,10.854463,10854.463 +31443,2025-03-10T23:32:54.745090-07:00,992.8563842773438,10.835504,10835.504 +31444,2025-03-10T23:33:05.594372-07:00,992.86181640625,10.849282,10849.282 +31445,2025-03-10T23:33:16.436844-07:00,992.8883056640625,10.842472,10842.472 +31446,2025-03-10T23:33:27.273899-07:00,992.8661499023438,10.837055,10837.055 +31447,2025-03-10T23:33:38.124923-07:00,992.87939453125,10.851024,10851.024 +31448,2025-03-10T23:33:48.966477-07:00,992.8638916015625,10.841554,10841.554 +31449,2025-03-10T23:33:59.809241-07:00,992.8850708007812,10.842764,10842.764 +31450,2025-03-10T23:34:10.659281-07:00,992.8563232421875,10.85004,10850.04 +31451,2025-03-10T23:34:21.494167-07:00,992.876220703125,10.834886,10834.886 +31452,2025-03-10T23:34:32.339175-07:00,992.8616943359375,10.845008,10845.008 +31453,2025-03-10T23:34:43.181628-07:00,992.8726806640625,10.842453,10842.453 +31454,2025-03-10T23:34:54.026060-07:00,992.8726806640625,10.844432,10844.432 +31455,2025-03-10T23:35:04.860901-07:00,992.8505249023438,10.834841,10834.841 +31456,2025-03-10T23:35:15.706151-07:00,992.885009765625,10.84525,10845.25 +31457,2025-03-10T23:35:26.541237-07:00,992.9092407226562,10.835086,10835.086 +31458,2025-03-10T23:35:37.383961-07:00,992.8760986328125,10.842724,10842.724 +31459,2025-03-10T23:35:48.230913-07:00,992.8662719726562,10.846952,10846.952 +31460,2025-03-10T23:35:59.073182-07:00,992.878173828125,10.842269,10842.269 +31461,2025-03-10T23:36:09.920988-07:00,992.877197265625,10.847806,10847.806 +31462,2025-03-10T23:36:20.764213-07:00,992.8626708984375,10.843225,10843.225 +31463,2025-03-10T23:36:31.612251-07:00,992.8494262695312,10.848038,10848.038 +31464,2025-03-10T23:36:42.446363-07:00,992.8948364257812,10.834112,10834.112 +31465,2025-03-10T23:36:53.289192-07:00,992.8936157226562,10.842829,10842.829 +31466,2025-03-10T23:37:04.141202-07:00,992.886962890625,10.85201,10852.01 +31467,2025-03-10T23:37:14.979768-07:00,992.8727416992188,10.838566,10838.566 +31468,2025-03-10T23:37:25.817384-07:00,992.904541015625,10.837616,10837.616 +31469,2025-03-10T23:37:36.670969-07:00,992.9112548828125,10.853585,10853.585 +31470,2025-03-10T23:37:47.510920-07:00,992.8992309570312,10.839951,10839.951 +31471,2025-03-10T23:37:58.357339-07:00,992.8903198242188,10.846419,10846.419 +31472,2025-03-10T23:38:09.205942-07:00,992.8890380859375,10.848603,10848.603 +31473,2025-03-10T23:38:20.051126-07:00,992.93017578125,10.845184,10845.184 +31474,2025-03-10T23:38:30.895921-07:00,992.8934326171875,10.844795,10844.795 +31475,2025-03-10T23:38:41.745921-07:00,992.953125,10.85,10850.0 +31476,2025-03-10T23:38:52.590918-07:00,992.91015625,10.844997,10844.997 +31477,2025-03-10T23:39:03.440923-07:00,992.9696655273438,10.850005,10850.005 +31478,2025-03-10T23:39:14.287959-07:00,992.9696655273438,10.847036,10847.036 +31479,2025-03-10T23:39:25.137208-07:00,992.9121704101562,10.849249,10849.249 +31480,2025-03-10T23:39:35.991221-07:00,992.9533081054688,10.854013,10854.013 +31481,2025-03-10T23:39:46.829955-07:00,992.938720703125,10.838734,10838.734 +31482,2025-03-10T23:39:57.684163-07:00,992.924560546875,10.854208,10854.208 +31483,2025-03-10T23:40:08.526922-07:00,992.9752197265625,10.842759,10842.759 +31484,2025-03-10T23:40:19.379901-07:00,992.9620361328125,10.852979,10852.979 +31485,2025-03-10T23:40:30.220455-07:00,992.9385986328125,10.840554,10840.554 +31486,2025-03-10T23:40:41.074338-07:00,992.978271484375,10.853883,10853.883 +31487,2025-03-10T23:40:51.915696-07:00,992.9486083984375,10.841358,10841.358 +31488,2025-03-10T23:41:02.768038-07:00,992.9840087890625,10.852342,10852.342 +31489,2025-03-10T23:41:13.612898-07:00,992.9473266601562,10.84486,10844.86 +31490,2025-03-10T23:41:24.462295-07:00,992.9949951171875,10.849397,10849.397 +31491,2025-03-10T23:41:35.298901-07:00,992.9662475585938,10.836606,10836.606 +31492,2025-03-10T23:41:46.153923-07:00,992.990478515625,10.855022,10855.022 +31493,2025-03-10T23:41:56.992599-07:00,992.945068359375,10.838676,10838.676 +31494,2025-03-10T23:42:07.833205-07:00,992.962646484375,10.840606,10840.606 +31495,2025-03-10T23:42:18.681920-07:00,992.9617309570312,10.848715,10848.715 +31496,2025-03-10T23:42:29.530906-07:00,993.0014038085938,10.848986,10848.986 +31497,2025-03-10T23:42:40.368343-07:00,992.966064453125,10.837437,10837.437 +31498,2025-03-10T23:42:51.212506-07:00,992.9528198242188,10.844163,10844.163 +31499,2025-03-10T23:43:02.061012-07:00,992.970458984375,10.848506,10848.506 +31500,2025-03-10T23:43:12.909919-07:00,992.97607421875,10.848907,10848.907 +31501,2025-03-10T23:43:23.752924-07:00,992.969482421875,10.843005,10843.005 +31502,2025-03-10T23:43:34.597339-07:00,992.987060546875,10.844415,10844.415 +31503,2025-03-10T23:43:45.446927-07:00,992.979248046875,10.849588,10849.588 +31504,2025-03-10T23:43:56.288370-07:00,992.9692993164062,10.841443,10841.443 +31505,2025-03-10T23:44:07.143132-07:00,992.9649047851562,10.854762,10854.762 +31506,2025-03-10T23:44:17.975923-07:00,992.962646484375,10.832791,10832.791 +31507,2025-03-10T23:44:28.822237-07:00,993.00341796875,10.846314,10846.314 +31508,2025-03-10T23:44:39.666356-07:00,992.9824829101562,10.844119,10844.119 +31509,2025-03-10T23:44:50.505141-07:00,992.9835205078125,10.838785,10838.785 +31510,2025-03-10T23:45:01.352066-07:00,992.9824829101562,10.846925,10846.925 +31511,2025-03-10T23:45:12.194145-07:00,992.9824829101562,10.842079,10842.079 +31512,2025-03-10T23:45:23.041915-07:00,992.9736938476562,10.84777,10847.77 +31513,2025-03-10T23:45:33.890930-07:00,992.989990234375,10.849015,10849.015 +31514,2025-03-10T23:45:44.730952-07:00,993.0022583007812,10.840022,10840.022 +31515,2025-03-10T23:45:55.573914-07:00,993.0142211914062,10.842962,10842.962 +31516,2025-03-10T23:46:06.429923-07:00,992.9857788085938,10.856009,10856.009 +31517,2025-03-10T23:46:17.271913-07:00,992.9724731445312,10.84199,10841.99 +31518,2025-03-10T23:46:28.118927-07:00,993.0109252929688,10.847014,10847.014 +31519,2025-03-10T23:46:38.962341-07:00,992.9967041015625,10.843414,10843.414 +31520,2025-03-10T23:46:49.798901-07:00,992.9835205078125,10.83656,10836.56 +31521,2025-03-10T23:47:00.635916-07:00,992.9746704101562,10.837015,10837.015 +31522,2025-03-10T23:47:11.481927-07:00,992.9657592773438,10.846011,10846.011 +31523,2025-03-10T23:47:22.322253-07:00,992.986572265625,10.840326,10840.326 +31524,2025-03-10T23:47:33.159968-07:00,992.9512329101562,10.837715,10837.715 +31525,2025-03-10T23:47:44.009308-07:00,992.9833374023438,10.84934,10849.34 +31526,2025-03-10T23:47:54.853437-07:00,993.0086059570312,10.844129,10844.129 +31527,2025-03-10T23:48:05.695453-07:00,992.9678344726562,10.842016,10842.016 +31528,2025-03-10T23:48:16.534921-07:00,992.93115234375,10.839468,10839.468 +31529,2025-03-10T23:48:27.379918-07:00,992.9642944335938,10.844997,10844.997 +31530,2025-03-10T23:48:38.230918-07:00,992.9500732421875,10.851,10851.0 +31531,2025-03-10T23:48:49.068985-07:00,992.9368896484375,10.838067,10838.067 +31532,2025-03-10T23:48:59.918920-07:00,992.941162109375,10.849935,10849.935 +31533,2025-03-10T23:49:10.763230-07:00,992.93994140625,10.84431,10844.31 +31534,2025-03-10T23:49:21.609963-07:00,992.9124145507812,10.846733,10846.733 +31535,2025-03-10T23:49:32.453387-07:00,992.9168090820312,10.843424,10843.424 +31536,2025-03-10T23:49:43.297222-07:00,992.9168090820312,10.843835,10843.835 +31537,2025-03-10T23:49:54.127253-07:00,992.9356079101562,10.830031,10830.031 +31538,2025-03-10T23:50:04.975897-07:00,992.9068603515625,10.848644,10848.644 +31539,2025-03-10T23:50:15.819079-07:00,992.892333984375,10.843182,10843.182 +31540,2025-03-10T23:50:26.655965-07:00,992.8914184570312,10.836886,10836.886 +31541,2025-03-10T23:50:37.500192-07:00,992.9254760742188,10.844227,10844.227 +31542,2025-03-10T23:50:48.343021-07:00,992.8914184570312,10.842829,10842.829 +31543,2025-03-10T23:50:59.188923-07:00,992.88916015625,10.845902,10845.902 +31544,2025-03-10T23:51:10.030106-07:00,992.9166259765625,10.841183,10841.183 +31545,2025-03-10T23:51:20.873263-07:00,992.9090576171875,10.843157,10843.157 +31546,2025-03-10T23:51:31.714932-07:00,992.913330078125,10.841669,10841.669 +31547,2025-03-10T23:51:42.558176-07:00,992.912109375,10.843244,10843.244 +31548,2025-03-10T23:51:53.401162-07:00,992.8657836914062,10.842986,10842.986 +31549,2025-03-10T23:52:04.251975-07:00,992.9110717773438,10.850813,10850.813 +31550,2025-03-10T23:52:15.093387-07:00,992.9031982421875,10.841412,10841.412 +31551,2025-03-10T23:52:25.930954-07:00,992.9031982421875,10.837567,10837.567 +31552,2025-03-10T23:52:36.777912-07:00,992.8900146484375,10.846958,10846.958 +31553,2025-03-10T23:52:47.620112-07:00,992.8953247070312,10.8422,10842.2 +31554,2025-03-10T23:52:58.460261-07:00,992.9031982421875,10.840149,10840.149 +31555,2025-03-10T23:53:09.303229-07:00,992.898681640625,10.842968,10842.968 +31556,2025-03-10T23:53:20.148101-07:00,992.8788452148438,10.844872,10844.872 +31557,2025-03-10T23:53:30.989920-07:00,992.899658203125,10.841819,10841.819 +31558,2025-03-10T23:53:41.831925-07:00,992.91064453125,10.842005,10842.005 +31559,2025-03-10T23:53:52.675253-07:00,992.8973388671875,10.843328,10843.328 +31560,2025-03-10T23:54:03.516923-07:00,992.8699340820312,10.84167,10841.67 +31561,2025-03-10T23:54:14.350257-07:00,992.8897705078125,10.833334,10833.334 +31562,2025-03-10T23:54:25.199971-07:00,992.8831176757812,10.849714,10849.714 +31563,2025-03-10T23:54:36.043631-07:00,992.9017333984375,10.84366,10843.66 +31564,2025-03-10T23:54:46.879113-07:00,992.8951416015625,10.835482,10835.482 +31565,2025-03-10T23:54:57.723148-07:00,992.9051513671875,10.844035,10844.035 +31566,2025-03-10T23:55:08.564925-07:00,992.8720092773438,10.841777,10841.777 +31567,2025-03-10T23:55:19.408444-07:00,992.8895874023438,10.843519,10843.519 +31568,2025-03-10T23:55:30.248399-07:00,992.8618774414062,10.839955,10839.955 +31569,2025-03-10T23:55:41.097240-07:00,992.8829956054688,10.848841,10848.841 +31570,2025-03-10T23:55:51.943083-07:00,992.8662719726562,10.845843,10845.843 +31571,2025-03-10T23:56:02.782527-07:00,992.8873291015625,10.839444,10839.444 +31572,2025-03-10T23:56:13.625105-07:00,992.8651733398438,10.842578,10842.578 +31573,2025-03-10T23:56:15.013970-07:00,992.8992919921875,1.388865,1388.865 +31574,2025-03-10T23:56:24.474149-07:00,992.87841796875,9.460179,9460.179 +31575,2025-03-10T23:56:35.309897-07:00,992.889404296875,10.835748,10835.748 +31576,2025-03-10T23:56:46.161152-07:00,992.8682861328125,10.851255,10851.255 +31577,2025-03-10T23:56:57.003061-07:00,992.860595703125,10.841909,10841.909 +31578,2025-03-10T23:57:07.847122-07:00,992.852783203125,10.844061,10844.061 +31579,2025-03-10T23:57:18.694965-07:00,992.8507690429688,10.847843,10847.843 +31580,2025-03-10T23:57:29.536895-07:00,992.851806640625,10.84193,10841.93 +31581,2025-03-10T23:57:40.380918-07:00,992.8826293945312,10.844023,10844.023 +31582,2025-03-10T23:57:51.225198-07:00,992.8551635742188,10.84428,10844.28 +31583,2025-03-10T23:58:02.070255-07:00,992.8816528320312,10.845057,10845.057 +31584,2025-03-10T23:58:12.915921-07:00,992.83837890625,10.845666,10845.666 +31585,2025-03-10T23:58:23.752151-07:00,992.8462524414062,10.83623,10836.23 +31586,2025-03-10T23:58:34.590011-07:00,992.830810546875,10.83786,10837.86 +31587,2025-03-10T23:58:45.422919-07:00,992.8426513671875,10.832908,10832.908 +31588,2025-03-10T23:58:56.261169-07:00,992.8361206054688,10.83825,10838.25 +31589,2025-03-10T23:59:07.103261-07:00,992.8272094726562,10.842092,10842.092 +31590,2025-03-10T23:59:17.939967-07:00,992.8262329101562,10.836706,10836.706 +31591,2025-03-10T23:59:28.788920-07:00,992.8262329101562,10.848953,10848.953 +31592,2025-03-10T23:59:39.625914-07:00,992.8182983398438,10.836994,10836.994 +31593,2025-03-10T23:59:50.475323-07:00,992.8084106445312,10.849409,10849.409 +31594,2025-03-11T00:00:01.314289-07:00,992.7862548828125,10.838966,10838.966 +31595,2025-03-11T00:00:12.150924-07:00,862.9703369140625,10.836635,10836.635 +31596,2025-03-11T00:00:23.005147-07:00,992.7320556640625,10.854223,10854.223 +31597,2025-03-11T00:00:33.842410-07:00,992.76318359375,10.837263,10837.263 +31598,2025-03-11T00:00:44.686257-07:00,992.75,10.843847,10843.847 +31599,2025-03-11T00:00:55.528182-07:00,992.78076171875,10.841925,10841.925 +31600,2025-03-11T00:01:06.365924-07:00,992.7542724609375,10.837742,10837.742 +31601,2025-03-11T00:01:17.209923-07:00,992.73876953125,10.843999,10843.999 +31602,2025-03-11T00:01:28.040005-07:00,992.7123413085938,10.830082,10830.082 +31603,2025-03-11T00:01:38.883301-07:00,992.7176513671875,10.843296,10843.296 +31604,2025-03-11T00:01:49.725922-07:00,992.7167358398438,10.842621,10842.621 +31605,2025-03-11T00:02:00.570269-07:00,992.7232666015625,10.844347,10844.347 +31606,2025-03-11T00:02:11.419027-07:00,992.713134765625,10.848758,10848.758 +31607,2025-03-11T00:02:22.261419-07:00,992.7320556640625,10.842392,10842.392 +31608,2025-03-11T00:02:33.104921-07:00,992.7320556640625,10.843502,10843.502 +31609,2025-03-11T00:02:43.949132-07:00,992.7098388671875,10.844211,10844.211 +31610,2025-03-11T00:02:54.796918-07:00,992.71875,10.847786,10847.786 +31611,2025-03-11T00:03:05.638302-07:00,992.7406005859375,10.841384,10841.384 +31612,2025-03-11T00:03:16.482082-07:00,992.7274169921875,10.84378,10843.78 +31613,2025-03-11T00:03:27.331235-07:00,992.7207641601562,10.849153,10849.153 +31614,2025-03-11T00:03:38.180142-07:00,992.7062377929688,10.848907,10848.907 +31615,2025-03-11T00:03:49.024493-07:00,992.6920166015625,10.844351,10844.351 +31616,2025-03-11T00:03:59.866331-07:00,992.6788330078125,10.841838,10841.838 +31617,2025-03-11T00:04:10.704912-07:00,992.709716796875,10.838581,10838.581 +31618,2025-03-11T00:04:21.552919-07:00,992.709716796875,10.848007,10848.007 +31619,2025-03-11T00:04:32.396067-07:00,992.722900390625,10.843148,10843.148 +31620,2025-03-11T00:04:43.236977-07:00,992.7206420898438,10.84091,10840.91 +31621,2025-03-11T00:04:54.081228-07:00,992.7073364257812,10.844251,10844.251 +31622,2025-03-11T00:05:04.925815-07:00,992.7139892578125,10.844587,10844.587 +31623,2025-03-11T00:05:15.765924-07:00,992.6852416992188,10.840109,10840.109 +31624,2025-03-11T00:05:26.600314-07:00,992.7315673828125,10.83439,10834.39 +31625,2025-03-11T00:05:37.455460-07:00,992.7239990234375,10.855146,10855.146 +31626,2025-03-11T00:05:48.248711-07:00,992.72265625,10.793251,10793.251 +31627,2025-03-11T00:05:59.085892-07:00,992.7028198242188,10.837181,10837.181 +31628,2025-03-11T00:06:09.931700-07:00,992.7137451171875,10.845808,10845.808 +31629,2025-03-11T00:06:20.785120-07:00,992.7415771484375,10.85342,10853.42 +31630,2025-03-11T00:06:31.628997-07:00,992.7246704101562,10.843877,10843.877 +31631,2025-03-11T00:06:42.471744-07:00,992.704833984375,10.842747,10842.747 +31632,2025-03-11T00:06:53.311859-07:00,992.7391967773438,10.840115,10840.115 +31633,2025-03-11T00:07:04.158695-07:00,992.750244140625,10.846836,10846.836 +31634,2025-03-11T00:07:15.007706-07:00,992.7237548828125,10.849011,10849.011 +31635,2025-03-11T00:07:25.855093-07:00,992.7700805664062,10.847387,10847.387 +31636,2025-03-11T00:07:36.698082-07:00,992.7545166015625,10.842989,10842.989 +31637,2025-03-11T00:07:47.539708-07:00,992.7201538085938,10.841626,10841.626 +31638,2025-03-11T00:07:58.392705-07:00,992.7598266601562,10.852997,10852.997 +31639,2025-03-11T00:08:09.228320-07:00,992.7390747070312,10.835615,10835.615 +31640,2025-03-11T00:08:20.080871-07:00,992.74560546875,10.852551,10852.551 +31641,2025-03-11T00:08:30.922279-07:00,992.743408203125,10.841408,10841.408 +31642,2025-03-11T00:08:41.758014-07:00,992.73681640625,10.835735,10835.735 +31643,2025-03-11T00:08:52.595711-07:00,992.742431640625,10.837697,10837.697 +31644,2025-03-11T00:09:03.433006-07:00,992.7689208984375,10.837295,10837.295 +31645,2025-03-11T00:09:14.272839-07:00,992.7454833984375,10.839833,10839.833 +31646,2025-03-11T00:09:25.118662-07:00,992.7454833984375,10.845823,10845.823 +31647,2025-03-11T00:09:35.969932-07:00,992.7510986328125,10.85127,10851.27 +31648,2025-03-11T00:09:46.815759-07:00,992.7510986328125,10.845827,10845.827 +31649,2025-03-11T00:09:57.656311-07:00,992.7554931640625,10.840552,10840.552 +31650,2025-03-11T00:10:08.489919-07:00,992.7343139648438,10.833608,10833.608 +31651,2025-03-11T00:10:19.331685-07:00,992.7686767578125,10.841766,10841.766 +31652,2025-03-11T00:10:30.176098-07:00,992.767333984375,10.844413,10844.413 +31653,2025-03-11T00:10:41.013708-07:00,992.7320556640625,10.83761,10837.61 +31654,2025-03-11T00:10:51.857930-07:00,992.7664184570312,10.844222,10844.222 +31655,2025-03-11T00:11:02.706708-07:00,992.7575073242188,10.848778,10848.778 +31656,2025-03-11T00:11:13.544864-07:00,992.7628173828125,10.838156,10838.156 +31657,2025-03-11T00:11:24.388277-07:00,992.7274780273438,10.843413,10843.413 +31658,2025-03-11T00:11:35.228774-07:00,992.741943359375,10.840497,10840.497 +31659,2025-03-11T00:11:46.066840-07:00,992.760498046875,10.838066,10838.066 +31660,2025-03-11T00:11:56.916778-07:00,992.7440795898438,10.849938,10849.938 +31661,2025-03-11T00:12:07.760181-07:00,992.7661743164062,10.843403,10843.403 +31662,2025-03-11T00:12:18.594703-07:00,992.7232055664062,10.834522,10834.522 +31663,2025-03-11T00:12:29.438281-07:00,992.747314453125,10.843578,10843.578 +31664,2025-03-11T00:12:40.284703-07:00,992.7298583984375,10.846422,10846.422 +31665,2025-03-11T00:12:51.128074-07:00,992.7252197265625,10.843371,10843.371 +31666,2025-03-11T00:13:01.979094-07:00,992.6964721679688,10.85102,10851.02 +31667,2025-03-11T00:13:12.816743-07:00,992.6951293945312,10.837649,10837.649 +31668,2025-03-11T00:13:23.655985-07:00,992.71630859375,10.839242,10839.242 +31669,2025-03-11T00:13:34.505810-07:00,992.7193603515625,10.849825,10849.825 +31670,2025-03-11T00:13:45.339066-07:00,992.7260131835938,10.833256,10833.256 +31671,2025-03-11T00:13:56.182692-07:00,992.7008056640625,10.843626,10843.626 +31672,2025-03-11T00:14:07.019708-07:00,992.6642456054688,10.837016,10837.016 +31673,2025-03-11T00:14:17.865850-07:00,992.6906127929688,10.846142,10846.142 +31674,2025-03-11T00:14:28.708652-07:00,992.7081909179688,10.842802,10842.802 +31675,2025-03-11T00:14:39.544704-07:00,992.689697265625,10.836052,10836.052 +31676,2025-03-11T00:14:50.390069-07:00,992.698974609375,10.845365,10845.365 +31677,2025-03-11T00:15:01.237921-07:00,992.698974609375,10.847852,10847.852 +31678,2025-03-11T00:15:12.072620-07:00,992.7245483398438,10.834699,10834.699 +31679,2025-03-11T00:15:22.918932-07:00,992.7100219726562,10.846312,10846.312 +31680,2025-03-11T00:15:33.755709-07:00,992.6815795898438,10.836777,10836.777 +31681,2025-03-11T00:15:44.601936-07:00,992.6947021484375,10.846227,10846.227 +31682,2025-03-11T00:15:55.446995-07:00,992.7132568359375,10.845059,10845.059 +31683,2025-03-11T00:16:06.282702-07:00,992.65283203125,10.835707,10835.707 +31684,2025-03-11T00:16:17.127701-07:00,992.7067260742188,10.844999,10844.999 +31685,2025-03-11T00:16:27.966014-07:00,992.6702880859375,10.838313,10838.313 +31686,2025-03-11T00:16:38.807412-07:00,992.6746826171875,10.841398,10841.398 +31687,2025-03-11T00:16:49.648681-07:00,992.6931762695312,10.841269,10841.269 +31688,2025-03-11T00:17:00.488962-07:00,992.6988525390625,10.840281,10840.281 +31689,2025-03-11T00:17:11.325016-07:00,992.6766967773438,10.836054,10836.054 +31690,2025-03-11T00:17:22.155707-07:00,992.696533203125,10.830691,10830.691 +31691,2025-03-11T00:17:33.001995-07:00,992.7084350585938,10.846288,10846.288 +31692,2025-03-11T00:17:43.845037-07:00,992.6929931640625,10.843042,10843.042 +31693,2025-03-11T00:17:54.682708-07:00,992.6973266601562,10.837671,10837.671 +31694,2025-03-11T00:18:05.528704-07:00,992.6950073242188,10.845996,10845.996 +31695,2025-03-11T00:18:16.367767-07:00,992.6807861328125,10.839063,10839.063 +31696,2025-03-11T00:18:27.213858-07:00,992.6709594726562,10.846091,10846.091 +31697,2025-03-11T00:18:38.045698-07:00,992.695068359375,10.83184,10831.84 +31698,2025-03-11T00:18:48.877879-07:00,992.684814453125,10.832181,10832.181 +31699,2025-03-11T00:18:59.723267-07:00,992.6928100585938,10.845388,10845.388 +31700,2025-03-11T00:19:10.560728-07:00,992.6693725585938,10.837461,10837.461 +31701,2025-03-11T00:19:21.393707-07:00,992.6339721679688,10.832979,10832.979 +31702,2025-03-11T00:19:32.235697-07:00,992.640625,10.84199,10841.99 +31703,2025-03-11T00:19:43.079497-07:00,992.6426391601562,10.8438,10843.8 +31704,2025-03-11T00:19:53.927059-07:00,992.6571655273438,10.847562,10847.562 +31705,2025-03-11T00:20:04.763943-07:00,992.6207885742188,10.836884,10836.884 +31706,2025-03-11T00:20:15.608758-07:00,992.6383666992188,10.844815,10844.815 +31707,2025-03-11T00:20:26.455111-07:00,992.6436767578125,10.846353,10846.353 +31708,2025-03-11T00:20:37.286708-07:00,992.62158203125,10.831597,10831.597 +31709,2025-03-11T00:20:48.131068-07:00,992.6205444335938,10.84436,10844.36 +31710,2025-03-11T00:20:58.974706-07:00,992.6447143554688,10.843638,10843.638 +31711,2025-03-11T00:21:09.818037-07:00,992.6314697265625,10.843331,10843.331 +31712,2025-03-11T00:21:20.661049-07:00,992.615966796875,10.843012,10843.012 +31713,2025-03-11T00:21:31.502837-07:00,992.6146850585938,10.841788,10841.788 +31714,2025-03-11T00:21:42.340098-07:00,992.6136474609375,10.837261,10837.261 +31715,2025-03-11T00:21:53.189711-07:00,992.5968627929688,10.849613,10849.613 +31716,2025-03-11T00:22:04.027144-07:00,992.595947265625,10.837433,10837.433 +31717,2025-03-11T00:22:14.871732-07:00,992.6024780273438,10.844588,10844.588 +31718,2025-03-11T00:22:25.704850-07:00,992.578125,10.833118,10833.118 +31719,2025-03-11T00:22:36.537984-07:00,992.5890502929688,10.833134,10833.134 +31720,2025-03-11T00:22:47.383436-07:00,992.568115234375,10.845452,10845.452 +31721,2025-03-11T00:22:58.228043-07:00,992.5867309570312,10.844607,10844.607 +31722,2025-03-11T00:23:09.069272-07:00,992.5790405273438,10.841229,10841.229 +31723,2025-03-11T00:23:19.906995-07:00,992.5900268554688,10.837723,10837.723 +31724,2025-03-11T00:23:30.748707-07:00,992.6019287109375,10.841712,10841.712 +31725,2025-03-11T00:23:41.586103-07:00,992.5943603515625,10.837396,10837.396 +31726,2025-03-11T00:23:52.430043-07:00,992.6052856445312,10.84394,10843.94 +31727,2025-03-11T00:24:03.267701-07:00,992.609619140625,10.837658,10837.658 +31728,2025-03-11T00:24:14.115988-07:00,992.56201171875,10.848287,10848.287 +31729,2025-03-11T00:24:24.960078-07:00,992.57421875,10.84409,10844.09 +31730,2025-03-11T00:24:25.280853-07:00,992.5808715820312,0.320775,320.775 +31731,2025-03-11T00:24:35.805827-07:00,992.5984497070312,10.524974,10524.974 +31732,2025-03-11T00:24:46.644484-07:00,992.5577392578125,10.838657,10838.657 +31733,2025-03-11T00:24:57.482702-07:00,992.5885009765625,10.838218,10838.218 +31734,2025-03-11T00:25:08.317754-07:00,992.6017456054688,10.835052,10835.052 +31735,2025-03-11T00:25:19.153785-07:00,992.6060180664062,10.836031,10836.031 +31736,2025-03-11T00:25:29.994702-07:00,992.5783081054688,10.840917,10840.917 +31737,2025-03-11T00:25:40.832993-07:00,992.611328125,10.838291,10838.291 +31738,2025-03-11T00:25:51.670993-07:00,992.5881958007812,10.838,10838.0 +31739,2025-03-11T00:26:02.523323-07:00,992.5750122070312,10.85233,10852.33 +31740,2025-03-11T00:26:13.365705-07:00,992.606689453125,10.842382,10842.382 +31741,2025-03-11T00:26:24.199707-07:00,992.5948486328125,10.834002,10834.002 +31742,2025-03-11T00:26:35.045865-07:00,992.592529296875,10.846158,10846.158 +31743,2025-03-11T00:26:45.885168-07:00,992.5912475585938,10.839303,10839.303 +31744,2025-03-11T00:26:56.721962-07:00,992.5505981445312,10.836794,10836.794 +31745,2025-03-11T00:27:07.571782-07:00,992.57470703125,10.84982,10849.82 +31746,2025-03-11T00:27:18.415068-07:00,992.5667724609375,10.843286,10843.286 +31747,2025-03-11T00:27:29.253881-07:00,992.568115234375,10.838813,10838.813 +31748,2025-03-11T00:27:40.099707-07:00,992.5790405273438,10.845826,10845.826 +31749,2025-03-11T00:27:50.938971-07:00,992.5635375976562,10.839264,10839.264 +31750,2025-03-11T00:28:01.781836-07:00,992.5758056640625,10.842865,10842.865 +31751,2025-03-11T00:28:12.627051-07:00,992.59423828125,10.845215,10845.215 +31752,2025-03-11T00:28:23.461431-07:00,992.5734252929688,10.83438,10834.38 +31753,2025-03-11T00:28:34.304733-07:00,992.5720825195312,10.843302,10843.302 +31754,2025-03-11T00:28:45.140969-07:00,992.54345703125,10.836236,10836.236 +31755,2025-03-11T00:28:55.979705-07:00,992.5499877929688,10.838736,10838.736 +31756,2025-03-11T00:29:06.817847-07:00,992.5830688476562,10.838142,10838.142 +31757,2025-03-11T00:29:17.657043-07:00,992.5675048828125,10.839196,10839.196 +31758,2025-03-11T00:29:28.500751-07:00,992.552001953125,10.843708,10843.708 +31759,2025-03-11T00:29:39.341053-07:00,992.5311889648438,10.840302,10840.302 +31760,2025-03-11T00:29:50.180920-07:00,992.5576782226562,10.839867,10839.867 +31761,2025-03-11T00:30:01.016895-07:00,992.57080078125,10.835975,10835.975 +31762,2025-03-11T00:30:11.852753-07:00,992.5496826171875,10.835858,10835.858 +31763,2025-03-11T00:30:22.696851-07:00,992.5814208984375,10.844098,10844.098 +31764,2025-03-11T00:30:33.544068-07:00,992.560302734375,10.847217,10847.217 +31765,2025-03-11T00:30:44.377906-07:00,992.53955078125,10.833838,10833.838 +31766,2025-03-11T00:30:55.218820-07:00,992.5437622070312,10.840914,10840.914 +31767,2025-03-11T00:31:06.057045-07:00,992.5504760742188,10.838225,10838.225 +31768,2025-03-11T00:31:16.907039-07:00,992.54150390625,10.849994,10849.994 +31769,2025-03-11T00:31:27.742716-07:00,992.4942016601562,10.835677,10835.677 +31770,2025-03-11T00:31:38.589707-07:00,992.5448608398438,10.846991,10846.991 +31771,2025-03-11T00:31:49.433682-07:00,992.5448608398438,10.843975,10843.975 +31772,2025-03-11T00:32:00.277962-07:00,992.5226440429688,10.84428,10844.28 +31773,2025-03-11T00:32:11.116507-07:00,992.4740600585938,10.838545,10838.545 +31774,2025-03-11T00:32:21.959697-07:00,992.5147705078125,10.84319,10843.19 +31775,2025-03-11T00:32:32.805708-07:00,992.4784545898438,10.846011,10846.011 +31776,2025-03-11T00:32:43.651731-07:00,992.5181274414062,10.846023,10846.023 +31777,2025-03-11T00:32:54.495035-07:00,992.5276489257812,10.843304,10843.304 +31778,2025-03-11T00:33:05.337241-07:00,992.530029296875,10.842206,10842.206 +31779,2025-03-11T00:33:16.180699-07:00,992.5365600585938,10.843458,10843.458 +31780,2025-03-11T00:33:27.028708-07:00,992.5055541992188,10.848009,10848.009 +31781,2025-03-11T00:33:37.876697-07:00,992.4923706054688,10.847989,10847.989 +31782,2025-03-11T00:33:48.719261-07:00,992.51220703125,10.842564,10842.564 +31783,2025-03-11T00:33:59.564043-07:00,992.5144653320312,10.844782,10844.782 +31784,2025-03-11T00:34:10.416049-07:00,992.5144653320312,10.852006,10852.006 +31785,2025-03-11T00:34:21.250105-07:00,992.5286865234375,10.834056,10834.056 +31786,2025-03-11T00:34:32.093737-07:00,992.5418701171875,10.843632,10843.632 +31787,2025-03-11T00:34:42.937142-07:00,992.519775390625,10.843405,10843.405 +31788,2025-03-11T00:34:53.791090-07:00,992.5264282226562,10.853948,10853.948 +31789,2025-03-11T00:35:04.633196-07:00,992.51220703125,10.842106,10842.106 +31790,2025-03-11T00:35:15.476700-07:00,992.5296630859375,10.843504,10843.504 +31791,2025-03-11T00:35:26.319701-07:00,992.5164794921875,10.843001,10843.001 +31792,2025-03-11T00:35:37.168650-07:00,992.5362548828125,10.848949,10848.949 +31793,2025-03-11T00:35:48.017715-07:00,992.5406494140625,10.849065,10849.065 +31794,2025-03-11T00:35:58.859315-07:00,992.5250854492188,10.8416,10841.6 +31795,2025-03-11T00:36:09.702828-07:00,992.5105590820312,10.843513,10843.513 +31796,2025-03-11T00:36:20.548857-07:00,992.5435791015625,10.846029,10846.029 +31797,2025-03-11T00:36:31.396008-07:00,992.5515747070312,10.847151,10847.151 +31798,2025-03-11T00:36:42.244763-07:00,992.5491943359375,10.848755,10848.755 +31799,2025-03-11T00:36:53.088292-07:00,992.5281372070312,10.843529,10843.529 +31800,2025-03-11T00:37:03.930034-07:00,992.5545043945312,10.841742,10841.742 +31801,2025-03-11T00:37:14.779878-07:00,992.5300903320312,10.849844,10849.844 +31802,2025-03-11T00:37:25.623699-07:00,992.5390014648438,10.843821,10843.821 +31803,2025-03-11T00:37:36.469706-07:00,992.5379638671875,10.846007,10846.007 +31804,2025-03-11T00:37:47.313971-07:00,992.5432739257812,10.844265,10844.265 +31805,2025-03-11T00:37:58.153718-07:00,992.5554809570312,10.839747,10839.747 +31806,2025-03-11T00:38:09.001261-07:00,992.528076171875,10.847543,10847.543 +31807,2025-03-11T00:38:19.842818-07:00,992.5201416015625,10.841557,10841.557 +31808,2025-03-11T00:38:30.686703-07:00,992.5399780273438,10.843885,10843.885 +31809,2025-03-11T00:38:41.531222-07:00,992.559814453125,10.844519,10844.519 +31810,2025-03-11T00:38:52.373976-07:00,992.5587768554688,10.842754,10842.754 +31811,2025-03-11T00:39:03.226775-07:00,992.5706787109375,10.852799,10852.799 +31812,2025-03-11T00:39:14.070707-07:00,992.5960693359375,10.843932,10843.932 +31813,2025-03-11T00:39:24.914897-07:00,992.6013793945312,10.84419,10844.19 +31814,2025-03-11T00:39:35.754702-07:00,992.58154296875,10.839805,10839.805 +31815,2025-03-11T00:39:46.601027-07:00,992.5806274414062,10.846325,10846.325 +31816,2025-03-11T00:39:57.452072-07:00,992.5673217773438,10.851045,10851.045 +31817,2025-03-11T00:40:08.297732-07:00,992.53857421875,10.84566,10845.66 +31818,2025-03-11T00:40:19.145943-07:00,992.59814453125,10.848211,10848.211 +31819,2025-03-11T00:40:29.981762-07:00,992.59814453125,10.835819,10835.819 +31820,2025-03-11T00:40:40.826114-07:00,992.5914916992188,10.844352,10844.352 +31821,2025-03-11T00:40:51.662944-07:00,992.5957641601562,10.83683,10836.83 +31822,2025-03-11T00:41:02.500704-07:00,992.580322265625,10.83776,10837.76 +31823,2025-03-11T00:41:13.343695-07:00,992.60107421875,10.842991,10842.991 +31824,2025-03-11T00:41:24.188108-07:00,992.580322265625,10.844413,10844.413 +31825,2025-03-11T00:41:35.027226-07:00,992.5789794921875,10.839118,10839.118 +31826,2025-03-11T00:41:45.862779-07:00,992.5779418945312,10.835553,10835.553 +31827,2025-03-11T00:41:56.706667-07:00,992.5964965820312,10.843888,10843.888 +31828,2025-03-11T00:42:07.538692-07:00,992.6031494140625,10.832025,10832.025 +31829,2025-03-11T00:42:18.382708-07:00,992.5800170898438,10.844016,10844.016 +31830,2025-03-11T00:42:29.223676-07:00,992.614013671875,10.840968,10840.968 +31831,2025-03-11T00:42:40.055186-07:00,992.614013671875,10.83151,10831.51 +31832,2025-03-11T00:42:50.893948-07:00,992.6317749023438,10.838762,10838.762 +31833,2025-03-11T00:43:01.730223-07:00,992.5974731445312,10.836275,10836.275 +31834,2025-03-11T00:43:12.573284-07:00,992.6304931640625,10.843061,10843.061 +31835,2025-03-11T00:43:23.399698-07:00,992.6361083984375,10.826414,10826.414 +31836,2025-03-11T00:43:34.236051-07:00,992.634765625,10.836353,10836.353 +31837,2025-03-11T00:43:45.076683-07:00,992.6138916015625,10.840632,10840.632 +31838,2025-03-11T00:43:55.911849-07:00,992.6192016601562,10.835166,10835.166 +31839,2025-03-11T00:44:06.754736-07:00,992.616943359375,10.842887,10842.887 +31840,2025-03-11T00:44:17.588805-07:00,992.6512451171875,10.834069,10834.069 +31841,2025-03-11T00:44:28.430905-07:00,992.655517578125,10.8421,10842.1 +31842,2025-03-11T00:44:39.272710-07:00,992.6820068359375,10.841805,10841.805 +31843,2025-03-11T00:44:50.103729-07:00,992.6873168945312,10.831019,10831.019 +31844,2025-03-11T00:45:00.943706-07:00,992.6651611328125,10.839977,10839.977 +31845,2025-03-11T00:45:11.780041-07:00,992.66650390625,10.836335,10836.335 +31846,2025-03-11T00:45:22.618914-07:00,992.657470703125,10.838873,10838.873 +31847,2025-03-11T00:45:33.464704-07:00,992.6838989257812,10.84579,10845.79 +31848,2025-03-11T00:45:44.296685-07:00,992.6420288085938,10.831981,10831.981 +31849,2025-03-11T00:45:55.129789-07:00,992.66943359375,10.833104,10833.104 +31850,2025-03-11T00:46:05.971844-07:00,992.6859130859375,10.842055,10842.055 +31851,2025-03-11T00:46:16.811110-07:00,992.6793823242188,10.839266,10839.266 +31852,2025-03-11T00:46:27.646697-07:00,992.7067260742188,10.835587,10835.587 +31853,2025-03-11T00:46:38.487931-07:00,992.6859130859375,10.841234,10841.234 +31854,2025-03-11T00:46:49.321749-07:00,992.6902465820312,10.833818,10833.818 +31855,2025-03-11T00:47:00.159671-07:00,992.7232666015625,10.837922,10837.922 +31856,2025-03-11T00:47:11.000777-07:00,992.6802978515625,10.841106,10841.106 +31857,2025-03-11T00:47:21.839352-07:00,992.6681518554688,10.838575,10838.575 +31858,2025-03-11T00:47:32.671261-07:00,992.6935424804688,10.831909,10831.909 +31859,2025-03-11T00:47:43.513694-07:00,992.678955078125,10.842433,10842.433 +31860,2025-03-11T00:47:54.345961-07:00,992.6912231445312,10.832267,10832.267 +31861,2025-03-11T00:48:05.183427-07:00,992.6978149414062,10.837466,10837.466 +31862,2025-03-11T00:48:16.020800-07:00,992.7162475585938,10.837373,10837.373 +31863,2025-03-11T00:48:26.863768-07:00,992.7242431640625,10.842968,10842.968 +31864,2025-03-11T00:48:37.707815-07:00,992.6822509765625,10.844047,10844.047 +31865,2025-03-11T00:48:48.543703-07:00,992.6822509765625,10.835888,10835.888 +31866,2025-03-11T00:48:59.392702-07:00,992.6755981445312,10.848999,10848.999 +31867,2025-03-11T00:49:10.226232-07:00,992.7206420898438,10.83353,10833.53 +31868,2025-03-11T00:49:21.073748-07:00,992.6799926757812,10.847516,10847.516 +31869,2025-03-11T00:49:31.923025-07:00,992.6852416992188,10.849277,10849.277 +31870,2025-03-11T00:49:42.765993-07:00,992.6720581054688,10.842968,10842.968 +31871,2025-03-11T00:49:53.598779-07:00,992.69189453125,10.832786,10832.786 +31872,2025-03-11T00:50:04.436971-07:00,992.7064208984375,10.838192,10838.192 +31873,2025-03-11T00:50:15.284814-07:00,992.6643676757812,10.847843,10847.843 +31874,2025-03-11T00:50:26.116231-07:00,992.669677734375,10.831417,10831.417 +31875,2025-03-11T00:50:36.958120-07:00,992.64892578125,10.841889,10841.889 +31876,2025-03-11T00:50:47.791748-07:00,992.64892578125,10.833628,10833.628 +31877,2025-03-11T00:50:58.632708-07:00,992.6343994140625,10.84096,10840.96 +31878,2025-03-11T00:51:09.471926-07:00,992.662109375,10.839218,10839.218 +31879,2025-03-11T00:51:20.315051-07:00,992.6343994140625,10.843125,10843.125 +31880,2025-03-11T00:51:31.169140-07:00,992.6201782226562,10.854089,10854.089 +31881,2025-03-11T00:51:42.002928-07:00,992.626708984375,10.833788,10833.788 +31882,2025-03-11T00:51:52.846706-07:00,992.6400146484375,10.843778,10843.778 +31883,2025-03-11T00:52:03.680006-07:00,992.626708984375,10.8333,10833.3 +31884,2025-03-11T00:52:14.522849-07:00,992.6333618164062,10.842843,10842.843 +31885,2025-03-11T00:52:25.355958-07:00,992.6121826171875,10.833109,10833.109 +31886,2025-03-11T00:52:36.196738-07:00,992.6320190429688,10.84078,10840.78 +31887,2025-03-11T00:52:47.042464-07:00,992.614501953125,10.845726,10845.726 +31888,2025-03-11T00:52:57.872767-07:00,992.6333618164062,10.830303,10830.303 +31889,2025-03-11T00:53:08.718757-07:00,992.62548828125,10.84599,10845.99 +31890,2025-03-11T00:53:19.559921-07:00,992.6056518554688,10.841164,10841.164 +31891,2025-03-11T00:53:30.410241-07:00,992.6135864257812,10.85032,10850.32 +31892,2025-03-11T00:53:41.245283-07:00,992.6168823242188,10.835042,10835.042 +31893,2025-03-11T00:53:52.088771-07:00,992.600341796875,10.843488,10843.488 +31894,2025-03-11T00:54:02.920664-07:00,992.60693359375,10.831893,10831.893 +31895,2025-03-11T00:54:13.772800-07:00,992.6177978515625,10.852136,10852.136 +31896,2025-03-11T00:54:24.616429-07:00,992.6320190429688,10.843629,10843.629 +31897,2025-03-11T00:54:35.459702-07:00,992.62548828125,10.843273,10843.273 +31898,2025-03-11T00:54:46.303298-07:00,992.6056518554688,10.843596,10843.596 +31899,2025-03-11T00:54:57.146095-07:00,992.6112670898438,10.842797,10842.797 +31900,2025-03-11T00:55:07.988935-07:00,992.6056518554688,10.84284,10842.84 +31901,2025-03-11T00:55:18.822856-07:00,992.5781860351562,10.833921,10833.921 +31902,2025-03-11T00:55:29.665165-07:00,992.5970458984375,10.842309,10842.309 +31903,2025-03-11T00:55:40.514045-07:00,992.5914306640625,10.84888,10848.88 +31904,2025-03-11T00:55:51.351837-07:00,992.5772094726562,10.837792,10837.792 +31905,2025-03-11T00:56:02.193707-07:00,992.5979614257812,10.84187,10841.87 +31906,2025-03-11T00:56:13.036708-07:00,992.6168823242188,10.843001,10843.001 +31907,2025-03-11T00:56:23.884278-07:00,992.5970458984375,10.84757,10847.57 +31908,2025-03-11T00:56:34.729259-07:00,992.583740234375,10.844981,10844.981 +31909,2025-03-11T00:56:45.572708-07:00,992.5772094726562,10.843449,10843.449 +31910,2025-03-11T00:56:46.351830-07:00,992.5848388671875,0.779122,779.122 +31911,2025-03-11T00:56:56.409763-07:00,992.5518188476562,10.057933,10057.933 +31912,2025-03-11T00:57:07.240071-07:00,992.571533203125,10.830308,10830.308 +31913,2025-03-11T00:57:18.090775-07:00,992.5494384765625,10.850704,10850.704 +31914,2025-03-11T00:57:28.927950-07:00,992.5706176757812,10.837175,10837.175 +31915,2025-03-11T00:57:39.769742-07:00,992.5772094726562,10.841792,10841.792 +31916,2025-03-11T00:57:50.614055-07:00,992.5494384765625,10.844313,10844.313 +31917,2025-03-11T00:58:01.451939-07:00,992.544189453125,10.837884,10837.884 +31918,2025-03-11T00:58:12.290133-07:00,992.5309448242188,10.838194,10838.194 +31919,2025-03-11T00:58:23.132142-07:00,992.545166015625,10.842009,10842.009 +31920,2025-03-11T00:58:33.975105-07:00,992.5660400390625,10.842963,10842.963 +31921,2025-03-11T00:58:44.818053-07:00,992.5164184570312,10.842948,10842.948 +31922,2025-03-11T00:58:55.661702-07:00,992.571533203125,10.843649,10843.649 +31923,2025-03-11T00:59:06.492039-07:00,992.544189453125,10.830337,10830.337 +31924,2025-03-11T00:59:17.331708-07:00,992.545166015625,10.839669,10839.669 +31925,2025-03-11T00:59:28.178704-07:00,992.571533203125,10.846996,10846.996 +31926,2025-03-11T00:59:39.022704-07:00,992.5518188476562,10.844,10844.0 +31927,2025-03-11T00:59:49.870231-07:00,992.53955078125,10.847527,10847.527 +31928,2025-03-11T01:00:00.708039-07:00,992.5187377929688,10.837808,10837.808 +31929,2025-03-11T01:00:11.545707-07:00,992.5474853515625,10.837668,10837.668 +31930,2025-03-11T01:00:22.391951-07:00,992.532958984375,10.846244,10846.244 +31931,2025-03-11T01:00:33.233849-07:00,992.5187377929688,10.841898,10841.898 +31932,2025-03-11T01:00:44.070745-07:00,992.519775390625,10.836896,10836.896 +31933,2025-03-11T01:00:54.912707-07:00,992.53955078125,10.841962,10841.962 +31934,2025-03-11T01:01:05.761074-07:00,992.532958984375,10.848367,10848.367 +31935,2025-03-11T01:01:16.599101-07:00,992.5276489257812,10.838027,10838.027 +31936,2025-03-11T01:01:27.441672-07:00,992.5353393554688,10.842571,10842.571 +31937,2025-03-11T01:01:38.283700-07:00,992.5276489257812,10.842028,10842.028 +31938,2025-03-11T01:01:49.129254-07:00,992.5264282226562,10.845554,10845.554 +31939,2025-03-11T01:01:59.969851-07:00,992.531982421875,10.840597,10840.597 +31940,2025-03-11T01:02:10.814100-07:00,992.532958984375,10.844249,10844.249 +31941,2025-03-11T01:02:21.645833-07:00,992.5474853515625,10.831733,10831.733 +31942,2025-03-11T01:02:32.493811-07:00,992.519775390625,10.847978,10847.978 +31943,2025-03-11T01:02:43.327220-07:00,992.5474853515625,10.833409,10833.409 +31944,2025-03-11T01:02:54.170692-07:00,992.5264282226562,10.843472,10843.472 +31945,2025-03-11T01:03:05.013188-07:00,992.5343017578125,10.842496,10842.496 +31946,2025-03-11T01:03:15.851963-07:00,992.5264282226562,10.838775,10838.775 +31947,2025-03-11T01:03:26.692199-07:00,992.5343017578125,10.840236,10840.236 +31948,2025-03-11T01:03:37.529929-07:00,992.5682983398438,10.83773,10837.73 +31949,2025-03-11T01:03:48.367712-07:00,992.55517578125,10.837783,10837.783 +31950,2025-03-11T01:03:59.206222-07:00,992.5485229492188,10.83851,10838.51 +31951,2025-03-11T01:04:10.048692-07:00,992.5682983398438,10.84247,10842.47 +31952,2025-03-11T01:04:20.887690-07:00,992.5485229492188,10.838998,10838.998 +31953,2025-03-11T01:04:31.729960-07:00,992.5894775390625,10.84227,10842.27 +31954,2025-03-11T01:04:42.576790-07:00,992.5697021484375,10.84683,10846.83 +31955,2025-03-11T01:04:53.410698-07:00,992.5706176757812,10.833908,10833.908 +31956,2025-03-11T01:05:04.258929-07:00,992.5904541015625,10.848231,10848.231 +31957,2025-03-11T01:05:15.095118-07:00,992.598388671875,10.836189,10836.189 +31958,2025-03-11T01:05:25.927830-07:00,992.598388671875,10.832712,10832.712 +31959,2025-03-11T01:05:36.763707-07:00,992.6138916015625,10.835877,10835.877 +31960,2025-03-11T01:05:47.653703-07:00,992.5950927734375,10.889996,10889.996 +31961,2025-03-11T01:05:58.502988-07:00,992.5818481445312,10.849285,10849.285 +31962,2025-03-11T01:06:09.339722-07:00,992.6017456054688,10.836734,10836.734 +31963,2025-03-11T01:06:20.184061-07:00,992.58984375,10.844339,10844.339 +31964,2025-03-11T01:06:31.026974-07:00,992.6238403320312,10.842913,10842.913 +31965,2025-03-11T01:06:41.873021-07:00,992.597412109375,10.846047,10846.047 +31966,2025-03-11T01:06:52.716593-07:00,992.610595703125,10.843572,10843.572 +31967,2025-03-11T01:07:03.550692-07:00,992.6185302734375,10.834099,10834.099 +31968,2025-03-11T01:07:14.385945-07:00,992.597412109375,10.835253,10835.253 +31969,2025-03-11T01:07:25.222794-07:00,992.610595703125,10.836849,10836.849 +31970,2025-03-11T01:07:36.054956-07:00,992.640625,10.832162,10832.162 +31971,2025-03-11T01:07:46.898041-07:00,992.6141967773438,10.843085,10843.085 +31972,2025-03-11T01:07:57.740270-07:00,992.6539306640625,10.842229,10842.229 +31973,2025-03-11T01:08:08.572700-07:00,992.6275024414062,10.83243,10832.43 +31974,2025-03-11T01:08:19.415481-07:00,992.6218872070312,10.842781,10842.781 +31975,2025-03-11T01:08:30.246916-07:00,992.6033325195312,10.831435,10831.435 +31976,2025-03-11T01:08:41.084987-07:00,992.6099853515625,10.838071,10838.071 +31977,2025-03-11T01:08:51.927791-07:00,992.6218872070312,10.842804,10842.804 +31978,2025-03-11T01:09:02.764785-07:00,992.6010131835938,10.836994,10836.994 +31979,2025-03-11T01:09:13.597695-07:00,992.5996704101562,10.83291,10832.91 +31980,2025-03-11T01:09:24.439761-07:00,992.6459350585938,10.842066,10842.066 +31981,2025-03-11T01:09:35.280043-07:00,992.622802734375,10.840282,10840.282 +31982,2025-03-11T01:09:46.126878-07:00,992.6257934570312,10.846835,10846.835 +31983,2025-03-11T01:09:56.957700-07:00,992.63671875,10.830822,10830.822 +31984,2025-03-11T01:10:07.803074-07:00,992.6422729492188,10.845374,10845.374 +31985,2025-03-11T01:10:18.644218-07:00,992.638671875,10.841144,10841.144 +31986,2025-03-11T01:10:29.487696-07:00,992.6102294921875,10.843478,10843.478 +31987,2025-03-11T01:10:40.319827-07:00,992.6366577148438,10.832131,10832.131 +31988,2025-03-11T01:10:51.162269-07:00,992.6815795898438,10.842442,10842.442 +31989,2025-03-11T01:11:02.005722-07:00,992.6607666015625,10.843453,10843.453 +31990,2025-03-11T01:11:12.846833-07:00,992.6560668945312,10.841111,10841.111 +31991,2025-03-11T01:11:23.685237-07:00,992.6537475585938,10.838404,10838.404 +31992,2025-03-11T01:11:34.523309-07:00,992.6537475585938,10.838072,10838.072 +31993,2025-03-11T01:11:45.364696-07:00,992.6095581054688,10.841387,10841.387 +31994,2025-03-11T01:11:56.197691-07:00,992.6148681640625,10.832995,10832.995 +31995,2025-03-11T01:12:07.041017-07:00,992.6190795898438,10.843326,10843.326 +31996,2025-03-11T01:12:17.873700-07:00,992.6048583984375,10.832683,10832.683 +31997,2025-03-11T01:12:28.714696-07:00,992.6286010742188,10.840996,10840.996 +31998,2025-03-11T01:12:39.549987-07:00,992.6196899414062,10.835291,10835.291 +31999,2025-03-11T01:12:50.390720-07:00,992.62109375,10.840733,10840.733 +32000,2025-03-11T01:13:01.222691-07:00,992.604248046875,10.831971,10831.971 +32001,2025-03-11T01:13:12.065986-07:00,992.59423828125,10.843295,10843.295 +32002,2025-03-11T01:13:22.896731-07:00,992.6140747070312,10.830745,10830.745 +32003,2025-03-11T01:13:33.738690-07:00,992.5840454101562,10.841959,10841.959 +32004,2025-03-11T01:13:44.579718-07:00,992.5962524414062,10.841028,10841.028 +32005,2025-03-11T01:13:55.412700-07:00,992.5948486328125,10.832982,10832.982 +32006,2025-03-11T01:14:06.246823-07:00,992.579345703125,10.834123,10834.123 +32007,2025-03-11T01:14:17.095749-07:00,992.5505981445312,10.848926,10848.926 +32008,2025-03-11T01:14:27.932777-07:00,992.561767578125,10.837028,10837.028 +32009,2025-03-11T01:14:38.768702-07:00,992.5449829101562,10.835925,10835.925 +32010,2025-03-11T01:14:49.608273-07:00,992.537353515625,10.839571,10839.571 +32011,2025-03-11T01:15:00.436690-07:00,992.513916015625,10.828417,10828.417 +32012,2025-03-11T01:15:11.279327-07:00,992.5172119140625,10.842637,10842.637 +32013,2025-03-11T01:15:22.112096-07:00,992.53564453125,10.832769,10832.769 +32014,2025-03-11T01:15:32.953957-07:00,992.5059204101562,10.841861,10841.861 +32015,2025-03-11T01:15:43.798736-07:00,992.4979858398438,10.844779,10844.779 +32016,2025-03-11T01:15:54.638855-07:00,992.5022583007812,10.840119,10840.119 +32017,2025-03-11T01:16:05.475000-07:00,992.5068969726562,10.836145,10836.145 +32018,2025-03-11T01:16:16.312686-07:00,992.489990234375,10.837686,10837.686 +32019,2025-03-11T01:16:27.150762-07:00,992.4942016601562,10.838076,10838.076 +32020,2025-03-11T01:16:37.990232-07:00,992.47216796875,10.83947,10839.47 +32021,2025-03-11T01:16:48.842945-07:00,992.4447021484375,10.852713,10852.713 +32022,2025-03-11T01:16:59.668694-07:00,992.4754028320312,10.825749,10825.749 +32023,2025-03-11T01:17:10.511496-07:00,992.4717407226562,10.842802,10842.802 +32024,2025-03-11T01:17:21.354572-07:00,992.4707641601562,10.843076,10843.076 +32025,2025-03-11T01:17:32.184943-07:00,992.4539184570312,10.830371,10830.371 +32026,2025-03-11T01:17:43.013451-07:00,992.4198608398438,10.828508,10828.508 +32027,2025-03-11T01:17:53.849754-07:00,992.4505615234375,10.836303,10836.303 +32028,2025-03-11T01:18:04.693792-07:00,992.4627075195312,10.844038,10844.038 +32029,2025-03-11T01:18:15.534031-07:00,992.4603881835938,10.840239,10840.239 +32030,2025-03-11T01:18:26.370818-07:00,992.4656982421875,10.836787,10836.787 +32031,2025-03-11T01:18:37.209697-07:00,992.4425048828125,10.838879,10838.879 +32032,2025-03-11T01:18:48.053692-07:00,992.4689331054688,10.843995,10843.995 +32033,2025-03-11T01:18:58.898592-07:00,992.4600219726562,10.8449,10844.9 +32034,2025-03-11T01:19:09.731690-07:00,992.4511108398438,10.833098,10833.098 +32035,2025-03-11T01:19:20.566865-07:00,992.4564208984375,10.835175,10835.175 +32036,2025-03-11T01:19:31.404556-07:00,992.487060546875,10.837691,10837.691 +32037,2025-03-11T01:19:42.239834-07:00,992.4464111328125,10.835278,10835.278 +32038,2025-03-11T01:19:53.077209-07:00,992.44970703125,10.837375,10837.375 +32039,2025-03-11T01:20:03.920012-07:00,992.469482421875,10.842803,10842.803 +32040,2025-03-11T01:20:14.753008-07:00,992.4802856445312,10.832996,10832.996 +32041,2025-03-11T01:20:25.589014-07:00,992.4746704101562,10.836006,10836.006 +32042,2025-03-11T01:20:36.428826-07:00,992.4568481445312,10.839812,10839.812 +32043,2025-03-11T01:20:47.262690-07:00,992.4756469726562,10.833864,10833.864 +32044,2025-03-11T01:20:58.100682-07:00,992.4601440429688,10.837992,10837.992 +32045,2025-03-11T01:21:08.931693-07:00,992.5007934570312,10.831011,10831.011 +32046,2025-03-11T01:21:19.765903-07:00,992.4907836914062,10.83421,10834.21 +32047,2025-03-11T01:21:30.605504-07:00,992.4894409179688,10.839601,10839.601 +32048,2025-03-11T01:21:41.439679-07:00,992.4696655273438,10.834175,10834.175 +32049,2025-03-11T01:21:52.283560-07:00,992.486083984375,10.843881,10843.881 +32050,2025-03-11T01:22:03.122239-07:00,992.4564208984375,10.838679,10838.679 +32051,2025-03-11T01:22:13.946693-07:00,992.4564208984375,10.824454,10824.454 +32052,2025-03-11T01:22:24.791699-07:00,992.5067749023438,10.845006,10845.006 +32053,2025-03-11T01:22:35.633064-07:00,992.5067749023438,10.841365,10841.365 +32054,2025-03-11T01:22:46.467701-07:00,992.5242309570312,10.834637,10834.637 +32055,2025-03-11T01:22:57.301701-07:00,992.4625244140625,10.834,10834.0 +32056,2025-03-11T01:23:08.134747-07:00,992.512939453125,10.833046,10833.046 +32057,2025-03-11T01:23:18.959967-07:00,992.5261840820312,10.82522,10825.22 +32058,2025-03-11T01:23:29.794299-07:00,992.4974975585938,10.834332,10834.332 +32059,2025-03-11T01:23:40.632696-07:00,992.4974975585938,10.838397,10838.397 +32060,2025-03-11T01:23:51.464911-07:00,992.5281372070312,10.832215,10832.215 +32061,2025-03-11T01:24:02.296848-07:00,992.5070190429688,10.831937,10831.937 +32062,2025-03-11T01:24:13.140989-07:00,992.5257568359375,10.844141,10844.141 +32063,2025-03-11T01:24:23.972995-07:00,992.5521850585938,10.832006,10832.006 +32064,2025-03-11T01:24:34.815164-07:00,992.5046997070312,10.842169,10842.169 +32065,2025-03-11T01:24:45.641677-07:00,992.5036010742188,10.826513,10826.513 +32066,2025-03-11T01:24:56.478002-07:00,992.4957275390625,10.836325,10836.325 +32067,2025-03-11T01:25:07.310965-07:00,992.5220947265625,10.832963,10832.963 +32068,2025-03-11T01:25:18.153760-07:00,992.5078735351562,10.842795,10842.795 +32069,2025-03-11T01:25:28.993596-07:00,992.53857421875,10.839836,10839.836 +32070,2025-03-11T01:25:39.823701-07:00,992.51220703125,10.830105,10830.105 +32071,2025-03-11T01:25:50.654954-07:00,992.5243530273438,10.831253,10831.253 +32072,2025-03-11T01:26:01.488950-07:00,992.5187377929688,10.833996,10833.996 +32073,2025-03-11T01:26:12.323852-07:00,992.4913330078125,10.834902,10834.902 +32074,2025-03-11T01:26:23.158954-07:00,992.5177612304688,10.835102,10835.102 +32075,2025-03-11T01:26:33.997694-07:00,992.5177612304688,10.83874,10838.74 +32076,2025-03-11T01:26:44.826191-07:00,992.509521484375,10.828497,10828.497 +32077,2025-03-11T01:26:55.662134-07:00,992.5226440429688,10.835943,10835.943 +32078,2025-03-11T01:27:06.491704-07:00,992.5226440429688,10.82957,10829.57 +32079,2025-03-11T01:27:17.329978-07:00,992.5084228515625,10.838274,10838.274 +32080,2025-03-11T01:27:28.164834-07:00,992.529296875,10.834856,10834.856 +32081,2025-03-11T01:27:38.998693-07:00,992.509521484375,10.833859,10833.859 +32082,2025-03-11T01:27:49.842258-07:00,992.5359497070312,10.843565,10843.565 +32083,2025-03-11T01:28:00.673696-07:00,992.5150756835938,10.831438,10831.438 +32084,2025-03-11T01:28:11.516709-07:00,992.521728515625,10.843013,10843.013 +32085,2025-03-11T01:28:22.344689-07:00,992.5269775390625,10.82798,10827.98 +32086,2025-03-11T01:28:33.179942-07:00,992.5259399414062,10.835253,10835.253 +32087,2025-03-11T01:28:44.021698-07:00,992.54150390625,10.841756,10841.756 +32088,2025-03-11T01:28:54.855031-07:00,992.5457763671875,10.833333,10833.333 +32089,2025-03-11T01:29:05.687985-07:00,992.5170288085938,10.832954,10832.954 +32090,2025-03-11T01:29:16.530035-07:00,992.5443725585938,10.84205,10842.05 +32091,2025-03-11T01:29:27.359914-07:00,992.53125,10.829879,10829.879 +32092,2025-03-11T01:29:38.203869-07:00,992.5170288085938,10.843955,10843.955 +32093,2025-03-11T01:29:49.036002-07:00,992.5179443359375,10.832133,10832.133 +32094,2025-03-11T01:29:59.880218-07:00,992.521240234375,10.844216,10844.216 +32095,2025-03-11T01:30:10.713914-07:00,992.5420532226562,10.833696,10833.696 +32096,2025-03-11T01:30:21.551717-07:00,992.534423828125,10.837803,10837.803 +32097,2025-03-11T01:30:32.384695-07:00,992.57080078125,10.832978,10832.978 +32098,2025-03-11T01:30:43.219700-07:00,992.548583984375,10.835005,10835.005 +32099,2025-03-11T01:30:54.059989-07:00,992.5420532226562,10.840289,10840.289 +32100,2025-03-11T01:31:04.893659-07:00,992.521240234375,10.83367,10833.67 +32101,2025-03-11T01:31:15.741809-07:00,992.55419921875,10.84815,10848.15 +32102,2025-03-11T01:31:26.573031-07:00,992.52783203125,10.831222,10831.222 +32103,2025-03-11T01:31:37.414702-07:00,992.5331420898438,10.841671,10841.671 +32104,2025-03-11T01:31:48.250095-07:00,992.5198974609375,10.835393,10835.393 +32105,2025-03-11T01:31:59.075206-07:00,992.5133056640625,10.825111,10825.111 +32106,2025-03-11T01:32:09.908095-07:00,992.521240234375,10.832889,10832.889 +32107,2025-03-11T01:32:20.749004-07:00,992.5133056640625,10.840909,10840.909 +32108,2025-03-11T01:32:31.579689-07:00,992.508056640625,10.830685,10830.685 +32109,2025-03-11T01:32:42.411702-07:00,992.5198974609375,10.832013,10832.013 +32110,2025-03-11T01:32:53.254290-07:00,992.5123291015625,10.842588,10842.588 +32111,2025-03-11T01:33:04.087959-07:00,992.5056762695312,10.833669,10833.669 +32112,2025-03-11T01:33:14.920977-07:00,992.5056762695312,10.833018,10833.018 +32113,2025-03-11T01:33:25.761233-07:00,992.5396728515625,10.840256,10840.256 +32114,2025-03-11T01:33:36.601884-07:00,992.5265502929688,10.840651,10840.651 +32115,2025-03-11T01:33:47.430980-07:00,992.5123291015625,10.829096,10829.096 +32116,2025-03-11T01:33:58.256938-07:00,992.5123291015625,10.825958,10825.958 +32117,2025-03-11T01:34:05.886356-07:00,992.4802856445312,7.629418,7629.418 +32118,2025-03-11T01:34:09.091980-07:00,992.4911499023438,3.205624,3205.624 +32119,2025-03-11T01:34:19.921675-07:00,992.5109252929688,10.829695,10829.695 +32120,2025-03-11T01:34:30.763690-07:00,992.4779663085938,10.842015,10842.015 +32121,2025-03-11T01:34:41.595116-07:00,992.497802734375,10.831426,10831.426 +32122,2025-03-11T01:34:52.431773-07:00,992.4990844726562,10.836657,10836.657 +32123,2025-03-11T01:35:03.270356-07:00,992.5109252929688,10.838583,10838.583 +32124,2025-03-11T01:35:14.107890-07:00,992.5109252929688,10.837534,10837.534 +32125,2025-03-11T01:35:24.950695-07:00,992.510009765625,10.842805,10842.805 +32126,2025-03-11T01:35:35.776776-07:00,992.5033569335938,10.826081,10826.081 +32127,2025-03-11T01:35:46.615016-07:00,992.5218505859375,10.83824,10838.24 +32128,2025-03-11T01:35:57.439700-07:00,992.5076293945312,10.824684,10824.684 +32129,2025-03-11T01:36:08.279962-07:00,992.506591796875,10.840262,10840.262 +32130,2025-03-11T01:36:19.099738-07:00,992.5198364257812,10.819776,10819.776 +32131,2025-03-11T01:36:29.931057-07:00,992.5184326171875,10.831319,10831.319 +32132,2025-03-11T01:36:40.766690-07:00,992.532958984375,10.835633,10835.633 +32133,2025-03-11T01:36:51.595211-07:00,992.5448608398438,10.828521,10828.521 +32134,2025-03-11T01:37:02.428689-07:00,992.5504760742188,10.833478,10833.478 +32135,2025-03-11T01:37:13.256699-07:00,992.5371704101562,10.82801,10828.01 +32136,2025-03-11T01:37:24.093171-07:00,992.5570068359375,10.836472,10836.472 +32137,2025-03-11T01:37:34.920949-07:00,992.5570068359375,10.827778,10827.778 +32138,2025-03-11T01:37:45.752667-07:00,992.5466918945312,10.831718,10831.718 +32139,2025-03-11T01:37:56.580696-07:00,992.5504760742188,10.828029,10828.029 +32140,2025-03-11T01:38:07.408172-07:00,992.549072265625,10.827476,10827.476 +32141,2025-03-11T01:38:18.230035-07:00,992.5797119140625,10.821863,10821.863 +32142,2025-03-11T01:38:29.059692-07:00,992.5599975585938,10.829657,10829.657 +32143,2025-03-11T01:38:39.897817-07:00,992.561279296875,10.838125,10838.125 +32144,2025-03-11T01:38:50.727052-07:00,992.5391235351562,10.829235,10829.235 +32145,2025-03-11T01:39:01.550862-07:00,992.5787353515625,10.82381,10823.81 +32146,2025-03-11T01:39:12.388260-07:00,992.564208984375,10.837398,10837.398 +32147,2025-03-11T01:39:23.213949-07:00,992.6051635742188,10.825689,10825.689 +32148,2025-03-11T01:39:34.044960-07:00,992.603759765625,10.831011,10831.011 +32149,2025-03-11T01:39:44.873230-07:00,992.576416015625,10.82827,10828.27 +32150,2025-03-11T01:39:55.702620-07:00,992.603759765625,10.82939,10829.39 +32151,2025-03-11T01:40:06.529933-07:00,992.5948486328125,10.827313,10827.313 +32152,2025-03-11T01:40:17.349686-07:00,992.6146240234375,10.819753,10819.753 +32153,2025-03-11T01:40:28.183951-07:00,992.6004028320312,10.834265,10834.265 +32154,2025-03-11T01:40:39.012689-07:00,992.6080322265625,10.828738,10828.738 +32155,2025-03-11T01:40:49.837677-07:00,992.587158203125,10.824988,10824.988 +32156,2025-03-11T01:41:00.671949-07:00,992.618896484375,10.834272,10834.272 +32157,2025-03-11T01:41:11.508931-07:00,992.5914306640625,10.836982,10836.982 +32158,2025-03-11T01:41:22.336965-07:00,992.6070556640625,10.828034,10828.034 +32159,2025-03-11T01:41:33.162759-07:00,992.5980224609375,10.825794,10825.794 +32160,2025-03-11T01:41:43.997029-07:00,992.603271484375,10.83427,10834.27 +32161,2025-03-11T01:41:54.830738-07:00,992.6244506835938,10.833709,10833.709 +32162,2025-03-11T01:42:05.652952-07:00,992.6429443359375,10.822214,10822.214 +32163,2025-03-11T01:42:16.483985-07:00,992.6353149414062,10.831033,10831.033 +32164,2025-03-11T01:42:27.312019-07:00,992.6221313476562,10.828034,10828.034 +32165,2025-03-11T01:42:38.144693-07:00,992.6405639648438,10.832674,10832.674 +32166,2025-03-11T01:42:48.977621-07:00,992.6560668945312,10.832928,10832.928 +32167,2025-03-11T01:42:59.806972-07:00,992.6273193359375,10.829351,10829.351 +32168,2025-03-11T01:43:10.644698-07:00,992.6626586914062,10.837726,10837.726 +32169,2025-03-11T01:43:21.472813-07:00,992.6748657226562,10.828115,10828.115 +32170,2025-03-11T01:43:32.302709-07:00,992.7234497070312,10.829896,10829.896 +32171,2025-03-11T01:43:43.134570-07:00,992.6890869140625,10.831861,10831.861 +32172,2025-03-11T01:43:53.963849-07:00,992.6857299804688,10.829279,10829.279 +32173,2025-03-11T01:44:04.793969-07:00,992.6790771484375,10.83012,10830.12 +32174,2025-03-11T01:44:15.624905-07:00,992.7107543945312,10.830936,10830.936 +32175,2025-03-11T01:44:26.451700-07:00,992.682373046875,10.826795,10826.795 +32176,2025-03-11T01:44:37.283835-07:00,992.6889038085938,10.832135,10832.135 +32177,2025-03-11T01:44:48.122838-07:00,992.7008056640625,10.839003,10839.003 +32178,2025-03-11T01:44:58.956142-07:00,992.7022094726562,10.833304,10833.304 +32179,2025-03-11T01:45:09.784231-07:00,992.693115234375,10.828089,10828.089 +32180,2025-03-11T01:45:20.616924-07:00,992.6997680664062,10.832693,10832.693 +32181,2025-03-11T01:45:31.448624-07:00,992.7040405273438,10.8317,10831.7 +32182,2025-03-11T01:45:42.271743-07:00,992.7171630859375,10.823119,10823.119 +32183,2025-03-11T01:45:53.105600-07:00,992.6974487304688,10.833857,10833.857 +32184,2025-03-11T01:46:03.943032-07:00,992.7040405273438,10.837432,10837.432 +32185,2025-03-11T01:46:14.766690-07:00,992.7159423828125,10.823658,10823.658 +32186,2025-03-11T01:46:25.594476-07:00,992.7422485351562,10.827786,10827.786 +32187,2025-03-11T01:46:36.426745-07:00,992.7159423828125,10.832269,10832.269 +32188,2025-03-11T01:46:47.251470-07:00,992.721435546875,10.824725,10824.725 +32189,2025-03-11T01:46:58.082738-07:00,992.7190551757812,10.831268,10831.268 +32190,2025-03-11T01:47:08.915306-07:00,992.7069702148438,10.832568,10832.568 +32191,2025-03-11T01:47:19.734072-07:00,992.684814453125,10.818766,10818.766 +32192,2025-03-11T01:47:30.567183-07:00,992.7167358398438,10.833111,10833.111 +32193,2025-03-11T01:47:41.389699-07:00,992.6758422851562,10.822516,10822.516 +32194,2025-03-11T01:47:52.219596-07:00,992.6494750976562,10.829897,10829.897 +32195,2025-03-11T01:48:03.050918-07:00,992.7101440429688,10.831322,10831.322 +32196,2025-03-11T01:48:13.880675-07:00,992.7022094726562,10.829757,10829.757 +32197,2025-03-11T01:48:24.702699-07:00,992.6890869140625,10.822024,10822.024 +32198,2025-03-11T01:48:35.531853-07:00,992.694580078125,10.829154,10829.154 +32199,2025-03-11T01:48:46.360849-07:00,992.68798828125,10.828996,10828.996 +32200,2025-03-11T01:48:57.185700-07:00,992.6932983398438,10.824851,10824.851 +32201,2025-03-11T01:49:08.025008-07:00,992.6710815429688,10.839308,10839.308 +32202,2025-03-11T01:49:18.842930-07:00,992.6658325195312,10.817922,10817.922 +32203,2025-03-11T01:49:29.677746-07:00,992.6305541992188,10.834816,10834.816 +32204,2025-03-11T01:49:40.500697-07:00,992.66455078125,10.822951,10822.951 +32205,2025-03-11T01:49:51.329696-07:00,992.6226806640625,10.828999,10828.999 +32206,2025-03-11T01:50:02.146865-07:00,992.631591796875,10.817169,10817.169 +32207,2025-03-11T01:50:12.982177-07:00,992.5975952148438,10.835312,10835.312 +32208,2025-03-11T01:50:23.806697-07:00,992.609375,10.82452,10824.52 +32209,2025-03-11T01:50:34.635014-07:00,992.5962524414062,10.828317,10828.317 +32210,2025-03-11T01:50:45.464687-07:00,992.5830688476562,10.829673,10829.673 +32211,2025-03-11T01:50:56.293006-07:00,992.561279296875,10.828319,10828.319 +32212,2025-03-11T01:51:07.126699-07:00,992.575439453125,10.833693,10833.693 +32213,2025-03-11T01:51:17.953956-07:00,992.5335083007812,10.827257,10827.257 +32214,2025-03-11T01:51:28.789931-07:00,992.5413818359375,10.835975,10835.975 +32215,2025-03-11T01:51:39.616084-07:00,992.561279296875,10.826153,10826.153 +32216,2025-03-11T01:51:50.440724-07:00,992.5137329101562,10.82464,10824.64 +32217,2025-03-11T01:52:01.280683-07:00,992.5216674804688,10.839959,10839.959 +32218,2025-03-11T01:52:12.113887-07:00,992.5413818359375,10.833204,10833.204 +32219,2025-03-11T01:52:22.939704-07:00,992.5335083007812,10.825817,10825.817 +32220,2025-03-11T01:52:33.782103-07:00,992.5137329101562,10.842399,10842.399 +32221,2025-03-11T01:52:44.608921-07:00,992.52685546875,10.826818,10826.818 +32222,2025-03-11T01:52:55.440031-07:00,992.5245361328125,10.83111,10831.11 +32223,2025-03-11T01:53:06.270755-07:00,992.49951171875,10.830724,10830.724 +32224,2025-03-11T01:53:17.097614-07:00,992.486328125,10.826859,10826.859 +32225,2025-03-11T01:53:27.928743-07:00,992.5037231445312,10.831129,10831.129 +32226,2025-03-11T01:53:38.755019-07:00,992.5169677734375,10.826276,10826.276 +32227,2025-03-11T01:53:49.577677-07:00,992.5236206054688,10.822658,10822.658 +32228,2025-03-11T01:54:00.404622-07:00,992.522216796875,10.826945,10826.945 +32229,2025-03-11T01:54:11.225836-07:00,992.494873046875,10.821214,10821.214 +32230,2025-03-11T01:54:22.059066-07:00,992.4905395507812,10.83323,10833.23 +32231,2025-03-11T01:54:32.877227-07:00,992.4957885742188,10.818161,10818.161 +32232,2025-03-11T01:54:43.702694-07:00,992.522216796875,10.825467,10825.467 +32233,2025-03-11T01:54:54.534980-07:00,992.5287475585938,10.832286,10832.286 +32234,2025-03-11T01:55:05.365150-07:00,992.5014038085938,10.83017,10830.17 +32235,2025-03-11T01:55:16.200951-07:00,992.5287475585938,10.835801,10835.801 +32236,2025-03-11T01:55:27.019924-07:00,992.5211791992188,10.818973,10818.973 +32237,2025-03-11T01:55:37.856809-07:00,992.52783203125,10.836885,10836.885 +32238,2025-03-11T01:55:48.682872-07:00,992.5409545898438,10.826063,10826.063 +32239,2025-03-11T01:55:59.504834-07:00,992.5000610351562,10.821962,10821.962 +32240,2025-03-11T01:56:10.341696-07:00,992.5067138671875,10.836862,10836.862 +32241,2025-03-11T01:56:21.168759-07:00,992.4845581054688,10.827063,10827.063 +32242,2025-03-11T01:56:31.994696-07:00,992.5109252929688,10.825937,10825.937 +32243,2025-03-11T01:56:42.814714-07:00,992.518798828125,10.820018,10820.018 +32244,2025-03-11T01:56:53.643701-07:00,992.5307006835938,10.828987,10828.987 +32245,2025-03-11T01:57:04.469860-07:00,992.4910888671875,10.826159,10826.159 +32246,2025-03-11T01:57:15.297698-07:00,992.4835205078125,10.827838,10827.838 +32247,2025-03-11T01:57:26.129729-07:00,992.51513671875,10.832031,10832.031 +32248,2025-03-11T01:57:36.956898-07:00,992.501953125,10.827169,10827.169 +32249,2025-03-11T01:57:47.789033-07:00,992.501953125,10.832135,10832.135 +32250,2025-03-11T01:57:58.612688-07:00,992.501953125,10.823655,10823.655 +32251,2025-03-11T01:58:09.445424-07:00,992.482177734375,10.832736,10832.736 +32252,2025-03-11T01:58:20.261726-07:00,992.5231323242188,10.816302,10816.302 +32253,2025-03-11T01:58:31.081684-07:00,992.521728515625,10.819958,10819.958 +32254,2025-03-11T01:58:41.907408-07:00,992.5282592773438,10.825724,10825.724 +32255,2025-03-11T01:58:52.736688-07:00,992.494384765625,10.82928,10829.28 +32256,2025-03-11T01:59:03.558855-07:00,992.501953125,10.822167,10822.167 +32257,2025-03-11T01:59:14.391002-07:00,992.4920043945312,10.832147,10832.147 +32258,2025-03-11T01:59:25.219847-07:00,992.5009155273438,10.828845,10828.845 +32259,2025-03-11T01:59:36.042701-07:00,992.4996337890625,10.822854,10822.854 +32260,2025-03-11T01:59:46.862017-07:00,992.4642944335938,10.819316,10819.316 +32261,2025-03-11T01:59:57.695049-07:00,992.5038452148438,10.833032,10833.032 +32262,2025-03-11T02:00:08.511695-07:00,992.4920043945312,10.816646,10816.646 +32263,2025-03-11T02:00:19.345243-07:00,992.5170288085938,10.833548,10833.548 +32264,2025-03-11T02:00:30.167072-07:00,992.5038452148438,10.821829,10821.829 +32265,2025-03-11T02:00:40.994185-07:00,992.4774780273438,10.827113,10827.113 +32266,2025-03-11T02:00:51.817942-07:00,992.5170288085938,10.823757,10823.757 +32267,2025-03-11T02:01:02.643943-07:00,992.5170288085938,10.826001,10826.001 +32268,2025-03-11T02:01:13.471015-07:00,992.4951782226562,10.827072,10827.072 +32269,2025-03-11T02:01:24.290925-07:00,992.4754638671875,10.81991,10819.91 +32270,2025-03-11T02:01:35.117070-07:00,992.5017700195312,10.826145,10826.145 +32271,2025-03-11T02:01:45.945675-07:00,992.5017700195312,10.828605,10828.605 +32272,2025-03-11T02:01:56.780726-07:00,992.4951782226562,10.835051,10835.051 +32273,2025-03-11T02:02:07.604699-07:00,992.5084228515625,10.823973,10823.973 +32274,2025-03-11T02:02:18.428751-07:00,992.467529296875,10.824052,10824.052 +32275,2025-03-11T02:02:29.258753-07:00,992.4820556640625,10.830002,10830.002 +32276,2025-03-11T02:02:40.090505-07:00,992.493896484375,10.831752,10831.752 +32277,2025-03-11T02:02:50.911749-07:00,992.4806518554688,10.821244,10821.244 +32278,2025-03-11T02:03:01.741740-07:00,992.4664916992188,10.829991,10829.991 +32279,2025-03-11T02:03:12.564102-07:00,992.4651489257812,10.822362,10822.362 +32280,2025-03-11T02:03:23.392858-07:00,992.4740600585938,10.828756,10828.756 +32281,2025-03-11T02:03:34.212060-07:00,992.4849243164062,10.819202,10819.202 +32282,2025-03-11T02:03:45.034692-07:00,992.4970092773438,10.822632,10822.632 +32283,2025-03-11T02:03:55.859890-07:00,992.478271484375,10.825198,10825.198 +32284,2025-03-11T02:04:06.683035-07:00,992.51123046875,10.823145,10823.145 +32285,2025-03-11T02:04:17.501958-07:00,992.4970092773438,10.818923,10818.923 +32286,2025-03-11T02:04:28.334485-07:00,992.503662109375,10.832527,10832.527 +32287,2025-03-11T02:04:39.158929-07:00,992.4891357421875,10.824444,10824.444 +32288,2025-03-11T02:04:49.985809-07:00,992.4472045898438,10.82688,10826.88 +32289,2025-03-11T02:05:00.817683-07:00,992.5089111328125,10.831874,10831.874 +32290,2025-03-11T02:05:11.643275-07:00,992.5145263671875,10.825592,10825.592 +32291,2025-03-11T02:05:22.469698-07:00,992.493408203125,10.826423,10826.423 +32292,2025-03-11T02:05:33.299053-07:00,992.5211181640625,10.829355,10829.355 +32293,2025-03-11T02:05:44.125931-07:00,992.5211181640625,10.826878,10826.878 +32294,2025-03-11T02:05:54.942943-07:00,992.5,10.817012,10817.012 +32295,2025-03-11T02:06:05.766300-07:00,992.51220703125,10.823357,10823.357 +32296,2025-03-11T02:06:16.596969-07:00,992.48681640625,10.830669,10830.669 +32297,2025-03-11T02:06:27.418232-07:00,992.51220703125,10.821263,10821.263 +32298,2025-03-11T02:06:38.239958-07:00,992.506591796875,10.821726,10821.726 +32299,2025-03-11T02:06:49.063962-07:00,992.5540771484375,10.824004,10824.004 +32300,2025-03-11T02:06:59.876921-07:00,992.5593872070312,10.812959,10812.959 +32301,2025-03-11T02:07:10.705801-07:00,992.5504150390625,10.82888,10828.88 +32302,2025-03-11T02:07:21.530170-07:00,992.585693359375,10.824369,10824.369 +32303,2025-03-11T02:07:32.355310-07:00,992.5790405273438,10.82514,10825.14 +32304,2025-03-11T02:07:43.170114-07:00,992.6002197265625,10.814804,10814.804 +32305,2025-03-11T02:07:53.993017-07:00,992.612060546875,10.822903,10822.903 +32306,2025-03-11T02:08:04.824565-07:00,992.6002197265625,10.831548,10831.548 +32307,2025-03-11T02:08:15.640907-07:00,992.630859375,10.816342,10816.342 +32308,2025-03-11T02:08:26.464292-07:00,992.6152954101562,10.823385,10823.385 +32309,2025-03-11T02:08:37.295972-07:00,992.637451171875,10.83168,10831.68 +32310,2025-03-11T02:08:48.116862-07:00,992.6229858398438,10.82089,10820.89 +32311,2025-03-11T02:08:58.937002-07:00,992.64404296875,10.82014,10820.14 +32312,2025-03-11T02:09:09.763975-07:00,992.677001953125,10.826973,10826.973 +32313,2025-03-11T02:09:20.584755-07:00,992.6417236328125,10.82078,10820.78 +32314,2025-03-11T02:09:31.419973-07:00,992.690185546875,10.835218,10835.218 +32315,2025-03-11T02:09:42.237289-07:00,992.6812744140625,10.817316,10817.316 +32316,2025-03-11T02:09:53.061980-07:00,992.6864624023438,10.824691,10824.691 +32317,2025-03-11T02:10:03.898230-07:00,992.679931640625,10.83625,10836.25 +32318,2025-03-11T02:10:14.724977-07:00,992.6525268554688,10.826747,10826.747 +32319,2025-03-11T02:10:25.545221-07:00,992.6920166015625,10.820244,10820.244 +32320,2025-03-11T02:10:36.373075-07:00,992.6657104492188,10.827854,10827.854 +32321,2025-03-11T02:10:47.196601-07:00,992.6973266601562,10.823526,10823.526 +32322,2025-03-11T02:10:58.027224-07:00,992.6907958984375,10.830623,10830.623 +32323,2025-03-11T02:11:08.844026-07:00,992.6962280273438,10.816802,10816.802 +32324,2025-03-11T02:11:19.664160-07:00,992.677490234375,10.820134,10820.134 +32325,2025-03-11T02:11:30.496220-07:00,992.68310546875,10.83206,10832.06 +32326,2025-03-11T02:11:41.315224-07:00,992.6962280273438,10.819004,10819.004 +32327,2025-03-11T02:11:52.149210-07:00,992.6907958984375,10.833986,10833.986 +32328,2025-03-11T02:12:02.974607-07:00,992.7005615234375,10.825397,10825.397 +32329,2025-03-11T02:12:13.804965-07:00,992.6807861328125,10.830358,10830.358 +32330,2025-03-11T02:12:24.626969-07:00,992.6817016601562,10.822004,10822.004 +32331,2025-03-11T02:12:35.459219-07:00,992.6817016601562,10.83225,10832.25 +32332,2025-03-11T02:12:46.284948-07:00,992.666259765625,10.825729,10825.729 +32333,2025-03-11T02:12:57.105646-07:00,992.666259765625,10.820698,10820.698 +32334,2025-03-11T02:13:07.941057-07:00,992.6807861328125,10.835411,10835.411 +32335,2025-03-11T02:13:18.767294-07:00,992.6883544921875,10.826237,10826.237 +32336,2025-03-11T02:13:29.593969-07:00,992.692626953125,10.826675,10826.675 +32337,2025-03-11T02:13:40.421296-07:00,992.6520385742188,10.827327,10827.327 +32338,2025-03-11T02:13:51.246523-07:00,992.6651611328125,10.825227,10825.227 +32339,2025-03-11T02:14:02.070971-07:00,992.6464233398438,10.824448,10824.448 +32340,2025-03-11T02:14:12.897220-07:00,992.666259765625,10.826249,10826.249 +32341,2025-03-11T02:14:23.731181-07:00,992.6651611328125,10.833961,10833.961 +32342,2025-03-11T02:14:34.557958-07:00,992.6378173828125,10.826777,10826.777 +32343,2025-03-11T02:14:45.379955-07:00,992.6651611328125,10.821997,10821.997 +32344,2025-03-11T02:14:56.208064-07:00,992.6520385742188,10.828109,10828.109 +32345,2025-03-11T02:15:07.038020-07:00,992.6378173828125,10.829956,10829.956 +32346,2025-03-11T02:15:17.866314-07:00,992.6585693359375,10.828294,10828.294 +32347,2025-03-11T02:15:28.680974-07:00,992.636474609375,10.81466,10814.66 +32348,2025-03-11T02:15:39.513304-07:00,992.649658203125,10.83233,10832.33 +32349,2025-03-11T02:15:50.326177-07:00,992.6209106445312,10.812873,10812.873 +32350,2025-03-11T02:16:01.146209-07:00,992.6486206054688,10.820032,10820.032 +32351,2025-03-11T02:16:11.978293-07:00,992.6275024414062,10.832084,10832.084 +32352,2025-03-11T02:16:22.807976-07:00,992.6406860351562,10.829683,10829.683 +32353,2025-03-11T02:16:33.631273-07:00,992.6209106445312,10.823297,10823.297 +32354,2025-03-11T02:16:44.451224-07:00,992.6406860351562,10.819951,10819.951 +32355,2025-03-11T02:16:55.271217-07:00,992.6383056640625,10.819993,10819.993 +32356,2025-03-11T02:17:06.096524-07:00,992.6473388671875,10.825307,10825.307 +32357,2025-03-11T02:17:16.919961-07:00,992.6604614257812,10.823437,10823.437 +32358,2025-03-11T02:17:27.744222-07:00,992.619873046875,10.824261,10824.261 +32359,2025-03-11T02:17:38.560423-07:00,992.6646728515625,10.816201,10816.201 +32360,2025-03-11T02:17:49.391948-07:00,992.6726684570312,10.831525,10831.525 +32361,2025-03-11T02:18:00.216306-07:00,992.6712646484375,10.824358,10824.358 +32362,2025-03-11T02:18:11.036979-07:00,992.6359252929688,10.820673,10820.673 +32363,2025-03-11T02:18:21.863205-07:00,992.607177734375,10.826226,10826.226 +32364,2025-03-11T02:18:32.686977-07:00,992.60205078125,10.823772,10823.772 +32365,2025-03-11T02:18:43.509241-07:00,992.6138305664062,10.822264,10822.264 +32366,2025-03-11T02:18:54.340306-07:00,992.599609375,10.831065,10831.065 +32367,2025-03-11T02:19:05.167952-07:00,992.6138305664062,10.827646,10827.646 +32368,2025-03-11T02:19:15.987895-07:00,992.5851440429688,10.819943,10819.943 +32369,2025-03-11T02:19:26.820192-07:00,992.5906372070312,10.832297,10832.297 +32370,2025-03-11T02:19:37.641201-07:00,992.6090698242188,10.821009,10821.009 +32371,2025-03-11T02:19:48.464214-07:00,992.58935546875,10.823013,10823.013 +32372,2025-03-11T02:19:59.289209-07:00,992.6090698242188,10.824995,10824.995 +32373,2025-03-11T02:20:10.118086-07:00,992.5882568359375,10.828877,10828.877 +32374,2025-03-11T02:20:20.941162-07:00,992.5516357421875,10.823076,10823.076 +32375,2025-03-11T02:20:31.767364-07:00,992.5516357421875,10.826202,10826.202 +32376,2025-03-11T02:20:42.596114-07:00,992.5582885742188,10.82875,10828.75 +32377,2025-03-11T02:20:53.426379-07:00,992.5374145507812,10.830265,10830.265 +32378,2025-03-11T02:21:04.248972-07:00,992.5680541992188,10.822593,10822.593 +32379,2025-03-11T02:21:15.074001-07:00,992.541748046875,10.825029,10825.029 +32380,2025-03-11T02:21:25.894283-07:00,992.5571899414062,10.820282,10820.282 +32381,2025-03-11T02:21:36.713964-07:00,992.5482788085938,10.819681,10819.681 +32382,2025-03-11T02:21:47.535145-07:00,992.539306640625,10.821181,10821.181 +32383,2025-03-11T02:21:58.361352-07:00,992.5604858398438,10.826207,10826.207 +32384,2025-03-11T02:22:09.180167-07:00,992.5340576171875,10.818815,10818.815 +32385,2025-03-11T02:22:20.012966-07:00,992.5501708984375,10.832799,10832.799 +32386,2025-03-11T02:22:30.835491-07:00,992.564697265625,10.822525,10822.525 +32387,2025-03-11T02:22:41.662529-07:00,992.5326538085938,10.827038,10827.038 +32388,2025-03-11T02:22:52.488975-07:00,992.5029907226562,10.826446,10826.446 +32389,2025-03-11T02:23:03.310999-07:00,992.5303344726562,10.822024,10822.024 +32390,2025-03-11T02:23:14.141970-07:00,992.4765625,10.830971,10830.971 +32391,2025-03-11T02:23:24.951535-07:00,992.5081787109375,10.809565,10809.565 +32392,2025-03-11T02:23:35.782325-07:00,992.4939575195312,10.83079,10830.79 +32393,2025-03-11T02:23:46.602495-07:00,992.5072021484375,10.82017,10820.17 +32394,2025-03-11T02:23:57.431213-07:00,992.5269775390625,10.828718,10828.718 +32395,2025-03-11T02:24:08.261971-07:00,992.5006103515625,10.830758,10830.758 +32396,2025-03-11T02:24:19.088144-07:00,992.5072021484375,10.826173,10826.173 +32397,2025-03-11T02:24:29.907279-07:00,992.505859375,10.819135,10819.135 +32398,2025-03-11T02:24:40.739971-07:00,992.51904296875,10.832692,10832.692 +32399,2025-03-11T02:24:51.555190-07:00,992.5045166015625,10.815219,10815.219 +32400,2025-03-11T02:25:02.379971-07:00,992.502197265625,10.824781,10824.781 +32401,2025-03-11T02:25:13.204965-07:00,992.51953125,10.824994,10824.994 +32402,2025-03-11T02:25:24.031970-07:00,992.555908203125,10.827005,10827.005 +32403,2025-03-11T02:25:34.849533-07:00,992.502197265625,10.817563,10817.563 +32404,2025-03-11T02:25:45.684304-07:00,992.5074462890625,10.834771,10834.771 +32405,2025-03-11T02:25:56.511950-07:00,992.5206298828125,10.827646,10827.646 +32406,2025-03-11T02:26:07.332074-07:00,992.51953125,10.820124,10820.124 +32407,2025-03-11T02:26:18.151969-07:00,992.55908203125,10.819895,10819.895 +32408,2025-03-11T02:26:28.982974-07:00,992.5459594726562,10.831005,10831.005 +32409,2025-03-11T02:26:39.810359-07:00,992.5501708984375,10.827385,10827.385 +32410,2025-03-11T02:26:50.636679-07:00,992.5511474609375,10.82632,10826.32 +32411,2025-03-11T02:27:01.461216-07:00,992.5632934570312,10.824537,10824.537 +32412,2025-03-11T02:27:12.277965-07:00,992.5896606445312,10.816749,10816.749 +32413,2025-03-11T02:27:23.110342-07:00,992.5533447265625,10.832377,10832.377 +32414,2025-03-11T02:27:33.934273-07:00,992.6160888671875,10.823931,10823.931 +32415,2025-03-11T02:27:44.755963-07:00,992.6216430664062,10.82169,10821.69 +32416,2025-03-11T02:27:55.583962-07:00,992.6258544921875,10.827999,10827.999 +32417,2025-03-11T02:28:06.410110-07:00,992.578369140625,10.826148,10826.148 +32418,2025-03-11T02:28:17.235387-07:00,992.611328125,10.825277,10825.277 +32419,2025-03-11T02:28:28.051971-07:00,992.59814453125,10.816584,10816.584 +32420,2025-03-11T02:28:38.878004-07:00,992.611328125,10.826033,10826.033 +32421,2025-03-11T02:28:49.708633-07:00,992.5904541015625,10.830629,10830.629 +32422,2025-03-11T02:29:00.534963-07:00,992.6234130859375,10.82633,10826.33 +32423,2025-03-11T02:29:11.361183-07:00,992.62109375,10.82622,10826.22 +32424,2025-03-11T02:29:22.188378-07:00,992.6079711914062,10.827195,10827.195 +32425,2025-03-11T02:29:33.020482-07:00,992.641845703125,10.832104,10832.104 +32426,2025-03-11T02:29:43.842967-07:00,992.62109375,10.822485,10822.485 +32427,2025-03-11T02:29:54.667273-07:00,992.6197509765625,10.824306,10824.306 +32428,2025-03-11T02:30:05.498972-07:00,992.6395263671875,10.831699,10831.699 +32429,2025-03-11T02:30:16.327330-07:00,992.6055297851562,10.828358,10828.358 +32430,2025-03-11T02:30:27.160961-07:00,992.6239624023438,10.833631,10833.631 +32431,2025-03-11T02:30:37.988087-07:00,992.6451416015625,10.827126,10827.126 +32432,2025-03-11T02:30:48.804733-07:00,992.6361083984375,10.816646,10816.646 +32433,2025-03-11T02:30:59.633078-07:00,992.6163940429688,10.828345,10828.345 +32434,2025-03-11T02:31:10.460083-07:00,992.614990234375,10.827005,10827.005 +32435,2025-03-11T02:31:21.279965-07:00,992.6018676757812,10.819882,10819.882 +32436,2025-03-11T02:31:32.106582-07:00,992.6060791015625,10.826617,10826.617 +32437,2025-03-11T02:31:42.942975-07:00,992.59423828125,10.836393,10836.393 +32438,2025-03-11T02:31:53.769228-07:00,992.5995483398438,10.826253,10826.253 +32439,2025-03-11T02:32:04.597349-07:00,992.5731201171875,10.828121,10828.121 +32440,2025-03-11T02:32:15.415953-07:00,992.5984497070312,10.818604,10818.604 +32441,2025-03-11T02:32:26.244943-07:00,992.587646484375,10.82899,10828.99 +32442,2025-03-11T02:32:37.068281-07:00,992.5533447265625,10.823338,10823.338 +32443,2025-03-11T02:32:47.883852-07:00,992.532470703125,10.815571,10815.571 +32444,2025-03-11T02:32:58.713972-07:00,992.5114135742188,10.83012,10830.12 +32445,2025-03-11T02:33:09.545105-07:00,992.537841796875,10.831133,10831.133 +32446,2025-03-11T02:33:20.372977-07:00,992.5270385742188,10.827872,10827.872 +32447,2025-03-11T02:33:31.186443-07:00,992.5391235351562,10.813466,10813.466 +32448,2025-03-11T02:33:42.007308-07:00,992.5236206054688,10.820865,10820.865 +32449,2025-03-11T02:33:52.828304-07:00,992.5170288085938,10.820996,10820.996 +32450,2025-03-11T02:34:03.657392-07:00,992.4971923828125,10.829088,10829.088 +32451,2025-03-11T02:34:14.479210-07:00,992.4840698242188,10.821818,10821.818 +32452,2025-03-11T02:34:25.306324-07:00,992.4906005859375,10.827114,10827.114 +32453,2025-03-11T02:34:36.130183-07:00,992.44873046875,10.823859,10823.859 +32454,2025-03-11T02:34:46.962538-07:00,992.4564208984375,10.832355,10832.355 +32455,2025-03-11T02:34:57.782964-07:00,992.4421997070312,10.820426,10820.426 +32456,2025-03-11T02:35:08.610964-07:00,992.4608764648438,10.828,10828.0 +32457,2025-03-11T02:35:19.423566-07:00,992.4529418945312,10.812602,10812.602 +32458,2025-03-11T02:35:30.249975-07:00,992.4411010742188,10.826409,10826.409 +32459,2025-03-11T02:35:41.064263-07:00,992.425537109375,10.814288,10814.288 +32460,2025-03-11T02:35:51.890133-07:00,992.4110717773438,10.82587,10825.87 +32461,2025-03-11T02:36:02.700696-07:00,992.425537109375,10.810563,10810.563 +32462,2025-03-11T02:36:13.519406-07:00,992.4099731445312,10.81871,10818.71 +32463,2025-03-11T02:36:24.340192-07:00,992.4176635742188,10.820786,10820.786 +32464,2025-03-11T02:36:35.165463-07:00,992.3912353515625,10.825271,10825.271 +32465,2025-03-11T02:36:45.993183-07:00,992.40869140625,10.82772,10827.72 +32466,2025-03-11T02:36:56.817607-07:00,992.4020385742188,10.824424,10824.424 +32467,2025-03-11T02:37:07.631220-07:00,992.415283203125,10.813613,10813.613 +32468,2025-03-11T02:37:18.454004-07:00,992.3733520507812,10.822784,10822.784 +32469,2025-03-11T02:37:29.279335-07:00,992.3812255859375,10.825331,10825.331 +32470,2025-03-11T02:37:40.099025-07:00,992.399658203125,10.81969,10819.69 +32471,2025-03-11T02:37:50.911964-07:00,992.40625,10.812939,10812.939 +32472,2025-03-11T02:38:01.737459-07:00,992.3865356445312,10.825495,10825.495 +32473,2025-03-11T02:38:12.559969-07:00,992.37890625,10.82251,10822.51 +32474,2025-03-11T02:38:23.388380-07:00,992.39208984375,10.828411,10828.411 +32475,2025-03-11T02:38:34.221239-07:00,992.4104614257812,10.832859,10832.859 +32476,2025-03-11T02:38:45.046013-07:00,992.3897094726562,10.824774,10824.774 +32477,2025-03-11T02:38:55.870228-07:00,992.3775634765625,10.824215,10824.215 +32478,2025-03-11T02:39:06.692457-07:00,992.4237670898438,10.822229,10822.229 +32479,2025-03-11T02:39:17.509280-07:00,992.4368896484375,10.816823,10816.823 +32480,2025-03-11T02:39:28.325607-07:00,992.3897094726562,10.816327,10816.327 +32481,2025-03-11T02:39:39.146973-07:00,992.4081420898438,10.821366,10821.366 +32482,2025-03-11T02:39:49.967782-07:00,992.414794921875,10.820809,10820.809 +32483,2025-03-11T02:40:00.788949-07:00,992.412353515625,10.821167,10821.167 +32484,2025-03-11T02:40:11.607970-07:00,992.4081420898438,10.819021,10819.021 +32485,2025-03-11T02:40:22.428776-07:00,992.4467163085938,10.820806,10820.806 +32486,2025-03-11T02:40:33.247107-07:00,992.4297485351562,10.818331,10818.331 +32487,2025-03-11T02:40:44.067964-07:00,992.4598388671875,10.820857,10820.857 +32488,2025-03-11T02:40:54.886972-07:00,992.411376953125,10.819008,10819.008 +32489,2025-03-11T02:41:05.717039-07:00,992.3736572265625,10.830067,10830.067 +32490,2025-03-11T02:41:16.532939-07:00,992.3726806640625,10.8159,10815.9 +32491,2025-03-11T02:41:27.356793-07:00,992.3934326171875,10.823854,10823.854 +32492,2025-03-11T02:41:38.175970-07:00,992.4121704101562,10.819177,10819.177 +32493,2025-03-11T02:41:49.004146-07:00,992.424072265625,10.828176,10828.176 +32494,2025-03-11T02:41:59.821053-07:00,992.3976440429688,10.816907,10816.907 +32495,2025-03-11T02:42:10.638101-07:00,992.424072265625,10.817048,10817.048 +32496,2025-03-11T02:42:21.458304-07:00,992.3976440429688,10.820203,10820.203 +32497,2025-03-11T02:42:32.289314-07:00,992.4371948242188,10.83101,10831.01 +32498,2025-03-11T02:42:43.102971-07:00,992.4163818359375,10.813657,10813.657 +32499,2025-03-11T02:42:53.930978-07:00,992.4503173828125,10.828007,10828.007 +32500,2025-03-11T02:43:04.743590-07:00,992.4559326171875,10.812612,10812.612 +32501,2025-03-11T02:43:15.570318-07:00,992.434814453125,10.826728,10826.728 +32502,2025-03-11T02:43:26.391160-07:00,992.4427490234375,10.820842,10820.842 +32503,2025-03-11T02:43:37.205396-07:00,992.4390869140625,10.814236,10814.236 +32504,2025-03-11T02:43:48.038321-07:00,992.4060668945312,10.832925,10832.925 +32505,2025-03-11T02:43:58.861490-07:00,992.4149780273438,10.823169,10823.169 +32506,2025-03-11T02:44:09.679552-07:00,992.4103393554688,10.818062,10818.062 +32507,2025-03-11T02:44:20.510066-07:00,992.4324340820312,10.830514,10830.514 +32508,2025-03-11T02:44:31.326369-07:00,992.4456176757812,10.816303,10816.303 +32509,2025-03-11T02:44:42.150225-07:00,992.4182739257812,10.823856,10823.856 +32510,2025-03-11T02:44:52.970353-07:00,992.4653930664062,10.820128,10820.128 +32511,2025-03-11T02:45:03.802188-07:00,992.4337768554688,10.831835,10831.835 +32512,2025-03-11T02:45:14.615974-07:00,992.4234619140625,10.813786,10813.786 +32513,2025-03-11T02:45:25.443593-07:00,992.4620361328125,10.827619,10827.619 +32514,2025-03-11T02:45:36.263967-07:00,992.49169921875,10.820374,10820.374 +32515,2025-03-11T02:45:47.084723-07:00,992.4432983398438,10.820756,10820.756 +32516,2025-03-11T02:45:57.903387-07:00,992.4290771484375,10.818664,10818.664 +32517,2025-03-11T02:46:08.733240-07:00,992.481689453125,10.829853,10829.853 +32518,2025-03-11T02:46:19.556256-07:00,992.4332885742188,10.823016,10823.016 +32519,2025-03-11T02:46:30.373081-07:00,992.4685668945312,10.816825,10816.825 +32520,2025-03-11T02:46:41.195096-07:00,992.487060546875,10.822015,10822.015 +32521,2025-03-11T02:46:52.028975-07:00,992.4606323242188,10.833879,10833.879 +32522,2025-03-11T02:47:02.850273-07:00,992.4662475585938,10.821298,10821.298 +32523,2025-03-11T02:47:13.677644-07:00,992.445068359375,10.827371,10827.371 +32524,2025-03-11T02:47:24.499190-07:00,992.4662475585938,10.821546,10821.546 +32525,2025-03-11T02:47:35.316244-07:00,992.4924926757812,10.817054,10817.054 +32526,2025-03-11T02:47:46.138411-07:00,992.46484375,10.822167,10822.167 +32527,2025-03-11T02:47:56.961177-07:00,992.4967041015625,10.822766,10822.766 +32528,2025-03-11T02:48:07.781683-07:00,992.5362548828125,10.820506,10820.506 +32529,2025-03-11T02:48:18.604176-07:00,992.5033569335938,10.822493,10822.493 +32530,2025-03-11T02:48:29.427974-07:00,992.51513671875,10.823798,10823.798 +32531,2025-03-11T02:48:40.250895-07:00,992.5086059570312,10.822921,10822.921 +32532,2025-03-11T02:48:51.070972-07:00,992.52734375,10.820077,10820.077 +32533,2025-03-11T02:49:01.892975-07:00,992.5193481445312,10.822003,10822.003 +32534,2025-03-11T02:49:12.711497-07:00,992.5128173828125,10.818522,10818.522 +32535,2025-03-11T02:49:23.535177-07:00,992.490966796875,10.82368,10823.68 +32536,2025-03-11T02:49:34.354952-07:00,992.5225830078125,10.819775,10819.775 +32537,2025-03-11T02:49:45.171787-07:00,992.517333984375,10.816835,10816.835 +32538,2025-03-11T02:49:55.986333-07:00,992.5315551757812,10.814546,10814.546 +32539,2025-03-11T02:50:06.801965-07:00,992.5423583984375,10.815632,10815.632 +32540,2025-03-11T02:50:17.626167-07:00,992.5488891601562,10.824202,10824.202 +32541,2025-03-11T02:50:28.435845-07:00,992.5357666015625,10.809678,10809.678 +32542,2025-03-11T02:50:39.256228-07:00,992.5423583984375,10.820383,10820.383 +32543,2025-03-11T02:50:50.074440-07:00,992.53466796875,10.818212,10818.212 +32544,2025-03-11T02:51:00.896561-07:00,992.4820556640625,10.822121,10822.121 +32545,2025-03-11T02:51:11.713180-07:00,992.5215454101562,10.816619,10816.619 +32546,2025-03-11T02:51:22.531968-07:00,992.50048828125,10.818788,10818.788 +32547,2025-03-11T02:51:33.352160-07:00,992.5267944335938,10.820192,10820.192 +32548,2025-03-11T02:51:44.178015-07:00,992.5267944335938,10.825855,10825.855 +32549,2025-03-11T02:51:54.997710-07:00,992.5267944335938,10.819695,10819.695 +32550,2025-03-11T02:52:05.818531-07:00,992.5201416015625,10.820821,10820.821 +32551,2025-03-11T02:52:16.633958-07:00,992.5060424804688,10.815427,10815.427 +32552,2025-03-11T02:52:27.459975-07:00,992.5281372070312,10.826017,10826.017 +32553,2025-03-11T02:52:38.279582-07:00,992.4993896484375,10.819607,10819.607 +32554,2025-03-11T02:52:49.093121-07:00,992.478271484375,10.813539,10813.539 +32555,2025-03-11T02:52:59.918974-07:00,992.51123046875,10.825853,10825.853 +32556,2025-03-11T02:53:10.734971-07:00,992.51123046875,10.815997,10815.997 +32557,2025-03-11T02:53:21.557415-07:00,992.490478515625,10.822444,10822.444 +32558,2025-03-11T02:53:32.378210-07:00,992.5243530273438,10.820795,10820.795 +32559,2025-03-11T02:53:43.197970-07:00,992.531005859375,10.81976,10819.76 +32560,2025-03-11T02:53:54.017975-07:00,992.517822265625,10.820005,10820.005 +32561,2025-03-11T02:54:04.852160-07:00,992.530029296875,10.834185,10834.185 +32562,2025-03-11T02:54:15.673369-07:00,992.5101318359375,10.821209,10821.209 +32563,2025-03-11T02:54:26.487953-07:00,992.4890747070312,10.814584,10814.584 +32564,2025-03-11T02:54:37.308974-07:00,992.5418090820312,10.821021,10821.021 +32565,2025-03-11T02:54:48.130428-07:00,992.5234375,10.821454,10821.454 +32566,2025-03-11T02:54:58.947970-07:00,992.5352172851562,10.817542,10817.542 +32567,2025-03-11T02:55:09.765191-07:00,992.5220336914062,10.817221,10817.221 +32568,2025-03-11T02:55:20.575812-07:00,992.5234375,10.810621,10810.621 +32569,2025-03-11T02:55:31.393301-07:00,992.5220336914062,10.817489,10817.489 +32570,2025-03-11T02:55:42.209962-07:00,992.4957275390625,10.816661,10816.661 +32571,2025-03-11T02:55:53.030973-07:00,992.5220336914062,10.821011,10821.011 +32572,2025-03-11T02:56:14.675025-07:00,992.5262451171875,21.644052,21644.052 +32573,2025-03-11T02:56:25.493253-07:00,992.540771484375,10.818228,10818.228 +32574,2025-03-11T02:56:36.304117-07:00,992.5418090820312,10.810864,10810.864 +32575,2025-03-11T02:56:47.126292-07:00,992.5197143554688,10.822175,10822.175 +32576,2025-03-11T02:56:57.944971-07:00,992.5186157226562,10.818679,10818.679 +32577,2025-03-11T02:57:08.771281-07:00,992.5526733398438,10.82631,10826.31 +32578,2025-03-11T02:57:19.585337-07:00,992.52392578125,10.814056,10814.056 +32579,2025-03-11T02:57:30.402964-07:00,992.5097045898438,10.817627,10817.627 +32580,2025-03-11T02:57:41.215528-07:00,992.5370483398438,10.812564,10812.564 +32581,2025-03-11T02:57:52.032890-07:00,992.556884765625,10.817362,10817.362 +32582,2025-03-11T02:58:02.851210-07:00,992.5477905273438,10.81832,10818.32 +32583,2025-03-11T02:58:13.658092-07:00,992.5402221679688,10.806882,10806.882 +32584,2025-03-11T02:58:24.483958-07:00,992.5191650390625,10.825866,10825.866 +32585,2025-03-11T02:58:35.295099-07:00,992.56103515625,10.811141,10811.141 +32586,2025-03-11T02:58:46.120976-07:00,992.5256958007812,10.825877,10825.877 +32587,2025-03-11T02:58:56.937213-07:00,992.546875,10.816237,10816.237 +32588,2025-03-11T02:59:07.749640-07:00,992.5181274414062,10.812427,10812.427 +32589,2025-03-11T02:59:18.567275-07:00,992.511474609375,10.817635,10817.635 +32590,2025-03-11T02:59:29.388968-07:00,992.5431518554688,10.821693,10821.693 +32591,2025-03-11T02:59:40.214011-07:00,992.5365600585938,10.825043,10825.043 +32592,2025-03-11T02:59:51.025904-07:00,992.5232543945312,10.811893,10811.893 +32593,2025-03-11T03:00:01.843976-07:00,992.5167236328125,10.818072,10818.072 +32594,2025-03-11T03:00:12.666025-07:00,992.5156860351562,10.822049,10822.049 +32595,2025-03-11T03:00:23.483922-07:00,992.5420532226562,10.817897,10817.897 +32596,2025-03-11T03:00:34.304975-07:00,992.5223388671875,10.821053,10821.053 +32597,2025-03-11T03:00:45.123117-07:00,992.5067138671875,10.818142,10818.142 +32598,2025-03-11T03:00:55.952144-07:00,992.5147094726562,10.829027,10829.027 +32599,2025-03-11T03:01:06.755509-07:00,992.541015625,10.803365,10803.365 +32600,2025-03-11T03:01:17.576219-07:00,992.5056762695312,10.82071,10820.71 +32601,2025-03-11T03:01:28.390107-07:00,992.4859619140625,10.813888,10813.888 +32602,2025-03-11T03:01:39.215576-07:00,992.471435546875,10.825469,10825.469 +32603,2025-03-11T03:01:50.025347-07:00,992.4728393554688,10.809771,10809.771 +32604,2025-03-11T03:02:00.842217-07:00,992.4835815429688,10.81687,10816.87 +32605,2025-03-11T03:02:11.666329-07:00,992.4835815429688,10.824112,10824.112 +32606,2025-03-11T03:02:22.481314-07:00,992.4703979492188,10.814985,10814.985 +32607,2025-03-11T03:02:33.290979-07:00,992.4901733398438,10.809665,10809.665 +32608,2025-03-11T03:02:44.104292-07:00,992.4637451171875,10.813313,10813.313 +32609,2025-03-11T03:02:54.914114-07:00,992.4229736328125,10.809822,10809.822 +32610,2025-03-11T03:03:05.730958-07:00,992.47705078125,10.816844,10816.844 +32611,2025-03-11T03:03:16.540986-07:00,992.494384765625,10.810028,10810.028 +32612,2025-03-11T03:03:27.363030-07:00,992.495361328125,10.822044,10822.044 +32613,2025-03-11T03:03:38.177965-07:00,992.481201171875,10.814935,10814.935 +32614,2025-03-11T03:03:48.988967-07:00,992.4534301757812,10.811002,10811.002 +32615,2025-03-11T03:03:59.814163-07:00,992.4600830078125,10.825196,10825.196 +32616,2025-03-11T03:04:10.634962-07:00,992.454833984375,10.820799,10820.799 +32617,2025-03-11T03:04:21.442238-07:00,992.4600830078125,10.807276,10807.276 +32618,2025-03-11T03:04:32.262369-07:00,992.4534301757812,10.820131,10820.131 +32619,2025-03-11T03:04:43.070329-07:00,992.4667358398438,10.80796,10807.96 +32620,2025-03-11T03:04:53.891114-07:00,992.4590454101562,10.820785,10820.785 +32621,2025-03-11T03:05:04.699244-07:00,992.4863891601562,10.80813,10808.13 +32622,2025-03-11T03:05:15.515225-07:00,992.4656372070312,10.815981,10815.981 +32623,2025-03-11T03:05:26.337503-07:00,992.43798828125,10.822278,10822.278 +32624,2025-03-11T03:05:37.157015-07:00,992.4642944335938,10.819512,10819.512 +32625,2025-03-11T03:05:47.973005-07:00,992.4445190429688,10.81599,10815.99 +32626,2025-03-11T03:05:58.827741-07:00,992.4435424804688,10.854736,10854.736 +32627,2025-03-11T03:06:09.646104-07:00,992.4500732421875,10.818363,10818.363 +32628,2025-03-11T03:06:20.467991-07:00,992.4511108398438,10.821887,10821.887 +32629,2025-03-11T03:06:31.281895-07:00,992.4368896484375,10.813904,10813.904 +32630,2025-03-11T03:06:42.099562-07:00,992.4368896484375,10.817667,10817.667 +32631,2025-03-11T03:06:52.917654-07:00,992.428955078125,10.818092,10818.092 +32632,2025-03-11T03:07:03.737591-07:00,992.414794921875,10.819937,10819.937 +32633,2025-03-11T03:07:14.556582-07:00,992.4302978515625,10.818991,10818.991 +32634,2025-03-11T03:07:25.375910-07:00,992.4397583007812,10.819328,10819.328 +32635,2025-03-11T03:07:36.181848-07:00,992.455322265625,10.805938,10805.938 +32636,2025-03-11T03:07:46.998622-07:00,992.4608764648438,10.816774,10816.774 +32637,2025-03-11T03:07:57.816824-07:00,992.467529296875,10.818202,10818.202 +32638,2025-03-11T03:08:08.629315-07:00,992.47265625,10.812491,10812.491 +32639,2025-03-11T03:08:19.445602-07:00,992.4332275390625,10.816287,10816.287 +32640,2025-03-11T03:08:30.261059-07:00,992.4397583007812,10.815457,10815.457 +32641,2025-03-11T03:08:41.075576-07:00,992.425537109375,10.814517,10814.517 +32642,2025-03-11T03:08:51.889681-07:00,992.4373168945312,10.814105,10814.105 +32643,2025-03-11T03:09:02.704078-07:00,992.4241943359375,10.814397,10814.397 +32644,2025-03-11T03:09:13.517050-07:00,992.3826293945312,10.812972,10812.972 +32645,2025-03-11T03:09:24.322586-07:00,992.3968505859375,10.805536,10805.536 +32646,2025-03-11T03:09:35.140575-07:00,992.4110717773438,10.817989,10817.989 +32647,2025-03-11T03:09:45.951599-07:00,992.3892211914062,10.811024,10811.024 +32648,2025-03-11T03:09:56.763738-07:00,992.40234375,10.812139,10812.139 +32649,2025-03-11T03:10:07.574198-07:00,992.4099731445312,10.81046,10810.46 +32650,2025-03-11T03:10:18.394878-07:00,992.4207763671875,10.82068,10820.68 +32651,2025-03-11T03:10:29.210592-07:00,992.435302734375,10.815714,10815.714 +32652,2025-03-11T03:10:40.031920-07:00,992.4221801757812,10.821328,10821.328 +32653,2025-03-11T03:10:50.846954-07:00,992.3812255859375,10.815034,10815.034 +32654,2025-03-11T03:11:01.664598-07:00,992.4076538085938,10.817644,10817.644 +32655,2025-03-11T03:11:12.479595-07:00,992.40234375,10.814997,10814.997 +32656,2025-03-11T03:11:23.287761-07:00,992.3944702148438,10.808166,10808.166 +32657,2025-03-11T03:11:34.109004-07:00,992.3736572265625,10.821243,10821.243 +32658,2025-03-11T03:11:44.915277-07:00,992.4076538085938,10.806273,10806.273 +32659,2025-03-11T03:11:55.742591-07:00,992.372314453125,10.827314,10827.314 +32660,2025-03-11T03:12:06.552667-07:00,992.3657836914062,10.810076,10810.076 +32661,2025-03-11T03:12:17.369836-07:00,992.33837890625,10.817169,10817.169 +32662,2025-03-11T03:12:28.187653-07:00,992.3657836914062,10.817817,10817.817 +32663,2025-03-11T03:12:39.006659-07:00,992.3736572265625,10.819006,10819.006 +32664,2025-03-11T03:12:49.821518-07:00,992.3657836914062,10.814859,10814.859 +32665,2025-03-11T03:13:00.639601-07:00,992.3524780273438,10.818083,10818.083 +32666,2025-03-11T03:13:11.464588-07:00,992.345947265625,10.824987,10824.987 +32667,2025-03-11T03:13:22.278805-07:00,992.31201171875,10.814217,10814.217 +32668,2025-03-11T03:13:33.092927-07:00,992.3317260742188,10.814122,10814.122 +32669,2025-03-11T03:13:43.912825-07:00,992.3251342773438,10.819898,10819.898 +32670,2025-03-11T03:13:54.732596-07:00,992.3370361328125,10.819771,10819.771 +32671,2025-03-11T03:14:05.547012-07:00,992.33837890625,10.814416,10814.416 +32672,2025-03-11T03:14:16.351509-07:00,992.3304443359375,10.804497,10804.497 +32673,2025-03-11T03:14:27.171591-07:00,992.342529296875,10.820082,10820.082 +32674,2025-03-11T03:14:37.980859-07:00,992.3096313476562,10.809268,10809.268 +32675,2025-03-11T03:14:48.785646-07:00,992.2809448242188,10.804787,10804.787 +32676,2025-03-11T03:14:59.609458-07:00,992.3280639648438,10.823812,10823.812 +32677,2025-03-11T03:15:10.426066-07:00,992.3270263671875,10.816608,10816.608 +32678,2025-03-11T03:15:21.234594-07:00,992.2874755859375,10.808528,10808.528 +32679,2025-03-11T03:15:32.059863-07:00,992.2860717773438,10.825269,10825.269 +32680,2025-03-11T03:15:42.880452-07:00,992.292724609375,10.820589,10820.589 +32681,2025-03-11T03:15:53.696853-07:00,992.3125,10.816401,10816.401 +32682,2025-03-11T03:16:04.503638-07:00,992.3048706054688,10.806785,10806.785 +32683,2025-03-11T03:16:15.318585-07:00,992.3071899414062,10.814947,10814.947 +32684,2025-03-11T03:16:26.133596-07:00,992.2982788085938,10.815011,10815.011 +32685,2025-03-11T03:16:36.959788-07:00,992.2498168945312,10.826192,10826.192 +32686,2025-03-11T03:16:47.774583-07:00,992.291748046875,10.814795,10814.795 +32687,2025-03-11T03:16:58.582634-07:00,992.2706298828125,10.808051,10808.051 +32688,2025-03-11T03:17:09.403817-07:00,992.2442016601562,10.821183,10821.183 +32689,2025-03-11T03:17:20.218804-07:00,992.2352905273438,10.814987,10814.987 +32690,2025-03-11T03:17:31.026882-07:00,992.236572265625,10.808078,10808.078 +32691,2025-03-11T03:17:41.844743-07:00,992.2498168945312,10.817861,10817.861 +32692,2025-03-11T03:17:52.660840-07:00,992.2814331054688,10.816097,10816.097 +32693,2025-03-11T03:18:03.463585-07:00,992.2418823242188,10.802745,10802.745 +32694,2025-03-11T03:18:14.277265-07:00,992.2474365234375,10.81368,10813.68 +32695,2025-03-11T03:18:25.082879-07:00,992.2539672851562,10.805614,10805.614 +32696,2025-03-11T03:18:35.896762-07:00,992.2418823242188,10.813883,10813.883 +32697,2025-03-11T03:18:46.711576-07:00,992.2484130859375,10.814814,10814.814 +32698,2025-03-11T03:18:57.530711-07:00,992.2276611328125,10.819135,10819.135 +32699,2025-03-11T03:19:08.341003-07:00,992.2748413085938,10.810292,10810.292 +32700,2025-03-11T03:19:19.168606-07:00,992.2515869140625,10.827603,10827.603 +32701,2025-03-11T03:19:29.978630-07:00,992.20654296875,10.810024,10810.024 +32702,2025-03-11T03:19:40.786588-07:00,992.2120971679688,10.807958,10807.958 +32703,2025-03-11T03:19:51.604902-07:00,992.263427734375,10.818314,10818.314 +32704,2025-03-11T03:20:02.420856-07:00,992.2384643554688,10.815954,10815.954 +32705,2025-03-11T03:20:13.234917-07:00,992.2474365234375,10.814061,10814.061 +32706,2025-03-11T03:20:24.048819-07:00,992.263427734375,10.813902,10813.902 +32707,2025-03-11T03:20:34.870184-07:00,992.23046875,10.821365,10821.365 +32708,2025-03-11T03:20:45.678986-07:00,992.2515869140625,10.808802,10808.802 +32709,2025-03-11T03:20:56.487884-07:00,992.24609375,10.808898,10808.898 +32710,2025-03-11T03:21:07.308582-07:00,992.222900390625,10.820698,10820.698 +32711,2025-03-11T03:21:18.126587-07:00,992.2162475585938,10.818005,10818.005 +32712,2025-03-11T03:21:28.936628-07:00,992.203125,10.810041,10810.041 +32713,2025-03-11T03:21:39.756234-07:00,992.2086791992188,10.819606,10819.606 +32714,2025-03-11T03:21:50.579021-07:00,992.1889038085938,10.822787,10822.787 +32715,2025-03-11T03:22:01.392583-07:00,992.2295532226562,10.813562,10813.562 +32716,2025-03-11T03:22:12.207718-07:00,992.2139282226562,10.815135,10815.135 +32717,2025-03-11T03:22:23.023650-07:00,992.2284545898438,10.815932,10815.932 +32718,2025-03-11T03:22:33.842738-07:00,992.2059326171875,10.819088,10819.088 +32719,2025-03-11T03:22:44.654594-07:00,992.186279296875,10.811856,10811.856 +32720,2025-03-11T03:22:55.477960-07:00,992.1928100585938,10.823366,10823.366 +32721,2025-03-11T03:23:06.294196-07:00,992.1981201171875,10.816236,10816.236 +32722,2025-03-11T03:23:17.106796-07:00,992.21923828125,10.8126,10812.6 +32723,2025-03-11T03:23:27.920594-07:00,992.1914672851562,10.813798,10813.798 +32724,2025-03-11T03:23:38.736114-07:00,992.1824951171875,10.81552,10815.52 +32725,2025-03-11T03:23:49.554722-07:00,992.1838989257812,10.818608,10818.608 +32726,2025-03-11T03:24:00.377588-07:00,992.2285766601562,10.822866,10822.866 +32727,2025-03-11T03:24:11.197114-07:00,992.2431030273438,10.819526,10819.526 +32728,2025-03-11T03:24:22.013660-07:00,992.2089233398438,10.816546,10816.546 +32729,2025-03-11T03:24:32.826032-07:00,992.2022705078125,10.812372,10812.372 +32730,2025-03-11T03:24:43.647945-07:00,992.1947021484375,10.821913,10821.913 +32731,2025-03-11T03:24:54.472953-07:00,992.2220458984375,10.825008,10825.008 +32732,2025-03-11T03:25:05.287811-07:00,992.2220458984375,10.814858,10814.858 +32733,2025-03-11T03:25:16.101851-07:00,992.1998291015625,10.81404,10814.04 +32734,2025-03-11T03:25:26.918639-07:00,992.2064819335938,10.816788,10816.788 +32735,2025-03-11T03:25:37.721588-07:00,992.1867065429688,10.802949,10802.949 +32736,2025-03-11T03:25:48.544733-07:00,992.1856079101562,10.823145,10823.145 +32737,2025-03-11T03:25:59.355596-07:00,992.1867065429688,10.810863,10810.863 +32738,2025-03-11T03:26:10.174817-07:00,992.1932983398438,10.819221,10819.221 +32739,2025-03-11T03:26:20.996171-07:00,992.1989135742188,10.821354,10821.354 +32740,2025-03-11T03:26:31.805937-07:00,992.2262573242188,10.809766,10809.766 +32741,2025-03-11T03:26:42.623599-07:00,992.2054443359375,10.817662,10817.662 +32742,2025-03-11T03:26:53.429592-07:00,992.197509765625,10.805993,10805.993 +32743,2025-03-11T03:27:04.248587-07:00,992.170166015625,10.818995,10818.995 +32744,2025-03-11T03:27:15.070637-07:00,992.197509765625,10.82205,10822.05 +32745,2025-03-11T03:27:25.884596-07:00,992.177734375,10.813959,10813.959 +32746,2025-03-11T03:27:36.698592-07:00,992.1621704101562,10.813996,10813.996 +32747,2025-03-11T03:27:47.507803-07:00,992.19091796875,10.809211,10809.211 +32748,2025-03-11T03:27:58.326754-07:00,992.177734375,10.818951,10818.951 +32749,2025-03-11T03:28:09.136612-07:00,992.1885986328125,10.809858,10809.858 +32750,2025-03-11T03:28:19.957874-07:00,992.1611938476562,10.821262,10821.262 +32751,2025-03-11T03:28:30.777657-07:00,992.208251953125,10.819783,10819.783 +32752,2025-03-11T03:28:41.591914-07:00,992.1687622070312,10.814257,10814.257 +32753,2025-03-11T03:28:52.400880-07:00,992.1621704101562,10.808966,10808.966 +32754,2025-03-11T03:29:03.220583-07:00,992.1743774414062,10.819703,10819.703 +32755,2025-03-11T03:29:14.033914-07:00,992.1875,10.813331,10813.331 +32756,2025-03-11T03:29:24.836588-07:00,992.1598510742188,10.802674,10802.674 +32757,2025-03-11T03:29:35.653942-07:00,992.1334228515625,10.817354,10817.354 +32758,2025-03-11T03:29:46.465102-07:00,992.12451171875,10.81116,10811.16 +32759,2025-03-11T03:29:57.282669-07:00,992.1192016601562,10.817567,10817.567 +32760,2025-03-11T03:30:08.098582-07:00,992.111328125,10.815913,10815.913 +32761,2025-03-11T03:30:18.906817-07:00,992.104736328125,10.808235,10808.235 +32762,2025-03-11T03:30:29.717904-07:00,992.1179809570312,10.811087,10811.087 +32763,2025-03-11T03:30:40.535960-07:00,992.103759765625,10.818056,10818.056 +32764,2025-03-11T03:30:51.355695-07:00,992.090576171875,10.819735,10819.735 +32765,2025-03-11T03:31:02.172646-07:00,992.1023559570312,10.816951,10816.951 +32766,2025-03-11T03:31:12.979574-07:00,992.1079711914062,10.806928,10806.928 +32767,2025-03-11T03:31:23.804590-07:00,992.101318359375,10.825016,10825.016 +32768,2025-03-11T03:31:34.611798-07:00,992.0739135742188,10.807208,10807.208 +32769,2025-03-11T03:32:39.500824-07:00,992.0923461914062,64.889026,64889.026 +32770,2025-03-11T03:32:50.318567-07:00,992.0923461914062,10.817743,10817.743 +32771,2025-03-11T03:33:01.135984-07:00,992.0923461914062,10.817417,10817.417 +32772,2025-03-11T03:33:11.939598-07:00,992.0847778320312,10.803614,10803.614 +32773,2025-03-11T03:33:22.752437-07:00,992.1121215820312,10.812839,10812.839 +32774,2025-03-11T03:33:33.564591-07:00,992.076904296875,10.812154,10812.154 +32775,2025-03-11T03:33:44.379105-07:00,992.071533203125,10.814514,10814.514 +32776,2025-03-11T03:33:55.192915-07:00,992.098876953125,10.81381,10813.81 +32777,2025-03-11T03:34:06.013880-07:00,992.0527954101562,10.820965,10820.965 +32778,2025-03-11T03:34:16.822581-07:00,992.1187744140625,10.808701,10808.701 +32779,2025-03-11T03:34:27.638653-07:00,992.0726318359375,10.816072,10816.072 +32780,2025-03-11T03:34:38.443752-07:00,992.1045532226562,10.805099,10805.099 +32781,2025-03-11T03:34:49.263072-07:00,992.1134643554688,10.81932,10819.32 +32782,2025-03-11T03:35:00.074419-07:00,992.111083984375,10.811347,10811.347 +32783,2025-03-11T03:35:10.888075-07:00,992.1331787109375,10.813656,10813.656 +32784,2025-03-11T03:35:21.704595-07:00,992.1318969726562,10.81652,10816.52 +32785,2025-03-11T03:35:32.522874-07:00,992.1300659179688,10.818279,10818.279 +32786,2025-03-11T03:35:43.333013-07:00,992.127685546875,10.810139,10810.139 +32787,2025-03-11T03:35:54.152644-07:00,992.1079711914062,10.819631,10819.631 +32788,2025-03-11T03:36:04.968573-07:00,992.12109375,10.815929,10815.929 +32789,2025-03-11T03:36:15.780588-07:00,992.1353149414062,10.812015,10812.015 +32790,2025-03-11T03:36:26.598820-07:00,992.114501953125,10.818232,10818.232 +32791,2025-03-11T03:36:37.414983-07:00,992.1300659179688,10.816163,10816.163 +32792,2025-03-11T03:36:48.233828-07:00,992.0761108398438,10.818845,10818.845 +32793,2025-03-11T03:36:59.049064-07:00,992.0761108398438,10.815236,10815.236 +32794,2025-03-11T03:37:09.864174-07:00,992.1234130859375,10.81511,10815.11 +32795,2025-03-11T03:37:20.685731-07:00,992.1079711914062,10.821557,10821.557 +32796,2025-03-11T03:37:31.490930-07:00,992.1300659179688,10.805199,10805.199 +32797,2025-03-11T03:37:42.308914-07:00,992.1102905273438,10.817984,10817.984 +32798,2025-03-11T03:37:53.120925-07:00,992.0957641601562,10.812011,10812.011 +32799,2025-03-11T03:38:03.924739-07:00,992.09375,10.803814,10803.814 +32800,2025-03-11T03:38:14.744030-07:00,992.1266479492188,10.819291,10819.291 +32801,2025-03-11T03:38:25.567839-07:00,992.0857543945312,10.823809,10823.809 +32802,2025-03-11T03:38:36.375591-07:00,992.1055297851562,10.807752,10807.752 +32803,2025-03-11T03:38:47.185050-07:00,992.1134643554688,10.809459,10809.459 +32804,2025-03-11T03:38:58.009593-07:00,992.111083984375,10.824543,10824.543 +32805,2025-03-11T03:39:08.814587-07:00,992.1121215820312,10.804994,10804.994 +32806,2025-03-11T03:39:19.626571-07:00,992.11767578125,10.811984,10811.984 +32807,2025-03-11T03:39:30.442620-07:00,992.0965576171875,10.816049,10816.049 +32808,2025-03-11T03:39:41.265013-07:00,992.14404296875,10.822393,10822.393 +32809,2025-03-11T03:39:52.077834-07:00,992.0965576171875,10.812821,10812.821 +32810,2025-03-11T03:40:02.896592-07:00,992.1152954101562,10.818758,10818.758 +32811,2025-03-11T03:40:13.707263-07:00,992.137451171875,10.810671,10810.671 +32812,2025-03-11T03:40:24.525999-07:00,992.1624145507812,10.818736,10818.736 +32813,2025-03-11T03:40:35.335591-07:00,992.1492309570312,10.809592,10809.592 +32814,2025-03-11T03:40:46.151597-07:00,992.1599731445312,10.816006,10816.006 +32815,2025-03-11T03:40:56.972584-07:00,992.1548461914062,10.820987,10820.987 +32816,2025-03-11T03:41:07.785925-07:00,992.1468505859375,10.813341,10813.341 +32817,2025-03-11T03:41:18.600155-07:00,992.1403198242188,10.81423,10814.23 +32818,2025-03-11T03:41:29.421817-07:00,992.1326293945312,10.821662,10821.662 +32819,2025-03-11T03:41:40.234367-07:00,992.10498046875,10.81255,10812.55 +32820,2025-03-11T03:41:51.055024-07:00,992.1246948242188,10.820657,10820.657 +32821,2025-03-11T03:42:01.865109-07:00,992.1171264648438,10.810085,10810.085 +32822,2025-03-11T03:42:12.683592-07:00,992.14453125,10.818483,10818.483 +32823,2025-03-11T03:42:23.503356-07:00,992.135498046875,10.819764,10819.764 +32824,2025-03-11T03:42:34.314035-07:00,992.1236572265625,10.810679,10810.679 +32825,2025-03-11T03:42:45.131875-07:00,992.1146850585938,10.81784,10817.84 +32826,2025-03-11T03:42:55.949590-07:00,992.14208984375,10.817715,10817.715 +32827,2025-03-11T03:43:06.761972-07:00,992.1146850585938,10.812382,10812.382 +32828,2025-03-11T03:43:17.578830-07:00,992.1133422851562,10.816858,10816.858 +32829,2025-03-11T03:43:28.399597-07:00,992.1068115234375,10.820767,10820.767 +32830,2025-03-11T03:43:39.220598-07:00,992.138671875,10.821001,10821.001 +32831,2025-03-11T03:43:50.039873-07:00,992.159423828125,10.819275,10819.275 +32832,2025-03-11T03:44:00.855821-07:00,992.12548828125,10.815948,10815.948 +32833,2025-03-11T03:44:11.668744-07:00,992.0978393554688,10.812923,10812.923 +32834,2025-03-11T03:44:22.483588-07:00,992.1231079101562,10.814844,10814.844 +32835,2025-03-11T03:44:33.298057-07:00,992.1109619140625,10.814469,10814.469 +32836,2025-03-11T03:44:44.112238-07:00,992.1099853515625,10.814181,10814.181 +32837,2025-03-11T03:44:54.921581-07:00,992.1165771484375,10.809343,10809.343 +32838,2025-03-11T03:45:05.741649-07:00,992.135009765625,10.820068,10820.068 +32839,2025-03-11T03:45:16.550041-07:00,992.1151733398438,10.808392,10808.392 +32840,2025-03-11T03:45:27.370874-07:00,992.1009521484375,10.820833,10820.833 +32841,2025-03-11T03:45:38.174976-07:00,992.1481323242188,10.804102,10804.102 +32842,2025-03-11T03:45:48.989823-07:00,992.1141357421875,10.814847,10814.847 +32843,2025-03-11T03:45:59.797734-07:00,992.1165771484375,10.807911,10807.911 +32844,2025-03-11T03:46:10.614600-07:00,992.0999145507812,10.816866,10816.866 +32845,2025-03-11T03:46:21.429791-07:00,992.126220703125,10.815191,10815.191 +32846,2025-03-11T03:46:32.236766-07:00,992.1196899414062,10.806975,10806.975 +32847,2025-03-11T03:46:43.050735-07:00,992.0933837890625,10.813969,10813.969 +32848,2025-03-11T03:46:53.872906-07:00,992.126220703125,10.822171,10822.171 +32849,2025-03-11T03:47:04.683576-07:00,992.1116943359375,10.81067,10810.67 +32850,2025-03-11T03:47:15.504878-07:00,992.1183471679688,10.821302,10821.302 +32851,2025-03-11T03:47:26.319048-07:00,992.1107177734375,10.81417,10814.17 +32852,2025-03-11T03:47:37.130632-07:00,992.1447143554688,10.811584,10811.584 +32853,2025-03-11T03:47:47.945597-07:00,992.1381225585938,10.814965,10814.965 +32854,2025-03-11T03:47:58.753195-07:00,992.129150390625,10.807598,10807.598 +32855,2025-03-11T03:48:09.573180-07:00,992.1356811523438,10.819985,10819.985 +32856,2025-03-11T03:48:20.388636-07:00,992.1685791015625,10.815456,10815.456 +32857,2025-03-11T03:48:31.209737-07:00,992.1201782226562,10.821101,10821.101 +32858,2025-03-11T03:48:42.023875-07:00,992.1149291992188,10.814138,10814.138 +32859,2025-03-11T03:48:52.842037-07:00,992.1347045898438,10.818162,10818.162 +32860,2025-03-11T03:49:03.654588-07:00,992.125732421875,10.812551,10812.551 +32861,2025-03-11T03:49:14.465593-07:00,992.146484375,10.811005,10811.005 +32862,2025-03-11T03:49:25.280592-07:00,992.1309204101562,10.814999,10814.999 +32863,2025-03-11T03:49:36.082598-07:00,992.1572875976562,10.802006,10802.006 +32864,2025-03-11T03:49:46.895590-07:00,992.14404296875,10.812992,10812.992 +32865,2025-03-11T03:49:57.707923-07:00,992.1375122070312,10.812333,10812.333 +32866,2025-03-11T03:50:08.518949-07:00,992.138916015625,10.811026,10811.026 +32867,2025-03-11T03:50:19.333902-07:00,992.1101684570312,10.814953,10814.953 +32868,2025-03-11T03:50:30.146592-07:00,992.1298217773438,10.81269,10812.69 +32869,2025-03-11T03:50:40.963114-07:00,992.1309204101562,10.816522,10816.522 +32870,2025-03-11T03:50:51.765641-07:00,992.1351318359375,10.802527,10802.527 +32871,2025-03-11T03:51:02.584385-07:00,992.1506958007812,10.818744,10818.744 +32872,2025-03-11T03:51:13.401587-07:00,992.1482543945312,10.817202,10817.202 +32873,2025-03-11T03:51:24.209838-07:00,992.1472778320312,10.808251,10808.251 +32874,2025-03-11T03:51:35.022671-07:00,992.1286010742188,10.812833,10812.833 +32875,2025-03-11T03:51:45.840278-07:00,992.1693725585938,10.817607,10817.607 +32876,2025-03-11T03:51:56.653875-07:00,992.140625,10.813597,10813.597 +32877,2025-03-11T03:52:07.461592-07:00,992.134033203125,10.807717,10807.717 +32878,2025-03-11T03:52:18.271820-07:00,992.1351318359375,10.810228,10810.228 +32879,2025-03-11T03:52:29.092590-07:00,992.139404296875,10.82077,10820.77 +32880,2025-03-11T03:52:39.901640-07:00,992.1590576171875,10.80905,10809.05 +32881,2025-03-11T03:52:50.717179-07:00,992.1448364257812,10.815539,10815.539 +32882,2025-03-11T03:53:01.525650-07:00,992.1646118164062,10.808471,10808.471 +32883,2025-03-11T03:53:12.339588-07:00,992.150146484375,10.813938,10813.938 +32884,2025-03-11T03:53:23.142591-07:00,992.150146484375,10.803003,10803.003 +32885,2025-03-11T03:53:33.961158-07:00,992.1632690429688,10.818567,10818.567 +32886,2025-03-11T03:53:44.775674-07:00,992.1698608398438,10.814516,10814.516 +32887,2025-03-11T03:53:55.587937-07:00,992.123779296875,10.812263,10812.263 +32888,2025-03-11T03:54:06.392994-07:00,992.15673828125,10.805057,10805.057 +32889,2025-03-11T03:54:17.202575-07:00,992.1359252929688,10.809581,10809.581 +32890,2025-03-11T03:54:28.025959-07:00,992.136962890625,10.823384,10823.384 +32891,2025-03-11T03:54:38.832846-07:00,992.123779296875,10.806887,10806.887 +32892,2025-03-11T03:54:49.649186-07:00,992.1213989257812,10.81634,10816.34 +32893,2025-03-11T03:55:00.457735-07:00,992.1556396484375,10.808549,10808.549 +32894,2025-03-11T03:55:11.266805-07:00,992.1556396484375,10.80907,10809.07 +32895,2025-03-11T03:55:22.080593-07:00,992.1268920898438,10.813788,10813.788 +32896,2025-03-11T03:55:32.900731-07:00,992.0940551757812,10.820138,10820.138 +32897,2025-03-11T03:55:43.710304-07:00,992.14111328125,10.809573,10809.573 +32898,2025-03-11T03:55:54.525804-07:00,992.1279907226562,10.8155,10815.5 +32899,2025-03-11T03:56:05.349576-07:00,992.1048583984375,10.823772,10823.772 +32900,2025-03-11T03:56:16.159588-07:00,992.1124267578125,10.810012,10810.012 +32901,2025-03-11T03:56:26.979842-07:00,992.1179809570312,10.820254,10820.254 +32902,2025-03-11T03:56:37.781920-07:00,992.0982055664062,10.802078,10802.078 +32903,2025-03-11T03:56:48.597245-07:00,992.1090087890625,10.815325,10815.325 +32904,2025-03-11T03:56:59.400660-07:00,992.0906372070312,10.803415,10803.415 +32905,2025-03-11T03:57:10.216865-07:00,992.103759765625,10.816205,10816.205 +32906,2025-03-11T03:57:21.032594-07:00,992.0892333984375,10.815729,10815.729 +32907,2025-03-11T03:57:31.842588-07:00,992.0736694335938,10.809994,10809.994 +32908,2025-03-11T03:57:42.654010-07:00,992.0604858398438,10.811422,10811.422 +32909,2025-03-11T03:57:53.475837-07:00,992.0563354492188,10.821827,10821.827 +32910,2025-03-11T03:58:04.288588-07:00,992.0684204101562,10.812751,10812.751 +32911,2025-03-11T03:58:15.103984-07:00,992.0431518554688,10.815396,10815.396 +32912,2025-03-11T03:58:25.913741-07:00,992.0604858398438,10.809757,10809.757 +32913,2025-03-11T03:58:36.734631-07:00,992.0331420898438,10.82089,10820.89 +32914,2025-03-11T03:58:47.540715-07:00,992.0162353515625,10.806084,10806.084 +32915,2025-03-11T03:58:58.359130-07:00,992.0097045898438,10.818415,10818.415 +32916,2025-03-11T03:59:09.175592-07:00,992.0162353515625,10.816462,10816.462 +32917,2025-03-11T03:59:19.986093-07:00,992.0020141601562,10.810501,10810.501 +32918,2025-03-11T03:59:30.805829-07:00,991.9874877929688,10.819736,10819.736 +32919,2025-03-11T03:59:41.619651-07:00,992.0086059570312,10.813822,10813.822 +32920,2025-03-11T03:59:52.434582-07:00,992.0086059570312,10.814931,10814.931 +32921,2025-03-11T04:00:03.238603-07:00,991.971923828125,10.804021,10804.021 +32922,2025-03-11T04:00:14.058898-07:00,991.9930419921875,10.820295,10820.295 +32923,2025-03-11T04:00:24.874600-07:00,991.9865112304688,10.815702,10815.702 +32924,2025-03-11T04:00:35.682737-07:00,991.9785766601562,10.808137,10808.137 +32925,2025-03-11T04:00:46.498758-07:00,991.9653930664062,10.816021,10816.021 +32926,2025-03-11T04:00:57.317296-07:00,991.9798583984375,10.818538,10818.538 +32927,2025-03-11T04:01:08.126180-07:00,991.9259643554688,10.808884,10808.884 +32928,2025-03-11T04:01:18.930977-07:00,991.9117431640625,10.804797,10804.797 +32929,2025-03-11T04:01:29.744590-07:00,991.8961181640625,10.813613,10813.613 +32930,2025-03-11T04:01:40.548777-07:00,991.897216796875,10.804187,10804.187 +32931,2025-03-11T04:01:51.362840-07:00,991.8919677734375,10.814063,10814.063 +32932,2025-03-11T04:02:02.178869-07:00,991.8764038085938,10.816029,10816.029 +32933,2025-03-11T04:02:12.999069-07:00,991.87744140625,10.8202,10820.2 +32934,2025-03-11T04:02:23.807671-07:00,991.8566284179688,10.808602,10808.602 +32935,2025-03-11T04:02:34.627571-07:00,991.86328125,10.8199,10819.9 +32936,2025-03-11T04:02:45.438596-07:00,991.8379516601562,10.811025,10811.025 +32937,2025-03-11T04:02:56.250041-07:00,991.8379516601562,10.811445,10811.445 +32938,2025-03-11T04:03:07.071970-07:00,991.8115844726562,10.821929,10821.929 +32939,2025-03-11T04:03:17.879609-07:00,991.8181762695312,10.807639,10807.639 +32940,2025-03-11T04:03:28.693595-07:00,991.803955078125,10.813986,10813.986 +32941,2025-03-11T04:03:39.512637-07:00,991.8106079101562,10.819042,10819.042 +32942,2025-03-11T04:03:50.329959-07:00,991.82373046875,10.817322,10817.322 +32943,2025-03-11T04:04:01.135038-07:00,991.8314208984375,10.805079,10805.079 +32944,2025-03-11T04:04:11.953600-07:00,991.7697143554688,10.818562,10818.562 +32945,2025-03-11T04:04:22.766586-07:00,991.8115844726562,10.812986,10812.986 +32946,2025-03-11T04:04:33.575641-07:00,991.8247680664062,10.809055,10809.055 +32947,2025-03-11T04:04:44.392088-07:00,991.8049926757812,10.816447,10816.447 +32948,2025-03-11T04:04:55.200360-07:00,991.8049926757812,10.808272,10808.272 +32949,2025-03-11T04:05:06.012657-07:00,991.8181762695312,10.812297,10812.297 +32950,2025-03-11T04:05:16.827659-07:00,991.803955078125,10.815002,10815.002 +32951,2025-03-11T04:05:27.637831-07:00,991.7828979492188,10.810172,10810.172 +32952,2025-03-11T04:05:38.461908-07:00,991.790771484375,10.824077,10824.077 +32953,2025-03-11T04:05:49.335240-07:00,991.8106079101562,10.873332,10873.332 +32954,2025-03-11T04:06:00.146645-07:00,991.8247680664062,10.811405,10811.405 +32955,2025-03-11T04:06:10.964689-07:00,991.7984619140625,10.818044,10818.044 +32956,2025-03-11T04:06:21.784033-07:00,991.8115844726562,10.819344,10819.344 +32957,2025-03-11T04:06:32.597780-07:00,991.8049926757812,10.813747,10813.747 +32958,2025-03-11T04:06:43.402643-07:00,991.8195190429688,10.804863,10804.863 +32959,2025-03-11T04:06:54.218028-07:00,991.81298828125,10.815385,10815.385 +32960,2025-03-11T04:07:05.031623-07:00,991.8074340820312,10.813595,10813.595 +32961,2025-03-11T04:07:15.845643-07:00,991.8195190429688,10.81402,10814.02 +32962,2025-03-11T04:07:26.660947-07:00,991.7876586914062,10.815304,10815.304 +32963,2025-03-11T04:07:37.481867-07:00,991.8110961914062,10.82092,10820.92 +32964,2025-03-11T04:07:48.295852-07:00,991.822998046875,10.813985,10813.985 +32965,2025-03-11T04:07:59.105904-07:00,991.822998046875,10.810052,10810.052 +32966,2025-03-11T04:08:09.931288-07:00,991.7924194335938,10.825384,10825.384 +32967,2025-03-11T04:08:20.734756-07:00,991.8056030273438,10.803468,10803.468 +32968,2025-03-11T04:08:31.548646-07:00,991.8211059570312,10.81389,10813.89 +32969,2025-03-11T04:08:42.361941-07:00,991.8093872070312,10.813295,10813.295 +32970,2025-03-11T04:08:53.179275-07:00,991.8314819335938,10.817334,10817.334 +32971,2025-03-11T04:09:03.994059-07:00,991.8601684570312,10.814784,10814.784 +32972,2025-03-11T04:09:14.802641-07:00,991.8414916992188,10.808582,10808.582 +32973,2025-03-11T04:09:25.622629-07:00,991.8109130859375,10.819988,10819.988 +32974,2025-03-11T04:09:36.443335-07:00,991.8635864257812,10.820706,10820.706 +32975,2025-03-11T04:09:47.257008-07:00,991.8331298828125,10.813673,10813.673 +32976,2025-03-11T04:09:58.084649-07:00,991.8406982421875,10.827641,10827.641 +32977,2025-03-11T04:10:08.894632-07:00,991.842041015625,10.809983,10809.983 +32978,2025-03-11T04:10:19.706774-07:00,991.8340454101562,10.812142,10812.142 +32979,2025-03-11T04:10:30.526313-07:00,991.83544921875,10.819539,10819.539 +32980,2025-03-11T04:10:41.331707-07:00,991.871826171875,10.805394,10805.394 +32981,2025-03-11T04:10:52.145639-07:00,991.8576049804688,10.813932,10813.932 +32982,2025-03-11T04:11:02.954743-07:00,991.8585815429688,10.809104,10809.104 +32983,2025-03-11T04:11:13.769759-07:00,991.8665771484375,10.815016,10815.016 +32984,2025-03-11T04:11:24.583241-07:00,991.8543701171875,10.813482,10813.482 +32985,2025-03-11T04:11:35.400624-07:00,991.868896484375,10.817383,10817.383 +32986,2025-03-11T04:11:46.218636-07:00,991.858154296875,10.818012,10818.012 +32987,2025-03-11T04:11:57.031635-07:00,991.8538818359375,10.812999,10812.999 +32988,2025-03-11T04:12:07.844082-07:00,991.8803100585938,10.812447,10812.447 +32989,2025-03-11T04:12:18.662013-07:00,991.8958740234375,10.817931,10817.931 +32990,2025-03-11T04:12:29.470185-07:00,991.8837280273438,10.808172,10808.172 +32991,2025-03-11T04:12:40.290891-07:00,991.9099731445312,10.820706,10820.706 +32992,2025-03-11T04:12:51.098632-07:00,991.8992309570312,10.807741,10807.741 +32993,2025-03-11T04:13:01.907679-07:00,991.8992309570312,10.809047,10809.047 +32994,2025-03-11T04:13:12.725118-07:00,991.88720703125,10.817439,10817.439 +32995,2025-03-11T04:13:23.537911-07:00,991.9148559570312,10.812793,10812.793 +32996,2025-03-11T04:13:34.346106-07:00,991.8861083984375,10.808195,10808.195 +32997,2025-03-11T04:13:45.154795-07:00,991.9224243164062,10.808689,10808.689 +32998,2025-03-11T04:13:55.966761-07:00,991.8961181640625,10.811966,10811.966 +32999,2025-03-11T04:14:06.775629-07:00,991.9158325195312,10.808868,10808.868 +33000,2025-03-11T04:14:17.589346-07:00,991.9501342773438,10.813717,10813.717 +33001,2025-03-11T04:14:28.409028-07:00,991.9237670898438,10.819682,10819.682 +33002,2025-03-11T04:14:39.211626-07:00,991.9525146484375,10.802598,10802.598 +33003,2025-03-11T04:14:50.032492-07:00,991.9534912109375,10.820866,10820.866 +33004,2025-03-11T04:15:00.832160-07:00,991.9559326171875,10.799668,10799.668 +33005,2025-03-11T04:15:11.651217-07:00,991.9098510742188,10.819057,10819.057 +33006,2025-03-11T04:15:22.453945-07:00,991.930908203125,10.802728,10802.728 +33007,2025-03-11T04:15:33.275171-07:00,991.9187622070312,10.821226,10821.226 +33008,2025-03-11T04:15:44.077964-07:00,991.921142578125,10.802793,10802.793 +33009,2025-03-11T04:15:54.888710-07:00,991.9489135742188,10.810746,10810.746 +33010,2025-03-11T04:16:05.707640-07:00,991.9554443359375,10.81893,10818.93 +33011,2025-03-11T04:16:16.527667-07:00,991.911376953125,10.820027,10820.027 +33012,2025-03-11T04:16:27.333978-07:00,991.9390869140625,10.806311,10806.311 +33013,2025-03-11T04:16:38.151019-07:00,991.9612426757812,10.817041,10817.041 +33014,2025-03-11T04:16:48.961268-07:00,991.9547119140625,10.810249,10810.249 +33015,2025-03-11T04:16:59.774827-07:00,991.963623046875,10.813559,10813.559 +33016,2025-03-11T04:17:10.583888-07:00,991.9382934570312,10.809061,10809.061 +33017,2025-03-11T04:17:21.393412-07:00,991.9317016601562,10.809524,10809.524 +33018,2025-03-11T04:17:32.201932-07:00,991.96044921875,10.80852,10808.52 +33019,2025-03-11T04:17:43.010907-07:00,991.93408203125,10.808975,10808.975 +33020,2025-03-11T04:17:53.826634-07:00,991.9443969726562,10.815727,10815.727 +33021,2025-03-11T04:18:04.633875-07:00,991.9718017578125,10.807241,10807.241 +33022,2025-03-11T04:18:15.435638-07:00,991.9600219726562,10.801763,10801.763 +33023,2025-03-11T04:18:26.242302-07:00,992.0018920898438,10.806664,10806.664 +33024,2025-03-11T04:18:37.054624-07:00,991.9754638671875,10.812322,10812.322 +33025,2025-03-11T04:18:47.861621-07:00,991.95703125,10.806997,10806.997 +33026,2025-03-11T04:18:58.676960-07:00,992.0,10.815339,10815.339 +33027,2025-03-11T04:19:09.482519-07:00,992.0145263671875,10.805559,10805.559 +33028,2025-03-11T04:19:20.287176-07:00,992.0037231445312,10.804657,10804.657 +33029,2025-03-11T04:19:31.105954-07:00,991.9642333984375,10.818778,10818.778 +33030,2025-03-11T04:19:41.910637-07:00,991.979736328125,10.804683,10804.683 +33031,2025-03-11T04:19:52.724637-07:00,991.966552734375,10.814,10814.0 +33032,2025-03-11T04:20:03.537814-07:00,991.98974609375,10.813177,10813.177 +33033,2025-03-11T04:20:14.352695-07:00,992.0150756835938,10.814881,10814.881 +33034,2025-03-11T04:20:25.167709-07:00,991.9976806640625,10.815014,10815.014 +33035,2025-03-11T04:20:35.977045-07:00,991.9605712890625,10.809336,10809.336 +33036,2025-03-11T04:20:46.795637-07:00,991.9737548828125,10.818592,10818.592 +33037,2025-03-11T04:20:57.606123-07:00,992.009033203125,10.810486,10810.486 +33038,2025-03-11T04:21:08.419501-07:00,992.010009765625,10.813378,10813.378 +33039,2025-03-11T04:21:19.231090-07:00,991.9992065429688,10.811589,10811.589 +33040,2025-03-11T04:21:30.050245-07:00,992.0137329101562,10.819155,10819.155 +33041,2025-03-11T04:21:40.858881-07:00,992.0081787109375,10.808636,10808.636 +33042,2025-03-11T04:21:51.678642-07:00,992.0072021484375,10.819761,10819.761 +33043,2025-03-11T04:22:02.494925-07:00,992.0223999023438,10.816283,10816.283 +33044,2025-03-11T04:22:13.309186-07:00,992.0379638671875,10.814261,10814.261 +33045,2025-03-11T04:22:24.121287-07:00,992.039306640625,10.812101,10812.101 +33046,2025-03-11T04:22:34.937959-07:00,992.0271606445312,10.816672,10816.672 +33047,2025-03-11T04:22:45.746202-07:00,992.0360717773438,10.808243,10808.243 +33048,2025-03-11T04:22:56.566943-07:00,992.003173828125,10.820741,10820.741 +33049,2025-03-11T04:23:07.377082-07:00,991.9847412109375,10.810139,10810.139 +33050,2025-03-11T04:23:18.179876-07:00,991.9979858398438,10.802794,10802.794 +33051,2025-03-11T04:23:28.998636-07:00,992.0092163085938,10.81876,10818.76 +33052,2025-03-11T04:23:39.803641-07:00,991.9947509765625,10.805005,10805.005 +33053,2025-03-11T04:23:50.625296-07:00,991.9707641601562,10.821655,10821.655 +33054,2025-03-11T04:24:01.426043-07:00,991.94580078125,10.800747,10800.747 +33055,2025-03-11T04:24:12.236152-07:00,991.97314453125,10.810109,10810.109 +33056,2025-03-11T04:24:23.051642-07:00,991.9745483398438,10.81549,10815.49 +33057,2025-03-11T04:24:33.867958-07:00,991.9765625,10.816316,10816.316 +33058,2025-03-11T04:24:44.675640-07:00,991.9238891601562,10.807682,10807.682 +33059,2025-03-11T04:24:55.494212-07:00,991.9393920898438,10.818572,10818.572 +33060,2025-03-11T04:25:06.304192-07:00,991.9393920898438,10.80998,10809.98 +33061,2025-03-11T04:25:17.116852-07:00,991.9615478515625,10.81266,10812.66 +33062,2025-03-11T04:25:27.920913-07:00,991.969482421875,10.804061,10804.061 +33063,2025-03-11T04:25:38.740694-07:00,991.9508056640625,10.819781,10819.781 +33064,2025-03-11T04:25:49.555758-07:00,991.959716796875,10.815064,10815.064 +33065,2025-03-11T04:26:00.369984-07:00,991.959716796875,10.814226,10814.226 +33066,2025-03-11T04:26:11.178289-07:00,991.9884643554688,10.808305,10808.305 +33067,2025-03-11T04:26:21.995889-07:00,991.983154296875,10.8176,10817.6 +33068,2025-03-11T04:26:32.810641-07:00,991.959228515625,10.814752,10814.752 +33069,2025-03-11T04:26:43.616770-07:00,991.9550170898438,10.806129,10806.129 +33070,2025-03-11T04:26:54.437986-07:00,991.9757690429688,10.821216,10821.216 +33071,2025-03-11T04:27:05.253620-07:00,991.9968872070312,10.815634,10815.634 +33072,2025-03-11T04:27:16.076764-07:00,992.0054931640625,10.823144,10823.144 +33073,2025-03-11T04:27:26.895171-07:00,992.002685546875,10.818407,10818.407 +33074,2025-03-11T04:27:37.710969-07:00,991.98388671875,10.815798,10815.798 +33075,2025-03-11T04:27:48.515873-07:00,991.9796752929688,10.804904,10804.904 +33076,2025-03-11T04:27:59.339904-07:00,991.9456176757812,10.824031,10824.031 +33077,2025-03-11T04:28:10.155603-07:00,991.9974975585938,10.815699,10815.699 +33078,2025-03-11T04:28:20.976714-07:00,991.990966796875,10.821111,10821.111 +33079,2025-03-11T04:28:31.787641-07:00,991.9932861328125,10.810927,10810.927 +33080,2025-03-11T04:28:42.607638-07:00,991.9759521484375,10.819997,10819.997 +33081,2025-03-11T04:28:53.429026-07:00,991.977294921875,10.821388,10821.388 +33082,2025-03-11T04:29:04.248639-07:00,992.0046997070312,10.819613,10819.613 +33083,2025-03-11T04:29:15.064636-07:00,992.0046997070312,10.815997,10815.997 +33084,2025-03-11T04:29:25.884216-07:00,991.9993896484375,10.81958,10819.58 +33085,2025-03-11T04:29:36.697993-07:00,991.994873046875,10.813777,10813.777 +33086,2025-03-11T04:29:47.517631-07:00,991.9906005859375,10.819638,10819.638 +33087,2025-03-11T04:29:58.338845-07:00,991.991943359375,10.821214,10821.214 +33088,2025-03-11T04:30:09.154196-07:00,992.0128173828125,10.815351,10815.351 +33089,2025-03-11T04:30:19.965624-07:00,992.0362548828125,10.811428,10811.428 +33090,2025-03-11T04:30:30.792636-07:00,991.9910888671875,10.827012,10827.012 +33091,2025-03-11T04:30:41.607507-07:00,991.9802856445312,10.814871,10814.871 +33092,2025-03-11T04:30:52.424712-07:00,991.98828125,10.817205,10817.205 +33093,2025-03-11T04:31:03.248639-07:00,992.0025024414062,10.823927,10823.927 +33094,2025-03-11T04:31:14.064622-07:00,991.9863891601562,10.815983,10815.983 +33095,2025-03-11T04:31:24.877960-07:00,991.983154296875,10.813338,10813.338 +33096,2025-03-11T04:31:35.694645-07:00,992.009521484375,10.816685,10816.685 +33097,2025-03-11T04:31:46.512627-07:00,991.996337890625,10.817982,10817.982 +33098,2025-03-11T04:31:57.322993-07:00,991.9854736328125,10.810366,10810.366 +33099,2025-03-11T04:32:08.132836-07:00,991.998779296875,10.809843,10809.843 +33100,2025-03-11T04:32:18.952632-07:00,991.97998046875,10.819796,10819.796 +33101,2025-03-11T04:32:29.766649-07:00,991.9723510742188,10.814017,10814.017 +33102,2025-03-11T04:32:40.576636-07:00,991.9879150390625,10.809987,10809.987 +33103,2025-03-11T04:32:51.388653-07:00,991.9823608398438,10.812017,10812.017 +33104,2025-03-11T04:33:02.210841-07:00,991.9823608398438,10.822188,10822.188 +33105,2025-03-11T04:33:13.030692-07:00,991.9945068359375,10.819851,10819.851 +33106,2025-03-11T04:33:23.837994-07:00,991.9954833984375,10.807302,10807.302 +33107,2025-03-11T04:33:34.659911-07:00,991.9968872070312,10.821917,10821.917 +33108,2025-03-11T04:33:45.472940-07:00,992.0044555664062,10.813029,10813.029 +33109,2025-03-11T04:33:56.283928-07:00,992.010009765625,10.810988,10810.988 +33110,2025-03-11T04:34:07.103639-07:00,992.0057983398438,10.819711,10819.711 +33111,2025-03-11T04:34:17.922928-07:00,991.9860229492188,10.819289,10819.289 +33112,2025-03-11T04:34:28.732976-07:00,991.9935913085938,10.810048,10810.048 +33113,2025-03-11T04:34:39.559633-07:00,991.98046875,10.826657,10826.657 +33114,2025-03-11T04:34:50.367621-07:00,992.0025634765625,10.807988,10807.988 +33115,2025-03-11T04:35:01.188643-07:00,991.9827880859375,10.821022,10821.022 +33116,2025-03-11T04:35:12.010631-07:00,992.010498046875,10.821988,10821.988 +33117,2025-03-11T04:35:22.828713-07:00,992.0115356445312,10.818082,10818.082 +33118,2025-03-11T04:35:33.648633-07:00,991.98095703125,10.81992,10819.92 +33119,2025-03-11T04:35:44.460600-07:00,991.9940795898438,10.811967,10811.967 +33120,2025-03-11T04:35:55.282856-07:00,992.0349731445312,10.822256,10822.256 +33121,2025-03-11T04:36:06.098631-07:00,992.0217895507812,10.815775,10815.775 +33122,2025-03-11T04:36:16.908972-07:00,992.0360107421875,10.810341,10810.341 +33123,2025-03-11T04:36:27.724972-07:00,992.0370483398438,10.816,10816.0 +33124,2025-03-11T04:36:38.538641-07:00,992.0304565429688,10.813669,10813.669 +33125,2025-03-11T04:36:49.350866-07:00,992.0054931640625,10.812225,10812.225 +33126,2025-03-11T04:37:00.172039-07:00,992.015380859375,10.821173,10821.173 +33127,2025-03-11T04:37:10.997709-07:00,992.014404296875,10.82567,10825.67 +33128,2025-03-11T04:37:21.819914-07:00,992.0431518554688,10.822205,10822.205 +33129,2025-03-11T04:37:32.632108-07:00,992.002197265625,10.812194,10812.194 +33130,2025-03-11T04:37:43.455994-07:00,992.0431518554688,10.823886,10823.886 +33131,2025-03-11T04:37:54.280850-07:00,992.051025390625,10.824856,10824.856 +33132,2025-03-11T04:38:05.102616-07:00,992.0523681640625,10.821766,10821.766 +33133,2025-03-11T04:38:15.925984-07:00,992.0325927734375,10.823368,10823.368 +33134,2025-03-11T04:38:26.742960-07:00,992.048095703125,10.816976,10816.976 +33135,2025-03-11T04:38:37.564479-07:00,992.0401611328125,10.821519,10821.519 +33136,2025-03-11T04:38:48.381633-07:00,992.0546875,10.817154,10817.154 +33137,2025-03-11T04:38:59.207642-07:00,992.0359497070312,10.826009,10826.009 +33138,2025-03-11T04:39:10.027216-07:00,992.0491333007812,10.819574,10819.574 +33139,2025-03-11T04:39:20.841181-07:00,992.034912109375,10.813965,10813.965 +33140,2025-03-11T04:39:31.657331-07:00,992.025146484375,10.81615,10816.15 +33141,2025-03-11T04:39:42.482845-07:00,992.0198364257812,10.825514,10825.514 +33142,2025-03-11T04:39:53.295941-07:00,991.9977416992188,10.813096,10813.096 +33143,2025-03-11T04:40:04.114759-07:00,992.0133056640625,10.818818,10818.818 +33144,2025-03-11T04:40:14.929961-07:00,991.993408203125,10.815202,10815.202 +33145,2025-03-11T04:40:25.754021-07:00,992.0184936523438,10.82406,10824.06 +33146,2025-03-11T04:40:36.573704-07:00,992.015625,10.819683,10819.683 +33147,2025-03-11T04:40:47.387639-07:00,992.0232543945312,10.813935,10813.935 +33148,2025-03-11T04:40:58.213982-07:00,991.9562377929688,10.826343,10826.343 +33149,2025-03-11T04:41:09.023326-07:00,992.0298461914062,10.809344,10809.344 +33150,2025-03-11T04:41:19.847616-07:00,992.013427734375,10.82429,10824.29 +33151,2025-03-11T04:41:30.670865-07:00,992.0213012695312,10.823249,10823.249 +33152,2025-03-11T04:41:41.489918-07:00,991.9960327148438,10.819053,10819.053 +33153,2025-03-11T04:41:52.307959-07:00,992.0062255859375,10.818041,10818.041 +33154,2025-03-11T04:42:03.123880-07:00,992.0270385742188,10.815921,10815.921 +33155,2025-03-11T04:42:13.951196-07:00,992.0270385742188,10.827316,10827.316 +33156,2025-03-11T04:42:24.768633-07:00,992.0152587890625,10.817437,10817.437 +33157,2025-03-11T04:42:35.585641-07:00,992.0360107421875,10.817008,10817.008 +33158,2025-03-11T04:42:46.401622-07:00,992.0438842773438,10.815981,10815.981 +33159,2025-03-11T04:42:57.214805-07:00,992.03076171875,10.813183,10813.183 +33160,2025-03-11T04:43:08.037637-07:00,992.0396728515625,10.822832,10822.832 +33161,2025-03-11T04:43:18.846835-07:00,992.0396728515625,10.809198,10809.198 +33162,2025-03-11T04:43:29.676692-07:00,992.0317993164062,10.829857,10829.857 +33163,2025-03-11T04:43:40.486644-07:00,992.0198974609375,10.809952,10809.952 +33164,2025-03-11T04:43:51.309300-07:00,992.0198974609375,10.822656,10822.656 +33165,2025-03-11T04:44:02.132048-07:00,992.0222778320312,10.822748,10822.748 +33166,2025-03-11T04:44:12.943843-07:00,992.0289306640625,10.811795,10811.795 +33167,2025-03-11T04:44:23.760027-07:00,992.03125,10.816184,10816.184 +33168,2025-03-11T04:44:34.574622-07:00,992.038818359375,10.814595,10814.595 +33169,2025-03-11T04:44:45.390919-07:00,992.025634765625,10.816297,10816.297 +33170,2025-03-11T04:44:56.209919-07:00,992.0411987304688,10.819,10819.0 +33171,2025-03-11T04:45:07.029710-07:00,992.0267333984375,10.819791,10819.791 +33172,2025-03-11T04:45:17.844616-07:00,992.0003051757812,10.814906,10814.906 +33173,2025-03-11T04:45:28.668644-07:00,992.0158081054688,10.824028,10824.028 +33174,2025-03-11T04:45:39.491643-07:00,991.99609375,10.822999,10822.999 +33175,2025-03-11T04:45:50.312488-07:00,992.0223999023438,10.820845,10820.845 +33176,2025-03-11T04:46:01.125907-07:00,992.0303344726562,10.813419,10813.419 +33177,2025-03-11T04:46:11.947651-07:00,992.00732421875,10.821744,10821.744 +33178,2025-03-11T04:46:22.760644-07:00,992.0205688476562,10.812993,10812.993 +33179,2025-03-11T04:46:33.588645-07:00,992.03076171875,10.828001,10828.001 +33180,2025-03-11T04:46:44.403818-07:00,992.0242309570312,10.815173,10815.173 +33181,2025-03-11T04:46:55.221628-07:00,992.0186157226562,10.81781,10817.81 +33182,2025-03-11T04:47:06.051641-07:00,991.9922485351562,10.830013,10830.013 +33183,2025-03-11T04:47:16.875636-07:00,992.0384521484375,10.823995,10823.995 +33184,2025-03-11T04:47:27.696434-07:00,992.0331420898438,10.820798,10820.798 +33185,2025-03-11T04:47:38.511899-07:00,992.0001831054688,10.815465,10815.465 +33186,2025-03-11T04:47:49.339390-07:00,992.0252075195312,10.827491,10827.491 +33187,2025-03-11T04:48:00.155718-07:00,992.0223388671875,10.816328,10816.328 +33188,2025-03-11T04:48:10.978047-07:00,992.0289306640625,10.822329,10822.329 +33189,2025-03-11T04:48:21.796617-07:00,992.0289306640625,10.81857,10818.57 +33190,2025-03-11T04:48:32.617410-07:00,992.0421142578125,10.820793,10820.793 +33191,2025-03-11T04:48:43.421820-07:00,992.0496826171875,10.80441,10804.41 +33192,2025-03-11T04:48:54.241645-07:00,992.0289306640625,10.819825,10819.825 +33193,2025-03-11T04:49:05.062615-07:00,992.0001831054688,10.82097,10820.97 +33194,2025-03-11T04:49:15.887817-07:00,992.0025024414062,10.825202,10825.202 +33195,2025-03-11T04:49:26.713766-07:00,992.0025024414062,10.825949,10825.949 +33196,2025-03-11T04:49:37.528628-07:00,992.037841796875,10.814862,10814.862 +33197,2025-03-11T04:49:48.347940-07:00,991.998291015625,10.819312,10819.312 +33198,2025-03-11T04:49:59.173631-07:00,992.024658203125,10.825691,10825.691 +33199,2025-03-11T04:50:10.003964-07:00,992.0181274414062,10.830333,10830.333 +33200,2025-03-11T04:50:20.823639-07:00,991.998291015625,10.819675,10819.675 +33201,2025-03-11T04:50:31.641635-07:00,992.0181274414062,10.817996,10817.996 +33202,2025-03-11T04:50:42.461906-07:00,991.9940795898438,10.820271,10820.271 +33203,2025-03-11T04:50:53.290784-07:00,992.0059204101562,10.828878,10828.878 +33204,2025-03-11T04:51:04.109636-07:00,991.99267578125,10.818852,10818.852 +33205,2025-03-11T04:51:14.939018-07:00,991.9940795898438,10.829382,10829.382 +33206,2025-03-11T04:51:25.755182-07:00,991.9742431640625,10.816164,10816.164 +33207,2025-03-11T04:51:36.572834-07:00,991.9874267578125,10.817652,10817.652 +33208,2025-03-11T04:51:47.400988-07:00,991.9818725585938,10.828154,10828.154 +33209,2025-03-11T04:51:58.213782-07:00,991.9940795898438,10.812794,10812.794 +33210,2025-03-11T04:52:09.030634-07:00,992.002685546875,10.816852,10816.852 +33211,2025-03-11T04:52:19.855982-07:00,991.989501953125,10.825348,10825.348 +33212,2025-03-11T04:52:30.676634-07:00,991.9949951171875,10.820652,10820.652 +33213,2025-03-11T04:52:41.495875-07:00,991.9686889648438,10.819241,10819.241 +33214,2025-03-11T04:52:52.312310-07:00,992.0039672851562,10.816435,10816.435 +33215,2025-03-11T04:53:03.131635-07:00,992.0106201171875,10.819325,10819.325 +33216,2025-03-11T04:53:13.952874-07:00,991.96435546875,10.821239,10821.239 +33217,2025-03-11T04:53:24.773168-07:00,991.9931030273438,10.820294,10820.294 +33218,2025-03-11T04:53:35.584965-07:00,991.9512329101562,10.811797,10811.797 +33219,2025-03-11T04:53:46.410353-07:00,991.9852294921875,10.825388,10825.388 +33220,2025-03-11T04:53:57.228321-07:00,991.9589233398438,10.817968,10817.968 +33221,2025-03-11T04:54:08.053631-07:00,991.9601440429688,10.82531,10825.31 +33222,2025-03-11T04:54:18.873621-07:00,991.973388671875,10.81999,10819.99 +33223,2025-03-11T04:54:29.699061-07:00,991.96435546875,10.82544,10825.44 +33224,2025-03-11T04:54:40.531075-07:00,991.98095703125,10.832014,10832.014 +33225,2025-03-11T04:54:51.350940-07:00,991.9954833984375,10.819865,10819.865 +33226,2025-03-11T04:55:02.169010-07:00,991.9612426757812,10.81807,10818.07 +33227,2025-03-11T04:55:12.989825-07:00,991.9823608398438,10.820815,10820.815 +33228,2025-03-11T04:55:23.811818-07:00,991.9823608398438,10.821993,10821.993 +33229,2025-03-11T04:55:34.639917-07:00,991.9701538085938,10.828099,10828.099 +33230,2025-03-11T04:55:45.458637-07:00,991.9724731445312,10.81872,10818.72 +33231,2025-03-11T04:55:56.280645-07:00,991.96484375,10.822008,10822.008 +33232,2025-03-11T04:56:07.094691-07:00,991.97802734375,10.814046,10814.046 +33233,2025-03-11T04:56:17.926967-07:00,991.9790649414062,10.832276,10832.276 +33234,2025-03-11T04:56:28.750638-07:00,991.9738159179688,10.823671,10823.671 +33235,2025-03-11T04:56:39.571648-07:00,991.987060546875,10.82101,10821.01 +33236,2025-03-11T04:56:50.393940-07:00,992.0001831054688,10.822292,10822.292 +33237,2025-03-11T04:57:01.219776-07:00,991.9738159179688,10.825836,10825.836 +33238,2025-03-11T04:57:12.030636-07:00,991.9893798828125,10.81086,10810.86 +33239,2025-03-11T04:57:22.856089-07:00,991.9695434570312,10.825453,10825.453 +33240,2025-03-11T04:57:33.675858-07:00,991.9695434570312,10.819769,10819.769 +33241,2025-03-11T04:57:44.499947-07:00,991.9837646484375,10.824089,10824.089 +33242,2025-03-11T04:57:55.315803-07:00,991.9706420898438,10.815856,10815.856 +33243,2025-03-11T04:58:06.140912-07:00,991.978515625,10.825109,10825.109 +33244,2025-03-11T04:58:16.967879-07:00,991.9902954101562,10.826967,10826.967 +33245,2025-03-11T04:58:27.786045-07:00,991.9639892578125,10.818166,10818.166 +33246,2025-03-11T04:58:38.615643-07:00,991.985107421875,10.829598,10829.598 +33247,2025-03-11T04:58:49.433001-07:00,991.9771728515625,10.817358,10817.358 +33248,2025-03-11T04:59:00.254785-07:00,991.958740234375,10.821784,10821.784 +33249,2025-03-11T04:59:11.080856-07:00,991.9718627929688,10.826071,10826.071 +33250,2025-03-11T04:59:21.893984-07:00,991.946533203125,10.813128,10813.128 +33251,2025-03-11T04:59:32.726635-07:00,991.9795532226562,10.832651,10832.651 +33252,2025-03-11T04:59:43.545995-07:00,991.9729614257812,10.81936,10819.36 +33253,2025-03-11T04:59:54.371637-07:00,991.959716796875,10.825642,10825.642 +33254,2025-03-11T05:00:05.193616-07:00,991.9795532226562,10.821979,10821.979 +33255,2025-03-11T05:00:16.015131-07:00,991.9729614257812,10.821515,10821.515 +33256,2025-03-11T05:00:26.832782-07:00,991.946533203125,10.817651,10817.651 +33257,2025-03-11T05:00:37.650759-07:00,991.9357299804688,10.817977,10817.977 +33258,2025-03-11T05:00:48.473616-07:00,991.9611206054688,10.822857,10822.857 +33259,2025-03-11T05:00:59.301633-07:00,991.975341796875,10.828017,10828.017 +33260,2025-03-11T05:01:10.115639-07:00,991.9224853515625,10.814006,10814.006 +33261,2025-03-11T05:01:20.936578-07:00,991.9423217773438,10.820939,10820.939 +33262,2025-03-11T05:01:31.749636-07:00,991.9224853515625,10.813058,10813.058 +33263,2025-03-11T05:01:42.577790-07:00,991.8905639648438,10.828154,10828.154 +33264,2025-03-11T05:01:53.392250-07:00,991.931396484375,10.81446,10814.46 +33265,2025-03-11T05:02:04.211145-07:00,991.8773193359375,10.818895,10818.895 +33266,2025-03-11T05:02:15.031965-07:00,991.88623046875,10.82082,10820.82 +33267,2025-03-11T05:02:25.858073-07:00,991.8942260742188,10.826108,10826.108 +33268,2025-03-11T05:02:36.684689-07:00,991.895263671875,10.826616,10826.616 +33269,2025-03-11T05:02:47.511960-07:00,991.8833618164062,10.827271,10827.271 +33270,2025-03-11T05:02:58.336772-07:00,991.895263671875,10.824812,10824.812 +33271,2025-03-11T05:03:09.152962-07:00,991.8490600585938,10.81619,10816.19 +33272,2025-03-11T05:03:19.981786-07:00,991.8504028320312,10.828824,10828.824 +33273,2025-03-11T05:03:30.809631-07:00,991.876708984375,10.827845,10827.845 +33274,2025-03-11T05:03:41.628252-07:00,991.8909301757812,10.818621,10818.621 +33275,2025-03-11T05:03:52.458837-07:00,991.876708984375,10.830585,10830.585 +33276,2025-03-11T05:04:03.279128-07:00,991.8570556640625,10.820291,10820.291 +33277,2025-03-11T05:04:14.105986-07:00,991.8504028320312,10.826858,10826.858 +33278,2025-03-11T05:04:24.930688-07:00,991.837158203125,10.824702,10824.702 +33279,2025-03-11T05:04:35.751910-07:00,991.8504028320312,10.821222,10821.222 +33280,2025-03-11T05:04:46.572664-07:00,991.8250122070312,10.820754,10820.754 +33281,2025-03-11T05:04:57.397638-07:00,991.8381958007812,10.824974,10824.974 +33282,2025-03-11T05:05:08.214962-07:00,991.8646240234375,10.817324,10817.324 +33283,2025-03-11T05:05:19.030613-07:00,991.880126953125,10.815651,10815.651 +33284,2025-03-11T05:05:29.848863-07:00,991.892333984375,10.81825,10818.25 +33285,2025-03-11T05:05:40.671740-07:00,991.8880615234375,10.822877,10822.877 +33286,2025-03-11T05:05:51.483033-07:00,991.88671875,10.811293,10811.293 +33287,2025-03-11T05:06:02.311126-07:00,991.893310546875,10.828093,10828.093 +33288,2025-03-11T05:06:13.123978-07:00,991.8460693359375,10.812852,10812.852 +33289,2025-03-11T05:06:23.951638-07:00,991.8286743164062,10.82766,10827.66 +33290,2025-03-11T05:06:34.770897-07:00,991.864013671875,10.819259,10819.259 +33291,2025-03-11T05:06:45.593960-07:00,991.8626708984375,10.823063,10823.063 +33292,2025-03-11T05:06:56.418771-07:00,991.87158203125,10.824811,10824.811 +33293,2025-03-11T05:07:07.272501-07:00,991.877197265625,10.85373,10853.73 +33294,2025-03-11T05:07:18.101400-07:00,991.8758544921875,10.828899,10828.899 +33295,2025-03-11T05:07:28.915605-07:00,991.8465576171875,10.814205,10814.205 +33296,2025-03-11T05:07:39.737880-07:00,991.8596801757812,10.822275,10822.275 +33297,2025-03-11T05:07:50.559594-07:00,991.864990234375,10.821714,10821.714 +33298,2025-03-11T05:08:01.376365-07:00,991.8729858398438,10.816771,10816.771 +33299,2025-03-11T05:08:12.212811-07:00,991.8663330078125,10.836446,10836.446 +33300,2025-03-11T05:08:23.035593-07:00,991.86865234375,10.822782,10822.782 +33301,2025-03-11T05:08:33.854907-07:00,991.8828735351562,10.819314,10819.314 +33302,2025-03-11T05:08:44.680927-07:00,991.876220703125,10.82602,10826.02 +33303,2025-03-11T05:08:55.495417-07:00,991.877685546875,10.81449,10814.49 +33304,2025-03-11T05:09:06.319661-07:00,991.8961181640625,10.824244,10824.244 +33305,2025-03-11T05:09:17.146608-07:00,991.862060546875,10.826947,10826.947 +33306,2025-03-11T05:09:27.966608-07:00,991.876220703125,10.82,10820.0 +33307,2025-03-11T05:09:38.798674-07:00,991.8577880859375,10.832066,10832.066 +33308,2025-03-11T05:09:49.618574-07:00,991.865478515625,10.8199,10819.9 +33309,2025-03-11T05:10:00.441105-07:00,991.8588256835938,10.822531,10822.531 +33310,2025-03-11T05:10:11.276372-07:00,991.865478515625,10.835267,10835.267 +33311,2025-03-11T05:10:22.095760-07:00,991.8951416015625,10.819388,10819.388 +33312,2025-03-11T05:10:32.923364-07:00,991.892822265625,10.827604,10827.604 +33313,2025-03-11T05:10:43.736585-07:00,991.8951416015625,10.813221,10813.221 +33314,2025-03-11T05:10:54.559817-07:00,991.9017333984375,10.823232,10823.232 +33315,2025-03-11T05:11:05.379576-07:00,991.8820190429688,10.819759,10819.759 +33316,2025-03-11T05:11:16.204670-07:00,991.8753662109375,10.825094,10825.094 +33317,2025-03-11T05:11:27.029631-07:00,991.8568725585938,10.824961,10824.961 +33318,2025-03-11T05:11:37.852590-07:00,991.88330078125,10.822959,10822.959 +33319,2025-03-11T05:11:48.682754-07:00,991.889892578125,10.830164,10830.164 +33320,2025-03-11T05:11:59.505367-07:00,991.863525390625,10.822613,10822.613 +33321,2025-03-11T05:12:10.331069-07:00,991.850341796875,10.825702,10825.702 +33322,2025-03-11T05:12:21.152372-07:00,991.8526611328125,10.821303,10821.303 +33323,2025-03-11T05:12:31.974361-07:00,991.8526611328125,10.821989,10821.989 +33324,2025-03-11T05:12:42.797557-07:00,991.851318359375,10.823196,10823.196 +33325,2025-03-11T05:12:53.623372-07:00,991.8591918945312,10.825815,10825.815 +33326,2025-03-11T05:13:04.451723-07:00,991.8734130859375,10.828351,10828.351 +33327,2025-03-11T05:13:15.268356-07:00,991.8526611328125,10.816633,10816.633 +33328,2025-03-11T05:13:26.094417-07:00,991.8757934570312,10.826061,10826.061 +33329,2025-03-11T05:13:36.923255-07:00,991.85498046875,10.828838,10828.838 +33330,2025-03-11T05:13:47.740440-07:00,991.82861328125,10.817185,10817.185 +33331,2025-03-11T05:13:58.565451-07:00,991.8484497070312,10.825011,10825.011 +33332,2025-03-11T05:14:09.381778-07:00,991.8560180664062,10.816327,10816.327 +33333,2025-03-11T05:14:20.207411-07:00,991.849365234375,10.825633,10825.633 +33334,2025-03-11T05:14:31.033703-07:00,991.8573608398438,10.826292,10826.292 +33335,2025-03-11T05:14:41.865782-07:00,991.82958984375,10.832079,10832.079 +33336,2025-03-11T05:14:52.688928-07:00,991.81640625,10.823146,10823.146 +33337,2025-03-11T05:15:03.516122-07:00,991.8253173828125,10.827194,10827.194 +33338,2025-03-11T05:15:14.333622-07:00,991.8177490234375,10.8175,10817.5 +33339,2025-03-11T05:15:25.157724-07:00,991.8187255859375,10.824102,10824.102 +33340,2025-03-11T05:15:35.985554-07:00,991.7937622070312,10.82783,10827.83 +33341,2025-03-11T05:15:46.805680-07:00,991.77392578125,10.820126,10820.126 +33342,2025-03-11T05:15:57.630368-07:00,991.7857666015625,10.824688,10824.688 +33343,2025-03-11T05:16:08.448660-07:00,991.7881469726562,10.818292,10818.292 +33344,2025-03-11T05:16:19.269660-07:00,991.7804565429688,10.821,10821.0 +33345,2025-03-11T05:16:30.091467-07:00,991.787109375,10.821807,10821.807 +33346,2025-03-11T05:16:40.922749-07:00,991.7772827148438,10.831282,10831.282 +33347,2025-03-11T05:16:51.738370-07:00,991.7720336914062,10.815621,10815.621 +33348,2025-03-11T05:17:02.563368-07:00,991.778564453125,10.824998,10824.998 +33349,2025-03-11T05:17:13.390781-07:00,991.8115844726562,10.827413,10827.413 +33350,2025-03-11T05:17:24.208420-07:00,991.8035888671875,10.817639,10817.639 +33351,2025-03-11T05:17:35.026345-07:00,991.7904663085938,10.817925,10817.925 +33352,2025-03-11T05:17:45.856717-07:00,991.7587280273438,10.830372,10830.372 +33353,2025-03-11T05:17:56.683844-07:00,991.7772827148438,10.827127,10827.127 +33354,2025-03-11T05:18:07.498542-07:00,991.7485961914062,10.814698,10814.698 +33355,2025-03-11T05:18:18.323926-07:00,991.7442016601562,10.825384,10825.384 +33356,2025-03-11T05:18:29.150367-07:00,991.7498168945312,10.826441,10826.441 +33357,2025-03-11T05:18:39.968783-07:00,991.7587280273438,10.818416,10818.416 +33358,2025-03-11T05:18:50.796375-07:00,991.7587280273438,10.827592,10827.592 +33359,2025-03-11T05:19:01.622045-07:00,991.7245483398438,10.82567,10825.67 +33360,2025-03-11T05:19:12.447368-07:00,991.753173828125,10.825323,10825.323 +33361,2025-03-11T05:19:23.272684-07:00,991.74658203125,10.825316,10825.316 +33362,2025-03-11T05:19:34.093918-07:00,991.7796020507812,10.821234,10821.234 +33363,2025-03-11T05:19:44.913599-07:00,991.7742919921875,10.819681,10819.681 +33364,2025-03-11T05:19:55.747657-07:00,991.7885131835938,10.834058,10834.058 +33365,2025-03-11T05:20:06.571514-07:00,991.7489013671875,10.823857,10823.857 +33366,2025-03-11T05:20:17.390362-07:00,991.7753295898438,10.818848,10818.848 +33367,2025-03-11T05:20:28.211752-07:00,991.7150268554688,10.82139,10821.39 +33368,2025-03-11T05:20:39.039368-07:00,991.7555541992188,10.827616,10827.616 +33369,2025-03-11T05:20:49.851339-07:00,991.7433471679688,10.811971,10811.971 +33370,2025-03-11T05:21:00.681429-07:00,991.7489013671875,10.83009,10830.09 +33371,2025-03-11T05:21:11.494375-07:00,991.7423706054688,10.812946,10812.946 +33372,2025-03-11T05:21:22.319388-07:00,991.7281494140625,10.825013,10825.013 +33373,2025-03-11T05:21:33.135362-07:00,991.7291259765625,10.815974,10815.974 +33374,2025-03-11T05:21:43.949590-07:00,991.7433471679688,10.814228,10814.228 +33375,2025-03-11T05:21:54.782139-07:00,991.7315063476562,10.832549,10832.549 +33376,2025-03-11T05:22:05.600365-07:00,991.7315063476562,10.818226,10818.226 +33377,2025-03-11T05:22:16.421669-07:00,991.6787719726562,10.821304,10821.304 +33378,2025-03-11T05:22:27.242216-07:00,991.712646484375,10.820547,10820.547 +33379,2025-03-11T05:22:38.063635-07:00,991.6787719726562,10.821419,10821.419 +33380,2025-03-11T05:22:48.887349-07:00,991.69189453125,10.823714,10823.714 +33381,2025-03-11T05:22:59.714958-07:00,991.7008056640625,10.827609,10827.609 +33382,2025-03-11T05:23:10.534362-07:00,991.6876831054688,10.819404,10819.404 +33383,2025-03-11T05:23:21.365684-07:00,991.7073974609375,10.831322,10831.322 +33384,2025-03-11T05:23:32.186378-07:00,991.7008056640625,10.820694,10820.694 +33385,2025-03-11T05:23:43.006362-07:00,991.6744384765625,10.819984,10819.984 +33386,2025-03-11T05:23:53.839373-07:00,991.6942138671875,10.833011,10833.011 +33387,2025-03-11T05:24:04.657688-07:00,991.6414184570312,10.818315,10818.315 +33388,2025-03-11T05:24:15.479181-07:00,991.6546630859375,10.821493,10821.493 +33389,2025-03-11T05:24:26.299360-07:00,991.6688842773438,10.820179,10820.179 +33390,2025-03-11T05:24:37.109463-07:00,991.6900024414062,10.810103,10810.103 +33391,2025-03-11T05:24:47.935364-07:00,991.6900024414062,10.825901,10825.901 +33392,2025-03-11T05:24:58.751670-07:00,991.683349609375,10.816306,10816.306 +33393,2025-03-11T05:25:09.572421-07:00,991.66357421875,10.820751,10820.751 +33394,2025-03-11T05:25:20.401733-07:00,991.6593017578125,10.829312,10829.312 +33395,2025-03-11T05:25:31.228371-07:00,991.6395263671875,10.826638,10826.638 +33396,2025-03-11T05:25:42.046371-07:00,991.6404418945312,10.818,10818.0 +33397,2025-03-11T05:25:52.873779-07:00,991.6448364257812,10.827408,10827.408 +33398,2025-03-11T05:26:02.282476-07:00,991.6141357421875,9.408697,9408.697 +33399,2025-03-11T05:26:03.687372-07:00,991.6339111328125,1.404896,1404.896 +33400,2025-03-11T05:26:14.504599-07:00,991.63623046875,10.817227,10817.227 +33401,2025-03-11T05:26:25.334581-07:00,991.6220092773438,10.829982,10829.982 +33402,2025-03-11T05:26:36.150373-07:00,991.6177978515625,10.815792,10815.792 +33403,2025-03-11T05:26:46.969421-07:00,991.6045532226562,10.819048,10819.048 +33404,2025-03-11T05:26:57.795738-07:00,991.6111450195312,10.826317,10826.317 +33405,2025-03-11T05:27:08.611373-07:00,991.6320190429688,10.815635,10815.635 +33406,2025-03-11T05:27:19.439076-07:00,991.6270141601562,10.827703,10827.703 +33407,2025-03-11T05:27:30.272620-07:00,991.6345825195312,10.833544,10833.544 +33408,2025-03-11T05:27:41.095366-07:00,991.6160888671875,10.822746,10822.746 +33409,2025-03-11T05:27:51.915371-07:00,991.6303100585938,10.820005,10820.005 +33410,2025-03-11T05:28:02.743371-07:00,991.6314086914062,10.828,10828.0 +33411,2025-03-11T05:28:13.567969-07:00,991.5851440429688,10.824598,10824.598 +33412,2025-03-11T05:28:24.392365-07:00,991.5851440429688,10.824396,10824.396 +33413,2025-03-11T05:28:35.213991-07:00,991.6392211914062,10.821626,10821.626 +33414,2025-03-11T05:28:46.037766-07:00,991.598388671875,10.823775,10823.775 +33415,2025-03-11T05:28:56.865356-07:00,991.6195068359375,10.82759,10827.59 +33416,2025-03-11T05:29:07.685915-07:00,991.6062622070312,10.820559,10820.559 +33417,2025-03-11T05:29:18.505570-07:00,991.598388671875,10.819655,10819.655 +33418,2025-03-11T05:29:29.330629-07:00,991.6073608398438,10.825059,10825.059 +33419,2025-03-11T05:29:40.156560-07:00,991.6138916015625,10.825931,10825.931 +33420,2025-03-11T05:29:50.984356-07:00,991.6151733398438,10.827796,10827.796 +33421,2025-03-11T05:30:01.805824-07:00,991.5809326171875,10.821468,10821.468 +33422,2025-03-11T05:30:12.625364-07:00,991.595458984375,10.81954,10819.54 +33423,2025-03-11T05:30:23.438593-07:00,991.622802734375,10.813229,10813.229 +33424,2025-03-11T05:30:34.260419-07:00,991.62939453125,10.821826,10821.826 +33425,2025-03-11T05:30:45.087507-07:00,991.6174926757812,10.827088,10827.088 +33426,2025-03-11T05:30:55.910416-07:00,991.596435546875,10.822909,10822.909 +33427,2025-03-11T05:31:06.737456-07:00,991.5888061523438,10.82704,10827.04 +33428,2025-03-11T05:31:17.563421-07:00,991.58984375,10.825965,10825.965 +33429,2025-03-11T05:31:28.383690-07:00,991.5779418945312,10.820269,10820.269 +33430,2025-03-11T05:31:39.210278-07:00,991.5977172851562,10.826588,10826.588 +33431,2025-03-11T05:31:50.031345-07:00,991.606689453125,10.821067,10821.067 +33432,2025-03-11T05:32:00.848759-07:00,991.5723266601562,10.817414,10817.414 +33433,2025-03-11T05:32:11.678370-07:00,991.5525512695312,10.829611,10829.611 +33434,2025-03-11T05:32:22.497060-07:00,991.5868530273438,10.81869,10818.69 +33435,2025-03-11T05:32:33.324366-07:00,991.5868530273438,10.827306,10827.306 +33436,2025-03-11T05:32:44.143813-07:00,991.5393676757812,10.819447,10819.447 +33437,2025-03-11T05:32:54.970313-07:00,991.5604858398438,10.8265,10826.5 +33438,2025-03-11T05:33:05.780366-07:00,991.5186157226562,10.810053,10810.053 +33439,2025-03-11T05:33:16.600361-07:00,991.5459594726562,10.819995,10819.995 +33440,2025-03-11T05:33:27.419548-07:00,991.5218505859375,10.819187,10819.187 +33441,2025-03-11T05:33:38.238366-07:00,991.525146484375,10.818818,10818.818 +33442,2025-03-11T05:33:49.062391-07:00,991.5275268554688,10.824025,10824.025 +33443,2025-03-11T05:33:59.887135-07:00,991.5142822265625,10.824744,10824.744 +33444,2025-03-11T05:34:10.714409-07:00,991.498779296875,10.827274,10827.274 +33445,2025-03-11T05:34:21.533435-07:00,991.51953125,10.819026,10819.026 +33446,2025-03-11T05:34:32.363409-07:00,991.4776611328125,10.829974,10829.974 +33447,2025-03-11T05:34:43.190357-07:00,991.4723510742188,10.826948,10826.948 +33448,2025-03-11T05:34:54.005689-07:00,991.4776611328125,10.815332,10815.332 +33449,2025-03-11T05:35:04.833349-07:00,991.4512329101562,10.82766,10827.66 +33450,2025-03-11T05:35:15.651348-07:00,991.4723510742188,10.817999,10817.999 +33451,2025-03-11T05:35:26.475372-07:00,991.4578247070312,10.824024,10824.024 +33452,2025-03-11T05:35:37.293658-07:00,991.4447021484375,10.818286,10818.286 +33453,2025-03-11T05:35:48.105500-07:00,991.4525756835938,10.811842,10811.842 +33454,2025-03-11T05:35:58.922680-07:00,991.4578247070312,10.81718,10817.18 +33455,2025-03-11T05:36:09.747348-07:00,991.4723510742188,10.824668,10824.668 +33456,2025-03-11T05:36:20.567366-07:00,991.4657592773438,10.820018,10820.018 +33457,2025-03-11T05:36:31.376401-07:00,991.4644775390625,10.809035,10809.035 +33458,2025-03-11T05:36:42.197685-07:00,991.4248657226562,10.821284,10821.284 +33459,2025-03-11T05:36:53.010358-07:00,991.4459228515625,10.812673,10812.673 +33460,2025-03-11T05:37:03.834074-07:00,991.4459228515625,10.823716,10823.716 +33461,2025-03-11T05:37:14.657486-07:00,991.4248657226562,10.823412,10823.412 +33462,2025-03-11T05:37:25.478624-07:00,991.4314575195312,10.821138,10821.138 +33463,2025-03-11T05:37:36.298398-07:00,991.4328002929688,10.819774,10819.774 +33464,2025-03-11T05:37:47.114256-07:00,991.4195556640625,10.815858,10815.858 +33465,2025-03-11T05:37:57.941374-07:00,991.4314575195312,10.827118,10827.118 +33466,2025-03-11T05:38:08.764766-07:00,991.4050903320312,10.823392,10823.392 +33467,2025-03-11T05:38:19.586461-07:00,991.4328002929688,10.821695,10821.695 +33468,2025-03-11T05:38:30.407649-07:00,991.447021484375,10.821188,10821.188 +33469,2025-03-11T05:38:41.230672-07:00,991.4690551757812,10.823023,10823.023 +33470,2025-03-11T05:38:52.050426-07:00,991.4559326171875,10.819754,10819.754 +33471,2025-03-11T05:39:02.860372-07:00,991.4614868164062,10.809946,10809.946 +33472,2025-03-11T05:39:13.686229-07:00,991.454833984375,10.825857,10825.857 +33473,2025-03-11T05:39:24.497755-07:00,991.4690551757812,10.811526,10811.526 +33474,2025-03-11T05:39:35.316349-07:00,991.4690551757812,10.818594,10818.594 +33475,2025-03-11T05:39:46.131734-07:00,991.4417114257812,10.815385,10815.385 +33476,2025-03-11T05:39:56.951084-07:00,991.4374389648438,10.81935,10819.35 +33477,2025-03-11T05:40:07.768372-07:00,991.4492797851562,10.817288,10817.288 +33478,2025-03-11T05:40:18.588349-07:00,991.4559326171875,10.819977,10819.977 +33479,2025-03-11T05:40:29.407364-07:00,991.4572143554688,10.819015,10819.015 +33480,2025-03-11T05:40:40.222698-07:00,991.4360961914062,10.815334,10815.334 +33481,2025-03-11T05:40:51.042349-07:00,991.47705078125,10.819651,10819.651 +33482,2025-03-11T05:41:01.866508-07:00,991.4625244140625,10.824159,10824.159 +33483,2025-03-11T05:41:12.682799-07:00,991.454833984375,10.816291,10816.291 +33484,2025-03-11T05:41:23.504095-07:00,991.4638061523438,10.821296,10821.296 +33485,2025-03-11T05:41:34.334519-07:00,991.47802734375,10.830424,10830.424 +33486,2025-03-11T05:41:45.157369-07:00,991.4572143554688,10.82285,10822.85 +33487,2025-03-11T05:41:55.976579-07:00,991.471435546875,10.81921,10819.21 +33488,2025-03-11T05:42:06.803014-07:00,991.458251953125,10.826435,10826.435 +33489,2025-03-11T05:42:17.622373-07:00,991.4464111328125,10.819359,10819.359 +33490,2025-03-11T05:42:28.439339-07:00,991.4397583007812,10.816966,10816.966 +33491,2025-03-11T05:42:39.268946-07:00,991.4529418945312,10.829607,10829.607 +33492,2025-03-11T05:42:50.093576-07:00,991.4737548828125,10.82463,10824.63 +33493,2025-03-11T05:43:00.914507-07:00,991.4737548828125,10.820931,10820.931 +33494,2025-03-11T05:43:11.740632-07:00,991.455322265625,10.826125,10826.125 +33495,2025-03-11T05:43:22.559371-07:00,991.4618530273438,10.818739,10818.739 +33496,2025-03-11T05:43:33.376800-07:00,991.4209594726562,10.817429,10817.429 +33497,2025-03-11T05:43:44.201375-07:00,991.4364624023438,10.824575,10824.575 +33498,2025-03-11T05:43:55.025367-07:00,991.462890625,10.823992,10823.992 +33499,2025-03-11T05:44:05.848469-07:00,991.4642333984375,10.823102,10823.102 +33500,2025-03-11T05:44:16.662381-07:00,991.4784545898438,10.813912,10813.912 +33501,2025-03-11T05:44:27.483364-07:00,991.4232788085938,10.820983,10820.983 +33502,2025-03-11T05:44:38.300653-07:00,991.4364624023438,10.817289,10817.289 +33503,2025-03-11T05:44:49.123349-07:00,991.4321899414062,10.822696,10822.696 +33504,2025-03-11T05:44:59.942417-07:00,991.4509887695312,10.819068,10819.068 +33505,2025-03-11T05:45:10.770508-07:00,991.4190673828125,10.828091,10828.091 +33506,2025-03-11T05:45:21.596451-07:00,991.438720703125,10.825943,10825.943 +33507,2025-03-11T05:45:32.420600-07:00,991.440185546875,10.824149,10824.149 +33508,2025-03-11T05:45:43.247371-07:00,991.468505859375,10.826771,10826.771 +33509,2025-03-11T05:45:54.074629-07:00,991.4421997070312,10.827258,10827.258 +33510,2025-03-11T05:46:04.895357-07:00,991.4500122070312,10.820728,10820.728 +33511,2025-03-11T05:46:15.713376-07:00,991.4444580078125,10.818019,10818.019 +33512,2025-03-11T05:46:26.541740-07:00,991.4180297851562,10.828364,10828.364 +33513,2025-03-11T05:46:37.372601-07:00,991.43359375,10.830861,10830.861 +33514,2025-03-11T05:46:48.187597-07:00,991.4523315429688,10.814996,10814.996 +33515,2025-03-11T05:46:59.014365-07:00,991.47314453125,10.826768,10826.768 +33516,2025-03-11T05:47:09.831591-07:00,991.49951171875,10.817226,10817.226 +33517,2025-03-11T05:47:20.654848-07:00,991.4810791015625,10.823257,10823.257 +33518,2025-03-11T05:47:31.471761-07:00,991.4745483398438,10.816913,10816.913 +33519,2025-03-11T05:47:42.294621-07:00,991.453369140625,10.82286,10822.86 +33520,2025-03-11T05:47:53.124740-07:00,991.4600219726562,10.830119,10830.119 +33521,2025-03-11T05:48:03.934729-07:00,991.4745483398438,10.809989,10809.989 +33522,2025-03-11T05:48:14.762358-07:00,991.4490356445312,10.827629,10827.629 +33523,2025-03-11T05:48:25.584806-07:00,991.4623413085938,10.822448,10822.448 +33524,2025-03-11T05:48:36.401356-07:00,991.4910278320312,10.81655,10816.55 +33525,2025-03-11T05:48:47.227646-07:00,991.4503784179688,10.82629,10826.29 +33526,2025-03-11T05:48:58.048239-07:00,991.4724731445312,10.820593,10820.593 +33527,2025-03-11T05:49:08.862367-07:00,991.4701538085938,10.814128,10814.128 +33528,2025-03-11T05:49:19.687672-07:00,991.424072265625,10.825305,10825.305 +33529,2025-03-11T05:49:30.509676-07:00,991.4910278320312,10.822004,10822.004 +33530,2025-03-11T05:49:41.335419-07:00,991.4910278320312,10.825743,10825.743 +33531,2025-03-11T05:49:52.162835-07:00,991.4866943359375,10.827416,10827.416 +33532,2025-03-11T05:50:02.993365-07:00,991.464599609375,10.83053,10830.53 +33533,2025-03-11T05:50:13.812829-07:00,991.4834594726562,10.819464,10819.464 +33534,2025-03-11T05:50:24.644787-07:00,991.4910278320312,10.831958,10831.958 +33535,2025-03-11T05:50:35.471279-07:00,991.501220703125,10.826492,10826.492 +33536,2025-03-11T05:50:42.383083-07:00,991.4932861328125,6.911804,6911.804 +33537,2025-03-11T05:50:46.298367-07:00,991.501220703125,3.915284,3915.284 +33538,2025-03-11T05:50:57.124367-07:00,991.4791259765625,10.826,10826.0 +33539,2025-03-11T05:51:07.949374-07:00,991.4857788085938,10.825007,10825.007 +33540,2025-03-11T05:51:18.774353-07:00,991.4989013671875,10.824979,10824.979 +33541,2025-03-11T05:51:29.596974-07:00,991.477783203125,10.822621,10822.621 +33542,2025-03-11T05:51:40.422053-07:00,991.4866943359375,10.825079,10825.079 +33543,2025-03-11T05:51:51.248127-07:00,991.4669799804688,10.826074,10826.074 +33544,2025-03-11T05:52:02.062734-07:00,991.4579467773438,10.814607,10814.607 +33545,2025-03-11T05:52:12.886371-07:00,991.4866943359375,10.823637,10823.637 +33546,2025-03-11T05:52:23.719793-07:00,991.4659423828125,10.833422,10833.422 +33547,2025-03-11T05:52:32.076649-07:00,991.4527587890625,8.356856,8356.856 +33548,2025-03-11T05:52:34.541339-07:00,991.4813842773438,2.46469,2464.69 +33549,2025-03-11T05:52:45.367273-07:00,991.4669799804688,10.825934,10825.934 +33550,2025-03-11T05:52:56.193354-07:00,991.4537353515625,10.826081,10826.081 +33551,2025-03-11T05:53:07.022649-07:00,991.4550170898438,10.829295,10829.295 +33552,2025-03-11T05:53:17.850199-07:00,991.4837646484375,10.82755,10827.55 +33553,2025-03-11T05:53:28.669370-07:00,991.461669921875,10.819171,10819.171 +33554,2025-03-11T05:53:39.499369-07:00,991.4352416992188,10.829999,10829.999 +33555,2025-03-11T05:53:50.321361-07:00,991.46826171875,10.821992,10821.992 +33556,2025-03-11T05:54:01.154928-07:00,991.4561157226562,10.833567,10833.567 +33557,2025-03-11T05:54:11.977062-07:00,991.4484252929688,10.822134,10822.134 +33558,2025-03-11T05:54:22.794817-07:00,991.4902954101562,10.817755,10817.755 +33559,2025-03-11T05:54:33.613993-07:00,991.4352416992188,10.819176,10819.176 +33560,2025-03-11T05:54:44.451364-07:00,991.436279296875,10.837371,10837.371 +33561,2025-03-11T05:54:55.272389-07:00,991.4537353515625,10.821025,10821.025 +33562,2025-03-11T05:55:06.097568-07:00,991.46826171875,10.825179,10825.179 +33563,2025-03-11T05:55:16.925930-07:00,991.46923828125,10.828362,10828.362 +33564,2025-03-11T05:55:27.758548-07:00,991.4461059570312,10.832618,10832.618 +33565,2025-03-11T05:55:38.582925-07:00,991.408935546875,10.824377,10824.377 +33566,2025-03-11T05:55:49.404317-07:00,991.4263305664062,10.821392,10821.392 +33567,2025-03-11T05:56:00.235413-07:00,991.4395141601562,10.831096,10831.096 +33568,2025-03-11T05:56:11.060369-07:00,991.4537353515625,10.824956,10824.956 +33569,2025-03-11T05:56:21.874603-07:00,991.4315795898438,10.814234,10814.234 +33570,2025-03-11T05:56:32.706750-07:00,991.4527587890625,10.832147,10832.147 +33571,2025-03-11T05:56:43.521412-07:00,991.4315795898438,10.814662,10814.662 +33572,2025-03-11T05:56:54.342368-07:00,991.464599609375,10.820956,10820.956 +33573,2025-03-11T05:57:05.168699-07:00,991.4472045898438,10.826331,10826.331 +33574,2025-03-11T05:57:16.000364-07:00,991.4329833984375,10.831665,10831.665 +33575,2025-03-11T05:57:26.827423-07:00,991.4065551757812,10.827059,10827.059 +33576,2025-03-11T05:57:37.656749-07:00,991.4220581054688,10.829326,10829.326 +33577,2025-03-11T05:57:48.484760-07:00,991.4131469726562,10.828011,10828.011 +33578,2025-03-11T05:57:58.712031-07:00,991.3877563476562,10.227271,10227.271 +33579,2025-03-11T05:57:59.303362-07:00,991.3956298828125,0.591331,591.331 +33580,2025-03-11T05:58:10.123590-07:00,991.3877563476562,10.820228,10820.228 +33581,2025-03-11T05:58:20.956435-07:00,991.3834228515625,10.832845,10832.845 +33582,2025-03-11T05:58:31.776365-07:00,991.384765625,10.81993,10819.93 +33583,2025-03-11T05:58:42.606600-07:00,991.3494262695312,10.830235,10830.235 +33584,2025-03-11T05:58:53.427361-07:00,991.4332885742188,10.820761,10820.761 +33585,2025-03-11T05:59:04.259713-07:00,991.3781127929688,10.832352,10832.352 +33586,2025-03-11T05:59:15.085586-07:00,991.4134521484375,10.825873,10825.873 +33587,2025-03-11T05:59:25.917576-07:00,991.3673706054688,10.83199,10831.99 +33588,2025-03-11T05:59:36.733991-07:00,991.3881225585938,10.816415,10816.415 +33589,2025-03-11T05:59:47.564080-07:00,991.392333984375,10.830089,10830.089 +33590,2025-03-11T05:59:58.388372-07:00,991.3870849609375,10.824292,10824.292 +33591,2025-03-11T06:00:09.210366-07:00,991.3432006835938,10.821994,10821.994 +33592,2025-03-11T06:00:20.036694-07:00,991.3838500976562,10.826328,10826.328 +33593,2025-03-11T06:00:30.862371-07:00,991.3848266601562,10.825677,10825.677 +33594,2025-03-11T06:00:41.677703-07:00,991.37060546875,10.815332,10815.332 +33595,2025-03-11T06:00:52.509359-07:00,991.378173828125,10.831656,10831.656 +33596,2025-03-11T06:01:03.326371-07:00,991.3805541992188,10.817012,10817.012 +33597,2025-03-11T06:01:14.150666-07:00,991.3584594726562,10.824295,10824.295 +33598,2025-03-11T06:01:24.969367-07:00,991.3739013671875,10.818701,10818.701 +33599,2025-03-11T06:01:35.800780-07:00,991.388427734375,10.831413,10831.413 +33600,2025-03-11T06:01:46.626764-07:00,991.3818969726562,10.825984,10825.984 +33601,2025-03-11T06:01:57.458219-07:00,991.4092407226562,10.831455,10831.455 +33602,2025-03-11T06:02:08.277817-07:00,991.3685913085938,10.819598,10819.598 +33603,2025-03-11T06:02:19.105345-07:00,991.3973388671875,10.827528,10827.528 +33604,2025-03-11T06:02:29.931395-07:00,991.4171752929688,10.82605,10826.05 +33605,2025-03-11T06:02:40.759366-07:00,991.405029296875,10.827971,10827.971 +33606,2025-03-11T06:02:51.577184-07:00,991.4260864257812,10.817818,10817.818 +33607,2025-03-11T06:03:02.408335-07:00,991.4129028320312,10.831151,10831.151 +33608,2025-03-11T06:03:13.233635-07:00,991.4260864257812,10.8253,10825.3 +33609,2025-03-11T06:03:24.050367-07:00,991.400634765625,10.816732,10816.732 +33610,2025-03-11T06:03:34.880349-07:00,991.4072875976562,10.829982,10829.982 +33611,2025-03-11T06:03:45.710674-07:00,991.4138793945312,10.830325,10830.325 +33612,2025-03-11T06:03:56.536362-07:00,991.428466796875,10.825688,10825.688 +33613,2025-03-11T06:04:07.354435-07:00,991.4403076171875,10.818073,10818.073 +33614,2025-03-11T06:04:18.180370-07:00,991.454833984375,10.825935,10825.935 +33615,2025-03-11T06:04:29.002362-07:00,991.455810546875,10.821992,10821.992 +33616,2025-03-11T06:04:39.826868-07:00,991.4415893554688,10.824506,10824.506 +33617,2025-03-11T06:04:50.648356-07:00,991.4096069335938,10.821488,10821.488 +33618,2025-03-11T06:05:01.479721-07:00,991.455810546875,10.831365,10831.365 +33619,2025-03-11T06:05:12.296378-07:00,991.4349975585938,10.816657,10816.657 +33620,2025-03-11T06:05:23.113421-07:00,991.3875122070312,10.817043,10817.043 +33621,2025-03-11T06:05:33.935641-07:00,991.4481811523438,10.82222,10822.22 +33622,2025-03-11T06:05:44.760595-07:00,991.474609375,10.824954,10824.954 +33623,2025-03-11T06:05:55.577656-07:00,991.4459228515625,10.817061,10817.061 +33624,2025-03-11T06:06:06.411065-07:00,991.4722900390625,10.833409,10833.409 +33625,2025-03-11T06:06:17.226544-07:00,991.405029296875,10.815479,10815.479 +33626,2025-03-11T06:06:28.054628-07:00,991.4481811523438,10.828084,10828.084 +33627,2025-03-11T06:06:38.869365-07:00,991.4403076171875,10.814737,10814.737 +33628,2025-03-11T06:06:49.699359-07:00,991.454833984375,10.829994,10829.994 +33629,2025-03-11T06:07:00.515248-07:00,991.4812622070312,10.815889,10815.889 +33630,2025-03-11T06:07:11.238717-07:00,991.46142578125,10.723469,10723.469 +33631,2025-03-11T06:07:22.059763-07:00,991.4415893554688,10.821046,10821.046 +33632,2025-03-11T06:07:32.885914-07:00,991.4732666015625,10.826151,10826.151 +33633,2025-03-11T06:07:43.713955-07:00,991.4293823242188,10.828041,10828.041 +33634,2025-03-11T06:07:54.533289-07:00,991.442626953125,10.819334,10819.334 +33635,2025-03-11T06:08:05.363688-07:00,991.4756469726562,10.830399,10830.399 +33636,2025-03-11T06:08:16.185181-07:00,991.44921875,10.821493,10821.493 +33637,2025-03-11T06:08:27.004776-07:00,991.4703369140625,10.819595,10819.595 +33638,2025-03-11T06:08:37.825794-07:00,991.4679565429688,10.821018,10821.018 +33639,2025-03-11T06:08:48.645235-07:00,991.4703369140625,10.819441,10819.441 +33640,2025-03-11T06:08:59.471712-07:00,991.4623413085938,10.826477,10826.477 +33641,2025-03-11T06:09:10.299417-07:00,991.44921875,10.827705,10827.705 +33642,2025-03-11T06:09:21.129721-07:00,991.4756469726562,10.830304,10830.304 +33643,2025-03-11T06:09:31.957718-07:00,991.48876953125,10.827997,10827.997 +33644,2025-03-11T06:09:42.780891-07:00,991.442626953125,10.823173,10823.173 +33645,2025-03-11T06:09:53.603033-07:00,991.454833984375,10.822142,10822.142 +33646,2025-03-11T06:10:04.430421-07:00,991.4600830078125,10.827388,10827.388 +33647,2025-03-11T06:10:15.259359-07:00,991.454833984375,10.828938,10828.938 +33648,2025-03-11T06:10:26.080560-07:00,991.4798583984375,10.821201,10821.201 +33649,2025-03-11T06:10:36.902140-07:00,991.454833984375,10.82158,10821.58 +33650,2025-03-11T06:10:47.732715-07:00,991.4600830078125,10.830575,10830.575 +33651,2025-03-11T06:10:58.559715-07:00,991.4468994140625,10.827,10827.0 +33652,2025-03-11T06:11:09.379102-07:00,991.46142578125,10.819387,10819.387 +33653,2025-03-11T06:11:20.205743-07:00,991.4481811523438,10.826641,10826.641 +33654,2025-03-11T06:11:31.027867-07:00,991.482177734375,10.822124,10822.124 +33655,2025-03-11T06:11:41.850826-07:00,991.468994140625,10.822959,10822.959 +33656,2025-03-11T06:11:52.671077-07:00,991.455810546875,10.820251,10820.251 +33657,2025-03-11T06:12:03.502701-07:00,991.450439453125,10.831624,10831.624 +33658,2025-03-11T06:12:14.324023-07:00,991.4768676757812,10.821322,10821.322 +33659,2025-03-11T06:12:25.153719-07:00,991.4570922851562,10.829696,10829.696 +33660,2025-03-11T06:12:35.983181-07:00,991.4779663085938,10.829462,10829.462 +33661,2025-03-11T06:12:46.817708-07:00,991.4382934570312,10.834527,10834.527 +33662,2025-03-11T06:12:57.638082-07:00,991.47265625,10.820374,10820.374 +33663,2025-03-11T06:13:08.465719-07:00,991.4646606445312,10.827637,10827.637 +33664,2025-03-11T06:13:19.297706-07:00,991.46044921875,10.831987,10831.987 +33665,2025-03-11T06:13:30.132960-07:00,991.4660034179688,10.835254,10835.254 +33666,2025-03-11T06:13:40.961707-07:00,991.453857421875,10.828747,10828.747 +33667,2025-03-11T06:13:51.787750-07:00,991.4749755859375,10.826043,10826.043 +33668,2025-03-11T06:14:02.612017-07:00,991.467041015625,10.824267,10824.267 +33669,2025-03-11T06:14:13.437717-07:00,991.4274291992188,10.8257,10825.7 +33670,2025-03-11T06:14:24.258748-07:00,991.4495239257812,10.821031,10821.031 +33671,2025-03-11T06:14:35.093883-07:00,991.4693603515625,10.835135,10835.135 +33672,2025-03-11T06:14:45.919805-07:00,991.4901733398438,10.825922,10825.922 +33673,2025-03-11T06:14:56.743958-07:00,991.4717407226562,10.824153,10824.153 +33674,2025-03-11T06:15:07.573867-07:00,991.4637451171875,10.829909,10829.909 +33675,2025-03-11T06:15:18.405882-07:00,991.4693603515625,10.832015,10832.015 +33676,2025-03-11T06:15:29.226715-07:00,991.4572143554688,10.820833,10820.833 +33677,2025-03-11T06:15:40.064109-07:00,991.4769287109375,10.837394,10837.394 +33678,2025-03-11T06:15:50.882694-07:00,991.478271484375,10.818585,10818.585 +33679,2025-03-11T06:16:01.715040-07:00,991.4572143554688,10.832346,10832.346 +33680,2025-03-11T06:16:12.545048-07:00,991.48486328125,10.830008,10830.008 +33681,2025-03-11T06:16:23.370854-07:00,991.4453125,10.825806,10825.806 +33682,2025-03-11T06:16:34.199717-07:00,991.451904296875,10.828863,10828.863 +33683,2025-03-11T06:16:45.027123-07:00,991.47265625,10.827406,10827.406 +33684,2025-03-11T06:16:55.855730-07:00,991.4937744140625,10.828607,10828.607 +33685,2025-03-11T06:17:06.676982-07:00,991.4673461914062,10.821252,10821.252 +33686,2025-03-11T06:17:17.502907-07:00,991.4871826171875,10.825925,10825.925 +33687,2025-03-11T06:17:28.328623-07:00,991.489501953125,10.825716,10825.716 +33688,2025-03-11T06:17:39.149976-07:00,991.4300537109375,10.821353,10821.353 +33689,2025-03-11T06:17:49.973693-07:00,991.48388671875,10.823717,10823.717 +33690,2025-03-11T06:18:00.803994-07:00,991.48388671875,10.830301,10830.301 +33691,2025-03-11T06:18:11.621706-07:00,991.4971313476562,10.817712,10817.712 +33692,2025-03-11T06:18:22.451512-07:00,991.4785766601562,10.829806,10829.806 +33693,2025-03-11T06:18:33.269720-07:00,991.4862670898438,10.818208,10818.208 +33694,2025-03-11T06:18:44.103976-07:00,991.4796142578125,10.834256,10834.256 +33695,2025-03-11T06:18:54.920984-07:00,991.447998046875,10.817008,10817.008 +33696,2025-03-11T06:19:05.749718-07:00,991.4334106445312,10.828734,10828.734 +33697,2025-03-11T06:19:16.579499-07:00,991.474365234375,10.829781,10829.781 +33698,2025-03-11T06:19:27.404720-07:00,991.48095703125,10.825221,10825.221 +33699,2025-03-11T06:19:38.230048-07:00,991.4796142578125,10.825328,10825.328 +33700,2025-03-11T06:19:49.055694-07:00,991.488525390625,10.825646,10825.646 +33701,2025-03-11T06:19:59.877803-07:00,991.50732421875,10.822109,10822.109 +33702,2025-03-11T06:20:10.697866-07:00,991.5007934570312,10.820063,10820.063 +33703,2025-03-11T06:20:21.524794-07:00,991.4796142578125,10.826928,10826.928 +33704,2025-03-11T06:20:32.359806-07:00,991.4664306640625,10.835012,10835.012 +33705,2025-03-11T06:20:43.184984-07:00,991.4677124023438,10.825178,10825.178 +33706,2025-03-11T06:20:54.017717-07:00,991.4818725585938,10.832733,10832.733 +33707,2025-03-11T06:21:04.846238-07:00,991.4776611328125,10.828521,10828.521 +33708,2025-03-11T06:21:15.668139-07:00,991.46875,10.821901,10821.901 +33709,2025-03-11T06:21:26.491716-07:00,991.4832763671875,10.823577,10823.577 +33710,2025-03-11T06:21:37.309763-07:00,991.4620971679688,10.818047,10818.047 +33711,2025-03-11T06:21:48.141772-07:00,991.4766235351562,10.832009,10832.009 +33712,2025-03-11T06:21:58.967895-07:00,991.48095703125,10.826123,10826.123 +33713,2025-03-11T06:22:09.800718-07:00,991.475341796875,10.832823,10832.823 +33714,2025-03-11T06:22:20.633110-07:00,991.4611206054688,10.832392,10832.392 +33715,2025-03-11T06:22:31.457974-07:00,991.488525390625,10.824864,10824.864 +33716,2025-03-11T06:22:42.279766-07:00,991.50830078125,10.821792,10821.792 +33717,2025-03-11T06:22:53.110720-07:00,991.4818725585938,10.830954,10830.954 +33718,2025-03-11T06:23:03.941108-07:00,991.475341796875,10.830388,10830.388 +33719,2025-03-11T06:23:14.773755-07:00,991.46875,10.832647,10832.647 +33720,2025-03-11T06:23:25.599846-07:00,991.4907836914062,10.826091,10826.091 +33721,2025-03-11T06:23:36.435113-07:00,991.4568481445312,10.835267,10835.267 +33722,2025-03-11T06:23:47.254711-07:00,991.4620971679688,10.819598,10819.598 +33723,2025-03-11T06:23:58.078094-07:00,991.475341796875,10.823383,10823.383 +33724,2025-03-11T06:24:08.909715-07:00,991.5030517578125,10.831621,10831.621 +33725,2025-03-11T06:24:19.735718-07:00,991.46875,10.826003,10826.003 +33726,2025-03-11T06:24:30.556776-07:00,991.4832763671875,10.821058,10821.058 +33727,2025-03-11T06:24:41.392115-07:00,991.4568481445312,10.835339,10835.339 +33728,2025-03-11T06:24:52.224933-07:00,991.4841918945312,10.832818,10832.818 +33729,2025-03-11T06:25:03.052719-07:00,991.4545288085938,10.827786,10827.786 +33730,2025-03-11T06:25:13.881708-07:00,991.4489135742188,10.828989,10828.989 +33731,2025-03-11T06:25:24.719714-07:00,991.475341796875,10.838006,10838.006 +33732,2025-03-11T06:25:35.542710-07:00,991.447998046875,10.822996,10822.996 +33733,2025-03-11T06:25:46.381100-07:00,991.4862670898438,10.83839,10838.39 +33734,2025-03-11T06:25:57.200962-07:00,991.4862670898438,10.819862,10819.862 +33735,2025-03-11T06:26:08.030763-07:00,991.458740234375,10.829801,10829.801 +33736,2025-03-11T06:26:18.854780-07:00,991.4664306640625,10.824017,10824.017 +33737,2025-03-11T06:26:29.684723-07:00,991.458740234375,10.829943,10829.943 +33738,2025-03-11T06:26:40.509713-07:00,991.46875,10.82499,10824.99 +33739,2025-03-11T06:26:51.339005-07:00,991.446533203125,10.829292,10829.292 +33740,2025-03-11T06:27:02.157973-07:00,991.475341796875,10.818968,10818.968 +33741,2025-03-11T06:27:12.978850-07:00,991.42578125,10.820877,10820.877 +33742,2025-03-11T06:27:23.811714-07:00,991.4598388671875,10.832864,10832.864 +33743,2025-03-11T06:27:34.636889-07:00,991.470703125,10.825175,10825.175 +33744,2025-03-11T06:27:45.474008-07:00,991.4720458984375,10.837119,10837.119 +33745,2025-03-11T06:27:56.291031-07:00,991.43896484375,10.817023,10817.023 +33746,2025-03-11T06:28:07.115075-07:00,991.4442749023438,10.824044,10824.044 +33747,2025-03-11T06:28:17.939717-07:00,991.4376831054688,10.824642,10824.642 +33748,2025-03-11T06:28:28.764407-07:00,991.432373046875,10.82469,10824.69 +33749,2025-03-11T06:28:39.598959-07:00,991.4376831054688,10.834552,10834.552 +33750,2025-03-11T06:28:50.422453-07:00,991.4376831054688,10.823494,10823.494 +33751,2025-03-11T06:29:01.246719-07:00,991.450927734375,10.824266,10824.266 +33752,2025-03-11T06:29:12.065752-07:00,991.4531860351562,10.819033,10819.033 +33753,2025-03-11T06:29:22.893278-07:00,991.43896484375,10.827526,10827.526 +33754,2025-03-11T06:29:33.720714-07:00,991.4456176757812,10.827436,10827.436 +33755,2025-03-11T06:29:44.549742-07:00,991.424560546875,10.829028,10829.028 +33756,2025-03-11T06:29:55.376722-07:00,991.4103393554688,10.82698,10826.98 +33757,2025-03-11T06:30:06.198036-07:00,991.4456176757812,10.821314,10821.314 +33758,2025-03-11T06:30:17.027957-07:00,991.4522094726562,10.829921,10829.921 +33759,2025-03-11T06:30:27.840709-07:00,991.4400024414062,10.812752,10812.752 +33760,2025-03-11T06:30:38.676023-07:00,991.43896484375,10.835314,10835.314 +33761,2025-03-11T06:30:49.496692-07:00,991.4281005859375,10.820669,10820.669 +33762,2025-03-11T06:31:00.323097-07:00,991.4215698242188,10.826405,10826.405 +33763,2025-03-11T06:31:11.146751-07:00,991.447998046875,10.823654,10823.654 +33764,2025-03-11T06:31:21.981149-07:00,991.4489135742188,10.834398,10834.398 +33765,2025-03-11T06:31:32.805715-07:00,991.4489135742188,10.824566,10824.566 +33766,2025-03-11T06:31:43.631414-07:00,991.4290771484375,10.825699,10825.699 +33767,2025-03-11T06:31:54.464025-07:00,991.4159545898438,10.832611,10832.611 +33768,2025-03-11T06:32:05.280918-07:00,991.4171752929688,10.816893,10816.893 +33769,2025-03-11T06:32:16.103115-07:00,991.4459228515625,10.822197,10822.197 +33770,2025-03-11T06:32:26.921940-07:00,991.391845703125,10.818825,10818.825 +33771,2025-03-11T06:32:37.750666-07:00,991.418212890625,10.828726,10828.726 +33772,2025-03-11T06:32:48.581719-07:00,991.4195556640625,10.831053,10831.053 +33773,2025-03-11T06:32:59.402765-07:00,991.3931274414062,10.821046,10821.046 +33774,2025-03-11T06:33:10.222978-07:00,991.4073486328125,10.820213,10820.213 +33775,2025-03-11T06:33:21.047712-07:00,991.421875,10.824734,10824.734 +33776,2025-03-11T06:33:31.873054-07:00,991.4349975585938,10.825342,10825.342 +33777,2025-03-11T06:33:42.701952-07:00,991.3888549804688,10.828898,10828.898 +33778,2025-03-11T06:33:53.520953-07:00,991.429443359375,10.819001,10819.001 +33779,2025-03-11T06:34:04.354687-07:00,991.441650390625,10.833734,10833.734 +33780,2025-03-11T06:34:15.180208-07:00,991.4241333007812,10.825521,10825.521 +33781,2025-03-11T06:34:26.005719-07:00,991.429443359375,10.825511,10825.511 +33782,2025-03-11T06:34:36.832716-07:00,991.41748046875,10.826997,10826.997 +33783,2025-03-11T06:34:47.657771-07:00,991.4261474609375,10.825055,10825.055 +33784,2025-03-11T06:34:58.494025-07:00,991.416259765625,10.836254,10836.254 +33785,2025-03-11T06:35:09.319107-07:00,991.4307861328125,10.825082,10825.082 +33786,2025-03-11T06:35:20.143772-07:00,991.4307861328125,10.824665,10824.665 +33787,2025-03-11T06:35:30.973512-07:00,991.397705078125,10.82974,10829.74 +33788,2025-03-11T06:35:41.803863-07:00,991.4328002929688,10.830351,10830.351 +33789,2025-03-11T06:35:52.629163-07:00,991.4393920898438,10.8253,10825.3 +33790,2025-03-11T06:36:03.461017-07:00,991.4261474609375,10.831854,10831.854 +33791,2025-03-11T06:36:14.281288-07:00,991.459228515625,10.820271,10820.271 +33792,2025-03-11T06:36:25.114715-07:00,991.4393920898438,10.833427,10833.427 +33793,2025-03-11T06:36:35.940414-07:00,991.4406127929688,10.825699,10825.699 +33794,2025-03-11T06:36:46.768716-07:00,991.4802856445312,10.828302,10828.302 +33795,2025-03-11T06:36:57.592458-07:00,991.493408203125,10.823742,10823.742 +33796,2025-03-11T06:37:08.418064-07:00,991.4802856445312,10.825606,10825.606 +33797,2025-03-11T06:37:19.240712-07:00,991.493408203125,10.822648,10822.648 +33798,2025-03-11T06:37:30.068970-07:00,991.4945068359375,10.828258,10828.258 +33799,2025-03-11T06:37:40.895766-07:00,991.5023193359375,10.826796,10826.796 +33800,2025-03-11T06:37:51.721016-07:00,991.509033203125,10.82525,10825.25 +33801,2025-03-11T06:38:02.540860-07:00,991.523193359375,10.819844,10819.844 +33802,2025-03-11T06:38:13.368373-07:00,991.4957885742188,10.827513,10827.513 +33803,2025-03-11T06:38:24.183069-07:00,991.5165405273438,10.814696,10814.696 +33804,2025-03-11T06:38:35.012692-07:00,991.5628051757812,10.829623,10829.623 +33805,2025-03-11T06:38:45.831052-07:00,991.536376953125,10.81836,10818.36 +33806,2025-03-11T06:38:56.654781-07:00,991.5275268554688,10.823729,10823.729 +33807,2025-03-11T06:39:07.482708-07:00,991.536376953125,10.827927,10827.927 +33808,2025-03-11T06:39:18.305723-07:00,991.5574951171875,10.823015,10823.015 +33809,2025-03-11T06:39:29.133134-07:00,991.5628051757812,10.827411,10827.411 +33810,2025-03-11T06:39:39.954277-07:00,991.5693969726562,10.821143,10821.143 +33811,2025-03-11T06:39:50.781849-07:00,991.591552734375,10.827572,10827.572 +33812,2025-03-11T06:40:01.610994-07:00,991.5839233398438,10.829145,10829.145 +33813,2025-03-11T06:40:12.429711-07:00,991.5552368164062,10.818717,10818.717 +33814,2025-03-11T06:40:23.254767-07:00,991.5994262695312,10.825056,10825.056 +33815,2025-03-11T06:40:34.084717-07:00,991.5641479492188,10.82995,10829.95 +33816,2025-03-11T06:40:44.902821-07:00,991.5773315429688,10.818104,10818.104 +33817,2025-03-11T06:40:55.735104-07:00,991.5693969726562,10.832283,10832.283 +33818,2025-03-11T06:41:06.552768-07:00,991.6102905273438,10.817664,10817.664 +33819,2025-03-11T06:41:17.375877-07:00,991.5957641601562,10.823109,10823.109 +33820,2025-03-11T06:41:28.205959-07:00,991.59814453125,10.830082,10830.082 +33821,2025-03-11T06:41:39.022951-07:00,991.59814453125,10.816992,10816.992 +33822,2025-03-11T06:41:49.843631-07:00,991.6024169921875,10.82068,10820.68 +33823,2025-03-11T06:42:00.673711-07:00,991.6156005859375,10.83008,10830.08 +33824,2025-03-11T06:42:11.496724-07:00,991.603759765625,10.823013,10823.013 +33825,2025-03-11T06:42:22.316350-07:00,991.630126953125,10.819626,10819.626 +33826,2025-03-11T06:42:33.133023-07:00,991.6080322265625,10.816673,10816.673 +33827,2025-03-11T06:42:43.961358-07:00,991.6156005859375,10.828335,10828.335 +33828,2025-03-11T06:42:54.784729-07:00,991.6090698242188,10.823371,10823.371 +33829,2025-03-11T06:43:05.593711-07:00,991.6156005859375,10.808982,10808.982 +33830,2025-03-11T06:43:16.417711-07:00,991.59716796875,10.824,10824.0 +33831,2025-03-11T06:43:27.241773-07:00,991.6156005859375,10.824062,10824.062 +33832,2025-03-11T06:43:38.062720-07:00,991.6500244140625,10.820947,10820.947 +33833,2025-03-11T06:43:48.889924-07:00,991.6311645507812,10.827204,10827.204 +33834,2025-03-11T06:43:59.703330-07:00,991.63671875,10.813406,10813.406 +33835,2025-03-11T06:44:10.537047-07:00,991.6235961914062,10.833717,10833.717 +33836,2025-03-11T06:44:21.354159-07:00,991.616943359375,10.817112,10817.112 +33837,2025-03-11T06:44:32.183936-07:00,991.6235961914062,10.829777,10829.777 +33838,2025-03-11T06:44:43.007277-07:00,991.6024169921875,10.823341,10823.341 +33839,2025-03-11T06:44:53.825089-07:00,991.6102905273438,10.817812,10817.812 +33840,2025-03-11T06:45:04.649048-07:00,991.59716796875,10.823959,10823.959 +33841,2025-03-11T06:45:15.469017-07:00,991.6113891601562,10.819969,10819.969 +33842,2025-03-11T06:45:26.295711-07:00,991.6258544921875,10.826694,10826.694 +33843,2025-03-11T06:45:37.114705-07:00,991.5862426757812,10.818994,10818.994 +33844,2025-03-11T06:45:47.931016-07:00,991.6414184570312,10.816311,10816.311 +33845,2025-03-11T06:45:58.756714-07:00,991.5928344726562,10.825698,10825.698 +33846,2025-03-11T06:46:09.587888-07:00,991.614990234375,10.831174,10831.174 +33847,2025-03-11T06:46:20.402881-07:00,991.62255859375,10.814993,10814.993 +33848,2025-03-11T06:46:31.234992-07:00,991.588623046875,10.832111,10832.111 +33849,2025-03-11T06:46:42.055854-07:00,991.576416015625,10.820862,10820.862 +33850,2025-03-11T06:46:52.885858-07:00,991.5740356445312,10.830004,10830.004 +33851,2025-03-11T06:47:03.713967-07:00,991.5895385742188,10.828109,10828.109 +33852,2025-03-11T06:47:14.544044-07:00,991.610595703125,10.830077,10830.077 +33853,2025-03-11T06:47:25.369098-07:00,991.5565795898438,10.825054,10825.054 +33854,2025-03-11T06:47:36.207705-07:00,991.588623046875,10.838607,10838.607 +33855,2025-03-11T06:47:47.025913-07:00,991.57763671875,10.818208,10818.208 +33856,2025-03-11T06:47:57.861898-07:00,991.5908813476562,10.835985,10835.985 +33857,2025-03-11T06:48:08.692292-07:00,991.610595703125,10.830394,10830.394 +33858,2025-03-11T06:48:19.517692-07:00,991.6172485351562,10.8254,10825.4 +33859,2025-03-11T06:48:30.344747-07:00,991.5908813476562,10.827055,10827.055 +33860,2025-03-11T06:48:41.160705-07:00,991.5974731445312,10.815958,10815.958 +33861,2025-03-11T06:48:51.983711-07:00,991.5809326171875,10.823006,10823.006 +33862,2025-03-11T06:49:02.809971-07:00,991.6073608398438,10.82626,10826.26 +33863,2025-03-11T06:49:13.636764-07:00,991.5889282226562,10.826793,10826.793 +33864,2025-03-11T06:49:24.474197-07:00,991.57568359375,10.837433,10837.433 +33865,2025-03-11T06:49:35.298696-07:00,991.5889282226562,10.824499,10824.499 +33866,2025-03-11T06:49:46.116001-07:00,991.570068359375,10.817305,10817.305 +33867,2025-03-11T06:49:56.952321-07:00,991.5912475585938,10.83632,10836.32 +33868,2025-03-11T06:50:07.777087-07:00,991.5912475585938,10.824766,10824.766 +33869,2025-03-11T06:50:18.605709-07:00,991.5582275390625,10.828622,10828.622 +33870,2025-03-11T06:50:29.427021-07:00,991.5779418945312,10.821312,10821.312 +33871,2025-03-11T06:50:40.250078-07:00,991.6063842773438,10.823057,10823.057 +33872,2025-03-11T06:50:51.069708-07:00,991.5932006835938,10.81963,10819.63 +33873,2025-03-11T06:51:01.897017-07:00,991.5601806640625,10.827309,10827.309 +33874,2025-03-11T06:51:12.727706-07:00,991.568115234375,10.830689,10830.689 +33875,2025-03-11T06:51:23.555333-07:00,991.57568359375,10.827627,10827.627 +33876,2025-03-11T06:51:34.384392-07:00,991.54931640625,10.829059,10829.059 +33877,2025-03-11T06:51:45.202301-07:00,991.5482788085938,10.817909,10817.909 +33878,2025-03-11T06:51:56.035766-07:00,991.5779418945312,10.833465,10833.465 +33879,2025-03-11T06:52:06.859027-07:00,991.5284423828125,10.823261,10823.261 +33880,2025-03-11T06:52:17.684719-07:00,991.563720703125,10.825692,10825.692 +33881,2025-03-11T06:52:28.505714-07:00,991.5162353515625,10.820995,10820.995 +33882,2025-03-11T06:52:39.325597-07:00,991.5198364257812,10.819883,10819.883 +33883,2025-03-11T06:52:50.146890-07:00,991.5384521484375,10.821293,10821.293 +33884,2025-03-11T06:53:00.972973-07:00,991.5186157226562,10.826083,10826.083 +33885,2025-03-11T06:53:11.789176-07:00,991.5186157226562,10.816203,10816.203 +33886,2025-03-11T06:53:22.611717-07:00,991.5396728515625,10.822541,10822.541 +33887,2025-03-11T06:53:33.423991-07:00,991.50439453125,10.812274,10812.274 +33888,2025-03-11T06:53:44.251763-07:00,991.525146484375,10.827772,10827.772 +33889,2025-03-11T06:53:55.068714-07:00,991.5317993164062,10.816951,10816.951 +33890,2025-03-11T06:54:05.900170-07:00,991.5242309570312,10.831456,10831.456 +33891,2025-03-11T06:54:16.717975-07:00,991.5317993164062,10.817805,10817.805 +33892,2025-03-11T06:54:27.555739-07:00,991.5331420898438,10.837764,10837.764 +33893,2025-03-11T06:54:38.375091-07:00,991.5067138671875,10.819352,10819.352 +33894,2025-03-11T06:54:49.196708-07:00,991.5198364257812,10.821617,10821.617 +33895,2025-03-11T06:55:00.024135-07:00,991.515625,10.827427,10827.427 +33896,2025-03-11T06:55:10.859709-07:00,991.5340576171875,10.835574,10835.574 +33897,2025-03-11T06:55:21.681021-07:00,991.5407104492188,10.821312,10821.312 +33898,2025-03-11T06:55:32.507712-07:00,991.522216796875,10.826691,10826.691 +33899,2025-03-11T06:55:43.333267-07:00,991.54296875,10.825555,10825.555 +33900,2025-03-11T06:55:54.152775-07:00,991.5023193359375,10.819508,10819.508 +33901,2025-03-11T06:56:04.980696-07:00,991.5287475585938,10.827921,10827.921 +33902,2025-03-11T06:56:15.811019-07:00,991.515625,10.830323,10830.323 +33903,2025-03-11T06:56:26.641710-07:00,991.522216796875,10.830691,10830.691 +33904,2025-03-11T06:56:37.474708-07:00,991.535400390625,10.832998,10832.998 +33905,2025-03-11T06:56:48.300748-07:00,991.5693969726562,10.82604,10826.04 +33906,2025-03-11T06:56:59.127818-07:00,991.5892333984375,10.82707,10827.07 +33907,2025-03-11T06:57:09.963181-07:00,991.580322265625,10.835363,10835.363 +33908,2025-03-11T06:57:20.783975-07:00,991.5684204101562,10.820794,10820.794 +33909,2025-03-11T06:57:31.615663-07:00,991.5868530273438,10.831688,10831.688 +33910,2025-03-11T06:57:42.435748-07:00,991.6212768554688,10.820085,10820.085 +33911,2025-03-11T06:57:53.266715-07:00,991.5604858398438,10.830967,10830.967 +33912,2025-03-11T06:58:04.089006-07:00,991.5868530273438,10.822291,10822.291 +33913,2025-03-11T06:58:14.921017-07:00,991.6057739257812,10.832011,10832.011 +33914,2025-03-11T06:58:25.745598-07:00,991.593505859375,10.824581,10824.581 +33915,2025-03-11T06:58:36.571941-07:00,991.6057739257812,10.826343,10826.343 +33916,2025-03-11T06:58:47.399548-07:00,991.6476440429688,10.827607,10827.607 +33917,2025-03-11T06:58:58.230019-07:00,991.6397705078125,10.830471,10830.471 +33918,2025-03-11T06:59:09.053494-07:00,991.6322021484375,10.823475,10823.475 +33919,2025-03-11T06:59:19.888693-07:00,991.64404296875,10.835199,10835.199 +33920,2025-03-11T06:59:30.711340-07:00,991.6034545898438,10.822647,10822.647 +33921,2025-03-11T06:59:41.539727-07:00,991.630859375,10.828387,10828.387 +33922,2025-03-11T06:59:52.378330-07:00,991.6143798828125,10.838603,10838.603 +33923,2025-03-11T07:00:03.212986-07:00,991.65625,10.834656,10834.656 +33924,2025-03-11T07:00:14.043970-07:00,991.655029296875,10.830984,10830.984 +33925,2025-03-11T07:00:24.872703-07:00,991.6054077148438,10.828733,10828.733 +33926,2025-03-11T07:00:35.709001-07:00,991.6802978515625,10.836298,10836.298 +33927,2025-03-11T07:00:46.535708-07:00,991.6582641601562,10.826707,10826.707 +33928,2025-03-11T07:00:57.361537-07:00,991.6242065429688,10.825829,10825.829 +33929,2025-03-11T07:01:08.191756-07:00,991.637451171875,10.830219,10830.219 +33930,2025-03-11T07:01:19.018036-07:00,991.650634765625,10.82628,10826.28 +33931,2025-03-11T07:01:29.845177-07:00,991.6912231445312,10.827141,10827.141 +33932,2025-03-11T07:01:40.668902-07:00,991.67578125,10.823725,10823.725 +33933,2025-03-11T07:01:51.497842-07:00,991.6417236328125,10.82894,10828.94 +33934,2025-03-11T07:02:02.334874-07:00,991.6417236328125,10.837032,10837.032 +33935,2025-03-11T07:02:13.155150-07:00,991.6615600585938,10.820276,10820.276 +33936,2025-03-11T07:02:23.987715-07:00,991.6691284179688,10.832565,10832.565 +33937,2025-03-11T07:02:34.812813-07:00,991.6361083984375,10.825098,10825.098 +33938,2025-03-11T07:02:45.650776-07:00,991.6351318359375,10.837963,10837.963 +33939,2025-03-11T07:02:56.482859-07:00,991.6615600585938,10.832083,10832.083 +33940,2025-03-11T07:03:07.306720-07:00,991.6681518554688,10.823861,10823.861 +33941,2025-03-11T07:03:18.140762-07:00,991.6559448242188,10.834042,10834.042 +33942,2025-03-11T07:03:28.965786-07:00,991.695556640625,10.825024,10825.024 +33943,2025-03-11T07:03:39.797720-07:00,991.6615600585938,10.831934,10831.934 +33944,2025-03-11T07:03:50.619999-07:00,991.67578125,10.822279,10822.279 +33945,2025-03-11T07:04:01.454917-07:00,991.6559448242188,10.834918,10834.918 +33946,2025-03-11T07:04:12.275113-07:00,991.6681518554688,10.820196,10820.196 +33947,2025-03-11T07:04:23.101714-07:00,991.6571655273438,10.826601,10826.601 +33948,2025-03-11T07:04:33.937720-07:00,991.663818359375,10.836006,10836.006 +33949,2025-03-11T07:04:44.765721-07:00,991.6648559570312,10.828001,10828.001 +33950,2025-03-11T07:04:55.596715-07:00,991.693603515625,10.830994,10830.994 +33951,2025-03-11T07:05:06.421965-07:00,991.6592407226562,10.82525,10825.25 +33952,2025-03-11T07:05:17.248757-07:00,991.665771484375,10.826792,10826.792 +33953,2025-03-11T07:05:28.075842-07:00,991.6526489257812,10.827085,10827.085 +33954,2025-03-11T07:05:38.908386-07:00,991.6790771484375,10.832544,10832.544 +33955,2025-03-11T07:05:49.744693-07:00,991.6903076171875,10.836307,10836.307 +33956,2025-03-11T07:06:00.577140-07:00,991.6592407226562,10.832447,10832.447 +33957,2025-03-11T07:06:11.413137-07:00,991.66943359375,10.835997,10835.997 +33958,2025-03-11T07:06:22.239717-07:00,991.662841796875,10.82658,10826.58 +33959,2025-03-11T07:06:33.061697-07:00,991.623291015625,10.82198,10821.98 +33960,2025-03-11T07:06:43.894848-07:00,991.662841796875,10.833151,10833.151 +33961,2025-03-11T07:06:54.729007-07:00,991.650634765625,10.834159,10834.159 +33962,2025-03-11T07:07:05.644476-07:00,991.6242065429688,10.915469,10915.469 +33963,2025-03-11T07:07:16.469126-07:00,991.6375122070312,10.82465,10824.65 +33964,2025-03-11T07:07:27.305023-07:00,991.6322021484375,10.835897,10835.897 +33965,2025-03-11T07:07:38.125251-07:00,991.6464233398438,10.820228,10820.228 +33966,2025-03-11T07:07:48.957874-07:00,991.6464233398438,10.832623,10832.623 +33967,2025-03-11T07:07:59.791253-07:00,991.6542358398438,10.833379,10833.379 +33968,2025-03-11T07:08:10.623068-07:00,991.6133422851562,10.831815,10831.815 +33969,2025-03-11T07:08:21.444420-07:00,991.6212768554688,10.821352,10821.352 +33970,2025-03-11T07:08:32.274295-07:00,991.63671875,10.829875,10829.875 +33971,2025-03-11T07:08:43.105230-07:00,991.6311645507812,10.830935,10830.935 +33972,2025-03-11T07:08:53.934188-07:00,991.6500244140625,10.828958,10828.958 +33973,2025-03-11T07:09:04.764855-07:00,991.603759765625,10.830667,10830.667 +33974,2025-03-11T07:09:15.588929-07:00,991.6390380859375,10.824074,10824.074 +33975,2025-03-11T07:09:26.420477-07:00,991.6268920898438,10.831548,10831.548 +33976,2025-03-11T07:09:37.250918-07:00,991.646728515625,10.830441,10830.441 +33977,2025-03-11T07:09:48.078024-07:00,991.673095703125,10.827106,10827.106 +33978,2025-03-11T07:09:58.908870-07:00,991.6489868164062,10.830846,10830.846 +33979,2025-03-11T07:10:09.728129-07:00,991.604736328125,10.819259,10819.259 +33980,2025-03-11T07:10:20.545854-07:00,991.646728515625,10.817725,10817.725 +33981,2025-03-11T07:10:31.382477-07:00,991.6400756835938,10.836623,10836.623 +33982,2025-03-11T07:10:42.206868-07:00,991.6281127929688,10.824391,10824.391 +33983,2025-03-11T07:10:53.026873-07:00,991.634765625,10.820005,10820.005 +33984,2025-03-11T07:11:03.850233-07:00,991.6612548828125,10.82336,10823.36 +33985,2025-03-11T07:11:14.680841-07:00,991.6489868164062,10.830608,10830.608 +33986,2025-03-11T07:11:25.508329-07:00,991.670166015625,10.827488,10827.488 +33987,2025-03-11T07:11:36.327868-07:00,991.6578979492188,10.819539,10819.539 +33988,2025-03-11T07:11:47.153005-07:00,991.7117309570312,10.825137,10825.137 +33989,2025-03-11T07:11:57.991242-07:00,991.7067260742188,10.838237,10838.237 +33990,2025-03-11T07:12:08.816652-07:00,991.696533203125,10.82541,10825.41 +33991,2025-03-11T07:12:19.642955-07:00,991.69091796875,10.826303,10826.303 +33992,2025-03-11T07:12:30.462935-07:00,991.698486328125,10.81998,10819.98 +33993,2025-03-11T07:12:41.288535-07:00,991.6654663085938,10.8256,10825.6 +33994,2025-03-11T07:12:52.120860-07:00,991.698486328125,10.832325,10832.325 +33995,2025-03-11T07:13:02.946872-07:00,991.685302734375,10.826012,10826.012 +33996,2025-03-11T07:13:13.770869-07:00,991.697509765625,10.823997,10823.997 +33997,2025-03-11T07:13:24.592383-07:00,991.7315673828125,10.821514,10821.514 +33998,2025-03-11T07:13:35.419851-07:00,991.7117309570312,10.827468,10827.468 +33999,2025-03-11T07:13:46.239858-07:00,991.723876953125,10.820007,10820.007 +34000,2025-03-11T07:13:57.071643-07:00,991.7249145507812,10.831785,10831.785 +34001,2025-03-11T07:14:07.890872-07:00,991.7579956054688,10.819229,10819.229 +34002,2025-03-11T07:14:18.716260-07:00,991.7447509765625,10.825388,10825.388 +34003,2025-03-11T07:14:29.551066-07:00,991.7380981445312,10.834806,10834.806 +34004,2025-03-11T07:14:40.376349-07:00,991.7514038085938,10.825283,10825.283 +34005,2025-03-11T07:14:51.197627-07:00,991.7579956054688,10.821278,10821.278 +34006,2025-03-11T07:15:02.022921-07:00,991.7427368164062,10.825294,10825.294 +34007,2025-03-11T07:15:12.851874-07:00,991.7625732421875,10.828953,10828.953 +34008,2025-03-11T07:15:23.680924-07:00,991.7371826171875,10.82905,10829.05 +34009,2025-03-11T07:15:34.504141-07:00,991.7173461914062,10.823217,10823.217 +34010,2025-03-11T07:15:45.326123-07:00,991.736083984375,10.821982,10821.982 +34011,2025-03-11T07:15:56.158207-07:00,991.7579956054688,10.832084,10832.084 +34012,2025-03-11T07:16:06.978051-07:00,991.7503051757812,10.819844,10819.844 +34013,2025-03-11T07:16:17.797981-07:00,991.7380981445312,10.81993,10819.93 +34014,2025-03-11T07:16:28.624874-07:00,991.7503051757812,10.826893,10826.893 +34015,2025-03-11T07:16:39.449994-07:00,991.7636108398438,10.82512,10825.12 +34016,2025-03-11T07:16:50.275155-07:00,991.7427368164062,10.825161,10825.161 +34017,2025-03-11T07:17:01.096881-07:00,991.7625732421875,10.821726,10821.726 +34018,2025-03-11T07:17:11.922141-07:00,991.7427368164062,10.82526,10825.26 +34019,2025-03-11T07:17:22.748180-07:00,991.7061157226562,10.826039,10826.039 +34020,2025-03-11T07:17:33.574339-07:00,991.736083984375,10.826159,10826.159 +34021,2025-03-11T07:17:44.389403-07:00,991.7206420898438,10.815064,10815.064 +34022,2025-03-11T07:17:55.210101-07:00,991.76123046875,10.820698,10820.698 +34023,2025-03-11T07:18:06.030113-07:00,991.73486328125,10.820012,10820.012 +34024,2025-03-11T07:18:16.850403-07:00,991.69287109375,10.82029,10820.29 +34025,2025-03-11T07:18:27.671469-07:00,991.740478515625,10.821066,10821.066 +34026,2025-03-11T07:18:38.494937-07:00,991.7193603515625,10.823468,10823.468 +34027,2025-03-11T07:18:49.317188-07:00,991.7061157226562,10.822251,10822.251 +34028,2025-03-11T07:19:00.135864-07:00,991.6787719726562,10.818676,10818.676 +34029,2025-03-11T07:19:10.970198-07:00,991.7051391601562,10.834334,10834.334 +34030,2025-03-11T07:19:21.794240-07:00,991.7315673828125,10.824042,10824.042 +34031,2025-03-11T07:19:32.610858-07:00,991.6906127929688,10.816618,10816.618 +34032,2025-03-11T07:19:43.430190-07:00,991.7093505859375,10.819332,10819.332 +34033,2025-03-11T07:19:54.255203-07:00,991.7103881835938,10.825013,10825.013 +34034,2025-03-11T07:20:05.081259-07:00,991.72265625,10.826056,10826.056 +34035,2025-03-11T07:20:15.900243-07:00,991.7212524414062,10.818984,10818.984 +34036,2025-03-11T07:20:26.719941-07:00,991.7146606445312,10.819698,10819.698 +34037,2025-03-11T07:20:37.542820-07:00,991.7081298828125,10.822879,10822.879 +34038,2025-03-11T07:20:48.373074-07:00,991.7160034179688,10.830254,10830.254 +34039,2025-03-11T07:20:59.189871-07:00,991.7146606445312,10.816797,10816.797 +34040,2025-03-11T07:21:10.010854-07:00,991.6873168945312,10.820983,10820.983 +34041,2025-03-11T07:21:20.829849-07:00,991.7357788085938,10.818995,10818.995 +34042,2025-03-11T07:21:31.656966-07:00,991.7345581054688,10.827117,10827.117 +34043,2025-03-11T07:21:42.470829-07:00,991.7345581054688,10.813863,10813.863 +34044,2025-03-11T07:21:53.302863-07:00,991.7279052734375,10.832034,10832.034 +34045,2025-03-11T07:22:04.124410-07:00,991.7070922851562,10.821547,10821.547 +34046,2025-03-11T07:22:14.947081-07:00,991.7345581054688,10.822671,10822.671 +34047,2025-03-11T07:22:25.765092-07:00,991.7212524414062,10.818011,10818.011 +34048,2025-03-11T07:22:36.589213-07:00,991.7368774414062,10.824121,10824.121 +34049,2025-03-11T07:22:47.410172-07:00,991.7446899414062,10.820959,10820.959 +34050,2025-03-11T07:22:58.229000-07:00,991.729248046875,10.818828,10818.828 +34051,2025-03-11T07:23:09.056866-07:00,991.7249145507812,10.827866,10827.866 +34052,2025-03-11T07:23:19.887074-07:00,991.730224609375,10.830208,10830.208 +34053,2025-03-11T07:23:30.714734-07:00,991.7357788085938,10.82766,10827.66 +34054,2025-03-11T07:23:41.533872-07:00,991.7523193359375,10.819138,10819.138 +34055,2025-03-11T07:23:52.355908-07:00,991.7734375,10.822036,10822.036 +34056,2025-03-11T07:24:03.181004-07:00,991.772216796875,10.825096,10825.096 +34057,2025-03-11T07:24:14.002338-07:00,991.7315673828125,10.821334,10821.334 +34058,2025-03-11T07:24:24.822872-07:00,991.7655639648438,10.820534,10820.534 +34059,2025-03-11T07:24:35.642870-07:00,991.7800903320312,10.819998,10819.998 +34060,2025-03-11T07:24:46.461883-07:00,991.7800903320312,10.819013,10819.013 +34061,2025-03-11T07:24:57.286211-07:00,991.8074951171875,10.824328,10824.328 +34062,2025-03-11T07:25:08.108866-07:00,991.7876586914062,10.822655,10822.655 +34063,2025-03-11T07:25:18.945106-07:00,991.8087768554688,10.83624,10836.24 +34064,2025-03-11T07:25:29.755922-07:00,991.7734375,10.810816,10810.816 +34065,2025-03-11T07:25:40.580988-07:00,991.822021484375,10.825066,10825.066 +34066,2025-03-11T07:25:51.403180-07:00,991.8021850585938,10.822192,10822.192 +34067,2025-03-11T07:26:02.231868-07:00,991.81640625,10.828688,10828.688 +34068,2025-03-11T07:26:13.064460-07:00,991.7890014648438,10.832592,10832.592 +34069,2025-03-11T07:26:23.889114-07:00,991.7965698242188,10.824654,10824.654 +34070,2025-03-11T07:26:34.716838-07:00,991.80419921875,10.827724,10827.724 +34071,2025-03-11T07:26:45.541002-07:00,991.8322143554688,10.824164,10824.164 +34072,2025-03-11T07:26:56.364236-07:00,991.845458984375,10.823234,10823.234 +34073,2025-03-11T07:27:07.188258-07:00,991.846435546875,10.824022,10824.022 +34074,2025-03-11T07:27:18.020874-07:00,991.8543701171875,10.832616,10832.616 +34075,2025-03-11T07:27:28.846030-07:00,991.8596801757812,10.825156,10825.156 +34076,2025-03-11T07:27:39.665923-07:00,991.8388061523438,10.819893,10819.893 +34077,2025-03-11T07:27:50.487847-07:00,991.8570556640625,10.821924,10821.924 +34078,2025-03-11T07:28:01.311862-07:00,991.8794555664062,10.824015,10824.015 +34079,2025-03-11T07:28:12.137868-07:00,991.872802734375,10.826006,10826.006 +34080,2025-03-11T07:28:22.972452-07:00,991.85205078125,10.834584,10834.584 +34081,2025-03-11T07:28:33.799195-07:00,991.8662719726562,10.826743,10826.743 +34082,2025-03-11T07:28:44.621219-07:00,991.8794555664062,10.822024,10822.024 +34083,2025-03-11T07:28:55.443984-07:00,991.8322143554688,10.822765,10822.765 +34084,2025-03-11T07:29:06.276146-07:00,991.8596801757812,10.832162,10832.162 +34085,2025-03-11T07:29:17.101012-07:00,991.8685913085938,10.824866,10824.866 +34086,2025-03-11T07:29:27.928297-07:00,991.8741455078125,10.827285,10827.285 +34087,2025-03-11T07:29:38.749384-07:00,991.8265380859375,10.821087,10821.087 +34088,2025-03-11T07:29:49.578994-07:00,991.8609619140625,10.82961,10829.61 +34089,2025-03-11T07:30:00.407115-07:00,991.8662719726562,10.828121,10828.121 +34090,2025-03-11T07:30:11.225099-07:00,991.8200073242188,10.817984,10817.984 +34091,2025-03-11T07:30:22.057266-07:00,991.8609619140625,10.832167,10832.167 +34092,2025-03-11T07:30:32.872872-07:00,991.8388061523438,10.815606,10815.606 +34093,2025-03-11T07:30:43.701217-07:00,991.8477172851562,10.828345,10828.345 +34094,2025-03-11T07:30:54.527869-07:00,991.8331909179688,10.826652,10826.652 +34095,2025-03-11T07:31:05.349844-07:00,991.85205078125,10.821975,10821.975 +34096,2025-03-11T07:31:16.179023-07:00,991.8388061523438,10.829179,10829.179 +34097,2025-03-11T07:31:27.007694-07:00,991.82958984375,10.828671,10828.671 +34098,2025-03-11T07:31:37.823292-07:00,991.8543701171875,10.815598,10815.598 +34099,2025-03-11T07:31:48.654298-07:00,991.8388061523438,10.831006,10831.006 +34100,2025-03-11T07:31:59.482417-07:00,991.819091796875,10.828119,10828.119 +34101,2025-03-11T07:32:10.307962-07:00,991.8068237304688,10.825545,10825.545 +34102,2025-03-11T07:32:21.132055-07:00,991.810791015625,10.824093,10824.093 +34103,2025-03-11T07:32:31.964874-07:00,991.7728271484375,10.832819,10832.819 +34104,2025-03-11T07:32:42.788940-07:00,991.810791015625,10.824066,10824.066 +34105,2025-03-11T07:32:53.615193-07:00,991.8123168945312,10.826253,10826.253 +34106,2025-03-11T07:33:04.451102-07:00,991.8256225585938,10.835909,10835.909 +34107,2025-03-11T07:33:15.273112-07:00,991.8057861328125,10.82201,10822.01 +34108,2025-03-11T07:33:26.095124-07:00,991.8001708984375,10.822012,10822.012 +34109,2025-03-11T07:33:36.926488-07:00,991.7935791015625,10.831364,10831.364 +34110,2025-03-11T07:33:47.752913-07:00,991.797607421875,10.826425,10826.425 +34111,2025-03-11T07:33:58.577176-07:00,991.7711791992188,10.824263,10824.263 +34112,2025-03-11T07:34:09.397875-07:00,991.7793579101562,10.820699,10820.699 +34113,2025-03-11T07:34:20.229707-07:00,991.7569580078125,10.831832,10831.832 +34114,2025-03-11T07:34:31.050913-07:00,991.797607421875,10.821206,10821.206 +34115,2025-03-11T07:34:41.876868-07:00,991.8123168945312,10.825955,10825.955 +34116,2025-03-11T07:34:52.713118-07:00,991.7935791015625,10.83625,10836.25 +34117,2025-03-11T07:35:03.544924-07:00,991.7514038085938,10.831806,10831.806 +34118,2025-03-11T07:35:14.372013-07:00,991.7728271484375,10.827089,10827.089 +34119,2025-03-11T07:35:25.203209-07:00,991.7870483398438,10.831196,10831.196 +34120,2025-03-11T07:35:36.018203-07:00,991.7737426757812,10.814994,10814.994 +34121,2025-03-11T07:35:46.848923-07:00,991.78173828125,10.83072,10830.72 +34122,2025-03-11T07:35:57.679874-07:00,991.7870483398438,10.830951,10830.951 +34123,2025-03-11T07:36:08.498229-07:00,991.8001708984375,10.818355,10818.355 +34124,2025-03-11T07:36:19.332244-07:00,991.7606201171875,10.834015,10834.015 +34125,2025-03-11T07:36:30.153201-07:00,991.7826538085938,10.820957,10820.957 +34126,2025-03-11T07:36:40.986140-07:00,991.7672119140625,10.832939,10832.939 +34127,2025-03-11T07:36:51.797495-07:00,991.7672119140625,10.811355,10811.355 +34128,2025-03-11T07:37:02.623096-07:00,991.801513671875,10.825601,10825.601 +34129,2025-03-11T07:37:13.446457-07:00,991.801513671875,10.823361,10823.361 +34130,2025-03-11T07:37:24.266211-07:00,991.8134155273438,10.819754,10819.754 +34131,2025-03-11T07:37:35.084074-07:00,991.8123168945312,10.817863,10817.863 +34132,2025-03-11T07:37:45.906416-07:00,991.8200073242188,10.822342,10822.342 +34133,2025-03-11T07:37:56.737852-07:00,991.8173217773438,10.831436,10831.436 +34134,2025-03-11T07:38:07.559172-07:00,991.7579956054688,10.82132,10821.32 +34135,2025-03-11T07:38:18.373053-07:00,991.8134155273438,10.813881,10813.881 +34136,2025-03-11T07:38:29.200853-07:00,991.815673828125,10.8278,10827.8 +34137,2025-03-11T07:38:40.030228-07:00,991.8279418945312,10.829375,10829.375 +34138,2025-03-11T07:38:50.846903-07:00,991.8421020507812,10.816675,10816.675 +34139,2025-03-11T07:39:01.678159-07:00,991.8302612304688,10.831256,10831.256 +34140,2025-03-11T07:39:12.498874-07:00,991.8302612304688,10.820715,10820.715 +34141,2025-03-11T07:39:23.329869-07:00,991.8345336914062,10.830995,10830.995 +34142,2025-03-11T07:39:34.156711-07:00,991.85107421875,10.826842,10826.842 +34143,2025-03-11T07:39:44.976993-07:00,991.85107421875,10.820282,10820.282 +34144,2025-03-11T07:39:55.808479-07:00,991.839111328125,10.831486,10831.486 +34145,2025-03-11T07:40:06.638200-07:00,991.8523559570312,10.829721,10829.721 +34146,2025-03-11T07:40:17.456240-07:00,991.857666015625,10.81804,10818.04 +34147,2025-03-11T07:40:28.280093-07:00,991.8665771484375,10.823853,10823.853 +34148,2025-03-11T07:40:39.107870-07:00,991.8467407226562,10.827777,10827.777 +34149,2025-03-11T07:40:49.928193-07:00,991.8820190429688,10.820323,10820.323 +34150,2025-03-11T07:41:00.752867-07:00,991.8599853515625,10.824674,10824.674 +34151,2025-03-11T07:41:11.573497-07:00,991.87548828125,10.82063,10820.63 +34152,2025-03-11T07:41:22.401873-07:00,991.8622436523438,10.828376,10828.376 +34153,2025-03-11T07:41:33.225043-07:00,991.8635864257812,10.82317,10823.17 +34154,2025-03-11T07:41:44.050989-07:00,991.8767700195312,10.825946,10825.946 +34155,2025-03-11T07:41:54.870861-07:00,991.85693359375,10.819872,10819.872 +34156,2025-03-11T07:42:05.704163-07:00,991.85693359375,10.833302,10833.302 +34157,2025-03-11T07:42:16.523380-07:00,991.84375,10.819217,10819.217 +34158,2025-03-11T07:42:27.346411-07:00,991.8843994140625,10.823031,10823.031 +34159,2025-03-11T07:42:38.175866-07:00,991.8778076171875,10.829455,10829.455 +34160,2025-03-11T07:42:49.002919-07:00,991.8447875976562,10.827053,10827.053 +34161,2025-03-11T07:42:59.825198-07:00,991.8711547851562,10.822279,10822.279 +34162,2025-03-11T07:43:10.648859-07:00,991.8711547851562,10.823661,10823.661 +34163,2025-03-11T07:43:21.474272-07:00,991.8513793945312,10.825413,10825.413 +34164,2025-03-11T07:43:32.289866-07:00,991.8790893554688,10.815594,10815.594 +34165,2025-03-11T07:43:43.113864-07:00,991.8635864257812,10.823998,10823.998 +34166,2025-03-11T07:43:53.940977-07:00,991.8856811523438,10.827113,10827.113 +34167,2025-03-11T07:44:04.765849-07:00,991.8701782226562,10.824872,10824.872 +34168,2025-03-11T07:44:15.587191-07:00,991.850341796875,10.821342,10821.342 +34169,2025-03-11T07:44:26.417868-07:00,991.837158203125,10.830677,10830.677 +34170,2025-03-11T07:44:37.240273-07:00,991.8635864257812,10.822405,10822.405 +34171,2025-03-11T07:44:48.070105-07:00,991.8778076171875,10.829832,10829.832 +34172,2025-03-11T07:44:58.895860-07:00,991.8701782226562,10.825755,10825.755 +34173,2025-03-11T07:45:09.717169-07:00,991.84375,10.821309,10821.309 +34174,2025-03-11T07:45:20.544847-07:00,991.8612670898438,10.827678,10827.678 +34175,2025-03-11T07:45:31.375219-07:00,991.8834228515625,10.830372,10830.372 +34176,2025-03-11T07:45:42.202011-07:00,991.8556518554688,10.826792,10826.792 +34177,2025-03-11T07:45:53.023281-07:00,991.8701782226562,10.82127,10821.27 +34178,2025-03-11T07:46:03.847367-07:00,991.8767700195312,10.824086,10824.086 +34179,2025-03-11T07:46:14.673104-07:00,991.8767700195312,10.825737,10825.737 +34180,2025-03-11T07:46:25.494921-07:00,991.8965454101562,10.821817,10821.817 +34181,2025-03-11T07:46:36.331300-07:00,991.8909301757812,10.836379,10836.379 +34182,2025-03-11T07:46:47.152448-07:00,991.8834228515625,10.821148,10821.148 +34183,2025-03-11T07:46:57.981868-07:00,991.9031982421875,10.82942,10829.42 +34184,2025-03-11T07:47:08.813872-07:00,991.9031982421875,10.832004,10832.004 +34185,2025-03-11T07:47:19.647025-07:00,991.8731079101562,10.833153,10833.153 +34186,2025-03-11T07:47:30.470364-07:00,991.894287109375,10.823339,10823.339 +34187,2025-03-11T07:47:41.304874-07:00,991.8876342773438,10.83451,10834.51 +34188,2025-03-11T07:47:52.129916-07:00,991.9349365234375,10.825042,10825.042 +34189,2025-03-11T07:48:02.964350-07:00,991.9163818359375,10.834434,10834.434 +34190,2025-03-11T07:48:13.788172-07:00,991.87548828125,10.823822,10823.822 +34191,2025-03-11T07:48:24.620862-07:00,991.9009399414062,10.83269,10832.69 +34192,2025-03-11T07:48:35.447422-07:00,991.9151611328125,10.82656,10826.56 +34193,2025-03-11T07:48:46.273919-07:00,991.8995361328125,10.826497,10826.497 +34194,2025-03-11T07:48:57.108872-07:00,991.8864135742188,10.834953,10834.953 +34195,2025-03-11T07:49:07.935961-07:00,991.8995361328125,10.827089,10827.089 +34196,2025-03-11T07:49:18.768479-07:00,991.8665771484375,10.832518,10832.518 +34197,2025-03-11T07:49:29.588885-07:00,991.8336181640625,10.820406,10820.406 +34198,2025-03-11T07:49:40.425047-07:00,991.8972778320312,10.836162,10836.162 +34199,2025-03-11T07:49:51.249841-07:00,991.8599853515625,10.824794,10824.794 +34200,2025-03-11T07:50:02.078077-07:00,991.844482421875,10.828236,10828.236 +34201,2025-03-11T07:50:12.908915-07:00,991.8665771484375,10.830838,10830.838 +34202,2025-03-11T07:50:23.741877-07:00,991.8920288085938,10.832962,10832.962 +34203,2025-03-11T07:50:34.560847-07:00,991.8731079101562,10.81897,10818.97 +34204,2025-03-11T07:50:45.387862-07:00,991.87451171875,10.827015,10827.015 +34205,2025-03-11T07:50:56.217944-07:00,991.8612670898438,10.830082,10830.082 +34206,2025-03-11T07:51:07.040344-07:00,991.8778076171875,10.8224,10822.4 +34207,2025-03-11T07:51:17.876097-07:00,991.8602905273438,10.835753,10835.753 +34208,2025-03-11T07:51:28.702313-07:00,991.8771362304688,10.826216,10826.216 +34209,2025-03-11T07:51:39.527992-07:00,991.9002075195312,10.825679,10825.679 +34210,2025-03-11T07:51:50.361092-07:00,991.8837280273438,10.8331,10833.1 +34211,2025-03-11T07:52:01.196859-07:00,991.8662719726562,10.835767,10835.767 +34212,2025-03-11T07:52:12.024193-07:00,991.884033203125,10.827334,10827.334 +34213,2025-03-11T07:52:22.854888-07:00,991.8599243164062,10.830695,10830.695 +34214,2025-03-11T07:52:33.673956-07:00,991.8314819335938,10.819068,10819.068 +34215,2025-03-11T07:52:44.500853-07:00,991.9087524414062,10.826897,10826.897 +34216,2025-03-11T07:52:55.327251-07:00,991.90673828125,10.826398,10826.398 +34217,2025-03-11T07:53:06.152859-07:00,991.8903198242188,10.825608,10825.608 +34218,2025-03-11T07:53:16.973870-07:00,991.87939453125,10.821011,10821.011 +34219,2025-03-11T07:53:27.806014-07:00,991.897216796875,10.832144,10832.144 +34220,2025-03-11T07:53:38.626927-07:00,991.892822265625,10.820913,10820.913 +34221,2025-03-11T07:53:49.462856-07:00,991.8763427734375,10.835929,10835.929 +34222,2025-03-11T07:54:00.290120-07:00,991.8800048828125,10.827264,10827.264 +34223,2025-03-11T07:54:11.116147-07:00,991.9053344726562,10.826027,10826.027 +34224,2025-03-11T07:54:21.943187-07:00,991.9156494140625,10.82704,10827.04 +34225,2025-03-11T07:54:32.782921-07:00,991.9046630859375,10.839734,10839.734 +34226,2025-03-11T07:54:43.609582-07:00,991.921142578125,10.826661,10826.661 +34227,2025-03-11T07:54:54.437868-07:00,991.9191284179688,10.828286,10828.286 +34228,2025-03-11T07:55:05.269436-07:00,991.9171752929688,10.831568,10831.568 +34229,2025-03-11T07:55:16.094877-07:00,991.9326782226562,10.825441,10825.441 +34230,2025-03-11T07:55:26.912844-07:00,991.9174194335938,10.817967,10817.967 +34231,2025-03-11T07:55:37.745526-07:00,991.9481201171875,10.832682,10832.682 +34232,2025-03-11T07:55:48.565864-07:00,991.9296264648438,10.820338,10820.338 +34233,2025-03-11T07:55:59.386265-07:00,991.919677734375,10.820401,10820.401 +34234,2025-03-11T07:56:10.212883-07:00,991.9639282226562,10.826618,10826.618 +34235,2025-03-11T07:56:21.034911-07:00,991.9542846679688,10.822028,10822.028 +34236,2025-03-11T07:56:31.859203-07:00,991.9642333984375,10.824292,10824.292 +34237,2025-03-11T07:56:42.686415-07:00,991.9786987304688,10.827212,10827.212 +34238,2025-03-11T07:56:53.518934-07:00,992.0250244140625,10.832519,10832.519 +34239,2025-03-11T07:57:04.347011-07:00,991.986572265625,10.828077,10828.077 +34240,2025-03-11T07:57:15.181683-07:00,992.036376953125,10.834672,10834.672 +34241,2025-03-11T07:57:26.008844-07:00,992.01123046875,10.827161,10827.161 +34242,2025-03-11T07:57:36.845369-07:00,992.0003662109375,10.836525,10836.525 +34243,2025-03-11T07:57:47.668906-07:00,992.0225219726562,10.823537,10823.537 +34244,2025-03-11T07:57:58.508104-07:00,992.0079956054688,10.839198,10839.198 +34245,2025-03-11T07:58:09.340339-07:00,992.016845703125,10.832235,10832.235 +34246,2025-03-11T07:58:20.171107-07:00,991.9983520507812,10.830768,10830.768 +34247,2025-03-11T07:58:31.005138-07:00,992.0446166992188,10.834031,10834.031 +34248,2025-03-11T07:58:41.840132-07:00,992.0624389648438,10.834994,10834.994 +34249,2025-03-11T07:58:52.675001-07:00,992.058837890625,10.834869,10834.869 +34250,2025-03-11T07:59:03.498871-07:00,992.0700073242188,10.82387,10823.87 +34251,2025-03-11T07:59:14.323880-07:00,992.0624389648438,10.825009,10825.009 +34252,2025-03-11T07:59:25.155051-07:00,992.0643920898438,10.831171,10831.171 +34253,2025-03-11T07:59:35.987443-07:00,992.0501708984375,10.832392,10832.392 +34254,2025-03-11T07:59:46.825641-07:00,992.0855712890625,10.838198,10838.198 +34255,2025-03-11T07:59:57.661874-07:00,992.0643920898438,10.836233,10836.233 +34256,2025-03-11T08:00:08.487945-07:00,992.0987548828125,10.826071,10826.071 +34257,2025-03-11T08:00:19.325301-07:00,992.0643920898438,10.837356,10837.356 +34258,2025-03-11T08:00:30.152924-07:00,992.0634155273438,10.827623,10827.623 +34259,2025-03-11T08:00:40.988323-07:00,992.07666015625,10.835399,10835.399 +34260,2025-03-11T08:00:51.815088-07:00,992.0908813476562,10.826765,10826.765 +34261,2025-03-11T08:01:02.649195-07:00,992.08984375,10.834107,10834.107 +34262,2025-03-11T08:01:13.472877-07:00,992.112060546875,10.823682,10823.682 +34263,2025-03-11T08:01:24.304215-07:00,992.0798950195312,10.831338,10831.338 +34264,2025-03-11T08:01:35.130843-07:00,992.0855712890625,10.826628,10826.628 +34265,2025-03-11T08:01:45.963205-07:00,992.0865478515625,10.832362,10832.362 +34266,2025-03-11T08:01:56.796867-07:00,992.0931396484375,10.833662,10833.662 +34267,2025-03-11T08:02:07.625275-07:00,992.10107421875,10.828408,10828.408 +34268,2025-03-11T08:02:18.464110-07:00,992.103271484375,10.838835,10838.835 +34269,2025-03-11T08:02:29.293874-07:00,992.0725708007812,10.829764,10829.764 +34270,2025-03-11T08:02:40.126918-07:00,992.0725708007812,10.833044,10833.044 +34271,2025-03-11T08:02:50.951911-07:00,992.0725708007812,10.824993,10824.993 +34272,2025-03-11T08:03:01.783094-07:00,992.0669555664062,10.831183,10831.183 +34273,2025-03-11T08:03:12.622319-07:00,992.08251953125,10.839225,10839.225 +34274,2025-03-11T08:03:23.454170-07:00,992.0728149414062,10.831851,10831.851 +34275,2025-03-11T08:03:34.284054-07:00,992.0772094726562,10.829884,10829.884 +34276,2025-03-11T08:03:45.117161-07:00,992.0861206054688,10.833107,10833.107 +34277,2025-03-11T08:03:55.939875-07:00,992.0804443359375,10.822714,10822.714 +34278,2025-03-11T08:04:06.769409-07:00,992.0861206054688,10.829534,10829.534 +34279,2025-03-11T08:04:17.593278-07:00,992.039794921875,10.823869,10823.869 +34280,2025-03-11T08:04:28.420215-07:00,992.0198974609375,10.826937,10826.937 +34281,2025-03-11T08:04:39.258873-07:00,992.0628662109375,10.838658,10838.658 +34282,2025-03-11T08:04:50.092853-07:00,992.03076171875,10.83398,10833.98 +34283,2025-03-11T08:05:00.927244-07:00,992.0452880859375,10.834391,10834.391 +34284,2025-03-11T08:05:11.758091-07:00,992.0321044921875,10.830847,10830.847 +34285,2025-03-11T08:05:11.758091-07:00,992.0321044921875,0.0,0.0 +34286,2025-03-11T08:05:22.583865-07:00,992.0067138671875,10.825774,10825.774 +34287,2025-03-11T08:05:22.583865-07:00,992.0067138671875,0.0,0.0 +34288,2025-03-11T08:05:33.416873-07:00,991.9957885742188,10.833008,10833.008 +34289,2025-03-11T08:05:33.416873-07:00,991.9957885742188,0.0,0.0 +34290,2025-03-11T08:05:44.249772-07:00,991.9970092773438,10.832899,10832.899 +34291,2025-03-11T08:05:55.074254-07:00,992.017822265625,10.824482,10824.482 +34292,2025-03-11T08:06:05.913365-07:00,992.0201416015625,10.839111,10839.111 +34293,2025-03-11T08:06:16.748003-07:00,992.0158081054688,10.834638,10834.638 +34294,2025-03-11T08:06:27.580875-07:00,991.9949951171875,10.832872,10832.872 +34295,2025-03-11T08:06:38.412906-07:00,991.9949951171875,10.832031,10832.031 +34296,2025-03-11T08:06:49.250945-07:00,991.97607421875,10.838039,10838.039 +34297,2025-03-11T08:07:00.082715-07:00,991.968505859375,10.83177,10831.77 +34298,2025-03-11T08:07:10.957238-07:00,991.9883422851562,10.874523,10874.523 +34299,2025-03-11T08:07:21.796012-07:00,991.98046875,10.838774,10838.774 +34300,2025-03-11T08:07:32.633528-07:00,991.9715576171875,10.837516,10837.516 +34301,2025-03-11T08:07:43.468013-07:00,991.9781494140625,10.834485,10834.485 +34302,2025-03-11T08:07:54.303061-07:00,991.9715576171875,10.835048,10835.048 +34303,2025-03-11T08:08:05.142314-07:00,991.955078125,10.839253,10839.253 +34304,2025-03-11T08:08:15.981212-07:00,991.9603881835938,10.838898,10838.898 +34305,2025-03-11T08:08:26.815010-07:00,991.9306030273438,10.833798,10833.798 +34306,2025-03-11T08:08:37.656344-07:00,991.9627075195312,10.841334,10841.334 +34307,2025-03-11T08:08:48.487011-07:00,991.9769287109375,10.830667,10830.667 +34308,2025-03-11T08:08:59.329826-07:00,991.9472045898438,10.842815,10842.815 +34309,2025-03-11T08:09:10.163788-07:00,991.9382934570312,10.833962,10833.962 +34310,2025-03-11T08:09:20.999994-07:00,991.9382934570312,10.836206,10836.206 +34311,2025-03-11T08:09:31.828374-07:00,991.9558715820312,10.82838,10828.38 +34312,2025-03-11T08:09:42.659226-07:00,991.9403076171875,10.830852,10830.852 +34313,2025-03-11T08:09:53.488441-07:00,991.9645385742188,10.829215,10829.215 +34314,2025-03-11T08:10:04.322013-07:00,991.935791015625,10.833572,10833.572 +34315,2025-03-11T08:10:15.155013-07:00,991.9476318359375,10.833,10833.0 +34316,2025-03-11T08:10:25.985051-07:00,991.9443969726562,10.830038,10830.038 +34317,2025-03-11T08:10:36.819259-07:00,991.9464111328125,10.834208,10834.208 +34318,2025-03-11T08:10:47.642003-07:00,991.9983520507812,10.822744,10822.744 +34319,2025-03-11T08:10:58.476017-07:00,991.9749145507812,10.834014,10834.014 +34320,2025-03-11T08:11:09.302185-07:00,991.98486328125,10.826168,10826.168 +34321,2025-03-11T08:11:20.132343-07:00,992.00244140625,10.830158,10830.158 +34322,2025-03-11T08:11:30.975969-07:00,991.9998168945312,10.843626,10843.626 +34323,2025-03-11T08:11:41.804007-07:00,991.9952392578125,10.828038,10828.038 +34324,2025-03-11T08:11:52.639060-07:00,992.01171875,10.835053,10835.053 +34325,2025-03-11T08:12:03.478105-07:00,992.0315551757812,10.839045,10839.045 +34326,2025-03-11T08:12:14.320007-07:00,992.0094604492188,10.841902,10841.902 +34327,2025-03-11T08:12:25.147334-07:00,992.0270385742188,10.827327,10827.327 +34328,2025-03-11T08:12:35.988360-07:00,992.0379638671875,10.841026,10841.026 +34329,2025-03-11T08:12:46.816157-07:00,992.0267333984375,10.827797,10827.797 +34330,2025-03-11T08:12:57.663011-07:00,992.044189453125,10.846854,10846.854 +34331,2025-03-11T08:13:08.495230-07:00,992.036376953125,10.832219,10832.219 +34332,2025-03-11T08:13:19.331239-07:00,991.994384765625,10.836009,10836.009 +34333,2025-03-11T08:13:30.166740-07:00,992.018798828125,10.835501,10835.501 +34334,2025-03-11T08:13:40.997009-07:00,992.037353515625,10.830269,10830.269 +34335,2025-03-11T08:13:51.822338-07:00,992.04296875,10.825329,10825.329 +34336,2025-03-11T08:14:02.659015-07:00,992.0614624023438,10.836677,10836.677 +34337,2025-03-11T08:14:13.494400-07:00,992.0856323242188,10.835385,10835.385 +34338,2025-03-11T08:14:24.321223-07:00,992.0790405273438,10.826823,10826.823 +34339,2025-03-11T08:14:35.155990-07:00,992.0978393554688,10.834767,10834.767 +34340,2025-03-11T08:14:45.998027-07:00,992.0955200195312,10.842037,10842.037 +34341,2025-03-11T08:14:56.834708-07:00,992.100830078125,10.836681,10836.681 +34342,2025-03-11T08:15:07.662343-07:00,992.099853515625,10.827635,10827.635 +34343,2025-03-11T08:15:18.498733-07:00,992.0711059570312,10.83639,10836.39 +34344,2025-03-11T08:15:29.340023-07:00,992.11181640625,10.84129,10841.29 +34345,2025-03-11T08:15:40.171622-07:00,992.0741577148438,10.831599,10831.599 +34346,2025-03-11T08:15:51.006049-07:00,992.0985717773438,10.834427,10834.427 +34347,2025-03-11T08:16:01.833057-07:00,992.1051635742188,10.827008,10827.008 +34348,2025-03-11T08:16:12.668514-07:00,992.1095581054688,10.835457,10835.457 +34349,2025-03-11T08:16:23.502664-07:00,992.1359252929688,10.83415,10834.15 +34350,2025-03-11T08:16:34.328405-07:00,992.120361328125,10.825741,10825.741 +34351,2025-03-11T08:16:45.164009-07:00,992.0926513671875,10.835604,10835.604 +34352,2025-03-11T08:16:55.995386-07:00,992.1181030273438,10.831377,10831.377 +34353,2025-03-11T08:17:06.835061-07:00,992.0946655273438,10.839675,10839.675 +34354,2025-03-11T08:17:17.665012-07:00,992.1068725585938,10.829951,10829.951 +34355,2025-03-11T08:17:28.501306-07:00,992.103271484375,10.836294,10836.294 +34356,2025-03-11T08:17:39.334204-07:00,992.0847778320312,10.832898,10832.898 +34357,2025-03-11T08:17:50.165600-07:00,992.0900268554688,10.831396,10831.396 +34358,2025-03-11T08:18:00.992261-07:00,992.1231079101562,10.826661,10826.661 +34359,2025-03-11T08:18:11.828066-07:00,992.1076049804688,10.835805,10835.805 +34360,2025-03-11T08:18:22.659271-07:00,992.1076049804688,10.831205,10831.205 +34361,2025-03-11T08:18:33.492022-07:00,992.092041015625,10.832751,10832.751 +34362,2025-03-11T08:18:44.329994-07:00,992.08447265625,10.837972,10837.972 +34363,2025-03-11T08:18:55.161012-07:00,992.10986328125,10.831018,10831.018 +34364,2025-03-11T08:19:05.989317-07:00,992.0822143554688,10.828305,10828.305 +34365,2025-03-11T08:19:16.825061-07:00,992.1151733398438,10.835744,10835.744 +34366,2025-03-11T08:19:27.657537-07:00,992.1076049804688,10.832476,10832.476 +34367,2025-03-11T08:19:38.485137-07:00,992.118408203125,10.8276,10827.6 +34368,2025-03-11T08:19:49.304323-07:00,992.110595703125,10.819186,10819.186 +34369,2025-03-11T08:20:00.131261-07:00,992.1161499023438,10.826938,10826.938 +34370,2025-03-11T08:20:10.966610-07:00,992.1082763671875,10.835349,10835.349 +34371,2025-03-11T08:20:21.793995-07:00,992.1138916015625,10.827385,10827.385 +34372,2025-03-11T08:20:32.630017-07:00,992.112548828125,10.836022,10836.022 +34373,2025-03-11T08:20:43.468453-07:00,992.1314086914062,10.838436,10838.436 +34374,2025-03-11T08:20:54.305192-07:00,992.10498046875,10.836739,10836.739 +34375,2025-03-11T08:21:05.135595-07:00,992.124755859375,10.830403,10830.403 +34376,2025-03-11T08:21:15.968070-07:00,992.143310546875,10.832475,10832.475 +34377,2025-03-11T08:21:26.798015-07:00,992.1343994140625,10.829945,10829.945 +34378,2025-03-11T08:21:37.630190-07:00,992.1400146484375,10.832175,10832.175 +34379,2025-03-11T08:21:48.456356-07:00,992.0924072265625,10.826166,10826.166 +34380,2025-03-11T08:21:59.290230-07:00,992.1177978515625,10.833874,10833.874 +34381,2025-03-11T08:22:10.132669-07:00,992.1221923828125,10.842439,10842.439 +34382,2025-03-11T08:22:20.957105-07:00,992.1165771484375,10.824436,10824.436 +34383,2025-03-11T08:22:31.789017-07:00,992.0725708007812,10.831912,10831.912 +34384,2025-03-11T08:22:42.622668-07:00,992.1043701171875,10.833651,10833.651 +34385,2025-03-11T08:22:53.452352-07:00,992.1109619140625,10.829684,10829.684 +34386,2025-03-11T08:23:04.285018-07:00,992.0756225585938,10.832666,10832.666 +34387,2025-03-11T08:23:15.113055-07:00,992.0756225585938,10.828037,10828.037 +34388,2025-03-11T08:23:25.937331-07:00,992.0943603515625,10.824276,10824.276 +34389,2025-03-11T08:23:36.775144-07:00,992.0943603515625,10.837813,10837.813 +34390,2025-03-11T08:23:47.600017-07:00,992.0789184570312,10.824873,10824.873 +34391,2025-03-11T08:23:58.439493-07:00,992.1185302734375,10.839476,10839.476 +34392,2025-03-11T08:24:09.274114-07:00,992.1029663085938,10.834621,10834.621 +34393,2025-03-11T08:24:20.107365-07:00,992.0753173828125,10.833251,10833.251 +34394,2025-03-11T08:24:30.943015-07:00,992.0884399414062,10.83565,10835.65 +34395,2025-03-11T08:24:41.779016-07:00,992.1007080078125,10.836001,10836.001 +34396,2025-03-11T08:24:52.613778-07:00,992.0928344726562,10.834762,10834.762 +34397,2025-03-11T08:25:03.443080-07:00,992.099365234375,10.829302,10829.302 +34398,2025-03-11T08:25:14.277599-07:00,992.111572265625,10.834519,10834.519 +34399,2025-03-11T08:25:25.109046-07:00,992.10498046875,10.831447,10831.447 +34400,2025-03-11T08:25:35.940012-07:00,992.0970458984375,10.830966,10830.966 +34401,2025-03-11T08:25:46.764099-07:00,992.1224975585938,10.824087,10824.087 +34402,2025-03-11T08:25:57.603996-07:00,992.0894775390625,10.839897,10839.897 +34403,2025-03-11T08:26:08.435392-07:00,992.0960693359375,10.831396,10831.396 +34404,2025-03-11T08:26:19.265995-07:00,992.1224975585938,10.830603,10830.603 +34405,2025-03-11T08:26:30.097398-07:00,992.1290893554688,10.831403,10831.403 +34406,2025-03-11T08:26:40.942175-07:00,992.1356811523438,10.844777,10844.777 +34407,2025-03-11T08:26:51.770994-07:00,992.1224975585938,10.828819,10828.819 +34408,2025-03-11T08:27:02.607045-07:00,992.1356811523438,10.836051,10836.051 +34409,2025-03-11T08:27:13.438165-07:00,992.1158447265625,10.83112,10831.12 +34410,2025-03-11T08:27:24.269329-07:00,992.1017456054688,10.831164,10831.164 +34411,2025-03-11T08:27:35.094068-07:00,992.131103515625,10.824739,10824.739 +34412,2025-03-11T08:27:45.932367-07:00,992.112548828125,10.838299,10838.299 +34413,2025-03-11T08:27:56.753016-07:00,992.112548828125,10.820649,10820.649 +34414,2025-03-11T08:28:07.583577-07:00,992.112548828125,10.830561,10830.561 +34415,2025-03-11T08:28:18.420007-07:00,992.10595703125,10.83643,10836.43 +34416,2025-03-11T08:28:29.253348-07:00,992.13232421875,10.833341,10833.341 +34417,2025-03-11T08:28:40.085012-07:00,992.1412353515625,10.831664,10831.664 +34418,2025-03-11T08:28:50.909713-07:00,992.10693359375,10.824701,10824.701 +34419,2025-03-11T08:29:01.741421-07:00,992.1158447265625,10.831708,10831.708 +34420,2025-03-11T08:29:12.574012-07:00,992.1356811523438,10.832591,10832.591 +34421,2025-03-11T08:29:23.406388-07:00,992.1158447265625,10.832376,10832.376 +34422,2025-03-11T08:29:34.244014-07:00,992.1554565429688,10.837626,10837.626 +34423,2025-03-11T08:29:45.080267-07:00,992.1158447265625,10.836253,10836.253 +34424,2025-03-11T08:29:55.910293-07:00,992.14990234375,10.830026,10830.026 +34425,2025-03-11T08:30:06.751019-07:00,992.143310546875,10.840726,10840.726 +34426,2025-03-11T08:30:17.582321-07:00,992.1565551757812,10.831302,10831.302 +34427,2025-03-11T08:30:28.422005-07:00,992.1158447265625,10.839684,10839.684 +34428,2025-03-11T08:30:39.248305-07:00,992.1554565429688,10.8263,10826.3 +34429,2025-03-11T08:30:50.082039-07:00,992.1720581054688,10.833734,10833.734 +34430,2025-03-11T08:31:00.915047-07:00,992.1961059570312,10.833008,10833.008 +34431,2025-03-11T08:31:11.758339-07:00,992.1961059570312,10.843292,10843.292 +34432,2025-03-11T08:31:22.588167-07:00,992.1710205078125,10.829828,10829.828 +34433,2025-03-11T08:31:33.416070-07:00,992.1631469726562,10.827903,10827.903 +34434,2025-03-11T08:31:44.252576-07:00,992.21826171875,10.836506,10836.506 +34435,2025-03-11T08:31:55.082075-07:00,992.1961059570312,10.829499,10829.499 +34436,2025-03-11T08:32:05.910013-07:00,992.1951293945312,10.827938,10827.938 +34437,2025-03-11T08:32:16.747017-07:00,992.208251953125,10.837004,10837.004 +34438,2025-03-11T08:32:27.578279-07:00,992.2215576171875,10.831262,10831.262 +34439,2025-03-11T08:32:38.413011-07:00,992.2347412109375,10.834732,10834.732 +34440,2025-03-11T08:32:49.255136-07:00,992.2413940429688,10.842125,10842.125 +34441,2025-03-11T08:33:00.086063-07:00,992.2281494140625,10.830927,10830.927 +34442,2025-03-11T08:33:10.924224-07:00,992.2008056640625,10.838161,10838.161 +34443,2025-03-11T08:33:21.748544-07:00,992.21923828125,10.82432,10824.32 +34444,2025-03-11T08:33:32.581261-07:00,992.2205200195312,10.832717,10832.717 +34445,2025-03-11T08:33:43.413131-07:00,992.2654418945312,10.83187,10831.87 +34446,2025-03-11T08:33:54.232013-07:00,992.1875,10.818882,10818.882 +34447,2025-03-11T08:34:05.064478-07:00,992.2720336914062,10.832465,10832.465 +34448,2025-03-11T08:34:15.896066-07:00,992.269775390625,10.831588,10831.588 +34449,2025-03-11T08:34:26.727808-07:00,992.2423706054688,10.831742,10831.742 +34450,2025-03-11T08:34:37.571529-07:00,992.2664184570312,10.843721,10843.721 +34451,2025-03-11T08:34:48.398066-07:00,992.2664184570312,10.826537,10826.537 +34452,2025-03-11T08:34:59.233555-07:00,992.2730712890625,10.835489,10835.489 +34453,2025-03-11T08:35:10.060016-07:00,992.26513671875,10.826461,10826.461 +34454,2025-03-11T08:35:20.889537-07:00,992.2420043945312,10.829521,10829.521 +34455,2025-03-11T08:35:31.710520-07:00,992.2815551757812,10.820983,10820.983 +34456,2025-03-11T08:35:42.540317-07:00,992.260498046875,10.829797,10829.797 +34457,2025-03-11T08:35:53.372012-07:00,992.2935180664062,10.831695,10831.695 +34458,2025-03-11T08:36:04.213005-07:00,992.2439575195312,10.840993,10840.993 +34459,2025-03-11T08:36:15.038013-07:00,992.2888793945312,10.825008,10825.008 +34460,2025-03-11T08:36:25.868594-07:00,992.2334594726562,10.830581,10830.581 +34461,2025-03-11T08:36:36.698382-07:00,992.2466430664062,10.829788,10829.788 +34462,2025-03-11T08:36:47.529354-07:00,992.2379760742188,10.830972,10830.972 +34463,2025-03-11T08:36:58.359062-07:00,992.2644653320312,10.829708,10829.708 +34464,2025-03-11T08:37:09.191624-07:00,992.253173828125,10.832562,10832.562 +34465,2025-03-11T08:37:20.025730-07:00,992.2584228515625,10.834106,10834.106 +34466,2025-03-11T08:37:30.856434-07:00,992.2650756835938,10.830704,10830.704 +34467,2025-03-11T08:37:41.687858-07:00,992.26171875,10.831424,10831.424 +34468,2025-03-11T08:37:52.520229-07:00,992.2340698242188,10.832371,10832.371 +34469,2025-03-11T08:38:03.353416-07:00,992.2472534179688,10.833187,10833.187 +34470,2025-03-11T08:38:14.184688-07:00,992.2449340820312,10.831272,10831.272 +34471,2025-03-11T08:38:25.015611-07:00,992.262451171875,10.830923,10830.923 +34472,2025-03-11T08:38:35.845013-07:00,992.2482299804688,10.829402,10829.402 +34473,2025-03-11T08:38:46.676037-07:00,992.2667236328125,10.831024,10831.024 +34474,2025-03-11T08:38:57.511066-07:00,992.2359619140625,10.835029,10835.029 +34475,2025-03-11T08:39:08.345358-07:00,992.2544555664062,10.834292,10834.292 +34476,2025-03-11T08:39:08.728537-07:00,992.2623291015625,0.383179,383.179 +34477,2025-03-11T08:39:19.166159-07:00,992.2455444335938,10.437622,10437.622 +34478,2025-03-11T08:39:29.993544-07:00,992.2313232421875,10.827385,10827.385 +34479,2025-03-11T08:39:40.833293-07:00,992.2267456054688,10.839749,10839.749 +34480,2025-03-11T08:39:51.655243-07:00,992.2398681640625,10.82195,10821.95 +34481,2025-03-11T08:40:02.488985-07:00,992.20556640625,10.833742,10833.742 +34482,2025-03-11T08:40:13.310194-07:00,992.2088012695312,10.821209,10821.209 +34483,2025-03-11T08:40:24.148298-07:00,992.200927734375,10.838104,10838.104 +34484,2025-03-11T08:40:34.984045-07:00,992.2262573242188,10.835747,10835.747 +34485,2025-03-11T08:40:45.817003-07:00,992.23291015625,10.832958,10832.958 +34486,2025-03-11T08:40:56.645013-07:00,992.2437744140625,10.82801,10828.01 +34487,2025-03-11T08:41:07.479633-07:00,992.2239990234375,10.83462,10834.62 +34488,2025-03-11T08:41:18.320760-07:00,992.2361450195312,10.841127,10841.127 +34489,2025-03-11T08:41:29.148138-07:00,992.20751953125,10.827378,10827.378 +34490,2025-03-11T08:41:39.975479-07:00,992.2008666992188,10.827341,10827.341 +34491,2025-03-11T08:41:50.817011-07:00,992.1839599609375,10.841532,10841.532 +34492,2025-03-11T08:42:01.638358-07:00,992.22265625,10.821347,10821.347 +34493,2025-03-11T08:42:12.471253-07:00,992.175048828125,10.832895,10832.895 +34494,2025-03-11T08:42:23.302087-07:00,992.2014770507812,10.830834,10830.834 +34495,2025-03-11T08:42:34.133148-07:00,992.20703125,10.831061,10831.061 +34496,2025-03-11T08:42:44.964505-07:00,992.2136840820312,10.831357,10831.357 +34497,2025-03-11T08:42:55.796060-07:00,992.2123413085938,10.831555,10831.555 +34498,2025-03-11T08:43:06.617971-07:00,992.2166137695312,10.821911,10821.911 +34499,2025-03-11T08:43:17.450254-07:00,992.2034301757812,10.832283,10832.283 +34500,2025-03-11T08:43:28.289066-07:00,992.2076416015625,10.838812,10838.812 +34501,2025-03-11T08:43:39.112120-07:00,992.2067260742188,10.823054,10823.054 +34502,2025-03-11T08:43:49.942001-07:00,992.2132568359375,10.829881,10829.881 +34503,2025-03-11T08:44:00.774942-07:00,992.191162109375,10.832941,10832.941 +34504,2025-03-11T08:44:11.607270-07:00,992.2175903320312,10.832328,10832.328 +34505,2025-03-11T08:44:22.446003-07:00,992.1954956054688,10.838733,10838.733 +34506,2025-03-11T08:44:33.272014-07:00,992.1954956054688,10.826011,10826.011 +34507,2025-03-11T08:44:44.105321-07:00,992.2162475585938,10.833307,10833.307 +34508,2025-03-11T08:44:54.944169-07:00,992.2142333984375,10.838848,10838.848 +34509,2025-03-11T08:45:05.776364-07:00,992.2152099609375,10.832195,10832.195 +34510,2025-03-11T08:45:16.600627-07:00,992.2129516601562,10.824263,10824.263 +34511,2025-03-11T08:45:27.435049-07:00,992.2118530273438,10.834422,10834.422 +34512,2025-03-11T08:45:38.261466-07:00,992.206298828125,10.826417,10826.417 +34513,2025-03-11T08:45:49.093017-07:00,992.2095336914062,10.831551,10831.551 +34514,2025-03-11T08:45:59.923317-07:00,992.18310546875,10.8303,10830.3 +34515,2025-03-11T08:46:10.760270-07:00,992.207275390625,10.836953,10836.953 +34516,2025-03-11T08:46:21.585561-07:00,992.2139282226562,10.825291,10825.291 +34517,2025-03-11T08:46:32.409009-07:00,992.20361328125,10.823448,10823.448 +34518,2025-03-11T08:46:43.239281-07:00,992.1904907226562,10.830272,10830.272 +34519,2025-03-11T08:46:54.072000-07:00,992.16064453125,10.832719,10832.719 +34520,2025-03-11T08:47:04.902002-07:00,992.16064453125,10.830002,10830.002 +34521,2025-03-11T08:47:15.727016-07:00,992.18701171875,10.825014,10825.014 +34522,2025-03-11T08:47:26.559424-07:00,992.1395263671875,10.832408,10832.408 +34523,2025-03-11T08:47:37.389014-07:00,992.197998046875,10.82959,10829.59 +34524,2025-03-11T08:47:48.221815-07:00,992.17578125,10.832801,10832.801 +34525,2025-03-11T08:47:59.048250-07:00,992.169189453125,10.826435,10826.435 +34526,2025-03-11T08:48:09.882206-07:00,992.1626586914062,10.833956,10833.956 +34527,2025-03-11T08:48:20.706267-07:00,992.1536865234375,10.824061,10824.061 +34528,2025-03-11T08:48:31.535947-07:00,992.1734619140625,10.82968,10829.68 +34529,2025-03-11T08:48:42.372124-07:00,992.1790771484375,10.836177,10836.177 +34530,2025-03-11T08:48:53.192068-07:00,992.1710815429688,10.819944,10819.944 +34531,2025-03-11T08:49:04.030055-07:00,992.1932983398438,10.837987,10837.987 +34532,2025-03-11T08:49:14.849059-07:00,992.1843872070312,10.819004,10819.004 +34533,2025-03-11T08:49:25.692066-07:00,992.1843872070312,10.843007,10843.007 +34534,2025-03-11T08:49:36.515816-07:00,992.1766967773438,10.82375,10823.75 +34535,2025-03-11T08:49:47.345314-07:00,992.1820068359375,10.829498,10829.498 +34536,2025-03-11T08:49:58.178111-07:00,992.1843872070312,10.832797,10832.797 +34537,2025-03-11T08:50:09.008552-07:00,992.1766967773438,10.830441,10830.441 +34538,2025-03-11T08:50:19.837995-07:00,992.209716796875,10.829443,10829.443 +34539,2025-03-11T08:50:30.678202-07:00,992.16455078125,10.840207,10840.207 +34540,2025-03-11T08:50:41.503254-07:00,992.196533203125,10.825052,10825.052 +34541,2025-03-11T08:50:52.336046-07:00,992.1621704101562,10.832792,10832.792 +34542,2025-03-11T08:51:03.164989-07:00,992.1820068359375,10.828943,10828.943 +34543,2025-03-11T08:51:13.986348-07:00,992.170166015625,10.821359,10821.359 +34544,2025-03-11T08:51:24.812285-07:00,992.1885986328125,10.825937,10825.937 +34545,2025-03-11T08:51:35.648288-07:00,992.1885986328125,10.836003,10836.003 +34546,2025-03-11T08:51:46.484007-07:00,992.1754760742188,10.835719,10835.719 +34547,2025-03-11T08:51:57.315007-07:00,992.18994140625,10.831,10831.0 +34548,2025-03-11T08:52:08.147060-07:00,992.203125,10.832053,10832.053 +34549,2025-03-11T08:52:18.981242-07:00,992.1952514648438,10.834182,10834.182 +34550,2025-03-11T08:52:29.806434-07:00,992.1885986328125,10.825192,10825.192 +34551,2025-03-11T08:52:40.633016-07:00,992.1952514648438,10.826582,10826.582 +34552,2025-03-11T08:52:51.461048-07:00,992.203125,10.828032,10828.032 +34553,2025-03-11T08:53:02.295999-07:00,992.2295532226562,10.834951,10834.951 +34554,2025-03-11T08:53:13.118302-07:00,992.21630859375,10.822303,10822.303 +34555,2025-03-11T08:53:23.947344-07:00,992.23486328125,10.829042,10829.042 +34556,2025-03-11T08:53:34.786600-07:00,992.2427368164062,10.839256,10839.256 +34557,2025-03-11T08:53:45.624226-07:00,992.2701416015625,10.837626,10837.626 +34558,2025-03-11T08:53:56.454850-07:00,992.2173461914062,10.830624,10830.624 +34559,2025-03-11T08:54:07.285016-07:00,992.2493896484375,10.830166,10830.166 +34560,2025-03-11T08:54:18.123344-07:00,992.25830078125,10.838328,10838.328 +34561,2025-03-11T08:54:28.953409-07:00,992.2625122070312,10.830065,10830.065 +34562,2025-03-11T08:54:39.788009-07:00,992.28466796875,10.8346,10834.6 +34563,2025-03-11T08:54:50.617604-07:00,992.2955322265625,10.829595,10829.595 +34564,2025-03-11T08:55:01.442147-07:00,992.2757568359375,10.824543,10824.543 +34565,2025-03-11T08:55:12.273607-07:00,992.2648315429688,10.83146,10831.46 +34566,2025-03-11T08:55:23.108288-07:00,992.2781372070312,10.834681,10834.681 +34567,2025-03-11T08:55:33.939599-07:00,992.271484375,10.831311,10831.311 +34568,2025-03-11T08:55:44.767068-07:00,992.251708984375,10.827469,10827.469 +34569,2025-03-11T08:55:55.597149-07:00,992.2648315429688,10.830081,10830.081 +34570,2025-03-11T08:56:06.437423-07:00,992.2781372070312,10.840274,10840.274 +34571,2025-03-11T08:56:17.262377-07:00,992.251708984375,10.824954,10824.954 +34572,2025-03-11T08:56:28.094720-07:00,992.2803955078125,10.832343,10832.343 +34573,2025-03-11T08:56:38.921017-07:00,992.271484375,10.826297,10826.297 +34574,2025-03-11T08:56:49.745951-07:00,992.2725219726562,10.824934,10824.934 +34575,2025-03-11T08:57:00.582258-07:00,992.3407592773438,10.836307,10836.307 +34576,2025-03-11T08:57:11.415282-07:00,992.2737426757812,10.833024,10833.024 +34577,2025-03-11T08:57:22.250991-07:00,992.2879638671875,10.835709,10835.709 +34578,2025-03-11T08:57:33.072336-07:00,992.2946166992188,10.821345,10821.345 +34579,2025-03-11T08:57:43.907266-07:00,992.321044921875,10.83493,10834.93 +34580,2025-03-11T08:57:54.737050-07:00,992.3078002929688,10.829784,10829.784 +34581,2025-03-11T08:58:05.560065-07:00,992.2748413085938,10.823015,10823.015 +34582,2025-03-11T08:58:16.387600-07:00,992.2606201171875,10.827535,10827.535 +34583,2025-03-11T08:58:27.209571-07:00,992.2935791015625,10.821971,10821.971 +34584,2025-03-11T08:58:38.038969-07:00,992.3143920898438,10.829398,10829.398 +34585,2025-03-11T08:58:48.866019-07:00,992.3078002929688,10.82705,10827.05 +34586,2025-03-11T08:58:59.694155-07:00,992.32861328125,10.828136,10828.136 +34587,2025-03-11T08:59:10.514012-07:00,992.32763671875,10.819857,10819.857 +34588,2025-03-11T08:59:21.350992-07:00,992.3200073242188,10.83698,10836.98 +34589,2025-03-11T08:59:32.176206-07:00,992.3186645507812,10.825214,10825.214 +34590,2025-03-11T08:59:43.001018-07:00,992.3200073242188,10.824812,10824.812 +34591,2025-03-11T08:59:53.829256-07:00,992.2977905273438,10.828238,10828.238 +34592,2025-03-11T09:00:04.662130-07:00,992.28466796875,10.832874,10832.874 +34593,2025-03-11T09:00:15.495007-07:00,992.3110961914062,10.832877,10832.877 +34594,2025-03-11T09:00:26.318226-07:00,992.304443359375,10.823219,10823.219 +34595,2025-03-11T09:00:37.155413-07:00,992.2977905273438,10.837187,10837.187 +34596,2025-03-11T09:00:47.986968-07:00,992.2888793945312,10.831555,10831.555 +34597,2025-03-11T09:00:58.820161-07:00,992.30078125,10.833193,10833.193 +34598,2025-03-11T09:01:09.651463-07:00,992.294189453125,10.831302,10831.302 +34599,2025-03-11T09:01:20.488691-07:00,992.2720336914062,10.837228,10837.228 +34600,2025-03-11T09:01:31.317007-07:00,992.281005859375,10.828316,10828.316 +34601,2025-03-11T09:01:42.151056-07:00,992.2888793945312,10.834049,10834.049 +34602,2025-03-11T09:01:52.983016-07:00,992.2865600585938,10.83196,10831.96 +34603,2025-03-11T09:02:03.816633-07:00,992.2955322265625,10.833617,10833.617 +34604,2025-03-11T09:02:14.659161-07:00,992.2786865234375,10.842528,10842.528 +34605,2025-03-11T09:02:25.490368-07:00,992.2776489257812,10.831207,10831.207 +34606,2025-03-11T09:02:36.326570-07:00,992.2908325195312,10.836202,10836.202 +34607,2025-03-11T09:02:47.158899-07:00,992.256591796875,10.832329,10832.329 +34608,2025-03-11T09:02:57.998011-07:00,992.2687377929688,10.839112,10839.112 +34609,2025-03-11T09:03:08.829257-07:00,992.256591796875,10.831246,10831.246 +34610,2025-03-11T09:03:19.653344-07:00,992.2555541992188,10.824087,10824.087 +34611,2025-03-11T09:03:30.492266-07:00,992.2806396484375,10.838922,10838.922 +34612,2025-03-11T09:03:41.327761-07:00,992.2927856445312,10.835495,10835.495 +34613,2025-03-11T09:03:52.161273-07:00,992.2927856445312,10.833512,10833.512 +34614,2025-03-11T09:04:02.990017-07:00,992.23876953125,10.828744,10828.744 +34615,2025-03-11T09:04:13.819450-07:00,992.2772827148438,10.829433,10829.433 +34616,2025-03-11T09:04:24.655058-07:00,992.26171875,10.835608,10835.608 +34617,2025-03-11T09:04:35.483049-07:00,992.282470703125,10.827991,10827.991 +34618,2025-03-11T09:04:46.319048-07:00,992.2627563476562,10.835999,10835.999 +34619,2025-03-11T09:04:57.145049-07:00,992.2881469726562,10.826001,10826.001 +34620,2025-03-11T09:05:07.983083-07:00,992.2593994140625,10.838034,10838.034 +34621,2025-03-11T09:05:18.808273-07:00,992.2736206054688,10.82519,10825.19 +34622,2025-03-11T09:05:29.634244-07:00,992.3013305664062,10.825971,10825.971 +34623,2025-03-11T09:05:40.469109-07:00,992.2881469726562,10.834865,10834.865 +34624,2025-03-11T09:05:51.296965-07:00,992.2857666015625,10.827856,10827.856 +34625,2025-03-11T09:06:02.126012-07:00,992.313232421875,10.829047,10829.047 +34626,2025-03-11T09:06:12.950084-07:00,992.2857666015625,10.824072,10824.072 +34627,2025-03-11T09:06:23.789406-07:00,992.2715454101562,10.839322,10839.322 +34628,2025-03-11T09:06:34.611388-07:00,992.2679443359375,10.821982,10821.982 +34629,2025-03-11T09:06:45.446060-07:00,992.2546997070312,10.834672,10834.672 +34630,2025-03-11T09:06:56.273358-07:00,992.2745361328125,10.827298,10827.298 +34631,2025-03-11T09:07:07.119723-07:00,992.3009643554688,10.846365,10846.365 +34632,2025-03-11T09:07:17.951973-07:00,992.2734985351562,10.83225,10832.25 +34633,2025-03-11T09:07:28.778943-07:00,992.3065795898438,10.82697,10826.97 +34634,2025-03-11T09:07:39.609869-07:00,992.2787475585938,10.830926,10830.926 +34635,2025-03-11T09:07:50.439700-07:00,992.30419921875,10.829831,10829.831 +34636,2025-03-11T09:08:01.277722-07:00,992.3027954101562,10.838022,10838.022 +34637,2025-03-11T09:08:12.097725-07:00,992.2896728515625,10.820003,10820.003 +34638,2025-03-11T09:08:22.931504-07:00,992.28857421875,10.833779,10833.779 +34639,2025-03-11T09:08:33.755777-07:00,992.3150024414062,10.824273,10824.273 +34640,2025-03-11T09:08:44.583122-07:00,992.3203125,10.827345,10827.345 +34641,2025-03-11T09:08:55.410986-07:00,992.30712890625,10.827864,10827.864 +34642,2025-03-11T09:09:06.229116-07:00,992.313720703125,10.81813,10818.13 +34643,2025-03-11T09:09:17.054232-07:00,992.299560546875,10.825116,10825.116 +34644,2025-03-11T09:09:27.885544-07:00,992.299560546875,10.831312,10831.312 +34645,2025-03-11T09:09:38.712702-07:00,992.2915649414062,10.827158,10827.158 +34646,2025-03-11T09:09:49.544944-07:00,992.2363891601562,10.832242,10832.242 +34647,2025-03-11T09:10:00.372823-07:00,992.27734375,10.827879,10827.879 +34648,2025-03-11T09:10:11.201671-07:00,992.257568359375,10.828848,10828.848 +34649,2025-03-11T09:10:22.026701-07:00,992.2520141601562,10.82503,10825.03 +34650,2025-03-11T09:10:32.857182-07:00,992.270751953125,10.830481,10830.481 +34651,2025-03-11T09:10:43.691068-07:00,992.2906494140625,10.833886,10833.886 +34652,2025-03-11T09:10:54.523074-07:00,992.2892456054688,10.832006,10832.006 +34653,2025-03-11T09:11:05.351817-07:00,992.2619018554688,10.828743,10828.743 +34654,2025-03-11T09:11:16.181309-07:00,992.27734375,10.829492,10829.492 +34655,2025-03-11T09:11:27.001724-07:00,992.2684326171875,10.820415,10820.415 +34656,2025-03-11T09:11:37.843084-07:00,992.2826538085938,10.84136,10841.36 +34657,2025-03-11T09:11:48.662723-07:00,992.2694702148438,10.819639,10819.639 +34658,2025-03-11T09:11:59.495301-07:00,992.3013916015625,10.832578,10832.578 +34659,2025-03-11T09:12:10.327708-07:00,992.2816162109375,10.832407,10832.407 +34660,2025-03-11T09:12:21.155378-07:00,992.2958374023438,10.82767,10827.67 +34661,2025-03-11T09:12:31.980785-07:00,992.2485961914062,10.825407,10825.407 +34662,2025-03-11T09:12:42.812010-07:00,992.2839965820312,10.831225,10831.225 +34663,2025-03-11T09:12:53.645792-07:00,992.2784423828125,10.833782,10833.782 +34664,2025-03-11T09:13:04.474126-07:00,992.244384765625,10.828334,10828.334 +34665,2025-03-11T09:13:15.298950-07:00,992.2915649414062,10.824824,10824.824 +34666,2025-03-11T09:13:26.122333-07:00,992.2839965820312,10.823383,10823.383 +34667,2025-03-11T09:13:36.946917-07:00,992.2915649414062,10.824584,10824.584 +34668,2025-03-11T09:13:47.774720-07:00,992.3047485351562,10.827803,10827.803 +34669,2025-03-11T09:13:58.606724-07:00,992.2929077148438,10.832004,10832.004 +34670,2025-03-11T09:14:09.434093-07:00,992.2915649414062,10.827369,10827.369 +34671,2025-03-11T09:14:20.259852-07:00,992.2862548828125,10.825759,10825.759 +34672,2025-03-11T09:14:31.083723-07:00,992.28076171875,10.823871,10823.871 +34673,2025-03-11T09:14:41.921947-07:00,992.2731323242188,10.838224,10838.224 +34674,2025-03-11T09:14:52.745815-07:00,992.2952270507812,10.823868,10823.868 +34675,2025-03-11T09:15:03.573949-07:00,992.2599487304688,10.828134,10828.134 +34676,2025-03-11T09:15:14.398766-07:00,992.268798828125,10.824817,10824.817 +34677,2025-03-11T09:15:25.228723-07:00,992.3226318359375,10.829957,10829.957 +34678,2025-03-11T09:15:36.055722-07:00,992.3084106445312,10.826999,10826.999 +34679,2025-03-11T09:15:46.883055-07:00,992.3004760742188,10.827333,10827.333 +34680,2025-03-11T09:15:57.710716-07:00,992.3004760742188,10.827661,10827.661 +34681,2025-03-11T09:16:08.537268-07:00,992.3216552734375,10.826552,10826.552 +34682,2025-03-11T09:16:19.366720-07:00,992.3018798828125,10.829452,10829.452 +34683,2025-03-11T09:16:30.191861-07:00,992.299560546875,10.825141,10825.141 +34684,2025-03-11T09:16:41.014719-07:00,992.2929077148438,10.822858,10822.858 +34685,2025-03-11T09:16:51.837991-07:00,992.3192749023438,10.823272,10823.272 +34686,2025-03-11T09:17:02.662063-07:00,992.299560546875,10.824072,10824.072 +34687,2025-03-11T09:17:13.489714-07:00,992.2796630859375,10.827651,10827.651 +34688,2025-03-11T09:17:24.320978-07:00,992.3114013671875,10.831264,10831.264 +34689,2025-03-11T09:17:35.141753-07:00,992.287353515625,10.820775,10820.775 +34690,2025-03-11T09:17:45.956719-07:00,992.26513671875,10.814966,10814.966 +34691,2025-03-11T09:17:56.781880-07:00,992.299560546875,10.825161,10825.161 +34692,2025-03-11T09:18:07.609093-07:00,992.3047485351562,10.827213,10827.213 +34693,2025-03-11T09:18:18.431179-07:00,992.3126831054688,10.822086,10822.086 +34694,2025-03-11T09:18:29.251726-07:00,992.3192749023438,10.820547,10820.547 +34695,2025-03-11T09:18:40.088085-07:00,992.2784423828125,10.836359,10836.359 +34696,2025-03-11T09:18:50.907772-07:00,992.27734375,10.819687,10819.687 +34697,2025-03-11T09:19:01.727721-07:00,992.3047485351562,10.819949,10819.949 +34698,2025-03-11T09:19:12.555719-07:00,992.2971801757812,10.827998,10827.998 +34699,2025-03-11T09:19:23.379721-07:00,992.3037719726562,10.824002,10824.002 +34700,2025-03-11T09:19:34.212972-07:00,992.3047485351562,10.833251,10833.251 +34701,2025-03-11T09:19:45.048724-07:00,992.3079833984375,10.835752,10835.752 +34702,2025-03-11T09:19:55.874482-07:00,992.2750244140625,10.825758,10825.758 +34703,2025-03-11T09:20:06.708059-07:00,992.2892456054688,10.833577,10833.577 +34704,2025-03-11T09:20:17.526433-07:00,992.2892456054688,10.818374,10818.374 +34705,2025-03-11T09:20:28.355032-07:00,992.2971801757812,10.828599,10828.599 +34706,2025-03-11T09:20:39.186724-07:00,992.3156127929688,10.831692,10831.692 +34707,2025-03-11T09:20:50.006699-07:00,992.3499755859375,10.819975,10819.975 +34708,2025-03-11T09:21:00.831572-07:00,992.3301391601562,10.824873,10824.873 +34709,2025-03-11T09:21:11.663849-07:00,992.328857421875,10.832277,10832.277 +34710,2025-03-11T09:21:22.496063-07:00,992.33544921875,10.832214,10832.214 +34711,2025-03-11T09:21:33.320718-07:00,992.3485717773438,10.824655,10824.655 +34712,2025-03-11T09:21:44.140777-07:00,992.3410034179688,10.820059,10820.059 +34713,2025-03-11T09:21:54.967116-07:00,992.3123168945312,10.826339,10826.339 +34714,2025-03-11T09:22:05.780724-07:00,992.3331298828125,10.813608,10813.608 +34715,2025-03-11T09:22:16.607388-07:00,992.3132934570312,10.826664,10826.664 +34716,2025-03-11T09:22:27.439762-07:00,992.3518676757812,10.832374,10832.374 +34717,2025-03-11T09:22:38.258883-07:00,992.3331298828125,10.819121,10819.121 +34718,2025-03-11T09:22:49.089720-07:00,992.31982421875,10.830837,10830.837 +34719,2025-03-11T09:22:59.923212-07:00,992.3264770507812,10.833492,10833.492 +34720,2025-03-11T09:23:10.751725-07:00,992.3453369140625,10.828513,10828.513 +34721,2025-03-11T09:23:21.579082-07:00,992.3189086914062,10.827357,10827.357 +34722,2025-03-11T09:23:32.408316-07:00,992.36376953125,10.829234,10829.234 +34723,2025-03-11T09:23:43.238934-07:00,992.3782958984375,10.830618,10830.618 +34724,2025-03-11T09:24:04.889905-07:00,992.3373413085938,21.650971,21650.971 +34725,2025-03-11T09:24:15.722759-07:00,992.3848266601562,10.832854,10832.854 +34726,2025-03-11T09:24:26.547718-07:00,992.3429565429688,10.824959,10824.959 +34727,2025-03-11T09:24:37.373718-07:00,992.3627319335938,10.826,10826.0 +34728,2025-03-11T09:24:48.212397-07:00,992.353759765625,10.838679,10838.679 +34729,2025-03-11T09:24:59.034159-07:00,992.3735961914062,10.821762,10821.762 +34730,2025-03-11T09:25:09.871051-07:00,992.3759155273438,10.836892,10836.892 +34731,2025-03-11T09:25:20.690918-07:00,992.3616943359375,10.819867,10819.867 +34732,2025-03-11T09:25:31.524030-07:00,992.34716796875,10.833112,10833.112 +34733,2025-03-11T09:25:42.352749-07:00,992.4078979492188,10.828719,10828.719 +34734,2025-03-11T09:25:53.178544-07:00,992.405517578125,10.825795,10825.795 +34735,2025-03-11T09:26:14.824819-07:00,992.3435668945312,21.646275,21646.275 +34736,2025-03-11T09:26:25.642723-07:00,992.34619140625,10.817904,10817.904 +34737,2025-03-11T09:26:36.465971-07:00,992.3841552734375,10.823248,10823.248 +34738,2025-03-11T09:26:47.299026-07:00,992.3699340820312,10.833055,10833.055 +34739,2025-03-11T09:26:58.119059-07:00,992.362060546875,10.820033,10820.033 +34740,2025-03-11T09:27:08.943720-07:00,992.36328125,10.824661,10824.661 +34741,2025-03-11T09:27:19.761746-07:00,992.3609619140625,10.818026,10818.026 +34742,2025-03-11T09:27:30.593791-07:00,992.345458984375,10.832045,10832.045 +34743,2025-03-11T09:27:41.423751-07:00,992.345458984375,10.82996,10829.96 +34744,2025-03-11T09:27:52.254701-07:00,992.3718872070312,10.83095,10830.95 +34745,2025-03-11T09:28:03.080869-07:00,992.3638916015625,10.826168,10826.168 +34746,2025-03-11T09:28:13.900990-07:00,992.345458984375,10.820121,10820.121 +34747,2025-03-11T09:28:24.725251-07:00,992.3441162109375,10.824261,10824.261 +34748,2025-03-11T09:28:35.558719-07:00,992.35498046875,10.833468,10833.468 +34749,2025-03-11T09:28:46.385708-07:00,992.3562622070312,10.826989,10826.989 +34750,2025-03-11T09:28:57.211234-07:00,992.3771362304688,10.825526,10825.526 +34751,2025-03-11T09:29:08.026904-07:00,992.3298950195312,10.81567,10815.67 +34752,2025-03-11T09:29:18.863019-07:00,992.3351440429688,10.836115,10836.115 +34753,2025-03-11T09:29:29.694718-07:00,992.3496704101562,10.831699,10831.699 +34754,2025-03-11T09:29:40.521944-07:00,992.3629150390625,10.827226,10827.226 +34755,2025-03-11T09:29:51.346714-07:00,992.3441162109375,10.82477,10824.77 +34756,2025-03-11T09:30:02.180912-07:00,992.3496704101562,10.834198,10834.198 +34757,2025-03-11T09:30:13.007850-07:00,992.3167114257812,10.826938,10826.938 +34758,2025-03-11T09:30:23.842251-07:00,992.2879638671875,10.834401,10834.401 +34759,2025-03-11T09:30:34.670701-07:00,992.3484497070312,10.82845,10828.45 +34760,2025-03-11T09:30:45.500117-07:00,992.2998657226562,10.829416,10829.416 +34761,2025-03-11T09:30:56.335217-07:00,992.3351440429688,10.8351,10835.1 +34762,2025-03-11T09:31:07.170043-07:00,992.334228515625,10.834826,10834.826 +34763,2025-03-11T09:31:17.999571-07:00,992.334228515625,10.829528,10829.528 +34764,2025-03-11T09:31:28.820063-07:00,992.3526611328125,10.820492,10820.492 +34765,2025-03-11T09:31:39.651926-07:00,992.3473510742188,10.831863,10831.863 +34766,2025-03-11T09:31:50.474004-07:00,992.2867431640625,10.822078,10822.078 +34767,2025-03-11T09:32:01.305942-07:00,992.3318481445312,10.831938,10831.938 +34768,2025-03-11T09:32:12.147719-07:00,992.373779296875,10.841777,10841.777 +34769,2025-03-11T09:32:22.973249-07:00,992.3591918945312,10.82553,10825.53 +34770,2025-03-11T09:32:33.804028-07:00,992.3713989257812,10.830779,10830.779 +34771,2025-03-11T09:32:44.642086-07:00,992.3304443359375,10.838058,10838.058 +34772,2025-03-11T09:32:55.472978-07:00,992.3173217773438,10.830892,10830.892 +34773,2025-03-11T09:33:06.304725-07:00,992.3384399414062,10.831747,10831.747 +34774,2025-03-11T09:33:17.137880-07:00,992.3304443359375,10.833155,10833.155 +34775,2025-03-11T09:33:27.963783-07:00,992.3162231445312,10.825903,10825.903 +34776,2025-03-11T09:33:38.791721-07:00,992.3096923828125,10.827938,10827.938 +34777,2025-03-11T09:33:49.625705-07:00,992.3195190429688,10.833984,10833.984 +34778,2025-03-11T09:34:00.449699-07:00,992.2996826171875,10.823994,10823.994 +34779,2025-03-11T09:34:11.284726-07:00,992.28759765625,10.835027,10835.027 +34780,2025-03-11T09:34:22.116579-07:00,992.2984619140625,10.831853,10831.853 +34781,2025-03-11T09:34:32.948952-07:00,992.3181762695312,10.832373,10832.373 +34782,2025-03-11T09:34:43.775350-07:00,992.3261108398438,10.826398,10826.398 +34783,2025-03-11T09:34:54.611831-07:00,992.2776489257812,10.836481,10836.481 +34784,2025-03-11T09:35:05.439150-07:00,992.2578125,10.827319,10827.319 +34785,2025-03-11T09:35:16.264716-07:00,992.2697143554688,10.825566,10825.566 +34786,2025-03-11T09:35:27.095055-07:00,992.2776489257812,10.830339,10830.339 +34787,2025-03-11T09:35:37.921937-07:00,992.2951049804688,10.826882,10826.882 +34788,2025-03-11T09:35:48.759604-07:00,992.2753295898438,10.837667,10837.667 +34789,2025-03-11T09:35:59.591970-07:00,992.2620239257812,10.832366,10832.366 +34790,2025-03-11T09:36:10.412306-07:00,992.2554931640625,10.820336,10820.336 +34791,2025-03-11T09:36:21.242720-07:00,992.2686767578125,10.830414,10830.414 +34792,2025-03-11T09:36:32.075067-07:00,992.3026733398438,10.832347,10832.347 +34793,2025-03-11T09:36:42.906691-07:00,992.254150390625,10.831624,10831.624 +34794,2025-03-11T09:36:53.738118-07:00,992.27294921875,10.831427,10831.427 +34795,2025-03-11T09:37:04.563701-07:00,992.2818603515625,10.825583,10825.583 +34796,2025-03-11T09:37:15.390974-07:00,992.2650146484375,10.827273,10827.273 +34797,2025-03-11T09:37:26.222944-07:00,992.2188110351562,10.83197,10831.97 +34798,2025-03-11T09:37:37.052961-07:00,992.266357421875,10.830017,10830.017 +34799,2025-03-11T09:37:47.883761-07:00,992.2608032226562,10.8308,10830.8 +34800,2025-03-11T09:37:58.712766-07:00,992.213623046875,10.829005,10829.005 +34801,2025-03-11T09:38:09.546472-07:00,992.2320556640625,10.833706,10833.706 +34802,2025-03-11T09:38:20.368704-07:00,992.2584228515625,10.822232,10822.232 +34803,2025-03-11T09:38:31.204278-07:00,992.2650146484375,10.835574,10835.574 +34804,2025-03-11T09:38:42.031969-07:00,992.25732421875,10.827691,10827.691 +34805,2025-03-11T09:38:52.858957-07:00,992.2706298828125,10.826988,10826.988 +34806,2025-03-11T09:39:03.678117-07:00,992.2494506835938,10.81916,10819.16 +34807,2025-03-11T09:39:14.503870-07:00,992.2427978515625,10.825753,10825.753 +34808,2025-03-11T09:39:25.334120-07:00,992.2352905273438,10.83025,10830.25 +34809,2025-03-11T09:39:36.150722-07:00,992.2352905273438,10.816602,10816.602 +34810,2025-03-11T09:39:46.987124-07:00,992.2022705078125,10.836402,10836.402 +34811,2025-03-11T09:39:57.815723-07:00,992.2471313476562,10.828599,10828.599 +34812,2025-03-11T09:40:08.636715-07:00,992.2405395507812,10.820992,10820.992 +34813,2025-03-11T09:40:19.479112-07:00,992.2484130859375,10.842397,10842.397 +34814,2025-03-11T09:40:30.306372-07:00,992.2471313476562,10.82726,10827.26 +34815,2025-03-11T09:40:41.128960-07:00,992.2352905273438,10.822588,10822.588 +34816,2025-03-11T09:40:51.965128-07:00,992.226318359375,10.836168,10836.168 +34817,2025-03-11T09:41:02.794710-07:00,992.2196655273438,10.829582,10829.582 +34818,2025-03-11T09:41:13.615069-07:00,992.174560546875,10.820359,10820.359 +34819,2025-03-11T09:41:24.450718-07:00,992.214111328125,10.835649,10835.649 +34820,2025-03-11T09:41:35.278030-07:00,992.2286987304688,10.827312,10827.312 +34821,2025-03-11T09:41:46.113942-07:00,992.1854858398438,10.835912,10835.912 +34822,2025-03-11T09:41:48.662192-07:00,992.1920166015625,2.54825,2548.25 +34823,2025-03-11T09:41:56.945711-07:00,992.1788330078125,8.283519,8283.519 +34824,2025-03-11T09:42:07.765716-07:00,992.18115234375,10.820005,10820.005 +34825,2025-03-11T09:42:18.592701-07:00,992.2239990234375,10.826985,10826.985 +34826,2025-03-11T09:42:29.428035-07:00,992.1932983398438,10.835334,10835.334 +34827,2025-03-11T09:42:40.252858-07:00,992.1920166015625,10.824823,10824.823 +34828,2025-03-11T09:42:51.076713-07:00,992.1820068359375,10.823855,10823.855 +34829,2025-03-11T09:43:01.901527-07:00,992.1226806640625,10.824814,10824.814 +34830,2025-03-11T09:43:12.728717-07:00,992.1160888671875,10.82719,10827.19 +34831,2025-03-11T09:43:23.560195-07:00,992.1127319335938,10.831478,10831.478 +34832,2025-03-11T09:43:34.385969-07:00,992.0873413085938,10.825774,10825.774 +34833,2025-03-11T09:43:45.217186-07:00,992.0982055664062,10.831217,10831.217 +34834,2025-03-11T09:43:56.043989-07:00,992.1325073242188,10.826803,10826.803 +34835,2025-03-11T09:44:06.880021-07:00,992.119384765625,10.836032,10836.032 +34836,2025-03-11T09:44:17.705771-07:00,992.0958862304688,10.82575,10825.75 +34837,2025-03-11T09:44:28.533149-07:00,992.0750732421875,10.827378,10827.378 +34838,2025-03-11T09:44:39.359718-07:00,992.1156005859375,10.826569,10826.569 +34839,2025-03-11T09:44:50.193146-07:00,992.0948486328125,10.833428,10833.428 +34840,2025-03-11T09:45:01.012307-07:00,992.027587890625,10.819161,10819.161 +34841,2025-03-11T09:45:11.848847-07:00,992.0618896484375,10.83654,10836.54 +34842,2025-03-11T09:45:22.673769-07:00,992.0684204101562,10.824922,10824.922 +34843,2025-03-11T09:45:33.507667-07:00,992.0223388671875,10.833898,10833.898 +34844,2025-03-11T09:45:44.334750-07:00,992.0331420898438,10.827083,10827.083 +34845,2025-03-11T09:45:55.163906-07:00,992.0695190429688,10.829156,10829.156 +34846,2025-03-11T09:46:05.978793-07:00,992.0252075195312,10.814887,10814.887 +34847,2025-03-11T09:46:16.804728-07:00,992.0001831054688,10.825935,10825.935 +34848,2025-03-11T09:46:27.631989-07:00,992.02001953125,10.827261,10827.261 +34849,2025-03-11T09:46:38.451723-07:00,992.0486450195312,10.819734,10819.734 +34850,2025-03-11T09:46:49.284089-07:00,991.9767456054688,10.832366,10832.366 +34851,2025-03-11T09:47:00.110061-07:00,992.0176391601562,10.825972,10825.972 +34852,2025-03-11T09:47:10.934721-07:00,992.0176391601562,10.82466,10824.66 +34853,2025-03-11T09:47:21.750297-07:00,992.0007934570312,10.815576,10815.576 +34854,2025-03-11T09:47:32.576021-07:00,992.0031127929688,10.825724,10825.724 +34855,2025-03-11T09:47:43.407437-07:00,992.012939453125,10.831416,10831.416 +34856,2025-03-11T09:47:54.233935-07:00,991.9942016601562,10.826498,10826.498 +34857,2025-03-11T09:48:05.052762-07:00,992.0284423828125,10.818827,10818.827 +34858,2025-03-11T09:48:15.883728-07:00,992.0459594726562,10.830966,10830.966 +34859,2025-03-11T09:48:26.705721-07:00,992.065673828125,10.821993,10821.993 +34860,2025-03-11T09:48:37.535850-07:00,992.0421752929688,10.830129,10830.129 +34861,2025-03-11T09:48:48.359722-07:00,992.0421752929688,10.823872,10823.872 +34862,2025-03-11T09:48:59.183030-07:00,992.0092163085938,10.823308,10823.308 +34863,2025-03-11T09:49:10.012714-07:00,992.0125122070312,10.829684,10829.684 +34864,2025-03-11T09:49:20.836831-07:00,992.0335693359375,10.824117,10824.117 +34865,2025-03-11T09:49:31.654057-07:00,992.0401611328125,10.817226,10817.226 +34866,2025-03-11T09:49:42.475724-07:00,992.0477905273438,10.821667,10821.667 +34867,2025-03-11T09:49:53.301282-07:00,992.0365600585938,10.825558,10825.558 +34868,2025-03-11T09:50:04.125966-07:00,992.0167236328125,10.824684,10824.684 +34869,2025-03-11T09:50:14.960545-07:00,992.0586547851562,10.834579,10834.579 +34870,2025-03-11T09:50:25.784696-07:00,992.0365600585938,10.824151,10824.151 +34871,2025-03-11T09:50:36.607893-07:00,992.0421142578125,10.823197,10823.197 +34872,2025-03-11T09:50:47.434749-07:00,992.0552978515625,10.826856,10826.856 +34873,2025-03-11T09:50:58.255722-07:00,992.0209350585938,10.820973,10820.973 +34874,2025-03-11T09:51:09.079028-07:00,992.0487670898438,10.823306,10823.306 +34875,2025-03-11T09:51:19.899700-07:00,992.04638671875,10.820672,10820.672 +34876,2025-03-11T09:51:30.719718-07:00,992.052978515625,10.820018,10820.018 +34877,2025-03-11T09:51:41.552707-07:00,992.0318603515625,10.832989,10832.989 +34878,2025-03-11T09:51:52.378730-07:00,992.07275390625,10.826023,10826.023 +34879,2025-03-11T09:52:03.204050-07:00,992.0176391601562,10.82532,10825.32 +34880,2025-03-11T09:52:14.020857-07:00,992.0516357421875,10.816807,10816.807 +34881,2025-03-11T09:52:24.843873-07:00,992.0449829101562,10.823016,10823.016 +34882,2025-03-11T09:52:35.670861-07:00,992.0648193359375,10.826988,10826.988 +34883,2025-03-11T09:52:46.497080-07:00,992.0440673828125,10.826219,10826.219 +34884,2025-03-11T09:52:57.322977-07:00,992.07373046875,10.825897,10825.897 +34885,2025-03-11T09:53:08.143965-07:00,992.0582275390625,10.820988,10820.988 +34886,2025-03-11T09:53:18.962937-07:00,992.0482788085938,10.818972,10818.972 +34887,2025-03-11T09:53:29.795705-07:00,992.07470703125,10.832768,10832.768 +34888,2025-03-11T09:53:40.613059-07:00,992.0733032226562,10.817354,10817.354 +34889,2025-03-11T09:53:51.440096-07:00,992.0864868164062,10.827037,10827.037 +34890,2025-03-11T09:54:02.257703-07:00,992.0789184570312,10.817607,10817.607 +34891,2025-03-11T09:54:13.088578-07:00,992.0931396484375,10.830875,10830.875 +34892,2025-03-11T09:54:23.918878-07:00,992.0907592773438,10.8303,10830.3 +34893,2025-03-11T09:54:34.744464-07:00,992.0709228515625,10.825586,10825.586 +34894,2025-03-11T09:54:45.570724-07:00,992.1171264648438,10.82626,10826.26 +34895,2025-03-11T09:54:56.394724-07:00,992.0963134765625,10.824,10824.0 +34896,2025-03-11T09:55:07.218110-07:00,992.0896606445312,10.823386,10823.386 +34897,2025-03-11T09:55:18.042919-07:00,992.1029663085938,10.824809,10824.809 +34898,2025-03-11T09:55:28.877548-07:00,992.094970703125,10.834629,10834.629 +34899,2025-03-11T09:55:39.695061-07:00,992.093994140625,10.817513,10817.513 +34900,2025-03-11T09:55:50.529167-07:00,992.1369018554688,10.834106,10834.106 +34901,2025-03-11T09:56:01.342717-07:00,992.126953125,10.81355,10813.55 +34902,2025-03-11T09:56:12.171769-07:00,992.1060791015625,10.829052,10829.052 +34903,2025-03-11T09:56:22.989907-07:00,992.126953125,10.818138,10818.138 +34904,2025-03-11T09:56:33.814708-07:00,992.119384765625,10.824801,10824.801 +34905,2025-03-11T09:56:44.629043-07:00,992.1259155273438,10.814335,10814.335 +34906,2025-03-11T09:56:55.455053-07:00,992.1325073242188,10.82601,10826.01 +34907,2025-03-11T09:57:06.266725-07:00,992.1113891601562,10.811672,10811.672 +34908,2025-03-11T09:57:17.095737-07:00,992.1104125976562,10.829012,10829.012 +34909,2025-03-11T09:57:27.917173-07:00,992.1048583984375,10.821436,10821.436 +34910,2025-03-11T09:57:38.743844-07:00,992.1259155273438,10.826671,10826.671 +34911,2025-03-11T09:57:49.567039-07:00,992.0982055664062,10.823195,10823.195 +34912,2025-03-11T09:58:00.392914-07:00,992.14013671875,10.825875,10825.875 +34913,2025-03-11T09:58:11.215714-07:00,992.119384765625,10.8228,10822.8 +34914,2025-03-11T09:58:22.035865-07:00,992.1127319335938,10.820151,10820.151 +34915,2025-03-11T09:58:32.856718-07:00,992.1127319335938,10.820853,10820.853 +34916,2025-03-11T09:58:43.680581-07:00,992.1259155273438,10.823863,10823.863 +34917,2025-03-11T09:58:54.500728-07:00,992.1113891601562,10.820147,10820.147 +34918,2025-03-11T09:59:05.327697-07:00,992.0995483398438,10.826969,10826.969 +34919,2025-03-11T09:59:16.153078-07:00,992.1060791015625,10.825381,10825.381 +34920,2025-03-11T09:59:26.981813-07:00,992.0929565429688,10.828735,10828.735 +34921,2025-03-11T09:59:37.806006-07:00,992.0652465820312,10.824193,10824.193 +34922,2025-03-11T09:59:48.618972-07:00,992.0576782226562,10.812966,10812.966 +34923,2025-03-11T09:59:59.446912-07:00,992.1060791015625,10.82794,10827.94 +34924,2025-03-11T10:00:10.267097-07:00,992.064208984375,10.820185,10820.185 +34925,2025-03-11T10:00:21.093712-07:00,992.0840454101562,10.826615,10826.615 +34926,2025-03-11T10:00:31.906719-07:00,992.0850219726562,10.813007,10813.007 +34927,2025-03-11T10:00:42.733734-07:00,992.0826416015625,10.827015,10827.015 +34928,2025-03-11T10:00:53.558971-07:00,992.1024780273438,10.825237,10825.237 +34929,2025-03-11T10:01:04.379270-07:00,992.0892333984375,10.820299,10820.299 +34930,2025-03-11T10:01:15.195907-07:00,992.0868530273438,10.816637,10816.637 +34931,2025-03-11T10:01:26.026968-07:00,992.080322265625,10.831061,10831.061 +34932,2025-03-11T10:01:36.852327-07:00,992.0948486328125,10.825359,10825.359 +34933,2025-03-11T10:01:47.669991-07:00,992.0868530273438,10.817664,10817.664 +34934,2025-03-11T10:01:58.502061-07:00,992.07373046875,10.83207,10832.07 +34935,2025-03-11T10:02:09.319896-07:00,992.060546875,10.817835,10817.835 +34936,2025-03-11T10:02:20.137697-07:00,992.0671997070312,10.817801,10817.801 +34937,2025-03-11T10:02:30.966001-07:00,992.0396728515625,10.828304,10828.304 +34938,2025-03-11T10:02:41.786722-07:00,992.0449829101562,10.820721,10820.721 +34939,2025-03-11T10:02:52.605934-07:00,992.0265502929688,10.819212,10819.212 +34940,2025-03-11T10:03:03.436773-07:00,991.985595703125,10.830839,10830.839 +34941,2025-03-11T10:03:14.257719-07:00,992.0396728515625,10.820946,10820.946 +34942,2025-03-11T10:03:25.067813-07:00,992.0133666992188,10.810094,10810.094 +34943,2025-03-11T10:03:35.895720-07:00,992.0265502929688,10.827907,10827.907 +34944,2025-03-11T10:03:46.718839-07:00,992.027587890625,10.823119,10823.119 +34945,2025-03-11T10:03:57.534702-07:00,992.0223388671875,10.815863,10815.863 +34946,2025-03-11T10:04:08.356776-07:00,992.0156860351562,10.822074,10822.074 +34947,2025-03-11T10:04:19.175489-07:00,992.0223388671875,10.818713,10818.713 +34948,2025-03-11T10:04:29.992722-07:00,991.9771728515625,10.817233,10817.233 +34949,2025-03-11T10:04:40.821556-07:00,991.9813842773438,10.828834,10828.834 +34950,2025-03-11T10:04:51.634722-07:00,991.9706420898438,10.813166,10813.166 +34951,2025-03-11T10:05:02.461650-07:00,991.9573364257812,10.826928,10826.928 +34952,2025-03-11T10:05:13.287721-07:00,991.9718627929688,10.826071,10826.071 +34953,2025-03-11T10:05:24.102722-07:00,992.0059204101562,10.815001,10815.001 +34954,2025-03-11T10:05:34.933057-07:00,991.9874267578125,10.830335,10830.335 +34955,2025-03-11T10:05:45.753720-07:00,991.9949951171875,10.820663,10820.663 +34956,2025-03-11T10:05:56.581460-07:00,992.00830078125,10.82774,10827.74 +34957,2025-03-11T10:06:07.404720-07:00,992.0172119140625,10.82326,10823.26 +34958,2025-03-11T10:06:18.220707-07:00,992.0225219726562,10.815987,10815.987 +34959,2025-03-11T10:06:29.042106-07:00,991.9884643554688,10.821399,10821.399 +34960,2025-03-11T10:06:39.866770-07:00,991.9686889648438,10.824664,10824.664 +34961,2025-03-11T10:06:50.683713-07:00,991.9841918945312,10.816943,10816.943 +34962,2025-03-11T10:07:01.508051-07:00,992.0050048828125,10.824338,10824.338 +34963,2025-03-11T10:07:12.377013-07:00,991.9696655273438,10.868962,10868.962 +34964,2025-03-11T10:07:23.196685-07:00,991.97998046875,10.819672,10819.672 +34965,2025-03-11T10:07:34.016111-07:00,991.9522705078125,10.819426,10819.426 +34966,2025-03-11T10:07:44.837956-07:00,991.986572265625,10.821845,10821.845 +34967,2025-03-11T10:07:55.660703-07:00,991.9654541015625,10.822747,10822.747 +34968,2025-03-11T10:08:06.478037-07:00,991.9456176757812,10.817334,10817.334 +34969,2025-03-11T10:08:17.299917-07:00,991.9667358398438,10.82188,10821.88 +34970,2025-03-11T10:08:28.113397-07:00,991.973388671875,10.81348,10813.48 +34971,2025-03-11T10:08:38.940038-07:00,991.9522705078125,10.826641,10826.641 +34972,2025-03-11T10:08:49.765686-07:00,991.9456176757812,10.825648,10825.648 +34973,2025-03-11T10:09:00.586337-07:00,991.9456176757812,10.820651,10820.651 +34974,2025-03-11T10:09:11.407793-07:00,991.95361328125,10.821456,10821.456 +34975,2025-03-11T10:09:22.237708-07:00,991.891845703125,10.829915,10829.915 +34976,2025-03-11T10:09:33.053695-07:00,991.9456176757812,10.815987,10815.987 +34977,2025-03-11T10:09:43.879706-07:00,991.9390869140625,10.826011,10826.011 +34978,2025-03-11T10:09:54.704725-07:00,991.9367065429688,10.825019,10825.019 +34979,2025-03-11T10:10:05.524105-07:00,991.9082641601562,10.81938,10819.38 +34980,2025-03-11T10:10:16.353975-07:00,991.9093627929688,10.82987,10829.87 +34981,2025-03-11T10:10:27.175046-07:00,991.949951171875,10.821071,10821.071 +34982,2025-03-11T10:10:37.995752-07:00,991.9423217773438,10.820706,10820.706 +34983,2025-03-11T10:10:48.814891-07:00,991.9281005859375,10.819139,10819.139 +34984,2025-03-11T10:10:59.644872-07:00,991.9412231445312,10.829981,10829.981 +34985,2025-03-11T10:11:10.469698-07:00,991.9266967773438,10.824826,10824.826 +34986,2025-03-11T10:11:21.296904-07:00,991.953125,10.827206,10827.206 +34987,2025-03-11T10:11:32.120707-07:00,991.96630859375,10.823803,10823.803 +34988,2025-03-11T10:11:42.946881-07:00,991.9729614257812,10.826174,10826.174 +34989,2025-03-11T10:11:53.763052-07:00,991.959716796875,10.816171,10816.171 +34990,2025-03-11T10:12:04.596920-07:00,991.9478759765625,10.833868,10833.868 +34991,2025-03-11T10:12:15.420704-07:00,991.958740234375,10.823784,10823.784 +34992,2025-03-11T10:12:26.246390-07:00,991.9706420898438,10.825686,10825.686 +34993,2025-03-11T10:12:37.072478-07:00,991.958740234375,10.826088,10826.088 +34994,2025-03-11T10:12:47.898688-07:00,991.9484252929688,10.82621,10826.21 +34995,2025-03-11T10:12:58.718190-07:00,991.931884765625,10.819502,10819.502 +34996,2025-03-11T10:13:09.551954-07:00,991.95361328125,10.833764,10833.764 +34997,2025-03-11T10:13:20.370684-07:00,991.9169311523438,10.81873,10818.73 +34998,2025-03-11T10:13:31.199985-07:00,991.9554443359375,10.829301,10829.301 +34999,2025-03-11T10:13:52.842260-07:00,991.946533203125,21.642275,21642.275 +35000,2025-03-11T10:14:03.672909-07:00,991.9375610351562,10.830649,10830.649 +35001,2025-03-11T10:14:14.495841-07:00,991.9813842773438,10.822932,10822.932 +35002,2025-03-11T10:14:25.310863-07:00,991.95263671875,10.815022,10815.022 +35003,2025-03-11T10:14:36.144849-07:00,991.9384155273438,10.833986,10833.986 +35004,2025-03-11T10:14:46.967038-07:00,991.942626953125,10.822189,10822.189 +35005,2025-03-11T10:14:57.789706-07:00,991.9450073242188,10.822668,10822.668 +35006,2025-03-11T10:15:08.606997-07:00,991.9539794921875,10.817291,10817.291 +35007,2025-03-11T10:15:19.431028-07:00,991.974853515625,10.824031,10824.031 +35008,2025-03-11T10:15:30.249774-07:00,991.930908203125,10.818746,10818.746 +35009,2025-03-11T10:15:41.080488-07:00,991.963134765625,10.830714,10830.714 +35010,2025-03-11T10:15:51.899754-07:00,991.9720458984375,10.819266,10819.266 +35011,2025-03-11T10:16:02.726707-07:00,991.9757080078125,10.826953,10826.953 +35012,2025-03-11T10:16:13.553030-07:00,991.99462890625,10.826323,10826.323 +35013,2025-03-11T10:16:24.374705-07:00,991.9969482421875,10.821675,10821.675 +35014,2025-03-11T10:16:35.193741-07:00,991.9729614257812,10.819036,10819.036 +35015,2025-03-11T10:16:46.015016-07:00,992.0050048828125,10.821275,10821.275 +35016,2025-03-11T10:16:56.847951-07:00,991.9931030273438,10.832935,10832.935 +35017,2025-03-11T10:17:07.671940-07:00,992.0120239257812,10.823989,10823.989 +35018,2025-03-11T10:17:18.485945-07:00,991.9573364257812,10.814005,10814.005 +35019,2025-03-11T10:17:29.315522-07:00,992.0204467773438,10.829577,10829.577 +35020,2025-03-11T10:17:40.134052-07:00,992.0369262695312,10.81853,10818.53 +35021,2025-03-11T10:17:50.957930-07:00,992.0350952148438,10.823878,10823.878 +35022,2025-03-11T10:18:01.772950-07:00,991.9823608398438,10.81502,10815.02 +35023,2025-03-11T10:18:12.594604-07:00,991.9606323242188,10.821654,10821.654 +35024,2025-03-11T10:18:23.408690-07:00,992.01904296875,10.814086,10814.086 +35025,2025-03-11T10:18:34.238023-07:00,992.0623168945312,10.829333,10829.333 +35026,2025-03-11T10:18:45.050977-07:00,992.0247802734375,10.812954,10812.954 +35027,2025-03-11T10:18:55.869923-07:00,992.0482177734375,10.818946,10818.946 +35028,2025-03-11T10:19:06.690686-07:00,992.0859375,10.820763,10820.763 +35029,2025-03-11T10:19:17.509990-07:00,992.067138671875,10.819304,10819.304 +35030,2025-03-11T10:19:28.341312-07:00,992.0289306640625,10.831322,10831.322 +35031,2025-03-11T10:19:39.160036-07:00,992.0599365234375,10.818724,10818.724 +35032,2025-03-11T10:19:49.974959-07:00,992.0830688476562,10.814923,10814.923 +35033,2025-03-11T10:20:00.792107-07:00,992.0909423828125,10.817148,10817.148 +35034,2025-03-11T10:20:11.608706-07:00,992.0943603515625,10.816599,10816.599 +35035,2025-03-11T10:20:22.432028-07:00,992.1163940429688,10.823322,10823.322 +35036,2025-03-11T10:20:33.252769-07:00,992.0999755859375,10.820741,10820.741 +35037,2025-03-11T10:20:44.079063-07:00,992.0604858398438,10.826294,10826.294 +35038,2025-03-11T10:20:54.898789-07:00,992.0825805664062,10.819726,10819.726 +35039,2025-03-11T10:21:05.713988-07:00,992.1135864257812,10.815199,10815.199 +35040,2025-03-11T10:21:16.544687-07:00,992.1031494140625,10.830699,10830.699 +35041,2025-03-11T10:21:27.357966-07:00,992.1185913085938,10.813279,10813.279 +35042,2025-03-11T10:21:38.185916-07:00,992.1408081054688,10.82795,10827.95 +35043,2025-03-11T10:21:49.013157-07:00,992.1506958007812,10.827241,10827.241 +35044,2025-03-11T10:21:59.844888-07:00,992.1464233398438,10.831731,10831.731 +35045,2025-03-11T10:22:10.671028-07:00,992.108154296875,10.82614,10826.14 +35046,2025-03-11T10:22:21.499180-07:00,992.1157836914062,10.828152,10828.152 +35047,2025-03-11T10:22:32.325046-07:00,992.1062622070312,10.825866,10825.866 +35048,2025-03-11T10:22:43.147946-07:00,992.1085815429688,10.8229,10822.9 +35049,2025-03-11T10:22:53.971880-07:00,992.15283203125,10.823934,10823.934 +35050,2025-03-11T10:23:04.795578-07:00,992.119873046875,10.823698,10823.698 +35051,2025-03-11T10:23:15.619964-07:00,992.12744140625,10.824386,10824.386 +35052,2025-03-11T10:23:26.445028-07:00,992.1453247070312,10.825064,10825.064 +35053,2025-03-11T10:23:37.266697-07:00,992.174072265625,10.821669,10821.669 +35054,2025-03-11T10:23:48.098638-07:00,992.16845703125,10.831941,10831.941 +35055,2025-03-11T10:23:58.926702-07:00,992.135498046875,10.828064,10828.064 +35056,2025-03-11T10:24:09.750023-07:00,992.1400756835938,10.823321,10823.321 +35057,2025-03-11T10:24:20.571019-07:00,992.146728515625,10.820996,10820.996 +35058,2025-03-11T10:24:31.400708-07:00,992.1305541992188,10.829689,10829.689 +35059,2025-03-11T10:24:42.221042-07:00,992.157958984375,10.820334,10820.334 +35060,2025-03-11T10:24:53.051688-07:00,992.1526489257812,10.830646,10830.646 +35061,2025-03-11T10:25:03.879751-07:00,992.1404418945312,10.828063,10828.063 +35062,2025-03-11T10:25:14.701711-07:00,992.168212890625,10.82196,10821.96 +35063,2025-03-11T10:25:25.534009-07:00,992.1781005859375,10.832298,10832.298 +35064,2025-03-11T10:25:36.356986-07:00,992.1659545898438,10.822977,10822.977 +35065,2025-03-11T10:25:47.191345-07:00,992.1682739257812,10.834359,10834.359 +35066,2025-03-11T10:25:58.006546-07:00,992.1484375,10.815201,10815.201 +35067,2025-03-11T10:26:08.832703-07:00,992.1431884765625,10.826157,10826.157 +35068,2025-03-11T10:26:19.661097-07:00,992.1860961914062,10.828394,10828.394 +35069,2025-03-11T10:26:30.494698-07:00,992.1729736328125,10.833601,10833.601 +35070,2025-03-11T10:26:41.321813-07:00,992.18310546875,10.827115,10827.115 +35071,2025-03-11T10:26:52.150700-07:00,992.1775512695312,10.828887,10828.887 +35072,2025-03-11T10:27:02.978191-07:00,992.1643676757812,10.827491,10827.491 +35073,2025-03-11T10:27:13.794862-07:00,992.166748046875,10.816671,10816.671 +35074,2025-03-11T10:27:24.620750-07:00,992.1878051757812,10.825888,10825.888 +35075,2025-03-11T10:27:35.441307-07:00,992.1898193359375,10.820557,10820.557 +35076,2025-03-11T10:27:46.266048-07:00,992.1898193359375,10.824741,10824.741 +35077,2025-03-11T10:27:57.086991-07:00,992.165771484375,10.820943,10820.943 +35078,2025-03-11T10:28:07.911144-07:00,992.1671142578125,10.824153,10824.153 +35079,2025-03-11T10:28:18.731703-07:00,992.1681518554688,10.820559,10820.559 +35080,2025-03-11T10:28:29.558723-07:00,992.1704711914062,10.82702,10827.02 +35081,2025-03-11T10:28:40.383832-07:00,992.18359375,10.825109,10825.109 +35082,2025-03-11T10:28:51.208960-07:00,992.1387329101562,10.825128,10825.128 +35083,2025-03-11T10:29:02.032760-07:00,992.1529541015625,10.8238,10823.8 +35084,2025-03-11T10:29:12.850390-07:00,992.19482421875,10.81763,10817.63 +35085,2025-03-11T10:29:23.674100-07:00,992.1575927734375,10.82371,10823.71 +35086,2025-03-11T10:29:34.489712-07:00,992.1090698242188,10.815612,10815.612 +35087,2025-03-11T10:29:45.315856-07:00,992.15234375,10.826144,10826.144 +35088,2025-03-11T10:29:56.136054-07:00,992.1665649414062,10.820198,10820.198 +35089,2025-03-11T10:30:06.945703-07:00,992.1688232421875,10.809649,10809.649 +35090,2025-03-11T10:30:17.777806-07:00,992.1437377929688,10.832103,10832.103 +35091,2025-03-11T10:30:28.598042-07:00,992.15234375,10.820236,10820.236 +35092,2025-03-11T10:30:39.420699-07:00,992.1589965820312,10.822657,10822.657 +35093,2025-03-11T10:30:50.244195-07:00,992.1493530273438,10.823496,10823.496 +35094,2025-03-11T10:31:01.070941-07:00,992.143798828125,10.826746,10826.746 +35095,2025-03-11T10:31:11.895703-07:00,992.1724853515625,10.824762,10824.762 +35096,2025-03-11T10:31:22.718688-07:00,992.1593627929688,10.822985,10822.985 +35097,2025-03-11T10:31:33.553752-07:00,992.18505859375,10.835064,10835.064 +35098,2025-03-11T10:31:44.381755-07:00,992.192626953125,10.828003,10828.003 +35099,2025-03-11T10:31:55.203713-07:00,992.15869140625,10.821958,10821.958 +35100,2025-03-11T10:32:06.028087-07:00,992.1685791015625,10.824374,10824.374 +35101,2025-03-11T10:32:16.857955-07:00,992.150146484375,10.829868,10829.868 +35102,2025-03-11T10:32:27.695889-07:00,992.1656494140625,10.837934,10837.934 +35103,2025-03-11T10:32:38.511759-07:00,992.1468505859375,10.81587,10815.87 +35104,2025-03-11T10:32:49.340965-07:00,992.1875,10.829206,10829.206 +35105,2025-03-11T10:33:00.168761-07:00,992.1755981445312,10.827796,10827.796 +35106,2025-03-11T10:33:10.986701-07:00,992.1690063476562,10.81794,10817.94 +35107,2025-03-11T10:33:21.819710-07:00,992.1581420898438,10.833009,10833.009 +35108,2025-03-11T10:33:32.644768-07:00,992.15673828125,10.825058,10825.058 +35109,2025-03-11T10:33:43.479360-07:00,992.1326293945312,10.834592,10834.592 +35110,2025-03-11T10:33:54.309420-07:00,992.16796875,10.83006,10830.06 +35111,2025-03-11T10:34:05.124703-07:00,992.1812744140625,10.815283,10815.283 +35112,2025-03-11T10:34:15.956703-07:00,992.1835327148438,10.832,10832.0 +35113,2025-03-11T10:34:26.776716-07:00,992.1967163085938,10.820013,10820.013 +35114,2025-03-11T10:34:37.608705-07:00,992.19140625,10.831989,10831.989 +35115,2025-03-11T10:34:48.437977-07:00,992.1649780273438,10.829272,10829.272 +35116,2025-03-11T10:34:59.270009-07:00,992.1937255859375,10.832032,10832.032 +35117,2025-03-11T10:35:10.093417-07:00,992.1871948242188,10.823408,10823.408 +35118,2025-03-11T10:35:20.927919-07:00,992.1815795898438,10.834502,10834.502 +35119,2025-03-11T10:35:31.756791-07:00,992.2092895507812,10.828872,10828.872 +35120,2025-03-11T10:35:42.580819-07:00,992.1631469726562,10.824028,10824.028 +35121,2025-03-11T10:35:53.412050-07:00,992.169677734375,10.831231,10831.231 +35122,2025-03-11T10:36:04.232705-07:00,992.17724609375,10.820655,10820.655 +35123,2025-03-11T10:36:15.062474-07:00,992.1796264648438,10.829769,10829.769 +35124,2025-03-11T10:36:25.890701-07:00,992.2152099609375,10.828227,10828.227 +35125,2025-03-11T10:36:36.719995-07:00,992.2020263671875,10.829294,10829.294 +35126,2025-03-11T10:36:47.543483-07:00,992.2109375,10.823488,10823.488 +35127,2025-03-11T10:36:58.372817-07:00,992.1690673828125,10.829334,10829.334 +35128,2025-03-11T10:37:09.200713-07:00,992.1845092773438,10.827896,10827.896 +35129,2025-03-11T10:37:20.028135-07:00,992.1934204101562,10.827422,10827.422 +35130,2025-03-11T10:37:30.853709-07:00,992.1788940429688,10.825574,10825.574 +35131,2025-03-11T10:37:41.678685-07:00,992.2076416015625,10.824976,10824.976 +35132,2025-03-11T10:37:52.503148-07:00,992.208984375,10.824463,10824.463 +35133,2025-03-11T10:38:03.335835-07:00,992.216552734375,10.832687,10832.687 +35134,2025-03-11T10:38:14.155999-07:00,992.1914672851562,10.820164,10820.164 +35135,2025-03-11T10:38:24.986992-07:00,992.1990356445312,10.830993,10830.993 +35136,2025-03-11T10:38:35.810973-07:00,992.2003784179688,10.823981,10823.981 +35137,2025-03-11T10:38:46.626030-07:00,992.2301635742188,10.815057,10815.057 +35138,2025-03-11T10:38:57.449951-07:00,992.2168579101562,10.823921,10823.921 +35139,2025-03-11T10:39:08.280990-07:00,992.21826171875,10.831039,10831.039 +35140,2025-03-11T10:39:19.101702-07:00,992.2313842773438,10.820712,10820.712 +35141,2025-03-11T10:39:29.922178-07:00,992.2324829101562,10.820476,10820.476 +35142,2025-03-11T10:39:40.754962-07:00,992.186279296875,10.832784,10832.784 +35143,2025-03-11T10:39:51.573705-07:00,992.2413940429688,10.818743,10818.743 +35144,2025-03-11T10:40:02.396974-07:00,992.2489624023438,10.823269,10823.269 +35145,2025-03-11T10:40:13.215940-07:00,992.2027587890625,10.818966,10818.966 +35146,2025-03-11T10:40:24.046888-07:00,992.2261962890625,10.830948,10830.948 +35147,2025-03-11T10:40:34.864814-07:00,992.2734375,10.817926,10817.926 +35148,2025-03-11T10:40:45.687118-07:00,992.249267578125,10.822304,10822.304 +35149,2025-03-11T10:40:56.519107-07:00,992.24169921875,10.831989,10831.989 +35150,2025-03-11T10:41:07.337830-07:00,992.2757568359375,10.818723,10818.723 +35151,2025-03-11T10:41:18.164924-07:00,992.2638549804688,10.827094,10827.094 +35152,2025-03-11T10:41:28.986809-07:00,992.2638549804688,10.821885,10821.885 +35153,2025-03-11T10:41:39.806712-07:00,992.2648315429688,10.819903,10819.903 +35154,2025-03-11T10:41:50.632040-07:00,992.25830078125,10.825328,10825.328 +35155,2025-03-11T10:42:01.461761-07:00,992.246337890625,10.829721,10829.721 +35156,2025-03-11T10:42:12.289900-07:00,992.3057861328125,10.828139,10828.139 +35157,2025-03-11T10:42:23.113684-07:00,992.2935791015625,10.823784,10823.784 +35158,2025-03-11T10:42:33.938754-07:00,992.259521484375,10.82507,10825.07 +35159,2025-03-11T10:42:44.762197-07:00,992.2869262695312,10.823443,10823.443 +35160,2025-03-11T10:42:55.586706-07:00,992.2935791015625,10.824509,10824.509 +35161,2025-03-11T10:43:06.417712-07:00,992.30810546875,10.831006,10831.006 +35162,2025-03-11T10:43:17.244705-07:00,992.2318115234375,10.826993,10826.993 +35163,2025-03-11T10:43:28.072238-07:00,992.2529907226562,10.827533,10827.533 +35164,2025-03-11T10:43:38.900927-07:00,992.2793579101562,10.828689,10828.689 +35165,2025-03-11T10:43:49.722032-07:00,992.2869262695312,10.821105,10821.105 +35166,2025-03-11T10:44:00.550685-07:00,992.26611328125,10.828653,10828.653 +35167,2025-03-11T10:44:11.375191-07:00,992.3067016601562,10.824506,10824.506 +35168,2025-03-11T10:44:22.202705-07:00,992.2869262695312,10.827514,10827.514 +35169,2025-03-11T10:44:33.028013-07:00,992.2737426757812,10.825308,10825.308 +35170,2025-03-11T10:44:43.859762-07:00,992.301513671875,10.831749,10831.749 +35171,2025-03-11T10:44:54.683832-07:00,992.276123046875,10.82407,10824.07 +35172,2025-03-11T10:45:05.517752-07:00,992.2605590820312,10.83392,10833.92 +35173,2025-03-11T10:45:16.338703-07:00,992.2672119140625,10.820951,10820.951 +35174,2025-03-11T10:45:27.171038-07:00,992.2869262695312,10.832335,10832.335 +35175,2025-03-11T10:45:37.995710-07:00,992.30810546875,10.824672,10824.672 +35176,2025-03-11T10:45:48.825101-07:00,992.2628173828125,10.829391,10829.391 +35177,2025-03-11T10:45:59.658795-07:00,992.2906494140625,10.833694,10833.694 +35178,2025-03-11T10:46:10.490849-07:00,992.270751953125,10.832054,10832.054 +35179,2025-03-11T10:46:21.311694-07:00,992.27734375,10.820845,10820.845 +35180,2025-03-11T10:46:32.144719-07:00,992.276123046875,10.833025,10833.025 +35181,2025-03-11T10:46:42.974219-07:00,992.2694702148438,10.8295,10829.5 +35182,2025-03-11T10:46:53.802737-07:00,992.2906494140625,10.828518,10828.518 +35183,2025-03-11T10:47:04.621678-07:00,992.2496948242188,10.818941,10818.941 +35184,2025-03-11T10:47:15.449019-07:00,992.2575073242188,10.827341,10827.341 +35185,2025-03-11T10:47:26.273758-07:00,992.2694702148438,10.824739,10824.739 +35186,2025-03-11T10:47:37.099668-07:00,992.2862548828125,10.82591,10825.91 +35187,2025-03-11T10:47:47.926251-07:00,992.271728515625,10.826583,10826.583 +35188,2025-03-11T10:47:58.761009-07:00,992.26416015625,10.834758,10834.758 +35189,2025-03-11T10:48:09.588303-07:00,992.244384765625,10.827294,10827.294 +35190,2025-03-11T10:48:20.427046-07:00,992.2608642578125,10.838743,10838.743 +35191,2025-03-11T10:48:31.250973-07:00,992.2189331054688,10.823927,10823.927 +35192,2025-03-11T10:48:42.077986-07:00,992.2466430664062,10.827013,10827.013 +35193,2025-03-11T10:48:52.908710-07:00,992.2410888671875,10.830724,10830.724 +35194,2025-03-11T10:49:03.747515-07:00,992.2631225585938,10.838805,10838.805 +35195,2025-03-11T10:49:14.566964-07:00,992.269775390625,10.819449,10819.449 +35196,2025-03-11T10:49:25.399758-07:00,992.2212524414062,10.832794,10832.794 +35197,2025-03-11T10:49:36.231885-07:00,992.25,10.832127,10832.127 +35198,2025-03-11T10:49:47.061790-07:00,992.2764282226562,10.829905,10829.905 +35199,2025-03-11T10:49:57.892950-07:00,992.2654418945312,10.83116,10831.16 +35200,2025-03-11T10:50:08.726706-07:00,992.2985229492188,10.833756,10833.756 +35201,2025-03-11T10:50:19.553934-07:00,992.2522583007812,10.827228,10827.228 +35202,2025-03-11T10:50:30.377885-07:00,992.2876586914062,10.823951,10823.951 +35203,2025-03-11T10:50:41.214512-07:00,992.28857421875,10.836627,10836.627 +35204,2025-03-11T10:50:52.046755-07:00,992.2796630859375,10.832243,10832.243 +35205,2025-03-11T10:51:02.876970-07:00,992.2974853515625,10.830215,10830.215 +35206,2025-03-11T10:51:13.711140-07:00,992.2909545898438,10.83417,10834.17 +35207,2025-03-11T10:51:24.543341-07:00,992.2723999023438,10.832201,10832.201 +35208,2025-03-11T10:51:35.366680-07:00,992.2723999023438,10.823339,10823.339 +35209,2025-03-11T10:51:46.199842-07:00,992.2945556640625,10.833162,10833.162 +35210,2025-03-11T10:51:57.032042-07:00,992.3021850585938,10.8322,10832.2 +35211,2025-03-11T10:52:07.856998-07:00,992.3153076171875,10.824956,10824.956 +35212,2025-03-11T10:52:18.687913-07:00,992.2813110351562,10.830915,10830.915 +35213,2025-03-11T10:52:29.526919-07:00,992.3167114257812,10.839006,10839.006 +35214,2025-03-11T10:52:40.359238-07:00,992.2823486328125,10.832319,10832.319 +35215,2025-03-11T10:52:51.188711-07:00,992.28466796875,10.829473,10829.473 +35216,2025-03-11T10:53:02.026364-07:00,992.3189697265625,10.837653,10837.653 +35217,2025-03-11T10:53:12.847735-07:00,992.3331909179688,10.821371,10821.371 +35218,2025-03-11T10:53:23.678984-07:00,992.3057861328125,10.831249,10831.249 +35219,2025-03-11T10:53:34.516707-07:00,992.3200073242188,10.837723,10837.723 +35220,2025-03-11T10:53:45.343225-07:00,992.341064453125,10.826518,10826.518 +35221,2025-03-11T10:53:56.164090-07:00,992.34765625,10.820865,10820.865 +35222,2025-03-11T10:54:06.994016-07:00,992.3496704101562,10.829926,10829.926 +35223,2025-03-11T10:54:17.824852-07:00,992.3641967773438,10.830836,10830.836 +35224,2025-03-11T10:54:28.656126-07:00,992.3760986328125,10.831274,10831.274 +35225,2025-03-11T10:54:39.489705-07:00,992.3629760742188,10.833579,10833.579 +35226,2025-03-11T10:54:50.322756-07:00,992.35205078125,10.833051,10833.051 +35227,2025-03-11T10:55:01.153750-07:00,992.3312377929688,10.830994,10830.994 +35228,2025-03-11T10:55:11.980707-07:00,992.3388061523438,10.826957,10826.957 +35229,2025-03-11T10:55:22.811710-07:00,992.3621826171875,10.831003,10831.003 +35230,2025-03-11T10:55:33.643017-07:00,992.3345336914062,10.831307,10831.307 +35231,2025-03-11T10:55:44.477036-07:00,992.3490600585938,10.834019,10834.019 +35232,2025-03-11T10:55:55.316711-07:00,992.3621826171875,10.839675,10839.675 +35233,2025-03-11T10:56:06.145056-07:00,992.341064453125,10.828345,10828.345 +35234,2025-03-11T10:56:16.974233-07:00,992.3236083984375,10.829177,10829.177 +35235,2025-03-11T10:56:27.812701-07:00,992.364501953125,10.838468,10838.468 +35236,2025-03-11T10:56:38.639122-07:00,992.339111328125,10.826421,10826.421 +35237,2025-03-11T10:56:49.469705-07:00,992.325927734375,10.830583,10830.583 +35238,2025-03-11T10:57:00.303725-07:00,992.3182983398438,10.83402,10834.02 +35239,2025-03-11T10:57:11.138768-07:00,992.3060913085938,10.835043,10835.043 +35240,2025-03-11T10:57:21.971872-07:00,992.3272094726562,10.833104,10833.104 +35241,2025-03-11T10:57:32.797709-07:00,992.3535766601562,10.825837,10825.837 +35242,2025-03-11T10:57:43.630069-07:00,992.3404541015625,10.83236,10832.36 +35243,2025-03-11T10:57:54.463947-07:00,992.3414306640625,10.833878,10833.878 +35244,2025-03-11T10:58:05.299127-07:00,992.3348388671875,10.83518,10835.18 +35245,2025-03-11T10:58:16.144158-07:00,992.3480224609375,10.845031,10845.031 +35246,2025-03-11T10:58:26.967709-07:00,992.3546752929688,10.823551,10823.551 +35247,2025-03-11T10:58:37.810798-07:00,992.3295288085938,10.843089,10843.089 +35248,2025-03-11T10:58:48.641972-07:00,992.3348388671875,10.831174,10831.174 +35249,2025-03-11T10:58:59.473316-07:00,992.3361206054688,10.831344,10831.344 +35250,2025-03-11T10:59:09.041932-07:00,992.3096923828125,9.568616,9568.616 +35251,2025-03-11T10:59:10.316959-07:00,992.3281860351562,1.275027,1275.027 +35252,2025-03-11T10:59:11.375109-07:00,992.3318481445312,1.05815,1058.15 +35253,2025-03-11T10:59:21.143709-07:00,992.3239135742188,9.7686,9768.6 +35254,2025-03-11T10:59:31.980713-07:00,992.3173217773438,10.837004,10837.004 +35255,2025-03-11T10:59:42.806848-07:00,992.3239135742188,10.826135,10826.135 +35256,2025-03-11T10:59:53.641907-07:00,992.3096923828125,10.835059,10835.059 +35257,2025-03-11T11:00:04.473064-07:00,992.3304443359375,10.831157,10831.157 +35258,2025-03-11T11:00:15.313710-07:00,992.3163452148438,10.840646,10840.646 +35259,2025-03-11T11:00:26.138811-07:00,992.3107299804688,10.825101,10825.101 +35260,2025-03-11T11:00:36.969950-07:00,992.3318481445312,10.831139,10831.139 +35261,2025-03-11T11:00:47.805926-07:00,992.31298828125,10.835976,10835.976 +35262,2025-03-11T11:00:58.640772-07:00,992.2921752929688,10.834846,10834.846 +35263,2025-03-11T11:01:09.466706-07:00,992.2998657226562,10.825934,10825.934 +35264,2025-03-11T11:01:20.310037-07:00,992.3076782226562,10.843331,10843.331 +35265,2025-03-11T11:01:31.146708-07:00,992.280029296875,10.836671,10836.671 +35266,2025-03-11T11:01:41.977711-07:00,992.3076782226562,10.831003,10831.003 +35267,2025-03-11T11:01:52.804101-07:00,992.3153076171875,10.82639,10826.39 +35268,2025-03-11T11:02:03.631620-07:00,992.293212890625,10.827519,10827.519 +35269,2025-03-11T11:02:14.465827-07:00,992.3021240234375,10.834207,10834.207 +35270,2025-03-11T11:02:25.299714-07:00,992.329833984375,10.833887,10833.887 +35271,2025-03-11T11:02:36.136061-07:00,992.2901611328125,10.836347,10836.347 +35272,2025-03-11T11:02:46.965696-07:00,992.2968139648438,10.829635,10829.635 +35273,2025-03-11T11:02:57.799077-07:00,992.3099975585938,10.833381,10833.381 +35274,2025-03-11T11:03:08.640974-07:00,992.31103515625,10.841897,10841.897 +35275,2025-03-11T11:03:19.475707-07:00,992.2968139648438,10.834733,10834.733 +35276,2025-03-11T11:03:30.303013-07:00,992.2987670898438,10.827306,10827.306 +35277,2025-03-11T11:03:41.145378-07:00,992.32421875,10.842365,10842.365 +35278,2025-03-11T11:03:51.971925-07:00,992.3397827148438,10.826547,10826.547 +35279,2025-03-11T11:04:02.807205-07:00,992.318603515625,10.83528,10835.28 +35280,2025-03-11T11:04:13.645037-07:00,992.29345703125,10.837832,10837.832 +35281,2025-03-11T11:04:24.466531-07:00,992.3132934570312,10.821494,10821.494 +35282,2025-03-11T11:04:35.299230-07:00,992.3407592773438,10.832699,10832.699 +35283,2025-03-11T11:04:46.137125-07:00,992.3010864257812,10.837895,10837.895 +35284,2025-03-11T11:04:56.964705-07:00,992.33642578125,10.82758,10827.58 +35285,2025-03-11T11:05:07.788247-07:00,992.3265380859375,10.823542,10823.542 +35286,2025-03-11T11:05:18.629264-07:00,992.3099975585938,10.841017,10841.017 +35287,2025-03-11T11:05:29.461013-07:00,992.328857421875,10.831749,10831.749 +35288,2025-03-11T11:05:40.293749-07:00,992.3099975585938,10.832736,10832.736 +35289,2025-03-11T11:05:51.134706-07:00,992.30908203125,10.840957,10840.957 +35290,2025-03-11T11:06:01.964973-07:00,992.3486938476562,10.830267,10830.267 +35291,2025-03-11T11:06:12.798856-07:00,992.30908203125,10.833883,10833.883 +35292,2025-03-11T11:06:23.630965-07:00,992.26806640625,10.832109,10832.109 +35293,2025-03-11T11:06:34.468584-07:00,992.3076782226562,10.837619,10837.619 +35294,2025-03-11T11:06:45.305877-07:00,992.286865234375,10.837293,10837.293 +35295,2025-03-11T11:06:56.137843-07:00,992.29345703125,10.831966,10831.966 +35296,2025-03-11T11:07:06.984780-07:00,992.28564453125,10.846937,10846.937 +35297,2025-03-11T11:07:17.816905-07:00,992.26806640625,10.832125,10832.125 +35298,2025-03-11T11:07:28.650924-07:00,992.2525024414062,10.834019,10834.019 +35299,2025-03-11T11:07:39.480580-07:00,992.2789916992188,10.829656,10829.656 +35300,2025-03-11T11:07:50.308959-07:00,992.2581176757812,10.828379,10828.379 +35301,2025-03-11T11:08:01.144586-07:00,992.2591552734375,10.835627,10835.627 +35302,2025-03-11T11:08:11.971198-07:00,992.2723388671875,10.826612,10826.612 +35303,2025-03-11T11:08:22.803702-07:00,992.2614135742188,10.832504,10832.504 +35304,2025-03-11T11:08:33.645582-07:00,992.2789916992188,10.84188,10841.88 +35305,2025-03-11T11:08:44.481910-07:00,992.22607421875,10.836328,10836.328 +35306,2025-03-11T11:08:55.314659-07:00,992.2803344726562,10.832749,10832.749 +35307,2025-03-11T11:09:06.152934-07:00,992.2459106445312,10.838275,10838.275 +35308,2025-03-11T11:09:16.989123-07:00,992.2406005859375,10.836189,10836.189 +35309,2025-03-11T11:09:27.825808-07:00,992.22607421875,10.836685,10836.685 +35310,2025-03-11T11:09:38.664655-07:00,992.2142333984375,10.838847,10838.847 +35311,2025-03-11T11:09:49.494627-07:00,992.1943969726562,10.829972,10829.972 +35312,2025-03-11T11:10:00.328653-07:00,992.2218017578125,10.834026,10834.026 +35313,2025-03-11T11:10:11.158399-07:00,992.2284545898438,10.829746,10829.746 +35314,2025-03-11T11:10:21.993586-07:00,992.1900634765625,10.835187,10835.187 +35315,2025-03-11T11:10:32.840587-07:00,992.1834106445312,10.847001,10847.001 +35316,2025-03-11T11:10:43.674164-07:00,992.1768798828125,10.833577,10833.577 +35317,2025-03-11T11:10:54.510128-07:00,992.2109375,10.835964,10835.964 +35318,2025-03-11T11:11:05.335958-07:00,992.2131958007812,10.82583,10825.83 +35319,2025-03-11T11:11:16.167782-07:00,992.2000122070312,10.831824,10831.824 +35320,2025-03-11T11:11:27.005816-07:00,992.2056274414062,10.838034,10838.034 +35321,2025-03-11T11:11:37.841848-07:00,992.193359375,10.836032,10836.032 +35322,2025-03-11T11:11:48.673733-07:00,992.1947021484375,10.831885,10831.885 +35323,2025-03-11T11:11:59.511928-07:00,992.2012329101562,10.838195,10838.195 +35324,2025-03-11T11:12:10.356869-07:00,992.2154541015625,10.844941,10844.941 +35325,2025-03-11T11:12:21.183734-07:00,992.1903076171875,10.826865,10826.865 +35326,2025-03-11T11:12:32.026773-07:00,992.2045288085938,10.843039,10843.039 +35327,2025-03-11T11:12:42.866677-07:00,992.1649169921875,10.839904,10839.904 +35328,2025-03-11T11:12:53.702562-07:00,992.1715698242188,10.835885,10835.885 +35329,2025-03-11T11:13:04.541162-07:00,992.1860961914062,10.8386,10838.6 +35330,2025-03-11T11:13:15.389902-07:00,992.1804809570312,10.84874,10848.74 +35331,2025-03-11T11:13:26.225606-07:00,992.173828125,10.835704,10835.704 +35332,2025-03-11T11:13:37.062607-07:00,992.1473999023438,10.837001,10837.001 +35333,2025-03-11T11:13:47.894906-07:00,992.1751708984375,10.832299,10832.299 +35334,2025-03-11T11:13:58.737437-07:00,992.161865234375,10.842531,10842.531 +35335,2025-03-11T11:14:09.566594-07:00,992.1629638671875,10.829157,10829.157 +35336,2025-03-11T11:14:20.403515-07:00,992.1642456054688,10.836921,10836.921 +35337,2025-03-11T11:14:31.230637-07:00,992.161865234375,10.827122,10827.122 +35338,2025-03-11T11:14:42.067876-07:00,992.1510009765625,10.837239,10837.239 +35339,2025-03-11T11:14:52.908990-07:00,992.1576538085938,10.841114,10841.114 +35340,2025-03-11T11:15:03.736725-07:00,992.191650390625,10.827735,10827.735 +35341,2025-03-11T11:15:14.567585-07:00,992.192626953125,10.83086,10830.86 +35342,2025-03-11T11:15:25.399588-07:00,992.1685180664062,10.832003,10832.003 +35343,2025-03-11T11:15:36.233930-07:00,992.1817016601562,10.834342,10834.342 +35344,2025-03-11T11:15:47.071726-07:00,992.1632080078125,10.837796,10837.796 +35345,2025-03-11T11:15:57.910586-07:00,992.1576538085938,10.83886,10838.86 +35346,2025-03-11T11:16:08.742053-07:00,992.189697265625,10.831467,10831.467 +35347,2025-03-11T11:16:19.573812-07:00,992.1830444335938,10.831759,10831.759 +35348,2025-03-11T11:16:30.407863-07:00,992.18408203125,10.834051,10834.051 +35349,2025-03-11T11:16:41.243579-07:00,992.185302734375,10.835716,10835.716 +35350,2025-03-11T11:16:52.082147-07:00,992.1995239257812,10.838568,10838.568 +35351,2025-03-11T11:17:02.907713-07:00,992.1863403320312,10.825566,10825.566 +35352,2025-03-11T11:17:13.741582-07:00,992.1929931640625,10.833869,10833.869 +35353,2025-03-11T11:17:24.578837-07:00,992.1743774414062,10.837255,10837.255 +35354,2025-03-11T11:17:35.417012-07:00,992.2008666992188,10.838175,10838.175 +35355,2025-03-11T11:17:46.250717-07:00,992.1677856445312,10.833705,10833.705 +35356,2025-03-11T11:17:57.088949-07:00,992.1942138671875,10.838232,10838.232 +35357,2025-03-11T11:18:07.925038-07:00,992.2107543945312,10.836089,10836.089 +35358,2025-03-11T11:18:18.756341-07:00,992.1876831054688,10.831303,10831.303 +35359,2025-03-11T11:18:29.583587-07:00,992.18994140625,10.827246,10827.246 +35360,2025-03-11T11:18:40.408893-07:00,992.1832885742188,10.825306,10825.306 +35361,2025-03-11T11:18:51.235893-07:00,992.19091796875,10.827,10827.0 +35362,2025-03-11T11:19:02.072845-07:00,992.1710815429688,10.836952,10836.952 +35363,2025-03-11T11:19:12.910063-07:00,992.19091796875,10.837218,10837.218 +35364,2025-03-11T11:19:23.740708-07:00,992.2120361328125,10.830645,10830.645 +35365,2025-03-11T11:19:34.586756-07:00,992.203125,10.846048,10846.048 +35366,2025-03-11T11:19:45.422105-07:00,992.2054443359375,10.835349,10835.349 +35367,2025-03-11T11:19:56.247584-07:00,992.2120361328125,10.825479,10825.479 +35368,2025-03-11T11:20:07.085844-07:00,992.2064208984375,10.83826,10838.26 +35369,2025-03-11T11:20:17.917897-07:00,992.2318725585938,10.832053,10832.053 +35370,2025-03-11T11:20:28.754583-07:00,992.2285766601562,10.836686,10836.686 +35371,2025-03-11T11:20:39.589592-07:00,992.2276000976562,10.835009,10835.009 +35372,2025-03-11T11:20:50.422627-07:00,992.2242431640625,10.833035,10833.035 +35373,2025-03-11T11:21:01.261586-07:00,992.250732421875,10.838959,10838.959 +35374,2025-03-11T11:21:12.103630-07:00,992.263916015625,10.842044,10842.044 +35375,2025-03-11T11:21:22.936585-07:00,992.2255249023438,10.832955,10832.955 +35376,2025-03-11T11:21:33.774374-07:00,992.245361328125,10.837789,10837.789 +35377,2025-03-11T11:21:44.616415-07:00,992.2274780273438,10.842041,10842.041 +35378,2025-03-11T11:21:55.452582-07:00,992.2189331054688,10.836167,10836.167 +35379,2025-03-11T11:22:06.293831-07:00,992.2539672851562,10.841249,10841.249 +35380,2025-03-11T11:22:17.122626-07:00,992.247314453125,10.828795,10828.795 +35381,2025-03-11T11:22:27.960874-07:00,992.2430419921875,10.838248,10838.248 +35382,2025-03-11T11:22:38.797225-07:00,992.2619018554688,10.836351,10836.351 +35383,2025-03-11T11:22:49.634562-07:00,992.2628784179688,10.837337,10837.337 +35384,2025-03-11T11:23:00.462583-07:00,992.2509155273438,10.828021,10828.021 +35385,2025-03-11T11:23:11.302875-07:00,992.2496948242188,10.840292,10840.292 +35386,2025-03-11T11:23:22.136666-07:00,992.2654418945312,10.833791,10833.791 +35387,2025-03-11T11:23:32.979889-07:00,992.2324829101562,10.843223,10843.223 +35388,2025-03-11T11:23:43.808759-07:00,992.2756958007812,10.82887,10828.87 +35389,2025-03-11T11:23:54.647579-07:00,992.2536010742188,10.83882,10838.82 +35390,2025-03-11T11:24:05.490567-07:00,992.2271728515625,10.842988,10842.988 +35391,2025-03-11T11:24:16.328803-07:00,992.2293701171875,10.838236,10838.236 +35392,2025-03-11T11:24:27.170988-07:00,992.2293701171875,10.842185,10842.185 +35393,2025-03-11T11:24:38.004580-07:00,992.24267578125,10.833592,10833.592 +35394,2025-03-11T11:24:48.837897-07:00,992.2647705078125,10.833317,10833.317 +35395,2025-03-11T11:24:59.671969-07:00,992.237060546875,10.834072,10834.072 +35396,2025-03-11T11:25:10.504741-07:00,992.2592163085938,10.832772,10832.772 +35397,2025-03-11T11:25:21.333578-07:00,992.23046875,10.828837,10828.837 +35398,2025-03-11T11:25:32.172748-07:00,992.260498046875,10.83917,10839.17 +35399,2025-03-11T11:25:43.010778-07:00,992.2548217773438,10.83803,10838.03 +35400,2025-03-11T11:25:53.837562-07:00,992.2614135742188,10.826784,10826.784 +35401,2025-03-11T11:26:04.677570-07:00,992.25390625,10.840008,10840.008 +35402,2025-03-11T11:26:15.513096-07:00,992.230712890625,10.835526,10835.526 +35403,2025-03-11T11:26:26.346583-07:00,992.230712890625,10.833487,10833.487 +35404,2025-03-11T11:26:37.181641-07:00,992.236328125,10.835058,10835.058 +35405,2025-03-11T11:26:48.005618-07:00,992.267333984375,10.823977,10823.977 +35406,2025-03-11T11:26:58.844856-07:00,992.243896484375,10.839238,10839.238 +35407,2025-03-11T11:27:09.681622-07:00,992.2452392578125,10.836766,10836.766 +35408,2025-03-11T11:27:20.512708-07:00,992.280517578125,10.831086,10831.086 +35409,2025-03-11T11:27:31.355237-07:00,992.2352905273438,10.842529,10842.529 +35410,2025-03-11T11:27:42.182743-07:00,992.256103515625,10.827506,10827.506 +35411,2025-03-11T11:27:53.025734-07:00,992.240966796875,10.842991,10842.991 +35412,2025-03-11T11:28:03.860891-07:00,992.242919921875,10.835157,10835.157 +35413,2025-03-11T11:28:14.695717-07:00,992.2451782226562,10.834826,10834.826 +35414,2025-03-11T11:28:25.525867-07:00,992.2584228515625,10.83015,10830.15 +35415,2025-03-11T11:28:36.362732-07:00,992.2507934570312,10.836865,10836.865 +35416,2025-03-11T11:28:47.195587-07:00,992.279541015625,10.832855,10832.855 +35417,2025-03-11T11:28:58.032900-07:00,992.2531127929688,10.837313,10837.313 +35418,2025-03-11T11:29:08.864588-07:00,992.2517700195312,10.831688,10831.688 +35419,2025-03-11T11:29:19.702950-07:00,992.2540893554688,10.838362,10838.362 +35420,2025-03-11T11:29:30.541143-07:00,992.25537109375,10.838193,10838.193 +35421,2025-03-11T11:29:41.376585-07:00,992.2686157226562,10.835442,10835.442 +35422,2025-03-11T11:29:52.214588-07:00,992.248779296875,10.838003,10838.003 +35423,2025-03-11T11:30:03.057918-07:00,992.2564086914062,10.84333,10843.33 +35424,2025-03-11T11:30:13.888852-07:00,992.249755859375,10.830934,10830.934 +35425,2025-03-11T11:30:24.736583-07:00,992.249755859375,10.847731,10847.731 +35426,2025-03-11T11:30:35.575013-07:00,992.2232666015625,10.83843,10838.43 +35427,2025-03-11T11:30:46.417826-07:00,992.2510986328125,10.842813,10842.813 +35428,2025-03-11T11:30:57.256583-07:00,992.273193359375,10.838757,10838.757 +35429,2025-03-11T11:31:08.090841-07:00,992.260009765625,10.834258,10834.258 +35430,2025-03-11T11:31:18.924628-07:00,992.2137451171875,10.833787,10833.787 +35431,2025-03-11T11:31:29.756455-07:00,992.2123413085938,10.831827,10831.827 +35432,2025-03-11T11:31:40.588508-07:00,992.20703125,10.832053,10832.053 +35433,2025-03-11T11:31:51.425465-07:00,992.2388305664062,10.836957,10836.957 +35434,2025-03-11T11:32:02.269579-07:00,992.205810546875,10.844114,10844.114 +35435,2025-03-11T11:32:13.104939-07:00,992.2081298828125,10.83536,10835.36 +35436,2025-03-11T11:32:23.947608-07:00,992.2159423828125,10.842669,10842.669 +35437,2025-03-11T11:32:34.786566-07:00,992.217041015625,10.838958,10838.958 +35438,2025-03-11T11:32:45.624198-07:00,992.2589111328125,10.837632,10837.632 +35439,2025-03-11T11:32:56.465963-07:00,992.2457275390625,10.841765,10841.765 +35440,2025-03-11T11:33:07.303642-07:00,992.2050170898438,10.837679,10837.679 +35441,2025-03-11T11:33:18.139839-07:00,992.2404174804688,10.836197,10836.197 +35442,2025-03-11T11:33:28.972773-07:00,992.21826171875,10.832934,10832.934 +35443,2025-03-11T11:33:39.804638-07:00,992.225830078125,10.831865,10831.865 +35444,2025-03-11T11:33:50.631588-07:00,992.2390747070312,10.82695,10826.95 +35445,2025-03-11T11:34:01.465816-07:00,992.21923828125,10.834228,10834.228 +35446,2025-03-11T11:34:12.307588-07:00,992.2073364257812,10.841772,10841.772 +35447,2025-03-11T11:34:23.143697-07:00,992.2324829101562,10.836109,10836.109 +35448,2025-03-11T11:34:33.975153-07:00,992.2117309570312,10.831456,10831.456 +35449,2025-03-11T11:34:44.813360-07:00,992.2073364257812,10.838207,10838.207 +35450,2025-03-11T11:34:55.637711-07:00,992.2073364257812,10.824351,10824.351 +35451,2025-03-11T11:35:06.475725-07:00,992.2139282226562,10.838014,10838.014 +35452,2025-03-11T11:35:17.300703-07:00,992.2008056640625,10.824978,10824.978 +35453,2025-03-11T11:35:28.140731-07:00,992.2139282226562,10.840028,10840.028 +35454,2025-03-11T11:35:38.974447-07:00,992.2271728515625,10.833716,10833.716 +35455,2025-03-11T11:35:49.806566-07:00,992.2008056640625,10.832119,10832.119 +35456,2025-03-11T11:36:00.651858-07:00,992.2159423828125,10.845292,10845.292 +35457,2025-03-11T11:36:11.477725-07:00,992.2008056640625,10.825867,10825.867 +35458,2025-03-11T11:36:22.314746-07:00,992.2347412109375,10.837021,10837.021 +35459,2025-03-11T11:36:33.153558-07:00,992.2150268554688,10.838812,10838.812 +35460,2025-03-11T11:36:43.988598-07:00,992.1961059570312,10.83504,10835.04 +35461,2025-03-11T11:36:54.831589-07:00,992.2017211914062,10.842991,10842.991 +35462,2025-03-11T11:37:16.511920-07:00,992.2093505859375,21.680331,21680.331 +35463,2025-03-11T11:37:27.348691-07:00,992.2347412109375,10.836771,10836.771 +35464,2025-03-11T11:37:38.183201-07:00,992.2413940429688,10.83451,10834.51 +35465,2025-03-11T11:37:49.013059-07:00,992.2171630859375,10.829858,10829.858 +35466,2025-03-11T11:37:59.857592-07:00,992.24365234375,10.844533,10844.533 +35467,2025-03-11T11:38:10.687241-07:00,992.2238159179688,10.829649,10829.649 +35468,2025-03-11T11:38:21.532830-07:00,992.2291259765625,10.845589,10845.589 +35469,2025-03-11T11:38:32.376700-07:00,992.2357788085938,10.84387,10843.87 +35470,2025-03-11T11:38:43.212672-07:00,992.2159423828125,10.835972,10835.972 +35471,2025-03-11T11:38:54.047530-07:00,992.2027587890625,10.834858,10834.858 +35472,2025-03-11T11:39:04.884644-07:00,992.2271728515625,10.837114,10837.114 +35473,2025-03-11T11:39:15.721004-07:00,992.2061157226562,10.83636,10836.36 +35474,2025-03-11T11:39:26.555776-07:00,992.2139282226562,10.834772,10834.772 +35475,2025-03-11T11:39:37.394319-07:00,992.2347412109375,10.838543,10838.543 +35476,2025-03-11T11:39:48.238102-07:00,992.2337646484375,10.843783,10843.783 +35477,2025-03-11T11:39:59.074094-07:00,992.2205200195312,10.835992,10835.992 +35478,2025-03-11T11:40:09.914815-07:00,992.19189453125,10.840721,10840.721 +35479,2025-03-11T11:40:20.739922-07:00,992.2404174804688,10.825107,10825.107 +35480,2025-03-11T11:40:31.587182-07:00,992.2050170898438,10.84726,10847.26 +35481,2025-03-11T11:40:42.424203-07:00,992.19189453125,10.837021,10837.021 +35482,2025-03-11T11:40:53.255011-07:00,992.224853515625,10.830808,10830.808 +35483,2025-03-11T11:41:04.099100-07:00,992.1984252929688,10.844089,10844.089 +35484,2025-03-11T11:41:14.929683-07:00,992.1852416992188,10.830583,10830.583 +35485,2025-03-11T11:41:25.772644-07:00,992.21826171875,10.842961,10842.961 +35486,2025-03-11T11:41:36.606634-07:00,992.2117309570312,10.83399,10833.99 +35487,2025-03-11T11:41:47.445618-07:00,992.2061157226562,10.838984,10838.984 +35488,2025-03-11T11:41:58.278018-07:00,992.2117309570312,10.8324,10832.4 +35489,2025-03-11T11:42:09.123080-07:00,992.21923828125,10.845062,10845.062 +35490,2025-03-11T11:42:19.960784-07:00,992.225830078125,10.837704,10837.704 +35491,2025-03-11T11:42:30.798587-07:00,992.217041015625,10.837803,10837.803 +35492,2025-03-11T11:42:41.633267-07:00,992.1984252929688,10.83468,10834.68 +35493,2025-03-11T11:42:52.474047-07:00,992.1773681640625,10.84078,10840.78 +35494,2025-03-11T11:43:03.311859-07:00,992.1905517578125,10.837812,10837.812 +35495,2025-03-11T11:43:14.154941-07:00,992.2117309570312,10.843082,10843.082 +35496,2025-03-11T11:43:24.992217-07:00,992.2380981445312,10.837276,10837.276 +35497,2025-03-11T11:43:35.834589-07:00,992.2315063476562,10.842372,10842.372 +35498,2025-03-11T11:43:46.671595-07:00,992.2380981445312,10.837006,10837.006 +35499,2025-03-11T11:43:57.515891-07:00,992.217041015625,10.844296,10844.296 +35500,2025-03-11T11:44:08.345588-07:00,992.2103271484375,10.829697,10829.697 +35501,2025-03-11T11:44:19.185222-07:00,992.2050170898438,10.839634,10839.634 +35502,2025-03-11T11:44:30.032537-07:00,992.243408203125,10.847315,10847.315 +35503,2025-03-11T11:44:40.865582-07:00,992.2093505859375,10.833045,10833.045 +35504,2025-03-11T11:44:51.711591-07:00,992.2081298828125,10.846009,10846.009 +35505,2025-03-11T11:45:02.544859-07:00,992.1961059570312,10.833268,10833.268 +35506,2025-03-11T11:45:13.381791-07:00,992.2279052734375,10.836932,10836.932 +35507,2025-03-11T11:45:24.222568-07:00,992.187255859375,10.840777,10840.777 +35508,2025-03-11T11:45:35.064906-07:00,992.1925659179688,10.842338,10842.338 +35509,2025-03-11T11:45:45.906135-07:00,992.200439453125,10.841229,10841.229 +35510,2025-03-11T11:45:56.749585-07:00,992.2586669921875,10.84345,10843.45 +35511,2025-03-11T11:46:07.580665-07:00,992.2454833984375,10.83108,10831.08 +35512,2025-03-11T11:46:18.418344-07:00,992.2190551757812,10.837679,10837.679 +35513,2025-03-11T11:46:29.255579-07:00,992.1903076171875,10.837235,10837.235 +35514,2025-03-11T11:46:40.098641-07:00,992.2101440429688,10.843062,10843.062 +35515,2025-03-11T11:46:50.929772-07:00,992.2299194335938,10.831131,10831.131 +35516,2025-03-11T11:47:01.772595-07:00,992.224609375,10.842823,10842.823 +35517,2025-03-11T11:47:12.605580-07:00,992.2167358398438,10.832985,10832.985 +35518,2025-03-11T11:47:23.446869-07:00,992.1968994140625,10.841289,10841.289 +35519,2025-03-11T11:47:34.283587-07:00,992.2288818359375,10.836718,10836.718 +35520,2025-03-11T11:47:45.127586-07:00,992.2012329101562,10.843999,10843.999 +35521,2025-03-11T11:47:55.965939-07:00,992.2001342773438,10.838353,10838.353 +35522,2025-03-11T11:48:06.803589-07:00,992.193603515625,10.83765,10837.65 +35523,2025-03-11T11:48:17.639581-07:00,992.2210083007812,10.835992,10835.992 +35524,2025-03-11T11:48:28.483584-07:00,992.2001342773438,10.844003,10844.003 +35525,2025-03-11T11:48:39.337669-07:00,992.1648559570312,10.854085,10854.085 +35526,2025-03-11T11:48:50.176954-07:00,992.2054443359375,10.839285,10839.285 +35527,2025-03-11T11:49:01.028060-07:00,992.2210083007812,10.851106,10851.106 +35528,2025-03-11T11:49:11.866674-07:00,992.237548828125,10.838614,10838.614 +35529,2025-03-11T11:49:22.715583-07:00,992.2296752929688,10.848909,10848.909 +35530,2025-03-11T11:49:33.554163-07:00,992.242919921875,10.83858,10838.58 +35531,2025-03-11T11:49:44.396320-07:00,992.2220458984375,10.842157,10842.157 +35532,2025-03-11T11:49:55.244581-07:00,992.2230224609375,10.848261,10848.261 +35533,2025-03-11T11:50:06.094985-07:00,992.240966796875,10.850404,10850.404 +35534,2025-03-11T11:50:16.935585-07:00,992.199951171875,10.8406,10840.6 +35535,2025-03-11T11:50:27.776429-07:00,992.2462768554688,10.840844,10840.844 +35536,2025-03-11T11:50:38.623918-07:00,992.2329711914062,10.847489,10847.489 +35537,2025-03-11T11:50:49.466655-07:00,992.2033081054688,10.842737,10842.737 +35538,2025-03-11T11:51:00.310583-07:00,992.1976318359375,10.843928,10843.928 +35539,2025-03-11T11:51:11.163564-07:00,992.2197875976562,10.852981,10852.981 +35540,2025-03-11T11:51:22.004578-07:00,992.2263793945312,10.841014,10841.014 +35541,2025-03-11T11:51:32.848057-07:00,992.20556640625,10.843479,10843.479 +35542,2025-03-11T11:51:43.687906-07:00,992.2164916992188,10.839849,10839.849 +35543,2025-03-11T11:51:54.535996-07:00,992.2197875976562,10.84809,10848.09 +35544,2025-03-11T11:52:05.377715-07:00,992.2296752929688,10.841719,10841.719 +35545,2025-03-11T11:52:16.218588-07:00,992.2218017578125,10.840873,10840.873 +35546,2025-03-11T11:52:27.065902-07:00,992.256103515625,10.847314,10847.314 +35547,2025-03-11T11:52:37.900816-07:00,992.2151489257812,10.834914,10834.914 +35548,2025-03-11T11:52:48.746590-07:00,992.2086181640625,10.845774,10845.774 +35549,2025-03-11T11:52:59.589891-07:00,992.2086181640625,10.843301,10843.301 +35550,2025-03-11T11:53:10.425918-07:00,992.2416381835938,10.836027,10836.027 +35551,2025-03-11T11:53:21.273587-07:00,992.2284545898438,10.847669,10847.669 +35552,2025-03-11T11:53:32.115584-07:00,992.2207641601562,10.841997,10841.997 +35553,2025-03-11T11:53:42.952583-07:00,992.2142333984375,10.836999,10836.999 +35554,2025-03-11T11:53:53.796908-07:00,992.2207641601562,10.844325,10844.325 +35555,2025-03-11T11:54:04.646632-07:00,992.2327270507812,10.849724,10849.724 +35556,2025-03-11T11:54:15.484940-07:00,992.25390625,10.838308,10838.308 +35557,2025-03-11T11:54:26.327587-07:00,992.2118530273438,10.842647,10842.647 +35558,2025-03-11T11:54:37.177336-07:00,992.2393798828125,10.849749,10849.749 +35559,2025-03-11T11:54:48.019862-07:00,992.22607421875,10.842526,10842.526 +35560,2025-03-11T11:54:58.867845-07:00,992.2327270507812,10.847983,10847.983 +35561,2025-03-11T11:55:09.711001-07:00,992.2393798828125,10.843156,10843.156 +35562,2025-03-11T11:55:20.559939-07:00,992.2406005859375,10.848938,10848.938 +35563,2025-03-11T11:55:31.396853-07:00,992.2471923828125,10.836914,10836.914 +35564,2025-03-11T11:55:42.240786-07:00,992.260498046875,10.843933,10843.933 +35565,2025-03-11T11:55:53.086992-07:00,992.2681274414062,10.846206,10846.206 +35566,2025-03-11T11:56:03.932588-07:00,992.2207641601562,10.845596,10845.596 +35567,2025-03-11T11:56:14.769591-07:00,992.2429809570312,10.837003,10837.003 +35568,2025-03-11T11:56:25.609058-07:00,992.2349853515625,10.839467,10839.467 +35569,2025-03-11T11:56:36.450794-07:00,992.28125,10.841736,10841.736 +35570,2025-03-11T11:56:47.283586-07:00,992.3156127929688,10.832792,10832.792 +35571,2025-03-11T11:56:58.121855-07:00,992.2879028320312,10.838269,10838.269 +35572,2025-03-11T11:57:08.962041-07:00,992.2693481445312,10.840186,10840.186 +35573,2025-03-11T11:57:19.800566-07:00,992.2670288085938,10.838525,10838.525 +35574,2025-03-11T11:57:30.644585-07:00,992.2628173828125,10.844019,10844.019 +35575,2025-03-11T11:57:41.482854-07:00,992.2957763671875,10.838269,10838.269 +35576,2025-03-11T11:57:52.322817-07:00,992.2835693359375,10.839963,10839.963 +35577,2025-03-11T11:58:03.159914-07:00,992.2637329101562,10.837097,10837.097 +35578,2025-03-11T11:58:14.004590-07:00,992.2835693359375,10.844676,10844.676 +35579,2025-03-11T11:58:24.835691-07:00,992.2637329101562,10.831101,10831.101 +35580,2025-03-11T11:58:35.662196-07:00,992.2848510742188,10.826505,10826.505 +35581,2025-03-11T11:58:46.504163-07:00,992.2782592773438,10.841967,10841.967 +35582,2025-03-11T11:58:57.336642-07:00,992.29150390625,10.832479,10832.479 +35583,2025-03-11T11:59:08.178588-07:00,992.2848510742188,10.841946,10841.946 +35584,2025-03-11T11:59:19.023317-07:00,992.2871704101562,10.844729,10844.729 +35585,2025-03-11T11:59:29.860002-07:00,992.3202514648438,10.836685,10836.685 +35586,2025-03-11T11:59:40.698790-07:00,992.2848510742188,10.838788,10838.788 +35587,2025-03-11T11:59:51.537042-07:00,992.3004150390625,10.838252,10838.252 +35588,2025-03-11T12:00:02.368783-07:00,992.29248046875,10.831741,10831.741 +35589,2025-03-11T12:00:13.204756-07:00,992.2594604492188,10.835973,10835.973 +35590,2025-03-11T12:00:24.038611-07:00,992.299072265625,10.833855,10833.855 +35591,2025-03-11T12:00:34.878794-07:00,992.326904296875,10.840183,10840.183 +35592,2025-03-11T12:00:45.717663-07:00,992.3057250976562,10.838869,10838.869 +35593,2025-03-11T12:00:56.553926-07:00,992.3079833984375,10.836263,10836.263 +35594,2025-03-11T12:01:07.395829-07:00,992.3400268554688,10.841903,10841.903 +35595,2025-03-11T12:01:18.227587-07:00,992.3387451171875,10.831758,10831.758 +35596,2025-03-11T12:01:29.066980-07:00,992.3123168945312,10.839393,10839.393 +35597,2025-03-11T12:01:39.910091-07:00,992.326904296875,10.843111,10843.111 +35598,2025-03-11T12:01:50.746765-07:00,992.3334350585938,10.836674,10836.674 +35599,2025-03-11T12:02:01.579171-07:00,992.3400268554688,10.832406,10832.406 +35600,2025-03-11T12:02:12.427027-07:00,992.3467407226562,10.847856,10847.856 +35601,2025-03-11T12:02:23.264588-07:00,992.3202514648438,10.837561,10837.561 +35602,2025-03-11T12:02:34.097920-07:00,992.33447265625,10.833332,10833.332 +35603,2025-03-11T12:02:44.938841-07:00,992.3278198242188,10.840921,10840.921 +35604,2025-03-11T12:02:55.781587-07:00,992.3212280273438,10.842746,10842.746 +35605,2025-03-11T12:03:06.627005-07:00,992.342041015625,10.845418,10845.418 +35606,2025-03-11T12:03:17.463749-07:00,992.33544921875,10.836744,10836.744 +35607,2025-03-11T12:03:28.311495-07:00,992.3499755859375,10.847746,10847.746 +35608,2025-03-11T12:03:39.143572-07:00,992.3222045898438,10.832077,10832.077 +35609,2025-03-11T12:03:49.981704-07:00,992.3630981445312,10.838132,10838.132 +35610,2025-03-11T12:04:00.828172-07:00,992.3377075195312,10.846468,10846.468 +35611,2025-03-11T12:04:11.660586-07:00,992.3301391601562,10.832414,10832.414 +35612,2025-03-11T12:04:22.509684-07:00,992.365478515625,10.849098,10849.098 +35613,2025-03-11T12:04:33.354640-07:00,992.3377075195312,10.844956,10844.956 +35614,2025-03-11T12:04:44.191552-07:00,992.3390502929688,10.836912,10836.912 +35615,2025-03-11T12:04:55.028792-07:00,992.353271484375,10.83724,10837.24 +35616,2025-03-11T12:05:05.864590-07:00,992.3929443359375,10.835798,10835.798 +35617,2025-03-11T12:05:16.703974-07:00,992.366455078125,10.839384,10839.384 +35618,2025-03-11T12:05:27.537028-07:00,992.3466186523438,10.833054,10833.054 +35619,2025-03-11T12:05:38.372920-07:00,992.3611450195312,10.835892,10835.892 +35620,2025-03-11T12:05:49.216112-07:00,992.35986328125,10.843192,10843.192 +35621,2025-03-11T12:06:00.052717-07:00,992.3400268554688,10.836605,10836.605 +35622,2025-03-11T12:06:10.895581-07:00,992.366455078125,10.842864,10842.864 +35623,2025-03-11T12:06:21.733801-07:00,992.328125,10.83822,10838.22 +35624,2025-03-11T12:06:32.574736-07:00,992.3267822265625,10.840935,10840.935 +35625,2025-03-11T12:06:43.408767-07:00,992.328125,10.834031,10834.031 +35626,2025-03-11T12:06:54.255680-07:00,992.334716796875,10.846913,10846.913 +35627,2025-03-11T12:07:03.331123-07:00,992.3069458007812,9.075443,9075.443 +35628,2025-03-11T12:07:05.109776-07:00,992.3214721679688,1.778653,1778.653 +35629,2025-03-11T12:07:15.943874-07:00,992.30029296875,10.834098,10834.098 +35630,2025-03-11T12:07:26.775344-07:00,992.328125,10.83147,10831.47 +35631,2025-03-11T12:07:37.617982-07:00,992.348876953125,10.842638,10842.638 +35632,2025-03-11T12:07:48.467157-07:00,992.3423461914062,10.849175,10849.175 +35633,2025-03-11T12:07:59.306015-07:00,992.3687744140625,10.838858,10838.858 +35634,2025-03-11T12:08:08.235652-07:00,992.3545532226562,8.929637,8929.637 +35635,2025-03-11T12:08:10.149114-07:00,992.3677978515625,1.913462,1913.462 +35636,2025-03-11T12:08:20.991194-07:00,992.3555297851562,10.84208,10842.08 +35637,2025-03-11T12:08:31.831873-07:00,992.3158569335938,10.840679,10840.679 +35638,2025-03-11T12:08:42.665923-07:00,992.3568725585938,10.83405,10834.05 +35639,2025-03-11T12:08:53.507558-07:00,992.376708984375,10.841635,10841.635 +35640,2025-03-11T12:09:04.352907-07:00,992.3657836914062,10.845349,10845.349 +35641,2025-03-11T12:09:15.188942-07:00,992.3657836914062,10.836035,10836.035 +35642,2025-03-11T12:09:26.031177-07:00,992.3392944335938,10.842235,10842.235 +35643,2025-03-11T12:09:36.868850-07:00,992.3314208984375,10.837673,10837.673 +35644,2025-03-11T12:09:47.709867-07:00,992.3512573242188,10.841017,10841.017 +35645,2025-03-11T12:09:58.544873-07:00,992.3577880859375,10.835006,10835.006 +35646,2025-03-11T12:10:09.370869-07:00,992.3577880859375,10.825996,10825.996 +35647,2025-03-11T12:10:20.208843-07:00,992.3435668945312,10.837974,10837.974 +35648,2025-03-11T12:10:31.051199-07:00,992.37109375,10.842356,10842.356 +35649,2025-03-11T12:10:41.894455-07:00,992.3446044921875,10.843256,10843.256 +35650,2025-03-11T12:10:52.733075-07:00,992.3577880859375,10.83862,10838.62 +35651,2025-03-11T12:11:03.557236-07:00,992.3644409179688,10.824161,10824.161 +35652,2025-03-11T12:11:14.394872-07:00,992.3446044921875,10.837636,10837.636 +35653,2025-03-11T12:11:25.226232-07:00,992.3379516601562,10.83136,10831.36 +35654,2025-03-11T12:11:36.070898-07:00,992.37109375,10.844666,10844.666 +35655,2025-03-11T12:11:46.913095-07:00,992.376708984375,10.842197,10842.197 +35656,2025-03-11T12:11:57.745871-07:00,992.3898315429688,10.832776,10832.776 +35657,2025-03-11T12:12:08.587033-07:00,992.3965454101562,10.841162,10841.162 +35658,2025-03-11T12:12:19.423314-07:00,992.38427734375,10.836281,10836.281 +35659,2025-03-11T12:12:30.258905-07:00,992.3965454101562,10.835591,10835.591 +35660,2025-03-11T12:12:41.095398-07:00,992.3700561523438,10.836493,10836.493 +35661,2025-03-11T12:12:51.935099-07:00,992.38330078125,10.839701,10839.701 +35662,2025-03-11T12:13:02.774011-07:00,992.4163208007812,10.838912,10838.912 +35663,2025-03-11T12:13:13.615915-07:00,992.3951416015625,10.841904,10841.904 +35664,2025-03-11T12:13:24.449776-07:00,992.4163208007812,10.833861,10833.861 +35665,2025-03-11T12:13:35.287893-07:00,992.4163208007812,10.838117,10838.117 +35666,2025-03-11T12:13:46.135869-07:00,992.3951416015625,10.847976,10847.976 +35667,2025-03-11T12:13:56.969179-07:00,992.4229736328125,10.83331,10833.31 +35668,2025-03-11T12:14:07.821407-07:00,992.4437255859375,10.852228,10852.228 +35669,2025-03-11T12:14:18.660092-07:00,992.4229736328125,10.838685,10838.685 +35670,2025-03-11T12:14:29.494874-07:00,992.4238891601562,10.834782,10834.782 +35671,2025-03-11T12:14:40.334405-07:00,992.4229736328125,10.839531,10839.531 +35672,2025-03-11T12:14:51.176123-07:00,992.4295043945312,10.841718,10841.718 +35673,2025-03-11T12:15:02.012934-07:00,992.421630859375,10.836811,10836.811 +35674,2025-03-11T12:15:12.858171-07:00,992.4074096679688,10.845237,10845.237 +35675,2025-03-11T12:15:23.701867-07:00,992.4007568359375,10.843696,10843.696 +35676,2025-03-11T12:15:34.532865-07:00,992.4127197265625,10.830998,10830.998 +35677,2025-03-11T12:15:45.376114-07:00,992.4325561523438,10.843249,10843.249 +35678,2025-03-11T12:15:56.215216-07:00,992.439208984375,10.839102,10839.102 +35679,2025-03-11T12:16:07.061397-07:00,992.4368896484375,10.846181,10846.181 +35680,2025-03-11T12:16:17.900870-07:00,992.454345703125,10.839473,10839.473 +35681,2025-03-11T12:16:28.737204-07:00,992.4623413085938,10.836334,10836.334 +35682,2025-03-11T12:16:39.579755-07:00,992.4609985351562,10.842551,10842.551 +35683,2025-03-11T12:16:50.422846-07:00,992.427978515625,10.843091,10843.091 +35684,2025-03-11T12:17:01.269861-07:00,992.440185546875,10.847015,10847.015 +35685,2025-03-11T12:17:12.109874-07:00,992.4478149414062,10.840013,10840.013 +35686,2025-03-11T12:17:22.941896-07:00,992.427001953125,10.832022,10832.022 +35687,2025-03-11T12:17:33.783910-07:00,992.4534301757812,10.842014,10842.014 +35688,2025-03-11T12:17:44.618657-07:00,992.4193725585938,10.834747,10834.747 +35689,2025-03-11T12:17:55.470143-07:00,992.4039306640625,10.851486,10851.486 +35690,2025-03-11T12:18:06.312786-07:00,992.43359375,10.842643,10842.643 +35691,2025-03-11T12:18:17.149922-07:00,992.4246826171875,10.837136,10837.136 +35692,2025-03-11T12:18:27.988865-07:00,992.44580078125,10.838943,10838.943 +35693,2025-03-11T12:18:38.828323-07:00,992.4368896484375,10.839458,10839.458 +35694,2025-03-11T12:18:49.661147-07:00,992.390625,10.832824,10832.824 +35695,2025-03-11T12:19:00.495155-07:00,992.4312744140625,10.834008,10834.008 +35696,2025-03-11T12:19:11.332249-07:00,992.439208984375,10.837094,10837.094 +35697,2025-03-11T12:19:22.180870-07:00,992.4590454101562,10.848621,10848.621 +35698,2025-03-11T12:19:33.023014-07:00,992.4114990234375,10.842144,10842.144 +35699,2025-03-11T12:19:43.856072-07:00,992.390625,10.833058,10833.058 +35700,2025-03-11T12:19:54.698175-07:00,992.415771484375,10.842103,10842.103 +35701,2025-03-11T12:20:05.530086-07:00,992.3959350585938,10.831911,10831.911 +35702,2025-03-11T12:20:16.373299-07:00,992.4104614257812,10.843213,10843.213 +35703,2025-03-11T12:20:27.206867-07:00,992.4600219726562,10.833568,10833.568 +35704,2025-03-11T12:20:38.045064-07:00,992.43798828125,10.838197,10838.197 +35705,2025-03-11T12:20:48.887878-07:00,992.4511108398438,10.842814,10842.814 +35706,2025-03-11T12:20:59.729890-07:00,992.4368896484375,10.842012,10842.012 +35707,2025-03-11T12:21:10.573561-07:00,992.457763671875,10.843671,10843.671 +35708,2025-03-11T12:21:21.416098-07:00,992.4326782226562,10.842537,10842.537 +35709,2025-03-11T12:21:32.254426-07:00,992.439208984375,10.838328,10838.328 +35710,2025-03-11T12:21:43.090857-07:00,992.4312744140625,10.836431,10836.431 +35711,2025-03-11T12:21:53.932849-07:00,992.4534301757812,10.841992,10841.992 +35712,2025-03-11T12:22:04.770992-07:00,992.440185546875,10.838143,10838.143 +35713,2025-03-11T12:22:15.613175-07:00,992.4468994140625,10.842183,10842.183 +35714,2025-03-11T12:22:26.451127-07:00,992.4478149414062,10.837952,10837.952 +35715,2025-03-11T12:22:37.294875-07:00,992.454345703125,10.843748,10843.748 +35716,2025-03-11T12:22:48.131249-07:00,992.452392578125,10.836374,10836.374 +35717,2025-03-11T12:22:58.974340-07:00,992.427978515625,10.843091,10843.091 +35718,2025-03-11T12:23:09.815234-07:00,992.4534301757812,10.840894,10840.894 +35719,2025-03-11T12:23:20.645872-07:00,992.4346313476562,10.830638,10830.638 +35720,2025-03-11T12:23:31.494154-07:00,992.455810546875,10.848282,10848.282 +35721,2025-03-11T12:23:42.325868-07:00,992.4490356445312,10.831714,10831.714 +35722,2025-03-11T12:23:53.169117-07:00,992.4689331054688,10.843249,10843.249 +35723,2025-03-11T12:24:04.007322-07:00,992.4676513671875,10.838205,10838.205 +35724,2025-03-11T12:24:14.837925-07:00,992.4808349609375,10.830603,10830.603 +35725,2025-03-11T12:24:25.681391-07:00,992.4478149414062,10.843466,10843.466 +35726,2025-03-11T12:24:36.516231-07:00,992.4689331054688,10.83484,10834.84 +35727,2025-03-11T12:24:58.193096-07:00,992.4689331054688,21.676865,21676.865 +35728,2025-03-11T12:25:09.029984-07:00,992.4722900390625,10.836888,10836.888 +35729,2025-03-11T12:25:19.866378-07:00,992.4732666015625,10.836394,10836.394 +35730,2025-03-11T12:25:30.705092-07:00,992.4609985351562,10.838714,10838.714 +35731,2025-03-11T12:25:41.557875-07:00,992.4534301757812,10.852783,10852.783 +35732,2025-03-11T12:25:52.389221-07:00,992.500732421875,10.831346,10831.346 +35733,2025-03-11T12:26:03.228877-07:00,992.4312744140625,10.839656,10839.656 +35734,2025-03-11T12:26:14.077885-07:00,992.43798828125,10.849008,10849.008 +35735,2025-03-11T12:26:24.908717-07:00,992.4656372070312,10.830832,10830.832 +35736,2025-03-11T12:26:35.743869-07:00,992.4931030273438,10.835152,10835.152 +35737,2025-03-11T12:26:46.588866-07:00,992.4722900390625,10.844997,10844.997 +35738,2025-03-11T12:26:57.422907-07:00,992.4940795898438,10.834041,10834.041 +35739,2025-03-11T12:27:08.257869-07:00,992.4788818359375,10.834962,10834.962 +35740,2025-03-11T12:27:19.090048-07:00,992.4788818359375,10.832179,10832.179 +35741,2025-03-11T12:27:29.920866-07:00,992.5119018554688,10.830818,10830.818 +35742,2025-03-11T12:27:40.760865-07:00,992.4974365234375,10.839999,10839.999 +35743,2025-03-11T12:27:51.597868-07:00,992.5053100585938,10.837003,10837.003 +35744,2025-03-11T12:28:02.440240-07:00,992.4907836914062,10.842372,10842.372 +35745,2025-03-11T12:28:13.281871-07:00,992.4832153320312,10.841631,10841.631 +35746,2025-03-11T12:28:24.108878-07:00,992.5162353515625,10.827007,10827.007 +35747,2025-03-11T12:28:34.957046-07:00,992.5172119140625,10.848168,10848.168 +35748,2025-03-11T12:28:45.794865-07:00,992.4951782226562,10.837819,10837.819 +35749,2025-03-11T12:28:56.631947-07:00,992.475341796875,10.837082,10837.082 +35750,2025-03-11T12:29:07.471063-07:00,992.4818725585938,10.839116,10839.116 +35751,2025-03-11T12:29:18.307864-07:00,992.4818725585938,10.836801,10836.801 +35752,2025-03-11T12:29:29.151867-07:00,992.50830078125,10.844003,10844.003 +35753,2025-03-11T12:29:39.983967-07:00,992.513916015625,10.8321,10832.1 +35754,2025-03-11T12:29:50.819856-07:00,992.514892578125,10.835889,10835.889 +35755,2025-03-11T12:30:01.662867-07:00,992.4611206054688,10.843011,10843.011 +35756,2025-03-11T12:30:12.505019-07:00,992.4874877929688,10.842152,10842.152 +35757,2025-03-11T12:30:23.341149-07:00,992.4874877929688,10.83613,10836.13 +35758,2025-03-11T12:30:34.177122-07:00,992.48095703125,10.835973,10835.973 +35759,2025-03-11T12:30:45.010309-07:00,992.4620361328125,10.833187,10833.187 +35760,2025-03-11T12:30:55.850011-07:00,992.453125,10.839702,10839.702 +35761,2025-03-11T12:31:06.687111-07:00,992.488525390625,10.8371,10837.1 +35762,2025-03-11T12:31:17.518199-07:00,992.4676513671875,10.831088,10831.088 +35763,2025-03-11T12:31:28.361916-07:00,992.4412231445312,10.843717,10843.717 +35764,2025-03-11T12:31:39.204961-07:00,992.4686889648438,10.843045,10843.045 +35765,2025-03-11T12:31:50.042921-07:00,992.46337890625,10.83796,10837.96 +35766,2025-03-11T12:32:00.879881-07:00,992.4765625,10.83696,10836.96 +35767,2025-03-11T12:32:11.707126-07:00,992.46337890625,10.827245,10827.245 +35768,2025-03-11T12:32:22.541216-07:00,992.4620361328125,10.83409,10834.09 +35769,2025-03-11T12:32:33.369872-07:00,992.4488525390625,10.828656,10828.656 +35770,2025-03-11T12:32:44.202451-07:00,992.4237670898438,10.832579,10832.579 +35771,2025-03-11T12:32:55.034202-07:00,992.4567260742188,10.831751,10831.751 +35772,2025-03-11T12:33:05.870096-07:00,992.4302978515625,10.835894,10835.894 +35773,2025-03-11T12:33:16.708127-07:00,992.4435424804688,10.838031,10838.031 +35774,2025-03-11T12:33:27.545129-07:00,992.402587890625,10.837002,10837.002 +35775,2025-03-11T12:33:38.380251-07:00,992.42236328125,10.835122,10835.122 +35776,2025-03-11T12:33:49.220929-07:00,992.4356079101562,10.840678,10840.678 +35777,2025-03-11T12:34:00.063937-07:00,992.4488525390625,10.843008,10843.008 +35778,2025-03-11T12:34:10.895179-07:00,992.427978515625,10.831242,10831.242 +35779,2025-03-11T12:34:21.733268-07:00,992.4488525390625,10.838089,10838.089 +35780,2025-03-11T12:34:32.575769-07:00,992.4501342773438,10.842501,10842.501 +35781,2025-03-11T12:34:43.413607-07:00,992.4148559570312,10.837838,10837.838 +35782,2025-03-11T12:34:54.251404-07:00,992.4302978515625,10.837797,10837.797 +35783,2025-03-11T12:35:05.091842-07:00,992.457763671875,10.840438,10840.438 +35784,2025-03-11T12:35:15.925871-07:00,992.4237670898438,10.834029,10834.029 +35785,2025-03-11T12:35:26.763061-07:00,992.4312744140625,10.83719,10837.19 +35786,2025-03-11T12:35:37.604015-07:00,992.4312744140625,10.840954,10840.954 +35787,2025-03-11T12:35:48.443873-07:00,992.4259643554688,10.839858,10839.858 +35788,2025-03-11T12:35:59.281749-07:00,992.3796997070312,10.837876,10837.876 +35789,2025-03-11T12:36:10.123623-07:00,992.368408203125,10.841874,10841.874 +35790,2025-03-11T12:36:20.955872-07:00,992.3674926757812,10.832249,10832.249 +35791,2025-03-11T12:36:31.786206-07:00,992.3817138671875,10.830334,10830.334 +35792,2025-03-11T12:36:42.619920-07:00,992.4081420898438,10.833714,10833.714 +35793,2025-03-11T12:36:53.451496-07:00,992.409423828125,10.831576,10831.576 +35794,2025-03-11T12:37:04.291553-07:00,992.42041015625,10.840057,10840.057 +35795,2025-03-11T12:37:15.126124-07:00,992.4226684570312,10.834571,10834.571 +35796,2025-03-11T12:37:25.965867-07:00,992.409423828125,10.839743,10839.743 +35797,2025-03-11T12:37:36.794870-07:00,992.3609619140625,10.829003,10829.003 +35798,2025-03-11T12:37:47.640873-07:00,992.3674926757812,10.846003,10846.003 +35799,2025-03-11T12:37:58.475223-07:00,992.40283203125,10.83435,10834.35 +35800,2025-03-11T12:38:09.319579-07:00,992.3948974609375,10.844356,10844.356 +35801,2025-03-11T12:38:20.156227-07:00,992.35986328125,10.836648,10836.648 +35802,2025-03-11T12:38:30.988875-07:00,992.3863525390625,10.832648,10832.648 +35803,2025-03-11T12:38:41.823001-07:00,992.3585815429688,10.834126,10834.126 +35804,2025-03-11T12:38:52.655867-07:00,992.3629150390625,10.832866,10832.866 +35805,2025-03-11T12:39:03.489307-07:00,992.3685302734375,10.83344,10833.44 +35806,2025-03-11T12:39:14.318916-07:00,992.3629150390625,10.829609,10829.609 +35807,2025-03-11T12:39:25.162625-07:00,992.3562622070312,10.843709,10843.709 +35808,2025-03-11T12:39:35.996157-07:00,992.3431396484375,10.833532,10833.532 +35809,2025-03-11T12:39:46.831598-07:00,992.35400390625,10.835441,10835.441 +35810,2025-03-11T12:39:57.663389-07:00,992.3552856445312,10.831791,10831.791 +35811,2025-03-11T12:40:08.500101-07:00,992.3077392578125,10.836712,10836.712 +35812,2025-03-11T12:40:19.329873-07:00,992.342041015625,10.829772,10829.772 +35813,2025-03-11T12:40:30.166159-07:00,992.3473510742188,10.836286,10836.286 +35814,2025-03-11T12:40:40.991867-07:00,992.3486938476562,10.825708,10825.708 +35815,2025-03-11T12:40:51.827524-07:00,992.3233032226562,10.835657,10835.657 +35816,2025-03-11T12:41:02.659864-07:00,992.30908203125,10.83234,10832.34 +35817,2025-03-11T12:41:13.492175-07:00,992.3209228515625,10.832311,10832.311 +35818,2025-03-11T12:41:24.331175-07:00,992.322265625,10.839,10839.0 +35819,2025-03-11T12:41:35.162073-07:00,992.3486938476562,10.830898,10830.898 +35820,2025-03-11T12:41:46.000203-07:00,992.3156127929688,10.83813,10838.13 +35821,2025-03-11T12:41:56.848105-07:00,992.3496704101562,10.847902,10847.902 +35822,2025-03-11T12:42:07.684863-07:00,992.371826171875,10.836758,10836.758 +35823,2025-03-11T12:42:18.522868-07:00,992.3995361328125,10.838005,10838.005 +35824,2025-03-11T12:42:29.349873-07:00,992.3796997070312,10.827005,10827.005 +35825,2025-03-11T12:42:40.181212-07:00,992.3585815429688,10.831339,10831.339 +35826,2025-03-11T12:42:51.020732-07:00,992.3443603515625,10.83952,10839.52 +35827,2025-03-11T12:43:01.854107-07:00,992.37744140625,10.833375,10833.375 +35828,2025-03-11T12:43:12.697043-07:00,992.33642578125,10.842936,10842.936 +35829,2025-03-11T12:43:23.537190-07:00,992.3731079101562,10.840147,10840.147 +35830,2025-03-11T12:43:34.373118-07:00,992.3641967773438,10.835928,10835.928 +35831,2025-03-11T12:43:56.054051-07:00,992.3509521484375,21.680933,21680.933 +35832,2025-03-11T12:44:06.885407-07:00,992.3496704101562,10.831356,10831.356 +35833,2025-03-11T12:44:17.721871-07:00,992.3245239257812,10.836464,10836.464 +35834,2025-03-11T12:44:28.564285-07:00,992.3585815429688,10.842414,10842.414 +35835,2025-03-11T12:44:39.406955-07:00,992.3322143554688,10.84267,10842.67 +35836,2025-03-11T12:44:50.240841-07:00,992.3467407226562,10.833886,10833.886 +35837,2025-03-11T12:45:01.084325-07:00,992.3509521484375,10.843484,10843.484 +35838,2025-03-11T12:45:11.919865-07:00,992.3278198242188,10.83554,10835.54 +35839,2025-03-11T12:45:22.745873-07:00,992.3873291015625,10.826008,10826.008 +35840,2025-03-11T12:45:33.582422-07:00,992.354248046875,10.836549,10836.549 +35841,2025-03-11T12:45:44.411867-07:00,992.3817138671875,10.829445,10829.445 +35842,2025-03-11T12:45:55.241492-07:00,992.3895874023438,10.829625,10829.625 +35843,2025-03-11T12:46:06.072865-07:00,992.368408203125,10.831373,10831.373 +35844,2025-03-11T12:46:16.917867-07:00,992.391845703125,10.845002,10845.002 +35845,2025-03-11T12:46:27.755819-07:00,992.384033203125,10.837952,10837.952 +35846,2025-03-11T12:46:38.586011-07:00,992.3552856445312,10.830192,10830.192 +35847,2025-03-11T12:46:49.423292-07:00,992.3773193359375,10.837281,10837.281 +35848,2025-03-11T12:47:00.266555-07:00,992.3311157226562,10.843263,10843.263 +35849,2025-03-11T12:47:11.108869-07:00,992.3367309570312,10.842314,10842.314 +35850,2025-03-11T12:47:21.939871-07:00,992.35888671875,10.831002,10831.002 +35851,2025-03-11T12:47:32.778083-07:00,992.365478515625,10.838212,10838.212 +35852,2025-03-11T12:47:43.611052-07:00,992.3641967773438,10.832969,10832.969 +35853,2025-03-11T12:47:54.437341-07:00,992.390625,10.826289,10826.289 +35854,2025-03-11T12:48:05.276924-07:00,992.3641967773438,10.839583,10839.583 +35855,2025-03-11T12:48:16.111873-07:00,992.3853149414062,10.834949,10834.949 +35856,2025-03-11T12:48:26.949384-07:00,992.4051513671875,10.837511,10837.511 +35857,2025-03-11T12:48:37.794509-07:00,992.3720092773438,10.845125,10845.125 +35858,2025-03-11T12:48:48.625470-07:00,992.3720092773438,10.830961,10830.961 +35859,2025-03-11T12:48:59.466667-07:00,992.390625,10.841197,10841.197 +35860,2025-03-11T12:49:10.303874-07:00,992.3433837890625,10.837207,10837.207 +35861,2025-03-11T12:49:21.146918-07:00,992.3443603515625,10.843044,10843.044 +35862,2025-03-11T12:49:31.989023-07:00,992.3773193359375,10.842105,10842.105 +35863,2025-03-11T12:49:42.824321-07:00,992.3552856445312,10.835298,10835.298 +35864,2025-03-11T12:49:53.669416-07:00,992.3630981445312,10.845095,10845.095 +35865,2025-03-11T12:50:04.507257-07:00,992.3895874023438,10.837841,10837.841 +35866,2025-03-11T12:50:15.345216-07:00,992.342041015625,10.837959,10837.959 +35867,2025-03-11T12:50:26.194880-07:00,992.3499755859375,10.849664,10849.664 +35868,2025-03-11T12:50:37.033111-07:00,992.323486328125,10.838231,10838.231 +35869,2025-03-11T12:50:47.875861-07:00,992.365478515625,10.84275,10842.75 +35870,2025-03-11T12:50:58.718875-07:00,992.3773193359375,10.843014,10843.014 +35871,2025-03-11T12:51:09.555922-07:00,992.3720092773438,10.837047,10837.047 +35872,2025-03-11T12:51:20.395955-07:00,992.366455078125,10.840033,10840.033 +35873,2025-03-11T12:51:31.222130-07:00,992.3876342773438,10.826175,10826.175 +35874,2025-03-11T12:51:42.056091-07:00,992.34130859375,10.833961,10833.961 +35875,2025-03-11T12:51:52.891985-07:00,992.3135986328125,10.835894,10835.894 +35876,2025-03-11T12:52:03.726756-07:00,992.305908203125,10.834771,10834.771 +35877,2025-03-11T12:52:14.568126-07:00,992.30029296875,10.84137,10841.37 +35878,2025-03-11T12:52:25.411085-07:00,992.3267822265625,10.842959,10842.959 +35879,2025-03-11T12:52:36.242492-07:00,992.3290405273438,10.831407,10831.407 +35880,2025-03-11T12:52:47.081076-07:00,992.335693359375,10.838584,10838.584 +35881,2025-03-11T12:52:57.925868-07:00,992.3214721679688,10.844792,10844.792 +35882,2025-03-11T12:53:08.760173-07:00,992.2960815429688,10.834305,10834.305 +35883,2025-03-11T12:53:19.602005-07:00,992.3171997070312,10.841832,10841.832 +35884,2025-03-11T12:53:30.438093-07:00,992.2960815429688,10.836088,10836.088 +35885,2025-03-11T12:53:41.278924-07:00,992.3026733398438,10.840831,10840.831 +35886,2025-03-11T12:53:52.124200-07:00,992.3303833007812,10.845276,10845.276 +35887,2025-03-11T12:54:02.954227-07:00,992.3303833007812,10.830027,10830.027 +35888,2025-03-11T12:54:13.807123-07:00,992.2818603515625,10.852896,10852.896 +35889,2025-03-11T12:54:24.644212-07:00,992.3082885742188,10.837089,10837.089 +35890,2025-03-11T12:54:35.485939-07:00,992.2752075195312,10.841727,10841.727 +35891,2025-03-11T12:54:46.328823-07:00,992.2884521484375,10.842884,10842.884 +35892,2025-03-11T12:54:57.172308-07:00,992.2894287109375,10.843485,10843.485 +35893,2025-03-11T12:55:08.014770-07:00,992.2884521484375,10.842462,10842.462 +35894,2025-03-11T12:55:18.850162-07:00,992.2949829101562,10.835392,10835.392 +35895,2025-03-11T12:55:29.692923-07:00,992.2960815429688,10.842761,10842.761 +35896,2025-03-11T12:55:40.539869-07:00,992.29736328125,10.846946,10846.946 +35897,2025-03-11T12:55:51.378149-07:00,992.310546875,10.83828,10838.28 +35898,2025-03-11T12:56:02.215914-07:00,992.290771484375,10.837765,10837.765 +35899,2025-03-11T12:56:13.061190-07:00,992.32373046875,10.845276,10845.276 +35900,2025-03-11T12:56:23.909999-07:00,992.2841186523438,10.848809,10848.809 +35901,2025-03-11T12:56:34.742323-07:00,992.3026733398438,10.832324,10832.324 +35902,2025-03-11T12:56:45.572108-07:00,992.290771484375,10.829785,10829.785 +35903,2025-03-11T12:56:56.408869-07:00,992.2431030273438,10.836761,10836.761 +35904,2025-03-11T12:57:07.247991-07:00,992.2653198242188,10.839122,10839.122 +35905,2025-03-11T12:57:18.090346-07:00,992.2520141601562,10.842355,10842.355 +35906,2025-03-11T12:57:28.927859-07:00,992.2586669921875,10.837513,10837.513 +35907,2025-03-11T12:57:39.758602-07:00,992.286376953125,10.830743,10830.743 +35908,2025-03-11T12:57:50.597232-07:00,992.28515625,10.83863,10838.63 +35909,2025-03-11T12:58:01.433876-07:00,992.2510986328125,10.836644,10836.644 +35910,2025-03-11T12:58:12.266052-07:00,992.2444458007812,10.832176,10832.176 +35911,2025-03-11T12:58:23.103868-07:00,992.21142578125,10.837816,10837.816 +35912,2025-03-11T12:58:33.936318-07:00,992.23779296875,10.83245,10832.45 +35913,2025-03-11T12:58:44.770469-07:00,992.2312622070312,10.834151,10834.151 +35914,2025-03-11T12:58:55.603387-07:00,992.2101440429688,10.832918,10832.918 +35915,2025-03-11T12:59:06.443151-07:00,992.2444458007812,10.839764,10839.764 +35916,2025-03-11T12:59:17.282891-07:00,992.2520141601562,10.83974,10839.74 +35917,2025-03-11T12:59:28.115263-07:00,992.23779296875,10.832372,10832.372 +35918,2025-03-11T12:59:38.965204-07:00,992.236572265625,10.849941,10849.941 +35919,2025-03-11T12:59:49.795848-07:00,992.2232666015625,10.830644,10830.644 +35920,2025-03-11T13:00:00.638873-07:00,992.2444458007812,10.843025,10843.025 +35921,2025-03-11T13:00:11.477110-07:00,992.2167358398438,10.838237,10838.237 +35922,2025-03-11T13:00:33.154142-07:00,992.2223510742188,21.677032,21677.032 +35923,2025-03-11T13:00:44.000867-07:00,992.2355346679688,10.846725,10846.725 +35924,2025-03-11T13:00:54.844202-07:00,992.236572265625,10.843335,10843.335 +35925,2025-03-11T13:01:05.686621-07:00,992.2090454101562,10.842419,10842.419 +35926,2025-03-11T13:01:16.518998-07:00,992.2223510742188,10.832377,10832.377 +35927,2025-03-11T13:01:27.366010-07:00,992.2179565429688,10.847012,10847.012 +35928,2025-03-11T13:01:38.205276-07:00,992.236572265625,10.839266,10839.266 +35929,2025-03-11T13:01:49.036868-07:00,992.23779296875,10.831592,10831.592 +35930,2025-03-11T13:01:59.882500-07:00,992.2454833984375,10.845632,10845.632 +35931,2025-03-11T13:02:10.719332-07:00,992.224609375,10.836832,10836.832 +35932,2025-03-11T13:02:21.555868-07:00,992.2268676757812,10.836536,10836.536 +35933,2025-03-11T13:02:32.386867-07:00,992.2203369140625,10.830999,10830.999 +35934,2025-03-11T13:02:43.218056-07:00,992.200439453125,10.831189,10831.189 +35935,2025-03-11T13:02:54.056140-07:00,992.2081298828125,10.838084,10838.084 +35936,2025-03-11T13:03:04.888552-07:00,992.2093505859375,10.832412,10832.412 +35937,2025-03-11T13:03:15.723993-07:00,992.2146606445312,10.835441,10835.441 +35938,2025-03-11T13:03:26.561869-07:00,992.2235717773438,10.837876,10837.876 +35939,2025-03-11T13:03:37.406869-07:00,992.2159423828125,10.845,10845.0 +35940,2025-03-11T13:03:48.231875-07:00,992.2345581054688,10.825006,10825.006 +35941,2025-03-11T13:03:59.070046-07:00,992.25,10.838171,10838.171 +35942,2025-03-11T13:04:09.908655-07:00,992.2380981445312,10.838609,10838.609 +35943,2025-03-11T13:04:20.744871-07:00,992.21826171875,10.836216,10836.216 +35944,2025-03-11T13:04:31.578186-07:00,992.2513427734375,10.833315,10833.315 +35945,2025-03-11T13:04:42.425220-07:00,992.2390747070312,10.847034,10847.034 +35946,2025-03-11T13:04:53.250866-07:00,992.266845703125,10.825646,10825.646 +35947,2025-03-11T13:05:04.092233-07:00,992.26025390625,10.841367,10841.367 +35948,2025-03-11T13:05:14.929944-07:00,992.254638671875,10.837711,10837.711 +35949,2025-03-11T13:05:25.759850-07:00,992.2423706054688,10.829906,10829.906 +35950,2025-03-11T13:05:36.604866-07:00,992.208251953125,10.845016,10845.016 +35951,2025-03-11T13:05:47.443859-07:00,992.237060546875,10.838993,10838.993 +35952,2025-03-11T13:05:58.287392-07:00,992.2106323242188,10.843533,10843.533 +35953,2025-03-11T13:06:09.123874-07:00,992.2062377929688,10.836482,10836.482 +35954,2025-03-11T13:06:19.968312-07:00,992.2139282226562,10.844438,10844.438 +35955,2025-03-11T13:06:30.807722-07:00,992.1741943359375,10.83941,10839.41 +35956,2025-03-11T13:06:41.636868-07:00,992.2271118164062,10.829146,10829.146 +35957,2025-03-11T13:06:52.473224-07:00,992.21826171875,10.836356,10836.356 +35958,2025-03-11T13:07:03.315080-07:00,992.2129516601562,10.841856,10841.856 +35959,2025-03-11T13:07:14.208990-07:00,992.2129516601562,10.89391,10893.91 +35960,2025-03-11T13:07:25.047499-07:00,992.2195434570312,10.838509,10838.509 +35961,2025-03-11T13:07:35.888063-07:00,992.2402954101562,10.840564,10840.564 +35962,2025-03-11T13:07:46.724965-07:00,992.2218017578125,10.836902,10836.902 +35963,2025-03-11T13:07:57.558223-07:00,992.19970703125,10.833258,10833.258 +35964,2025-03-11T13:08:08.397167-07:00,992.2139282226562,10.838944,10838.944 +35965,2025-03-11T13:08:19.238967-07:00,992.2271118164062,10.8418,10841.8 +35966,2025-03-11T13:08:30.079962-07:00,992.1953125,10.840995,10840.995 +35967,2025-03-11T13:08:40.931227-07:00,992.2240600585938,10.851265,10851.265 +35968,2025-03-11T13:08:51.774252-07:00,992.2329711914062,10.843025,10843.025 +35969,2025-03-11T13:09:02.611982-07:00,992.1721801757812,10.83773,10837.73 +35970,2025-03-11T13:09:13.452285-07:00,992.1668701171875,10.840303,10840.303 +35971,2025-03-11T13:09:24.300964-07:00,992.1876831054688,10.848679,10848.679 +35972,2025-03-11T13:09:35.140949-07:00,992.1900024414062,10.839985,10839.985 +35973,2025-03-11T13:09:45.978001-07:00,992.1912231445312,10.837052,10837.052 +35974,2025-03-11T13:09:56.814213-07:00,992.1989135742188,10.836212,10836.212 +35975,2025-03-11T13:10:07.659207-07:00,992.2054443359375,10.844994,10844.994 +35976,2025-03-11T13:10:18.498280-07:00,992.1802978515625,10.839073,10839.073 +35977,2025-03-11T13:10:29.345165-07:00,992.2232666015625,10.846885,10846.885 +35978,2025-03-11T13:10:40.190090-07:00,992.2232666015625,10.844925,10844.925 +35979,2025-03-11T13:10:51.025967-07:00,992.189208984375,10.835877,10835.877 +35980,2025-03-11T13:11:01.868311-07:00,992.2299194335938,10.842344,10842.344 +35981,2025-03-11T13:11:12.711091-07:00,992.2288818359375,10.84278,10842.78 +35982,2025-03-11T13:11:23.555226-07:00,992.2223510742188,10.844135,10844.135 +35983,2025-03-11T13:11:34.396966-07:00,992.2232666015625,10.84174,10841.74 +35984,2025-03-11T13:11:45.241608-07:00,992.2111206054688,10.844642,10844.642 +35985,2025-03-11T13:11:56.077958-07:00,992.1925048828125,10.83635,10836.35 +35986,2025-03-11T13:12:06.920984-07:00,992.1648559570312,10.843026,10843.026 +35987,2025-03-11T13:12:17.749299-07:00,992.21337890625,10.828315,10828.315 +35988,2025-03-11T13:12:28.592013-07:00,992.1793212890625,10.842714,10842.714 +35989,2025-03-11T13:12:39.426952-07:00,992.1670532226562,10.834939,10834.939 +35990,2025-03-11T13:12:50.267421-07:00,992.1868896484375,10.840469,10840.469 +35991,2025-03-11T13:13:01.107708-07:00,992.17138671875,10.840287,10840.287 +35992,2025-03-11T13:13:11.949263-07:00,992.1991577148438,10.841555,10841.555 +35993,2025-03-11T13:13:22.793967-07:00,992.1793212890625,10.844704,10844.704 +35994,2025-03-11T13:13:33.639568-07:00,992.1439208984375,10.845601,10845.601 +35995,2025-03-11T13:13:44.468123-07:00,992.1571655273438,10.828555,10828.555 +35996,2025-03-11T13:13:55.310997-07:00,992.1296997070312,10.842874,10842.874 +35997,2025-03-11T13:14:06.156971-07:00,992.1373291015625,10.845974,10845.974 +35998,2025-03-11T13:14:16.990516-07:00,992.1571655273438,10.833545,10833.545 +35999,2025-03-11T13:14:27.840805-07:00,992.150634765625,10.850289,10850.289 +36000,2025-03-11T13:14:38.677955-07:00,992.1231079101562,10.83715,10837.15 +36001,2025-03-11T13:14:49.522957-07:00,992.1383056640625,10.845002,10845.002 +36002,2025-03-11T13:15:00.360299-07:00,992.1251831054688,10.837342,10837.342 +36003,2025-03-11T13:15:11.197204-07:00,992.1353149414062,10.836905,10836.905 +36004,2025-03-11T13:15:22.029966-07:00,992.1021728515625,10.832762,10832.762 +36005,2025-03-11T13:15:32.878290-07:00,992.10888671875,10.848324,10848.324 +36006,2025-03-11T13:15:43.715216-07:00,992.0801391601562,10.836926,10836.926 +36007,2025-03-11T13:15:54.551954-07:00,992.103271484375,10.836738,10836.738 +36008,2025-03-11T13:16:05.398954-07:00,992.0979614257812,10.847,10847.0 +36009,2025-03-11T13:16:16.237303-07:00,992.10546875,10.838349,10838.349 +36010,2025-03-11T13:16:27.066108-07:00,992.0856323242188,10.828805,10828.805 +36011,2025-03-11T13:16:37.902345-07:00,992.0604858398438,10.836237,10836.237 +36012,2025-03-11T13:16:48.738965-07:00,992.0526733398438,10.83662,10836.62 +36013,2025-03-11T13:16:59.580962-07:00,992.04736328125,10.841997,10841.997 +36014,2025-03-11T13:17:10.421255-07:00,992.036376953125,10.840293,10840.293 +36015,2025-03-11T13:17:21.252485-07:00,992.041748046875,10.83123,10831.23 +36016,2025-03-11T13:17:32.093583-07:00,992.0284423828125,10.841098,10841.098 +36017,2025-03-11T13:17:53.781318-07:00,992.05615234375,21.687735,21687.735 +36018,2025-03-11T13:18:04.611956-07:00,992.041748046875,10.830638,10830.638 +36019,2025-03-11T13:18:15.456031-07:00,992.0152587890625,10.844075,10844.075 +36020,2025-03-11T13:18:26.293022-07:00,992.0231323242188,10.836991,10836.991 +36021,2025-03-11T13:18:37.125968-07:00,992.050537109375,10.832946,10832.946 +36022,2025-03-11T13:18:47.959605-07:00,992.0406494140625,10.833637,10833.637 +36023,2025-03-11T13:18:58.788965-07:00,992.0406494140625,10.82936,10829.36 +36024,2025-03-11T13:19:09.620967-07:00,992.0142211914062,10.832002,10832.002 +36025,2025-03-11T13:19:20.458255-07:00,991.982177734375,10.837288,10837.288 +36026,2025-03-11T13:19:31.297303-07:00,991.9921264648438,10.839048,10839.048 +36027,2025-03-11T13:19:42.131794-07:00,991.9788818359375,10.834491,10834.491 +36028,2025-03-11T13:19:52.969120-07:00,991.9907836914062,10.837326,10837.326 +36029,2025-03-11T13:20:03.806962-07:00,991.9722900390625,10.837842,10837.842 +36030,2025-03-11T13:20:14.642191-07:00,992.0010375976562,10.835229,10835.229 +36031,2025-03-11T13:20:25.480247-07:00,991.9590454101562,10.838056,10838.056 +36032,2025-03-11T13:20:36.308218-07:00,991.9865112304688,10.827971,10827.971 +36033,2025-03-11T13:20:47.151964-07:00,991.9798583984375,10.843746,10843.746 +36034,2025-03-11T13:20:57.988398-07:00,991.9732666015625,10.836434,10836.434 +36035,2025-03-11T13:21:08.820659-07:00,991.9745483398438,10.832261,10832.261 +36036,2025-03-11T13:21:19.660945-07:00,991.9600219726562,10.840286,10840.286 +36037,2025-03-11T13:21:30.497303-07:00,991.995361328125,10.836358,10836.358 +36038,2025-03-11T13:21:41.327210-07:00,991.981201171875,10.829907,10829.907 +36039,2025-03-11T13:21:52.153975-07:00,991.95703125,10.826765,10826.765 +36040,2025-03-11T13:22:02.989941-07:00,991.9712524414062,10.835966,10835.966 +36041,2025-03-11T13:22:13.822268-07:00,991.977783203125,10.832327,10832.327 +36042,2025-03-11T13:22:24.653113-07:00,991.9801635742188,10.830845,10830.845 +36043,2025-03-11T13:22:35.479985-07:00,991.939453125,10.826872,10826.872 +36044,2025-03-11T13:22:46.309229-07:00,991.95263671875,10.829244,10829.244 +36045,2025-03-11T13:22:57.143971-07:00,991.9404907226562,10.834742,10834.742 +36046,2025-03-11T13:23:07.981005-07:00,991.9271850585938,10.837034,10837.034 +36047,2025-03-11T13:23:18.806213-07:00,991.9064331054688,10.825208,10825.208 +36048,2025-03-11T13:23:29.644950-07:00,991.9328002929688,10.838737,10838.737 +36049,2025-03-11T13:23:40.477208-07:00,991.9073486328125,10.832258,10832.258 +36050,2025-03-11T13:23:51.304273-07:00,991.9295043945312,10.827065,10827.065 +36051,2025-03-11T13:24:02.141252-07:00,991.8954467773438,10.836979,10836.979 +36052,2025-03-11T13:24:12.982181-07:00,991.915283203125,10.840929,10840.929 +36053,2025-03-11T13:24:23.814649-07:00,991.9109497070312,10.832468,10832.468 +36054,2025-03-11T13:24:34.634968-07:00,991.9085693359375,10.820319,10820.319 +36055,2025-03-11T13:24:45.473123-07:00,991.8778076171875,10.838155,10838.155 +36056,2025-03-11T13:24:56.302965-07:00,991.856689453125,10.829842,10829.842 +36057,2025-03-11T13:25:07.129726-07:00,991.8976440429688,10.826761,10826.761 +36058,2025-03-11T13:25:17.963029-07:00,991.8501586914062,10.833303,10833.303 +36059,2025-03-11T13:25:28.797307-07:00,991.8712768554688,10.834278,10834.278 +36060,2025-03-11T13:25:39.636376-07:00,991.8457641601562,10.839069,10839.069 +36061,2025-03-11T13:25:50.478947-07:00,991.8721923828125,10.842571,10842.571 +36062,2025-03-11T13:26:01.317517-07:00,991.8457641601562,10.83857,10838.57 +36063,2025-03-11T13:26:12.155252-07:00,991.87890625,10.837735,10837.735 +36064,2025-03-11T13:26:22.985000-07:00,991.8272094726562,10.829748,10829.748 +36065,2025-03-11T13:26:33.824330-07:00,991.8392333984375,10.83933,10839.33 +36066,2025-03-11T13:26:44.660013-07:00,991.8272094726562,10.835683,10835.683 +36067,2025-03-11T13:26:55.498040-07:00,991.8348388671875,10.838027,10838.027 +36068,2025-03-11T13:27:06.329226-07:00,991.850341796875,10.831186,10831.186 +36069,2025-03-11T13:27:17.160964-07:00,991.81591796875,10.831738,10831.738 +36070,2025-03-11T13:27:27.986326-07:00,991.8172607421875,10.825362,10825.362 +36071,2025-03-11T13:27:38.830007-07:00,991.8182983398438,10.843681,10843.681 +36072,2025-03-11T13:27:49.661522-07:00,991.8139038085938,10.831515,10831.515 +36073,2025-03-11T13:28:00.500095-07:00,991.815185546875,10.838573,10838.573 +36074,2025-03-11T13:28:11.330964-07:00,991.8284301757812,10.830869,10830.869 +36075,2025-03-11T13:28:22.164256-07:00,991.8284301757812,10.833292,10833.292 +36076,2025-03-11T13:28:33.002141-07:00,991.8350219726562,10.837885,10837.885 +36077,2025-03-11T13:28:43.837967-07:00,991.8228149414062,10.835826,10835.826 +36078,2025-03-11T13:28:54.675316-07:00,991.7821655273438,10.837349,10837.349 +36079,2025-03-11T13:29:05.513941-07:00,991.7843627929688,10.838625,10838.625 +36080,2025-03-11T13:29:16.348967-07:00,991.8108520507812,10.835026,10835.026 +36081,2025-03-11T13:29:27.182335-07:00,991.7765502929688,10.833368,10833.368 +36082,2025-03-11T13:29:38.025684-07:00,991.7698364257812,10.843349,10843.349 +36083,2025-03-11T13:29:48.850245-07:00,991.743408203125,10.824561,10824.561 +36084,2025-03-11T13:29:59.694802-07:00,991.7765502929688,10.844557,10844.557 +36085,2025-03-11T13:30:10.518962-07:00,991.7645263671875,10.82416,10824.16 +36086,2025-03-11T13:30:21.361956-07:00,991.7579956054688,10.842994,10842.994 +36087,2025-03-11T13:30:32.202703-07:00,991.7567138671875,10.840747,10840.747 +36088,2025-03-11T13:30:43.035968-07:00,991.7765502929688,10.833265,10833.265 +36089,2025-03-11T13:30:53.870524-07:00,991.7117309570312,10.834556,10834.556 +36090,2025-03-11T13:31:04.711845-07:00,991.7390747070312,10.841321,10841.321 +36091,2025-03-11T13:31:15.547970-07:00,991.7337646484375,10.836125,10836.125 +36092,2025-03-11T13:31:26.383285-07:00,991.7404174804688,10.835315,10835.315 +36093,2025-03-11T13:31:37.226154-07:00,991.7404174804688,10.842869,10842.869 +36094,2025-03-11T13:31:48.058967-07:00,991.70068359375,10.832813,10832.813 +36095,2025-03-11T13:31:58.900968-07:00,991.70068359375,10.842001,10842.001 +36096,2025-03-11T13:32:09.738242-07:00,991.74267578125,10.837274,10837.274 +36097,2025-03-11T13:32:20.584990-07:00,991.7095947265625,10.846748,10846.748 +36098,2025-03-11T13:32:31.422099-07:00,991.6685791015625,10.837109,10837.109 +36099,2025-03-11T13:32:42.263010-07:00,991.6897583007812,10.840911,10840.911 +36100,2025-03-11T13:32:53.088954-07:00,991.7106323242188,10.825944,10825.944 +36101,2025-03-11T13:33:03.924329-07:00,991.695068359375,10.835375,10835.375 +36102,2025-03-11T13:33:14.768305-07:00,991.669921875,10.843976,10843.976 +36103,2025-03-11T13:33:25.600236-07:00,991.664306640625,10.831931,10831.931 +36104,2025-03-11T13:33:36.445968-07:00,991.6897583007812,10.845732,10845.732 +36105,2025-03-11T13:33:47.276407-07:00,991.6709594726562,10.830439,10830.439 +36106,2025-03-11T13:33:58.118628-07:00,991.6765747070312,10.842221,10842.221 +36107,2025-03-11T13:34:08.966042-07:00,991.6721801757812,10.847414,10847.414 +36108,2025-03-11T13:34:19.798542-07:00,991.65234375,10.8325,10832.5 +36109,2025-03-11T13:34:30.641289-07:00,991.651123046875,10.842747,10842.747 +36110,2025-03-11T13:34:41.484180-07:00,991.6665649414062,10.842891,10842.891 +36111,2025-03-11T13:34:52.321990-07:00,991.6721801757812,10.83781,10837.81 +36112,2025-03-11T13:35:03.161172-07:00,991.6444702148438,10.839182,10839.182 +36113,2025-03-11T13:35:14.004165-07:00,991.6810913085938,10.842993,10842.993 +36114,2025-03-11T13:35:24.844967-07:00,991.6677856445312,10.840802,10840.802 +36115,2025-03-11T13:35:35.683529-07:00,991.6665649414062,10.838562,10838.562 +36116,2025-03-11T13:35:46.527223-07:00,991.6599731445312,10.843694,10843.694 +36117,2025-03-11T13:35:57.361969-07:00,991.6532592773438,10.834746,10834.746 +36118,2025-03-11T13:36:08.204209-07:00,991.6677856445312,10.84224,10842.24 +36119,2025-03-11T13:36:19.044121-07:00,991.6754760742188,10.839912,10839.912 +36120,2025-03-11T13:36:29.881169-07:00,991.6810913085938,10.837048,10837.048 +36121,2025-03-11T13:36:40.730075-07:00,991.6763916015625,10.848906,10848.906 +36122,2025-03-11T13:36:51.563188-07:00,991.6744384765625,10.833113,10833.113 +36123,2025-03-11T13:37:02.410575-07:00,991.6612548828125,10.847387,10847.387 +36124,2025-03-11T13:37:13.253165-07:00,991.6281127929688,10.84259,10842.59 +36125,2025-03-11T13:37:24.091967-07:00,991.642333984375,10.838802,10838.802 +36126,2025-03-11T13:37:34.938941-07:00,991.6433715820312,10.846974,10846.974 +36127,2025-03-11T13:37:45.783203-07:00,991.629150390625,10.844262,10844.262 +36128,2025-03-11T13:37:56.615162-07:00,991.629150390625,10.831959,10831.959 +36129,2025-03-11T13:38:07.449136-07:00,991.63671875,10.833974,10833.974 +36130,2025-03-11T13:38:18.290299-07:00,991.6168823242188,10.841163,10841.163 +36131,2025-03-11T13:38:29.127967-07:00,991.5851440429688,10.837668,10837.668 +36132,2025-03-11T13:38:39.972073-07:00,991.598388671875,10.844106,10844.106 +36133,2025-03-11T13:38:50.803170-07:00,991.611572265625,10.831097,10831.097 +36134,2025-03-11T13:39:01.646247-07:00,991.60498046875,10.843077,10843.077 +36135,2025-03-11T13:39:12.477071-07:00,991.6102905273438,10.830824,10830.824 +36136,2025-03-11T13:39:23.324971-07:00,991.6182250976562,10.8479,10847.9 +36137,2025-03-11T13:39:34.158210-07:00,991.60595703125,10.833239,10833.239 +36138,2025-03-11T13:39:45.003957-07:00,991.5718994140625,10.845747,10845.747 +36139,2025-03-11T13:39:55.844945-07:00,991.56396484375,10.840988,10840.988 +36140,2025-03-11T13:40:06.687600-07:00,991.5772094726562,10.842655,10842.655 +36141,2025-03-11T13:40:17.524704-07:00,991.5718994140625,10.837104,10837.104 +36142,2025-03-11T13:40:28.363526-07:00,991.5926513671875,10.838822,10838.822 +36143,2025-03-11T13:40:39.202970-07:00,991.5904541015625,10.839444,10839.444 +36144,2025-03-11T13:40:50.048559-07:00,991.5784912109375,10.845589,10845.589 +36145,2025-03-11T13:41:00.900397-07:00,991.6248168945312,10.851838,10851.838 +36146,2025-03-11T13:41:11.744687-07:00,991.598388671875,10.84429,10844.29 +36147,2025-03-11T13:41:22.574964-07:00,991.6192016601562,10.830277,10830.277 +36148,2025-03-11T13:41:33.420967-07:00,991.5861206054688,10.846003,10846.003 +36149,2025-03-11T13:41:44.258632-07:00,991.5861206054688,10.837665,10837.665 +36150,2025-03-11T13:41:55.095105-07:00,991.552001953125,10.836473,10836.473 +36151,2025-03-11T13:42:05.943967-07:00,991.533203125,10.848862,10848.862 +36152,2025-03-11T13:42:27.625627-07:00,991.5242919921875,21.68166,21681.66 +36153,2025-03-11T13:42:38.470555-07:00,991.5543212890625,10.844928,10844.928 +36154,2025-03-11T13:42:49.310182-07:00,991.5145874023438,10.839627,10839.627 +36155,2025-03-11T13:43:00.160006-07:00,991.52001953125,10.849824,10849.824 +36156,2025-03-11T13:43:10.998962-07:00,991.52783203125,10.838956,10838.956 +36157,2025-03-11T13:43:21.847319-07:00,991.533203125,10.848357,10848.357 +36158,2025-03-11T13:43:32.687754-07:00,991.5398559570312,10.840435,10840.435 +36159,2025-03-11T13:43:43.527095-07:00,991.5433349609375,10.839341,10839.341 +36160,2025-03-11T13:43:54.362872-07:00,991.5145874023438,10.835777,10835.777 +36161,2025-03-11T13:44:05.200921-07:00,991.5234985351562,10.838049,10838.049 +36162,2025-03-11T13:44:16.038105-07:00,991.5354614257812,10.837184,10837.184 +36163,2025-03-11T13:44:26.875303-07:00,991.5565795898438,10.837198,10837.198 +36164,2025-03-11T13:44:37.720150-07:00,991.5565795898438,10.844847,10844.847 +36165,2025-03-11T13:44:48.558227-07:00,991.545654296875,10.838077,10838.077 +36166,2025-03-11T13:44:59.394418-07:00,991.4970092773438,10.836191,10836.191 +36167,2025-03-11T13:45:10.228008-07:00,991.5509643554688,10.83359,10833.59 +36168,2025-03-11T13:45:21.062017-07:00,991.5234985351562,10.834009,10834.009 +36169,2025-03-11T13:45:31.902238-07:00,991.4824829101562,10.840221,10840.221 +36170,2025-03-11T13:45:42.744004-07:00,991.515625,10.841766,10841.766 +36171,2025-03-11T13:45:53.580966-07:00,991.5178833007812,10.836962,10836.962 +36172,2025-03-11T13:46:04.418295-07:00,991.5310668945312,10.837329,10837.329 +36173,2025-03-11T13:46:15.256019-07:00,991.545654296875,10.837724,10837.724 +36174,2025-03-11T13:46:26.099945-07:00,991.5377197265625,10.843926,10843.926 +36175,2025-03-11T13:46:36.934229-07:00,991.499267578125,10.834284,10834.284 +36176,2025-03-11T13:46:47.781237-07:00,991.5257568359375,10.847008,10847.008 +36177,2025-03-11T13:46:58.622435-07:00,991.4662475585938,10.841198,10841.198 +36178,2025-03-11T13:47:09.466104-07:00,991.5081787109375,10.843669,10843.669 +36179,2025-03-11T13:47:20.297286-07:00,991.5081787109375,10.831182,10831.182 +36180,2025-03-11T13:47:31.137933-07:00,991.5046997070312,10.840647,10840.647 +36181,2025-03-11T13:47:41.980025-07:00,991.5245361328125,10.842092,10842.092 +36182,2025-03-11T13:47:52.815102-07:00,991.5103149414062,10.835077,10835.077 +36183,2025-03-11T13:48:03.647117-07:00,991.5323486328125,10.832015,10832.015 +36184,2025-03-11T13:48:14.492966-07:00,991.4265747070312,10.845849,10845.849 +36185,2025-03-11T13:48:25.335541-07:00,991.4583740234375,10.842575,10842.575 +36186,2025-03-11T13:48:36.170341-07:00,991.4795532226562,10.8348,10834.8 +36187,2025-03-11T13:48:47.002968-07:00,991.51123046875,10.832627,10832.627 +36188,2025-03-11T13:48:57.846192-07:00,991.5191650390625,10.843224,10843.224 +36189,2025-03-11T13:49:08.683238-07:00,991.4771728515625,10.837046,10837.046 +36190,2025-03-11T13:49:19.528008-07:00,991.5125122070312,10.84477,10844.77 +36191,2025-03-11T13:49:30.359367-07:00,991.4782104492188,10.831359,10831.359 +36192,2025-03-11T13:49:40.550437-07:00,991.5059204101562,10.19107,10191.07 +36193,2025-03-11T13:49:41.201662-07:00,991.4782104492188,0.651225,651.225 +36194,2025-03-11T13:49:52.038198-07:00,991.4639892578125,10.836536,10836.536 +36195,2025-03-11T13:50:02.874965-07:00,991.4451293945312,10.836767,10836.767 +36196,2025-03-11T13:50:13.719142-07:00,991.42431640625,10.844177,10844.177 +36197,2025-03-11T13:50:24.552052-07:00,991.4529418945312,10.83291,10832.91 +36198,2025-03-11T13:50:35.403678-07:00,991.4132690429688,10.851626,10851.626 +36199,2025-03-11T13:50:46.236276-07:00,991.427490234375,10.832598,10832.598 +36200,2025-03-11T13:50:57.080268-07:00,991.4354858398438,10.843992,10843.992 +36201,2025-03-11T13:51:07.929501-07:00,991.414306640625,10.849233,10849.233 +36202,2025-03-11T13:51:18.759963-07:00,991.401123046875,10.830462,10830.462 +36203,2025-03-11T13:51:29.605956-07:00,991.38916015625,10.845993,10845.993 +36204,2025-03-11T13:51:40.435438-07:00,991.3494262695312,10.829482,10829.482 +36205,2025-03-11T13:51:51.277958-07:00,991.3306274414062,10.84252,10842.52 +36206,2025-03-11T13:52:02.118153-07:00,991.37158203125,10.840195,10840.195 +36207,2025-03-11T13:52:12.957362-07:00,991.3878173828125,10.839209,10839.209 +36208,2025-03-11T13:52:23.801537-07:00,991.396728515625,10.844175,10844.175 +36209,2025-03-11T13:52:34.635349-07:00,991.3560791015625,10.833812,10833.812 +36210,2025-03-11T13:52:45.473956-07:00,991.3438110351562,10.838607,10838.607 +36211,2025-03-11T13:52:56.320224-07:00,991.3781127929688,10.846268,10846.268 +36212,2025-03-11T13:53:07.151247-07:00,991.3703002929688,10.831023,10831.023 +36213,2025-03-11T13:53:17.998173-07:00,991.379150390625,10.846926,10846.926 +36214,2025-03-11T13:53:28.837576-07:00,991.3451538085938,10.839403,10839.403 +36215,2025-03-11T13:53:39.668960-07:00,991.3947143554688,10.831384,10831.384 +36216,2025-03-11T13:53:50.510946-07:00,991.3959350585938,10.841986,10841.986 +36217,2025-03-11T13:54:01.354226-07:00,991.3870239257812,10.84328,10843.28 +36218,2025-03-11T13:54:12.198635-07:00,991.3682250976562,10.844409,10844.409 +36219,2025-03-11T13:54:23.030966-07:00,991.3947143554688,10.832331,10832.331 +36220,2025-03-11T13:54:33.871958-07:00,991.3903198242188,10.840992,10840.992 +36221,2025-03-11T13:54:44.716346-07:00,991.3760986328125,10.844388,10844.388 +36222,2025-03-11T13:54:55.549270-07:00,991.398193359375,10.832924,10832.924 +36223,2025-03-11T13:55:06.397962-07:00,991.3704833984375,10.848692,10848.692 +36224,2025-03-11T13:55:17.229787-07:00,991.4190673828125,10.831825,10831.825 +36225,2025-03-11T13:55:28.073110-07:00,991.385009765625,10.843323,10843.323 +36226,2025-03-11T13:55:38.910124-07:00,991.411376953125,10.837014,10837.014 +36227,2025-03-11T13:55:49.747390-07:00,991.37939453125,10.837266,10837.266 +36228,2025-03-11T13:56:00.596319-07:00,991.37939453125,10.848929,10848.929 +36229,2025-03-11T13:56:11.421967-07:00,991.3660888671875,10.825648,10825.648 +36230,2025-03-11T13:56:22.269965-07:00,991.3736572265625,10.847998,10847.998 +36231,2025-03-11T13:56:33.101265-07:00,991.352783203125,10.8313,10831.3 +36232,2025-03-11T13:56:43.932968-07:00,991.3329467773438,10.831703,10831.703 +36233,2025-03-11T13:56:54.761299-07:00,991.3595581054688,10.828331,10828.331 +36234,2025-03-11T13:57:05.603941-07:00,991.3736572265625,10.842642,10842.642 +36235,2025-03-11T13:57:16.439860-07:00,991.3660888671875,10.835919,10835.919 +36236,2025-03-11T13:57:27.277449-07:00,991.352783203125,10.837589,10837.589 +36237,2025-03-11T13:57:38.111357-07:00,991.3518676757812,10.833908,10833.908 +36238,2025-03-11T13:57:48.952967-07:00,991.2990112304688,10.84161,10841.61 +36239,2025-03-11T13:57:59.785506-07:00,991.357177734375,10.832539,10832.539 +36240,2025-03-11T13:58:10.627953-07:00,991.3329467773438,10.842447,10842.447 +36241,2025-03-11T13:58:21.464965-07:00,991.3175048828125,10.837012,10837.012 +36242,2025-03-11T13:58:32.295301-07:00,991.325439453125,10.830336,10830.336 +36243,2025-03-11T13:58:43.137320-07:00,991.3651733398438,10.842019,10842.019 +36244,2025-03-11T13:58:53.973956-07:00,991.33203125,10.836636,10836.636 +36245,2025-03-11T13:59:04.812380-07:00,991.3373413085938,10.838424,10838.424 +36246,2025-03-11T13:59:15.646591-07:00,991.3396606445312,10.834211,10834.211 +36247,2025-03-11T13:59:26.488489-07:00,991.31884765625,10.841898,10841.898 +36248,2025-03-11T13:59:37.321317-07:00,991.3121948242188,10.832828,10832.828 +36249,2025-03-11T13:59:48.163162-07:00,991.3121948242188,10.841845,10841.845 +36250,2025-03-11T13:59:59.017180-07:00,991.31884765625,10.854018,10854.018 +36251,2025-03-11T14:00:09.851311-07:00,991.31982421875,10.834131,10834.131 +36252,2025-03-11T14:00:20.693630-07:00,991.325439453125,10.842319,10842.319 +36253,2025-03-11T14:00:31.536437-07:00,991.3121948242188,10.842807,10842.807 +36254,2025-03-11T14:00:42.368204-07:00,991.2801513671875,10.831767,10831.767 +36255,2025-03-11T14:00:53.217060-07:00,991.2592163085938,10.848856,10848.856 +36256,2025-03-11T14:01:04.055270-07:00,991.271240234375,10.83821,10838.21 +36257,2025-03-11T14:01:14.885484-07:00,991.2659301757812,10.830214,10830.214 +36258,2025-03-11T14:01:25.723972-07:00,991.279052734375,10.838488,10838.488 +36259,2025-03-11T14:01:36.567931-07:00,991.279052734375,10.843959,10843.959 +36260,2025-03-11T14:01:47.398204-07:00,991.2592163085938,10.830273,10830.273 +36261,2025-03-11T14:01:58.243005-07:00,991.2514038085938,10.844801,10844.801 +36262,2025-03-11T14:02:09.086185-07:00,991.2801513671875,10.84318,10843.18 +36263,2025-03-11T14:02:19.922700-07:00,991.279052734375,10.836515,10836.515 +36264,2025-03-11T14:02:30.771229-07:00,991.267822265625,10.848529,10848.529 +36265,2025-03-11T14:02:41.607968-07:00,991.26025390625,10.836739,10836.739 +36266,2025-03-11T14:02:52.455625-07:00,991.2536010742188,10.847657,10847.657 +36267,2025-03-11T14:03:03.296720-07:00,991.2271728515625,10.841095,10841.095 +36268,2025-03-11T14:03:14.132013-07:00,991.24609375,10.835293,10835.293 +36269,2025-03-11T14:03:24.980204-07:00,991.252685546875,10.848191,10848.191 +36270,2025-03-11T14:03:35.816266-07:00,991.2470092773438,10.836062,10836.062 +36271,2025-03-11T14:03:46.657374-07:00,991.2470092773438,10.841108,10841.108 +36272,2025-03-11T14:03:57.498973-07:00,991.2536010742188,10.841599,10841.599 +36273,2025-03-11T14:04:08.337328-07:00,991.2625122070312,10.838355,10838.355 +36274,2025-03-11T14:04:19.180355-07:00,991.266845703125,10.843027,10843.027 +36275,2025-03-11T14:04:30.026905-07:00,991.2215576171875,10.84655,10846.55 +36276,2025-03-11T14:04:40.858964-07:00,991.2029418945312,10.832059,10832.059 +36277,2025-03-11T14:04:51.701225-07:00,991.2625122070312,10.842261,10842.261 +36278,2025-03-11T14:05:02.537015-07:00,991.236083984375,10.83579,10835.79 +36279,2025-03-11T14:05:13.378045-07:00,991.2515869140625,10.84103,10841.03 +36280,2025-03-11T14:05:24.221941-07:00,991.2594604492188,10.843896,10843.896 +36281,2025-03-11T14:05:35.061425-07:00,991.2806396484375,10.839484,10839.484 +36282,2025-03-11T14:05:45.908026-07:00,991.2462768554688,10.846601,10846.601 +36283,2025-03-11T14:05:56.746009-07:00,991.27392578125,10.837983,10837.983 +36284,2025-03-11T14:06:07.589969-07:00,991.26611328125,10.84396,10843.96 +36285,2025-03-11T14:06:18.436970-07:00,991.26611328125,10.847001,10847.001 +36286,2025-03-11T14:06:29.279297-07:00,991.27392578125,10.842327,10842.327 +36287,2025-03-11T14:06:40.119214-07:00,991.2806396484375,10.839917,10839.917 +36288,2025-03-11T14:06:50.960968-07:00,991.267333984375,10.841754,10841.754 +36289,2025-03-11T14:07:01.800537-07:00,991.2396240234375,10.839569,10839.569 +36290,2025-03-11T14:07:12.670079-07:00,991.2550659179688,10.869542,10869.542 +36291,2025-03-11T14:07:23.507652-07:00,991.267333984375,10.837573,10837.573 +36292,2025-03-11T14:07:34.349847-07:00,991.2540893554688,10.842195,10842.195 +36293,2025-03-11T14:07:45.187959-07:00,991.2329711914062,10.838112,10838.112 +36294,2025-03-11T14:07:56.023699-07:00,991.2285766601562,10.83574,10835.74 +36295,2025-03-11T14:08:06.863657-07:00,991.2352294921875,10.839958,10839.958 +36296,2025-03-11T14:08:17.702116-07:00,991.2352294921875,10.838459,10838.459 +36297,2025-03-11T14:08:28.536657-07:00,991.2352294921875,10.834541,10834.541 +36298,2025-03-11T14:08:39.379365-07:00,991.2276611328125,10.842708,10842.708 +36299,2025-03-11T14:08:50.213942-07:00,991.2418823242188,10.834577,10834.577 +36300,2025-03-11T14:09:01.052419-07:00,991.2408447265625,10.838477,10838.477 +36301,2025-03-11T14:09:11.899171-07:00,991.2022094726562,10.846752,10846.752 +36302,2025-03-11T14:09:22.742695-07:00,991.262939453125,10.843524,10843.524 +36303,2025-03-11T14:09:33.584963-07:00,991.2276611328125,10.842268,10842.268 +36304,2025-03-11T14:09:44.415651-07:00,991.2153930664062,10.830688,10830.688 +36305,2025-03-11T14:09:55.258649-07:00,991.21435546875,10.842998,10842.998 +36306,2025-03-11T14:10:06.092956-07:00,991.199951171875,10.834307,10834.307 +36307,2025-03-11T14:10:16.932992-07:00,991.2276611328125,10.840036,10840.036 +36308,2025-03-11T14:10:27.772657-07:00,991.2285766601562,10.839665,10839.665 +36309,2025-03-11T14:10:38.615665-07:00,991.18798828125,10.843008,10843.008 +36310,2025-03-11T14:10:49.445976-07:00,991.208740234375,10.830311,10830.311 +36311,2025-03-11T14:11:00.289656-07:00,991.208740234375,10.84368,10843.68 +36312,2025-03-11T14:11:11.127686-07:00,991.236572265625,10.83803,10838.03 +36313,2025-03-11T14:11:21.966036-07:00,991.2022094726562,10.83835,10838.35 +36314,2025-03-11T14:11:32.802654-07:00,991.182373046875,10.836618,10836.618 +36315,2025-03-11T14:11:43.645345-07:00,991.177001953125,10.842691,10842.691 +36316,2025-03-11T14:11:54.478990-07:00,991.18359375,10.833645,10833.645 +36317,2025-03-11T14:12:05.319636-07:00,991.204345703125,10.840646,10840.646 +36318,2025-03-11T14:12:16.151967-07:00,991.204345703125,10.832331,10832.331 +36319,2025-03-11T14:12:26.993998-07:00,991.1637573242188,10.842031,10842.031 +36320,2025-03-11T14:12:37.823670-07:00,991.1581420898438,10.829672,10829.672 +36321,2025-03-11T14:12:48.658247-07:00,991.15283203125,10.834577,10834.577 +36322,2025-03-11T14:12:59.494641-07:00,991.1603393554688,10.836394,10836.394 +36323,2025-03-11T14:13:10.327899-07:00,991.1448364257812,10.833258,10833.258 +36324,2025-03-11T14:13:21.167243-07:00,991.1383056640625,10.839344,10839.344 +36325,2025-03-11T14:13:32.008688-07:00,991.1383056640625,10.841445,10841.445 +36326,2025-03-11T14:13:42.839798-07:00,991.1461791992188,10.83111,10831.11 +36327,2025-03-11T14:13:53.688961-07:00,991.1196899414062,10.849163,10849.163 +36328,2025-03-11T14:14:04.518785-07:00,991.1196899414062,10.829824,10829.824 +36329,2025-03-11T14:14:15.364913-07:00,991.1051635742188,10.846128,10846.128 +36330,2025-03-11T14:14:26.201638-07:00,991.1351318359375,10.836725,10836.725 +36331,2025-03-11T14:14:37.043067-07:00,991.1107788085938,10.841429,10841.429 +36332,2025-03-11T14:14:47.887348-07:00,991.1140747070312,10.844281,10844.281 +36333,2025-03-11T14:14:58.730648-07:00,991.1152954101562,10.8433,10843.3 +36334,2025-03-11T14:15:09.561947-07:00,991.09423828125,10.831299,10831.299 +36335,2025-03-11T14:15:20.406936-07:00,991.1140747070312,10.844989,10844.989 +36336,2025-03-11T14:15:31.246704-07:00,991.1074829101562,10.839768,10839.768 +36337,2025-03-11T14:15:42.085659-07:00,991.1021118164062,10.838955,10838.955 +36338,2025-03-11T14:15:52.924947-07:00,991.1109619140625,10.839288,10839.288 +36339,2025-03-11T14:16:03.771516-07:00,991.1021118164062,10.846569,10846.569 +36340,2025-03-11T14:16:14.604976-07:00,991.0634155273438,10.83346,10833.46 +36341,2025-03-11T14:16:25.447669-07:00,991.0921020507812,10.842693,10842.693 +36342,2025-03-11T14:16:36.297305-07:00,991.077880859375,10.849636,10849.636 +36343,2025-03-11T14:16:47.143089-07:00,991.064697265625,10.845784,10845.784 +36344,2025-03-11T14:16:57.979668-07:00,991.0987548828125,10.836579,10836.579 +36345,2025-03-11T14:17:08.825655-07:00,991.0801391601562,10.845987,10845.987 +36346,2025-03-11T14:17:19.662660-07:00,991.0736083984375,10.837005,10837.005 +36347,2025-03-11T14:17:30.498957-07:00,991.0745239257812,10.836297,10836.297 +36348,2025-03-11T14:17:41.344662-07:00,991.0537719726562,10.845705,10845.705 +36349,2025-03-11T14:17:52.186655-07:00,991.0413818359375,10.841993,10841.993 +36350,2025-03-11T14:18:03.024035-07:00,991.0546875,10.83738,10837.38 +36351,2025-03-11T14:18:13.871290-07:00,991.042724609375,10.847255,10847.255 +36352,2025-03-11T14:18:24.709872-07:00,991.0625610351562,10.838582,10838.582 +36353,2025-03-11T14:18:35.544721-07:00,991.0437622070312,10.834849,10834.849 +36354,2025-03-11T14:18:46.384661-07:00,991.042724609375,10.83994,10839.94 +36355,2025-03-11T14:18:57.233990-07:00,991.0711059570312,10.849329,10849.329 +36356,2025-03-11T14:19:08.070851-07:00,991.0097045898438,10.836861,10836.861 +36357,2025-03-11T14:19:18.911469-07:00,991.0360717773438,10.840618,10840.618 +36358,2025-03-11T14:19:29.753926-07:00,991.0393676757812,10.842457,10842.457 +36359,2025-03-11T14:19:40.592660-07:00,991.0050048828125,10.838734,10838.734 +36360,2025-03-11T14:19:51.431712-07:00,991.0128173828125,10.839052,10839.052 +36361,2025-03-11T14:20:02.268946-07:00,990.99169921875,10.837234,10837.234 +36362,2025-03-11T14:20:13.113096-07:00,991.03369140625,10.84415,10844.15 +36363,2025-03-11T14:20:23.944658-07:00,991.021728515625,10.831562,10831.562 +36364,2025-03-11T14:20:34.785156-07:00,991.009521484375,10.840498,10840.498 +36365,2025-03-11T14:20:45.629420-07:00,991.0306396484375,10.844264,10844.264 +36366,2025-03-11T14:20:56.472637-07:00,991.0108032226562,10.843217,10843.217 +36367,2025-03-11T14:21:07.312905-07:00,990.9873657226562,10.840268,10840.268 +36368,2025-03-11T14:21:18.154984-07:00,990.9962768554688,10.842079,10842.079 +36369,2025-03-11T14:21:28.990805-07:00,990.96875,10.835821,10835.821 +36370,2025-03-11T14:21:39.839207-07:00,990.9896240234375,10.848402,10848.402 +36371,2025-03-11T14:21:50.673807-07:00,991.0108032226562,10.8346,10834.6 +36372,2025-03-11T14:22:01.509126-07:00,990.9720458984375,10.835319,10835.319 +36373,2025-03-11T14:22:12.338888-07:00,990.9710693359375,10.829762,10829.762 +36374,2025-03-11T14:22:23.178664-07:00,990.9600830078125,10.839776,10839.776 +36375,2025-03-11T14:22:34.015698-07:00,990.9445190429688,10.837034,10837.034 +36376,2025-03-11T14:22:44.847363-07:00,990.9654541015625,10.831665,10831.665 +36377,2025-03-11T14:22:55.690228-07:00,990.9720458984375,10.842865,10842.865 +36378,2025-03-11T14:23:06.521795-07:00,990.9389038085938,10.831567,10831.567 +36379,2025-03-11T14:23:17.351660-07:00,990.9644775390625,10.829865,10829.865 +36380,2025-03-11T14:23:28.191971-07:00,990.9367065429688,10.840311,10840.311 +36381,2025-03-11T14:23:39.040900-07:00,990.9367065429688,10.848929,10848.929 +36382,2025-03-11T14:23:49.873748-07:00,990.962158203125,10.832848,10832.848 +36383,2025-03-11T14:24:00.715004-07:00,990.9277954101562,10.841256,10841.256 +36384,2025-03-11T14:24:11.544772-07:00,990.9644775390625,10.829768,10829.768 +36385,2025-03-11T14:24:22.387655-07:00,990.9432983398438,10.842883,10842.883 +36386,2025-03-11T14:24:33.221989-07:00,990.9168701171875,10.834334,10834.334 +36387,2025-03-11T14:24:44.064835-07:00,990.9389038085938,10.842846,10842.846 +36388,2025-03-11T14:24:54.894891-07:00,990.9115600585938,10.830056,10830.056 +36389,2025-03-11T14:25:05.739002-07:00,990.931396484375,10.844111,10844.111 +36390,2025-03-11T14:25:16.582172-07:00,990.9300537109375,10.84317,10843.17 +36391,2025-03-11T14:25:27.423788-07:00,990.9124755859375,10.841616,10841.616 +36392,2025-03-11T14:25:38.262660-07:00,990.9181518554688,10.838872,10838.872 +36393,2025-03-11T14:25:49.100998-07:00,990.8992309570312,10.838338,10838.338 +36394,2025-03-11T14:25:59.944977-07:00,990.9468994140625,10.843979,10843.979 +36395,2025-03-11T14:26:10.777840-07:00,990.9190673828125,10.832863,10832.863 +36396,2025-03-11T14:26:21.613631-07:00,990.9345092773438,10.835791,10835.791 +36397,2025-03-11T14:26:32.455309-07:00,990.880615234375,10.841678,10841.678 +36398,2025-03-11T14:26:43.292279-07:00,990.9213256835938,10.83697,10836.97 +36399,2025-03-11T14:26:54.140123-07:00,990.916015625,10.847844,10847.844 +36400,2025-03-11T14:27:04.976945-07:00,990.8883056640625,10.836822,10836.822 +36401,2025-03-11T14:27:15.819685-07:00,990.8883056640625,10.84274,10842.74 +36402,2025-03-11T14:27:26.654644-07:00,990.9081420898438,10.834959,10834.959 +36403,2025-03-11T14:27:37.503888-07:00,990.8873291015625,10.849244,10849.244 +36404,2025-03-11T14:27:48.340371-07:00,990.9093627929688,10.836483,10836.483 +36405,2025-03-11T14:27:59.183659-07:00,990.854248046875,10.843288,10843.288 +36406,2025-03-11T14:28:10.016896-07:00,990.8475952148438,10.833237,10833.237 +36407,2025-03-11T14:28:20.855980-07:00,990.8829956054688,10.839084,10839.084 +36408,2025-03-11T14:28:31.689765-07:00,990.8895263671875,10.833785,10833.785 +36409,2025-03-11T14:28:42.532748-07:00,990.8829956054688,10.842983,10842.983 +36410,2025-03-11T14:28:53.376996-07:00,990.8763427734375,10.844248,10844.248 +36411,2025-03-11T14:29:04.213634-07:00,990.8993530273438,10.836638,10836.638 +36412,2025-03-11T14:29:15.060653-07:00,990.8640747070312,10.847019,10847.019 +36413,2025-03-11T14:29:25.903659-07:00,990.8851318359375,10.843006,10843.006 +36414,2025-03-11T14:29:36.747657-07:00,990.8596801757812,10.843998,10843.998 +36415,2025-03-11T14:29:47.578043-07:00,990.89404296875,10.830386,10830.386 +36416,2025-03-11T14:29:58.416693-07:00,990.8742065429688,10.83865,10838.65 +36417,2025-03-11T14:30:09.251137-07:00,990.888427734375,10.834444,10834.444 +36418,2025-03-11T14:30:20.099928-07:00,990.846435546875,10.848791,10848.791 +36419,2025-03-11T14:30:30.939898-07:00,990.8596801757812,10.83997,10839.97 +36420,2025-03-11T14:30:41.783657-07:00,990.8662719726562,10.843759,10843.759 +36421,2025-03-11T14:30:52.623699-07:00,990.887451171875,10.840042,10840.042 +36422,2025-03-11T14:31:03.467000-07:00,990.85302734375,10.843301,10843.301 +36423,2025-03-11T14:31:14.313726-07:00,990.8795166015625,10.846726,10846.726 +36424,2025-03-11T14:31:25.158638-07:00,990.85302734375,10.844912,10844.912 +36425,2025-03-11T14:31:36.000862-07:00,990.8618774414062,10.842224,10842.224 +36426,2025-03-11T14:31:46.837499-07:00,990.8477172851562,10.836637,10836.637 +36427,2025-03-11T14:31:57.674651-07:00,990.8477172851562,10.837152,10837.152 +36428,2025-03-11T14:32:08.511752-07:00,990.842041015625,10.837101,10837.101 +36429,2025-03-11T14:32:19.343664-07:00,990.8618774414062,10.831912,10831.912 +36430,2025-03-11T14:32:30.182743-07:00,990.888427734375,10.839079,10839.079 +36431,2025-03-11T14:32:41.025672-07:00,990.8345336914062,10.842929,10842.929 +36432,2025-03-11T14:32:51.873035-07:00,990.869873046875,10.847363,10847.363 +36433,2025-03-11T14:33:02.712277-07:00,990.8552856445312,10.839242,10839.242 +36434,2025-03-11T14:33:13.542550-07:00,990.8751831054688,10.830273,10830.273 +36435,2025-03-11T14:33:24.383903-07:00,990.8632202148438,10.841353,10841.353 +36436,2025-03-11T14:33:35.227976-07:00,990.8499755859375,10.844073,10844.073 +36437,2025-03-11T14:33:46.070813-07:00,990.8632202148438,10.842837,10842.837 +36438,2025-03-11T14:33:56.910672-07:00,990.83544921875,10.839859,10839.859 +36439,2025-03-11T14:34:07.745998-07:00,990.8585205078125,10.835326,10835.326 +36440,2025-03-11T14:34:18.596885-07:00,990.8663940429688,10.850887,10850.887 +36441,2025-03-11T14:34:29.439957-07:00,990.8386840820312,10.843072,10843.072 +36442,2025-03-11T14:34:40.270646-07:00,990.8453369140625,10.830689,10830.689 +36443,2025-03-11T14:34:51.114986-07:00,990.8474731445312,10.84434,10844.34 +36444,2025-03-11T14:35:01.957410-07:00,990.8201293945312,10.842424,10842.424 +36445,2025-03-11T14:35:12.794844-07:00,990.8342895507812,10.837434,10837.434 +36446,2025-03-11T14:35:23.641653-07:00,990.8342895507812,10.846809,10846.809 +36447,2025-03-11T14:35:34.480468-07:00,990.80908203125,10.838815,10838.815 +36448,2025-03-11T14:35:45.322529-07:00,990.8409423828125,10.842061,10842.061 +36449,2025-03-11T14:35:56.164651-07:00,990.8211059570312,10.842122,10842.122 +36450,2025-03-11T14:36:06.996655-07:00,990.8211059570312,10.832004,10832.004 +36451,2025-03-11T14:36:17.840007-07:00,990.8409423828125,10.843352,10843.352 +36452,2025-03-11T14:36:28.681658-07:00,990.85546875,10.841651,10841.651 +36453,2025-03-11T14:36:39.527818-07:00,990.8421630859375,10.84616,10846.16 +36454,2025-03-11T14:36:50.370670-07:00,990.8356323242188,10.842852,10842.852 +36455,2025-03-11T14:37:01.209166-07:00,990.8365478515625,10.838496,10838.496 +36456,2025-03-11T14:37:12.052428-07:00,990.8233032226562,10.843262,10843.262 +36457,2025-03-11T14:37:22.900627-07:00,990.8421630859375,10.848199,10848.199 +36458,2025-03-11T14:37:33.742655-07:00,990.8114013671875,10.842028,10842.028 +36459,2025-03-11T14:37:44.580702-07:00,990.8298950195312,10.838047,10838.047 +36460,2025-03-11T14:37:55.416273-07:00,990.8245849609375,10.835571,10835.571 +36461,2025-03-11T14:38:06.260783-07:00,990.803466796875,10.84451,10844.51 +36462,2025-03-11T14:38:17.098857-07:00,990.8114013671875,10.838074,10838.074 +36463,2025-03-11T14:38:27.947996-07:00,990.771728515625,10.849139,10849.139 +36464,2025-03-11T14:38:38.777661-07:00,990.7792358398438,10.829665,10829.665 +36465,2025-03-11T14:38:49.619598-07:00,990.8047485351562,10.841937,10841.937 +36466,2025-03-11T14:39:00.464659-07:00,990.7792358398438,10.845061,10845.061 +36467,2025-03-11T14:39:11.309303-07:00,990.7593994140625,10.844644,10844.644 +36468,2025-03-11T14:39:22.158000-07:00,990.7517700195312,10.848697,10848.697 +36469,2025-03-11T14:39:32.995622-07:00,990.7505493164062,10.837622,10837.622 +36470,2025-03-11T14:39:43.839903-07:00,990.7782592773438,10.844281,10844.281 +36471,2025-03-11T14:39:54.687662-07:00,990.7792358398438,10.847759,10847.759 +36472,2025-03-11T14:40:05.530279-07:00,990.7572021484375,10.842617,10842.617 +36473,2025-03-11T14:40:16.362837-07:00,990.771728515625,10.832558,10832.558 +36474,2025-03-11T14:40:27.207906-07:00,990.73193359375,10.845069,10845.069 +36475,2025-03-11T14:40:38.047800-07:00,990.7572021484375,10.839894,10839.894 +36476,2025-03-11T14:40:48.892990-07:00,990.7517700195312,10.84519,10845.19 +36477,2025-03-11T14:40:59.733658-07:00,990.743896484375,10.840668,10840.668 +36478,2025-03-11T14:41:10.573745-07:00,990.7637329101562,10.840087,10840.087 +36479,2025-03-11T14:41:21.409747-07:00,990.7505493164062,10.836002,10836.002 +36480,2025-03-11T14:41:32.244893-07:00,990.726318359375,10.835146,10835.146 +36481,2025-03-11T14:41:43.083928-07:00,990.771728515625,10.839035,10839.035 +36482,2025-03-11T14:41:53.928446-07:00,990.7329711914062,10.844518,10844.518 +36483,2025-03-11T14:42:04.770759-07:00,990.7054443359375,10.842313,10842.313 +36484,2025-03-11T14:42:15.615659-07:00,990.7659912109375,10.8449,10844.9 +36485,2025-03-11T14:42:26.458967-07:00,990.739501953125,10.843308,10843.308 +36486,2025-03-11T14:42:37.303717-07:00,990.7528076171875,10.84475,10844.75 +36487,2025-03-11T14:42:48.152936-07:00,990.739501953125,10.849219,10849.219 +36488,2025-03-11T14:42:59.002088-07:00,990.726318359375,10.849152,10849.152 +36489,2025-03-11T14:43:09.846743-07:00,990.7351684570312,10.844655,10844.655 +36490,2025-03-11T14:43:20.687660-07:00,990.7276000976562,10.840917,10840.917 +36491,2025-03-11T14:43:31.530998-07:00,990.7276000976562,10.843338,10843.338 +36492,2025-03-11T14:43:42.379660-07:00,990.7606201171875,10.848662,10848.662 +36493,2025-03-11T14:43:53.230051-07:00,990.7276000976562,10.850391,10850.391 +36494,2025-03-11T14:44:04.068976-07:00,990.7407836914062,10.838925,10838.925 +36495,2025-03-11T14:44:14.905875-07:00,990.7196655273438,10.836899,10836.899 +36496,2025-03-11T14:44:25.753656-07:00,990.739501953125,10.847781,10847.781 +36497,2025-03-11T14:44:36.588061-07:00,990.7540893554688,10.834405,10834.405 +36498,2025-03-11T14:44:47.443054-07:00,990.781494140625,10.854993,10854.993 +36499,2025-03-11T14:44:58.283798-07:00,990.7804565429688,10.840744,10840.744 +36500,2025-03-11T14:45:09.125920-07:00,990.7616577148438,10.842122,10842.122 +36501,2025-03-11T14:45:19.969633-07:00,990.7474365234375,10.843713,10843.713 +36502,2025-03-11T14:45:30.806103-07:00,990.7881469726562,10.83647,10836.47 +36503,2025-03-11T14:45:41.648996-07:00,990.7606201171875,10.842893,10842.893 +36504,2025-03-11T14:45:52.503544-07:00,990.7748413085938,10.854548,10854.548 +36505,2025-03-11T14:46:03.345651-07:00,990.720947265625,10.842107,10842.107 +36506,2025-03-11T14:46:14.189853-07:00,990.7407836914062,10.844202,10844.202 +36507,2025-03-11T14:46:25.032200-07:00,990.720947265625,10.842347,10842.347 +36508,2025-03-11T14:46:35.873364-07:00,990.7407836914062,10.841164,10841.164 +36509,2025-03-11T14:46:46.712658-07:00,990.7276000976562,10.839294,10839.294 +36510,2025-03-11T14:46:57.553661-07:00,990.7285766601562,10.841003,10841.003 +36511,2025-03-11T14:47:08.401405-07:00,990.7550048828125,10.847744,10847.744 +36512,2025-03-11T14:47:19.238704-07:00,990.7496948242188,10.837299,10837.299 +36513,2025-03-11T14:47:30.080656-07:00,990.7562255859375,10.841952,10841.952 +36514,2025-03-11T14:47:40.919054-07:00,990.721923828125,10.838398,10838.398 +36515,2025-03-11T14:47:51.753423-07:00,990.7285766601562,10.834369,10834.369 +36516,2025-03-11T14:48:02.602897-07:00,990.7506103515625,10.849474,10849.474 +36517,2025-03-11T14:48:13.446811-07:00,990.7550048828125,10.843914,10843.914 +36518,2025-03-11T14:48:24.289709-07:00,990.763916015625,10.842898,10842.898 +36519,2025-03-11T14:48:35.128934-07:00,990.777099609375,10.839225,10839.225 +36520,2025-03-11T14:48:45.979945-07:00,990.7572631835938,10.851011,10851.011 +36521,2025-03-11T14:48:56.822810-07:00,990.7859497070312,10.842865,10842.865 +36522,2025-03-11T14:49:07.666719-07:00,990.759521484375,10.843909,10843.909 +36523,2025-03-11T14:49:18.512878-07:00,990.7673950195312,10.846159,10846.159 +36524,2025-03-11T14:49:29.359463-07:00,990.7474975585938,10.846585,10846.585 +36525,2025-03-11T14:49:40.204268-07:00,990.76171875,10.844805,10844.805 +36526,2025-03-11T14:49:51.039253-07:00,990.7762451171875,10.834985,10834.985 +36527,2025-03-11T14:50:01.882125-07:00,990.797119140625,10.842872,10842.872 +36528,2025-03-11T14:50:12.730661-07:00,990.7564086914062,10.848536,10848.536 +36529,2025-03-11T14:50:23.569267-07:00,990.744140625,10.838606,10838.606 +36530,2025-03-11T14:50:34.412961-07:00,990.7672119140625,10.843694,10843.694 +36531,2025-03-11T14:50:45.255755-07:00,990.7586669921875,10.842794,10842.794 +36532,2025-03-11T14:50:56.096854-07:00,990.7454833984375,10.841099,10841.099 +36533,2025-03-11T14:51:06.948649-07:00,990.7044677734375,10.851795,10851.795 +36534,2025-03-11T14:51:17.786992-07:00,990.7176513671875,10.838343,10838.343 +36535,2025-03-11T14:51:28.621654-07:00,990.7044677734375,10.834662,10834.662 +36536,2025-03-11T14:51:39.465885-07:00,990.6902465820312,10.844231,10844.231 +36537,2025-03-11T14:51:50.311832-07:00,990.68359375,10.845947,10845.947 +36538,2025-03-11T14:52:01.153198-07:00,990.7520141601562,10.841366,10841.366 +36539,2025-03-11T14:52:11.991652-07:00,990.6968994140625,10.838454,10838.454 +36540,2025-03-11T14:52:22.833662-07:00,990.6912231445312,10.84201,10842.01 +36541,2025-03-11T14:52:33.682825-07:00,990.6978149414062,10.849163,10849.163 +36542,2025-03-11T14:52:44.525119-07:00,990.6845092773438,10.842294,10842.294 +36543,2025-03-11T14:52:55.373607-07:00,990.6912231445312,10.848488,10848.488 +36544,2025-03-11T14:53:06.222443-07:00,990.7111206054688,10.848836,10848.836 +36545,2025-03-11T14:53:17.065722-07:00,990.6934204101562,10.843279,10843.279 +36546,2025-03-11T14:53:27.899796-07:00,990.7044677734375,10.834074,10834.074 +36547,2025-03-11T14:53:38.749201-07:00,990.6912231445312,10.849405,10849.405 +36548,2025-03-11T14:53:49.587733-07:00,990.67041015625,10.838532,10838.532 +36549,2025-03-11T14:54:00.431817-07:00,990.7220458984375,10.844084,10844.084 +36550,2025-03-11T14:54:11.262911-07:00,990.7243041992188,10.831094,10831.094 +36551,2025-03-11T14:54:22.108963-07:00,990.7044677734375,10.846052,10846.052 +36552,2025-03-11T14:54:32.945900-07:00,990.7431030273438,10.836937,10836.937 +36553,2025-03-11T14:54:43.790654-07:00,990.732177734375,10.844754,10844.754 +36554,2025-03-11T14:54:54.638662-07:00,990.7044677734375,10.848008,10848.008 +36555,2025-03-11T14:55:05.478961-07:00,990.7374877929688,10.840299,10840.299 +36556,2025-03-11T14:55:16.326749-07:00,990.7639770507812,10.847788,10847.788 +36557,2025-03-11T14:55:27.176132-07:00,990.73095703125,10.849383,10849.383 +36558,2025-03-11T14:55:38.019659-07:00,990.73876953125,10.843527,10843.527 +36559,2025-03-11T14:55:48.862955-07:00,990.732177734375,10.843296,10843.296 +36560,2025-03-11T14:55:59.694652-07:00,990.7243041992188,10.831697,10831.697 +36561,2025-03-11T14:56:10.535879-07:00,990.7067260742188,10.841227,10841.227 +36562,2025-03-11T14:56:21.385658-07:00,990.7044677734375,10.849779,10849.779 +36563,2025-03-11T14:56:32.218661-07:00,990.6912231445312,10.833003,10833.003 +36564,2025-03-11T14:56:43.062272-07:00,990.7463989257812,10.843611,10843.611 +36565,2025-03-11T14:56:53.902653-07:00,990.7199096679688,10.840381,10840.381 +36566,2025-03-11T14:57:04.744956-07:00,990.715576171875,10.842303,10842.303 +36567,2025-03-11T14:57:15.590941-07:00,990.715576171875,10.845985,10845.985 +36568,2025-03-11T14:57:26.438961-07:00,990.6868896484375,10.84802,10848.02 +36569,2025-03-11T14:57:37.282334-07:00,990.7076416015625,10.843373,10843.373 +36570,2025-03-11T14:57:48.124875-07:00,990.6934204101562,10.842541,10842.541 +36571,2025-03-11T14:57:58.961792-07:00,990.6943969726562,10.836917,10836.917 +36572,2025-03-11T14:58:09.800051-07:00,990.6943969726562,10.838259,10838.259 +36573,2025-03-11T14:58:20.643751-07:00,990.6603393554688,10.8437,10843.7 +36574,2025-03-11T14:58:31.489043-07:00,990.68115234375,10.845292,10845.292 +36575,2025-03-11T14:58:42.340681-07:00,990.6537475585938,10.851638,10851.638 +36576,2025-03-11T14:58:53.182667-07:00,990.674560546875,10.841986,10841.986 +36577,2025-03-11T14:59:04.016086-07:00,990.7023315429688,10.833419,10833.419 +36578,2025-03-11T14:59:14.865634-07:00,990.6890869140625,10.849548,10849.548 +36579,2025-03-11T14:59:25.712787-07:00,990.7045288085938,10.847153,10847.153 +36580,2025-03-11T14:59:36.552658-07:00,990.6834106445312,10.839871,10839.871 +36581,2025-03-11T14:59:47.405778-07:00,990.670166015625,10.85312,10853.12 +36582,2025-03-11T14:59:58.248659-07:00,990.6913452148438,10.842881,10842.881 +36583,2025-03-11T15:00:09.102708-07:00,990.665771484375,10.854049,10854.049 +36584,2025-03-11T15:00:19.952000-07:00,990.7011108398438,10.849292,10849.292 +36585,2025-03-11T15:00:30.793706-07:00,990.702392578125,10.841706,10841.706 +36586,2025-03-11T15:00:41.642657-07:00,990.7100219726562,10.848951,10848.951 +36587,2025-03-11T15:00:52.490896-07:00,990.69140625,10.848239,10848.239 +36588,2025-03-11T15:01:03.339433-07:00,990.7321166992188,10.848537,10848.537 +36589,2025-03-11T15:01:14.197665-07:00,990.7003173828125,10.858232,10858.232 +36590,2025-03-11T15:01:25.037887-07:00,990.694580078125,10.840222,10840.222 +36591,2025-03-11T15:01:35.887040-07:00,990.7012329101562,10.849153,10849.153 +36592,2025-03-11T15:01:46.738142-07:00,990.6959228515625,10.851102,10851.102 +36593,2025-03-11T15:01:57.595689-07:00,990.73779296875,10.857547,10857.547 +36594,2025-03-11T15:02:08.449727-07:00,990.71142578125,10.854038,10854.038 +36595,2025-03-11T15:02:19.303964-07:00,990.733154296875,10.854237,10854.237 +36596,2025-03-11T15:02:30.142748-07:00,990.7000732421875,10.838784,10838.784 +36597,2025-03-11T15:02:41.004941-07:00,990.72216796875,10.862193,10862.193 +36598,2025-03-11T15:02:51.851657-07:00,990.7023315429688,10.846716,10846.716 +36599,2025-03-11T15:03:02.700653-07:00,990.711181640625,10.848996,10848.996 +36600,2025-03-11T15:03:13.547657-07:00,990.711181640625,10.847004,10847.004 +36601,2025-03-11T15:03:24.392777-07:00,990.7190551757812,10.84512,10845.12 +36602,2025-03-11T15:03:35.248885-07:00,990.7146606445312,10.856108,10856.108 +36603,2025-03-11T15:03:46.094656-07:00,990.71240234375,10.845771,10845.771 +36604,2025-03-11T15:03:56.936907-07:00,990.747802734375,10.842251,10842.251 +36605,2025-03-11T15:04:07.789205-07:00,990.7620239257812,10.852298,10852.298 +36606,2025-03-11T15:04:18.633914-07:00,990.7566528320312,10.844709,10844.709 +36607,2025-03-11T15:04:29.473973-07:00,990.7642211914062,10.840059,10840.059 +36608,2025-03-11T15:04:40.328513-07:00,990.7642211914062,10.85454,10854.54 +36609,2025-03-11T15:04:51.171961-07:00,990.8184204101562,10.843448,10843.448 +36610,2025-03-11T15:05:02.025976-07:00,990.7853393554688,10.854015,10854.015 +36611,2025-03-11T15:05:12.871886-07:00,990.7720947265625,10.84591,10845.91 +36612,2025-03-11T15:05:23.728659-07:00,990.794189453125,10.856773,10856.773 +36613,2025-03-11T15:05:34.580939-07:00,990.7775268554688,10.85228,10852.28 +36614,2025-03-11T15:05:45.428980-07:00,990.794189453125,10.848041,10848.041 +36615,2025-03-11T15:05:56.286197-07:00,990.78759765625,10.857217,10857.217 +36616,2025-03-11T15:06:07.135454-07:00,990.822998046875,10.849257,10849.257 +36617,2025-03-11T15:06:17.976915-07:00,990.7753295898438,10.841461,10841.461 +36618,2025-03-11T15:06:28.832703-07:00,990.7765502929688,10.855788,10855.788 +36619,2025-03-11T15:06:39.684651-07:00,990.7775268554688,10.851948,10851.948 +36620,2025-03-11T15:06:50.530636-07:00,990.7444458007812,10.845985,10845.985 +36621,2025-03-11T15:07:01.387653-07:00,990.765625,10.857017,10857.017 +36622,2025-03-11T15:07:12.195613-07:00,990.7589111328125,10.80796,10807.96 +36623,2025-03-11T15:07:23.045426-07:00,990.7675170898438,10.849813,10849.813 +36624,2025-03-11T15:07:33.898351-07:00,990.7334594726562,10.852925,10852.925 +36625,2025-03-11T15:07:44.751350-07:00,990.735595703125,10.852999,10852.999 +36626,2025-03-11T15:07:55.597711-07:00,990.7400512695312,10.846361,10846.361 +36627,2025-03-11T15:08:06.457606-07:00,990.7268676757812,10.859895,10859.895 +36628,2025-03-11T15:08:17.304631-07:00,990.7069702148438,10.847025,10847.025 +36629,2025-03-11T15:08:28.158673-07:00,990.7079467773438,10.854042,10854.042 +36630,2025-03-11T15:08:39.013656-07:00,990.7013549804688,10.854983,10854.983 +36631,2025-03-11T15:08:49.868732-07:00,990.72998046875,10.855076,10855.076 +36632,2025-03-11T15:09:00.715088-07:00,990.7234497070312,10.846356,10846.356 +36633,2025-03-11T15:09:11.573056-07:00,990.6947021484375,10.857968,10857.968 +36634,2025-03-11T15:09:22.420703-07:00,990.7101440429688,10.847647,10847.647 +36635,2025-03-11T15:09:33.264350-07:00,990.7234497070312,10.843647,10843.647 +36636,2025-03-11T15:09:44.122517-07:00,990.7290649414062,10.858167,10858.167 +36637,2025-03-11T15:09:54.971654-07:00,990.7322387695312,10.849137,10849.137 +36638,2025-03-11T15:10:05.822739-07:00,990.7864990234375,10.851085,10851.085 +36639,2025-03-11T15:10:16.670666-07:00,990.7335205078125,10.847927,10847.927 +36640,2025-03-11T15:10:27.516997-07:00,990.7401733398438,10.846331,10846.331 +36641,2025-03-11T15:10:38.367594-07:00,990.7146606445312,10.850597,10850.597 +36642,2025-03-11T15:10:49.214642-07:00,990.7410888671875,10.847048,10847.048 +36643,2025-03-11T15:11:00.070552-07:00,990.7279052734375,10.85591,10855.91 +36644,2025-03-11T15:11:10.920370-07:00,990.7357788085938,10.849818,10849.818 +36645,2025-03-11T15:11:21.779612-07:00,990.7291259765625,10.859242,10859.242 +36646,2025-03-11T15:11:32.623584-07:00,990.7224731445312,10.843972,10843.972 +36647,2025-03-11T15:11:43.482446-07:00,990.6903686523438,10.858862,10858.862 +36648,2025-03-11T15:11:54.325336-07:00,990.7234497070312,10.84289,10842.89 +36649,2025-03-11T15:12:05.185329-07:00,990.69921875,10.859993,10859.993 +36650,2025-03-11T15:12:16.035347-07:00,990.69921875,10.850018,10850.018 +36651,2025-03-11T15:12:26.878768-07:00,990.633056640625,10.843421,10843.421 +36652,2025-03-11T15:12:37.735601-07:00,990.6674194335938,10.856833,10856.833 +36653,2025-03-11T15:12:48.593599-07:00,990.6475219726562,10.857998,10857.998 +36654,2025-03-11T15:12:59.440957-07:00,990.6607666015625,10.847358,10847.358 +36655,2025-03-11T15:13:10.298391-07:00,990.6607666015625,10.857434,10857.434 +36656,2025-03-11T15:13:21.139608-07:00,990.6353149414062,10.841217,10841.217 +36657,2025-03-11T15:13:31.993348-07:00,990.6309204101562,10.85374,10853.74 +36658,2025-03-11T15:13:42.837681-07:00,990.5968627929688,10.844333,10844.333 +36659,2025-03-11T15:13:53.690669-07:00,990.5924072265625,10.852988,10852.988 +36660,2025-03-11T15:14:04.534498-07:00,990.6242065429688,10.843829,10843.829 +36661,2025-03-11T15:14:15.388940-07:00,990.6110229492188,10.854442,10854.442 +36662,2025-03-11T15:14:26.243487-07:00,990.5836181640625,10.854547,10854.547 +36663,2025-03-11T15:14:37.088724-07:00,990.61767578125,10.845237,10845.237 +36664,2025-03-11T15:14:47.946589-07:00,990.660888671875,10.857865,10857.865 +36665,2025-03-11T15:14:58.794400-07:00,990.660888671875,10.847811,10847.811 +36666,2025-03-11T15:15:09.645353-07:00,990.6585693359375,10.850953,10850.953 +36667,2025-03-11T15:15:20.497569-07:00,990.6596069335938,10.852216,10852.216 +36668,2025-03-11T15:15:31.351727-07:00,990.66748046875,10.854158,10854.158 +36669,2025-03-11T15:15:42.192456-07:00,990.6296997070312,10.840729,10840.729 +36670,2025-03-11T15:15:53.045466-07:00,990.662841796875,10.85301,10853.01 +36671,2025-03-11T15:16:03.889650-07:00,990.6363525390625,10.844184,10844.184 +36672,2025-03-11T15:16:14.742553-07:00,990.6520385742188,10.852903,10852.903 +36673,2025-03-11T15:16:25.585344-07:00,990.6520385742188,10.842791,10842.791 +36674,2025-03-11T15:16:36.444354-07:00,990.5965576171875,10.85901,10859.01 +36675,2025-03-11T15:16:47.285262-07:00,990.592529296875,10.840908,10840.908 +36676,2025-03-11T15:16:58.139352-07:00,990.6309204101562,10.85409,10854.09 +36677,2025-03-11T15:17:08.985480-07:00,990.6798706054688,10.846128,10846.128 +36678,2025-03-11T15:17:19.836331-07:00,990.6984252929688,10.850851,10850.851 +36679,2025-03-11T15:17:30.684547-07:00,990.6773681640625,10.848216,10848.216 +36680,2025-03-11T15:17:41.533013-07:00,990.6574096679688,10.848466,10848.466 +36681,2025-03-11T15:17:52.383738-07:00,990.6785888671875,10.850725,10850.725 +36682,2025-03-11T15:18:03.227666-07:00,990.6905517578125,10.843928,10843.928 +36683,2025-03-11T15:18:14.082351-07:00,990.6693725585938,10.854685,10854.685 +36684,2025-03-11T15:18:24.929665-07:00,990.6851806640625,10.847314,10847.314 +36685,2025-03-11T15:18:35.784722-07:00,990.6561889648438,10.855057,10855.057 +36686,2025-03-11T15:18:46.627381-07:00,990.6773681640625,10.842659,10842.659 +36687,2025-03-11T15:18:57.481096-07:00,990.6507568359375,10.853715,10853.715 +36688,2025-03-11T15:19:08.325673-07:00,990.6507568359375,10.844577,10844.577 +36689,2025-03-11T15:19:19.180658-07:00,990.6507568359375,10.854985,10854.985 +36690,2025-03-11T15:19:30.022627-07:00,990.6520385742188,10.841969,10841.969 +36691,2025-03-11T15:19:40.875747-07:00,990.6507568359375,10.85312,10853.12 +36692,2025-03-11T15:19:51.723591-07:00,990.6442260742188,10.847844,10847.844 +36693,2025-03-11T15:20:02.579012-07:00,990.6353149414062,10.855421,10855.421 +36694,2025-03-11T15:20:13.420599-07:00,990.6353149414062,10.841587,10841.587 +36695,2025-03-11T15:20:20.811970-07:00,990.6363525390625,7.391371,7391.371 +36696,2025-03-11T15:20:24.270348-07:00,990.623046875,3.458378,3458.378 +36697,2025-03-11T15:20:35.113582-07:00,990.5946655273438,10.843234,10843.234 +36698,2025-03-11T15:20:45.957702-07:00,990.6551513671875,10.84412,10844.12 +36699,2025-03-11T15:20:56.812687-07:00,990.6012573242188,10.854985,10854.985 +36700,2025-03-11T15:21:07.647343-07:00,990.614501953125,10.834656,10834.656 +36701,2025-03-11T15:21:18.496713-07:00,990.5924072265625,10.84937,10849.37 +36702,2025-03-11T15:21:29.346350-07:00,990.5999755859375,10.849637,10849.637 +36703,2025-03-11T15:21:40.198777-07:00,990.554931640625,10.852427,10852.427 +36704,2025-03-11T15:21:51.056434-07:00,990.5934448242188,10.857657,10857.657 +36705,2025-03-11T15:22:01.905469-07:00,990.5924072265625,10.849035,10849.035 +36706,2025-03-11T15:22:12.747391-07:00,990.5725708007812,10.841922,10841.922 +36707,2025-03-11T15:22:23.601736-07:00,990.5901489257812,10.854345,10854.345 +36708,2025-03-11T15:22:34.446847-07:00,990.5924072265625,10.845111,10845.111 +36709,2025-03-11T15:22:45.300385-07:00,990.5779418945312,10.853538,10853.538 +36710,2025-03-11T15:22:56.147344-07:00,990.5769653320312,10.846959,10846.959 +36711,2025-03-11T15:23:06.992471-07:00,990.5712280273438,10.845127,10845.127 +36712,2025-03-11T15:23:17.841423-07:00,990.5580444335938,10.848952,10848.952 +36713,2025-03-11T15:23:28.689333-07:00,990.5792236328125,10.84791,10847.91 +36714,2025-03-11T15:23:39.538353-07:00,990.5250244140625,10.84902,10849.02 +36715,2025-03-11T15:23:50.390530-07:00,990.5580444335938,10.852177,10852.177 +36716,2025-03-11T15:24:01.236656-07:00,990.5580444335938,10.846126,10846.126 +36717,2025-03-11T15:24:12.088936-07:00,990.5924072265625,10.85228,10852.28 +36718,2025-03-11T15:24:22.933401-07:00,990.564697265625,10.844465,10844.465 +36719,2025-03-11T15:24:33.776351-07:00,990.517333984375,10.84295,10842.95 +36720,2025-03-11T15:24:44.629473-07:00,990.5712280273438,10.853122,10853.122 +36721,2025-03-11T15:24:55.485834-07:00,990.56689453125,10.856361,10856.361 +36722,2025-03-11T15:25:06.332667-07:00,990.6066284179688,10.846833,10846.833 +36723,2025-03-11T15:25:17.182350-07:00,990.5315551757812,10.849683,10849.683 +36724,2025-03-11T15:25:28.026635-07:00,990.5460815429688,10.844285,10844.285 +36725,2025-03-11T15:25:38.880693-07:00,990.5779418945312,10.854058,10854.058 +36726,2025-03-11T15:25:49.724406-07:00,990.56689453125,10.843713,10843.713 +36727,2025-03-11T15:26:00.577860-07:00,990.5513916015625,10.853454,10853.454 +36728,2025-03-11T15:26:11.419350-07:00,990.56689453125,10.84149,10841.49 +36729,2025-03-11T15:26:22.263357-07:00,990.5593872070312,10.844007,10844.007 +36730,2025-03-11T15:26:33.107428-07:00,990.51171875,10.844071,10844.071 +36731,2025-03-11T15:26:43.960538-07:00,990.56591796875,10.85311,10853.11 +36732,2025-03-11T15:26:54.816350-07:00,990.5593872070312,10.855812,10855.812 +36733,2025-03-11T15:27:05.664361-07:00,990.5934448242188,10.848011,10848.011 +36734,2025-03-11T15:27:16.508905-07:00,990.5382080078125,10.844544,10844.544 +36735,2025-03-11T15:27:27.355441-07:00,990.56591796875,10.846536,10846.536 +36736,2025-03-11T15:27:38.199344-07:00,990.5580444335938,10.843903,10843.903 +36737,2025-03-11T15:27:49.058561-07:00,990.5593872070312,10.859217,10859.217 +36738,2025-03-11T15:27:59.910432-07:00,990.5801391601562,10.851871,10851.871 +36739,2025-03-11T15:28:10.751360-07:00,990.5195922851562,10.840928,10840.928 +36740,2025-03-11T15:28:21.606486-07:00,990.513916015625,10.855126,10855.126 +36741,2025-03-11T15:28:32.448739-07:00,990.5262451171875,10.842253,10842.253 +36742,2025-03-11T15:28:43.303833-07:00,990.4984130859375,10.855094,10855.094 +36743,2025-03-11T15:28:54.147600-07:00,990.4798583984375,10.843767,10843.767 +36744,2025-03-11T15:29:04.991514-07:00,990.5050659179688,10.843914,10843.914 +36745,2025-03-11T15:29:15.843589-07:00,990.51171875,10.852075,10852.075 +36746,2025-03-11T15:29:26.685403-07:00,990.5382080078125,10.841814,10841.814 +36747,2025-03-11T15:29:37.530274-07:00,990.4984130859375,10.844871,10844.871 +36748,2025-03-11T15:29:48.384406-07:00,990.4255981445312,10.854132,10854.132 +36749,2025-03-11T15:29:59.226917-07:00,990.46533203125,10.842511,10842.511 +36750,2025-03-11T15:30:10.084759-07:00,990.458740234375,10.857842,10857.842 +36751,2025-03-11T15:30:20.924575-07:00,990.4984130859375,10.839816,10839.816 +36752,2025-03-11T15:30:31.781751-07:00,990.490966796875,10.857176,10857.176 +36753,2025-03-11T15:30:42.629712-07:00,990.398193359375,10.847961,10847.961 +36754,2025-03-11T15:30:53.471540-07:00,990.4445190429688,10.841828,10841.828 +36755,2025-03-11T15:31:04.320340-07:00,990.4578247070312,10.8488,10848.8 +36756,2025-03-11T15:31:15.164639-07:00,990.4785766601562,10.844299,10844.299 +36757,2025-03-11T15:31:26.019625-07:00,990.4389038085938,10.854986,10854.986 +36758,2025-03-11T15:31:36.864907-07:00,990.5195922851562,10.845282,10845.282 +36759,2025-03-11T15:31:47.721546-07:00,990.5064086914062,10.856639,10856.639 +36760,2025-03-11T15:31:58.570759-07:00,990.4874877929688,10.849213,10849.213 +36761,2025-03-11T15:32:09.410350-07:00,990.5205688476562,10.839591,10839.591 +36762,2025-03-11T15:32:20.256471-07:00,990.5064086914062,10.846121,10846.121 +36763,2025-03-11T15:32:31.099358-07:00,990.4666137695312,10.842887,10842.887 +36764,2025-03-11T15:32:41.951636-07:00,990.4865112304688,10.852278,10852.278 +36765,2025-03-11T15:32:52.796687-07:00,990.4931030273438,10.845051,10845.051 +36766,2025-03-11T15:33:03.652093-07:00,990.4675903320312,10.855406,10855.406 +36767,2025-03-11T15:33:14.494524-07:00,990.4423217773438,10.842431,10842.431 +36768,2025-03-11T15:33:25.344348-07:00,990.4754638671875,10.849824,10849.824 +36769,2025-03-11T15:33:36.199724-07:00,990.4689331054688,10.855376,10855.376 +36770,2025-03-11T15:33:47.054346-07:00,990.4821166992188,10.854622,10854.622 +36771,2025-03-11T15:33:57.901429-07:00,990.4556274414062,10.847083,10847.083 +36772,2025-03-11T15:34:08.743876-07:00,990.51513671875,10.842447,10842.447 +36773,2025-03-11T15:34:19.592704-07:00,990.5536499023438,10.848828,10848.828 +36774,2025-03-11T15:34:30.442562-07:00,990.48876953125,10.849858,10849.858 +36775,2025-03-11T15:34:41.286628-07:00,990.5284423828125,10.844066,10844.066 +36776,2025-03-11T15:34:52.128350-07:00,990.5404663085938,10.841722,10841.722 +36777,2025-03-11T15:35:02.979548-07:00,990.51513671875,10.851198,10851.198 +36778,2025-03-11T15:35:13.826543-07:00,990.51513671875,10.846995,10846.995 +36779,2025-03-11T15:35:24.665499-07:00,990.5086059570312,10.838956,10838.956 +36780,2025-03-11T15:35:35.510604-07:00,990.48876953125,10.845105,10845.105 +36781,2025-03-11T15:35:46.343347-07:00,990.4953002929688,10.832743,10832.743 +36782,2025-03-11T15:35:57.196518-07:00,990.4631958007812,10.853171,10853.171 +36783,2025-03-11T15:36:08.036712-07:00,990.4896850585938,10.840194,10840.194 +36784,2025-03-11T15:36:18.880613-07:00,990.5161743164062,10.843901,10843.901 +36785,2025-03-11T15:36:29.716600-07:00,990.50390625,10.835987,10835.987 +36786,2025-03-11T15:36:40.563491-07:00,990.4940795898438,10.846891,10846.891 +36787,2025-03-11T15:36:51.407595-07:00,990.5029907226562,10.844104,10844.104 +36788,2025-03-11T15:37:02.251377-07:00,990.4821166992188,10.843782,10843.782 +36789,2025-03-11T15:37:13.089519-07:00,990.4874877929688,10.838142,10838.142 +36790,2025-03-11T15:37:23.938353-07:00,990.4742431640625,10.848834,10848.834 +36791,2025-03-11T15:37:34.793547-07:00,990.4874877929688,10.855194,10855.194 +36792,2025-03-11T15:37:45.630352-07:00,990.5337524414062,10.836805,10836.805 +36793,2025-03-11T15:37:56.484499-07:00,990.5205688476562,10.854147,10854.147 +36794,2025-03-11T15:38:07.327712-07:00,990.5593872070312,10.843213,10843.213 +36795,2025-03-11T15:38:18.170691-07:00,990.5580444335938,10.842979,10842.979 +36796,2025-03-11T15:38:18.989231-07:00,990.5470581054688,0.81854,818.54 +36797,2025-03-11T15:38:29.014015-07:00,990.5536499023438,10.024784,10024.784 +36798,2025-03-11T15:38:39.859230-07:00,990.5801391601562,10.845215,10845.215 +36799,2025-03-11T15:38:50.699349-07:00,990.56591796875,10.840119,10840.119 +36800,2025-03-11T15:39:01.536337-07:00,990.5460815429688,10.836988,10836.988 +36801,2025-03-11T15:39:12.384397-07:00,990.5460815429688,10.84806,10848.06 +36802,2025-03-11T15:39:23.228354-07:00,990.5350952148438,10.843957,10843.957 +36803,2025-03-11T15:39:34.082344-07:00,990.50732421875,10.85399,10853.99 +36804,2025-03-11T15:39:44.925630-07:00,990.4996948242188,10.843286,10843.286 +36805,2025-03-11T15:39:55.768884-07:00,990.5064086914062,10.843254,10843.254 +36806,2025-03-11T15:40:06.620928-07:00,990.50732421875,10.852044,10852.044 +36807,2025-03-11T15:40:17.454493-07:00,990.51171875,10.833565,10833.565 +36808,2025-03-11T15:40:28.308585-07:00,990.4940795898438,10.854092,10854.092 +36809,2025-03-11T15:40:39.150351-07:00,990.4918823242188,10.841766,10841.766 +36810,2025-03-11T15:40:49.997727-07:00,990.5284423828125,10.847376,10847.376 +36811,2025-03-11T15:41:00.841671-07:00,990.5315551757812,10.843944,10843.944 +36812,2025-03-11T15:41:11.692914-07:00,990.5328369140625,10.851243,10851.243 +36813,2025-03-11T15:41:22.536563-07:00,990.5108032226562,10.843649,10843.649 +36814,2025-03-11T15:41:33.385350-07:00,990.4852294921875,10.848787,10848.787 +36815,2025-03-11T15:41:44.223354-07:00,990.5195922851562,10.838004,10838.004 +36816,2025-03-11T15:41:55.065707-07:00,990.4852294921875,10.842353,10842.353 +36817,2025-03-11T15:42:05.904348-07:00,990.5315551757812,10.838641,10838.641 +36818,2025-03-11T15:42:16.751861-07:00,990.51171875,10.847513,10847.513 +36819,2025-03-11T15:42:27.598329-07:00,990.4918823242188,10.846468,10846.468 +36820,2025-03-11T15:42:38.432484-07:00,990.5315551757812,10.834155,10834.155 +36821,2025-03-11T15:42:49.277508-07:00,990.518310546875,10.845024,10845.024 +36822,2025-03-11T15:43:00.115496-07:00,990.5271606445312,10.837988,10837.988 +36823,2025-03-11T15:43:10.958517-07:00,990.5262451171875,10.843021,10843.021 +36824,2025-03-11T15:43:21.797787-07:00,990.4918823242188,10.83927,10839.27 +36825,2025-03-11T15:43:32.642516-07:00,990.4931030273438,10.844729,10844.729 +36826,2025-03-11T15:43:43.486585-07:00,990.518310546875,10.844069,10844.069 +36827,2025-03-11T15:43:54.338346-07:00,990.512939453125,10.851761,10851.761 +36828,2025-03-11T15:44:05.179329-07:00,990.4732666015625,10.840983,10840.983 +36829,2025-03-11T15:44:16.027488-07:00,990.4776611328125,10.848159,10848.159 +36830,2025-03-11T15:44:26.873649-07:00,990.4366455078125,10.846161,10846.161 +36831,2025-03-11T15:44:37.719685-07:00,990.4423217773438,10.846036,10846.036 +36832,2025-03-11T15:44:48.566438-07:00,990.4697875976562,10.846753,10846.753 +36833,2025-03-11T15:44:59.398961-07:00,990.4476318359375,10.832523,10832.523 +36834,2025-03-11T15:45:10.243851-07:00,990.412353515625,10.84489,10844.89 +36835,2025-03-11T15:45:21.100250-07:00,990.4467163085938,10.856399,10856.399 +36836,2025-03-11T15:45:31.942810-07:00,990.41357421875,10.84256,10842.56 +36837,2025-03-11T15:45:42.792025-07:00,990.41357421875,10.849215,10849.215 +36838,2025-03-11T15:45:53.642342-07:00,990.4321899414062,10.850317,10850.317 +36839,2025-03-11T15:46:04.492351-07:00,990.4600219726562,10.850009,10850.009 +36840,2025-03-11T15:46:15.333488-07:00,990.41796875,10.841137,10841.137 +36841,2025-03-11T15:46:26.172765-07:00,990.4454956054688,10.839277,10839.277 +36842,2025-03-11T15:46:37.020683-07:00,990.4334106445312,10.847918,10847.918 +36843,2025-03-11T15:46:47.861650-07:00,990.4533081054688,10.840967,10840.967 +36844,2025-03-11T15:46:58.714494-07:00,990.4057006835938,10.852844,10852.844 +36845,2025-03-11T15:47:09.550613-07:00,990.4070434570312,10.836119,10836.119 +36846,2025-03-11T15:47:20.393748-07:00,990.4467163085938,10.843135,10843.135 +36847,2025-03-11T15:47:31.236697-07:00,990.4321899414062,10.842949,10842.949 +36848,2025-03-11T15:47:42.080413-07:00,990.4454956054688,10.843716,10843.716 +36849,2025-03-11T15:47:52.918352-07:00,990.4268798828125,10.837939,10837.939 +36850,2025-03-11T15:48:03.765496-07:00,990.4202270507812,10.847144,10847.144 +36851,2025-03-11T15:48:14.606624-07:00,990.411376953125,10.841128,10841.128 +36852,2025-03-11T15:48:25.450573-07:00,990.4268798828125,10.843949,10843.949 +36853,2025-03-11T15:48:36.294351-07:00,990.370361328125,10.843778,10843.778 +36854,2025-03-11T15:48:47.138801-07:00,990.3990478515625,10.84445,10844.45 +36855,2025-03-11T15:48:57.976808-07:00,990.3925170898438,10.838007,10838.007 +36856,2025-03-11T15:49:08.824697-07:00,990.3902587890625,10.847889,10847.889 +36857,2025-03-11T15:49:19.666609-07:00,990.365966796875,10.841912,10841.912 +36858,2025-03-11T15:49:30.520350-07:00,990.40478515625,10.853741,10853.741 +36859,2025-03-11T15:49:41.364347-07:00,990.3981323242188,10.843997,10843.997 +36860,2025-03-11T15:49:52.208604-07:00,990.416748046875,10.844257,10844.257 +36861,2025-03-11T15:50:03.049743-07:00,990.3925170898438,10.841139,10841.139 +36862,2025-03-11T15:50:13.893654-07:00,990.3990478515625,10.843911,10843.911 +36863,2025-03-11T15:50:24.737581-07:00,990.411376953125,10.843927,10843.927 +36864,2025-03-11T15:50:35.580545-07:00,990.3792114257812,10.842964,10842.964 +36865,2025-03-11T15:50:46.422743-07:00,990.407958984375,10.842198,10842.198 +36866,2025-03-11T15:50:57.269612-07:00,990.3682861328125,10.846869,10846.869 +36867,2025-03-11T15:51:08.110935-07:00,990.3870849609375,10.841323,10841.323 +36868,2025-03-11T15:51:18.959581-07:00,990.3881225585938,10.848646,10848.646 +36869,2025-03-11T15:51:29.798350-07:00,990.3814086914062,10.838769,10838.769 +36870,2025-03-11T15:51:40.648453-07:00,990.4290771484375,10.850103,10850.103 +36871,2025-03-11T15:51:51.489023-07:00,990.3473510742188,10.84057,10840.57 +36872,2025-03-11T15:52:02.335436-07:00,990.4003295898438,10.846413,10846.413 +36873,2025-03-11T15:52:13.191380-07:00,990.3947143554688,10.855944,10855.944 +36874,2025-03-11T15:52:24.029637-07:00,990.389404296875,10.838257,10838.257 +36875,2025-03-11T15:52:34.877726-07:00,990.3695068359375,10.848089,10848.089 +36876,2025-03-11T15:52:45.730601-07:00,990.41455078125,10.852875,10852.875 +36877,2025-03-11T15:52:56.572812-07:00,990.389404296875,10.842211,10842.211 +36878,2025-03-11T15:53:07.418207-07:00,990.3836669921875,10.845395,10845.395 +36879,2025-03-11T15:53:18.268349-07:00,990.3770141601562,10.850142,10850.142 +36880,2025-03-11T15:53:29.114345-07:00,990.4255981445312,10.845996,10845.996 +36881,2025-03-11T15:53:39.970494-07:00,990.4048461914062,10.856149,10856.149 +36882,2025-03-11T15:53:50.808351-07:00,990.398193359375,10.837857,10837.857 +36883,2025-03-11T15:54:01.655355-07:00,990.4322509765625,10.847004,10847.004 +36884,2025-03-11T15:54:12.498678-07:00,990.3859252929688,10.843323,10843.323 +36885,2025-03-11T15:54:23.331390-07:00,990.4070434570312,10.832712,10832.712 +36886,2025-03-11T15:54:34.179516-07:00,990.407958984375,10.848126,10848.126 +36887,2025-03-11T15:54:45.028652-07:00,990.3518676757812,10.849136,10849.136 +36888,2025-03-11T15:54:55.870766-07:00,990.3937377929688,10.842114,10842.114 +36889,2025-03-11T15:55:06.714951-07:00,990.3937377929688,10.844185,10844.185 +36890,2025-03-11T15:55:17.570342-07:00,990.4070434570312,10.855391,10855.391 +36891,2025-03-11T15:55:28.406351-07:00,990.4146118164062,10.836009,10836.009 +36892,2025-03-11T15:55:39.254500-07:00,990.3792724609375,10.848149,10848.149 +36893,2025-03-11T15:55:50.098331-07:00,990.4004516601562,10.843831,10843.831 +36894,2025-03-11T15:56:00.941695-07:00,990.38720703125,10.843364,10843.364 +36895,2025-03-11T15:56:11.791394-07:00,990.3739013671875,10.849699,10849.699 +36896,2025-03-11T15:56:22.637488-07:00,990.4014282226562,10.846094,10846.094 +36897,2025-03-11T15:56:33.475701-07:00,990.381591796875,10.838213,10838.213 +36898,2025-03-11T15:56:44.326355-07:00,990.3761596679688,10.850654,10850.654 +36899,2025-03-11T15:56:55.180853-07:00,990.389404296875,10.854498,10854.498 +36900,2025-03-11T15:57:06.011709-07:00,990.3881225585938,10.830856,10830.856 +36901,2025-03-11T15:57:16.865725-07:00,990.3638916015625,10.854016,10854.016 +36902,2025-03-11T15:57:27.706574-07:00,990.35498046875,10.840849,10840.849 +36903,2025-03-11T15:57:38.552493-07:00,990.3749389648438,10.845919,10845.919 +36904,2025-03-11T15:57:49.394352-07:00,990.3231811523438,10.841859,10841.859 +36905,2025-03-11T15:58:00.228639-07:00,990.3572387695312,10.834287,10834.287 +36906,2025-03-11T15:58:11.080383-07:00,990.3506469726562,10.851744,10851.744 +36907,2025-03-11T15:58:21.913771-07:00,990.3165893554688,10.833388,10833.388 +36908,2025-03-11T15:58:32.758664-07:00,990.3440551757812,10.844893,10844.893 +36909,2025-03-11T15:58:43.604876-07:00,990.3607788085938,10.846212,10846.212 +36910,2025-03-11T15:58:54.453848-07:00,990.3595581054688,10.848972,10848.972 +36911,2025-03-11T15:59:05.293533-07:00,990.3607788085938,10.839685,10839.685 +36912,2025-03-11T15:59:16.129350-07:00,990.4083862304688,10.835817,10835.817 +36913,2025-03-11T15:59:26.978413-07:00,990.3685913085938,10.849063,10849.063 +36914,2025-03-11T15:59:37.821966-07:00,990.3685913085938,10.843553,10843.553 +36915,2025-03-11T15:59:48.657353-07:00,990.316650390625,10.835387,10835.387 +36916,2025-03-11T15:59:59.507579-07:00,990.3378295898438,10.850226,10850.226 +36917,2025-03-11T16:00:10.345743-07:00,990.37841796875,10.838164,10838.164 +36918,2025-03-11T16:00:21.198431-07:00,990.35986328125,10.852688,10852.688 +36919,2025-03-11T16:00:32.041805-07:00,990.3585815429688,10.843374,10843.374 +36920,2025-03-11T16:00:42.884624-07:00,990.353271484375,10.842819,10842.819 +36921,2025-03-11T16:00:53.723345-07:00,990.353271484375,10.838721,10838.721 +36922,2025-03-11T16:01:04.571422-07:00,990.3333740234375,10.848077,10848.077 +36923,2025-03-11T16:01:15.416594-07:00,990.367431640625,10.845172,10845.172 +36924,2025-03-11T16:01:26.268744-07:00,990.354248046875,10.85215,10852.15 +36925,2025-03-11T16:01:37.116434-07:00,990.367431640625,10.84769,10847.69 +36926,2025-03-11T16:01:47.965393-07:00,990.3475952148438,10.848959,10848.959 +36927,2025-03-11T16:01:58.804499-07:00,990.35546875,10.839106,10839.106 +36928,2025-03-11T16:02:09.652567-07:00,990.408447265625,10.848068,10848.068 +36929,2025-03-11T16:02:20.485216-07:00,990.35546875,10.832649,10832.649 +36930,2025-03-11T16:02:31.322921-07:00,990.349853515625,10.837705,10837.705 +36931,2025-03-11T16:02:42.166346-07:00,990.3563842773438,10.843425,10843.425 +36932,2025-03-11T16:02:53.011755-07:00,990.3421630859375,10.845409,10845.409 +36933,2025-03-11T16:03:03.846443-07:00,990.363037109375,10.834688,10834.688 +36934,2025-03-11T16:03:14.693638-07:00,990.363037109375,10.847195,10847.195 +36935,2025-03-11T16:03:25.531768-07:00,990.35546875,10.83813,10838.13 +36936,2025-03-11T16:03:36.372738-07:00,990.3211059570312,10.84097,10840.97 +36937,2025-03-11T16:03:47.217163-07:00,990.3289794921875,10.844425,10844.425 +36938,2025-03-11T16:03:58.061329-07:00,990.35546875,10.844166,10844.166 +36939,2025-03-11T16:04:08.894348-07:00,990.3157958984375,10.833019,10833.019 +36940,2025-03-11T16:04:19.739620-07:00,990.376220703125,10.845272,10845.272 +36941,2025-03-11T16:04:30.578663-07:00,990.3687744140625,10.839043,10839.043 +36942,2025-03-11T16:04:41.429486-07:00,990.3895263671875,10.850823,10850.823 +36943,2025-03-11T16:04:52.276513-07:00,990.3687744140625,10.847027,10847.027 +36944,2025-03-11T16:05:03.117341-07:00,990.3886108398438,10.840828,10840.828 +36945,2025-03-11T16:05:13.963306-07:00,990.3696899414062,10.845965,10845.965 +36946,2025-03-11T16:05:24.812803-07:00,990.3233032226562,10.849497,10849.497 +36947,2025-03-11T16:05:35.659496-07:00,990.3421630859375,10.846693,10846.693 +36948,2025-03-11T16:05:46.500346-07:00,990.3687744140625,10.84085,10840.85 +36949,2025-03-11T16:05:57.352593-07:00,990.3431396484375,10.852247,10852.247 +36950,2025-03-11T16:06:08.189619-07:00,990.29150390625,10.837026,10837.026 +36951,2025-03-11T16:06:19.032876-07:00,990.3046875,10.843257,10843.257 +36952,2025-03-11T16:06:29.879443-07:00,990.3387451171875,10.846567,10846.567 +36953,2025-03-11T16:06:40.728514-07:00,990.3233032226562,10.849071,10849.071 +36954,2025-03-11T16:06:51.583397-07:00,990.298095703125,10.854883,10854.883 +36955,2025-03-11T16:07:02.432361-07:00,990.3123168945312,10.848964,10848.964 +36956,2025-03-11T16:07:13.334385-07:00,990.3123168945312,10.902024,10902.024 +36957,2025-03-11T16:07:24.181439-07:00,990.353271484375,10.847054,10847.054 +36958,2025-03-11T16:07:35.031316-07:00,990.3267822265625,10.849877,10849.877 +36959,2025-03-11T16:07:45.888433-07:00,990.3334350585938,10.857117,10857.117 +36960,2025-03-11T16:07:56.732061-07:00,990.3322143554688,10.843628,10843.628 +36961,2025-03-11T16:08:07.580630-07:00,990.354248046875,10.848569,10848.569 +36962,2025-03-11T16:08:18.426859-07:00,990.3467407226562,10.846229,10846.229 +36963,2025-03-11T16:08:29.273131-07:00,990.36083984375,10.846272,10846.272 +36964,2025-03-11T16:08:40.124144-07:00,990.3267822265625,10.851013,10851.013 +36965,2025-03-11T16:08:50.980039-07:00,990.348876953125,10.855895,10855.895 +36966,2025-03-11T16:09:01.825113-07:00,990.3343505859375,10.845074,10845.074 +36967,2025-03-11T16:09:12.676876-07:00,990.3091430664062,10.851763,10851.763 +36968,2025-03-11T16:09:23.521864-07:00,990.30029296875,10.844988,10844.988 +36969,2025-03-11T16:09:34.375876-07:00,990.3278198242188,10.854012,10854.012 +36970,2025-03-11T16:09:45.216553-07:00,990.3343505859375,10.840677,10840.677 +36971,2025-03-11T16:09:56.073196-07:00,990.3410034179688,10.856643,10856.643 +36972,2025-03-11T16:10:06.908863-07:00,990.2748413085938,10.835667,10835.667 +36973,2025-03-11T16:10:17.751876-07:00,990.307861328125,10.843013,10843.013 +36974,2025-03-11T16:10:28.592902-07:00,990.3091430664062,10.841026,10841.026 +36975,2025-03-11T16:10:39.437433-07:00,990.2959594726562,10.844531,10844.531 +36976,2025-03-11T16:10:50.292745-07:00,990.3167114257812,10.855312,10855.312 +36977,2025-03-11T16:11:01.135857-07:00,990.299072265625,10.843112,10843.112 +36978,2025-03-11T16:11:11.986866-07:00,990.3290405273438,10.851009,10851.009 +36979,2025-03-11T16:11:22.838860-07:00,990.3201293945312,10.851994,10851.994 +36980,2025-03-11T16:11:33.683073-07:00,990.30126953125,10.844213,10844.213 +36981,2025-03-11T16:11:44.539864-07:00,990.3223266601562,10.856791,10856.791 +36982,2025-03-11T16:11:55.386113-07:00,990.354248046875,10.846249,10846.249 +36983,2025-03-11T16:12:06.238865-07:00,990.348876953125,10.852752,10852.752 +36984,2025-03-11T16:12:17.082470-07:00,990.294677734375,10.843605,10843.605 +36985,2025-03-11T16:12:27.934130-07:00,990.3267822265625,10.85166,10851.66 +36986,2025-03-11T16:12:38.778332-07:00,990.302490234375,10.844202,10844.202 +36987,2025-03-11T16:12:49.629863-07:00,990.2738037109375,10.851531,10851.531 +36988,2025-03-11T16:13:00.475917-07:00,990.3223266601562,10.846054,10846.054 +36989,2025-03-11T16:13:11.329354-07:00,990.293701171875,10.853437,10853.437 +36990,2025-03-11T16:13:22.176161-07:00,990.3630981445312,10.846807,10846.807 +36991,2025-03-11T16:13:33.016246-07:00,990.3322143554688,10.840085,10840.085 +36992,2025-03-11T16:13:43.855098-07:00,990.3167114257812,10.838852,10838.852 +36993,2025-03-11T16:13:54.703754-07:00,990.3365478515625,10.848656,10848.656 +36994,2025-03-11T16:14:05.543063-07:00,990.35546875,10.839309,10839.309 +36995,2025-03-11T16:14:16.396863-07:00,990.3110961914062,10.8538,10853.8 +36996,2025-03-11T16:14:27.242858-07:00,990.3110961914062,10.845995,10845.995 +36997,2025-03-11T16:14:38.087195-07:00,990.3167114257812,10.844337,10844.337 +36998,2025-03-11T16:14:48.942215-07:00,990.299072265625,10.85502,10855.02 +36999,2025-03-11T16:14:59.775896-07:00,990.2770385742188,10.833681,10833.681 +37000,2025-03-11T16:15:10.631844-07:00,990.2902221679688,10.855948,10855.948 +37001,2025-03-11T16:15:21.472180-07:00,990.3101806640625,10.840336,10840.336 +37002,2025-03-11T16:15:32.326169-07:00,990.3309326171875,10.853989,10853.989 +37003,2025-03-11T16:15:43.171217-07:00,990.317626953125,10.845048,10845.048 +37004,2025-03-11T16:15:54.020299-07:00,990.304443359375,10.849082,10849.082 +37005,2025-03-11T16:16:04.866861-07:00,990.3256225585938,10.846562,10846.562 +37006,2025-03-11T16:16:15.714872-07:00,990.299072265625,10.848011,10848.011 +37007,2025-03-11T16:16:26.563069-07:00,990.29345703125,10.848197,10848.197 +37008,2025-03-11T16:16:37.406903-07:00,990.2814331054688,10.843834,10843.834 +37009,2025-03-11T16:16:48.249859-07:00,990.2801513671875,10.842956,10842.956 +37010,2025-03-11T16:16:59.095143-07:00,990.2669677734375,10.845284,10845.284 +37011,2025-03-11T16:17:09.937903-07:00,990.3278198242188,10.84276,10842.76 +37012,2025-03-11T16:17:20.785852-07:00,990.2736206054688,10.847949,10847.949 +37013,2025-03-11T16:17:31.631123-07:00,990.3079833984375,10.845271,10845.271 +37014,2025-03-11T16:17:42.474459-07:00,990.2505493164062,10.843336,10843.336 +37015,2025-03-11T16:17:53.325099-07:00,990.3035888671875,10.85064,10850.64 +37016,2025-03-11T16:18:04.170548-07:00,990.30224609375,10.845449,10845.449 +37017,2025-03-11T16:18:15.018112-07:00,990.30224609375,10.847564,10847.564 +37018,2025-03-11T16:18:25.860830-07:00,990.336669921875,10.842718,10842.718 +37019,2025-03-11T16:18:36.716212-07:00,990.3234252929688,10.855382,10855.382 +37020,2025-03-11T16:18:47.556870-07:00,990.3079833984375,10.840658,10840.658 +37021,2025-03-11T16:18:58.405198-07:00,990.3167724609375,10.848328,10848.328 +37022,2025-03-11T16:19:09.252866-07:00,990.28369140625,10.847668,10847.668 +37023,2025-03-11T16:19:20.095505-07:00,990.2881469726562,10.842639,10842.639 +37024,2025-03-11T16:19:30.943917-07:00,990.2681884765625,10.848412,10848.412 +37025,2025-03-11T16:19:41.780864-07:00,990.2757568359375,10.836947,10836.947 +37026,2025-03-11T16:19:52.633860-07:00,990.295654296875,10.852996,10852.996 +37027,2025-03-11T16:20:03.477170-07:00,990.2757568359375,10.84331,10843.31 +37028,2025-03-11T16:20:14.326633-07:00,990.295654296875,10.849463,10849.463 +37029,2025-03-11T16:20:25.167356-07:00,990.2824096679688,10.840723,10840.723 +37030,2025-03-11T16:20:36.020125-07:00,990.2881469726562,10.852769,10852.769 +37031,2025-03-11T16:20:46.858595-07:00,990.2271728515625,10.83847,10838.47 +37032,2025-03-11T16:20:57.698390-07:00,990.2801513671875,10.839795,10839.795 +37033,2025-03-11T16:21:08.555852-07:00,990.2470092773438,10.857462,10857.462 +37034,2025-03-11T16:21:19.392177-07:00,990.2152099609375,10.836325,10836.325 +37035,2025-03-11T16:21:30.238909-07:00,990.2470092773438,10.846732,10846.732 +37036,2025-03-11T16:21:41.073127-07:00,990.240478515625,10.834218,10834.218 +37037,2025-03-11T16:21:51.919029-07:00,990.2615356445312,10.845902,10845.902 +37038,2025-03-11T16:22:02.756705-07:00,990.2351684570312,10.837676,10837.676 +37039,2025-03-11T16:22:13.596162-07:00,990.2284545898438,10.839457,10839.457 +37040,2025-03-11T16:22:24.441856-07:00,990.2681884765625,10.845694,10845.694 +37041,2025-03-11T16:22:35.285839-07:00,990.240478515625,10.843983,10843.983 +37042,2025-03-11T16:22:46.130159-07:00,990.240478515625,10.84432,10844.32 +37043,2025-03-11T16:22:56.975180-07:00,990.2483520507812,10.845021,10845.021 +37044,2025-03-11T16:23:07.816895-07:00,990.2470092773438,10.841715,10841.715 +37045,2025-03-11T16:23:18.663943-07:00,990.1997680664062,10.847048,10847.048 +37046,2025-03-11T16:23:29.508190-07:00,990.2139892578125,10.844247,10844.247 +37047,2025-03-11T16:23:40.353615-07:00,990.2008056640625,10.845425,10845.425 +37048,2025-03-11T16:23:51.190860-07:00,990.2483520507812,10.837245,10837.245 +37049,2025-03-11T16:24:02.038997-07:00,990.2206420898438,10.848137,10848.137 +37050,2025-03-11T16:24:12.874863-07:00,990.2020263671875,10.835866,10835.866 +37051,2025-03-11T16:24:23.718146-07:00,990.2029418945312,10.843283,10843.283 +37052,2025-03-11T16:24:34.558162-07:00,990.1808471679688,10.840016,10840.016 +37053,2025-03-11T16:24:45.397077-07:00,990.2218627929688,10.838915,10838.915 +37054,2025-03-11T16:24:56.247238-07:00,990.194091796875,10.850161,10850.161 +37055,2025-03-11T16:25:07.090243-07:00,990.198486328125,10.843005,10843.005 +37056,2025-03-11T16:25:17.939177-07:00,990.2008056640625,10.848934,10848.934 +37057,2025-03-11T16:25:28.787035-07:00,990.1741943359375,10.847858,10847.858 +37058,2025-03-11T16:25:39.628862-07:00,990.2152099609375,10.841827,10841.827 +37059,2025-03-11T16:25:50.478841-07:00,990.2139892578125,10.849979,10849.979 +37060,2025-03-11T16:26:01.330254-07:00,990.2338256835938,10.851413,10851.413 +37061,2025-03-11T16:26:12.172863-07:00,990.2139892578125,10.842609,10842.609 +37062,2025-03-11T16:26:23.019970-07:00,990.2008056640625,10.847107,10847.107 +37063,2025-03-11T16:26:33.857933-07:00,990.2470092773438,10.837963,10837.963 +37064,2025-03-11T16:26:44.701863-07:00,990.24169921875,10.84393,10843.93 +37065,2025-03-11T16:26:55.549148-07:00,990.23291015625,10.847285,10847.285 +37066,2025-03-11T16:27:06.389755-07:00,990.2129516601562,10.840607,10840.607 +37067,2025-03-11T16:27:17.225079-07:00,990.2206420898438,10.835324,10835.324 +37068,2025-03-11T16:27:28.073837-07:00,990.24169921875,10.848758,10848.758 +37069,2025-03-11T16:27:38.916106-07:00,990.2483520507812,10.842269,10842.269 +37070,2025-03-11T16:27:49.759438-07:00,990.2483520507812,10.843332,10843.332 +37071,2025-03-11T16:28:00.608867-07:00,990.240478515625,10.849429,10849.429 +37072,2025-03-11T16:28:11.446933-07:00,990.2294311523438,10.838066,10838.066 +37073,2025-03-11T16:28:22.288859-07:00,990.249267578125,10.841926,10841.926 +37074,2025-03-11T16:28:33.131639-07:00,990.28369140625,10.84278,10842.78 +37075,2025-03-11T16:28:43.974241-07:00,990.2779541015625,10.842602,10842.602 +37076,2025-03-11T16:28:54.824043-07:00,990.2572021484375,10.849802,10849.802 +37077,2025-03-11T16:29:05.666925-07:00,990.28369140625,10.842882,10842.882 +37078,2025-03-11T16:29:16.511862-07:00,990.2692260742188,10.844937,10844.937 +37079,2025-03-11T16:29:27.357862-07:00,990.28369140625,10.846,10846.0 +37080,2025-03-11T16:29:38.190886-07:00,990.2638549804688,10.833024,10833.024 +37081,2025-03-11T16:29:49.045272-07:00,990.2779541015625,10.854386,10854.386 +37082,2025-03-11T16:29:59.890141-07:00,990.28466796875,10.844869,10844.869 +37083,2025-03-11T16:30:10.742199-07:00,990.2770385742188,10.852058,10852.058 +37084,2025-03-11T16:30:21.595908-07:00,990.3244018554688,10.853709,10853.709 +37085,2025-03-11T16:30:32.446902-07:00,990.34423828125,10.850994,10850.994 +37086,2025-03-11T16:30:43.297106-07:00,990.3123168945312,10.850204,10850.204 +37087,2025-03-11T16:30:54.148919-07:00,990.3057861328125,10.851813,10851.813 +37088,2025-03-11T16:31:05.002159-07:00,990.3057861328125,10.85324,10853.24 +37089,2025-03-11T16:31:15.861864-07:00,990.2991333007812,10.859705,10859.705 +37090,2025-03-11T16:31:26.705995-07:00,990.2802124023438,10.844131,10844.131 +37091,2025-03-11T16:31:37.563142-07:00,990.2726440429688,10.857147,10857.147 +37092,2025-03-11T16:31:48.409864-07:00,990.2991333007812,10.846722,10846.722 +37093,2025-03-11T16:31:59.256190-07:00,990.3079833984375,10.846326,10846.326 +37094,2025-03-11T16:32:10.114053-07:00,990.3146362304688,10.857863,10857.863 +37095,2025-03-11T16:32:20.956751-07:00,990.29345703125,10.842698,10842.698 +37096,2025-03-11T16:32:31.811201-07:00,990.2726440429688,10.85445,10854.45 +37097,2025-03-11T16:32:42.659728-07:00,990.3123168945312,10.848527,10848.527 +37098,2025-03-11T16:32:53.501540-07:00,990.3265380859375,10.841812,10841.812 +37099,2025-03-11T16:33:04.351000-07:00,990.3521118164062,10.84946,10849.46 +37100,2025-03-11T16:33:15.201361-07:00,990.3177490234375,10.850361,10850.361 +37101,2025-03-11T16:33:26.050378-07:00,990.3331909179688,10.849017,10849.017 +37102,2025-03-11T16:33:36.893124-07:00,990.3331909179688,10.842746,10842.746 +37103,2025-03-11T16:33:47.743103-07:00,990.346435546875,10.849979,10849.979 +37104,2025-03-11T16:33:58.590273-07:00,990.346435546875,10.84717,10847.17 +37105,2025-03-11T16:34:09.436990-07:00,990.3531494140625,10.846717,10846.717 +37106,2025-03-11T16:34:20.282837-07:00,990.3729858398438,10.845847,10845.847 +37107,2025-03-11T16:34:31.133835-07:00,990.3389282226562,10.850998,10850.998 +37108,2025-03-11T16:34:41.976441-07:00,990.4050903320312,10.842606,10842.606 +37109,2025-03-11T16:34:52.822254-07:00,990.3587646484375,10.845813,10845.813 +37110,2025-03-11T16:35:03.666331-07:00,990.346435546875,10.844077,10844.077 +37111,2025-03-11T16:35:14.519928-07:00,990.3587646484375,10.853597,10853.597 +37112,2025-03-11T16:35:25.362061-07:00,990.345458984375,10.842133,10842.133 +37113,2025-03-11T16:35:36.201223-07:00,990.3720092773438,10.839162,10839.162 +37114,2025-03-11T16:35:47.056870-07:00,990.38525390625,10.855647,10855.647 +37115,2025-03-11T16:35:57.910112-07:00,990.3389282226562,10.853242,10853.242 +37116,2025-03-11T16:36:08.750262-07:00,990.3531494140625,10.84015,10840.15 +37117,2025-03-11T16:36:19.603193-07:00,990.332275390625,10.852931,10852.931 +37118,2025-03-11T16:36:30.451506-07:00,990.3057861328125,10.848313,10848.313 +37119,2025-03-11T16:36:41.298038-07:00,990.4126586914062,10.846532,10846.532 +37120,2025-03-11T16:36:52.142911-07:00,990.3795166015625,10.844873,10844.873 +37121,2025-03-11T16:37:02.990072-07:00,990.3609619140625,10.847161,10847.161 +37122,2025-03-11T16:37:13.838923-07:00,990.392822265625,10.848851,10848.851 +37123,2025-03-11T16:37:24.694110-07:00,990.3331909179688,10.855187,10855.187 +37124,2025-03-11T16:37:35.546939-07:00,990.3807983398438,10.852829,10852.829 +37125,2025-03-11T16:37:46.392149-07:00,990.3685913085938,10.84521,10845.21 +37126,2025-03-11T16:37:57.246181-07:00,990.3565673828125,10.854032,10854.032 +37127,2025-03-11T16:38:08.089452-07:00,990.369873046875,10.843271,10843.271 +37128,2025-03-11T16:38:18.941657-07:00,990.3897094726562,10.852205,10852.205 +37129,2025-03-11T16:38:29.783866-07:00,990.3817749023438,10.842209,10842.209 +37130,2025-03-11T16:38:40.635911-07:00,990.4029541015625,10.852045,10852.045 +37131,2025-03-11T16:38:51.493847-07:00,990.4237670898438,10.857936,10857.936 +37132,2025-03-11T16:39:02.342864-07:00,990.384033203125,10.849017,10849.017 +37133,2025-03-11T16:39:13.193492-07:00,990.4161987304688,10.850628,10850.628 +37134,2025-03-11T16:39:24.042864-07:00,990.3817749023438,10.849372,10849.372 +37135,2025-03-11T16:39:34.890410-07:00,990.396240234375,10.847546,10847.546 +37136,2025-03-11T16:39:45.732203-07:00,990.43701171875,10.841793,10841.793 +37137,2025-03-11T16:39:56.576909-07:00,990.4745483398438,10.844706,10844.706 +37138,2025-03-11T16:40:07.425851-07:00,990.4281005859375,10.848942,10848.942 +37139,2025-03-11T16:40:18.273859-07:00,990.4271850585938,10.848008,10848.008 +37140,2025-03-11T16:40:29.129247-07:00,990.4810791015625,10.855388,10855.388 +37141,2025-03-11T16:40:39.984863-07:00,990.4271850585938,10.855616,10855.616 +37142,2025-03-11T16:40:50.837865-07:00,990.43603515625,10.853002,10853.002 +37143,2025-03-11T16:41:01.689999-07:00,990.4337768554688,10.852134,10852.134 +37144,2025-03-11T16:41:12.540864-07:00,990.388427734375,10.850865,10850.865 +37145,2025-03-11T16:41:23.391361-07:00,990.4095458984375,10.850497,10850.497 +37146,2025-03-11T16:41:34.244869-07:00,990.4138793945312,10.853508,10853.508 +37147,2025-03-11T16:41:45.088583-07:00,990.4138793945312,10.843714,10843.714 +37148,2025-03-11T16:41:55.937743-07:00,990.447021484375,10.84916,10849.16 +37149,2025-03-11T16:42:06.795917-07:00,990.4612426757812,10.858174,10858.174 +37150,2025-03-11T16:42:17.640766-07:00,990.4205322265625,10.844849,10844.849 +37151,2025-03-11T16:42:28.493473-07:00,990.4735717773438,10.852707,10852.707 +37152,2025-03-11T16:42:39.349143-07:00,990.4735717773438,10.85567,10855.67 +37153,2025-03-11T16:42:50.198841-07:00,990.4404907226562,10.849698,10849.698 +37154,2025-03-11T16:43:01.044856-07:00,990.4590454101562,10.846015,10846.015 +37155,2025-03-11T16:43:11.895857-07:00,990.439208984375,10.851001,10851.001 +37156,2025-03-11T16:43:22.742858-07:00,990.4745483398438,10.847001,10847.001 +37157,2025-03-11T16:43:33.581975-07:00,990.4281005859375,10.839117,10839.117 +37158,2025-03-11T16:43:44.431229-07:00,990.4161987304688,10.849254,10849.254 +37159,2025-03-11T16:43:55.279949-07:00,990.396240234375,10.84872,10848.72 +37160,2025-03-11T16:44:06.116104-07:00,990.44140625,10.836155,10836.155 +37161,2025-03-11T16:44:16.964255-07:00,990.388427734375,10.848151,10848.151 +37162,2025-03-11T16:44:27.813100-07:00,990.4302978515625,10.848845,10848.845 +37163,2025-03-11T16:44:38.668125-07:00,990.3972778320312,10.855025,10855.025 +37164,2025-03-11T16:44:49.518835-07:00,990.4634399414062,10.85071,10850.71 +37165,2025-03-11T16:45:00.365866-07:00,990.3972778320312,10.847031,10847.031 +37166,2025-03-11T16:45:11.208875-07:00,990.3972778320312,10.843009,10843.009 +37167,2025-03-11T16:45:22.059298-07:00,990.4302978515625,10.850423,10850.423 +37168,2025-03-11T16:45:32.906861-07:00,990.4193725585938,10.847563,10847.563 +37169,2025-03-11T16:45:43.748365-07:00,990.396240234375,10.841504,10841.504 +37170,2025-03-11T16:45:54.597856-07:00,990.4051513671875,10.849491,10849.491 +37171,2025-03-11T16:46:05.446089-07:00,990.4514770507812,10.848233,10848.233 +37172,2025-03-11T16:46:16.290160-07:00,990.4921875,10.844071,10844.071 +37173,2025-03-11T16:46:27.129256-07:00,990.4104614257812,10.839096,10839.096 +37174,2025-03-11T16:46:37.986905-07:00,990.4382934570312,10.857649,10857.649 +37175,2025-03-11T16:46:48.830854-07:00,990.4646606445312,10.843949,10843.949 +37176,2025-03-11T16:46:59.686852-07:00,990.4559326171875,10.855998,10855.998 +37177,2025-03-11T16:47:10.528080-07:00,990.5120239257812,10.841228,10841.228 +37178,2025-03-11T16:47:21.369274-07:00,990.4634399414062,10.841194,10841.194 +37179,2025-03-11T16:47:32.215986-07:00,990.443603515625,10.846712,10846.712 +37180,2025-03-11T16:47:43.055864-07:00,990.49658203125,10.839878,10839.878 +37181,2025-03-11T16:47:53.907085-07:00,990.497802734375,10.851221,10851.221 +37182,2025-03-11T16:48:04.754842-07:00,990.5253295898438,10.847757,10847.757 +37183,2025-03-11T16:48:15.594864-07:00,990.5000610351562,10.840022,10840.022 +37184,2025-03-11T16:48:26.440190-07:00,990.4912719726562,10.845326,10845.326 +37185,2025-03-11T16:48:37.285035-07:00,990.5098266601562,10.844845,10844.845 +37186,2025-03-11T16:48:48.139044-07:00,990.5045166015625,10.854009,10854.009 +37187,2025-03-11T16:48:58.983837-07:00,990.5098266601562,10.844793,10844.793 +37188,2025-03-11T16:49:09.829050-07:00,990.5089111328125,10.845213,10845.213 +37189,2025-03-11T16:49:20.668197-07:00,990.5275268554688,10.839147,10839.147 +37190,2025-03-11T16:49:31.523276-07:00,990.5009155273438,10.855079,10855.079 +37191,2025-03-11T16:49:42.367433-07:00,990.5066528320312,10.844157,10844.157 +37192,2025-03-11T16:49:53.219986-07:00,990.494384765625,10.852553,10852.553 +37193,2025-03-11T16:50:04.075191-07:00,990.4536743164062,10.855205,10855.205 +37194,2025-03-11T16:50:14.916162-07:00,990.4668579101562,10.840971,10840.971 +37195,2025-03-11T16:50:25.770858-07:00,990.50537109375,10.854696,10854.696 +37196,2025-03-11T16:50:36.614901-07:00,990.497802734375,10.844043,10844.043 +37197,2025-03-11T16:50:47.465864-07:00,990.50537109375,10.850963,10850.963 +37198,2025-03-11T16:50:58.318885-07:00,990.4911499023438,10.853021,10853.021 +37199,2025-03-11T16:51:09.167484-07:00,990.5242919921875,10.848599,10848.599 +37200,2025-03-11T16:51:20.021847-07:00,990.509765625,10.854363,10854.363 +37201,2025-03-11T16:51:30.865181-07:00,990.498779296875,10.843334,10843.334 +37202,2025-03-11T16:51:41.714617-07:00,990.5031127929688,10.849436,10849.436 +37203,2025-03-11T16:51:52.551103-07:00,990.5220336914062,10.836486,10836.486 +37204,2025-03-11T16:52:03.392133-07:00,990.507568359375,10.84103,10841.03 +37205,2025-03-11T16:52:14.238454-07:00,990.54736328125,10.846321,10846.321 +37206,2025-03-11T16:52:25.080162-07:00,990.548583984375,10.841708,10841.708 +37207,2025-03-11T16:52:35.924313-07:00,990.5803833007812,10.844151,10844.151 +37208,2025-03-11T16:52:46.766478-07:00,990.5274047851562,10.842165,10842.165 +37209,2025-03-11T16:52:57.607948-07:00,990.494384765625,10.84147,10841.47 +37210,2025-03-11T16:53:08.452222-07:00,990.5274047851562,10.844274,10844.274 +37211,2025-03-11T16:53:19.298026-07:00,990.4876708984375,10.845804,10845.804 +37212,2025-03-11T16:53:30.151909-07:00,990.49560546875,10.853883,10853.883 +37213,2025-03-11T16:53:40.997387-07:00,990.494384765625,10.845478,10845.478 +37214,2025-03-11T16:53:51.847857-07:00,990.520751953125,10.85047,10850.47 +37215,2025-03-11T16:54:02.696939-07:00,990.5154418945312,10.849082,10849.082 +37216,2025-03-11T16:54:13.537927-07:00,990.5274047851562,10.840988,10840.988 +37217,2025-03-11T16:54:24.388195-07:00,990.6015625,10.850268,10850.268 +37218,2025-03-11T16:54:35.230191-07:00,990.5088500976562,10.841996,10841.996 +37219,2025-03-11T16:54:46.080850-07:00,990.5980224609375,10.850659,10850.659 +37220,2025-03-11T16:54:56.922863-07:00,990.5684204101562,10.842013,10842.013 +37221,2025-03-11T16:55:07.771862-07:00,990.5406494140625,10.848999,10848.999 +37222,2025-03-11T16:55:18.626864-07:00,990.5949096679688,10.855002,10855.002 +37223,2025-03-11T16:55:29.469859-07:00,990.6068725585938,10.842995,10842.995 +37224,2025-03-11T16:55:40.320820-07:00,990.5803833007812,10.850961,10850.961 +37225,2025-03-11T16:55:51.172974-07:00,990.5264892578125,10.852154,10852.154 +37226,2025-03-11T16:56:02.024175-07:00,990.5794677734375,10.851201,10851.201 +37227,2025-03-11T16:56:12.876177-07:00,990.5463256835938,10.852002,10852.002 +37228,2025-03-11T16:56:23.720905-07:00,990.5451049804688,10.844728,10844.728 +37229,2025-03-11T16:56:34.568855-07:00,990.5516967773438,10.84795,10847.95 +37230,2025-03-11T16:56:45.423863-07:00,990.552978515625,10.855008,10855.008 +37231,2025-03-11T16:56:56.272121-07:00,990.552978515625,10.848258,10848.258 +37232,2025-03-11T16:57:07.120060-07:00,990.571533203125,10.847939,10847.939 +37233,2025-03-11T16:57:17.970984-07:00,990.571533203125,10.850924,10850.924 +37234,2025-03-11T16:57:28.816249-07:00,990.5384521484375,10.845265,10845.265 +37235,2025-03-11T16:57:39.672001-07:00,990.5451049804688,10.855752,10855.752 +37236,2025-03-11T16:57:50.522148-07:00,990.5396728515625,10.850147,10850.147 +37237,2025-03-11T16:58:01.370509-07:00,990.5318603515625,10.848361,10848.361 +37238,2025-03-11T16:58:12.220134-07:00,990.51318359375,10.849625,10849.625 +37239,2025-03-11T16:58:23.073587-07:00,990.511962890625,10.853453,10853.453 +37240,2025-03-11T16:58:33.923024-07:00,990.5331420898438,10.849437,10849.437 +37241,2025-03-11T16:58:44.778041-07:00,990.5109252929688,10.855017,10855.017 +37242,2025-03-11T16:58:55.625858-07:00,990.5186157226562,10.847817,10847.817 +37243,2025-03-11T16:59:06.474090-07:00,990.5296020507812,10.848232,10848.232 +37244,2025-03-11T16:59:17.321857-07:00,990.5451049804688,10.847767,10847.767 +37245,2025-03-11T16:59:28.173001-07:00,990.5109252929688,10.851144,10851.144 +37246,2025-03-11T16:59:39.021865-07:00,990.5109252929688,10.848864,10848.864 +37247,2025-03-11T16:59:49.878842-07:00,990.5296020507812,10.856977,10856.977 +37248,2025-03-11T17:00:00.719124-07:00,990.4921264648438,10.840282,10840.282 +37249,2025-03-11T17:00:11.562913-07:00,990.525146484375,10.843789,10843.789 +37250,2025-03-11T17:00:22.422694-07:00,990.4854736328125,10.859781,10859.781 +37251,2025-03-11T17:00:33.265863-07:00,990.4779052734375,10.843169,10843.169 +37252,2025-03-11T17:00:44.109892-07:00,990.4779052734375,10.844029,10844.029 +37253,2025-03-11T17:00:54.962863-07:00,990.4788208007812,10.852971,10852.971 +37254,2025-03-11T17:01:05.806417-07:00,990.4712524414062,10.843554,10843.554 +37255,2025-03-11T17:01:16.660976-07:00,990.460205078125,10.854559,10854.559 +37256,2025-03-11T17:01:27.498586-07:00,990.4744262695312,10.83761,10837.61 +37257,2025-03-11T17:01:38.351964-07:00,990.47216796875,10.853378,10853.378 +37258,2025-03-11T17:01:49.197911-07:00,990.4656372070312,10.845947,10845.947 +37259,2025-03-11T17:02:00.048858-07:00,990.4866943359375,10.850947,10850.947 +37260,2025-03-11T17:02:10.892067-07:00,990.4271850585938,10.843209,10843.209 +37261,2025-03-11T17:02:21.745891-07:00,990.4668579101562,10.853824,10853.824 +37262,2025-03-11T17:02:32.595912-07:00,990.4625244140625,10.850021,10850.021 +37263,2025-03-11T17:02:43.440917-07:00,990.4757080078125,10.845005,10845.005 +37264,2025-03-11T17:02:54.290027-07:00,990.4545288085938,10.84911,10849.11 +37265,2025-03-11T17:03:05.140424-07:00,990.4346923828125,10.850397,10850.397 +37266,2025-03-11T17:03:15.985207-07:00,990.44921875,10.844783,10844.783 +37267,2025-03-11T17:03:26.828114-07:00,990.4215087890625,10.842907,10842.907 +37268,2025-03-11T17:03:37.681866-07:00,990.451416015625,10.853752,10853.752 +37269,2025-03-11T17:03:48.520180-07:00,990.451416015625,10.838314,10838.314 +37270,2025-03-11T17:03:59.367515-07:00,990.4315795898438,10.847335,10847.335 +37271,2025-03-11T17:04:10.206107-07:00,990.4237670898438,10.838592,10838.592 +37272,2025-03-11T17:04:21.049859-07:00,990.4073486328125,10.843752,10843.752 +37273,2025-03-11T17:04:31.893418-07:00,990.3786010742188,10.843559,10843.559 +37274,2025-03-11T17:04:42.740865-07:00,990.3795166015625,10.847447,10847.447 +37275,2025-03-11T17:04:53.589258-07:00,990.447998046875,10.848393,10848.393 +37276,2025-03-11T17:05:04.432816-07:00,990.4006958007812,10.843558,10843.558 +37277,2025-03-11T17:05:15.288850-07:00,990.442626953125,10.856034,10856.034 +37278,2025-03-11T17:05:26.125118-07:00,990.4227905273438,10.836268,10836.268 +37279,2025-03-11T17:05:36.980889-07:00,990.4559326171875,10.855771,10855.771 +37280,2025-03-11T17:05:47.822867-07:00,990.43603515625,10.841978,10841.978 +37281,2025-03-11T17:05:58.669195-07:00,990.4823608398438,10.846328,10846.328 +37282,2025-03-11T17:06:09.520439-07:00,990.4921875,10.851244,10851.244 +37283,2025-03-11T17:06:20.363616-07:00,990.4537353515625,10.843177,10843.177 +37284,2025-03-11T17:06:31.213243-07:00,990.4325561523438,10.849627,10849.627 +37285,2025-03-11T17:06:42.056137-07:00,990.41845703125,10.842894,10842.894 +37286,2025-03-11T17:06:52.911861-07:00,990.44580078125,10.855724,10855.724 +37287,2025-03-11T17:07:03.756864-07:00,990.4590454101562,10.845003,10845.003 +37288,2025-03-11T17:07:14.595689-07:00,990.4559326171875,10.838825,10838.825 +37289,2025-03-11T17:07:25.445693-07:00,990.42822265625,10.850004,10850.004 +37290,2025-03-11T17:07:36.286689-07:00,990.4578247070312,10.840996,10840.996 +37291,2025-03-11T17:07:47.126692-07:00,990.4237670898438,10.840003,10840.003 +37292,2025-03-11T17:07:57.970039-07:00,990.4105224609375,10.843347,10843.347 +37293,2025-03-11T17:08:08.822696-07:00,990.4512329101562,10.852657,10852.657 +37294,2025-03-11T17:08:19.664478-07:00,990.4326782226562,10.841782,10841.782 +37295,2025-03-11T17:08:30.512034-07:00,990.4269409179688,10.847556,10847.556 +37296,2025-03-11T17:08:41.349895-07:00,990.4525146484375,10.837861,10837.861 +37297,2025-03-11T17:08:52.198688-07:00,990.4525146484375,10.848793,10848.793 +37298,2025-03-11T17:09:03.042688-07:00,990.426025390625,10.844,10844.0 +37299,2025-03-11T17:09:13.892445-07:00,990.422607421875,10.849757,10849.757 +37300,2025-03-11T17:09:24.740700-07:00,990.4159545898438,10.848255,10848.255 +37301,2025-03-11T17:09:35.582679-07:00,990.4503173828125,10.841979,10841.979 +37302,2025-03-11T17:09:46.427022-07:00,990.4437255859375,10.844343,10844.343 +37303,2025-03-11T17:09:57.281978-07:00,990.4181518554688,10.854956,10854.956 +37304,2025-03-11T17:10:08.128691-07:00,990.4247436523438,10.846713,10846.713 +37305,2025-03-11T17:10:18.972956-07:00,990.4392700195312,10.844265,10844.265 +37306,2025-03-11T17:10:29.811384-07:00,990.423828125,10.838428,10838.428 +37307,2025-03-11T17:10:40.661229-07:00,990.4049072265625,10.849845,10849.845 +37308,2025-03-11T17:10:51.507681-07:00,990.431396484375,10.846452,10846.452 +37309,2025-03-11T17:11:02.349935-07:00,990.42041015625,10.842254,10842.254 +37310,2025-03-11T17:11:13.198690-07:00,990.371826171875,10.848755,10848.755 +37311,2025-03-11T17:11:24.039081-07:00,990.4282836914062,10.840391,10840.391 +37312,2025-03-11T17:11:34.886004-07:00,990.4459228515625,10.846923,10846.923 +37313,2025-03-11T17:11:45.734431-07:00,990.4468994140625,10.848427,10848.427 +37314,2025-03-11T17:11:56.570021-07:00,990.473388671875,10.83559,10835.59 +37315,2025-03-11T17:12:07.421930-07:00,990.4556884765625,10.851909,10851.909 +37316,2025-03-11T17:12:18.265695-07:00,990.4490356445312,10.843765,10843.765 +37317,2025-03-11T17:12:29.102725-07:00,990.42919921875,10.83703,10837.03 +37318,2025-03-11T17:12:39.955971-07:00,990.4503173828125,10.853246,10853.246 +37319,2025-03-11T17:12:50.797912-07:00,990.4447021484375,10.841941,10841.941 +37320,2025-03-11T17:13:01.640960-07:00,990.4248657226562,10.843048,10843.048 +37321,2025-03-11T17:13:12.495372-07:00,990.418212890625,10.854412,10854.412 +37322,2025-03-11T17:13:23.333816-07:00,990.418212890625,10.838444,10838.444 +37323,2025-03-11T17:13:34.176595-07:00,990.412841796875,10.842779,10842.779 +37324,2025-03-11T17:13:45.025788-07:00,990.40625,10.849193,10849.193 +37325,2025-03-11T17:13:55.880731-07:00,990.4601440429688,10.854943,10854.943 +37326,2025-03-11T17:14:06.724690-07:00,990.4336547851562,10.843959,10843.959 +37327,2025-03-11T17:14:17.574840-07:00,990.4226684570312,10.85015,10850.15 +37328,2025-03-11T17:14:28.415724-07:00,990.408447265625,10.840884,10840.884 +37329,2025-03-11T17:14:39.264035-07:00,990.455810546875,10.848311,10848.311 +37330,2025-03-11T17:14:50.113176-07:00,990.46142578125,10.849141,10849.141 +37331,2025-03-11T17:15:00.967562-07:00,990.4358520507812,10.854386,10854.386 +37332,2025-03-11T17:15:11.817987-07:00,990.4071655273438,10.850425,10850.425 +37333,2025-03-11T17:15:22.654691-07:00,990.4425048828125,10.836704,10836.704 +37334,2025-03-11T17:15:33.506683-07:00,990.4358520507812,10.851992,10851.992 +37335,2025-03-11T17:15:44.351698-07:00,990.4425048828125,10.845015,10845.015 +37336,2025-03-11T17:15:55.188461-07:00,990.477783203125,10.836763,10836.763 +37337,2025-03-11T17:16:06.039097-07:00,990.47021484375,10.850636,10850.636 +37338,2025-03-11T17:16:16.874939-07:00,990.5109252929688,10.835842,10835.842 +37339,2025-03-11T17:16:27.728684-07:00,990.5033569335938,10.853745,10853.745 +37340,2025-03-11T17:16:38.570997-07:00,990.4437255859375,10.842313,10842.313 +37341,2025-03-11T17:16:49.421974-07:00,990.468994140625,10.850977,10850.977 +37342,2025-03-11T17:17:00.270022-07:00,990.4812622070312,10.848048,10848.048 +37343,2025-03-11T17:17:11.107686-07:00,990.5021362304688,10.837664,10837.664 +37344,2025-03-11T17:17:21.959658-07:00,990.4601440429688,10.851972,10851.972 +37345,2025-03-11T17:17:32.804969-07:00,990.519775390625,10.845311,10845.311 +37346,2025-03-11T17:17:43.653879-07:00,990.4998168945312,10.84891,10848.91 +37347,2025-03-11T17:17:54.496691-07:00,990.4967041015625,10.842812,10842.812 +37348,2025-03-11T17:18:05.339957-07:00,990.4857177734375,10.843266,10843.266 +37349,2025-03-11T17:18:16.183726-07:00,990.484375,10.843769,10843.769 +37350,2025-03-11T17:18:27.039845-07:00,990.4989013671875,10.856119,10856.119 +37351,2025-03-11T17:18:37.889688-07:00,990.4380493164062,10.849843,10849.843 +37352,2025-03-11T17:18:48.729685-07:00,990.5055541992188,10.839997,10839.997 +37353,2025-03-11T17:18:59.579750-07:00,990.484375,10.850065,10850.065 +37354,2025-03-11T17:19:10.421967-07:00,990.51220703125,10.842217,10842.217 +37355,2025-03-11T17:19:21.276309-07:00,990.51220703125,10.854342,10854.342 +37356,2025-03-11T17:19:32.125525-07:00,990.55859375,10.849216,10849.216 +37357,2025-03-11T17:19:42.973524-07:00,990.4857177734375,10.847999,10847.999 +37358,2025-03-11T17:19:53.815818-07:00,990.4923706054688,10.842294,10842.294 +37359,2025-03-11T17:20:04.665364-07:00,990.5452880859375,10.849546,10849.546 +37360,2025-03-11T17:20:15.513689-07:00,990.4998168945312,10.848325,10848.325 +37361,2025-03-11T17:20:26.357863-07:00,990.454833984375,10.844174,10844.174 +37362,2025-03-11T17:20:37.206817-07:00,990.4393920898438,10.848954,10848.954 +37363,2025-03-11T17:20:48.049915-07:00,990.5087280273438,10.843098,10843.098 +37364,2025-03-11T17:20:58.897698-07:00,990.4857177734375,10.847783,10847.783 +37365,2025-03-11T17:21:09.743352-07:00,990.4910888671875,10.845654,10845.654 +37366,2025-03-11T17:21:20.587852-07:00,990.514404296875,10.8445,10844.5 +37367,2025-03-11T17:21:31.427214-07:00,990.53076171875,10.839362,10839.362 +37368,2025-03-11T17:21:42.270252-07:00,990.6058349609375,10.843038,10843.038 +37369,2025-03-11T17:21:53.117681-07:00,990.52099609375,10.847429,10847.429 +37370,2025-03-11T17:22:03.965699-07:00,990.5462646484375,10.848018,10848.018 +37371,2025-03-11T17:22:14.806837-07:00,990.5021362304688,10.841138,10841.138 +37372,2025-03-11T17:22:25.652710-07:00,990.528564453125,10.845873,10845.873 +37373,2025-03-11T17:22:36.501851-07:00,990.57275390625,10.849141,10849.141 +37374,2025-03-11T17:22:47.340738-07:00,990.5806274414062,10.838887,10838.887 +37375,2025-03-11T17:22:58.183433-07:00,990.5740356445312,10.842695,10842.695 +37376,2025-03-11T17:23:09.029024-07:00,990.52099609375,10.845591,10845.591 +37377,2025-03-11T17:23:19.869986-07:00,990.560791015625,10.840962,10840.962 +37378,2025-03-11T17:23:30.724085-07:00,990.55517578125,10.854099,10854.099 +37379,2025-03-11T17:23:41.567039-07:00,990.52099609375,10.842954,10842.954 +37380,2025-03-11T17:23:52.416685-07:00,990.5418701171875,10.849646,10849.646 +37381,2025-03-11T17:24:03.249658-07:00,990.5617065429688,10.832973,10832.973 +37382,2025-03-11T17:24:14.106191-07:00,990.528564453125,10.856533,10856.533 +37383,2025-03-11T17:24:24.946765-07:00,990.5474853515625,10.840574,10840.574 +37384,2025-03-11T17:24:35.788815-07:00,990.5352172851562,10.84205,10842.05 +37385,2025-03-11T17:24:46.640950-07:00,990.519775390625,10.852135,10852.135 +37386,2025-03-11T17:24:57.489874-07:00,990.5462646484375,10.848924,10848.924 +37387,2025-03-11T17:25:08.330681-07:00,990.528564453125,10.840807,10840.807 +37388,2025-03-11T17:25:19.177866-07:00,990.5298461914062,10.847185,10847.185 +37389,2025-03-11T17:25:30.027166-07:00,990.5220336914062,10.8493,10849.3 +37390,2025-03-11T17:25:40.879681-07:00,990.5298461914062,10.852515,10852.515 +37391,2025-03-11T17:25:51.729032-07:00,990.5153198242188,10.849351,10849.351 +37392,2025-03-11T17:26:02.585024-07:00,990.5298461914062,10.855992,10855.992 +37393,2025-03-11T17:26:13.427252-07:00,990.5507202148438,10.842228,10842.228 +37394,2025-03-11T17:26:24.279666-07:00,990.5970458984375,10.852414,10852.414 +37395,2025-03-11T17:26:35.134148-07:00,990.4304809570312,10.854482,10854.482 +37396,2025-03-11T17:26:45.978687-07:00,990.478759765625,10.844539,10844.539 +37397,2025-03-11T17:26:56.829925-07:00,990.5364990234375,10.851238,10851.238 +37398,2025-03-11T17:27:07.680680-07:00,990.5232543945312,10.850755,10850.755 +37399,2025-03-11T17:27:18.526690-07:00,990.5639038085938,10.84601,10846.01 +37400,2025-03-11T17:27:29.384669-07:00,990.5847778320312,10.857979,10857.979 +37401,2025-03-11T17:27:40.227951-07:00,990.557373046875,10.843282,10843.282 +37402,2025-03-11T17:27:51.086954-07:00,990.571533203125,10.859003,10859.003 +37403,2025-03-11T17:28:01.928866-07:00,990.4986572265625,10.841912,10841.912 +37404,2025-03-11T17:28:12.787899-07:00,990.5131225585938,10.859033,10859.033 +37405,2025-03-11T17:28:23.641950-07:00,990.466796875,10.854051,10854.051 +37406,2025-03-11T17:28:34.490036-07:00,990.4942016601562,10.848086,10848.086 +37407,2025-03-11T17:28:45.343117-07:00,990.5604858398438,10.853081,10853.081 +37408,2025-03-11T17:28:56.195268-07:00,990.4866943359375,10.852151,10852.151 +37409,2025-03-11T17:29:07.049010-07:00,990.55517578125,10.853742,10853.742 +37410,2025-03-11T17:29:17.907022-07:00,990.5684204101562,10.858012,10858.012 +37411,2025-03-11T17:29:28.751913-07:00,990.5427856445312,10.844891,10844.891 +37412,2025-03-11T17:29:39.607220-07:00,990.6102905273438,10.855307,10855.307 +37413,2025-03-11T17:29:50.460289-07:00,990.571533203125,10.853069,10853.069 +37414,2025-03-11T17:30:01.301950-07:00,990.557373046875,10.841661,10841.661 +37415,2025-03-11T17:30:12.158875-07:00,990.5296020507812,10.856925,10856.925 +37416,2025-03-11T17:30:23.006989-07:00,990.5353393554688,10.848114,10848.114 +37417,2025-03-11T17:30:33.868057-07:00,990.5308837890625,10.861068,10861.068 +37418,2025-03-11T17:30:44.720687-07:00,990.5308837890625,10.85263,10852.63 +37419,2025-03-11T17:30:55.574935-07:00,990.56494140625,10.854248,10854.248 +37420,2025-03-11T17:31:06.434935-07:00,990.5427856445312,10.86,10860.0 +37421,2025-03-11T17:31:17.284008-07:00,990.56396484375,10.849073,10849.073 +37422,2025-03-11T17:31:28.128914-07:00,990.5494384765625,10.844906,10844.906 +37423,2025-03-11T17:31:38.986691-07:00,990.4690551757812,10.857777,10857.777 +37424,2025-03-11T17:31:49.838283-07:00,990.5164184570312,10.851592,10851.592 +37425,2025-03-11T17:32:00.687018-07:00,990.5772094726562,10.848735,10848.735 +37426,2025-03-11T17:32:11.535004-07:00,990.5440673828125,10.847986,10847.986 +37427,2025-03-11T17:32:22.378319-07:00,990.52294921875,10.843315,10843.315 +37428,2025-03-11T17:32:33.231324-07:00,990.52294921875,10.853005,10853.005 +37429,2025-03-11T17:32:44.072934-07:00,990.5362548828125,10.84161,10841.61 +37430,2025-03-11T17:32:54.919814-07:00,990.5494384765625,10.84688,10846.88 +37431,2025-03-11T17:33:05.772947-07:00,990.603759765625,10.853133,10853.133 +37432,2025-03-11T17:33:16.618693-07:00,990.5353393554688,10.845746,10845.746 +37433,2025-03-11T17:33:27.470690-07:00,990.5882568359375,10.851997,10851.997 +37434,2025-03-11T17:33:38.323961-07:00,990.5097045898438,10.853271,10853.271 +37435,2025-03-11T17:33:49.168988-07:00,990.5485229492188,10.845027,10845.027 +37436,2025-03-11T17:34:00.020245-07:00,990.5684204101562,10.851257,10851.257 +37437,2025-03-11T17:34:10.877944-07:00,990.5418701171875,10.857699,10857.699 +37438,2025-03-11T17:34:21.725010-07:00,990.5816650390625,10.847066,10847.066 +37439,2025-03-11T17:34:32.573790-07:00,990.52734375,10.84878,10848.78 +37440,2025-03-11T17:34:43.435154-07:00,990.5339965820312,10.861364,10861.364 +37441,2025-03-11T17:34:54.289022-07:00,990.5538940429688,10.853868,10853.868 +37442,2025-03-11T17:35:05.139894-07:00,990.5859985351562,10.850872,10850.872 +37443,2025-03-11T17:35:15.984683-07:00,990.5339965820312,10.844789,10844.789 +37444,2025-03-11T17:35:26.839873-07:00,990.579345703125,10.85519,10855.19 +37445,2025-03-11T17:35:37.689686-07:00,990.5870361328125,10.849813,10849.813 +37446,2025-03-11T17:35:48.531850-07:00,990.5396728515625,10.842164,10842.164 +37447,2025-03-11T17:35:59.385777-07:00,990.5462646484375,10.853927,10853.927 +37448,2025-03-11T17:36:10.230965-07:00,990.626708984375,10.845188,10845.188 +37449,2025-03-11T17:36:21.078502-07:00,990.5595092773438,10.847537,10847.537 +37450,2025-03-11T17:36:31.925847-07:00,990.5979614257812,10.847345,10847.345 +37451,2025-03-11T17:36:42.769698-07:00,990.5926513671875,10.843851,10843.851 +37452,2025-03-11T17:36:53.624683-07:00,990.5935668945312,10.854985,10854.985 +37453,2025-03-11T17:37:04.466693-07:00,990.5870361328125,10.84201,10842.01 +37454,2025-03-11T17:37:15.317686-07:00,990.5816650390625,10.850993,10850.993 +37455,2025-03-11T17:37:26.166691-07:00,990.5693969726562,10.849005,10849.005 +37456,2025-03-11T17:37:37.015694-07:00,990.6369018554688,10.849003,10849.003 +37457,2025-03-11T17:37:47.874933-07:00,990.622314453125,10.859239,10859.239 +37458,2025-03-11T17:37:58.730738-07:00,990.622314453125,10.855805,10855.805 +37459,2025-03-11T17:38:09.573059-07:00,990.6311645507812,10.842321,10842.321 +37460,2025-03-11T17:38:20.434725-07:00,990.6434326171875,10.861666,10861.666 +37461,2025-03-11T17:38:31.290902-07:00,990.6324462890625,10.856177,10856.177 +37462,2025-03-11T17:38:42.141976-07:00,990.56494140625,10.851074,10851.074 +37463,2025-03-11T17:38:52.995944-07:00,990.6400146484375,10.853968,10853.968 +37464,2025-03-11T17:39:03.840260-07:00,990.5728149414062,10.844316,10844.316 +37465,2025-03-11T17:39:14.699244-07:00,990.6201782226562,10.858984,10858.984 +37466,2025-03-11T17:39:25.541730-07:00,990.6456909179688,10.842486,10842.486 +37467,2025-03-11T17:39:36.396724-07:00,990.626708984375,10.854994,10854.994 +37468,2025-03-11T17:39:47.246684-07:00,990.622314453125,10.84996,10849.96 +37469,2025-03-11T17:39:58.100903-07:00,990.611328125,10.854219,10854.219 +37470,2025-03-11T17:40:08.960821-07:00,990.6325073242188,10.859918,10859.918 +37471,2025-03-11T17:40:19.805820-07:00,990.6325073242188,10.844999,10844.999 +37472,2025-03-11T17:40:30.657791-07:00,990.6930541992188,10.851971,10851.971 +37473,2025-03-11T17:40:41.501784-07:00,990.6621704101562,10.843993,10843.993 +37474,2025-03-11T17:40:52.356008-07:00,990.6687622070312,10.854224,10854.224 +37475,2025-03-11T17:41:03.210819-07:00,990.6554565429688,10.854811,10854.811 +37476,2025-03-11T17:41:14.070690-07:00,990.6347045898438,10.859871,10859.871 +37477,2025-03-11T17:41:24.915022-07:00,990.6709594726562,10.844332,10844.332 +37478,2025-03-11T17:41:35.773677-07:00,990.665283203125,10.858655,10858.655 +37479,2025-03-11T17:41:46.629180-07:00,990.6498413085938,10.855503,10855.503 +37480,2025-03-11T17:41:57.483842-07:00,990.65869140625,10.854662,10854.662 +37481,2025-03-11T17:42:08.340692-07:00,990.6201782226562,10.85685,10856.85 +37482,2025-03-11T17:42:19.191693-07:00,990.6091918945312,10.851001,10851.001 +37483,2025-03-11T17:42:30.047295-07:00,990.6079711914062,10.855602,10855.602 +37484,2025-03-11T17:42:40.906689-07:00,990.6290893554688,10.859394,10859.394 +37485,2025-03-11T17:42:51.766692-07:00,990.655517578125,10.860003,10860.003 +37486,2025-03-11T17:43:02.617408-07:00,990.651123046875,10.850716,10850.716 +37487,2025-03-11T17:43:13.474068-07:00,990.6256103515625,10.85666,10856.66 +37488,2025-03-11T17:43:24.328834-07:00,990.6378784179688,10.854766,10854.766 +37489,2025-03-11T17:43:35.181668-07:00,990.6732788085938,10.852834,10852.834 +37490,2025-03-11T17:43:46.039931-07:00,990.6290893554688,10.858263,10858.263 +37491,2025-03-11T17:43:56.899688-07:00,990.643310546875,10.859757,10859.757 +37492,2025-03-11T17:44:07.752961-07:00,990.6026000976562,10.853273,10853.273 +37493,2025-03-11T17:44:18.602868-07:00,990.6454467773438,10.849907,10849.907 +37494,2025-03-11T17:44:29.468777-07:00,990.6113891601562,10.865909,10865.909 +37495,2025-03-11T17:44:40.320976-07:00,990.604736328125,10.852199,10852.199 +37496,2025-03-11T17:44:51.172690-07:00,990.646728515625,10.851714,10851.714 +37497,2025-03-11T17:45:02.019738-07:00,990.6533813476562,10.847048,10847.048 +37498,2025-03-11T17:45:12.874832-07:00,990.6906127929688,10.855094,10855.094 +37499,2025-03-11T17:45:23.728685-07:00,990.737060546875,10.853853,10853.853 +37500,2025-03-11T17:45:34.570909-07:00,990.697265625,10.842224,10842.224 +37501,2025-03-11T17:45:45.428020-07:00,990.7061157226562,10.857111,10857.111 +37502,2025-03-11T17:45:56.275007-07:00,990.6543579101562,10.846987,10846.987 +37503,2025-03-11T17:46:07.124053-07:00,990.6698608398438,10.849046,10849.046 +37504,2025-03-11T17:46:17.989694-07:00,990.6509399414062,10.865641,10865.641 +37505,2025-03-11T17:46:28.834991-07:00,990.6785888671875,10.845297,10845.297 +37506,2025-03-11T17:46:39.688768-07:00,990.6587524414062,10.853777,10853.777 +37507,2025-03-11T17:46:50.552790-07:00,990.6906127929688,10.864022,10864.022 +37508,2025-03-11T17:47:01.419008-07:00,990.7061157226562,10.866218,10866.218 +37509,2025-03-11T17:47:12.273689-07:00,990.6808471679688,10.854681,10854.681 +37510,2025-03-11T17:47:23.125676-07:00,990.6676635742188,10.851987,10851.987 +37511,2025-03-11T17:47:33.984151-07:00,990.689697265625,10.858475,10858.475 +37512,2025-03-11T17:47:44.837691-07:00,990.6773681640625,10.85354,10853.54 +37513,2025-03-11T17:47:55.696688-07:00,990.6455688476562,10.858997,10858.997 +37514,2025-03-11T17:48:06.557989-07:00,990.6654052734375,10.861301,10861.301 +37515,2025-03-11T17:48:17.405767-07:00,990.6654052734375,10.847778,10847.778 +37516,2025-03-11T17:48:28.265778-07:00,990.6663818359375,10.860011,10860.011 +37517,2025-03-11T17:48:39.131633-07:00,990.6941528320312,10.865855,10865.855 +37518,2025-03-11T17:48:49.976898-07:00,990.6565551757812,10.845265,10845.265 +37519,2025-03-11T17:49:00.840980-07:00,990.643310546875,10.864082,10864.082 +37520,2025-03-11T17:49:11.697297-07:00,990.6963500976562,10.856317,10856.317 +37521,2025-03-11T17:49:22.551971-07:00,990.6587524414062,10.854674,10854.674 +37522,2025-03-11T17:49:33.407946-07:00,990.6534423828125,10.855975,10855.975 +37523,2025-03-11T17:49:44.271218-07:00,990.6688842773438,10.863272,10863.272 +37524,2025-03-11T17:49:55.124692-07:00,990.643310546875,10.853474,10853.474 +37525,2025-03-11T17:50:05.979835-07:00,990.685302734375,10.855143,10855.143 +37526,2025-03-11T17:50:16.833746-07:00,990.6986083984375,10.853911,10853.911 +37527,2025-03-11T17:50:27.685932-07:00,990.7008056640625,10.852186,10852.186 +37528,2025-03-11T17:50:38.540946-07:00,990.740478515625,10.855014,10855.014 +37529,2025-03-11T17:50:49.397691-07:00,990.7020263671875,10.856745,10856.745 +37530,2025-03-11T17:51:00.241004-07:00,990.7162475585938,10.843313,10843.313 +37531,2025-03-11T17:51:11.101691-07:00,990.731689453125,10.860687,10860.687 +37532,2025-03-11T17:51:21.944939-07:00,990.7184448242188,10.843248,10843.248 +37533,2025-03-11T17:51:32.803235-07:00,990.7086181640625,10.858296,10858.296 +37534,2025-03-11T17:51:43.657448-07:00,990.7351684570312,10.854213,10854.213 +37535,2025-03-11T17:51:54.519694-07:00,990.7503051757812,10.862246,10862.246 +37536,2025-03-11T17:52:05.374668-07:00,990.73828125,10.854974,10854.974 +37537,2025-03-11T17:52:16.232692-07:00,990.7260131835938,10.858024,10858.024 +37538,2025-03-11T17:52:27.092683-07:00,990.6707763671875,10.859991,10859.991 +37539,2025-03-11T17:52:37.952917-07:00,990.646484375,10.860234,10860.234 +37540,2025-03-11T17:52:48.806881-07:00,990.6676635742188,10.853964,10853.964 +37541,2025-03-11T17:52:59.667666-07:00,990.7073364257812,10.860785,10860.785 +37542,2025-03-11T17:53:10.517681-07:00,990.7083740234375,10.850015,10850.015 +37543,2025-03-11T17:53:21.381298-07:00,990.7515869140625,10.863617,10863.617 +37544,2025-03-11T17:53:32.235881-07:00,990.7537231445312,10.854583,10854.583 +37545,2025-03-11T17:53:43.092411-07:00,990.7745971679688,10.85653,10856.53 +37546,2025-03-11T17:53:53.942688-07:00,990.7559204101562,10.850277,10850.277 +37547,2025-03-11T17:54:04.796963-07:00,990.7701416015625,10.854275,10854.275 +37548,2025-03-11T17:54:15.654684-07:00,990.7648315429688,10.857721,10857.721 +37549,2025-03-11T17:54:26.508742-07:00,990.7723388671875,10.854058,10854.058 +37550,2025-03-11T17:54:37.361685-07:00,990.7591552734375,10.852943,10852.943 +37551,2025-03-11T17:54:48.207742-07:00,990.7391967773438,10.846057,10846.057 +37552,2025-03-11T17:54:59.060916-07:00,990.782470703125,10.853174,10853.174 +37553,2025-03-11T17:55:09.916694-07:00,990.7966918945312,10.855778,10855.778 +37554,2025-03-11T17:55:20.769689-07:00,990.7843627929688,10.852995,10852.995 +37555,2025-03-11T17:55:31.625686-07:00,990.745849609375,10.855997,10855.997 +37556,2025-03-11T17:55:42.478930-07:00,990.8086547851562,10.853244,10853.244 +37557,2025-03-11T17:55:53.332682-07:00,990.829833984375,10.853752,10853.752 +37558,2025-03-11T17:56:04.188686-07:00,990.8219604492188,10.856004,10856.004 +37559,2025-03-11T17:56:15.043686-07:00,990.8518676757812,10.855,10855.0 +37560,2025-03-11T17:56:25.896883-07:00,990.8209228515625,10.853197,10853.197 +37561,2025-03-11T17:56:36.751691-07:00,990.8607788085938,10.854808,10854.808 +37562,2025-03-11T17:56:47.604738-07:00,990.8727416992188,10.853047,10853.047 +37563,2025-03-11T17:56:58.460323-07:00,990.8241577148438,10.855585,10855.585 +37564,2025-03-11T17:57:09.312690-07:00,990.8329467773438,10.852367,10852.367 +37565,2025-03-11T17:57:20.161925-07:00,990.82861328125,10.849235,10849.235 +37566,2025-03-11T17:57:31.025878-07:00,990.876220703125,10.863953,10863.953 +37567,2025-03-11T17:57:41.876939-07:00,990.8828125,10.851061,10851.061 +37568,2025-03-11T17:57:52.743690-07:00,990.89794921875,10.866751,10866.751 +37569,2025-03-11T17:58:03.599244-07:00,990.8572387695312,10.855554,10855.554 +37570,2025-03-11T17:58:14.452689-07:00,990.8803100585938,10.853445,10853.445 +37571,2025-03-11T17:58:25.307934-07:00,990.8859252929688,10.855245,10855.245 +37572,2025-03-11T17:58:36.162834-07:00,990.9156494140625,10.8549,10854.9 +37573,2025-03-11T17:58:47.027414-07:00,990.8670043945312,10.86458,10864.58 +37574,2025-03-11T17:58:57.882830-07:00,990.90234375,10.855416,10855.416 +37575,2025-03-11T17:59:08.748963-07:00,990.924560546875,10.866133,10866.133 +37576,2025-03-11T17:59:19.605104-07:00,990.9522705078125,10.856141,10856.141 +37577,2025-03-11T17:59:30.458020-07:00,990.8936157226562,10.852916,10852.916 +37578,2025-03-11T17:59:41.320017-07:00,990.9201049804688,10.861997,10861.997 +37579,2025-03-11T17:59:52.179557-07:00,990.9332885742188,10.85954,10859.54 +37580,2025-03-11T18:00:03.041722-07:00,990.9201049804688,10.862165,10862.165 +37581,2025-03-11T18:00:13.903705-07:00,990.935546875,10.861983,10861.983 +37582,2025-03-11T18:00:14.732854-07:00,990.9266967773438,0.829149,829.149 +37583,2025-03-11T18:00:24.763740-07:00,990.9090576171875,10.030886,10030.886 +37584,2025-03-11T18:00:35.629224-07:00,990.9201049804688,10.865484,10865.484 +37585,2025-03-11T18:00:46.487017-07:00,990.9235229492188,10.857793,10857.793 +37586,2025-03-11T18:00:57.349837-07:00,990.9589233398438,10.86282,10862.82 +37587,2025-03-11T18:01:08.206689-07:00,990.978759765625,10.856852,10856.852 +37588,2025-03-11T18:01:19.071691-07:00,990.9443969726562,10.865002,10865.002 +37589,2025-03-11T18:01:29.937935-07:00,990.9124755859375,10.866244,10866.244 +37590,2025-03-11T18:01:40.802186-07:00,990.892578125,10.864251,10864.251 +37591,2025-03-11T18:01:51.656849-07:00,990.8934936523438,10.854663,10854.663 +37592,2025-03-11T18:02:02.518988-07:00,990.9177856445312,10.862139,10862.139 +37593,2025-03-11T18:02:13.387663-07:00,990.9190673828125,10.868675,10868.675 +37594,2025-03-11T18:02:24.242683-07:00,990.9421997070312,10.85502,10855.02 +37595,2025-03-11T18:02:35.107664-07:00,990.9686889648438,10.864981,10864.981 +37596,2025-03-11T18:02:45.974189-07:00,990.9642333984375,10.866525,10866.525 +37597,2025-03-11T18:02:56.828732-07:00,991.0128173828125,10.854543,10854.543 +37598,2025-03-11T18:03:07.689284-07:00,990.9774780273438,10.860552,10860.552 +37599,2025-03-11T18:03:18.549274-07:00,990.9806518554688,10.85999,10859.99 +37600,2025-03-11T18:03:29.404008-07:00,990.993896484375,10.854734,10854.734 +37601,2025-03-11T18:03:40.269502-07:00,990.9607543945312,10.865494,10865.494 +37602,2025-03-11T18:03:51.124690-07:00,990.94873046875,10.855188,10855.188 +37603,2025-03-11T18:04:01.988719-07:00,990.9553833007812,10.864029,10864.029 +37604,2025-03-11T18:04:12.851690-07:00,990.9364013671875,10.862971,10862.971 +37605,2025-03-11T18:04:23.708681-07:00,990.9430541992188,10.856991,10856.991 +37606,2025-03-11T18:04:34.566020-07:00,990.9442749023438,10.857339,10857.339 +37607,2025-03-11T18:04:45.430383-07:00,990.9376831054688,10.864363,10864.363 +37608,2025-03-11T18:04:56.284448-07:00,990.9862670898438,10.854065,10854.065 +37609,2025-03-11T18:05:07.140117-07:00,990.9651489257812,10.855669,10855.669 +37610,2025-03-11T18:05:17.989744-07:00,990.9597778320312,10.849627,10849.627 +37611,2025-03-11T18:05:28.850092-07:00,990.9761962890625,10.860348,10860.348 +37612,2025-03-11T18:05:39.705369-07:00,990.923095703125,10.855277,10855.277 +37613,2025-03-11T18:05:50.568831-07:00,990.94970703125,10.863462,10863.462 +37614,2025-03-11T18:06:01.423820-07:00,990.9442749023438,10.854989,10854.989 +37615,2025-03-11T18:06:12.279024-07:00,990.9452514648438,10.855204,10855.204 +37616,2025-03-11T18:06:33.999963-07:00,990.9685668945312,21.720939,21720.939 +37617,2025-03-11T18:06:44.853731-07:00,990.9474487304688,10.853768,10853.768 +37618,2025-03-11T18:06:55.702130-07:00,990.9364013671875,10.848399,10848.399 +37619,2025-03-11T18:07:06.613071-07:00,990.9174194335938,10.910941,10910.941 +37620,2025-03-11T18:07:17.467145-07:00,990.92626953125,10.854074,10854.074 +37621,2025-03-11T18:07:28.322108-07:00,990.951904296875,10.854963,10854.963 +37622,2025-03-11T18:07:39.176139-07:00,990.97265625,10.854031,10854.031 +37623,2025-03-11T18:07:50.029870-07:00,990.9606323242188,10.853731,10853.731 +37624,2025-03-11T18:08:00.898130-07:00,990.97607421875,10.86826,10868.26 +37625,2025-03-11T18:08:11.751890-07:00,990.9893798828125,10.85376,10853.76 +37626,2025-03-11T18:08:22.606889-07:00,991.0048217773438,10.854999,10854.999 +37627,2025-03-11T18:08:33.459028-07:00,990.9717407226562,10.852139,10852.139 +37628,2025-03-11T18:08:44.321548-07:00,990.979248046875,10.86252,10862.52 +37629,2025-03-11T18:08:55.181168-07:00,991.0036010742188,10.85962,10859.62 +37630,2025-03-11T18:09:06.035442-07:00,990.9893798828125,10.854274,10854.274 +37631,2025-03-11T18:09:16.895136-07:00,990.9959106445312,10.859694,10859.694 +37632,2025-03-11T18:09:27.754829-07:00,990.9902954101562,10.859693,10859.693 +37633,2025-03-11T18:09:38.612976-07:00,991.0215454101562,10.858147,10858.147 +37634,2025-03-11T18:09:49.472840-07:00,991.0126342773438,10.859864,10859.864 +37635,2025-03-11T18:10:00.330841-07:00,991.0215454101562,10.858001,10858.001 +37636,2025-03-11T18:10:11.184824-07:00,991.013916015625,10.853983,10853.983 +37637,2025-03-11T18:10:22.038837-07:00,991.010498046875,10.854013,10854.013 +37638,2025-03-11T18:10:32.900051-07:00,991.0502319335938,10.861214,10861.214 +37639,2025-03-11T18:10:43.759061-07:00,991.03125,10.85901,10859.01 +37640,2025-03-11T18:10:54.623180-07:00,991.0878295898438,10.864119,10864.119 +37641,2025-03-11T18:11:05.479018-07:00,991.0466918945312,10.855838,10855.838 +37642,2025-03-11T18:11:16.345906-07:00,991.0015869140625,10.866888,10866.888 +37643,2025-03-11T18:11:27.201362-07:00,991.023681640625,10.855456,10855.456 +37644,2025-03-11T18:11:38.054842-07:00,991.0170288085938,10.85348,10853.48 +37645,2025-03-11T18:11:48.915193-07:00,991.0656127929688,10.860351,10860.351 +37646,2025-03-11T18:11:59.767874-07:00,991.0545043945312,10.852681,10852.681 +37647,2025-03-11T18:12:10.626835-07:00,991.0545043945312,10.858961,10858.961 +37648,2025-03-11T18:12:21.485839-07:00,991.0532836914062,10.859004,10859.004 +37649,2025-03-11T18:12:32.342844-07:00,991.10986328125,10.857005,10857.005 +37650,2025-03-11T18:12:43.204399-07:00,991.084228515625,10.861555,10861.555 +37651,2025-03-11T18:12:54.058840-07:00,991.1461181640625,10.854441,10854.441 +37652,2025-03-11T18:13:04.920867-07:00,991.0996704101562,10.862027,10862.027 +37653,2025-03-11T18:13:15.789202-07:00,991.120849609375,10.868335,10868.335 +37654,2025-03-11T18:13:26.651840-07:00,991.1173706054688,10.862638,10862.638 +37655,2025-03-11T18:13:37.511060-07:00,991.1040649414062,10.85922,10859.22 +37656,2025-03-11T18:13:48.361841-07:00,991.1129760742188,10.850781,10850.781 +37657,2025-03-11T18:13:59.226842-07:00,991.1116943359375,10.865001,10865.001 +37658,2025-03-11T18:14:10.089831-07:00,991.1504516601562,10.862989,10862.989 +37659,2025-03-11T18:14:20.953113-07:00,991.1217041015625,10.863282,10863.282 +37660,2025-03-11T18:14:31.817865-07:00,991.10498046875,10.864752,10864.752 +37661,2025-03-11T18:14:42.671188-07:00,991.110595703125,10.853323,10853.323 +37662,2025-03-11T18:14:53.538524-07:00,991.1328125,10.867336,10867.336 +37663,2025-03-11T18:15:04.393167-07:00,991.1260986328125,10.854643,10854.643 +37664,2025-03-11T18:15:15.260044-07:00,991.10498046875,10.866877,10866.877 +37665,2025-03-11T18:15:26.111215-07:00,991.1204833984375,10.851171,10851.171 +37666,2025-03-11T18:15:36.966949-07:00,991.135009765625,10.855734,10855.734 +37667,2025-03-11T18:15:47.825623-07:00,991.1425170898438,10.858674,10858.674 +37668,2025-03-11T18:15:58.689841-07:00,991.1570434570312,10.864218,10864.218 +37669,2025-03-11T18:16:09.542827-07:00,991.1646728515625,10.852986,10852.986 +37670,2025-03-11T18:16:20.406075-07:00,991.1668701171875,10.863248,10863.248 +37671,2025-03-11T18:16:31.261287-07:00,991.1468505859375,10.855212,10855.212 +37672,2025-03-11T18:16:42.116936-07:00,991.1415405273438,10.855649,10855.649 +37673,2025-03-11T18:16:52.970024-07:00,991.1216430664062,10.853088,10853.088 +37674,2025-03-11T18:17:03.837182-07:00,991.1434326171875,10.867158,10867.158 +37675,2025-03-11T18:17:14.697120-07:00,991.1832885742188,10.859938,10859.938 +37676,2025-03-11T18:17:25.547174-07:00,991.1712646484375,10.850054,10850.054 +37677,2025-03-11T18:17:36.412894-07:00,991.1721801757812,10.86572,10865.72 +37678,2025-03-11T18:17:47.262250-07:00,991.16455078125,10.849356,10849.356 +37679,2025-03-11T18:17:58.121982-07:00,991.1721801757812,10.859732,10859.732 +37680,2025-03-11T18:18:08.975981-07:00,991.200927734375,10.853999,10853.999 +37681,2025-03-11T18:18:19.842925-07:00,991.1676635742188,10.866944,10866.944 +37682,2025-03-11T18:18:30.694834-07:00,991.1566162109375,10.851909,10851.909 +37683,2025-03-11T18:18:41.551840-07:00,991.16455078125,10.857006,10857.006 +37684,2025-03-11T18:18:52.414925-07:00,991.172119140625,10.863085,10863.085 +37685,2025-03-11T18:19:03.272083-07:00,991.17333984375,10.857158,10857.158 +37686,2025-03-11T18:19:14.145557-07:00,991.172119140625,10.873474,10873.474 +37687,2025-03-11T18:19:25.008079-07:00,991.1268920898438,10.862522,10862.522 +37688,2025-03-11T18:19:35.875184-07:00,991.166748046875,10.867105,10867.105 +37689,2025-03-11T18:19:46.733200-07:00,991.1799926757812,10.858016,10858.016 +37690,2025-03-11T18:19:57.590079-07:00,991.1932983398438,10.856879,10856.879 +37691,2025-03-11T18:20:08.448847-07:00,991.147705078125,10.858768,10858.768 +37692,2025-03-11T18:20:19.315639-07:00,991.175537109375,10.866792,10866.792 +37693,2025-03-11T18:20:30.175554-07:00,991.1622924804688,10.859915,10859.915 +37694,2025-03-11T18:20:41.029320-07:00,991.1954956054688,10.853766,10853.766 +37695,2025-03-11T18:20:51.893842-07:00,991.175537109375,10.864522,10864.522 +37696,2025-03-11T18:21:02.760841-07:00,991.18310546875,10.866999,10866.999 +37697,2025-03-11T18:21:13.623835-07:00,991.1698608398438,10.862994,10862.994 +37698,2025-03-11T18:21:24.484839-07:00,991.189697265625,10.861004,10861.004 +37699,2025-03-11T18:21:35.358077-07:00,991.1688842773438,10.873238,10873.238 +37700,2025-03-11T18:21:46.210036-07:00,991.180908203125,10.851959,10851.959 +37701,2025-03-11T18:21:57.080841-07:00,991.147705078125,10.870805,10870.805 +37702,2025-03-11T18:22:07.938431-07:00,991.1556396484375,10.85759,10857.59 +37703,2025-03-11T18:22:18.799200-07:00,991.1654663085938,10.860769,10860.769 +37704,2025-03-11T18:22:29.662465-07:00,991.1521606445312,10.863265,10863.265 +37705,2025-03-11T18:22:40.536167-07:00,991.2175903320312,10.873702,10873.702 +37706,2025-03-11T18:22:51.396863-07:00,991.21630859375,10.860696,10860.696 +37707,2025-03-11T18:23:02.250113-07:00,991.24951171875,10.85325,10853.25 +37708,2025-03-11T18:23:13.114838-07:00,991.2340698242188,10.864725,10864.725 +37709,2025-03-11T18:23:23.980249-07:00,991.2198486328125,10.865411,10865.411 +37710,2025-03-11T18:23:34.837128-07:00,991.2451782226562,10.856879,10856.879 +37711,2025-03-11T18:23:45.701526-07:00,991.2265014648438,10.864398,10864.398 +37712,2025-03-11T18:23:56.556202-07:00,991.2463989257812,10.854676,10854.676 +37713,2025-03-11T18:24:07.422836-07:00,991.2650146484375,10.866634,10866.634 +37714,2025-03-11T18:24:18.282121-07:00,991.2442016601562,10.859285,10859.285 +37715,2025-03-11T18:24:29.137191-07:00,991.2640380859375,10.85507,10855.07 +37716,2025-03-11T18:24:39.999954-07:00,991.228759765625,10.862763,10862.763 +37717,2025-03-11T18:24:50.852410-07:00,991.2442016601562,10.852456,10852.456 +37718,2025-03-11T18:25:01.712069-07:00,991.2562255859375,10.859659,10859.659 +37719,2025-03-11T18:25:12.578449-07:00,991.2352905273438,10.86638,10866.38 +37720,2025-03-11T18:25:23.437943-07:00,991.2410888671875,10.859494,10859.494 +37721,2025-03-11T18:25:34.299475-07:00,991.2476806640625,10.861532,10861.532 +37722,2025-03-11T18:25:45.161163-07:00,991.2012329101562,10.861688,10861.688 +37723,2025-03-11T18:25:56.023839-07:00,991.227783203125,10.862676,10862.676 +37724,2025-03-11T18:26:06.879842-07:00,991.2398681640625,10.856003,10856.003 +37725,2025-03-11T18:26:17.735842-07:00,991.2531127929688,10.856,10856.0 +37726,2025-03-11T18:26:28.596896-07:00,991.2597045898438,10.861054,10861.054 +37727,2025-03-11T18:26:39.458996-07:00,991.267578125,10.8621,10862.1 +37728,2025-03-11T18:26:50.321959-07:00,991.2597045898438,10.862963,10862.963 +37729,2025-03-11T18:27:01.174078-07:00,991.2597045898438,10.852119,10852.119 +37730,2025-03-11T18:27:12.033978-07:00,991.265380859375,10.8599,10859.9 +37731,2025-03-11T18:27:22.891791-07:00,991.2376708984375,10.857813,10857.813 +37732,2025-03-11T18:27:33.747931-07:00,991.2442016601562,10.85614,10856.14 +37733,2025-03-11T18:27:44.610396-07:00,991.270751953125,10.862465,10862.465 +37734,2025-03-11T18:27:55.460078-07:00,991.261962890625,10.849682,10849.682 +37735,2025-03-11T18:28:06.317110-07:00,991.2752075195312,10.857032,10857.032 +37736,2025-03-11T18:28:17.184024-07:00,991.2676391601562,10.866914,10866.914 +37737,2025-03-11T18:28:28.044512-07:00,991.2642211914062,10.860488,10860.488 +37738,2025-03-11T18:28:38.902844-07:00,991.298583984375,10.858332,10858.332 +37739,2025-03-11T18:28:49.749074-07:00,991.256591796875,10.84623,10846.23 +37740,2025-03-11T18:29:00.614647-07:00,991.2698364257812,10.865573,10865.573 +37741,2025-03-11T18:29:11.472839-07:00,991.25439453125,10.858192,10858.192 +37742,2025-03-11T18:29:22.334840-07:00,991.2818603515625,10.862001,10862.001 +37743,2025-03-11T18:29:33.182817-07:00,991.2743530273438,10.847977,10847.977 +37744,2025-03-11T18:29:44.039845-07:00,991.28759765625,10.857028,10857.028 +37745,2025-03-11T18:29:54.895029-07:00,991.2509155273438,10.855184,10855.184 +37746,2025-03-11T18:30:05.751958-07:00,991.2775268554688,10.856929,10856.929 +37747,2025-03-11T18:30:16.610221-07:00,991.2686767578125,10.858263,10858.263 +37748,2025-03-11T18:30:27.464888-07:00,991.29638671875,10.854667,10854.667 +37749,2025-03-11T18:30:38.331172-07:00,991.2601318359375,10.866284,10866.284 +37750,2025-03-11T18:30:49.181635-07:00,991.2698974609375,10.850463,10850.463 +37751,2025-03-11T18:31:00.038156-07:00,991.2753295898438,10.856521,10856.521 +37752,2025-03-11T18:31:10.900020-07:00,991.2620239257812,10.861864,10861.864 +37753,2025-03-11T18:31:21.760842-07:00,991.2323608398438,10.860822,10860.822 +37754,2025-03-11T18:31:32.614093-07:00,991.2601318359375,10.853251,10853.251 +37755,2025-03-11T18:31:43.468842-07:00,991.2335815429688,10.854749,10854.749 +37756,2025-03-11T18:31:54.329834-07:00,991.2446899414062,10.860992,10860.992 +37757,2025-03-11T18:32:05.195897-07:00,991.280029296875,10.866063,10866.063 +37758,2025-03-11T18:32:16.051021-07:00,991.2522583007812,10.855124,10855.124 +37759,2025-03-11T18:32:26.919743-07:00,991.2645263671875,10.868722,10868.722 +37760,2025-03-11T18:32:37.781145-07:00,991.224853515625,10.861402,10861.402 +37761,2025-03-11T18:32:48.643841-07:00,991.2589111328125,10.862696,10862.696 +37762,2025-03-11T18:32:59.502452-07:00,991.243408203125,10.858611,10858.611 +37763,2025-03-11T18:33:10.367015-07:00,991.238037109375,10.864563,10864.563 +37764,2025-03-11T18:33:21.234147-07:00,991.2645263671875,10.867132,10867.132 +37765,2025-03-11T18:33:32.091023-07:00,991.2567138671875,10.856876,10856.876 +37766,2025-03-11T18:33:42.954813-07:00,991.2898559570312,10.86379,10863.79 +37767,2025-03-11T18:33:53.821136-07:00,991.2424926757812,10.866323,10866.323 +37768,2025-03-11T18:34:04.685927-07:00,991.23583984375,10.864791,10864.791 +37769,2025-03-11T18:34:15.546266-07:00,991.275634765625,10.860339,10860.339 +37770,2025-03-11T18:34:26.416835-07:00,991.266845703125,10.870569,10870.569 +37771,2025-03-11T18:34:37.275937-07:00,991.2743530273438,10.859102,10859.102 +37772,2025-03-11T18:34:48.145857-07:00,991.27880859375,10.86992,10869.92 +37773,2025-03-11T18:34:59.002686-07:00,991.272216796875,10.856829,10856.829 +37774,2025-03-11T18:35:09.870841-07:00,991.2579956054688,10.868155,10868.155 +37775,2025-03-11T18:35:20.723928-07:00,991.2501831054688,10.853087,10853.087 +37776,2025-03-11T18:35:31.590988-07:00,991.2301635742188,10.86706,10867.06 +37777,2025-03-11T18:35:42.450018-07:00,991.262451171875,10.85903,10859.03 +37778,2025-03-11T18:35:53.311172-07:00,991.295654296875,10.861154,10861.154 +37779,2025-03-11T18:36:04.180359-07:00,991.266845703125,10.869187,10869.187 +37780,2025-03-11T18:36:15.035977-07:00,991.2545166015625,10.855618,10855.618 +37781,2025-03-11T18:36:25.901240-07:00,991.2744750976562,10.865263,10865.263 +37782,2025-03-11T18:36:36.756843-07:00,991.2789306640625,10.855603,10855.603 +37783,2025-03-11T18:36:47.621978-07:00,991.2789306640625,10.865135,10865.135 +37784,2025-03-11T18:36:58.492147-07:00,991.2921752929688,10.870169,10870.169 +37785,2025-03-11T18:37:09.349805-07:00,991.2977905273438,10.857658,10857.658 +37786,2025-03-11T18:37:20.219054-07:00,991.304443359375,10.869249,10869.249 +37787,2025-03-11T18:37:31.073019-07:00,991.31201171875,10.853965,10853.965 +37788,2025-03-11T18:37:41.935940-07:00,991.304443359375,10.862921,10862.921 +37789,2025-03-11T18:37:52.790083-07:00,991.271240234375,10.854143,10854.143 +37790,2025-03-11T18:38:03.654840-07:00,991.30224609375,10.864757,10864.757 +37791,2025-03-11T18:38:14.511056-07:00,991.2792358398438,10.856216,10856.216 +37792,2025-03-11T18:38:25.369865-07:00,991.3389282226562,10.858809,10858.809 +37793,2025-03-11T18:38:36.231359-07:00,991.3101806640625,10.861494,10861.494 +37794,2025-03-11T18:38:47.089149-07:00,991.3130493164062,10.85779,10857.79 +37795,2025-03-11T18:38:57.945189-07:00,991.3407592773438,10.85604,10856.04 +37796,2025-03-11T18:39:08.798399-07:00,991.3187255859375,10.85321,10853.21 +37797,2025-03-11T18:39:19.660847-07:00,991.3010864257812,10.862448,10862.448 +37798,2025-03-11T18:39:30.518819-07:00,991.306396484375,10.857972,10857.972 +37799,2025-03-11T18:39:41.378890-07:00,991.3099365234375,10.860071,10860.071 +37800,2025-03-11T18:39:52.231397-07:00,991.3231201171875,10.852507,10852.507 +37801,2025-03-11T18:40:03.089231-07:00,991.3076782226562,10.857834,10857.834 +37802,2025-03-11T18:40:13.949582-07:00,991.3465576171875,10.860351,10860.351 +37803,2025-03-11T18:40:24.790837-07:00,991.3408813476562,10.841255,10841.255 +37804,2025-03-11T18:40:35.645820-07:00,991.3663940429688,10.854983,10854.983 +37805,2025-03-11T18:40:46.501840-07:00,991.37841796875,10.85602,10856.02 +37806,2025-03-11T18:40:57.346188-07:00,991.3032836914062,10.844348,10844.348 +37807,2025-03-11T18:41:08.198248-07:00,991.3496704101562,10.85206,10852.06 +37808,2025-03-11T18:41:19.050198-07:00,991.3431396484375,10.85195,10851.95 +37809,2025-03-11T18:41:29.895856-07:00,991.367431640625,10.845658,10845.658 +37810,2025-03-11T18:41:40.750192-07:00,991.3409423828125,10.854336,10854.336 +37811,2025-03-11T18:41:51.604864-07:00,991.3399047851562,10.854672,10854.672 +37812,2025-03-11T18:42:02.459259-07:00,991.3850708007812,10.854395,10854.395 +37813,2025-03-11T18:42:13.315154-07:00,991.3377075195312,10.855895,10855.895 +37814,2025-03-11T18:42:24.160844-07:00,991.4195556640625,10.84569,10845.69 +37815,2025-03-11T18:42:35.010814-07:00,991.40283203125,10.84997,10849.97 +37816,2025-03-11T18:42:45.864020-07:00,991.3951416015625,10.853206,10853.206 +37817,2025-03-11T18:42:56.714309-07:00,991.4151000976562,10.850289,10850.289 +37818,2025-03-11T18:43:07.562298-07:00,991.3873291015625,10.847989,10847.989 +37819,2025-03-11T18:43:18.418080-07:00,991.400634765625,10.855782,10855.782 +37820,2025-03-11T18:43:29.264444-07:00,991.37841796875,10.846364,10846.364 +37821,2025-03-11T18:43:40.115147-07:00,991.3973999023438,10.850703,10850.703 +37822,2025-03-11T18:43:50.969249-07:00,991.376220703125,10.854102,10854.102 +37823,2025-03-11T18:44:01.819518-07:00,991.4093627929688,10.850269,10850.269 +37824,2025-03-11T18:44:12.670389-07:00,991.4483032226562,10.850871,10850.871 +37825,2025-03-11T18:44:23.511083-07:00,991.366455078125,10.840694,10840.694 +37826,2025-03-11T18:44:34.364890-07:00,991.3853759765625,10.853807,10853.807 +37827,2025-03-11T18:44:45.213988-07:00,991.411865234375,10.849098,10849.098 +37828,2025-03-11T18:44:56.071124-07:00,991.36865234375,10.857136,10857.136 +37829,2025-03-11T18:45:06.921831-07:00,991.3743896484375,10.850707,10850.707 +37830,2025-03-11T18:45:06.921831-07:00,991.3743896484375,0.0,0.0 +37831,2025-03-11T18:45:17.769890-07:00,991.3743896484375,10.848059,10848.059 +37832,2025-03-11T18:45:28.614844-07:00,991.3908081054688,10.844954,10844.954 +37833,2025-03-11T18:45:39.475051-07:00,991.3886108398438,10.860207,10860.207 +37834,2025-03-11T18:45:50.322818-07:00,991.3809204101562,10.847767,10847.767 +37835,2025-03-11T18:46:01.173968-07:00,991.3929443359375,10.85115,10851.15 +37836,2025-03-11T18:46:12.031834-07:00,991.3699340820312,10.857866,10857.866 +37837,2025-03-11T18:46:22.877013-07:00,991.3831787109375,10.845179,10845.179 +37838,2025-03-11T18:46:33.728170-07:00,991.3876342773438,10.851157,10851.157 +37839,2025-03-11T18:46:44.572878-07:00,991.398681640625,10.844708,10844.708 +37840,2025-03-11T18:46:55.427875-07:00,991.439697265625,10.854997,10854.997 +37841,2025-03-11T18:47:06.274091-07:00,991.398681640625,10.846216,10846.216 +37842,2025-03-11T18:47:17.131840-07:00,991.39111328125,10.857749,10857.749 +37843,2025-03-11T18:47:27.983839-07:00,991.4428100585938,10.851999,10851.999 +37844,2025-03-11T18:47:38.822842-07:00,991.43408203125,10.839003,10839.003 +37845,2025-03-11T18:48:00.519186-07:00,991.4295043945312,21.696344,21696.344 +37846,2025-03-11T18:48:11.362616-07:00,991.3964233398438,10.84343,10843.43 +37847,2025-03-11T18:48:22.200837-07:00,991.4229736328125,10.838221,10838.221 +37848,2025-03-11T18:48:33.059087-07:00,991.4273681640625,10.85825,10858.25 +37849,2025-03-11T18:48:43.905036-07:00,991.3843994140625,10.845949,10845.949 +37850,2025-03-11T18:48:54.741836-07:00,991.4241943359375,10.8368,10836.8 +37851,2025-03-11T18:49:05.594130-07:00,991.45068359375,10.852294,10852.294 +37852,2025-03-11T18:49:16.437777-07:00,991.4472045898438,10.843647,10843.647 +37853,2025-03-11T18:49:27.282834-07:00,991.4320068359375,10.845057,10845.057 +37854,2025-03-11T18:49:38.130051-07:00,991.4307861328125,10.847217,10847.217 +37855,2025-03-11T18:49:48.976010-07:00,991.443115234375,10.845959,10845.959 +37856,2025-03-11T18:49:59.825844-07:00,991.4484252929688,10.849834,10849.834 +37857,2025-03-11T18:50:10.672197-07:00,991.4276733398438,10.846353,10846.353 +37858,2025-03-11T18:50:21.515616-07:00,991.4254760742188,10.843419,10843.419 +37859,2025-03-11T18:50:32.363846-07:00,991.490478515625,10.84823,10848.23 +37860,2025-03-11T18:50:43.207837-07:00,991.4696044921875,10.843991,10843.991 +37861,2025-03-11T18:50:54.056054-07:00,991.4540405273438,10.848217,10848.217 +37862,2025-03-11T18:51:04.907815-07:00,991.4849853515625,10.851761,10851.761 +37863,2025-03-11T18:51:15.763067-07:00,991.49169921875,10.855252,10855.252 +37864,2025-03-11T18:51:26.608841-07:00,991.4629516601562,10.845774,10845.774 +37865,2025-03-11T18:51:37.462445-07:00,991.508056640625,10.853604,10853.604 +37866,2025-03-11T18:51:48.316916-07:00,991.50048828125,10.854471,10854.471 +37867,2025-03-11T18:51:59.166844-07:00,991.5048217773438,10.849928,10849.928 +37868,2025-03-11T18:52:10.015139-07:00,991.5238037109375,10.848295,10848.295 +37869,2025-03-11T18:52:20.864620-07:00,991.497314453125,10.849481,10849.481 +37870,2025-03-11T18:52:31.711877-07:00,991.5225219726562,10.847257,10847.257 +37871,2025-03-11T18:52:42.564031-07:00,991.4884643554688,10.852154,10852.154 +37872,2025-03-11T18:52:53.408842-07:00,991.5281982421875,10.844811,10844.811 +37873,2025-03-11T18:53:04.260141-07:00,991.5215454101562,10.851299,10851.299 +37874,2025-03-11T18:53:15.098182-07:00,991.5335693359375,10.838041,10838.041 +37875,2025-03-11T18:53:25.946277-07:00,991.5193481445312,10.848095,10848.095 +37876,2025-03-11T18:53:36.799000-07:00,991.5723266601562,10.852723,10852.723 +37877,2025-03-11T18:53:47.652090-07:00,991.5800170898438,10.85309,10853.09 +37878,2025-03-11T18:53:58.491108-07:00,991.5237426757812,10.839018,10839.018 +37879,2025-03-11T18:54:09.342824-07:00,991.5357666015625,10.851716,10851.716 +37880,2025-03-11T18:54:20.191003-07:00,991.5314331054688,10.848179,10848.179 +37881,2025-03-11T18:54:31.039842-07:00,991.543701171875,10.848839,10848.839 +37882,2025-03-11T18:54:41.882098-07:00,991.5225219726562,10.842256,10842.256 +37883,2025-03-11T18:54:52.734832-07:00,991.556884765625,10.852734,10852.734 +37884,2025-03-11T18:55:03.578965-07:00,991.5811767578125,10.844133,10844.133 +37885,2025-03-11T18:55:14.423973-07:00,991.561279296875,10.845008,10845.008 +37886,2025-03-11T18:55:25.269070-07:00,991.5423583984375,10.845097,10845.097 +37887,2025-03-11T18:55:36.123837-07:00,991.5348510742188,10.854767,10854.767 +37888,2025-03-11T18:55:46.968517-07:00,991.5325927734375,10.84468,10844.68 +37889,2025-03-11T18:55:57.813111-07:00,991.5457763671875,10.844594,10844.594 +37890,2025-03-11T18:56:08.667163-07:00,991.55908203125,10.854052,10854.052 +37891,2025-03-11T18:56:19.519162-07:00,991.5313110351562,10.851999,10851.999 +37892,2025-03-11T18:56:30.368612-07:00,991.5379638671875,10.84945,10849.45 +37893,2025-03-11T18:56:41.211066-07:00,991.5114135742188,10.842454,10842.454 +37894,2025-03-11T18:56:52.058963-07:00,991.5634155273438,10.847897,10847.897 +37895,2025-03-11T18:57:02.903066-07:00,991.564453125,10.844103,10844.103 +37896,2025-03-11T18:57:13.757117-07:00,991.5556030273438,10.854051,10854.051 +37897,2025-03-11T18:57:24.605839-07:00,991.575439453125,10.848722,10848.722 +37898,2025-03-11T18:57:35.449882-07:00,991.5689086914062,10.844043,10844.043 +37899,2025-03-11T18:57:46.293530-07:00,991.5887451171875,10.843648,10843.648 +37900,2025-03-11T18:57:57.139945-07:00,991.6351318359375,10.846415,10846.415 +37901,2025-03-11T18:58:07.996878-07:00,991.607666015625,10.856933,10856.933 +37902,2025-03-11T18:58:18.843892-07:00,991.615234375,10.847014,10847.014 +37903,2025-03-11T18:58:29.692949-07:00,991.579833984375,10.849057,10849.057 +37904,2025-03-11T18:58:40.546141-07:00,991.5943603515625,10.853192,10853.192 +37905,2025-03-11T18:58:51.385836-07:00,991.566650390625,10.839695,10839.695 +37906,2025-03-11T18:59:02.234385-07:00,991.524658203125,10.848549,10848.549 +37907,2025-03-11T18:59:13.076436-07:00,991.5391235351562,10.842051,10842.051 +37908,2025-03-11T18:59:23.925833-07:00,991.5789184570312,10.849397,10849.397 +37909,2025-03-11T18:59:34.773818-07:00,991.5379028320312,10.847985,10847.985 +37910,2025-03-11T18:59:45.623695-07:00,991.5578002929688,10.849877,10849.877 +37911,2025-03-11T18:59:56.469841-07:00,991.571044921875,10.846146,10846.146 +37912,2025-03-11T19:00:07.318852-07:00,991.5896606445312,10.849011,10849.011 +37913,2025-03-11T19:00:18.164085-07:00,991.5687255859375,10.845233,10845.233 +37914,2025-03-11T19:00:29.010195-07:00,991.5896606445312,10.84611,10846.11 +37915,2025-03-11T19:00:39.863153-07:00,991.5687255859375,10.852958,10852.958 +37916,2025-03-11T19:00:50.697810-07:00,991.58740234375,10.834657,10834.657 +37917,2025-03-11T19:01:01.551838-07:00,991.5609130859375,10.854028,10854.028 +37918,2025-03-11T19:01:12.392931-07:00,991.5665893554688,10.841093,10841.093 +37919,2025-03-11T19:01:23.235426-07:00,991.58642578125,10.842495,10842.495 +37920,2025-03-11T19:01:34.082844-07:00,991.5908813476562,10.847418,10847.418 +37921,2025-03-11T19:01:44.936693-07:00,991.584228515625,10.853849,10853.849 +37922,2025-03-11T19:01:55.778285-07:00,991.6094360351562,10.841592,10841.592 +37923,2025-03-11T19:02:06.628835-07:00,991.588623046875,10.85055,10850.55 +37924,2025-03-11T19:02:17.476917-07:00,991.5962524414062,10.848082,10848.082 +37925,2025-03-11T19:02:28.327160-07:00,991.602783203125,10.850243,10850.243 +37926,2025-03-11T19:02:39.170837-07:00,991.5962524414062,10.843677,10843.677 +37927,2025-03-11T19:02:50.025071-07:00,991.62939453125,10.854234,10854.234 +37928,2025-03-11T19:03:00.878952-07:00,991.6138916015625,10.853881,10853.881 +37929,2025-03-11T19:03:11.727157-07:00,991.607177734375,10.848205,10848.205 +37930,2025-03-11T19:03:22.570274-07:00,991.6195068359375,10.843117,10843.117 +37931,2025-03-11T19:03:33.420835-07:00,991.6271362304688,10.850561,10850.561 +37932,2025-03-11T19:03:44.270826-07:00,991.6403198242188,10.849991,10849.991 +37933,2025-03-11T19:03:55.122837-07:00,991.5996704101562,10.852011,10852.011 +37934,2025-03-11T19:04:05.966983-07:00,991.6248168945312,10.844146,10844.146 +37935,2025-03-11T19:04:16.819964-07:00,991.6328125,10.852981,10852.981 +37936,2025-03-11T19:04:27.663414-07:00,991.6526489257812,10.84345,10843.45 +37937,2025-03-11T19:04:38.506309-07:00,991.644775390625,10.842895,10842.895 +37938,2025-03-11T19:04:49.355077-07:00,991.6668701171875,10.848768,10848.768 +37939,2025-03-11T19:05:00.208814-07:00,991.693359375,10.853737,10853.737 +37940,2025-03-11T19:05:11.052836-07:00,991.657958984375,10.844022,10844.022 +37941,2025-03-11T19:05:21.901841-07:00,991.67919921875,10.849005,10849.005 +37942,2025-03-11T19:05:32.753838-07:00,991.6779174804688,10.851997,10851.997 +37943,2025-03-11T19:05:43.597839-07:00,991.6636962890625,10.844001,10844.001 +37944,2025-03-11T19:05:54.452776-07:00,991.648193359375,10.854937,10854.937 +37945,2025-03-11T19:06:05.303792-07:00,991.6359252929688,10.851016,10851.016 +37946,2025-03-11T19:06:16.155857-07:00,991.6425170898438,10.852065,10852.065 +37947,2025-03-11T19:06:27.000350-07:00,991.64697265625,10.844493,10844.493 +37948,2025-03-11T19:06:37.847874-07:00,991.653564453125,10.847524,10847.524 +37949,2025-03-11T19:06:48.701886-07:00,991.7418823242188,10.854012,10854.012 +37950,2025-03-11T19:06:59.553053-07:00,991.699951171875,10.851167,10851.167 +37951,2025-03-11T19:07:10.432661-07:00,991.7144775390625,10.879608,10879.608 +37952,2025-03-11T19:07:21.271249-07:00,991.712158203125,10.838588,10838.588 +37953,2025-03-11T19:07:32.130363-07:00,991.7263793945312,10.859114,10859.114 +37954,2025-03-11T19:07:42.974903-07:00,991.6911010742188,10.84454,10844.54 +37955,2025-03-11T19:07:53.829795-07:00,991.6923217773438,10.854892,10854.892 +37956,2025-03-11T19:08:04.672556-07:00,991.6724853515625,10.842761,10842.761 +37957,2025-03-11T19:08:15.521245-07:00,991.7232666015625,10.848689,10848.689 +37958,2025-03-11T19:08:26.364357-07:00,991.702392578125,10.843112,10843.112 +37959,2025-03-11T19:08:37.211770-07:00,991.6945190429688,10.847413,10847.413 +37960,2025-03-11T19:08:48.049305-07:00,991.7156372070312,10.837535,10837.535 +37961,2025-03-11T19:08:58.901556-07:00,991.7341918945312,10.852251,10852.251 +37962,2025-03-11T19:09:09.753622-07:00,991.70556640625,10.852066,10852.066 +37963,2025-03-11T19:09:20.602389-07:00,991.71875,10.848767,10848.767 +37964,2025-03-11T19:09:31.444251-07:00,991.6790771484375,10.841862,10841.862 +37965,2025-03-11T19:09:42.289567-07:00,991.6591186523438,10.845316,10845.316 +37966,2025-03-11T19:09:53.135424-07:00,991.6525268554688,10.845857,10845.857 +37967,2025-03-11T19:10:03.990854-07:00,991.6361083984375,10.85543,10855.43 +37968,2025-03-11T19:10:14.834595-07:00,991.67578125,10.843741,10843.741 +37969,2025-03-11T19:10:25.683852-07:00,991.6613159179688,10.849257,10849.257 +37970,2025-03-11T19:10:36.531556-07:00,991.6470947265625,10.847704,10847.704 +37971,2025-03-11T19:10:47.374500-07:00,991.6670532226562,10.842944,10842.944 +37972,2025-03-11T19:10:58.224326-07:00,991.6868896484375,10.849826,10849.826 +37973,2025-03-11T19:11:09.071686-07:00,991.6514892578125,10.84736,10847.36 +37974,2025-03-11T19:11:19.915234-07:00,991.7111206054688,10.843548,10843.548 +37975,2025-03-11T19:11:30.769225-07:00,991.6559448242188,10.853991,10853.991 +37976,2025-03-11T19:11:41.612142-07:00,991.6634521484375,10.842917,10842.917 +37977,2025-03-11T19:11:52.455659-07:00,991.674560546875,10.843517,10843.517 +37978,2025-03-11T19:12:03.299245-07:00,991.6956176757812,10.843586,10843.586 +37979,2025-03-11T19:12:14.143498-07:00,991.7022705078125,10.844253,10844.253 +37980,2025-03-11T19:12:24.996250-07:00,991.6691284179688,10.852752,10852.752 +37981,2025-03-11T19:12:35.844374-07:00,991.6404418945312,10.848124,10848.124 +37982,2025-03-11T19:12:46.690715-07:00,991.686767578125,10.846341,10846.341 +37983,2025-03-11T19:12:57.527460-07:00,991.6854858398438,10.836745,10836.745 +37984,2025-03-11T19:13:08.379248-07:00,991.7274780273438,10.851788,10851.788 +37985,2025-03-11T19:13:19.225460-07:00,991.6514282226562,10.846212,10846.212 +37986,2025-03-11T19:13:30.072246-07:00,991.6656494140625,10.846786,10846.786 +37987,2025-03-11T19:13:40.919440-07:00,991.696533203125,10.847194,10847.194 +37988,2025-03-11T19:13:51.763587-07:00,991.6548461914062,10.844147,10844.147 +37989,2025-03-11T19:14:02.606550-07:00,991.6832885742188,10.842963,10842.963 +37990,2025-03-11T19:14:13.465462-07:00,991.65576171875,10.858912,10858.912 +37991,2025-03-11T19:14:24.311244-07:00,991.7000122070312,10.845782,10845.782 +37992,2025-03-11T19:14:35.154278-07:00,991.698974609375,10.843034,10843.034 +37993,2025-03-11T19:14:46.003248-07:00,991.73876953125,10.84897,10848.97 +37994,2025-03-11T19:14:56.845732-07:00,991.6777954101562,10.842484,10842.484 +37995,2025-03-11T19:15:07.692780-07:00,991.712158203125,10.847048,10847.048 +37996,2025-03-11T19:15:18.538249-07:00,991.7175903320312,10.845469,10845.469 +37997,2025-03-11T19:15:29.381248-07:00,991.7564086914062,10.842999,10842.999 +37998,2025-03-11T19:15:40.226319-07:00,991.749755859375,10.845071,10845.071 +37999,2025-03-11T19:15:51.072253-07:00,991.7298583984375,10.845934,10845.934 +38000,2025-03-11T19:16:01.925255-07:00,991.740966796875,10.853002,10853.002 +38001,2025-03-11T19:16:12.781260-07:00,991.71533203125,10.856005,10856.005 +38002,2025-03-11T19:16:23.631690-07:00,991.7100219726562,10.85043,10850.43 +38003,2025-03-11T19:16:34.478589-07:00,991.7078247070312,10.846899,10846.899 +38004,2025-03-11T19:16:45.333558-07:00,991.7608032226562,10.854969,10854.969 +38005,2025-03-11T19:16:56.183593-07:00,991.7352294921875,10.850035,10850.035 +38006,2025-03-11T19:17:07.042693-07:00,991.767333984375,10.8591,10859.1 +38007,2025-03-11T19:17:17.892838-07:00,991.754150390625,10.850145,10850.145 +38008,2025-03-11T19:17:28.737256-07:00,991.8071899414062,10.844418,10844.418 +38009,2025-03-11T19:17:39.597894-07:00,991.7528076171875,10.860638,10860.638 +38010,2025-03-11T19:17:50.444297-07:00,991.7608032226562,10.846403,10846.403 +38011,2025-03-11T19:18:01.303282-07:00,991.7396240234375,10.858985,10858.985 +38012,2025-03-11T19:18:12.164429-07:00,991.7329711914062,10.861147,10861.147 +38013,2025-03-11T19:18:23.009245-07:00,991.7793579101562,10.844816,10844.816 +38014,2025-03-11T19:18:33.865277-07:00,991.76513671875,10.856032,10856.032 +38015,2025-03-11T19:18:44.721441-07:00,991.7386474609375,10.856164,10856.164 +38016,2025-03-11T19:18:55.569239-07:00,991.7440795898438,10.847798,10847.798 +38017,2025-03-11T19:19:06.416485-07:00,991.7496948242188,10.847246,10847.246 +38018,2025-03-11T19:19:17.262238-07:00,991.728515625,10.845753,10845.753 +38019,2025-03-11T19:19:28.105810-07:00,991.7274780273438,10.843572,10843.572 +38020,2025-03-11T19:19:38.953278-07:00,991.7461547851562,10.847468,10847.468 +38021,2025-03-11T19:19:49.809358-07:00,991.767333984375,10.85608,10856.08 +38022,2025-03-11T19:20:00.656857-07:00,991.771728515625,10.847499,10847.499 +38023,2025-03-11T19:20:11.505989-07:00,991.7628173828125,10.849132,10849.132 +38024,2025-03-11T19:20:22.360250-07:00,991.7704467773438,10.854261,10854.261 +38025,2025-03-11T19:20:33.219780-07:00,991.7770385742188,10.85953,10859.53 +38026,2025-03-11T19:20:44.071246-07:00,991.7485961914062,10.851466,10851.466 +38027,2025-03-11T19:20:54.923480-07:00,991.7562255859375,10.852234,10852.234 +38028,2025-03-11T19:21:05.774251-07:00,991.7420043945312,10.850771,10850.771 +38029,2025-03-11T19:21:16.624745-07:00,991.7826538085938,10.850494,10850.494 +38030,2025-03-11T19:21:27.475240-07:00,991.7637329101562,10.850495,10850.495 +38031,2025-03-11T19:21:38.318502-07:00,991.7429809570312,10.843262,10843.262 +38032,2025-03-11T19:21:49.173396-07:00,991.7221069335938,10.854894,10854.894 +38033,2025-03-11T19:22:00.020506-07:00,991.7420043945312,10.84711,10847.11 +38034,2025-03-11T19:22:10.876314-07:00,991.7619018554688,10.855808,10855.808 +38035,2025-03-11T19:22:21.726240-07:00,991.7728271484375,10.849926,10849.926 +38036,2025-03-11T19:22:32.573550-07:00,991.7959594726562,10.84731,10847.31 +38037,2025-03-11T19:22:43.424173-07:00,991.7352905273438,10.850623,10850.623 +38038,2025-03-11T19:22:54.271953-07:00,991.747314453125,10.84778,10847.78 +38039,2025-03-11T19:23:05.125606-07:00,991.8025512695312,10.853653,10853.653 +38040,2025-03-11T19:23:15.974616-07:00,991.7684326171875,10.84901,10849.01 +38041,2025-03-11T19:23:26.834326-07:00,991.7164306640625,10.85971,10859.71 +38042,2025-03-11T19:23:37.685581-07:00,991.7552490234375,10.851255,10851.255 +38043,2025-03-11T19:23:48.533684-07:00,991.775146484375,10.848103,10848.103 +38044,2025-03-11T19:23:59.387466-07:00,991.8082275390625,10.853782,10853.782 +38045,2025-03-11T19:24:10.240657-07:00,991.7949829101562,10.853191,10853.191 +38046,2025-03-11T19:24:21.091249-07:00,991.775146484375,10.850592,10850.592 +38047,2025-03-11T19:24:31.938304-07:00,991.7619018554688,10.847055,10847.055 +38048,2025-03-11T19:24:42.798782-07:00,991.7949829101562,10.860478,10860.478 +38049,2025-03-11T19:24:53.643307-07:00,991.8201293945312,10.844525,10844.525 +38050,2025-03-11T19:25:04.491531-07:00,991.7728271484375,10.848224,10848.224 +38051,2025-03-11T19:25:15.347532-07:00,991.7993774414062,10.856001,10856.001 +38052,2025-03-11T19:25:26.192558-07:00,991.8046875,10.845026,10845.026 +38053,2025-03-11T19:25:37.038298-07:00,991.7684326171875,10.84574,10845.74 +38054,2025-03-11T19:25:47.901499-07:00,991.8037719726562,10.863201,10863.201 +38055,2025-03-11T19:25:58.758234-07:00,991.801513671875,10.856735,10856.735 +38056,2025-03-11T19:26:09.602251-07:00,991.7693481445312,10.844017,10844.017 +38057,2025-03-11T19:26:20.460654-07:00,991.7826538085938,10.858403,10858.403 +38058,2025-03-11T19:26:31.301227-07:00,991.7759399414062,10.840573,10840.573 +38059,2025-03-11T19:26:42.156453-07:00,991.76171875,10.855226,10855.226 +38060,2025-03-11T19:26:53.003532-07:00,991.7948608398438,10.847079,10847.079 +38061,2025-03-11T19:27:03.856250-07:00,991.7870483398438,10.852718,10852.718 +38062,2025-03-11T19:27:14.713245-07:00,991.806884765625,10.856995,10856.995 +38063,2025-03-11T19:27:25.574240-07:00,991.7860107421875,10.860995,10860.995 +38064,2025-03-11T19:27:36.418351-07:00,991.76708984375,10.844111,10844.111 +38065,2025-03-11T19:27:47.273382-07:00,991.8125,10.855031,10855.031 +38066,2025-03-11T19:27:58.123482-07:00,991.7979736328125,10.8501,10850.1 +38067,2025-03-11T19:28:08.967251-07:00,991.7991943359375,10.843769,10843.769 +38068,2025-03-11T19:28:19.824634-07:00,991.7913818359375,10.857383,10857.383 +38069,2025-03-11T19:28:30.680361-07:00,991.7913818359375,10.855727,10855.727 +38070,2025-03-11T19:28:41.523649-07:00,991.811279296875,10.843288,10843.288 +38071,2025-03-11T19:28:52.382616-07:00,991.8023681640625,10.858967,10858.967 +38072,2025-03-11T19:29:03.228467-07:00,991.8089599609375,10.845851,10845.851 +38073,2025-03-11T19:29:14.083847-07:00,991.7891235351562,10.85538,10855.38 +38074,2025-03-11T19:29:24.941550-07:00,991.7891235351562,10.857703,10857.703 +38075,2025-03-11T19:29:35.784294-07:00,991.8067016601562,10.842744,10842.744 +38076,2025-03-11T19:29:46.637244-07:00,991.7947387695312,10.85295,10852.95 +38077,2025-03-11T19:29:57.491240-07:00,991.8079833984375,10.853996,10853.996 +38078,2025-03-11T19:30:08.341249-07:00,991.7726440429688,10.850009,10850.009 +38079,2025-03-11T19:30:19.187532-07:00,991.7726440429688,10.846283,10846.283 +38080,2025-03-11T19:30:30.046501-07:00,991.7935180664062,10.858969,10858.969 +38081,2025-03-11T19:30:40.895799-07:00,991.7593994140625,10.849298,10849.298 +38082,2025-03-11T19:30:51.743255-07:00,991.78466796875,10.847456,10847.456 +38083,2025-03-11T19:31:02.599245-07:00,991.7770385742188,10.85599,10855.99 +38084,2025-03-11T19:31:13.454674-07:00,991.790283203125,10.855429,10855.429 +38085,2025-03-11T19:31:24.305244-07:00,991.8088989257812,10.85057,10850.57 +38086,2025-03-11T19:31:35.150901-07:00,991.7979125976562,10.845657,10845.657 +38087,2025-03-11T19:31:46.016344-07:00,991.7748413085938,10.865443,10865.443 +38088,2025-03-11T19:31:56.870337-07:00,991.752685546875,10.853993,10853.993 +38089,2025-03-11T19:32:07.713795-07:00,991.7757568359375,10.843458,10843.458 +38090,2025-03-11T19:32:18.568523-07:00,991.80029296875,10.854728,10854.728 +38091,2025-03-11T19:32:29.424066-07:00,991.8079833984375,10.855543,10855.543 +38092,2025-03-11T19:32:40.272725-07:00,991.8287353515625,10.848659,10848.659 +38093,2025-03-11T19:32:51.119642-07:00,991.8079833984375,10.846917,10846.917 +38094,2025-03-11T19:33:01.963581-07:00,991.7857666015625,10.843939,10843.939 +38095,2025-03-11T19:33:12.806246-07:00,991.7870483398438,10.842665,10842.665 +38096,2025-03-11T19:33:23.659629-07:00,991.7870483398438,10.853383,10853.383 +38097,2025-03-11T19:33:34.502250-07:00,991.7857666015625,10.842621,10842.621 +38098,2025-03-11T19:33:45.356398-07:00,991.7924194335938,10.854148,10854.148 +38099,2025-03-11T19:33:56.203515-07:00,991.7913818359375,10.847117,10847.117 +38100,2025-03-11T19:34:07.062238-07:00,991.8069458007812,10.858723,10858.723 +38101,2025-03-11T19:34:17.910538-07:00,991.7759399414062,10.8483,10848.3 +38102,2025-03-11T19:34:28.769473-07:00,991.7835693359375,10.858935,10858.935 +38103,2025-03-11T19:34:39.609807-07:00,991.7835693359375,10.840334,10840.334 +38104,2025-03-11T19:34:50.461675-07:00,991.7614135742188,10.851868,10851.868 +38105,2025-03-11T19:35:01.299456-07:00,991.7879638671875,10.837781,10837.781 +38106,2025-03-11T19:35:12.147245-07:00,991.7945556640625,10.847789,10847.789 +38107,2025-03-11T19:35:22.994150-07:00,991.8267211914062,10.846905,10846.905 +38108,2025-03-11T19:35:33.838589-07:00,991.731689453125,10.844439,10844.439 +38109,2025-03-11T19:35:44.685488-07:00,991.7857055664062,10.846899,10846.899 +38110,2025-03-11T19:35:55.540486-07:00,991.7966918945312,10.854998,10854.998 +38111,2025-03-11T19:36:06.386352-07:00,991.8231811523438,10.845866,10845.866 +38112,2025-03-11T19:36:17.239248-07:00,991.8222045898438,10.852896,10852.896 +38113,2025-03-11T19:36:28.096989-07:00,991.786865234375,10.857741,10857.741 +38114,2025-03-11T19:36:38.946473-07:00,991.7537231445312,10.849484,10849.484 +38115,2025-03-11T19:36:49.803227-07:00,991.791259765625,10.856754,10856.754 +38116,2025-03-11T19:37:00.657223-07:00,991.8045043945312,10.853996,10853.996 +38117,2025-03-11T19:37:11.508227-07:00,991.8253173828125,10.851004,10851.004 +38118,2025-03-11T19:37:22.356240-07:00,991.81640625,10.848013,10848.013 +38119,2025-03-11T19:37:33.205740-07:00,991.86279296875,10.8495,10849.5 +38120,2025-03-11T19:37:44.061238-07:00,991.8154907226562,10.855498,10855.498 +38121,2025-03-11T19:37:54.916301-07:00,991.8009643554688,10.855063,10855.063 +38122,2025-03-11T19:38:05.759227-07:00,991.7999877929688,10.842926,10842.926 +38123,2025-03-11T19:38:16.609554-07:00,991.8189086914062,10.850327,10850.327 +38124,2025-03-11T19:38:27.461530-07:00,991.846435546875,10.851976,10851.976 +38125,2025-03-11T19:38:38.312602-07:00,991.7968139648438,10.851072,10851.072 +38126,2025-03-11T19:38:49.170823-07:00,991.8233032226562,10.858221,10858.221 +38127,2025-03-11T19:39:00.014468-07:00,991.8365478515625,10.843645,10843.645 +38128,2025-03-11T19:39:10.866687-07:00,991.82763671875,10.852219,10852.219 +38129,2025-03-11T19:39:21.716533-07:00,991.780029296875,10.849846,10849.846 +38130,2025-03-11T19:39:32.564240-07:00,991.78125,10.847707,10847.707 +38131,2025-03-11T19:39:43.418248-07:00,991.8253784179688,10.854008,10854.008 +38132,2025-03-11T19:39:54.263246-07:00,991.8055419921875,10.844998,10844.998 +38133,2025-03-11T19:40:05.121325-07:00,991.8187255859375,10.858079,10858.079 +38134,2025-03-11T19:40:15.960178-07:00,991.8108520507812,10.838853,10838.853 +38135,2025-03-11T19:40:26.812745-07:00,991.8121948242188,10.852567,10852.567 +38136,2025-03-11T19:40:37.661664-07:00,991.838623046875,10.848919,10848.919 +38137,2025-03-11T19:40:48.506296-07:00,991.8297729492188,10.844632,10844.632 +38138,2025-03-11T19:40:59.350235-07:00,991.8108520507812,10.843939,10843.939 +38139,2025-03-11T19:41:10.194376-07:00,991.8231201171875,10.844141,10844.141 +38140,2025-03-11T19:41:21.044693-07:00,991.8284301757812,10.850317,10850.317 +38141,2025-03-11T19:41:31.895462-07:00,991.8297729492188,10.850769,10850.769 +38142,2025-03-11T19:41:42.741537-07:00,991.8218994140625,10.846075,10846.075 +38143,2025-03-11T19:41:53.582283-07:00,991.8240356445312,10.840746,10840.746 +38144,2025-03-11T19:42:04.430498-07:00,991.8209228515625,10.848215,10848.215 +38145,2025-03-11T19:42:15.275241-07:00,991.8165893554688,10.844743,10844.743 +38146,2025-03-11T19:42:26.125488-07:00,991.861572265625,10.850247,10850.247 +38147,2025-03-11T19:42:36.978843-07:00,991.8341674804688,10.853355,10853.355 +38148,2025-03-11T19:42:47.820537-07:00,991.8318481445312,10.841694,10841.694 +38149,2025-03-11T19:42:58.668601-07:00,991.8209228515625,10.848064,10848.064 +38150,2025-03-11T19:43:09.525310-07:00,991.8527221679688,10.856709,10856.709 +38151,2025-03-11T19:43:20.359310-07:00,991.865966796875,10.834,10834.0 +38152,2025-03-11T19:43:31.210274-07:00,991.8671875,10.850964,10850.964 +38153,2025-03-11T19:43:42.058246-07:00,991.8527221679688,10.847972,10847.972 +38154,2025-03-11T19:43:52.901423-07:00,991.8671875,10.843177,10843.177 +38155,2025-03-11T19:44:03.752249-07:00,991.864990234375,10.850826,10850.826 +38156,2025-03-11T19:44:14.598652-07:00,991.8792114257812,10.846403,10846.403 +38157,2025-03-11T19:44:25.451595-07:00,991.8571166992188,10.852943,10852.943 +38158,2025-03-11T19:44:36.295387-07:00,991.8253173828125,10.843792,10843.792 +38159,2025-03-11T19:44:47.145295-07:00,991.8557739257812,10.849908,10849.908 +38160,2025-03-11T19:44:57.994248-07:00,991.8782958984375,10.848953,10848.953 +38161,2025-03-11T19:45:08.837251-07:00,991.8492431640625,10.843003,10843.003 +38162,2025-03-11T19:45:19.687519-07:00,991.8545532226562,10.850268,10850.268 +38163,2025-03-11T19:45:30.547252-07:00,991.8557739257812,10.859733,10859.733 +38164,2025-03-11T19:45:41.392606-07:00,991.8677978515625,10.845354,10845.354 +38165,2025-03-11T19:45:52.245451-07:00,991.8800048828125,10.852845,10852.845 +38166,2025-03-11T19:46:03.094669-07:00,991.8545532226562,10.849218,10849.218 +38167,2025-03-11T19:46:13.937242-07:00,991.8601684570312,10.842573,10842.573 +38168,2025-03-11T19:46:24.789245-07:00,991.8535766601562,10.852003,10852.003 +38169,2025-03-11T19:46:35.633219-07:00,991.904296875,10.843974,10843.974 +38170,2025-03-11T19:46:46.482038-07:00,991.892333984375,10.848819,10848.819 +38171,2025-03-11T19:46:57.336248-07:00,991.91748046875,10.85421,10854.21 +38172,2025-03-11T19:47:08.179862-07:00,991.8778076171875,10.843614,10843.614 +38173,2025-03-11T19:47:19.031505-07:00,991.9254760742188,10.851643,10851.643 +38174,2025-03-11T19:47:29.873518-07:00,991.893310546875,10.842013,10842.013 +38175,2025-03-11T19:47:40.730548-07:00,991.9109497070312,10.85703,10857.03 +38176,2025-03-11T19:47:51.575462-07:00,991.8635864257812,10.844914,10844.914 +38177,2025-03-11T19:48:02.424507-07:00,991.8755493164062,10.849045,10849.045 +38178,2025-03-11T19:48:13.273390-07:00,991.9032592773438,10.848883,10848.883 +38179,2025-03-11T19:48:24.109530-07:00,991.8865356445312,10.83614,10836.14 +38180,2025-03-11T19:48:34.954382-07:00,991.914306640625,10.844852,10844.852 +38181,2025-03-11T19:48:45.801044-07:00,991.8865356445312,10.846662,10846.662 +38182,2025-03-11T19:48:56.644453-07:00,991.8931274414062,10.843409,10843.409 +38183,2025-03-11T19:49:07.489223-07:00,991.9064331054688,10.84477,10844.77 +38184,2025-03-11T19:49:18.325723-07:00,991.8975219726562,10.8365,10836.5 +38185,2025-03-11T19:49:29.170093-07:00,991.9129638671875,10.84437,10844.37 +38186,2025-03-11T19:49:40.017714-07:00,991.94287109375,10.847621,10847.621 +38187,2025-03-11T19:49:50.867681-07:00,991.889892578125,10.849967,10849.967 +38188,2025-03-11T19:50:01.714227-07:00,991.9495239257812,10.846546,10846.546 +38189,2025-03-11T19:50:12.560251-07:00,991.9163818359375,10.846024,10846.024 +38190,2025-03-11T19:50:23.402367-07:00,991.90185546875,10.842116,10842.116 +38191,2025-03-11T19:50:34.250490-07:00,991.9031372070312,10.848123,10848.123 +38192,2025-03-11T19:50:45.090277-07:00,991.9406127929688,10.839787,10839.787 +38193,2025-03-11T19:50:55.940489-07:00,991.9053344726562,10.850212,10850.212 +38194,2025-03-11T19:51:06.784777-07:00,991.95263671875,10.844288,10844.288 +38195,2025-03-11T19:51:17.628246-07:00,991.958251953125,10.843469,10843.469 +38196,2025-03-11T19:51:28.471579-07:00,991.9781494140625,10.843333,10843.333 +38197,2025-03-11T19:51:39.314283-07:00,991.9900512695312,10.842704,10842.704 +38198,2025-03-11T19:51:50.153722-07:00,992.004638671875,10.839439,10839.439 +38199,2025-03-11T19:52:01.000231-07:00,991.9900512695312,10.846509,10846.509 +38200,2025-03-11T19:52:11.851485-07:00,991.9900512695312,10.851254,10851.254 +38201,2025-03-11T19:52:22.698752-07:00,992.0010986328125,10.847267,10847.267 +38202,2025-03-11T19:52:33.542774-07:00,991.997802734375,10.844022,10844.022 +38203,2025-03-11T19:52:44.384231-07:00,991.9944458007812,10.841457,10841.457 +38204,2025-03-11T19:52:55.229319-07:00,992.0265502929688,10.845088,10845.088 +38205,2025-03-11T19:53:06.081223-07:00,992.0044555664062,10.851904,10851.904 +38206,2025-03-11T19:53:16.926249-07:00,992.0176391601562,10.845026,10845.026 +38207,2025-03-11T19:53:27.765825-07:00,992.0167236328125,10.839576,10839.576 +38208,2025-03-11T19:53:38.620587-07:00,991.9835815429688,10.854762,10854.762 +38209,2025-03-11T19:53:49.466465-07:00,992.0220336914062,10.845878,10845.878 +38210,2025-03-11T19:54:00.310241-07:00,992.0529174804688,10.843776,10843.776 +38211,2025-03-11T19:54:11.157538-07:00,992.0144653320312,10.847297,10847.297 +38212,2025-03-11T19:54:21.995600-07:00,992.0806274414062,10.838062,10838.062 +38213,2025-03-11T19:54:32.845722-07:00,992.107177734375,10.850122,10850.122 +38214,2025-03-11T19:54:43.686429-07:00,992.0717163085938,10.840707,10840.707 +38215,2025-03-11T19:54:54.528249-07:00,992.0462646484375,10.84182,10841.82 +38216,2025-03-11T19:55:05.374581-07:00,992.0661010742188,10.846332,10846.332 +38217,2025-03-11T19:55:16.211605-07:00,992.0320434570312,10.837024,10837.024 +38218,2025-03-11T19:55:27.053287-07:00,992.0982666015625,10.841682,10841.682 +38219,2025-03-11T19:55:37.897235-07:00,992.0496826171875,10.843948,10843.948 +38220,2025-03-11T19:55:48.729385-07:00,992.0770874023438,10.83215,10832.15 +38221,2025-03-11T19:55:59.573750-07:00,992.1101684570312,10.844365,10844.365 +38222,2025-03-11T19:56:10.416190-07:00,992.0628662109375,10.84244,10842.44 +38223,2025-03-11T19:56:21.253249-07:00,992.0748291015625,10.837059,10837.059 +38224,2025-03-11T19:56:32.101451-07:00,992.088134765625,10.848202,10848.202 +38225,2025-03-11T19:56:42.935419-07:00,992.101318359375,10.833968,10833.968 +38226,2025-03-11T19:56:53.776263-07:00,992.1079711914062,10.840844,10840.844 +38227,2025-03-11T19:57:04.620973-07:00,992.0540771484375,10.84471,10844.71 +38228,2025-03-11T19:57:15.464484-07:00,992.0460815429688,10.843511,10843.511 +38229,2025-03-11T19:57:26.305278-07:00,992.09375,10.840794,10840.794 +38230,2025-03-11T19:57:37.153678-07:00,992.100341796875,10.8484,10848.4 +38231,2025-03-11T19:57:48.001471-07:00,992.0946655273438,10.847793,10847.793 +38232,2025-03-11T19:57:58.841244-07:00,992.0857543945312,10.839773,10839.773 +38233,2025-03-11T19:58:09.685822-07:00,992.0615844726562,10.844578,10844.578 +38234,2025-03-11T19:58:20.527550-07:00,992.0946655273438,10.841728,10841.728 +38235,2025-03-11T19:58:31.374702-07:00,992.100341796875,10.847152,10847.152 +38236,2025-03-11T19:58:42.212251-07:00,992.100341796875,10.837549,10837.549 +38237,2025-03-11T19:58:53.048417-07:00,992.114501953125,10.836166,10836.166 +38238,2025-03-11T19:59:03.898384-07:00,992.1079711914062,10.849967,10849.967 +38239,2025-03-11T19:59:14.746223-07:00,992.1079711914062,10.847839,10847.839 +38240,2025-03-11T19:59:25.589250-07:00,992.1212768554688,10.843027,10843.027 +38241,2025-03-11T19:59:36.429488-07:00,992.1070556640625,10.840238,10840.238 +38242,2025-03-11T19:59:47.264522-07:00,992.1202392578125,10.835034,10835.034 +38243,2025-03-11T19:59:58.107281-07:00,992.1079711914062,10.842759,10842.759 +38244,2025-03-11T20:00:08.958397-07:00,992.09375,10.851116,10851.116 +38245,2025-03-11T20:00:19.800094-07:00,992.1224975585938,10.841697,10841.697 +38246,2025-03-11T20:00:30.637447-07:00,992.1212768554688,10.837353,10837.353 +38247,2025-03-11T20:00:41.481322-07:00,992.1400756835938,10.843875,10843.875 +38248,2025-03-11T20:00:52.323397-07:00,992.1798706054688,10.842075,10842.075 +38249,2025-03-11T20:01:03.162803-07:00,992.1202392578125,10.839406,10839.406 +38250,2025-03-11T20:01:14.005391-07:00,992.1665649414062,10.842588,10842.588 +38251,2025-03-11T20:01:24.841519-07:00,992.1754760742188,10.836128,10836.128 +38252,2025-03-11T20:01:35.691225-07:00,992.1532592773438,10.849706,10849.706 +38253,2025-03-11T20:01:46.529320-07:00,992.16748046875,10.838095,10838.095 +38254,2025-03-11T20:01:57.376458-07:00,992.1886596679688,10.847138,10847.138 +38255,2025-03-11T20:02:08.225620-07:00,992.212890625,10.849162,10849.162 +38256,2025-03-11T20:02:19.072563-07:00,992.1953125,10.846943,10846.943 +38257,2025-03-11T20:02:29.925515-07:00,992.1400756835938,10.852952,10852.952 +38258,2025-03-11T20:02:40.774303-07:00,992.154296875,10.848788,10848.788 +38259,2025-03-11T20:02:51.620242-07:00,992.194091796875,10.845939,10845.939 +38260,2025-03-11T20:03:02.462244-07:00,992.220458984375,10.842002,10842.002 +38261,2025-03-11T20:03:24.157304-07:00,992.2006225585938,21.69506,21695.06 +38262,2025-03-11T20:03:35.003556-07:00,992.1930541992188,10.846252,10846.252 +38263,2025-03-11T20:03:45.841241-07:00,992.2337646484375,10.837685,10837.685 +38264,2025-03-11T20:03:56.680257-07:00,992.2601318359375,10.839016,10839.016 +38265,2025-03-11T20:04:07.530248-07:00,992.2271118164062,10.849991,10849.991 +38266,2025-03-11T20:04:18.366016-07:00,992.19970703125,10.835768,10835.768 +38267,2025-03-11T20:04:29.207245-07:00,992.2195434570312,10.841229,10841.229 +38268,2025-03-11T20:04:40.047246-07:00,992.2601318359375,10.840001,10840.001 +38269,2025-03-11T20:04:50.894245-07:00,992.265869140625,10.846999,10846.999 +38270,2025-03-11T20:05:01.732587-07:00,992.1930541992188,10.838342,10838.342 +38271,2025-03-11T20:05:12.577242-07:00,992.2579956054688,10.844655,10844.655 +38272,2025-03-11T20:05:23.418747-07:00,992.265869140625,10.841505,10841.505 +38273,2025-03-11T20:05:34.263215-07:00,992.2932739257812,10.844468,10844.468 +38274,2025-03-11T20:05:45.105187-07:00,992.2446899414062,10.841972,10841.972 +38275,2025-03-11T20:05:55.953272-07:00,992.2645263671875,10.848085,10848.085 +38276,2025-03-11T20:06:06.796250-07:00,992.2725219726562,10.842978,10842.978 +38277,2025-03-11T20:06:17.634558-07:00,992.2513427734375,10.838308,10838.308 +38278,2025-03-11T20:06:28.479245-07:00,992.2437744140625,10.844687,10844.687 +38279,2025-03-11T20:06:39.329523-07:00,992.265869140625,10.850278,10850.278 +38280,2025-03-11T20:06:50.174558-07:00,992.2513427734375,10.845035,10845.035 +38281,2025-03-11T20:07:01.015223-07:00,992.2645263671875,10.840665,10840.665 +38282,2025-03-11T20:07:11.770259-07:00,992.283447265625,10.755036,10755.036 +38283,2025-03-11T20:07:22.621250-07:00,992.2976684570312,10.850991,10850.991 +38284,2025-03-11T20:07:33.461513-07:00,992.2503051757812,10.840263,10840.263 +38285,2025-03-11T20:07:44.311813-07:00,992.2701416015625,10.8503,10850.3 +38286,2025-03-11T20:07:55.163745-07:00,992.3055419921875,10.851932,10851.932 +38287,2025-03-11T20:08:06.008760-07:00,992.2887573242188,10.845015,10845.015 +38288,2025-03-11T20:08:16.850247-07:00,992.2887573242188,10.841487,10841.487 +38289,2025-03-11T20:08:27.704251-07:00,992.2689208984375,10.854004,10854.004 +38290,2025-03-11T20:08:38.540530-07:00,992.2821655273438,10.836279,10836.279 +38291,2025-03-11T20:08:49.391639-07:00,992.2755737304688,10.851109,10851.109 +38292,2025-03-11T20:09:00.233657-07:00,992.30859375,10.842018,10842.018 +38293,2025-03-11T20:09:11.085415-07:00,992.2723388671875,10.851758,10851.758 +38294,2025-03-11T20:09:21.925256-07:00,992.3209228515625,10.839841,10839.841 +38295,2025-03-11T20:09:32.774434-07:00,992.318603515625,10.849178,10849.178 +38296,2025-03-11T20:09:43.612768-07:00,992.31298828125,10.838334,10838.334 +38297,2025-03-11T20:09:54.456494-07:00,992.2865600585938,10.843726,10843.726 +38298,2025-03-11T20:10:05.308420-07:00,992.31201171875,10.851926,10851.926 +38299,2025-03-11T20:10:16.147257-07:00,992.3328247070312,10.838837,10838.837 +38300,2025-03-11T20:10:26.994255-07:00,992.3239135742188,10.846998,10846.998 +38301,2025-03-11T20:10:37.843261-07:00,992.318603515625,10.849006,10849.006 +38302,2025-03-11T20:10:48.675681-07:00,992.3318481445312,10.83242,10832.42 +38303,2025-03-11T20:10:59.524251-07:00,992.3306274414062,10.84857,10848.57 +38304,2025-03-11T20:11:10.362711-07:00,992.3504638671875,10.83846,10838.46 +38305,2025-03-11T20:11:21.202029-07:00,992.3384399414062,10.839318,10839.318 +38306,2025-03-11T20:11:32.042246-07:00,992.3384399414062,10.840217,10840.217 +38307,2025-03-11T20:11:42.880254-07:00,992.3570556640625,10.838008,10838.008 +38308,2025-03-11T20:11:53.719502-07:00,992.3560791015625,10.839248,10839.248 +38309,2025-03-11T20:12:04.561460-07:00,992.3362426757812,10.841958,10841.958 +38310,2025-03-11T20:12:15.405366-07:00,992.3428344726562,10.843906,10843.906 +38311,2025-03-11T20:12:26.242486-07:00,992.3626708984375,10.83712,10837.12 +38312,2025-03-11T20:12:37.076632-07:00,992.341552734375,10.834146,10834.146 +38313,2025-03-11T20:12:47.910252-07:00,992.3703002929688,10.83362,10833.62 +38314,2025-03-11T20:12:58.759762-07:00,992.383544921875,10.84951,10849.51 +38315,2025-03-11T20:13:09.599251-07:00,992.3670043945312,10.839489,10839.489 +38316,2025-03-11T20:13:20.432341-07:00,992.3693237304688,10.83309,10833.09 +38317,2025-03-11T20:13:31.274291-07:00,992.3613891601562,10.84195,10841.95 +38318,2025-03-11T20:13:42.114397-07:00,992.3680419921875,10.840106,10840.106 +38319,2025-03-11T20:13:52.962621-07:00,992.401123046875,10.848224,10848.224 +38320,2025-03-11T20:14:03.800490-07:00,992.3825073242188,10.837869,10837.869 +38321,2025-03-11T20:14:14.649381-07:00,992.4024047851562,10.848891,10848.891 +38322,2025-03-11T20:14:25.487245-07:00,992.34814453125,10.837864,10837.864 +38323,2025-03-11T20:14:36.330383-07:00,992.3613891601562,10.843138,10843.138 +38324,2025-03-11T20:14:47.173628-07:00,992.3626708984375,10.843245,10843.245 +38325,2025-03-11T20:14:58.020557-07:00,992.3604736328125,10.846929,10846.929 +38326,2025-03-11T20:15:08.861340-07:00,992.3560791015625,10.840783,10840.783 +38327,2025-03-11T20:15:19.708238-07:00,992.395751953125,10.846898,10846.898 +38328,2025-03-11T20:15:30.546602-07:00,992.3825073242188,10.838364,10838.364 +38329,2025-03-11T20:15:41.394270-07:00,992.3406372070312,10.847668,10847.668 +38330,2025-03-11T20:15:52.236743-07:00,992.3878784179688,10.842473,10842.473 +38331,2025-03-11T20:16:03.085311-07:00,992.3670043945312,10.848568,10848.568 +38332,2025-03-11T20:16:13.935498-07:00,992.3812255859375,10.850187,10850.187 +38333,2025-03-11T20:16:24.773410-07:00,992.3693237304688,10.837912,10837.912 +38334,2025-03-11T20:16:35.617525-07:00,992.3680419921875,10.844115,10844.115 +38335,2025-03-11T20:16:46.465821-07:00,992.3736572265625,10.848296,10848.296 +38336,2025-03-11T20:16:57.311379-07:00,992.3406372070312,10.845558,10845.558 +38337,2025-03-11T20:17:08.161745-07:00,992.3217163085938,10.850366,10850.366 +38338,2025-03-11T20:17:19.005255-07:00,992.3613891601562,10.84351,10843.51 +38339,2025-03-11T20:17:29.849502-07:00,992.34814453125,10.844247,10844.247 +38340,2025-03-11T20:17:40.701600-07:00,992.3693237304688,10.852098,10852.098 +38341,2025-03-11T20:17:47.551886-07:00,992.3329467773438,6.850286,6850.286 +38342,2025-03-11T20:17:51.543308-07:00,992.3680419921875,3.991422,3991.422 +38343,2025-03-11T20:18:02.384479-07:00,992.3548583984375,10.841171,10841.171 +38344,2025-03-11T20:18:13.228505-07:00,992.3825073242188,10.844026,10844.026 +38345,2025-03-11T20:18:24.064349-07:00,992.395751953125,10.835844,10835.844 +38346,2025-03-11T20:18:34.908683-07:00,992.401123046875,10.844334,10844.334 +38347,2025-03-11T20:18:45.749253-07:00,992.4275512695312,10.84057,10840.57 +38348,2025-03-11T20:18:56.587366-07:00,992.400146484375,10.838113,10838.113 +38349,2025-03-11T20:19:07.436622-07:00,992.3660888671875,10.849256,10849.256 +38350,2025-03-11T20:19:18.279090-07:00,992.3373413085938,10.842468,10842.468 +38351,2025-03-11T20:19:29.119477-07:00,992.3505249023438,10.840387,10840.387 +38352,2025-03-11T20:19:39.971252-07:00,992.3770141601562,10.851775,10851.775 +38353,2025-03-11T20:19:50.818251-07:00,992.3403930664062,10.846999,10846.999 +38354,2025-03-11T20:20:01.658287-07:00,992.3417358398438,10.840036,10840.036 +38355,2025-03-11T20:20:12.500324-07:00,992.380126953125,10.842037,10842.037 +38356,2025-03-11T20:20:23.343259-07:00,992.3724975585938,10.842935,10842.935 +38357,2025-03-11T20:20:34.181559-07:00,992.3646240234375,10.8383,10838.3 +38358,2025-03-11T20:20:45.024590-07:00,992.392333984375,10.843031,10843.031 +38359,2025-03-11T20:20:55.863308-07:00,992.3778076171875,10.838718,10838.718 +38360,2025-03-11T20:21:06.697235-07:00,992.3679809570312,10.833927,10833.927 +38361,2025-03-11T20:21:17.538312-07:00,992.368896484375,10.841077,10841.077 +38362,2025-03-11T20:21:28.386810-07:00,992.4064331054688,10.848498,10848.498 +38363,2025-03-11T20:21:39.223251-07:00,992.3997802734375,10.836441,10836.441 +38364,2025-03-11T20:21:50.059496-07:00,992.4129638671875,10.836245,10836.245 +38365,2025-03-11T20:22:00.902592-07:00,992.4129638671875,10.843096,10843.096 +38366,2025-03-11T20:22:11.746168-07:00,992.38427734375,10.843576,10843.576 +38367,2025-03-11T20:22:22.585305-07:00,992.3922119140625,10.839137,10839.137 +38368,2025-03-11T20:22:33.421257-07:00,992.3855590820312,10.835952,10835.952 +38369,2025-03-11T20:22:44.263563-07:00,992.389892578125,10.842306,10842.306 +38370,2025-03-11T20:22:55.107290-07:00,992.389892578125,10.843727,10843.727 +38371,2025-03-11T20:23:05.943252-07:00,992.377685546875,10.835962,10835.962 +38372,2025-03-11T20:23:16.798247-07:00,992.38330078125,10.854995,10854.995 +38373,2025-03-11T20:23:27.632483-07:00,992.407470703125,10.834236,10834.236 +38374,2025-03-11T20:23:38.478395-07:00,992.4151611328125,10.845912,10845.912 +38375,2025-03-11T20:23:49.319252-07:00,992.4097900390625,10.840857,10840.857 +38376,2025-03-11T20:24:00.153306-07:00,992.40185546875,10.834054,10834.054 +38377,2025-03-11T20:24:10.991943-07:00,992.4097900390625,10.838637,10838.637 +38378,2025-03-11T20:24:21.830247-07:00,992.4216918945312,10.838304,10838.304 +38379,2025-03-11T20:24:32.674467-07:00,992.4349975585938,10.84422,10844.22 +38380,2025-03-11T20:24:43.515588-07:00,992.4151611328125,10.841121,10841.121 +38381,2025-03-11T20:24:54.352304-07:00,992.395263671875,10.836716,10836.716 +38382,2025-03-11T20:25:05.200473-07:00,992.4229736328125,10.848169,10848.169 +38383,2025-03-11T20:25:16.041257-07:00,992.408447265625,10.840784,10840.784 +38384,2025-03-11T20:25:26.874570-07:00,992.4229736328125,10.833313,10833.313 +38385,2025-03-11T20:25:37.720304-07:00,992.436279296875,10.845734,10845.734 +38386,2025-03-11T20:25:48.561251-07:00,992.4163818359375,10.840947,10840.947 +38387,2025-03-11T20:25:59.408357-07:00,992.4371948242188,10.847106,10847.106 +38388,2025-03-11T20:26:10.248618-07:00,992.40185546875,10.840261,10840.261 +38389,2025-03-11T20:26:21.086672-07:00,992.4273681640625,10.838054,10838.054 +38390,2025-03-11T20:26:31.929230-07:00,992.462646484375,10.842558,10842.558 +38391,2025-03-11T20:26:42.765257-07:00,992.4296264648438,10.836027,10836.027 +38392,2025-03-11T20:26:53.611839-07:00,992.4151611328125,10.846582,10846.582 +38393,2025-03-11T20:27:04.441234-07:00,992.40087890625,10.829395,10829.395 +38394,2025-03-11T20:27:15.285250-07:00,992.4273681640625,10.844016,10844.016 +38395,2025-03-11T20:27:26.123016-07:00,992.4396362304688,10.837766,10837.766 +38396,2025-03-11T20:27:36.959472-07:00,992.41845703125,10.836456,10836.456 +38397,2025-03-11T20:27:47.793488-07:00,992.4462280273438,10.834016,10834.016 +38398,2025-03-11T20:27:58.639412-07:00,992.4462280273438,10.845924,10845.924 +38399,2025-03-11T20:28:09.483075-07:00,992.4528198242188,10.843663,10843.663 +38400,2025-03-11T20:28:20.319230-07:00,992.453857421875,10.836155,10836.155 +38401,2025-03-11T20:28:31.164250-07:00,992.467041015625,10.84502,10845.02 +38402,2025-03-11T20:28:42.009779-07:00,992.453857421875,10.845529,10845.529 +38403,2025-03-11T20:28:52.845396-07:00,992.4472045898438,10.835617,10835.617 +38404,2025-03-11T20:29:03.692255-07:00,992.4481811523438,10.846859,10846.859 +38405,2025-03-11T20:29:14.533509-07:00,992.4428100585938,10.841254,10841.254 +38406,2025-03-11T20:29:25.374259-07:00,992.44384765625,10.84075,10840.75 +38407,2025-03-11T20:29:36.222584-07:00,992.4637451171875,10.848325,10848.325 +38408,2025-03-11T20:29:47.064293-07:00,992.4715576171875,10.841709,10841.709 +38409,2025-03-11T20:29:57.908253-07:00,992.4637451171875,10.84396,10843.96 +38410,2025-03-11T20:30:08.758706-07:00,992.5046997070312,10.850453,10850.453 +38411,2025-03-11T20:30:19.601256-07:00,992.4637451171875,10.84255,10842.55 +38412,2025-03-11T20:30:30.437653-07:00,992.4768676757812,10.836397,10836.397 +38413,2025-03-11T20:30:41.282486-07:00,992.431884765625,10.844833,10844.833 +38414,2025-03-11T20:30:52.125409-07:00,992.4593505859375,10.842923,10842.923 +38415,2025-03-11T20:31:02.970258-07:00,992.4703369140625,10.844849,10844.849 +38416,2025-03-11T20:31:13.808797-07:00,992.4637451171875,10.838539,10838.539 +38417,2025-03-11T20:31:24.653286-07:00,992.4495239257812,10.844489,10844.489 +38418,2025-03-11T20:31:35.491352-07:00,992.4879150390625,10.838066,10838.066 +38419,2025-03-11T20:31:46.335068-07:00,992.4703369140625,10.843716,10843.716 +38420,2025-03-11T20:31:57.164240-07:00,992.4229736328125,10.829172,10829.172 +38421,2025-03-11T20:32:08.013464-07:00,992.4957885742188,10.849224,10849.224 +38422,2025-03-11T20:32:18.847382-07:00,992.4957885742188,10.833918,10833.918 +38423,2025-03-11T20:32:29.696746-07:00,992.4812622070312,10.849364,10849.364 +38424,2025-03-11T20:32:40.531387-07:00,992.4945068359375,10.834641,10834.641 +38425,2025-03-11T20:32:51.379304-07:00,992.4981079101562,10.847917,10847.917 +38426,2025-03-11T20:33:02.234934-07:00,992.496826171875,10.85563,10855.63 +38427,2025-03-11T20:33:13.072600-07:00,992.50244140625,10.837666,10837.666 +38428,2025-03-11T20:33:23.927458-07:00,992.4768676757812,10.854858,10854.858 +38429,2025-03-11T20:33:34.769632-07:00,992.496826171875,10.842174,10842.174 +38430,2025-03-11T20:33:45.619424-07:00,992.4768676757812,10.849792,10849.792 +38431,2025-03-11T20:33:56.463240-07:00,992.50341796875,10.843816,10843.816 +38432,2025-03-11T20:34:07.309457-07:00,992.50341796875,10.846217,10846.217 +38433,2025-03-11T20:34:18.154254-07:00,992.510009765625,10.844797,10844.797 +38434,2025-03-11T20:34:28.996278-07:00,992.496826171875,10.842024,10842.024 +38435,2025-03-11T20:34:39.838521-07:00,992.462646484375,10.842243,10842.243 +38436,2025-03-11T20:34:50.679235-07:00,992.4891967773438,10.840714,10840.714 +38437,2025-03-11T20:35:01.526230-07:00,992.4693603515625,10.846995,10846.995 +38438,2025-03-11T20:35:12.365562-07:00,992.5298461914062,10.839332,10839.332 +38439,2025-03-11T20:35:23.212611-07:00,992.5276489257812,10.847049,10847.049 +38440,2025-03-11T20:35:34.046714-07:00,992.52001953125,10.834103,10834.103 +38441,2025-03-11T20:35:44.898517-07:00,992.4779663085938,10.851803,10851.803 +38442,2025-03-11T20:35:55.743255-07:00,992.4902954101562,10.844738,10844.738 +38443,2025-03-11T20:36:06.580264-07:00,992.5177612304688,10.837009,10837.009 +38444,2025-03-11T20:36:17.423774-07:00,992.483642578125,10.84351,10843.51 +38445,2025-03-11T20:36:28.266504-07:00,992.5220336914062,10.84273,10842.73 +38446,2025-03-11T20:36:39.109418-07:00,992.5353393554688,10.842914,10842.914 +38447,2025-03-11T20:36:49.953248-07:00,992.5276489257812,10.84383,10843.83 +38448,2025-03-11T20:37:00.795147-07:00,992.55419921875,10.841899,10841.899 +38449,2025-03-11T20:37:11.630545-07:00,992.5505981445312,10.835398,10835.398 +38450,2025-03-11T20:37:22.475390-07:00,992.5704956054688,10.844845,10844.845 +38451,2025-03-11T20:37:33.319240-07:00,992.5076293945312,10.84385,10843.85 +38452,2025-03-11T20:37:44.162932-07:00,992.5394287109375,10.843692,10843.692 +38453,2025-03-11T20:37:55.002246-07:00,992.5318603515625,10.839314,10839.314 +38454,2025-03-11T20:38:05.847362-07:00,992.5371704101562,10.845116,10845.116 +38455,2025-03-11T20:38:16.691477-07:00,992.5084228515625,10.844115,10844.115 +38456,2025-03-11T20:38:27.528517-07:00,992.5614013671875,10.83704,10837.04 +38457,2025-03-11T20:38:38.368334-07:00,992.52294921875,10.839817,10839.817 +38458,2025-03-11T20:38:49.209760-07:00,992.552490234375,10.841426,10841.426 +38459,2025-03-11T20:39:00.047249-07:00,992.5723266601562,10.837489,10837.489 +38460,2025-03-11T20:39:10.895830-07:00,992.5250244140625,10.848581,10848.581 +38461,2025-03-11T20:39:21.738296-07:00,992.5558471679688,10.842466,10842.466 +38462,2025-03-11T20:39:32.575257-07:00,992.5482788085938,10.836961,10836.961 +38463,2025-03-11T20:39:43.413742-07:00,992.5889282226562,10.838485,10838.485 +38464,2025-03-11T20:39:54.251128-07:00,992.5601806640625,10.837386,10837.386 +38465,2025-03-11T20:40:05.083230-07:00,992.5248413085938,10.832102,10832.102 +38466,2025-03-11T20:40:15.922520-07:00,992.5525512695312,10.83929,10839.29 +38467,2025-03-11T20:40:26.764192-07:00,992.5645141601562,10.841672,10841.672 +38468,2025-03-11T20:40:37.599797-07:00,992.543701171875,10.835605,10835.605 +38469,2025-03-11T20:40:48.437584-07:00,992.5348510742188,10.837787,10837.787 +38470,2025-03-11T20:40:59.269253-07:00,992.549072265625,10.831669,10831.669 +38471,2025-03-11T20:41:10.113463-07:00,992.519287109375,10.84421,10844.21 +38472,2025-03-11T20:41:20.953260-07:00,992.5523681640625,10.839797,10839.797 +38473,2025-03-11T20:41:31.797811-07:00,992.5722045898438,10.844551,10844.551 +38474,2025-03-11T20:41:42.630300-07:00,992.5643920898438,10.832489,10832.489 +38475,2025-03-11T20:41:53.475391-07:00,992.5753173828125,10.845091,10845.091 +38476,2025-03-11T20:42:04.316625-07:00,992.5477905273438,10.841234,10841.234 +38477,2025-03-11T20:42:15.161041-07:00,992.5323486328125,10.844416,10844.416 +38478,2025-03-11T20:42:26.000503-07:00,992.5455322265625,10.839462,10839.462 +38479,2025-03-11T20:42:36.830621-07:00,992.5631103515625,10.830118,10830.118 +38480,2025-03-11T20:42:47.682465-07:00,992.5432739257812,10.851844,10851.844 +38481,2025-03-11T20:42:58.515252-07:00,992.529052734375,10.832787,10832.787 +38482,2025-03-11T20:43:09.354268-07:00,992.5201416015625,10.839016,10839.016 +38483,2025-03-11T20:43:20.190714-07:00,992.5321044921875,10.836446,10836.446 +38484,2025-03-11T20:43:31.037743-07:00,992.560791015625,10.847029,10847.029 +38485,2025-03-11T20:43:41.877594-07:00,992.5496826171875,10.839851,10839.851 +38486,2025-03-11T20:43:52.707578-07:00,992.5552978515625,10.829984,10829.984 +38487,2025-03-11T20:44:03.551436-07:00,992.5606079101562,10.843858,10843.858 +38488,2025-03-11T20:44:14.389257-07:00,992.5606079101562,10.837821,10837.821 +38489,2025-03-11T20:44:25.232732-07:00,992.5384521484375,10.843475,10843.475 +38490,2025-03-11T20:44:36.068561-07:00,992.5650024414062,10.835829,10835.829 +38491,2025-03-11T20:44:46.917584-07:00,992.5440673828125,10.849023,10849.023 +38492,2025-03-11T20:44:57.750058-07:00,992.571533203125,10.832474,10832.474 +38493,2025-03-11T20:45:08.590251-07:00,992.58251953125,10.840193,10840.193 +38494,2025-03-11T20:45:19.437642-07:00,992.575927734375,10.847391,10847.391 +38495,2025-03-11T20:45:30.276510-07:00,992.58251953125,10.838868,10838.868 +38496,2025-03-11T20:45:41.117345-07:00,992.5878295898438,10.840835,10840.835 +38497,2025-03-11T20:45:51.948879-07:00,992.5745849609375,10.831534,10831.534 +38498,2025-03-11T20:46:02.790251-07:00,992.5865478515625,10.841372,10841.372 +38499,2025-03-11T20:46:13.628244-07:00,992.5789184570312,10.837993,10837.993 +38500,2025-03-11T20:46:24.471258-07:00,992.571044921875,10.843014,10843.014 +38501,2025-03-11T20:46:35.303276-07:00,992.6040649414062,10.832018,10832.018 +38502,2025-03-11T20:46:46.148287-07:00,992.6152954101562,10.845011,10845.011 +38503,2025-03-11T20:46:56.995401-07:00,992.6163330078125,10.847114,10847.114 +38504,2025-03-11T20:47:07.827602-07:00,992.5744018554688,10.832201,10832.201 +38505,2025-03-11T20:47:18.669255-07:00,992.6007690429688,10.841653,10841.653 +38506,2025-03-11T20:47:29.513617-07:00,992.599853515625,10.844362,10844.362 +38507,2025-03-11T20:47:40.357256-07:00,992.5962524414062,10.843639,10843.639 +38508,2025-03-11T20:47:51.194576-07:00,992.5777587890625,10.83732,10837.32 +38509,2025-03-11T20:48:02.030230-07:00,992.617431640625,10.835654,10835.654 +38510,2025-03-11T20:48:12.868612-07:00,992.6359252929688,10.838382,10838.382 +38511,2025-03-11T20:48:23.715343-07:00,992.6085205078125,10.846731,10846.731 +38512,2025-03-11T20:48:34.555237-07:00,992.6138305664062,10.839894,10839.894 +38513,2025-03-11T20:48:45.386259-07:00,992.6468505859375,10.831022,10831.022 +38514,2025-03-11T20:48:56.224758-07:00,992.6921997070312,10.838499,10838.499 +38515,2025-03-11T20:49:07.051241-07:00,992.623779296875,10.826483,10826.483 +38516,2025-03-11T20:49:17.882600-07:00,992.641357421875,10.831359,10831.359 +38517,2025-03-11T20:49:28.723096-07:00,992.641357421875,10.840496,10840.496 +38518,2025-03-11T20:49:39.551246-07:00,992.6598510742188,10.82815,10828.15 +38519,2025-03-11T20:49:50.388561-07:00,992.6796875,10.837315,10837.315 +38520,2025-03-11T20:50:01.220251-07:00,992.6532592773438,10.83169,10831.69 +38521,2025-03-11T20:50:12.059270-07:00,992.6390380859375,10.839019,10839.019 +38522,2025-03-11T20:50:22.881255-07:00,992.6787719726562,10.821985,10821.985 +38523,2025-03-11T20:50:33.723642-07:00,992.6707763671875,10.842387,10842.387 +38524,2025-03-11T20:50:44.553872-07:00,992.6973266601562,10.83023,10830.23 +38525,2025-03-11T20:50:55.395256-07:00,992.6676025390625,10.841384,10841.384 +38526,2025-03-11T20:51:06.233855-07:00,992.6807861328125,10.838599,10838.599 +38527,2025-03-11T20:51:17.071732-07:00,992.6807861328125,10.837877,10837.877 +38528,2025-03-11T20:51:27.901546-07:00,992.7062377929688,10.829814,10829.814 +38529,2025-03-11T20:51:38.745247-07:00,992.6841430664062,10.843701,10843.701 +38530,2025-03-11T20:51:49.582555-07:00,992.6929931640625,10.837308,10837.308 +38531,2025-03-11T20:52:00.421257-07:00,992.7039184570312,10.838702,10838.702 +38532,2025-03-11T20:52:11.257257-07:00,992.6961059570312,10.836,10836.0 +38533,2025-03-11T20:52:22.094812-07:00,992.7092895507812,10.837555,10837.555 +38534,2025-03-11T20:52:32.932368-07:00,992.7159423828125,10.837556,10837.556 +38535,2025-03-11T20:52:43.775245-07:00,992.70263671875,10.842877,10842.877 +38536,2025-03-11T20:52:54.602563-07:00,992.708251953125,10.827318,10827.318 +38537,2025-03-11T20:53:05.444230-07:00,992.7017211914062,10.841667,10841.667 +38538,2025-03-11T20:53:16.283400-07:00,992.71923828125,10.83917,10839.17 +38539,2025-03-11T20:53:27.121127-07:00,992.6994018554688,10.837727,10837.727 +38540,2025-03-11T20:53:37.955538-07:00,992.7047119140625,10.834411,10834.411 +38541,2025-03-11T20:53:48.798582-07:00,992.7047119140625,10.843044,10843.044 +38542,2025-03-11T20:53:59.634668-07:00,992.6749877929688,10.836086,10836.086 +38543,2025-03-11T20:54:10.461499-07:00,992.7090454101562,10.826831,10826.831 +38544,2025-03-11T20:54:21.295622-07:00,992.702392578125,10.834123,10834.123 +38545,2025-03-11T20:54:32.133387-07:00,992.7067260742188,10.837765,10837.765 +38546,2025-03-11T20:54:42.969255-07:00,992.6749877929688,10.835868,10835.868 +38547,2025-03-11T20:54:53.797360-07:00,992.7146606445312,10.828105,10828.105 +38548,2025-03-11T20:55:04.638261-07:00,992.7001342773438,10.840901,10840.901 +38549,2025-03-11T20:55:15.470483-07:00,992.664794921875,10.832222,10832.222 +38550,2025-03-11T20:55:26.314584-07:00,992.67138671875,10.844101,10844.101 +38551,2025-03-11T20:55:37.150255-07:00,992.677001953125,10.835671,10835.671 +38552,2025-03-11T20:55:47.984261-07:00,992.68359375,10.834006,10834.006 +38553,2025-03-11T20:55:58.813463-07:00,992.6757202148438,10.829202,10829.202 +38554,2025-03-11T20:56:09.657497-07:00,992.6690673828125,10.844034,10844.034 +38555,2025-03-11T20:56:20.496338-07:00,992.6571655273438,10.838841,10838.841 +38556,2025-03-11T20:56:31.333222-07:00,992.6671142578125,10.836884,10836.884 +38557,2025-03-11T20:56:42.163257-07:00,992.6889038085938,10.830035,10830.035 +38558,2025-03-11T20:56:53.003308-07:00,992.6539306640625,10.840051,10840.051 +38559,2025-03-11T20:57:03.828542-07:00,992.7134399414062,10.825234,10825.234 +38560,2025-03-11T20:57:14.670253-07:00,992.652587890625,10.841711,10841.711 +38561,2025-03-11T20:57:25.501831-07:00,992.6846923828125,10.831578,10831.578 +38562,2025-03-11T20:57:36.344256-07:00,992.7120971679688,10.842425,10842.425 +38563,2025-03-11T20:57:47.176257-07:00,992.6671142578125,10.832001,10832.001 +38564,2025-03-11T20:57:58.011443-07:00,992.683349609375,10.835186,10835.186 +38565,2025-03-11T20:58:08.853253-07:00,992.6978759765625,10.84181,10841.81 +38566,2025-03-11T20:58:19.690495-07:00,992.6978759765625,10.837242,10837.242 +38567,2025-03-11T20:58:30.530557-07:00,992.6912231445312,10.840062,10840.062 +38568,2025-03-11T20:58:41.364243-07:00,992.696533203125,10.833686,10833.686 +38569,2025-03-11T20:58:52.201230-07:00,992.6612548828125,10.836987,10836.987 +38570,2025-03-11T20:59:03.039402-07:00,992.6492919921875,10.838172,10838.172 +38571,2025-03-11T20:59:13.880536-07:00,992.627197265625,10.841134,10841.134 +38572,2025-03-11T20:59:24.711710-07:00,992.6470336914062,10.831174,10831.174 +38573,2025-03-11T20:59:35.550765-07:00,992.6337280273438,10.839055,10839.055 +38574,2025-03-11T20:59:46.391461-07:00,992.65234375,10.840696,10840.696 +38575,2025-03-11T20:59:57.222260-07:00,992.66552734375,10.830799,10830.799 +38576,2025-03-11T21:00:08.058285-07:00,992.6777954101562,10.836025,10836.025 +38577,2025-03-11T21:00:18.890594-07:00,992.6698608398438,10.832309,10832.309 +38578,2025-03-11T21:00:29.726701-07:00,992.68310546875,10.836107,10836.107 +38579,2025-03-11T21:00:40.557241-07:00,992.688720703125,10.83054,10830.54 +38580,2025-03-11T21:00:51.380651-07:00,992.7019653320312,10.82341,10823.41 +38581,2025-03-11T21:01:02.215505-07:00,992.6754760742188,10.834854,10834.854 +38582,2025-03-11T21:01:13.040517-07:00,992.7218017578125,10.825012,10825.012 +38583,2025-03-11T21:01:23.884576-07:00,992.707275390625,10.844059,10844.059 +38584,2025-03-11T21:01:34.712473-07:00,992.720458984375,10.827897,10827.897 +38585,2025-03-11T21:01:45.557559-07:00,992.6930541992188,10.845086,10845.086 +38586,2025-03-11T21:01:56.382312-07:00,992.6841430664062,10.824753,10824.753 +38587,2025-03-11T21:02:07.226532-07:00,992.6841430664062,10.84422,10844.22 +38588,2025-03-11T21:02:18.067701-07:00,992.6841430664062,10.841169,10841.169 +38589,2025-03-11T21:02:28.899257-07:00,992.6841430664062,10.831556,10831.556 +38590,2025-03-11T21:02:39.730476-07:00,992.6564331054688,10.831219,10831.219 +38591,2025-03-11T21:02:50.560480-07:00,992.664306640625,10.830004,10830.004 +38592,2025-03-11T21:03:01.395367-07:00,992.6533813476562,10.834887,10834.887 +38593,2025-03-11T21:03:12.243598-07:00,992.6454467773438,10.848231,10848.231 +38594,2025-03-11T21:03:33.918251-07:00,992.646728515625,21.674653,21674.653 +38595,2025-03-11T21:03:44.748574-07:00,992.6688842773438,10.830323,10830.323 +38596,2025-03-11T21:03:55.591501-07:00,992.6676025390625,10.842927,10842.927 +38597,2025-03-11T21:04:06.431239-07:00,992.6543579101562,10.839738,10839.738 +38598,2025-03-11T21:04:17.268677-07:00,992.6314697265625,10.837438,10837.438 +38599,2025-03-11T21:04:28.098491-07:00,992.6447143554688,10.829814,10829.814 +38600,2025-03-11T21:04:38.936253-07:00,992.6470336914062,10.837762,10837.762 +38601,2025-03-11T21:04:49.768797-07:00,992.6559448242188,10.832544,10832.544 +38602,2025-03-11T21:05:00.605255-07:00,992.6436767578125,10.836458,10836.458 +38603,2025-03-11T21:05:11.448258-07:00,992.6260986328125,10.843003,10843.003 +38604,2025-03-11T21:05:22.281990-07:00,992.5632934570312,10.833732,10833.732 +38605,2025-03-11T21:05:33.117253-07:00,992.6306762695312,10.835263,10835.263 +38606,2025-03-11T21:05:43.950259-07:00,992.6383056640625,10.833006,10833.006 +38607,2025-03-11T21:05:54.786350-07:00,992.6339721679688,10.836091,10836.091 +38608,2025-03-11T21:06:05.619723-07:00,992.6163940429688,10.833373,10833.373 +38609,2025-03-11T21:06:16.450565-07:00,992.6253051757812,10.830842,10830.842 +38610,2025-03-11T21:06:27.292298-07:00,992.646484375,10.841733,10841.733 +38611,2025-03-11T21:06:38.120435-07:00,992.6365356445312,10.828137,10828.137 +38612,2025-03-11T21:06:48.956681-07:00,992.6113891601562,10.836246,10836.246 +38613,2025-03-11T21:06:59.794253-07:00,992.6013793945312,10.837572,10837.572 +38614,2025-03-11T21:07:10.755976-07:00,992.6257934570312,10.961723,10961.723 +38615,2025-03-11T21:07:21.591655-07:00,992.6334228515625,10.835679,10835.679 +38616,2025-03-11T21:07:32.425756-07:00,992.6148681640625,10.834101,10834.101 +38617,2025-03-11T21:07:43.267879-07:00,992.58642578125,10.842123,10842.123 +38618,2025-03-11T21:07:54.097521-07:00,992.563232421875,10.829642,10829.642 +38619,2025-03-11T21:08:04.939730-07:00,992.563232421875,10.842209,10842.209 +38620,2025-03-11T21:08:15.773482-07:00,992.6140747070312,10.833752,10833.752 +38621,2025-03-11T21:08:26.616745-07:00,992.5974731445312,10.843263,10843.263 +38622,2025-03-11T21:08:37.458764-07:00,992.5921630859375,10.842019,10842.019 +38623,2025-03-11T21:08:48.297762-07:00,992.5970458984375,10.838998,10838.998 +38624,2025-03-11T21:08:59.141130-07:00,992.599365234375,10.843368,10843.368 +38625,2025-03-11T21:09:09.968519-07:00,992.6135864257812,10.827389,10827.389 +38626,2025-03-11T21:09:20.808891-07:00,992.607177734375,10.840372,10840.372 +38627,2025-03-11T21:09:31.652058-07:00,992.6217041015625,10.843167,10843.167 +38628,2025-03-11T21:09:42.484273-07:00,992.6173706054688,10.832215,10832.215 +38629,2025-03-11T21:09:53.321829-07:00,992.627197265625,10.837556,10837.556 +38630,2025-03-11T21:10:04.164739-07:00,992.6526489257812,10.84291,10842.91 +38631,2025-03-11T21:10:14.995529-07:00,992.6472778320312,10.83079,10830.79 +38632,2025-03-11T21:10:25.840842-07:00,992.6174926757812,10.845313,10845.313 +38633,2025-03-11T21:10:36.670656-07:00,992.6342163085938,10.829814,10829.814 +38634,2025-03-11T21:10:47.513630-07:00,992.6375122070312,10.842974,10842.974 +38635,2025-03-11T21:10:58.363522-07:00,992.60546875,10.849892,10849.892 +38636,2025-03-11T21:11:09.204717-07:00,992.6473388671875,10.841195,10841.195 +38637,2025-03-11T21:11:20.039068-07:00,992.6509399414062,10.834351,10834.351 +38638,2025-03-11T21:11:30.879888-07:00,992.6585693359375,10.84082,10840.82 +38639,2025-03-11T21:11:41.718665-07:00,992.6631469726562,10.838777,10838.777 +38640,2025-03-11T21:11:52.561505-07:00,992.638916015625,10.84284,10842.84 +38641,2025-03-11T21:12:03.395530-07:00,992.666748046875,10.834025,10834.025 +38642,2025-03-11T21:12:14.235528-07:00,992.657958984375,10.839998,10839.998 +38643,2025-03-11T21:12:25.080784-07:00,992.6599731445312,10.845256,10845.256 +38644,2025-03-11T21:12:35.916558-07:00,992.6612548828125,10.835774,10835.774 +38645,2025-03-11T21:12:46.747765-07:00,992.652587890625,10.831207,10831.207 +38646,2025-03-11T21:12:57.584072-07:00,992.6734619140625,10.836307,10836.307 +38647,2025-03-11T21:13:08.433950-07:00,992.6769409179688,10.849878,10849.878 +38648,2025-03-11T21:13:19.271608-07:00,992.6646728515625,10.837658,10837.658 +38649,2025-03-11T21:13:30.109119-07:00,992.6947021484375,10.837511,10837.511 +38650,2025-03-11T21:13:40.958729-07:00,992.697998046875,10.84961,10849.61 +38651,2025-03-11T21:13:51.790227-07:00,992.6892700195312,10.831498,10831.498 +38652,2025-03-11T21:14:02.637580-07:00,992.65625,10.847353,10847.353 +38653,2025-03-11T21:14:13.476642-07:00,992.6726684570312,10.839062,10839.062 +38654,2025-03-11T21:14:24.323915-07:00,992.6961059570312,10.847273,10847.273 +38655,2025-03-11T21:14:35.167107-07:00,992.670654296875,10.843192,10843.192 +38656,2025-03-11T21:14:45.999605-07:00,992.7139282226562,10.832498,10832.498 +38657,2025-03-11T21:14:56.854762-07:00,992.6763916015625,10.855157,10855.157 +38658,2025-03-11T21:15:07.695512-07:00,992.6456298828125,10.84075,10840.75 +38659,2025-03-11T21:15:18.527955-07:00,992.6939086914062,10.832443,10832.443 +38660,2025-03-11T21:15:29.378515-07:00,992.6829833984375,10.85056,10850.56 +38661,2025-03-11T21:15:40.215671-07:00,992.6785888671875,10.837156,10837.156 +38662,2025-03-11T21:15:51.047008-07:00,992.706298828125,10.831337,10831.337 +38663,2025-03-11T21:16:01.895596-07:00,992.6807861328125,10.848588,10848.588 +38664,2025-03-11T21:16:12.727780-07:00,992.615966796875,10.832184,10832.184 +38665,2025-03-11T21:16:23.571857-07:00,992.7184448242188,10.844077,10844.077 +38666,2025-03-11T21:16:34.419865-07:00,992.6787719726562,10.848008,10848.008 +38667,2025-03-11T21:16:45.268253-07:00,992.654541015625,10.848388,10848.388 +38668,2025-03-11T21:16:56.105532-07:00,992.6634521484375,10.837279,10837.279 +38669,2025-03-11T21:17:06.942806-07:00,992.6854858398438,10.837274,10837.274 +38670,2025-03-11T21:17:17.787055-07:00,992.6943969726562,10.844249,10844.249 +38671,2025-03-11T21:17:28.621527-07:00,992.662353515625,10.834472,10834.472 +38672,2025-03-11T21:17:39.468747-07:00,992.7125244140625,10.84722,10847.22 +38673,2025-03-11T21:17:50.311511-07:00,992.6882934570312,10.842764,10842.764 +38674,2025-03-11T21:18:01.151865-07:00,992.6749877929688,10.840354,10840.354 +38675,2025-03-11T21:18:11.994620-07:00,992.7047119140625,10.842755,10842.755 +38676,2025-03-11T21:18:22.837532-07:00,992.6937255859375,10.842912,10842.912 +38677,2025-03-11T21:18:33.677817-07:00,992.6884155273438,10.840285,10840.285 +38678,2025-03-11T21:18:44.519717-07:00,992.73046875,10.8419,10841.9 +38679,2025-03-11T21:18:55.363018-07:00,992.7203979492188,10.843301,10843.301 +38680,2025-03-11T21:19:06.206528-07:00,992.6895141601562,10.84351,10843.51 +38681,2025-03-11T21:19:17.044528-07:00,992.7037353515625,10.838,10838.0 +38682,2025-03-11T21:19:27.886076-07:00,992.65966796875,10.841548,10841.548 +38683,2025-03-11T21:19:38.729566-07:00,992.6950073242188,10.84349,10843.49 +38684,2025-03-11T21:19:49.573595-07:00,992.7095336914062,10.844029,10844.029 +38685,2025-03-11T21:20:00.416708-07:00,992.6995239257812,10.843113,10843.113 +38686,2025-03-11T21:20:11.270726-07:00,992.70751953125,10.854018,10854.018 +38687,2025-03-11T21:20:22.105191-07:00,992.6964721679688,10.834465,10834.465 +38688,2025-03-11T21:20:32.956187-07:00,992.6722412109375,10.850996,10850.996 +38689,2025-03-11T21:20:43.804768-07:00,992.7152099609375,10.848581,10848.581 +38690,2025-03-11T21:20:54.644527-07:00,992.6698608398438,10.839759,10839.759 +38691,2025-03-11T21:21:05.497707-07:00,992.7118530273438,10.85318,10853.18 +38692,2025-03-11T21:21:16.336534-07:00,992.6998291015625,10.838827,10838.827 +38693,2025-03-11T21:21:27.178832-07:00,992.71533203125,10.842298,10842.298 +38694,2025-03-11T21:21:38.025638-07:00,992.7362670898438,10.846806,10846.806 +38695,2025-03-11T21:21:48.858612-07:00,992.663330078125,10.832974,10832.974 +38696,2025-03-11T21:21:59.702832-07:00,992.692138671875,10.84422,10844.22 +38697,2025-03-11T21:22:10.543430-07:00,992.6810913085938,10.840598,10840.598 +38698,2025-03-11T21:22:21.386557-07:00,992.72314453125,10.843127,10843.127 +38699,2025-03-11T21:22:32.235507-07:00,992.7320556640625,10.84895,10848.95 +38700,2025-03-11T21:22:43.072527-07:00,992.6922607421875,10.83702,10837.02 +38701,2025-03-11T21:22:53.922956-07:00,992.6945190429688,10.850429,10850.429 +38702,2025-03-11T21:23:04.759563-07:00,992.704345703125,10.836607,10836.607 +38703,2025-03-11T21:23:15.608663-07:00,992.7122802734375,10.8491,10849.1 +38704,2025-03-11T21:23:26.445526-07:00,992.7122802734375,10.836863,10836.863 +38705,2025-03-11T21:23:37.287961-07:00,992.682373046875,10.842435,10842.435 +38706,2025-03-11T21:23:48.126749-07:00,992.6956176757812,10.838788,10838.788 +38707,2025-03-11T21:23:58.977522-07:00,992.67919921875,10.850773,10850.773 +38708,2025-03-11T21:24:09.824765-07:00,992.6868896484375,10.847243,10847.243 +38709,2025-03-11T21:24:20.664646-07:00,992.6802368164062,10.839881,10839.881 +38710,2025-03-11T21:24:31.510522-07:00,992.6815795898438,10.845876,10845.876 +38711,2025-03-11T21:24:42.357955-07:00,992.6427612304688,10.847433,10847.433 +38712,2025-03-11T21:24:53.196531-07:00,992.6715087890625,10.838576,10838.576 +38713,2025-03-11T21:25:04.045529-07:00,992.68701171875,10.848998,10848.998 +38714,2025-03-11T21:25:14.887589-07:00,992.6595458984375,10.84206,10842.06 +38715,2025-03-11T21:25:25.732570-07:00,992.6528930664062,10.844981,10844.981 +38716,2025-03-11T21:25:36.572405-07:00,992.6749877929688,10.839835,10839.835 +38717,2025-03-11T21:25:47.404527-07:00,992.6627197265625,10.832122,10832.122 +38718,2025-03-11T21:25:58.253530-07:00,992.6769409179688,10.849003,10849.003 +38719,2025-03-11T21:26:09.083617-07:00,992.6925048828125,10.830087,10830.087 +38720,2025-03-11T21:26:19.935800-07:00,992.6871337890625,10.852183,10852.183 +38721,2025-03-11T21:26:30.774534-07:00,992.709228515625,10.838734,10838.734 +38722,2025-03-11T21:26:41.621848-07:00,992.62841796875,10.847314,10847.314 +38723,2025-03-11T21:26:52.476758-07:00,992.659423828125,10.85491,10854.91 +38724,2025-03-11T21:27:03.314690-07:00,992.6871948242188,10.837932,10837.932 +38725,2025-03-11T21:27:14.156528-07:00,992.654052734375,10.841838,10841.838 +38726,2025-03-11T21:27:25.000456-07:00,992.6564331054688,10.843928,10843.928 +38727,2025-03-11T21:27:35.847528-07:00,992.6585693359375,10.847072,10847.072 +38728,2025-03-11T21:27:46.685636-07:00,992.678466796875,10.838108,10838.108 +38729,2025-03-11T21:27:57.531258-07:00,992.6860961914062,10.845622,10845.622 +38730,2025-03-11T21:28:08.378618-07:00,992.6873168945312,10.84736,10847.36 +38731,2025-03-11T21:28:19.215797-07:00,992.675048828125,10.837179,10837.179 +38732,2025-03-11T21:28:30.052880-07:00,992.6763916015625,10.837083,10837.083 +38733,2025-03-11T21:28:40.907894-07:00,992.6972045898438,10.855014,10855.014 +38734,2025-03-11T21:28:51.749557-07:00,992.6707153320312,10.841663,10841.663 +38735,2025-03-11T21:29:02.592649-07:00,992.70703125,10.843092,10843.092 +38736,2025-03-11T21:29:13.430794-07:00,992.667236328125,10.838145,10838.145 +38737,2025-03-11T21:29:24.268896-07:00,992.661865234375,10.838102,10838.102 +38738,2025-03-11T21:29:35.123732-07:00,992.6695556640625,10.854836,10854.836 +38739,2025-03-11T21:29:45.965571-07:00,992.678466796875,10.841839,10841.839 +38740,2025-03-11T21:29:56.803531-07:00,992.6849975585938,10.83796,10837.96 +38741,2025-03-11T21:30:07.656528-07:00,992.700439453125,10.852997,10852.997 +38742,2025-03-11T21:30:18.505533-07:00,992.7061767578125,10.849005,10849.005 +38743,2025-03-11T21:30:29.351101-07:00,992.700439453125,10.845568,10845.568 +38744,2025-03-11T21:30:40.184523-07:00,992.7106323242188,10.833422,10833.422 +38745,2025-03-11T21:30:51.034838-07:00,992.7017822265625,10.850315,10850.315 +38746,2025-03-11T21:31:01.873571-07:00,992.7028198242188,10.838733,10838.733 +38747,2025-03-11T21:31:12.722630-07:00,992.7050170898438,10.849059,10849.059 +38748,2025-03-11T21:31:23.565850-07:00,992.711669921875,10.84322,10843.22 +38749,2025-03-11T21:31:34.415901-07:00,992.6974487304688,10.850051,10850.051 +38750,2025-03-11T21:31:45.258647-07:00,992.7050170898438,10.842746,10842.746 +38751,2025-03-11T21:31:56.111832-07:00,992.720458984375,10.853185,10853.185 +38752,2025-03-11T21:32:06.951535-07:00,992.665283203125,10.839703,10839.703 +38753,2025-03-11T21:32:17.797578-07:00,992.6984252929688,10.846043,10846.043 +38754,2025-03-11T21:32:28.646410-07:00,992.6873168945312,10.848832,10848.832 +38755,2025-03-11T21:32:39.490715-07:00,992.6907958984375,10.844305,10844.305 +38756,2025-03-11T21:32:50.338717-07:00,992.70849609375,10.848002,10848.002 +38757,2025-03-11T21:33:01.186525-07:00,992.6807861328125,10.847808,10847.808 +38758,2025-03-11T21:33:12.036876-07:00,992.6953125,10.850351,10850.351 +38759,2025-03-11T21:33:22.877832-07:00,992.697509765625,10.840956,10840.956 +38760,2025-03-11T21:33:33.723533-07:00,992.669677734375,10.845701,10845.701 +38761,2025-03-11T21:33:44.576596-07:00,992.6997680664062,10.853063,10853.063 +38762,2025-03-11T21:33:55.423875-07:00,992.7407836914062,10.847279,10847.279 +38763,2025-03-11T21:34:06.273675-07:00,992.7274780273438,10.8498,10849.8 +38764,2025-03-11T21:34:17.122718-07:00,992.7562255859375,10.849043,10849.043 +38765,2025-03-11T21:34:27.964504-07:00,992.7562255859375,10.841786,10841.786 +38766,2025-03-11T21:34:38.816925-07:00,992.7440795898438,10.852421,10852.421 +38767,2025-03-11T21:34:49.659812-07:00,992.7453002929688,10.842887,10842.887 +38768,2025-03-11T21:35:00.505918-07:00,992.7816162109375,10.846106,10846.106 +38769,2025-03-11T21:35:11.345677-07:00,992.7263793945312,10.839759,10839.759 +38770,2025-03-11T21:35:22.204005-07:00,992.762939453125,10.858328,10858.328 +38771,2025-03-11T21:35:33.045510-07:00,992.7750244140625,10.841505,10841.505 +38772,2025-03-11T21:35:43.890528-07:00,992.7771606445312,10.845018,10845.018 +38773,2025-03-11T21:35:54.732719-07:00,992.7595825195312,10.842191,10842.191 +38774,2025-03-11T21:36:05.576783-07:00,992.7520141601562,10.844064,10844.064 +38775,2025-03-11T21:36:16.426629-07:00,992.7608642578125,10.849846,10849.846 +38776,2025-03-11T21:36:27.280961-07:00,992.78076171875,10.854332,10854.332 +38777,2025-03-11T21:36:38.117527-07:00,992.746337890625,10.836566,10836.566 +38778,2025-03-11T21:36:48.966765-07:00,992.7485961914062,10.849238,10849.238 +38779,2025-03-11T21:36:59.821675-07:00,992.7896118164062,10.85491,10854.91 +38780,2025-03-11T21:37:10.663861-07:00,992.8038330078125,10.842186,10842.186 +38781,2025-03-11T21:37:21.506838-07:00,992.7640380859375,10.842977,10842.977 +38782,2025-03-11T21:37:32.355446-07:00,992.7640380859375,10.848608,10848.608 +38783,2025-03-11T21:37:43.195774-07:00,992.7994384765625,10.840328,10840.328 +38784,2025-03-11T21:37:54.042603-07:00,992.771728515625,10.846829,10846.829 +38785,2025-03-11T21:38:04.883761-07:00,992.8016967773438,10.841158,10841.158 +38786,2025-03-11T21:38:15.733540-07:00,992.7937622070312,10.849779,10849.779 +38787,2025-03-11T21:38:26.588532-07:00,992.7884521484375,10.854992,10854.992 +38788,2025-03-11T21:38:37.431510-07:00,992.8238525390625,10.842978,10842.978 +38789,2025-03-11T21:38:48.292781-07:00,992.8115844726562,10.861271,10861.271 +38790,2025-03-11T21:38:59.140642-07:00,992.813720703125,10.847861,10847.861 +38791,2025-03-11T21:39:09.983522-07:00,992.8359375,10.84288,10842.88 +38792,2025-03-11T21:39:20.826782-07:00,992.8084106445312,10.84326,10843.26 +38793,2025-03-11T21:39:31.681533-07:00,992.7841186523438,10.854751,10854.751 +38794,2025-03-11T21:39:42.523700-07:00,992.79833984375,10.842167,10842.167 +38795,2025-03-11T21:39:53.379810-07:00,992.791748046875,10.85611,10856.11 +38796,2025-03-11T21:40:04.224949-07:00,992.8270874023438,10.845139,10845.139 +38797,2025-03-11T21:40:15.064812-07:00,992.787353515625,10.839863,10839.863 +38798,2025-03-11T21:40:25.912696-07:00,992.8284301757812,10.847884,10847.884 +38799,2025-03-11T21:40:36.761466-07:00,992.8439331054688,10.84877,10848.77 +38800,2025-03-11T21:40:47.610765-07:00,992.823974609375,10.849299,10849.299 +38801,2025-03-11T21:40:58.455555-07:00,992.825927734375,10.84479,10844.79 +38802,2025-03-11T21:41:09.301705-07:00,992.8457641601562,10.84615,10846.15 +38803,2025-03-11T21:41:20.154981-07:00,992.8272094726562,10.853276,10853.276 +38804,2025-03-11T21:41:31.003101-07:00,992.862548828125,10.84812,10848.12 +38805,2025-03-11T21:41:41.843524-07:00,992.849365234375,10.840423,10840.423 +38806,2025-03-11T21:41:52.698518-07:00,992.8635864257812,10.854994,10854.994 +38807,2025-03-11T21:42:03.546582-07:00,992.850341796875,10.848064,10848.064 +38808,2025-03-11T21:42:14.401527-07:00,992.8382568359375,10.854945,10854.945 +38809,2025-03-11T21:42:25.251907-07:00,992.8781127929688,10.85038,10850.38 +38810,2025-03-11T21:42:36.098805-07:00,992.8304443359375,10.846898,10846.898 +38811,2025-03-11T21:42:46.952617-07:00,992.8591918945312,10.853812,10853.812 +38812,2025-03-11T21:42:57.795894-07:00,992.853759765625,10.843277,10843.277 +38813,2025-03-11T21:43:08.646003-07:00,992.853759765625,10.850109,10850.109 +38814,2025-03-11T21:43:19.497123-07:00,992.8680419921875,10.85112,10851.12 +38815,2025-03-11T21:43:30.350818-07:00,992.8759155273438,10.853695,10853.695 +38816,2025-03-11T21:43:41.196532-07:00,992.8635864257812,10.845714,10845.714 +38817,2025-03-11T21:43:52.044940-07:00,992.8768920898438,10.848408,10848.408 +38818,2025-03-11T21:44:02.894727-07:00,992.8870239257812,10.849787,10849.787 +38819,2025-03-11T21:44:13.743530-07:00,992.8959350585938,10.848803,10848.803 +38820,2025-03-11T21:44:24.592529-07:00,992.887939453125,10.848999,10848.999 +38821,2025-03-11T21:44:35.447140-07:00,992.91015625,10.854611,10854.611 +38822,2025-03-11T21:44:46.293690-07:00,992.8902587890625,10.84655,10846.55 +38823,2025-03-11T21:44:57.143685-07:00,992.911376953125,10.849995,10849.995 +38824,2025-03-11T21:45:07.987702-07:00,992.9190063476562,10.844017,10844.017 +38825,2025-03-11T21:45:18.831528-07:00,992.8990478515625,10.843826,10843.826 +38826,2025-03-11T21:45:29.679528-07:00,992.8858032226562,10.848,10848.0 +38827,2025-03-11T21:45:40.539778-07:00,992.8792114257812,10.86025,10860.25 +38828,2025-03-11T21:45:51.389563-07:00,992.9000854492188,10.849785,10849.785 +38829,2025-03-11T21:46:02.241528-07:00,992.91455078125,10.851965,10851.965 +38830,2025-03-11T21:46:13.084735-07:00,992.9420166015625,10.843207,10843.207 +38831,2025-03-11T21:46:23.938535-07:00,992.9464721679688,10.8538,10853.8 +38832,2025-03-11T21:46:34.796058-07:00,992.912353515625,10.857523,10857.523 +38833,2025-03-11T21:46:45.650757-07:00,992.912353515625,10.854699,10854.699 +38834,2025-03-11T21:46:56.498621-07:00,992.9277954101562,10.847864,10847.864 +38835,2025-03-11T21:47:07.345843-07:00,992.9464721679688,10.847222,10847.222 +38836,2025-03-11T21:47:18.196995-07:00,992.9632568359375,10.851152,10851.152 +38837,2025-03-11T21:47:29.050051-07:00,992.9685668945312,10.853056,10853.056 +38838,2025-03-11T21:47:39.899997-07:00,992.94873046875,10.849946,10849.946 +38839,2025-03-11T21:47:50.763861-07:00,992.9685668945312,10.863864,10863.864 +38840,2025-03-11T21:48:01.607052-07:00,992.9765014648438,10.843191,10843.191 +38841,2025-03-11T21:48:12.461819-07:00,992.9420166015625,10.854767,10854.767 +38842,2025-03-11T21:48:23.316583-07:00,992.9664306640625,10.854764,10854.764 +38843,2025-03-11T21:48:34.166523-07:00,992.94873046875,10.84994,10849.94 +38844,2025-03-11T21:48:45.023590-07:00,992.950927734375,10.857067,10857.067 +38845,2025-03-11T21:48:55.863516-07:00,992.978759765625,10.839926,10839.926 +38846,2025-03-11T21:49:06.718651-07:00,992.9707641601562,10.855135,10855.135 +38847,2025-03-11T21:49:17.574525-07:00,992.974365234375,10.855874,10855.874 +38848,2025-03-11T21:49:28.420523-07:00,992.9730224609375,10.845998,10845.998 +38849,2025-03-11T21:49:39.278533-07:00,992.987548828125,10.85801,10858.01 +38850,2025-03-11T21:49:50.132509-07:00,992.9699096679688,10.853976,10853.976 +38851,2025-03-11T21:50:00.986671-07:00,993.0040893554688,10.854162,10854.162 +38852,2025-03-11T21:50:11.834750-07:00,992.970947265625,10.848079,10848.079 +38853,2025-03-11T21:50:22.692159-07:00,992.9863891601562,10.857409,10857.409 +38854,2025-03-11T21:50:33.548587-07:00,992.946533203125,10.856428,10856.428 +38855,2025-03-11T21:50:44.401019-07:00,993.0031127929688,10.852432,10852.432 +38856,2025-03-11T21:50:55.244585-07:00,992.96435546875,10.843566,10843.566 +38857,2025-03-11T21:51:06.099530-07:00,992.971923828125,10.854945,10854.945 +38858,2025-03-11T21:51:16.954529-07:00,992.98876953125,10.854999,10854.999 +38859,2025-03-11T21:51:27.807580-07:00,992.9697875976562,10.853051,10853.051 +38860,2025-03-11T21:51:38.662787-07:00,993.0117797851562,10.855207,10855.207 +38861,2025-03-11T21:51:49.514652-07:00,992.9742431640625,10.851865,10851.865 +38862,2025-03-11T21:52:00.360849-07:00,992.9600219726562,10.846197,10846.197 +38863,2025-03-11T21:52:11.214832-07:00,992.9896850585938,10.853983,10853.983 +38864,2025-03-11T21:52:22.064419-07:00,992.9765014648438,10.849587,10849.587 +38865,2025-03-11T21:52:32.918781-07:00,992.9777221679688,10.854362,10854.362 +38866,2025-03-11T21:52:43.773761-07:00,993.0064697265625,10.85498,10854.98 +38867,2025-03-11T21:52:54.620560-07:00,992.973388671875,10.846799,10846.799 +38868,2025-03-11T21:53:05.469510-07:00,992.973388671875,10.84895,10848.95 +38869,2025-03-11T21:53:16.329693-07:00,992.9743041992188,10.860183,10860.183 +38870,2025-03-11T21:53:27.173367-07:00,992.9556274414062,10.843674,10843.674 +38871,2025-03-11T21:53:38.021532-07:00,992.9500122070312,10.848165,10848.165 +38872,2025-03-11T21:53:48.871743-07:00,992.977783203125,10.850211,10850.211 +38873,2025-03-11T21:53:59.726701-07:00,992.977783203125,10.854958,10854.958 +38874,2025-03-11T21:54:10.574678-07:00,992.9500122070312,10.847977,10847.977 +38875,2025-03-11T21:54:21.436002-07:00,992.9234619140625,10.861324,10861.324 +38876,2025-03-11T21:54:32.289249-07:00,992.9247436523438,10.853247,10853.247 +38877,2025-03-11T21:54:43.141850-07:00,992.9159545898438,10.852601,10852.601 +38878,2025-03-11T21:54:53.997780-07:00,992.93798828125,10.85593,10855.93 +38879,2025-03-11T21:55:04.853726-07:00,992.9512329101562,10.855946,10855.946 +38880,2025-03-11T21:55:15.705526-07:00,992.9447021484375,10.8518,10851.8 +38881,2025-03-11T21:55:26.557754-07:00,992.9531860351562,10.852228,10852.228 +38882,2025-03-11T21:55:37.416754-07:00,992.9620361328125,10.859,10859.0 +38883,2025-03-11T21:55:48.270591-07:00,992.946533203125,10.853837,10853.837 +38884,2025-03-11T21:55:59.125634-07:00,992.9478149414062,10.855043,10855.043 +38885,2025-03-11T21:56:09.978525-07:00,992.932373046875,10.852891,10852.891 +38886,2025-03-11T21:56:20.833992-07:00,992.9213256835938,10.855467,10855.467 +38887,2025-03-11T21:56:31.682550-07:00,992.9014282226562,10.848558,10848.558 +38888,2025-03-11T21:56:42.538578-07:00,992.9620361328125,10.856028,10856.028 +38889,2025-03-11T21:56:53.382010-07:00,992.9598388671875,10.843432,10843.432 +38890,2025-03-11T21:57:04.235775-07:00,992.9531860351562,10.853765,10853.765 +38891,2025-03-11T21:57:15.096075-07:00,992.9531860351562,10.8603,10860.3 +38892,2025-03-11T21:57:25.947926-07:00,992.931396484375,10.851851,10851.851 +38893,2025-03-11T21:57:36.804094-07:00,992.978759765625,10.856168,10856.168 +38894,2025-03-11T21:57:47.659115-07:00,992.9664916992188,10.855021,10855.021 +38895,2025-03-11T21:57:58.516786-07:00,992.9434204101562,10.857671,10857.671 +38896,2025-03-11T21:58:09.369836-07:00,992.9456176757812,10.85305,10853.05 +38897,2025-03-11T21:58:20.228962-07:00,992.9844360351562,10.859126,10859.126 +38898,2025-03-11T21:58:31.085529-07:00,992.9996337890625,10.856567,10856.567 +38899,2025-03-11T21:58:41.931902-07:00,992.9699096679688,10.846373,10846.373 +38900,2025-03-11T21:58:52.791579-07:00,992.977783203125,10.859677,10859.677 +38901,2025-03-11T21:59:03.650578-07:00,992.9765625,10.858999,10858.999 +38902,2025-03-11T21:59:14.506722-07:00,992.9844360351562,10.856144,10856.144 +38903,2025-03-11T21:59:25.359645-07:00,993.0030517578125,10.852923,10852.923 +38904,2025-03-11T21:59:36.209534-07:00,992.9942016601562,10.849889,10849.889 +38905,2025-03-11T21:59:47.068600-07:00,993.029541015625,10.859066,10859.066 +38906,2025-03-11T21:59:57.918525-07:00,993.0007934570312,10.849925,10849.925 +38907,2025-03-11T22:00:08.775535-07:00,993.019775390625,10.85701,10857.01 +38908,2025-03-11T22:00:19.638568-07:00,993.0131225585938,10.863033,10863.033 +38909,2025-03-11T22:00:30.492557-07:00,993.025146484375,10.853989,10853.989 +38910,2025-03-11T22:00:41.351888-07:00,993.0162353515625,10.859331,10859.331 +38911,2025-03-11T22:00:52.197668-07:00,993.0052490234375,10.84578,10845.78 +38912,2025-03-11T22:01:03.056505-07:00,993.0162353515625,10.858837,10858.837 +38913,2025-03-11T22:01:13.913779-07:00,993.028564453125,10.857274,10857.274 +38914,2025-03-11T22:01:24.771521-07:00,993.029541015625,10.857742,10857.742 +38915,2025-03-11T22:01:35.624568-07:00,993.0670166015625,10.853047,10853.047 +38916,2025-03-11T22:01:46.489908-07:00,993.0537719726562,10.86534,10865.34 +38917,2025-03-11T22:01:57.338533-07:00,993.0471801757812,10.848625,10848.625 +38918,2025-03-11T22:02:08.200574-07:00,993.0595092773438,10.862041,10862.041 +38919,2025-03-11T22:02:19.059894-07:00,993.0604858398438,10.85932,10859.32 +38920,2025-03-11T22:02:29.902528-07:00,993.0582275390625,10.842634,10842.634 +38921,2025-03-11T22:02:40.762725-07:00,993.0704956054688,10.860197,10860.197 +38922,2025-03-11T22:02:51.619545-07:00,993.0714721679688,10.85682,10856.82 +38923,2025-03-11T22:03:02.470731-07:00,993.055908203125,10.851186,10851.186 +38924,2025-03-11T22:03:13.333883-07:00,993.0692138671875,10.863152,10863.152 +38925,2025-03-11T22:03:24.188850-07:00,993.0758666992188,10.854967,10854.967 +38926,2025-03-11T22:03:35.047092-07:00,993.0948486328125,10.858242,10858.242 +38927,2025-03-11T22:03:45.907580-07:00,993.060302734375,10.860488,10860.488 +38928,2025-03-11T22:03:56.761585-07:00,993.0714111328125,10.854005,10854.005 +38929,2025-03-11T22:04:07.611078-07:00,993.092529296875,10.849493,10849.493 +38930,2025-03-11T22:04:18.459621-07:00,993.1068115234375,10.848543,10848.543 +38931,2025-03-11T22:04:29.302771-07:00,993.0792846679688,10.84315,10843.15 +38932,2025-03-11T22:04:40.162573-07:00,993.0761108398438,10.859802,10859.802 +38933,2025-03-11T22:04:51.011527-07:00,993.04296875,10.848954,10848.954 +38934,2025-03-11T22:05:01.876612-07:00,993.0814208984375,10.865085,10865.085 +38935,2025-03-11T22:05:12.725605-07:00,993.088134765625,10.848993,10848.993 +38936,2025-03-11T22:05:23.587018-07:00,993.04736328125,10.861413,10861.413 +38937,2025-03-11T22:05:34.433574-07:00,993.0792236328125,10.846556,10846.556 +38938,2025-03-11T22:05:45.283840-07:00,993.0870971679688,10.850266,10850.266 +38939,2025-03-11T22:05:56.139528-07:00,993.09814453125,10.855688,10855.688 +38940,2025-03-11T22:06:06.997677-07:00,993.092529296875,10.858149,10858.149 +38941,2025-03-11T22:06:17.846520-07:00,993.091552734375,10.848843,10848.843 +38942,2025-03-11T22:06:28.702237-07:00,993.0703125,10.855717,10855.717 +38943,2025-03-11T22:06:39.556533-07:00,993.0892333984375,10.854296,10854.296 +38944,2025-03-11T22:06:50.416759-07:00,993.0870361328125,10.860226,10860.226 +38945,2025-03-11T22:07:01.258836-07:00,993.0946655273438,10.842077,10842.077 +38946,2025-03-11T22:07:12.130861-07:00,993.0791625976562,10.872025,10872.025 +38947,2025-03-11T22:07:22.982647-07:00,993.1056518554688,10.851786,10851.786 +38948,2025-03-11T22:07:33.842955-07:00,993.0892333984375,10.860308,10860.308 +38949,2025-03-11T22:07:44.699525-07:00,993.07470703125,10.85657,10856.57 +38950,2025-03-11T22:07:55.555984-07:00,993.0935668945312,10.856459,10856.459 +38951,2025-03-11T22:08:06.402936-07:00,993.085693359375,10.846952,10846.952 +38952,2025-03-11T22:08:17.253654-07:00,993.1056518554688,10.850718,10850.718 +38953,2025-03-11T22:08:28.114918-07:00,993.1201782226562,10.861264,10861.264 +38954,2025-03-11T22:08:38.972431-07:00,993.130126953125,10.857513,10857.513 +38955,2025-03-11T22:08:49.824411-07:00,993.1168823242188,10.85198,10851.98 +38956,2025-03-11T22:09:00.672653-07:00,993.1168823242188,10.848242,10848.242 +38957,2025-03-11T22:09:11.536437-07:00,993.106689453125,10.863784,10863.784 +38958,2025-03-11T22:09:22.378653-07:00,993.1134643554688,10.842216,10842.216 +38959,2025-03-11T22:09:33.239682-07:00,993.1177978515625,10.861029,10861.029 +38960,2025-03-11T22:09:44.096835-07:00,993.1177978515625,10.857153,10857.153 +38961,2025-03-11T22:09:54.947957-07:00,993.1221923828125,10.851122,10851.122 +38962,2025-03-11T22:10:05.801664-07:00,993.1287231445312,10.853707,10853.707 +38963,2025-03-11T22:10:16.658033-07:00,993.1265869140625,10.856369,10856.369 +38964,2025-03-11T22:10:27.510813-07:00,993.1123657226562,10.85278,10852.78 +38965,2025-03-11T22:10:38.363690-07:00,993.1454467773438,10.852877,10852.877 +38966,2025-03-11T22:10:49.217602-07:00,993.1640625,10.853912,10853.912 +38967,2025-03-11T22:11:00.075930-07:00,993.11669921875,10.858328,10858.328 +38968,2025-03-11T22:11:10.927702-07:00,993.1088256835938,10.851772,10851.772 +38969,2025-03-11T22:11:21.781963-07:00,993.1264038085938,10.854261,10854.261 +38970,2025-03-11T22:11:32.633807-07:00,993.1343994140625,10.851844,10851.844 +38971,2025-03-11T22:11:43.485884-07:00,993.1397094726562,10.852077,10852.077 +38972,2025-03-11T22:11:54.346900-07:00,993.1453247070312,10.861016,10861.016 +38973,2025-03-11T22:12:05.201670-07:00,993.1573486328125,10.85477,10854.77 +38974,2025-03-11T22:12:16.045893-07:00,993.12548828125,10.844223,10844.223 +38975,2025-03-11T22:12:26.903783-07:00,993.1573486328125,10.85789,10857.89 +38976,2025-03-11T22:12:37.753647-07:00,993.1409301757812,10.849864,10849.864 +38977,2025-03-11T22:12:48.607633-07:00,993.1222534179688,10.853986,10853.986 +38978,2025-03-11T22:12:59.462652-07:00,993.13330078125,10.855019,10855.019 +38979,2025-03-11T22:13:10.318065-07:00,993.174072265625,10.855413,10855.413 +38980,2025-03-11T22:13:21.167211-07:00,993.1531372070312,10.849146,10849.146 +38981,2025-03-11T22:13:32.026815-07:00,993.1929931640625,10.859604,10859.604 +38982,2025-03-11T22:13:42.886625-07:00,993.2062377929688,10.85981,10859.81 +38983,2025-03-11T22:13:53.736642-07:00,993.1973266601562,10.850017,10850.017 +38984,2025-03-11T22:14:04.583694-07:00,993.2039184570312,10.847052,10847.052 +38985,2025-03-11T22:14:15.436757-07:00,993.2159423828125,10.853063,10853.063 +38986,2025-03-11T22:14:26.287898-07:00,993.2215576171875,10.851141,10851.141 +38987,2025-03-11T22:14:37.149114-07:00,993.2623291015625,10.861216,10861.216 +38988,2025-03-11T22:14:47.992657-07:00,993.2546997070312,10.843543,10843.543 +38989,2025-03-11T22:14:58.849657-07:00,993.2525024414062,10.857,10857.0 +38990,2025-03-11T22:15:09.699518-07:00,993.2313232421875,10.849861,10849.861 +38991,2025-03-11T22:15:20.558839-07:00,993.2777099609375,10.859321,10859.321 +38992,2025-03-11T22:15:31.412974-07:00,993.2658081054688,10.854135,10854.135 +38993,2025-03-11T22:15:42.267658-07:00,993.2568969726562,10.854684,10854.684 +38994,2025-03-11T22:15:53.112260-07:00,993.2754516601562,10.844602,10844.602 +38995,2025-03-11T22:16:03.959990-07:00,993.26220703125,10.84773,10847.73 +38996,2025-03-11T22:16:14.808087-07:00,993.2400512695312,10.848097,10848.097 +38997,2025-03-11T22:16:25.669813-07:00,993.287841796875,10.861726,10861.726 +38998,2025-03-11T22:16:36.512708-07:00,993.265625,10.842895,10842.895 +38999,2025-03-11T22:16:47.365062-07:00,993.2987670898438,10.852354,10852.354 +39000,2025-03-11T22:16:58.215692-07:00,993.310791015625,10.85063,10850.63 +39001,2025-03-11T22:17:09.067871-07:00,993.315185546875,10.852179,10852.179 +39002,2025-03-11T22:17:19.918733-07:00,993.31640625,10.850862,10850.862 +39003,2025-03-11T22:17:30.765649-07:00,993.3074951171875,10.846916,10846.916 +39004,2025-03-11T22:17:41.617355-07:00,993.3141479492188,10.851706,10851.706 +39005,2025-03-11T22:17:52.471652-07:00,993.3330688476562,10.854297,10854.297 +39006,2025-03-11T22:18:03.330046-07:00,993.3009643554688,10.858394,10858.394 +39007,2025-03-11T22:18:14.182807-07:00,993.326416015625,10.852761,10852.761 +39008,2025-03-11T22:18:25.025907-07:00,993.298583984375,10.8431,10843.1 +39009,2025-03-11T22:18:35.876791-07:00,993.344970703125,10.850884,10850.884 +39010,2025-03-11T22:18:46.735976-07:00,993.3507080078125,10.859185,10859.185 +39011,2025-03-11T22:18:57.598867-07:00,993.341796875,10.862891,10862.891 +39012,2025-03-11T22:19:08.454803-07:00,993.375,10.855936,10855.936 +39013,2025-03-11T22:19:19.301787-07:00,993.3648681640625,10.846984,10846.984 +39014,2025-03-11T22:19:30.153899-07:00,993.3449096679688,10.852112,10852.112 +39015,2025-03-11T22:19:41.004764-07:00,993.3660888671875,10.850865,10850.865 +39016,2025-03-11T22:19:51.851440-07:00,993.358154296875,10.846676,10846.676 +39017,2025-03-11T22:20:02.706000-07:00,993.3505249023438,10.85456,10854.56 +39018,2025-03-11T22:20:13.557148-07:00,993.3284301757812,10.851148,10851.148 +39019,2025-03-11T22:20:24.399968-07:00,993.3029174804688,10.84282,10842.82 +39020,2025-03-11T22:20:35.254175-07:00,993.3417358398438,10.854207,10854.207 +39021,2025-03-11T22:20:46.101704-07:00,993.326171875,10.847529,10847.529 +39022,2025-03-11T22:20:56.952662-07:00,993.3460693359375,10.850958,10850.958 +39023,2025-03-11T22:21:07.805704-07:00,993.3513793945312,10.853042,10853.042 +39024,2025-03-11T22:21:18.659794-07:00,993.3447875976562,10.85409,10854.09 +39025,2025-03-11T22:21:29.501802-07:00,993.3173217773438,10.842008,10842.008 +39026,2025-03-11T22:21:40.351955-07:00,993.3359375,10.850153,10850.153 +39027,2025-03-11T22:21:51.195912-07:00,993.3150024414062,10.843957,10843.957 +39028,2025-03-11T22:22:02.061051-07:00,993.3150024414062,10.865139,10865.139 +39029,2025-03-11T22:22:12.910491-07:00,993.319091796875,10.84944,10849.44 +39030,2025-03-11T22:22:23.770998-07:00,993.352294921875,10.860507,10860.507 +39031,2025-03-11T22:22:34.620154-07:00,993.3668212890625,10.849156,10849.156 +39032,2025-03-11T22:22:45.476376-07:00,993.3446655273438,10.856222,10856.222 +39033,2025-03-11T22:22:56.321506-07:00,993.3512573242188,10.84513,10845.13 +39034,2025-03-11T22:23:07.172036-07:00,993.3499755859375,10.85053,10850.53 +39035,2025-03-11T22:23:18.029475-07:00,993.3566284179688,10.857439,10857.439 +39036,2025-03-11T22:23:28.878655-07:00,993.3423461914062,10.84918,10849.18 +39037,2025-03-11T22:23:39.731651-07:00,993.322509765625,10.852996,10852.996 +39038,2025-03-11T22:23:50.586838-07:00,993.3123168945312,10.855187,10855.187 +39039,2025-03-11T22:24:01.441891-07:00,993.345458984375,10.855053,10855.053 +39040,2025-03-11T22:24:12.301986-07:00,993.326904296875,10.860095,10860.095 +39041,2025-03-11T22:24:23.156114-07:00,993.3445434570312,10.854128,10854.128 +39042,2025-03-11T22:24:34.010640-07:00,993.3389282226562,10.854526,10854.526 +39043,2025-03-11T22:24:44.853652-07:00,993.3445434570312,10.843012,10843.012 +39044,2025-03-11T22:24:55.707907-07:00,993.3078002929688,10.854255,10854.255 +39045,2025-03-11T22:25:06.568785-07:00,993.3167114257812,10.860878,10860.878 +39046,2025-03-11T22:25:17.421653-07:00,993.3211059570312,10.852868,10852.868 +39047,2025-03-11T22:25:28.271004-07:00,993.3400268554688,10.849351,10849.351 +39048,2025-03-11T22:25:39.139335-07:00,993.3135375976562,10.868331,10868.331 +39049,2025-03-11T22:25:49.993073-07:00,993.3409423828125,10.853738,10853.738 +39050,2025-03-11T22:26:00.848416-07:00,993.3453369140625,10.855343,10855.343 +39051,2025-03-11T22:26:11.701107-07:00,993.3320922851562,10.852691,10852.691 +39052,2025-03-11T22:26:22.554168-07:00,993.325439453125,10.853061,10853.061 +39053,2025-03-11T22:26:33.410615-07:00,993.3231811523438,10.856447,10856.447 +39054,2025-03-11T22:26:44.264393-07:00,993.3231811523438,10.853778,10853.778 +39055,2025-03-11T22:26:55.117708-07:00,993.3033447265625,10.853315,10853.315 +39056,2025-03-11T22:27:05.974085-07:00,993.2670288085938,10.856377,10856.377 +39057,2025-03-11T22:27:16.817304-07:00,993.2593994140625,10.843219,10843.219 +39058,2025-03-11T22:27:27.669772-07:00,993.2659912109375,10.852468,10852.468 +39059,2025-03-11T22:27:38.524647-07:00,993.2593994140625,10.854875,10854.875 +39060,2025-03-11T22:27:49.376028-07:00,993.23828125,10.851381,10851.381 +39061,2025-03-11T22:28:00.222657-07:00,993.2846069335938,10.846629,10846.629 +39062,2025-03-11T22:28:11.076641-07:00,993.2372436523438,10.853984,10853.984 +39063,2025-03-11T22:28:21.926657-07:00,993.2846069335938,10.850016,10850.016 +39064,2025-03-11T22:28:32.779657-07:00,993.261474609375,10.853,10853.0 +39065,2025-03-11T22:28:43.630692-07:00,993.2416381835938,10.851035,10851.035 +39066,2025-03-11T22:28:54.486717-07:00,993.2402954101562,10.856025,10856.025 +39067,2025-03-11T22:29:05.350838-07:00,993.220458984375,10.864121,10864.121 +39068,2025-03-11T22:29:16.203051-07:00,993.2313842773438,10.852213,10852.213 +39069,2025-03-11T22:29:27.063650-07:00,993.2380981445312,10.860599,10860.599 +39070,2025-03-11T22:29:37.913653-07:00,993.2195434570312,10.850003,10850.003 +39071,2025-03-11T22:29:48.772899-07:00,993.2437744140625,10.859246,10859.246 +39072,2025-03-11T22:29:59.624658-07:00,993.2481079101562,10.851759,10851.759 +39073,2025-03-11T22:30:10.476798-07:00,993.2679443359375,10.85214,10852.14 +39074,2025-03-11T22:30:21.329905-07:00,993.2667236328125,10.853107,10853.107 +39075,2025-03-11T22:30:32.185701-07:00,993.2391967773438,10.855796,10855.796 +39076,2025-03-11T22:30:43.034653-07:00,993.245849609375,10.848952,10848.952 +39077,2025-03-11T22:30:53.888698-07:00,993.2723388671875,10.854045,10854.045 +39078,2025-03-11T22:31:04.746656-07:00,993.2658081054688,10.857958,10857.958 +39079,2025-03-11T22:31:15.597197-07:00,993.3187255859375,10.850541,10850.541 +39080,2025-03-11T22:31:26.442992-07:00,993.2909545898438,10.845795,10845.795 +39081,2025-03-11T22:31:37.301657-07:00,993.2899780273438,10.858665,10858.665 +39082,2025-03-11T22:31:48.159580-07:00,993.2754516601562,10.857923,10857.923 +39083,2025-03-11T22:31:59.016656-07:00,993.26123046875,10.857076,10857.076 +39084,2025-03-11T22:32:09.865649-07:00,993.3075561523438,10.848993,10848.993 +39085,2025-03-11T22:32:20.720778-07:00,993.32177734375,10.855129,10855.129 +39086,2025-03-11T22:32:31.571900-07:00,993.2876586914062,10.851122,10851.122 +39087,2025-03-11T22:32:42.417239-07:00,993.32080078125,10.845339,10845.339 +39088,2025-03-11T22:32:53.272009-07:00,993.2798461914062,10.85477,10854.77 +39089,2025-03-11T22:33:04.120734-07:00,993.2854614257812,10.848725,10848.725 +39090,2025-03-11T22:33:14.968868-07:00,993.2898559570312,10.848134,10848.134 +39091,2025-03-11T22:33:25.824824-07:00,993.3308715820312,10.855956,10855.956 +39092,2025-03-11T22:33:36.674347-07:00,993.3109130859375,10.849523,10849.523 +39093,2025-03-11T22:33:47.516043-07:00,993.3140869140625,10.841696,10841.696 +39094,2025-03-11T22:33:58.369647-07:00,993.3395385742188,10.853604,10853.604 +39095,2025-03-11T22:34:09.218653-07:00,993.375,10.849006,10849.006 +39096,2025-03-11T22:34:20.064230-07:00,993.3682861328125,10.845577,10845.577 +39097,2025-03-11T22:34:30.914077-07:00,993.3670043945312,10.849847,10849.847 +39098,2025-03-11T22:34:41.766163-07:00,993.3604736328125,10.852086,10852.086 +39099,2025-03-11T22:34:52.607707-07:00,993.3948364257812,10.841544,10841.544 +39100,2025-03-11T22:35:03.462630-07:00,993.3948364257812,10.854923,10854.923 +39101,2025-03-11T22:35:14.318894-07:00,993.3936157226562,10.856264,10856.264 +39102,2025-03-11T22:35:25.160801-07:00,993.4124145507812,10.841907,10841.907 +39103,2025-03-11T22:35:36.015649-07:00,993.3992309570312,10.854848,10854.848 +39104,2025-03-11T22:35:46.861657-07:00,993.404541015625,10.846008,10846.008 +39105,2025-03-11T22:35:57.712653-07:00,993.4177856445312,10.850996,10850.996 +39106,2025-03-11T22:36:08.565652-07:00,993.3836669921875,10.852999,10852.999 +39107,2025-03-11T22:36:19.418651-07:00,993.3992309570312,10.852999,10852.999 +39108,2025-03-11T22:36:30.268576-07:00,993.403564453125,10.849925,10849.925 +39109,2025-03-11T22:36:41.124567-07:00,993.432373046875,10.855991,10855.991 +39110,2025-03-11T22:36:51.970923-07:00,993.3912353515625,10.846356,10846.356 +39111,2025-03-11T22:37:02.820916-07:00,993.3836669921875,10.849993,10849.993 +39112,2025-03-11T22:37:13.672060-07:00,993.4234619140625,10.851144,10851.144 +39113,2025-03-11T22:37:24.530944-07:00,993.3956298828125,10.858884,10858.884 +39114,2025-03-11T22:37:35.373717-07:00,993.3890380859375,10.842773,10842.773 +39115,2025-03-11T22:37:46.224655-07:00,993.38232421875,10.850938,10850.938 +39116,2025-03-11T22:37:57.081899-07:00,993.3903198242188,10.857244,10857.244 +39117,2025-03-11T22:38:07.931654-07:00,993.36376953125,10.849755,10849.755 +39118,2025-03-11T22:38:18.778708-07:00,993.3681030273438,10.847054,10847.054 +39119,2025-03-11T22:38:29.638652-07:00,993.3880615234375,10.859944,10859.944 +39120,2025-03-11T22:38:40.485930-07:00,993.4000244140625,10.847278,10847.278 +39121,2025-03-11T22:38:51.332795-07:00,993.4066162109375,10.846865,10846.865 +39122,2025-03-11T22:39:02.186657-07:00,993.4066162109375,10.853862,10853.862 +39123,2025-03-11T22:39:13.035656-07:00,993.380126953125,10.848999,10848.999 +39124,2025-03-11T22:39:23.884005-07:00,993.3947143554688,10.848349,10848.349 +39125,2025-03-11T22:39:34.744540-07:00,993.3403930664062,10.860535,10860.535 +39126,2025-03-11T22:39:45.593051-07:00,993.3880615234375,10.848511,10848.511 +39127,2025-03-11T22:39:56.442567-07:00,993.3724975585938,10.849516,10849.516 +39128,2025-03-11T22:40:07.290679-07:00,993.3724975585938,10.848112,10848.112 +39129,2025-03-11T22:40:18.138652-07:00,993.380126953125,10.847973,10847.973 +39130,2025-03-11T22:40:28.998751-07:00,993.3526611328125,10.860099,10860.099 +39131,2025-03-11T22:40:39.845656-07:00,993.384521484375,10.846905,10846.905 +39132,2025-03-11T22:40:50.696632-07:00,993.3570556640625,10.850976,10850.976 +39133,2025-03-11T22:41:01.544656-07:00,993.3216552734375,10.848024,10848.024 +39134,2025-03-11T22:41:12.399801-07:00,993.3172607421875,10.855145,10855.145 +39135,2025-03-11T22:41:23.243651-07:00,993.3314819335938,10.84385,10843.85 +39136,2025-03-11T22:41:34.094393-07:00,993.34375,10.850742,10850.742 +39137,2025-03-11T22:41:44.931969-07:00,993.3570556640625,10.837576,10837.576 +39138,2025-03-11T22:41:55.787976-07:00,993.337158203125,10.856007,10856.007 +39139,2025-03-11T22:42:06.630719-07:00,993.3292236328125,10.842743,10842.743 +39140,2025-03-11T22:42:17.486825-07:00,993.3460083007812,10.856106,10856.106 +39141,2025-03-11T22:42:28.340109-07:00,993.3283081054688,10.853284,10853.284 +39142,2025-03-11T22:42:39.185762-07:00,993.3504028320312,10.845653,10845.653 +39143,2025-03-11T22:42:50.027170-07:00,993.3504028320312,10.841408,10841.408 +39144,2025-03-11T22:43:00.877647-07:00,993.3490600585938,10.850477,10850.477 +39145,2025-03-11T22:43:11.732651-07:00,993.34814453125,10.855004,10855.004 +39146,2025-03-11T22:43:22.580035-07:00,993.3358764648438,10.847384,10847.384 +39147,2025-03-11T22:43:33.434476-07:00,993.36669921875,10.854441,10854.441 +39148,2025-03-11T22:43:44.289064-07:00,993.3270263671875,10.854588,10854.588 +39149,2025-03-11T22:43:55.132971-07:00,993.3534545898438,10.843907,10843.907 +39150,2025-03-11T22:44:05.973886-07:00,993.3458862304688,10.840915,10840.915 +39151,2025-03-11T22:44:16.818889-07:00,993.3515625,10.845003,10845.003 +39152,2025-03-11T22:44:27.671662-07:00,993.3515625,10.852773,10852.773 +39153,2025-03-11T22:44:38.521652-07:00,993.333740234375,10.84999,10849.99 +39154,2025-03-11T22:44:49.362895-07:00,993.345703125,10.841243,10841.243 +39155,2025-03-11T22:45:00.212916-07:00,993.3602294921875,10.850021,10850.021 +39156,2025-03-11T22:45:11.055709-07:00,993.3470458984375,10.842793,10842.793 +39157,2025-03-11T22:45:21.906811-07:00,993.3523559570312,10.851102,10851.102 +39158,2025-03-11T22:45:32.750147-07:00,993.368896484375,10.843336,10843.336 +39159,2025-03-11T22:45:43.591365-07:00,993.356689453125,10.841218,10841.218 +39160,2025-03-11T22:45:54.439974-07:00,993.3269653320312,10.848609,10848.609 +39161,2025-03-11T22:46:05.277963-07:00,993.361083984375,10.837989,10837.989 +39162,2025-03-11T22:46:16.125646-07:00,993.3389282226562,10.847683,10847.683 +39163,2025-03-11T22:46:26.968248-07:00,993.3941650390625,10.842602,10842.602 +39164,2025-03-11T22:46:37.811658-07:00,993.3799438476562,10.84341,10843.41 +39165,2025-03-11T22:46:48.650527-07:00,993.3909301757812,10.838869,10838.869 +39166,2025-03-11T22:46:59.499828-07:00,993.3555297851562,10.849301,10849.301 +39167,2025-03-11T22:47:10.345364-07:00,993.38427734375,10.845536,10845.536 +39168,2025-03-11T22:47:21.194789-07:00,993.348876953125,10.849425,10849.425 +39169,2025-03-11T22:47:32.037894-07:00,993.3674926757812,10.843105,10843.105 +39170,2025-03-11T22:47:42.876393-07:00,993.35986328125,10.838499,10838.499 +39171,2025-03-11T22:47:53.724692-07:00,993.3387451171875,10.848299,10848.299 +39172,2025-03-11T22:48:04.561701-07:00,993.3731079101562,10.837009,10837.009 +39173,2025-03-11T22:48:15.413880-07:00,993.3775024414062,10.852179,10852.179 +39174,2025-03-11T22:48:26.257885-07:00,993.3908081054688,10.844005,10844.005 +39175,2025-03-11T22:48:37.098914-07:00,993.4039916992188,10.841029,10841.029 +39176,2025-03-11T22:48:47.937789-07:00,993.36328125,10.838875,10838.875 +39177,2025-03-11T22:48:58.789860-07:00,993.4140014648438,10.852071,10852.071 +39178,2025-03-11T22:49:09.626983-07:00,993.380859375,10.837123,10837.123 +39179,2025-03-11T22:49:20.476634-07:00,993.4082641601562,10.849651,10849.651 +39180,2025-03-11T22:49:31.320139-07:00,993.3950805664062,10.843505,10843.505 +39181,2025-03-11T22:49:42.166752-07:00,993.39404296875,10.846613,10846.613 +39182,2025-03-11T22:49:53.008775-07:00,993.3984375,10.842023,10842.023 +39183,2025-03-11T22:50:03.852692-07:00,993.3984375,10.843917,10843.917 +39184,2025-03-11T22:50:14.691657-07:00,993.4170532226562,10.838965,10838.965 +39185,2025-03-11T22:50:25.534366-07:00,993.3630981445312,10.842709,10842.709 +39186,2025-03-11T22:50:36.372895-07:00,993.3696899414062,10.838529,10838.529 +39187,2025-03-11T22:50:47.220651-07:00,993.3948974609375,10.847756,10847.756 +39188,2025-03-11T22:50:58.056086-07:00,993.42138671875,10.835435,10835.435 +39189,2025-03-11T22:51:08.907139-07:00,993.438232421875,10.851053,10851.053 +39190,2025-03-11T22:51:19.748634-07:00,993.42138671875,10.841495,10841.495 +39191,2025-03-11T22:51:30.590656-07:00,993.4137573242188,10.842022,10842.022 +39192,2025-03-11T22:51:41.428657-07:00,993.444580078125,10.838001,10838.001 +39193,2025-03-11T22:51:52.280440-07:00,993.42578125,10.851783,10851.783 +39194,2025-03-11T22:52:03.112736-07:00,993.3926391601562,10.832296,10832.296 +39195,2025-03-11T22:52:13.958698-07:00,993.4102172851562,10.845962,10845.962 +39196,2025-03-11T22:52:24.795705-07:00,993.4102172851562,10.837007,10837.007 +39197,2025-03-11T22:52:35.637901-07:00,993.4500122070312,10.842196,10842.196 +39198,2025-03-11T22:52:46.476652-07:00,993.403564453125,10.838751,10838.751 +39199,2025-03-11T22:52:57.319658-07:00,993.389404296875,10.843006,10843.006 +39200,2025-03-11T22:53:08.151937-07:00,993.3695068359375,10.832279,10832.279 +39201,2025-03-11T22:53:19.001257-07:00,993.4013061523438,10.84932,10849.32 +39202,2025-03-11T22:53:29.848734-07:00,993.4013061523438,10.847477,10847.477 +39203,2025-03-11T22:53:40.683785-07:00,993.3739013671875,10.835051,10835.051 +39204,2025-03-11T22:53:51.528973-07:00,993.41455078125,10.845188,10845.188 +39205,2025-03-11T22:54:02.377957-07:00,993.3858032226562,10.848984,10848.984 +39206,2025-03-11T22:54:13.221286-07:00,993.3914794921875,10.843329,10843.329 +39207,2025-03-11T22:54:24.075356-07:00,993.3848266601562,10.85407,10854.07 +39208,2025-03-11T22:54:34.913630-07:00,993.3792114257812,10.838274,10838.274 +39209,2025-03-11T22:54:45.748691-07:00,993.364990234375,10.835061,10835.061 +39210,2025-03-11T22:54:56.588374-07:00,993.3494262695312,10.839683,10839.683 +39211,2025-03-11T22:55:07.431844-07:00,993.3428344726562,10.84347,10843.47 +39212,2025-03-11T22:55:18.281768-07:00,993.369384765625,10.849924,10849.924 +39213,2025-03-11T22:55:29.122897-07:00,993.3484497070312,10.841129,10841.129 +39214,2025-03-11T22:55:39.966051-07:00,993.3428344726562,10.843154,10843.154 +39215,2025-03-11T22:55:50.820057-07:00,993.3736572265625,10.854006,10854.006 +39216,2025-03-11T22:56:01.663660-07:00,993.3560791015625,10.843603,10843.603 +39217,2025-03-11T22:56:12.511653-07:00,993.2954711914062,10.847993,10847.993 +39218,2025-03-11T22:56:23.359072-07:00,993.3263549804688,10.847419,10847.419 +39219,2025-03-11T22:56:34.204775-07:00,993.3263549804688,10.845703,10845.703 +39220,2025-03-11T22:56:45.054893-07:00,993.3660888671875,10.850118,10850.118 +39221,2025-03-11T22:56:55.900894-07:00,993.3382568359375,10.846001,10846.001 +39222,2025-03-11T22:57:06.739267-07:00,993.3306884765625,10.838373,10838.373 +39223,2025-03-11T22:57:17.577647-07:00,993.3317260742188,10.83838,10838.38 +39224,2025-03-11T22:57:28.415649-07:00,993.36376953125,10.838002,10838.002 +39225,2025-03-11T22:57:39.265092-07:00,993.3426513671875,10.849443,10849.443 +39226,2025-03-11T22:57:50.104920-07:00,993.32177734375,10.839828,10839.828 +39227,2025-03-11T22:58:00.940923-07:00,993.3350219726562,10.836003,10836.003 +39228,2025-03-11T22:58:11.790657-07:00,993.329345703125,10.849734,10849.734 +39229,2025-03-11T22:58:22.633917-07:00,993.31298828125,10.84326,10843.26 +39230,2025-03-11T22:58:33.477862-07:00,993.31298828125,10.843945,10843.945 +39231,2025-03-11T22:58:44.313652-07:00,993.3314819335938,10.83579,10835.79 +39232,2025-03-11T22:58:55.146245-07:00,993.3172607421875,10.832593,10832.593 +39233,2025-03-11T22:59:05.990776-07:00,993.3357543945312,10.844531,10844.531 +39234,2025-03-11T22:59:16.826654-07:00,993.3304443359375,10.835878,10835.878 +39235,2025-03-11T22:59:27.676650-07:00,993.3239135742188,10.849996,10849.996 +39236,2025-03-11T22:59:38.520653-07:00,993.3414916992188,10.844003,10844.003 +39237,2025-03-11T22:59:49.358014-07:00,993.3150024414062,10.837361,10837.361 +39238,2025-03-11T23:00:00.205818-07:00,993.321533203125,10.847804,10847.804 +39239,2025-03-11T23:00:11.047134-07:00,993.313720703125,10.841316,10841.316 +39240,2025-03-11T23:00:21.893063-07:00,993.2991943359375,10.845929,10845.929 +39241,2025-03-11T23:00:32.740010-07:00,993.3348388671875,10.846947,10846.947 +39242,2025-03-11T23:00:43.580094-07:00,993.319091796875,10.840084,10840.084 +39243,2025-03-11T23:00:54.429189-07:00,993.319091796875,10.849095,10849.095 +39244,2025-03-11T23:01:05.276486-07:00,993.336669921875,10.847297,10847.297 +39245,2025-03-11T23:01:16.118729-07:00,993.337646484375,10.842243,10842.243 +39246,2025-03-11T23:01:26.967087-07:00,993.3244018554688,10.848358,10848.358 +39247,2025-03-11T23:01:37.809659-07:00,993.2959594726562,10.842572,10842.572 +39248,2025-03-11T23:01:48.659046-07:00,993.3343505859375,10.849387,10849.387 +39249,2025-03-11T23:01:59.497700-07:00,993.3145141601562,10.838654,10838.654 +39250,2025-03-11T23:02:10.345899-07:00,993.3343505859375,10.848199,10848.199 +39251,2025-03-11T23:02:21.186961-07:00,993.3211059570312,10.841062,10841.062 +39252,2025-03-11T23:02:32.036936-07:00,993.3409423828125,10.849975,10849.975 +39253,2025-03-11T23:02:42.886656-07:00,993.3078002929688,10.84972,10849.72 +39254,2025-03-11T23:02:53.729236-07:00,993.306884765625,10.84258,10842.58 +39255,2025-03-11T23:03:04.571652-07:00,993.3277587890625,10.842416,10842.416 +39256,2025-03-11T23:03:15.416891-07:00,993.3453369140625,10.845239,10845.239 +39257,2025-03-11T23:03:26.264210-07:00,993.3443603515625,10.847319,10847.319 +39258,2025-03-11T23:03:37.105900-07:00,993.33203125,10.84169,10841.69 +39259,2025-03-11T23:03:47.949992-07:00,993.3178100585938,10.844092,10844.092 +39260,2025-03-11T23:03:58.799317-07:00,993.3311157226562,10.849325,10849.325 +39261,2025-03-11T23:04:09.647698-07:00,993.2966918945312,10.848381,10848.381 +39262,2025-03-11T23:04:20.484634-07:00,993.2570190429688,10.836936,10836.936 +39263,2025-03-11T23:04:31.333711-07:00,993.2913818359375,10.849077,10849.077 +39264,2025-03-11T23:04:42.183241-07:00,993.270263671875,10.84953,10849.53 +39265,2025-03-11T23:04:53.019545-07:00,993.282470703125,10.836304,10836.304 +39266,2025-03-11T23:05:03.862634-07:00,993.2626342773438,10.843089,10843.089 +39267,2025-03-11T23:05:14.714653-07:00,993.2162475585938,10.852019,10852.019 +39268,2025-03-11T23:05:25.556881-07:00,993.2427978515625,10.842228,10842.228 +39269,2025-03-11T23:05:36.401652-07:00,993.27587890625,10.844771,10844.771 +39270,2025-03-11T23:05:47.241732-07:00,993.23388671875,10.84008,10840.08 +39271,2025-03-11T23:05:58.084651-07:00,993.2481079101562,10.842919,10842.919 +39272,2025-03-11T23:06:08.924760-07:00,993.2271728515625,10.840109,10840.109 +39273,2025-03-11T23:06:19.775083-07:00,993.2215576171875,10.850323,10850.323 +39274,2025-03-11T23:06:30.612815-07:00,993.2259521484375,10.837732,10837.732 +39275,2025-03-11T23:06:41.462812-07:00,993.23486328125,10.849997,10849.997 +39276,2025-03-11T23:06:52.293641-07:00,993.25244140625,10.830829,10830.829 +39277,2025-03-11T23:07:03.140653-07:00,993.1984252929688,10.847012,10847.012 +39278,2025-03-11T23:07:14.020506-07:00,993.212646484375,10.879853,10879.853 +39279,2025-03-11T23:07:24.861766-07:00,993.2259521484375,10.84126,10841.26 +39280,2025-03-11T23:07:35.699512-07:00,993.2249755859375,10.837746,10837.746 +39281,2025-03-11T23:07:46.549440-07:00,993.21044921875,10.849928,10849.928 +39282,2025-03-11T23:07:57.385596-07:00,993.2236938476562,10.836156,10836.156 +39283,2025-03-11T23:08:08.235740-07:00,993.244873046875,10.850144,10850.144 +39284,2025-03-11T23:08:19.065332-07:00,993.1817016601562,10.829592,10829.592 +39285,2025-03-11T23:08:29.903594-07:00,993.203857421875,10.838262,10838.262 +39286,2025-03-11T23:08:40.745619-07:00,993.2302856445312,10.842025,10842.025 +39287,2025-03-11T23:08:51.589317-07:00,993.2435913085938,10.843698,10843.698 +39288,2025-03-11T23:09:02.428429-07:00,993.2435913085938,10.839112,10839.112 +39289,2025-03-11T23:09:13.268676-07:00,993.2081298828125,10.840247,10840.247 +39290,2025-03-11T23:09:24.106470-07:00,993.2015380859375,10.837794,10837.794 +39291,2025-03-11T23:09:34.949263-07:00,993.2478637695312,10.842793,10842.793 +39292,2025-03-11T23:09:45.798289-07:00,993.263427734375,10.849026,10849.026 +39293,2025-03-11T23:09:56.631283-07:00,993.2424926757812,10.832994,10832.994 +39294,2025-03-11T23:10:07.479631-07:00,993.2279663085938,10.848348,10848.348 +39295,2025-03-11T23:10:18.319251-07:00,993.2293090820312,10.83962,10839.62 +39296,2025-03-11T23:10:29.161779-07:00,993.2601318359375,10.842528,10842.528 +39297,2025-03-11T23:10:39.997625-07:00,993.2535400390625,10.835846,10835.846 +39298,2025-03-11T23:10:50.836265-07:00,993.2733764648438,10.83864,10838.64 +39299,2025-03-11T23:11:01.678282-07:00,993.2535400390625,10.842017,10842.017 +39300,2025-03-11T23:11:12.521516-07:00,993.252197265625,10.843234,10843.234 +39301,2025-03-11T23:11:23.359330-07:00,993.252197265625,10.837814,10837.814 +39302,2025-03-11T23:11:34.190377-07:00,993.24462890625,10.831047,10831.047 +39303,2025-03-11T23:11:45.033524-07:00,993.24462890625,10.843147,10843.147 +39304,2025-03-11T23:11:55.876606-07:00,993.2247924804688,10.843082,10843.082 +39305,2025-03-11T23:12:06.725121-07:00,993.2357788085938,10.848515,10848.515 +39306,2025-03-11T23:12:17.561555-07:00,993.2843627929688,10.836434,10836.434 +39307,2025-03-11T23:12:28.403596-07:00,993.2711181640625,10.842041,10842.041 +39308,2025-03-11T23:12:39.249691-07:00,993.255615234375,10.846095,10846.095 +39309,2025-03-11T23:12:50.090825-07:00,993.2357788085938,10.841134,10841.134 +39310,2025-03-11T23:13:00.929279-07:00,993.2489624023438,10.838454,10838.454 +39311,2025-03-11T23:13:11.773382-07:00,993.26123046875,10.844103,10844.103 +39312,2025-03-11T23:13:22.617285-07:00,993.213623046875,10.843903,10843.903 +39313,2025-03-11T23:13:33.455607-07:00,993.2268676757812,10.838322,10838.322 +39314,2025-03-11T23:13:44.295276-07:00,993.21923828125,10.839669,10839.669 +39315,2025-03-11T23:13:55.137290-07:00,993.1860961914062,10.842014,10842.014 +39316,2025-03-11T23:14:05.974817-07:00,993.20263671875,10.837527,10837.527 +39317,2025-03-11T23:14:16.824607-07:00,993.2214965820312,10.84979,10849.79 +39318,2025-03-11T23:14:27.662598-07:00,993.20703125,10.837991,10837.991 +39319,2025-03-11T23:14:38.498760-07:00,993.2214965820312,10.836162,10836.162 +39320,2025-03-11T23:14:49.344533-07:00,993.20703125,10.845773,10845.773 +39321,2025-03-11T23:15:00.180287-07:00,993.1884155273438,10.835754,10835.754 +39322,2025-03-11T23:15:11.013431-07:00,993.1871337890625,10.833144,10833.144 +39323,2025-03-11T23:15:21.859789-07:00,993.184814453125,10.846358,10846.358 +39324,2025-03-11T23:15:32.699470-07:00,993.170654296875,10.839681,10839.681 +39325,2025-03-11T23:15:43.534761-07:00,993.1649780273438,10.835291,10835.291 +39326,2025-03-11T23:15:54.380289-07:00,993.170654296875,10.845528,10845.528 +39327,2025-03-11T23:16:05.217747-07:00,993.1771850585938,10.837458,10837.458 +39328,2025-03-11T23:16:16.058795-07:00,993.170654296875,10.841048,10841.048 +39329,2025-03-11T23:16:26.908337-07:00,993.1560668945312,10.849542,10849.542 +39330,2025-03-11T23:16:37.747208-07:00,993.1782836914062,10.838871,10838.871 +39331,2025-03-11T23:16:48.595290-07:00,993.1838989257812,10.848082,10848.082 +39332,2025-03-11T23:16:59.427333-07:00,993.1507568359375,10.832043,10832.043 +39333,2025-03-11T23:17:10.269279-07:00,993.142822265625,10.841946,10841.946 +39334,2025-03-11T23:17:21.111289-07:00,993.1494750976562,10.84201,10842.01 +39335,2025-03-11T23:17:31.944315-07:00,993.1560668945312,10.833026,10833.026 +39336,2025-03-11T23:17:42.793287-07:00,993.1484375,10.848972,10848.972 +39337,2025-03-11T23:17:53.629290-07:00,993.1551513671875,10.836003,10836.003 +39338,2025-03-11T23:18:04.476450-07:00,993.1838989257812,10.84716,10847.16 +39339,2025-03-11T23:18:15.316607-07:00,993.1640014648438,10.840157,10840.157 +39340,2025-03-11T23:18:26.155480-07:00,993.1749877929688,10.838873,10838.873 +39341,2025-03-11T23:18:36.984615-07:00,993.1838989257812,10.829135,10829.135 +39342,2025-03-11T23:18:47.828607-07:00,993.1693725585938,10.843992,10843.992 +39343,2025-03-11T23:18:58.665935-07:00,993.1551513671875,10.837328,10837.328 +39344,2025-03-11T23:19:09.503425-07:00,993.142822265625,10.83749,10837.49 +39345,2025-03-11T23:19:20.340693-07:00,993.1286010742188,10.837268,10837.268 +39346,2025-03-11T23:19:31.188944-07:00,993.1484375,10.848251,10848.251 +39347,2025-03-11T23:19:42.020284-07:00,993.1604614257812,10.83134,10831.34 +39348,2025-03-11T23:19:52.863571-07:00,993.147216796875,10.843287,10843.287 +39349,2025-03-11T23:20:03.708763-07:00,993.1264038085938,10.845192,10845.192 +39350,2025-03-11T23:20:14.543456-07:00,993.1395874023438,10.834693,10834.693 +39351,2025-03-11T23:20:25.375432-07:00,993.1329956054688,10.831976,10831.976 +39352,2025-03-11T23:20:36.219621-07:00,993.1448974609375,10.844189,10844.189 +39353,2025-03-11T23:20:47.055534-07:00,993.1793212890625,10.835913,10835.913 +39354,2025-03-11T23:20:57.892752-07:00,993.177978515625,10.837218,10837.218 +39355,2025-03-11T23:21:08.736569-07:00,993.17138671875,10.843817,10843.817 +39356,2025-03-11T23:21:19.580607-07:00,993.1637573242188,10.844038,10844.038 +39357,2025-03-11T23:21:30.427282-07:00,993.1439208984375,10.846675,10846.675 +39358,2025-03-11T23:21:41.266467-07:00,993.1691284179688,10.839185,10839.185 +39359,2025-03-11T23:21:52.114285-07:00,993.2012329101562,10.847818,10847.818 +39360,2025-03-11T23:22:02.951893-07:00,993.18359375,10.837608,10837.608 +39361,2025-03-11T23:22:13.802099-07:00,993.2154541015625,10.850206,10850.206 +39362,2025-03-11T23:22:24.634347-07:00,993.182373046875,10.832248,10832.248 +39363,2025-03-11T23:22:35.477267-07:00,993.2022094726562,10.84292,10842.92 +39364,2025-03-11T23:22:46.306339-07:00,993.1800537109375,10.829072,10829.072 +39365,2025-03-11T23:22:57.149932-07:00,993.20654296875,10.843593,10843.593 +39366,2025-03-11T23:23:07.983290-07:00,993.2012329101562,10.833358,10833.358 +39367,2025-03-11T23:23:18.826275-07:00,993.181396484375,10.842985,10842.985 +39368,2025-03-11T23:23:29.673555-07:00,993.1615600585938,10.84728,10847.28 +39369,2025-03-11T23:23:40.511287-07:00,993.171142578125,10.837732,10837.732 +39370,2025-03-11T23:24:02.192017-07:00,993.199951171875,21.68073,21680.73 +39371,2025-03-11T23:24:13.040339-07:00,993.1843872070312,10.848322,10848.322 +39372,2025-03-11T23:24:23.874280-07:00,993.212158203125,10.833941,10833.941 +39373,2025-03-11T23:24:34.715281-07:00,993.1777954101562,10.841001,10841.001 +39374,2025-03-11T23:24:45.552713-07:00,993.156982421875,10.837432,10837.432 +39375,2025-03-11T23:24:56.389479-07:00,993.1688842773438,10.836766,10836.766 +39376,2025-03-11T23:25:07.229016-07:00,993.2020263671875,10.839537,10839.537 +39377,2025-03-11T23:25:18.068470-07:00,993.174560546875,10.839454,10839.454 +39378,2025-03-11T23:25:28.902508-07:00,993.2009887695312,10.834038,10834.038 +39379,2025-03-11T23:25:39.734619-07:00,993.1878051757812,10.832111,10832.111 +39380,2025-03-11T23:25:50.571513-07:00,993.192138671875,10.836894,10836.894 +39381,2025-03-11T23:26:01.412287-07:00,993.2185668945312,10.840774,10840.774 +39382,2025-03-11T23:26:12.259493-07:00,993.21630859375,10.847206,10847.206 +39383,2025-03-11T23:26:23.096604-07:00,993.203125,10.837111,10837.111 +39384,2025-03-11T23:26:33.931578-07:00,993.1954956054688,10.834974,10834.974 +39385,2025-03-11T23:26:44.775546-07:00,993.2295532226562,10.843968,10843.968 +39386,2025-03-11T23:26:55.622291-07:00,993.2020874023438,10.846745,10846.745 +39387,2025-03-11T23:27:06.465860-07:00,993.2073974609375,10.843569,10843.569 +39388,2025-03-11T23:27:17.300488-07:00,993.2073974609375,10.834628,10834.628 +39389,2025-03-11T23:27:28.145288-07:00,993.16015625,10.8448,10844.8 +39390,2025-03-11T23:27:38.993426-07:00,993.2130737304688,10.848138,10848.138 +39391,2025-03-11T23:27:49.828465-07:00,993.239501953125,10.835039,10835.039 +39392,2025-03-11T23:28:00.659521-07:00,993.23291015625,10.831056,10831.056 +39393,2025-03-11T23:28:11.502844-07:00,993.2315673828125,10.843323,10843.323 +39394,2025-03-11T23:28:22.346625-07:00,993.2315673828125,10.843781,10843.781 +39395,2025-03-11T23:28:33.189327-07:00,993.243896484375,10.842702,10842.702 +39396,2025-03-11T23:28:44.030422-07:00,993.2306518554688,10.841095,10841.095 +39397,2025-03-11T23:28:54.865178-07:00,993.2492065429688,10.834756,10834.756 +39398,2025-03-11T23:29:05.712138-07:00,993.2822875976562,10.84696,10846.96 +39399,2025-03-11T23:29:16.546292-07:00,993.262451171875,10.834154,10834.154 +39400,2025-03-11T23:29:27.390280-07:00,993.2968139648438,10.843988,10843.988 +39401,2025-03-11T23:29:38.240286-07:00,993.274658203125,10.850006,10850.006 +39402,2025-03-11T23:29:49.079873-07:00,993.3010864257812,10.839587,10839.587 +39403,2025-03-11T23:29:59.923565-07:00,993.3021850585938,10.843692,10843.692 +39404,2025-03-11T23:30:10.771705-07:00,993.2888793945312,10.84814,10848.14 +39405,2025-03-11T23:30:21.607400-07:00,993.2954711914062,10.835695,10835.695 +39406,2025-03-11T23:30:32.457763-07:00,993.2945556640625,10.850363,10850.363 +39407,2025-03-11T23:30:43.306685-07:00,993.3153076171875,10.848922,10848.922 +39408,2025-03-11T23:30:54.144280-07:00,993.2865600585938,10.837595,10837.595 +39409,2025-03-11T23:31:04.985257-07:00,993.3153076171875,10.840977,10840.977 +39410,2025-03-11T23:31:15.831304-07:00,993.3121337890625,10.846047,10846.047 +39411,2025-03-11T23:31:26.678588-07:00,993.2658081054688,10.847284,10847.284 +39412,2025-03-11T23:31:37.516722-07:00,993.2998657226562,10.838134,10838.134 +39413,2025-03-11T23:31:48.364680-07:00,993.2865600585938,10.847958,10847.958 +39414,2025-03-11T23:31:59.203278-07:00,993.310791015625,10.838598,10838.598 +39415,2025-03-11T23:32:10.045288-07:00,993.297607421875,10.84201,10842.01 +39416,2025-03-11T23:32:20.893663-07:00,993.28564453125,10.848375,10848.375 +39417,2025-03-11T23:32:31.723337-07:00,993.3054809570312,10.829674,10829.674 +39418,2025-03-11T23:32:42.564284-07:00,993.310791015625,10.840947,10840.947 +39419,2025-03-11T23:32:53.411289-07:00,993.2988891601562,10.847005,10847.005 +39420,2025-03-11T23:33:04.249479-07:00,993.279052734375,10.83819,10838.19 +39421,2025-03-11T23:33:15.093644-07:00,993.28564453125,10.844165,10844.165 +39422,2025-03-11T23:33:25.934650-07:00,993.2578125,10.841006,10841.006 +39423,2025-03-11T23:33:36.783494-07:00,993.2777099609375,10.848844,10848.844 +39424,2025-03-11T23:33:47.622559-07:00,993.2723388671875,10.839065,10839.065 +39425,2025-03-11T23:33:58.476918-07:00,993.3372802734375,10.854359,10854.359 +39426,2025-03-11T23:34:09.316372-07:00,993.30322265625,10.839454,10839.454 +39427,2025-03-11T23:34:20.162269-07:00,993.2965698242188,10.845897,10845.897 +39428,2025-03-11T23:34:30.999694-07:00,993.2899780273438,10.837425,10837.425 +39429,2025-03-11T23:34:41.850439-07:00,993.2767333984375,10.850745,10850.745 +39430,2025-03-11T23:34:52.695885-07:00,993.2965698242188,10.845446,10845.446 +39431,2025-03-11T23:35:03.538494-07:00,993.2701416015625,10.842609,10842.609 +39432,2025-03-11T23:35:14.375617-07:00,993.2754516601562,10.837123,10837.123 +39433,2025-03-11T23:35:25.221864-07:00,993.2810668945312,10.846247,10846.247 +39434,2025-03-11T23:35:36.068879-07:00,993.2886962890625,10.847015,10847.015 +39435,2025-03-11T23:35:46.900290-07:00,993.3018798828125,10.831411,10831.411 +39436,2025-03-11T23:35:57.749416-07:00,993.2800903320312,10.849126,10849.126 +39437,2025-03-11T23:36:08.588296-07:00,993.3074951171875,10.83888,10838.88 +39438,2025-03-11T23:36:19.432640-07:00,993.2943115234375,10.844344,10844.344 +39439,2025-03-11T23:36:30.271326-07:00,993.2867431640625,10.838686,10838.686 +39440,2025-03-11T23:36:41.116915-07:00,993.2744750976562,10.845589,10845.589 +39441,2025-03-11T23:36:51.969834-07:00,993.2734375,10.852919,10852.919 +39442,2025-03-11T23:37:02.809508-07:00,993.3009643554688,10.839674,10839.674 +39443,2025-03-11T23:37:13.651255-07:00,993.2800903320312,10.841747,10841.747 +39444,2025-03-11T23:37:24.488522-07:00,993.2932739257812,10.837267,10837.267 +39445,2025-03-11T23:37:35.330257-07:00,993.2932739257812,10.841735,10841.735 +39446,2025-03-11T23:37:46.174286-07:00,993.3009643554688,10.844029,10844.029 +39447,2025-03-11T23:37:57.016930-07:00,993.2734375,10.842644,10842.644 +39448,2025-03-11T23:38:07.859454-07:00,993.3018798828125,10.842524,10842.524 +39449,2025-03-11T23:38:18.704425-07:00,993.2800903320312,10.844971,10844.971 +39450,2025-03-11T23:38:29.536535-07:00,993.2787475585938,10.83211,10832.11 +39451,2025-03-11T23:38:40.372286-07:00,993.2787475585938,10.835751,10835.751 +39452,2025-03-11T23:38:51.206265-07:00,993.2932739257812,10.833979,10833.979 +39453,2025-03-11T23:39:02.039865-07:00,993.2920532226562,10.8336,10833.6 +39454,2025-03-11T23:39:12.884404-07:00,993.2622680664062,10.844539,10844.539 +39455,2025-03-11T23:39:23.713542-07:00,993.291015625,10.829138,10829.138 +39456,2025-03-11T23:39:34.559601-07:00,993.3240356445312,10.846059,10846.059 +39457,2025-03-11T23:39:45.387283-07:00,993.302978515625,10.827682,10827.682 +39458,2025-03-11T23:39:56.223285-07:00,993.3284301757812,10.836002,10836.002 +39459,2025-03-11T23:40:07.065625-07:00,993.286376953125,10.84234,10842.34 +39460,2025-03-11T23:40:17.897596-07:00,993.315185546875,10.831971,10831.971 +39461,2025-03-11T23:40:28.725769-07:00,993.3007202148438,10.828173,10828.173 +39462,2025-03-11T23:40:39.569332-07:00,993.3063354492188,10.843563,10843.563 +39463,2025-03-11T23:40:50.402262-07:00,993.2996826171875,10.83293,10832.93 +39464,2025-03-11T23:41:01.244283-07:00,993.2931518554688,10.842021,10842.021 +39465,2025-03-11T23:41:12.085603-07:00,993.31298828125,10.84132,10841.32 +39466,2025-03-11T23:41:22.911348-07:00,993.2974243164062,10.825745,10825.745 +39467,2025-03-11T23:41:33.750718-07:00,993.3182983398438,10.83937,10839.37 +39468,2025-03-11T23:41:44.586700-07:00,993.3314819335938,10.835982,10835.982 +39469,2025-03-11T23:41:55.423431-07:00,993.2960815429688,10.836731,10836.731 +39470,2025-03-11T23:42:06.262611-07:00,993.3248291015625,10.83918,10839.18 +39471,2025-03-11T23:42:17.111472-07:00,993.3304443359375,10.848861,10848.861 +39472,2025-03-11T23:42:27.947294-07:00,993.3225708007812,10.835822,10835.822 +39473,2025-03-11T23:42:38.785884-07:00,993.3292236328125,10.83859,10838.59 +39474,2025-03-11T23:42:49.628772-07:00,993.3040771484375,10.842888,10842.888 +39475,2025-03-11T23:43:00.477189-07:00,993.3370971679688,10.848417,10848.417 +39476,2025-03-11T23:43:11.309658-07:00,993.3150024414062,10.832469,10832.469 +39477,2025-03-11T23:43:22.161292-07:00,993.2885131835938,10.851634,10851.634 +39478,2025-03-11T23:43:33.000259-07:00,993.3070068359375,10.838967,10838.967 +39479,2025-03-11T23:43:43.844377-07:00,993.2762451171875,10.844118,10844.118 +39480,2025-03-11T23:43:54.692384-07:00,993.2806396484375,10.848007,10848.007 +39481,2025-03-11T23:44:05.530257-07:00,993.27294921875,10.837873,10837.873 +39482,2025-03-11T23:44:16.377357-07:00,993.2564086914062,10.8471,10847.1 +39483,2025-03-11T23:44:27.214739-07:00,993.308349609375,10.837382,10837.382 +39484,2025-03-11T23:44:38.063577-07:00,993.2686767578125,10.848838,10848.838 +39485,2025-03-11T23:44:48.901329-07:00,993.3016967773438,10.837752,10837.752 +39486,2025-03-11T23:44:59.745791-07:00,993.308349609375,10.844462,10844.462 +39487,2025-03-11T23:45:10.589433-07:00,993.2871704101562,10.843642,10843.642 +39488,2025-03-11T23:45:21.426592-07:00,993.28955078125,10.837159,10837.159 +39489,2025-03-11T23:45:32.273275-07:00,993.28955078125,10.846683,10846.683 +39490,2025-03-11T23:45:43.101387-07:00,993.2885131835938,10.828112,10828.112 +39491,2025-03-11T23:45:53.949916-07:00,993.3004760742188,10.848529,10848.529 +39492,2025-03-11T23:46:04.784263-07:00,993.3093872070312,10.834347,10834.347 +39493,2025-03-11T23:46:15.624293-07:00,993.3292236328125,10.84003,10840.03 +39494,2025-03-11T23:46:26.467285-07:00,993.2885131835938,10.842992,10842.992 +39495,2025-03-11T23:46:37.310848-07:00,993.2796020507812,10.843563,10843.563 +39496,2025-03-11T23:46:48.154527-07:00,993.308349609375,10.843679,10843.679 +39497,2025-03-11T23:46:58.990283-07:00,993.3004760742188,10.835756,10835.756 +39498,2025-03-11T23:47:09.839913-07:00,993.3016967773438,10.84963,10849.63 +39499,2025-03-11T23:47:20.682155-07:00,993.3150024414062,10.842242,10842.242 +39500,2025-03-11T23:47:31.513287-07:00,993.3150024414062,10.831132,10831.132 +39501,2025-03-11T23:47:42.358243-07:00,993.3150024414062,10.844956,10844.956 +39502,2025-03-11T23:47:53.206291-07:00,993.321533203125,10.848048,10848.048 +39503,2025-03-11T23:48:04.038037-07:00,993.2938232421875,10.831746,10831.746 +39504,2025-03-11T23:48:14.879541-07:00,993.28955078125,10.841504,10841.504 +39505,2025-03-11T23:48:25.722284-07:00,993.3106079101562,10.842743,10842.743 +39506,2025-03-11T23:48:36.567275-07:00,993.3040771484375,10.844991,10844.991 +39507,2025-03-11T23:48:47.404662-07:00,993.3248291015625,10.837387,10837.387 +39508,2025-03-11T23:48:58.248290-07:00,993.31298828125,10.843628,10843.628 +39509,2025-03-11T23:49:09.084537-07:00,993.3328247070312,10.836247,10836.247 +39510,2025-03-11T23:49:19.922850-07:00,993.3172607421875,10.838313,10838.313 +39511,2025-03-11T23:49:30.757290-07:00,993.3314819335938,10.83444,10834.44 +39512,2025-03-11T23:49:41.614285-07:00,993.3116455078125,10.856995,10856.995 +39513,2025-03-11T23:49:52.457292-07:00,993.2918090820312,10.843007,10843.007 +39514,2025-03-11T23:50:03.294645-07:00,993.3063354492188,10.837353,10837.353 +39515,2025-03-11T23:50:14.143592-07:00,993.3063354492188,10.848947,10848.947 +39516,2025-03-11T23:50:24.990545-07:00,993.2996826171875,10.846953,10846.953 +39517,2025-03-11T23:50:33.087456-07:00,993.2709350585938,8.096911,8096.911 +39518,2025-03-11T23:50:35.830263-07:00,993.2775268554688,2.742807,2742.807 +39519,2025-03-11T23:50:46.671284-07:00,993.286376953125,10.841021,10841.021 +39520,2025-03-11T23:50:57.516594-07:00,993.286376953125,10.84531,10845.31 +39521,2025-03-11T23:51:08.359333-07:00,993.290771484375,10.842739,10842.739 +39522,2025-03-11T23:51:19.203705-07:00,993.28955078125,10.844372,10844.372 +39523,2025-03-11T23:51:30.044290-07:00,993.290771484375,10.840585,10840.585 +39524,2025-03-11T23:51:40.888726-07:00,993.2697143554688,10.844436,10844.436 +39525,2025-03-11T23:51:51.737986-07:00,993.28955078125,10.84926,10849.26 +39526,2025-03-11T23:52:02.572286-07:00,993.3040771484375,10.8343,10834.3 +39527,2025-03-11T23:52:13.412289-07:00,993.2960815429688,10.840003,10840.003 +39528,2025-03-11T23:52:24.261292-07:00,993.2885131835938,10.849003,10849.003 +39529,2025-03-11T23:52:35.103569-07:00,993.290771484375,10.842277,10842.277 +39530,2025-03-11T23:52:45.944319-07:00,993.3116455078125,10.84075,10840.75 +39531,2025-03-11T23:52:56.790340-07:00,993.278564453125,10.846021,10846.021 +39532,2025-03-11T23:53:07.628852-07:00,993.286376953125,10.838512,10838.512 +39533,2025-03-11T23:53:18.471766-07:00,993.286376953125,10.842914,10842.914 +39534,2025-03-11T23:53:29.325899-07:00,993.2931518554688,10.854133,10854.133 +39535,2025-03-11T23:53:40.159601-07:00,993.2798461914062,10.833702,10833.702 +39536,2025-03-11T23:53:51.001521-07:00,993.2996826171875,10.84192,10841.92 +39537,2025-03-11T23:54:01.848609-07:00,993.28515625,10.847088,10847.088 +39538,2025-03-11T23:54:12.690951-07:00,993.3350830078125,10.842342,10842.342 +39539,2025-03-11T23:54:23.537941-07:00,993.28515625,10.84699,10846.99 +39540,2025-03-11T23:54:34.376504-07:00,993.286376953125,10.838563,10838.563 +39541,2025-03-11T23:54:45.225498-07:00,993.3195190429688,10.848994,10848.994 +39542,2025-03-11T23:54:56.070019-07:00,993.2996826171875,10.844521,10844.521 +39543,2025-03-11T23:55:06.913476-07:00,993.30859375,10.843457,10843.457 +39544,2025-03-11T23:55:17.747280-07:00,993.2665405273438,10.833804,10833.804 +39545,2025-03-11T23:55:28.598288-07:00,993.28515625,10.851008,10851.008 +39546,2025-03-11T23:55:39.434542-07:00,993.2996826171875,10.836254,10836.254 +39547,2025-03-11T23:55:50.281735-07:00,993.307373046875,10.847193,10847.193 +39548,2025-03-11T23:56:01.123337-07:00,993.2454833984375,10.841602,10841.602 +39549,2025-03-11T23:56:11.971289-07:00,993.273193359375,10.847952,10847.952 +39550,2025-03-11T23:56:22.808805-07:00,993.2533569335938,10.837516,10837.516 +39551,2025-03-11T23:56:33.648772-07:00,993.2742309570312,10.839967,10839.967 +39552,2025-03-11T23:56:44.500625-07:00,993.286376953125,10.851853,10851.853 +39553,2025-03-11T23:56:55.342949-07:00,993.286376953125,10.842324,10842.324 +39554,2025-03-11T23:57:06.177282-07:00,993.28076171875,10.834333,10834.333 +39555,2025-03-11T23:57:17.022685-07:00,993.2477416992188,10.845403,10845.403 +39556,2025-03-11T23:57:27.866578-07:00,993.25439453125,10.843893,10843.893 +39557,2025-03-11T23:57:38.709332-07:00,993.2665405273438,10.842754,10842.754 +39558,2025-03-11T23:57:49.553568-07:00,993.2312622070312,10.844236,10844.236 +39559,2025-03-11T23:58:00.395281-07:00,993.2444458007812,10.841713,10841.713 +39560,2025-03-11T23:58:11.237723-07:00,993.2467041015625,10.842442,10842.442 +39561,2025-03-11T23:58:22.071343-07:00,993.21142578125,10.83362,10833.62 +39562,2025-03-11T23:58:32.912290-07:00,993.2179565429688,10.840947,10840.947 +39563,2025-03-11T23:58:43.757290-07:00,993.2335205078125,10.845,10845.0 +39564,2025-03-11T23:58:54.608293-07:00,993.2454833984375,10.851003,10851.003 +39565,2025-03-11T23:59:05.450497-07:00,993.20703125,10.842204,10842.204 +39566,2025-03-11T23:59:16.288286-07:00,993.2256469726562,10.837789,10837.789 +39567,2025-03-11T23:59:27.136280-07:00,993.2510986328125,10.847994,10847.994 +39568,2025-03-11T23:59:37.974620-07:00,993.2587280273438,10.83834,10838.34 +39569,2025-03-11T23:59:48.816177-07:00,993.23779296875,10.841557,10841.557 +39570,2025-03-11T23:59:59.659556-07:00,993.2388305664062,10.843379,10843.379 diff --git a/time_differences_pressure_524.csv b/time_differences_pressure_524.csv new file mode 100644 index 0000000..df6e723 --- /dev/null +++ b/time_differences_pressure_524.csv @@ -0,0 +1,39965 @@ +Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds +0,2025-03-07T00:00:08.868398-08:00,1007.5608520507812,0,0 +1,2025-03-07T00:00:19.596482-08:00,1007.55517578125,10.728084,10728.084 +2,2025-03-07T00:00:30.339480-08:00,1007.55322265625,10.742998,10742.998 +3,2025-03-07T00:00:41.066376-08:00,1007.556396484375,10.726896,10726.896 +4,2025-03-07T00:00:51.801529-08:00,1007.53955078125,10.735153,10735.153 +5,2025-03-07T00:01:02.532797-08:00,1007.557373046875,10.731268,10731.268 +6,2025-03-07T00:01:13.269461-08:00,1007.5818481445312,10.736664,10736.664 +7,2025-03-07T00:01:23.994467-08:00,1007.57470703125,10.725006,10725.006 +8,2025-03-07T00:01:34.734493-08:00,1007.5730590820312,10.740026,10740.026 +9,2025-03-07T00:01:45.466289-08:00,1007.5711059570312,10.731796,10731.796 +10,2025-03-07T00:01:56.205523-08:00,1007.6007690429688,10.739234,10739.234 +11,2025-03-07T00:02:06.937065-08:00,1007.5889892578125,10.731542,10731.542 +12,2025-03-07T00:02:17.680976-08:00,1007.5921630859375,10.743911,10743.911 +13,2025-03-07T00:02:28.405366-08:00,1007.5789184570312,10.72439,10724.39 +14,2025-03-07T00:02:39.138237-08:00,1007.5901489257812,10.732871,10732.871 +15,2025-03-07T00:02:49.878663-08:00,1007.5850219726562,10.740426,10740.426 +16,2025-03-07T00:03:00.607296-08:00,1007.6109619140625,10.728633,10728.633 +17,2025-03-07T00:03:11.344409-08:00,1007.591064453125,10.737113,10737.113 +18,2025-03-07T00:03:22.073464-08:00,1007.5745239257812,10.729055,10729.055 +19,2025-03-07T00:03:32.810535-08:00,1007.56591796875,10.737071,10737.071 +20,2025-03-07T00:03:43.542288-08:00,1007.6018676757812,10.731753,10731.753 +21,2025-03-07T00:03:54.285502-08:00,1007.6084594726562,10.743214,10743.214 +22,2025-03-07T00:04:05.016487-08:00,1007.5851440429688,10.730985,10730.985 +23,2025-03-07T00:04:15.746288-08:00,1007.599853515625,10.729801,10729.801 +24,2025-03-07T00:04:26.488286-08:00,1007.6229858398438,10.741998,10741.998 +25,2025-03-07T00:04:37.220395-08:00,1007.597900390625,10.732109,10732.109 +26,2025-03-07T00:04:47.956650-08:00,1007.611083984375,10.736255,10736.255 +27,2025-03-07T00:04:58.687398-08:00,1007.593017578125,10.730748,10730.748 +28,2025-03-07T00:05:09.423389-08:00,1007.57470703125,10.735991,10735.991 +29,2025-03-07T00:05:20.155473-08:00,1007.60107421875,10.732084,10732.084 +30,2025-03-07T00:05:30.891677-08:00,1007.5665893554688,10.736204,10736.204 +31,2025-03-07T00:05:41.618285-08:00,1007.609130859375,10.726608,10726.608 +32,2025-03-07T00:05:52.352289-08:00,1007.591064453125,10.734004,10734.004 +33,2025-03-07T00:06:03.087804-08:00,1007.5761108398438,10.735515,10735.515 +34,2025-03-07T00:06:13.818305-08:00,1007.5826416015625,10.730501,10730.501 +35,2025-03-07T00:06:24.548287-08:00,1007.6123657226562,10.729982,10729.982 +36,2025-03-07T00:06:35.286471-08:00,1007.6109619140625,10.738184,10738.184 +37,2025-03-07T00:06:46.019475-08:00,1007.6123657226562,10.733004,10733.004 +38,2025-03-07T00:06:56.749286-08:00,1007.6109619140625,10.729811,10729.811 +39,2025-03-07T00:07:07.481289-08:00,1007.5761108398438,10.732003,10732.003 +40,2025-03-07T00:07:18.207255-08:00,1007.591064453125,10.725966,10725.966 +41,2025-03-07T00:07:28.938486-08:00,1007.58447265625,10.731231,10731.231 +42,2025-03-07T00:07:39.667699-08:00,1007.6043090820312,10.729213,10729.213 +43,2025-03-07T00:07:50.403469-08:00,1007.591064453125,10.73577,10735.77 +44,2025-03-07T00:08:01.142549-08:00,1007.5826416015625,10.73908,10739.08 +45,2025-03-07T00:08:11.876286-08:00,1007.6174926757812,10.733737,10733.737 +46,2025-03-07T00:08:22.604313-08:00,1007.6189575195312,10.728027,10728.027 +47,2025-03-07T00:08:33.344478-08:00,1007.6307983398438,10.740165,10740.165 +48,2025-03-07T00:08:44.073289-08:00,1007.6454467773438,10.728811,10728.811 +49,2025-03-07T00:08:54.814491-08:00,1007.622314453125,10.741202,10741.202 +50,2025-03-07T00:09:05.544588-08:00,1007.609130859375,10.730097,10730.097 +51,2025-03-07T00:09:16.276168-08:00,1007.6129150390625,10.73158,10731.58 +52,2025-03-07T00:09:27.015287-08:00,1007.6195068359375,10.739119,10739.119 +53,2025-03-07T00:09:37.747677-08:00,1007.6275024414062,10.73239,10732.39 +54,2025-03-07T00:09:48.482285-08:00,1007.6243896484375,10.734608,10734.608 +55,2025-03-07T00:09:59.219682-08:00,1007.6375732421875,10.737397,10737.397 +56,2025-03-07T00:10:09.956339-08:00,1007.6214599609375,10.736657,10736.657 +57,2025-03-07T00:10:20.688502-08:00,1007.6229858398438,10.732163,10732.163 +58,2025-03-07T00:10:31.418016-08:00,1007.6263427734375,10.729514,10729.514 +59,2025-03-07T00:10:42.150624-08:00,1007.6148681640625,10.732608,10732.608 +60,2025-03-07T00:10:52.887397-08:00,1007.6130981445312,10.736773,10736.773 +61,2025-03-07T00:11:03.619289-08:00,1007.63671875,10.731892,10731.892 +62,2025-03-07T00:11:14.352456-08:00,1007.6248168945312,10.733167,10733.167 +63,2025-03-07T00:11:25.085385-08:00,1007.6035766601562,10.732929,10732.929 +64,2025-03-07T00:11:35.822288-08:00,1007.6300659179688,10.736903,10736.903 +65,2025-03-07T00:11:46.554487-08:00,1007.59375,10.732199,10732.199 +66,2025-03-07T00:11:57.282071-08:00,1007.6217041015625,10.727584,10727.584 +67,2025-03-07T00:12:08.020288-08:00,1007.6041259765625,10.738217,10738.217 +68,2025-03-07T00:12:18.747501-08:00,1007.6023559570312,10.727213,10727.213 +69,2025-03-07T00:12:29.480460-08:00,1007.6090087890625,10.732959,10732.959 +70,2025-03-07T00:12:40.212289-08:00,1007.6207885742188,10.731829,10731.829 +71,2025-03-07T00:12:50.939492-08:00,1007.5862426757812,10.727203,10727.203 +72,2025-03-07T00:13:01.680632-08:00,1007.6127319335938,10.74114,10741.14 +73,2025-03-07T00:13:12.414469-08:00,1007.6392211914062,10.733837,10733.837 +74,2025-03-07T00:13:23.141288-08:00,1007.640625,10.726819,10726.819 +75,2025-03-07T00:13:33.877500-08:00,1007.5830688476562,10.736212,10736.212 +76,2025-03-07T00:13:44.613455-08:00,1007.5882568359375,10.735955,10735.955 +77,2025-03-07T00:13:55.341358-08:00,1007.6212768554688,10.727903,10727.903 +78,2025-03-07T00:14:06.074393-08:00,1007.6195068359375,10.733035,10733.035 +79,2025-03-07T00:14:16.814519-08:00,1007.6115112304688,10.740126,10740.126 +80,2025-03-07T00:14:27.548466-08:00,1007.5916137695312,10.733947,10733.947 +81,2025-03-07T00:14:38.278482-08:00,1007.6017456054688,10.730016,10730.016 +82,2025-03-07T00:14:49.004287-08:00,1007.6185913085938,10.725805,10725.805 +83,2025-03-07T00:14:59.738473-08:00,1007.6087646484375,10.734186,10734.186 +84,2025-03-07T00:15:10.463493-08:00,1007.6038818359375,10.72502,10725.02 +85,2025-03-07T00:15:21.196492-08:00,1007.5889892578125,10.732999,10732.999 +86,2025-03-07T00:15:31.930466-08:00,1007.6007690429688,10.733974,10733.974 +87,2025-03-07T00:15:42.659363-08:00,1007.5993041992188,10.728897,10728.897 +88,2025-03-07T00:15:53.390501-08:00,1007.5843505859375,10.731138,10731.138 +89,2025-03-07T00:16:04.121474-08:00,1007.5895385742188,10.730973,10730.973 +90,2025-03-07T00:16:14.848285-08:00,1007.60791015625,10.726811,10726.811 +91,2025-03-07T00:16:25.587573-08:00,1007.5928955078125,10.739288,10739.288 +92,2025-03-07T00:16:36.320495-08:00,1007.6127319335938,10.732922,10732.922 +93,2025-03-07T00:16:47.052438-08:00,1007.5980224609375,10.731943,10731.943 +94,2025-03-07T00:16:57.781289-08:00,1007.6029663085938,10.728851,10728.851 +95,2025-03-07T00:17:08.511301-08:00,1007.5931396484375,10.730012,10730.012 +96,2025-03-07T00:17:19.238612-08:00,1007.566650390625,10.727311,10727.311 +97,2025-03-07T00:17:29.965478-08:00,1007.583251953125,10.726866,10726.866 +98,2025-03-07T00:17:40.703752-08:00,1007.583251953125,10.738274,10738.274 +99,2025-03-07T00:17:51.428289-08:00,1007.5884399414062,10.724537,10724.537 +100,2025-03-07T00:18:02.160288-08:00,1007.5884399414062,10.731999,10731.999 +101,2025-03-07T00:18:12.889701-08:00,1007.5789184570312,10.729413,10729.413 +102,2025-03-07T00:18:23.616286-08:00,1007.5723266601562,10.726585,10726.585 +103,2025-03-07T00:18:34.356493-08:00,1007.567626953125,10.740207,10740.207 +104,2025-03-07T00:18:45.082491-08:00,1007.5791625976562,10.725998,10725.998 +105,2025-03-07T00:18:55.809289-08:00,1007.5923461914062,10.726798,10726.798 +106,2025-03-07T00:19:06.539576-08:00,1007.5645141601562,10.730287,10730.287 +107,2025-03-07T00:19:17.277303-08:00,1007.5811157226562,10.737727,10737.727 +108,2025-03-07T00:19:28.003490-08:00,1007.5943603515625,10.726187,10726.187 +109,2025-03-07T00:19:38.727491-08:00,1007.6060791015625,10.724001,10724.001 +110,2025-03-07T00:19:49.465467-08:00,1007.5584106445312,10.737976,10737.976 +111,2025-03-07T00:20:00.193440-08:00,1007.5848388671875,10.727973,10727.973 +112,2025-03-07T00:20:10.928285-08:00,1007.5750122070312,10.734845,10734.845 +113,2025-03-07T00:20:21.661284-08:00,1007.5750122070312,10.732999,10732.999 +114,2025-03-07T00:20:32.386099-08:00,1007.5934448242188,10.724815,10724.815 +115,2025-03-07T00:20:43.116496-08:00,1007.5787353515625,10.730397,10730.397 +116,2025-03-07T00:20:53.850851-08:00,1007.549072265625,10.734355,10734.355 +117,2025-03-07T00:21:04.579322-08:00,1007.5623168945312,10.728471,10728.471 +118,2025-03-07T00:21:15.310967-08:00,1007.5806274414062,10.731645,10731.645 +119,2025-03-07T00:21:26.034471-08:00,1007.6119384765625,10.723504,10723.504 +120,2025-03-07T00:21:36.763496-08:00,1007.5826416015625,10.729025,10729.025 +121,2025-03-07T00:21:47.498289-08:00,1007.5892333984375,10.734793,10734.793 +122,2025-03-07T00:21:58.234474-08:00,1007.6090698242188,10.736185,10736.185 +123,2025-03-07T00:22:08.956323-08:00,1007.5861206054688,10.721849,10721.849 +124,2025-03-07T00:22:19.685315-08:00,1007.579345703125,10.728992,10728.992 +125,2025-03-07T00:22:30.415490-08:00,1007.569580078125,10.730175,10730.175 +126,2025-03-07T00:22:41.134499-08:00,1007.5912475585938,10.719009,10719.009 +127,2025-03-07T00:22:51.864468-08:00,1007.5879516601562,10.729969,10729.969 +128,2025-03-07T00:23:02.594400-08:00,1007.6224975585938,10.729932,10729.932 +129,2025-03-07T00:23:13.315477-08:00,1007.6177978515625,10.721077,10721.077 +130,2025-03-07T00:23:24.036288-08:00,1007.6112670898438,10.720811,10720.811 +131,2025-03-07T00:23:34.760727-08:00,1007.5914306640625,10.724439,10724.439 +132,2025-03-07T00:23:45.495464-08:00,1007.6082763671875,10.734737,10734.737 +133,2025-03-07T00:23:56.215288-08:00,1007.5965576171875,10.719824,10719.824 +134,2025-03-07T00:24:06.941451-08:00,1007.6149291992188,10.726163,10726.163 +135,2025-03-07T00:24:17.671297-08:00,1007.6134643554688,10.729846,10729.846 +136,2025-03-07T00:24:28.394477-08:00,1007.6182861328125,10.72318,10723.18 +137,2025-03-07T00:24:39.119284-08:00,1007.6168823242188,10.724807,10724.807 +138,2025-03-07T00:24:49.851290-08:00,1007.643310546875,10.732006,10732.006 +139,2025-03-07T00:25:00.568569-08:00,1007.6021728515625,10.717279,10717.279 +140,2025-03-07T00:25:11.299291-08:00,1007.646728515625,10.730722,10730.722 +141,2025-03-07T00:25:22.030477-08:00,1007.6484375,10.731186,10731.186 +142,2025-03-07T00:25:32.747490-08:00,1007.63720703125,10.717013,10717.013 +143,2025-03-07T00:25:43.475316-08:00,1007.643798828125,10.727826,10727.826 +144,2025-03-07T00:25:54.200308-08:00,1007.643798828125,10.724992,10724.992 +145,2025-03-07T00:26:04.930467-08:00,1007.647216796875,10.730159,10730.159 +146,2025-03-07T00:26:15.646362-08:00,1007.6259155273438,10.715895,10715.895 +147,2025-03-07T00:26:23.101917-08:00,1007.65234375,7.455555,7455.555 +148,2025-03-07T00:26:26.364283-08:00,1007.6704711914062,3.262366,3262.366 +149,2025-03-07T00:26:37.091627-08:00,1007.6373291015625,10.727344,10727.344 +150,2025-03-07T00:26:47.812344-08:00,1007.6836547851562,10.720717,10720.717 +151,2025-03-07T00:26:58.538472-08:00,1007.646240234375,10.726128,10726.128 +152,2025-03-07T00:27:09.260289-08:00,1007.6841430664062,10.721817,10721.817 +153,2025-03-07T00:27:19.985467-08:00,1007.6841430664062,10.725178,10725.178 +154,2025-03-07T00:27:30.714328-08:00,1007.6925048828125,10.728861,10728.861 +155,2025-03-07T00:27:41.431460-08:00,1007.6991577148438,10.717132,10717.132 +156,2025-03-07T00:27:52.159448-08:00,1007.6760864257812,10.727988,10727.988 +157,2025-03-07T00:28:02.883538-08:00,1007.6812744140625,10.72409,10724.09 +158,2025-03-07T00:28:24.341106-08:00,1007.666259765625,21.457568,21457.568 +159,2025-03-07T00:28:35.058745-08:00,1007.67138671875,10.717639,10717.639 +160,2025-03-07T00:28:45.785488-08:00,1007.7045288085938,10.726743,10726.743 +161,2025-03-07T00:28:56.502861-08:00,1007.668212890625,10.717373,10717.373 +162,2025-03-07T00:29:07.237289-08:00,1007.6964111328125,10.734428,10734.428 +163,2025-03-07T00:29:17.965526-08:00,1007.67333984375,10.728237,10728.237 +164,2025-03-07T00:29:28.686285-08:00,1007.6799926757812,10.720759,10720.759 +165,2025-03-07T00:29:39.412356-08:00,1007.6785888671875,10.726071,10726.071 +166,2025-03-07T00:29:50.136977-08:00,1007.683349609375,10.724621,10724.621 +167,2025-03-07T00:30:00.857313-08:00,1007.67333984375,10.720336,10720.336 +168,2025-03-07T00:30:11.585578-08:00,1007.6900024414062,10.728265,10728.265 +169,2025-03-07T00:30:22.314282-08:00,1007.7083740234375,10.728704,10728.704 +170,2025-03-07T00:30:33.036304-08:00,1007.6687622070312,10.722022,10722.022 +171,2025-03-07T00:30:43.767449-08:00,1007.6766967773438,10.731145,10731.145 +172,2025-03-07T00:30:54.494283-08:00,1007.6804809570312,10.726834,10726.834 +173,2025-03-07T00:31:05.224453-08:00,1007.6243896484375,10.73017,10730.17 +174,2025-03-07T00:31:15.951487-08:00,1007.6442260742188,10.727034,10727.034 +175,2025-03-07T00:31:26.683287-08:00,1007.6640625,10.7318,10731.8 +176,2025-03-07T00:31:37.408518-08:00,1007.66259765625,10.725231,10725.231 +177,2025-03-07T00:31:48.137500-08:00,1007.654541015625,10.728982,10728.982 +178,2025-03-07T00:31:58.866503-08:00,1007.669189453125,10.729003,10729.003 +179,2025-03-07T00:32:09.584286-08:00,1007.6824340820312,10.717783,10717.783 +180,2025-03-07T00:32:20.319392-08:00,1007.599853515625,10.735106,10735.106 +181,2025-03-07T00:32:31.043187-08:00,1007.6281127929688,10.723795,10723.795 +182,2025-03-07T00:32:41.762903-08:00,1007.6461791992188,10.719716,10719.716 +183,2025-03-07T00:32:52.486742-08:00,1007.6329956054688,10.723839,10723.839 +184,2025-03-07T00:33:03.216340-08:00,1007.6329956054688,10.729598,10729.598 +185,2025-03-07T00:33:13.942291-08:00,1007.64794921875,10.725951,10725.951 +186,2025-03-07T00:33:24.659491-08:00,1007.64794921875,10.7172,10717.2 +187,2025-03-07T00:33:35.388565-08:00,1007.6329956054688,10.729074,10729.074 +188,2025-03-07T00:33:46.114289-08:00,1007.59375,10.725724,10725.724 +189,2025-03-07T00:33:56.836287-08:00,1007.6202392578125,10.721998,10721.998 +190,2025-03-07T00:34:07.565681-08:00,1007.6004028320312,10.729394,10729.394 +191,2025-03-07T00:34:18.282477-08:00,1007.6170043945312,10.716796,10716.796 +192,2025-03-07T00:34:29.013469-08:00,1007.6074829101562,10.730992,10730.992 +193,2025-03-07T00:34:39.738399-08:00,1007.6369018554688,10.72493,10724.93 +194,2025-03-07T00:34:50.459391-08:00,1007.6571655273438,10.720992,10720.992 +195,2025-03-07T00:35:01.189286-08:00,1007.6392211914062,10.729895,10729.895 +196,2025-03-07T00:35:11.906889-08:00,1007.6296997070312,10.717603,10717.603 +197,2025-03-07T00:35:22.639494-08:00,1007.6411743164062,10.732605,10732.605 +198,2025-03-07T00:35:33.362311-08:00,1007.623291015625,10.722817,10722.817 +199,2025-03-07T00:35:44.083481-08:00,1007.638427734375,10.72117,10721.17 +200,2025-03-07T00:35:54.810497-08:00,1007.6437377929688,10.727016,10727.016 +201,2025-03-07T00:36:05.530843-08:00,1007.6490478515625,10.720346,10720.346 +202,2025-03-07T00:36:16.261423-08:00,1007.6414794921875,10.73058,10730.58 +203,2025-03-07T00:36:26.979678-08:00,1007.6372680664062,10.718255,10718.255 +204,2025-03-07T00:36:37.707282-08:00,1007.6492309570312,10.727604,10727.604 +205,2025-03-07T00:36:48.430474-08:00,1007.6265869140625,10.723192,10723.192 +206,2025-03-07T00:36:59.154814-08:00,1007.6157836914062,10.72434,10724.34 +207,2025-03-07T00:37:09.874281-08:00,1007.626220703125,10.719467,10719.467 +208,2025-03-07T00:37:20.593291-08:00,1007.6450805664062,10.71901,10719.01 +209,2025-03-07T00:37:31.324467-08:00,1007.656982421875,10.731176,10731.176 +210,2025-03-07T00:37:42.040572-08:00,1007.6423950195312,10.716105,10716.105 +211,2025-03-07T00:37:52.765313-08:00,1007.6495361328125,10.724741,10724.741 +212,2025-03-07T00:38:03.482288-08:00,1007.6220092773438,10.716975,10716.975 +213,2025-03-07T00:38:14.210699-08:00,1007.6486206054688,10.728411,10728.411 +214,2025-03-07T00:38:24.930286-08:00,1007.6571044921875,10.719587,10719.587 +215,2025-03-07T00:38:35.648291-08:00,1007.6527099609375,10.718005,10718.005 +216,2025-03-07T00:38:46.372512-08:00,1007.63818359375,10.724221,10724.221 +217,2025-03-07T00:38:57.089952-08:00,1007.646728515625,10.71744,10717.44 +218,2025-03-07T00:39:07.813421-08:00,1007.6548461914062,10.723469,10723.469 +219,2025-03-07T00:39:18.534341-08:00,1007.6849975585938,10.72092,10720.92 +220,2025-03-07T00:39:29.260586-08:00,1007.671875,10.726245,10726.245 +221,2025-03-07T00:39:39.989286-08:00,1007.6755981445312,10.7287,10728.7 +222,2025-03-07T00:39:50.716719-08:00,1007.6709594726562,10.727433,10727.433 +223,2025-03-07T00:40:01.435502-08:00,1007.6595458984375,10.718783,10718.783 +224,2025-03-07T00:40:12.157161-08:00,1007.6776733398438,10.721659,10721.659 +225,2025-03-07T00:40:22.881478-08:00,1007.6746826171875,10.724317,10724.317 +226,2025-03-07T00:40:33.602642-08:00,1007.6978149414062,10.721164,10721.164 +227,2025-03-07T00:40:44.331285-08:00,1007.6846923828125,10.728643,10728.643 +228,2025-03-07T00:40:55.057114-08:00,1007.6949462890625,10.725829,10725.829 +229,2025-03-07T00:41:05.777289-08:00,1007.679931640625,10.720175,10720.175 +230,2025-03-07T00:41:16.504972-08:00,1007.679931640625,10.727683,10727.683 +231,2025-03-07T00:41:27.233401-08:00,1007.68505859375,10.728429,10728.429 +232,2025-03-07T00:41:37.962826-08:00,1007.678466796875,10.729425,10729.425 +233,2025-03-07T00:41:48.689465-08:00,1007.68359375,10.726639,10726.639 +234,2025-03-07T00:41:59.411289-08:00,1007.704833984375,10.721824,10721.824 +235,2025-03-07T00:42:10.134407-08:00,1007.6685791015625,10.723118,10723.118 +236,2025-03-07T00:42:20.864642-08:00,1007.68359375,10.730235,10730.235 +237,2025-03-07T00:42:31.583289-08:00,1007.64404296875,10.718647,10718.647 +238,2025-03-07T00:42:42.314396-08:00,1007.68359375,10.731107,10731.107 +239,2025-03-07T00:42:53.045500-08:00,1007.6902465820312,10.731104,10731.104 +240,2025-03-07T00:43:03.771565-08:00,1007.678466796875,10.726065,10726.065 +241,2025-03-07T00:43:14.490068-08:00,1007.6983032226562,10.718503,10718.503 +242,2025-03-07T00:43:25.217394-08:00,1007.6865844726562,10.727326,10727.326 +243,2025-03-07T00:43:35.945325-08:00,1007.7081298828125,10.727931,10727.931 +244,2025-03-07T00:43:46.676286-08:00,1007.6751708984375,10.730961,10730.961 +245,2025-03-07T00:43:57.401668-08:00,1007.7029418945312,10.725382,10725.382 +246,2025-03-07T00:44:08.128348-08:00,1007.6978149414062,10.72668,10726.68 +247,2025-03-07T00:44:18.855313-08:00,1007.6995849609375,10.726965,10726.965 +248,2025-03-07T00:44:29.578625-08:00,1007.7128295898438,10.723312,10723.312 +249,2025-03-07T00:44:40.303312-08:00,1007.7142944335938,10.724687,10724.687 +250,2025-03-07T00:44:51.026306-08:00,1007.7238159179688,10.722994,10722.994 +251,2025-03-07T00:45:01.751315-08:00,1007.7238159179688,10.725009,10725.009 +252,2025-03-07T00:45:12.478464-08:00,1007.718994140625,10.727149,10727.149 +253,2025-03-07T00:45:23.204498-08:00,1007.7567138671875,10.726034,10726.034 +254,2025-03-07T00:45:33.931483-08:00,1007.731689453125,10.726985,10726.985 +255,2025-03-07T00:45:44.653394-08:00,1007.7151489257812,10.721911,10721.911 +256,2025-03-07T00:45:55.384288-08:00,1007.7232666015625,10.730894,10730.894 +257,2025-03-07T00:46:06.113468-08:00,1007.7246704101562,10.72918,10729.18 +258,2025-03-07T00:46:16.836285-08:00,1007.7199096679688,10.722817,10722.817 +259,2025-03-07T00:46:27.563610-08:00,1007.7510375976562,10.727325,10727.325 +260,2025-03-07T00:46:38.285288-08:00,1007.7391967773438,10.721678,10721.678 +261,2025-03-07T00:46:49.018286-08:00,1007.734130859375,10.732998,10732.998 +262,2025-03-07T00:46:59.742181-08:00,1007.7359619140625,10.723895,10723.895 +263,2025-03-07T00:47:10.466420-08:00,1007.7310791015625,10.724239,10724.239 +264,2025-03-07T00:47:21.194461-08:00,1007.76220703125,10.728041,10728.041 +265,2025-03-07T00:47:31.919818-08:00,1007.743896484375,10.725357,10725.357 +266,2025-03-07T00:47:42.649313-08:00,1007.7321166992188,10.729495,10729.495 +267,2025-03-07T00:47:53.374523-08:00,1007.75,10.72521,10725.21 +268,2025-03-07T00:48:04.101289-08:00,1007.7254028320312,10.726766,10726.766 +269,2025-03-07T00:48:14.833379-08:00,1007.73486328125,10.73209,10732.09 +270,2025-03-07T00:48:25.551287-08:00,1007.7268676757812,10.717908,10717.908 +271,2025-03-07T00:48:36.276301-08:00,1007.7561645507812,10.725014,10725.014 +272,2025-03-07T00:48:47.006698-08:00,1007.7197875976562,10.730397,10730.397 +273,2025-03-07T00:48:57.730414-08:00,1007.7362670898438,10.723716,10723.716 +274,2025-03-07T00:49:08.457561-08:00,1007.7164306640625,10.727147,10727.147 +275,2025-03-07T00:49:19.178487-08:00,1007.7098388671875,10.720926,10720.926 +276,2025-03-07T00:49:29.907454-08:00,1007.7193603515625,10.728967,10728.967 +277,2025-03-07T00:49:40.632286-08:00,1007.6863403320312,10.724832,10724.832 +278,2025-03-07T00:49:51.360669-08:00,1007.732421875,10.728383,10728.383 +279,2025-03-07T00:50:02.085287-08:00,1007.7028198242188,10.724618,10724.618 +280,2025-03-07T00:50:12.813288-08:00,1007.70751953125,10.728001,10728.001 +281,2025-03-07T00:50:23.539732-08:00,1007.6824951171875,10.726444,10726.444 +282,2025-03-07T00:50:34.262283-08:00,1007.712158203125,10.722551,10722.551 +283,2025-03-07T00:50:44.986467-08:00,1007.6937255859375,10.724184,10724.184 +284,2025-03-07T00:50:55.704356-08:00,1007.6937255859375,10.717889,10717.889 +285,2025-03-07T00:51:06.432390-08:00,1007.6556396484375,10.728034,10728.034 +286,2025-03-07T00:51:17.153359-08:00,1007.6984252929688,10.720969,10720.969 +287,2025-03-07T00:51:27.887415-08:00,1007.6932983398438,10.734056,10734.056 +288,2025-03-07T00:51:38.602486-08:00,1007.681884765625,10.715071,10715.071 +289,2025-03-07T00:51:49.325285-08:00,1007.6766967773438,10.722799,10722.799 +290,2025-03-07T00:52:00.061475-08:00,1007.67822265625,10.73619,10736.19 +291,2025-03-07T00:52:10.779500-08:00,1007.6865844726562,10.718025,10718.025 +292,2025-03-07T00:52:21.581653-08:00,1007.6895141601562,10.802153,10802.153 +293,2025-03-07T00:52:32.302524-08:00,1007.6846923828125,10.720871,10720.871 +294,2025-03-07T00:52:43.033935-08:00,1007.6860961914062,10.731411,10731.411 +295,2025-03-07T00:52:53.757448-08:00,1007.6942138671875,10.723513,10723.513 +296,2025-03-07T00:53:04.478628-08:00,1007.6743774414062,10.72118,10721.18 +297,2025-03-07T00:53:15.207287-08:00,1007.6738891601562,10.728659,10728.659 +298,2025-03-07T00:53:25.930449-08:00,1007.6673583984375,10.723162,10723.162 +299,2025-03-07T00:53:36.661659-08:00,1007.682373046875,10.73121,10731.21 +300,2025-03-07T00:53:47.382447-08:00,1007.6705322265625,10.720788,10720.788 +301,2025-03-07T00:53:58.116538-08:00,1007.706787109375,10.734091,10734.091 +302,2025-03-07T00:54:08.835451-08:00,1007.703125,10.718913,10718.913 +303,2025-03-07T00:54:19.566448-08:00,1007.6865844726562,10.730997,10730.997 +304,2025-03-07T00:54:30.291800-08:00,1007.68798828125,10.725352,10725.352 +305,2025-03-07T00:54:41.016821-08:00,1007.6978149414062,10.725021,10725.021 +306,2025-03-07T00:54:51.742718-08:00,1007.65966796875,10.725897,10725.897 +307,2025-03-07T00:55:02.467448-08:00,1007.652587890625,10.72473,10724.73 +308,2025-03-07T00:55:13.190450-08:00,1007.6755981445312,10.723002,10723.002 +309,2025-03-07T00:55:23.923636-08:00,1007.7001342773438,10.733186,10733.186 +310,2025-03-07T00:55:34.649449-08:00,1007.6768798828125,10.725813,10725.813 +311,2025-03-07T00:55:45.379309-08:00,1007.6864013671875,10.72986,10729.86 +312,2025-03-07T00:55:56.105474-08:00,1007.6830444335938,10.726165,10726.165 +313,2025-03-07T00:56:06.834450-08:00,1007.704345703125,10.728976,10728.976 +314,2025-03-07T00:56:17.557147-08:00,1007.7023315429688,10.722697,10722.697 +315,2025-03-07T00:56:28.291522-08:00,1007.701904296875,10.734375,10734.375 +316,2025-03-07T00:56:39.016683-08:00,1007.685302734375,10.725161,10725.161 +317,2025-03-07T00:56:49.748673-08:00,1007.7376708984375,10.73199,10731.99 +318,2025-03-07T00:57:00.478461-08:00,1007.7423706054688,10.729788,10729.788 +319,2025-03-07T00:57:11.195593-08:00,1007.7093505859375,10.717132,10717.132 +320,2025-03-07T00:57:21.931450-08:00,1007.7025756835938,10.735857,10735.857 +321,2025-03-07T00:57:32.657448-08:00,1007.7454833984375,10.725998,10725.998 +322,2025-03-07T00:57:43.380655-08:00,1007.6874389648438,10.723207,10723.207 +323,2025-03-07T00:57:54.107598-08:00,1007.7581176757812,10.726943,10726.943 +324,2025-03-07T00:58:04.839448-08:00,1007.7019653320312,10.73185,10731.85 +325,2025-03-07T00:58:15.567768-08:00,1007.718017578125,10.72832,10728.32 +326,2025-03-07T00:58:26.289813-08:00,1007.66845703125,10.722045,10722.045 +327,2025-03-07T00:58:37.013448-08:00,1007.689697265625,10.723635,10723.635 +328,2025-03-07T00:58:47.741451-08:00,1007.700927734375,10.728003,10728.003 +329,2025-03-07T00:58:58.472559-08:00,1007.700927734375,10.731108,10731.108 +330,2025-03-07T00:59:09.198484-08:00,1007.6961059570312,10.725925,10725.925 +331,2025-03-07T00:59:19.929918-08:00,1007.669677734375,10.731434,10731.434 +332,2025-03-07T00:59:30.654618-08:00,1007.7008056640625,10.7247,10724.7 +333,2025-03-07T00:59:41.378474-08:00,1007.7008056640625,10.723856,10723.856 +334,2025-03-07T00:59:52.111661-08:00,1007.697021484375,10.733187,10733.187 +335,2025-03-07T01:00:02.837579-08:00,1007.7494506835938,10.725918,10725.918 +336,2025-03-07T01:00:13.557633-08:00,1007.7098388671875,10.720054,10720.054 +337,2025-03-07T01:00:24.282512-08:00,1007.7327880859375,10.724879,10724.879 +338,2025-03-07T01:00:35.018444-08:00,1007.7608032226562,10.735932,10735.932 +339,2025-03-07T01:00:45.744447-08:00,1007.754150390625,10.726003,10726.003 +340,2025-03-07T01:00:56.466451-08:00,1007.7394409179688,10.722004,10722.004 +341,2025-03-07T01:01:07.199713-08:00,1007.744140625,10.733262,10733.262 +342,2025-03-07T01:01:17.922993-08:00,1007.7228393554688,10.72328,10723.28 +343,2025-03-07T01:01:28.644450-08:00,1007.7374877929688,10.721457,10721.457 +344,2025-03-07T01:01:39.363471-08:00,1007.752197265625,10.719021,10719.021 +345,2025-03-07T01:01:50.095473-08:00,1007.74267578125,10.732002,10732.002 +346,2025-03-07T01:02:00.816625-08:00,1007.763916015625,10.721152,10721.152 +347,2025-03-07T01:02:11.550485-08:00,1007.7374877929688,10.73386,10733.86 +348,2025-03-07T01:02:22.281448-08:00,1007.75390625,10.730963,10730.963 +349,2025-03-07T01:02:32.998623-08:00,1007.7605590820312,10.717175,10717.175 +350,2025-03-07T01:02:43.726451-08:00,1007.765380859375,10.727828,10727.828 +351,2025-03-07T01:02:54.452839-08:00,1007.7771606445312,10.726388,10726.388 +352,2025-03-07T01:03:05.177448-08:00,1007.7870483398438,10.724609,10724.609 +353,2025-03-07T01:03:15.904451-08:00,1007.7870483398438,10.727003,10727.003 +354,2025-03-07T01:03:26.633684-08:00,1007.7686157226562,10.729233,10729.233 +355,2025-03-07T01:03:37.363449-08:00,1007.7686157226562,10.729765,10729.765 +356,2025-03-07T01:03:48.084633-08:00,1007.8002319335938,10.721184,10721.184 +357,2025-03-07T01:03:58.809655-08:00,1007.7605590820312,10.725022,10725.022 +358,2025-03-07T01:04:09.536448-08:00,1007.8031005859375,10.726793,10726.793 +359,2025-03-07T01:04:20.269610-08:00,1007.8082885742188,10.733162,10733.162 +360,2025-03-07T01:04:30.991933-08:00,1007.8148193359375,10.722323,10722.323 +361,2025-03-07T01:04:41.720629-08:00,1007.8428344726562,10.728696,10728.696 +362,2025-03-07T01:04:52.450450-08:00,1007.834716796875,10.729821,10729.821 +363,2025-03-07T01:05:03.175659-08:00,1007.8148193359375,10.725209,10725.209 +364,2025-03-07T01:05:13.902471-08:00,1007.8049926757812,10.726812,10726.812 +365,2025-03-07T01:05:24.629509-08:00,1007.8545532226562,10.727038,10727.038 +366,2025-03-07T01:05:35.342450-08:00,1007.8809204101562,10.712941,10712.941 +367,2025-03-07T01:05:46.074454-08:00,1007.8729858398438,10.732004,10732.004 +368,2025-03-07T01:05:56.798666-08:00,1007.8777465820312,10.724212,10724.212 +369,2025-03-07T01:06:07.525518-08:00,1007.8861083984375,10.726852,10726.852 +370,2025-03-07T01:06:18.242838-08:00,1007.8993530273438,10.71732,10717.32 +371,2025-03-07T01:06:28.966521-08:00,1007.8828735351562,10.723683,10723.683 +372,2025-03-07T01:06:39.687651-08:00,1007.9027099609375,10.72113,10721.13 +373,2025-03-07T01:06:50.410450-08:00,1007.8881225585938,10.722799,10722.799 +374,2025-03-07T01:07:01.136875-08:00,1007.8895263671875,10.726425,10726.425 +375,2025-03-07T01:07:11.863448-08:00,1007.8895263671875,10.726573,10726.573 +376,2025-03-07T01:07:22.590474-08:00,1007.9078979492188,10.727026,10727.026 +377,2025-03-07T01:07:33.320619-08:00,1007.922607421875,10.730145,10730.145 +378,2025-03-07T01:07:44.051483-08:00,1007.9210815429688,10.730864,10730.864 +379,2025-03-07T01:07:54.783687-08:00,1007.9523315429688,10.732204,10732.204 +380,2025-03-07T01:08:05.503444-08:00,1007.9193725585938,10.719757,10719.757 +381,2025-03-07T01:08:16.235450-08:00,1007.924560546875,10.732006,10732.006 +382,2025-03-07T01:08:26.959548-08:00,1007.924560546875,10.724098,10724.098 +383,2025-03-07T01:08:37.688474-08:00,1007.9000244140625,10.728926,10728.926 +384,2025-03-07T01:08:48.415677-08:00,1007.9146728515625,10.727203,10727.203 +385,2025-03-07T01:08:59.143649-08:00,1007.9146728515625,10.727972,10727.972 +386,2025-03-07T01:09:09.863654-08:00,1007.9411010742188,10.720005,10720.005 +387,2025-03-07T01:09:20.589665-08:00,1007.9411010742188,10.726011,10726.011 +388,2025-03-07T01:09:31.313611-08:00,1007.9099731445312,10.723946,10723.946 +389,2025-03-07T01:09:42.042685-08:00,1007.9034423828125,10.729074,10729.074 +390,2025-03-07T01:09:52.766608-08:00,1007.9137573242188,10.723923,10723.923 +391,2025-03-07T01:10:03.485477-08:00,1007.9165649414062,10.718869,10718.869 +392,2025-03-07T01:10:14.209450-08:00,1007.9364013671875,10.723973,10723.973 +393,2025-03-07T01:10:24.939443-08:00,1007.87744140625,10.729993,10729.993 +394,2025-03-07T01:10:35.665039-08:00,1007.8726806640625,10.725596,10725.596 +395,2025-03-07T01:10:46.390449-08:00,1007.8872680664062,10.72541,10725.41 +396,2025-03-07T01:10:57.115686-08:00,1007.8972778320312,10.725237,10725.237 +397,2025-03-07T01:11:07.839449-08:00,1007.880615234375,10.723763,10723.763 +398,2025-03-07T01:11:18.564644-08:00,1007.9090576171875,10.725195,10725.195 +399,2025-03-07T01:11:29.287474-08:00,1007.872802734375,10.72283,10722.83 +400,2025-03-07T01:11:40.017516-08:00,1007.8859252929688,10.730042,10730.042 +401,2025-03-07T01:11:50.738041-08:00,1007.8759155273438,10.720525,10720.525 +402,2025-03-07T01:12:01.464660-08:00,1007.9288940429688,10.726619,10726.619 +403,2025-03-07T01:12:12.188850-08:00,1007.87939453125,10.72419,10724.19 +404,2025-03-07T01:12:22.916450-08:00,1007.93408203125,10.7276,10727.6 +405,2025-03-07T01:12:33.646006-08:00,1007.9109497070312,10.729556,10729.556 +406,2025-03-07T01:12:44.365607-08:00,1007.9028930664062,10.719601,10719.601 +407,2025-03-07T01:12:55.096451-08:00,1007.9227294921875,10.730844,10730.844 +408,2025-03-07T01:13:05.814445-08:00,1007.9307861328125,10.717994,10717.994 +409,2025-03-07T01:13:16.540667-08:00,1007.89453125,10.726222,10726.222 +410,2025-03-07T01:13:27.268641-08:00,1007.9195556640625,10.727974,10727.974 +411,2025-03-07T01:13:37.991520-08:00,1007.9180297851562,10.722879,10722.879 +412,2025-03-07T01:13:48.713594-08:00,1007.8964233398438,10.722074,10722.074 +413,2025-03-07T01:13:59.441510-08:00,1007.8982543945312,10.727916,10727.916 +414,2025-03-07T01:14:10.166452-08:00,1007.9246826171875,10.724942,10724.942 +415,2025-03-07T01:14:20.888451-08:00,1007.9229125976562,10.721999,10721.999 +416,2025-03-07T01:14:31.611861-08:00,1007.92138671875,10.72341,10723.41 +417,2025-03-07T01:14:42.345899-08:00,1007.908203125,10.734038,10734.038 +418,2025-03-07T01:14:53.067450-08:00,1007.9265747070312,10.721551,10721.551 +419,2025-03-07T01:15:03.791886-08:00,1007.9265747070312,10.724436,10724.436 +420,2025-03-07T01:15:14.518448-08:00,1007.9185180664062,10.726562,10726.562 +421,2025-03-07T01:15:25.251539-08:00,1007.888916015625,10.733091,10733.091 +422,2025-03-07T01:15:35.976493-08:00,1007.888916015625,10.724954,10724.954 +423,2025-03-07T01:15:46.698448-08:00,1007.9087524414062,10.721955,10721.955 +424,2025-03-07T01:15:57.422387-08:00,1007.9171752929688,10.723939,10723.939 +425,2025-03-07T01:16:08.142451-08:00,1007.8908081054688,10.720064,10720.064 +426,2025-03-07T01:16:18.867636-08:00,1007.9120483398438,10.725185,10725.185 +427,2025-03-07T01:16:29.587626-08:00,1007.8775634765625,10.71999,10719.99 +428,2025-03-07T01:16:40.313634-08:00,1007.8927612304688,10.726008,10726.008 +429,2025-03-07T01:16:51.046715-08:00,1007.9073486328125,10.733081,10733.081 +430,2025-03-07T01:17:01.768652-08:00,1007.9140014648438,10.721937,10721.937 +431,2025-03-07T01:17:12.495554-08:00,1007.915771484375,10.726902,10726.902 +432,2025-03-07T01:17:23.222654-08:00,1007.8861083984375,10.7271,10727.1 +433,2025-03-07T01:17:33.943642-08:00,1007.8912353515625,10.720988,10720.988 +434,2025-03-07T01:17:44.673501-08:00,1007.8978881835938,10.729859,10729.859 +435,2025-03-07T01:17:55.403914-08:00,1007.8696899414062,10.730413,10730.413 +436,2025-03-07T01:18:06.120445-08:00,1007.8943481445312,10.716531,10716.531 +437,2025-03-07T01:18:16.853545-08:00,1007.87451171875,10.7331,10733.1 +438,2025-03-07T01:18:27.573867-08:00,1007.9060668945312,10.720322,10720.322 +439,2025-03-07T01:18:38.303642-08:00,1007.9009399414062,10.729775,10729.775 +440,2025-03-07T01:18:49.023024-08:00,1007.907470703125,10.719382,10719.382 +441,2025-03-07T01:18:59.759654-08:00,1007.9324951171875,10.73663,10736.63 +442,2025-03-07T01:19:10.485451-08:00,1007.9160766601562,10.725797,10725.797 +443,2025-03-07T01:19:21.209473-08:00,1007.9160766601562,10.724022,10724.022 +444,2025-03-07T01:19:31.934653-08:00,1007.907958984375,10.72518,10725.18 +445,2025-03-07T01:19:42.665687-08:00,1007.9277954101562,10.731034,10731.034 +446,2025-03-07T01:19:53.384451-08:00,1007.9246215820312,10.718764,10718.764 +447,2025-03-07T01:20:04.118647-08:00,1007.9396362304688,10.734196,10734.196 +448,2025-03-07T01:20:14.836514-08:00,1007.9528198242188,10.717867,10717.867 +449,2025-03-07T01:20:25.567555-08:00,1007.9511108398438,10.731041,10731.041 +450,2025-03-07T01:20:36.293840-08:00,1007.9165649414062,10.726285,10726.285 +451,2025-03-07T01:20:47.018445-08:00,1007.9415893554688,10.724605,10724.605 +452,2025-03-07T01:20:57.746568-08:00,1007.9297485351562,10.728123,10728.123 +453,2025-03-07T01:21:08.465476-08:00,1007.9378051757812,10.718908,10718.908 +454,2025-03-07T01:21:19.196853-08:00,1007.9415893554688,10.731377,10731.377 +455,2025-03-07T01:21:29.919570-08:00,1007.9595336914062,10.722717,10722.717 +456,2025-03-07T01:21:40.643447-08:00,1007.9265747070312,10.723877,10723.877 +457,2025-03-07T01:21:51.369244-08:00,1007.923583984375,10.725797,10725.797 +458,2025-03-07T01:22:02.095450-08:00,1007.9368896484375,10.726206,10726.206 +459,2025-03-07T01:22:12.812548-08:00,1007.9434204101562,10.717098,10717.098 +460,2025-03-07T01:22:23.538451-08:00,1007.92041015625,10.725903,10725.903 +461,2025-03-07T01:22:34.264649-08:00,1007.9453125,10.726198,10726.198 +462,2025-03-07T01:22:44.985514-08:00,1007.9520263671875,10.720865,10720.865 +463,2025-03-07T01:22:55.718189-08:00,1007.9453125,10.732675,10732.675 +464,2025-03-07T01:23:06.437450-08:00,1007.956787109375,10.719261,10719.261 +465,2025-03-07T01:23:17.164703-08:00,1007.9766235351562,10.727253,10727.253 +466,2025-03-07T01:23:27.897638-08:00,1007.981689453125,10.732935,10732.935 +467,2025-03-07T01:23:38.616452-08:00,1007.9751586914062,10.718814,10718.814 +468,2025-03-07T01:23:49.345848-08:00,1007.971923828125,10.729396,10729.396 +469,2025-03-07T01:24:00.074616-08:00,1007.9785766601562,10.728768,10728.768 +470,2025-03-07T01:24:10.804588-08:00,1007.970458984375,10.729972,10729.972 +471,2025-03-07T01:24:21.532848-08:00,1007.99169921875,10.72826,10728.26 +472,2025-03-07T01:24:32.249698-08:00,1007.9328002929688,10.71685,10716.85 +473,2025-03-07T01:24:42.979610-08:00,1007.970458984375,10.729912,10729.912 +474,2025-03-07T01:24:53.698597-08:00,1007.9411010742188,10.718987,10718.987 +475,2025-03-07T01:25:04.425110-08:00,1007.9756469726562,10.726513,10726.513 +476,2025-03-07T01:25:15.151447-08:00,1007.9888305664062,10.726337,10726.337 +477,2025-03-07T01:25:25.871879-08:00,1007.9954833984375,10.720432,10720.432 +478,2025-03-07T01:25:36.592450-08:00,1007.9939575195312,10.720571,10720.571 +479,2025-03-07T01:25:47.323973-08:00,1008.0365600585938,10.731523,10731.523 +480,2025-03-07T01:25:58.046475-08:00,1007.9742431640625,10.722502,10722.502 +481,2025-03-07T01:26:08.769450-08:00,1007.9790649414062,10.722975,10722.975 +482,2025-03-07T01:26:19.498629-08:00,1007.970947265625,10.729179,10729.179 +483,2025-03-07T01:26:30.213516-08:00,1007.985595703125,10.714887,10714.887 +484,2025-03-07T01:26:40.942641-08:00,1007.9774780273438,10.729125,10729.125 +485,2025-03-07T01:26:51.657532-08:00,1007.984130859375,10.714891,10714.891 +486,2025-03-07T01:27:02.381490-08:00,1007.9907836914062,10.723958,10723.958 +487,2025-03-07T01:27:13.103592-08:00,1007.997314453125,10.722102,10722.102 +488,2025-03-07T01:27:23.835606-08:00,1007.994140625,10.732014,10732.014 +489,2025-03-07T01:27:34.550453-08:00,1007.982666015625,10.714847,10714.847 +490,2025-03-07T01:27:45.277621-08:00,1008.0355224609375,10.727168,10727.168 +491,2025-03-07T01:27:55.996449-08:00,1008.00732421875,10.718828,10718.828 +492,2025-03-07T01:28:06.721553-08:00,1008.00439453125,10.725104,10725.104 +493,2025-03-07T01:28:17.448454-08:00,1008.0059204101562,10.726901,10726.901 +494,2025-03-07T01:28:28.171672-08:00,1008.0337524414062,10.723218,10723.218 +495,2025-03-07T01:28:38.900450-08:00,1008.0256958007812,10.728778,10728.778 +496,2025-03-07T01:28:49.622448-08:00,1008.0242309570312,10.721998,10721.998 +497,2025-03-07T01:29:00.346686-08:00,1008.002685546875,10.724238,10724.238 +498,2025-03-07T01:29:11.072453-08:00,1008.0242309570312,10.725767,10725.767 +499,2025-03-07T01:29:21.791199-08:00,1008.0242309570312,10.718746,10718.746 +500,2025-03-07T01:29:32.516449-08:00,1008.03564453125,10.72525,10725.25 +501,2025-03-07T01:29:43.238630-08:00,1008.001220703125,10.722181,10722.181 +502,2025-03-07T01:29:53.959476-08:00,1008.0554809570312,10.720846,10720.846 +503,2025-03-07T01:30:04.676760-08:00,1008.0488891601562,10.717284,10717.284 +504,2025-03-07T01:30:15.406448-08:00,1008.0276489257812,10.729688,10729.688 +505,2025-03-07T01:30:26.122296-08:00,1008.0393676757812,10.715848,10715.848 +506,2025-03-07T01:30:36.845521-08:00,1008.044189453125,10.723225,10723.225 +507,2025-03-07T01:30:47.569886-08:00,1008.055908203125,10.724365,10724.365 +508,2025-03-07T01:30:58.290450-08:00,1008.013427734375,10.720564,10720.564 +509,2025-03-07T01:31:09.007471-08:00,1008.0167846679688,10.717021,10717.021 +510,2025-03-07T01:31:19.733654-08:00,1008.0365600585938,10.726183,10726.183 +511,2025-03-07T01:31:30.455284-08:00,1008.0399780273438,10.72163,10721.63 +512,2025-03-07T01:31:41.178450-08:00,1008.0531005859375,10.723166,10723.166 +513,2025-03-07T01:31:51.906815-08:00,1008.0521850585938,10.728365,10728.365 +514,2025-03-07T01:32:02.625484-08:00,1008.0408325195312,10.718669,10718.669 +515,2025-03-07T01:32:13.353671-08:00,1008.0904541015625,10.728187,10728.187 +516,2025-03-07T01:32:24.071685-08:00,1008.0630493164062,10.718014,10718.014 +517,2025-03-07T01:32:34.798500-08:00,1008.076416015625,10.726815,10726.815 +518,2025-03-07T01:32:45.518002-08:00,1008.0753173828125,10.719502,10719.502 +519,2025-03-07T01:32:56.239669-08:00,1008.05419921875,10.721667,10721.667 +520,2025-03-07T01:33:06.967446-08:00,1008.0778198242188,10.727777,10727.777 +521,2025-03-07T01:33:17.691451-08:00,1008.0621337890625,10.724005,10724.005 +522,2025-03-07T01:33:28.412579-08:00,1008.0526733398438,10.721128,10721.128 +523,2025-03-07T01:33:39.131915-08:00,1008.0693969726562,10.719336,10719.336 +524,2025-03-07T01:33:49.862461-08:00,1008.051513671875,10.730546,10730.546 +525,2025-03-07T01:34:00.577451-08:00,1008.0632934570312,10.71499,10714.99 +526,2025-03-07T01:34:11.302690-08:00,1008.0538940429688,10.725239,10725.239 +527,2025-03-07T01:34:22.018650-08:00,1008.0609130859375,10.71596,10715.96 +528,2025-03-07T01:34:32.745569-08:00,1008.0496215820312,10.726919,10726.919 +529,2025-03-07T01:34:43.461446-08:00,1008.06982421875,10.715877,10715.877 +530,2025-03-07T01:34:54.184654-08:00,1008.0570068359375,10.723208,10723.208 +531,2025-03-07T01:35:04.902629-08:00,1008.0406494140625,10.717975,10717.975 +532,2025-03-07T01:35:15.633448-08:00,1008.032958984375,10.730819,10730.819 +533,2025-03-07T01:35:26.350478-08:00,1008.0362548828125,10.71703,10717.03 +534,2025-03-07T01:35:37.065653-08:00,1008.0381469726562,10.715175,10715.175 +535,2025-03-07T01:35:47.790699-08:00,1008.0631103515625,10.725046,10725.046 +536,2025-03-07T01:35:58.515447-08:00,1008.0320434570312,10.724748,10724.748 +537,2025-03-07T01:36:09.235515-08:00,1008.0701293945312,10.720068,10720.068 +538,2025-03-07T01:36:19.956660-08:00,1008.0240478515625,10.721145,10721.145 +539,2025-03-07T01:36:30.681734-08:00,1008.0587768554688,10.725074,10725.074 +540,2025-03-07T01:36:41.408447-08:00,1008.032470703125,10.726713,10726.713 +541,2025-03-07T01:36:52.120451-08:00,1008.0211791992188,10.712004,10712.004 +542,2025-03-07T01:37:02.842474-08:00,1008.0343627929688,10.722023,10722.023 +543,2025-03-07T01:37:13.565944-08:00,1008.0064697265625,10.72347,10723.47 +544,2025-03-07T01:37:24.293513-08:00,1008.0248413085938,10.727569,10727.569 +545,2025-03-07T01:37:35.018628-08:00,1008.0167236328125,10.725115,10725.115 +546,2025-03-07T01:37:45.736545-08:00,1008.0215454101562,10.717917,10717.917 +547,2025-03-07T01:37:56.467732-08:00,1008.0150146484375,10.731187,10731.187 +548,2025-03-07T01:38:07.196039-08:00,1008.0054931640625,10.728307,10728.307 +549,2025-03-07T01:38:17.914447-08:00,1008.0083618164062,10.718408,10718.408 +550,2025-03-07T01:38:28.638657-08:00,1008.0068969726562,10.72421,10724.21 +551,2025-03-07T01:38:39.361656-08:00,1008.0215454101562,10.722999,10722.999 +552,2025-03-07T01:38:50.087632-08:00,1008.0134887695312,10.725976,10725.976 +553,2025-03-07T01:39:00.809648-08:00,1008.001708984375,10.722016,10722.016 +554,2025-03-07T01:39:11.530448-08:00,1008.0347900390625,10.7208,10720.8 +555,2025-03-07T01:39:22.253523-08:00,1008.0431518554688,10.723075,10723.075 +556,2025-03-07T01:39:32.977628-08:00,1007.9937744140625,10.724105,10724.105 +557,2025-03-07T01:39:43.704705-08:00,1008.030029296875,10.727077,10727.077 +558,2025-03-07T01:39:54.432738-08:00,1008.0233764648438,10.728033,10728.033 +559,2025-03-07T01:40:05.157626-08:00,1008.0446166992188,10.724888,10724.888 +560,2025-03-07T01:40:15.871448-08:00,1008.03955078125,10.713822,10713.822 +561,2025-03-07T01:40:26.601848-08:00,1008.0460815429688,10.7304,10730.4 +562,2025-03-07T01:40:37.324444-08:00,1008.042724609375,10.722596,10722.596 +563,2025-03-07T01:40:48.051469-08:00,1008.0574340820312,10.727025,10727.025 +564,2025-03-07T01:40:58.778677-08:00,1008.0772094726562,10.727208,10727.208 +565,2025-03-07T01:41:09.501631-08:00,1008.0739135742188,10.722954,10722.954 +566,2025-03-07T01:41:20.223449-08:00,1008.0588989257812,10.721818,10721.818 +567,2025-03-07T01:41:30.946450-08:00,1008.0900268554688,10.723001,10723.001 +568,2025-03-07T01:41:41.671728-08:00,1008.0701293945312,10.725278,10725.278 +569,2025-03-07T01:41:52.394516-08:00,1008.0734252929688,10.722788,10722.788 +570,2025-03-07T01:42:03.124626-08:00,1008.08154296875,10.73011,10730.11 +571,2025-03-07T01:42:13.842655-08:00,1008.060302734375,10.718029,10718.029 +572,2025-03-07T01:42:24.579491-08:00,1008.0848388671875,10.736836,10736.836 +573,2025-03-07T01:42:35.294004-08:00,1008.06640625,10.714513,10714.513 +574,2025-03-07T01:42:46.028669-08:00,1008.0828857421875,10.734665,10734.665 +575,2025-03-07T01:42:56.747446-08:00,1008.0909423828125,10.718777,10718.777 +576,2025-03-07T01:43:07.476524-08:00,1008.1056518554688,10.729078,10729.078 +577,2025-03-07T01:43:18.204549-08:00,1008.0990600585938,10.728025,10728.025 +578,2025-03-07T01:43:28.927660-08:00,1008.1187744140625,10.723111,10723.111 +579,2025-03-07T01:43:39.648623-08:00,1008.09716796875,10.720963,10720.963 +580,2025-03-07T01:43:50.375450-08:00,1008.0806274414062,10.726827,10726.827 +581,2025-03-07T01:44:01.101656-08:00,1008.0904541015625,10.726206,10726.206 +582,2025-03-07T01:44:11.828275-08:00,1008.1036987304688,10.726619,10726.619 +583,2025-03-07T01:44:22.555453-08:00,1008.0999755859375,10.727178,10727.178 +584,2025-03-07T01:44:33.286916-08:00,1008.0934448242188,10.731463,10731.463 +585,2025-03-07T01:44:44.006449-08:00,1008.0702514648438,10.719533,10719.533 +586,2025-03-07T01:44:54.731496-08:00,1008.106201171875,10.725047,10725.047 +587,2025-03-07T01:45:05.463678-08:00,1008.08642578125,10.732182,10732.182 +588,2025-03-07T01:45:16.183594-08:00,1008.0750122070312,10.719916,10719.916 +589,2025-03-07T01:45:26.904459-08:00,1008.077880859375,10.720865,10720.865 +590,2025-03-07T01:45:37.636486-08:00,1008.1126708984375,10.732027,10732.027 +591,2025-03-07T01:45:48.358642-08:00,1008.1221923828125,10.722156,10722.156 +592,2025-03-07T01:45:59.083450-08:00,1008.0909423828125,10.724808,10724.808 +593,2025-03-07T01:46:09.818775-08:00,1008.1221313476562,10.735325,10735.325 +594,2025-03-07T01:46:20.541448-08:00,1008.095703125,10.722673,10722.673 +595,2025-03-07T01:46:31.268450-08:00,1008.103759765625,10.727002,10727.002 +596,2025-03-07T01:46:41.986688-08:00,1008.0906372070312,10.718238,10718.238 +597,2025-03-07T01:46:52.718450-08:00,1008.1018676757812,10.731762,10731.762 +598,2025-03-07T01:47:03.445644-08:00,1008.0953369140625,10.727194,10727.194 +599,2025-03-07T01:47:14.162657-08:00,1008.0769653320312,10.717013,10717.013 +600,2025-03-07T01:47:24.889454-08:00,1008.1013793945312,10.726797,10726.797 +601,2025-03-07T01:47:35.617599-08:00,1008.131103515625,10.728145,10728.145 +602,2025-03-07T01:47:46.349749-08:00,1008.1141967773438,10.73215,10732.15 +603,2025-03-07T01:47:57.068012-08:00,1008.107666015625,10.718263,10718.263 +604,2025-03-07T01:48:07.800452-08:00,1008.1109619140625,10.73244,10732.44 +605,2025-03-07T01:48:18.525693-08:00,1008.09912109375,10.725241,10725.241 +606,2025-03-07T01:48:29.249449-08:00,1008.1353759765625,10.723756,10723.756 +607,2025-03-07T01:48:39.977451-08:00,1008.1320190429688,10.728002,10728.002 +608,2025-03-07T01:48:50.704326-08:00,1008.12548828125,10.726875,10726.875 +609,2025-03-07T01:49:01.435447-08:00,1008.115478515625,10.731121,10731.121 +610,2025-03-07T01:49:12.156608-08:00,1008.13671875,10.721161,10721.161 +611,2025-03-07T01:49:22.885445-08:00,1008.13671875,10.728837,10728.837 +612,2025-03-07T01:49:33.603639-08:00,1008.1465454101562,10.718194,10718.194 +613,2025-03-07T01:49:44.327476-08:00,1008.1334228515625,10.723837,10723.837 +614,2025-03-07T01:49:55.058447-08:00,1008.1498413085938,10.730971,10730.971 +615,2025-03-07T01:50:05.782136-08:00,1008.14794921875,10.723689,10723.689 +616,2025-03-07T01:50:16.506612-08:00,1008.142822265625,10.724476,10724.476 +617,2025-03-07T01:50:27.226523-08:00,1008.129638671875,10.719911,10719.911 +618,2025-03-07T01:50:37.943449-08:00,1008.1475219726562,10.716926,10716.926 +619,2025-03-07T01:50:48.666617-08:00,1008.1489868164062,10.723168,10723.168 +620,2025-03-07T01:50:59.399661-08:00,1008.117431640625,10.733044,10733.044 +621,2025-03-07T01:51:10.118703-08:00,1008.1419677734375,10.719042,10719.042 +622,2025-03-07T01:51:20.844448-08:00,1008.1320190429688,10.725745,10725.745 +623,2025-03-07T01:51:31.564746-08:00,1008.1220092773438,10.720298,10720.298 +624,2025-03-07T01:51:42.292779-08:00,1008.1758422851562,10.728033,10728.033 +625,2025-03-07T01:51:53.018669-08:00,1008.134765625,10.72589,10725.89 +626,2025-03-07T01:52:03.744521-08:00,1008.1621704101562,10.725852,10725.852 +627,2025-03-07T01:52:14.337108-08:00,1008.1390380859375,10.592587,10592.587 +628,2025-03-07T01:52:25.058062-08:00,1008.16357421875,10.720954,10720.954 +629,2025-03-07T01:52:35.778140-08:00,1008.153564453125,10.720078,10720.078 +630,2025-03-07T01:52:46.511192-08:00,1008.1470336914062,10.733052,10733.052 +631,2025-03-07T01:52:57.232894-08:00,1008.1928100585938,10.721702,10721.702 +632,2025-03-07T01:53:07.961999-08:00,1008.1908569335938,10.729105,10729.105 +633,2025-03-07T01:53:18.678893-08:00,1008.1904907226562,10.716894,10716.894 +634,2025-03-07T01:53:29.407287-08:00,1008.1720581054688,10.728394,10728.394 +635,2025-03-07T01:53:40.127888-08:00,1008.17529296875,10.720601,10720.601 +636,2025-03-07T01:53:50.856892-08:00,1008.2343139648438,10.729004,10729.004 +637,2025-03-07T01:54:01.579145-08:00,1008.1668090820312,10.722253,10722.253 +638,2025-03-07T01:54:12.311896-08:00,1008.1927490234375,10.732751,10732.751 +639,2025-03-07T01:54:23.033074-08:00,1008.1810302734375,10.721178,10721.178 +640,2025-03-07T01:54:33.758105-08:00,1008.1629638671875,10.725031,10725.031 +641,2025-03-07T01:54:44.488922-08:00,1008.1875,10.730817,10730.817 +642,2025-03-07T01:54:55.208895-08:00,1008.1757202148438,10.719973,10719.973 +643,2025-03-07T01:55:05.941288-08:00,1008.17236328125,10.732393,10732.393 +644,2025-03-07T01:55:16.659893-08:00,1008.1671752929688,10.718605,10718.605 +645,2025-03-07T01:55:27.384919-08:00,1008.1851806640625,10.725026,10725.026 +646,2025-03-07T01:55:38.110072-08:00,1008.1785278320312,10.725153,10725.153 +647,2025-03-07T01:55:48.831894-08:00,1008.194580078125,10.721822,10721.822 +648,2025-03-07T01:55:59.557070-08:00,1008.2111206054688,10.725176,10725.176 +649,2025-03-07T01:56:10.285922-08:00,1008.2059326171875,10.728852,10728.852 +650,2025-03-07T01:56:21.017372-08:00,1008.2142944335938,10.73145,10731.45 +651,2025-03-07T01:56:31.741182-08:00,1008.237060546875,10.72381,10723.81 +652,2025-03-07T01:56:42.466892-08:00,1008.2091674804688,10.72571,10725.71 +653,2025-03-07T01:56:53.194088-08:00,1008.2171630859375,10.727196,10727.196 +654,2025-03-07T01:57:03.920965-08:00,1008.250244140625,10.726877,10726.877 +655,2025-03-07T01:57:14.651256-08:00,1008.232177734375,10.730291,10730.291 +656,2025-03-07T01:57:25.369062-08:00,1008.2633056640625,10.717806,10717.806 +657,2025-03-07T01:57:36.103139-08:00,1008.228515625,10.734077,10734.077 +658,2025-03-07T01:57:46.829140-08:00,1008.2449951171875,10.726001,10726.001 +659,2025-03-07T01:57:57.547103-08:00,1008.2529907226562,10.717963,10717.963 +660,2025-03-07T01:58:08.275069-08:00,1008.2449951171875,10.727966,10727.966 +661,2025-03-07T01:58:19.004974-08:00,1008.2463989257812,10.729905,10729.905 +662,2025-03-07T01:58:29.726459-08:00,1008.2398681640625,10.721485,10721.485 +663,2025-03-07T01:58:40.452893-08:00,1008.2742919921875,10.726434,10726.434 +664,2025-03-07T01:58:51.175893-08:00,1008.2478637695312,10.723,10723.0 +665,2025-03-07T01:59:01.893919-08:00,1008.2676391601562,10.718026,10718.026 +666,2025-03-07T01:59:12.619111-08:00,1008.2742919921875,10.725192,10725.192 +667,2025-03-07T01:59:23.343936-08:00,1008.2694702148438,10.724825,10724.825 +668,2025-03-07T01:59:34.066895-08:00,1008.2809448242188,10.722959,10722.959 +669,2025-03-07T01:59:44.790033-08:00,1008.2826538085938,10.723138,10723.138 +670,2025-03-07T01:59:55.515892-08:00,1008.2496948242188,10.725859,10725.859 +671,2025-03-07T02:00:06.243217-08:00,1008.2841186523438,10.727325,10727.325 +672,2025-03-07T02:00:16.961253-08:00,1008.2841186523438,10.718036,10718.036 +673,2025-03-07T02:00:27.689116-08:00,1008.2959594726562,10.727863,10727.863 +674,2025-03-07T02:00:38.411893-08:00,1008.2694702148438,10.722777,10722.777 +675,2025-03-07T02:00:49.132164-08:00,1008.2562255859375,10.720271,10720.271 +676,2025-03-07T02:00:59.863029-08:00,1008.2430419921875,10.730865,10730.865 +677,2025-03-07T02:01:10.579148-08:00,1008.2709350585938,10.716119,10716.119 +678,2025-03-07T02:01:21.304117-08:00,1008.2496948242188,10.724969,10724.969 +679,2025-03-07T02:01:27.921095-08:00,1008.2775268554688,6.616978,6616.978 +680,2025-03-07T02:01:32.029897-08:00,1008.279296875,4.108802,4108.802 +681,2025-03-07T02:01:42.758062-08:00,1008.2576293945312,10.728165,10728.165 +682,2025-03-07T02:01:53.480922-08:00,1008.2430419921875,10.72286,10722.86 +683,2025-03-07T02:02:04.212086-08:00,1008.2346801757812,10.731164,10731.164 +684,2025-03-07T02:02:14.939011-08:00,1008.2628173828125,10.726925,10726.925 +685,2025-03-07T02:02:25.657351-08:00,1008.2478637695312,10.71834,10718.34 +686,2025-03-07T02:02:36.382921-08:00,1008.2611083984375,10.72557,10725.57 +687,2025-03-07T02:02:47.107043-08:00,1008.2332153320312,10.724122,10724.122 +688,2025-03-07T02:02:57.835128-08:00,1008.2430419921875,10.728085,10728.085 +689,2025-03-07T02:03:08.558100-08:00,1008.2332153320312,10.722972,10722.972 +690,2025-03-07T02:03:19.281101-08:00,1008.2346801757812,10.723001,10723.001 +691,2025-03-07T02:03:30.001895-08:00,1008.21484375,10.720794,10720.794 +692,2025-03-07T02:03:40.726061-08:00,1008.2034301757812,10.724166,10724.166 +693,2025-03-07T02:03:51.453117-08:00,1008.2100219726562,10.727056,10727.056 +694,2025-03-07T02:04:02.175110-08:00,1008.20166015625,10.721993,10721.993 +695,2025-03-07T02:04:12.895988-08:00,1008.193603515625,10.720878,10720.878 +696,2025-03-07T02:04:23.616971-08:00,1008.1737670898438,10.720983,10720.983 +697,2025-03-07T02:04:34.348918-08:00,1008.2067260742188,10.731947,10731.947 +698,2025-03-07T02:04:45.075926-08:00,1008.1950073242188,10.727008,10727.008 +699,2025-03-07T02:04:55.789892-08:00,1008.193603515625,10.713966,10713.966 +700,2025-03-07T02:05:06.524096-08:00,1008.193603515625,10.734204,10734.204 +701,2025-03-07T02:05:17.236920-08:00,1008.193603515625,10.712824,10712.824 +702,2025-03-07T02:05:27.960895-08:00,1008.18408203125,10.723975,10723.975 +703,2025-03-07T02:05:38.694804-08:00,1008.1889038085938,10.733909,10733.909 +704,2025-03-07T02:05:49.411099-08:00,1008.1807861328125,10.716295,10716.295 +705,2025-03-07T02:06:00.135080-08:00,1008.1609497070312,10.723981,10723.981 +706,2025-03-07T02:06:10.858896-08:00,1008.1874389648438,10.723816,10723.816 +707,2025-03-07T02:06:21.584686-08:00,1008.1727294921875,10.72579,10725.79 +708,2025-03-07T02:06:32.309889-08:00,1008.194091796875,10.725203,10725.203 +709,2025-03-07T02:06:43.026996-08:00,1008.1842041015625,10.717107,10717.107 +710,2025-03-07T02:06:53.758022-08:00,1008.1893920898438,10.731026,10731.026 +711,2025-03-07T02:07:04.477097-08:00,1008.1878662109375,10.719075,10719.075 +712,2025-03-07T02:07:15.202941-08:00,1008.1893920898438,10.725844,10725.844 +713,2025-03-07T02:07:25.926032-08:00,1008.17138671875,10.723091,10723.091 +714,2025-03-07T02:07:36.657059-08:00,1008.1832275390625,10.731027,10731.027 +715,2025-03-07T02:07:47.372587-08:00,1008.1846923828125,10.715528,10715.528 +716,2025-03-07T02:07:58.097077-08:00,1008.1898193359375,10.72449,10724.49 +717,2025-03-07T02:08:08.823043-08:00,1008.18798828125,10.725966,10725.966 +718,2025-03-07T02:08:19.553896-08:00,1008.194580078125,10.730853,10730.853 +719,2025-03-07T02:08:30.274918-08:00,1008.2012329101562,10.721022,10721.022 +720,2025-03-07T02:08:41.001096-08:00,1008.166748046875,10.726178,10726.178 +721,2025-03-07T02:08:51.722893-08:00,1008.18994140625,10.721797,10721.797 +722,2025-03-07T02:09:02.442895-08:00,1008.2181396484375,10.720002,10720.002 +723,2025-03-07T02:09:13.166941-08:00,1008.17529296875,10.724046,10724.046 +724,2025-03-07T02:09:23.895115-08:00,1008.203125,10.728174,10728.174 +725,2025-03-07T02:09:34.616930-08:00,1008.2002563476562,10.721815,10721.815 +726,2025-03-07T02:09:45.339806-08:00,1008.2134399414062,10.722876,10722.876 +727,2025-03-07T02:09:56.064022-08:00,1008.2479858398438,10.724216,10724.216 +728,2025-03-07T02:10:06.789895-08:00,1008.2318115234375,10.725873,10725.873 +729,2025-03-07T02:10:17.516149-08:00,1008.2234497070312,10.726254,10726.254 +730,2025-03-07T02:10:28.231649-08:00,1008.2139282226562,10.7155,10715.5 +731,2025-03-07T02:10:38.956080-08:00,1008.2484130859375,10.724431,10724.431 +732,2025-03-07T02:10:49.680901-08:00,1008.2139282226562,10.724821,10724.821 +733,2025-03-07T02:11:00.403348-08:00,1008.2106323242188,10.722447,10722.447 +734,2025-03-07T02:11:11.128893-08:00,1008.2634887695312,10.725545,10725.545 +735,2025-03-07T02:11:21.847895-08:00,1008.2568969726562,10.719002,10719.002 +736,2025-03-07T02:11:32.574896-08:00,1008.2554931640625,10.727001,10727.001 +737,2025-03-07T02:11:43.292306-08:00,1008.2753295898438,10.71741,10717.41 +738,2025-03-07T02:11:54.013893-08:00,1008.2852172851562,10.721587,10721.587 +739,2025-03-07T02:12:04.728088-08:00,1008.2852172851562,10.714195,10714.195 +740,2025-03-07T02:12:15.449925-08:00,1008.2852172851562,10.721837,10721.837 +741,2025-03-07T02:12:26.179296-08:00,1008.2771606445312,10.729371,10729.371 +742,2025-03-07T02:12:36.889893-08:00,1008.2904052734375,10.710597,10710.597 +743,2025-03-07T02:12:47.620077-08:00,1008.3035888671875,10.730184,10730.184 +744,2025-03-07T02:12:58.336896-08:00,1008.280517578125,10.716819,10716.819 +745,2025-03-07T02:13:09.057358-08:00,1008.3069458007812,10.720462,10720.462 +746,2025-03-07T02:13:19.787892-08:00,1008.292236328125,10.730534,10730.534 +747,2025-03-07T02:13:30.508910-08:00,1008.3121337890625,10.721018,10721.018 +748,2025-03-07T02:13:41.229896-08:00,1008.3106079101562,10.720986,10720.986 +749,2025-03-07T02:13:51.952988-08:00,1008.307373046875,10.723092,10723.092 +750,2025-03-07T02:14:02.673893-08:00,1008.3088989257812,10.720905,10720.905 +751,2025-03-07T02:14:13.390064-08:00,1008.3451538085938,10.716171,10716.171 +752,2025-03-07T02:14:24.109924-08:00,1008.30224609375,10.71986,10719.86 +753,2025-03-07T02:14:34.834271-08:00,1008.3304443359375,10.724347,10724.347 +754,2025-03-07T02:14:45.562920-08:00,1008.307373046875,10.728649,10728.649 +755,2025-03-07T02:14:56.279079-08:00,1008.3154907226562,10.716159,10716.159 +756,2025-03-07T02:15:07.001978-08:00,1008.3286743164062,10.722899,10722.899 +757,2025-03-07T02:15:17.720294-08:00,1008.3041381835938,10.718316,10718.316 +758,2025-03-07T02:15:28.448893-08:00,1008.3323364257812,10.728599,10728.599 +759,2025-03-07T02:15:39.170912-08:00,1008.3173217773438,10.722019,10722.019 +760,2025-03-07T02:15:49.900247-08:00,1008.3470458984375,10.729335,10729.335 +761,2025-03-07T02:16:00.626888-08:00,1008.3306274414062,10.726641,10726.641 +762,2025-03-07T02:16:11.351790-08:00,1008.32763671875,10.724902,10724.902 +763,2025-03-07T02:16:22.074895-08:00,1008.34375,10.723105,10723.105 +764,2025-03-07T02:16:32.796298-08:00,1008.314453125,10.721403,10721.403 +765,2025-03-07T02:16:43.510159-08:00,1008.337646484375,10.713861,10713.861 +766,2025-03-07T02:16:54.238447-08:00,1008.2862548828125,10.728288,10728.288 +767,2025-03-07T02:17:04.959953-08:00,1008.2994384765625,10.721506,10721.506 +768,2025-03-07T02:17:15.679510-08:00,1008.2848510742188,10.719557,10719.557 +769,2025-03-07T02:17:26.399895-08:00,1008.2899169921875,10.720385,10720.385 +770,2025-03-07T02:17:37.129067-08:00,1008.3031005859375,10.729172,10729.172 +771,2025-03-07T02:17:47.846391-08:00,1008.3013916015625,10.717324,10717.324 +772,2025-03-07T02:17:58.569708-08:00,1008.2750244140625,10.723317,10723.317 +773,2025-03-07T02:18:09.292892-08:00,1008.2800903320312,10.723184,10723.184 +774,2025-03-07T02:18:20.012158-08:00,1008.2654418945312,10.719266,10719.266 +775,2025-03-07T02:18:30.739895-08:00,1008.2654418945312,10.727737,10727.737 +776,2025-03-07T02:18:41.456150-08:00,1008.27685546875,10.716255,10716.255 +777,2025-03-07T02:18:52.178076-08:00,1008.255615234375,10.721926,10721.926 +778,2025-03-07T02:19:02.894960-08:00,1008.2899780273438,10.716884,10716.884 +779,2025-03-07T02:19:13.622896-08:00,1008.275390625,10.727936,10727.936 +780,2025-03-07T02:19:24.346067-08:00,1008.267333984375,10.723171,10723.171 +781,2025-03-07T02:19:35.063892-08:00,1008.2540893554688,10.717825,10717.825 +782,2025-03-07T02:19:45.783892-08:00,1008.2725219726562,10.72,10720.0 +783,2025-03-07T02:19:56.508370-08:00,1008.27392578125,10.724478,10724.478 +784,2025-03-07T02:20:07.233292-08:00,1008.2592163085938,10.724922,10724.922 +785,2025-03-07T02:20:17.964893-08:00,1008.265869140625,10.731601,10731.601 +786,2025-03-07T02:20:28.682081-08:00,1008.2592163085938,10.717188,10717.188 +787,2025-03-07T02:20:39.404895-08:00,1008.2442016601562,10.722814,10722.814 +788,2025-03-07T02:20:50.128048-08:00,1008.2692260742188,10.723153,10723.153 +789,2025-03-07T02:21:00.860917-08:00,1008.2442016601562,10.732869,10732.869 +790,2025-03-07T02:21:11.585212-08:00,1008.2362670898438,10.724295,10724.295 +791,2025-03-07T02:21:22.313078-08:00,1008.2560424804688,10.727866,10727.866 +792,2025-03-07T02:21:33.034895-08:00,1008.2362670898438,10.721817,10721.817 +793,2025-03-07T02:21:43.758065-08:00,1008.239501953125,10.72317,10723.17 +794,2025-03-07T02:21:54.484961-08:00,1008.2413940429688,10.726896,10726.896 +795,2025-03-07T02:22:05.208626-08:00,1008.2545166015625,10.723665,10723.665 +796,2025-03-07T02:22:15.937895-08:00,1008.2593994140625,10.729269,10729.269 +797,2025-03-07T02:22:26.667947-08:00,1008.21826171875,10.730052,10730.052 +798,2025-03-07T02:22:37.394089-08:00,1008.2611694335938,10.726142,10726.142 +799,2025-03-07T02:22:48.110962-08:00,1008.2380981445312,10.716873,10716.873 +800,2025-03-07T02:22:58.844935-08:00,1008.2564086914062,10.733973,10733.973 +801,2025-03-07T02:23:09.563892-08:00,1008.2777099609375,10.718957,10718.957 +802,2025-03-07T02:23:20.297106-08:00,1008.2843627929688,10.733214,10733.214 +803,2025-03-07T02:23:31.014889-08:00,1008.2697143554688,10.717783,10717.783 +804,2025-03-07T02:23:41.748097-08:00,1008.2711181640625,10.733208,10733.208 +805,2025-03-07T02:23:52.474894-08:00,1008.2909545898438,10.726797,10726.797 +806,2025-03-07T02:24:03.196892-08:00,1008.2664184570312,10.721998,10721.998 +807,2025-03-07T02:24:13.926892-08:00,1008.28955078125,10.73,10730.0 +808,2025-03-07T02:24:24.646931-08:00,1008.2960815429688,10.720039,10720.039 +809,2025-03-07T02:24:35.383075-08:00,1008.2876586914062,10.736144,10736.144 +810,2025-03-07T02:24:46.103074-08:00,1008.309326171875,10.719999,10719.999 +811,2025-03-07T02:24:56.829895-08:00,1008.28955078125,10.726821,10726.821 +812,2025-03-07T02:25:07.550142-08:00,1008.2927856445312,10.720247,10720.247 +813,2025-03-07T02:25:18.280892-08:00,1008.2862548828125,10.73075,10730.75 +814,2025-03-07T02:25:29.003111-08:00,1008.3178100585938,10.722219,10722.219 +815,2025-03-07T02:25:39.728894-08:00,1008.282958984375,10.725783,10725.783 +816,2025-03-07T02:25:50.454033-08:00,1008.3060913085938,10.725139,10725.139 +817,2025-03-07T02:26:01.176920-08:00,1008.3111572265625,10.722887,10722.887 +818,2025-03-07T02:26:11.909891-08:00,1008.3111572265625,10.732971,10732.971 +819,2025-03-07T02:26:22.630069-08:00,1008.3045043945312,10.720178,10720.178 +820,2025-03-07T02:26:33.356895-08:00,1008.3178100585938,10.726826,10726.826 +821,2025-03-07T02:26:44.082893-08:00,1008.3160400390625,10.725998,10725.998 +822,2025-03-07T02:26:54.811004-08:00,1008.3226318359375,10.728111,10728.111 +823,2025-03-07T02:27:05.530981-08:00,1008.294677734375,10.719977,10719.977 +824,2025-03-07T02:27:16.255938-08:00,1008.3116455078125,10.724957,10724.957 +825,2025-03-07T02:27:26.980896-08:00,1008.309814453125,10.724958,10724.958 +826,2025-03-07T02:27:37.704481-08:00,1008.27392578125,10.723585,10723.585 +827,2025-03-07T02:27:48.421335-08:00,1008.295654296875,10.716854,10716.854 +828,2025-03-07T02:27:59.146788-08:00,1008.3070068359375,10.725453,10725.453 +829,2025-03-07T02:28:09.872896-08:00,1008.3173217773438,10.726108,10726.108 +830,2025-03-07T02:28:20.602114-08:00,1008.3206176757812,10.729218,10729.218 +831,2025-03-07T02:28:31.326131-08:00,1008.310791015625,10.724017,10724.017 +832,2025-03-07T02:28:42.045141-08:00,1008.3240356445312,10.71901,10719.01 +833,2025-03-07T02:28:52.768896-08:00,1008.3016967773438,10.723755,10723.755 +834,2025-03-07T02:29:03.494894-08:00,1008.3182983398438,10.725998,10725.998 +835,2025-03-07T02:29:14.219495-08:00,1008.31689453125,10.724601,10724.601 +836,2025-03-07T02:29:24.948893-08:00,1008.3057250976562,10.729398,10729.398 +837,2025-03-07T02:29:35.668532-08:00,1008.3013916015625,10.719639,10719.639 +838,2025-03-07T02:29:46.396981-08:00,1008.280517578125,10.728449,10728.449 +839,2025-03-07T02:29:57.116022-08:00,1008.2990112304688,10.719041,10719.041 +840,2025-03-07T02:30:07.835923-08:00,1008.2763061523438,10.719901,10719.901 +841,2025-03-07T02:30:18.563079-08:00,1008.2818603515625,10.727156,10727.156 +842,2025-03-07T02:30:29.296893-08:00,1008.287109375,10.733814,10733.814 +843,2025-03-07T02:30:40.021219-08:00,1008.2611083984375,10.724326,10724.326 +844,2025-03-07T02:30:50.745234-08:00,1008.27294921875,10.724015,10724.015 +845,2025-03-07T02:31:01.471117-08:00,1008.2615356445312,10.725883,10725.883 +846,2025-03-07T02:31:12.192070-08:00,1008.2605590820312,10.720953,10720.953 +847,2025-03-07T02:31:22.923893-08:00,1008.2477416992188,10.731823,10731.823 +848,2025-03-07T02:31:33.644907-08:00,1008.2562255859375,10.721014,10721.014 +849,2025-03-07T02:31:44.368895-08:00,1008.2581176757812,10.723988,10723.988 +850,2025-03-07T02:31:55.100895-08:00,1008.2665405273438,10.732,10732.0 +851,2025-03-07T02:32:05.819073-08:00,1008.2684326171875,10.718178,10718.178 +852,2025-03-07T02:32:16.547895-08:00,1008.243896484375,10.728822,10728.822 +853,2025-03-07T02:32:27.263666-08:00,1008.2655639648438,10.715771,10715.771 +854,2025-03-07T02:32:37.996893-08:00,1008.2754516601562,10.733227,10733.227 +855,2025-03-07T02:32:48.721381-08:00,1008.2575073242188,10.724488,10724.488 +856,2025-03-07T02:32:59.441895-08:00,1008.2645263671875,10.720514,10720.514 +857,2025-03-07T02:33:10.164077-08:00,1008.2396240234375,10.722182,10722.182 +858,2025-03-07T02:33:20.879897-08:00,1008.2564086914062,10.71582,10715.82 +859,2025-03-07T02:33:31.603052-08:00,1008.2974853515625,10.723155,10723.155 +860,2025-03-07T02:33:42.333129-08:00,1008.267822265625,10.730077,10730.077 +861,2025-03-07T02:33:53.050081-08:00,1008.294189453125,10.716952,10716.952 +862,2025-03-07T02:34:03.771959-08:00,1008.27783203125,10.721878,10721.878 +863,2025-03-07T02:34:14.500115-08:00,1008.2843627929688,10.728156,10728.156 +864,2025-03-07T02:34:25.220890-08:00,1008.2763061523438,10.720775,10720.775 +865,2025-03-07T02:34:35.942893-08:00,1008.2546997070312,10.722003,10722.003 +866,2025-03-07T02:34:46.664946-08:00,1008.2349243164062,10.722053,10722.053 +867,2025-03-07T02:34:57.387647-08:00,1008.2546997070312,10.722701,10722.701 +868,2025-03-07T02:35:08.115963-08:00,1008.2334594726562,10.728316,10728.316 +869,2025-03-07T02:35:18.840969-08:00,1008.27783203125,10.725006,10725.006 +870,2025-03-07T02:35:29.555895-08:00,1008.2631225585938,10.714926,10714.926 +871,2025-03-07T02:35:40.277064-08:00,1008.2745361328125,10.721169,10721.169 +872,2025-03-07T02:35:51.011076-08:00,1008.2763061523438,10.734012,10734.012 +873,2025-03-07T02:36:01.734892-08:00,1008.2415771484375,10.723816,10723.816 +874,2025-03-07T02:36:12.449233-08:00,1008.2763061523438,10.714341,10714.341 +875,2025-03-07T02:36:23.176890-08:00,1008.2645874023438,10.727657,10727.657 +876,2025-03-07T02:36:33.905688-08:00,1008.2301635742188,10.728798,10728.798 +877,2025-03-07T02:36:44.621946-08:00,1008.2514038085938,10.716258,10716.258 +878,2025-03-07T02:36:55.349359-08:00,1008.2315673828125,10.727413,10727.413 +879,2025-03-07T02:37:06.070974-08:00,1008.2334594726562,10.721615,10721.615 +880,2025-03-07T02:37:16.796664-08:00,1008.2546997070312,10.72569,10725.69 +881,2025-03-07T02:37:27.518887-08:00,1008.2301025390625,10.722223,10722.223 +882,2025-03-07T02:37:38.242895-08:00,1008.2168579101562,10.724008,10724.008 +883,2025-03-07T02:37:48.966926-08:00,1008.185302734375,10.724031,10724.031 +884,2025-03-07T02:37:59.684335-08:00,1008.2263793945312,10.717409,10717.409 +885,2025-03-07T02:38:10.401889-08:00,1008.2033081054688,10.717554,10717.554 +886,2025-03-07T02:38:21.123029-08:00,1008.22314453125,10.72114,10721.14 +887,2025-03-07T02:38:31.843895-08:00,1008.1571044921875,10.720866,10720.866 +888,2025-03-07T02:38:42.563269-08:00,1008.193359375,10.719374,10719.374 +889,2025-03-07T02:38:53.284957-08:00,1008.176513671875,10.721688,10721.688 +890,2025-03-07T02:39:04.014900-08:00,1008.1914672851562,10.729943,10729.943 +891,2025-03-07T02:39:14.737329-08:00,1008.2076416015625,10.722429,10722.429 +892,2025-03-07T02:39:25.456161-08:00,1008.1763916015625,10.718832,10718.832 +893,2025-03-07T02:39:36.180896-08:00,1008.1712646484375,10.724735,10724.735 +894,2025-03-07T02:39:46.901124-08:00,1008.1661987304688,10.720228,10720.228 +895,2025-03-07T02:39:57.619260-08:00,1008.162841796875,10.718136,10718.136 +896,2025-03-07T02:40:08.340145-08:00,1008.1709594726562,10.720885,10720.885 +897,2025-03-07T02:40:19.063895-08:00,1008.1709594726562,10.72375,10723.75 +898,2025-03-07T02:40:29.788904-08:00,1008.16748046875,10.725009,10725.009 +899,2025-03-07T02:40:40.506892-08:00,1008.1573486328125,10.717988,10717.988 +900,2025-03-07T02:40:51.232114-08:00,1008.1539306640625,10.725222,10725.222 +901,2025-03-07T02:41:01.952182-08:00,1008.1422119140625,10.720068,10720.068 +902,2025-03-07T02:41:12.674917-08:00,1008.1290893554688,10.722735,10722.735 +903,2025-03-07T02:41:23.395903-08:00,1008.137451171875,10.720986,10720.986 +904,2025-03-07T02:41:34.117364-08:00,1008.125732421875,10.721461,10721.461 +905,2025-03-07T02:41:44.830894-08:00,1008.1138916015625,10.71353,10713.53 +906,2025-03-07T02:41:55.551611-08:00,1008.127197265625,10.720717,10720.717 +907,2025-03-07T02:42:06.268960-08:00,1008.1450805664062,10.717349,10717.349 +908,2025-03-07T02:42:16.980329-08:00,1008.1465454101562,10.711369,10711.369 +909,2025-03-07T02:42:27.700275-08:00,1008.155029296875,10.719946,10719.946 +910,2025-03-07T02:42:38.425893-08:00,1008.1248168945312,10.725618,10725.618 +911,2025-03-07T02:42:49.138076-08:00,1008.15966796875,10.712183,10712.183 +912,2025-03-07T02:42:59.855895-08:00,1008.1531372070312,10.717819,10717.819 +913,2025-03-07T02:43:10.576363-08:00,1008.1493530273438,10.720468,10720.468 +914,2025-03-07T02:43:21.296972-08:00,1008.1856079101562,10.720609,10720.609 +915,2025-03-07T02:43:32.017919-08:00,1008.1559448242188,10.720947,10720.947 +916,2025-03-07T02:43:42.733897-08:00,1008.1720581054688,10.715978,10715.978 +917,2025-03-07T02:43:53.458917-08:00,1008.1735229492188,10.72502,10725.02 +918,2025-03-07T02:44:04.173230-08:00,1008.16357421875,10.714313,10714.313 +919,2025-03-07T02:44:14.893893-08:00,1008.184814453125,10.720663,10720.663 +920,2025-03-07T02:44:25.611091-08:00,1008.1782836914062,10.717198,10717.198 +921,2025-03-07T02:44:36.332096-08:00,1008.1668701171875,10.721005,10721.005 +922,2025-03-07T02:44:47.053095-08:00,1008.1697387695312,10.720999,10720.999 +923,2025-03-07T02:44:57.769895-08:00,1008.1781005859375,10.7168,10716.8 +924,2025-03-07T02:45:08.496080-08:00,1008.1810913085938,10.726185,10726.185 +925,2025-03-07T02:45:19.215150-08:00,1008.1663818359375,10.71907,10719.07 +926,2025-03-07T02:45:29.928903-08:00,1008.1631469726562,10.713753,10713.753 +927,2025-03-07T02:45:40.646895-08:00,1008.1593627929688,10.717992,10717.992 +928,2025-03-07T02:45:51.361896-08:00,1008.1824951171875,10.715001,10715.001 +929,2025-03-07T02:46:02.079083-08:00,1008.1920166015625,10.717187,10717.187 +930,2025-03-07T02:46:12.795891-08:00,1008.1607666015625,10.716808,10716.808 +931,2025-03-07T02:46:23.520676-08:00,1008.1820068359375,10.724785,10724.785 +932,2025-03-07T02:46:34.230068-08:00,1008.1754760742188,10.709392,10709.392 +933,2025-03-07T02:46:44.951958-08:00,1008.185302734375,10.72189,10721.89 +934,2025-03-07T02:46:55.671906-08:00,1008.170166015625,10.719948,10719.948 +935,2025-03-07T02:47:06.391954-08:00,1008.1815795898438,10.720048,10720.048 +936,2025-03-07T02:47:17.111419-08:00,1008.1551513671875,10.719465,10719.465 +937,2025-03-07T02:47:27.829896-08:00,1008.1580200195312,10.718477,10718.477 +938,2025-03-07T02:47:38.543404-08:00,1008.1774291992188,10.713508,10713.508 +939,2025-03-07T02:47:46.848452-08:00,1008.1821899414062,8.305048,8305.048 +940,2025-03-07T02:47:49.265895-08:00,1008.1905517578125,2.417443,2417.443 +941,2025-03-07T02:47:59.981893-08:00,1008.2098999023438,10.715998,10715.998 +942,2025-03-07T02:48:10.701903-08:00,1008.213134765625,10.72001,10720.01 +943,2025-03-07T02:48:21.419895-08:00,1008.18017578125,10.717992,10717.992 +944,2025-03-07T02:48:32.130475-08:00,1008.2196655273438,10.71058,10710.58 +945,2025-03-07T02:48:42.848890-08:00,1008.2093505859375,10.718415,10718.415 +946,2025-03-07T02:48:53.567915-08:00,1008.2045288085938,10.719025,10719.025 +947,2025-03-07T02:49:04.281099-08:00,1008.2404174804688,10.713184,10713.184 +948,2025-03-07T02:49:15.002903-08:00,1008.2220458984375,10.721804,10721.804 +949,2025-03-07T02:49:25.711093-08:00,1008.2380981445312,10.70819,10708.19 +950,2025-03-07T02:49:36.435962-08:00,1008.239990234375,10.724869,10724.869 +951,2025-03-07T02:49:47.149897-08:00,1008.2578735351562,10.713935,10713.935 +952,2025-03-07T02:49:57.862961-08:00,1008.24755859375,10.713064,10713.064 +953,2025-03-07T02:50:08.580895-08:00,1008.2442016601562,10.717934,10717.934 +954,2025-03-07T02:50:19.309319-08:00,1008.2390747070312,10.728424,10728.424 +955,2025-03-07T02:50:30.026893-08:00,1008.2489013671875,10.717574,10717.574 +956,2025-03-07T02:50:40.750968-08:00,1008.2371826171875,10.724075,10724.075 +957,2025-03-07T02:50:51.462069-08:00,1008.2631225585938,10.711101,10711.101 +958,2025-03-07T02:51:02.188082-08:00,1008.2352905273438,10.726013,10726.013 +959,2025-03-07T02:51:12.908923-08:00,1008.27294921875,10.720841,10720.841 +960,2025-03-07T02:51:23.622920-08:00,1008.2481079101562,10.713997,10713.997 +961,2025-03-07T02:51:34.343029-08:00,1008.2380981445312,10.720109,10720.109 +962,2025-03-07T02:51:45.066890-08:00,1008.2479858398438,10.723861,10723.861 +963,2025-03-07T02:51:55.793895-08:00,1008.2528076171875,10.727005,10727.005 +964,2025-03-07T02:52:06.516090-08:00,1008.27734375,10.722195,10722.195 +965,2025-03-07T02:52:17.305446-08:00,1008.2442016601562,10.789356,10789.356 +966,2025-03-07T02:52:28.018452-08:00,1008.24609375,10.713006,10713.006 +967,2025-03-07T02:52:38.743249-08:00,1008.278564453125,10.724797,10724.797 +968,2025-03-07T02:52:49.465260-08:00,1008.2603149414062,10.722011,10722.011 +969,2025-03-07T02:53:00.179844-08:00,1008.26171875,10.714584,10714.584 +970,2025-03-07T02:53:10.906243-08:00,1008.2634887695312,10.726399,10726.399 +971,2025-03-07T02:53:21.620422-08:00,1008.2598266601562,10.714179,10714.179 +972,2025-03-07T02:53:32.349315-08:00,1008.2862548828125,10.728893,10728.893 +973,2025-03-07T02:53:43.070137-08:00,1008.2880249023438,10.720822,10720.822 +974,2025-03-07T02:53:53.778273-08:00,1008.2681884765625,10.708136,10708.136 +975,2025-03-07T02:54:04.501652-08:00,1008.2711181640625,10.723379,10723.379 +976,2025-03-07T02:54:15.223247-08:00,1008.2597045898438,10.721595,10721.595 +977,2025-03-07T02:54:25.933249-08:00,1008.2597045898438,10.710002,10710.002 +978,2025-03-07T02:54:36.656537-08:00,1008.2692260742188,10.723288,10723.288 +979,2025-03-07T02:54:47.383438-08:00,1008.264404296875,10.726901,10726.901 +980,2025-03-07T02:54:58.097562-08:00,1008.27099609375,10.714124,10714.124 +981,2025-03-07T02:55:08.810247-08:00,1008.252685546875,10.712685,10712.685 +982,2025-03-07T02:55:19.536575-08:00,1008.2725219726562,10.726328,10726.328 +983,2025-03-07T02:55:30.257310-08:00,1008.2592163085938,10.720735,10720.735 +984,2025-03-07T02:55:40.966318-08:00,1008.2592163085938,10.709008,10709.008 +985,2025-03-07T02:55:51.692247-08:00,1008.2489013671875,10.725929,10725.929 +986,2025-03-07T02:56:02.406753-08:00,1008.275390625,10.714506,10714.506 +987,2025-03-07T02:56:13.130407-08:00,1008.240966796875,10.723654,10723.654 +988,2025-03-07T02:56:23.846246-08:00,1008.2343139648438,10.715839,10715.839 +989,2025-03-07T02:56:34.569343-08:00,1008.275390625,10.723097,10723.097 +990,2025-03-07T02:56:45.283455-08:00,1008.2394409179688,10.714112,10714.112 +991,2025-03-07T02:56:56.001663-08:00,1008.244140625,10.718208,10718.208 +992,2025-03-07T02:57:06.719312-08:00,1008.2507934570312,10.717649,10717.649 +993,2025-03-07T02:57:17.436489-08:00,1008.2374877929688,10.717177,10717.177 +994,2025-03-07T02:57:28.160451-08:00,1008.2291259765625,10.723962,10723.962 +995,2025-03-07T02:57:38.870647-08:00,1008.2357788085938,10.710196,10710.196 +996,2025-03-07T02:57:49.597248-08:00,1008.2374877929688,10.726601,10726.601 +997,2025-03-07T02:58:00.314805-08:00,1008.2159423828125,10.717557,10717.557 +998,2025-03-07T02:58:11.030428-08:00,1008.2012329101562,10.715623,10715.623 +999,2025-03-07T02:58:21.751242-08:00,1008.23095703125,10.720814,10720.814 +1000,2025-03-07T02:58:32.470449-08:00,1008.1865844726562,10.719207,10719.207 +1001,2025-03-07T02:58:43.187365-08:00,1008.2276611328125,10.716916,10716.916 +1002,2025-03-07T02:58:53.905244-08:00,1008.2394409179688,10.717879,10717.879 +1003,2025-03-07T02:59:04.627240-08:00,1008.2196044921875,10.721996,10721.996 +1004,2025-03-07T02:59:15.342248-08:00,1008.24609375,10.715008,10715.008 +1005,2025-03-07T02:59:26.060172-08:00,1008.2050170898438,10.717924,10717.924 +1006,2025-03-07T02:59:36.775247-08:00,1008.2115478515625,10.715075,10715.075 +1007,2025-03-07T02:59:47.489940-08:00,1008.2164306640625,10.714693,10714.693 +1008,2025-03-07T02:59:58.215246-08:00,1008.2281494140625,10.725306,10725.306 +1009,2025-03-07T03:00:08.926368-08:00,1008.2346801757812,10.711122,10711.122 +1010,2025-03-07T03:00:19.650316-08:00,1008.2267456054688,10.723948,10723.948 +1011,2025-03-07T03:00:30.365489-08:00,1008.2479858398438,10.715173,10715.173 +1012,2025-03-07T03:00:41.083449-08:00,1008.2134399414062,10.71796,10717.96 +1013,2025-03-07T03:00:51.803247-08:00,1008.2168579101562,10.719798,10719.798 +1014,2025-03-07T03:01:02.516138-08:00,1008.2366333007812,10.712891,10712.891 +1015,2025-03-07T03:01:13.241595-08:00,1008.224853515625,10.725457,10725.457 +1016,2025-03-07T03:01:23.956247-08:00,1008.22998046875,10.714652,10714.652 +1017,2025-03-07T03:01:34.667416-08:00,1008.2201538085938,10.711169,10711.169 +1018,2025-03-07T03:01:45.390247-08:00,1008.212158203125,10.722831,10722.831 +1019,2025-03-07T03:01:56.105590-08:00,1008.2201538085938,10.715343,10715.343 +1020,2025-03-07T03:02:06.818463-08:00,1008.197509765625,10.712873,10712.873 +1021,2025-03-07T03:02:17.545588-08:00,1008.2106323242188,10.727125,10727.125 +1022,2025-03-07T03:02:28.260281-08:00,1008.228759765625,10.714693,10714.693 +1023,2025-03-07T03:02:38.974248-08:00,1008.2221069335938,10.713967,10713.967 +1024,2025-03-07T03:02:49.693636-08:00,1008.228759765625,10.719388,10719.388 +1025,2025-03-07T03:03:00.413316-08:00,1008.21923828125,10.71968,10719.68 +1026,2025-03-07T03:03:11.134426-08:00,1008.21923828125,10.72111,10721.11 +1027,2025-03-07T03:03:21.842244-08:00,1008.2257690429688,10.707818,10707.818 +1028,2025-03-07T03:03:32.559276-08:00,1008.2059326171875,10.717032,10717.032 +1029,2025-03-07T03:03:43.281569-08:00,1008.2059326171875,10.722293,10722.293 +1030,2025-03-07T03:03:53.999245-08:00,1008.2107543945312,10.717676,10717.676 +1031,2025-03-07T03:04:04.711273-08:00,1008.2371826171875,10.712028,10712.028 +1032,2025-03-07T03:04:15.431396-08:00,1008.2306518554688,10.720123,10720.123 +1033,2025-03-07T03:04:26.152811-08:00,1008.2343139648438,10.721415,10721.415 +1034,2025-03-07T03:04:36.867346-08:00,1008.1998291015625,10.714535,10714.535 +1035,2025-03-07T03:04:47.584526-08:00,1008.2078857421875,10.71718,10717.18 +1036,2025-03-07T03:04:58.300059-08:00,1008.2343139648438,10.715533,10715.533 +1037,2025-03-07T03:05:09.016444-08:00,1008.2343139648438,10.716385,10716.385 +1038,2025-03-07T03:05:19.737316-08:00,1008.2276611328125,10.720872,10720.872 +1039,2025-03-07T03:05:30.458363-08:00,1008.2244262695312,10.721047,10721.047 +1040,2025-03-07T03:05:41.171784-08:00,1008.2164306640625,10.713421,10713.421 +1041,2025-03-07T03:05:51.893281-08:00,1008.2164306640625,10.721497,10721.497 +1042,2025-03-07T03:06:02.607456-08:00,1008.1951293945312,10.714175,10714.175 +1043,2025-03-07T03:06:13.331550-08:00,1008.1867065429688,10.724094,10724.094 +1044,2025-03-07T03:06:24.047292-08:00,1008.18017578125,10.715742,10715.742 +1045,2025-03-07T03:06:34.770442-08:00,1008.199951171875,10.72315,10723.15 +1046,2025-03-07T03:06:45.490450-08:00,1008.1904907226562,10.720008,10720.008 +1047,2025-03-07T03:06:56.205304-08:00,1008.205078125,10.714854,10714.854 +1048,2025-03-07T03:07:06.930245-08:00,1008.20361328125,10.724941,10724.941 +1049,2025-03-07T03:07:17.642282-08:00,1008.1885986328125,10.712037,10712.037 +1050,2025-03-07T03:07:28.353353-08:00,1008.1952514648438,10.711071,10711.071 +1051,2025-03-07T03:07:39.075244-08:00,1008.1838989257812,10.721891,10721.891 +1052,2025-03-07T03:07:49.793500-08:00,1008.1707763671875,10.718256,10718.256 +1053,2025-03-07T03:08:00.509295-08:00,1008.2037353515625,10.715795,10715.795 +1054,2025-03-07T03:08:11.225244-08:00,1008.1824951171875,10.715949,10715.949 +1055,2025-03-07T03:08:21.940637-08:00,1008.1876831054688,10.715393,10715.393 +1056,2025-03-07T03:08:32.658245-08:00,1008.1795043945312,10.717608,10717.608 +1057,2025-03-07T03:08:43.384416-08:00,1008.2073974609375,10.726171,10726.171 +1058,2025-03-07T03:08:54.098248-08:00,1008.2059326171875,10.713832,10713.832 +1059,2025-03-07T03:09:04.820701-08:00,1008.2093505859375,10.722453,10722.453 +1060,2025-03-07T03:09:15.533436-08:00,1008.2371826171875,10.712735,10712.735 +1061,2025-03-07T03:09:26.258652-08:00,1008.1947021484375,10.725216,10725.216 +1062,2025-03-07T03:09:36.976995-08:00,1008.2144775390625,10.718343,10718.343 +1063,2025-03-07T03:09:47.691293-08:00,1008.181396484375,10.714298,10714.298 +1064,2025-03-07T03:09:58.410638-08:00,1008.2210693359375,10.719345,10719.345 +1065,2025-03-07T03:10:09.136244-08:00,1008.19287109375,10.725606,10725.606 +1066,2025-03-07T03:10:19.852461-08:00,1008.1947021484375,10.716217,10716.217 +1067,2025-03-07T03:10:30.579247-08:00,1008.1995239257812,10.726786,10726.786 +1068,2025-03-07T03:10:41.295663-08:00,1008.20458984375,10.716416,10716.416 +1069,2025-03-07T03:10:52.014242-08:00,1008.19140625,10.718579,10718.579 +1070,2025-03-07T03:11:02.743477-08:00,1008.184814453125,10.729235,10729.235 +1071,2025-03-07T03:11:13.457310-08:00,1008.1749877929688,10.713833,10713.833 +1072,2025-03-07T03:11:24.181469-08:00,1008.196533203125,10.724159,10724.159 +1073,2025-03-07T03:11:34.896247-08:00,1008.2097778320312,10.714778,10714.778 +1074,2025-03-07T03:11:45.621273-08:00,1008.1881103515625,10.725026,10725.026 +1075,2025-03-07T03:11:56.338447-08:00,1008.18017578125,10.717174,10717.174 +1076,2025-03-07T03:12:07.060247-08:00,1008.1932983398438,10.7218,10721.8 +1077,2025-03-07T03:12:17.778654-08:00,1008.1654663085938,10.718407,10718.407 +1078,2025-03-07T03:12:28.489399-08:00,1008.19189453125,10.710745,10710.745 +1079,2025-03-07T03:12:39.213421-08:00,1008.1768798828125,10.724022,10724.022 +1080,2025-03-07T03:12:49.930422-08:00,1008.1754150390625,10.717001,10717.001 +1081,2025-03-07T03:13:00.655635-08:00,1008.1834106445312,10.725213,10725.213 +1082,2025-03-07T03:13:11.365735-08:00,1008.1673583984375,10.7101,10710.1 +1083,2025-03-07T03:13:22.082245-08:00,1008.1475219726562,10.71651,10716.51 +1084,2025-03-07T03:13:32.802413-08:00,1008.1805419921875,10.720168,10720.168 +1085,2025-03-07T03:13:43.519247-08:00,1008.158935546875,10.716834,10716.834 +1086,2025-03-07T03:13:54.247729-08:00,1008.16552734375,10.728482,10728.482 +1087,2025-03-07T03:14:04.956450-08:00,1008.1738891601562,10.708721,10708.721 +1088,2025-03-07T03:14:15.676316-08:00,1008.1493530273438,10.719866,10719.866 +1089,2025-03-07T03:14:26.398329-08:00,1008.15234375,10.722013,10722.013 +1090,2025-03-07T03:14:37.109245-08:00,1008.1509399414062,10.710916,10710.916 +1091,2025-03-07T03:14:47.825352-08:00,1008.1773681640625,10.716107,10716.107 +1092,2025-03-07T03:14:58.547484-08:00,1008.156005859375,10.722132,10722.132 +1093,2025-03-07T03:15:09.268432-08:00,1008.1414184570312,10.720948,10720.948 +1094,2025-03-07T03:15:19.981246-08:00,1008.14794921875,10.712814,10712.814 +1095,2025-03-07T03:15:30.701273-08:00,1008.154541015625,10.720027,10720.027 +1096,2025-03-07T03:15:41.416472-08:00,1008.169189453125,10.715199,10715.199 +1097,2025-03-07T03:15:52.136569-08:00,1008.131591796875,10.720097,10720.097 +1098,2025-03-07T03:16:02.846285-08:00,1008.1513061523438,10.709716,10709.716 +1099,2025-03-07T03:16:13.559468-08:00,1008.15283203125,10.713183,10713.183 +1100,2025-03-07T03:16:24.271245-08:00,1008.1234130859375,10.711777,10711.777 +1101,2025-03-07T03:16:34.989413-08:00,1008.1513061523438,10.718168,10718.168 +1102,2025-03-07T03:16:45.707808-08:00,1008.1593627929688,10.718395,10718.395 +1103,2025-03-07T03:16:56.433008-08:00,1008.1447143554688,10.7252,10725.2 +1104,2025-03-07T03:17:07.150242-08:00,1008.1400146484375,10.717234,10717.234 +1105,2025-03-07T03:17:17.868740-08:00,1008.1187744140625,10.718498,10718.498 +1106,2025-03-07T03:17:28.583430-08:00,1008.1465454101562,10.71469,10714.69 +1107,2025-03-07T03:17:39.297292-08:00,1008.1386108398438,10.713862,10713.862 +1108,2025-03-07T03:17:50.022670-08:00,1008.130126953125,10.725378,10725.378 +1109,2025-03-07T03:18:00.735330-08:00,1008.13671875,10.71266,10712.66 +1110,2025-03-07T03:18:11.450432-08:00,1008.1220092773438,10.715102,10715.102 +1111,2025-03-07T03:18:22.168250-08:00,1008.1433715820312,10.717818,10717.818 +1112,2025-03-07T03:18:32.887247-08:00,1008.1631469726562,10.718997,10718.997 +1113,2025-03-07T03:18:43.602412-08:00,1008.1353149414062,10.715165,10715.165 +1114,2025-03-07T03:18:54.318445-08:00,1008.1338500976562,10.716033,10716.033 +1115,2025-03-07T03:19:05.043411-08:00,1008.1470336914062,10.724966,10724.966 +1116,2025-03-07T03:19:15.756310-08:00,1008.1434326171875,10.712899,10712.899 +1117,2025-03-07T03:19:26.476245-08:00,1008.145263671875,10.719935,10719.935 +1118,2025-03-07T03:19:37.193496-08:00,1008.1369018554688,10.717251,10717.251 +1119,2025-03-07T03:19:47.913242-08:00,1008.1649780273438,10.719746,10719.746 +1120,2025-03-07T03:19:58.625418-08:00,1008.15673828125,10.712176,10712.176 +1121,2025-03-07T03:20:09.347248-08:00,1008.1353759765625,10.72183,10721.83 +1122,2025-03-07T03:20:20.063312-08:00,1008.15673828125,10.716064,10716.064 +1123,2025-03-07T03:20:30.781544-08:00,1008.1486206054688,10.718232,10718.232 +1124,2025-03-07T03:20:41.497243-08:00,1008.1603393554688,10.715699,10715.699 +1125,2025-03-07T03:20:52.214320-08:00,1008.1141357421875,10.717077,10717.077 +1126,2025-03-07T03:21:02.930393-08:00,1008.1322021484375,10.716073,10716.073 +1127,2025-03-07T03:21:13.652626-08:00,1008.1255493164062,10.722233,10722.233 +1128,2025-03-07T03:21:24.369389-08:00,1008.1273193359375,10.716763,10716.763 +1129,2025-03-07T03:21:35.095439-08:00,1008.1387329101562,10.72605,10726.05 +1130,2025-03-07T03:21:45.806441-08:00,1008.1160278320312,10.711002,10711.002 +1131,2025-03-07T03:21:56.522253-08:00,1008.1322021484375,10.715812,10715.812 +1132,2025-03-07T03:22:07.235675-08:00,1008.1651611328125,10.713422,10713.422 +1133,2025-03-07T03:22:17.962411-08:00,1008.1174926757812,10.726736,10726.736 +1134,2025-03-07T03:22:28.670252-08:00,1008.1240844726562,10.707841,10707.841 +1135,2025-03-07T03:22:39.393316-08:00,1008.1240844726562,10.723064,10723.064 +1136,2025-03-07T03:22:50.105617-08:00,1008.1255493164062,10.712301,10712.301 +1137,2025-03-07T03:23:00.827844-08:00,1008.1240844726562,10.722227,10722.227 +1138,2025-03-07T03:23:11.534271-08:00,1008.120849609375,10.706427,10706.427 +1139,2025-03-07T03:23:22.254272-08:00,1008.1392211914062,10.720001,10720.001 +1140,2025-03-07T03:23:32.970717-08:00,1008.1621704101562,10.716445,10716.445 +1141,2025-03-07T03:23:43.693273-08:00,1008.1259155273438,10.722556,10722.556 +1142,2025-03-07T03:23:54.407325-08:00,1008.157470703125,10.714052,10714.052 +1143,2025-03-07T03:24:05.125438-08:00,1008.0982055664062,10.718113,10718.113 +1144,2025-03-07T03:24:15.851556-08:00,1008.1297607421875,10.726118,10726.118 +1145,2025-03-07T03:24:26.566246-08:00,1008.103759765625,10.71469,10714.69 +1146,2025-03-07T03:24:37.282276-08:00,1008.1551513671875,10.71603,10716.03 +1147,2025-03-07T03:24:47.999421-08:00,1008.146728515625,10.717145,10717.145 +1148,2025-03-07T03:24:58.718472-08:00,1008.1537475585938,10.719051,10719.051 +1149,2025-03-07T03:25:09.431443-08:00,1008.1504516601562,10.712971,10712.971 +1150,2025-03-07T03:25:20.150491-08:00,1008.1626586914062,10.719048,10719.048 +1151,2025-03-07T03:25:30.874427-08:00,1008.1447143554688,10.723936,10723.936 +1152,2025-03-07T03:25:41.592244-08:00,1008.1465454101562,10.717817,10717.817 +1153,2025-03-07T03:25:52.314432-08:00,1008.1570434570312,10.722188,10722.188 +1154,2025-03-07T03:26:03.035030-08:00,1008.1624755859375,10.720598,10720.598 +1155,2025-03-07T03:26:13.750241-08:00,1008.17578125,10.715211,10715.211 +1156,2025-03-07T03:26:24.468248-08:00,1008.1422119140625,10.718007,10718.007 +1157,2025-03-07T03:26:35.189249-08:00,1008.1605224609375,10.721001,10721.001 +1158,2025-03-07T03:26:45.907719-08:00,1008.1478271484375,10.71847,10718.47 +1159,2025-03-07T03:26:56.621271-08:00,1008.1566162109375,10.713552,10713.552 +1160,2025-03-07T03:27:07.346520-08:00,1008.1434936523438,10.725249,10725.249 +1161,2025-03-07T03:27:18.059249-08:00,1008.12744140625,10.712729,10712.729 +1162,2025-03-07T03:27:28.776245-08:00,1008.1359252929688,10.716996,10716.996 +1163,2025-03-07T03:27:39.484410-08:00,1008.1821899414062,10.708165,10708.165 +1164,2025-03-07T03:27:50.199455-08:00,1008.2235717773438,10.715045,10715.045 +1165,2025-03-07T03:28:00.918311-08:00,1008.1910400390625,10.718856,10718.856 +1166,2025-03-07T03:28:11.634248-08:00,1008.199462890625,10.715937,10715.937 +1167,2025-03-07T03:28:22.355248-08:00,1008.1603393554688,10.721,10721.0 +1168,2025-03-07T03:28:33.069428-08:00,1008.1720581054688,10.71418,10714.18 +1169,2025-03-07T03:28:43.790246-08:00,1008.2017211914062,10.720818,10720.818 +1170,2025-03-07T03:28:54.499488-08:00,1008.1903076171875,10.709242,10709.242 +1171,2025-03-07T03:29:05.224944-08:00,1008.1475219726562,10.725456,10725.456 +1172,2025-03-07T03:29:15.938308-08:00,1008.177490234375,10.713364,10713.364 +1173,2025-03-07T03:29:26.657474-08:00,1008.1134643554688,10.719166,10719.166 +1174,2025-03-07T03:29:37.371244-08:00,1008.194091796875,10.71377,10713.77 +1175,2025-03-07T03:29:48.094431-08:00,1008.1482543945312,10.723187,10723.187 +1176,2025-03-07T03:29:58.807284-08:00,1008.1467895507812,10.712853,10712.853 +1177,2025-03-07T03:30:09.525367-08:00,1008.14501953125,10.718083,10718.083 +1178,2025-03-07T03:30:20.246852-08:00,1008.138427734375,10.721485,10721.485 +1179,2025-03-07T03:30:30.964246-08:00,1008.135498046875,10.717394,10717.394 +1180,2025-03-07T03:30:41.681419-08:00,1008.1204833984375,10.717173,10717.173 +1181,2025-03-07T03:30:52.391248-08:00,1008.1552124023438,10.709829,10709.829 +1182,2025-03-07T03:31:03.112714-08:00,1008.1599731445312,10.721466,10721.466 +1183,2025-03-07T03:31:13.834246-08:00,1008.1420288085938,10.721532,10721.532 +1184,2025-03-07T03:31:24.545309-08:00,1008.1651611328125,10.711063,10711.063 +1185,2025-03-07T03:31:35.266481-08:00,1008.1387329101562,10.721172,10721.172 +1186,2025-03-07T03:31:45.978319-08:00,1008.1749877929688,10.711838,10711.838 +1187,2025-03-07T03:31:56.694058-08:00,1008.1534423828125,10.715739,10715.739 +1188,2025-03-07T03:32:07.407485-08:00,1008.1270141601562,10.713427,10713.427 +1189,2025-03-07T03:32:18.124244-08:00,1008.169921875,10.716759,10716.759 +1190,2025-03-07T03:32:28.841449-08:00,1008.135498046875,10.717205,10717.205 +1191,2025-03-07T03:32:39.558468-08:00,1008.12890625,10.717019,10717.019 +1192,2025-03-07T03:32:50.282587-08:00,1008.150146484375,10.724119,10724.119 +1193,2025-03-07T03:33:00.996245-08:00,1008.138427734375,10.713658,10713.658 +1194,2025-03-07T03:33:11.713447-08:00,1008.1482543945312,10.717202,10717.202 +1195,2025-03-07T03:33:22.422273-08:00,1008.1599731445312,10.708826,10708.826 +1196,2025-03-07T03:33:33.144247-08:00,1008.1548461914062,10.721974,10721.974 +1197,2025-03-07T03:33:43.860384-08:00,1008.149658203125,10.716137,10716.137 +1198,2025-03-07T03:33:54.575735-08:00,1008.177978515625,10.715351,10715.351 +1199,2025-03-07T03:34:05.291245-08:00,1008.1448974609375,10.71551,10715.51 +1200,2025-03-07T03:34:16.014443-08:00,1008.166259765625,10.723198,10723.198 +1201,2025-03-07T03:34:26.724401-08:00,1008.17578125,10.709958,10709.958 +1202,2025-03-07T03:34:37.443337-08:00,1008.1709594726562,10.718936,10718.936 +1203,2025-03-07T03:34:48.165462-08:00,1008.1738891601562,10.722125,10722.125 +1204,2025-03-07T03:34:58.876421-08:00,1008.1724243164062,10.710959,10710.959 +1205,2025-03-07T03:35:09.600468-08:00,1008.1673583984375,10.724047,10724.047 +1206,2025-03-07T03:35:20.319248-08:00,1008.1559448242188,10.71878,10718.78 +1207,2025-03-07T03:35:31.035423-08:00,1008.1852416992188,10.716175,10716.175 +1208,2025-03-07T03:35:41.750453-08:00,1008.17529296875,10.71503,10715.03 +1209,2025-03-07T03:35:52.473245-08:00,1008.181884765625,10.722792,10722.792 +1210,2025-03-07T03:36:03.195247-08:00,1008.1900024414062,10.722002,10722.002 +1211,2025-03-07T03:36:13.907353-08:00,1008.1983642578125,10.712106,10712.106 +1212,2025-03-07T03:36:24.630638-08:00,1008.1881103515625,10.723285,10723.285 +1213,2025-03-07T03:36:35.341457-08:00,1008.1536865234375,10.710819,10710.819 +1214,2025-03-07T03:36:46.068327-08:00,1008.1928100585938,10.72687,10726.87 +1215,2025-03-07T03:36:56.780259-08:00,1008.220703125,10.711932,10711.932 +1216,2025-03-07T03:37:07.500322-08:00,1008.2423706054688,10.720063,10720.063 +1217,2025-03-07T03:37:18.226245-08:00,1008.1975708007812,10.725923,10725.923 +1218,2025-03-07T03:37:28.943268-08:00,1008.2056274414062,10.717023,10717.023 +1219,2025-03-07T03:37:39.658449-08:00,1008.2023315429688,10.715181,10715.181 +1220,2025-03-07T03:37:50.391029-08:00,1008.1891479492188,10.73258,10732.58 +1221,2025-03-07T03:38:01.110279-08:00,1008.2254028320312,10.71925,10719.25 +1222,2025-03-07T03:38:11.826812-08:00,1008.2086181640625,10.716533,10716.533 +1223,2025-03-07T03:38:22.550455-08:00,1008.1972045898438,10.723643,10723.643 +1224,2025-03-07T03:38:33.266649-08:00,1008.1986083984375,10.716194,10716.194 +1225,2025-03-07T03:38:43.990243-08:00,1008.2217407226562,10.723594,10723.594 +1226,2025-03-07T03:38:54.716263-08:00,1008.1838989257812,10.72602,10726.02 +1227,2025-03-07T03:39:05.429427-08:00,1008.2117309570312,10.713164,10713.164 +1228,2025-03-07T03:39:16.150449-08:00,1008.2263793945312,10.721022,10721.022 +1229,2025-03-07T03:39:26.870400-08:00,1008.2033081054688,10.719951,10719.951 +1230,2025-03-07T03:39:37.592300-08:00,1008.2047729492188,10.7219,10721.9 +1231,2025-03-07T03:39:48.317636-08:00,1008.20654296875,10.725336,10725.336 +1232,2025-03-07T03:39:59.037245-08:00,1008.2245483398438,10.719609,10719.609 +1233,2025-03-07T03:40:09.753431-08:00,1008.2274169921875,10.716186,10716.186 +1234,2025-03-07T03:40:20.482450-08:00,1008.229248046875,10.729019,10729.019 +1235,2025-03-07T03:40:31.200879-08:00,1008.2240600585938,10.718429,10718.429 +1236,2025-03-07T03:40:41.923245-08:00,1008.2306518554688,10.722366,10722.366 +1237,2025-03-07T03:40:52.647317-08:00,1008.2617797851562,10.724072,10724.072 +1238,2025-03-07T03:41:03.365448-08:00,1008.2288208007812,10.718131,10718.131 +1239,2025-03-07T03:41:14.092818-08:00,1008.2449951171875,10.72737,10727.37 +1240,2025-03-07T03:41:24.814247-08:00,1008.2467041015625,10.721429,10721.429 +1241,2025-03-07T03:41:35.534473-08:00,1008.2467041015625,10.720226,10720.226 +1242,2025-03-07T03:41:46.257413-08:00,1008.2599487304688,10.72294,10722.94 +1243,2025-03-07T03:41:56.979429-08:00,1008.26953125,10.722016,10722.016 +1244,2025-03-07T03:42:07.707587-08:00,1008.2676391601562,10.728158,10728.158 +1245,2025-03-07T03:42:18.421552-08:00,1008.2529907226562,10.713965,10713.965 +1246,2025-03-07T03:42:29.146315-08:00,1008.2642211914062,10.724763,10724.763 +1247,2025-03-07T03:42:39.874428-08:00,1008.2642211914062,10.728113,10728.113 +1248,2025-03-07T03:42:50.590681-08:00,1008.2938842773438,10.716253,10716.253 +1249,2025-03-07T03:43:01.319341-08:00,1008.302001953125,10.72866,10728.66 +1250,2025-03-07T03:43:12.040271-08:00,1008.2704467773438,10.72093,10720.93 +1251,2025-03-07T03:43:22.762455-08:00,1008.2884521484375,10.722184,10722.184 +1252,2025-03-07T03:43:33.483324-08:00,1008.3180541992188,10.720869,10720.869 +1253,2025-03-07T03:43:44.210244-08:00,1008.3143920898438,10.72692,10726.92 +1254,2025-03-07T03:43:54.932840-08:00,1008.3340454101562,10.722596,10722.596 +1255,2025-03-07T03:44:05.650240-08:00,1008.3239135742188,10.7174,10717.4 +1256,2025-03-07T03:44:16.380427-08:00,1008.3204956054688,10.730187,10730.187 +1257,2025-03-07T03:44:27.098273-08:00,1008.3464965820312,10.717846,10717.846 +1258,2025-03-07T03:44:37.826446-08:00,1008.3347778320312,10.728173,10728.173 +1259,2025-03-07T03:44:48.547245-08:00,1008.3248291015625,10.720799,10720.799 +1260,2025-03-07T03:44:59.268421-08:00,1008.3214721679688,10.721176,10721.176 +1261,2025-03-07T03:45:09.993484-08:00,1008.33935546875,10.725063,10725.063 +1262,2025-03-07T03:45:20.711502-08:00,1008.3291625976562,10.718018,10718.018 +1263,2025-03-07T03:45:31.440245-08:00,1008.3323364257812,10.728743,10728.743 +1264,2025-03-07T03:45:42.157424-08:00,1008.3304443359375,10.717179,10717.179 +1265,2025-03-07T03:45:52.883744-08:00,1008.3334350585938,10.72632,10726.32 +1266,2025-03-07T03:46:03.600461-08:00,1008.34326171875,10.716717,10716.717 +1267,2025-03-07T03:46:14.324247-08:00,1008.3267211914062,10.723786,10723.786 +1268,2025-03-07T03:46:25.056469-08:00,1008.3546142578125,10.732222,10732.222 +1269,2025-03-07T03:46:35.773412-08:00,1008.3329467773438,10.716943,10716.943 +1270,2025-03-07T03:46:46.503530-08:00,1008.3460693359375,10.730118,10730.118 +1271,2025-03-07T03:46:57.225481-08:00,1008.3820190429688,10.721951,10721.951 +1272,2025-03-07T03:47:07.951313-08:00,1008.3504638671875,10.725832,10725.832 +1273,2025-03-07T03:47:18.670329-08:00,1008.3504638671875,10.719016,10719.016 +1274,2025-03-07T03:47:29.396485-08:00,1008.3551635742188,10.726156,10726.156 +1275,2025-03-07T03:47:40.118415-08:00,1008.378173828125,10.72193,10721.93 +1276,2025-03-07T03:47:50.836246-08:00,1008.3546752929688,10.717831,10717.831 +1277,2025-03-07T03:48:01.556282-08:00,1008.3367309570312,10.720036,10720.036 +1278,2025-03-07T03:48:12.287502-08:00,1008.3253173828125,10.73122,10731.22 +1279,2025-03-07T03:48:23.001547-08:00,1008.37109375,10.714045,10714.045 +1280,2025-03-07T03:48:33.723247-08:00,1008.365966796875,10.7217,10721.7 +1281,2025-03-07T03:48:44.447207-08:00,1008.3197021484375,10.72396,10723.96 +1282,2025-03-07T03:48:55.166536-08:00,1008.337646484375,10.719329,10719.329 +1283,2025-03-07T03:49:05.894443-08:00,1008.3658447265625,10.727907,10727.907 +1284,2025-03-07T03:49:16.618312-08:00,1008.3591918945312,10.723869,10723.869 +1285,2025-03-07T03:49:27.336191-08:00,1008.3673706054688,10.717879,10717.879 +1286,2025-03-07T03:49:38.053380-08:00,1008.3635864257812,10.717189,10717.189 +1287,2025-03-07T03:49:48.786448-08:00,1008.3489990234375,10.733068,10733.068 +1288,2025-03-07T03:49:59.507247-08:00,1008.3570556640625,10.720799,10720.799 +1289,2025-03-07T03:50:10.226646-08:00,1008.3470458984375,10.719399,10719.399 +1290,2025-03-07T03:50:31.677260-08:00,1008.3404541015625,21.450614,21450.614 +1291,2025-03-07T03:50:42.398821-08:00,1008.3470458984375,10.721561,10721.561 +1292,2025-03-07T03:50:53.125488-08:00,1008.3323974609375,10.726667,10726.667 +1293,2025-03-07T03:51:03.853245-08:00,1008.3404541015625,10.727757,10727.757 +1294,2025-03-07T03:51:14.570247-08:00,1008.3287353515625,10.717002,10717.002 +1295,2025-03-07T03:51:25.297474-08:00,1008.353271484375,10.727227,10727.227 +1296,2025-03-07T03:51:36.007489-08:00,1008.350341796875,10.710015,10710.015 +1297,2025-03-07T03:51:46.733498-08:00,1008.3304443359375,10.726009,10726.009 +1298,2025-03-07T03:51:57.458312-08:00,1008.3173217773438,10.724814,10724.814 +1299,2025-03-07T03:52:08.179451-08:00,1008.3400268554688,10.721139,10721.139 +1300,2025-03-07T03:52:18.968222-08:00,1008.3353271484375,10.788771,10788.771 +1301,2025-03-07T03:52:29.688169-08:00,1008.338623046875,10.719947,10719.947 +1302,2025-03-07T03:52:40.416396-08:00,1008.3135986328125,10.728227,10728.227 +1303,2025-03-07T03:52:51.133375-08:00,1008.353271484375,10.716979,10716.979 +1304,2025-03-07T03:53:01.860106-08:00,1008.3202514648438,10.726731,10726.731 +1305,2025-03-07T03:53:12.578103-08:00,1008.3202514648438,10.717997,10717.997 +1306,2025-03-07T03:53:23.300309-08:00,1008.3202514648438,10.722206,10722.206 +1307,2025-03-07T03:53:34.025126-08:00,1008.3135986328125,10.724817,10724.817 +1308,2025-03-07T03:53:44.750134-08:00,1008.3616333007812,10.725008,10725.008 +1309,2025-03-07T03:53:55.472478-08:00,1008.3070068359375,10.722344,10722.344 +1310,2025-03-07T03:54:06.190289-08:00,1008.3004760742188,10.717811,10717.811 +1311,2025-03-07T03:54:16.920287-08:00,1008.2988891601562,10.729998,10729.998 +1312,2025-03-07T03:54:27.632220-08:00,1008.3121948242188,10.711933,10711.933 +1313,2025-03-07T03:54:38.362504-08:00,1008.3004760742188,10.730284,10730.284 +1314,2025-03-07T03:54:49.077103-08:00,1008.32861328125,10.714599,10714.599 +1315,2025-03-07T03:54:59.806308-08:00,1008.3055419921875,10.729205,10729.205 +1316,2025-03-07T03:55:10.519192-08:00,1008.3202514648438,10.712884,10712.884 +1317,2025-03-07T03:55:21.242388-08:00,1008.32861328125,10.723196,10723.196 +1318,2025-03-07T03:55:31.967104-08:00,1008.3187255859375,10.724716,10724.716 +1319,2025-03-07T03:55:42.688198-08:00,1008.2988891601562,10.721094,10721.094 +1320,2025-03-07T03:55:53.408103-08:00,1008.3121948242188,10.719905,10719.905 +1321,2025-03-07T03:56:04.133707-08:00,1008.3055419921875,10.725604,10725.604 +1322,2025-03-07T03:56:14.859867-08:00,1008.3121948242188,10.72616,10726.16 +1323,2025-03-07T03:56:25.577756-08:00,1008.3370971679688,10.717889,10717.889 +1324,2025-03-07T03:56:36.296107-08:00,1008.3304443359375,10.718351,10718.351 +1325,2025-03-07T03:56:47.018100-08:00,1008.3287353515625,10.721993,10721.993 +1326,2025-03-07T03:56:57.740135-08:00,1008.3353271484375,10.722035,10722.035 +1327,2025-03-07T03:57:08.459124-08:00,1008.2976684570312,10.718989,10718.989 +1328,2025-03-07T03:57:19.183134-08:00,1008.3240356445312,10.72401,10724.01 +1329,2025-03-07T03:57:29.902221-08:00,1008.3470458984375,10.719087,10719.087 +1330,2025-03-07T03:57:40.621898-08:00,1008.3126831054688,10.719677,10719.677 +1331,2025-03-07T03:57:51.348152-08:00,1008.3357543945312,10.726254,10726.254 +1332,2025-03-07T03:58:02.068239-08:00,1008.3570556640625,10.720087,10720.087 +1333,2025-03-07T03:58:12.786651-08:00,1008.3474731445312,10.718412,10718.412 +1334,2025-03-07T03:58:23.503117-08:00,1008.3145141601562,10.716466,10716.466 +1335,2025-03-07T03:58:34.223103-08:00,1008.2980346679688,10.719986,10719.986 +1336,2025-03-07T03:58:44.939300-08:00,1008.3328247070312,10.716197,10716.197 +1337,2025-03-07T03:58:55.656103-08:00,1008.3526611328125,10.716803,10716.803 +1338,2025-03-07T03:59:06.372386-08:00,1008.3460693359375,10.716283,10716.283 +1339,2025-03-07T03:59:17.097105-08:00,1008.350830078125,10.724719,10724.719 +1340,2025-03-07T03:59:27.815100-08:00,1008.34423828125,10.717995,10717.995 +1341,2025-03-07T03:59:38.535241-08:00,1008.334716796875,10.720141,10720.141 +1342,2025-03-07T03:59:49.250102-08:00,1008.3479614257812,10.714861,10714.861 +1343,2025-03-07T03:59:59.968481-08:00,1008.3248291015625,10.718379,10718.379 +1344,2025-03-07T04:00:10.685183-08:00,1008.377685546875,10.716702,10716.702 +1345,2025-03-07T04:00:21.410284-08:00,1008.3480224609375,10.725101,10725.101 +1346,2025-03-07T04:00:32.126193-08:00,1008.3729858398438,10.715909,10715.909 +1347,2025-03-07T04:00:42.836134-08:00,1008.3267211914062,10.709941,10709.941 +1348,2025-03-07T04:00:53.562098-08:00,1008.3517456054688,10.725964,10725.964 +1349,2025-03-07T04:01:04.276103-08:00,1008.3546752929688,10.714005,10714.005 +1350,2025-03-07T04:01:14.989626-08:00,1008.353271484375,10.713523,10713.523 +1351,2025-03-07T04:01:25.704345-08:00,1008.366455078125,10.714719,10714.719 +1352,2025-03-07T04:01:36.424106-08:00,1008.3731079101562,10.719761,10719.761 +1353,2025-03-07T04:01:47.136302-08:00,1008.369873046875,10.712196,10712.196 +1354,2025-03-07T04:01:57.856543-08:00,1008.3551635742188,10.720241,10720.241 +1355,2025-03-07T04:02:08.575297-08:00,1008.3914184570312,10.718754,10718.754 +1356,2025-03-07T04:02:19.292106-08:00,1008.381591796875,10.716809,10716.809 +1357,2025-03-07T04:02:30.010687-08:00,1008.407958984375,10.718581,10718.581 +1358,2025-03-07T04:02:40.717282-08:00,1008.3897094726562,10.706595,10706.595 +1359,2025-03-07T04:02:51.442478-08:00,1008.381591796875,10.725196,10725.196 +1360,2025-03-07T04:03:02.154001-08:00,1008.3717041015625,10.711523,10711.523 +1361,2025-03-07T04:03:12.867104-08:00,1008.393310546875,10.713103,10713.103 +1362,2025-03-07T04:03:23.581105-08:00,1008.3900146484375,10.714001,10714.001 +1363,2025-03-07T04:03:34.301222-08:00,1008.4032592773438,10.720117,10720.117 +1364,2025-03-07T04:03:45.017105-08:00,1008.3981323242188,10.715883,10715.883 +1365,2025-03-07T04:03:55.735306-08:00,1008.4098510742188,10.718201,10718.201 +1366,2025-03-07T04:04:06.458108-08:00,1008.4149780273438,10.722802,10722.802 +1367,2025-03-07T04:04:17.182444-08:00,1008.4132080078125,10.724336,10724.336 +1368,2025-03-07T04:04:27.891105-08:00,1008.3839111328125,10.708661,10708.661 +1369,2025-03-07T04:04:38.615105-08:00,1008.4263916015625,10.724,10724.0 +1370,2025-03-07T04:04:49.329520-08:00,1008.4183349609375,10.714415,10714.415 +1371,2025-03-07T04:05:00.054103-08:00,1008.4432983398438,10.724583,10724.583 +1372,2025-03-07T04:05:10.769294-08:00,1008.4151000976562,10.715191,10715.191 +1373,2025-03-07T04:05:21.486170-08:00,1008.4151000976562,10.716876,10716.876 +1374,2025-03-07T04:05:32.199268-08:00,1008.4202270507812,10.713098,10713.098 +1375,2025-03-07T04:05:42.919315-08:00,1008.405517578125,10.720047,10720.047 +1376,2025-03-07T04:05:53.636128-08:00,1008.405517578125,10.716813,10716.813 +1377,2025-03-07T04:06:04.351291-08:00,1008.3858032226562,10.715163,10715.163 +1378,2025-03-07T04:06:15.072106-08:00,1008.40234375,10.720815,10720.815 +1379,2025-03-07T04:06:25.787127-08:00,1008.4007568359375,10.715021,10715.021 +1380,2025-03-07T04:06:36.502516-08:00,1008.3825073242188,10.715389,10715.389 +1381,2025-03-07T04:06:47.224181-08:00,1008.3942260742188,10.721665,10721.665 +1382,2025-03-07T04:06:57.936298-08:00,1008.40234375,10.712117,10712.117 +1383,2025-03-07T04:07:08.655107-08:00,1008.3810424804688,10.718809,10718.809 +1384,2025-03-07T04:07:19.374472-08:00,1008.3861694335938,10.719365,10719.365 +1385,2025-03-07T04:07:30.095405-08:00,1008.392822265625,10.720933,10720.933 +1386,2025-03-07T04:07:40.819632-08:00,1008.419189453125,10.724227,10724.227 +1387,2025-03-07T04:07:51.528336-08:00,1008.364501953125,10.708704,10708.704 +1388,2025-03-07T04:08:02.250105-08:00,1008.364501953125,10.721769,10721.769 +1389,2025-03-07T04:08:12.964494-08:00,1008.4042358398438,10.714389,10714.389 +1390,2025-03-07T04:08:23.682106-08:00,1008.4042358398438,10.717612,10717.612 +1391,2025-03-07T04:08:34.403592-08:00,1008.4093627929688,10.721486,10721.486 +1392,2025-03-07T04:08:45.118109-08:00,1008.4159545898438,10.714517,10714.517 +1393,2025-03-07T04:08:55.839388-08:00,1008.4012451171875,10.721279,10721.279 +1394,2025-03-07T04:09:06.554530-08:00,1008.4012451171875,10.715142,10715.142 +1395,2025-03-07T04:09:17.279102-08:00,1008.4078369140625,10.724572,10724.572 +1396,2025-03-07T04:09:27.998121-08:00,1008.39794921875,10.719019,10719.019 +1397,2025-03-07T04:09:38.718103-08:00,1008.4012451171875,10.719982,10719.982 +1398,2025-03-07T04:09:49.436304-08:00,1008.39794921875,10.718201,10718.201 +1399,2025-03-07T04:10:00.153102-08:00,1008.364990234375,10.716798,10716.798 +1400,2025-03-07T04:10:10.866696-08:00,1008.363525390625,10.713594,10713.594 +1401,2025-03-07T04:10:21.591247-08:00,1008.3701782226562,10.724551,10724.551 +1402,2025-03-07T04:10:32.311168-08:00,1008.3749389648438,10.719921,10719.921 +1403,2025-03-07T04:10:43.024186-08:00,1008.3701782226562,10.713018,10713.018 +1404,2025-03-07T04:10:53.747873-08:00,1008.3616943359375,10.723687,10723.687 +1405,2025-03-07T04:11:04.465282-08:00,1008.3654174804688,10.717409,10717.409 +1406,2025-03-07T04:11:15.175302-08:00,1008.3734130859375,10.71002,10710.02 +1407,2025-03-07T04:11:25.893218-08:00,1008.337158203125,10.717916,10717.916 +1408,2025-03-07T04:11:36.609312-08:00,1008.3668823242188,10.716094,10716.094 +1409,2025-03-07T04:11:47.332107-08:00,1008.3668823242188,10.722795,10722.795 +1410,2025-03-07T04:11:58.046287-08:00,1008.3654174804688,10.71418,10714.18 +1411,2025-03-07T04:12:08.762311-08:00,1008.3734130859375,10.716024,10716.024 +1412,2025-03-07T04:12:19.488295-08:00,1008.337158203125,10.725984,10725.984 +1413,2025-03-07T04:12:30.205106-08:00,1008.3570556640625,10.716811,10716.811 +1414,2025-03-07T04:12:40.922155-08:00,1008.337158203125,10.717049,10717.049 +1415,2025-03-07T04:12:51.636555-08:00,1008.3423461914062,10.7144,10714.4 +1416,2025-03-07T04:13:02.358165-08:00,1008.3211059570312,10.72161,10721.61 +1417,2025-03-07T04:13:13.072271-08:00,1008.307861328125,10.714106,10714.106 +1418,2025-03-07T04:13:23.792214-08:00,1008.2998657226562,10.719943,10719.943 +1419,2025-03-07T04:13:34.508106-08:00,1008.293212890625,10.715892,10715.892 +1420,2025-03-07T04:13:45.232104-08:00,1008.33935546875,10.723998,10723.998 +1421,2025-03-07T04:13:55.947312-08:00,1008.3244018554688,10.715208,10715.208 +1422,2025-03-07T04:14:06.666301-08:00,1008.31640625,10.718989,10718.989 +1423,2025-03-07T04:14:17.386158-08:00,1008.33935546875,10.719857,10719.857 +1424,2025-03-07T04:14:28.107320-08:00,1008.3244018554688,10.721162,10721.162 +1425,2025-03-07T04:14:38.825170-08:00,1008.33935546875,10.71785,10717.85 +1426,2025-03-07T04:14:49.545218-08:00,1008.3244018554688,10.720048,10720.048 +1427,2025-03-07T04:15:00.259106-08:00,1008.3214721679688,10.713888,10713.888 +1428,2025-03-07T04:15:10.983514-08:00,1008.311279296875,10.724408,10724.408 +1429,2025-03-07T04:15:21.701188-08:00,1008.3148193359375,10.717674,10717.674 +1430,2025-03-07T04:15:32.418198-08:00,1008.3046264648438,10.71701,10717.01 +1431,2025-03-07T04:15:43.148616-08:00,1008.3082885742188,10.730418,10730.418 +1432,2025-03-07T04:15:53.870002-08:00,1008.3361206054688,10.721386,10721.386 +1433,2025-03-07T04:16:04.580266-08:00,1008.3082885742188,10.710264,10710.264 +1434,2025-03-07T04:16:15.310950-08:00,1008.3064575195312,10.730684,10730.684 +1435,2025-03-07T04:16:26.022101-08:00,1008.3361206054688,10.711151,10711.151 +1436,2025-03-07T04:16:36.748311-08:00,1008.3131103515625,10.72621,10726.21 +1437,2025-03-07T04:16:47.463370-08:00,1008.3262329101562,10.715059,10715.059 +1438,2025-03-07T04:16:58.174103-08:00,1008.3064575195312,10.710733,10710.733 +1439,2025-03-07T04:17:08.894969-08:00,1008.3328857421875,10.720866,10720.866 +1440,2025-03-07T04:17:19.615336-08:00,1008.3197021484375,10.720367,10720.367 +1441,2025-03-07T04:17:30.335103-08:00,1008.3262329101562,10.719767,10719.767 +1442,2025-03-07T04:17:41.046143-08:00,1008.3328857421875,10.71104,10711.04 +1443,2025-03-07T04:17:51.770105-08:00,1008.365966796875,10.723962,10723.962 +1444,2025-03-07T04:18:02.488190-08:00,1008.3545532226562,10.718085,10718.085 +1445,2025-03-07T04:18:13.203175-08:00,1008.3365478515625,10.714985,10714.985 +1446,2025-03-07T04:18:23.918154-08:00,1008.3512573242188,10.714979,10714.979 +1447,2025-03-07T04:18:34.632517-08:00,1008.3314208984375,10.714363,10714.363 +1448,2025-03-07T04:18:45.352623-08:00,1008.3101806640625,10.720106,10720.106 +1449,2025-03-07T04:18:56.071508-08:00,1008.3116455078125,10.718885,10718.885 +1450,2025-03-07T04:19:06.798623-08:00,1008.3414306640625,10.727115,10727.115 +1451,2025-03-07T04:19:17.518287-08:00,1008.3431396484375,10.719664,10719.664 +1452,2025-03-07T04:19:28.244305-08:00,1008.3380737304688,10.726018,10726.018 +1453,2025-03-07T04:19:38.962105-08:00,1008.377685546875,10.7178,10717.8 +1454,2025-03-07T04:19:49.677105-08:00,1008.3248291015625,10.715,10715.0 +1455,2025-03-07T04:20:00.406593-08:00,1008.3150024414062,10.729488,10729.488 +1456,2025-03-07T04:20:11.116308-08:00,1008.3150024414062,10.709715,10709.715 +1457,2025-03-07T04:20:21.844279-08:00,1008.31201171875,10.727971,10727.971 +1458,2025-03-07T04:20:32.555183-08:00,1008.3318481445312,10.710904,10710.904 +1459,2025-03-07T04:20:43.282504-08:00,1008.361572265625,10.727321,10727.321 +1460,2025-03-07T04:20:53.997104-08:00,1008.3385009765625,10.7146,10714.6 +1461,2025-03-07T04:21:04.708136-08:00,1008.3538818359375,10.711032,10711.032 +1462,2025-03-07T04:21:15.434268-08:00,1008.3652954101562,10.726132,10726.132 +1463,2025-03-07T04:21:26.151106-08:00,1008.373779296875,10.716838,10716.838 +1464,2025-03-07T04:21:36.873252-08:00,1008.3822631835938,10.722146,10722.146 +1465,2025-03-07T04:21:47.593107-08:00,1008.3892211914062,10.719855,10719.855 +1466,2025-03-07T04:21:58.301110-08:00,1008.384521484375,10.708003,10708.003 +1467,2025-03-07T04:22:09.022271-08:00,1008.4080200195312,10.721161,10721.161 +1468,2025-03-07T04:22:19.744126-08:00,1008.44140625,10.721855,10721.855 +1469,2025-03-07T04:22:30.464671-08:00,1008.4469604492188,10.720545,10720.545 +1470,2025-03-07T04:22:41.180105-08:00,1008.4159545898438,10.715434,10715.434 +1471,2025-03-07T04:22:51.898681-08:00,1008.4412231445312,10.718576,10718.576 +1472,2025-03-07T04:23:02.610297-08:00,1008.4328002929688,10.711616,10711.616 +1473,2025-03-07T04:23:13.337290-08:00,1008.421875,10.726993,10726.993 +1474,2025-03-07T04:23:24.049252-08:00,1008.4501342773438,10.711962,10711.962 +1475,2025-03-07T04:23:34.763312-08:00,1008.4835205078125,10.71406,10714.06 +1476,2025-03-07T04:23:45.485873-08:00,1008.4706420898438,10.722561,10722.561 +1477,2025-03-07T04:23:56.206131-08:00,1008.475830078125,10.720258,10720.258 +1478,2025-03-07T04:24:06.922273-08:00,1008.4746704101562,10.716142,10716.142 +1479,2025-03-07T04:24:17.638293-08:00,1008.5011596679688,10.71602,10716.02 +1480,2025-03-07T04:24:28.361338-08:00,1008.467041015625,10.723045,10723.045 +1481,2025-03-07T04:24:39.082105-08:00,1008.496826171875,10.720767,10720.767 +1482,2025-03-07T04:24:49.795306-08:00,1008.462646484375,10.713201,10713.201 +1483,2025-03-07T04:25:00.511335-08:00,1008.4974975585938,10.716029,10716.029 +1484,2025-03-07T04:25:11.232103-08:00,1008.4795532226562,10.720768,10720.768 +1485,2025-03-07T04:25:21.961317-08:00,1008.4879760742188,10.729214,10729.214 +1486,2025-03-07T04:25:32.675098-08:00,1008.4927978515625,10.713781,10713.781 +1487,2025-03-07T04:25:43.401346-08:00,1008.4913330078125,10.726248,10726.248 +1488,2025-03-07T04:25:54.120187-08:00,1008.4835815429688,10.718841,10718.841 +1489,2025-03-07T04:26:04.831129-08:00,1008.498291015625,10.710942,10710.942 +1490,2025-03-07T04:26:15.559638-08:00,1008.4868774414062,10.728509,10728.509 +1491,2025-03-07T04:26:26.272099-08:00,1008.4854736328125,10.712461,10712.461 +1492,2025-03-07T04:26:36.998338-08:00,1008.5165405273438,10.726239,10726.239 +1493,2025-03-07T04:26:47.716127-08:00,1008.508544921875,10.717789,10717.789 +1494,2025-03-07T04:26:58.433294-08:00,1008.5165405273438,10.717167,10717.167 +1495,2025-03-07T04:27:09.156267-08:00,1008.508544921875,10.722973,10722.973 +1496,2025-03-07T04:27:19.873320-08:00,1008.50048828125,10.717053,10717.053 +1497,2025-03-07T04:27:30.592105-08:00,1008.5301513671875,10.718785,10718.785 +1498,2025-03-07T04:27:41.307284-08:00,1008.5169677734375,10.715179,10715.179 +1499,2025-03-07T04:27:52.023249-08:00,1008.5154418945312,10.715965,10715.965 +1500,2025-03-07T04:28:02.739896-08:00,1008.5301513671875,10.716647,10716.647 +1501,2025-03-07T04:28:13.463209-08:00,1008.4957275390625,10.723313,10723.313 +1502,2025-03-07T04:28:24.181105-08:00,1008.5154418945312,10.717896,10717.896 +1503,2025-03-07T04:28:34.902343-08:00,1008.5301513671875,10.721238,10721.238 +1504,2025-03-07T04:28:45.612425-08:00,1008.50732421875,10.710082,10710.082 +1505,2025-03-07T04:28:56.335280-08:00,1008.5169677734375,10.722855,10722.855 +1506,2025-03-07T04:29:07.050179-08:00,1008.5250244140625,10.714899,10714.899 +1507,2025-03-07T04:29:17.766337-08:00,1008.5382080078125,10.716158,10716.158 +1508,2025-03-07T04:29:28.485372-08:00,1008.52685546875,10.719035,10719.035 +1509,2025-03-07T04:29:39.204104-08:00,1008.5070190429688,10.718732,10718.732 +1510,2025-03-07T04:29:49.917403-08:00,1008.508544921875,10.713299,10713.299 +1511,2025-03-07T04:30:00.641346-08:00,1008.50048828125,10.723943,10723.943 +1512,2025-03-07T04:30:11.352103-08:00,1008.548095703125,10.710757,10710.757 +1513,2025-03-07T04:30:22.075180-08:00,1008.4985961914062,10.723077,10723.077 +1514,2025-03-07T04:30:32.793227-08:00,1008.5117797851562,10.718047,10718.047 +1515,2025-03-07T04:30:43.509550-08:00,1008.5117797851562,10.716323,10716.323 +1516,2025-03-07T04:30:54.224099-08:00,1008.5067138671875,10.714549,10714.549 +1517,2025-03-07T04:31:04.939345-08:00,1008.524658203125,10.715246,10715.246 +1518,2025-03-07T04:31:15.657101-08:00,1008.5231323242188,10.717756,10717.756 +1519,2025-03-07T04:31:26.381137-08:00,1008.5114135742188,10.724036,10724.036 +1520,2025-03-07T04:31:37.102098-08:00,1008.50634765625,10.720961,10720.961 +1521,2025-03-07T04:31:47.820125-08:00,1008.5162353515625,10.718027,10718.027 +1522,2025-03-07T04:31:58.541367-08:00,1008.5228271484375,10.721242,10721.242 +1523,2025-03-07T04:32:09.253229-08:00,1008.5111083984375,10.711862,10711.862 +1524,2025-03-07T04:32:19.977118-08:00,1008.5421752929688,10.723889,10723.889 +1525,2025-03-07T04:32:30.700103-08:00,1008.5092163085938,10.722985,10722.985 +1526,2025-03-07T04:32:41.413268-08:00,1008.517333984375,10.713165,10713.165 +1527,2025-03-07T04:32:52.128105-08:00,1008.5125122070312,10.714837,10714.837 +1528,2025-03-07T04:33:02.856288-08:00,1008.5125122070312,10.728183,10728.183 +1529,2025-03-07T04:33:13.565105-08:00,1008.55029296875,10.708817,10708.817 +1530,2025-03-07T04:33:24.294169-08:00,1008.559814453125,10.729064,10729.064 +1531,2025-03-07T04:33:35.009316-08:00,1008.5762329101562,10.715147,10715.147 +1532,2025-03-07T04:33:45.723098-08:00,1008.55322265625,10.713782,10713.782 +1533,2025-03-07T04:33:56.450282-08:00,1008.55322265625,10.727184,10727.184 +1534,2025-03-07T04:34:07.159105-08:00,1008.5399780273438,10.708823,10708.823 +1535,2025-03-07T04:34:17.884539-08:00,1008.57080078125,10.725434,10725.434 +1536,2025-03-07T04:34:28.603103-08:00,1008.5660400390625,10.718564,10718.564 +1537,2025-03-07T04:34:39.320516-08:00,1008.5675048828125,10.717413,10717.413 +1538,2025-03-07T04:34:50.034247-08:00,1008.5293579101562,10.713731,10713.731 +1539,2025-03-07T04:35:00.756874-08:00,1008.5443725585938,10.722627,10722.627 +1540,2025-03-07T04:35:11.485145-08:00,1008.572265625,10.728271,10728.271 +1541,2025-03-07T04:35:22.198858-08:00,1008.5326538085938,10.713713,10713.713 +1542,2025-03-07T04:35:32.919455-08:00,1008.5850830078125,10.720597,10720.597 +1543,2025-03-07T04:35:43.640135-08:00,1008.5784301757812,10.72068,10720.68 +1544,2025-03-07T04:35:54.368327-08:00,1008.6029663085938,10.728192,10728.192 +1545,2025-03-07T04:36:05.084128-08:00,1008.597900390625,10.715801,10715.801 +1546,2025-03-07T04:36:15.797698-08:00,1008.6195068359375,10.71357,10713.57 +1547,2025-03-07T04:36:26.518159-08:00,1008.6026611328125,10.720461,10720.461 +1548,2025-03-07T04:36:37.246881-08:00,1008.584716796875,10.728722,10728.722 +1549,2025-03-07T04:36:47.959306-08:00,1008.599365234375,10.712425,10712.425 +1550,2025-03-07T04:36:58.685323-08:00,1008.59423828125,10.726017,10726.017 +1551,2025-03-07T04:37:09.405107-08:00,1008.5909423828125,10.719784,10719.784 +1552,2025-03-07T04:37:20.121249-08:00,1008.6253051757812,10.716142,10716.142 +1553,2025-03-07T04:37:30.842104-08:00,1008.6187744140625,10.720855,10720.855 +1554,2025-03-07T04:37:41.566448-08:00,1008.64697265625,10.724344,10724.344 +1555,2025-03-07T04:37:52.287299-08:00,1008.6384887695312,10.720851,10720.851 +1556,2025-03-07T04:38:03.007099-08:00,1008.6348266601562,10.7198,10719.8 +1557,2025-03-07T04:38:13.723105-08:00,1008.60546875,10.716006,10716.006 +1558,2025-03-07T04:38:24.447179-08:00,1008.6282958984375,10.724074,10724.074 +1559,2025-03-07T04:38:35.163108-08:00,1008.646240234375,10.715929,10715.929 +1560,2025-03-07T04:38:45.889154-08:00,1008.619873046875,10.726046,10726.046 +1561,2025-03-07T04:38:56.605174-08:00,1008.6212768554688,10.71602,10716.02 +1562,2025-03-07T04:39:07.327394-08:00,1008.591552734375,10.72222,10722.22 +1563,2025-03-07T04:39:18.047284-08:00,1008.6278076171875,10.71989,10719.89 +1564,2025-03-07T04:39:28.768104-08:00,1008.61279296875,10.72082,10720.82 +1565,2025-03-07T04:39:39.478166-08:00,1008.6095581054688,10.710062,10710.062 +1566,2025-03-07T04:39:50.204616-08:00,1008.58642578125,10.72645,10726.45 +1567,2025-03-07T04:40:00.921102-08:00,1008.607666015625,10.716486,10716.486 +1568,2025-03-07T04:40:11.638459-08:00,1008.6060791015625,10.717357,10717.357 +1569,2025-03-07T04:40:22.363548-08:00,1008.6010131835938,10.725089,10725.089 +1570,2025-03-07T04:40:33.078313-08:00,1008.618896484375,10.714765,10714.765 +1571,2025-03-07T04:40:43.792102-08:00,1008.623779296875,10.713789,10713.789 +1572,2025-03-07T04:40:54.510754-08:00,1008.6629028320312,10.718652,10718.652 +1573,2025-03-07T04:41:05.238101-08:00,1008.6134643554688,10.727347,10727.347 +1574,2025-03-07T04:41:15.952563-08:00,1008.63134765625,10.714462,10714.462 +1575,2025-03-07T04:41:26.669110-08:00,1008.640869140625,10.716547,10716.547 +1576,2025-03-07T04:41:37.391673-08:00,1008.6294555664062,10.722563,10722.563 +1577,2025-03-07T04:41:48.105329-08:00,1008.6356201171875,10.713656,10713.656 +1578,2025-03-07T04:41:58.826105-08:00,1008.6093139648438,10.720776,10720.776 +1579,2025-03-07T04:42:09.542282-08:00,1008.6353149414062,10.716177,10716.177 +1580,2025-03-07T04:42:20.268355-08:00,1008.6451416015625,10.726073,10726.073 +1581,2025-03-07T04:42:30.985291-08:00,1008.6217041015625,10.716936,10716.936 +1582,2025-03-07T04:42:41.703105-08:00,1008.619873046875,10.717814,10717.814 +1583,2025-03-07T04:42:52.417420-08:00,1008.6495361328125,10.714315,10714.315 +1584,2025-03-07T04:43:03.137323-08:00,1008.6443481445312,10.719903,10719.903 +1585,2025-03-07T04:43:13.861171-08:00,1008.6476440429688,10.723848,10723.848 +1586,2025-03-07T04:43:24.587102-08:00,1008.6589965820312,10.725931,10725.931 +1587,2025-03-07T04:43:35.306125-08:00,1008.632568359375,10.719023,10719.023 +1588,2025-03-07T04:43:46.026278-08:00,1008.6487426757812,10.720153,10720.153 +1589,2025-03-07T04:43:56.741104-08:00,1008.6504516601562,10.714826,10714.826 +1590,2025-03-07T04:44:07.458743-08:00,1008.6552124023438,10.717639,10717.639 +1591,2025-03-07T04:44:18.177777-08:00,1008.650146484375,10.719034,10719.034 +1592,2025-03-07T04:44:28.902462-08:00,1008.6599731445312,10.724685,10724.685 +1593,2025-03-07T04:44:39.628369-08:00,1008.6482543945312,10.725907,10725.907 +1594,2025-03-07T04:44:50.344309-08:00,1008.6299438476562,10.71594,10715.94 +1595,2025-03-07T04:45:01.059454-08:00,1008.6298217773438,10.715145,10715.145 +1596,2025-03-07T04:45:11.780856-08:00,1008.64306640625,10.721402,10721.402 +1597,2025-03-07T04:45:22.501105-08:00,1008.6328125,10.720249,10720.249 +1598,2025-03-07T04:45:33.220427-08:00,1008.62109375,10.719322,10719.322 +1599,2025-03-07T04:45:43.946170-08:00,1008.6361083984375,10.725743,10725.743 +1600,2025-03-07T04:45:54.666162-08:00,1008.624267578125,10.719992,10719.992 +1601,2025-03-07T04:46:05.384105-08:00,1008.6422119140625,10.717943,10717.943 +1602,2025-03-07T04:46:16.101103-08:00,1008.6456298828125,10.716998,10716.998 +1603,2025-03-07T04:46:26.819220-08:00,1008.6224365234375,10.718117,10718.117 +1604,2025-03-07T04:46:37.538297-08:00,1008.6437377929688,10.719077,10719.077 +1605,2025-03-07T04:46:48.258276-08:00,1008.665283203125,10.719979,10719.979 +1606,2025-03-07T04:46:58.984101-08:00,1008.671875,10.725825,10725.825 +1607,2025-03-07T04:47:09.703504-08:00,1008.6568603515625,10.719403,10719.403 +1608,2025-03-07T04:47:20.418099-08:00,1008.6587524414062,10.714595,10714.595 +1609,2025-03-07T04:47:31.138229-08:00,1008.6587524414062,10.72013,10720.13 +1610,2025-03-07T04:47:41.858106-08:00,1008.670166015625,10.719877,10719.877 +1611,2025-03-07T04:47:52.580099-08:00,1008.6997680664062,10.721993,10721.993 +1612,2025-03-07T04:48:03.303105-08:00,1008.6865844726562,10.723006,10723.006 +1613,2025-03-07T04:48:14.024126-08:00,1008.6880493164062,10.721021,10721.021 +1614,2025-03-07T04:48:24.746167-08:00,1008.6851806640625,10.722041,10722.041 +1615,2025-03-07T04:48:35.471554-08:00,1008.7064208984375,10.725387,10725.387 +1616,2025-03-07T04:48:46.187104-08:00,1008.7327880859375,10.71555,10715.55 +1617,2025-03-07T04:48:56.905403-08:00,1008.7048950195312,10.718299,10718.299 +1618,2025-03-07T04:49:07.620968-08:00,1008.7261962890625,10.715565,10715.565 +1619,2025-03-07T04:49:18.334105-08:00,1008.7408447265625,10.713137,10713.137 +1620,2025-03-07T04:49:29.057306-08:00,1008.7576293945312,10.723201,10723.201 +1621,2025-03-07T04:49:39.773393-08:00,1008.7313232421875,10.716087,10716.087 +1622,2025-03-07T04:49:50.498294-08:00,1008.7210693359375,10.724901,10724.901 +1623,2025-03-07T04:50:01.218210-08:00,1008.7393798828125,10.719916,10719.916 +1624,2025-03-07T04:50:11.928310-08:00,1008.7804565429688,10.7101,10710.1 +1625,2025-03-07T04:50:22.642254-08:00,1008.7775268554688,10.713944,10713.944 +1626,2025-03-07T04:50:33.365139-08:00,1008.7445068359375,10.722885,10722.885 +1627,2025-03-07T04:50:44.086284-08:00,1008.7459106445312,10.721145,10721.145 +1628,2025-03-07T04:50:54.805161-08:00,1008.7379760742188,10.718877,10718.877 +1629,2025-03-07T04:51:05.536432-08:00,1008.7313232421875,10.731271,10731.271 +1630,2025-03-07T04:51:16.248105-08:00,1008.7592163085938,10.711673,10711.673 +1631,2025-03-07T04:51:26.965376-08:00,1008.7181396484375,10.717271,10717.271 +1632,2025-03-07T04:51:37.696105-08:00,1008.7493896484375,10.730729,10730.729 +1633,2025-03-07T04:51:48.413958-08:00,1008.7576293945312,10.717853,10717.853 +1634,2025-03-07T04:51:59.138173-08:00,1008.7412719726562,10.724215,10724.215 +1635,2025-03-07T04:52:09.859319-08:00,1008.72802734375,10.721146,10721.146 +1636,2025-03-07T04:52:20.579821-08:00,1008.7611083984375,10.720502,10720.502 +1637,2025-03-07T04:52:31.298223-08:00,1008.7313842773438,10.718402,10718.402 +1638,2025-03-07T04:52:42.025827-08:00,1008.790771484375,10.727604,10727.604 +1639,2025-03-07T04:52:52.741962-08:00,1008.764404296875,10.716135,10716.135 +1640,2025-03-07T04:53:03.465941-08:00,1008.78271484375,10.723979,10723.979 +1641,2025-03-07T04:53:14.185955-08:00,1008.75634765625,10.720014,10720.014 +1642,2025-03-07T04:53:24.904932-08:00,1008.774658203125,10.718977,10718.977 +1643,2025-03-07T04:53:35.627952-08:00,1008.79443359375,10.72302,10723.02 +1644,2025-03-07T04:53:46.346234-08:00,1008.7926635742188,10.718282,10718.282 +1645,2025-03-07T04:53:57.061849-08:00,1008.7597045898438,10.715615,10715.615 +1646,2025-03-07T04:54:07.785842-08:00,1008.7567138671875,10.723993,10723.993 +1647,2025-03-07T04:54:18.510399-08:00,1008.7684326171875,10.724557,10724.557 +1648,2025-03-07T04:54:29.231583-08:00,1008.7698974609375,10.721184,10721.184 +1649,2025-03-07T04:54:39.951825-08:00,1008.7816162109375,10.720242,10720.242 +1650,2025-03-07T04:54:50.667030-08:00,1008.8095092773438,10.715205,10715.205 +1651,2025-03-07T04:55:01.387039-08:00,1008.7849731445312,10.720009,10720.009 +1652,2025-03-07T04:55:12.111001-08:00,1008.7849731445312,10.723962,10723.962 +1653,2025-03-07T04:55:22.835488-08:00,1008.78173828125,10.724487,10724.487 +1654,2025-03-07T04:55:33.559914-08:00,1008.8032836914062,10.724426,10724.426 +1655,2025-03-07T04:55:44.284823-08:00,1008.794921875,10.724909,10724.909 +1656,2025-03-07T04:55:55.007007-08:00,1008.8132934570312,10.722184,10722.184 +1657,2025-03-07T04:56:05.726021-08:00,1008.7999877929688,10.719014,10719.014 +1658,2025-03-07T04:56:16.448825-08:00,1008.798583984375,10.722804,10722.804 +1659,2025-03-07T04:56:27.171004-08:00,1008.814697265625,10.722179,10722.179 +1660,2025-03-07T04:56:37.892168-08:00,1008.798583984375,10.721164,10721.164 +1661,2025-03-07T04:56:48.604823-08:00,1008.8184204101562,10.712655,10712.655 +1662,2025-03-07T04:56:59.330003-08:00,1008.811767578125,10.72518,10725.18 +1663,2025-03-07T04:57:10.048824-08:00,1008.8381958007812,10.718821,10718.821 +1664,2025-03-07T04:57:20.770229-08:00,1008.8165893554688,10.721405,10721.405 +1665,2025-03-07T04:57:31.483823-08:00,1008.8217163085938,10.713594,10713.594 +1666,2025-03-07T04:57:42.209030-08:00,1008.826904296875,10.725207,10725.207 +1667,2025-03-07T04:57:52.923017-08:00,1008.8231811523438,10.713987,10713.987 +1668,2025-03-07T04:58:03.648828-08:00,1008.83642578125,10.725811,10725.811 +1669,2025-03-07T04:58:14.370821-08:00,1008.869384765625,10.721993,10721.993 +1670,2025-03-07T04:58:25.091958-08:00,1008.8562622070312,10.721137,10721.137 +1671,2025-03-07T04:58:35.805099-08:00,1008.84814453125,10.713141,10713.141 +1672,2025-03-07T04:58:46.522817-08:00,1008.86279296875,10.717718,10717.718 +1673,2025-03-07T04:58:57.246991-08:00,1008.8546752929688,10.724174,10724.174 +1674,2025-03-07T04:59:07.966890-08:00,1008.8448486328125,10.719899,10719.899 +1675,2025-03-07T04:59:18.686192-08:00,1008.8334350585938,10.719302,10719.302 +1676,2025-03-07T04:59:29.414826-08:00,1008.8367919921875,10.728634,10728.634 +1677,2025-03-07T04:59:40.131922-08:00,1008.8367919921875,10.717096,10717.096 +1678,2025-03-07T04:59:50.856070-08:00,1008.8485107421875,10.724148,10724.148 +1679,2025-03-07T05:00:01.580028-08:00,1008.853271484375,10.723958,10723.958 +1680,2025-03-07T05:00:12.294974-08:00,1008.8616943359375,10.714946,10714.946 +1681,2025-03-07T05:00:23.017003-08:00,1008.8418579101562,10.722029,10722.029 +1682,2025-03-07T05:00:33.743823-08:00,1008.83349609375,10.72682,10726.82 +1683,2025-03-07T05:00:44.460017-08:00,1008.812255859375,10.716194,10716.194 +1684,2025-03-07T05:00:55.178825-08:00,1008.825439453125,10.718808,10718.808 +1685,2025-03-07T05:01:05.905395-08:00,1008.838623046875,10.72657,10726.57 +1686,2025-03-07T05:01:16.623821-08:00,1008.8518676757812,10.718426,10718.426 +1687,2025-03-07T05:01:27.345017-08:00,1008.8518676757812,10.721196,10721.196 +1688,2025-03-07T05:01:38.062825-08:00,1008.8504028320312,10.717808,10717.808 +1689,2025-03-07T05:01:48.787306-08:00,1008.8273315429688,10.724481,10724.481 +1690,2025-03-07T05:01:59.510828-08:00,1008.85546875,10.723522,10723.522 +1691,2025-03-07T05:02:10.241345-08:00,1008.8323974609375,10.730517,10730.517 +1692,2025-03-07T05:02:20.965864-08:00,1008.8668823242188,10.724519,10724.519 +1693,2025-03-07T05:02:31.687899-08:00,1008.8456420898438,10.722035,10722.035 +1694,2025-03-07T05:02:42.409311-08:00,1008.8507690429688,10.721412,10721.412 +1695,2025-03-07T05:02:53.138855-08:00,1008.8309326171875,10.729544,10729.544 +1696,2025-03-07T05:03:03.852849-08:00,1008.8507690429688,10.713994,10713.994 +1697,2025-03-07T05:03:14.574822-08:00,1008.8357543945312,10.721973,10721.973 +1698,2025-03-07T05:03:25.298820-08:00,1008.8837280273438,10.723998,10723.998 +1699,2025-03-07T05:03:36.017018-08:00,1008.8526611328125,10.718198,10718.198 +1700,2025-03-07T05:03:46.736825-08:00,1008.85595703125,10.719807,10719.807 +1701,2025-03-07T05:03:57.459228-08:00,1008.8526611328125,10.722403,10722.403 +1702,2025-03-07T05:04:08.179821-08:00,1008.8295288085938,10.720593,10720.593 +1703,2025-03-07T05:04:18.908056-08:00,1008.8428344726562,10.728235,10728.235 +1704,2025-03-07T05:04:29.627027-08:00,1008.84423828125,10.718971,10718.971 +1705,2025-03-07T05:04:40.343058-08:00,1008.8328857421875,10.716031,10716.031 +1706,2025-03-07T05:04:51.074822-08:00,1008.85595703125,10.731764,10731.764 +1707,2025-03-07T05:05:01.792019-08:00,1008.8262329101562,10.717197,10717.197 +1708,2025-03-07T05:05:12.512108-08:00,1008.8328857421875,10.720089,10720.089 +1709,2025-03-07T05:05:23.226995-08:00,1008.8395385742188,10.714887,10714.887 +1710,2025-03-07T05:05:33.951857-08:00,1008.8446044921875,10.724862,10724.862 +1711,2025-03-07T05:05:34.723565-08:00,1008.8446044921875,0.771708,771.708 +1712,2025-03-07T05:05:44.668218-08:00,1008.8842163085938,9.944653,9944.653 +1713,2025-03-07T05:05:55.389821-08:00,1008.8218994140625,10.721603,10721.603 +1714,2025-03-07T05:06:06.114996-08:00,1008.83984375,10.725175,10725.175 +1715,2025-03-07T05:06:06.114996-08:00,1008.83984375,0.0,0.0 +1716,2025-03-07T05:06:16.831826-08:00,1008.8482666015625,10.71683,10716.83 +1717,2025-03-07T05:06:27.558136-08:00,1008.8464965820312,10.72631,10726.31 +1718,2025-03-07T05:06:38.274824-08:00,1008.8515625,10.716688,10716.688 +1719,2025-03-07T05:06:49.000966-08:00,1008.8582153320312,10.726142,10726.142 +1720,2025-03-07T05:06:59.717824-08:00,1008.8713989257812,10.716858,10716.858 +1721,2025-03-07T05:07:10.438829-08:00,1008.8662719726562,10.721005,10721.005 +1722,2025-03-07T05:07:21.164859-08:00,1008.872802734375,10.72603,10726.03 +1723,2025-03-07T05:07:31.882063-08:00,1008.8779907226562,10.717204,10717.204 +1724,2025-03-07T05:07:42.610837-08:00,1008.843505859375,10.728774,10728.774 +1725,2025-03-07T05:07:53.333998-08:00,1008.8897094726562,10.723161,10723.161 +1726,2025-03-07T05:08:04.052025-08:00,1008.887939453125,10.718027,10718.027 +1727,2025-03-07T05:08:14.765941-08:00,1008.873291015625,10.713916,10713.916 +1728,2025-03-07T05:08:25.482010-08:00,1008.914306640625,10.716069,10716.069 +1729,2025-03-07T05:08:36.211825-08:00,1008.9255981445312,10.729815,10729.815 +1730,2025-03-07T05:08:46.929039-08:00,1008.9226684570312,10.717214,10717.214 +1731,2025-03-07T05:08:57.652944-08:00,1008.914306640625,10.723905,10723.905 +1732,2025-03-07T05:09:08.375068-08:00,1008.899658203125,10.722124,10722.124 +1733,2025-03-07T05:09:19.100027-08:00,1008.93408203125,10.724959,10724.959 +1734,2025-03-07T05:09:29.811891-08:00,1008.91796875,10.711864,10711.864 +1735,2025-03-07T05:09:40.542874-08:00,1008.91943359375,10.730983,10730.983 +1736,2025-03-07T05:09:51.262037-08:00,1008.911376953125,10.719163,10719.163 +1737,2025-03-07T05:10:01.978025-08:00,1008.9260864257812,10.715988,10715.988 +1738,2025-03-07T05:10:12.704822-08:00,1008.90478515625,10.726797,10726.797 +1739,2025-03-07T05:10:23.422586-08:00,1008.93115234375,10.717764,10717.764 +1740,2025-03-07T05:10:34.139692-08:00,1008.9359130859375,10.717106,10717.106 +1741,2025-03-07T05:10:44.859822-08:00,1008.9378051757812,10.72013,10720.13 +1742,2025-03-07T05:10:55.578009-08:00,1008.9293823242188,10.718187,10718.187 +1743,2025-03-07T05:11:06.295820-08:00,1008.8948364257812,10.717811,10717.811 +1744,2025-03-07T05:11:17.019784-08:00,1008.9359130859375,10.723964,10723.964 +1745,2025-03-07T05:11:27.736850-08:00,1008.9609375,10.717066,10717.066 +1746,2025-03-07T05:11:38.451822-08:00,1008.9396362304688,10.714972,10714.972 +1747,2025-03-07T05:11:49.176044-08:00,1008.9246215820312,10.724222,10724.222 +1748,2025-03-07T05:11:59.891023-08:00,1008.9476318359375,10.714979,10714.979 +1749,2025-03-07T05:12:10.610004-08:00,1008.9755249023438,10.718981,10718.981 +1750,2025-03-07T05:12:21.335998-08:00,1008.9623413085938,10.725994,10725.994 +1751,2025-03-07T05:12:32.049003-08:00,1008.9462280273438,10.713005,10713.005 +1752,2025-03-07T05:12:42.768025-08:00,1008.9593505859375,10.719022,10719.022 +1753,2025-03-07T05:12:53.495987-08:00,1008.9411010742188,10.727962,10727.962 +1754,2025-03-07T05:13:04.217824-08:00,1008.9198608398438,10.721837,10721.837 +1755,2025-03-07T05:13:14.936268-08:00,1008.9396362304688,10.718444,10718.444 +1756,2025-03-07T05:13:25.662962-08:00,1008.9378051757812,10.726694,10726.694 +1757,2025-03-07T05:13:36.384994-08:00,1008.9593505859375,10.722032,10722.032 +1758,2025-03-07T05:13:47.104105-08:00,1008.9740600585938,10.719111,10719.111 +1759,2025-03-07T05:13:57.824021-08:00,1008.9593505859375,10.719916,10719.916 +1760,2025-03-07T05:14:08.551894-08:00,1008.9609375,10.727873,10727.873 +1761,2025-03-07T05:14:19.268023-08:00,1008.9528198242188,10.716129,10716.129 +1762,2025-03-07T05:14:29.985538-08:00,1008.9660034179688,10.717515,10717.515 +1763,2025-03-07T05:14:40.711023-08:00,1008.9740600585938,10.725485,10725.485 +1764,2025-03-07T05:14:51.430189-08:00,1008.9542846679688,10.719166,10719.166 +1765,2025-03-07T05:15:02.149102-08:00,1008.9576416015625,10.718913,10718.913 +1766,2025-03-07T05:15:12.864223-08:00,1008.9296875,10.715121,10715.121 +1767,2025-03-07T05:15:23.587823-08:00,1008.9872436523438,10.7236,10723.6 +1768,2025-03-07T05:15:34.309024-08:00,1008.9660034179688,10.721201,10721.201 +1769,2025-03-07T05:15:45.027038-08:00,1008.979248046875,10.718014,10718.014 +1770,2025-03-07T05:15:55.747009-08:00,1008.9806518554688,10.719971,10719.971 +1771,2025-03-07T05:16:06.472306-08:00,1008.9642333984375,10.725297,10725.297 +1772,2025-03-07T05:16:17.188839-08:00,1008.9857788085938,10.716533,10716.533 +1773,2025-03-07T05:16:27.908144-08:00,1008.9642333984375,10.719305,10719.305 +1774,2025-03-07T05:16:38.627016-08:00,1008.9923706054688,10.718872,10718.872 +1775,2025-03-07T05:16:49.351860-08:00,1009.01220703125,10.724844,10724.844 +1776,2025-03-07T05:17:00.069005-08:00,1008.9774169921875,10.717145,10717.145 +1777,2025-03-07T05:17:10.782903-08:00,1008.9891357421875,10.713898,10713.898 +1778,2025-03-07T05:17:21.505906-08:00,1008.97119140625,10.723003,10723.003 +1779,2025-03-07T05:17:32.231849-08:00,1008.99755859375,10.725943,10725.943 +1780,2025-03-07T05:17:42.953510-08:00,1008.9862670898438,10.721661,10721.661 +1781,2025-03-07T05:17:53.676002-08:00,1008.9601440429688,10.722492,10722.492 +1782,2025-03-07T05:18:04.391822-08:00,1008.966796875,10.71582,10715.82 +1783,2025-03-07T05:18:15.106900-08:00,1008.9620361328125,10.715078,10715.078 +1784,2025-03-07T05:18:25.821435-08:00,1008.9771118164062,10.714535,10714.535 +1785,2025-03-07T05:18:36.544811-08:00,1008.9671630859375,10.723376,10723.376 +1786,2025-03-07T05:18:47.267823-08:00,1008.9657592773438,10.723012,10723.012 +1787,2025-03-07T05:18:57.989912-08:00,1008.9757080078125,10.722089,10722.089 +1788,2025-03-07T05:19:08.709237-08:00,1008.9859619140625,10.719325,10719.325 +1789,2025-03-07T05:19:19.427250-08:00,1009.0145263671875,10.718013,10718.013 +1790,2025-03-07T05:19:30.150822-08:00,1008.98193359375,10.723572,10723.572 +1791,2025-03-07T05:19:40.870981-08:00,1009.0233764648438,10.720159,10720.159 +1792,2025-03-07T05:19:51.595825-08:00,1009.0270385742188,10.724844,10724.844 +1793,2025-03-07T05:20:02.312235-08:00,1009.032470703125,10.71641,10716.41 +1794,2025-03-07T05:20:13.033822-08:00,1009.021484375,10.721587,10721.587 +1795,2025-03-07T05:20:23.757942-08:00,1008.9788818359375,10.72412,10724.12 +1796,2025-03-07T05:20:34.483430-08:00,1008.9840698242188,10.725488,10725.488 +1797,2025-03-07T05:20:45.204020-08:00,1008.9910278320312,10.72059,10720.59 +1798,2025-03-07T05:20:55.930827-08:00,1009.02734375,10.726807,10726.807 +1799,2025-03-07T05:21:06.647995-08:00,1008.9782104492188,10.717168,10717.168 +1800,2025-03-07T05:21:17.373821-08:00,1008.9818725585938,10.725826,10725.826 +1801,2025-03-07T05:21:28.093875-08:00,1008.9953002929688,10.720054,10720.054 +1802,2025-03-07T05:21:38.809931-08:00,1008.9576416015625,10.716056,10716.056 +1803,2025-03-07T05:21:49.539117-08:00,1008.9707641601562,10.729186,10729.186 +1804,2025-03-07T05:22:00.258822-08:00,1009.0007934570312,10.719705,10719.705 +1805,2025-03-07T05:22:10.982161-08:00,1008.9810180664062,10.723339,10723.339 +1806,2025-03-07T05:22:21.706027-08:00,1008.9927368164062,10.723866,10723.866 +1807,2025-03-07T05:22:32.425031-08:00,1008.9945068359375,10.719004,10719.004 +1808,2025-03-07T05:22:43.155847-08:00,1008.9930419921875,10.730816,10730.816 +1809,2025-03-07T05:22:53.872010-08:00,1008.9681396484375,10.716163,10716.163 +1810,2025-03-07T05:23:04.592819-08:00,1008.98974609375,10.720809,10720.809 +1811,2025-03-07T05:23:15.321854-08:00,1008.98828125,10.729035,10729.035 +1812,2025-03-07T05:23:26.040825-08:00,1008.9667358398438,10.718971,10718.971 +1813,2025-03-07T05:23:36.755281-08:00,1008.9718017578125,10.714456,10714.456 +1814,2025-03-07T05:23:47.479823-08:00,1008.9900512695312,10.724542,10724.542 +1815,2025-03-07T05:23:58.197021-08:00,1008.9754638671875,10.717198,10717.198 +1816,2025-03-07T05:24:08.920899-08:00,1009.0017700195312,10.723878,10723.878 +1817,2025-03-07T05:24:19.641200-08:00,1009.0098266601562,10.720301,10720.301 +1818,2025-03-07T05:24:30.358891-08:00,1008.98681640625,10.717691,10717.691 +1819,2025-03-07T05:24:41.088860-08:00,1008.9984130859375,10.729969,10729.969 +1820,2025-03-07T05:24:51.805076-08:00,1009.0264282226562,10.716216,10716.216 +1821,2025-03-07T05:25:02.525005-08:00,1008.98681640625,10.719929,10719.929 +1822,2025-03-07T05:25:13.247825-08:00,1009.006591796875,10.72282,10722.82 +1823,2025-03-07T05:25:23.964762-08:00,1009.006591796875,10.716937,10716.937 +1824,2025-03-07T05:25:34.686823-08:00,1008.9918823242188,10.722061,10722.061 +1825,2025-03-07T05:25:45.401822-08:00,1009.0347900390625,10.714999,10714.999 +1826,2025-03-07T05:25:56.118852-08:00,1009.0,10.71703,10717.03 +1827,2025-03-07T05:26:06.843826-08:00,1009.0098266601562,10.724974,10724.974 +1828,2025-03-07T05:26:17.561072-08:00,1009.0164184570312,10.717246,10717.246 +1829,2025-03-07T05:26:28.288819-08:00,1009.0215454101562,10.727747,10727.747 +1830,2025-03-07T05:26:39.007823-08:00,1009.0326538085938,10.719004,10719.004 +1831,2025-03-07T05:26:49.729037-08:00,1009.0523681640625,10.721214,10721.214 +1832,2025-03-07T05:27:00.456821-08:00,1009.0310668945312,10.727784,10727.784 +1833,2025-03-07T05:27:11.179824-08:00,1009.009521484375,10.723003,10723.003 +1834,2025-03-07T05:27:21.898040-08:00,1009.049072265625,10.718216,10718.216 +1835,2025-03-07T05:27:32.627719-08:00,1009.0326538085938,10.729679,10729.679 +1836,2025-03-07T05:27:43.349854-08:00,1009.0293579101562,10.722135,10722.135 +1837,2025-03-07T05:27:54.060825-08:00,1009.0242309570312,10.710971,10710.971 +1838,2025-03-07T05:28:04.788822-08:00,1009.0326538085938,10.727997,10727.997 +1839,2025-03-07T05:28:15.508880-08:00,1009.0421752929688,10.720058,10720.058 +1840,2025-03-07T05:28:26.237109-08:00,1009.0443725585938,10.728229,10728.229 +1841,2025-03-07T05:28:36.961008-08:00,1009.0457763671875,10.723899,10723.899 +1842,2025-03-07T05:28:47.676825-08:00,1009.0868530273438,10.715817,10715.817 +1843,2025-03-07T05:28:58.397000-08:00,1009.063720703125,10.720175,10720.175 +1844,2025-03-07T05:29:09.114290-08:00,1009.0733032226562,10.71729,10717.29 +1845,2025-03-07T05:29:19.839045-08:00,1009.0619506835938,10.724755,10724.755 +1846,2025-03-07T05:29:30.563824-08:00,1009.0552978515625,10.724779,10724.779 +1847,2025-03-07T05:29:41.287100-08:00,1009.06494140625,10.723276,10723.276 +1848,2025-03-07T05:29:52.006882-08:00,1009.0253295898438,10.719782,10719.782 +1849,2025-03-07T05:30:02.734009-08:00,1009.0549926757812,10.727127,10727.127 +1850,2025-03-07T05:30:13.447887-08:00,1009.046630859375,10.713878,10713.878 +1851,2025-03-07T05:30:24.179046-08:00,1009.06640625,10.731159,10731.159 +1852,2025-03-07T05:30:34.894913-08:00,1009.072998046875,10.715867,10715.867 +1853,2025-03-07T05:30:45.622006-08:00,1009.0697021484375,10.727093,10727.093 +1854,2025-03-07T05:30:56.344022-08:00,1009.0843505859375,10.722016,10722.016 +1855,2025-03-07T05:31:07.062741-08:00,1009.0382080078125,10.718719,10718.719 +1856,2025-03-07T05:31:17.786374-08:00,1009.08251953125,10.723633,10723.633 +1857,2025-03-07T05:31:28.495825-08:00,1009.0811157226562,10.709451,10709.451 +1858,2025-03-07T05:31:39.217100-08:00,1009.08544921875,10.721275,10721.275 +1859,2025-03-07T05:31:49.940817-08:00,1009.0723266601562,10.723717,10723.717 +1860,2025-03-07T05:32:00.659009-08:00,1009.0756225585938,10.718192,10718.192 +1861,2025-03-07T05:32:11.377825-08:00,1009.0770874023438,10.718816,10718.816 +1862,2025-03-07T05:32:22.100848-08:00,1009.07373046875,10.723023,10723.023 +1863,2025-03-07T05:32:32.813020-08:00,1009.0671997070312,10.712172,10712.172 +1864,2025-03-07T05:32:43.538133-08:00,1009.0753173828125,10.725113,10725.113 +1865,2025-03-07T05:32:54.253020-08:00,1009.0851440429688,10.714887,10714.887 +1866,2025-03-07T05:33:04.969955-08:00,1009.0536499023438,10.716935,10716.935 +1867,2025-03-07T05:33:15.692019-08:00,1009.0488891601562,10.722064,10722.064 +1868,2025-03-07T05:33:26.412828-08:00,1009.0716552734375,10.720809,10720.809 +1869,2025-03-07T05:33:37.135823-08:00,1009.0599365234375,10.722995,10722.995 +1870,2025-03-07T05:33:47.851825-08:00,1009.08154296875,10.716002,10716.002 +1871,2025-03-07T05:33:58.575012-08:00,1009.04345703125,10.723187,10723.187 +1872,2025-03-07T05:34:09.302147-08:00,1009.064697265625,10.727135,10727.135 +1873,2025-03-07T05:34:20.012684-08:00,1009.0548706054688,10.710537,10710.537 +1874,2025-03-07T05:34:30.734821-08:00,1009.0496826171875,10.722137,10722.137 +1875,2025-03-07T05:34:41.458497-08:00,1009.07421875,10.723676,10723.676 +1876,2025-03-07T05:34:52.179032-08:00,1009.0709228515625,10.720535,10720.535 +1877,2025-03-07T05:35:02.893277-08:00,1009.0709228515625,10.714245,10714.245 +1878,2025-03-07T05:35:13.613009-08:00,1009.0889282226562,10.719732,10719.732 +1879,2025-03-07T05:35:24.334778-08:00,1009.0903930664062,10.721769,10721.769 +1880,2025-03-07T05:35:35.062257-08:00,1009.0574340820312,10.727479,10727.479 +1881,2025-03-07T05:35:45.778661-08:00,1009.0588989257812,10.716404,10716.404 +1882,2025-03-07T05:35:56.502856-08:00,1009.0702514648438,10.724195,10724.195 +1883,2025-03-07T05:36:07.214828-08:00,1009.0999145507812,10.711972,10711.972 +1884,2025-03-07T05:36:17.934039-08:00,1009.060302734375,10.719211,10719.211 +1885,2025-03-07T05:36:28.659851-08:00,1009.076904296875,10.725812,10725.812 +1886,2025-03-07T05:36:39.373529-08:00,1009.0717163085938,10.713678,10713.678 +1887,2025-03-07T05:36:50.094051-08:00,1009.0992431640625,10.720522,10720.522 +1888,2025-03-07T05:37:00.814991-08:00,1009.0728149414062,10.72094,10720.94 +1889,2025-03-07T05:37:11.529885-08:00,1009.0728149414062,10.714894,10714.894 +1890,2025-03-07T05:37:22.259521-08:00,1009.0610961914062,10.729636,10729.636 +1891,2025-03-07T05:37:32.971022-08:00,1009.0394287109375,10.711501,10711.501 +1892,2025-03-07T05:37:43.698957-08:00,1009.0145263671875,10.727935,10727.935 +1893,2025-03-07T05:37:54.422862-08:00,1009.017822265625,10.723905,10723.905 +1894,2025-03-07T05:38:05.137859-08:00,1009.0490112304688,10.714997,10714.997 +1895,2025-03-07T05:38:15.859825-08:00,1009.0175170898438,10.721966,10721.966 +1896,2025-03-07T05:38:26.573849-08:00,1009.015625,10.714024,10714.024 +1897,2025-03-07T05:38:37.300087-08:00,1009.0254516601562,10.726238,10726.238 +1898,2025-03-07T05:38:48.012820-08:00,1009.0482788085938,10.712733,10712.733 +1899,2025-03-07T05:38:58.741824-08:00,1009.0449829101562,10.729004,10729.004 +1900,2025-03-07T05:39:09.462852-08:00,1009.0548706054688,10.721028,10721.028 +1901,2025-03-07T05:39:20.182997-08:00,1009.052978515625,10.720145,10720.145 +1902,2025-03-07T05:39:30.900854-08:00,1009.0415649414062,10.717857,10717.857 +1903,2025-03-07T05:39:41.619821-08:00,1009.0577392578125,10.718967,10718.967 +1904,2025-03-07T05:39:52.341023-08:00,1009.1006469726562,10.721202,10721.202 +1905,2025-03-07T05:40:03.064571-08:00,1009.0804443359375,10.723548,10723.548 +1906,2025-03-07T05:40:13.776916-08:00,1009.082275390625,10.712345,10712.345 +1907,2025-03-07T05:40:24.498016-08:00,1009.0803833007812,10.7211,10721.1 +1908,2025-03-07T05:40:35.220031-08:00,1009.0965576171875,10.722015,10722.015 +1909,2025-03-07T05:40:45.937119-08:00,1009.0900268554688,10.717088,10717.088 +1910,2025-03-07T05:40:56.660825-08:00,1009.1129760742188,10.723706,10723.706 +1911,2025-03-07T05:41:07.378010-08:00,1009.10791015625,10.717185,10717.185 +1912,2025-03-07T05:41:18.100029-08:00,1009.0895385742188,10.722019,10722.019 +1913,2025-03-07T05:41:28.827109-08:00,1009.1126708984375,10.72708,10727.08 +1914,2025-03-07T05:41:39.548824-08:00,1009.1207885742188,10.721715,10721.715 +1915,2025-03-07T05:41:50.269115-08:00,1009.129150390625,10.720291,10720.291 +1916,2025-03-07T05:42:00.989647-08:00,1009.162109375,10.720532,10720.532 +1917,2025-03-07T05:42:11.713413-08:00,1009.1339111328125,10.723766,10723.766 +1918,2025-03-07T05:42:22.427868-08:00,1009.1272583007812,10.714455,10714.455 +1919,2025-03-07T05:42:33.147824-08:00,1009.1287231445312,10.719956,10719.956 +1920,2025-03-07T05:42:43.868016-08:00,1009.1434326171875,10.720192,10720.192 +1921,2025-03-07T05:42:54.593850-08:00,1009.1796875,10.725834,10725.834 +1922,2025-03-07T05:43:05.309823-08:00,1009.1320190429688,10.715973,10715.973 +1923,2025-03-07T05:43:16.031824-08:00,1009.1481323242188,10.722001,10722.001 +1924,2025-03-07T05:43:26.752007-08:00,1009.14013671875,10.720183,10720.183 +1925,2025-03-07T05:43:37.474818-08:00,1009.135009765625,10.722811,10722.811 +1926,2025-03-07T05:43:48.199832-08:00,1009.146728515625,10.725014,10725.014 +1927,2025-03-07T05:43:58.912821-08:00,1009.162841796875,10.712989,10712.989 +1928,2025-03-07T05:44:09.633996-08:00,1009.1777954101562,10.721175,10721.175 +1929,2025-03-07T05:44:20.350029-08:00,1009.1529541015625,10.716033,10716.033 +1930,2025-03-07T05:44:31.068908-08:00,1009.1610107421875,10.718879,10718.879 +1931,2025-03-07T05:44:41.793852-08:00,1009.1345825195312,10.724944,10724.944 +1932,2025-03-07T05:44:52.521007-08:00,1009.1708374023438,10.727155,10727.155 +1933,2025-03-07T05:45:03.239033-08:00,1009.1543579101562,10.718026,10718.026 +1934,2025-03-07T05:45:13.961941-08:00,1009.162841796875,10.722908,10722.908 +1935,2025-03-07T05:45:24.678869-08:00,1009.151123046875,10.716928,10716.928 +1936,2025-03-07T05:45:35.395888-08:00,1009.1495971679688,10.717019,10717.019 +1937,2025-03-07T05:45:46.124017-08:00,1009.1693725585938,10.728129,10728.129 +1938,2025-03-07T05:45:56.847995-08:00,1009.177490234375,10.723978,10723.978 +1939,2025-03-07T05:46:07.564824-08:00,1009.1429443359375,10.716829,10716.829 +1940,2025-03-07T05:46:18.292028-08:00,1009.1708374023438,10.727204,10727.204 +1941,2025-03-07T05:46:29.016031-08:00,1009.162841796875,10.724003,10724.003 +1942,2025-03-07T05:46:39.733193-08:00,1009.1642456054688,10.717162,10717.162 +1943,2025-03-07T05:46:50.465824-08:00,1009.162841796875,10.732631,10732.631 +1944,2025-03-07T05:47:01.193369-08:00,1009.165771484375,10.727545,10727.545 +1945,2025-03-07T05:47:11.910823-08:00,1009.1576538085938,10.717454,10717.454 +1946,2025-03-07T05:47:22.633824-08:00,1009.17236328125,10.723001,10723.001 +1947,2025-03-07T05:47:33.358323-08:00,1009.177490234375,10.724499,10724.499 +1948,2025-03-07T05:47:44.082999-08:00,1009.1788940429688,10.724676,10724.676 +1949,2025-03-07T05:47:54.809428-08:00,1009.176025390625,10.726429,10726.429 +1950,2025-03-07T05:48:05.534825-08:00,1009.15625,10.725397,10725.397 +1951,2025-03-07T05:48:16.256223-08:00,1009.1788940429688,10.721398,10721.398 +1952,2025-03-07T05:48:26.976980-08:00,1009.1939086914062,10.720757,10720.757 +1953,2025-03-07T05:48:37.698847-08:00,1009.2005615234375,10.721867,10721.867 +1954,2025-03-07T05:48:48.418824-08:00,1009.1708374023438,10.719977,10719.977 +1955,2025-03-07T05:48:59.142954-08:00,1009.2039184570312,10.72413,10724.13 +1956,2025-03-07T05:49:09.861848-08:00,1009.205322265625,10.718894,10718.894 +1957,2025-03-07T05:49:20.593000-08:00,1009.2072143554688,10.731152,10731.152 +1958,2025-03-07T05:49:31.315824-08:00,1009.197265625,10.722824,10722.824 +1959,2025-03-07T05:49:42.040827-08:00,1009.2251586914062,10.725003,10725.003 +1960,2025-03-07T05:49:52.771460-08:00,1009.2251586914062,10.730633,10730.633 +1961,2025-03-07T05:50:03.490049-08:00,1009.231689453125,10.718589,10718.589 +1962,2025-03-07T05:50:14.219473-08:00,1009.2236938476562,10.729424,10729.424 +1963,2025-03-07T05:50:24.939822-08:00,1009.2302856445312,10.720349,10720.349 +1964,2025-03-07T05:50:35.661372-08:00,1009.22216796875,10.72155,10721.55 +1965,2025-03-07T05:50:46.393405-08:00,1009.2485961914062,10.732033,10732.033 +1966,2025-03-07T05:50:57.114997-08:00,1009.2254638671875,10.721592,10721.592 +1967,2025-03-07T05:51:07.830980-08:00,1009.23876953125,10.715983,10715.983 +1968,2025-03-07T05:51:18.555976-08:00,1009.25048828125,10.724996,10724.996 +1969,2025-03-07T05:51:29.284896-08:00,1009.2485961914062,10.72892,10728.92 +1970,2025-03-07T05:51:40.011007-08:00,1009.2420043945312,10.726111,10726.111 +1971,2025-03-07T05:51:50.729824-08:00,1009.2485961914062,10.718817,10718.817 +1972,2025-03-07T05:52:01.452896-08:00,1009.2589111328125,10.723072,10723.072 +1973,2025-03-07T05:52:12.183352-08:00,1009.2619018554688,10.730456,10730.456 +1974,2025-03-07T05:52:22.825631-08:00,1009.2786865234375,10.642279,10642.279 +1975,2025-03-07T05:52:33.557054-08:00,1009.2640380859375,10.731423,10731.423 +1976,2025-03-07T05:52:44.277951-08:00,1009.268798828125,10.720897,10720.897 +1977,2025-03-07T05:52:55.003138-08:00,1009.265869140625,10.725187,10725.187 +1978,2025-03-07T05:53:16.451223-08:00,1009.2706298828125,21.448085,21448.085 +1979,2025-03-07T05:53:27.179948-08:00,1009.2725219726562,10.728725,10728.725 +1980,2025-03-07T05:53:37.903945-08:00,1009.2706298828125,10.723997,10723.997 +1981,2025-03-07T05:53:48.625968-08:00,1009.2692260742188,10.722023,10722.023 +1982,2025-03-07T05:53:59.352145-08:00,1009.2478637695312,10.726177,10726.177 +1983,2025-03-07T05:54:10.081905-08:00,1009.25927734375,10.72976,10729.76 +1984,2025-03-07T05:54:20.801940-08:00,1009.238037109375,10.720035,10720.035 +1985,2025-03-07T05:54:31.525108-08:00,1009.2431030273438,10.723168,10723.168 +1986,2025-03-07T05:54:42.254161-08:00,1009.2564086914062,10.729053,10729.053 +1987,2025-03-07T05:54:52.976136-08:00,1009.276123046875,10.721975,10721.975 +1988,2025-03-07T05:55:14.428153-08:00,1009.2318115234375,21.452017,21452.017 +1989,2025-03-07T05:55:25.146974-08:00,1009.236572265625,10.718821,10718.821 +1990,2025-03-07T05:55:35.874949-08:00,1009.2714233398438,10.727975,10727.975 +1991,2025-03-07T05:55:46.601129-08:00,1009.2828369140625,10.72618,10726.18 +1992,2025-03-07T05:55:57.319152-08:00,1009.274658203125,10.718023,10718.023 +1993,2025-03-07T05:56:08.045137-08:00,1009.2945556640625,10.725985,10725.985 +1994,2025-03-07T05:56:18.765947-08:00,1009.3142700195312,10.72081,10720.81 +1995,2025-03-07T05:56:29.490063-08:00,1009.3113403320312,10.724116,10724.116 +1996,2025-03-07T05:56:40.214941-08:00,1009.2831420898438,10.724878,10724.878 +1997,2025-03-07T05:56:50.940947-08:00,1009.3377075195312,10.726006,10726.006 +1998,2025-03-07T05:57:01.671038-08:00,1009.3193969726562,10.730091,10730.091 +1999,2025-03-07T05:57:12.398950-08:00,1009.301513671875,10.727912,10727.912 +2000,2025-03-07T05:57:23.128160-08:00,1009.3212280273438,10.72921,10729.21 +2001,2025-03-07T05:57:33.845116-08:00,1009.3047485351562,10.716956,10716.956 +2002,2025-03-07T05:57:44.566323-08:00,1009.3164672851562,10.721207,10721.207 +2003,2025-03-07T05:57:55.298942-08:00,1009.3479614257812,10.732619,10732.619 +2004,2025-03-07T05:58:06.018137-08:00,1009.352783203125,10.719195,10719.195 +2005,2025-03-07T05:58:16.738155-08:00,1009.3362426757812,10.720018,10720.018 +2006,2025-03-07T05:58:27.459960-08:00,1009.3560791015625,10.721805,10721.805 +2007,2025-03-07T05:58:38.189997-08:00,1009.313232421875,10.730037,10730.037 +2008,2025-03-07T05:58:48.910169-08:00,1009.3281860351562,10.720172,10720.172 +2009,2025-03-07T05:58:59.634142-08:00,1009.339599609375,10.723973,10723.973 +2010,2025-03-07T05:59:10.357944-08:00,1009.3462524414062,10.723802,10723.802 +2011,2025-03-07T05:59:21.080311-08:00,1009.3612670898438,10.722367,10722.367 +2012,2025-03-07T05:59:31.809941-08:00,1009.376220703125,10.72963,10729.63 +2013,2025-03-07T05:59:42.529131-08:00,1009.3480224609375,10.71919,10719.19 +2014,2025-03-07T05:59:53.258711-08:00,1009.3414306640625,10.72958,10729.58 +2015,2025-03-07T06:00:03.987195-08:00,1009.3677978515625,10.728484,10728.484 +2016,2025-03-07T06:00:14.704942-08:00,1009.3677978515625,10.717747,10717.747 +2017,2025-03-07T06:00:25.433245-08:00,1009.3465576171875,10.728303,10728.303 +2018,2025-03-07T06:00:36.155947-08:00,1009.3795166015625,10.722702,10722.702 +2019,2025-03-07T06:00:46.882970-08:00,1009.3612670898438,10.727023,10727.023 +2020,2025-03-07T06:00:57.614137-08:00,1009.3781127929688,10.731167,10731.167 +2021,2025-03-07T06:01:08.337011-08:00,1009.3696899414062,10.722874,10722.874 +2022,2025-03-07T06:01:19.059194-08:00,1009.3682250976562,10.722183,10722.183 +2023,2025-03-07T06:01:29.789970-08:00,1009.376220703125,10.730776,10730.776 +2024,2025-03-07T06:01:40.508947-08:00,1009.3828735351562,10.718977,10718.977 +2025,2025-03-07T06:01:51.233151-08:00,1009.392822265625,10.724204,10724.204 +2026,2025-03-07T06:02:01.957037-08:00,1009.392822265625,10.723886,10723.886 +2027,2025-03-07T06:02:12.677949-08:00,1009.376220703125,10.720912,10720.912 +2028,2025-03-07T06:02:23.400948-08:00,1009.404541015625,10.722999,10722.999 +2029,2025-03-07T06:02:34.126091-08:00,1009.4224853515625,10.725143,10725.143 +2030,2025-03-07T06:02:44.845136-08:00,1009.4059448242188,10.719045,10719.045 +2031,2025-03-07T06:02:55.560944-08:00,1009.4110717773438,10.715808,10715.808 +2032,2025-03-07T06:03:06.285975-08:00,1009.42431640625,10.725031,10725.031 +2033,2025-03-07T06:03:17.014722-08:00,1009.4407958984375,10.728747,10728.747 +2034,2025-03-07T06:03:27.734004-08:00,1009.4342041015625,10.719282,10719.282 +2035,2025-03-07T06:03:38.459810-08:00,1009.4276733398438,10.725806,10725.806 +2036,2025-03-07T06:03:49.180191-08:00,1009.4276733398438,10.720381,10720.381 +2037,2025-03-07T06:03:59.906119-08:00,1009.4489135742188,10.725928,10725.928 +2038,2025-03-07T06:04:10.635946-08:00,1009.4342041015625,10.729827,10729.827 +2039,2025-03-07T06:04:21.354656-08:00,1009.4489135742188,10.71871,10718.71 +2040,2025-03-07T06:04:32.085945-08:00,1009.4573364257812,10.731289,10731.289 +2041,2025-03-07T06:04:42.801079-08:00,1009.4243774414062,10.715134,10715.134 +2042,2025-03-07T06:04:53.523944-08:00,1009.4243774414062,10.722865,10722.865 +2043,2025-03-07T06:05:04.252133-08:00,1009.4393920898438,10.728189,10728.189 +2044,2025-03-07T06:05:14.975384-08:00,1009.4671630859375,10.723251,10723.251 +2045,2025-03-07T06:05:25.703946-08:00,1009.444091796875,10.728562,10728.562 +2046,2025-03-07T06:05:36.431109-08:00,1009.45068359375,10.727163,10727.163 +2047,2025-03-07T06:05:47.158942-08:00,1009.4639282226562,10.727833,10727.833 +2048,2025-03-07T06:05:57.883172-08:00,1009.429443359375,10.72423,10724.23 +2049,2025-03-07T06:06:08.613102-08:00,1009.4573364257812,10.72993,10729.93 +2050,2025-03-07T06:06:19.333945-08:00,1009.416259765625,10.720843,10720.843 +2051,2025-03-07T06:06:30.054050-08:00,1009.4639282226562,10.720105,10720.105 +2052,2025-03-07T06:06:40.786948-08:00,1009.4690551757812,10.732898,10732.898 +2053,2025-03-07T06:06:51.514401-08:00,1009.444091796875,10.727453,10727.453 +2054,2025-03-07T06:07:02.236943-08:00,1009.4756469726562,10.722542,10722.542 +2055,2025-03-07T06:07:12.958947-08:00,1009.4459228515625,10.722004,10722.004 +2056,2025-03-07T06:07:23.683945-08:00,1009.4888305664062,10.724998,10724.998 +2057,2025-03-07T06:07:34.413944-08:00,1009.4888305664062,10.729999,10729.999 +2058,2025-03-07T06:07:45.138115-08:00,1009.507080078125,10.724171,10724.171 +2059,2025-03-07T06:07:55.859943-08:00,1009.4788818359375,10.721828,10721.828 +2060,2025-03-07T06:08:06.580414-08:00,1009.4873657226562,10.720471,10720.471 +2061,2025-03-07T06:08:17.300945-08:00,1009.5119018554688,10.720531,10720.531 +2062,2025-03-07T06:08:28.027137-08:00,1009.4971923828125,10.726192,10726.192 +2063,2025-03-07T06:08:38.744946-08:00,1009.5053100585938,10.717809,10717.809 +2064,2025-03-07T06:08:49.470157-08:00,1009.5155639648438,10.725211,10725.211 +2065,2025-03-07T06:09:00.194968-08:00,1009.4826049804688,10.724811,10724.811 +2066,2025-03-07T06:09:10.908944-08:00,1009.5236206054688,10.713976,10713.976 +2067,2025-03-07T06:09:21.634184-08:00,1009.522216796875,10.72524,10725.24 +2068,2025-03-07T06:09:32.352239-08:00,1009.5236206054688,10.718055,10718.055 +2069,2025-03-07T06:09:43.069164-08:00,1009.5155639648438,10.716925,10716.925 +2070,2025-03-07T06:09:53.789944-08:00,1009.5184936523438,10.72078,10720.78 +2071,2025-03-07T06:10:04.514167-08:00,1009.5203247070312,10.724223,10724.223 +2072,2025-03-07T06:10:15.223945-08:00,1009.5499877929688,10.709778,10709.778 +2073,2025-03-07T06:10:25.946322-08:00,1009.5072021484375,10.722377,10722.377 +2074,2025-03-07T06:10:36.670972-08:00,1009.5499877929688,10.72465,10724.65 +2075,2025-03-07T06:10:47.385132-08:00,1009.5565795898438,10.71416,10714.16 +2076,2025-03-07T06:10:58.102974-08:00,1009.5485229492188,10.717842,10717.842 +2077,2025-03-07T06:11:08.825729-08:00,1009.5401611328125,10.722755,10722.755 +2078,2025-03-07T06:11:19.549945-08:00,1009.5254516601562,10.724216,10724.216 +2079,2025-03-07T06:11:30.265093-08:00,1009.5254516601562,10.715148,10715.148 +2080,2025-03-07T06:11:40.982867-08:00,1009.5452270507812,10.717774,10717.774 +2081,2025-03-07T06:11:51.714334-08:00,1009.5306396484375,10.731467,10731.467 +2082,2025-03-07T06:12:02.425160-08:00,1009.5239868164062,10.710826,10710.826 +2083,2025-03-07T06:12:13.146945-08:00,1009.5371704101562,10.721785,10721.785 +2084,2025-03-07T06:12:23.875951-08:00,1009.5701293945312,10.729006,10729.006 +2085,2025-03-07T06:12:34.596347-08:00,1009.53564453125,10.720396,10720.396 +2086,2025-03-07T06:12:45.315165-08:00,1009.5060424804688,10.718818,10718.818 +2087,2025-03-07T06:12:56.045692-08:00,1009.5554809570312,10.730527,10730.527 +2088,2025-03-07T06:13:06.767975-08:00,1009.5488891601562,10.722283,10722.283 +2089,2025-03-07T06:13:17.487577-08:00,1009.55029296875,10.719602,10719.602 +2090,2025-03-07T06:13:28.207940-08:00,1009.5470581054688,10.720363,10720.363 +2091,2025-03-07T06:13:38.927011-08:00,1009.542236328125,10.719071,10719.071 +2092,2025-03-07T06:13:49.643131-08:00,1009.5587768554688,10.71612,10716.12 +2093,2025-03-07T06:14:00.361002-08:00,1009.5374755859375,10.717871,10717.871 +2094,2025-03-07T06:14:11.087947-08:00,1009.59033203125,10.726945,10726.945 +2095,2025-03-07T06:14:21.802315-08:00,1009.565673828125,10.714368,10714.368 +2096,2025-03-07T06:14:32.526316-08:00,1009.5639038085938,10.724001,10724.001 +2097,2025-03-07T06:14:43.239733-08:00,1009.552490234375,10.713417,10713.417 +2098,2025-03-07T06:14:53.965158-08:00,1009.575927734375,10.725425,10725.425 +2099,2025-03-07T06:15:04.690148-08:00,1009.5675048828125,10.72499,10724.99 +2100,2025-03-07T06:15:15.405347-08:00,1009.55322265625,10.715199,10715.199 +2101,2025-03-07T06:15:26.126944-08:00,1009.5667114257812,10.721597,10721.597 +2102,2025-03-07T06:15:36.849297-08:00,1009.5700073242188,10.722353,10722.353 +2103,2025-03-07T06:15:47.577146-08:00,1009.5653076171875,10.727849,10727.849 +2104,2025-03-07T06:15:58.290521-08:00,1009.5589599609375,10.713375,10713.375 +2105,2025-03-07T06:16:09.012944-08:00,1009.53955078125,10.722423,10722.423 +2106,2025-03-07T06:16:19.733834-08:00,1009.5530395507812,10.72089,10720.89 +2107,2025-03-07T06:16:30.466975-08:00,1009.550048828125,10.733141,10733.141 +2108,2025-03-07T06:16:41.185324-08:00,1009.5554809570312,10.718349,10718.349 +2109,2025-03-07T06:16:51.902939-08:00,1009.5491943359375,10.717615,10717.615 +2110,2025-03-07T06:17:02.622827-08:00,1009.5527954101562,10.719888,10719.888 +2111,2025-03-07T06:17:13.349994-08:00,1009.5857543945312,10.727167,10727.167 +2112,2025-03-07T06:17:24.075078-08:00,1009.5633544921875,10.725084,10725.084 +2113,2025-03-07T06:17:34.793943-08:00,1009.5762329101562,10.718865,10718.865 +2114,2025-03-07T06:17:45.518092-08:00,1009.5765380859375,10.724149,10724.149 +2115,2025-03-07T06:17:56.233948-08:00,1009.5885009765625,10.715856,10715.856 +2116,2025-03-07T06:18:06.963291-08:00,1009.5984497070312,10.729343,10729.343 +2117,2025-03-07T06:18:17.675477-08:00,1009.58544921875,10.712186,10712.186 +2118,2025-03-07T06:18:28.394076-08:00,1009.5723266601562,10.718599,10718.599 +2119,2025-03-07T06:18:39.119947-08:00,1009.5675048828125,10.725871,10725.871 +2120,2025-03-07T06:18:49.838208-08:00,1009.5678100585938,10.718261,10718.261 +2121,2025-03-07T06:19:00.552249-08:00,1009.5582885742188,10.714041,10714.041 +2122,2025-03-07T06:19:11.276985-08:00,1009.5731811523438,10.724736,10724.736 +2123,2025-03-07T06:19:21.991946-08:00,1009.5831298828125,10.714961,10714.961 +2124,2025-03-07T06:19:32.721081-08:00,1009.5684204101562,10.729135,10729.135 +2125,2025-03-07T06:19:43.438161-08:00,1009.5687255859375,10.71708,10717.08 +2126,2025-03-07T06:19:54.157976-08:00,1009.580078125,10.719815,10719.815 +2127,2025-03-07T06:20:04.882138-08:00,1009.59326171875,10.724162,10724.162 +2128,2025-03-07T06:20:15.600108-08:00,1009.5818481445312,10.71797,10717.97 +2129,2025-03-07T06:20:26.313130-08:00,1009.5935668945312,10.713022,10713.022 +2130,2025-03-07T06:20:37.037945-08:00,1009.565673828125,10.724815,10724.815 +2131,2025-03-07T06:20:47.752273-08:00,1009.5902099609375,10.714328,10714.328 +2132,2025-03-07T06:20:58.477946-08:00,1009.618408203125,10.725673,10725.673 +2133,2025-03-07T06:21:09.199341-08:00,1009.5722045898438,10.721395,10721.395 +2134,2025-03-07T06:21:19.917100-08:00,1009.5675048828125,10.717759,10717.759 +2135,2025-03-07T06:21:30.642149-08:00,1009.587158203125,10.725049,10725.049 +2136,2025-03-07T06:21:41.359086-08:00,1009.5938110351562,10.716937,10716.937 +2137,2025-03-07T06:21:52.078041-08:00,1009.6151733398438,10.718955,10718.955 +2138,2025-03-07T06:22:02.801944-08:00,1009.5822143554688,10.723903,10723.903 +2139,2025-03-07T06:22:13.520945-08:00,1009.6018676757812,10.719001,10719.001 +2140,2025-03-07T06:22:24.237016-08:00,1009.5839233398438,10.716071,10716.071 +2141,2025-03-07T06:22:34.959184-08:00,1009.6034545898438,10.722168,10722.168 +2142,2025-03-07T06:22:45.678068-08:00,1009.6085205078125,10.718884,10718.884 +2143,2025-03-07T06:22:56.404944-08:00,1009.6165771484375,10.726876,10726.876 +2144,2025-03-07T06:23:07.119157-08:00,1009.6099853515625,10.714213,10714.213 +2145,2025-03-07T06:23:17.845150-08:00,1009.6034545898438,10.725993,10725.993 +2146,2025-03-07T06:23:28.556830-08:00,1009.618408203125,10.71168,10711.68 +2147,2025-03-07T06:23:39.276943-08:00,1009.605224609375,10.720113,10720.113 +2148,2025-03-07T06:23:49.999827-08:00,1009.6199340820312,10.722884,10722.884 +2149,2025-03-07T06:24:00.721341-08:00,1009.61328125,10.721514,10721.514 +2150,2025-03-07T06:24:11.434943-08:00,1009.6378784179688,10.713602,10713.602 +2151,2025-03-07T06:24:22.148136-08:00,1009.6181030273438,10.713193,10713.193 +2152,2025-03-07T06:24:32.874943-08:00,1009.639404296875,10.726807,10726.807 +2153,2025-03-07T06:24:43.588114-08:00,1009.6492919921875,10.713171,10713.171 +2154,2025-03-07T06:24:54.315154-08:00,1009.6310424804688,10.72704,10727.04 +2155,2025-03-07T06:25:05.037947-08:00,1009.6229858398438,10.722793,10722.793 +2156,2025-03-07T06:25:15.760077-08:00,1009.6654663085938,10.72213,10722.13 +2157,2025-03-07T06:25:26.476125-08:00,1009.6475219726562,10.716048,10716.048 +2158,2025-03-07T06:25:37.203941-08:00,1009.6475219726562,10.727816,10727.816 +2159,2025-03-07T06:25:47.924956-08:00,1009.6768798828125,10.721015,10721.015 +2160,2025-03-07T06:25:58.644972-08:00,1009.68017578125,10.720016,10720.016 +2161,2025-03-07T06:26:09.372549-08:00,1009.660400390625,10.727577,10727.577 +2162,2025-03-07T06:26:20.093084-08:00,1009.6849975585938,10.720535,10720.535 +2163,2025-03-07T06:26:30.818947-08:00,1009.6768798828125,10.725863,10725.863 +2164,2025-03-07T06:26:41.549101-08:00,1009.6882934570312,10.730154,10730.154 +2165,2025-03-07T06:26:52.267021-08:00,1009.7095336914062,10.71792,10717.92 +2166,2025-03-07T06:27:02.993530-08:00,1009.71435546875,10.726509,10726.509 +2167,2025-03-07T06:27:13.705943-08:00,1009.735595703125,10.712413,10712.413 +2168,2025-03-07T06:27:24.433451-08:00,1009.748779296875,10.727508,10727.508 +2169,2025-03-07T06:27:35.155006-08:00,1009.7454833984375,10.721555,10721.555 +2170,2025-03-07T06:27:45.877727-08:00,1009.7257690429688,10.722721,10722.721 +2171,2025-03-07T06:27:56.601083-08:00,1009.7418823242188,10.723356,10723.356 +2172,2025-03-07T06:28:07.326125-08:00,1009.7371826171875,10.725042,10725.042 +2173,2025-03-07T06:28:18.042966-08:00,1009.7532958984375,10.716841,10716.841 +2174,2025-03-07T06:28:28.773050-08:00,1009.74853515625,10.730084,10730.084 +2175,2025-03-07T06:28:39.499943-08:00,1009.7599487304688,10.726893,10726.893 +2176,2025-03-07T06:28:50.217816-08:00,1009.7665405273438,10.717873,10717.873 +2177,2025-03-07T06:29:00.938975-08:00,1009.76953125,10.721159,10721.159 +2178,2025-03-07T06:29:11.656126-08:00,1009.751220703125,10.717151,10717.151 +2179,2025-03-07T06:29:22.379940-08:00,1009.764404296875,10.723814,10723.814 +2180,2025-03-07T06:29:33.107248-08:00,1009.7757568359375,10.727308,10727.308 +2181,2025-03-07T06:29:43.819943-08:00,1009.7560424804688,10.712695,10712.695 +2182,2025-03-07T06:29:54.542751-08:00,1009.7806396484375,10.722808,10722.808 +2183,2025-03-07T06:30:05.260269-08:00,1009.7542114257812,10.717518,10717.518 +2184,2025-03-07T06:30:15.985706-08:00,1009.7776489257812,10.725437,10725.437 +2185,2025-03-07T06:30:26.704141-08:00,1009.7431030273438,10.718435,10718.435 +2186,2025-03-07T06:30:37.433134-08:00,1009.7941284179688,10.728993,10728.993 +2187,2025-03-07T06:30:48.158943-08:00,1009.77734375,10.725809,10725.809 +2188,2025-03-07T06:30:58.876124-08:00,1009.785400390625,10.717181,10717.181 +2189,2025-03-07T06:31:09.593878-08:00,1009.811767578125,10.717754,10717.754 +2190,2025-03-07T06:31:20.322177-08:00,1009.8099975585938,10.728299,10728.299 +2191,2025-03-07T06:31:31.046943-08:00,1009.80517578125,10.724766,10724.766 +2192,2025-03-07T06:31:41.775942-08:00,1009.8132934570312,10.728999,10728.999 +2193,2025-03-07T06:31:52.501978-08:00,1009.8214111328125,10.726036,10726.036 +2194,2025-03-07T06:32:03.227948-08:00,1009.8312377929688,10.72597,10725.97 +2195,2025-03-07T06:32:13.948896-08:00,1009.818115234375,10.720948,10720.948 +2196,2025-03-07T06:32:24.678123-08:00,1009.8361206054688,10.729227,10729.227 +2197,2025-03-07T06:32:35.398117-08:00,1009.8228759765625,10.719994,10719.994 +2198,2025-03-07T06:32:46.116981-08:00,1009.8178100585938,10.718864,10718.864 +2199,2025-03-07T06:32:56.845129-08:00,1009.8474731445312,10.728148,10728.148 +2200,2025-03-07T06:33:07.574559-08:00,1009.8423461914062,10.72943,10729.43 +2201,2025-03-07T06:33:18.289202-08:00,1009.87353515625,10.714643,10714.643 +2202,2025-03-07T06:33:29.016240-08:00,1009.855224609375,10.727038,10727.038 +2203,2025-03-07T06:33:39.742171-08:00,1009.8306274414062,10.725931,10725.931 +2204,2025-03-07T06:33:50.465142-08:00,1009.8485717773438,10.722971,10722.971 +2205,2025-03-07T06:34:01.184417-08:00,1009.8468627929688,10.719275,10719.275 +2206,2025-03-07T06:34:11.914300-08:00,1009.82861328125,10.729883,10729.883 +2207,2025-03-07T06:34:22.637971-08:00,1009.8414306640625,10.723671,10723.671 +2208,2025-03-07T06:34:33.368904-08:00,1009.8495483398438,10.730933,10730.933 +2209,2025-03-07T06:34:44.088946-08:00,1009.84765625,10.720042,10720.042 +2210,2025-03-07T06:34:54.809111-08:00,1009.8773193359375,10.720165,10720.165 +2211,2025-03-07T06:35:05.540182-08:00,1009.8704833984375,10.731071,10731.071 +2212,2025-03-07T06:35:16.265130-08:00,1009.8803100585938,10.724948,10724.948 +2213,2025-03-07T06:35:26.990942-08:00,1009.8701782226562,10.725812,10725.812 +2214,2025-03-07T06:35:37.719945-08:00,1009.8635864257812,10.729003,10729.003 +2215,2025-03-07T06:35:48.447132-08:00,1009.90966796875,10.727187,10727.187 +2216,2025-03-07T06:35:59.175175-08:00,1009.8995361328125,10.728043,10728.043 +2217,2025-03-07T06:36:09.889322-08:00,1009.871337890625,10.714147,10714.147 +2218,2025-03-07T06:36:20.615181-08:00,1009.8826293945312,10.725859,10725.859 +2219,2025-03-07T06:36:31.347946-08:00,1009.938720703125,10.732765,10732.765 +2220,2025-03-07T06:36:42.064252-08:00,1009.9204711914062,10.716306,10716.306 +2221,2025-03-07T06:36:52.790973-08:00,1009.9219360351562,10.726721,10726.721 +2222,2025-03-07T06:37:03.517229-08:00,1009.89892578125,10.726256,10726.256 +2223,2025-03-07T06:37:14.229126-08:00,1009.9417114257812,10.711897,10711.897 +2224,2025-03-07T06:37:24.953151-08:00,1009.9447021484375,10.724025,10724.025 +2225,2025-03-07T06:37:35.675132-08:00,1009.9003295898438,10.721981,10721.981 +2226,2025-03-07T06:37:46.400016-08:00,1009.9149780273438,10.724884,10724.884 +2227,2025-03-07T06:37:57.129977-08:00,1009.9098510742188,10.729961,10729.961 +2228,2025-03-07T06:38:07.849484-08:00,1009.9263916015625,10.719507,10719.507 +2229,2025-03-07T06:38:18.572947-08:00,1009.9198608398438,10.723463,10723.463 +2230,2025-03-07T06:38:29.289226-08:00,1009.9359130859375,10.716279,10716.279 +2231,2025-03-07T06:38:40.014939-08:00,1009.91796875,10.725713,10725.713 +2232,2025-03-07T06:38:50.739130-08:00,1009.9473266601562,10.724191,10724.191 +2233,2025-03-07T06:39:01.458944-08:00,1009.9326782226562,10.719814,10719.814 +2234,2025-03-07T06:39:12.182338-08:00,1009.9209594726562,10.723394,10723.394 +2235,2025-03-07T06:39:22.902943-08:00,1009.944091796875,10.720605,10720.605 +2236,2025-03-07T06:39:33.626156-08:00,1009.9095458984375,10.723213,10723.213 +2237,2025-03-07T06:39:44.345948-08:00,1009.9454956054688,10.719792,10719.792 +2238,2025-03-07T06:39:55.074107-08:00,1009.9473266601562,10.728159,10728.159 +2239,2025-03-07T06:40:05.789093-08:00,1009.9356079101562,10.714986,10714.986 +2240,2025-03-07T06:40:16.519105-08:00,1009.9143676757812,10.730012,10730.012 +2241,2025-03-07T06:40:27.232985-08:00,1009.9290771484375,10.71388,10713.88 +2242,2025-03-07T06:40:37.957138-08:00,1009.9290771484375,10.724153,10724.153 +2243,2025-03-07T06:40:48.680946-08:00,1009.9520874023438,10.723808,10723.808 +2244,2025-03-07T06:40:59.405132-08:00,1009.9238891601562,10.724186,10724.186 +2245,2025-03-07T06:41:10.120190-08:00,1009.9304809570312,10.715058,10715.058 +2246,2025-03-07T06:41:20.851474-08:00,1009.9503173828125,10.731284,10731.284 +2247,2025-03-07T06:41:31.570944-08:00,1009.958740234375,10.71947,10719.47 +2248,2025-03-07T06:41:42.294101-08:00,1009.97998046875,10.723157,10723.157 +2249,2025-03-07T06:41:53.011155-08:00,1009.97998046875,10.717054,10717.054 +2250,2025-03-07T06:42:03.732154-08:00,1009.973388671875,10.720999,10720.999 +2251,2025-03-07T06:42:14.456942-08:00,1009.9751586914062,10.724788,10724.788 +2252,2025-03-07T06:42:25.181314-08:00,1009.9883422851562,10.724372,10724.372 +2253,2025-03-07T06:42:35.892155-08:00,1010.0294799804688,10.710841,10710.841 +2254,2025-03-07T06:42:46.624828-08:00,1009.986572265625,10.732673,10732.673 +2255,2025-03-07T06:42:57.338949-08:00,1009.99169921875,10.714121,10714.121 +2256,2025-03-07T06:43:08.058738-08:00,1009.9963989257812,10.719789,10719.789 +2257,2025-03-07T06:43:18.786707-08:00,1010.012939453125,10.727969,10727.969 +2258,2025-03-07T06:43:29.503251-08:00,1010.0081176757812,10.716544,10716.544 +2259,2025-03-07T06:43:40.228945-08:00,1009.999755859375,10.725694,10725.694 +2260,2025-03-07T06:43:50.951335-08:00,1010.011474609375,10.72239,10722.39 +2261,2025-03-07T06:44:01.676947-08:00,1010.0181274414062,10.725612,10725.612 +2262,2025-03-07T06:44:12.404149-08:00,1009.99169921875,10.727202,10727.202 +2263,2025-03-07T06:44:23.130157-08:00,1010.0031127929688,10.726008,10726.008 +2264,2025-03-07T06:44:33.846943-08:00,1009.986572265625,10.716786,10716.786 +2265,2025-03-07T06:44:44.574149-08:00,1009.9634399414062,10.727206,10727.206 +2266,2025-03-07T06:44:55.304572-08:00,1009.998291015625,10.730423,10730.423 +2267,2025-03-07T06:45:16.749055-08:00,1010.03271484375,21.444483,21444.483 +2268,2025-03-07T06:45:27.472132-08:00,1009.9964599609375,10.723077,10723.077 +2269,2025-03-07T06:45:38.198154-08:00,1010.012939453125,10.726022,10726.022 +2270,2025-03-07T06:45:48.927134-08:00,1010.0048217773438,10.72898,10728.98 +2271,2025-03-07T06:45:59.641943-08:00,1010.0097045898438,10.714809,10714.809 +2272,2025-03-07T06:46:10.373164-08:00,1010.024658203125,10.731221,10731.221 +2273,2025-03-07T06:46:21.087941-08:00,1010.0001831054688,10.714777,10714.777 +2274,2025-03-07T06:46:31.817160-08:00,1010.0214233398438,10.729219,10729.219 +2275,2025-03-07T06:46:42.536715-08:00,1010.0214233398438,10.719555,10719.555 +2276,2025-03-07T06:46:53.265718-08:00,1010.0133056640625,10.729003,10729.003 +2277,2025-03-07T06:47:03.987970-08:00,1009.998291015625,10.722252,10722.252 +2278,2025-03-07T06:47:14.708107-08:00,1010.0181274414062,10.720137,10720.137 +2279,2025-03-07T06:47:25.440323-08:00,1009.996826171875,10.732216,10732.216 +2280,2025-03-07T06:47:36.161944-08:00,1010.00341796875,10.721621,10721.621 +2281,2025-03-07T06:47:46.890948-08:00,1010.0264892578125,10.729004,10729.004 +2282,2025-03-07T06:47:57.610424-08:00,1010.0331420898438,10.719476,10719.476 +2283,2025-03-07T06:48:08.339285-08:00,1010.0184326171875,10.728861,10728.861 +2284,2025-03-07T06:48:19.071115-08:00,1010.0250244140625,10.73183,10731.83 +2285,2025-03-07T06:48:29.788159-08:00,1010.0234985351562,10.717044,10717.044 +2286,2025-03-07T06:48:40.513455-08:00,1010.0499267578125,10.725296,10725.296 +2287,2025-03-07T06:48:51.236945-08:00,1010.0234985351562,10.72349,10723.49 +2288,2025-03-07T06:49:01.965722-08:00,1010.0250244140625,10.728777,10728.777 +2289,2025-03-07T06:49:12.689946-08:00,1010.0499267578125,10.724224,10724.224 +2290,2025-03-07T06:49:23.419945-08:00,1010.0778198242188,10.729999,10729.999 +2291,2025-03-07T06:49:34.147348-08:00,1010.0415649414062,10.727403,10727.403 +2292,2025-03-07T06:49:44.871081-08:00,1010.0136108398438,10.723733,10723.733 +2293,2025-03-07T06:49:55.593422-08:00,1010.0399780273438,10.722341,10722.341 +2294,2025-03-07T06:50:06.321157-08:00,1010.0516967773438,10.727735,10727.735 +2295,2025-03-07T06:50:17.045813-08:00,1010.0516967773438,10.724656,10724.656 +2296,2025-03-07T06:50:27.762946-08:00,1010.0385131835938,10.717133,10717.133 +2297,2025-03-07T06:50:38.492126-08:00,1010.0418701171875,10.72918,10729.18 +2298,2025-03-07T06:50:49.209188-08:00,1010.0700073242188,10.717062,10717.062 +2299,2025-03-07T06:50:59.933944-08:00,1010.0535888671875,10.724756,10724.756 +2300,2025-03-07T06:51:10.661946-08:00,1010.0718994140625,10.728002,10728.002 +2301,2025-03-07T06:51:21.384337-08:00,1010.0798950195312,10.722391,10722.391 +2302,2025-03-07T06:51:32.110969-08:00,1010.0865478515625,10.726632,10726.632 +2303,2025-03-07T06:51:42.835946-08:00,1010.1113891601562,10.724977,10724.977 +2304,2025-03-07T06:51:53.564321-08:00,1010.0916137695312,10.728375,10728.375 +2305,2025-03-07T06:52:04.285943-08:00,1010.1048583984375,10.721622,10721.622 +2306,2025-03-07T06:52:15.140900-08:00,1010.0882568359375,10.854957,10854.957 +2307,2025-03-07T06:52:25.868261-08:00,1010.0817260742188,10.727361,10727.361 +2308,2025-03-07T06:52:36.584970-08:00,1010.0934448242188,10.716709,10716.709 +2309,2025-03-07T06:52:47.302971-08:00,1010.0999755859375,10.718001,10718.001 +2310,2025-03-07T06:52:58.032237-08:00,1010.1113891601562,10.729266,10729.266 +2311,2025-03-07T06:53:08.752077-08:00,1010.1296997070312,10.71984,10719.84 +2312,2025-03-07T06:53:19.476186-08:00,1010.1018676757812,10.724109,10724.109 +2313,2025-03-07T06:53:30.201003-08:00,1010.1084594726562,10.724817,10724.817 +2314,2025-03-07T06:53:40.920163-08:00,1010.0999755859375,10.71916,10719.16 +2315,2025-03-07T06:53:51.644551-08:00,1010.11328125,10.724388,10724.388 +2316,2025-03-07T06:54:02.376975-08:00,1010.1036987304688,10.732424,10732.424 +2317,2025-03-07T06:54:13.100167-08:00,1010.1300048828125,10.723192,10723.192 +2318,2025-03-07T06:54:23.824980-08:00,1010.11328125,10.724813,10724.813 +2319,2025-03-07T06:54:34.546367-08:00,1010.1168823242188,10.721387,10721.387 +2320,2025-03-07T06:54:45.266043-08:00,1010.1348266601562,10.719676,10719.676 +2321,2025-03-07T06:54:55.991131-08:00,1010.1465454101562,10.725088,10725.088 +2322,2025-03-07T06:55:06.722277-08:00,1010.1135864257812,10.731146,10731.146 +2323,2025-03-07T06:55:17.450974-08:00,1010.1612548828125,10.728697,10728.697 +2324,2025-03-07T06:55:28.170128-08:00,1010.1318969726562,10.719154,10719.154 +2325,2025-03-07T06:55:38.893043-08:00,1010.1333618164062,10.722915,10722.915 +2326,2025-03-07T06:55:49.614414-08:00,1010.14501953125,10.721371,10721.371 +2327,2025-03-07T06:56:00.348030-08:00,1010.1978149414062,10.733616,10733.616 +2328,2025-03-07T06:56:11.068174-08:00,1010.18798828125,10.720144,10720.144 +2329,2025-03-07T06:56:21.786185-08:00,1010.1780395507812,10.718011,10718.011 +2330,2025-03-07T06:56:32.518055-08:00,1010.1746826171875,10.73187,10731.87 +2331,2025-03-07T06:56:43.236002-08:00,1010.1534423828125,10.717947,10717.947 +2332,2025-03-07T06:56:53.961163-08:00,1010.1468505859375,10.725161,10725.161 +2333,2025-03-07T06:57:04.687976-08:00,1010.1732788085938,10.726813,10726.813 +2334,2025-03-07T06:57:15.406978-08:00,1010.1995849609375,10.719002,10719.002 +2335,2025-03-07T06:57:26.133026-08:00,1010.1716918945312,10.726048,10726.048 +2336,2025-03-07T06:57:36.859216-08:00,1010.148681640625,10.72619,10726.19 +2337,2025-03-07T06:57:47.579109-08:00,1010.1553344726562,10.719893,10719.893 +2338,2025-03-07T06:57:58.308977-08:00,1010.1603393554688,10.729868,10729.868 +2339,2025-03-07T06:58:09.026844-08:00,1010.1882934570312,10.717867,10717.867 +2340,2025-03-07T06:58:19.756975-08:00,1010.1849365234375,10.730131,10730.131 +2341,2025-03-07T06:58:30.471866-08:00,1010.18017578125,10.714891,10714.891 +2342,2025-03-07T06:58:41.191978-08:00,1010.19482421875,10.720112,10720.112 +2343,2025-03-07T06:58:51.918153-08:00,1010.201416015625,10.726175,10726.175 +2344,2025-03-07T06:59:02.636977-08:00,1010.1915893554688,10.718824,10718.824 +2345,2025-03-07T06:59:13.364157-08:00,1010.1716918945312,10.72718,10727.18 +2346,2025-03-07T06:59:24.085183-08:00,1010.1716918945312,10.721026,10721.026 +2347,2025-03-07T06:59:34.798203-08:00,1010.1621704101562,10.71302,10713.02 +2348,2025-03-07T06:59:45.518009-08:00,1010.1819458007812,10.719806,10719.806 +2349,2025-03-07T06:59:56.245794-08:00,1010.1900024414062,10.727785,10727.785 +2350,2025-03-07T07:00:06.964051-08:00,1010.173583984375,10.718257,10718.257 +2351,2025-03-07T07:00:17.688907-08:00,1010.1951293945312,10.724856,10724.856 +2352,2025-03-07T07:00:28.412978-08:00,1010.23291015625,10.724071,10724.071 +2353,2025-03-07T07:00:39.137156-08:00,1010.20654296875,10.724178,10724.178 +2354,2025-03-07T07:00:49.850343-08:00,1010.1951293945312,10.713187,10713.187 +2355,2025-03-07T07:01:00.576441-08:00,1010.199951171875,10.726098,10726.098 +2356,2025-03-07T07:01:11.295974-08:00,1010.2215576171875,10.719533,10719.533 +2357,2025-03-07T07:01:22.023394-08:00,1010.2050170898438,10.72742,10727.42 +2358,2025-03-07T07:01:32.739106-08:00,1010.2017211914062,10.715712,10715.712 +2359,2025-03-07T07:01:43.470155-08:00,1010.2296142578125,10.731049,10731.049 +2360,2025-03-07T07:01:54.192977-08:00,1010.2262573242188,10.722822,10722.822 +2361,2025-03-07T07:02:04.915762-08:00,1010.2196655273438,10.722785,10722.785 +2362,2025-03-07T07:02:15.638975-08:00,1010.208251953125,10.723213,10723.213 +2363,2025-03-07T07:02:26.356154-08:00,1010.2346801757812,10.717179,10717.179 +2364,2025-03-07T07:02:37.081192-08:00,1010.2215576171875,10.725038,10725.038 +2365,2025-03-07T07:02:47.813157-08:00,1010.2262573242188,10.731965,10731.965 +2366,2025-03-07T07:02:58.535975-08:00,1010.2215576171875,10.722818,10722.818 +2367,2025-03-07T07:03:09.255009-08:00,1010.2262573242188,10.719034,10719.034 +2368,2025-03-07T07:03:19.976971-08:00,1010.2182006835938,10.721962,10721.962 +2369,2025-03-07T07:03:30.708982-08:00,1010.239501953125,10.732011,10732.011 +2370,2025-03-07T07:03:41.425004-08:00,1010.2262573242188,10.716022,10716.022 +2371,2025-03-07T07:03:52.153183-08:00,1010.2313842773438,10.728179,10728.179 +2372,2025-03-07T07:04:02.878165-08:00,1010.23291015625,10.724982,10724.982 +2373,2025-03-07T07:04:13.602977-08:00,1010.224853515625,10.724812,10724.812 +2374,2025-03-07T07:04:24.320184-08:00,1010.2232666015625,10.717207,10717.207 +2375,2025-03-07T07:04:35.047045-08:00,1010.2020263671875,10.726861,10726.861 +2376,2025-03-07T07:04:45.771978-08:00,1010.236572265625,10.724933,10724.933 +2377,2025-03-07T07:04:56.499323-08:00,1010.2431030273438,10.727345,10727.345 +2378,2025-03-07T07:05:07.218551-08:00,1010.264404296875,10.719228,10719.228 +2379,2025-03-07T07:05:17.943046-08:00,1010.2562255859375,10.724495,10724.495 +2380,2025-03-07T07:05:28.673977-08:00,1010.2431030273438,10.730931,10730.931 +2381,2025-03-07T07:05:39.393582-08:00,1010.26953125,10.719605,10719.605 +2382,2025-03-07T07:05:50.116001-08:00,1010.2496948242188,10.722419,10722.419 +2383,2025-03-07T07:06:00.842162-08:00,1010.2842407226562,10.726161,10726.161 +2384,2025-03-07T07:06:11.569185-08:00,1010.25,10.727023,10727.023 +2385,2025-03-07T07:06:22.293989-08:00,1010.2745971679688,10.724804,10724.804 +2386,2025-03-07T07:06:33.018000-08:00,1010.2679443359375,10.724011,10724.011 +2387,2025-03-07T07:06:43.741357-08:00,1010.2614135742188,10.723357,10723.357 +2388,2025-03-07T07:06:54.465974-08:00,1010.2778930664062,10.724617,10724.617 +2389,2025-03-07T07:07:05.194977-08:00,1010.2398681640625,10.729003,10729.003 +2390,2025-03-07T07:07:15.911174-08:00,1010.2515869140625,10.716197,10716.197 +2391,2025-03-07T07:07:26.640977-08:00,1010.256591796875,10.729803,10729.803 +2392,2025-03-07T07:07:37.361703-08:00,1010.2943725585938,10.720726,10720.726 +2393,2025-03-07T07:07:48.086131-08:00,1010.2845458984375,10.724428,10724.428 +2394,2025-03-07T07:07:58.807150-08:00,1010.3057861328125,10.721019,10721.019 +2395,2025-03-07T07:08:09.523978-08:00,1010.2859497070312,10.716828,10716.828 +2396,2025-03-07T07:08:20.256176-08:00,1010.28955078125,10.732198,10732.198 +2397,2025-03-07T07:08:30.977971-08:00,1010.30419921875,10.721795,10721.795 +2398,2025-03-07T07:08:41.698161-08:00,1010.3093872070312,10.72019,10720.19 +2399,2025-03-07T07:08:52.425978-08:00,1010.296142578125,10.727817,10727.817 +2400,2025-03-07T07:09:03.145110-08:00,1010.31591796875,10.719132,10719.132 +2401,2025-03-07T07:09:13.865970-08:00,1010.3108520507812,10.72086,10720.86 +2402,2025-03-07T07:09:13.987738-08:00,1010.3175048828125,0.121768,121.768 +2403,2025-03-07T07:09:24.590978-08:00,1010.2811889648438,10.60324,10603.24 +2404,2025-03-07T07:09:35.309999-08:00,1010.3093872070312,10.719021,10719.021 +2405,2025-03-07T07:09:46.040198-08:00,1010.3225708007812,10.730199,10730.199 +2406,2025-03-07T07:09:56.760225-08:00,1010.3240356445312,10.720027,10720.027 +2407,2025-03-07T07:10:07.479977-08:00,1010.2781982421875,10.719752,10719.752 +2408,2025-03-07T07:10:18.195182-08:00,1010.3175048828125,10.715205,10715.205 +2409,2025-03-07T07:10:28.914191-08:00,1010.31591796875,10.719009,10719.009 +2410,2025-03-07T07:10:39.633137-08:00,1010.3175048828125,10.718946,10718.946 +2411,2025-03-07T07:10:50.366707-08:00,1010.3273315429688,10.73357,10733.57 +2412,2025-03-07T07:11:01.080974-08:00,1010.3309326171875,10.714267,10714.267 +2413,2025-03-07T07:11:11.802142-08:00,1010.3309326171875,10.721168,10721.168 +2414,2025-03-07T07:11:22.529977-08:00,1010.32763671875,10.727835,10727.835 +2415,2025-03-07T07:11:33.252400-08:00,1010.3045043945312,10.722423,10722.423 +2416,2025-03-07T07:11:43.974980-08:00,1010.3096923828125,10.72258,10722.58 +2417,2025-03-07T07:11:54.689078-08:00,1010.3345336914062,10.714098,10714.098 +2418,2025-03-07T07:12:05.418171-08:00,1010.3231201171875,10.729093,10729.093 +2419,2025-03-07T07:12:16.131163-08:00,1010.338134765625,10.712992,10712.992 +2420,2025-03-07T07:12:26.854025-08:00,1010.3252563476562,10.722862,10722.862 +2421,2025-03-07T07:12:37.580141-08:00,1010.3021850585938,10.726116,10726.116 +2422,2025-03-07T07:12:48.309186-08:00,1010.3713989257812,10.729045,10729.045 +2423,2025-03-07T07:12:59.028117-08:00,1010.3570556640625,10.718931,10718.931 +2424,2025-03-07T07:13:09.749973-08:00,1010.3836059570312,10.721856,10721.856 +2425,2025-03-07T07:13:20.480986-08:00,1010.3623657226562,10.731013,10731.013 +2426,2025-03-07T07:13:31.199179-08:00,1010.3629760742188,10.718193,10718.193 +2427,2025-03-07T07:13:41.917975-08:00,1010.3428344726562,10.718796,10718.796 +2428,2025-03-07T07:13:52.631735-08:00,1010.3496704101562,10.71376,10713.76 +2429,2025-03-07T07:14:03.353576-08:00,1010.4026489257812,10.721841,10721.841 +2430,2025-03-07T07:14:14.080132-08:00,1010.361572265625,10.726556,10726.556 +2431,2025-03-07T07:14:24.794159-08:00,1010.366943359375,10.714027,10714.027 +2432,2025-03-07T07:14:35.520045-08:00,1010.35400390625,10.725886,10725.886 +2433,2025-03-07T07:14:46.230977-08:00,1010.38720703125,10.710932,10710.932 +2434,2025-03-07T07:14:56.956970-08:00,1010.3757934570312,10.725993,10725.993 +2435,2025-03-07T07:15:07.684150-08:00,1010.3760986328125,10.72718,10727.18 +2436,2025-03-07T07:15:18.406010-08:00,1010.3565673828125,10.72186,10721.86 +2437,2025-03-07T07:15:29.129765-08:00,1010.4241943359375,10.723755,10723.755 +2438,2025-03-07T07:15:39.843048-08:00,1010.399658203125,10.713283,10713.283 +2439,2025-03-07T07:15:50.563218-08:00,1010.4226684570312,10.72017,10720.17 +2440,2025-03-07T07:16:01.286979-08:00,1010.3981323242188,10.723761,10723.761 +2441,2025-03-07T07:16:12.010203-08:00,1010.3998413085938,10.723224,10723.224 +2442,2025-03-07T07:16:22.727975-08:00,1010.4312744140625,10.717772,10717.772 +2443,2025-03-07T07:16:33.445029-08:00,1010.44775390625,10.717054,10717.054 +2444,2025-03-07T07:16:44.168120-08:00,1010.4315795898438,10.723091,10723.091 +2445,2025-03-07T07:16:54.893001-08:00,1010.4282836914062,10.724881,10724.881 +2446,2025-03-07T07:17:05.610977-08:00,1010.44140625,10.717976,10717.976 +2447,2025-03-07T07:17:16.329974-08:00,1010.4332885742188,10.718997,10718.997 +2448,2025-03-07T07:17:27.056402-08:00,1010.441650390625,10.726428,10726.428 +2449,2025-03-07T07:17:37.769178-08:00,1010.428466796875,10.712776,10712.776 +2450,2025-03-07T07:17:48.487169-08:00,1010.4317016601562,10.717991,10717.991 +2451,2025-03-07T07:17:59.218145-08:00,1010.448486328125,10.730976,10730.976 +2452,2025-03-07T07:18:09.936394-08:00,1010.4617309570312,10.718249,10718.249 +2453,2025-03-07T07:18:20.655976-08:00,1010.4617309570312,10.719582,10719.582 +2454,2025-03-07T07:18:31.375047-08:00,1010.474853515625,10.719071,10719.071 +2455,2025-03-07T07:18:42.102168-08:00,1010.4664306640625,10.727121,10727.121 +2456,2025-03-07T07:18:52.824380-08:00,1010.4649047851562,10.722212,10722.212 +2457,2025-03-07T07:19:03.537007-08:00,1010.4846801757812,10.712627,10712.627 +2458,2025-03-07T07:19:14.266080-08:00,1010.4862670898438,10.729073,10729.073 +2459,2025-03-07T07:19:24.976996-08:00,1010.5059204101562,10.710916,10710.916 +2460,2025-03-07T07:19:35.697748-08:00,1010.4781494140625,10.720752,10720.752 +2461,2025-03-07T07:19:46.420975-08:00,1010.4796142578125,10.723227,10723.227 +2462,2025-03-07T07:19:57.144278-08:00,1010.4927978515625,10.723303,10723.303 +2463,2025-03-07T07:20:07.862032-08:00,1010.4781494140625,10.717754,10717.754 +2464,2025-03-07T07:20:18.580979-08:00,1010.501220703125,10.718947,10718.947 +2465,2025-03-07T07:20:29.298220-08:00,1010.488037109375,10.717241,10717.241 +2466,2025-03-07T07:20:40.025169-08:00,1010.4976806640625,10.726949,10726.949 +2467,2025-03-07T07:20:50.737187-08:00,1010.50927734375,10.712018,10712.018 +2468,2025-03-07T07:21:01.458977-08:00,1010.4994506835938,10.72179,10721.79 +2469,2025-03-07T07:21:12.184190-08:00,1010.51416015625,10.725213,10725.213 +2470,2025-03-07T07:21:22.903050-08:00,1010.52880859375,10.71886,10718.86 +2471,2025-03-07T07:21:33.623167-08:00,1010.52880859375,10.720117,10720.117 +2472,2025-03-07T07:21:44.342978-08:00,1010.5109252929688,10.719811,10719.811 +2473,2025-03-07T07:21:55.057163-08:00,1010.5255737304688,10.714185,10714.185 +2474,2025-03-07T07:22:05.779194-08:00,1010.5370483398438,10.722031,10722.031 +2475,2025-03-07T07:22:16.503155-08:00,1010.5237426757812,10.723961,10723.961 +2476,2025-03-07T07:22:27.218976-08:00,1010.5318603515625,10.715821,10715.821 +2477,2025-03-07T07:22:37.943637-08:00,1010.5136108398438,10.724661,10724.661 +2478,2025-03-07T07:22:48.656167-08:00,1010.5236206054688,10.71253,10712.53 +2479,2025-03-07T07:22:59.379180-08:00,1010.507080078125,10.723013,10723.013 +2480,2025-03-07T07:23:10.096004-08:00,1010.5053100585938,10.716824,10716.824 +2481,2025-03-07T07:23:20.814975-08:00,1010.5217895507812,10.718971,10718.971 +2482,2025-03-07T07:23:31.541437-08:00,1010.53173828125,10.726462,10726.462 +2483,2025-03-07T07:23:42.252341-08:00,1010.5232543945312,10.710904,10710.904 +2484,2025-03-07T07:23:52.974368-08:00,1010.533203125,10.722027,10722.027 +2485,2025-03-07T07:24:03.692824-08:00,1010.5281372070312,10.718456,10718.456 +2486,2025-03-07T07:24:14.414665-08:00,1010.5362548828125,10.721841,10721.841 +2487,2025-03-07T07:24:25.135051-08:00,1010.53955078125,10.720386,10720.386 +2488,2025-03-07T07:24:35.856977-08:00,1010.5494384765625,10.721926,10721.926 +2489,2025-03-07T07:24:46.582152-08:00,1010.5231323242188,10.725175,10725.175 +2490,2025-03-07T07:24:57.300176-08:00,1010.5410766601562,10.718024,10718.024 +2491,2025-03-07T07:25:08.016626-08:00,1010.5426635742188,10.71645,10716.45 +2492,2025-03-07T07:25:18.737267-08:00,1010.5426635742188,10.720641,10720.641 +2493,2025-03-07T07:25:29.463252-08:00,1010.565673828125,10.725985,10725.985 +2494,2025-03-07T07:25:40.187379-08:00,1010.5064086914062,10.724127,10724.127 +2495,2025-03-07T07:25:50.904978-08:00,1010.5654907226562,10.717599,10717.599 +2496,2025-03-07T07:26:01.616977-08:00,1010.532470703125,10.711999,10711.999 +2497,2025-03-07T07:26:12.339833-08:00,1010.52734375,10.722856,10722.856 +2498,2025-03-07T07:26:23.067129-08:00,1010.50439453125,10.727296,10727.296 +2499,2025-03-07T07:26:33.778685-08:00,1010.50732421875,10.711556,10711.556 +2500,2025-03-07T07:26:44.503977-08:00,1010.556884765625,10.725292,10725.292 +2501,2025-03-07T07:26:55.225477-08:00,1010.53857421875,10.7215,10721.5 +2502,2025-03-07T07:27:05.951093-08:00,1010.5007934570312,10.725616,10725.616 +2503,2025-03-07T07:27:16.670062-08:00,1010.5518188476562,10.718969,10718.969 +2504,2025-03-07T07:27:27.396192-08:00,1010.5401611328125,10.72613,10726.13 +2505,2025-03-07T07:27:38.116899-08:00,1010.5466918945312,10.720707,10720.707 +2506,2025-03-07T07:27:48.834976-08:00,1010.53173828125,10.718077,10718.077 +2507,2025-03-07T07:27:59.551159-08:00,1010.5365600585938,10.716183,10716.183 +2508,2025-03-07T07:28:10.272976-08:00,1010.5413208007812,10.721817,10721.817 +2509,2025-03-07T07:28:20.993356-08:00,1010.5431518554688,10.72038,10720.38 +2510,2025-03-07T07:28:31.720975-08:00,1010.5578002929688,10.727619,10727.619 +2511,2025-03-07T07:28:42.440172-08:00,1010.5545043945312,10.719197,10719.197 +2512,2025-03-07T07:28:53.159977-08:00,1010.5626831054688,10.719805,10719.805 +2513,2025-03-07T07:29:03.882412-08:00,1010.5792236328125,10.722435,10722.435 +2514,2025-03-07T07:29:14.601976-08:00,1010.56591796875,10.719564,10719.564 +2515,2025-03-07T07:29:25.326146-08:00,1010.5887451171875,10.72417,10724.17 +2516,2025-03-07T07:29:36.043976-08:00,1010.583984375,10.71783,10717.83 +2517,2025-03-07T07:29:46.765647-08:00,1010.5789184570312,10.721671,10721.671 +2518,2025-03-07T07:29:57.488971-08:00,1010.6017456054688,10.723324,10723.324 +2519,2025-03-07T07:30:08.210166-08:00,1010.59033203125,10.721195,10721.195 +2520,2025-03-07T07:30:18.931147-08:00,1010.5885009765625,10.720981,10720.981 +2521,2025-03-07T07:30:29.654377-08:00,1010.6032104492188,10.72323,10723.23 +2522,2025-03-07T07:30:40.374056-08:00,1010.5870361328125,10.719679,10719.679 +2523,2025-03-07T07:30:51.091001-08:00,1010.6116943359375,10.716945,10716.945 +2524,2025-03-07T07:31:01.816979-08:00,1010.6065673828125,10.725978,10725.978 +2525,2025-03-07T07:31:12.544073-08:00,1010.6260986328125,10.727094,10727.094 +2526,2025-03-07T07:31:23.267447-08:00,1010.609619140625,10.723374,10723.374 +2527,2025-03-07T07:31:33.988111-08:00,1010.63232421875,10.720664,10720.664 +2528,2025-03-07T07:31:44.707976-08:00,1010.63720703125,10.719865,10719.865 +2529,2025-03-07T07:31:55.435042-08:00,1010.6192016601562,10.727066,10727.066 +2530,2025-03-07T07:32:06.154290-08:00,1010.635498046875,10.719248,10719.248 +2531,2025-03-07T07:32:16.881005-08:00,1010.6665649414062,10.726715,10726.715 +2532,2025-03-07T07:32:27.610998-08:00,1010.6351318359375,10.729993,10729.993 +2533,2025-03-07T07:32:38.333978-08:00,1010.6531372070312,10.72298,10722.98 +2534,2025-03-07T07:32:49.053974-08:00,1010.655029296875,10.719996,10719.996 +2535,2025-03-07T07:32:59.779007-08:00,1010.6597900390625,10.725033,10725.033 +2536,2025-03-07T07:33:10.510142-08:00,1010.6400146484375,10.731135,10731.135 +2537,2025-03-07T07:33:21.231978-08:00,1010.6807861328125,10.721836,10721.836 +2538,2025-03-07T07:33:31.963160-08:00,1010.6822509765625,10.731182,10731.182 +2539,2025-03-07T07:33:42.688089-08:00,1010.678955078125,10.724929,10724.929 +2540,2025-03-07T07:33:53.409050-08:00,1010.6709594726562,10.720961,10720.961 +2541,2025-03-07T07:34:04.132002-08:00,1010.6903686523438,10.722952,10722.952 +2542,2025-03-07T07:34:14.856024-08:00,1010.69189453125,10.724022,10724.022 +2543,2025-03-07T07:34:25.576203-08:00,1010.6900634765625,10.720179,10720.179 +2544,2025-03-07T07:34:36.304975-08:00,1010.705078125,10.728772,10728.772 +2545,2025-03-07T07:34:47.026817-08:00,1010.727783203125,10.721842,10721.842 +2546,2025-03-07T07:34:57.757011-08:00,1010.7212524414062,10.730194,10730.194 +2547,2025-03-07T07:35:08.483162-08:00,1010.690185546875,10.726151,10726.151 +2548,2025-03-07T07:35:19.204975-08:00,1010.7407836914062,10.721813,10721.813 +2549,2025-03-07T07:35:29.924996-08:00,1010.7078247070312,10.720021,10720.021 +2550,2025-03-07T07:35:40.655335-08:00,1010.7323608398438,10.730339,10730.339 +2551,2025-03-07T07:35:51.375202-08:00,1010.7059326171875,10.719867,10719.867 +2552,2025-03-07T07:36:02.103415-08:00,1010.7489013671875,10.728213,10728.213 +2553,2025-03-07T07:36:12.821978-08:00,1010.7224731445312,10.718563,10718.563 +2554,2025-03-07T07:36:23.549378-08:00,1010.7042236328125,10.7274,10727.4 +2555,2025-03-07T07:36:34.273223-08:00,1010.71923828125,10.723845,10723.845 +2556,2025-03-07T07:36:44.991257-08:00,1010.7257690429688,10.718034,10718.034 +2557,2025-03-07T07:36:55.718180-08:00,1010.7306518554688,10.726923,10726.923 +2558,2025-03-07T07:37:06.444154-08:00,1010.720703125,10.725974,10725.974 +2559,2025-03-07T07:37:17.166092-08:00,1010.7174072265625,10.721938,10721.938 +2560,2025-03-07T07:37:27.887157-08:00,1010.7254638671875,10.721065,10721.065 +2561,2025-03-07T07:37:38.604310-08:00,1010.72705078125,10.717153,10717.153 +2562,2025-03-07T07:37:49.336981-08:00,1010.72705078125,10.732671,10732.671 +2563,2025-03-07T07:38:00.053975-08:00,1010.7284545898438,10.716994,10716.994 +2564,2025-03-07T07:38:10.778180-08:00,1010.6991577148438,10.724205,10724.205 +2565,2025-03-07T07:38:21.509040-08:00,1010.72705078125,10.73086,10730.86 +2566,2025-03-07T07:38:32.227977-08:00,1010.67578125,10.718937,10718.937 +2567,2025-03-07T07:38:42.958663-08:00,1010.7020874023438,10.730686,10730.686 +2568,2025-03-07T07:38:53.676184-08:00,1010.7039184570312,10.717521,10717.521 +2569,2025-03-07T07:39:04.405143-08:00,1010.7020874023438,10.728959,10728.959 +2570,2025-03-07T07:39:15.127973-08:00,1010.67578125,10.72283,10722.83 +2571,2025-03-07T07:39:25.851156-08:00,1010.6973266601562,10.723183,10723.183 +2572,2025-03-07T07:39:36.568748-08:00,1010.67578125,10.717592,10717.592 +2573,2025-03-07T07:39:47.293149-08:00,1010.7039184570312,10.724401,10724.401 +2574,2025-03-07T07:39:58.019044-08:00,1010.6907958984375,10.725895,10725.895 +2575,2025-03-07T07:40:08.742337-08:00,1010.6856079101562,10.723293,10723.293 +2576,2025-03-07T07:40:19.471005-08:00,1010.6709594726562,10.728668,10728.668 +2577,2025-03-07T07:40:30.194286-08:00,1010.6889038085938,10.723281,10723.281 +2578,2025-03-07T07:40:40.920463-08:00,1010.6907958984375,10.726177,10726.177 +2579,2025-03-07T07:40:51.637006-08:00,1010.6907958984375,10.716543,10716.543 +2580,2025-03-07T07:41:02.371179-08:00,1010.6624755859375,10.734173,10734.173 +2581,2025-03-07T07:41:13.095178-08:00,1010.7054443359375,10.723999,10723.999 +2582,2025-03-07T07:41:23.810332-08:00,1010.6954956054688,10.715154,10715.154 +2583,2025-03-07T07:41:34.531978-08:00,1010.6954956054688,10.721646,10721.646 +2584,2025-03-07T07:41:45.259190-08:00,1010.7006225585938,10.727212,10727.212 +2585,2025-03-07T07:41:55.981395-08:00,1010.7072143554688,10.722205,10722.205 +2586,2025-03-07T07:42:06.696812-08:00,1010.7137451171875,10.715417,10715.417 +2587,2025-03-07T07:42:17.419978-08:00,1010.7335815429688,10.723166,10723.166 +2588,2025-03-07T07:42:28.142874-08:00,1010.748291015625,10.722896,10722.896 +2589,2025-03-07T07:42:38.866002-08:00,1010.7189331054688,10.723128,10723.128 +2590,2025-03-07T07:42:49.586418-08:00,1010.7174072265625,10.720416,10720.416 +2591,2025-03-07T07:43:00.310977-08:00,1010.7123413085938,10.724559,10724.559 +2592,2025-03-07T07:43:11.032392-08:00,1010.7107543945312,10.721415,10721.415 +2593,2025-03-07T07:43:21.758026-08:00,1010.7174072265625,10.725634,10725.634 +2594,2025-03-07T07:43:32.481775-08:00,1010.69580078125,10.723749,10723.749 +2595,2025-03-07T07:43:43.208974-08:00,1010.7485961914062,10.727199,10727.199 +2596,2025-03-07T07:43:53.924076-08:00,1010.755126953125,10.715102,10715.102 +2597,2025-03-07T07:44:04.648977-08:00,1010.7767944335938,10.724901,10724.901 +2598,2025-03-07T07:44:15.370641-08:00,1010.73388671875,10.721664,10721.664 +2599,2025-03-07T07:44:26.097974-08:00,1010.720703125,10.727333,10727.333 +2600,2025-03-07T07:44:36.819977-08:00,1010.740478515625,10.722003,10722.003 +2601,2025-03-07T07:44:47.545999-08:00,1010.71923828125,10.726022,10726.022 +2602,2025-03-07T07:44:58.268169-08:00,1010.732421875,10.72217,10722.17 +2603,2025-03-07T07:45:08.990972-08:00,1010.765380859375,10.722803,10722.803 +2604,2025-03-07T07:45:19.708981-08:00,1010.7587280273438,10.718009,10718.009 +2605,2025-03-07T07:45:30.431179-08:00,1010.7503662109375,10.722198,10722.198 +2606,2025-03-07T07:45:41.158003-08:00,1010.7489013671875,10.726824,10726.824 +2607,2025-03-07T07:45:51.882380-08:00,1010.7437744140625,10.724377,10724.377 +2608,2025-03-07T07:46:02.598118-08:00,1010.7422485351562,10.715738,10715.738 +2609,2025-03-07T07:46:13.326470-08:00,1010.7672119140625,10.728352,10728.352 +2610,2025-03-07T07:46:24.048974-08:00,1010.7587280273438,10.722504,10722.504 +2611,2025-03-07T07:46:34.773279-08:00,1010.747314453125,10.724305,10724.305 +2612,2025-03-07T07:46:45.493183-08:00,1010.78515625,10.719904,10719.904 +2613,2025-03-07T07:46:56.227978-08:00,1010.7902221679688,10.734795,10734.795 +2614,2025-03-07T07:47:06.947977-08:00,1010.8115844726562,10.719999,10719.999 +2615,2025-03-07T07:47:17.666520-08:00,1010.804931640625,10.718543,10718.543 +2616,2025-03-07T07:47:28.399047-08:00,1010.7887573242188,10.732527,10732.527 +2617,2025-03-07T07:47:39.119973-08:00,1010.7722778320312,10.720926,10720.926 +2618,2025-03-07T07:47:49.843073-08:00,1010.7803344726562,10.7231,10723.1 +2619,2025-03-07T07:48:00.567971-08:00,1010.7935180664062,10.724898,10724.898 +2620,2025-03-07T07:48:11.295159-08:00,1010.798583984375,10.727188,10727.188 +2621,2025-03-07T07:48:22.024026-08:00,1010.7890625,10.728867,10728.867 +2622,2025-03-07T07:48:32.744578-08:00,1010.7971801757812,10.720552,10720.552 +2623,2025-03-07T07:48:43.469043-08:00,1010.823486328125,10.724465,10724.465 +2624,2025-03-07T07:48:54.187159-08:00,1010.7938232421875,10.718116,10718.116 +2625,2025-03-07T07:49:04.905977-08:00,1010.8201293945312,10.718818,10718.818 +2626,2025-03-07T07:49:15.637977-08:00,1010.7923583984375,10.732,10732.0 +2627,2025-03-07T07:49:26.360976-08:00,1010.7988891601562,10.722999,10722.999 +2628,2025-03-07T07:49:37.080188-08:00,1010.790771484375,10.719212,10719.212 +2629,2025-03-07T07:49:47.807056-08:00,1010.8267822265625,10.726868,10726.868 +2630,2025-03-07T07:49:58.526023-08:00,1010.8384399414062,10.718967,10718.967 +2631,2025-03-07T07:50:09.253024-08:00,1010.822021484375,10.727001,10727.001 +2632,2025-03-07T07:50:19.978373-08:00,1010.82861328125,10.725349,10725.349 +2633,2025-03-07T07:50:30.694976-08:00,1010.8123168945312,10.716603,10716.603 +2634,2025-03-07T07:50:41.422978-08:00,1010.7926635742188,10.728002,10728.002 +2635,2025-03-07T07:50:52.145010-08:00,1010.7991943359375,10.722032,10722.032 +2636,2025-03-07T07:51:02.863972-08:00,1010.8256225585938,10.718962,10718.962 +2637,2025-03-07T07:51:13.584974-08:00,1010.8171997070312,10.721002,10721.002 +2638,2025-03-07T07:51:24.313179-08:00,1010.80908203125,10.728205,10728.205 +2639,2025-03-07T07:51:35.025017-08:00,1010.830322265625,10.711838,10711.838 +2640,2025-03-07T07:51:45.746509-08:00,1010.8156127929688,10.721492,10721.492 +2641,2025-03-07T07:51:56.475278-08:00,1010.840576171875,10.728769,10728.769 +2642,2025-03-07T07:52:07.193103-08:00,1010.840576171875,10.717825,10717.825 +2643,2025-03-07T07:52:17.945187-08:00,1010.833984375,10.752084,10752.084 +2644,2025-03-07T07:52:28.674091-08:00,1010.8273315429688,10.728904,10728.904 +2645,2025-03-07T07:52:39.393100-08:00,1010.8189086914062,10.719009,10719.009 +2646,2025-03-07T07:52:50.118172-08:00,1010.8255615234375,10.725072,10725.072 +2647,2025-03-07T07:53:00.844256-08:00,1010.8322143554688,10.726084,10726.084 +2648,2025-03-07T07:53:11.563082-08:00,1010.8322143554688,10.718826,10718.826 +2649,2025-03-07T07:53:22.294351-08:00,1010.8372802734375,10.731269,10731.269 +2650,2025-03-07T07:53:33.003083-08:00,1010.8322143554688,10.708732,10708.732 +2651,2025-03-07T07:53:43.728487-08:00,1010.81591796875,10.725404,10725.404 +2652,2025-03-07T07:53:54.444106-08:00,1010.8585205078125,10.715619,10715.619 +2653,2025-03-07T07:54:05.166187-08:00,1010.8453369140625,10.722081,10722.081 +2654,2025-03-07T07:54:15.889138-08:00,1010.8240356445312,10.722951,10722.951 +2655,2025-03-07T07:54:26.608311-08:00,1010.853759765625,10.719173,10719.173 +2656,2025-03-07T07:54:37.331081-08:00,1010.8372802734375,10.72277,10722.77 +2657,2025-03-07T07:54:48.052301-08:00,1010.866943359375,10.72122,10721.22 +2658,2025-03-07T07:54:58.776318-08:00,1010.8717041015625,10.724017,10724.017 +2659,2025-03-07T07:55:09.497322-08:00,1010.8438110351562,10.721004,10721.004 +2660,2025-03-07T07:55:20.215448-08:00,1010.8306274414062,10.718126,10718.126 +2661,2025-03-07T07:55:30.941156-08:00,1010.8519287109375,10.725708,10725.708 +2662,2025-03-07T07:55:41.664077-08:00,1010.840576171875,10.722921,10722.921 +2663,2025-03-07T07:55:52.378111-08:00,1010.83544921875,10.714034,10714.034 +2664,2025-03-07T07:56:03.103280-08:00,1010.8585205078125,10.725169,10725.169 +2665,2025-03-07T07:56:13.821083-08:00,1010.8519287109375,10.717803,10717.803 +2666,2025-03-07T07:56:24.546082-08:00,1010.853759765625,10.724999,10724.999 +2667,2025-03-07T07:56:35.262080-08:00,1010.8322143554688,10.715998,10715.998 +2668,2025-03-07T07:56:45.983306-08:00,1010.8306274414062,10.721226,10721.226 +2669,2025-03-07T07:56:56.710366-08:00,1010.8357543945312,10.72706,10727.06 +2670,2025-03-07T07:57:07.429151-08:00,1010.8108520507812,10.718785,10718.785 +2671,2025-03-07T07:57:18.151160-08:00,1010.8621826171875,10.722009,10722.009 +2672,2025-03-07T07:57:28.872284-08:00,1010.8570556640625,10.721124,10721.124 +2673,2025-03-07T07:57:39.593146-08:00,1010.8372802734375,10.720862,10720.862 +2674,2025-03-07T07:57:50.308285-08:00,1010.8372802734375,10.715139,10715.139 +2675,2025-03-07T07:58:01.022640-08:00,1010.8357543945312,10.714355,10714.355 +2676,2025-03-07T07:58:11.740157-08:00,1010.8621826171875,10.717517,10717.517 +2677,2025-03-07T07:58:22.459084-08:00,1010.8621826171875,10.718927,10718.927 +2678,2025-03-07T07:58:33.179076-08:00,1010.8504638671875,10.719992,10719.992 +2679,2025-03-07T07:58:43.897822-08:00,1010.8687744140625,10.718746,10718.746 +2680,2025-03-07T07:58:54.616080-08:00,1010.8818969726562,10.718258,10718.258 +2681,2025-03-07T07:59:05.338937-08:00,1010.8800659179688,10.722857,10722.857 +2682,2025-03-07T07:59:16.059134-08:00,1010.8818969726562,10.720197,10720.197 +2683,2025-03-07T07:59:26.777268-08:00,1010.8621826171875,10.718134,10718.134 +2684,2025-03-07T07:59:37.499083-08:00,1010.8521728515625,10.721815,10721.815 +2685,2025-03-07T07:59:48.223279-08:00,1010.8786010742188,10.724196,10724.196 +2686,2025-03-07T07:59:58.941082-08:00,1010.8884887695312,10.717803,10717.803 +2687,2025-03-07T08:00:09.665322-08:00,1010.87353515625,10.72424,10724.24 +2688,2025-03-07T08:00:20.379143-08:00,1010.8786010742188,10.713821,10713.821 +2689,2025-03-07T08:00:31.092130-08:00,1010.88671875,10.712987,10712.987 +2690,2025-03-07T08:00:41.815515-08:00,1010.8998413085938,10.723385,10723.385 +2691,2025-03-07T08:00:52.526077-08:00,1010.8771362304688,10.710562,10710.562 +2692,2025-03-07T08:01:03.255097-08:00,1010.9131469726562,10.72902,10729.02 +2693,2025-03-07T08:01:13.969117-08:00,1010.8984375,10.71402,10714.02 +2694,2025-03-07T08:01:24.691459-08:00,1010.939453125,10.722342,10722.342 +2695,2025-03-07T08:01:35.410158-08:00,1010.9247436523438,10.718699,10718.699 +2696,2025-03-07T08:01:46.124280-08:00,1010.9100952148438,10.714122,10714.122 +2697,2025-03-07T08:01:56.842265-08:00,1010.9215087890625,10.717985,10717.985 +2698,2025-03-07T08:02:07.559264-08:00,1010.9364013671875,10.716999,10716.999 +2699,2025-03-07T08:02:16.565935-08:00,1010.939453125,9.006671,9006.671 +2700,2025-03-07T08:02:18.278476-08:00,1010.939453125,1.712541,1712.541 +2701,2025-03-07T08:02:29.000080-08:00,1010.9445190429688,10.721604,10721.604 +2702,2025-03-07T08:02:39.722248-08:00,1010.9790649414062,10.722168,10722.168 +2703,2025-03-07T08:02:50.447660-08:00,1010.9676513671875,10.725412,10725.412 +2704,2025-03-07T08:03:01.159339-08:00,1010.9676513671875,10.711679,10711.679 +2705,2025-03-07T08:03:11.890189-08:00,1010.9954833984375,10.73085,10730.85 +2706,2025-03-07T08:03:22.607261-08:00,1011.0203857421875,10.717072,10717.072 +2707,2025-03-07T08:03:33.334080-08:00,1011.0138549804688,10.726819,10726.819 +2708,2025-03-07T08:03:44.052272-08:00,1011.0153198242188,10.718192,10718.192 +2709,2025-03-07T08:03:54.772151-08:00,1011.0101318359375,10.719879,10719.879 +2710,2025-03-07T08:04:05.485240-08:00,1011.0335693359375,10.713089,10713.089 +2711,2025-03-07T08:04:16.203326-08:00,1011.0203857421875,10.718086,10718.086 +2712,2025-03-07T08:04:26.925303-08:00,1011.056396484375,10.721977,10721.977 +2713,2025-03-07T08:04:37.645081-08:00,1011.0021362304688,10.719778,10719.778 +2714,2025-03-07T08:04:48.363111-08:00,1011.0365600585938,10.71803,10718.03 +2715,2025-03-07T08:04:59.088076-08:00,1011.0318603515625,10.724965,10724.965 +2716,2025-03-07T08:05:09.800520-08:00,1011.0662231445312,10.712444,10712.444 +2717,2025-03-07T08:05:20.524566-08:00,1011.043212890625,10.724046,10724.046 +2718,2025-03-07T08:05:31.241083-08:00,1011.0252075195312,10.716517,10716.517 +2719,2025-03-07T08:05:41.959762-08:00,1011.0449829101562,10.718679,10718.679 +2720,2025-03-07T08:05:52.682078-08:00,1011.0596923828125,10.722316,10722.316 +2721,2025-03-07T08:06:03.401539-08:00,1011.0399169921875,10.719461,10719.461 +2722,2025-03-07T08:06:14.125285-08:00,1011.0926513671875,10.723746,10723.746 +2723,2025-03-07T08:06:24.840167-08:00,1011.069580078125,10.714882,10714.882 +2724,2025-03-07T08:06:35.558108-08:00,1011.110595703125,10.717941,10717.941 +2725,2025-03-07T08:06:46.276080-08:00,1011.061279296875,10.717972,10717.972 +2726,2025-03-07T08:06:57.002452-08:00,1011.1239013671875,10.726372,10726.372 +2727,2025-03-07T08:07:07.724077-08:00,1011.0596923828125,10.721625,10721.625 +2728,2025-03-07T08:07:18.443058-08:00,1011.0926513671875,10.718981,10718.981 +2729,2025-03-07T08:07:29.168173-08:00,1011.110595703125,10.725115,10725.115 +2730,2025-03-07T08:07:39.883454-08:00,1011.1073608398438,10.715281,10715.281 +2731,2025-03-07T08:07:50.613081-08:00,1011.0978393554688,10.729627,10729.627 +2732,2025-03-07T08:08:01.330238-08:00,1011.1207885742188,10.717157,10717.157 +2733,2025-03-07T08:08:12.058315-08:00,1011.119384765625,10.728077,10728.077 +2734,2025-03-07T08:08:22.776092-08:00,1011.1325073242188,10.717777,10717.777 +2735,2025-03-07T08:08:33.502108-08:00,1011.152587890625,10.726016,10726.016 +2736,2025-03-07T08:08:44.222265-08:00,1011.1624755859375,10.720157,10720.157 +2737,2025-03-07T08:08:54.949077-08:00,1011.1741333007812,10.726812,10726.812 +2738,2025-03-07T08:09:05.671081-08:00,1011.1854858398438,10.722004,10722.004 +2739,2025-03-07T08:09:16.396667-08:00,1011.172607421875,10.725586,10725.586 +2740,2025-03-07T08:09:27.110453-08:00,1011.1695556640625,10.713786,10713.786 +2741,2025-03-07T08:09:37.841273-08:00,1011.1565551757812,10.73082,10730.82 +2742,2025-03-07T08:09:48.565183-08:00,1011.1766357421875,10.72391,10723.91 +2743,2025-03-07T08:09:59.283947-08:00,1011.161865234375,10.718764,10718.764 +2744,2025-03-07T08:10:10.009081-08:00,1011.167236328125,10.725134,10725.134 +2745,2025-03-07T08:10:20.732571-08:00,1011.1554565429688,10.72349,10723.49 +2746,2025-03-07T08:10:31.453255-08:00,1011.1490478515625,10.720684,10720.684 +2747,2025-03-07T08:10:42.176275-08:00,1011.1624755859375,10.72302,10723.02 +2748,2025-03-07T08:10:52.902155-08:00,1011.1759643554688,10.72588,10725.88 +2749,2025-03-07T08:11:03.617257-08:00,1011.1759643554688,10.715102,10715.102 +2750,2025-03-07T08:11:14.343373-08:00,1011.1599731445312,10.726116,10726.116 +2751,2025-03-07T08:11:25.072598-08:00,1011.16650390625,10.729225,10729.225 +2752,2025-03-07T08:11:35.794076-08:00,1011.1682739257812,10.721478,10721.478 +2753,2025-03-07T08:11:46.514413-08:00,1011.1702880859375,10.720337,10720.337 +2754,2025-03-07T08:11:57.239078-08:00,1011.19189453125,10.724665,10724.665 +2755,2025-03-07T08:12:07.962084-08:00,1011.1885375976562,10.723006,10723.006 +2756,2025-03-07T08:12:18.681083-08:00,1011.2034301757812,10.718999,10718.999 +2757,2025-03-07T08:12:29.412289-08:00,1011.1656494140625,10.731206,10731.206 +2758,2025-03-07T08:12:40.132585-08:00,1011.2036743164062,10.720296,10720.296 +2759,2025-03-07T08:12:50.859084-08:00,1011.1790771484375,10.726499,10726.499 +2760,2025-03-07T08:13:01.582267-08:00,1011.1988525390625,10.723183,10723.183 +2761,2025-03-07T08:13:12.303314-08:00,1011.2006225585938,10.721047,10721.047 +2762,2025-03-07T08:13:23.029251-08:00,1011.1925048828125,10.725937,10725.937 +2763,2025-03-07T08:13:33.754113-08:00,1011.2220458984375,10.724862,10724.862 +2764,2025-03-07T08:13:44.476448-08:00,1011.19580078125,10.722335,10722.335 +2765,2025-03-07T08:13:55.201157-08:00,1011.2206420898438,10.724709,10724.709 +2766,2025-03-07T08:14:05.926268-08:00,1011.2271728515625,10.725111,10725.111 +2767,2025-03-07T08:14:16.647321-08:00,1011.2271728515625,10.721053,10721.053 +2768,2025-03-07T08:14:27.371142-08:00,1011.238525390625,10.723821,10723.821 +2769,2025-03-07T08:14:38.086082-08:00,1011.225341796875,10.71494,10714.94 +2770,2025-03-07T08:14:48.811128-08:00,1011.251708984375,10.725046,10725.046 +2771,2025-03-07T08:14:59.535284-08:00,1011.225341796875,10.724156,10724.156 +2772,2025-03-07T08:15:10.255082-08:00,1011.238525390625,10.719798,10719.798 +2773,2025-03-07T08:15:20.979081-08:00,1011.238525390625,10.723999,10723.999 +2774,2025-03-07T08:15:31.703276-08:00,1011.2667236328125,10.724195,10724.195 +2775,2025-03-07T08:15:42.429080-08:00,1011.2828979492188,10.725804,10725.804 +2776,2025-03-07T08:15:53.154083-08:00,1011.2697143554688,10.725003,10725.003 +2777,2025-03-07T08:16:03.875962-08:00,1011.2763061523438,10.721879,10721.879 +2778,2025-03-07T08:16:14.598203-08:00,1011.2828979492188,10.722241,10722.241 +2779,2025-03-07T08:16:25.328281-08:00,1011.2781372070312,10.730078,10730.078 +2780,2025-03-07T08:16:36.043185-08:00,1011.2730712890625,10.714904,10714.904 +2781,2025-03-07T08:16:46.770461-08:00,1011.2927856445312,10.727276,10727.276 +2782,2025-03-07T08:16:57.494080-08:00,1011.2679443359375,10.723619,10723.619 +2783,2025-03-07T08:17:08.208307-08:00,1011.2910766601562,10.714227,10714.227 +2784,2025-03-07T08:17:18.935177-08:00,1011.2793579101562,10.72687,10726.87 +2785,2025-03-07T08:17:29.656459-08:00,1011.3007202148438,10.721282,10721.282 +2786,2025-03-07T08:17:40.381081-08:00,1011.3303833007812,10.724622,10724.622 +2787,2025-03-07T08:17:51.107251-08:00,1011.2974853515625,10.72617,10726.17 +2788,2025-03-07T08:18:01.821115-08:00,1011.307373046875,10.713864,10713.864 +2789,2025-03-07T08:18:12.542526-08:00,1011.3023681640625,10.721411,10721.411 +2790,2025-03-07T08:18:23.274080-08:00,1011.3103637695312,10.731554,10731.554 +2791,2025-03-07T08:18:33.992133-08:00,1011.3236083984375,10.718053,10718.053 +2792,2025-03-07T08:18:44.711509-08:00,1011.3152465820312,10.719376,10719.376 +2793,2025-03-07T08:18:55.437242-08:00,1011.3152465820312,10.725733,10725.733 +2794,2025-03-07T08:19:06.159081-08:00,1011.3104858398438,10.721839,10721.839 +2795,2025-03-07T08:19:16.878825-08:00,1011.3153076171875,10.719744,10719.744 +2796,2025-03-07T08:19:27.593288-08:00,1011.3102416992188,10.714463,10714.463 +2797,2025-03-07T08:19:38.324127-08:00,1011.3132934570312,10.730839,10730.839 +2798,2025-03-07T08:19:49.043111-08:00,1011.3297729492188,10.718984,10718.984 +2799,2025-03-07T08:19:59.761256-08:00,1011.2968139648438,10.718145,10718.145 +2800,2025-03-07T08:20:10.487843-08:00,1011.3016357421875,10.726587,10726.587 +2801,2025-03-07T08:20:21.217291-08:00,1011.322998046875,10.729448,10729.448 +2802,2025-03-07T08:20:31.932087-08:00,1011.2965698242188,10.714796,10714.796 +2803,2025-03-07T08:20:42.658267-08:00,1011.322998046875,10.72618,10726.18 +2804,2025-03-07T08:20:53.378079-08:00,1011.3032836914062,10.719812,10719.812 +2805,2025-03-07T08:21:04.102084-08:00,1011.302978515625,10.724005,10724.005 +2806,2025-03-07T08:21:14.821403-08:00,1011.3045043945312,10.719319,10719.319 +2807,2025-03-07T08:21:25.545568-08:00,1011.3060302734375,10.724165,10724.165 +2808,2025-03-07T08:21:36.271081-08:00,1011.2976684570312,10.725513,10725.513 +2809,2025-03-07T08:21:47.001088-08:00,1011.2910766601562,10.730007,10730.007 +2810,2025-03-07T08:21:57.723644-08:00,1011.2929077148438,10.722556,10722.556 +2811,2025-03-07T08:22:08.445203-08:00,1011.3175048828125,10.721559,10721.559 +2812,2025-03-07T08:22:19.161081-08:00,1011.3256225585938,10.715878,10715.878 +2813,2025-03-07T08:22:29.890138-08:00,1011.3157958984375,10.729057,10729.057 +2814,2025-03-07T08:22:40.616168-08:00,1011.3319702148438,10.72603,10726.03 +2815,2025-03-07T08:22:51.336105-08:00,1011.3353271484375,10.719937,10719.937 +2816,2025-03-07T08:23:02.058272-08:00,1011.3103637695312,10.722167,10722.167 +2817,2025-03-07T08:23:12.779295-08:00,1011.3251342773438,10.721023,10721.023 +2818,2025-03-07T08:23:23.504274-08:00,1011.3350219726562,10.724979,10724.979 +2819,2025-03-07T08:23:34.223734-08:00,1011.3584594726562,10.71946,10719.46 +2820,2025-03-07T08:23:44.955821-08:00,1011.3417358398438,10.732087,10732.087 +2821,2025-03-07T08:23:55.677080-08:00,1011.3795166015625,10.721259,10721.259 +2822,2025-03-07T08:24:06.396084-08:00,1011.3465576171875,10.719004,10719.004 +2823,2025-03-07T08:24:17.120156-08:00,1011.3513793945312,10.724072,10724.072 +2824,2025-03-07T08:24:27.855083-08:00,1011.3660888671875,10.734927,10734.927 +2825,2025-03-07T08:24:38.573882-08:00,1011.3462524414062,10.718799,10718.799 +2826,2025-03-07T08:24:49.300083-08:00,1011.337890625,10.726201,10726.201 +2827,2025-03-07T08:25:00.024291-08:00,1011.3133544921875,10.724208,10724.208 +2828,2025-03-07T08:25:10.752272-08:00,1011.3445434570312,10.727981,10727.981 +2829,2025-03-07T08:25:21.473770-08:00,1011.3475952148438,10.721498,10721.498 +2830,2025-03-07T08:25:32.205080-08:00,1011.35595703125,10.73131,10731.31 +2831,2025-03-07T08:25:42.924092-08:00,1011.3406982421875,10.719012,10719.012 +2832,2025-03-07T08:25:53.650107-08:00,1011.3323364257812,10.726015,10726.015 +2833,2025-03-07T08:26:04.374515-08:00,1011.3209228515625,10.724408,10724.408 +2834,2025-03-07T08:26:15.103266-08:00,1011.3306274414062,10.728751,10728.751 +2835,2025-03-07T08:26:25.827328-08:00,1011.3306274414062,10.724062,10724.062 +2836,2025-03-07T08:26:36.554076-08:00,1011.3336181640625,10.726748,10726.748 +2837,2025-03-07T08:26:47.273081-08:00,1011.3369750976562,10.719005,10719.005 +2838,2025-03-07T08:26:57.998298-08:00,1011.3201293945312,10.725217,10725.217 +2839,2025-03-07T08:27:08.725318-08:00,1011.3153686523438,10.72702,10727.02 +2840,2025-03-07T08:27:19.452081-08:00,1011.329833984375,10.726763,10726.763 +2841,2025-03-07T08:27:30.178277-08:00,1011.3316650390625,10.726196,10726.196 +2842,2025-03-07T08:27:40.904287-08:00,1011.329833984375,10.72601,10726.01 +2843,2025-03-07T08:27:51.632128-08:00,1011.3131103515625,10.727841,10727.841 +2844,2025-03-07T08:28:02.351084-08:00,1011.3442993164062,10.718956,10718.956 +2845,2025-03-07T08:28:13.077431-08:00,1011.29296875,10.726347,10726.347 +2846,2025-03-07T08:28:23.809338-08:00,1011.362060546875,10.731907,10731.907 +2847,2025-03-07T08:28:34.531671-08:00,1011.3638305664062,10.722333,10722.333 +2848,2025-03-07T08:28:45.251084-08:00,1011.305908203125,10.719413,10719.413 +2849,2025-03-07T08:28:55.985081-08:00,1011.35693359375,10.733997,10733.997 +2850,2025-03-07T08:29:06.709196-08:00,1011.2940063476562,10.724115,10724.115 +2851,2025-03-07T08:29:17.426115-08:00,1011.330322265625,10.716919,10716.919 +2852,2025-03-07T08:29:28.159283-08:00,1011.29736328125,10.733168,10733.168 +2853,2025-03-07T08:29:38.883153-08:00,1011.2970581054688,10.72387,10723.87 +2854,2025-03-07T08:29:49.609084-08:00,1011.3054809570312,10.725931,10725.931 +2855,2025-03-07T08:30:00.342278-08:00,1011.2937622070312,10.733194,10733.194 +2856,2025-03-07T08:30:11.065159-08:00,1011.318359375,10.722881,10722.881 +2857,2025-03-07T08:30:21.791484-08:00,1011.3345336914062,10.726325,10726.325 +2858,2025-03-07T08:30:32.527290-08:00,1011.341064453125,10.735806,10735.806 +2859,2025-03-07T08:30:43.250083-08:00,1011.33642578125,10.722793,10722.793 +2860,2025-03-07T08:30:53.979148-08:00,1011.33935546875,10.729065,10729.065 +2861,2025-03-07T08:31:04.702081-08:00,1011.3345336914062,10.722933,10722.933 +2862,2025-03-07T08:31:15.425573-08:00,1011.3375244140625,10.723492,10723.492 +2863,2025-03-07T08:31:26.153240-08:00,1011.3309326171875,10.727667,10727.667 +2864,2025-03-07T08:31:36.878081-08:00,1011.3555297851562,10.724841,10724.841 +2865,2025-03-07T08:31:47.612238-08:00,1011.3507690429688,10.734157,10734.157 +2866,2025-03-07T08:31:58.328442-08:00,1011.3309326171875,10.716204,10716.204 +2867,2025-03-07T08:32:09.056150-08:00,1011.3375854492188,10.727708,10727.708 +2868,2025-03-07T08:32:19.781084-08:00,1011.3687744140625,10.724934,10724.934 +2869,2025-03-07T08:32:30.507292-08:00,1011.3540649414062,10.726208,10726.208 +2870,2025-03-07T08:32:41.236178-08:00,1011.3292236328125,10.728886,10728.886 +2871,2025-03-07T08:33:02.688261-08:00,1011.345703125,21.452083,21452.083 +2872,2025-03-07T08:33:13.407080-08:00,1011.3390502929688,10.718819,10718.819 +2873,2025-03-07T08:33:24.141084-08:00,1011.3523559570312,10.734004,10734.004 +2874,2025-03-07T08:33:34.859161-08:00,1011.3670043945312,10.718077,10718.077 +2875,2025-03-07T08:33:45.585302-08:00,1011.37548828125,10.726141,10726.141 +2876,2025-03-07T08:33:56.317414-08:00,1011.3604125976562,10.732112,10732.112 +2877,2025-03-07T08:34:07.036082-08:00,1011.3670043945312,10.718668,10718.668 +2878,2025-03-07T08:34:17.762268-08:00,1011.3670043945312,10.726186,10726.186 +2879,2025-03-07T08:34:28.484141-08:00,1011.3853149414062,10.721873,10721.873 +2880,2025-03-07T08:34:39.212293-08:00,1011.3867797851562,10.728152,10728.152 +2881,2025-03-07T08:34:49.938083-08:00,1011.4000244140625,10.72579,10725.79 +2882,2025-03-07T08:35:00.665084-08:00,1011.3951416015625,10.727001,10727.001 +2883,2025-03-07T08:35:11.388421-08:00,1011.391845703125,10.723337,10723.337 +2884,2025-03-07T08:35:22.110293-08:00,1011.4050903320312,10.721872,10721.872 +2885,2025-03-07T08:35:32.832168-08:00,1011.3984375,10.721875,10721.875 +2886,2025-03-07T08:35:43.553382-08:00,1011.391845703125,10.721214,10721.214 +2887,2025-03-07T08:35:54.283005-08:00,1011.4248657226562,10.729623,10729.623 +2888,2025-03-07T08:36:05.005084-08:00,1011.4381103515625,10.722079,10722.079 +2889,2025-03-07T08:36:15.735078-08:00,1011.41015625,10.729994,10729.994 +2890,2025-03-07T08:36:26.456080-08:00,1011.4365844726562,10.721002,10721.002 +2891,2025-03-07T08:36:37.184085-08:00,1011.4168090820312,10.728005,10728.005 +2892,2025-03-07T08:36:47.911347-08:00,1011.4083862304688,10.727262,10727.262 +2893,2025-03-07T08:36:58.638517-08:00,1011.4068603515625,10.72717,10727.17 +2894,2025-03-07T08:37:09.367269-08:00,1011.4149780273438,10.728752,10728.752 +2895,2025-03-07T08:37:20.084346-08:00,1011.3936767578125,10.717077,10717.077 +2896,2025-03-07T08:37:30.816142-08:00,1011.37060546875,10.731796,10731.796 +2897,2025-03-07T08:37:41.539155-08:00,1011.4266967773438,10.723013,10723.013 +2898,2025-03-07T08:37:52.263495-08:00,1011.4266967773438,10.72434,10724.34 +2899,2025-03-07T08:38:02.987081-08:00,1011.4182739257812,10.723586,10723.586 +2900,2025-03-07T08:38:13.709221-08:00,1011.403564453125,10.72214,10722.14 +2901,2025-03-07T08:38:24.435815-08:00,1011.4083862304688,10.726594,10726.594 +2902,2025-03-07T08:38:35.155262-08:00,1011.431396484375,10.719447,10719.447 +2903,2025-03-07T08:38:45.890294-08:00,1011.4215698242188,10.735032,10735.032 +2904,2025-03-07T08:38:56.610115-08:00,1011.4083862304688,10.719821,10719.821 +2905,2025-03-07T08:39:07.332280-08:00,1011.3951416015625,10.722165,10722.165 +2906,2025-03-07T08:39:18.055254-08:00,1011.4017333984375,10.722974,10722.974 +2907,2025-03-07T08:39:28.771222-08:00,1011.3936157226562,10.715968,10715.968 +2908,2025-03-07T08:39:39.501289-08:00,1011.3870239257812,10.730067,10730.067 +2909,2025-03-07T08:39:50.219269-08:00,1011.3739013671875,10.71798,10717.98 +2910,2025-03-07T08:40:00.943302-08:00,1011.3672485351562,10.724033,10724.033 +2911,2025-03-07T08:40:11.658267-08:00,1011.3987426757812,10.714965,10714.965 +2912,2025-03-07T08:40:22.380294-08:00,1011.3837280273438,10.722027,10722.027 +2913,2025-03-07T08:40:33.107297-08:00,1011.3888549804688,10.727003,10727.003 +2914,2025-03-07T08:40:43.821266-08:00,1011.421875,10.713969,10713.969 +2915,2025-03-07T08:40:54.546686-08:00,1011.4119262695312,10.72542,10725.42 +2916,2025-03-07T08:41:05.266292-08:00,1011.4415893554688,10.719606,10719.606 +2917,2025-03-07T08:41:15.991556-08:00,1011.4152221679688,10.725264,10725.264 +2918,2025-03-07T08:41:26.708134-08:00,1011.3939208984375,10.716578,10716.578 +2919,2025-03-07T08:41:37.426087-08:00,1011.4268798828125,10.717953,10717.953 +2920,2025-03-07T08:41:48.146674-08:00,1011.40380859375,10.720587,10720.587 +2921,2025-03-07T08:41:58.873143-08:00,1011.4170532226562,10.726469,10726.469 +2922,2025-03-07T08:42:09.593305-08:00,1011.40234375,10.720162,10720.162 +2923,2025-03-07T08:42:20.319690-08:00,1011.395751953125,10.726385,10726.385 +2924,2025-03-07T08:42:31.035076-08:00,1011.4334106445312,10.715386,10715.386 +2925,2025-03-07T08:42:41.759173-08:00,1011.4533081054688,10.724097,10724.097 +2926,2025-03-07T08:42:52.476342-08:00,1011.4847412109375,10.717169,10717.169 +2927,2025-03-07T08:43:03.196279-08:00,1011.4503173828125,10.719937,10719.937 +2928,2025-03-07T08:43:13.918161-08:00,1011.4553833007812,10.721882,10721.882 +2929,2025-03-07T08:43:24.635084-08:00,1011.473388671875,10.716923,10716.923 +2930,2025-03-07T08:43:35.366881-08:00,1011.473388671875,10.731797,10731.797 +2931,2025-03-07T08:43:46.089704-08:00,1011.4931030273438,10.722823,10722.823 +2932,2025-03-07T08:43:56.809113-08:00,1011.4718627929688,10.719409,10719.409 +2933,2025-03-07T08:44:07.538570-08:00,1011.4769287109375,10.729457,10729.457 +2934,2025-03-07T08:44:18.264190-08:00,1011.481689453125,10.72562,10725.62 +2935,2025-03-07T08:44:28.989180-08:00,1011.4735717773438,10.72499,10724.99 +2936,2025-03-07T08:44:39.713083-08:00,1011.480224609375,10.723903,10723.903 +2937,2025-03-07T08:44:50.439793-08:00,1011.465576171875,10.72671,10726.71 +2938,2025-03-07T08:45:01.156295-08:00,1011.49853515625,10.716502,10716.502 +2939,2025-03-07T08:45:11.881655-08:00,1011.4688110351562,10.72536,10725.36 +2940,2025-03-07T08:45:22.599105-08:00,1011.4786987304688,10.71745,10717.45 +2941,2025-03-07T08:45:33.328161-08:00,1011.5003051757812,10.729056,10729.056 +2942,2025-03-07T08:45:44.053989-08:00,1011.4885864257812,10.725828,10725.828 +2943,2025-03-07T08:45:54.764260-08:00,1011.4771728515625,10.710271,10710.271 +2944,2025-03-07T08:46:05.493291-08:00,1011.4837646484375,10.729031,10729.031 +2945,2025-03-07T08:46:16.219083-08:00,1011.4625244140625,10.725792,10725.792 +2946,2025-03-07T08:46:26.942102-08:00,1011.4576416015625,10.723019,10723.019 +2947,2025-03-07T08:46:37.661265-08:00,1011.49365234375,10.719163,10719.163 +2948,2025-03-07T08:46:48.389837-08:00,1011.4823608398438,10.728572,10728.572 +2949,2025-03-07T08:46:59.116083-08:00,1011.4723510742188,10.726246,10726.246 +2950,2025-03-07T08:47:09.836013-08:00,1011.47900390625,10.71993,10719.93 +2951,2025-03-07T08:47:20.564293-08:00,1011.4642333984375,10.72828,10728.28 +2952,2025-03-07T08:47:31.288917-08:00,1011.4826049804688,10.724624,10724.624 +2953,2025-03-07T08:47:42.009080-08:00,1011.4759521484375,10.720163,10720.163 +2954,2025-03-07T08:47:52.734305-08:00,1011.4891967773438,10.725225,10725.225 +2955,2025-03-07T08:48:03.457288-08:00,1011.47412109375,10.722983,10722.983 +2956,2025-03-07T08:48:14.187170-08:00,1011.466064453125,10.729882,10729.882 +2957,2025-03-07T08:48:24.902180-08:00,1011.4710693359375,10.71501,10715.01 +2958,2025-03-07T08:48:35.634287-08:00,1011.47265625,10.732107,10732.107 +2959,2025-03-07T08:48:46.349292-08:00,1011.4873657226562,10.715005,10715.005 +2960,2025-03-07T08:48:57.072365-08:00,1011.4429931640625,10.723073,10723.073 +2961,2025-03-07T08:49:07.801373-08:00,1011.492431640625,10.729008,10729.008 +2962,2025-03-07T08:49:18.520083-08:00,1011.4824829101562,10.71871,10718.71 +2963,2025-03-07T08:49:29.243844-08:00,1011.4890747070312,10.723761,10723.761 +2964,2025-03-07T08:49:39.970084-08:00,1011.459716796875,10.72624,10726.24 +2965,2025-03-07T08:49:50.693282-08:00,1011.4942016601562,10.723198,10723.198 +2966,2025-03-07T08:50:01.424286-08:00,1011.4876708984375,10.731004,10731.004 +2967,2025-03-07T08:50:12.144081-08:00,1011.4710693359375,10.719795,10719.795 +2968,2025-03-07T08:50:22.869081-08:00,1011.4795532226562,10.725,10725.0 +2969,2025-03-07T08:50:33.588193-08:00,1011.5040893554688,10.719112,10719.112 +2970,2025-03-07T08:50:44.306287-08:00,1011.4893798828125,10.718094,10718.094 +2971,2025-03-07T08:50:55.035161-08:00,1011.4710693359375,10.728874,10728.874 +2972,2025-03-07T08:51:05.755081-08:00,1011.5106201171875,10.71992,10719.92 +2973,2025-03-07T08:51:16.485113-08:00,1011.5059204101562,10.730032,10730.032 +2974,2025-03-07T08:51:27.208323-08:00,1011.5106201171875,10.72321,10723.21 +2975,2025-03-07T08:51:37.936083-08:00,1011.490966796875,10.72776,10727.76 +2976,2025-03-07T08:51:48.651106-08:00,1011.5025634765625,10.715023,10715.023 +2977,2025-03-07T08:51:59.376191-08:00,1011.5092163085938,10.725085,10725.085 +2978,2025-03-07T08:52:10.106265-08:00,1011.5106201171875,10.730074,10730.074 +2979,2025-03-07T08:52:20.824594-08:00,1011.5076293945312,10.718329,10718.329 +2980,2025-03-07T08:52:31.550291-08:00,1011.5304565429688,10.725697,10725.697 +2981,2025-03-07T08:52:42.276699-08:00,1011.5076293945312,10.726408,10726.408 +2982,2025-03-07T08:52:53.005583-08:00,1011.4959106445312,10.728884,10728.884 +2983,2025-03-07T08:53:03.722583-08:00,1011.5223388671875,10.717,10717.0 +2984,2025-03-07T08:53:14.457057-08:00,1011.5142211914062,10.734474,10734.474 +2985,2025-03-07T08:53:25.182613-08:00,1011.5223388671875,10.725556,10725.556 +2986,2025-03-07T08:53:35.898587-08:00,1011.5406494140625,10.715974,10715.974 +2987,2025-03-07T08:53:46.629998-08:00,1011.5076293945312,10.731411,10731.411 +2988,2025-03-07T08:53:57.347583-08:00,1011.5142211914062,10.717585,10717.585 +2989,2025-03-07T08:54:08.072595-08:00,1011.5125122070312,10.725012,10725.012 +2990,2025-03-07T08:54:18.789583-08:00,1011.5076293945312,10.716988,10716.988 +2991,2025-03-07T08:54:29.511156-08:00,1011.51904296875,10.721573,10721.573 +2992,2025-03-07T08:54:40.235584-08:00,1011.50439453125,10.724428,10724.428 +2993,2025-03-07T08:54:50.952750-08:00,1011.5125122070312,10.717166,10717.166 +2994,2025-03-07T08:55:01.682379-08:00,1011.51904296875,10.729629,10729.629 +2995,2025-03-07T08:55:12.399946-08:00,1011.525634765625,10.717567,10717.567 +2996,2025-03-07T08:55:23.122728-08:00,1011.538818359375,10.722782,10722.782 +2997,2025-03-07T08:55:33.837782-08:00,1011.497802734375,10.715054,10715.054 +2998,2025-03-07T08:55:44.562585-08:00,1011.50439453125,10.724803,10724.803 +2999,2025-03-07T08:55:55.279990-08:00,1011.5321655273438,10.717405,10717.405 +3000,2025-03-07T08:56:05.999581-08:00,1011.525634765625,10.719591,10719.591 +3001,2025-03-07T08:56:16.716918-08:00,1011.51904296875,10.717337,10717.337 +3002,2025-03-07T08:56:27.441730-08:00,1011.524169921875,10.724812,10724.812 +3003,2025-03-07T08:56:38.166933-08:00,1011.524169921875,10.725203,10725.203 +3004,2025-03-07T08:56:48.884629-08:00,1011.53076171875,10.717696,10717.696 +3005,2025-03-07T08:56:59.608765-08:00,1011.5028076171875,10.724136,10724.136 +3006,2025-03-07T08:57:10.328700-08:00,1011.5357666015625,10.719935,10719.935 +3007,2025-03-07T08:57:21.056127-08:00,1011.5145263671875,10.727427,10727.427 +3008,2025-03-07T08:57:31.779611-08:00,1011.549072265625,10.723484,10723.484 +3009,2025-03-07T08:57:42.498779-08:00,1011.5343627929688,10.719168,10719.168 +3010,2025-03-07T08:57:53.219586-08:00,1011.5673217773438,10.720807,10720.807 +3011,2025-03-07T08:58:03.941964-08:00,1011.544189453125,10.722378,10722.378 +3012,2025-03-07T08:58:14.666583-08:00,1011.5951538085938,10.724619,10724.619 +3013,2025-03-07T08:58:25.384758-08:00,1011.5936889648438,10.718175,10718.175 +3014,2025-03-07T08:58:36.115241-08:00,1011.5457153320312,10.730483,10730.483 +3015,2025-03-07T08:58:46.828985-08:00,1011.5853271484375,10.713744,10713.744 +3016,2025-03-07T08:58:57.558582-08:00,1011.5654907226562,10.729597,10729.597 +3017,2025-03-07T08:59:08.283585-08:00,1011.557373046875,10.725003,10725.003 +3018,2025-03-07T08:59:19.004585-08:00,1011.5772094726562,10.721,10721.0 +3019,2025-03-07T08:59:29.730800-08:00,1011.59033203125,10.726215,10726.215 +3020,2025-03-07T08:59:40.448583-08:00,1011.583740234375,10.717783,10717.783 +3021,2025-03-07T08:59:51.171612-08:00,1011.5870361328125,10.723029,10723.029 +3022,2025-03-07T09:00:01.899822-08:00,1011.61669921875,10.72821,10728.21 +3023,2025-03-07T09:00:12.625584-08:00,1011.595458984375,10.725762,10725.762 +3024,2025-03-07T09:00:23.351783-08:00,1011.569091796875,10.726199,10726.199 +3025,2025-03-07T09:00:34.074822-08:00,1011.596923828125,10.723039,10723.039 +3026,2025-03-07T09:00:44.800737-08:00,1011.5984497070312,10.725915,10725.915 +3027,2025-03-07T09:00:55.520354-08:00,1011.5889282226562,10.719617,10719.617 +3028,2025-03-07T09:01:06.244826-08:00,1011.6218872070312,10.724472,10724.472 +3029,2025-03-07T09:01:16.966942-08:00,1011.60205078125,10.722116,10722.116 +3030,2025-03-07T09:01:27.692586-08:00,1011.615234375,10.725644,10725.644 +3031,2025-03-07T09:01:38.408582-08:00,1011.6085815429688,10.715996,10715.996 +3032,2025-03-07T09:01:49.135802-08:00,1011.6085815429688,10.72722,10727.22 +3033,2025-03-07T09:01:59.852585-08:00,1011.5935668945312,10.716783,10716.783 +3034,2025-03-07T09:02:10.577580-08:00,1011.6265869140625,10.724995,10724.995 +3035,2025-03-07T09:02:21.297583-08:00,1011.6002197265625,10.720003,10720.003 +3036,2025-03-07T09:02:32.028777-08:00,1011.615234375,10.731194,10731.194 +3037,2025-03-07T09:02:42.753600-08:00,1011.6331787109375,10.724823,10724.823 +3038,2025-03-07T09:02:53.475585-08:00,1011.6265869140625,10.721985,10721.985 +3039,2025-03-07T09:03:04.195607-08:00,1011.6283569335938,10.720022,10720.022 +3040,2025-03-07T09:03:14.915777-08:00,1011.6203002929688,10.72017,10720.17 +3041,2025-03-07T09:03:25.646759-08:00,1011.6400756835938,10.730982,10730.982 +3042,2025-03-07T09:03:36.366605-08:00,1011.63671875,10.719846,10719.846 +3043,2025-03-07T09:03:47.087386-08:00,1011.6403198242188,10.720781,10720.781 +3044,2025-03-07T09:03:57.817790-08:00,1011.6171875,10.730404,10730.404 +3045,2025-03-07T09:04:08.538761-08:00,1011.6322021484375,10.720971,10720.971 +3046,2025-03-07T09:04:19.255583-08:00,1011.643798828125,10.716822,10716.822 +3047,2025-03-07T09:04:29.985674-08:00,1011.6243896484375,10.730091,10730.091 +3048,2025-03-07T09:04:40.700754-08:00,1011.6077880859375,10.71508,10715.08 +3049,2025-03-07T09:04:51.428715-08:00,1011.650634765625,10.727961,10727.961 +3050,2025-03-07T09:05:02.142832-08:00,1011.642822265625,10.714117,10714.117 +3051,2025-03-07T09:05:12.869705-08:00,1011.6364135742188,10.726873,10726.873 +3052,2025-03-07T09:05:23.590639-08:00,1011.6249389648438,10.720934,10720.934 +3053,2025-03-07T09:05:34.306087-08:00,1011.6500244140625,10.715448,10715.448 +3054,2025-03-07T09:05:45.031582-08:00,1011.6268920898438,10.725495,10725.495 +3055,2025-03-07T09:05:55.750220-08:00,1011.6351318359375,10.718638,10718.638 +3056,2025-03-07T09:06:06.465786-08:00,1011.65185546875,10.715566,10715.566 +3057,2025-03-07T09:06:17.193408-08:00,1011.630859375,10.727622,10727.622 +3058,2025-03-07T09:06:27.912581-08:00,1011.626220703125,10.719173,10719.173 +3059,2025-03-07T09:06:38.629693-08:00,1011.6657104492188,10.717112,10717.112 +3060,2025-03-07T09:06:49.350764-08:00,1011.66259765625,10.721071,10721.071 +3061,2025-03-07T09:07:00.068615-08:00,1011.6383056640625,10.717851,10717.851 +3062,2025-03-07T09:07:10.793583-08:00,1011.643310546875,10.724968,10724.968 +3063,2025-03-07T09:07:21.508581-08:00,1011.64501953125,10.714998,10714.998 +3064,2025-03-07T09:07:32.228742-08:00,1011.6122436523438,10.720161,10720.161 +3065,2025-03-07T09:07:42.949585-08:00,1011.653564453125,10.720843,10720.843 +3066,2025-03-07T09:07:53.675578-08:00,1011.6634521484375,10.725993,10725.993 +3067,2025-03-07T09:08:04.396771-08:00,1011.6782836914062,10.721193,10721.193 +3068,2025-03-07T09:08:11.077102-08:00,1011.662109375,6.680331,6680.331 +3069,2025-03-07T09:08:15.111769-08:00,1011.6521606445312,4.034667,4034.667 +3070,2025-03-07T09:08:25.837780-08:00,1011.6571655273438,10.726011,10726.011 +3071,2025-03-07T09:08:36.560736-08:00,1011.6787719726562,10.722956,10722.956 +3072,2025-03-07T09:08:47.283585-08:00,1011.6358642578125,10.722849,10722.849 +3073,2025-03-07T09:08:58.006809-08:00,1011.64599609375,10.723224,10723.224 +3074,2025-03-07T09:09:08.728711-08:00,1011.6573486328125,10.721902,10721.902 +3075,2025-03-07T09:09:19.445760-08:00,1011.647705078125,10.717049,10717.049 +3076,2025-03-07T09:09:30.166586-08:00,1011.700439453125,10.720826,10720.826 +3077,2025-03-07T09:09:40.897775-08:00,1011.6707763671875,10.731189,10731.189 +3078,2025-03-07T09:09:51.614582-08:00,1011.6378173828125,10.716807,10716.807 +3079,2025-03-07T09:10:02.336618-08:00,1011.6542358398438,10.722036,10722.036 +3080,2025-03-07T09:10:13.053920-08:00,1011.6641235351562,10.717302,10717.302 +3081,2025-03-07T09:10:23.772965-08:00,1011.6494750976562,10.719045,10719.045 +3082,2025-03-07T09:10:34.501739-08:00,1011.6593017578125,10.728774,10728.774 +3083,2025-03-07T09:10:45.224581-08:00,1011.6607666015625,10.722842,10722.842 +3084,2025-03-07T09:10:55.942692-08:00,1011.6476440429688,10.718111,10718.111 +3085,2025-03-07T09:11:06.659791-08:00,1011.6428833007812,10.717099,10717.099 +3086,2025-03-07T09:11:17.383585-08:00,1011.6329956054688,10.723794,10723.794 +3087,2025-03-07T09:11:28.103779-08:00,1011.6542358398438,10.720194,10720.194 +3088,2025-03-07T09:11:38.830128-08:00,1011.6065673828125,10.726349,10726.349 +3089,2025-03-07T09:11:49.548699-08:00,1011.6312255859375,10.718571,10718.571 +3090,2025-03-07T09:12:00.276585-08:00,1011.6392822265625,10.727886,10727.886 +3091,2025-03-07T09:12:10.994909-08:00,1011.5917358398438,10.718324,10718.324 +3092,2025-03-07T09:12:21.724583-08:00,1011.5865478515625,10.729674,10729.674 +3093,2025-03-07T09:12:32.444767-08:00,1011.5818481445312,10.720184,10720.184 +3094,2025-03-07T09:12:43.179103-08:00,1011.594970703125,10.734336,10734.336 +3095,2025-03-07T09:12:53.892586-08:00,1011.6046752929688,10.713483,10713.483 +3096,2025-03-07T09:13:04.613585-08:00,1011.599853515625,10.720999,10720.999 +3097,2025-03-07T09:13:15.345687-08:00,1011.5816650390625,10.732102,10732.102 +3098,2025-03-07T09:13:26.059322-08:00,1011.591552734375,10.713635,10713.635 +3099,2025-03-07T09:13:36.786728-08:00,1011.5931396484375,10.727406,10727.406 +3100,2025-03-07T09:13:47.506879-08:00,1011.6224975585938,10.720151,10720.151 +3101,2025-03-07T09:13:58.232744-08:00,1011.6093139648438,10.725865,10725.865 +3102,2025-03-07T09:14:08.951370-08:00,1011.5682983398438,10.718626,10718.626 +3103,2025-03-07T09:14:19.676585-08:00,1011.578125,10.725215,10725.215 +3104,2025-03-07T09:14:30.403777-08:00,1011.5532836914062,10.727192,10727.192 +3105,2025-03-07T09:14:41.122589-08:00,1011.5416259765625,10.718812,10718.812 +3106,2025-03-07T09:14:51.843804-08:00,1011.56982421875,10.721215,10721.215 +3107,2025-03-07T09:15:02.570332-08:00,1011.5332641601562,10.726528,10726.528 +3108,2025-03-07T09:15:13.297585-08:00,1011.5498657226562,10.727253,10727.253 +3109,2025-03-07T09:15:24.013583-08:00,1011.541748046875,10.715998,10715.998 +3110,2025-03-07T09:15:34.743998-08:00,1011.5184326171875,10.730415,10730.415 +3111,2025-03-07T09:15:45.462656-08:00,1011.5070190429688,10.718658,10718.658 +3112,2025-03-07T09:15:56.185585-08:00,1011.5415649414062,10.722929,10722.929 +3113,2025-03-07T09:16:06.907138-08:00,1011.5298461914062,10.721553,10721.553 +3114,2025-03-07T09:16:17.638588-08:00,1011.5247802734375,10.73145,10731.45 +3115,2025-03-07T09:16:28.362143-08:00,1011.541259765625,10.723555,10723.555 +3116,2025-03-07T09:16:39.088585-08:00,1011.5296020507812,10.726442,10726.442 +3117,2025-03-07T09:16:49.807988-08:00,1011.53955078125,10.719403,10719.403 +3118,2025-03-07T09:17:00.535582-08:00,1011.5593872070312,10.727594,10727.594 +3119,2025-03-07T09:17:11.260406-08:00,1011.5476684570312,10.724824,10724.824 +3120,2025-03-07T09:17:21.982586-08:00,1011.5231323242188,10.72218,10722.18 +3121,2025-03-07T09:17:32.706657-08:00,1011.5114135742188,10.724071,10724.071 +3122,2025-03-07T09:17:43.428584-08:00,1011.5214233398438,10.721927,10721.927 +3123,2025-03-07T09:17:54.153811-08:00,1011.5360717773438,10.725227,10725.227 +3124,2025-03-07T09:18:04.889775-08:00,1011.5162353515625,10.735964,10735.964 +3125,2025-03-07T09:18:15.607651-08:00,1011.5130615234375,10.717876,10717.876 +3126,2025-03-07T09:18:26.334977-08:00,1011.5014038085938,10.727326,10727.326 +3127,2025-03-07T09:18:37.058662-08:00,1011.5193481445312,10.723685,10723.685 +3128,2025-03-07T09:18:47.785932-08:00,1011.4930419921875,10.72727,10727.27 +3129,2025-03-07T09:18:58.516974-08:00,1011.48291015625,10.731042,10731.042 +3130,2025-03-07T09:19:09.233734-08:00,1011.4846801757812,10.71676,10716.76 +3131,2025-03-07T09:19:19.956611-08:00,1011.4679565429688,10.722877,10722.877 +3132,2025-03-07T09:19:30.685824-08:00,1011.46142578125,10.729213,10729.213 +3133,2025-03-07T09:19:41.411689-08:00,1011.4910888671875,10.725865,10725.865 +3134,2025-03-07T09:19:52.134588-08:00,1011.468017578125,10.722899,10722.899 +3135,2025-03-07T09:20:02.868886-08:00,1011.48779296875,10.734298,10734.298 +3136,2025-03-07T09:20:13.593977-08:00,1011.4857788085938,10.725091,10725.091 +3137,2025-03-07T09:20:24.312769-08:00,1011.487548828125,10.718792,10718.792 +3138,2025-03-07T09:20:35.048981-08:00,1011.4824829101562,10.736212,10736.212 +3139,2025-03-07T09:20:45.765581-08:00,1011.5020141601562,10.7166,10716.6 +3140,2025-03-07T09:20:56.493751-08:00,1011.479248046875,10.72817,10728.17 +3141,2025-03-07T09:21:07.227251-08:00,1011.467529296875,10.7335,10733.5 +3142,2025-03-07T09:21:17.950593-08:00,1011.470947265625,10.723342,10723.342 +3143,2025-03-07T09:21:28.675153-08:00,1011.460693359375,10.72456,10724.56 +3144,2025-03-07T09:21:39.402789-08:00,1011.4954833984375,10.727636,10727.636 +3145,2025-03-07T09:21:50.126783-08:00,1011.4918823242188,10.723994,10723.994 +3146,2025-03-07T09:22:00.848786-08:00,1011.51171875,10.722003,10722.003 +3147,2025-03-07T09:22:11.576772-08:00,1011.47705078125,10.727986,10727.986 +3148,2025-03-07T09:22:22.305583-08:00,1011.5018920898438,10.728811,10728.811 +3149,2025-03-07T09:22:33.026659-08:00,1011.4784545898438,10.721076,10721.076 +3150,2025-03-07T09:22:43.753852-08:00,1011.4752197265625,10.727193,10727.193 +3151,2025-03-07T09:22:54.487585-08:00,1011.4818725585938,10.733733,10733.733 +3152,2025-03-07T09:23:05.204750-08:00,1011.4818725585938,10.717165,10717.165 +3153,2025-03-07T09:23:15.934933-08:00,1011.4866333007812,10.730183,10730.183 +3154,2025-03-07T09:23:26.659585-08:00,1011.5035400390625,10.724652,10724.652 +3155,2025-03-07T09:23:37.384610-08:00,1011.4932861328125,10.725025,10725.025 +3156,2025-03-07T09:23:48.104879-08:00,1011.50830078125,10.720269,10720.269 +3157,2025-03-07T09:23:58.842307-08:00,1011.494873046875,10.737428,10737.428 +3158,2025-03-07T09:24:09.557740-08:00,1011.4978637695312,10.715433,10715.433 +3159,2025-03-07T09:24:20.293798-08:00,1011.489501953125,10.736058,10736.058 +3160,2025-03-07T09:24:31.018611-08:00,1011.49951171875,10.724813,10724.813 +3161,2025-03-07T09:24:41.738806-08:00,1011.5057983398438,10.720195,10720.195 +3162,2025-03-07T09:24:52.465787-08:00,1011.4944458007812,10.726981,10726.981 +3163,2025-03-07T09:25:03.194582-08:00,1011.4678344726562,10.728795,10728.795 +3164,2025-03-07T09:25:13.923595-08:00,1011.4906005859375,10.729013,10729.013 +3165,2025-03-07T09:25:24.649612-08:00,1011.4873657226562,10.726017,10726.017 +3166,2025-03-07T09:25:35.373882-08:00,1011.4840698242188,10.72427,10724.27 +3167,2025-03-07T09:25:46.100694-08:00,1011.5003051757812,10.726812,10726.812 +3168,2025-03-07T09:25:56.819794-08:00,1011.505126953125,10.7191,10719.1 +3169,2025-03-07T09:26:07.551751-08:00,1011.5150146484375,10.731957,10731.957 +3170,2025-03-07T09:26:18.283782-08:00,1011.5114135742188,10.732031,10732.031 +3171,2025-03-07T09:26:29.003630-08:00,1011.4949951171875,10.719848,10719.848 +3172,2025-03-07T09:26:39.730807-08:00,1011.5064086914062,10.727177,10727.177 +3173,2025-03-07T09:26:50.462797-08:00,1011.529541015625,10.73199,10731.99 +3174,2025-03-07T09:27:01.186774-08:00,1011.5409545898438,10.723977,10723.977 +3175,2025-03-07T09:27:11.915585-08:00,1011.5343627929688,10.728811,10728.811 +3176,2025-03-07T09:27:22.645428-08:00,1011.5292358398438,10.729843,10729.843 +3177,2025-03-07T09:27:33.365640-08:00,1011.5275268554688,10.720212,10720.212 +3178,2025-03-07T09:27:44.094585-08:00,1011.5472412109375,10.728945,10728.945 +3179,2025-03-07T09:27:54.828667-08:00,1011.5472412109375,10.734082,10734.082 +3180,2025-03-07T09:28:05.548582-08:00,1011.5340576171875,10.719915,10719.915 +3181,2025-03-07T09:28:16.271317-08:00,1011.5010986328125,10.722735,10722.735 +3182,2025-03-07T09:28:27.005877-08:00,1011.5454711914062,10.73456,10734.56 +3183,2025-03-07T09:28:37.734616-08:00,1011.5226440429688,10.728739,10728.739 +3184,2025-03-07T09:28:48.457091-08:00,1011.5226440429688,10.722475,10722.475 +3185,2025-03-07T09:28:59.187584-08:00,1011.5259399414062,10.730493,10730.493 +3186,2025-03-07T09:29:09.917581-08:00,1011.5426635742188,10.729997,10729.997 +3187,2025-03-07T09:29:20.646890-08:00,1011.54931640625,10.729309,10729.309 +3188,2025-03-07T09:29:31.378649-08:00,1011.5342407226562,10.731759,10731.759 +3189,2025-03-07T09:29:42.101692-08:00,1011.5261840820312,10.723043,10723.043 +3190,2025-03-07T09:29:52.821661-08:00,1011.5459594726562,10.719969,10719.969 +3191,2025-03-07T09:29:52.821661-08:00,1011.5459594726562,0.0,0.0 +3192,2025-03-07T09:30:03.550727-08:00,1011.5625,10.729066,10729.066 +3193,2025-03-07T09:30:14.279167-08:00,1011.5625,10.72844,10728.44 +3194,2025-03-07T09:30:25.008591-08:00,1011.5786743164062,10.729424,10729.424 +3195,2025-03-07T09:30:35.725788-08:00,1011.5607299804688,10.717197,10717.197 +3196,2025-03-07T09:30:46.454793-08:00,1011.5438842773438,10.729005,10729.005 +3197,2025-03-07T09:30:57.178062-08:00,1011.5552978515625,10.723269,10723.269 +3198,2025-03-07T09:31:07.905582-08:00,1011.58984375,10.72752,10727.52 +3199,2025-03-07T09:31:18.635789-08:00,1011.5634155273438,10.730207,10730.207 +3200,2025-03-07T09:31:29.360791-08:00,1011.5535888671875,10.725002,10725.002 +3201,2025-03-07T09:31:40.086650-08:00,1011.5437622070312,10.725859,10725.859 +3202,2025-03-07T09:31:50.813998-08:00,1011.5664672851562,10.727348,10727.348 +3203,2025-03-07T09:32:01.538583-08:00,1011.591064453125,10.724585,10724.585 +3204,2025-03-07T09:32:12.256585-08:00,1011.5728149414062,10.718002,10718.002 +3205,2025-03-07T09:32:22.982664-08:00,1011.5680541992188,10.726079,10726.079 +3206,2025-03-07T09:32:33.705765-08:00,1011.5578002929688,10.723101,10723.101 +3207,2025-03-07T09:32:44.440773-08:00,1011.5678100585938,10.735008,10735.008 +3208,2025-03-07T09:32:55.157586-08:00,1011.5692138671875,10.716813,10716.813 +3209,2025-03-07T09:33:05.884799-08:00,1011.5725708007812,10.727213,10727.213 +3210,2025-03-07T09:33:16.610644-08:00,1011.5609130859375,10.725845,10725.845 +3211,2025-03-07T09:33:27.326783-08:00,1011.5890502929688,10.716139,10716.139 +3212,2025-03-07T09:33:38.061632-08:00,1011.58251953125,10.734849,10734.849 +3213,2025-03-07T09:33:48.772685-08:00,1011.537841796875,10.711053,10711.053 +3214,2025-03-07T09:33:59.501583-08:00,1011.580810546875,10.728898,10728.898 +3215,2025-03-07T09:34:10.225812-08:00,1011.569091796875,10.724229,10724.229 +3216,2025-03-07T09:34:20.945788-08:00,1011.583740234375,10.719976,10719.976 +3217,2025-03-07T09:34:31.661746-08:00,1011.5939331054688,10.715958,10715.958 +3218,2025-03-07T09:34:42.394373-08:00,1011.6149291992188,10.732627,10732.627 +3219,2025-03-07T09:34:53.111763-08:00,1011.5984497070312,10.71739,10717.39 +3220,2025-03-07T09:35:03.829783-08:00,1011.595458984375,10.71802,10718.02 +3221,2025-03-07T09:35:14.557581-08:00,1011.5675048828125,10.727798,10727.798 +3222,2025-03-07T09:35:25.282728-08:00,1011.58544921875,10.725147,10725.147 +3223,2025-03-07T09:35:36.003768-08:00,1011.6104125976562,10.72104,10721.04 +3224,2025-03-07T09:35:46.731441-08:00,1011.595703125,10.727673,10727.673 +3225,2025-03-07T09:35:57.446595-08:00,1011.5890502929688,10.715154,10715.154 +3226,2025-03-07T09:36:08.169720-08:00,1011.6203002929688,10.723125,10723.125 +3227,2025-03-07T09:36:18.900796-08:00,1011.628662109375,10.731076,10731.076 +3228,2025-03-07T09:36:29.628409-08:00,1011.6235961914062,10.727613,10727.613 +3229,2025-03-07T09:36:40.352720-08:00,1011.628662109375,10.724311,10724.311 +3230,2025-03-07T09:36:51.076581-08:00,1011.6104125976562,10.723861,10723.861 +3231,2025-03-07T09:37:01.788789-08:00,1011.5921020507812,10.712208,10712.208 +3232,2025-03-07T09:37:12.518948-08:00,1011.61669921875,10.730159,10730.159 +3233,2025-03-07T09:37:23.236657-08:00,1011.61669921875,10.717709,10717.709 +3234,2025-03-07T09:37:33.958755-08:00,1011.623291015625,10.722098,10722.098 +3235,2025-03-07T09:37:44.681795-08:00,1011.6314086914062,10.72304,10723.04 +3236,2025-03-07T09:37:55.415625-08:00,1011.6101684570312,10.73383,10733.83 +3237,2025-03-07T09:38:06.133583-08:00,1011.6331787109375,10.717958,10717.958 +3238,2025-03-07T09:38:16.859618-08:00,1011.6149291992188,10.726035,10726.035 +3239,2025-03-07T09:38:27.589772-08:00,1011.629638671875,10.730154,10730.154 +3240,2025-03-07T09:38:38.314615-08:00,1011.642822265625,10.724843,10724.843 +3241,2025-03-07T09:38:49.028271-08:00,1011.6447143554688,10.713656,10713.656 +3242,2025-03-07T09:38:59.755783-08:00,1011.64111328125,10.727512,10727.512 +3243,2025-03-07T09:39:10.471190-08:00,1011.674072265625,10.715407,10715.407 +3244,2025-03-07T09:39:21.194639-08:00,1011.6920166015625,10.723449,10723.449 +3245,2025-03-07T09:39:31.919788-08:00,1011.6788330078125,10.725149,10725.149 +3246,2025-03-07T09:39:42.642586-08:00,1011.6525268554688,10.722798,10722.798 +3247,2025-03-07T09:39:53.373584-08:00,1011.6906127929688,10.730998,10730.998 +3248,2025-03-07T09:40:04.096582-08:00,1011.6359252929688,10.722998,10722.998 +3249,2025-03-07T09:40:14.815360-08:00,1011.6821899414062,10.718778,10718.778 +3250,2025-03-07T09:40:25.547138-08:00,1011.6854858398438,10.731778,10731.778 +3251,2025-03-07T09:40:36.266644-08:00,1011.6657104492188,10.719506,10719.506 +3252,2025-03-07T09:40:46.994104-08:00,1011.6873168945312,10.72746,10727.46 +3253,2025-03-07T09:40:57.719652-08:00,1011.674072265625,10.725548,10725.548 +3254,2025-03-07T09:41:08.443696-08:00,1011.6609497070312,10.724044,10724.044 +3255,2025-03-07T09:41:19.162740-08:00,1011.6807250976562,10.719044,10719.044 +3256,2025-03-07T09:41:29.891865-08:00,1011.6837768554688,10.729125,10729.125 +3257,2025-03-07T09:41:40.616867-08:00,1011.6506958007812,10.725002,10725.002 +3258,2025-03-07T09:41:51.331980-08:00,1011.6506958007812,10.715113,10715.113 +3259,2025-03-07T09:42:02.059582-08:00,1011.64404296875,10.727602,10727.602 +3260,2025-03-07T09:42:12.776756-08:00,1011.6260986328125,10.717174,10717.174 +3261,2025-03-07T09:42:23.506648-08:00,1011.6045532226562,10.729892,10729.892 +3262,2025-03-07T09:42:34.227992-08:00,1011.6144409179688,10.721344,10721.344 +3263,2025-03-07T09:42:44.950583-08:00,1011.6144409179688,10.722591,10722.591 +3264,2025-03-07T09:42:55.676582-08:00,1011.59130859375,10.725999,10725.999 +3265,2025-03-07T09:43:06.397598-08:00,1011.6327514648438,10.721016,10721.016 +3266,2025-03-07T09:43:17.121798-08:00,1011.6260986328125,10.7242,10724.2 +3267,2025-03-07T09:43:27.848896-08:00,1011.624267578125,10.727098,10727.098 +3268,2025-03-07T09:43:38.578585-08:00,1011.6573486328125,10.729689,10729.689 +3269,2025-03-07T09:43:49.305822-08:00,1011.6506958007812,10.727237,10727.237 +3270,2025-03-07T09:44:00.026657-08:00,1011.624267578125,10.720835,10720.835 +3271,2025-03-07T09:44:10.752846-08:00,1011.6375122070312,10.726189,10726.189 +3272,2025-03-07T09:44:21.471582-08:00,1011.639404296875,10.718736,10718.736 +3273,2025-03-07T09:44:32.199587-08:00,1011.6260986328125,10.728005,10728.005 +3274,2025-03-07T09:44:42.920100-08:00,1011.6459350585938,10.720513,10720.513 +3275,2025-03-07T09:44:53.639763-08:00,1011.6177368164062,10.719663,10719.663 +3276,2025-03-07T09:45:04.363584-08:00,1011.6624145507812,10.723821,10723.821 +3277,2025-03-07T09:45:15.087801-08:00,1011.6788940429688,10.724217,10724.217 +3278,2025-03-07T09:45:25.815768-08:00,1011.6771240234375,10.727967,10727.967 +3279,2025-03-07T09:45:36.536638-08:00,1011.6624145507812,10.72087,10720.87 +3280,2025-03-07T09:45:47.256234-08:00,1011.65576171875,10.719596,10719.596 +3281,2025-03-07T09:45:57.983584-08:00,1011.6609497070312,10.72735,10727.35 +3282,2025-03-07T09:46:08.711717-08:00,1011.6968994140625,10.728133,10728.133 +3283,2025-03-07T09:46:19.435585-08:00,1011.6755981445312,10.723868,10723.868 +3284,2025-03-07T09:46:30.165771-08:00,1011.6788940429688,10.730186,10730.186 +3285,2025-03-07T09:46:40.880622-08:00,1011.6722412109375,10.714851,10714.851 +3286,2025-03-07T09:46:51.613591-08:00,1011.6624145507812,10.732969,10732.969 +3287,2025-03-07T09:47:02.331774-08:00,1011.6312255859375,10.718183,10718.183 +3288,2025-03-07T09:47:13.061664-08:00,1011.66748046875,10.72989,10729.89 +3289,2025-03-07T09:47:23.783794-08:00,1011.6773681640625,10.72213,10722.13 +3290,2025-03-07T09:47:34.503608-08:00,1011.6839599609375,10.719814,10719.814 +3291,2025-03-07T09:47:45.232958-08:00,1011.6688842773438,10.72935,10729.35 +3292,2025-03-07T09:47:55.958706-08:00,1011.6542358398438,10.725748,10725.748 +3293,2025-03-07T09:48:06.678250-08:00,1011.660888671875,10.719544,10719.544 +3294,2025-03-07T09:48:17.397611-08:00,1011.6821899414062,10.719361,10719.361 +3295,2025-03-07T09:48:28.122795-08:00,1011.7151489257812,10.725184,10725.184 +3296,2025-03-07T09:48:38.853740-08:00,1011.6788330078125,10.730945,10730.945 +3297,2025-03-07T09:48:49.573764-08:00,1011.6721801757812,10.720024,10720.024 +3298,2025-03-07T09:49:00.300373-08:00,1011.6641235351562,10.726609,10726.609 +3299,2025-03-07T09:49:11.021579-08:00,1011.6773681640625,10.721206,10721.206 +3300,2025-03-07T09:49:21.745905-08:00,1011.6788330078125,10.724326,10724.326 +3301,2025-03-07T09:49:32.475586-08:00,1011.6838989257812,10.729681,10729.681 +3302,2025-03-07T09:49:43.197005-08:00,1011.6824951171875,10.721419,10721.419 +3303,2025-03-07T09:49:53.921581-08:00,1011.6986083984375,10.724576,10724.576 +3304,2025-03-07T09:50:04.649585-08:00,1011.7103271484375,10.728004,10728.004 +3305,2025-03-07T09:50:15.371586-08:00,1011.674072265625,10.722001,10722.001 +3306,2025-03-07T09:50:26.095036-08:00,1011.6956176757812,10.72345,10723.45 +3307,2025-03-07T09:50:36.810584-08:00,1011.7168579101562,10.715548,10715.548 +3308,2025-03-07T09:50:47.542649-08:00,1011.6824951171875,10.732065,10732.065 +3309,2025-03-07T09:50:58.260702-08:00,1011.7154541015625,10.718053,10718.053 +3310,2025-03-07T09:51:08.982852-08:00,1011.6724853515625,10.72215,10722.15 +3311,2025-03-07T09:51:19.712063-08:00,1011.6674194335938,10.729211,10729.211 +3312,2025-03-07T09:51:30.436585-08:00,1011.6871948242188,10.724522,10724.522 +3313,2025-03-07T09:51:41.151768-08:00,1011.6674194335938,10.715183,10715.183 +3314,2025-03-07T09:51:51.874590-08:00,1011.6560668945312,10.722822,10722.822 +3315,2025-03-07T09:52:02.606789-08:00,1011.6607666015625,10.732199,10732.199 +3316,2025-03-07T09:52:13.319591-08:00,1011.6724853515625,10.712802,10712.802 +3317,2025-03-07T09:52:24.063023-08:00,1011.6593627929688,10.743432,10743.432 +3318,2025-03-07T09:52:34.780139-08:00,1011.6923217773438,10.717116,10717.116 +3319,2025-03-07T09:52:45.500335-08:00,1011.6527099609375,10.720196,10720.196 +3320,2025-03-07T09:52:56.224247-08:00,1011.6626586914062,10.723912,10723.912 +3321,2025-03-07T09:53:06.941735-08:00,1011.666259765625,10.717488,10717.488 +3322,2025-03-07T09:53:17.664213-08:00,1011.6775512695312,10.722478,10722.478 +3323,2025-03-07T09:53:28.386494-08:00,1011.66796875,10.722281,10722.281 +3324,2025-03-07T09:53:39.111221-08:00,1011.6973266601562,10.724727,10724.727 +3325,2025-03-07T09:53:49.840157-08:00,1011.674560546875,10.728936,10728.936 +3326,2025-03-07T09:54:00.559140-08:00,1011.674560546875,10.718983,10718.983 +3327,2025-03-07T09:54:11.285319-08:00,1011.7142333984375,10.726179,10726.179 +3328,2025-03-07T09:54:21.998148-08:00,1011.674560546875,10.712829,10712.829 +3329,2025-03-07T09:54:32.720354-08:00,1011.673095703125,10.722206,10722.206 +3330,2025-03-07T09:54:43.446136-08:00,1011.6777954101562,10.725782,10725.782 +3331,2025-03-07T09:54:54.162320-08:00,1011.6796875,10.716184,10716.184 +3332,2025-03-07T09:55:04.887141-08:00,1011.6844482421875,10.724821,10724.821 +3333,2025-03-07T09:55:15.615376-08:00,1011.6550903320312,10.728235,10728.235 +3334,2025-03-07T09:55:26.330407-08:00,1011.6712646484375,10.715031,10715.031 +3335,2025-03-07T09:55:37.053444-08:00,1011.7042236328125,10.723037,10723.037 +3336,2025-03-07T09:55:47.782310-08:00,1011.6697387695312,10.728866,10728.866 +3337,2025-03-07T09:55:58.502235-08:00,1011.6911010742188,10.719925,10719.925 +3338,2025-03-07T09:56:09.223140-08:00,1011.6844482421875,10.720905,10720.905 +3339,2025-03-07T09:56:19.936464-08:00,1011.7025146484375,10.713324,10713.324 +3340,2025-03-07T09:56:30.655142-08:00,1011.66650390625,10.718678,10718.678 +3341,2025-03-07T09:56:41.376514-08:00,1011.7061157226562,10.721372,10721.372 +3342,2025-03-07T09:56:52.093342-08:00,1011.7090454101562,10.716828,10716.828 +3343,2025-03-07T09:57:02.819888-08:00,1011.6958618164062,10.726546,10726.546 +3344,2025-03-07T09:57:13.544141-08:00,1011.65625,10.724253,10724.253 +3345,2025-03-07T09:57:24.265253-08:00,1011.6973266601562,10.721112,10721.112 +3346,2025-03-07T09:57:34.985137-08:00,1011.7073364257812,10.719884,10719.884 +3347,2025-03-07T09:57:45.705391-08:00,1011.7022094726562,10.720254,10720.254 +3348,2025-03-07T09:57:56.428449-08:00,1011.7318725585938,10.723058,10723.058 +3349,2025-03-07T09:58:07.149303-08:00,1011.6989135742188,10.720854,10720.854 +3350,2025-03-07T09:58:17.871175-08:00,1011.6806030273438,10.721872,10721.872 +3351,2025-03-07T09:58:28.592922-08:00,1011.6824951171875,10.721747,10721.747 +3352,2025-03-07T09:58:39.319137-08:00,1011.7168579101562,10.726215,10726.215 +3353,2025-03-07T09:58:50.046349-08:00,1011.7037353515625,10.727212,10727.212 +3354,2025-03-07T09:59:00.771148-08:00,1011.6939086914062,10.724799,10724.799 +3355,2025-03-07T09:59:11.486521-08:00,1011.7301635742188,10.715373,10715.373 +3356,2025-03-07T09:59:22.213305-08:00,1011.7118530273438,10.726784,10726.784 +3357,2025-03-07T09:59:32.942265-08:00,1011.7218017578125,10.72896,10728.96 +3358,2025-03-07T09:59:43.668165-08:00,1011.7118530273438,10.7259,10725.9 +3359,2025-03-07T09:59:54.392229-08:00,1011.7203369140625,10.724064,10724.064 +3360,2025-03-07T10:00:05.111140-08:00,1011.700439453125,10.718911,10718.911 +3361,2025-03-07T10:00:15.832211-08:00,1011.744873046875,10.721071,10721.071 +3362,2025-03-07T10:00:26.548348-08:00,1011.718505859375,10.716137,10716.137 +3363,2025-03-07T10:00:37.279290-08:00,1011.718505859375,10.730942,10730.942 +3364,2025-03-07T10:00:48.004786-08:00,1011.6837768554688,10.725496,10725.496 +3365,2025-03-07T10:00:58.726450-08:00,1011.731689453125,10.721664,10721.664 +3366,2025-03-07T10:01:09.447499-08:00,1011.7034301757812,10.721049,10721.049 +3367,2025-03-07T10:01:20.169339-08:00,1011.7134399414062,10.72184,10721.84 +3368,2025-03-07T10:01:30.897584-08:00,1011.7134399414062,10.728245,10728.245 +3369,2025-03-07T10:01:41.613139-08:00,1011.719970703125,10.715555,10715.555 +3370,2025-03-07T10:01:52.340324-08:00,1011.7251586914062,10.727185,10727.185 +3371,2025-03-07T10:02:03.071350-08:00,1011.7332153320312,10.731026,10731.026 +3372,2025-03-07T10:02:13.787366-08:00,1011.75146484375,10.716016,10716.016 +3373,2025-03-07T10:02:24.517213-08:00,1011.7365112304688,10.729847,10729.847 +3374,2025-03-07T10:02:35.243143-08:00,1011.7796630859375,10.72593,10725.93 +3375,2025-03-07T10:02:45.964163-08:00,1011.7943725585938,10.72102,10721.02 +3376,2025-03-07T10:02:56.695285-08:00,1011.78955078125,10.731122,10731.122 +3377,2025-03-07T10:03:07.415586-08:00,1011.816162109375,10.720301,10720.301 +3378,2025-03-07T10:03:18.141138-08:00,1011.7816162109375,10.725552,10725.552 +3379,2025-03-07T10:03:28.867232-08:00,1011.7899780273438,10.726094,10726.094 +3380,2025-03-07T10:03:39.589168-08:00,1011.7704467773438,10.721936,10721.936 +3381,2025-03-07T10:03:50.316570-08:00,1011.7740478515625,10.727402,10727.402 +3382,2025-03-07T10:04:01.047139-08:00,1011.7742919921875,10.730569,10730.569 +3383,2025-03-07T10:04:11.768141-08:00,1011.772705078125,10.721002,10721.002 +3384,2025-03-07T10:04:22.487440-08:00,1011.7862548828125,10.719299,10719.299 +3385,2025-03-07T10:04:33.213141-08:00,1011.8046875,10.725701,10725.701 +3386,2025-03-07T10:04:43.934313-08:00,1011.7554931640625,10.721172,10721.172 +3387,2025-03-07T10:04:54.666143-08:00,1011.7770385742188,10.73183,10731.83 +3388,2025-03-07T10:05:05.384399-08:00,1011.7806396484375,10.718256,10718.256 +3389,2025-03-07T10:05:16.112138-08:00,1011.7625122070312,10.727739,10727.739 +3390,2025-03-07T10:05:26.831309-08:00,1011.767578125,10.719171,10719.171 +3391,2025-03-07T10:05:37.560473-08:00,1011.7924194335938,10.729164,10729.164 +3392,2025-03-07T10:05:48.280160-08:00,1011.7926635742188,10.719687,10719.687 +3393,2025-03-07T10:05:59.002139-08:00,1011.7893676757812,10.721979,10721.979 +3394,2025-03-07T10:06:09.722400-08:00,1011.7665405273438,10.720261,10720.261 +3395,2025-03-07T10:06:20.449334-08:00,1011.7796630859375,10.726934,10726.934 +3396,2025-03-07T10:06:31.176141-08:00,1011.7584228515625,10.726807,10726.807 +3397,2025-03-07T10:06:41.900175-08:00,1011.7879638671875,10.724034,10724.034 +3398,2025-03-07T10:06:52.619291-08:00,1011.763427734375,10.719116,10719.116 +3399,2025-03-07T10:07:03.343136-08:00,1011.7831420898438,10.723845,10723.845 +3400,2025-03-07T10:07:14.070251-08:00,1011.7801513671875,10.727115,10727.115 +3401,2025-03-07T10:07:24.786197-08:00,1011.75048828125,10.715946,10715.946 +3402,2025-03-07T10:07:35.506383-08:00,1011.7570190429688,10.720186,10720.186 +3403,2025-03-07T10:07:46.236312-08:00,1011.7852172851562,10.729929,10729.929 +3404,2025-03-07T10:07:56.951337-08:00,1011.7357788085938,10.715025,10715.025 +3405,2025-03-07T10:08:07.669138-08:00,1011.783447265625,10.717801,10717.801 +3406,2025-03-07T10:08:18.390341-08:00,1011.7518920898438,10.721203,10721.203 +3407,2025-03-07T10:08:29.118135-08:00,1011.7474975585938,10.727794,10727.794 +3408,2025-03-07T10:08:39.837141-08:00,1011.7935791015625,10.719006,10719.006 +3409,2025-03-07T10:08:50.558167-08:00,1011.7555541992188,10.721026,10721.026 +3410,2025-03-07T10:09:01.278235-08:00,1011.7341918945312,10.720068,10720.068 +3411,2025-03-07T10:09:12.006373-08:00,1011.76220703125,10.728138,10728.138 +3412,2025-03-07T10:09:22.724147-08:00,1011.7457275390625,10.717774,10717.774 +3413,2025-03-07T10:09:33.447160-08:00,1011.7372436523438,10.723013,10723.013 +3414,2025-03-07T10:09:44.172566-08:00,1011.7372436523438,10.725406,10725.406 +3415,2025-03-07T10:09:54.895797-08:00,1011.7471923828125,10.723231,10723.231 +3416,2025-03-07T10:10:05.615141-08:00,1011.763427734375,10.719344,10719.344 +3417,2025-03-07T10:10:16.334826-08:00,1011.7882690429688,10.719685,10719.685 +3418,2025-03-07T10:10:27.059357-08:00,1011.7865600585938,10.724531,10724.531 +3419,2025-03-07T10:10:37.786325-08:00,1011.7849731445312,10.726968,10726.968 +3420,2025-03-07T10:10:48.509142-08:00,1011.7616577148438,10.722817,10722.817 +3421,2025-03-07T10:10:59.228724-08:00,1011.7832641601562,10.719582,10719.582 +3422,2025-03-07T10:11:09.958138-08:00,1011.7584228515625,10.729414,10729.414 +3423,2025-03-07T10:11:20.683385-08:00,1011.7532958984375,10.725247,10725.247 +3424,2025-03-07T10:11:31.404347-08:00,1011.755126953125,10.720962,10720.962 +3425,2025-03-07T10:11:42.132685-08:00,1011.7581176757812,10.728338,10728.338 +3426,2025-03-07T10:11:52.867318-08:00,1011.7401733398438,10.734633,10734.633 +3427,2025-03-07T10:12:03.587355-08:00,1011.7564086914062,10.720037,10720.037 +3428,2025-03-07T10:12:14.319337-08:00,1011.7449951171875,10.731982,10731.982 +3429,2025-03-07T10:12:25.043141-08:00,1011.767822265625,10.723804,10723.804 +3430,2025-03-07T10:12:35.758502-08:00,1011.7447509765625,10.715361,10715.361 +3431,2025-03-07T10:12:46.489139-08:00,1011.7462768554688,10.730637,10730.637 +3432,2025-03-07T10:12:57.217206-08:00,1011.7279663085938,10.728067,10728.067 +3433,2025-03-07T10:13:07.945248-08:00,1011.7642822265625,10.728042,10728.042 +3434,2025-03-07T10:13:18.673164-08:00,1011.7742309570312,10.727916,10727.916 +3435,2025-03-07T10:13:29.395432-08:00,1011.7888793945312,10.722268,10722.268 +3436,2025-03-07T10:13:40.125008-08:00,1011.78564453125,10.729576,10729.576 +3437,2025-03-07T10:13:50.848351-08:00,1011.7556762695312,10.723343,10723.343 +3438,2025-03-07T10:14:01.582533-08:00,1011.7440795898438,10.734182,10734.182 +3439,2025-03-07T10:14:12.306287-08:00,1011.7554931640625,10.723754,10723.754 +3440,2025-03-07T10:14:23.030217-08:00,1011.7488403320312,10.72393,10723.93 +3441,2025-03-07T10:14:33.755141-08:00,1011.753662109375,10.724924,10724.924 +3442,2025-03-07T10:14:44.486136-08:00,1011.7636108398438,10.730995,10730.995 +3443,2025-03-07T10:14:55.212323-08:00,1011.7537231445312,10.726187,10726.187 +3444,2025-03-07T10:15:05.931342-08:00,1011.7485961914062,10.719019,10719.019 +3445,2025-03-07T10:15:16.659317-08:00,1011.7814331054688,10.727975,10727.975 +3446,2025-03-07T10:15:27.383175-08:00,1011.7979125976562,10.723858,10723.858 +3447,2025-03-07T10:15:38.112533-08:00,1011.7993774414062,10.729358,10729.358 +3448,2025-03-07T10:15:48.842139-08:00,1011.8026733398438,10.729606,10729.606 +3449,2025-03-07T10:15:59.563242-08:00,1011.7859497070312,10.721103,10721.103 +3450,2025-03-07T10:16:10.289414-08:00,1011.7614135742188,10.726172,10726.172 +3451,2025-03-07T10:16:21.018207-08:00,1011.79736328125,10.728793,10728.793 +3452,2025-03-07T10:16:31.745339-08:00,1011.795654296875,10.727132,10727.132 +3453,2025-03-07T10:16:42.476168-08:00,1011.783935546875,10.730829,10730.829 +3454,2025-03-07T10:16:53.205141-08:00,1011.7608032226562,10.728973,10728.973 +3455,2025-03-07T10:17:03.925052-08:00,1011.8367309570312,10.719911,10719.911 +3456,2025-03-07T10:17:14.649141-08:00,1011.8132934570312,10.724089,10724.089 +3457,2025-03-07T10:17:25.379327-08:00,1011.8019409179688,10.730186,10730.186 +3458,2025-03-07T10:17:36.112342-08:00,1011.79833984375,10.733015,10733.015 +3459,2025-03-07T10:17:46.836140-08:00,1011.8214721679688,10.723798,10723.798 +3460,2025-03-07T10:17:57.564391-08:00,1011.7965698242188,10.728251,10728.251 +3461,2025-03-07T10:18:08.291353-08:00,1011.8212280273438,10.726962,10726.962 +3462,2025-03-07T10:18:19.012963-08:00,1011.842529296875,10.72161,10721.61 +3463,2025-03-07T10:18:29.737289-08:00,1011.798095703125,10.724326,10724.326 +3464,2025-03-07T10:18:40.457245-08:00,1011.842529296875,10.719956,10719.956 +3465,2025-03-07T10:18:51.187250-08:00,1011.834228515625,10.730005,10730.005 +3466,2025-03-07T10:19:01.915143-08:00,1011.8060302734375,10.727893,10727.893 +3467,2025-03-07T10:19:12.633189-08:00,1011.8093872070312,10.718046,10718.046 +3468,2025-03-07T10:19:23.357359-08:00,1011.8075561523438,10.72417,10724.17 +3469,2025-03-07T10:19:34.082038-08:00,1011.80908203125,10.724679,10724.679 +3470,2025-03-07T10:19:44.813141-08:00,1011.7923583984375,10.731103,10731.103 +3471,2025-03-07T10:19:55.535063-08:00,1011.8007202148438,10.721922,10721.922 +3472,2025-03-07T10:20:06.258175-08:00,1011.815185546875,10.723112,10723.112 +3473,2025-03-07T10:20:16.987143-08:00,1011.8067016601562,10.728968,10728.968 +3474,2025-03-07T10:20:27.711386-08:00,1011.790283203125,10.724243,10724.243 +3475,2025-03-07T10:20:38.442142-08:00,1011.7899780273438,10.730756,10730.756 +3476,2025-03-07T10:20:49.165349-08:00,1011.7932739257812,10.723207,10723.207 +3477,2025-03-07T10:20:59.885474-08:00,1011.7915649414062,10.720125,10720.125 +3478,2025-03-07T10:21:10.608314-08:00,1011.7762451171875,10.72284,10722.84 +3479,2025-03-07T10:21:21.337159-08:00,1011.7974853515625,10.728845,10728.845 +3480,2025-03-07T10:21:32.061349-08:00,1011.7726440429688,10.72419,10724.19 +3481,2025-03-07T10:21:42.792210-08:00,1011.7906494140625,10.730861,10730.861 +3482,2025-03-07T10:21:53.514141-08:00,1011.76904296875,10.721931,10721.931 +3483,2025-03-07T10:22:04.243308-08:00,1011.7837524414062,10.729167,10729.167 +3484,2025-03-07T10:22:14.963174-08:00,1011.781982421875,10.719866,10719.866 +3485,2025-03-07T10:22:25.689542-08:00,1011.7852172851562,10.726368,10726.368 +3486,2025-03-07T10:22:36.420606-08:00,1011.796630859375,10.731064,10731.064 +3487,2025-03-07T10:22:47.151217-08:00,1011.7867431640625,10.730611,10730.611 +3488,2025-03-07T10:22:57.875329-08:00,1011.798095703125,10.724112,10724.112 +3489,2025-03-07T10:23:08.595135-08:00,1011.7798461914062,10.719806,10719.806 +3490,2025-03-07T10:23:19.326275-08:00,1011.7714233398438,10.73114,10731.14 +3491,2025-03-07T10:23:30.049136-08:00,1011.7664184570312,10.722861,10722.861 +3492,2025-03-07T10:23:40.775143-08:00,1011.7744750976562,10.726007,10726.007 +3493,2025-03-07T10:23:51.496142-08:00,1011.7777099609375,10.720999,10720.999 +3494,2025-03-07T10:24:02.226141-08:00,1011.785888671875,10.729999,10729.999 +3495,2025-03-07T10:24:12.941150-08:00,1011.767822265625,10.715009,10715.009 +3496,2025-03-07T10:24:23.665170-08:00,1011.782470703125,10.72402,10724.02 +3497,2025-03-07T10:24:34.391371-08:00,1011.813720703125,10.726201,10726.201 +3498,2025-03-07T10:24:45.115772-08:00,1011.788818359375,10.724401,10724.401 +3499,2025-03-07T10:24:55.841617-08:00,1011.8101806640625,10.725845,10725.845 +3500,2025-03-07T10:25:06.570171-08:00,1011.8119506835938,10.728554,10728.554 +3501,2025-03-07T10:25:17.285336-08:00,1011.8395385742188,10.715165,10715.165 +3502,2025-03-07T10:25:28.014143-08:00,1011.8428344726562,10.728807,10728.807 +3503,2025-03-07T10:25:38.737596-08:00,1011.8574829101562,10.723453,10723.453 +3504,2025-03-07T10:25:49.464141-08:00,1011.83447265625,10.726545,10726.545 +3505,2025-03-07T10:26:00.182158-08:00,1011.8574829101562,10.718017,10718.017 +3506,2025-03-07T10:26:10.899194-08:00,1011.802978515625,10.717036,10717.036 +3507,2025-03-07T10:26:21.628325-08:00,1011.8326416015625,10.729131,10729.131 +3508,2025-03-07T10:26:32.358165-08:00,1011.8209228515625,10.72984,10729.84 +3509,2025-03-07T10:26:43.077357-08:00,1011.8179931640625,10.719192,10719.192 +3510,2025-03-07T10:26:53.797313-08:00,1011.8458862304688,10.719956,10719.956 +3511,2025-03-07T10:27:04.524211-08:00,1011.8392333984375,10.726898,10726.898 +3512,2025-03-07T10:27:15.255363-08:00,1011.8275146484375,10.731152,10731.152 +3513,2025-03-07T10:27:25.977144-08:00,1011.8473510742188,10.721781,10721.781 +3514,2025-03-07T10:27:36.708149-08:00,1011.8161010742188,10.731005,10731.005 +3515,2025-03-07T10:27:47.428138-08:00,1011.8440551757812,10.719989,10719.989 +3516,2025-03-07T10:27:58.154347-08:00,1011.817626953125,10.726209,10726.209 +3517,2025-03-07T10:28:08.874144-08:00,1011.8440551757812,10.719797,10719.797 +3518,2025-03-07T10:28:19.602138-08:00,1011.8455200195312,10.727994,10727.994 +3519,2025-03-07T10:28:30.329323-08:00,1011.8275146484375,10.727185,10727.185 +3520,2025-03-07T10:28:41.046544-08:00,1011.8304443359375,10.717221,10717.221 +3521,2025-03-07T10:28:51.771329-08:00,1011.8107299804688,10.724785,10724.785 +3522,2025-03-07T10:29:02.501141-08:00,1011.8323364257812,10.729812,10729.812 +3523,2025-03-07T10:29:13.223531-08:00,1011.8074340820312,10.72239,10722.39 +3524,2025-03-07T10:29:23.951163-08:00,1011.8239135742188,10.727632,10727.632 +3525,2025-03-07T10:29:34.676572-08:00,1011.8418579101562,10.725409,10725.409 +3526,2025-03-07T10:29:45.395345-08:00,1011.8287353515625,10.718773,10718.773 +3527,2025-03-07T10:29:56.119144-08:00,1011.8056030273438,10.723799,10723.799 +3528,2025-03-07T10:30:06.844169-08:00,1011.7839965820312,10.725025,10725.025 +3529,2025-03-07T10:30:17.578219-08:00,1011.7806396484375,10.73405,10734.05 +3530,2025-03-07T10:30:28.299358-08:00,1011.757568359375,10.721139,10721.139 +3531,2025-03-07T10:30:39.027141-08:00,1011.7740478515625,10.727783,10727.783 +3532,2025-03-07T10:30:49.749399-08:00,1011.7725830078125,10.722258,10722.258 +3533,2025-03-07T10:31:00.480166-08:00,1011.7740478515625,10.730767,10730.767 +3534,2025-03-07T10:31:11.204209-08:00,1011.7952880859375,10.724043,10724.043 +3535,2025-03-07T10:31:21.933322-08:00,1011.7821655273438,10.729113,10729.113 +3536,2025-03-07T10:31:32.661136-08:00,1011.7839965820312,10.727814,10727.814 +3537,2025-03-07T10:31:43.389185-08:00,1011.7789306640625,10.728049,10728.049 +3538,2025-03-07T10:31:54.116167-08:00,1011.7789306640625,10.726982,10726.982 +3539,2025-03-07T10:32:04.845177-08:00,1011.770751953125,10.72901,10729.01 +3540,2025-03-07T10:32:15.568531-08:00,1011.720947265625,10.723354,10723.354 +3541,2025-03-07T10:32:26.297138-08:00,1011.7128295898438,10.728607,10728.607 +3542,2025-03-07T10:32:37.025146-08:00,1011.7755737304688,10.728008,10728.008 +3543,2025-03-07T10:32:47.747410-08:00,1011.7689208984375,10.722264,10722.264 +3544,2025-03-07T10:32:58.466478-08:00,1011.7672119140625,10.719068,10719.068 +3545,2025-03-07T10:33:09.196649-08:00,1011.7803344726562,10.730171,10730.171 +3546,2025-03-07T10:33:19.918352-08:00,1011.7755737304688,10.721703,10721.703 +3547,2025-03-07T10:33:30.643400-08:00,1011.7623291015625,10.725048,10725.048 +3548,2025-03-07T10:33:41.375142-08:00,1011.7821655273438,10.731742,10731.742 +3549,2025-03-07T10:33:52.090319-08:00,1011.7293701171875,10.715177,10715.177 +3550,2025-03-07T10:34:02.814139-08:00,1011.7587280273438,10.72382,10723.82 +3551,2025-03-07T10:34:13.543281-08:00,1011.778564453125,10.729142,10729.142 +3552,2025-03-07T10:34:24.259141-08:00,1011.7718505859375,10.71586,10715.86 +3553,2025-03-07T10:34:34.982976-08:00,1011.791748046875,10.723835,10723.835 +3554,2025-03-07T10:34:45.711138-08:00,1011.7803344726562,10.728162,10728.162 +3555,2025-03-07T10:34:56.429141-08:00,1011.7521362304688,10.718003,10718.003 +3556,2025-03-07T10:35:07.152694-08:00,1011.8163452148438,10.723553,10723.553 +3557,2025-03-07T10:35:17.878328-08:00,1011.7869262695312,10.725634,10725.634 +3558,2025-03-07T10:35:28.610542-08:00,1011.7672119140625,10.732214,10732.214 +3559,2025-03-07T10:35:39.326140-08:00,1011.7242431640625,10.715598,10715.598 +3560,2025-03-07T10:35:50.056385-08:00,1011.7454833984375,10.730245,10730.245 +3561,2025-03-07T10:36:00.770200-08:00,1011.7454833984375,10.713815,10713.815 +3562,2025-03-07T10:36:11.497323-08:00,1011.7454833984375,10.727123,10727.123 +3563,2025-03-07T10:36:22.217141-08:00,1011.8049926757812,10.719818,10719.818 +3564,2025-03-07T10:36:32.944368-08:00,1011.7704467773438,10.727227,10727.227 +3565,2025-03-07T10:36:43.672207-08:00,1011.79833984375,10.727839,10727.839 +3566,2025-03-07T10:36:54.397336-08:00,1011.7835693359375,10.725129,10725.129 +3567,2025-03-07T10:37:05.130622-08:00,1011.7803344726562,10.733286,10733.286 +3568,2025-03-07T10:37:15.853139-08:00,1011.7572021484375,10.722517,10722.517 +3569,2025-03-07T10:37:26.578303-08:00,1011.7506103515625,10.725164,10725.164 +3570,2025-03-07T10:37:37.303410-08:00,1011.778564453125,10.725107,10725.107 +3571,2025-03-07T10:37:48.025965-08:00,1011.7704467773438,10.722555,10722.555 +3572,2025-03-07T10:37:58.749143-08:00,1011.7506103515625,10.723178,10723.178 +3573,2025-03-07T10:38:09.472376-08:00,1011.791748046875,10.723233,10723.233 +3574,2025-03-07T10:38:20.197139-08:00,1011.778564453125,10.724763,10724.763 +3575,2025-03-07T10:38:30.914835-08:00,1011.7572021484375,10.717696,10717.696 +3576,2025-03-07T10:38:41.642208-08:00,1011.78515625,10.727373,10727.373 +3577,2025-03-07T10:38:52.365139-08:00,1011.7506103515625,10.722931,10722.931 +3578,2025-03-07T10:39:03.091317-08:00,1011.7718505859375,10.726178,10726.178 +3579,2025-03-07T10:39:13.811345-08:00,1011.7506103515625,10.720028,10720.028 +3580,2025-03-07T10:39:24.527141-08:00,1011.7755737304688,10.715796,10715.796 +3581,2025-03-07T10:39:35.255141-08:00,1011.7557983398438,10.728,10728.0 +3582,2025-03-07T10:39:45.974139-08:00,1011.7638549804688,10.718998,10718.998 +3583,2025-03-07T10:39:56.697644-08:00,1011.716064453125,10.723505,10723.505 +3584,2025-03-07T10:40:07.425908-08:00,1011.7506103515625,10.728264,10728.264 +3585,2025-03-07T10:40:18.147141-08:00,1011.7718505859375,10.721233,10721.233 +3586,2025-03-07T10:40:28.871613-08:00,1011.7572021484375,10.724472,10724.472 +3587,2025-03-07T10:40:39.589137-08:00,1011.7689208984375,10.717524,10717.524 +3588,2025-03-07T10:40:50.314365-08:00,1011.7227172851562,10.725228,10725.228 +3589,2025-03-07T10:41:01.036167-08:00,1011.7638549804688,10.721802,10721.802 +3590,2025-03-07T10:41:11.753166-08:00,1011.7293701171875,10.716999,10716.999 +3591,2025-03-07T10:41:22.480348-08:00,1011.7557983398438,10.727182,10727.182 +3592,2025-03-07T10:41:33.205318-08:00,1011.7407836914062,10.72497,10724.97 +3593,2025-03-07T10:41:43.922311-08:00,1011.7770385742188,10.716993,10716.993 +3594,2025-03-07T10:41:54.649325-08:00,1011.7557983398438,10.727014,10727.014 +3595,2025-03-07T10:42:05.374121-08:00,1011.7704467773438,10.724796,10724.796 +3596,2025-03-07T10:42:16.098177-08:00,1011.803466796875,10.724056,10724.056 +3597,2025-03-07T10:42:26.822141-08:00,1011.7623291015625,10.723964,10723.964 +3598,2025-03-07T10:42:37.551354-08:00,1011.75390625,10.729213,10729.213 +3599,2025-03-07T10:42:48.270135-08:00,1011.7605590820312,10.718781,10718.781 +3600,2025-03-07T10:42:58.992330-08:00,1011.7525024414062,10.722195,10722.195 +3601,2025-03-07T10:43:09.716141-08:00,1011.7770385742188,10.723811,10723.811 +3602,2025-03-07T10:43:20.449136-08:00,1011.7789306640625,10.732995,10732.995 +3603,2025-03-07T10:43:31.164230-08:00,1011.7869262695312,10.715094,10715.094 +3604,2025-03-07T10:43:41.889361-08:00,1011.7821655273438,10.725131,10725.131 +3605,2025-03-07T10:43:52.615328-08:00,1011.7821655273438,10.725967,10725.967 +3606,2025-03-07T10:44:03.335166-08:00,1011.7887573242188,10.719838,10719.838 +3607,2025-03-07T10:44:14.055358-08:00,1011.75390625,10.720192,10720.192 +3608,2025-03-07T10:44:24.785141-08:00,1011.7605590820312,10.729783,10729.783 +3609,2025-03-07T10:44:35.503322-08:00,1011.7704467773438,10.718181,10718.181 +3610,2025-03-07T10:44:46.225368-08:00,1011.8019409179688,10.722046,10722.046 +3611,2025-03-07T10:44:56.948492-08:00,1011.8019409179688,10.723124,10723.124 +3612,2025-03-07T10:45:07.664139-08:00,1011.7952880859375,10.715647,10715.647 +3613,2025-03-07T10:45:18.395584-08:00,1011.7803344726562,10.731445,10731.445 +3614,2025-03-07T10:45:29.113142-08:00,1011.7935791015625,10.717558,10717.558 +3615,2025-03-07T10:45:39.835531-08:00,1011.8133544921875,10.722389,10722.389 +3616,2025-03-07T10:45:50.560138-08:00,1011.7821655273438,10.724607,10724.607 +3617,2025-03-07T10:46:01.282941-08:00,1011.7623291015625,10.722803,10722.803 +3618,2025-03-07T10:46:12.006343-08:00,1011.7605590820312,10.723402,10723.402 +3619,2025-03-07T10:46:22.731236-08:00,1011.734130859375,10.724893,10724.893 +3620,2025-03-07T10:46:33.457156-08:00,1011.7193603515625,10.72592,10725.92 +3621,2025-03-07T10:46:44.177325-08:00,1011.7491455078125,10.720169,10720.169 +3622,2025-03-07T10:46:54.901142-08:00,1011.734130859375,10.723817,10723.817 +3623,2025-03-07T10:47:05.627167-08:00,1011.7672119140625,10.726025,10726.025 +3624,2025-03-07T10:47:16.357469-08:00,1011.745849609375,10.730302,10730.302 +3625,2025-03-07T10:47:27.081181-08:00,1011.72607421875,10.723712,10723.712 +3626,2025-03-07T10:47:37.805400-08:00,1011.75390625,10.724219,10724.219 +3627,2025-03-07T10:47:48.533141-08:00,1011.747314453125,10.727741,10727.741 +3628,2025-03-07T10:47:59.261139-08:00,1011.734130859375,10.727998,10727.998 +3629,2025-03-07T10:48:09.982335-08:00,1011.720947265625,10.721196,10721.196 +3630,2025-03-07T10:48:20.708225-08:00,1011.7274780273438,10.72589,10725.89 +3631,2025-03-07T10:48:31.428254-08:00,1011.716064453125,10.720029,10720.029 +3632,2025-03-07T10:48:42.148183-08:00,1011.7011108398438,10.719929,10719.929 +3633,2025-03-07T10:48:52.871187-08:00,1011.6878662109375,10.723004,10723.004 +3634,2025-03-07T10:49:03.602142-08:00,1011.7128295898438,10.730955,10730.955 +3635,2025-03-07T10:49:14.314635-08:00,1011.720947265625,10.712493,10712.493 +3636,2025-03-07T10:49:25.043139-08:00,1011.7076416015625,10.728504,10728.504 +3637,2025-03-07T10:49:35.767302-08:00,1011.7029418945312,10.724163,10724.163 +3638,2025-03-07T10:49:46.489436-08:00,1011.6929931640625,10.722134,10722.134 +3639,2025-03-07T10:49:57.211335-08:00,1011.716064453125,10.721899,10721.899 +3640,2025-03-07T10:50:07.940216-08:00,1011.6929931640625,10.728881,10728.881 +3641,2025-03-07T10:50:18.660209-08:00,1011.7095336914062,10.719993,10719.993 +3642,2025-03-07T10:50:29.389165-08:00,1011.716064453125,10.728956,10728.956 +3643,2025-03-07T10:50:40.106327-08:00,1011.7095336914062,10.717162,10717.162 +3644,2025-03-07T10:50:50.836139-08:00,1011.71435546875,10.729812,10729.812 +3645,2025-03-07T10:51:01.564341-08:00,1011.6945190429688,10.728202,10728.202 +3646,2025-03-07T10:51:12.282821-08:00,1011.6732177734375,10.71848,10718.48 +3647,2025-03-07T10:51:23.013148-08:00,1011.7029418945312,10.730327,10730.327 +3648,2025-03-07T10:51:33.728644-08:00,1011.6632690429688,10.715496,10715.496 +3649,2025-03-07T10:51:44.461140-08:00,1011.6599731445312,10.732496,10732.496 +3650,2025-03-07T10:51:55.182237-08:00,1011.6467895507812,10.721097,10721.097 +3651,2025-03-07T10:52:05.910143-08:00,1011.6534423828125,10.727906,10727.906 +3652,2025-03-07T10:52:16.685002-08:00,1011.65185546875,10.774859,10774.859 +3653,2025-03-07T10:52:27.402505-08:00,1011.6417236328125,10.717503,10717.503 +3654,2025-03-07T10:52:38.132919-08:00,1011.6614990234375,10.730414,10730.414 +3655,2025-03-07T10:52:48.852530-08:00,1011.689697265625,10.719611,10719.611 +3656,2025-03-07T10:52:59.577716-08:00,1011.6500854492188,10.725186,10725.186 +3657,2025-03-07T10:53:10.304682-08:00,1011.6681518554688,10.726966,10726.966 +3658,2025-03-07T10:53:21.026506-08:00,1011.6500854492188,10.721824,10721.824 +3659,2025-03-07T10:53:31.756714-08:00,1011.6434326171875,10.730208,10730.208 +3660,2025-03-07T10:53:42.483501-08:00,1011.6383666992188,10.726787,10726.787 +3661,2025-03-07T10:53:53.204734-08:00,1011.6317138671875,10.721233,10721.233 +3662,2025-03-07T10:54:03.929505-08:00,1011.6369018554688,10.724771,10724.771 +3663,2025-03-07T10:54:14.650715-08:00,1011.6218872070312,10.72121,10721.21 +3664,2025-03-07T10:54:25.386210-08:00,1011.6251831054688,10.735495,10735.495 +3665,2025-03-07T10:54:36.100617-08:00,1011.6303100585938,10.714407,10714.407 +3666,2025-03-07T10:54:46.833017-08:00,1011.620361328125,10.7324,10732.4 +3667,2025-03-07T10:54:57.556577-08:00,1011.6467895507812,10.72356,10723.56 +3668,2025-03-07T10:55:08.280884-08:00,1011.64013671875,10.724307,10724.307 +3669,2025-03-07T10:55:19.009258-08:00,1011.6170043945312,10.728374,10728.374 +3670,2025-03-07T10:55:29.733736-08:00,1011.6170043945312,10.724478,10724.478 +3671,2025-03-07T10:55:40.465719-08:00,1011.6009521484375,10.731983,10731.983 +3672,2025-03-07T10:55:51.187508-08:00,1011.5990600585938,10.721789,10721.789 +3673,2025-03-07T10:56:01.908695-08:00,1011.6107788085938,10.721187,10721.187 +3674,2025-03-07T10:56:12.634502-08:00,1011.63720703125,10.725807,10725.807 +3675,2025-03-07T10:56:23.365559-08:00,1011.6027221679688,10.731057,10731.057 +3676,2025-03-07T10:56:34.088507-08:00,1011.6144409179688,10.722948,10722.948 +3677,2025-03-07T10:56:44.811713-08:00,1011.6342163085938,10.723206,10723.206 +3678,2025-03-07T10:56:55.529629-08:00,1011.6294555664062,10.717916,10717.916 +3679,2025-03-07T10:57:06.258573-08:00,1011.6588134765625,10.728944,10728.944 +3680,2025-03-07T10:57:16.992102-08:00,1011.652587890625,10.733529,10733.529 +3681,2025-03-07T10:57:27.709550-08:00,1011.6709594726562,10.717448,10717.448 +3682,2025-03-07T10:57:38.437503-08:00,1011.6361083984375,10.727953,10727.953 +3683,2025-03-07T10:57:49.164640-08:00,1011.6528930664062,10.727137,10727.137 +3684,2025-03-07T10:57:59.890190-08:00,1011.6726684570312,10.72555,10725.55 +3685,2025-03-07T10:58:10.611577-08:00,1011.6822509765625,10.721387,10721.387 +3686,2025-03-07T10:58:21.336577-08:00,1011.6709594726562,10.725,10725.0 +3687,2025-03-07T10:58:32.062917-08:00,1011.7107543945312,10.72634,10726.34 +3688,2025-03-07T10:58:42.789504-08:00,1011.694580078125,10.726587,10726.587 +3689,2025-03-07T10:58:53.512764-08:00,1011.704833984375,10.72326,10723.26 +3690,2025-03-07T10:59:04.239507-08:00,1011.73486328125,10.726743,10726.743 +3691,2025-03-07T10:59:14.963608-08:00,1011.7546997070312,10.724101,10724.101 +3692,2025-03-07T10:59:25.692609-08:00,1011.7453002929688,10.729001,10729.001 +3693,2025-03-07T10:59:36.412708-08:00,1011.70751953125,10.720099,10720.099 +3694,2025-03-07T10:59:47.132711-08:00,1011.725830078125,10.720003,10720.003 +3695,2025-03-07T10:59:57.857536-08:00,1011.7198486328125,10.724825,10724.825 +3696,2025-03-07T11:00:08.584698-08:00,1011.72314453125,10.727162,10727.162 +3697,2025-03-07T11:00:19.303570-08:00,1011.7017822265625,10.718872,10718.872 +3698,2025-03-07T11:00:30.033350-08:00,1011.694091796875,10.72978,10729.78 +3699,2025-03-07T11:00:40.757597-08:00,1011.72216796875,10.724247,10724.247 +3700,2025-03-07T11:00:51.479591-08:00,1011.71923828125,10.721994,10721.994 +3701,2025-03-07T11:01:02.200801-08:00,1011.747314453125,10.72121,10721.21 +3702,2025-03-07T11:01:12.923725-08:00,1011.7212524414062,10.722924,10722.924 +3703,2025-03-07T11:01:23.645505-08:00,1011.7164306640625,10.72178,10721.78 +3704,2025-03-07T11:01:34.366526-08:00,1011.7313842773438,10.721021,10721.021 +3705,2025-03-07T11:01:45.093504-08:00,1011.7281494140625,10.726978,10726.978 +3706,2025-03-07T11:01:55.813727-08:00,1011.7298583984375,10.720223,10720.223 +3707,2025-03-07T11:02:06.528506-08:00,1011.7349853515625,10.714779,10714.779 +3708,2025-03-07T11:02:17.258011-08:00,1011.72509765625,10.729505,10729.505 +3709,2025-03-07T11:02:27.982720-08:00,1011.7217407226562,10.724709,10724.709 +3710,2025-03-07T11:02:38.700689-08:00,1011.713623046875,10.717969,10717.969 +3711,2025-03-07T11:02:49.423647-08:00,1011.7268676757812,10.722958,10722.958 +3712,2025-03-07T11:03:00.150689-08:00,1011.7382202148438,10.727042,10727.042 +3713,2025-03-07T11:03:10.871818-08:00,1011.7220458984375,10.721129,10721.129 +3714,2025-03-07T11:03:21.594817-08:00,1011.69384765625,10.722999,10722.999 +3715,2025-03-07T11:03:32.318525-08:00,1011.7285766601562,10.723708,10723.708 +3716,2025-03-07T11:03:43.044506-08:00,1011.6989135742188,10.725981,10725.981 +3717,2025-03-07T11:03:53.769674-08:00,1011.69384765625,10.725168,10725.168 +3718,2025-03-07T11:04:04.493506-08:00,1011.726806640625,10.723832,10723.832 +3719,2025-03-07T11:04:15.216692-08:00,1011.74658203125,10.723186,10723.186 +3720,2025-03-07T11:04:25.945766-08:00,1011.700439453125,10.729074,10729.074 +3721,2025-03-07T11:04:36.665506-08:00,1011.713623046875,10.71974,10719.74 +3722,2025-03-07T11:04:47.388532-08:00,1011.7106323242188,10.723026,10723.026 +3723,2025-03-07T11:04:58.108694-08:00,1011.7088012695312,10.720162,10720.162 +3724,2025-03-07T11:05:08.830001-08:00,1011.7154541015625,10.721307,10721.307 +3725,2025-03-07T11:05:19.551543-08:00,1011.7154541015625,10.721542,10721.542 +3726,2025-03-07T11:05:30.283529-08:00,1011.7301635742188,10.731986,10731.986 +3727,2025-03-07T11:05:40.999696-08:00,1011.7118530273438,10.716167,10716.167 +3728,2025-03-07T11:05:51.726872-08:00,1011.7268676757812,10.727176,10727.176 +3729,2025-03-07T11:06:02.454777-08:00,1011.700439453125,10.727905,10727.905 +3730,2025-03-07T11:06:13.177705-08:00,1011.73828125,10.722928,10722.928 +3731,2025-03-07T11:06:23.905525-08:00,1011.73828125,10.72782,10727.82 +3732,2025-03-07T11:06:34.622906-08:00,1011.7334594726562,10.717381,10717.381 +3733,2025-03-07T11:06:45.358506-08:00,1011.7284545898438,10.7356,10735.6 +3734,2025-03-07T11:06:56.076507-08:00,1011.731689453125,10.718001,10718.001 +3735,2025-03-07T11:07:06.804529-08:00,1011.692138671875,10.728022,10728.022 +3736,2025-03-07T11:07:17.527532-08:00,1011.7265625,10.723003,10723.003 +3737,2025-03-07T11:07:28.254689-08:00,1011.7167358398438,10.727157,10727.157 +3738,2025-03-07T11:07:38.978507-08:00,1011.7050170898438,10.723818,10723.818 +3739,2025-03-07T11:07:49.707948-08:00,1011.7230224609375,10.729441,10729.441 +3740,2025-03-07T11:08:00.429505-08:00,1011.7164306640625,10.721557,10721.557 +3741,2025-03-07T11:08:11.151738-08:00,1011.7146606445312,10.722233,10722.233 +3742,2025-03-07T11:08:21.872570-08:00,1011.7440795898438,10.720832,10720.832 +3743,2025-03-07T11:08:32.599713-08:00,1011.745849609375,10.727143,10727.143 +3744,2025-03-07T11:08:43.320501-08:00,1011.735595703125,10.720788,10720.788 +3745,2025-03-07T11:08:54.047708-08:00,1011.752197265625,10.727207,10727.207 +3746,2025-03-07T11:09:04.768505-08:00,1011.70751953125,10.720797,10720.797 +3747,2025-03-07T11:09:15.494887-08:00,1011.7173461914062,10.726382,10726.382 +3748,2025-03-07T11:09:26.220715-08:00,1011.7306518554688,10.725828,10725.828 +3749,2025-03-07T11:09:36.938505-08:00,1011.7386474609375,10.71779,10717.79 +3750,2025-03-07T11:09:47.667672-08:00,1011.71044921875,10.729167,10729.167 +3751,2025-03-07T11:09:58.389710-08:00,1011.71044921875,10.722038,10722.038 +3752,2025-03-07T11:10:09.115650-08:00,1011.70361328125,10.72594,10725.94 +3753,2025-03-07T11:10:19.838604-08:00,1011.7318725585938,10.722954,10722.954 +3754,2025-03-07T11:10:30.564697-08:00,1011.7315673828125,10.726093,10726.093 +3755,2025-03-07T11:10:41.296035-08:00,1011.7066650390625,10.731338,10731.338 +3756,2025-03-07T11:10:52.012504-08:00,1011.72314453125,10.716469,10716.469 +3757,2025-03-07T11:11:02.736612-08:00,1011.7263793945312,10.724108,10724.108 +3758,2025-03-07T11:11:13.460540-08:00,1011.7609252929688,10.723928,10723.928 +3759,2025-03-07T11:11:24.186309-08:00,1011.73095703125,10.725769,10725.769 +3760,2025-03-07T11:11:34.907505-08:00,1011.7327270507812,10.721196,10721.196 +3761,2025-03-07T11:11:45.636711-08:00,1011.7341918945312,10.729206,10729.206 +3762,2025-03-07T11:11:56.358674-08:00,1011.7390747070312,10.721963,10721.963 +3763,2025-03-07T11:12:07.084693-08:00,1011.725830078125,10.726019,10726.019 +3764,2025-03-07T11:12:17.805506-08:00,1011.7240600585938,10.720813,10720.813 +3765,2025-03-07T11:12:28.524675-08:00,1011.7207641601562,10.719169,10719.169 +3766,2025-03-07T11:12:39.260535-08:00,1011.7156372070312,10.73586,10735.86 +3767,2025-03-07T11:12:49.983507-08:00,1011.7039184570312,10.722972,10722.972 +3768,2025-03-07T11:13:00.710688-08:00,1011.7006225585938,10.727181,10727.181 +3769,2025-03-07T11:13:11.425507-08:00,1011.697021484375,10.714819,10714.819 +3770,2025-03-07T11:13:22.157916-08:00,1011.7003173828125,10.732409,10732.409 +3771,2025-03-07T11:13:32.877569-08:00,1011.6754760742188,10.719653,10719.653 +3772,2025-03-07T11:13:43.604764-08:00,1011.7380981445312,10.727195,10727.195 +3773,2025-03-07T11:13:54.327583-08:00,1011.7216186523438,10.722819,10722.819 +3774,2025-03-07T11:14:05.053720-08:00,1011.72314453125,10.726137,10726.137 +3775,2025-03-07T11:14:15.782531-08:00,1011.71142578125,10.728811,10728.811 +3776,2025-03-07T11:14:26.496692-08:00,1011.7146606445312,10.714161,10714.161 +3777,2025-03-07T11:14:37.229801-08:00,1011.7591552734375,10.733109,10733.109 +3778,2025-03-07T11:14:47.953505-08:00,1011.71435546875,10.723704,10723.704 +3779,2025-03-07T11:14:58.679691-08:00,1011.73388671875,10.726186,10726.186 +3780,2025-03-07T11:15:09.401507-08:00,1011.7423706054688,10.721816,10721.816 +3781,2025-03-07T11:15:20.128833-08:00,1011.7453002929688,10.727326,10727.326 +3782,2025-03-07T11:15:30.853505-08:00,1011.740478515625,10.724672,10724.672 +3783,2025-03-07T11:15:41.577508-08:00,1011.7237548828125,10.724003,10724.003 +3784,2025-03-07T11:15:52.304699-08:00,1011.73876953125,10.727191,10727.191 +3785,2025-03-07T11:16:03.036611-08:00,1011.6939697265625,10.731912,10731.912 +3786,2025-03-07T11:16:13.764922-08:00,1011.7171020507812,10.728311,10728.311 +3787,2025-03-07T11:16:24.487506-08:00,1011.7284545898438,10.722584,10722.584 +3788,2025-03-07T11:16:35.215607-08:00,1011.7302856445312,10.728101,10728.101 +3789,2025-03-07T11:16:45.945727-08:00,1011.678955078125,10.73012,10730.12 +3790,2025-03-07T11:16:56.672506-08:00,1011.705078125,10.726779,10726.779 +3791,2025-03-07T11:17:07.396600-08:00,1011.7134399414062,10.724094,10724.094 +3792,2025-03-07T11:17:18.129535-08:00,1011.7033081054688,10.732935,10732.935 +3793,2025-03-07T11:17:28.850508-08:00,1011.7146606445312,10.720973,10720.973 +3794,2025-03-07T11:17:39.574532-08:00,1011.72607421875,10.724024,10724.024 +3795,2025-03-07T11:17:50.296653-08:00,1011.6995849609375,10.722121,10722.121 +3796,2025-03-07T11:18:01.021675-08:00,1011.704345703125,10.725022,10725.022 +3797,2025-03-07T11:18:11.756309-08:00,1011.6945190429688,10.734634,10734.634 +3798,2025-03-07T11:18:22.482509-08:00,1011.7125244140625,10.7262,10726.2 +3799,2025-03-07T11:18:33.209583-08:00,1011.7385864257812,10.727074,10727.074 +3800,2025-03-07T11:18:43.927223-08:00,1011.70703125,10.71764,10717.64 +3801,2025-03-07T11:18:54.650807-08:00,1011.7433471679688,10.723584,10723.584 +3802,2025-03-07T11:19:05.380580-08:00,1011.7298583984375,10.729773,10729.773 +3803,2025-03-07T11:19:16.109906-08:00,1011.760986328125,10.729326,10729.326 +3804,2025-03-07T11:19:26.833882-08:00,1011.7279663085938,10.723976,10723.976 +3805,2025-03-07T11:19:37.554748-08:00,1011.7804565429688,10.720866,10720.866 +3806,2025-03-07T11:19:48.287703-08:00,1011.7423706054688,10.732955,10732.955 +3807,2025-03-07T11:19:59.014582-08:00,1011.76220703125,10.726879,10726.879 +3808,2025-03-07T11:20:09.733698-08:00,1011.7636108398438,10.719116,10719.116 +3809,2025-03-07T11:20:20.464755-08:00,1011.771728515625,10.731057,10731.057 +3810,2025-03-07T11:20:31.184677-08:00,1011.802978515625,10.719922,10719.922 +3811,2025-03-07T11:20:41.913507-08:00,1011.8378295898438,10.72883,10728.83 +3812,2025-03-07T11:20:52.633577-08:00,1011.8025512695312,10.72007,10720.07 +3813,2025-03-07T11:21:03.363689-08:00,1011.7845458984375,10.730112,10730.112 +3814,2025-03-07T11:21:14.088509-08:00,1011.7893676757812,10.72482,10724.82 +3815,2025-03-07T11:21:24.819883-08:00,1011.7988891601562,10.731374,10731.374 +3816,2025-03-07T11:21:35.549505-08:00,1011.7725219726562,10.729622,10729.622 +3817,2025-03-07T11:21:46.273507-08:00,1011.7824096679688,10.724002,10724.002 +3818,2025-03-07T11:21:56.991584-08:00,1011.7923583984375,10.718077,10718.077 +3819,2025-03-07T11:22:07.725592-08:00,1011.7622680664062,10.734008,10734.008 +3820,2025-03-07T11:22:18.447185-08:00,1011.7637329101562,10.721593,10721.593 +3821,2025-03-07T11:22:29.174507-08:00,1011.7703247070312,10.727322,10727.322 +3822,2025-03-07T11:22:39.895682-08:00,1011.8067016601562,10.721175,10721.175 +3823,2025-03-07T11:22:50.622627-08:00,1011.7982788085938,10.726945,10726.945 +3824,2025-03-07T11:23:01.346369-08:00,1011.8195190429688,10.723742,10723.742 +3825,2025-03-07T11:23:12.072711-08:00,1011.7996826171875,10.726342,10726.342 +3826,2025-03-07T11:23:22.799508-08:00,1011.7619018554688,10.726797,10726.797 +3827,2025-03-07T11:23:33.529697-08:00,1011.7420043945312,10.730189,10730.189 +3828,2025-03-07T11:23:44.246565-08:00,1011.7898559570312,10.716868,10716.868 +3829,2025-03-07T11:23:54.977690-08:00,1011.8110961914062,10.731125,10731.125 +3830,2025-03-07T11:24:05.698505-08:00,1011.8195190429688,10.720815,10720.815 +3831,2025-03-07T11:24:16.432507-08:00,1011.8078002929688,10.734002,10734.002 +3832,2025-03-07T11:24:27.157112-08:00,1011.791259765625,10.724605,10724.605 +3833,2025-03-07T11:24:37.880507-08:00,1011.7648315429688,10.723395,10723.395 +3834,2025-03-07T11:24:48.616414-08:00,1011.7890625,10.735907,10735.907 +3835,2025-03-07T11:24:59.342504-08:00,1011.7843017578125,10.72609,10726.09 +3836,2025-03-07T11:25:10.068507-08:00,1011.7659301757812,10.726003,10726.003 +3837,2025-03-07T11:25:20.788508-08:00,1011.7593994140625,10.720001,10720.001 +3838,2025-03-07T11:25:31.519746-08:00,1011.7809448242188,10.731238,10731.238 +3839,2025-03-07T11:25:42.243694-08:00,1011.7611083984375,10.723948,10723.948 +3840,2025-03-07T11:25:52.977638-08:00,1011.736572265625,10.733944,10733.944 +3841,2025-03-07T11:26:03.698720-08:00,1011.7578125,10.721082,10721.082 +3842,2025-03-07T11:26:14.426529-08:00,1011.74609375,10.727809,10727.809 +3843,2025-03-07T11:26:25.150508-08:00,1011.74609375,10.723979,10723.979 +3844,2025-03-07T11:26:35.876355-08:00,1011.7611083984375,10.725847,10725.847 +3845,2025-03-07T11:26:46.605500-08:00,1011.7545166015625,10.729145,10729.145 +3846,2025-03-07T11:26:57.330555-08:00,1011.797119140625,10.725055,10725.055 +3847,2025-03-07T11:27:08.057507-08:00,1011.7640380859375,10.726952,10726.952 +3848,2025-03-07T11:27:18.787504-08:00,1011.7376708984375,10.729997,10729.997 +3849,2025-03-07T11:27:29.512413-08:00,1011.767333984375,10.724909,10724.909 +3850,2025-03-07T11:27:40.242507-08:00,1011.7394409179688,10.730094,10730.094 +3851,2025-03-07T11:27:50.968545-08:00,1011.754150390625,10.726038,10726.038 +3852,2025-03-07T11:28:01.699862-08:00,1011.7608032226562,10.731317,10731.317 +3853,2025-03-07T11:28:12.424509-08:00,1011.7394409179688,10.724647,10724.647 +3854,2025-03-07T11:28:23.147102-08:00,1011.7592163085938,10.722593,10722.593 +3855,2025-03-07T11:28:33.874509-08:00,1011.74609375,10.727407,10727.407 +3856,2025-03-07T11:28:44.600649-08:00,1011.779052734375,10.72614,10726.14 +3857,2025-03-07T11:28:55.325967-08:00,1011.7559204101562,10.725318,10725.318 +3858,2025-03-07T11:29:06.055571-08:00,1011.7559204101562,10.729604,10729.604 +3859,2025-03-07T11:29:16.784675-08:00,1011.70458984375,10.729104,10729.104 +3860,2025-03-07T11:29:27.504711-08:00,1011.7229614257812,10.720036,10720.036 +3861,2025-03-07T11:29:38.239508-08:00,1011.7412719726562,10.734797,10734.797 +3862,2025-03-07T11:29:48.965682-08:00,1011.724365234375,10.726174,10726.174 +3863,2025-03-07T11:29:59.689508-08:00,1011.7327880859375,10.723826,10723.826 +3864,2025-03-07T11:30:10.414183-08:00,1011.7196044921875,10.724675,10724.675 +3865,2025-03-07T11:30:21.135582-08:00,1011.7064208984375,10.721399,10721.399 +3866,2025-03-07T11:30:31.861944-08:00,1011.7262573242188,10.726362,10726.362 +3867,2025-03-07T11:30:42.592576-08:00,1011.7327880859375,10.730632,10730.632 +3868,2025-03-07T11:30:53.315733-08:00,1011.734375,10.723157,10723.157 +3869,2025-03-07T11:31:04.051044-08:00,1011.7608032226562,10.735311,10735.311 +3870,2025-03-07T11:31:14.768503-08:00,1011.7608032226562,10.717459,10717.459 +3871,2025-03-07T11:31:25.501673-08:00,1011.7277221679688,10.73317,10733.17 +3872,2025-03-07T11:31:36.224710-08:00,1011.7490844726562,10.723037,10723.037 +3873,2025-03-07T11:31:46.949740-08:00,1011.7394409179688,10.72503,10725.03 +3874,2025-03-07T11:31:57.678505-08:00,1011.7490844726562,10.728765,10728.765 +3875,2025-03-07T11:32:08.409678-08:00,1011.7357788085938,10.731173,10731.173 +3876,2025-03-07T11:32:19.138661-08:00,1011.7357788085938,10.728983,10728.983 +3877,2025-03-07T11:32:29.859508-08:00,1011.7064208984375,10.720847,10720.847 +3878,2025-03-07T11:32:40.588507-08:00,1011.7210693359375,10.728999,10728.999 +3879,2025-03-07T11:32:51.314526-08:00,1011.754150390625,10.726019,10726.019 +3880,2025-03-07T11:33:02.050504-08:00,1011.74609375,10.735978,10735.978 +3881,2025-03-07T11:33:12.775529-08:00,1011.7474975585938,10.725025,10725.025 +3882,2025-03-07T11:33:23.504630-08:00,1011.7474975585938,10.729101,10729.101 +3883,2025-03-07T11:33:34.229508-08:00,1011.7952880859375,10.724878,10724.878 +3884,2025-03-07T11:33:44.953970-08:00,1011.767333984375,10.724462,10724.462 +3885,2025-03-07T11:33:55.685504-08:00,1011.754150390625,10.731534,10731.534 +3886,2025-03-07T11:34:06.411534-08:00,1011.729248046875,10.72603,10726.03 +3887,2025-03-07T11:34:17.140533-08:00,1011.755615234375,10.728999,10728.999 +3888,2025-03-07T11:34:27.858899-08:00,1011.729248046875,10.718366,10718.366 +3889,2025-03-07T11:34:38.584668-08:00,1011.742431640625,10.725769,10725.769 +3890,2025-03-07T11:34:49.321048-08:00,1011.7442016601562,10.73638,10736.38 +3891,2025-03-07T11:35:00.047722-08:00,1011.711181640625,10.726674,10726.674 +3892,2025-03-07T11:35:10.765506-08:00,1011.6829833984375,10.717784,10717.784 +3893,2025-03-07T11:35:21.496709-08:00,1011.6829833984375,10.731203,10731.203 +3894,2025-03-07T11:35:32.223866-08:00,1011.697998046875,10.727157,10727.157 +3895,2025-03-07T11:35:42.951506-08:00,1011.6961669921875,10.72764,10727.64 +3896,2025-03-07T11:35:53.671693-08:00,1011.7376708984375,10.720187,10720.187 +3897,2025-03-07T11:36:04.401111-08:00,1011.71923828125,10.729418,10729.418 +3898,2025-03-07T11:36:15.123094-08:00,1011.7390747070312,10.721983,10721.983 +3899,2025-03-07T11:36:25.860819-08:00,1011.729248046875,10.737725,10737.725 +3900,2025-03-07T11:36:36.581508-08:00,1011.7045288085938,10.720689,10720.689 +3901,2025-03-07T11:36:47.314843-08:00,1011.697998046875,10.733335,10733.335 +3902,2025-03-07T11:36:58.033504-08:00,1011.7574462890625,10.718661,10718.661 +3903,2025-03-07T11:37:08.763703-08:00,1011.7523193359375,10.730199,10730.199 +3904,2025-03-07T11:37:19.487504-08:00,1011.7507934570312,10.723801,10723.801 +3905,2025-03-07T11:37:30.218603-08:00,1011.7654418945312,10.731099,10731.099 +3906,2025-03-07T11:37:40.940964-08:00,1011.7640380859375,10.722361,10722.361 +3907,2025-03-07T11:37:51.669692-08:00,1011.7574462890625,10.728728,10728.728 +3908,2025-03-07T11:38:02.399936-08:00,1011.7490844726562,10.730244,10730.244 +3909,2025-03-07T11:38:13.121571-08:00,1011.7574462890625,10.721635,10721.635 +3910,2025-03-07T11:38:23.853507-08:00,1011.7376708984375,10.731936,10731.936 +3911,2025-03-07T11:38:34.574137-08:00,1011.7706298828125,10.72063,10720.63 +3912,2025-03-07T11:38:45.295755-08:00,1011.76220703125,10.721618,10721.618 +3913,2025-03-07T11:38:56.026262-08:00,1011.7442016601562,10.730507,10730.507 +3914,2025-03-07T11:39:06.751645-08:00,1011.7490844726562,10.725383,10725.383 +3915,2025-03-07T11:39:17.473504-08:00,1011.7608032226562,10.721859,10721.859 +3916,2025-03-07T11:39:28.193708-08:00,1011.7625732421875,10.720204,10720.204 +3917,2025-03-07T11:39:38.919720-08:00,1011.7692260742188,10.726012,10726.012 +3918,2025-03-07T11:39:49.645274-08:00,1011.724853515625,10.725554,10725.554 +3919,2025-03-07T11:40:00.373709-08:00,1011.7545166015625,10.728435,10728.435 +3920,2025-03-07T11:40:11.097709-08:00,1011.751220703125,10.724,10724.0 +3921,2025-03-07T11:40:21.821509-08:00,1011.74462890625,10.7238,10723.8 +3922,2025-03-07T11:40:32.555918-08:00,1011.7842407226562,10.734409,10734.409 +3923,2025-03-07T11:40:43.282502-08:00,1011.7743530273438,10.726584,10726.584 +3924,2025-03-07T11:40:54.009691-08:00,1011.7346801757812,10.727189,10727.189 +3925,2025-03-07T11:41:04.731314-08:00,1011.71484375,10.721623,10721.623 +3926,2025-03-07T11:41:15.453714-08:00,1011.7262573242188,10.7224,10722.4 +3927,2025-03-07T11:41:26.185031-08:00,1011.713134765625,10.731317,10731.317 +3928,2025-03-07T11:41:36.904505-08:00,1011.7281494140625,10.719474,10719.474 +3929,2025-03-07T11:41:47.640508-08:00,1011.7232666015625,10.736003,10736.003 +3930,2025-03-07T11:41:58.363091-08:00,1011.7100830078125,10.722583,10722.583 +3931,2025-03-07T11:42:09.080719-08:00,1011.7182006835938,10.717628,10717.628 +3932,2025-03-07T11:42:19.811281-08:00,1011.7164306640625,10.730562,10730.562 +3933,2025-03-07T11:42:30.527504-08:00,1011.7164306640625,10.716223,10716.223 +3934,2025-03-07T11:42:41.257899-08:00,1011.6885375976562,10.730395,10730.395 +3935,2025-03-07T11:42:51.980505-08:00,1011.7031860351562,10.722606,10722.606 +3936,2025-03-07T11:43:02.702687-08:00,1011.7031860351562,10.722182,10722.182 +3937,2025-03-07T11:43:13.432064-08:00,1011.7031860351562,10.729377,10729.377 +3938,2025-03-07T11:43:24.153510-08:00,1011.7494506835938,10.721446,10721.446 +3939,2025-03-07T11:43:34.880939-08:00,1011.7296142578125,10.727429,10727.429 +3940,2025-03-07T11:43:45.606509-08:00,1011.7017211914062,10.72557,10725.57 +3941,2025-03-07T11:43:56.335669-08:00,1011.7017211914062,10.72916,10729.16 +3942,2025-03-07T11:44:07.063470-08:00,1011.681884765625,10.727801,10727.801 +3943,2025-03-07T11:44:17.791534-08:00,1011.6900024414062,10.728064,10728.064 +3944,2025-03-07T11:44:28.518026-08:00,1011.670166015625,10.726492,10726.492 +3945,2025-03-07T11:44:39.238686-08:00,1011.6984252929688,10.72066,10720.66 +3946,2025-03-07T11:44:49.968627-08:00,1011.696533203125,10.729941,10729.941 +3947,2025-03-07T11:45:00.687157-08:00,1011.7002563476562,10.71853,10718.53 +3948,2025-03-07T11:45:11.416683-08:00,1011.6885375976562,10.729526,10729.526 +3949,2025-03-07T11:45:22.138507-08:00,1011.66064453125,10.721824,10721.824 +3950,2025-03-07T11:45:32.861885-08:00,1011.7017211914062,10.723378,10723.378 +3951,2025-03-07T11:45:43.584581-08:00,1011.6459350585938,10.722696,10722.696 +3952,2025-03-07T11:45:54.302697-08:00,1011.705322265625,10.718116,10718.116 +3953,2025-03-07T11:46:05.033507-08:00,1011.693603515625,10.73081,10730.81 +3954,2025-03-07T11:46:15.751873-08:00,1011.6921997070312,10.718366,10718.366 +3955,2025-03-07T11:46:26.489734-08:00,1011.68701171875,10.737861,10737.861 +3956,2025-03-07T11:46:37.209241-08:00,1011.7332763671875,10.719507,10719.507 +3957,2025-03-07T11:46:47.932952-08:00,1011.7347412109375,10.723711,10723.711 +3958,2025-03-07T11:46:58.656822-08:00,1011.7098388671875,10.72387,10723.87 +3959,2025-03-07T11:47:09.389705-08:00,1011.7296142578125,10.732883,10732.883 +3960,2025-03-07T11:47:20.104508-08:00,1011.708251953125,10.714803,10714.803 +3961,2025-03-07T11:47:30.832576-08:00,1011.7313842773438,10.728068,10728.068 +3962,2025-03-07T11:47:41.559715-08:00,1011.7182006835938,10.727139,10727.139 +3963,2025-03-07T11:47:52.285612-08:00,1011.7182006835938,10.725897,10725.897 +3964,2025-03-07T11:48:03.021948-08:00,1011.7313842773438,10.736336,10736.336 +3965,2025-03-07T11:48:13.743713-08:00,1011.7182006835938,10.721765,10721.765 +3966,2025-03-07T11:48:24.475541-08:00,1011.7479858398438,10.731828,10731.828 +3967,2025-03-07T11:48:35.198527-08:00,1011.7299194335938,10.722986,10722.986 +3968,2025-03-07T11:48:45.927666-08:00,1011.7281494140625,10.729139,10729.139 +3969,2025-03-07T11:48:56.652683-08:00,1011.7346801757812,10.725017,10725.017 +3970,2025-03-07T11:49:07.379580-08:00,1011.75634765625,10.726897,10726.897 +3971,2025-03-07T11:49:18.113508-08:00,1011.736572265625,10.733928,10733.928 +3972,2025-03-07T11:49:28.837835-08:00,1011.762939453125,10.724327,10724.327 +3973,2025-03-07T11:49:39.560501-08:00,1011.7299194335938,10.722666,10722.666 +3974,2025-03-07T11:49:50.293705-08:00,1011.7167358398438,10.733204,10733.204 +3975,2025-03-07T11:50:01.022773-08:00,1011.7578125,10.729068,10729.068 +3976,2025-03-07T11:50:11.753505-08:00,1011.7100830078125,10.730732,10730.732 +3977,2025-03-07T11:50:22.480724-08:00,1011.7181396484375,10.727219,10727.219 +3978,2025-03-07T11:50:33.203714-08:00,1011.73291015625,10.72299,10722.99 +3979,2025-03-07T11:50:43.939576-08:00,1011.7115478515625,10.735862,10735.862 +3980,2025-03-07T11:50:54.668669-08:00,1011.7130737304688,10.729093,10729.093 +3981,2025-03-07T11:51:05.389704-08:00,1011.7379760742188,10.721035,10721.035 +3982,2025-03-07T11:51:16.119526-08:00,1011.7115478515625,10.729822,10729.822 +3983,2025-03-07T11:51:26.850059-08:00,1011.7115478515625,10.730533,10730.533 +3984,2025-03-07T11:51:37.570691-08:00,1011.7115478515625,10.720632,10720.632 +3985,2025-03-07T11:51:48.303687-08:00,1011.7130737304688,10.732996,10732.996 +3986,2025-03-07T11:51:59.025507-08:00,1011.7232666015625,10.72182,10721.82 +3987,2025-03-07T11:52:09.758710-08:00,1011.7181396484375,10.733203,10733.203 +3988,2025-03-07T11:52:20.485699-08:00,1011.7100830078125,10.726989,10726.989 +3989,2025-03-07T11:52:31.221836-08:00,1011.739501953125,10.736137,10736.137 +3990,2025-03-07T11:52:41.945566-08:00,1011.6851806640625,10.72373,10723.73 +3991,2025-03-07T11:52:52.678567-08:00,1011.6866455078125,10.733001,10733.001 +3992,2025-03-07T11:53:03.398544-08:00,1011.652099609375,10.719977,10719.977 +3993,2025-03-07T11:53:14.129738-08:00,1011.6851806640625,10.731194,10731.194 +3994,2025-03-07T11:53:24.857541-08:00,1011.6337280273438,10.727803,10727.803 +3995,2025-03-07T11:53:35.583788-08:00,1011.6470336914062,10.726247,10726.247 +3996,2025-03-07T11:53:46.307543-08:00,1011.6470336914062,10.723755,10723.755 +3997,2025-03-07T11:53:57.039614-08:00,1011.6851806640625,10.732071,10732.071 +3998,2025-03-07T11:54:07.767719-08:00,1011.6799926757812,10.728105,10728.105 +3999,2025-03-07T11:54:18.496544-08:00,1011.6668090820312,10.728825,10728.825 +4000,2025-03-07T11:54:29.222924-08:00,1011.681884765625,10.72638,10726.38 +4001,2025-03-07T11:54:39.956708-08:00,1011.6487426757812,10.733784,10733.784 +4002,2025-03-07T11:54:50.678567-08:00,1011.70166015625,10.721859,10721.859 +4003,2025-03-07T11:55:01.404914-08:00,1011.6983642578125,10.726347,10726.347 +4004,2025-03-07T11:55:12.134542-08:00,1011.6785888671875,10.729628,10729.628 +4005,2025-03-07T11:55:22.857727-08:00,1011.6685791015625,10.723185,10723.185 +4006,2025-03-07T11:55:33.579847-08:00,1011.6437377929688,10.72212,10722.12 +4007,2025-03-07T11:55:44.307541-08:00,1011.6437377929688,10.727694,10727.694 +4008,2025-03-07T11:55:55.036718-08:00,1011.6356201171875,10.729177,10729.177 +4009,2025-03-07T11:56:05.763539-08:00,1011.6657104492188,10.726821,10726.821 +4010,2025-03-07T11:56:16.490740-08:00,1011.6429443359375,10.727201,10727.201 +4011,2025-03-07T11:56:27.215541-08:00,1011.6429443359375,10.724801,10724.801 +4012,2025-03-07T11:56:37.939546-08:00,1011.6617431640625,10.724005,10724.005 +4013,2025-03-07T11:56:48.660895-08:00,1011.6488037109375,10.721349,10721.349 +4014,2025-03-07T11:56:59.389542-08:00,1011.6326293945312,10.728647,10728.647 +4015,2025-03-07T11:57:10.123207-08:00,1011.6329956054688,10.733665,10733.665 +4016,2025-03-07T11:57:20.839544-08:00,1011.6381225585938,10.716337,10716.337 +4017,2025-03-07T11:57:31.567546-08:00,1011.6484375,10.728002,10728.002 +4018,2025-03-07T11:57:42.290613-08:00,1011.620849609375,10.723067,10723.067 +4019,2025-03-07T11:57:53.015725-08:00,1011.631103515625,10.725112,10725.112 +4020,2025-03-07T11:58:03.741751-08:00,1011.631103515625,10.726026,10726.026 +4021,2025-03-07T11:58:14.469684-08:00,1011.6365356445312,10.727933,10727.933 +4022,2025-03-07T11:58:25.196714-08:00,1011.6152954101562,10.72703,10727.03 +4023,2025-03-07T11:58:35.913540-08:00,1011.6104736328125,10.716826,10716.826 +4024,2025-03-07T11:58:46.644362-08:00,1011.618896484375,10.730822,10730.822 +4025,2025-03-07T11:58:57.372314-08:00,1011.62109375,10.727952,10727.952 +4026,2025-03-07T11:59:08.096544-08:00,1011.6342163085938,10.72423,10724.23 +4027,2025-03-07T11:59:18.816144-08:00,1011.6213989257812,10.7196,10719.6 +4028,2025-03-07T11:59:29.547539-08:00,1011.622802734375,10.731395,10731.395 +4029,2025-03-07T11:59:40.270958-08:00,1011.64453125,10.723419,10723.419 +4030,2025-03-07T11:59:50.995751-08:00,1011.5886840820312,10.724793,10724.793 +4031,2025-03-07T12:00:01.726721-08:00,1011.5904541015625,10.73097,10730.97 +4032,2025-03-07T12:00:12.450543-08:00,1011.6150512695312,10.723822,10723.822 +4033,2025-03-07T12:00:23.185746-08:00,1011.6021728515625,10.735203,10735.203 +4034,2025-03-07T12:00:33.907718-08:00,1011.5940551757812,10.721972,10721.972 +4035,2025-03-07T12:00:44.633541-08:00,1011.5578002929688,10.725823,10725.823 +4036,2025-03-07T12:00:55.359551-08:00,1011.5761108398438,10.72601,10726.01 +4037,2025-03-07T12:01:06.082905-08:00,1011.5415649414062,10.723354,10723.354 +4038,2025-03-07T12:01:16.814749-08:00,1011.5728149414062,10.731844,10731.844 +4039,2025-03-07T12:01:27.534541-08:00,1011.5845336914062,10.719792,10719.792 +4040,2025-03-07T12:01:38.266777-08:00,1011.5596313476562,10.732236,10732.236 +4041,2025-03-07T12:01:48.994562-08:00,1011.5515747070312,10.727785,10727.785 +4042,2025-03-07T12:01:59.716541-08:00,1011.5301513671875,10.721979,10721.979 +4043,2025-03-07T12:02:10.441714-08:00,1011.54345703125,10.725173,10725.173 +4044,2025-03-07T12:02:21.169569-08:00,1011.54345703125,10.727855,10727.855 +4045,2025-03-07T12:02:31.891544-08:00,1011.5614013671875,10.721975,10721.975 +4046,2025-03-07T12:02:42.614599-08:00,1011.54345703125,10.723055,10723.055 +4047,2025-03-07T12:02:53.343750-08:00,1011.544921875,10.729151,10729.151 +4048,2025-03-07T12:03:04.072738-08:00,1011.552978515625,10.728988,10728.988 +4049,2025-03-07T12:03:14.793543-08:00,1011.544921875,10.720805,10720.805 +4050,2025-03-07T12:03:25.520756-08:00,1011.5548706054688,10.727213,10727.213 +4051,2025-03-07T12:03:36.246563-08:00,1011.5728149414062,10.725807,10725.807 +4052,2025-03-07T12:03:46.979573-08:00,1011.5415649414062,10.73301,10733.01 +4053,2025-03-07T12:03:57.695353-08:00,1011.5379638671875,10.71578,10715.78 +4054,2025-03-07T12:04:08.429541-08:00,1011.5298461914062,10.734188,10734.188 +4055,2025-03-07T12:04:19.151613-08:00,1011.585693359375,10.722072,10722.072 +4056,2025-03-07T12:04:29.880871-08:00,1011.555908203125,10.729258,10729.258 +4057,2025-03-07T12:04:40.606739-08:00,1011.5131225585938,10.725868,10725.868 +4058,2025-03-07T12:04:51.328682-08:00,1011.501708984375,10.721943,10721.943 +4059,2025-03-07T12:05:02.060575-08:00,1011.4716186523438,10.731893,10731.893 +4060,2025-03-07T12:05:12.779736-08:00,1011.4962768554688,10.719161,10719.161 +4061,2025-03-07T12:05:23.511539-08:00,1011.48486328125,10.731803,10731.803 +4062,2025-03-07T12:05:34.241713-08:00,1011.4632568359375,10.730174,10730.174 +4063,2025-03-07T12:05:44.969721-08:00,1011.4812622070312,10.728008,10728.008 +4064,2025-03-07T12:05:55.696544-08:00,1011.454833984375,10.726823,10726.823 +4065,2025-03-07T12:06:06.420837-08:00,1011.4581298828125,10.724293,10724.293 +4066,2025-03-07T12:06:17.158483-08:00,1011.49267578125,10.737646,10737.646 +4067,2025-03-07T12:06:27.881540-08:00,1011.4779663085938,10.723057,10723.057 +4068,2025-03-07T12:06:38.605918-08:00,1011.4746704101562,10.724378,10724.378 +4069,2025-03-07T12:06:49.338541-08:00,1011.49267578125,10.732623,10732.623 +4070,2025-03-07T12:07:00.068544-08:00,1011.46142578125,10.730003,10730.003 +4071,2025-03-07T12:07:10.803727-08:00,1011.47607421875,10.735183,10735.183 +4072,2025-03-07T12:07:21.525542-08:00,1011.4662475585938,10.721815,10721.815 +4073,2025-03-07T12:07:32.259786-08:00,1011.451171875,10.734244,10734.244 +4074,2025-03-07T12:07:42.989728-08:00,1011.4247436523438,10.729942,10729.942 +4075,2025-03-07T12:07:53.721544-08:00,1011.44091796875,10.731816,10731.816 +4076,2025-03-07T12:08:04.449542-08:00,1011.4244384765625,10.727998,10727.998 +4077,2025-03-07T12:08:15.181753-08:00,1011.4406127929688,10.732211,10732.211 +4078,2025-03-07T12:08:25.905745-08:00,1011.424072265625,10.723992,10723.992 +4079,2025-03-07T12:08:36.641542-08:00,1011.40576171875,10.735797,10735.797 +4080,2025-03-07T12:08:47.372709-08:00,1011.3973388671875,10.731167,10731.167 +4081,2025-03-07T12:08:58.100539-08:00,1011.4237670898438,10.72783,10727.83 +4082,2025-03-07T12:09:08.822627-08:00,1011.4285888671875,10.722088,10722.088 +4083,2025-03-07T12:09:19.550575-08:00,1011.4369506835938,10.727948,10727.948 +4084,2025-03-07T12:09:30.287541-08:00,1011.4302978515625,10.736966,10736.966 +4085,2025-03-07T12:09:41.017718-08:00,1011.415283203125,10.730177,10730.177 +4086,2025-03-07T12:09:51.733547-08:00,1011.4198608398438,10.715829,10715.829 +4087,2025-03-07T12:10:02.465544-08:00,1011.43115234375,10.731997,10731.997 +4088,2025-03-07T12:10:13.198737-08:00,1011.4032592773438,10.733193,10733.193 +4089,2025-03-07T12:10:23.917755-08:00,1011.4411010742188,10.719018,10719.018 +4090,2025-03-07T12:10:34.651835-08:00,1011.4227294921875,10.73408,10734.08 +4091,2025-03-07T12:10:45.380543-08:00,1011.412841796875,10.728708,10728.708 +4092,2025-03-07T12:10:56.109536-08:00,1011.414306640625,10.728993,10728.993 +4093,2025-03-07T12:11:06.833676-08:00,1011.4109497070312,10.72414,10724.14 +4094,2025-03-07T12:11:17.568997-08:00,1011.4356079101562,10.735321,10735.321 +4095,2025-03-07T12:11:28.295542-08:00,1011.417236328125,10.726545,10726.545 +4096,2025-03-07T12:11:39.023716-08:00,1011.3856811523438,10.728174,10728.174 +4097,2025-03-07T12:11:49.745731-08:00,1011.3772583007812,10.722015,10722.015 +4098,2025-03-07T12:12:00.471700-08:00,1011.3739013671875,10.725969,10725.969 +4099,2025-03-07T12:12:11.198541-08:00,1011.3820190429688,10.726841,10726.841 +4100,2025-03-07T12:12:21.928916-08:00,1011.353759765625,10.730375,10730.375 +4101,2025-03-07T12:12:32.661646-08:00,1011.383544921875,10.73273,10732.73 +4102,2025-03-07T12:12:43.384542-08:00,1011.398193359375,10.722896,10722.896 +4103,2025-03-07T12:12:54.108556-08:00,1011.368408203125,10.724014,10724.014 +4104,2025-03-07T12:13:04.831616-08:00,1011.3897705078125,10.72306,10723.06 +4105,2025-03-07T12:13:15.561633-08:00,1011.3912353515625,10.730017,10730.017 +4106,2025-03-07T12:13:26.292694-08:00,1011.3563842773438,10.731061,10731.061 +4107,2025-03-07T12:13:37.012752-08:00,1011.3431396484375,10.720058,10720.058 +4108,2025-03-07T12:13:47.737720-08:00,1011.34130859375,10.724968,10724.968 +4109,2025-03-07T12:13:58.467544-08:00,1011.3710327148438,10.729824,10729.824 +4110,2025-03-07T12:14:09.193953-08:00,1011.3739624023438,10.726409,10726.409 +4111,2025-03-07T12:14:19.925725-08:00,1011.35888671875,10.731772,10731.772 +4112,2025-03-07T12:14:30.644656-08:00,1011.3409423828125,10.718931,10718.931 +4113,2025-03-07T12:14:41.378690-08:00,1011.3175048828125,10.734034,10734.034 +4114,2025-03-07T12:14:52.108696-08:00,1011.355224609375,10.730006,10730.006 +4115,2025-03-07T12:15:02.838096-08:00,1011.3320922851562,10.7294,10729.4 +4116,2025-03-07T12:15:13.569086-08:00,1011.3453369140625,10.73099,10730.99 +4117,2025-03-07T12:15:24.302542-08:00,1011.3662719726562,10.733456,10733.456 +4118,2025-03-07T12:15:35.021725-08:00,1011.32177734375,10.719183,10719.183 +4119,2025-03-07T12:15:45.753797-08:00,1011.3136596679688,10.732072,10732.072 +4120,2025-03-07T12:15:56.486573-08:00,1011.343017578125,10.732776,10732.776 +4121,2025-03-07T12:16:07.211953-08:00,1011.358154296875,10.72538,10725.38 +4122,2025-03-07T12:16:17.936539-08:00,1011.3543701171875,10.724586,10724.586 +4123,2025-03-07T12:16:28.662610-08:00,1011.3261108398438,10.726071,10726.071 +4124,2025-03-07T12:16:39.397547-08:00,1011.3573608398438,10.734937,10734.937 +4125,2025-03-07T12:16:50.118539-08:00,1011.3804931640625,10.720992,10720.992 +4126,2025-03-07T12:17:00.844947-08:00,1011.3455200195312,10.726408,10726.408 +4127,2025-03-07T12:17:11.571542-08:00,1011.333740234375,10.726595,10726.595 +4128,2025-03-07T12:17:22.306538-08:00,1011.350341796875,10.734996,10734.996 +4129,2025-03-07T12:17:33.035955-08:00,1011.34326171875,10.729417,10729.417 +4130,2025-03-07T12:17:43.764734-08:00,1011.33154296875,10.728779,10728.779 +4131,2025-03-07T12:17:54.488236-08:00,1011.3348388671875,10.723502,10723.502 +4132,2025-03-07T12:18:05.223727-08:00,1011.3329467773438,10.735491,10735.491 +4133,2025-03-07T12:18:15.948823-08:00,1011.33447265625,10.725096,10725.096 +4134,2025-03-07T12:18:26.678538-08:00,1011.33447265625,10.729715,10729.715 +4135,2025-03-07T12:18:37.402567-08:00,1011.30615234375,10.724029,10724.029 +4136,2025-03-07T12:18:48.137885-08:00,1011.3506469726562,10.735318,10735.318 +4137,2025-03-07T12:18:58.856786-08:00,1011.330810546875,10.718901,10718.901 +4138,2025-03-07T12:19:09.583736-08:00,1011.32080078125,10.72695,10726.95 +4139,2025-03-07T12:19:31.040747-08:00,1011.360107421875,21.457011,21457.011 +4140,2025-03-07T12:19:41.773543-08:00,1011.3204956054688,10.732796,10732.796 +4141,2025-03-07T12:19:52.496941-08:00,1011.3284912109375,10.723398,10723.398 +4142,2025-03-07T12:20:03.224685-08:00,1011.3251342773438,10.727744,10727.744 +4143,2025-03-07T12:20:13.963117-08:00,1011.33984375,10.738432,10738.432 +4144,2025-03-07T12:20:24.683826-08:00,1011.3233032226562,10.720709,10720.709 +4145,2025-03-07T12:20:35.421736-08:00,1011.31005859375,10.73791,10737.91 +4146,2025-03-07T12:20:46.140571-08:00,1011.3167114257812,10.718835,10718.835 +4147,2025-03-07T12:20:56.874074-08:00,1011.3395385742188,10.733503,10733.503 +4148,2025-03-07T12:21:07.598566-08:00,1011.3395385742188,10.724492,10724.492 +4149,2025-03-07T12:21:18.332755-08:00,1011.3545532226562,10.734189,10734.189 +4150,2025-03-07T12:21:29.053391-08:00,1011.3427124023438,10.720636,10720.636 +4151,2025-03-07T12:21:39.779545-08:00,1011.3148193359375,10.726154,10726.154 +4152,2025-03-07T12:21:50.519933-08:00,1011.322998046875,10.740388,10740.388 +4153,2025-03-07T12:22:01.240575-08:00,1011.2965087890625,10.720642,10720.642 +4154,2025-03-07T12:22:11.967543-08:00,1011.3162231445312,10.726968,10726.968 +4155,2025-03-07T12:22:22.706756-08:00,1011.3126831054688,10.739213,10739.213 +4156,2025-03-07T12:22:33.429782-08:00,1011.2979736328125,10.723026,10723.026 +4157,2025-03-07T12:22:44.160544-08:00,1011.2832641601562,10.730762,10730.762 +4158,2025-03-07T12:22:54.888920-08:00,1011.2715454101562,10.728376,10728.376 +4159,2025-03-07T12:23:05.621543-08:00,1011.276611328125,10.732623,10732.623 +4160,2025-03-07T12:23:16.355544-08:00,1011.2898559570312,10.734001,10734.001 +4161,2025-03-07T12:23:27.080969-08:00,1011.2979736328125,10.725425,10725.425 +4162,2025-03-07T12:23:37.803541-08:00,1011.264892578125,10.722572,10722.572 +4163,2025-03-07T12:23:48.532762-08:00,1011.2715454101562,10.729221,10729.221 +4164,2025-03-07T12:23:59.256543-08:00,1011.251708984375,10.723781,10723.781 +4165,2025-03-07T12:24:09.986573-08:00,1011.2781372070312,10.73003,10730.03 +4166,2025-03-07T12:24:20.719616-08:00,1011.2531127929688,10.733043,10733.043 +4167,2025-03-07T12:24:31.441633-08:00,1011.2664184570312,10.722017,10722.017 +4168,2025-03-07T12:24:42.175609-08:00,1011.259765625,10.733976,10733.976 +4169,2025-03-07T12:25:03.621544-08:00,1011.2351684570312,21.445935,21445.935 +4170,2025-03-07T12:25:14.349726-08:00,1011.2747802734375,10.728182,10728.182 +4171,2025-03-07T12:25:25.084566-08:00,1011.2762451171875,10.73484,10734.84 +4172,2025-03-07T12:25:35.815749-08:00,1011.3026733398438,10.731183,10731.183 +4173,2025-03-07T12:25:46.538732-08:00,1011.2747802734375,10.722983,10722.983 +4174,2025-03-07T12:25:57.274543-08:00,1011.2564086914062,10.735811,10735.811 +4175,2025-03-07T12:26:07.994754-08:00,1011.2498168945312,10.720211,10720.211 +4176,2025-03-07T12:26:18.731737-08:00,1011.2597045898438,10.736983,10736.983 +4177,2025-03-07T12:26:29.450546-08:00,1011.2645263671875,10.718809,10718.809 +4178,2025-03-07T12:26:40.179285-08:00,1011.2398681640625,10.728739,10728.739 +4179,2025-03-07T12:26:50.915152-08:00,1011.2134399414062,10.735867,10735.867 +4180,2025-03-07T12:27:01.635572-08:00,1011.2362670898438,10.72042,10720.42 +4181,2025-03-07T12:27:12.364934-08:00,1011.2346801757812,10.729362,10729.362 +4182,2025-03-07T12:27:23.090541-08:00,1011.2097778320312,10.725607,10725.607 +4183,2025-03-07T12:27:33.815729-08:00,1011.208251953125,10.725188,10725.188 +4184,2025-03-07T12:27:44.552612-08:00,1011.1766967773438,10.736883,10736.883 +4185,2025-03-07T12:27:55.275682-08:00,1011.1983032226562,10.72307,10723.07 +4186,2025-03-07T12:28:06.006622-08:00,1011.2362670898438,10.73094,10730.94 +4187,2025-03-07T12:28:16.741348-08:00,1011.1851806640625,10.734726,10734.726 +4188,2025-03-07T12:28:27.461542-08:00,1011.15869140625,10.720194,10720.194 +4189,2025-03-07T12:28:38.199734-08:00,1011.171875,10.738192,10738.192 +4190,2025-03-07T12:28:48.922537-08:00,1011.171875,10.722803,10722.803 +4191,2025-03-07T12:28:59.657544-08:00,1011.1785278320312,10.735007,10735.007 +4192,2025-03-07T12:29:10.381738-08:00,1011.2196655273438,10.724194,10724.194 +4193,2025-03-07T12:29:21.106541-08:00,1011.17333984375,10.724803,10724.803 +4194,2025-03-07T12:29:31.833740-08:00,1011.1520385742188,10.727199,10727.199 +4195,2025-03-07T12:29:31.833740-08:00,1011.1520385742188,0.0,0.0 +4196,2025-03-07T12:29:42.565540-08:00,1011.181396484375,10.7318,10731.8 +4197,2025-03-07T12:29:53.297540-08:00,1011.1520385742188,10.732,10732.0 +4198,2025-03-07T12:30:04.026748-08:00,1011.10400390625,10.729208,10729.208 +4199,2025-03-07T12:30:14.755567-08:00,1011.1388549804688,10.728819,10728.819 +4200,2025-03-07T12:30:25.479544-08:00,1011.122314453125,10.723977,10723.977 +4201,2025-03-07T12:30:36.216758-08:00,1011.0973510742188,10.737214,10737.214 +4202,2025-03-07T12:30:46.938612-08:00,1011.0973510742188,10.721854,10721.854 +4203,2025-03-07T12:30:57.669711-08:00,1011.1422119140625,10.731099,10731.099 +4204,2025-03-07T12:31:08.401720-08:00,1011.094482421875,10.732009,10732.009 +4205,2025-03-07T12:31:19.124574-08:00,1011.094482421875,10.722854,10722.854 +4206,2025-03-07T12:31:29.856962-08:00,1011.0662231445312,10.732388,10732.388 +4207,2025-03-07T12:31:40.576541-08:00,1011.10107421875,10.719579,10719.579 +4208,2025-03-07T12:31:51.307763-08:00,1011.06982421875,10.731222,10731.222 +4209,2025-03-07T12:32:02.034714-08:00,1011.0779418945312,10.726951,10726.951 +4210,2025-03-07T12:32:12.765543-08:00,1011.0896606445312,10.730829,10730.829 +4211,2025-03-07T12:32:23.489226-08:00,1011.0548706054688,10.723683,10723.683 +4212,2025-03-07T12:32:34.213543-08:00,1011.0137329101562,10.724317,10724.317 +4213,2025-03-07T12:32:44.938544-08:00,1011.0349731445312,10.725001,10725.001 +4214,2025-03-07T12:32:55.671721-08:00,1011.0614624023438,10.733177,10733.177 +4215,2025-03-07T12:33:06.400536-08:00,1011.0482788085938,10.728815,10728.815 +4216,2025-03-07T12:33:17.127729-08:00,1011.0349731445312,10.727193,10727.193 +4217,2025-03-07T12:33:27.855552-08:00,1011.036865234375,10.727823,10727.823 +4218,2025-03-07T12:33:38.575753-08:00,1011.0401611328125,10.720201,10720.201 +4219,2025-03-07T12:33:49.303732-08:00,1011.0599975585938,10.727979,10727.979 +4220,2025-03-07T12:34:00.025572-08:00,1011.053466796875,10.72184,10721.84 +4221,2025-03-07T12:34:10.751689-08:00,1011.093017578125,10.726117,10726.117 +4222,2025-03-07T12:34:21.477743-08:00,1011.078369140625,10.726054,10726.054 +4223,2025-03-07T12:34:32.201543-08:00,1011.0850219726562,10.7238,10723.8 +4224,2025-03-07T12:34:42.934565-08:00,1011.0599975585938,10.733022,10733.022 +4225,2025-03-07T12:34:53.659748-08:00,1011.0570068359375,10.725183,10725.183 +4226,2025-03-07T12:35:04.390731-08:00,1011.0306396484375,10.730983,10730.983 +4227,2025-03-07T12:35:15.112550-08:00,1011.0321044921875,10.721819,10721.819 +4228,2025-03-07T12:35:25.845538-08:00,1011.0173950195312,10.732988,10732.988 +4229,2025-03-07T12:35:36.580616-08:00,1011.0122680664062,10.735078,10735.078 +4230,2025-03-07T12:35:47.301544-08:00,1011.0189208984375,10.720928,10720.928 +4231,2025-03-07T12:35:58.027146-08:00,1011.0122680664062,10.725602,10725.602 +4232,2025-03-07T12:36:08.763733-08:00,1011.0042114257812,10.736587,10736.587 +4233,2025-03-07T12:36:19.483544-08:00,1011.0122680664062,10.719811,10719.811 +4234,2025-03-07T12:36:30.212730-08:00,1011.0254516601562,10.729186,10729.186 +4235,2025-03-07T12:36:40.945793-08:00,1010.99755859375,10.733063,10733.063 +4236,2025-03-07T12:36:51.675748-08:00,1011.005615234375,10.729955,10729.955 +4237,2025-03-07T12:37:02.402703-08:00,1011.0042114257812,10.726955,10726.955 +4238,2025-03-07T12:37:13.124543-08:00,1010.9891967773438,10.72184,10721.84 +4239,2025-03-07T12:37:23.855614-08:00,1011.0173950195312,10.731071,10731.071 +4240,2025-03-07T12:37:34.584565-08:00,1010.9876708984375,10.728951,10728.951 +4241,2025-03-07T12:37:45.313569-08:00,1010.9810791015625,10.729004,10729.004 +4242,2025-03-07T12:37:56.035729-08:00,1011.0354614257812,10.72216,10722.16 +4243,2025-03-07T12:38:06.766539-08:00,1011.0552978515625,10.73081,10730.81 +4244,2025-03-07T12:38:17.495635-08:00,1011.0339965820312,10.729096,10729.096 +4245,2025-03-07T12:38:28.222717-08:00,1011.0486450195312,10.727082,10727.082 +4246,2025-03-07T12:38:38.954543-08:00,1011.0406494140625,10.731826,10731.826 +4247,2025-03-07T12:38:49.671719-08:00,1011.0075073242188,10.717176,10717.176 +4248,2025-03-07T12:39:00.399543-08:00,1011.0075073242188,10.727824,10727.824 +4249,2025-03-07T12:39:11.132542-08:00,1011.02734375,10.732999,10732.999 +4250,2025-03-07T12:39:21.856017-08:00,1011.0192260742188,10.723475,10723.475 +4251,2025-03-07T12:39:32.586744-08:00,1011.0192260742188,10.730727,10730.727 +4252,2025-03-07T12:39:43.316751-08:00,1011.0259399414062,10.730007,10730.007 +4253,2025-03-07T12:39:54.042543-08:00,1011.0339965820312,10.725792,10725.792 +4254,2025-03-07T12:40:04.765536-08:00,1011.01416015625,10.722993,10722.993 +4255,2025-03-07T12:40:15.492875-08:00,1011.0126342773438,10.727339,10727.339 +4256,2025-03-07T12:40:26.226726-08:00,1010.9976806640625,10.733851,10733.851 +4257,2025-03-07T12:40:36.948744-08:00,1010.9862670898438,10.722018,10722.018 +4258,2025-03-07T12:40:47.681562-08:00,1010.9678955078125,10.732818,10732.818 +4259,2025-03-07T12:40:58.410864-08:00,1010.9745483398438,10.729302,10729.302 +4260,2025-03-07T12:41:09.131819-08:00,1010.9664306640625,10.720955,10720.955 +4261,2025-03-07T12:41:19.861541-08:00,1010.9862670898438,10.729722,10729.722 +4262,2025-03-07T12:41:30.585755-08:00,1010.9729614257812,10.724214,10724.214 +4263,2025-03-07T12:41:41.314540-08:00,1010.9712524414062,10.728785,10728.785 +4264,2025-03-07T12:41:52.043614-08:00,1010.951416015625,10.729074,10729.074 +4265,2025-03-07T12:42:02.759740-08:00,1010.949951171875,10.716126,10716.126 +4266,2025-03-07T12:42:13.490574-08:00,1010.9367065429688,10.730834,10730.834 +4267,2025-03-07T12:42:24.211752-08:00,1010.95654296875,10.721178,10721.178 +4268,2025-03-07T12:42:34.938543-08:00,1010.94189453125,10.726791,10726.791 +4269,2025-03-07T12:42:45.665755-08:00,1010.964599609375,10.727212,10727.212 +4270,2025-03-07T12:42:56.393564-08:00,1010.949951171875,10.727809,10727.809 +4271,2025-03-07T12:43:07.116544-08:00,1010.9550170898438,10.72298,10722.98 +4272,2025-03-07T12:43:17.839375-08:00,1010.9234619140625,10.722831,10722.831 +4273,2025-03-07T12:43:28.566541-08:00,1010.951416015625,10.727166,10727.166 +4274,2025-03-07T12:43:39.291744-08:00,1010.951416015625,10.725203,10725.203 +4275,2025-03-07T12:43:50.015543-08:00,1010.9484252929688,10.723799,10723.799 +4276,2025-03-07T12:44:00.751542-08:00,1010.9352416992188,10.735999,10735.999 +4277,2025-03-07T12:44:11.481036-08:00,1010.9533081054688,10.729494,10729.494 +4278,2025-03-07T12:44:22.198547-08:00,1010.9334106445312,10.717511,10717.511 +4279,2025-03-07T12:44:32.927733-08:00,1010.974853515625,10.729186,10729.186 +4280,2025-03-07T12:44:43.660568-08:00,1010.94189453125,10.732835,10732.835 +4281,2025-03-07T12:44:54.381764-08:00,1010.96826171875,10.721196,10721.196 +4282,2025-03-07T12:45:05.111600-08:00,1010.9533081054688,10.729836,10729.836 +4283,2025-03-07T12:45:15.837543-08:00,1010.9484252929688,10.725943,10725.943 +4284,2025-03-07T12:45:26.570744-08:00,1010.9385986328125,10.733201,10733.201 +4285,2025-03-07T12:45:37.295990-08:00,1010.9352416992188,10.725246,10725.246 +4286,2025-03-07T12:45:48.020628-08:00,1010.9466552734375,10.724638,10724.638 +4287,2025-03-07T12:45:58.752880-08:00,1010.9451293945312,10.732252,10732.252 +4288,2025-03-07T12:46:09.470541-08:00,1010.9533081054688,10.717661,10717.661 +4289,2025-03-07T12:46:20.206575-08:00,1010.949951171875,10.736034,10736.034 +4290,2025-03-07T12:46:30.924770-08:00,1010.9550170898438,10.718195,10718.195 +4291,2025-03-07T12:46:41.657605-08:00,1010.9268798828125,10.732835,10732.835 +4292,2025-03-07T12:46:52.382418-08:00,1010.9285888671875,10.724813,10724.813 +4293,2025-03-07T12:47:03.113743-08:00,1010.9121704101562,10.731325,10731.325 +4294,2025-03-07T12:47:13.837542-08:00,1010.8890380859375,10.723799,10723.799 +4295,2025-03-07T12:47:24.570757-08:00,1010.8926391601562,10.733215,10733.215 +4296,2025-03-07T12:47:35.286731-08:00,1010.8942260742188,10.715974,10715.974 +4297,2025-03-07T12:47:46.020731-08:00,1010.8861083984375,10.734,10734.0 +4298,2025-03-07T12:47:56.745589-08:00,1010.8926391601562,10.724858,10724.858 +4299,2025-03-07T12:48:07.477750-08:00,1010.9224853515625,10.732161,10732.161 +4300,2025-03-07T12:48:18.197571-08:00,1010.9110717773438,10.719821,10719.821 +4301,2025-03-07T12:48:28.921078-08:00,1010.9143676757812,10.723507,10723.507 +4302,2025-03-07T12:48:39.651875-08:00,1010.9092407226562,10.730797,10730.797 +4303,2025-03-07T12:48:50.375010-08:00,1010.9423217773438,10.723135,10723.135 +4304,2025-03-07T12:49:01.100740-08:00,1010.95068359375,10.72573,10725.73 +4305,2025-03-07T12:49:11.828745-08:00,1010.9423217773438,10.728005,10728.005 +4306,2025-03-07T12:49:22.552969-08:00,1010.9375,10.724224,10724.224 +4307,2025-03-07T12:49:33.285923-08:00,1010.9044799804688,10.732954,10732.954 +4308,2025-03-07T12:49:44.011544-08:00,1010.8978271484375,10.725621,10725.621 +4309,2025-03-07T12:49:54.731937-08:00,1010.86962890625,10.720393,10720.393 +4310,2025-03-07T12:50:05.461559-08:00,1010.8713989257812,10.729622,10729.622 +4311,2025-03-07T12:50:16.191800-08:00,1010.9110717773438,10.730241,10730.241 +4312,2025-03-07T12:50:26.915751-08:00,1010.8961181640625,10.723951,10723.951 +4313,2025-03-07T12:50:37.638623-08:00,1010.9224853515625,10.722872,10722.872 +4314,2025-03-07T12:50:48.369715-08:00,1010.9241943359375,10.731092,10731.092 +4315,2025-03-07T12:50:59.095571-08:00,1010.8894653320312,10.725856,10725.856 +4316,2025-03-07T12:51:09.826709-08:00,1010.9191284179688,10.731138,10731.138 +4317,2025-03-07T12:51:20.557734-08:00,1010.8814086914062,10.731025,10731.025 +4318,2025-03-07T12:51:31.275543-08:00,1010.8629760742188,10.717809,10717.809 +4319,2025-03-07T12:51:42.011561-08:00,1010.8497924804688,10.736018,10736.018 +4320,2025-03-07T12:51:52.742038-08:00,1010.8563842773438,10.730477,10730.477 +4321,2025-03-07T12:52:03.472818-08:00,1010.8384399414062,10.73078,10730.78 +4322,2025-03-07T12:52:14.201315-08:00,1010.8388061523438,10.728497,10728.497 +4323,2025-03-07T12:52:24.965670-08:00,1010.830810546875,10.764355,10764.355 +4324,2025-03-07T12:52:35.697049-08:00,1010.8414916992188,10.731379,10731.379 +4325,2025-03-07T12:52:46.420909-08:00,1010.8679809570312,10.72386,10723.86 +4326,2025-03-07T12:52:57.152671-08:00,1010.8786010742188,10.731762,10731.762 +4327,2025-03-07T12:53:07.887670-08:00,1010.900390625,10.734999,10734.999 +4328,2025-03-07T12:53:18.611848-08:00,1010.8773193359375,10.724178,10724.178 +4329,2025-03-07T12:53:29.341742-08:00,1010.8450927734375,10.729894,10729.894 +4330,2025-03-07T12:53:40.075669-08:00,1010.8671875,10.733927,10733.927 +4331,2025-03-07T12:53:50.796690-08:00,1010.8590698242188,10.721021,10721.021 +4332,2025-03-07T12:54:01.532106-08:00,1010.8760375976562,10.735416,10735.416 +4333,2025-03-07T12:54:12.265207-08:00,1010.8734130859375,10.733101,10733.101 +4334,2025-03-07T12:54:23.001888-08:00,1010.8771362304688,10.736681,10736.681 +4335,2025-03-07T12:54:33.726696-08:00,1010.8690795898438,10.724808,10724.808 +4336,2025-03-07T12:54:44.463671-08:00,1010.854736328125,10.736975,10736.975 +4337,2025-03-07T12:54:55.196667-08:00,1010.841552734375,10.732996,10732.996 +4338,2025-03-07T12:55:05.925879-08:00,1010.8566284179688,10.729212,10729.212 +4339,2025-03-07T12:55:16.658212-08:00,1010.8584594726562,10.732333,10732.333 +4340,2025-03-07T12:55:27.389669-08:00,1010.8258056640625,10.731457,10731.457 +4341,2025-03-07T12:55:38.121242-08:00,1010.8441162109375,10.731573,10731.573 +4342,2025-03-07T12:55:48.857669-08:00,1010.818115234375,10.736427,10736.427 +4343,2025-03-07T12:55:59.587672-08:00,1010.8396606445312,10.730003,10730.003 +4344,2025-03-07T12:56:10.320888-08:00,1010.8925170898438,10.733216,10733.216 +4345,2025-03-07T12:56:21.050672-08:00,1010.8613891601562,10.729784,10729.784 +4346,2025-03-07T12:56:31.776923-08:00,1010.90576171875,10.726251,10726.251 +4347,2025-03-07T12:56:42.506834-08:00,1010.8712768554688,10.729911,10729.911 +4348,2025-03-07T12:56:53.252771-08:00,1010.8632202148438,10.745937,10745.937 +4349,2025-03-07T12:57:03.978913-08:00,1010.869873046875,10.726142,10726.142 +4350,2025-03-07T12:57:14.717913-08:00,1010.8599243164062,10.739,10739.0 +4351,2025-03-07T12:57:25.451840-08:00,1010.8782958984375,10.733927,10733.927 +4352,2025-03-07T12:57:36.183694-08:00,1010.85693359375,10.731854,10731.854 +4353,2025-03-07T12:57:46.924676-08:00,1010.8616943359375,10.740982,10740.982 +4354,2025-03-07T12:57:57.657673-08:00,1010.8683471679688,10.732997,10732.997 +4355,2025-03-07T12:58:08.388849-08:00,1010.8734130859375,10.731176,10731.176 +4356,2025-03-07T12:58:19.130179-08:00,1010.9097900390625,10.74133,10741.33 +4357,2025-03-07T12:58:29.854989-08:00,1010.9014282226562,10.72481,10724.81 +4358,2025-03-07T12:58:40.592415-08:00,1010.8734130859375,10.737426,10737.426 +4359,2025-03-07T12:58:51.335665-08:00,1010.8998413085938,10.74325,10743.25 +4360,2025-03-07T12:59:02.059740-08:00,1010.8734130859375,10.724075,10724.075 +4361,2025-03-07T12:59:11.781541-08:00,1010.8701782226562,9.721801,9721.801 +4362,2025-03-07T12:59:12.796676-08:00,1010.8917846679688,1.015135,1015.135 +4363,2025-03-07T12:59:23.537839-08:00,1010.8720092773438,10.741163,10741.163 +4364,2025-03-07T12:59:34.277987-08:00,1010.8786010742188,10.740148,10740.148 +4365,2025-03-07T12:59:45.009868-08:00,1010.893310546875,10.731881,10731.881 +4366,2025-03-07T12:59:55.743672-08:00,1010.8900146484375,10.733804,10733.804 +4367,2025-03-07T13:00:06.472980-08:00,1010.8881225585938,10.729308,10729.308 +4368,2025-03-07T13:00:17.209748-08:00,1010.8635864257812,10.736768,10736.768 +4369,2025-03-07T13:00:27.949072-08:00,1010.8848266601562,10.739324,10739.324 +4370,2025-03-07T13:00:38.681671-08:00,1010.864990234375,10.732599,10732.599 +4371,2025-03-07T13:00:49.423101-08:00,1010.8731079101562,10.74143,10741.43 +4372,2025-03-07T13:01:00.153897-08:00,1010.8863525390625,10.730796,10730.796 +4373,2025-03-07T13:01:10.880928-08:00,1010.8518676757812,10.727031,10727.031 +4374,2025-03-07T13:01:21.621666-08:00,1010.8485107421875,10.740738,10740.738 +4375,2025-03-07T13:01:32.351765-08:00,1010.8682861328125,10.730099,10730.099 +4376,2025-03-07T13:01:43.089887-08:00,1010.8401489257812,10.738122,10738.122 +4377,2025-03-07T13:01:53.820786-08:00,1010.8418579101562,10.730899,10730.899 +4378,2025-03-07T13:02:04.562966-08:00,1010.8236083984375,10.74218,10742.18 +4379,2025-03-07T13:02:15.295667-08:00,1010.843017578125,10.732701,10732.701 +4380,2025-03-07T13:02:26.036936-08:00,1010.8396606445312,10.741269,10741.269 +4381,2025-03-07T13:02:36.770036-08:00,1010.8228149414062,10.7331,10733.1 +4382,2025-03-07T13:02:47.510614-08:00,1010.84375,10.740578,10740.578 +4383,2025-03-07T13:02:58.242668-08:00,1010.8253784179688,10.732054,10732.054 +4384,2025-03-07T13:03:08.981716-08:00,1010.8429565429688,10.739048,10739.048 +4385,2025-03-07T13:03:19.718670-08:00,1010.8062744140625,10.736954,10736.954 +4386,2025-03-07T13:03:30.445698-08:00,1010.84375,10.727028,10727.028 +4387,2025-03-07T13:03:41.184891-08:00,1010.8250122070312,10.739193,10739.193 +4388,2025-03-07T13:03:51.917852-08:00,1010.8132934570312,10.732961,10732.961 +4389,2025-03-07T13:04:02.651865-08:00,1010.8058471679688,10.734013,10734.013 +4390,2025-03-07T13:04:13.391927-08:00,1010.807373046875,10.740062,10740.062 +4391,2025-03-07T13:04:24.135978-08:00,1010.8414306640625,10.744051,10744.051 +4392,2025-03-07T13:04:34.869673-08:00,1010.8475952148438,10.733695,10733.695 +4393,2025-03-07T13:04:45.601680-08:00,1010.8427124023438,10.732007,10732.007 +4394,2025-03-07T13:04:56.340665-08:00,1010.82763671875,10.738985,10738.985 +4395,2025-03-07T13:05:07.078009-08:00,1010.7957153320312,10.737344,10737.344 +4396,2025-03-07T13:05:17.808535-08:00,1010.8350219726562,10.730526,10730.526 +4397,2025-03-07T13:05:28.549734-08:00,1010.783935546875,10.741199,10741.199 +4398,2025-03-07T13:05:39.281042-08:00,1010.7670288085938,10.731308,10731.308 +4399,2025-03-07T13:05:50.015036-08:00,1010.771728515625,10.733994,10733.994 +4400,2025-03-07T13:06:00.753673-08:00,1010.7617797851562,10.738637,10738.637 +4401,2025-03-07T13:06:11.494670-08:00,1010.7633056640625,10.740997,10740.997 +4402,2025-03-07T13:06:22.224673-08:00,1010.7679443359375,10.730003,10730.003 +4403,2025-03-07T13:06:32.957855-08:00,1010.7742309570312,10.733182,10733.182 +4404,2025-03-07T13:06:43.693700-08:00,1010.75439453125,10.735845,10735.845 +4405,2025-03-07T13:06:54.434846-08:00,1010.7708740234375,10.741146,10741.146 +4406,2025-03-07T13:07:05.168675-08:00,1010.7821655273438,10.733829,10733.829 +4407,2025-03-07T13:07:15.901773-08:00,1010.8118896484375,10.733098,10733.098 +4408,2025-03-07T13:07:26.637222-08:00,1010.760498046875,10.735449,10735.449 +4409,2025-03-07T13:07:37.380668-08:00,1010.7832641601562,10.743446,10743.446 +4410,2025-03-07T13:07:48.111131-08:00,1010.8426513671875,10.730463,10730.463 +4411,2025-03-07T13:07:58.849665-08:00,1010.7893676757812,10.738534,10738.534 +4412,2025-03-07T13:08:09.590673-08:00,1010.7842407226562,10.741008,10741.008 +4413,2025-03-07T13:08:20.324320-08:00,1010.808837890625,10.733647,10733.647 +4414,2025-03-07T13:08:31.070852-08:00,1010.7772827148438,10.746532,10746.532 +4415,2025-03-07T13:08:41.808671-08:00,1010.7687377929688,10.737819,10737.819 +4416,2025-03-07T13:08:52.546676-08:00,1010.778564453125,10.738005,10738.005 +4417,2025-03-07T13:09:03.287780-08:00,1010.7833862304688,10.741104,10741.104 +4418,2025-03-07T13:09:14.027854-08:00,1010.7631225585938,10.740074,10740.074 +4419,2025-03-07T13:09:24.760035-08:00,1010.73486328125,10.732181,10732.181 +4420,2025-03-07T13:09:35.506176-08:00,1010.7711181640625,10.746141,10746.141 +4421,2025-03-07T13:09:46.242794-08:00,1010.7706909179688,10.736618,10736.618 +4422,2025-03-07T13:09:56.979720-08:00,1010.8004150390625,10.736926,10736.926 +4423,2025-03-07T13:10:07.720665-08:00,1010.7720336914062,10.740945,10740.945 +4424,2025-03-07T13:10:18.460674-08:00,1010.8406982421875,10.740009,10740.009 +4425,2025-03-07T13:10:29.200882-08:00,1010.811279296875,10.740208,10740.208 +4426,2025-03-07T13:10:39.933813-08:00,1010.822509765625,10.732931,10732.931 +4427,2025-03-07T13:10:50.672895-08:00,1010.7860717773438,10.739082,10739.082 +4428,2025-03-07T13:11:01.414133-08:00,1010.8187255859375,10.741238,10741.238 +4429,2025-03-07T13:11:12.150087-08:00,1010.8117065429688,10.735954,10735.954 +4430,2025-03-07T13:11:22.880133-08:00,1010.8230590820312,10.730046,10730.046 +4431,2025-03-07T13:11:33.615680-08:00,1010.8079833984375,10.735547,10735.547 +4432,2025-03-07T13:11:44.356671-08:00,1010.8390502929688,10.740991,10740.991 +4433,2025-03-07T13:11:55.098700-08:00,1010.8552856445312,10.742029,10742.029 +4434,2025-03-07T13:12:05.835741-08:00,1010.8499755859375,10.737041,10737.041 +4435,2025-03-07T13:12:16.571914-08:00,1010.861328125,10.736173,10736.173 +4436,2025-03-07T13:12:27.301673-08:00,1010.839599609375,10.729759,10729.759 +4437,2025-03-07T13:12:38.040708-08:00,1010.8031005859375,10.739035,10739.035 +4438,2025-03-07T13:12:48.783727-08:00,1010.7796630859375,10.743019,10743.019 +4439,2025-03-07T13:12:58.915409-08:00,1010.799072265625,10.131682,10131.682 +4440,2025-03-07T13:12:59.515377-08:00,1010.7909545898438,0.599968,599.968 +4441,2025-03-07T13:13:10.257859-08:00,1010.80078125,10.742482,10742.482 +4442,2025-03-07T13:13:20.998699-08:00,1010.8004150390625,10.74084,10740.84 +4443,2025-03-07T13:13:31.738668-08:00,1010.7654418945312,10.739969,10739.969 +4444,2025-03-07T13:13:42.473673-08:00,1010.7634887695312,10.735005,10735.005 +4445,2025-03-07T13:13:53.215671-08:00,1010.7730712890625,10.741998,10741.998 +4446,2025-03-07T13:14:03.949752-08:00,1010.738037109375,10.734081,10734.081 +4447,2025-03-07T13:14:14.693043-08:00,1010.77099609375,10.743291,10743.291 +4448,2025-03-07T13:14:25.425795-08:00,1010.7374877929688,10.732752,10732.752 +4449,2025-03-07T13:14:36.165123-08:00,1010.7337646484375,10.739328,10739.328 +4450,2025-03-07T13:14:46.905749-08:00,1010.7451782226562,10.740626,10740.626 +4451,2025-03-07T13:14:57.647071-08:00,1010.7101440429688,10.741322,10741.322 +4452,2025-03-07T13:15:08.385768-08:00,1010.721435546875,10.738697,10738.697 +4453,2025-03-07T13:15:19.119669-08:00,1010.69970703125,10.733901,10733.901 +4454,2025-03-07T13:15:29.854667-08:00,1010.69921875,10.734998,10734.998 +4455,2025-03-07T13:15:40.600673-08:00,1010.7405395507812,10.746006,10746.006 +4456,2025-03-07T13:15:51.328668-08:00,1010.7089233398438,10.727995,10727.995 +4457,2025-03-07T13:16:02.076671-08:00,1010.7514038085938,10.748003,10748.003 +4458,2025-03-07T13:16:12.805903-08:00,1010.71826171875,10.729232,10729.232 +4459,2025-03-07T13:16:23.545671-08:00,1010.7244262695312,10.739768,10739.768 +4460,2025-03-07T13:16:34.286745-08:00,1010.7111206054688,10.741074,10741.074 +4461,2025-03-07T13:16:45.021915-08:00,1010.7139892578125,10.73517,10735.17 +4462,2025-03-07T13:16:55.763086-08:00,1010.6841430664062,10.741171,10741.171 +4463,2025-03-07T13:17:06.492710-08:00,1010.7218627929688,10.729624,10729.624 +4464,2025-03-07T13:17:17.231670-08:00,1010.7115478515625,10.73896,10738.96 +4465,2025-03-07T13:17:27.977922-08:00,1010.6751708984375,10.746252,10746.252 +4466,2025-03-07T13:17:38.713675-08:00,1010.7341918945312,10.735753,10735.753 +4467,2025-03-07T13:17:49.445691-08:00,1010.7256469726562,10.732016,10732.016 +4468,2025-03-07T13:18:00.188891-08:00,1010.7435913085938,10.7432,10743.2 +4469,2025-03-07T13:18:10.928148-08:00,1010.7251586914062,10.739257,10739.257 +4470,2025-03-07T13:18:21.654673-08:00,1010.7218017578125,10.726525,10726.525 +4471,2025-03-07T13:18:32.400889-08:00,1010.6919555664062,10.746216,10746.216 +4472,2025-03-07T13:18:43.128818-08:00,1010.7000122070312,10.727929,10727.929 +4473,2025-03-07T13:18:53.867404-08:00,1010.7047119140625,10.738586,10738.586 +4474,2025-03-07T13:19:04.609669-08:00,1010.7061767578125,10.742265,10742.265 +4475,2025-03-07T13:19:15.346670-08:00,1010.6843872070312,10.737001,10737.001 +4476,2025-03-07T13:19:26.083704-08:00,1010.6875610351562,10.737034,10737.034 +4477,2025-03-07T13:19:36.815790-08:00,1010.6574096679688,10.732086,10732.086 +4478,2025-03-07T13:19:47.543705-08:00,1010.6871337890625,10.727915,10727.915 +4479,2025-03-07T13:19:58.289840-08:00,1010.6866455078125,10.746135,10746.135 +4480,2025-03-07T13:20:09.018677-08:00,1010.6846923828125,10.728837,10728.837 +4481,2025-03-07T13:20:19.750845-08:00,1010.6599731445312,10.732168,10732.168 +4482,2025-03-07T13:20:30.495414-08:00,1010.6760864257812,10.744569,10744.569 +4483,2025-03-07T13:20:41.228673-08:00,1010.6889038085938,10.733259,10733.259 +4484,2025-03-07T13:20:51.973889-08:00,1010.7284545898438,10.745216,10745.216 +4485,2025-03-07T13:21:02.712674-08:00,1010.71142578125,10.738785,10738.785 +4486,2025-03-07T13:21:13.448622-08:00,1010.7047119140625,10.735948,10735.948 +4487,2025-03-07T13:21:24.190832-08:00,1010.69287109375,10.74221,10742.21 +4488,2025-03-07T13:21:34.941693-08:00,1010.6578369140625,10.750861,10750.861 +4489,2025-03-07T13:21:45.673698-08:00,1010.6875,10.732005,10732.005 +4490,2025-03-07T13:21:56.417920-08:00,1010.7120361328125,10.744222,10744.222 +4491,2025-03-07T13:22:07.158667-08:00,1010.736572265625,10.740747,10740.747 +4492,2025-03-07T13:22:17.900728-08:00,1010.7179565429688,10.742061,10742.061 +4493,2025-03-07T13:22:28.642165-08:00,1010.6929931640625,10.741437,10741.437 +4494,2025-03-07T13:22:39.391674-08:00,1010.6858520507812,10.749509,10749.509 +4495,2025-03-07T13:22:50.134922-08:00,1010.6412353515625,10.743248,10743.248 +4496,2025-03-07T13:23:00.868423-08:00,1010.7017822265625,10.733501,10733.501 +4497,2025-03-07T13:23:11.616718-08:00,1010.6454467773438,10.748295,10748.295 +4498,2025-03-07T13:23:22.364881-08:00,1010.6302490234375,10.748163,10748.163 +4499,2025-03-07T13:23:33.104860-08:00,1010.6812744140625,10.739979,10739.979 +4500,2025-03-07T13:23:43.849408-08:00,1010.6925048828125,10.744548,10744.548 +4501,2025-03-07T13:23:54.583787-08:00,1010.6972045898438,10.734379,10734.379 +4502,2025-03-07T13:24:05.330671-08:00,1010.673583984375,10.746884,10746.884 +4503,2025-03-07T13:24:16.063673-08:00,1010.6649780273438,10.733002,10733.002 +4504,2025-03-07T13:24:26.810733-08:00,1010.6615600585938,10.74706,10747.06 +4505,2025-03-07T13:24:37.551831-08:00,1010.65966796875,10.741098,10741.098 +4506,2025-03-07T13:24:48.287751-08:00,1010.67578125,10.73592,10735.92 +4507,2025-03-07T13:24:57.767282-08:00,1010.6591186523438,9.479531,9479.531 +4508,2025-03-07T13:24:59.026699-08:00,1010.6525268554688,1.259417,1259.417 +4509,2025-03-07T13:25:09.765671-08:00,1010.6275024414062,10.738972,10738.972 +4510,2025-03-07T13:25:20.511960-08:00,1010.6520385742188,10.746289,10746.289 +4511,2025-03-07T13:25:31.249849-08:00,1010.6419677734375,10.737889,10737.889 +4512,2025-03-07T13:25:41.986975-08:00,1010.630126953125,10.737126,10737.126 +4513,2025-03-07T13:25:52.740134-08:00,1010.6958618164062,10.753159,10753.159 +4514,2025-03-07T13:26:03.479706-08:00,1010.69091796875,10.739572,10739.572 +4515,2025-03-07T13:26:14.225675-08:00,1010.6361083984375,10.745969,10745.969 +4516,2025-03-07T13:26:24.967850-08:00,1010.6602172851562,10.742175,10742.175 +4517,2025-03-07T13:26:35.706412-08:00,1010.6865844726562,10.738562,10738.562 +4518,2025-03-07T13:26:46.457174-08:00,1010.6231079101562,10.750762,10750.762 +4519,2025-03-07T13:26:57.197117-08:00,1010.6325073242188,10.739943,10739.943 +4520,2025-03-07T13:27:07.943866-08:00,1010.6157836914062,10.746749,10746.749 +4521,2025-03-07T13:27:18.694739-08:00,1010.6303100585938,10.750873,10750.873 +4522,2025-03-07T13:27:29.441002-08:00,1010.63671875,10.746263,10746.263 +4523,2025-03-07T13:27:40.189674-08:00,1010.6196899414062,10.748672,10748.672 +4524,2025-03-07T13:27:50.931670-08:00,1010.6177368164062,10.741996,10741.996 +4525,2025-03-07T13:28:01.682674-08:00,1010.5892333984375,10.751004,10751.004 +4526,2025-03-07T13:28:12.428671-08:00,1010.6581420898438,10.745997,10745.997 +4527,2025-03-07T13:28:23.172706-08:00,1010.6296997070312,10.744035,10744.035 +4528,2025-03-07T13:28:33.919670-08:00,1010.6290893554688,10.746964,10746.964 +4529,2025-03-07T13:28:44.664207-08:00,1010.6305541992188,10.744537,10744.537 +4530,2025-03-07T13:28:55.405673-08:00,1010.6104736328125,10.741466,10741.466 +4531,2025-03-07T13:29:06.157665-08:00,1010.6331787109375,10.751992,10751.992 +4532,2025-03-07T13:29:16.903971-08:00,1010.6312255859375,10.746306,10746.306 +4533,2025-03-07T13:29:27.655671-08:00,1010.6079711914062,10.7517,10751.7 +4534,2025-03-07T13:29:38.403671-08:00,1010.6309204101562,10.748,10748.0 +4535,2025-03-07T13:29:49.146680-08:00,1010.625244140625,10.743009,10743.009 +4536,2025-03-07T13:29:59.891671-08:00,1010.6085815429688,10.744991,10744.991 +4537,2025-03-07T13:30:10.648877-08:00,1010.59814453125,10.757206,10757.206 +4538,2025-03-07T13:30:21.388752-08:00,1010.5895385742188,10.739875,10739.875 +4539,2025-03-07T13:30:32.142670-08:00,1010.6074829101562,10.753918,10753.918 +4540,2025-03-07T13:30:42.888671-08:00,1010.5988159179688,10.746001,10746.001 +4541,2025-03-07T13:30:53.630670-08:00,1010.5916137695312,10.741999,10741.999 +4542,2025-03-07T13:31:04.386833-08:00,1010.622802734375,10.756163,10756.163 +4543,2025-03-07T13:31:15.129870-08:00,1010.5962524414062,10.743037,10743.037 +4544,2025-03-07T13:31:25.875673-08:00,1010.6224975585938,10.745803,10745.803 +4545,2025-03-07T13:31:36.619813-08:00,1010.60546875,10.74414,10744.14 +4546,2025-03-07T13:31:47.367701-08:00,1010.6286010742188,10.747888,10747.888 +4547,2025-03-07T13:31:58.105676-08:00,1010.5968627929688,10.737975,10737.975 +4548,2025-03-07T13:32:08.852670-08:00,1010.565185546875,10.746994,10746.994 +4549,2025-03-07T13:32:19.593890-08:00,1010.55517578125,10.74122,10741.22 +4550,2025-03-07T13:32:30.340691-08:00,1010.5896606445312,10.746801,10746.801 +4551,2025-03-07T13:32:41.079078-08:00,1010.572998046875,10.738387,10738.387 +4552,2025-03-07T13:32:51.822554-08:00,1010.5859985351562,10.743476,10743.476 +4553,2025-03-07T13:33:02.566192-08:00,1010.5940551757812,10.743638,10743.638 +4554,2025-03-07T13:33:13.311985-08:00,1010.57421875,10.745793,10745.793 +4555,2025-03-07T13:33:24.063526-08:00,1010.5588989257812,10.751541,10751.541 +4556,2025-03-07T13:33:34.800722-08:00,1010.55224609375,10.737196,10737.196 +4557,2025-03-07T13:33:45.546801-08:00,1010.5865478515625,10.746079,10746.079 +4558,2025-03-07T13:33:56.301727-08:00,1010.6079711914062,10.754926,10754.926 +4559,2025-03-07T13:34:07.041157-08:00,1010.5728149414062,10.73943,10739.43 +4560,2025-03-07T13:34:17.784676-08:00,1010.5626831054688,10.743519,10743.519 +4561,2025-03-07T13:34:28.528715-08:00,1010.5806274414062,10.744039,10744.039 +4562,2025-03-07T13:34:39.274825-08:00,1010.5275268554688,10.74611,10746.11 +4563,2025-03-07T13:34:50.027063-08:00,1010.599853515625,10.752238,10752.238 +4564,2025-03-07T13:35:00.771672-08:00,1010.6045532226562,10.744609,10744.609 +4565,2025-03-07T13:35:11.515761-08:00,1010.6024780273438,10.744089,10744.089 +4566,2025-03-07T13:35:22.259787-08:00,1010.5722045898438,10.744026,10744.026 +4567,2025-03-07T13:36:26.736509-08:00,1010.590087890625,64.476722,64476.722 +4568,2025-03-07T13:36:37.482974-08:00,1010.596435546875,10.746465,10746.465 +4569,2025-03-07T13:36:48.223861-08:00,1010.56787109375,10.740887,10740.887 +4570,2025-03-07T13:36:58.979889-08:00,1010.544189453125,10.756028,10756.028 +4571,2025-03-07T13:37:09.726407-08:00,1010.591796875,10.746518,10746.518 +4572,2025-03-07T13:37:20.470840-08:00,1010.614501953125,10.744433,10744.433 +4573,2025-03-07T13:37:31.223889-08:00,1010.611083984375,10.753049,10753.049 +4574,2025-03-07T13:37:41.970874-08:00,1010.58251953125,10.746985,10746.985 +4575,2025-03-07T13:37:52.713863-08:00,1010.588623046875,10.742989,10742.989 +4576,2025-03-07T13:38:03.453930-08:00,1010.5733032226562,10.740067,10740.067 +4577,2025-03-07T13:38:14.200512-08:00,1010.5784301757812,10.746582,10746.582 +4578,2025-03-07T13:38:24.949292-08:00,1010.5830688476562,10.74878,10748.78 +4579,2025-03-07T13:38:35.692670-08:00,1010.5809936523438,10.743378,10743.378 +4580,2025-03-07T13:38:46.440872-08:00,1010.5957641601562,10.748202,10748.202 +4581,2025-03-07T13:38:57.189802-08:00,1010.59716796875,10.74893,10748.93 +4582,2025-03-07T13:39:07.936674-08:00,1010.5440673828125,10.746872,10746.872 +4583,2025-03-07T13:40:01.699854-08:00,1010.599365234375,53.76318,53763.18 +4584,2025-03-07T13:40:12.457697-08:00,1010.4632568359375,10.757843,10757.843 +4585,2025-03-07T13:40:23.216875-08:00,1010.5971069335938,10.759178,10759.178 +4586,2025-03-07T13:40:33.974136-08:00,1010.58984375,10.757261,10757.261 +4587,2025-03-07T13:40:44.735749-08:00,1010.5673217773438,10.761613,10761.613 +4588,2025-03-07T13:40:55.491745-08:00,1010.5167236328125,10.755996,10755.996 +4589,2025-03-07T13:41:06.258911-08:00,1010.5186767578125,10.767166,10767.166 +4590,2025-03-07T13:41:17.013895-08:00,1010.5324096679688,10.754984,10754.984 +4591,2025-03-07T13:41:27.773887-08:00,1010.57275390625,10.759992,10759.992 +4592,2025-03-07T13:41:38.537843-08:00,1010.5596313476562,10.763956,10763.956 +4593,2025-03-07T13:41:49.302825-08:00,1010.5548706054688,10.764982,10764.982 +4594,2025-03-07T13:42:00.062003-08:00,1010.5706176757812,10.759178,10759.178 +4595,2025-03-07T13:42:10.817738-08:00,1010.5142211914062,10.755735,10755.735 +4596,2025-03-07T13:42:21.576891-08:00,1010.5013427734375,10.759153,10759.153 +4597,2025-03-07T13:42:32.329676-08:00,1010.533203125,10.752785,10752.785 +4598,2025-03-07T13:42:43.081139-08:00,1010.5556030273438,10.751463,10751.463 +4599,2025-03-07T13:42:53.840669-08:00,1010.5714111328125,10.75953,10759.53 +4600,2025-03-07T13:43:04.586676-08:00,1010.5626831054688,10.746007,10746.007 +4601,2025-03-07T13:43:15.343186-08:00,1010.5309448242188,10.75651,10756.51 +4602,2025-03-07T13:43:26.095860-08:00,1010.5421142578125,10.752674,10752.674 +4603,2025-03-07T13:43:36.839266-08:00,1010.52880859375,10.743406,10743.406 +4604,2025-03-07T13:43:47.590859-08:00,1010.5487670898438,10.751593,10751.593 +4605,2025-03-07T13:43:58.346481-08:00,1010.53857421875,10.755622,10755.622 +4606,2025-03-07T13:44:09.088864-08:00,1010.59521484375,10.742383,10742.383 +4607,2025-03-07T13:44:19.843703-08:00,1010.5671997070312,10.754839,10754.839 +4608,2025-03-07T13:44:30.593074-08:00,1010.5459594726562,10.749371,10749.371 +4609,2025-03-07T13:44:41.339769-08:00,1010.5360717773438,10.746695,10746.695 +4610,2025-03-07T13:44:52.089682-08:00,1010.5360717773438,10.749913,10749.913 +4611,2025-03-07T13:45:02.840702-08:00,1010.5396118164062,10.75102,10751.02 +4612,2025-03-07T13:45:13.584170-08:00,1010.4637451171875,10.743468,10743.468 +4613,2025-03-07T13:45:24.330877-08:00,1010.5335693359375,10.746707,10746.707 +4614,2025-03-07T13:45:35.082969-08:00,1010.5238037109375,10.752092,10752.092 +4615,2025-03-07T13:45:45.830856-08:00,1010.55419921875,10.747887,10747.887 +4616,2025-03-07T13:45:56.577082-08:00,1010.5245361328125,10.746226,10746.226 +4617,2025-03-07T13:46:07.331806-08:00,1010.5496826171875,10.754724,10754.724 +4618,2025-03-07T13:46:18.080858-08:00,1010.5451049804688,10.749052,10749.052 +4619,2025-03-07T13:46:28.821779-08:00,1010.5038452148438,10.740921,10740.921 +4620,2025-03-07T13:46:39.572757-08:00,1010.47265625,10.750978,10750.978 +4621,2025-03-07T13:46:50.326842-08:00,1010.4776611328125,10.754085,10754.085 +4622,2025-03-07T13:47:01.076711-08:00,1010.4583740234375,10.749869,10749.869 +4623,2025-03-07T13:47:11.823749-08:00,1010.4901733398438,10.747038,10747.038 +4624,2025-03-07T13:47:22.571026-08:00,1010.5062255859375,10.747277,10747.277 +4625,2025-03-07T13:47:33.315728-08:00,1010.5314331054688,10.744702,10744.702 +4626,2025-03-07T13:47:44.068736-08:00,1010.5565795898438,10.753008,10753.008 +4627,2025-03-07T13:47:54.819675-08:00,1010.5845336914062,10.750939,10750.939 +4628,2025-03-07T13:48:05.568738-08:00,1010.5565795898438,10.749063,10749.063 +4629,2025-03-07T13:48:16.312889-08:00,1010.5379638671875,10.744151,10744.151 +4630,2025-03-07T13:48:27.070254-08:00,1010.5484619140625,10.757365,10757.365 +4631,2025-03-07T13:48:37.809911-08:00,1010.576416015625,10.739657,10739.657 +4632,2025-03-07T13:48:48.558874-08:00,1010.5579833984375,10.748963,10748.963 +4633,2025-03-07T13:48:59.301727-08:00,1010.5261840820312,10.742853,10742.853 +4634,2025-03-07T13:49:10.053687-08:00,1010.528564453125,10.75196,10751.96 +4635,2025-03-07T13:49:20.797742-08:00,1010.528564453125,10.744055,10744.055 +4636,2025-03-07T13:49:31.536715-08:00,1010.5418701171875,10.738973,10738.973 +4637,2025-03-07T13:49:42.279679-08:00,1010.5267944335938,10.742964,10742.964 +4638,2025-03-07T13:49:53.031913-08:00,1010.5320434570312,10.752234,10752.234 +4639,2025-03-07T13:50:03.772120-08:00,1010.5106811523438,10.740207,10740.207 +4640,2025-03-07T13:50:14.525848-08:00,1010.515625,10.753728,10753.728 +4641,2025-03-07T13:50:25.272874-08:00,1010.5075073242188,10.747026,10747.026 +4642,2025-03-07T13:50:36.024879-08:00,1010.477783203125,10.752005,10752.005 +4643,2025-03-07T13:50:46.762878-08:00,1010.4351806640625,10.737999,10737.999 +4644,2025-03-07T13:50:57.516724-08:00,1010.4351806640625,10.753846,10753.846 +4645,2025-03-07T13:51:08.259857-08:00,1010.45654296875,10.743133,10743.133 +4646,2025-03-07T13:51:19.010470-08:00,1010.4931030273438,10.750613,10750.613 +4647,2025-03-07T13:51:29.757048-08:00,1010.4732666015625,10.746578,10746.578 +4648,2025-03-07T13:51:40.500674-08:00,1010.4784545898438,10.743626,10743.626 +4649,2025-03-07T13:51:51.250862-08:00,1010.4519653320312,10.750188,10750.188 +4650,2025-03-07T13:52:01.995865-08:00,1010.4799194335938,10.745003,10745.003 +4651,2025-03-07T13:52:12.749670-08:00,1010.4334106445312,10.753805,10753.805 +4652,2025-03-07T13:52:23.469486-08:00,1010.4254150390625,10.719816,10719.816 +4653,2025-03-07T13:52:34.223328-08:00,1010.47705078125,10.753842,10753.842 +4654,2025-03-07T13:52:44.967271-08:00,1010.5220947265625,10.743943,10743.943 +4655,2025-03-07T13:52:55.717479-08:00,1010.4240112304688,10.750208,10750.208 +4656,2025-03-07T13:53:06.464269-08:00,1010.470458984375,10.74679,10746.79 +4657,2025-03-07T13:53:17.207746-08:00,1010.4572143554688,10.743477,10743.477 +4658,2025-03-07T13:53:27.965113-08:00,1010.4306030273438,10.757367,10757.367 +4659,2025-03-07T13:53:38.703889-08:00,1010.4240112304688,10.738776,10738.776 +4660,2025-03-07T13:53:49.451605-08:00,1010.4386596679688,10.747716,10747.716 +4661,2025-03-07T13:54:00.204559-08:00,1010.4306030273438,10.752954,10752.954 +4662,2025-03-07T13:54:10.950273-08:00,1010.4425048828125,10.745714,10745.714 +4663,2025-03-07T13:54:21.695279-08:00,1010.435791015625,10.745006,10745.006 +4664,2025-03-07T13:54:32.439452-08:00,1010.4490356445312,10.744173,10744.173 +4665,2025-03-07T13:54:43.195577-08:00,1010.42919921875,10.756125,10756.125 +4666,2025-03-07T13:54:53.943270-08:00,1010.4060668945312,10.747693,10747.693 +4667,2025-03-07T13:55:04.688456-08:00,1010.4407958984375,10.745186,10745.186 +4668,2025-03-07T13:55:15.436452-08:00,1010.4445190429688,10.747996,10747.996 +4669,2025-03-07T13:55:26.190275-08:00,1010.4459228515625,10.753823,10753.823 +4670,2025-03-07T13:55:36.938363-08:00,1010.4246215820312,10.748088,10748.088 +4671,2025-03-07T13:55:47.687281-08:00,1010.4428100585938,10.748918,10748.918 +4672,2025-03-07T13:55:58.430458-08:00,1010.44140625,10.743177,10743.177 +4673,2025-03-07T13:56:09.188484-08:00,1010.4812622070312,10.758026,10758.026 +4674,2025-03-07T13:56:19.929267-08:00,1010.42138671875,10.740783,10740.783 +4675,2025-03-07T13:56:30.686270-08:00,1010.4400024414062,10.757003,10757.003 +4676,2025-03-07T13:56:41.425272-08:00,1010.42138671875,10.739002,10739.002 +4677,2025-03-07T13:56:52.176274-08:00,1010.4644775390625,10.751002,10751.002 +4678,2025-03-07T13:57:02.924278-08:00,1010.4710693359375,10.748004,10748.004 +4679,2025-03-07T13:57:13.677319-08:00,1010.4791259765625,10.753041,10753.041 +4680,2025-03-07T13:57:24.428304-08:00,1010.49560546875,10.750985,10750.985 +4681,2025-03-07T13:57:35.171270-08:00,1010.4386596679688,10.742966,10742.966 +4682,2025-03-07T13:57:45.917271-08:00,1010.4666137695312,10.746001,10746.001 +4683,2025-03-07T13:57:56.669361-08:00,1010.415283203125,10.75209,10752.09 +4684,2025-03-07T13:58:07.424604-08:00,1010.4697875976562,10.755243,10755.243 +4685,2025-03-07T13:58:18.172465-08:00,1010.4498291015625,10.747861,10747.861 +4686,2025-03-07T13:58:28.920467-08:00,1010.48095703125,10.748002,10748.002 +4687,2025-03-07T13:58:39.674602-08:00,1010.482421875,10.754135,10754.135 +4688,2025-03-07T13:58:50.431278-08:00,1010.4338989257812,10.756676,10756.676 +4689,2025-03-07T13:59:01.183276-08:00,1010.4442749023438,10.751998,10751.998 +4690,2025-03-07T13:59:11.934560-08:00,1010.4503173828125,10.751284,10751.284 +4691,2025-03-07T13:59:22.683436-08:00,1010.4813842773438,10.748876,10748.876 +4692,2025-03-07T13:59:33.432276-08:00,1010.4384155273438,10.74884,10748.84 +4693,2025-03-07T13:59:44.174271-08:00,1010.4562377929688,10.741995,10741.995 +4694,2025-03-07T13:59:54.932476-08:00,1010.4429931640625,10.758205,10758.205 +4695,2025-03-07T14:00:05.678481-08:00,1010.3898315429688,10.746005,10746.005 +4696,2025-03-07T14:00:16.417438-08:00,1010.3847045898438,10.738957,10738.957 +4697,2025-03-07T14:00:27.171343-08:00,1010.3797607421875,10.753905,10753.905 +4698,2025-03-07T14:00:37.912270-08:00,1010.3898315429688,10.740927,10740.927 +4699,2025-03-07T14:00:48.666269-08:00,1010.404541015625,10.753999,10753.999 +4700,2025-03-07T14:00:59.413555-08:00,1010.39794921875,10.747286,10747.286 +4701,2025-03-07T14:01:10.155271-08:00,1010.408447265625,10.741716,10741.716 +4702,2025-03-07T14:01:20.904419-08:00,1010.4149780273438,10.749148,10749.148 +4703,2025-03-07T14:01:31.652273-08:00,1010.4332275390625,10.747854,10747.854 +4704,2025-03-07T14:01:42.396302-08:00,1010.4185180664062,10.744029,10744.029 +4705,2025-03-07T14:01:53.143487-08:00,1010.4356079101562,10.747185,10747.185 +4706,2025-03-07T14:02:03.893454-08:00,1010.4073486328125,10.749967,10749.967 +4707,2025-03-07T14:02:14.643274-08:00,1010.39404296875,10.74982,10749.82 +4708,2025-03-07T14:02:25.379301-08:00,1010.42578125,10.736027,10736.027 +4709,2025-03-07T14:02:36.131269-08:00,1010.3779907226562,10.751968,10751.968 +4710,2025-03-07T14:02:46.868496-08:00,1010.4027099609375,10.737227,10737.227 +4711,2025-03-07T14:02:57.619352-08:00,1010.3866577148438,10.750856,10750.856 +4712,2025-03-07T14:03:08.370486-08:00,1010.36669921875,10.751134,10751.134 +4713,2025-03-07T14:03:19.113548-08:00,1010.3915405273438,10.743062,10743.062 +4714,2025-03-07T14:03:29.855473-08:00,1010.463134765625,10.741925,10741.925 +4715,2025-03-07T14:03:40.608446-08:00,1010.4181518554688,10.752973,10752.973 +4716,2025-03-07T14:03:51.360271-08:00,1010.411376953125,10.751825,10751.825 +4717,2025-03-07T14:04:02.099663-08:00,1010.4085693359375,10.739392,10739.392 +4718,2025-03-07T14:04:12.845457-08:00,1010.4285888671875,10.745794,10745.794 +4719,2025-03-07T14:04:23.600448-08:00,1010.4400634765625,10.754991,10754.991 +4720,2025-03-07T14:04:34.340458-08:00,1010.4240112304688,10.74001,10740.01 +4721,2025-03-07T14:04:45.087490-08:00,1010.4306030273438,10.747032,10747.032 +4722,2025-03-07T14:04:55.835191-08:00,1010.4092407226562,10.747701,10747.701 +4723,2025-03-07T14:05:06.588511-08:00,1010.3848266601562,10.75332,10753.32 +4724,2025-03-07T14:05:17.330494-08:00,1010.3934326171875,10.741983,10741.983 +4725,2025-03-07T14:05:28.082419-08:00,1010.4085083007812,10.751925,10751.925 +4726,2025-03-07T14:05:38.817363-08:00,1010.4021606445312,10.734944,10734.944 +4727,2025-03-07T14:05:49.569551-08:00,1010.451904296875,10.752188,10752.188 +4728,2025-03-07T14:06:00.310486-08:00,1010.4088134765625,10.740935,10740.935 +4729,2025-03-07T14:06:11.064335-08:00,1010.3927612304688,10.753849,10753.849 +4730,2025-03-07T14:06:21.810858-08:00,1010.4227905273438,10.746523,10746.523 +4731,2025-03-07T14:06:32.550272-08:00,1010.4132690429688,10.739414,10739.414 +4732,2025-03-07T14:06:43.298342-08:00,1010.4299926757812,10.74807,10748.07 +4733,2025-03-07T14:06:54.043273-08:00,1010.4202270507812,10.744931,10744.931 +4734,2025-03-07T14:07:04.784518-08:00,1010.3975219726562,10.741245,10741.245 +4735,2025-03-07T14:07:15.534292-08:00,1010.40234375,10.749774,10749.774 +4736,2025-03-07T14:07:26.271364-08:00,1010.3876342773438,10.737072,10737.072 +4737,2025-03-07T14:07:37.025590-08:00,1010.3964233398438,10.754226,10754.226 +4738,2025-03-07T14:07:47.761478-08:00,1010.3883056640625,10.735888,10735.888 +4739,2025-03-07T14:07:58.509461-08:00,1010.3917846679688,10.747983,10747.983 +4740,2025-03-07T14:08:09.258455-08:00,1010.3557739257812,10.748994,10748.994 +4741,2025-03-07T14:08:19.998521-08:00,1010.4022827148438,10.740066,10740.066 +4742,2025-03-07T14:08:30.732544-08:00,1010.3577880859375,10.734023,10734.023 +4743,2025-03-07T14:08:41.484507-08:00,1010.404296875,10.751963,10751.963 +4744,2025-03-07T14:08:52.228922-08:00,1010.39453125,10.744415,10744.415 +4745,2025-03-07T14:09:02.974294-08:00,1010.3679809570312,10.745372,10745.372 +4746,2025-03-07T14:09:13.716271-08:00,1010.3864135742188,10.741977,10741.977 +4747,2025-03-07T14:09:24.456345-08:00,1010.3368530273438,10.740074,10740.074 +4748,2025-03-07T14:09:35.200475-08:00,1010.3406372070312,10.74413,10744.13 +4749,2025-03-07T14:09:45.942271-08:00,1010.3787231445312,10.741796,10741.796 +4750,2025-03-07T14:09:56.683515-08:00,1010.2896118164062,10.741244,10741.244 +4751,2025-03-07T14:10:07.434271-08:00,1010.329345703125,10.750756,10750.756 +4752,2025-03-07T14:10:18.174297-08:00,1010.349365234375,10.740026,10740.026 +4753,2025-03-07T14:10:28.919340-08:00,1010.3328857421875,10.745043,10745.043 +4754,2025-03-07T14:10:39.660436-08:00,1010.3761596679688,10.741096,10741.096 +4755,2025-03-07T14:10:50.404052-08:00,1010.3681030273438,10.743616,10743.616 +4756,2025-03-07T14:11:01.137458-08:00,1010.360107421875,10.733406,10733.406 +4757,2025-03-07T14:11:11.885513-08:00,1010.3135986328125,10.748055,10748.055 +4758,2025-03-07T14:11:22.620498-08:00,1010.3834228515625,10.734985,10734.985 +4759,2025-03-07T14:11:33.366603-08:00,1010.3323974609375,10.746105,10746.105 +4760,2025-03-07T14:11:44.097459-08:00,1010.3162231445312,10.730856,10730.856 +4761,2025-03-07T14:11:54.837448-08:00,1010.3096923828125,10.739989,10739.989 +4762,2025-03-07T14:12:05.582413-08:00,1010.3595581054688,10.744965,10744.965 +4763,2025-03-07T14:12:16.323544-08:00,1010.4346313476562,10.741131,10741.131 +4764,2025-03-07T14:12:27.067421-08:00,1010.318603515625,10.743877,10743.877 +4765,2025-03-07T14:12:37.808266-08:00,1010.3092041015625,10.740845,10740.845 +4766,2025-03-07T14:12:48.553329-08:00,1010.3538818359375,10.745063,10745.063 +4767,2025-03-07T14:12:59.296269-08:00,1010.3378295898438,10.74294,10742.94 +4768,2025-03-07T14:13:10.038271-08:00,1010.3743896484375,10.742002,10742.002 +4769,2025-03-07T14:13:20.775482-08:00,1010.298583984375,10.737211,10737.211 +4770,2025-03-07T14:13:31.524665-08:00,1010.3204956054688,10.749183,10749.183 +4771,2025-03-07T14:13:42.257298-08:00,1010.3292236328125,10.732633,10732.633 +4772,2025-03-07T14:13:53.003636-08:00,1010.3392944335938,10.746338,10746.338 +4773,2025-03-07T14:14:03.747267-08:00,1010.3231201171875,10.743631,10743.631 +4774,2025-03-07T14:14:14.489480-08:00,1010.3067016601562,10.742213,10742.213 +4775,2025-03-07T14:14:25.229292-08:00,1010.3318481445312,10.739812,10739.812 +4776,2025-03-07T14:14:35.973293-08:00,1010.3436889648438,10.744001,10744.001 +4777,2025-03-07T14:14:46.710452-08:00,1010.3339233398438,10.737159,10737.159 +4778,2025-03-07T14:14:57.449444-08:00,1010.3110961914062,10.738992,10738.992 +4779,2025-03-07T14:15:08.192091-08:00,1010.3509521484375,10.742647,10742.647 +4780,2025-03-07T14:15:18.929468-08:00,1010.3927612304688,10.737377,10737.377 +4781,2025-03-07T14:15:29.677375-08:00,1010.3250122070312,10.747907,10747.907 +4782,2025-03-07T14:15:40.414270-08:00,1010.39794921875,10.736895,10736.895 +4783,2025-03-07T14:15:51.159780-08:00,1010.4065551757812,10.74551,10745.51 +4784,2025-03-07T14:16:01.908268-08:00,1010.39013671875,10.748488,10748.488 +4785,2025-03-07T14:16:12.654469-08:00,1010.3967895507812,10.746201,10746.201 +4786,2025-03-07T14:16:23.387270-08:00,1010.37890625,10.732801,10732.801 +4787,2025-03-07T14:16:34.137551-08:00,1010.4068603515625,10.750281,10750.281 +4788,2025-03-07T14:16:44.873453-08:00,1010.407470703125,10.735902,10735.902 +4789,2025-03-07T14:16:55.616768-08:00,1010.3596801757812,10.743315,10743.315 +4790,2025-03-07T14:17:06.366495-08:00,1010.4126586914062,10.749727,10749.727 +4791,2025-03-07T14:17:17.113511-08:00,1010.375,10.747016,10747.016 +4792,2025-03-07T14:17:27.855297-08:00,1010.4000244140625,10.741786,10741.786 +4793,2025-03-07T14:17:38.602297-08:00,1010.4049072265625,10.747,10747.0 +4794,2025-03-07T14:17:49.344272-08:00,1010.3770141601562,10.741975,10741.975 +4795,2025-03-07T14:18:00.090447-08:00,1010.3556518554688,10.746175,10746.175 +4796,2025-03-07T14:18:10.833275-08:00,1010.3982543945312,10.742828,10742.828 +4797,2025-03-07T14:18:21.576309-08:00,1010.3836059570312,10.743034,10743.034 +4798,2025-03-07T14:18:32.320687-08:00,1010.3623657226562,10.744378,10744.378 +4799,2025-03-07T14:18:43.072302-08:00,1010.3406372070312,10.751615,10751.615 +4800,2025-03-07T14:18:53.812364-08:00,1010.3273315429688,10.740062,10740.062 +4801,2025-03-07T14:19:04.555485-08:00,1010.3490600585938,10.743121,10743.121 +4802,2025-03-07T14:19:15.299269-08:00,1010.3703002929688,10.743784,10743.784 +4803,2025-03-07T14:19:26.044469-08:00,1010.3291625976562,10.7452,10745.2 +4804,2025-03-07T14:19:36.785599-08:00,1010.3140869140625,10.74113,10741.13 +4805,2025-03-07T14:19:47.527498-08:00,1010.2861938476562,10.741899,10741.899 +4806,2025-03-07T14:19:58.268435-08:00,1010.3140869140625,10.740937,10740.937 +4807,2025-03-07T14:20:09.003272-08:00,1010.3140869140625,10.734837,10734.837 +4808,2025-03-07T14:20:19.751263-08:00,1010.3060913085938,10.747991,10747.991 +4809,2025-03-07T14:20:30.498268-08:00,1010.2927856445312,10.747005,10747.005 +4810,2025-03-07T14:20:41.240271-08:00,1010.3311767578125,10.742003,10742.003 +4811,2025-03-07T14:20:51.983643-08:00,1010.2861938476562,10.743372,10743.372 +4812,2025-03-07T14:21:02.728271-08:00,1010.31787109375,10.744628,10744.628 +4813,2025-03-07T14:21:13.472569-08:00,1010.311279296875,10.744298,10744.298 +4814,2025-03-07T14:21:24.212435-08:00,1010.3060913085938,10.739866,10739.866 +4815,2025-03-07T14:21:34.952255-08:00,1010.31787109375,10.73982,10739.82 +4816,2025-03-07T14:21:45.693289-08:00,1010.3325805664062,10.741034,10741.034 +4817,2025-03-07T14:21:56.433482-08:00,1010.2764282226562,10.740193,10740.193 +4818,2025-03-07T14:22:07.176806-08:00,1010.3412475585938,10.743324,10743.324 +4819,2025-03-07T14:22:17.913476-08:00,1010.3345947265625,10.73667,10736.67 +4820,2025-03-07T14:22:28.661300-08:00,1010.2584228515625,10.747824,10747.824 +4821,2025-03-07T14:22:39.409269-08:00,1010.318115234375,10.747969,10747.969 +4822,2025-03-07T14:22:50.146472-08:00,1010.3199462890625,10.737203,10737.203 +4823,2025-03-07T14:23:00.885767-08:00,1010.2769775390625,10.739295,10739.295 +4824,2025-03-07T14:23:11.631466-08:00,1010.287353515625,10.745699,10745.699 +4825,2025-03-07T14:23:22.368268-08:00,1010.333740234375,10.736802,10736.802 +4826,2025-03-07T14:23:33.116271-08:00,1010.281005859375,10.748003,10748.003 +4827,2025-03-07T14:23:43.849423-08:00,1010.2597045898438,10.733152,10733.152 +4828,2025-03-07T14:23:54.592270-08:00,1010.253662109375,10.742847,10742.847 +4829,2025-03-07T14:24:05.333469-08:00,1010.2490844726562,10.741199,10741.199 +4830,2025-03-07T14:24:16.071576-08:00,1010.231201171875,10.738107,10738.107 +4831,2025-03-07T14:24:26.817469-08:00,1010.2664184570312,10.745893,10745.893 +4832,2025-03-07T14:24:37.557517-08:00,1010.2631225585938,10.740048,10740.048 +4833,2025-03-07T14:24:48.290267-08:00,1010.2703857421875,10.73275,10732.75 +4834,2025-03-07T14:24:59.031382-08:00,1010.3056030273438,10.741115,10741.115 +4835,2025-03-07T14:25:09.781267-08:00,1010.294921875,10.749885,10749.885 +4836,2025-03-07T14:25:20.519685-08:00,1010.2692260742188,10.738418,10738.418 +4837,2025-03-07T14:25:31.249474-08:00,1010.263427734375,10.729789,10729.789 +4838,2025-03-07T14:25:41.993279-08:00,1010.2514038085938,10.743805,10743.805 +4839,2025-03-07T14:25:52.725268-08:00,1010.2542114257812,10.731989,10731.989 +4840,2025-03-07T14:26:03.455299-08:00,1010.218994140625,10.730031,10730.031 +4841,2025-03-07T14:26:14.196270-08:00,1010.239990234375,10.740971,10740.971 +4842,2025-03-07T14:26:24.929298-08:00,1010.2276000976562,10.733028,10733.028 +4843,2025-03-07T14:26:35.672385-08:00,1010.2352905273438,10.743087,10743.087 +4844,2025-03-07T14:26:46.408337-08:00,1010.2446899414062,10.735952,10735.952 +4845,2025-03-07T14:26:57.147595-08:00,1010.3201293945312,10.739258,10739.258 +4846,2025-03-07T14:27:07.882110-08:00,1010.302978515625,10.734515,10734.515 +4847,2025-03-07T14:27:18.625657-08:00,1010.3135986328125,10.743547,10743.547 +4848,2025-03-07T14:27:29.359262-08:00,1010.286376953125,10.733605,10733.605 +4849,2025-03-07T14:27:40.090423-08:00,1010.2459106445312,10.731161,10731.161 +4850,2025-03-07T14:27:50.831308-08:00,1010.3128051757812,10.740885,10740.885 +4851,2025-03-07T14:28:01.562444-08:00,1010.2821655273438,10.731136,10731.136 +4852,2025-03-07T14:28:12.297264-08:00,1010.3240356445312,10.73482,10734.82 +4853,2025-03-07T14:28:23.034266-08:00,1010.295166015625,10.737002,10737.002 +4854,2025-03-07T14:28:33.775270-08:00,1010.3071899414062,10.741004,10741.004 +4855,2025-03-07T14:28:44.508432-08:00,1010.2648315429688,10.733162,10733.162 +4856,2025-03-07T14:28:55.237554-08:00,1010.3150634765625,10.729122,10729.122 +4857,2025-03-07T14:29:05.978378-08:00,1010.3009643554688,10.740824,10740.824 +4858,2025-03-07T14:29:16.717475-08:00,1010.314697265625,10.739097,10739.097 +4859,2025-03-07T14:29:27.453276-08:00,1010.331787109375,10.735801,10735.801 +4860,2025-03-07T14:29:38.189760-08:00,1010.3135986328125,10.736484,10736.484 +4861,2025-03-07T14:29:48.926295-08:00,1010.3074951171875,10.736535,10736.535 +4862,2025-03-07T14:29:59.670477-08:00,1010.2697143554688,10.744182,10744.182 +4863,2025-03-07T14:30:10.405265-08:00,1010.2848510742188,10.734788,10734.788 +4864,2025-03-07T14:30:21.144514-08:00,1010.2718505859375,10.739249,10739.249 +4865,2025-03-07T14:30:31.874437-08:00,1010.2737426757812,10.729923,10729.923 +4866,2025-03-07T14:30:42.616410-08:00,1010.2959594726562,10.741973,10741.973 +4867,2025-03-07T14:30:53.343294-08:00,1010.2714233398438,10.726884,10726.884 +4868,2025-03-07T14:31:04.080366-08:00,1010.2748413085938,10.737072,10737.072 +4869,2025-03-07T14:31:14.825123-08:00,1010.2650146484375,10.744757,10744.757 +4870,2025-03-07T14:31:25.554386-08:00,1010.2686767578125,10.729263,10729.263 +4871,2025-03-07T14:31:36.287380-08:00,1010.24560546875,10.732994,10732.994 +4872,2025-03-07T14:31:47.026271-08:00,1010.311767578125,10.738891,10738.891 +4873,2025-03-07T14:31:57.760726-08:00,1010.30712890625,10.734455,10734.455 +4874,2025-03-07T14:32:08.499440-08:00,1010.325439453125,10.738714,10738.714 +4875,2025-03-07T14:32:19.238511-08:00,1010.310791015625,10.739071,10739.071 +4876,2025-03-07T14:32:29.970268-08:00,1010.26123046875,10.731757,10731.757 +4877,2025-03-07T14:32:40.704265-08:00,1010.2249755859375,10.733997,10733.997 +4878,2025-03-07T14:32:51.445320-08:00,1010.2366943359375,10.741055,10741.055 +4879,2025-03-07T14:33:02.175292-08:00,1010.2366943359375,10.729972,10729.972 +4880,2025-03-07T14:33:12.917434-08:00,1010.2301635742188,10.742142,10742.142 +4881,2025-03-07T14:33:23.649338-08:00,1010.2220458984375,10.731904,10731.904 +4882,2025-03-07T14:33:34.385686-08:00,1010.2882690429688,10.736348,10736.348 +4883,2025-03-07T14:33:45.133474-08:00,1010.2665405273438,10.747788,10747.788 +4884,2025-03-07T14:33:55.873442-08:00,1010.2948608398438,10.739968,10739.968 +4885,2025-03-07T14:34:06.612271-08:00,1010.2750244140625,10.738829,10738.829 +4886,2025-03-07T14:34:17.345266-08:00,1010.260009765625,10.732995,10732.995 +4887,2025-03-07T14:34:28.086335-08:00,1010.2798461914062,10.741069,10741.069 +4888,2025-03-07T14:34:38.825434-08:00,1010.2401733398438,10.739099,10739.099 +4889,2025-03-07T14:34:49.568326-08:00,1010.24853515625,10.742892,10742.892 +4890,2025-03-07T14:35:00.310408-08:00,1010.2136840820312,10.742082,10742.082 +4891,2025-03-07T14:35:11.039643-08:00,1010.2418823242188,10.729235,10729.235 +4892,2025-03-07T14:35:21.779446-08:00,1010.2698364257812,10.739803,10739.803 +4893,2025-03-07T14:35:32.516364-08:00,1010.244873046875,10.736918,10736.918 +4894,2025-03-07T14:35:43.254884-08:00,1010.3156127929688,10.73852,10738.52 +4895,2025-03-07T14:35:53.987941-08:00,1010.30615234375,10.733057,10733.057 +4896,2025-03-07T14:36:04.734417-08:00,1010.2664184570312,10.746476,10746.476 +4897,2025-03-07T14:36:15.467470-08:00,1010.2909545898438,10.733053,10733.053 +4898,2025-03-07T14:36:26.204729-08:00,1010.256103515625,10.737259,10737.259 +4899,2025-03-07T14:36:36.937451-08:00,1010.238037109375,10.732722,10732.722 +4900,2025-03-07T14:36:47.668266-08:00,1010.2012329101562,10.730815,10730.815 +4901,2025-03-07T14:36:58.411270-08:00,1010.2064208984375,10.743004,10743.004 +4902,2025-03-07T14:37:09.135558-08:00,1010.2111206054688,10.724288,10724.288 +4903,2025-03-07T14:37:19.869039-08:00,1010.2176513671875,10.733481,10733.481 +4904,2025-03-07T14:37:30.600479-08:00,1010.2059326171875,10.73144,10731.44 +4905,2025-03-07T14:37:41.346472-08:00,1010.1793823242188,10.745993,10745.993 +4906,2025-03-07T14:37:52.078624-08:00,1010.2288818359375,10.732152,10732.152 +4907,2025-03-07T14:38:02.810455-08:00,1010.2073364257812,10.731831,10731.831 +4908,2025-03-07T14:38:13.547368-08:00,1010.189208984375,10.736913,10736.913 +4909,2025-03-07T14:38:24.278264-08:00,1010.2120361328125,10.730896,10730.896 +4910,2025-03-07T14:38:35.021337-08:00,1010.2998657226562,10.743073,10743.073 +4911,2025-03-07T14:38:45.757458-08:00,1010.2384643554688,10.736121,10736.121 +4912,2025-03-07T14:38:56.486329-08:00,1010.1953125,10.728871,10728.871 +4913,2025-03-07T14:39:07.220600-08:00,1010.2020263671875,10.734271,10734.271 +4914,2025-03-07T14:39:17.950449-08:00,1010.235107421875,10.729849,10729.849 +4915,2025-03-07T14:39:28.681329-08:00,1010.262939453125,10.73088,10730.88 +4916,2025-03-07T14:39:39.422271-08:00,1010.2463989257812,10.740942,10740.942 +4917,2025-03-07T14:39:50.151268-08:00,1010.233154296875,10.728997,10728.997 +4918,2025-03-07T14:40:00.894458-08:00,1010.2296752929688,10.74319,10743.19 +4919,2025-03-07T14:40:11.628516-08:00,1010.2510986328125,10.734058,10734.058 +4920,2025-03-07T14:40:22.358816-08:00,1010.22314453125,10.7303,10730.3 +4921,2025-03-07T14:40:33.096266-08:00,1010.2363891601562,10.73745,10737.45 +4922,2025-03-07T14:40:43.831335-08:00,1010.28564453125,10.735069,10735.069 +4923,2025-03-07T14:40:54.571432-08:00,1010.2061157226562,10.740097,10740.097 +4924,2025-03-07T14:41:05.307299-08:00,1010.247314453125,10.735867,10735.867 +4925,2025-03-07T14:41:16.043270-08:00,1010.200927734375,10.735971,10735.971 +4926,2025-03-07T14:41:26.776606-08:00,1010.2027587890625,10.733336,10733.336 +4927,2025-03-07T14:41:37.513511-08:00,1010.22265625,10.736905,10736.905 +4928,2025-03-07T14:41:48.245474-08:00,1010.2321166992188,10.731963,10731.963 +4929,2025-03-07T14:41:58.987267-08:00,1010.2140502929688,10.741793,10741.793 +4930,2025-03-07T14:42:09.719268-08:00,1010.2073974609375,10.732001,10732.001 +4931,2025-03-07T14:42:20.462268-08:00,1010.255126953125,10.743,10743.0 +4932,2025-03-07T14:42:31.192441-08:00,1010.23681640625,10.730173,10730.173 +4933,2025-03-07T14:42:41.935621-08:00,1010.2036743164062,10.74318,10743.18 +4934,2025-03-07T14:42:52.677403-08:00,1010.2532958984375,10.741782,10741.782 +4935,2025-03-07T14:43:03.414328-08:00,1010.2466430664062,10.736925,10736.925 +4936,2025-03-07T14:43:14.144629-08:00,1010.23486328125,10.730301,10730.301 +4937,2025-03-07T14:43:24.880659-08:00,1010.236572265625,10.73603,10736.03 +4938,2025-03-07T14:43:35.616486-08:00,1010.2432861328125,10.735827,10735.827 +4939,2025-03-07T14:43:46.348270-08:00,1010.2432861328125,10.731784,10731.784 +4940,2025-03-07T14:43:57.081470-08:00,1010.2792358398438,10.7332,10733.2 +4941,2025-03-07T14:44:07.826300-08:00,1010.239501953125,10.74483,10744.83 +4942,2025-03-07T14:44:18.558293-08:00,1010.2611083984375,10.731993,10731.993 +4943,2025-03-07T14:44:29.292269-08:00,1010.2757568359375,10.733976,10733.976 +4944,2025-03-07T14:44:40.029294-08:00,1010.311767578125,10.737025,10737.025 +4945,2025-03-07T14:44:50.763681-08:00,1010.297119140625,10.734387,10734.387 +4946,2025-03-07T14:45:01.499867-08:00,1010.3021240234375,10.736186,10736.186 +4947,2025-03-07T14:45:12.229268-08:00,1010.2589111328125,10.729401,10729.401 +4948,2025-03-07T14:45:22.970475-08:00,1010.2954711914062,10.741207,10741.207 +4949,2025-03-07T14:45:24.094795-08:00,1010.2954711914062,1.12432,1124.32 +4950,2025-03-07T14:45:33.703265-08:00,1010.3035888671875,9.60847,9608.47 +4951,2025-03-07T14:45:44.442659-08:00,1010.2837524414062,10.739394,10739.394 +4952,2025-03-07T14:45:55.180292-08:00,1010.273681640625,10.737633,10737.633 +4953,2025-03-07T14:46:05.922327-08:00,1010.286865234375,10.742035,10742.035 +4954,2025-03-07T14:46:16.648439-08:00,1010.272216796875,10.726112,10726.112 +4955,2025-03-07T14:46:27.389695-08:00,1010.2485961914062,10.741256,10741.256 +4956,2025-03-07T14:46:38.126488-08:00,1010.2703247070312,10.736793,10736.793 +4957,2025-03-07T14:46:48.859625-08:00,1010.2966918945312,10.733137,10733.137 +4958,2025-03-07T14:46:59.599348-08:00,1010.2982177734375,10.739723,10739.723 +4959,2025-03-07T14:47:10.333681-08:00,1010.27978515625,10.734333,10734.333 +4960,2025-03-07T14:47:21.075369-08:00,1010.282958984375,10.741688,10741.688 +4961,2025-03-07T14:47:31.801271-08:00,1010.269775390625,10.725902,10725.902 +4962,2025-03-07T14:47:42.545268-08:00,1010.2579956054688,10.743997,10743.997 +4963,2025-03-07T14:47:53.277278-08:00,1010.2579956054688,10.73201,10732.01 +4964,2025-03-07T14:48:04.003526-08:00,1010.2461547851562,10.726248,10726.248 +4965,2025-03-07T14:48:14.738332-08:00,1010.2461547851562,10.734806,10734.806 +4966,2025-03-07T14:48:25.476264-08:00,1010.2611694335938,10.737932,10737.932 +4967,2025-03-07T14:48:36.206283-08:00,1010.2559204101562,10.730019,10730.019 +4968,2025-03-07T14:48:46.942873-08:00,1010.2295532226562,10.73659,10736.59 +4969,2025-03-07T14:48:57.677271-08:00,1010.2459106445312,10.734398,10734.398 +4970,2025-03-07T14:49:08.411346-08:00,1010.2195434570312,10.734075,10734.075 +4971,2025-03-07T14:49:19.144515-08:00,1010.2142944335938,10.733169,10733.169 +4972,2025-03-07T14:49:29.879971-08:00,1010.2142944335938,10.735456,10735.456 +4973,2025-03-07T14:49:40.610269-08:00,1010.2274780273438,10.730298,10730.298 +4974,2025-03-07T14:49:51.356274-08:00,1010.2256469726562,10.746005,10746.005 +4975,2025-03-07T14:50:02.090300-08:00,1010.2042236328125,10.734026,10734.026 +4976,2025-03-07T14:50:12.823671-08:00,1010.2123413085938,10.733371,10733.371 +4977,2025-03-07T14:50:23.552332-08:00,1010.1843872070312,10.728661,10728.661 +4978,2025-03-07T14:50:34.290481-08:00,1010.22705078125,10.738149,10738.149 +4979,2025-03-07T14:50:45.027536-08:00,1010.2501831054688,10.737055,10737.055 +4980,2025-03-07T14:50:55.759907-08:00,1010.22705078125,10.732371,10732.371 +4981,2025-03-07T14:51:06.486266-08:00,1010.22216796875,10.726359,10726.359 +4982,2025-03-07T14:51:17.221265-08:00,1010.2633666992188,10.734999,10734.999 +4983,2025-03-07T14:51:27.955480-08:00,1010.2118530273438,10.734215,10734.215 +4984,2025-03-07T14:51:38.681334-08:00,1010.2449340820312,10.725854,10725.854 +4985,2025-03-07T14:51:49.417504-08:00,1010.2648315429688,10.73617,10736.17 +4986,2025-03-07T14:52:00.151453-08:00,1010.2599487304688,10.733949,10733.949 +4987,2025-03-07T14:52:10.879270-08:00,1010.2959594726562,10.727817,10727.817 +4988,2025-03-07T14:52:21.661686-08:00,1010.276123046875,10.782416,10782.416 +4989,2025-03-07T14:52:32.398512-08:00,1010.276123046875,10.736826,10736.826 +4990,2025-03-07T14:52:43.137727-08:00,1010.2991333007812,10.739215,10739.215 +4991,2025-03-07T14:52:53.878272-08:00,1010.290771484375,10.740545,10740.545 +4992,2025-03-07T14:53:04.604511-08:00,1010.3057861328125,10.726239,10726.239 +4993,2025-03-07T14:53:15.345513-08:00,1010.2991333007812,10.741002,10741.002 +4994,2025-03-07T14:53:26.072916-08:00,1010.2859497070312,10.727403,10727.403 +4995,2025-03-07T14:53:36.817513-08:00,1010.2887573242188,10.744597,10744.597 +4996,2025-03-07T14:53:47.547885-08:00,1010.2689208984375,10.730372,10730.372 +4997,2025-03-07T14:53:58.284511-08:00,1010.283935546875,10.736626,10736.626 +4998,2025-03-07T14:54:09.010725-08:00,1010.29052734375,10.726214,10726.214 +4999,2025-03-07T14:54:19.750870-08:00,1010.272216796875,10.740145,10740.145 +5000,2025-03-07T14:54:30.487515-08:00,1010.341552734375,10.736645,10736.645 +5001,2025-03-07T14:54:41.215385-08:00,1010.33642578125,10.72787,10727.87 +5002,2025-03-07T14:54:51.956777-08:00,1010.309814453125,10.741392,10741.392 +5003,2025-03-07T14:55:02.689708-08:00,1010.2998657226562,10.732931,10732.931 +5004,2025-03-07T14:55:13.425122-08:00,1010.2865600585938,10.735414,10735.414 +5005,2025-03-07T14:55:24.153618-08:00,1010.2762451171875,10.728496,10728.496 +5006,2025-03-07T14:55:34.899517-08:00,1010.247802734375,10.745899,10745.899 +5007,2025-03-07T14:55:45.626584-08:00,1010.2642211914062,10.727067,10727.067 +5008,2025-03-07T14:55:56.369515-08:00,1010.2890014648438,10.742931,10742.931 +5009,2025-03-07T14:56:07.104516-08:00,1010.2672119140625,10.735001,10735.001 +5010,2025-03-07T14:56:17.837703-08:00,1010.3314208984375,10.733187,10733.187 +5011,2025-03-07T14:56:28.566574-08:00,1010.29345703125,10.728871,10728.871 +5012,2025-03-07T14:56:39.306722-08:00,1010.3179931640625,10.740148,10740.148 +5013,2025-03-07T14:56:50.040619-08:00,1010.2744750976562,10.733897,10733.897 +5014,2025-03-07T14:57:00.769701-08:00,1010.267822265625,10.729082,10729.082 +5015,2025-03-07T14:57:11.507541-08:00,1010.2776489257812,10.73784,10737.84 +5016,2025-03-07T14:57:22.245519-08:00,1010.3353271484375,10.737978,10737.978 +5017,2025-03-07T14:57:32.985512-08:00,1010.2955322265625,10.739993,10739.993 +5018,2025-03-07T14:57:43.719709-08:00,1010.26708984375,10.734197,10734.197 +5019,2025-03-07T14:57:54.452295-08:00,1010.2633666992188,10.732586,10732.586 +5020,2025-03-07T14:58:05.188709-08:00,1010.3016357421875,10.736414,10736.414 +5021,2025-03-07T14:58:15.923720-08:00,1010.271728515625,10.735011,10735.011 +5022,2025-03-07T14:58:26.653730-08:00,1010.3209228515625,10.73001,10730.01 +5023,2025-03-07T14:58:37.383653-08:00,1010.2614135742188,10.729923,10729.923 +5024,2025-03-07T14:58:48.116516-08:00,1010.28125,10.732863,10732.863 +5025,2025-03-07T14:58:58.851712-08:00,1010.319091796875,10.735196,10735.196 +5026,2025-03-07T14:59:09.578511-08:00,1010.2561645507812,10.726799,10726.799 +5027,2025-03-07T14:59:20.314609-08:00,1010.2859497070312,10.736098,10736.098 +5028,2025-03-07T14:59:31.045716-08:00,1010.2740478515625,10.731107,10731.107 +5029,2025-03-07T14:59:41.777695-08:00,1010.2757568359375,10.731979,10731.979 +5030,2025-03-07T14:59:52.505726-08:00,1010.2692260742188,10.728031,10728.031 +5031,2025-03-07T15:00:03.243779-08:00,1010.2559204101562,10.738053,10738.053 +5032,2025-03-07T15:00:13.975721-08:00,1010.3368530273438,10.731942,10731.942 +5033,2025-03-07T15:00:24.711319-08:00,1010.2559204101562,10.735598,10735.598 +5034,2025-03-07T15:00:35.434513-08:00,1010.3037719726562,10.723194,10723.194 +5035,2025-03-07T15:00:46.173515-08:00,1010.2625732421875,10.739002,10739.002 +5036,2025-03-07T15:00:56.898532-08:00,1010.3156127929688,10.725017,10725.017 +5037,2025-03-07T15:01:07.636589-08:00,1010.2757568359375,10.738057,10738.057 +5038,2025-03-07T15:01:18.366769-08:00,1010.2427368164062,10.73018,10730.18 +5039,2025-03-07T15:01:29.105127-08:00,1010.342041015625,10.738358,10738.358 +5040,2025-03-07T15:01:39.839516-08:00,1010.2740478515625,10.734389,10734.389 +5041,2025-03-07T15:01:50.568513-08:00,1010.2559204101562,10.728997,10728.997 +5042,2025-03-07T15:02:01.304664-08:00,1010.3057861328125,10.736151,10736.151 +5043,2025-03-07T15:02:12.045547-08:00,1010.2726440429688,10.740883,10740.883 +5044,2025-03-07T15:02:22.768513-08:00,1010.2593994140625,10.722966,10722.966 +5045,2025-03-07T15:02:33.512580-08:00,1010.2726440429688,10.744067,10744.067 +5046,2025-03-07T15:02:44.242749-08:00,1010.2726440429688,10.730169,10730.169 +5047,2025-03-07T15:02:54.985289-08:00,1010.3057861328125,10.74254,10742.54 +5048,2025-03-07T15:03:05.717513-08:00,1010.2859497070312,10.732224,10732.224 +5049,2025-03-07T15:03:16.456514-08:00,1010.29248046875,10.739001,10739.001 +5050,2025-03-07T15:03:27.190515-08:00,1010.3109130859375,10.734001,10734.001 +5051,2025-03-07T15:03:37.925731-08:00,1010.276123046875,10.735216,10735.216 +5052,2025-03-07T15:03:48.665681-08:00,1010.3092041015625,10.73995,10739.95 +5053,2025-03-07T15:03:59.398312-08:00,1010.2693481445312,10.732631,10732.631 +5054,2025-03-07T15:04:10.132514-08:00,1010.2599487304688,10.734202,10734.202 +5055,2025-03-07T15:04:20.862741-08:00,1010.2898559570312,10.730227,10730.227 +5056,2025-03-07T15:04:31.600684-08:00,1010.2915649414062,10.737943,10737.943 +5057,2025-03-07T15:04:42.334509-08:00,1010.3031005859375,10.733825,10733.825 +5058,2025-03-07T15:04:53.074627-08:00,1010.28515625,10.740118,10740.118 +5059,2025-03-07T15:05:03.801514-08:00,1010.2823486328125,10.726887,10726.887 +5060,2025-03-07T15:05:14.542926-08:00,1010.279052734375,10.741412,10741.412 +5061,2025-03-07T15:05:25.277540-08:00,1010.269287109375,10.734614,10734.614 +5062,2025-03-07T15:05:36.013520-08:00,1010.2876586914062,10.73598,10735.98 +5063,2025-03-07T15:05:46.739105-08:00,1010.2664184570312,10.725585,10725.585 +5064,2025-03-07T15:05:57.476913-08:00,1010.2862548828125,10.737808,10737.808 +5065,2025-03-07T15:06:08.208043-08:00,1010.2764282226562,10.73113,10731.13 +5066,2025-03-07T15:06:18.944548-08:00,1010.26171875,10.736505,10736.505 +5067,2025-03-07T15:06:29.679599-08:00,1010.3214111328125,10.735051,10735.051 +5068,2025-03-07T15:06:40.409031-08:00,1010.3397827148438,10.729432,10729.432 +5069,2025-03-07T15:06:51.141630-08:00,1010.2849731445312,10.732599,10732.599 +5070,2025-03-07T15:07:01.874685-08:00,1010.346435546875,10.733055,10733.055 +5071,2025-03-07T15:07:12.606703-08:00,1010.303466796875,10.732018,10732.018 +5072,2025-03-07T15:07:23.348516-08:00,1010.3115844726562,10.741813,10741.813 +5073,2025-03-07T15:07:34.084509-08:00,1010.2769775390625,10.735993,10735.993 +5074,2025-03-07T15:07:44.819515-08:00,1010.2622680664062,10.735006,10735.006 +5075,2025-03-07T15:07:55.556744-08:00,1010.2689208984375,10.737229,10737.229 +5076,2025-03-07T15:08:06.283514-08:00,1010.3002319335938,10.72677,10726.77 +5077,2025-03-07T15:08:17.015517-08:00,1010.2887573242188,10.732003,10732.003 +5078,2025-03-07T15:08:27.750920-08:00,1010.2921752929688,10.735403,10735.403 +5079,2025-03-07T15:08:38.490690-08:00,1010.2457885742188,10.73977,10739.77 +5080,2025-03-07T15:08:49.222719-08:00,1010.3304443359375,10.732029,10732.029 +5081,2025-03-07T15:08:58.913693-08:00,1010.3333740234375,9.690974,9690.974 +5082,2025-03-07T15:08:59.960516-08:00,1010.3106079101562,1.046823,1046.823 +5083,2025-03-07T15:09:10.697582-08:00,1010.2890014648438,10.737066,10737.066 +5084,2025-03-07T15:09:21.421797-08:00,1010.3272705078125,10.724215,10724.215 +5085,2025-03-07T15:09:32.156515-08:00,1010.353759765625,10.734718,10734.718 +5086,2025-03-07T15:09:42.896577-08:00,1010.35888671875,10.740062,10740.062 +5087,2025-03-07T15:09:53.625138-08:00,1010.30078125,10.728561,10728.561 +5088,2025-03-07T15:10:04.366904-08:00,1010.30419921875,10.741766,10741.766 +5089,2025-03-07T15:10:15.096578-08:00,1010.3125610351562,10.729674,10729.674 +5090,2025-03-07T15:10:25.825509-08:00,1010.302734375,10.728931,10728.931 +5091,2025-03-07T15:10:36.559708-08:00,1010.326416015625,10.734199,10734.199 +5092,2025-03-07T15:10:47.295617-08:00,1010.29150390625,10.735909,10735.909 +5093,2025-03-07T15:10:58.024526-08:00,1010.344482421875,10.728909,10728.909 +5094,2025-03-07T15:11:08.763724-08:00,1010.2620849609375,10.739198,10739.198 +5095,2025-03-07T15:11:19.492927-08:00,1010.3032836914062,10.729203,10729.203 +5096,2025-03-07T15:11:30.224511-08:00,1010.3429565429688,10.731584,10731.584 +5097,2025-03-07T15:11:40.962519-08:00,1010.3331298828125,10.738008,10738.008 +5098,2025-03-07T15:11:51.689683-08:00,1010.300048828125,10.727164,10727.164 +5099,2025-03-07T15:12:02.423518-08:00,1010.3104858398438,10.733835,10733.835 +5100,2025-03-07T15:12:13.151761-08:00,1010.298583984375,10.728243,10728.243 +5101,2025-03-07T15:12:23.879686-08:00,1010.283935546875,10.727925,10727.925 +5102,2025-03-07T15:12:34.613515-08:00,1010.302001953125,10.733829,10733.829 +5103,2025-03-07T15:12:45.348574-08:00,1010.3236694335938,10.735059,10735.059 +5104,2025-03-07T15:12:56.073691-08:00,1010.3236694335938,10.725117,10725.117 +5105,2025-03-07T15:13:06.807146-08:00,1010.34033203125,10.733455,10733.455 +5106,2025-03-07T15:13:17.534540-08:00,1010.3106079101562,10.727394,10727.394 +5107,2025-03-07T15:13:28.269723-08:00,1010.3106079101562,10.735183,10735.183 +5108,2025-03-07T15:13:38.996575-08:00,1010.3239135742188,10.726852,10726.852 +5109,2025-03-07T15:13:49.727829-08:00,1010.3157958984375,10.731254,10731.254 +5110,2025-03-07T15:14:00.465717-08:00,1010.289306640625,10.737888,10737.888 +5111,2025-03-07T15:14:11.191538-08:00,1010.3328247070312,10.725821,10725.821 +5112,2025-03-07T15:14:21.920579-08:00,1010.3526611328125,10.729041,10729.041 +5113,2025-03-07T15:14:32.650940-08:00,1010.34423828125,10.730361,10730.361 +5114,2025-03-07T15:14:43.382514-08:00,1010.28466796875,10.731574,10731.574 +5115,2025-03-07T15:14:54.119607-08:00,1010.291259765625,10.737093,10737.093 +5116,2025-03-07T15:15:04.844725-08:00,1010.2684936523438,10.725118,10725.118 +5117,2025-03-07T15:15:15.573662-08:00,1010.2765502929688,10.728937,10728.937 +5118,2025-03-07T15:15:26.302517-08:00,1010.2765502929688,10.728855,10728.855 +5119,2025-03-07T15:15:37.043547-08:00,1010.2653198242188,10.74103,10741.03 +5120,2025-03-07T15:15:47.767513-08:00,1010.277099609375,10.723966,10723.966 +5121,2025-03-07T15:15:58.503516-08:00,1010.2506103515625,10.736003,10736.003 +5122,2025-03-07T15:16:09.236512-08:00,1010.2718505859375,10.732996,10732.996 +5123,2025-03-07T15:16:19.958704-08:00,1010.22900390625,10.722192,10722.192 +5124,2025-03-07T15:16:30.691515-08:00,1010.263916015625,10.732811,10732.811 +5125,2025-03-07T15:16:41.425666-08:00,1010.2540893554688,10.734151,10734.151 +5126,2025-03-07T15:16:52.152090-08:00,1010.27392578125,10.726424,10726.424 +5127,2025-03-07T15:17:02.883516-08:00,1010.2687377929688,10.731426,10731.426 +5128,2025-03-07T15:17:13.610508-08:00,1010.2507934570312,10.726992,10726.992 +5129,2025-03-07T15:17:24.341543-08:00,1010.2923583984375,10.731035,10731.035 +5130,2025-03-07T15:17:35.080742-08:00,1010.23095703125,10.739199,10739.199 +5131,2025-03-07T15:17:45.815668-08:00,1010.236083984375,10.734926,10734.926 +5132,2025-03-07T15:17:56.538016-08:00,1010.27587890625,10.722348,10722.348 +5133,2025-03-07T15:18:07.278622-08:00,1010.2692260742188,10.740606,10740.606 +5134,2025-03-07T15:18:18.012574-08:00,1010.2692260742188,10.733952,10733.952 +5135,2025-03-07T15:18:28.744709-08:00,1010.239501953125,10.732135,10732.135 +5136,2025-03-07T15:18:39.468538-08:00,1010.224853515625,10.723829,10723.829 +5137,2025-03-07T15:18:50.205578-08:00,1010.2446899414062,10.73704,10737.04 +5138,2025-03-07T15:19:00.937920-08:00,1010.2366333007812,10.732342,10732.342 +5139,2025-03-07T15:19:11.664992-08:00,1010.2380981445312,10.727072,10727.072 +5140,2025-03-07T15:19:22.395940-08:00,1010.256591796875,10.730948,10730.948 +5141,2025-03-07T15:19:33.127726-08:00,1010.2550659179688,10.731786,10731.786 +5142,2025-03-07T15:19:43.868661-08:00,1010.268310546875,10.740935,10740.935 +5143,2025-03-07T15:19:54.590516-08:00,1010.1804809570312,10.721855,10721.855 +5144,2025-03-07T15:20:05.331573-08:00,1010.21875,10.741057,10741.057 +5145,2025-03-07T15:20:16.055698-08:00,1010.21875,10.724125,10724.125 +5146,2025-03-07T15:20:26.791517-08:00,1010.1610717773438,10.735819,10735.819 +5147,2025-03-07T15:20:37.519615-08:00,1010.223876953125,10.728098,10728.098 +5148,2025-03-07T15:20:48.254511-08:00,1010.2354125976562,10.734896,10734.896 +5149,2025-03-07T15:20:58.983721-08:00,1010.2324829101562,10.72921,10729.21 +5150,2025-03-07T15:21:09.711585-08:00,1010.20751953125,10.727864,10727.864 +5151,2025-03-07T15:21:20.445702-08:00,1010.1795043945312,10.734117,10734.117 +5152,2025-03-07T15:21:31.175516-08:00,1010.2259521484375,10.729814,10729.814 +5153,2025-03-07T15:21:41.908514-08:00,1010.2324829101562,10.732998,10732.998 +5154,2025-03-07T15:21:52.636224-08:00,1010.2324829101562,10.72771,10727.71 +5155,2025-03-07T15:22:03.364664-08:00,1010.2439575195312,10.72844,10728.44 +5156,2025-03-07T15:22:14.098574-08:00,1010.2506103515625,10.73391,10733.91 +5157,2025-03-07T15:22:24.827697-08:00,1010.26904296875,10.729123,10729.123 +5158,2025-03-07T15:22:35.558515-08:00,1010.2407836914062,10.730818,10730.818 +5159,2025-03-07T15:22:46.282862-08:00,1010.2822875976562,10.724347,10724.347 +5160,2025-03-07T15:22:57.018545-08:00,1010.2654418945312,10.735683,10735.683 +5161,2025-03-07T15:23:07.750752-08:00,1010.2706298828125,10.732207,10732.207 +5162,2025-03-07T15:23:18.478516-08:00,1010.2720336914062,10.727764,10727.764 +5163,2025-03-07T15:23:29.204705-08:00,1010.3250122070312,10.726189,10726.189 +5164,2025-03-07T15:23:39.934578-08:00,1010.2706298828125,10.729873,10729.873 +5165,2025-03-07T15:23:50.669621-08:00,1010.3222045898438,10.735043,10735.043 +5166,2025-03-07T15:24:01.394688-08:00,1010.3023681640625,10.725067,10725.067 +5167,2025-03-07T15:24:12.132761-08:00,1010.3222045898438,10.738073,10738.073 +5168,2025-03-07T15:24:22.855825-08:00,1010.3023681640625,10.723064,10723.064 +5169,2025-03-07T15:24:33.592736-08:00,1010.3155517578125,10.736911,10736.911 +5170,2025-03-07T15:24:44.312540-08:00,1010.2725830078125,10.719804,10719.804 +5171,2025-03-07T15:24:55.046508-08:00,1010.3074951171875,10.733968,10733.968 +5172,2025-03-07T15:25:05.776702-08:00,1010.3189086914062,10.730194,10730.194 +5173,2025-03-07T15:25:16.501516-08:00,1010.3123168945312,10.724814,10724.814 +5174,2025-03-07T15:25:27.232697-08:00,1010.3373413085938,10.731181,10731.181 +5175,2025-03-07T15:25:37.972748-08:00,1010.3108520507812,10.740051,10740.051 +5176,2025-03-07T15:25:48.698714-08:00,1010.3226318359375,10.725966,10725.966 +5177,2025-03-07T15:25:59.435618-08:00,1010.314208984375,10.736904,10736.904 +5178,2025-03-07T15:26:10.167518-08:00,1010.299560546875,10.7319,10731.9 +5179,2025-03-07T15:26:20.895533-08:00,1010.2915649414062,10.728015,10728.015 +5180,2025-03-07T15:26:31.626241-08:00,1010.29638671875,10.730708,10730.708 +5181,2025-03-07T15:26:42.357410-08:00,1010.2982788085938,10.731169,10731.169 +5182,2025-03-07T15:26:53.084509-08:00,1010.2826538085938,10.727099,10727.099 +5183,2025-03-07T15:27:03.816515-08:00,1010.2880249023438,10.732006,10732.006 +5184,2025-03-07T15:27:14.547765-08:00,1010.30517578125,10.73125,10731.25 +5185,2025-03-07T15:27:25.268582-08:00,1010.3505249023438,10.720817,10720.817 +5186,2025-03-07T15:27:36.005599-08:00,1010.3577880859375,10.737017,10737.017 +5187,2025-03-07T15:27:46.738185-08:00,1010.3470458984375,10.732586,10732.586 +5188,2025-03-07T15:27:57.462584-08:00,1010.3560791015625,10.724399,10724.399 +5189,2025-03-07T15:28:08.191512-08:00,1010.3630981445312,10.728928,10728.928 +5190,2025-03-07T15:28:18.916749-08:00,1010.34716796875,10.725237,10725.237 +5191,2025-03-07T15:28:29.644516-08:00,1010.3590698242188,10.727767,10727.767 +5192,2025-03-07T15:28:40.373729-08:00,1010.4191284179688,10.729213,10729.213 +5193,2025-03-07T15:28:51.101548-08:00,1010.388427734375,10.727819,10727.819 +5194,2025-03-07T15:29:01.828515-08:00,1010.4015502929688,10.726967,10726.967 +5195,2025-03-07T15:29:12.561687-08:00,1010.384033203125,10.733172,10733.172 +5196,2025-03-07T15:29:23.286516-08:00,1010.3632202148438,10.724829,10724.829 +5197,2025-03-07T15:29:34.017604-08:00,1010.343505859375,10.731088,10731.088 +5198,2025-03-07T15:29:44.747712-08:00,1010.3457641601562,10.730108,10730.108 +5199,2025-03-07T15:29:55.470588-08:00,1010.3279418945312,10.722876,10722.876 +5200,2025-03-07T15:30:06.206544-08:00,1010.303466796875,10.735956,10735.956 +5201,2025-03-07T15:30:16.931540-08:00,1010.2921142578125,10.724996,10724.996 +5202,2025-03-07T15:30:27.660733-08:00,1010.30908203125,10.729193,10729.193 +5203,2025-03-07T15:30:38.400760-08:00,1010.3109130859375,10.740027,10740.027 +5204,2025-03-07T15:30:49.126249-08:00,1010.3492431640625,10.725489,10725.489 +5205,2025-03-07T15:30:59.856516-08:00,1010.32470703125,10.730267,10730.267 +5206,2025-03-07T15:31:10.583508-08:00,1010.3412475585938,10.726992,10726.992 +5207,2025-03-07T15:31:21.311719-08:00,1010.3115844726562,10.728211,10728.211 +5208,2025-03-07T15:31:32.050515-08:00,1010.302001953125,10.738796,10738.796 +5209,2025-03-07T15:31:42.777736-08:00,1010.3071899414062,10.727221,10727.221 +5210,2025-03-07T15:31:53.510534-08:00,1010.3218994140625,10.732798,10732.798 +5211,2025-03-07T15:32:04.233515-08:00,1010.318603515625,10.722981,10722.981 +5212,2025-03-07T15:32:14.967513-08:00,1010.3582763671875,10.733998,10733.998 +5213,2025-03-07T15:32:25.696608-08:00,1010.3435668945312,10.729095,10729.095 +5214,2025-03-07T15:32:36.432718-08:00,1010.3289184570312,10.73611,10736.11 +5215,2025-03-07T15:32:47.157727-08:00,1010.3965454101562,10.725009,10725.009 +5216,2025-03-07T15:32:57.897734-08:00,1010.333740234375,10.740007,10740.007 +5217,2025-03-07T15:33:08.629717-08:00,1010.3289184570312,10.731983,10731.983 +5218,2025-03-07T15:33:19.355515-08:00,1010.3652954101562,10.725798,10725.798 +5219,2025-03-07T15:33:30.094139-08:00,1010.4017333984375,10.738624,10738.624 +5220,2025-03-07T15:33:40.823810-08:00,1010.3521728515625,10.729671,10729.671 +5221,2025-03-07T15:33:51.559512-08:00,1010.362060546875,10.735702,10735.702 +5222,2025-03-07T15:34:02.293270-08:00,1010.3685913085938,10.733758,10733.758 +5223,2025-03-07T15:34:13.023002-08:00,1010.39794921875,10.729732,10729.732 +5224,2025-03-07T15:34:23.751640-08:00,1010.376708984375,10.728638,10728.638 +5225,2025-03-07T15:34:34.489509-08:00,1010.373291015625,10.737869,10737.869 +5226,2025-03-07T15:34:45.213017-08:00,1010.36669921875,10.723508,10723.508 +5227,2025-03-07T15:34:55.949718-08:00,1010.36669921875,10.736701,10736.701 +5228,2025-03-07T15:35:06.681633-08:00,1010.374755859375,10.731915,10731.915 +5229,2025-03-07T15:35:17.416401-08:00,1010.3629760742188,10.734768,10734.768 +5230,2025-03-07T15:35:28.144516-08:00,1010.38427734375,10.728115,10728.115 +5231,2025-03-07T15:35:38.879513-08:00,1010.3809204101562,10.734997,10734.997 +5232,2025-03-07T15:35:49.605686-08:00,1010.3889770507812,10.726173,10726.173 +5233,2025-03-07T15:36:00.342951-08:00,1010.3908081054688,10.737265,10737.265 +5234,2025-03-07T15:36:11.069510-08:00,1010.39892578125,10.726559,10726.559 +5235,2025-03-07T15:36:21.799731-08:00,1010.4068603515625,10.730221,10730.221 +5236,2025-03-07T15:36:32.537832-08:00,1010.41357421875,10.738101,10738.101 +5237,2025-03-07T15:36:43.264545-08:00,1010.4182739257812,10.726713,10726.713 +5238,2025-03-07T15:36:53.998540-08:00,1010.3984375,10.733995,10733.995 +5239,2025-03-07T15:37:04.732712-08:00,1010.388427734375,10.734172,10734.172 +5240,2025-03-07T15:37:15.461515-08:00,1010.40966796875,10.728803,10728.803 +5241,2025-03-07T15:37:26.195316-08:00,1010.446044921875,10.733801,10733.801 +5242,2025-03-07T15:37:36.920700-08:00,1010.4111938476562,10.725384,10725.384 +5243,2025-03-07T15:37:47.653651-08:00,1010.4043579101562,10.732951,10732.951 +5244,2025-03-07T15:37:58.382733-08:00,1010.389404296875,10.729082,10729.082 +5245,2025-03-07T15:38:09.114610-08:00,1010.4025268554688,10.731877,10731.877 +5246,2025-03-07T15:38:19.844516-08:00,1010.3694458007812,10.729906,10729.906 +5247,2025-03-07T15:38:30.578508-08:00,1010.41064453125,10.733992,10733.992 +5248,2025-03-07T15:38:41.317702-08:00,1010.3789672851562,10.739194,10739.194 +5249,2025-03-07T15:38:52.050690-08:00,1010.3609619140625,10.732988,10732.988 +5250,2025-03-07T15:39:02.782512-08:00,1010.421875,10.731822,10731.822 +5251,2025-03-07T15:39:13.509516-08:00,1010.3934936523438,10.727004,10727.004 +5252,2025-03-07T15:39:24.244606-08:00,1010.3869018554688,10.73509,10735.09 +5253,2025-03-07T15:39:34.976516-08:00,1010.4260864257812,10.73191,10731.91 +5254,2025-03-07T15:39:45.707012-08:00,1010.3613891601562,10.730496,10730.496 +5255,2025-03-07T15:39:56.439620-08:00,1010.326904296875,10.732608,10732.608 +5256,2025-03-07T15:40:07.179928-08:00,1010.40576171875,10.740308,10740.308 +5257,2025-03-07T15:40:17.908557-08:00,1010.40576171875,10.728629,10728.629 +5258,2025-03-07T15:40:28.645515-08:00,1010.3759155273438,10.736958,10736.958 +5259,2025-03-07T15:40:39.379685-08:00,1010.3759155273438,10.73417,10734.17 +5260,2025-03-07T15:40:50.110512-08:00,1010.3972778320312,10.730827,10730.827 +5261,2025-03-07T15:41:00.848515-08:00,1010.4004516601562,10.738003,10738.003 +5262,2025-03-07T15:41:11.583708-08:00,1010.4037475585938,10.735193,10735.193 +5263,2025-03-07T15:41:22.310294-08:00,1010.4051513671875,10.726586,10726.586 +5264,2025-03-07T15:41:33.043513-08:00,1010.375,10.733219,10733.219 +5265,2025-03-07T15:41:43.780528-08:00,1010.3834228515625,10.737015,10737.015 +5266,2025-03-07T15:41:54.513516-08:00,1010.4263916015625,10.732988,10732.988 +5267,2025-03-07T15:42:05.242655-08:00,1010.44140625,10.729139,10729.139 +5268,2025-03-07T15:42:15.975805-08:00,1010.4149169921875,10.73315,10733.15 +5269,2025-03-07T15:42:26.702758-08:00,1010.434326171875,10.726953,10726.953 +5270,2025-03-07T15:42:37.441373-08:00,1010.447509765625,10.738615,10738.615 +5271,2025-03-07T15:42:48.171631-08:00,1010.4820556640625,10.730258,10730.258 +5272,2025-03-07T15:42:58.900515-08:00,1010.4933471679688,10.728884,10728.884 +5273,2025-03-07T15:43:09.632625-08:00,1010.433837890625,10.73211,10732.11 +5274,2025-03-07T15:43:20.367583-08:00,1010.4436645507812,10.734958,10734.958 +5275,2025-03-07T15:43:31.099667-08:00,1010.4332885742188,10.732084,10732.084 +5276,2025-03-07T15:43:41.836737-08:00,1010.4483642578125,10.73707,10737.07 +5277,2025-03-07T15:43:52.565513-08:00,1010.4232788085938,10.728776,10728.776 +5278,2025-03-07T15:44:03.292730-08:00,1010.41015625,10.727217,10727.217 +5279,2025-03-07T15:44:14.030769-08:00,1010.4181518554688,10.738039,10738.039 +5280,2025-03-07T15:44:24.765684-08:00,1010.4265747070312,10.734915,10734.915 +5281,2025-03-07T15:44:35.491510-08:00,1010.4295043945312,10.725826,10725.826 +5282,2025-03-07T15:44:46.226516-08:00,1010.4246826171875,10.735006,10735.006 +5283,2025-03-07T15:44:56.951412-08:00,1010.4459228515625,10.724896,10724.896 +5284,2025-03-07T15:45:07.682537-08:00,1010.4109497070312,10.731125,10731.125 +5285,2025-03-07T15:45:18.421515-08:00,1010.4241333007812,10.738978,10738.978 +5286,2025-03-07T15:45:29.151711-08:00,1010.4403076171875,10.730196,10730.196 +5287,2025-03-07T15:45:39.886537-08:00,1010.4336547851562,10.734826,10734.826 +5288,2025-03-07T15:45:50.622717-08:00,1010.4089965820312,10.73618,10736.18 +5289,2025-03-07T15:46:01.348833-08:00,1010.4383544921875,10.726116,10726.116 +5290,2025-03-07T15:46:12.079546-08:00,1010.4136962890625,10.730713,10730.713 +5291,2025-03-07T15:46:22.818591-08:00,1010.4151611328125,10.739045,10739.045 +5292,2025-03-07T15:46:33.549584-08:00,1010.4298706054688,10.730993,10730.993 +5293,2025-03-07T15:46:44.290739-08:00,1010.4364013671875,10.741155,10741.155 +5294,2025-03-07T15:46:55.016662-08:00,1010.4146728515625,10.725923,10725.923 +5295,2025-03-07T15:47:05.752517-08:00,1010.4193725585938,10.735855,10735.855 +5296,2025-03-07T15:47:16.489011-08:00,1010.42919921875,10.736494,10736.494 +5297,2025-03-07T15:47:27.220699-08:00,1010.4423217773438,10.731688,10731.688 +5298,2025-03-07T15:47:37.959393-08:00,1010.451904296875,10.738694,10738.694 +5299,2025-03-07T15:47:48.694710-08:00,1010.38427734375,10.735317,10735.317 +5300,2025-03-07T15:47:59.429523-08:00,1010.4154663085938,10.734813,10734.813 +5301,2025-03-07T15:48:10.164547-08:00,1010.4154663085938,10.735024,10735.024 +5302,2025-03-07T15:48:20.905704-08:00,1010.4367065429688,10.741157,10741.157 +5303,2025-03-07T15:48:31.632515-08:00,1010.431884765625,10.726811,10726.811 +5304,2025-03-07T15:48:42.368748-08:00,1010.4598388671875,10.736233,10736.233 +5305,2025-03-07T15:48:53.112731-08:00,1010.4612426757812,10.743983,10743.983 +5306,2025-03-07T15:49:03.844705-08:00,1010.479248046875,10.731974,10731.974 +5307,2025-03-07T15:49:14.579834-08:00,1010.4578857421875,10.735129,10735.129 +5308,2025-03-07T15:49:25.320510-08:00,1010.4545288085938,10.740676,10740.676 +5309,2025-03-07T15:49:36.056716-08:00,1010.5022583007812,10.736206,10736.206 +5310,2025-03-07T15:49:46.788584-08:00,1010.4971313476562,10.731868,10731.868 +5311,2025-03-07T15:49:57.523735-08:00,1010.5154418945312,10.735151,10735.151 +5312,2025-03-07T15:50:08.246218-08:00,1010.4985961914062,10.722483,10722.483 +5313,2025-03-07T15:50:18.980739-08:00,1010.5348510742188,10.734521,10734.521 +5314,2025-03-07T15:50:29.710516-08:00,1010.49658203125,10.729777,10729.777 +5315,2025-03-07T15:50:40.447595-08:00,1010.5263061523438,10.737079,10737.079 +5316,2025-03-07T15:50:51.176620-08:00,1010.529541015625,10.729025,10729.025 +5317,2025-03-07T15:51:01.920519-08:00,1010.5574951171875,10.743899,10743.899 +5318,2025-03-07T15:51:12.652539-08:00,1010.532470703125,10.73202,10732.02 +5319,2025-03-07T15:51:23.387918-08:00,1010.5158081054688,10.735379,10735.379 +5320,2025-03-07T15:51:34.122537-08:00,1010.5564575195312,10.734619,10734.619 +5321,2025-03-07T15:51:44.850688-08:00,1010.5498657226562,10.728151,10728.151 +5322,2025-03-07T15:51:55.585511-08:00,1010.5479736328125,10.734823,10734.823 +5323,2025-03-07T15:52:06.318516-08:00,1010.5643920898438,10.733005,10733.005 +5324,2025-03-07T15:52:17.099712-08:00,1010.580810546875,10.781196,10781.196 +5325,2025-03-07T15:52:27.827691-08:00,1010.6154174804688,10.727979,10727.979 +5326,2025-03-07T15:52:38.569702-08:00,1010.5604858398438,10.742011,10742.011 +5327,2025-03-07T15:52:49.300036-08:00,1010.5751342773438,10.730334,10730.334 +5328,2025-03-07T15:53:00.034764-08:00,1010.5982666015625,10.734728,10734.728 +5329,2025-03-07T15:53:10.759700-08:00,1010.556884765625,10.724936,10724.936 +5330,2025-03-07T15:53:21.499493-08:00,1010.5516967773438,10.739793,10739.793 +5331,2025-03-07T15:53:32.228710-08:00,1010.5748291015625,10.729217,10729.217 +5332,2025-03-07T15:53:42.957676-08:00,1010.607421875,10.728966,10728.966 +5333,2025-03-07T15:53:53.698565-08:00,1010.607421875,10.740889,10740.889 +5334,2025-03-07T15:54:04.425669-08:00,1010.6419677734375,10.727104,10727.104 +5335,2025-03-07T15:54:15.158670-08:00,1010.66650390625,10.733001,10733.001 +5336,2025-03-07T15:54:25.888496-08:00,1010.6348266601562,10.729826,10729.826 +5337,2025-03-07T15:54:36.621496-08:00,1010.5982666015625,10.733,10733.0 +5338,2025-03-07T15:54:47.354670-08:00,1010.6129760742188,10.733174,10733.174 +5339,2025-03-07T15:54:48.435712-08:00,1010.6507568359375,1.081042,1081.042 +5340,2025-03-07T15:54:58.089517-08:00,1010.6442260742188,9.653805,9653.805 +5341,2025-03-07T15:55:08.817594-08:00,1010.5943603515625,10.728077,10728.077 +5342,2025-03-07T15:55:19.549906-08:00,1010.6289672851562,10.732312,10732.312 +5343,2025-03-07T15:55:30.278494-08:00,1010.6322021484375,10.728588,10728.588 +5344,2025-03-07T15:55:41.008522-08:00,1010.665283203125,10.730028,10730.028 +5345,2025-03-07T15:55:51.739518-08:00,1010.5985717773438,10.730996,10730.996 +5346,2025-03-07T15:56:02.477689-08:00,1010.6051635742188,10.738171,10738.171 +5347,2025-03-07T15:56:13.204712-08:00,1010.5971069335938,10.727023,10727.023 +5348,2025-03-07T15:56:23.930370-08:00,1010.6812744140625,10.725658,10725.658 +5349,2025-03-07T15:56:34.661597-08:00,1010.661376953125,10.731227,10731.227 +5350,2025-03-07T15:56:45.394695-08:00,1010.6296997070312,10.733098,10733.098 +5351,2025-03-07T15:56:56.118667-08:00,1010.6395263671875,10.723972,10723.972 +5352,2025-03-07T15:57:06.860676-08:00,1010.6329956054688,10.742009,10742.009 +5353,2025-03-07T15:57:17.586494-08:00,1010.6012573242188,10.725818,10725.818 +5354,2025-03-07T15:57:28.318695-08:00,1010.5865478515625,10.732201,10732.201 +5355,2025-03-07T15:57:39.049155-08:00,1010.5978393554688,10.73046,10730.46 +5356,2025-03-07T15:57:49.776494-08:00,1010.5912475585938,10.727339,10727.339 +5357,2025-03-07T15:58:00.509528-08:00,1010.62060546875,10.733034,10733.034 +5358,2025-03-07T15:58:11.235578-08:00,1010.6353149414062,10.72605,10726.05 +5359,2025-03-07T15:58:21.974494-08:00,1010.6470947265625,10.738916,10738.916 +5360,2025-03-07T15:58:32.703763-08:00,1010.6007690429688,10.729269,10729.269 +5361,2025-03-07T15:58:43.433907-08:00,1010.6603393554688,10.730144,10730.144 +5362,2025-03-07T15:58:54.174494-08:00,1010.6353149414062,10.740587,10740.587 +5363,2025-03-07T15:59:04.895491-08:00,1010.658447265625,10.720997,10720.997 +5364,2025-03-07T15:59:15.630675-08:00,1010.6834106445312,10.735184,10735.184 +5365,2025-03-07T15:59:26.356495-08:00,1010.6451416015625,10.72582,10725.82 +5366,2025-03-07T15:59:37.087673-08:00,1010.7033081054688,10.731178,10731.178 +5367,2025-03-07T15:59:47.823610-08:00,1010.658447265625,10.735937,10735.937 +5368,2025-03-07T15:59:58.564337-08:00,1010.6503295898438,10.740727,10740.727 +5369,2025-03-07T16:00:09.294676-08:00,1010.6649780273438,10.730339,10730.339 +5370,2025-03-07T16:00:20.022496-08:00,1010.6088256835938,10.72782,10727.82 +5371,2025-03-07T16:00:30.759898-08:00,1010.671630859375,10.737402,10737.402 +5372,2025-03-07T16:00:41.496552-08:00,1010.66357421875,10.736654,10736.654 +5373,2025-03-07T16:00:52.222532-08:00,1010.6451416015625,10.72598,10725.98 +5374,2025-03-07T16:01:02.958709-08:00,1010.610595703125,10.736177,10736.177 +5375,2025-03-07T16:01:13.698711-08:00,1010.615478515625,10.740002,10740.002 +5376,2025-03-07T16:01:24.430764-08:00,1010.5889282226562,10.732053,10732.053 +5377,2025-03-07T16:01:35.166496-08:00,1010.6220092773438,10.735732,10735.732 +5378,2025-03-07T16:01:45.899525-08:00,1010.627197265625,10.733029,10733.029 +5379,2025-03-07T16:01:56.626899-08:00,1010.6088256835938,10.727374,10727.374 +5380,2025-03-07T16:02:07.359586-08:00,1010.6124877929688,10.732687,10732.687 +5381,2025-03-07T16:02:18.096668-08:00,1010.6503295898438,10.737082,10737.082 +5382,2025-03-07T16:02:28.831675-08:00,1010.62060546875,10.735007,10735.007 +5383,2025-03-07T16:02:39.565650-08:00,1010.6817016601562,10.733975,10733.975 +5384,2025-03-07T16:02:50.298530-08:00,1010.658935546875,10.73288,10732.88 +5385,2025-03-07T16:03:01.033697-08:00,1010.5912475585938,10.735167,10735.167 +5386,2025-03-07T16:03:11.766684-08:00,1010.6192016601562,10.732987,10732.987 +5387,2025-03-07T16:03:22.494564-08:00,1010.5993041992188,10.72788,10727.88 +5388,2025-03-07T16:03:33.227889-08:00,1010.6456298828125,10.733325,10733.325 +5389,2025-03-07T16:03:43.961744-08:00,1010.6192016601562,10.733855,10733.855 +5390,2025-03-07T16:03:54.687560-08:00,1010.65234375,10.725816,10725.816 +5391,2025-03-07T16:04:05.427493-08:00,1010.62255859375,10.739933,10739.933 +5392,2025-03-07T16:04:16.153670-08:00,1010.60595703125,10.726177,10726.177 +5393,2025-03-07T16:04:26.890523-08:00,1010.675537109375,10.736853,10736.853 +5394,2025-03-07T16:04:37.624493-08:00,1010.6442260742188,10.73397,10733.97 +5395,2025-03-07T16:04:48.352671-08:00,1010.6358032226562,10.728178,10728.178 +5396,2025-03-07T16:04:59.088914-08:00,1010.6873168945312,10.736243,10736.243 +5397,2025-03-07T16:05:09.814494-08:00,1010.66748046875,10.72558,10725.58 +5398,2025-03-07T16:05:20.548491-08:00,1010.6873168945312,10.733997,10733.997 +5399,2025-03-07T16:05:31.277518-08:00,1010.7072143554688,10.729027,10729.027 +5400,2025-03-07T16:05:42.004496-08:00,1010.71533203125,10.726978,10726.978 +5401,2025-03-07T16:05:52.741520-08:00,1010.6793212890625,10.737024,10737.024 +5402,2025-03-07T16:06:03.471714-08:00,1010.66748046875,10.730194,10730.194 +5403,2025-03-07T16:06:14.200517-08:00,1010.6443481445312,10.728803,10728.803 +5404,2025-03-07T16:06:24.937498-08:00,1010.6925048828125,10.736981,10736.981 +5405,2025-03-07T16:06:35.668673-08:00,1010.677490234375,10.731175,10731.175 +5406,2025-03-07T16:06:46.400587-08:00,1010.6991577148438,10.731914,10731.914 +5407,2025-03-07T16:06:57.140771-08:00,1010.709228515625,10.740184,10740.184 +5408,2025-03-07T16:07:07.868787-08:00,1010.6959228515625,10.728016,10728.016 +5409,2025-03-07T16:07:18.605869-08:00,1010.66796875,10.737082,10737.082 +5410,2025-03-07T16:07:29.337493-08:00,1010.6727905273438,10.731624,10731.624 +5411,2025-03-07T16:07:40.061497-08:00,1010.7341918945312,10.724004,10724.004 +5412,2025-03-07T16:07:50.799511-08:00,1010.775390625,10.738014,10738.014 +5413,2025-03-07T16:08:01.534841-08:00,1010.7125854492188,10.73533,10735.33 +5414,2025-03-07T16:08:12.257492-08:00,1010.7257690429688,10.722651,10722.651 +5415,2025-03-07T16:08:22.989943-08:00,1010.734375,10.732451,10732.451 +5416,2025-03-07T16:08:33.720524-08:00,1010.6964111328125,10.730581,10730.581 +5417,2025-03-07T16:08:44.452699-08:00,1010.6947021484375,10.732175,10732.175 +5418,2025-03-07T16:08:55.179663-08:00,1010.7315673828125,10.726964,10726.964 +5419,2025-03-07T16:09:05.914519-08:00,1010.7726440429688,10.734856,10734.856 +5420,2025-03-07T16:09:16.641716-08:00,1010.7366943359375,10.727197,10727.197 +5421,2025-03-07T16:09:27.375673-08:00,1010.7366943359375,10.733957,10733.957 +5422,2025-03-07T16:09:38.104500-08:00,1010.7268676757812,10.728827,10728.827 +5423,2025-03-07T16:09:48.837490-08:00,1010.6972045898438,10.73299,10732.99 +5424,2025-03-07T16:09:59.565567-08:00,1010.7467041015625,10.728077,10728.077 +5425,2025-03-07T16:10:10.293525-08:00,1010.7023315429688,10.727958,10727.958 +5426,2025-03-07T16:10:21.019631-08:00,1010.72216796875,10.726106,10726.106 +5427,2025-03-07T16:10:31.757541-08:00,1010.72216796875,10.73791,10737.91 +5428,2025-03-07T16:10:42.485928-08:00,1010.732177734375,10.728387,10728.387 +5429,2025-03-07T16:10:53.217703-08:00,1010.7189331054688,10.731775,10731.775 +5430,2025-03-07T16:11:03.953492-08:00,1010.7256469726562,10.735789,10735.789 +5431,2025-03-07T16:11:14.685705-08:00,1010.7506103515625,10.732213,10732.213 +5432,2025-03-07T16:11:25.415492-08:00,1010.720947265625,10.729787,10729.787 +5433,2025-03-07T16:11:36.145873-08:00,1010.7540893554688,10.730381,10730.381 +5434,2025-03-07T16:11:46.883968-08:00,1010.7128295898438,10.738095,10738.095 +5435,2025-03-07T16:11:57.611493-08:00,1010.72607421875,10.727525,10727.525 +5436,2025-03-07T16:12:08.342493-08:00,1010.6995849609375,10.731,10731.0 +5437,2025-03-07T16:12:19.079505-08:00,1010.7658081054688,10.737012,10737.012 +5438,2025-03-07T16:12:29.807523-08:00,1010.7295532226562,10.728018,10728.018 +5439,2025-03-07T16:12:40.544493-08:00,1010.7162475585938,10.73697,10736.97 +5440,2025-03-07T16:12:51.270700-08:00,1010.7162475585938,10.726207,10726.207 +5441,2025-03-07T16:13:02.002701-08:00,1010.7001342773438,10.732001,10732.001 +5442,2025-03-07T16:13:12.729495-08:00,1010.6882934570312,10.726794,10726.794 +5443,2025-03-07T16:13:23.461496-08:00,1010.7427368164062,10.732001,10732.001 +5444,2025-03-07T16:13:34.188733-08:00,1010.6882934570312,10.727237,10727.237 +5445,2025-03-07T16:13:44.922045-08:00,1010.6934204101562,10.733312,10733.312 +5446,2025-03-07T16:13:55.659940-08:00,1010.6920166015625,10.737895,10737.895 +5447,2025-03-07T16:14:06.389967-08:00,1010.6868896484375,10.730027,10730.027 +5448,2025-03-07T16:14:17.118694-08:00,1010.6920166015625,10.728727,10728.727 +5449,2025-03-07T16:14:27.847708-08:00,1010.719970703125,10.729014,10729.014 +5450,2025-03-07T16:14:38.570493-08:00,1010.736572265625,10.722785,10722.785 +5451,2025-03-07T16:14:49.305498-08:00,1010.7167358398438,10.735005,10735.005 +5452,2025-03-07T16:15:00.041673-08:00,1010.7167358398438,10.736175,10736.175 +5453,2025-03-07T16:15:10.765493-08:00,1010.6821899414062,10.72382,10723.82 +5454,2025-03-07T16:15:21.494491-08:00,1010.6903076171875,10.728998,10728.998 +5455,2025-03-07T16:15:32.231530-08:00,1010.7020263671875,10.737039,10737.039 +5456,2025-03-07T16:15:42.956796-08:00,1010.6755981445312,10.725266,10725.266 +5457,2025-03-07T16:15:53.686708-08:00,1010.7020263671875,10.729912,10729.912 +5458,2025-03-07T16:16:04.418671-08:00,1010.677001953125,10.731963,10731.963 +5459,2025-03-07T16:16:15.152254-08:00,1010.7469482421875,10.733583,10733.583 +5460,2025-03-07T16:16:25.879524-08:00,1010.72705078125,10.72727,10727.27 +5461,2025-03-07T16:16:36.614494-08:00,1010.7318725585938,10.73497,10734.97 +5462,2025-03-07T16:16:47.345575-08:00,1010.72705078125,10.731081,10731.081 +5463,2025-03-07T16:16:58.068495-08:00,1010.6959228515625,10.72292,10722.92 +5464,2025-03-07T16:17:08.798564-08:00,1010.7073364257812,10.730069,10730.069 +5465,2025-03-07T16:17:19.528678-08:00,1010.7157592773438,10.730114,10730.114 +5466,2025-03-07T16:17:30.261496-08:00,1010.6875,10.732818,10732.818 +5467,2025-03-07T16:17:40.995886-08:00,1010.71923828125,10.73439,10734.39 +5468,2025-03-07T16:17:51.728796-08:00,1010.6776733398438,10.73291,10732.91 +5469,2025-03-07T16:18:02.457496-08:00,1010.6776733398438,10.7287,10728.7 +5470,2025-03-07T16:18:13.190689-08:00,1010.689208984375,10.733193,10733.193 +5471,2025-03-07T16:18:23.924674-08:00,1010.697509765625,10.733985,10733.985 +5472,2025-03-07T16:18:34.642566-08:00,1010.7240600585938,10.717892,10717.892 +5473,2025-03-07T16:18:45.378573-08:00,1010.7372436523438,10.736007,10736.007 +5474,2025-03-07T16:18:56.109567-08:00,1010.6943969726562,10.730994,10730.994 +5475,2025-03-07T16:19:06.839705-08:00,1010.7127075195312,10.730138,10730.138 +5476,2025-03-07T16:19:17.568709-08:00,1010.7075805664062,10.729004,10729.004 +5477,2025-03-07T16:19:28.295563-08:00,1010.7391967773438,10.726854,10726.854 +5478,2025-03-07T16:19:39.027490-08:00,1010.744384765625,10.731927,10731.927 +5479,2025-03-07T16:19:49.759495-08:00,1010.73779296875,10.732005,10732.005 +5480,2025-03-07T16:20:00.493358-08:00,1010.7095336914062,10.733863,10733.863 +5481,2025-03-07T16:20:11.224493-08:00,1010.7345581054688,10.731135,10731.135 +5482,2025-03-07T16:20:21.958711-08:00,1010.7345581054688,10.734218,10734.218 +5483,2025-03-07T16:20:32.687687-08:00,1010.7396850585938,10.728976,10728.976 +5484,2025-03-07T16:20:43.415558-08:00,1010.7728271484375,10.727871,10727.871 +5485,2025-03-07T16:20:54.152475-08:00,1010.8041381835938,10.736917,10736.917 +5486,2025-03-07T16:21:04.875555-08:00,1010.8026733398438,10.72308,10723.08 +5487,2025-03-07T16:21:15.612496-08:00,1010.7578125,10.736941,10736.941 +5488,2025-03-07T16:21:26.341656-08:00,1010.7762451171875,10.72916,10729.16 +5489,2025-03-07T16:21:37.070701-08:00,1010.7762451171875,10.729045,10729.045 +5490,2025-03-07T16:21:47.793495-08:00,1010.7416381835938,10.722794,10722.794 +5491,2025-03-07T16:21:58.520669-08:00,1010.8078002929688,10.727174,10727.174 +5492,2025-03-07T16:22:09.259377-08:00,1010.8524169921875,10.738708,10738.708 +5493,2025-03-07T16:22:19.984752-08:00,1010.8126831054688,10.725375,10725.375 +5494,2025-03-07T16:22:30.713091-08:00,1010.8475952148438,10.728339,10728.339 +5495,2025-03-07T16:22:41.443493-08:00,1010.8046875,10.730402,10730.402 +5496,2025-03-07T16:22:52.164741-08:00,1010.8641967773438,10.721248,10721.248 +5497,2025-03-07T16:23:02.894311-08:00,1010.8297119140625,10.72957,10729.57 +5498,2025-03-07T16:23:13.624497-08:00,1010.8495483398438,10.730186,10730.186 +5499,2025-03-07T16:23:24.352671-08:00,1010.8759155273438,10.728174,10728.174 +5500,2025-03-07T16:23:35.078493-08:00,1010.8627319335938,10.725822,10725.822 +5501,2025-03-07T16:23:45.812692-08:00,1010.885986328125,10.734199,10734.199 +5502,2025-03-07T16:23:56.544676-08:00,1010.872802734375,10.731984,10731.984 +5503,2025-03-07T16:23:56.602604-08:00,1010.8660888671875,0.057928,57.928 +5504,2025-03-07T16:24:07.265614-08:00,1010.9092407226562,10.66301,10663.01 +5505,2025-03-07T16:24:18.001496-08:00,1010.871337890625,10.735882,10735.882 +5506,2025-03-07T16:24:28.727841-08:00,1010.9078369140625,10.726345,10726.345 +5507,2025-03-07T16:24:39.460021-08:00,1010.9673461914062,10.73218,10732.18 +5508,2025-03-07T16:24:50.195497-08:00,1010.9181518554688,10.735476,10735.476 +5509,2025-03-07T16:25:00.921826-08:00,1010.90966796875,10.726329,10726.329 +5510,2025-03-07T16:25:11.648489-08:00,1010.9082641601562,10.726663,10726.663 +5511,2025-03-07T16:25:22.379614-08:00,1010.8984375,10.731125,10731.125 +5512,2025-03-07T16:25:33.102856-08:00,1010.96826171875,10.723242,10723.242 +5513,2025-03-07T16:25:43.831642-08:00,1010.89892578125,10.728786,10728.786 +5514,2025-03-07T16:25:54.558621-08:00,1010.8809204101562,10.726979,10726.979 +5515,2025-03-07T16:26:05.287600-08:00,1010.9258422851562,10.728979,10728.979 +5516,2025-03-07T16:26:16.010678-08:00,1010.9378051757812,10.723078,10723.078 +5517,2025-03-07T16:26:26.748431-08:00,1010.984619140625,10.737753,10737.753 +5518,2025-03-07T16:26:37.470496-08:00,1010.9156494140625,10.722065,10722.065 +5519,2025-03-07T16:26:48.192495-08:00,1010.959228515625,10.721999,10721.999 +5520,2025-03-07T16:26:58.924517-08:00,1010.9530639648438,10.732022,10732.022 +5521,2025-03-07T16:27:09.645519-08:00,1010.9503173828125,10.721002,10721.002 +5522,2025-03-07T16:27:20.373953-08:00,1010.930908203125,10.728434,10728.434 +5523,2025-03-07T16:27:31.104686-08:00,1010.962646484375,10.730733,10730.733 +5524,2025-03-07T16:27:41.832498-08:00,1010.9219360351562,10.727812,10727.812 +5525,2025-03-07T16:27:52.554598-08:00,1010.9489135742188,10.7221,10722.1 +5526,2025-03-07T16:28:03.282494-08:00,1010.9307861328125,10.727896,10727.896 +5527,2025-03-07T16:28:14.008701-08:00,1010.90283203125,10.726207,10726.207 +5528,2025-03-07T16:28:24.737958-08:00,1010.9529418945312,10.729257,10729.257 +5529,2025-03-07T16:28:35.473497-08:00,1010.9071044921875,10.735539,10735.539 +5530,2025-03-07T16:28:46.203657-08:00,1010.9935913085938,10.73016,10730.16 +5531,2025-03-07T16:28:56.933488-08:00,1010.985595703125,10.729831,10729.831 +5532,2025-03-07T16:29:07.653735-08:00,1010.99267578125,10.720247,10720.247 +5533,2025-03-07T16:29:18.382495-08:00,1010.9761962890625,10.72876,10728.76 +5534,2025-03-07T16:29:29.113523-08:00,1011.031005859375,10.731028,10731.028 +5535,2025-03-07T16:29:39.845500-08:00,1010.9998168945312,10.731977,10731.977 +5536,2025-03-07T16:29:50.566491-08:00,1010.998779296875,10.720991,10720.991 +5537,2025-03-07T16:30:01.290686-08:00,1010.9955444335938,10.724195,10724.195 +5538,2025-03-07T16:30:12.019493-08:00,1010.9840698242188,10.728807,10728.807 +5539,2025-03-07T16:30:22.750497-08:00,1011.005859375,10.731004,10731.004 +5540,2025-03-07T16:30:33.476666-08:00,1010.9974975585938,10.726169,10726.169 +5541,2025-03-07T16:30:44.201493-08:00,1010.9927368164062,10.724827,10724.827 +5542,2025-03-07T16:30:54.933696-08:00,1010.986083984375,10.732203,10732.203 +5543,2025-03-07T16:31:05.660367-08:00,1010.981689453125,10.726671,10726.671 +5544,2025-03-07T16:31:16.392496-08:00,1011.0081787109375,10.732129,10732.129 +5545,2025-03-07T16:31:27.122648-08:00,1010.97998046875,10.730152,10730.152 +5546,2025-03-07T16:31:37.846526-08:00,1010.9586181640625,10.723878,10723.878 +5547,2025-03-07T16:31:48.568498-08:00,1011.0379638671875,10.721972,10721.972 +5548,2025-03-07T16:31:59.296356-08:00,1010.9950561523438,10.727858,10727.858 +5549,2025-03-07T16:32:10.027493-08:00,1010.9804077148438,10.731137,10731.137 +5550,2025-03-07T16:32:20.756528-08:00,1010.9539184570312,10.729035,10729.035 +5551,2025-03-07T16:32:31.479686-08:00,1010.9884643554688,10.723158,10723.158 +5552,2025-03-07T16:32:42.210711-08:00,1010.9590454101562,10.731025,10731.025 +5553,2025-03-07T16:32:52.932666-08:00,1011.000244140625,10.721955,10721.955 +5554,2025-03-07T16:33:03.665611-08:00,1010.9950561523438,10.732945,10732.945 +5555,2025-03-07T16:33:14.389239-08:00,1011.014892578125,10.723628,10723.628 +5556,2025-03-07T16:33:25.120305-08:00,1010.9884643554688,10.731066,10731.066 +5557,2025-03-07T16:33:35.844013-08:00,1010.99169921875,10.723708,10723.708 +5558,2025-03-07T16:33:46.571798-08:00,1010.97705078125,10.727785,10727.785 +5559,2025-03-07T16:33:57.309719-08:00,1010.9931030273438,10.737921,10737.921 +5560,2025-03-07T16:34:08.036493-08:00,1010.998291015625,10.726774,10726.774 +5561,2025-03-07T16:34:18.758682-08:00,1011.0195922851562,10.722189,10722.189 +5562,2025-03-07T16:34:29.497771-08:00,1010.981689453125,10.739089,10739.089 +5563,2025-03-07T16:34:40.221668-08:00,1011.0148315429688,10.723897,10723.897 +5564,2025-03-07T16:34:50.959676-08:00,1010.969970703125,10.738008,10738.008 +5565,2025-03-07T16:35:01.681701-08:00,1011.0228881835938,10.722025,10722.025 +5566,2025-03-07T16:35:12.413494-08:00,1010.9662475585938,10.731793,10731.793 +5567,2025-03-07T16:35:23.152906-08:00,1010.9945068359375,10.739412,10739.412 +5568,2025-03-07T16:35:33.877657-08:00,1011.0701293945312,10.724751,10724.751 +5569,2025-03-07T16:35:44.607498-08:00,1010.97607421875,10.729841,10729.841 +5570,2025-03-07T16:35:55.340205-08:00,1010.9992065429688,10.732707,10732.707 +5571,2025-03-07T16:36:06.063494-08:00,1011.002197265625,10.723289,10723.289 +5572,2025-03-07T16:36:16.789557-08:00,1010.9312744140625,10.726063,10726.063 +5573,2025-03-07T16:36:27.530654-08:00,1010.9774780273438,10.741097,10741.097 +5574,2025-03-07T16:36:38.257497-08:00,1010.9723510742188,10.726843,10726.843 +5575,2025-03-07T16:36:48.979899-08:00,1010.987060546875,10.722402,10722.402 +5576,2025-03-07T16:36:59.709810-08:00,1010.9902954101562,10.729911,10729.911 +5577,2025-03-07T16:37:10.441498-08:00,1010.9932250976562,10.731688,10731.688 +5578,2025-03-07T16:37:21.177494-08:00,1011.0427856445312,10.735996,10735.996 +5579,2025-03-07T16:37:31.905012-08:00,1010.9846801757812,10.727518,10727.518 +5580,2025-03-07T16:37:42.636704-08:00,1010.9945068359375,10.731692,10731.692 +5581,2025-03-07T16:37:53.370571-08:00,1011.0011596679688,10.733867,10733.867 +5582,2025-03-07T16:38:04.097679-08:00,1010.997802734375,10.727108,10727.108 +5583,2025-03-07T16:38:14.821490-08:00,1010.9611206054688,10.723811,10723.811 +5584,2025-03-07T16:38:25.560497-08:00,1010.9529418945312,10.739007,10739.007 +5585,2025-03-07T16:38:36.289875-08:00,1010.9874877929688,10.729378,10729.378 +5586,2025-03-07T16:38:47.020494-08:00,1011.041748046875,10.730619,10730.619 +5587,2025-03-07T16:38:57.749764-08:00,1011.0218505859375,10.72927,10729.27 +5588,2025-03-07T16:39:08.474494-08:00,1011.013427734375,10.72473,10724.73 +5589,2025-03-07T16:39:19.201032-08:00,1011.0465087890625,10.726538,10726.538 +5590,2025-03-07T16:39:29.933496-08:00,1011.0328369140625,10.732464,10732.464 +5591,2025-03-07T16:39:40.667716-08:00,1011.0540771484375,10.73422,10734.22 +5592,2025-03-07T16:39:51.399492-08:00,1011.0474853515625,10.731776,10731.776 +5593,2025-03-07T16:40:02.129937-08:00,1011.1116943359375,10.730445,10730.445 +5594,2025-03-07T16:40:12.863676-08:00,1010.984619140625,10.733739,10733.739 +5595,2025-03-07T16:40:23.590495-08:00,1010.98779296875,10.726819,10726.819 +5596,2025-03-07T16:40:34.316714-08:00,1011.0238037109375,10.726219,10726.219 +5597,2025-03-07T16:40:45.056704-08:00,1011.0172119140625,10.73999,10739.99 +5598,2025-03-07T16:40:55.786708-08:00,1011.0167236328125,10.730004,10730.004 +5599,2025-03-07T16:41:06.515668-08:00,1010.983642578125,10.72896,10728.96 +5600,2025-03-07T16:41:17.254720-08:00,1011.0384521484375,10.739052,10739.052 +5601,2025-03-07T16:41:27.977494-08:00,1011.0349731445312,10.722774,10722.774 +5602,2025-03-07T16:41:38.715254-08:00,1011.0236206054688,10.73776,10737.76 +5603,2025-03-07T16:41:49.441959-08:00,1011.0250244140625,10.726705,10726.705 +5604,2025-03-07T16:42:00.172493-08:00,1010.9985961914062,10.730534,10730.534 +5605,2025-03-07T16:42:10.893682-08:00,1011.021728515625,10.721189,10721.189 +5606,2025-03-07T16:42:21.630686-08:00,1011.0032958984375,10.737004,10737.004 +5607,2025-03-07T16:42:32.362495-08:00,1011.0098266601562,10.731809,10731.809 +5608,2025-03-07T16:42:43.092708-08:00,1011.02783203125,10.730213,10730.213 +5609,2025-03-07T16:42:53.817058-08:00,1010.9999389648438,10.72435,10724.35 +5610,2025-03-07T16:43:04.552496-08:00,1011.0543212890625,10.735438,10735.438 +5611,2025-03-07T16:43:15.280679-08:00,1011.0505981445312,10.728183,10728.183 +5612,2025-03-07T16:43:26.011679-08:00,1011.0604858398438,10.731,10731.0 +5613,2025-03-07T16:43:36.740771-08:00,1011.0685424804688,10.729092,10729.092 +5614,2025-03-07T16:43:47.474495-08:00,1011.0420532226562,10.733724,10733.724 +5615,2025-03-07T16:43:58.199924-08:00,1011.065185546875,10.725429,10725.429 +5616,2025-03-07T16:44:08.936593-08:00,1011.0733032226562,10.736669,10736.669 +5617,2025-03-07T16:44:19.665556-08:00,1011.0750122070312,10.728963,10728.963 +5618,2025-03-07T16:44:30.392282-08:00,1011.0845336914062,10.726726,10726.726 +5619,2025-03-07T16:44:41.132552-08:00,1011.1110229492188,10.74027,10740.27 +5620,2025-03-07T16:44:51.858831-08:00,1011.0745239257812,10.726279,10726.279 +5621,2025-03-07T16:45:02.585670-08:00,1011.0745239257812,10.726839,10726.839 +5622,2025-03-07T16:45:13.323516-08:00,1011.0759887695312,10.737846,10737.846 +5623,2025-03-07T16:45:24.047492-08:00,1011.0778198242188,10.723976,10723.976 +5624,2025-03-07T16:45:34.785271-08:00,1011.0711669921875,10.737779,10737.779 +5625,2025-03-07T16:45:45.509698-08:00,1011.0873413085938,10.724427,10724.427 +5626,2025-03-07T16:45:56.237593-08:00,1011.0689086914062,10.727895,10727.895 +5627,2025-03-07T16:46:06.975550-08:00,1011.0953979492188,10.737957,10737.957 +5628,2025-03-07T16:46:17.695699-08:00,1011.1331787109375,10.720149,10720.149 +5629,2025-03-07T16:46:28.428830-08:00,1011.1151733398438,10.733131,10733.131 +5630,2025-03-07T16:46:39.154899-08:00,1011.0967407226562,10.726069,10726.069 +5631,2025-03-07T16:46:49.886493-08:00,1011.1180419921875,10.731594,10731.594 +5632,2025-03-07T16:47:00.618496-08:00,1011.0962524414062,10.732003,10732.003 +5633,2025-03-07T16:47:11.347363-08:00,1011.1259155273438,10.728867,10728.867 +5634,2025-03-07T16:47:22.078655-08:00,1011.1571655273438,10.731292,10731.292 +5635,2025-03-07T16:47:32.806725-08:00,1011.1387329101562,10.72807,10728.07 +5636,2025-03-07T16:47:43.535727-08:00,1011.1534423828125,10.729002,10729.002 +5637,2025-03-07T16:47:54.267918-08:00,1011.1515502929688,10.732191,10732.191 +5638,2025-03-07T16:48:04.991689-08:00,1011.16796875,10.723771,10723.771 +5639,2025-03-07T16:48:15.719708-08:00,1011.1807861328125,10.728019,10728.019 +5640,2025-03-07T16:48:26.453499-08:00,1011.2138061523438,10.733791,10733.791 +5641,2025-03-07T16:48:37.178664-08:00,1011.2072143554688,10.725165,10725.165 +5642,2025-03-07T16:48:47.898697-08:00,1011.1920166015625,10.720033,10720.033 +5643,2025-03-07T16:48:58.631520-08:00,1011.216552734375,10.732823,10732.823 +5644,2025-03-07T16:49:09.355586-08:00,1011.25634765625,10.724066,10724.066 +5645,2025-03-07T16:49:20.082498-08:00,1011.2492065429688,10.726912,10726.912 +5646,2025-03-07T16:49:30.814954-08:00,1011.2840576171875,10.732456,10732.456 +5647,2025-03-07T16:49:41.538559-08:00,1011.2656860351562,10.723605,10723.605 +5648,2025-03-07T16:49:52.275602-08:00,1011.2556762695312,10.737043,10737.043 +5649,2025-03-07T16:50:03.006667-08:00,1011.2784423828125,10.731065,10731.065 +5650,2025-03-07T16:50:13.726731-08:00,1011.2652587890625,10.720064,10720.064 +5651,2025-03-07T16:50:24.465497-08:00,1011.2765502929688,10.738766,10738.766 +5652,2025-03-07T16:50:35.185620-08:00,1011.3030395507812,10.720123,10720.123 +5653,2025-03-07T16:50:45.926642-08:00,1011.3077392578125,10.741022,10741.022 +5654,2025-03-07T16:50:56.650559-08:00,1011.287841796875,10.723917,10723.917 +5655,2025-03-07T16:51:07.379812-08:00,1011.33740234375,10.729253,10729.253 +5656,2025-03-07T16:51:18.119719-08:00,1011.333740234375,10.739907,10739.907 +5657,2025-03-07T16:51:28.843763-08:00,1011.3552856445312,10.724044,10724.044 +5658,2025-03-07T16:51:39.586669-08:00,1011.3435668945312,10.742906,10742.906 +5659,2025-03-07T16:51:50.313493-08:00,1011.3648681640625,10.726824,10726.824 +5660,2025-03-07T16:52:01.042911-08:00,1011.3781127929688,10.729418,10729.418 +5661,2025-03-07T16:52:11.777495-08:00,1011.4078369140625,10.734584,10734.584 +5662,2025-03-07T16:52:22.511205-08:00,1011.4490356445312,10.73371,10733.71 +5663,2025-03-07T16:52:33.244777-08:00,1011.4078369140625,10.733572,10733.572 +5664,2025-03-07T16:52:43.968922-08:00,1011.4173583984375,10.724145,10724.145 +5665,2025-03-07T16:52:54.701930-08:00,1011.42578125,10.733008,10733.008 +5666,2025-03-07T16:53:05.432745-08:00,1011.4041137695312,10.730815,10730.815 +5667,2025-03-07T16:53:16.170083-08:00,1011.46728515625,10.737338,10737.338 +5668,2025-03-07T16:53:26.901906-08:00,1011.46728515625,10.731823,10731.823 +5669,2025-03-07T16:53:37.633051-08:00,1011.4191284179688,10.731145,10731.145 +5670,2025-03-07T16:53:48.357753-08:00,1011.46875,10.724702,10724.702 +5671,2025-03-07T16:53:59.088924-08:00,1011.4820556640625,10.731171,10731.171 +5672,2025-03-07T16:54:09.825745-08:00,1011.4371948242188,10.736821,10736.821 +5673,2025-03-07T16:54:20.556746-08:00,1011.4606323242188,10.731001,10731.001 +5674,2025-03-07T16:54:31.290747-08:00,1011.4456176757812,10.734001,10734.001 +5675,2025-03-07T16:54:42.024926-08:00,1011.4474487304688,10.734179,10734.179 +5676,2025-03-07T16:54:52.749748-08:00,1011.4474487304688,10.724822,10724.822 +5677,2025-03-07T16:55:03.481083-08:00,1011.46728515625,10.731335,10731.335 +5678,2025-03-07T16:55:14.216157-08:00,1011.42236328125,10.735074,10735.074 +5679,2025-03-07T16:55:24.948743-08:00,1011.4554443359375,10.732586,10732.586 +5680,2025-03-07T16:55:35.677881-08:00,1011.4522705078125,10.729138,10729.138 +5681,2025-03-07T16:55:46.402947-08:00,1011.4474487304688,10.725066,10725.066 +5682,2025-03-07T16:55:57.136746-08:00,1011.4970092773438,10.733799,10733.799 +5683,2025-03-07T16:56:07.858135-08:00,1011.4554443359375,10.721389,10721.389 +5684,2025-03-07T16:56:18.587753-08:00,1011.4356079101562,10.729618,10729.618 +5685,2025-03-07T16:56:29.322746-08:00,1011.4620971679688,10.734993,10734.993 +5686,2025-03-07T16:56:40.050934-08:00,1011.4785766601562,10.728188,10728.188 +5687,2025-03-07T16:56:50.788455-08:00,1011.4407958984375,10.737521,10737.521 +5688,2025-03-07T16:57:01.519769-08:00,1011.4356079101562,10.731314,10731.314 +5689,2025-03-07T16:57:12.245027-08:00,1011.4866943359375,10.725258,10725.258 +5690,2025-03-07T16:57:22.982937-08:00,1011.4606323242188,10.73791,10737.91 +5691,2025-03-07T16:57:33.712772-08:00,1011.5003662109375,10.729835,10729.835 +5692,2025-03-07T16:57:44.438962-08:00,1011.473876953125,10.72619,10726.19 +5693,2025-03-07T16:57:55.169077-08:00,1011.4456176757812,10.730115,10730.115 +5694,2025-03-07T16:58:05.899746-08:00,1011.4342041015625,10.730669,10730.669 +5695,2025-03-07T16:58:16.624588-08:00,1011.4240112304688,10.724842,10724.842 +5696,2025-03-07T16:58:27.362577-08:00,1011.450439453125,10.737989,10737.989 +5697,2025-03-07T16:58:38.090752-08:00,1011.4540405273438,10.728175,10728.175 +5698,2025-03-07T16:58:48.819812-08:00,1011.4606323242188,10.72906,10729.06 +5699,2025-03-07T16:58:59.547982-08:00,1011.427490234375,10.72817,10728.17 +5700,2025-03-07T16:59:10.278750-08:00,1011.4439086914062,10.730768,10730.768 +5701,2025-03-07T16:59:21.013172-08:00,1011.450439453125,10.734422,10734.422 +5702,2025-03-07T16:59:31.746143-08:00,1011.4173583984375,10.732971,10732.971 +5703,2025-03-07T16:59:42.471746-08:00,1011.4240112304688,10.725603,10725.603 +5704,2025-03-07T16:59:53.203748-08:00,1011.4424438476562,10.732002,10732.002 +5705,2025-03-07T17:00:03.930768-08:00,1011.4371948242188,10.72702,10727.02 +5706,2025-03-07T17:00:14.665041-08:00,1011.4276733398438,10.734273,10734.273 +5707,2025-03-07T17:00:25.386972-08:00,1011.42919921875,10.721931,10721.931 +5708,2025-03-07T17:00:36.117746-08:00,1011.4343872070312,10.730774,10730.774 +5709,2025-03-07T17:00:46.849739-08:00,1011.419677734375,10.731993,10731.993 +5710,2025-03-07T17:00:57.580899-08:00,1011.44091796875,10.73116,10731.16 +5711,2025-03-07T17:01:08.312874-08:00,1011.4229736328125,10.731975,10731.975 +5712,2025-03-07T17:01:19.032940-08:00,1011.4376831054688,10.720066,10720.066 +5713,2025-03-07T17:01:29.761593-08:00,1011.4177856445312,10.728653,10728.653 +5714,2025-03-07T17:01:40.492265-08:00,1011.4281005859375,10.730672,10730.672 +5715,2025-03-07T17:01:51.214894-08:00,1011.44140625,10.722629,10722.629 +5716,2025-03-07T17:02:01.945952-08:00,1011.3965454101562,10.731058,10731.058 +5717,2025-03-07T17:02:12.677740-08:00,1011.4329833984375,10.731788,10731.788 +5718,2025-03-07T17:02:23.406610-08:00,1011.4595336914062,10.72887,10728.87 +5719,2025-03-07T17:02:34.141363-08:00,1011.4168701171875,10.734753,10734.753 +5720,2025-03-07T17:02:44.871745-08:00,1011.40185546875,10.730382,10730.382 +5721,2025-03-07T17:02:55.604773-08:00,1011.4234619140625,10.733028,10733.028 +5722,2025-03-07T17:03:06.326746-08:00,1011.41357421875,10.721973,10721.973 +5723,2025-03-07T17:03:17.054793-08:00,1011.400390625,10.728047,10728.047 +5724,2025-03-07T17:03:27.791935-08:00,1011.3905639648438,10.737142,10737.142 +5725,2025-03-07T17:03:38.513287-08:00,1011.3905639648438,10.721352,10721.352 +5726,2025-03-07T17:03:49.241013-08:00,1011.3743896484375,10.727726,10727.726 +5727,2025-03-07T17:03:59.974919-08:00,1011.3956909179688,10.733906,10733.906 +5728,2025-03-07T17:04:10.704773-08:00,1011.4140625,10.729854,10729.854 +5729,2025-03-07T17:04:21.441740-08:00,1011.40087890625,10.736967,10736.967 +5730,2025-03-07T17:04:32.166916-08:00,1011.37109375,10.725176,10725.176 +5731,2025-03-07T17:04:42.900773-08:00,1011.3942260742188,10.733857,10733.857 +5732,2025-03-07T17:04:53.629746-08:00,1011.4042358398438,10.728973,10728.973 +5733,2025-03-07T17:05:04.353524-08:00,1011.40087890625,10.723778,10723.778 +5734,2025-03-07T17:05:15.087743-08:00,1011.3961791992188,10.734219,10734.219 +5735,2025-03-07T17:05:25.820745-08:00,1011.410888671875,10.733002,10733.002 +5736,2025-03-07T17:05:36.545988-08:00,1011.4093627929688,10.725243,10725.243 +5737,2025-03-07T17:05:47.274744-08:00,1011.3881225585938,10.728756,10728.756 +5738,2025-03-07T17:05:58.012747-08:00,1011.426025390625,10.738003,10738.003 +5739,2025-03-07T17:06:08.738936-08:00,1011.4113159179688,10.726189,10726.189 +5740,2025-03-07T17:06:19.470928-08:00,1011.3981323242188,10.731992,10731.992 +5741,2025-03-07T17:06:30.203076-08:00,1011.4032592773438,10.732148,10732.148 +5742,2025-03-07T17:06:40.929604-08:00,1011.375,10.726528,10726.528 +5743,2025-03-07T17:06:51.661741-08:00,1011.3966674804688,10.732137,10732.137 +5744,2025-03-07T17:07:02.398774-08:00,1011.381591796875,10.737033,10737.033 +5745,2025-03-07T17:07:13.122943-08:00,1011.4032592773438,10.724169,10724.169 +5746,2025-03-07T17:07:23.861057-08:00,1011.4081420898438,10.738114,10738.114 +5747,2025-03-07T17:07:34.588745-08:00,1011.3986206054688,10.727688,10727.688 +5748,2025-03-07T17:07:45.316923-08:00,1011.4132690429688,10.728178,10728.178 +5749,2025-03-07T17:07:56.048788-08:00,1011.4118041992188,10.731865,10731.865 +5750,2025-03-07T17:08:06.774747-08:00,1011.4515380859375,10.725959,10725.959 +5751,2025-03-07T17:08:17.501910-08:00,1011.4085693359375,10.727163,10727.163 +5752,2025-03-07T17:08:28.228748-08:00,1011.428466796875,10.726838,10726.838 +5753,2025-03-07T17:08:38.959942-08:00,1011.4681396484375,10.731194,10731.194 +5754,2025-03-07T17:08:49.694806-08:00,1011.4767456054688,10.734864,10734.864 +5755,2025-03-07T17:09:00.432743-08:00,1011.512939453125,10.737937,10737.937 +5756,2025-03-07T17:09:11.161961-08:00,1011.456787109375,10.729218,10729.218 +5757,2025-03-07T17:09:21.893942-08:00,1011.4832763671875,10.731981,10731.981 +5758,2025-03-07T17:09:32.626765-08:00,1011.50830078125,10.732823,10732.823 +5759,2025-03-07T17:09:43.360746-08:00,1011.4620361328125,10.733981,10733.981 +5760,2025-03-07T17:09:54.092952-08:00,1011.49658203125,10.732206,10732.206 +5761,2025-03-07T17:10:04.823232-08:00,1011.4935913085938,10.73028,10730.28 +5762,2025-03-07T17:10:15.547743-08:00,1011.5531005859375,10.724511,10724.511 +5763,2025-03-07T17:10:26.272913-08:00,1011.4539184570312,10.72517,10725.17 +5764,2025-03-07T17:10:37.003210-08:00,1011.5332641601562,10.730297,10730.297 +5765,2025-03-07T17:10:47.729014-08:00,1011.5200805664062,10.725804,10725.804 +5766,2025-03-07T17:10:58.466097-08:00,1011.5399169921875,10.737083,10737.083 +5767,2025-03-07T17:11:09.193280-08:00,1011.5531005859375,10.727183,10727.183 +5768,2025-03-07T17:11:19.917747-08:00,1011.52490234375,10.724467,10724.467 +5769,2025-03-07T17:11:30.646772-08:00,1011.5646362304688,10.729025,10729.025 +5770,2025-03-07T17:11:41.381743-08:00,1011.5565795898438,10.734971,10734.971 +5771,2025-03-07T17:11:52.104952-08:00,1011.58154296875,10.723209,10723.209 +5772,2025-03-07T17:12:02.837943-08:00,1011.5234375,10.732991,10732.991 +5773,2025-03-07T17:12:13.569743-08:00,1011.5617065429688,10.7318,10731.8 +5774,2025-03-07T17:12:24.298752-08:00,1011.5829467773438,10.729009,10729.009 +5775,2025-03-07T17:12:35.033570-08:00,1011.5797729492188,10.734818,10734.818 +5776,2025-03-07T17:12:45.750830-08:00,1011.5750122070312,10.71726,10717.26 +5777,2025-03-07T17:12:56.478053-08:00,1011.6260986328125,10.727223,10727.223 +5778,2025-03-07T17:13:07.206035-08:00,1011.6048583984375,10.727982,10727.982 +5779,2025-03-07T17:13:17.933746-08:00,1011.6378784179688,10.727711,10727.711 +5780,2025-03-07T17:13:28.672909-08:00,1011.6842041015625,10.739163,10739.163 +5781,2025-03-07T17:13:39.394006-08:00,1011.6165771484375,10.721097,10721.097 +5782,2025-03-07T17:13:50.124076-08:00,1011.6246948242188,10.73007,10730.07 +5783,2025-03-07T17:14:00.841743-08:00,1011.6148681640625,10.717667,10717.667 +5784,2025-03-07T17:14:11.576952-08:00,1011.6265869140625,10.735209,10735.209 +5785,2025-03-07T17:14:22.298942-08:00,1011.6383056640625,10.72199,10721.99 +5786,2025-03-07T17:14:33.031746-08:00,1011.6148681640625,10.732804,10732.804 +5787,2025-03-07T17:14:43.758927-08:00,1011.6118774414062,10.727181,10727.181 +5788,2025-03-07T17:14:54.482808-08:00,1011.6498413085938,10.723881,10723.881 +5789,2025-03-07T17:15:05.210746-08:00,1011.6846923828125,10.727938,10727.938 +5790,2025-03-07T17:15:15.942925-08:00,1011.6615600585938,10.732179,10732.179 +5791,2025-03-07T17:15:26.666960-08:00,1011.6681518554688,10.724035,10724.035 +5792,2025-03-07T17:15:37.393415-08:00,1011.6402587890625,10.726455,10726.455 +5793,2025-03-07T17:15:48.122771-08:00,1011.655029296875,10.729356,10729.356 +5794,2025-03-07T17:15:58.846369-08:00,1011.682861328125,10.723598,10723.598 +5795,2025-03-07T17:16:09.577921-08:00,1011.6732788085938,10.731552,10731.552 +5796,2025-03-07T17:16:20.307745-08:00,1011.682861328125,10.729824,10729.824 +5797,2025-03-07T17:16:31.043501-08:00,1011.6931762695312,10.735756,10735.756 +5798,2025-03-07T17:16:41.772541-08:00,1011.6998291015625,10.72904,10729.04 +5799,2025-03-07T17:16:52.496947-08:00,1011.6931762695312,10.724406,10724.406 +5800,2025-03-07T17:17:03.221821-08:00,1011.66015625,10.724874,10724.874 +5801,2025-03-07T17:17:13.952916-08:00,1011.6732788085938,10.731095,10731.095 +5802,2025-03-07T17:17:24.686770-08:00,1011.684814453125,10.733854,10733.854 +5803,2025-03-07T17:17:35.416694-08:00,1011.697998046875,10.729924,10729.924 +5804,2025-03-07T17:17:46.143764-08:00,1011.7310791015625,10.72707,10727.07 +5805,2025-03-07T17:17:56.859954-08:00,1011.684814453125,10.71619,10716.19 +5806,2025-03-07T17:18:07.590431-08:00,1011.6832885742188,10.730477,10730.477 +5807,2025-03-07T17:18:18.318746-08:00,1011.6355590820312,10.728315,10728.315 +5808,2025-03-07T17:18:29.053415-08:00,1011.6865844726562,10.734669,10734.669 +5809,2025-03-07T17:18:39.776969-08:00,1011.6517333984375,10.723554,10723.554 +5810,2025-03-07T17:18:50.499910-08:00,1011.6900024414062,10.722941,10722.941 +5811,2025-03-07T17:19:01.236002-08:00,1011.696533203125,10.736092,10736.092 +5812,2025-03-07T17:19:11.954749-08:00,1011.7310791015625,10.718747,10718.747 +5813,2025-03-07T17:19:22.680943-08:00,1011.6701049804688,10.726194,10726.194 +5814,2025-03-07T17:19:33.409743-08:00,1011.6884155273438,10.7288,10728.8 +5815,2025-03-07T17:19:44.132746-08:00,1011.6951293945312,10.723003,10723.003 +5816,2025-03-07T17:19:54.866835-08:00,1011.703125,10.734089,10734.089 +5817,2025-03-07T17:20:05.584986-08:00,1011.693603515625,10.718151,10718.151 +5818,2025-03-07T17:20:16.308913-08:00,1011.6654052734375,10.723927,10723.927 +5819,2025-03-07T17:20:27.039745-08:00,1011.68701171875,10.730832,10730.832 +5820,2025-03-07T17:20:37.768621-08:00,1011.7215576171875,10.728876,10728.876 +5821,2025-03-07T17:20:48.497918-08:00,1011.6984252929688,10.729297,10729.297 +5822,2025-03-07T17:20:59.217746-08:00,1011.7352294921875,10.719828,10719.828 +5823,2025-03-07T17:21:09.942923-08:00,1011.6937255859375,10.725177,10725.177 +5824,2025-03-07T17:21:20.671868-08:00,1011.7003784179688,10.728945,10728.945 +5825,2025-03-07T17:21:31.389849-08:00,1011.713623046875,10.717981,10717.981 +5826,2025-03-07T17:21:42.118745-08:00,1011.6890869140625,10.728896,10728.896 +5827,2025-03-07T17:21:52.838175-08:00,1011.7354125976562,10.71943,10719.43 +5828,2025-03-07T17:22:03.563748-08:00,1011.74560546875,10.725573,10725.573 +5829,2025-03-07T17:22:14.284745-08:00,1011.7225952148438,10.720997,10720.997 +5830,2025-03-07T17:22:25.017630-08:00,1011.7078857421875,10.732885,10732.885 +5831,2025-03-07T17:22:35.737810-08:00,1011.7178344726562,10.72018,10720.18 +5832,2025-03-07T17:22:46.461644-08:00,1011.7447509765625,10.723834,10723.834 +5833,2025-03-07T17:22:57.186746-08:00,1011.739990234375,10.725102,10725.102 +5834,2025-03-07T17:23:07.917740-08:00,1011.7056274414062,10.730994,10730.994 +5835,2025-03-07T17:23:18.646892-08:00,1011.7343139648438,10.729152,10729.152 +5836,2025-03-07T17:23:29.368952-08:00,1011.7446899414062,10.72206,10722.06 +5837,2025-03-07T17:23:40.096394-08:00,1011.7246704101562,10.727442,10727.442 +5838,2025-03-07T17:23:50.821746-08:00,1011.7586059570312,10.725352,10725.352 +5839,2025-03-07T17:24:01.548910-08:00,1011.7324829101562,10.727164,10727.164 +5840,2025-03-07T17:24:12.269771-08:00,1011.7179565429688,10.720861,10720.861 +5841,2025-03-07T17:24:22.997923-08:00,1011.7151489257812,10.728152,10728.152 +5842,2025-03-07T17:24:33.728078-08:00,1011.715576171875,10.730155,10730.155 +5843,2025-03-07T17:24:44.445744-08:00,1011.6943969726562,10.717666,10717.666 +5844,2025-03-07T17:24:55.175002-08:00,1011.7079467773438,10.729258,10729.258 +5845,2025-03-07T17:25:05.905120-08:00,1011.6936645507812,10.730118,10730.118 +5846,2025-03-07T17:25:16.640747-08:00,1011.6738891601562,10.735627,10735.627 +5847,2025-03-07T17:25:27.369942-08:00,1011.6893920898438,10.729195,10729.195 +5848,2025-03-07T17:25:38.100903-08:00,1011.7044677734375,10.730961,10730.961 +5849,2025-03-07T17:25:48.823743-08:00,1011.7310180664062,10.72284,10722.84 +5850,2025-03-07T17:25:59.545746-08:00,1011.724853515625,10.722003,10722.003 +5851,2025-03-07T17:26:10.279932-08:00,1011.693603515625,10.734186,10734.186 +5852,2025-03-07T17:26:21.001922-08:00,1011.6921997070312,10.72199,10721.99 +5853,2025-03-07T17:26:31.730747-08:00,1011.6873168945312,10.728825,10728.825 +5854,2025-03-07T17:26:42.466769-08:00,1011.6841430664062,10.736022,10736.022 +5855,2025-03-07T17:26:53.187946-08:00,1011.6693725585938,10.721177,10721.177 +5856,2025-03-07T17:27:03.919949-08:00,1011.6878051757812,10.732003,10732.003 +5857,2025-03-07T17:27:14.647947-08:00,1011.6911010742188,10.727998,10727.998 +5858,2025-03-07T17:27:25.374744-08:00,1011.6500244140625,10.726797,10726.797 +5859,2025-03-07T17:27:36.108741-08:00,1011.6268920898438,10.733997,10733.997 +5860,2025-03-07T17:27:46.831846-08:00,1011.6268920898438,10.723105,10723.105 +5861,2025-03-07T17:27:57.566950-08:00,1011.6121826171875,10.735104,10735.104 +5862,2025-03-07T17:28:08.286922-08:00,1011.6107788085938,10.719972,10719.972 +5863,2025-03-07T17:28:19.008794-08:00,1011.6386108398438,10.721872,10721.872 +5864,2025-03-07T17:28:29.737746-08:00,1011.59423828125,10.728952,10728.952 +5865,2025-03-07T17:28:40.468942-08:00,1011.60888671875,10.731196,10731.196 +5866,2025-03-07T17:28:51.188743-08:00,1011.6023559570312,10.719801,10719.801 +5867,2025-03-07T17:29:01.912921-08:00,1011.6155395507812,10.724178,10724.178 +5868,2025-03-07T17:29:12.639743-08:00,1011.59423828125,10.726822,10726.822 +5869,2025-03-07T17:29:23.363780-08:00,1011.6074829101562,10.724037,10724.037 +5870,2025-03-07T17:29:34.096943-08:00,1011.5809936523438,10.733163,10733.163 +5871,2025-03-07T17:29:44.820745-08:00,1011.5809936523438,10.723802,10723.802 +5872,2025-03-07T17:29:55.548234-08:00,1011.5626831054688,10.727489,10727.489 +5873,2025-03-07T17:30:06.273030-08:00,1011.595703125,10.724796,10724.796 +5874,2025-03-07T17:30:17.002747-08:00,1011.58251953125,10.729717,10729.717 +5875,2025-03-07T17:30:27.728775-08:00,1011.5791625976562,10.726028,10726.028 +5876,2025-03-07T17:30:38.458809-08:00,1011.57763671875,10.730034,10730.034 +5877,2025-03-07T17:30:49.176019-08:00,1011.5409545898438,10.71721,10717.21 +5878,2025-03-07T17:30:59.903746-08:00,1011.5460815429688,10.727727,10727.727 +5879,2025-03-07T17:31:10.640815-08:00,1011.5689086914062,10.737069,10737.069 +5880,2025-03-07T17:31:21.362794-08:00,1011.517822265625,10.721979,10721.979 +5881,2025-03-07T17:31:32.095740-08:00,1011.5309448242188,10.732946,10732.946 +5882,2025-03-07T17:31:42.814908-08:00,1011.5390625,10.719168,10719.168 +5883,2025-03-07T17:31:53.548947-08:00,1011.5488891601562,10.734039,10734.039 +5884,2025-03-07T17:32:04.276744-08:00,1011.5537719726562,10.727797,10727.797 +5885,2025-03-07T17:32:15.000067-08:00,1011.5555419921875,10.723323,10723.323 +5886,2025-03-07T17:32:25.728969-08:00,1011.5386962890625,10.728902,10728.902 +5887,2025-03-07T17:32:36.456216-08:00,1011.5933837890625,10.727247,10727.247 +5888,2025-03-07T17:32:47.186943-08:00,1011.5139770507812,10.730727,10730.727 +5889,2025-03-07T17:32:57.926746-08:00,1011.5236206054688,10.739803,10739.803 +5890,2025-03-07T17:33:08.647776-08:00,1011.52685546875,10.72103,10721.03 +5891,2025-03-07T17:33:19.374744-08:00,1011.536376953125,10.726968,10726.968 +5892,2025-03-07T17:33:30.096924-08:00,1011.5381469726562,10.72218,10722.18 +5893,2025-03-07T17:33:40.825609-08:00,1011.5462646484375,10.728685,10728.685 +5894,2025-03-07T17:33:51.558772-08:00,1011.5527954101562,10.733163,10733.163 +5895,2025-03-07T17:34:02.288744-08:00,1011.6038818359375,10.729972,10729.972 +5896,2025-03-07T17:34:13.011805-08:00,1011.57080078125,10.723061,10723.061 +5897,2025-03-07T17:34:23.738748-08:00,1011.5755615234375,10.726943,10726.943 +5898,2025-03-07T17:34:34.474920-08:00,1011.5571899414062,10.736172,10736.172 +5899,2025-03-07T17:34:45.198744-08:00,1011.5736694335938,10.723824,10723.824 +5900,2025-03-07T17:34:55.922226-08:00,1011.5420532226562,10.723482,10723.482 +5901,2025-03-07T17:35:06.656378-08:00,1011.5372924804688,10.734152,10734.152 +5902,2025-03-07T17:35:17.384934-08:00,1011.5387573242188,10.728556,10728.556 +5903,2025-03-07T17:35:28.110935-08:00,1011.5515747070312,10.726001,10726.001 +5904,2025-03-07T17:35:38.832743-08:00,1011.5728149414062,10.721808,10721.808 +5905,2025-03-07T17:35:49.563817-08:00,1011.5548706054688,10.731074,10731.074 +5906,2025-03-07T17:36:00.294123-08:00,1011.5477905273438,10.730306,10730.306 +5907,2025-03-07T17:36:11.021776-08:00,1011.564208984375,10.727653,10727.653 +5908,2025-03-07T17:36:21.751775-08:00,1011.5753173828125,10.729999,10729.999 +5909,2025-03-07T17:36:32.479243-08:00,1011.6096801757812,10.727468,10727.468 +5910,2025-03-07T17:36:43.212747-08:00,1011.5516357421875,10.733504,10733.504 +5911,2025-03-07T17:36:53.940132-08:00,1011.5926513671875,10.727385,10727.385 +5912,2025-03-07T17:37:04.673434-08:00,1011.6466674804688,10.733302,10733.302 +5913,2025-03-07T17:37:15.405961-08:00,1011.6414184570312,10.732527,10732.527 +5914,2025-03-07T17:37:26.144737-08:00,1011.6196899414062,10.738776,10738.776 +5915,2025-03-07T17:37:36.874873-08:00,1011.66552734375,10.730136,10730.136 +5916,2025-03-07T17:37:47.608525-08:00,1011.6621704101562,10.733652,10733.652 +5917,2025-03-07T17:37:58.341749-08:00,1011.67529296875,10.733224,10733.224 +5918,2025-03-07T17:38:09.067752-08:00,1011.64697265625,10.726003,10726.003 +5919,2025-03-07T17:38:19.806943-08:00,1011.6715698242188,10.739191,10739.191 +5920,2025-03-07T17:38:30.541815-08:00,1011.6644287109375,10.734872,10734.872 +5921,2025-03-07T17:38:41.274746-08:00,1011.670654296875,10.732931,10732.931 +5922,2025-03-07T17:38:52.009112-08:00,1011.6837768554688,10.734366,10734.366 +5923,2025-03-07T17:39:02.746017-08:00,1011.7229614257812,10.736905,10736.905 +5924,2025-03-07T17:39:13.475950-08:00,1011.6732788085938,10.729933,10729.933 +5925,2025-03-07T17:39:24.218900-08:00,1011.681396484375,10.74295,10742.95 +5926,2025-03-07T17:39:34.952986-08:00,1011.7173461914062,10.734086,10734.086 +5927,2025-03-07T17:39:45.684920-08:00,1011.7249755859375,10.731934,10731.934 +5928,2025-03-07T17:39:56.415819-08:00,1011.7282104492188,10.730899,10730.899 +5929,2025-03-07T17:40:07.149872-08:00,1011.7310791015625,10.734053,10734.053 +5930,2025-03-07T17:40:17.887753-08:00,1011.7490844726562,10.737881,10737.881 +5931,2025-03-07T17:40:28.615953-08:00,1011.73388671875,10.7282,10728.2 +5932,2025-03-07T17:40:39.354056-08:00,1011.7371826171875,10.738103,10738.103 +5933,2025-03-07T17:40:50.095976-08:00,1011.7683715820312,10.74192,10741.92 +5934,2025-03-07T17:41:00.837825-08:00,1011.7943725585938,10.741849,10741.849 +5935,2025-03-07T17:41:11.573965-08:00,1011.8156127929688,10.73614,10736.14 +5936,2025-03-07T17:41:22.308943-08:00,1011.7725830078125,10.734978,10734.978 +5937,2025-03-07T17:41:33.039750-08:00,1011.8118896484375,10.730807,10730.807 +5938,2025-03-07T17:41:43.779757-08:00,1011.80517578125,10.740007,10740.007 +5939,2025-03-07T17:41:54.524953-08:00,1011.7999877929688,10.745196,10745.196 +5940,2025-03-07T17:42:05.252950-08:00,1011.8046875,10.727997,10727.997 +5941,2025-03-07T17:42:15.994278-08:00,1011.8292236328125,10.741328,10741.328 +5942,2025-03-07T17:42:26.736754-08:00,1011.810791015625,10.742476,10742.476 +5943,2025-03-07T17:42:37.466750-08:00,1011.80078125,10.729996,10729.996 +5944,2025-03-07T17:42:48.209751-08:00,1011.797119140625,10.743001,10743.001 +5945,2025-03-07T17:42:58.945857-08:00,1011.80029296875,10.736106,10736.106 +5946,2025-03-07T17:43:09.683003-08:00,1011.830078125,10.737146,10737.146 +5947,2025-03-07T17:43:20.415751-08:00,1011.8065795898438,10.732748,10732.748 +5948,2025-03-07T17:43:31.159746-08:00,1011.7965698242188,10.743995,10743.995 +5949,2025-03-07T17:43:41.900155-08:00,1011.789794921875,10.740409,10740.409 +5950,2025-03-07T17:43:52.640844-08:00,1011.7566528320312,10.740689,10740.689 +5951,2025-03-07T17:44:03.377968-08:00,1011.779296875,10.737124,10737.124 +5952,2025-03-07T17:44:14.112922-08:00,1011.7736206054688,10.734954,10734.954 +5953,2025-03-07T17:44:24.859190-08:00,1011.771728515625,10.746268,10746.268 +5954,2025-03-07T17:44:35.590748-08:00,1011.7650146484375,10.731558,10731.558 +5955,2025-03-07T17:44:46.333942-08:00,1011.7806396484375,10.743194,10743.194 +5956,2025-03-07T17:44:57.067751-08:00,1011.80517578125,10.733809,10733.809 +5957,2025-03-07T17:45:07.801394-08:00,1011.783447265625,10.733643,10733.643 +5958,2025-03-07T17:45:18.547559-08:00,1011.7733764648438,10.746165,10746.165 +5959,2025-03-07T17:45:29.288775-08:00,1011.794189453125,10.741216,10741.216 +5960,2025-03-07T17:45:40.023792-08:00,1011.7893676757812,10.735017,10735.017 +5961,2025-03-07T17:45:50.768870-08:00,1011.7723999023438,10.745078,10745.078 +5962,2025-03-07T17:46:01.513780-08:00,1011.775634765625,10.74491,10744.91 +5963,2025-03-07T17:46:12.246943-08:00,1011.76904296875,10.733163,10733.163 +5964,2025-03-07T17:46:22.987009-08:00,1011.7619018554688,10.740066,10740.066 +5965,2025-03-07T17:46:33.730599-08:00,1011.76513671875,10.74359,10743.59 +5966,2025-03-07T17:46:44.463748-08:00,1011.76171875,10.733149,10733.149 +5967,2025-03-07T17:46:55.200350-08:00,1011.76318359375,10.736602,10736.602 +5968,2025-03-07T17:47:05.946082-08:00,1011.76611328125,10.745732,10745.732 +5969,2025-03-07T17:47:16.684829-08:00,1011.7693481445312,10.738747,10738.747 +5970,2025-03-07T17:47:27.421213-08:00,1011.7494506835938,10.736384,10736.384 +5971,2025-03-07T17:47:38.165923-08:00,1011.7642211914062,10.74471,10744.71 +5972,2025-03-07T17:47:48.906778-08:00,1011.7608032226562,10.740855,10740.855 +5973,2025-03-07T17:47:59.646876-08:00,1011.740966796875,10.740098,10740.098 +5974,2025-03-07T17:48:10.390957-08:00,1011.7474975585938,10.744081,10744.081 +5975,2025-03-07T17:48:21.130825-08:00,1011.7276611328125,10.739868,10739.868 +5976,2025-03-07T17:48:31.878811-08:00,1011.7423706054688,10.747986,10747.986 +5977,2025-03-07T17:48:42.619954-08:00,1011.7078247070312,10.741143,10741.143 +5978,2025-03-07T17:48:53.357768-08:00,1011.6959228515625,10.737814,10737.814 +5979,2025-03-07T17:49:04.101145-08:00,1011.7262573242188,10.743377,10743.377 +5980,2025-03-07T17:49:14.837796-08:00,1011.7045288085938,10.736651,10736.651 +5981,2025-03-07T17:49:25.587563-08:00,1011.7078247070312,10.749767,10749.767 +5982,2025-03-07T17:49:36.322747-08:00,1011.7178344726562,10.735184,10735.184 +5983,2025-03-07T17:49:47.062750-08:00,1011.706298828125,10.740003,10740.003 +5984,2025-03-07T17:49:57.804751-08:00,1011.706298828125,10.742001,10742.001 +5985,2025-03-07T17:50:08.549748-08:00,1011.69970703125,10.744997,10744.997 +5986,2025-03-07T17:50:19.287929-08:00,1011.701171875,10.738181,10738.181 +5987,2025-03-07T17:50:30.024201-08:00,1011.6798706054688,10.736272,10736.272 +5988,2025-03-07T17:50:40.764769-08:00,1011.6864013671875,10.740568,10740.568 +5989,2025-03-07T17:50:51.503764-08:00,1011.6680297851562,10.738995,10738.995 +5990,2025-03-07T17:51:02.245955-08:00,1011.6845092773438,10.742191,10742.191 +5991,2025-03-07T17:51:12.984739-08:00,1011.6845092773438,10.738784,10738.784 +5992,2025-03-07T17:51:23.722062-08:00,1011.6646728515625,10.737323,10737.323 +5993,2025-03-07T17:51:34.468765-08:00,1011.6595458984375,10.746703,10746.703 +5994,2025-03-07T17:51:45.200955-08:00,1011.6609497070312,10.73219,10732.19 +5995,2025-03-07T17:51:55.945745-08:00,1011.657958984375,10.74479,10744.79 +5996,2025-03-07T17:52:06.686744-08:00,1011.6779174804688,10.740999,10740.999 +5997,2025-03-07T17:52:17.417812-08:00,1011.6495971679688,10.731068,10731.068 +5998,2025-03-07T17:52:28.095410-08:00,1011.65283203125,10.677598,10677.598 +5999,2025-03-07T17:52:38.833739-08:00,1011.6629028320312,10.738329,10738.329 +6000,2025-03-07T17:52:49.575439-08:00,1011.6629028320312,10.7417,10741.7 +6001,2025-03-07T17:53:00.309411-08:00,1011.6599731445312,10.733972,10733.972 +6002,2025-03-07T17:53:11.055481-08:00,1011.6415405273438,10.74607,10746.07 +6003,2025-03-07T17:53:21.793600-08:00,1011.64013671875,10.738119,10738.119 +6004,2025-03-07T17:53:32.526494-08:00,1011.6317138671875,10.732894,10732.894 +6005,2025-03-07T17:53:43.267622-08:00,1011.6533813476562,10.741128,10741.128 +6006,2025-03-07T17:53:53.998627-08:00,1011.6533813476562,10.731005,10731.005 +6007,2025-03-07T17:54:04.739419-08:00,1011.6282958984375,10.740792,10740.792 +6008,2025-03-07T17:54:15.476408-08:00,1011.65625,10.736989,10736.989 +6009,2025-03-07T17:54:26.207600-08:00,1011.6429443359375,10.731192,10731.192 +6010,2025-03-07T17:54:36.942747-08:00,1011.654296875,10.735147,10735.147 +6011,2025-03-07T17:54:47.682415-08:00,1011.646240234375,10.739668,10739.668 +6012,2025-03-07T17:54:58.418413-08:00,1011.6514282226562,10.735998,10735.998 +6013,2025-03-07T17:55:09.157586-08:00,1011.654296875,10.739173,10739.173 +6014,2025-03-07T17:55:19.888080-08:00,1011.646240234375,10.730494,10730.494 +6015,2025-03-07T17:55:30.629413-08:00,1011.642822265625,10.741333,10741.333 +6016,2025-03-07T17:55:41.365439-08:00,1011.6693725585938,10.736026,10736.026 +6017,2025-03-07T17:55:52.099407-08:00,1011.6693725585938,10.733968,10733.968 +6018,2025-03-07T17:56:02.829797-08:00,1011.644287109375,10.73039,10730.39 +6019,2025-03-07T17:56:13.572439-08:00,1011.644287109375,10.742642,10742.642 +6020,2025-03-07T17:56:24.307621-08:00,1011.6589965820312,10.735182,10735.182 +6021,2025-03-07T17:56:35.046391-08:00,1011.6589965820312,10.73877,10738.77 +6022,2025-03-07T17:56:45.780854-08:00,1011.6707763671875,10.734463,10734.463 +6023,2025-03-07T17:56:56.518712-08:00,1011.6707763671875,10.737858,10737.858 +6024,2025-03-07T17:57:07.253602-08:00,1011.692138671875,10.73489,10734.89 +6025,2025-03-07T17:57:17.991459-08:00,1011.6754760742188,10.737857,10737.857 +6026,2025-03-07T17:57:28.724632-08:00,1011.6589965820312,10.733173,10733.173 +6027,2025-03-07T17:57:39.471537-08:00,1011.6656494140625,10.746905,10746.905 +6028,2025-03-07T17:57:50.208570-08:00,1011.645751953125,10.737033,10737.033 +6029,2025-03-07T17:58:00.937527-08:00,1011.6906127929688,10.728957,10728.957 +6030,2025-03-07T17:58:11.676626-08:00,1011.7039184570312,10.739099,10739.099 +6031,2025-03-07T17:58:22.420409-08:00,1011.6807861328125,10.743783,10743.783 +6032,2025-03-07T17:58:33.151719-08:00,1011.6741943359375,10.73131,10731.31 +6033,2025-03-07T17:58:43.889672-08:00,1011.6827392578125,10.737953,10737.953 +6034,2025-03-07T17:58:54.627409-08:00,1011.6959228515625,10.737737,10737.737 +6035,2025-03-07T17:59:05.366411-08:00,1011.6945190429688,10.739002,10739.002 +6036,2025-03-07T17:59:16.102412-08:00,1011.6846923828125,10.736001,10736.001 +6037,2025-03-07T17:59:26.844562-08:00,1011.7178344726562,10.74215,10742.15 +6038,2025-03-07T17:59:37.581598-08:00,1011.709716796875,10.737036,10737.036 +6039,2025-03-07T17:59:48.314201-08:00,1011.7281494140625,10.732603,10732.603 +6040,2025-03-07T17:59:59.046818-08:00,1011.7197875976562,10.732617,10732.617 +6041,2025-03-07T18:00:09.784595-08:00,1011.7153930664062,10.737777,10737.777 +6042,2025-03-07T18:00:20.516410-08:00,1011.7268676757812,10.731815,10731.815 +6043,2025-03-07T18:00:31.260925-08:00,1011.7418823242188,10.744515,10744.515 +6044,2025-03-07T18:00:41.995449-08:00,1011.7637329101562,10.734524,10734.524 +6045,2025-03-07T18:00:52.724451-08:00,1011.7438354492188,10.729002,10729.002 +6046,2025-03-07T18:01:03.457854-08:00,1011.7471923828125,10.733403,10733.403 +6047,2025-03-07T18:01:14.195430-08:00,1011.759033203125,10.737576,10737.576 +6048,2025-03-07T18:01:24.930716-08:00,1011.7921142578125,10.735286,10735.286 +6049,2025-03-07T18:01:35.668058-08:00,1011.76904296875,10.737342,10737.342 +6050,2025-03-07T18:01:46.394654-08:00,1011.777099609375,10.726596,10726.596 +6051,2025-03-07T18:01:57.133408-08:00,1011.7954711914062,10.738754,10738.754 +6052,2025-03-07T18:02:07.865167-08:00,1011.7954711914062,10.731759,10731.759 +6053,2025-03-07T18:02:18.603596-08:00,1011.820556640625,10.738429,10738.429 +6054,2025-03-07T18:02:29.334588-08:00,1011.8418579101562,10.730992,10730.992 +6055,2025-03-07T18:02:40.077462-08:00,1011.820556640625,10.742874,10742.874 +6056,2025-03-07T18:02:50.804440-08:00,1011.8504638671875,10.726978,10726.978 +6057,2025-03-07T18:03:01.542672-08:00,1011.8273315429688,10.738232,10738.232 +6058,2025-03-07T18:03:12.284600-08:00,1011.8538208007812,10.741928,10741.928 +6059,2025-03-07T18:03:23.016891-08:00,1011.8604736328125,10.732291,10732.291 +6060,2025-03-07T18:03:33.750436-08:00,1011.9019775390625,10.733545,10733.545 +6061,2025-03-07T18:03:44.488474-08:00,1011.885498046875,10.738038,10738.038 +6062,2025-03-07T18:03:55.221460-08:00,1011.8641357421875,10.732986,10732.986 +6063,2025-03-07T18:04:05.959701-08:00,1011.8953247070312,10.738241,10738.241 +6064,2025-03-07T18:04:16.696587-08:00,1011.890625,10.736886,10736.886 +6065,2025-03-07T18:04:27.422628-08:00,1011.9039306640625,10.726041,10726.041 +6066,2025-03-07T18:04:38.160783-08:00,1011.8859252929688,10.738155,10738.155 +6067,2025-03-07T18:04:48.898578-08:00,1011.897705078125,10.737795,10737.795 +6068,2025-03-07T18:04:59.629409-08:00,1011.8760986328125,10.730831,10730.831 +6069,2025-03-07T18:05:10.363618-08:00,1011.89453125,10.734209,10734.209 +6070,2025-03-07T18:05:21.101407-08:00,1011.9129638671875,10.737789,10737.789 +6071,2025-03-07T18:05:31.835297-08:00,1011.904541015625,10.73389,10733.89 +6072,2025-03-07T18:05:42.572573-08:00,1011.9442138671875,10.737276,10737.276 +6073,2025-03-07T18:05:53.304635-08:00,1011.9229736328125,10.732062,10732.062 +6074,2025-03-07T18:06:04.045544-08:00,1011.916259765625,10.740909,10740.909 +6075,2025-03-07T18:06:14.777797-08:00,1011.908203125,10.732253,10732.253 +6076,2025-03-07T18:06:25.507408-08:00,1011.9229736328125,10.729611,10729.611 +6077,2025-03-07T18:06:36.245708-08:00,1011.9295043945312,10.7383,10738.3 +6078,2025-03-07T18:06:46.978681-08:00,1011.9494018554688,10.732973,10732.973 +6079,2025-03-07T18:06:57.715603-08:00,1011.95751953125,10.736922,10736.922 +6080,2025-03-07T18:07:08.447437-08:00,1012.009033203125,10.731834,10731.834 +6081,2025-03-07T18:07:19.190410-08:00,1011.9840087890625,10.742973,10742.973 +6082,2025-03-07T18:07:29.926409-08:00,1012.0023193359375,10.735999,10735.999 +6083,2025-03-07T18:07:40.657590-08:00,1011.9744262695312,10.731181,10731.181 +6084,2025-03-07T18:07:51.395181-08:00,1011.9640502929688,10.737591,10737.591 +6085,2025-03-07T18:08:02.132410-08:00,1011.962646484375,10.737229,10737.229 +6086,2025-03-07T18:08:12.864408-08:00,1011.9707641601562,10.731998,10731.998 +6087,2025-03-07T18:08:23.605510-08:00,1012.015625,10.741102,10741.102 +6088,2025-03-07T18:08:34.336290-08:00,1012.0038452148438,10.73078,10730.78 +6089,2025-03-07T18:08:45.080430-08:00,1012.0354614257812,10.74414,10744.14 +6090,2025-03-07T18:08:55.808625-08:00,1012.0057983398438,10.728195,10728.195 +6091,2025-03-07T18:09:06.542382-08:00,1012.0014038085938,10.733757,10733.757 +6092,2025-03-07T18:09:17.282824-08:00,1012.0278930664062,10.740442,10740.442 +6093,2025-03-07T18:09:28.012408-08:00,1012.03271484375,10.729584,10729.584 +6094,2025-03-07T18:09:38.747439-08:00,1012.0165405273438,10.735031,10735.031 +6095,2025-03-07T18:09:49.489410-08:00,1012.02001953125,10.741971,10741.971 +6096,2025-03-07T18:10:00.227513-08:00,1012.0232543945312,10.738103,10738.103 +6097,2025-03-07T18:10:10.963523-08:00,1012.0232543945312,10.73601,10736.01 +6098,2025-03-07T18:10:21.696477-08:00,1012.0252075195312,10.732954,10732.954 +6099,2025-03-07T18:10:32.432415-08:00,1012.0535278320312,10.735938,10735.938 +6100,2025-03-07T18:10:43.166087-08:00,1012.0435791015625,10.733672,10733.672 +6101,2025-03-07T18:10:53.900428-08:00,1012.045654296875,10.734341,10734.341 +6102,2025-03-07T18:11:04.639940-08:00,1012.058837890625,10.739512,10739.512 +6103,2025-03-07T18:11:15.381409-08:00,1012.055908203125,10.741469,10741.469 +6104,2025-03-07T18:11:26.117409-08:00,1012.0408325195312,10.736,10736.0 +6105,2025-03-07T18:11:36.854618-08:00,1012.0445556640625,10.737209,10737.209 +6106,2025-03-07T18:11:47.587842-08:00,1012.0445556640625,10.733224,10733.224 +6107,2025-03-07T18:11:58.327643-08:00,1012.0361938476562,10.739801,10739.801 +6108,2025-03-07T18:12:09.057663-08:00,1012.0361938476562,10.73002,10730.02 +6109,2025-03-07T18:12:19.795582-08:00,1012.0511474609375,10.737919,10737.919 +6110,2025-03-07T18:12:30.535617-08:00,1012.0281372070312,10.740035,10740.035 +6111,2025-03-07T18:12:41.263480-08:00,1012.0427856445312,10.727863,10727.863 +6112,2025-03-07T18:12:52.006408-08:00,1012.072998046875,10.742928,10742.928 +6113,2025-03-07T18:13:02.735439-08:00,1012.048095703125,10.729031,10729.031 +6114,2025-03-07T18:13:13.473614-08:00,1012.0546875,10.738175,10738.175 +6115,2025-03-07T18:13:24.213557-08:00,1012.0631103515625,10.739943,10739.943 +6116,2025-03-07T18:13:34.948411-08:00,1012.0462646484375,10.734854,10734.854 +6117,2025-03-07T18:13:45.671578-08:00,1012.064697265625,10.723167,10723.167 +6118,2025-03-07T18:13:56.407005-08:00,1012.0499877929688,10.735427,10735.427 +6119,2025-03-07T18:14:07.146568-08:00,1012.0599975585938,10.739563,10739.563 +6120,2025-03-07T18:14:17.885620-08:00,1012.0518798828125,10.739052,10739.052 +6121,2025-03-07T18:14:28.617412-08:00,1012.0617065429688,10.731792,10731.792 +6122,2025-03-07T18:14:39.353586-08:00,1012.0386962890625,10.736174,10736.174 +6123,2025-03-07T18:14:50.088560-08:00,1012.0504760742188,10.734974,10734.974 +6124,2025-03-07T18:15:00.821548-08:00,1012.0386962890625,10.732988,10732.988 +6125,2025-03-07T18:15:11.558265-08:00,1012.0339965820312,10.736717,10736.717 +6126,2025-03-07T18:15:22.292896-08:00,1012.0339965820312,10.734631,10734.631 +6127,2025-03-07T18:15:33.036621-08:00,1012.0457763671875,10.743725,10743.725 +6128,2025-03-07T18:15:43.763410-08:00,1012.020751953125,10.726789,10726.789 +6129,2025-03-07T18:15:54.503407-08:00,1012.04248046875,10.739997,10739.997 +6130,2025-03-07T18:16:05.239410-08:00,1012.0292358398438,10.736003,10736.003 +6131,2025-03-07T18:16:15.974738-08:00,1012.0476684570312,10.735328,10735.328 +6132,2025-03-07T18:16:26.713675-08:00,1012.05419921875,10.738937,10738.937 +6133,2025-03-07T18:16:37.446818-08:00,1012.0345458984375,10.733143,10733.143 +6134,2025-03-07T18:16:48.186434-08:00,1012.0264282226562,10.739616,10739.616 +6135,2025-03-07T18:16:58.928443-08:00,1012.01171875,10.742009,10742.009 +6136,2025-03-07T18:17:09.666214-08:00,1012.0250244140625,10.737771,10737.771 +6137,2025-03-07T18:17:20.404926-08:00,1012.003662109375,10.738712,10738.712 +6138,2025-03-07T18:17:31.139410-08:00,1012.0070190429688,10.734484,10734.484 +6139,2025-03-07T18:17:41.876404-08:00,1011.9938354492188,10.736994,10736.994 +6140,2025-03-07T18:17:52.607433-08:00,1012.00048828125,10.731029,10731.029 +6141,2025-03-07T18:18:03.349582-08:00,1012.0303344726562,10.742149,10742.149 +6142,2025-03-07T18:18:14.082477-08:00,1012.0089111328125,10.732895,10732.895 +6143,2025-03-07T18:18:24.817758-08:00,1011.9824829101562,10.735281,10735.281 +6144,2025-03-07T18:18:35.550630-08:00,1011.974365234375,10.732872,10732.872 +6145,2025-03-07T18:18:46.285144-08:00,1012.0123291015625,10.734514,10734.514 +6146,2025-03-07T18:18:57.020574-08:00,1011.9679565429688,10.73543,10735.43 +6147,2025-03-07T18:19:07.752415-08:00,1011.9650268554688,10.731841,10731.841 +6148,2025-03-07T18:19:18.499413-08:00,1011.9715576171875,10.746998,10746.998 +6149,2025-03-07T18:19:29.229608-08:00,1011.9683837890625,10.730195,10730.195 +6150,2025-03-07T18:19:39.962611-08:00,1011.9835205078125,10.733003,10733.003 +6151,2025-03-07T18:19:50.700485-08:00,1011.9967041015625,10.737874,10737.874 +6152,2025-03-07T18:20:01.433445-08:00,1011.960693359375,10.73296,10732.96 +6153,2025-03-07T18:20:12.171173-08:00,1011.97216796875,10.737728,10737.728 +6154,2025-03-07T18:20:22.901554-08:00,1011.9957275390625,10.730381,10730.381 +6155,2025-03-07T18:20:33.641412-08:00,1011.9826049804688,10.739858,10739.858 +6156,2025-03-07T18:20:44.385411-08:00,1011.9285888671875,10.743999,10743.999 +6157,2025-03-07T18:20:55.115545-08:00,1011.965087890625,10.730134,10730.134 +6158,2025-03-07T18:21:05.851612-08:00,1011.9324340820312,10.736067,10736.067 +6159,2025-03-07T18:21:16.591436-08:00,1011.936279296875,10.739824,10739.824 +6160,2025-03-07T18:21:27.326505-08:00,1011.9696655273438,10.735069,10735.069 +6161,2025-03-07T18:21:38.063589-08:00,1011.9584350585938,10.737084,10737.084 +6162,2025-03-07T18:21:48.798615-08:00,1011.9636840820312,10.735026,10735.026 +6163,2025-03-07T18:21:59.533701-08:00,1011.95263671875,10.735086,10735.086 +6164,2025-03-07T18:22:10.259612-08:00,1012.005615234375,10.725911,10725.911 +6165,2025-03-07T18:22:20.996560-08:00,1011.9729614257812,10.736948,10736.948 +6166,2025-03-07T18:22:31.732910-08:00,1011.9679565429688,10.73635,10736.35 +6167,2025-03-07T18:22:42.460604-08:00,1011.9735717773438,10.727694,10727.694 +6168,2025-03-07T18:22:53.201623-08:00,1011.9717407226562,10.741019,10741.019 +6169,2025-03-07T18:23:03.940415-08:00,1012.0018920898438,10.738792,10738.792 +6170,2025-03-07T18:23:14.676815-08:00,1011.9920043945312,10.7364,10736.4 +6171,2025-03-07T18:23:25.410227-08:00,1012.01513671875,10.733412,10733.412 +6172,2025-03-07T18:23:36.147746-08:00,1012.01513671875,10.737519,10737.519 +6173,2025-03-07T18:23:46.882555-08:00,1012.015625,10.734809,10734.809 +6174,2025-03-07T18:23:57.614425-08:00,1012.0259399414062,10.73187,10731.87 +6175,2025-03-07T18:24:08.343477-08:00,1012.0145263671875,10.729052,10729.052 +6176,2025-03-07T18:24:19.071406-08:00,1012.0260009765625,10.727929,10727.929 +6177,2025-03-07T18:24:29.808611-08:00,1012.0098266601562,10.737205,10737.205 +6178,2025-03-07T18:24:40.541034-08:00,1011.994873046875,10.732423,10732.423 +6179,2025-03-07T18:24:51.272730-08:00,1012.0099487304688,10.731696,10731.696 +6180,2025-03-07T18:25:02.006404-08:00,1012.02978515625,10.733674,10733.674 +6181,2025-03-07T18:25:12.738604-08:00,1012.0614013671875,10.7322,10732.2 +6182,2025-03-07T18:25:23.470518-08:00,1012.033447265625,10.731914,10731.914 +6183,2025-03-07T18:25:34.206413-08:00,1012.0399780273438,10.735895,10735.895 +6184,2025-03-07T18:25:44.934737-08:00,1012.0779418945312,10.728324,10728.324 +6185,2025-03-07T18:25:55.675578-08:00,1012.056640625,10.740841,10740.841 +6186,2025-03-07T18:26:06.408605-08:00,1012.05810546875,10.733027,10733.027 +6187,2025-03-07T18:26:17.144414-08:00,1012.0845336914062,10.735809,10735.809 +6188,2025-03-07T18:26:27.883408-08:00,1012.1013793945312,10.738994,10738.994 +6189,2025-03-07T18:26:38.616037-08:00,1012.0896606445312,10.732629,10732.629 +6190,2025-03-07T18:26:49.351800-08:00,1012.1132202148438,10.735763,10735.763 +6191,2025-03-07T18:27:00.092411-08:00,1012.1132202148438,10.740611,10740.611 +6192,2025-03-07T18:27:10.829481-08:00,1012.1528930664062,10.73707,10737.07 +6193,2025-03-07T18:27:21.553593-08:00,1012.1312255859375,10.724112,10724.112 +6194,2025-03-07T18:27:32.293716-08:00,1012.1099243164062,10.740123,10740.123 +6195,2025-03-07T18:27:43.025407-08:00,1012.1429443359375,10.731691,10731.691 +6196,2025-03-07T18:27:53.768605-08:00,1012.1464233398438,10.743198,10743.198 +6197,2025-03-07T18:28:04.501410-08:00,1012.1464233398438,10.732805,10732.805 +6198,2025-03-07T18:28:15.234554-08:00,1012.1727905273438,10.733144,10733.144 +6199,2025-03-07T18:28:25.974484-08:00,1012.1845092773438,10.73993,10739.93 +6200,2025-03-07T18:28:36.704610-08:00,1012.1698608398438,10.730126,10730.126 +6201,2025-03-07T18:28:47.442734-08:00,1012.1945190429688,10.738124,10738.124 +6202,2025-03-07T18:28:58.178586-08:00,1012.176513671875,10.735852,10735.852 +6203,2025-03-07T18:29:08.905406-08:00,1012.1878662109375,10.72682,10726.82 +6204,2025-03-07T18:29:19.642411-08:00,1012.2011108398438,10.737005,10737.005 +6205,2025-03-07T18:29:30.377735-08:00,1012.2062377929688,10.735324,10735.324 +6206,2025-03-07T18:29:41.108727-08:00,1012.207763671875,10.730992,10730.992 +6207,2025-03-07T18:29:51.844776-08:00,1012.2228393554688,10.736049,10736.049 +6208,2025-03-07T18:30:02.576595-08:00,1012.2293701171875,10.731819,10731.819 +6209,2025-03-07T18:30:13.307633-08:00,1012.250732421875,10.731038,10731.038 +6210,2025-03-07T18:30:24.034405-08:00,1012.2540893554688,10.726772,10726.772 +6211,2025-03-07T18:30:34.764411-08:00,1012.28564453125,10.730006,10730.006 +6212,2025-03-07T18:30:56.231739-08:00,1012.292236328125,21.467328,21467.328 +6213,2025-03-07T18:31:06.965616-08:00,1012.295654296875,10.733877,10733.877 +6214,2025-03-07T18:31:17.692594-08:00,1012.295654296875,10.726978,10726.978 +6215,2025-03-07T18:31:28.418488-08:00,1012.3206176757812,10.725894,10725.894 +6216,2025-03-07T18:31:39.150410-08:00,1012.3021850585938,10.731922,10731.922 +6217,2025-03-07T18:31:49.887592-08:00,1012.3286743164062,10.737182,10737.182 +6218,2025-03-07T18:32:00.613413-08:00,1012.3370361328125,10.725821,10725.821 +6219,2025-03-07T18:32:11.351164-08:00,1012.308837890625,10.737751,10737.751 +6220,2025-03-07T18:32:22.083592-08:00,1012.3106079101562,10.732428,10732.428 +6221,2025-03-07T18:32:32.813608-08:00,1012.3436889648438,10.730016,10730.016 +6222,2025-03-07T18:32:43.550407-08:00,1012.3451538085938,10.736799,10736.799 +6223,2025-03-07T18:32:54.277410-08:00,1012.3238525390625,10.727003,10727.003 +6224,2025-03-07T18:33:05.015574-08:00,1012.366455078125,10.738164,10738.164 +6225,2025-03-07T18:33:15.744442-08:00,1012.3436889648438,10.728868,10728.868 +6226,2025-03-07T18:33:26.475673-08:00,1012.3370361328125,10.731231,10731.231 +6227,2025-03-07T18:33:37.211813-08:00,1012.364990234375,10.73614,10736.14 +6228,2025-03-07T18:33:47.945106-08:00,1012.3701782226562,10.733293,10733.293 +6229,2025-03-07T18:33:58.677405-08:00,1012.3616943359375,10.732299,10732.299 +6230,2025-03-07T18:34:09.409745-08:00,1012.3470458984375,10.73234,10732.34 +6231,2025-03-07T18:34:20.140292-08:00,1012.3800659179688,10.730547,10730.547 +6232,2025-03-07T18:34:30.875622-08:00,1012.381591796875,10.73533,10735.33 +6233,2025-03-07T18:34:41.610406-08:00,1012.407958984375,10.734784,10734.784 +6234,2025-03-07T18:34:52.343754-08:00,1012.4098510742188,10.733348,10733.348 +6235,2025-03-07T18:35:03.073469-08:00,1012.38671875,10.729715,10729.715 +6236,2025-03-07T18:35:13.812412-08:00,1012.407958984375,10.738943,10738.943 +6237,2025-03-07T18:35:24.537627-08:00,1012.4476318359375,10.725215,10725.215 +6238,2025-03-07T18:35:35.279580-08:00,1012.4212646484375,10.741953,10741.953 +6239,2025-03-07T18:35:46.011723-08:00,1012.4031982421875,10.732143,10732.143 +6240,2025-03-07T18:35:56.747653-08:00,1012.4112548828125,10.73593,10735.93 +6241,2025-03-07T18:36:07.471464-08:00,1012.4098510742188,10.723811,10723.811 +6242,2025-03-07T18:36:18.210048-08:00,1012.439208984375,10.738584,10738.584 +6243,2025-03-07T18:36:28.938407-08:00,1012.426025390625,10.728359,10728.359 +6244,2025-03-07T18:36:39.670618-08:00,1012.4326782226562,10.732211,10732.211 +6245,2025-03-07T18:36:50.403956-08:00,1012.4179077148438,10.733338,10733.338 +6246,2025-03-07T18:37:01.142431-08:00,1012.426025390625,10.738475,10738.475 +6247,2025-03-07T18:37:11.866431-08:00,1012.426025390625,10.724,10724.0 +6248,2025-03-07T18:37:22.602666-08:00,1012.4542236328125,10.736235,10736.235 +6249,2025-03-07T18:37:33.339186-08:00,1012.4310913085938,10.73652,10736.52 +6250,2025-03-07T18:37:44.071557-08:00,1012.426025390625,10.732371,10732.371 +6251,2025-03-07T18:37:54.798588-08:00,1012.4163818359375,10.727031,10727.031 +6252,2025-03-07T18:38:05.530909-08:00,1012.4197387695312,10.732321,10732.321 +6253,2025-03-07T18:38:16.266469-08:00,1012.4212646484375,10.73556,10735.56 +6254,2025-03-07T18:38:27.002439-08:00,1012.4542846679688,10.73597,10735.97 +6255,2025-03-07T18:38:37.732624-08:00,1012.4367065429688,10.730185,10730.185 +6256,2025-03-07T18:38:48.463623-08:00,1012.4149780273438,10.730999,10730.999 +6257,2025-03-07T18:38:59.197431-08:00,1012.4498291015625,10.733808,10733.808 +6258,2025-03-07T18:39:09.919593-08:00,1012.3904418945312,10.722162,10722.162 +6259,2025-03-07T18:39:20.648614-08:00,1012.4120483398438,10.729021,10729.021 +6260,2025-03-07T18:39:31.384410-08:00,1012.4664306640625,10.735796,10735.796 +6261,2025-03-07T18:39:42.110594-08:00,1012.431884765625,10.726184,10726.184 +6262,2025-03-07T18:39:52.837618-08:00,1012.4103393554688,10.727024,10727.024 +6263,2025-03-07T18:40:03.564411-08:00,1012.431884765625,10.726793,10726.793 +6264,2025-03-07T18:40:14.304580-08:00,1012.4715576171875,10.740169,10740.169 +6265,2025-03-07T18:40:25.024404-08:00,1012.418701171875,10.719824,10719.824 +6266,2025-03-07T18:40:35.759568-08:00,1012.4598388671875,10.735164,10735.164 +6267,2025-03-07T18:40:46.488681-08:00,1012.446533203125,10.729113,10729.113 +6268,2025-03-07T18:40:57.211554-08:00,1012.4334106445312,10.722873,10722.873 +6269,2025-03-07T18:41:07.943143-08:00,1012.420166015625,10.731589,10731.589 +6270,2025-03-07T18:41:18.673430-08:00,1012.4266967773438,10.730287,10730.287 +6271,2025-03-07T18:41:29.398439-08:00,1012.434814453125,10.725009,10725.009 +6272,2025-03-07T18:41:40.136806-08:00,1012.434814453125,10.738367,10738.367 +6273,2025-03-07T18:41:50.866615-08:00,1012.4432983398438,10.729809,10729.809 +6274,2025-03-07T18:42:01.593468-08:00,1012.466064453125,10.726853,10726.853 +6275,2025-03-07T18:42:12.325410-08:00,1012.4299926757812,10.731942,10731.942 +6276,2025-03-07T18:42:23.051789-08:00,1012.4447631835938,10.726379,10726.379 +6277,2025-03-07T18:42:33.782539-08:00,1012.4579467773438,10.73075,10730.75 +6278,2025-03-07T18:42:44.513211-08:00,1012.4396362304688,10.730672,10730.672 +6279,2025-03-07T18:42:55.238674-08:00,1012.4542846679688,10.725463,10725.463 +6280,2025-03-07T18:43:05.971409-08:00,1012.4462280273438,10.732735,10732.735 +6281,2025-03-07T18:43:16.694623-08:00,1012.4495239257812,10.723214,10723.214 +6282,2025-03-07T18:43:27.427609-08:00,1012.4310913085938,10.732986,10732.986 +6283,2025-03-07T18:43:38.150627-08:00,1012.436279296875,10.723018,10723.018 +6284,2025-03-07T18:43:48.884593-08:00,1012.4476318359375,10.733966,10733.966 +6285,2025-03-07T18:43:59.607738-08:00,1012.424560546875,10.723145,10723.145 +6286,2025-03-07T18:44:10.345410-08:00,1012.424560546875,10.737672,10737.672 +6287,2025-03-07T18:44:21.064403-08:00,1012.4476318359375,10.718993,10718.993 +6288,2025-03-07T18:44:31.795078-08:00,1012.439208984375,10.730675,10730.675 +6289,2025-03-07T18:44:42.523841-08:00,1012.4590454101562,10.728763,10728.763 +6290,2025-03-07T18:44:53.253474-08:00,1012.426025390625,10.729633,10729.633 +6291,2025-03-07T18:45:03.977424-08:00,1012.4179077148438,10.72395,10723.95 +6292,2025-03-07T18:45:14.705407-08:00,1012.4608764648438,10.727983,10727.983 +6293,2025-03-07T18:45:25.427594-08:00,1012.4476318359375,10.722187,10722.187 +6294,2025-03-07T18:45:36.161622-08:00,1012.4490356445312,10.734028,10734.028 +6295,2025-03-07T18:45:46.884650-08:00,1012.4873657226562,10.723028,10723.028 +6296,2025-03-07T18:45:57.609557-08:00,1012.4410400390625,10.724907,10724.907 +6297,2025-03-07T18:46:08.336405-08:00,1012.439208984375,10.726848,10726.848 +6298,2025-03-07T18:46:19.058584-08:00,1012.4656372070312,10.722179,10722.179 +6299,2025-03-07T18:46:29.782649-08:00,1012.4575805664062,10.724065,10724.065 +6300,2025-03-07T18:46:40.513478-08:00,1012.467529296875,10.730829,10730.829 +6301,2025-03-07T18:46:51.249447-08:00,1012.480712890625,10.735969,10735.969 +6302,2025-03-07T18:47:01.970402-08:00,1012.5020141601562,10.720955,10720.955 +6303,2025-03-07T18:47:12.706479-08:00,1012.4921875,10.736077,10736.077 +6304,2025-03-07T18:47:23.424428-08:00,1012.4656372070312,10.717949,10717.949 +6305,2025-03-07T18:47:34.157402-08:00,1012.4723510742188,10.732974,10732.974 +6306,2025-03-07T18:47:44.885439-08:00,1012.4840698242188,10.728037,10728.037 +6307,2025-03-07T18:47:55.616776-08:00,1012.4627075195312,10.731337,10731.337 +6308,2025-03-07T18:48:06.338622-08:00,1012.4575805664062,10.721846,10721.846 +6309,2025-03-07T18:48:17.073621-08:00,1012.4840698242188,10.734999,10734.999 +6310,2025-03-07T18:48:27.806521-08:00,1012.4561157226562,10.7329,10732.9 +6311,2025-03-07T18:48:38.530404-08:00,1012.4296875,10.723883,10723.883 +6312,2025-03-07T18:48:49.258580-08:00,1012.44287109375,10.728176,10728.176 +6313,2025-03-07T18:48:59.987657-08:00,1012.436279296875,10.729077,10729.077 +6314,2025-03-07T18:49:10.722408-08:00,1012.4826049804688,10.734751,10734.751 +6315,2025-03-07T18:49:21.442826-08:00,1012.4826049804688,10.720418,10720.418 +6316,2025-03-07T18:49:32.175539-08:00,1012.4212646484375,10.732713,10732.713 +6317,2025-03-07T18:49:42.908402-08:00,1012.466064453125,10.732863,10732.863 +6318,2025-03-07T18:49:53.637597-08:00,1012.5006103515625,10.729195,10729.195 +6319,2025-03-07T18:50:04.369612-08:00,1012.4528198242188,10.732015,10732.015 +6320,2025-03-07T18:50:15.100505-08:00,1012.477783203125,10.730893,10730.893 +6321,2025-03-07T18:50:25.832589-08:00,1012.4991455078125,10.732084,10732.084 +6322,2025-03-07T18:50:36.559609-08:00,1012.5109252929688,10.72702,10727.02 +6323,2025-03-07T18:50:47.286409-08:00,1012.494384765625,10.7268,10726.8 +6324,2025-03-07T18:50:58.014429-08:00,1012.5009155273438,10.72802,10728.02 +6325,2025-03-07T18:51:08.751437-08:00,1012.492919921875,10.737008,10737.008 +6326,2025-03-07T18:51:19.477617-08:00,1012.5127563476562,10.72618,10726.18 +6327,2025-03-07T18:51:30.209557-08:00,1012.5028076171875,10.73194,10731.94 +6328,2025-03-07T18:51:40.934623-08:00,1012.5310668945312,10.725066,10725.066 +6329,2025-03-07T18:51:51.653544-08:00,1012.521240234375,10.718921,10718.921 +6330,2025-03-07T18:52:02.381512-08:00,1012.5197143554688,10.727968,10727.968 +6331,2025-03-07T18:52:13.104675-08:00,1012.5046997070312,10.723163,10723.163 +6332,2025-03-07T18:52:23.928678-08:00,1012.5462646484375,10.824003,10824.003 +6333,2025-03-07T18:52:34.655332-08:00,1012.549560546875,10.726654,10726.654 +6334,2025-03-07T18:52:45.378360-08:00,1012.5480346679688,10.723028,10723.028 +6335,2025-03-07T18:52:56.108391-08:00,1012.56787109375,10.730031,10730.031 +6336,2025-03-07T18:53:06.827532-08:00,1012.5527954101562,10.719141,10719.141 +6337,2025-03-07T18:53:17.552328-08:00,1012.5631103515625,10.724796,10724.796 +6338,2025-03-07T18:53:28.285527-08:00,1012.5697021484375,10.733199,10733.199 +6339,2025-03-07T18:53:39.010543-08:00,1012.5532836914062,10.725016,10725.016 +6340,2025-03-07T18:53:49.741418-08:00,1012.5797119140625,10.730875,10730.875 +6341,2025-03-07T18:54:00.473544-08:00,1012.5701293945312,10.732126,10732.126 +6342,2025-03-07T18:54:11.206490-08:00,1012.6079711914062,10.732946,10732.946 +6343,2025-03-07T18:54:21.935331-08:00,1012.6229858398438,10.728841,10728.841 +6344,2025-03-07T18:54:32.661510-08:00,1012.6264038085938,10.726179,10726.179 +6345,2025-03-07T18:54:43.390327-08:00,1012.6196899414062,10.728817,10728.817 +6346,2025-03-07T18:54:54.120544-08:00,1012.60986328125,10.730217,10730.217 +6347,2025-03-07T18:55:04.847466-08:00,1012.6068725585938,10.726922,10726.922 +6348,2025-03-07T18:55:15.565529-08:00,1012.6825561523438,10.718063,10718.063 +6349,2025-03-07T18:55:26.295110-08:00,1012.613525390625,10.729581,10729.581 +6350,2025-03-07T18:55:37.021332-08:00,1012.6116943359375,10.726222,10726.222 +6351,2025-03-07T18:55:47.754503-08:00,1012.6763305664062,10.733171,10733.171 +6352,2025-03-07T18:55:58.479476-08:00,1012.7028198242188,10.724973,10724.973 +6353,2025-03-07T18:56:09.204331-08:00,1012.7013549804688,10.724855,10724.855 +6354,2025-03-07T18:56:19.925561-08:00,1012.6947021484375,10.72123,10721.23 +6355,2025-03-07T18:56:30.662332-08:00,1012.69140625,10.736771,10736.771 +6356,2025-03-07T18:56:41.381511-08:00,1012.7097778320312,10.719179,10719.179 +6357,2025-03-07T18:56:52.111428-08:00,1012.7112426757812,10.729917,10729.917 +6358,2025-03-07T18:57:02.839331-08:00,1012.7097778320312,10.727903,10727.903 +6359,2025-03-07T18:57:13.561366-08:00,1012.7149047851562,10.722035,10722.035 +6360,2025-03-07T18:57:24.296343-08:00,1012.713134765625,10.734977,10734.977 +6361,2025-03-07T18:57:35.019539-08:00,1012.6932983398438,10.723196,10723.196 +6362,2025-03-07T18:57:45.741331-08:00,1012.7346801757812,10.721792,10721.792 +6363,2025-03-07T18:57:56.467578-08:00,1012.7313842773438,10.726247,10726.247 +6364,2025-03-07T18:58:07.193354-08:00,1012.6984252929688,10.725776,10725.776 +6365,2025-03-07T18:58:17.922937-08:00,1012.724853515625,10.729583,10729.583 +6366,2025-03-07T18:58:28.650729-08:00,1012.7528076171875,10.727792,10727.792 +6367,2025-03-07T18:58:39.369363-08:00,1012.7726440429688,10.718634,10718.634 +6368,2025-03-07T18:58:50.099534-08:00,1012.7857666015625,10.730171,10730.171 +6369,2025-03-07T18:59:00.823398-08:00,1012.7777099609375,10.723864,10723.864 +6370,2025-03-07T18:59:11.548514-08:00,1012.7479858398438,10.725116,10725.116 +6371,2025-03-07T18:59:22.267351-08:00,1012.7645263671875,10.718837,10718.837 +6372,2025-03-07T18:59:32.991326-08:00,1012.7630615234375,10.723975,10723.975 +6373,2025-03-07T18:59:43.721408-08:00,1012.7697143554688,10.730082,10730.082 +6374,2025-03-07T18:59:54.441442-08:00,1012.76123046875,10.720034,10720.034 +6375,2025-03-07T19:00:05.162353-08:00,1012.7876586914062,10.720911,10720.911 +6376,2025-03-07T19:00:15.885331-08:00,1012.7927856445312,10.722978,10722.978 +6377,2025-03-07T19:00:26.614522-08:00,1012.7876586914062,10.729191,10729.191 +6378,2025-03-07T19:00:37.343329-08:00,1012.7993774414062,10.728807,10728.807 +6379,2025-03-07T19:00:48.059529-08:00,1012.779541015625,10.7162,10716.2 +6380,2025-03-07T19:00:58.784641-08:00,1012.8140869140625,10.725112,10725.112 +6381,2025-03-07T19:01:09.515330-08:00,1012.8140869140625,10.730689,10730.689 +6382,2025-03-07T19:01:20.233400-08:00,1012.77294921875,10.71807,10718.07 +6383,2025-03-07T19:01:30.955514-08:00,1012.7960815429688,10.722114,10722.114 +6384,2025-03-07T19:01:41.681323-08:00,1012.8126831054688,10.725809,10725.809 +6385,2025-03-07T19:01:52.407330-08:00,1012.8192138671875,10.726007,10726.007 +6386,2025-03-07T19:02:03.138440-08:00,1012.8192138671875,10.73111,10731.11 +6387,2025-03-07T19:02:13.856330-08:00,1012.8045043945312,10.71789,10717.89 +6388,2025-03-07T19:02:24.584116-08:00,1012.7979736328125,10.727786,10727.786 +6389,2025-03-07T19:02:35.306328-08:00,1012.84423828125,10.722212,10722.212 +6390,2025-03-07T19:02:46.030407-08:00,1012.8244018554688,10.724079,10724.079 +6391,2025-03-07T19:02:56.762449-08:00,1012.84423828125,10.732042,10732.042 +6392,2025-03-07T19:03:07.485331-08:00,1012.8772583007812,10.722882,10722.882 +6393,2025-03-07T19:03:18.217513-08:00,1012.8640747070312,10.732182,10732.182 +6394,2025-03-07T19:03:28.940923-08:00,1012.8507690429688,10.72341,10723.41 +6395,2025-03-07T19:03:39.665416-08:00,1012.825927734375,10.724493,10724.493 +6396,2025-03-07T19:03:50.395940-08:00,1012.8192749023438,10.730524,10730.524 +6397,2025-03-07T19:04:01.120535-08:00,1012.8175048828125,10.724595,10724.595 +6398,2025-03-07T19:04:11.849503-08:00,1012.8306884765625,10.728968,10728.968 +6399,2025-03-07T19:04:22.578331-08:00,1012.8175048828125,10.728828,10728.828 +6400,2025-03-07T19:04:33.305537-08:00,1012.8357543945312,10.727206,10727.206 +6401,2025-03-07T19:04:44.029401-08:00,1012.8457641601562,10.723864,10723.864 +6402,2025-03-07T19:04:54.759416-08:00,1012.842529296875,10.730015,10730.015 +6403,2025-03-07T19:05:05.485788-08:00,1012.867431640625,10.726372,10726.372 +6404,2025-03-07T19:05:16.209848-08:00,1012.854248046875,10.72406,10724.06 +6405,2025-03-07T19:05:26.937402-08:00,1012.8707885742188,10.727554,10727.554 +6406,2025-03-07T19:05:37.657366-08:00,1012.8590087890625,10.719964,10719.964 +6407,2025-03-07T19:05:48.380517-08:00,1012.839111328125,10.723151,10723.151 +6408,2025-03-07T19:05:59.104427-08:00,1012.799560546875,10.72391,10723.91 +6409,2025-03-07T19:06:09.837365-08:00,1012.8523559570312,10.732938,10732.938 +6410,2025-03-07T19:06:20.559235-08:00,1012.7767333984375,10.72187,10721.87 +6411,2025-03-07T19:06:31.284331-08:00,1012.8707885742188,10.725096,10725.096 +6412,2025-03-07T19:06:42.008500-08:00,1012.8560180664062,10.724169,10724.169 +6413,2025-03-07T19:06:52.739328-08:00,1012.81640625,10.730828,10730.828 +6414,2025-03-07T19:07:03.460359-08:00,1012.7998657226562,10.721031,10721.031 +6415,2025-03-07T19:07:14.186620-08:00,1012.806396484375,10.726261,10726.261 +6416,2025-03-07T19:07:24.916786-08:00,1012.803466796875,10.730166,10730.166 +6417,2025-03-07T19:07:35.636605-08:00,1012.8181762695312,10.719819,10719.819 +6418,2025-03-07T19:07:46.363334-08:00,1012.8167114257812,10.726729,10726.729 +6419,2025-03-07T19:07:57.088772-08:00,1012.8365478515625,10.725438,10725.438 +6420,2025-03-07T19:08:07.812504-08:00,1012.81494140625,10.723732,10723.732 +6421,2025-03-07T19:08:18.539122-08:00,1012.8365478515625,10.726618,10726.618 +6422,2025-03-07T19:08:29.278448-08:00,1012.8644409179688,10.739326,10739.326 +6423,2025-03-07T19:08:39.999331-08:00,1012.834716796875,10.720883,10720.883 +6424,2025-03-07T19:08:50.732543-08:00,1012.8115844726562,10.733212,10733.212 +6425,2025-03-07T19:09:01.465100-08:00,1012.8563842773438,10.732557,10732.557 +6426,2025-03-07T19:09:12.192554-08:00,1012.8431396484375,10.727454,10727.454 +6427,2025-03-07T19:09:22.912499-08:00,1012.8248291015625,10.719945,10719.945 +6428,2025-03-07T19:09:33.641512-08:00,1012.8629760742188,10.729013,10729.013 +6429,2025-03-07T19:09:44.373616-08:00,1012.8563842773438,10.732104,10732.104 +6430,2025-03-07T19:09:55.104675-08:00,1012.8743896484375,10.731059,10731.059 +6431,2025-03-07T19:10:05.827423-08:00,1012.834716796875,10.722748,10722.748 +6432,2025-03-07T19:10:16.554811-08:00,1012.8233032226562,10.727388,10727.388 +6433,2025-03-07T19:10:27.282482-08:00,1012.8545532226562,10.727671,10727.671 +6434,2025-03-07T19:10:38.012332-08:00,1012.8942260742188,10.72985,10729.85 +6435,2025-03-07T19:10:48.737740-08:00,1012.844970703125,10.725408,10725.408 +6436,2025-03-07T19:10:59.457335-08:00,1012.8596801757812,10.719595,10719.595 +6437,2025-03-07T19:11:10.187624-08:00,1012.90087890625,10.730289,10730.289 +6438,2025-03-07T19:11:20.912534-08:00,1012.8978881835938,10.72491,10724.91 +6439,2025-03-07T19:11:31.644356-08:00,1012.89453125,10.731822,10731.822 +6440,2025-03-07T19:11:42.372535-08:00,1012.86962890625,10.728179,10728.179 +6441,2025-03-07T19:11:53.101484-08:00,1012.8549194335938,10.728949,10728.949 +6442,2025-03-07T19:12:03.827559-08:00,1012.9093017578125,10.726075,10726.075 +6443,2025-03-07T19:12:14.553357-08:00,1012.8961181640625,10.725798,10725.798 +6444,2025-03-07T19:12:25.284042-08:00,1012.9012451171875,10.730685,10730.685 +6445,2025-03-07T19:12:36.010543-08:00,1012.9143676757812,10.726501,10726.501 +6446,2025-03-07T19:12:46.742363-08:00,1012.9276733398438,10.73182,10731.82 +6447,2025-03-07T19:12:57.465520-08:00,1012.9276733398438,10.723157,10723.157 +6448,2025-03-07T19:13:08.199524-08:00,1012.9408569335938,10.734004,10734.004 +6449,2025-03-07T19:13:18.927331-08:00,1012.9328002929688,10.727807,10727.807 +6450,2025-03-07T19:13:29.656486-08:00,1012.9657592773438,10.729155,10729.155 +6451,2025-03-07T19:13:40.386398-08:00,1012.9261474609375,10.729912,10729.912 +6452,2025-03-07T19:13:51.112598-08:00,1012.9295043945312,10.7262,10726.2 +6453,2025-03-07T19:14:01.850500-08:00,1012.9227905273438,10.737902,10737.902 +6454,2025-03-07T19:14:12.570392-08:00,1012.903076171875,10.719892,10719.892 +6455,2025-03-07T19:14:23.308329-08:00,1012.9442138671875,10.737937,10737.937 +6456,2025-03-07T19:14:34.033326-08:00,1012.942626953125,10.724997,10724.997 +6457,2025-03-07T19:14:44.757331-08:00,1012.9808349609375,10.724005,10724.005 +6458,2025-03-07T19:14:55.480778-08:00,1012.92138671875,10.723447,10723.447 +6459,2025-03-07T19:15:06.211563-08:00,1012.9793701171875,10.730785,10730.785 +6460,2025-03-07T19:15:16.938401-08:00,1012.99267578125,10.726838,10726.838 +6461,2025-03-07T19:15:27.668542-08:00,1012.974609375,10.730141,10730.141 +6462,2025-03-07T19:15:38.397360-08:00,1012.96142578125,10.728818,10728.818 +6463,2025-03-07T19:15:49.124335-08:00,1012.997802734375,10.726975,10726.975 +6464,2025-03-07T19:15:59.843362-08:00,1013.00439453125,10.719027,10719.027 +6465,2025-03-07T19:16:10.573325-08:00,1012.9746704101562,10.729963,10729.963 +6466,2025-03-07T19:16:21.299508-08:00,1012.9882202148438,10.726183,10726.183 +6467,2025-03-07T19:16:32.024955-08:00,1013.0293579101562,10.725447,10725.447 +6468,2025-03-07T19:16:42.759394-08:00,1013.0231323242188,10.734439,10734.439 +6469,2025-03-07T19:16:53.482866-08:00,1013.0087280273438,10.723472,10723.472 +6470,2025-03-07T19:17:04.217392-08:00,1013.0270385742188,10.734526,10734.526 +6471,2025-03-07T19:17:14.943510-08:00,1013.0108642578125,10.726118,10726.118 +6472,2025-03-07T19:17:25.666590-08:00,1013.02294921875,10.72308,10723.08 +6473,2025-03-07T19:17:36.393329-08:00,1013.02001953125,10.726739,10726.739 +6474,2025-03-07T19:17:47.118770-08:00,1013.0089111328125,10.725441,10725.441 +6475,2025-03-07T19:17:57.851488-08:00,1012.975830078125,10.732718,10732.718 +6476,2025-03-07T19:18:08.573329-08:00,1013.0209350585938,10.721841,10721.841 +6477,2025-03-07T19:18:19.297545-08:00,1013.0194702148438,10.724216,10724.216 +6478,2025-03-07T19:18:30.026385-08:00,1013.046142578125,10.72884,10728.84 +6479,2025-03-07T19:18:40.755556-08:00,1013.0032958984375,10.729171,10729.171 +6480,2025-03-07T19:18:51.484534-08:00,1013.030029296875,10.728978,10728.978 +6481,2025-03-07T19:19:02.212404-08:00,1013.0632934570312,10.72787,10727.87 +6482,2025-03-07T19:19:12.936378-08:00,1013.0567016601562,10.723974,10723.974 +6483,2025-03-07T19:19:23.663332-08:00,1013.0834350585938,10.726954,10726.954 +6484,2025-03-07T19:19:34.391501-08:00,1013.0507202148438,10.728169,10728.169 +6485,2025-03-07T19:19:45.119369-08:00,1013.069091796875,10.727868,10727.868 +6486,2025-03-07T19:19:55.846415-08:00,1013.0756225585938,10.727046,10727.046 +6487,2025-03-07T19:20:06.570326-08:00,1013.0822143554688,10.723911,10723.911 +6488,2025-03-07T19:20:17.292504-08:00,1013.075927734375,10.722178,10722.178 +6489,2025-03-07T19:20:28.025502-08:00,1013.1140747070312,10.732998,10732.998 +6490,2025-03-07T19:20:38.755827-08:00,1013.1041259765625,10.730325,10730.325 +6491,2025-03-07T19:20:49.479330-08:00,1013.10107421875,10.723503,10723.503 +6492,2025-03-07T19:21:00.206638-08:00,1013.0845947265625,10.727308,10727.308 +6493,2025-03-07T19:21:10.926526-08:00,1013.138916015625,10.719888,10719.888 +6494,2025-03-07T19:21:21.660509-08:00,1013.1143798828125,10.733983,10733.983 +6495,2025-03-07T19:21:32.382330-08:00,1013.1656494140625,10.721821,10721.821 +6496,2025-03-07T19:21:43.105515-08:00,1013.149169921875,10.723185,10723.185 +6497,2025-03-07T19:21:53.830585-08:00,1013.1329956054688,10.72507,10725.07 +6498,2025-03-07T19:22:04.564900-08:00,1013.1527099609375,10.734315,10734.315 +6499,2025-03-07T19:22:15.292596-08:00,1013.1527099609375,10.727696,10727.696 +6500,2025-03-07T19:22:26.015395-08:00,1013.1659545898438,10.722799,10722.799 +6501,2025-03-07T19:22:36.751407-08:00,1013.1641235351562,10.736012,10736.012 +6502,2025-03-07T19:22:47.475331-08:00,1013.157470703125,10.723924,10723.924 +6503,2025-03-07T19:22:58.195407-08:00,1013.1626586914062,10.720076,10720.076 +6504,2025-03-07T19:23:08.924492-08:00,1013.1939086914062,10.729085,10729.085 +6505,2025-03-07T19:23:19.657331-08:00,1013.1838989257812,10.732839,10732.839 +6506,2025-03-07T19:23:30.383323-08:00,1013.1905517578125,10.725992,10725.992 +6507,2025-03-07T19:23:41.113401-08:00,1013.21875,10.730078,10730.078 +6508,2025-03-07T19:23:51.838329-08:00,1013.2056274414062,10.724928,10724.928 +6509,2025-03-07T19:24:02.566514-08:00,1013.2320556640625,10.728185,10728.185 +6510,2025-03-07T19:24:13.290328-08:00,1013.187255859375,10.723814,10723.814 +6511,2025-03-07T19:24:24.012504-08:00,1013.2251586914062,10.722176,10722.176 +6512,2025-03-07T19:24:34.738530-08:00,1013.2284545898438,10.726026,10726.026 +6513,2025-03-07T19:24:45.467513-08:00,1013.2134399414062,10.728983,10728.983 +6514,2025-03-07T19:24:56.200508-08:00,1013.2218627929688,10.732995,10732.995 +6515,2025-03-07T19:25:06.922534-08:00,1013.2284545898438,10.722026,10722.026 +6516,2025-03-07T19:25:17.645509-08:00,1013.2860717773438,10.722975,10722.975 +6517,2025-03-07T19:25:28.371331-08:00,1013.2644653320312,10.725822,10725.822 +6518,2025-03-07T19:25:39.105561-08:00,1013.24462890625,10.73423,10734.23 +6519,2025-03-07T19:25:49.821328-08:00,1013.2266235351562,10.715767,10715.767 +6520,2025-03-07T19:26:00.555334-08:00,1013.2711181640625,10.734006,10734.006 +6521,2025-03-07T19:26:11.287572-08:00,1013.2806396484375,10.732238,10732.238 +6522,2025-03-07T19:26:22.009490-08:00,1013.2872924804688,10.721918,10721.918 +6523,2025-03-07T19:26:32.742400-08:00,1013.27734375,10.73291,10732.91 +6524,2025-03-07T19:26:43.467570-08:00,1013.2839965820312,10.72517,10725.17 +6525,2025-03-07T19:26:54.196478-08:00,1013.2789306640625,10.728908,10728.908 +6526,2025-03-07T19:27:04.922356-08:00,1013.2672119140625,10.725878,10725.878 +6527,2025-03-07T19:27:15.645333-08:00,1013.296875,10.722977,10722.977 +6528,2025-03-07T19:27:26.378331-08:00,1013.2870483398438,10.732998,10732.998 +6529,2025-03-07T19:27:37.103143-08:00,1013.2554931640625,10.724812,10724.812 +6530,2025-03-07T19:27:47.828421-08:00,1013.2767944335938,10.725278,10725.278 +6531,2025-03-07T19:27:58.557334-08:00,1013.3065795898438,10.728913,10728.913 +6532,2025-03-07T19:28:09.288355-08:00,1013.2801513671875,10.731021,10731.021 +6533,2025-03-07T19:28:20.015430-08:00,1013.302978515625,10.727075,10727.075 +6534,2025-03-07T19:28:30.747066-08:00,1013.3359375,10.731636,10731.636 +6535,2025-03-07T19:28:41.467329-08:00,1013.3359375,10.720263,10720.263 +6536,2025-03-07T19:28:52.192352-08:00,1013.2977905273438,10.725023,10725.023 +6537,2025-03-07T19:29:02.927471-08:00,1013.3290405273438,10.735119,10735.119 +6538,2025-03-07T19:29:13.652333-08:00,1013.3239135742188,10.724862,10724.862 +6539,2025-03-07T19:29:24.378498-08:00,1013.3339233398438,10.726165,10726.165 +6540,2025-03-07T19:29:35.104331-08:00,1013.3287353515625,10.725833,10725.833 +6541,2025-03-07T19:29:45.827546-08:00,1013.3518676757812,10.723215,10723.215 +6542,2025-03-07T19:29:56.556473-08:00,1013.3071899414062,10.728927,10728.927 +6543,2025-03-07T19:30:07.285335-08:00,1013.2954711914062,10.728862,10728.862 +6544,2025-03-07T19:30:18.013522-08:00,1013.3119506835938,10.728187,10728.187 +6545,2025-03-07T19:30:28.740389-08:00,1013.3287353515625,10.726867,10726.867 +6546,2025-03-07T19:30:39.466330-08:00,1013.3104858398438,10.725941,10725.941 +6547,2025-03-07T19:30:50.184403-08:00,1013.2921752929688,10.718073,10718.073 +6548,2025-03-07T19:31:00.916463-08:00,1013.2938842773438,10.73206,10732.06 +6549,2025-03-07T19:31:11.643506-08:00,1013.3101806640625,10.727043,10727.043 +6550,2025-03-07T19:31:22.371366-08:00,1013.3134155273438,10.72786,10727.86 +6551,2025-03-07T19:31:33.103329-08:00,1013.2935791015625,10.731963,10731.963 +6552,2025-03-07T19:31:43.837502-08:00,1013.2804565429688,10.734173,10734.173 +6553,2025-03-07T19:31:54.566540-08:00,1013.3080444335938,10.729038,10729.038 +6554,2025-03-07T19:32:05.295788-08:00,1013.2999267578125,10.729248,10729.248 +6555,2025-03-07T19:32:16.025509-08:00,1013.283447265625,10.729721,10729.721 +6556,2025-03-07T19:32:26.746617-08:00,1013.3062744140625,10.721108,10721.108 +6557,2025-03-07T19:32:37.481332-08:00,1013.2996215820312,10.734715,10734.715 +6558,2025-03-07T19:32:48.209357-08:00,1013.302978515625,10.728025,10728.025 +6559,2025-03-07T19:32:58.928509-08:00,1013.2846069335938,10.719152,10719.152 +6560,2025-03-07T19:33:09.662515-08:00,1013.2681274414062,10.734006,10734.006 +6561,2025-03-07T19:33:20.392495-08:00,1013.2761840820312,10.72998,10729.98 +6562,2025-03-07T19:33:31.122586-08:00,1013.30078125,10.730091,10730.091 +6563,2025-03-07T19:33:41.845389-08:00,1013.2890625,10.722803,10722.803 +6564,2025-03-07T19:33:52.577358-08:00,1013.2578125,10.731969,10731.969 +6565,2025-03-07T19:34:03.306744-08:00,1013.2957153320312,10.729386,10729.386 +6566,2025-03-07T19:34:14.036328-08:00,1013.2692260742188,10.729584,10729.584 +6567,2025-03-07T19:34:24.768331-08:00,1013.2457885742188,10.732003,10732.003 +6568,2025-03-07T19:34:35.496653-08:00,1013.2391967773438,10.728322,10728.322 +6569,2025-03-07T19:34:46.224450-08:00,1013.2675170898438,10.727797,10727.797 +6570,2025-03-07T19:34:56.960963-08:00,1013.2373657226562,10.736513,10736.513 +6571,2025-03-07T19:35:07.685322-08:00,1013.2391967773438,10.724359,10724.359 +6572,2025-03-07T19:35:18.410884-08:00,1013.2884521484375,10.725562,10725.562 +6573,2025-03-07T19:35:29.138328-08:00,1013.235595703125,10.727444,10727.444 +6574,2025-03-07T19:35:39.873523-08:00,1013.2190551757812,10.735195,10735.195 +6575,2025-03-07T19:35:50.591326-08:00,1013.2352294921875,10.717803,10717.803 +6576,2025-03-07T19:36:01.323349-08:00,1013.26171875,10.732023,10732.023 +6577,2025-03-07T19:36:12.059247-08:00,1013.2382202148438,10.735898,10735.898 +6578,2025-03-07T19:36:22.781055-08:00,1013.258056640625,10.721808,10721.808 +6579,2025-03-07T19:36:33.515818-08:00,1013.271240234375,10.734763,10734.763 +6580,2025-03-07T19:36:44.247352-08:00,1013.2625122070312,10.731534,10731.534 +6581,2025-03-07T19:36:54.973333-08:00,1013.2756958007812,10.725981,10725.981 +6582,2025-03-07T19:37:05.707967-08:00,1013.2639770507812,10.734634,10734.634 +6583,2025-03-07T19:37:16.444648-08:00,1013.2474975585938,10.736681,10736.681 +6584,2025-03-07T19:37:27.167330-08:00,1013.2654418945312,10.722682,10722.682 +6585,2025-03-07T19:37:37.905476-08:00,1013.270263671875,10.738146,10738.146 +6586,2025-03-07T19:37:48.631366-08:00,1013.2548217773438,10.72589,10725.89 +6587,2025-03-07T19:37:59.366574-08:00,1013.2581176757812,10.735208,10735.208 +6588,2025-03-07T19:38:10.091545-08:00,1013.2548217773438,10.724971,10724.971 +6589,2025-03-07T19:38:20.819329-08:00,1013.29931640625,10.727784,10727.784 +6590,2025-03-07T19:38:31.550536-08:00,1013.2478637695312,10.731207,10731.207 +6591,2025-03-07T19:38:42.277650-08:00,1013.264404296875,10.727114,10727.114 +6592,2025-03-07T19:38:53.010376-08:00,1013.2776489257812,10.732726,10732.726 +6593,2025-03-07T19:39:03.745325-08:00,1013.2640380859375,10.734949,10734.949 +6594,2025-03-07T19:39:14.476507-08:00,1013.2589111328125,10.731182,10731.182 +6595,2025-03-07T19:39:25.205816-08:00,1013.310302734375,10.729309,10729.309 +6596,2025-03-07T19:39:35.943394-08:00,1013.3070068359375,10.737578,10737.578 +6597,2025-03-07T19:39:46.673332-08:00,1013.30517578125,10.729938,10729.938 +6598,2025-03-07T19:39:57.402576-08:00,1013.2919311523438,10.729244,10729.244 +6599,2025-03-07T19:40:08.132325-08:00,1013.294921875,10.729749,10729.749 +6600,2025-03-07T19:40:18.865423-08:00,1013.2915649414062,10.733098,10733.098 +6601,2025-03-07T19:40:29.603562-08:00,1013.27001953125,10.738139,10738.139 +6602,2025-03-07T19:40:40.334329-08:00,1013.2714233398438,10.730767,10730.767 +6603,2025-03-07T19:40:51.068329-08:00,1013.2681274414062,10.734,10734.0 +6604,2025-03-07T19:41:01.796333-08:00,1013.2644653320312,10.728004,10728.004 +6605,2025-03-07T19:41:12.523359-08:00,1013.3272705078125,10.727026,10727.026 +6606,2025-03-07T19:41:23.258331-08:00,1013.3070068359375,10.734972,10734.972 +6607,2025-03-07T19:41:34.000367-08:00,1013.3301391601562,10.742036,10742.036 +6608,2025-03-07T19:41:44.731596-08:00,1013.3132934570312,10.731229,10731.229 +6609,2025-03-07T19:41:55.468457-08:00,1013.3331298828125,10.736861,10736.861 +6610,2025-03-07T19:42:06.202434-08:00,1013.3228759765625,10.733977,10733.977 +6611,2025-03-07T19:42:16.932334-08:00,1013.31298828125,10.7299,10729.9 +6612,2025-03-07T19:42:27.671427-08:00,1013.3323974609375,10.739093,10739.093 +6613,2025-03-07T19:42:38.406866-08:00,1013.337158203125,10.735439,10735.439 +6614,2025-03-07T19:42:49.145516-08:00,1013.3220825195312,10.73865,10738.65 +6615,2025-03-07T19:42:59.878336-08:00,1013.3548583984375,10.73282,10732.82 +6616,2025-03-07T19:43:10.611537-08:00,1013.3448486328125,10.733201,10733.201 +6617,2025-03-07T19:43:21.345505-08:00,1013.3526611328125,10.733968,10733.968 +6618,2025-03-07T19:43:32.079332-08:00,1013.3507690429688,10.733827,10733.827 +6619,2025-03-07T19:43:42.816329-08:00,1013.3526000976562,10.736997,10736.997 +6620,2025-03-07T19:43:53.547392-08:00,1013.3638916015625,10.731063,10731.063 +6621,2025-03-07T19:44:04.279357-08:00,1013.3819580078125,10.731965,10731.965 +6622,2025-03-07T19:44:15.017529-08:00,1013.381591796875,10.738172,10738.172 +6623,2025-03-07T19:44:25.750403-08:00,1013.358154296875,10.732874,10732.874 +6624,2025-03-07T19:44:36.480749-08:00,1013.3613891601562,10.730346,10730.346 +6625,2025-03-07T19:44:47.216329-08:00,1013.3807983398438,10.73558,10735.58 +6626,2025-03-07T19:44:57.948543-08:00,1013.3775024414062,10.732214,10732.214 +6627,2025-03-07T19:45:08.684334-08:00,1013.3822631835938,10.735791,10735.791 +6628,2025-03-07T19:45:19.417611-08:00,1013.4002075195312,10.733277,10733.277 +6629,2025-03-07T19:45:30.148769-08:00,1013.4185791015625,10.731158,10731.158 +6630,2025-03-07T19:45:40.885330-08:00,1013.405029296875,10.736561,10736.561 +6631,2025-03-07T19:45:51.626014-08:00,1013.3836059570312,10.740684,10740.684 +6632,2025-03-07T19:46:02.352944-08:00,1013.4361572265625,10.72693,10726.93 +6633,2025-03-07T19:46:13.092412-08:00,1013.3847045898438,10.739468,10739.468 +6634,2025-03-07T19:46:23.827497-08:00,1013.4012451171875,10.735085,10735.085 +6635,2025-03-07T19:46:34.560328-08:00,1013.419189453125,10.732831,10732.831 +6636,2025-03-07T19:46:45.295753-08:00,1013.3677978515625,10.735425,10735.425 +6637,2025-03-07T19:46:56.036529-08:00,1013.3989868164062,10.740776,10740.776 +6638,2025-03-07T19:47:06.767331-08:00,1013.3956298828125,10.730802,10730.802 +6639,2025-03-07T19:47:17.503340-08:00,1013.3937377929688,10.736009,10736.009 +6640,2025-03-07T19:47:28.247514-08:00,1013.395263671875,10.744174,10744.174 +6641,2025-03-07T19:47:38.982018-08:00,1013.3783569335938,10.734504,10734.504 +6642,2025-03-07T19:47:49.724475-08:00,1013.380126953125,10.742457,10742.457 +6643,2025-03-07T19:48:00.461544-08:00,1013.3883056640625,10.737069,10737.069 +6644,2025-03-07T19:48:11.199360-08:00,1013.3915405273438,10.737816,10737.816 +6645,2025-03-07T19:48:21.938327-08:00,1013.3812255859375,10.738967,10738.967 +6646,2025-03-07T19:48:32.672514-08:00,1013.4124755859375,10.734187,10734.187 +6647,2025-03-07T19:48:43.414932-08:00,1013.415771484375,10.742418,10742.418 +6648,2025-03-07T19:48:54.151391-08:00,1013.418701171875,10.736459,10736.459 +6649,2025-03-07T19:49:04.894364-08:00,1013.4138793945312,10.742973,10742.973 +6650,2025-03-07T19:49:15.634334-08:00,1013.431884765625,10.73997,10739.97 +6651,2025-03-07T19:49:26.368419-08:00,1013.3922119140625,10.734085,10734.085 +6652,2025-03-07T19:49:37.104721-08:00,1013.4266967773438,10.736302,10736.302 +6653,2025-03-07T19:49:47.841329-08:00,1013.4248657226562,10.736608,10736.608 +6654,2025-03-07T19:49:58.585745-08:00,1013.42626953125,10.744416,10744.416 +6655,2025-03-07T19:50:09.324486-08:00,1013.4376831054688,10.738741,10738.741 +6656,2025-03-07T19:50:20.059396-08:00,1013.4343872070312,10.73491,10734.91 +6657,2025-03-07T19:50:30.798561-08:00,1013.4144287109375,10.739165,10739.165 +6658,2025-03-07T19:50:41.538921-08:00,1013.4159545898438,10.74036,10740.36 +6659,2025-03-07T19:50:52.277361-08:00,1013.4026489257812,10.73844,10738.44 +6660,2025-03-07T19:51:03.012333-08:00,1013.424072265625,10.734972,10734.972 +6661,2025-03-07T19:51:13.754331-08:00,1013.419189453125,10.741998,10741.998 +6662,2025-03-07T19:51:24.484488-08:00,1013.4353637695312,10.730157,10730.157 +6663,2025-03-07T19:51:35.229797-08:00,1013.4420166015625,10.745309,10745.309 +6664,2025-03-07T19:51:45.965974-08:00,1013.4140625,10.736177,10736.177 +6665,2025-03-07T19:51:56.706541-08:00,1013.4221801757812,10.740567,10740.567 +6666,2025-03-07T19:52:07.435331-08:00,1013.408935546875,10.72879,10728.79 +6667,2025-03-07T19:52:18.183602-08:00,1013.41552734375,10.748271,10748.271 +6668,2025-03-07T19:52:28.924771-08:00,1013.4238891601562,10.741169,10741.169 +6669,2025-03-07T19:52:39.668803-08:00,1013.3975219726562,10.744032,10744.032 +6670,2025-03-07T19:52:50.405652-08:00,1013.4386596679688,10.736849,10736.849 +6671,2025-03-07T19:53:01.142632-08:00,1013.44189453125,10.73698,10736.98 +6672,2025-03-07T19:53:11.879820-08:00,1013.4220581054688,10.737188,10737.188 +6673,2025-03-07T19:53:22.617763-08:00,1013.4154663085938,10.737943,10737.943 +6674,2025-03-07T19:53:33.356781-08:00,1013.3986206054688,10.739018,10739.018 +6675,2025-03-07T19:53:44.094622-08:00,1013.3937377929688,10.737841,10737.841 +6676,2025-03-07T19:53:54.831796-08:00,1013.4312744140625,10.737174,10737.174 +6677,2025-03-07T19:54:05.575599-08:00,1013.4329833984375,10.743803,10743.803 +6678,2025-03-07T19:54:16.308937-08:00,1013.4246215820312,10.733338,10733.338 +6679,2025-03-07T19:54:27.043798-08:00,1013.4098510742188,10.734861,10734.861 +6680,2025-03-07T19:54:37.778599-08:00,1013.4149780273438,10.734801,10734.801 +6681,2025-03-07T19:54:48.523598-08:00,1013.4282836914062,10.744999,10744.999 +6682,2025-03-07T19:54:59.255787-08:00,1013.4282836914062,10.732189,10732.189 +6683,2025-03-07T19:55:09.992626-08:00,1013.4429931640625,10.736839,10736.839 +6684,2025-03-07T19:55:20.736641-08:00,1013.4312744140625,10.744015,10744.015 +6685,2025-03-07T19:55:31.467595-08:00,1013.4149780273438,10.730954,10730.954 +6686,2025-03-07T19:55:42.207766-08:00,1013.423095703125,10.740171,10740.171 +6687,2025-03-07T19:55:52.943805-08:00,1013.452880859375,10.736039,10736.039 +6688,2025-03-07T19:56:03.680602-08:00,1013.4595336914062,10.736797,10736.797 +6689,2025-03-07T19:56:14.425811-08:00,1013.4411010742188,10.745209,10745.209 +6690,2025-03-07T19:56:25.154774-08:00,1013.4310913085938,10.728963,10728.963 +6691,2025-03-07T19:56:35.889651-08:00,1013.4473266601562,10.734877,10734.877 +6692,2025-03-07T19:56:46.633756-08:00,1013.4623413085938,10.744105,10744.105 +6693,2025-03-07T19:56:57.372599-08:00,1013.4520263671875,10.738843,10738.843 +6694,2025-03-07T19:57:08.098741-08:00,1013.424072265625,10.726142,10726.142 +6695,2025-03-07T19:57:18.836603-08:00,1013.4406127929688,10.737862,10737.862 +6696,2025-03-07T19:57:29.579128-08:00,1013.43408203125,10.742525,10742.525 +6697,2025-03-07T19:57:40.311599-08:00,1013.4170532226562,10.732471,10732.471 +6698,2025-03-07T19:57:51.049871-08:00,1013.4122924804688,10.738272,10738.272 +6699,2025-03-07T19:58:01.784458-08:00,1013.4497680664062,10.734587,10734.587 +6700,2025-03-07T19:58:12.520599-08:00,1013.4468994140625,10.736141,10736.141 +6701,2025-03-07T19:58:23.252600-08:00,1013.4629516601562,10.732001,10732.001 +6702,2025-03-07T19:58:33.991635-08:00,1013.41845703125,10.739035,10739.035 +6703,2025-03-07T19:58:44.726972-08:00,1013.471435546875,10.735337,10735.337 +6704,2025-03-07T19:58:55.459599-08:00,1013.4268798828125,10.732627,10732.627 +6705,2025-03-07T19:59:06.202344-08:00,1013.4349975585938,10.742745,10742.745 +6706,2025-03-07T19:59:16.927596-08:00,1013.4367065429688,10.725252,10725.252 +6707,2025-03-07T19:59:27.666802-08:00,1013.4051513671875,10.739206,10739.206 +6708,2025-03-07T19:59:38.400597-08:00,1013.4168701171875,10.733795,10733.795 +6709,2025-03-07T19:59:49.136667-08:00,1013.4235229492188,10.73607,10736.07 +6710,2025-03-07T19:59:59.873320-08:00,1013.4168701171875,10.736653,10736.653 +6711,2025-03-07T20:00:10.608769-08:00,1013.4315795898438,10.735449,10735.449 +6712,2025-03-07T20:00:21.349861-08:00,1013.43310546875,10.741092,10741.092 +6713,2025-03-07T20:00:32.083624-08:00,1013.4183349609375,10.733763,10733.763 +6714,2025-03-07T20:00:42.823806-08:00,1013.426513671875,10.740182,10740.182 +6715,2025-03-07T20:00:53.560600-08:00,1013.4481201171875,10.736794,10736.794 +6716,2025-03-07T20:01:04.292769-08:00,1013.4495849609375,10.732169,10732.169 +6717,2025-03-07T20:01:15.023298-08:00,1013.421630859375,10.730529,10730.529 +6718,2025-03-07T20:01:25.762603-08:00,1013.4415893554688,10.739305,10739.305 +6719,2025-03-07T20:01:36.502705-08:00,1013.4132690429688,10.740102,10740.102 +6720,2025-03-07T20:01:47.235768-08:00,1013.3933715820312,10.733063,10733.063 +6721,2025-03-07T20:01:57.982798-08:00,1013.4149780273438,10.74703,10747.03 +6722,2025-03-07T20:02:08.714598-08:00,1013.434814453125,10.7318,10731.8 +6723,2025-03-07T20:02:19.450814-08:00,1013.4576416015625,10.736216,10736.216 +6724,2025-03-07T20:02:30.199599-08:00,1013.408447265625,10.748785,10748.785 +6725,2025-03-07T20:02:40.931809-08:00,1013.423095703125,10.73221,10732.21 +6726,2025-03-07T20:02:51.666796-08:00,1013.4282836914062,10.734987,10734.987 +6727,2025-03-07T20:03:02.405847-08:00,1013.423095703125,10.739051,10739.051 +6728,2025-03-07T20:03:13.148779-08:00,1013.4282836914062,10.742932,10742.932 +6729,2025-03-07T20:03:23.879912-08:00,1013.434814453125,10.731133,10731.133 +6730,2025-03-07T20:03:34.624597-08:00,1013.4364013671875,10.744685,10744.685 +6731,2025-03-07T20:03:45.362169-08:00,1013.43310546875,10.737572,10737.572 +6732,2025-03-07T20:03:56.092666-08:00,1013.434814453125,10.730497,10730.497 +6733,2025-03-07T20:04:06.828594-08:00,1013.43310546875,10.735928,10735.928 +6734,2025-03-07T20:04:17.564597-08:00,1013.4679565429688,10.736003,10736.003 +6735,2025-03-07T20:04:28.297749-08:00,1013.4646606445312,10.733152,10733.152 +6736,2025-03-07T20:04:39.035237-08:00,1013.48779296875,10.737488,10737.488 +6737,2025-03-07T20:04:49.771600-08:00,1013.49267578125,10.736363,10736.363 +6738,2025-03-07T20:05:00.500682-08:00,1013.4581298828125,10.729082,10729.082 +6739,2025-03-07T20:05:11.244176-08:00,1013.499267578125,10.743494,10743.494 +6740,2025-03-07T20:05:21.979809-08:00,1013.4779663085938,10.735633,10735.633 +6741,2025-03-07T20:05:32.713607-08:00,1013.4912719726562,10.733798,10733.798 +6742,2025-03-07T20:05:43.443594-08:00,1013.5059204101562,10.729987,10729.987 +6743,2025-03-07T20:05:54.181700-08:00,1013.4845581054688,10.738106,10738.106 +6744,2025-03-07T20:06:04.914795-08:00,1013.483154296875,10.733095,10733.095 +6745,2025-03-07T20:06:15.649800-08:00,1013.4931030273438,10.735005,10735.005 +6746,2025-03-07T20:06:26.379024-08:00,1013.51953125,10.729224,10729.224 +6747,2025-03-07T20:06:37.109775-08:00,1013.5045166015625,10.730751,10730.751 +6748,2025-03-07T20:06:47.843600-08:00,1013.5261840820312,10.733825,10733.825 +6749,2025-03-07T20:06:58.570856-08:00,1013.5243530273438,10.727256,10727.256 +6750,2025-03-07T20:07:09.306601-08:00,1013.4946899414062,10.735745,10735.745 +6751,2025-03-07T20:07:20.038625-08:00,1013.5130615234375,10.732024,10732.024 +6752,2025-03-07T20:07:30.772627-08:00,1013.5314331054688,10.734002,10734.002 +6753,2025-03-07T20:07:41.502598-08:00,1013.5211181640625,10.729971,10729.971 +6754,2025-03-07T20:07:52.238970-08:00,1013.5130615234375,10.736372,10736.372 +6755,2025-03-07T20:08:02.971969-08:00,1013.5050048828125,10.732999,10732.999 +6756,2025-03-07T20:08:13.697595-08:00,1013.5181884765625,10.725626,10725.626 +6757,2025-03-07T20:08:24.431024-08:00,1013.5314331054688,10.733429,10733.429 +6758,2025-03-07T20:08:35.171945-08:00,1013.5314331054688,10.740921,10740.921 +6759,2025-03-07T20:08:45.898601-08:00,1013.544677734375,10.726656,10726.656 +6760,2025-03-07T20:08:56.629799-08:00,1013.5413818359375,10.731198,10731.198 +6761,2025-03-07T20:09:07.363277-08:00,1013.5215454101562,10.733478,10733.478 +6762,2025-03-07T20:09:18.097884-08:00,1013.5479736328125,10.734607,10734.607 +6763,2025-03-07T20:09:28.831591-08:00,1013.549560546875,10.733707,10733.707 +6764,2025-03-07T20:09:39.562809-08:00,1013.5200805664062,10.731218,10731.218 +6765,2025-03-07T20:09:50.298439-08:00,1013.549560546875,10.73563,10735.63 +6766,2025-03-07T20:10:01.021596-08:00,1013.5465698242188,10.723157,10723.157 +6767,2025-03-07T20:10:11.758612-08:00,1013.5413818359375,10.737016,10737.016 +6768,2025-03-07T20:10:22.493421-08:00,1013.5347900390625,10.734809,10734.809 +6769,2025-03-07T20:10:33.229601-08:00,1013.5332641601562,10.73618,10736.18 +6770,2025-03-07T20:10:43.954814-08:00,1013.56640625,10.725213,10725.213 +6771,2025-03-07T20:10:54.692780-08:00,1013.5381469726562,10.737966,10737.966 +6772,2025-03-07T20:11:05.418599-08:00,1013.53662109375,10.725819,10725.819 +6773,2025-03-07T20:11:16.150802-08:00,1013.530029296875,10.732203,10732.203 +6774,2025-03-07T20:11:26.889919-08:00,1013.5682983398438,10.739117,10739.117 +6775,2025-03-07T20:11:37.623713-08:00,1013.546630859375,10.733794,10733.794 +6776,2025-03-07T20:11:48.351663-08:00,1013.5516967773438,10.72795,10727.95 +6777,2025-03-07T20:11:59.079663-08:00,1013.56689453125,10.728,10728.0 +6778,2025-03-07T20:12:09.816471-08:00,1013.5371704101562,10.736808,10736.808 +6779,2025-03-07T20:12:20.542592-08:00,1013.540771484375,10.726121,10726.121 +6780,2025-03-07T20:12:31.281598-08:00,1013.54931640625,10.739006,10739.006 +6781,2025-03-07T20:12:42.008053-08:00,1013.5610961914062,10.726455,10726.455 +6782,2025-03-07T20:12:52.734596-08:00,1013.5578002929688,10.726543,10726.543 +6783,2025-03-07T20:13:03.470954-08:00,1013.533203125,10.736358,10736.358 +6784,2025-03-07T20:13:14.204777-08:00,1013.5402221679688,10.733823,10733.823 +6785,2025-03-07T20:13:24.934604-08:00,1013.5586547851562,10.729827,10729.827 +6786,2025-03-07T20:13:35.664630-08:00,1013.5443725585938,10.730026,10730.026 +6787,2025-03-07T20:13:46.402599-08:00,1013.5576782226562,10.737969,10737.969 +6788,2025-03-07T20:13:57.128601-08:00,1013.5599365234375,10.726002,10726.002 +6789,2025-03-07T20:14:07.860830-08:00,1013.5654907226562,10.732229,10732.229 +6790,2025-03-07T20:14:18.583798-08:00,1013.5610961914062,10.722968,10722.968 +6791,2025-03-07T20:14:29.317796-08:00,1013.5809326171875,10.733998,10733.998 +6792,2025-03-07T20:14:40.048010-08:00,1013.5831909179688,10.730214,10730.214 +6793,2025-03-07T20:14:50.782774-08:00,1013.5538330078125,10.734764,10734.764 +6794,2025-03-07T20:15:01.512595-08:00,1013.5939331054688,10.729821,10729.821 +6795,2025-03-07T20:15:12.247593-08:00,1013.5840454101562,10.734998,10734.998 +6796,2025-03-07T20:15:22.978054-08:00,1013.5895385742188,10.730461,10730.461 +6797,2025-03-07T20:15:33.711378-08:00,1013.6094360351562,10.733324,10733.324 +6798,2025-03-07T20:15:44.448781-08:00,1013.5900268554688,10.737403,10737.403 +6799,2025-03-07T20:15:55.179756-08:00,1013.5936889648438,10.730975,10730.975 +6800,2025-03-07T20:16:05.910992-08:00,1013.6006469726562,10.731236,10731.236 +6801,2025-03-07T20:16:16.640638-08:00,1013.6123657226562,10.729646,10729.646 +6802,2025-03-07T20:16:27.374598-08:00,1013.5712280273438,10.73396,10733.96 +6803,2025-03-07T20:16:38.104700-08:00,1013.617919921875,10.730102,10730.102 +6804,2025-03-07T20:16:48.843782-08:00,1013.6163940429688,10.739082,10739.082 +6805,2025-03-07T20:16:59.570679-08:00,1013.60498046875,10.726897,10726.897 +6806,2025-03-07T20:17:10.305685-08:00,1013.614990234375,10.735006,10735.006 +6807,2025-03-07T20:17:21.033895-08:00,1013.6182861328125,10.72821,10728.21 +6808,2025-03-07T20:17:31.774246-08:00,1013.631591796875,10.740351,10740.351 +6809,2025-03-07T20:17:42.501595-08:00,1013.6417236328125,10.727349,10727.349 +6810,2025-03-07T20:17:53.230766-08:00,1013.612060546875,10.729171,10729.171 +6811,2025-03-07T20:18:03.972464-08:00,1013.6351318359375,10.741698,10741.698 +6812,2025-03-07T20:18:14.703598-08:00,1013.6185913085938,10.731134,10731.134 +6813,2025-03-07T20:18:25.431597-08:00,1013.6468505859375,10.727999,10727.999 +6814,2025-03-07T20:18:36.168889-08:00,1013.63037109375,10.737292,10737.292 +6815,2025-03-07T20:18:46.906596-08:00,1013.6156005859375,10.737707,10737.707 +6816,2025-03-07T20:18:57.640641-08:00,1013.6171875,10.734045,10734.045 +6817,2025-03-07T20:19:08.370360-08:00,1013.6156005859375,10.729719,10729.719 +6818,2025-03-07T20:19:19.107037-08:00,1013.62890625,10.736677,10736.677 +6819,2025-03-07T20:19:29.833597-08:00,1013.5973510742188,10.72656,10726.56 +6820,2025-03-07T20:19:40.575790-08:00,1013.6370239257812,10.742193,10742.193 +6821,2025-03-07T20:19:51.306815-08:00,1013.612060546875,10.731025,10731.025 +6822,2025-03-07T20:20:02.033712-08:00,1013.6105346679688,10.726897,10726.897 +6823,2025-03-07T20:20:12.776109-08:00,1013.6336669921875,10.742397,10742.397 +6824,2025-03-07T20:20:23.511599-08:00,1013.6336669921875,10.73549,10735.49 +6825,2025-03-07T20:20:34.240775-08:00,1013.6417236328125,10.729176,10729.176 +6826,2025-03-07T20:20:44.972595-08:00,1013.6286010742188,10.73182,10731.82 +6827,2025-03-07T20:20:55.698595-08:00,1013.6465454101562,10.726,10726.0 +6828,2025-03-07T20:21:06.437585-08:00,1013.6465454101562,10.73899,10738.99 +6829,2025-03-07T20:21:17.160597-08:00,1013.6414184570312,10.723012,10723.012 +6830,2025-03-07T20:21:27.896756-08:00,1013.6627197265625,10.736159,10736.159 +6831,2025-03-07T20:21:38.624684-08:00,1013.628173828125,10.727928,10727.928 +6832,2025-03-07T20:21:49.361015-08:00,1013.6513061523438,10.736331,10736.331 +6833,2025-03-07T20:22:00.100957-08:00,1013.66455078125,10.739942,10739.942 +6834,2025-03-07T20:22:10.833596-08:00,1013.66748046875,10.732639,10732.639 +6835,2025-03-07T20:22:21.567627-08:00,1013.6476440429688,10.734031,10734.031 +6836,2025-03-07T20:22:32.300865-08:00,1013.6906127929688,10.733238,10733.238 +6837,2025-03-07T20:22:43.030598-08:00,1013.6626586914062,10.729733,10729.733 +6838,2025-03-07T20:22:53.768597-08:00,1013.660888671875,10.737999,10737.999 +6839,2025-03-07T20:23:04.504674-08:00,1013.6542358398438,10.736077,10736.077 +6840,2025-03-07T20:23:15.239112-08:00,1013.6821899414062,10.734438,10734.438 +6841,2025-03-07T20:23:25.969810-08:00,1013.6307983398438,10.730698,10730.698 +6842,2025-03-07T20:23:36.709659-08:00,1013.638916015625,10.739849,10739.849 +6843,2025-03-07T20:23:47.446637-08:00,1013.6604614257812,10.736978,10736.978 +6844,2025-03-07T20:23:58.172598-08:00,1013.6487426757812,10.725961,10725.961 +6845,2025-03-07T20:24:08.911596-08:00,1013.6370239257812,10.738998,10738.998 +6846,2025-03-07T20:24:19.639737-08:00,1013.6454467773438,10.728141,10728.141 +6847,2025-03-07T20:24:30.376788-08:00,1013.6468505859375,10.737051,10737.051 +6848,2025-03-07T20:24:41.110597-08:00,1013.6436157226562,10.733809,10733.809 +6849,2025-03-07T20:24:51.838613-08:00,1013.6436157226562,10.728016,10728.016 +6850,2025-03-07T20:25:02.576772-08:00,1013.6417236328125,10.738159,10738.159 +6851,2025-03-07T20:25:13.313784-08:00,1013.6300048828125,10.737012,10737.012 +6852,2025-03-07T20:25:24.046831-08:00,1013.64794921875,10.733047,10733.047 +6853,2025-03-07T20:25:34.791597-08:00,1013.68408203125,10.744766,10744.766 +6854,2025-03-07T20:25:45.531811-08:00,1013.6443481445312,10.740214,10740.214 +6855,2025-03-07T20:25:56.269689-08:00,1013.662353515625,10.737878,10737.878 +6856,2025-03-07T20:26:06.996320-08:00,1013.6392211914062,10.726631,10726.631 +6857,2025-03-07T20:26:17.742929-08:00,1013.68359375,10.746609,10746.609 +6858,2025-03-07T20:26:28.480810-08:00,1013.6619262695312,10.737881,10737.881 +6859,2025-03-07T20:26:39.215751-08:00,1013.6568603515625,10.734941,10734.941 +6860,2025-03-07T20:26:49.951602-08:00,1013.669677734375,10.735851,10735.851 +6861,2025-03-07T20:27:00.686792-08:00,1013.679931640625,10.73519,10735.19 +6862,2025-03-07T20:27:11.418597-08:00,1013.65673828125,10.731805,10731.805 +6863,2025-03-07T20:27:22.160805-08:00,1013.64501953125,10.742208,10742.208 +6864,2025-03-07T20:27:32.890164-08:00,1013.6548461914062,10.729359,10729.359 +6865,2025-03-07T20:27:43.634820-08:00,1013.6743774414062,10.744656,10744.656 +6866,2025-03-07T20:27:54.369821-08:00,1013.6773681640625,10.735001,10735.001 +6867,2025-03-07T20:28:05.108690-08:00,1013.6442260742188,10.738869,10738.869 +6868,2025-03-07T20:28:15.841631-08:00,1013.6409301757812,10.732941,10732.941 +6869,2025-03-07T20:28:26.579776-08:00,1013.6522827148438,10.738145,10738.145 +6870,2025-03-07T20:28:37.320691-08:00,1013.6702880859375,10.740915,10740.915 +6871,2025-03-07T20:28:48.059769-08:00,1013.704833984375,10.739078,10739.078 +6872,2025-03-07T20:28:58.797596-08:00,1013.6749877929688,10.737827,10737.827 +6873,2025-03-07T20:29:09.540813-08:00,1013.6782836914062,10.743217,10743.217 +6874,2025-03-07T20:29:20.273593-08:00,1013.6746826171875,10.73278,10732.78 +6875,2025-03-07T20:29:31.006681-08:00,1013.704345703125,10.733088,10733.088 +6876,2025-03-07T20:29:41.747988-08:00,1013.6727905273438,10.741307,10741.307 +6877,2025-03-07T20:29:52.487620-08:00,1013.7106323242188,10.739632,10739.632 +6878,2025-03-07T20:30:03.230806-08:00,1013.7022094726562,10.743186,10743.186 +6879,2025-03-07T20:30:13.966793-08:00,1013.7186889648438,10.735987,10735.987 +6880,2025-03-07T20:30:24.709027-08:00,1013.741455078125,10.742234,10742.234 +6881,2025-03-07T20:30:35.452795-08:00,1013.7396240234375,10.743768,10743.768 +6882,2025-03-07T20:30:46.199032-08:00,1013.756103515625,10.746237,10746.237 +6883,2025-03-07T20:30:56.941820-08:00,1013.7359619140625,10.742788,10742.788 +6884,2025-03-07T20:31:07.682917-08:00,1013.7439575195312,10.741097,10741.097 +6885,2025-03-07T20:31:18.428796-08:00,1013.761962890625,10.745879,10745.879 +6886,2025-03-07T20:31:29.167692-08:00,1013.7306518554688,10.738896,10738.896 +6887,2025-03-07T20:31:39.912844-08:00,1013.7601318359375,10.745152,10745.152 +6888,2025-03-07T20:31:50.652303-08:00,1013.7832641601562,10.739459,10739.459 +6889,2025-03-07T20:32:01.397159-08:00,1013.75830078125,10.744856,10744.856 +6890,2025-03-07T20:32:12.129589-08:00,1013.74462890625,10.73243,10732.43 +6891,2025-03-07T20:32:22.874594-08:00,1013.7081298828125,10.745005,10745.005 +6892,2025-03-07T20:32:33.609714-08:00,1013.7379760742188,10.73512,10735.12 +6893,2025-03-07T20:32:44.343620-08:00,1013.736083984375,10.733906,10733.906 +6894,2025-03-07T20:32:55.080958-08:00,1013.752685546875,10.737338,10737.338 +6895,2025-03-07T20:33:05.821601-08:00,1013.7460327148438,10.740643,10740.643 +6896,2025-03-07T20:33:16.555791-08:00,1013.7423706054688,10.73419,10734.19 +6897,2025-03-07T20:33:27.289052-08:00,1013.7327880859375,10.733261,10733.261 +6898,2025-03-07T20:33:38.023599-08:00,1013.7029418945312,10.734547,10734.547 +6899,2025-03-07T20:33:48.769600-08:00,1013.7423706054688,10.746001,10746.001 +6900,2025-03-07T20:33:59.499602-08:00,1013.764404296875,10.730002,10730.002 +6901,2025-03-07T20:34:10.246596-08:00,1013.7776489257812,10.746994,10746.994 +6902,2025-03-07T20:34:20.976790-08:00,1013.71484375,10.730194,10730.194 +6903,2025-03-07T20:34:31.717882-08:00,1013.7478637695312,10.741092,10741.092 +6904,2025-03-07T20:34:42.456312-08:00,1013.7743530273438,10.73843,10738.43 +6905,2025-03-07T20:34:53.188957-08:00,1013.7478637695312,10.732645,10732.645 +6906,2025-03-07T20:35:03.922777-08:00,1013.7545166015625,10.73382,10733.82 +6907,2025-03-07T20:35:14.665781-08:00,1013.764404296875,10.743004,10743.004 +6908,2025-03-07T20:35:25.397735-08:00,1013.7379760742188,10.731954,10731.954 +6909,2025-03-07T20:35:36.133700-08:00,1013.7540893554688,10.735965,10735.965 +6910,2025-03-07T20:35:46.875815-08:00,1013.7507934570312,10.742115,10742.115 +6911,2025-03-07T20:35:57.616601-08:00,1013.7620849609375,10.740786,10740.786 +6912,2025-03-07T20:36:08.351006-08:00,1013.7801513671875,10.734405,10734.405 +6913,2025-03-07T20:36:19.087302-08:00,1013.7782592773438,10.736296,10736.296 +6914,2025-03-07T20:36:29.834838-08:00,1013.7631225585938,10.747536,10747.536 +6915,2025-03-07T20:36:40.563776-08:00,1013.7675170898438,10.728938,10728.938 +6916,2025-03-07T20:36:51.307685-08:00,1013.74951171875,10.743909,10743.909 +6917,2025-03-07T20:37:02.047638-08:00,1013.7479858398438,10.739953,10739.953 +6918,2025-03-07T20:37:12.793827-08:00,1013.767333984375,10.746189,10746.189 +6919,2025-03-07T20:37:23.529172-08:00,1013.76220703125,10.735345,10735.345 +6920,2025-03-07T20:37:34.267599-08:00,1013.77685546875,10.738427,10738.427 +6921,2025-03-07T20:37:45.008594-08:00,1013.755126953125,10.740995,10740.995 +6922,2025-03-07T20:37:55.751599-08:00,1013.78125,10.743005,10743.005 +6923,2025-03-07T20:38:06.485806-08:00,1013.7315063476562,10.734207,10734.207 +6924,2025-03-07T20:38:17.232683-08:00,1013.770751953125,10.746877,10746.877 +6925,2025-03-07T20:38:27.972779-08:00,1013.7803955078125,10.740096,10740.096 +6926,2025-03-07T20:38:38.705755-08:00,1013.7652587890625,10.732976,10732.976 +6927,2025-03-07T20:38:49.444794-08:00,1013.7684936523438,10.739039,10739.039 +6928,2025-03-07T20:39:00.192683-08:00,1013.7931518554688,10.747889,10747.889 +6929,2025-03-07T20:39:10.930028-08:00,1013.804443359375,10.737345,10737.345 +6930,2025-03-07T20:39:21.666788-08:00,1013.7742919921875,10.73676,10736.76 +6931,2025-03-07T20:39:32.409710-08:00,1013.792236328125,10.742922,10742.922 +6932,2025-03-07T20:39:43.143730-08:00,1013.7742309570312,10.73402,10734.02 +6933,2025-03-07T20:39:53.890803-08:00,1013.7771606445312,10.747073,10747.073 +6934,2025-03-07T20:40:04.624649-08:00,1013.7855224609375,10.733846,10733.846 +6935,2025-03-07T20:40:15.360599-08:00,1013.7752075195312,10.73595,10735.95 +6936,2025-03-07T20:40:26.099843-08:00,1013.7572021484375,10.739244,10739.244 +6937,2025-03-07T20:40:36.837790-08:00,1013.78369140625,10.737947,10737.947 +6938,2025-03-07T20:40:47.571596-08:00,1013.7718505859375,10.733806,10733.806 +6939,2025-03-07T20:40:58.305600-08:00,1013.73876953125,10.734004,10734.004 +6940,2025-03-07T20:41:09.044624-08:00,1013.7653198242188,10.739024,10739.024 +6941,2025-03-07T20:41:19.773768-08:00,1013.7373657226562,10.729144,10729.144 +6942,2025-03-07T20:41:30.508806-08:00,1013.7752075195312,10.735038,10735.038 +6943,2025-03-07T20:41:41.253669-08:00,1013.75537109375,10.744863,10744.863 +6944,2025-03-07T20:41:51.986880-08:00,1013.7789306640625,10.733211,10733.211 +6945,2025-03-07T20:42:02.722656-08:00,1013.763916015625,10.735776,10735.776 +6946,2025-03-07T20:42:13.455794-08:00,1013.7344360351562,10.733138,10733.138 +6947,2025-03-07T20:42:24.192599-08:00,1013.7609252929688,10.736805,10736.805 +6948,2025-03-07T20:42:34.932598-08:00,1013.7576293945312,10.739999,10739.999 +6949,2025-03-07T20:42:45.661784-08:00,1013.747802734375,10.729186,10729.186 +6950,2025-03-07T20:42:56.401030-08:00,1013.7529907226562,10.739246,10739.246 +6951,2025-03-07T20:43:07.132804-08:00,1013.743408203125,10.731774,10731.774 +6952,2025-03-07T20:43:17.866596-08:00,1013.7349853515625,10.733792,10733.792 +6953,2025-03-07T20:43:28.604171-08:00,1013.7567138671875,10.737575,10737.575 +6954,2025-03-07T20:43:39.342767-08:00,1013.7485961914062,10.738596,10738.596 +6955,2025-03-07T20:43:50.075598-08:00,1013.7684936523438,10.732831,10732.831 +6956,2025-03-07T20:44:00.809756-08:00,1013.7240600585938,10.734158,10734.158 +6957,2025-03-07T20:44:11.538820-08:00,1013.742431640625,10.729064,10729.064 +6958,2025-03-07T20:44:22.270796-08:00,1013.7722778320312,10.731976,10731.976 +6959,2025-03-07T20:44:33.010600-08:00,1013.7542724609375,10.739804,10739.804 +6960,2025-03-07T20:44:43.741599-08:00,1013.7645874023438,10.730999,10730.999 +6961,2025-03-07T20:44:54.474792-08:00,1013.741455078125,10.733193,10733.193 +6962,2025-03-07T20:45:05.211854-08:00,1013.7352905273438,10.737062,10737.062 +6963,2025-03-07T20:45:15.947595-08:00,1013.7334594726562,10.735741,10735.741 +6964,2025-03-07T20:45:26.674775-08:00,1013.7221069335938,10.72718,10727.18 +6965,2025-03-07T20:45:37.403290-08:00,1013.73095703125,10.728515,10728.515 +6966,2025-03-07T20:45:48.135595-08:00,1013.7276611328125,10.732305,10732.305 +6967,2025-03-07T20:45:58.870598-08:00,1013.706298828125,10.735003,10735.003 +6968,2025-03-07T20:46:09.597212-08:00,1013.7130737304688,10.726614,10726.614 +6969,2025-03-07T20:46:20.323711-08:00,1013.74609375,10.726499,10726.499 +6970,2025-03-07T20:46:31.059848-08:00,1013.727783203125,10.736137,10736.137 +6971,2025-03-07T20:46:41.788142-08:00,1013.7234497070312,10.728294,10728.294 +6972,2025-03-07T20:46:52.521592-08:00,1013.7201538085938,10.73345,10733.45 +6973,2025-03-07T20:47:03.255799-08:00,1013.7484130859375,10.734207,10734.207 +6974,2025-03-07T20:47:13.988747-08:00,1013.71875,10.732948,10732.948 +6975,2025-03-07T20:47:24.715699-08:00,1013.7157592773438,10.726952,10726.952 +6976,2025-03-07T20:47:35.453593-08:00,1013.709228515625,10.737894,10737.894 +6977,2025-03-07T20:47:46.181301-08:00,1013.6915893554688,10.727708,10727.708 +6978,2025-03-07T20:47:56.921004-08:00,1013.7132568359375,10.739703,10739.703 +6979,2025-03-07T20:48:07.648595-08:00,1013.7166137695312,10.727591,10727.591 +6980,2025-03-07T20:48:18.374818-08:00,1013.7349853515625,10.726223,10726.223 +6981,2025-03-07T20:48:29.106957-08:00,1013.75830078125,10.732139,10732.139 +6982,2025-03-07T20:48:39.844595-08:00,1013.7005615234375,10.737638,10737.638 +6983,2025-03-07T20:48:50.575824-08:00,1013.7090454101562,10.731229,10731.229 +6984,2025-03-07T20:49:01.302476-08:00,1013.7472534179688,10.726652,10726.652 +6985,2025-03-07T20:49:12.038785-08:00,1013.7373657226562,10.736309,10736.309 +6986,2025-03-07T20:49:22.773799-08:00,1013.734375,10.735014,10735.014 +6987,2025-03-07T20:49:33.499795-08:00,1013.7362670898438,10.725996,10725.996 +6988,2025-03-07T20:49:44.231599-08:00,1013.7315673828125,10.731804,10731.804 +6989,2025-03-07T20:49:54.962891-08:00,1013.7216186523438,10.731292,10731.292 +6990,2025-03-07T20:50:05.699805-08:00,1013.7168579101562,10.736914,10736.914 +6991,2025-03-07T20:50:16.432113-08:00,1013.7073364257812,10.732308,10732.308 +6992,2025-03-07T20:50:27.161262-08:00,1013.723876953125,10.729149,10729.149 +6993,2025-03-07T20:50:37.899603-08:00,1013.7125244140625,10.738341,10738.341 +6994,2025-03-07T20:50:48.622606-08:00,1013.7440795898438,10.723003,10723.003 +6995,2025-03-07T20:50:59.357920-08:00,1013.7341918945312,10.735314,10735.314 +6996,2025-03-07T20:51:10.091598-08:00,1013.7393798828125,10.733678,10733.678 +6997,2025-03-07T20:51:20.815770-08:00,1013.7146606445312,10.724172,10724.172 +6998,2025-03-07T20:51:31.555111-08:00,1013.7246704101562,10.739341,10739.341 +6999,2025-03-07T20:51:42.287806-08:00,1013.7232055664062,10.732695,10732.695 +7000,2025-03-07T20:51:53.011779-08:00,1013.73974609375,10.723973,10723.973 +7001,2025-03-07T20:52:03.743598-08:00,1013.731689453125,10.731819,10731.819 +7002,2025-03-07T20:52:14.485592-08:00,1013.7217407226562,10.741994,10741.994 +7003,2025-03-07T20:52:25.251913-08:00,1013.730224609375,10.766321,10766.321 +7004,2025-03-07T20:52:35.974842-08:00,1013.7354125976562,10.722929,10722.929 +7005,2025-03-07T20:52:46.716438-08:00,1013.7471923828125,10.741596,10741.596 +7006,2025-03-07T20:52:57.438375-08:00,1013.743896484375,10.721937,10721.937 +7007,2025-03-07T20:53:08.177994-08:00,1013.71923828125,10.739619,10739.619 +7008,2025-03-07T20:53:18.901909-08:00,1013.7442016601562,10.723915,10723.915 +7009,2025-03-07T20:53:29.637321-08:00,1013.7559204101562,10.735412,10735.412 +7010,2025-03-07T20:53:40.368570-08:00,1013.7376708984375,10.731249,10731.249 +7011,2025-03-07T20:53:51.094911-08:00,1013.7887573242188,10.726341,10726.341 +7012,2025-03-07T20:54:01.828967-08:00,1013.7740478515625,10.734056,10734.056 +7013,2025-03-07T20:54:12.557094-08:00,1013.751220703125,10.728127,10728.127 +7014,2025-03-07T20:54:23.291234-08:00,1013.7743530273438,10.73414,10734.14 +7015,2025-03-07T20:54:34.021911-08:00,1013.7645263671875,10.730677,10730.677 +7016,2025-03-07T20:54:44.753087-08:00,1013.7879638671875,10.731176,10731.176 +7017,2025-03-07T20:54:55.486014-08:00,1013.7879638671875,10.732927,10732.927 +7018,2025-03-07T20:55:06.216912-08:00,1013.8078002929688,10.730898,10730.898 +7019,2025-03-07T20:55:16.937113-08:00,1013.7898559570312,10.720201,10720.201 +7020,2025-03-07T20:55:27.674216-08:00,1013.806396484375,10.737103,10737.103 +7021,2025-03-07T20:55:38.394170-08:00,1013.8527221679688,10.719954,10719.954 +7022,2025-03-07T20:55:49.128324-08:00,1013.8082885742188,10.734154,10734.154 +7023,2025-03-07T20:55:59.858908-08:00,1013.8148193359375,10.730584,10730.584 +7024,2025-03-07T20:56:10.590913-08:00,1013.833251953125,10.732005,10732.005 +7025,2025-03-07T20:56:21.327013-08:00,1013.8365478515625,10.7361,10736.1 +7026,2025-03-07T20:56:32.048908-08:00,1013.8516235351562,10.721895,10721.895 +7027,2025-03-07T20:56:42.782714-08:00,1013.8714599609375,10.733806,10733.806 +7028,2025-03-07T20:56:53.514603-08:00,1013.8552856445312,10.731889,10731.889 +7029,2025-03-07T20:57:04.243911-08:00,1013.8439331054688,10.729308,10729.308 +7030,2025-03-07T20:57:14.969331-08:00,1013.8703002929688,10.72542,10725.42 +7031,2025-03-07T20:57:25.692117-08:00,1013.8685302734375,10.722786,10722.786 +7032,2025-03-07T20:57:36.428951-08:00,1013.89013671875,10.736834,10736.834 +7033,2025-03-07T20:57:47.154309-08:00,1013.8655395507812,10.725358,10725.358 +7034,2025-03-07T20:57:57.887348-08:00,1013.8787231445312,10.733039,10733.039 +7035,2025-03-07T20:58:08.608911-08:00,1013.91845703125,10.721563,10721.563 +7036,2025-03-07T20:58:19.348257-08:00,1013.8953247070312,10.739346,10739.346 +7037,2025-03-07T20:58:30.075930-08:00,1013.9085693359375,10.727673,10727.673 +7038,2025-03-07T20:58:40.800923-08:00,1013.8858032226562,10.724993,10724.993 +7039,2025-03-07T20:58:51.541084-08:00,1013.897216796875,10.740161,10740.161 +7040,2025-03-07T20:59:02.260908-08:00,1013.9121704101562,10.719824,10719.824 +7041,2025-03-07T20:59:13.001102-08:00,1013.9037475585938,10.740194,10740.194 +7042,2025-03-07T20:59:34.455932-08:00,1013.88427734375,21.45483,21454.83 +7043,2025-03-07T20:59:45.179949-08:00,1013.9188232421875,10.724017,10724.017 +7044,2025-03-07T20:59:55.914092-08:00,1013.8975219726562,10.734143,10734.143 +7045,2025-03-07T21:00:06.639905-08:00,1013.9371948242188,10.725813,10725.813 +7046,2025-03-07T21:00:17.374911-08:00,1013.92578125,10.735006,10735.006 +7047,2025-03-07T21:00:28.103108-08:00,1013.9324340820312,10.728197,10728.197 +7048,2025-03-07T21:00:38.829119-08:00,1013.9375,10.726011,10726.011 +7049,2025-03-07T21:00:49.558129-08:00,1013.9456176757812,10.72901,10729.01 +7050,2025-03-07T21:01:00.289253-08:00,1013.96875,10.731124,10731.124 +7051,2025-03-07T21:01:11.025939-08:00,1013.9489135742188,10.736686,10736.686 +7052,2025-03-07T21:01:21.752125-08:00,1013.9556274414062,10.726186,10726.186 +7053,2025-03-07T21:01:32.478258-08:00,1013.959228515625,10.726133,10726.133 +7054,2025-03-07T21:01:43.206909-08:00,1013.9525756835938,10.728651,10728.651 +7055,2025-03-07T21:01:53.939319-08:00,1013.9492797851562,10.73241,10732.41 +7056,2025-03-07T21:02:04.667687-08:00,1013.970947265625,10.728368,10728.368 +7057,2025-03-07T21:02:15.390911-08:00,1013.9808349609375,10.723224,10723.224 +7058,2025-03-07T21:02:26.127240-08:00,1013.970947265625,10.736329,10736.329 +7059,2025-03-07T21:02:36.845903-08:00,1013.9529418945312,10.718663,10718.663 +7060,2025-03-07T21:02:47.577096-08:00,1013.9628295898438,10.731193,10731.193 +7061,2025-03-07T21:02:58.309314-08:00,1013.9511108398438,10.732218,10732.218 +7062,2025-03-07T21:03:09.033905-08:00,1013.9415893554688,10.724591,10724.591 +7063,2025-03-07T21:03:19.767910-08:00,1013.9679565429688,10.734005,10734.005 +7064,2025-03-07T21:03:30.499039-08:00,1013.9679565429688,10.731129,10731.129 +7065,2025-03-07T21:03:41.216941-08:00,1013.9977416992188,10.717902,10717.902 +7066,2025-03-07T21:03:51.953126-08:00,1014.0125122070312,10.736185,10736.185 +7067,2025-03-07T21:04:02.678911-08:00,1013.9500122070312,10.725785,10725.785 +7068,2025-03-07T21:04:13.405969-08:00,1013.98779296875,10.727058,10727.058 +7069,2025-03-07T21:04:24.128935-08:00,1014.0076293945312,10.722966,10722.966 +7070,2025-03-07T21:04:34.856908-08:00,1014.0076293945312,10.727973,10727.973 +7071,2025-03-07T21:04:35.036495-08:00,1014.0076293945312,0.179587,179.587 +7072,2025-03-07T21:04:45.582291-08:00,1013.9929809570312,10.545796,10545.796 +7073,2025-03-07T21:04:56.309912-08:00,1013.99951171875,10.727621,10727.621 +7074,2025-03-07T21:05:07.032911-08:00,1014.0046997070312,10.722999,10722.999 +7075,2025-03-07T21:05:17.767046-08:00,1014.0245361328125,10.734135,10734.135 +7076,2025-03-07T21:05:28.494908-08:00,1013.9880981445312,10.727862,10727.862 +7077,2025-03-07T21:05:39.217134-08:00,1013.994873046875,10.722226,10722.226 +7078,2025-03-07T21:05:49.948146-08:00,1014.0131225585938,10.731012,10731.012 +7079,2025-03-07T21:06:00.674913-08:00,1013.9999389648438,10.726767,10726.767 +7080,2025-03-07T21:06:11.399935-08:00,1013.9951782226562,10.725022,10725.022 +7081,2025-03-07T21:06:22.128906-08:00,1014.0083618164062,10.728971,10728.971 +7082,2025-03-07T21:06:32.851092-08:00,1014.0150146484375,10.722186,10722.186 +7083,2025-03-07T21:06:43.584908-08:00,1014.0068969726562,10.733816,10733.816 +7084,2025-03-07T21:06:54.308937-08:00,1013.9918823242188,10.724029,10724.029 +7085,2025-03-07T21:07:05.034934-08:00,1013.9969482421875,10.725997,10725.997 +7086,2025-03-07T21:07:15.761911-08:00,1013.982177734375,10.726977,10726.977 +7087,2025-03-07T21:07:26.494207-08:00,1013.9969482421875,10.732296,10732.296 +7088,2025-03-07T21:07:37.220908-08:00,1013.9921875,10.726701,10726.701 +7089,2025-03-07T21:07:47.943910-08:00,1013.9921875,10.723002,10723.002 +7090,2025-03-07T21:07:58.668936-08:00,1014.000244140625,10.725026,10725.026 +7091,2025-03-07T21:08:09.392983-08:00,1014.0153198242188,10.724047,10724.047 +7092,2025-03-07T21:08:20.121089-08:00,1014.010498046875,10.728106,10728.106 +7093,2025-03-07T21:08:30.850908-08:00,1013.9972534179688,10.729819,10729.819 +7094,2025-03-07T21:08:41.571018-08:00,1013.9756469726562,10.72011,10720.11 +7095,2025-03-07T21:08:52.301142-08:00,1013.9888305664062,10.730124,10730.124 +7096,2025-03-07T21:09:03.022095-08:00,1013.9954833984375,10.720953,10720.953 +7097,2025-03-07T21:09:13.749657-08:00,1014.0204467773438,10.727562,10727.562 +7098,2025-03-07T21:09:24.485109-08:00,1014.0072021484375,10.735452,10735.452 +7099,2025-03-07T21:09:35.209939-08:00,1014.0137329101562,10.72483,10724.83 +7100,2025-03-07T21:09:45.938939-08:00,1013.9939575195312,10.729,10729.0 +7101,2025-03-07T21:09:56.663985-08:00,1014.0056762695312,10.725046,10725.046 +7102,2025-03-07T21:10:07.387146-08:00,1013.9891967773438,10.723161,10723.161 +7103,2025-03-07T21:10:18.118908-08:00,1014.0240478515625,10.731762,10731.762 +7104,2025-03-07T21:10:28.838104-08:00,1014.0126342773438,10.719196,10719.196 +7105,2025-03-07T21:10:39.571233-08:00,1014.0075073242188,10.733129,10733.129 +7106,2025-03-07T21:10:50.296021-08:00,1014.032470703125,10.724788,10724.788 +7107,2025-03-07T21:11:01.022093-08:00,1014.0211181640625,10.726072,10726.072 +7108,2025-03-07T21:11:11.752119-08:00,1014.0409545898438,10.730026,10730.026 +7109,2025-03-07T21:11:22.482986-08:00,1013.9993896484375,10.730867,10730.867 +7110,2025-03-07T21:11:33.205262-08:00,1014.0292358398438,10.722276,10722.276 +7111,2025-03-07T21:11:43.931078-08:00,1014.0490112304688,10.725816,10725.816 +7112,2025-03-07T21:11:54.654672-08:00,1014.0379638671875,10.723594,10723.594 +7113,2025-03-07T21:12:05.378911-08:00,1014.03125,10.724239,10724.239 +7114,2025-03-07T21:12:16.109154-08:00,1014.0367431640625,10.730243,10730.243 +7115,2025-03-07T21:12:26.833910-08:00,1014.0418701171875,10.724756,10724.756 +7116,2025-03-07T21:12:37.564006-08:00,1014.0899047851562,10.730096,10730.096 +7117,2025-03-07T21:12:48.292791-08:00,1014.0953369140625,10.728785,10728.785 +7118,2025-03-07T21:12:59.024909-08:00,1014.06591796875,10.732118,10732.118 +7119,2025-03-07T21:13:09.754915-08:00,1014.0728149414062,10.730006,10730.006 +7120,2025-03-07T21:13:20.475103-08:00,1014.0943603515625,10.720188,10720.188 +7121,2025-03-07T21:13:31.207020-08:00,1014.0865478515625,10.731917,10731.917 +7122,2025-03-07T21:13:41.937926-08:00,1014.0586547851562,10.730906,10730.906 +7123,2025-03-07T21:13:52.664108-08:00,1014.0640869140625,10.726182,10726.182 +7124,2025-03-07T21:14:03.385904-08:00,1014.0661010742188,10.721796,10721.796 +7125,2025-03-07T21:14:14.118675-08:00,1014.0745239257812,10.732771,10732.771 +7126,2025-03-07T21:14:24.842113-08:00,1014.0928344726562,10.723438,10723.438 +7127,2025-03-07T21:14:35.577102-08:00,1014.0798950195312,10.734989,10734.989 +7128,2025-03-07T21:14:46.295919-08:00,1014.0850219726562,10.718817,10718.817 +7129,2025-03-07T21:14:57.028319-08:00,1014.0801391601562,10.7324,10732.4 +7130,2025-03-07T21:15:07.763074-08:00,1014.0750122070312,10.734755,10734.755 +7131,2025-03-07T21:15:18.495130-08:00,1014.0951538085938,10.732056,10732.056 +7132,2025-03-07T21:15:29.220910-08:00,1014.1365356445312,10.72578,10725.78 +7133,2025-03-07T21:15:39.944743-08:00,1014.1104125976562,10.723833,10723.833 +7134,2025-03-07T21:15:50.682115-08:00,1014.1136474609375,10.737372,10737.372 +7135,2025-03-07T21:16:01.413911-08:00,1014.1088256835938,10.731796,10731.796 +7136,2025-03-07T21:16:12.143093-08:00,1014.1057739257812,10.729182,10729.182 +7137,2025-03-07T21:16:22.877935-08:00,1014.1090698242188,10.734842,10734.842 +7138,2025-03-07T21:16:33.606911-08:00,1014.1060791015625,10.728976,10728.976 +7139,2025-03-07T21:16:44.331298-08:00,1014.09765625,10.724387,10724.387 +7140,2025-03-07T21:16:55.061023-08:00,1014.0928344726562,10.729725,10729.725 +7141,2025-03-07T21:17:05.783908-08:00,1014.109375,10.722885,10722.885 +7142,2025-03-07T21:17:16.514936-08:00,1014.1162719726562,10.731028,10731.028 +7143,2025-03-07T21:17:27.240911-08:00,1014.1325073242188,10.725975,10725.975 +7144,2025-03-07T21:17:37.971814-08:00,1014.1096801757812,10.730903,10730.903 +7145,2025-03-07T21:17:48.691120-08:00,1014.122802734375,10.719306,10719.306 +7146,2025-03-07T21:17:59.426912-08:00,1014.1077880859375,10.735792,10735.792 +7147,2025-03-07T21:18:10.147934-08:00,1014.1077880859375,10.721022,10721.022 +7148,2025-03-07T21:18:20.870910-08:00,1014.0996704101562,10.722976,10722.976 +7149,2025-03-07T21:18:31.600108-08:00,1014.1475219726562,10.729198,10729.198 +7150,2025-03-07T21:18:42.326906-08:00,1014.1426391601562,10.726798,10726.798 +7151,2025-03-07T21:18:53.059912-08:00,1014.122802734375,10.733006,10733.006 +7152,2025-03-07T21:19:03.779217-08:00,1014.0879516601562,10.719305,10719.305 +7153,2025-03-07T21:19:14.505969-08:00,1014.08984375,10.726752,10726.752 +7154,2025-03-07T21:19:25.241745-08:00,1014.1045532226562,10.735776,10735.776 +7155,2025-03-07T21:19:35.961909-08:00,1014.1177978515625,10.720164,10720.164 +7156,2025-03-07T21:19:46.693943-08:00,1014.1192016601562,10.732034,10732.034 +7157,2025-03-07T21:19:57.415936-08:00,1014.1060791015625,10.721993,10721.993 +7158,2025-03-07T21:20:08.140946-08:00,1014.0797119140625,10.72501,10725.01 +7159,2025-03-07T21:20:18.872080-08:00,1014.127685546875,10.731134,10731.134 +7160,2025-03-07T21:20:29.604119-08:00,1014.091064453125,10.732039,10732.039 +7161,2025-03-07T21:20:40.321984-08:00,1014.1060791015625,10.717865,10717.865 +7162,2025-03-07T21:20:51.048911-08:00,1014.0878295898438,10.726927,10726.927 +7163,2025-03-07T21:21:01.783552-08:00,1014.0797119140625,10.734641,10734.641 +7164,2025-03-07T21:21:12.503092-08:00,1014.091064453125,10.71954,10719.54 +7165,2025-03-07T21:21:23.235976-08:00,1014.064697265625,10.732884,10732.884 +7166,2025-03-07T21:21:33.961906-08:00,1014.0662231445312,10.72593,10725.93 +7167,2025-03-07T21:21:44.700265-08:00,1014.0610961914062,10.738359,10738.359 +7168,2025-03-07T21:21:55.421904-08:00,1014.084228515625,10.721639,10721.639 +7169,2025-03-07T21:22:06.150134-08:00,1014.055908203125,10.72823,10728.23 +7170,2025-03-07T21:22:16.881181-08:00,1014.072509765625,10.731047,10731.047 +7171,2025-03-07T21:22:27.611908-08:00,1014.0476684570312,10.730727,10730.727 +7172,2025-03-07T21:22:38.337929-08:00,1014.092041015625,10.726021,10726.021 +7173,2025-03-07T21:22:49.067932-08:00,1014.0789184570312,10.730003,10730.003 +7174,2025-03-07T21:22:59.797973-08:00,1014.0639038085938,10.730041,10730.041 +7175,2025-03-07T21:23:10.527605-08:00,1014.03076171875,10.729632,10729.632 +7176,2025-03-07T21:23:21.255913-08:00,1014.065673828125,10.728308,10728.308 +7177,2025-03-07T21:23:31.982920-08:00,1014.042236328125,10.727007,10727.007 +7178,2025-03-07T21:23:42.714301-08:00,1014.0176391601562,10.731381,10731.381 +7179,2025-03-07T21:23:53.443908-08:00,1014.0587768554688,10.729607,10729.607 +7180,2025-03-07T21:24:04.180109-08:00,1014.060302734375,10.736201,10736.201 +7181,2025-03-07T21:24:14.913146-08:00,1014.05517578125,10.733037,10733.037 +7182,2025-03-07T21:24:25.645079-08:00,1014.0371704101562,10.731933,10731.933 +7183,2025-03-07T21:24:36.380911-08:00,1014.0189208984375,10.735832,10735.832 +7184,2025-03-07T21:24:47.107979-08:00,1014.005615234375,10.727068,10727.068 +7185,2025-03-07T21:24:57.840559-08:00,1014.0240478515625,10.73258,10732.58 +7186,2025-03-07T21:25:08.570389-08:00,1014.020751953125,10.72983,10729.83 +7187,2025-03-07T21:25:19.295080-08:00,1014.022216796875,10.724691,10724.691 +7188,2025-03-07T21:25:30.029081-08:00,1014.0387573242188,10.734001,10734.001 +7189,2025-03-07T21:25:40.751909-08:00,1014.010498046875,10.722828,10722.828 +7190,2025-03-07T21:25:51.488936-08:00,1014.03515625,10.737027,10737.027 +7191,2025-03-07T21:26:02.219930-08:00,1014.0087280273438,10.730994,10730.994 +7192,2025-03-07T21:26:12.941909-08:00,1013.9774780273438,10.721979,10721.979 +7193,2025-03-07T21:26:23.670088-08:00,1014.0069580078125,10.728179,10728.179 +7194,2025-03-07T21:26:34.403907-08:00,1014.0003051757812,10.733819,10733.819 +7195,2025-03-07T21:26:45.134171-08:00,1013.9838256835938,10.730264,10730.264 +7196,2025-03-07T21:26:55.865092-08:00,1014.005126953125,10.730921,10730.921 +7197,2025-03-07T21:27:06.591911-08:00,1013.9868774414062,10.726819,10726.819 +7198,2025-03-07T21:27:17.324988-08:00,1013.9901733398438,10.733077,10733.077 +7199,2025-03-07T21:27:28.052091-08:00,1014.0048217773438,10.727103,10727.103 +7200,2025-03-07T21:27:38.779149-08:00,1013.9735717773438,10.727058,10727.058 +7201,2025-03-07T21:27:49.508912-08:00,1013.99169921875,10.729763,10729.763 +7202,2025-03-07T21:28:00.236935-08:00,1014.0048217773438,10.728023,10728.023 +7203,2025-03-07T21:28:10.972916-08:00,1013.97998046875,10.735981,10735.981 +7204,2025-03-07T21:28:21.700099-08:00,1013.9667358398438,10.727183,10727.183 +7205,2025-03-07T21:28:32.424908-08:00,1013.989501953125,10.724809,10724.809 +7206,2025-03-07T21:28:43.154906-08:00,1014.0159912109375,10.729998,10729.998 +7207,2025-03-07T21:28:53.887137-08:00,1013.9961547851562,10.732231,10732.231 +7208,2025-03-07T21:29:04.617317-08:00,1014.0057983398438,10.73018,10730.18 +7209,2025-03-07T21:29:15.346910-08:00,1013.9925537109375,10.729593,10729.593 +7210,2025-03-07T21:29:26.074085-08:00,1013.9841918945312,10.727175,10727.175 +7211,2025-03-07T21:29:36.808906-08:00,1014.012451171875,10.734821,10734.821 +7212,2025-03-07T21:29:47.532912-08:00,1014.00732421875,10.724006,10724.006 +7213,2025-03-07T21:29:58.262078-08:00,1014.0087280273438,10.729166,10729.166 +7214,2025-03-07T21:30:08.990907-08:00,1013.9974365234375,10.728829,10728.829 +7215,2025-03-07T21:30:19.726913-08:00,1014.0120849609375,10.736006,10736.006 +7216,2025-03-07T21:30:30.450980-08:00,1013.9871826171875,10.724067,10724.067 +7217,2025-03-07T21:30:41.184907-08:00,1013.9920043945312,10.733927,10733.927 +7218,2025-03-07T21:30:51.911906-08:00,1014.0133056640625,10.726999,10726.999 +7219,2025-03-07T21:31:02.636156-08:00,1013.9901733398438,10.72425,10724.25 +7220,2025-03-07T21:31:13.365910-08:00,1013.998291015625,10.729754,10729.754 +7221,2025-03-07T21:31:24.099361-08:00,1014.0262451171875,10.733451,10733.451 +7222,2025-03-07T21:31:34.829879-08:00,1014.0159912109375,10.730518,10730.518 +7223,2025-03-07T21:31:45.554979-08:00,1014.01123046875,10.7251,10725.1 +7224,2025-03-07T21:31:56.279223-08:00,1014.0274047851562,10.724244,10724.244 +7225,2025-03-07T21:32:07.016933-08:00,1014.0123291015625,10.73771,10737.71 +7226,2025-03-07T21:32:17.745913-08:00,1014.0370483398438,10.72898,10728.98 +7227,2025-03-07T21:32:28.470332-08:00,1014.028564453125,10.724419,10724.419 +7228,2025-03-07T21:32:39.207957-08:00,1014.0318603515625,10.737625,10737.625 +7229,2025-03-07T21:32:49.929018-08:00,1014.0234985351562,10.721061,10721.061 +7230,2025-03-07T21:33:00.666103-08:00,1014.0595092773438,10.737085,10737.085 +7231,2025-03-07T21:33:11.400064-08:00,1014.0577392578125,10.733961,10733.961 +7232,2025-03-07T21:33:22.130363-08:00,1014.0426635742188,10.730299,10730.299 +7233,2025-03-07T21:33:32.862452-08:00,1014.029541015625,10.732089,10732.089 +7234,2025-03-07T21:33:43.591911-08:00,1014.0343017578125,10.729459,10729.459 +7235,2025-03-07T21:33:54.314904-08:00,1014.0471801757812,10.722993,10722.993 +7236,2025-03-07T21:34:05.038129-08:00,1014.0772705078125,10.723225,10723.225 +7237,2025-03-07T21:34:15.776944-08:00,1014.0588989257812,10.738815,10738.815 +7238,2025-03-07T21:34:26.503092-08:00,1014.0703125,10.726148,10726.148 +7239,2025-03-07T21:34:37.225905-08:00,1014.0802612304688,10.722813,10722.813 +7240,2025-03-07T21:34:47.954048-08:00,1014.0784301757812,10.728143,10728.143 +7241,2025-03-07T21:34:58.681309-08:00,1014.0784301757812,10.727261,10727.261 +7242,2025-03-07T21:35:09.405909-08:00,1014.09130859375,10.7246,10724.6 +7243,2025-03-07T21:35:20.135116-08:00,1014.072998046875,10.729207,10729.207 +7244,2025-03-07T21:35:30.869035-08:00,1014.072998046875,10.733919,10733.919 +7245,2025-03-07T21:35:41.588908-08:00,1014.0910034179688,10.719873,10719.873 +7246,2025-03-07T21:35:52.321943-08:00,1014.1221923828125,10.733035,10733.035 +7247,2025-03-07T21:36:03.045120-08:00,1014.1090698242188,10.723177,10723.177 +7248,2025-03-07T21:36:13.767759-08:00,1014.105712890625,10.722639,10722.639 +7249,2025-03-07T21:36:24.489970-08:00,1014.1006469726562,10.722211,10722.211 +7250,2025-03-07T21:36:35.220980-08:00,1014.0972900390625,10.73101,10731.01 +7251,2025-03-07T21:36:45.947309-08:00,1014.0935668945312,10.726329,10726.329 +7252,2025-03-07T21:36:56.676356-08:00,1014.1218872070312,10.729047,10729.047 +7253,2025-03-07T21:37:07.399535-08:00,1014.1101684570312,10.723179,10723.179 +7254,2025-03-07T21:37:18.122115-08:00,1014.1366577148438,10.72258,10722.58 +7255,2025-03-07T21:37:28.844098-08:00,1014.126708984375,10.721983,10721.983 +7256,2025-03-07T21:37:39.576931-08:00,1014.1182861328125,10.732833,10732.833 +7257,2025-03-07T21:37:50.299914-08:00,1014.128173828125,10.722983,10722.983 +7258,2025-03-07T21:38:01.028086-08:00,1014.1017456054688,10.728172,10728.172 +7259,2025-03-07T21:38:11.755014-08:00,1014.103271484375,10.726928,10726.928 +7260,2025-03-07T21:38:22.485915-08:00,1014.103271484375,10.730901,10730.901 +7261,2025-03-07T21:38:33.207952-08:00,1014.1146240234375,10.722037,10722.037 +7262,2025-03-07T21:38:43.935079-08:00,1014.0999145507812,10.727127,10727.127 +7263,2025-03-07T21:38:54.671601-08:00,1014.0948486328125,10.736522,10736.522 +7264,2025-03-07T21:39:05.395909-08:00,1014.1296997070312,10.724308,10724.308 +7265,2025-03-07T21:39:16.112980-08:00,1014.10986328125,10.717071,10717.071 +7266,2025-03-07T21:39:26.849082-08:00,1014.0965576171875,10.736102,10736.102 +7267,2025-03-07T21:39:37.565328-08:00,1014.107666015625,10.716246,10716.246 +7268,2025-03-07T21:39:48.299090-08:00,1014.11279296875,10.733762,10733.762 +7269,2025-03-07T21:39:59.025911-08:00,1014.11279296875,10.726821,10726.821 +7270,2025-03-07T21:40:09.749201-08:00,1014.09814453125,10.72329,10723.29 +7271,2025-03-07T21:40:20.471908-08:00,1014.111328125,10.722707,10722.707 +7272,2025-03-07T21:40:31.205100-08:00,1014.1260375976562,10.733192,10733.192 +7273,2025-03-07T21:40:41.930359-08:00,1014.09814453125,10.725259,10725.259 +7274,2025-03-07T21:40:52.651141-08:00,1014.0995483398438,10.720782,10720.782 +7275,2025-03-07T21:41:03.376095-08:00,1014.09814453125,10.724954,10724.954 +7276,2025-03-07T21:41:14.102911-08:00,1014.111328125,10.726816,10726.816 +7277,2025-03-07T21:41:24.837910-08:00,1014.0518188476562,10.734999,10734.999 +7278,2025-03-07T21:41:35.568085-08:00,1014.0848388671875,10.730175,10730.175 +7279,2025-03-07T21:41:46.293118-08:00,1014.0767211914062,10.725033,10725.033 +7280,2025-03-07T21:41:57.028911-08:00,1014.0900268554688,10.735793,10735.793 +7281,2025-03-07T21:42:07.755606-08:00,1014.0602416992188,10.726695,10726.695 +7282,2025-03-07T21:42:18.484905-08:00,1014.091796875,10.729299,10729.299 +7283,2025-03-07T21:42:29.221906-08:00,1014.0734252929688,10.737001,10737.001 +7284,2025-03-07T21:42:39.946386-08:00,1014.088134765625,10.72448,10724.48 +7285,2025-03-07T21:42:50.675908-08:00,1014.0999145507812,10.729522,10729.522 +7286,2025-03-07T21:43:01.402911-08:00,1014.091796875,10.727003,10727.003 +7287,2025-03-07T21:43:12.137696-08:00,1014.0851440429688,10.734785,10734.785 +7288,2025-03-07T21:43:22.856936-08:00,1014.06689453125,10.71924,10719.24 +7289,2025-03-07T21:43:33.586107-08:00,1014.0851440429688,10.729171,10729.171 +7290,2025-03-07T21:43:44.307116-08:00,1014.0388793945312,10.721009,10721.009 +7291,2025-03-07T21:43:55.039981-08:00,1014.0767211914062,10.732865,10732.865 +7292,2025-03-07T21:44:05.769104-08:00,1014.0671997070312,10.729123,10729.123 +7293,2025-03-07T21:44:16.495112-08:00,1014.0421752929688,10.726008,10726.008 +7294,2025-03-07T21:44:27.222017-08:00,1014.0289916992188,10.726905,10726.905 +7295,2025-03-07T21:44:37.951944-08:00,1014.0323486328125,10.729927,10729.927 +7296,2025-03-07T21:44:48.676124-08:00,1014.0323486328125,10.72418,10724.18 +7297,2025-03-07T21:44:59.407748-08:00,1014.0521850585938,10.731624,10731.624 +7298,2025-03-07T21:45:10.136958-08:00,1014.03076171875,10.72921,10729.21 +7299,2025-03-07T21:45:20.863098-08:00,1014.0293579101562,10.72614,10726.14 +7300,2025-03-07T21:45:31.584090-08:00,1014.0704956054688,10.720992,10720.992 +7301,2025-03-07T21:45:42.313912-08:00,1014.0671997070312,10.729822,10729.822 +7302,2025-03-07T21:45:53.047109-08:00,1014.0606079101562,10.733197,10733.197 +7303,2025-03-07T21:46:03.773908-08:00,1014.0606079101562,10.726799,10726.799 +7304,2025-03-07T21:46:14.506996-08:00,1014.065673828125,10.733088,10733.088 +7305,2025-03-07T21:46:25.237099-08:00,1014.0840454101562,10.730103,10730.103 +7306,2025-03-07T21:46:35.958938-08:00,1014.0609130859375,10.721839,10721.839 +7307,2025-03-07T21:46:46.697189-08:00,1014.0822143554688,10.738251,10738.251 +7308,2025-03-07T21:46:57.418999-08:00,1014.0623168945312,10.72181,10721.81 +7309,2025-03-07T21:47:08.148052-08:00,1014.0792236328125,10.729053,10729.053 +7310,2025-03-07T21:47:18.877928-08:00,1014.0609130859375,10.729876,10729.876 +7311,2025-03-07T21:47:29.606909-08:00,1014.0858764648438,10.728981,10728.981 +7312,2025-03-07T21:47:40.330983-08:00,1014.0909423828125,10.724074,10724.074 +7313,2025-03-07T21:47:51.059335-08:00,1014.104248046875,10.728352,10728.352 +7314,2025-03-07T21:48:01.785906-08:00,1014.0892333984375,10.726571,10726.571 +7315,2025-03-07T21:48:12.517102-08:00,1014.0795288085938,10.731196,10731.196 +7316,2025-03-07T21:48:23.238117-08:00,1014.0811157226562,10.721015,10721.015 +7317,2025-03-07T21:48:33.966030-08:00,1014.1141357421875,10.727913,10727.913 +7318,2025-03-07T21:48:44.690940-08:00,1014.1126708984375,10.72491,10724.91 +7319,2025-03-07T21:48:55.416910-08:00,1014.0960693359375,10.72597,10725.97 +7320,2025-03-07T21:49:06.145248-08:00,1014.1240844726562,10.728338,10728.338 +7321,2025-03-07T21:49:16.859908-08:00,1014.115966796875,10.71466,10714.66 +7322,2025-03-07T21:49:27.593362-08:00,1014.1456909179688,10.733454,10733.454 +7323,2025-03-07T21:49:38.313127-08:00,1014.13427734375,10.719765,10719.765 +7324,2025-03-07T21:49:49.036510-08:00,1014.12109375,10.723383,10723.383 +7325,2025-03-07T21:49:59.763090-08:00,1014.1439208984375,10.72658,10726.58 +7326,2025-03-07T21:50:10.492116-08:00,1014.1541137695312,10.729026,10729.026 +7327,2025-03-07T21:50:21.214991-08:00,1014.1456909179688,10.722875,10722.875 +7328,2025-03-07T21:50:31.948120-08:00,1014.1787719726562,10.733129,10733.129 +7329,2025-03-07T21:50:42.679314-08:00,1014.188720703125,10.731194,10731.194 +7330,2025-03-07T21:50:53.413089-08:00,1014.1787719726562,10.733775,10733.775 +7331,2025-03-07T21:51:04.132958-08:00,1014.1838989257812,10.719869,10719.869 +7332,2025-03-07T21:51:14.858349-08:00,1014.1890869140625,10.725391,10725.391 +7333,2025-03-07T21:51:25.586909-08:00,1014.1838989257812,10.72856,10728.56 +7334,2025-03-07T21:51:36.317910-08:00,1014.16259765625,10.731001,10731.001 +7335,2025-03-07T21:51:47.043830-08:00,1014.2089233398438,10.72592,10725.92 +7336,2025-03-07T21:51:57.778015-08:00,1014.1923217773438,10.734185,10734.185 +7337,2025-03-07T21:52:08.500914-08:00,1014.213623046875,10.722899,10722.899 +7338,2025-03-07T21:52:19.243301-08:00,1014.20703125,10.742387,10742.387 +7339,2025-03-07T21:52:29.971243-08:00,1014.2040405273438,10.727942,10727.942 +7340,2025-03-07T21:52:40.703216-08:00,1014.21875,10.731973,10731.973 +7341,2025-03-07T21:52:51.427033-08:00,1014.23046875,10.723817,10723.817 +7342,2025-03-07T21:53:02.155225-08:00,1014.23046875,10.728192,10728.192 +7343,2025-03-07T21:53:12.877036-08:00,1014.2290649414062,10.721811,10721.811 +7344,2025-03-07T21:53:23.613039-08:00,1014.2223510742188,10.736003,10736.003 +7345,2025-03-07T21:53:34.333035-08:00,1014.2421875,10.719996,10719.996 +7346,2025-03-07T21:53:45.058253-08:00,1014.2371215820312,10.725218,10725.218 +7347,2025-03-07T21:53:55.791149-08:00,1014.235595703125,10.732896,10732.896 +7348,2025-03-07T21:54:06.517036-08:00,1014.235595703125,10.725887,10725.887 +7349,2025-03-07T21:54:17.240266-08:00,1014.2455444335938,10.72323,10723.23 +7350,2025-03-07T21:54:27.973371-08:00,1014.2337646484375,10.733105,10733.105 +7351,2025-03-07T21:54:38.698038-08:00,1014.2323608398438,10.724667,10724.667 +7352,2025-03-07T21:54:49.419214-08:00,1014.265380859375,10.721176,10721.176 +7353,2025-03-07T21:55:00.149702-08:00,1014.2488403320312,10.730488,10730.488 +7354,2025-03-07T21:55:10.874264-08:00,1014.2572631835938,10.724562,10724.562 +7355,2025-03-07T21:55:21.610426-08:00,1014.2440795898438,10.736162,10736.162 +7356,2025-03-07T21:55:32.343171-08:00,1014.2506103515625,10.732745,10732.745 +7357,2025-03-07T21:55:43.074806-08:00,1014.263916015625,10.731635,10731.635 +7358,2025-03-07T21:55:53.809182-08:00,1014.2274780273438,10.734376,10734.376 +7359,2025-03-07T21:56:04.534038-08:00,1014.25390625,10.724856,10724.856 +7360,2025-03-07T21:56:15.267094-08:00,1014.2554931640625,10.733056,10733.056 +7361,2025-03-07T21:56:25.990506-08:00,1014.245849609375,10.723412,10723.412 +7362,2025-03-07T21:56:36.717038-08:00,1014.245849609375,10.726532,10726.532 +7363,2025-03-07T21:56:47.447109-08:00,1014.2506103515625,10.730071,10730.071 +7364,2025-03-07T21:56:58.180109-08:00,1014.2525024414062,10.733,10733.0 +7365,2025-03-07T21:57:08.906239-08:00,1014.2572631835938,10.72613,10726.13 +7366,2025-03-07T21:57:19.633218-08:00,1014.2424926757812,10.726979,10726.979 +7367,2025-03-07T21:57:30.360127-08:00,1014.275634765625,10.726909,10726.909 +7368,2025-03-07T21:57:41.091032-08:00,1014.2587280273438,10.730905,10730.905 +7369,2025-03-07T21:57:51.823205-08:00,1014.2587280273438,10.732173,10732.173 +7370,2025-03-07T21:58:02.545038-08:00,1014.2623291015625,10.721833,10721.833 +7371,2025-03-07T21:58:13.278228-08:00,1014.25390625,10.73319,10733.19 +7372,2025-03-07T21:58:23.998041-08:00,1014.2525024414062,10.719813,10719.813 +7373,2025-03-07T21:58:34.728039-08:00,1014.302001953125,10.729998,10729.998 +7374,2025-03-07T21:58:45.456252-08:00,1014.2722778320312,10.728213,10728.213 +7375,2025-03-07T21:58:56.181040-08:00,1014.2759399414062,10.724788,10724.788 +7376,2025-03-07T21:59:06.917254-08:00,1014.2740478515625,10.736214,10736.214 +7377,2025-03-07T21:59:17.642586-08:00,1014.2924194335938,10.725332,10725.332 +7378,2025-03-07T21:59:28.371035-08:00,1014.287353515625,10.728449,10728.449 +7379,2025-03-07T21:59:39.100342-08:00,1014.2857666015625,10.729307,10729.307 +7380,2025-03-07T21:59:49.824037-08:00,1014.2759399414062,10.723695,10723.695 +7381,2025-03-07T22:00:00.559078-08:00,1014.2728881835938,10.735041,10735.041 +7382,2025-03-07T22:00:11.284437-08:00,1014.281005859375,10.725359,10725.359 +7383,2025-03-07T22:00:22.010100-08:00,1014.279541015625,10.725663,10725.663 +7384,2025-03-07T22:00:32.743087-08:00,1014.3158569335938,10.732987,10732.987 +7385,2025-03-07T22:00:43.470428-08:00,1014.2963256835938,10.727341,10727.341 +7386,2025-03-07T22:00:54.199035-08:00,1014.2882690429688,10.728607,10728.607 +7387,2025-03-07T22:01:04.929258-08:00,1014.2816162109375,10.730223,10730.223 +7388,2025-03-07T22:01:15.649138-08:00,1014.3114013671875,10.71988,10719.88 +7389,2025-03-07T22:01:26.384037-08:00,1014.3231201171875,10.734899,10734.899 +7390,2025-03-07T22:01:37.112204-08:00,1014.3297119140625,10.728167,10728.167 +7391,2025-03-07T22:01:47.843208-08:00,1014.2867431640625,10.731004,10731.004 +7392,2025-03-07T22:01:58.566225-08:00,1014.2932739257812,10.723017,10723.017 +7393,2025-03-07T22:02:09.299402-08:00,1014.3197631835938,10.733177,10733.177 +7394,2025-03-07T22:02:20.020112-08:00,1014.3117065429688,10.72071,10720.71 +7395,2025-03-07T22:02:30.743247-08:00,1014.3329467773438,10.723135,10723.135 +7396,2025-03-07T22:02:41.472037-08:00,1014.3314819335938,10.72879,10728.79 +7397,2025-03-07T22:02:52.194457-08:00,1014.3016967773438,10.72242,10722.42 +7398,2025-03-07T22:03:02.912036-08:00,1014.3231201171875,10.717579,10717.579 +7399,2025-03-07T22:03:13.648104-08:00,1014.3150024414062,10.736068,10736.068 +7400,2025-03-07T22:03:24.373233-08:00,1014.3134155273438,10.725129,10725.129 +7401,2025-03-07T22:03:35.094033-08:00,1014.3314819335938,10.7208,10720.8 +7402,2025-03-07T22:03:45.826713-08:00,1014.3446655273438,10.73268,10732.68 +7403,2025-03-07T22:03:56.543039-08:00,1014.3512573242188,10.716326,10716.326 +7404,2025-03-07T22:04:07.273040-08:00,1014.3482666015625,10.730001,10730.001 +7405,2025-03-07T22:04:18.002189-08:00,1014.3843994140625,10.729149,10729.149 +7406,2025-03-07T22:04:28.730236-08:00,1014.3563842773438,10.728047,10728.047 +7407,2025-03-07T22:04:39.458212-08:00,1014.3464965820312,10.727976,10727.976 +7408,2025-03-07T22:04:50.185038-08:00,1014.3596801757812,10.726826,10726.826 +7409,2025-03-07T22:05:00.911334-08:00,1014.3814086914062,10.726296,10726.296 +7410,2025-03-07T22:05:11.640075-08:00,1014.39453125,10.728741,10728.741 +7411,2025-03-07T22:05:22.362371-08:00,1014.3861083984375,10.722296,10722.296 +7412,2025-03-07T22:05:33.087834-08:00,1014.3795166015625,10.725463,10725.463 +7413,2025-03-07T22:05:43.813032-08:00,1014.3847045898438,10.725198,10725.198 +7414,2025-03-07T22:05:54.537686-08:00,1014.3831176757812,10.724654,10724.654 +7415,2025-03-07T22:06:05.255164-08:00,1014.368408203125,10.717478,10717.478 +7416,2025-03-07T22:06:15.984468-08:00,1014.4029541015625,10.729304,10729.304 +7417,2025-03-07T22:06:26.712563-08:00,1014.3816528320312,10.728095,10728.095 +7418,2025-03-07T22:06:37.432119-08:00,1014.3585205078125,10.719556,10719.556 +7419,2025-03-07T22:06:48.158342-08:00,1014.3768920898438,10.726223,10726.223 +7420,2025-03-07T22:06:58.892036-08:00,1014.3900756835938,10.733694,10733.694 +7421,2025-03-07T22:07:09.620234-08:00,1014.3984375,10.728198,10728.198 +7422,2025-03-07T22:07:20.343427-08:00,1014.4032592773438,10.723193,10723.193 +7423,2025-03-07T22:07:31.071037-08:00,1014.4068603515625,10.72761,10727.61 +7424,2025-03-07T22:07:41.793060-08:00,1014.37890625,10.722023,10722.023 +7425,2025-03-07T22:07:52.517417-08:00,1014.3890380859375,10.724357,10724.357 +7426,2025-03-07T22:08:03.248255-08:00,1014.4221801757812,10.730838,10730.838 +7427,2025-03-07T22:08:13.981037-08:00,1014.451904296875,10.732782,10732.782 +7428,2025-03-07T22:08:24.700481-08:00,1014.445556640625,10.719444,10719.444 +7429,2025-03-07T22:08:35.435827-08:00,1014.4506225585938,10.735346,10735.346 +7430,2025-03-07T22:08:46.159450-08:00,1014.4277954101562,10.723623,10723.623 +7431,2025-03-07T22:08:56.884436-08:00,1014.419921875,10.724986,10724.986 +7432,2025-03-07T22:09:07.619096-08:00,1014.4664306640625,10.73466,10734.66 +7433,2025-03-07T22:09:18.345063-08:00,1014.4517211914062,10.725967,10725.967 +7434,2025-03-07T22:09:29.070616-08:00,1014.4567260742188,10.725553,10725.553 +7435,2025-03-07T22:09:39.790096-08:00,1014.447021484375,10.71948,10719.48 +7436,2025-03-07T22:09:50.519234-08:00,1014.4572143554688,10.729138,10729.138 +7437,2025-03-07T22:10:01.243102-08:00,1014.4656372070312,10.723868,10723.868 +7438,2025-03-07T22:10:11.971038-08:00,1014.4739990234375,10.727936,10727.936 +7439,2025-03-07T22:10:22.696038-08:00,1014.4790649414062,10.725,10725.0 +7440,2025-03-07T22:10:33.418452-08:00,1014.4940795898438,10.722414,10722.414 +7441,2025-03-07T22:10:44.143132-08:00,1014.4993896484375,10.72468,10724.68 +7442,2025-03-07T22:10:54.874038-08:00,1014.514404296875,10.730906,10730.906 +7443,2025-03-07T22:11:05.610039-08:00,1014.509521484375,10.736001,10736.001 +7444,2025-03-07T22:11:16.337278-08:00,1014.4635009765625,10.727239,10727.239 +7445,2025-03-07T22:11:27.063044-08:00,1014.4964599609375,10.725766,10725.766 +7446,2025-03-07T22:11:37.797220-08:00,1014.4916381835938,10.734176,10734.176 +7447,2025-03-07T22:11:48.528105-08:00,1014.4589233398438,10.730885,10730.885 +7448,2025-03-07T22:11:59.251040-08:00,1014.4918823242188,10.722935,10722.935 +7449,2025-03-07T22:12:09.982281-08:00,1014.4723510742188,10.731241,10731.241 +7450,2025-03-07T22:12:20.716312-08:00,1014.5038452148438,10.734031,10734.031 +7451,2025-03-07T22:12:31.441721-08:00,1014.4756469726562,10.725409,10725.409 +7452,2025-03-07T22:12:42.173227-08:00,1014.51513671875,10.731506,10731.506 +7453,2025-03-07T22:12:52.901098-08:00,1014.4905395507812,10.727871,10727.871 +7454,2025-03-07T22:13:03.627250-08:00,1014.5037231445312,10.726152,10726.152 +7455,2025-03-07T22:13:14.360215-08:00,1014.4860229492188,10.732965,10732.965 +7456,2025-03-07T22:13:25.090039-08:00,1014.5007934570312,10.729824,10729.824 +7457,2025-03-07T22:13:35.820208-08:00,1014.497314453125,10.730169,10730.169 +7458,2025-03-07T22:13:46.547718-08:00,1014.5039672851562,10.72751,10727.51 +7459,2025-03-07T22:13:57.275039-08:00,1014.5238037109375,10.727321,10727.321 +7460,2025-03-07T22:14:08.004057-08:00,1014.497314453125,10.729018,10729.018 +7461,2025-03-07T22:14:18.734156-08:00,1014.5354614257812,10.730099,10730.099 +7462,2025-03-07T22:14:29.461525-08:00,1014.5025024414062,10.727369,10727.369 +7463,2025-03-07T22:14:40.196219-08:00,1014.5106201171875,10.734694,10734.694 +7464,2025-03-07T22:14:50.924239-08:00,1014.5172119140625,10.72802,10728.02 +7465,2025-03-07T22:15:01.651178-08:00,1014.5039672851562,10.726939,10726.939 +7466,2025-03-07T22:15:12.389039-08:00,1014.509033203125,10.737861,10737.861 +7467,2025-03-07T22:15:23.111035-08:00,1014.509033203125,10.721996,10721.996 +7468,2025-03-07T22:15:33.843238-08:00,1014.5321655273438,10.732203,10732.203 +7469,2025-03-07T22:15:44.568450-08:00,1014.51904296875,10.725212,10725.212 +7470,2025-03-07T22:15:55.295038-08:00,1014.5057983398438,10.726588,10726.588 +7471,2025-03-07T22:16:06.027100-08:00,1014.513916015625,10.732062,10732.062 +7472,2025-03-07T22:16:16.755063-08:00,1014.5089111328125,10.727963,10727.963 +7473,2025-03-07T22:16:27.485151-08:00,1014.513916015625,10.730088,10730.088 +7474,2025-03-07T22:16:38.216516-08:00,1014.5187377929688,10.731365,10731.365 +7475,2025-03-07T22:16:48.938164-08:00,1014.525390625,10.721648,10721.648 +7476,2025-03-07T22:16:59.671037-08:00,1014.5482788085938,10.732873,10732.873 +7477,2025-03-07T22:17:10.401415-08:00,1014.5302124023438,10.730378,10730.378 +7478,2025-03-07T22:17:21.133299-08:00,1014.53173828125,10.731884,10731.884 +7479,2025-03-07T22:17:31.855355-08:00,1014.5449829101562,10.722056,10722.056 +7480,2025-03-07T22:17:42.586217-08:00,1014.513427734375,10.730862,10730.862 +7481,2025-03-07T22:17:53.322033-08:00,1014.543212890625,10.735816,10735.816 +7482,2025-03-07T22:18:04.055107-08:00,1014.5153198242188,10.733074,10733.074 +7483,2025-03-07T22:18:14.785400-08:00,1014.5315551757812,10.730293,10730.293 +7484,2025-03-07T22:18:25.516174-08:00,1014.5465698242188,10.730774,10730.774 +7485,2025-03-07T22:18:36.244127-08:00,1014.5348510742188,10.727953,10727.953 +7486,2025-03-07T22:18:46.967433-08:00,1014.537841796875,10.723306,10723.306 +7487,2025-03-07T22:18:57.697110-08:00,1014.5198364257812,10.729677,10729.677 +7488,2025-03-07T22:19:08.423115-08:00,1014.54931640625,10.726005,10726.005 +7489,2025-03-07T22:19:19.154331-08:00,1014.5067138671875,10.731216,10731.216 +7490,2025-03-07T22:19:29.891036-08:00,1014.5445556640625,10.736705,10736.705 +7491,2025-03-07T22:19:40.614209-08:00,1014.5211181640625,10.723173,10723.173 +7492,2025-03-07T22:19:51.346033-08:00,1014.555908203125,10.731824,10731.824 +7493,2025-03-07T22:20:02.075320-08:00,1014.5523681640625,10.729287,10729.287 +7494,2025-03-07T22:20:12.799202-08:00,1014.5343627929688,10.723882,10723.882 +7495,2025-03-07T22:20:23.537123-08:00,1014.5293579101562,10.737921,10737.921 +7496,2025-03-07T22:20:34.262248-08:00,1014.552490234375,10.725125,10725.125 +7497,2025-03-07T22:20:44.998221-08:00,1014.5671997070312,10.735973,10735.973 +7498,2025-03-07T22:20:55.726223-08:00,1014.5606079101562,10.728002,10728.002 +7499,2025-03-07T22:21:06.451250-08:00,1014.558837890625,10.725027,10725.027 +7500,2025-03-07T22:21:17.181208-08:00,1014.5618896484375,10.729958,10729.958 +7501,2025-03-07T22:21:27.908039-08:00,1014.5504760742188,10.726831,10726.831 +7502,2025-03-07T22:21:38.641346-08:00,1014.578369140625,10.733307,10733.307 +7503,2025-03-07T22:21:49.367377-08:00,1014.5751342773438,10.726031,10726.031 +7504,2025-03-07T22:22:00.098038-08:00,1014.5700073242188,10.730661,10730.661 +7505,2025-03-07T22:22:10.824288-08:00,1014.578125,10.72625,10726.25 +7506,2025-03-07T22:22:21.554063-08:00,1014.5865478515625,10.729775,10729.775 +7507,2025-03-07T22:22:32.289045-08:00,1014.602783203125,10.734982,10734.982 +7508,2025-03-07T22:22:43.016460-08:00,1014.564697265625,10.727415,10727.415 +7509,2025-03-07T22:22:53.747178-08:00,1014.5812377929688,10.730718,10730.718 +7510,2025-03-07T22:23:04.469038-08:00,1014.5826416015625,10.72186,10721.86 +7511,2025-03-07T22:23:15.200437-08:00,1014.5845336914062,10.731399,10731.399 +7512,2025-03-07T22:23:25.933036-08:00,1014.564697265625,10.732599,10732.599 +7513,2025-03-07T22:23:36.664034-08:00,1014.6091918945312,10.730998,10730.998 +7514,2025-03-07T22:23:47.389413-08:00,1014.5989990234375,10.725379,10725.379 +7515,2025-03-07T22:23:58.123064-08:00,1014.607421875,10.733651,10733.651 +7516,2025-03-07T22:24:08.846219-08:00,1014.58251953125,10.723155,10723.155 +7517,2025-03-07T22:24:19.581427-08:00,1014.62548828125,10.735208,10735.208 +7518,2025-03-07T22:24:30.303036-08:00,1014.5990600585938,10.721609,10721.609 +7519,2025-03-07T22:24:41.029894-08:00,1014.608642578125,10.726858,10726.858 +7520,2025-03-07T22:24:51.764246-08:00,1014.6317749023438,10.734352,10734.352 +7521,2025-03-07T22:25:02.499071-08:00,1014.6054077148438,10.734825,10734.825 +7522,2025-03-07T22:25:13.226117-08:00,1014.5936889648438,10.727046,10727.046 +7523,2025-03-07T22:25:23.955638-08:00,1014.623779296875,10.729521,10729.521 +7524,2025-03-07T22:25:34.692465-08:00,1014.626708984375,10.736827,10736.827 +7525,2025-03-07T22:25:45.424253-08:00,1014.6021728515625,10.731788,10731.788 +7526,2025-03-07T22:25:56.156362-08:00,1014.6300659179688,10.732109,10732.109 +7527,2025-03-07T22:26:06.884038-08:00,1014.6201782226562,10.727676,10727.676 +7528,2025-03-07T22:26:17.617063-08:00,1014.6135864257812,10.733025,10733.025 +7529,2025-03-07T22:26:28.348230-08:00,1014.6085205078125,10.731167,10731.167 +7530,2025-03-07T22:26:39.078454-08:00,1014.61328125,10.730224,10730.224 +7531,2025-03-07T22:26:49.813074-08:00,1014.6280517578125,10.73462,10734.62 +7532,2025-03-07T22:27:00.544622-08:00,1014.642822265625,10.731548,10731.548 +7533,2025-03-07T22:27:11.269246-08:00,1014.6181030273438,10.724624,10724.624 +7534,2025-03-07T22:27:22.005078-08:00,1014.60498046875,10.735832,10735.832 +7535,2025-03-07T22:27:32.735334-08:00,1014.63623046875,10.730256,10730.256 +7536,2025-03-07T22:27:43.463154-08:00,1014.6097412109375,10.72782,10727.82 +7537,2025-03-07T22:27:54.202038-08:00,1014.6278076171875,10.738884,10738.884 +7538,2025-03-07T22:28:04.930210-08:00,1014.6110229492188,10.728172,10728.172 +7539,2025-03-07T22:28:15.659139-08:00,1014.6356201171875,10.728929,10728.929 +7540,2025-03-07T22:28:26.388036-08:00,1014.619140625,10.728897,10728.897 +7541,2025-03-07T22:28:37.122043-08:00,1014.620361328125,10.734007,10734.007 +7542,2025-03-07T22:28:47.855484-08:00,1014.5957641601562,10.733441,10733.441 +7543,2025-03-07T22:28:58.583032-08:00,1014.6138305664062,10.727548,10727.548 +7544,2025-03-07T22:29:09.313247-08:00,1014.625244140625,10.730215,10730.215 +7545,2025-03-07T22:29:20.050427-08:00,1014.6282958984375,10.73718,10737.18 +7546,2025-03-07T22:29:30.787103-08:00,1014.6411743164062,10.736676,10736.676 +7547,2025-03-07T22:29:41.519217-08:00,1014.6113891601562,10.732114,10732.114 +7548,2025-03-07T22:29:52.253842-08:00,1014.6376342773438,10.734625,10734.625 +7549,2025-03-07T22:30:02.984336-08:00,1014.6409301757812,10.730494,10730.494 +7550,2025-03-07T22:30:13.715268-08:00,1014.6174926757812,10.730932,10730.932 +7551,2025-03-07T22:30:24.448204-08:00,1014.6422119140625,10.732936,10732.936 +7552,2025-03-07T22:30:35.187531-08:00,1014.6304931640625,10.739327,10739.327 +7553,2025-03-07T22:30:45.918036-08:00,1014.6253051757812,10.730505,10730.505 +7554,2025-03-07T22:30:56.649037-08:00,1014.598876953125,10.731001,10731.001 +7555,2025-03-07T22:31:07.375418-08:00,1014.5938110351562,10.726381,10726.381 +7556,2025-03-07T22:31:18.105061-08:00,1014.6034545898438,10.729643,10729.643 +7557,2025-03-07T22:31:28.840102-08:00,1014.5884399414062,10.735041,10735.041 +7558,2025-03-07T22:31:39.579068-08:00,1014.5571899414062,10.738966,10738.966 +7559,2025-03-07T22:31:50.307005-08:00,1014.5601806640625,10.727937,10727.937 +7560,2025-03-07T22:32:01.040246-08:00,1014.5848388671875,10.733241,10733.241 +7561,2025-03-07T22:32:11.772038-08:00,1014.5946655273438,10.731792,10731.792 +7562,2025-03-07T22:32:22.497853-08:00,1014.5697631835938,10.725815,10725.815 +7563,2025-03-07T22:32:33.234103-08:00,1014.5731201171875,10.73625,10736.25 +7564,2025-03-07T22:32:43.968037-08:00,1014.5679931640625,10.733934,10733.934 +7565,2025-03-07T22:32:54.690405-08:00,1014.60107421875,10.722368,10722.368 +7566,2025-03-07T22:33:05.422036-08:00,1014.6043701171875,10.731631,10731.631 +7567,2025-03-07T22:33:16.149037-08:00,1014.56982421875,10.727001,10727.001 +7568,2025-03-07T22:33:26.887397-08:00,1014.5779418945312,10.73836,10738.36 +7569,2025-03-07T22:33:37.615036-08:00,1014.5595092773438,10.727639,10727.639 +7570,2025-03-07T22:33:48.345039-08:00,1014.5628662109375,10.730003,10730.003 +7571,2025-03-07T22:33:59.072821-08:00,1014.57763671875,10.727782,10727.782 +7572,2025-03-07T22:34:09.809061-08:00,1014.5941162109375,10.73624,10736.24 +7573,2025-03-07T22:34:20.540037-08:00,1014.541259765625,10.730976,10730.976 +7574,2025-03-07T22:34:31.262521-08:00,1014.552978515625,10.722484,10722.484 +7575,2025-03-07T22:34:42.001060-08:00,1014.5662231445312,10.738539,10738.539 +7576,2025-03-07T22:34:52.732034-08:00,1014.5625610351562,10.730974,10730.974 +7577,2025-03-07T22:35:03.456224-08:00,1014.5328369140625,10.72419,10724.19 +7578,2025-03-07T22:35:14.188035-08:00,1014.559326171875,10.731811,10731.811 +7579,2025-03-07T22:35:24.918038-08:00,1014.5376586914062,10.730003,10730.003 +7580,2025-03-07T22:35:35.639169-08:00,1014.5526733398438,10.721131,10721.131 +7581,2025-03-07T22:35:46.369035-08:00,1014.5460815429688,10.729866,10729.866 +7582,2025-03-07T22:35:57.095226-08:00,1014.55419921875,10.726191,10726.191 +7583,2025-03-07T22:36:07.830038-08:00,1014.575439453125,10.734812,10734.812 +7584,2025-03-07T22:36:18.563035-08:00,1014.5526733398438,10.732997,10732.997 +7585,2025-03-07T22:36:29.283221-08:00,1014.5640869140625,10.720186,10720.186 +7586,2025-03-07T22:36:40.016224-08:00,1014.5574951171875,10.733003,10733.003 +7587,2025-03-07T22:36:50.747183-08:00,1014.5574951171875,10.730959,10730.959 +7588,2025-03-07T22:37:01.471969-08:00,1014.5357666015625,10.724786,10724.786 +7589,2025-03-07T22:37:12.200073-08:00,1014.549072265625,10.728104,10728.104 +7590,2025-03-07T22:37:22.930407-08:00,1014.5159301757812,10.730334,10730.334 +7591,2025-03-07T22:37:33.657060-08:00,1014.549072265625,10.726653,10726.653 +7592,2025-03-07T22:37:44.386038-08:00,1014.549072265625,10.728978,10728.978 +7593,2025-03-07T22:37:55.121464-08:00,1014.5357666015625,10.735426,10735.426 +7594,2025-03-07T22:38:05.845031-08:00,1014.5211181640625,10.723567,10723.567 +7595,2025-03-07T22:38:16.575042-08:00,1014.5159301757812,10.730011,10730.011 +7596,2025-03-07T22:38:27.303223-08:00,1014.5093994140625,10.728181,10728.181 +7597,2025-03-07T22:38:38.022375-08:00,1014.501220703125,10.719152,10719.152 +7598,2025-03-07T22:38:48.751660-08:00,1014.5145263671875,10.729285,10729.285 +7599,2025-03-07T22:38:59.481036-08:00,1014.5064086914062,10.729376,10729.376 +7600,2025-03-07T22:39:10.210237-08:00,1014.4931030273438,10.729201,10729.201 +7601,2025-03-07T22:39:20.939402-08:00,1014.4846801757812,10.729165,10729.165 +7602,2025-03-07T22:39:31.662032-08:00,1014.4946899414062,10.72263,10722.63 +7603,2025-03-07T22:39:42.390016-08:00,1014.4931030273438,10.727984,10727.984 +7604,2025-03-07T22:39:53.123529-08:00,1014.5078735351562,10.733513,10733.513 +7605,2025-03-07T22:40:03.846035-08:00,1014.5243530273438,10.722506,10722.506 +7606,2025-03-07T22:40:14.580039-08:00,1014.5262451171875,10.734004,10734.004 +7607,2025-03-07T22:40:25.307329-08:00,1014.531005859375,10.72729,10727.29 +7608,2025-03-07T22:40:36.036097-08:00,1014.544189453125,10.728768,10728.768 +7609,2025-03-07T22:40:46.759463-08:00,1014.517822265625,10.723366,10723.366 +7610,2025-03-07T22:40:57.495274-08:00,1014.541259765625,10.735811,10735.811 +7611,2025-03-07T22:41:08.216118-08:00,1014.53466796875,10.720844,10720.844 +7612,2025-03-07T22:41:18.947071-08:00,1014.5360717773438,10.730953,10730.953 +7613,2025-03-07T22:41:29.670269-08:00,1014.54638671875,10.723198,10723.198 +7614,2025-03-07T22:41:40.405305-08:00,1014.5445556640625,10.735036,10735.036 +7615,2025-03-07T22:41:51.126035-08:00,1014.5545043945312,10.72073,10720.73 +7616,2025-03-07T22:42:01.857532-08:00,1014.5643920898438,10.731497,10731.497 +7617,2025-03-07T22:42:12.591447-08:00,1014.5445556640625,10.733915,10733.915 +7618,2025-03-07T22:42:23.314096-08:00,1014.571044921875,10.722649,10722.649 +7619,2025-03-07T22:42:34.042225-08:00,1014.548095703125,10.728129,10728.129 +7620,2025-03-07T22:42:44.766086-08:00,1014.571044921875,10.723861,10723.861 +7621,2025-03-07T22:42:55.500031-08:00,1014.5548706054688,10.733945,10733.945 +7622,2025-03-07T22:43:06.228236-08:00,1014.5448608398438,10.728205,10728.205 +7623,2025-03-07T22:43:16.954233-08:00,1014.5679931640625,10.725997,10725.997 +7624,2025-03-07T22:43:27.685251-08:00,1014.5499877929688,10.731018,10731.018 +7625,2025-03-07T22:43:38.417209-08:00,1014.516845703125,10.731958,10731.958 +7626,2025-03-07T22:43:49.135037-08:00,1014.5565795898438,10.717828,10717.828 +7627,2025-03-07T22:43:59.871252-08:00,1014.5662231445312,10.736215,10736.215 +7628,2025-03-07T22:44:10.594066-08:00,1014.5614013671875,10.722814,10722.814 +7629,2025-03-07T22:44:21.323034-08:00,1014.5614013671875,10.728968,10728.968 +7630,2025-03-07T22:44:32.049213-08:00,1014.551513671875,10.726179,10726.179 +7631,2025-03-07T22:44:42.780036-08:00,1014.5845336914062,10.730823,10730.823 +7632,2025-03-07T22:44:53.504109-08:00,1014.5929565429688,10.724073,10724.073 +7633,2025-03-07T22:45:04.230118-08:00,1014.5448608398438,10.726009,10726.009 +7634,2025-03-07T22:45:14.955332-08:00,1014.5712280273438,10.725214,10725.214 +7635,2025-03-07T22:45:25.681219-08:00,1014.5628051757812,10.725887,10725.887 +7636,2025-03-07T22:45:36.412038-08:00,1014.5664672851562,10.730819,10730.819 +7637,2025-03-07T22:45:47.136051-08:00,1014.5664672851562,10.724013,10724.013 +7638,2025-03-07T22:45:57.870338-08:00,1014.576416015625,10.734287,10734.287 +7639,2025-03-07T22:46:08.595045-08:00,1014.5697631835938,10.724707,10724.707 +7640,2025-03-07T22:46:19.324227-08:00,1014.5667724609375,10.729182,10729.182 +7641,2025-03-07T22:46:30.050032-08:00,1014.5418701171875,10.725805,10725.805 +7642,2025-03-07T22:46:40.780047-08:00,1014.5617065429688,10.730015,10730.015 +7643,2025-03-07T22:46:51.504271-08:00,1014.5667724609375,10.724224,10724.224 +7644,2025-03-07T22:47:02.238406-08:00,1014.5946655273438,10.734135,10734.135 +7645,2025-03-07T22:47:12.961467-08:00,1014.5667724609375,10.723061,10723.061 +7646,2025-03-07T22:47:23.696174-08:00,1014.5650024414062,10.734707,10734.707 +7647,2025-03-07T22:47:34.422033-08:00,1014.571533203125,10.725859,10725.859 +7648,2025-03-07T22:47:45.146293-08:00,1014.571533203125,10.72426,10724.26 +7649,2025-03-07T22:47:55.876116-08:00,1014.571533203125,10.729823,10729.823 +7650,2025-03-07T22:48:06.599461-08:00,1014.571533203125,10.723345,10723.345 +7651,2025-03-07T22:48:17.321032-08:00,1014.5781860351562,10.721571,10721.571 +7652,2025-03-07T22:48:28.048039-08:00,1014.583251953125,10.727007,10727.007 +7653,2025-03-07T22:48:38.776873-08:00,1014.56201171875,10.728834,10728.834 +7654,2025-03-07T22:48:49.501313-08:00,1014.583251953125,10.72444,10724.44 +7655,2025-03-07T22:49:00.231358-08:00,1014.5734252929688,10.730045,10730.045 +7656,2025-03-07T22:49:10.962103-08:00,1014.6082763671875,10.730745,10730.745 +7657,2025-03-07T22:49:21.689035-08:00,1014.5535888671875,10.726932,10726.932 +7658,2025-03-07T22:49:32.412343-08:00,1014.552001953125,10.723308,10723.308 +7659,2025-03-07T22:49:43.135040-08:00,1014.525634765625,10.722697,10722.697 +7660,2025-03-07T22:49:53.866093-08:00,1014.5586547851562,10.731053,10731.053 +7661,2025-03-07T22:50:04.593035-08:00,1014.5734252929688,10.726942,10726.942 +7662,2025-03-07T22:50:15.316033-08:00,1014.5421142578125,10.722998,10722.998 +7663,2025-03-07T22:50:26.052509-08:00,1014.5274047851562,10.736476,10736.476 +7664,2025-03-07T22:50:36.770260-08:00,1014.5487670898438,10.717751,10717.751 +7665,2025-03-07T22:50:47.499759-08:00,1014.568603515625,10.729499,10729.499 +7666,2025-03-07T22:50:58.225101-08:00,1014.5471801757812,10.725342,10725.342 +7667,2025-03-07T22:51:08.961435-08:00,1014.5604858398438,10.736334,10736.334 +7668,2025-03-07T22:51:19.689230-08:00,1014.5868530273438,10.727795,10727.795 +7669,2025-03-07T22:51:30.413036-08:00,1014.6001586914062,10.723806,10723.806 +7670,2025-03-07T22:51:41.141432-08:00,1014.5656127929688,10.728396,10728.396 +7671,2025-03-07T22:51:51.867036-08:00,1014.5656127929688,10.725604,10725.604 +7672,2025-03-07T22:52:02.594039-08:00,1014.5656127929688,10.727003,10727.003 +7673,2025-03-07T22:52:13.322409-08:00,1014.5656127929688,10.72837,10728.37 +7674,2025-03-07T22:52:24.118218-08:00,1014.5836181640625,10.795809,10795.809 +7675,2025-03-07T22:52:34.842432-08:00,1014.5770263671875,10.724214,10724.214 +7676,2025-03-07T22:52:45.576632-08:00,1014.5571899414062,10.7342,10734.2 +7677,2025-03-07T22:52:56.303408-08:00,1014.5541381835938,10.726776,10726.776 +7678,2025-03-07T22:53:07.030664-08:00,1014.5770263671875,10.727256,10727.256 +7679,2025-03-07T22:53:17.756426-08:00,1014.5541381835938,10.725762,10725.762 +7680,2025-03-07T22:53:28.480357-08:00,1014.5592041015625,10.723931,10723.931 +7681,2025-03-07T22:53:39.201216-08:00,1014.5673217773438,10.720859,10720.859 +7682,2025-03-07T22:53:49.930426-08:00,1014.573974609375,10.72921,10729.21 +7683,2025-03-07T22:54:00.662324-08:00,1014.562255859375,10.731898,10731.898 +7684,2025-03-07T22:54:11.381218-08:00,1014.5526733398438,10.718894,10718.894 +7685,2025-03-07T22:54:22.106241-08:00,1014.572509765625,10.725023,10725.023 +7686,2025-03-07T22:54:32.842433-08:00,1014.572509765625,10.736192,10736.192 +7687,2025-03-07T22:54:43.565220-08:00,1014.5839233398438,10.722787,10722.787 +7688,2025-03-07T22:54:54.294456-08:00,1014.630126953125,10.729236,10729.236 +7689,2025-03-07T22:55:05.007426-08:00,1014.6021728515625,10.71297,10712.97 +7690,2025-03-07T22:55:15.732431-08:00,1014.5875244140625,10.725005,10725.005 +7691,2025-03-07T22:55:26.464218-08:00,1014.615478515625,10.731787,10731.787 +7692,2025-03-07T22:55:37.185231-08:00,1014.5809326171875,10.721013,10721.013 +7693,2025-03-07T22:55:47.909217-08:00,1014.5510864257812,10.723986,10723.986 +7694,2025-03-07T22:55:58.628455-08:00,1014.5761108398438,10.719238,10719.238 +7695,2025-03-07T22:56:09.362240-08:00,1014.5923461914062,10.733785,10733.785 +7696,2025-03-07T22:56:20.087255-08:00,1014.541259765625,10.725015,10725.015 +7697,2025-03-07T22:56:30.808463-08:00,1014.5940551757812,10.721208,10721.208 +7698,2025-03-07T22:56:41.533248-08:00,1014.5940551757812,10.724785,10724.785 +7699,2025-03-07T22:56:52.260911-08:00,1014.5808715820312,10.727663,10727.663 +7700,2025-03-07T22:57:02.986216-08:00,1014.56103515625,10.725305,10725.305 +7701,2025-03-07T22:57:13.714220-08:00,1014.5859375,10.728004,10728.004 +7702,2025-03-07T22:57:24.434356-08:00,1014.5712280273438,10.720136,10720.136 +7703,2025-03-07T22:57:35.161429-08:00,1014.564697265625,10.727073,10727.073 +7704,2025-03-07T22:57:45.884507-08:00,1014.5348510742188,10.723078,10723.078 +7705,2025-03-07T22:57:56.608221-08:00,1014.5562744140625,10.723714,10723.714 +7706,2025-03-07T22:58:07.336441-08:00,1014.5826416015625,10.72822,10728.22 +7707,2025-03-07T22:58:18.065216-08:00,1014.5745239257812,10.728775,10728.775 +7708,2025-03-07T22:58:28.790405-08:00,1014.5613403320312,10.725189,10725.189 +7709,2025-03-07T22:58:39.518221-08:00,1014.5745239257812,10.727816,10727.816 +7710,2025-03-07T22:58:50.241436-08:00,1014.5878295898438,10.723215,10723.215 +7711,2025-03-07T22:59:00.971384-08:00,1014.5797119140625,10.729948,10729.948 +7712,2025-03-07T22:59:11.692221-08:00,1014.6126708984375,10.720837,10720.837 +7713,2025-03-07T22:59:22.429663-08:00,1014.5712280273438,10.737442,10737.442 +7714,2025-03-07T22:59:33.152215-08:00,1014.6060791015625,10.722552,10722.552 +7715,2025-03-07T22:59:43.873221-08:00,1014.5697021484375,10.721006,10721.006 +7716,2025-03-07T22:59:54.606309-08:00,1014.58447265625,10.733088,10733.088 +7717,2025-03-07T23:00:05.331659-08:00,1014.5564575195312,10.72535,10725.35 +7718,2025-03-07T23:00:16.056729-08:00,1014.5763549804688,10.72507,10725.07 +7719,2025-03-07T23:00:26.789349-08:00,1014.5615844726562,10.73262,10732.62 +7720,2025-03-07T23:00:37.511221-08:00,1014.5733032226562,10.721872,10721.872 +7721,2025-03-07T23:00:48.237401-08:00,1014.5682983398438,10.72618,10726.18 +7722,2025-03-07T23:00:58.965218-08:00,1014.5829467773438,10.727817,10727.817 +7723,2025-03-07T23:01:09.695411-08:00,1014.60791015625,10.730193,10730.193 +7724,2025-03-07T23:01:20.419218-08:00,1014.60791015625,10.723807,10723.807 +7725,2025-03-07T23:01:31.152717-08:00,1014.614501953125,10.733499,10733.499 +7726,2025-03-07T23:01:41.876389-08:00,1014.6129760742188,10.723672,10723.672 +7727,2025-03-07T23:01:52.602222-08:00,1014.6129760742188,10.725833,10725.833 +7728,2025-03-07T23:02:03.333432-08:00,1014.6111450195312,10.73121,10731.21 +7729,2025-03-07T23:02:14.058709-08:00,1014.6177978515625,10.725277,10725.277 +7730,2025-03-07T23:02:24.780434-08:00,1014.6507568359375,10.721725,10721.725 +7731,2025-03-07T23:02:35.510407-08:00,1014.6442260742188,10.729973,10729.973 +7732,2025-03-07T23:02:46.235293-08:00,1014.6640625,10.724886,10724.886 +7733,2025-03-07T23:02:56.962906-08:00,1014.6279907226562,10.727613,10727.613 +7734,2025-03-07T23:03:07.697462-08:00,1014.6559448242188,10.734556,10734.556 +7735,2025-03-07T23:03:18.427253-08:00,1014.67578125,10.729791,10729.791 +7736,2025-03-07T23:03:29.147324-08:00,1014.665771484375,10.720071,10720.071 +7737,2025-03-07T23:03:39.876219-08:00,1014.6592407226562,10.728895,10728.895 +7738,2025-03-07T23:03:50.604251-08:00,1014.6709594726562,10.728032,10728.032 +7739,2025-03-07T23:04:01.339367-08:00,1014.6676635742188,10.735116,10735.116 +7740,2025-03-07T23:04:12.064218-08:00,1014.6397094726562,10.724851,10724.851 +7741,2025-03-07T23:04:22.793294-08:00,1014.6561889648438,10.729076,10729.076 +7742,2025-03-07T23:04:33.518694-08:00,1014.6465454101562,10.7254,10725.4 +7743,2025-03-07T23:04:44.243214-08:00,1014.6498413085938,10.72452,10724.52 +7744,2025-03-07T23:04:54.971402-08:00,1014.668212890625,10.728188,10728.188 +7745,2025-03-07T23:05:05.699513-08:00,1014.6798706054688,10.728111,10728.111 +7746,2025-03-07T23:05:16.425306-08:00,1014.6552124023438,10.725793,10725.793 +7747,2025-03-07T23:05:27.155240-08:00,1014.6486206054688,10.729934,10729.934 +7748,2025-03-07T23:05:37.880426-08:00,1014.6687622070312,10.725186,10725.186 +7749,2025-03-07T23:05:48.602394-08:00,1014.6524047851562,10.721968,10721.968 +7750,2025-03-07T23:05:59.332390-08:00,1014.6659545898438,10.729996,10729.996 +7751,2025-03-07T23:06:10.053413-08:00,1014.6779174804688,10.721023,10721.023 +7752,2025-03-07T23:06:20.780218-08:00,1014.6417846679688,10.726805,10726.805 +7753,2025-03-07T23:06:31.505451-08:00,1014.6465454101562,10.725233,10725.233 +7754,2025-03-07T23:06:42.229371-08:00,1014.6302490234375,10.72392,10723.92 +7755,2025-03-07T23:06:52.949425-08:00,1014.62060546875,10.720054,10720.054 +7756,2025-03-07T23:07:03.676441-08:00,1014.609375,10.727016,10727.016 +7757,2025-03-07T23:07:14.404308-08:00,1014.6309204101562,10.727867,10727.867 +7758,2025-03-07T23:07:25.133308-08:00,1014.6231079101562,10.729,10729.0 +7759,2025-03-07T23:07:35.860218-08:00,1014.6082763671875,10.72691,10726.91 +7760,2025-03-07T23:07:46.587253-08:00,1014.621826171875,10.727035,10727.035 +7761,2025-03-07T23:07:57.307220-08:00,1014.6102905273438,10.719967,10719.967 +7762,2025-03-07T23:08:08.039219-08:00,1014.6006469726562,10.731999,10731.999 +7763,2025-03-07T23:08:18.758738-08:00,1014.5942993164062,10.719519,10719.519 +7764,2025-03-07T23:08:29.483221-08:00,1014.5645141601562,10.724483,10724.483 +7765,2025-03-07T23:08:40.215247-08:00,1014.5662231445312,10.732026,10732.026 +7766,2025-03-07T23:08:50.937406-08:00,1014.5532836914062,10.722159,10722.159 +7767,2025-03-07T23:09:01.669488-08:00,1014.563232421875,10.732082,10732.082 +7768,2025-03-07T23:09:12.399562-08:00,1014.5667114257812,10.730074,10730.074 +7769,2025-03-07T23:09:23.124218-08:00,1014.5421142578125,10.724656,10724.656 +7770,2025-03-07T23:09:33.861417-08:00,1014.5736083984375,10.737199,10737.199 +7771,2025-03-07T23:09:44.589428-08:00,1014.552001953125,10.728011,10728.011 +7772,2025-03-07T23:09:55.314243-08:00,1014.5555419921875,10.724815,10724.815 +7773,2025-03-07T23:10:06.041611-08:00,1014.5390625,10.727368,10727.368 +7774,2025-03-07T23:10:16.771216-08:00,1014.5242919921875,10.729605,10729.605 +7775,2025-03-07T23:10:27.509228-08:00,1014.5341186523438,10.738012,10738.012 +7776,2025-03-07T23:10:38.228521-08:00,1014.5209350585938,10.719293,10719.293 +7777,2025-03-07T23:10:48.958296-08:00,1014.5554809570312,10.729775,10729.775 +7778,2025-03-07T23:10:59.681491-08:00,1014.5275268554688,10.723195,10723.195 +7779,2025-03-07T23:11:10.416631-08:00,1014.497802734375,10.73514,10735.14 +7780,2025-03-07T23:11:21.143241-08:00,1014.4912719726562,10.72661,10726.61 +7781,2025-03-07T23:11:31.862423-08:00,1014.510986328125,10.719182,10719.182 +7782,2025-03-07T23:11:42.597457-08:00,1014.526123046875,10.735034,10735.034 +7783,2025-03-07T23:11:53.320331-08:00,1014.5392456054688,10.722874,10722.874 +7784,2025-03-07T23:12:04.048395-08:00,1014.5194702148438,10.728064,10728.064 +7785,2025-03-07T23:12:14.766424-08:00,1014.5128173828125,10.718029,10718.029 +7786,2025-03-07T23:12:25.494386-08:00,1014.5077514648438,10.727962,10727.962 +7787,2025-03-07T23:12:36.228302-08:00,1014.5209350585938,10.733916,10733.916 +7788,2025-03-07T23:12:46.952825-08:00,1014.5092163085938,10.724523,10724.523 +7789,2025-03-07T23:12:57.677218-08:00,1014.5045166015625,10.724393,10724.393 +7790,2025-03-07T23:13:08.404228-08:00,1014.4894409179688,10.72701,10727.01 +7791,2025-03-07T23:13:19.133400-08:00,1014.4993896484375,10.729172,10729.172 +7792,2025-03-07T23:13:29.860219-08:00,1014.5140380859375,10.726819,10726.819 +7793,2025-03-07T23:13:40.591052-08:00,1014.5075073242188,10.730833,10730.833 +7794,2025-03-07T23:13:51.317953-08:00,1014.5108642578125,10.726901,10726.901 +7795,2025-03-07T23:14:02.051220-08:00,1014.5042114257812,10.733267,10733.267 +7796,2025-03-07T23:14:12.777295-08:00,1014.54541015625,10.726075,10726.075 +7797,2025-03-07T23:14:23.510416-08:00,1014.5009155273438,10.733121,10733.121 +7798,2025-03-07T23:14:34.231422-08:00,1014.4679565429688,10.721006,10721.006 +7799,2025-03-07T23:14:44.957395-08:00,1014.4841918945312,10.725973,10725.973 +7800,2025-03-07T23:14:55.694220-08:00,1014.5205688476562,10.736825,10736.825 +7801,2025-03-07T23:15:06.419213-08:00,1014.49267578125,10.724993,10724.993 +7802,2025-03-07T23:15:17.154629-08:00,1014.513916015625,10.735416,10735.416 +7803,2025-03-07T23:15:27.875521-08:00,1014.5037231445312,10.720892,10720.892 +7804,2025-03-07T23:15:38.610408-08:00,1014.50048828125,10.734887,10734.887 +7805,2025-03-07T23:15:49.329402-08:00,1014.482177734375,10.718994,10718.994 +7806,2025-03-07T23:16:00.061221-08:00,1014.482177734375,10.731819,10731.819 +7807,2025-03-07T23:16:10.790221-08:00,1014.5186157226562,10.729,10729.0 +7808,2025-03-07T23:16:21.520632-08:00,1014.500244140625,10.730411,10730.411 +7809,2025-03-07T23:16:32.250220-08:00,1014.4904174804688,10.729588,10729.588 +7810,2025-03-07T23:16:42.982433-08:00,1014.52490234375,10.732213,10732.213 +7811,2025-03-07T23:16:53.710994-08:00,1014.5032958984375,10.728561,10728.561 +7812,2025-03-07T23:17:04.438221-08:00,1014.4967041015625,10.727227,10727.227 +7813,2025-03-07T23:17:15.161107-08:00,1014.5462646484375,10.722886,10722.886 +7814,2025-03-07T23:17:25.894222-08:00,1014.5015869140625,10.733115,10733.115 +7815,2025-03-07T23:17:36.624409-08:00,1014.5181274414062,10.730187,10730.187 +7816,2025-03-07T23:17:47.344476-08:00,1014.5277099609375,10.720067,10720.067 +7817,2025-03-07T23:17:58.074451-08:00,1014.5164184570312,10.729975,10729.975 +7818,2025-03-07T23:18:08.806457-08:00,1014.5259399414062,10.732006,10732.006 +7819,2025-03-07T23:18:19.537239-08:00,1014.5145874023438,10.730782,10730.782 +7820,2025-03-07T23:18:30.265326-08:00,1014.5440673828125,10.728087,10728.087 +7821,2025-03-07T23:18:40.991597-08:00,1014.540771484375,10.726271,10726.271 +7822,2025-03-07T23:18:51.713214-08:00,1014.5437622070312,10.721617,10721.617 +7823,2025-03-07T23:19:02.443221-08:00,1014.52392578125,10.730007,10730.007 +7824,2025-03-07T23:19:13.166221-08:00,1014.5306396484375,10.723,10723.0 +7825,2025-03-07T23:19:23.895357-08:00,1014.535400390625,10.729136,10729.136 +7826,2025-03-07T23:19:34.615218-08:00,1014.565185546875,10.719861,10719.861 +7827,2025-03-07T23:19:45.342269-08:00,1014.5123291015625,10.727051,10727.051 +7828,2025-03-07T23:19:56.077222-08:00,1014.5402221679688,10.734953,10734.953 +7829,2025-03-07T23:20:06.795296-08:00,1014.5384521484375,10.718074,10718.074 +7830,2025-03-07T23:20:17.523629-08:00,1014.5484619140625,10.728333,10728.333 +7831,2025-03-07T23:20:28.251218-08:00,1014.5484619140625,10.727589,10727.589 +7832,2025-03-07T23:20:38.978221-08:00,1014.559814453125,10.727003,10727.003 +7833,2025-03-07T23:20:49.697274-08:00,1014.5547485351562,10.719053,10719.053 +7834,2025-03-07T23:21:00.430218-08:00,1014.5349731445312,10.732944,10732.944 +7835,2025-03-07T23:21:11.154144-08:00,1014.5430297851562,10.723926,10723.926 +7836,2025-03-07T23:21:21.877423-08:00,1014.5545043945312,10.723279,10723.279 +7837,2025-03-07T23:21:32.600281-08:00,1014.5593872070312,10.722858,10722.858 +7838,2025-03-07T23:21:43.332243-08:00,1014.55126953125,10.731962,10731.962 +7839,2025-03-07T23:21:54.058441-08:00,1014.5660400390625,10.726198,10726.198 +7840,2025-03-07T23:22:04.783415-08:00,1014.5593872070312,10.724974,10724.974 +7841,2025-03-07T23:22:15.511222-08:00,1014.5792236328125,10.727807,10727.807 +7842,2025-03-07T23:22:26.249215-08:00,1014.5410766601562,10.737993,10737.993 +7843,2025-03-07T23:22:36.973400-08:00,1014.5770874023438,10.724185,10724.185 +7844,2025-03-07T23:22:47.697791-08:00,1014.5657958984375,10.724391,10724.391 +7845,2025-03-07T23:22:58.425478-08:00,1014.569091796875,10.727687,10727.687 +7846,2025-03-07T23:23:09.154290-08:00,1014.5510864257812,10.728812,10728.812 +7847,2025-03-07T23:23:19.887405-08:00,1014.54443359375,10.733115,10733.115 +7848,2025-03-07T23:23:30.620221-08:00,1014.5474853515625,10.732816,10732.816 +7849,2025-03-07T23:23:41.345397-08:00,1014.5607299804688,10.725176,10725.176 +7850,2025-03-07T23:23:52.071310-08:00,1014.5309448242188,10.725913,10725.913 +7851,2025-03-07T23:24:02.806477-08:00,1014.5556030273438,10.735167,10735.167 +7852,2025-03-07T23:24:13.531599-08:00,1014.5457763671875,10.725122,10725.122 +7853,2025-03-07T23:24:24.263218-08:00,1014.509033203125,10.731619,10731.619 +7854,2025-03-07T23:24:34.994430-08:00,1014.5271606445312,10.731212,10731.212 +7855,2025-03-07T23:24:45.728341-08:00,1014.5187377929688,10.733911,10733.911 +7856,2025-03-07T23:24:56.456261-08:00,1014.5037231445312,10.72792,10727.92 +7857,2025-03-07T23:25:07.193674-08:00,1014.5181884765625,10.737413,10737.413 +7858,2025-03-07T23:25:17.919219-08:00,1014.50830078125,10.725545,10725.545 +7859,2025-03-07T23:25:28.646371-08:00,1014.4932861328125,10.727152,10727.152 +7860,2025-03-07T23:25:39.375670-08:00,1014.4966430664062,10.729299,10729.299 +7861,2025-03-07T23:25:50.111246-08:00,1014.5081176757812,10.735576,10735.576 +7862,2025-03-07T23:26:00.849478-08:00,1014.4931030273438,10.738232,10738.232 +7863,2025-03-07T23:26:11.579406-08:00,1014.5042114257812,10.729928,10729.928 +7864,2025-03-07T23:26:22.308702-08:00,1014.477783203125,10.729296,10729.296 +7865,2025-03-07T23:26:33.042222-08:00,1014.4826049804688,10.73352,10733.52 +7866,2025-03-07T23:26:43.765004-08:00,1014.4807739257812,10.722782,10722.782 +7867,2025-03-07T23:26:54.497685-08:00,1014.4522705078125,10.732681,10732.681 +7868,2025-03-07T23:27:05.228224-08:00,1014.46875,10.730539,10730.539 +7869,2025-03-07T23:27:15.955419-08:00,1014.4390869140625,10.727195,10727.195 +7870,2025-03-07T23:27:26.690722-08:00,1014.4156494140625,10.735303,10735.303 +7871,2025-03-07T23:27:37.420366-08:00,1014.468505859375,10.729644,10729.644 +7872,2025-03-07T23:27:48.154436-08:00,1014.4420166015625,10.73407,10734.07 +7873,2025-03-07T23:27:58.887451-08:00,1014.4336547851562,10.733015,10733.015 +7874,2025-03-07T23:28:09.616296-08:00,1014.4285888671875,10.728845,10728.845 +7875,2025-03-07T23:28:20.344462-08:00,1014.446533203125,10.728166,10728.166 +7876,2025-03-07T23:28:31.072685-08:00,1014.4183349609375,10.728223,10728.223 +7877,2025-03-07T23:28:41.801421-08:00,1014.4051513671875,10.728736,10728.736 +7878,2025-03-07T23:28:52.527387-08:00,1014.4146728515625,10.725966,10725.966 +7879,2025-03-07T23:29:03.264895-08:00,1014.4180297851562,10.737508,10737.508 +7880,2025-03-07T23:29:13.992435-08:00,1014.3931274414062,10.72754,10727.54 +7881,2025-03-07T23:29:24.716405-08:00,1014.4096069335938,10.72397,10723.97 +7882,2025-03-07T23:29:35.455873-08:00,1014.392822265625,10.739468,10739.468 +7883,2025-03-07T23:29:46.176587-08:00,1014.4078369140625,10.720714,10720.714 +7884,2025-03-07T23:29:56.911396-08:00,1014.4026489257812,10.734809,10734.809 +7885,2025-03-07T23:30:07.641366-08:00,1014.419189453125,10.72997,10729.97 +7886,2025-03-07T23:30:18.375296-08:00,1014.3961181640625,10.73393,10733.93 +7887,2025-03-07T23:30:29.104485-08:00,1014.4093627929688,10.729189,10729.189 +7888,2025-03-07T23:30:39.835509-08:00,1014.404541015625,10.731024,10731.024 +7889,2025-03-07T23:30:50.566219-08:00,1014.419189453125,10.73071,10730.71 +7890,2025-03-07T23:31:01.301222-08:00,1014.4141235351562,10.735003,10735.003 +7891,2025-03-07T23:31:12.026445-08:00,1014.38623046875,10.725223,10725.223 +7892,2025-03-07T23:31:22.755220-08:00,1014.4093627929688,10.728775,10728.775 +7893,2025-03-07T23:31:33.483041-08:00,1014.4520263671875,10.727821,10727.821 +7894,2025-03-07T23:31:44.212432-08:00,1014.4207763671875,10.729391,10729.391 +7895,2025-03-07T23:31:54.940219-08:00,1014.438720703125,10.727787,10727.787 +7896,2025-03-07T23:32:05.670391-08:00,1014.3976440429688,10.730172,10730.172 +7897,2025-03-07T23:32:16.405775-08:00,1014.4188842773438,10.735384,10735.384 +7898,2025-03-07T23:32:27.135412-08:00,1014.4156494140625,10.729637,10729.637 +7899,2025-03-07T23:32:37.857784-08:00,1014.4090576171875,10.722372,10722.372 +7900,2025-03-07T23:32:48.590219-08:00,1014.395751953125,10.732435,10732.435 +7901,2025-03-07T23:32:59.327221-08:00,1014.4237670898438,10.737002,10737.002 +7902,2025-03-07T23:33:10.059437-08:00,1014.4104614257812,10.732216,10732.216 +7903,2025-03-07T23:33:20.790324-08:00,1014.431884765625,10.730887,10730.887 +7904,2025-03-07T23:33:31.521226-08:00,1014.421875,10.730902,10730.902 +7905,2025-03-07T23:33:42.255221-08:00,1014.421875,10.733995,10733.995 +7906,2025-03-07T23:33:52.990402-08:00,1014.4149780273438,10.735181,10735.181 +7907,2025-03-07T23:34:03.731376-08:00,1014.391845703125,10.740974,10740.974 +7908,2025-03-07T23:34:14.469233-08:00,1014.434814453125,10.737857,10737.857 +7909,2025-03-07T23:34:25.200421-08:00,1014.4095458984375,10.731188,10731.188 +7910,2025-03-07T23:34:35.942218-08:00,1014.399658203125,10.741797,10741.797 +7911,2025-03-07T23:34:46.680633-08:00,1014.42724609375,10.738415,10738.415 +7912,2025-03-07T23:34:57.406292-08:00,1014.4320068359375,10.725659,10725.659 +7913,2025-03-07T23:35:08.144410-08:00,1014.4383544921875,10.738118,10738.118 +7914,2025-03-07T23:35:18.883543-08:00,1014.398681640625,10.739133,10739.133 +7915,2025-03-07T23:35:29.616415-08:00,1014.432861328125,10.732872,10732.872 +7916,2025-03-07T23:35:40.346426-08:00,1014.4442749023438,10.730011,10730.011 +7917,2025-03-07T23:35:51.083219-08:00,1014.4093627929688,10.736793,10736.793 +7918,2025-03-07T23:36:01.816239-08:00,1014.4506225585938,10.73302,10733.02 +7919,2025-03-07T23:36:12.557396-08:00,1014.4469604492188,10.741157,10741.157 +7920,2025-03-07T23:36:23.285283-08:00,1014.461669921875,10.727887,10727.887 +7921,2025-03-07T23:36:34.030220-08:00,1014.4531860351562,10.744937,10744.937 +7922,2025-03-07T23:36:44.762267-08:00,1014.4447631835938,10.732047,10732.047 +7923,2025-03-07T23:36:55.502522-08:00,1014.4840698242188,10.740255,10740.255 +7924,2025-03-07T23:37:06.231295-08:00,1014.4609375,10.728773,10728.773 +7925,2025-03-07T23:37:16.970451-08:00,1014.4489135742188,10.739156,10739.156 +7926,2025-03-07T23:37:27.696417-08:00,1014.4389038085938,10.725966,10725.966 +7927,2025-03-07T23:37:38.435412-08:00,1014.4307861328125,10.738995,10738.995 +7928,2025-03-07T23:37:49.177116-08:00,1014.4138793945312,10.741704,10741.704 +7929,2025-03-07T23:37:59.908221-08:00,1014.42529296875,10.731105,10731.105 +7930,2025-03-07T23:38:10.646427-08:00,1014.43017578125,10.738206,10738.206 +7931,2025-03-07T23:38:21.373440-08:00,1014.421630859375,10.727013,10727.013 +7932,2025-03-07T23:38:32.109441-08:00,1014.4263916015625,10.736001,10736.001 +7933,2025-03-07T23:38:42.847410-08:00,1014.4296875,10.737969,10737.969 +7934,2025-03-07T23:38:53.579377-08:00,1014.4392700195312,10.731967,10731.967 +7935,2025-03-07T23:39:04.306870-08:00,1014.4212646484375,10.727493,10727.493 +7936,2025-03-07T23:39:15.043220-08:00,1014.439208984375,10.73635,10736.35 +7937,2025-03-07T23:39:25.777405-08:00,1014.4356079101562,10.734185,10734.185 +7938,2025-03-07T23:39:36.508396-08:00,1014.41064453125,10.730991,10730.991 +7939,2025-03-07T23:39:47.246779-08:00,1014.4154663085938,10.738383,10738.383 +7940,2025-03-07T23:39:57.970251-08:00,1014.463134765625,10.723472,10723.472 +7941,2025-03-07T23:40:08.713223-08:00,1014.4481201171875,10.742972,10742.972 +7942,2025-03-07T23:40:19.437893-08:00,1014.4334106445312,10.72467,10724.67 +7943,2025-03-07T23:40:30.176401-08:00,1014.4609375,10.738508,10738.508 +7944,2025-03-07T23:40:40.904142-08:00,1014.455810546875,10.727741,10727.741 +7945,2025-03-07T23:40:51.637394-08:00,1014.4459228515625,10.733252,10733.252 +7946,2025-03-07T23:41:02.371243-08:00,1014.439208984375,10.733849,10733.849 +7947,2025-03-07T23:41:13.102257-08:00,1014.444091796875,10.731014,10731.014 +7948,2025-03-07T23:41:23.823410-08:00,1014.457275390625,10.721153,10721.153 +7949,2025-03-07T23:41:34.552433-08:00,1014.43408203125,10.729023,10729.023 +7950,2025-03-07T23:41:45.288311-08:00,1014.4620361328125,10.735878,10735.878 +7951,2025-03-07T23:41:56.015518-08:00,1014.43408203125,10.727207,10727.207 +7952,2025-03-07T23:42:06.760748-08:00,1014.4635009765625,10.74523,10745.23 +7953,2025-03-07T23:42:17.485223-08:00,1014.46533203125,10.724475,10724.475 +7954,2025-03-07T23:42:28.218467-08:00,1014.4697875976562,10.733244,10733.244 +7955,2025-03-07T23:42:38.959411-08:00,1014.4617309570312,10.740944,10740.944 +7956,2025-03-07T23:42:49.693244-08:00,1014.4668579101562,10.733833,10733.833 +7957,2025-03-07T23:43:00.421480-08:00,1014.4601440429688,10.728236,10728.236 +7958,2025-03-07T23:43:11.161254-08:00,1014.4484252929688,10.739774,10739.774 +7959,2025-03-07T23:43:21.888919-08:00,1014.44189453125,10.727665,10727.665 +7960,2025-03-07T23:43:32.629220-08:00,1014.44189453125,10.740301,10740.301 +7961,2025-03-07T23:43:43.358814-08:00,1014.46826171875,10.729594,10729.594 +7962,2025-03-07T23:43:54.087401-08:00,1014.4337768554688,10.728587,10728.587 +7963,2025-03-07T23:44:04.829108-08:00,1014.455078125,10.741707,10741.707 +7964,2025-03-07T23:44:15.559442-08:00,1014.455078125,10.730334,10730.334 +7965,2025-03-07T23:44:26.296655-08:00,1014.4454956054688,10.737213,10737.213 +7966,2025-03-07T23:44:37.021702-08:00,1014.4601440429688,10.725047,10725.047 +7967,2025-03-07T23:44:47.765788-08:00,1014.4568481445312,10.744086,10744.086 +7968,2025-03-07T23:44:58.491287-08:00,1014.458740234375,10.725499,10725.499 +7969,2025-03-07T23:45:09.224268-08:00,1014.4488525390625,10.732981,10732.981 +7970,2025-03-07T23:45:19.964336-08:00,1014.501708984375,10.740068,10740.068 +7971,2025-03-07T23:45:30.692266-08:00,1014.4539184570312,10.72793,10727.93 +7972,2025-03-07T23:45:41.424599-08:00,1014.4454956054688,10.732333,10732.333 +7973,2025-03-07T23:45:52.164657-08:00,1014.458740234375,10.740058,10740.058 +7974,2025-03-07T23:46:02.891281-08:00,1014.4984130859375,10.726624,10726.624 +7975,2025-03-07T23:46:13.627418-08:00,1014.5036010742188,10.736137,10736.137 +7976,2025-03-07T23:46:24.356281-08:00,1014.4888916015625,10.728863,10728.863 +7977,2025-03-07T23:46:35.094405-08:00,1014.5003051757812,10.738124,10738.124 +7978,2025-03-07T23:46:45.826443-08:00,1014.5201416015625,10.732038,10732.038 +7979,2025-03-07T23:46:56.553506-08:00,1014.485595703125,10.727063,10727.063 +7980,2025-03-07T23:47:07.288394-08:00,1014.4921875,10.734888,10734.888 +7981,2025-03-07T23:47:18.017215-08:00,1014.5172119140625,10.728821,10728.821 +7982,2025-03-07T23:47:28.748221-08:00,1014.5304565429688,10.731006,10731.006 +7983,2025-03-07T23:47:39.483433-08:00,1014.5304565429688,10.735212,10735.212 +7984,2025-03-07T23:47:50.212363-08:00,1014.5337524414062,10.72893,10728.93 +7985,2025-03-07T23:48:00.947220-08:00,1014.5404052734375,10.734857,10734.857 +7986,2025-03-07T23:48:11.684754-08:00,1014.525634765625,10.737534,10737.534 +7987,2025-03-07T23:48:22.412395-08:00,1014.5341186523438,10.727641,10727.641 +7988,2025-03-07T23:48:33.147598-08:00,1014.5635986328125,10.735203,10735.203 +7989,2025-03-07T23:48:43.882219-08:00,1014.5606079101562,10.734621,10734.621 +7990,2025-03-07T23:48:54.609409-08:00,1014.5789794921875,10.72719,10727.19 +7991,2025-03-07T23:49:05.348868-08:00,1014.5856323242188,10.739459,10739.459 +7992,2025-03-07T23:49:16.069508-08:00,1014.5889282226562,10.72064,10720.64 +7993,2025-03-07T23:49:26.808633-08:00,1014.5940551757812,10.739125,10739.125 +7994,2025-03-07T23:49:37.537380-08:00,1014.5856323242188,10.728747,10728.747 +7995,2025-03-07T23:49:48.269221-08:00,1014.5907592773438,10.731841,10731.841 +7996,2025-03-07T23:49:58.997440-08:00,1014.6024780273438,10.728219,10728.219 +7997,2025-03-07T23:50:09.738408-08:00,1014.595947265625,10.740968,10740.968 +7998,2025-03-07T23:50:20.462926-08:00,1014.5977172851562,10.724518,10724.518 +7999,2025-03-07T23:50:31.193951-08:00,1014.591064453125,10.731025,10731.025 +8000,2025-03-07T23:50:41.926399-08:00,1014.6290893554688,10.732448,10732.448 +8001,2025-03-07T23:50:52.662871-08:00,1014.6307983398438,10.736472,10736.472 +8002,2025-03-07T23:51:03.396216-08:00,1014.6143188476562,10.733345,10733.345 +8003,2025-03-07T23:51:14.120403-08:00,1014.6326293945312,10.724187,10724.187 +8004,2025-03-07T23:51:24.848290-08:00,1014.6311645507812,10.727887,10727.887 +8005,2025-03-07T23:51:35.582441-08:00,1014.68408203125,10.734151,10734.151 +8006,2025-03-07T23:51:46.318250-08:00,1014.6624755859375,10.735809,10735.809 +8007,2025-03-07T23:51:57.046300-08:00,1014.634521484375,10.72805,10728.05 +8008,2025-03-07T23:52:07.771221-08:00,1014.60986328125,10.724921,10724.921 +8009,2025-03-07T23:52:18.501450-08:00,1014.6429443359375,10.730229,10730.229 +8010,2025-03-07T23:52:29.206154-08:00,1014.7076416015625,10.704704,10704.704 +8011,2025-03-07T23:52:39.942370-08:00,1014.6631469726562,10.736216,10736.216 +8012,2025-03-07T23:52:50.669342-08:00,1014.6929931640625,10.726972,10726.972 +8013,2025-03-07T23:53:01.401183-08:00,1014.7028198242188,10.731841,10731.841 +8014,2025-03-07T23:53:12.133154-08:00,1014.7064819335938,10.731971,10731.971 +8015,2025-03-07T23:53:22.860344-08:00,1014.7031860351562,10.72719,10727.19 +8016,2025-03-07T23:53:33.590239-08:00,1014.73486328125,10.729895,10729.895 +8017,2025-03-07T23:53:44.322395-08:00,1014.7234497070312,10.732156,10732.156 +8018,2025-03-07T23:53:55.047972-08:00,1014.705322265625,10.725577,10725.577 +8019,2025-03-07T23:54:05.773151-08:00,1014.7002563476562,10.725179,10725.179 +8020,2025-03-07T23:54:16.500193-08:00,1014.7053833007812,10.727042,10727.042 +8021,2025-03-07T23:54:27.230329-08:00,1014.6873168945312,10.730136,10730.136 +8022,2025-03-07T23:54:37.953346-08:00,1014.7189331054688,10.723017,10723.017 +8023,2025-03-07T23:54:48.689336-08:00,1014.7273559570312,10.73599,10735.99 +8024,2025-03-07T23:54:59.418183-08:00,1014.717529296875,10.728847,10728.847 +8025,2025-03-07T23:55:10.149577-08:00,1014.6928100585938,10.731394,10731.394 +8026,2025-03-07T23:55:20.876346-08:00,1014.699462890625,10.726769,10726.769 +8027,2025-03-07T23:55:31.605151-08:00,1014.734375,10.728805,10728.805 +8028,2025-03-07T23:55:42.334641-08:00,1014.6934204101562,10.72949,10729.49 +8029,2025-03-07T23:55:53.062790-08:00,1014.7166137695312,10.728149,10728.149 +8030,2025-03-07T23:56:03.787298-08:00,1014.7001342773438,10.724508,10724.508 +8031,2025-03-07T23:56:14.517884-08:00,1014.72509765625,10.730586,10730.586 +8032,2025-03-07T23:56:25.239155-08:00,1014.6871948242188,10.721271,10721.271 +8033,2025-03-07T23:56:35.980292-08:00,1014.6956176757812,10.741137,10741.137 +8034,2025-03-07T23:56:46.706332-08:00,1014.6941528320312,10.72604,10726.04 +8035,2025-03-07T23:56:57.440153-08:00,1014.7323608398438,10.733821,10733.821 +8036,2025-03-07T23:57:08.167156-08:00,1014.6959228515625,10.727003,10727.003 +8037,2025-03-07T23:57:18.898331-08:00,1014.7011108398438,10.731175,10731.175 +8038,2025-03-07T23:57:29.627156-08:00,1014.7125244140625,10.728825,10728.825 +8039,2025-03-07T23:57:40.361365-08:00,1014.7190551757812,10.734209,10734.209 +8040,2025-03-07T23:57:51.094328-08:00,1014.7374877929688,10.732963,10732.963 +8041,2025-03-07T23:58:01.822184-08:00,1014.7095336914062,10.727856,10727.856 +8042,2025-03-07T23:58:12.553677-08:00,1014.7227172851562,10.731493,10731.493 +8043,2025-03-07T23:58:23.285172-08:00,1014.7293701171875,10.731495,10731.495 +8044,2025-03-07T23:58:34.018884-08:00,1014.7359619140625,10.733712,10733.712 +8045,2025-03-07T23:58:44.750159-08:00,1014.7506103515625,10.731275,10731.275 +8046,2025-03-07T23:58:55.479158-08:00,1014.762451171875,10.728999,10728.999 +8047,2025-03-07T23:59:06.217358-08:00,1014.75732421875,10.7382,10738.2 +8048,2025-03-07T23:59:16.945264-08:00,1014.7308349609375,10.727906,10727.906 +8049,2025-03-07T23:59:27.686367-08:00,1014.7557983398438,10.741103,10741.103 +8050,2025-03-07T23:59:38.419187-08:00,1014.7293701171875,10.73282,10732.82 +8051,2025-03-07T23:59:49.144441-08:00,1014.7492065429688,10.725254,10725.254 +8052,2025-03-07T23:59:59.878151-08:00,1014.7506103515625,10.73371,10733.71 +8053,2025-03-08T00:00:10.612359-08:00,1014.734130859375,10.734208,10734.208 +8054,2025-03-08T00:00:21.333221-08:00,1014.747314453125,10.720862,10720.862 +8055,2025-03-08T00:00:32.064229-08:00,1014.7738037109375,10.731008,10731.008 +8056,2025-03-08T00:00:42.793410-08:00,1014.731201171875,10.729181,10729.181 +8057,2025-03-08T00:00:53.533717-08:00,1014.7642211914062,10.740307,10740.307 +8058,2025-03-08T00:01:04.260737-08:00,1014.7476806640625,10.72702,10727.02 +8059,2025-03-08T00:01:14.989998-08:00,1014.7315063476562,10.729261,10729.261 +8060,2025-03-08T00:01:25.718385-08:00,1014.7513427734375,10.728387,10728.387 +8061,2025-03-08T00:01:36.448156-08:00,1014.7564086914062,10.729771,10729.771 +8062,2025-03-08T00:01:47.173348-08:00,1014.7449951171875,10.725192,10725.192 +8063,2025-03-08T00:01:57.906469-08:00,1014.751953125,10.733121,10733.121 +8064,2025-03-08T00:02:08.638156-08:00,1014.7341918945312,10.731687,10731.687 +8065,2025-03-08T00:02:19.361782-08:00,1014.720947265625,10.723626,10723.626 +8066,2025-03-08T00:02:30.091191-08:00,1014.7279052734375,10.729409,10729.409 +8067,2025-03-08T00:02:40.820156-08:00,1014.73486328125,10.728965,10728.965 +8068,2025-03-08T00:02:51.556255-08:00,1014.7384643554688,10.736099,10736.099 +8069,2025-03-08T00:03:02.290503-08:00,1014.719970703125,10.734248,10734.248 +8070,2025-03-08T00:03:13.026160-08:00,1014.7320556640625,10.735657,10735.657 +8071,2025-03-08T00:03:23.754396-08:00,1014.7603149414062,10.728236,10728.236 +8072,2025-03-08T00:03:34.498327-08:00,1014.7206420898438,10.743931,10743.931 +8073,2025-03-08T00:03:45.229360-08:00,1014.7242431640625,10.731033,10731.033 +8074,2025-03-08T00:03:55.968208-08:00,1014.7421875,10.738848,10738.848 +8075,2025-03-08T00:04:06.697155-08:00,1014.7377319335938,10.728947,10728.947 +8076,2025-03-08T00:04:17.426415-08:00,1014.7377319335938,10.72926,10729.26 +8077,2025-03-08T00:04:28.166624-08:00,1014.734375,10.740209,10740.209 +8078,2025-03-08T00:04:38.897078-08:00,1014.7293090820312,10.730454,10730.454 +8079,2025-03-08T00:04:49.630328-08:00,1014.727783203125,10.73325,10733.25 +8080,2025-03-08T00:05:00.364236-08:00,1014.7593994140625,10.733908,10733.908 +8081,2025-03-08T00:05:11.094196-08:00,1014.7410278320312,10.72996,10729.96 +8082,2025-03-08T00:05:21.823238-08:00,1014.72265625,10.729042,10729.042 +8083,2025-03-08T00:05:32.562545-08:00,1014.713134765625,10.739307,10739.307 +8084,2025-03-08T00:05:43.296156-08:00,1014.7028198242188,10.733611,10733.611 +8085,2025-03-08T00:05:54.029161-08:00,1014.7193603515625,10.733005,10733.005 +8086,2025-03-08T00:06:04.768343-08:00,1014.7047119140625,10.739182,10739.182 +8087,2025-03-08T00:06:15.495150-08:00,1014.734130859375,10.726807,10726.807 +8088,2025-03-08T00:06:26.230152-08:00,1014.722412109375,10.735002,10735.002 +8089,2025-03-08T00:06:36.967163-08:00,1014.7323608398438,10.737011,10737.011 +8090,2025-03-08T00:06:47.705190-08:00,1014.6875,10.738027,10738.027 +8091,2025-03-08T00:06:58.442325-08:00,1014.7008056640625,10.737135,10737.135 +8092,2025-03-08T00:07:09.182459-08:00,1014.7470092773438,10.740134,10740.134 +8093,2025-03-08T00:07:19.912393-08:00,1014.7023315429688,10.729934,10729.934 +8094,2025-03-08T00:07:30.652470-08:00,1014.712158203125,10.740077,10740.077 +8095,2025-03-08T00:07:41.385324-08:00,1014.7284545898438,10.732854,10732.854 +8096,2025-03-08T00:07:52.124544-08:00,1014.7266235351562,10.73922,10739.22 +8097,2025-03-08T00:08:02.857155-08:00,1014.7167358398438,10.732611,10732.611 +8098,2025-03-08T00:08:13.601461-08:00,1014.7200927734375,10.744306,10744.306 +8099,2025-03-08T00:08:24.336324-08:00,1014.711669921875,10.734863,10734.863 +8100,2025-03-08T00:08:35.081373-08:00,1014.7446899414062,10.745049,10745.049 +8101,2025-03-08T00:08:45.820329-08:00,1014.75439453125,10.738956,10738.956 +8102,2025-03-08T00:08:56.555609-08:00,1014.73779296875,10.73528,10735.28 +8103,2025-03-08T00:09:07.291351-08:00,1014.75732421875,10.735742,10735.742 +8104,2025-03-08T00:09:18.018336-08:00,1014.720947265625,10.726985,10726.985 +8105,2025-03-08T00:09:28.760181-08:00,1014.7423706054688,10.741845,10741.845 +8106,2025-03-08T00:09:39.498025-08:00,1014.7420043945312,10.737844,10737.844 +8107,2025-03-08T00:09:50.234153-08:00,1014.7189331054688,10.736128,10736.128 +8108,2025-03-08T00:10:00.967155-08:00,1014.7335815429688,10.733002,10733.002 +8109,2025-03-08T00:10:11.703401-08:00,1014.7449951171875,10.736246,10736.246 +8110,2025-03-08T00:10:22.441319-08:00,1014.7597045898438,10.737918,10737.918 +8111,2025-03-08T00:10:33.178790-08:00,1014.7398681640625,10.737471,10737.471 +8112,2025-03-08T00:10:43.905156-08:00,1014.7432250976562,10.726366,10726.366 +8113,2025-03-08T00:10:54.644165-08:00,1014.7380981445312,10.739009,10739.009 +8114,2025-03-08T00:11:05.374282-08:00,1014.7579956054688,10.730117,10730.117 +8115,2025-03-08T00:11:16.109159-08:00,1014.7315063476562,10.734877,10734.877 +8116,2025-03-08T00:11:26.842509-08:00,1014.7413940429688,10.73335,10733.35 +8117,2025-03-08T00:11:37.571407-08:00,1014.767822265625,10.728898,10728.898 +8118,2025-03-08T00:11:48.307178-08:00,1014.7531127929688,10.735771,10735.771 +8119,2025-03-08T00:11:59.039158-08:00,1014.7380981445312,10.73198,10731.98 +8120,2025-03-08T00:12:09.767292-08:00,1014.7200927734375,10.728134,10728.134 +8121,2025-03-08T00:12:20.506347-08:00,1014.724853515625,10.739055,10739.055 +8122,2025-03-08T00:12:31.240571-08:00,1014.7167358398438,10.734224,10734.224 +8123,2025-03-08T00:12:41.965160-08:00,1014.7068481445312,10.724589,10724.589 +8124,2025-03-08T00:12:52.704329-08:00,1014.7119750976562,10.739169,10739.169 +8125,2025-03-08T00:13:03.426332-08:00,1014.7251586914062,10.722003,10722.003 +8126,2025-03-08T00:13:14.163161-08:00,1014.6939086914062,10.736829,10736.829 +8127,2025-03-08T00:13:24.899535-08:00,1014.7056274414062,10.736374,10736.374 +8128,2025-03-08T00:13:35.628493-08:00,1014.717041015625,10.728958,10728.958 +8129,2025-03-08T00:13:46.362155-08:00,1014.7059326171875,10.733662,10733.662 +8130,2025-03-08T00:13:57.092215-08:00,1014.709228515625,10.73006,10730.06 +8131,2025-03-08T00:14:07.822403-08:00,1014.6860961914062,10.730188,10730.188 +8132,2025-03-08T00:14:18.553156-08:00,1014.6912231445312,10.730753,10730.753 +8133,2025-03-08T00:14:29.286362-08:00,1014.7095336914062,10.733206,10733.206 +8134,2025-03-08T00:14:40.016041-08:00,1014.71435546875,10.729679,10729.679 +8135,2025-03-08T00:14:50.748155-08:00,1014.7161865234375,10.732114,10732.114 +8136,2025-03-08T00:15:01.477152-08:00,1014.7161865234375,10.728997,10728.997 +8137,2025-03-08T00:15:12.203274-08:00,1014.71826171875,10.726122,10726.122 +8138,2025-03-08T00:15:22.933157-08:00,1014.7098388671875,10.729883,10729.883 +8139,2025-03-08T00:15:33.663808-08:00,1014.693603515625,10.730651,10730.651 +8140,2025-03-08T00:15:44.394178-08:00,1014.70361328125,10.73037,10730.37 +8141,2025-03-08T00:15:55.124156-08:00,1014.72998046875,10.729978,10729.978 +8142,2025-03-08T00:16:05.851593-08:00,1014.74169921875,10.727437,10727.437 +8143,2025-03-08T00:16:16.577371-08:00,1014.723388671875,10.725778,10725.778 +8144,2025-03-08T00:16:27.308342-08:00,1014.736572265625,10.730971,10730.971 +8145,2025-03-08T00:16:38.045936-08:00,1014.754638671875,10.737594,10737.594 +8146,2025-03-08T00:16:48.766357-08:00,1014.7167358398438,10.720421,10720.421 +8147,2025-03-08T00:16:59.498237-08:00,1014.736572265625,10.73188,10731.88 +8148,2025-03-08T00:17:10.222245-08:00,1014.7453002929688,10.724008,10724.008 +8149,2025-03-08T00:17:20.947443-08:00,1014.786376953125,10.725198,10725.198 +8150,2025-03-08T00:17:31.675337-08:00,1014.7765502929688,10.727894,10727.894 +8151,2025-03-08T00:17:42.403156-08:00,1014.7882690429688,10.727819,10727.819 +8152,2025-03-08T00:17:53.137372-08:00,1014.7584228515625,10.734216,10734.216 +8153,2025-03-08T00:18:03.858246-08:00,1014.7915649414062,10.720874,10720.874 +8154,2025-03-08T00:18:14.593192-08:00,1014.784912109375,10.734946,10734.946 +8155,2025-03-08T00:18:25.319559-08:00,1014.7636108398438,10.726367,10726.367 +8156,2025-03-08T00:18:36.053774-08:00,1014.753662109375,10.734215,10734.215 +8157,2025-03-08T00:18:46.783185-08:00,1014.8131103515625,10.729411,10729.411 +8158,2025-03-08T00:18:57.512149-08:00,1014.7852172851562,10.728964,10728.964 +8159,2025-03-08T00:19:08.245333-08:00,1014.8117065429688,10.733184,10733.184 +8160,2025-03-08T00:19:18.969162-08:00,1014.8016967773438,10.723829,10723.829 +8161,2025-03-08T00:19:29.706155-08:00,1014.795166015625,10.736993,10736.993 +8162,2025-03-08T00:19:40.426158-08:00,1014.7935791015625,10.720003,10720.003 +8163,2025-03-08T00:19:51.160162-08:00,1014.7935791015625,10.734004,10734.004 +8164,2025-03-08T00:20:01.894157-08:00,1014.7803955078125,10.733995,10733.995 +8165,2025-03-08T00:20:12.625961-08:00,1014.8101806640625,10.731804,10731.804 +8166,2025-03-08T00:20:23.356375-08:00,1014.8016967773438,10.730414,10730.414 +8167,2025-03-08T00:20:34.089413-08:00,1014.78857421875,10.733038,10733.038 +8168,2025-03-08T00:20:44.819627-08:00,1014.8047485351562,10.730214,10730.214 +8169,2025-03-08T00:20:55.555159-08:00,1014.802978515625,10.735532,10735.532 +8170,2025-03-08T00:21:06.292158-08:00,1014.7945556640625,10.736999,10736.999 +8171,2025-03-08T00:21:17.022371-08:00,1014.791259765625,10.730213,10730.213 +8172,2025-03-08T00:21:27.752179-08:00,1014.8306274414062,10.729808,10729.808 +8173,2025-03-08T00:21:38.486189-08:00,1014.79248046875,10.73401,10734.01 +8174,2025-03-08T00:21:49.220344-08:00,1014.7888793945312,10.734155,10734.155 +8175,2025-03-08T00:21:59.959174-08:00,1014.7672729492188,10.73883,10738.83 +8176,2025-03-08T00:22:10.697049-08:00,1014.7982788085938,10.737875,10737.875 +8177,2025-03-08T00:22:21.434154-08:00,1014.791259765625,10.737105,10737.105 +8178,2025-03-08T00:22:32.167154-08:00,1014.7976684570312,10.733,10733.0 +8179,2025-03-08T00:22:42.900159-08:00,1014.7888793945312,10.733005,10733.005 +8180,2025-03-08T00:22:53.636350-08:00,1014.76904296875,10.736191,10736.191 +8181,2025-03-08T00:23:04.363235-08:00,1014.7701416015625,10.726885,10726.885 +8182,2025-03-08T00:23:15.099441-08:00,1014.7915649414062,10.736206,10736.206 +8183,2025-03-08T00:23:25.838334-08:00,1014.774658203125,10.738893,10738.893 +8184,2025-03-08T00:23:36.566155-08:00,1014.8056030273438,10.727821,10727.821 +8185,2025-03-08T00:23:47.299353-08:00,1014.7986450195312,10.733198,10733.198 +8186,2025-03-08T00:23:58.026324-08:00,1014.791748046875,10.726971,10726.971 +8187,2025-03-08T00:24:08.760765-08:00,1014.7784423828125,10.734441,10734.441 +8188,2025-03-08T00:24:19.492221-08:00,1014.7781372070312,10.731456,10731.456 +8189,2025-03-08T00:24:30.226406-08:00,1014.8027954101562,10.734185,10734.185 +8190,2025-03-08T00:24:40.950157-08:00,1014.799560546875,10.723751,10723.751 +8191,2025-03-08T00:24:51.687154-08:00,1014.80419921875,10.736997,10736.997 +8192,2025-03-08T00:25:02.418157-08:00,1014.7877197265625,10.731003,10731.003 +8193,2025-03-08T00:25:13.144389-08:00,1014.8108520507812,10.726232,10726.232 +8194,2025-03-08T00:25:23.872187-08:00,1014.79248046875,10.727798,10727.798 +8195,2025-03-08T00:25:34.602381-08:00,1014.7822875976562,10.730194,10730.194 +8196,2025-03-08T00:25:45.329352-08:00,1014.7987670898438,10.726971,10726.971 +8197,2025-03-08T00:25:56.066160-08:00,1014.7840576171875,10.736808,10736.808 +8198,2025-03-08T00:26:06.786342-08:00,1014.7870483398438,10.720182,10720.182 +8199,2025-03-08T00:26:17.516153-08:00,1014.8167724609375,10.729811,10729.811 +8200,2025-03-08T00:26:28.243353-08:00,1014.793701171875,10.7272,10727.2 +8201,2025-03-08T00:26:38.976359-08:00,1014.7954711914062,10.733006,10733.006 +8202,2025-03-08T00:26:49.704150-08:00,1014.8234252929688,10.727791,10727.791 +8203,2025-03-08T00:27:00.432167-08:00,1014.83154296875,10.728017,10728.017 +8204,2025-03-08T00:27:11.168564-08:00,1014.8153076171875,10.736397,10736.397 +8205,2025-03-08T00:27:21.896302-08:00,1014.8351440429688,10.727738,10727.738 +8206,2025-03-08T00:27:32.626373-08:00,1014.7987670898438,10.730071,10730.071 +8207,2025-03-08T00:27:43.355815-08:00,1014.8252563476562,10.729442,10729.442 +8208,2025-03-08T00:27:54.086227-08:00,1014.82373046875,10.730412,10730.412 +8209,2025-03-08T00:28:04.811328-08:00,1014.8219604492188,10.725101,10725.101 +8210,2025-03-08T00:28:15.541644-08:00,1014.8123168945312,10.730316,10730.316 +8211,2025-03-08T00:28:26.265419-08:00,1014.7957763671875,10.723775,10723.775 +8212,2025-03-08T00:28:36.997322-08:00,1014.802490234375,10.731903,10731.903 +8213,2025-03-08T00:28:47.725306-08:00,1014.7843627929688,10.727984,10727.984 +8214,2025-03-08T00:28:58.453258-08:00,1014.7814331054688,10.727952,10727.952 +8215,2025-03-08T00:29:09.176382-08:00,1014.80126953125,10.723124,10723.124 +8216,2025-03-08T00:29:19.897391-08:00,1014.782958984375,10.721009,10721.009 +8217,2025-03-08T00:29:30.629532-08:00,1014.7745361328125,10.732141,10732.141 +8218,2025-03-08T00:29:41.356217-08:00,1014.7767333984375,10.726685,10726.685 +8219,2025-03-08T00:29:52.071364-08:00,1014.768310546875,10.715147,10715.147 +8220,2025-03-08T00:30:02.792747-08:00,1014.806396484375,10.721383,10721.383 +8221,2025-03-08T00:30:13.520544-08:00,1014.8115844726562,10.727797,10727.797 +8222,2025-03-08T00:30:24.247153-08:00,1014.7817993164062,10.726609,10726.609 +8223,2025-03-08T00:30:34.973155-08:00,1014.7770385742188,10.726002,10726.002 +8224,2025-03-08T00:30:45.698181-08:00,1014.796875,10.725026,10725.026 +8225,2025-03-08T00:30:56.427159-08:00,1014.7935791015625,10.728978,10728.978 +8226,2025-03-08T00:31:07.153264-08:00,1014.8067016601562,10.726105,10726.105 +8227,2025-03-08T00:31:17.883156-08:00,1014.7952880859375,10.729892,10729.892 +8228,2025-03-08T00:31:28.599566-08:00,1014.7842407226562,10.71641,10716.41 +8229,2025-03-08T00:31:39.333184-08:00,1014.7743530273438,10.733618,10733.618 +8230,2025-03-08T00:31:50.051338-08:00,1014.7843017578125,10.718154,10718.154 +8231,2025-03-08T00:32:00.785711-08:00,1014.774658203125,10.734373,10734.373 +8232,2025-03-08T00:32:11.509150-08:00,1014.7926635742188,10.723439,10723.439 +8233,2025-03-08T00:32:22.222753-08:00,1014.7846069335938,10.713603,10713.603 +8234,2025-03-08T00:32:32.952155-08:00,1014.7665405273438,10.729402,10729.402 +8235,2025-03-08T00:32:43.675536-08:00,1014.8062744140625,10.723381,10723.381 +8236,2025-03-08T00:32:54.397148-08:00,1014.7750244140625,10.721612,10721.612 +8237,2025-03-08T00:33:05.119396-08:00,1014.8065795898438,10.722248,10722.248 +8238,2025-03-08T00:33:15.849202-08:00,1014.7867431640625,10.729806,10729.806 +8239,2025-03-08T00:33:26.574568-08:00,1014.7636108398438,10.725366,10725.366 +8240,2025-03-08T00:33:37.303896-08:00,1014.77685546875,10.729328,10729.328 +8241,2025-03-08T00:33:48.041158-08:00,1014.7672119140625,10.737262,10737.262 +8242,2025-03-08T00:33:58.769159-08:00,1014.781982421875,10.728001,10728.001 +8243,2025-03-08T00:34:09.496957-08:00,1014.78857421875,10.727798,10727.798 +8244,2025-03-08T00:34:20.216157-08:00,1014.78857421875,10.7192,10719.2 +8245,2025-03-08T00:34:30.943332-08:00,1014.78857421875,10.727175,10727.175 +8246,2025-03-08T00:34:41.673233-08:00,1014.7753295898438,10.729901,10729.901 +8247,2025-03-08T00:34:52.397228-08:00,1014.735595703125,10.723995,10723.995 +8248,2025-03-08T00:35:03.128184-08:00,1014.7503051757812,10.730956,10730.956 +8249,2025-03-08T00:35:13.854197-08:00,1014.7371826171875,10.726013,10726.013 +8250,2025-03-08T00:35:24.583321-08:00,1014.7687377929688,10.729124,10729.124 +8251,2025-03-08T00:35:35.307619-08:00,1014.7606201171875,10.724298,10724.298 +8252,2025-03-08T00:35:46.042152-08:00,1014.7620849609375,10.734533,10734.533 +8253,2025-03-08T00:35:56.765827-08:00,1014.747314453125,10.723675,10723.675 +8254,2025-03-08T00:36:07.486217-08:00,1014.7274780273438,10.72039,10720.39 +8255,2025-03-08T00:36:18.210759-08:00,1014.7257080078125,10.724542,10724.542 +8256,2025-03-08T00:36:28.936361-08:00,1014.7440795898438,10.725602,10725.602 +8257,2025-03-08T00:36:39.666155-08:00,1014.7391967773438,10.729794,10729.794 +8258,2025-03-08T00:36:50.390178-08:00,1014.7359619140625,10.724023,10724.023 +8259,2025-03-08T00:37:01.119702-08:00,1014.7212524414062,10.729524,10729.524 +8260,2025-03-08T00:37:11.846212-08:00,1014.739501953125,10.72651,10726.51 +8261,2025-03-08T00:37:22.578155-08:00,1014.7446899414062,10.731943,10731.943 +8262,2025-03-08T00:37:33.302226-08:00,1014.77783203125,10.724071,10724.071 +8263,2025-03-08T00:37:44.030233-08:00,1014.74951171875,10.728007,10728.007 +8264,2025-03-08T00:37:54.756184-08:00,1014.7579956054688,10.725951,10725.951 +8265,2025-03-08T00:38:05.475153-08:00,1014.7862548828125,10.718969,10718.969 +8266,2025-03-08T00:38:16.203464-08:00,1014.7862548828125,10.728311,10728.311 +8267,2025-03-08T00:38:26.933303-08:00,1014.7681274414062,10.729839,10729.839 +8268,2025-03-08T00:38:37.661211-08:00,1014.7762451171875,10.727908,10727.908 +8269,2025-03-08T00:38:48.383374-08:00,1014.7946166992188,10.722163,10722.163 +8270,2025-03-08T00:38:59.111155-08:00,1014.8093872070312,10.727781,10727.781 +8271,2025-03-08T00:39:09.839156-08:00,1014.8439331054688,10.728001,10728.001 +8272,2025-03-08T00:39:20.559364-08:00,1014.8423461914062,10.720208,10720.208 +8273,2025-03-08T00:39:31.291462-08:00,1014.8192138671875,10.732098,10732.098 +8274,2025-03-08T00:39:42.024157-08:00,1014.845703125,10.732695,10732.695 +8275,2025-03-08T00:39:52.743153-08:00,1014.8490600585938,10.718996,10718.996 +8276,2025-03-08T00:40:03.468156-08:00,1014.8523559570312,10.725003,10725.003 +8277,2025-03-08T00:40:14.201352-08:00,1014.84423828125,10.733196,10733.196 +8278,2025-03-08T00:40:24.922314-08:00,1014.857421875,10.720962,10720.962 +8279,2025-03-08T00:40:35.649865-08:00,1014.8426513671875,10.727551,10727.551 +8280,2025-03-08T00:40:46.383032-08:00,1014.869140625,10.733167,10733.167 +8281,2025-03-08T00:40:57.101188-08:00,1014.8607788085938,10.718156,10718.156 +8282,2025-03-08T00:41:07.833341-08:00,1014.8956298828125,10.732153,10732.153 +8283,2025-03-08T00:41:18.560409-08:00,1014.8790893554688,10.727068,10727.068 +8284,2025-03-08T00:41:29.292246-08:00,1014.8724975585938,10.731837,10731.837 +8285,2025-03-08T00:41:40.015154-08:00,1014.89892578125,10.722908,10722.908 +8286,2025-03-08T00:41:50.745181-08:00,1014.8875122070312,10.730027,10730.027 +8287,2025-03-08T00:42:01.467329-08:00,1014.8742065429688,10.722148,10722.148 +8288,2025-03-08T00:42:12.188363-08:00,1014.87939453125,10.721034,10721.034 +8289,2025-03-08T00:42:22.915997-08:00,1014.8712768554688,10.727634,10727.634 +8290,2025-03-08T00:42:33.638357-08:00,1014.8928833007812,10.72236,10722.36 +8291,2025-03-08T00:42:44.367260-08:00,1014.88623046875,10.728903,10728.903 +8292,2025-03-08T00:42:55.092297-08:00,1014.8663940429688,10.725037,10725.037 +8293,2025-03-08T00:43:05.818216-08:00,1014.88623046875,10.725919,10725.919 +8294,2025-03-08T00:43:16.541721-08:00,1014.9046020507812,10.723505,10723.505 +8295,2025-03-08T00:43:27.261154-08:00,1014.8914184570312,10.719433,10719.433 +8296,2025-03-08T00:43:37.984231-08:00,1014.8814086914062,10.723077,10723.077 +8297,2025-03-08T00:43:48.703325-08:00,1014.8733520507812,10.719094,10719.094 +8298,2025-03-08T00:43:59.429794-08:00,1014.9049072265625,10.726469,10726.469 +8299,2025-03-08T00:44:10.153225-08:00,1014.919921875,10.723431,10723.431 +8300,2025-03-08T00:44:20.873912-08:00,1014.9280395507812,10.720687,10720.687 +8301,2025-03-08T00:44:31.602189-08:00,1014.9132690429688,10.728277,10728.277 +8302,2025-03-08T00:44:42.327793-08:00,1014.888671875,10.725604,10725.604 +8303,2025-03-08T00:44:53.044177-08:00,1014.8853149414062,10.716384,10716.384 +8304,2025-03-08T00:45:03.772171-08:00,1014.8919677734375,10.727994,10727.994 +8305,2025-03-08T00:45:14.502045-08:00,1014.9066162109375,10.729874,10729.874 +8306,2025-03-08T00:45:25.221895-08:00,1014.9315795898438,10.71985,10719.85 +8307,2025-03-08T00:45:35.937156-08:00,1014.9168701171875,10.715261,10715.261 +8308,2025-03-08T00:45:46.669156-08:00,1014.9237670898438,10.732,10732.0 +8309,2025-03-08T00:45:57.390181-08:00,1014.915283203125,10.721025,10721.025 +8310,2025-03-08T00:46:08.116158-08:00,1014.9219360351562,10.725977,10725.977 +8311,2025-03-08T00:46:18.837773-08:00,1014.9453735351562,10.721615,10721.615 +8312,2025-03-08T00:46:29.563601-08:00,1014.9105224609375,10.725828,10725.828 +8313,2025-03-08T00:46:40.279181-08:00,1014.9141235351562,10.71558,10715.58 +8314,2025-03-08T00:46:51.008158-08:00,1014.907470703125,10.728977,10728.977 +8315,2025-03-08T00:47:01.731271-08:00,1014.912353515625,10.723113,10723.113 +8316,2025-03-08T00:47:12.452797-08:00,1014.935791015625,10.721526,10721.526 +8317,2025-03-08T00:47:23.177336-08:00,1014.9586181640625,10.724539,10724.539 +8318,2025-03-08T00:47:33.892007-08:00,1014.9338989257812,10.714671,10714.671 +8319,2025-03-08T00:47:44.624361-08:00,1014.917724609375,10.732354,10732.354 +8320,2025-03-08T00:47:55.344184-08:00,1014.9096069335938,10.719823,10719.823 +8321,2025-03-08T00:48:06.074148-08:00,1014.942626953125,10.729964,10729.964 +8322,2025-03-08T00:48:16.801180-08:00,1014.9393920898438,10.727032,10727.032 +8323,2025-03-08T00:48:27.522597-08:00,1014.9657592773438,10.721417,10721.417 +8324,2025-03-08T00:48:38.240396-08:00,1014.9444580078125,10.717799,10717.799 +8325,2025-03-08T00:48:48.969153-08:00,1014.954345703125,10.728757,10728.757 +8326,2025-03-08T00:48:59.688179-08:00,1014.9528198242188,10.719026,10719.026 +8327,2025-03-08T00:49:10.415153-08:00,1014.9576416015625,10.726974,10726.974 +8328,2025-03-08T00:49:21.137288-08:00,1014.9296875,10.722135,10722.135 +8329,2025-03-08T00:49:31.861152-08:00,1014.9329833984375,10.723864,10723.864 +8330,2025-03-08T00:49:42.582353-08:00,1014.9578857421875,10.721201,10721.201 +8331,2025-03-08T00:49:53.307156-08:00,1014.9593505859375,10.724803,10724.803 +8332,2025-03-08T00:50:04.030562-08:00,1014.9645385742188,10.723406,10723.406 +8333,2025-03-08T00:50:14.747155-08:00,1014.9365844726562,10.716593,10716.593 +8334,2025-03-08T00:50:25.469348-08:00,1014.9317016601562,10.722193,10722.193 +8335,2025-03-08T00:50:36.196206-08:00,1014.959716796875,10.726858,10726.858 +8336,2025-03-08T00:50:46.910919-08:00,1014.9434204101562,10.714713,10714.713 +8337,2025-03-08T00:50:57.641264-08:00,1014.9699096679688,10.730345,10730.345 +8338,2025-03-08T00:51:08.358367-08:00,1014.9567260742188,10.717103,10717.103 +8339,2025-03-08T00:51:19.083156-08:00,1014.9320068359375,10.724789,10724.789 +8340,2025-03-08T00:51:29.809160-08:00,1014.9566650390625,10.726004,10726.004 +8341,2025-03-08T00:51:40.534187-08:00,1014.9632568359375,10.725027,10725.027 +8342,2025-03-08T00:51:51.260152-08:00,1014.9385986328125,10.725965,10725.965 +8343,2025-03-08T00:52:01.980156-08:00,1014.9517822265625,10.720004,10720.004 +8344,2025-03-08T00:52:12.701547-08:00,1014.9568481445312,10.721391,10721.391 +8345,2025-03-08T00:52:23.472665-08:00,1014.9255981445312,10.771118,10771.118 +8346,2025-03-08T00:52:34.199668-08:00,1014.9190673828125,10.727003,10727.003 +8347,2025-03-08T00:52:44.924858-08:00,1014.9160766601562,10.72519,10725.19 +8348,2025-03-08T00:52:55.650880-08:00,1014.9425048828125,10.726022,10726.022 +8349,2025-03-08T00:53:06.371683-08:00,1014.9425048828125,10.720803,10720.803 +8350,2025-03-08T00:53:17.094668-08:00,1014.94580078125,10.722985,10722.985 +8351,2025-03-08T00:53:27.817871-08:00,1014.93408203125,10.723203,10723.203 +8352,2025-03-08T00:53:38.534671-08:00,1014.9177856445312,10.7168,10716.8 +8353,2025-03-08T00:53:49.263060-08:00,1014.9046020507812,10.728389,10728.389 +8354,2025-03-08T00:53:59.988690-08:00,1014.92919921875,10.72563,10725.63 +8355,2025-03-08T00:54:10.711819-08:00,1014.94091796875,10.723129,10723.129 +8356,2025-03-08T00:54:21.430671-08:00,1014.9375610351562,10.718852,10718.852 +8357,2025-03-08T00:54:32.153864-08:00,1014.9393920898438,10.723193,10723.193 +8358,2025-03-08T00:54:42.879704-08:00,1014.9375610351562,10.72584,10725.84 +8359,2025-03-08T00:54:53.596845-08:00,1014.90966796875,10.717141,10717.141 +8360,2025-03-08T00:55:04.325668-08:00,1014.9180297851562,10.728823,10728.823 +8361,2025-03-08T00:55:15.039779-08:00,1014.9478149414062,10.714111,10714.111 +8362,2025-03-08T00:55:25.763671-08:00,1014.898193359375,10.723892,10723.892 +8363,2025-03-08T00:55:36.490795-08:00,1014.923095703125,10.727124,10727.124 +8364,2025-03-08T00:55:47.219690-08:00,1014.909912109375,10.728895,10728.895 +8365,2025-03-08T00:55:57.940007-08:00,1014.9411010742188,10.720317,10720.317 +8366,2025-03-08T00:56:08.655837-08:00,1014.9168090820312,10.71583,10715.83 +8367,2025-03-08T00:56:19.376919-08:00,1014.9249267578125,10.721082,10721.082 +8368,2025-03-08T00:56:30.099664-08:00,1014.8987426757812,10.722745,10722.745 +8369,2025-03-08T00:56:40.823863-08:00,1014.9149780273438,10.724199,10724.199 +8370,2025-03-08T00:56:51.548880-08:00,1014.9035034179688,10.725017,10725.017 +8371,2025-03-08T00:57:02.269682-08:00,1014.8954467773438,10.720802,10720.802 +8372,2025-03-08T00:57:12.992694-08:00,1014.9185180664062,10.723012,10723.012 +8373,2025-03-08T00:57:23.712850-08:00,1014.8956298828125,10.720156,10720.156 +8374,2025-03-08T00:57:34.438668-08:00,1014.9268798828125,10.725818,10725.818 +8375,2025-03-08T00:57:45.160701-08:00,1014.92236328125,10.722033,10722.033 +8376,2025-03-08T00:57:55.892868-08:00,1014.91748046875,10.732167,10732.167 +8377,2025-03-08T00:58:06.608665-08:00,1014.9274291992188,10.715797,10715.797 +8378,2025-03-08T00:58:17.341122-08:00,1014.8947143554688,10.732457,10732.457 +8379,2025-03-08T00:58:28.064673-08:00,1014.8942260742188,10.723551,10723.551 +8380,2025-03-08T00:58:38.790669-08:00,1014.9143676757812,10.725996,10725.996 +8381,2025-03-08T00:58:49.507668-08:00,1014.889892578125,10.716999,10716.999 +8382,2025-03-08T00:59:00.239739-08:00,1014.9034423828125,10.732071,10732.071 +8383,2025-03-08T00:59:10.962208-08:00,1014.9053955078125,10.722469,10722.469 +8384,2025-03-08T00:59:21.683664-08:00,1014.922119140625,10.721456,10721.456 +8385,2025-03-08T00:59:32.403860-08:00,1014.92236328125,10.720196,10720.196 +8386,2025-03-08T00:59:43.126666-08:00,1014.9324951171875,10.722806,10722.806 +8387,2025-03-08T00:59:53.860049-08:00,1014.9341430664062,10.733383,10733.383 +8388,2025-03-08T01:00:04.574702-08:00,1014.9461059570312,10.714653,10714.653 +8389,2025-03-08T01:00:15.293918-08:00,1014.952880859375,10.719216,10719.216 +8390,2025-03-08T01:00:26.017732-08:00,1014.9447021484375,10.723814,10723.814 +8391,2025-03-08T01:00:36.741842-08:00,1014.9581298828125,10.72411,10724.11 +8392,2025-03-08T01:00:47.469670-08:00,1014.9650268554688,10.727828,10727.828 +8393,2025-03-08T01:00:58.195666-08:00,1014.958251953125,10.725996,10725.996 +8394,2025-03-08T01:01:08.919738-08:00,1014.963623046875,10.724072,10724.072 +8395,2025-03-08T01:01:19.642079-08:00,1014.95361328125,10.722341,10722.341 +8396,2025-03-08T01:01:30.361665-08:00,1014.97216796875,10.719586,10719.586 +8397,2025-03-08T01:01:41.090670-08:00,1014.947509765625,10.729005,10729.005 +8398,2025-03-08T01:01:51.810877-08:00,1014.989990234375,10.720207,10720.207 +8399,2025-03-08T01:02:02.535876-08:00,1014.978515625,10.724999,10724.999 +8400,2025-03-08T01:02:13.262125-08:00,1014.9868774414062,10.726249,10726.249 +8401,2025-03-08T01:02:23.974776-08:00,1015.0133056640625,10.712651,10712.651 +8402,2025-03-08T01:02:34.705342-08:00,1014.9820556640625,10.730566,10730.566 +8403,2025-03-08T01:02:45.421803-08:00,1015.0035400390625,10.716461,10716.461 +8404,2025-03-08T01:02:56.144869-08:00,1014.9954833984375,10.723066,10723.066 +8405,2025-03-08T01:03:06.863673-08:00,1014.9971923828125,10.718804,10718.804 +8406,2025-03-08T01:03:17.584670-08:00,1014.9757690429688,10.720997,10720.997 +8407,2025-03-08T01:03:28.311739-08:00,1015.0037231445312,10.727069,10727.069 +8408,2025-03-08T01:03:39.035407-08:00,1015.000732421875,10.723668,10723.668 +8409,2025-03-08T01:03:49.758874-08:00,1015.0186767578125,10.723467,10723.467 +8410,2025-03-08T01:04:00.478734-08:00,1015.0237426757812,10.71986,10719.86 +8411,2025-03-08T01:04:11.197695-08:00,1015.0054931640625,10.718961,10718.961 +8412,2025-03-08T01:04:21.920664-08:00,1015.0203857421875,10.722969,10722.969 +8413,2025-03-08T01:04:32.646866-08:00,1015.0237426757812,10.726202,10726.202 +8414,2025-03-08T01:04:43.366549-08:00,1015.009033203125,10.719683,10719.683 +8415,2025-03-08T01:04:54.081942-08:00,1015.009033203125,10.715393,10715.393 +8416,2025-03-08T01:05:04.809388-08:00,1015.022216796875,10.727446,10727.446 +8417,2025-03-08T01:05:15.529671-08:00,1015.02880859375,10.720283,10720.283 +8418,2025-03-08T01:05:26.250098-08:00,1015.0420532226562,10.720427,10720.427 +8419,2025-03-08T01:05:36.965839-08:00,1015.015625,10.715741,10715.741 +8420,2025-03-08T01:05:47.692670-08:00,1015.0700073242188,10.726831,10726.831 +8421,2025-03-08T01:05:58.419671-08:00,1015.048583984375,10.727001,10727.001 +8422,2025-03-08T01:06:09.141240-08:00,1015.0303344726562,10.721569,10721.569 +8423,2025-03-08T01:06:19.855094-08:00,1015.040283203125,10.713854,10713.854 +8424,2025-03-08T01:06:30.580666-08:00,1015.0172119140625,10.725572,10725.572 +8425,2025-03-08T01:06:41.313674-08:00,1015.0516967773438,10.733008,10733.008 +8426,2025-03-08T01:06:52.029373-08:00,1015.028564453125,10.715699,10715.699 +8427,2025-03-08T01:07:02.753884-08:00,1015.0535278320312,10.724511,10724.511 +8428,2025-03-08T01:07:13.481494-08:00,1015.0631103515625,10.72761,10727.61 +8429,2025-03-08T01:07:24.204669-08:00,1015.0484619140625,10.723175,10723.175 +8430,2025-03-08T01:07:34.931675-08:00,1015.0565795898438,10.727006,10727.006 +8431,2025-03-08T01:07:45.653140-08:00,1015.0797119140625,10.721465,10721.465 +8432,2025-03-08T01:07:56.376878-08:00,1015.08935546875,10.723738,10723.738 +8433,2025-03-08T01:07:57.161978-08:00,1015.1043701171875,0.7851,785.1 +8434,2025-03-08T01:08:07.097669-08:00,1015.08935546875,9.935691,9935.691 +8435,2025-03-08T01:08:17.825850-08:00,1015.0795288085938,10.728181,10728.181 +8436,2025-03-08T01:08:28.549096-08:00,1015.0926513671875,10.723246,10723.246 +8437,2025-03-08T01:08:39.280665-08:00,1015.0762329101562,10.731569,10731.569 +8438,2025-03-08T01:08:50.005319-08:00,1015.0909423828125,10.724654,10724.654 +8439,2025-03-08T01:09:00.735672-08:00,1015.0877075195312,10.730353,10730.353 +8440,2025-03-08T01:09:11.461450-08:00,1015.1339111328125,10.725778,10725.778 +8441,2025-03-08T01:09:22.179859-08:00,1015.0892333984375,10.718409,10718.409 +8442,2025-03-08T01:09:32.910897-08:00,1015.1024780273438,10.731038,10731.038 +8443,2025-03-08T01:09:43.629836-08:00,1015.1337280273438,10.718939,10718.939 +8444,2025-03-08T01:09:54.358692-08:00,1015.1173706054688,10.728856,10728.856 +8445,2025-03-08T01:10:05.084720-08:00,1015.0908813476562,10.726028,10726.028 +8446,2025-03-08T01:10:15.805671-08:00,1015.10595703125,10.720951,10720.951 +8447,2025-03-08T01:10:26.538491-08:00,1015.107421875,10.73282,10732.82 +8448,2025-03-08T01:10:37.265502-08:00,1015.1123657226562,10.727011,10727.011 +8449,2025-03-08T01:10:47.986671-08:00,1015.0990600585938,10.721169,10721.169 +8450,2025-03-08T01:10:58.709841-08:00,1015.0940551757812,10.72317,10723.17 +8451,2025-03-08T01:11:09.443668-08:00,1015.1451416015625,10.733827,10733.827 +8452,2025-03-08T01:11:20.162520-08:00,1015.1220092773438,10.718852,10718.852 +8453,2025-03-08T01:11:30.890733-08:00,1015.1088256835938,10.728213,10728.213 +8454,2025-03-08T01:11:41.619864-08:00,1015.0839233398438,10.729131,10729.131 +8455,2025-03-08T01:11:52.344853-08:00,1015.1071166992188,10.724989,10724.989 +8456,2025-03-08T01:12:03.072671-08:00,1015.0756225585938,10.727818,10727.818 +8457,2025-03-08T01:12:13.795663-08:00,1015.0921630859375,10.722992,10722.992 +8458,2025-03-08T01:12:24.531668-08:00,1015.0904541015625,10.736005,10736.005 +8459,2025-03-08T01:12:35.255705-08:00,1015.0722045898438,10.724037,10724.037 +8460,2025-03-08T01:12:45.985869-08:00,1015.10009765625,10.730164,10730.164 +8461,2025-03-08T01:12:56.706666-08:00,1015.0689086914062,10.720797,10720.797 +8462,2025-03-08T01:13:07.426850-08:00,1015.0968017578125,10.720184,10720.184 +8463,2025-03-08T01:13:18.156910-08:00,1015.0818481445312,10.73006,10730.06 +8464,2025-03-08T01:13:28.875850-08:00,1015.1032104492188,10.71894,10718.94 +8465,2025-03-08T01:13:39.609696-08:00,1015.0554809570312,10.733846,10733.846 +8466,2025-03-08T01:13:50.333844-08:00,1015.073486328125,10.724148,10724.148 +8467,2025-03-08T01:14:01.056821-08:00,1015.06689453125,10.722977,10722.977 +8468,2025-03-08T01:14:11.785668-08:00,1015.0699462890625,10.728847,10728.847 +8469,2025-03-08T01:14:22.517673-08:00,1015.0452880859375,10.732005,10732.005 +8470,2025-03-08T01:14:33.238893-08:00,1015.0946044921875,10.72122,10721.22 +8471,2025-03-08T01:14:43.970669-08:00,1015.08984375,10.731776,10731.776 +8472,2025-03-08T01:14:54.700481-08:00,1015.0435791015625,10.729812,10729.812 +8473,2025-03-08T01:15:05.416715-08:00,1015.028564453125,10.716234,10716.234 +8474,2025-03-08T01:15:16.140897-08:00,1015.0829467773438,10.724182,10724.182 +8475,2025-03-08T01:15:26.867671-08:00,1015.0484619140625,10.726774,10726.774 +8476,2025-03-08T01:15:37.592294-08:00,1015.0448608398438,10.724623,10724.623 +8477,2025-03-08T01:15:48.320920-08:00,1015.052978515625,10.728626,10728.626 +8478,2025-03-08T01:15:59.044777-08:00,1015.033203125,10.723857,10723.857 +8479,2025-03-08T01:16:09.767065-08:00,1015.0349731445312,10.722288,10722.288 +8480,2025-03-08T01:16:20.489670-08:00,1015.0248413085938,10.722605,10722.605 +8481,2025-03-08T01:16:31.215941-08:00,1015.0479736328125,10.726271,10726.271 +8482,2025-03-08T01:16:41.942884-08:00,1015.0645141601562,10.726943,10726.943 +8483,2025-03-08T01:16:52.672673-08:00,1015.0213012695312,10.729789,10729.789 +8484,2025-03-08T01:17:03.388835-08:00,1015.0445556640625,10.716162,10716.162 +8485,2025-03-08T01:17:14.115751-08:00,1015.0625610351562,10.726916,10726.916 +8486,2025-03-08T01:17:24.850584-08:00,1015.0310668945312,10.734833,10734.833 +8487,2025-03-08T01:17:35.574673-08:00,1015.0440673828125,10.724089,10724.089 +8488,2025-03-08T01:17:46.299050-08:00,1015.0488891601562,10.724377,10724.377 +8489,2025-03-08T01:17:57.023953-08:00,1015.045654296875,10.724903,10724.903 +8490,2025-03-08T01:18:07.743878-08:00,1015.0189208984375,10.719925,10719.925 +8491,2025-03-08T01:18:18.472875-08:00,1015.0172119140625,10.728997,10728.997 +8492,2025-03-08T01:18:29.197672-08:00,1015.0220336914062,10.724797,10724.797 +8493,2025-03-08T01:18:39.921810-08:00,1015.0320434570312,10.724138,10724.138 +8494,2025-03-08T01:18:50.644984-08:00,1015.01513671875,10.723174,10723.174 +8495,2025-03-08T01:19:01.376841-08:00,1015.0332641601562,10.731857,10731.857 +8496,2025-03-08T01:19:12.095671-08:00,1014.9785766601562,10.71883,10718.83 +8497,2025-03-08T01:19:22.820933-08:00,1015.0165405273438,10.725262,10725.262 +8498,2025-03-08T01:19:33.543919-08:00,1015.0298461914062,10.722986,10722.986 +8499,2025-03-08T01:19:44.274862-08:00,1014.9967041015625,10.730943,10730.943 +8500,2025-03-08T01:19:54.993736-08:00,1015.010009765625,10.718874,10718.874 +8501,2025-03-08T01:20:05.720008-08:00,1015.0148315429688,10.726272,10726.272 +8502,2025-03-08T01:20:16.443721-08:00,1015.0178833007812,10.723713,10723.713 +8503,2025-03-08T01:20:27.167705-08:00,1015.009521484375,10.723984,10723.984 +8504,2025-03-08T01:20:37.899782-08:00,1015.0374755859375,10.732077,10732.077 +8505,2025-03-08T01:20:48.624669-08:00,1015.0342407226562,10.724887,10724.887 +8506,2025-03-08T01:20:59.342860-08:00,1015.0309448242188,10.718191,10718.191 +8507,2025-03-08T01:21:10.076666-08:00,1015.0324096679688,10.733806,10733.806 +8508,2025-03-08T01:21:20.798944-08:00,1015.0387573242188,10.722278,10722.278 +8509,2025-03-08T01:21:31.536066-08:00,1015.0321655273438,10.737122,10737.122 +8510,2025-03-08T01:21:42.260828-08:00,1015.0516967773438,10.724762,10724.762 +8511,2025-03-08T01:21:52.986672-08:00,1015.040283203125,10.725844,10725.844 +8512,2025-03-08T01:22:03.718313-08:00,1015.0549926757812,10.731641,10731.641 +8513,2025-03-08T01:22:14.443704-08:00,1015.0650024414062,10.725391,10725.391 +8514,2025-03-08T01:22:25.173513-08:00,1015.046630859375,10.729809,10729.809 +8515,2025-03-08T01:22:35.895669-08:00,1015.0415649414062,10.722156,10722.156 +8516,2025-03-08T01:22:46.622809-08:00,1015.06982421875,10.72714,10727.14 +8517,2025-03-08T01:22:57.347806-08:00,1015.04345703125,10.724997,10724.997 +8518,2025-03-08T01:23:08.063115-08:00,1015.0382690429688,10.715309,10715.309 +8519,2025-03-08T01:23:18.794669-08:00,1015.0448608398438,10.731554,10731.554 +8520,2025-03-08T01:23:29.513671-08:00,1015.079345703125,10.719002,10719.002 +8521,2025-03-08T01:23:40.236930-08:00,1015.0878295898438,10.723259,10723.259 +8522,2025-03-08T01:23:50.962669-08:00,1015.08935546875,10.725739,10725.739 +8523,2025-03-08T01:24:01.684236-08:00,1015.07763671875,10.721567,10721.567 +8524,2025-03-08T01:24:12.406955-08:00,1015.0908813476562,10.722719,10722.719 +8525,2025-03-08T01:24:23.126761-08:00,1015.07763671875,10.719806,10719.806 +8526,2025-03-08T01:24:33.853677-08:00,1015.0695190429688,10.726916,10726.916 +8527,2025-03-08T01:24:44.581670-08:00,1015.07763671875,10.727993,10727.993 +8528,2025-03-08T01:24:55.295668-08:00,1015.09423828125,10.713998,10713.998 +8529,2025-03-08T01:25:06.024857-08:00,1015.095703125,10.729189,10729.189 +8530,2025-03-08T01:25:16.749671-08:00,1015.0711059570312,10.724814,10724.814 +8531,2025-03-08T01:25:27.469071-08:00,1015.072509765625,10.7194,10719.4 +8532,2025-03-08T01:25:38.190825-08:00,1015.0857543945312,10.721754,10721.754 +8533,2025-03-08T01:25:48.912861-08:00,1015.0692138671875,10.722036,10722.036 +8534,2025-03-08T01:25:59.645981-08:00,1015.064453125,10.73312,10733.12 +8535,2025-03-08T01:26:10.364855-08:00,1015.0744018554688,10.718874,10718.874 +8536,2025-03-08T01:26:21.086668-08:00,1015.0496826171875,10.721813,10721.813 +8537,2025-03-08T01:26:31.814670-08:00,1015.064453125,10.728002,10728.002 +8538,2025-03-08T01:26:42.533934-08:00,1015.0792236328125,10.719264,10719.264 +8539,2025-03-08T01:26:53.256788-08:00,1015.05126953125,10.722854,10722.854 +8540,2025-03-08T01:27:03.982993-08:00,1015.0446166992188,10.726205,10726.205 +8541,2025-03-08T01:27:14.711877-08:00,1015.0446166992188,10.728884,10728.884 +8542,2025-03-08T01:27:25.429879-08:00,1015.052734375,10.718002,10718.002 +8543,2025-03-08T01:27:36.154672-08:00,1015.0349731445312,10.724793,10724.793 +8544,2025-03-08T01:27:46.872853-08:00,1015.0364990234375,10.718181,10718.181 +8545,2025-03-08T01:27:57.599875-08:00,1015.0284423828125,10.727022,10727.022 +8546,2025-03-08T01:28:08.328695-08:00,1015.0133666992188,10.72882,10728.82 +8547,2025-03-08T01:28:19.054218-08:00,1015.0265502929688,10.725523,10725.523 +8548,2025-03-08T01:28:29.778984-08:00,1015.0001831054688,10.724766,10724.766 +8549,2025-03-08T01:28:40.494669-08:00,1015.0184326171875,10.715685,10715.685 +8550,2025-03-08T01:28:51.216671-08:00,1014.9971313476562,10.722002,10722.002 +8551,2025-03-08T01:29:01.938669-08:00,1015.0250244140625,10.721998,10721.998 +8552,2025-03-08T01:29:12.668047-08:00,1015.0119018554688,10.729378,10729.378 +8553,2025-03-08T01:29:23.385866-08:00,1014.9971313476562,10.717819,10717.819 +8554,2025-03-08T01:29:34.110855-08:00,1014.9953002929688,10.724989,10724.989 +8555,2025-03-08T01:29:44.832786-08:00,1015.0103149414062,10.721931,10721.931 +8556,2025-03-08T01:29:55.562675-08:00,1015.008544921875,10.729889,10729.889 +8557,2025-03-08T01:30:06.279143-08:00,1014.9937744140625,10.716468,10716.468 +8558,2025-03-08T01:30:17.001814-08:00,1015.0120849609375,10.722671,10722.671 +8559,2025-03-08T01:30:27.728888-08:00,1014.9771728515625,10.727074,10727.074 +8560,2025-03-08T01:30:38.449668-08:00,1014.9790649414062,10.72078,10720.78 +8561,2025-03-08T01:30:49.163702-08:00,1014.9823608398438,10.714034,10714.034 +8562,2025-03-08T01:30:59.891671-08:00,1014.9888916015625,10.727969,10727.969 +8563,2025-03-08T01:31:10.605917-08:00,1014.990478515625,10.714246,10714.246 +8564,2025-03-08T01:31:21.330698-08:00,1014.9874877929688,10.724781,10724.781 +8565,2025-03-08T01:31:32.060777-08:00,1015.0006103515625,10.730079,10730.079 +8566,2025-03-08T01:31:42.782872-08:00,1014.9874877929688,10.722095,10722.095 +8567,2025-03-08T01:31:53.500861-08:00,1014.985595703125,10.717989,10717.989 +8568,2025-03-08T01:32:04.226767-08:00,1014.9957885742188,10.725906,10725.906 +8569,2025-03-08T01:32:14.943853-08:00,1015.00244140625,10.717086,10717.086 +8570,2025-03-08T01:32:25.666910-08:00,1015.009033203125,10.723057,10723.057 +8571,2025-03-08T01:32:36.391854-08:00,1015.0072021484375,10.724944,10724.944 +8572,2025-03-08T01:32:47.124698-08:00,1014.990966796875,10.732844,10732.844 +8573,2025-03-08T01:32:57.844147-08:00,1014.98291015625,10.719449,10719.449 +8574,2025-03-08T01:33:08.574354-08:00,1014.9630737304688,10.730207,10730.207 +8575,2025-03-08T01:33:19.298673-08:00,1015.0042114257812,10.724319,10724.319 +8576,2025-03-08T01:33:30.015894-08:00,1014.9810791015625,10.717221,10717.221 +8577,2025-03-08T01:33:40.740665-08:00,1014.9810791015625,10.724771,10724.771 +8578,2025-03-08T01:33:51.471840-08:00,1014.9942016601562,10.731175,10731.175 +8579,2025-03-08T01:34:02.200870-08:00,1014.9927978515625,10.72903,10729.03 +8580,2025-03-08T01:34:12.917863-08:00,1014.997802734375,10.716993,10716.993 +8581,2025-03-08T01:34:23.651690-08:00,1014.99609375,10.733827,10733.827 +8582,2025-03-08T01:34:34.372877-08:00,1015.0092163085938,10.721187,10721.187 +8583,2025-03-08T01:34:45.098111-08:00,1015.0077514648438,10.725234,10725.234 +8584,2025-03-08T01:34:55.819933-08:00,1015.0077514648438,10.721822,10721.822 +8585,2025-03-08T01:35:06.532668-08:00,1015.0077514648438,10.712735,10712.735 +8586,2025-03-08T01:35:17.258038-08:00,1015.027587890625,10.72537,10725.37 +8587,2025-03-08T01:35:27.979667-08:00,1015.039306640625,10.721629,10721.629 +8588,2025-03-08T01:35:38.707693-08:00,1015.01611328125,10.728026,10728.026 +8589,2025-03-08T01:35:49.424765-08:00,1015.04248046875,10.717072,10717.072 +8590,2025-03-08T01:36:00.151886-08:00,1015.0145874023438,10.727121,10727.121 +8591,2025-03-08T01:36:10.874319-08:00,1015.034423828125,10.722433,10722.433 +8592,2025-03-08T01:36:21.606671-08:00,1015.0410766601562,10.732352,10732.352 +8593,2025-03-08T01:36:32.330663-08:00,1015.0392456054688,10.723992,10723.992 +8594,2025-03-08T01:36:43.047667-08:00,1015.0574951171875,10.717004,10717.004 +8595,2025-03-08T01:36:53.771878-08:00,1015.0641479492188,10.724211,10724.211 +8596,2025-03-08T01:37:04.504898-08:00,1015.0427856445312,10.73302,10733.02 +8597,2025-03-08T01:37:15.222700-08:00,1015.0610961914062,10.717802,10717.802 +8598,2025-03-08T01:37:25.946929-08:00,1015.03955078125,10.724229,10724.229 +8599,2025-03-08T01:37:36.672915-08:00,1015.0379638671875,10.725986,10725.986 +8600,2025-03-08T01:37:47.395014-08:00,1015.0578002929688,10.722099,10722.099 +8601,2025-03-08T01:37:58.115701-08:00,1015.0562744140625,10.720687,10720.687 +8602,2025-03-08T01:38:08.846832-08:00,1015.03466796875,10.731131,10731.131 +8603,2025-03-08T01:38:19.569669-08:00,1015.07421875,10.722837,10722.837 +8604,2025-03-08T01:38:30.295045-08:00,1015.0562744140625,10.725376,10725.376 +8605,2025-03-08T01:38:41.012758-08:00,1015.0496215820312,10.717713,10717.713 +8606,2025-03-08T01:38:51.738151-08:00,1015.0761108398438,10.725393,10725.393 +8607,2025-03-08T01:39:02.462668-08:00,1015.048095703125,10.724517,10724.517 +8608,2025-03-08T01:39:13.184847-08:00,1015.0348510742188,10.722179,10722.179 +8609,2025-03-08T01:39:23.903671-08:00,1015.0546875,10.718824,10718.824 +8610,2025-03-08T01:39:34.624006-08:00,1015.05322265625,10.720335,10720.335 +8611,2025-03-08T01:39:45.345872-08:00,1015.0315551757812,10.721866,10721.866 +8612,2025-03-08T01:39:56.078694-08:00,1015.0381469726562,10.732822,10732.822 +8613,2025-03-08T01:40:06.800861-08:00,1015.0315551757812,10.722167,10722.167 +8614,2025-03-08T01:40:17.526665-08:00,1015.0296630859375,10.725804,10725.804 +8615,2025-03-08T01:40:28.242693-08:00,1015.0131225585938,10.716028,10716.028 +8616,2025-03-08T01:40:38.970297-08:00,1015.018310546875,10.727604,10727.604 +8617,2025-03-08T01:40:49.696851-08:00,1015.0150146484375,10.726554,10726.554 +8618,2025-03-08T01:41:00.418109-08:00,1015.0,10.721258,10721.258 +8619,2025-03-08T01:41:11.143841-08:00,1015.032958984375,10.725732,10725.732 +8620,2025-03-08T01:41:21.861745-08:00,1015.0050048828125,10.717904,10717.904 +8621,2025-03-08T01:41:32.588462-08:00,1015.0381469726562,10.726717,10726.717 +8622,2025-03-08T01:41:43.316471-08:00,1015.0167236328125,10.728009,10728.009 +8623,2025-03-08T01:41:54.038765-08:00,1015.0101318359375,10.722294,10722.294 +8624,2025-03-08T01:42:04.757668-08:00,1015.0020141601562,10.718903,10718.903 +8625,2025-03-08T01:42:15.477594-08:00,1015.018310546875,10.719926,10719.926 +8626,2025-03-08T01:42:26.199671-08:00,1015.0067749023438,10.722077,10722.077 +8627,2025-03-08T01:42:36.922723-08:00,1015.0184936523438,10.723052,10723.052 +8628,2025-03-08T01:42:47.641668-08:00,1014.9971923828125,10.718945,10718.945 +8629,2025-03-08T01:42:58.366895-08:00,1015.0053100585938,10.725227,10725.227 +8630,2025-03-08T01:43:09.090678-08:00,1015.025146484375,10.723783,10723.783 +8631,2025-03-08T01:43:19.813702-08:00,1015.0499877929688,10.723024,10723.024 +8632,2025-03-08T01:43:30.536667-08:00,1015.013671875,10.722965,10722.965 +8633,2025-03-08T01:43:41.254989-08:00,1014.993896484375,10.718322,10718.322 +8634,2025-03-08T01:43:51.978671-08:00,1014.9757690429688,10.723682,10723.682 +8635,2025-03-08T01:44:02.703924-08:00,1014.990478515625,10.725253,10725.253 +8636,2025-03-08T01:44:13.420709-08:00,1014.9559326171875,10.716785,10716.785 +8637,2025-03-08T01:44:24.139933-08:00,1014.9971313476562,10.719224,10719.224 +8638,2025-03-08T01:44:34.860735-08:00,1014.9907836914062,10.720802,10720.802 +8639,2025-03-08T01:44:45.586670-08:00,1014.9907836914062,10.725935,10725.935 +8640,2025-03-08T01:44:56.305914-08:00,1015.0106201171875,10.719244,10719.244 +8641,2025-03-08T01:45:07.028857-08:00,1014.9891967773438,10.722943,10722.943 +8642,2025-03-08T01:45:17.751671-08:00,1014.9940795898438,10.722814,10722.814 +8643,2025-03-08T01:45:28.470829-08:00,1015.0255737304688,10.719158,10719.158 +8644,2025-03-08T01:45:39.202913-08:00,1015.0372924804688,10.732084,10732.084 +8645,2025-03-08T01:45:49.920891-08:00,1015.0159301757812,10.717978,10717.978 +8646,2025-03-08T01:46:00.641669-08:00,1015.0159301757812,10.720778,10720.778 +8647,2025-03-08T01:46:11.360696-08:00,1015.0009155273438,10.719027,10719.027 +8648,2025-03-08T01:46:22.091903-08:00,1015.0140380859375,10.731207,10731.207 +8649,2025-03-08T01:46:32.809898-08:00,1015.0390625,10.717995,10717.995 +8650,2025-03-08T01:46:43.530667-08:00,1014.9927978515625,10.720769,10720.769 +8651,2025-03-08T01:46:54.253730-08:00,1015.0176391601562,10.723063,10723.063 +8652,2025-03-08T01:47:04.973882-08:00,1015.0242919921875,10.720152,10720.152 +8653,2025-03-08T01:47:15.690905-08:00,1014.9846801757812,10.717023,10717.023 +8654,2025-03-08T01:47:26.415818-08:00,1015.0440673828125,10.724913,10724.913 +8655,2025-03-08T01:47:37.139671-08:00,1015.0092163085938,10.723853,10723.853 +8656,2025-03-08T01:47:47.856876-08:00,1015.0209350585938,10.717205,10717.205 +8657,2025-03-08T01:47:58.581866-08:00,1015.040771484375,10.72499,10724.99 +8658,2025-03-08T01:48:09.307667-08:00,1015.04736328125,10.725801,10725.801 +8659,2025-03-08T01:48:20.022671-08:00,1015.014404296875,10.715004,10715.004 +8660,2025-03-08T01:48:30.745869-08:00,1015.0062255859375,10.723198,10723.198 +8661,2025-03-08T01:48:41.466652-08:00,1015.03076171875,10.720783,10720.783 +8662,2025-03-08T01:48:52.183669-08:00,1015.0226440429688,10.717017,10717.017 +8663,2025-03-08T01:49:02.903869-08:00,1015.0359497070312,10.7202,10720.2 +8664,2025-03-08T01:49:13.618671-08:00,1015.0440673828125,10.714802,10714.802 +8665,2025-03-08T01:49:24.343040-08:00,1015.006103515625,10.724369,10724.369 +8666,2025-03-08T01:49:35.061393-08:00,1015.0557861328125,10.718353,10718.353 +8667,2025-03-08T01:49:45.782504-08:00,1015.017822265625,10.721111,10721.111 +8668,2025-03-08T01:49:56.499732-08:00,1015.0193481445312,10.717228,10717.228 +8669,2025-03-08T01:50:07.214731-08:00,1015.0325927734375,10.714999,10714.999 +8670,2025-03-08T01:50:17.926897-08:00,1015.0325927734375,10.712166,10712.166 +8671,2025-03-08T01:50:28.653871-08:00,1015.044189453125,10.726974,10726.974 +8672,2025-03-08T01:50:39.363873-08:00,1015.044189453125,10.710002,10710.002 +8673,2025-03-08T01:50:50.089748-08:00,1015.0310668945312,10.725875,10725.875 +8674,2025-03-08T01:51:00.802706-08:00,1015.017822265625,10.712958,10712.958 +8675,2025-03-08T01:51:11.518041-08:00,1015.0493774414062,10.715335,10715.335 +8676,2025-03-08T01:51:22.238670-08:00,1015.0360717773438,10.720629,10720.629 +8677,2025-03-08T01:51:32.954059-08:00,1015.0328369140625,10.715389,10715.389 +8678,2025-03-08T01:51:43.681671-08:00,1015.012939453125,10.727612,10727.612 +8679,2025-03-08T01:51:54.397875-08:00,1015.0393676757812,10.716204,10716.204 +8680,2025-03-08T01:52:05.114670-08:00,1015.0328369140625,10.716795,10716.795 +8681,2025-03-08T01:52:15.835148-08:00,1015.03125,10.720478,10720.478 +8682,2025-03-08T01:52:26.528004-08:00,1015.0379028320312,10.692856,10692.856 +8683,2025-03-08T01:52:37.254185-08:00,1015.0379028320312,10.726181,10726.181 +8684,2025-03-08T01:52:47.971985-08:00,1015.036376953125,10.7178,10717.8 +8685,2025-03-08T01:52:58.688095-08:00,1015.0,10.71611,10716.11 +8686,2025-03-08T01:53:09.409476-08:00,1015.0411987304688,10.721381,10721.381 +8687,2025-03-08T01:53:20.121332-08:00,1015.02490234375,10.711856,10711.856 +8688,2025-03-08T01:53:30.843064-08:00,1015.0281982421875,10.721732,10721.732 +8689,2025-03-08T01:53:41.562087-08:00,1014.9984130859375,10.719023,10719.023 +8690,2025-03-08T01:53:52.274980-08:00,1015.0020141601562,10.712893,10712.893 +8691,2025-03-08T01:54:02.999984-08:00,1014.9971923828125,10.725004,10725.004 +8692,2025-03-08T01:54:13.712234-08:00,1014.99560546875,10.71225,10712.25 +8693,2025-03-08T01:54:24.439984-08:00,1014.9907836914062,10.72775,10727.75 +8694,2025-03-08T01:54:35.151981-08:00,1014.997314453125,10.711997,10711.997 +8695,2025-03-08T01:54:45.871054-08:00,1014.9708862304688,10.719073,10719.073 +8696,2025-03-08T01:54:56.595105-08:00,1015.0008544921875,10.724051,10724.051 +8697,2025-03-08T01:55:07.309373-08:00,1014.9646606445312,10.714268,10714.268 +8698,2025-03-08T01:55:18.025978-08:00,1014.9862670898438,10.716605,10716.605 +8699,2025-03-08T01:55:28.748854-08:00,1014.9978637695312,10.722876,10722.876 +8700,2025-03-08T01:55:39.467986-08:00,1014.963623046875,10.719132,10719.132 +8701,2025-03-08T01:55:50.183984-08:00,1014.9523315429688,10.715998,10715.998 +8702,2025-03-08T01:56:00.900225-08:00,1014.963623046875,10.716241,10716.241 +8703,2025-03-08T01:56:11.622046-08:00,1014.9506225585938,10.721821,10721.821 +8704,2025-03-08T01:56:22.336169-08:00,1014.944091796875,10.714123,10714.123 +8705,2025-03-08T01:56:33.055010-08:00,1014.9031982421875,10.718841,10718.841 +8706,2025-03-08T01:56:43.765981-08:00,1014.9313354492188,10.710971,10710.971 +8707,2025-03-08T01:56:54.486361-08:00,1014.9332885742188,10.72038,10720.38 +8708,2025-03-08T01:57:05.202272-08:00,1014.9334106445312,10.715911,10715.911 +8709,2025-03-08T01:57:15.914501-08:00,1014.953125,10.712229,10712.229 +8710,2025-03-08T01:57:26.632982-08:00,1014.9614868164062,10.718481,10718.481 +8711,2025-03-08T01:57:37.351984-08:00,1014.9385375976562,10.719002,10719.002 +8712,2025-03-08T01:57:48.069985-08:00,1014.9354858398438,10.718001,10718.001 +8713,2025-03-08T01:57:58.789189-08:00,1014.96875,10.719204,10719.204 +8714,2025-03-08T01:58:09.515312-08:00,1014.97998046875,10.726123,10726.123 +8715,2025-03-08T01:58:20.228983-08:00,1014.9883422851562,10.713671,10713.671 +8716,2025-03-08T01:58:30.949174-08:00,1014.9768676757812,10.720191,10720.191 +8717,2025-03-08T01:58:41.663043-08:00,1014.9723510742188,10.713869,10713.869 +8718,2025-03-08T01:58:52.386321-08:00,1014.982177734375,10.723278,10723.278 +8719,2025-03-08T01:59:03.109126-08:00,1014.9920043945312,10.722805,10722.805 +8720,2025-03-08T01:59:13.825009-08:00,1015.002197265625,10.715883,10715.883 +8721,2025-03-08T01:59:24.544196-08:00,1014.998779296875,10.719187,10719.187 +8722,2025-03-08T01:59:35.258214-08:00,1015.0186157226562,10.714018,10714.018 +8723,2025-03-08T01:59:45.985984-08:00,1015.00390625,10.72777,10727.77 +8724,2025-03-08T01:59:56.700983-08:00,1015.0349731445312,10.714999,10714.999 +8725,2025-03-08T02:00:07.425399-08:00,1015.0367431640625,10.724416,10724.416 +8726,2025-03-08T02:00:18.150224-08:00,1015.0516967773438,10.724825,10724.825 +8727,2025-03-08T02:00:28.869982-08:00,1015.031982421875,10.719758,10719.758 +8728,2025-03-08T02:00:39.597008-08:00,1015.0828857421875,10.727026,10727.026 +8729,2025-03-08T02:00:50.310483-08:00,1015.040283203125,10.713475,10713.475 +8730,2025-03-08T02:01:01.032981-08:00,1015.058349609375,10.722498,10722.498 +8731,2025-03-08T02:01:22.469133-08:00,1015.0914306640625,21.436152,21436.152 +8732,2025-03-08T02:01:33.192373-08:00,1015.0960693359375,10.72324,10723.24 +8733,2025-03-08T02:01:43.910978-08:00,1015.1177368164062,10.718605,10718.605 +8734,2025-03-08T02:01:54.630717-08:00,1015.078125,10.719739,10719.739 +8735,2025-03-08T02:02:05.356015-08:00,1015.0812377929688,10.725298,10725.298 +8736,2025-03-08T02:02:16.079358-08:00,1015.0779418945312,10.723343,10723.343 +8737,2025-03-08T02:02:26.794179-08:00,1015.0830688476562,10.714821,10714.821 +8738,2025-03-08T02:02:37.518915-08:00,1015.0909423828125,10.724736,10724.736 +8739,2025-03-08T02:02:48.247171-08:00,1015.0745239257812,10.728256,10728.256 +8740,2025-03-08T02:02:58.967355-08:00,1015.0431518554688,10.720184,10720.184 +8741,2025-03-08T02:03:09.695045-08:00,1015.0560913085938,10.72769,10727.69 +8742,2025-03-08T02:03:20.417000-08:00,1015.0396728515625,10.721955,10721.955 +8743,2025-03-08T02:03:31.136983-08:00,1015.0445556640625,10.719983,10719.983 +8744,2025-03-08T02:03:41.861420-08:00,1015.07080078125,10.724437,10724.437 +8745,2025-03-08T02:03:52.584989-08:00,1015.0873413085938,10.723569,10723.569 +8746,2025-03-08T02:04:03.301168-08:00,1015.0607299804688,10.716179,10716.179 +8747,2025-03-08T02:04:14.019196-08:00,1015.0772705078125,10.718028,10718.028 +8748,2025-03-08T02:04:24.750179-08:00,1015.0623168945312,10.730983,10730.983 +8749,2025-03-08T02:04:35.473590-08:00,1015.045654296875,10.723411,10723.411 +8750,2025-03-08T02:04:46.191984-08:00,1015.076904296875,10.718394,10718.394 +8751,2025-03-08T02:04:56.915089-08:00,1015.0817260742188,10.723105,10723.105 +8752,2025-03-08T02:05:07.643361-08:00,1015.0587768554688,10.728272,10728.272 +8753,2025-03-08T02:05:18.368053-08:00,1015.0584106445312,10.724692,10724.692 +8754,2025-03-08T02:05:29.093129-08:00,1015.0618896484375,10.725076,10725.076 +8755,2025-03-08T02:05:39.817162-08:00,1015.078125,10.724033,10724.033 +8756,2025-03-08T02:05:50.541046-08:00,1015.1043090820312,10.723884,10723.884 +8757,2025-03-08T02:06:01.256046-08:00,1015.0731201171875,10.715,10715.0 +8758,2025-03-08T02:06:11.980984-08:00,1015.12060546875,10.724938,10724.938 +8759,2025-03-08T02:06:22.708156-08:00,1015.12548828125,10.727172,10727.172 +8760,2025-03-08T02:06:33.432993-08:00,1015.1388549804688,10.724837,10724.837 +8761,2025-03-08T02:06:44.153168-08:00,1015.1190795898438,10.720175,10720.175 +8762,2025-03-08T02:06:54.872985-08:00,1015.165283203125,10.719817,10719.817 +8763,2025-03-08T02:07:05.598080-08:00,1015.1272583007812,10.725095,10725.095 +8764,2025-03-08T02:07:16.320984-08:00,1015.1287231445312,10.722904,10722.904 +8765,2025-03-08T02:07:27.039174-08:00,1015.1336059570312,10.71819,10718.19 +8766,2025-03-08T02:07:37.756127-08:00,1015.1436157226562,10.716953,10716.953 +8767,2025-03-08T02:07:48.483371-08:00,1015.1682739257812,10.727244,10727.244 +8768,2025-03-08T02:07:59.202983-08:00,1015.1646728515625,10.719612,10719.612 +8769,2025-03-08T02:08:09.925162-08:00,1015.159912109375,10.722179,10722.179 +8770,2025-03-08T02:08:20.650984-08:00,1015.1548461914062,10.725822,10725.822 +8771,2025-03-08T02:08:31.371359-08:00,1015.1497802734375,10.720375,10720.375 +8772,2025-03-08T02:08:42.087062-08:00,1015.1465454101562,10.715703,10715.703 +8773,2025-03-08T02:08:52.813163-08:00,1015.1414184570312,10.726101,10726.101 +8774,2025-03-08T02:09:03.533986-08:00,1015.143310546875,10.720823,10720.823 +8775,2025-03-08T02:09:14.257165-08:00,1015.1366577148438,10.723179,10723.179 +8776,2025-03-08T02:09:24.984052-08:00,1015.1546630859375,10.726887,10726.887 +8777,2025-03-08T02:09:35.707305-08:00,1015.151123046875,10.723253,10723.253 +8778,2025-03-08T02:09:46.420984-08:00,1015.15771484375,10.713679,10713.679 +8779,2025-03-08T02:09:57.148167-08:00,1015.1775512695312,10.727183,10727.183 +8780,2025-03-08T02:10:07.863186-08:00,1015.166259765625,10.715019,10715.019 +8781,2025-03-08T02:10:18.589160-08:00,1015.1478881835938,10.725974,10725.974 +8782,2025-03-08T02:10:29.302981-08:00,1015.154541015625,10.713821,10713.821 +8783,2025-03-08T02:10:40.032181-08:00,1015.1626586914062,10.7292,10729.2 +8784,2025-03-08T02:10:50.746156-08:00,1015.1626586914062,10.713975,10713.975 +8785,2025-03-08T02:11:01.468766-08:00,1015.1773681640625,10.72261,10722.61 +8786,2025-03-08T02:11:12.192982-08:00,1015.1838989257812,10.724216,10724.216 +8787,2025-03-08T02:11:22.910004-08:00,1015.200439453125,10.717022,10717.022 +8788,2025-03-08T02:11:33.630074-08:00,1015.1873168945312,10.72007,10720.07 +8789,2025-03-08T02:11:44.357272-08:00,1015.17919921875,10.727198,10727.198 +8790,2025-03-08T02:11:55.075981-08:00,1015.16748046875,10.718709,10718.709 +8791,2025-03-08T02:12:05.807109-08:00,1015.1593627929688,10.731128,10731.128 +8792,2025-03-08T02:12:16.526194-08:00,1015.1476440429688,10.719085,10719.085 +8793,2025-03-08T02:12:27.250157-08:00,1015.162353515625,10.723963,10723.963 +8794,2025-03-08T02:12:37.961983-08:00,1015.162353515625,10.711826,10711.826 +8795,2025-03-08T02:12:48.693085-08:00,1015.14111328125,10.731102,10731.102 +8796,2025-03-08T02:12:59.409331-08:00,1015.160888671875,10.716246,10716.246 +8797,2025-03-08T02:13:10.139274-08:00,1015.1344604492188,10.729943,10729.943 +8798,2025-03-08T02:13:20.856505-08:00,1015.162353515625,10.717231,10717.231 +8799,2025-03-08T02:13:31.572006-08:00,1015.1542358398438,10.715501,10715.501 +8800,2025-03-08T02:13:42.300196-08:00,1015.15576171875,10.72819,10728.19 +8801,2025-03-08T02:13:53.029297-08:00,1015.162353515625,10.729101,10729.101 +8802,2025-03-08T02:14:03.744983-08:00,1015.1461791992188,10.715686,10715.686 +8803,2025-03-08T02:14:14.469157-08:00,1015.1395263671875,10.724174,10724.174 +8804,2025-03-08T02:14:25.200976-08:00,1015.12451171875,10.731819,10731.819 +8805,2025-03-08T02:14:35.920191-08:00,1015.1443481445312,10.719215,10719.215 +8806,2025-03-08T02:14:46.643130-08:00,1015.17919921875,10.722939,10722.939 +8807,2025-03-08T02:14:57.357550-08:00,1015.117919921875,10.71442,10714.42 +8808,2025-03-08T02:15:08.086981-08:00,1015.1395263671875,10.729431,10729.431 +8809,2025-03-08T02:15:18.806168-08:00,1015.09814453125,10.719187,10719.187 +8810,2025-03-08T02:15:29.530013-08:00,1015.1112670898438,10.723845,10723.845 +8811,2025-03-08T02:15:40.254200-08:00,1015.1329956054688,10.724187,10724.187 +8812,2025-03-08T02:15:50.973979-08:00,1015.129638671875,10.719779,10719.779 +8813,2025-03-08T02:16:01.699247-08:00,1015.1112670898438,10.725268,10725.268 +8814,2025-03-08T02:16:12.415041-08:00,1015.1046752929688,10.715794,10715.794 +8815,2025-03-08T02:16:23.146022-08:00,1015.12451171875,10.730981,10730.981 +8816,2025-03-08T02:16:33.869004-08:00,1015.12451171875,10.722982,10722.982 +8817,2025-03-08T02:16:44.586163-08:00,1015.1397705078125,10.717159,10717.159 +8818,2025-03-08T02:16:55.313082-08:00,1015.1232299804688,10.726919,10726.919 +8819,2025-03-08T02:17:06.036976-08:00,1015.1102294921875,10.723894,10723.894 +8820,2025-03-08T02:17:16.754009-08:00,1015.1233520507812,10.717033,10717.033 +8821,2025-03-08T02:17:27.483228-08:00,1015.153564453125,10.729219,10729.219 +8822,2025-03-08T02:17:38.203653-08:00,1015.1534423828125,10.720425,10720.425 +8823,2025-03-08T02:17:48.927009-08:00,1015.170166015625,10.723356,10723.356 +8824,2025-03-08T02:17:59.650189-08:00,1015.1387329101562,10.72318,10723.18 +8825,2025-03-08T02:18:10.372268-08:00,1015.1024780273438,10.722079,10722.079 +8826,2025-03-08T02:18:21.092170-08:00,1015.140869140625,10.719902,10719.902 +8827,2025-03-08T02:18:31.815092-08:00,1015.1392211914062,10.722922,10722.922 +8828,2025-03-08T02:18:42.538291-08:00,1015.1361083984375,10.723199,10723.199 +8829,2025-03-08T02:18:53.263547-08:00,1015.1560668945312,10.725256,10725.256 +8830,2025-03-08T02:19:03.989992-08:00,1015.135009765625,10.726445,10726.445 +8831,2025-03-08T02:19:14.707981-08:00,1015.1795043945312,10.717989,10717.989 +8832,2025-03-08T02:19:25.433186-08:00,1015.1168823242188,10.725205,10725.205 +8833,2025-03-08T02:19:36.157154-08:00,1015.1403198242188,10.723968,10723.968 +8834,2025-03-08T02:19:46.880359-08:00,1015.14697265625,10.723205,10723.205 +8835,2025-03-08T02:19:57.604980-08:00,1015.1553344726562,10.724621,10724.621 +8836,2025-03-08T02:20:08.329011-08:00,1015.1406860351562,10.724031,10724.031 +8837,2025-03-08T02:20:19.049672-08:00,1015.1670532226562,10.720661,10720.661 +8838,2025-03-08T02:20:29.776388-08:00,1015.168701171875,10.726716,10726.716 +8839,2025-03-08T02:20:40.510373-08:00,1015.1343994140625,10.733985,10733.985 +8840,2025-03-08T02:20:51.233984-08:00,1015.1624755859375,10.723611,10723.611 +8841,2025-03-08T02:21:01.954117-08:00,1015.1493530273438,10.720133,10720.133 +8842,2025-03-08T02:21:12.678981-08:00,1015.1559448242188,10.724864,10724.864 +8843,2025-03-08T02:21:23.400212-08:00,1015.1575927734375,10.721231,10721.231 +8844,2025-03-08T02:21:34.122215-08:00,1015.1526489257812,10.722003,10722.003 +8845,2025-03-08T02:21:44.849158-08:00,1015.1543579101562,10.726943,10726.943 +8846,2025-03-08T02:21:55.571267-08:00,1015.1510009765625,10.722109,10722.109 +8847,2025-03-08T02:22:06.300191-08:00,1015.1643676757812,10.728924,10728.924 +8848,2025-03-08T02:22:17.026181-08:00,1015.162841796875,10.72599,10725.99 +8849,2025-03-08T02:22:27.745983-08:00,1015.1858520507812,10.719802,10719.802 +8850,2025-03-08T02:22:38.475354-08:00,1015.1875,10.729371,10729.371 +8851,2025-03-08T02:22:49.188986-08:00,1015.1643676757812,10.713632,10713.632 +8852,2025-03-08T02:22:59.915179-08:00,1015.17919921875,10.726193,10726.193 +8853,2025-03-08T02:23:10.640190-08:00,1015.1925048828125,10.725011,10725.011 +8854,2025-03-08T02:23:21.361163-08:00,1015.180908203125,10.720973,10720.973 +8855,2025-03-08T02:23:32.087984-08:00,1015.2042846679688,10.726821,10726.821 +8856,2025-03-08T02:23:42.815463-08:00,1015.1613159179688,10.727479,10727.479 +8857,2025-03-08T02:23:53.538981-08:00,1015.1928100585938,10.723518,10723.518 +8858,2025-03-08T02:24:04.267983-08:00,1015.1945190429688,10.729002,10729.002 +8859,2025-03-08T02:24:14.986035-08:00,1015.2109375,10.718052,10718.052 +8860,2025-03-08T02:24:25.710991-08:00,1015.181396484375,10.724956,10724.956 +8861,2025-03-08T02:24:36.438170-08:00,1015.1861572265625,10.727179,10727.179 +8862,2025-03-08T02:24:47.164984-08:00,1015.2125854492188,10.726814,10726.814 +8863,2025-03-08T02:24:57.884079-08:00,1015.216064453125,10.719095,10719.095 +8864,2025-03-08T02:25:08.610182-08:00,1015.2259521484375,10.726103,10726.103 +8865,2025-03-08T02:25:19.343249-08:00,1015.2162475585938,10.733067,10733.067 +8866,2025-03-08T02:25:30.065647-08:00,1015.236083984375,10.722398,10722.398 +8867,2025-03-08T02:25:40.785981-08:00,1015.2391967773438,10.720334,10720.334 +8868,2025-03-08T02:25:51.505009-08:00,1015.1603393554688,10.719028,10719.028 +8869,2025-03-08T02:26:02.230173-08:00,1015.197998046875,10.725164,10725.164 +8870,2025-03-08T02:26:12.957187-08:00,1015.211181640625,10.727014,10727.014 +8871,2025-03-08T02:26:23.678984-08:00,1015.1882934570312,10.721797,10721.797 +8872,2025-03-08T02:26:34.404192-08:00,1015.19970703125,10.725208,10725.208 +8873,2025-03-08T02:26:45.132979-08:00,1015.2162475585938,10.728787,10728.787 +8874,2025-03-08T02:26:55.849266-08:00,1015.1832885742188,10.716287,10716.287 +8875,2025-03-08T02:27:06.572982-08:00,1015.201416015625,10.723716,10723.716 +8876,2025-03-08T02:27:17.298983-08:00,1015.2078247070312,10.726001,10726.001 +8877,2025-03-08T02:27:28.025101-08:00,1015.2079467773438,10.726118,10726.118 +8878,2025-03-08T02:27:38.749984-08:00,1015.2078247070312,10.724883,10724.883 +8879,2025-03-08T02:27:49.478160-08:00,1015.209228515625,10.728176,10728.176 +8880,2025-03-08T02:28:00.195977-08:00,1015.2240600585938,10.717817,10717.817 +8881,2025-03-08T02:28:10.925176-08:00,1015.1990356445312,10.729199,10729.199 +8882,2025-03-08T02:28:21.648015-08:00,1015.2139282226562,10.722839,10722.839 +8883,2025-03-08T02:28:32.382165-08:00,1015.1925048828125,10.73415,10734.15 +8884,2025-03-08T02:28:43.097980-08:00,1015.2201538085938,10.715815,10715.815 +8885,2025-03-08T02:28:53.824980-08:00,1015.19873046875,10.727,10727.0 +8886,2025-03-08T02:29:04.554044-08:00,1015.1889038085938,10.729064,10729.064 +8887,2025-03-08T02:29:15.285134-08:00,1015.2103271484375,10.73109,10731.09 +8888,2025-03-08T02:29:26.009244-08:00,1015.2039184570312,10.72411,10724.11 +8889,2025-03-08T02:29:36.739266-08:00,1015.2069702148438,10.730022,10730.022 +8890,2025-03-08T02:29:47.460168-08:00,1015.1956176757812,10.720902,10720.902 +8891,2025-03-08T02:29:58.192165-08:00,1015.2201538085938,10.731997,10731.997 +8892,2025-03-08T02:30:08.907021-08:00,1015.2467041015625,10.714856,10714.856 +8893,2025-03-08T02:30:19.638153-08:00,1015.2037353515625,10.731132,10731.132 +8894,2025-03-08T02:30:30.359980-08:00,1015.2022094726562,10.721827,10721.827 +8895,2025-03-08T02:30:41.085150-08:00,1015.213623046875,10.72517,10725.17 +8896,2025-03-08T02:30:51.817217-08:00,1015.2285766601562,10.732067,10732.067 +8897,2025-03-08T02:31:02.536168-08:00,1015.2039184570312,10.718951,10718.951 +8898,2025-03-08T02:31:13.255980-08:00,1015.2449951171875,10.719812,10719.812 +8899,2025-03-08T02:31:23.977981-08:00,1015.2203369140625,10.722001,10722.001 +8900,2025-03-08T02:31:34.703224-08:00,1015.231689453125,10.725243,10725.243 +8901,2025-03-08T02:31:45.426264-08:00,1015.2401733398438,10.72304,10723.04 +8902,2025-03-08T02:31:56.147123-08:00,1015.2433471679688,10.720859,10720.859 +8903,2025-03-08T02:32:06.870984-08:00,1015.1937255859375,10.723861,10723.861 +8904,2025-03-08T02:32:17.591898-08:00,1015.25,10.720914,10720.914 +8905,2025-03-08T02:32:28.308188-08:00,1015.241455078125,10.71629,10716.29 +8906,2025-03-08T02:32:39.028981-08:00,1015.2349243164062,10.720793,10720.793 +8907,2025-03-08T02:32:49.754984-08:00,1015.2333374023438,10.726003,10726.003 +8908,2025-03-08T02:33:00.473108-08:00,1015.2318725585938,10.718124,10718.124 +8909,2025-03-08T02:33:11.192593-08:00,1015.2234497070312,10.719485,10719.485 +8910,2025-03-08T02:33:21.914976-08:00,1015.2186889648438,10.722383,10722.383 +8911,2025-03-08T02:33:32.641396-08:00,1015.2318725585938,10.72642,10726.42 +8912,2025-03-08T02:33:43.367222-08:00,1015.25830078125,10.725826,10725.826 +8913,2025-03-08T02:33:54.096176-08:00,1015.2449951171875,10.728954,10728.954 +8914,2025-03-08T02:34:04.818819-08:00,1015.2516479492188,10.722643,10722.643 +8915,2025-03-08T02:34:15.534984-08:00,1015.2861938476562,10.716165,10716.165 +8916,2025-03-08T02:34:26.257007-08:00,1015.2664184570312,10.722023,10722.023 +8917,2025-03-08T02:34:36.982191-08:00,1015.256591796875,10.725184,10725.184 +8918,2025-03-08T02:34:47.704476-08:00,1015.256591796875,10.722285,10722.285 +8919,2025-03-08T02:34:58.427981-08:00,1015.2796630859375,10.723505,10723.505 +8920,2025-03-08T02:35:09.152182-08:00,1015.25146484375,10.724201,10724.201 +8921,2025-03-08T02:35:19.877422-08:00,1015.2401733398438,10.72524,10725.24 +8922,2025-03-08T02:35:30.599399-08:00,1015.2567138671875,10.721977,10721.977 +8923,2025-03-08T02:35:41.324981-08:00,1015.2648315429688,10.725582,10725.582 +8924,2025-03-08T02:35:52.039185-08:00,1015.24658203125,10.714204,10714.204 +8925,2025-03-08T02:36:02.769282-08:00,1015.2484130859375,10.730097,10730.097 +8926,2025-03-08T02:36:13.495225-08:00,1015.2432861328125,10.725943,10725.943 +8927,2025-03-08T02:36:24.212981-08:00,1015.2432861328125,10.717756,10717.756 +8928,2025-03-08T02:36:34.936984-08:00,1015.2249755859375,10.724003,10724.003 +8929,2025-03-08T02:36:45.667007-08:00,1015.248291015625,10.730023,10730.023 +8930,2025-03-08T02:36:56.387165-08:00,1015.2810668945312,10.720158,10720.158 +8931,2025-03-08T02:37:07.102011-08:00,1015.24658203125,10.714846,10714.846 +8932,2025-03-08T02:37:17.828199-08:00,1015.2793579101562,10.726188,10726.188 +8933,2025-03-08T02:37:28.546980-08:00,1015.2859497070312,10.718781,10718.781 +8934,2025-03-08T02:37:39.271207-08:00,1015.2826538085938,10.724227,10724.227 +8935,2025-03-08T02:37:49.999685-08:00,1015.2776489257812,10.728478,10728.478 +8936,2025-03-08T02:38:00.720197-08:00,1015.26123046875,10.720512,10720.512 +8937,2025-03-08T02:38:11.444802-08:00,1015.24951171875,10.724605,10724.605 +8938,2025-03-08T02:38:22.171059-08:00,1015.2742309570312,10.726257,10726.257 +8939,2025-03-08T02:38:32.886996-08:00,1015.2493896484375,10.715937,10715.937 +8940,2025-03-08T02:38:43.607393-08:00,1015.264404296875,10.720397,10720.397 +8941,2025-03-08T02:38:54.337163-08:00,1015.2542114257812,10.72977,10729.77 +8942,2025-03-08T02:39:05.057981-08:00,1015.2296752929688,10.720818,10720.818 +8943,2025-03-08T02:39:15.780654-08:00,1015.2327270507812,10.722673,10722.673 +8944,2025-03-08T02:39:26.501980-08:00,1015.2507934570312,10.721326,10721.326 +8945,2025-03-08T02:39:37.223209-08:00,1015.1995239257812,10.721229,10721.229 +8946,2025-03-08T02:39:47.948983-08:00,1015.2095336914062,10.725774,10725.774 +8947,2025-03-08T02:39:58.674185-08:00,1015.212890625,10.725202,10725.202 +8948,2025-03-08T02:40:09.399014-08:00,1015.1961059570312,10.724829,10724.829 +8949,2025-03-08T02:40:20.115146-08:00,1015.197998046875,10.716132,10716.132 +8950,2025-03-08T02:40:30.841621-08:00,1015.2223510742188,10.726475,10726.475 +8951,2025-03-08T02:40:41.567160-08:00,1015.1893920898438,10.725539,10725.539 +8952,2025-03-08T02:40:52.291009-08:00,1015.2257080078125,10.723849,10723.849 +8953,2025-03-08T02:41:03.005484-08:00,1015.209228515625,10.714475,10714.475 +8954,2025-03-08T02:41:13.737010-08:00,1015.2042236328125,10.731526,10731.526 +8955,2025-03-08T02:41:24.460161-08:00,1015.1943969726562,10.723151,10723.151 +8956,2025-03-08T02:41:35.175983-08:00,1015.2156372070312,10.715822,10715.822 +8957,2025-03-08T02:41:45.908152-08:00,1015.2190551757812,10.732169,10732.169 +8958,2025-03-08T02:41:56.627184-08:00,1015.2220458984375,10.719032,10719.032 +8959,2025-03-08T02:42:07.355981-08:00,1015.2385864257812,10.728797,10728.797 +8960,2025-03-08T02:42:18.083446-08:00,1015.2401733398438,10.727465,10727.465 +8961,2025-03-08T02:42:28.805978-08:00,1015.2185668945312,10.722532,10722.532 +8962,2025-03-08T02:42:39.530979-08:00,1015.1973266601562,10.725001,10725.001 +8963,2025-03-08T02:42:50.252193-08:00,1015.2022094726562,10.721214,10721.214 +8964,2025-03-08T02:43:00.982085-08:00,1015.1937255859375,10.729892,10729.892 +8965,2025-03-08T02:43:11.707185-08:00,1015.2136840820312,10.7251,10725.1 +8966,2025-03-08T02:43:22.430183-08:00,1015.2086181640625,10.722998,10722.998 +8967,2025-03-08T02:43:33.154174-08:00,1015.1755981445312,10.723991,10723.991 +8968,2025-03-08T02:43:43.872985-08:00,1015.2003173828125,10.718811,10718.811 +8969,2025-03-08T02:43:54.596830-08:00,1015.1788940429688,10.723845,10723.845 +8970,2025-03-08T02:44:05.323981-08:00,1015.1967163085938,10.727151,10727.151 +8971,2025-03-08T02:44:16.045145-08:00,1015.190185546875,10.721164,10721.164 +8972,2025-03-08T02:44:26.762984-08:00,1015.2015380859375,10.717839,10717.839 +8973,2025-03-08T02:44:37.494472-08:00,1015.1902465820312,10.731488,10731.488 +8974,2025-03-08T02:44:48.212981-08:00,1015.2164306640625,10.718509,10718.509 +8975,2025-03-08T02:44:58.941983-08:00,1015.2113037109375,10.729002,10729.002 +8976,2025-03-08T02:45:09.661653-08:00,1015.1915893554688,10.71967,10719.67 +8977,2025-03-08T02:45:20.387197-08:00,1015.18017578125,10.725544,10725.544 +8978,2025-03-08T02:45:31.111132-08:00,1015.2246704101562,10.723935,10723.935 +8979,2025-03-08T02:45:41.831984-08:00,1015.2195434570312,10.720852,10720.852 +8980,2025-03-08T02:45:52.558352-08:00,1015.2012329101562,10.726368,10726.368 +8981,2025-03-08T02:46:03.280330-08:00,1015.21630859375,10.721978,10721.978 +8982,2025-03-08T02:46:14.002049-08:00,1015.2064819335938,10.721719,10721.719 +8983,2025-03-08T02:46:24.735981-08:00,1015.2033081054688,10.733932,10733.932 +8984,2025-03-08T02:46:35.452158-08:00,1015.1966552734375,10.716177,10716.177 +8985,2025-03-08T02:46:46.184013-08:00,1015.2128295898438,10.731855,10731.855 +8986,2025-03-08T02:46:56.899289-08:00,1015.2212524414062,10.715276,10715.276 +8987,2025-03-08T02:47:04.378701-08:00,1015.2162475585938,7.479412,7479.412 +8988,2025-03-08T02:47:07.626981-08:00,1015.2228393554688,3.24828,3248.28 +8989,2025-03-08T02:47:18.355395-08:00,1015.2261962890625,10.728414,10728.414 +8990,2025-03-08T02:47:29.067214-08:00,1015.2343139648438,10.711819,10711.819 +8991,2025-03-08T02:47:39.791414-08:00,1015.229248046875,10.7242,10724.2 +8992,2025-03-08T02:47:50.515056-08:00,1015.2042846679688,10.723642,10723.642 +8993,2025-03-08T02:48:01.244983-08:00,1015.2307739257812,10.729927,10729.927 +8994,2025-03-08T02:48:11.971871-08:00,1015.260498046875,10.726888,10726.888 +8995,2025-03-08T02:48:22.690982-08:00,1015.2506103515625,10.719111,10719.111 +8996,2025-03-08T02:48:33.410039-08:00,1015.2290649414062,10.719057,10719.057 +8997,2025-03-08T02:48:44.140136-08:00,1015.2636108398438,10.730097,10730.097 +8998,2025-03-08T02:48:54.869057-08:00,1015.253662109375,10.728921,10728.921 +8999,2025-03-08T02:49:05.588173-08:00,1015.2321166992188,10.719116,10719.116 +9000,2025-03-08T02:49:16.312046-08:00,1015.2406005859375,10.723873,10723.873 +9001,2025-03-08T02:49:27.037406-08:00,1015.2420043945312,10.72536,10725.36 +9002,2025-03-08T02:49:37.757981-08:00,1015.2354736328125,10.720575,10720.575 +9003,2025-03-08T02:49:48.487007-08:00,1015.232177734375,10.729026,10729.026 +9004,2025-03-08T02:49:59.200032-08:00,1015.232177734375,10.713025,10713.025 +9005,2025-03-08T02:50:09.922184-08:00,1015.2237548828125,10.722152,10722.152 +9006,2025-03-08T02:50:20.656072-08:00,1015.2433471679688,10.733888,10733.888 +9007,2025-03-08T02:50:31.377027-08:00,1015.2452392578125,10.720955,10720.955 +9008,2025-03-08T02:50:42.102442-08:00,1015.2401733398438,10.725415,10725.415 +9009,2025-03-08T02:50:52.824272-08:00,1015.2070922851562,10.72183,10721.83 +9010,2025-03-08T02:51:03.553981-08:00,1015.21044921875,10.729709,10729.709 +9011,2025-03-08T02:51:14.275195-08:00,1015.2251586914062,10.721214,10721.214 +9012,2025-03-08T02:51:25.007158-08:00,1015.1936645507812,10.731963,10731.963 +9013,2025-03-08T02:51:35.737980-08:00,1015.18701171875,10.730822,10730.822 +9014,2025-03-08T02:51:46.455165-08:00,1015.1954956054688,10.717185,10717.185 +9015,2025-03-08T02:51:57.185981-08:00,1015.182373046875,10.730816,10730.816 +9016,2025-03-08T02:52:07.904176-08:00,1015.1871948242188,10.718195,10718.195 +9017,2025-03-08T02:52:18.623986-08:00,1015.1871948242188,10.71981,10719.81 +9018,2025-03-08T02:52:29.387756-08:00,1015.178466796875,10.76377,10763.77 +9019,2025-03-08T02:52:40.112599-08:00,1015.18359375,10.724843,10724.843 +9020,2025-03-08T02:52:50.832730-08:00,1015.1637573242188,10.720131,10720.131 +9021,2025-03-08T02:53:01.550649-08:00,1015.178466796875,10.717919,10717.919 +9022,2025-03-08T02:53:12.284795-08:00,1015.1488037109375,10.734146,10734.146 +9023,2025-03-08T02:53:23.005666-08:00,1015.16357421875,10.720871,10720.871 +9024,2025-03-08T02:53:33.726573-08:00,1015.1455688476562,10.720907,10720.907 +9025,2025-03-08T02:53:44.451598-08:00,1015.1272583007812,10.725025,10725.025 +9026,2025-03-08T02:53:55.169746-08:00,1015.1618041992188,10.718148,10718.148 +9027,2025-03-08T02:54:05.898570-08:00,1015.1287231445312,10.728824,10728.824 +9028,2025-03-08T02:54:16.619785-08:00,1015.1486206054688,10.721215,10721.215 +9029,2025-03-08T02:54:27.348774-08:00,1015.1453247070312,10.728989,10728.989 +9030,2025-03-08T02:54:38.075637-08:00,1015.1468505859375,10.726863,10726.863 +9031,2025-03-08T02:54:48.792962-08:00,1015.1634521484375,10.717325,10717.325 +9032,2025-03-08T02:54:59.519112-08:00,1015.1799926757812,10.72615,10726.15 +9033,2025-03-08T02:55:10.250681-08:00,1015.1567993164062,10.731569,10731.569 +9034,2025-03-08T02:55:20.978070-08:00,1015.1318969726562,10.727389,10727.389 +9035,2025-03-08T02:55:31.698680-08:00,1015.16015625,10.72061,10720.61 +9036,2025-03-08T02:55:42.420755-08:00,1015.1748657226562,10.722075,10722.075 +9037,2025-03-08T02:55:53.150776-08:00,1015.155029296875,10.730021,10730.021 +9038,2025-03-08T02:56:03.878683-08:00,1015.16162109375,10.727907,10727.907 +9039,2025-03-08T02:56:14.601595-08:00,1015.1712646484375,10.722912,10722.912 +9040,2025-03-08T02:56:25.325792-08:00,1015.1581420898438,10.724197,10724.197 +9041,2025-03-08T02:56:36.054569-08:00,1015.146728515625,10.728777,10728.777 +9042,2025-03-08T02:56:46.772574-08:00,1015.148193359375,10.718005,10718.005 +9043,2025-03-08T02:56:57.508012-08:00,1015.1415405273438,10.735438,10735.438 +9044,2025-03-08T02:57:08.224572-08:00,1015.1629638671875,10.71656,10716.56 +9045,2025-03-08T02:57:18.950776-08:00,1015.1581420898438,10.726204,10726.204 +9046,2025-03-08T02:57:29.673575-08:00,1015.1515502929688,10.722799,10722.799 +9047,2025-03-08T02:57:40.403818-08:00,1015.1677856445312,10.730243,10730.243 +9048,2025-03-08T02:57:51.131715-08:00,1015.1677856445312,10.727897,10727.897 +9049,2025-03-08T02:58:01.855578-08:00,1015.17626953125,10.723863,10723.863 +9050,2025-03-08T02:58:12.581823-08:00,1015.1629638671875,10.726245,10726.245 +9051,2025-03-08T02:58:23.310572-08:00,1015.15283203125,10.728749,10728.749 +9052,2025-03-08T02:58:34.031749-08:00,1015.1744384765625,10.721177,10721.177 +9053,2025-03-08T02:58:44.757795-08:00,1015.1709594726562,10.726046,10726.046 +9054,2025-03-08T02:58:55.485747-08:00,1015.1807861328125,10.727952,10727.952 +9055,2025-03-08T02:59:06.203600-08:00,1015.1904907226562,10.717853,10717.853 +9056,2025-03-08T02:59:16.935001-08:00,1015.1871948242188,10.731401,10731.401 +9057,2025-03-08T02:59:27.663829-08:00,1015.201904296875,10.728828,10728.828 +9058,2025-03-08T02:59:38.382575-08:00,1015.193603515625,10.718746,10718.746 +9059,2025-03-08T02:59:49.110962-08:00,1015.1836547851562,10.728387,10728.387 +9060,2025-03-08T02:59:59.830571-08:00,1015.2347412109375,10.719609,10719.609 +9061,2025-03-08T03:00:10.559574-08:00,1015.2245483398438,10.729003,10729.003 +9062,2025-03-08T03:00:21.287888-08:00,1015.2000122070312,10.728314,10728.314 +9063,2025-03-08T03:00:32.005756-08:00,1015.1835327148438,10.717868,10717.868 +9064,2025-03-08T03:00:42.728743-08:00,1015.1702880859375,10.722987,10722.987 +9065,2025-03-08T03:00:53.452644-08:00,1015.216552734375,10.723901,10723.901 +9066,2025-03-08T03:01:04.185761-08:00,1015.165283203125,10.733117,10733.117 +9067,2025-03-08T03:01:14.904738-08:00,1015.20166015625,10.718977,10718.977 +9068,2025-03-08T03:01:25.639103-08:00,1015.1832885742188,10.734365,10734.365 +9069,2025-03-08T03:01:36.361570-08:00,1015.2245483398438,10.722467,10722.467 +9070,2025-03-08T03:01:47.081576-08:00,1015.1881103515625,10.720006,10720.006 +9071,2025-03-08T03:01:57.814910-08:00,1015.2079467773438,10.733334,10733.334 +9072,2025-03-08T03:02:08.537641-08:00,1015.1978149414062,10.722731,10722.731 +9073,2025-03-08T03:02:19.265756-08:00,1015.1632690429688,10.728115,10728.115 +9074,2025-03-08T03:02:29.990872-08:00,1015.1813354492188,10.725116,10725.116 +9075,2025-03-08T03:02:40.708772-08:00,1015.1813354492188,10.7179,10717.9 +9076,2025-03-08T03:02:51.432571-08:00,1015.1994018554688,10.723799,10723.799 +9077,2025-03-08T03:03:02.166898-08:00,1015.1861572265625,10.734327,10734.327 +9078,2025-03-08T03:03:12.890595-08:00,1015.1744384765625,10.723697,10723.697 +9079,2025-03-08T03:03:23.613573-08:00,1015.169677734375,10.722978,10722.978 +9080,2025-03-08T03:03:34.343739-08:00,1015.17626953125,10.730166,10730.166 +9081,2025-03-08T03:03:45.073576-08:00,1015.2042236328125,10.729837,10729.837 +9082,2025-03-08T03:03:55.798742-08:00,1015.1843872070312,10.725166,10725.166 +9083,2025-03-08T03:04:06.522573-08:00,1015.189208984375,10.723831,10723.831 +9084,2025-03-08T03:04:17.244572-08:00,1015.1612548828125,10.721999,10721.999 +9085,2025-03-08T03:04:27.969765-08:00,1015.187744140625,10.725193,10725.193 +9086,2025-03-08T03:04:38.696624-08:00,1015.1612548828125,10.726859,10726.859 +9087,2025-03-08T03:04:49.429772-08:00,1015.1612548828125,10.733148,10733.148 +9088,2025-03-08T03:05:00.149572-08:00,1015.1922607421875,10.7198,10719.8 +9089,2025-03-08T03:05:10.873914-08:00,1015.1958618164062,10.724342,10724.342 +9090,2025-03-08T03:05:21.603818-08:00,1015.1841430664062,10.729904,10729.904 +9091,2025-03-08T03:05:32.327566-08:00,1015.1693725585938,10.723748,10723.748 +9092,2025-03-08T03:05:43.053052-08:00,1015.1546630859375,10.725486,10725.486 +9093,2025-03-08T03:05:53.777947-08:00,1015.1973266601562,10.724895,10724.895 +9094,2025-03-08T03:06:04.498749-08:00,1015.1958618164062,10.720802,10720.802 +9095,2025-03-08T03:06:15.224573-08:00,1015.1679077148438,10.725824,10725.824 +9096,2025-03-08T03:06:25.951789-08:00,1015.1660766601562,10.727216,10727.216 +9097,2025-03-08T03:06:36.681578-08:00,1015.20751953125,10.729789,10729.789 +9098,2025-03-08T03:06:47.400045-08:00,1015.1943969726562,10.718467,10718.467 +9099,2025-03-08T03:06:58.121574-08:00,1015.171142578125,10.721529,10721.529 +9100,2025-03-08T03:07:08.845063-08:00,1015.171142578125,10.723489,10723.489 +9101,2025-03-08T03:07:19.568571-08:00,1015.1843872070312,10.723508,10723.508 +9102,2025-03-08T03:07:30.295573-08:00,1015.1961059570312,10.727002,10727.002 +9103,2025-03-08T03:07:41.026962-08:00,1015.1910400390625,10.731389,10731.389 +9104,2025-03-08T03:07:51.744631-08:00,1015.20263671875,10.717669,10717.669 +9105,2025-03-08T03:08:02.469758-08:00,1015.1895141601562,10.725127,10725.127 +9106,2025-03-08T03:08:13.195768-08:00,1015.220703125,10.72601,10726.01 +9107,2025-03-08T03:08:23.917584-08:00,1015.1846923828125,10.721816,10721.816 +9108,2025-03-08T03:08:34.635743-08:00,1015.20751953125,10.718159,10718.159 +9109,2025-03-08T03:08:45.368758-08:00,1015.2059326171875,10.733015,10733.015 +9110,2025-03-08T03:08:56.095794-08:00,1015.2045288085938,10.727036,10727.036 +9111,2025-03-08T03:09:06.816572-08:00,1015.20263671875,10.720778,10720.778 +9112,2025-03-08T03:09:17.534711-08:00,1015.196044921875,10.718139,10718.139 +9113,2025-03-08T03:09:28.261575-08:00,1015.207763671875,10.726864,10726.864 +9114,2025-03-08T03:09:38.985460-08:00,1015.2128295898438,10.723885,10723.885 +9115,2025-03-08T03:09:49.709575-08:00,1015.204345703125,10.724115,10724.115 +9116,2025-03-08T03:10:00.429747-08:00,1015.202880859375,10.720172,10720.172 +9117,2025-03-08T03:10:11.153961-08:00,1015.19482421875,10.724214,10724.214 +9118,2025-03-08T03:10:21.873117-08:00,1015.202880859375,10.719156,10719.156 +9119,2025-03-08T03:10:32.594676-08:00,1015.1932983398438,10.721559,10721.559 +9120,2025-03-08T03:10:43.324053-08:00,1015.2079467773438,10.729377,10729.377 +9121,2025-03-08T03:10:54.045642-08:00,1015.2227172851562,10.721589,10721.589 +9122,2025-03-08T03:11:04.761735-08:00,1015.2079467773438,10.716093,10716.093 +9123,2025-03-08T03:11:15.481267-08:00,1015.1980590820312,10.719532,10719.532 +9124,2025-03-08T03:11:26.202982-08:00,1015.2178955078125,10.721715,10721.715 +9125,2025-03-08T03:11:36.925829-08:00,1015.196533203125,10.722847,10722.847 +9126,2025-03-08T03:11:47.650753-08:00,1015.1950073242188,10.724924,10724.924 +9127,2025-03-08T03:11:58.361575-08:00,1015.2097778320312,10.710822,10710.822 +9128,2025-03-08T03:12:09.084081-08:00,1015.21484375,10.722506,10722.506 +9129,2025-03-08T03:12:19.809780-08:00,1015.1668090820312,10.725699,10725.699 +9130,2025-03-08T03:12:30.526735-08:00,1015.1931762695312,10.716955,10716.955 +9131,2025-03-08T03:12:41.246575-08:00,1015.178466796875,10.71984,10719.84 +9132,2025-03-08T03:12:51.965572-08:00,1015.2048950195312,10.718997,10718.997 +9133,2025-03-08T03:13:02.681781-08:00,1015.2048950195312,10.716209,10716.209 +9134,2025-03-08T03:13:13.400780-08:00,1015.19677734375,10.718999,10718.999 +9135,2025-03-08T03:13:24.129575-08:00,1015.2117309570312,10.728795,10728.795 +9136,2025-03-08T03:13:34.841640-08:00,1015.1835327148438,10.712065,10712.065 +9137,2025-03-08T03:13:45.567753-08:00,1015.1967163085938,10.726113,10726.113 +9138,2025-03-08T03:13:56.282607-08:00,1015.2051391601562,10.714854,10714.854 +9139,2025-03-08T03:14:07.014631-08:00,1015.1867065429688,10.732024,10732.024 +9140,2025-03-08T03:14:17.733570-08:00,1015.1716918945312,10.718939,10718.939 +9141,2025-03-08T03:14:28.457996-08:00,1015.18017578125,10.724426,10724.426 +9142,2025-03-08T03:14:39.174682-08:00,1015.16357421875,10.716686,10716.686 +9143,2025-03-08T03:14:49.894963-08:00,1015.1900024414062,10.720281,10720.281 +9144,2025-03-08T03:15:00.610668-08:00,1015.1768798828125,10.715705,10715.705 +9145,2025-03-08T03:15:11.340676-08:00,1015.1539916992188,10.730008,10730.008 +9146,2025-03-08T03:15:22.063573-08:00,1015.1720581054688,10.722897,10722.897 +9147,2025-03-08T03:15:32.789883-08:00,1015.1572875976562,10.72631,10726.31 +9148,2025-03-08T03:15:43.509635-08:00,1015.1836547851562,10.719752,10719.752 +9149,2025-03-08T03:15:54.234774-08:00,1015.1953735351562,10.725139,10725.139 +9150,2025-03-08T03:16:04.954810-08:00,1015.1509399414062,10.720036,10720.036 +9151,2025-03-08T03:16:15.673849-08:00,1015.1490478515625,10.719039,10719.039 +9152,2025-03-08T03:16:26.406598-08:00,1015.18212890625,10.732749,10732.749 +9153,2025-03-08T03:16:37.121775-08:00,1015.1542358398438,10.715177,10715.177 +9154,2025-03-08T03:16:47.843581-08:00,1015.1740112304688,10.721806,10721.806 +9155,2025-03-08T03:16:58.566578-08:00,1015.1426391601562,10.722997,10722.997 +9156,2025-03-08T03:17:09.290800-08:00,1015.182373046875,10.724222,10724.222 +9157,2025-03-08T03:17:20.008848-08:00,1015.1507568359375,10.718048,10718.048 +9158,2025-03-08T03:17:30.723570-08:00,1015.1478271484375,10.714722,10714.722 +9159,2025-03-08T03:17:41.448935-08:00,1015.1592407226562,10.725365,10725.365 +9160,2025-03-08T03:17:52.167596-08:00,1015.1642456054688,10.718661,10718.661 +9161,2025-03-08T03:18:02.890758-08:00,1015.1495361328125,10.723162,10723.162 +9162,2025-03-08T03:18:13.603576-08:00,1015.1546630859375,10.712818,10712.818 +9163,2025-03-08T03:18:24.334739-08:00,1015.119873046875,10.731163,10731.163 +9164,2025-03-08T03:18:35.056573-08:00,1015.1248168945312,10.721834,10721.834 +9165,2025-03-08T03:18:45.783941-08:00,1015.1101684570312,10.727368,10727.368 +9166,2025-03-08T03:18:56.508571-08:00,1015.134765625,10.72463,10724.63 +9167,2025-03-08T03:19:07.222769-08:00,1015.1281127929688,10.714198,10714.198 +9168,2025-03-08T03:19:17.955984-08:00,1015.0987548828125,10.733215,10733.215 +9169,2025-03-08T03:19:28.675753-08:00,1015.1118774414062,10.719769,10719.769 +9170,2025-03-08T03:19:39.392570-08:00,1015.11669921875,10.716817,10716.817 +9171,2025-03-08T03:19:40.629108-08:00,1015.1298217773438,1.236538,1236.538 +9172,2025-03-08T03:19:50.119280-08:00,1015.1085815429688,9.490172,9490.172 +9173,2025-03-08T03:20:00.840573-08:00,1015.1085815429688,10.721293,10721.293 +9174,2025-03-08T03:20:11.554499-08:00,1015.1004638671875,10.713926,10713.926 +9175,2025-03-08T03:20:22.283570-08:00,1015.121826171875,10.729071,10729.071 +9176,2025-03-08T03:20:33.005648-08:00,1015.105224609375,10.722078,10722.078 +9177,2025-03-08T03:20:43.731595-08:00,1015.105224609375,10.725947,10725.947 +9178,2025-03-08T03:20:54.460589-08:00,1015.1334228515625,10.728994,10728.994 +9179,2025-03-08T03:21:05.186731-08:00,1015.1168823242188,10.726142,10726.142 +9180,2025-03-08T03:21:15.906663-08:00,1015.1088256835938,10.719932,10719.932 +9181,2025-03-08T03:21:26.631971-08:00,1015.10546875,10.725308,10725.308 +9182,2025-03-08T03:21:37.360641-08:00,1015.1138916015625,10.72867,10728.67 +9183,2025-03-08T03:21:48.083748-08:00,1015.0823364257812,10.723107,10723.107 +9184,2025-03-08T03:21:58.809769-08:00,1015.1286010742188,10.726021,10726.021 +9185,2025-03-08T03:22:09.525572-08:00,1015.1007080078125,10.715803,10715.803 +9186,2025-03-08T03:22:20.253835-08:00,1015.10546875,10.728263,10728.263 +9187,2025-03-08T03:22:30.981972-08:00,1015.1253051757812,10.728137,10728.137 +9188,2025-03-08T03:22:41.695776-08:00,1015.0973510742188,10.713804,10713.804 +9189,2025-03-08T03:22:52.423571-08:00,1015.123779296875,10.727795,10727.795 +9190,2025-03-08T03:23:03.149747-08:00,1015.1090698242188,10.726176,10726.176 +9191,2025-03-08T03:23:13.868607-08:00,1015.1222534179688,10.71886,10718.86 +9192,2025-03-08T03:23:24.591621-08:00,1015.123779296875,10.723014,10723.014 +9193,2025-03-08T03:23:35.311572-08:00,1015.123779296875,10.719951,10719.951 +9194,2025-03-08T03:23:46.035759-08:00,1015.107177734375,10.724187,10724.187 +9195,2025-03-08T03:23:56.762604-08:00,1015.105712890625,10.726845,10726.845 +9196,2025-03-08T03:24:07.478404-08:00,1015.105712890625,10.7158,10715.8 +9197,2025-03-08T03:24:18.201605-08:00,1015.1123657226562,10.723201,10723.201 +9198,2025-03-08T03:24:28.934574-08:00,1015.118896484375,10.732969,10732.969 +9199,2025-03-08T03:24:39.656823-08:00,1015.1173706054688,10.722249,10722.249 +9200,2025-03-08T03:24:50.386668-08:00,1015.09423828125,10.729845,10729.845 +9201,2025-03-08T03:25:01.111222-08:00,1015.0795288085938,10.724554,10724.554 +9202,2025-03-08T03:25:11.832573-08:00,1015.0974731445312,10.721351,10721.351 +9203,2025-03-08T03:25:22.558776-08:00,1015.0795288085938,10.726203,10726.203 +9204,2025-03-08T03:25:33.280634-08:00,1015.0909423828125,10.721858,10721.858 +9205,2025-03-08T03:25:44.011771-08:00,1015.08935546875,10.731137,10731.137 +9206,2025-03-08T03:25:54.744574-08:00,1015.0662231445312,10.732803,10732.803 +9207,2025-03-08T03:26:05.462680-08:00,1015.0926513671875,10.718106,10718.106 +9208,2025-03-08T03:26:16.195754-08:00,1015.07470703125,10.733074,10733.074 +9209,2025-03-08T03:26:26.923754-08:00,1015.079345703125,10.728,10728.0 +9210,2025-03-08T03:26:37.645243-08:00,1015.107666015625,10.721489,10721.489 +9211,2025-03-08T03:26:48.368573-08:00,1015.0713500976562,10.72333,10723.33 +9212,2025-03-08T03:26:59.098649-08:00,1015.0499877929688,10.730076,10730.076 +9213,2025-03-08T03:27:09.829047-08:00,1015.0845336914062,10.730398,10730.398 +9214,2025-03-08T03:27:20.551582-08:00,1015.0713500976562,10.722535,10722.535 +9215,2025-03-08T03:27:31.270263-08:00,1015.0962524414062,10.718681,10718.681 +9216,2025-03-08T03:27:41.997571-08:00,1015.0797119140625,10.727308,10727.308 +9217,2025-03-08T03:27:52.725571-08:00,1015.07666015625,10.728,10728.0 +9218,2025-03-08T03:28:03.455074-08:00,1015.0847778320312,10.729503,10729.503 +9219,2025-03-08T03:28:14.179757-08:00,1015.0615844726562,10.724683,10724.683 +9220,2025-03-08T03:28:24.901737-08:00,1015.0748291015625,10.72198,10721.98 +9221,2025-03-08T03:28:35.630931-08:00,1015.0667114257812,10.729194,10729.194 +9222,2025-03-08T03:28:46.356785-08:00,1015.0864868164062,10.725854,10725.854 +9223,2025-03-08T03:28:57.075573-08:00,1015.065185546875,10.718788,10718.788 +9224,2025-03-08T03:29:07.807761-08:00,1015.078369140625,10.732188,10732.188 +9225,2025-03-08T03:29:18.523770-08:00,1015.0879516601562,10.716009,10716.009 +9226,2025-03-08T03:29:29.254702-08:00,1015.0850219726562,10.730932,10730.932 +9227,2025-03-08T03:29:39.967573-08:00,1015.078369140625,10.712871,10712.871 +9228,2025-03-08T03:29:50.699880-08:00,1015.0897827148438,10.732307,10732.307 +9229,2025-03-08T03:30:01.419571-08:00,1015.0816650390625,10.719691,10719.691 +9230,2025-03-08T03:30:12.139647-08:00,1015.0765380859375,10.720076,10720.076 +9231,2025-03-08T03:30:22.870618-08:00,1015.1029663085938,10.730971,10730.971 +9232,2025-03-08T03:30:33.595571-08:00,1015.0816650390625,10.724953,10724.953 +9233,2025-03-08T03:30:44.315858-08:00,1015.0801391601562,10.720287,10720.287 +9234,2025-03-08T03:30:55.042585-08:00,1015.1046752929688,10.726727,10726.727 +9235,2025-03-08T03:31:05.763730-08:00,1015.0650634765625,10.721145,10721.145 +9236,2025-03-08T03:31:16.481575-08:00,1015.1032104492188,10.717845,10717.845 +9237,2025-03-08T03:31:27.214748-08:00,1015.1032104492188,10.733173,10733.173 +9238,2025-03-08T03:31:37.933949-08:00,1015.1082763671875,10.719201,10719.201 +9239,2025-03-08T03:31:48.658746-08:00,1015.1133422851562,10.724797,10724.797 +9240,2025-03-08T03:31:59.379573-08:00,1015.1265869140625,10.720827,10720.827 +9241,2025-03-08T03:32:10.105986-08:00,1015.1181030273438,10.726413,10726.413 +9242,2025-03-08T03:32:20.830632-08:00,1015.1151733398438,10.724646,10724.646 +9243,2025-03-08T03:32:31.555571-08:00,1015.144775390625,10.724939,10724.939 +9244,2025-03-08T03:32:42.278832-08:00,1015.1528930664062,10.723261,10723.261 +9245,2025-03-08T03:32:52.998871-08:00,1015.1348266601562,10.720039,10720.039 +9246,2025-03-08T03:33:03.722383-08:00,1015.138427734375,10.723512,10723.512 +9247,2025-03-08T03:33:14.441576-08:00,1015.135009765625,10.719193,10719.193 +9248,2025-03-08T03:33:25.171069-08:00,1015.1448364257812,10.729493,10729.493 +9249,2025-03-08T03:33:35.898122-08:00,1015.1286010742188,10.727053,10727.053 +9250,2025-03-08T03:33:46.614750-08:00,1015.1436157226562,10.716628,10716.628 +9251,2025-03-08T03:33:57.335574-08:00,1015.150390625,10.720824,10720.824 +9252,2025-03-08T03:34:08.066041-08:00,1015.165283203125,10.730467,10730.467 +9253,2025-03-08T03:34:18.781572-08:00,1015.147216796875,10.715531,10715.531 +9254,2025-03-08T03:34:29.504750-08:00,1015.168701171875,10.723178,10723.178 +9255,2025-03-08T03:34:40.220646-08:00,1015.145751953125,10.715896,10715.896 +9256,2025-03-08T03:34:50.949800-08:00,1015.142578125,10.729154,10729.154 +9257,2025-03-08T03:35:01.660637-08:00,1015.1475219726562,10.710837,10710.837 +9258,2025-03-08T03:35:12.389754-08:00,1015.15283203125,10.729117,10729.117 +9259,2025-03-08T03:35:23.111782-08:00,1015.1578369140625,10.722028,10722.028 +9260,2025-03-08T03:35:33.830754-08:00,1015.1595458984375,10.718972,10718.972 +9261,2025-03-08T03:35:44.552576-08:00,1015.164794921875,10.721822,10721.822 +9262,2025-03-08T03:35:55.269571-08:00,1015.1796875,10.716995,10716.995 +9263,2025-03-08T03:36:05.997783-08:00,1015.1780395507812,10.728212,10728.212 +9264,2025-03-08T03:36:16.708811-08:00,1015.1403198242188,10.711028,10711.028 +9265,2025-03-08T03:36:27.435575-08:00,1015.1652221679688,10.726764,10726.764 +9266,2025-03-08T03:36:38.152571-08:00,1015.1785888671875,10.716996,10716.996 +9267,2025-03-08T03:36:48.870572-08:00,1015.1868896484375,10.718001,10718.001 +9268,2025-03-08T03:36:59.596595-08:00,1015.201904296875,10.726023,10726.023 +9269,2025-03-08T03:37:10.314762-08:00,1015.2050170898438,10.718167,10718.167 +9270,2025-03-08T03:37:21.034576-08:00,1015.2101440429688,10.719814,10719.814 +9271,2025-03-08T03:37:31.755580-08:00,1015.1886596679688,10.721004,10721.004 +9272,2025-03-08T03:37:42.475025-08:00,1015.1921997070312,10.719445,10719.445 +9273,2025-03-08T03:37:53.193749-08:00,1015.1888427734375,10.718724,10718.724 +9274,2025-03-08T03:38:03.910567-08:00,1015.1873168945312,10.716818,10716.818 +9275,2025-03-08T03:38:14.638799-08:00,1015.169189453125,10.728232,10728.232 +9276,2025-03-08T03:38:25.356779-08:00,1015.1890869140625,10.71798,10717.98 +9277,2025-03-08T03:38:36.078761-08:00,1015.190673828125,10.721982,10721.982 +9278,2025-03-08T03:38:46.792571-08:00,1015.190673828125,10.71381,10713.81 +9279,2025-03-08T03:38:57.511597-08:00,1015.1624755859375,10.719026,10719.026 +9280,2025-03-08T03:39:08.230761-08:00,1015.1741333007812,10.719164,10719.164 +9281,2025-03-08T03:39:18.961922-08:00,1015.1807861328125,10.731161,10731.161 +9282,2025-03-08T03:39:29.681574-08:00,1015.1707763671875,10.719652,10719.652 +9283,2025-03-08T03:39:40.397574-08:00,1015.1788940429688,10.716,10716.0 +9284,2025-03-08T03:39:51.122984-08:00,1015.1854858398438,10.72541,10725.41 +9285,2025-03-08T03:40:01.844733-08:00,1015.1707763671875,10.721749,10721.749 +9286,2025-03-08T03:40:12.561574-08:00,1015.1688842773438,10.716841,10716.841 +9287,2025-03-08T03:40:23.284650-08:00,1015.1953125,10.723076,10723.076 +9288,2025-03-08T03:40:34.008963-08:00,1015.1839599609375,10.724313,10724.313 +9289,2025-03-08T03:40:44.730578-08:00,1015.1854858398438,10.721615,10721.615 +9290,2025-03-08T03:40:55.453574-08:00,1015.1707763671875,10.722996,10722.996 +9291,2025-03-08T03:41:06.179440-08:00,1015.1575927734375,10.725866,10725.866 +9292,2025-03-08T03:41:16.904906-08:00,1015.1854858398438,10.725466,10725.466 +9293,2025-03-08T03:41:27.631780-08:00,1015.192138671875,10.726874,10726.874 +9294,2025-03-08T03:41:38.345574-08:00,1015.1873168945312,10.713794,10713.794 +9295,2025-03-08T03:41:49.075948-08:00,1015.2072143554688,10.730374,10730.374 +9296,2025-03-08T03:41:59.791573-08:00,1015.1973266601562,10.715625,10715.625 +9297,2025-03-08T03:42:10.514757-08:00,1015.15771484375,10.723184,10723.184 +9298,2025-03-08T03:42:21.243574-08:00,1015.1559448242188,10.728817,10728.817 +9299,2025-03-08T03:42:31.968787-08:00,1015.1724853515625,10.725213,10725.213 +9300,2025-03-08T03:42:42.696163-08:00,1015.1658325195312,10.727376,10727.376 +9301,2025-03-08T03:42:53.410827-08:00,1015.17578125,10.714664,10714.664 +9302,2025-03-08T03:43:04.140574-08:00,1015.169189453125,10.729747,10729.747 +9303,2025-03-08T03:43:14.857787-08:00,1015.1788940429688,10.717213,10717.213 +9304,2025-03-08T03:43:25.579568-08:00,1015.1939086914062,10.721781,10721.781 +9305,2025-03-08T03:43:36.308580-08:00,1015.16748046875,10.729012,10729.012 +9306,2025-03-08T03:43:47.030734-08:00,1015.1903076171875,10.722154,10722.154 +9307,2025-03-08T03:43:57.749784-08:00,1015.2135009765625,10.71905,10719.05 +9308,2025-03-08T03:44:08.473599-08:00,1015.1988525390625,10.723815,10723.815 +9309,2025-03-08T03:44:19.191533-08:00,1015.1886596679688,10.717934,10717.934 +9310,2025-03-08T03:44:29.914619-08:00,1015.1986083984375,10.723086,10723.086 +9311,2025-03-08T03:44:40.641780-08:00,1015.208251953125,10.727161,10727.161 +9312,2025-03-08T03:44:51.365754-08:00,1015.195068359375,10.723974,10723.974 +9313,2025-03-08T03:45:02.092574-08:00,1015.17529296875,10.72682,10726.82 +9314,2025-03-08T03:45:12.810872-08:00,1015.2197875976562,10.718298,10718.298 +9315,2025-03-08T03:45:23.529802-08:00,1015.2429809570312,10.71893,10718.93 +9316,2025-03-08T03:45:34.254803-08:00,1015.211669921875,10.725001,10725.001 +9317,2025-03-08T03:45:44.981089-08:00,1015.1917114257812,10.726286,10726.286 +9318,2025-03-08T03:45:55.706795-08:00,1015.221435546875,10.725706,10725.706 +9319,2025-03-08T03:46:06.431598-08:00,1015.22802734375,10.724803,10724.803 +9320,2025-03-08T03:46:17.149656-08:00,1015.203125,10.718058,10718.058 +9321,2025-03-08T03:46:27.868869-08:00,1015.1588134765625,10.719213,10719.213 +9322,2025-03-08T03:46:38.596754-08:00,1015.201416015625,10.727885,10727.885 +9323,2025-03-08T03:46:49.317572-08:00,1015.2098388671875,10.720818,10720.818 +9324,2025-03-08T03:47:00.038574-08:00,1015.2129516601562,10.721002,10721.002 +9325,2025-03-08T03:47:10.767710-08:00,1015.2098388671875,10.729136,10729.136 +9326,2025-03-08T03:47:21.488314-08:00,1015.196533203125,10.720604,10720.604 +9327,2025-03-08T03:47:31.696841-08:00,1015.2047119140625,10.208527,10208.527 +9328,2025-03-08T03:47:32.211741-08:00,1015.19482421875,0.5149,514.9 +9329,2025-03-08T03:47:42.934107-08:00,1015.1963500976562,10.722366,10722.366 +9330,2025-03-08T03:47:53.655594-08:00,1015.214599609375,10.721487,10721.487 +9331,2025-03-08T03:48:04.382570-08:00,1015.1912231445312,10.726976,10726.976 +9332,2025-03-08T03:48:15.111754-08:00,1015.2093505859375,10.729184,10729.184 +9333,2025-03-08T03:48:25.830730-08:00,1015.2093505859375,10.718976,10718.976 +9334,2025-03-08T03:48:36.551766-08:00,1015.2045288085938,10.721036,10721.036 +9335,2025-03-08T03:48:47.270775-08:00,1015.2061157226562,10.719009,10719.009 +9336,2025-03-08T03:48:57.998804-08:00,1015.2091674804688,10.728029,10728.029 +9337,2025-03-08T03:49:08.717620-08:00,1015.1978149414062,10.718816,10718.816 +9338,2025-03-08T03:49:19.444939-08:00,1015.1992797851562,10.727319,10727.319 +9339,2025-03-08T03:49:30.157779-08:00,1015.2306518554688,10.71284,10712.84 +9340,2025-03-08T03:49:40.886749-08:00,1015.2371826171875,10.72897,10728.97 +9341,2025-03-08T03:49:51.599574-08:00,1015.2123413085938,10.712825,10712.825 +9342,2025-03-08T03:50:02.328769-08:00,1015.200927734375,10.729195,10729.195 +9343,2025-03-08T03:50:13.047382-08:00,1015.214111328125,10.718613,10718.613 +9344,2025-03-08T03:50:23.769761-08:00,1015.2106323242188,10.722379,10722.379 +9345,2025-03-08T03:50:34.482637-08:00,1015.205810546875,10.712876,10712.876 +9346,2025-03-08T03:50:45.204706-08:00,1015.2205200195312,10.722069,10722.069 +9347,2025-03-08T03:50:55.930612-08:00,1015.2154541015625,10.725906,10725.906 +9348,2025-03-08T03:51:06.655758-08:00,1015.2437744140625,10.725146,10725.146 +9349,2025-03-08T03:51:17.375573-08:00,1015.2254638671875,10.719815,10719.815 +9350,2025-03-08T03:51:28.096157-08:00,1015.2548217773438,10.720584,10720.584 +9351,2025-03-08T03:51:38.820676-08:00,1015.2435302734375,10.724519,10724.519 +9352,2025-03-08T03:51:49.540832-08:00,1015.2318725585938,10.720156,10720.156 +9353,2025-03-08T03:52:00.271998-08:00,1015.2267456054688,10.731166,10731.166 +9354,2025-03-08T03:52:10.995637-08:00,1015.2432861328125,10.723639,10723.639 +9355,2025-03-08T03:52:21.733000-08:00,1015.2647094726562,10.737363,10737.363 +9356,2025-03-08T03:52:32.452041-08:00,1015.2203369140625,10.719041,10719.041 +9357,2025-03-08T03:52:43.168065-08:00,1015.2349853515625,10.716024,10716.024 +9358,2025-03-08T03:52:53.897102-08:00,1015.2515869140625,10.729037,10729.037 +9359,2025-03-08T03:53:04.610949-08:00,1015.236328125,10.713847,10713.847 +9360,2025-03-08T03:53:15.339162-08:00,1015.2579956054688,10.728213,10728.213 +9361,2025-03-08T03:53:26.061153-08:00,1015.252685546875,10.721991,10721.991 +9362,2025-03-08T03:53:36.778125-08:00,1015.2560424804688,10.716972,10716.972 +9363,2025-03-08T03:53:47.505090-08:00,1015.2293701171875,10.726965,10726.965 +9364,2025-03-08T03:53:58.223118-08:00,1015.2393798828125,10.718028,10718.028 +9365,2025-03-08T03:54:08.938203-08:00,1015.2559204101562,10.715085,10715.085 +9366,2025-03-08T03:54:19.666131-08:00,1015.2379760742188,10.727928,10727.928 +9367,2025-03-08T03:54:30.385945-08:00,1015.23779296875,10.719814,10719.814 +9368,2025-03-08T03:54:41.119374-08:00,1015.2507934570312,10.733429,10733.429 +9369,2025-03-08T03:54:51.837939-08:00,1015.2261962890625,10.718565,10718.565 +9370,2025-03-08T03:55:02.561955-08:00,1015.2373657226562,10.724016,10724.016 +9371,2025-03-08T03:55:13.279943-08:00,1015.2274780273438,10.717988,10717.988 +9372,2025-03-08T03:55:24.010116-08:00,1015.2603149414062,10.730173,10730.173 +9373,2025-03-08T03:55:34.726115-08:00,1015.25048828125,10.715999,10715.999 +9374,2025-03-08T03:55:45.451943-08:00,1015.2453002929688,10.725828,10725.828 +9375,2025-03-08T03:55:56.180526-08:00,1015.2237548828125,10.728583,10728.583 +9376,2025-03-08T03:56:06.901041-08:00,1015.232177734375,10.720515,10720.515 +9377,2025-03-08T03:56:17.629804-08:00,1015.25,10.728763,10728.763 +9378,2025-03-08T03:56:28.341942-08:00,1015.2268676757812,10.712138,10712.138 +9379,2025-03-08T03:56:39.064943-08:00,1015.248291015625,10.723001,10723.001 +9380,2025-03-08T03:56:49.789050-08:00,1015.2581787109375,10.724107,10724.107 +9381,2025-03-08T03:57:00.513008-08:00,1015.2068481445312,10.723958,10723.958 +9382,2025-03-08T03:57:11.237067-08:00,1015.2483520507812,10.724059,10724.059 +9383,2025-03-08T03:57:21.958223-08:00,1015.2315673828125,10.721156,10721.156 +9384,2025-03-08T03:57:32.684942-08:00,1015.226806640625,10.726719,10726.719 +9385,2025-03-08T03:57:43.403114-08:00,1015.2562255859375,10.718172,10718.172 +9386,2025-03-08T03:57:54.123019-08:00,1015.259521484375,10.719905,10719.905 +9387,2025-03-08T03:58:04.849346-08:00,1015.23974609375,10.726327,10726.327 +9388,2025-03-08T03:58:15.571213-08:00,1015.2412719726562,10.721867,10721.867 +9389,2025-03-08T03:58:26.292140-08:00,1015.2478637695312,10.720927,10720.927 +9390,2025-03-08T03:58:37.013942-08:00,1015.2644653320312,10.721802,10721.802 +9391,2025-03-08T03:58:47.733887-08:00,1015.24951171875,10.719945,10719.945 +9392,2025-03-08T03:58:58.462941-08:00,1015.2542114257812,10.729054,10729.054 +9393,2025-03-08T03:59:09.184119-08:00,1015.24951171875,10.721178,10721.178 +9394,2025-03-08T03:59:19.907147-08:00,1015.2626342773438,10.723028,10723.028 +9395,2025-03-08T03:59:30.629156-08:00,1015.2789306640625,10.722009,10722.009 +9396,2025-03-08T03:59:41.355400-08:00,1015.3052978515625,10.726244,10726.244 +9397,2025-03-08T03:59:52.073941-08:00,1015.2642211914062,10.718541,10718.541 +9398,2025-03-08T04:00:02.794940-08:00,1015.287353515625,10.720999,10720.999 +9399,2025-03-08T04:00:13.512355-08:00,1015.287353515625,10.717415,10717.415 +9400,2025-03-08T04:00:24.234147-08:00,1015.2723388671875,10.721792,10721.792 +9401,2025-03-08T04:00:34.960134-08:00,1015.2525024414062,10.725987,10725.987 +9402,2025-03-08T04:00:45.680940-08:00,1015.3021240234375,10.720806,10720.806 +9403,2025-03-08T04:00:56.407958-08:00,1015.2658081054688,10.727018,10727.018 +9404,2025-03-08T04:01:07.135937-08:00,1015.3005981445312,10.727979,10727.979 +9405,2025-03-08T04:01:17.858158-08:00,1015.3005981445312,10.722221,10722.221 +9406,2025-03-08T04:01:28.581943-08:00,1015.2987670898438,10.723785,10723.785 +9407,2025-03-08T04:01:39.305937-08:00,1015.2840576171875,10.723994,10723.994 +9408,2025-03-08T04:01:50.029078-08:00,1015.2940063476562,10.723141,10723.141 +9409,2025-03-08T04:02:00.753945-08:00,1015.3071899414062,10.724867,10724.867 +9410,2025-03-08T04:02:11.486186-08:00,1015.3052978515625,10.732241,10732.241 +9411,2025-03-08T04:02:22.205106-08:00,1015.3119506835938,10.71892,10718.92 +9412,2025-03-08T04:02:32.928310-08:00,1015.2921752929688,10.723204,10723.204 +9413,2025-03-08T04:02:43.659087-08:00,1015.2774047851562,10.730777,10730.777 +9414,2025-03-08T04:02:54.383115-08:00,1015.270751953125,10.724028,10724.028 +9415,2025-03-08T04:03:05.107210-08:00,1015.3270263671875,10.724095,10724.095 +9416,2025-03-08T04:03:15.832944-08:00,1015.2987670898438,10.725734,10725.734 +9417,2025-03-08T04:03:26.551720-08:00,1015.3236694335938,10.718776,10718.776 +9418,2025-03-08T04:03:37.273203-08:00,1015.3023681640625,10.721483,10721.483 +9419,2025-03-08T04:03:47.997247-08:00,1015.3236694335938,10.724044,10724.044 +9420,2025-03-08T04:03:58.714973-08:00,1015.3368530273438,10.717726,10717.726 +9421,2025-03-08T04:04:09.433308-08:00,1015.3434448242188,10.718335,10718.335 +9422,2025-03-08T04:04:20.157071-08:00,1015.3582153320312,10.723763,10723.763 +9423,2025-03-08T04:04:30.870940-08:00,1015.3384399414062,10.713869,10713.869 +9424,2025-03-08T04:04:41.593946-08:00,1015.3434448242188,10.723006,10723.006 +9425,2025-03-08T04:04:52.316174-08:00,1015.3434448242188,10.722228,10722.228 +9426,2025-03-08T04:05:03.031130-08:00,1015.3203125,10.714956,10714.956 +9427,2025-03-08T04:05:13.751943-08:00,1015.3203125,10.720813,10720.813 +9428,2025-03-08T04:05:24.479147-08:00,1015.3253784179688,10.727204,10727.204 +9429,2025-03-08T04:05:35.196125-08:00,1015.3154907226562,10.716978,10716.978 +9430,2025-03-08T04:05:45.913171-08:00,1015.3154907226562,10.717046,10717.046 +9431,2025-03-08T04:05:56.631953-08:00,1015.3139038085938,10.718782,10718.782 +9432,2025-03-08T04:06:07.360330-08:00,1015.3418579101562,10.728377,10728.377 +9433,2025-03-08T04:06:18.075942-08:00,1015.32373046875,10.715612,10715.612 +9434,2025-03-08T04:06:28.798949-08:00,1015.3322143554688,10.723007,10723.007 +9435,2025-03-08T04:06:39.518129-08:00,1015.3106079101562,10.71918,10719.18 +9436,2025-03-08T04:06:50.233182-08:00,1015.322265625,10.715053,10715.053 +9437,2025-03-08T04:07:00.962133-08:00,1015.3303833007812,10.728951,10728.951 +9438,2025-03-08T04:07:11.676053-08:00,1015.322265625,10.71392,10713.92 +9439,2025-03-08T04:07:22.399943-08:00,1015.3141479492188,10.72389,10723.89 +9440,2025-03-08T04:07:33.121372-08:00,1015.3141479492188,10.721429,10721.429 +9441,2025-03-08T04:07:43.845089-08:00,1015.309326171875,10.723717,10723.717 +9442,2025-03-08T04:07:54.569941-08:00,1015.2976684570312,10.724852,10724.852 +9443,2025-03-08T04:08:05.295150-08:00,1015.335693359375,10.725209,10725.209 +9444,2025-03-08T04:08:16.017432-08:00,1015.3143920898438,10.722282,10722.282 +9445,2025-03-08T04:08:26.734972-08:00,1015.3078002929688,10.71754,10717.54 +9446,2025-03-08T04:08:37.456942-08:00,1015.3258056640625,10.72197,10721.97 +9447,2025-03-08T04:08:48.175159-08:00,1015.3191528320312,10.718217,10718.217 +9448,2025-03-08T04:08:58.891940-08:00,1015.302978515625,10.716781,10716.781 +9449,2025-03-08T04:09:09.620033-08:00,1015.302978515625,10.728093,10728.093 +9450,2025-03-08T04:09:20.336943-08:00,1015.3076782226562,10.71691,10716.91 +9451,2025-03-08T04:09:31.055942-08:00,1015.3161010742188,10.718999,10718.999 +9452,2025-03-08T04:09:41.771149-08:00,1015.29296875,10.715207,10715.207 +9453,2025-03-08T04:09:52.490125-08:00,1015.299560546875,10.718976,10718.976 +9454,2025-03-08T04:10:03.219942-08:00,1015.2896118164062,10.729817,10729.817 +9455,2025-03-08T04:10:13.938108-08:00,1015.2980346679688,10.718166,10718.166 +9456,2025-03-08T04:10:24.652149-08:00,1015.324462890625,10.714041,10714.041 +9457,2025-03-08T04:10:35.377142-08:00,1015.294677734375,10.724993,10724.993 +9458,2025-03-08T04:10:46.090950-08:00,1015.281494140625,10.713808,10713.808 +9459,2025-03-08T04:10:56.811060-08:00,1015.307861328125,10.72011,10720.11 +9460,2025-03-08T04:11:07.537967-08:00,1015.2850952148438,10.726907,10726.907 +9461,2025-03-08T04:11:18.246937-08:00,1015.2997436523438,10.70897,10708.97 +9462,2025-03-08T04:11:28.968994-08:00,1015.2898559570312,10.722057,10722.057 +9463,2025-03-08T04:11:39.698963-08:00,1015.2765502929688,10.729969,10729.969 +9464,2025-03-08T04:11:50.417321-08:00,1015.2765502929688,10.718358,10718.358 +9465,2025-03-08T04:12:01.135941-08:00,1015.3015747070312,10.71862,10718.62 +9466,2025-03-08T04:12:11.860942-08:00,1015.2801513671875,10.725001,10725.001 +9467,2025-03-08T04:12:22.586962-08:00,1015.298095703125,10.72602,10726.02 +9468,2025-03-08T04:12:33.307145-08:00,1015.3245239257812,10.720183,10720.183 +9469,2025-03-08T04:12:44.026006-08:00,1015.309814453125,10.718861,10718.861 +9470,2025-03-08T04:12:54.750692-08:00,1015.2818603515625,10.724686,10724.686 +9471,2025-03-08T04:13:05.463944-08:00,1015.2932739257812,10.713252,10713.252 +9472,2025-03-08T04:13:16.193293-08:00,1015.2984619140625,10.729349,10729.349 +9473,2025-03-08T04:13:26.908965-08:00,1015.2770385742188,10.715672,10715.672 +9474,2025-03-08T04:13:37.634943-08:00,1015.2704467773438,10.725978,10725.978 +9475,2025-03-08T04:13:48.347231-08:00,1015.26708984375,10.712288,10712.288 +9476,2025-03-08T04:13:59.073667-08:00,1015.3067016601562,10.726436,10726.436 +9477,2025-03-08T04:14:09.795948-08:00,1015.3148193359375,10.722281,10722.281 +9478,2025-03-08T04:14:20.511136-08:00,1015.3082885742188,10.715188,10715.188 +9479,2025-03-08T04:14:31.238974-08:00,1015.3001708984375,10.727838,10727.838 +9480,2025-03-08T04:14:41.955120-08:00,1015.298583984375,10.716146,10716.146 +9481,2025-03-08T04:14:52.672943-08:00,1015.3033447265625,10.717823,10717.823 +9482,2025-03-08T04:15:03.405025-08:00,1015.3033447265625,10.732082,10732.082 +9483,2025-03-08T04:15:14.129942-08:00,1015.2952270507812,10.724917,10724.917 +9484,2025-03-08T04:15:24.844127-08:00,1015.3018798828125,10.714185,10714.185 +9485,2025-03-08T04:15:35.571146-08:00,1015.306884765625,10.727019,10727.019 +9486,2025-03-08T04:15:46.285141-08:00,1015.2804565429688,10.713995,10713.995 +9487,2025-03-08T04:15:57.004142-08:00,1015.3252563476562,10.719001,10719.001 +9488,2025-03-08T04:16:07.729108-08:00,1015.2921752929688,10.724966,10724.966 +9489,2025-03-08T04:16:18.445149-08:00,1015.3252563476562,10.716041,10716.041 +9490,2025-03-08T04:16:29.172143-08:00,1015.3035888671875,10.726994,10726.994 +9491,2025-03-08T04:16:39.886945-08:00,1015.3086547851562,10.714802,10714.802 +9492,2025-03-08T04:16:50.610674-08:00,1015.3086547851562,10.723729,10723.729 +9493,2025-03-08T04:17:01.331936-08:00,1015.313720703125,10.721262,10721.262 +9494,2025-03-08T04:17:12.051968-08:00,1015.3251342773438,10.720032,10720.032 +9495,2025-03-08T04:17:22.778008-08:00,1015.3336181640625,10.72604,10726.04 +9496,2025-03-08T04:17:33.492954-08:00,1015.3071899414062,10.714946,10714.946 +9497,2025-03-08T04:17:44.210275-08:00,1015.3037719726562,10.717321,10717.321 +9498,2025-03-08T04:17:54.938968-08:00,1015.3382568359375,10.728693,10728.693 +9499,2025-03-08T04:18:05.653385-08:00,1015.3301391601562,10.714417,10714.417 +9500,2025-03-08T04:18:16.381149-08:00,1015.3317260742188,10.727764,10727.764 +9501,2025-03-08T04:18:27.101969-08:00,1015.3434448242188,10.72082,10720.82 +9502,2025-03-08T04:18:37.818014-08:00,1015.326904296875,10.716045,10716.045 +9503,2025-03-08T04:18:48.547031-08:00,1015.3616943359375,10.729017,10729.017 +9504,2025-03-08T04:18:59.259317-08:00,1015.3632202148438,10.712286,10712.286 +9505,2025-03-08T04:19:09.981024-08:00,1015.3135986328125,10.721707,10721.707 +9506,2025-03-08T04:19:20.712162-08:00,1015.3385009765625,10.731138,10731.138 +9507,2025-03-08T04:19:31.425150-08:00,1015.3385009765625,10.712988,10712.988 +9508,2025-03-08T04:19:42.146149-08:00,1015.3466186523438,10.720999,10720.999 +9509,2025-03-08T04:19:52.877009-08:00,1015.3435668945312,10.73086,10730.86 +9510,2025-03-08T04:20:03.600965-08:00,1015.3501586914062,10.723956,10723.956 +9511,2025-03-08T04:20:14.316159-08:00,1015.35498046875,10.715194,10715.194 +9512,2025-03-08T04:20:25.040135-08:00,1015.35498046875,10.723976,10723.976 +9513,2025-03-08T04:20:35.760945-08:00,1015.3465576171875,10.72081,10720.81 +9514,2025-03-08T04:20:46.494158-08:00,1015.3465576171875,10.733213,10733.213 +9515,2025-03-08T04:20:57.214283-08:00,1015.3384399414062,10.720125,10720.125 +9516,2025-03-08T04:21:07.933101-08:00,1015.3663330078125,10.718818,10718.818 +9517,2025-03-08T04:21:18.659013-08:00,1015.356689453125,10.725912,10725.912 +9518,2025-03-08T04:21:29.382362-08:00,1015.356689453125,10.723349,10723.349 +9519,2025-03-08T04:21:40.109011-08:00,1015.3613891601562,10.726649,10726.649 +9520,2025-03-08T04:21:50.831064-08:00,1015.3599243164062,10.722053,10722.053 +9521,2025-03-08T04:22:01.545942-08:00,1015.3731079101562,10.714878,10714.878 +9522,2025-03-08T04:22:12.268934-08:00,1015.3565673828125,10.722992,10722.992 +9523,2025-03-08T04:22:22.986313-08:00,1015.3716430664062,10.717379,10717.379 +9524,2025-03-08T04:22:33.706941-08:00,1015.3599243164062,10.720628,10720.628 +9525,2025-03-08T04:22:44.425943-08:00,1015.3697509765625,10.719002,10719.002 +9526,2025-03-08T04:22:55.154654-08:00,1015.3499755859375,10.728711,10728.711 +9527,2025-03-08T04:23:05.876943-08:00,1015.3800048828125,10.722289,10722.289 +9528,2025-03-08T04:23:16.593968-08:00,1015.3568115234375,10.717025,10717.025 +9529,2025-03-08T04:23:27.324942-08:00,1015.3847045898438,10.730974,10730.974 +9530,2025-03-08T04:23:38.038261-08:00,1015.3501586914062,10.713319,10713.319 +9531,2025-03-08T04:23:48.763019-08:00,1015.3831787109375,10.724758,10724.758 +9532,2025-03-08T04:23:59.486878-08:00,1015.368408203125,10.723859,10723.859 +9533,2025-03-08T04:24:10.200940-08:00,1015.3817138671875,10.714062,10714.062 +9534,2025-03-08T04:24:20.929092-08:00,1015.3666381835938,10.728152,10728.152 +9535,2025-03-08T04:24:31.652942-08:00,1015.4029541015625,10.72385,10723.85 +9536,2025-03-08T04:24:42.373475-08:00,1015.3599853515625,10.720533,10720.533 +9537,2025-03-08T04:24:53.088968-08:00,1015.3767700195312,10.715493,10715.493 +9538,2025-03-08T04:25:03.819119-08:00,1015.3965454101562,10.730151,10730.151 +9539,2025-03-08T04:25:14.540732-08:00,1015.3551635742188,10.721613,10721.613 +9540,2025-03-08T04:25:25.262115-08:00,1015.375,10.721383,10721.383 +9541,2025-03-08T04:25:35.986008-08:00,1015.375,10.723893,10723.893 +9542,2025-03-08T04:25:46.708113-08:00,1015.375,10.722105,10722.105 +9543,2025-03-08T04:25:57.428014-08:00,1015.3866577148438,10.719901,10719.901 +9544,2025-03-08T04:26:08.154337-08:00,1015.393310546875,10.726323,10726.323 +9545,2025-03-08T04:26:18.872012-08:00,1015.4130249023438,10.717675,10717.675 +9546,2025-03-08T04:26:29.599101-08:00,1015.4246826171875,10.727089,10727.089 +9547,2025-03-08T04:26:40.317310-08:00,1015.3917236328125,10.718209,10718.209 +9548,2025-03-08T04:26:51.038321-08:00,1015.3998413085938,10.721011,10721.011 +9549,2025-03-08T04:27:01.764940-08:00,1015.4034423828125,10.726619,10726.619 +9550,2025-03-08T04:27:12.478820-08:00,1015.4015502929688,10.71388,10713.88 +9551,2025-03-08T04:27:23.207117-08:00,1015.4232177734375,10.728297,10728.297 +9552,2025-03-08T04:27:33.921639-08:00,1015.3967895507812,10.714522,10714.522 +9553,2025-03-08T04:27:44.634941-08:00,1015.4015502929688,10.713302,10713.302 +9554,2025-03-08T04:27:55.354940-08:00,1015.4015502929688,10.719999,10719.999 +9555,2025-03-08T04:28:06.077148-08:00,1015.4345092773438,10.722208,10722.208 +9556,2025-03-08T04:28:16.792018-08:00,1015.4198608398438,10.71487,10714.87 +9557,2025-03-08T04:28:27.509454-08:00,1015.423095703125,10.717436,10717.436 +9558,2025-03-08T04:28:38.231189-08:00,1015.4645385742188,10.721735,10721.735 +9559,2025-03-08T04:28:48.955123-08:00,1015.475830078125,10.723934,10723.934 +9560,2025-03-08T04:28:59.670009-08:00,1015.43798828125,10.714886,10714.886 +9561,2025-03-08T04:29:10.386180-08:00,1015.4679565429688,10.716171,10716.171 +9562,2025-03-08T04:29:21.110940-08:00,1015.490966796875,10.72476,10724.76 +9563,2025-03-08T04:29:31.828940-08:00,1015.49609375,10.718,10718.0 +9564,2025-03-08T04:29:42.543943-08:00,1015.472900390625,10.715003,10715.003 +9565,2025-03-08T04:29:53.261160-08:00,1015.50439453125,10.717217,10717.217 +9566,2025-03-08T04:30:03.988302-08:00,1015.4715576171875,10.727142,10727.142 +9567,2025-03-08T04:30:14.695946-08:00,1015.4798583984375,10.707644,10707.644 +9568,2025-03-08T04:30:25.420538-08:00,1015.486328125,10.724592,10724.592 +9569,2025-03-08T04:30:36.140000-08:00,1015.4931030273438,10.719462,10719.462 +9570,2025-03-08T04:30:46.859941-08:00,1015.5145874023438,10.719941,10719.941 +9571,2025-03-08T04:30:57.578104-08:00,1015.4768676757812,10.718163,10718.163 +9572,2025-03-08T04:31:08.292009-08:00,1015.4868774414062,10.713905,10713.905 +9573,2025-03-08T04:31:19.017403-08:00,1015.47900390625,10.725394,10725.394 +9574,2025-03-08T04:31:29.739073-08:00,1015.4854736328125,10.72167,10721.67 +9575,2025-03-08T04:31:40.452029-08:00,1015.4906005859375,10.712956,10712.956 +9576,2025-03-08T04:31:51.170012-08:00,1015.489013671875,10.717983,10717.983 +9577,2025-03-08T04:32:01.890583-08:00,1015.4891357421875,10.720571,10720.571 +9578,2025-03-08T04:32:12.611143-08:00,1015.4742431640625,10.72056,10720.56 +9579,2025-03-08T04:32:23.333811-08:00,1015.4725952148438,10.722668,10722.668 +9580,2025-03-08T04:32:34.047119-08:00,1015.4529418945312,10.713308,10713.308 +9581,2025-03-08T04:32:44.769949-08:00,1015.4678344726562,10.72283,10722.83 +9582,2025-03-08T04:32:55.479069-08:00,1015.4415893554688,10.70912,10709.12 +9583,2025-03-08T04:33:06.203936-08:00,1015.4432983398438,10.724867,10724.867 +9584,2025-03-08T04:33:16.920129-08:00,1015.4251708984375,10.716193,10716.193 +9585,2025-03-08T04:33:27.636943-08:00,1015.443115234375,10.716814,10716.814 +9586,2025-03-08T04:33:38.354035-08:00,1015.4300537109375,10.717092,10717.092 +9587,2025-03-08T04:33:49.072369-08:00,1015.427001953125,10.718334,10718.334 +9588,2025-03-08T04:33:59.796940-08:00,1015.395751953125,10.724571,10724.571 +9589,2025-03-08T04:34:10.514944-08:00,1015.4136962890625,10.718004,10718.004 +9590,2025-03-08T04:34:21.234943-08:00,1015.4285888671875,10.719999,10719.999 +9591,2025-03-08T04:34:31.950343-08:00,1015.39404296875,10.7154,10715.4 +9592,2025-03-08T04:34:42.665944-08:00,1015.40380859375,10.715601,10715.601 +9593,2025-03-08T04:34:53.392116-08:00,1015.3956909179688,10.726172,10726.172 +9594,2025-03-08T04:35:04.104940-08:00,1015.3942260742188,10.712824,10712.824 +9595,2025-03-08T04:35:14.823942-08:00,1015.3992309570312,10.719002,10719.002 +9596,2025-03-08T04:35:25.542143-08:00,1015.4025268554688,10.718201,10718.201 +9597,2025-03-08T04:35:36.272029-08:00,1015.3973388671875,10.729886,10729.886 +9598,2025-03-08T04:35:46.983158-08:00,1015.430419921875,10.711129,10711.129 +9599,2025-03-08T04:35:57.706943-08:00,1015.3843994140625,10.723785,10723.785 +9600,2025-03-08T04:36:08.433158-08:00,1015.37451171875,10.726215,10726.215 +9601,2025-03-08T04:36:19.152006-08:00,1015.4009399414062,10.718848,10718.848 +9602,2025-03-08T04:36:29.872142-08:00,1015.3973388671875,10.720136,10720.136 +9603,2025-03-08T04:36:40.591941-08:00,1015.3760986328125,10.719799,10719.799 +9604,2025-03-08T04:36:51.309165-08:00,1015.4009399414062,10.717224,10717.224 +9605,2025-03-08T04:37:02.026944-08:00,1015.4156494140625,10.717779,10717.779 +9606,2025-03-08T04:37:12.757769-08:00,1015.4025268554688,10.730825,10730.825 +9607,2025-03-08T04:37:23.474945-08:00,1015.377685546875,10.717176,10717.176 +9608,2025-03-08T04:37:34.187045-08:00,1015.3926391601562,10.7121,10712.1 +9609,2025-03-08T04:37:44.911945-08:00,1015.3992309570312,10.7249,10724.9 +9610,2025-03-08T04:37:55.627226-08:00,1015.3842163085938,10.715281,10715.281 +9611,2025-03-08T04:38:06.351940-08:00,1015.4124145507812,10.724714,10724.714 +9612,2025-03-08T04:38:17.072063-08:00,1015.4140014648438,10.720123,10720.123 +9613,2025-03-08T04:38:27.788140-08:00,1015.4170532226562,10.716077,10716.077 +9614,2025-03-08T04:38:38.505213-08:00,1015.3956909179688,10.717073,10717.073 +9615,2025-03-08T04:38:49.219138-08:00,1015.4104614257812,10.713925,10713.925 +9616,2025-03-08T04:38:59.938390-08:00,1015.43359375,10.719252,10719.252 +9617,2025-03-08T04:39:10.664248-08:00,1015.4765625,10.725858,10725.858 +9618,2025-03-08T04:39:21.378943-08:00,1015.43701171875,10.714695,10714.695 +9619,2025-03-08T04:39:32.107120-08:00,1015.4237670898438,10.728177,10728.177 +9620,2025-03-08T04:39:42.830165-08:00,1015.43701171875,10.723045,10723.045 +9621,2025-03-08T04:39:53.551118-08:00,1015.4815063476562,10.720953,10720.953 +9622,2025-03-08T04:40:04.270008-08:00,1015.4977416992188,10.71889,10718.89 +9623,2025-03-08T04:40:14.994139-08:00,1015.455078125,10.724131,10724.131 +9624,2025-03-08T04:40:25.711021-08:00,1015.4647827148438,10.716882,10716.882 +9625,2025-03-08T04:40:36.432602-08:00,1015.4681396484375,10.721581,10721.581 +9626,2025-03-08T04:40:47.148941-08:00,1015.477783203125,10.716339,10716.339 +9627,2025-03-08T04:40:57.863978-08:00,1015.477783203125,10.715037,10715.037 +9628,2025-03-08T04:41:08.593125-08:00,1015.4927978515625,10.729147,10729.147 +9629,2025-03-08T04:41:19.310943-08:00,1015.4745483398438,10.717818,10717.818 +9630,2025-03-08T04:41:30.031127-08:00,1015.5025024414062,10.720184,10720.184 +9631,2025-03-08T04:41:40.747976-08:00,1015.4977416992188,10.716849,10716.849 +9632,2025-03-08T04:41:51.473154-08:00,1015.515869140625,10.725178,10725.178 +9633,2025-03-08T04:42:02.197017-08:00,1015.5421752929688,10.723863,10723.863 +9634,2025-03-08T04:42:12.914302-08:00,1015.5239868164062,10.717285,10717.285 +9635,2025-03-08T04:42:23.635961-08:00,1015.5420532226562,10.721659,10721.659 +9636,2025-03-08T04:42:34.352128-08:00,1015.5354614257812,10.716167,10716.167 +9637,2025-03-08T04:42:45.077943-08:00,1015.5156860351562,10.725815,10725.815 +9638,2025-03-08T04:42:55.798474-08:00,1015.5404052734375,10.720531,10720.531 +9639,2025-03-08T04:43:06.505346-08:00,1015.5404052734375,10.706872,10706.872 +9640,2025-03-08T04:43:17.225059-08:00,1015.55517578125,10.719713,10719.713 +9641,2025-03-08T04:43:27.949943-08:00,1015.5499877929688,10.724884,10724.884 +9642,2025-03-08T04:43:38.668943-08:00,1015.566650390625,10.719,10719.0 +9643,2025-03-08T04:43:49.385956-08:00,1015.5634155273438,10.717013,10717.013 +9644,2025-03-08T04:44:00.106003-08:00,1015.541748046875,10.720047,10720.047 +9645,2025-03-08T04:44:10.830944-08:00,1015.5502319335938,10.724941,10724.941 +9646,2025-03-08T04:44:21.552952-08:00,1015.559814453125,10.722008,10722.008 +9647,2025-03-08T04:44:32.270974-08:00,1015.5203247070312,10.718022,10718.022 +9648,2025-03-08T04:44:42.996098-08:00,1015.55810546875,10.725124,10725.124 +9649,2025-03-08T04:44:53.708119-08:00,1015.5733032226562,10.712021,10712.021 +9650,2025-03-08T04:45:04.436942-08:00,1015.5979614257812,10.728823,10728.823 +9651,2025-03-08T04:45:15.155334-08:00,1015.578125,10.718392,10718.392 +9652,2025-03-08T04:45:25.869940-08:00,1015.56494140625,10.714606,10714.606 +9653,2025-03-08T04:45:36.587634-08:00,1015.5418701171875,10.717694,10717.694 +9654,2025-03-08T04:45:47.313126-08:00,1015.5783081054688,10.725492,10725.492 +9655,2025-03-08T04:45:58.025943-08:00,1015.566650390625,10.712817,10712.817 +9656,2025-03-08T04:46:08.752044-08:00,1015.5634155273438,10.726101,10726.101 +9657,2025-03-08T04:46:19.468941-08:00,1015.5634155273438,10.716897,10716.897 +9658,2025-03-08T04:46:30.188208-08:00,1015.59130859375,10.719267,10719.267 +9659,2025-03-08T04:46:40.918607-08:00,1015.5617065429688,10.730399,10730.399 +9660,2025-03-08T04:46:51.638936-08:00,1015.5731811523438,10.720329,10720.329 +9661,2025-03-08T04:47:02.360967-08:00,1015.5879516601562,10.722031,10722.031 +9662,2025-03-08T04:47:13.084945-08:00,1015.5894775390625,10.723978,10723.978 +9663,2025-03-08T04:47:23.804140-08:00,1015.5579833984375,10.719195,10719.195 +9664,2025-03-08T04:47:34.524941-08:00,1015.6009521484375,10.720801,10720.801 +9665,2025-03-08T04:47:45.240942-08:00,1015.5628662109375,10.716001,10716.001 +9666,2025-03-08T04:47:55.961563-08:00,1015.5662231445312,10.720621,10720.621 +9667,2025-03-08T04:48:06.676943-08:00,1015.53173828125,10.71538,10715.38 +9668,2025-03-08T04:48:17.402111-08:00,1015.5744018554688,10.725168,10725.168 +9669,2025-03-08T04:48:28.115944-08:00,1015.5630493164062,10.713833,10713.833 +9670,2025-03-08T04:48:38.834129-08:00,1015.5843505859375,10.718185,10718.185 +9671,2025-03-08T04:48:49.557942-08:00,1015.5877075195312,10.723813,10723.813 +9672,2025-03-08T04:49:00.275224-08:00,1015.5926513671875,10.717282,10717.282 +9673,2025-03-08T04:49:11.002042-08:00,1015.564208984375,10.726818,10726.818 +9674,2025-03-08T04:49:21.714941-08:00,1015.56103515625,10.712899,10712.899 +9675,2025-03-08T04:49:32.428104-08:00,1015.572509765625,10.713163,10713.163 +9676,2025-03-08T04:49:43.148968-08:00,1015.5494384765625,10.720864,10720.864 +9677,2025-03-08T04:49:53.867014-08:00,1015.555908203125,10.718046,10718.046 +9678,2025-03-08T04:50:04.593019-08:00,1015.5787353515625,10.726005,10726.005 +9679,2025-03-08T04:50:15.309818-08:00,1015.5836181640625,10.716799,10716.799 +9680,2025-03-08T04:50:26.030098-08:00,1015.5885009765625,10.72028,10720.28 +9681,2025-03-08T04:50:36.746275-08:00,1015.5818481445312,10.716177,10716.177 +9682,2025-03-08T04:50:47.467944-08:00,1015.5901489257812,10.721669,10721.669 +9683,2025-03-08T04:50:58.191967-08:00,1015.5784912109375,10.724023,10724.023 +9684,2025-03-08T04:51:08.906120-08:00,1015.5834350585938,10.714153,10714.153 +9685,2025-03-08T04:51:19.626050-08:00,1015.5783081054688,10.71993,10719.93 +9686,2025-03-08T04:51:30.345349-08:00,1015.5831909179688,10.719299,10719.299 +9687,2025-03-08T04:51:41.054937-08:00,1015.5569458007812,10.709588,10709.588 +9688,2025-03-08T04:51:51.772940-08:00,1015.5948486328125,10.718003,10718.003 +9689,2025-03-08T04:52:02.496054-08:00,1015.5897827148438,10.723114,10723.114 +9690,2025-03-08T04:52:13.211111-08:00,1015.586181640625,10.715057,10715.057 +9691,2025-03-08T04:52:23.929750-08:00,1015.5418701171875,10.718639,10718.639 +9692,2025-03-08T04:52:34.649809-08:00,1015.564697265625,10.720059,10720.059 +9693,2025-03-08T04:52:45.361884-08:00,1015.5695190429688,10.712075,10712.075 +9694,2025-03-08T04:52:56.080756-08:00,1015.5317993164062,10.718872,10718.872 +9695,2025-03-08T04:53:06.800646-08:00,1015.5413818359375,10.71989,10719.89 +9696,2025-03-08T04:53:17.523573-08:00,1015.5300903320312,10.722927,10722.927 +9697,2025-03-08T04:53:28.232778-08:00,1015.4985961914062,10.709205,10709.205 +9698,2025-03-08T04:53:38.956767-08:00,1015.5331420898438,10.723989,10723.989 +9699,2025-03-08T04:53:49.677575-08:00,1015.50341796875,10.720808,10720.808 +9700,2025-03-08T04:54:00.387571-08:00,1015.52001953125,10.709996,10709.996 +9701,2025-03-08T04:54:11.106758-08:00,1015.487060546875,10.719187,10719.187 +9702,2025-03-08T04:54:21.826779-08:00,1015.5036010742188,10.720021,10720.021 +9703,2025-03-08T04:54:32.550604-08:00,1015.518310546875,10.723825,10723.825 +9704,2025-03-08T04:54:43.264603-08:00,1015.5136108398438,10.713999,10713.999 +9705,2025-03-08T04:54:53.984829-08:00,1015.5282592773438,10.720226,10720.226 +9706,2025-03-08T04:55:04.701728-08:00,1015.5250244140625,10.716899,10716.899 +9707,2025-03-08T04:55:15.415697-08:00,1015.52001953125,10.713969,10713.969 +9708,2025-03-08T04:55:26.141658-08:00,1015.5119018554688,10.725961,10725.961 +9709,2025-03-08T04:55:36.858573-08:00,1015.5184326171875,10.716915,10716.915 +9710,2025-03-08T04:55:47.577575-08:00,1015.5214233398438,10.719002,10719.002 +9711,2025-03-08T04:55:58.295644-08:00,1015.5214233398438,10.718069,10718.069 +9712,2025-03-08T04:56:09.011999-08:00,1015.5016479492188,10.716355,10716.355 +9713,2025-03-08T04:56:19.728570-08:00,1015.5232543945312,10.716571,10716.571 +9714,2025-03-08T04:56:30.456669-08:00,1015.5181884765625,10.728099,10728.099 +9715,2025-03-08T04:56:41.168573-08:00,1015.5197143554688,10.711904,10711.904 +9716,2025-03-08T04:56:51.889576-08:00,1015.5181884765625,10.721003,10721.003 +9717,2025-03-08T04:57:02.615570-08:00,1015.5115356445312,10.725994,10725.994 +9718,2025-03-08T04:57:13.334615-08:00,1015.52783203125,10.719045,10719.045 +9719,2025-03-08T04:57:24.050868-08:00,1015.55419921875,10.716253,10716.253 +9720,2025-03-08T04:57:34.764613-08:00,1015.534423828125,10.713745,10713.745 +9721,2025-03-08T04:57:45.480971-08:00,1015.5608520507812,10.716358,10716.358 +9722,2025-03-08T04:57:56.197574-08:00,1015.53955078125,10.716603,10716.603 +9723,2025-03-08T04:58:06.915570-08:00,1015.562744140625,10.717996,10717.996 +9724,2025-03-08T04:58:17.628801-08:00,1015.5410766601562,10.713231,10713.231 +9725,2025-03-08T04:58:28.349578-08:00,1015.575927734375,10.720777,10720.777 +9726,2025-03-08T04:58:39.063753-08:00,1015.5806274414062,10.714175,10714.175 +9727,2025-03-08T04:58:49.778789-08:00,1015.5725708007812,10.715036,10715.036 +9728,2025-03-08T04:59:00.504372-08:00,1015.5873413085938,10.725583,10725.583 +9729,2025-03-08T04:59:11.222577-08:00,1015.57763671875,10.718205,10718.205 +9730,2025-03-08T04:59:21.939664-08:00,1015.5857543945312,10.717087,10717.087 +9731,2025-03-08T04:59:32.662788-08:00,1015.6056518554688,10.723124,10723.124 +9732,2025-03-08T04:59:43.376570-08:00,1015.5989990234375,10.713782,10713.782 +9733,2025-03-08T04:59:54.095209-08:00,1015.5908813476562,10.718639,10718.639 +9734,2025-03-08T05:00:04.811576-08:00,1015.58935546875,10.716367,10716.367 +9735,2025-03-08T05:00:15.533763-08:00,1015.6040649414062,10.722187,10722.187 +9736,2025-03-08T05:00:26.255575-08:00,1015.6172485351562,10.721812,10721.812 +9737,2025-03-08T05:00:36.972205-08:00,1015.6024780273438,10.71663,10716.63 +9738,2025-03-08T05:00:47.691575-08:00,1015.5728149414062,10.71937,10719.37 +9739,2025-03-08T05:00:58.411142-08:00,1015.6138916015625,10.719567,10719.567 +9740,2025-03-08T05:01:09.128763-08:00,1015.5859375,10.717621,10717.621 +9741,2025-03-08T05:01:19.854569-08:00,1015.6138916015625,10.725806,10725.806 +9742,2025-03-08T05:01:30.579753-08:00,1015.5759887695312,10.725184,10725.184 +9743,2025-03-08T05:01:41.298686-08:00,1015.5942993164062,10.718933,10718.933 +9744,2025-03-08T05:01:52.018939-08:00,1015.6009521484375,10.720253,10720.253 +9745,2025-03-08T05:02:02.734805-08:00,1015.6221923828125,10.715866,10715.866 +9746,2025-03-08T05:02:13.460575-08:00,1015.599365234375,10.72577,10725.77 +9747,2025-03-08T05:02:24.177642-08:00,1015.5960083007812,10.717067,10717.067 +9748,2025-03-08T05:02:34.899778-08:00,1015.60107421875,10.722136,10722.136 +9749,2025-03-08T05:02:45.618767-08:00,1015.60107421875,10.718989,10718.989 +9750,2025-03-08T05:02:56.345735-08:00,1015.6290893554688,10.726968,10726.968 +9751,2025-03-08T05:03:07.069575-08:00,1015.5992431640625,10.72384,10723.84 +9752,2025-03-08T05:03:17.782739-08:00,1015.6190795898438,10.713164,10713.164 +9753,2025-03-08T05:03:28.505782-08:00,1015.6370239257812,10.723043,10723.043 +9754,2025-03-08T05:03:39.220773-08:00,1015.5811767578125,10.714991,10714.991 +9755,2025-03-08T05:03:49.944572-08:00,1015.6076049804688,10.723799,10723.799 +9756,2025-03-08T05:04:00.668760-08:00,1015.59765625,10.724188,10724.188 +9757,2025-03-08T05:04:11.386614-08:00,1015.6107788085938,10.717854,10717.854 +9758,2025-03-08T05:04:22.099919-08:00,1015.6026611328125,10.713305,10713.305 +9759,2025-03-08T05:04:32.820806-08:00,1015.6224975585938,10.720887,10720.887 +9760,2025-03-08T05:04:43.548235-08:00,1015.642333984375,10.727429,10727.429 +9761,2025-03-08T05:04:54.261713-08:00,1015.5927124023438,10.713478,10713.478 +9762,2025-03-08T05:05:04.986717-08:00,1015.6272583007812,10.725004,10725.004 +9763,2025-03-08T05:05:15.702830-08:00,1015.6124877929688,10.716113,10716.113 +9764,2025-03-08T05:05:26.425574-08:00,1015.6242065429688,10.722744,10722.744 +9765,2025-03-08T05:05:37.145577-08:00,1015.6026000976562,10.720003,10720.003 +9766,2025-03-08T05:05:47.867573-08:00,1015.6026000976562,10.721996,10721.996 +9767,2025-03-08T05:05:58.581756-08:00,1015.576171875,10.714183,10714.183 +9768,2025-03-08T05:06:09.295573-08:00,1015.5878295898438,10.713817,10713.817 +9769,2025-03-08T05:06:20.021791-08:00,1015.5863037109375,10.726218,10726.218 +9770,2025-03-08T05:06:30.738871-08:00,1015.5499877929688,10.71708,10717.08 +9771,2025-03-08T05:06:41.455779-08:00,1015.5301513671875,10.716908,10716.908 +9772,2025-03-08T05:06:52.172573-08:00,1015.5433349609375,10.716794,10716.794 +9773,2025-03-08T05:07:02.890573-08:00,1015.5069580078125,10.718,10718.0 +9774,2025-03-08T05:07:13.610734-08:00,1015.5267333984375,10.720161,10720.161 +9775,2025-03-08T05:07:24.328701-08:00,1015.5201416015625,10.717967,10717.967 +9776,2025-03-08T05:07:35.037774-08:00,1015.5597534179688,10.709073,10709.073 +9777,2025-03-08T05:07:45.753966-08:00,1015.5172119140625,10.716192,10716.192 +9778,2025-03-08T05:07:56.478573-08:00,1015.5172119140625,10.724607,10724.607 +9779,2025-03-08T05:08:07.190826-08:00,1015.5303344726562,10.712253,10712.253 +9780,2025-03-08T05:08:17.914600-08:00,1015.5618896484375,10.723774,10723.774 +9781,2025-03-08T05:08:28.631779-08:00,1015.5533447265625,10.717179,10717.179 +9782,2025-03-08T05:08:39.352573-08:00,1015.5437622070312,10.720794,10720.794 +9783,2025-03-08T05:08:50.069601-08:00,1015.5584106445312,10.717028,10717.028 +9784,2025-03-08T05:09:00.780780-08:00,1015.5717163085938,10.711179,10711.179 +9785,2025-03-08T05:09:11.500576-08:00,1015.5437622070312,10.719796,10719.796 +9786,2025-03-08T05:09:22.223855-08:00,1015.5550537109375,10.723279,10723.279 +9787,2025-03-08T05:09:32.937569-08:00,1015.540283203125,10.713714,10713.714 +9788,2025-03-08T05:09:43.656484-08:00,1015.538818359375,10.718915,10718.915 +9789,2025-03-08T05:09:54.378735-08:00,1015.540283203125,10.722251,10722.251 +9790,2025-03-08T05:10:05.087789-08:00,1015.5435791015625,10.709054,10709.054 +9791,2025-03-08T05:10:15.807424-08:00,1015.5454711914062,10.719635,10719.635 +9792,2025-03-08T05:10:26.533573-08:00,1015.5750732421875,10.726149,10726.149 +9793,2025-03-08T05:10:37.248758-08:00,1015.5471801757812,10.715185,10715.185 +9794,2025-03-08T05:10:47.963790-08:00,1015.5254516601562,10.715032,10715.032 +9795,2025-03-08T05:10:58.681781-08:00,1015.53564453125,10.717991,10717.991 +9796,2025-03-08T05:11:09.395577-08:00,1015.5504150390625,10.713796,10713.796 +9797,2025-03-08T05:11:20.113573-08:00,1015.5454711914062,10.717996,10717.996 +9798,2025-03-08T05:11:30.834803-08:00,1015.560546875,10.72123,10721.23 +9799,2025-03-08T05:11:41.556934-08:00,1015.5587768554688,10.722131,10722.131 +9800,2025-03-08T05:11:52.271950-08:00,1015.537353515625,10.715016,10715.016 +9801,2025-03-08T05:12:02.984678-08:00,1015.5256958007812,10.712728,10712.728 +9802,2025-03-08T05:12:13.706776-08:00,1015.562255859375,10.722098,10722.098 +9803,2025-03-08T05:12:24.427602-08:00,1015.535888671875,10.720826,10720.826 +9804,2025-03-08T05:12:35.140772-08:00,1015.520751953125,10.71317,10713.17 +9805,2025-03-08T05:12:45.855757-08:00,1015.5259399414062,10.714985,10714.985 +9806,2025-03-08T05:12:56.574573-08:00,1015.5523681640625,10.718816,10718.816 +9807,2025-03-08T05:13:07.299757-08:00,1015.5390625,10.725184,10725.184 +9808,2025-03-08T05:13:18.009619-08:00,1015.5406494140625,10.709862,10709.862 +9809,2025-03-08T05:13:28.738691-08:00,1015.53759765625,10.729072,10729.072 +9810,2025-03-08T05:13:39.449574-08:00,1015.5538330078125,10.710883,10710.883 +9811,2025-03-08T05:13:50.172575-08:00,1015.517822265625,10.723001,10723.001 +9812,2025-03-08T05:14:00.881765-08:00,1015.5225219726562,10.70919,10709.19 +9813,2025-03-08T05:14:11.599576-08:00,1015.5309448242188,10.717811,10717.811 +9814,2025-03-08T05:14:22.314814-08:00,1015.557373046875,10.715238,10715.238 +9815,2025-03-08T05:14:33.034301-08:00,1015.5093994140625,10.719487,10719.487 +9816,2025-03-08T05:14:43.744786-08:00,1015.514404296875,10.710485,10710.485 +9817,2025-03-08T05:14:54.465761-08:00,1015.55078125,10.720975,10720.975 +9818,2025-03-08T05:15:05.187034-08:00,1015.5488891601562,10.721273,10721.273 +9819,2025-03-08T05:15:15.903239-08:00,1015.514404296875,10.716205,10716.205 +9820,2025-03-08T05:15:26.626576-08:00,1015.5357055664062,10.723337,10723.337 +9821,2025-03-08T05:15:37.338784-08:00,1015.540771484375,10.712208,10712.208 +9822,2025-03-08T05:15:48.064601-08:00,1015.526123046875,10.725817,10725.817 +9823,2025-03-08T05:15:58.792682-08:00,1015.5128784179688,10.728081,10728.081 +9824,2025-03-08T05:16:09.504341-08:00,1015.50439453125,10.711659,10711.659 +9825,2025-03-08T05:16:20.223572-08:00,1015.51953125,10.719231,10719.231 +9826,2025-03-08T05:16:30.945802-08:00,1015.5242309570312,10.72223,10722.23 +9827,2025-03-08T05:16:41.672637-08:00,1015.5440673828125,10.726835,10726.835 +9828,2025-03-08T05:16:52.387571-08:00,1015.5704956054688,10.714934,10714.934 +9829,2025-03-08T05:17:03.110650-08:00,1015.5391235351562,10.723079,10723.079 +9830,2025-03-08T05:17:13.820772-08:00,1015.5689086914062,10.710122,10710.122 +9831,2025-03-08T05:17:24.543574-08:00,1015.517822265625,10.722802,10722.802 +9832,2025-03-08T05:17:35.265906-08:00,1015.506103515625,10.722332,10722.332 +9833,2025-03-08T05:17:45.979576-08:00,1015.5391235351562,10.71367,10713.67 +9834,2025-03-08T05:17:56.701603-08:00,1015.5243530273438,10.722027,10722.027 +9835,2025-03-08T05:18:07.419786-08:00,1015.5426635742188,10.718183,10718.183 +9836,2025-03-08T05:18:18.133787-08:00,1015.555908203125,10.714001,10714.001 +9837,2025-03-08T05:18:28.856800-08:00,1015.54931640625,10.723013,10723.013 +9838,2025-03-08T05:18:39.565572-08:00,1015.5574340820312,10.708772,10708.772 +9839,2025-03-08T05:18:50.294792-08:00,1015.5477905273438,10.72922,10729.22 +9840,2025-03-08T05:19:01.010782-08:00,1015.5279541015625,10.71599,10715.99 +9841,2025-03-08T05:19:11.729573-08:00,1015.5477905273438,10.718791,10718.791 +9842,2025-03-08T05:19:22.441568-08:00,1015.5477905273438,10.711995,10711.995 +9843,2025-03-08T05:19:33.158572-08:00,1015.555908203125,10.717004,10717.004 +9844,2025-03-08T05:19:43.883760-08:00,1015.5393676757812,10.725188,10725.188 +9845,2025-03-08T05:19:54.597575-08:00,1015.55908203125,10.713815,10713.815 +9846,2025-03-08T05:20:05.314010-08:00,1015.5443725585938,10.716435,10716.435 +9847,2025-03-08T05:20:16.034576-08:00,1015.5443725585938,10.720566,10720.566 +9848,2025-03-08T05:20:26.756573-08:00,1015.5509643554688,10.721997,10721.997 +9849,2025-03-08T05:20:37.467713-08:00,1015.5773315429688,10.71114,10711.14 +9850,2025-03-08T05:20:48.180577-08:00,1015.5231323242188,10.712864,10712.864 +9851,2025-03-08T05:20:58.898850-08:00,1015.5427856445312,10.718273,10718.273 +9852,2025-03-08T05:21:09.623572-08:00,1015.541015625,10.724722,10724.722 +9853,2025-03-08T05:21:20.331573-08:00,1015.5560913085938,10.708001,10708.001 +9854,2025-03-08T05:21:31.053753-08:00,1015.5460815429688,10.72218,10722.18 +9855,2025-03-08T05:21:41.766776-08:00,1015.560791015625,10.713023,10713.023 +9856,2025-03-08T05:21:52.486041-08:00,1015.559326171875,10.719265,10719.265 +9857,2025-03-08T05:22:03.212606-08:00,1015.5460815429688,10.726565,10726.565 +9858,2025-03-08T05:22:13.931748-08:00,1015.560791015625,10.719142,10719.142 +9859,2025-03-08T05:22:24.644576-08:00,1015.5526733398438,10.712828,10712.828 +9860,2025-03-08T05:22:35.360775-08:00,1015.5692138671875,10.716199,10716.199 +9861,2025-03-08T05:22:46.078759-08:00,1015.587158203125,10.717984,10717.984 +9862,2025-03-08T05:22:56.796572-08:00,1015.585693359375,10.717813,10717.813 +9863,2025-03-08T05:23:07.517764-08:00,1015.5806274414062,10.721192,10721.192 +9864,2025-03-08T05:23:10.135860-08:00,1015.5740356445312,2.618096,2618.096 +9865,2025-03-08T05:23:18.233572-08:00,1015.587158203125,8.097712,8097.712 +9866,2025-03-08T05:23:28.953300-08:00,1015.584228515625,10.719728,10719.728 +9867,2025-03-08T05:23:39.675573-08:00,1015.57568359375,10.722273,10722.273 +9868,2025-03-08T05:23:50.392041-08:00,1015.5907592773438,10.716468,10716.468 +9869,2025-03-08T05:24:01.114587-08:00,1015.5477905273438,10.722546,10722.546 +9870,2025-03-08T05:24:11.826770-08:00,1015.5775756835938,10.712183,10712.183 +9871,2025-03-08T05:24:22.548574-08:00,1015.580810546875,10.721804,10721.804 +9872,2025-03-08T05:24:33.265641-08:00,1015.577392578125,10.717067,10717.067 +9873,2025-03-08T05:24:43.987755-08:00,1015.56103515625,10.722114,10722.114 +9874,2025-03-08T05:24:54.704755-08:00,1015.577392578125,10.717,10717.0 +9875,2025-03-08T05:25:05.419815-08:00,1015.58251953125,10.71506,10715.06 +9876,2025-03-08T05:25:16.138774-08:00,1015.5875854492188,10.718959,10718.959 +9877,2025-03-08T05:25:26.854572-08:00,1015.5643920898438,10.715798,10715.798 +9878,2025-03-08T05:25:37.572717-08:00,1015.5745239257812,10.718145,10718.145 +9879,2025-03-08T05:25:48.290736-08:00,1015.6173706054688,10.718019,10718.019 +9880,2025-03-08T05:25:59.011748-08:00,1015.6290893554688,10.721012,10721.012 +9881,2025-03-08T05:26:09.728574-08:00,1015.6073608398438,10.716826,10716.826 +9882,2025-03-08T05:26:20.446598-08:00,1015.6090698242188,10.718024,10718.024 +9883,2025-03-08T05:26:31.157262-08:00,1015.604248046875,10.710664,10710.664 +9884,2025-03-08T05:26:41.873576-08:00,1015.6143798828125,10.716314,10716.314 +9885,2025-03-08T05:26:52.585807-08:00,1015.62109375,10.712231,10712.231 +9886,2025-03-08T05:27:03.303780-08:00,1015.599609375,10.717973,10717.973 +9887,2025-03-08T05:27:14.017573-08:00,1015.596435546875,10.713793,10713.793 +9888,2025-03-08T05:27:24.739802-08:00,1015.6160278320312,10.722229,10722.229 +9889,2025-03-08T05:27:35.459575-08:00,1015.6143798828125,10.719773,10719.773 +9890,2025-03-08T05:27:46.174279-08:00,1015.6409301757812,10.714704,10714.704 +9891,2025-03-08T05:27:56.894688-08:00,1015.6163330078125,10.720409,10720.409 +9892,2025-03-08T05:28:07.609569-08:00,1015.639404296875,10.714881,10714.881 +9893,2025-03-08T05:28:18.327846-08:00,1015.637939453125,10.718277,10718.277 +9894,2025-03-08T05:28:29.038576-08:00,1015.6082763671875,10.71073,10710.73 +9895,2025-03-08T05:28:39.757160-08:00,1015.6132202148438,10.718584,10718.584 +9896,2025-03-08T05:28:50.471988-08:00,1015.6214599609375,10.714828,10714.828 +9897,2025-03-08T05:29:01.200699-08:00,1015.6414184570312,10.728711,10728.711 +9898,2025-03-08T05:29:11.910644-08:00,1015.644775390625,10.709945,10709.945 +9899,2025-03-08T05:29:22.630576-08:00,1015.6317138671875,10.719932,10719.932 +9900,2025-03-08T05:29:33.342115-08:00,1015.6415405273438,10.711539,10711.539 +9901,2025-03-08T05:29:44.064574-08:00,1015.6350708007812,10.722459,10722.459 +9902,2025-03-08T05:29:54.793762-08:00,1015.6386108398438,10.729188,10729.188 +9903,2025-03-08T05:30:05.509580-08:00,1015.6403198242188,10.715818,10715.818 +9904,2025-03-08T05:30:16.224576-08:00,1015.6434326171875,10.714996,10714.996 +9905,2025-03-08T05:30:26.949574-08:00,1015.6253051757812,10.724998,10724.998 +9906,2025-03-08T05:30:37.672757-08:00,1015.6420288085938,10.723183,10723.183 +9907,2025-03-08T05:30:48.392604-08:00,1015.618896484375,10.719847,10719.847 +9908,2025-03-08T05:30:59.107778-08:00,1015.65185546875,10.715174,10715.174 +9909,2025-03-08T05:31:09.825575-08:00,1015.627197265625,10.717797,10717.797 +9910,2025-03-08T05:31:20.544575-08:00,1015.650146484375,10.719,10719.0 +9911,2025-03-08T05:31:31.265816-08:00,1015.6272583007812,10.721241,10721.241 +9912,2025-03-08T05:31:41.988843-08:00,1015.6602172851562,10.723027,10723.027 +9913,2025-03-08T05:31:52.705742-08:00,1015.6253662109375,10.716899,10716.899 +9914,2025-03-08T05:32:03.423576-08:00,1015.653564453125,10.717834,10717.834 +9915,2025-03-08T05:32:14.143282-08:00,1015.6172485351562,10.719706,10719.706 +9916,2025-03-08T05:32:24.866317-08:00,1015.6057739257812,10.723035,10723.035 +9917,2025-03-08T05:32:35.577633-08:00,1015.6502075195312,10.711316,10711.316 +9918,2025-03-08T05:32:46.298760-08:00,1015.6204833984375,10.721127,10721.127 +9919,2025-03-08T05:32:57.011571-08:00,1015.618896484375,10.712811,10712.811 +9920,2025-03-08T05:33:07.740682-08:00,1015.6138916015625,10.729111,10729.111 +9921,2025-03-08T05:33:18.457784-08:00,1015.6270141601562,10.717102,10717.102 +9922,2025-03-08T05:33:29.168217-08:00,1015.6270141601562,10.710433,10710.433 +9923,2025-03-08T05:33:39.893603-08:00,1015.59912109375,10.725386,10725.386 +9924,2025-03-08T05:33:50.612286-08:00,1015.6204833984375,10.718683,10718.683 +9925,2025-03-08T05:34:01.331871-08:00,1015.59912109375,10.719585,10719.585 +9926,2025-03-08T05:34:12.053652-08:00,1015.6073608398438,10.721781,10721.781 +9927,2025-03-08T05:34:22.764574-08:00,1015.6007080078125,10.710922,10710.922 +9928,2025-03-08T05:34:33.491616-08:00,1015.609130859375,10.727042,10727.042 +9929,2025-03-08T05:34:44.207767-08:00,1015.6320190429688,10.716151,10716.151 +9930,2025-03-08T05:34:54.928725-08:00,1015.6172485351562,10.720958,10720.958 +9931,2025-03-08T05:35:05.650661-08:00,1015.6188354492188,10.721936,10721.936 +9932,2025-03-08T05:35:16.374576-08:00,1015.6404418945312,10.723915,10723.915 +9933,2025-03-08T05:35:27.086773-08:00,1015.6140747070312,10.712197,10712.197 +9934,2025-03-08T05:35:37.809973-08:00,1015.650146484375,10.7232,10723.2 +9935,2025-03-08T05:35:48.530776-08:00,1015.6322021484375,10.720803,10720.803 +9936,2025-03-08T05:35:59.244786-08:00,1015.6190795898438,10.71401,10714.01 +9937,2025-03-08T05:36:09.965573-08:00,1015.628662109375,10.720787,10720.787 +9938,2025-03-08T05:36:20.683599-08:00,1015.6437377929688,10.718026,10718.026 +9939,2025-03-08T05:36:31.406695-08:00,1015.6320190429688,10.723096,10723.096 +9940,2025-03-08T05:36:42.126756-08:00,1015.6599731445312,10.720061,10720.061 +9941,2025-03-08T05:36:52.841575-08:00,1015.6467895507812,10.714819,10714.819 +9942,2025-03-08T05:37:03.556776-08:00,1015.6486206054688,10.715201,10715.201 +9943,2025-03-08T05:37:14.284604-08:00,1015.6370239257812,10.727828,10727.828 +9944,2025-03-08T05:37:25.003745-08:00,1015.6500244140625,10.719141,10719.141 +9945,2025-03-08T05:37:35.720894-08:00,1015.6484985351562,10.717149,10717.149 +9946,2025-03-08T05:37:46.452803-08:00,1015.6581420898438,10.731909,10731.909 +9947,2025-03-08T05:37:57.168572-08:00,1015.6666259765625,10.715769,10715.769 +9948,2025-03-08T05:38:07.892754-08:00,1015.6732788085938,10.724182,10724.182 +9949,2025-03-08T05:38:18.614575-08:00,1015.63671875,10.721821,10721.821 +9950,2025-03-08T05:38:29.340858-08:00,1015.6235961914062,10.726283,10726.283 +9951,2025-03-08T05:38:40.061575-08:00,1015.646728515625,10.720717,10720.717 +9952,2025-03-08T05:38:50.784797-08:00,1015.6482543945312,10.723222,10723.222 +9953,2025-03-08T05:39:01.501548-08:00,1015.651611328125,10.716751,10716.751 +9954,2025-03-08T05:39:12.218745-08:00,1015.638427734375,10.717197,10717.197 +9955,2025-03-08T05:39:22.947746-08:00,1015.6415405273438,10.729001,10729.001 +9956,2025-03-08T05:39:33.663748-08:00,1015.6515502929688,10.716002,10716.002 +9957,2025-03-08T05:39:44.383805-08:00,1015.6398315429688,10.720057,10720.057 +9958,2025-03-08T05:39:55.097594-08:00,1015.63330078125,10.713789,10713.789 +9959,2025-03-08T05:40:05.822595-08:00,1015.6134643554688,10.725001,10725.001 +9960,2025-03-08T05:40:16.531622-08:00,1015.6514282226562,10.709027,10709.027 +9961,2025-03-08T05:40:27.258785-08:00,1015.6481323242188,10.727163,10727.163 +9962,2025-03-08T05:40:37.970584-08:00,1015.6581420898438,10.711799,10711.799 +9963,2025-03-08T05:40:48.690758-08:00,1015.646484375,10.720174,10720.174 +9964,2025-03-08T05:40:59.408575-08:00,1015.6677856445312,10.717817,10717.817 +9965,2025-03-08T05:41:10.134961-08:00,1015.6102905273438,10.726386,10726.386 +9966,2025-03-08T05:41:20.858576-08:00,1015.6148681640625,10.723615,10723.615 +9967,2025-03-08T05:41:31.576778-08:00,1015.6233520507812,10.718202,10718.202 +9968,2025-03-08T05:41:42.298575-08:00,1015.6233520507812,10.721797,10721.797 +9969,2025-03-08T05:41:53.017540-08:00,1015.6264038085938,10.718965,10718.965 +9970,2025-03-08T05:42:03.736576-08:00,1015.6217041015625,10.719036,10719.036 +9971,2025-03-08T05:42:14.455573-08:00,1015.6298217773438,10.718997,10718.997 +9972,2025-03-08T05:42:25.161765-08:00,1015.63134765625,10.706192,10706.192 +9973,2025-03-08T05:42:35.879601-08:00,1015.6281127929688,10.717836,10717.836 +9974,2025-03-08T05:42:46.593777-08:00,1015.631591796875,10.714176,10714.176 +9975,2025-03-08T05:42:57.307589-08:00,1015.619873046875,10.713812,10713.812 +9976,2025-03-08T05:43:08.021574-08:00,1015.634521484375,10.713985,10713.985 +9977,2025-03-08T05:43:18.744754-08:00,1015.6031494140625,10.72318,10723.18 +9978,2025-03-08T05:43:29.451647-08:00,1015.6163330078125,10.706893,10706.893 +9979,2025-03-08T05:43:40.164576-08:00,1015.6409912109375,10.712929,10712.929 +9980,2025-03-08T05:43:50.885760-08:00,1015.6231079101562,10.721184,10721.184 +9981,2025-03-08T05:44:01.604807-08:00,1015.63623046875,10.719047,10719.047 +9982,2025-03-08T05:44:12.320879-08:00,1015.639404296875,10.716072,10716.072 +9983,2025-03-08T05:44:23.039743-08:00,1015.6345825195312,10.718864,10718.864 +9984,2025-03-08T05:44:33.757776-08:00,1015.6213989257812,10.718033,10718.033 +9985,2025-03-08T05:44:44.476604-08:00,1015.6328735351562,10.718828,10718.828 +9986,2025-03-08T05:44:55.195641-08:00,1015.6443481445312,10.719037,10719.037 +9987,2025-03-08T05:45:05.909755-08:00,1015.6423950195312,10.714114,10714.114 +9988,2025-03-08T05:45:16.628577-08:00,1015.65087890625,10.718822,10718.822 +9989,2025-03-08T05:45:27.348090-08:00,1015.6638793945312,10.719513,10719.513 +9990,2025-03-08T05:45:38.067654-08:00,1015.6456298828125,10.719564,10719.564 +9991,2025-03-08T05:45:48.783669-08:00,1015.6241455078125,10.716015,10716.015 +9992,2025-03-08T05:45:59.500873-08:00,1015.6359252929688,10.717204,10717.204 +9993,2025-03-08T05:46:10.219789-08:00,1015.6592407226562,10.718916,10718.916 +9994,2025-03-08T05:46:20.936754-08:00,1015.60791015625,10.716965,10716.965 +9995,2025-03-08T05:46:31.660944-08:00,1015.6209106445312,10.72419,10724.19 +9996,2025-03-08T05:46:42.381749-08:00,1015.6375122070312,10.720805,10720.805 +9997,2025-03-08T05:46:53.094779-08:00,1015.6637573242188,10.71303,10713.03 +9998,2025-03-08T05:47:03.815573-08:00,1015.6589965820312,10.720794,10720.794 +9999,2025-03-08T05:47:14.534812-08:00,1015.6570434570312,10.719239,10719.239 +10000,2025-03-08T05:47:25.254739-08:00,1015.6420288085938,10.719927,10719.927 +10001,2025-03-08T05:47:35.980999-08:00,1015.65869140625,10.72626,10726.26 +10002,2025-03-08T05:47:46.695573-08:00,1015.6470336914062,10.714574,10714.574 +10003,2025-03-08T05:47:57.418739-08:00,1015.69482421875,10.723166,10723.166 +10004,2025-03-08T05:48:08.143572-08:00,1015.6370239257812,10.724833,10724.833 +10005,2025-03-08T05:48:18.858119-08:00,1015.64697265625,10.714547,10714.547 +10006,2025-03-08T05:48:29.574572-08:00,1015.6651000976562,10.716453,10716.453 +10007,2025-03-08T05:48:40.292774-08:00,1015.64013671875,10.718202,10718.202 +10008,2025-03-08T05:48:51.017578-08:00,1015.6450805664062,10.724804,10724.804 +10009,2025-03-08T05:49:01.731784-08:00,1015.6617431640625,10.714206,10714.206 +10010,2025-03-08T05:49:12.461076-08:00,1015.6713256835938,10.729292,10729.292 +10011,2025-03-08T05:49:23.178625-08:00,1015.6929931640625,10.717549,10717.549 +10012,2025-03-08T05:49:33.886778-08:00,1015.67626953125,10.708153,10708.153 +10013,2025-03-08T05:49:44.607768-08:00,1015.6597900390625,10.72099,10720.99 +10014,2025-03-08T05:49:55.327732-08:00,1015.6876831054688,10.719964,10719.964 +10015,2025-03-08T05:50:06.054576-08:00,1015.6911010742188,10.726844,10726.844 +10016,2025-03-08T05:50:16.773026-08:00,1015.6743774414062,10.71845,10718.45 +10017,2025-03-08T05:50:27.492574-08:00,1015.667724609375,10.719548,10719.548 +10018,2025-03-08T05:50:38.212765-08:00,1015.69091796875,10.720191,10720.191 +10019,2025-03-08T05:50:48.928576-08:00,1015.680908203125,10.715811,10715.811 +10020,2025-03-08T05:50:59.643576-08:00,1015.6776733398438,10.715,10715.0 +10021,2025-03-08T05:51:10.356814-08:00,1015.69091796875,10.713238,10713.238 +10022,2025-03-08T05:51:21.084575-08:00,1015.684326171875,10.727761,10727.761 +10023,2025-03-08T05:51:31.799777-08:00,1015.7140502929688,10.715202,10715.202 +10024,2025-03-08T05:51:42.517576-08:00,1015.7254638671875,10.717799,10717.799 +10025,2025-03-08T05:51:53.246574-08:00,1015.7320556640625,10.728998,10728.998 +10026,2025-03-08T05:52:03.966597-08:00,1015.6990356445312,10.720023,10720.023 +10027,2025-03-08T05:52:14.683684-08:00,1015.7206420898438,10.717087,10717.087 +10028,2025-03-08T05:52:25.487784-08:00,1015.727294921875,10.8041,10804.1 +10029,2025-03-08T05:52:36.199695-08:00,1015.7008666992188,10.711911,10711.911 +10030,2025-03-08T05:52:46.930701-08:00,1015.7023315429688,10.731006,10731.006 +10031,2025-03-08T05:52:57.648695-08:00,1015.7420043945312,10.717994,10717.994 +10032,2025-03-08T05:53:08.361745-08:00,1015.7023315429688,10.71305,10713.05 +10033,2025-03-08T05:53:19.087761-08:00,1015.7156372070312,10.726016,10726.016 +10034,2025-03-08T05:53:29.803510-08:00,1015.7156372070312,10.715749,10715.749 +10035,2025-03-08T05:53:40.520510-08:00,1015.7302856445312,10.717,10717.0 +10036,2025-03-08T05:53:51.245724-08:00,1015.71044921875,10.725214,10725.214 +10037,2025-03-08T05:54:01.963627-08:00,1015.68408203125,10.717903,10717.903 +10038,2025-03-08T05:54:12.684689-08:00,1015.6925659179688,10.721062,10721.062 +10039,2025-03-08T05:54:23.401645-08:00,1015.7256469726562,10.716956,10716.956 +10040,2025-03-08T05:54:34.122747-08:00,1015.6973266601562,10.721102,10721.102 +10041,2025-03-08T05:54:44.846510-08:00,1015.71044921875,10.723763,10723.763 +10042,2025-03-08T05:54:55.568674-08:00,1015.718994140625,10.722164,10722.164 +10043,2025-03-08T05:55:06.292713-08:00,1015.69921875,10.724039,10724.039 +10044,2025-03-08T05:55:17.010510-08:00,1015.718994140625,10.717797,10717.797 +10045,2025-03-08T05:55:27.733727-08:00,1015.7237548828125,10.723217,10723.217 +10046,2025-03-08T05:55:38.445693-08:00,1015.71044921875,10.711966,10711.966 +10047,2025-03-08T05:55:49.167718-08:00,1015.708984375,10.722025,10722.025 +10048,2025-03-08T05:55:59.887710-08:00,1015.69580078125,10.719992,10719.992 +10049,2025-03-08T05:56:10.603706-08:00,1015.6990356445312,10.715996,10715.996 +10050,2025-03-08T05:56:21.327308-08:00,1015.6924438476562,10.723602,10723.602 +10051,2025-03-08T05:56:32.042726-08:00,1015.6710815429688,10.715418,10715.418 +10052,2025-03-08T05:56:42.767534-08:00,1015.7173461914062,10.724808,10724.808 +10053,2025-03-08T05:56:53.486692-08:00,1015.710693359375,10.719158,10719.158 +10054,2025-03-08T05:57:04.203513-08:00,1015.709228515625,10.716821,10716.821 +10055,2025-03-08T05:57:14.917938-08:00,1015.6875,10.714425,10714.425 +10056,2025-03-08T05:57:25.642577-08:00,1015.705810546875,10.724639,10724.639 +10057,2025-03-08T05:57:36.355707-08:00,1015.71240234375,10.71313,10713.13 +10058,2025-03-08T05:57:47.075576-08:00,1015.689208984375,10.719869,10719.869 +10059,2025-03-08T05:57:57.792844-08:00,1015.717529296875,10.717268,10717.268 +10060,2025-03-08T05:58:08.515598-08:00,1015.7156372070312,10.722754,10722.754 +10061,2025-03-08T05:58:19.234536-08:00,1015.6942749023438,10.718938,10718.938 +10062,2025-03-08T05:58:29.942692-08:00,1015.7125854492188,10.708156,10708.156 +10063,2025-03-08T05:58:40.668727-08:00,1015.70751953125,10.726035,10726.035 +10064,2025-03-08T05:58:51.389696-08:00,1015.697509765625,10.720969,10720.969 +10065,2025-03-08T05:59:02.108676-08:00,1015.7059326171875,10.71898,10718.98 +10066,2025-03-08T05:59:12.818510-08:00,1015.70263671875,10.709834,10709.834 +10067,2025-03-08T05:59:23.547587-08:00,1015.7041625976562,10.729077,10729.077 +10068,2025-03-08T05:59:34.266928-08:00,1015.7173461914062,10.719341,10719.341 +10069,2025-03-08T05:59:44.983513-08:00,1015.70263671875,10.716585,10716.585 +10070,2025-03-08T05:59:55.706819-08:00,1015.6945190429688,10.723306,10723.306 +10071,2025-03-08T06:00:06.422777-08:00,1015.7340698242188,10.715958,10715.958 +10072,2025-03-08T06:00:17.153506-08:00,1015.7142944335938,10.730729,10730.729 +10073,2025-03-08T06:00:27.871516-08:00,1015.7076416015625,10.71801,10718.01 +10074,2025-03-08T06:00:38.594581-08:00,1015.7259521484375,10.723065,10723.065 +10075,2025-03-08T06:00:49.312929-08:00,1015.717529296875,10.718348,10718.348 +10076,2025-03-08T06:01:00.030719-08:00,1015.7373657226562,10.71779,10717.79 +10077,2025-03-08T06:01:10.752648-08:00,1015.7408447265625,10.721929,10721.929 +10078,2025-03-08T06:01:19.594340-08:00,1015.7144775390625,8.841692,8841.692 +10079,2025-03-08T06:01:21.471305-08:00,1015.7276611328125,1.876965,1876.965 +10080,2025-03-08T06:01:32.184627-08:00,1015.74560546875,10.713322,10713.322 +10081,2025-03-08T06:01:42.906508-08:00,1015.7257690429688,10.721881,10721.881 +10082,2025-03-08T06:01:53.624789-08:00,1015.7374877929688,10.718281,10718.281 +10083,2025-03-08T06:02:04.350627-08:00,1015.7340698242188,10.725838,10725.838 +10084,2025-03-08T06:02:15.065575-08:00,1015.763916015625,10.714948,10714.948 +10085,2025-03-08T06:02:25.794183-08:00,1015.7588500976562,10.728608,10728.608 +10086,2025-03-08T06:02:36.515475-08:00,1015.747314453125,10.721292,10721.292 +10087,2025-03-08T06:02:47.225718-08:00,1015.7357788085938,10.710243,10710.243 +10088,2025-03-08T06:02:57.946513-08:00,1015.7310791015625,10.720795,10720.795 +10089,2025-03-08T06:03:08.671506-08:00,1015.7442016601562,10.724993,10724.993 +10090,2025-03-08T06:03:19.390511-08:00,1015.7276611328125,10.719005,10719.005 +10091,2025-03-08T06:03:30.100712-08:00,1015.7606201171875,10.710201,10710.201 +10092,2025-03-08T06:03:40.828525-08:00,1015.7474975585938,10.727813,10727.813 +10093,2025-03-08T06:03:51.542101-08:00,1015.6997680664062,10.713576,10713.576 +10094,2025-03-08T06:04:02.261507-08:00,1015.7459106445312,10.719406,10719.406 +10095,2025-03-08T06:04:12.984286-08:00,1015.7246704101562,10.722779,10722.779 +10096,2025-03-08T06:04:23.699513-08:00,1015.7312622070312,10.715227,10715.227 +10097,2025-03-08T06:04:34.414517-08:00,1015.7459106445312,10.715004,10715.004 +10098,2025-03-08T06:04:45.129924-08:00,1015.7425537109375,10.715407,10715.407 +10099,2025-03-08T06:04:55.848508-08:00,1015.7212524414062,10.718584,10718.584 +10100,2025-03-08T06:05:06.562533-08:00,1015.713134765625,10.714025,10714.025 +10101,2025-03-08T06:05:17.283699-08:00,1015.713134765625,10.721166,10721.166 +10102,2025-03-08T06:05:28.000513-08:00,1015.726318359375,10.716814,10716.814 +10103,2025-03-08T06:05:38.721760-08:00,1015.7047119140625,10.721247,10721.247 +10104,2025-03-08T06:05:49.442510-08:00,1015.7164306640625,10.72075,10720.75 +10105,2025-03-08T06:06:00.164808-08:00,1015.7295532226562,10.722298,10722.298 +10106,2025-03-08T06:06:10.882625-08:00,1015.7493896484375,10.717817,10717.817 +10107,2025-03-08T06:06:21.597902-08:00,1015.75439453125,10.715277,10715.277 +10108,2025-03-08T06:06:32.309732-08:00,1015.721435546875,10.71183,10711.83 +10109,2025-03-08T06:06:43.027515-08:00,1015.704833984375,10.717783,10717.783 +10110,2025-03-08T06:06:53.744687-08:00,1015.71142578125,10.717172,10717.172 +10111,2025-03-08T06:07:04.472584-08:00,1015.7098999023438,10.727897,10727.897 +10112,2025-03-08T06:07:15.183886-08:00,1015.7327880859375,10.711302,10711.302 +10113,2025-03-08T06:07:25.901510-08:00,1015.72314453125,10.717624,10717.624 +10114,2025-03-08T06:07:36.623369-08:00,1015.7246704101562,10.721859,10721.859 +10115,2025-03-08T06:07:47.329738-08:00,1015.72314453125,10.706369,10706.369 +10116,2025-03-08T06:07:58.048653-08:00,1015.7296752929688,10.718915,10718.915 +10117,2025-03-08T06:08:08.767894-08:00,1015.7098999023438,10.719241,10719.241 +10118,2025-03-08T06:08:19.479609-08:00,1015.7344360351562,10.711715,10711.715 +10119,2025-03-08T06:08:30.202509-08:00,1015.72314453125,10.7229,10722.9 +10120,2025-03-08T06:08:40.917540-08:00,1015.7312622070312,10.715031,10715.031 +10121,2025-03-08T06:08:51.640513-08:00,1015.736328125,10.722973,10722.973 +10122,2025-03-08T06:09:02.365623-08:00,1015.7510986328125,10.72511,10725.11 +10123,2025-03-08T06:09:13.080571-08:00,1015.756103515625,10.714948,10714.948 +10124,2025-03-08T06:09:23.801580-08:00,1015.7296752929688,10.721009,10721.009 +10125,2025-03-08T06:09:34.520689-08:00,1015.770751953125,10.719109,10719.109 +10126,2025-03-08T06:09:45.243310-08:00,1015.7608642578125,10.722621,10722.621 +10127,2025-03-08T06:09:55.964580-08:00,1015.74951171875,10.72127,10721.27 +10128,2025-03-08T06:10:06.679688-08:00,1015.7542114257812,10.715108,10715.108 +10129,2025-03-08T06:10:17.407775-08:00,1015.7675170898438,10.728087,10728.087 +10130,2025-03-08T06:10:28.124704-08:00,1015.7725219726562,10.716929,10716.929 +10131,2025-03-08T06:10:38.849510-08:00,1015.751220703125,10.724806,10724.806 +10132,2025-03-08T06:10:49.563352-08:00,1015.7379760742188,10.713842,10713.842 +10133,2025-03-08T06:11:00.283514-08:00,1015.7578125,10.720162,10720.162 +10134,2025-03-08T06:11:11.004802-08:00,1015.7842407226562,10.721288,10721.288 +10135,2025-03-08T06:11:21.726511-08:00,1015.7625122070312,10.721709,10721.709 +10136,2025-03-08T06:11:32.454702-08:00,1015.7842407226562,10.728191,10728.191 +10137,2025-03-08T06:11:43.172514-08:00,1015.7757568359375,10.717812,10717.812 +10138,2025-03-08T06:11:53.889358-08:00,1015.7888793945312,10.716844,10716.844 +10139,2025-03-08T06:12:04.614580-08:00,1015.760986328125,10.725222,10725.222 +10140,2025-03-08T06:12:15.333684-08:00,1015.7888793945312,10.719104,10719.104 +10141,2025-03-08T06:12:26.060910-08:00,1015.7888793945312,10.727226,10727.226 +10142,2025-03-08T06:12:36.772715-08:00,1015.8005981445312,10.711805,10711.805 +10143,2025-03-08T06:12:47.496513-08:00,1015.7742309570312,10.723798,10723.798 +10144,2025-03-08T06:12:58.214541-08:00,1015.7528686523438,10.718028,10718.028 +10145,2025-03-08T06:13:08.936699-08:00,1015.79248046875,10.722158,10722.158 +10146,2025-03-08T06:13:19.659511-08:00,1015.7909545898438,10.722812,10722.812 +10147,2025-03-08T06:13:30.377592-08:00,1015.7545166015625,10.718081,10718.081 +10148,2025-03-08T06:13:41.093512-08:00,1015.767822265625,10.71592,10715.92 +10149,2025-03-08T06:13:51.812721-08:00,1015.78759765625,10.719209,10719.209 +10150,2025-03-08T06:14:02.539510-08:00,1015.782470703125,10.726789,10726.789 +10151,2025-03-08T06:14:13.250692-08:00,1015.767822265625,10.711182,10711.182 +10152,2025-03-08T06:14:23.972514-08:00,1015.7728271484375,10.721822,10721.822 +10153,2025-03-08T06:14:34.693849-08:00,1015.776123046875,10.721335,10721.335 +10154,2025-03-08T06:14:45.415507-08:00,1015.776123046875,10.721658,10721.658 +10155,2025-03-08T06:14:56.129510-08:00,1015.776123046875,10.714003,10714.003 +10156,2025-03-08T06:15:06.849510-08:00,1015.7462768554688,10.72,10720.0 +10157,2025-03-08T06:15:17.576722-08:00,1015.76611328125,10.727212,10727.212 +10158,2025-03-08T06:15:28.286677-08:00,1015.7628784179688,10.709955,10709.955 +10159,2025-03-08T06:15:39.016513-08:00,1015.7579956054688,10.729836,10729.836 +10160,2025-03-08T06:15:49.727907-08:00,1015.76611328125,10.711394,10711.394 +10161,2025-03-08T06:16:00.449521-08:00,1015.7380981445312,10.721614,10721.614 +10162,2025-03-08T06:16:11.166408-08:00,1015.7315673828125,10.716887,10716.887 +10163,2025-03-08T06:16:21.888510-08:00,1015.72998046875,10.722102,10722.102 +10164,2025-03-08T06:16:32.612681-08:00,1015.7282104492188,10.724171,10724.171 +10165,2025-03-08T06:16:43.323587-08:00,1015.7413940429688,10.710906,10710.906 +10166,2025-03-08T06:16:54.047661-08:00,1015.7645263671875,10.724074,10724.074 +10167,2025-03-08T06:17:04.762944-08:00,1015.7564086914062,10.715283,10715.283 +10168,2025-03-08T06:17:15.484007-08:00,1015.7479858398438,10.721063,10721.063 +10169,2025-03-08T06:17:26.200710-08:00,1015.7150268554688,10.716703,10716.703 +10170,2025-03-08T06:17:36.924513-08:00,1015.7200927734375,10.723803,10723.803 +10171,2025-03-08T06:17:47.646318-08:00,1015.7463989257812,10.721805,10721.805 +10172,2025-03-08T06:17:58.360513-08:00,1015.7463989257812,10.714195,10714.195 +10173,2025-03-08T06:18:09.086706-08:00,1015.7282104492188,10.726193,10726.193 +10174,2025-03-08T06:18:19.810506-08:00,1015.7545166015625,10.7238,10723.8 +10175,2025-03-08T06:18:30.531697-08:00,1015.7251586914062,10.721191,10721.191 +10176,2025-03-08T06:18:41.250513-08:00,1015.731689453125,10.718816,10718.816 +10177,2025-03-08T06:18:51.969630-08:00,1015.7167358398438,10.719117,10719.117 +10178,2025-03-08T06:19:02.686511-08:00,1015.7119750976562,10.716881,10716.881 +10179,2025-03-08T06:19:13.408511-08:00,1015.7251586914062,10.722,10722.0 +10180,2025-03-08T06:19:24.124562-08:00,1015.7100830078125,10.716051,10716.051 +10181,2025-03-08T06:19:34.852537-08:00,1015.7251586914062,10.727975,10727.975 +10182,2025-03-08T06:19:45.573518-08:00,1015.7449340820312,10.720981,10720.981 +10183,2025-03-08T06:19:56.294534-08:00,1015.705322265625,10.721016,10721.016 +10184,2025-03-08T06:20:07.010505-08:00,1015.7298583984375,10.715971,10715.971 +10185,2025-03-08T06:20:17.727511-08:00,1015.705322265625,10.717006,10717.006 +10186,2025-03-08T06:20:28.454697-08:00,1015.7019653320312,10.727186,10727.186 +10187,2025-03-08T06:20:39.169792-08:00,1015.7349853515625,10.715095,10715.095 +10188,2025-03-08T06:20:49.896689-08:00,1015.7628784179688,10.726897,10726.897 +10189,2025-03-08T06:21:00.612680-08:00,1015.7396850585938,10.715991,10715.991 +10190,2025-03-08T06:21:11.337966-08:00,1015.733154296875,10.725286,10725.286 +10191,2025-03-08T06:21:22.055508-08:00,1015.7296752929688,10.717542,10717.542 +10192,2025-03-08T06:21:32.781595-08:00,1015.7068481445312,10.726087,10726.087 +10193,2025-03-08T06:21:43.499543-08:00,1015.7398681640625,10.717948,10717.948 +10194,2025-03-08T06:21:54.215695-08:00,1015.7217407226562,10.716152,10716.152 +10195,2025-03-08T06:22:04.930513-08:00,1015.7380981445312,10.714818,10714.818 +10196,2025-03-08T06:22:15.656674-08:00,1015.7380981445312,10.726161,10726.161 +10197,2025-03-08T06:22:26.370784-08:00,1015.7463989257812,10.71411,10714.11 +10198,2025-03-08T06:22:37.088514-08:00,1015.7631225585938,10.71773,10717.73 +10199,2025-03-08T06:22:47.811567-08:00,1015.78466796875,10.723053,10723.053 +10200,2025-03-08T06:22:58.531720-08:00,1015.8010864257812,10.720153,10720.153 +10201,2025-03-08T06:23:09.251719-08:00,1015.779541015625,10.719999,10719.999 +10202,2025-03-08T06:23:19.970510-08:00,1015.8161010742188,10.718791,10718.791 +10203,2025-03-08T06:23:30.688722-08:00,1015.7782592773438,10.718212,10718.212 +10204,2025-03-08T06:23:41.406718-08:00,1015.8045043945312,10.717996,10717.996 +10205,2025-03-08T06:23:52.129719-08:00,1015.7884521484375,10.723001,10723.001 +10206,2025-03-08T06:24:02.846512-08:00,1015.8443603515625,10.716793,10716.793 +10207,2025-03-08T06:24:13.568538-08:00,1015.7570190429688,10.722026,10722.026 +10208,2025-03-08T06:24:24.294652-08:00,1015.775390625,10.726114,10726.114 +10209,2025-03-08T06:24:35.009511-08:00,1015.763916015625,10.714859,10714.859 +10210,2025-03-08T06:24:45.724518-08:00,1015.8032836914062,10.715007,10715.007 +10211,2025-03-08T06:24:56.442675-08:00,1015.8084106445312,10.718157,10718.157 +10212,2025-03-08T06:25:07.167742-08:00,1015.786865234375,10.725067,10725.067 +10213,2025-03-08T06:25:17.879511-08:00,1015.8016967773438,10.711769,10711.769 +10214,2025-03-08T06:25:28.598776-08:00,1015.7871704101562,10.719265,10719.265 +10215,2025-03-08T06:25:39.314641-08:00,1015.7938842773438,10.715865,10715.865 +10216,2025-03-08T06:25:50.030510-08:00,1015.7955322265625,10.715869,10715.869 +10217,2025-03-08T06:26:00.756512-08:00,1015.790283203125,10.726002,10726.002 +10218,2025-03-08T06:26:11.476512-08:00,1015.7918701171875,10.72,10720.0 +10219,2025-03-08T06:26:22.196902-08:00,1015.8082885742188,10.72039,10720.39 +10220,2025-03-08T06:26:32.912510-08:00,1015.8033447265625,10.715608,10715.608 +10221,2025-03-08T06:26:43.629707-08:00,1015.7918701171875,10.717197,10717.197 +10222,2025-03-08T06:26:54.348759-08:00,1015.775634765625,10.719052,10719.052 +10223,2025-03-08T06:27:05.058513-08:00,1015.772216796875,10.709754,10709.754 +10224,2025-03-08T06:27:15.776590-08:00,1015.80517578125,10.718077,10718.077 +10225,2025-03-08T06:27:26.496509-08:00,1015.8001708984375,10.719919,10719.919 +10226,2025-03-08T06:27:37.218092-08:00,1015.8052368164062,10.721583,10721.583 +10227,2025-03-08T06:27:47.939730-08:00,1015.80029296875,10.721638,10721.638 +10228,2025-03-08T06:27:58.655688-08:00,1015.8317260742188,10.715958,10715.958 +10229,2025-03-08T06:28:09.369627-08:00,1015.8019409179688,10.713939,10713.939 +10230,2025-03-08T06:28:20.091598-08:00,1015.81005859375,10.721971,10721.971 +10231,2025-03-08T06:28:30.809723-08:00,1015.8070068359375,10.718125,10718.125 +10232,2025-03-08T06:28:41.526509-08:00,1015.8004150390625,10.716786,10716.786 +10233,2025-03-08T06:28:52.246716-08:00,1015.7919311523438,10.720207,10720.207 +10234,2025-03-08T06:29:02.970991-08:00,1015.7904052734375,10.724275,10724.275 +10235,2025-03-08T06:29:13.687086-08:00,1015.7771606445312,10.716095,10716.095 +10236,2025-03-08T06:29:24.408510-08:00,1015.7970581054688,10.721424,10721.424 +10237,2025-03-08T06:29:35.125725-08:00,1015.7954711914062,10.717215,10717.215 +10238,2025-03-08T06:29:45.853793-08:00,1015.7771606445312,10.728068,10728.068 +10239,2025-03-08T06:29:56.569730-08:00,1015.8035888671875,10.715937,10715.937 +10240,2025-03-08T06:30:07.298512-08:00,1015.7771606445312,10.728782,10728.782 +10241,2025-03-08T06:30:18.011781-08:00,1015.7589721679688,10.713269,10713.269 +10242,2025-03-08T06:30:28.743510-08:00,1015.7904052734375,10.731729,10731.729 +10243,2025-03-08T06:30:39.456686-08:00,1015.7853393554688,10.713176,10713.176 +10244,2025-03-08T06:30:50.182544-08:00,1015.815185546875,10.725858,10725.858 +10245,2025-03-08T06:31:00.904695-08:00,1015.7952880859375,10.722151,10722.151 +10246,2025-03-08T06:31:11.617765-08:00,1015.8085327148438,10.71307,10713.07 +10247,2025-03-08T06:31:22.348916-08:00,1015.8233032226562,10.731151,10731.151 +10248,2025-03-08T06:31:33.066505-08:00,1015.790283203125,10.717589,10717.589 +10249,2025-03-08T06:31:43.783281-08:00,1015.8052978515625,10.716776,10716.776 +10250,2025-03-08T06:31:54.510513-08:00,1015.7937622070312,10.727232,10727.232 +10251,2025-03-08T06:32:05.234692-08:00,1015.8184204101562,10.724179,10724.179 +10252,2025-03-08T06:32:15.947580-08:00,1015.83154296875,10.712888,10712.888 +10253,2025-03-08T06:32:26.675725-08:00,1015.8265380859375,10.728145,10728.145 +10254,2025-03-08T06:32:37.396508-08:00,1015.8412475585938,10.720783,10720.783 +10255,2025-03-08T06:32:48.112533-08:00,1015.8431396484375,10.716025,10716.025 +10256,2025-03-08T06:32:58.840514-08:00,1015.838134765625,10.727981,10727.981 +10257,2025-03-08T06:33:09.554061-08:00,1015.798583984375,10.713547,10713.547 +10258,2025-03-08T06:33:20.279682-08:00,1015.8233032226562,10.725621,10725.621 +10259,2025-03-08T06:33:31.002333-08:00,1015.7887573242188,10.722651,10722.651 +10260,2025-03-08T06:33:41.720583-08:00,1015.8445434570312,10.71825,10718.25 +10261,2025-03-08T06:33:52.438510-08:00,1015.8314208984375,10.717927,10717.927 +10262,2025-03-08T06:34:03.169677-08:00,1015.8363037109375,10.731167,10731.167 +10263,2025-03-08T06:34:13.890410-08:00,1015.8429565429688,10.720733,10720.733 +10264,2025-03-08T06:34:24.612512-08:00,1015.834716796875,10.722102,10722.102 +10265,2025-03-08T06:34:35.333678-08:00,1015.862548828125,10.721166,10721.166 +10266,2025-03-08T06:34:46.060512-08:00,1015.8512573242188,10.726834,10726.834 +10267,2025-03-08T06:34:56.780733-08:00,1015.8512573242188,10.720221,10720.221 +10268,2025-03-08T06:35:07.500520-08:00,1015.8543701171875,10.719787,10719.787 +10269,2025-03-08T06:35:18.225688-08:00,1015.8577270507812,10.725168,10725.168 +10270,2025-03-08T06:35:28.951659-08:00,1015.8577270507812,10.725971,10725.971 +10271,2025-03-08T06:35:39.673709-08:00,1015.8828125,10.72205,10722.05 +10272,2025-03-08T06:35:50.401514-08:00,1015.8548583984375,10.727805,10727.805 +10273,2025-03-08T06:36:01.119866-08:00,1015.84326171875,10.718352,10718.352 +10274,2025-03-08T06:36:11.841510-08:00,1015.8679809570312,10.721644,10721.644 +10275,2025-03-08T06:36:22.563564-08:00,1015.8446655273438,10.722054,10722.054 +10276,2025-03-08T06:36:33.288510-08:00,1015.8861083984375,10.724946,10724.946 +10277,2025-03-08T06:36:44.011725-08:00,1015.8876342773438,10.723215,10723.215 +10278,2025-03-08T06:36:54.727512-08:00,1015.8414306640625,10.715787,10715.787 +10279,2025-03-08T06:37:05.448907-08:00,1015.8712768554688,10.721395,10721.395 +10280,2025-03-08T06:37:16.171541-08:00,1015.8695068359375,10.722634,10722.634 +10281,2025-03-08T06:37:26.894699-08:00,1015.8695068359375,10.723158,10723.158 +10282,2025-03-08T06:37:37.613512-08:00,1015.8660888671875,10.718813,10718.813 +10283,2025-03-08T06:37:48.345514-08:00,1015.9140625,10.732002,10732.002 +10284,2025-03-08T06:37:59.066730-08:00,1015.895751953125,10.721216,10721.216 +10285,2025-03-08T06:38:09.787177-08:00,1015.8926391601562,10.720447,10720.447 +10286,2025-03-08T06:38:20.513619-08:00,1015.8875732421875,10.726442,10726.442 +10287,2025-03-08T06:38:31.229512-08:00,1015.890625,10.715893,10715.893 +10288,2025-03-08T06:38:41.962678-08:00,1015.8875122070312,10.733166,10733.166 +10289,2025-03-08T06:38:52.681517-08:00,1015.88232421875,10.718839,10718.839 +10290,2025-03-08T06:39:03.401282-08:00,1015.87109375,10.719765,10719.765 +10291,2025-03-08T06:39:14.125562-08:00,1015.890869140625,10.72428,10724.28 +10292,2025-03-08T06:39:24.842775-08:00,1015.8873291015625,10.717213,10717.213 +10293,2025-03-08T06:39:35.571789-08:00,1015.8759155273438,10.729014,10729.014 +10294,2025-03-08T06:39:46.286505-08:00,1015.9104614257812,10.714716,10714.716 +10295,2025-03-08T06:39:57.015714-08:00,1015.8759155273438,10.729209,10729.209 +10296,2025-03-08T06:40:07.740707-08:00,1015.8758544921875,10.724993,10724.993 +10297,2025-03-08T06:40:18.463534-08:00,1015.897216796875,10.722827,10722.827 +10298,2025-03-08T06:40:29.182665-08:00,1015.89208984375,10.719131,10719.131 +10299,2025-03-08T06:40:39.903043-08:00,1015.89208984375,10.720378,10720.378 +10300,2025-03-08T06:40:50.627724-08:00,1015.8839111328125,10.724681,10724.681 +10301,2025-03-08T06:41:01.347752-08:00,1015.89892578125,10.720028,10720.028 +10302,2025-03-08T06:41:12.073697-08:00,1015.897216796875,10.725945,10725.945 +10303,2025-03-08T06:41:22.791845-08:00,1015.9021606445312,10.718148,10718.148 +10304,2025-03-08T06:41:33.516694-08:00,1015.8920288085938,10.724849,10724.849 +10305,2025-03-08T06:41:44.235722-08:00,1015.9020385742188,10.719028,10719.028 +10306,2025-03-08T06:41:54.963226-08:00,1015.906982421875,10.727504,10727.504 +10307,2025-03-08T06:42:05.684514-08:00,1015.87548828125,10.721288,10721.288 +10308,2025-03-08T06:42:16.405891-08:00,1015.8672485351562,10.721377,10721.377 +10309,2025-03-08T06:42:27.133091-08:00,1015.9051513671875,10.7272,10727.2 +10310,2025-03-08T06:42:37.845683-08:00,1015.8822021484375,10.712592,10712.592 +10311,2025-03-08T06:42:48.575717-08:00,1015.9115600585938,10.730034,10730.034 +10312,2025-03-08T06:42:59.289678-08:00,1015.9114990234375,10.713961,10713.961 +10313,2025-03-08T06:43:10.015513-08:00,1015.90673828125,10.725835,10725.835 +10314,2025-03-08T06:43:20.736617-08:00,1015.931396484375,10.721104,10721.104 +10315,2025-03-08T06:43:31.459527-08:00,1015.9345092773438,10.72291,10722.91 +10316,2025-03-08T06:43:42.180679-08:00,1015.8967895507812,10.721152,10721.152 +10317,2025-03-08T06:43:52.906513-08:00,1015.950927734375,10.725834,10725.834 +10318,2025-03-08T06:44:03.627098-08:00,1015.90625,10.720585,10720.585 +10319,2025-03-08T06:44:14.354568-08:00,1015.9229125976562,10.72747,10727.47 +10320,2025-03-08T06:44:25.073596-08:00,1015.907958984375,10.719028,10719.028 +10321,2025-03-08T06:44:35.794722-08:00,1015.9029541015625,10.721126,10721.126 +10322,2025-03-08T06:44:46.515716-08:00,1015.9210815429688,10.720994,10720.994 +10323,2025-03-08T06:44:57.237513-08:00,1015.9243774414062,10.721797,10721.797 +10324,2025-03-08T06:45:07.963760-08:00,1015.92626953125,10.726247,10726.247 +10325,2025-03-08T06:45:18.686510-08:00,1015.9459228515625,10.72275,10722.75 +10326,2025-03-08T06:45:29.409195-08:00,1015.9148559570312,10.722685,10722.685 +10327,2025-03-08T06:45:40.132567-08:00,1015.9131469726562,10.723372,10723.372 +10328,2025-03-08T06:45:50.854603-08:00,1015.9425048828125,10.722036,10722.036 +10329,2025-03-08T06:46:01.578704-08:00,1015.9161987304688,10.724101,10724.101 +10330,2025-03-08T06:46:12.302514-08:00,1015.9210815429688,10.72381,10723.81 +10331,2025-03-08T06:46:23.029692-08:00,1015.9360961914062,10.727178,10727.178 +10332,2025-03-08T06:46:33.754529-08:00,1015.9671020507812,10.724837,10724.837 +10333,2025-03-08T06:46:44.475883-08:00,1015.955810546875,10.721354,10721.354 +10334,2025-03-08T06:46:55.207511-08:00,1015.98876953125,10.731628,10731.628 +10335,2025-03-08T06:47:05.930692-08:00,1015.955810546875,10.723181,10723.181 +10336,2025-03-08T06:47:16.653746-08:00,1015.9588012695312,10.723054,10723.054 +10337,2025-03-08T06:47:27.379537-08:00,1015.9785766601562,10.725791,10725.791 +10338,2025-03-08T06:47:38.109681-08:00,1015.9490356445312,10.730144,10730.144 +10339,2025-03-08T06:47:48.825902-08:00,1015.9820556640625,10.716221,10716.221 +10340,2025-03-08T06:47:59.558611-08:00,1015.96875,10.732709,10732.709 +10341,2025-03-08T06:48:10.272591-08:00,1015.96875,10.71398,10713.98 +10342,2025-03-08T06:48:20.996952-08:00,1015.9572143554688,10.724361,10724.361 +10343,2025-03-08T06:48:31.725699-08:00,1015.978759765625,10.728747,10728.747 +10344,2025-03-08T06:48:42.439681-08:00,1015.9656372070312,10.713982,10713.982 +10345,2025-03-08T06:48:53.160555-08:00,1015.9737548828125,10.720874,10720.874 +10346,2025-03-08T06:49:03.884710-08:00,1015.9439086914062,10.724155,10724.155 +10347,2025-03-08T06:49:14.611512-08:00,1015.9703369140625,10.726802,10726.802 +10348,2025-03-08T06:49:25.332824-08:00,1015.9656372070312,10.721312,10721.312 +10349,2025-03-08T06:49:36.049752-08:00,1015.97216796875,10.716928,10716.928 +10350,2025-03-08T06:49:46.771679-08:00,1015.9703369140625,10.721927,10721.927 +10351,2025-03-08T06:49:57.497510-08:00,1015.9768676757812,10.725831,10725.831 +10352,2025-03-08T06:49:59.891154-08:00,1015.9768676757812,2.393644,2393.644 +10353,2025-03-08T06:50:08.213698-08:00,1015.9768676757812,8.322544,8322.544 +10354,2025-03-08T06:50:18.931798-08:00,1015.9572143554688,10.7181,10718.1 +10355,2025-03-08T06:50:29.648622-08:00,1015.9703369140625,10.716824,10716.824 +10356,2025-03-08T06:50:40.372678-08:00,1015.9637451171875,10.724056,10724.056 +10357,2025-03-08T06:50:51.095882-08:00,1016.0165405273438,10.723204,10723.204 +10358,2025-03-08T06:51:01.808728-08:00,1015.9754028320312,10.712846,10712.846 +10359,2025-03-08T06:51:12.529580-08:00,1016.005126953125,10.720852,10720.852 +10360,2025-03-08T06:51:23.258513-08:00,1015.9703369140625,10.728933,10728.933 +10361,2025-03-08T06:51:33.981633-08:00,1016.0099487304688,10.72312,10723.12 +10362,2025-03-08T06:51:44.700744-08:00,1015.9835205078125,10.719111,10719.111 +10363,2025-03-08T06:51:55.414512-08:00,1015.9852294921875,10.713768,10713.768 +10364,2025-03-08T06:52:06.135272-08:00,1016.0017700195312,10.72076,10720.76 +10365,2025-03-08T06:52:16.857975-08:00,1016.0281982421875,10.722703,10722.703 +10366,2025-03-08T06:52:27.555456-08:00,1016.0231323242188,10.697481,10697.481 +10367,2025-03-08T06:52:38.278947-08:00,1016.0267333984375,10.723491,10723.491 +10368,2025-03-08T06:52:48.997707-08:00,1016.0281982421875,10.71876,10718.76 +10369,2025-03-08T06:52:59.720776-08:00,1016.0003051757812,10.723069,10723.069 +10370,2025-03-08T06:53:10.440621-08:00,1016.0150146484375,10.719845,10719.845 +10371,2025-03-08T06:53:21.166461-08:00,1016.0545043945312,10.72584,10725.84 +10372,2025-03-08T06:53:31.884588-08:00,1016.04638671875,10.718127,10718.127 +10373,2025-03-08T06:53:42.602714-08:00,1016.0281982421875,10.718126,10718.126 +10374,2025-03-08T06:53:53.321675-08:00,1016.0413818359375,10.718961,10718.961 +10375,2025-03-08T06:54:04.032648-08:00,1016.0545043945312,10.710973,10710.973 +10376,2025-03-08T06:54:14.755461-08:00,1016.0167236328125,10.722813,10722.813 +10377,2025-03-08T06:54:25.474674-08:00,1016.0596923828125,10.719213,10719.213 +10378,2025-03-08T06:54:36.193461-08:00,1016.0826416015625,10.718787,10718.787 +10379,2025-03-08T06:54:46.909637-08:00,1016.0578002929688,10.716176,10716.176 +10380,2025-03-08T06:54:57.633463-08:00,1016.0794677734375,10.723826,10723.826 +10381,2025-03-08T06:55:08.358552-08:00,1016.0643920898438,10.725089,10725.089 +10382,2025-03-08T06:55:19.077459-08:00,1016.0992431640625,10.718907,10718.907 +10383,2025-03-08T06:55:29.799079-08:00,1016.0628051757812,10.72162,10721.62 +10384,2025-03-08T06:55:40.514469-08:00,1016.0613403320312,10.71539,10715.39 +10385,2025-03-08T06:55:51.227701-08:00,1016.0546875,10.713232,10713.232 +10386,2025-03-08T06:56:01.954475-08:00,1016.0679931640625,10.726774,10726.774 +10387,2025-03-08T06:56:12.673511-08:00,1016.092529296875,10.719036,10719.036 +10388,2025-03-08T06:56:23.392464-08:00,1016.0595092773438,10.718953,10718.953 +10389,2025-03-08T06:56:32.252923-08:00,1016.0579833984375,8.860459,8860.459 +10390,2025-03-08T06:56:34.102725-08:00,1016.0711669921875,1.849802,1849.802 +10391,2025-03-08T06:56:44.823665-08:00,1016.0960083007812,10.72094,10720.94 +10392,2025-03-08T06:56:55.540461-08:00,1016.0794677734375,10.716796,10716.796 +10393,2025-03-08T06:57:06.265634-08:00,1016.0926513671875,10.725173,10725.173 +10394,2025-03-08T06:57:16.983676-08:00,1016.1043090820312,10.718042,10718.042 +10395,2025-03-08T06:57:27.697461-08:00,1016.102783203125,10.713785,10713.785 +10396,2025-03-08T06:57:38.416502-08:00,1016.1140747070312,10.719041,10719.041 +10397,2025-03-08T06:57:49.136641-08:00,1016.112548828125,10.720139,10720.139 +10398,2025-03-08T06:57:59.858661-08:00,1016.111083984375,10.72202,10722.02 +10399,2025-03-08T06:58:10.583462-08:00,1016.1157836914062,10.724801,10724.801 +10400,2025-03-08T06:58:21.305459-08:00,1016.1157836914062,10.721997,10721.997 +10401,2025-03-08T06:58:32.021491-08:00,1016.134033203125,10.716032,10716.032 +10402,2025-03-08T06:58:42.746423-08:00,1016.1390380859375,10.724932,10724.932 +10403,2025-03-08T06:58:53.464462-08:00,1016.1259155273438,10.718039,10718.039 +10404,2025-03-08T06:59:04.177636-08:00,1016.15380859375,10.713174,10713.174 +10405,2025-03-08T06:59:14.894572-08:00,1016.15234375,10.716936,10716.936 +10406,2025-03-08T06:59:25.624656-08:00,1016.158935546875,10.730084,10730.084 +10407,2025-03-08T06:59:36.334795-08:00,1016.129150390625,10.710139,10710.139 +10408,2025-03-08T06:59:47.063649-08:00,1016.1224975585938,10.728854,10728.854 +10409,2025-03-08T06:59:57.775723-08:00,1016.127685546875,10.712074,10712.074 +10410,2025-03-08T07:00:08.506813-08:00,1016.1408081054688,10.73109,10731.09 +10411,2025-03-08T07:00:19.216492-08:00,1016.1307983398438,10.709679,10709.679 +10412,2025-03-08T07:00:29.936461-08:00,1016.1455688476562,10.719969,10719.969 +10413,2025-03-08T07:00:40.655664-08:00,1016.1355590820312,10.719203,10719.203 +10414,2025-03-08T07:00:51.380043-08:00,1016.1322021484375,10.724379,10724.379 +10415,2025-03-08T07:01:02.093872-08:00,1016.1387329101562,10.713829,10713.829 +10416,2025-03-08T07:01:12.820645-08:00,1016.147216796875,10.726773,10726.773 +10417,2025-03-08T07:01:23.541128-08:00,1016.1685791015625,10.720483,10720.483 +10418,2025-03-08T07:01:34.255463-08:00,1016.1504516601562,10.714335,10714.335 +10419,2025-03-08T07:01:44.971709-08:00,1016.153564453125,10.716246,10716.246 +10420,2025-03-08T07:01:55.692527-08:00,1016.14892578125,10.720818,10720.818 +10421,2025-03-08T07:02:06.412235-08:00,1016.12060546875,10.719708,10719.708 +10422,2025-03-08T07:02:17.131464-08:00,1016.1404418945312,10.719229,10719.229 +10423,2025-03-08T07:02:27.855071-08:00,1016.152099609375,10.723607,10723.607 +10424,2025-03-08T07:02:38.569809-08:00,1016.152099609375,10.714738,10714.738 +10425,2025-03-08T07:02:49.291461-08:00,1016.1454467773438,10.721652,10721.652 +10426,2025-03-08T07:03:00.014572-08:00,1016.1439819335938,10.723111,10723.111 +10427,2025-03-08T07:03:10.731757-08:00,1016.1307983398438,10.717185,10717.185 +10428,2025-03-08T07:03:21.449644-08:00,1016.1587524414062,10.717887,10717.887 +10429,2025-03-08T07:03:32.164461-08:00,1016.1307983398438,10.714817,10714.817 +10430,2025-03-08T07:03:42.885485-08:00,1016.1307983398438,10.721024,10721.024 +10431,2025-03-08T07:03:53.602872-08:00,1016.14208984375,10.717387,10717.387 +10432,2025-03-08T07:04:04.317672-08:00,1016.1487426757812,10.7148,10714.8 +10433,2025-03-08T07:04:15.031705-08:00,1016.1637573242188,10.714033,10714.033 +10434,2025-03-08T07:04:25.748566-08:00,1016.140625,10.716861,10716.861 +10435,2025-03-08T07:04:36.475633-08:00,1016.1769409179688,10.727067,10727.067 +10436,2025-03-08T07:04:47.189678-08:00,1016.14208984375,10.714045,10714.045 +10437,2025-03-08T07:04:57.907100-08:00,1016.140625,10.717422,10717.422 +10438,2025-03-08T07:05:08.624079-08:00,1016.160400390625,10.716979,10716.979 +10439,2025-03-08T07:05:19.345463-08:00,1016.1273193359375,10.721384,10721.384 +10440,2025-03-08T07:05:30.068672-08:00,1016.1521606445312,10.723209,10723.209 +10441,2025-03-08T07:05:40.784465-08:00,1016.1158447265625,10.715793,10715.793 +10442,2025-03-08T07:05:51.501760-08:00,1016.1588134765625,10.717295,10717.295 +10443,2025-03-08T07:06:02.221459-08:00,1016.1325073242188,10.719699,10719.699 +10444,2025-03-08T07:06:12.952548-08:00,1016.1456298828125,10.731089,10731.089 +10445,2025-03-08T07:06:23.667520-08:00,1016.1654663085938,10.714972,10714.972 +10446,2025-03-08T07:06:34.386532-08:00,1016.16357421875,10.719012,10719.012 +10447,2025-03-08T07:06:45.116675-08:00,1016.1275024414062,10.730143,10730.143 +10448,2025-03-08T07:06:55.833709-08:00,1016.1867065429688,10.717034,10717.034 +10449,2025-03-08T07:07:06.554598-08:00,1016.1473388671875,10.720889,10720.889 +10450,2025-03-08T07:07:17.274256-08:00,1016.145751953125,10.719658,10719.658 +10451,2025-03-08T07:07:27.998463-08:00,1016.132568359375,10.724207,10724.207 +10452,2025-03-08T07:07:38.721628-08:00,1016.15234375,10.723165,10723.165 +10453,2025-03-08T07:07:49.446663-08:00,1016.1787719726562,10.725035,10725.035 +10454,2025-03-08T07:08:00.163638-08:00,1016.1571044921875,10.716975,10716.975 +10455,2025-03-08T07:08:10.891461-08:00,1016.1489868164062,10.727823,10727.823 +10456,2025-03-08T07:08:21.615544-08:00,1016.2000732421875,10.724083,10724.083 +10457,2025-03-08T07:08:32.337459-08:00,1016.1687622070312,10.721915,10721.915 +10458,2025-03-08T07:08:43.058899-08:00,1016.1754150390625,10.72144,10721.44 +10459,2025-03-08T07:08:53.782461-08:00,1016.2164916992188,10.723562,10723.562 +10460,2025-03-08T07:09:04.499910-08:00,1016.18701171875,10.717449,10717.449 +10461,2025-03-08T07:09:15.226528-08:00,1016.1804809570312,10.726618,10726.618 +10462,2025-03-08T07:09:25.939635-08:00,1016.2002563476562,10.713107,10713.107 +10463,2025-03-08T07:09:36.666677-08:00,1016.2347412109375,10.727042,10727.042 +10464,2025-03-08T07:09:47.379471-08:00,1016.193603515625,10.712794,10712.794 +10465,2025-03-08T07:09:58.108511-08:00,1016.193603515625,10.72904,10729.04 +10466,2025-03-08T07:10:08.823779-08:00,1016.219970703125,10.715268,10715.268 +10467,2025-03-08T07:10:19.542887-08:00,1016.219970703125,10.719108,10719.108 +10468,2025-03-08T07:10:30.266315-08:00,1016.2002563476562,10.723428,10723.428 +10469,2025-03-08T07:10:40.985462-08:00,1016.1917114257812,10.719147,10719.147 +10470,2025-03-08T07:10:51.706458-08:00,1016.2313842773438,10.720996,10720.996 +10471,2025-03-08T07:11:02.417497-08:00,1016.2100219726562,10.711039,10711.039 +10472,2025-03-08T07:11:13.138672-08:00,1016.1968994140625,10.721175,10721.175 +10473,2025-03-08T07:11:23.852768-08:00,1016.2034301757812,10.714096,10714.096 +10474,2025-03-08T07:11:34.569464-08:00,1016.1902465820312,10.716696,10716.696 +10475,2025-03-08T07:11:45.285463-08:00,1016.2100219726562,10.715999,10715.999 +10476,2025-03-08T07:11:56.009822-08:00,1016.19189453125,10.724359,10724.359 +10477,2025-03-08T07:12:06.722659-08:00,1016.185302734375,10.712837,10712.837 +10478,2025-03-08T07:12:17.441633-08:00,1016.2066650390625,10.718974,10718.974 +10479,2025-03-08T07:12:28.155465-08:00,1016.2198486328125,10.713832,10713.832 +10480,2025-03-08T07:12:38.883628-08:00,1016.21826171875,10.728163,10728.163 +10481,2025-03-08T07:12:49.598699-08:00,1016.1868896484375,10.715071,10715.071 +10482,2025-03-08T07:13:00.315484-08:00,1016.2066650390625,10.716785,10716.785 +10483,2025-03-08T07:13:11.034981-08:00,1016.21826171875,10.719497,10719.497 +10484,2025-03-08T07:13:21.761587-08:00,1016.2117309570312,10.726606,10726.606 +10485,2025-03-08T07:13:32.474755-08:00,1016.2117309570312,10.713168,10713.168 +10486,2025-03-08T07:13:43.197045-08:00,1016.198486328125,10.72229,10722.29 +10487,2025-03-08T07:13:53.914508-08:00,1016.1951293945312,10.717463,10717.463 +10488,2025-03-08T07:14:04.629463-08:00,1016.2117309570312,10.714955,10714.955 +10489,2025-03-08T07:14:15.344695-08:00,1016.2051391601562,10.715232,10715.232 +10490,2025-03-08T07:14:26.065523-08:00,1016.1885375976562,10.720828,10720.828 +10491,2025-03-08T07:14:36.789540-08:00,1016.1885375976562,10.724017,10724.017 +10492,2025-03-08T07:14:47.499467-08:00,1016.1885375976562,10.709927,10709.927 +10493,2025-03-08T07:14:58.227609-08:00,1016.2167358398438,10.728142,10728.142 +10494,2025-03-08T07:15:08.945645-08:00,1016.1951293945312,10.718036,10718.036 +10495,2025-03-08T07:15:19.658574-08:00,1016.1737670898438,10.712929,10712.929 +10496,2025-03-08T07:15:30.375666-08:00,1016.181884765625,10.717092,10717.092 +10497,2025-03-08T07:15:41.099461-08:00,1016.2017211914062,10.723795,10723.795 +10498,2025-03-08T07:15:51.813533-08:00,1016.1771850585938,10.714072,10714.072 +10499,2025-03-08T07:16:02.529464-08:00,1016.17529296875,10.715931,10715.931 +10500,2025-03-08T07:16:13.253622-08:00,1016.1903686523438,10.724158,10724.158 +10501,2025-03-08T07:16:23.970895-08:00,1016.2001342773438,10.717273,10717.273 +10502,2025-03-08T07:16:34.680457-08:00,1016.20361328125,10.709562,10709.562 +10503,2025-03-08T07:16:45.405693-08:00,1016.2101440429688,10.725236,10725.236 +10504,2025-03-08T07:16:56.126476-08:00,1016.20361328125,10.720783,10720.783 +10505,2025-03-08T07:17:06.843408-08:00,1016.22998046875,10.716932,10716.932 +10506,2025-03-08T07:17:17.560524-08:00,1016.2101440429688,10.717116,10717.116 +10507,2025-03-08T07:17:28.284547-08:00,1016.2001342773438,10.724023,10724.023 +10508,2025-03-08T07:17:39.002648-08:00,1016.2017211914062,10.718101,10718.101 +10509,2025-03-08T07:17:49.714762-08:00,1016.2346801757812,10.712114,10712.114 +10510,2025-03-08T07:18:00.434645-08:00,1016.2118530273438,10.719883,10719.883 +10511,2025-03-08T07:18:11.158523-08:00,1016.2216186523438,10.723878,10723.878 +10512,2025-03-08T07:18:21.878649-08:00,1016.228271484375,10.720126,10720.126 +10513,2025-03-08T07:18:32.594873-08:00,1016.2217407226562,10.716224,10716.224 +10514,2025-03-08T07:18:43.310483-08:00,1016.2117309570312,10.71561,10715.61 +10515,2025-03-08T07:18:54.023641-08:00,1016.2284545898438,10.713158,10713.158 +10516,2025-03-08T07:19:04.750183-08:00,1016.2529907226562,10.726542,10726.542 +10517,2025-03-08T07:19:15.460889-08:00,1016.2763061523438,10.710706,10710.706 +10518,2025-03-08T07:19:26.182525-08:00,1016.2449951171875,10.721636,10721.636 +10519,2025-03-08T07:19:36.899159-08:00,1016.2679443359375,10.716634,10716.634 +10520,2025-03-08T07:19:47.619464-08:00,1016.2449340820312,10.720305,10720.305 +10521,2025-03-08T07:19:58.335490-08:00,1016.2302856445312,10.716026,10716.026 +10522,2025-03-08T07:20:09.056638-08:00,1016.250244140625,10.721148,10721.148 +10523,2025-03-08T07:20:19.771199-08:00,1016.2764282226562,10.714561,10714.561 +10524,2025-03-08T07:20:30.494464-08:00,1016.2485961914062,10.723265,10723.265 +10525,2025-03-08T07:20:41.205590-08:00,1016.2335815429688,10.711126,10711.126 +10526,2025-03-08T07:20:51.927299-08:00,1016.2388305664062,10.721709,10721.709 +10527,2025-03-08T07:21:02.651463-08:00,1016.2650146484375,10.724164,10724.164 +10528,2025-03-08T07:21:13.370647-08:00,1016.2290649414062,10.719184,10719.184 +10529,2025-03-08T07:21:24.088700-08:00,1016.2467041015625,10.718053,10718.053 +10530,2025-03-08T07:21:34.802540-08:00,1016.273193359375,10.71384,10713.84 +10531,2025-03-08T07:21:45.524541-08:00,1016.2732543945312,10.722001,10722.001 +10532,2025-03-08T07:21:56.245267-08:00,1016.2796630859375,10.720726,10720.726 +10533,2025-03-08T07:22:06.963928-08:00,1016.2960815429688,10.718661,10718.661 +10534,2025-03-08T07:22:17.681159-08:00,1016.286376953125,10.717231,10717.231 +10535,2025-03-08T07:22:28.392489-08:00,1016.2865600585938,10.71133,10711.33 +10536,2025-03-08T07:22:35.681470-08:00,1016.2815551757812,7.288981,7288.981 +10537,2025-03-08T07:22:39.118562-08:00,1016.2617797851562,3.437092,3437.092 +10538,2025-03-08T07:22:49.836457-08:00,1016.27001953125,10.717895,10717.895 +10539,2025-03-08T07:23:00.554463-08:00,1016.2698364257812,10.718006,10718.006 +10540,2025-03-08T07:23:11.266464-08:00,1016.2535400390625,10.712001,10712.001 +10541,2025-03-08T07:23:21.984667-08:00,1016.2915649414062,10.718203,10718.203 +10542,2025-03-08T07:23:32.701673-08:00,1016.2667846679688,10.717006,10717.006 +10543,2025-03-08T07:23:43.418073-08:00,1016.2865600585938,10.7164,10716.4 +10544,2025-03-08T07:23:54.141538-08:00,1016.302978515625,10.723465,10723.465 +10545,2025-03-08T07:24:04.859600-08:00,1016.2847900390625,10.718062,10718.062 +10546,2025-03-08T07:24:15.580718-08:00,1016.27001953125,10.721118,10721.118 +10547,2025-03-08T07:24:26.298535-08:00,1016.302978515625,10.717817,10717.817 +10548,2025-03-08T07:24:37.013658-08:00,1016.29296875,10.715123,10715.123 +10549,2025-03-08T07:24:47.740463-08:00,1016.2980346679688,10.726805,10726.805 +10550,2025-03-08T07:24:58.455855-08:00,1016.28955078125,10.715392,10715.392 +10551,2025-03-08T07:25:09.172518-08:00,1016.30126953125,10.716663,10716.663 +10552,2025-03-08T07:25:19.900649-08:00,1016.2732543945312,10.728131,10728.131 +10553,2025-03-08T07:25:30.616505-08:00,1016.322509765625,10.715856,10715.856 +10554,2025-03-08T07:25:41.333745-08:00,1016.3078002929688,10.71724,10717.24 +10555,2025-03-08T07:25:52.055461-08:00,1016.3128051757812,10.721716,10721.716 +10556,2025-03-08T07:26:02.778557-08:00,1016.334228515625,10.723096,10723.096 +10557,2025-03-08T07:26:13.495460-08:00,1016.3046875,10.716903,10716.903 +10558,2025-03-08T07:26:24.215969-08:00,1016.3143920898438,10.720509,10720.509 +10559,2025-03-08T07:26:34.940703-08:00,1016.3128051757812,10.724734,10724.734 +10560,2025-03-08T07:26:45.660463-08:00,1016.335693359375,10.71976,10719.76 +10561,2025-03-08T07:26:56.387677-08:00,1016.3209228515625,10.727214,10727.214 +10562,2025-03-08T07:27:07.103459-08:00,1016.3244018554688,10.715782,10715.782 +10563,2025-03-08T07:27:17.820645-08:00,1016.296142578125,10.717186,10717.186 +10564,2025-03-08T07:27:28.535463-08:00,1016.2913818359375,10.714818,10714.818 +10565,2025-03-08T07:27:39.256691-08:00,1016.29296875,10.721228,10721.228 +10566,2025-03-08T07:27:49.981538-08:00,1016.3128051757812,10.724847,10724.847 +10567,2025-03-08T07:28:00.706741-08:00,1016.286376953125,10.725203,10725.203 +10568,2025-03-08T07:28:11.417537-08:00,1016.3177490234375,10.710796,10710.796 +10569,2025-03-08T07:28:22.140061-08:00,1016.33251953125,10.722524,10722.524 +10570,2025-03-08T07:28:32.862660-08:00,1016.3390502929688,10.722599,10722.599 +10571,2025-03-08T07:28:43.582680-08:00,1016.3556518554688,10.72002,10720.02 +10572,2025-03-08T07:28:54.293531-08:00,1016.370361328125,10.710851,10710.851 +10573,2025-03-08T07:29:05.015664-08:00,1016.345947265625,10.722133,10722.133 +10574,2025-03-08T07:29:15.728863-08:00,1016.3195190429688,10.713199,10713.199 +10575,2025-03-08T07:29:26.444458-08:00,1016.3145141601562,10.715595,10715.595 +10576,2025-03-08T07:29:37.169673-08:00,1016.34423828125,10.725215,10725.215 +10577,2025-03-08T07:29:47.876819-08:00,1016.3671264648438,10.707146,10707.146 +10578,2025-03-08T07:29:58.599465-08:00,1016.3423461914062,10.722646,10722.646 +10579,2025-03-08T07:30:09.312863-08:00,1016.334228515625,10.713398,10713.398 +10580,2025-03-08T07:30:20.034538-08:00,1016.34423828125,10.721675,10721.675 +10581,2025-03-08T07:30:30.751758-08:00,1016.3670043945312,10.71722,10717.22 +10582,2025-03-08T07:30:41.471494-08:00,1016.3836059570312,10.719736,10719.736 +10583,2025-03-08T07:30:52.187707-08:00,1016.3521728515625,10.716213,10716.213 +10584,2025-03-08T07:31:02.916639-08:00,1016.3688354492188,10.728932,10728.932 +10585,2025-03-08T07:31:13.636734-08:00,1016.3556518554688,10.720095,10720.095 +10586,2025-03-08T07:31:24.357461-08:00,1016.373779296875,10.720727,10720.727 +10587,2025-03-08T07:31:35.072836-08:00,1016.3753051757812,10.715375,10715.375 +10588,2025-03-08T07:31:45.792661-08:00,1016.3555297851562,10.719825,10719.825 +10589,2025-03-08T07:31:56.514467-08:00,1016.3787231445312,10.721806,10721.806 +10590,2025-03-08T07:32:07.226645-08:00,1016.3721923828125,10.712178,10712.178 +10591,2025-03-08T07:32:17.945673-08:00,1016.3968505859375,10.719028,10719.028 +10592,2025-03-08T07:32:28.664859-08:00,1016.3886108398438,10.719186,10719.186 +10593,2025-03-08T07:32:39.385464-08:00,1016.34716796875,10.720605,10720.605 +10594,2025-03-08T07:32:50.102483-08:00,1016.4165649414062,10.717019,10717.019 +10595,2025-03-08T07:33:00.823872-08:00,1016.4115600585938,10.721389,10721.389 +10596,2025-03-08T07:33:11.543490-08:00,1016.4215698242188,10.719618,10719.618 +10597,2025-03-08T07:33:22.264681-08:00,1016.4032592773438,10.721191,10721.191 +10598,2025-03-08T07:33:32.990483-08:00,1016.3900756835938,10.725802,10725.802 +10599,2025-03-08T07:33:43.713672-08:00,1016.4148559570312,10.723189,10723.189 +10600,2025-03-08T07:33:54.430645-08:00,1016.427978515625,10.716973,10716.973 +10601,2025-03-08T07:34:05.149464-08:00,1016.427978515625,10.718819,10718.819 +10602,2025-03-08T07:34:15.868521-08:00,1016.4015502929688,10.719057,10719.057 +10603,2025-03-08T07:34:26.591835-08:00,1016.3998413085938,10.723314,10723.314 +10604,2025-03-08T07:34:37.304458-08:00,1016.419677734375,10.712623,10712.623 +10605,2025-03-08T07:34:48.029692-08:00,1016.421875,10.725234,10725.234 +10606,2025-03-08T07:34:58.750616-08:00,1016.446533203125,10.720924,10720.924 +10607,2025-03-08T07:35:09.470863-08:00,1016.4283447265625,10.720247,10720.247 +10608,2025-03-08T07:35:20.193461-08:00,1016.4447021484375,10.722598,10722.598 +10609,2025-03-08T07:35:30.911655-08:00,1016.4216918945312,10.718194,10718.194 +10610,2025-03-08T07:35:41.631466-08:00,1016.411865234375,10.719811,10719.811 +10611,2025-03-08T07:35:52.355827-08:00,1016.411865234375,10.724361,10724.361 +10612,2025-03-08T07:36:03.071599-08:00,1016.4102172851562,10.715772,10715.772 +10613,2025-03-08T07:36:13.800680-08:00,1016.3951416015625,10.729081,10729.081 +10614,2025-03-08T07:36:24.515667-08:00,1016.3788452148438,10.714987,10714.987 +10615,2025-03-08T07:36:35.235662-08:00,1016.3690795898438,10.719995,10719.995 +10616,2025-03-08T07:36:45.962488-08:00,1016.3822021484375,10.726826,10726.826 +10617,2025-03-08T07:36:56.677490-08:00,1016.38720703125,10.715002,10715.002 +10618,2025-03-08T07:37:07.403670-08:00,1016.3917846679688,10.72618,10726.18 +10619,2025-03-08T07:37:18.121730-08:00,1016.3588256835938,10.71806,10718.06 +10620,2025-03-08T07:37:28.840457-08:00,1016.3656005859375,10.718727,10718.727 +10621,2025-03-08T07:37:39.570330-08:00,1016.35400390625,10.729873,10729.873 +10622,2025-03-08T07:37:50.292556-08:00,1016.3507690429688,10.722226,10722.226 +10623,2025-03-08T07:38:01.014602-08:00,1016.3720092773438,10.722046,10722.046 +10624,2025-03-08T07:38:11.741463-08:00,1016.39990234375,10.726861,10726.861 +10625,2025-03-08T07:38:22.461672-08:00,1016.3703002929688,10.720209,10720.209 +10626,2025-03-08T07:38:33.190858-08:00,1016.4031982421875,10.729186,10729.186 +10627,2025-03-08T07:38:43.908637-08:00,1016.362060546875,10.717779,10717.779 +10628,2025-03-08T07:38:54.630463-08:00,1016.3851318359375,10.721826,10721.826 +10629,2025-03-08T07:39:05.358568-08:00,1016.3571166992188,10.728105,10728.105 +10630,2025-03-08T07:39:16.087481-08:00,1016.362060546875,10.728913,10728.913 +10631,2025-03-08T07:39:26.804881-08:00,1016.3585815429688,10.7174,10717.4 +10632,2025-03-08T07:39:37.533569-08:00,1016.3370971679688,10.728688,10728.688 +10633,2025-03-08T07:39:48.251780-08:00,1016.355224609375,10.718211,10718.211 +10634,2025-03-08T07:39:58.969598-08:00,1016.3733520507812,10.717818,10717.818 +10635,2025-03-08T07:40:09.698556-08:00,1016.3551025390625,10.728958,10728.958 +10636,2025-03-08T07:40:20.411531-08:00,1016.3848266601562,10.712975,10712.975 +10637,2025-03-08T07:40:31.135677-08:00,1016.3650512695312,10.724146,10724.146 +10638,2025-03-08T07:40:41.859499-08:00,1016.3865356445312,10.723822,10723.822 +10639,2025-03-08T07:40:52.590463-08:00,1016.3616943359375,10.730964,10730.964 +10640,2025-03-08T07:41:03.312561-08:00,1016.3651733398438,10.722098,10722.098 +10641,2025-03-08T07:41:14.037461-08:00,1016.3700561523438,10.7249,10724.9 +10642,2025-03-08T07:41:24.757680-08:00,1016.3665771484375,10.720219,10720.219 +10643,2025-03-08T07:41:35.477516-08:00,1016.3878784179688,10.719836,10719.836 +10644,2025-03-08T07:41:46.200639-08:00,1016.3897094726562,10.723123,10723.123 +10645,2025-03-08T07:41:56.919461-08:00,1016.419189453125,10.718822,10718.822 +10646,2025-03-08T07:42:07.642645-08:00,1016.4241333007812,10.723184,10723.184 +10647,2025-03-08T07:42:18.371699-08:00,1016.3995971679688,10.729054,10729.054 +10648,2025-03-08T07:42:29.082464-08:00,1016.40625,10.710765,10710.765 +10649,2025-03-08T07:42:39.802537-08:00,1016.3929443359375,10.720073,10720.073 +10650,2025-03-08T07:42:50.523808-08:00,1016.42431640625,10.721271,10721.271 +10651,2025-03-08T07:43:01.245929-08:00,1016.39794921875,10.722121,10722.121 +10652,2025-03-08T07:43:11.971065-08:00,1016.4060668945312,10.725136,10725.136 +10653,2025-03-08T07:43:22.686566-08:00,1016.4112548828125,10.715501,10715.501 +10654,2025-03-08T07:43:33.408001-08:00,1016.3897094726562,10.721435,10721.435 +10655,2025-03-08T07:43:44.126667-08:00,1016.40625,10.718666,10718.666 +10656,2025-03-08T07:43:54.850494-08:00,1016.4011840820312,10.723827,10723.827 +10657,2025-03-08T07:44:05.571467-08:00,1016.4209594726562,10.720973,10720.973 +10658,2025-03-08T07:44:16.297825-08:00,1016.40966796875,10.726358,10726.358 +10659,2025-03-08T07:44:27.018153-08:00,1016.4390869140625,10.720328,10720.328 +10660,2025-03-08T07:44:37.741463-08:00,1016.44091796875,10.72331,10723.31 +10661,2025-03-08T07:44:48.462462-08:00,1016.4590454101562,10.720999,10720.999 +10662,2025-03-08T07:44:59.193652-08:00,1016.4307861328125,10.73119,10731.19 +10663,2025-03-08T07:45:09.917467-08:00,1016.4540405273438,10.723815,10723.815 +10664,2025-03-08T07:45:20.638669-08:00,1016.4525146484375,10.721202,10721.202 +10665,2025-03-08T07:45:31.358675-08:00,1016.4407958984375,10.720006,10720.006 +10666,2025-03-08T07:45:42.083639-08:00,1016.45556640625,10.724964,10724.964 +10667,2025-03-08T07:45:52.797465-08:00,1016.4771728515625,10.713826,10713.826 +10668,2025-03-08T07:46:03.525874-08:00,1016.4970092773438,10.728409,10728.409 +10669,2025-03-08T07:46:14.245492-08:00,1016.4721069335938,10.719618,10719.618 +10670,2025-03-08T07:46:24.969658-08:00,1016.478759765625,10.724166,10724.166 +10671,2025-03-08T07:46:35.691465-08:00,1016.5133056640625,10.721807,10721.807 +10672,2025-03-08T07:46:46.405671-08:00,1016.5066528320312,10.714206,10714.206 +10673,2025-03-08T07:46:57.127461-08:00,1016.4837646484375,10.72179,10721.79 +10674,2025-03-08T07:47:07.842494-08:00,1016.51171875,10.715033,10715.033 +10675,2025-03-08T07:47:18.568758-08:00,1016.4970092773438,10.726264,10726.264 +10676,2025-03-08T07:47:29.280456-08:00,1016.5101318359375,10.711698,10711.698 +10677,2025-03-08T07:47:40.008459-08:00,1016.5067749023438,10.728003,10728.003 +10678,2025-03-08T07:47:50.728464-08:00,1016.5365600585938,10.720005,10720.005 +10679,2025-03-08T07:48:01.443883-08:00,1016.544677734375,10.715419,10715.419 +10680,2025-03-08T07:48:12.158461-08:00,1016.5431518554688,10.714578,10714.578 +10681,2025-03-08T07:48:21.536157-08:00,1016.5431518554688,9.377696,9377.696 +10682,2025-03-08T07:48:22.879945-08:00,1016.5281372070312,1.343788,1343.788 +10683,2025-03-08T07:48:33.609667-08:00,1016.5479736328125,10.729722,10729.722 +10684,2025-03-08T07:48:44.324868-08:00,1016.5742797851562,10.715201,10715.201 +10685,2025-03-08T07:48:55.040497-08:00,1016.5742797851562,10.715629,10715.629 +10686,2025-03-08T07:49:05.766190-08:00,1016.549560546875,10.725693,10725.693 +10687,2025-03-08T07:49:16.487868-08:00,1016.6007080078125,10.721678,10721.678 +10688,2025-03-08T07:49:27.203463-08:00,1016.5413818359375,10.715595,10715.595 +10689,2025-03-08T07:49:37.931538-08:00,1016.5778198242188,10.728075,10728.075 +10690,2025-03-08T07:49:48.652757-08:00,1016.5465698242188,10.721219,10721.219 +10691,2025-03-08T07:49:59.373501-08:00,1016.561279296875,10.720744,10720.744 +10692,2025-03-08T07:50:10.094461-08:00,1016.5628051757812,10.72096,10720.96 +10693,2025-03-08T07:50:20.809469-08:00,1016.5465698242188,10.715008,10715.008 +10694,2025-03-08T07:50:31.526540-08:00,1016.55126953125,10.717071,10717.071 +10695,2025-03-08T07:50:42.251960-08:00,1016.5663452148438,10.72542,10725.42 +10696,2025-03-08T07:50:52.967115-08:00,1016.5861206054688,10.715155,10715.155 +10697,2025-03-08T07:51:03.693602-08:00,1016.595947265625,10.726487,10726.487 +10698,2025-03-08T07:51:14.405672-08:00,1016.56298828125,10.71207,10712.07 +10699,2025-03-08T07:51:25.134867-08:00,1016.595947265625,10.729195,10729.195 +10700,2025-03-08T07:51:35.855465-08:00,1016.5761108398438,10.720598,10720.598 +10701,2025-03-08T07:51:46.573637-08:00,1016.6141967773438,10.718172,10718.172 +10702,2025-03-08T07:51:57.291557-08:00,1016.5745239257812,10.71792,10717.92 +10703,2025-03-08T07:52:08.005462-08:00,1016.5828247070312,10.713905,10713.905 +10704,2025-03-08T07:52:18.728475-08:00,1016.57275390625,10.723013,10723.013 +10705,2025-03-08T07:52:29.450509-08:00,1016.5894775390625,10.722034,10722.034 +10706,2025-03-08T07:52:40.167335-08:00,1016.604248046875,10.716826,10716.826 +10707,2025-03-08T07:52:50.888906-08:00,1016.5975952148438,10.721571,10721.571 +10708,2025-03-08T07:53:01.620064-08:00,1016.605712890625,10.731158,10731.158 +10709,2025-03-08T07:53:12.344580-08:00,1016.6091918945312,10.724516,10724.516 +10710,2025-03-08T07:53:23.063932-08:00,1016.5894775390625,10.719352,10719.352 +10711,2025-03-08T07:53:33.775054-08:00,1016.6026611328125,10.711122,10711.122 +10712,2025-03-08T07:53:44.504124-08:00,1016.59423828125,10.72907,10729.07 +10713,2025-03-08T07:53:55.220903-08:00,1016.6091918945312,10.716779,10716.779 +10714,2025-03-08T07:54:05.939936-08:00,1016.5861206054688,10.719033,10719.033 +10715,2025-03-08T07:54:16.660910-08:00,1016.614013671875,10.720974,10720.974 +10716,2025-03-08T07:54:27.390055-08:00,1016.5861206054688,10.729145,10729.145 +10717,2025-03-08T07:54:38.111156-08:00,1016.627197265625,10.721101,10721.101 +10718,2025-03-08T07:54:48.827507-08:00,1016.6058349609375,10.716351,10716.351 +10719,2025-03-08T07:54:59.551115-08:00,1016.59423828125,10.723608,10723.608 +10720,2025-03-08T07:55:10.280909-08:00,1016.5861206054688,10.729794,10729.794 +10721,2025-03-08T07:55:20.999930-08:00,1016.5894775390625,10.719021,10719.021 +10722,2025-03-08T07:55:31.716749-08:00,1016.5992431640625,10.716819,10716.819 +10723,2025-03-08T07:55:42.441907-08:00,1016.614013671875,10.725158,10725.158 +10724,2025-03-08T07:55:53.158912-08:00,1016.59423828125,10.717005,10717.005 +10725,2025-03-08T07:56:03.886270-08:00,1016.6026611328125,10.727358,10727.358 +10726,2025-03-08T07:56:14.604540-08:00,1016.5794677734375,10.71827,10718.27 +10727,2025-03-08T07:56:25.334402-08:00,1016.6058349609375,10.729862,10729.862 +10728,2025-03-08T07:56:36.048905-08:00,1016.5926513671875,10.714503,10714.503 +10729,2025-03-08T07:56:46.764119-08:00,1016.62060546875,10.715214,10715.214 +10730,2025-03-08T07:56:57.489138-08:00,1016.5794677734375,10.725019,10725.019 +10731,2025-03-08T07:57:08.206910-08:00,1016.614013671875,10.717772,10717.772 +10732,2025-03-08T07:57:18.935158-08:00,1016.627197265625,10.728248,10728.248 +10733,2025-03-08T07:57:29.648907-08:00,1016.6256103515625,10.713749,10713.749 +10734,2025-03-08T07:57:40.371114-08:00,1016.60400390625,10.722207,10722.207 +10735,2025-03-08T07:57:51.096062-08:00,1016.63037109375,10.724948,10724.948 +10736,2025-03-08T07:58:01.814093-08:00,1016.650146484375,10.718031,10718.031 +10737,2025-03-08T07:58:12.533942-08:00,1016.63037109375,10.719849,10719.849 +10738,2025-03-08T07:58:23.253090-08:00,1016.6256103515625,10.719148,10719.148 +10739,2025-03-08T07:58:33.971068-08:00,1016.6221923828125,10.717978,10717.978 +10740,2025-03-08T07:58:44.691931-08:00,1016.63037109375,10.720863,10720.863 +10741,2025-03-08T07:58:55.417924-08:00,1016.5958862304688,10.725993,10725.993 +10742,2025-03-08T07:59:06.134328-08:00,1016.6288452148438,10.716404,10716.404 +10743,2025-03-08T07:59:16.852111-08:00,1016.6156005859375,10.717783,10717.783 +10744,2025-03-08T07:59:27.570906-08:00,1016.6288452148438,10.718795,10718.795 +10745,2025-03-08T07:59:38.290956-08:00,1016.6090698242188,10.72005,10720.05 +10746,2025-03-08T07:59:49.008910-08:00,1016.6122436523438,10.717954,10717.954 +10747,2025-03-08T07:59:59.737099-08:00,1016.635498046875,10.728189,10728.189 +10748,2025-03-08T08:00:10.455907-08:00,1016.607177734375,10.718808,10718.808 +10749,2025-03-08T08:00:21.169100-08:00,1016.61376953125,10.713193,10713.193 +10750,2025-03-08T08:00:31.895110-08:00,1016.64013671875,10.72601,10726.01 +10751,2025-03-08T08:00:42.610362-08:00,1016.593994140625,10.715252,10715.252 +10752,2025-03-08T08:00:53.333030-08:00,1016.6221923828125,10.722668,10722.668 +10753,2025-03-08T08:01:04.060080-08:00,1016.615478515625,10.72705,10727.05 +10754,2025-03-08T08:01:14.781907-08:00,1016.6107177734375,10.721827,10721.827 +10755,2025-03-08T08:01:25.494355-08:00,1016.6370849609375,10.712448,10712.448 +10756,2025-03-08T08:01:36.219096-08:00,1016.6188354492188,10.724741,10724.741 +10757,2025-03-08T08:01:46.937115-08:00,1016.6386108398438,10.718019,10718.019 +10758,2025-03-08T08:01:57.653908-08:00,1016.6173706054688,10.716793,10716.793 +10759,2025-03-08T08:02:08.372942-08:00,1016.6503295898438,10.719034,10719.034 +10760,2025-03-08T08:02:19.091098-08:00,1016.65185546875,10.718156,10718.156 +10761,2025-03-08T08:02:29.816240-08:00,1016.6304931640625,10.725142,10725.142 +10762,2025-03-08T08:02:40.535909-08:00,1016.63525390625,10.719669,10719.669 +10763,2025-03-08T08:02:51.245907-08:00,1016.6304931640625,10.709998,10709.998 +10764,2025-03-08T08:03:01.977752-08:00,1016.6484375,10.731845,10731.845 +10765,2025-03-08T08:03:12.693905-08:00,1016.615478515625,10.716153,10716.153 +10766,2025-03-08T08:03:23.415131-08:00,1016.6304931640625,10.721226,10721.226 +10767,2025-03-08T08:03:34.126150-08:00,1016.6220092773438,10.711019,10711.019 +10768,2025-03-08T08:03:44.854823-08:00,1016.60888671875,10.728673,10728.673 +10769,2025-03-08T08:03:55.576970-08:00,1016.6403198242188,10.722147,10722.147 +10770,2025-03-08T08:04:06.293931-08:00,1016.623779296875,10.716961,10716.961 +10771,2025-03-08T08:04:17.008091-08:00,1016.6534423828125,10.71416,10714.16 +10772,2025-03-08T08:04:27.736176-08:00,1016.6156005859375,10.728085,10728.085 +10773,2025-03-08T08:04:38.455902-08:00,1016.6171264648438,10.719726,10719.726 +10774,2025-03-08T08:04:49.170075-08:00,1016.6387329101562,10.714173,10714.173 +10775,2025-03-08T08:04:59.889087-08:00,1016.6519775390625,10.719012,10719.012 +10776,2025-03-08T08:05:10.608118-08:00,1016.6369018554688,10.719031,10719.031 +10777,2025-03-08T08:05:21.328148-08:00,1016.6303100585938,10.72003,10720.03 +10778,2025-03-08T08:05:32.050911-08:00,1016.6221923828125,10.722763,10722.763 +10779,2025-03-08T08:05:42.769163-08:00,1016.6338500976562,10.718252,10718.252 +10780,2025-03-08T08:05:53.486120-08:00,1016.6617431640625,10.716957,10716.957 +10781,2025-03-08T08:06:04.210125-08:00,1016.62060546875,10.724005,10724.005 +10782,2025-03-08T08:06:14.928048-08:00,1016.6419677734375,10.717923,10717.923 +10783,2025-03-08T08:06:25.641910-08:00,1016.6632690429688,10.713862,10713.862 +10784,2025-03-08T08:06:36.358301-08:00,1016.6338500976562,10.716391,10716.391 +10785,2025-03-08T08:06:47.077965-08:00,1016.6338500976562,10.719664,10719.664 +10786,2025-03-08T08:06:57.807511-08:00,1016.6171875,10.729546,10729.546 +10787,2025-03-08T08:07:08.528117-08:00,1016.6517333984375,10.720606,10720.606 +10788,2025-03-08T08:07:19.247104-08:00,1016.6765747070312,10.718987,10718.987 +10789,2025-03-08T08:07:29.964158-08:00,1016.6583862304688,10.717054,10717.054 +10790,2025-03-08T08:07:40.691016-08:00,1016.6502075195312,10.726858,10726.858 +10791,2025-03-08T08:07:51.409123-08:00,1016.6568603515625,10.718107,10718.107 +10792,2025-03-08T08:08:02.132091-08:00,1016.6765747070312,10.722968,10722.968 +10793,2025-03-08T08:08:12.855911-08:00,1016.661865234375,10.72382,10723.82 +10794,2025-03-08T08:08:23.574087-08:00,1016.6634521484375,10.718176,10718.176 +10795,2025-03-08T08:08:34.299407-08:00,1016.66845703125,10.72532,10725.32 +10796,2025-03-08T08:08:45.019122-08:00,1016.68017578125,10.719715,10719.715 +10797,2025-03-08T08:08:55.733912-08:00,1016.673583984375,10.71479,10714.79 +10798,2025-03-08T08:09:06.450910-08:00,1016.675048828125,10.716998,10716.998 +10799,2025-03-08T08:09:17.169212-08:00,1016.6882934570312,10.718302,10718.302 +10800,2025-03-08T08:09:27.895021-08:00,1016.673583984375,10.725809,10725.809 +10801,2025-03-08T08:09:38.619932-08:00,1016.684814453125,10.724911,10724.911 +10802,2025-03-08T08:09:49.331956-08:00,1016.699951171875,10.712024,10712.024 +10803,2025-03-08T08:10:00.047297-08:00,1016.68994140625,10.715341,10715.341 +10804,2025-03-08T08:10:10.772909-08:00,1016.684814453125,10.725612,10725.612 +10805,2025-03-08T08:10:21.496692-08:00,1016.6980590820312,10.723783,10723.783 +10806,2025-03-08T08:10:32.207019-08:00,1016.696533203125,10.710327,10710.327 +10807,2025-03-08T08:10:42.932118-08:00,1016.670166015625,10.725099,10725.099 +10808,2025-03-08T08:10:53.659007-08:00,1016.7244262695312,10.726889,10726.889 +10809,2025-03-08T08:11:04.384256-08:00,1016.7081298828125,10.725249,10725.249 +10810,2025-03-08T08:11:15.095524-08:00,1016.7295532226562,10.711268,10711.268 +10811,2025-03-08T08:11:25.823082-08:00,1016.71630859375,10.727558,10727.558 +10812,2025-03-08T08:11:36.533048-08:00,1016.7147827148438,10.709966,10709.966 +10813,2025-03-08T08:11:47.252917-08:00,1016.732666015625,10.719869,10719.869 +10814,2025-03-08T08:11:57.982113-08:00,1016.7459106445312,10.729196,10729.196 +10815,2025-03-08T08:12:08.695928-08:00,1016.736083984375,10.713815,10713.815 +10816,2025-03-08T08:12:19.421103-08:00,1016.73779296875,10.725175,10725.175 +10817,2025-03-08T08:12:30.138907-08:00,1016.72607421875,10.717804,10717.804 +10818,2025-03-08T08:12:40.861119-08:00,1016.7164306640625,10.722212,10722.212 +10819,2025-03-08T08:12:51.582982-08:00,1016.73779296875,10.721863,10721.863 +10820,2025-03-08T08:13:02.293309-08:00,1016.73779296875,10.710327,10710.327 +10821,2025-03-08T08:13:13.013913-08:00,1016.7656860351562,10.720604,10720.604 +10822,2025-03-08T08:13:23.741144-08:00,1016.7362670898438,10.727231,10727.231 +10823,2025-03-08T08:13:34.457907-08:00,1016.7230224609375,10.716763,10716.763 +10824,2025-03-08T08:13:45.177109-08:00,1016.734375,10.719202,10719.202 +10825,2025-03-08T08:13:55.901938-08:00,1016.7460327148438,10.724829,10724.829 +10826,2025-03-08T08:14:06.621303-08:00,1016.7460327148438,10.719365,10719.365 +10827,2025-03-08T08:14:17.336305-08:00,1016.7510986328125,10.715002,10715.002 +10828,2025-03-08T08:14:28.060752-08:00,1016.74609375,10.724447,10724.447 +10829,2025-03-08T08:14:38.775910-08:00,1016.7527465820312,10.715158,10715.158 +10830,2025-03-08T08:14:49.494910-08:00,1016.7706298828125,10.719,10719.0 +10831,2025-03-08T08:15:00.215313-08:00,1016.7823486328125,10.720403,10720.403 +10832,2025-03-08T08:15:10.932670-08:00,1016.744384765625,10.717357,10717.357 +10833,2025-03-08T08:15:21.652088-08:00,1016.7394409179688,10.719418,10719.418 +10834,2025-03-08T08:15:32.368387-08:00,1016.7312622070312,10.716299,10716.299 +10835,2025-03-08T08:15:43.090070-08:00,1016.7542724609375,10.721683,10721.683 +10836,2025-03-08T08:15:53.810111-08:00,1016.751220703125,10.720041,10720.041 +10837,2025-03-08T08:16:04.535078-08:00,1016.7396850585938,10.724967,10724.967 +10838,2025-03-08T08:16:15.248906-08:00,1016.7445068359375,10.713828,10713.828 +10839,2025-03-08T08:16:25.972883-08:00,1016.7232666015625,10.723977,10723.977 +10840,2025-03-08T08:16:36.693119-08:00,1016.7676391601562,10.720236,10720.236 +10841,2025-03-08T08:16:47.412038-08:00,1016.777587890625,10.718919,10718.919 +10842,2025-03-08T08:16:58.125617-08:00,1016.75634765625,10.713579,10713.579 +10843,2025-03-08T08:17:08.846910-08:00,1016.7413940429688,10.721293,10721.293 +10844,2025-03-08T08:17:19.568943-08:00,1016.7298583984375,10.722033,10722.033 +10845,2025-03-08T08:17:30.285114-08:00,1016.7528686523438,10.716171,10716.171 +10846,2025-03-08T08:17:40.999789-08:00,1016.73486328125,10.714675,10714.675 +10847,2025-03-08T08:17:51.721573-08:00,1016.71142578125,10.721784,10721.784 +10848,2025-03-08T08:18:02.437035-08:00,1016.7510986328125,10.715462,10715.462 +10849,2025-03-08T08:18:13.157087-08:00,1016.7577514648438,10.720052,10720.052 +10850,2025-03-08T08:18:23.876159-08:00,1016.7625122070312,10.719072,10719.072 +10851,2025-03-08T08:18:34.589111-08:00,1016.7823486328125,10.712952,10712.952 +10852,2025-03-08T08:18:45.316907-08:00,1016.7626342773438,10.727796,10727.796 +10853,2025-03-08T08:18:56.030066-08:00,1016.7891235351562,10.713159,10713.159 +10854,2025-03-08T08:19:06.743246-08:00,1016.8054809570312,10.71318,10713.18 +10855,2025-03-08T08:19:17.462907-08:00,1016.7938842773438,10.719661,10719.661 +10856,2025-03-08T08:19:28.189098-08:00,1016.8153076171875,10.726191,10726.191 +10857,2025-03-08T08:19:38.901940-08:00,1016.770751953125,10.712842,10712.842 +10858,2025-03-08T08:19:49.618289-08:00,1016.7940673828125,10.716349,10716.349 +10859,2025-03-08T08:20:00.333484-08:00,1016.7906494140625,10.715195,10715.195 +10860,2025-03-08T08:20:11.055575-08:00,1016.788818359375,10.722091,10722.091 +10861,2025-03-08T08:20:21.774910-08:00,1016.79736328125,10.719335,10719.335 +10862,2025-03-08T08:20:32.485909-08:00,1016.8054809570312,10.710999,10710.999 +10863,2025-03-08T08:20:43.213091-08:00,1016.8186645507812,10.727182,10727.182 +10864,2025-03-08T08:20:53.923906-08:00,1016.8284301757812,10.710815,10710.815 +10865,2025-03-08T08:21:04.642094-08:00,1016.826904296875,10.718188,10718.188 +10866,2025-03-08T08:21:15.361056-08:00,1016.8121948242188,10.718962,10718.962 +10867,2025-03-08T08:21:26.083946-08:00,1016.8087768554688,10.72289,10722.89 +10868,2025-03-08T08:21:36.799936-08:00,1016.8284912109375,10.71599,10715.99 +10869,2025-03-08T08:21:47.522932-08:00,1016.8218994140625,10.722996,10722.996 +10870,2025-03-08T08:21:58.236251-08:00,1016.8350830078125,10.713319,10713.319 +10871,2025-03-08T08:22:08.954194-08:00,1016.853271484375,10.717943,10717.943 +10872,2025-03-08T08:22:19.670085-08:00,1016.8467407226562,10.715891,10715.891 +10873,2025-03-08T08:22:30.393013-08:00,1016.8599243164062,10.722928,10722.928 +10874,2025-03-08T08:22:41.113088-08:00,1016.8599243164062,10.720075,10720.075 +10875,2025-03-08T08:22:51.833111-08:00,1016.8513793945312,10.720023,10720.023 +10876,2025-03-08T08:23:02.553645-08:00,1016.8828125,10.720534,10720.534 +10877,2025-03-08T08:23:13.268200-08:00,1016.8613891601562,10.714555,10714.555 +10878,2025-03-08T08:23:23.993007-08:00,1016.8796997070312,10.724807,10724.807 +10879,2025-03-08T08:23:34.714902-08:00,1016.8746948242188,10.721895,10721.895 +10880,2025-03-08T08:23:45.429907-08:00,1016.86962890625,10.715005,10715.005 +10881,2025-03-08T08:23:56.143093-08:00,1016.8828125,10.713186,10713.186 +10882,2025-03-08T08:24:06.866111-08:00,1016.91259765625,10.723018,10723.018 +10883,2025-03-08T08:24:17.591940-08:00,1016.88623046875,10.725829,10725.829 +10884,2025-03-08T08:24:28.310909-08:00,1016.9140625,10.718969,10718.969 +10885,2025-03-08T08:24:39.023087-08:00,1016.8892822265625,10.712178,10712.178 +10886,2025-03-08T08:24:49.744908-08:00,1016.8959350585938,10.721821,10721.821 +10887,2025-03-08T08:25:00.466989-08:00,1016.9059448242188,10.722081,10722.081 +10888,2025-03-08T08:25:11.186937-08:00,1016.884521484375,10.719948,10719.948 +10889,2025-03-08T08:25:21.908995-08:00,1016.90087890625,10.722058,10722.058 +10890,2025-03-08T08:25:32.632139-08:00,1016.8895263671875,10.723144,10723.144 +10891,2025-03-08T08:25:40.873750-08:00,1016.9093627929688,8.241611,8241.611 +10892,2025-03-08T08:25:43.343076-08:00,1016.8976440429688,2.469326,2469.326 +10893,2025-03-08T08:25:54.073907-08:00,1016.8992309570312,10.730831,10730.831 +10894,2025-03-08T08:26:04.797438-08:00,1016.8829956054688,10.723531,10723.531 +10895,2025-03-08T08:26:15.510907-08:00,1016.9026489257812,10.713469,10713.469 +10896,2025-03-08T08:26:26.227594-08:00,1016.8976440429688,10.716687,10716.687 +10897,2025-03-08T08:26:36.946081-08:00,1016.8878784179688,10.718487,10718.487 +10898,2025-03-08T08:26:47.674906-08:00,1016.89453125,10.728825,10728.825 +10899,2025-03-08T08:26:58.392959-08:00,1016.8796997070312,10.718053,10718.053 +10900,2025-03-08T08:27:09.115385-08:00,1016.9142456054688,10.722426,10722.426 +10901,2025-03-08T08:27:19.826627-08:00,1016.9025268554688,10.711242,10711.242 +10902,2025-03-08T08:27:30.549062-08:00,1016.91259765625,10.722435,10722.435 +10903,2025-03-08T08:27:41.268797-08:00,1016.8943481445312,10.719735,10719.735 +10904,2025-03-08T08:27:51.985935-08:00,1016.9093627929688,10.717138,10717.138 +10905,2025-03-08T08:28:02.705112-08:00,1016.9109497070312,10.719177,10719.177 +10906,2025-03-08T08:28:13.420910-08:00,1016.9043579101562,10.715798,10715.798 +10907,2025-03-08T08:28:24.134009-08:00,1016.887939453125,10.713099,10713.099 +10908,2025-03-08T08:28:34.856078-08:00,1016.8764038085938,10.722069,10722.069 +10909,2025-03-08T08:28:45.572200-08:00,1016.9356079101562,10.716122,10716.122 +10910,2025-03-08T08:28:56.292493-08:00,1016.9107666015625,10.720293,10720.293 +10911,2025-03-08T08:29:07.014907-08:00,1016.8976440429688,10.722414,10722.414 +10912,2025-03-08T08:29:17.732983-08:00,1016.8944702148438,10.718076,10718.076 +10913,2025-03-08T08:29:28.450908-08:00,1016.8993530273438,10.717925,10717.925 +10914,2025-03-08T08:29:39.177945-08:00,1016.8993530273438,10.727037,10727.037 +10915,2025-03-08T08:29:49.899910-08:00,1016.916015625,10.721965,10721.965 +10916,2025-03-08T08:30:00.613112-08:00,1016.9093627929688,10.713202,10713.202 +10917,2025-03-08T08:30:11.336910-08:00,1016.8978271484375,10.723798,10723.798 +10918,2025-03-08T08:30:22.052910-08:00,1016.8814086914062,10.716,10716.0 +10919,2025-03-08T08:30:32.780122-08:00,1016.89111328125,10.727212,10727.212 +10920,2025-03-08T08:30:43.496121-08:00,1016.8798217773438,10.715999,10715.999 +10921,2025-03-08T08:30:54.223909-08:00,1016.9061889648438,10.727788,10727.788 +10922,2025-03-08T08:31:04.942976-08:00,1016.8814086914062,10.719067,10719.067 +10923,2025-03-08T08:31:15.661908-08:00,1016.8844604492188,10.718932,10718.932 +10924,2025-03-08T08:31:26.380010-08:00,1016.8995361328125,10.718102,10718.102 +10925,2025-03-08T08:31:37.111910-08:00,1016.8928833007812,10.7319,10731.9 +10926,2025-03-08T08:31:47.835309-08:00,1016.8401489257812,10.723399,10723.399 +10927,2025-03-08T08:31:58.552078-08:00,1016.889404296875,10.716769,10716.769 +10928,2025-03-08T08:32:09.281929-08:00,1016.9009399414062,10.729851,10729.851 +10929,2025-03-08T08:32:20.006338-08:00,1016.9031372070312,10.724409,10724.409 +10930,2025-03-08T08:32:30.727053-08:00,1016.8767700195312,10.720715,10720.715 +10931,2025-03-08T08:32:41.449914-08:00,1016.9081420898438,10.722861,10722.861 +10932,2025-03-08T08:32:52.168112-08:00,1016.912841796875,10.718198,10718.198 +10933,2025-03-08T08:33:02.894260-08:00,1016.8685913085938,10.726148,10726.148 +10934,2025-03-08T08:33:13.611933-08:00,1016.8817138671875,10.717673,10717.673 +10935,2025-03-08T08:33:24.337406-08:00,1016.8898315429688,10.725473,10725.473 +10936,2025-03-08T08:33:35.055905-08:00,1016.9210815429688,10.718499,10718.499 +10937,2025-03-08T08:33:45.774121-08:00,1016.8981323242188,10.718216,10718.216 +10938,2025-03-08T08:33:56.493434-08:00,1016.8931274414062,10.719313,10719.313 +10939,2025-03-08T08:34:07.211975-08:00,1016.8864135742188,10.718541,10718.541 +10940,2025-03-08T08:34:17.931010-08:00,1016.89794921875,10.719035,10719.035 +10941,2025-03-08T08:34:28.649096-08:00,1016.92431640625,10.718086,10718.086 +10942,2025-03-08T08:34:39.369920-08:00,1016.904541015625,10.720824,10720.824 +10943,2025-03-08T08:34:50.084104-08:00,1016.896240234375,10.714184,10714.184 +10944,2025-03-08T08:35:00.811908-08:00,1016.8717041015625,10.727804,10727.804 +10945,2025-03-08T08:35:11.519968-08:00,1016.9177856445312,10.70806,10708.06 +10946,2025-03-08T08:35:22.239032-08:00,1016.8929443359375,10.719064,10719.064 +10947,2025-03-08T08:35:32.962109-08:00,1016.8583374023438,10.723077,10723.077 +10948,2025-03-08T08:35:43.681009-08:00,1016.9013061523438,10.7189,10718.9 +10949,2025-03-08T08:35:54.404978-08:00,1016.9159545898438,10.723969,10723.969 +10950,2025-03-08T08:36:05.128134-08:00,1016.93408203125,10.723156,10723.156 +10951,2025-03-08T08:36:15.842907-08:00,1016.930908203125,10.714773,10714.773 +10952,2025-03-08T08:36:26.565103-08:00,1016.9226684570312,10.722196,10722.196 +10953,2025-03-08T08:36:37.286685-08:00,1016.92578125,10.721582,10721.582 +10954,2025-03-08T08:36:48.009090-08:00,1016.9325561523438,10.722405,10722.405 +10955,2025-03-08T08:36:58.722907-08:00,1016.9209594726562,10.713817,10713.817 +10956,2025-03-08T08:37:09.440929-08:00,1016.93408203125,10.718022,10718.022 +10957,2025-03-08T08:37:20.153944-08:00,1016.935546875,10.713015,10713.015 +10958,2025-03-08T08:37:30.875139-08:00,1016.9439086914062,10.721195,10721.195 +10959,2025-03-08T08:37:41.595118-08:00,1016.8926391601562,10.719979,10719.979 +10960,2025-03-08T08:37:52.318907-08:00,1016.9107666015625,10.723789,10723.789 +10961,2025-03-08T08:38:03.038086-08:00,1016.9060668945312,10.719179,10719.179 +10962,2025-03-08T08:38:13.761122-08:00,1016.8959350585938,10.723036,10723.036 +10963,2025-03-08T08:38:24.478118-08:00,1016.9389038085938,10.716996,10716.996 +10964,2025-03-08T08:38:35.193069-08:00,1016.924072265625,10.714951,10714.951 +10965,2025-03-08T08:38:45.912907-08:00,1016.920654296875,10.719838,10719.838 +10966,2025-03-08T08:38:56.636084-08:00,1016.9042358398438,10.723177,10723.177 +10967,2025-03-08T08:39:07.345116-08:00,1016.9042358398438,10.709032,10709.032 +10968,2025-03-08T08:39:18.075159-08:00,1016.9273681640625,10.730043,10730.043 +10969,2025-03-08T08:39:28.790974-08:00,1016.8959350585938,10.715815,10715.815 +10970,2025-03-08T08:39:39.504102-08:00,1016.904052734375,10.713128,10713.128 +10971,2025-03-08T08:39:50.230752-08:00,1016.9291381835938,10.72665,10726.65 +10972,2025-03-08T08:40:00.945475-08:00,1016.8976440429688,10.714723,10714.723 +10973,2025-03-08T08:40:11.673909-08:00,1016.9060668945312,10.728434,10728.434 +10974,2025-03-08T08:40:22.392103-08:00,1016.9076538085938,10.718194,10718.194 +10975,2025-03-08T08:40:33.109024-08:00,1016.8731079101562,10.716921,10716.921 +10976,2025-03-08T08:40:43.824904-08:00,1016.8878784179688,10.71588,10715.88 +10977,2025-03-08T08:40:54.543386-08:00,1016.8828125,10.718482,10718.482 +10978,2025-03-08T08:41:05.271030-08:00,1016.904541015625,10.727644,10727.644 +10979,2025-03-08T08:41:15.983558-08:00,1016.8847045898438,10.712528,10712.528 +10980,2025-03-08T08:41:26.710902-08:00,1016.8978881835938,10.727344,10727.344 +10981,2025-03-08T08:41:37.426928-08:00,1016.919189453125,10.716026,10716.026 +10982,2025-03-08T08:41:48.144961-08:00,1016.8993530273438,10.718033,10718.033 +10983,2025-03-08T08:41:58.862115-08:00,1016.9141235351562,10.717154,10717.154 +10984,2025-03-08T08:42:09.578290-08:00,1016.9207763671875,10.716175,10716.175 +10985,2025-03-08T08:42:20.311079-08:00,1016.92578125,10.732789,10732.789 +10986,2025-03-08T08:42:31.028685-08:00,1016.9176635742188,10.717606,10717.606 +10987,2025-03-08T08:42:41.742907-08:00,1016.9176635742188,10.714222,10714.222 +10988,2025-03-08T08:42:52.465227-08:00,1016.9522094726562,10.72232,10722.32 +10989,2025-03-08T08:43:03.176970-08:00,1016.9308471679688,10.711743,10711.743 +10990,2025-03-08T08:43:13.907910-08:00,1016.9324340820312,10.73094,10730.94 +10991,2025-03-08T08:43:24.620450-08:00,1016.9324340820312,10.71254,10712.54 +10992,2025-03-08T08:43:35.342125-08:00,1016.919189453125,10.721675,10721.675 +10993,2025-03-08T08:43:46.061939-08:00,1016.915771484375,10.719814,10719.814 +10994,2025-03-08T08:43:56.780090-08:00,1016.944091796875,10.718151,10718.151 +10995,2025-03-08T08:44:07.495612-08:00,1016.9241943359375,10.715522,10715.522 +10996,2025-03-08T08:44:18.217826-08:00,1016.9456176757812,10.722214,10722.214 +10997,2025-03-08T08:44:28.937908-08:00,1016.9456176757812,10.720082,10720.082 +10998,2025-03-08T08:44:39.655985-08:00,1016.957275390625,10.718077,10718.077 +10999,2025-03-08T08:44:50.374911-08:00,1016.9356079101562,10.718926,10718.926 +11000,2025-03-08T08:45:01.089909-08:00,1016.9241943359375,10.714998,10714.998 +11001,2025-03-08T08:45:11.810840-08:00,1016.94873046875,10.720931,10720.931 +11002,2025-03-08T08:45:22.530910-08:00,1016.9620361328125,10.72007,10720.07 +11003,2025-03-08T08:45:33.247103-08:00,1016.947265625,10.716193,10716.193 +11004,2025-03-08T08:45:43.962102-08:00,1016.9751586914062,10.714999,10714.999 +11005,2025-03-08T08:45:54.680911-08:00,1016.96044921875,10.718809,10718.809 +11006,2025-03-08T08:46:05.401907-08:00,1016.9918212890625,10.720996,10720.996 +11007,2025-03-08T08:46:16.124049-08:00,1016.96044921875,10.722142,10722.142 +11008,2025-03-08T08:46:26.844092-08:00,1016.9685668945312,10.720043,10720.043 +11009,2025-03-08T08:46:37.565113-08:00,1016.9802856445312,10.721021,10721.021 +11010,2025-03-08T08:46:48.282906-08:00,1016.9721069335938,10.717793,10717.793 +11011,2025-03-08T08:46:58.998908-08:00,1016.993408203125,10.716002,10716.002 +11012,2025-03-08T08:47:09.716088-08:00,1016.993408203125,10.71718,10717.18 +11013,2025-03-08T08:47:20.429909-08:00,1016.9768676757812,10.713821,10713.821 +11014,2025-03-08T08:47:31.151330-08:00,1016.9721069335938,10.721421,10721.421 +11015,2025-03-08T08:47:41.866321-08:00,1016.975341796875,10.714991,10714.991 +11016,2025-03-08T08:47:52.583907-08:00,1016.9851684570312,10.717586,10717.586 +11017,2025-03-08T08:48:03.299080-08:00,1016.988525390625,10.715173,10715.173 +11018,2025-03-08T08:48:14.019911-08:00,1017.001708984375,10.720831,10720.831 +11019,2025-03-08T08:48:24.731910-08:00,1016.989990234375,10.711999,10711.999 +11020,2025-03-08T08:48:35.453153-08:00,1016.9866333007812,10.721243,10721.243 +11021,2025-03-08T08:48:46.163902-08:00,1017.0064086914062,10.710749,10710.749 +11022,2025-03-08T08:48:56.884092-08:00,1017.0064086914062,10.72019,10720.19 +11023,2025-03-08T08:49:07.601909-08:00,1016.9951782226562,10.717817,10717.817 +11024,2025-03-08T08:49:18.316980-08:00,1017.00830078125,10.715071,10715.071 +11025,2025-03-08T08:49:29.034335-08:00,1016.969970703125,10.717355,10717.355 +11026,2025-03-08T08:49:39.758936-08:00,1016.968505859375,10.724601,10724.601 +11027,2025-03-08T08:49:50.469262-08:00,1016.981689453125,10.710326,10710.326 +11028,2025-03-08T08:50:01.191906-08:00,1016.9603881835938,10.722644,10722.644 +11029,2025-03-08T08:50:11.906699-08:00,1016.98828125,10.714793,10714.793 +11030,2025-03-08T08:50:22.630673-08:00,1017.006591796875,10.723974,10723.974 +11031,2025-03-08T08:50:33.340061-08:00,1016.991455078125,10.709388,10709.388 +11032,2025-03-08T08:50:44.064092-08:00,1016.9933471679688,10.724031,10724.031 +11033,2025-03-08T08:50:54.778909-08:00,1016.9833374023438,10.714817,10714.817 +11034,2025-03-08T08:51:05.495166-08:00,1016.9685668945312,10.716257,10716.257 +11035,2025-03-08T08:51:16.207321-08:00,1017.0046997070312,10.712155,10712.155 +11036,2025-03-08T08:51:26.927908-08:00,1016.9931030273438,10.720587,10720.587 +11037,2025-03-08T08:51:37.645976-08:00,1016.999755859375,10.718068,10718.068 +11038,2025-03-08T08:51:48.366911-08:00,1016.95703125,10.720935,10720.935 +11039,2025-03-08T08:51:59.082105-08:00,1016.9915771484375,10.715194,10715.194 +11040,2025-03-08T08:52:09.790122-08:00,1016.9552612304688,10.708017,10708.017 +11041,2025-03-08T08:52:20.541954-08:00,1016.9684448242188,10.751832,10751.832 +11042,2025-03-08T08:52:31.260202-08:00,1016.9684448242188,10.718248,10718.248 +11043,2025-03-08T08:52:41.974961-08:00,1016.971923828125,10.714759,10714.759 +11044,2025-03-08T08:52:52.685731-08:00,1016.9851684570312,10.71077,10710.77 +11045,2025-03-08T08:53:03.401957-08:00,1016.97705078125,10.716226,10716.226 +11046,2025-03-08T08:53:14.118133-08:00,1017.0049438476562,10.716176,10716.176 +11047,2025-03-08T08:53:24.843118-08:00,1016.9619750976562,10.724985,10724.985 +11048,2025-03-08T08:53:35.554974-08:00,1016.9637451171875,10.711856,10711.856 +11049,2025-03-08T08:53:46.279513-08:00,1016.981689453125,10.724539,10724.539 +11050,2025-03-08T08:53:56.993942-08:00,1016.944091796875,10.714429,10714.429 +11051,2025-03-08T08:54:07.708167-08:00,1016.968505859375,10.714225,10714.225 +11052,2025-03-08T08:54:18.425130-08:00,1016.968505859375,10.716963,10716.963 +11053,2025-03-08T08:54:29.146932-08:00,1016.93408203125,10.721802,10721.802 +11054,2025-03-08T08:54:39.864936-08:00,1016.9735717773438,10.718004,10718.004 +11055,2025-03-08T08:54:50.579933-08:00,1016.967041015625,10.714997,10714.997 +11056,2025-03-08T08:55:01.299307-08:00,1016.9472045898438,10.719374,10719.374 +11057,2025-03-08T08:55:12.017007-08:00,1016.98681640625,10.7177,10717.7 +11058,2025-03-08T08:55:22.734154-08:00,1016.9801635742188,10.717147,10717.147 +11059,2025-03-08T08:55:33.449118-08:00,1016.9589233398438,10.714964,10714.964 +11060,2025-03-08T08:55:44.164940-08:00,1016.9852294921875,10.715822,10715.822 +11061,2025-03-08T08:55:54.890161-08:00,1016.99658203125,10.725221,10725.221 +11062,2025-03-08T08:56:05.605996-08:00,1016.9984130859375,10.715835,10715.835 +11063,2025-03-08T08:56:16.320613-08:00,1016.9685668945312,10.714617,10714.617 +11064,2025-03-08T08:56:27.037035-08:00,1017.02294921875,10.716422,10716.422 +11065,2025-03-08T08:56:37.743935-08:00,1016.9752197265625,10.7069,10706.9 +11066,2025-03-08T08:56:48.461171-08:00,1016.9949951171875,10.717236,10717.236 +11067,2025-03-08T08:56:59.173012-08:00,1016.9784545898438,10.711841,10711.841 +11068,2025-03-08T08:57:09.889138-08:00,1017.0048217773438,10.716126,10716.126 +11069,2025-03-08T08:57:20.609326-08:00,1017.0133056640625,10.720188,10720.188 +11070,2025-03-08T08:57:31.322932-08:00,1017.0198364257812,10.713606,10713.606 +11071,2025-03-08T08:57:42.043668-08:00,1017.0214233398438,10.720736,10720.736 +11072,2025-03-08T08:57:52.753145-08:00,1017.0133056640625,10.709477,10709.477 +11073,2025-03-08T08:58:03.462937-08:00,1017.0133056640625,10.709792,10709.792 +11074,2025-03-08T08:58:14.188325-08:00,1017.0231323242188,10.725388,10725.388 +11075,2025-03-08T08:58:24.906007-08:00,1017.00830078125,10.717682,10717.682 +11076,2025-03-08T08:58:35.621000-08:00,1017.0231323242188,10.714993,10714.993 +11077,2025-03-08T08:58:46.338941-08:00,1017.03466796875,10.717941,10717.941 +11078,2025-03-08T08:58:57.053934-08:00,1017.0164794921875,10.714993,10714.993 +11079,2025-03-08T08:59:07.776298-08:00,1017.00830078125,10.722364,10722.364 +11080,2025-03-08T08:59:18.490932-08:00,1017.0064697265625,10.714634,10714.634 +11081,2025-03-08T08:59:29.210372-08:00,1017.014892578125,10.71944,10719.44 +11082,2025-03-08T08:59:39.930936-08:00,1017.0215454101562,10.720564,10720.564 +11083,2025-03-08T08:59:50.655527-08:00,1017.0064697265625,10.724591,10724.591 +11084,2025-03-08T09:00:01.368035-08:00,1017.0215454101562,10.712508,10712.508 +11085,2025-03-08T09:00:12.084931-08:00,1017.0479736328125,10.716896,10716.896 +11086,2025-03-08T09:00:22.806231-08:00,1017.0328369140625,10.7213,10721.3 +11087,2025-03-08T09:00:33.526934-08:00,1017.0165405273438,10.720703,10720.703 +11088,2025-03-08T09:00:44.250036-08:00,1017.0165405273438,10.723102,10723.102 +11089,2025-03-08T09:00:54.965958-08:00,1017.02978515625,10.715922,10715.922 +11090,2025-03-08T09:01:05.686123-08:00,1017.010009765625,10.720165,10720.165 +11091,2025-03-08T09:01:16.399934-08:00,1017.0081176757812,10.713811,10713.811 +11092,2025-03-08T09:01:27.118447-08:00,1017.0147094726562,10.718513,10718.513 +11093,2025-03-08T09:01:37.837118-08:00,1017.0345458984375,10.718671,10718.671 +11094,2025-03-08T09:01:48.559955-08:00,1017.006591796875,10.722837,10722.837 +11095,2025-03-08T09:01:59.283137-08:00,1017.0131225585938,10.723182,10723.182 +11096,2025-03-08T09:02:10.002932-08:00,1017.032958984375,10.719795,10719.795 +11097,2025-03-08T09:02:20.722149-08:00,1017.03955078125,10.719217,10719.217 +11098,2025-03-08T09:02:31.436296-08:00,1017.0593872070312,10.714147,10714.147 +11099,2025-03-08T09:02:42.155127-08:00,1017.0167236328125,10.718831,10718.831 +11100,2025-03-08T09:02:52.878960-08:00,1017.0379638671875,10.723833,10723.833 +11101,2025-03-08T09:03:03.596412-08:00,1017.03955078125,10.717452,10717.452 +11102,2025-03-08T09:03:14.320935-08:00,1017.0496826171875,10.724523,10724.523 +11103,2025-03-08T09:03:25.034170-08:00,1017.00341796875,10.713235,10713.235 +11104,2025-03-08T09:03:35.756370-08:00,1017.0198364257812,10.7222,10722.2 +11105,2025-03-08T09:03:46.478003-08:00,1017.0133056640625,10.721633,10721.633 +11106,2025-03-08T09:03:57.190935-08:00,1017.0364990234375,10.712932,10712.932 +11107,2025-03-08T09:04:07.908138-08:00,1017.0477905273438,10.717203,10717.203 +11108,2025-03-08T09:04:18.623627-08:00,1017.0214233398438,10.715489,10715.489 +11109,2025-03-08T09:04:29.341931-08:00,1017.0232543945312,10.718304,10718.304 +11110,2025-03-08T09:04:40.060979-08:00,1016.9967041015625,10.719048,10719.048 +11111,2025-03-08T09:04:50.787220-08:00,1017.0396728515625,10.726241,10726.241 +11112,2025-03-08T09:05:01.504933-08:00,1017.0513305664062,10.717713,10717.713 +11113,2025-03-08T09:05:12.218932-08:00,1017.0032958984375,10.713999,10713.999 +11114,2025-03-08T09:05:22.933933-08:00,1017.0098266601562,10.715001,10715.001 +11115,2025-03-08T09:05:33.653125-08:00,1017.0296630859375,10.719192,10719.192 +11116,2025-03-08T09:05:44.369223-08:00,1017.0296630859375,10.716098,10716.098 +11117,2025-03-08T09:05:55.093577-08:00,1017.0362548828125,10.724354,10724.354 +11118,2025-03-08T09:06:05.804116-08:00,1016.9935913085938,10.710539,10710.539 +11119,2025-03-08T09:06:16.522076-08:00,1017.0230712890625,10.71796,10717.96 +11120,2025-03-08T09:06:27.237114-08:00,1017.0296630859375,10.715038,10715.038 +11121,2025-03-08T09:06:37.962295-08:00,1017.014892578125,10.725181,10725.181 +11122,2025-03-08T09:06:48.677835-08:00,1017.0296630859375,10.71554,10715.54 +11123,2025-03-08T09:06:59.395935-08:00,1017.014892578125,10.7181,10718.1 +11124,2025-03-08T09:07:10.113957-08:00,1017.0230712890625,10.718022,10718.022 +11125,2025-03-08T09:07:20.827441-08:00,1017.014892578125,10.713484,10713.484 +11126,2025-03-08T09:07:31.549199-08:00,1017.044677734375,10.721758,10721.758 +11127,2025-03-08T09:07:42.268112-08:00,1017.0594482421875,10.718913,10718.913 +11128,2025-03-08T09:07:52.986999-08:00,1017.00830078125,10.718887,10718.887 +11129,2025-03-08T09:08:03.707109-08:00,1017.00830078125,10.72011,10720.11 +11130,2025-03-08T09:08:14.421728-08:00,1016.9951782226562,10.714619,10714.619 +11131,2025-03-08T09:08:25.133143-08:00,1017.0362548828125,10.711415,10711.415 +11132,2025-03-08T09:08:35.850134-08:00,1017.0067749023438,10.716991,10716.991 +11133,2025-03-08T09:08:46.569932-08:00,1016.991943359375,10.719798,10719.798 +11134,2025-03-08T09:08:57.286634-08:00,1017.0098266601562,10.716702,10716.702 +11135,2025-03-08T09:09:08.001114-08:00,1017.0164794921875,10.71448,10714.48 +11136,2025-03-08T09:09:18.716135-08:00,1016.9900512695312,10.715021,10715.021 +11137,2025-03-08T09:09:29.431341-08:00,1016.9951782226562,10.715206,10715.206 +11138,2025-03-08T09:09:37.444455-08:00,1017.0032958984375,8.013114,8013.114 +11139,2025-03-08T09:09:40.152045-08:00,1016.9885864257812,2.70759,2707.59 +11140,2025-03-08T09:09:50.868743-08:00,1017.0032958984375,10.716698,10716.698 +11141,2025-03-08T09:10:01.591939-08:00,1016.9885864257812,10.723196,10723.196 +11142,2025-03-08T09:10:12.297934-08:00,1017.01171875,10.705995,10705.995 +11143,2025-03-08T09:10:23.019920-08:00,1016.9900512695312,10.721986,10721.986 +11144,2025-03-08T09:10:33.747119-08:00,1016.9967041015625,10.727199,10727.199 +11145,2025-03-08T09:10:44.462115-08:00,1017.0032958984375,10.714996,10714.996 +11146,2025-03-08T09:10:55.184224-08:00,1017.0049438476562,10.722109,10722.109 +11147,2025-03-08T09:11:05.897895-08:00,1017.010009765625,10.713671,10713.671 +11148,2025-03-08T09:11:16.620933-08:00,1017.0150146484375,10.723038,10723.038 +11149,2025-03-08T09:11:27.347138-08:00,1017.0131225585938,10.726205,10726.205 +11150,2025-03-08T09:11:38.063938-08:00,1017.0100708007812,10.7168,10716.8 +11151,2025-03-08T09:11:48.780130-08:00,1017.0133056640625,10.716192,10716.192 +11152,2025-03-08T09:11:59.502932-08:00,1016.9737548828125,10.722802,10722.802 +11153,2025-03-08T09:12:10.222957-08:00,1016.9637451171875,10.720025,10720.025 +11154,2025-03-08T09:12:20.942454-08:00,1016.99365234375,10.719497,10719.497 +11155,2025-03-08T09:12:31.665563-08:00,1016.9721069335938,10.723109,10723.109 +11156,2025-03-08T09:12:42.377011-08:00,1016.9935913085938,10.711448,10711.448 +11157,2025-03-08T09:12:53.097009-08:00,1016.9638061523438,10.719998,10719.998 +11158,2025-03-08T09:13:03.816102-08:00,1016.9771118164062,10.719093,10719.093 +11159,2025-03-08T09:13:14.541652-08:00,1016.9690551757812,10.72555,10725.55 +11160,2025-03-08T09:13:25.256276-08:00,1017.0068969726562,10.714624,10714.624 +11161,2025-03-08T09:13:35.973008-08:00,1016.9756469726562,10.716732,10716.732 +11162,2025-03-08T09:13:46.696068-08:00,1016.96533203125,10.72306,10723.06 +11163,2025-03-08T09:13:57.410935-08:00,1017.0031127929688,10.714867,10714.867 +11164,2025-03-08T09:14:08.132158-08:00,1017.0164184570312,10.721223,10721.223 +11165,2025-03-08T09:14:18.846127-08:00,1016.96875,10.713969,10713.969 +11166,2025-03-08T09:14:29.561933-08:00,1017.008056640625,10.715806,10715.806 +11167,2025-03-08T09:14:40.286114-08:00,1016.9801635742188,10.724181,10724.181 +11168,2025-03-08T09:14:51.001106-08:00,1016.95703125,10.714992,10714.992 +11169,2025-03-08T09:15:01.718136-08:00,1016.96533203125,10.71703,10717.03 +11170,2025-03-08T09:15:12.441960-08:00,1016.9537353515625,10.723824,10723.824 +11171,2025-03-08T09:15:23.164960-08:00,1016.9503173828125,10.723,10723.0 +11172,2025-03-08T09:15:33.874994-08:00,1016.9735717773438,10.710034,10710.034 +11173,2025-03-08T09:15:44.601139-08:00,1016.9620361328125,10.726145,10726.145 +11174,2025-03-08T09:15:55.312232-08:00,1016.9520263671875,10.711093,10711.093 +11175,2025-03-08T09:16:06.031931-08:00,1016.9668579101562,10.719699,10719.699 +11176,2025-03-08T09:16:16.760114-08:00,1016.9505615234375,10.728183,10728.183 +11177,2025-03-08T09:16:27.482003-08:00,1016.9470825195312,10.721889,10721.889 +11178,2025-03-08T09:16:38.202097-08:00,1016.9437255859375,10.720094,10720.094 +11179,2025-03-08T09:16:48.915935-08:00,1016.955322265625,10.713838,10713.838 +11180,2025-03-08T09:16:59.643133-08:00,1016.938720703125,10.727198,10727.198 +11181,2025-03-08T09:17:10.362201-08:00,1016.94873046875,10.719068,10719.068 +11182,2025-03-08T09:17:21.077956-08:00,1016.94873046875,10.715755,10715.755 +11183,2025-03-08T09:17:31.795208-08:00,1016.9534912109375,10.717252,10717.252 +11184,2025-03-08T09:17:42.518931-08:00,1016.938720703125,10.723723,10723.723 +11185,2025-03-08T09:17:53.236177-08:00,1016.9651489257812,10.717246,10717.246 +11186,2025-03-08T09:18:03.957933-08:00,1016.9833374023438,10.721756,10721.756 +11187,2025-03-08T09:18:14.675598-08:00,1016.9356079101562,10.717665,10717.665 +11188,2025-03-08T09:18:25.396164-08:00,1016.95361328125,10.720566,10720.566 +11189,2025-03-08T09:18:36.106161-08:00,1016.963623046875,10.709997,10709.997 +11190,2025-03-08T09:18:46.821544-08:00,1016.9388427734375,10.715383,10715.383 +11191,2025-03-08T09:18:57.539963-08:00,1016.9732666015625,10.718419,10718.419 +11192,2025-03-08T09:19:08.266106-08:00,1016.978271484375,10.726143,10726.143 +11193,2025-03-08T09:19:18.984147-08:00,1016.9833374023438,10.718041,10718.041 +11194,2025-03-08T09:19:29.695635-08:00,1017.017822265625,10.711488,10711.488 +11195,2025-03-08T09:19:40.423140-08:00,1016.9422607421875,10.727505,10727.505 +11196,2025-03-08T09:19:51.139148-08:00,1016.9767456054688,10.716008,10716.008 +11197,2025-03-08T09:20:01.856011-08:00,1016.9255981445312,10.716863,10716.863 +11198,2025-03-08T09:20:12.570293-08:00,1016.9337768554688,10.714282,10714.282 +11199,2025-03-08T09:20:23.295040-08:00,1016.9421997070312,10.724747,10724.747 +11200,2025-03-08T09:20:34.005933-08:00,1016.9306030273438,10.710893,10710.893 +11201,2025-03-08T09:20:44.724171-08:00,1016.9306030273438,10.718238,10718.238 +11202,2025-03-08T09:20:55.443146-08:00,1016.9453125,10.718975,10718.975 +11203,2025-03-08T09:21:06.155142-08:00,1016.938720703125,10.711996,10711.996 +11204,2025-03-08T09:21:16.870512-08:00,1016.9537353515625,10.71537,10715.37 +11205,2025-03-08T09:21:27.590932-08:00,1016.9568481445312,10.72042,10720.42 +11206,2025-03-08T09:21:38.310174-08:00,1016.978515625,10.719242,10719.242 +11207,2025-03-08T09:21:49.022935-08:00,1016.9618530273438,10.712761,10712.761 +11208,2025-03-08T09:21:59.741133-08:00,1016.9801025390625,10.718198,10718.198 +11209,2025-03-08T09:22:10.461935-08:00,1016.9637451171875,10.720802,10720.802 +11210,2025-03-08T09:22:21.180000-08:00,1016.9536743164062,10.718065,10718.065 +11211,2025-03-08T09:22:31.895713-08:00,1016.9520874023438,10.715713,10715.713 +11212,2025-03-08T09:22:42.607934-08:00,1016.9668579101562,10.712221,10712.221 +11213,2025-03-08T09:22:53.325226-08:00,1016.9768676757812,10.717292,10717.292 +11214,2025-03-08T09:23:04.042125-08:00,1016.9652099609375,10.716899,10716.899 +11215,2025-03-08T09:23:14.754932-08:00,1016.9752197265625,10.712807,10712.807 +11216,2025-03-08T09:23:25.474226-08:00,1016.9849243164062,10.719294,10719.294 +11217,2025-03-08T09:23:36.191053-08:00,1016.9701538085938,10.716827,10716.827 +11218,2025-03-08T09:23:46.907133-08:00,1016.980224609375,10.71608,10716.08 +11219,2025-03-08T09:23:57.615119-08:00,1016.9620361328125,10.707986,10707.986 +11220,2025-03-08T09:24:08.339932-08:00,1016.9603881835938,10.724813,10724.813 +11221,2025-03-08T09:24:19.054494-08:00,1016.967041015625,10.714562,10714.562 +11222,2025-03-08T09:24:29.763936-08:00,1016.9618530273438,10.709442,10709.442 +11223,2025-03-08T09:24:40.483135-08:00,1016.9866943359375,10.719199,10719.199 +11224,2025-03-08T09:24:51.203064-08:00,1016.9668579101562,10.719929,10719.929 +11225,2025-03-08T09:25:01.923027-08:00,1016.9901733398438,10.719963,10719.963 +11226,2025-03-08T09:25:12.641110-08:00,1016.9718627929688,10.718083,10718.083 +11227,2025-03-08T09:25:23.354196-08:00,1016.975341796875,10.713086,10713.086 +11228,2025-03-08T09:25:34.078839-08:00,1016.9718017578125,10.724643,10724.643 +11229,2025-03-08T09:25:44.791934-08:00,1016.993408203125,10.713095,10713.095 +11230,2025-03-08T09:25:55.498938-08:00,1016.9290771484375,10.707004,10707.004 +11231,2025-03-08T09:26:06.220226-08:00,1016.9786987304688,10.721288,10721.288 +11232,2025-03-08T09:26:16.941146-08:00,1016.9653930664062,10.72092,10720.92 +11233,2025-03-08T09:26:27.646137-08:00,1016.9801635742188,10.704991,10704.991 +11234,2025-03-08T09:26:38.363105-08:00,1016.97509765625,10.716968,10716.968 +11235,2025-03-08T09:26:49.078932-08:00,1016.9718627929688,10.715827,10715.827 +11236,2025-03-08T09:26:59.798956-08:00,1016.9637451171875,10.720024,10720.024 +11237,2025-03-08T09:27:10.518287-08:00,1016.9801025390625,10.719331,10719.331 +11238,2025-03-08T09:27:21.229174-08:00,1016.9637451171875,10.710887,10710.887 +11239,2025-03-08T09:27:31.947128-08:00,1017.0016479492188,10.717954,10717.954 +11240,2025-03-08T09:27:42.670996-08:00,1016.97021484375,10.723868,10723.868 +11241,2025-03-08T09:27:53.383122-08:00,1016.9786987304688,10.712126,10712.126 +11242,2025-03-08T09:28:04.105935-08:00,1016.963623046875,10.722813,10722.813 +11243,2025-03-08T09:28:14.821184-08:00,1016.9801635742188,10.715249,10715.249 +11244,2025-03-08T09:28:25.533120-08:00,1016.978515625,10.711936,10711.936 +11245,2025-03-08T09:28:36.254933-08:00,1017.01171875,10.721813,10721.813 +11246,2025-03-08T09:28:46.974131-08:00,1017.001953125,10.719198,10719.198 +11247,2025-03-08T09:28:57.691936-08:00,1016.9754638671875,10.717805,10717.805 +11248,2025-03-08T09:29:08.408190-08:00,1016.9951782226562,10.716254,10716.254 +11249,2025-03-08T09:29:19.132423-08:00,1016.9706420898438,10.724233,10724.233 +11250,2025-03-08T09:29:29.851026-08:00,1016.9720458984375,10.718603,10718.603 +11251,2025-03-08T09:29:40.570936-08:00,1016.9788818359375,10.71991,10719.91 +11252,2025-03-08T09:29:51.290930-08:00,1016.982177734375,10.719994,10719.994 +11253,2025-03-08T09:30:02.011948-08:00,1016.9736938476562,10.721018,10721.018 +11254,2025-03-08T09:30:12.738955-08:00,1017.0001831054688,10.727007,10727.007 +11255,2025-03-08T09:30:23.466934-08:00,1016.9918823242188,10.727979,10727.979 +11256,2025-03-08T09:30:34.190219-08:00,1016.987060546875,10.723285,10723.285 +11257,2025-03-08T09:30:44.911308-08:00,1016.9918823242188,10.721089,10721.089 +11258,2025-03-08T09:30:55.634562-08:00,1017.0064697265625,10.723254,10723.254 +11259,2025-03-08T09:31:06.361161-08:00,1017.032958984375,10.726599,10726.599 +11260,2025-03-08T09:31:17.087938-08:00,1016.9866943359375,10.726777,10726.777 +11261,2025-03-08T09:31:27.821713-08:00,1017.0178833007812,10.733775,10733.775 +11262,2025-03-08T09:31:38.551669-08:00,1016.9951782226562,10.729956,10729.956 +11263,2025-03-08T09:31:49.274121-08:00,1017.006591796875,10.722452,10722.452 +11264,2025-03-08T09:32:00.008970-08:00,1017.02294921875,10.734849,10734.849 +11265,2025-03-08T09:32:10.735031-08:00,1017.0343627929688,10.726061,10726.061 +11266,2025-03-08T09:32:21.466060-08:00,1017.02294921875,10.731029,10731.029 +11267,2025-03-08T09:32:32.192003-08:00,1017.0145263671875,10.725943,10725.943 +11268,2025-03-08T09:32:42.925131-08:00,1017.0391235351562,10.733128,10733.128 +11269,2025-03-08T09:32:53.642963-08:00,1017.0672607421875,10.717832,10717.832 +11270,2025-03-08T09:33:04.373933-08:00,1017.0984497070312,10.73097,10730.97 +11271,2025-03-08T09:33:15.105174-08:00,1017.07373046875,10.731241,10731.241 +11272,2025-03-08T09:33:25.830996-08:00,1017.0538330078125,10.725822,10725.822 +11273,2025-03-08T09:33:36.558935-08:00,1017.048583984375,10.727939,10727.939 +11274,2025-03-08T09:33:47.292323-08:00,1017.0701293945312,10.733388,10733.388 +11275,2025-03-08T09:33:58.018958-08:00,1017.0535888671875,10.726635,10726.635 +11276,2025-03-08T09:34:08.744138-08:00,1017.041748046875,10.72518,10725.18 +11277,2025-03-08T09:34:19.474790-08:00,1017.0549926757812,10.730652,10730.652 +11278,2025-03-08T09:34:30.208057-08:00,1017.0831298828125,10.733267,10733.267 +11279,2025-03-08T09:34:40.933064-08:00,1017.0929565429688,10.725007,10725.007 +11280,2025-03-08T09:34:51.666946-08:00,1017.0879516601562,10.733882,10733.882 +11281,2025-03-08T09:35:02.393134-08:00,1017.1091918945312,10.726188,10726.188 +11282,2025-03-08T09:35:13.118157-08:00,1017.0763549804688,10.725023,10725.023 +11283,2025-03-08T09:35:23.850137-08:00,1017.12548828125,10.73198,10731.98 +11284,2025-03-08T09:35:34.570152-08:00,1017.1124267578125,10.720015,10720.015 +11285,2025-03-08T09:35:45.298219-08:00,1017.0990600585938,10.728067,10728.067 +11286,2025-03-08T09:35:56.031141-08:00,1017.0445556640625,10.732922,10732.922 +11287,2025-03-08T09:36:06.753130-08:00,1017.10205078125,10.721989,10721.989 +11288,2025-03-08T09:36:17.478934-08:00,1017.083740234375,10.725804,10725.804 +11289,2025-03-08T09:36:28.199475-08:00,1017.090576171875,10.720541,10720.541 +11290,2025-03-08T09:36:38.927300-08:00,1017.0756225585938,10.727825,10727.825 +11291,2025-03-08T09:36:49.651198-08:00,1017.072021484375,10.723898,10723.898 +11292,2025-03-08T09:37:00.375636-08:00,1017.0703125,10.724438,10724.438 +11293,2025-03-08T09:37:11.097935-08:00,1017.07373046875,10.722299,10722.299 +11294,2025-03-08T09:37:21.822280-08:00,1017.048828125,10.724345,10724.345 +11295,2025-03-08T09:37:32.547123-08:00,1017.0948486328125,10.724843,10724.843 +11296,2025-03-08T09:37:43.271107-08:00,1017.0684204101562,10.723984,10723.984 +11297,2025-03-08T09:37:53.991126-08:00,1017.0850219726562,10.720019,10720.019 +11298,2025-03-08T09:38:04.721583-08:00,1017.052001953125,10.730457,10730.457 +11299,2025-03-08T09:38:15.442154-08:00,1017.0800170898438,10.720571,10720.571 +11300,2025-03-08T09:38:26.166013-08:00,1017.0733642578125,10.723859,10723.859 +11301,2025-03-08T09:38:36.892151-08:00,1017.0833740234375,10.726138,10726.138 +11302,2025-03-08T09:38:47.621000-08:00,1017.0650024414062,10.728849,10728.849 +11303,2025-03-08T09:38:58.350124-08:00,1017.0618896484375,10.729124,10729.124 +11304,2025-03-08T09:39:09.076146-08:00,1017.0089721679688,10.726022,10726.022 +11305,2025-03-08T09:39:19.800976-08:00,1017.0252075195312,10.72483,10724.83 +11306,2025-03-08T09:39:30.526934-08:00,1017.0665893554688,10.725958,10725.958 +11307,2025-03-08T09:39:41.260129-08:00,1017.0449829101562,10.733195,10733.195 +11308,2025-03-08T09:39:51.981837-08:00,1017.061279296875,10.721708,10721.708 +11309,2025-03-08T09:40:02.717636-08:00,1017.08154296875,10.735799,10735.799 +11310,2025-03-08T09:40:13.435632-08:00,1017.0220336914062,10.717996,10717.996 +11311,2025-03-08T09:40:24.171934-08:00,1017.0714721679688,10.736302,10736.302 +11312,2025-03-08T09:40:34.898937-08:00,1017.05322265625,10.727003,10727.003 +11313,2025-03-08T09:40:45.620136-08:00,1017.0662231445312,10.721199,10721.199 +11314,2025-03-08T09:40:56.345352-08:00,1017.03466796875,10.725216,10725.216 +11315,2025-03-08T09:41:07.074936-08:00,1017.05615234375,10.729584,10729.584 +11316,2025-03-08T09:41:17.808767-08:00,1017.0396728515625,10.733831,10733.831 +11317,2025-03-08T09:41:28.530147-08:00,1017.0692138671875,10.72138,10721.38 +11318,2025-03-08T09:41:39.267937-08:00,1017.0460815429688,10.73779,10737.79 +11319,2025-03-08T09:41:49.993970-08:00,1017.0723266601562,10.726033,10726.033 +11320,2025-03-08T09:42:00.724338-08:00,1017.0625,10.730368,10730.368 +11321,2025-03-08T09:42:11.455143-08:00,1017.0588989257812,10.730805,10730.805 +11322,2025-03-08T09:42:22.178016-08:00,1017.0523681640625,10.722873,10722.873 +11323,2025-03-08T09:42:32.905191-08:00,1017.075439453125,10.727175,10727.175 +11324,2025-03-08T09:42:43.644012-08:00,1017.072265625,10.738821,10738.821 +11325,2025-03-08T09:42:54.372007-08:00,1017.07373046875,10.727995,10727.995 +11326,2025-03-08T09:43:05.093143-08:00,1017.0686645507812,10.721136,10721.136 +11327,2025-03-08T09:43:15.830128-08:00,1017.0686645507812,10.736985,10736.985 +11328,2025-03-08T09:43:26.559936-08:00,1017.0639038085938,10.729808,10729.808 +11329,2025-03-08T09:43:37.285154-08:00,1017.0507202148438,10.725218,10725.218 +11330,2025-03-08T09:43:48.012964-08:00,1017.0684204101562,10.72781,10727.81 +11331,2025-03-08T09:43:58.740418-08:00,1017.048583984375,10.727454,10727.454 +11332,2025-03-08T09:44:09.474191-08:00,1017.052001953125,10.733773,10733.773 +11333,2025-03-08T09:44:20.194968-08:00,1017.068603515625,10.720777,10720.777 +11334,2025-03-08T09:44:30.929105-08:00,1017.046875,10.734137,10734.137 +11335,2025-03-08T09:44:41.663146-08:00,1017.0701293945312,10.734041,10734.041 +11336,2025-03-08T09:44:52.394986-08:00,1017.0783081054688,10.73184,10731.84 +11337,2025-03-08T09:45:03.124125-08:00,1017.056884765625,10.729139,10729.139 +11338,2025-03-08T09:45:13.847314-08:00,1017.08154296875,10.723189,10723.189 +11339,2025-03-08T09:45:24.581959-08:00,1017.0750122070312,10.734645,10734.645 +11340,2025-03-08T09:45:35.299966-08:00,1017.0831298828125,10.718007,10718.007 +11341,2025-03-08T09:45:46.034132-08:00,1017.078369140625,10.734166,10734.166 +11342,2025-03-08T09:45:56.764957-08:00,1017.078369140625,10.730825,10730.825 +11343,2025-03-08T09:46:07.484030-08:00,1017.066650390625,10.719073,10719.073 +11344,2025-03-08T09:46:18.210929-08:00,1017.0599975585938,10.726899,10726.899 +11345,2025-03-08T09:46:28.947089-08:00,1017.0599975585938,10.73616,10736.16 +11346,2025-03-08T09:46:39.664965-08:00,1017.0733032226562,10.717876,10717.876 +11347,2025-03-08T09:46:50.396962-08:00,1017.0615844726562,10.731997,10731.997 +11348,2025-03-08T09:47:01.126932-08:00,1017.0615844726562,10.72997,10729.97 +11349,2025-03-08T09:47:11.844935-08:00,1017.0747680664062,10.718003,10718.003 +11350,2025-03-08T09:47:22.581929-08:00,1017.0828857421875,10.736994,10736.994 +11351,2025-03-08T09:47:33.308208-08:00,1017.084716796875,10.726279,10726.279 +11352,2025-03-08T09:47:44.031216-08:00,1017.0878295898438,10.723008,10723.008 +11353,2025-03-08T09:47:54.766111-08:00,1017.0730590820312,10.734895,10734.895 +11354,2025-03-08T09:48:05.494747-08:00,1017.059814453125,10.728636,10728.636 +11355,2025-03-08T09:48:16.216009-08:00,1017.0878295898438,10.721262,10721.262 +11356,2025-03-08T09:48:26.946328-08:00,1017.0878295898438,10.730319,10730.319 +11357,2025-03-08T09:48:37.678987-08:00,1017.0565795898438,10.732659,10732.659 +11358,2025-03-08T09:48:48.408965-08:00,1017.0546875,10.729978,10729.978 +11359,2025-03-08T09:48:59.132324-08:00,1017.0829467773438,10.723359,10723.359 +11360,2025-03-08T09:49:09.855930-08:00,1017.0415649414062,10.723606,10723.606 +11361,2025-03-08T09:49:20.587956-08:00,1017.0631103515625,10.732026,10732.026 +11362,2025-03-08T09:49:31.306936-08:00,1017.0679931640625,10.71898,10718.98 +11363,2025-03-08T09:49:42.035936-08:00,1017.0878295898438,10.729,10729.0 +11364,2025-03-08T09:49:52.772112-08:00,1017.089599609375,10.736176,10736.176 +11365,2025-03-08T09:50:03.493031-08:00,1017.0613403320312,10.720919,10720.919 +11366,2025-03-08T09:50:14.222928-08:00,1017.0745239257812,10.729897,10729.897 +11367,2025-03-08T09:50:24.957132-08:00,1017.0730590820312,10.734204,10734.204 +11368,2025-03-08T09:50:35.684008-08:00,1017.0928955078125,10.726876,10726.876 +11369,2025-03-08T09:50:46.412087-08:00,1017.05322265625,10.728079,10728.079 +11370,2025-03-08T09:50:57.132933-08:00,1017.0615844726562,10.720846,10720.846 +11371,2025-03-08T09:51:07.855936-08:00,1017.0747680664062,10.723003,10723.003 +11372,2025-03-08T09:51:18.584208-08:00,1017.0747680664062,10.728272,10728.272 +11373,2025-03-08T09:51:29.314935-08:00,1017.0585327148438,10.730727,10730.727 +11374,2025-03-08T09:51:40.037125-08:00,1017.0585327148438,10.72219,10722.19 +11375,2025-03-08T09:51:50.769149-08:00,1017.0567016601562,10.732024,10732.024 +11376,2025-03-08T09:52:01.492614-08:00,1017.050048828125,10.723465,10723.465 +11377,2025-03-08T09:52:12.214935-08:00,1017.0632934570312,10.722321,10722.321 +11378,2025-03-08T09:52:22.919352-08:00,1017.0948486328125,10.704417,10704.417 +11379,2025-03-08T09:52:33.653490-08:00,1017.0617065429688,10.734138,10734.138 +11380,2025-03-08T09:52:44.373451-08:00,1017.0584106445312,10.719961,10719.961 +11381,2025-03-08T09:52:55.098423-08:00,1017.045166015625,10.724972,10724.972 +11382,2025-03-08T09:53:05.819521-08:00,1017.055419921875,10.721098,10721.098 +11383,2025-03-08T09:53:16.542487-08:00,1017.05029296875,10.722966,10722.966 +11384,2025-03-08T09:53:27.275319-08:00,1017.068603515625,10.732832,10732.832 +11385,2025-03-08T09:53:38.004313-08:00,1017.0733642578125,10.728994,10728.994 +11386,2025-03-08T09:53:48.726454-08:00,1017.0438842773438,10.722141,10722.141 +11387,2025-03-08T09:53:59.452565-08:00,1017.05712890625,10.726111,10726.111 +11388,2025-03-08T09:54:10.184314-08:00,1017.05712890625,10.731749,10731.749 +11389,2025-03-08T09:54:20.917594-08:00,1017.048583984375,10.73328,10733.28 +11390,2025-03-08T09:54:31.639316-08:00,1017.060302734375,10.721722,10721.722 +11391,2025-03-08T09:54:42.369501-08:00,1017.0639038085938,10.730185,10730.185 +11392,2025-03-08T09:54:53.092315-08:00,1017.0554809570312,10.722814,10722.814 +11393,2025-03-08T09:55:03.819361-08:00,1017.0671997070312,10.727046,10727.046 +11394,2025-03-08T09:55:14.557547-08:00,1017.03076171875,10.738186,10738.186 +11395,2025-03-08T09:55:25.279317-08:00,1017.037353515625,10.72177,10721.77 +11396,2025-03-08T09:55:36.014523-08:00,1017.0524291992188,10.735206,10735.206 +11397,2025-03-08T09:55:46.739429-08:00,1017.063720703125,10.724906,10724.906 +11398,2025-03-08T09:55:57.470333-08:00,1017.0623168945312,10.730904,10730.904 +11399,2025-03-08T09:56:08.191743-08:00,1017.0820922851562,10.72141,10721.41 +11400,2025-03-08T09:56:18.919351-08:00,1017.0474853515625,10.727608,10727.608 +11401,2025-03-08T09:56:29.650320-08:00,1017.0556030273438,10.730969,10730.969 +11402,2025-03-08T09:56:40.372813-08:00,1017.0541381835938,10.722493,10722.493 +11403,2025-03-08T09:56:51.103593-08:00,1017.049072265625,10.73078,10730.78 +11404,2025-03-08T09:57:01.836676-08:00,1017.0409545898438,10.733083,10733.083 +11405,2025-03-08T09:57:12.557338-08:00,1017.037353515625,10.720662,10720.662 +11406,2025-03-08T09:57:23.279386-08:00,1017.0556030273438,10.722048,10722.048 +11407,2025-03-08T09:57:34.008340-08:00,1017.0671997070312,10.728954,10728.954 +11408,2025-03-08T09:57:44.736558-08:00,1017.0392456054688,10.728218,10728.218 +11409,2025-03-08T09:57:55.468154-08:00,1017.0686645507812,10.731596,10731.596 +11410,2025-03-08T09:58:06.193313-08:00,1017.0488891601562,10.725159,10725.159 +11411,2025-03-08T09:58:16.915316-08:00,1017.042236328125,10.722003,10722.003 +11412,2025-03-08T09:58:27.642849-08:00,1017.0158081054688,10.727533,10727.533 +11413,2025-03-08T09:58:38.374750-08:00,1017.045654296875,10.731901,10731.901 +11414,2025-03-08T09:58:49.108538-08:00,1017.0374755859375,10.733788,10733.788 +11415,2025-03-08T09:58:59.834515-08:00,1017.029052734375,10.725977,10725.977 +11416,2025-03-08T09:59:10.560347-08:00,1017.0341186523438,10.725832,10725.832 +11417,2025-03-08T09:59:21.296386-08:00,1017.057373046875,10.736039,10736.039 +11418,2025-03-08T09:59:32.016523-08:00,1017.0882568359375,10.720137,10720.137 +11419,2025-03-08T09:59:42.754553-08:00,1017.0308837890625,10.73803,10738.03 +11420,2025-03-08T09:59:53.478198-08:00,1017.033935546875,10.723645,10723.645 +11421,2025-03-08T10:00:04.207381-08:00,1017.0192260742188,10.729183,10729.183 +11422,2025-03-08T10:00:14.941406-08:00,1017.0192260742188,10.734025,10734.025 +11423,2025-03-08T10:00:25.667802-08:00,1017.0308837890625,10.726396,10726.396 +11424,2025-03-08T10:00:36.398313-08:00,1017.0242309570312,10.730511,10730.511 +11425,2025-03-08T10:00:47.127313-08:00,1017.0059204101562,10.729,10729.0 +11426,2025-03-08T10:00:57.853348-08:00,1017.0323486328125,10.726035,10726.035 +11427,2025-03-08T10:01:08.581762-08:00,1017.0374755859375,10.728414,10728.414 +11428,2025-03-08T10:01:19.313428-08:00,1017.0242309570312,10.731666,10731.666 +11429,2025-03-08T10:01:30.043452-08:00,1017.0125732421875,10.730024,10730.024 +11430,2025-03-08T10:01:40.778318-08:00,1017.0242309570312,10.734866,10734.866 +11431,2025-03-08T10:01:51.504557-08:00,1017.0092163085938,10.726239,10726.239 +11432,2025-03-08T10:02:02.228456-08:00,1017.0111083984375,10.723899,10723.899 +11433,2025-03-08T10:02:12.966315-08:00,1016.9761962890625,10.737859,10737.859 +11434,2025-03-08T10:02:23.694485-08:00,1017.02734375,10.72817,10728.17 +11435,2025-03-08T10:02:34.416536-08:00,1017.0044555664062,10.722051,10722.051 +11436,2025-03-08T10:02:45.151585-08:00,1017.033935546875,10.735049,10735.049 +11437,2025-03-08T10:02:55.881503-08:00,1017.0140380859375,10.729918,10729.918 +11438,2025-03-08T10:03:06.608309-08:00,1016.9993896484375,10.726806,10726.806 +11439,2025-03-08T10:03:17.343543-08:00,1017.0206909179688,10.735234,10735.234 +11440,2025-03-08T10:03:28.071490-08:00,1017.0044555664062,10.727947,10727.947 +11441,2025-03-08T10:03:38.798315-08:00,1017.0059204101562,10.726825,10726.825 +11442,2025-03-08T10:03:49.521659-08:00,1017.0075073242188,10.723344,10723.344 +11443,2025-03-08T10:04:00.248347-08:00,1017.015625,10.726688,10726.688 +11444,2025-03-08T10:04:10.983315-08:00,1017.0140380859375,10.734968,10734.968 +11445,2025-03-08T10:04:21.705735-08:00,1017.0206909179688,10.72242,10722.42 +11446,2025-03-08T10:04:32.442306-08:00,1017.0354614257812,10.736571,10736.571 +11447,2025-03-08T10:04:43.169727-08:00,1017.0257568359375,10.727421,10727.421 +11448,2025-03-08T10:04:53.904342-08:00,1017.0206909179688,10.734615,10734.615 +11449,2025-03-08T10:05:04.630313-08:00,1017.0059204101562,10.725971,10725.971 +11450,2025-03-08T10:05:15.354313-08:00,1017.0420532226562,10.724,10724.0 +11451,2025-03-08T10:05:26.086500-08:00,1017.015625,10.732187,10732.187 +11452,2025-03-08T10:05:36.818309-08:00,1017.0206909179688,10.731809,10731.809 +11453,2025-03-08T10:05:47.539330-08:00,1017.0354614257812,10.721021,10721.021 +11454,2025-03-08T10:05:58.278495-08:00,1017.0206909179688,10.739165,10739.165 +11455,2025-03-08T10:06:08.999315-08:00,1017.02734375,10.72082,10720.82 +11456,2025-03-08T10:06:19.729475-08:00,1017.0242309570312,10.73016,10730.16 +11457,2025-03-08T10:06:30.458310-08:00,1017.0176391601562,10.728835,10728.835 +11458,2025-03-08T10:06:41.199398-08:00,1017.0440673828125,10.741088,10741.088 +11459,2025-03-08T10:06:51.925741-08:00,1017.0341186523438,10.726343,10726.343 +11460,2025-03-08T10:07:02.659204-08:00,1016.986328125,10.733463,10733.463 +11461,2025-03-08T10:07:13.385315-08:00,1017.0488891601562,10.726111,10726.111 +11462,2025-03-08T10:07:24.116523-08:00,1017.060546875,10.731208,10731.208 +11463,2025-03-08T10:07:34.844483-08:00,1017.0093994140625,10.72796,10727.96 +11464,2025-03-08T10:07:56.317493-08:00,1017.040771484375,21.47301,21473.01 +11465,2025-03-08T10:08:07.042315-08:00,1017.0097045898438,10.724822,10724.822 +11466,2025-03-08T10:08:17.771513-08:00,1017.0017700195312,10.729198,10729.198 +11467,2025-03-08T10:08:28.505317-08:00,1017.0265502929688,10.733804,10733.804 +11468,2025-03-08T10:08:39.231673-08:00,1017.0153198242188,10.726356,10726.356 +11469,2025-03-08T10:08:49.958738-08:00,1017.033447265625,10.727065,10727.065 +11470,2025-03-08T10:09:00.680523-08:00,1017.010498046875,10.721785,10721.785 +11471,2025-03-08T10:09:11.413373-08:00,1017.01708984375,10.73285,10732.85 +11472,2025-03-08T10:09:22.134528-08:00,1017.0353393554688,10.721155,10721.155 +11473,2025-03-08T10:09:32.869004-08:00,1017.0192260742188,10.734476,10734.476 +11474,2025-03-08T10:09:43.596435-08:00,1017.0292358398438,10.727431,10727.431 +11475,2025-03-08T10:09:54.318475-08:00,1016.9913940429688,10.72204,10722.04 +11476,2025-03-08T10:10:05.054313-08:00,1017.0177612304688,10.735838,10735.838 +11477,2025-03-08T10:10:15.773315-08:00,1016.998291015625,10.719002,10719.002 +11478,2025-03-08T10:10:26.503806-08:00,1016.9866943359375,10.730491,10730.491 +11479,2025-03-08T10:10:37.236547-08:00,1017.02001953125,10.732741,10732.741 +11480,2025-03-08T10:10:47.961498-08:00,1017.0033569335938,10.724951,10724.951 +11481,2025-03-08T10:10:58.698717-08:00,1017.0284423828125,10.737219,10737.219 +11482,2025-03-08T10:11:09.427347-08:00,1017.0084228515625,10.72863,10728.63 +11483,2025-03-08T10:11:20.154316-08:00,1017.025146484375,10.726969,10726.969 +11484,2025-03-08T10:11:30.885529-08:00,1017.0367431640625,10.731213,10731.213 +11485,2025-03-08T10:11:41.605725-08:00,1016.99560546875,10.720196,10720.196 +11486,2025-03-08T10:11:52.339442-08:00,1016.9972534179688,10.733717,10733.717 +11487,2025-03-08T10:12:03.058684-08:00,1017.00390625,10.719242,10719.242 +11488,2025-03-08T10:12:13.791315-08:00,1016.9710083007812,10.732631,10732.631 +11489,2025-03-08T10:12:24.520317-08:00,1016.9742431640625,10.729002,10729.002 +11490,2025-03-08T10:12:35.253439-08:00,1016.9742431640625,10.733122,10733.122 +11491,2025-03-08T10:12:45.974399-08:00,1016.9576416015625,10.72096,10720.96 +11492,2025-03-08T10:12:56.704316-08:00,1016.961181640625,10.729917,10729.917 +11493,2025-03-08T10:13:07.434342-08:00,1016.9395141601562,10.730026,10730.026 +11494,2025-03-08T10:13:18.162591-08:00,1016.9724731445312,10.728249,10728.249 +11495,2025-03-08T10:13:28.886315-08:00,1016.9791259765625,10.723724,10723.724 +11496,2025-03-08T10:13:39.622316-08:00,1016.9640502929688,10.736001,10736.001 +11497,2025-03-08T10:13:50.347235-08:00,1016.9360961914062,10.724919,10724.919 +11498,2025-03-08T10:14:01.080312-08:00,1016.9427490234375,10.733077,10733.077 +11499,2025-03-08T10:14:11.806311-08:00,1016.9691162109375,10.725999,10725.999 +11500,2025-03-08T10:14:22.536483-08:00,1016.9346313476562,10.730172,10730.172 +11501,2025-03-08T10:14:33.266313-08:00,1016.9346313476562,10.72983,10729.83 +11502,2025-03-08T10:14:43.991443-08:00,1016.9346313476562,10.72513,10725.13 +11503,2025-03-08T10:14:54.718312-08:00,1016.9442138671875,10.726869,10726.869 +11504,2025-03-08T10:15:05.443316-08:00,1016.9593505859375,10.725004,10725.004 +11505,2025-03-08T10:15:16.173021-08:00,1016.9527587890625,10.729705,10729.705 +11506,2025-03-08T10:15:26.901314-08:00,1016.9395141601562,10.728293,10728.293 +11507,2025-03-08T10:15:37.636347-08:00,1016.919677734375,10.735033,10735.033 +11508,2025-03-08T10:15:48.367493-08:00,1016.961181640625,10.731146,10731.146 +11509,2025-03-08T10:15:59.088315-08:00,1016.94140625,10.720822,10720.822 +11510,2025-03-08T10:16:09.828306-08:00,1016.9495239257812,10.739991,10739.991 +11511,2025-03-08T10:16:20.549413-08:00,1016.939697265625,10.721107,10721.107 +11512,2025-03-08T10:16:31.280311-08:00,1016.966064453125,10.730898,10730.898 +11513,2025-03-08T10:16:42.006508-08:00,1016.9478149414062,10.726197,10726.197 +11514,2025-03-08T10:16:52.746948-08:00,1016.9710083007812,10.74044,10740.44 +11515,2025-03-08T10:17:03.472520-08:00,1016.9776611328125,10.725572,10725.572 +11516,2025-03-08T10:17:14.202532-08:00,1016.9957885742188,10.730012,10730.012 +11517,2025-03-08T10:17:24.927375-08:00,1016.9561157226562,10.724843,10724.843 +11518,2025-03-08T10:17:35.658497-08:00,1016.985595703125,10.731122,10731.122 +11519,2025-03-08T10:17:46.390431-08:00,1017.0087280273438,10.731934,10731.934 +11520,2025-03-08T10:17:57.110312-08:00,1016.99560546875,10.719881,10719.881 +11521,2025-03-08T10:18:07.848325-08:00,1017.0070190429688,10.738013,10738.013 +11522,2025-03-08T10:18:18.569337-08:00,1016.993896484375,10.721012,10721.012 +11523,2025-03-08T10:18:29.297526-08:00,1017.0167236328125,10.728189,10728.189 +11524,2025-03-08T10:18:40.037736-08:00,1017.0120239257812,10.74021,10740.21 +11525,2025-03-08T10:18:50.767484-08:00,1017.0084228515625,10.729748,10729.748 +11526,2025-03-08T10:19:01.489388-08:00,1017.016845703125,10.721904,10721.904 +11527,2025-03-08T10:19:12.226559-08:00,1017.0067138671875,10.737171,10737.171 +11528,2025-03-08T10:19:22.957505-08:00,1016.9869384765625,10.730946,10730.946 +11529,2025-03-08T10:19:33.683328-08:00,1016.995361328125,10.725823,10725.823 +11530,2025-03-08T10:19:44.421342-08:00,1016.9785766601562,10.738014,10738.014 +11531,2025-03-08T10:19:55.147756-08:00,1017.0018920898438,10.726414,10726.414 +11532,2025-03-08T10:20:05.881316-08:00,1016.9935302734375,10.73356,10733.56 +11533,2025-03-08T10:20:16.614313-08:00,1016.9884643554688,10.732997,10732.997 +11534,2025-03-08T10:20:27.343510-08:00,1016.9290771484375,10.729197,10729.197 +11535,2025-03-08T10:20:38.071725-08:00,1016.919189453125,10.728215,10728.215 +11536,2025-03-08T10:20:48.811362-08:00,1016.9768676757812,10.739637,10739.637 +11537,2025-03-08T10:20:59.538408-08:00,1016.9667358398438,10.727046,10727.046 +11538,2025-03-08T10:21:10.263310-08:00,1016.9271850585938,10.724902,10724.902 +11539,2025-03-08T10:21:20.999316-08:00,1016.965087890625,10.736006,10736.006 +11540,2025-03-08T10:21:31.725725-08:00,1016.9618530273438,10.726409,10726.409 +11541,2025-03-08T10:21:42.455315-08:00,1016.9384155273438,10.72959,10729.59 +11542,2025-03-08T10:21:53.183323-08:00,1016.93017578125,10.728008,10728.008 +11543,2025-03-08T10:22:03.918532-08:00,1016.9268798828125,10.735209,10735.209 +11544,2025-03-08T10:22:14.641314-08:00,1016.9039306640625,10.722782,10722.782 +11545,2025-03-08T10:22:25.373316-08:00,1016.8922119140625,10.732002,10732.002 +11546,2025-03-08T10:22:36.113484-08:00,1016.9249877929688,10.740168,10740.168 +11547,2025-03-08T10:22:46.843339-08:00,1016.8970947265625,10.729855,10729.855 +11548,2025-03-08T10:22:57.573530-08:00,1016.8771362304688,10.730191,10730.191 +11549,2025-03-08T10:23:08.298497-08:00,1016.8870239257812,10.724967,10724.967 +11550,2025-03-08T10:23:19.031311-08:00,1016.8919677734375,10.732814,10732.814 +11551,2025-03-08T10:23:29.766314-08:00,1016.8984375,10.735003,10735.003 +11552,2025-03-08T10:23:40.491505-08:00,1016.8734130859375,10.725191,10725.191 +11553,2025-03-08T10:23:51.230550-08:00,1016.885009765625,10.739045,10739.045 +11554,2025-03-08T10:24:01.969319-08:00,1016.8751831054688,10.738769,10738.769 +11555,2025-03-08T10:24:12.699374-08:00,1016.9113159179688,10.730055,10730.055 +11556,2025-03-08T10:24:23.425111-08:00,1016.8599853515625,10.725737,10725.737 +11557,2025-03-08T10:24:34.158312-08:00,1016.8961181640625,10.733201,10733.201 +11558,2025-03-08T10:24:44.890511-08:00,1016.9110717773438,10.732199,10732.199 +11559,2025-03-08T10:24:55.613645-08:00,1016.8648681640625,10.723134,10723.134 +11560,2025-03-08T10:25:06.340362-08:00,1016.8881225585938,10.726717,10726.717 +11561,2025-03-08T10:25:17.068054-08:00,1016.8568725585938,10.727692,10727.692 +11562,2025-03-08T10:25:27.803312-08:00,1016.8948364257812,10.735258,10735.258 +11563,2025-03-08T10:25:38.529315-08:00,1016.8665771484375,10.726003,10726.003 +11564,2025-03-08T10:25:49.258705-08:00,1016.8831176757812,10.72939,10729.39 +11565,2025-03-08T10:25:59.987314-08:00,1016.8765869140625,10.728609,10728.609 +11566,2025-03-08T10:26:10.721348-08:00,1016.8831176757812,10.734034,10734.034 +11567,2025-03-08T10:26:21.457495-08:00,1016.8931274414062,10.736147,10736.147 +11568,2025-03-08T10:26:32.183365-08:00,1016.8630981445312,10.72587,10725.87 +11569,2025-03-08T10:26:42.919343-08:00,1016.87158203125,10.735978,10735.978 +11570,2025-03-08T10:26:53.658313-08:00,1016.8743896484375,10.73897,10738.97 +11571,2025-03-08T10:27:04.385490-08:00,1016.8859252929688,10.727177,10727.177 +11572,2025-03-08T10:27:15.120954-08:00,1016.8841552734375,10.735464,10735.464 +11573,2025-03-08T10:27:25.858319-08:00,1016.9053955078125,10.737365,10737.365 +11574,2025-03-08T10:27:36.603333-08:00,1016.9103393554688,10.745014,10745.014 +11575,2025-03-08T10:27:47.330374-08:00,1016.9185180664062,10.727041,10727.041 +11576,2025-03-08T10:27:58.065954-08:00,1016.9263916015625,10.73558,10735.58 +11577,2025-03-08T10:28:08.804309-08:00,1016.9295043945312,10.738355,10738.355 +11578,2025-03-08T10:28:19.545596-08:00,1016.9344482421875,10.741287,10741.287 +11579,2025-03-08T10:28:30.270330-08:00,1016.9640502929688,10.724734,10724.734 +11580,2025-03-08T10:28:41.009511-08:00,1016.9060668945312,10.739181,10739.181 +11581,2025-03-08T10:28:51.736519-08:00,1016.9255981445312,10.727008,10727.008 +11582,2025-03-08T10:29:02.475486-08:00,1016.8842163085938,10.738967,10738.967 +11583,2025-03-08T10:29:13.207673-08:00,1016.8792114257812,10.732187,10732.187 +11584,2025-03-08T10:29:23.938350-08:00,1016.8643188476562,10.730677,10730.677 +11585,2025-03-08T10:29:34.677312-08:00,1016.88720703125,10.738962,10738.962 +11586,2025-03-08T10:29:45.407343-08:00,1016.8640747070312,10.730031,10730.031 +11587,2025-03-08T10:29:56.144559-08:00,1016.8740844726562,10.737216,10737.216 +11588,2025-03-08T10:30:06.881414-08:00,1016.8786010742188,10.736855,10736.855 +11589,2025-03-08T10:30:17.610350-08:00,1016.8720092773438,10.728936,10728.936 +11590,2025-03-08T10:30:28.339580-08:00,1016.8853149414062,10.72923,10729.23 +11591,2025-03-08T10:30:39.079485-08:00,1016.908447265625,10.739905,10739.905 +11592,2025-03-08T10:30:49.810027-08:00,1016.8721923828125,10.730542,10730.542 +11593,2025-03-08T10:31:00.535524-08:00,1016.8953247070312,10.725497,10725.497 +11594,2025-03-08T10:31:11.278793-08:00,1016.900146484375,10.743269,10743.269 +11595,2025-03-08T10:31:22.001317-08:00,1016.886962890625,10.722524,10722.524 +11596,2025-03-08T10:31:32.738463-08:00,1016.8701782226562,10.737146,10737.146 +11597,2025-03-08T10:31:43.473315-08:00,1016.8833618164062,10.734852,10734.852 +11598,2025-03-08T10:31:54.202554-08:00,1016.9014282226562,10.729239,10729.239 +11599,2025-03-08T10:32:04.940313-08:00,1016.8964233398438,10.737759,10737.759 +11600,2025-03-08T10:32:15.675516-08:00,1016.86328125,10.735203,10735.203 +11601,2025-03-08T10:32:26.405549-08:00,1016.886474609375,10.730033,10730.033 +11602,2025-03-08T10:32:37.136446-08:00,1016.856689453125,10.730897,10730.897 +11603,2025-03-08T10:32:47.207908-08:00,1016.87158203125,10.071462,10071.462 +11604,2025-03-08T10:32:47.873523-08:00,1016.8648681640625,0.665615,665.615 +11605,2025-03-08T10:32:58.611481-08:00,1016.818603515625,10.737958,10737.958 +11606,2025-03-08T10:33:09.342694-08:00,1016.817138671875,10.731213,10731.213 +11607,2025-03-08T10:33:20.073313-08:00,1016.8616333007812,10.730619,10730.619 +11608,2025-03-08T10:33:30.805420-08:00,1016.841796875,10.732107,10732.107 +11609,2025-03-08T10:33:41.541310-08:00,1016.8778686523438,10.73589,10735.89 +11610,2025-03-08T10:33:52.265389-08:00,1016.8219604492188,10.724079,10724.079 +11611,2025-03-08T10:33:58.888064-08:00,1016.8499145507812,6.622675,6622.675 +11612,2025-03-08T10:34:02.997389-08:00,1016.8331298828125,4.109325,4109.325 +11613,2025-03-08T10:34:13.726521-08:00,1016.8250122070312,10.729132,10729.132 +11614,2025-03-08T10:34:24.459307-08:00,1016.841796875,10.732786,10732.786 +11615,2025-03-08T10:34:35.195096-08:00,1016.818359375,10.735789,10735.789 +11616,2025-03-08T10:34:45.928450-08:00,1016.8448486328125,10.733354,10733.354 +11617,2025-03-08T10:34:56.651602-08:00,1016.806884765625,10.723152,10723.152 +11618,2025-03-08T10:35:07.388310-08:00,1016.8250122070312,10.736708,10736.708 +11619,2025-03-08T10:35:18.116503-08:00,1016.8219604492188,10.728193,10728.193 +11620,2025-03-08T10:35:28.859370-08:00,1016.8367309570312,10.742867,10742.867 +11621,2025-03-08T10:35:39.580313-08:00,1016.8219604492188,10.720943,10720.943 +11622,2025-03-08T10:35:50.310315-08:00,1016.8021240234375,10.730002,10730.002 +11623,2025-03-08T10:36:01.047730-08:00,1016.8021240234375,10.737415,10737.415 +11624,2025-03-08T10:36:11.772313-08:00,1016.8234252929688,10.724583,10724.583 +11625,2025-03-08T10:36:22.504528-08:00,1016.8135375976562,10.732215,10732.215 +11626,2025-03-08T10:36:33.236509-08:00,1016.80029296875,10.731981,10731.981 +11627,2025-03-08T10:36:43.960314-08:00,1016.7855224609375,10.723805,10723.805 +11628,2025-03-08T10:36:54.687192-08:00,1016.7855224609375,10.726878,10726.878 +11629,2025-03-08T10:37:05.417730-08:00,1016.8333740234375,10.730538,10730.538 +11630,2025-03-08T10:37:16.152311-08:00,1016.8384399414062,10.734581,10734.581 +11631,2025-03-08T10:37:26.880738-08:00,1016.805419921875,10.728427,10728.427 +11632,2025-03-08T10:37:37.601341-08:00,1016.7954711914062,10.720603,10720.603 +11633,2025-03-08T10:37:48.335423-08:00,1016.788818359375,10.734082,10734.082 +11634,2025-03-08T10:37:59.064685-08:00,1016.8218994140625,10.729262,10729.262 +11635,2025-03-08T10:38:09.792420-08:00,1016.82373046875,10.727735,10727.735 +11636,2025-03-08T10:38:20.516534-08:00,1016.8218994140625,10.724114,10724.114 +11637,2025-03-08T10:38:31.250712-08:00,1016.8218994140625,10.734178,10734.178 +11638,2025-03-08T10:38:41.982035-08:00,1016.8189086914062,10.731323,10731.323 +11639,2025-03-08T10:38:52.705311-08:00,1016.8103637695312,10.723276,10723.276 +11640,2025-03-08T10:39:03.430525-08:00,1016.8170166015625,10.725214,10725.214 +11641,2025-03-08T10:39:14.166373-08:00,1016.8154907226562,10.735848,10735.848 +11642,2025-03-08T10:39:24.888487-08:00,1016.80224609375,10.722114,10722.114 +11643,2025-03-08T10:39:35.618308-08:00,1016.807373046875,10.729821,10729.821 +11644,2025-03-08T10:39:46.346331-08:00,1016.795654296875,10.728023,10728.023 +11645,2025-03-08T10:39:57.068459-08:00,1016.7923583984375,10.722128,10722.128 +11646,2025-03-08T10:40:07.792587-08:00,1016.7974243164062,10.724128,10724.128 +11647,2025-03-08T10:40:18.531089-08:00,1016.802490234375,10.738502,10738.502 +11648,2025-03-08T10:40:29.254316-08:00,1016.787841796875,10.723227,10723.227 +11649,2025-03-08T10:40:39.985634-08:00,1016.7910766601562,10.731318,10731.318 +11650,2025-03-08T10:40:50.707339-08:00,1016.7876586914062,10.721705,10721.705 +11651,2025-03-08T10:41:01.440411-08:00,1016.7943725585938,10.733072,10733.072 +11652,2025-03-08T10:41:12.174498-08:00,1016.8126831054688,10.734087,10734.087 +11653,2025-03-08T10:41:22.898312-08:00,1016.8045043945312,10.723814,10723.814 +11654,2025-03-08T10:41:33.636516-08:00,1016.8011474609375,10.738204,10738.204 +11655,2025-03-08T10:41:44.364315-08:00,1016.8011474609375,10.727799,10727.799 +11656,2025-03-08T10:41:55.100496-08:00,1016.7679443359375,10.736181,10736.181 +11657,2025-03-08T10:42:05.825521-08:00,1016.7926635742188,10.725025,10725.025 +11658,2025-03-08T10:42:16.556535-08:00,1016.7845458984375,10.731014,10731.014 +11659,2025-03-08T10:42:27.284383-08:00,1016.8094482421875,10.727848,10727.848 +11660,2025-03-08T10:42:38.022312-08:00,1016.799560546875,10.737929,10737.929 +11661,2025-03-08T10:42:48.749317-08:00,1016.7979736328125,10.727005,10727.005 +11662,2025-03-08T10:42:59.480691-08:00,1016.79638671875,10.731374,10731.374 +11663,2025-03-08T10:43:10.207502-08:00,1016.7864990234375,10.726811,10726.811 +11664,2025-03-08T10:43:20.930529-08:00,1016.7864990234375,10.723027,10723.027 +11665,2025-03-08T10:43:31.657527-08:00,1016.8048706054688,10.726998,10726.998 +11666,2025-03-08T10:43:42.389348-08:00,1016.7617797851562,10.731821,10731.821 +11667,2025-03-08T10:43:53.111026-08:00,1016.79638671875,10.721678,10721.678 +11668,2025-03-08T10:44:03.848316-08:00,1016.7816162109375,10.73729,10737.29 +11669,2025-03-08T10:44:14.572581-08:00,1016.802978515625,10.724265,10724.265 +11670,2025-03-08T10:44:25.303824-08:00,1016.7831420898438,10.731243,10731.243 +11671,2025-03-08T10:44:36.025312-08:00,1016.8013916015625,10.721488,10721.488 +11672,2025-03-08T10:44:46.757316-08:00,1016.7801513671875,10.732004,10732.004 +11673,2025-03-08T10:44:57.479589-08:00,1016.7848510742188,10.722273,10722.273 +11674,2025-03-08T10:45:08.211314-08:00,1016.7767333984375,10.731725,10731.725 +11675,2025-03-08T10:45:18.935398-08:00,1016.798095703125,10.724084,10724.084 +11676,2025-03-08T10:45:29.659518-08:00,1016.80322265625,10.72412,10724.12 +11677,2025-03-08T10:45:40.388624-08:00,1016.7737426757812,10.729106,10729.106 +11678,2025-03-08T10:45:51.118659-08:00,1016.7703857421875,10.730035,10730.035 +11679,2025-03-08T10:46:01.851684-08:00,1016.7785034179688,10.733025,10733.025 +11680,2025-03-08T10:46:12.580155-08:00,1016.7770385742188,10.728471,10728.471 +11681,2025-03-08T10:46:23.301314-08:00,1016.7853393554688,10.721159,10721.159 +11682,2025-03-08T10:46:34.029525-08:00,1016.74560546875,10.728211,10728.211 +11683,2025-03-08T10:46:44.759333-08:00,1016.786865234375,10.729808,10729.808 +11684,2025-03-08T10:46:55.482345-08:00,1016.7687377929688,10.723012,10723.012 +11685,2025-03-08T10:47:06.210686-08:00,1016.7771606445312,10.728341,10728.341 +11686,2025-03-08T10:47:16.941346-08:00,1016.775390625,10.73066,10730.66 +11687,2025-03-08T10:47:27.667310-08:00,1016.775390625,10.725964,10725.964 +11688,2025-03-08T10:47:38.385343-08:00,1016.80029296875,10.718033,10718.033 +11689,2025-03-08T10:47:49.117402-08:00,1016.7672729492188,10.732059,10732.059 +11690,2025-03-08T10:47:59.838623-08:00,1016.7987670898438,10.721221,10721.221 +11691,2025-03-08T10:48:10.563315-08:00,1016.790283203125,10.724692,10724.692 +11692,2025-03-08T10:48:21.294467-08:00,1016.7921752929688,10.731152,10731.152 +11693,2025-03-08T10:48:32.014389-08:00,1016.8035888671875,10.719922,10719.922 +11694,2025-03-08T10:48:42.739050-08:00,1016.8167114257812,10.724661,10724.661 +11695,2025-03-08T10:48:53.469323-08:00,1016.7986450195312,10.730273,10730.273 +11696,2025-03-08T10:49:04.195361-08:00,1016.8118896484375,10.726038,10726.038 +11697,2025-03-08T10:49:14.921723-08:00,1016.7986450195312,10.726362,10726.362 +11698,2025-03-08T10:49:25.655314-08:00,1016.8317260742188,10.733591,10733.591 +11699,2025-03-08T10:49:36.378536-08:00,1016.83837890625,10.723222,10723.222 +11700,2025-03-08T10:49:47.100509-08:00,1016.844970703125,10.721973,10721.973 +11701,2025-03-08T10:49:57.829313-08:00,1016.8154907226562,10.728804,10728.804 +11702,2025-03-08T10:50:08.560218-08:00,1016.8418579101562,10.730905,10730.905 +11703,2025-03-08T10:50:19.280734-08:00,1016.8470458984375,10.720516,10720.516 +11704,2025-03-08T10:50:30.011311-08:00,1016.8187255859375,10.730577,10730.577 +11705,2025-03-08T10:50:40.738407-08:00,1016.851806640625,10.727096,10727.096 +11706,2025-03-08T10:50:51.463527-08:00,1016.8568725585938,10.72512,10725.12 +11707,2025-03-08T10:51:02.190088-08:00,1016.8468627929688,10.726561,10726.561 +11708,2025-03-08T10:51:12.916378-08:00,1016.833740234375,10.72629,10726.29 +11709,2025-03-08T10:51:23.650539-08:00,1016.876708984375,10.734161,10734.161 +11710,2025-03-08T10:51:34.373335-08:00,1016.8372802734375,10.722796,10722.796 +11711,2025-03-08T10:51:45.100316-08:00,1016.8453979492188,10.726981,10726.981 +11712,2025-03-08T10:51:55.829494-08:00,1016.83544921875,10.729178,10729.178 +11713,2025-03-08T10:52:06.558315-08:00,1016.83544921875,10.728821,10728.821 +11714,2025-03-08T10:52:17.288609-08:00,1016.8571166992188,10.730294,10730.294 +11715,2025-03-08T10:52:28.046634-08:00,1016.8273315429688,10.758025,10758.025 +11716,2025-03-08T10:52:38.777567-08:00,1016.8618774414062,10.730933,10730.933 +11717,2025-03-08T10:52:49.497165-08:00,1016.8948974609375,10.719598,10719.598 +11718,2025-03-08T10:53:00.235636-08:00,1016.8258056640625,10.738471,10738.471 +11719,2025-03-08T10:53:10.958569-08:00,1016.8389892578125,10.722933,10722.933 +11720,2025-03-08T10:53:21.697695-08:00,1016.8521728515625,10.739126,10739.126 +11721,2025-03-08T10:53:32.422731-08:00,1016.8521728515625,10.725036,10725.036 +11722,2025-03-08T10:53:43.154778-08:00,1016.842041015625,10.732047,10732.047 +11723,2025-03-08T10:53:53.886747-08:00,1016.8504638671875,10.731969,10731.969 +11724,2025-03-08T10:54:04.609597-08:00,1016.8306274414062,10.72285,10722.85 +11725,2025-03-08T10:54:15.345827-08:00,1016.8552856445312,10.73623,10736.23 +11726,2025-03-08T10:54:26.073739-08:00,1016.8304443359375,10.727912,10727.912 +11727,2025-03-08T10:54:36.797562-08:00,1016.8238525390625,10.723823,10723.823 +11728,2025-03-08T10:54:47.533568-08:00,1016.8253173828125,10.736006,10736.006 +11729,2025-03-08T10:54:58.260643-08:00,1016.80224609375,10.727075,10727.075 +11730,2025-03-08T10:55:08.991650-08:00,1016.795654296875,10.731007,10731.007 +11731,2025-03-08T10:55:19.723605-08:00,1016.7789306640625,10.731955,10731.955 +11732,2025-03-08T10:55:30.451628-08:00,1016.7954711914062,10.728023,10728.023 +11733,2025-03-08T10:55:41.180772-08:00,1016.7870483398438,10.729144,10729.144 +11734,2025-03-08T10:55:51.911594-08:00,1016.7904663085938,10.730822,10730.822 +11735,2025-03-08T10:56:02.641034-08:00,1016.7706298828125,10.72944,10729.44 +11736,2025-03-08T10:56:13.372614-08:00,1016.7787475585938,10.73158,10731.58 +11737,2025-03-08T10:56:24.110598-08:00,1016.8001708984375,10.737984,10737.984 +11738,2025-03-08T10:56:34.835147-08:00,1016.7752075195312,10.724549,10724.549 +11739,2025-03-08T10:56:45.574630-08:00,1016.7584228515625,10.739483,10739.483 +11740,2025-03-08T10:56:56.302590-08:00,1016.7783813476562,10.72796,10727.96 +11741,2025-03-08T10:57:07.029745-08:00,1016.79638671875,10.727155,10727.155 +11742,2025-03-08T10:57:17.769141-08:00,1016.799560546875,10.739396,10739.396 +11743,2025-03-08T10:57:28.494838-08:00,1016.7962646484375,10.725697,10725.697 +11744,2025-03-08T10:57:39.224732-08:00,1016.7661743164062,10.729894,10729.894 +11745,2025-03-08T10:57:49.965432-08:00,1016.7842407226562,10.7407,10740.7 +11746,2025-03-08T10:58:00.689565-08:00,1016.8126831054688,10.724133,10724.133 +11747,2025-03-08T10:58:11.417750-08:00,1016.8060302734375,10.728185,10728.185 +11748,2025-03-08T10:58:22.145778-08:00,1016.784423828125,10.728028,10728.028 +11749,2025-03-08T10:58:32.880573-08:00,1016.7959594726562,10.734795,10734.795 +11750,2025-03-08T10:58:43.605774-08:00,1016.7974243164062,10.725201,10725.201 +11751,2025-03-08T10:58:54.339145-08:00,1016.779052734375,10.733371,10733.371 +11752,2025-03-08T10:59:05.067629-08:00,1016.782470703125,10.728484,10728.484 +11753,2025-03-08T10:59:15.797837-08:00,1016.813720703125,10.730208,10730.208 +11754,2025-03-08T10:59:26.521771-08:00,1016.8121948242188,10.723934,10723.934 +11755,2025-03-08T10:59:37.249770-08:00,1016.7807006835938,10.727999,10727.999 +11756,2025-03-08T10:59:47.980702-08:00,1016.813720703125,10.730932,10730.932 +11757,2025-03-08T10:59:58.701819-08:00,1016.8056030273438,10.721117,10721.117 +11758,2025-03-08T11:00:09.438642-08:00,1016.7971801757812,10.736823,10736.823 +11759,2025-03-08T11:00:20.168930-08:00,1016.8103637695312,10.730288,10730.288 +11760,2025-03-08T11:00:30.895838-08:00,1016.8088989257812,10.726908,10726.908 +11761,2025-03-08T11:00:41.617115-08:00,1016.8206176757812,10.721277,10721.277 +11762,2025-03-08T11:00:52.347675-08:00,1016.807373046875,10.73056,10730.56 +11763,2025-03-08T11:01:03.073801-08:00,1016.8055419921875,10.726126,10726.126 +11764,2025-03-08T11:01:13.796589-08:00,1016.787841796875,10.722788,10722.788 +11765,2025-03-08T11:01:24.525048-08:00,1016.8076782226562,10.728459,10728.459 +11766,2025-03-08T11:01:35.259866-08:00,1016.7991943359375,10.734818,10734.818 +11767,2025-03-08T11:01:45.982661-08:00,1016.8009643554688,10.722795,10722.795 +11768,2025-03-08T11:01:56.713567-08:00,1016.7943725585938,10.730906,10730.906 +11769,2025-03-08T11:02:07.438926-08:00,1016.8045043945312,10.725359,10725.359 +11770,2025-03-08T11:02:18.163564-08:00,1016.7762451171875,10.724638,10724.638 +11771,2025-03-08T11:02:28.885563-08:00,1016.7842407226562,10.721999,10721.999 +11772,2025-03-08T11:02:39.609566-08:00,1016.7860107421875,10.724003,10724.003 +11773,2025-03-08T11:02:50.336823-08:00,1016.7991943359375,10.727257,10727.257 +11774,2025-03-08T11:03:01.057563-08:00,1016.7862548828125,10.72074,10720.74 +11775,2025-03-08T11:03:11.788770-08:00,1016.7832641601562,10.731207,10731.207 +11776,2025-03-08T11:03:22.520692-08:00,1016.7864990234375,10.731922,10731.922 +11777,2025-03-08T11:03:33.247633-08:00,1016.7831420898438,10.726941,10726.941 +11778,2025-03-08T11:03:43.972953-08:00,1016.7801513671875,10.72532,10725.32 +11779,2025-03-08T11:03:54.700593-08:00,1016.7737426757812,10.72764,10727.64 +11780,2025-03-08T11:04:05.421448-08:00,1016.7572021484375,10.720855,10720.855 +11781,2025-03-08T11:04:16.152764-08:00,1016.7639770507812,10.731316,10731.316 +11782,2025-03-08T11:04:26.870564-08:00,1016.7870483398438,10.7178,10717.8 +11783,2025-03-08T11:04:37.596608-08:00,1016.7821655273438,10.726044,10726.044 +11784,2025-03-08T11:04:48.317735-08:00,1016.7560424804688,10.721127,10721.127 +11785,2025-03-08T11:04:59.044819-08:00,1016.7742309570312,10.727084,10727.084 +11786,2025-03-08T11:05:09.768563-08:00,1016.8023681640625,10.723744,10723.744 +11787,2025-03-08T11:05:20.500590-08:00,1016.7910766601562,10.732027,10732.027 +11788,2025-03-08T11:05:31.223560-08:00,1016.7831420898438,10.72297,10722.97 +11789,2025-03-08T11:05:41.950757-08:00,1016.7718505859375,10.727197,10727.197 +11790,2025-03-08T11:05:52.675563-08:00,1016.747314453125,10.724806,10724.806 +11791,2025-03-08T11:06:03.400816-08:00,1016.7888793945312,10.725253,10725.253 +11792,2025-03-08T11:06:14.121799-08:00,1016.767333984375,10.720983,10720.983 +11793,2025-03-08T11:06:24.853566-08:00,1016.76416015625,10.731767,10731.767 +11794,2025-03-08T11:06:35.578502-08:00,1016.77783203125,10.724936,10724.936 +11795,2025-03-08T11:06:46.294670-08:00,1016.7645874023438,10.716168,10716.168 +11796,2025-03-08T11:06:57.018665-08:00,1016.7548217773438,10.723995,10723.995 +11797,2025-03-08T11:07:07.744629-08:00,1016.7698974609375,10.725964,10725.964 +11798,2025-03-08T11:07:18.477568-08:00,1016.7899169921875,10.732939,10732.939 +11799,2025-03-08T11:07:29.204743-08:00,1016.7752075195312,10.727175,10727.175 +11800,2025-03-08T11:07:39.932135-08:00,1016.76220703125,10.727392,10727.392 +11801,2025-03-08T11:07:50.650975-08:00,1016.747314453125,10.71884,10718.84 +11802,2025-03-08T11:08:01.381741-08:00,1016.7723388671875,10.730766,10730.766 +11803,2025-03-08T11:08:12.106748-08:00,1016.8056030273438,10.725007,10725.007 +11804,2025-03-08T11:08:22.836340-08:00,1016.7775268554688,10.729592,10729.592 +11805,2025-03-08T11:08:33.561561-08:00,1016.7362670898438,10.725221,10725.221 +11806,2025-03-08T11:08:44.286765-08:00,1016.77783203125,10.725204,10725.204 +11807,2025-03-08T11:08:55.014561-08:00,1016.762939453125,10.727796,10727.796 +11808,2025-03-08T11:09:05.736871-08:00,1016.7859497070312,10.72231,10722.31 +11809,2025-03-08T11:09:16.462566-08:00,1016.7924194335938,10.725695,10725.695 +11810,2025-03-08T11:09:27.192807-08:00,1016.7564086914062,10.730241,10730.241 +11811,2025-03-08T11:09:37.922731-08:00,1016.7991943359375,10.729924,10729.924 +11812,2025-03-08T11:09:48.644690-08:00,1016.7957763671875,10.721959,10721.959 +11813,2025-03-08T11:09:59.373010-08:00,1016.7860717773438,10.72832,10728.32 +11814,2025-03-08T11:10:10.101563-08:00,1016.759521484375,10.728553,10728.553 +11815,2025-03-08T11:10:20.834576-08:00,1016.7697143554688,10.733013,10733.013 +11816,2025-03-08T11:10:31.556805-08:00,1016.7648315429688,10.722229,10722.229 +11817,2025-03-08T11:10:42.293583-08:00,1016.7764892578125,10.736778,10736.778 +11818,2025-03-08T11:10:53.017776-08:00,1016.7679443359375,10.724193,10724.193 +11819,2025-03-08T11:11:03.744038-08:00,1016.7862548828125,10.726262,10726.262 +11820,2025-03-08T11:11:14.479163-08:00,1016.7583618164062,10.735125,10735.125 +11821,2025-03-08T11:11:25.203875-08:00,1016.7564697265625,10.724712,10724.712 +11822,2025-03-08T11:11:35.938743-08:00,1016.7814331054688,10.734868,10734.868 +11823,2025-03-08T11:11:46.662566-08:00,1016.7515869140625,10.723823,10723.823 +11824,2025-03-08T11:11:57.391064-08:00,1016.7714233398438,10.728498,10728.498 +11825,2025-03-08T11:12:08.118563-08:00,1016.7566528320312,10.727499,10727.499 +11826,2025-03-08T11:12:18.848566-08:00,1016.74853515625,10.730003,10730.003 +11827,2025-03-08T11:12:29.574740-08:00,1016.7418823242188,10.726174,10726.174 +11828,2025-03-08T11:12:40.310790-08:00,1016.7352905273438,10.73605,10736.05 +11829,2025-03-08T11:12:51.030176-08:00,1016.7418823242188,10.719386,10719.386 +11830,2025-03-08T11:13:01.761025-08:00,1016.768310546875,10.730849,10730.849 +11831,2025-03-08T11:13:12.489588-08:00,1016.7598266601562,10.728563,10728.563 +11832,2025-03-08T11:13:23.218776-08:00,1016.7633056640625,10.729188,10729.188 +11833,2025-03-08T11:13:33.944592-08:00,1016.7467041015625,10.725816,10725.816 +11834,2025-03-08T11:13:44.681591-08:00,1016.75,10.736999,10736.999 +11835,2025-03-08T11:13:55.401961-08:00,1016.755126953125,10.72037,10720.37 +11836,2025-03-08T11:14:06.127679-08:00,1016.7335815429688,10.725718,10725.718 +11837,2025-03-08T11:14:16.855566-08:00,1016.75341796875,10.727887,10727.887 +11838,2025-03-08T11:14:27.578965-08:00,1016.7285766601562,10.723399,10723.399 +11839,2025-03-08T11:14:38.307562-08:00,1016.7650146484375,10.728597,10728.597 +11840,2025-03-08T11:14:49.038735-08:00,1016.7351684570312,10.731173,10731.173 +11841,2025-03-08T11:14:59.765343-08:00,1016.7400512695312,10.726608,10726.608 +11842,2025-03-08T11:15:10.488598-08:00,1016.725341796875,10.723255,10723.255 +11843,2025-03-08T11:15:21.219963-08:00,1016.7482299804688,10.731365,10731.365 +11844,2025-03-08T11:15:31.939564-08:00,1016.7648315429688,10.719601,10719.601 +11845,2025-03-08T11:15:42.665796-08:00,1016.7384643554688,10.726232,10726.232 +11846,2025-03-08T11:15:53.395761-08:00,1016.7185668945312,10.729965,10729.965 +11847,2025-03-08T11:16:04.125566-08:00,1016.7316284179688,10.729805,10729.805 +11848,2025-03-08T11:16:14.851594-08:00,1016.6904907226562,10.726028,10726.028 +11849,2025-03-08T11:16:25.581749-08:00,1016.733154296875,10.730155,10730.155 +11850,2025-03-08T11:16:36.312782-08:00,1016.7446899414062,10.731033,10731.033 +11851,2025-03-08T11:16:47.035567-08:00,1016.7431030273438,10.722785,10722.785 +11852,2025-03-08T11:16:57.763559-08:00,1016.7647094726562,10.727992,10727.992 +11853,2025-03-08T11:17:08.497747-08:00,1016.7793579101562,10.734188,10734.188 +11854,2025-03-08T11:17:19.227773-08:00,1016.759521484375,10.730026,10730.026 +11855,2025-03-08T11:17:29.960558-08:00,1016.7711181640625,10.732785,10732.785 +11856,2025-03-08T11:17:40.686737-08:00,1016.7380981445312,10.726179,10726.179 +11857,2025-03-08T11:17:51.416562-08:00,1016.7960815429688,10.729825,10729.825 +11858,2025-03-08T11:18:02.142562-08:00,1016.7647094726562,10.726,10726.0 +11859,2025-03-08T11:18:12.874015-08:00,1016.7514038085938,10.731453,10731.453 +11860,2025-03-08T11:18:23.606563-08:00,1016.7101440429688,10.732548,10732.548 +11861,2025-03-08T11:18:34.339567-08:00,1016.7313842773438,10.733004,10733.004 +11862,2025-03-08T11:18:45.062700-08:00,1016.74951171875,10.723133,10723.133 +11863,2025-03-08T11:18:55.796563-08:00,1016.744873046875,10.733863,10733.863 +11864,2025-03-08T11:19:06.523989-08:00,1016.7265625,10.727426,10727.426 +11865,2025-03-08T11:19:17.256348-08:00,1016.7281494140625,10.732359,10732.359 +11866,2025-03-08T11:19:27.978569-08:00,1016.7427978515625,10.722221,10722.221 +11867,2025-03-08T11:19:38.703933-08:00,1016.774169921875,10.725364,10725.364 +11868,2025-03-08T11:19:49.429635-08:00,1016.7100219726562,10.725702,10725.702 +11869,2025-03-08T11:20:00.158700-08:00,1016.74951171875,10.729065,10729.065 +11870,2025-03-08T11:20:10.894955-08:00,1016.7181396484375,10.736255,10736.255 +11871,2025-03-08T11:20:21.621564-08:00,1016.7443237304688,10.726609,10726.609 +11872,2025-03-08T11:20:32.357568-08:00,1016.7461547851562,10.736004,10736.004 +11873,2025-03-08T11:20:43.090753-08:00,1016.713134765625,10.733185,10733.185 +11874,2025-03-08T11:20:53.816565-08:00,1016.7095947265625,10.725812,10725.812 +11875,2025-03-08T11:21:04.549775-08:00,1016.7064208984375,10.73321,10733.21 +11876,2025-03-08T11:21:15.276882-08:00,1016.7145385742188,10.727107,10727.107 +11877,2025-03-08T11:21:26.003566-08:00,1016.7178344726562,10.726684,10726.684 +11878,2025-03-08T11:21:36.737694-08:00,1016.73095703125,10.734128,10734.128 +11879,2025-03-08T11:21:47.466771-08:00,1016.712646484375,10.729077,10729.077 +11880,2025-03-08T11:21:58.193565-08:00,1016.6976318359375,10.726794,10726.794 +11881,2025-03-08T11:22:08.918634-08:00,1016.7011108398438,10.725069,10725.069 +11882,2025-03-08T11:22:19.652592-08:00,1016.71923828125,10.733958,10733.958 +11883,2025-03-08T11:22:30.375657-08:00,1016.6976318359375,10.723065,10723.065 +11884,2025-03-08T11:22:41.114770-08:00,1016.7139282226562,10.739113,10739.113 +11885,2025-03-08T11:22:51.839565-08:00,1016.71728515625,10.724795,10724.795 +11886,2025-03-08T11:23:02.571752-08:00,1016.6891479492188,10.732187,10732.187 +11887,2025-03-08T11:23:13.306567-08:00,1016.720458984375,10.734815,10734.815 +11888,2025-03-08T11:23:24.041058-08:00,1016.7037353515625,10.734491,10734.491 +11889,2025-03-08T11:23:34.770798-08:00,1016.70703125,10.72974,10729.74 +11890,2025-03-08T11:23:45.501752-08:00,1016.717041015625,10.730954,10730.954 +11891,2025-03-08T11:23:56.233777-08:00,1016.7003173828125,10.732025,10732.025 +11892,2025-03-08T11:24:06.964667-08:00,1016.7283325195312,10.73089,10730.89 +11893,2025-03-08T11:24:17.686784-08:00,1016.6902465820312,10.722117,10722.117 +11894,2025-03-08T11:24:28.416656-08:00,1016.681884765625,10.729872,10729.872 +11895,2025-03-08T11:24:39.151774-08:00,1016.686767578125,10.735118,10735.118 +11896,2025-03-08T11:24:49.876613-08:00,1016.690185546875,10.724839,10724.839 +11897,2025-03-08T11:25:00.601566-08:00,1016.6799926757812,10.724953,10724.953 +11898,2025-03-08T11:25:11.334782-08:00,1016.6981201171875,10.733216,10733.216 +11899,2025-03-08T11:25:22.068611-08:00,1016.68017578125,10.733829,10733.829 +11900,2025-03-08T11:25:32.799057-08:00,1016.669921875,10.730446,10730.446 +11901,2025-03-08T11:25:43.518751-08:00,1016.668212890625,10.719694,10719.694 +11902,2025-03-08T11:25:54.252734-08:00,1016.6917114257812,10.733983,10733.983 +11903,2025-03-08T11:26:04.979768-08:00,1016.7079467773438,10.727034,10727.034 +11904,2025-03-08T11:26:15.706561-08:00,1016.6668701171875,10.726793,10726.793 +11905,2025-03-08T11:26:26.426564-08:00,1016.670166015625,10.720003,10720.003 +11906,2025-03-08T11:26:37.158892-08:00,1016.69970703125,10.732328,10732.328 +11907,2025-03-08T11:26:47.889748-08:00,1016.6817016601562,10.730856,10730.856 +11908,2025-03-08T11:26:58.617059-08:00,1016.6765747070312,10.727311,10727.311 +11909,2025-03-08T11:27:09.341782-08:00,1016.6962280273438,10.724723,10724.723 +11910,2025-03-08T11:27:20.067920-08:00,1016.6911010742188,10.726138,10726.138 +11911,2025-03-08T11:27:30.798751-08:00,1016.6565551757812,10.730831,10730.831 +11912,2025-03-08T11:27:41.530956-08:00,1016.659912109375,10.732205,10732.205 +11913,2025-03-08T11:27:52.257716-08:00,1016.6828002929688,10.72676,10726.76 +11914,2025-03-08T11:28:02.980566-08:00,1016.6761474609375,10.72285,10722.85 +11915,2025-03-08T11:28:13.706588-08:00,1016.677978515625,10.726022,10726.022 +11916,2025-03-08T11:28:24.445566-08:00,1016.6498413085938,10.738978,10738.978 +11917,2025-03-08T11:28:35.169018-08:00,1016.6743774414062,10.723452,10723.452 +11918,2025-03-08T11:28:45.897563-08:00,1016.6743774414062,10.728545,10728.545 +11919,2025-03-08T11:28:56.626562-08:00,1016.6498413085938,10.728999,10728.999 +11920,2025-03-08T11:29:07.351978-08:00,1016.6514282226562,10.725416,10725.416 +11921,2025-03-08T11:29:18.085281-08:00,1016.633056640625,10.733303,10733.303 +11922,2025-03-08T11:29:28.811690-08:00,1016.646240234375,10.726409,10726.409 +11923,2025-03-08T11:29:39.544375-08:00,1016.6595458984375,10.732685,10732.685 +11924,2025-03-08T11:29:50.268074-08:00,1016.646240234375,10.723699,10723.699 +11925,2025-03-08T11:30:00.999563-08:00,1016.66943359375,10.731489,10731.489 +11926,2025-03-08T11:30:11.724737-08:00,1016.6481323242188,10.725174,10725.174 +11927,2025-03-08T11:30:22.463561-08:00,1016.6150512695312,10.738824,10738.824 +11928,2025-03-08T11:30:33.193767-08:00,1016.6217041015625,10.730206,10730.206 +11929,2025-03-08T11:30:43.923767-08:00,1016.588623046875,10.73,10730.0 +11930,2025-03-08T11:30:54.642565-08:00,1016.6328125,10.718798,10718.798 +11931,2025-03-08T11:31:05.378706-08:00,1016.5982666015625,10.736141,10736.141 +11932,2025-03-08T11:31:16.103720-08:00,1016.6281127929688,10.725014,10725.014 +11933,2025-03-08T11:31:26.827567-08:00,1016.637939453125,10.723847,10723.847 +11934,2025-03-08T11:31:37.554435-08:00,1016.6412353515625,10.726868,10726.868 +11935,2025-03-08T11:31:48.282709-08:00,1016.6707763671875,10.728274,10728.274 +11936,2025-03-08T11:31:59.014783-08:00,1016.6395263671875,10.732074,10732.074 +11937,2025-03-08T11:32:09.738787-08:00,1016.6065673828125,10.724004,10724.004 +11938,2025-03-08T11:32:20.465569-08:00,1016.6278076171875,10.726782,10726.782 +11939,2025-03-08T11:32:31.203752-08:00,1016.6378173828125,10.738183,10738.183 +11940,2025-03-08T11:32:41.928564-08:00,1016.6062622070312,10.724812,10724.812 +11941,2025-03-08T11:32:52.651672-08:00,1016.6309204101562,10.723108,10723.108 +11942,2025-03-08T11:33:03.385667-08:00,1016.622802734375,10.733995,10733.995 +11943,2025-03-08T11:33:14.115566-08:00,1016.596435546875,10.729899,10729.899 +11944,2025-03-08T11:33:24.840965-08:00,1016.5831909179688,10.725399,10725.399 +11945,2025-03-08T11:33:35.571578-08:00,1016.584716796875,10.730613,10730.613 +11946,2025-03-08T11:33:46.290566-08:00,1016.6060791015625,10.718988,10718.988 +11947,2025-03-08T11:33:57.023115-08:00,1016.59130859375,10.732549,10732.549 +11948,2025-03-08T11:34:07.744678-08:00,1016.5648193359375,10.721563,10721.563 +11949,2025-03-08T11:34:18.476786-08:00,1016.6045532226562,10.732108,10732.108 +11950,2025-03-08T11:34:29.199766-08:00,1016.5797119140625,10.72298,10722.98 +11951,2025-03-08T11:34:39.932565-08:00,1016.5862426757812,10.732799,10732.799 +11952,2025-03-08T11:34:50.663642-08:00,1016.6060791015625,10.731077,10731.077 +11953,2025-03-08T11:35:01.384561-08:00,1016.56640625,10.720919,10720.919 +11954,2025-03-08T11:35:12.118567-08:00,1016.6012573242188,10.734006,10734.006 +11955,2025-03-08T11:35:22.845959-08:00,1016.6012573242188,10.727392,10727.392 +11956,2025-03-08T11:35:33.576563-08:00,1016.6109619140625,10.730604,10730.604 +11957,2025-03-08T11:35:44.306562-08:00,1016.589599609375,10.729999,10729.999 +11958,2025-03-08T11:35:55.034741-08:00,1016.5829467773438,10.728179,10728.179 +11959,2025-03-08T11:36:05.756567-08:00,1016.5859985351562,10.721826,10721.826 +11960,2025-03-08T11:36:16.488791-08:00,1016.577880859375,10.732224,10732.224 +11961,2025-03-08T11:36:27.218562-08:00,1016.5859985351562,10.729771,10729.771 +11962,2025-03-08T11:36:37.943678-08:00,1016.5845336914062,10.725116,10725.116 +11963,2025-03-08T11:36:48.671721-08:00,1016.579345703125,10.728043,10728.043 +11964,2025-03-08T11:36:59.405729-08:00,1016.5992431640625,10.734008,10734.008 +11965,2025-03-08T11:37:10.132568-08:00,1016.577880859375,10.726839,10726.839 +11966,2025-03-08T11:37:20.859151-08:00,1016.5926513671875,10.726583,10726.583 +11967,2025-03-08T11:37:31.594641-08:00,1016.5992431640625,10.73549,10735.49 +11968,2025-03-08T11:37:42.329769-08:00,1016.5513916015625,10.735128,10735.128 +11969,2025-03-08T11:37:53.054754-08:00,1016.5859985351562,10.724985,10724.985 +11970,2025-03-08T11:38:03.792592-08:00,1016.5977172851562,10.737838,10737.838 +11971,2025-03-08T11:38:14.513977-08:00,1016.594482421875,10.721385,10721.385 +11972,2025-03-08T11:38:25.242597-08:00,1016.594482421875,10.72862,10728.62 +11973,2025-03-08T11:38:35.974566-08:00,1016.6239013671875,10.731969,10731.969 +11974,2025-03-08T11:38:46.699558-08:00,1016.5878295898438,10.724992,10724.992 +11975,2025-03-08T11:38:57.425703-08:00,1016.5974731445312,10.726145,10726.145 +11976,2025-03-08T11:39:08.155568-08:00,1016.5695190429688,10.729865,10729.865 +11977,2025-03-08T11:39:18.887787-08:00,1016.5695190429688,10.732219,10732.219 +11978,2025-03-08T11:39:29.611564-08:00,1016.5909423828125,10.723777,10723.777 +11979,2025-03-08T11:39:40.339802-08:00,1016.5695190429688,10.728238,10728.238 +11980,2025-03-08T11:39:51.073763-08:00,1016.5927124023438,10.733961,10733.961 +11981,2025-03-08T11:40:01.806566-08:00,1016.5711059570312,10.732803,10732.803 +11982,2025-03-08T11:40:12.533572-08:00,1016.5728759765625,10.727006,10727.006 +11983,2025-03-08T11:40:23.262736-08:00,1016.5728759765625,10.729164,10729.164 +11984,2025-03-08T11:40:33.991808-08:00,1016.5531005859375,10.729072,10729.072 +11985,2025-03-08T11:40:44.717561-08:00,1016.57763671875,10.725753,10725.753 +11986,2025-03-08T11:40:55.446596-08:00,1016.5662231445312,10.729035,10729.035 +11987,2025-03-08T11:41:06.175780-08:00,1016.5842895507812,10.729184,10729.184 +11988,2025-03-08T11:41:16.904093-08:00,1016.600830078125,10.728313,10728.313 +11989,2025-03-08T11:41:27.642689-08:00,1016.5662231445312,10.738596,10738.596 +11990,2025-03-08T11:41:38.373619-08:00,1016.5578002929688,10.73093,10730.93 +11991,2025-03-08T11:41:49.095636-08:00,1016.5578002929688,10.722017,10722.017 +11992,2025-03-08T11:41:59.829591-08:00,1016.57763671875,10.733955,10733.955 +11993,2025-03-08T11:42:10.560568-08:00,1016.5795288085938,10.730977,10730.977 +11994,2025-03-08T11:42:21.288751-08:00,1016.5379638671875,10.728183,10728.183 +11995,2025-03-08T11:42:32.020586-08:00,1016.5578002929688,10.731835,10731.835 +11996,2025-03-08T11:42:42.759566-08:00,1016.5578002929688,10.73898,10738.98 +11997,2025-03-08T11:42:53.479902-08:00,1016.55126953125,10.720336,10720.336 +11998,2025-03-08T11:43:04.213659-08:00,1016.5578002929688,10.733757,10733.757 +11999,2025-03-08T11:43:14.947015-08:00,1016.5398559570312,10.733356,10733.356 +12000,2025-03-08T11:43:25.678756-08:00,1016.5431518554688,10.731741,10731.741 +12001,2025-03-08T11:43:36.407748-08:00,1016.5496826171875,10.728992,10728.992 +12002,2025-03-08T11:43:47.146564-08:00,1016.521728515625,10.738816,10738.816 +12003,2025-03-08T11:43:57.876567-08:00,1016.55126953125,10.730003,10730.003 +12004,2025-03-08T11:44:08.608860-08:00,1016.5578002929688,10.732293,10732.293 +12005,2025-03-08T11:44:19.332597-08:00,1016.55126953125,10.723737,10723.737 +12006,2025-03-08T11:44:30.071566-08:00,1016.55126953125,10.738969,10738.969 +12007,2025-03-08T11:44:40.802752-08:00,1016.5446166992188,10.731186,10731.186 +12008,2025-03-08T11:44:51.527827-08:00,1016.5578002929688,10.725075,10725.075 +12009,2025-03-08T11:45:02.259782-08:00,1016.5298461914062,10.731955,10731.955 +12010,2025-03-08T11:45:12.992596-08:00,1016.55126953125,10.732814,10732.814 +12011,2025-03-08T11:45:23.727423-08:00,1016.5662231445312,10.734827,10734.827 +12012,2025-03-08T11:45:34.456563-08:00,1016.5431518554688,10.72914,10729.14 +12013,2025-03-08T11:45:45.186776-08:00,1016.5446166992188,10.730213,10730.213 +12014,2025-03-08T11:45:55.920602-08:00,1016.521728515625,10.733826,10733.826 +12015,2025-03-08T11:46:06.643564-08:00,1016.5167236328125,10.722962,10722.962 +12016,2025-03-08T11:46:17.378616-08:00,1016.5379638671875,10.735052,10735.052 +12017,2025-03-08T11:46:28.105139-08:00,1016.5100708007812,10.726523,10726.523 +12018,2025-03-08T11:46:38.837564-08:00,1016.5232543945312,10.732425,10732.425 +12019,2025-03-08T11:46:49.571786-08:00,1016.5167236328125,10.734222,10734.222 +12020,2025-03-08T11:47:00.303300-08:00,1016.5281372070312,10.731514,10731.514 +12021,2025-03-08T11:47:11.036599-08:00,1016.513427734375,10.733299,10733.299 +12022,2025-03-08T11:47:21.767563-08:00,1016.4718627929688,10.730964,10730.964 +12023,2025-03-08T11:47:32.494325-08:00,1016.501708984375,10.726762,10726.762 +12024,2025-03-08T11:47:35.075528-08:00,1016.4851684570312,2.581203,2581.203 +12025,2025-03-08T11:47:43.235009-08:00,1016.5001831054688,8.159481,8159.481 +12026,2025-03-08T11:47:53.959768-08:00,1016.4605712890625,10.724759,10724.759 +12027,2025-03-08T11:48:04.685870-08:00,1016.4686889648438,10.726102,10726.102 +12028,2025-03-08T11:48:15.424582-08:00,1016.4701538085938,10.738712,10738.712 +12029,2025-03-08T11:48:26.149567-08:00,1016.489990234375,10.724985,10724.985 +12030,2025-03-08T11:48:36.887136-08:00,1016.476806640625,10.737569,10737.569 +12031,2025-03-08T11:48:47.620595-08:00,1016.49658203125,10.733459,10733.459 +12032,2025-03-08T11:48:58.351566-08:00,1016.4818725585938,10.730971,10730.971 +12033,2025-03-08T11:49:09.077394-08:00,1016.4520874023438,10.725828,10725.828 +12034,2025-03-08T11:49:19.806699-08:00,1016.475341796875,10.729305,10729.305 +12035,2025-03-08T11:49:30.545770-08:00,1016.4539184570312,10.739071,10739.071 +12036,2025-03-08T11:49:41.279602-08:00,1016.4473266601562,10.733832,10733.832 +12037,2025-03-08T11:49:52.011960-08:00,1016.4620361328125,10.732358,10732.358 +12038,2025-03-08T11:50:02.736563-08:00,1016.4389038085938,10.724603,10724.603 +12039,2025-03-08T11:50:13.477770-08:00,1016.4488525390625,10.741207,10741.207 +12040,2025-03-08T11:50:24.199819-08:00,1016.416015625,10.722049,10722.049 +12041,2025-03-08T11:50:34.932564-08:00,1016.4322509765625,10.732745,10732.745 +12042,2025-03-08T11:50:45.670563-08:00,1016.4473266601562,10.737999,10737.999 +12043,2025-03-08T11:50:56.400652-08:00,1016.427490234375,10.730089,10730.089 +12044,2025-03-08T11:51:07.133589-08:00,1016.4488525390625,10.732937,10732.937 +12045,2025-03-08T11:51:17.855565-08:00,1016.4520874023438,10.721976,10721.976 +12046,2025-03-08T11:51:28.586743-08:00,1016.4671630859375,10.731178,10731.178 +12047,2025-03-08T11:51:39.326301-08:00,1016.4737548828125,10.739558,10739.558 +12048,2025-03-08T11:51:50.050566-08:00,1016.4620361328125,10.724265,10724.265 +12049,2025-03-08T11:52:00.786565-08:00,1016.4371948242188,10.735999,10735.999 +12050,2025-03-08T11:52:11.521783-08:00,1016.4686889648438,10.735218,10735.218 +12051,2025-03-08T11:52:22.228722-08:00,1016.4701538085938,10.706939,10706.939 +12052,2025-03-08T11:52:32.960460-08:00,1016.427490234375,10.731738,10731.738 +12053,2025-03-08T11:52:43.693861-08:00,1016.4620361328125,10.733401,10733.401 +12054,2025-03-08T11:52:54.427456-08:00,1016.49658203125,10.733595,10733.595 +12055,2025-03-08T11:53:05.161461-08:00,1016.489990234375,10.734005,10734.005 +12056,2025-03-08T11:53:15.892479-08:00,1016.4802856445312,10.731018,10731.018 +12057,2025-03-08T11:53:26.619030-08:00,1016.4554443359375,10.726551,10726.551 +12058,2025-03-08T11:53:37.354613-08:00,1016.440673828125,10.735583,10735.583 +12059,2025-03-08T11:53:48.087646-08:00,1016.4737548828125,10.733033,10733.033 +12060,2025-03-08T11:53:58.821848-08:00,1016.478515625,10.734202,10734.202 +12061,2025-03-08T11:54:09.542456-08:00,1016.4884643554688,10.720608,10720.608 +12062,2025-03-08T11:54:20.276619-08:00,1016.4454956054688,10.734163,10734.163 +12063,2025-03-08T11:54:31.006679-08:00,1016.4520874023438,10.73006,10730.06 +12064,2025-03-08T11:54:41.737459-08:00,1016.4520874023438,10.73078,10730.78 +12065,2025-03-08T11:54:52.469873-08:00,1016.4554443359375,10.732414,10732.414 +12066,2025-03-08T11:55:03.203713-08:00,1016.4473266601562,10.73384,10733.84 +12067,2025-03-08T11:55:13.931459-08:00,1016.4605712890625,10.727746,10727.746 +12068,2025-03-08T11:55:24.662459-08:00,1016.4671630859375,10.731,10731.0 +12069,2025-03-08T11:55:35.393659-08:00,1016.475341796875,10.7312,10731.2 +12070,2025-03-08T11:55:46.131572-08:00,1016.4473266601562,10.737913,10737.913 +12071,2025-03-08T11:55:56.856457-08:00,1016.4439697265625,10.724885,10724.885 +12072,2025-03-08T11:56:07.588915-08:00,1016.458740234375,10.732458,10732.458 +12073,2025-03-08T11:56:18.320237-08:00,1016.4637451171875,10.731322,10731.322 +12074,2025-03-08T11:56:29.047611-08:00,1016.4473266601562,10.727374,10727.374 +12075,2025-03-08T11:56:39.778826-08:00,1016.4701538085938,10.731215,10731.215 +12076,2025-03-08T11:56:50.514832-08:00,1016.43408203125,10.736006,10736.006 +12077,2025-03-08T11:57:01.249673-08:00,1016.4686889648438,10.734841,10734.841 +12078,2025-03-08T11:57:11.970655-08:00,1016.4554443359375,10.720982,10720.982 +12079,2025-03-08T11:57:22.704650-08:00,1016.43408203125,10.733995,10733.995 +12080,2025-03-08T11:57:33.435456-08:00,1016.4421997070312,10.730806,10730.806 +12081,2025-03-08T11:57:44.169535-08:00,1016.4076538085938,10.734079,10734.079 +12082,2025-03-08T11:57:54.895836-08:00,1016.402587890625,10.726301,10726.301 +12083,2025-03-08T11:58:05.622534-08:00,1016.415771484375,10.726698,10726.698 +12084,2025-03-08T11:58:16.358665-08:00,1016.4107055664062,10.736131,10736.131 +12085,2025-03-08T11:58:27.089487-08:00,1016.4092407226562,10.730822,10730.822 +12086,2025-03-08T11:58:37.812459-08:00,1016.404052734375,10.722972,10722.972 +12087,2025-03-08T11:58:48.551672-08:00,1016.3827514648438,10.739213,10739.213 +12088,2025-03-08T11:58:59.275461-08:00,1016.404052734375,10.723789,10723.789 +12089,2025-03-08T11:59:20.730155-08:00,1016.3878173828125,21.454694,21454.694 +12090,2025-03-08T11:59:31.464517-08:00,1016.3878173828125,10.734362,10734.362 +12091,2025-03-08T11:59:42.186487-08:00,1016.4109497070312,10.72197,10721.97 +12092,2025-03-08T11:59:52.921200-08:00,1016.37939453125,10.734713,10734.713 +12093,2025-03-08T12:00:03.652211-08:00,1016.3943481445312,10.731011,10731.011 +12094,2025-03-08T12:00:14.379892-08:00,1016.399658203125,10.727681,10727.681 +12095,2025-03-08T12:00:25.105457-08:00,1016.3782958984375,10.725565,10725.565 +12096,2025-03-08T12:00:35.827039-08:00,1016.3703002929688,10.721582,10721.582 +12097,2025-03-08T12:00:46.555959-08:00,1016.3870239257812,10.72892,10728.92 +12098,2025-03-08T12:00:57.282487-08:00,1016.3427124023438,10.726528,10726.528 +12099,2025-03-08T12:01:08.015639-08:00,1016.3543701171875,10.733152,10733.152 +12100,2025-03-08T12:01:18.740880-08:00,1016.3379516601562,10.725241,10725.241 +12101,2025-03-08T12:01:29.467596-08:00,1016.3892211914062,10.726716,10726.716 +12102,2025-03-08T12:01:40.194639-08:00,1016.3942260742188,10.727043,10727.043 +12103,2025-03-08T12:01:50.927453-08:00,1016.3976440429688,10.732814,10732.814 +12104,2025-03-08T12:02:01.654697-08:00,1016.3599243164062,10.727244,10727.244 +12105,2025-03-08T12:02:12.377465-08:00,1016.3718872070312,10.722768,10722.768 +12106,2025-03-08T12:02:23.107571-08:00,1016.3849487304688,10.730106,10730.106 +12107,2025-03-08T12:02:33.831624-08:00,1016.368896484375,10.724053,10724.053 +12108,2025-03-08T12:02:44.568687-08:00,1016.3819580078125,10.737063,10737.063 +12109,2025-03-08T12:02:55.296462-08:00,1016.367431640625,10.727775,10727.775 +12110,2025-03-08T12:03:06.016974-08:00,1016.3526000976562,10.720512,10720.512 +12111,2025-03-08T12:03:16.753457-08:00,1016.369384765625,10.736483,10736.483 +12112,2025-03-08T12:03:27.471718-08:00,1016.3512573242188,10.718261,10718.261 +12113,2025-03-08T12:03:38.205693-08:00,1016.3297729492188,10.733975,10733.975 +12114,2025-03-08T12:03:48.929454-08:00,1016.3876342773438,10.723761,10723.761 +12115,2025-03-08T12:03:59.667640-08:00,1016.3812255859375,10.738186,10738.186 +12116,2025-03-08T12:04:10.392457-08:00,1016.3712768554688,10.724817,10724.817 +12117,2025-03-08T12:04:21.122459-08:00,1016.3697509765625,10.730002,10730.002 +12118,2025-03-08T12:04:31.844519-08:00,1016.3663940429688,10.72206,10722.06 +12119,2025-03-08T12:04:42.578118-08:00,1016.3648681640625,10.733599,10733.599 +12120,2025-03-08T12:04:53.305794-08:00,1016.3615112304688,10.727676,10727.676 +12121,2025-03-08T12:05:04.031452-08:00,1016.3797607421875,10.725658,10725.658 +12122,2025-03-08T12:05:14.766459-08:00,1016.3646850585938,10.735007,10735.007 +12123,2025-03-08T12:05:25.493672-08:00,1016.3449096679688,10.727213,10727.213 +12124,2025-03-08T12:05:36.226092-08:00,1016.3779907226562,10.73242,10732.42 +12125,2025-03-08T12:05:46.956665-08:00,1016.3565673828125,10.730573,10730.573 +12126,2025-03-08T12:05:57.688671-08:00,1016.3353271484375,10.732006,10732.006 +12127,2025-03-08T12:06:08.419045-08:00,1016.3286743164062,10.730374,10730.374 +12128,2025-03-08T12:06:19.151456-08:00,1016.3301391601562,10.732411,10732.411 +12129,2025-03-08T12:06:29.877490-08:00,1016.3367919921875,10.726034,10726.034 +12130,2025-03-08T12:06:40.609271-08:00,1016.3401489257812,10.731781,10731.781 +12131,2025-03-08T12:06:51.339457-08:00,1016.3467407226562,10.730186,10730.186 +12132,2025-03-08T12:07:02.064640-08:00,1016.3336181640625,10.725183,10725.183 +12133,2025-03-08T12:07:12.794456-08:00,1016.3629760742188,10.729816,10729.816 +12134,2025-03-08T12:07:23.522459-08:00,1016.349853515625,10.728003,10728.003 +12135,2025-03-08T12:07:34.258527-08:00,1016.2970581054688,10.736068,10736.068 +12136,2025-03-08T12:07:44.989427-08:00,1016.318603515625,10.7309,10730.9 +12137,2025-03-08T12:07:55.715664-08:00,1016.3333740234375,10.726237,10726.237 +12138,2025-03-08T12:08:06.439918-08:00,1016.297119140625,10.724254,10724.254 +12139,2025-03-08T12:08:17.170477-08:00,1016.3236083984375,10.730559,10730.559 +12140,2025-03-08T12:08:27.909526-08:00,1016.2854614257812,10.739049,10739.049 +12141,2025-03-08T12:08:38.637487-08:00,1016.3218994140625,10.727961,10727.961 +12142,2025-03-08T12:08:49.368554-08:00,1016.275634765625,10.731067,10731.067 +12143,2025-03-08T12:09:00.091461-08:00,1016.2852172851562,10.722907,10722.907 +12144,2025-03-08T12:09:10.826248-08:00,1016.2537231445312,10.734787,10734.787 +12145,2025-03-08T12:09:21.554669-08:00,1016.2867431640625,10.728421,10728.421 +12146,2025-03-08T12:09:32.290657-08:00,1016.26220703125,10.735988,10735.988 +12147,2025-03-08T12:09:43.023458-08:00,1016.2652587890625,10.732801,10732.801 +12148,2025-03-08T12:09:53.748459-08:00,1016.2984619140625,10.725001,10725.001 +12149,2025-03-08T12:10:04.486455-08:00,1016.28515625,10.737996,10737.996 +12150,2025-03-08T12:10:15.211674-08:00,1016.2867431640625,10.725219,10725.219 +12151,2025-03-08T12:10:25.949251-08:00,1016.283447265625,10.737577,10737.577 +12152,2025-03-08T12:10:36.677619-08:00,1016.2915649414062,10.728368,10728.368 +12153,2025-03-08T12:10:47.414460-08:00,1016.25341796875,10.736841,10736.841 +12154,2025-03-08T12:10:58.147645-08:00,1016.263427734375,10.733185,10733.185 +12155,2025-03-08T12:11:08.871485-08:00,1016.2665405273438,10.72384,10723.84 +12156,2025-03-08T12:11:19.606459-08:00,1016.291259765625,10.734974,10734.974 +12157,2025-03-08T12:11:30.332241-08:00,1016.2666625976562,10.725782,10725.782 +12158,2025-03-08T12:11:41.061456-08:00,1016.2564086914062,10.729215,10729.215 +12159,2025-03-08T12:11:51.793810-08:00,1016.28466796875,10.732354,10732.354 +12160,2025-03-08T12:12:02.530752-08:00,1016.2664184570312,10.736942,10736.942 +12161,2025-03-08T12:12:13.252669-08:00,1016.2713012695312,10.721917,10721.917 +12162,2025-03-08T12:12:23.980661-08:00,1016.2529907226562,10.727992,10727.992 +12163,2025-03-08T12:12:34.719570-08:00,1016.2743530273438,10.738909,10738.909 +12164,2025-03-08T12:12:45.445456-08:00,1016.2777099609375,10.725886,10725.886 +12165,2025-03-08T12:12:56.180458-08:00,1016.2593994140625,10.735002,10735.002 +12166,2025-03-08T12:13:06.907664-08:00,1016.267822265625,10.727206,10727.206 +12167,2025-03-08T12:13:17.636455-08:00,1016.2379150390625,10.728791,10728.791 +12168,2025-03-08T12:13:28.374525-08:00,1016.22314453125,10.73807,10738.07 +12169,2025-03-08T12:13:39.111648-08:00,1016.2396850585938,10.737123,10737.123 +12170,2025-03-08T12:13:49.845640-08:00,1016.22802734375,10.733992,10733.992 +12171,2025-03-08T12:14:00.569491-08:00,1016.2064819335938,10.723851,10723.851 +12172,2025-03-08T12:14:11.310453-08:00,1016.1962280273438,10.740962,10740.962 +12173,2025-03-08T12:14:22.042562-08:00,1016.1930541992188,10.732109,10732.109 +12174,2025-03-08T12:14:32.770687-08:00,1016.201171875,10.728125,10728.125 +12175,2025-03-08T12:14:43.507626-08:00,1016.1765747070312,10.736939,10736.939 +12176,2025-03-08T12:14:54.237875-08:00,1016.1649169921875,10.730249,10730.249 +12177,2025-03-08T12:15:04.970685-08:00,1016.1631469726562,10.73281,10732.81 +12178,2025-03-08T12:15:15.706662-08:00,1016.130126953125,10.735977,10735.977 +12179,2025-03-08T12:15:26.432459-08:00,1016.1532592773438,10.725797,10725.797 +12180,2025-03-08T12:15:37.163640-08:00,1016.161376953125,10.731181,10731.181 +12181,2025-03-08T12:15:47.889457-08:00,1016.15966796875,10.725817,10725.817 +12182,2025-03-08T12:15:58.619968-08:00,1016.16455078125,10.730511,10730.511 +12183,2025-03-08T12:16:09.360654-08:00,1016.1528930664062,10.740686,10740.686 +12184,2025-03-08T12:16:20.082460-08:00,1016.1565551757812,10.721806,10721.806 +12185,2025-03-08T12:16:30.822461-08:00,1016.1746826171875,10.740001,10740.001 +12186,2025-03-08T12:16:41.551638-08:00,1016.1331176757812,10.729177,10729.177 +12187,2025-03-08T12:16:52.281459-08:00,1016.1512451171875,10.729821,10729.821 +12188,2025-03-08T12:17:03.013526-08:00,1016.1248168945312,10.732067,10732.067 +12189,2025-03-08T12:17:13.744849-08:00,1016.157958984375,10.731323,10731.323 +12190,2025-03-08T12:17:24.480492-08:00,1016.15283203125,10.735643,10735.643 +12191,2025-03-08T12:17:35.210461-08:00,1016.15283203125,10.729969,10729.969 +12192,2025-03-08T12:17:45.948529-08:00,1016.1279907226562,10.738068,10738.068 +12193,2025-03-08T12:17:56.679645-08:00,1016.1246948242188,10.731116,10731.116 +12194,2025-03-08T12:18:07.406560-08:00,1016.1409301757812,10.726915,10726.915 +12195,2025-03-08T12:18:18.134794-08:00,1016.1229858398438,10.728234,10728.234 +12196,2025-03-08T12:18:28.865822-08:00,1016.1376342773438,10.731028,10731.028 +12197,2025-03-08T12:18:39.593456-08:00,1016.149169921875,10.727634,10727.634 +12198,2025-03-08T12:18:50.328530-08:00,1016.1525268554688,10.735074,10735.074 +12199,2025-03-08T12:19:01.052459-08:00,1016.1209106445312,10.723929,10723.929 +12200,2025-03-08T12:19:11.783459-08:00,1016.1670532226562,10.731,10731.0 +12201,2025-03-08T12:19:22.515904-08:00,1016.1585693359375,10.732445,10732.445 +12202,2025-03-08T12:19:33.248885-08:00,1016.1799926757812,10.732981,10732.981 +12203,2025-03-08T12:19:43.970458-08:00,1016.1370239257812,10.721573,10721.573 +12204,2025-03-08T12:19:54.695732-08:00,1016.1551513671875,10.725274,10725.274 +12205,2025-03-08T12:20:05.422536-08:00,1016.1549072265625,10.726804,10726.804 +12206,2025-03-08T12:20:16.159785-08:00,1016.1729736328125,10.737249,10737.249 +12207,2025-03-08T12:20:26.882527-08:00,1016.143310546875,10.722742,10722.742 +12208,2025-03-08T12:20:37.604458-08:00,1016.1397094726562,10.721931,10721.931 +12209,2025-03-08T12:20:48.339827-08:00,1016.166259765625,10.735369,10735.369 +12210,2025-03-08T12:20:59.065456-08:00,1016.1493530273438,10.725629,10725.629 +12211,2025-03-08T12:21:09.798722-08:00,1016.174072265625,10.733266,10733.266 +12212,2025-03-08T12:21:20.532018-08:00,1016.1392822265625,10.733296,10733.296 +12213,2025-03-08T12:21:31.254676-08:00,1016.122802734375,10.722658,10722.658 +12214,2025-03-08T12:21:41.994666-08:00,1016.13427734375,10.73999,10739.99 +12215,2025-03-08T12:21:52.724472-08:00,1016.13916015625,10.729806,10729.806 +12216,2025-03-08T12:22:03.456505-08:00,1016.122314453125,10.732033,10732.033 +12217,2025-03-08T12:22:14.181285-08:00,1016.1484985351562,10.72478,10724.78 +12218,2025-03-08T12:22:24.908644-08:00,1016.1187744140625,10.727359,10727.359 +12219,2025-03-08T12:22:35.639661-08:00,1016.1070556640625,10.731017,10731.017 +12220,2025-03-08T12:22:46.369073-08:00,1016.11376953125,10.729412,10729.412 +12221,2025-03-08T12:22:49.034305-08:00,1016.107177734375,2.665232,2665.232 +12222,2025-03-08T12:22:57.107460-08:00,1016.1152954101562,8.073155,8073.155 +12223,2025-03-08T12:23:07.835457-08:00,1016.09033203125,10.727997,10727.997 +12224,2025-03-08T12:23:18.567460-08:00,1016.1165771484375,10.732003,10732.003 +12225,2025-03-08T12:23:29.295436-08:00,1016.0819702148438,10.727976,10727.976 +12226,2025-03-08T12:23:40.029096-08:00,1016.0786743164062,10.73366,10733.66 +12227,2025-03-08T12:23:50.753488-08:00,1016.0804443359375,10.724392,10724.392 +12228,2025-03-08T12:24:01.484626-08:00,1016.0687255859375,10.731138,10731.138 +12229,2025-03-08T12:24:12.216456-08:00,1016.0736083984375,10.73183,10731.83 +12230,2025-03-08T12:24:22.947778-08:00,1016.0655517578125,10.731322,10731.322 +12231,2025-03-08T12:24:33.679812-08:00,1016.0820922851562,10.732034,10732.034 +12232,2025-03-08T12:24:44.415544-08:00,1016.062255859375,10.735732,10735.732 +12233,2025-03-08T12:24:55.140656-08:00,1016.050537109375,10.725112,10725.112 +12234,2025-03-08T12:25:05.879455-08:00,1016.080322265625,10.738799,10738.799 +12235,2025-03-08T12:25:16.604483-08:00,1016.0223388671875,10.725028,10725.028 +12236,2025-03-08T12:25:27.335459-08:00,1016.0223388671875,10.730976,10730.976 +12237,2025-03-08T12:25:38.064869-08:00,1016.031982421875,10.72941,10729.41 +12238,2025-03-08T12:25:48.798208-08:00,1016.0187377929688,10.733339,10733.339 +12239,2025-03-08T12:25:59.531530-08:00,1016.0353393554688,10.733322,10733.322 +12240,2025-03-08T12:26:10.254474-08:00,1016.0368041992188,10.722944,10722.944 +12241,2025-03-08T12:26:20.994772-08:00,1016.0037231445312,10.740298,10740.298 +12242,2025-03-08T12:26:31.716735-08:00,1016.0055541992188,10.721963,10721.963 +12243,2025-03-08T12:26:42.453637-08:00,1015.9790649414062,10.736902,10736.902 +12244,2025-03-08T12:26:53.178453-08:00,1015.9673461914062,10.724816,10724.816 +12245,2025-03-08T12:27:03.915454-08:00,1015.98876953125,10.737001,10737.001 +12246,2025-03-08T12:27:14.637481-08:00,1015.98876953125,10.722027,10722.027 +12247,2025-03-08T12:27:25.371911-08:00,1015.9656372070312,10.73443,10734.43 +12248,2025-03-08T12:27:36.097453-08:00,1015.9755249023438,10.725542,10725.542 +12249,2025-03-08T12:27:46.832691-08:00,1015.9755249023438,10.735238,10735.238 +12250,2025-03-08T12:27:57.552453-08:00,1015.983642578125,10.719762,10719.762 +12251,2025-03-08T12:28:08.289652-08:00,1015.9623413085938,10.737199,10737.199 +12252,2025-03-08T12:28:19.011656-08:00,1015.988525390625,10.722004,10722.004 +12253,2025-03-08T12:28:29.742494-08:00,1016.001708984375,10.730838,10730.838 +12254,2025-03-08T12:28:40.470701-08:00,1015.988525390625,10.728207,10728.207 +12255,2025-03-08T12:28:51.201779-08:00,1015.978271484375,10.731078,10731.078 +12256,2025-03-08T12:29:01.931462-08:00,1016.0046997070312,10.729683,10729.683 +12257,2025-03-08T12:29:12.662192-08:00,1015.9915771484375,10.73073,10730.73 +12258,2025-03-08T12:29:23.387484-08:00,1016.0046997070312,10.725292,10725.292 +12259,2025-03-08T12:29:34.121458-08:00,1015.994873046875,10.733974,10733.974 +12260,2025-03-08T12:29:44.849715-08:00,1016.006591796875,10.728257,10728.257 +12261,2025-03-08T12:29:55.579457-08:00,1015.98828125,10.729742,10729.742 +12262,2025-03-08T12:30:06.304630-08:00,1015.98828125,10.725173,10725.173 +12263,2025-03-08T12:30:17.035632-08:00,1015.983154296875,10.731002,10731.002 +12264,2025-03-08T12:30:27.767480-08:00,1015.95849609375,10.731848,10731.848 +12265,2025-03-08T12:30:38.491695-08:00,1015.9813232421875,10.724215,10724.215 +12266,2025-03-08T12:30:49.222635-08:00,1015.978271484375,10.73094,10730.94 +12267,2025-03-08T12:30:59.959659-08:00,1015.9732666015625,10.737024,10737.024 +12268,2025-03-08T12:31:10.686472-08:00,1016.0029907226562,10.726813,10726.813 +12269,2025-03-08T12:31:21.420535-08:00,1015.9879760742188,10.734063,10734.063 +12270,2025-03-08T12:31:32.150618-08:00,1015.983154296875,10.730083,10730.083 +12271,2025-03-08T12:31:42.874459-08:00,1015.9417114257812,10.723841,10723.841 +12272,2025-03-08T12:31:53.602631-08:00,1015.9978637695312,10.728172,10728.172 +12273,2025-03-08T12:32:04.330457-08:00,1015.9515380859375,10.727826,10727.826 +12274,2025-03-08T12:32:15.060459-08:00,1015.96484375,10.730002,10730.002 +12275,2025-03-08T12:32:25.788088-08:00,1015.9615478515625,10.727629,10727.629 +12276,2025-03-08T12:32:36.524451-08:00,1015.9464721679688,10.736363,10736.363 +12277,2025-03-08T12:32:47.252637-08:00,1015.9199829101562,10.728186,10728.186 +12278,2025-03-08T12:32:57.978790-08:00,1015.928466796875,10.726153,10726.153 +12279,2025-03-08T12:33:08.710460-08:00,1015.921875,10.73167,10731.67 +12280,2025-03-08T12:33:19.443878-08:00,1015.9199829101562,10.733418,10733.418 +12281,2025-03-08T12:33:30.171479-08:00,1015.9020385742188,10.727601,10727.601 +12282,2025-03-08T12:33:40.900519-08:00,1015.9199829101562,10.72904,10729.04 +12283,2025-03-08T12:33:51.630435-08:00,1015.9332885742188,10.729916,10729.916 +12284,2025-03-08T12:34:02.354508-08:00,1015.911865234375,10.724073,10724.073 +12285,2025-03-08T12:34:13.091459-08:00,1015.9266357421875,10.736951,10736.951 +12286,2025-03-08T12:34:23.821457-08:00,1015.8987426757812,10.729998,10729.998 +12287,2025-03-08T12:34:34.557011-08:00,1015.87890625,10.735554,10735.554 +12288,2025-03-08T12:34:45.279673-08:00,1015.8839721679688,10.722662,10722.662 +12289,2025-03-08T12:34:56.010744-08:00,1015.8574829101562,10.731071,10731.071 +12290,2025-03-08T12:35:06.735652-08:00,1015.8987426757812,10.724908,10724.908 +12291,2025-03-08T12:35:17.472456-08:00,1015.8623657226562,10.736804,10736.804 +12292,2025-03-08T12:35:28.202474-08:00,1015.873779296875,10.730018,10730.018 +12293,2025-03-08T12:35:38.932519-08:00,1015.8870239257812,10.730045,10730.045 +12294,2025-03-08T12:35:49.657457-08:00,1015.9035034179688,10.724938,10724.938 +12295,2025-03-08T12:36:00.390835-08:00,1015.8887329101562,10.733378,10733.378 +12296,2025-03-08T12:36:11.122456-08:00,1015.8292846679688,10.731621,10731.621 +12297,2025-03-08T12:36:21.855456-08:00,1015.8521728515625,10.733,10733.0 +12298,2025-03-08T12:36:32.587548-08:00,1015.89990234375,10.732092,10732.092 +12299,2025-03-08T12:36:43.317485-08:00,1015.8389282226562,10.729937,10729.937 +12300,2025-03-08T12:36:54.043667-08:00,1015.8521728515625,10.726182,10726.182 +12301,2025-03-08T12:37:04.768644-08:00,1015.82421875,10.724977,10724.977 +12302,2025-03-08T12:37:15.490495-08:00,1015.8373413085938,10.721851,10721.851 +12303,2025-03-08T12:37:26.227691-08:00,1015.8323364257812,10.737196,10737.196 +12304,2025-03-08T12:37:36.947452-08:00,1015.85546875,10.719761,10719.761 +12305,2025-03-08T12:37:47.683585-08:00,1015.8470458984375,10.736133,10736.133 +12306,2025-03-08T12:37:58.414649-08:00,1015.8488159179688,10.731064,10731.064 +12307,2025-03-08T12:38:09.143565-08:00,1015.8223266601562,10.728916,10728.916 +12308,2025-03-08T12:38:19.875666-08:00,1015.8092041015625,10.732101,10732.101 +12309,2025-03-08T12:38:30.605454-08:00,1015.8239135742188,10.729788,10729.788 +12310,2025-03-08T12:38:41.344631-08:00,1015.8172607421875,10.739177,10739.177 +12311,2025-03-08T12:38:52.072459-08:00,1015.8253784179688,10.727828,10727.828 +12312,2025-03-08T12:39:02.793708-08:00,1015.8239135742188,10.721249,10721.249 +12313,2025-03-08T12:39:13.524494-08:00,1015.8206176757812,10.730786,10730.786 +12314,2025-03-08T12:39:24.260108-08:00,1015.7725219726562,10.735614,10735.614 +12315,2025-03-08T12:39:34.990759-08:00,1015.779052734375,10.730651,10730.651 +12316,2025-03-08T12:39:45.721342-08:00,1015.764404296875,10.730583,10730.583 +12317,2025-03-08T12:39:56.442529-08:00,1015.7578125,10.721187,10721.187 +12318,2025-03-08T12:40:07.172642-08:00,1015.779052734375,10.730113,10730.113 +12319,2025-03-08T12:40:17.910583-08:00,1015.7562255859375,10.737941,10737.941 +12320,2025-03-08T12:40:28.636526-08:00,1015.790771484375,10.725943,10725.943 +12321,2025-03-08T12:40:39.368709-08:00,1015.7628173828125,10.732183,10732.183 +12322,2025-03-08T12:40:50.093523-08:00,1015.76953125,10.724814,10724.814 +12323,2025-03-08T12:41:00.833458-08:00,1015.777587890625,10.739935,10739.935 +12324,2025-03-08T12:41:11.562641-08:00,1015.76953125,10.729183,10729.183 +12325,2025-03-08T12:41:22.289456-08:00,1015.7611083984375,10.726815,10726.815 +12326,2025-03-08T12:41:33.015172-08:00,1015.76953125,10.725716,10725.716 +12327,2025-03-08T12:41:43.744623-08:00,1015.7728271484375,10.729451,10729.451 +12328,2025-03-08T12:41:54.476460-08:00,1015.747802734375,10.731837,10731.837 +12329,2025-03-08T12:42:05.203547-08:00,1015.7117309570312,10.727087,10727.087 +12330,2025-03-08T12:42:15.934642-08:00,1015.7793579101562,10.731095,10731.095 +12331,2025-03-08T12:42:26.664661-08:00,1015.75439453125,10.730019,10730.019 +12332,2025-03-08T12:42:37.398459-08:00,1015.710205078125,10.733798,10733.798 +12333,2025-03-08T12:42:48.126668-08:00,1015.746337890625,10.728209,10728.209 +12334,2025-03-08T12:42:58.852456-08:00,1015.75439453125,10.725788,10725.788 +12335,2025-03-08T12:43:09.584640-08:00,1015.7382202148438,10.732184,10732.184 +12336,2025-03-08T12:43:20.312335-08:00,1015.75439453125,10.727695,10727.695 +12337,2025-03-08T12:43:31.035526-08:00,1015.7742309570312,10.723191,10723.191 +12338,2025-03-08T12:43:41.774464-08:00,1015.7661743164062,10.738938,10738.938 +12339,2025-03-08T12:43:52.498539-08:00,1015.7382202148438,10.724075,10724.075 +12340,2025-03-08T12:44:03.232458-08:00,1015.7315673828125,10.733919,10733.919 +12341,2025-03-08T12:44:13.957477-08:00,1015.759521484375,10.725019,10725.019 +12342,2025-03-08T12:44:24.690457-08:00,1015.7366943359375,10.73298,10732.98 +12343,2025-03-08T12:44:35.418487-08:00,1015.7382202148438,10.72803,10728.03 +12344,2025-03-08T12:44:46.148632-08:00,1015.7647094726562,10.730145,10730.145 +12345,2025-03-08T12:44:56.879645-08:00,1015.7301025390625,10.731013,10731.013 +12346,2025-03-08T12:45:07.605675-08:00,1015.7315673828125,10.72603,10726.03 +12347,2025-03-08T12:45:18.332128-08:00,1015.7183837890625,10.726453,10726.453 +12348,2025-03-08T12:45:29.064459-08:00,1015.7117309570312,10.732331,10732.331 +12349,2025-03-08T12:45:39.788679-08:00,1015.7382202148438,10.72422,10724.22 +12350,2025-03-08T12:45:50.518826-08:00,1015.710205078125,10.730147,10730.147 +12351,2025-03-08T12:46:01.246714-08:00,1015.733154296875,10.727888,10727.888 +12352,2025-03-08T12:46:11.975255-08:00,1015.7198486328125,10.728541,10728.541 +12353,2025-03-08T12:46:22.702459-08:00,1015.7117309570312,10.727204,10727.204 +12354,2025-03-08T12:46:33.427455-08:00,1015.7198486328125,10.724996,10724.996 +12355,2025-03-08T12:46:44.156938-08:00,1015.6837768554688,10.729483,10729.483 +12356,2025-03-08T12:46:54.889661-08:00,1015.703369140625,10.732723,10732.723 +12357,2025-03-08T12:47:05.619671-08:00,1015.6720581054688,10.73001,10730.01 +12358,2025-03-08T12:47:16.340457-08:00,1015.6934204101562,10.720786,10720.786 +12359,2025-03-08T12:47:27.071457-08:00,1015.6573486328125,10.731,10731.0 +12360,2025-03-08T12:47:37.799632-08:00,1015.6934204101562,10.728175,10728.175 +12361,2025-03-08T12:47:48.529681-08:00,1015.7117309570312,10.730049,10730.049 +12362,2025-03-08T12:47:59.256625-08:00,1015.6720581054688,10.726944,10726.944 +12363,2025-03-08T12:48:09.988849-08:00,1015.6771850585938,10.732224,10732.224 +12364,2025-03-08T12:48:20.706459-08:00,1015.6819458007812,10.71761,10717.61 +12365,2025-03-08T12:48:31.443462-08:00,1015.6837768554688,10.737003,10737.003 +12366,2025-03-08T12:48:42.168600-08:00,1015.6819458007812,10.725138,10725.138 +12367,2025-03-08T12:48:52.899459-08:00,1015.7017822265625,10.730859,10730.859 +12368,2025-03-08T12:49:03.625604-08:00,1015.67529296875,10.726145,10726.145 +12369,2025-03-08T12:49:14.352562-08:00,1015.66064453125,10.726958,10726.958 +12370,2025-03-08T12:49:25.090510-08:00,1015.654052734375,10.737948,10737.948 +12371,2025-03-08T12:49:35.819616-08:00,1015.6591186523438,10.729106,10729.106 +12372,2025-03-08T12:49:46.555761-08:00,1015.6110229492188,10.736145,10736.145 +12373,2025-03-08T12:49:57.280848-08:00,1015.64404296875,10.725087,10725.087 +12374,2025-03-08T12:50:08.014672-08:00,1015.64892578125,10.733824,10733.824 +12375,2025-03-08T12:50:18.745639-08:00,1015.6143798828125,10.730967,10730.967 +12376,2025-03-08T12:50:29.476457-08:00,1015.6062622070312,10.730818,10730.818 +12377,2025-03-08T12:50:40.205567-08:00,1015.5797729492188,10.72911,10729.11 +12378,2025-03-08T12:50:50.932456-08:00,1015.5845336914062,10.726889,10726.889 +12379,2025-03-08T12:51:01.660460-08:00,1015.6062622070312,10.728004,10728.004 +12380,2025-03-08T12:51:12.386641-08:00,1015.599609375,10.726181,10726.181 +12381,2025-03-08T12:51:23.113481-08:00,1015.6342163085938,10.72684,10726.84 +12382,2025-03-08T12:51:33.839459-08:00,1015.6326293945312,10.725978,10725.978 +12383,2025-03-08T12:51:44.567876-08:00,1015.61279296875,10.728417,10728.417 +12384,2025-03-08T12:51:55.292480-08:00,1015.6275634765625,10.724604,10724.604 +12385,2025-03-08T12:52:06.022638-08:00,1015.599609375,10.730158,10730.158 +12386,2025-03-08T12:52:16.755678-08:00,1015.61279296875,10.73304,10733.04 +12387,2025-03-08T12:52:27.496288-08:00,1015.6392822265625,10.74061,10740.61 +12388,2025-03-08T12:52:38.222335-08:00,1015.6194458007812,10.726047,10726.047 +12389,2025-03-08T12:52:48.947497-08:00,1015.599609375,10.725162,10725.162 +12390,2025-03-08T12:52:59.674437-08:00,1015.6043701171875,10.72694,10726.94 +12391,2025-03-08T12:53:10.399289-08:00,1015.61279296875,10.724852,10724.852 +12392,2025-03-08T12:53:21.130285-08:00,1015.6209106445312,10.730996,10730.996 +12393,2025-03-08T12:53:31.857433-08:00,1015.6062622070312,10.727148,10727.148 +12394,2025-03-08T12:53:42.589289-08:00,1015.6356201171875,10.731856,10731.856 +12395,2025-03-08T12:53:53.307614-08:00,1015.6275634765625,10.718325,10718.325 +12396,2025-03-08T12:54:04.038287-08:00,1015.6408081054688,10.730673,10730.673 +12397,2025-03-08T12:54:14.763340-08:00,1015.6043701171875,10.725053,10725.053 +12398,2025-03-08T12:54:25.498682-08:00,1015.6062622070312,10.735342,10735.342 +12399,2025-03-08T12:54:36.227288-08:00,1015.6062622070312,10.728606,10728.606 +12400,2025-03-08T12:54:46.959455-08:00,1015.5911865234375,10.732167,10732.167 +12401,2025-03-08T12:54:57.678287-08:00,1015.5911865234375,10.718832,10718.832 +12402,2025-03-08T12:55:08.407501-08:00,1015.576416015625,10.729214,10729.214 +12403,2025-03-08T12:55:19.133685-08:00,1015.5713500976562,10.726184,10726.184 +12404,2025-03-08T12:55:29.860286-08:00,1015.5532836914062,10.726601,10726.601 +12405,2025-03-08T12:55:40.585492-08:00,1015.5845336914062,10.725206,10725.206 +12406,2025-03-08T12:55:51.321952-08:00,1015.58642578125,10.73646,10736.46 +12407,2025-03-08T12:56:02.045437-08:00,1015.56982421875,10.723485,10723.485 +12408,2025-03-08T12:56:12.777310-08:00,1015.5896606445312,10.731873,10731.873 +12409,2025-03-08T12:56:23.505282-08:00,1015.588134765625,10.727972,10727.972 +12410,2025-03-08T12:56:34.235289-08:00,1015.5962524414062,10.730007,10730.007 +12411,2025-03-08T12:56:44.968684-08:00,1015.5716552734375,10.733395,10733.395 +12412,2025-03-08T12:56:55.689286-08:00,1015.5716552734375,10.720602,10720.602 +12413,2025-03-08T12:57:06.425284-08:00,1015.5550537109375,10.735998,10735.998 +12414,2025-03-08T12:57:17.153453-08:00,1015.5682983398438,10.728169,10728.169 +12415,2025-03-08T12:57:27.884288-08:00,1015.552001953125,10.730835,10730.835 +12416,2025-03-08T12:57:38.613523-08:00,1015.5211181640625,10.729235,10729.235 +12417,2025-03-08T12:57:49.340473-08:00,1015.5276489257812,10.72695,10726.95 +12418,2025-03-08T12:58:00.065289-08:00,1015.5164794921875,10.724816,10724.816 +12419,2025-03-08T12:58:10.803287-08:00,1015.5167236328125,10.737998,10737.998 +12420,2025-03-08T12:58:21.532487-08:00,1015.5148315429688,10.7292,10729.2 +12421,2025-03-08T12:58:32.260490-08:00,1015.4971313476562,10.728003,10728.003 +12422,2025-03-08T12:58:42.990494-08:00,1015.5025024414062,10.730004,10730.004 +12423,2025-03-08T12:58:53.708383-08:00,1015.4913330078125,10.717889,10717.889 +12424,2025-03-08T12:59:04.440499-08:00,1015.4684448242188,10.732116,10732.116 +12425,2025-03-08T12:59:15.170545-08:00,1015.5079956054688,10.730046,10730.046 +12426,2025-03-08T12:59:25.905646-08:00,1015.4737548828125,10.735101,10735.101 +12427,2025-03-08T12:59:36.626472-08:00,1015.4938354492188,10.720826,10720.826 +12428,2025-03-08T12:59:47.363485-08:00,1015.4609375,10.737013,10737.013 +12429,2025-03-08T12:59:58.087485-08:00,1015.45458984375,10.724,10724.0 +12430,2025-03-08T13:00:08.816318-08:00,1015.4762573242188,10.728833,10728.833 +12431,2025-03-08T13:00:19.550474-08:00,1015.4962768554688,10.734156,10734.156 +12432,2025-03-08T13:00:30.276464-08:00,1015.4896240234375,10.72599,10725.99 +12433,2025-03-08T13:00:41.006514-08:00,1015.480224609375,10.73005,10730.05 +12434,2025-03-08T13:00:51.743464-08:00,1015.4835205078125,10.73695,10736.95 +12435,2025-03-08T13:01:02.469287-08:00,1015.4984130859375,10.725823,10725.823 +12436,2025-03-08T13:01:13.206521-08:00,1015.500244140625,10.737234,10737.234 +12437,2025-03-08T13:01:23.928578-08:00,1015.4906005859375,10.722057,10722.057 +12438,2025-03-08T13:01:34.666290-08:00,1015.51513671875,10.737712,10737.712 +12439,2025-03-08T13:01:45.391786-08:00,1015.48388671875,10.725496,10725.496 +12440,2025-03-08T13:01:56.122347-08:00,1015.4971923828125,10.730561,10730.561 +12441,2025-03-08T13:02:06.857493-08:00,1015.49560546875,10.735146,10735.146 +12442,2025-03-08T13:02:17.590432-08:00,1015.4989013671875,10.732939,10732.939 +12443,2025-03-08T13:02:28.327588-08:00,1015.5039672851562,10.737156,10737.156 +12444,2025-03-08T13:02:39.063462-08:00,1015.495849609375,10.735874,10735.874 +12445,2025-03-08T13:02:49.791286-08:00,1015.459228515625,10.727824,10727.824 +12446,2025-03-08T13:03:00.526289-08:00,1015.5039672851562,10.735003,10735.003 +12447,2025-03-08T13:03:11.254473-08:00,1015.509033203125,10.728184,10728.184 +12448,2025-03-08T13:03:21.986283-08:00,1015.4742431640625,10.73181,10731.81 +12449,2025-03-08T13:03:32.720284-08:00,1015.5006103515625,10.734001,10734.001 +12450,2025-03-08T13:03:43.448669-08:00,1015.5072631835938,10.728385,10728.385 +12451,2025-03-08T13:03:54.185574-08:00,1015.4874267578125,10.736905,10736.905 +12452,2025-03-08T13:04:04.913592-08:00,1015.47900390625,10.728018,10728.018 +12453,2025-03-08T13:04:15.647491-08:00,1015.47607421875,10.733899,10733.899 +12454,2025-03-08T13:04:26.387471-08:00,1015.4676513671875,10.73998,10739.98 +12455,2025-03-08T13:04:37.117284-08:00,1015.427978515625,10.729813,10729.813 +12456,2025-03-08T13:04:47.842288-08:00,1015.42138671875,10.725004,10725.004 +12457,2025-03-08T13:04:58.583469-08:00,1015.4298706054688,10.741181,10741.181 +12458,2025-03-08T13:05:09.316310-08:00,1015.396728515625,10.732841,10732.841 +12459,2025-03-08T13:05:20.051495-08:00,1015.4412231445312,10.735185,10735.185 +12460,2025-03-08T13:05:30.781732-08:00,1015.4310913085938,10.730237,10730.237 +12461,2025-03-08T13:05:41.523775-08:00,1015.3914184570312,10.742043,10742.043 +12462,2025-03-08T13:05:52.261230-08:00,1015.4028930664062,10.737455,10737.455 +12463,2025-03-08T13:06:02.997521-08:00,1015.3914794921875,10.736291,10736.291 +12464,2025-03-08T13:06:13.731465-08:00,1015.3864135742188,10.733944,10733.944 +12465,2025-03-08T13:06:24.464292-08:00,1015.389404296875,10.732827,10732.827 +12466,2025-03-08T13:06:35.204496-08:00,1015.3993530273438,10.740204,10740.204 +12467,2025-03-08T13:06:45.934029-08:00,1015.3861083984375,10.729533,10729.533 +12468,2025-03-08T13:06:56.665488-08:00,1015.3546142578125,10.731459,10731.459 +12469,2025-03-08T13:07:07.402502-08:00,1015.352783203125,10.737014,10737.014 +12470,2025-03-08T13:07:18.132316-08:00,1015.3546752929688,10.729814,10729.814 +12471,2025-03-08T13:07:28.875285-08:00,1015.337890625,10.742969,10742.969 +12472,2025-03-08T13:07:39.607289-08:00,1015.38232421875,10.732004,10732.004 +12473,2025-03-08T13:07:50.333689-08:00,1015.3394775390625,10.7264,10726.4 +12474,2025-03-08T13:08:01.077352-08:00,1015.3277587890625,10.743663,10743.663 +12475,2025-03-08T13:08:11.800320-08:00,1015.3325805664062,10.722968,10722.968 +12476,2025-03-08T13:08:22.527461-08:00,1015.3209228515625,10.727141,10727.141 +12477,2025-03-08T13:08:33.270162-08:00,1015.3043823242188,10.742701,10742.701 +12478,2025-03-08T13:08:43.994518-08:00,1015.305908203125,10.724356,10724.356 +12479,2025-03-08T13:08:54.729286-08:00,1015.2909545898438,10.734768,10734.768 +12480,2025-03-08T13:09:05.462705-08:00,1015.2974853515625,10.733419,10733.419 +12481,2025-03-08T13:09:16.190295-08:00,1015.2891235351562,10.72759,10727.59 +12482,2025-03-08T13:09:26.927352-08:00,1015.3534545898438,10.737057,10737.057 +12483,2025-03-08T13:09:37.652851-08:00,1015.3270263671875,10.725499,10725.499 +12484,2025-03-08T13:09:48.381353-08:00,1015.31201171875,10.728502,10728.502 +12485,2025-03-08T13:09:59.122625-08:00,1015.3021850585938,10.741272,10741.272 +12486,2025-03-08T13:10:09.854301-08:00,1015.3021850585938,10.731676,10731.676 +12487,2025-03-08T13:10:20.587694-08:00,1015.2871704101562,10.733393,10733.393 +12488,2025-03-08T13:10:31.309879-08:00,1015.3018798828125,10.722185,10722.185 +12489,2025-03-08T13:10:42.050469-08:00,1015.2835693359375,10.74059,10740.59 +12490,2025-03-08T13:10:52.773556-08:00,1015.2803344726562,10.723087,10723.087 +12491,2025-03-08T13:11:03.508284-08:00,1015.2898559570312,10.734728,10734.728 +12492,2025-03-08T13:11:14.236301-08:00,1015.2932739257812,10.728017,10728.017 +12493,2025-03-08T13:11:24.968488-08:00,1015.2650146484375,10.732187,10732.187 +12494,2025-03-08T13:11:35.709289-08:00,1015.2385864257812,10.740801,10740.801 +12495,2025-03-08T13:11:46.440402-08:00,1015.2896728515625,10.731113,10731.113 +12496,2025-03-08T13:11:57.177516-08:00,1015.2647094726562,10.737114,10737.114 +12497,2025-03-08T13:12:07.912713-08:00,1015.2879028320312,10.735197,10735.197 +12498,2025-03-08T13:12:18.643290-08:00,1015.2828369140625,10.730577,10730.577 +12499,2025-03-08T13:12:29.378287-08:00,1015.2597045898438,10.734997,10734.997 +12500,2025-03-08T13:12:40.111471-08:00,1015.2545166015625,10.733184,10733.184 +12501,2025-03-08T13:12:50.839499-08:00,1015.2659912109375,10.728028,10728.028 +12502,2025-03-08T13:13:01.574357-08:00,1015.2461547851562,10.734858,10734.858 +12503,2025-03-08T13:13:12.305519-08:00,1015.2675170898438,10.731162,10731.162 +12504,2025-03-08T13:13:23.032284-08:00,1015.2576293945312,10.726765,10726.765 +12505,2025-03-08T13:13:33.764365-08:00,1015.2459106445312,10.732081,10732.081 +12506,2025-03-08T13:13:44.500506-08:00,1015.2492065429688,10.736141,10736.141 +12507,2025-03-08T13:13:55.235473-08:00,1015.23095703125,10.734967,10734.967 +12508,2025-03-08T13:14:05.962498-08:00,1015.2390747070312,10.727025,10727.025 +12509,2025-03-08T13:14:16.698355-08:00,1015.263671875,10.735857,10735.857 +12510,2025-03-08T13:14:27.432466-08:00,1015.2540893554688,10.734111,10734.111 +12511,2025-03-08T13:14:38.162975-08:00,1015.2276611328125,10.730509,10730.509 +12512,2025-03-08T13:14:48.900289-08:00,1015.2523193359375,10.737314,10737.314 +12513,2025-03-08T13:14:59.635290-08:00,1015.21923828125,10.735001,10735.001 +12514,2025-03-08T13:15:10.370499-08:00,1015.2225952148438,10.735209,10735.209 +12515,2025-03-08T13:15:21.103362-08:00,1015.230712890625,10.732863,10732.863 +12516,2025-03-08T13:15:31.829402-08:00,1015.2256469726562,10.72604,10726.04 +12517,2025-03-08T13:15:42.566480-08:00,1015.2354736328125,10.737078,10737.078 +12518,2025-03-08T13:15:53.307475-08:00,1015.238525390625,10.740995,10740.995 +12519,2025-03-08T13:16:04.041283-08:00,1015.1807861328125,10.733808,10733.808 +12520,2025-03-08T13:16:14.774337-08:00,1015.2022094726562,10.733054,10733.054 +12521,2025-03-08T13:16:25.513503-08:00,1015.1624755859375,10.739166,10739.166 +12522,2025-03-08T13:16:36.245463-08:00,1015.165771484375,10.73196,10731.96 +12523,2025-03-08T13:16:46.984539-08:00,1015.172119140625,10.739076,10739.076 +12524,2025-03-08T13:16:57.719291-08:00,1015.1537475585938,10.734752,10734.752 +12525,2025-03-08T13:17:08.445472-08:00,1015.2114868164062,10.726181,10726.181 +12526,2025-03-08T13:17:19.185490-08:00,1015.209716796875,10.740018,10740.018 +12527,2025-03-08T13:17:29.919289-08:00,1015.19140625,10.733799,10733.799 +12528,2025-03-08T13:17:40.641289-08:00,1015.2145385742188,10.722,10722.0 +12529,2025-03-08T13:17:51.375483-08:00,1015.2093505859375,10.734194,10734.194 +12530,2025-03-08T13:18:02.113618-08:00,1015.216064453125,10.738135,10738.135 +12531,2025-03-08T13:18:12.847289-08:00,1015.205810546875,10.733671,10733.671 +12532,2025-03-08T13:18:23.572006-08:00,1015.223876953125,10.724717,10724.717 +12533,2025-03-08T13:18:34.307493-08:00,1015.2154541015625,10.735487,10735.487 +12534,2025-03-08T13:18:45.045350-08:00,1015.2103271484375,10.737857,10737.857 +12535,2025-03-08T13:18:55.771395-08:00,1015.1806030273438,10.726045,10726.045 +12536,2025-03-08T13:19:06.512435-08:00,1015.1904907226562,10.74104,10741.04 +12537,2025-03-08T13:19:17.243533-08:00,1015.1490478515625,10.731098,10731.098 +12538,2025-03-08T13:19:27.969358-08:00,1015.1520385742188,10.725825,10725.825 +12539,2025-03-08T13:19:38.704055-08:00,1015.16015625,10.734697,10734.697 +12540,2025-03-08T13:19:49.442481-08:00,1015.1649169921875,10.738426,10738.426 +12541,2025-03-08T13:20:00.178457-08:00,1015.1403198242188,10.735976,10735.976 +12542,2025-03-08T13:20:10.906518-08:00,1015.1498413085938,10.728061,10728.061 +12543,2025-03-08T13:20:21.644307-08:00,1015.16796875,10.737789,10737.789 +12544,2025-03-08T13:20:32.364338-08:00,1015.1565551757812,10.720031,10720.031 +12545,2025-03-08T13:20:43.100497-08:00,1015.1646118164062,10.736159,10736.159 +12546,2025-03-08T13:20:53.832852-08:00,1015.1693725585938,10.732355,10732.355 +12547,2025-03-08T13:21:04.571526-08:00,1015.164306640625,10.738674,10738.674 +12548,2025-03-08T13:21:15.303290-08:00,1015.1543579101562,10.731764,10731.764 +12549,2025-03-08T13:21:26.032581-08:00,1015.1640014648438,10.729291,10729.291 +12550,2025-03-08T13:21:36.759311-08:00,1015.1475219726562,10.72673,10726.73 +12551,2025-03-08T13:21:47.498594-08:00,1015.1820068359375,10.739283,10739.283 +12552,2025-03-08T13:21:58.236458-08:00,1015.1640014648438,10.737864,10737.864 +12553,2025-03-08T13:22:08.965043-08:00,1015.147216796875,10.728585,10728.585 +12554,2025-03-08T13:22:19.706483-08:00,1015.1768798828125,10.74144,10741.44 +12555,2025-03-08T13:22:30.441290-08:00,1015.1636962890625,10.734807,10734.807 +12556,2025-03-08T13:22:41.175312-08:00,1015.1934204101562,10.734022,10734.022 +12557,2025-03-08T13:22:51.913286-08:00,1015.1832275390625,10.737974,10737.974 +12558,2025-03-08T13:23:02.645467-08:00,1015.1699829101562,10.732181,10732.181 +12559,2025-03-08T13:23:13.382315-08:00,1015.1781005859375,10.736848,10736.848 +12560,2025-03-08T13:23:24.117288-08:00,1015.1832275390625,10.734973,10734.973 +12561,2025-03-08T13:23:34.853293-08:00,1015.1898193359375,10.736005,10736.005 +12562,2025-03-08T13:23:45.587481-08:00,1015.15673828125,10.734188,10734.188 +12563,2025-03-08T13:23:56.329459-08:00,1015.1599731445312,10.741978,10741.978 +12564,2025-03-08T13:24:07.065285-08:00,1015.166748046875,10.735826,10735.826 +12565,2025-03-08T13:24:17.801289-08:00,1015.150146484375,10.736004,10736.004 +12566,2025-03-08T13:24:28.531503-08:00,1015.1417236328125,10.730214,10730.214 +12567,2025-03-08T13:24:39.270514-08:00,1015.150146484375,10.739011,10739.011 +12568,2025-03-08T13:24:50.010519-08:00,1015.1795043945312,10.740005,10740.005 +12569,2025-03-08T13:25:00.745286-08:00,1015.15673828125,10.734767,10734.767 +12570,2025-03-08T13:25:11.470499-08:00,1015.1582641601562,10.725213,10725.213 +12571,2025-03-08T13:25:22.214165-08:00,1015.1185302734375,10.743666,10743.666 +12572,2025-03-08T13:25:32.950289-08:00,1015.1266479492188,10.736124,10736.124 +12573,2025-03-08T13:25:43.683286-08:00,1015.1001586914062,10.732997,10732.997 +12574,2025-03-08T13:25:54.419289-08:00,1015.1417236328125,10.736003,10736.003 +12575,2025-03-08T13:26:05.149482-08:00,1015.115234375,10.730193,10730.193 +12576,2025-03-08T13:26:15.887312-08:00,1015.1417236328125,10.73783,10737.83 +12577,2025-03-08T13:26:26.627288-08:00,1015.1482543945312,10.739976,10739.976 +12578,2025-03-08T13:26:37.361766-08:00,1015.177734375,10.734478,10734.478 +12579,2025-03-08T13:26:48.095487-08:00,1015.16455078125,10.733721,10733.721 +12580,2025-03-08T13:26:58.833474-08:00,1015.1380615234375,10.737987,10737.987 +12581,2025-03-08T13:27:09.567319-08:00,1015.1593627929688,10.733845,10733.845 +12582,2025-03-08T13:27:20.310736-08:00,1015.1314086914062,10.743417,10743.417 +12583,2025-03-08T13:27:31.045358-08:00,1015.1347045898438,10.734622,10734.622 +12584,2025-03-08T13:27:41.775498-08:00,1015.1148681640625,10.73014,10730.14 +12585,2025-03-08T13:27:52.510290-08:00,1015.1281127929688,10.734792,10734.792 +12586,2025-03-08T13:28:03.247286-08:00,1015.1177978515625,10.736996,10736.996 +12587,2025-03-08T13:28:13.977497-08:00,1015.131103515625,10.730211,10730.211 +12588,2025-03-08T13:28:24.720862-08:00,1015.126220703125,10.743365,10743.365 +12589,2025-03-08T13:28:35.452287-08:00,1015.0865478515625,10.731425,10731.425 +12590,2025-03-08T13:28:46.183282-08:00,1015.1278076171875,10.730995,10730.995 +12591,2025-03-08T13:28:56.919288-08:00,1015.1046752929688,10.736006,10736.006 +12592,2025-03-08T13:29:07.654678-08:00,1015.0932006835938,10.73539,10735.39 +12593,2025-03-08T13:29:18.386286-08:00,1015.1063842773438,10.731608,10731.608 +12594,2025-03-08T13:29:29.120100-08:00,1015.114501953125,10.733814,10733.814 +12595,2025-03-08T13:29:39.860324-08:00,1015.126220703125,10.740224,10740.224 +12596,2025-03-08T13:29:50.594477-08:00,1015.1292724609375,10.734153,10734.153 +12597,2025-03-08T13:30:01.327351-08:00,1015.071533203125,10.732874,10732.874 +12598,2025-03-08T13:30:12.057510-08:00,1015.1343994140625,10.730159,10730.159 +12599,2025-03-08T13:30:22.792502-08:00,1015.1130981445312,10.734992,10734.992 +12600,2025-03-08T13:30:33.525939-08:00,1015.0979614257812,10.733437,10733.437 +12601,2025-03-08T13:30:44.264528-08:00,1015.0899047851562,10.738589,10738.589 +12602,2025-03-08T13:30:54.993289-08:00,1015.0914306640625,10.728761,10728.761 +12603,2025-03-08T13:31:05.734749-08:00,1015.0848388671875,10.74146,10741.46 +12604,2025-03-08T13:31:16.460316-08:00,1015.1046752929688,10.725567,10725.567 +12605,2025-03-08T13:31:27.199289-08:00,1015.071533203125,10.738973,10738.973 +12606,2025-03-08T13:31:37.929291-08:00,1015.1046752929688,10.730002,10730.002 +12607,2025-03-08T13:31:48.661498-08:00,1015.0487670898438,10.732207,10732.207 +12608,2025-03-08T13:31:59.404126-08:00,1015.0501708984375,10.742628,10742.628 +12609,2025-03-08T13:32:10.140290-08:00,1015.071533203125,10.736164,10736.164 +12610,2025-03-08T13:32:20.867720-08:00,1015.0186157226562,10.72743,10727.43 +12611,2025-03-08T13:32:31.596153-08:00,1015.0270385742188,10.728433,10728.433 +12612,2025-03-08T13:32:42.335354-08:00,1015.0535278320312,10.739201,10739.201 +12613,2025-03-08T13:32:53.067291-08:00,1015.0384521484375,10.731937,10731.937 +12614,2025-03-08T13:33:03.799289-08:00,1015.028564453125,10.731998,10731.998 +12615,2025-03-08T13:33:14.525316-08:00,1015.046875,10.726027,10726.027 +12616,2025-03-08T13:33:25.263314-08:00,1015.0172119140625,10.737998,10737.998 +12617,2025-03-08T13:33:35.998374-08:00,1015.0120239257812,10.73506,10735.06 +12618,2025-03-08T13:33:46.728469-08:00,1015.0451049804688,10.730095,10730.095 +12619,2025-03-08T13:33:57.462384-08:00,1015.0270385742188,10.733915,10733.915 +12620,2025-03-08T13:34:08.188502-08:00,1015.0667114257812,10.726118,10726.118 +12621,2025-03-08T13:34:18.925460-08:00,1015.0318603515625,10.736958,10736.958 +12622,2025-03-08T13:34:29.657336-08:00,1015.009033203125,10.731876,10731.876 +12623,2025-03-08T13:34:40.389288-08:00,1015.0186157226562,10.731952,10731.952 +12624,2025-03-08T13:34:51.120499-08:00,1015.040283203125,10.731211,10731.211 +12625,2025-03-08T13:35:01.849286-08:00,1015.0601806640625,10.728787,10728.787 +12626,2025-03-08T13:35:12.576285-08:00,1015.0484619140625,10.726999,10726.999 +12627,2025-03-08T13:35:23.307617-08:00,1015.046875,10.731332,10731.332 +12628,2025-03-08T13:35:34.039526-08:00,1015.0616455078125,10.731909,10731.909 +12629,2025-03-08T13:35:44.776339-08:00,1015.0218505859375,10.736813,10736.813 +12630,2025-03-08T13:35:55.503512-08:00,1015.028564453125,10.727173,10727.173 +12631,2025-03-08T13:36:06.241461-08:00,1015.0616455078125,10.737949,10737.949 +12632,2025-03-08T13:36:16.976364-08:00,1015.078125,10.734903,10734.903 +12633,2025-03-08T13:36:27.706310-08:00,1015.0763549804688,10.729946,10729.946 +12634,2025-03-08T13:36:38.440357-08:00,1015.0564575195312,10.734047,10734.047 +12635,2025-03-08T13:36:49.177961-08:00,1015.0564575195312,10.737604,10737.604 +12636,2025-03-08T13:36:59.919569-08:00,1015.0914306640625,10.741608,10741.608 +12637,2025-03-08T13:37:10.654314-08:00,1015.0564575195312,10.734745,10734.745 +12638,2025-03-08T13:37:21.381680-08:00,1015.0516967773438,10.727366,10727.366 +12639,2025-03-08T13:37:32.118454-08:00,1015.0862426757812,10.736774,10736.774 +12640,2025-03-08T13:37:42.860285-08:00,1015.0697021484375,10.741831,10741.831 +12641,2025-03-08T13:37:53.590289-08:00,1015.0498657226562,10.730004,10730.004 +12642,2025-03-08T13:38:04.337283-08:00,1015.0564575195312,10.746994,10746.994 +12643,2025-03-08T13:38:15.073291-08:00,1015.0270385742188,10.736008,10736.008 +12644,2025-03-08T13:38:25.809462-08:00,1015.0484619140625,10.736171,10736.171 +12645,2025-03-08T13:38:36.541287-08:00,1015.0484619140625,10.731825,10731.825 +12646,2025-03-08T13:38:47.275876-08:00,1015.0234375,10.734589,10734.589 +12647,2025-03-08T13:38:58.010477-08:00,1015.030029296875,10.734601,10734.601 +12648,2025-03-08T13:39:08.745650-08:00,1015.03515625,10.735173,10735.173 +12649,2025-03-08T13:39:19.483284-08:00,1015.030029296875,10.737634,10737.634 +12650,2025-03-08T13:39:30.224520-08:00,1015.0086669921875,10.741236,10741.236 +12651,2025-03-08T13:39:40.953319-08:00,1015.0218505859375,10.728799,10728.799 +12652,2025-03-08T13:39:51.692354-08:00,1015.0218505859375,10.739035,10739.035 +12653,2025-03-08T13:40:02.430486-08:00,1015.0186157226562,10.738132,10738.132 +12654,2025-03-08T13:40:13.158285-08:00,1015.040283203125,10.727799,10727.799 +12655,2025-03-08T13:40:23.901489-08:00,1015.0601806640625,10.743204,10743.204 +12656,2025-03-08T13:40:34.635451-08:00,1015.0153198242188,10.733962,10733.962 +12657,2025-03-08T13:40:45.373478-08:00,1015.0218505859375,10.738027,10738.027 +12658,2025-03-08T13:40:56.107289-08:00,1015.040283203125,10.733811,10733.811 +12659,2025-03-08T13:41:06.838498-08:00,1015.0218505859375,10.731209,10731.209 +12660,2025-03-08T13:41:17.577512-08:00,1015.0167846679688,10.739014,10739.014 +12661,2025-03-08T13:41:28.311679-08:00,1015.0006103515625,10.734167,10734.167 +12662,2025-03-08T13:41:39.054143-08:00,1014.970458984375,10.742464,10742.464 +12663,2025-03-08T13:41:49.789491-08:00,1014.9902954101562,10.735348,10735.348 +12664,2025-03-08T13:42:00.531322-08:00,1015.0036010742188,10.741831,10741.831 +12665,2025-03-08T13:42:11.269496-08:00,1014.9954833984375,10.738174,10738.174 +12666,2025-03-08T13:42:21.998469-08:00,1014.9954833984375,10.728973,10728.973 +12667,2025-03-08T13:42:32.744487-08:00,1014.9807739257812,10.746018,10746.018 +12668,2025-03-08T13:42:43.475286-08:00,1014.982177734375,10.730799,10730.799 +12669,2025-03-08T13:42:54.219290-08:00,1014.9807739257812,10.744004,10744.004 +12670,2025-03-08T13:43:04.951031-08:00,1014.982177734375,10.731741,10731.741 +12671,2025-03-08T13:43:15.684462-08:00,1015.0138549804688,10.733431,10733.431 +12672,2025-03-08T13:43:26.416493-08:00,1015.00537109375,10.732031,10732.031 +12673,2025-03-08T13:43:37.150314-08:00,1014.9855346679688,10.733821,10733.821 +12674,2025-03-08T13:43:47.889499-08:00,1014.998779296875,10.739185,10739.185 +12675,2025-03-08T13:43:58.627448-08:00,1015.0072021484375,10.737949,10737.949 +12676,2025-03-08T13:44:09.361529-08:00,1015.0006103515625,10.734081,10734.081 +12677,2025-03-08T13:44:20.096283-08:00,1014.998779296875,10.734754,10734.754 +12678,2025-03-08T13:44:30.841439-08:00,1014.9642333984375,10.745156,10745.156 +12679,2025-03-08T13:44:41.566689-08:00,1014.9906005859375,10.72525,10725.25 +12680,2025-03-08T13:44:52.301382-08:00,1015.00390625,10.734693,10734.693 +12681,2025-03-08T13:45:03.047870-08:00,1014.9476318359375,10.746488,10746.488 +12682,2025-03-08T13:45:13.774288-08:00,1014.9788818359375,10.726418,10726.418 +12683,2025-03-08T13:45:24.517743-08:00,1015.0020141601562,10.743455,10743.455 +12684,2025-03-08T13:45:35.245158-08:00,1014.9656982421875,10.727415,10727.415 +12685,2025-03-08T13:45:45.978468-08:00,1014.9656982421875,10.73331,10733.31 +12686,2025-03-08T13:45:56.718292-08:00,1014.950927734375,10.739824,10739.824 +12687,2025-03-08T13:46:07.454285-08:00,1014.9939575195312,10.735993,10735.993 +12688,2025-03-08T13:46:18.183925-08:00,1014.9873657226562,10.72964,10729.64 +12689,2025-03-08T13:46:28.924311-08:00,1014.9873657226562,10.740386,10740.386 +12690,2025-03-08T13:46:39.663494-08:00,1014.998779296875,10.739183,10739.183 +12691,2025-03-08T13:46:50.391443-08:00,1014.9756469726562,10.727949,10727.949 +12692,2025-03-08T13:47:01.126467-08:00,1014.9609375,10.735024,10735.024 +12693,2025-03-08T13:47:11.861402-08:00,1014.967529296875,10.734935,10734.935 +12694,2025-03-08T13:47:22.603456-08:00,1014.9740600585938,10.742054,10742.054 +12695,2025-03-08T13:47:33.337510-08:00,1014.9623413085938,10.734054,10734.054 +12696,2025-03-08T13:47:44.068131-08:00,1014.9343872070312,10.730621,10730.621 +12697,2025-03-08T13:47:54.804522-08:00,1014.9575805664062,10.736391,10736.391 +12698,2025-03-08T13:48:05.535350-08:00,1014.9476318359375,10.730828,10730.828 +12699,2025-03-08T13:48:16.268482-08:00,1014.9277954101562,10.733132,10733.132 +12700,2025-03-08T13:48:27.003465-08:00,1014.9310913085938,10.734983,10734.983 +12701,2025-03-08T13:48:37.742316-08:00,1014.9590454101562,10.738851,10738.851 +12702,2025-03-08T13:48:48.475497-08:00,1014.9229736328125,10.733181,10733.181 +12703,2025-03-08T13:48:59.211288-08:00,1014.9296264648438,10.735791,10735.791 +12704,2025-03-08T13:49:09.940731-08:00,1014.9212646484375,10.729443,10729.443 +12705,2025-03-08T13:49:20.680311-08:00,1014.9461669921875,10.73958,10739.58 +12706,2025-03-08T13:49:31.404291-08:00,1014.919677734375,10.72398,10723.98 +12707,2025-03-08T13:49:42.142687-08:00,1014.8998413085938,10.738396,10738.396 +12708,2025-03-08T13:49:52.880729-08:00,1014.8983764648438,10.738042,10738.042 +12709,2025-03-08T13:50:03.613284-08:00,1014.907958984375,10.732555,10732.555 +12710,2025-03-08T13:50:14.339323-08:00,1014.9229736328125,10.726039,10726.039 +12711,2025-03-08T13:50:25.071598-08:00,1014.8947143554688,10.732275,10732.275 +12712,2025-03-08T13:50:35.811308-08:00,1014.8947143554688,10.73971,10739.71 +12713,2025-03-08T13:50:46.543290-08:00,1014.8866577148438,10.731982,10731.982 +12714,2025-03-08T13:50:57.282347-08:00,1014.9097900390625,10.739057,10739.057 +12715,2025-03-08T13:51:08.013473-08:00,1014.889892578125,10.731126,10731.126 +12716,2025-03-08T13:51:18.749893-08:00,1014.8980712890625,10.73642,10736.42 +12717,2025-03-08T13:51:29.481289-08:00,1014.88330078125,10.731396,10731.396 +12718,2025-03-08T13:51:40.223287-08:00,1014.889892578125,10.741998,10741.998 +12719,2025-03-08T13:51:50.953456-08:00,1014.9112548828125,10.730169,10730.169 +12720,2025-03-08T13:52:01.696249-08:00,1014.9060668945312,10.742793,10742.793 +12721,2025-03-08T13:52:12.423602-08:00,1014.9060668945312,10.727353,10727.353 +12722,2025-03-08T13:52:23.270453-08:00,1014.91455078125,10.846851,10846.851 +12723,2025-03-08T13:52:34.004859-08:00,1014.921142578125,10.734406,10734.406 +12724,2025-03-08T13:52:44.731734-08:00,1014.9013061523438,10.726875,10726.875 +12725,2025-03-08T13:52:55.472687-08:00,1014.873046875,10.740953,10740.953 +12726,2025-03-08T13:53:06.203705-08:00,1014.878173828125,10.731018,10731.018 +12727,2025-03-08T13:53:16.936852-08:00,1014.8881225585938,10.733147,10733.147 +12728,2025-03-08T13:53:27.674728-08:00,1014.907958984375,10.737876,10737.876 +12729,2025-03-08T13:53:38.410757-08:00,1014.8814697265625,10.736029,10736.029 +12730,2025-03-08T13:53:49.137760-08:00,1014.8928833007812,10.727003,10727.003 +12731,2025-03-08T13:53:59.872720-08:00,1014.8814697265625,10.73496,10734.96 +12732,2025-03-08T13:54:10.612638-08:00,1014.8848266601562,10.739918,10739.918 +12733,2025-03-08T13:54:21.337668-08:00,1014.873046875,10.72503,10725.03 +12734,2025-03-08T13:54:32.075640-08:00,1014.8484497070312,10.737972,10737.972 +12735,2025-03-08T13:54:42.806667-08:00,1014.8818969726562,10.731027,10731.027 +12736,2025-03-08T13:54:53.535873-08:00,1014.9053344726562,10.729206,10729.206 +12737,2025-03-08T13:55:04.270857-08:00,1014.8839721679688,10.734984,10734.984 +12738,2025-03-08T13:55:15.001559-08:00,1014.8773193359375,10.730702,10730.702 +12739,2025-03-08T13:55:25.733736-08:00,1014.85791015625,10.732177,10732.177 +12740,2025-03-08T13:55:36.458637-08:00,1014.873291015625,10.724901,10724.901 +12741,2025-03-08T13:55:47.191997-08:00,1014.883544921875,10.73336,10733.36 +12742,2025-03-08T13:55:57.929706-08:00,1014.8426513671875,10.737709,10737.709 +12743,2025-03-08T13:56:08.652855-08:00,1014.81982421875,10.723149,10723.149 +12744,2025-03-08T13:56:19.394156-08:00,1014.8465576171875,10.741301,10741.301 +12745,2025-03-08T13:56:30.115748-08:00,1014.830322265625,10.721592,10721.592 +12746,2025-03-08T13:56:40.853986-08:00,1014.82080078125,10.738238,10738.238 +12747,2025-03-08T13:56:51.584734-08:00,1014.8342895507812,10.730748,10730.748 +12748,2025-03-08T13:57:02.316986-08:00,1014.849365234375,10.732252,10732.252 +12749,2025-03-08T13:57:13.054638-08:00,1014.8279418945312,10.737652,10737.652 +12750,2025-03-08T13:57:23.789845-08:00,1014.84814453125,10.735207,10735.207 +12751,2025-03-08T13:57:34.528671-08:00,1014.806884765625,10.738826,10738.826 +12752,2025-03-08T13:57:45.258832-08:00,1014.8204956054688,10.730161,10730.161 +12753,2025-03-08T13:57:55.996784-08:00,1014.8585815429688,10.737952,10737.952 +12754,2025-03-08T13:58:06.725805-08:00,1014.85888671875,10.729021,10729.021 +12755,2025-03-08T13:58:17.465716-08:00,1014.8571166992188,10.739911,10739.911 +12756,2025-03-08T13:58:28.197808-08:00,1014.8375854492188,10.732092,10732.092 +12757,2025-03-08T13:58:38.938638-08:00,1014.822509765625,10.74083,10740.83 +12758,2025-03-08T13:58:49.664819-08:00,1014.8273315429688,10.726181,10726.181 +12759,2025-03-08T13:59:00.398850-08:00,1014.822509765625,10.734031,10734.031 +12760,2025-03-08T13:59:11.141653-08:00,1014.83935546875,10.742803,10742.803 +12761,2025-03-08T13:59:21.873633-08:00,1014.8407592773438,10.73198,10731.98 +12762,2025-03-08T13:59:32.609642-08:00,1014.8378295898438,10.736009,10736.009 +12763,2025-03-08T13:59:43.348778-08:00,1014.8312377929688,10.739136,10739.136 +12764,2025-03-08T13:59:54.085819-08:00,1014.85107421875,10.737041,10737.041 +12765,2025-03-08T14:00:04.814638-08:00,1014.8312377929688,10.728819,10728.819 +12766,2025-03-08T14:00:15.547018-08:00,1014.8095092773438,10.73238,10732.38 +12767,2025-03-08T14:00:26.286819-08:00,1014.8245849609375,10.739801,10739.801 +12768,2025-03-08T14:00:37.022843-08:00,1014.8426513671875,10.736024,10736.024 +12769,2025-03-08T14:00:47.759635-08:00,1014.8426513671875,10.736792,10736.792 +12770,2025-03-08T14:00:58.498639-08:00,1014.8426513671875,10.739004,10739.004 +12771,2025-03-08T14:01:09.230671-08:00,1014.8245849609375,10.732032,10732.032 +12772,2025-03-08T14:01:19.964807-08:00,1014.8261108398438,10.734136,10734.136 +12773,2025-03-08T14:01:30.699999-08:00,1014.8261108398438,10.735192,10735.192 +12774,2025-03-08T14:01:41.425666-08:00,1014.8309326171875,10.725667,10725.667 +12775,2025-03-08T14:01:52.162131-08:00,1014.840576171875,10.736465,10736.465 +12776,2025-03-08T14:02:02.901823-08:00,1014.8390502929688,10.739692,10739.692 +12777,2025-03-08T14:02:13.627750-08:00,1014.8523559570312,10.725927,10725.927 +12778,2025-03-08T14:02:24.361633-08:00,1014.8177490234375,10.733883,10733.883 +12779,2025-03-08T14:02:35.095884-08:00,1014.8456420898438,10.734251,10734.251 +12780,2025-03-08T14:02:45.838814-08:00,1014.83251953125,10.74293,10742.93 +12781,2025-03-08T14:02:56.564640-08:00,1014.8306274414062,10.725826,10725.826 +12782,2025-03-08T14:03:07.299132-08:00,1014.83251953125,10.734492,10734.492 +12783,2025-03-08T14:03:18.033740-08:00,1014.8372802734375,10.734608,10734.608 +12784,2025-03-08T14:03:28.776433-08:00,1014.84716796875,10.742693,10742.693 +12785,2025-03-08T14:03:39.502776-08:00,1014.80419921875,10.726343,10726.343 +12786,2025-03-08T14:03:50.240851-08:00,1014.79248046875,10.738075,10738.075 +12787,2025-03-08T14:04:00.974807-08:00,1014.7940673828125,10.733956,10733.956 +12788,2025-03-08T14:04:11.704644-08:00,1014.7840576171875,10.729837,10729.837 +12789,2025-03-08T14:04:22.450640-08:00,1014.806884765625,10.745996,10745.996 +12790,2025-03-08T14:04:33.179638-08:00,1014.77392578125,10.728998,10728.998 +12791,2025-03-08T14:04:43.916900-08:00,1014.8102416992188,10.737262,10737.262 +12792,2025-03-08T14:04:54.645669-08:00,1014.818359375,10.728769,10728.769 +12793,2025-03-08T14:05:05.379638-08:00,1014.8084106445312,10.733969,10733.969 +12794,2025-03-08T14:05:16.112648-08:00,1014.7966918945312,10.73301,10733.01 +12795,2025-03-08T14:05:26.852814-08:00,1014.7999877929688,10.740166,10740.166 +12796,2025-03-08T14:05:37.583033-08:00,1014.8096923828125,10.730219,10730.219 +12797,2025-03-08T14:05:48.325639-08:00,1014.7849731445312,10.742606,10742.606 +12798,2025-03-08T14:05:59.057797-08:00,1014.814453125,10.732158,10732.158 +12799,2025-03-08T14:06:09.795068-08:00,1014.8211059570312,10.737271,10737.271 +12800,2025-03-08T14:06:20.529761-08:00,1014.7979736328125,10.734693,10734.693 +12801,2025-03-08T14:06:31.263299-08:00,936.66064453125,10.733538,10733.538 +12802,2025-03-08T14:06:41.999633-08:00,1014.8306274414062,10.736334,10736.334 +12803,2025-03-08T14:06:52.738854-08:00,1014.8618774414062,10.739221,10739.221 +12804,2025-03-08T14:07:03.472852-08:00,1014.8273315429688,10.733998,10733.998 +12805,2025-03-08T14:07:14.210677-08:00,1014.8322143554688,10.737825,10737.825 +12806,2025-03-08T14:07:24.940641-08:00,1014.8123168945312,10.729964,10729.964 +12807,2025-03-08T14:07:35.673116-08:00,1014.8384399414062,10.732475,10732.475 +12808,2025-03-08T14:07:46.410036-08:00,1014.8135375976562,10.73692,10736.92 +12809,2025-03-08T14:07:57.144675-08:00,1014.8696899414062,10.734639,10734.639 +12810,2025-03-08T14:08:07.879636-08:00,1014.8616333007812,10.734961,10734.961 +12811,2025-03-08T14:08:18.615664-08:00,1014.8532104492188,10.736028,10736.028 +12812,2025-03-08T14:08:29.346985-08:00,1014.8546752929688,10.731321,10731.321 +12813,2025-03-08T14:08:40.076643-08:00,1014.8495483398438,10.729658,10729.658 +12814,2025-03-08T14:08:50.809846-08:00,1014.8396606445312,10.733203,10733.203 +12815,2025-03-08T14:09:01.548679-08:00,1014.8359985351562,10.738833,10738.833 +12816,2025-03-08T14:09:12.292052-08:00,1014.8114013671875,10.743373,10743.373 +12817,2025-03-08T14:09:23.020637-08:00,1014.8261108398438,10.728585,10728.585 +12818,2025-03-08T14:09:33.759840-08:00,1014.8228149414062,10.739203,10739.203 +12819,2025-03-08T14:09:44.498640-08:00,1014.8078002929688,10.7388,10738.8 +12820,2025-03-08T14:09:55.226355-08:00,1014.837158203125,10.727715,10727.715 +12821,2025-03-08T14:10:05.961706-08:00,1014.8456420898438,10.735351,10735.351 +12822,2025-03-08T14:10:16.696635-08:00,1014.8206176757812,10.734929,10734.929 +12823,2025-03-08T14:10:27.428859-08:00,1014.8121948242188,10.732224,10732.224 +12824,2025-03-08T14:10:38.161633-08:00,1014.8203125,10.732774,10732.774 +12825,2025-03-08T14:10:48.889577-08:00,1014.8236083984375,10.727944,10727.944 +12826,2025-03-08T14:10:59.622339-08:00,1014.8185424804688,10.732762,10732.762 +12827,2025-03-08T14:11:10.351927-08:00,1014.8298950195312,10.729588,10729.588 +12828,2025-03-08T14:11:21.086639-08:00,1014.8298950195312,10.734712,10734.712 +12829,2025-03-08T14:11:31.826933-08:00,1014.8115844726562,10.740294,10740.294 +12830,2025-03-08T14:11:42.555817-08:00,1014.84130859375,10.728884,10728.884 +12831,2025-03-08T14:11:53.295160-08:00,1014.818115234375,10.739343,10739.343 +12832,2025-03-08T14:12:04.025713-08:00,1014.8130493164062,10.730553,10730.553 +12833,2025-03-08T14:12:14.755644-08:00,1014.8311157226562,10.729931,10729.931 +12834,2025-03-08T14:12:25.492802-08:00,1014.8340454101562,10.737158,10737.158 +12835,2025-03-08T14:12:36.227661-08:00,1014.8093872070312,10.734859,10734.859 +12836,2025-03-08T14:12:46.953851-08:00,1014.855712890625,10.72619,10726.19 +12837,2025-03-08T14:12:57.689838-08:00,1014.811279296875,10.735987,10735.987 +12838,2025-03-08T14:13:08.436494-08:00,1014.842529296875,10.746656,10746.656 +12839,2025-03-08T14:13:19.165833-08:00,1014.8027954101562,10.729339,10729.339 +12840,2025-03-08T14:13:29.897055-08:00,1014.8406372070312,10.731222,10731.222 +12841,2025-03-08T14:13:40.635667-08:00,1014.8554077148438,10.738612,10738.612 +12842,2025-03-08T14:13:51.370028-08:00,1014.86376953125,10.734361,10734.361 +12843,2025-03-08T14:14:02.106679-08:00,1014.8256225585938,10.736651,10736.651 +12844,2025-03-08T14:14:12.844850-08:00,1014.8484497070312,10.738171,10738.171 +12845,2025-03-08T14:14:23.578641-08:00,1014.8451538085938,10.733791,10733.791 +12846,2025-03-08T14:14:34.321042-08:00,1014.8465576171875,10.742401,10742.401 +12847,2025-03-08T14:14:45.052976-08:00,1014.841796875,10.731934,10731.934 +12848,2025-03-08T14:14:55.794980-08:00,1014.8630981445312,10.742004,10742.004 +12849,2025-03-08T14:15:06.530638-08:00,1014.838134765625,10.735658,10735.658 +12850,2025-03-08T14:15:17.262098-08:00,1014.8679809570312,10.73146,10731.46 +12851,2025-03-08T14:15:28.001756-08:00,1014.8612670898438,10.739658,10739.658 +12852,2025-03-08T14:15:38.732269-08:00,1014.838134765625,10.730513,10730.513 +12853,2025-03-08T14:15:49.470870-08:00,1014.826416015625,10.738601,10738.601 +12854,2025-03-08T14:16:00.213715-08:00,1014.8311767578125,10.742845,10742.845 +12855,2025-03-08T14:16:10.939695-08:00,1014.8193969726562,10.72598,10725.98 +12856,2025-03-08T14:16:21.675428-08:00,1014.8492431640625,10.735733,10735.733 +12857,2025-03-08T14:16:32.409648-08:00,1014.8109130859375,10.73422,10734.22 +12858,2025-03-08T14:16:43.153890-08:00,1014.8421630859375,10.744242,10744.242 +12859,2025-03-08T14:16:53.892772-08:00,1014.8587646484375,10.738882,10738.882 +12860,2025-03-08T14:17:04.619037-08:00,1014.8470458984375,10.726265,10726.265 +12861,2025-03-08T14:17:15.358667-08:00,1014.8135986328125,10.73963,10739.63 +12862,2025-03-08T14:17:26.097878-08:00,1014.8234252929688,10.739211,10739.211 +12863,2025-03-08T14:17:36.830708-08:00,1014.8065795898438,10.73283,10732.83 +12864,2025-03-08T14:17:47.566131-08:00,1014.796630859375,10.735423,10735.423 +12865,2025-03-08T14:17:58.306825-08:00,1014.8047485351562,10.740694,10740.694 +12866,2025-03-08T14:18:09.046210-08:00,1014.7800903320312,10.739385,10739.385 +12867,2025-03-08T14:18:19.791640-08:00,1014.7962646484375,10.74543,10745.43 +12868,2025-03-08T14:18:30.530635-08:00,1014.8113403320312,10.738995,10738.995 +12869,2025-03-08T14:18:41.269641-08:00,1014.7698364257812,10.739006,10739.006 +12870,2025-03-08T14:18:52.008638-08:00,1014.758056640625,10.738997,10738.997 +12871,2025-03-08T14:19:02.742820-08:00,1014.759521484375,10.734182,10734.182 +12872,2025-03-08T14:19:13.488831-08:00,1014.7510986328125,10.746011,10746.011 +12873,2025-03-08T14:19:24.218640-08:00,1014.732666015625,10.729809,10729.809 +12874,2025-03-08T14:19:34.954658-08:00,1014.7176513671875,10.736018,10736.018 +12875,2025-03-08T14:19:45.698839-08:00,1014.7260131835938,10.744181,10744.181 +12876,2025-03-08T14:19:56.429820-08:00,1014.7128295898438,10.730981,10730.981 +12877,2025-03-08T14:20:07.168658-08:00,1014.7374267578125,10.738838,10738.838 +12878,2025-03-08T14:20:17.902229-08:00,1014.7307739257812,10.733571,10733.571 +12879,2025-03-08T14:20:28.639641-08:00,1014.7418823242188,10.737412,10737.412 +12880,2025-03-08T14:20:39.370751-08:00,1014.7568969726562,10.73111,10731.11 +12881,2025-03-08T14:20:50.100669-08:00,1014.7352294921875,10.729918,10729.918 +12882,2025-03-08T14:21:00.838635-08:00,1014.7532958984375,10.737966,10737.966 +12883,2025-03-08T14:21:11.570860-08:00,1014.7664794921875,10.732225,10732.225 +12884,2025-03-08T14:21:22.312847-08:00,1014.7432861328125,10.741987,10741.987 +12885,2025-03-08T14:21:33.050514-08:00,1014.7647094726562,10.737667,10737.667 +12886,2025-03-08T14:21:43.785640-08:00,1014.7731323242188,10.735126,10735.126 +12887,2025-03-08T14:21:54.526641-08:00,1014.7845458984375,10.741001,10741.001 +12888,2025-03-08T14:22:05.255852-08:00,1014.7664184570312,10.729211,10729.211 +12889,2025-03-08T14:22:15.992855-08:00,1014.7664184570312,10.737003,10737.003 +12890,2025-03-08T14:22:26.727640-08:00,1014.7413940429688,10.734785,10734.785 +12891,2025-03-08T14:22:37.464634-08:00,1014.7429809570312,10.736994,10736.994 +12892,2025-03-08T14:22:48.194877-08:00,1014.7429809570312,10.730243,10730.243 +12893,2025-03-08T14:22:58.927822-08:00,1014.7462768554688,10.732945,10732.945 +12894,2025-03-08T14:23:09.667640-08:00,1014.7396240234375,10.739818,10739.818 +12895,2025-03-08T14:23:20.408682-08:00,1014.7462768554688,10.741042,10741.042 +12896,2025-03-08T14:23:31.136641-08:00,1014.767578125,10.727959,10727.959 +12897,2025-03-08T14:23:41.886753-08:00,1014.756103515625,10.750112,10750.112 +12898,2025-03-08T14:23:52.629645-08:00,1014.7693481445312,10.742892,10742.892 +12899,2025-03-08T14:24:03.362238-08:00,1014.7775268554688,10.732593,10732.593 +12900,2025-03-08T14:24:14.105813-08:00,1014.759033203125,10.743575,10743.575 +12901,2025-03-08T14:24:24.854750-08:00,1014.7606201171875,10.748937,10748.937 +12902,2025-03-08T14:24:35.599880-08:00,1014.7774047851562,10.74513,10745.13 +12903,2025-03-08T14:24:46.339644-08:00,1014.7457885742188,10.739764,10739.764 +12904,2025-03-08T14:24:57.085671-08:00,1014.765625,10.746027,10746.027 +12905,2025-03-08T14:25:07.823669-08:00,1014.7737426757812,10.737998,10737.998 +12906,2025-03-08T14:25:18.576643-08:00,1014.7572021484375,10.752974,10752.974 +12907,2025-03-08T14:25:29.317639-08:00,1014.732177734375,10.740996,10740.996 +12908,2025-03-08T14:25:40.061877-08:00,1014.7383422851562,10.744238,10744.238 +12909,2025-03-08T14:25:50.812855-08:00,1014.77294921875,10.750978,10750.978 +12910,2025-03-08T14:26:01.563641-08:00,1014.7431030273438,10.750786,10750.786 +12911,2025-03-08T14:26:12.305690-08:00,1014.7957763671875,10.742049,10742.049 +12912,2025-03-08T14:26:23.051847-08:00,1014.7824096679688,10.746157,10746.157 +12913,2025-03-08T14:26:33.799691-08:00,1014.7522583007812,10.747844,10747.844 +12914,2025-03-08T14:26:44.548182-08:00,1014.7537231445312,10.748491,10748.491 +12915,2025-03-08T14:26:55.287845-08:00,1014.763671875,10.739663,10739.663 +12916,2025-03-08T14:27:06.032823-08:00,1014.7617797851562,10.744978,10744.978 +12917,2025-03-08T14:27:16.773038-08:00,1014.7385864257812,10.740215,10740.215 +12918,2025-03-08T14:27:27.516909-08:00,1014.7400512695312,10.743871,10743.871 +12919,2025-03-08T14:27:38.263452-08:00,1014.7345581054688,10.746543,10746.543 +12920,2025-03-08T14:27:49.007756-08:00,1014.7345581054688,10.744304,10744.304 +12921,2025-03-08T14:27:59.757377-08:00,1014.7591552734375,10.749621,10749.621 +12922,2025-03-08T14:28:10.502635-08:00,1014.763916015625,10.745258,10745.258 +12923,2025-03-08T14:28:21.249713-08:00,1014.759033203125,10.747078,10747.078 +12924,2025-03-08T14:28:31.992639-08:00,1014.7223510742188,10.742926,10742.926 +12925,2025-03-08T14:28:42.733640-08:00,1014.7468872070312,10.741001,10741.001 +12926,2025-03-08T14:28:53.482666-08:00,1014.7435913085938,10.749026,10749.026 +12927,2025-03-08T14:29:04.232638-08:00,1014.71044921875,10.749972,10749.972 +12928,2025-03-08T14:29:14.975646-08:00,1014.688720703125,10.743008,10743.008 +12929,2025-03-08T14:29:25.712703-08:00,1014.7115478515625,10.737057,10737.057 +12930,2025-03-08T14:29:36.465852-08:00,1014.72802734375,10.753149,10753.149 +12931,2025-03-08T14:29:47.207640-08:00,1014.709716796875,10.741788,10741.788 +12932,2025-03-08T14:29:57.957638-08:00,1014.7445068359375,10.749998,10749.998 +12933,2025-03-08T14:30:08.700640-08:00,1014.74267578125,10.743002,10743.002 +12934,2025-03-08T14:30:19.441641-08:00,1014.704345703125,10.741001,10741.001 +12935,2025-03-08T14:30:30.180066-08:00,1014.7139892578125,10.738425,10738.425 +12936,2025-03-08T14:30:40.927813-08:00,1014.709228515625,10.747747,10747.747 +12937,2025-03-08T14:30:51.663039-08:00,1014.7518920898438,10.735226,10735.226 +12938,2025-03-08T14:31:02.404641-08:00,1014.7320556640625,10.741602,10741.602 +12939,2025-03-08T14:31:13.145824-08:00,1014.740478515625,10.741183,10741.183 +12940,2025-03-08T14:31:23.894640-08:00,1014.7153930664062,10.748816,10748.816 +12941,2025-03-08T14:31:34.631837-08:00,1014.7301635742188,10.737197,10737.197 +12942,2025-03-08T14:31:45.374903-08:00,1014.7234497070312,10.743066,10743.066 +12943,2025-03-08T14:31:56.115856-08:00,1014.7451782226562,10.740953,10740.953 +12944,2025-03-08T14:32:06.852840-08:00,1014.769775390625,10.736984,10736.984 +12945,2025-03-08T14:32:17.597421-08:00,1014.7745361328125,10.744581,10744.581 +12946,2025-03-08T14:32:28.332842-08:00,1014.772705078125,10.735421,10735.421 +12947,2025-03-08T14:32:39.075666-08:00,1014.7263793945312,10.742824,10742.824 +12948,2025-03-08T14:32:49.817638-08:00,1014.7149047851562,10.741972,10741.972 +12949,2025-03-08T14:33:00.560710-08:00,1014.7329711914062,10.743072,10743.072 +12950,2025-03-08T14:33:11.307638-08:00,1014.7164306640625,10.746928,10746.928 +12951,2025-03-08T14:33:22.038837-08:00,1014.7296752929688,10.731199,10731.199 +12952,2025-03-08T14:33:32.789522-08:00,1014.7310791015625,10.750685,10750.685 +12953,2025-03-08T14:33:43.527755-08:00,1014.712646484375,10.738233,10738.233 +12954,2025-03-08T14:33:54.263638-08:00,1014.7112426757812,10.735883,10735.883 +12955,2025-03-08T14:34:05.007645-08:00,1014.7361450195312,10.744007,10744.007 +12956,2025-03-08T14:34:15.749642-08:00,1014.7361450195312,10.741997,10741.997 +12957,2025-03-08T14:34:26.498639-08:00,1014.7295532226562,10.748997,10748.997 +12958,2025-03-08T14:34:37.246702-08:00,1014.7575073242188,10.748063,10748.063 +12959,2025-03-08T14:34:47.987644-08:00,1014.7259521484375,10.740942,10740.942 +12960,2025-03-08T14:34:58.730818-08:00,1014.7229614257812,10.743174,10743.174 +12961,2025-03-08T14:35:09.470874-08:00,1014.7162475585938,10.740056,10740.056 +12962,2025-03-08T14:35:20.220674-08:00,1014.7229614257812,10.7498,10749.8 +12963,2025-03-08T14:35:30.955232-08:00,1014.721435546875,10.734558,10734.558 +12964,2025-03-08T14:35:41.705833-08:00,1014.71484375,10.750601,10750.601 +12965,2025-03-08T14:35:52.440638-08:00,1014.7493896484375,10.734805,10734.805 +12966,2025-03-08T14:36:03.189384-08:00,1014.7361450195312,10.748746,10748.746 +12967,2025-03-08T14:36:13.924640-08:00,1014.7361450195312,10.735256,10735.256 +12968,2025-03-08T14:36:24.672756-08:00,1014.7759399414062,10.748116,10748.116 +12969,2025-03-08T14:36:35.409031-08:00,1014.721435546875,10.736275,10736.275 +12970,2025-03-08T14:36:46.147641-08:00,1014.6648559570312,10.73861,10738.61 +12971,2025-03-08T14:36:56.897638-08:00,1014.7030639648438,10.749997,10749.997 +12972,2025-03-08T14:37:07.630754-08:00,1014.703125,10.733116,10733.116 +12973,2025-03-08T14:37:18.374695-08:00,1014.7525024414062,10.743941,10743.941 +12974,2025-03-08T14:37:29.126528-08:00,1014.7281494140625,10.751833,10751.833 +12975,2025-03-08T14:37:39.860693-08:00,1014.7015380859375,10.734165,10734.165 +12976,2025-03-08T14:37:50.605643-08:00,1014.7030639648438,10.74495,10744.95 +12977,2025-03-08T14:38:01.343641-08:00,1014.66845703125,10.737998,10737.998 +12978,2025-03-08T14:38:12.092633-08:00,1014.71484375,10.748992,10748.992 +12979,2025-03-08T14:38:22.834642-08:00,1014.7111206054688,10.742009,10742.009 +12980,2025-03-08T14:38:33.573097-08:00,1014.7162475585938,10.738455,10738.455 +12981,2025-03-08T14:38:44.319852-08:00,1014.675048828125,10.746755,10746.755 +12982,2025-03-08T14:38:55.051633-08:00,1014.6964111328125,10.731781,10731.781 +12983,2025-03-08T14:39:05.789641-08:00,1014.7295532226562,10.738008,10738.008 +12984,2025-03-08T14:39:16.536640-08:00,1014.6928100585938,10.746999,10746.999 +12985,2025-03-08T14:39:27.273641-08:00,1014.712646484375,10.737001,10737.001 +12986,2025-03-08T14:39:38.009637-08:00,1014.696533203125,10.735996,10735.996 +12987,2025-03-08T14:39:48.748028-08:00,1014.708251953125,10.738391,10738.391 +12988,2025-03-08T14:39:59.477682-08:00,1014.7281494140625,10.729654,10729.654 +12989,2025-03-08T14:40:10.220056-08:00,1014.7380981445312,10.742374,10742.374 +12990,2025-03-08T14:40:20.956733-08:00,1014.711669921875,10.736677,10736.677 +12991,2025-03-08T14:40:31.694059-08:00,1014.693603515625,10.737326,10737.326 +12992,2025-03-08T14:40:42.432836-08:00,1014.68701171875,10.738777,10738.777 +12993,2025-03-08T14:40:53.163694-08:00,1014.6903686523438,10.730858,10730.858 +12994,2025-03-08T14:41:03.904640-08:00,1014.6922607421875,10.740946,10740.946 +12995,2025-03-08T14:41:14.637640-08:00,1014.740478515625,10.733,10733.0 +12996,2025-03-08T14:41:25.368135-08:00,1014.7254028320312,10.730495,10730.495 +12997,2025-03-08T14:41:36.107641-08:00,1014.727294921875,10.739506,10739.506 +12998,2025-03-08T14:41:46.837372-08:00,1014.7257690429688,10.729731,10729.731 +12999,2025-03-08T14:41:57.574897-08:00,1014.7243041992188,10.737525,10737.525 +13000,2025-03-08T14:42:08.311740-08:00,1014.71435546875,10.736843,10736.843 +13001,2025-03-08T14:42:19.056169-08:00,1014.7129516601562,10.744429,10744.429 +13002,2025-03-08T14:42:29.793303-08:00,1014.6949462890625,10.737134,10737.134 +13003,2025-03-08T14:42:40.531641-08:00,1014.7132568359375,10.738338,10738.338 +13004,2025-03-08T14:42:51.264662-08:00,1014.6983032226562,10.733021,10733.021 +13005,2025-03-08T14:43:02.003790-08:00,1014.7181396484375,10.739128,10739.128 +13006,2025-03-08T14:43:12.738666-08:00,1014.7100830078125,10.734876,10734.876 +13007,2025-03-08T14:43:23.480637-08:00,1014.74169921875,10.741971,10741.971 +13008,2025-03-08T14:43:34.221635-08:00,1014.7134399414062,10.740998,10740.998 +13009,2025-03-08T14:43:44.960670-08:00,1014.7086181640625,10.739035,10739.035 +13010,2025-03-08T14:43:55.691854-08:00,1014.6868896484375,10.731184,10731.184 +13011,2025-03-08T14:44:06.426304-08:00,1014.693603515625,10.73445,10734.45 +13012,2025-03-08T14:44:17.162843-08:00,1014.68212890625,10.736539,10736.539 +13013,2025-03-08T14:44:27.902644-08:00,1014.6953125,10.739801,10739.801 +13014,2025-03-08T14:44:38.642709-08:00,1014.6736450195312,10.740065,10740.065 +13015,2025-03-08T14:44:49.391951-08:00,1014.6802978515625,10.749242,10749.242 +13016,2025-03-08T14:45:00.123820-08:00,1014.7100830078125,10.731869,10731.869 +13017,2025-03-08T14:45:10.868037-08:00,1014.7086181640625,10.744217,10744.217 +13018,2025-03-08T14:45:21.611171-08:00,1014.7232666015625,10.743134,10743.134 +13019,2025-03-08T14:45:32.343859-08:00,1014.7048950195312,10.732688,10732.688 +13020,2025-03-08T14:45:43.085642-08:00,1014.7081909179688,10.741783,10741.783 +13021,2025-03-08T14:45:53.837636-08:00,1014.71484375,10.751994,10751.994 +13022,2025-03-08T14:46:04.570715-08:00,1014.6868896484375,10.733079,10733.079 +13023,2025-03-08T14:46:15.319794-08:00,1014.7030639648438,10.749079,10749.079 +13024,2025-03-08T14:46:26.050869-08:00,1014.6632690429688,10.731075,10731.075 +13025,2025-03-08T14:46:36.785637-08:00,1014.704833984375,10.734768,10734.768 +13026,2025-03-08T14:46:47.528644-08:00,1014.69970703125,10.743007,10743.007 +13027,2025-03-08T14:46:58.263637-08:00,1014.6930541992188,10.734993,10734.993 +13028,2025-03-08T14:47:09.006641-08:00,1014.6763916015625,10.743004,10743.004 +13029,2025-03-08T14:47:19.747638-08:00,1014.689697265625,10.740997,10740.997 +13030,2025-03-08T14:47:30.491644-08:00,1014.6581420898438,10.744006,10744.006 +13031,2025-03-08T14:47:41.229812-08:00,1014.6595458984375,10.738168,10738.168 +13032,2025-03-08T14:47:51.964845-08:00,1014.6959228515625,10.735033,10735.033 +13033,2025-03-08T14:48:02.705637-08:00,1014.66943359375,10.740792,10740.792 +13034,2025-03-08T14:48:13.446424-08:00,1014.6974487304688,10.740787,10740.787 +13035,2025-03-08T14:48:24.186670-08:00,1014.6974487304688,10.740246,10740.246 +13036,2025-03-08T14:48:34.936684-08:00,1014.7040405273438,10.750014,10750.014 +13037,2025-03-08T14:48:45.674840-08:00,1014.7320556640625,10.738156,10738.156 +13038,2025-03-08T14:48:56.418736-08:00,1014.7006225585938,10.743896,10743.896 +13039,2025-03-08T14:49:07.154176-08:00,1014.7205200195312,10.73544,10735.44 +13040,2025-03-08T14:49:17.898640-08:00,1014.69873046875,10.744464,10744.464 +13041,2025-03-08T14:49:28.642642-08:00,1014.7120361328125,10.744002,10744.002 +13042,2025-03-08T14:49:39.386853-08:00,1014.7150268554688,10.744211,10744.211 +13043,2025-03-08T14:49:50.118709-08:00,1014.728271484375,10.731856,10731.856 +13044,2025-03-08T14:50:00.862853-08:00,1014.7022094726562,10.744144,10744.144 +13045,2025-03-08T14:50:11.612642-08:00,1014.7040405273438,10.749789,10749.789 +13046,2025-03-08T14:50:22.352773-08:00,1014.7176513671875,10.740131,10740.131 +13047,2025-03-08T14:50:33.091733-08:00,1014.7132568359375,10.73896,10738.96 +13048,2025-03-08T14:50:43.836812-08:00,1014.706787109375,10.745079,10745.079 +13049,2025-03-08T14:50:54.575966-08:00,1014.7123413085938,10.739154,10739.154 +13050,2025-03-08T14:51:05.315764-08:00,1014.714599609375,10.739798,10739.798 +13051,2025-03-08T14:51:16.059815-08:00,1014.6885986328125,10.744051,10744.051 +13052,2025-03-08T14:51:26.800705-08:00,1014.7073364257812,10.74089,10740.89 +13053,2025-03-08T14:51:37.534642-08:00,1014.7044677734375,10.733937,10733.937 +13054,2025-03-08T14:51:48.282041-08:00,1014.7081298828125,10.747399,10747.399 +13055,2025-03-08T14:51:59.014290-08:00,1014.68212890625,10.732249,10732.249 +13056,2025-03-08T14:52:09.756839-08:00,1014.714111328125,10.742549,10742.549 +13057,2025-03-08T14:52:20.502713-08:00,1014.7277221679688,10.745874,10745.874 +13058,2025-03-08T14:52:31.216340-08:00,1014.700927734375,10.713627,10713.627 +13059,2025-03-08T14:52:41.955496-08:00,1014.696533203125,10.739156,10739.156 +13060,2025-03-08T14:52:52.704667-08:00,1014.6951293945312,10.749171,10749.171 +13061,2025-03-08T14:53:03.449648-08:00,1014.6969604492188,10.744981,10744.981 +13062,2025-03-08T14:53:14.197495-08:00,1014.6624145507812,10.747847,10747.847 +13063,2025-03-08T14:53:24.934603-08:00,1014.6911010742188,10.737108,10737.108 +13064,2025-03-08T14:53:35.670670-08:00,1014.6546630859375,10.736067,10736.067 +13065,2025-03-08T14:53:46.416707-08:00,1014.6598510742188,10.746037,10746.037 +13066,2025-03-08T14:53:57.162329-08:00,1014.6484375,10.745622,10745.622 +13067,2025-03-08T14:54:07.901046-08:00,1014.6749267578125,10.738717,10738.717 +13068,2025-03-08T14:54:18.640632-08:00,1014.6782836914062,10.739586,10739.586 +13069,2025-03-08T14:54:29.377495-08:00,1014.6766967773438,10.736863,10736.863 +13070,2025-03-08T14:54:40.128312-08:00,1014.6602172851562,10.750817,10750.817 +13071,2025-03-08T14:54:50.864428-08:00,1014.6668701171875,10.736116,10736.116 +13072,2025-03-08T14:55:01.606623-08:00,1014.6720581054688,10.742195,10742.195 +13073,2025-03-08T14:55:12.345820-08:00,1014.6654052734375,10.739197,10739.197 +13074,2025-03-08T14:55:23.087525-08:00,1014.6785888671875,10.741705,10741.705 +13075,2025-03-08T14:55:33.836648-08:00,1014.6454467773438,10.749123,10749.123 +13076,2025-03-08T14:55:44.583492-08:00,1014.6734619140625,10.746844,10746.844 +13077,2025-03-08T14:55:55.319581-08:00,1014.6815795898438,10.736089,10736.089 +13078,2025-03-08T14:56:06.069493-08:00,1014.6683349609375,10.749912,10749.912 +13079,2025-03-08T14:56:16.801685-08:00,1014.7047119140625,10.732192,10732.192 +13080,2025-03-08T14:56:27.550250-08:00,1014.671630859375,10.748565,10748.565 +13081,2025-03-08T14:56:38.292490-08:00,1014.6649780273438,10.74224,10742.24 +13082,2025-03-08T14:56:49.037494-08:00,1014.704345703125,10.745004,10745.004 +13083,2025-03-08T14:56:59.769369-08:00,1014.6580200195312,10.731875,10731.875 +13084,2025-03-08T14:57:10.506494-08:00,1014.6561889648438,10.737125,10737.125 +13085,2025-03-08T14:57:21.244871-08:00,1014.6693725585938,10.738377,10738.377 +13086,2025-03-08T14:57:31.986738-08:00,1014.6676025390625,10.741867,10741.867 +13087,2025-03-08T14:57:42.725671-08:00,1014.6755981445312,10.738933,10738.933 +13088,2025-03-08T14:57:53.459684-08:00,1014.6889038085938,10.734013,10734.013 +13089,2025-03-08T14:58:04.206670-08:00,1014.6572875976562,10.746986,10746.986 +13090,2025-03-08T14:58:14.951551-08:00,1014.6620483398438,10.744881,10744.881 +13091,2025-03-08T14:58:25.694785-08:00,1014.7380981445312,10.743234,10743.234 +13092,2025-03-08T14:58:36.433494-08:00,1014.6815795898438,10.738709,10738.709 +13093,2025-03-08T14:58:47.176492-08:00,1014.6701049804688,10.742998,10742.998 +13094,2025-03-08T14:58:57.924699-08:00,1014.7028198242188,10.748207,10748.207 +13095,2025-03-08T14:59:19.416523-08:00,1014.7093505859375,21.491824,21491.824 +13096,2025-03-08T14:59:30.152496-08:00,1014.6976318359375,10.735973,10735.973 +13097,2025-03-08T14:59:40.896536-08:00,1014.7306518554688,10.74404,10744.04 +13098,2025-03-08T14:59:51.640516-08:00,1014.7152099609375,10.74398,10743.98 +13099,2025-03-08T15:00:02.383683-08:00,1014.6905517578125,10.743167,10743.167 +13100,2025-03-08T15:00:13.121517-08:00,1014.6621704101562,10.737834,10737.834 +13101,2025-03-08T15:00:23.867734-08:00,1014.7000732421875,10.746217,10746.217 +13102,2025-03-08T15:00:34.611822-08:00,1014.6716918945312,10.744088,10744.088 +13103,2025-03-08T15:00:45.356491-08:00,1014.68798828125,10.744669,10744.669 +13104,2025-03-08T15:00:56.095496-08:00,1014.6713256835938,10.739005,10739.005 +13105,2025-03-08T15:01:06.839492-08:00,1014.6695556640625,10.743996,10743.996 +13106,2025-03-08T15:01:17.581783-08:00,1014.6592407226562,10.742291,10742.291 +13107,2025-03-08T15:01:28.330009-08:00,1014.6624755859375,10.748226,10748.226 +13108,2025-03-08T15:01:39.072839-08:00,1014.66064453125,10.74283,10742.83 +13109,2025-03-08T15:01:49.814672-08:00,1014.69189453125,10.741833,10741.833 +13110,2025-03-08T15:02:00.554663-08:00,1014.670166015625,10.739991,10739.991 +13111,2025-03-08T15:02:11.304690-08:00,1014.6682739257812,10.750027,10750.027 +13112,2025-03-08T15:02:22.043088-08:00,1014.6962280273438,10.738398,10738.398 +13113,2025-03-08T15:02:32.777495-08:00,1014.6729736328125,10.734407,10734.407 +13114,2025-03-08T15:02:43.519494-08:00,1014.6759643554688,10.741999,10741.999 +13115,2025-03-08T15:02:54.270634-08:00,1014.6593627929688,10.75114,10751.14 +13116,2025-03-08T15:03:05.010528-08:00,1014.6626586914062,10.739894,10739.894 +13117,2025-03-08T15:03:15.750495-08:00,1014.6621704101562,10.739967,10739.967 +13118,2025-03-08T15:03:26.485694-08:00,1014.6358032226562,10.735199,10735.199 +13119,2025-03-08T15:03:37.232684-08:00,1014.6404418945312,10.74699,10746.99 +13120,2025-03-08T15:03:47.978663-08:00,1014.6486206054688,10.745979,10745.979 +13121,2025-03-08T15:03:58.712704-08:00,1014.6367797851562,10.734041,10734.041 +13122,2025-03-08T15:04:09.451539-08:00,1014.68310546875,10.738835,10738.835 +13123,2025-03-08T15:04:20.199511-08:00,1014.6698608398438,10.747972,10747.972 +13124,2025-03-08T15:04:30.934712-08:00,1014.680908203125,10.735201,10735.201 +13125,2025-03-08T15:04:41.677685-08:00,1014.6478271484375,10.742973,10742.973 +13126,2025-03-08T15:04:52.420703-08:00,1014.6760864257812,10.743018,10743.018 +13127,2025-03-08T15:05:03.160684-08:00,1014.6624145507812,10.739981,10739.981 +13128,2025-03-08T15:05:13.903419-08:00,1014.649169921875,10.742735,10742.735 +13129,2025-03-08T15:05:24.637493-08:00,1014.6487426757812,10.734074,10734.074 +13130,2025-03-08T15:05:35.384494-08:00,1014.6553955078125,10.747001,10747.001 +13131,2025-03-08T15:05:46.126697-08:00,1014.6585693359375,10.742203,10742.203 +13132,2025-03-08T15:05:56.861496-08:00,1014.6950073242188,10.734799,10734.799 +13133,2025-03-08T15:06:07.613486-08:00,1014.6287231445312,10.75199,10751.99 +13134,2025-03-08T15:06:18.352492-08:00,1014.6515502929688,10.739006,10739.006 +13135,2025-03-08T15:06:29.090684-08:00,1014.686279296875,10.738192,10738.192 +13136,2025-03-08T15:06:39.844508-08:00,1014.661865234375,10.753824,10753.824 +13137,2025-03-08T15:06:50.586642-08:00,1014.664794921875,10.742134,10742.134 +13138,2025-03-08T15:07:01.331692-08:00,1014.6515502929688,10.74505,10745.05 +13139,2025-03-08T15:07:12.070836-08:00,1014.6893920898438,10.739144,10739.144 +13140,2025-03-08T15:07:22.816594-08:00,1014.65625,10.745758,10745.758 +13141,2025-03-08T15:07:33.560670-08:00,1014.646240234375,10.744076,10744.076 +13142,2025-03-08T15:07:44.305701-08:00,1014.6576538085938,10.745031,10745.031 +13143,2025-03-08T15:07:55.048512-08:00,1014.6590576171875,10.742811,10742.811 +13144,2025-03-08T15:08:05.798527-08:00,1014.6306762695312,10.750015,10750.015 +13145,2025-03-08T15:08:16.540497-08:00,1014.6420288085938,10.74197,10741.97 +13146,2025-03-08T15:08:27.290502-08:00,1014.626953125,10.750005,10750.005 +13147,2025-03-08T15:08:38.027562-08:00,1014.6051635742188,10.73706,10737.06 +13148,2025-03-08T15:08:48.774499-08:00,1014.6317138671875,10.746937,10746.937 +13149,2025-03-08T15:08:59.522496-08:00,1014.6643676757812,10.747997,10747.997 +13150,2025-03-08T15:09:10.259960-08:00,1014.6543579101562,10.737464,10737.464 +13151,2025-03-08T15:09:21.008667-08:00,1014.64404296875,10.748707,10748.707 +13152,2025-03-08T15:09:31.748608-08:00,1014.6525268554688,10.739941,10739.941 +13153,2025-03-08T15:09:42.503254-08:00,1014.650634765625,10.754646,10754.646 +13154,2025-03-08T15:09:53.241685-08:00,1014.6388549804688,10.738431,10738.431 +13155,2025-03-08T15:10:03.983490-08:00,1014.6648559570312,10.741805,10741.805 +13156,2025-03-08T15:10:14.725494-08:00,1014.638427734375,10.742004,10742.004 +13157,2025-03-08T15:10:25.468560-08:00,1014.681396484375,10.743066,10743.066 +13158,2025-03-08T15:10:36.219694-08:00,1014.6578369140625,10.751134,10751.134 +13159,2025-03-08T15:10:46.959497-08:00,1014.649658203125,10.739803,10739.803 +13160,2025-03-08T15:10:57.706486-08:00,1014.65966796875,10.746989,10746.989 +13161,2025-03-08T15:11:08.443917-08:00,1014.637939453125,10.737431,10737.431 +13162,2025-03-08T15:11:19.188517-08:00,1014.6610717773438,10.7446,10744.6 +13163,2025-03-08T15:11:29.931709-08:00,1014.6412353515625,10.743192,10743.192 +13164,2025-03-08T15:11:40.676903-08:00,1014.667724609375,10.745194,10745.194 +13165,2025-03-08T15:11:51.415675-08:00,1014.66259765625,10.738772,10738.772 +13166,2025-03-08T15:12:02.161673-08:00,1014.6544799804688,10.745998,10745.998 +13167,2025-03-08T15:12:12.902567-08:00,1014.6890869140625,10.740894,10740.894 +13168,2025-03-08T15:12:23.648035-08:00,1014.6529541015625,10.745468,10745.468 +13169,2025-03-08T15:12:34.387592-08:00,1014.6464233398438,10.739557,10739.557 +13170,2025-03-08T15:12:45.121710-08:00,1014.6710815429688,10.734118,10734.118 +13171,2025-03-08T15:12:55.858677-08:00,1014.6564331054688,10.736967,10736.967 +13172,2025-03-08T15:13:06.599890-08:00,1014.6696166992188,10.741213,10741.213 +13173,2025-03-08T15:13:17.339064-08:00,1014.677734375,10.739174,10739.174 +13174,2025-03-08T15:13:28.072922-08:00,1014.62841796875,10.733858,10733.858 +13175,2025-03-08T15:13:38.813491-08:00,1014.6629638671875,10.740569,10740.569 +13176,2025-03-08T15:13:49.558668-08:00,1014.6710815429688,10.745177,10745.177 +13177,2025-03-08T15:14:00.295494-08:00,1014.67626953125,10.736826,10736.826 +13178,2025-03-08T15:14:11.042495-08:00,1014.6629638671875,10.747001,10747.001 +13179,2025-03-08T15:14:21.777683-08:00,1014.649658203125,10.735188,10735.188 +13180,2025-03-08T15:14:32.515656-08:00,1014.6644287109375,10.737973,10737.973 +13181,2025-03-08T15:14:43.259281-08:00,1014.64453125,10.743625,10743.625 +13182,2025-03-08T15:14:54.008491-08:00,1014.62646484375,10.74921,10749.21 +13183,2025-03-08T15:15:04.748494-08:00,1014.6464233398438,10.740003,10740.003 +13184,2025-03-08T15:15:15.484721-08:00,1014.6412353515625,10.736227,10736.227 +13185,2025-03-08T15:15:26.228900-08:00,1014.6146850585938,10.744179,10744.179 +13186,2025-03-08T15:15:36.963679-08:00,1014.622802734375,10.734779,10734.779 +13187,2025-03-08T15:15:47.705558-08:00,1014.6361083984375,10.741879,10741.879 +13188,2025-03-08T15:15:58.449602-08:00,1014.6279907226562,10.744044,10744.044 +13189,2025-03-08T15:16:09.195494-08:00,1014.6378173828125,10.745892,10745.892 +13190,2025-03-08T15:16:19.928494-08:00,1014.651123046875,10.733,10733.0 +13191,2025-03-08T15:16:30.671497-08:00,1014.652587890625,10.743003,10743.003 +13192,2025-03-08T15:16:41.410506-08:00,1014.6408081054688,10.739009,10739.009 +13193,2025-03-08T15:16:52.152587-08:00,1014.6709594726562,10.742081,10742.081 +13194,2025-03-08T15:17:02.892686-08:00,1014.652587890625,10.740099,10740.099 +13195,2025-03-08T15:17:13.630816-08:00,1014.6408081054688,10.73813,10738.13 +13196,2025-03-08T15:17:24.373715-08:00,1014.6459350585938,10.742899,10742.899 +13197,2025-03-08T15:17:35.105494-08:00,1014.652587890625,10.731779,10731.779 +13198,2025-03-08T15:17:45.847707-08:00,1014.65771484375,10.742213,10742.213 +13199,2025-03-08T15:17:56.590676-08:00,1014.6246337890625,10.742969,10742.969 +13200,2025-03-08T15:18:07.328892-08:00,1014.62939453125,10.738216,10738.216 +13201,2025-03-08T15:18:18.070694-08:00,1014.66259765625,10.741802,10741.802 +13202,2025-03-08T15:18:28.803697-08:00,1014.621337890625,10.733003,10733.003 +13203,2025-03-08T15:18:39.549494-08:00,1014.651123046875,10.745797,10745.797 +13204,2025-03-08T15:18:50.285567-08:00,1014.639404296875,10.736073,10736.073 +13205,2025-03-08T15:19:01.028667-08:00,1014.622802734375,10.7431,10743.1 +13206,2025-03-08T15:19:11.767493-08:00,1014.621337890625,10.738826,10738.826 +13207,2025-03-08T15:19:22.508682-08:00,1014.6842041015625,10.741189,10741.189 +13208,2025-03-08T15:19:33.245514-08:00,1014.6492919921875,10.736832,10736.832 +13209,2025-03-08T15:19:43.993821-08:00,1014.6492919921875,10.748307,10748.307 +13210,2025-03-08T15:19:54.731493-08:00,1014.65771484375,10.737672,10737.672 +13211,2025-03-08T15:20:05.471639-08:00,1014.6312255859375,10.740146,10740.146 +13212,2025-03-08T15:20:16.213490-08:00,1014.6643676757812,10.741851,10741.851 +13213,2025-03-08T15:20:37.703902-08:00,1014.6378173828125,21.490412,21490.412 +13214,2025-03-08T15:20:48.443816-08:00,1014.6312255859375,10.739914,10739.914 +13215,2025-03-08T15:20:59.181929-08:00,1014.65771484375,10.738113,10738.113 +13216,2025-03-08T15:21:09.931691-08:00,1014.6709594726562,10.749762,10749.762 +13217,2025-03-08T15:21:20.676333-08:00,1014.6908569335938,10.744642,10744.642 +13218,2025-03-08T15:21:31.413714-08:00,1014.669189453125,10.737381,10737.381 +13219,2025-03-08T15:21:42.167493-08:00,1014.6610717773438,10.753779,10753.779 +13220,2025-03-08T15:21:52.902880-08:00,1014.6776733398438,10.735387,10735.387 +13221,2025-03-08T15:22:03.643571-08:00,1014.6709594726562,10.740691,10740.691 +13222,2025-03-08T15:22:14.388486-08:00,1014.6478271484375,10.744915,10744.915 +13223,2025-03-08T15:22:25.131497-08:00,1014.6743774414062,10.743011,10743.011 +13224,2025-03-08T15:22:35.876524-08:00,1014.65966796875,10.745027,10745.027 +13225,2025-03-08T15:22:46.613968-08:00,1014.6743774414062,10.737444,10737.444 +13226,2025-03-08T15:22:57.351863-08:00,1014.6860961914062,10.737895,10737.895 +13227,2025-03-08T15:23:08.096587-08:00,1014.649658203125,10.744724,10744.724 +13228,2025-03-08T15:23:18.841630-08:00,1014.6696166992188,10.745043,10745.043 +13229,2025-03-08T15:23:29.582494-08:00,1014.6629638671875,10.740864,10740.864 +13230,2025-03-08T15:23:40.313669-08:00,1014.6629638671875,10.731175,10731.175 +13231,2025-03-08T15:23:51.052463-08:00,1014.7012329101562,10.738794,10738.794 +13232,2025-03-08T15:24:01.798657-08:00,1014.6880493164062,10.746194,10746.194 +13233,2025-03-08T15:24:12.541690-08:00,1014.6847534179688,10.743033,10743.033 +13234,2025-03-08T15:24:23.276629-08:00,1014.6615600585938,10.734939,10734.939 +13235,2025-03-08T15:24:34.012503-08:00,1014.6648559570312,10.735874,10735.874 +13236,2025-03-08T15:24:44.753487-08:00,1014.6648559570312,10.740984,10740.984 +13237,2025-03-08T15:24:55.488572-08:00,1014.69140625,10.735085,10735.085 +13238,2025-03-08T15:25:06.225662-08:00,1014.7098388671875,10.73709,10737.09 +13239,2025-03-08T15:25:16.963741-08:00,1014.6685791015625,10.738079,10738.079 +13240,2025-03-08T15:25:27.706489-08:00,1014.6685791015625,10.742748,10742.748 +13241,2025-03-08T15:25:38.436702-08:00,1014.6751708984375,10.730213,10730.213 +13242,2025-03-08T15:25:49.176015-08:00,1014.6734619140625,10.739313,10739.313 +13243,2025-03-08T15:25:59.919759-08:00,1014.6984252929688,10.743744,10743.744 +13244,2025-03-08T15:26:10.652630-08:00,1014.69189453125,10.732871,10732.871 +13245,2025-03-08T15:26:21.390703-08:00,1014.7263793945312,10.738073,10738.073 +13246,2025-03-08T15:26:32.123492-08:00,1014.6819458007812,10.732789,10732.789 +13247,2025-03-08T15:26:42.861839-08:00,1014.6458740234375,10.738347,10738.347 +13248,2025-03-08T15:26:53.603508-08:00,1014.70703125,10.741669,10741.669 +13249,2025-03-08T15:27:04.338723-08:00,1014.6573486328125,10.735215,10735.215 +13250,2025-03-08T15:27:15.069593-08:00,1014.67578125,10.73087,10730.87 +13251,2025-03-08T15:27:25.808938-08:00,1014.67236328125,10.739345,10739.345 +13252,2025-03-08T15:27:36.551115-08:00,1014.683837890625,10.742177,10742.177 +13253,2025-03-08T15:27:47.283584-08:00,1014.6478271484375,10.732469,10732.469 +13254,2025-03-08T15:27:58.018493-08:00,1014.6478271484375,10.734909,10734.909 +13255,2025-03-08T15:28:08.763530-08:00,1014.6658325195312,10.745037,10745.037 +13256,2025-03-08T15:28:19.500496-08:00,1014.6724853515625,10.736966,10736.966 +13257,2025-03-08T15:28:30.240495-08:00,1014.6610107421875,10.739999,10739.999 +13258,2025-03-08T15:28:40.977659-08:00,1014.6724853515625,10.737164,10737.164 +13259,2025-03-08T15:28:51.710587-08:00,1014.65771484375,10.732928,10732.928 +13260,2025-03-08T15:29:02.450543-08:00,1014.649658203125,10.739956,10739.956 +13261,2025-03-08T15:29:13.191892-08:00,1014.648193359375,10.741349,10741.349 +13262,2025-03-08T15:29:23.919669-08:00,1014.6680297851562,10.727777,10727.777 +13263,2025-03-08T15:29:34.665586-08:00,1014.6383056640625,10.745917,10745.917 +13264,2025-03-08T15:29:45.398644-08:00,1014.6317138671875,10.733058,10733.058 +13265,2025-03-08T15:29:56.138972-08:00,1014.6448974609375,10.740328,10740.328 +13266,2025-03-08T15:30:06.872494-08:00,1014.6317138671875,10.733522,10733.522 +13267,2025-03-08T15:30:17.606495-08:00,1014.621826171875,10.734001,10734.001 +13268,2025-03-08T15:30:28.347672-08:00,1014.621826171875,10.741177,10741.177 +13269,2025-03-08T15:30:39.077488-08:00,1014.666748046875,10.729816,10729.816 +13270,2025-03-08T15:30:49.816500-08:00,1014.6467895507812,10.739012,10739.012 +13271,2025-03-08T15:31:00.550748-08:00,1014.6436157226562,10.734248,10734.248 +13272,2025-03-08T15:31:11.288672-08:00,1014.6453247070312,10.737924,10737.924 +13273,2025-03-08T15:31:22.025617-08:00,1014.650146484375,10.736945,10736.945 +13274,2025-03-08T15:31:32.761521-08:00,1014.605712890625,10.735904,10735.904 +13275,2025-03-08T15:31:43.498495-08:00,1014.6339721679688,10.736974,10736.974 +13276,2025-03-08T15:31:54.231498-08:00,1014.6240844726562,10.733003,10733.003 +13277,2025-03-08T15:32:04.960781-08:00,1014.6012573242188,10.729283,10729.283 +13278,2025-03-08T15:32:15.702495-08:00,1014.6259155273438,10.741714,10741.714 +13279,2025-03-08T15:32:26.432817-08:00,1014.62451171875,10.730322,10730.322 +13280,2025-03-08T15:32:37.166678-08:00,1014.5946655273438,10.733861,10733.861 +13281,2025-03-08T15:32:47.895494-08:00,1014.6013793945312,10.728816,10728.816 +13282,2025-03-08T15:32:58.633496-08:00,1014.6182861328125,10.738002,10738.002 +13283,2025-03-08T15:33:09.367836-08:00,1014.6267700195312,10.73434,10734.34 +13284,2025-03-08T15:33:20.102677-08:00,1014.6316528320312,10.734841,10734.841 +13285,2025-03-08T15:33:30.833496-08:00,1014.6088256835938,10.730819,10730.819 +13286,2025-03-08T15:33:41.570494-08:00,1014.6331787109375,10.736998,10736.998 +13287,2025-03-08T15:33:52.305667-08:00,1014.6170043945312,10.735173,10735.173 +13288,2025-03-08T15:34:03.040660-08:00,1014.6818237304688,10.734993,10734.993 +13289,2025-03-08T15:34:13.769494-08:00,1014.6553955078125,10.728834,10728.834 +13290,2025-03-08T15:34:24.511488-08:00,1014.6241455078125,10.741994,10741.994 +13291,2025-03-08T15:34:35.240498-08:00,1014.6704711914062,10.72901,10729.01 +13292,2025-03-08T15:34:45.981826-08:00,1014.6459350585938,10.741328,10741.328 +13293,2025-03-08T15:34:56.722303-08:00,1014.66748046875,10.740477,10740.477 +13294,2025-03-08T15:35:07.459470-08:00,1014.6363525390625,10.737167,10737.167 +13295,2025-03-08T15:35:18.190498-08:00,1014.6429443359375,10.731028,10731.028 +13296,2025-03-08T15:35:28.930896-08:00,1014.6561889648438,10.740398,10740.398 +13297,2025-03-08T15:35:39.677683-08:00,1014.6278686523438,10.746787,10746.787 +13298,2025-03-08T15:35:50.413668-08:00,1014.6529541015625,10.735985,10735.985 +13299,2025-03-08T15:36:01.151522-08:00,1014.6397094726562,10.737854,10737.854 +13300,2025-03-08T15:36:11.890620-08:00,1014.6051025390625,10.739098,10739.098 +13301,2025-03-08T15:36:22.630495-08:00,1014.59033203125,10.739875,10739.875 +13302,2025-03-08T15:36:33.361044-08:00,1014.6234130859375,10.730549,10730.549 +13303,2025-03-08T15:36:44.105685-08:00,1014.6234130859375,10.744641,10744.641 +13304,2025-03-08T15:36:54.840652-08:00,1014.6698608398438,10.734967,10734.967 +13305,2025-03-08T15:37:05.576493-08:00,1014.60693359375,10.735841,10735.841 +13306,2025-03-08T15:37:16.305682-08:00,1014.6187744140625,10.729189,10729.189 +13307,2025-03-08T15:37:27.047014-08:00,1014.60546875,10.741332,10741.332 +13308,2025-03-08T15:37:37.783536-08:00,1014.5838012695312,10.736522,10736.522 +13309,2025-03-08T15:37:48.523486-08:00,1014.6036987304688,10.73995,10739.95 +13310,2025-03-08T15:37:59.263492-08:00,1014.5609130859375,10.740006,10740.006 +13311,2025-03-08T15:38:10.003495-08:00,1014.5823364257812,10.740003,10740.003 +13312,2025-03-08T15:38:20.731648-08:00,1014.5875244140625,10.728153,10728.153 +13313,2025-03-08T15:38:31.466580-08:00,1014.5625,10.734932,10734.932 +13314,2025-03-08T15:38:42.210522-08:00,1014.5923461914062,10.743942,10743.942 +13315,2025-03-08T15:38:52.952737-08:00,1014.5709228515625,10.742215,10742.215 +13316,2025-03-08T15:39:03.684494-08:00,1014.6173706054688,10.731757,10731.757 +13317,2025-03-08T15:39:14.416672-08:00,1014.6040649414062,10.732178,10732.178 +13318,2025-03-08T15:39:25.156792-08:00,1014.5761108398438,10.74012,10740.12 +13319,2025-03-08T15:39:35.891692-08:00,1014.5775756835938,10.7349,10734.9 +13320,2025-03-08T15:39:46.628497-08:00,1014.5927124023438,10.736805,10736.805 +13321,2025-03-08T15:39:57.369710-08:00,1014.5845947265625,10.741213,10741.213 +13322,2025-03-08T15:40:08.096372-08:00,1014.5912475585938,10.726662,10726.662 +13323,2025-03-08T15:40:18.837243-08:00,1014.5845947265625,10.740871,10740.871 +13324,2025-03-08T15:40:29.573557-08:00,1014.596435546875,10.736314,10736.314 +13325,2025-03-08T15:40:40.305908-08:00,1014.5614624023438,10.732351,10732.351 +13326,2025-03-08T15:40:51.047691-08:00,1014.579833984375,10.741783,10741.783 +13327,2025-03-08T15:41:01.785679-08:00,1014.5916137695312,10.737988,10737.988 +13328,2025-03-08T15:41:12.528199-08:00,1014.5585327148438,10.74252,10742.52 +13329,2025-03-08T15:41:23.266696-08:00,1014.5765380859375,10.738497,10738.497 +13330,2025-03-08T15:41:33.996495-08:00,1014.5765380859375,10.729799,10729.799 +13331,2025-03-08T15:41:44.735508-08:00,1014.5817260742188,10.739013,10739.013 +13332,2025-03-08T15:41:55.483713-08:00,1014.5537719726562,10.748205,10748.205 +13333,2025-03-08T15:42:06.219681-08:00,1014.5452880859375,10.735968,10735.968 +13334,2025-03-08T15:42:16.958584-08:00,1014.5504760742188,10.738903,10738.903 +13335,2025-03-08T15:42:27.700494-08:00,1014.5770263671875,10.74191,10741.91 +13336,2025-03-08T15:42:38.433557-08:00,1014.5935668945312,10.733063,10733.063 +13337,2025-03-08T15:42:49.178698-08:00,1014.6001586914062,10.745141,10745.141 +13338,2025-03-08T15:42:59.908836-08:00,1014.612060546875,10.730138,10730.138 +13339,2025-03-08T15:43:10.651123-08:00,1014.6171264648438,10.742287,10742.287 +13340,2025-03-08T15:43:21.391629-08:00,1014.57080078125,10.740506,10740.506 +13341,2025-03-08T15:43:32.128492-08:00,1014.595458984375,10.736863,10736.863 +13342,2025-03-08T15:43:42.858494-08:00,1014.6123657226562,10.730002,10730.002 +13343,2025-03-08T15:43:53.600504-08:00,1014.5958862304688,10.74201,10742.01 +13344,2025-03-08T15:44:04.341671-08:00,1014.604248046875,10.741167,10741.167 +13345,2025-03-08T15:44:15.084311-08:00,1014.559814453125,10.74264,10742.64 +13346,2025-03-08T15:44:25.821861-08:00,1014.5712280273438,10.73755,10737.55 +13347,2025-03-08T15:44:36.559542-08:00,1014.6175537109375,10.737681,10737.681 +13348,2025-03-08T15:44:47.295905-08:00,1014.5565795898438,10.736363,10736.363 +13349,2025-03-08T15:44:58.031693-08:00,1014.6278686523438,10.735788,10735.788 +13350,2025-03-08T15:45:08.768828-08:00,1014.5731201171875,10.737135,10737.135 +13351,2025-03-08T15:45:19.504040-08:00,1014.5900268554688,10.735212,10735.212 +13352,2025-03-08T15:45:30.241521-08:00,1014.5900268554688,10.737481,10737.481 +13353,2025-03-08T15:45:40.978491-08:00,1014.5734252929688,10.73697,10736.97 +13354,2025-03-08T15:45:51.709597-08:00,1014.568359375,10.731106,10731.106 +13355,2025-03-08T15:46:02.448534-08:00,1014.570556640625,10.738937,10738.937 +13356,2025-03-08T15:46:13.184494-08:00,1014.5142822265625,10.73596,10735.96 +13357,2025-03-08T15:46:23.925553-08:00,1014.5554809570312,10.741059,10741.059 +13358,2025-03-08T15:46:34.662723-08:00,1014.5540771484375,10.73717,10737.17 +13359,2025-03-08T15:46:45.401657-08:00,1014.539306640625,10.738934,10738.934 +13360,2025-03-08T15:46:56.132516-08:00,1014.5426635742188,10.730859,10730.859 +13361,2025-03-08T15:47:06.874688-08:00,1014.5491943359375,10.742172,10742.172 +13362,2025-03-08T15:47:17.607498-08:00,1014.5941162109375,10.73281,10732.81 +13363,2025-03-08T15:47:28.346576-08:00,1014.524658203125,10.739078,10739.078 +13364,2025-03-08T15:47:39.077516-08:00,1014.526123046875,10.73094,10730.94 +13365,2025-03-08T15:47:49.813572-08:00,1014.5047607421875,10.736056,10736.056 +13366,2025-03-08T15:48:00.557670-08:00,1014.5147094726562,10.744098,10744.098 +13367,2025-03-08T15:48:11.293899-08:00,1014.541259765625,10.736229,10736.229 +13368,2025-03-08T15:48:22.033346-08:00,1014.5117797851562,10.739447,10739.447 +13369,2025-03-08T15:48:32.767209-08:00,1014.5165405273438,10.733863,10733.863 +13370,2025-03-08T15:48:43.500491-08:00,1014.5232543945312,10.733282,10733.282 +13371,2025-03-08T15:48:54.233746-08:00,1014.4923706054688,10.733255,10733.255 +13372,2025-03-08T15:49:04.967705-08:00,1014.522216796875,10.733959,10733.959 +13373,2025-03-08T15:49:15.710896-08:00,1014.533935546875,10.743191,10743.191 +13374,2025-03-08T15:49:26.443739-08:00,1014.5239868164062,10.732843,10732.843 +13375,2025-03-08T15:49:37.186837-08:00,1014.5023193359375,10.743098,10743.098 +13376,2025-03-08T15:49:47.920132-08:00,1014.5354614257812,10.733295,10733.295 +13377,2025-03-08T15:49:58.655660-08:00,1014.5292358398438,10.735528,10735.528 +13378,2025-03-08T15:50:09.396351-08:00,1014.561279296875,10.740691,10740.691 +13379,2025-03-08T15:50:20.131736-08:00,1014.5480346679688,10.735385,10735.385 +13380,2025-03-08T15:50:30.871493-08:00,1014.5719604492188,10.739757,10739.757 +13381,2025-03-08T15:50:41.602834-08:00,1014.5491943359375,10.731341,10731.341 +13382,2025-03-08T15:50:52.338691-08:00,1014.5513916015625,10.735857,10735.857 +13383,2025-03-08T15:51:03.076025-08:00,1014.5352172851562,10.737334,10737.334 +13384,2025-03-08T15:51:13.818658-08:00,1014.5454711914062,10.742633,10742.633 +13385,2025-03-08T15:51:24.545886-08:00,1014.5278930664062,10.727228,10727.228 +13386,2025-03-08T15:51:35.286671-08:00,1014.51171875,10.740785,10740.785 +13387,2025-03-08T15:51:46.032866-08:00,1014.516845703125,10.746195,10746.195 +13388,2025-03-08T15:51:56.770292-08:00,1014.50439453125,10.737426,10737.426 +13389,2025-03-08T15:52:07.502649-08:00,1014.5772094726562,10.732357,10732.357 +13390,2025-03-08T15:52:18.245494-08:00,1014.5628051757812,10.742845,10742.845 +13391,2025-03-08T15:52:29.001791-08:00,1014.5811767578125,10.756297,10756.297 +13392,2025-03-08T15:52:39.745905-08:00,1014.619384765625,10.744114,10744.114 +13393,2025-03-08T15:52:50.472423-08:00,1014.60986328125,10.726518,10726.518 +13394,2025-03-08T15:53:01.203956-08:00,1014.6196899414062,10.731533,10731.533 +13395,2025-03-08T15:53:11.945123-08:00,1014.5770263671875,10.741167,10741.167 +13396,2025-03-08T15:53:22.673542-08:00,1014.5888061523438,10.728419,10728.419 +13397,2025-03-08T15:53:33.407994-08:00,1014.6140747070312,10.734452,10734.452 +13398,2025-03-08T15:53:44.145796-08:00,1014.586181640625,10.737802,10737.802 +13399,2025-03-08T15:53:54.874214-08:00,1014.556396484375,10.728418,10728.418 +13400,2025-03-08T15:54:05.609816-08:00,1014.5931396484375,10.735602,10735.602 +13401,2025-03-08T15:54:16.344008-08:00,1014.5700073242188,10.734192,10734.192 +13402,2025-03-08T15:54:27.087786-08:00,1014.5670166015625,10.743778,10743.778 +13403,2025-03-08T15:54:37.819195-08:00,1014.5916137695312,10.731409,10731.409 +13404,2025-03-08T15:54:48.551556-08:00,1014.5868530273438,10.732361,10732.361 +13405,2025-03-08T15:54:59.287517-08:00,1014.5720825195312,10.735961,10735.961 +13406,2025-03-08T15:55:10.020794-08:00,1014.5540771484375,10.733277,10733.277 +13407,2025-03-08T15:55:20.760011-08:00,1014.5342407226562,10.739217,10739.217 +13408,2025-03-08T15:55:31.496998-08:00,1014.557373046875,10.736987,10736.987 +13409,2025-03-08T15:55:42.231862-08:00,1014.5706176757812,10.734864,10734.864 +13410,2025-03-08T15:55:52.967788-08:00,1014.5661010742188,10.735926,10735.926 +13411,2025-03-08T15:56:03.703035-08:00,1014.5411987304688,10.735247,10735.247 +13412,2025-03-08T15:56:14.435967-08:00,1014.5875244140625,10.732932,10732.932 +13413,2025-03-08T15:56:25.175112-08:00,1014.552978515625,10.739145,10739.145 +13414,2025-03-08T15:56:35.904986-08:00,1014.5165405273438,10.729874,10729.874 +13415,2025-03-08T15:56:46.640014-08:00,1014.5496215820312,10.735028,10735.028 +13416,2025-03-08T15:56:57.375967-08:00,1014.5379028320312,10.735953,10735.953 +13417,2025-03-08T15:57:08.105006-08:00,1014.5510864257812,10.729039,10729.039 +13418,2025-03-08T15:57:18.848823-08:00,1014.5661010742188,10.743817,10743.817 +13419,2025-03-08T15:57:29.581209-08:00,1014.5709228515625,10.732386,10732.386 +13420,2025-03-08T15:57:40.313971-08:00,1014.51806640625,10.732762,10732.762 +13421,2025-03-08T15:57:51.056436-08:00,1014.552978515625,10.742465,10742.465 +13422,2025-03-08T15:58:01.788890-08:00,1014.5595092773438,10.732454,10732.454 +13423,2025-03-08T15:58:12.528998-08:00,1014.56103515625,10.740108,10740.108 +13424,2025-03-08T15:58:23.264796-08:00,1014.5264892578125,10.735798,10735.798 +13425,2025-03-08T15:58:34.003169-08:00,1014.5592041015625,10.738373,10738.373 +13426,2025-03-08T15:58:43.478673-08:00,1014.5706176757812,9.475504,9475.504 +13427,2025-03-08T15:58:44.742579-08:00,1014.55078125,1.263906,1263.906 +13428,2025-03-08T15:58:55.473039-08:00,1014.544189453125,10.73046,10730.46 +13429,2025-03-08T15:59:06.211975-08:00,1014.5459594726562,10.738936,10738.936 +13430,2025-03-08T15:59:16.955951-08:00,1014.514404296875,10.743976,10743.976 +13431,2025-03-08T15:59:27.684982-08:00,1014.5640869140625,10.729031,10729.031 +13432,2025-03-08T15:59:38.427648-08:00,1014.5802612304688,10.742666,10742.666 +13433,2025-03-08T15:59:49.159795-08:00,1014.5736083984375,10.732147,10732.147 +13434,2025-03-08T15:59:59.892868-08:00,1014.5075073242188,10.733073,10733.073 +13435,2025-03-08T16:00:10.631809-08:00,1014.504150390625,10.738941,10738.941 +13436,2025-03-08T16:00:21.377946-08:00,1014.5239868164062,10.746137,10746.137 +13437,2025-03-08T16:00:32.108823-08:00,1014.517333984375,10.730877,10730.877 +13438,2025-03-08T16:00:42.852792-08:00,1014.5287475585938,10.743969,10743.969 +13439,2025-03-08T16:00:53.585005-08:00,1014.5618896484375,10.732213,10732.213 +13440,2025-03-08T16:01:04.326004-08:00,1014.5648193359375,10.740999,10740.999 +13441,2025-03-08T16:01:15.061982-08:00,1014.5482788085938,10.735978,10735.978 +13442,2025-03-08T16:01:25.803673-08:00,1014.556396484375,10.741691,10741.691 +13443,2025-03-08T16:01:36.536839-08:00,1014.5413818359375,10.733166,10733.166 +13444,2025-03-08T16:01:47.268793-08:00,1014.5347900390625,10.731954,10731.954 +13445,2025-03-08T16:01:58.007872-08:00,1014.5413818359375,10.739079,10739.079 +13446,2025-03-08T16:02:08.752878-08:00,1014.5711059570312,10.745006,10745.006 +13447,2025-03-08T16:02:19.479836-08:00,1014.5263061523438,10.726958,10726.958 +13448,2025-03-08T16:02:30.220788-08:00,1014.53955078125,10.740952,10740.952 +13449,2025-03-08T16:02:40.952341-08:00,1014.5678100585938,10.731553,10731.553 +13450,2025-03-08T16:02:51.692266-08:00,1014.529296875,10.739925,10739.925 +13451,2025-03-08T16:03:02.424860-08:00,1014.529296875,10.732594,10732.594 +13452,2025-03-08T16:03:13.161794-08:00,1014.5571899414062,10.736934,10736.934 +13453,2025-03-08T16:03:23.901792-08:00,1014.5884399414062,10.739998,10739.998 +13454,2025-03-08T16:03:34.634894-08:00,1014.5421752929688,10.733102,10733.102 +13455,2025-03-08T16:03:45.371965-08:00,1014.5505981445312,10.737071,10737.071 +13456,2025-03-08T16:03:56.107813-08:00,1014.5388793945312,10.735848,10735.848 +13457,2025-03-08T16:04:06.841824-08:00,1014.5337524414062,10.734011,10734.011 +13458,2025-03-08T16:04:17.585003-08:00,1014.56201171875,10.743179,10743.179 +13459,2025-03-08T16:04:28.318321-08:00,1014.5385131835938,10.733318,10733.318 +13460,2025-03-08T16:04:39.057183-08:00,1014.5304565429688,10.738862,10738.862 +13461,2025-03-08T16:04:49.795791-08:00,1014.5021362304688,10.738608,10738.608 +13462,2025-03-08T16:05:00.531908-08:00,1014.5072631835938,10.736117,10736.117 +13463,2025-03-08T16:05:11.267938-08:00,1014.4837646484375,10.73603,10736.03 +13464,2025-03-08T16:05:22.008352-08:00,1014.51025390625,10.740414,10740.414 +13465,2025-03-08T16:05:32.751876-08:00,1014.5216674804688,10.743524,10743.524 +13466,2025-03-08T16:05:43.487578-08:00,1014.5892333984375,10.735702,10735.702 +13467,2025-03-08T16:05:54.222859-08:00,1014.5164794921875,10.735281,10735.281 +13468,2025-03-08T16:06:04.957866-08:00,1014.5267333984375,10.735007,10735.007 +13469,2025-03-08T16:06:15.701038-08:00,1014.5413818359375,10.743172,10743.172 +13470,2025-03-08T16:06:26.434987-08:00,1014.53662109375,10.733949,10733.949 +13471,2025-03-08T16:06:37.169995-08:00,1014.5050659179688,10.735008,10735.008 +13472,2025-03-08T16:06:47.910855-08:00,1014.5396118164062,10.74086,10740.86 +13473,2025-03-08T16:06:58.647861-08:00,1014.5348510742188,10.737006,10737.006 +13474,2025-03-08T16:07:09.381793-08:00,1014.5296630859375,10.733932,10733.932 +13475,2025-03-08T16:07:20.118958-08:00,1014.5958862304688,10.737165,10737.165 +13476,2025-03-08T16:07:30.851969-08:00,1014.5293579101562,10.733011,10733.011 +13477,2025-03-08T16:07:41.588934-08:00,1014.4601440429688,10.736965,10736.965 +13478,2025-03-08T16:07:52.329825-08:00,1014.5014038085938,10.740891,10740.891 +13479,2025-03-08T16:08:03.070966-08:00,1014.53076171875,10.741141,10741.141 +13480,2025-03-08T16:08:13.799426-08:00,1014.5657958984375,10.72846,10728.46 +13481,2025-03-08T16:08:24.540791-08:00,1014.4796752929688,10.741365,10741.365 +13482,2025-03-08T16:08:35.274990-08:00,1014.5142211914062,10.734199,10734.199 +13483,2025-03-08T16:08:46.020793-08:00,1014.50439453125,10.745803,10745.803 +13484,2025-03-08T16:08:56.757786-08:00,1014.4910888671875,10.736993,10736.993 +13485,2025-03-08T16:09:07.497807-08:00,1014.4925537109375,10.740021,10740.021 +13486,2025-03-08T16:09:18.235981-08:00,1014.4940795898438,10.738174,10738.174 +13487,2025-03-08T16:09:28.970794-08:00,1014.47607421875,10.734813,10734.813 +13488,2025-03-08T16:09:39.705793-08:00,1014.4576416015625,10.734999,10734.999 +13489,2025-03-08T16:09:50.443269-08:00,1014.4790649414062,10.737476,10737.476 +13490,2025-03-08T16:10:01.185994-08:00,1014.5072631835938,10.742725,10742.725 +13491,2025-03-08T16:10:11.914793-08:00,1014.4742431640625,10.728799,10728.799 +13492,2025-03-08T16:10:22.644984-08:00,1014.4742431640625,10.730191,10730.191 +13493,2025-03-08T16:10:33.379791-08:00,1014.444091796875,10.734807,10734.807 +13494,2025-03-08T16:10:44.125823-08:00,1014.4591674804688,10.746032,10746.032 +13495,2025-03-08T16:10:54.855319-08:00,1014.4473266601562,10.729496,10729.496 +13496,2025-03-08T16:11:05.594794-08:00,1014.4205322265625,10.739475,10739.475 +13497,2025-03-08T16:11:16.331035-08:00,1014.4039916992188,10.736241,10736.241 +13498,2025-03-08T16:11:27.060325-08:00,1014.42529296875,10.72929,10729.29 +13499,2025-03-08T16:11:37.800972-08:00,1014.4617309570312,10.740647,10740.647 +13500,2025-03-08T16:11:48.534792-08:00,1014.481201171875,10.73382,10733.82 +13501,2025-03-08T16:11:59.270798-08:00,1014.4727172851562,10.736006,10736.006 +13502,2025-03-08T16:12:10.007869-08:00,1014.4742431640625,10.737071,10737.071 +13503,2025-03-08T16:12:20.751008-08:00,1014.47900390625,10.743139,10743.139 +13504,2025-03-08T16:12:31.489988-08:00,1014.44921875,10.73898,10738.98 +13505,2025-03-08T16:12:42.219829-08:00,1014.457275390625,10.729841,10729.841 +13506,2025-03-08T16:12:52.956792-08:00,1014.4522094726562,10.736963,10736.963 +13507,2025-03-08T16:13:03.696018-08:00,1014.423828125,10.739226,10739.226 +13508,2025-03-08T16:13:14.425158-08:00,1014.4403076171875,10.72914,10729.14 +13509,2025-03-08T16:13:25.156794-08:00,1014.46826171875,10.731636,10731.636 +13510,2025-03-08T16:13:35.899889-08:00,1014.4531860351562,10.743095,10743.095 +13511,2025-03-08T16:13:46.631791-08:00,1014.4829711914062,10.731902,10731.902 +13512,2025-03-08T16:13:57.363434-08:00,1014.4793701171875,10.731643,10731.643 +13513,2025-03-08T16:14:08.095795-08:00,1014.45947265625,10.732361,10732.361 +13514,2025-03-08T16:14:18.834797-08:00,1014.4296875,10.739002,10739.002 +13515,2025-03-08T16:14:29.568015-08:00,1014.4542236328125,10.733218,10733.218 +13516,2025-03-08T16:14:40.308972-08:00,1014.4093627929688,10.740957,10740.957 +13517,2025-03-08T16:14:51.043786-08:00,1014.44580078125,10.734814,10734.814 +13518,2025-03-08T16:15:01.782793-08:00,1014.4639282226562,10.739007,10739.007 +13519,2025-03-08T16:15:12.520826-08:00,1014.438720703125,10.738033,10738.033 +13520,2025-03-08T16:15:23.249992-08:00,1014.424072265625,10.729166,10729.166 +13521,2025-03-08T16:15:33.995975-08:00,1014.47998046875,10.745983,10745.983 +13522,2025-03-08T16:15:44.728095-08:00,1014.438720703125,10.73212,10732.12 +13523,2025-03-08T16:15:55.473221-08:00,1014.4221801757812,10.745126,10745.126 +13524,2025-03-08T16:16:06.207791-08:00,1014.4302978515625,10.73457,10734.57 +13525,2025-03-08T16:16:16.941203-08:00,1014.4384155273438,10.733412,10733.412 +13526,2025-03-08T16:16:27.672790-08:00,1014.4237670898438,10.731587,10731.587 +13527,2025-03-08T16:16:38.409804-08:00,1014.4402465820312,10.737014,10737.014 +13528,2025-03-08T16:16:49.145791-08:00,1014.4137573242188,10.735987,10735.987 +13529,2025-03-08T16:16:59.886073-08:00,1014.4085693359375,10.740282,10740.282 +13530,2025-03-08T16:17:10.616004-08:00,1014.4299926757812,10.729931,10729.931 +13531,2025-03-08T16:17:21.351857-08:00,1014.4383544921875,10.735853,10735.853 +13532,2025-03-08T16:17:32.095790-08:00,1014.4398193359375,10.743933,10743.933 +13533,2025-03-08T16:17:42.829791-08:00,1014.40673828125,10.734001,10734.001 +13534,2025-03-08T16:17:53.572022-08:00,1014.400146484375,10.742231,10742.231 +13535,2025-03-08T16:18:04.303013-08:00,1014.3604125976562,10.730991,10730.991 +13536,2025-03-08T16:18:15.033790-08:00,1014.3817138671875,10.730777,10730.777 +13537,2025-03-08T16:18:36.512820-08:00,1014.4148559570312,21.47903,21479.03 +13538,2025-03-08T16:18:47.247181-08:00,1014.37841796875,10.734361,10734.361 +13539,2025-03-08T16:18:57.981821-08:00,1014.366943359375,10.73464,10734.64 +13540,2025-03-08T16:19:08.711820-08:00,1014.385009765625,10.729999,10729.999 +13541,2025-03-08T16:19:19.456872-08:00,1014.37841796875,10.745052,10745.052 +13542,2025-03-08T16:19:30.195060-08:00,1014.371826171875,10.738188,10738.188 +13543,2025-03-08T16:19:40.926923-08:00,1014.3471069335938,10.731863,10731.863 +13544,2025-03-08T16:19:51.659992-08:00,1014.3585815429688,10.733069,10733.069 +13545,2025-03-08T16:20:02.397862-08:00,1014.3934326171875,10.73787,10737.87 +13546,2025-03-08T16:20:13.130110-08:00,1014.4265747070312,10.732248,10732.248 +13547,2025-03-08T16:20:23.867971-08:00,1014.3635864257812,10.737861,10737.861 +13548,2025-03-08T16:20:34.603005-08:00,1014.3635864257812,10.735034,10735.034 +13549,2025-03-08T16:20:45.342959-08:00,1014.3618774414062,10.739954,10739.954 +13550,2025-03-08T16:20:56.077984-08:00,1014.368408203125,10.735025,10735.025 +13551,2025-03-08T16:21:06.819974-08:00,1014.3635864257812,10.74199,10741.99 +13552,2025-03-08T16:21:17.548788-08:00,1014.385009765625,10.728814,10728.814 +13553,2025-03-08T16:21:28.281793-08:00,1014.39013671875,10.733005,10733.005 +13554,2025-03-08T16:21:39.016866-08:00,1014.4033813476562,10.735073,10735.073 +13555,2025-03-08T16:21:49.760788-08:00,1014.3551635742188,10.743922,10743.922 +13556,2025-03-08T16:22:00.493975-08:00,1014.3768920898438,10.733187,10733.187 +13557,2025-03-08T16:22:11.231794-08:00,1014.3551635742188,10.737819,10737.819 +13558,2025-03-08T16:22:21.962790-08:00,1014.3570556640625,10.730996,10730.996 +13559,2025-03-08T16:22:32.695998-08:00,1014.3735961914062,10.733208,10733.208 +13560,2025-03-08T16:22:43.432118-08:00,1014.353759765625,10.73612,10736.12 +13561,2025-03-08T16:22:54.170794-08:00,1014.3339233398438,10.738676,10738.676 +13562,2025-03-08T16:23:04.909825-08:00,1014.3633422851562,10.739031,10739.031 +13563,2025-03-08T16:23:15.640790-08:00,1014.343505859375,10.730965,10730.965 +13564,2025-03-08T16:23:26.380812-08:00,1014.3618774414062,10.740022,10740.022 +13565,2025-03-08T16:23:37.111211-08:00,1014.3485717773438,10.730399,10730.399 +13566,2025-03-08T16:23:47.845795-08:00,1014.3287353515625,10.734584,10734.584 +13567,2025-03-08T16:23:58.577332-08:00,1014.3353881835938,10.731537,10731.537 +13568,2025-03-08T16:24:09.314991-08:00,1014.342041015625,10.737659,10737.659 +13569,2025-03-08T16:24:20.045794-08:00,1014.3206787109375,10.730803,10730.803 +13570,2025-03-08T16:24:30.779792-08:00,1014.353759765625,10.733998,10733.998 +13571,2025-03-08T16:24:41.516902-08:00,1014.3523559570312,10.73711,10737.11 +13572,2025-03-08T16:24:52.257874-08:00,1014.3571166992188,10.740972,10740.972 +13573,2025-03-08T16:25:02.988139-08:00,1014.33251953125,10.730265,10730.265 +13574,2025-03-08T16:25:13.716792-08:00,1014.3372802734375,10.728653,10728.653 +13575,2025-03-08T16:25:24.457252-08:00,1014.314453125,10.74046,10740.46 +13576,2025-03-08T16:25:35.182787-08:00,1014.354248046875,10.725535,10725.535 +13577,2025-03-08T16:25:45.920065-08:00,1014.2993774414062,10.737278,10737.278 +13578,2025-03-08T16:25:56.649793-08:00,1014.2648315429688,10.729728,10729.728 +13579,2025-03-08T16:26:07.386168-08:00,1014.2993774414062,10.736375,10736.375 +13580,2025-03-08T16:26:18.115794-08:00,1014.29638671875,10.729626,10729.626 +13581,2025-03-08T16:26:28.857995-08:00,1014.2861938476562,10.742201,10742.201 +13582,2025-03-08T16:26:39.582789-08:00,1014.2814331054688,10.724794,10724.794 +13583,2025-03-08T16:26:50.320963-08:00,1014.29638671875,10.738174,10738.174 +13584,2025-03-08T16:27:01.049788-08:00,1014.2898559570312,10.728825,10728.825 +13585,2025-03-08T16:27:11.785948-08:00,1014.322998046875,10.73616,10736.16 +13586,2025-03-08T16:27:22.524859-08:00,1014.283203125,10.738911,10738.911 +13587,2025-03-08T16:27:33.253940-08:00,1014.2880249023438,10.729081,10729.081 +13588,2025-03-08T16:27:43.993798-08:00,1014.2814331054688,10.739858,10739.858 +13589,2025-03-08T16:27:54.723807-08:00,1014.30126953125,10.730009,10730.009 +13590,2025-03-08T16:28:05.466010-08:00,1014.3197021484375,10.742203,10742.203 +13591,2025-03-08T16:28:16.196618-08:00,1014.294677734375,10.730608,10730.608 +13592,2025-03-08T16:28:26.927786-08:00,1014.318115234375,10.731168,10731.168 +13593,2025-03-08T16:28:37.664793-08:00,1014.276611328125,10.737007,10737.007 +13594,2025-03-08T16:28:48.394604-08:00,1014.322998046875,10.729811,10729.811 +13595,2025-03-08T16:28:59.129817-08:00,1014.318115234375,10.735213,10735.213 +13596,2025-03-08T16:29:09.855370-08:00,1014.2949829101562,10.725553,10725.553 +13597,2025-03-08T16:29:20.585966-08:00,1014.2949829101562,10.730596,10730.596 +13598,2025-03-08T16:29:31.322032-08:00,1014.3035278320312,10.736066,10736.066 +13599,2025-03-08T16:29:42.044790-08:00,1014.260498046875,10.722758,10722.758 +13600,2025-03-08T16:29:52.773971-08:00,1014.3016357421875,10.729181,10729.181 +13601,2025-03-08T16:30:03.509935-08:00,1014.2653198242188,10.735964,10735.964 +13602,2025-03-08T16:30:14.239278-08:00,1014.30859375,10.729343,10729.343 +13603,2025-03-08T16:30:24.972348-08:00,1014.3035278320312,10.73307,10733.07 +13604,2025-03-08T16:30:35.712110-08:00,1014.29541015625,10.739762,10739.762 +13605,2025-03-08T16:30:46.444789-08:00,1014.2740478515625,10.732679,10732.679 +13606,2025-03-08T16:30:57.177790-08:00,1014.287353515625,10.733001,10733.001 +13607,2025-03-08T16:31:07.906960-08:00,1014.2376708984375,10.72917,10729.17 +13608,2025-03-08T16:31:18.643814-08:00,1014.3270263671875,10.736854,10736.854 +13609,2025-03-08T16:31:29.377790-08:00,1014.2642211914062,10.733976,10733.976 +13610,2025-03-08T16:31:40.104975-08:00,1014.2575073242188,10.727185,10727.185 +13611,2025-03-08T16:31:50.846901-08:00,1014.3502197265625,10.741926,10741.926 +13612,2025-03-08T16:32:01.576858-08:00,1014.2542114257812,10.729957,10729.957 +13613,2025-03-08T16:32:12.314997-08:00,1014.31201171875,10.738139,10738.139 +13614,2025-03-08T16:32:23.048982-08:00,1014.3535766601562,10.733985,10733.985 +13615,2025-03-08T16:32:33.785188-08:00,1014.3071899414062,10.736206,10736.206 +13616,2025-03-08T16:32:44.520886-08:00,1014.28076171875,10.735698,10735.698 +13617,2025-03-08T16:32:55.256008-08:00,1014.3005981445312,10.735122,10735.122 +13618,2025-03-08T16:33:05.986997-08:00,1014.3256225585938,10.730989,10730.989 +13619,2025-03-08T16:33:16.715945-08:00,1014.2759399414062,10.728948,10728.948 +13620,2025-03-08T16:33:27.444786-08:00,1014.291015625,10.728841,10728.841 +13621,2025-03-08T16:33:38.175790-08:00,1014.3373413085938,10.731004,10731.004 +13622,2025-03-08T16:33:48.912959-08:00,1014.2892456054688,10.737169,10737.169 +13623,2025-03-08T16:33:59.647817-08:00,1014.2877197265625,10.734858,10734.858 +13624,2025-03-08T16:34:10.386551-08:00,1014.314208984375,10.738734,10738.734 +13625,2025-03-08T16:34:21.116975-08:00,1014.3193969726562,10.730424,10730.424 +13626,2025-03-08T16:34:31.848973-08:00,1014.330810546875,10.731998,10731.998 +13627,2025-03-08T16:34:42.580790-08:00,1014.32421875,10.731817,10731.817 +13628,2025-03-08T16:34:53.312792-08:00,1014.3506469726562,10.732002,10732.002 +13629,2025-03-08T16:35:04.048919-08:00,1014.33740234375,10.736127,10736.127 +13630,2025-03-08T16:35:14.786170-08:00,1014.3638916015625,10.737251,10737.251 +13631,2025-03-08T16:35:25.515791-08:00,1014.3226318359375,10.729621,10729.621 +13632,2025-03-08T16:35:36.250999-08:00,1014.3492431640625,10.735208,10735.208 +13633,2025-03-08T16:35:46.979988-08:00,1014.3543090820312,10.728989,10728.989 +13634,2025-03-08T16:35:57.710832-08:00,1014.3245239257812,10.730844,10730.844 +13635,2025-03-08T16:36:08.440793-08:00,1014.3395385742188,10.729961,10729.961 +13636,2025-03-08T16:36:19.175975-08:00,1014.3179931640625,10.735182,10735.182 +13637,2025-03-08T16:36:29.911877-08:00,1014.3510131835938,10.735902,10735.902 +13638,2025-03-08T16:36:40.640377-08:00,1014.3230590820312,10.7285,10728.5 +13639,2025-03-08T16:36:51.372969-08:00,1014.3348388671875,10.732592,10732.592 +13640,2025-03-08T16:37:02.100422-08:00,1014.3480224609375,10.727453,10727.453 +13641,2025-03-08T16:37:12.837788-08:00,1014.338134765625,10.737366,10737.366 +13642,2025-03-08T16:37:23.567794-08:00,1014.3595581054688,10.730006,10730.006 +13643,2025-03-08T16:37:34.302578-08:00,1014.4043579101562,10.734784,10734.784 +13644,2025-03-08T16:37:45.031814-08:00,1014.33154296875,10.729236,10729.236 +13645,2025-03-08T16:37:55.769002-08:00,1014.3499145507812,10.737188,10737.188 +13646,2025-03-08T16:38:06.495969-08:00,1014.3546752929688,10.726967,10726.967 +13647,2025-03-08T16:38:17.231901-08:00,1014.3546752929688,10.735932,10735.932 +13648,2025-03-08T16:38:27.966860-08:00,1014.3334350585938,10.734959,10734.959 +13649,2025-03-08T16:38:38.699866-08:00,1014.3583374023438,10.733006,10733.006 +13650,2025-03-08T16:38:49.432982-08:00,1014.4113159179688,10.733116,10733.116 +13651,2025-03-08T16:39:00.166793-08:00,1014.3782958984375,10.733811,10733.811 +13652,2025-03-08T16:39:10.889009-08:00,1014.3583374023438,10.722216,10722.216 +13653,2025-03-08T16:39:21.632135-08:00,1014.4028930664062,10.743126,10743.126 +13654,2025-03-08T16:39:32.367298-08:00,1014.3565673828125,10.735163,10735.163 +13655,2025-03-08T16:39:43.098793-08:00,1014.369873046875,10.731495,10731.495 +13656,2025-03-08T16:39:53.832791-08:00,1014.3565673828125,10.733998,10733.998 +13657,2025-03-08T16:40:04.566054-08:00,1014.3668823242188,10.733263,10733.263 +13658,2025-03-08T16:40:15.297935-08:00,1014.3749389648438,10.731881,10731.881 +13659,2025-03-08T16:40:26.031794-08:00,1014.393310546875,10.733859,10733.859 +13660,2025-03-08T16:40:36.758787-08:00,1014.351806640625,10.726993,10726.993 +13661,2025-03-08T16:40:36.758787-08:00,1014.351806640625,0.0,0.0 +13662,2025-03-08T16:40:47.499973-08:00,1014.3782958984375,10.741186,10741.186 +13663,2025-03-08T16:40:47.499973-08:00,1014.3782958984375,0.0,0.0 +13664,2025-03-08T16:40:58.225083-08:00,1014.3915405273438,10.72511,10725.11 +13665,2025-03-08T16:41:08.957839-08:00,1014.35546875,10.732756,10732.756 +13666,2025-03-08T16:41:19.695963-08:00,1014.36865234375,10.738124,10738.124 +13667,2025-03-08T16:41:30.429817-08:00,1014.38525390625,10.733854,10733.854 +13668,2025-03-08T16:41:41.155973-08:00,1014.4117431640625,10.726156,10726.156 +13669,2025-03-08T16:41:51.892067-08:00,1014.38525390625,10.736094,10736.094 +13670,2025-03-08T16:42:02.629666-08:00,1014.377197265625,10.737599,10737.599 +13671,2025-03-08T16:42:13.358001-08:00,1014.403564453125,10.728335,10728.335 +13672,2025-03-08T16:42:24.091795-08:00,1014.360595703125,10.733794,10733.794 +13673,2025-03-08T16:42:34.826141-08:00,1014.3937377929688,10.734346,10734.346 +13674,2025-03-08T16:42:45.559920-08:00,1014.38232421875,10.733779,10733.779 +13675,2025-03-08T16:42:56.289797-08:00,1014.3856201171875,10.729877,10729.877 +13676,2025-03-08T16:43:07.021104-08:00,1014.3657836914062,10.731307,10731.307 +13677,2025-03-08T16:43:17.761973-08:00,1014.420166015625,10.740869,10740.869 +13678,2025-03-08T16:43:28.487955-08:00,1014.423828125,10.725982,10725.982 +13679,2025-03-08T16:43:39.227936-08:00,1014.3908081054688,10.739981,10739.981 +13680,2025-03-08T16:43:49.959193-08:00,1014.3742065429688,10.731257,10731.257 +13681,2025-03-08T16:44:00.697597-08:00,1014.4190673828125,10.738404,10738.404 +13682,2025-03-08T16:44:11.432991-08:00,1014.4337768554688,10.735394,10735.394 +13683,2025-03-08T16:44:22.167864-08:00,1014.3992309570312,10.734873,10734.873 +13684,2025-03-08T16:44:32.900220-08:00,1014.4371337890625,10.732356,10732.356 +13685,2025-03-08T16:44:43.637655-08:00,1014.3760986328125,10.737435,10737.435 +13686,2025-03-08T16:44:54.373021-08:00,1014.3892822265625,10.735366,10735.366 +13687,2025-03-08T16:45:05.105793-08:00,1014.4076538085938,10.732772,10732.772 +13688,2025-03-08T16:45:15.843006-08:00,1014.4061889648438,10.737213,10737.213 +13689,2025-03-08T16:45:26.569880-08:00,1014.412841796875,10.726874,10726.874 +13690,2025-03-08T16:45:37.305793-08:00,1014.3878173828125,10.735913,10735.913 +13691,2025-03-08T16:45:48.044793-08:00,1014.427490234375,10.739,10739.0 +13692,2025-03-08T16:45:58.774907-08:00,1014.3778686523438,10.730114,10730.114 +13693,2025-03-08T16:46:09.505791-08:00,1014.4043579101562,10.730884,10730.884 +13694,2025-03-08T16:46:20.240793-08:00,1014.381591796875,10.735002,10735.002 +13695,2025-03-08T16:46:30.972823-08:00,1014.3864135742188,10.73203,10732.03 +13696,2025-03-08T16:46:41.708089-08:00,1014.41650390625,10.735266,10735.266 +13697,2025-03-08T16:46:52.444005-08:00,1014.4132080078125,10.735916,10735.916 +13698,2025-03-08T16:47:03.177873-08:00,1014.396728515625,10.733868,10733.868 +13699,2025-03-08T16:47:13.905168-08:00,1014.4068603515625,10.727295,10727.295 +13700,2025-03-08T16:47:24.647969-08:00,1014.4021606445312,10.742801,10742.801 +13701,2025-03-08T16:47:35.377021-08:00,1014.415771484375,10.729052,10729.052 +13702,2025-03-08T16:47:46.109857-08:00,1014.39111328125,10.732836,10732.836 +13703,2025-03-08T16:47:56.848019-08:00,1014.4459228515625,10.738162,10738.162 +13704,2025-03-08T16:48:07.583849-08:00,1014.412841796875,10.73583,10735.83 +13705,2025-03-08T16:48:18.315085-08:00,1014.4135131835938,10.731236,10731.236 +13706,2025-03-08T16:48:29.045094-08:00,1014.4468994140625,10.730009,10730.009 +13707,2025-03-08T16:48:39.787347-08:00,1014.4307861328125,10.742253,10742.253 +13708,2025-03-08T16:48:50.517516-08:00,1014.4490356445312,10.730169,10730.169 +13709,2025-03-08T16:49:01.244936-08:00,1014.4413452148438,10.72742,10727.42 +13710,2025-03-08T16:49:11.984798-08:00,1014.385498046875,10.739862,10739.862 +13711,2025-03-08T16:49:22.713673-08:00,1014.4420166015625,10.728875,10728.875 +13712,2025-03-08T16:49:33.443788-08:00,1014.4224853515625,10.730115,10730.115 +13713,2025-03-08T16:49:44.180793-08:00,1014.4092407226562,10.737005,10737.005 +13714,2025-03-08T16:49:54.915500-08:00,1014.427978515625,10.734707,10734.707 +13715,2025-03-08T16:50:05.635865-08:00,1014.44140625,10.720365,10720.365 +13716,2025-03-08T16:50:16.371035-08:00,1014.360595703125,10.73517,10735.17 +13717,2025-03-08T16:50:27.099985-08:00,1014.388916015625,10.72895,10728.95 +13718,2025-03-08T16:50:37.838815-08:00,1014.3973388671875,10.73883,10738.83 +13719,2025-03-08T16:50:48.563538-08:00,1014.3925170898438,10.724723,10724.723 +13720,2025-03-08T16:50:59.294975-08:00,1014.4027099609375,10.731437,10731.437 +13721,2025-03-08T16:51:10.031787-08:00,1014.4243774414062,10.736812,10736.812 +13722,2025-03-08T16:51:20.761924-08:00,1014.3814086914062,10.730137,10730.137 +13723,2025-03-08T16:51:31.496945-08:00,1014.4042358398438,10.735021,10735.021 +13724,2025-03-08T16:51:42.229971-08:00,1014.3993530273438,10.733026,10733.026 +13725,2025-03-08T16:51:52.963081-08:00,1014.4126586914062,10.73311,10733.11 +13726,2025-03-08T16:52:03.696790-08:00,1014.42138671875,10.733709,10733.709 +13727,2025-03-08T16:52:14.430018-08:00,1014.4195556640625,10.733228,10733.228 +13728,2025-03-08T16:52:25.201954-08:00,1014.3834228515625,10.771936,10771.936 +13729,2025-03-08T16:52:35.934933-08:00,1014.3883056640625,10.732979,10732.979 +13730,2025-03-08T16:52:46.675930-08:00,1014.4213256835938,10.740997,10740.997 +13731,2025-03-08T16:52:57.407123-08:00,1014.4132690429688,10.731193,10731.193 +13732,2025-03-08T16:53:08.140953-08:00,1014.3853149414062,10.73383,10733.83 +13733,2025-03-08T16:53:18.874955-08:00,1014.4051513671875,10.734002,10734.002 +13734,2025-03-08T16:53:29.606357-08:00,1014.4000244140625,10.731402,10731.402 +13735,2025-03-08T16:53:40.344130-08:00,1014.3984985351562,10.737773,10737.773 +13736,2025-03-08T16:53:51.074141-08:00,1014.3984985351562,10.730011,10730.011 +13737,2025-03-08T16:54:01.809956-08:00,1014.4330444335938,10.735815,10735.815 +13738,2025-03-08T16:54:12.545128-08:00,1014.409912109375,10.735172,10735.172 +13739,2025-03-08T16:54:23.282208-08:00,1014.439697265625,10.73708,10737.08 +13740,2025-03-08T16:54:34.015412-08:00,1014.4032592773438,10.733204,10733.204 +13741,2025-03-08T16:54:44.750932-08:00,1014.4330444335938,10.73552,10735.52 +13742,2025-03-08T16:54:55.488336-08:00,1014.4447631835938,10.737404,10737.404 +13743,2025-03-08T16:55:06.215881-08:00,1014.4330444335938,10.727545,10727.545 +13744,2025-03-08T16:55:16.956933-08:00,1014.4213256835938,10.741052,10741.052 +13745,2025-03-08T16:55:27.682931-08:00,1014.409912109375,10.725998,10725.998 +13746,2025-03-08T16:55:38.420934-08:00,1014.4146728515625,10.738003,10738.003 +13747,2025-03-08T16:55:49.151953-08:00,1014.4495849609375,10.731019,10731.019 +13748,2025-03-08T16:55:59.890144-08:00,1014.4246826171875,10.738191,10738.191 +13749,2025-03-08T16:56:10.623005-08:00,1014.4808349609375,10.732861,10732.861 +13750,2025-03-08T16:56:21.359128-08:00,1014.4522705078125,10.736123,10736.123 +13751,2025-03-08T16:56:32.091936-08:00,1014.4375610351562,10.732808,10732.808 +13752,2025-03-08T16:56:42.828933-08:00,1014.4522705078125,10.736997,10736.997 +13753,2025-03-08T16:56:53.565090-08:00,1014.4342041015625,10.736157,10736.157 +13754,2025-03-08T16:57:04.302037-08:00,1014.4159545898438,10.736947,10736.947 +13755,2025-03-08T16:57:15.031406-08:00,1014.4390869140625,10.729369,10729.369 +13756,2025-03-08T16:57:25.766962-08:00,1014.4754638671875,10.735556,10735.556 +13757,2025-03-08T16:57:36.504168-08:00,1014.42919921875,10.737206,10737.206 +13758,2025-03-08T16:57:47.237603-08:00,1014.4390869140625,10.733435,10733.435 +13759,2025-03-08T16:57:57.967092-08:00,1014.435791015625,10.729489,10729.489 +13760,2025-03-08T16:58:08.696950-08:00,1014.4423217773438,10.729858,10729.858 +13761,2025-03-08T16:58:19.430933-08:00,1014.4042358398438,10.733983,10733.983 +13762,2025-03-08T16:58:30.164685-08:00,1014.46044921875,10.733752,10733.752 +13763,2025-03-08T16:58:40.907954-08:00,1014.4288940429688,10.743269,10743.269 +13764,2025-03-08T16:58:51.641929-08:00,1014.443603515625,10.733975,10733.975 +13765,2025-03-08T16:59:02.378001-08:00,1014.4534912109375,10.736072,10736.072 +13766,2025-03-08T16:59:13.115387-08:00,1014.5078735351562,10.737386,10737.386 +13767,2025-03-08T16:59:23.847932-08:00,1014.4781494140625,10.732545,10732.545 +13768,2025-03-08T16:59:34.585077-08:00,1014.4384155273438,10.737145,10737.145 +13769,2025-03-08T16:59:45.321102-08:00,1014.4480590820312,10.736025,10736.025 +13770,2025-03-08T16:59:56.054931-08:00,1014.4447631835938,10.733829,10733.829 +13771,2025-03-08T17:00:06.792136-08:00,1014.4547119140625,10.737205,10737.205 +13772,2025-03-08T17:00:17.519976-08:00,1014.4760131835938,10.72784,10727.84 +13773,2025-03-08T17:00:28.251271-08:00,1014.50390625,10.731295,10731.295 +13774,2025-03-08T17:00:38.983302-08:00,1014.4459228515625,10.732031,10732.031 +13775,2025-03-08T17:00:49.723931-08:00,1014.4573364257812,10.740629,10740.629 +13776,2025-03-08T17:01:00.455138-08:00,1014.4723510742188,10.731207,10731.207 +13777,2025-03-08T17:01:11.183022-08:00,1014.4540405273438,10.727884,10727.884 +13778,2025-03-08T17:01:21.920549-08:00,1014.4456176757812,10.737527,10737.527 +13779,2025-03-08T17:01:32.648931-08:00,1014.4885864257812,10.728382,10728.382 +13780,2025-03-08T17:01:43.390058-08:00,1014.4834594726562,10.741127,10741.127 +13781,2025-03-08T17:01:54.122991-08:00,1014.45556640625,10.732933,10732.933 +13782,2025-03-08T17:02:04.855933-08:00,1014.4669799804688,10.732942,10732.942 +13783,2025-03-08T17:02:15.584930-08:00,1014.4386596679688,10.728997,10728.997 +13784,2025-03-08T17:02:26.311110-08:00,1014.4486083984375,10.72618,10726.18 +13785,2025-03-08T17:02:37.050940-08:00,1014.4302368164062,10.73983,10739.83 +13786,2025-03-08T17:02:47.778932-08:00,1014.466552734375,10.727992,10727.992 +13787,2025-03-08T17:02:58.510296-08:00,1014.4349975585938,10.731364,10731.364 +13788,2025-03-08T17:03:09.239253-08:00,1014.4185180664062,10.728957,10728.957 +13789,2025-03-08T17:03:19.974934-08:00,1014.4464111328125,10.735681,10735.681 +13790,2025-03-08T17:03:30.710930-08:00,1014.4346923828125,10.735996,10735.996 +13791,2025-03-08T17:03:41.444948-08:00,1014.4645385742188,10.734018,10734.018 +13792,2025-03-08T17:03:52.175961-08:00,1014.4645385742188,10.731013,10731.013 +13793,2025-03-08T17:04:02.901934-08:00,1014.4593505859375,10.725973,10725.973 +13794,2025-03-08T17:04:13.638368-08:00,1014.4957885742188,10.736434,10736.434 +13795,2025-03-08T17:04:24.365931-08:00,1014.44580078125,10.727563,10727.563 +13796,2025-03-08T17:04:35.096933-08:00,1014.4590454101562,10.731002,10731.002 +13797,2025-03-08T17:04:45.831007-08:00,1014.4607543945312,10.734074,10734.074 +13798,2025-03-08T17:04:56.568105-08:00,1014.498779296875,10.737098,10737.098 +13799,2025-03-08T17:05:07.292956-08:00,1014.4737548828125,10.724851,10724.851 +13800,2025-03-08T17:05:18.024474-08:00,1014.470458984375,10.731518,10731.518 +13801,2025-03-08T17:05:28.767185-08:00,1014.4637451171875,10.742711,10742.711 +13802,2025-03-08T17:05:39.490264-08:00,1014.4851684570312,10.723079,10723.079 +13803,2025-03-08T17:05:50.222934-08:00,1014.45361328125,10.73267,10732.67 +13804,2025-03-08T17:06:00.960936-08:00,1014.4502563476562,10.738002,10738.002 +13805,2025-03-08T17:06:11.695248-08:00,1014.5262451171875,10.734312,10734.312 +13806,2025-03-08T17:06:22.431931-08:00,1014.4367065429688,10.736683,10736.683 +13807,2025-03-08T17:06:33.156134-08:00,1014.4844360351562,10.724203,10724.203 +13808,2025-03-08T17:06:43.897137-08:00,1014.4367065429688,10.741003,10741.003 +13809,2025-03-08T17:06:54.633032-08:00,1014.4547119140625,10.735895,10735.895 +13810,2025-03-08T17:07:05.355132-08:00,1014.4381103515625,10.7221,10722.1 +13811,2025-03-08T17:07:16.097151-08:00,1014.5006103515625,10.742019,10742.019 +13812,2025-03-08T17:07:26.829743-08:00,1014.4988403320312,10.732592,10732.592 +13813,2025-03-08T17:07:37.560931-08:00,1014.4756469726562,10.731188,10731.188 +13814,2025-03-08T17:07:48.301135-08:00,1014.4606323242188,10.740204,10740.204 +13815,2025-03-08T17:07:59.038035-08:00,1014.4304809570312,10.7369,10736.9 +13816,2025-03-08T17:08:09.764404-08:00,1014.4076538085938,10.726369,10726.369 +13817,2025-03-08T17:08:20.499926-08:00,1014.4043579101562,10.735522,10735.522 +13818,2025-03-08T17:08:31.233931-08:00,1014.4288940429688,10.734005,10734.005 +13819,2025-03-08T17:08:41.968945-08:00,1014.4288940429688,10.735014,10735.014 +13820,2025-03-08T17:08:52.702350-08:00,1014.438232421875,10.733405,10733.405 +13821,2025-03-08T17:09:01.493772-08:00,1014.4183349609375,8.791422,8791.422 +13822,2025-03-08T17:09:03.439229-08:00,1014.4268188476562,1.945457,1945.457 +13823,2025-03-08T17:09:14.179958-08:00,1014.4364013671875,10.740729,10740.729 +13824,2025-03-08T17:09:24.908110-08:00,1014.4249267578125,10.728152,10728.152 +13825,2025-03-08T17:09:35.644113-08:00,1014.4378051757812,10.736003,10736.003 +13826,2025-03-08T17:09:46.376966-08:00,1014.4459228515625,10.732853,10732.853 +13827,2025-03-08T17:09:57.114928-08:00,1014.45068359375,10.737962,10737.962 +13828,2025-03-08T17:10:07.847928-08:00,1014.4473266601562,10.733,10733.0 +13829,2025-03-08T17:10:18.582149-08:00,1014.4356079101562,10.734221,10734.221 +13830,2025-03-08T17:10:29.309931-08:00,1014.4205322265625,10.727782,10727.782 +13831,2025-03-08T17:10:40.046995-08:00,1014.4285888671875,10.737064,10737.064 +13832,2025-03-08T17:10:50.784141-08:00,1014.4220581054688,10.737146,10737.146 +13833,2025-03-08T17:11:01.519333-08:00,1014.420166015625,10.735192,10735.192 +13834,2025-03-08T17:11:12.249087-08:00,1014.47314453125,10.729754,10729.754 +13835,2025-03-08T17:11:22.991934-08:00,1014.3954467773438,10.742847,10742.847 +13836,2025-03-08T17:11:33.721943-08:00,1014.4646606445312,10.730009,10730.009 +13837,2025-03-08T17:11:44.458218-08:00,1014.434814453125,10.736275,10736.275 +13838,2025-03-08T17:11:55.191269-08:00,1014.4282836914062,10.733051,10733.051 +13839,2025-03-08T17:12:05.929934-08:00,1014.4197387695312,10.738665,10738.665 +13840,2025-03-08T17:12:16.659561-08:00,1014.4279174804688,10.729627,10729.627 +13841,2025-03-08T17:12:27.397509-08:00,1014.4293823242188,10.737948,10737.948 +13842,2025-03-08T17:12:38.133933-08:00,1014.4061889648438,10.736424,10736.424 +13843,2025-03-08T17:12:48.864931-08:00,1014.4407958984375,10.730998,10730.998 +13844,2025-03-08T17:12:59.596132-08:00,1014.401123046875,10.731201,10731.201 +13845,2025-03-08T17:13:10.331046-08:00,1014.4209594726562,10.734914,10734.914 +13846,2025-03-08T17:13:21.073968-08:00,1014.4241943359375,10.742922,10742.922 +13847,2025-03-08T17:13:31.798111-08:00,1014.4241943359375,10.724143,10724.143 +13848,2025-03-08T17:13:42.540148-08:00,1014.4522094726562,10.742037,10742.037 +13849,2025-03-08T17:13:53.272104-08:00,1014.432373046875,10.731956,10731.956 +13850,2025-03-08T17:14:04.000042-08:00,1014.4043579101562,10.727938,10727.938 +13851,2025-03-08T17:14:14.741936-08:00,1014.4190673828125,10.741894,10741.894 +13852,2025-03-08T17:14:25.477968-08:00,1014.4190673828125,10.736032,10736.032 +13853,2025-03-08T17:14:36.212081-08:00,1014.4157104492188,10.734113,10734.113 +13854,2025-03-08T17:14:46.935968-08:00,1014.42236328125,10.723887,10723.887 +13855,2025-03-08T17:14:57.681181-08:00,1014.3908081054688,10.745213,10745.213 +13856,2025-03-08T17:15:08.415094-08:00,1014.4072875976562,10.733913,10733.913 +13857,2025-03-08T17:15:19.148932-08:00,1014.402099609375,10.733838,10733.838 +13858,2025-03-08T17:15:29.892933-08:00,1014.372314453125,10.744001,10744.001 +13859,2025-03-08T17:15:40.624132-08:00,1014.38037109375,10.731199,10731.199 +13860,2025-03-08T17:15:51.370956-08:00,1014.41162109375,10.746824,10746.824 +13861,2025-03-08T17:16:02.107009-08:00,1014.4082641601562,10.736053,10736.053 +13862,2025-03-08T17:16:12.850949-08:00,1014.4098510742188,10.74394,10743.94 +13863,2025-03-08T17:16:23.581029-08:00,1014.4528198242188,10.73008,10730.08 +13864,2025-03-08T17:16:34.324998-08:00,1014.3994750976562,10.743969,10743.969 +13865,2025-03-08T17:16:45.062950-08:00,1014.41748046875,10.737952,10737.952 +13866,2025-03-08T17:16:55.801937-08:00,1014.38916015625,10.738987,10738.987 +13867,2025-03-08T17:17:06.540934-08:00,1014.37548828125,10.738997,10738.997 +13868,2025-03-08T17:17:17.278116-08:00,1014.3853759765625,10.737182,10737.182 +13869,2025-03-08T17:17:28.017997-08:00,1014.43798828125,10.739881,10739.881 +13870,2025-03-08T17:17:38.757932-08:00,1014.4412231445312,10.739935,10739.935 +13871,2025-03-08T17:17:49.497008-08:00,1014.4014892578125,10.739076,10739.076 +13872,2025-03-08T17:18:00.241935-08:00,1014.4195556640625,10.744927,10744.927 +13873,2025-03-08T17:18:10.975934-08:00,1014.4143676757812,10.733999,10733.999 +13874,2025-03-08T17:18:21.712133-08:00,1014.39404296875,10.736199,10736.199 +13875,2025-03-08T17:18:32.450202-08:00,1014.3789672851562,10.738069,10738.069 +13876,2025-03-08T17:18:43.198955-08:00,1014.3738403320312,10.748753,10748.753 +13877,2025-03-08T17:18:53.930935-08:00,1014.3786010742188,10.73198,10731.98 +13878,2025-03-08T17:19:04.677128-08:00,1014.406494140625,10.746193,10746.193 +13879,2025-03-08T17:19:15.415934-08:00,1014.4093627929688,10.738806,10738.806 +13880,2025-03-08T17:19:26.158127-08:00,1014.4027099609375,10.742193,10742.193 +13881,2025-03-08T17:19:36.901345-08:00,1014.365966796875,10.743218,10743.218 +13882,2025-03-08T17:19:47.651544-08:00,1014.397216796875,10.750199,10750.199 +13883,2025-03-08T17:19:58.385628-08:00,1014.4483032226562,10.734084,10734.084 +13884,2025-03-08T17:20:09.128930-08:00,1014.4051513671875,10.743302,10743.302 +13885,2025-03-08T17:20:19.869933-08:00,1014.42138671875,10.741003,10741.003 +13886,2025-03-08T17:20:30.601003-08:00,1014.3798217773438,10.73107,10731.07 +13887,2025-03-08T17:20:41.348674-08:00,1014.3683471679688,10.747671,10747.671 +13888,2025-03-08T17:20:52.078188-08:00,1014.4095458984375,10.729514,10729.514 +13889,2025-03-08T17:21:02.824120-08:00,1014.3646850585938,10.745932,10745.932 +13890,2025-03-08T17:21:13.553941-08:00,1014.3796997070312,10.729821,10729.821 +13891,2025-03-08T17:21:24.295933-08:00,1014.3731079101562,10.741992,10741.992 +13892,2025-03-08T17:21:35.033936-08:00,1014.3826293945312,10.738003,10738.003 +13893,2025-03-08T17:21:45.769170-08:00,1014.3863525390625,10.735234,10735.234 +13894,2025-03-08T17:21:56.506147-08:00,1014.3863525390625,10.736977,10736.977 +13895,2025-03-08T17:22:07.234935-08:00,1014.3712768554688,10.728788,10728.788 +13896,2025-03-08T17:22:17.972928-08:00,1014.4110107421875,10.737993,10737.993 +13897,2025-03-08T17:22:28.713934-08:00,1014.3796997070312,10.741006,10741.006 +13898,2025-03-08T17:22:39.451094-08:00,1014.3513793945312,10.73716,10737.16 +13899,2025-03-08T17:22:50.183001-08:00,1014.4029541015625,10.731907,10731.907 +13900,2025-03-08T17:23:00.912142-08:00,1014.38818359375,10.729141,10729.141 +13901,2025-03-08T17:23:11.652171-08:00,1014.399658203125,10.740029,10740.029 +13902,2025-03-08T17:23:22.385343-08:00,1014.3915405273438,10.733172,10733.172 +13903,2025-03-08T17:23:33.124091-08:00,1014.4246826171875,10.738748,10738.748 +13904,2025-03-08T17:23:43.863961-08:00,1014.4346923828125,10.73987,10739.87 +13905,2025-03-08T17:23:54.597932-08:00,1014.419921875,10.733971,10733.971 +13906,2025-03-08T17:24:05.327103-08:00,1014.4099731445312,10.729171,10729.171 +13907,2025-03-08T17:24:16.072120-08:00,1014.3953247070312,10.745017,10745.017 +13908,2025-03-08T17:24:26.801094-08:00,1014.393798828125,10.728974,10728.974 +13909,2025-03-08T17:24:37.541960-08:00,1014.37255859375,10.740866,10740.866 +13910,2025-03-08T17:24:48.277156-08:00,1014.4406127929688,10.735196,10735.196 +13911,2025-03-08T17:24:59.015107-08:00,1014.3975830078125,10.737951,10737.951 +13912,2025-03-08T17:25:09.751438-08:00,1014.3994750976562,10.736331,10736.331 +13913,2025-03-08T17:25:20.488933-08:00,1014.4193725585938,10.737495,10737.495 +13914,2025-03-08T17:25:31.223934-08:00,1014.39794921875,10.735001,10735.001 +13915,2025-03-08T17:25:41.965933-08:00,1014.3947143554688,10.741999,10741.999 +13916,2025-03-08T17:25:52.690953-08:00,1014.393310546875,10.72502,10725.02 +13917,2025-03-08T17:26:03.435927-08:00,1014.3851318359375,10.744974,10744.974 +13918,2025-03-08T17:26:14.173004-08:00,1014.375244140625,10.737077,10737.077 +13919,2025-03-08T17:26:24.905108-08:00,1014.3638916015625,10.732104,10732.104 +13920,2025-03-08T17:26:35.645051-08:00,1014.3937377929688,10.739943,10739.943 +13921,2025-03-08T17:26:46.372136-08:00,1014.3709106445312,10.727085,10727.085 +13922,2025-03-08T17:26:57.111937-08:00,1014.4171752929688,10.739801,10739.801 +13923,2025-03-08T17:27:07.842933-08:00,1014.3955688476562,10.730996,10730.996 +13924,2025-03-08T17:27:18.577182-08:00,1014.3694458007812,10.734249,10734.249 +13925,2025-03-08T17:27:29.308009-08:00,1014.41064453125,10.730827,10730.827 +13926,2025-03-08T17:27:40.046541-08:00,1014.4209594726562,10.738532,10738.532 +13927,2025-03-08T17:27:50.777007-08:00,1014.4176635742188,10.730466,10730.466 +13928,2025-03-08T17:28:01.522581-08:00,1014.4110717773438,10.745574,10745.574 +13929,2025-03-08T17:28:12.252958-08:00,1014.3948364257812,10.730377,10730.377 +13930,2025-03-08T17:28:22.990139-08:00,1014.4261474609375,10.737181,10737.181 +13931,2025-03-08T17:28:33.719934-08:00,1014.396728515625,10.729795,10729.795 +13932,2025-03-08T17:28:44.457307-08:00,1014.4033813476562,10.737373,10737.373 +13933,2025-03-08T17:28:55.198860-08:00,1014.3633422851562,10.741553,10741.553 +13934,2025-03-08T17:29:05.933993-08:00,1014.3898315429688,10.735133,10735.133 +13935,2025-03-08T17:29:16.672929-08:00,1014.4229736328125,10.738936,10738.936 +13936,2025-03-08T17:29:27.401006-08:00,1014.4148559570312,10.728077,10728.077 +13937,2025-03-08T17:29:38.142120-08:00,1014.4053344726562,10.741114,10741.114 +13938,2025-03-08T17:29:48.879933-08:00,1014.4398193359375,10.737813,10737.813 +13939,2025-03-08T17:29:59.614079-08:00,1014.416748046875,10.734146,10734.146 +13940,2025-03-08T17:30:10.347960-08:00,1014.4152221679688,10.733881,10733.881 +13941,2025-03-08T17:30:21.090937-08:00,1014.382080078125,10.742977,10742.977 +13942,2025-03-08T17:30:31.823224-08:00,1014.4232788085938,10.732287,10732.287 +13943,2025-03-08T17:30:42.562935-08:00,1014.4020385742188,10.739711,10739.711 +13944,2025-03-08T17:30:53.295929-08:00,1014.3836059570312,10.732994,10732.994 +13945,2025-03-08T17:31:04.033934-08:00,1014.4100952148438,10.738005,10738.005 +13946,2025-03-08T17:31:14.780157-08:00,1014.4383544921875,10.746223,10746.223 +13947,2025-03-08T17:31:25.513759-08:00,1014.3770141601562,10.733602,10733.602 +13948,2025-03-08T17:31:36.252967-08:00,1014.4265747070312,10.739208,10739.208 +13949,2025-03-08T17:31:46.988931-08:00,1014.447998046875,10.735964,10735.964 +13950,2025-03-08T17:31:57.733933-08:00,1014.413330078125,10.745002,10745.002 +13951,2025-03-08T17:32:08.472933-08:00,1014.3964233398438,10.739,10739.0 +13952,2025-03-08T17:32:19.207100-08:00,1014.37841796875,10.734167,10734.167 +13953,2025-03-08T17:32:29.948135-08:00,1014.385009765625,10.741035,10741.035 +13954,2025-03-08T17:32:40.684929-08:00,1014.366943359375,10.736794,10736.794 +13955,2025-03-08T17:32:51.425458-08:00,1014.3618774414062,10.740529,10740.529 +13956,2025-03-08T17:33:02.168274-08:00,1014.39013671875,10.742816,10742.816 +13957,2025-03-08T17:33:12.903210-08:00,1014.3570556640625,10.734936,10734.936 +13958,2025-03-08T17:33:23.637109-08:00,1014.3635864257812,10.733899,10733.899 +13959,2025-03-08T17:33:34.384114-08:00,1014.375,10.747005,10747.005 +13960,2025-03-08T17:33:45.117147-08:00,1014.3831176757812,10.733033,10733.033 +13961,2025-03-08T17:33:55.858998-08:00,1014.3831176757812,10.741851,10741.851 +13962,2025-03-08T17:34:06.593238-08:00,1014.3929443359375,10.73424,10734.24 +13963,2025-03-08T17:34:17.335941-08:00,1014.35986328125,10.742703,10742.703 +13964,2025-03-08T17:34:28.072071-08:00,1014.36279296875,10.73613,10736.13 +13965,2025-03-08T17:34:38.810960-08:00,1014.3660888671875,10.738889,10738.889 +13966,2025-03-08T17:34:49.557957-08:00,1014.380859375,10.746997,10746.997 +13967,2025-03-08T17:35:00.292933-08:00,1014.4006958007812,10.734976,10734.976 +13968,2025-03-08T17:35:11.039015-08:00,1014.388916015625,10.746082,10746.082 +13969,2025-03-08T17:35:21.772121-08:00,1014.3657836914062,10.733106,10733.106 +13970,2025-03-08T17:35:32.513200-08:00,1014.388916015625,10.741079,10741.079 +13971,2025-03-08T17:35:43.257333-08:00,1014.3984375,10.744133,10744.133 +13972,2025-03-08T17:35:53.997187-08:00,1014.3951416015625,10.739854,10739.854 +13973,2025-03-08T17:36:04.735230-08:00,1014.375244140625,10.738043,10738.043 +13974,2025-03-08T17:36:15.478931-08:00,1014.4131469726562,10.743701,10743.701 +13975,2025-03-08T17:36:26.215146-08:00,1014.4212646484375,10.736215,10736.215 +13976,2025-03-08T17:36:36.951001-08:00,1014.407958984375,10.735855,10735.855 +13977,2025-03-08T17:36:47.698936-08:00,1014.40283203125,10.747935,10747.935 +13978,2025-03-08T17:36:58.436200-08:00,1014.4325561523438,10.737264,10737.264 +13979,2025-03-08T17:37:09.167992-08:00,1014.4473266601562,10.731792,10731.792 +13980,2025-03-08T17:37:19.914003-08:00,1014.4373168945312,10.746011,10746.011 +13981,2025-03-08T17:37:30.657123-08:00,1014.4093627929688,10.74312,10743.12 +13982,2025-03-08T17:37:41.396934-08:00,1014.4188842773438,10.739811,10739.811 +13983,2025-03-08T17:37:52.139964-08:00,1014.438720703125,10.74303,10743.03 +13984,2025-03-08T17:38:02.886934-08:00,1014.4057006835938,10.74697,10746.97 +13985,2025-03-08T17:38:13.621983-08:00,1014.3876342773438,10.735049,10735.049 +13986,2025-03-08T17:38:24.363115-08:00,1014.40380859375,10.741132,10741.132 +13987,2025-03-08T17:38:35.101933-08:00,1014.4188842773438,10.738818,10738.818 +13988,2025-03-08T17:38:45.845039-08:00,1014.43212890625,10.743106,10743.106 +13989,2025-03-08T17:38:56.591651-08:00,1014.4188842773438,10.746612,10746.612 +13990,2025-03-08T17:39:07.325942-08:00,1014.4085693359375,10.734291,10734.291 +13991,2025-03-08T17:39:18.069933-08:00,1014.411865234375,10.743991,10743.991 +13992,2025-03-08T17:39:28.804083-08:00,1014.425048828125,10.73415,10734.15 +13993,2025-03-08T17:39:39.549333-08:00,1014.4265747070312,10.74525,10745.25 +13994,2025-03-08T17:39:50.289078-08:00,1014.4478759765625,10.739745,10739.745 +13995,2025-03-08T17:40:01.025424-08:00,1014.4398193359375,10.736346,10736.346 +13996,2025-03-08T17:40:11.772970-08:00,1014.44970703125,10.747546,10747.546 +13997,2025-03-08T17:40:22.506298-08:00,1014.4232177734375,10.733328,10733.328 +13998,2025-03-08T17:40:33.245113-08:00,1014.4364013671875,10.738815,10738.815 +13999,2025-03-08T17:40:43.987992-08:00,1014.43798828125,10.742879,10742.879 +14000,2025-03-08T17:40:54.729267-08:00,1014.446044921875,10.741275,10741.275 +14001,2025-03-08T17:41:05.470427-08:00,1014.45263671875,10.74116,10741.16 +14002,2025-03-08T17:41:16.205934-08:00,1014.4345092773438,10.735507,10735.507 +14003,2025-03-08T17:41:26.949931-08:00,1014.411376953125,10.743997,10743.997 +14004,2025-03-08T17:41:37.686001-08:00,1014.46435546875,10.73607,10736.07 +14005,2025-03-08T17:41:48.428966-08:00,1014.4085693359375,10.742965,10742.965 +14006,2025-03-08T17:41:59.167101-08:00,1014.4057006835938,10.738135,10738.135 +14007,2025-03-08T17:42:09.902110-08:00,1014.4112548828125,10.735009,10735.009 +14008,2025-03-08T17:42:20.639931-08:00,1014.3851318359375,10.737821,10737.821 +14009,2025-03-08T17:42:31.373943-08:00,1014.3926391601562,10.734012,10734.012 +14010,2025-03-08T17:42:42.110116-08:00,1014.40625,10.736173,10736.173 +14011,2025-03-08T17:42:52.855290-08:00,1014.3853759765625,10.745174,10745.174 +14012,2025-03-08T17:43:03.589927-08:00,1014.3858642578125,10.734637,10734.637 +14013,2025-03-08T17:43:14.325958-08:00,1014.4230346679688,10.736031,10736.031 +14014,2025-03-08T17:43:25.060930-08:00,1014.3609619140625,10.734972,10734.972 +14015,2025-03-08T17:43:35.791099-08:00,1014.4226684570312,10.730169,10730.169 +14016,2025-03-08T17:43:46.536043-08:00,1014.4068603515625,10.744944,10744.944 +14017,2025-03-08T17:43:57.270933-08:00,1014.3908081054688,10.73489,10734.89 +14018,2025-03-08T17:44:08.009995-08:00,1014.3864135742188,10.739062,10739.062 +14019,2025-03-08T17:44:18.739116-08:00,1014.3853149414062,10.729121,10729.121 +14020,2025-03-08T17:44:29.475118-08:00,1014.3992309570312,10.736002,10736.002 +14021,2025-03-08T17:44:40.217678-08:00,1014.4061889648438,10.74256,10742.56 +14022,2025-03-08T17:44:50.956931-08:00,1014.4050903320312,10.739253,10739.253 +14023,2025-03-08T17:45:01.687933-08:00,1014.4384155273438,10.731002,10731.002 +14024,2025-03-08T17:45:12.426957-08:00,1014.41748046875,10.739024,10739.024 +14025,2025-03-08T17:45:23.159267-08:00,1014.4295043945312,10.73231,10732.31 +14026,2025-03-08T17:45:33.898513-08:00,1014.4199829101562,10.739246,10739.246 +14027,2025-03-08T17:45:44.640199-08:00,1014.42724609375,10.741686,10741.686 +14028,2025-03-08T17:45:55.376933-08:00,1014.4224853515625,10.736734,10736.734 +14029,2025-03-08T17:46:06.108127-08:00,1014.4195556640625,10.731194,10731.194 +14030,2025-03-08T17:46:16.846112-08:00,1014.4215698242188,10.737985,10737.985 +14031,2025-03-08T17:46:27.581933-08:00,1014.4601440429688,10.735821,10735.821 +14032,2025-03-08T17:46:38.315598-08:00,1014.4423217773438,10.733665,10733.665 +14033,2025-03-08T17:46:49.051939-08:00,1014.406005859375,10.736341,10736.341 +14034,2025-03-08T17:46:59.786131-08:00,1014.416259765625,10.734192,10734.192 +14035,2025-03-08T17:47:10.523000-08:00,1014.4146728515625,10.736869,10736.869 +14036,2025-03-08T17:47:21.254931-08:00,1014.420166015625,10.731931,10731.931 +14037,2025-03-08T17:47:31.986146-08:00,1014.4252319335938,10.731215,10731.215 +14038,2025-03-08T17:47:42.714929-08:00,1014.4402465820312,10.728783,10728.783 +14039,2025-03-08T17:47:53.449932-08:00,1014.4224853515625,10.735003,10735.003 +14040,2025-03-08T17:48:04.182144-08:00,1014.442626953125,10.732212,10732.212 +14041,2025-03-08T17:48:14.919124-08:00,1014.4462280273438,10.73698,10736.98 +14042,2025-03-08T17:48:25.650138-08:00,1014.4332885742188,10.731014,10731.014 +14043,2025-03-08T17:48:36.380102-08:00,1014.4071655273438,10.729964,10729.964 +14044,2025-03-08T17:48:47.110115-08:00,1014.4202880859375,10.730013,10730.013 +14045,2025-03-08T17:48:57.841928-08:00,1014.4271850585938,10.731813,10731.813 +14046,2025-03-08T17:49:08.573932-08:00,1014.432373046875,10.732004,10732.004 +14047,2025-03-08T17:49:19.316146-08:00,1014.41455078125,10.742214,10742.214 +14048,2025-03-08T17:49:30.048107-08:00,1014.4310913085938,10.731961,10731.961 +14049,2025-03-08T17:49:40.775058-08:00,1014.4360961914062,10.726951,10726.951 +14050,2025-03-08T17:49:51.508934-08:00,1014.4298706054688,10.733876,10733.876 +14051,2025-03-08T17:50:02.253096-08:00,1014.4796752929688,10.744162,10744.162 +14052,2025-03-08T17:50:12.977930-08:00,1014.4351806640625,10.724834,10724.834 +14053,2025-03-08T17:50:23.716771-08:00,1014.430419921875,10.738841,10738.841 +14054,2025-03-08T17:50:34.446000-08:00,1014.438720703125,10.729229,10729.229 +14055,2025-03-08T17:50:45.185222-08:00,1014.4548950195312,10.739222,10739.222 +14056,2025-03-08T17:50:55.914119-08:00,1014.4500732421875,10.728897,10728.897 +14057,2025-03-08T17:51:06.651113-08:00,1014.4489135742188,10.736994,10736.994 +14058,2025-03-08T17:51:17.391936-08:00,1014.445556640625,10.740823,10740.823 +14059,2025-03-08T17:51:28.117122-08:00,1014.4522094726562,10.725186,10725.186 +14060,2025-03-08T17:51:38.855930-08:00,1014.4374389648438,10.738808,10738.808 +14061,2025-03-08T17:51:49.588952-08:00,1014.4785766601562,10.733022,10733.022 +14062,2025-03-08T17:52:00.327070-08:00,1014.447021484375,10.738118,10738.118 +14063,2025-03-08T17:52:11.053293-08:00,1014.494873046875,10.726223,10726.223 +14064,2025-03-08T17:52:21.792956-08:00,1014.4879760742188,10.739663,10739.663 +14065,2025-03-08T17:52:32.552405-08:00,1014.4682006835938,10.759449,10759.449 +14066,2025-03-08T17:52:43.286545-08:00,1014.46826171875,10.73414,10734.14 +14067,2025-03-08T17:52:54.028159-08:00,1014.4679565429688,10.741614,10741.614 +14068,2025-03-08T17:53:04.763363-08:00,1014.4710083007812,10.735204,10735.204 +14069,2025-03-08T17:53:15.500367-08:00,1014.4428100585938,10.737004,10737.004 +14070,2025-03-08T17:53:26.236391-08:00,1014.4605712890625,10.736024,10736.024 +14071,2025-03-08T17:53:36.966365-08:00,1014.4815673828125,10.729974,10729.974 +14072,2025-03-08T17:53:47.706564-08:00,1014.471435546875,10.740199,10740.199 +14073,2025-03-08T17:53:58.442949-08:00,1014.459716796875,10.736385,10736.385 +14074,2025-03-08T17:54:09.180366-08:00,1014.4429931640625,10.737417,10737.417 +14075,2025-03-08T17:54:19.920575-08:00,1014.416259765625,10.740209,10740.209 +14076,2025-03-08T17:54:30.660552-08:00,1014.4456176757812,10.739977,10739.977 +14077,2025-03-08T17:54:41.398727-08:00,1014.4537353515625,10.738175,10738.175 +14078,2025-03-08T17:54:52.133822-08:00,1014.4799194335938,10.735095,10735.095 +14079,2025-03-08T17:55:02.874434-08:00,1014.4751586914062,10.740612,10740.612 +14080,2025-03-08T17:55:13.616427-08:00,1014.4813842773438,10.741993,10741.993 +14081,2025-03-08T17:55:24.347364-08:00,1014.4615478515625,10.730937,10730.937 +14082,2025-03-08T17:55:35.094361-08:00,1014.446533203125,10.746997,10746.997 +14083,2025-03-08T17:55:45.828617-08:00,1014.4547119140625,10.734256,10734.256 +14084,2025-03-08T17:55:56.571696-08:00,1014.4561767578125,10.743079,10743.079 +14085,2025-03-08T17:56:07.315455-08:00,1014.4381103515625,10.743759,10743.759 +14086,2025-03-08T17:56:18.049575-08:00,1014.4562377929688,10.73412,10734.12 +14087,2025-03-08T17:56:28.792727-08:00,1014.4478149414062,10.743152,10743.152 +14088,2025-03-08T17:56:39.535563-08:00,1014.4525756835938,10.742836,10742.836 +14089,2025-03-08T17:56:50.273363-08:00,1014.4676513671875,10.7378,10737.8 +14090,2025-03-08T17:57:01.022561-08:00,1014.4573364257812,10.749198,10749.198 +14091,2025-03-08T17:57:11.759552-08:00,1014.4768676757812,10.736991,10736.991 +14092,2025-03-08T17:57:22.494365-08:00,1014.4306030273438,10.734813,10734.813 +14093,2025-03-08T17:57:33.233391-08:00,1014.4540405273438,10.739026,10739.026 +14094,2025-03-08T17:57:43.979430-08:00,1014.4406127929688,10.746039,10746.039 +14095,2025-03-08T17:57:54.725556-08:00,1014.462158203125,10.746126,10746.126 +14096,2025-03-08T17:58:05.461518-08:00,1014.4586181640625,10.735962,10735.962 +14097,2025-03-08T17:58:16.213363-08:00,1014.4369506835938,10.751845,10751.845 +14098,2025-03-08T17:58:26.958737-08:00,1014.4696655273438,10.745374,10745.374 +14099,2025-03-08T17:58:37.695369-08:00,1014.476318359375,10.736632,10736.632 +14100,2025-03-08T17:58:48.437551-08:00,1014.4859619140625,10.742182,10742.182 +14101,2025-03-08T17:58:59.186540-08:00,1014.4921875,10.748989,10748.989 +14102,2025-03-08T17:59:09.930569-08:00,1014.4921875,10.744029,10744.029 +14103,2025-03-08T17:59:20.677696-08:00,1014.4423217773438,10.747127,10747.127 +14104,2025-03-08T17:59:31.416390-08:00,1014.45703125,10.738694,10738.694 +14105,2025-03-08T17:59:42.163389-08:00,1014.483154296875,10.746999,10746.999 +14106,2025-03-08T17:59:52.911434-08:00,1014.514404296875,10.748045,10748.045 +14107,2025-03-08T18:00:03.650436-08:00,1014.4795532226562,10.739002,10739.002 +14108,2025-03-08T18:00:14.392186-08:00,1014.4725952148438,10.74175,10741.75 +14109,2025-03-08T18:00:25.146366-08:00,1014.46923828125,10.75418,10754.18 +14110,2025-03-08T18:00:46.630612-08:00,1014.501708984375,21.484246,21484.246 +14111,2025-03-08T18:00:57.373000-08:00,1014.4818725585938,10.742388,10742.388 +14112,2025-03-08T18:01:08.123972-08:00,1014.486572265625,10.750972,10750.972 +14113,2025-03-08T18:01:18.865612-08:00,1014.492919921875,10.74164,10741.64 +14114,2025-03-08T18:01:29.614561-08:00,1014.4793701171875,10.748949,10748.949 +14115,2025-03-08T18:01:40.350430-08:00,1014.49072265625,10.735869,10735.869 +14116,2025-03-08T18:01:51.099364-08:00,1014.4970092773438,10.748934,10748.934 +14117,2025-03-08T18:02:01.846243-08:00,1014.46875,10.746879,10746.879 +14118,2025-03-08T18:02:12.588769-08:00,1014.5003051757812,10.742526,10742.526 +14119,2025-03-08T18:02:23.332732-08:00,1014.4454956054688,10.743963,10743.963 +14120,2025-03-08T18:02:34.083481-08:00,1014.4488525390625,10.750749,10750.749 +14121,2025-03-08T18:02:44.830893-08:00,1014.4716186523438,10.747412,10747.412 +14122,2025-03-08T18:02:55.575638-08:00,1014.4500122070312,10.744745,10744.745 +14123,2025-03-08T18:03:06.315373-08:00,1014.434814453125,10.739735,10739.735 +14124,2025-03-08T18:03:17.063409-08:00,1014.4297485351562,10.748036,10748.036 +14125,2025-03-08T18:03:27.798364-08:00,1014.4561767578125,10.734955,10734.955 +14126,2025-03-08T18:03:38.551427-08:00,1014.4444580078125,10.753063,10753.063 +14127,2025-03-08T18:03:49.289362-08:00,1014.45068359375,10.737935,10737.935 +14128,2025-03-08T18:04:00.036374-08:00,1014.4326782226562,10.747012,10747.012 +14129,2025-03-08T18:04:10.784574-08:00,1014.4290771484375,10.7482,10748.2 +14130,2025-03-08T18:04:21.526508-08:00,1014.4522094726562,10.741934,10741.934 +14131,2025-03-08T18:04:32.263365-08:00,1014.44189453125,10.736857,10736.857 +14132,2025-03-08T18:04:43.004452-08:00,1014.4003295898438,10.741087,10741.087 +14133,2025-03-08T18:04:53.749549-08:00,1014.446533203125,10.745097,10745.097 +14134,2025-03-08T18:05:04.494357-08:00,1014.4017333984375,10.744808,10744.808 +14135,2025-03-08T18:05:15.243069-08:00,1014.4595336914062,10.748712,10748.712 +14136,2025-03-08T18:05:25.978108-08:00,1014.4443969726562,10.735039,10735.039 +14137,2025-03-08T18:05:36.726366-08:00,1014.46240234375,10.748258,10748.258 +14138,2025-03-08T18:05:47.466363-08:00,1014.4425659179688,10.739997,10739.997 +14139,2025-03-08T18:05:58.215456-08:00,1014.4951782226562,10.749093,10749.093 +14140,2025-03-08T18:06:08.957367-08:00,1014.4554443359375,10.741911,10741.911 +14141,2025-03-08T18:06:19.690072-08:00,1014.4568481445312,10.732705,10732.705 +14142,2025-03-08T18:06:30.435643-08:00,1014.4829711914062,10.745571,10745.571 +14143,2025-03-08T18:06:41.181489-08:00,1014.4697875976562,10.745846,10745.846 +14144,2025-03-08T18:06:51.921568-08:00,1014.4664306640625,10.740079,10740.079 +14145,2025-03-08T18:07:02.668775-08:00,1014.4481201171875,10.747207,10747.207 +14146,2025-03-08T18:07:13.409367-08:00,1014.451416015625,10.740592,10740.592 +14147,2025-03-08T18:07:24.156367-08:00,1014.4576416015625,10.747,10747.0 +14148,2025-03-08T18:07:34.897528-08:00,1014.4310913085938,10.741161,10741.161 +14149,2025-03-08T18:07:45.643576-08:00,1014.4506225585938,10.746048,10746.048 +14150,2025-03-08T18:07:56.383535-08:00,1014.4539184570312,10.739959,10739.959 +14151,2025-03-08T18:08:07.127362-08:00,1014.478515625,10.743827,10743.827 +14152,2025-03-08T18:08:17.872370-08:00,1014.4321899414062,10.745008,10745.008 +14153,2025-03-08T18:08:28.615477-08:00,1014.4221801757812,10.743107,10743.107 +14154,2025-03-08T18:08:39.354765-08:00,1014.4089965820312,10.739288,10739.288 +14155,2025-03-08T18:08:50.099532-08:00,1014.4119262695312,10.744767,10744.767 +14156,2025-03-08T18:09:00.839109-08:00,1014.421875,10.739577,10739.577 +14157,2025-03-08T18:09:11.583388-08:00,1014.4332885742188,10.744279,10744.279 +14158,2025-03-08T18:09:22.331547-08:00,1014.4561157226562,10.748159,10748.159 +14159,2025-03-08T18:09:33.081910-08:00,1014.40966796875,10.750363,10750.363 +14160,2025-03-08T18:09:43.822427-08:00,1014.4148559570312,10.740517,10740.517 +14161,2025-03-08T18:09:54.568409-08:00,1014.3834228515625,10.745982,10745.982 +14162,2025-03-08T18:10:05.310634-08:00,1014.4261474609375,10.742225,10742.225 +14163,2025-03-08T18:10:16.061407-08:00,1014.4146728515625,10.750773,10750.773 +14164,2025-03-08T18:10:26.800365-08:00,1014.3883056640625,10.738958,10738.958 +14165,2025-03-08T18:10:37.542412-08:00,1014.40771484375,10.742047,10742.047 +14166,2025-03-08T18:10:48.286558-08:00,1014.404052734375,10.744146,10744.146 +14167,2025-03-08T18:10:59.034368-08:00,1014.4305419921875,10.74781,10747.81 +14168,2025-03-08T18:11:09.780543-08:00,1014.420654296875,10.746175,10746.175 +14169,2025-03-08T18:11:20.521983-08:00,1014.4087524414062,10.74144,10741.44 +14170,2025-03-08T18:11:31.272569-08:00,1014.4319458007812,10.750586,10750.586 +14171,2025-03-08T18:11:42.013459-08:00,1014.4220581054688,10.74089,10740.89 +14172,2025-03-08T18:11:52.756573-08:00,1014.4367065429688,10.743114,10743.114 +14173,2025-03-08T18:12:03.498216-08:00,1014.434814453125,10.741643,10741.643 +14174,2025-03-08T18:12:14.250553-08:00,1014.4495239257812,10.752337,10752.337 +14175,2025-03-08T18:12:24.981367-08:00,1014.4411010742188,10.730814,10730.814 +14176,2025-03-08T18:12:35.730364-08:00,1014.4491577148438,10.748997,10748.997 +14177,2025-03-08T18:12:46.477361-08:00,1014.4112548828125,10.746997,10746.997 +14178,2025-03-08T18:12:57.219400-08:00,1014.4406127929688,10.742039,10742.039 +14179,2025-03-08T18:13:07.955469-08:00,1014.4425048828125,10.736069,10736.069 +14180,2025-03-08T18:13:18.705395-08:00,1014.438720703125,10.749926,10749.926 +14181,2025-03-08T18:13:29.447378-08:00,1014.455322265625,10.741983,10741.983 +14182,2025-03-08T18:13:40.190577-08:00,1014.4766235351562,10.743199,10743.199 +14183,2025-03-08T18:13:50.937368-08:00,1014.4586181640625,10.746791,10746.791 +14184,2025-03-08T18:14:01.673576-08:00,1014.4254760742188,10.736208,10736.208 +14185,2025-03-08T18:14:12.425531-08:00,1014.4497680664062,10.751955,10751.955 +14186,2025-03-08T18:14:23.167555-08:00,1014.472900390625,10.742024,10742.024 +14187,2025-03-08T18:14:33.917678-08:00,1014.4398193359375,10.750123,10750.123 +14188,2025-03-08T18:14:44.658722-08:00,1014.4761962890625,10.741044,10741.044 +14189,2025-03-08T18:14:55.402417-08:00,1014.4578247070312,10.743695,10743.695 +14190,2025-03-08T18:15:06.148567-08:00,1014.4492797851562,10.74615,10746.15 +14191,2025-03-08T18:15:16.895544-08:00,1014.4573364257812,10.746977,10746.977 +14192,2025-03-08T18:15:27.640367-08:00,1014.4540405273438,10.744823,10744.823 +14193,2025-03-08T18:15:38.377463-08:00,1014.473876953125,10.737096,10737.096 +14194,2025-03-08T18:15:49.115367-08:00,1014.4705200195312,10.737904,10737.904 +14195,2025-03-08T18:15:59.863457-08:00,1014.490478515625,10.74809,10748.09 +14196,2025-03-08T18:16:10.603428-08:00,1014.4653930664062,10.739971,10739.971 +14197,2025-03-08T18:16:21.350782-08:00,1014.4617309570312,10.747354,10747.354 +14198,2025-03-08T18:16:32.083385-08:00,1014.4767456054688,10.732603,10732.603 +14199,2025-03-08T18:16:42.835560-08:00,1014.4834594726562,10.752175,10752.175 +14200,2025-03-08T18:16:53.574365-08:00,1014.486328125,10.738805,10738.805 +14201,2025-03-08T18:17:04.305593-08:00,1014.4763793945312,10.731228,10731.228 +14202,2025-03-08T18:17:15.047379-08:00,1014.4498291015625,10.741786,10741.786 +14203,2025-03-08T18:17:25.784368-08:00,1014.4664306640625,10.736989,10736.989 +14204,2025-03-08T18:17:36.524727-08:00,1014.45458984375,10.740359,10740.359 +14205,2025-03-08T18:17:47.273531-08:00,1014.4777221679688,10.748804,10748.804 +14206,2025-03-08T18:17:58.013834-08:00,1014.449462890625,10.740303,10740.303 +14207,2025-03-08T18:18:08.746439-08:00,1014.480712890625,10.732605,10732.605 +14208,2025-03-08T18:18:19.487578-08:00,1014.4343872070312,10.741139,10741.139 +14209,2025-03-08T18:18:30.230563-08:00,1014.4542236328125,10.742985,10742.985 +14210,2025-03-08T18:18:40.972572-08:00,1014.4689331054688,10.742009,10742.009 +14211,2025-03-08T18:18:51.717362-08:00,1014.4442138671875,10.74479,10744.79 +14212,2025-03-08T18:19:02.456543-08:00,1014.467041015625,10.739181,10739.181 +14213,2025-03-08T18:19:13.197540-08:00,1014.462158203125,10.740997,10740.997 +14214,2025-03-08T18:19:23.942385-08:00,1014.4784545898438,10.744845,10744.845 +14215,2025-03-08T18:19:34.689568-08:00,1014.4784545898438,10.747183,10747.183 +14216,2025-03-08T18:19:45.433440-08:00,1014.4801635742188,10.743872,10743.872 +14217,2025-03-08T18:19:56.171782-08:00,1014.4765625,10.738342,10738.342 +14218,2025-03-08T18:20:06.910361-08:00,1014.4915771484375,10.738579,10738.579 +14219,2025-03-08T18:20:17.651359-08:00,1014.4945068359375,10.740998,10740.998 +14220,2025-03-08T18:20:28.394465-08:00,1014.510986328125,10.743106,10743.106 +14221,2025-03-08T18:20:39.136546-08:00,1014.5228271484375,10.742081,10742.081 +14222,2025-03-08T18:20:49.883508-08:00,1014.497802734375,10.746962,10746.962 +14223,2025-03-08T18:21:00.622568-08:00,1014.50732421875,10.73906,10739.06 +14224,2025-03-08T18:21:11.366387-08:00,1014.5226440429688,10.743819,10743.819 +14225,2025-03-08T18:21:22.102360-08:00,1014.4859619140625,10.735973,10735.973 +14226,2025-03-08T18:21:32.851577-08:00,1014.5340576171875,10.749217,10749.217 +14227,2025-03-08T18:21:43.596392-08:00,1014.5388793945312,10.744815,10744.815 +14228,2025-03-08T18:21:54.339534-08:00,1014.4957885742188,10.743142,10743.142 +14229,2025-03-08T18:22:05.079369-08:00,1014.5454711914062,10.739835,10739.835 +14230,2025-03-08T18:22:15.817412-08:00,1014.5370483398438,10.738043,10738.043 +14231,2025-03-08T18:22:26.566642-08:00,1014.5123291015625,10.74923,10749.23 +14232,2025-03-08T18:22:37.308496-08:00,1014.5568237304688,10.741854,10741.854 +14233,2025-03-08T18:22:48.056426-08:00,1014.5086059570312,10.74793,10747.93 +14234,2025-03-08T18:22:58.799549-08:00,1014.53173828125,10.743123,10743.123 +14235,2025-03-08T18:23:09.545583-08:00,1014.5465087890625,10.746034,10746.034 +14236,2025-03-08T18:23:20.283524-08:00,1014.5482788085938,10.737941,10737.941 +14237,2025-03-08T18:23:31.030364-08:00,1014.5364990234375,10.74684,10746.84 +14238,2025-03-08T18:23:41.768831-08:00,1014.55126953125,10.738467,10738.467 +14239,2025-03-08T18:23:52.509362-08:00,1014.5181274414062,10.740531,10740.531 +14240,2025-03-08T18:24:03.255367-08:00,1014.5460815429688,10.746005,10746.005 +14241,2025-03-08T18:24:13.992402-08:00,1014.5758056640625,10.737035,10737.035 +14242,2025-03-08T18:24:24.744833-08:00,1014.58251953125,10.752431,10752.431 +14243,2025-03-08T18:24:35.482200-08:00,1014.5938110351562,10.737367,10737.367 +14244,2025-03-08T18:24:46.224609-08:00,1014.5673217773438,10.742409,10742.409 +14245,2025-03-08T18:24:56.964394-08:00,1014.5886840820312,10.739785,10739.785 +14246,2025-03-08T18:25:07.717658-08:00,1014.5904541015625,10.753264,10753.264 +14247,2025-03-08T18:25:18.463082-08:00,1014.5918579101562,10.745424,10745.424 +14248,2025-03-08T18:25:29.206598-08:00,1014.5904541015625,10.743516,10743.516 +14249,2025-03-08T18:25:39.949945-08:00,1014.5853271484375,10.743347,10743.347 +14250,2025-03-08T18:25:50.697538-08:00,1014.5786743164062,10.747593,10747.593 +14251,2025-03-08T18:26:01.436369-08:00,1014.5867309570312,10.738831,10738.831 +14252,2025-03-08T18:26:12.176369-08:00,1014.5966186523438,10.74,10740.0 +14253,2025-03-08T18:26:22.919433-08:00,1014.59814453125,10.743064,10743.064 +14254,2025-03-08T18:26:33.657819-08:00,1014.5848388671875,10.738386,10738.386 +14255,2025-03-08T18:26:44.409648-08:00,1014.5848388671875,10.751829,10751.829 +14256,2025-03-08T18:26:55.150335-08:00,1014.5863037109375,10.740687,10740.687 +14257,2025-03-08T18:27:05.890569-08:00,1014.55322265625,10.740234,10740.234 +14258,2025-03-08T18:27:16.631360-08:00,1014.5947875976562,10.740791,10740.791 +14259,2025-03-08T18:27:27.383164-08:00,1014.6043701171875,10.751804,10751.804 +14260,2025-03-08T18:27:38.123365-08:00,1014.6043701171875,10.740201,10740.201 +14261,2025-03-08T18:27:48.867359-08:00,1014.5814819335938,10.743994,10743.994 +14262,2025-03-08T18:27:59.605363-08:00,1014.5962524414062,10.738004,10738.004 +14263,2025-03-08T18:28:10.353499-08:00,1014.59765625,10.748136,10748.136 +14264,2025-03-08T18:28:21.088395-08:00,1014.589599609375,10.734896,10734.896 +14265,2025-03-08T18:28:31.835370-08:00,1014.5829467773438,10.746975,10746.975 +14266,2025-03-08T18:28:42.587396-08:00,1014.58447265625,10.752026,10752.026 +14267,2025-03-08T18:28:53.328402-08:00,1014.5995483398438,10.741006,10741.006 +14268,2025-03-08T18:29:04.075404-08:00,1014.5596923828125,10.747002,10747.002 +14269,2025-03-08T18:29:14.811258-08:00,1014.6009521484375,10.735854,10735.854 +14270,2025-03-08T18:29:25.557559-08:00,1014.5829467773438,10.746301,10746.301 +14271,2025-03-08T18:29:36.297612-08:00,1014.57958984375,10.740053,10740.053 +14272,2025-03-08T18:29:47.043525-08:00,1014.6009521484375,10.745913,10745.913 +14273,2025-03-08T18:29:57.781613-08:00,1014.6009521484375,10.738088,10738.088 +14274,2025-03-08T18:30:08.533576-08:00,1014.57958984375,10.751963,10751.963 +14275,2025-03-08T18:30:19.270376-08:00,1014.587646484375,10.7368,10736.8 +14276,2025-03-08T18:30:30.014445-08:00,1014.6009521484375,10.744069,10744.069 +14277,2025-03-08T18:30:40.765365-08:00,1014.5995483398438,10.75092,10750.92 +14278,2025-03-08T18:30:51.509360-08:00,1014.591064453125,10.743995,10743.995 +14279,2025-03-08T18:31:02.246369-08:00,1014.6009521484375,10.737009,10737.009 +14280,2025-03-08T18:31:12.991441-08:00,1014.57958984375,10.745072,10745.072 +14281,2025-03-08T18:31:23.739191-08:00,1014.574462890625,10.74775,10747.75 +14282,2025-03-08T18:31:34.486387-08:00,1014.5909423828125,10.747196,10747.196 +14283,2025-03-08T18:31:45.232541-08:00,1014.5843505859375,10.746154,10746.154 +14284,2025-03-08T18:31:55.974583-08:00,1014.57763671875,10.742042,10742.042 +14285,2025-03-08T18:32:06.718596-08:00,1014.5990600585938,10.744013,10744.013 +14286,2025-03-08T18:32:17.469731-08:00,1014.5924072265625,10.751135,10751.135 +14287,2025-03-08T18:32:28.213149-08:00,1014.5890502929688,10.743418,10743.418 +14288,2025-03-08T18:32:38.951362-08:00,1014.60888671875,10.738213,10738.213 +14289,2025-03-08T18:32:49.691729-08:00,1014.60888671875,10.740367,10740.367 +14290,2025-03-08T18:33:00.438361-08:00,1014.6236572265625,10.746632,10746.632 +14291,2025-03-08T18:33:11.182368-08:00,1014.59716796875,10.744007,10744.007 +14292,2025-03-08T18:33:21.934361-08:00,1014.6156005859375,10.751993,10751.993 +14293,2025-03-08T18:33:32.678601-08:00,1014.6052856445312,10.74424,10744.24 +14294,2025-03-08T18:33:43.421367-08:00,1014.6136474609375,10.742766,10742.766 +14295,2025-03-08T18:33:54.159580-08:00,1014.6203002929688,10.738213,10738.213 +14296,2025-03-08T18:34:04.909370-08:00,1014.5787353515625,10.74979,10749.79 +14297,2025-03-08T18:34:15.649543-08:00,1014.5985717773438,10.740173,10740.173 +14298,2025-03-08T18:34:26.395515-08:00,1014.592041015625,10.745972,10745.972 +14299,2025-03-08T18:34:37.138554-08:00,1014.5787353515625,10.743039,10743.039 +14300,2025-03-08T18:34:47.884564-08:00,1014.5772705078125,10.74601,10746.01 +14301,2025-03-08T18:34:58.630258-08:00,1014.6070556640625,10.745694,10745.694 +14302,2025-03-08T18:35:09.365354-08:00,1014.6185302734375,10.735096,10735.096 +14303,2025-03-08T18:35:20.111584-08:00,1014.6317138671875,10.74623,10746.23 +14304,2025-03-08T18:35:30.861683-08:00,1014.6288452148438,10.750099,10750.099 +14305,2025-03-08T18:35:41.594392-08:00,1014.61376953125,10.732709,10732.709 +14306,2025-03-08T18:35:52.340445-08:00,1014.605712890625,10.746053,10746.053 +14307,2025-03-08T18:36:03.083366-08:00,1014.61376953125,10.742921,10742.921 +14308,2025-03-08T18:36:13.829586-08:00,1014.5924072265625,10.74622,10746.22 +14309,2025-03-08T18:36:24.572443-08:00,1014.6009521484375,10.742857,10742.857 +14310,2025-03-08T18:36:35.324793-08:00,1014.62890625,10.75235,10752.35 +14311,2025-03-08T18:36:46.058553-08:00,1014.5862426757812,10.73376,10733.76 +14312,2025-03-08T18:36:56.808545-08:00,1014.6207885742188,10.749992,10749.992 +14313,2025-03-08T18:37:07.553546-08:00,1014.5995483398438,10.745001,10745.001 +14314,2025-03-08T18:37:18.290424-08:00,1014.6175537109375,10.736878,10736.878 +14315,2025-03-08T18:37:29.045173-08:00,1014.6227416992188,10.754749,10754.749 +14316,2025-03-08T18:37:39.790864-08:00,1014.6227416992188,10.745691,10745.691 +14317,2025-03-08T18:37:50.524566-08:00,1014.6194458007812,10.733702,10733.702 +14318,2025-03-08T18:38:01.278366-08:00,1014.62939453125,10.7538,10753.8 +14319,2025-03-08T18:38:12.019365-08:00,1014.639404296875,10.740999,10740.999 +14320,2025-03-08T18:38:22.768741-08:00,1014.652587890625,10.749376,10749.376 +14321,2025-03-08T18:38:33.504892-08:00,1014.6194458007812,10.736151,10736.151 +14322,2025-03-08T18:38:44.251917-08:00,1014.6282958984375,10.747025,10747.025 +14323,2025-03-08T18:38:54.999394-08:00,1014.64453125,10.747477,10747.477 +14324,2025-03-08T18:39:05.740581-08:00,1014.6364135742188,10.741187,10741.187 +14325,2025-03-08T18:39:16.481586-08:00,1014.64306640625,10.741005,10741.005 +14326,2025-03-08T18:39:27.231467-08:00,1014.6331176757812,10.749881,10749.881 +14327,2025-03-08T18:39:37.971535-08:00,1014.6349487304688,10.740068,10740.068 +14328,2025-03-08T18:39:48.713560-08:00,1014.6331176757812,10.742025,10742.025 +14329,2025-03-08T18:39:59.463564-08:00,1014.6648559570312,10.750004,10750.004 +14330,2025-03-08T18:40:10.209546-08:00,1014.6383056640625,10.745982,10745.982 +14331,2025-03-08T18:40:20.952399-08:00,1014.630126953125,10.742853,10742.853 +14332,2025-03-08T18:40:31.697944-08:00,1014.6417236328125,10.745545,10745.545 +14333,2025-03-08T18:40:42.432366-08:00,1014.635009765625,10.734422,10734.422 +14334,2025-03-08T18:40:53.182364-08:00,1014.6387329101562,10.749998,10749.998 +14335,2025-03-08T18:41:03.917731-08:00,1014.6436157226562,10.735367,10735.367 +14336,2025-03-08T18:41:14.664399-08:00,1014.626953125,10.746668,10746.668 +14337,2025-03-08T18:41:25.405754-08:00,1014.62548828125,10.741355,10741.355 +14338,2025-03-08T18:41:36.148912-08:00,1014.6336059570312,10.743158,10743.158 +14339,2025-03-08T18:41:46.882405-08:00,1014.6236572265625,10.733493,10733.493 +14340,2025-03-08T18:41:57.629367-08:00,1014.6156005859375,10.746962,10746.962 +14341,2025-03-08T18:42:08.366391-08:00,1014.6420288085938,10.737024,10737.024 +14342,2025-03-08T18:42:19.116565-08:00,1014.635498046875,10.750174,10750.174 +14343,2025-03-08T18:42:29.850367-08:00,1014.6322021484375,10.733802,10733.802 +14344,2025-03-08T18:42:40.587662-08:00,1014.6671142578125,10.737295,10737.295 +14345,2025-03-08T18:42:51.335363-08:00,1014.650634765625,10.747701,10747.701 +14346,2025-03-08T18:43:02.074687-08:00,1014.6571655273438,10.739324,10739.324 +14347,2025-03-08T18:43:12.821536-08:00,1014.6409912109375,10.746849,10746.849 +14348,2025-03-08T18:43:23.558524-08:00,1014.662353515625,10.736988,10736.988 +14349,2025-03-08T18:43:34.298570-08:00,1014.662353515625,10.740046,10740.046 +14350,2025-03-08T18:43:45.043367-08:00,1014.617919921875,10.744797,10744.797 +14351,2025-03-08T18:43:55.789365-08:00,1014.6561889648438,10.745998,10745.998 +14352,2025-03-08T18:44:06.521602-08:00,1014.6841430664062,10.732237,10732.237 +14353,2025-03-08T18:44:17.270368-08:00,1014.6808471679688,10.748766,10748.766 +14354,2025-03-08T18:44:28.012770-08:00,1014.6845092773438,10.742402,10742.402 +14355,2025-03-08T18:44:38.755852-08:00,1014.6695556640625,10.743082,10743.082 +14356,2025-03-08T18:44:49.503564-08:00,1014.6760864257812,10.747712,10747.712 +14357,2025-03-08T18:45:00.244548-08:00,1014.646728515625,10.740984,10740.984 +14358,2025-03-08T18:45:10.997585-08:00,1014.6732177734375,10.753037,10753.037 +14359,2025-03-08T18:45:21.742464-08:00,1014.701171875,10.744879,10744.879 +14360,2025-03-08T18:45:32.475365-08:00,1014.706298828125,10.732901,10732.901 +14361,2025-03-08T18:45:43.220360-08:00,1014.6515502929688,10.744995,10744.995 +14362,2025-03-08T18:45:53.964366-08:00,1014.6864013671875,10.744006,10744.006 +14363,2025-03-08T18:46:04.701364-08:00,1014.646728515625,10.736998,10736.998 +14364,2025-03-08T18:46:15.439572-08:00,1014.6798706054688,10.738208,10738.208 +14365,2025-03-08T18:46:26.183367-08:00,1014.67138671875,10.743795,10743.795 +14366,2025-03-08T18:46:36.921530-08:00,1014.67138671875,10.738163,10738.163 +14367,2025-03-08T18:46:47.654556-08:00,1014.6665649414062,10.733026,10733.026 +14368,2025-03-08T18:46:58.394995-08:00,1014.6500244140625,10.740439,10740.439 +14369,2025-03-08T18:47:09.137560-08:00,1014.677978515625,10.742565,10742.565 +14370,2025-03-08T18:47:19.878516-08:00,1014.6632690429688,10.740956,10740.956 +14371,2025-03-08T18:47:30.613848-08:00,1014.6898193359375,10.735332,10735.332 +14372,2025-03-08T18:47:41.355560-08:00,1014.6500244140625,10.741712,10741.712 +14373,2025-03-08T18:47:52.094568-08:00,1014.6978759765625,10.739008,10739.008 +14374,2025-03-08T18:48:02.836363-08:00,1014.6964111328125,10.741795,10741.795 +14375,2025-03-08T18:48:13.577406-08:00,1014.709716796875,10.741043,10741.043 +14376,2025-03-08T18:48:24.304365-08:00,1014.7030639648438,10.726959,10726.959 +14377,2025-03-08T18:48:35.049418-08:00,1014.7229614257812,10.745053,10745.053 +14378,2025-03-08T18:48:45.781391-08:00,1014.721435546875,10.731973,10731.973 +14379,2025-03-08T18:48:56.525361-08:00,1014.71484375,10.74397,10743.97 +14380,2025-03-08T18:49:07.262371-08:00,1014.7164306640625,10.73701,10737.01 +14381,2025-03-08T18:49:18.007363-08:00,1014.703125,10.744992,10744.992 +14382,2025-03-08T18:49:28.738570-08:00,1014.7097778320312,10.731207,10731.207 +14383,2025-03-08T18:49:39.478546-08:00,1014.708251953125,10.739976,10739.976 +14384,2025-03-08T18:49:50.230300-08:00,1014.7462768554688,10.751754,10751.754 +14385,2025-03-08T18:50:00.962363-08:00,1014.7196655273438,10.732063,10732.063 +14386,2025-03-08T18:50:11.701552-08:00,1014.7447509765625,10.739189,10739.189 +14387,2025-03-08T18:50:22.445466-08:00,1014.7432861328125,10.743914,10743.914 +14388,2025-03-08T18:50:33.183430-08:00,1014.7135009765625,10.737964,10737.964 +14389,2025-03-08T18:50:43.923363-08:00,1014.7201538085938,10.739933,10739.933 +14390,2025-03-08T18:50:54.669439-08:00,1014.7022094726562,10.746076,10746.076 +14391,2025-03-08T18:51:05.405761-08:00,1014.7285766601562,10.736322,10736.322 +14392,2025-03-08T18:51:16.145412-08:00,1014.7139282226562,10.739651,10739.651 +14393,2025-03-08T18:51:26.892385-08:00,1014.6790771484375,10.746973,10746.973 +14394,2025-03-08T18:51:37.638071-08:00,1014.680908203125,10.745686,10745.686 +14395,2025-03-08T18:51:48.377363-08:00,1014.6727905273438,10.739292,10739.292 +14396,2025-03-08T18:51:59.108670-08:00,1014.7008056640625,10.731307,10731.307 +14397,2025-03-08T18:52:09.852554-08:00,1014.7059326171875,10.743884,10743.884 +14398,2025-03-08T18:52:20.587036-08:00,1014.661376953125,10.734482,10734.482 +14399,2025-03-08T18:52:31.356402-08:00,1014.6665649414062,10.769366,10769.366 +14400,2025-03-08T18:52:42.096568-08:00,1014.6632690429688,10.740166,10740.166 +14401,2025-03-08T18:52:52.833197-08:00,1014.6817016601562,10.736629,10736.629 +14402,2025-03-08T18:53:03.570232-08:00,1014.638671875,10.737035,10737.035 +14403,2025-03-08T18:53:14.314402-08:00,1014.6621704101562,10.74417,10744.17 +14404,2025-03-08T18:53:25.053198-08:00,1014.688720703125,10.738796,10738.796 +14405,2025-03-08T18:53:35.791370-08:00,1014.658935546875,10.738172,10738.172 +14406,2025-03-08T18:53:46.540380-08:00,1014.6788330078125,10.74901,10749.01 +14407,2025-03-08T18:53:57.278219-08:00,1014.6890869140625,10.737839,10737.839 +14408,2025-03-08T18:54:08.023487-08:00,1014.708984375,10.745268,10745.268 +14409,2025-03-08T18:54:18.768224-08:00,1014.66455078125,10.744737,10744.737 +14410,2025-03-08T18:54:29.510195-08:00,1014.6759643554688,10.741971,10741.971 +14411,2025-03-08T18:54:40.254209-08:00,1014.6729736328125,10.744014,10744.014 +14412,2025-03-08T18:54:50.986390-08:00,1014.6796264648438,10.732181,10732.181 +14413,2025-03-08T18:55:01.732616-08:00,1014.6682739257812,10.746226,10746.226 +14414,2025-03-08T18:55:12.465876-08:00,1014.6730346679688,10.73326,10733.26 +14415,2025-03-08T18:55:19.715175-08:00,1014.6715698242188,7.249299,7249.299 +14416,2025-03-08T18:55:23.207360-08:00,1014.6715698242188,3.492185,3492.185 +14417,2025-03-08T18:55:33.936197-08:00,1014.67822265625,10.728837,10728.837 +14418,2025-03-08T18:55:44.678196-08:00,1014.6749267578125,10.741999,10741.999 +14419,2025-03-08T18:55:55.415213-08:00,1014.6932983398438,10.737017,10737.017 +14420,2025-03-08T18:56:06.155367-08:00,1014.6422119140625,10.740154,10740.154 +14421,2025-03-08T18:56:16.893219-08:00,1014.6687622070312,10.737852,10737.852 +14422,2025-03-08T18:56:27.633265-08:00,1014.67236328125,10.740046,10740.046 +14423,2025-03-08T18:56:38.373414-08:00,1014.6624755859375,10.740149,10740.149 +14424,2025-03-08T18:56:49.108386-08:00,1014.6543579101562,10.734972,10734.972 +14425,2025-03-08T18:56:59.846176-08:00,1014.652587890625,10.73779,10737.79 +14426,2025-03-08T18:57:10.582194-08:00,1014.6643676757812,10.736018,10736.018 +14427,2025-03-08T18:57:21.322197-08:00,1014.6478271484375,10.740003,10740.003 +14428,2025-03-08T18:57:32.060219-08:00,1014.6183471679688,10.738022,10738.022 +14429,2025-03-08T18:57:42.799264-08:00,1014.635009765625,10.739045,10739.045 +14430,2025-03-08T18:57:53.543197-08:00,1014.635009765625,10.743933,10743.933 +14431,2025-03-08T18:58:04.286198-08:00,1014.6599731445312,10.743001,10743.001 +14432,2025-03-08T18:58:15.022591-08:00,1014.6500854492188,10.736393,10736.393 +14433,2025-03-08T18:58:25.761368-08:00,1014.6173706054688,10.738777,10738.777 +14434,2025-03-08T18:58:36.499408-08:00,1014.6570434570312,10.73804,10738.04 +14435,2025-03-08T18:58:47.240285-08:00,1014.6339111328125,10.740877,10740.877 +14436,2025-03-08T18:58:57.986195-08:00,1014.6570434570312,10.74591,10745.91 +14437,2025-03-08T18:59:08.720380-08:00,1014.660400390625,10.734185,10734.185 +14438,2025-03-08T18:59:19.464831-08:00,1014.6622924804688,10.744451,10744.451 +14439,2025-03-08T18:59:30.198195-08:00,1014.6724853515625,10.733364,10733.364 +14440,2025-03-08T18:59:40.942194-08:00,1014.637939453125,10.743999,10743.999 +14441,2025-03-08T18:59:51.675197-08:00,1014.6512451171875,10.733003,10733.003 +14442,2025-03-08T19:00:02.411192-08:00,1014.6759643554688,10.735995,10735.995 +14443,2025-03-08T19:00:13.154530-08:00,1014.6876831054688,10.743338,10743.338 +14444,2025-03-08T19:00:23.888214-08:00,1014.677734375,10.733684,10733.684 +14445,2025-03-08T19:00:34.629525-08:00,1014.6497802734375,10.741311,10741.311 +14446,2025-03-08T19:00:45.371963-08:00,1014.6961059570312,10.742438,10742.438 +14447,2025-03-08T19:00:56.106256-08:00,1014.686279296875,10.734293,10734.293 +14448,2025-03-08T19:01:06.844433-08:00,1014.6829833984375,10.738177,10738.177 +14449,2025-03-08T19:01:17.581378-08:00,1014.687744140625,10.736945,10736.945 +14450,2025-03-08T19:01:28.328551-08:00,1014.6730346679688,10.747173,10747.173 +14451,2025-03-08T19:01:39.062194-08:00,1014.6663818359375,10.733643,10733.643 +14452,2025-03-08T19:01:49.799587-08:00,1014.6766967773438,10.737393,10737.393 +14453,2025-03-08T19:02:00.530197-08:00,1014.653564453125,10.73061,10730.61 +14454,2025-03-08T19:02:11.274491-08:00,1014.6785888671875,10.744294,10744.294 +14455,2025-03-08T19:02:22.007448-08:00,1014.696533203125,10.732957,10732.957 +14456,2025-03-08T19:02:30.820713-08:00,1014.6900024414062,8.813265,8813.265 +14457,2025-03-08T19:02:32.755387-08:00,1014.7164306640625,1.934674,1934.674 +14458,2025-03-08T19:02:43.496194-08:00,1014.696533203125,10.740807,10740.807 +14459,2025-03-08T19:02:54.228194-08:00,1014.7003173828125,10.732,10732.0 +14460,2025-03-08T19:03:04.966382-08:00,1014.7003173828125,10.738188,10738.188 +14461,2025-03-08T19:03:15.709384-08:00,1014.705078125,10.743002,10743.002 +14462,2025-03-08T19:03:26.446663-08:00,1014.6969604492188,10.737279,10737.279 +14463,2025-03-08T19:03:37.178194-08:00,1014.6921997070312,10.731531,10731.531 +14464,2025-03-08T19:03:47.916401-08:00,1014.7054443359375,10.738207,10738.207 +14465,2025-03-08T19:03:58.649225-08:00,1014.7153930664062,10.732824,10732.824 +14466,2025-03-08T19:04:09.387596-08:00,1014.7006225585938,10.738371,10738.371 +14467,2025-03-08T19:04:20.122313-08:00,1014.6844482421875,10.734717,10734.717 +14468,2025-03-08T19:04:30.862235-08:00,1014.704345703125,10.739922,10739.922 +14469,2025-03-08T19:04:41.597195-08:00,1014.71240234375,10.73496,10734.96 +14470,2025-03-08T19:04:52.331329-08:00,1014.6959228515625,10.734134,10734.134 +14471,2025-03-08T19:05:03.061194-08:00,1014.7157592773438,10.729865,10729.865 +14472,2025-03-08T19:05:13.796912-08:00,1014.72900390625,10.735718,10735.718 +14473,2025-03-08T19:05:24.533197-08:00,1014.7391967773438,10.736285,10736.285 +14474,2025-03-08T19:05:35.267369-08:00,1014.7440795898438,10.734172,10734.172 +14475,2025-03-08T19:05:46.005828-08:00,1014.7260131835938,10.738459,10738.459 +14476,2025-03-08T19:05:56.738190-08:00,1014.7227172851562,10.732362,10732.362 +14477,2025-03-08T19:06:07.478195-08:00,1014.7095336914062,10.740005,10740.005 +14478,2025-03-08T19:06:18.214418-08:00,1014.72607421875,10.736223,10736.223 +14479,2025-03-08T19:06:28.950603-08:00,1014.7113037109375,10.736185,10736.185 +14480,2025-03-08T19:06:38.626583-08:00,1014.7179565429688,9.67598,9675.98 +14481,2025-03-08T19:06:39.679195-08:00,1014.7098388671875,1.052612,1052.612 +14482,2025-03-08T19:06:50.414401-08:00,1014.7080688476562,10.735206,10735.206 +14483,2025-03-08T19:07:01.147708-08:00,1014.7330322265625,10.733307,10733.307 +14484,2025-03-08T19:07:11.883600-08:00,1014.760986328125,10.735892,10735.892 +14485,2025-03-08T19:07:22.629223-08:00,1014.76611328125,10.745623,10745.623 +14486,2025-03-08T19:07:33.358623-08:00,1014.756591796875,10.7294,10729.4 +14487,2025-03-08T19:07:44.100263-08:00,1014.739990234375,10.74164,10741.64 +14488,2025-03-08T19:07:54.836422-08:00,1014.7764282226562,10.736159,10736.159 +14489,2025-03-08T19:08:05.562254-08:00,1014.7466430664062,10.725832,10725.832 +14490,2025-03-08T19:08:16.296872-08:00,1014.7731323242188,10.734618,10734.618 +14491,2025-03-08T19:08:27.032192-08:00,1014.756591796875,10.73532,10735.32 +14492,2025-03-08T19:08:37.776845-08:00,1014.7848510742188,10.744653,10744.653 +14493,2025-03-08T19:08:48.511024-08:00,1014.75,10.734179,10734.179 +14494,2025-03-08T19:08:59.244222-08:00,1014.7470092773438,10.733198,10733.198 +14495,2025-03-08T19:09:09.992197-08:00,1014.756591796875,10.747975,10747.975 +14496,2025-03-08T19:09:20.724203-08:00,1014.7337646484375,10.732006,10732.006 +14497,2025-03-08T19:09:31.463426-08:00,1014.7385864257812,10.739223,10739.223 +14498,2025-03-08T19:09:42.202376-08:00,1014.7385864257812,10.73895,10738.95 +14499,2025-03-08T19:09:52.935475-08:00,1014.7451782226562,10.733099,10733.099 +14500,2025-03-08T19:10:03.679200-08:00,1014.7171630859375,10.743725,10743.725 +14501,2025-03-08T19:10:14.413195-08:00,1014.7767944335938,10.733995,10733.995 +14502,2025-03-08T19:10:25.151274-08:00,1014.7503051757812,10.738079,10738.079 +14503,2025-03-08T19:10:35.879517-08:00,1014.7584228515625,10.728243,10728.243 +14504,2025-03-08T19:10:46.620270-08:00,1014.7899780273438,10.740753,10740.753 +14505,2025-03-08T19:10:57.353364-08:00,1014.7620239257812,10.733094,10733.094 +14506,2025-03-08T19:11:08.091379-08:00,1014.7488403320312,10.738015,10738.015 +14507,2025-03-08T19:11:18.823464-08:00,1014.7918701171875,10.732085,10732.085 +14508,2025-03-08T19:11:29.557196-08:00,1014.795166015625,10.733732,10733.732 +14509,2025-03-08T19:11:40.284408-08:00,1014.7723388671875,10.727212,10727.212 +14510,2025-03-08T19:11:51.018432-08:00,1014.833740234375,10.734024,10734.024 +14511,2025-03-08T19:12:01.756222-08:00,1014.790771484375,10.73779,10737.79 +14512,2025-03-08T19:12:12.487198-08:00,1014.8125,10.730976,10730.976 +14513,2025-03-08T19:12:23.221389-08:00,1014.7910766601562,10.734191,10734.191 +14514,2025-03-08T19:12:33.960377-08:00,1014.8043823242188,10.738988,10738.988 +14515,2025-03-08T19:12:44.687403-08:00,1014.8109130859375,10.727026,10727.026 +14516,2025-03-08T19:12:55.424196-08:00,1014.7848510742188,10.736793,10736.793 +14517,2025-03-08T19:13:06.154566-08:00,1014.8079833984375,10.73037,10730.37 +14518,2025-03-08T19:13:16.882194-08:00,1014.821533203125,10.727628,10727.628 +14519,2025-03-08T19:13:27.616458-08:00,1014.8135375976562,10.734264,10734.264 +14520,2025-03-08T19:13:38.353734-08:00,1014.8153076171875,10.737276,10737.276 +14521,2025-03-08T19:13:49.090570-08:00,1014.80419921875,10.736836,10736.836 +14522,2025-03-08T19:13:59.819257-08:00,1014.7943725585938,10.728687,10728.687 +14523,2025-03-08T19:14:10.555401-08:00,1014.8130493164062,10.736144,10736.144 +14524,2025-03-08T19:14:21.291192-08:00,1014.81005859375,10.735791,10735.791 +14525,2025-03-08T19:14:32.020425-08:00,1014.80859375,10.729233,10729.233 +14526,2025-03-08T19:14:42.750191-08:00,1014.8258056640625,10.729766,10729.766 +14527,2025-03-08T19:14:53.484603-08:00,1014.817626953125,10.734412,10734.412 +14528,2025-03-08T19:15:04.220374-08:00,1014.8179931640625,10.735771,10735.771 +14529,2025-03-08T19:15:14.962663-08:00,1014.8032836914062,10.742289,10742.289 +14530,2025-03-08T19:15:25.697195-08:00,1014.7970581054688,10.734532,10734.532 +14531,2025-03-08T19:15:35.936491-08:00,1014.8087768554688,10.239296,10239.296 +14532,2025-03-08T19:15:36.428441-08:00,1014.7940063476562,0.49195,491.95 +14533,2025-03-08T19:15:47.164287-08:00,1014.8240356445312,10.735846,10735.846 +14534,2025-03-08T19:15:57.907386-08:00,1014.8258666992188,10.743099,10743.099 +14535,2025-03-08T19:16:08.642218-08:00,1014.8060302734375,10.734832,10734.832 +14536,2025-03-08T19:16:19.368284-08:00,1014.8063354492188,10.726066,10726.066 +14537,2025-03-08T19:16:30.105385-08:00,1014.8361206054688,10.737101,10737.101 +14538,2025-03-08T19:16:40.846392-08:00,1014.8448486328125,10.741007,10741.007 +14539,2025-03-08T19:16:51.584197-08:00,1014.8069458007812,10.737805,10737.805 +14540,2025-03-08T19:17:02.318194-08:00,1014.83154296875,10.733997,10733.997 +14541,2025-03-08T19:17:13.052194-08:00,1014.8351440429688,10.734,10734.0 +14542,2025-03-08T19:17:23.794198-08:00,1014.82373046875,10.742004,10742.004 +14543,2025-03-08T19:17:34.527403-08:00,1014.8387451171875,10.733205,10733.205 +14544,2025-03-08T19:17:45.267315-08:00,1014.8336791992188,10.739912,10739.912 +14545,2025-03-08T19:17:55.998463-08:00,1014.8733520507812,10.731148,10731.148 +14546,2025-03-08T19:18:06.735429-08:00,1014.8421020507812,10.736966,10736.966 +14547,2025-03-08T19:18:17.475044-08:00,1014.8487548828125,10.739615,10739.615 +14548,2025-03-08T19:18:28.202196-08:00,1014.8618774414062,10.727152,10727.152 +14549,2025-03-08T19:18:38.942194-08:00,1014.8618774414062,10.739998,10739.998 +14550,2025-03-08T19:18:39.065178-08:00,1014.8604736328125,0.122984,122.984 +14551,2025-03-08T19:18:49.678192-08:00,1014.8538208007812,10.613014,10613.014 +14552,2025-03-08T19:19:00.413669-08:00,1014.845703125,10.735477,10735.477 +14553,2025-03-08T19:19:11.149379-08:00,1014.833984375,10.73571,10735.71 +14554,2025-03-08T19:19:21.888193-08:00,1014.80419921875,10.738814,10738.814 +14555,2025-03-08T19:19:32.617250-08:00,1014.833984375,10.729057,10729.057 +14556,2025-03-08T19:19:43.356396-08:00,1014.8538208007812,10.739146,10739.146 +14557,2025-03-08T19:19:54.093370-08:00,1014.82080078125,10.736974,10736.974 +14558,2025-03-08T19:20:04.820218-08:00,1014.8487548828125,10.726848,10726.848 +14559,2025-03-08T19:20:15.552197-08:00,1014.8604736328125,10.731979,10731.979 +14560,2025-03-08T19:20:26.288359-08:00,1014.8604736328125,10.736162,10736.162 +14561,2025-03-08T19:20:37.015202-08:00,1014.8585815429688,10.726843,10726.843 +14562,2025-03-08T19:20:47.748198-08:00,1014.8468627929688,10.732996,10732.996 +14563,2025-03-08T19:20:58.486691-08:00,1014.8931884765625,10.738493,10738.493 +14564,2025-03-08T19:21:09.219976-08:00,1014.8748168945312,10.733285,10733.285 +14565,2025-03-08T19:21:19.954196-08:00,1014.8682861328125,10.73422,10734.22 +14566,2025-03-08T19:21:30.686198-08:00,1014.87158203125,10.732002,10732.002 +14567,2025-03-08T19:21:41.425448-08:00,1014.8634643554688,10.73925,10739.25 +14568,2025-03-08T19:21:52.149194-08:00,1014.8351440429688,10.723746,10723.746 +14569,2025-03-08T19:22:02.886198-08:00,1014.841796875,10.737004,10737.004 +14570,2025-03-08T19:22:13.617444-08:00,1014.85986328125,10.731246,10731.246 +14571,2025-03-08T19:22:24.362900-08:00,1014.8663940429688,10.745456,10745.456 +14572,2025-03-08T19:22:35.094194-08:00,1014.8562622070312,10.731294,10731.294 +14573,2025-03-08T19:22:45.823434-08:00,1014.8381958007812,10.72924,10729.24 +14574,2025-03-08T19:22:56.563440-08:00,1014.861083984375,10.740006,10740.006 +14575,2025-03-08T19:23:07.290856-08:00,1014.9054565429688,10.727416,10727.416 +14576,2025-03-08T19:23:18.032220-08:00,1014.8790893554688,10.741364,10741.364 +14577,2025-03-08T19:23:28.762198-08:00,1014.8904418945312,10.729978,10729.978 +14578,2025-03-08T19:23:39.506229-08:00,1014.8772583007812,10.744031,10744.031 +14579,2025-03-08T19:23:50.240444-08:00,1014.8673706054688,10.734215,10734.215 +14580,2025-03-08T19:24:00.966988-08:00,1014.9099731445312,10.726544,10726.544 +14581,2025-03-08T19:24:11.699268-08:00,1014.8538208007812,10.73228,10732.28 +14582,2025-03-08T19:24:22.437198-08:00,1014.8685913085938,10.73793,10737.93 +14583,2025-03-08T19:24:33.166474-08:00,1014.8685913085938,10.729276,10729.276 +14584,2025-03-08T19:24:43.906193-08:00,1014.8917236328125,10.739719,10739.719 +14585,2025-03-08T19:24:54.639192-08:00,1014.8800048828125,10.732999,10732.999 +14586,2025-03-08T19:25:05.371407-08:00,1014.9046020507812,10.732215,10732.215 +14587,2025-03-08T19:25:16.112454-08:00,1014.9126586914062,10.741047,10741.047 +14588,2025-03-08T19:25:26.849402-08:00,1014.8995361328125,10.736948,10736.948 +14589,2025-03-08T19:25:37.583197-08:00,1014.8881225585938,10.733795,10733.795 +14590,2025-03-08T19:25:48.311592-08:00,1014.8829956054688,10.728395,10728.395 +14591,2025-03-08T19:25:59.052363-08:00,1014.8878173828125,10.740771,10740.771 +14592,2025-03-08T19:26:09.789432-08:00,1014.8826293945312,10.737069,10737.069 +14593,2025-03-08T19:26:20.528260-08:00,1014.8727416992188,10.738828,10738.828 +14594,2025-03-08T19:26:31.264193-08:00,1014.9021606445312,10.735933,10735.933 +14595,2025-03-08T19:26:41.998418-08:00,1014.8709106445312,10.734225,10734.225 +14596,2025-03-08T19:26:52.739446-08:00,1014.8856201171875,10.741028,10741.028 +14597,2025-03-08T19:27:03.477402-08:00,1014.8955688476562,10.737956,10737.956 +14598,2025-03-08T19:27:14.211295-08:00,1014.888916015625,10.733893,10733.893 +14599,2025-03-08T19:27:24.945479-08:00,1014.8573608398438,10.734184,10734.184 +14600,2025-03-08T19:27:35.675368-08:00,1014.8937377929688,10.729889,10729.889 +14601,2025-03-08T19:27:46.414450-08:00,1014.88720703125,10.739082,10739.082 +14602,2025-03-08T19:27:57.148196-08:00,1014.891845703125,10.733746,10733.746 +14603,2025-03-08T19:28:07.881604-08:00,1014.8986206054688,10.733408,10733.408 +14604,2025-03-08T19:28:18.623423-08:00,1014.9000244140625,10.741819,10741.819 +14605,2025-03-08T19:28:29.354403-08:00,1014.9180297851562,10.73098,10730.98 +14606,2025-03-08T19:28:40.094197-08:00,1014.946044921875,10.739794,10739.794 +14607,2025-03-08T19:28:50.828337-08:00,1014.934326171875,10.73414,10734.14 +14608,2025-03-08T19:29:01.566643-08:00,1014.919189453125,10.738306,10738.306 +14609,2025-03-08T19:29:12.303377-08:00,1014.90966796875,10.736734,10736.734 +14610,2025-03-08T19:29:23.034197-08:00,1014.9541625976562,10.73082,10730.82 +14611,2025-03-08T19:29:33.767267-08:00,1014.9291381835938,10.73307,10733.07 +14612,2025-03-08T19:29:44.511692-08:00,1014.9439086914062,10.744425,10744.425 +14613,2025-03-08T19:29:55.247988-08:00,1014.9735717773438,10.736296,10736.296 +14614,2025-03-08T19:30:05.978196-08:00,1014.9354858398438,10.730208,10730.208 +14615,2025-03-08T19:30:16.714378-08:00,1014.9306030273438,10.736182,10736.182 +14616,2025-03-08T19:30:27.447195-08:00,1014.927001953125,10.732817,10732.817 +14617,2025-03-08T19:30:38.177067-08:00,1014.9567260742188,10.729872,10729.872 +14618,2025-03-08T19:30:48.911276-08:00,1014.9567260742188,10.734209,10734.209 +14619,2025-03-08T19:30:59.646201-08:00,1014.9318237304688,10.734925,10734.925 +14620,2025-03-08T19:31:10.385548-08:00,1014.9615478515625,10.739347,10739.347 +14621,2025-03-08T19:31:21.117406-08:00,1014.9682006835938,10.731858,10731.858 +14622,2025-03-08T19:31:31.859419-08:00,1014.958251953125,10.742013,10742.013 +14623,2025-03-08T19:31:42.593267-08:00,1014.9600830078125,10.733848,10733.848 +14624,2025-03-08T19:31:53.326304-08:00,1014.9781494140625,10.733037,10733.037 +14625,2025-03-08T19:32:04.062390-08:00,1014.96484375,10.736086,10736.086 +14626,2025-03-08T19:32:14.795567-08:00,1014.95166015625,10.733177,10733.177 +14627,2025-03-08T19:32:25.534194-08:00,1014.9762573242188,10.738627,10738.627 +14628,2025-03-08T19:32:36.267198-08:00,1014.9660034179688,10.733004,10733.004 +14629,2025-03-08T19:32:47.005409-08:00,1014.97412109375,10.738211,10738.211 +14630,2025-03-08T19:32:57.744380-08:00,1014.9561157226562,10.738971,10738.971 +14631,2025-03-08T19:33:08.476617-08:00,1014.9642333984375,10.732237,10732.237 +14632,2025-03-08T19:33:19.217197-08:00,1014.9723510742188,10.74058,10740.58 +14633,2025-03-08T19:33:29.955194-08:00,1014.9837646484375,10.737997,10737.997 +14634,2025-03-08T19:33:40.693403-08:00,1014.9723510742188,10.738209,10738.209 +14635,2025-03-08T19:33:51.423219-08:00,1014.9671630859375,10.729816,10729.816 +14636,2025-03-08T19:34:02.156198-08:00,1014.9723510742188,10.732979,10732.979 +14637,2025-03-08T19:34:12.890451-08:00,1014.975341796875,10.734253,10734.253 +14638,2025-03-08T19:34:23.625416-08:00,1015.0036010742188,10.734965,10734.965 +14639,2025-03-08T19:34:34.361191-08:00,1014.9984130859375,10.735775,10735.775 +14640,2025-03-08T19:34:45.107226-08:00,1014.9999389648438,10.746035,10746.035 +14641,2025-03-08T19:34:55.836336-08:00,1014.9951782226562,10.72911,10729.11 +14642,2025-03-08T19:35:06.574195-08:00,1014.9767456054688,10.737859,10737.859 +14643,2025-03-08T19:35:17.320273-08:00,1014.978271484375,10.746078,10746.078 +14644,2025-03-08T19:35:28.055331-08:00,1014.978271484375,10.735058,10735.058 +14645,2025-03-08T19:35:38.795227-08:00,1015.0014038085938,10.739896,10739.896 +14646,2025-03-08T19:35:49.524201-08:00,1015.0014038085938,10.728974,10728.974 +14647,2025-03-08T19:36:00.270353-08:00,1015.0109252929688,10.746152,10746.152 +14648,2025-03-08T19:36:11.003780-08:00,1014.9962768554688,10.733427,10733.427 +14649,2025-03-08T19:36:21.745381-08:00,1014.9929809570312,10.741601,10741.601 +14650,2025-03-08T19:36:32.475257-08:00,1015.0076293945312,10.729876,10729.876 +14651,2025-03-08T19:36:43.221194-08:00,1015.0142211914062,10.745937,10745.937 +14652,2025-03-08T19:36:53.965401-08:00,1015.03076171875,10.744207,10744.207 +14653,2025-03-08T19:37:04.694231-08:00,1015.0323486328125,10.72883,10728.83 +14654,2025-03-08T19:37:15.446259-08:00,1015.0388793945312,10.752028,10752.028 +14655,2025-03-08T19:37:26.178374-08:00,1015.00439453125,10.732115,10732.115 +14656,2025-03-08T19:37:36.917758-08:00,1015.0289916992188,10.739384,10739.384 +14657,2025-03-08T19:37:47.659197-08:00,1015.0470581054688,10.741439,10741.439 +14658,2025-03-08T19:37:58.398224-08:00,1015.0223388671875,10.739027,10739.027 +14659,2025-03-08T19:38:09.139259-08:00,1015.0304565429688,10.741035,10741.035 +14660,2025-03-08T19:38:19.881198-08:00,1015.05029296875,10.741939,10741.939 +14661,2025-03-08T19:38:30.620651-08:00,1015.068359375,10.739453,10739.453 +14662,2025-03-08T19:38:41.366690-08:00,1015.05517578125,10.746039,10746.039 +14663,2025-03-08T19:38:52.111912-08:00,1015.05517578125,10.745222,10745.222 +14664,2025-03-08T19:39:02.845194-08:00,1015.0499877929688,10.733282,10733.282 +14665,2025-03-08T19:39:13.587344-08:00,1015.0565795898438,10.74215,10742.15 +14666,2025-03-08T19:39:24.331225-08:00,1015.0382690429688,10.743881,10743.881 +14667,2025-03-08T19:39:35.067258-08:00,1015.059814453125,10.736033,10736.033 +14668,2025-03-08T19:39:45.806202-08:00,1015.033447265625,10.738944,10738.944 +14669,2025-03-08T19:39:56.553198-08:00,1015.04296875,10.746996,10746.996 +14670,2025-03-08T19:40:07.288714-08:00,1015.036376953125,10.735516,10735.516 +14671,2025-03-08T19:40:18.025710-08:00,1015.0448608398438,10.736996,10736.996 +14672,2025-03-08T19:40:28.762197-08:00,1015.0826416015625,10.736487,10736.487 +14673,2025-03-08T19:40:39.502201-08:00,1015.0510864257812,10.740004,10740.004 +14674,2025-03-08T19:40:50.238606-08:00,1015.0525512695312,10.736405,10736.405 +14675,2025-03-08T19:41:00.979376-08:00,1015.0477905273438,10.74077,10740.77 +14676,2025-03-08T19:41:11.708271-08:00,1015.0654907226562,10.728895,10728.895 +14677,2025-03-08T19:41:22.456194-08:00,1015.0753784179688,10.747923,10747.923 +14678,2025-03-08T19:41:33.193424-08:00,1015.076904296875,10.73723,10737.23 +14679,2025-03-08T19:41:43.926198-08:00,1015.0684204101562,10.732774,10732.774 +14680,2025-03-08T19:41:54.666942-08:00,1015.090087890625,10.740744,10740.744 +14681,2025-03-08T19:42:05.407386-08:00,1015.08642578125,10.740444,10740.444 +14682,2025-03-08T19:42:16.135398-08:00,1015.0632934570312,10.728012,10728.012 +14683,2025-03-08T19:42:26.872293-08:00,1015.0794677734375,10.736895,10736.895 +14684,2025-03-08T19:42:37.608661-08:00,1015.0415649414062,10.736368,10736.368 +14685,2025-03-08T19:42:48.356397-08:00,1015.024658203125,10.747736,10747.736 +14686,2025-03-08T19:42:59.089433-08:00,1015.0279541015625,10.733036,10733.036 +14687,2025-03-08T19:43:09.834316-08:00,1015.0758056640625,10.744883,10744.883 +14688,2025-03-08T19:43:20.562458-08:00,1015.0758056640625,10.728142,10728.142 +14689,2025-03-08T19:43:31.309939-08:00,1015.087158203125,10.747481,10747.481 +14690,2025-03-08T19:43:42.045490-08:00,1015.0607299804688,10.735551,10735.551 +14691,2025-03-08T19:43:52.776287-08:00,1015.057373046875,10.730797,10730.797 +14692,2025-03-08T19:44:03.509215-08:00,1015.0706176757812,10.732928,10732.928 +14693,2025-03-08T19:44:14.250489-08:00,1015.1070556640625,10.741274,10741.274 +14694,2025-03-08T19:44:24.986691-08:00,1015.072021484375,10.736202,10736.202 +14695,2025-03-08T19:44:35.726952-08:00,1015.0739135742188,10.740261,10740.261 +14696,2025-03-08T19:44:46.457194-08:00,1015.0654907226562,10.730242,10730.242 +14697,2025-03-08T19:44:57.198194-08:00,1015.0834350585938,10.741,10741.0 +14698,2025-03-08T19:45:07.929197-08:00,1015.1217041015625,10.731003,10731.003 +14699,2025-03-08T19:45:18.661586-08:00,1015.1165771484375,10.732389,10732.389 +14700,2025-03-08T19:45:29.401224-08:00,1015.1113891601562,10.739638,10739.638 +14701,2025-03-08T19:45:40.138577-08:00,1015.0570068359375,10.737353,10737.353 +14702,2025-03-08T19:45:50.870328-08:00,1015.137939453125,10.731751,10731.751 +14703,2025-03-08T19:46:01.603367-08:00,1015.1331176757812,10.733039,10733.039 +14704,2025-03-08T19:46:12.340195-08:00,1015.0982055664062,10.736828,10736.828 +14705,2025-03-08T19:46:23.080223-08:00,1015.1596069335938,10.740028,10740.028 +14706,2025-03-08T19:46:33.815194-08:00,1015.11328125,10.734971,10734.971 +14707,2025-03-08T19:46:44.552199-08:00,1015.1246948242188,10.737005,10737.005 +14708,2025-03-08T19:46:55.294208-08:00,1015.1180419921875,10.742009,10742.009 +14709,2025-03-08T19:47:06.024299-08:00,1015.14453125,10.730091,10730.091 +14710,2025-03-08T19:47:16.758746-08:00,1015.137939453125,10.734447,10734.447 +14711,2025-03-08T19:47:27.501194-08:00,1015.1364135742188,10.742448,10742.448 +14712,2025-03-08T19:47:38.244319-08:00,1015.14306640625,10.743125,10743.125 +14713,2025-03-08T19:47:48.985391-08:00,1015.179443359375,10.741072,10741.072 +14714,2025-03-08T19:47:59.723372-08:00,1015.148193359375,10.737981,10737.981 +14715,2025-03-08T19:48:10.459194-08:00,1015.196044921875,10.735822,10735.822 +14716,2025-03-08T19:48:21.202194-08:00,1015.1945190429688,10.743,10743.0 +14717,2025-03-08T19:48:31.937265-08:00,1015.1448974609375,10.735071,10735.071 +14718,2025-03-08T19:48:32.787140-08:00,1015.1665649414062,0.849875,849.875 +14719,2025-03-08T19:48:42.689194-08:00,1015.1746826171875,9.902054,9902.054 +14720,2025-03-08T19:48:53.420197-08:00,1015.1912231445312,10.731003,10731.003 +14721,2025-03-08T19:49:04.163198-08:00,1015.1798706054688,10.743001,10743.001 +14722,2025-03-08T19:49:14.901393-08:00,1015.1864013671875,10.738195,10738.195 +14723,2025-03-08T19:49:25.640252-08:00,1015.1846313476562,10.738859,10738.859 +14724,2025-03-08T19:49:36.387549-08:00,1015.2029418945312,10.747297,10747.297 +14725,2025-03-08T19:49:47.123477-08:00,1015.2111206054688,10.735928,10735.928 +14726,2025-03-08T19:49:57.861490-08:00,1015.224365234375,10.738013,10738.013 +14727,2025-03-08T19:50:08.601501-08:00,1015.19482421875,10.740011,10740.011 +14728,2025-03-08T19:50:19.337568-08:00,1015.236083984375,10.736067,10736.067 +14729,2025-03-08T19:50:30.084385-08:00,1015.206298828125,10.746817,10746.817 +14730,2025-03-08T19:50:40.819397-08:00,1015.2261962890625,10.735012,10735.012 +14731,2025-03-08T19:50:51.561247-08:00,1015.204833984375,10.74185,10741.85 +14732,2025-03-08T19:51:02.296499-08:00,1015.204833984375,10.735252,10735.252 +14733,2025-03-08T19:51:13.032306-08:00,1015.221435546875,10.735807,10735.807 +14734,2025-03-08T19:51:23.765497-08:00,1015.2081298828125,10.733191,10733.191 +14735,2025-03-08T19:51:34.500196-08:00,1015.1986083984375,10.734699,10734.699 +14736,2025-03-08T19:51:45.241461-08:00,1015.2184448242188,10.741265,10741.265 +14737,2025-03-08T19:51:55.985425-08:00,1015.2431030273438,10.743964,10743.964 +14738,2025-03-08T19:52:06.724407-08:00,1015.2496948242188,10.738982,10738.982 +14739,2025-03-08T19:52:17.466373-08:00,1015.2762451171875,10.741966,10741.966 +14740,2025-03-08T19:52:28.222321-08:00,1015.243408203125,10.755948,10755.948 +14741,2025-03-08T19:52:38.964733-08:00,1015.2500610351562,10.742412,10742.412 +14742,2025-03-08T19:52:49.700763-08:00,1015.255126953125,10.73603,10736.03 +14743,2025-03-08T19:53:00.441810-08:00,1015.2684326171875,10.741047,10741.047 +14744,2025-03-08T19:53:11.176732-08:00,1015.26513671875,10.734922,10734.922 +14745,2025-03-08T19:53:21.921964-08:00,1015.2518920898438,10.745232,10745.232 +14746,2025-03-08T19:53:32.659555-08:00,1015.2437744140625,10.737591,10737.591 +14747,2025-03-08T19:53:43.392971-08:00,1015.263671875,10.733416,10733.416 +14748,2025-03-08T19:53:54.137734-08:00,1015.2603149414062,10.744763,10744.763 +14749,2025-03-08T19:54:04.872948-08:00,1015.2654418945312,10.735214,10735.214 +14750,2025-03-08T19:54:15.612921-08:00,1015.2919311523438,10.739973,10739.973 +14751,2025-03-08T19:54:26.348125-08:00,1015.2886962890625,10.735204,10735.204 +14752,2025-03-08T19:54:37.083734-08:00,1015.3070068359375,10.735609,10735.609 +14753,2025-03-08T19:54:47.824878-08:00,1015.2988891601562,10.741144,10741.144 +14754,2025-03-08T19:54:58.560737-08:00,1015.2988891601562,10.735859,10735.859 +14755,2025-03-08T19:55:09.296757-08:00,1015.2823486328125,10.73602,10736.02 +14756,2025-03-08T19:55:20.042878-08:00,1015.2874755859375,10.746121,10746.121 +14757,2025-03-08T19:55:30.769733-08:00,1015.2742919921875,10.726855,10726.855 +14758,2025-03-08T19:55:41.514764-08:00,1015.2941284179688,10.745031,10745.031 +14759,2025-03-08T19:55:52.241912-08:00,1015.307373046875,10.727148,10727.148 +14760,2025-03-08T19:56:02.989025-08:00,1015.3173217773438,10.747113,10747.113 +14761,2025-03-08T19:56:13.723960-08:00,1015.3107299804688,10.734935,10734.935 +14762,2025-03-08T19:56:24.458737-08:00,1015.3025512695312,10.734777,10734.777 +14763,2025-03-08T19:56:35.197494-08:00,1015.3092041015625,10.738757,10738.757 +14764,2025-03-08T19:56:45.929928-08:00,1015.3010864257812,10.732434,10732.434 +14765,2025-03-08T19:56:56.666210-08:00,1015.2911987304688,10.736282,10736.282 +14766,2025-03-08T19:57:07.399792-08:00,1015.3258056640625,10.733582,10733.582 +14767,2025-03-08T19:57:18.131735-08:00,1015.3043823242188,10.731943,10731.943 +14768,2025-03-08T19:57:28.873737-08:00,1015.302978515625,10.742002,10742.002 +14769,2025-03-08T19:57:39.607782-08:00,1015.32421875,10.734045,10734.045 +14770,2025-03-08T19:57:50.335731-08:00,1015.3047485351562,10.727949,10727.949 +14771,2025-03-08T19:58:01.069944-08:00,1015.3114013671875,10.734213,10734.213 +14772,2025-03-08T19:58:11.813871-08:00,1015.3378295898438,10.743927,10743.927 +14773,2025-03-08T19:58:22.544083-08:00,1015.2882690429688,10.730212,10730.212 +14774,2025-03-08T19:58:33.276763-08:00,1015.3361206054688,10.73268,10732.68 +14775,2025-03-08T19:58:44.016735-08:00,1015.3065795898438,10.739972,10739.972 +14776,2025-03-08T19:58:54.747738-08:00,1015.3179931640625,10.731003,10731.003 +14777,2025-03-08T19:59:05.486193-08:00,1015.3179931640625,10.738455,10738.455 +14778,2025-03-08T19:59:16.222608-08:00,1015.2853393554688,10.736415,10736.415 +14779,2025-03-08T19:59:26.960800-08:00,1015.3216552734375,10.738192,10738.192 +14780,2025-03-08T19:59:37.694733-08:00,1015.3429565429688,10.733933,10733.933 +14781,2025-03-08T19:59:48.424963-08:00,1015.31689453125,10.73023,10730.23 +14782,2025-03-08T19:59:59.154076-08:00,1015.2904052734375,10.729113,10729.113 +14783,2025-03-08T20:00:09.891758-08:00,1015.3069458007812,10.737682,10737.682 +14784,2025-03-08T20:00:20.630742-08:00,1015.3367309570312,10.738984,10738.984 +14785,2025-03-08T20:00:31.362954-08:00,1015.3186645507812,10.732212,10732.212 +14786,2025-03-08T20:00:42.098427-08:00,1015.3253173828125,10.735473,10735.473 +14787,2025-03-08T20:00:52.836736-08:00,1015.322021484375,10.738309,10738.309 +14788,2025-03-08T20:01:03.574500-08:00,1015.3106079101562,10.737764,10737.764 +14789,2025-03-08T20:01:14.303930-08:00,1015.32373046875,10.72943,10729.43 +14790,2025-03-08T20:01:25.049019-08:00,1015.3304443359375,10.745089,10745.089 +14791,2025-03-08T20:01:35.775817-08:00,1015.3484497070312,10.726798,10726.798 +14792,2025-03-08T20:01:46.518796-08:00,1015.3682861328125,10.742979,10742.979 +14793,2025-03-08T20:01:57.253515-08:00,1015.3418579101562,10.734719,10734.719 +14794,2025-03-08T20:02:07.990921-08:00,1015.333740234375,10.737406,10737.406 +14795,2025-03-08T20:02:18.725979-08:00,1015.332275390625,10.735058,10735.058 +14796,2025-03-08T20:02:29.458734-08:00,1015.3719482421875,10.732755,10732.755 +14797,2025-03-08T20:02:40.191737-08:00,1015.3521118164062,10.733003,10733.003 +14798,2025-03-08T20:02:50.930737-08:00,1015.3487548828125,10.739,10739.0 +14799,2025-03-08T20:03:01.663584-08:00,1015.3554077148438,10.732847,10732.847 +14800,2025-03-08T20:03:12.401770-08:00,1015.3685913085938,10.738186,10738.186 +14801,2025-03-08T20:03:23.135739-08:00,1015.3605346679688,10.733969,10733.969 +14802,2025-03-08T20:03:33.869373-08:00,1015.3487548828125,10.733634,10733.634 +14803,2025-03-08T20:03:44.599735-08:00,1015.3373413085938,10.730362,10730.362 +14804,2025-03-08T20:03:55.334095-08:00,1015.38037109375,10.73436,10734.36 +14805,2025-03-08T20:04:06.076890-08:00,1015.3722534179688,10.742795,10742.795 +14806,2025-03-08T20:04:16.807951-08:00,1015.3605346679688,10.731061,10731.061 +14807,2025-03-08T20:04:27.543921-08:00,1015.3524169921875,10.73597,10735.97 +14808,2025-03-08T20:04:38.272944-08:00,1015.3524169921875,10.729023,10729.023 +14809,2025-03-08T20:04:49.013900-08:00,1015.357177734375,10.740956,10740.956 +14810,2025-03-08T20:04:59.751147-08:00,1015.357177734375,10.737247,10737.247 +14811,2025-03-08T20:05:10.484932-08:00,1015.3359375,10.733785,10733.785 +14812,2025-03-08T20:05:21.219935-08:00,1015.34765625,10.735003,10735.003 +14813,2025-03-08T20:05:31.954759-08:00,1015.3656005859375,10.734824,10734.824 +14814,2025-03-08T20:05:42.684103-08:00,1015.3443603515625,10.729344,10729.344 +14815,2025-03-08T20:05:53.418957-08:00,1015.3922119140625,10.734854,10734.854 +14816,2025-03-08T20:06:04.160815-08:00,1015.3759155273438,10.741858,10741.858 +14817,2025-03-08T20:06:14.892740-08:00,1015.3740844726562,10.731925,10731.925 +14818,2025-03-08T20:06:25.631827-08:00,1015.4089965820312,10.739087,10739.087 +14819,2025-03-08T20:06:36.375945-08:00,1015.3693237304688,10.744118,10744.118 +14820,2025-03-08T20:06:47.112074-08:00,1015.3512573242188,10.736129,10736.129 +14821,2025-03-08T20:06:57.843734-08:00,1015.37109375,10.73166,10731.66 +14822,2025-03-08T20:07:08.582167-08:00,1015.3743896484375,10.738433,10738.433 +14823,2025-03-08T20:07:19.316738-08:00,1015.3693237304688,10.734571,10734.571 +14824,2025-03-08T20:07:30.054111-08:00,1015.3759155273438,10.737373,10737.373 +14825,2025-03-08T20:07:40.787888-08:00,1015.3677978515625,10.733777,10733.777 +14826,2025-03-08T20:07:51.524015-08:00,1015.3464965820312,10.736127,10736.127 +14827,2025-03-08T20:08:02.258739-08:00,1015.3993530273438,10.734724,10734.724 +14828,2025-03-08T20:08:12.996373-08:00,1015.3795166015625,10.737634,10737.634 +14829,2025-03-08T20:08:23.733004-08:00,1015.3777465820312,10.736631,10736.631 +14830,2025-03-08T20:08:34.462736-08:00,1015.3512573242188,10.729732,10729.732 +14831,2025-03-08T20:08:45.205880-08:00,1015.3746948242188,10.743144,10743.144 +14832,2025-03-08T20:08:55.942948-08:00,1015.3961181640625,10.737068,10737.068 +14833,2025-03-08T20:09:06.683737-08:00,1015.387939453125,10.740789,10740.789 +14834,2025-03-08T20:09:17.418765-08:00,1015.3894653320312,10.735028,10735.028 +14835,2025-03-08T20:09:28.148736-08:00,1015.3912353515625,10.729971,10729.971 +14836,2025-03-08T20:09:38.883065-08:00,1015.3831176757812,10.734329,10734.329 +14837,2025-03-08T20:09:49.622739-08:00,1015.3898315429688,10.739674,10739.674 +14838,2025-03-08T20:10:00.356721-08:00,1015.3898315429688,10.733982,10733.982 +14839,2025-03-08T20:10:11.091734-08:00,1015.3978881835938,10.735013,10735.013 +14840,2025-03-08T20:10:21.829938-08:00,1015.3948974609375,10.738204,10738.204 +14841,2025-03-08T20:10:32.565990-08:00,1015.4063110351562,10.736052,10736.052 +14842,2025-03-08T20:10:43.297027-08:00,1015.3651733398438,10.731037,10731.037 +14843,2025-03-08T20:10:54.027734-08:00,1015.385009765625,10.730707,10730.707 +14844,2025-03-08T20:11:04.764813-08:00,1015.4048461914062,10.737079,10737.079 +14845,2025-03-08T20:11:15.500925-08:00,1015.4099731445312,10.736112,10736.112 +14846,2025-03-08T20:11:26.227734-08:00,1015.39013671875,10.726809,10726.809 +14847,2025-03-08T20:11:36.965758-08:00,1015.3768920898438,10.738024,10738.024 +14848,2025-03-08T20:11:47.695737-08:00,1015.3867797851562,10.729979,10729.979 +14849,2025-03-08T20:11:58.435124-08:00,1015.4081420898438,10.739387,10739.387 +14850,2025-03-08T20:12:09.171926-08:00,1015.3783569335938,10.736802,10736.802 +14851,2025-03-08T20:12:19.907982-08:00,1015.353759765625,10.736056,10736.056 +14852,2025-03-08T20:12:30.644802-08:00,1015.3817138671875,10.73682,10736.82 +14853,2025-03-08T20:12:41.380189-08:00,1015.4081420898438,10.735387,10735.387 +14854,2025-03-08T20:12:52.120919-08:00,1015.3635864257812,10.74073,10740.73 +14855,2025-03-08T20:13:02.849799-08:00,1015.3621826171875,10.72888,10728.88 +14856,2025-03-08T20:13:13.577729-08:00,1015.3588256835938,10.72793,10727.93 +14857,2025-03-08T20:13:24.311290-08:00,1015.3624877929688,10.733561,10733.561 +14858,2025-03-08T20:13:35.047908-08:00,1015.4021606445312,10.736618,10736.618 +14859,2025-03-08T20:13:45.783736-08:00,1015.4021606445312,10.735828,10735.828 +14860,2025-03-08T20:13:56.513924-08:00,1015.4072875976562,10.730188,10730.188 +14861,2025-03-08T20:14:07.249910-08:00,1015.4075927734375,10.735986,10735.986 +14862,2025-03-08T20:14:17.979938-08:00,1015.3895263671875,10.730028,10730.028 +14863,2025-03-08T20:14:28.712736-08:00,1015.3765869140625,10.732798,10732.798 +14864,2025-03-08T20:14:39.444889-08:00,1015.4181518554688,10.732153,10732.153 +14865,2025-03-08T20:14:50.184136-08:00,1015.4378662109375,10.739247,10739.247 +14866,2025-03-08T20:15:00.919941-08:00,1015.3970336914062,10.735805,10735.805 +14867,2025-03-08T20:15:11.649735-08:00,1015.400634765625,10.729794,10729.794 +14868,2025-03-08T20:15:22.383475-08:00,1015.4207763671875,10.73374,10733.74 +14869,2025-03-08T20:15:33.117732-08:00,1015.4210815429688,10.734257,10734.257 +14870,2025-03-08T20:15:43.852737-08:00,1015.4312744140625,10.735005,10735.005 +14871,2025-03-08T20:15:54.584003-08:00,1015.4263916015625,10.731266,10731.266 +14872,2025-03-08T20:16:05.318917-08:00,1015.421875,10.734914,10734.914 +14873,2025-03-08T20:16:16.054105-08:00,1015.4318237304688,10.735188,10735.188 +14874,2025-03-08T20:16:26.782802-08:00,1015.4170532226562,10.728697,10728.697 +14875,2025-03-08T20:16:37.513452-08:00,1015.3959350585938,10.73065,10730.65 +14876,2025-03-08T20:16:48.245729-08:00,1015.3978271484375,10.732277,10732.277 +14877,2025-03-08T20:16:58.976737-08:00,1015.401123046875,10.731008,10731.008 +14878,2025-03-08T20:17:09.698899-08:00,1015.3943481445312,10.722162,10722.162 +14879,2025-03-08T20:17:20.433733-08:00,1015.416015625,10.734834,10734.834 +14880,2025-03-08T20:17:31.159921-08:00,1015.4196166992188,10.726188,10726.188 +14881,2025-03-08T20:17:41.896254-08:00,1015.399658203125,10.736333,10736.333 +14882,2025-03-08T20:17:52.625729-08:00,1015.4180297851562,10.729475,10729.475 +14883,2025-03-08T20:18:03.360972-08:00,1015.4132690429688,10.735243,10735.243 +14884,2025-03-08T20:18:14.084107-08:00,1015.391845703125,10.723135,10723.135 +14885,2025-03-08T20:18:24.816738-08:00,1015.4017944335938,10.732631,10732.631 +14886,2025-03-08T20:18:35.552741-08:00,1015.4053955078125,10.736003,10736.003 +14887,2025-03-08T20:18:46.285922-08:00,1015.3987426757812,10.733181,10733.181 +14888,2025-03-08T20:18:57.011940-08:00,1015.41015625,10.726018,10726.018 +14889,2025-03-08T20:19:07.741878-08:00,1015.4137573242188,10.729938,10729.938 +14890,2025-03-08T20:19:18.475811-08:00,1015.458251953125,10.733933,10733.933 +14891,2025-03-08T20:19:29.209222-08:00,1015.4119262695312,10.733411,10733.411 +14892,2025-03-08T20:19:39.945738-08:00,1015.440185546875,10.736516,10736.516 +14893,2025-03-08T20:19:50.668895-08:00,1015.4185791015625,10.723157,10723.157 +14894,2025-03-08T20:20:01.409279-08:00,1015.4384155273438,10.740384,10740.384 +14895,2025-03-08T20:20:12.130935-08:00,1015.4384155273438,10.721656,10721.656 +14896,2025-03-08T20:20:22.862732-08:00,1015.43359375,10.731797,10731.797 +14897,2025-03-08T20:20:33.597904-08:00,1015.4384155273438,10.735172,10735.172 +14898,2025-03-08T20:20:44.332786-08:00,1015.4119262695312,10.734882,10734.882 +14899,2025-03-08T20:20:55.055853-08:00,1015.4317016601562,10.723067,10723.067 +14900,2025-03-08T20:21:05.795936-08:00,1015.4384155273438,10.740083,10740.083 +14901,2025-03-08T20:21:16.519735-08:00,1015.42041015625,10.723799,10723.799 +14902,2025-03-08T20:21:27.258977-08:00,1015.4285278320312,10.739242,10739.242 +14903,2025-03-08T20:21:38.000848-08:00,1015.4365844726562,10.741871,10741.871 +14904,2025-03-08T20:21:48.733049-08:00,1015.4483032226562,10.732201,10732.201 +14905,2025-03-08T20:21:59.462629-08:00,1015.4450073242188,10.72958,10729.58 +14906,2025-03-08T20:22:10.201984-08:00,1015.4400024414062,10.739355,10739.355 +14907,2025-03-08T20:22:20.934741-08:00,1015.434814453125,10.732757,10732.757 +14908,2025-03-08T20:22:31.672313-08:00,1015.4447631835938,10.737572,10737.572 +14909,2025-03-08T20:22:42.409929-08:00,1015.451416015625,10.737616,10737.616 +14910,2025-03-08T20:22:53.139090-08:00,1015.4579467773438,10.729161,10729.161 +14911,2025-03-08T20:23:03.876734-08:00,1015.4478149414062,10.737644,10737.644 +14912,2025-03-08T20:23:14.607847-08:00,1015.4511108398438,10.731113,10731.113 +14913,2025-03-08T20:23:25.343832-08:00,1015.46435546875,10.735985,10735.985 +14914,2025-03-08T20:23:36.070738-08:00,1015.45263671875,10.726906,10726.906 +14915,2025-03-08T20:23:46.803911-08:00,1015.4544677734375,10.733173,10733.173 +14916,2025-03-08T20:23:57.547557-08:00,1015.4494018554688,10.743646,10743.646 +14917,2025-03-08T20:24:08.280934-08:00,1015.4310302734375,10.733377,10733.377 +14918,2025-03-08T20:24:19.007284-08:00,1015.4442138671875,10.72635,10726.35 +14919,2025-03-08T20:24:29.748773-08:00,1015.4788208007812,10.741489,10741.489 +14920,2025-03-08T20:24:40.474760-08:00,1015.47705078125,10.725987,10725.987 +14921,2025-03-08T20:24:51.210022-08:00,1015.47216796875,10.735262,10735.262 +14922,2025-03-08T20:25:01.948767-08:00,1015.47705078125,10.738745,10738.745 +14923,2025-03-08T20:25:12.677705-08:00,1015.483642578125,10.728938,10728.938 +14924,2025-03-08T20:25:23.411841-08:00,1015.4605712890625,10.734136,10734.136 +14925,2025-03-08T20:25:34.149966-08:00,1015.4671630859375,10.738125,10738.125 +14926,2025-03-08T20:25:44.876737-08:00,1015.4837646484375,10.726771,10726.771 +14927,2025-03-08T20:25:55.618778-08:00,1015.49365234375,10.742041,10742.041 +14928,2025-03-08T20:26:06.350783-08:00,1015.5296630859375,10.732005,10732.005 +14929,2025-03-08T20:26:17.077944-08:00,1015.4966430664062,10.727161,10727.161 +14930,2025-03-08T20:26:27.820096-08:00,1015.4933471679688,10.742152,10742.152 +14931,2025-03-08T20:26:38.555729-08:00,1015.5029907226562,10.735633,10735.633 +14932,2025-03-08T20:26:49.287734-08:00,1015.4963989257812,10.732005,10732.005 +14933,2025-03-08T20:27:00.024943-08:00,1015.4681396484375,10.737209,10737.209 +14934,2025-03-08T20:27:10.754740-08:00,1015.4732666015625,10.729797,10729.797 +14935,2025-03-08T20:27:21.491128-08:00,1015.4963989257812,10.736388,10736.388 +14936,2025-03-08T20:27:32.232034-08:00,1015.5060424804688,10.740906,10740.906 +14937,2025-03-08T20:27:42.966938-08:00,1015.474853515625,10.734904,10734.904 +14938,2025-03-08T20:27:53.693946-08:00,1015.484375,10.727008,10727.008 +14939,2025-03-08T20:28:04.428908-08:00,1015.509033203125,10.734962,10734.962 +14940,2025-03-08T20:28:15.163783-08:00,1015.5142211914062,10.734875,10734.875 +14941,2025-03-08T20:28:25.893805-08:00,1015.509033203125,10.730022,10730.022 +14942,2025-03-08T20:28:36.631811-08:00,1015.4955444335938,10.738006,10738.006 +14943,2025-03-08T20:28:47.360761-08:00,1015.4955444335938,10.72895,10728.95 +14944,2025-03-08T20:28:58.092941-08:00,1015.5054931640625,10.73218,10732.18 +14945,2025-03-08T20:29:08.829737-08:00,1015.520263671875,10.736796,10736.796 +14946,2025-03-08T20:29:19.558920-08:00,1015.5070190429688,10.729183,10729.183 +14947,2025-03-08T20:29:30.299731-08:00,1015.5286865234375,10.740811,10740.811 +14948,2025-03-08T20:29:41.028802-08:00,1015.5250244140625,10.729071,10729.071 +14949,2025-03-08T20:29:51.761737-08:00,1015.5117797851562,10.732935,10732.935 +14950,2025-03-08T20:30:02.492860-08:00,1015.5018920898438,10.731123,10731.123 +14951,2025-03-08T20:30:13.235853-08:00,1015.5119018554688,10.742993,10742.993 +14952,2025-03-08T20:30:23.963794-08:00,1015.533203125,10.727941,10727.941 +14953,2025-03-08T20:30:34.696210-08:00,1015.5148315429688,10.732416,10732.416 +14954,2025-03-08T20:30:45.435024-08:00,1015.52294921875,10.738814,10738.814 +14955,2025-03-08T20:30:56.167068-08:00,1015.529541015625,10.732044,10732.044 +14956,2025-03-08T20:31:06.907738-08:00,1015.5262451171875,10.74067,10740.67 +14957,2025-03-08T20:31:17.638766-08:00,1015.55419921875,10.731028,10731.028 +14958,2025-03-08T20:31:28.382812-08:00,1015.5376586914062,10.744046,10744.046 +14959,2025-03-08T20:31:39.117148-08:00,1015.5343627929688,10.734336,10734.336 +14960,2025-03-08T20:31:49.848735-08:00,1015.5079956054688,10.731587,10731.587 +14961,2025-03-08T20:32:00.583974-08:00,1015.5014038085938,10.735239,10735.239 +14962,2025-03-08T20:32:11.318839-08:00,1015.5242309570312,10.734865,10734.865 +14963,2025-03-08T20:32:22.060908-08:00,1015.552490234375,10.742069,10742.069 +14964,2025-03-08T20:32:32.793730-08:00,1015.5142822265625,10.732822,10732.822 +14965,2025-03-08T20:32:43.529739-08:00,1015.5635986328125,10.736009,10736.009 +14966,2025-03-08T20:32:54.269737-08:00,1015.52392578125,10.739998,10739.998 +14967,2025-03-08T20:33:05.008763-08:00,1015.5323486328125,10.739026,10739.026 +14968,2025-03-08T20:33:15.739782-08:00,1015.5750122070312,10.731019,10731.019 +14969,2025-03-08T20:33:26.478737-08:00,1015.5518798828125,10.738955,10738.955 +14970,2025-03-08T20:33:37.217902-08:00,1015.5466918945312,10.739165,10739.165 +14971,2025-03-08T20:33:47.951926-08:00,1015.5533447265625,10.734024,10734.024 +14972,2025-03-08T20:33:58.688918-08:00,1015.5419311523438,10.736992,10736.992 +14973,2025-03-08T20:34:09.427753-08:00,1015.5714111328125,10.738835,10738.835 +14974,2025-03-08T20:34:20.164783-08:00,1015.5466918945312,10.73703,10737.03 +14975,2025-03-08T20:34:30.902739-08:00,1015.5548706054688,10.737956,10737.956 +14976,2025-03-08T20:34:41.646737-08:00,1015.57470703125,10.743998,10743.998 +14977,2025-03-08T20:34:52.384951-08:00,1015.5678100585938,10.738214,10738.214 +14978,2025-03-08T20:35:03.122914-08:00,1015.5957641601562,10.737963,10737.963 +14979,2025-03-08T20:35:13.852738-08:00,1015.5560913085938,10.729824,10729.824 +14980,2025-03-08T20:35:24.585957-08:00,1015.5645141601562,10.733219,10733.219 +14981,2025-03-08T20:35:35.322923-08:00,1015.5593872070312,10.736966,10736.966 +14982,2025-03-08T20:35:46.063915-08:00,1015.5543212890625,10.740992,10740.992 +14983,2025-03-08T20:35:56.805922-08:00,1015.549560546875,10.742007,10742.007 +14984,2025-03-08T20:36:07.536763-08:00,1015.5476684570312,10.730841,10730.841 +14985,2025-03-08T20:36:18.279738-08:00,1015.5560913085938,10.742975,10742.975 +14986,2025-03-08T20:36:29.019797-08:00,1015.57080078125,10.740059,10740.059 +14987,2025-03-08T20:36:39.752906-08:00,1015.582275390625,10.733109,10733.109 +14988,2025-03-08T20:36:50.487086-08:00,1015.580810546875,10.73418,10734.18 +14989,2025-03-08T20:37:01.221726-08:00,1015.6068725585938,10.73464,10734.64 +14990,2025-03-08T20:37:11.957944-08:00,1015.5671997070312,10.736218,10736.218 +14991,2025-03-08T20:37:22.696108-08:00,1015.588623046875,10.738164,10738.164 +14992,2025-03-08T20:37:33.427961-08:00,1015.570556640625,10.731853,10731.853 +14993,2025-03-08T20:37:44.165829-08:00,1015.5882568359375,10.737868,10737.868 +14994,2025-03-08T20:37:54.896891-08:00,1015.572021484375,10.731062,10731.062 +14995,2025-03-08T20:38:05.635739-08:00,1015.5951538085938,10.738848,10738.848 +14996,2025-03-08T20:38:16.372925-08:00,1015.578369140625,10.737186,10737.186 +14997,2025-03-08T20:38:27.112516-08:00,1015.5982055664062,10.739591,10739.591 +14998,2025-03-08T20:38:37.848760-08:00,1015.5831298828125,10.736244,10736.244 +14999,2025-03-08T20:38:48.581978-08:00,1015.5733032226562,10.733218,10733.218 +15000,2025-03-08T20:38:59.316925-08:00,1015.556396484375,10.734947,10734.947 +15001,2025-03-08T20:39:10.056253-08:00,1015.5662231445312,10.739328,10739.328 +15002,2025-03-08T20:39:20.781737-08:00,1015.5545043945312,10.725484,10725.484 +15003,2025-03-08T20:39:31.515953-08:00,1015.544677734375,10.734216,10734.216 +15004,2025-03-08T20:39:42.251912-08:00,1015.5678100585938,10.735959,10735.959 +15005,2025-03-08T20:39:52.993332-08:00,1015.589111328125,10.74142,10741.42 +15006,2025-03-08T20:40:03.730761-08:00,1015.56591796875,10.737429,10737.429 +15007,2025-03-08T20:40:14.460738-08:00,1015.5873413085938,10.729977,10729.977 +15008,2025-03-08T20:40:25.192939-08:00,1015.54248046875,10.732201,10732.201 +15009,2025-03-08T20:40:35.931303-08:00,1015.5574951171875,10.738364,10738.364 +15010,2025-03-08T20:40:46.671895-08:00,1015.5870361328125,10.740592,10740.592 +15011,2025-03-08T20:40:57.402737-08:00,1015.5753173828125,10.730842,10730.842 +15012,2025-03-08T20:41:08.140735-08:00,1015.5571899414062,10.737998,10737.998 +15013,2025-03-08T20:41:18.877231-08:00,1015.5639038085938,10.736496,10736.496 +15014,2025-03-08T20:41:29.607737-08:00,1015.5885009765625,10.730506,10730.506 +15015,2025-03-08T20:41:40.346826-08:00,1015.5900268554688,10.739089,10739.089 +15016,2025-03-08T20:41:51.075960-08:00,1015.5753173828125,10.729134,10729.134 +15017,2025-03-08T20:42:01.810924-08:00,1015.580078125,10.734964,10734.964 +15018,2025-03-08T20:42:12.550734-08:00,1015.5682983398438,10.73981,10739.81 +15019,2025-03-08T20:42:23.278939-08:00,1015.5682983398438,10.728205,10728.205 +15020,2025-03-08T20:42:34.011837-08:00,1015.5962524414062,10.732898,10732.898 +15021,2025-03-08T20:42:44.744777-08:00,1015.5682983398438,10.73294,10732.94 +15022,2025-03-08T20:42:55.477737-08:00,1015.6029052734375,10.73296,10732.96 +15023,2025-03-08T20:43:06.213942-08:00,1015.6209106445312,10.736205,10736.205 +15024,2025-03-08T20:43:16.943835-08:00,1015.61279296875,10.729893,10729.893 +15025,2025-03-08T20:43:27.676880-08:00,1015.59814453125,10.733045,10733.045 +15026,2025-03-08T20:43:38.421006-08:00,1015.599609375,10.744126,10744.126 +15027,2025-03-08T20:43:49.147737-08:00,1015.6242065429688,10.726731,10726.731 +15028,2025-03-08T20:43:59.887922-08:00,1015.6242065429688,10.740185,10740.185 +15029,2025-03-08T20:44:10.616760-08:00,1015.61279296875,10.728838,10728.838 +15030,2025-03-08T20:44:21.348733-08:00,1015.6224365234375,10.731973,10731.973 +15031,2025-03-08T20:44:32.089143-08:00,1015.61767578125,10.74041,10740.41 +15032,2025-03-08T20:44:42.821577-08:00,1015.6143798828125,10.732434,10732.434 +15033,2025-03-08T20:44:53.553737-08:00,1015.6356201171875,10.73216,10732.16 +15034,2025-03-08T20:45:04.284738-08:00,1015.6326293945312,10.731001,10731.001 +15035,2025-03-08T20:45:15.022787-08:00,1015.6062622070312,10.738049,10738.049 +15036,2025-03-08T20:45:25.752968-08:00,1015.6179809570312,10.730181,10730.181 +15037,2025-03-08T20:45:36.489967-08:00,1015.6194458007812,10.736999,10736.999 +15038,2025-03-08T20:45:47.224962-08:00,1015.6029052734375,10.734995,10734.995 +15039,2025-03-08T20:45:57.956221-08:00,1015.654052734375,10.731259,10731.259 +15040,2025-03-08T20:46:08.690944-08:00,1015.6378173828125,10.734723,10734.723 +15041,2025-03-08T20:46:19.432734-08:00,1015.6359252929688,10.74179,10741.79 +15042,2025-03-08T20:46:30.164737-08:00,1015.6194458007812,10.732003,10732.003 +15043,2025-03-08T20:46:40.901741-08:00,1015.6312255859375,10.737004,10737.004 +15044,2025-03-08T20:46:51.629734-08:00,1015.651123046875,10.727993,10727.993 +15045,2025-03-08T20:47:02.370885-08:00,1015.6197509765625,10.741151,10741.151 +15046,2025-03-08T20:47:13.105005-08:00,1015.6146850585938,10.73412,10734.12 +15047,2025-03-08T20:47:23.841154-08:00,1015.646240234375,10.736149,10736.149 +15048,2025-03-08T20:47:34.576418-08:00,1015.6397094726562,10.735264,10735.264 +15049,2025-03-08T20:47:45.316959-08:00,1015.634521484375,10.740541,10740.541 +15050,2025-03-08T20:47:56.047734-08:00,1015.6378173828125,10.730775,10730.775 +15051,2025-03-08T20:48:06.785882-08:00,1015.6231079101562,10.738148,10738.148 +15052,2025-03-08T20:48:17.524903-08:00,1015.6363525390625,10.739021,10739.021 +15053,2025-03-08T20:48:28.254736-08:00,1015.651123046875,10.729833,10729.833 +15054,2025-03-08T20:48:38.992058-08:00,1015.6329956054688,10.737322,10737.322 +15055,2025-03-08T20:48:49.721004-08:00,1015.65283203125,10.728946,10728.946 +15056,2025-03-08T20:49:00.450418-08:00,1015.6395874023438,10.729414,10729.414 +15057,2025-03-08T20:49:11.184735-08:00,1015.628173828125,10.734317,10734.317 +15058,2025-03-08T20:49:21.921768-08:00,1015.6101684570312,10.737033,10737.033 +15059,2025-03-08T20:49:32.661732-08:00,1015.646240234375,10.739964,10739.964 +15060,2025-03-08T20:49:43.399905-08:00,1015.643310546875,10.738173,10738.173 +15061,2025-03-08T20:49:54.131734-08:00,1015.643310546875,10.731829,10731.829 +15062,2025-03-08T20:50:04.862733-08:00,1015.628173828125,10.730999,10730.999 +15063,2025-03-08T20:50:15.599663-08:00,1015.6400146484375,10.73693,10736.93 +15064,2025-03-08T20:50:22.454296-08:00,1015.6480712890625,6.854633,6854.633 +15065,2025-03-08T20:50:26.332926-08:00,1015.6348266601562,3.87863,3878.63 +15066,2025-03-08T20:50:37.066939-08:00,1015.6465454101562,10.734013,10734.013 +15067,2025-03-08T20:50:47.798990-08:00,1015.6318969726562,10.732051,10732.051 +15068,2025-03-08T20:50:58.528922-08:00,1015.6303100585938,10.729932,10729.932 +15069,2025-03-08T20:51:09.258734-08:00,1015.6535034179688,10.729812,10729.812 +15070,2025-03-08T20:51:20.000744-08:00,1015.6351318359375,10.74201,10742.01 +15071,2025-03-08T20:51:30.725249-08:00,1015.6468505859375,10.724505,10724.505 +15072,2025-03-08T20:51:41.468916-08:00,1015.623779296875,10.743667,10743.667 +15073,2025-03-08T20:51:52.195732-08:00,1015.6303100585938,10.726816,10726.816 +15074,2025-03-08T20:52:02.927766-08:00,1015.6799926757812,10.732034,10732.034 +15075,2025-03-08T20:52:13.667949-08:00,1015.6520385742188,10.740183,10740.183 +15076,2025-03-08T20:52:24.426169-08:00,1015.6171264648438,10.75822,10758.22 +15077,2025-03-08T20:52:35.169609-08:00,1015.6090087890625,10.74344,10743.44 +15078,2025-03-08T20:52:45.899042-08:00,1015.65380859375,10.729433,10729.433 +15079,2025-03-08T20:52:56.628616-08:00,1015.6751708984375,10.729574,10729.574 +15080,2025-03-08T20:53:07.364167-08:00,1015.677001953125,10.735551,10735.551 +15081,2025-03-08T20:53:18.098032-08:00,1015.6439208984375,10.733865,10733.865 +15082,2025-03-08T20:53:28.821256-08:00,1015.6490478515625,10.723224,10723.224 +15083,2025-03-08T20:53:39.556105-08:00,1015.6273193359375,10.734849,10734.849 +15084,2025-03-08T20:53:50.285079-08:00,1015.68212890625,10.728974,10728.974 +15085,2025-03-08T20:54:01.021453-08:00,1015.6177368164062,10.736374,10736.374 +15086,2025-03-08T20:54:11.757209-08:00,1015.6640625,10.735756,10735.756 +15087,2025-03-08T20:54:22.487034-08:00,1015.6143798828125,10.729825,10729.825 +15088,2025-03-08T20:54:33.215030-08:00,1015.6556396484375,10.727996,10727.996 +15089,2025-03-08T20:54:43.949230-08:00,1015.6489868164062,10.7342,10734.2 +15090,2025-03-08T20:54:54.671030-08:00,1015.6658325195312,10.7218,10721.8 +15091,2025-03-08T20:55:05.410031-08:00,1015.6658325195312,10.739001,10739.001 +15092,2025-03-08T20:55:16.136215-08:00,1015.6426391601562,10.726184,10726.184 +15093,2025-03-08T20:55:26.867236-08:00,1015.6776733398438,10.731021,10731.021 +15094,2025-03-08T20:55:37.590210-08:00,1015.669189453125,10.722974,10722.974 +15095,2025-03-08T20:55:48.327239-08:00,1015.6610717773438,10.737029,10737.029 +15096,2025-03-08T20:55:59.052236-08:00,1015.682373046875,10.724997,10724.997 +15097,2025-03-08T20:56:09.789035-08:00,1015.682373046875,10.736799,10736.799 +15098,2025-03-08T20:56:20.517215-08:00,1015.6676635742188,10.72818,10728.18 +15099,2025-03-08T20:56:31.249026-08:00,1015.6331176757812,10.731811,10731.811 +15100,2025-03-08T20:56:41.980029-08:00,1015.6709594726562,10.731003,10731.003 +15101,2025-03-08T20:56:52.712427-08:00,1015.6959228515625,10.732398,10732.398 +15102,2025-03-08T20:57:03.443030-08:00,1015.692626953125,10.730603,10730.603 +15103,2025-03-08T20:57:14.171095-08:00,1015.6695556640625,10.728065,10728.065 +15104,2025-03-08T20:57:24.903422-08:00,1015.6944580078125,10.732327,10732.327 +15105,2025-03-08T20:57:35.641190-08:00,1015.6661987304688,10.737768,10737.768 +15106,2025-03-08T20:57:46.371033-08:00,1015.692626953125,10.729843,10729.843 +15107,2025-03-08T20:57:57.101036-08:00,1015.6595458984375,10.730003,10730.003 +15108,2025-03-08T20:58:07.830059-08:00,1015.662841796875,10.729023,10729.023 +15109,2025-03-08T20:58:18.559235-08:00,1015.6712646484375,10.729176,10729.176 +15110,2025-03-08T20:58:29.286205-08:00,1015.6760864257812,10.72697,10726.97 +15111,2025-03-08T20:58:40.022130-08:00,1015.6892700195312,10.735925,10735.925 +15112,2025-03-08T20:58:50.752807-08:00,1015.646240234375,10.730677,10730.677 +15113,2025-03-08T20:59:01.480188-08:00,1015.6660766601562,10.727381,10727.381 +15114,2025-03-08T20:59:12.212175-08:00,1015.6697387695312,10.731987,10731.987 +15115,2025-03-08T20:59:22.945093-08:00,1015.6859130859375,10.732918,10732.918 +15116,2025-03-08T20:59:33.668210-08:00,1015.674560546875,10.723117,10723.117 +15117,2025-03-08T20:59:44.405229-08:00,1015.6859130859375,10.737019,10737.019 +15118,2025-03-08T20:59:55.131030-08:00,1015.6943969726562,10.725801,10725.801 +15119,2025-03-08T21:00:05.867030-08:00,1015.6943969726562,10.736,10736.0 +15120,2025-03-08T21:00:16.595132-08:00,1015.6962280273438,10.728102,10728.102 +15121,2025-03-08T21:00:27.331110-08:00,1015.7061157226562,10.735978,10735.978 +15122,2025-03-08T21:00:38.061222-08:00,1015.7128295898438,10.730112,10730.112 +15123,2025-03-08T21:00:48.786031-08:00,1015.716064453125,10.724809,10724.809 +15124,2025-03-08T21:00:59.522439-08:00,1015.6995239257812,10.736408,10736.408 +15125,2025-03-08T21:01:10.249250-08:00,1015.6763916015625,10.726811,10726.811 +15126,2025-03-08T21:01:20.981059-08:00,1015.67822265625,10.731809,10731.809 +15127,2025-03-08T21:01:31.708148-08:00,1015.7293090820312,10.727089,10727.089 +15128,2025-03-08T21:01:42.440977-08:00,1015.6947021484375,10.732829,10732.829 +15129,2025-03-08T21:01:53.171550-08:00,1015.7112426757812,10.730573,10730.573 +15130,2025-03-08T21:02:03.900032-08:00,1015.6896362304688,10.728482,10728.482 +15131,2025-03-08T21:02:14.634359-08:00,1015.6931762695312,10.734327,10734.327 +15132,2025-03-08T21:02:25.366941-08:00,1015.7079467773438,10.732582,10732.582 +15133,2025-03-08T21:02:36.086313-08:00,1015.6881103515625,10.719372,10719.372 +15134,2025-03-08T21:02:46.823471-08:00,1015.697998046875,10.737158,10737.158 +15135,2025-03-08T21:02:57.546032-08:00,1015.697998046875,10.722561,10722.561 +15136,2025-03-08T21:03:08.284031-08:00,1015.7130737304688,10.737999,10737.999 +15137,2025-03-08T21:03:19.014059-08:00,1015.70458984375,10.730028,10730.028 +15138,2025-03-08T21:03:29.732202-08:00,1015.6832885742188,10.718143,10718.143 +15139,2025-03-08T21:03:40.459274-08:00,1015.6998291015625,10.727072,10727.072 +15140,2025-03-08T21:03:51.191483-08:00,1015.70166015625,10.732209,10732.209 +15141,2025-03-08T21:04:01.916132-08:00,1015.6865844726562,10.724649,10724.649 +15142,2025-03-08T21:04:12.654034-08:00,1015.68505859375,10.737902,10737.902 +15143,2025-03-08T21:04:23.378070-08:00,1015.7181396484375,10.724036,10724.036 +15144,2025-03-08T21:04:34.115058-08:00,1015.7100219726562,10.736988,10736.988 +15145,2025-03-08T21:04:44.846219-08:00,1015.7167358398438,10.731161,10731.161 +15146,2025-03-08T21:04:55.566034-08:00,1015.7332153320312,10.719815,10719.815 +15147,2025-03-08T21:05:06.295121-08:00,1015.7103271484375,10.729087,10729.087 +15148,2025-03-08T21:05:17.023202-08:00,1015.7103271484375,10.728081,10728.081 +15149,2025-03-08T21:05:27.752234-08:00,1015.6989135742188,10.729032,10729.032 +15150,2025-03-08T21:05:38.486233-08:00,1015.7518920898438,10.733999,10733.999 +15151,2025-03-08T21:05:49.214233-08:00,1015.7254028320312,10.728,10728.0 +15152,2025-03-08T21:05:59.948030-08:00,1015.7037353515625,10.733797,10733.797 +15153,2025-03-08T21:06:10.673034-08:00,1015.7220458984375,10.725004,10725.004 +15154,2025-03-08T21:06:21.410242-08:00,1015.7139282226562,10.737208,10737.208 +15155,2025-03-08T21:06:32.144126-08:00,1015.6989135742188,10.733884,10733.884 +15156,2025-03-08T21:06:42.869200-08:00,1015.7106323242188,10.725074,10725.074 +15157,2025-03-08T21:06:53.603536-08:00,1015.7157592773438,10.734336,10734.336 +15158,2025-03-08T21:07:04.328033-08:00,1015.694091796875,10.724497,10724.497 +15159,2025-03-08T21:07:15.067033-08:00,1015.7470092773438,10.739,10739.0 +15160,2025-03-08T21:07:25.797030-08:00,1015.7322387695312,10.729997,10729.997 +15161,2025-03-08T21:07:36.526525-08:00,1015.7470092773438,10.729495,10729.495 +15162,2025-03-08T21:07:47.256088-08:00,1015.7223510742188,10.729563,10729.563 +15163,2025-03-08T21:07:57.984609-08:00,1015.712646484375,10.728521,10728.521 +15164,2025-03-08T21:08:08.724164-08:00,1015.7472534179688,10.739555,10739.555 +15165,2025-03-08T21:08:19.452168-08:00,1015.712646484375,10.728004,10728.004 +15166,2025-03-08T21:08:30.182028-08:00,1015.7472534179688,10.72986,10729.86 +15167,2025-03-08T21:08:40.926110-08:00,1015.7340698242188,10.744082,10744.082 +15168,2025-03-08T21:08:51.654334-08:00,1015.748779296875,10.728224,10728.224 +15169,2025-03-08T21:09:02.383034-08:00,1015.7391357421875,10.7287,10728.7 +15170,2025-03-08T21:09:13.125526-08:00,1015.7193603515625,10.742492,10742.492 +15171,2025-03-08T21:09:23.854027-08:00,1015.7457885742188,10.728501,10728.501 +15172,2025-03-08T21:09:34.584035-08:00,1015.7391357421875,10.730008,10730.008 +15173,2025-03-08T21:09:45.313371-08:00,1015.7093505859375,10.729336,10729.336 +15174,2025-03-08T21:09:56.042058-08:00,1015.7575073242188,10.728687,10728.687 +15175,2025-03-08T21:10:06.779028-08:00,1015.7509155273438,10.73697,10736.97 +15176,2025-03-08T21:10:17.507304-08:00,1015.734375,10.728276,10728.276 +15177,2025-03-08T21:10:28.238215-08:00,1015.7490844726562,10.730911,10730.911 +15178,2025-03-08T21:10:38.968031-08:00,1015.7542114257812,10.729816,10729.816 +15179,2025-03-08T21:10:49.691046-08:00,1015.74609375,10.723015,10723.015 +15180,2025-03-08T21:11:00.423262-08:00,1015.7310180664062,10.732216,10732.216 +15181,2025-03-08T21:11:11.153029-08:00,1015.747802734375,10.729767,10729.767 +15182,2025-03-08T21:11:21.879720-08:00,1015.7232055664062,10.726691,10726.691 +15183,2025-03-08T21:11:32.613080-08:00,1015.744873046875,10.73336,10733.36 +15184,2025-03-08T21:11:43.335029-08:00,1015.728271484375,10.721949,10721.949 +15185,2025-03-08T21:11:54.068169-08:00,1015.7499389648438,10.73314,10733.14 +15186,2025-03-08T21:12:04.800059-08:00,1015.74658203125,10.73189,10731.89 +15187,2025-03-08T21:12:15.530034-08:00,1015.7402954101562,10.729975,10729.975 +15188,2025-03-08T21:12:26.258199-08:00,1015.7684936523438,10.728165,10728.165 +15189,2025-03-08T21:12:36.986030-08:00,1015.7619018554688,10.727831,10727.831 +15190,2025-03-08T21:12:47.719247-08:00,1015.7606201171875,10.733217,10733.217 +15191,2025-03-08T21:12:58.442242-08:00,1015.78076171875,10.722995,10722.995 +15192,2025-03-08T21:13:09.174033-08:00,1015.7711181640625,10.731791,10731.791 +15193,2025-03-08T21:13:19.909194-08:00,1015.7794799804688,10.735161,10735.161 +15194,2025-03-08T21:13:30.629030-08:00,1015.782958984375,10.719836,10719.836 +15195,2025-03-08T21:13:41.362236-08:00,1015.7449951171875,10.733206,10733.206 +15196,2025-03-08T21:13:52.091097-08:00,1015.7453002929688,10.728861,10728.861 +15197,2025-03-08T21:14:02.825119-08:00,1015.7603149414062,10.734022,10734.022 +15198,2025-03-08T21:14:13.558030-08:00,1015.7388916015625,10.732911,10732.911 +15199,2025-03-08T21:14:24.287215-08:00,1015.77880859375,10.729185,10729.185 +15200,2025-03-08T21:14:35.006200-08:00,1015.7871704101562,10.718985,10718.985 +15201,2025-03-08T21:14:45.744095-08:00,1015.760986328125,10.737895,10737.895 +15202,2025-03-08T21:14:56.473158-08:00,1015.7609252929688,10.729063,10729.063 +15203,2025-03-08T21:15:07.202131-08:00,1015.7828979492188,10.728973,10728.973 +15204,2025-03-08T21:15:17.925337-08:00,1015.77294921875,10.723206,10723.206 +15205,2025-03-08T21:15:28.661411-08:00,1015.78125,10.736074,10736.074 +15206,2025-03-08T21:15:39.388033-08:00,1015.7830200195312,10.726622,10726.622 +15207,2025-03-08T21:15:50.123097-08:00,1015.8029174804688,10.735064,10735.064 +15208,2025-03-08T21:16:00.854137-08:00,1015.7899169921875,10.73104,10731.04 +15209,2025-03-08T21:16:11.576029-08:00,1015.7998657226562,10.721892,10721.892 +15210,2025-03-08T21:16:22.304221-08:00,1015.7769775390625,10.728192,10728.192 +15211,2025-03-08T21:16:33.041214-08:00,1015.7901611328125,10.736993,10736.993 +15212,2025-03-08T21:16:43.771034-08:00,1015.7801513671875,10.72982,10729.82 +15213,2025-03-08T21:16:54.502031-08:00,1015.7787475585938,10.730997,10730.997 +15214,2025-03-08T21:17:05.228866-08:00,1015.7966918945312,10.726835,10726.835 +15215,2025-03-08T21:17:15.955321-08:00,1015.7870483398438,10.726455,10726.455 +15216,2025-03-08T21:17:26.679207-08:00,1015.78857421875,10.723886,10723.886 +15217,2025-03-08T21:17:37.416033-08:00,1015.7804565429688,10.736826,10736.826 +15218,2025-03-08T21:17:48.146221-08:00,1015.7474365234375,10.730188,10730.188 +15219,2025-03-08T21:17:58.882032-08:00,1015.7804565429688,10.735811,10735.811 +15220,2025-03-08T21:18:09.604269-08:00,1015.7870483398438,10.722237,10722.237 +15221,2025-03-08T21:18:20.336035-08:00,1015.795166015625,10.731766,10731.766 +15222,2025-03-08T21:18:31.067199-08:00,1015.80029296875,10.731164,10731.164 +15223,2025-03-08T21:18:41.800517-08:00,1015.80029296875,10.733318,10733.318 +15224,2025-03-08T21:18:52.536486-08:00,1015.7804565429688,10.735969,10735.969 +15225,2025-03-08T21:19:03.269030-08:00,1015.795166015625,10.732544,10732.544 +15226,2025-03-08T21:19:13.993219-08:00,1015.8231201171875,10.724189,10724.189 +15227,2025-03-08T21:19:24.729094-08:00,1015.7753295898438,10.735875,10735.875 +15228,2025-03-08T21:19:35.454278-08:00,1015.818359375,10.725184,10725.184 +15229,2025-03-08T21:19:46.194026-08:00,1015.8231201171875,10.739748,10739.748 +15230,2025-03-08T21:19:56.918032-08:00,1015.818359375,10.724006,10724.006 +15231,2025-03-08T21:20:07.648034-08:00,1015.8231811523438,10.730002,10730.002 +15232,2025-03-08T21:20:18.382134-08:00,1015.8345947265625,10.7341,10734.1 +15233,2025-03-08T21:20:29.114032-08:00,1015.83642578125,10.731898,10731.898 +15234,2025-03-08T21:20:39.848031-08:00,1015.819580078125,10.733999,10733.999 +15235,2025-03-08T21:20:50.572209-08:00,1015.8280639648438,10.724178,10724.178 +15236,2025-03-08T21:21:01.313333-08:00,1015.8442993164062,10.741124,10741.124 +15237,2025-03-08T21:21:12.045030-08:00,1015.837646484375,10.731697,10731.697 +15238,2025-03-08T21:21:22.778245-08:00,1015.8740844726562,10.733215,10733.215 +15239,2025-03-08T21:21:33.499044-08:00,1015.872314453125,10.720799,10720.799 +15240,2025-03-08T21:21:44.229045-08:00,1015.8440551757812,10.730001,10730.001 +15241,2025-03-08T21:21:54.965238-08:00,1015.860595703125,10.736193,10736.193 +15242,2025-03-08T21:22:05.699223-08:00,1015.85546875,10.733985,10733.985 +15243,2025-03-08T21:22:16.428026-08:00,1015.8242797851562,10.728803,10728.803 +15244,2025-03-08T21:22:27.167142-08:00,1015.8489990234375,10.739116,10739.116 +15245,2025-03-08T21:22:37.894913-08:00,1015.8489990234375,10.727771,10727.771 +15246,2025-03-08T21:22:48.629156-08:00,1015.8372802734375,10.734243,10734.243 +15247,2025-03-08T21:22:59.355240-08:00,1015.853515625,10.726084,10726.084 +15248,2025-03-08T21:23:10.091249-08:00,1015.8487548828125,10.736009,10736.009 +15249,2025-03-08T21:23:20.831212-08:00,1015.83544921875,10.739963,10739.963 +15250,2025-03-08T21:23:31.561566-08:00,1015.8451538085938,10.730354,10730.354 +15251,2025-03-08T21:23:42.295604-08:00,1015.8551025390625,10.734038,10734.038 +15252,2025-03-08T21:23:53.024194-08:00,1015.8565673828125,10.72859,10728.59 +15253,2025-03-08T21:24:03.754033-08:00,1015.8301391601562,10.729839,10729.839 +15254,2025-03-08T21:24:14.485060-08:00,1015.8284301757812,10.731027,10731.027 +15255,2025-03-08T21:24:25.230486-08:00,1015.869873046875,10.745426,10745.426 +15256,2025-03-08T21:24:35.954255-08:00,1015.85302734375,10.723769,10723.769 +15257,2025-03-08T21:24:46.692032-08:00,1015.8265380859375,10.737777,10737.777 +15258,2025-03-08T21:24:57.425029-08:00,1015.8284301757812,10.732997,10732.997 +15259,2025-03-08T21:25:08.165316-08:00,1015.8167114257812,10.740287,10740.287 +15260,2025-03-08T21:25:18.893056-08:00,1015.8429565429688,10.72774,10727.74 +15261,2025-03-08T21:25:29.626034-08:00,1015.8231201171875,10.732978,10732.978 +15262,2025-03-08T21:25:40.358214-08:00,1015.826416015625,10.73218,10732.18 +15263,2025-03-08T21:25:51.093129-08:00,1015.8345336914062,10.734915,10734.915 +15264,2025-03-08T21:26:01.828271-08:00,1015.8162231445312,10.735142,10735.142 +15265,2025-03-08T21:26:12.566093-08:00,1015.814453125,10.737822,10737.822 +15266,2025-03-08T21:26:23.300032-08:00,1015.8096923828125,10.733939,10733.939 +15267,2025-03-08T21:26:34.033198-08:00,1015.825927734375,10.733166,10733.166 +15268,2025-03-08T21:26:44.767030-08:00,1015.7913208007812,10.733832,10733.832 +15269,2025-03-08T21:26:55.511244-08:00,1015.8043212890625,10.744214,10744.214 +15270,2025-03-08T21:27:06.242032-08:00,1015.7926025390625,10.730788,10730.788 +15271,2025-03-08T21:27:16.981797-08:00,1015.8226318359375,10.739765,10739.765 +15272,2025-03-08T21:27:27.721388-08:00,1015.8094482421875,10.739591,10739.591 +15273,2025-03-08T21:27:38.449096-08:00,1015.8175659179688,10.727708,10727.708 +15274,2025-03-08T21:27:49.188102-08:00,1015.8010864257812,10.739006,10739.006 +15275,2025-03-08T21:27:59.921035-08:00,1015.8092041015625,10.732933,10732.933 +15276,2025-03-08T21:28:10.648053-08:00,1015.7977905273438,10.727018,10727.018 +15277,2025-03-08T21:28:21.387033-08:00,1015.8272094726562,10.73898,10738.98 +15278,2025-03-08T21:28:32.113444-08:00,1015.837158203125,10.726411,10726.411 +15279,2025-03-08T21:28:42.852229-08:00,1015.810791015625,10.738785,10738.785 +15280,2025-03-08T21:28:53.576270-08:00,1015.7725830078125,10.724041,10724.041 +15281,2025-03-08T21:29:04.314034-08:00,1015.782470703125,10.737764,10737.764 +15282,2025-03-08T21:29:15.041201-08:00,1015.7971801757812,10.727167,10727.167 +15283,2025-03-08T21:29:25.776193-08:00,1015.7921752929688,10.734992,10734.992 +15284,2025-03-08T21:29:36.514028-08:00,1015.8153076171875,10.737835,10737.835 +15285,2025-03-08T21:29:47.243215-08:00,1015.8101806640625,10.729187,10729.187 +15286,2025-03-08T21:29:57.975918-08:00,1015.8400268554688,10.732703,10732.703 +15287,2025-03-08T21:30:08.709032-08:00,1015.8150024414062,10.733114,10733.114 +15288,2025-03-08T21:30:19.451033-08:00,1015.8448486328125,10.742001,10742.001 +15289,2025-03-08T21:30:30.183027-08:00,1015.806640625,10.731994,10731.994 +15290,2025-03-08T21:30:40.912807-08:00,1015.8015747070312,10.72978,10729.78 +15291,2025-03-08T21:30:51.648325-08:00,1015.82470703125,10.735518,10735.518 +15292,2025-03-08T21:31:02.386038-08:00,1015.806396484375,10.737713,10737.713 +15293,2025-03-08T21:31:13.123445-08:00,1015.8427124023438,10.737407,10737.407 +15294,2025-03-08T21:31:23.860210-08:00,1015.8096923828125,10.736765,10736.765 +15295,2025-03-08T21:31:34.589226-08:00,1015.819580078125,10.729016,10729.016 +15296,2025-03-08T21:31:45.324031-08:00,1015.8226318359375,10.734805,10734.805 +15297,2025-03-08T21:31:56.055142-08:00,1015.8093872070312,10.731111,10731.111 +15298,2025-03-08T21:32:06.788056-08:00,1015.8046264648438,10.732914,10732.914 +15299,2025-03-08T21:32:17.529104-08:00,1015.8406982421875,10.741048,10741.048 +15300,2025-03-08T21:32:28.264035-08:00,1015.8292846679688,10.734931,10734.931 +15301,2025-03-08T21:32:38.990217-08:00,1015.8373413085938,10.726182,10726.182 +15302,2025-03-08T21:32:49.726031-08:00,1015.8403930664062,10.735814,10735.814 +15303,2025-03-08T21:33:00.465080-08:00,1015.820556640625,10.739049,10739.049 +15304,2025-03-08T21:33:11.208565-08:00,1015.8121948242188,10.743485,10743.485 +15305,2025-03-08T21:33:21.940030-08:00,1015.8206176757812,10.731465,10731.465 +15306,2025-03-08T21:33:32.675163-08:00,1015.83203125,10.735133,10735.133 +15307,2025-03-08T21:33:43.412056-08:00,1015.802001953125,10.736893,10736.893 +15308,2025-03-08T21:33:54.144246-08:00,1015.8118896484375,10.73219,10732.19 +15309,2025-03-08T21:34:04.877228-08:00,1015.8446655273438,10.732982,10732.982 +15310,2025-03-08T21:34:15.611214-08:00,1015.8049926757812,10.733986,10733.986 +15311,2025-03-08T21:34:26.356476-08:00,1015.8197631835938,10.745262,10745.262 +15312,2025-03-08T21:34:37.085062-08:00,1015.8095092773438,10.728586,10728.586 +15313,2025-03-08T21:34:47.822782-08:00,1015.8426513671875,10.73772,10737.72 +15314,2025-03-08T21:34:58.559045-08:00,1015.8125610351562,10.736263,10736.263 +15315,2025-03-08T21:35:09.288309-08:00,1015.8453369140625,10.729264,10729.264 +15316,2025-03-08T21:35:20.022033-08:00,1015.8486938476562,10.733724,10733.724 +15317,2025-03-08T21:35:30.758911-08:00,1015.769287109375,10.736878,10736.878 +15318,2025-03-08T21:35:41.494853-08:00,1015.8153076171875,10.735942,10735.942 +15319,2025-03-08T21:35:52.229028-08:00,1015.8201293945312,10.734175,10734.175 +15320,2025-03-08T21:36:02.963065-08:00,1015.7935791015625,10.734037,10734.037 +15321,2025-03-08T21:36:13.700225-08:00,1015.8016967773438,10.73716,10737.16 +15322,2025-03-08T21:36:24.433287-08:00,1015.8182983398438,10.733062,10733.062 +15323,2025-03-08T21:36:35.166262-08:00,1015.8201293945312,10.732975,10732.975 +15324,2025-03-08T21:36:45.899186-08:00,1015.8150024414062,10.732924,10732.924 +15325,2025-03-08T21:36:56.639033-08:00,1015.7999877929688,10.739847,10739.847 +15326,2025-03-08T21:37:07.376352-08:00,1015.8048706054688,10.737319,10737.319 +15327,2025-03-08T21:37:18.112316-08:00,1015.7915649414062,10.735964,10735.964 +15328,2025-03-08T21:37:28.841033-08:00,1015.7879638671875,10.728717,10728.717 +15329,2025-03-08T21:37:39.584027-08:00,1015.8045043945312,10.742994,10742.994 +15330,2025-03-08T21:37:50.314078-08:00,1015.805908203125,10.730051,10730.051 +15331,2025-03-08T21:38:01.052460-08:00,1015.7879638671875,10.738382,10738.382 +15332,2025-03-08T21:38:11.787097-08:00,1015.7843627929688,10.734637,10734.637 +15333,2025-03-08T21:38:22.517234-08:00,1015.7993774414062,10.730137,10730.137 +15334,2025-03-08T21:38:33.258895-08:00,1015.8089599609375,10.741661,10741.661 +15335,2025-03-08T21:38:43.986235-08:00,1015.782470703125,10.72734,10727.34 +15336,2025-03-08T21:38:54.716207-08:00,1015.799072265625,10.729972,10729.972 +15337,2025-03-08T21:39:05.456230-08:00,1015.7593994140625,10.740023,10740.023 +15338,2025-03-08T21:39:16.189133-08:00,1015.7675170898438,10.732903,10732.903 +15339,2025-03-08T21:39:26.917101-08:00,1015.7891235351562,10.727968,10727.968 +15340,2025-03-08T21:39:37.648143-08:00,1015.7593994140625,10.731042,10731.042 +15341,2025-03-08T21:39:48.386375-08:00,1015.770751953125,10.738232,10738.232 +15342,2025-03-08T21:39:59.117030-08:00,1015.7807006835938,10.730655,10730.655 +15343,2025-03-08T21:40:09.853040-08:00,1015.7891235351562,10.73601,10736.01 +15344,2025-03-08T21:40:20.593030-08:00,1015.7542114257812,10.73999,10739.99 +15345,2025-03-08T21:40:31.325158-08:00,1015.7774047851562,10.732128,10732.128 +15346,2025-03-08T21:40:42.062236-08:00,1015.7870483398438,10.737078,10737.078 +15347,2025-03-08T21:40:52.795032-08:00,1015.7509155273438,10.732796,10732.796 +15348,2025-03-08T21:41:03.529032-08:00,1015.7376708984375,10.734,10734.0 +15349,2025-03-08T21:41:14.271200-08:00,1015.757568359375,10.742168,10742.168 +15350,2025-03-08T21:41:25.003205-08:00,1015.727783203125,10.732005,10732.005 +15351,2025-03-08T21:41:35.742031-08:00,1015.770751953125,10.738826,10738.826 +15352,2025-03-08T21:41:46.473068-08:00,1015.7476806640625,10.731037,10731.037 +15353,2025-03-08T21:41:57.212034-08:00,1015.7362670898438,10.738966,10738.966 +15354,2025-03-08T21:42:07.945197-08:00,1015.744384765625,10.733163,10733.163 +15355,2025-03-08T21:42:18.678208-08:00,1015.7494506835938,10.733011,10733.011 +15356,2025-03-08T21:42:29.410240-08:00,1015.7476806640625,10.732032,10732.032 +15357,2025-03-08T21:42:40.151090-08:00,1015.757568359375,10.74085,10740.85 +15358,2025-03-08T21:42:50.887692-08:00,1015.7494506835938,10.736602,10736.602 +15359,2025-03-08T21:43:01.612137-08:00,1015.7642211914062,10.724445,10724.445 +15360,2025-03-08T21:43:12.350039-08:00,1015.757568359375,10.737902,10737.902 +15361,2025-03-08T21:43:23.081033-08:00,1015.734375,10.730994,10730.994 +15362,2025-03-08T21:43:33.813287-08:00,1015.7740478515625,10.732254,10732.254 +15363,2025-03-08T21:43:44.546093-08:00,1015.7476806640625,10.732806,10732.806 +15364,2025-03-08T21:43:55.282050-08:00,1015.7626342773438,10.735957,10735.957 +15365,2025-03-08T21:44:06.013216-08:00,1015.7608642578125,10.731166,10731.166 +15366,2025-03-08T21:44:16.746032-08:00,1015.7528076171875,10.732816,10732.816 +15367,2025-03-08T21:44:27.484031-08:00,1015.7262573242188,10.737999,10737.999 +15368,2025-03-08T21:44:38.222143-08:00,1015.7446899414062,10.738112,10738.112 +15369,2025-03-08T21:44:48.957078-08:00,1015.7446899414062,10.734935,10734.935 +15370,2025-03-08T21:44:59.687054-08:00,1015.7346801757812,10.729976,10729.976 +15371,2025-03-08T21:45:10.417031-08:00,1015.7463989257812,10.729977,10729.977 +15372,2025-03-08T21:45:21.151311-08:00,1015.7597045898438,10.73428,10734.28 +15373,2025-03-08T21:45:31.891428-08:00,1015.7463989257812,10.740117,10740.117 +15374,2025-03-08T21:45:42.625031-08:00,1015.7711181640625,10.733603,10733.603 +15375,2025-03-08T21:45:53.358033-08:00,1015.7645263671875,10.733002,10733.002 +15376,2025-03-08T21:46:04.087142-08:00,1015.7695922851562,10.729109,10729.109 +15377,2025-03-08T21:46:14.817177-08:00,1015.7548217773438,10.730035,10730.035 +15378,2025-03-08T21:46:25.547063-08:00,1015.7681274414062,10.729886,10729.886 +15379,2025-03-08T21:46:36.282550-08:00,1015.7695922851562,10.735487,10735.487 +15380,2025-03-08T21:46:47.012823-08:00,1015.7548217773438,10.730273,10730.273 +15381,2025-03-08T21:46:57.750061-08:00,1015.7463989257812,10.737238,10737.238 +15382,2025-03-08T21:47:08.484153-08:00,1015.779541015625,10.734092,10734.092 +15383,2025-03-08T21:47:19.227086-08:00,1015.7515869140625,10.742933,10742.933 +15384,2025-03-08T21:47:29.959211-08:00,1015.779541015625,10.732125,10732.125 +15385,2025-03-08T21:47:40.695136-08:00,1015.7698974609375,10.735925,10735.925 +15386,2025-03-08T21:47:51.427034-08:00,1015.761474609375,10.731898,10731.898 +15387,2025-03-08T21:48:02.163224-08:00,1015.7765502929688,10.73619,10736.19 +15388,2025-03-08T21:48:12.907212-08:00,1015.7416381835938,10.743988,10743.988 +15389,2025-03-08T21:48:23.635104-08:00,1015.7453002929688,10.727892,10727.892 +15390,2025-03-08T21:48:34.378032-08:00,1015.7467041015625,10.742928,10742.928 +15391,2025-03-08T21:48:45.112719-08:00,1015.7518920898438,10.734687,10734.687 +15392,2025-03-08T21:48:55.853142-08:00,1015.7305297851562,10.740423,10740.423 +15393,2025-03-08T21:49:06.588206-08:00,1015.7636108398438,10.735064,10735.064 +15394,2025-03-08T21:49:17.323058-08:00,1015.7584228515625,10.734852,10734.852 +15395,2025-03-08T21:49:28.061031-08:00,1015.7750244140625,10.737973,10737.973 +15396,2025-03-08T21:49:38.800033-08:00,1015.7933349609375,10.739002,10739.002 +15397,2025-03-08T21:49:49.530210-08:00,1015.7684326171875,10.730177,10730.177 +15398,2025-03-08T21:50:00.271210-08:00,1015.7654418945312,10.741,10741.0 +15399,2025-03-08T21:50:11.010157-08:00,1015.778564453125,10.738947,10738.947 +15400,2025-03-08T21:50:21.747056-08:00,1015.7570190429688,10.736899,10736.899 +15401,2025-03-08T21:50:32.476063-08:00,1015.783447265625,10.729007,10729.007 +15402,2025-03-08T21:50:43.211118-08:00,1015.7687377929688,10.735055,10735.055 +15403,2025-03-08T21:50:53.945074-08:00,1015.7753295898438,10.733956,10733.956 +15404,2025-03-08T21:51:04.678035-08:00,1015.7804565429688,10.732961,10732.961 +15405,2025-03-08T21:51:15.414210-08:00,1015.7804565429688,10.736175,10736.175 +15406,2025-03-08T21:51:26.141744-08:00,1015.7870483398438,10.727534,10727.534 +15407,2025-03-08T21:51:36.876102-08:00,1015.80029296875,10.734358,10734.358 +15408,2025-03-08T21:51:47.614086-08:00,1015.778564453125,10.737984,10737.984 +15409,2025-03-08T21:51:58.342251-08:00,1015.7738037109375,10.728165,10728.165 +15410,2025-03-08T21:52:09.078058-08:00,1015.778564453125,10.735807,10735.807 +15411,2025-03-08T21:52:19.807242-08:00,1015.7771606445312,10.729184,10729.184 +15412,2025-03-08T21:52:30.558391-08:00,1015.7771606445312,10.751149,10751.149 +15413,2025-03-08T21:52:41.294170-08:00,1015.7837524414062,10.735779,10735.779 +15414,2025-03-08T21:52:52.022305-08:00,1015.7753295898438,10.728135,10728.135 +15415,2025-03-08T21:53:02.756546-08:00,1015.7687377929688,10.734241,10734.241 +15416,2025-03-08T21:53:13.489346-08:00,1015.78857421875,10.7328,10732.8 +15417,2025-03-08T21:53:24.223317-08:00,1015.766845703125,10.733971,10733.971 +15418,2025-03-08T21:53:34.957309-08:00,1015.7933349609375,10.733992,10733.992 +15419,2025-03-08T21:53:45.699516-08:00,1015.766845703125,10.742207,10742.207 +15420,2025-03-08T21:53:56.432494-08:00,1015.7852172851562,10.732978,10732.978 +15421,2025-03-08T21:54:07.161982-08:00,1015.7536010742188,10.729488,10729.488 +15422,2025-03-08T21:54:17.892309-08:00,1015.778564453125,10.730327,10730.327 +15423,2025-03-08T21:54:28.630516-08:00,1015.7821655273438,10.738207,10738.207 +15424,2025-03-08T21:54:39.367311-08:00,1015.7918701171875,10.736795,10736.795 +15425,2025-03-08T21:54:50.108722-08:00,1015.7623291015625,10.741411,10741.411 +15426,2025-03-08T21:55:00.843368-08:00,1015.7804565429688,10.734646,10734.646 +15427,2025-03-08T21:55:11.571521-08:00,1015.806884765625,10.728153,10728.153 +15428,2025-03-08T21:55:22.310491-08:00,1015.805419921875,10.73897,10738.97 +15429,2025-03-08T21:55:33.045664-08:00,1015.7821655273438,10.735173,10735.173 +15430,2025-03-08T21:55:43.778773-08:00,1015.802001953125,10.733109,10733.109 +15431,2025-03-08T21:55:54.521507-08:00,1015.8153076171875,10.742734,10742.734 +15432,2025-03-08T21:56:05.248341-08:00,1015.825439453125,10.726834,10726.834 +15433,2025-03-08T21:56:15.987709-08:00,1015.8203735351562,10.739368,10739.368 +15434,2025-03-08T21:56:26.721337-08:00,1015.8336181640625,10.733628,10733.628 +15435,2025-03-08T21:56:37.466309-08:00,1015.799072265625,10.744972,10744.972 +15436,2025-03-08T21:56:48.192311-08:00,1015.8056030273438,10.726002,10726.002 +15437,2025-03-08T21:56:58.926478-08:00,1015.8038940429688,10.734167,10734.167 +15438,2025-03-08T21:57:09.665835-08:00,1015.8156127929688,10.739357,10739.357 +15439,2025-03-08T21:57:20.402517-08:00,1015.8089599609375,10.736682,10736.682 +15440,2025-03-08T21:57:31.136315-08:00,1015.8170166015625,10.733798,10733.798 +15441,2025-03-08T21:57:41.868539-08:00,1015.828857421875,10.732224,10732.224 +15442,2025-03-08T21:57:52.593309-08:00,1015.781005859375,10.72477,10724.77 +15443,2025-03-08T21:58:03.337518-08:00,1015.794189453125,10.744209,10744.209 +15444,2025-03-08T21:58:14.066408-08:00,1015.8056030273438,10.72889,10728.89 +15445,2025-03-08T21:58:24.801702-08:00,1015.8056030273438,10.735294,10735.294 +15446,2025-03-08T21:58:35.540404-08:00,1015.7711181640625,10.738702,10738.702 +15447,2025-03-08T21:58:46.272513-08:00,1015.7828369140625,10.732109,10732.109 +15448,2025-03-08T21:58:57.010312-08:00,1015.8173217773438,10.737799,10737.799 +15449,2025-03-08T21:59:07.750310-08:00,1015.7743530273438,10.739998,10739.998 +15450,2025-03-08T21:59:18.483901-08:00,1015.80078125,10.733591,10733.591 +15451,2025-03-08T21:59:29.213309-08:00,1015.8258056640625,10.729408,10729.408 +15452,2025-03-08T21:59:39.944533-08:00,1015.804443359375,10.731224,10731.224 +15453,2025-03-08T21:59:50.685573-08:00,1015.7846069335938,10.74104,10741.04 +15454,2025-03-08T22:00:01.417542-08:00,1015.802978515625,10.731969,10731.969 +15455,2025-03-08T22:00:12.150309-08:00,1015.8095092773438,10.732767,10732.767 +15456,2025-03-08T22:00:22.877325-08:00,1015.7996826171875,10.727016,10727.016 +15457,2025-03-08T22:00:33.615487-08:00,1015.8062744140625,10.738162,10738.162 +15458,2025-03-08T22:00:44.353715-08:00,1015.8179931640625,10.738228,10738.228 +15459,2025-03-08T22:00:55.080378-08:00,1015.829345703125,10.726663,10726.663 +15460,2025-03-08T22:01:05.815514-08:00,1015.8080444335938,10.735136,10735.136 +15461,2025-03-08T22:01:16.554490-08:00,1015.8065795898438,10.738976,10738.976 +15462,2025-03-08T22:01:27.296642-08:00,1015.7848510742188,10.742152,10742.152 +15463,2025-03-08T22:01:38.033339-08:00,1015.79150390625,10.736697,10736.697 +15464,2025-03-08T22:01:48.766524-08:00,1015.8311767578125,10.733185,10733.185 +15465,2025-03-08T22:01:59.506312-08:00,1015.809814453125,10.739788,10739.788 +15466,2025-03-08T22:02:10.236952-08:00,1015.8179931640625,10.73064,10730.64 +15467,2025-03-08T22:02:20.973312-08:00,1015.8082885742188,10.73636,10736.36 +15468,2025-03-08T22:02:31.720370-08:00,1015.809814453125,10.747058,10747.058 +15469,2025-03-08T22:02:42.453373-08:00,1015.8348388671875,10.733003,10733.003 +15470,2025-03-08T22:02:53.184491-08:00,1015.8049926757812,10.731118,10731.118 +15471,2025-03-08T22:03:03.920312-08:00,1015.8065795898438,10.735821,10735.821 +15472,2025-03-08T22:03:14.658310-08:00,1015.8314819335938,10.737998,10737.998 +15473,2025-03-08T22:03:25.392814-08:00,1015.8462524414062,10.734504,10734.504 +15474,2025-03-08T22:03:36.128321-08:00,1015.8300170898438,10.735507,10735.507 +15475,2025-03-08T22:03:46.865680-08:00,1015.7803344726562,10.737359,10737.359 +15476,2025-03-08T22:03:57.592312-08:00,1015.7884521484375,10.726632,10726.632 +15477,2025-03-08T22:04:08.327795-08:00,1015.8001708984375,10.735483,10735.483 +15478,2025-03-08T22:04:19.054818-08:00,1015.8200073242188,10.727023,10727.023 +15479,2025-03-08T22:04:29.787313-08:00,1015.828125,10.732495,10732.495 +15480,2025-03-08T22:04:40.521463-08:00,1015.8134155273438,10.73415,10734.15 +15481,2025-03-08T22:04:51.249510-08:00,1015.8464965820312,10.728047,10728.047 +15482,2025-03-08T22:05:01.986455-08:00,1015.8251342773438,10.736945,10736.945 +15483,2025-03-08T22:05:12.719390-08:00,1015.783935546875,10.732935,10732.935 +15484,2025-03-08T22:05:23.451012-08:00,1015.8251342773438,10.731622,10731.622 +15485,2025-03-08T22:05:34.181406-08:00,1015.8052978515625,10.730394,10730.394 +15486,2025-03-08T22:05:44.915798-08:00,1015.8236083984375,10.734392,10734.392 +15487,2025-03-08T22:05:55.642313-08:00,1015.83837890625,10.726515,10726.515 +15488,2025-03-08T22:06:06.378017-08:00,1015.8251342773438,10.735704,10735.704 +15489,2025-03-08T22:06:17.112744-08:00,1015.8104858398438,10.734727,10734.727 +15490,2025-03-08T22:06:27.840481-08:00,1015.8037719726562,10.727737,10727.737 +15491,2025-03-08T22:06:38.568655-08:00,1015.8037719726562,10.728174,10728.174 +15492,2025-03-08T22:06:49.298507-08:00,1015.8037719726562,10.729852,10729.852 +15493,2025-03-08T22:07:00.031339-08:00,1015.7990112304688,10.732832,10732.832 +15494,2025-03-08T22:07:10.764705-08:00,1015.826904296875,10.733366,10733.366 +15495,2025-03-08T22:07:21.502350-08:00,1015.80224609375,10.737645,10737.645 +15496,2025-03-08T22:07:32.237727-08:00,1015.81884765625,10.735377,10735.377 +15497,2025-03-08T22:07:42.972314-08:00,1015.80078125,10.734587,10734.587 +15498,2025-03-08T22:07:53.700208-08:00,1015.807373046875,10.727894,10727.894 +15499,2025-03-08T22:08:04.437309-08:00,1015.8536987304688,10.737101,10737.101 +15500,2025-03-08T22:08:15.174241-08:00,1015.8092041015625,10.736932,10736.932 +15501,2025-03-08T22:08:25.903312-08:00,1015.8256225585938,10.729071,10729.071 +15502,2025-03-08T22:08:36.634336-08:00,1015.830810546875,10.731024,10731.024 +15503,2025-03-08T22:08:47.368381-08:00,1015.8193969726562,10.734045,10734.045 +15504,2025-03-08T22:08:58.097720-08:00,1015.8409423828125,10.729339,10729.339 +15505,2025-03-08T22:09:08.835500-08:00,1015.8162231445312,10.73778,10737.78 +15506,2025-03-08T22:09:19.566060-08:00,1015.82470703125,10.73056,10730.56 +15507,2025-03-08T22:09:30.299310-08:00,1015.8283081054688,10.73325,10733.25 +15508,2025-03-08T22:09:41.032308-08:00,1015.8052978515625,10.732998,10732.998 +15509,2025-03-08T22:09:51.767150-08:00,1015.8387451171875,10.734842,10734.842 +15510,2025-03-08T22:10:02.500384-08:00,1015.817626953125,10.733234,10733.234 +15511,2025-03-08T22:10:13.242361-08:00,1015.8076782226562,10.741977,10741.977 +15512,2025-03-08T22:10:23.964478-08:00,1015.8045043945312,10.722117,10722.117 +15513,2025-03-08T22:10:34.705527-08:00,1015.8162231445312,10.741049,10741.049 +15514,2025-03-08T22:10:45.439519-08:00,1015.8150024414062,10.733992,10733.992 +15515,2025-03-08T22:10:56.168386-08:00,1015.8152465820312,10.728867,10728.867 +15516,2025-03-08T22:11:06.895337-08:00,1015.80859375,10.726951,10726.951 +15517,2025-03-08T22:11:17.627541-08:00,1015.822021484375,10.732204,10732.204 +15518,2025-03-08T22:11:28.366535-08:00,1015.8156127929688,10.738994,10738.994 +15519,2025-03-08T22:11:39.100531-08:00,1015.8273315429688,10.733996,10733.996 +15520,2025-03-08T22:11:49.828428-08:00,1015.8192138671875,10.727897,10727.897 +15521,2025-03-08T22:12:00.558309-08:00,1015.8275756835938,10.729881,10729.881 +15522,2025-03-08T22:12:11.297311-08:00,1015.79296875,10.739002,10739.002 +15523,2025-03-08T22:12:22.031493-08:00,1015.8082885742188,10.734182,10734.182 +15524,2025-03-08T22:12:32.765383-08:00,1015.819580078125,10.73389,10733.89 +15525,2025-03-08T22:12:43.495341-08:00,1015.8214111328125,10.729958,10729.958 +15526,2025-03-08T22:12:54.228447-08:00,1015.818359375,10.733106,10733.106 +15527,2025-03-08T22:13:04.967881-08:00,1015.8150024414062,10.739434,10739.434 +15528,2025-03-08T22:13:15.701658-08:00,1015.7852172851562,10.733777,10733.777 +15529,2025-03-08T22:13:26.431313-08:00,1015.7737426757812,10.729655,10729.655 +15530,2025-03-08T22:13:37.161483-08:00,1015.7920532226562,10.73017,10730.17 +15531,2025-03-08T22:13:47.895310-08:00,1015.7692260742188,10.733827,10733.827 +15532,2025-03-08T22:13:58.626357-08:00,1015.7626342773438,10.731047,10731.047 +15533,2025-03-08T22:14:09.360659-08:00,1015.7692260742188,10.734302,10734.302 +15534,2025-03-08T22:14:20.093387-08:00,1015.7673950195312,10.732728,10732.728 +15535,2025-03-08T22:14:30.829309-08:00,1015.7725219726562,10.735922,10735.922 +15536,2025-03-08T22:14:41.560310-08:00,1015.779052734375,10.731001,10731.001 +15537,2025-03-08T22:14:52.288724-08:00,1015.7578125,10.728414,10728.414 +15538,2025-03-08T22:15:03.019409-08:00,1015.7559204101562,10.730685,10730.685 +15539,2025-03-08T22:15:13.751493-08:00,1015.7988891601562,10.732084,10732.084 +15540,2025-03-08T22:15:24.488416-08:00,1015.7709350585938,10.736923,10736.923 +15541,2025-03-08T22:15:35.222492-08:00,1015.7776489257812,10.734076,10734.076 +15542,2025-03-08T22:15:45.953390-08:00,1015.75927734375,10.730898,10730.898 +15543,2025-03-08T22:15:56.681484-08:00,1015.7559204101562,10.728094,10728.094 +15544,2025-03-08T22:16:07.411377-08:00,1015.779052734375,10.729893,10729.893 +15545,2025-03-08T22:16:18.147307-08:00,1015.752685546875,10.73593,10735.93 +15546,2025-03-08T22:16:28.878499-08:00,1015.752685546875,10.731192,10731.192 +15547,2025-03-08T22:16:39.614514-08:00,1015.734375,10.736015,10736.015 +15548,2025-03-08T22:16:50.351312-08:00,1015.782470703125,10.736798,10736.798 +15549,2025-03-08T22:17:01.080382-08:00,1015.7362670898438,10.72907,10729.07 +15550,2025-03-08T22:17:11.814338-08:00,1015.7803955078125,10.733956,10733.956 +15551,2025-03-08T22:17:22.537551-08:00,1015.7605590820312,10.723213,10723.213 +15552,2025-03-08T22:17:33.270315-08:00,1015.7821655273438,10.732764,10732.764 +15553,2025-03-08T22:17:44.005511-08:00,1015.778564453125,10.735196,10735.196 +15554,2025-03-08T22:17:54.736309-08:00,1015.778564453125,10.730798,10730.798 +15555,2025-03-08T22:18:05.470468-08:00,1015.752197265625,10.734159,10734.159 +15556,2025-03-08T22:18:16.201313-08:00,1015.7489013671875,10.730845,10730.845 +15557,2025-03-08T22:18:26.935502-08:00,1015.7703247070312,10.734189,10734.189 +15558,2025-03-08T22:18:37.671798-08:00,1015.7654418945312,10.736296,10736.296 +15559,2025-03-08T22:18:48.395827-08:00,1015.7371826171875,10.724029,10724.029 +15560,2025-03-08T22:18:59.131999-08:00,1015.775146484375,10.736172,10736.172 +15561,2025-03-08T22:19:09.865036-08:00,1015.743896484375,10.733037,10733.037 +15562,2025-03-08T22:19:20.601312-08:00,1015.7454833984375,10.736276,10736.276 +15563,2025-03-08T22:19:31.339306-08:00,1015.7468872070312,10.737994,10737.994 +15564,2025-03-08T22:19:42.067478-08:00,1015.7238159179688,10.728172,10728.172 +15565,2025-03-08T22:19:52.805361-08:00,1015.73046875,10.737883,10737.883 +15566,2025-03-08T22:20:03.545312-08:00,1015.7400512695312,10.739951,10739.951 +15567,2025-03-08T22:20:14.269724-08:00,1015.7449340820312,10.724412,10724.412 +15568,2025-03-08T22:20:25.001630-08:00,1015.7235717773438,10.731906,10731.906 +15569,2025-03-08T22:20:35.736645-08:00,1015.7416381835938,10.735015,10735.015 +15570,2025-03-08T22:20:46.467316-08:00,1015.731689453125,10.730671,10730.671 +15571,2025-03-08T22:20:57.198726-08:00,1015.7581787109375,10.73141,10731.41 +15572,2025-03-08T22:21:07.927388-08:00,1015.7332763671875,10.728662,10728.662 +15573,2025-03-08T22:21:18.660437-08:00,1015.754638671875,10.733049,10733.049 +15574,2025-03-08T22:21:29.394047-08:00,1015.736572265625,10.73361,10733.61 +15575,2025-03-08T22:21:40.131654-08:00,1015.7462768554688,10.737607,10737.607 +15576,2025-03-08T22:21:50.856424-08:00,1015.7462768554688,10.72477,10724.77 +15577,2025-03-08T22:22:01.587391-08:00,1015.7628173828125,10.730967,10730.967 +15578,2025-03-08T22:22:12.315674-08:00,1015.7246704101562,10.728283,10728.283 +15579,2025-03-08T22:22:23.055379-08:00,1015.7246704101562,10.739705,10739.705 +15580,2025-03-08T22:22:33.781746-08:00,1015.747802734375,10.726367,10726.367 +15581,2025-03-08T22:22:44.517621-08:00,1015.7376708984375,10.735875,10735.875 +15582,2025-03-08T22:22:55.253514-08:00,1015.734375,10.735893,10735.893 +15583,2025-03-08T22:23:05.986342-08:00,1015.740966796875,10.732828,10732.828 +15584,2025-03-08T22:23:16.709526-08:00,1015.7274780273438,10.723184,10723.184 +15585,2025-03-08T22:23:27.444383-08:00,1015.7293090820312,10.734857,10734.857 +15586,2025-03-08T22:23:38.177516-08:00,1015.689697265625,10.733133,10733.133 +15587,2025-03-08T22:23:48.909539-08:00,1015.692626953125,10.732023,10732.023 +15588,2025-03-08T22:23:59.649691-08:00,1015.6941528320312,10.740152,10740.152 +15589,2025-03-08T22:24:10.389364-08:00,1015.698974609375,10.739673,10739.673 +15590,2025-03-08T22:24:21.114511-08:00,1015.6908569335938,10.725147,10725.147 +15591,2025-03-08T22:24:31.850319-08:00,1015.715576171875,10.735808,10735.808 +15592,2025-03-08T22:24:42.584402-08:00,1015.6890869140625,10.734083,10734.083 +15593,2025-03-08T22:24:53.320309-08:00,1015.703857421875,10.735907,10735.907 +15594,2025-03-08T22:25:04.051602-08:00,1015.6807250976562,10.731293,10731.293 +15595,2025-03-08T22:25:14.789624-08:00,1015.7218627929688,10.738022,10738.022 +15596,2025-03-08T22:25:25.531370-08:00,1015.68408203125,10.741746,10741.746 +15597,2025-03-08T22:25:36.264336-08:00,1015.685546875,10.732966,10732.966 +15598,2025-03-08T22:25:47.000657-08:00,1015.6687622070312,10.736321,10736.321 +15599,2025-03-08T22:25:57.728312-08:00,1015.69189453125,10.727655,10727.655 +15600,2025-03-08T22:26:08.462510-08:00,1015.6952514648438,10.734198,10734.198 +15601,2025-03-08T22:26:19.197891-08:00,1015.7036743164062,10.735381,10735.381 +15602,2025-03-08T22:26:29.922489-08:00,1015.6904907226562,10.724598,10724.598 +15603,2025-03-08T22:26:40.661100-08:00,1015.7003784179688,10.738611,10738.611 +15604,2025-03-08T22:26:51.389312-08:00,1015.6738891601562,10.728212,10728.212 +15605,2025-03-08T22:27:02.126306-08:00,1015.6769409179688,10.736994,10736.994 +15606,2025-03-08T22:27:12.863313-08:00,1015.690185546875,10.737007,10737.007 +15607,2025-03-08T22:27:23.592246-08:00,1015.6818237304688,10.728933,10728.933 +15608,2025-03-08T22:27:34.322312-08:00,1015.6950073242188,10.730066,10730.066 +15609,2025-03-08T22:27:45.055658-08:00,1015.68359375,10.733346,10733.346 +15610,2025-03-08T22:27:55.798514-08:00,1015.67041015625,10.742856,10742.856 +15611,2025-03-08T22:28:06.525510-08:00,1015.6799926757812,10.726996,10726.996 +15612,2025-03-08T22:28:17.266383-08:00,1015.6748657226562,10.740873,10740.873 +15613,2025-03-08T22:28:27.991603-08:00,1015.670166015625,10.72522,10725.22 +15614,2025-03-08T22:28:38.734035-08:00,1015.6766967773438,10.742432,10742.432 +15615,2025-03-08T22:28:49.462662-08:00,1015.6782836914062,10.728627,10728.627 +15616,2025-03-08T22:29:00.194341-08:00,1015.6665649414062,10.731679,10731.679 +15617,2025-03-08T22:29:10.936517-08:00,1015.6698608398438,10.742176,10742.176 +15618,2025-03-08T22:29:21.659811-08:00,1015.6995849609375,10.723294,10723.294 +15619,2025-03-08T22:29:32.393346-08:00,1015.6746826171875,10.733535,10733.535 +15620,2025-03-08T22:29:43.131310-08:00,1015.67138671875,10.737964,10737.964 +15621,2025-03-08T22:29:53.866309-08:00,1015.6824951171875,10.734999,10734.999 +15622,2025-03-08T22:30:04.603493-08:00,1015.6759643554688,10.737184,10737.184 +15623,2025-03-08T22:30:15.328463-08:00,1015.6509399414062,10.72497,10724.97 +15624,2025-03-08T22:30:26.066312-08:00,1015.66748046875,10.737849,10737.849 +15625,2025-03-08T22:30:36.798435-08:00,1015.6937255859375,10.732123,10732.123 +15626,2025-03-08T22:30:47.533386-08:00,1015.698486328125,10.734951,10734.951 +15627,2025-03-08T22:30:58.263319-08:00,1015.6720581054688,10.729933,10729.933 +15628,2025-03-08T22:31:09.007454-08:00,1015.6768798828125,10.744135,10744.135 +15629,2025-03-08T22:31:19.742312-08:00,1015.6882934570312,10.734858,10734.858 +15630,2025-03-08T22:31:30.470330-08:00,1015.668212890625,10.728018,10728.018 +15631,2025-03-08T22:31:41.210313-08:00,1015.656494140625,10.739983,10739.983 +15632,2025-03-08T22:31:51.944312-08:00,1015.6679077148438,10.733999,10733.999 +15633,2025-03-08T22:32:02.680532-08:00,1015.6514282226562,10.73622,10736.22 +15634,2025-03-08T22:32:13.418508-08:00,1015.6973266601562,10.737976,10737.976 +15635,2025-03-08T22:32:24.154510-08:00,1015.6741943359375,10.736002,10736.002 +15636,2025-03-08T22:32:34.891343-08:00,1015.639404296875,10.736833,10736.833 +15637,2025-03-08T22:32:45.634310-08:00,1015.6375732421875,10.742967,10742.967 +15638,2025-03-08T22:32:56.369884-08:00,1015.6685791015625,10.735574,10735.574 +15639,2025-03-08T22:33:07.110485-08:00,1015.6637573242188,10.740601,10740.601 +15640,2025-03-08T22:33:17.843312-08:00,1015.6685791015625,10.732827,10732.827 +15641,2025-03-08T22:33:28.584342-08:00,1015.64208984375,10.74103,10741.03 +15642,2025-03-08T22:33:39.310594-08:00,1015.66015625,10.726252,10726.252 +15643,2025-03-08T22:33:50.046493-08:00,1015.6980590820312,10.735899,10735.899 +15644,2025-03-08T22:34:00.784588-08:00,1015.6582641601562,10.738095,10738.095 +15645,2025-03-08T22:34:11.521382-08:00,1015.6598510742188,10.736794,10736.794 +15646,2025-03-08T22:34:22.252594-08:00,1015.66796875,10.731212,10731.212 +15647,2025-03-08T22:34:32.986528-08:00,1015.6741943359375,10.733934,10733.934 +15648,2025-03-08T22:34:43.723559-08:00,1015.6646728515625,10.737031,10737.031 +15649,2025-03-08T22:34:54.459312-08:00,1015.6911010742188,10.735753,10735.753 +15650,2025-03-08T22:35:05.196312-08:00,1015.68603515625,10.737,10737.0 +15651,2025-03-08T22:35:15.935488-08:00,1015.66796875,10.739176,10739.176 +15652,2025-03-08T22:35:26.673488-08:00,1015.6893920898438,10.738,10738.0 +15653,2025-03-08T22:35:37.404452-08:00,1015.7040405273438,10.730964,10730.964 +15654,2025-03-08T22:35:48.148372-08:00,1015.6760864257812,10.74392,10743.92 +15655,2025-03-08T22:35:58.877515-08:00,1015.662841796875,10.729143,10729.143 +15656,2025-03-08T22:36:09.618623-08:00,1015.6727905273438,10.741108,10741.108 +15657,2025-03-08T22:36:20.350433-08:00,1015.6941528320312,10.73181,10731.81 +15658,2025-03-08T22:36:31.092436-08:00,1015.6727905273438,10.742003,10742.003 +15659,2025-03-08T22:36:41.825312-08:00,1015.6610717773438,10.732876,10732.876 +15660,2025-03-08T22:36:52.559548-08:00,1015.67578125,10.734236,10734.236 +15661,2025-03-08T22:37:03.287340-08:00,1015.6661987304688,10.727792,10727.792 +15662,2025-03-08T22:37:14.030312-08:00,1015.7022705078125,10.742972,10742.972 +15663,2025-03-08T22:37:24.768537-08:00,1015.6890869140625,10.738225,10738.225 +15664,2025-03-08T22:37:35.496346-08:00,1015.6610717773438,10.727809,10727.809 +15665,2025-03-08T22:37:46.236479-08:00,1015.6624755859375,10.740133,10740.133 +15666,2025-03-08T22:37:56.971549-08:00,1015.6941528320312,10.73507,10735.07 +15667,2025-03-08T22:38:07.712316-08:00,1015.6412353515625,10.740767,10740.767 +15668,2025-03-08T22:38:18.448602-08:00,1015.680908203125,10.736286,10736.286 +15669,2025-03-08T22:38:29.184292-08:00,1015.6890869140625,10.73569,10735.69 +15670,2025-03-08T22:38:39.914312-08:00,1015.6890869140625,10.73002,10730.02 +15671,2025-03-08T22:38:50.654307-08:00,1015.6956176757812,10.739995,10739.995 +15672,2025-03-08T22:39:01.393520-08:00,1015.669189453125,10.739213,10739.213 +15673,2025-03-08T22:39:12.126307-08:00,1015.680908203125,10.732787,10732.787 +15674,2025-03-08T22:39:22.862701-08:00,1015.6661987304688,10.736394,10736.394 +15675,2025-03-08T22:39:33.594310-08:00,1015.6529541015625,10.731609,10731.609 +15676,2025-03-08T22:39:44.328527-08:00,1015.682373046875,10.734217,10734.217 +15677,2025-03-08T22:39:55.056568-08:00,1015.6661987304688,10.728041,10728.041 +15678,2025-03-08T22:40:05.787309-08:00,1015.680908203125,10.730741,10730.741 +15679,2025-03-08T22:40:16.521310-08:00,1015.6941528320312,10.734001,10734.001 +15680,2025-03-08T22:40:27.257317-08:00,1015.68603515625,10.736007,10736.007 +15681,2025-03-08T22:40:37.988304-08:00,1015.6775512695312,10.730987,10730.987 +15682,2025-03-08T22:40:48.725312-08:00,1015.6661987304688,10.737008,10737.008 +15683,2025-03-08T22:40:59.459310-08:00,1015.65625,10.733998,10733.998 +15684,2025-03-08T22:41:10.196648-08:00,1015.6760864257812,10.737338,10737.338 +15685,2025-03-08T22:41:20.933499-08:00,1015.71728515625,10.736851,10736.851 +15686,2025-03-08T22:41:31.673071-08:00,1015.6974487304688,10.739572,10739.572 +15687,2025-03-08T22:41:42.410309-08:00,1015.661376953125,10.737238,10737.238 +15688,2025-03-08T22:41:53.149376-08:00,1015.6959228515625,10.739067,10739.067 +15689,2025-03-08T22:42:03.877420-08:00,1015.6746215820312,10.728044,10728.044 +15690,2025-03-08T22:42:14.621520-08:00,1015.6779174804688,10.7441,10744.1 +15691,2025-03-08T22:42:25.353486-08:00,1015.68603515625,10.731966,10731.966 +15692,2025-03-08T22:42:36.089309-08:00,1015.6779174804688,10.735823,10735.823 +15693,2025-03-08T22:42:46.818496-08:00,1015.6944580078125,10.729187,10729.187 +15694,2025-03-08T22:42:57.554010-08:00,1015.6793823242188,10.735514,10735.514 +15695,2025-03-08T22:43:08.285312-08:00,1015.6779174804688,10.731302,10731.302 +15696,2025-03-08T22:43:19.019387-08:00,1015.6580200195312,10.734075,10734.075 +15697,2025-03-08T22:43:29.757425-08:00,1015.6779174804688,10.738038,10738.038 +15698,2025-03-08T22:43:40.488407-08:00,1015.6712646484375,10.730982,10730.982 +15699,2025-03-08T22:43:51.225458-08:00,1015.6892700195312,10.737051,10737.051 +15700,2025-03-08T22:44:01.958308-08:00,1015.6808471679688,10.73285,10732.85 +15701,2025-03-08T22:44:12.697489-08:00,1015.6741943359375,10.739181,10739.181 +15702,2025-03-08T22:44:23.432183-08:00,1015.704345703125,10.734694,10734.694 +15703,2025-03-08T22:44:34.160312-08:00,1015.6610107421875,10.728129,10728.129 +15704,2025-03-08T22:44:44.895304-08:00,1015.6331176757812,10.734992,10734.992 +15705,2025-03-08T22:44:55.630490-08:00,1015.6543579101562,10.735186,10735.186 +15706,2025-03-08T22:45:06.352517-08:00,1015.6660766601562,10.722027,10722.027 +15707,2025-03-08T22:45:17.087316-08:00,1015.643310546875,10.734799,10734.799 +15708,2025-03-08T22:45:27.820665-08:00,1015.6727905273438,10.733349,10733.349 +15709,2025-03-08T22:45:38.559652-08:00,1015.64990234375,10.738987,10738.987 +15710,2025-03-08T22:45:49.294306-08:00,1015.63671875,10.734654,10734.654 +15711,2025-03-08T22:46:00.021384-08:00,1015.6595458984375,10.727078,10727.078 +15712,2025-03-08T22:46:10.759690-08:00,1015.6448364257812,10.738306,10738.306 +15713,2025-03-08T22:46:21.486310-08:00,1015.6580200195312,10.72662,10726.62 +15714,2025-03-08T22:46:32.224598-08:00,1015.643310546875,10.738288,10738.288 +15715,2025-03-08T22:46:42.956532-08:00,1015.643310546875,10.731934,10731.934 +15716,2025-03-08T22:46:53.694490-08:00,1015.6201782226562,10.737958,10737.958 +15717,2025-03-08T22:47:04.426310-08:00,1015.6697387695312,10.73182,10731.82 +15718,2025-03-08T22:47:15.152521-08:00,1015.6531982421875,10.726211,10726.211 +15719,2025-03-08T22:47:25.888491-08:00,1015.6234130859375,10.73597,10735.97 +15720,2025-03-08T22:47:36.623599-08:00,1015.6234130859375,10.735108,10735.108 +15721,2025-03-08T22:47:47.358989-08:00,1015.673095703125,10.73539,10735.39 +15722,2025-03-08T22:47:58.096719-08:00,1015.63671875,10.73773,10737.73 +15723,2025-03-08T22:48:08.826487-08:00,1015.6300048828125,10.729768,10729.768 +15724,2025-03-08T22:48:19.567360-08:00,1015.6286010742188,10.740873,10740.873 +15725,2025-03-08T22:48:30.303312-08:00,1015.6351318359375,10.735952,10735.952 +15726,2025-03-08T22:48:41.034312-08:00,1015.643310546875,10.731,10731.0 +15727,2025-03-08T22:48:51.760937-08:00,1015.6234130859375,10.726625,10726.625 +15728,2025-03-08T22:49:02.496047-08:00,1015.63671875,10.73511,10735.11 +15729,2025-03-08T22:49:13.232493-08:00,1015.6300048828125,10.736446,10736.446 +15730,2025-03-08T22:49:23.958722-08:00,1015.6270141601562,10.726229,10726.229 +15731,2025-03-08T22:49:34.700493-08:00,1015.6087646484375,10.741771,10741.771 +15732,2025-03-08T22:49:45.431515-08:00,1015.6152954101562,10.731022,10731.022 +15733,2025-03-08T22:49:56.160327-08:00,1015.6006469726562,10.728812,10728.812 +15734,2025-03-08T22:50:06.893505-08:00,1015.6054077148438,10.733178,10733.178 +15735,2025-03-08T22:50:17.633395-08:00,1015.6185913085938,10.73989,10739.89 +15736,2025-03-08T22:50:28.365775-08:00,1015.5973510742188,10.73238,10732.38 +15737,2025-03-08T22:50:39.098651-08:00,1015.6104736328125,10.732876,10732.876 +15738,2025-03-08T22:50:49.821313-08:00,1015.6171875,10.722662,10722.662 +15739,2025-03-08T22:51:00.552306-08:00,1015.6090698242188,10.730993,10730.993 +15740,2025-03-08T22:51:11.292312-08:00,1015.5825805664062,10.740006,10740.006 +15741,2025-03-08T22:51:22.024499-08:00,1015.5892333984375,10.732187,10732.187 +15742,2025-03-08T22:51:32.759341-08:00,1015.5726318359375,10.734842,10734.842 +15743,2025-03-08T22:51:43.497440-08:00,1015.593994140625,10.738099,10738.099 +15744,2025-03-08T22:51:54.229485-08:00,1015.5560913085938,10.732045,10732.045 +15745,2025-03-08T22:52:04.963509-08:00,1015.6123657226562,10.734024,10734.024 +15746,2025-03-08T22:52:15.698324-08:00,1015.5777587890625,10.734815,10734.815 +15747,2025-03-08T22:52:26.453773-08:00,1015.5957641601562,10.755449,10755.449 +15748,2025-03-08T22:52:37.185986-08:00,1015.5957641601562,10.732213,10732.213 +15749,2025-03-08T22:52:47.919772-08:00,1015.6240844726562,10.733786,10733.786 +15750,2025-03-08T22:52:58.650828-08:00,1015.5795288085938,10.731056,10731.056 +15751,2025-03-08T22:53:09.383006-08:00,1015.5795288085938,10.732178,10732.178 +15752,2025-03-08T22:53:20.122955-08:00,1015.5515747070312,10.739949,10739.949 +15753,2025-03-08T22:53:30.852770-08:00,1015.586181640625,10.729815,10729.815 +15754,2025-03-08T22:53:41.578775-08:00,1015.5795288085938,10.726005,10726.005 +15755,2025-03-08T22:53:52.311458-08:00,1015.5828247070312,10.732683,10732.683 +15756,2025-03-08T22:54:03.049886-08:00,1015.56298828125,10.738428,10738.428 +15757,2025-03-08T22:54:13.780063-08:00,1015.5928344726562,10.730177,10730.177 +15758,2025-03-08T22:54:24.513251-08:00,1015.553466796875,10.733188,10733.188 +15759,2025-03-08T22:54:35.241994-08:00,1015.5582275390625,10.728743,10728.743 +15760,2025-03-08T22:54:45.976879-08:00,1015.6011962890625,10.734885,10734.885 +15761,2025-03-08T22:54:56.710776-08:00,1015.5582275390625,10.733897,10733.897 +15762,2025-03-08T22:55:07.438201-08:00,1015.5750122070312,10.727425,10727.425 +15763,2025-03-08T22:55:18.168897-08:00,1015.5948486328125,10.730696,10730.696 +15764,2025-03-08T22:55:28.906950-08:00,1015.5665893554688,10.738053,10738.053 +15765,2025-03-08T22:55:39.628398-08:00,1015.5731811523438,10.721448,10721.448 +15766,2025-03-08T22:55:50.359978-08:00,1015.5570068359375,10.73158,10731.58 +15767,2025-03-08T22:56:01.096776-08:00,1015.5665893554688,10.736798,10736.798 +15768,2025-03-08T22:56:11.820770-08:00,1015.5834350585938,10.723994,10723.994 +15769,2025-03-08T22:56:22.549771-08:00,1015.565185546875,10.729001,10729.001 +15770,2025-03-08T22:56:33.286686-08:00,1015.5850219726562,10.736915,10736.915 +15771,2025-03-08T22:56:44.015544-08:00,1015.5635986328125,10.728858,10728.858 +15772,2025-03-08T22:56:54.754771-08:00,1015.5570068359375,10.739227,10739.227 +15773,2025-03-08T22:57:05.476833-08:00,1015.5504150390625,10.722062,10722.062 +15774,2025-03-08T22:57:16.210942-08:00,1015.561767578125,10.734109,10734.109 +15775,2025-03-08T22:57:26.941067-08:00,1015.548583984375,10.730125,10730.125 +15776,2025-03-08T22:57:37.669965-08:00,1015.548583984375,10.728898,10728.898 +15777,2025-03-08T22:57:48.400953-08:00,1015.603271484375,10.730988,10730.988 +15778,2025-03-08T22:57:59.133931-08:00,1015.51904296875,10.732978,10732.978 +15779,2025-03-08T22:58:09.860777-08:00,1015.5801391601562,10.726846,10726.846 +15780,2025-03-08T22:58:20.586553-08:00,1015.573486328125,10.725776,10725.776 +15781,2025-03-08T22:58:31.324772-08:00,1015.5882568359375,10.738219,10738.219 +15782,2025-03-08T22:58:42.053187-08:00,1015.572021484375,10.728415,10728.415 +15783,2025-03-08T22:58:52.788890-08:00,1015.57861328125,10.735703,10735.703 +15784,2025-03-08T22:59:03.514220-08:00,1015.5569458007812,10.72533,10725.33 +15785,2025-03-08T22:59:14.244772-08:00,1015.572021484375,10.730552,10730.552 +15786,2025-03-08T22:59:24.966865-08:00,1015.57861328125,10.722093,10722.093 +15787,2025-03-08T22:59:35.702969-08:00,1015.60986328125,10.736104,10736.104 +15788,2025-03-08T22:59:46.432977-08:00,1015.5834350585938,10.730008,10730.008 +15789,2025-03-08T22:59:57.155773-08:00,1015.6363525390625,10.722796,10722.796 +15790,2025-03-08T23:00:07.887964-08:00,1015.6083374023438,10.732191,10732.191 +15791,2025-03-08T23:00:18.624777-08:00,1015.62158203125,10.736813,10736.813 +15792,2025-03-08T23:00:29.354471-08:00,1015.59033203125,10.729694,10729.694 +15793,2025-03-08T23:00:40.084776-08:00,1015.628173828125,10.730305,10730.305 +15794,2025-03-08T23:00:50.819778-08:00,1015.600341796875,10.735002,10735.002 +15795,2025-03-08T23:01:01.545060-08:00,1015.6054077148438,10.725282,10725.282 +15796,2025-03-08T23:01:12.278871-08:00,1015.5770874023438,10.733811,10733.811 +15797,2025-03-08T23:01:23.001850-08:00,1015.60205078125,10.722979,10722.979 +15798,2025-03-08T23:01:33.734313-08:00,1015.596923828125,10.732463,10732.463 +15799,2025-03-08T23:01:44.468778-08:00,1015.6218872070312,10.734465,10734.465 +15800,2025-03-08T23:01:55.201976-08:00,1015.5888061523438,10.733198,10733.198 +15801,2025-03-08T23:02:05.926964-08:00,1015.61376953125,10.724988,10724.988 +15802,2025-03-08T23:02:16.660782-08:00,1015.595458984375,10.733818,10733.818 +15803,2025-03-08T23:02:27.394768-08:00,1015.607177734375,10.733986,10733.986 +15804,2025-03-08T23:02:38.116951-08:00,1015.6052856445312,10.722183,10722.183 +15805,2025-03-08T23:02:48.853773-08:00,1015.5873413085938,10.736822,10736.822 +15806,2025-03-08T23:02:59.578976-08:00,1015.5840454101562,10.725203,10725.203 +15807,2025-03-08T23:03:10.303775-08:00,1015.6170043945312,10.724799,10724.799 +15808,2025-03-08T23:03:21.032988-08:00,1015.6038818359375,10.729213,10729.213 +15809,2025-03-08T23:03:31.758948-08:00,1015.589111328125,10.72596,10725.96 +15810,2025-03-08T23:03:42.491772-08:00,1015.589111328125,10.732824,10732.824 +15811,2025-03-08T23:03:53.222772-08:00,1015.5939331054688,10.731,10731.0 +15812,2025-03-08T23:04:03.956619-08:00,1015.5725708007812,10.733847,10733.847 +15813,2025-03-08T23:04:14.684924-08:00,1015.5857543945312,10.728305,10728.305 +15814,2025-03-08T23:04:25.417987-08:00,1015.5842895507812,10.733063,10733.063 +15815,2025-03-08T23:04:36.139961-08:00,1015.5728149414062,10.721974,10721.974 +15816,2025-03-08T23:04:46.869803-08:00,1015.5912475585938,10.729842,10729.842 +15817,2025-03-08T23:04:57.604857-08:00,1015.6091918945312,10.735054,10735.054 +15818,2025-03-08T23:05:08.338969-08:00,1015.58642578125,10.734112,10734.112 +15819,2025-03-08T23:05:19.067807-08:00,1015.6043701171875,10.728838,10728.838 +15820,2025-03-08T23:05:29.797774-08:00,1015.5650024414062,10.729967,10729.967 +15821,2025-03-08T23:05:40.519434-08:00,1015.58154296875,10.72166,10721.66 +15822,2025-03-08T23:05:51.254773-08:00,1015.5718994140625,10.735339,10735.339 +15823,2025-03-08T23:06:01.987977-08:00,1015.58544921875,10.733204,10733.204 +15824,2025-03-08T23:06:12.714934-08:00,1015.555908203125,10.726957,10726.957 +15825,2025-03-08T23:06:23.455053-08:00,1015.5823364257812,10.740119,10740.119 +15826,2025-03-08T23:06:34.184775-08:00,1015.5994262695312,10.729722,10729.722 +15827,2025-03-08T23:06:44.910851-08:00,1015.5714111328125,10.726076,10726.076 +15828,2025-03-08T23:06:55.650990-08:00,1015.5532836914062,10.740139,10740.139 +15829,2025-03-08T23:07:06.382851-08:00,1015.571533203125,10.731861,10731.861 +15830,2025-03-08T23:07:17.116787-08:00,1015.5586547851562,10.733936,10733.936 +15831,2025-03-08T23:07:27.847955-08:00,1015.55078125,10.731168,10731.168 +15832,2025-03-08T23:07:38.573773-08:00,1015.5426635742188,10.725818,10725.818 +15833,2025-03-08T23:07:49.300778-08:00,1015.5657958984375,10.727005,10727.005 +15834,2025-03-08T23:08:00.032558-08:00,1015.5332641601562,10.73178,10731.78 +15835,2025-03-08T23:08:10.759844-08:00,1015.5364990234375,10.727286,10727.286 +15836,2025-03-08T23:08:21.498984-08:00,1015.5565795898438,10.73914,10739.14 +15837,2025-03-08T23:08:32.232446-08:00,1015.583251953125,10.733462,10733.462 +15838,2025-03-08T23:08:42.965510-08:00,1015.5618896484375,10.733064,10733.064 +15839,2025-03-08T23:08:53.693775-08:00,1015.5918579101562,10.728265,10728.265 +15840,2025-03-08T23:09:04.426018-08:00,1015.545654296875,10.732243,10732.243 +15841,2025-03-08T23:09:15.152773-08:00,1015.5505981445312,10.726755,10726.755 +15842,2025-03-08T23:09:25.883777-08:00,1015.55908203125,10.731004,10731.004 +15843,2025-03-08T23:09:36.610971-08:00,1015.5314331054688,10.727194,10727.194 +15844,2025-03-08T23:09:47.345772-08:00,1015.5279541015625,10.734801,10734.801 +15845,2025-03-08T23:09:58.072834-08:00,1015.5331420898438,10.727062,10727.062 +15846,2025-03-08T23:10:08.811278-08:00,1015.5165405273438,10.738444,10738.444 +15847,2025-03-08T23:10:19.537835-08:00,1015.51318359375,10.726557,10726.557 +15848,2025-03-08T23:10:30.269833-08:00,1015.51171875,10.731998,10731.998 +15849,2025-03-08T23:10:40.993956-08:00,1015.530029296875,10.724123,10724.123 +15850,2025-03-08T23:10:51.723496-08:00,1015.5432739257812,10.72954,10729.54 +15851,2025-03-08T23:11:02.454010-08:00,1015.544677734375,10.730514,10730.514 +15852,2025-03-08T23:11:13.186979-08:00,1015.5515747070312,10.732969,10732.969 +15853,2025-03-08T23:11:23.916775-08:00,1015.53173828125,10.729796,10729.796 +15854,2025-03-08T23:11:34.648829-08:00,1015.525146484375,10.732054,10732.054 +15855,2025-03-08T23:11:45.383327-08:00,1015.53173828125,10.734498,10734.498 +15856,2025-03-08T23:11:56.105978-08:00,1015.5170288085938,10.722651,10722.651 +15857,2025-03-08T23:12:06.834847-08:00,1015.4971923828125,10.728869,10728.869 +15858,2025-03-08T23:12:17.567164-08:00,1015.510498046875,10.732317,10732.317 +15859,2025-03-08T23:12:28.297773-08:00,1015.5170288085938,10.730609,10730.609 +15860,2025-03-08T23:12:39.038022-08:00,1015.5200805664062,10.740249,10740.249 +15861,2025-03-08T23:12:49.763616-08:00,1015.510498046875,10.725594,10725.594 +15862,2025-03-08T23:13:00.494837-08:00,1015.498779296875,10.731221,10731.221 +15863,2025-03-08T23:13:11.225839-08:00,1015.511962890625,10.731002,10731.002 +15864,2025-03-08T23:13:21.949943-08:00,1015.4935913085938,10.724104,10724.104 +15865,2025-03-08T23:13:32.682767-08:00,1015.513427734375,10.732824,10732.824 +15866,2025-03-08T23:13:43.416777-08:00,1015.5215454101562,10.73401,10734.01 +15867,2025-03-08T23:13:54.155977-08:00,1015.501708984375,10.7392,10739.2 +15868,2025-03-08T23:14:04.884946-08:00,1015.4984130859375,10.728969,10728.969 +15869,2025-03-08T23:14:15.618981-08:00,1015.5050659179688,10.734035,10734.035 +15870,2025-03-08T23:14:26.353801-08:00,1015.5264282226562,10.73482,10734.82 +15871,2025-03-08T23:14:37.080942-08:00,1015.5198364257812,10.727141,10727.141 +15872,2025-03-08T23:14:47.811772-08:00,1015.5165405273438,10.73083,10730.83 +15873,2025-03-08T23:14:58.540812-08:00,1015.5165405273438,10.72904,10729.04 +15874,2025-03-08T23:15:09.276647-08:00,1015.4849853515625,10.735835,10735.835 +15875,2025-03-08T23:15:19.999771-08:00,1015.4916381835938,10.723124,10723.124 +15876,2025-03-08T23:15:30.738769-08:00,1015.4832763671875,10.738998,10738.998 +15877,2025-03-08T23:15:41.468789-08:00,1015.485107421875,10.73002,10730.02 +15878,2025-03-08T23:15:52.199141-08:00,1015.5013427734375,10.730352,10730.352 +15879,2025-03-08T23:16:02.928774-08:00,1015.51123046875,10.729633,10729.633 +15880,2025-03-08T23:16:13.659981-08:00,1015.498046875,10.731207,10731.207 +15881,2025-03-08T23:16:24.385771-08:00,1015.5061645507812,10.72579,10725.79 +15882,2025-03-08T23:16:35.110797-08:00,1015.4896850585938,10.725026,10725.026 +15883,2025-03-08T23:16:45.844168-08:00,1015.483154296875,10.733371,10733.371 +15884,2025-03-08T23:16:56.571772-08:00,1015.4681396484375,10.727604,10727.604 +15885,2025-03-08T23:17:07.301958-08:00,1015.4795532226562,10.730186,10730.186 +15886,2025-03-08T23:17:18.036963-08:00,1015.4645385742188,10.735005,10735.005 +15887,2025-03-08T23:17:28.761776-08:00,1015.4861450195312,10.724813,10724.813 +15888,2025-03-08T23:17:39.486003-08:00,1015.4891967773438,10.724227,10724.227 +15889,2025-03-08T23:17:50.224072-08:00,1015.4678344726562,10.738069,10738.069 +15890,2025-03-08T23:18:00.945817-08:00,1015.4528198242188,10.721745,10721.745 +15891,2025-03-08T23:18:11.679091-08:00,1015.4462280273438,10.733274,10733.274 +15892,2025-03-08T23:18:22.404775-08:00,1015.4690551757812,10.725684,10725.684 +15893,2025-03-08T23:18:33.137769-08:00,1015.4774780273438,10.732994,10732.994 +15894,2025-03-08T23:18:43.868786-08:00,1015.4757690429688,10.731017,10731.017 +15895,2025-03-08T23:18:54.595177-08:00,1015.48388671875,10.726391,10726.391 +15896,2025-03-08T23:19:05.319203-08:00,1015.4442138671875,10.724026,10724.026 +15897,2025-03-08T23:19:16.047520-08:00,1015.47216796875,10.728317,10728.317 +15898,2025-03-08T23:19:26.784943-08:00,1015.4607543945312,10.737423,10737.423 +15899,2025-03-08T23:19:37.513778-08:00,1015.4506225585938,10.728835,10728.835 +15900,2025-03-08T23:19:48.235021-08:00,1015.4671020507812,10.721243,10721.243 +15901,2025-03-08T23:19:58.965795-08:00,1015.4671020507812,10.730774,10730.774 +15902,2025-03-08T23:20:09.694552-08:00,1015.4620361328125,10.728757,10728.757 +15903,2025-03-08T23:20:20.418399-08:00,1015.4568481445312,10.723847,10723.847 +15904,2025-03-08T23:20:31.146805-08:00,1015.4551391601562,10.728406,10728.406 +15905,2025-03-08T23:20:41.876504-08:00,1015.4683837890625,10.729699,10729.699 +15906,2025-03-08T23:20:52.608777-08:00,1015.4437255859375,10.732273,10732.273 +15907,2025-03-08T23:21:03.330053-08:00,1015.4600219726562,10.721276,10721.276 +15908,2025-03-08T23:21:14.056978-08:00,1015.4617919921875,10.726925,10726.925 +15909,2025-03-08T23:21:24.791998-08:00,1015.4221801757812,10.73502,10735.02 +15910,2025-03-08T23:21:35.518469-08:00,1015.4581909179688,10.726471,10726.471 +15911,2025-03-08T23:21:46.246804-08:00,1015.43359375,10.728335,10728.335 +15912,2025-03-08T23:21:56.978988-08:00,1015.4483032226562,10.732184,10732.184 +15913,2025-03-08T23:22:07.702302-08:00,1015.4384155273438,10.723314,10723.314 +15914,2025-03-08T23:22:18.437775-08:00,1015.4664306640625,10.735473,10735.473 +15915,2025-03-08T23:22:29.161993-08:00,1015.4480590820312,10.724218,10724.218 +15916,2025-03-08T23:22:39.900942-08:00,1015.4561767578125,10.738949,10738.949 +15917,2025-03-08T23:22:50.623983-08:00,1015.4609985351562,10.723041,10723.041 +15918,2025-03-08T23:23:01.358841-08:00,1015.4676513671875,10.734858,10734.858 +15919,2025-03-08T23:23:12.082982-08:00,1015.470947265625,10.724141,10724.141 +15920,2025-03-08T23:23:22.809895-08:00,1015.4657592773438,10.726913,10726.913 +15921,2025-03-08T23:23:33.549775-08:00,1015.48095703125,10.73988,10739.88 +15922,2025-03-08T23:23:44.276336-08:00,1015.4743041992188,10.726561,10726.561 +15923,2025-03-08T23:23:55.007840-08:00,1015.4640502929688,10.731504,10731.504 +15924,2025-03-08T23:24:05.736005-08:00,1015.4706420898438,10.728165,10728.165 +15925,2025-03-08T23:24:16.466290-08:00,1015.4673461914062,10.730285,10730.285 +15926,2025-03-08T23:24:27.194770-08:00,1015.4953002929688,10.72848,10728.48 +15927,2025-03-08T23:24:37.929775-08:00,1015.4373168945312,10.735005,10735.005 +15928,2025-03-08T23:24:48.652133-08:00,1015.4935913085938,10.722358,10722.358 +15929,2025-03-08T23:24:59.392022-08:00,1015.4802856445312,10.739889,10739.889 +15930,2025-03-08T23:25:10.120191-08:00,1015.5332641601562,10.728169,10728.169 +15931,2025-03-08T23:25:20.838800-08:00,1015.487060546875,10.718609,10718.609 +15932,2025-03-08T23:25:31.575839-08:00,1015.4935913085938,10.737039,10737.039 +15933,2025-03-08T23:25:42.302927-08:00,1015.4902954101562,10.727088,10727.088 +15934,2025-03-08T23:25:53.036859-08:00,1015.4885864257812,10.733932,10733.932 +15935,2025-03-08T23:26:03.768772-08:00,1015.46875,10.731913,10731.913 +15936,2025-03-08T23:26:14.495518-08:00,1015.4933471679688,10.726746,10726.746 +15937,2025-03-08T23:26:25.227778-08:00,1015.4783325195312,10.73226,10732.26 +15938,2025-03-08T23:26:35.965771-08:00,1015.4651489257812,10.737993,10737.993 +15939,2025-03-08T23:26:46.698849-08:00,1015.4781494140625,10.733078,10733.078 +15940,2025-03-08T23:26:57.433938-08:00,1015.463134765625,10.735089,10735.089 +15941,2025-03-08T23:27:08.164885-08:00,1015.4664306640625,10.730947,10730.947 +15942,2025-03-08T23:27:18.900771-08:00,1015.4859619140625,10.735886,10735.886 +15943,2025-03-08T23:27:29.633016-08:00,1015.484130859375,10.732245,10732.245 +15944,2025-03-08T23:27:40.358884-08:00,1015.4657592773438,10.725868,10725.868 +15945,2025-03-08T23:27:51.089973-08:00,1015.4706420898438,10.731089,10731.089 +15946,2025-03-08T23:28:01.827777-08:00,1015.4673461914062,10.737804,10737.804 +15947,2025-03-08T23:28:12.554566-08:00,1015.462158203125,10.726789,10726.789 +15948,2025-03-08T23:28:23.289822-08:00,1015.4802856445312,10.735256,10735.256 +15949,2025-03-08T23:28:34.021984-08:00,1015.469970703125,10.732162,10732.162 +15950,2025-03-08T23:28:44.757219-08:00,1015.46826171875,10.735235,10735.235 +15951,2025-03-08T23:28:55.487971-08:00,1015.4502563476562,10.730752,10730.752 +15952,2025-03-08T23:29:06.216769-08:00,1015.46826171875,10.728798,10728.798 +15953,2025-03-08T23:29:16.951127-08:00,1015.4432983398438,10.734358,10734.358 +15954,2025-03-08T23:29:27.675772-08:00,1015.438232421875,10.724645,10724.645 +15955,2025-03-08T23:29:38.414230-08:00,1015.4268188476562,10.738458,10738.458 +15956,2025-03-08T23:29:49.143963-08:00,1015.4595336914062,10.729733,10729.733 +15957,2025-03-08T23:29:59.869775-08:00,1015.4757690429688,10.725812,10725.812 +15958,2025-03-08T23:30:10.608773-08:00,1015.42138671875,10.738998,10738.998 +15959,2025-03-08T23:30:21.335964-08:00,1015.4427490234375,10.727191,10727.191 +15960,2025-03-08T23:30:32.074026-08:00,1015.4393920898438,10.738062,10738.062 +15961,2025-03-08T23:30:42.804984-08:00,1015.447509765625,10.730958,10730.958 +15962,2025-03-08T23:30:53.533798-08:00,1015.45751953125,10.728814,10728.814 +15963,2025-03-08T23:31:04.273216-08:00,1015.4442138671875,10.739418,10739.418 +15964,2025-03-08T23:31:15.000768-08:00,1015.4442138671875,10.727552,10727.552 +15965,2025-03-08T23:31:25.729312-08:00,1015.4391479492188,10.728544,10728.544 +15966,2025-03-08T23:31:36.465843-08:00,1015.4424438476562,10.736531,10736.531 +15967,2025-03-08T23:31:47.198975-08:00,1015.422607421875,10.733132,10733.132 +15968,2025-03-08T23:31:57.922782-08:00,1015.46044921875,10.723807,10723.807 +15969,2025-03-08T23:32:08.663777-08:00,1015.4788208007812,10.740995,10740.995 +15970,2025-03-08T23:32:19.392955-08:00,1015.4751586914062,10.729178,10729.178 +15971,2025-03-08T23:32:30.123797-08:00,1015.455322265625,10.730842,10730.842 +15972,2025-03-08T23:32:40.860772-08:00,1015.4767456054688,10.736975,10736.975 +15973,2025-03-08T23:32:51.596776-08:00,1015.443603515625,10.736004,10736.004 +15974,2025-03-08T23:33:02.324626-08:00,1015.46533203125,10.72785,10727.85 +15975,2025-03-08T23:33:13.057847-08:00,1015.4388427734375,10.733221,10733.221 +15976,2025-03-08T23:33:23.782374-08:00,1015.4734497070312,10.724527,10724.527 +15977,2025-03-08T23:33:34.516638-08:00,1015.4255981445312,10.734264,10734.264 +15978,2025-03-08T23:33:45.245769-08:00,1015.466796875,10.729131,10729.131 +15979,2025-03-08T23:33:55.980775-08:00,1015.466796875,10.735006,10735.006 +15980,2025-03-08T23:34:06.714038-08:00,1015.466796875,10.733263,10733.263 +15981,2025-03-08T23:34:17.443506-08:00,1015.45361328125,10.729468,10729.468 +15982,2025-03-08T23:34:28.174861-08:00,1015.4469604492188,10.731355,10731.355 +15983,2025-03-08T23:34:38.914465-08:00,1015.466796875,10.739604,10739.604 +15984,2025-03-08T23:34:49.646892-08:00,1015.4520263671875,10.732427,10732.427 +15985,2025-03-08T23:35:00.374775-08:00,1015.4403076171875,10.727883,10727.883 +15986,2025-03-08T23:35:11.108848-08:00,1015.4550170898438,10.734073,10734.073 +15987,2025-03-08T23:35:21.845962-08:00,1015.4072875976562,10.737114,10737.114 +15988,2025-03-08T23:35:32.577773-08:00,1015.415283203125,10.731811,10731.811 +15989,2025-03-08T23:35:43.321020-08:00,1015.4220581054688,10.743247,10743.247 +15990,2025-03-08T23:35:54.049991-08:00,1015.4039306640625,10.728971,10728.971 +15991,2025-03-08T23:36:04.782154-08:00,1015.4072875976562,10.732163,10732.163 +15992,2025-03-08T23:36:15.512784-08:00,1015.4072875976562,10.73063,10730.63 +15993,2025-03-08T23:36:26.244987-08:00,1015.3807983398438,10.732203,10732.203 +15994,2025-03-08T23:36:36.983773-08:00,1015.4138793945312,10.738786,10738.786 +15995,2025-03-08T23:36:47.712008-08:00,1015.4072875976562,10.728235,10728.235 +15996,2025-03-08T23:36:58.449772-08:00,1015.3609619140625,10.737764,10737.764 +15997,2025-03-08T23:37:09.176362-08:00,1015.3726806640625,10.72659,10726.59 +15998,2025-03-08T23:37:19.909270-08:00,1015.3462524414062,10.732908,10732.908 +15999,2025-03-08T23:37:30.641070-08:00,1015.3742065429688,10.7318,10731.8 +16000,2025-03-08T23:37:41.369776-08:00,1015.3510131835938,10.728706,10728.706 +16001,2025-03-08T23:37:52.104166-08:00,1015.352783203125,10.73439,10734.39 +16002,2025-03-08T23:38:02.832773-08:00,1015.3443603515625,10.728607,10728.607 +16003,2025-03-08T23:38:13.571196-08:00,1015.3641967773438,10.738423,10738.423 +16004,2025-03-08T23:38:24.304026-08:00,1015.3428955078125,10.73283,10732.83 +16005,2025-03-08T23:38:35.037692-08:00,1015.369384765625,10.733666,10733.666 +16006,2025-03-08T23:38:45.762773-08:00,1015.369384765625,10.725081,10725.081 +16007,2025-03-08T23:38:56.506061-08:00,1015.321533203125,10.743288,10743.288 +16008,2025-03-08T23:39:07.227797-08:00,1015.3414306640625,10.721736,10721.736 +16009,2025-03-08T23:39:17.964775-08:00,1015.3233642578125,10.736978,10736.978 +16010,2025-03-08T23:39:28.699836-08:00,1015.3314819335938,10.735061,10735.061 +16011,2025-03-08T23:39:38.738185-08:00,1015.302001953125,10.038349,10038.349 +16012,2025-03-08T23:39:39.422395-08:00,1015.3049926757812,0.68421,684.21 +16013,2025-03-08T23:39:50.151955-08:00,1015.3696899414062,10.72956,10729.56 +16014,2025-03-08T23:40:00.891838-08:00,1015.3563842773438,10.739883,10739.883 +16015,2025-03-08T23:40:11.623864-08:00,1015.361572265625,10.732026,10732.026 +16016,2025-03-08T23:40:22.355441-08:00,1015.3351440429688,10.731577,10731.577 +16017,2025-03-08T23:40:33.079805-08:00,1015.3748168945312,10.724364,10724.364 +16018,2025-03-08T23:40:43.817059-08:00,1015.3648681640625,10.737254,10737.254 +16019,2025-03-08T23:40:54.537884-08:00,1015.3597412109375,10.720825,10720.825 +16020,2025-03-08T23:41:05.276772-08:00,1015.3368530273438,10.738888,10738.888 +16021,2025-03-08T23:41:16.006853-08:00,1015.3781127929688,10.730081,10730.081 +16022,2025-03-08T23:41:26.732773-08:00,1015.3501586914062,10.72592,10725.92 +16023,2025-03-08T23:41:37.473846-08:00,1015.3681030273438,10.741073,10741.073 +16024,2025-03-08T23:41:48.200221-08:00,1015.3585815429688,10.726375,10726.375 +16025,2025-03-08T23:41:58.933728-08:00,1015.3453369140625,10.733507,10733.507 +16026,2025-03-08T23:42:09.662184-08:00,1015.3585815429688,10.728456,10728.456 +16027,2025-03-08T23:42:20.393774-08:00,1015.3501586914062,10.73159,10731.59 +16028,2025-03-08T23:42:31.126332-08:00,1015.37841796875,10.732558,10732.558 +16029,2025-03-08T23:42:41.861840-08:00,1015.3916625976562,10.735508,10735.508 +16030,2025-03-08T23:42:52.594444-08:00,1015.355224609375,10.732604,10732.604 +16031,2025-03-08T23:43:03.318963-08:00,1015.3404541015625,10.724519,10724.519 +16032,2025-03-08T23:43:14.053767-08:00,1015.3404541015625,10.734804,10734.804 +16033,2025-03-08T23:43:24.789840-08:00,1015.37841796875,10.736073,10736.073 +16034,2025-03-08T23:43:35.516956-08:00,1015.3585815429688,10.727116,10727.116 +16035,2025-03-08T23:43:46.250009-08:00,1015.3438110351562,10.733053,10733.053 +16036,2025-03-08T23:43:56.968964-08:00,1015.3602905273438,10.718955,10718.955 +16037,2025-03-08T23:44:07.708608-08:00,1015.3651733398438,10.739644,10739.644 +16038,2025-03-08T23:44:18.435849-08:00,1015.3438110351562,10.727241,10727.241 +16039,2025-03-08T23:44:29.158952-08:00,1015.360595703125,10.723103,10723.103 +16040,2025-03-08T23:44:39.891574-08:00,1015.4099731445312,10.732622,10732.622 +16041,2025-03-08T23:44:50.622772-08:00,1015.3521728515625,10.731198,10731.198 +16042,2025-03-08T23:45:01.348953-08:00,1015.3456420898438,10.726181,10726.181 +16043,2025-03-08T23:45:12.076771-08:00,1015.3507690429688,10.727818,10727.818 +16044,2025-03-08T23:45:22.793927-08:00,1015.3359985351562,10.717156,10717.156 +16045,2025-03-08T23:45:33.527961-08:00,1015.3624877929688,10.734034,10734.034 +16046,2025-03-08T23:45:44.251847-08:00,1015.347412109375,10.723886,10723.886 +16047,2025-03-08T23:45:54.981959-08:00,1015.3359375,10.730112,10730.112 +16048,2025-03-08T23:46:05.711007-08:00,1015.345947265625,10.729048,10729.048 +16049,2025-03-08T23:46:16.436774-08:00,1015.3378295898438,10.725767,10725.767 +16050,2025-03-08T23:46:27.165963-08:00,1015.357666015625,10.729189,10729.189 +16051,2025-03-08T23:46:37.902990-08:00,1015.34765625,10.737027,10737.027 +16052,2025-03-08T23:46:48.630882-08:00,1015.3690795898438,10.727892,10727.892 +16053,2025-03-08T23:46:59.359164-08:00,1015.3378295898438,10.728282,10728.282 +16054,2025-03-08T23:47:10.085895-08:00,1015.3660888671875,10.726731,10726.731 +16055,2025-03-08T23:47:20.810803-08:00,1015.328125,10.724908,10724.908 +16056,2025-03-08T23:47:31.531774-08:00,1015.3479614257812,10.720971,10720.971 +16057,2025-03-08T23:47:42.263770-08:00,1015.3399047851562,10.731996,10731.996 +16058,2025-03-08T23:47:52.984793-08:00,1015.3531494140625,10.721023,10721.023 +16059,2025-03-08T23:48:03.720771-08:00,1015.338134765625,10.735978,10735.978 +16060,2025-03-08T23:48:14.446777-08:00,1015.349853515625,10.726006,10726.006 +16061,2025-03-08T23:48:25.169775-08:00,1015.3218994140625,10.722998,10722.998 +16062,2025-03-08T23:48:35.893717-08:00,1015.344970703125,10.723942,10723.942 +16063,2025-03-08T23:48:46.628960-08:00,1015.33837890625,10.735243,10735.243 +16064,2025-03-08T23:48:57.348774-08:00,1015.3104858398438,10.719814,10719.814 +16065,2025-03-08T23:49:08.081774-08:00,1015.330322265625,10.733,10733.0 +16066,2025-03-08T23:49:18.804059-08:00,1015.3152465820312,10.722285,10722.285 +16067,2025-03-08T23:49:29.538974-08:00,1015.3350219726562,10.734915,10734.915 +16068,2025-03-08T23:49:40.259083-08:00,1015.30859375,10.720109,10720.109 +16069,2025-03-08T23:49:50.991067-08:00,1015.3121948242188,10.731984,10731.984 +16070,2025-03-08T23:50:01.716986-08:00,1015.3056030273438,10.725919,10725.919 +16071,2025-03-08T23:50:12.444859-08:00,1015.3056030273438,10.727873,10727.873 +16072,2025-03-08T23:50:23.166773-08:00,1015.3103637695312,10.721914,10721.914 +16073,2025-03-08T23:50:33.891362-08:00,1015.2971801757812,10.724589,10724.589 +16074,2025-03-08T23:50:44.622831-08:00,1015.2971801757812,10.731469,10731.469 +16075,2025-03-08T23:50:55.354848-08:00,1015.2791137695312,10.732017,10732.017 +16076,2025-03-08T23:51:06.085961-08:00,1015.28759765625,10.731113,10731.113 +16077,2025-03-08T23:51:16.813836-08:00,1015.307373046875,10.727875,10727.875 +16078,2025-03-08T23:51:27.537768-08:00,1015.3056030273438,10.723932,10723.932 +16079,2025-03-08T23:51:38.262773-08:00,1015.3239135742188,10.725005,10725.005 +16080,2025-03-08T23:51:49.000866-08:00,1015.2548217773438,10.738093,10738.093 +16081,2025-03-08T23:51:59.721952-08:00,1015.2614135742188,10.721086,10721.086 +16082,2025-03-08T23:52:10.456960-08:00,1015.3010864257812,10.735008,10735.008 +16083,2025-03-08T23:52:21.178168-08:00,1015.2779541015625,10.721208,10721.208 +16084,2025-03-08T23:52:31.915018-08:00,1015.2529907226562,10.73685,10736.85 +16085,2025-03-08T23:52:42.641846-08:00,1015.2581176757812,10.726828,10726.828 +16086,2025-03-08T23:52:53.375910-08:00,1015.256591796875,10.734064,10734.064 +16087,2025-03-08T23:53:04.100687-08:00,1015.26318359375,10.724777,10724.777 +16088,2025-03-08T23:53:14.833841-08:00,1015.228271484375,10.733154,10733.154 +16089,2025-03-08T23:53:25.553641-08:00,1015.2334594726562,10.7198,10719.8 +16090,2025-03-08T23:53:36.288854-08:00,1015.2583618164062,10.735213,10735.213 +16091,2025-03-08T23:53:47.014844-08:00,1015.2614135742188,10.72599,10725.99 +16092,2025-03-08T23:53:57.740031-08:00,1015.2583618164062,10.725187,10725.187 +16093,2025-03-08T23:54:08.461849-08:00,1015.2583618164062,10.721818,10721.818 +16094,2025-03-08T23:54:19.190440-08:00,1015.2631225585938,10.728591,10728.591 +16095,2025-03-08T23:54:29.926522-08:00,1015.25,10.736082,10736.082 +16096,2025-03-08T23:54:40.653222-08:00,1015.256591796875,10.7267,10726.7 +16097,2025-03-08T23:54:51.376009-08:00,1015.2536010742188,10.722787,10722.787 +16098,2025-03-08T23:55:02.107062-08:00,1015.2271118164062,10.731053,10731.053 +16099,2025-03-08T23:55:12.837917-08:00,1015.2865600585938,10.730855,10730.855 +16100,2025-03-08T23:55:23.562114-08:00,1015.2186889648438,10.724197,10724.197 +16101,2025-03-08T23:55:34.287252-08:00,1015.2601318359375,10.725138,10725.138 +16102,2025-03-08T23:55:45.021842-08:00,1015.2171630859375,10.73459,10734.59 +16103,2025-03-08T23:55:55.748958-08:00,1015.2288818359375,10.727116,10727.116 +16104,2025-03-08T23:56:06.472124-08:00,1015.2237548828125,10.723166,10723.166 +16105,2025-03-08T23:56:17.200029-08:00,1015.2273559570312,10.727905,10727.905 +16106,2025-03-08T23:56:27.933048-08:00,1015.2207641601562,10.733019,10733.019 +16107,2025-03-08T23:56:38.660846-08:00,1015.1943969726562,10.727798,10727.798 +16108,2025-03-08T23:56:49.390050-08:00,1015.2207641601562,10.729204,10729.204 +16109,2025-03-08T23:57:00.116050-08:00,1015.2406005859375,10.726,10726.0 +16110,2025-03-08T23:57:10.844346-08:00,1015.205810546875,10.728296,10728.296 +16111,2025-03-08T23:57:21.562847-08:00,1015.2123413085938,10.718501,10718.501 +16112,2025-03-08T23:57:32.293121-08:00,1015.1843872070312,10.730274,10730.274 +16113,2025-03-08T23:57:43.025031-08:00,1015.2159423828125,10.73191,10731.91 +16114,2025-03-08T23:57:53.741921-08:00,1015.1876831054688,10.71689,10716.89 +16115,2025-03-08T23:58:04.479039-08:00,1015.1744384765625,10.737118,10737.118 +16116,2025-03-08T23:58:15.203844-08:00,1015.1928100585938,10.724805,10724.805 +16117,2025-03-08T23:58:25.925392-08:00,1015.1876831054688,10.721548,10721.548 +16118,2025-03-08T23:58:36.655990-08:00,1015.17626953125,10.730598,10730.598 +16119,2025-03-08T23:58:47.373049-08:00,1015.197998046875,10.717059,10717.059 +16120,2025-03-08T23:58:58.109227-08:00,1015.1846923828125,10.736178,10736.178 +16121,2025-03-08T23:59:08.837843-08:00,1015.1846923828125,10.728616,10728.616 +16122,2025-03-08T23:59:19.568846-08:00,1015.1846923828125,10.731003,10731.003 +16123,2025-03-08T23:59:30.287890-08:00,1015.1961059570312,10.719044,10719.044 +16124,2025-03-08T23:59:41.015847-08:00,1015.1630249023438,10.727957,10727.957 +16125,2025-03-08T23:59:51.747901-08:00,1015.1549072265625,10.732054,10732.054 +16126,2025-03-09T00:00:02.469844-08:00,1015.2012329101562,10.721943,10721.943 +16127,2025-03-09T00:00:13.200847-08:00,1015.2078247070312,10.731003,10731.003 +16128,2025-03-09T00:00:23.933947-08:00,1015.1710815429688,10.7331,10733.1 +16129,2025-03-09T00:00:34.663845-08:00,1015.1497802734375,10.729898,10729.898 +16130,2025-03-09T00:00:45.392244-08:00,1015.1497802734375,10.728399,10728.399 +16131,2025-03-09T00:00:56.120707-08:00,1015.166259765625,10.728463,10728.463 +16132,2025-03-09T00:01:06.845913-08:00,1015.164794921875,10.725206,10725.206 +16133,2025-03-09T00:01:17.575923-08:00,1015.1860961914062,10.73001,10730.01 +16134,2025-03-09T00:01:28.307918-08:00,1015.158447265625,10.731995,10731.995 +16135,2025-03-09T00:01:39.042047-08:00,1015.12060546875,10.734129,10734.129 +16136,2025-03-09T00:01:49.767118-08:00,1015.1503295898438,10.725071,10725.071 +16137,2025-03-09T00:02:00.501471-08:00,1015.1473388671875,10.734353,10734.353 +16138,2025-03-09T00:02:11.236936-08:00,1015.1851806640625,10.735465,10735.465 +16139,2025-03-09T00:02:21.968915-08:00,1015.15234375,10.731979,10731.979 +16140,2025-03-09T00:02:32.691981-08:00,1015.1790771484375,10.723066,10723.066 +16141,2025-03-09T00:02:43.434912-08:00,1015.1595458984375,10.742931,10742.931 +16142,2025-03-09T00:02:54.160850-08:00,1015.143310546875,10.725938,10725.938 +16143,2025-03-09T00:03:04.895341-08:00,1015.151611328125,10.734491,10734.491 +16144,2025-03-09T00:03:15.625597-08:00,1015.16845703125,10.730256,10730.256 +16145,2025-03-09T00:03:26.357847-08:00,1015.152099609375,10.73225,10732.25 +16146,2025-03-09T00:03:37.095007-08:00,1015.131103515625,10.73716,10737.16 +16147,2025-03-09T00:03:47.822422-08:00,1015.1195068359375,10.727415,10727.415 +16148,2025-03-09T00:03:58.557094-08:00,1015.1065673828125,10.734672,10734.672 +16149,2025-03-09T00:04:09.285088-08:00,1015.126708984375,10.727994,10727.994 +16150,2025-03-09T00:04:20.014970-08:00,1015.11376953125,10.729882,10729.882 +16151,2025-03-09T00:04:30.739842-08:00,1015.1121826171875,10.724872,10724.872 +16152,2025-03-09T00:04:41.472845-08:00,1015.1109619140625,10.733003,10733.003 +16153,2025-03-09T00:04:52.200864-08:00,1015.09765625,10.728019,10728.019 +16154,2025-03-09T00:05:02.931848-08:00,1015.1537475585938,10.730984,10730.984 +16155,2025-03-09T00:05:13.667039-08:00,1015.0779418945312,10.735191,10735.191 +16156,2025-03-09T00:05:24.397608-08:00,1015.0995483398438,10.730569,10730.569 +16157,2025-03-09T00:05:35.122841-08:00,1015.1292114257812,10.725233,10725.233 +16158,2025-03-09T00:05:45.848014-08:00,1015.1310424804688,10.725173,10725.173 +16159,2025-03-09T00:05:56.587129-08:00,1015.1113891601562,10.739115,10739.115 +16160,2025-03-09T00:06:07.319847-08:00,1015.08203125,10.732718,10732.718 +16161,2025-03-09T00:06:18.047021-08:00,1015.0984497070312,10.727174,10727.174 +16162,2025-03-09T00:06:28.776876-08:00,1015.1035766601562,10.729855,10729.855 +16163,2025-03-09T00:06:39.503845-08:00,1015.12158203125,10.726969,10726.969 +16164,2025-03-09T00:06:50.239847-08:00,1015.1052856445312,10.736002,10736.002 +16165,2025-03-09T00:07:00.971942-08:00,1015.110107421875,10.732095,10732.095 +16166,2025-03-09T00:07:11.702126-08:00,1015.0953369140625,10.730184,10730.184 +16167,2025-03-09T00:07:22.431082-08:00,1015.105224609375,10.728956,10728.956 +16168,2025-03-09T00:07:33.159843-08:00,1015.1268920898438,10.728761,10728.761 +16169,2025-03-09T00:07:43.887065-08:00,1015.115478515625,10.727222,10727.222 +16170,2025-03-09T00:07:54.621846-08:00,1015.1168823242188,10.734781,10734.781 +16171,2025-03-09T00:08:05.351079-08:00,1015.1220092773438,10.729233,10729.233 +16172,2025-03-09T00:08:16.085844-08:00,1015.12353515625,10.734765,10734.765 +16173,2025-03-09T00:08:26.818227-08:00,1015.0940551757812,10.732383,10732.383 +16174,2025-03-09T00:08:37.549030-08:00,1015.1102905273438,10.730803,10730.803 +16175,2025-03-09T00:08:48.280054-08:00,1015.1286010742188,10.731024,10731.024 +16176,2025-03-09T00:08:59.013846-08:00,1015.13671875,10.733792,10733.792 +16177,2025-03-09T00:09:09.741008-08:00,1015.0823364257812,10.727162,10727.162 +16178,2025-03-09T00:09:20.483237-08:00,1015.1286010742188,10.742229,10742.229 +16179,2025-03-09T00:09:31.207050-08:00,1015.1168823242188,10.723813,10723.813 +16180,2025-03-09T00:09:41.939067-08:00,1015.103759765625,10.732017,10732.017 +16181,2025-03-09T00:09:52.673072-08:00,1015.1268920898438,10.734005,10734.005 +16182,2025-03-09T00:10:03.404843-08:00,1015.0985717773438,10.731771,10731.771 +16183,2025-03-09T00:10:14.138847-08:00,1015.105224609375,10.734004,10734.004 +16184,2025-03-09T00:10:24.879849-08:00,1015.1136474609375,10.741002,10741.002 +16185,2025-03-09T00:10:35.609195-08:00,1015.1034545898438,10.729346,10729.346 +16186,2025-03-09T00:10:46.341911-08:00,1015.09033203125,10.732716,10732.716 +16187,2025-03-09T00:10:57.075080-08:00,1015.0968627929688,10.733169,10733.169 +16188,2025-03-09T00:11:07.816603-08:00,1015.0870361328125,10.741523,10741.523 +16189,2025-03-09T00:11:18.552296-08:00,1015.0870361328125,10.735693,10735.693 +16190,2025-03-09T00:11:29.277999-08:00,1015.1101684570312,10.725703,10725.703 +16191,2025-03-09T00:11:40.007101-08:00,1015.0999755859375,10.729102,10729.102 +16192,2025-03-09T00:11:50.738179-08:00,1015.0736083984375,10.731078,10731.078 +16193,2025-03-09T00:12:01.477049-08:00,1015.0933837890625,10.73887,10738.87 +16194,2025-03-09T00:12:12.210902-08:00,1015.08203125,10.733853,10733.853 +16195,2025-03-09T00:12:22.937132-08:00,1015.065185546875,10.72623,10726.23 +16196,2025-03-09T00:12:33.672871-08:00,1015.0452880859375,10.735739,10735.739 +16197,2025-03-09T00:12:44.407849-08:00,1015.0321655273438,10.734978,10734.978 +16198,2025-03-09T00:12:55.146847-08:00,1015.0582885742188,10.738998,10738.998 +16199,2025-03-09T00:13:05.875110-08:00,1015.0435791015625,10.728263,10728.263 +16200,2025-03-09T00:13:16.603915-08:00,1015.0535888671875,10.728805,10728.805 +16201,2025-03-09T00:13:27.342848-08:00,1015.0484619140625,10.738933,10738.933 +16202,2025-03-09T00:13:38.072958-08:00,1015.025390625,10.73011,10730.11 +16203,2025-03-09T00:13:48.811962-08:00,1015.0632934570312,10.739004,10739.004 +16204,2025-03-09T00:13:59.538227-08:00,1015.0779418945312,10.726265,10726.265 +16205,2025-03-09T00:14:10.273849-08:00,1015.0482788085938,10.735622,10735.622 +16206,2025-03-09T00:14:21.014157-08:00,1015.056396484375,10.740308,10740.308 +16207,2025-03-09T00:14:31.740914-08:00,1015.0462646484375,10.726757,10726.757 +16208,2025-03-09T00:14:42.476911-08:00,1015.0348510742188,10.735997,10735.997 +16209,2025-03-09T00:14:53.218849-08:00,1015.04296875,10.741938,10741.938 +16210,2025-03-09T00:15:03.952029-08:00,1015.01171875,10.73318,10733.18 +16211,2025-03-09T00:15:14.684844-08:00,1015.033447265625,10.732815,10732.815 +16212,2025-03-09T00:15:25.414842-08:00,1015.0580444335938,10.729998,10729.998 +16213,2025-03-09T00:15:36.150371-08:00,1015.041259765625,10.735529,10735.529 +16214,2025-03-09T00:15:46.884054-08:00,1015.041259765625,10.733683,10733.683 +16215,2025-03-09T00:15:57.613960-08:00,1015.0015869140625,10.729906,10729.906 +16216,2025-03-09T00:16:08.351123-08:00,1015.0247802734375,10.737163,10737.163 +16217,2025-03-09T00:16:19.088024-08:00,1015.0148315429688,10.736901,10736.901 +16218,2025-03-09T00:16:29.815307-08:00,1015.0245361328125,10.727283,10727.283 +16219,2025-03-09T00:16:40.550844-08:00,1015.0376586914062,10.735537,10735.537 +16220,2025-03-09T00:16:51.282942-08:00,1015.0410766601562,10.732098,10732.098 +16221,2025-03-09T00:17:02.018024-08:00,1015.0293579101562,10.735082,10735.082 +16222,2025-03-09T00:17:12.745847-08:00,1015.05908203125,10.727823,10727.823 +16223,2025-03-09T00:17:23.479923-08:00,1015.0423583984375,10.734076,10734.076 +16224,2025-03-09T00:17:34.221071-08:00,1015.029052734375,10.741148,10741.148 +16225,2025-03-09T00:17:44.945051-08:00,1015.0390625,10.72398,10723.98 +16226,2025-03-09T00:17:55.682843-08:00,1015.0140380859375,10.737792,10737.792 +16227,2025-03-09T00:18:06.406014-08:00,1015.0321655273438,10.723171,10723.171 +16228,2025-03-09T00:18:17.144245-08:00,1015.0357666015625,10.738231,10738.231 +16229,2025-03-09T00:18:27.878847-08:00,1015.0435791015625,10.734602,10734.602 +16230,2025-03-09T00:18:38.606028-08:00,1015.015625,10.727181,10727.181 +16231,2025-03-09T00:18:49.341021-08:00,1015.0318603515625,10.734993,10734.993 +16232,2025-03-09T00:19:00.078844-08:00,1015.00390625,10.737823,10737.823 +16233,2025-03-09T00:19:10.810900-08:00,1015.015380859375,10.732056,10732.056 +16234,2025-03-09T00:19:21.539057-08:00,1015.033447265625,10.728157,10728.157 +16235,2025-03-09T00:19:32.276149-08:00,1015.01513671875,10.737092,10737.092 +16236,2025-03-09T00:19:43.004137-08:00,1014.9871826171875,10.727988,10727.988 +16237,2025-03-09T00:19:53.745846-08:00,1015.0250244140625,10.741709,10741.709 +16238,2025-03-09T00:20:04.472241-08:00,1014.9920043945312,10.726395,10726.395 +16239,2025-03-09T00:20:15.206840-08:00,1015.0067138671875,10.734599,10734.599 +16240,2025-03-09T00:20:25.947040-08:00,1015.0133666992188,10.7402,10740.2 +16241,2025-03-09T00:20:36.671845-08:00,1014.9968872070312,10.724805,10724.805 +16242,2025-03-09T00:20:47.410240-08:00,1014.9637451171875,10.738395,10738.395 +16243,2025-03-09T00:20:58.149182-08:00,1014.9866333007812,10.738942,10738.942 +16244,2025-03-09T00:21:08.877132-08:00,1014.99658203125,10.72795,10727.95 +16245,2025-03-09T00:21:19.613066-08:00,1014.9767456054688,10.735934,10735.934 +16246,2025-03-09T00:21:30.352649-08:00,1014.978271484375,10.739583,10739.583 +16247,2025-03-09T00:21:41.080845-08:00,1014.9617309570312,10.728196,10728.196 +16248,2025-03-09T00:21:51.814108-08:00,1014.95361328125,10.733263,10733.263 +16249,2025-03-09T00:22:02.547877-08:00,1014.9732055664062,10.733769,10733.769 +16250,2025-03-09T00:22:13.281510-08:00,1014.997802734375,10.733633,10733.633 +16251,2025-03-09T00:22:24.015846-08:00,1014.9729614257812,10.734336,10734.336 +16252,2025-03-09T00:22:34.755083-08:00,1014.9710693359375,10.739237,10739.237 +16253,2025-03-09T00:22:45.486038-08:00,1014.9528198242188,10.730955,10730.955 +16254,2025-03-09T00:22:56.217845-08:00,1014.9495239257812,10.731807,10731.807 +16255,2025-03-09T00:23:06.956872-08:00,1014.9675903320312,10.739027,10739.027 +16256,2025-03-09T00:23:17.688919-08:00,1014.9227905273438,10.732047,10732.047 +16257,2025-03-09T00:23:28.419021-08:00,1014.9360961914062,10.730102,10730.102 +16258,2025-03-09T00:23:39.155896-08:00,1014.9405517578125,10.736875,10736.875 +16259,2025-03-09T00:23:49.885843-08:00,1014.9174194335938,10.729947,10729.947 +16260,2025-03-09T00:24:00.625027-08:00,1014.925537109375,10.739184,10739.184 +16261,2025-03-09T00:24:11.359030-08:00,1014.912353515625,10.734003,10734.003 +16262,2025-03-09T00:24:22.096971-08:00,1014.915283203125,10.737941,10737.941 +16263,2025-03-09T00:24:32.828844-08:00,1014.9216918945312,10.731873,10731.873 +16264,2025-03-09T00:24:43.557944-08:00,1014.91845703125,10.7291,10729.1 +16265,2025-03-09T00:24:54.296057-08:00,1014.9282836914062,10.738113,10738.113 +16266,2025-03-09T00:25:05.030956-08:00,1014.9118041992188,10.734899,10734.899 +16267,2025-03-09T00:25:15.759845-08:00,1014.9298706054688,10.728889,10728.889 +16268,2025-03-09T00:25:26.495030-08:00,1014.9165649414062,10.735185,10735.185 +16269,2025-03-09T00:25:37.230677-08:00,1014.94970703125,10.735647,10735.647 +16270,2025-03-09T00:25:47.965847-08:00,1014.9445190429688,10.73517,10735.17 +16271,2025-03-09T00:25:58.699845-08:00,1014.91455078125,10.733998,10733.998 +16272,2025-03-09T00:26:09.435851-08:00,1014.9046020507812,10.736006,10736.006 +16273,2025-03-09T00:26:20.174015-08:00,1014.864990234375,10.738164,10738.164 +16274,2025-03-09T00:26:30.906844-08:00,1014.8748168945312,10.732829,10732.829 +16275,2025-03-09T00:26:41.641874-08:00,1014.89111328125,10.73503,10735.03 +16276,2025-03-09T00:26:52.379093-08:00,1014.89111328125,10.737219,10737.219 +16277,2025-03-09T00:27:03.115031-08:00,1014.8731079101562,10.735938,10735.938 +16278,2025-03-09T00:27:13.842986-08:00,1014.8826293945312,10.727955,10727.955 +16279,2025-03-09T00:27:24.585839-08:00,1014.872802734375,10.742853,10742.853 +16280,2025-03-09T00:27:35.317921-08:00,1014.8875122070312,10.732082,10732.082 +16281,2025-03-09T00:27:46.047221-08:00,1014.8875122070312,10.7293,10729.3 +16282,2025-03-09T00:27:56.782843-08:00,1014.8775634765625,10.735622,10735.622 +16283,2025-03-09T00:28:07.515056-08:00,1014.869140625,10.732213,10732.213 +16284,2025-03-09T00:28:18.251030-08:00,1014.8856811523438,10.735974,10735.974 +16285,2025-03-09T00:28:28.986900-08:00,1014.8709106445312,10.73587,10735.87 +16286,2025-03-09T00:28:39.711908-08:00,1014.8790893554688,10.725008,10725.008 +16287,2025-03-09T00:28:50.442880-08:00,1014.8591918945312,10.730972,10730.972 +16288,2025-03-09T00:29:01.177738-08:00,1014.8709106445312,10.734858,10734.858 +16289,2025-03-09T00:29:11.909879-08:00,1014.8643798828125,10.732141,10732.141 +16290,2025-03-09T00:29:22.641063-08:00,1014.8445434570312,10.731184,10731.184 +16291,2025-03-09T00:29:33.373002-08:00,1014.8526611328125,10.731939,10731.939 +16292,2025-03-09T00:29:44.094045-08:00,1014.8493041992188,10.721043,10721.043 +16293,2025-03-09T00:29:54.821006-08:00,1014.85107421875,10.726961,10726.961 +16294,2025-03-09T00:30:05.556290-08:00,1014.8426513671875,10.735284,10735.284 +16295,2025-03-09T00:30:16.284842-08:00,1014.8591918945312,10.728552,10728.552 +16296,2025-03-09T00:30:27.022124-08:00,1014.8180541992188,10.737282,10737.282 +16297,2025-03-09T00:30:37.755028-08:00,1014.8162231445312,10.732904,10732.904 +16298,2025-03-09T00:30:48.484847-08:00,1014.8577270507812,10.729819,10729.819 +16299,2025-03-09T00:30:59.212840-08:00,1014.8361206054688,10.727993,10727.993 +16300,2025-03-09T00:31:09.953859-08:00,1014.8658447265625,10.741019,10741.019 +16301,2025-03-09T00:31:20.677841-08:00,1014.8412475585938,10.723982,10723.982 +16302,2025-03-09T00:31:31.409849-08:00,1014.8147583007812,10.732008,10732.008 +16303,2025-03-09T00:31:42.144520-08:00,1014.8228149414062,10.734671,10734.671 +16304,2025-03-09T00:31:52.872844-08:00,1014.8228149414062,10.728324,10728.324 +16305,2025-03-09T00:32:03.614039-08:00,1014.8147583007812,10.741195,10741.195 +16306,2025-03-09T00:32:14.345847-08:00,1014.837890625,10.731808,10731.808 +16307,2025-03-09T00:32:25.081225-08:00,1014.8279418945312,10.735378,10735.378 +16308,2025-03-09T00:32:35.816918-08:00,1014.7868041992188,10.735693,10735.693 +16309,2025-03-09T00:32:46.552147-08:00,1014.8279418945312,10.735229,10735.229 +16310,2025-03-09T00:32:57.290363-08:00,1014.8147583007812,10.738216,10738.216 +16311,2025-03-09T00:33:08.014029-08:00,1014.818359375,10.723666,10723.666 +16312,2025-03-09T00:33:18.747844-08:00,1014.81982421875,10.733815,10733.815 +16313,2025-03-09T00:33:29.477033-08:00,1014.7853393554688,10.729189,10729.189 +16314,2025-03-09T00:33:40.207090-08:00,1014.8147583007812,10.730057,10730.057 +16315,2025-03-09T00:33:50.944106-08:00,1014.8117065429688,10.737016,10737.016 +16316,2025-03-09T00:34:01.671051-08:00,1014.8132934570312,10.726945,10726.945 +16317,2025-03-09T00:34:12.409031-08:00,1014.8331298828125,10.73798,10737.98 +16318,2025-03-09T00:34:23.138489-08:00,1014.8279418945312,10.729458,10729.458 +16319,2025-03-09T00:34:33.866915-08:00,1014.8297729492188,10.728426,10728.426 +16320,2025-03-09T00:34:36.353360-08:00,1014.8345336914062,2.486445,2486.445 +16321,2025-03-09T00:34:44.603060-08:00,1014.8117065429688,8.2497,8249.7 +16322,2025-03-09T00:34:55.341018-08:00,1014.8117065429688,10.737958,10737.958 +16323,2025-03-09T00:35:06.064874-08:00,1014.8381958007812,10.723856,10723.856 +16324,2025-03-09T00:35:16.803848-08:00,1014.8117065429688,10.738974,10738.974 +16325,2025-03-09T00:35:27.531042-08:00,1014.8231201171875,10.727194,10727.194 +16326,2025-03-09T00:35:38.265221-08:00,1014.849609375,10.734179,10734.179 +16327,2025-03-09T00:35:48.995012-08:00,1014.7786865234375,10.729791,10729.791 +16328,2025-03-09T00:35:59.731874-08:00,1014.8250122070312,10.736862,10736.862 +16329,2025-03-09T00:36:10.461194-08:00,1014.8150024414062,10.72932,10729.32 +16330,2025-03-09T00:36:21.202844-08:00,1014.8150024414062,10.74165,10741.65 +16331,2025-03-09T00:36:31.934399-08:00,1014.8018798828125,10.731555,10731.555 +16332,2025-03-09T00:36:42.669051-08:00,1014.8069458007812,10.734652,10734.652 +16333,2025-03-09T00:36:53.404020-08:00,1014.80517578125,10.734969,10734.969 +16334,2025-03-09T00:37:04.133161-08:00,1014.83154296875,10.729141,10729.141 +16335,2025-03-09T00:37:14.865925-08:00,1014.83154296875,10.732764,10732.764 +16336,2025-03-09T00:37:25.599246-08:00,1014.822021484375,10.733321,10733.321 +16337,2025-03-09T00:37:36.328945-08:00,1014.8087768554688,10.729699,10729.699 +16338,2025-03-09T00:37:47.069846-08:00,1014.8135986328125,10.740901,10740.901 +16339,2025-03-09T00:37:57.797071-08:00,1014.8253173828125,10.727225,10727.225 +16340,2025-03-09T00:38:08.536018-08:00,1014.78564453125,10.738947,10738.947 +16341,2025-03-09T00:38:19.262843-08:00,1014.7921752929688,10.726825,10726.825 +16342,2025-03-09T00:38:29.995445-08:00,1014.775634765625,10.732602,10732.602 +16343,2025-03-09T00:38:40.730273-08:00,1014.8021240234375,10.734828,10734.828 +16344,2025-03-09T00:38:42.101388-08:00,1014.7907104492188,1.371115,1371.115 +16345,2025-03-09T00:38:51.467870-08:00,1014.8021240234375,9.366482,9366.482 +16346,2025-03-09T00:39:02.205056-08:00,1014.8153076171875,10.737186,10737.186 +16347,2025-03-09T00:39:12.941848-08:00,1014.7940673828125,10.736792,10736.792 +16348,2025-03-09T00:39:23.671702-08:00,1014.7991333007812,10.729854,10729.854 +16349,2025-03-09T00:39:34.398845-08:00,1014.79248046875,10.727143,10727.143 +16350,2025-03-09T00:39:45.132851-08:00,1014.79248046875,10.734006,10734.006 +16351,2025-03-09T00:39:55.872845-08:00,1014.7843627929688,10.739994,10739.994 +16352,2025-03-09T00:40:06.607017-08:00,1014.7546997070312,10.734172,10734.172 +16353,2025-03-09T00:40:17.343107-08:00,1014.7759399414062,10.73609,10736.09 +16354,2025-03-09T00:40:28.076847-08:00,1014.7627563476562,10.73374,10733.74 +16355,2025-03-09T00:40:38.807449-08:00,1014.767822265625,10.730602,10730.602 +16356,2025-03-09T00:40:49.544025-08:00,1014.7892456054688,10.736576,10736.576 +16357,2025-03-09T00:41:00.281850-08:00,1014.74658203125,10.737825,10737.825 +16358,2025-03-09T00:41:11.009920-08:00,1014.7943115234375,10.72807,10728.07 +16359,2025-03-09T00:41:21.747056-08:00,1014.7446899414062,10.737136,10737.136 +16360,2025-03-09T00:41:32.471844-08:00,1014.77783203125,10.724788,10724.788 +16361,2025-03-09T00:41:43.209846-08:00,1014.7711791992188,10.738002,10738.002 +16362,2025-03-09T00:41:53.946019-08:00,1014.7564086914062,10.736173,10736.173 +16363,2025-03-09T00:42:04.676021-08:00,1014.74169921875,10.730002,10730.002 +16364,2025-03-09T00:42:15.405840-08:00,1014.7630615234375,10.729819,10729.819 +16365,2025-03-09T00:42:26.136847-08:00,1014.7681274414062,10.731007,10731.007 +16366,2025-03-09T00:42:36.868014-08:00,1014.7597045898438,10.731167,10731.167 +16367,2025-03-09T00:42:47.601847-08:00,1014.7398681640625,10.733833,10733.833 +16368,2025-03-09T00:42:58.333609-08:00,1014.7516479492188,10.731762,10731.762 +16369,2025-03-09T00:43:09.063125-08:00,1014.7516479492188,10.729516,10729.516 +16370,2025-03-09T00:43:19.800058-08:00,1014.7516479492188,10.736933,10736.933 +16371,2025-03-09T00:43:30.530844-08:00,1014.754638671875,10.730786,10730.786 +16372,2025-03-09T00:43:41.261847-08:00,1014.7134399414062,10.731003,10731.003 +16373,2025-03-09T00:43:51.996034-08:00,1014.7068481445312,10.734187,10734.187 +16374,2025-03-09T00:44:02.722874-08:00,1014.719970703125,10.72684,10726.84 +16375,2025-03-09T00:44:13.455039-08:00,1014.7119750976562,10.732165,10732.165 +16376,2025-03-09T00:44:24.194225-08:00,1014.7185668945312,10.739186,10739.186 +16377,2025-03-09T00:44:34.924844-08:00,1014.675537109375,10.730619,10730.619 +16378,2025-03-09T00:44:45.653891-08:00,1014.6953735351562,10.729047,10729.047 +16379,2025-03-09T00:44:56.382227-08:00,1014.705322265625,10.728336,10728.336 +16380,2025-03-09T00:45:07.117020-08:00,1014.7086181640625,10.734793,10734.793 +16381,2025-03-09T00:45:17.842844-08:00,1014.7137451171875,10.725824,10725.824 +16382,2025-03-09T00:45:28.575036-08:00,1014.7070922851562,10.732192,10732.192 +16383,2025-03-09T00:45:39.301047-08:00,1014.685791015625,10.726011,10726.011 +16384,2025-03-09T00:45:50.031067-08:00,1014.6972045898438,10.73002,10730.02 +16385,2025-03-09T00:46:00.765011-08:00,1014.6461181640625,10.733944,10733.944 +16386,2025-03-09T00:46:11.497052-08:00,1014.6923217773438,10.732041,10732.041 +16387,2025-03-09T00:46:22.233847-08:00,1014.6707763671875,10.736795,10736.795 +16388,2025-03-09T00:46:32.964005-08:00,1014.6626586914062,10.730158,10730.158 +16389,2025-03-09T00:46:43.697274-08:00,1014.6875610351562,10.733269,10733.269 +16390,2025-03-09T00:46:54.429600-08:00,1014.6758422851562,10.732326,10732.326 +16391,2025-03-09T00:47:05.156591-08:00,1014.6791381835938,10.726991,10726.991 +16392,2025-03-09T00:47:15.890031-08:00,1014.6724853515625,10.73344,10733.44 +16393,2025-03-09T00:47:26.625918-08:00,1014.6710815429688,10.735887,10735.887 +16394,2025-03-09T00:47:37.357845-08:00,1014.6695556640625,10.731927,10731.927 +16395,2025-03-09T00:47:48.081028-08:00,1014.6478881835938,10.723183,10723.183 +16396,2025-03-09T00:47:58.819850-08:00,1014.6412353515625,10.738822,10738.822 +16397,2025-03-09T00:48:09.559113-08:00,1014.6761474609375,10.739263,10739.263 +16398,2025-03-09T00:48:20.284848-08:00,1014.6280517578125,10.725735,10725.735 +16399,2025-03-09T00:48:31.027019-08:00,1014.6893920898438,10.742171,10742.171 +16400,2025-03-09T00:48:41.754841-08:00,1014.6398315429688,10.727822,10727.822 +16401,2025-03-09T00:48:52.490019-08:00,1014.618408203125,10.735178,10735.178 +16402,2025-03-09T00:49:03.229933-08:00,1014.6265869140625,10.739914,10739.914 +16403,2025-03-09T00:49:13.963031-08:00,1014.6448364257812,10.733098,10733.098 +16404,2025-03-09T00:49:24.690844-08:00,1014.6629638671875,10.727813,10727.813 +16405,2025-03-09T00:49:35.424846-08:00,1014.6431274414062,10.734002,10734.002 +16406,2025-03-09T00:49:46.167844-08:00,1014.658447265625,10.742998,10742.998 +16407,2025-03-09T00:49:56.901015-08:00,1014.6548461914062,10.733171,10733.171 +16408,2025-03-09T00:50:07.636868-08:00,1014.648193359375,10.735853,10735.853 +16409,2025-03-09T00:50:18.375847-08:00,1014.6334228515625,10.738979,10738.979 +16410,2025-03-09T00:50:29.103440-08:00,1014.6334228515625,10.727593,10727.593 +16411,2025-03-09T00:50:39.841015-08:00,1014.6517944335938,10.737575,10737.575 +16412,2025-03-09T00:50:50.580046-08:00,1014.6433715820312,10.739031,10739.031 +16413,2025-03-09T00:51:01.311909-08:00,1014.641845703125,10.731863,10731.863 +16414,2025-03-09T00:51:12.049154-08:00,1014.628662109375,10.737245,10737.245 +16415,2025-03-09T00:51:22.778018-08:00,1014.6632080078125,10.728864,10728.864 +16416,2025-03-09T00:51:33.521837-08:00,1014.6698608398438,10.743819,10743.819 +16417,2025-03-09T00:51:44.252845-08:00,1014.6682739257812,10.731008,10731.008 +16418,2025-03-09T00:51:54.993054-08:00,1014.6682739257812,10.740209,10740.209 +16419,2025-03-09T00:52:05.732033-08:00,1014.6617431640625,10.738979,10738.979 +16420,2025-03-09T00:52:16.469639-08:00,1014.66015625,10.737606,10737.606 +16421,2025-03-09T00:52:27.236605-08:00,1014.6517944335938,10.766966,10766.966 +16422,2025-03-09T00:52:37.965646-08:00,1014.66015625,10.729041,10729.041 +16423,2025-03-09T00:52:48.705446-08:00,1014.6040649414062,10.7398,10739.8 +16424,2025-03-09T00:52:59.435004-08:00,1014.6451416015625,10.729558,10729.558 +16425,2025-03-09T00:53:10.168442-08:00,1014.6668701171875,10.733438,10733.438 +16426,2025-03-09T00:53:20.906653-08:00,1014.6503295898438,10.738211,10738.211 +16427,2025-03-09T00:53:31.640800-08:00,1014.670166015625,10.734147,10734.147 +16428,2025-03-09T00:53:42.378299-08:00,1014.681884765625,10.737499,10737.499 +16429,2025-03-09T00:53:53.109443-08:00,1014.66015625,10.731144,10731.144 +16430,2025-03-09T00:54:03.847498-08:00,1014.6553955078125,10.738055,10738.055 +16431,2025-03-09T00:54:14.575441-08:00,1014.6752319335938,10.727943,10727.943 +16432,2025-03-09T00:54:25.311842-08:00,1014.6487426757812,10.736401,10736.401 +16433,2025-03-09T00:54:36.037470-08:00,1014.6620483398438,10.725628,10725.628 +16434,2025-03-09T00:54:46.778776-08:00,1014.6734619140625,10.741306,10741.306 +16435,2025-03-09T00:54:57.516623-08:00,1014.6752319335938,10.737847,10737.847 +16436,2025-03-09T00:55:08.251776-08:00,1014.64697265625,10.735153,10735.153 +16437,2025-03-09T00:55:18.976695-08:00,1014.6851806640625,10.724919,10724.919 +16438,2025-03-09T00:55:29.718640-08:00,1014.6734619140625,10.741945,10741.945 +16439,2025-03-09T00:55:40.447571-08:00,1014.6571655273438,10.728931,10728.931 +16440,2025-03-09T00:55:51.176522-08:00,1014.6685791015625,10.728951,10728.951 +16441,2025-03-09T00:56:01.918446-08:00,1014.6685791015625,10.741924,10741.924 +16442,2025-03-09T00:56:12.653743-08:00,1014.6818237304688,10.735297,10735.297 +16443,2025-03-09T00:56:23.386303-08:00,1014.6422119140625,10.73256,10732.56 +16444,2025-03-09T00:56:34.125161-08:00,1014.6736450195312,10.738858,10738.858 +16445,2025-03-09T00:56:44.855444-08:00,1014.6373291015625,10.730283,10730.283 +16446,2025-03-09T00:56:55.588927-08:00,1014.6325073242188,10.733483,10733.483 +16447,2025-03-09T00:57:06.322648-08:00,1014.6637573242188,10.733721,10733.721 +16448,2025-03-09T00:57:17.049446-08:00,1014.6702880859375,10.726798,10726.798 +16449,2025-03-09T00:57:27.783444-08:00,1014.6292114257812,10.733998,10733.998 +16450,2025-03-09T00:57:38.518649-08:00,1014.6507568359375,10.735205,10735.205 +16451,2025-03-09T00:57:49.249653-08:00,1014.6691284179688,10.731004,10731.004 +16452,2025-03-09T00:57:59.981553-08:00,1014.6724243164062,10.7319,10731.9 +16453,2025-03-09T00:58:10.713647-08:00,1014.646240234375,10.732094,10732.094 +16454,2025-03-09T00:58:21.435442-08:00,1014.6729736328125,10.721795,10721.795 +16455,2025-03-09T00:58:32.169507-08:00,1014.6781005859375,10.734065,10734.065 +16456,2025-03-09T00:58:42.903874-08:00,1014.6417236328125,10.734367,10734.367 +16457,2025-03-09T00:58:53.632558-08:00,1014.6221923828125,10.728684,10728.684 +16458,2025-03-09T00:59:04.361730-08:00,1014.6603393554688,10.729172,10729.172 +16459,2025-03-09T00:59:15.085621-08:00,1014.67529296875,10.723891,10723.891 +16460,2025-03-09T00:59:25.816445-08:00,1014.6755981445312,10.730824,10730.824 +16461,2025-03-09T00:59:36.552443-08:00,1014.6493530273438,10.735998,10735.998 +16462,2025-03-09T00:59:47.284849-08:00,1014.6779174804688,10.732406,10732.406 +16463,2025-03-09T00:59:58.005513-08:00,1014.6682739257812,10.720664,10720.664 +16464,2025-03-09T01:00:08.734445-08:00,1014.6846923828125,10.728932,10728.932 +16465,2025-03-09T01:00:19.470630-08:00,1014.6782836914062,10.736185,10736.185 +16466,2025-03-09T01:00:30.199510-08:00,1014.6685791015625,10.72888,10728.88 +16467,2025-03-09T01:00:40.925644-08:00,1014.6736450195312,10.726134,10726.134 +16468,2025-03-09T01:00:51.648440-08:00,1014.665771484375,10.722796,10722.796 +16469,2025-03-09T01:01:02.386438-08:00,1014.6478271484375,10.737998,10737.998 +16470,2025-03-09T01:01:13.104632-08:00,1014.6593627929688,10.718194,10718.194 +16471,2025-03-09T01:01:23.840395-08:00,1014.6677856445312,10.735763,10735.763 +16472,2025-03-09T01:01:34.566445-08:00,1014.6812744140625,10.72605,10726.05 +16473,2025-03-09T01:01:45.300579-08:00,1014.6565551757812,10.734134,10734.134 +16474,2025-03-09T01:01:56.020687-08:00,1014.6517333984375,10.720108,10720.108 +16475,2025-03-09T01:02:06.757634-08:00,1014.6322021484375,10.736947,10736.947 +16476,2025-03-09T01:02:17.487680-08:00,1014.6486206054688,10.730046,10730.046 +16477,2025-03-09T01:02:28.215670-08:00,1014.6356201171875,10.72799,10727.99 +16478,2025-03-09T01:02:38.947666-08:00,1014.6356201171875,10.731996,10731.996 +16479,2025-03-09T01:02:49.679658-08:00,1014.637451171875,10.731992,10731.992 +16480,2025-03-09T01:03:00.408765-08:00,1014.645751953125,10.729107,10729.107 +16481,2025-03-09T01:03:11.140660-08:00,1014.6226806640625,10.731895,10731.895 +16482,2025-03-09T01:03:21.860239-08:00,1014.6292114257812,10.719579,10719.579 +16483,2025-03-09T01:03:32.590448-08:00,1014.6475219726562,10.730209,10730.209 +16484,2025-03-09T01:03:43.319346-08:00,1014.6643676757812,10.728898,10728.898 +16485,2025-03-09T01:03:54.052508-08:00,1014.622802734375,10.733162,10733.162 +16486,2025-03-09T01:04:04.777445-08:00,1014.67919921875,10.724937,10724.937 +16487,2025-03-09T01:04:15.504621-08:00,1014.6543579101562,10.727176,10727.176 +16488,2025-03-09T01:04:26.240645-08:00,1014.6411743164062,10.736024,10736.024 +16489,2025-03-09T01:04:36.970439-08:00,1014.6478271484375,10.729794,10729.794 +16490,2025-03-09T01:04:47.692285-08:00,1014.6231079101562,10.721846,10721.846 +16491,2025-03-09T01:04:58.430644-08:00,1014.6478271484375,10.738359,10738.359 +16492,2025-03-09T01:05:09.160443-08:00,1014.6179809570312,10.729799,10729.799 +16493,2025-03-09T01:05:19.890612-08:00,1014.646240234375,10.730169,10730.169 +16494,2025-03-09T01:05:30.615472-08:00,1014.633056640625,10.72486,10724.86 +16495,2025-03-09T01:05:41.338633-08:00,1014.619873046875,10.723161,10723.161 +16496,2025-03-09T01:05:52.063446-08:00,1014.61474609375,10.724813,10724.813 +16497,2025-03-09T01:06:02.794444-08:00,1014.6213989257812,10.730998,10730.998 +16498,2025-03-09T01:06:13.521665-08:00,1014.619873046875,10.727221,10727.221 +16499,2025-03-09T01:06:24.246449-08:00,1014.5949096679688,10.724784,10724.784 +16500,2025-03-09T01:06:34.972719-08:00,1014.60302734375,10.72627,10726.27 +16501,2025-03-09T01:06:45.694440-08:00,1014.596435546875,10.721721,10721.721 +16502,2025-03-09T01:06:56.426651-08:00,1014.6063842773438,10.732211,10732.211 +16503,2025-03-09T01:07:07.144442-08:00,1014.58984375,10.717791,10717.791 +16504,2025-03-09T01:07:17.876446-08:00,1014.5932006835938,10.732004,10732.004 +16505,2025-03-09T01:07:28.602817-08:00,1014.609375,10.726371,10726.371 +16506,2025-03-09T01:07:39.328442-08:00,1014.6160278320312,10.725625,10725.625 +16507,2025-03-09T01:07:50.063567-08:00,1014.589599609375,10.735125,10735.125 +16508,2025-03-09T01:08:00.783467-08:00,1014.5914306640625,10.7199,10719.9 +16509,2025-03-09T01:08:11.511479-08:00,1014.6141967773438,10.728012,10728.012 +16510,2025-03-09T01:08:22.243873-08:00,1014.6110229492188,10.732394,10732.394 +16511,2025-03-09T01:08:32.962443-08:00,1014.5911865234375,10.71857,10718.57 +16512,2025-03-09T01:08:43.690447-08:00,1014.6190795898438,10.728004,10728.004 +16513,2025-03-09T01:08:54.419964-08:00,1014.60107421875,10.729517,10729.517 +16514,2025-03-09T01:09:05.152444-08:00,1014.6356201171875,10.73248,10732.48 +16515,2025-03-09T01:09:15.875994-08:00,1014.5974731445312,10.72355,10723.55 +16516,2025-03-09T01:09:26.600890-08:00,1014.612548828125,10.724896,10724.896 +16517,2025-03-09T01:09:37.329446-08:00,1014.6171264648438,10.728556,10728.556 +16518,2025-03-09T01:09:48.054878-08:00,1014.59912109375,10.725432,10725.432 +16519,2025-03-09T01:09:58.784443-08:00,1014.618896484375,10.729565,10729.565 +16520,2025-03-09T01:10:09.513652-08:00,1014.6152954101562,10.729209,10729.209 +16521,2025-03-09T01:10:20.242650-08:00,1014.641845703125,10.728998,10728.998 +16522,2025-03-09T01:10:30.967443-08:00,1014.6267700195312,10.724793,10724.793 +16523,2025-03-09T01:10:41.699614-08:00,1014.6267700195312,10.732171,10732.171 +16524,2025-03-09T01:10:52.416653-08:00,1014.625,10.717039,10717.039 +16525,2025-03-09T01:11:03.151627-08:00,1014.621826171875,10.734974,10734.974 +16526,2025-03-09T01:11:13.876450-08:00,1014.62841796875,10.724823,10724.823 +16527,2025-03-09T01:11:24.604504-08:00,1014.666259765625,10.728054,10728.054 +16528,2025-03-09T01:11:35.337543-08:00,1014.642822265625,10.733039,10733.039 +16529,2025-03-09T01:11:46.062645-08:00,1014.623046875,10.725102,10725.102 +16530,2025-03-09T01:11:56.793514-08:00,1014.6130981445312,10.730869,10730.869 +16531,2025-03-09T01:12:07.522633-08:00,1014.6264038085938,10.729119,10729.119 +16532,2025-03-09T01:12:18.242608-08:00,1014.6231079101562,10.719975,10719.975 +16533,2025-03-09T01:12:28.977441-08:00,1014.6246337890625,10.734833,10734.833 +16534,2025-03-09T01:12:39.711656-08:00,1014.634521484375,10.734215,10734.215 +16535,2025-03-09T01:12:50.440443-08:00,1014.6507568359375,10.728787,10728.787 +16536,2025-03-09T01:13:01.173817-08:00,1014.639404296875,10.733374,10733.374 +16537,2025-03-09T01:13:11.903955-08:00,1014.654052734375,10.730138,10730.138 +16538,2025-03-09T01:13:22.633650-08:00,1014.6439208984375,10.729695,10729.695 +16539,2025-03-09T01:13:33.369444-08:00,1014.6207885742188,10.735794,10735.794 +16540,2025-03-09T01:13:44.100672-08:00,1014.6472778320312,10.731228,10731.228 +16541,2025-03-09T01:13:54.824440-08:00,1014.6242065429688,10.723768,10723.768 +16542,2025-03-09T01:14:05.553709-08:00,1014.627197265625,10.729269,10729.269 +16543,2025-03-09T01:14:16.287877-08:00,1014.6488037109375,10.734168,10734.168 +16544,2025-03-09T01:14:27.015442-08:00,1014.6603393554688,10.727565,10727.565 +16545,2025-03-09T01:14:37.746445-08:00,1014.627197265625,10.731003,10731.003 +16546,2025-03-09T01:14:48.467485-08:00,1014.6716918945312,10.72104,10721.04 +16547,2025-03-09T01:14:59.203473-08:00,1014.6599731445312,10.735988,10735.988 +16548,2025-03-09T01:15:09.927240-08:00,1014.6498413085938,10.723767,10723.767 +16549,2025-03-09T01:15:20.665135-08:00,1014.64501953125,10.737895,10737.895 +16550,2025-03-09T01:15:31.389514-08:00,1014.6615600585938,10.724379,10724.379 +16551,2025-03-09T01:15:42.124447-08:00,1014.6218872070312,10.734933,10734.933 +16552,2025-03-09T01:15:52.843603-08:00,1014.6171875,10.719156,10719.156 +16553,2025-03-09T01:16:03.580142-08:00,1014.6484375,10.736539,10736.539 +16554,2025-03-09T01:16:14.305775-08:00,1014.655029296875,10.725633,10725.633 +16555,2025-03-09T01:16:25.039446-08:00,1014.643310546875,10.733671,10733.671 +16556,2025-03-09T01:16:35.768443-08:00,1014.631591796875,10.728997,10728.997 +16557,2025-03-09T01:16:46.495702-08:00,1014.6481323242188,10.727259,10727.259 +16558,2025-03-09T01:16:57.223122-08:00,1014.6217041015625,10.72742,10727.42 +16559,2025-03-09T01:17:07.954645-08:00,1014.6298217773438,10.731523,10731.523 +16560,2025-03-09T01:17:16.156795-08:00,1014.6316528320312,8.20215,8202.15 +16561,2025-03-09T01:17:18.685861-08:00,1014.6199340820312,2.529066,2529.066 +16562,2025-03-09T01:17:29.421443-08:00,1014.6331176757812,10.735582,10735.582 +16563,2025-03-09T01:17:40.146445-08:00,1014.6229858398438,10.725002,10725.002 +16564,2025-03-09T01:17:50.880679-08:00,1014.637939453125,10.734234,10734.234 +16565,2025-03-09T01:18:01.607556-08:00,1014.614501953125,10.726877,10726.877 +16566,2025-03-09T01:18:12.335817-08:00,1014.619384765625,10.728261,10728.261 +16567,2025-03-09T01:18:23.066821-08:00,1014.6425170898438,10.731004,10731.004 +16568,2025-03-09T01:18:33.793464-08:00,1014.6043701171875,10.726643,10726.643 +16569,2025-03-09T01:18:44.523658-08:00,1014.6341552734375,10.730194,10730.194 +16570,2025-03-09T01:18:55.262610-08:00,1014.6221923828125,10.738952,10738.952 +16571,2025-03-09T01:19:05.985515-08:00,1014.618896484375,10.722905,10722.905 +16572,2025-03-09T01:19:16.722456-08:00,1014.6303100585938,10.736941,10736.941 +16573,2025-03-09T01:19:27.456631-08:00,1014.6021118164062,10.734175,10734.175 +16574,2025-03-09T01:19:38.182450-08:00,1014.613525390625,10.725819,10725.819 +16575,2025-03-09T01:19:48.904522-08:00,1014.6051635742188,10.722072,10722.072 +16576,2025-03-09T01:19:59.641651-08:00,1014.6015625,10.737129,10737.129 +16577,2025-03-09T01:20:10.368444-08:00,1014.6129760742188,10.726793,10726.793 +16578,2025-03-09T01:20:21.106481-08:00,1014.6228637695312,10.738037,10738.037 +16579,2025-03-09T01:20:31.831175-08:00,1014.6177978515625,10.724694,10724.694 +16580,2025-03-09T01:20:42.564444-08:00,1014.609375,10.733269,10733.269 +16581,2025-03-09T01:20:53.286467-08:00,1014.6207885742188,10.722023,10722.023 +16582,2025-03-09T01:21:04.019475-08:00,1014.591064453125,10.733008,10733.008 +16583,2025-03-09T01:21:14.758447-08:00,1014.5859375,10.738972,10738.972 +16584,2025-03-09T01:21:25.489543-08:00,1014.5709228515625,10.731096,10731.096 +16585,2025-03-09T01:21:36.214582-08:00,1014.5477905273438,10.725039,10725.039 +16586,2025-03-09T01:21:46.945445-08:00,1014.5706176757812,10.730863,10730.863 +16587,2025-03-09T01:21:57.673444-08:00,1014.560791015625,10.727999,10727.999 +16588,2025-03-09T01:22:08.411899-08:00,1014.5689086914062,10.738455,10738.455 +16589,2025-03-09T01:22:19.131881-08:00,1014.5836181640625,10.719982,10719.982 +16590,2025-03-09T01:22:29.871574-08:00,1014.5523681640625,10.739693,10739.693 +16591,2025-03-09T01:22:40.598624-08:00,1014.5406494140625,10.72705,10727.05 +16592,2025-03-09T01:22:51.331444-08:00,1014.5421142578125,10.73282,10732.82 +16593,2025-03-09T01:23:02.058446-08:00,1014.538818359375,10.727002,10727.002 +16594,2025-03-09T01:23:12.791885-08:00,1014.5469360351562,10.733439,10733.439 +16595,2025-03-09T01:23:23.516443-08:00,1014.527099609375,10.724558,10724.558 +16596,2025-03-09T01:23:34.254492-08:00,1014.5370483398438,10.738049,10738.049 +16597,2025-03-09T01:23:44.979725-08:00,1014.5318603515625,10.725233,10725.233 +16598,2025-03-09T01:23:55.708519-08:00,1014.527099609375,10.728794,10728.794 +16599,2025-03-09T01:24:06.438652-08:00,1014.540283203125,10.730133,10730.133 +16600,2025-03-09T01:24:17.160440-08:00,1014.540283203125,10.721788,10721.788 +16601,2025-03-09T01:24:27.888549-08:00,1014.5352172851562,10.728109,10728.109 +16602,2025-03-09T01:24:38.619824-08:00,1014.5367431640625,10.731275,10731.275 +16603,2025-03-09T01:24:49.350746-08:00,1014.5184326171875,10.730922,10730.922 +16604,2025-03-09T01:25:00.068573-08:00,1014.5070190429688,10.717827,10717.827 +16605,2025-03-09T01:25:10.799865-08:00,1014.5184326171875,10.731292,10731.292 +16606,2025-03-09T01:25:21.521534-08:00,1014.536376953125,10.721669,10721.669 +16607,2025-03-09T01:25:29.010991-08:00,1014.536376953125,7.489457,7489.457 +16608,2025-03-09T01:25:32.256553-08:00,1014.5448608398438,3.245562,3245.562 +16609,2025-03-09T01:25:42.979637-08:00,1014.5250244140625,10.723084,10723.084 +16610,2025-03-09T01:25:53.715527-08:00,1014.536376953125,10.73589,10735.89 +16611,2025-03-09T01:26:04.436001-08:00,1014.510009765625,10.720474,10720.474 +16612,2025-03-09T01:26:15.170444-08:00,1014.5316162109375,10.734443,10734.443 +16613,2025-03-09T01:26:25.890641-08:00,1014.505126953125,10.720197,10720.197 +16614,2025-03-09T01:26:36.626225-08:00,1014.5003662109375,10.735584,10735.584 +16615,2025-03-09T01:26:47.347439-08:00,1014.478759765625,10.721214,10721.214 +16616,2025-03-09T01:26:58.079624-08:00,1014.5070190429688,10.732185,10732.185 +16617,2025-03-09T01:27:08.805650-08:00,1014.5070190429688,10.726026,10726.026 +16618,2025-03-09T01:27:19.540523-08:00,1014.4852905273438,10.734873,10734.873 +16619,2025-03-09T01:27:30.272617-08:00,1014.505126953125,10.732094,10732.094 +16620,2025-03-09T01:27:41.000448-08:00,1014.5117797851562,10.727831,10727.831 +16621,2025-03-09T01:27:51.726443-08:00,1014.52685546875,10.725995,10725.995 +16622,2025-03-09T01:28:02.446447-08:00,1014.4985961914062,10.720004,10720.004 +16623,2025-03-09T01:28:13.183474-08:00,1014.5117797851562,10.737027,10737.027 +16624,2025-03-09T01:28:23.908619-08:00,1014.533447265625,10.725145,10725.145 +16625,2025-03-09T01:28:34.630446-08:00,1014.4835205078125,10.721827,10721.827 +16626,2025-03-09T01:28:45.358544-08:00,1014.5117797851562,10.728098,10728.098 +16627,2025-03-09T01:28:56.090685-08:00,1014.4885864257812,10.732141,10732.141 +16628,2025-03-09T01:29:06.812443-08:00,1014.5033569335938,10.721758,10721.758 +16629,2025-03-09T01:29:17.547179-08:00,1014.4901733398438,10.734736,10734.736 +16630,2025-03-09T01:29:28.269447-08:00,1014.505126953125,10.722268,10722.268 +16631,2025-03-09T01:29:38.997656-08:00,1014.5117797851562,10.728209,10728.209 +16632,2025-03-09T01:29:49.722545-08:00,1014.5103149414062,10.724889,10724.889 +16633,2025-03-09T01:30:00.450886-08:00,1014.5087280273438,10.728341,10728.341 +16634,2025-03-09T01:30:11.175927-08:00,1014.4874877929688,10.725041,10725.041 +16635,2025-03-09T01:30:21.903580-08:00,1014.50732421875,10.727653,10727.653 +16636,2025-03-09T01:30:32.637445-08:00,1014.4874877929688,10.733865,10733.865 +16637,2025-03-09T01:30:43.367642-08:00,1014.50732421875,10.730197,10730.197 +16638,2025-03-09T01:30:54.089678-08:00,1014.5172119140625,10.722036,10722.036 +16639,2025-03-09T01:31:04.813624-08:00,1014.5039672851562,10.723946,10723.946 +16640,2025-03-09T01:31:15.548444-08:00,1014.5025024414062,10.73482,10734.82 +16641,2025-03-09T01:31:26.271452-08:00,1014.5039672851562,10.723008,10723.008 +16642,2025-03-09T01:31:36.999957-08:00,1014.4676513671875,10.728505,10728.505 +16643,2025-03-09T01:31:47.728446-08:00,1014.4595336914062,10.728489,10728.489 +16644,2025-03-09T01:31:58.452651-08:00,1014.4742431640625,10.724205,10724.205 +16645,2025-03-09T01:32:09.185444-08:00,1014.527099609375,10.732793,10732.793 +16646,2025-03-09T01:32:19.904446-08:00,1014.5072631835938,10.719002,10719.002 +16647,2025-03-09T01:32:30.636820-08:00,1014.4844360351562,10.732374,10732.374 +16648,2025-03-09T01:32:41.361490-08:00,1014.5240478515625,10.72467,10724.67 +16649,2025-03-09T01:32:52.093622-08:00,1014.5025024414062,10.732132,10732.132 +16650,2025-03-09T01:33:02.814651-08:00,1014.4976806640625,10.721029,10721.029 +16651,2025-03-09T01:33:13.541620-08:00,1014.4891967773438,10.726969,10726.969 +16652,2025-03-09T01:33:24.272751-08:00,1014.494384765625,10.731131,10731.131 +16653,2025-03-09T01:33:34.996514-08:00,1014.515625,10.723763,10723.763 +16654,2025-03-09T01:33:45.722695-08:00,1014.5142211914062,10.726181,10726.181 +16655,2025-03-09T01:33:56.454446-08:00,1014.4927978515625,10.731751,10731.751 +16656,2025-03-09T01:34:07.180174-08:00,1014.484375,10.725728,10725.728 +16657,2025-03-09T01:34:17.906629-08:00,1014.5159301757812,10.726455,10726.455 +16658,2025-03-09T01:34:28.635651-08:00,1014.4946899414062,10.729022,10729.022 +16659,2025-03-09T01:34:39.360662-08:00,1014.4813842773438,10.725011,10725.011 +16660,2025-03-09T01:34:50.088451-08:00,1014.4813842773438,10.727789,10727.789 +16661,2025-03-09T01:35:00.818440-08:00,1014.4931030273438,10.729989,10729.989 +16662,2025-03-09T01:35:11.549459-08:00,1014.486572265625,10.731019,10731.019 +16663,2025-03-09T01:35:22.273469-08:00,1014.486572265625,10.72401,10724.01 +16664,2025-03-09T01:35:33.010659-08:00,1014.4931030273438,10.73719,10737.19 +16665,2025-03-09T01:35:43.736652-08:00,1014.4781494140625,10.725993,10725.993 +16666,2025-03-09T01:35:54.470477-08:00,1014.4832763671875,10.733825,10733.825 +16667,2025-03-09T01:36:05.198446-08:00,1014.4667358398438,10.727969,10727.969 +16668,2025-03-09T01:36:15.926835-08:00,1014.5030517578125,10.728389,10728.389 +16669,2025-03-09T01:36:26.655446-08:00,1014.468505859375,10.728611,10728.611 +16670,2025-03-09T01:36:37.387511-08:00,1014.4468994140625,10.732065,10732.065 +16671,2025-03-09T01:36:48.115642-08:00,1014.468505859375,10.728131,10728.131 +16672,2025-03-09T01:36:58.853446-08:00,1014.481689453125,10.737804,10737.804 +16673,2025-03-09T01:37:09.578444-08:00,1014.4534301757812,10.724998,10724.998 +16674,2025-03-09T01:37:20.308620-08:00,1014.437255859375,10.730176,10730.176 +16675,2025-03-09T01:37:31.032858-08:00,1014.4651489257812,10.724238,10724.238 +16676,2025-03-09T01:37:41.771476-08:00,1014.498291015625,10.738618,10738.618 +16677,2025-03-09T01:37:52.500609-08:00,1014.4835205078125,10.729133,10729.133 +16678,2025-03-09T01:38:03.228503-08:00,1014.4537353515625,10.727894,10727.894 +16679,2025-03-09T01:38:13.962443-08:00,1014.4472045898438,10.73394,10733.94 +16680,2025-03-09T01:38:24.682521-08:00,1014.4405517578125,10.720078,10720.078 +16681,2025-03-09T01:38:35.415443-08:00,1014.4456176757812,10.732922,10732.922 +16682,2025-03-09T01:38:46.144849-08:00,1014.455322265625,10.729406,10729.406 +16683,2025-03-09T01:38:56.881647-08:00,1014.4522705078125,10.736798,10736.798 +16684,2025-03-09T01:39:07.607794-08:00,1014.4537353515625,10.726147,10726.147 +16685,2025-03-09T01:39:18.339445-08:00,1014.450439453125,10.731651,10731.651 +16686,2025-03-09T01:39:29.072862-08:00,1014.44384765625,10.733417,10733.417 +16687,2025-03-09T01:39:39.803508-08:00,1014.45703125,10.730646,10730.646 +16688,2025-03-09T01:39:50.534154-08:00,1014.4522705078125,10.730646,10730.646 +16689,2025-03-09T01:40:01.265647-08:00,1014.462158203125,10.731493,10731.493 +16690,2025-03-09T01:40:11.994445-08:00,1014.4589233398438,10.728798,10728.798 +16691,2025-03-09T01:40:22.719652-08:00,1014.44384765625,10.725207,10725.207 +16692,2025-03-09T01:40:33.450507-08:00,1014.4636840820312,10.730855,10730.855 +16693,2025-03-09T01:40:44.184449-08:00,1014.4489135742188,10.733942,10733.942 +16694,2025-03-09T01:40:54.907982-08:00,1014.4390869140625,10.723533,10723.533 +16695,2025-03-09T01:41:05.638444-08:00,1014.4408569335938,10.730462,10730.462 +16696,2025-03-09T01:41:16.371786-08:00,1014.48046875,10.733342,10733.342 +16697,2025-03-09T01:41:27.097577-08:00,1014.4441528320312,10.725791,10725.791 +16698,2025-03-09T01:41:37.829473-08:00,1014.4508056640625,10.731896,10731.896 +16699,2025-03-09T01:41:48.559045-08:00,1014.43603515625,10.729572,10729.572 +16700,2025-03-09T01:41:59.287271-08:00,1014.4573364257812,10.728226,10728.226 +16701,2025-03-09T01:42:10.006446-08:00,1014.454345703125,10.719175,10719.175 +16702,2025-03-09T01:42:20.736445-08:00,1014.4459228515625,10.729999,10729.999 +16703,2025-03-09T01:42:31.465965-08:00,1014.4591674804688,10.72952,10729.52 +16704,2025-03-09T01:42:42.200525-08:00,1014.4393920898438,10.73456,10734.56 +16705,2025-03-09T01:42:52.930620-08:00,1014.49072265625,10.730095,10730.095 +16706,2025-03-09T01:43:03.656823-08:00,1014.4826049804688,10.726203,10726.203 +16707,2025-03-09T01:43:14.382442-08:00,1014.4561767578125,10.725619,10725.619 +16708,2025-03-09T01:43:25.107764-08:00,1014.4263916015625,10.725322,10725.322 +16709,2025-03-09T01:43:35.836650-08:00,1014.4248657226562,10.728886,10728.886 +16710,2025-03-09T01:43:46.558772-08:00,1014.4462280273438,10.722122,10722.122 +16711,2025-03-09T01:43:57.280439-08:00,1014.3984375,10.721667,10721.667 +16712,2025-03-09T01:44:08.013658-08:00,1014.4447021484375,10.733219,10733.219 +16713,2025-03-09T01:44:18.740653-08:00,1014.4561157226562,10.726995,10726.995 +16714,2025-03-09T01:44:29.461674-08:00,1014.44140625,10.721021,10721.021 +16715,2025-03-09T01:44:40.191786-08:00,1014.4201049804688,10.730112,10730.112 +16716,2025-03-09T01:44:50.928109-08:00,1014.3936157226562,10.736323,10736.323 +16717,2025-03-09T01:45:01.653820-08:00,1014.4201049804688,10.725711,10725.711 +16718,2025-03-09T01:45:12.375626-08:00,1014.41015625,10.721806,10721.806 +16719,2025-03-09T01:45:23.106449-08:00,1014.40869140625,10.730823,10730.823 +16720,2025-03-09T01:45:33.836572-08:00,1014.40869140625,10.730123,10730.123 +16721,2025-03-09T01:45:44.569644-08:00,1014.4182739257812,10.733072,10733.072 +16722,2025-03-09T01:45:55.296663-08:00,1014.4317016601562,10.727019,10727.019 +16723,2025-03-09T01:46:06.032449-08:00,1014.4020385742188,10.735786,10735.786 +16724,2025-03-09T01:46:16.755278-08:00,1014.4137573242188,10.722829,10722.829 +16725,2025-03-09T01:46:27.485445-08:00,1014.43359375,10.730167,10730.167 +16726,2025-03-09T01:46:38.214626-08:00,1014.4071655273438,10.729181,10729.181 +16727,2025-03-09T01:46:48.942440-08:00,1014.3987426757812,10.727814,10727.814 +16728,2025-03-09T01:46:59.674447-08:00,1014.397216796875,10.732007,10732.007 +16729,2025-03-09T01:47:10.408444-08:00,1014.3890380859375,10.733997,10733.997 +16730,2025-03-09T01:47:21.133467-08:00,1014.384033203125,10.725023,10725.023 +16731,2025-03-09T01:47:31.871656-08:00,1014.390625,10.738189,10738.189 +16732,2025-03-09T01:47:42.593638-08:00,1014.4004516601562,10.721982,10721.982 +16733,2025-03-09T01:47:53.326446-08:00,1014.408935546875,10.732808,10732.808 +16734,2025-03-09T01:48:04.056542-08:00,1014.3890380859375,10.730096,10730.096 +16735,2025-03-09T01:48:14.776625-08:00,1014.3990478515625,10.720083,10720.083 +16736,2025-03-09T01:48:25.504656-08:00,1014.4320068359375,10.728031,10728.031 +16737,2025-03-09T01:48:36.231645-08:00,1014.4269409179688,10.726989,10726.989 +16738,2025-03-09T01:48:46.960443-08:00,1014.4188232421875,10.728798,10728.798 +16739,2025-03-09T01:48:57.694443-08:00,1014.3909301757812,10.734,10734.0 +16740,2025-03-09T01:49:08.425449-08:00,1014.3626708984375,10.731006,10731.006 +16741,2025-03-09T01:49:19.155881-08:00,1014.3792114257812,10.730432,10730.432 +16742,2025-03-09T01:49:29.877443-08:00,1014.3909301757812,10.721562,10721.562 +16743,2025-03-09T01:49:40.610129-08:00,1014.3890380859375,10.732686,10732.686 +16744,2025-03-09T01:49:51.333443-08:00,1014.3909301757812,10.723314,10723.314 +16745,2025-03-09T01:50:02.063447-08:00,1014.3956909179688,10.730004,10730.004 +16746,2025-03-09T01:50:12.797611-08:00,1014.40234375,10.734164,10734.164 +16747,2025-03-09T01:50:23.524598-08:00,1014.377685546875,10.726987,10726.987 +16748,2025-03-09T01:50:34.257447-08:00,1014.3795166015625,10.732849,10732.849 +16749,2025-03-09T01:50:44.982751-08:00,1014.3743896484375,10.725304,10725.304 +16750,2025-03-09T01:50:55.707649-08:00,1014.3692016601562,10.724898,10724.898 +16751,2025-03-09T01:51:06.433620-08:00,1014.34130859375,10.725971,10725.971 +16752,2025-03-09T01:51:17.166494-08:00,1014.3677978515625,10.732874,10732.874 +16753,2025-03-09T01:51:27.897439-08:00,1014.3626708984375,10.730945,10730.945 +16754,2025-03-09T01:51:37.979986-08:00,1014.3596801757812,10.082547,10082.547 +16755,2025-03-09T01:51:38.624640-08:00,1014.3379516601562,0.644654,644.654 +16756,2025-03-09T01:51:49.355440-08:00,1014.372802734375,10.7308,10730.8 +16757,2025-03-09T01:52:00.086445-08:00,1014.3743896484375,10.731005,10731.005 +16758,2025-03-09T01:52:10.808593-08:00,1014.3512573242188,10.722148,10722.148 +16759,2025-03-09T01:52:21.541447-08:00,1014.3761596679688,10.732854,10732.854 +16760,2025-03-09T01:52:32.328490-08:00,1014.3482055664062,10.787043,10787.043 +16761,2025-03-09T01:52:43.058300-08:00,1014.3861083984375,10.72981,10729.81 +16762,2025-03-09T01:52:53.786306-08:00,1014.303466796875,10.728006,10728.006 +16763,2025-03-09T01:53:04.509734-08:00,1014.3265380859375,10.723428,10723.428 +16764,2025-03-09T01:53:15.236307-08:00,1014.3331298828125,10.726573,10726.573 +16765,2025-03-09T01:53:25.961526-08:00,1014.3529663085938,10.725219,10725.219 +16766,2025-03-09T01:53:36.696657-08:00,1014.322021484375,10.735131,10735.131 +16767,2025-03-09T01:53:47.415302-08:00,1014.3154907226562,10.718645,10718.645 +16768,2025-03-09T01:53:58.153757-08:00,1014.2725219726562,10.738455,10738.455 +16769,2025-03-09T01:54:08.876376-08:00,1014.3253173828125,10.722619,10722.619 +16770,2025-03-09T01:54:19.600509-08:00,1014.320556640625,10.724133,10724.133 +16771,2025-03-09T01:54:30.334041-08:00,1014.302490234375,10.733532,10733.532 +16772,2025-03-09T01:54:41.065302-08:00,1014.327392578125,10.731261,10731.261 +16773,2025-03-09T01:54:51.792519-08:00,1014.3373413085938,10.727217,10727.217 +16774,2025-03-09T01:55:02.516430-08:00,1014.3490600585938,10.723911,10723.911 +16775,2025-03-09T01:55:13.240493-08:00,1014.29638671875,10.724063,10724.063 +16776,2025-03-09T01:55:23.974482-08:00,1014.3114013671875,10.733989,10733.989 +16777,2025-03-09T01:55:34.701339-08:00,1014.2882690429688,10.726857,10726.857 +16778,2025-03-09T01:55:45.421643-08:00,1014.2999267578125,10.720304,10720.304 +16779,2025-03-09T01:55:56.156591-08:00,1014.3052978515625,10.734948,10734.948 +16780,2025-03-09T01:56:06.878642-08:00,1014.3184204101562,10.722051,10722.051 +16781,2025-03-09T01:56:17.607497-08:00,1014.3171997070312,10.728855,10728.855 +16782,2025-03-09T01:56:28.324307-08:00,1014.3192138671875,10.71681,10716.81 +16783,2025-03-09T01:56:39.053695-08:00,1014.30126953125,10.729388,10729.388 +16784,2025-03-09T01:56:49.773304-08:00,1014.2915649414062,10.719609,10719.609 +16785,2025-03-09T01:57:00.502526-08:00,1014.3031005859375,10.729222,10729.222 +16786,2025-03-09T01:57:11.232304-08:00,1014.273681640625,10.729778,10729.778 +16787,2025-03-09T01:57:21.960308-08:00,1014.267333984375,10.728004,10728.004 +16788,2025-03-09T01:57:32.677576-08:00,1014.28076171875,10.717268,10717.268 +16789,2025-03-09T01:57:43.412305-08:00,1014.267822265625,10.734729,10734.729 +16790,2025-03-09T01:57:54.141537-08:00,1014.2777099609375,10.729232,10729.232 +16791,2025-03-09T01:58:04.858369-08:00,1014.2368774414062,10.716832,10716.832 +16792,2025-03-09T01:58:15.585308-08:00,1014.2731323242188,10.726939,10726.939 +16793,2025-03-09T01:58:26.309333-08:00,1014.2318725585938,10.724025,10724.025 +16794,2025-03-09T01:58:37.041302-08:00,1014.237060546875,10.731969,10731.969 +16795,2025-03-09T01:58:47.764497-08:00,1014.2306518554688,10.723195,10723.195 +16796,2025-03-09T01:58:58.497340-08:00,1014.2257690429688,10.732843,10732.843 +16797,2025-03-09T01:59:09.219055-08:00,1014.2537231445312,10.721715,10721.715 +16798,2025-03-09T01:59:19.943370-08:00,1014.2290649414062,10.724315,10724.315 +16799,2025-03-09T01:59:30.665491-08:00,1014.2307739257812,10.722121,10722.121 +16800,2025-03-09T01:59:41.396035-08:00,1014.234375,10.730544,10730.544 +16801,2025-03-09T01:59:52.124518-08:00,1014.2212524414062,10.728483,10728.483 +16802,2025-03-09T03:00:02.842479-07:00,1014.2193603515625,10.717961,10717.961 +16803,2025-03-09T03:00:13.573308-07:00,1014.204345703125,10.730829,10730.829 +16804,2025-03-09T03:00:24.305303-07:00,1014.2093505859375,10.731995,10731.995 +16805,2025-03-09T03:00:35.029871-07:00,1014.1947021484375,10.724568,10724.568 +16806,2025-03-09T03:00:45.750716-07:00,1014.2013549804688,10.720845,10720.845 +16807,2025-03-09T03:00:56.480401-07:00,1014.212646484375,10.729685,10729.685 +16808,2025-03-09T03:01:07.213618-07:00,1014.2061157226562,10.733217,10733.217 +16809,2025-03-09T03:01:17.940307-07:00,1014.1964721679688,10.726689,10726.689 +16810,2025-03-09T03:01:28.669488-07:00,1014.209716796875,10.729181,10729.181 +16811,2025-03-09T03:01:39.388536-07:00,1014.197998046875,10.719048,10719.048 +16812,2025-03-09T03:01:50.115497-07:00,1014.2178344726562,10.726961,10726.961 +16813,2025-03-09T03:02:00.848614-07:00,1014.2192993164062,10.733117,10733.117 +16814,2025-03-09T03:02:11.579338-07:00,1014.2192993164062,10.730724,10730.724 +16815,2025-03-09T03:02:22.303488-07:00,1014.2061157226562,10.72415,10724.15 +16816,2025-03-09T03:02:33.026449-07:00,1014.212646484375,10.722961,10722.961 +16817,2025-03-09T03:02:43.753455-07:00,1014.1881103515625,10.727006,10727.006 +16818,2025-03-09T03:02:54.479517-07:00,1014.2093505859375,10.726062,10726.062 +16819,2025-03-09T03:03:05.210382-07:00,1014.1749267578125,10.730865,10730.865 +16820,2025-03-09T03:03:15.934741-07:00,1014.1881103515625,10.724359,10724.359 +16821,2025-03-09T03:03:26.664301-07:00,1014.1617431640625,10.72956,10729.56 +16822,2025-03-09T03:03:37.395336-07:00,1014.1565551757812,10.731035,10731.035 +16823,2025-03-09T03:03:48.119659-07:00,1014.146728515625,10.724323,10724.323 +16824,2025-03-09T03:03:58.846316-07:00,1014.146728515625,10.726657,10726.657 +16825,2025-03-09T03:04:09.584534-07:00,1014.138427734375,10.738218,10738.218 +16826,2025-03-09T03:04:20.312304-07:00,1014.177978515625,10.72777,10727.77 +16827,2025-03-09T03:04:31.033307-07:00,1014.189453125,10.721003,10721.003 +16828,2025-03-09T03:04:41.767475-07:00,1014.1402587890625,10.734168,10734.168 +16829,2025-03-09T03:04:52.490454-07:00,1014.1318969726562,10.722979,10722.979 +16830,2025-03-09T03:05:03.220710-07:00,1014.169677734375,10.730256,10730.256 +16831,2025-03-09T03:05:13.948305-07:00,1014.143310546875,10.727595,10727.595 +16832,2025-03-09T03:05:24.670302-07:00,1014.1595458984375,10.721997,10721.997 +16833,2025-03-09T03:05:35.399476-07:00,1014.1397094726562,10.729174,10729.174 +16834,2025-03-09T03:05:46.131307-07:00,1014.1015625,10.731831,10731.831 +16835,2025-03-09T03:05:56.861303-07:00,1014.126220703125,10.729996,10729.996 +16836,2025-03-09T03:06:07.587436-07:00,1014.1148681640625,10.726133,10726.133 +16837,2025-03-09T03:06:18.312307-07:00,1014.1148681640625,10.724871,10724.871 +16838,2025-03-09T03:06:29.048310-07:00,1014.0914916992188,10.736003,10736.003 +16839,2025-03-09T03:06:39.773331-07:00,1014.0948486328125,10.725021,10725.021 +16840,2025-03-09T03:06:50.503311-07:00,1014.1029663085938,10.72998,10729.98 +16841,2025-03-09T03:07:01.233323-07:00,1014.09814453125,10.730012,10730.012 +16842,2025-03-09T03:07:11.959509-07:00,1014.1011962890625,10.726186,10726.186 +16843,2025-03-09T03:07:22.699308-07:00,1014.0931396484375,10.739799,10739.799 +16844,2025-03-09T03:07:33.429343-07:00,1014.07958984375,10.730035,10730.035 +16845,2025-03-09T03:07:44.156499-07:00,1014.06787109375,10.727156,10727.156 +16846,2025-03-09T03:07:54.886543-07:00,1014.061279296875,10.730044,10730.044 +16847,2025-03-09T03:08:05.616481-07:00,1014.0778198242188,10.729938,10729.938 +16848,2025-03-09T03:08:16.347302-07:00,1014.0943603515625,10.730821,10730.821 +16849,2025-03-09T03:08:27.071300-07:00,1014.10400390625,10.723998,10723.998 +16850,2025-03-09T03:08:37.793588-07:00,1014.0709228515625,10.722288,10722.288 +16851,2025-03-09T03:08:48.524511-07:00,1014.067626953125,10.730923,10730.923 +16852,2025-03-09T03:08:59.248112-07:00,1014.0596313476562,10.723601,10723.601 +16853,2025-03-09T03:09:09.986817-07:00,1014.0379638671875,10.738705,10738.705 +16854,2025-03-09T03:09:20.704300-07:00,1014.0476684570312,10.717483,10717.483 +16855,2025-03-09T03:09:31.437506-07:00,1014.052734375,10.733206,10733.206 +16856,2025-03-09T03:09:42.165520-07:00,1014.0443725585938,10.728014,10728.014 +16857,2025-03-09T03:09:52.890521-07:00,1014.05908203125,10.725001,10725.001 +16858,2025-03-09T03:10:03.619407-07:00,1014.0359497070312,10.728886,10728.886 +16859,2025-03-09T03:10:14.343309-07:00,1014.0359497070312,10.723902,10723.902 +16860,2025-03-09T03:10:25.073493-07:00,1014.0161743164062,10.730184,10730.184 +16861,2025-03-09T03:10:35.792517-07:00,1014.014404296875,10.719024,10719.024 +16862,2025-03-09T03:10:46.531307-07:00,1014.0078125,10.73879,10738.79 +16863,2025-03-09T03:10:57.256866-07:00,1014.0042114257812,10.725559,10725.559 +16864,2025-03-09T03:11:07.991458-07:00,1014.033935546875,10.734592,10734.592 +16865,2025-03-09T03:11:18.720514-07:00,1014.02880859375,10.729056,10729.056 +16866,2025-03-09T03:11:29.449499-07:00,1014.0042114257812,10.728985,10728.985 +16867,2025-03-09T03:11:40.169309-07:00,1013.9859619140625,10.71981,10719.81 +16868,2025-03-09T03:11:50.904523-07:00,1013.9823608398438,10.735214,10735.214 +16869,2025-03-09T03:12:01.629304-07:00,1013.984130859375,10.724781,10724.781 +16870,2025-03-09T03:12:12.362303-07:00,1013.9658813476562,10.732999,10732.999 +16871,2025-03-09T03:12:23.091501-07:00,1013.9922485351562,10.729198,10729.198 +16872,2025-03-09T03:12:33.816515-07:00,1013.9607543945312,10.725014,10725.014 +16873,2025-03-09T03:12:44.538524-07:00,1013.98388671875,10.722009,10722.009 +16874,2025-03-09T03:12:55.266405-07:00,1014.010009765625,10.727881,10727.881 +16875,2025-03-09T03:13:06.000301-07:00,1013.9637451171875,10.733896,10733.896 +16876,2025-03-09T03:13:16.723403-07:00,1013.9752197265625,10.723102,10723.102 +16877,2025-03-09T03:13:27.452600-07:00,1013.9935913085938,10.729197,10729.197 +16878,2025-03-09T03:13:38.183363-07:00,1013.9635009765625,10.730763,10730.763 +16879,2025-03-09T03:13:48.913484-07:00,1013.958740234375,10.730121,10730.121 +16880,2025-03-09T03:13:59.641303-07:00,1013.95361328125,10.727819,10727.819 +16881,2025-03-09T03:14:10.365318-07:00,1013.963623046875,10.724015,10724.015 +16882,2025-03-09T03:14:21.102361-07:00,1013.9650268554688,10.737043,10737.043 +16883,2025-03-09T03:14:31.832305-07:00,1013.9434204101562,10.729944,10729.944 +16884,2025-03-09T03:14:42.561493-07:00,1013.9564208984375,10.729188,10729.188 +16885,2025-03-09T03:14:53.284309-07:00,1013.9398193359375,10.722816,10722.816 +16886,2025-03-09T03:15:04.015375-07:00,1013.9447021484375,10.731066,10731.066 +16887,2025-03-09T03:15:14.752310-07:00,1013.9248657226562,10.736935,10736.935 +16888,2025-03-09T03:15:25.481386-07:00,1013.9513549804688,10.729076,10729.076 +16889,2025-03-09T03:15:36.210514-07:00,1013.9149780273438,10.729128,10729.128 +16890,2025-03-09T03:15:46.933520-07:00,1013.9312744140625,10.723006,10723.006 +16891,2025-03-09T03:15:57.669485-07:00,1013.9146728515625,10.735965,10735.965 +16892,2025-03-09T03:16:08.391519-07:00,1013.911376953125,10.722034,10722.034 +16893,2025-03-09T03:16:19.121813-07:00,1013.9110717773438,10.730294,10730.294 +16894,2025-03-09T03:16:29.847310-07:00,1013.9207763671875,10.725497,10725.497 +16895,2025-03-09T03:16:40.565486-07:00,1013.8976440429688,10.718176,10718.176 +16896,2025-03-09T03:16:51.293304-07:00,1013.8778076171875,10.727818,10727.818 +16897,2025-03-09T03:17:02.024519-07:00,1013.9090576171875,10.731215,10731.215 +16898,2025-03-09T03:17:12.746516-07:00,1013.9204711914062,10.721997,10721.997 +16899,2025-03-09T03:17:23.478308-07:00,1013.903564453125,10.731792,10731.792 +16900,2025-03-09T03:17:34.199867-07:00,1013.90185546875,10.721559,10721.559 +16901,2025-03-09T03:17:44.925307-07:00,1013.8986206054688,10.72544,10725.44 +16902,2025-03-09T03:17:55.656309-07:00,1013.90185546875,10.731002,10731.002 +16903,2025-03-09T03:18:06.388180-07:00,1013.89013671875,10.731871,10731.871 +16904,2025-03-09T03:18:17.111309-07:00,1013.89501953125,10.723129,10723.129 +16905,2025-03-09T03:18:27.844605-07:00,1013.903076171875,10.733296,10733.296 +16906,2025-03-09T03:18:38.565336-07:00,1013.8982543945312,10.720731,10720.731 +16907,2025-03-09T03:18:49.293304-07:00,1013.9078369140625,10.727968,10727.968 +16908,2025-03-09T03:19:00.018567-07:00,1013.8829956054688,10.725263,10725.263 +16909,2025-03-09T03:19:10.752307-07:00,1013.88623046875,10.73374,10733.74 +16910,2025-03-09T03:19:21.471716-07:00,1013.8877563476562,10.719409,10719.409 +16911,2025-03-09T03:19:32.206304-07:00,1013.8696899414062,10.734588,10734.588 +16912,2025-03-09T03:19:42.932357-07:00,1013.89111328125,10.726053,10726.053 +16913,2025-03-09T03:19:53.661475-07:00,1013.87939453125,10.729118,10729.118 +16914,2025-03-09T03:20:04.390374-07:00,1013.83154296875,10.728899,10728.899 +16915,2025-03-09T03:20:15.115128-07:00,1013.84814453125,10.724754,10724.754 +16916,2025-03-09T03:20:25.846305-07:00,1013.8679809570312,10.731177,10731.177 +16917,2025-03-09T03:20:36.565335-07:00,1013.9105224609375,10.71903,10719.03 +16918,2025-03-09T03:20:47.293006-07:00,1013.8643188476562,10.727671,10727.671 +16919,2025-03-09T03:20:58.023304-07:00,1013.8727416992188,10.730298,10730.298 +16920,2025-03-09T03:21:08.755497-07:00,1013.85107421875,10.732193,10732.193 +16921,2025-03-09T03:21:19.478926-07:00,1013.88232421875,10.723429,10723.429 +16922,2025-03-09T03:21:30.207306-07:00,1013.875732421875,10.72838,10728.38 +16923,2025-03-09T03:21:40.928214-07:00,1013.8807983398438,10.720908,10720.908 +16924,2025-03-09T03:21:51.658305-07:00,1013.8411865234375,10.730091,10730.091 +16925,2025-03-09T03:22:02.387487-07:00,1013.8361206054688,10.729182,10729.182 +16926,2025-03-09T03:22:13.113575-07:00,1013.8441162109375,10.726088,10726.088 +16927,2025-03-09T03:22:23.843305-07:00,1013.8591918945312,10.72973,10729.73 +16928,2025-03-09T03:22:34.564061-07:00,1013.8492431640625,10.720756,10720.756 +16929,2025-03-09T03:22:45.298721-07:00,1013.8507690429688,10.73466,10734.66 +16930,2025-03-09T03:22:56.022499-07:00,1013.8540649414062,10.723778,10723.778 +16931,2025-03-09T03:23:06.750347-07:00,1013.8375244140625,10.727848,10727.848 +16932,2025-03-09T03:23:17.480504-07:00,1013.845947265625,10.730157,10730.157 +16933,2025-03-09T03:23:28.218307-07:00,1013.8507690429688,10.737803,10737.803 +16934,2025-03-09T03:23:38.945149-07:00,1013.83935546875,10.726842,10726.842 +16935,2025-03-09T03:23:49.676304-07:00,1013.8375244140625,10.731155,10731.155 +16936,2025-03-09T03:24:00.401529-07:00,1013.8507690429688,10.725225,10725.225 +16937,2025-03-09T03:24:11.132308-07:00,1013.8309326171875,10.730779,10730.779 +16938,2025-03-09T03:24:21.858544-07:00,1013.8244018554688,10.726236,10726.236 +16939,2025-03-09T03:24:32.591322-07:00,1013.8309326171875,10.732778,10732.778 +16940,2025-03-09T03:24:43.309306-07:00,1013.8261108398438,10.717984,10717.984 +16941,2025-03-09T03:24:54.037507-07:00,1013.8294677734375,10.728201,10728.201 +16942,2025-03-09T03:25:04.770912-07:00,1013.789794921875,10.733405,10733.405 +16943,2025-03-09T03:25:15.498311-07:00,1013.78173828125,10.727399,10727.399 +16944,2025-03-09T03:25:26.229441-07:00,1013.7948608398438,10.73113,10731.13 +16945,2025-03-09T03:25:36.947305-07:00,1013.8015747070312,10.717864,10717.864 +16946,2025-03-09T03:25:47.674760-07:00,1013.7882690429688,10.727455,10727.455 +16947,2025-03-09T03:25:58.407372-07:00,1013.7868041992188,10.732612,10732.612 +16948,2025-03-09T03:26:09.132057-07:00,1013.7750854492188,10.724685,10724.685 +16949,2025-03-09T03:26:19.859913-07:00,1013.79345703125,10.727856,10727.856 +16950,2025-03-09T03:26:30.579301-07:00,1013.7703247070312,10.719388,10719.388 +16951,2025-03-09T03:26:41.312547-07:00,1013.7868041992188,10.733246,10733.246 +16952,2025-03-09T03:26:52.035453-07:00,1013.7703247070312,10.722906,10722.906 +16953,2025-03-09T03:27:02.765305-07:00,1013.77685546875,10.729852,10729.852 +16954,2025-03-09T03:27:13.490500-07:00,1013.7901611328125,10.725195,10725.195 +16955,2025-03-09T03:27:24.213305-07:00,1013.7438354492188,10.722805,10722.805 +16956,2025-03-09T03:27:34.940530-07:00,1013.76220703125,10.727225,10727.225 +16957,2025-03-09T03:27:45.675124-07:00,1013.7092895507812,10.734594,10734.594 +16958,2025-03-09T03:27:56.395307-07:00,1013.73388671875,10.720183,10720.183 +16959,2025-03-09T03:28:07.120148-07:00,1013.720703125,10.724841,10724.841 +16960,2025-03-09T03:28:17.843304-07:00,1013.73388671875,10.723156,10723.156 +16961,2025-03-09T03:28:28.567490-07:00,1013.7045288085938,10.724186,10724.186 +16962,2025-03-09T03:28:39.297302-07:00,1013.7111206054688,10.729812,10729.812 +16963,2025-03-09T03:28:50.016131-07:00,1013.73095703125,10.718829,10718.829 +16964,2025-03-09T03:29:00.744382-07:00,1013.744140625,10.728251,10728.251 +16965,2025-03-09T03:29:11.461771-07:00,1013.7224731445312,10.717389,10717.389 +16966,2025-03-09T03:29:22.194308-07:00,1013.6912231445312,10.732537,10732.537 +16967,2025-03-09T03:29:32.926308-07:00,1013.6912231445312,10.732,10732.0 +16968,2025-03-09T03:29:43.648783-07:00,1013.7111206054688,10.722475,10722.475 +16969,2025-03-09T03:29:54.371304-07:00,1013.7045288085938,10.722521,10722.521 +16970,2025-03-09T03:30:05.107308-07:00,1013.6882934570312,10.736004,10736.004 +16971,2025-03-09T03:30:15.831980-07:00,1013.7029418945312,10.724672,10724.672 +16972,2025-03-09T03:30:26.556335-07:00,1013.6934204101562,10.724355,10724.355 +16973,2025-03-09T03:30:37.282487-07:00,1013.69482421875,10.726152,10726.152 +16974,2025-03-09T03:30:48.004306-07:00,1013.66357421875,10.721819,10721.819 +16975,2025-03-09T03:30:58.737609-07:00,1013.6900634765625,10.733303,10733.303 +16976,2025-03-09T03:31:09.464304-07:00,1013.6834106445312,10.726695,10726.695 +16977,2025-03-09T03:31:20.188670-07:00,1013.6981811523438,10.724366,10724.366 +16978,2025-03-09T03:31:30.909401-07:00,1013.6820068359375,10.720731,10720.731 +16979,2025-03-09T03:31:41.637392-07:00,1013.655517578125,10.727991,10727.991 +16980,2025-03-09T03:31:52.366532-07:00,1013.6867065429688,10.72914,10729.14 +16981,2025-03-09T03:32:03.090302-07:00,1013.6521606445312,10.72377,10723.77 +16982,2025-03-09T03:32:13.817307-07:00,1013.6537475585938,10.727005,10727.005 +16983,2025-03-09T03:32:24.543562-07:00,1013.6638793945312,10.726255,10726.255 +16984,2025-03-09T03:32:35.278304-07:00,1013.6573486328125,10.734742,10734.742 +16985,2025-03-09T03:32:46.009484-07:00,1013.627685546875,10.73118,10731.18 +16986,2025-03-09T03:32:56.733305-07:00,1013.6195068359375,10.723821,10723.821 +16987,2025-03-09T03:33:07.458502-07:00,1013.6195068359375,10.725197,10725.197 +16988,2025-03-09T03:33:18.187499-07:00,1013.639404296875,10.728997,10728.997 +16989,2025-03-09T03:33:28.920305-07:00,1013.6573486328125,10.732806,10732.806 +16990,2025-03-09T03:33:39.642572-07:00,1013.622802734375,10.722267,10722.267 +16991,2025-03-09T03:33:50.370512-07:00,1013.635986328125,10.72794,10727.94 +16992,2025-03-09T03:34:01.103829-07:00,1013.6609497070312,10.733317,10733.317 +16993,2025-03-09T03:34:11.826478-07:00,1013.6246337890625,10.722649,10722.649 +16994,2025-03-09T03:34:22.557597-07:00,1013.6326293945312,10.731119,10731.119 +16995,2025-03-09T03:34:33.275496-07:00,1013.5867309570312,10.717899,10717.899 +16996,2025-03-09T03:34:44.001304-07:00,1013.6429443359375,10.725808,10725.808 +16997,2025-03-09T03:34:54.730305-07:00,1013.6182861328125,10.729001,10729.001 +16998,2025-03-09T03:35:05.457479-07:00,1013.6101684570312,10.727174,10727.174 +16999,2025-03-09T03:35:16.177371-07:00,1013.6348266601562,10.719892,10719.892 +17000,2025-03-09T03:35:26.913482-07:00,1013.6264038085938,10.736111,10736.111 +17001,2025-03-09T03:35:37.639374-07:00,1013.6249389648438,10.725892,10725.892 +17002,2025-03-09T03:35:48.354447-07:00,1013.6101684570312,10.715073,10715.073 +17003,2025-03-09T03:35:59.080549-07:00,1013.588623046875,10.726102,10726.102 +17004,2025-03-09T03:36:09.811808-07:00,1013.643310546875,10.731259,10731.259 +17005,2025-03-09T03:36:20.537481-07:00,1013.6201782226562,10.725673,10725.673 +17006,2025-03-09T03:36:31.272304-07:00,1013.5951538085938,10.734823,10734.823 +17007,2025-03-09T03:36:41.993334-07:00,1013.588623046875,10.72103,10721.03 +17008,2025-03-09T03:36:52.718415-07:00,1013.5903930664062,10.725081,10725.081 +17009,2025-03-09T03:37:03.446487-07:00,1013.6035766601562,10.728072,10728.072 +17010,2025-03-09T03:37:14.177483-07:00,1013.5804443359375,10.730996,10730.996 +17011,2025-03-09T03:37:24.898503-07:00,1013.600341796875,10.72102,10721.02 +17012,2025-03-09T03:37:35.625371-07:00,1013.5671997070312,10.726868,10726.868 +17013,2025-03-09T03:37:46.348304-07:00,1013.5921630859375,10.722933,10722.933 +17014,2025-03-09T03:37:57.068493-07:00,1013.583740234375,10.720189,10720.189 +17015,2025-03-09T03:38:07.794301-07:00,1013.59033203125,10.725808,10725.808 +17016,2025-03-09T03:38:18.527307-07:00,1013.59033203125,10.733006,10733.006 +17017,2025-03-09T03:38:29.252680-07:00,1013.5987548828125,10.725373,10725.373 +17018,2025-03-09T03:38:39.976304-07:00,1013.5624389648438,10.723624,10723.624 +17019,2025-03-09T03:38:50.698932-07:00,1013.582275390625,10.722628,10722.628 +17020,2025-03-09T03:39:01.424307-07:00,1013.557373046875,10.725375,10725.375 +17021,2025-03-09T03:39:12.154305-07:00,1013.5675048828125,10.729998,10729.998 +17022,2025-03-09T03:39:22.876568-07:00,1013.5855712890625,10.722263,10722.263 +17023,2025-03-09T03:39:33.608514-07:00,1013.552490234375,10.731946,10731.946 +17024,2025-03-09T03:39:44.331495-07:00,1013.564208984375,10.722981,10722.981 +17025,2025-03-09T03:39:55.058493-07:00,1013.564208984375,10.726998,10726.998 +17026,2025-03-09T03:40:05.782302-07:00,1013.5348510742188,10.723809,10723.809 +17027,2025-03-09T03:40:16.514085-07:00,1013.575927734375,10.731783,10731.783 +17028,2025-03-09T03:40:27.237333-07:00,1013.5693969726562,10.723248,10723.248 +17029,2025-03-09T03:40:37.961496-07:00,1013.5264282226562,10.724163,10724.163 +17030,2025-03-09T03:40:48.690335-07:00,1013.5825805664062,10.728839,10728.839 +17031,2025-03-09T03:40:59.416317-07:00,1013.532958984375,10.725982,10725.982 +17032,2025-03-09T03:41:10.141638-07:00,1013.544677734375,10.725321,10725.321 +17033,2025-03-09T03:41:20.857913-07:00,1013.5348510742188,10.716275,10716.275 +17034,2025-03-09T03:41:31.592629-07:00,1013.5381469726562,10.734716,10734.716 +17035,2025-03-09T03:41:42.315773-07:00,1013.5315551757812,10.723144,10723.144 +17036,2025-03-09T03:41:53.030709-07:00,1013.5264282226562,10.714936,10714.936 +17037,2025-03-09T03:42:03.755304-07:00,1013.51171875,10.724595,10724.595 +17038,2025-03-09T03:42:14.487487-07:00,1013.5234375,10.732183,10732.183 +17039,2025-03-09T03:42:25.209514-07:00,1013.5150146484375,10.722027,10722.027 +17040,2025-03-09T03:42:35.937375-07:00,1013.501708984375,10.727861,10727.861 +17041,2025-03-09T03:42:46.665345-07:00,1013.5083618164062,10.72797,10727.97 +17042,2025-03-09T03:42:57.390508-07:00,1013.5215454101562,10.725163,10725.163 +17043,2025-03-09T03:43:08.115537-07:00,1013.5003051757812,10.725029,10725.029 +17044,2025-03-09T03:43:18.850307-07:00,1013.513427734375,10.73477,10734.77 +17045,2025-03-09T03:43:29.574563-07:00,1013.5036010742188,10.724256,10724.256 +17046,2025-03-09T03:43:40.300428-07:00,1013.5036010742188,10.725865,10725.865 +17047,2025-03-09T03:43:51.023548-07:00,1013.5101318359375,10.72312,10723.12 +17048,2025-03-09T03:44:01.747587-07:00,1013.5006103515625,10.724039,10724.039 +17049,2025-03-09T03:44:12.477304-07:00,1013.4788818359375,10.729717,10729.717 +17050,2025-03-09T03:44:23.197498-07:00,1013.4939575195312,10.720194,10720.194 +17051,2025-03-09T03:44:33.929529-07:00,1013.4921875,10.732031,10732.031 +17052,2025-03-09T03:44:44.654507-07:00,1013.4723510742188,10.724978,10724.978 +17053,2025-03-09T03:44:55.373036-07:00,1013.45068359375,10.718529,10718.529 +17054,2025-03-09T03:45:06.097518-07:00,1013.4788818359375,10.724482,10724.482 +17055,2025-03-09T03:45:16.829846-07:00,1013.4656982421875,10.732328,10732.328 +17056,2025-03-09T03:45:27.550307-07:00,1013.44921875,10.720461,10720.461 +17057,2025-03-09T03:45:38.283595-07:00,1013.45068359375,10.733288,10733.288 +17058,2025-03-09T03:45:49.002412-07:00,1013.4690551757812,10.718817,10718.817 +17059,2025-03-09T03:45:59.732337-07:00,1013.4639282226562,10.729925,10729.925 +17060,2025-03-09T03:46:10.458326-07:00,1013.482177734375,10.725989,10725.989 +17061,2025-03-09T03:46:21.183415-07:00,1013.46240234375,10.725089,10725.089 +17062,2025-03-09T03:46:31.904304-07:00,1013.4888305664062,10.720889,10720.889 +17063,2025-03-09T03:46:42.631621-07:00,1013.4473266601562,10.727317,10727.317 +17064,2025-03-09T03:46:53.353507-07:00,1013.46240234375,10.721886,10721.886 +17065,2025-03-09T03:47:04.082371-07:00,1013.4671630859375,10.728864,10728.864 +17066,2025-03-09T03:47:14.808764-07:00,1013.4723510742188,10.726393,10726.393 +17067,2025-03-09T03:47:25.537304-07:00,1013.4606323242188,10.72854,10728.54 +17068,2025-03-09T03:47:36.266306-07:00,1013.439208984375,10.729002,10729.002 +17069,2025-03-09T03:47:46.990484-07:00,1013.43115234375,10.724178,10724.178 +17070,2025-03-09T03:47:57.708306-07:00,1013.4542846679688,10.717822,10717.822 +17071,2025-03-09T03:48:08.442542-07:00,1013.4525146484375,10.734236,10734.236 +17072,2025-03-09T03:48:19.163508-07:00,1013.4296875,10.720966,10720.966 +17073,2025-03-09T03:48:29.896306-07:00,1013.436279296875,10.732798,10732.798 +17074,2025-03-09T03:48:40.618569-07:00,1013.450927734375,10.722263,10722.263 +17075,2025-03-09T03:48:51.343487-07:00,1013.4476318359375,10.724918,10724.918 +17076,2025-03-09T03:49:02.066490-07:00,1013.4411010742188,10.723003,10723.003 +17077,2025-03-09T03:49:12.798315-07:00,1013.4542846679688,10.731825,10731.825 +17078,2025-03-09T03:49:23.515705-07:00,1013.492431640625,10.71739,10717.39 +17079,2025-03-09T03:49:34.249755-07:00,1013.4248657226562,10.73405,10734.05 +17080,2025-03-09T03:49:44.975492-07:00,1013.4163818359375,10.725737,10725.737 +17081,2025-03-09T03:49:55.694343-07:00,1013.4314575195312,10.718851,10718.851 +17082,2025-03-09T03:50:06.429304-07:00,1013.4447021484375,10.734961,10734.961 +17083,2025-03-09T03:50:17.154325-07:00,1013.4199829101562,10.725021,10725.021 +17084,2025-03-09T03:50:27.870510-07:00,1013.4182739257812,10.716185,10716.185 +17085,2025-03-09T03:50:38.596479-07:00,1013.416748046875,10.725969,10725.969 +17086,2025-03-09T03:50:49.324454-07:00,1013.4199829101562,10.727975,10727.975 +17087,2025-03-09T03:51:00.056304-07:00,1013.43505859375,10.73185,10731.85 +17088,2025-03-09T03:51:10.782467-07:00,1013.4185180664062,10.726163,10726.163 +17089,2025-03-09T03:51:11.707153-07:00,1013.3953857421875,0.924686,924.686 +17090,2025-03-09T03:51:21.508307-07:00,1013.4202880859375,9.801154,9801.154 +17091,2025-03-09T03:51:32.234494-07:00,1013.4305419921875,10.726187,10726.187 +17092,2025-03-09T03:51:42.967867-07:00,1013.3926391601562,10.733373,10733.373 +17093,2025-03-09T03:51:53.695545-07:00,1013.3878784179688,10.727678,10727.678 +17094,2025-03-09T03:52:04.417508-07:00,1013.37646484375,10.721963,10721.963 +17095,2025-03-09T03:52:15.144477-07:00,1013.4014282226562,10.726969,10726.969 +17096,2025-03-09T03:52:25.845732-07:00,1013.39501953125,10.701255,10701.255 +17097,2025-03-09T03:52:36.567279-07:00,1013.3721923828125,10.721547,10721.547 +17098,2025-03-09T03:52:47.296740-07:00,1013.4054565429688,10.729461,10729.461 +17099,2025-03-09T03:52:58.016378-07:00,1013.3775024414062,10.719638,10719.638 +17100,2025-03-09T03:53:08.749282-07:00,1013.3829956054688,10.732904,10732.904 +17101,2025-03-09T03:53:19.471045-07:00,1013.3748168945312,10.721763,10721.763 +17102,2025-03-09T03:53:30.196648-07:00,1013.3933715820312,10.725603,10725.603 +17103,2025-03-09T03:53:40.920284-07:00,1013.3704833984375,10.723636,10723.636 +17104,2025-03-09T03:53:51.647429-07:00,1013.390625,10.727145,10727.145 +17105,2025-03-09T03:54:02.382289-07:00,1013.4254150390625,10.73486,10734.86 +17106,2025-03-09T03:54:13.102453-07:00,1013.4204711914062,10.720164,10720.164 +17107,2025-03-09T03:54:23.829358-07:00,1013.39404296875,10.726905,10726.905 +17108,2025-03-09T03:54:34.560283-07:00,1013.425537109375,10.730925,10730.925 +17109,2025-03-09T03:54:45.283776-07:00,1013.4306030273438,10.723493,10723.493 +17110,2025-03-09T03:54:56.017486-07:00,1013.4275512695312,10.73371,10733.71 +17111,2025-03-09T03:55:06.749517-07:00,1013.3864135742188,10.732031,10732.031 +17112,2025-03-09T03:55:17.477441-07:00,1013.381591796875,10.727924,10727.924 +17113,2025-03-09T03:55:28.212283-07:00,1013.3786010742188,10.734842,10734.842 +17114,2025-03-09T03:55:38.935296-07:00,1013.39501953125,10.723013,10723.013 +17115,2025-03-09T03:55:49.666553-07:00,1013.3652954101562,10.731257,10731.257 +17116,2025-03-09T03:56:00.391290-07:00,1013.3735961914062,10.724737,10724.737 +17117,2025-03-09T03:56:11.123897-07:00,1013.3523559570312,10.732607,10732.607 +17118,2025-03-09T03:56:21.847488-07:00,1013.3673706054688,10.723591,10723.591 +17119,2025-03-09T03:56:32.584309-07:00,1013.3624877929688,10.736821,10736.821 +17120,2025-03-09T03:56:43.311456-07:00,1013.3789672851562,10.727147,10727.147 +17121,2025-03-09T03:56:54.037279-07:00,1013.384033203125,10.725823,10725.823 +17122,2025-03-09T03:57:04.775480-07:00,1013.4120483398438,10.738201,10738.201 +17123,2025-03-09T03:57:15.498454-07:00,1013.3643188476562,10.722974,10722.974 +17124,2025-03-09T03:57:26.232348-07:00,1013.3558349609375,10.733894,10733.894 +17125,2025-03-09T03:57:36.959498-07:00,1013.3558349609375,10.72715,10727.15 +17126,2025-03-09T03:57:46.448956-07:00,1013.3873291015625,9.489458,9489.458 +17127,2025-03-09T03:57:47.693471-07:00,1013.3660888671875,1.244515,1244.515 +17128,2025-03-09T03:57:58.418325-07:00,1013.3477172851562,10.724854,10724.854 +17129,2025-03-09T03:58:09.155281-07:00,1013.3462524414062,10.736956,10736.956 +17130,2025-03-09T03:58:19.884491-07:00,1013.3462524414062,10.72921,10729.21 +17131,2025-03-09T03:58:30.612451-07:00,1013.352783203125,10.72796,10727.96 +17132,2025-03-09T03:58:41.336356-07:00,1013.3477172851562,10.723905,10723.905 +17133,2025-03-09T03:58:52.073685-07:00,1013.3214111328125,10.737329,10737.329 +17134,2025-03-09T03:59:02.795336-07:00,1013.35107421875,10.721651,10721.651 +17135,2025-03-09T03:59:13.524151-07:00,1013.3558349609375,10.728815,10728.815 +17136,2025-03-09T03:59:24.263685-07:00,1013.3937377929688,10.739534,10739.534 +17137,2025-03-09T03:59:34.983313-07:00,1013.3591918945312,10.719628,10719.628 +17138,2025-03-09T03:59:45.713796-07:00,1013.3657836914062,10.730483,10730.483 +17139,2025-03-09T03:59:56.450312-07:00,1013.3739013671875,10.736516,10736.516 +17140,2025-03-09T04:00:07.182501-07:00,1013.3640747070312,10.732189,10732.189 +17141,2025-03-09T04:00:17.902467-07:00,1013.3523559570312,10.719966,10719.966 +17142,2025-03-09T04:00:28.635392-07:00,1013.3523559570312,10.732925,10732.925 +17143,2025-03-09T04:00:39.361283-07:00,1013.3193969726562,10.725891,10725.891 +17144,2025-03-09T04:00:50.083997-07:00,1013.342529296875,10.722714,10722.714 +17145,2025-03-09T04:01:00.816571-07:00,1013.357177734375,10.732574,10732.574 +17146,2025-03-09T04:01:11.540459-07:00,1013.3373413085938,10.723888,10723.888 +17147,2025-03-09T04:01:22.263020-07:00,1013.3340454101562,10.722561,10722.561 +17148,2025-03-09T04:01:32.995647-07:00,1013.3275146484375,10.732627,10732.627 +17149,2025-03-09T04:01:43.729470-07:00,1013.3239135742188,10.733823,10733.823 +17150,2025-03-09T04:01:54.450289-07:00,1013.3419799804688,10.720819,10720.819 +17151,2025-03-09T04:02:05.179026-07:00,1013.3206176757812,10.728737,10728.737 +17152,2025-03-09T04:02:15.912471-07:00,1013.3222045898438,10.733445,10733.445 +17153,2025-03-09T04:02:26.634496-07:00,1013.3189086914062,10.722025,10722.025 +17154,2025-03-09T04:02:37.366457-07:00,1013.310791015625,10.731961,10731.961 +17155,2025-03-09T04:02:48.092285-07:00,1013.3384399414062,10.725828,10725.828 +17156,2025-03-09T04:02:58.815737-07:00,1013.333251953125,10.723452,10723.452 +17157,2025-03-09T04:03:09.552467-07:00,1013.30029296875,10.73673,10736.73 +17158,2025-03-09T04:03:20.282491-07:00,1013.3447875976562,10.730024,10730.024 +17159,2025-03-09T04:03:31.010287-07:00,1013.3069458007812,10.727796,10727.796 +17160,2025-03-09T04:03:41.731280-07:00,1013.3217163085938,10.720993,10720.993 +17161,2025-03-09T04:03:52.467358-07:00,1013.3033447265625,10.736078,10736.078 +17162,2025-03-09T04:04:03.185817-07:00,1013.3132934570312,10.718459,10718.459 +17163,2025-03-09T04:04:13.918548-07:00,1013.2835693359375,10.732731,10732.731 +17164,2025-03-09T04:04:24.644286-07:00,1013.291748046875,10.725738,10725.738 +17165,2025-03-09T04:04:35.379477-07:00,1013.2785034179688,10.735191,10735.191 +17166,2025-03-09T04:04:46.100281-07:00,1013.2686157226562,10.720804,10720.804 +17167,2025-03-09T04:04:56.832596-07:00,1013.2704467773438,10.732315,10732.315 +17168,2025-03-09T04:05:07.561568-07:00,1013.266845703125,10.728972,10728.972 +17169,2025-03-09T04:05:18.290285-07:00,1013.2701416015625,10.728717,10728.717 +17170,2025-03-09T04:05:29.022584-07:00,1013.266845703125,10.732299,10732.299 +17171,2025-03-09T04:05:39.755309-07:00,1013.2603149414062,10.732725,10732.725 +17172,2025-03-09T04:05:50.480287-07:00,1013.2501831054688,10.724978,10724.978 +17173,2025-03-09T04:06:01.215507-07:00,1013.251953125,10.73522,10735.22 +17174,2025-03-09T04:06:11.938485-07:00,1013.24169921875,10.722978,10722.978 +17175,2025-03-09T04:06:22.676281-07:00,1013.22998046875,10.737796,10737.796 +17176,2025-03-09T04:06:33.397529-07:00,1013.2384643554688,10.721248,10721.248 +17177,2025-03-09T04:06:44.133564-07:00,1013.228271484375,10.736035,10736.035 +17178,2025-03-09T04:06:54.866487-07:00,1013.2168579101562,10.732923,10732.923 +17179,2025-03-09T04:07:05.594210-07:00,1013.2265014648438,10.727723,10727.723 +17180,2025-03-09T04:07:16.329283-07:00,1013.228271484375,10.735073,10735.073 +17181,2025-03-09T04:07:27.061498-07:00,1013.2246704101562,10.732215,10732.215 +17182,2025-03-09T04:07:37.789285-07:00,1013.2265625,10.727787,10727.787 +17183,2025-03-09T04:07:48.525405-07:00,1013.2265625,10.73612,10736.12 +17184,2025-03-09T04:07:59.262364-07:00,1013.221435546875,10.736959,10736.959 +17185,2025-03-09T04:08:09.990495-07:00,1013.2129516601562,10.728131,10728.131 +17186,2025-03-09T04:08:20.731474-07:00,1013.242431640625,10.740979,10740.979 +17187,2025-03-09T04:08:31.460559-07:00,1013.2310791015625,10.729085,10729.085 +17188,2025-03-09T04:08:42.187282-07:00,1013.197998046875,10.726723,10726.723 +17189,2025-03-09T04:08:52.919337-07:00,1013.2127075195312,10.732055,10732.055 +17190,2025-03-09T04:09:03.656031-07:00,1013.2142333984375,10.736694,10736.694 +17191,2025-03-09T04:09:14.374285-07:00,1013.192626953125,10.718254,10718.254 +17192,2025-03-09T04:09:25.108616-07:00,1013.177978515625,10.734331,10734.331 +17193,2025-03-09T04:09:35.838282-07:00,1013.1944580078125,10.729666,10729.666 +17194,2025-03-09T04:09:46.564320-07:00,1013.21728515625,10.726038,10726.038 +17195,2025-03-09T04:09:57.304462-07:00,1013.21728515625,10.740142,10740.142 +17196,2025-03-09T04:10:08.034548-07:00,1013.2125244140625,10.730086,10730.086 +17197,2025-03-09T04:10:18.764313-07:00,1013.2073364257812,10.729765,10729.765 +17198,2025-03-09T04:10:29.489826-07:00,1013.1956176757812,10.725513,10725.513 +17199,2025-03-09T04:10:40.219279-07:00,1013.1773681640625,10.729453,10729.453 +17200,2025-03-09T04:10:50.952284-07:00,1013.2103881835938,10.733005,10733.005 +17201,2025-03-09T04:11:01.688283-07:00,1013.193603515625,10.735999,10735.999 +17202,2025-03-09T04:11:12.411282-07:00,1013.1968994140625,10.722999,10722.999 +17203,2025-03-09T04:11:23.143287-07:00,1013.1768188476562,10.732005,10732.005 +17204,2025-03-09T04:11:33.883421-07:00,1013.1984252929688,10.740134,10740.134 +17205,2025-03-09T04:11:44.611827-07:00,1013.1815795898438,10.728406,10728.406 +17206,2025-03-09T04:11:55.349283-07:00,1013.1849365234375,10.737456,10737.456 +17207,2025-03-09T04:12:06.078285-07:00,1013.1945190429688,10.729002,10729.002 +17208,2025-03-09T04:12:16.814305-07:00,1013.1795043945312,10.73602,10736.02 +17209,2025-03-09T04:12:27.538435-07:00,1013.1746826171875,10.72413,10724.13 +17210,2025-03-09T04:12:38.279586-07:00,1013.1795043945312,10.741151,10741.151 +17211,2025-03-09T04:12:49.003389-07:00,1013.1693115234375,10.723803,10723.803 +17212,2025-03-09T04:12:59.739778-07:00,1013.185791015625,10.736389,10736.389 +17213,2025-03-09T04:13:10.471350-07:00,1013.18408203125,10.731572,10731.572 +17214,2025-03-09T04:13:21.199282-07:00,1013.17236328125,10.727932,10727.932 +17215,2025-03-09T04:13:31.935697-07:00,1013.1771240234375,10.736415,10736.415 +17216,2025-03-09T04:13:42.673721-07:00,1013.1966552734375,10.738024,10738.024 +17217,2025-03-09T04:13:53.398285-07:00,1013.1900024414062,10.724564,10724.564 +17218,2025-03-09T04:14:04.133077-07:00,1013.201416015625,10.734792,10734.792 +17219,2025-03-09T04:14:14.866359-07:00,1013.1665649414062,10.733282,10733.282 +17220,2025-03-09T04:14:25.602282-07:00,1013.1665649414062,10.735923,10735.923 +17221,2025-03-09T04:14:36.334282-07:00,1013.1768798828125,10.732,10732.0 +17222,2025-03-09T04:14:47.062397-07:00,1013.1570434570312,10.728115,10728.115 +17223,2025-03-09T04:14:57.803423-07:00,1013.181640625,10.741026,10741.026 +17224,2025-03-09T04:15:08.523597-07:00,1013.1749877929688,10.720174,10720.174 +17225,2025-03-09T04:15:19.255587-07:00,1013.1732177734375,10.73199,10731.99 +17226,2025-03-09T04:15:29.994282-07:00,1013.1813354492188,10.738695,10738.695 +17227,2025-03-09T04:15:40.724285-07:00,1013.1431274414062,10.730003,10730.003 +17228,2025-03-09T04:15:51.450533-07:00,1013.1927490234375,10.726248,10726.248 +17229,2025-03-09T04:16:02.185493-07:00,1013.14501953125,10.73496,10734.96 +17230,2025-03-09T04:16:12.920326-07:00,1013.1414184570312,10.734833,10734.833 +17231,2025-03-09T04:16:23.645824-07:00,1013.1512451171875,10.725498,10725.498 +17232,2025-03-09T04:16:34.375019-07:00,1013.184326171875,10.729195,10729.195 +17233,2025-03-09T04:16:45.104286-07:00,1013.1593627929688,10.729267,10729.267 +17234,2025-03-09T04:16:55.836598-07:00,1013.1824951171875,10.732312,10732.312 +17235,2025-03-09T04:17:06.565280-07:00,1013.1542358398438,10.728682,10728.682 +17236,2025-03-09T04:17:17.288460-07:00,1013.160888671875,10.72318,10723.18 +17237,2025-03-09T04:17:28.018680-07:00,1013.1377563476562,10.73022,10730.22 +17238,2025-03-09T04:17:38.752312-07:00,1013.13623046875,10.733632,10733.632 +17239,2025-03-09T04:17:49.485496-07:00,1013.12451171875,10.733184,10733.184 +17240,2025-03-09T04:18:00.210134-07:00,1013.1542358398438,10.724638,10724.638 +17241,2025-03-09T04:18:10.947306-07:00,1013.1590576171875,10.737172,10737.172 +17242,2025-03-09T04:18:21.679279-07:00,1013.1344604492188,10.731973,10731.973 +17243,2025-03-09T04:18:32.405479-07:00,1013.174072265625,10.7262,10726.2 +17244,2025-03-09T04:18:43.135279-07:00,1013.2086181640625,10.7298,10729.8 +17245,2025-03-09T04:18:53.865354-07:00,1013.1821899414062,10.730075,10730.075 +17246,2025-03-09T04:19:04.597674-07:00,1013.1953735351562,10.73232,10732.32 +17247,2025-03-09T04:19:15.328290-07:00,1013.1807250976562,10.730616,10730.616 +17248,2025-03-09T04:19:26.060341-07:00,1013.200439453125,10.732051,10732.051 +17249,2025-03-09T04:19:36.782140-07:00,1013.1873168945312,10.721799,10721.799 +17250,2025-03-09T04:19:47.514278-07:00,1013.174072265625,10.732138,10732.138 +17251,2025-03-09T04:19:58.247534-07:00,1013.1939086914062,10.733256,10733.256 +17252,2025-03-09T04:20:08.982449-07:00,1013.188720703125,10.734915,10734.915 +17253,2025-03-09T04:20:19.700346-07:00,1013.1788940429688,10.717897,10717.897 +17254,2025-03-09T04:20:30.428209-07:00,1013.1807250976562,10.727863,10727.863 +17255,2025-03-09T04:20:41.156283-07:00,1013.1525268554688,10.728074,10728.074 +17256,2025-03-09T04:20:51.891286-07:00,1013.1953735351562,10.735003,10735.003 +17257,2025-03-09T04:21:02.612175-07:00,1013.1590576171875,10.720889,10720.889 +17258,2025-03-09T04:21:13.339294-07:00,1013.1476440429688,10.727119,10727.119 +17259,2025-03-09T04:21:24.067493-07:00,1013.19873046875,10.728199,10728.199 +17260,2025-03-09T04:21:34.803889-07:00,1013.1377563476562,10.736396,10736.396 +17261,2025-03-09T04:21:45.537294-07:00,1013.1722412109375,10.733405,10733.405 +17262,2025-03-09T04:21:56.268282-07:00,1013.1642456054688,10.730988,10730.988 +17263,2025-03-09T04:22:06.989510-07:00,1013.1972045898438,10.721228,10721.228 +17264,2025-03-09T04:22:17.728505-07:00,1013.1873168945312,10.738995,10738.995 +17265,2025-03-09T04:22:28.457372-07:00,1013.1956787109375,10.728867,10728.867 +17266,2025-03-09T04:22:39.175316-07:00,1013.22216796875,10.717944,10717.944 +17267,2025-03-09T04:22:49.908497-07:00,1013.185791015625,10.733181,10733.181 +17268,2025-03-09T04:23:00.632446-07:00,1013.2188110351562,10.723949,10723.949 +17269,2025-03-09T04:23:11.365286-07:00,1013.2188110351562,10.73284,10732.84 +17270,2025-03-09T04:23:22.092585-07:00,1013.2518920898438,10.727299,10727.299 +17271,2025-03-09T04:23:32.828886-07:00,1013.223876953125,10.736301,10736.301 +17272,2025-03-09T04:23:43.546437-07:00,1013.223876953125,10.717551,10717.551 +17273,2025-03-09T04:23:54.274570-07:00,1013.197509765625,10.728133,10728.133 +17274,2025-03-09T04:24:05.009501-07:00,1013.154541015625,10.734931,10734.931 +17275,2025-03-09T04:24:15.734418-07:00,1013.2140502929688,10.724917,10724.917 +17276,2025-03-09T04:24:26.465532-07:00,1013.2059326171875,10.731114,10731.114 +17277,2025-03-09T04:24:37.190282-07:00,1013.2140502929688,10.72475,10724.75 +17278,2025-03-09T04:24:47.916486-07:00,1013.2044677734375,10.726204,10726.204 +17279,2025-03-09T04:24:58.656380-07:00,1013.21435546875,10.739894,10739.894 +17280,2025-03-09T04:25:09.381350-07:00,1013.21435546875,10.72497,10724.97 +17281,2025-03-09T04:25:20.105695-07:00,1013.2276000976562,10.724345,10724.345 +17282,2025-03-09T04:25:30.837730-07:00,1013.2011108398438,10.732035,10732.035 +17283,2025-03-09T04:25:41.562359-07:00,1013.2128295898438,10.724629,10724.629 +17284,2025-03-09T04:25:52.300278-07:00,1013.2044677734375,10.737919,10737.919 +17285,2025-03-09T04:26:03.025305-07:00,1013.219482421875,10.725027,10725.027 +17286,2025-03-09T04:26:13.749350-07:00,1013.1846313476562,10.724045,10724.045 +17287,2025-03-09T04:26:24.486485-07:00,1013.2080688476562,10.737135,10737.135 +17288,2025-03-09T04:26:35.217555-07:00,1013.2293701171875,10.73107,10731.07 +17289,2025-03-09T04:26:45.942317-07:00,1013.2228393554688,10.724762,10724.762 +17290,2025-03-09T04:26:56.676320-07:00,1013.2359619140625,10.734003,10734.003 +17291,2025-03-09T04:27:07.401354-07:00,1013.2062377929688,10.725034,10725.034 +17292,2025-03-09T04:27:18.130500-07:00,1013.19970703125,10.729146,10729.146 +17293,2025-03-09T04:27:28.867456-07:00,1013.1834106445312,10.736956,10736.956 +17294,2025-03-09T04:27:39.596501-07:00,1013.1981201171875,10.729045,10729.045 +17295,2025-03-09T04:27:50.324485-07:00,1013.1900024414062,10.727984,10727.984 +17296,2025-03-09T04:28:01.054477-07:00,1013.16845703125,10.729992,10729.992 +17297,2025-03-09T04:28:11.775285-07:00,1013.2146606445312,10.720808,10720.808 +17298,2025-03-09T04:28:22.506075-07:00,1013.18310546875,10.73079,10730.79 +17299,2025-03-09T04:28:33.237481-07:00,1013.1963500976562,10.731406,10731.406 +17300,2025-03-09T04:28:43.966286-07:00,1013.1981201171875,10.728805,10728.805 +17301,2025-03-09T04:28:54.694277-07:00,1013.176513671875,10.727991,10727.991 +17302,2025-03-09T04:29:05.423467-07:00,1013.18310546875,10.72919,10729.19 +17303,2025-03-09T04:29:16.151345-07:00,1013.1500854492188,10.727878,10727.878 +17304,2025-03-09T04:29:26.875451-07:00,1013.18017578125,10.724106,10724.106 +17305,2025-03-09T04:29:37.604282-07:00,1013.1867065429688,10.728831,10728.831 +17306,2025-03-09T04:29:48.339520-07:00,1013.1668701171875,10.735238,10735.238 +17307,2025-03-09T04:29:59.060309-07:00,1013.1554565429688,10.720789,10720.789 +17308,2025-03-09T04:30:09.792284-07:00,1013.170166015625,10.731975,10731.975 +17309,2025-03-09T04:30:20.514460-07:00,1013.1768188476562,10.722176,10722.176 +17310,2025-03-09T04:30:31.249282-07:00,1013.1554565429688,10.734822,10734.822 +17311,2025-03-09T04:30:41.975288-07:00,1013.1389770507812,10.726006,10726.006 +17312,2025-03-09T04:30:52.697564-07:00,1013.1521606445312,10.722276,10722.276 +17313,2025-03-09T04:31:03.433358-07:00,1013.1257934570312,10.735794,10735.794 +17314,2025-03-09T04:31:14.155449-07:00,1013.1257934570312,10.722091,10722.091 +17315,2025-03-09T04:31:24.887544-07:00,1013.14404296875,10.732095,10732.095 +17316,2025-03-09T04:31:35.613426-07:00,1013.1456298828125,10.725882,10725.882 +17317,2025-03-09T04:31:46.337452-07:00,1013.130859375,10.724026,10724.026 +17318,2025-03-09T04:31:57.067489-07:00,1013.1095581054688,10.730037,10730.037 +17319,2025-03-09T04:32:07.790467-07:00,1013.142578125,10.722978,10722.978 +17320,2025-03-09T04:32:18.518436-07:00,1013.0879516601562,10.727969,10727.969 +17321,2025-03-09T04:32:29.249483-07:00,1013.1242065429688,10.731047,10731.047 +17322,2025-03-09T04:32:39.979429-07:00,1013.1194458007812,10.729946,10729.946 +17323,2025-03-09T04:32:50.705453-07:00,1013.1179809570312,10.726024,10726.024 +17324,2025-03-09T04:33:01.425883-07:00,1013.12451171875,10.72043,10720.43 +17325,2025-03-09T04:33:12.154311-07:00,1013.1095581054688,10.728428,10728.428 +17326,2025-03-09T04:33:22.882285-07:00,1013.1278076171875,10.727974,10727.974 +17327,2025-03-09T04:33:33.611477-07:00,1013.1212768554688,10.729192,10729.192 +17328,2025-03-09T04:33:44.338286-07:00,1013.1329956054688,10.726809,10726.809 +17329,2025-03-09T04:33:55.064460-07:00,1013.1359252929688,10.726174,10726.174 +17330,2025-03-09T04:34:05.790285-07:00,1013.1212768554688,10.725825,10725.825 +17331,2025-03-09T04:34:16.519357-07:00,1013.1212768554688,10.729072,10729.072 +17332,2025-03-09T04:34:27.241462-07:00,1013.1609497070312,10.722105,10722.105 +17333,2025-03-09T04:34:37.974285-07:00,1013.1329956054688,10.732823,10732.823 +17334,2025-03-09T04:34:48.700474-07:00,1013.14111328125,10.726189,10726.189 +17335,2025-03-09T04:34:59.431544-07:00,1013.1311645507812,10.73107,10731.07 +17336,2025-03-09T04:35:10.155284-07:00,1013.1329956054688,10.72374,10723.74 +17337,2025-03-09T04:35:20.889359-07:00,1013.1395263671875,10.734075,10734.075 +17338,2025-03-09T04:35:31.619549-07:00,1013.1065673828125,10.73019,10730.19 +17339,2025-03-09T04:35:42.345284-07:00,1013.1311645507812,10.725735,10725.735 +17340,2025-03-09T04:35:53.070451-07:00,1013.12158203125,10.725167,10725.167 +17341,2025-03-09T04:36:03.803773-07:00,1013.12158203125,10.733322,10733.322 +17342,2025-03-09T04:36:14.528314-07:00,1013.1163940429688,10.724541,10724.541 +17343,2025-03-09T04:36:25.259461-07:00,1013.114990234375,10.731147,10731.147 +17344,2025-03-09T04:36:35.987282-07:00,1013.13623046875,10.727821,10727.821 +17345,2025-03-09T04:36:46.712530-07:00,1013.1134643554688,10.725248,10725.248 +17346,2025-03-09T04:36:57.447889-07:00,1013.12158203125,10.735359,10735.359 +17347,2025-03-09T04:37:08.171285-07:00,1013.12158203125,10.723396,10723.396 +17348,2025-03-09T04:37:18.897875-07:00,1013.13330078125,10.72659,10726.59 +17349,2025-03-09T04:37:29.632308-07:00,1013.10498046875,10.734433,10734.433 +17350,2025-03-09T04:37:40.359353-07:00,1013.11669921875,10.727045,10727.045 +17351,2025-03-09T04:37:51.081036-07:00,1013.10498046875,10.721683,10721.683 +17352,2025-03-09T04:38:01.815518-07:00,1013.1035766601562,10.734482,10734.482 +17353,2025-03-09T04:38:12.544285-07:00,1013.10205078125,10.728767,10728.767 +17354,2025-03-09T04:38:23.271764-07:00,1013.0870361328125,10.727479,10727.479 +17355,2025-03-09T04:38:33.994324-07:00,1013.0804443359375,10.72256,10722.56 +17356,2025-03-09T04:38:44.722507-07:00,1013.0906372070312,10.728183,10728.183 +17357,2025-03-09T04:38:55.451284-07:00,1013.1185913085938,10.728777,10728.777 +17358,2025-03-09T04:39:06.173501-07:00,1013.1052856445312,10.722217,10722.217 +17359,2025-03-09T04:39:16.903306-07:00,1013.1085815429688,10.729805,10729.805 +17360,2025-03-09T04:39:27.629393-07:00,1013.0972900390625,10.726087,10726.087 +17361,2025-03-09T04:39:38.349284-07:00,1013.0822143554688,10.719891,10719.891 +17362,2025-03-09T04:39:49.076789-07:00,1013.0939331054688,10.727505,10727.505 +17363,2025-03-09T04:39:59.799498-07:00,1013.1203002929688,10.722709,10722.709 +17364,2025-03-09T04:40:10.526414-07:00,1013.0740356445312,10.726916,10726.916 +17365,2025-03-09T04:40:21.255689-07:00,1013.0857543945312,10.729275,10729.275 +17366,2025-03-09T04:40:31.981282-07:00,1013.11376953125,10.725593,10725.593 +17367,2025-03-09T04:40:42.705284-07:00,1013.07080078125,10.724002,10724.002 +17368,2025-03-09T04:40:53.432717-07:00,1013.09716796875,10.727433,10727.433 +17369,2025-03-09T04:41:04.161282-07:00,1013.089111328125,10.728565,10728.565 +17370,2025-03-09T04:41:14.885539-07:00,1013.1104736328125,10.724257,10724.257 +17371,2025-03-09T04:41:25.607360-07:00,1013.1302490234375,10.721821,10721.821 +17372,2025-03-09T04:41:36.333278-07:00,1013.09423828125,10.725918,10725.918 +17373,2025-03-09T04:41:47.058428-07:00,1013.0809936523438,10.72515,10725.15 +17374,2025-03-09T04:41:57.783286-07:00,1013.10888671875,10.724858,10724.858 +17375,2025-03-09T04:42:08.518093-07:00,1013.1074829101562,10.734807,10734.807 +17376,2025-03-09T04:42:19.247281-07:00,1013.09423828125,10.729188,10729.188 +17377,2025-03-09T04:42:29.976442-07:00,1013.072998046875,10.729161,10729.161 +17378,2025-03-09T04:42:40.698586-07:00,1013.08251953125,10.722144,10722.144 +17379,2025-03-09T04:42:51.424343-07:00,1013.100830078125,10.725757,10725.757 +17380,2025-03-09T04:43:02.160474-07:00,1013.072998046875,10.736131,10736.131 +17381,2025-03-09T04:43:12.887283-07:00,1013.09423828125,10.726809,10726.809 +17382,2025-03-09T04:43:23.614314-07:00,1013.087646484375,10.727031,10727.031 +17383,2025-03-09T04:43:34.331475-07:00,1013.0596923828125,10.717161,10717.161 +17384,2025-03-09T04:43:45.066657-07:00,1013.07763671875,10.735182,10735.182 +17385,2025-03-09T04:43:55.791486-07:00,1013.0596923828125,10.724829,10724.829 +17386,2025-03-09T04:44:06.516312-07:00,1013.0645141601562,10.724826,10724.826 +17387,2025-03-09T04:44:17.248581-07:00,1013.0663452148438,10.732269,10732.269 +17388,2025-03-09T04:44:27.975468-07:00,1013.068115234375,10.726887,10726.887 +17389,2025-03-09T04:44:38.702284-07:00,1013.06298828125,10.726816,10726.816 +17390,2025-03-09T04:44:49.428815-07:00,1013.0398559570312,10.726531,10726.531 +17391,2025-03-09T04:45:00.158283-07:00,1013.068115234375,10.729468,10729.468 +17392,2025-03-09T04:45:10.884424-07:00,1013.0828247070312,10.726141,10726.141 +17393,2025-03-09T04:45:21.610412-07:00,1013.081298828125,10.725988,10725.988 +17394,2025-03-09T04:45:32.342278-07:00,1013.0879516601562,10.731866,10731.866 +17395,2025-03-09T04:45:43.065572-07:00,1013.08935546875,10.723294,10723.294 +17396,2025-03-09T04:45:53.790286-07:00,1013.0779418945312,10.724714,10724.714 +17397,2025-03-09T04:46:04.521356-07:00,1013.0795288085938,10.73107,10731.07 +17398,2025-03-09T04:46:15.246445-07:00,1013.0912475585938,10.725089,10725.089 +17399,2025-03-09T04:46:25.966302-07:00,1013.0978393554688,10.719857,10719.857 +17400,2025-03-09T04:46:36.693460-07:00,1013.0632934570312,10.727158,10727.158 +17401,2025-03-09T04:46:47.418434-07:00,1013.0963134765625,10.724974,10724.974 +17402,2025-03-09T04:46:58.144479-07:00,1013.099609375,10.726045,10726.045 +17403,2025-03-09T04:47:08.879753-07:00,1013.0567016601562,10.735274,10735.274 +17404,2025-03-09T04:47:19.601289-07:00,1013.09814453125,10.721536,10721.536 +17405,2025-03-09T04:47:30.330767-07:00,1013.048583984375,10.729478,10729.478 +17406,2025-03-09T04:47:41.048283-07:00,1013.06689453125,10.717516,10717.516 +17407,2025-03-09T04:47:51.778353-07:00,1013.0701293945312,10.73007,10730.07 +17408,2025-03-09T04:48:02.505405-07:00,1013.0719604492188,10.727052,10727.052 +17409,2025-03-09T04:48:13.230283-07:00,1013.09033203125,10.724878,10724.878 +17410,2025-03-09T04:48:23.953391-07:00,1013.08544921875,10.723108,10723.108 +17411,2025-03-09T04:48:34.683554-07:00,1013.0953369140625,10.730163,10730.163 +17412,2025-03-09T04:48:45.404497-07:00,1013.0641479492188,10.720943,10720.943 +17413,2025-03-09T04:48:56.127285-07:00,1013.07763671875,10.722788,10722.788 +17414,2025-03-09T04:49:06.850311-07:00,1013.0713500976562,10.723026,10723.026 +17415,2025-03-09T04:49:17.584820-07:00,1013.0928955078125,10.734509,10734.509 +17416,2025-03-09T04:49:28.307312-07:00,1013.094970703125,10.722492,10722.492 +17417,2025-03-09T04:49:39.022898-07:00,1013.1018676757812,10.715586,10715.586 +17418,2025-03-09T04:49:49.755286-07:00,1013.1068725585938,10.732388,10732.388 +17419,2025-03-09T04:50:00.470432-07:00,1013.0873413085938,10.715146,10715.146 +17420,2025-03-09T04:50:11.198347-07:00,1013.10888671875,10.727915,10727.915 +17421,2025-03-09T04:50:21.931360-07:00,1013.0578002929688,10.733013,10733.013 +17422,2025-03-09T04:50:32.644287-07:00,1013.0466918945312,10.712927,10712.927 +17423,2025-03-09T04:50:43.371478-07:00,1013.0532836914062,10.727191,10727.191 +17424,2025-03-09T04:50:54.098296-07:00,1013.0996704101562,10.726818,10726.818 +17425,2025-03-09T04:51:04.815468-07:00,1013.0787353515625,10.717172,10717.172 +17426,2025-03-09T04:51:15.550319-07:00,1013.0936889648438,10.734851,10734.851 +17427,2025-03-09T04:51:26.268496-07:00,1013.1001586914062,10.718177,10718.177 +17428,2025-03-09T04:51:36.988349-07:00,1013.0906372070312,10.719853,10719.853 +17429,2025-03-09T04:51:47.710585-07:00,1013.0839233398438,10.722236,10722.236 +17430,2025-03-09T04:51:58.440510-07:00,1013.0875244140625,10.729925,10729.925 +17431,2025-03-09T04:52:09.162347-07:00,1013.0775756835938,10.721837,10721.837 +17432,2025-03-09T04:52:19.882487-07:00,1013.07275390625,10.72014,10720.14 +17433,2025-03-09T04:52:30.674447-07:00,1013.0613403320312,10.79196,10791.96 +17434,2025-03-09T04:52:41.403614-07:00,1013.1060180664062,10.729167,10729.167 +17435,2025-03-09T04:52:52.124517-07:00,1013.068115234375,10.720903,10720.903 +17436,2025-03-09T04:53:02.858657-07:00,1013.065185546875,10.73414,10734.14 +17437,2025-03-09T04:53:13.584456-07:00,1013.0632934570312,10.725799,10725.799 +17438,2025-03-09T04:53:24.303448-07:00,1013.0750122070312,10.718992,10718.992 +17439,2025-03-09T04:53:35.026944-07:00,1013.0881958007812,10.723496,10723.496 +17440,2025-03-09T04:53:45.748450-07:00,1013.0848388671875,10.721506,10721.506 +17441,2025-03-09T04:53:56.467839-07:00,1013.0833740234375,10.719389,10719.389 +17442,2025-03-09T04:54:07.189449-07:00,1013.0965576171875,10.72161,10721.61 +17443,2025-03-09T04:54:17.912469-07:00,1013.1148681640625,10.72302,10723.02 +17444,2025-03-09T04:54:28.636450-07:00,1013.1097412109375,10.723981,10723.981 +17445,2025-03-09T04:54:39.364647-07:00,1013.1031494140625,10.728197,10728.197 +17446,2025-03-09T04:54:50.087448-07:00,1013.0818481445312,10.722801,10722.801 +17447,2025-03-09T04:55:00.805232-07:00,1013.0818481445312,10.717784,10717.784 +17448,2025-03-09T04:55:11.526655-07:00,1013.0965576171875,10.721423,10721.423 +17449,2025-03-09T04:55:22.254605-07:00,1013.09326171875,10.72795,10727.95 +17450,2025-03-09T04:55:32.980600-07:00,1013.0753173828125,10.725995,10725.995 +17451,2025-03-09T04:55:43.698618-07:00,1013.1112670898438,10.718018,10718.018 +17452,2025-03-09T04:55:54.430446-07:00,1013.0833740234375,10.731828,10731.828 +17453,2025-03-09T04:56:05.149159-07:00,1013.0900268554688,10.718713,10718.713 +17454,2025-03-09T04:56:15.884906-07:00,1013.0783081054688,10.735747,10735.747 +17455,2025-03-09T04:56:26.609512-07:00,1013.0948486328125,10.724606,10724.606 +17456,2025-03-09T04:56:37.333629-07:00,1013.0881958007812,10.724117,10724.117 +17457,2025-03-09T04:56:48.054722-07:00,1013.0632934570312,10.721093,10721.093 +17458,2025-03-09T04:56:58.775618-07:00,1013.0765380859375,10.720896,10720.896 +17459,2025-03-09T04:57:09.495451-07:00,1013.08642578125,10.719833,10719.833 +17460,2025-03-09T04:57:20.225805-07:00,1013.041748046875,10.730354,10730.354 +17461,2025-03-09T04:57:30.945446-07:00,1013.0648193359375,10.719641,10719.641 +17462,2025-03-09T04:57:41.670703-07:00,1013.06640625,10.725257,10725.257 +17463,2025-03-09T04:57:52.402652-07:00,1013.059814453125,10.731949,10731.949 +17464,2025-03-09T04:58:03.127448-07:00,1013.0613403320312,10.724796,10724.796 +17465,2025-03-09T04:58:13.849870-07:00,1013.064697265625,10.722422,10722.422 +17466,2025-03-09T04:58:24.572798-07:00,1013.0745239257812,10.722928,10722.928 +17467,2025-03-09T04:58:35.299627-07:00,1013.0695190429688,10.726829,10726.829 +17468,2025-03-09T04:58:46.019446-07:00,1013.0643920898438,10.719819,10719.819 +17469,2025-03-09T04:58:56.748674-07:00,1013.0596313476562,10.729228,10729.228 +17470,2025-03-09T04:59:07.470447-07:00,1013.014892578125,10.721773,10721.773 +17471,2025-03-09T04:59:18.187620-07:00,1013.0377197265625,10.717173,10717.173 +17472,2025-03-09T04:59:28.912448-07:00,1013.046142578125,10.724828,10724.828 +17473,2025-03-09T04:59:39.643449-07:00,1013.0131225585938,10.731001,10731.001 +17474,2025-03-09T04:59:50.360474-07:00,1013.034423828125,10.717025,10717.025 +17475,2025-03-09T05:00:01.083638-07:00,1013.0245971679688,10.723164,10723.164 +17476,2025-03-09T05:00:11.811514-07:00,1013.040771484375,10.727876,10727.876 +17477,2025-03-09T05:00:22.535446-07:00,1013.0078125,10.723932,10723.932 +17478,2025-03-09T05:00:33.256554-07:00,1012.9979858398438,10.721108,10721.108 +17479,2025-03-09T05:00:43.987661-07:00,1012.988037109375,10.731107,10731.107 +17480,2025-03-09T05:00:54.714651-07:00,1012.9796752929688,10.72699,10726.99 +17481,2025-03-09T05:01:05.428449-07:00,1012.9976806640625,10.713798,10713.798 +17482,2025-03-09T05:01:16.163655-07:00,1012.992919921875,10.735206,10735.206 +17483,2025-03-09T05:01:26.884446-07:00,1012.982666015625,10.720791,10720.791 +17484,2025-03-09T05:01:37.607706-07:00,1012.982666015625,10.72326,10723.26 +17485,2025-03-09T05:01:48.334449-07:00,1012.9793701171875,10.726743,10726.743 +17486,2025-03-09T05:01:59.057449-07:00,1012.974365234375,10.723,10723.0 +17487,2025-03-09T05:02:09.789613-07:00,1012.9578247070312,10.732164,10732.164 +17488,2025-03-09T05:02:20.511459-07:00,1012.993896484375,10.721846,10721.846 +17489,2025-03-09T05:02:31.232827-07:00,1012.9608764648438,10.721368,10721.368 +17490,2025-03-09T05:02:41.962446-07:00,1012.9428100585938,10.729619,10729.619 +17491,2025-03-09T05:02:52.694448-07:00,1012.9378051757812,10.732002,10732.002 +17492,2025-03-09T05:03:03.416166-07:00,1012.9458618164062,10.721718,10721.718 +17493,2025-03-09T05:03:14.139449-07:00,1012.9639282226562,10.723283,10723.283 +17494,2025-03-09T05:03:24.868621-07:00,1012.970458984375,10.729172,10729.172 +17495,2025-03-09T05:03:35.591414-07:00,1012.9522094726562,10.722793,10722.793 +17496,2025-03-09T05:03:46.309620-07:00,1012.9554443359375,10.718206,10718.206 +17497,2025-03-09T05:03:57.041044-07:00,1012.9224853515625,10.731424,10731.424 +17498,2025-03-09T05:04:07.760658-07:00,1012.9405517578125,10.719614,10719.614 +17499,2025-03-09T05:04:18.480647-07:00,1012.9420166015625,10.719989,10719.989 +17500,2025-03-09T05:04:29.207444-07:00,1012.937255859375,10.726797,10726.797 +17501,2025-03-09T05:04:39.935472-07:00,1012.9468994140625,10.728028,10728.028 +17502,2025-03-09T05:04:50.657650-07:00,1012.927001953125,10.722178,10722.178 +17503,2025-03-09T05:05:01.380958-07:00,1012.93701171875,10.723308,10723.308 +17504,2025-03-09T05:05:12.114448-07:00,1012.9468994140625,10.73349,10733.49 +17505,2025-03-09T05:05:22.841741-07:00,1012.95654296875,10.727293,10727.293 +17506,2025-03-09T05:05:33.561511-07:00,1012.9601440429688,10.71977,10719.77 +17507,2025-03-09T05:05:44.286657-07:00,1012.974853515625,10.725146,10725.146 +17508,2025-03-09T05:05:55.022624-07:00,1012.96826171875,10.735967,10735.967 +17509,2025-03-09T05:06:05.752477-07:00,1012.97314453125,10.729853,10729.853 +17510,2025-03-09T05:06:16.481449-07:00,1012.9845581054688,10.728972,10728.972 +17511,2025-03-09T05:06:27.202469-07:00,1012.9793701171875,10.72102,10721.02 +17512,2025-03-09T05:06:37.935467-07:00,1012.9779052734375,10.732998,10732.998 +17513,2025-03-09T05:06:48.658628-07:00,1012.9464111328125,10.723161,10723.161 +17514,2025-03-09T05:06:59.385449-07:00,1012.9827270507812,10.726821,10726.821 +17515,2025-03-09T05:07:10.106939-07:00,1012.9710083007812,10.72149,10721.49 +17516,2025-03-09T05:07:20.843999-07:00,1013.00732421875,10.73706,10737.06 +17517,2025-03-09T05:07:31.565450-07:00,1012.9857788085938,10.721451,10721.451 +17518,2025-03-09T05:07:42.290821-07:00,1012.967529296875,10.725371,10725.371 +17519,2025-03-09T05:07:53.011452-07:00,1012.955810546875,10.720631,10720.631 +17520,2025-03-09T05:08:03.742698-07:00,1012.9737548828125,10.731246,10731.246 +17521,2025-03-09T05:08:14.472712-07:00,1012.9639282226562,10.730014,10730.014 +17522,2025-03-09T05:08:25.200450-07:00,1012.975341796875,10.727738,10727.738 +17523,2025-03-09T05:08:35.928629-07:00,1012.9866943359375,10.728179,10728.179 +17524,2025-03-09T05:08:46.656646-07:00,1012.9684448242188,10.728017,10728.017 +17525,2025-03-09T05:08:57.370619-07:00,1012.9929809570312,10.713973,10713.973 +17526,2025-03-09T05:09:08.098446-07:00,1012.9896850585938,10.727827,10727.827 +17527,2025-03-09T05:09:18.827948-07:00,1012.9993896484375,10.729502,10729.502 +17528,2025-03-09T05:09:29.543477-07:00,1012.9879760742188,10.715529,10715.529 +17529,2025-03-09T05:09:40.275514-07:00,1012.9645385742188,10.732037,10732.037 +17530,2025-03-09T05:09:50.993581-07:00,1012.9840698242188,10.718067,10718.067 +17531,2025-03-09T05:10:01.719625-07:00,1012.9840698242188,10.726044,10726.044 +17532,2025-03-09T05:10:12.445653-07:00,1012.9972534179688,10.726028,10726.028 +17533,2025-03-09T05:10:23.168574-07:00,1013.0284423828125,10.722921,10722.921 +17534,2025-03-09T05:10:33.892828-07:00,1012.9888916015625,10.724254,10724.254 +17535,2025-03-09T05:10:44.618449-07:00,1013.0068969726562,10.725621,10725.621 +17536,2025-03-09T05:10:55.342390-07:00,1013.0083618164062,10.723941,10723.941 +17537,2025-03-09T05:11:06.067651-07:00,1013.0114135742188,10.725261,10725.261 +17538,2025-03-09T05:11:16.790634-07:00,1013.0047607421875,10.722983,10722.983 +17539,2025-03-09T05:11:27.512734-07:00,1013.0359497070312,10.7221,10722.1 +17540,2025-03-09T05:11:38.239600-07:00,1013.052490234375,10.726866,10726.866 +17541,2025-03-09T05:11:48.968642-07:00,1013.039306640625,10.729042,10729.042 +17542,2025-03-09T05:11:59.690963-07:00,1013.0360107421875,10.722321,10722.321 +17543,2025-03-09T05:12:10.411146-07:00,1013.0360107421875,10.720183,10720.183 +17544,2025-03-09T05:12:21.138686-07:00,1013.0440673828125,10.72754,10727.54 +17545,2025-03-09T05:12:31.863120-07:00,1013.0474243164062,10.724434,10724.434 +17546,2025-03-09T05:12:42.589448-07:00,1013.0488891601562,10.726328,10726.328 +17547,2025-03-09T05:12:53.313828-07:00,1013.0504150390625,10.72438,10724.38 +17548,2025-03-09T05:13:04.035659-07:00,1013.0783081054688,10.721831,10721.831 +17549,2025-03-09T05:13:14.759722-07:00,1013.065185546875,10.724063,10724.063 +17550,2025-03-09T05:13:25.477449-07:00,1013.0585327148438,10.717727,10717.727 +17551,2025-03-09T05:13:36.200450-07:00,1013.0254516601562,10.723001,10723.001 +17552,2025-03-09T05:13:46.936654-07:00,1013.0404663085938,10.736204,10736.204 +17553,2025-03-09T05:13:57.662656-07:00,1013.035400390625,10.726002,10726.002 +17554,2025-03-09T05:14:08.387673-07:00,1013.0420532226562,10.725017,10725.017 +17555,2025-03-09T05:14:19.103449-07:00,1013.065185546875,10.715776,10715.776 +17556,2025-03-09T05:14:20.106118-07:00,1013.04345703125,1.002669,1002.669 +17557,2025-03-09T05:14:29.834774-07:00,1013.0783081054688,9.728656,9728.656 +17558,2025-03-09T05:14:40.555443-07:00,1013.0567016601562,10.720669,10720.669 +17559,2025-03-09T05:14:51.284448-07:00,1013.0518798828125,10.729005,10729.005 +17560,2025-03-09T05:15:02.004621-07:00,1013.0452880859375,10.720173,10720.173 +17561,2025-03-09T05:15:12.733476-07:00,1013.065185546875,10.728855,10728.855 +17562,2025-03-09T05:15:23.459627-07:00,1013.081298828125,10.726151,10726.151 +17563,2025-03-09T05:15:34.177455-07:00,1013.0585327148438,10.717828,10717.828 +17564,2025-03-09T05:15:44.909642-07:00,1013.0665893554688,10.732187,10732.187 +17565,2025-03-09T05:15:55.620512-07:00,1013.0548706054688,10.71087,10710.87 +17566,2025-03-09T05:16:06.346612-07:00,1013.0731811523438,10.7261,10726.1 +17567,2025-03-09T05:16:17.070518-07:00,1013.0452880859375,10.723906,10723.906 +17568,2025-03-09T05:16:27.790633-07:00,1013.079833984375,10.720115,10720.115 +17569,2025-03-09T05:16:38.507498-07:00,1013.0632934570312,10.716865,10716.865 +17570,2025-03-09T05:16:49.230661-07:00,1013.093017578125,10.723163,10723.163 +17571,2025-03-09T05:16:59.959660-07:00,1013.10107421875,10.728999,10728.999 +17572,2025-03-09T05:17:10.676629-07:00,1013.0945434570312,10.716969,10716.969 +17573,2025-03-09T05:17:21.402118-07:00,1013.1029663085938,10.725489,10725.489 +17574,2025-03-09T05:17:32.121623-07:00,1013.093017578125,10.719505,10719.505 +17575,2025-03-09T05:17:42.850471-07:00,1013.09814453125,10.728848,10728.848 +17576,2025-03-09T05:17:53.573647-07:00,1013.093017578125,10.723176,10723.176 +17577,2025-03-09T05:18:04.286543-07:00,1013.091552734375,10.712896,10712.896 +17578,2025-03-09T05:18:15.009653-07:00,1013.1062622070312,10.72311,10723.11 +17579,2025-03-09T05:18:25.743443-07:00,1013.1194458007812,10.73379,10733.79 +17580,2025-03-09T05:18:36.458673-07:00,1013.10107421875,10.71523,10715.23 +17581,2025-03-09T05:18:47.185449-07:00,1013.11279296875,10.726776,10726.776 +17582,2025-03-09T05:18:57.906520-07:00,1013.11279296875,10.721071,10721.071 +17583,2025-03-09T05:19:08.633472-07:00,1013.1062622070312,10.726952,10726.952 +17584,2025-03-09T05:19:19.356529-07:00,1013.1095581054688,10.723057,10723.057 +17585,2025-03-09T05:19:30.076642-07:00,1013.08642578125,10.720113,10720.113 +17586,2025-03-09T05:19:40.796449-07:00,1013.091552734375,10.719807,10719.807 +17587,2025-03-09T05:19:51.520503-07:00,1013.091552734375,10.724054,10724.054 +17588,2025-03-09T05:20:02.247816-07:00,1013.0963134765625,10.727313,10727.313 +17589,2025-03-09T05:20:12.976629-07:00,1013.0831298828125,10.728813,10728.813 +17590,2025-03-09T05:20:23.689519-07:00,1013.0783081054688,10.71289,10712.89 +17591,2025-03-09T05:20:34.413745-07:00,1013.0948486328125,10.724226,10724.226 +17592,2025-03-09T05:20:45.144442-07:00,1013.0963134765625,10.730697,10730.697 +17593,2025-03-09T05:20:55.865887-07:00,1013.0933837890625,10.721445,10721.445 +17594,2025-03-09T05:21:06.579449-07:00,1013.065185546875,10.713562,10713.562 +17595,2025-03-09T05:21:17.302588-07:00,1013.073486328125,10.723139,10723.139 +17596,2025-03-09T05:21:28.035445-07:00,1013.0801391601562,10.732857,10732.857 +17597,2025-03-09T05:21:38.748620-07:00,1013.076904296875,10.713175,10713.175 +17598,2025-03-09T05:21:49.476448-07:00,1013.0504150390625,10.727828,10727.828 +17599,2025-03-09T05:22:00.198723-07:00,1013.0687255859375,10.722275,10722.275 +17600,2025-03-09T05:22:10.921511-07:00,1013.0540771484375,10.722788,10722.788 +17601,2025-03-09T05:22:21.635632-07:00,1013.0323486328125,10.714121,10714.121 +17602,2025-03-09T05:22:32.366449-07:00,1013.0540771484375,10.730817,10730.817 +17603,2025-03-09T05:22:43.087772-07:00,1013.0738525390625,10.721323,10721.323 +17604,2025-03-09T05:22:53.807442-07:00,1013.0653686523438,10.71967,10719.67 +17605,2025-03-09T05:23:04.531449-07:00,1013.0521850585938,10.724007,10724.007 +17606,2025-03-09T05:23:15.250454-07:00,1013.0587768554688,10.719005,10719.005 +17607,2025-03-09T05:23:25.973738-07:00,1013.0704956054688,10.723284,10723.284 +17608,2025-03-09T05:23:36.695444-07:00,1013.0639038085938,10.721706,10721.706 +17609,2025-03-09T05:23:47.420767-07:00,1013.05908203125,10.725323,10725.323 +17610,2025-03-09T05:23:58.142448-07:00,1013.052490234375,10.721681,10721.681 +17611,2025-03-09T05:24:08.871439-07:00,1013.0606079101562,10.728991,10728.991 +17612,2025-03-09T05:24:19.599637-07:00,1013.0557861328125,10.728198,10728.198 +17613,2025-03-09T05:24:30.320539-07:00,1013.0476684570312,10.720902,10720.902 +17614,2025-03-09T05:24:41.038642-07:00,1013.0675048828125,10.718103,10718.103 +17615,2025-03-09T05:24:51.764480-07:00,1013.0476684570312,10.725838,10725.838 +17616,2025-03-09T05:25:02.492633-07:00,1013.0593872070312,10.728153,10728.153 +17617,2025-03-09T05:25:13.210455-07:00,1013.0443725585938,10.717822,10717.822 +17618,2025-03-09T05:25:23.941775-07:00,1013.0332641601562,10.73132,10731.32 +17619,2025-03-09T05:25:34.659446-07:00,1013.0068969726562,10.717671,10717.671 +17620,2025-03-09T05:25:45.385450-07:00,1013.0381469726562,10.726004,10726.004 +17621,2025-03-09T05:25:56.119785-07:00,1013.0546264648438,10.734335,10734.335 +17622,2025-03-09T05:26:06.838441-07:00,1013.0267333984375,10.718656,10718.656 +17623,2025-03-09T05:26:17.560446-07:00,1013.0200805664062,10.722005,10722.005 +17624,2025-03-09T05:26:28.289602-07:00,1013.030029296875,10.729156,10729.156 +17625,2025-03-09T05:26:39.011896-07:00,1013.0050048828125,10.722294,10722.294 +17626,2025-03-09T05:26:49.748472-07:00,1013.0086669921875,10.736576,10736.576 +17627,2025-03-09T05:27:00.472506-07:00,1013.0381469726562,10.724034,10724.034 +17628,2025-03-09T05:27:11.197152-07:00,1013.018310546875,10.724646,10724.646 +17629,2025-03-09T05:27:21.928446-07:00,1012.9969482421875,10.731294,10731.294 +17630,2025-03-09T05:27:32.649611-07:00,1012.9954833984375,10.721165,10721.165 +17631,2025-03-09T05:27:43.371740-07:00,1013.0068969726562,10.722129,10722.129 +17632,2025-03-09T05:27:54.101641-07:00,1012.9707641601562,10.729901,10729.901 +17633,2025-03-09T05:28:04.824448-07:00,1012.9788818359375,10.722807,10722.807 +17634,2025-03-09T05:28:15.552658-07:00,1012.9657592773438,10.72821,10728.21 +17635,2025-03-09T05:28:26.273533-07:00,1012.9509887695312,10.720875,10720.875 +17636,2025-03-09T05:28:37.003462-07:00,1012.96240234375,10.729929,10729.929 +17637,2025-03-09T05:28:47.732306-07:00,1012.936279296875,10.728844,10728.844 +17638,2025-03-09T05:28:58.451518-07:00,1012.9462280273438,10.719212,10719.212 +17639,2025-03-09T05:29:09.182448-07:00,1012.9528198242188,10.73093,10730.93 +17640,2025-03-09T05:29:19.916827-07:00,1012.9462280273438,10.734379,10734.379 +17641,2025-03-09T05:29:30.634446-07:00,1012.9462280273438,10.717619,10717.619 +17642,2025-03-09T05:29:41.360939-07:00,1012.9593505859375,10.726493,10726.493 +17643,2025-03-09T05:29:52.090839-07:00,1012.936279296875,10.7299,10729.9 +17644,2025-03-09T05:30:02.814690-07:00,1012.9215698242188,10.723851,10723.851 +17645,2025-03-09T05:30:13.542538-07:00,1012.95458984375,10.727848,10727.848 +17646,2025-03-09T05:30:24.264529-07:00,1012.94140625,10.721991,10721.991 +17647,2025-03-09T05:30:34.998841-07:00,1012.9627075195312,10.734312,10734.312 +17648,2025-03-09T05:30:45.722512-07:00,1012.9462280273438,10.723671,10723.671 +17649,2025-03-09T05:30:56.447448-07:00,1012.92822265625,10.724936,10724.936 +17650,2025-03-09T05:31:07.175641-07:00,1012.9263916015625,10.728193,10728.193 +17651,2025-03-09T05:31:17.899520-07:00,1012.9182739257812,10.723879,10723.879 +17652,2025-03-09T05:31:28.628638-07:00,1012.9395141601562,10.729118,10729.118 +17653,2025-03-09T05:31:39.352448-07:00,1012.9528198242188,10.72381,10723.81 +17654,2025-03-09T05:31:50.079793-07:00,1012.9381103515625,10.727345,10727.345 +17655,2025-03-09T05:32:00.795629-07:00,1012.9447021484375,10.715836,10715.836 +17656,2025-03-09T05:32:11.520659-07:00,1012.9447021484375,10.72503,10725.03 +17657,2025-03-09T05:32:22.250655-07:00,1012.9483032226562,10.729996,10729.996 +17658,2025-03-09T05:32:32.963614-07:00,1012.9384155273438,10.712959,10712.959 +17659,2025-03-09T05:32:43.692681-07:00,1012.9515380859375,10.729067,10729.067 +17660,2025-03-09T05:32:54.415378-07:00,1012.972900390625,10.722697,10722.697 +17661,2025-03-09T05:33:05.142972-07:00,1012.927001953125,10.727594,10727.594 +17662,2025-03-09T05:33:15.868448-07:00,1012.9483032226562,10.725476,10725.476 +17663,2025-03-09T05:33:26.596628-07:00,1012.95849609375,10.72818,10728.18 +17664,2025-03-09T05:33:37.326446-07:00,1012.9122924804688,10.729818,10729.818 +17665,2025-03-09T05:33:48.055538-07:00,1012.93359375,10.729092,10729.092 +17666,2025-03-09T05:33:58.781273-07:00,1012.9170532226562,10.725735,10725.735 +17667,2025-03-09T05:34:09.505596-07:00,1012.9287719726562,10.724323,10724.323 +17668,2025-03-09T05:34:20.233636-07:00,1012.935302734375,10.72804,10728.04 +17669,2025-03-09T05:34:30.954654-07:00,1012.90087890625,10.721018,10721.018 +17670,2025-03-09T05:34:41.677620-07:00,1012.9338989257812,10.722966,10722.966 +17671,2025-03-09T05:34:52.412446-07:00,1012.9486083984375,10.734826,10734.826 +17672,2025-03-09T05:35:03.131443-07:00,1012.9603271484375,10.718997,10718.997 +17673,2025-03-09T05:35:13.859780-07:00,1012.9338989257812,10.728337,10728.337 +17674,2025-03-09T05:35:24.585450-07:00,1012.9338989257812,10.72567,10725.67 +17675,2025-03-09T05:35:35.310790-07:00,1012.9320068359375,10.72534,10725.34 +17676,2025-03-09T05:35:46.032595-07:00,1012.9188232421875,10.721805,10721.805 +17677,2025-03-09T05:35:56.756621-07:00,1012.9536743164062,10.724026,10724.026 +17678,2025-03-09T05:35:57.612996-07:00,1012.9536743164062,0.856375,856.375 +17679,2025-03-09T05:36:07.490680-07:00,1012.920654296875,9.877684,9877.684 +17680,2025-03-09T05:36:18.216849-07:00,1012.9386596679688,10.726169,10726.169 +17681,2025-03-09T05:36:28.939896-07:00,1012.9320068359375,10.723047,10723.047 +17682,2025-03-09T05:36:39.663656-07:00,1012.9056396484375,10.72376,10723.76 +17683,2025-03-09T05:36:50.391653-07:00,1012.9338989257812,10.727997,10727.997 +17684,2025-03-09T05:37:01.128468-07:00,1012.8990478515625,10.736815,10736.815 +17685,2025-03-09T05:37:11.852448-07:00,1012.9320068359375,10.72398,10723.98 +17686,2025-03-09T05:37:22.581631-07:00,1012.9140625,10.729183,10729.183 +17687,2025-03-09T05:37:33.310643-07:00,1012.9188232421875,10.729012,10729.012 +17688,2025-03-09T05:37:44.036449-07:00,1012.9238891601562,10.725806,10725.806 +17689,2025-03-09T05:37:54.758448-07:00,1012.9107666015625,10.721999,10721.999 +17690,2025-03-09T05:38:05.487725-07:00,1012.9107666015625,10.729277,10729.277 +17691,2025-03-09T05:38:16.215620-07:00,1012.9320068359375,10.727895,10727.895 +17692,2025-03-09T05:38:26.944451-07:00,1012.8961181640625,10.728831,10728.831 +17693,2025-03-09T05:38:37.666142-07:00,1012.8909301757812,10.721691,10721.691 +17694,2025-03-09T05:38:48.390034-07:00,1012.861572265625,10.723892,10723.892 +17695,2025-03-09T05:38:59.125449-07:00,1012.9026489257812,10.735415,10735.415 +17696,2025-03-09T05:39:09.848838-07:00,1012.90771484375,10.723389,10723.389 +17697,2025-03-09T05:39:20.579447-07:00,1012.89453125,10.730609,10730.609 +17698,2025-03-09T05:39:31.301222-07:00,1012.9209594726562,10.721775,10721.775 +17699,2025-03-09T05:39:42.037835-07:00,1012.8993530273438,10.736613,10736.613 +17700,2025-03-09T05:39:52.757451-07:00,1012.9209594726562,10.719616,10719.616 +17701,2025-03-09T05:40:03.481243-07:00,1012.9522094726562,10.723792,10723.792 +17702,2025-03-09T05:40:14.215448-07:00,1012.9241943359375,10.734205,10734.205 +17703,2025-03-09T05:40:24.940451-07:00,1012.9308471679688,10.725003,10725.003 +17704,2025-03-09T05:40:35.664474-07:00,1012.9241943359375,10.724023,10724.023 +17705,2025-03-09T05:40:46.390781-07:00,1012.9425659179688,10.726307,10726.307 +17706,2025-03-09T05:40:57.126710-07:00,1012.9341430664062,10.735929,10735.929 +17707,2025-03-09T05:41:07.848642-07:00,1012.9407958984375,10.721932,10721.932 +17708,2025-03-09T05:41:18.578450-07:00,1012.9525146484375,10.729808,10729.808 +17709,2025-03-09T05:41:29.302472-07:00,1012.950927734375,10.724022,10724.022 +17710,2025-03-09T05:41:40.027704-07:00,1012.964111328125,10.725232,10725.232 +17711,2025-03-09T05:41:50.756622-07:00,1012.9724731445312,10.728918,10728.918 +17712,2025-03-09T05:42:01.485455-07:00,1012.9542236328125,10.728833,10728.833 +17713,2025-03-09T05:42:12.207660-07:00,1012.967529296875,10.722205,10722.205 +17714,2025-03-09T05:42:22.935211-07:00,1012.9857788085938,10.727551,10727.551 +17715,2025-03-09T05:42:33.659451-07:00,1012.9857788085938,10.72424,10724.24 +17716,2025-03-09T05:42:44.387648-07:00,1012.993896484375,10.728197,10728.197 +17717,2025-03-09T05:42:55.118446-07:00,1012.96923828125,10.730798,10730.798 +17718,2025-03-09T05:43:05.836629-07:00,1012.9611206054688,10.718183,10718.183 +17719,2025-03-09T05:43:16.562829-07:00,1012.9494018554688,10.7262,10726.2 +17720,2025-03-09T05:43:27.296583-07:00,1012.9592895507812,10.733754,10733.754 +17721,2025-03-09T05:43:38.015448-07:00,1012.9512329101562,10.718865,10718.865 +17722,2025-03-09T05:43:48.745446-07:00,1012.944580078125,10.729998,10729.998 +17723,2025-03-09T05:43:59.463344-07:00,1012.9349975585938,10.717898,10717.898 +17724,2025-03-09T05:44:10.188689-07:00,1012.9595947265625,10.725345,10725.345 +17725,2025-03-09T05:44:20.908328-07:00,1012.9712524414062,10.719639,10719.639 +17726,2025-03-09T05:44:31.636448-07:00,1012.9679565429688,10.72812,10728.12 +17727,2025-03-09T05:44:42.360710-07:00,1012.9271850585938,10.724262,10724.262 +17728,2025-03-09T05:44:53.088543-07:00,1012.9403076171875,10.727833,10727.833 +17729,2025-03-09T05:45:03.812629-07:00,1012.9913330078125,10.724086,10724.086 +17730,2025-03-09T05:45:14.531651-07:00,1012.958251953125,10.719022,10719.022 +17731,2025-03-09T05:45:25.252523-07:00,1012.9751586914062,10.720872,10720.872 +17732,2025-03-09T05:45:35.979604-07:00,1012.9603271484375,10.727081,10727.081 +17733,2025-03-09T05:45:46.706728-07:00,1012.9375,10.727124,10727.124 +17734,2025-03-09T05:45:57.435630-07:00,1012.950927734375,10.728902,10728.902 +17735,2025-03-09T05:46:08.158744-07:00,1012.9578247070312,10.723114,10723.114 +17736,2025-03-09T05:46:18.886788-07:00,1012.9467163085938,10.728044,10728.044 +17737,2025-03-09T05:46:29.606445-07:00,1012.9385375976562,10.719657,10719.657 +17738,2025-03-09T05:46:40.329449-07:00,1012.9468994140625,10.723004,10723.004 +17739,2025-03-09T05:46:51.050652-07:00,1012.9981079101562,10.721203,10721.203 +17740,2025-03-09T05:47:01.783257-07:00,1013.0379638671875,10.732605,10732.605 +17741,2025-03-09T05:47:12.503471-07:00,1012.9871826171875,10.720214,10720.214 +17742,2025-03-09T05:47:23.229742-07:00,1013.0006103515625,10.726271,10726.271 +17743,2025-03-09T05:47:33.957761-07:00,1012.9924926757812,10.728019,10728.019 +17744,2025-03-09T05:47:44.677458-07:00,1012.9729614257812,10.719697,10719.697 +17745,2025-03-09T05:47:55.402840-07:00,1012.9812622070312,10.725382,10725.382 +17746,2025-03-09T05:48:06.125446-07:00,1012.9830322265625,10.722606,10722.606 +17747,2025-03-09T05:48:16.847249-07:00,1012.9454956054688,10.721803,10721.803 +17748,2025-03-09T05:48:27.574638-07:00,1012.9718627929688,10.727389,10727.389 +17749,2025-03-09T05:48:38.300450-07:00,1012.9721069335938,10.725812,10725.812 +17750,2025-03-09T05:48:49.025518-07:00,1012.947509765625,10.725068,10725.068 +17751,2025-03-09T05:48:59.739656-07:00,1012.9818725585938,10.714138,10714.138 +17752,2025-03-09T05:49:10.467705-07:00,1012.9935913085938,10.728049,10728.049 +17753,2025-03-09T05:49:21.192448-07:00,1012.9983520507812,10.724743,10724.743 +17754,2025-03-09T05:49:31.915930-07:00,1012.982177734375,10.723482,10723.482 +17755,2025-03-09T05:49:42.636471-07:00,1013.0000610351562,10.720541,10720.541 +17756,2025-03-09T05:49:53.360689-07:00,1012.9854125976562,10.724218,10724.218 +17757,2025-03-09T05:50:04.085827-07:00,1013.0018920898438,10.725138,10725.138 +17758,2025-03-09T05:50:14.818445-07:00,1012.9937744140625,10.732618,10732.618 +17759,2025-03-09T05:50:25.543449-07:00,1012.9871826171875,10.725004,10725.004 +17760,2025-03-09T05:50:36.265627-07:00,1013.0036010742188,10.722178,10722.178 +17761,2025-03-09T05:50:46.992778-07:00,1012.985595703125,10.727151,10727.151 +17762,2025-03-09T05:50:57.720448-07:00,1012.9988403320312,10.72767,10727.67 +17763,2025-03-09T05:51:08.443633-07:00,1012.9757080078125,10.723185,10723.185 +17764,2025-03-09T05:51:19.169526-07:00,1012.9690551757812,10.725893,10725.893 +17765,2025-03-09T05:51:29.893241-07:00,1012.9757080078125,10.723715,10723.715 +17766,2025-03-09T05:51:40.620447-07:00,1012.9690551757812,10.727206,10727.206 +17767,2025-03-09T05:51:51.351449-07:00,1012.9742431640625,10.731002,10731.002 +17768,2025-03-09T05:52:02.075600-07:00,1012.9675903320312,10.724151,10724.151 +17769,2025-03-09T05:52:12.793447-07:00,1012.9609375,10.717847,10717.847 +17770,2025-03-09T05:52:23.528345-07:00,1012.9742431640625,10.734898,10734.898 +17771,2025-03-09T05:52:34.220638-07:00,1012.9690551757812,10.692293,10692.293 +17772,2025-03-09T05:52:44.943509-07:00,1012.9706420898438,10.722871,10722.871 +17773,2025-03-09T05:52:55.665481-07:00,1012.9640502929688,10.721972,10721.972 +17774,2025-03-09T05:53:06.382850-07:00,1012.972412109375,10.717369,10717.369 +17775,2025-03-09T05:53:17.116081-07:00,1012.9657592773438,10.733231,10733.231 +17776,2025-03-09T05:53:27.840508-07:00,1012.9673461914062,10.724427,10724.427 +17777,2025-03-09T05:53:38.563505-07:00,1012.98388671875,10.722997,10722.997 +17778,2025-03-09T05:53:49.287504-07:00,1012.9970092773438,10.723999,10723.999 +17779,2025-03-09T05:54:00.023108-07:00,1012.970703125,10.735604,10735.604 +17780,2025-03-09T05:54:10.745297-07:00,1012.950927734375,10.722189,10722.189 +17781,2025-03-09T05:54:21.476686-07:00,1012.9539184570312,10.731389,10731.389 +17782,2025-03-09T05:54:32.199953-07:00,1012.944091796875,10.723267,10723.267 +17783,2025-03-09T05:54:42.931478-07:00,1012.9425048828125,10.731525,10731.525 +17784,2025-03-09T05:54:53.660055-07:00,1012.93896484375,10.728577,10728.577 +17785,2025-03-09T05:55:04.382480-07:00,1012.9423217773438,10.722425,10722.425 +17786,2025-03-09T05:55:15.108481-07:00,1012.9290771484375,10.726001,10726.001 +17787,2025-03-09T05:55:25.844690-07:00,1012.9522094726562,10.736209,10736.209 +17788,2025-03-09T05:55:36.571552-07:00,1012.9126586914062,10.726862,10726.862 +17789,2025-03-09T05:55:47.297667-07:00,1012.9423217773438,10.726115,10726.115 +17790,2025-03-09T05:55:58.034659-07:00,1012.935791015625,10.736992,10736.992 +17791,2025-03-09T05:56:08.762603-07:00,1012.9127197265625,10.727944,10727.944 +17792,2025-03-09T05:56:19.488480-07:00,1012.9288940429688,10.725877,10725.877 +17793,2025-03-09T05:56:30.220239-07:00,1012.9241943359375,10.731759,10731.759 +17794,2025-03-09T05:56:40.944894-07:00,1012.9718627929688,10.724655,10724.655 +17795,2025-03-09T05:56:51.675663-07:00,1012.9503173828125,10.730769,10730.769 +17796,2025-03-09T05:57:02.404482-07:00,1012.9452514648438,10.728819,10728.819 +17797,2025-03-09T05:57:13.123480-07:00,1012.9404907226562,10.718998,10718.998 +17798,2025-03-09T05:57:23.850767-07:00,1012.9698486328125,10.727287,10727.287 +17799,2025-03-09T05:57:34.580690-07:00,1012.9600219726562,10.729923,10729.923 +17800,2025-03-09T05:57:45.307621-07:00,1012.9812622070312,10.726931,10726.931 +17801,2025-03-09T05:57:52.586837-07:00,1012.9564208984375,7.279216,7279.216 +17802,2025-03-09T05:57:56.031668-07:00,1012.9564208984375,3.444831,3444.831 +17803,2025-03-09T05:58:06.767475-07:00,1012.9795532226562,10.735807,10735.807 +17804,2025-03-09T05:58:17.493826-07:00,1012.963134765625,10.726351,10726.351 +17805,2025-03-09T05:58:28.216482-07:00,1012.9679565429688,10.722656,10722.656 +17806,2025-03-09T05:58:38.947695-07:00,1012.9859619140625,10.731213,10731.213 +17807,2025-03-09T05:58:49.673479-07:00,1012.9992065429688,10.725784,10725.784 +17808,2025-03-09T05:59:00.393483-07:00,1012.9793701171875,10.720004,10720.004 +17809,2025-03-09T05:59:11.121930-07:00,1012.989013671875,10.728447,10728.447 +17810,2025-03-09T05:59:21.847505-07:00,1012.9640502929688,10.725575,10725.575 +17811,2025-03-09T05:59:32.580853-07:00,1012.9971923828125,10.733348,10733.348 +17812,2025-03-09T05:59:43.294673-07:00,1012.9674072265625,10.71382,10713.82 +17813,2025-03-09T05:59:54.024482-07:00,1012.9707641601562,10.729809,10729.809 +17814,2025-03-09T06:00:04.749538-07:00,1012.9671630859375,10.725056,10725.056 +17815,2025-03-09T06:00:15.484498-07:00,1012.9756469726562,10.73496,10734.96 +17816,2025-03-09T06:00:26.211345-07:00,1012.9653930664062,10.726847,10726.847 +17817,2025-03-09T06:00:36.935510-07:00,1012.9738159179688,10.724165,10724.165 +17818,2025-03-09T06:00:47.662481-07:00,1012.978271484375,10.726971,10726.971 +17819,2025-03-09T06:00:58.384482-07:00,1012.9603271484375,10.722001,10722.001 +17820,2025-03-09T06:01:09.113693-07:00,1012.9405517578125,10.729211,10729.211 +17821,2025-03-09T06:01:19.834505-07:00,1012.9537353515625,10.720812,10720.812 +17822,2025-03-09T06:01:30.561482-07:00,1012.9718017578125,10.726977,10726.977 +17823,2025-03-09T06:01:41.282190-07:00,1012.9484252929688,10.720708,10720.708 +17824,2025-03-09T06:01:52.011475-07:00,1012.9073486328125,10.729285,10729.285 +17825,2025-03-09T06:02:02.740892-07:00,1012.9400024414062,10.729417,10729.417 +17826,2025-03-09T06:02:13.459970-07:00,1012.9400024414062,10.719078,10719.078 +17827,2025-03-09T06:02:24.182547-07:00,1012.9484252929688,10.722577,10722.577 +17828,2025-03-09T06:02:34.916645-07:00,1012.9400634765625,10.734098,10734.098 +17829,2025-03-09T06:02:45.635508-07:00,1012.91845703125,10.718863,10718.863 +17830,2025-03-09T06:02:56.370054-07:00,1012.9151611328125,10.734546,10734.546 +17831,2025-03-09T06:03:07.089769-07:00,1012.9349975585938,10.719715,10719.715 +17832,2025-03-09T06:03:17.818130-07:00,1012.9364624023438,10.728361,10728.361 +17833,2025-03-09T06:03:28.549609-07:00,1012.9332275390625,10.731479,10731.479 +17834,2025-03-09T06:03:39.271551-07:00,1012.9182739257812,10.721942,10721.942 +17835,2025-03-09T06:03:50.009669-07:00,1012.905029296875,10.738118,10738.118 +17836,2025-03-09T06:04:00.735848-07:00,1012.9080200195312,10.726179,10726.179 +17837,2025-03-09T06:04:11.464558-07:00,1012.8834228515625,10.72871,10728.71 +17838,2025-03-09T06:04:22.190679-07:00,1012.8864135742188,10.726121,10726.121 +17839,2025-03-09T06:04:32.918683-07:00,1012.8817138671875,10.728004,10728.004 +17840,2025-03-09T06:04:43.646849-07:00,1012.9012451171875,10.728166,10728.166 +17841,2025-03-09T06:04:54.369577-07:00,1012.892822265625,10.722728,10722.728 +17842,2025-03-09T06:05:05.101690-07:00,1012.9090576171875,10.732113,10732.113 +17843,2025-03-09T06:05:15.832596-07:00,1012.9138793945312,10.730906,10730.906 +17844,2025-03-09T06:05:26.559028-07:00,1012.9039916992188,10.726432,10726.432 +17845,2025-03-09T06:05:37.291578-07:00,1012.9285888671875,10.73255,10732.55 +17846,2025-03-09T06:05:48.013667-07:00,1012.9271850585938,10.722089,10722.089 +17847,2025-03-09T06:05:58.746718-07:00,1012.9220581054688,10.733051,10733.051 +17848,2025-03-09T06:06:09.478611-07:00,1012.892333984375,10.731893,10731.893 +17849,2025-03-09T06:06:20.211872-07:00,1012.911865234375,10.733261,10733.261 +17850,2025-03-09T06:06:30.944589-07:00,1012.9218139648438,10.732717,10732.717 +17851,2025-03-09T06:06:41.669483-07:00,1012.8998413085938,10.724894,10724.894 +17852,2025-03-09T06:06:52.402657-07:00,1012.9115600585938,10.733174,10733.174 +17853,2025-03-09T06:07:03.131553-07:00,1012.9065551757812,10.728896,10728.896 +17854,2025-03-09T06:07:13.867692-07:00,1012.9112548828125,10.736139,10736.139 +17855,2025-03-09T06:07:24.588676-07:00,1012.9359130859375,10.720984,10720.984 +17856,2025-03-09T06:07:35.324514-07:00,1012.937744140625,10.735838,10735.838 +17857,2025-03-09T06:07:46.049621-07:00,1012.9143676757812,10.725107,10725.107 +17858,2025-03-09T06:07:56.788847-07:00,1012.9241943359375,10.739226,10739.226 +17859,2025-03-09T06:08:07.519009-07:00,1012.9539794921875,10.730162,10730.162 +17860,2025-03-09T06:08:18.242482-07:00,1012.9342041015625,10.723473,10723.473 +17861,2025-03-09T06:08:28.974858-07:00,1012.9305419921875,10.732376,10732.376 +17862,2025-03-09T06:08:39.704479-07:00,1012.9173583984375,10.729621,10729.621 +17863,2025-03-09T06:08:50.433569-07:00,1012.9140625,10.72909,10729.09 +17864,2025-03-09T06:09:01.165648-07:00,1012.90234375,10.732079,10732.079 +17865,2025-03-09T06:09:11.901547-07:00,1012.91552734375,10.735899,10735.899 +17866,2025-03-09T06:09:22.621619-07:00,1012.9453125,10.720072,10720.072 +17867,2025-03-09T06:09:33.357587-07:00,1012.9137573242188,10.735968,10735.968 +17868,2025-03-09T06:09:44.089491-07:00,1012.9122924804688,10.731904,10731.904 +17869,2025-03-09T06:09:54.819646-07:00,1012.90869140625,10.730155,10730.155 +17870,2025-03-09T06:10:05.552998-07:00,1012.9567260742188,10.733352,10733.352 +17871,2025-03-09T06:10:16.269481-07:00,1012.9170532226562,10.716483,10716.483 +17872,2025-03-09T06:10:26.997801-07:00,1012.9170532226562,10.72832,10728.32 +17873,2025-03-09T06:10:37.734327-07:00,1012.8954467773438,10.736526,10736.526 +17874,2025-03-09T06:10:48.458485-07:00,1012.9662475585938,10.724158,10724.158 +17875,2025-03-09T06:10:59.189738-07:00,1012.9515380859375,10.731253,10731.253 +17876,2025-03-09T06:11:09.920509-07:00,1012.9515380859375,10.730771,10730.771 +17877,2025-03-09T06:11:20.653477-07:00,1012.9398193359375,10.732968,10732.968 +17878,2025-03-09T06:11:31.376645-07:00,1012.9581909179688,10.723168,10723.168 +17879,2025-03-09T06:11:42.112807-07:00,1012.9302978515625,10.736162,10736.162 +17880,2025-03-09T06:11:52.837645-07:00,1012.9464721679688,10.724838,10724.838 +17881,2025-03-09T06:12:03.563649-07:00,1012.9483032226562,10.726004,10726.004 +17882,2025-03-09T06:12:14.289614-07:00,1012.9302978515625,10.725965,10725.965 +17883,2025-03-09T06:12:25.021504-07:00,1012.9464721679688,10.73189,10731.89 +17884,2025-03-09T06:12:35.746218-07:00,1012.9662475585938,10.724714,10724.714 +17885,2025-03-09T06:12:46.473761-07:00,1012.9662475585938,10.727543,10727.543 +17886,2025-03-09T06:12:57.201660-07:00,1012.9464721679688,10.727899,10727.899 +17887,2025-03-09T06:13:07.939481-07:00,1012.9417114257812,10.737821,10737.821 +17888,2025-03-09T06:13:18.668479-07:00,1012.9581909179688,10.728998,10728.998 +17889,2025-03-09T06:13:29.391669-07:00,1012.9515380859375,10.72319,10723.19 +17890,2025-03-09T06:13:40.123772-07:00,1012.9251708984375,10.732103,10732.103 +17891,2025-03-09T06:13:50.854484-07:00,1012.9464721679688,10.730712,10730.712 +17892,2025-03-09T06:14:01.578078-07:00,1012.9302978515625,10.723594,10723.594 +17893,2025-03-09T06:14:12.301432-07:00,1012.9368896484375,10.723354,10723.354 +17894,2025-03-09T06:14:23.032496-07:00,1012.9202880859375,10.731064,10731.064 +17895,2025-03-09T06:14:33.762567-07:00,1012.9699096679688,10.730071,10730.071 +17896,2025-03-09T06:14:44.492480-07:00,1012.9746704101562,10.729913,10729.913 +17897,2025-03-09T06:14:55.213206-07:00,1012.94677734375,10.720726,10720.726 +17898,2025-03-09T06:15:05.942609-07:00,1012.94677734375,10.729403,10729.403 +17899,2025-03-09T06:15:16.669478-07:00,1012.940185546875,10.726869,10726.869 +17900,2025-03-09T06:15:27.392660-07:00,1012.93359375,10.723182,10723.182 +17901,2025-03-09T06:15:38.123687-07:00,1012.9386596679688,10.731027,10731.027 +17902,2025-03-09T06:15:48.845936-07:00,1012.95849609375,10.722249,10722.249 +17903,2025-03-09T06:15:59.569621-07:00,1012.9453125,10.723685,10723.685 +17904,2025-03-09T06:16:10.305538-07:00,1012.9420166015625,10.735917,10735.917 +17905,2025-03-09T06:16:21.030481-07:00,1012.9632568359375,10.724943,10724.943 +17906,2025-03-09T06:16:31.755562-07:00,1012.9567260742188,10.725081,10725.081 +17907,2025-03-09T06:16:42.485660-07:00,1012.9651489257812,10.730098,10730.098 +17908,2025-03-09T06:16:53.207504-07:00,1012.9434204101562,10.721844,10721.844 +17909,2025-03-09T06:17:03.934911-07:00,1012.9684448242188,10.727407,10727.407 +17910,2025-03-09T06:17:14.666611-07:00,1012.9486083984375,10.7317,10731.7 +17911,2025-03-09T06:17:25.397483-07:00,1012.9434204101562,10.730872,10730.872 +17912,2025-03-09T06:17:36.122659-07:00,1012.9684448242188,10.725176,10725.176 +17913,2025-03-09T06:17:46.839482-07:00,1012.9404907226562,10.716823,10716.823 +17914,2025-03-09T06:17:57.576690-07:00,1012.9287719726562,10.737208,10737.208 +17915,2025-03-09T06:18:08.294542-07:00,1012.951904296875,10.717852,10717.852 +17916,2025-03-09T06:18:19.026478-07:00,1012.9668579101562,10.731936,10731.936 +17917,2025-03-09T06:18:29.754698-07:00,1012.9453125,10.72822,10728.22 +17918,2025-03-09T06:18:40.480482-07:00,1012.9453125,10.725784,10725.784 +17919,2025-03-09T06:18:51.208517-07:00,1012.965087890625,10.728035,10728.035 +17920,2025-03-09T06:19:01.935478-07:00,1012.9422607421875,10.726961,10726.961 +17921,2025-03-09T06:19:12.663478-07:00,1012.9473266601562,10.728,10728.0 +17922,2025-03-09T06:19:23.383684-07:00,1012.932373046875,10.720206,10720.206 +17923,2025-03-09T06:19:34.106052-07:00,1012.9473266601562,10.722368,10722.368 +17924,2025-03-09T06:19:44.838689-07:00,1012.9407958984375,10.732637,10732.637 +17925,2025-03-09T06:19:55.554548-07:00,1012.9308471679688,10.715859,10715.859 +17926,2025-03-09T06:20:06.290705-07:00,1012.9639282226562,10.736157,10736.157 +17927,2025-03-09T06:20:17.015482-07:00,1012.9425659179688,10.724777,10724.777 +17928,2025-03-09T06:20:27.746478-07:00,1012.9375,10.730996,10730.996 +17929,2025-03-09T06:20:38.471666-07:00,1012.9407958984375,10.725188,10725.188 +17930,2025-03-09T06:20:49.192686-07:00,1012.970458984375,10.72102,10721.02 +17931,2025-03-09T06:20:59.924660-07:00,1012.9143676757812,10.731974,10731.974 +17932,2025-03-09T06:21:10.650482-07:00,1012.9260864257812,10.725822,10725.822 +17933,2025-03-09T06:21:21.376480-07:00,1012.9590454101562,10.725998,10725.998 +17934,2025-03-09T06:21:32.101258-07:00,1012.9425048828125,10.724778,10724.778 +17935,2025-03-09T06:21:42.823484-07:00,1012.9425048828125,10.722226,10722.226 +17936,2025-03-09T06:21:53.551651-07:00,1012.9410400390625,10.728167,10728.167 +17937,2025-03-09T06:22:04.275482-07:00,1012.967529296875,10.723831,10723.831 +17938,2025-03-09T06:22:15.004771-07:00,1012.9461059570312,10.729289,10729.289 +17939,2025-03-09T06:22:25.735985-07:00,1012.9740600585938,10.731214,10731.214 +17940,2025-03-09T06:22:36.459482-07:00,1012.9494018554688,10.723497,10723.497 +17941,2025-03-09T06:22:47.176923-07:00,1012.9494018554688,10.717441,10717.441 +17942,2025-03-09T06:22:57.910480-07:00,1012.962646484375,10.733557,10733.557 +17943,2025-03-09T06:23:08.629660-07:00,1012.95263671875,10.71918,10719.18 +17944,2025-03-09T06:23:19.353479-07:00,1012.9461059570312,10.723819,10723.819 +17945,2025-03-09T06:23:30.074659-07:00,1012.943115234375,10.72118,10721.18 +17946,2025-03-09T06:23:40.804709-07:00,1012.9562377929688,10.73005,10730.05 +17947,2025-03-09T06:23:51.530700-07:00,1012.9679565429688,10.725991,10725.991 +17948,2025-03-09T06:24:02.248479-07:00,1012.9893798828125,10.717779,10717.779 +17949,2025-03-09T06:24:12.976483-07:00,1012.9595947265625,10.728004,10728.004 +17950,2025-03-09T06:24:23.703459-07:00,1012.9779052734375,10.726976,10726.976 +17951,2025-03-09T06:24:34.423479-07:00,1012.9745483398438,10.72002,10720.02 +17952,2025-03-09T06:24:45.146784-07:00,1013.0009155273438,10.723305,10723.305 +17953,2025-03-09T06:24:55.871692-07:00,1013.006103515625,10.724908,10724.908 +17954,2025-03-09T06:25:06.601682-07:00,1013.019287109375,10.72999,10729.99 +17955,2025-03-09T06:25:17.319481-07:00,1012.98486328125,10.717799,10717.799 +17956,2025-03-09T06:25:28.043797-07:00,1012.9979858398438,10.724316,10724.316 +17957,2025-03-09T06:25:38.773630-07:00,1013.0028076171875,10.729833,10729.833 +17958,2025-03-09T06:25:49.500590-07:00,1013.0357666015625,10.72696,10726.96 +17959,2025-03-09T06:26:00.220482-07:00,1013.0078735351562,10.719892,10719.892 +17960,2025-03-09T06:26:10.949546-07:00,1013.0045166015625,10.729064,10729.064 +17961,2025-03-09T06:26:21.675646-07:00,1013.0276489257812,10.7261,10726.1 +17962,2025-03-09T06:26:32.396630-07:00,1013.012939453125,10.720984,10720.984 +17963,2025-03-09T06:26:43.129665-07:00,1012.999755859375,10.733035,10733.035 +17964,2025-03-09T06:26:53.852482-07:00,1013.017822265625,10.722817,10722.817 +17965,2025-03-09T06:27:04.579482-07:00,1012.999755859375,10.727,10727.0 +17966,2025-03-09T06:27:15.303805-07:00,1013.0328369140625,10.724323,10724.323 +17967,2025-03-09T06:27:26.027478-07:00,1012.99609375,10.723673,10723.673 +17968,2025-03-09T06:27:36.753733-07:00,1013.001220703125,10.726255,10726.255 +17969,2025-03-09T06:27:47.479645-07:00,1012.989501953125,10.725912,10725.912 +17970,2025-03-09T06:27:58.200557-07:00,1013.03759765625,10.720912,10720.912 +17971,2025-03-09T06:28:08.927481-07:00,1012.9879760742188,10.726924,10726.924 +17972,2025-03-09T06:28:19.644697-07:00,1012.99609375,10.717216,10717.216 +17973,2025-03-09T06:28:30.373479-07:00,1012.99462890625,10.728782,10728.782 +17974,2025-03-09T06:28:41.086699-07:00,1013.0078125,10.71322,10713.22 +17975,2025-03-09T06:28:51.813500-07:00,1013.0078125,10.726801,10726.801 +17976,2025-03-09T06:29:02.544695-07:00,1012.99462890625,10.731195,10731.195 +17977,2025-03-09T06:29:13.261691-07:00,1013.001220703125,10.716996,10716.996 +17978,2025-03-09T06:29:23.981485-07:00,1013.0078125,10.719794,10719.794 +17979,2025-03-09T06:29:34.704825-07:00,1013.001220703125,10.72334,10723.34 +17980,2025-03-09T06:29:45.431540-07:00,1013.0078125,10.726715,10726.715 +17981,2025-03-09T06:29:56.152509-07:00,1013.01953125,10.720969,10720.969 +17982,2025-03-09T06:30:06.877686-07:00,1012.9846801757812,10.725177,10725.177 +17983,2025-03-09T06:30:17.602670-07:00,1013.0176391601562,10.724984,10724.984 +17984,2025-03-09T06:30:28.321581-07:00,1013.0045166015625,10.718911,10718.911 +17985,2025-03-09T06:30:39.038479-07:00,1012.9996948242188,10.716898,10716.898 +17986,2025-03-09T06:30:49.770683-07:00,1013.0078125,10.732204,10732.204 +17987,2025-03-09T06:31:00.490692-07:00,1012.9996948242188,10.720009,10720.009 +17988,2025-03-09T06:31:11.211622-07:00,1013.0309448242188,10.72093,10720.93 +17989,2025-03-09T06:31:21.937663-07:00,1012.9996948242188,10.726041,10726.041 +17990,2025-03-09T06:31:32.661476-07:00,1012.9898681640625,10.723813,10723.813 +17991,2025-03-09T06:31:43.380685-07:00,1012.9798583984375,10.719209,10719.209 +17992,2025-03-09T06:31:54.109687-07:00,1012.9949340820312,10.729002,10729.002 +17993,2025-03-09T06:32:04.835885-07:00,1012.9949340820312,10.726198,10726.198 +17994,2025-03-09T06:32:15.552476-07:00,1013.0309448242188,10.716591,10716.591 +17995,2025-03-09T06:32:26.275478-07:00,1012.9798583984375,10.723002,10723.002 +17996,2025-03-09T06:32:37.005647-07:00,1013.0128784179688,10.730169,10730.169 +17997,2025-03-09T06:32:47.720034-07:00,1013.026123046875,10.714387,10714.387 +17998,2025-03-09T06:32:58.446540-07:00,1012.9900512695312,10.726506,10726.506 +17999,2025-03-09T06:33:09.174669-07:00,1012.9834594726562,10.728129,10728.129 +18000,2025-03-09T06:33:19.893721-07:00,1012.9915771484375,10.719052,10719.052 +18001,2025-03-09T06:33:30.619630-07:00,1012.994873046875,10.725909,10725.909 +18002,2025-03-09T06:33:41.336479-07:00,1012.9552612304688,10.716849,10716.849 +18003,2025-03-09T06:33:52.063622-07:00,1012.9967041015625,10.727143,10727.143 +18004,2025-03-09T06:34:02.794765-07:00,1012.9654541015625,10.731143,10731.143 +18005,2025-03-09T06:34:13.515482-07:00,1012.95703125,10.720717,10720.717 +18006,2025-03-09T06:34:24.236481-07:00,1012.9785766601562,10.720999,10720.999 +18007,2025-03-09T06:34:34.965484-07:00,1012.9768676757812,10.729003,10729.003 +18008,2025-03-09T06:34:45.687245-07:00,1012.9290771484375,10.721761,10721.761 +18009,2025-03-09T06:34:56.402479-07:00,1012.963623046875,10.715234,10715.234 +18010,2025-03-09T06:35:07.126669-07:00,1012.989990234375,10.72419,10724.19 +18011,2025-03-09T06:35:17.855476-07:00,1012.97021484375,10.728807,10728.807 +18012,2025-03-09T06:35:28.575774-07:00,1012.9671630859375,10.720298,10720.298 +18013,2025-03-09T06:35:39.300504-07:00,1013.001708984375,10.72473,10724.73 +18014,2025-03-09T06:35:50.032697-07:00,1012.9606323242188,10.732193,10732.193 +18015,2025-03-09T06:36:00.760741-07:00,1012.9573364257812,10.728044,10728.044 +18016,2025-03-09T06:36:11.484506-07:00,1012.9293823242188,10.723765,10723.765 +18017,2025-03-09T06:36:22.207480-07:00,1012.970458984375,10.722974,10722.974 +18018,2025-03-09T06:36:32.926481-07:00,1012.9573364257812,10.719001,10719.001 +18019,2025-03-09T06:36:43.654892-07:00,1012.9771118164062,10.728411,10728.411 +18020,2025-03-09T06:36:54.370486-07:00,1012.967529296875,10.715594,10715.594 +18021,2025-03-09T06:37:05.092549-07:00,1012.9873657226562,10.722063,10722.063 +18022,2025-03-09T06:37:15.821819-07:00,1012.9656372070312,10.72927,10729.27 +18023,2025-03-09T06:37:26.549688-07:00,1013.01513671875,10.727869,10727.869 +18024,2025-03-09T06:37:37.270904-07:00,1012.98876953125,10.721216,10721.216 +18025,2025-03-09T06:37:47.998481-07:00,1012.982177734375,10.727577,10727.577 +18026,2025-03-09T06:37:58.720659-07:00,1013.00048828125,10.722178,10722.178 +18027,2025-03-09T06:38:09.451480-07:00,1012.9920043945312,10.730821,10730.821 +18028,2025-03-09T06:38:20.174735-07:00,1013.0119018554688,10.723255,10723.255 +18029,2025-03-09T06:38:30.894481-07:00,1012.9986572265625,10.719746,10719.746 +18030,2025-03-09T06:38:41.625482-07:00,1013.0301513671875,10.731001,10731.001 +18031,2025-03-09T06:38:52.339477-07:00,1012.9920043945312,10.713995,10713.995 +18032,2025-03-09T06:39:03.067484-07:00,1013.0037231445312,10.728007,10728.007 +18033,2025-03-09T06:39:24.513534-07:00,1013.0037231445312,21.44605,21446.05 +18034,2025-03-09T06:39:35.244644-07:00,1013.0154418945312,10.73111,10731.11 +18035,2025-03-09T06:39:45.964482-07:00,1012.99560546875,10.719838,10719.838 +18036,2025-03-09T06:39:56.692928-07:00,1013.013671875,10.728446,10728.446 +18037,2025-03-09T06:40:07.417476-07:00,1013.0070190429688,10.724548,10724.548 +18038,2025-03-09T06:40:18.145482-07:00,1013.0055541992188,10.728006,10728.006 +18039,2025-03-09T06:40:28.872649-07:00,1013.0106201171875,10.727167,10727.167 +18040,2025-03-09T06:40:39.595481-07:00,1013.0321655273438,10.722832,10722.832 +18041,2025-03-09T06:40:50.320589-07:00,1013.0156860351562,10.725108,10725.108 +18042,2025-03-09T06:41:01.039481-07:00,1013.0126342773438,10.718892,10718.892 +18043,2025-03-09T06:41:11.760195-07:00,1013.0175170898438,10.720714,10720.714 +18044,2025-03-09T06:41:22.493642-07:00,1013.0093994140625,10.733447,10733.447 +18045,2025-03-09T06:41:33.213954-07:00,1012.9993896484375,10.720312,10720.312 +18046,2025-03-09T06:41:43.938546-07:00,1013.0078125,10.724592,10724.592 +18047,2025-03-09T06:41:54.662480-07:00,1013.0509643554688,10.723934,10723.934 +18048,2025-03-09T06:41:55.422663-07:00,1013.02783203125,0.760183,760.183 +18049,2025-03-09T06:42:05.391504-07:00,1013.0310668945312,9.968841,9968.841 +18050,2025-03-09T06:42:16.114478-07:00,1013.0364990234375,10.722974,10722.974 +18051,2025-03-09T06:42:26.828481-07:00,1013.05322265625,10.714003,10714.003 +18052,2025-03-09T06:42:37.559544-07:00,1013.065185546875,10.731063,10731.063 +18053,2025-03-09T06:42:48.283359-07:00,1013.0650634765625,10.723815,10723.815 +18054,2025-03-09T06:42:59.002479-07:00,1013.0704956054688,10.71912,10719.12 +18055,2025-03-09T06:43:09.730662-07:00,1013.0541381835938,10.728183,10728.183 +18056,2025-03-09T06:43:20.444593-07:00,1013.080810546875,10.713931,10713.931 +18057,2025-03-09T06:43:31.173686-07:00,1013.0758666992188,10.729093,10729.093 +18058,2025-03-09T06:43:41.890651-07:00,1013.0761108398438,10.716965,10716.965 +18059,2025-03-09T06:43:52.611419-07:00,1013.0811157226562,10.720768,10720.768 +18060,2025-03-09T06:44:03.336478-07:00,1013.1157836914062,10.725059,10725.059 +18061,2025-03-09T06:44:14.068509-07:00,1013.1157836914062,10.732031,10732.031 +18062,2025-03-09T06:44:24.790687-07:00,1013.09619140625,10.722178,10722.178 +18063,2025-03-09T06:44:35.509229-07:00,1013.124267578125,10.718542,10718.542 +18064,2025-03-09T06:44:46.239481-07:00,1013.11279296875,10.730252,10730.252 +18065,2025-03-09T06:44:56.956558-07:00,1013.1278076171875,10.717077,10717.077 +18066,2025-03-09T06:45:07.680693-07:00,1013.1314086914062,10.724135,10724.135 +18067,2025-03-09T06:45:18.404662-07:00,1013.118408203125,10.723969,10723.969 +18068,2025-03-09T06:45:29.136097-07:00,1013.1216430664062,10.731435,10731.435 +18069,2025-03-09T06:45:39.854683-07:00,1013.0970458984375,10.718586,10718.586 +18070,2025-03-09T06:45:50.578009-07:00,1013.1218872070312,10.723326,10723.326 +18071,2025-03-09T06:46:01.297483-07:00,1013.1118774414062,10.719474,10719.474 +18072,2025-03-09T06:46:12.018522-07:00,1013.1448974609375,10.721039,10721.039 +18073,2025-03-09T06:46:22.744684-07:00,1013.1500244140625,10.726162,10726.162 +18074,2025-03-09T06:46:33.466372-07:00,1013.1319580078125,10.721688,10721.688 +18075,2025-03-09T06:46:44.180695-07:00,1013.1517333984375,10.714323,10714.323 +18076,2025-03-09T06:46:54.899543-07:00,1013.1304931640625,10.718848,10718.848 +18077,2025-03-09T06:47:05.622005-07:00,1013.1436157226562,10.722462,10722.462 +18078,2025-03-09T06:47:16.342476-07:00,1013.1238403320312,10.720471,10720.471 +18079,2025-03-09T06:47:27.065678-07:00,1013.1138916015625,10.723202,10723.202 +18080,2025-03-09T06:47:37.793481-07:00,1013.1286010742188,10.727803,10727.803 +18081,2025-03-09T06:47:48.511756-07:00,1013.1270141601562,10.718275,10718.275 +18082,2025-03-09T06:47:59.229476-07:00,1013.1073608398438,10.71772,10717.72 +18083,2025-03-09T06:48:09.954708-07:00,1013.1304931640625,10.725232,10725.232 +18084,2025-03-09T06:48:20.680482-07:00,1013.1087646484375,10.725774,10725.774 +18085,2025-03-09T06:48:31.402557-07:00,1013.1021728515625,10.722075,10722.075 +18086,2025-03-09T06:48:42.120081-07:00,1013.1238403320312,10.717524,10717.524 +18087,2025-03-09T06:48:52.846482-07:00,1013.1040649414062,10.726401,10726.401 +18088,2025-03-09T06:49:03.556524-07:00,1013.110595703125,10.710042,10710.042 +18089,2025-03-09T06:49:14.283480-07:00,1013.0923461914062,10.726956,10726.956 +18090,2025-03-09T06:49:24.996968-07:00,1013.1268920898438,10.713488,10713.488 +18091,2025-03-09T06:49:35.717667-07:00,1013.1151733398438,10.720699,10720.699 +18092,2025-03-09T06:49:46.435481-07:00,1013.1434326171875,10.717814,10717.814 +18093,2025-03-09T06:49:57.162691-07:00,1013.1104736328125,10.72721,10727.21 +18094,2025-03-09T06:50:07.879477-07:00,1013.1052856445312,10.716786,10716.786 +18095,2025-03-09T06:50:18.600655-07:00,1013.0935668945312,10.721178,10721.178 +18096,2025-03-09T06:50:29.320552-07:00,1013.0870361328125,10.719897,10719.897 +18097,2025-03-09T06:50:40.047648-07:00,1013.0921630859375,10.727096,10727.096 +18098,2025-03-09T06:50:50.767510-07:00,1013.100341796875,10.719862,10719.862 +18099,2025-03-09T06:51:01.489663-07:00,1013.1282958984375,10.722153,10722.153 +18100,2025-03-09T06:51:12.205782-07:00,1013.0970458984375,10.716119,10716.119 +18101,2025-03-09T06:51:22.932945-07:00,1013.1231079101562,10.727163,10727.163 +18102,2025-03-09T06:51:33.655750-07:00,1013.1018676757812,10.722805,10722.805 +18103,2025-03-09T06:51:44.372994-07:00,1013.1279907226562,10.717244,10717.244 +18104,2025-03-09T06:51:55.092665-07:00,1013.14453125,10.719671,10719.671 +18105,2025-03-09T06:52:05.817601-07:00,1013.14453125,10.724936,10724.936 +18106,2025-03-09T06:52:16.540481-07:00,1013.0984497070312,10.72288,10722.88 +18107,2025-03-09T06:52:27.263662-07:00,1013.0966186523438,10.723181,10723.181 +18108,2025-03-09T06:52:37.991576-07:00,1013.1179809570312,10.727914,10727.914 +18109,2025-03-09T06:52:48.709024-07:00,1013.103271484375,10.717448,10717.448 +18110,2025-03-09T06:52:59.433046-07:00,1013.0864868164062,10.724022,10724.022 +18111,2025-03-09T06:53:10.149049-07:00,1013.079833984375,10.716003,10716.003 +18112,2025-03-09T06:53:20.878051-07:00,1013.1063842773438,10.729002,10729.002 +18113,2025-03-09T06:53:31.599237-07:00,1013.1012573242188,10.721186,10721.186 +18114,2025-03-09T06:53:42.329049-07:00,1013.0499877929688,10.729812,10729.812 +18115,2025-03-09T06:53:53.047243-07:00,1013.0783081054688,10.718194,10718.194 +18116,2025-03-09T06:54:03.772289-07:00,1013.1010131835938,10.725046,10725.046 +18117,2025-03-09T06:54:14.489238-07:00,1013.0695190429688,10.716949,10716.949 +18118,2025-03-09T06:54:25.214226-07:00,1013.0497436523438,10.724988,10724.988 +18119,2025-03-09T06:54:35.935841-07:00,1013.0779418945312,10.721615,10721.615 +18120,2025-03-09T06:54:46.661840-07:00,1013.056396484375,10.725999,10725.999 +18121,2025-03-09T06:54:57.378240-07:00,1013.0462646484375,10.7164,10716.4 +18122,2025-03-09T06:55:08.109049-07:00,1013.06787109375,10.730809,10730.809 +18123,2025-03-09T06:55:18.828247-07:00,1013.04296875,10.719198,10719.198 +18124,2025-03-09T06:55:29.558076-07:00,1013.07421875,10.729829,10729.829 +18125,2025-03-09T06:55:40.282188-07:00,1013.041259765625,10.724112,10724.112 +18126,2025-03-09T06:55:50.998049-07:00,1013.041259765625,10.715861,10715.861 +18127,2025-03-09T06:56:01.727330-07:00,1013.021484375,10.729281,10729.281 +18128,2025-03-09T06:56:12.449621-07:00,1013.0677490234375,10.722291,10722.291 +18129,2025-03-09T06:56:23.175200-07:00,1013.0427856445312,10.725579,10725.579 +18130,2025-03-09T06:56:33.896381-07:00,1013.0296630859375,10.721181,10721.181 +18131,2025-03-09T06:56:44.623047-07:00,1013.031494140625,10.726666,10726.666 +18132,2025-03-09T06:56:55.351306-07:00,1013.0165405273438,10.728259,10728.259 +18133,2025-03-09T06:57:06.083737-07:00,1013.010009765625,10.732431,10732.431 +18134,2025-03-09T06:57:16.802264-07:00,1013.0393676757812,10.718527,10718.527 +18135,2025-03-09T06:57:27.529242-07:00,1013.0426635742188,10.726978,10726.978 +18136,2025-03-09T06:57:38.253082-07:00,1013.031005859375,10.72384,10723.84 +18137,2025-03-09T06:57:48.981995-07:00,1013.0262451171875,10.728913,10728.913 +18138,2025-03-09T06:57:59.706050-07:00,1013.0145263671875,10.724055,10724.055 +18139,2025-03-09T06:58:10.431052-07:00,1013.017578125,10.725002,10725.002 +18140,2025-03-09T06:58:21.155520-07:00,1013.0193481445312,10.724468,10724.468 +18141,2025-03-09T06:58:31.882050-07:00,1013.0289916992188,10.72653,10726.53 +18142,2025-03-09T06:58:42.600049-07:00,1013.0191650390625,10.717999,10717.999 +18143,2025-03-09T06:58:53.331260-07:00,1013.0257568359375,10.731211,10731.211 +18144,2025-03-09T06:59:04.055289-07:00,1013.0059204101562,10.724029,10724.029 +18145,2025-03-09T06:59:14.772078-07:00,1013.00927734375,10.716789,10716.789 +18146,2025-03-09T06:59:25.497230-07:00,1013.0189208984375,10.725152,10725.152 +18147,2025-03-09T06:59:36.230046-07:00,1012.994384765625,10.732816,10732.816 +18148,2025-03-09T06:59:46.953078-07:00,1012.9891967773438,10.723032,10723.032 +18149,2025-03-09T06:59:57.679198-07:00,1012.9907836914062,10.72612,10726.12 +18150,2025-03-09T07:00:08.400610-07:00,1013.0057983398438,10.721412,10721.412 +18151,2025-03-09T07:00:19.129497-07:00,1013.0103149414062,10.728887,10728.887 +18152,2025-03-09T07:00:29.851161-07:00,1012.9857177734375,10.721664,10721.664 +18153,2025-03-09T07:00:40.572651-07:00,1012.9773559570312,10.72149,10721.49 +18154,2025-03-09T07:00:51.304048-07:00,1013.0001831054688,10.731397,10731.397 +18155,2025-03-09T07:01:02.028269-07:00,1012.968994140625,10.724221,10724.221 +18156,2025-03-09T07:01:12.753314-07:00,1012.9785766601562,10.725045,10725.045 +18157,2025-03-09T07:01:23.481049-07:00,1012.96875,10.727735,10727.735 +18158,2025-03-09T07:01:34.207477-07:00,1012.9801635742188,10.726428,10726.428 +18159,2025-03-09T07:01:44.932053-07:00,1012.9420166015625,10.724576,10724.576 +18160,2025-03-09T07:01:55.659738-07:00,1012.938720703125,10.727685,10727.685 +18161,2025-03-09T07:02:06.384049-07:00,1012.9484252929688,10.724311,10724.311 +18162,2025-03-09T07:02:17.109047-07:00,1012.9334106445312,10.724998,10724.998 +18163,2025-03-09T07:02:27.831258-07:00,1012.9103393554688,10.722211,10722.211 +18164,2025-03-09T07:02:38.554231-07:00,1012.9052124023438,10.722973,10722.973 +18165,2025-03-09T07:02:49.290222-07:00,1012.9100952148438,10.735991,10735.991 +18166,2025-03-09T07:03:00.005233-07:00,1012.9247436523438,10.715011,10715.011 +18167,2025-03-09T07:03:10.739381-07:00,1012.9215698242188,10.734148,10734.148 +18168,2025-03-09T07:03:21.459050-07:00,1012.9395141601562,10.719669,10719.669 +18169,2025-03-09T07:03:32.194334-07:00,1012.9065551757812,10.735284,10735.284 +18170,2025-03-09T07:03:42.913113-07:00,1012.9032592773438,10.718779,10718.779 +18171,2025-03-09T07:03:53.634047-07:00,1012.9029541015625,10.720934,10720.934 +18172,2025-03-09T07:04:04.358145-07:00,1012.9095458984375,10.724098,10724.098 +18173,2025-03-09T07:04:15.085044-07:00,1012.887939453125,10.726899,10726.899 +18174,2025-03-09T07:04:25.813236-07:00,1012.9026489257812,10.728192,10728.192 +18175,2025-03-09T07:04:36.534199-07:00,1012.88623046875,10.720963,10720.963 +18176,2025-03-09T07:04:47.263066-07:00,1012.895751953125,10.728867,10728.867 +18177,2025-03-09T07:04:57.989049-07:00,1012.8826293945312,10.725983,10725.983 +18178,2025-03-09T07:05:08.708346-07:00,1012.9156494140625,10.719297,10719.297 +18179,2025-03-09T07:05:19.441249-07:00,1012.89404296875,10.732903,10732.903 +18180,2025-03-09T07:05:30.155045-07:00,1012.9090576171875,10.713796,10713.796 +18181,2025-03-09T07:05:40.886873-07:00,1012.9204711914062,10.731828,10731.828 +18182,2025-03-09T07:05:51.609117-07:00,1012.9204711914062,10.722244,10722.244 +18183,2025-03-09T07:06:02.333249-07:00,1012.86767578125,10.724132,10724.132 +18184,2025-03-09T07:06:13.056052-07:00,1012.88232421875,10.722803,10722.803 +18185,2025-03-09T07:06:23.779596-07:00,1012.862548828125,10.723544,10723.544 +18186,2025-03-09T07:06:34.504398-07:00,1012.892333984375,10.724802,10724.802 +18187,2025-03-09T07:06:45.227872-07:00,1012.8856811523438,10.723474,10723.474 +18188,2025-03-09T07:06:55.959051-07:00,1012.8941650390625,10.731179,10731.179 +18189,2025-03-09T07:07:06.683776-07:00,1012.9285888671875,10.724725,10724.725 +18190,2025-03-09T07:07:17.417222-07:00,1012.9088134765625,10.733446,10733.446 +18191,2025-03-09T07:07:28.136083-07:00,1012.9103393554688,10.718861,10718.861 +18192,2025-03-09T07:07:38.861916-07:00,1012.8956298828125,10.725833,10725.833 +18193,2025-03-09T07:07:49.595049-07:00,1012.8839111328125,10.733133,10733.133 +18194,2025-03-09T07:08:00.315261-07:00,1012.8839111328125,10.720212,10720.212 +18195,2025-03-09T07:08:11.043987-07:00,1012.9004516601562,10.728726,10728.726 +18196,2025-03-09T07:08:21.776151-07:00,1012.879150390625,10.732164,10732.164 +18197,2025-03-09T07:08:32.503234-07:00,1012.8905639648438,10.727083,10727.083 +18198,2025-03-09T07:08:43.227049-07:00,1012.8755493164062,10.723815,10723.815 +18199,2025-03-09T07:08:53.959048-07:00,1012.868896484375,10.731999,10731.999 +18200,2025-03-09T07:09:04.683242-07:00,1012.8707275390625,10.724194,10724.194 +18201,2025-03-09T07:09:15.404060-07:00,1012.8560180664062,10.720818,10720.818 +18202,2025-03-09T07:09:26.134275-07:00,1012.8724975585938,10.730215,10730.215 +18203,2025-03-09T07:09:36.862052-07:00,1012.849365234375,10.727777,10727.777 +18204,2025-03-09T07:09:47.592482-07:00,1012.8442993164062,10.73043,10730.43 +18205,2025-03-09T07:09:58.325834-07:00,1012.8692016601562,10.733352,10733.352 +18206,2025-03-09T07:10:09.043688-07:00,1012.8757934570312,10.717854,10717.854 +18207,2025-03-09T07:10:19.781108-07:00,1012.8743896484375,10.73742,10737.42 +18208,2025-03-09T07:10:30.501049-07:00,1012.9021606445312,10.719941,10719.941 +18209,2025-03-09T07:10:41.229279-07:00,1012.9154663085938,10.72823,10728.23 +18210,2025-03-09T07:10:51.957147-07:00,1012.8743896484375,10.727868,10727.868 +18211,2025-03-09T07:11:02.690413-07:00,1012.8772583007812,10.733266,10733.266 +18212,2025-03-09T07:11:13.415078-07:00,1012.85595703125,10.724665,10724.665 +18213,2025-03-09T07:11:24.141283-07:00,1012.8640747070312,10.726205,10726.205 +18214,2025-03-09T07:11:34.860216-07:00,1012.8790893554688,10.718933,10718.933 +18215,2025-03-09T07:11:45.583571-07:00,1012.8082885742188,10.723355,10723.355 +18216,2025-03-09T07:11:56.312052-07:00,1012.8692016601562,10.728481,10728.481 +18217,2025-03-09T07:12:07.036620-07:00,1012.8545532226562,10.724568,10724.568 +18218,2025-03-09T07:12:17.760101-07:00,1012.8526611328125,10.723481,10723.481 +18219,2025-03-09T07:12:28.488451-07:00,1012.85595703125,10.72835,10728.35 +18220,2025-03-09T07:12:39.219850-07:00,1012.849365234375,10.731399,10731.399 +18221,2025-03-09T07:12:49.947053-07:00,1012.847900390625,10.727203,10727.203 +18222,2025-03-09T07:13:00.669237-07:00,1012.8247680664062,10.722184,10722.184 +18223,2025-03-09T07:13:11.396049-07:00,1012.861083984375,10.726812,10726.812 +18224,2025-03-09T07:13:22.126348-07:00,1012.8577880859375,10.730299,10730.299 +18225,2025-03-09T07:13:32.852768-07:00,1012.83642578125,10.72642,10726.42 +18226,2025-03-09T07:13:43.573053-07:00,1012.8577880859375,10.720285,10720.285 +18227,2025-03-09T07:13:54.298017-07:00,1012.8496704101562,10.724964,10724.964 +18228,2025-03-09T07:14:05.015048-07:00,1012.8265380859375,10.717031,10717.031 +18229,2025-03-09T07:14:15.748214-07:00,1012.8595581054688,10.733166,10733.166 +18230,2025-03-09T07:14:26.472049-07:00,1012.8529663085938,10.723835,10723.835 +18231,2025-03-09T07:14:37.196067-07:00,1012.8382568359375,10.724018,10724.018 +18232,2025-03-09T07:14:47.917052-07:00,1012.829833984375,10.720985,10720.985 +18233,2025-03-09T07:14:58.648050-07:00,1012.83642578125,10.730998,10730.998 +18234,2025-03-09T07:15:09.369198-07:00,1012.8448486328125,10.721148,10721.148 +18235,2025-03-09T07:15:20.090233-07:00,1012.8165893554688,10.721035,10721.035 +18236,2025-03-09T07:15:30.816048-07:00,1012.8201293945312,10.725815,10725.815 +18237,2025-03-09T07:15:41.539190-07:00,1012.83154296875,10.723142,10723.142 +18238,2025-03-09T07:15:52.269160-07:00,1012.8153686523438,10.72997,10729.97 +18239,2025-03-09T07:16:02.999047-07:00,1012.8234252929688,10.729887,10729.887 +18240,2025-03-09T07:16:13.718273-07:00,1012.81201171875,10.719226,10719.226 +18241,2025-03-09T07:16:24.450250-07:00,1012.8484497070312,10.731977,10731.977 +18242,2025-03-09T07:16:35.167050-07:00,1012.8597412109375,10.7168,10716.8 +18243,2025-03-09T07:16:45.894082-07:00,1012.8333740234375,10.727032,10727.032 +18244,2025-03-09T07:16:56.617300-07:00,1012.8318481445312,10.723218,10723.218 +18245,2025-03-09T07:17:07.340429-07:00,1012.8370361328125,10.723129,10723.129 +18246,2025-03-09T07:17:18.069117-07:00,1012.8303833007812,10.728688,10728.688 +18247,2025-03-09T07:17:28.799353-07:00,1012.8156127929688,10.730236,10730.236 +18248,2025-03-09T07:17:39.514060-07:00,1012.822265625,10.714707,10714.707 +18249,2025-03-09T07:17:50.237670-07:00,1012.8138427734375,10.72361,10723.61 +18250,2025-03-09T07:18:00.966052-07:00,1012.80908203125,10.728382,10728.382 +18251,2025-03-09T07:18:11.696049-07:00,1012.8402099609375,10.729997,10729.997 +18252,2025-03-09T07:18:22.414974-07:00,1012.8156127929688,10.718925,10718.925 +18253,2025-03-09T07:18:33.140052-07:00,1012.8255615234375,10.725078,10725.078 +18254,2025-03-09T07:18:43.864405-07:00,1012.842041015625,10.724353,10724.353 +18255,2025-03-09T07:18:54.593051-07:00,1012.8387451171875,10.728646,10728.646 +18256,2025-03-09T07:19:05.314458-07:00,1012.8439331054688,10.721407,10721.407 +18257,2025-03-09T07:19:16.039223-07:00,1012.8156127929688,10.724765,10724.765 +18258,2025-03-09T07:19:26.751991-07:00,1012.8570556640625,10.712768,10712.768 +18259,2025-03-09T07:19:37.480060-07:00,1012.855224609375,10.728069,10728.069 +18260,2025-03-09T07:19:48.198242-07:00,1012.8273315429688,10.718182,10718.182 +18261,2025-03-09T07:19:58.925071-07:00,1012.83544921875,10.726829,10726.829 +18262,2025-03-09T07:20:09.651224-07:00,1012.8390502929688,10.726153,10726.153 +18263,2025-03-09T07:20:20.373044-07:00,1012.8323974609375,10.72182,10721.82 +18264,2025-03-09T07:20:31.096053-07:00,1012.875,10.723009,10723.009 +18265,2025-03-09T07:20:41.818081-07:00,1012.8390502929688,10.722028,10722.028 +18266,2025-03-09T07:20:52.544246-07:00,1012.8323974609375,10.726165,10726.165 +18267,2025-03-09T07:21:03.271796-07:00,1012.8504028320312,10.72755,10727.55 +18268,2025-03-09T07:21:13.994335-07:00,1012.8753051757812,10.722539,10722.539 +18269,2025-03-09T07:21:24.729066-07:00,1012.85400390625,10.734731,10734.731 +18270,2025-03-09T07:21:35.451051-07:00,1012.860595703125,10.721985,10721.985 +18271,2025-03-09T07:21:46.179375-07:00,1012.8753051757812,10.728324,10728.324 +18272,2025-03-09T07:21:56.913282-07:00,1012.8654174804688,10.733907,10733.907 +18273,2025-03-09T07:22:07.636252-07:00,1012.8654174804688,10.72297,10722.97 +18274,2025-03-09T07:22:18.371241-07:00,1012.8654174804688,10.734989,10734.989 +18275,2025-03-09T07:22:29.098210-07:00,1012.9034423828125,10.726969,10726.969 +18276,2025-03-09T07:22:39.829797-07:00,1012.8689575195312,10.731587,10731.587 +18277,2025-03-09T07:22:50.556174-07:00,1012.8903198242188,10.726377,10726.377 +18278,2025-03-09T07:23:01.281230-07:00,1012.9020385742188,10.725056,10725.056 +18279,2025-03-09T07:23:12.015259-07:00,1012.898681640625,10.734029,10734.029 +18280,2025-03-09T07:23:22.737441-07:00,1012.8722534179688,10.722182,10722.182 +18281,2025-03-09T07:23:33.470152-07:00,1012.8839111328125,10.732711,10732.711 +18282,2025-03-09T07:23:44.194404-07:00,1012.8839111328125,10.724252,10724.252 +18283,2025-03-09T07:23:54.923173-07:00,1012.8839111328125,10.728769,10728.769 +18284,2025-03-09T07:24:05.644052-07:00,1012.8839111328125,10.720879,10720.879 +18285,2025-03-09T07:24:16.372223-07:00,1012.9154663085938,10.728171,10728.171 +18286,2025-03-09T07:24:27.098534-07:00,1012.9154663085938,10.726311,10726.311 +18287,2025-03-09T07:24:37.829238-07:00,1012.892333984375,10.730704,10730.704 +18288,2025-03-09T07:24:48.550254-07:00,1012.9202270507812,10.721016,10721.016 +18289,2025-03-09T07:24:59.279086-07:00,1012.9070434570312,10.728832,10728.832 +18290,2025-03-09T07:25:09.998075-07:00,1012.92529296875,10.718989,10718.989 +18291,2025-03-09T07:25:20.730045-07:00,1012.904052734375,10.73197,10731.97 +18292,2025-03-09T07:25:31.453229-07:00,1012.931884765625,10.723184,10723.184 +18293,2025-03-09T07:25:42.183319-07:00,1012.9649047851562,10.73009,10730.09 +18294,2025-03-09T07:25:52.902196-07:00,1012.9334106445312,10.718877,10718.877 +18295,2025-03-09T07:26:03.632177-07:00,1012.92529296875,10.729981,10729.981 +18296,2025-03-09T07:26:14.357251-07:00,1012.9304809570312,10.725074,10725.074 +18297,2025-03-09T07:26:25.083522-07:00,1012.931884765625,10.726271,10726.271 +18298,2025-03-09T07:26:35.810077-07:00,1012.9400024414062,10.726555,10726.555 +18299,2025-03-09T07:26:46.542051-07:00,1012.9304809570312,10.731974,10731.974 +18300,2025-03-09T07:26:57.270073-07:00,1012.9220581054688,10.728022,10728.022 +18301,2025-03-09T07:27:07.994052-07:00,1012.93701171875,10.723979,10723.979 +18302,2025-03-09T07:27:18.729275-07:00,1012.943603515625,10.735223,10735.223 +18303,2025-03-09T07:27:29.452123-07:00,1012.943603515625,10.722848,10722.848 +18304,2025-03-09T07:27:40.182050-07:00,1012.9550170898438,10.729927,10729.927 +18305,2025-03-09T07:27:50.904294-07:00,1012.912353515625,10.722244,10722.244 +18306,2025-03-09T07:28:01.638259-07:00,1012.9190063476562,10.733965,10733.965 +18307,2025-03-09T07:28:12.358252-07:00,1012.9255981445312,10.719993,10719.993 +18308,2025-03-09T07:28:23.096051-07:00,1012.9468994140625,10.737799,10737.799 +18309,2025-03-09T07:28:33.814262-07:00,1012.9271240234375,10.718211,10718.211 +18310,2025-03-09T07:28:44.541079-07:00,1012.9237670898438,10.726817,10726.817 +18311,2025-03-09T07:28:55.279489-07:00,1012.9190063476562,10.73841,10738.41 +18312,2025-03-09T07:29:06.006276-07:00,1012.9302978515625,10.726787,10726.787 +18313,2025-03-09T07:29:16.733055-07:00,1012.9403076171875,10.726779,10726.779 +18314,2025-03-09T07:29:27.459253-07:00,1012.9369506835938,10.726198,10726.198 +18315,2025-03-09T07:29:38.190181-07:00,1012.9369506835938,10.730928,10730.928 +18316,2025-03-09T07:29:48.915053-07:00,1012.9567260742188,10.724872,10724.872 +18317,2025-03-09T07:29:59.635635-07:00,1012.9222412109375,10.720582,10720.582 +18318,2025-03-09T07:30:10.357048-07:00,1012.9105224609375,10.721413,10721.413 +18319,2025-03-09T07:30:21.092258-07:00,1012.9369506835938,10.73521,10735.21 +18320,2025-03-09T07:30:31.811074-07:00,1012.9171752929688,10.718816,10718.816 +18321,2025-03-09T07:30:42.542051-07:00,1012.9302978515625,10.730977,10730.977 +18322,2025-03-09T07:30:53.264215-07:00,1012.9321899414062,10.722164,10722.164 +18323,2025-03-09T07:31:03.994183-07:00,1012.9141235351562,10.729968,10729.968 +18324,2025-03-09T07:31:14.713084-07:00,1012.9273681640625,10.718901,10718.901 +18325,2025-03-09T07:31:25.441049-07:00,1012.8958740234375,10.727965,10727.965 +18326,2025-03-09T07:31:36.165371-07:00,1012.9009399414062,10.724322,10724.322 +18327,2025-03-09T07:31:46.890254-07:00,1012.87451171875,10.724883,10724.883 +18328,2025-03-09T07:31:57.623351-07:00,1012.9009399414062,10.733097,10733.097 +18329,2025-03-09T07:32:08.340244-07:00,1012.899169921875,10.716893,10716.893 +18330,2025-03-09T07:32:19.072052-07:00,1012.9042358398438,10.731808,10731.808 +18331,2025-03-09T07:32:29.802296-07:00,1012.899169921875,10.730244,10730.244 +18332,2025-03-09T07:32:40.526865-07:00,1012.8829956054688,10.724569,10724.569 +18333,2025-03-09T07:32:51.252052-07:00,1012.8630981445312,10.725187,10725.187 +18334,2025-03-09T07:33:01.975422-07:00,1012.8499145507812,10.72337,10723.37 +18335,2025-03-09T07:33:12.698202-07:00,1012.8748168945312,10.72278,10722.78 +18336,2025-03-09T07:33:23.422236-07:00,1012.8648681640625,10.724034,10724.034 +18337,2025-03-09T07:33:34.143295-07:00,1012.8465576171875,10.721059,10721.059 +18338,2025-03-09T07:33:44.874202-07:00,1012.85986328125,10.730907,10730.907 +18339,2025-03-09T07:33:55.602258-07:00,1012.85986328125,10.728056,10728.056 +18340,2025-03-09T07:34:06.325171-07:00,1012.8384399414062,10.722913,10722.913 +18341,2025-03-09T07:34:17.051240-07:00,1012.8634643554688,10.726069,10726.069 +18342,2025-03-09T07:34:27.780290-07:00,1012.8634643554688,10.72905,10729.05 +18343,2025-03-09T07:34:38.509052-07:00,1012.8123168945312,10.728762,10728.762 +18344,2025-03-09T07:34:49.240652-07:00,1012.8351440429688,10.7316,10731.6 +18345,2025-03-09T07:34:59.959327-07:00,1012.8501586914062,10.718675,10718.675 +18346,2025-03-09T07:35:10.685581-07:00,1012.848388671875,10.726254,10726.254 +18347,2025-03-09T07:35:21.418258-07:00,1012.8072509765625,10.732677,10732.677 +18348,2025-03-09T07:35:32.136225-07:00,1012.8435668945312,10.717967,10717.967 +18349,2025-03-09T07:35:42.867126-07:00,1012.82861328125,10.730901,10730.901 +18350,2025-03-09T07:35:53.592539-07:00,1012.8171997070312,10.725413,10725.413 +18351,2025-03-09T07:36:04.317253-07:00,1012.82861328125,10.724714,10724.714 +18352,2025-03-09T07:36:15.046051-07:00,1012.8087768554688,10.728798,10728.798 +18353,2025-03-09T07:36:25.768440-07:00,1012.8087768554688,10.722389,10722.389 +18354,2025-03-09T07:36:36.493075-07:00,1012.803955078125,10.724635,10724.635 +18355,2025-03-09T07:36:47.218392-07:00,1012.8153076171875,10.725317,10725.317 +18356,2025-03-09T07:36:57.950119-07:00,1012.7760009765625,10.731727,10731.727 +18357,2025-03-09T07:37:08.676052-07:00,1012.7810668945312,10.725933,10725.933 +18358,2025-03-09T07:37:19.401240-07:00,1012.78955078125,10.725188,10725.188 +18359,2025-03-09T07:37:30.117420-07:00,1012.7879638671875,10.71618,10716.18 +18360,2025-03-09T07:37:40.850878-07:00,1012.7648315429688,10.733458,10733.458 +18361,2025-03-09T07:37:51.574047-07:00,1012.7813110351562,10.723169,10723.169 +18362,2025-03-09T07:38:02.291493-07:00,1012.7782592773438,10.717446,10717.446 +18363,2025-03-09T07:38:13.023049-07:00,1012.7867431640625,10.731556,10731.556 +18364,2025-03-09T07:38:23.745216-07:00,1012.7620239257812,10.722167,10722.167 +18365,2025-03-09T07:38:34.475572-07:00,1012.7821044921875,10.730356,10730.356 +18366,2025-03-09T07:38:45.195078-07:00,1012.7921752929688,10.719506,10719.506 +18367,2025-03-09T07:38:55.915146-07:00,1012.7591552734375,10.720068,10720.068 +18368,2025-03-09T07:39:06.643048-07:00,1012.7807006835938,10.727902,10727.902 +18369,2025-03-09T07:39:17.365918-07:00,1012.7857055664062,10.72287,10722.87 +18370,2025-03-09T07:39:28.090149-07:00,1012.7562255859375,10.724231,10724.231 +18371,2025-03-09T07:39:38.816143-07:00,1012.7711791992188,10.725994,10725.994 +18372,2025-03-09T07:39:49.544231-07:00,1012.774658203125,10.728088,10728.088 +18373,2025-03-09T07:40:00.277258-07:00,1012.7536010742188,10.733027,10733.027 +18374,2025-03-09T07:40:10.999118-07:00,1012.7979736328125,10.72186,10721.86 +18375,2025-03-09T07:40:21.724052-07:00,1012.7537231445312,10.724934,10724.934 +18376,2025-03-09T07:40:32.457050-07:00,1012.7656860351562,10.732998,10732.998 +18377,2025-03-09T07:40:43.188307-07:00,1012.7344360351562,10.731257,10731.257 +18378,2025-03-09T07:40:53.907488-07:00,1012.7478637695312,10.719181,10719.181 +18379,2025-03-09T07:41:04.638248-07:00,1012.7592163085938,10.73076,10730.76 +18380,2025-03-09T07:41:15.357058-07:00,1012.7084350585938,10.71881,10718.81 +18381,2025-03-09T07:41:26.086471-07:00,1012.7446899414062,10.729413,10729.413 +18382,2025-03-09T07:41:36.807052-07:00,1012.7431030273438,10.720581,10720.581 +18383,2025-03-09T07:41:47.539256-07:00,1012.7398681640625,10.732204,10732.204 +18384,2025-03-09T07:41:58.259251-07:00,1012.728759765625,10.719995,10719.995 +18385,2025-03-09T07:42:08.978054-07:00,1012.7088012695312,10.718803,10718.803 +18386,2025-03-09T07:42:19.708075-07:00,1012.7402954101562,10.730021,10730.021 +18387,2025-03-09T07:42:30.431255-07:00,1012.7123413085938,10.72318,10723.18 +18388,2025-03-09T07:42:41.157751-07:00,1012.7171630859375,10.726496,10726.496 +18389,2025-03-09T07:42:51.876047-07:00,1012.70751953125,10.718296,10718.296 +18390,2025-03-09T07:43:02.603452-07:00,1012.7420043945312,10.727405,10727.405 +18391,2025-03-09T07:43:13.331051-07:00,1012.6925048828125,10.727599,10727.599 +18392,2025-03-09T07:43:24.053317-07:00,1012.7254638671875,10.722266,10722.266 +18393,2025-03-09T07:43:34.784185-07:00,1012.7107543945312,10.730868,10730.868 +18394,2025-03-09T07:43:45.507052-07:00,1012.7173461914062,10.722867,10722.867 +18395,2025-03-09T07:43:56.226051-07:00,1012.7011108398438,10.718999,10718.999 +18396,2025-03-09T07:44:06.958047-07:00,1012.7107543945312,10.731996,10731.996 +18397,2025-03-09T07:44:17.676942-07:00,1012.68798828125,10.718895,10718.895 +18398,2025-03-09T07:44:28.400128-07:00,1012.7224731445312,10.723186,10723.186 +18399,2025-03-09T07:44:39.122295-07:00,1012.6961059570312,10.722167,10722.167 +18400,2025-03-09T07:44:49.847151-07:00,1012.6975708007812,10.724856,10724.856 +18401,2025-03-09T07:45:00.569249-07:00,1012.6925048828125,10.722098,10722.098 +18402,2025-03-09T07:45:11.288312-07:00,1012.6975708007812,10.719063,10719.063 +18403,2025-03-09T07:45:22.011230-07:00,1012.6859130859375,10.722918,10722.918 +18404,2025-03-09T07:45:32.739124-07:00,1012.7056884765625,10.727894,10727.894 +18405,2025-03-09T07:45:43.465274-07:00,1012.6990356445312,10.72615,10726.15 +18406,2025-03-09T07:45:54.180267-07:00,1012.6810913085938,10.714993,10714.993 +18407,2025-03-09T07:46:04.908125-07:00,1012.687744140625,10.727858,10727.858 +18408,2025-03-09T07:46:15.628056-07:00,1012.689208984375,10.719931,10719.931 +18409,2025-03-09T07:46:26.340376-07:00,1012.66943359375,10.71232,10712.32 +18410,2025-03-09T07:46:37.067049-07:00,1012.6775512695312,10.726673,10726.673 +18411,2025-03-09T07:46:47.788262-07:00,1012.6727905273438,10.721213,10721.213 +18412,2025-03-09T07:46:58.513051-07:00,1012.6956176757812,10.724789,10724.789 +18413,2025-03-09T07:47:09.231227-07:00,1012.6560668945312,10.718176,10718.176 +18414,2025-03-09T07:47:19.961149-07:00,1012.6626586914062,10.729922,10729.922 +18415,2025-03-09T07:47:30.683102-07:00,1012.6512451171875,10.721953,10721.953 +18416,2025-03-09T07:47:41.396243-07:00,1012.6891479492188,10.713141,10713.141 +18417,2025-03-09T07:47:52.116582-07:00,1012.6708374023438,10.720339,10720.339 +18418,2025-03-09T07:48:02.847203-07:00,1012.665771484375,10.730621,10730.621 +18419,2025-03-09T07:48:13.565230-07:00,1012.654052734375,10.718027,10718.027 +18420,2025-03-09T07:48:24.290081-07:00,1012.6624755859375,10.724851,10724.851 +18421,2025-03-09T07:48:35.014063-07:00,1012.69189453125,10.723982,10723.982 +18422,2025-03-09T07:48:45.738723-07:00,1012.713623046875,10.72466,10724.66 +18423,2025-03-09T07:48:56.471127-07:00,1012.6740112304688,10.732404,10732.404 +18424,2025-03-09T07:49:07.193653-07:00,1012.6854858398438,10.722526,10722.526 +18425,2025-03-09T07:49:17.920776-07:00,1012.6950073242188,10.727123,10727.123 +18426,2025-03-09T07:49:28.648115-07:00,1012.677001953125,10.727339,10727.339 +18427,2025-03-09T07:49:39.371134-07:00,1012.6998291015625,10.723019,10723.019 +18428,2025-03-09T07:49:50.105264-07:00,1012.6998291015625,10.73413,10734.13 +18429,2025-03-09T07:50:00.832305-07:00,1012.7017211914062,10.727041,10727.041 +18430,2025-03-09T07:50:11.559126-07:00,1012.6966552734375,10.726821,10726.821 +18431,2025-03-09T07:50:22.283086-07:00,1012.6981201171875,10.72396,10723.96 +18432,2025-03-09T07:50:33.011049-07:00,1012.6964111328125,10.727963,10727.963 +18433,2025-03-09T07:50:43.735123-07:00,1012.6649169921875,10.724074,10724.074 +18434,2025-03-09T07:50:54.458721-07:00,1012.6865844726562,10.723598,10723.598 +18435,2025-03-09T07:51:05.194050-07:00,1012.711181640625,10.735329,10735.329 +18436,2025-03-09T07:51:15.915858-07:00,1012.6796875,10.721808,10721.808 +18437,2025-03-09T07:51:26.637259-07:00,1012.7028198242188,10.721401,10721.401 +18438,2025-03-09T07:51:37.365133-07:00,1012.6632690429688,10.727874,10727.874 +18439,2025-03-09T07:51:48.087259-07:00,1012.7157592773438,10.722126,10722.126 +18440,2025-03-09T07:51:58.812509-07:00,1012.6875610351562,10.72525,10725.25 +18441,2025-03-09T07:52:09.544290-07:00,1012.7173461914062,10.731781,10731.781 +18442,2025-03-09T07:52:20.269086-07:00,1012.72216796875,10.724796,10724.796 +18443,2025-03-09T07:52:31.017365-07:00,1012.7352905273438,10.748279,10748.279 +18444,2025-03-09T07:52:41.740036-07:00,1012.7518920898438,10.722671,10722.671 +18445,2025-03-09T07:52:52.463084-07:00,1012.728515625,10.723048,10723.048 +18446,2025-03-09T07:53:03.181976-07:00,1012.74169921875,10.718892,10718.892 +18447,2025-03-09T07:53:13.911056-07:00,1012.7252197265625,10.72908,10729.08 +18448,2025-03-09T07:53:24.633963-07:00,1012.7531127929688,10.722907,10722.907 +18449,2025-03-09T07:53:35.356004-07:00,1012.7220458984375,10.722041,10722.041 +18450,2025-03-09T07:53:46.078172-07:00,1012.7418212890625,10.722168,10722.168 +18451,2025-03-09T07:53:56.805966-07:00,1012.7810668945312,10.727794,10727.794 +18452,2025-03-09T07:54:07.534370-07:00,1012.7926025390625,10.728404,10728.404 +18453,2025-03-09T07:54:18.261968-07:00,1012.7709350585938,10.727598,10727.598 +18454,2025-03-09T07:54:28.990224-07:00,1012.7874755859375,10.728256,10728.256 +18455,2025-03-09T07:54:39.705389-07:00,1012.7842407226562,10.715165,10715.165 +18456,2025-03-09T07:54:50.431345-07:00,1012.7806396484375,10.725956,10725.956 +18457,2025-03-09T07:55:01.154062-07:00,1012.7806396484375,10.722717,10722.717 +18458,2025-03-09T07:55:11.883154-07:00,1012.8154907226562,10.729092,10729.092 +18459,2025-03-09T07:55:22.609168-07:00,1012.8187255859375,10.726014,10726.014 +18460,2025-03-09T07:55:33.336963-07:00,1012.7938842773438,10.727795,10727.795 +18461,2025-03-09T07:55:44.062154-07:00,1012.8052978515625,10.725191,10725.191 +18462,2025-03-09T07:55:54.791218-07:00,1012.8170166015625,10.729064,10729.064 +18463,2025-03-09T07:56:05.515152-07:00,1012.8336181640625,10.723934,10723.934 +18464,2025-03-09T07:56:16.247674-07:00,1012.8613891601562,10.732522,10732.522 +18465,2025-03-09T07:56:26.968965-07:00,1012.8713989257812,10.721291,10721.291 +18466,2025-03-09T07:56:37.702145-07:00,1012.8348388671875,10.73318,10733.18 +18467,2025-03-09T07:56:48.426965-07:00,1012.84814453125,10.72482,10724.82 +18468,2025-03-09T07:56:59.155344-07:00,1012.872314453125,10.728379,10728.379 +18469,2025-03-09T07:57:09.884229-07:00,1012.8610229492188,10.728885,10728.885 +18470,2025-03-09T07:57:20.606966-07:00,1012.87060546875,10.722737,10722.737 +18471,2025-03-09T07:57:31.328734-07:00,1012.8970947265625,10.721768,10721.768 +18472,2025-03-09T07:57:42.067170-07:00,1012.900146484375,10.738436,10738.436 +18473,2025-03-09T07:57:52.788026-07:00,1012.8917236328125,10.720856,10720.856 +18474,2025-03-09T07:58:03.527139-07:00,1012.8719482421875,10.739113,10739.113 +18475,2025-03-09T07:58:14.250964-07:00,1012.8834228515625,10.723825,10723.825 +18476,2025-03-09T07:58:24.977965-07:00,1012.88671875,10.727001,10727.001 +18477,2025-03-09T07:58:35.702964-07:00,1012.874755859375,10.724999,10724.999 +18478,2025-03-09T07:58:46.436126-07:00,1012.8568115234375,10.733162,10733.162 +18479,2025-03-09T07:58:57.164003-07:00,1012.85986328125,10.727877,10727.877 +18480,2025-03-09T07:59:07.888990-07:00,1012.8712768554688,10.724987,10724.987 +18481,2025-03-09T07:59:18.612966-07:00,1012.8712768554688,10.723976,10723.976 +18482,2025-03-09T07:59:29.333041-07:00,1012.843017578125,10.720075,10720.075 +18483,2025-03-09T07:59:40.062266-07:00,1012.872802734375,10.729225,10729.225 +18484,2025-03-09T07:59:50.795252-07:00,1012.8379516601562,10.732986,10732.986 +18485,2025-03-09T08:00:01.521965-07:00,1012.836181640625,10.726713,10726.713 +18486,2025-03-09T08:00:12.246188-07:00,1012.8577880859375,10.724223,10724.223 +18487,2025-03-09T08:00:22.974985-07:00,1012.859375,10.728797,10728.797 +18488,2025-03-09T08:00:33.701038-07:00,1012.8428344726562,10.726053,10726.053 +18489,2025-03-09T08:00:44.422495-07:00,1012.8773193359375,10.721457,10721.457 +18490,2025-03-09T08:00:55.156963-07:00,1012.8839111328125,10.734468,10734.468 +18491,2025-03-09T08:01:05.883994-07:00,1012.86083984375,10.727031,10727.031 +18492,2025-03-09T08:01:16.612992-07:00,1012.8323364257812,10.728998,10728.998 +18493,2025-03-09T08:01:27.333964-07:00,1012.873779296875,10.720972,10720.972 +18494,2025-03-09T08:01:38.064068-07:00,1012.8621215820312,10.730104,10730.104 +18495,2025-03-09T08:01:48.788171-07:00,1012.8504028320312,10.724103,10724.103 +18496,2025-03-09T08:01:59.514977-07:00,1012.8456420898438,10.726806,10726.806 +18497,2025-03-09T08:02:10.245990-07:00,1012.853759765625,10.731013,10731.013 +18498,2025-03-09T08:02:20.970155-07:00,1012.8485717773438,10.724165,10724.165 +18499,2025-03-09T08:02:31.695723-07:00,1012.87353515625,10.725568,10725.568 +18500,2025-03-09T08:02:42.421966-07:00,1012.8703002929688,10.726243,10726.243 +18501,2025-03-09T08:02:53.152964-07:00,1012.885009765625,10.730998,10730.998 +18502,2025-03-09T08:03:03.879523-07:00,1012.89306640625,10.726559,10726.559 +18503,2025-03-09T08:03:14.602966-07:00,1012.8599853515625,10.723443,10723.443 +18504,2025-03-09T08:03:25.334141-07:00,1012.8534545898438,10.731175,10731.175 +18505,2025-03-09T08:03:36.051966-07:00,1012.8618774414062,10.717825,10717.825 +18506,2025-03-09T08:03:46.787257-07:00,1012.8666381835938,10.735291,10735.291 +18507,2025-03-09T08:03:57.514163-07:00,1012.8699951171875,10.726906,10726.906 +18508,2025-03-09T08:04:08.237963-07:00,1012.8781127929688,10.7238,10723.8 +18509,2025-03-09T08:04:18.968341-07:00,1012.8450927734375,10.730378,10730.378 +18510,2025-03-09T08:04:29.692963-07:00,1012.8781127929688,10.724622,10724.622 +18511,2025-03-09T08:04:40.419001-07:00,1012.8582763671875,10.726038,10726.038 +18512,2025-03-09T08:04:51.144966-07:00,1012.8729858398438,10.725965,10725.965 +18513,2025-03-09T08:05:01.868156-07:00,1012.8729858398438,10.72319,10723.19 +18514,2025-03-09T08:05:12.594963-07:00,1012.8748168945312,10.726807,10726.807 +18515,2025-03-09T08:05:23.321965-07:00,1012.8781127929688,10.727002,10727.002 +18516,2025-03-09T08:05:34.045370-07:00,1012.8795166015625,10.723405,10723.405 +18517,2025-03-09T08:05:44.773033-07:00,1012.8663940429688,10.727663,10727.663 +18518,2025-03-09T08:05:55.498009-07:00,1012.8861694335938,10.724976,10724.976 +18519,2025-03-09T08:06:06.231276-07:00,1012.887939453125,10.733267,10733.267 +18520,2025-03-09T08:06:15.077688-07:00,1012.887939453125,8.846412,8846.412 +18521,2025-03-09T08:06:16.954111-07:00,1012.892822265625,1.876423,1876.423 +18522,2025-03-09T08:06:27.681176-07:00,1012.8993530273438,10.727065,10727.065 +18523,2025-03-09T08:06:38.405174-07:00,1012.892822265625,10.723998,10723.998 +18524,2025-03-09T08:06:49.140152-07:00,1012.8714599609375,10.734978,10734.978 +18525,2025-03-09T08:06:59.864966-07:00,1012.8993530273438,10.724814,10724.814 +18526,2025-03-09T08:07:10.593185-07:00,1012.9059448242188,10.728219,10728.219 +18527,2025-03-09T08:07:21.313787-07:00,1012.8993530273438,10.720602,10720.602 +18528,2025-03-09T08:07:32.048965-07:00,1012.9276733398438,10.735178,10735.178 +18529,2025-03-09T08:07:42.773680-07:00,1012.892822265625,10.724715,10724.715 +18530,2025-03-09T08:07:53.504366-07:00,1012.91259765625,10.730686,10730.686 +18531,2025-03-09T08:08:04.227965-07:00,1012.9176635742188,10.723599,10723.599 +18532,2025-03-09T08:08:14.956445-07:00,1012.930908203125,10.72848,10728.48 +18533,2025-03-09T08:08:25.686966-07:00,1012.9095458984375,10.730521,10730.521 +18534,2025-03-09T08:08:36.413206-07:00,1012.944091796875,10.72624,10726.24 +18535,2025-03-09T08:08:47.134964-07:00,1012.944091796875,10.721758,10721.758 +18536,2025-03-09T08:08:57.861074-07:00,1012.9095458984375,10.72611,10726.11 +18537,2025-03-09T08:09:08.594181-07:00,1012.9293823242188,10.733107,10733.107 +18538,2025-03-09T08:09:19.317966-07:00,1012.8817138671875,10.723785,10723.785 +18539,2025-03-09T08:09:30.037751-07:00,1012.9029541015625,10.719785,10719.785 +18540,2025-03-09T08:09:40.768169-07:00,1012.9227905273438,10.730418,10730.418 +18541,2025-03-09T08:09:51.494964-07:00,1012.9095458984375,10.726795,10726.795 +18542,2025-03-09T08:10:02.215249-07:00,1012.92431640625,10.720285,10720.285 +18543,2025-03-09T08:10:12.936329-07:00,1012.9081420898438,10.72108,10721.08 +18544,2025-03-09T08:10:23.661450-07:00,1012.9161987304688,10.725121,10725.121 +18545,2025-03-09T08:10:34.392037-07:00,1012.8883056640625,10.730587,10730.587 +18546,2025-03-09T08:10:45.116963-07:00,1012.8897705078125,10.724926,10724.926 +18547,2025-03-09T08:10:55.839963-07:00,1012.9014892578125,10.723,10723.0 +18548,2025-03-09T08:11:06.569174-07:00,1012.9095458984375,10.729211,10729.211 +18549,2025-03-09T08:11:17.288962-07:00,1012.8897705078125,10.719788,10719.788 +18550,2025-03-09T08:11:28.018960-07:00,1012.9227905273438,10.729998,10729.998 +18551,2025-03-09T08:11:38.743133-07:00,1012.9014892578125,10.724173,10724.173 +18552,2025-03-09T08:11:49.468050-07:00,1012.8817138671875,10.724917,10724.917 +18553,2025-03-09T08:12:00.199142-07:00,1012.9146728515625,10.731092,10731.092 +18554,2025-03-09T08:12:10.919964-07:00,1012.9227905273438,10.720822,10720.822 +18555,2025-03-09T08:12:21.647970-07:00,1012.8948364257812,10.728006,10728.006 +18556,2025-03-09T08:12:32.379195-07:00,1012.9081420898438,10.731225,10731.225 +18557,2025-03-09T08:12:43.099966-07:00,1012.9014892578125,10.720771,10720.771 +18558,2025-03-09T08:12:53.828782-07:00,1012.899658203125,10.728816,10728.816 +18559,2025-03-09T08:13:04.548126-07:00,1012.8651733398438,10.719344,10719.344 +18560,2025-03-09T08:13:15.275963-07:00,1012.899658203125,10.727837,10727.837 +18561,2025-03-09T08:13:26.002106-07:00,1012.8900146484375,10.726143,10726.143 +18562,2025-03-09T08:13:36.727148-07:00,1012.885009765625,10.725042,10725.042 +18563,2025-03-09T08:13:47.449158-07:00,1012.853759765625,10.72201,10722.01 +18564,2025-03-09T08:13:58.173964-07:00,1012.8668823242188,10.724806,10724.806 +18565,2025-03-09T08:14:08.894565-07:00,1012.87353515625,10.720601,10720.601 +18566,2025-03-09T08:14:19.620959-07:00,1012.8635864257812,10.726394,10726.394 +18567,2025-03-09T08:14:30.354148-07:00,1012.8786010742188,10.733189,10733.189 +18568,2025-03-09T08:14:41.075112-07:00,1012.8687744140625,10.720964,10720.964 +18569,2025-03-09T08:14:51.807966-07:00,1012.8965454101562,10.732854,10732.854 +18570,2025-03-09T08:15:02.529439-07:00,1012.8900146484375,10.721473,10721.473 +18571,2025-03-09T08:15:13.256542-07:00,1012.8936157226562,10.727103,10727.103 +18572,2025-03-09T08:15:23.971961-07:00,1012.8951416015625,10.715419,10715.419 +18573,2025-03-09T08:15:34.696966-07:00,1012.9134521484375,10.725005,10725.005 +18574,2025-03-09T08:15:45.426153-07:00,1012.9067993164062,10.729187,10729.187 +18575,2025-03-09T08:15:56.155964-07:00,1012.9082641601562,10.729811,10729.811 +18576,2025-03-09T08:16:06.877161-07:00,1012.9265747070312,10.721197,10721.197 +18577,2025-03-09T08:16:17.608712-07:00,1012.9464111328125,10.731551,10731.551 +18578,2025-03-09T08:16:28.324469-07:00,1012.905029296875,10.715757,10715.757 +18579,2025-03-09T08:16:39.058514-07:00,1012.9413452148438,10.734045,10734.045 +18580,2025-03-09T08:16:49.783010-07:00,1012.9232788085938,10.724496,10724.496 +18581,2025-03-09T08:17:00.502133-07:00,1012.9100952148438,10.719123,10719.123 +18582,2025-03-09T08:17:11.227965-07:00,1012.962890625,10.725832,10725.832 +18583,2025-03-09T08:17:21.952360-07:00,1012.928466796875,10.724395,10724.395 +18584,2025-03-09T08:17:32.674962-07:00,1012.9580688476562,10.722602,10722.602 +18585,2025-03-09T08:17:43.401147-07:00,1012.951416015625,10.726185,10726.185 +18586,2025-03-09T08:17:54.124961-07:00,1012.94189453125,10.723814,10723.814 +18587,2025-03-09T08:18:04.851037-07:00,1012.9334106445312,10.726076,10726.076 +18588,2025-03-09T08:18:15.579276-07:00,1012.91064453125,10.728239,10728.239 +18589,2025-03-09T08:18:26.295369-07:00,1012.9517211914062,10.716093,10716.093 +18590,2025-03-09T08:18:37.020228-07:00,1012.9517211914062,10.724859,10724.859 +18591,2025-03-09T08:18:47.748966-07:00,1013.0029907226562,10.728738,10728.738 +18592,2025-03-09T08:18:58.471339-07:00,1012.9718017578125,10.722373,10722.373 +18593,2025-03-09T08:19:09.194963-07:00,1012.9732666015625,10.723624,10723.624 +18594,2025-03-09T08:19:19.915140-07:00,1013.0228271484375,10.720177,10720.177 +18595,2025-03-09T08:19:30.644325-07:00,1012.9651489257812,10.729185,10729.185 +18596,2025-03-09T08:19:41.373966-07:00,1013.0062255859375,10.729641,10729.641 +18597,2025-03-09T08:19:52.098234-07:00,1013.0048217773438,10.724268,10724.268 +18598,2025-03-09T08:20:02.817397-07:00,1013.009521484375,10.719163,10719.163 +18599,2025-03-09T08:20:13.543144-07:00,1012.9801635742188,10.725747,10725.747 +18600,2025-03-09T08:20:24.267994-07:00,1012.9603271484375,10.72485,10724.85 +18601,2025-03-09T08:20:34.999962-07:00,1012.9453125,10.731968,10731.968 +18602,2025-03-09T08:20:45.715965-07:00,1012.9188842773438,10.716003,10716.003 +18603,2025-03-09T08:20:56.441713-07:00,1012.938720703125,10.725748,10725.748 +18604,2025-03-09T08:21:07.166075-07:00,1012.955322265625,10.724362,10724.362 +18605,2025-03-09T08:21:17.889966-07:00,1012.912353515625,10.723891,10723.891 +18606,2025-03-09T08:21:28.607153-07:00,1012.9141235351562,10.717187,10717.187 +18607,2025-03-09T08:21:39.329483-07:00,1012.9159545898438,10.72233,10722.33 +18608,2025-03-09T08:21:50.050990-07:00,1012.9453125,10.721507,10721.507 +18609,2025-03-09T08:22:00.770978-07:00,1012.9188842773438,10.719988,10719.988 +18610,2025-03-09T08:22:11.499166-07:00,1012.978271484375,10.728188,10728.188 +18611,2025-03-09T08:22:22.220151-07:00,1012.95703125,10.720985,10720.985 +18612,2025-03-09T08:22:32.936963-07:00,1012.9554443359375,10.716812,10716.812 +18613,2025-03-09T08:22:43.657191-07:00,1012.9620971679688,10.720228,10720.228 +18614,2025-03-09T08:22:54.383336-07:00,1012.9738159179688,10.726145,10726.145 +18615,2025-03-09T08:23:05.106148-07:00,1012.9671630859375,10.722812,10722.812 +18616,2025-03-09T08:23:15.829033-07:00,1013.0068969726562,10.722885,10722.885 +18617,2025-03-09T08:23:26.552332-07:00,1012.9851684570312,10.723299,10723.299 +18618,2025-03-09T08:23:37.277988-07:00,1012.9606323242188,10.725656,10725.656 +18619,2025-03-09T08:23:48.001043-07:00,1012.9456176757812,10.723055,10723.055 +18620,2025-03-09T08:23:58.726269-07:00,1012.97705078125,10.725226,10725.226 +18621,2025-03-09T08:24:09.448988-07:00,1012.958740234375,10.722719,10722.719 +18622,2025-03-09T08:24:20.173223-07:00,1012.95068359375,10.724235,10724.235 +18623,2025-03-09T08:24:30.895079-07:00,1012.970458984375,10.721856,10721.856 +18624,2025-03-09T08:24:41.610170-07:00,1012.97705078125,10.715091,10715.091 +18625,2025-03-09T08:24:52.332060-07:00,1012.982177734375,10.72189,10721.89 +18626,2025-03-09T08:25:03.046994-07:00,1012.9869384765625,10.714934,10714.934 +18627,2025-03-09T08:25:13.775039-07:00,1013.0086059570312,10.728045,10728.045 +18628,2025-03-09T08:25:24.493963-07:00,1012.982177734375,10.718924,10718.924 +18629,2025-03-09T08:25:35.218966-07:00,1012.95751953125,10.725003,10725.003 +18630,2025-03-09T08:25:45.940171-07:00,1013.0133666992188,10.721205,10721.205 +18631,2025-03-09T08:25:56.662259-07:00,1013.048095703125,10.722088,10722.088 +18632,2025-03-09T08:26:07.383963-07:00,1013.039794921875,10.721704,10721.704 +18633,2025-03-09T08:26:18.107084-07:00,1013.01513671875,10.723121,10723.121 +18634,2025-03-09T08:26:28.837168-07:00,1013.0103149414062,10.730084,10730.084 +18635,2025-03-09T08:26:39.553664-07:00,1013.0236206054688,10.716496,10716.496 +18636,2025-03-09T08:26:50.279145-07:00,1013.008544921875,10.725481,10725.481 +18637,2025-03-09T08:27:01.002168-07:00,1013.0037231445312,10.723023,10723.023 +18638,2025-03-09T08:27:11.723137-07:00,1012.9821166992188,10.720969,10720.969 +18639,2025-03-09T08:27:22.449990-07:00,1013.0103149414062,10.726853,10726.853 +18640,2025-03-09T08:27:33.175377-07:00,1013.034912109375,10.725387,10725.387 +18641,2025-03-09T08:27:43.897089-07:00,1013.0169677734375,10.721712,10721.712 +18642,2025-03-09T08:27:54.618962-07:00,1013.0301513671875,10.721873,10721.873 +18643,2025-03-09T08:28:05.343377-07:00,1013.0169677734375,10.724415,10724.415 +18644,2025-03-09T08:28:26.792959-07:00,1013.0052490234375,21.449582,21449.582 +18645,2025-03-09T08:28:37.512988-07:00,1012.9689331054688,10.720029,10720.029 +18646,2025-03-09T08:28:48.242326-07:00,1013.0250244140625,10.729338,10729.338 +18647,2025-03-09T08:28:58.958101-07:00,1012.98876953125,10.715775,10715.775 +18648,2025-03-09T08:29:09.686129-07:00,1012.98388671875,10.728028,10728.028 +18649,2025-03-09T08:29:20.410960-07:00,1012.9754638671875,10.724831,10724.831 +18650,2025-03-09T08:29:31.128359-07:00,1012.9806518554688,10.717399,10717.399 +18651,2025-03-09T08:29:41.849971-07:00,1012.9806518554688,10.721612,10721.612 +18652,2025-03-09T08:29:52.582023-07:00,1013.0070190429688,10.732052,10732.052 +18653,2025-03-09T08:30:03.300963-07:00,1013.0054931640625,10.71894,10718.94 +18654,2025-03-09T08:30:14.021128-07:00,1013.00048828125,10.720165,10720.165 +18655,2025-03-09T08:30:24.751320-07:00,1013.003662109375,10.730192,10730.192 +18656,2025-03-09T08:30:35.480190-07:00,1012.9923706054688,10.72887,10728.87 +18657,2025-03-09T08:30:46.199307-07:00,1012.9823608398438,10.719117,10719.117 +18658,2025-03-09T08:30:56.923962-07:00,1012.96923828125,10.724655,10724.655 +18659,2025-03-09T08:31:07.651521-07:00,1012.99560546875,10.727559,10727.559 +18660,2025-03-09T08:31:18.380973-07:00,1012.9953002929688,10.729452,10729.452 +18661,2025-03-09T08:31:29.106282-07:00,1012.9625854492188,10.725309,10725.309 +18662,2025-03-09T08:31:39.830964-07:00,1012.977294921875,10.724682,10724.682 +18663,2025-03-09T08:31:50.555069-07:00,1012.977294921875,10.724105,10724.105 +18664,2025-03-09T08:32:01.281989-07:00,1012.9592895507812,10.72692,10726.92 +18665,2025-03-09T08:32:12.011082-07:00,1012.990478515625,10.729093,10729.093 +18666,2025-03-09T08:32:22.735571-07:00,1012.9625854492188,10.724489,10724.489 +18667,2025-03-09T08:32:33.460962-07:00,1012.9625854492188,10.725391,10725.391 +18668,2025-03-09T08:32:44.178582-07:00,1012.9281005859375,10.71762,10717.62 +18669,2025-03-09T08:32:54.910174-07:00,1012.9265747070312,10.731592,10731.592 +18670,2025-03-09T08:33:05.628638-07:00,1012.9529418945312,10.718464,10718.464 +18671,2025-03-09T08:33:16.354962-07:00,1012.9115600585938,10.726324,10726.324 +18672,2025-03-09T08:33:27.087264-07:00,1012.9511108398438,10.732302,10732.302 +18673,2025-03-09T08:33:37.804987-07:00,1012.9415893554688,10.717723,10717.723 +18674,2025-03-09T08:33:48.527077-07:00,1012.9595336914062,10.72209,10722.09 +18675,2025-03-09T08:33:59.259146-07:00,1012.964599609375,10.732069,10732.069 +18676,2025-03-09T08:34:09.980964-07:00,1012.934814453125,10.721818,10721.818 +18677,2025-03-09T08:34:20.705981-07:00,1012.9450073242188,10.725017,10725.017 +18678,2025-03-09T08:34:31.432071-07:00,1012.9285278320312,10.72609,10726.09 +18679,2025-03-09T08:34:42.152144-07:00,1012.9515380859375,10.720073,10720.073 +18680,2025-03-09T08:34:52.872963-07:00,1012.9221801757812,10.720819,10720.819 +18681,2025-03-09T08:35:03.600966-07:00,1012.97998046875,10.728003,10728.003 +18682,2025-03-09T08:35:14.329266-07:00,1012.9506225585938,10.7283,10728.3 +18683,2025-03-09T08:35:25.050091-07:00,1012.9556274414062,10.720825,10720.825 +18684,2025-03-09T08:35:35.775250-07:00,1012.9902954101562,10.725159,10725.159 +18685,2025-03-09T08:35:46.500162-07:00,1012.9671020507812,10.724912,10724.912 +18686,2025-03-09T08:35:57.216815-07:00,1013.0216674804688,10.716653,10716.653 +18687,2025-03-09T08:36:07.947032-07:00,1012.9840698242188,10.730217,10730.217 +18688,2025-03-09T08:36:18.664141-07:00,1012.9974975585938,10.717109,10717.109 +18689,2025-03-09T08:36:29.394987-07:00,1013.0109252929688,10.730846,10730.846 +18690,2025-03-09T08:36:40.116141-07:00,1013.03564453125,10.721154,10721.154 +18691,2025-03-09T08:36:50.845455-07:00,1013.0145874023438,10.729314,10729.314 +18692,2025-03-09T08:37:01.564170-07:00,1013.0013427734375,10.718715,10718.715 +18693,2025-03-09T08:37:12.288962-07:00,1013.0015869140625,10.724792,10724.792 +18694,2025-03-09T08:37:23.011962-07:00,1013.0098266601562,10.723,10723.0 +18695,2025-03-09T08:37:33.744231-07:00,1013.0100708007812,10.732269,10732.269 +18696,2025-03-09T08:37:44.470963-07:00,1013.0018920898438,10.726732,10726.732 +18697,2025-03-09T08:37:55.199438-07:00,1013.0087280273438,10.728475,10728.475 +18698,2025-03-09T08:38:05.916963-07:00,1012.9906005859375,10.717525,10717.525 +18699,2025-03-09T08:38:16.638042-07:00,1013.00732421875,10.721079,10721.079 +18700,2025-03-09T08:38:27.359965-07:00,1013.0253295898438,10.721923,10721.923 +18701,2025-03-09T08:38:38.094795-07:00,1012.9992065429688,10.73483,10734.83 +18702,2025-03-09T08:38:48.815086-07:00,1013.0175170898438,10.720291,10720.291 +18703,2025-03-09T08:38:59.538965-07:00,1013.0075073242188,10.723879,10723.879 +18704,2025-03-09T08:39:10.263000-07:00,1013.0242309570312,10.724035,10724.035 +18705,2025-03-09T08:39:20.994962-07:00,1012.9929809570312,10.731962,10731.962 +18706,2025-03-09T08:39:31.716021-07:00,1012.9929809570312,10.721059,10721.059 +18707,2025-03-09T08:39:42.439255-07:00,1013.0340576171875,10.723234,10723.234 +18708,2025-03-09T08:39:53.162158-07:00,1013.0159912109375,10.722903,10722.903 +18709,2025-03-09T08:40:03.891544-07:00,1013.0474853515625,10.729386,10729.386 +18710,2025-03-09T08:40:14.617098-07:00,1013.0159912109375,10.725554,10725.554 +18711,2025-03-09T08:40:25.342201-07:00,1013.0192260742188,10.725103,10725.103 +18712,2025-03-09T08:40:36.056030-07:00,1013.0192260742188,10.713829,10713.829 +18713,2025-03-09T08:40:46.784765-07:00,1013.0276489257812,10.728735,10728.735 +18714,2025-03-09T08:40:57.512963-07:00,1013.032470703125,10.728198,10728.198 +18715,2025-03-09T08:41:08.232173-07:00,1012.9979858398438,10.71921,10719.21 +18716,2025-03-09T08:41:18.965562-07:00,1013.0276489257812,10.733389,10733.389 +18717,2025-03-09T08:41:29.683967-07:00,1013.0343017578125,10.718405,10718.405 +18718,2025-03-09T08:41:40.408962-07:00,1013.0126342773438,10.724995,10724.995 +18719,2025-03-09T08:41:51.134218-07:00,1013.0211181640625,10.725256,10725.256 +18720,2025-03-09T08:42:01.858960-07:00,1012.99951171875,10.724742,10724.742 +18721,2025-03-09T08:42:12.592008-07:00,1012.9946899414062,10.733048,10733.048 +18722,2025-03-09T08:42:23.314339-07:00,1012.9880981445312,10.722331,10722.331 +18723,2025-03-09T08:42:34.041964-07:00,1012.992919921875,10.727625,10727.625 +18724,2025-03-09T08:42:44.771174-07:00,1013.0094604492188,10.72921,10729.21 +18725,2025-03-09T08:42:55.491891-07:00,1012.9962768554688,10.720717,10720.717 +18726,2025-03-09T08:43:06.211965-07:00,1012.997802734375,10.720074,10720.074 +18727,2025-03-09T08:43:16.944156-07:00,1013.0128173828125,10.732191,10732.191 +18728,2025-03-09T08:43:27.668593-07:00,1012.9798583984375,10.724437,10724.437 +18729,2025-03-09T08:43:38.397141-07:00,1013.0076293945312,10.728548,10728.548 +18730,2025-03-09T08:43:49.111965-07:00,1013.0059204101562,10.714824,10714.824 +18731,2025-03-09T08:43:59.845306-07:00,1013.0059204101562,10.733341,10733.341 +18732,2025-03-09T08:44:10.567961-07:00,1013.0075073242188,10.722655,10722.655 +18733,2025-03-09T08:44:21.285141-07:00,1013.0009155273438,10.71718,10717.18 +18734,2025-03-09T08:44:32.021020-07:00,1013.0042114257812,10.735879,10735.879 +18735,2025-03-09T08:44:42.743964-07:00,1012.9976806640625,10.722944,10722.944 +18736,2025-03-09T08:44:53.461843-07:00,1012.9859619140625,10.717879,10717.879 +18737,2025-03-09T08:45:04.196966-07:00,1012.9611206054688,10.735123,10735.123 +18738,2025-03-09T08:45:14.920507-07:00,1012.9578857421875,10.723541,10723.541 +18739,2025-03-09T08:45:25.644962-07:00,1012.9678344726562,10.724455,10724.455 +18740,2025-03-09T08:45:36.366965-07:00,1012.9511108398438,10.722003,10722.003 +18741,2025-03-09T08:45:47.087702-07:00,1012.923095703125,10.720737,10720.737 +18742,2025-03-09T08:45:57.812163-07:00,1012.93310546875,10.724461,10724.461 +18743,2025-03-09T08:46:08.543227-07:00,1012.9427490234375,10.731064,10731.064 +18744,2025-03-09T08:46:19.264453-07:00,1012.924560546875,10.721226,10721.226 +18745,2025-03-09T08:46:29.992149-07:00,1012.9212646484375,10.727696,10727.696 +18746,2025-03-09T08:46:40.715990-07:00,1012.9293823242188,10.723841,10723.841 +18747,2025-03-09T08:46:51.430778-07:00,1012.9539794921875,10.714788,10714.788 +18748,2025-03-09T08:47:02.158965-07:00,1012.955810546875,10.728187,10728.187 +18749,2025-03-09T08:47:12.883125-07:00,1012.96728515625,10.72416,10724.16 +18750,2025-03-09T08:47:23.604508-07:00,1012.9852905273438,10.721383,10721.383 +18751,2025-03-09T08:47:34.324242-07:00,1012.978759765625,10.719734,10719.734 +18752,2025-03-09T08:47:45.052169-07:00,1012.9751586914062,10.727927,10727.927 +18753,2025-03-09T08:47:55.771136-07:00,1012.998291015625,10.718967,10718.967 +18754,2025-03-09T08:48:06.497963-07:00,1012.96533203125,10.726827,10726.827 +18755,2025-03-09T08:48:17.226992-07:00,1012.9287719726562,10.729029,10729.029 +18756,2025-03-09T08:48:27.953137-07:00,1012.9453125,10.726145,10726.145 +18757,2025-03-09T08:48:38.672963-07:00,1012.9188842773438,10.719826,10719.826 +18758,2025-03-09T08:48:49.406968-07:00,1012.9369506835938,10.734005,10734.005 +18759,2025-03-09T08:49:00.134961-07:00,1012.9235229492188,10.727993,10727.993 +18760,2025-03-09T08:49:10.868965-07:00,1012.9367065429688,10.734004,10734.004 +18761,2025-03-09T08:49:21.591303-07:00,1012.9202880859375,10.722338,10722.338 +18762,2025-03-09T08:49:32.325961-07:00,1012.9562377929688,10.734658,10734.658 +18763,2025-03-09T08:49:43.056966-07:00,1012.9398193359375,10.731005,10731.005 +18764,2025-03-09T08:49:53.786440-07:00,1012.9332885742188,10.729474,10729.474 +18765,2025-03-09T08:50:04.515998-07:00,1012.9198608398438,10.729558,10729.558 +18766,2025-03-09T08:50:15.236200-07:00,1012.9263916015625,10.720202,10720.202 +18767,2025-03-09T08:50:25.969033-07:00,1012.9263916015625,10.732833,10732.833 +18768,2025-03-09T08:50:36.700112-07:00,1012.8917236328125,10.731079,10731.079 +18769,2025-03-09T08:50:47.427965-07:00,1012.9229736328125,10.727853,10727.853 +18770,2025-03-09T08:50:58.155198-07:00,1012.9229736328125,10.727233,10727.233 +18771,2025-03-09T08:51:08.882964-07:00,1012.92626953125,10.727766,10727.766 +18772,2025-03-09T08:51:19.615381-07:00,1012.8800659179688,10.732417,10732.417 +18773,2025-03-09T08:51:30.341236-07:00,1012.924560546875,10.725855,10725.855 +18774,2025-03-09T08:51:41.070963-07:00,1012.901123046875,10.729727,10729.727 +18775,2025-03-09T08:51:51.800140-07:00,1012.8978881835938,10.729177,10729.177 +18776,2025-03-09T08:52:02.528963-07:00,1012.8565673828125,10.728823,10728.823 +18777,2025-03-09T08:52:13.255299-07:00,1012.8630981445312,10.726336,10726.336 +18778,2025-03-09T08:52:23.984944-07:00,1012.8203125,10.729645,10729.645 +18779,2025-03-09T08:52:34.775019-07:00,1012.8746948242188,10.790075,10790.075 +18780,2025-03-09T08:52:45.502970-07:00,1012.8743896484375,10.727951,10727.951 +18781,2025-03-09T08:52:56.236021-07:00,1012.8579711914062,10.733051,10733.051 +18782,2025-03-09T08:53:06.964880-07:00,1012.8447875976562,10.728859,10728.859 +18783,2025-03-09T08:53:17.704635-07:00,1012.8759155273438,10.739755,10739.755 +18784,2025-03-09T08:53:28.436971-07:00,1012.907470703125,10.732336,10732.336 +18785,2025-03-09T08:53:39.165892-07:00,1012.9156494140625,10.728921,10728.921 +18786,2025-03-09T08:53:49.895867-07:00,1012.864501953125,10.729975,10729.975 +18787,2025-03-09T08:54:00.635816-07:00,1012.8777465820312,10.739949,10739.949 +18788,2025-03-09T08:54:11.363802-07:00,1012.8909301757812,10.727986,10727.986 +18789,2025-03-09T08:54:22.107799-07:00,1012.8990478515625,10.743997,10743.997 +18790,2025-03-09T08:54:32.834193-07:00,1012.9173583984375,10.726394,10726.394 +18791,2025-03-09T08:54:43.571010-07:00,1012.9121704101562,10.736817,10736.817 +18792,2025-03-09T08:54:54.302221-07:00,1012.8876342773438,10.731211,10731.211 +18793,2025-03-09T08:55:05.033881-07:00,1012.9039306640625,10.73166,10731.66 +18794,2025-03-09T08:55:15.766836-07:00,1012.887451171875,10.732955,10732.955 +18795,2025-03-09T08:55:26.496826-07:00,1012.91357421875,10.72999,10729.99 +18796,2025-03-09T08:55:37.221981-07:00,1012.934814453125,10.725155,10725.155 +18797,2025-03-09T08:55:47.948985-07:00,1012.9498291015625,10.727004,10727.004 +18798,2025-03-09T08:55:58.678804-07:00,1012.952880859375,10.729819,10729.819 +18799,2025-03-09T08:56:09.419804-07:00,1012.9562377929688,10.741,10741.0 +18800,2025-03-09T08:56:20.150802-07:00,1012.93798828125,10.730998,10730.998 +18801,2025-03-09T08:56:30.879826-07:00,1012.9361572265625,10.729024,10729.024 +18802,2025-03-09T08:56:41.606815-07:00,1012.9461059570312,10.726989,10726.989 +18803,2025-03-09T08:56:52.334981-07:00,1012.9260864257812,10.728166,10728.166 +18804,2025-03-09T08:57:03.075059-07:00,1012.9623413085938,10.740078,10740.078 +18805,2025-03-09T08:57:13.800802-07:00,1012.9474487304688,10.725743,10725.743 +18806,2025-03-09T08:57:24.531801-07:00,1012.9174194335938,10.730999,10730.999 +18807,2025-03-09T08:57:35.271207-07:00,1012.9354858398438,10.739406,10739.406 +18808,2025-03-09T08:57:45.996801-07:00,1012.9567260742188,10.725594,10725.594 +18809,2025-03-09T08:57:56.727975-07:00,1012.9766235351562,10.731174,10731.174 +18810,2025-03-09T08:58:07.459236-07:00,1012.9664306640625,10.731261,10731.261 +18811,2025-03-09T08:58:18.191876-07:00,1012.9712524414062,10.73264,10732.64 +18812,2025-03-09T08:58:28.914840-07:00,1012.9893188476562,10.722964,10722.964 +18813,2025-03-09T08:58:39.655244-07:00,1012.9841918945312,10.740404,10740.404 +18814,2025-03-09T08:58:50.380258-07:00,1012.982421875,10.725014,10725.014 +18815,2025-03-09T08:59:01.119007-07:00,1012.9724731445312,10.738749,10738.749 +18816,2025-03-09T08:59:11.851908-07:00,1012.9890747070312,10.732901,10732.901 +18817,2025-03-09T08:59:22.577804-07:00,1013.0284423828125,10.725896,10725.896 +18818,2025-03-09T08:59:33.306955-07:00,1012.9873657226562,10.729151,10729.151 +18819,2025-03-09T08:59:44.044803-07:00,1012.9935913085938,10.737848,10737.848 +18820,2025-03-09T08:59:54.774139-07:00,1012.994873046875,10.729336,10729.336 +18821,2025-03-09T09:00:05.501934-07:00,1012.9915771484375,10.727795,10727.795 +18822,2025-03-09T09:00:16.232635-07:00,1013.0147094726562,10.730701,10730.701 +18823,2025-03-09T09:00:26.967981-07:00,1013.0147094726562,10.735346,10735.346 +18824,2025-03-09T09:00:37.697874-07:00,1012.98828125,10.729893,10729.893 +18825,2025-03-09T09:00:48.429214-07:00,1013.0029907226562,10.73134,10731.34 +18826,2025-03-09T09:00:59.156302-07:00,1013.00634765625,10.727088,10727.088 +18827,2025-03-09T09:01:09.884047-07:00,1013.0027465820312,10.727745,10727.745 +18828,2025-03-09T09:01:20.620026-07:00,1013.001220703125,10.735979,10735.979 +18829,2025-03-09T09:01:31.347800-07:00,1012.9781494140625,10.727774,10727.774 +18830,2025-03-09T09:01:42.071873-07:00,1012.9880981445312,10.724073,10724.073 +18831,2025-03-09T09:01:52.802993-07:00,1012.9913940429688,10.73112,10731.12 +18832,2025-03-09T09:02:03.535804-07:00,1013.007568359375,10.732811,10732.811 +18833,2025-03-09T09:02:14.262086-07:00,1012.98779296875,10.726282,10726.282 +18834,2025-03-09T09:02:24.990509-07:00,1012.9976806640625,10.728423,10728.423 +18835,2025-03-09T09:02:35.722803-07:00,1013.01904296875,10.732294,10732.294 +18836,2025-03-09T09:02:46.449801-07:00,1013.0158081054688,10.726998,10726.998 +18837,2025-03-09T09:02:57.185291-07:00,1013.0172119140625,10.73549,10735.49 +18838,2025-03-09T09:03:07.916041-07:00,1013.0106201171875,10.73075,10730.75 +18839,2025-03-09T09:03:18.644993-07:00,1013.00732421875,10.728952,10728.952 +18840,2025-03-09T09:03:29.373100-07:00,1013.0271606445312,10.728107,10728.107 +18841,2025-03-09T09:03:40.112801-07:00,1013.0320434570312,10.739701,10739.701 +18842,2025-03-09T09:03:50.841804-07:00,1013.045166015625,10.729003,10729.003 +18843,2025-03-09T09:04:01.570976-07:00,1013.025390625,10.729172,10729.172 +18844,2025-03-09T09:04:12.302952-07:00,1013.0283813476562,10.731976,10731.976 +18845,2025-03-09T09:04:23.025025-07:00,1013.04345703125,10.722073,10722.073 +18846,2025-03-09T09:04:33.761364-07:00,1013.048095703125,10.736339,10736.339 +18847,2025-03-09T09:04:44.486801-07:00,1013.03173828125,10.725437,10725.437 +18848,2025-03-09T09:04:55.222803-07:00,1013.051513671875,10.736002,10736.002 +18849,2025-03-09T09:05:05.953313-07:00,1013.0466918945312,10.73051,10730.51 +18850,2025-03-09T09:05:16.681800-07:00,1013.0499877929688,10.728487,10728.487 +18851,2025-03-09T09:05:27.417046-07:00,1013.0487670898438,10.735246,10735.246 +18852,2025-03-09T09:05:38.147684-07:00,1013.0836181640625,10.730638,10730.638 +18853,2025-03-09T09:05:48.880803-07:00,1013.0640869140625,10.733119,10733.119 +18854,2025-03-09T09:05:59.618801-07:00,1013.0687255859375,10.737998,10737.998 +18855,2025-03-09T09:06:10.351834-07:00,1013.0675048828125,10.733033,10733.033 +18856,2025-03-09T09:06:21.081976-07:00,1013.057861328125,10.730142,10730.142 +18857,2025-03-09T09:06:31.810803-07:00,1013.0415649414062,10.728827,10728.827 +18858,2025-03-09T09:06:42.545136-07:00,1013.0829467773438,10.734333,10734.333 +18859,2025-03-09T09:06:53.277533-07:00,1013.0204467773438,10.732397,10732.397 +18860,2025-03-09T09:07:04.003803-07:00,1013.0918579101562,10.72627,10726.27 +18861,2025-03-09T09:07:14.744803-07:00,1013.072021484375,10.741,10741.0 +18862,2025-03-09T09:07:25.475800-07:00,1013.1185302734375,10.730997,10730.997 +18863,2025-03-09T09:07:36.200114-07:00,1013.1268920898438,10.724314,10724.314 +18864,2025-03-09T09:07:57.669267-07:00,1013.130615234375,21.469153,21469.153 +18865,2025-03-09T09:08:08.402990-07:00,1013.124267578125,10.733723,10733.723 +18866,2025-03-09T09:08:19.135804-07:00,1013.1179809570312,10.732814,10732.814 +18867,2025-03-09T09:08:29.858797-07:00,1013.131103515625,10.722993,10722.993 +18868,2025-03-09T09:08:40.594898-07:00,1013.1246948242188,10.736101,10736.101 +18869,2025-03-09T09:08:51.323106-07:00,1013.1183471679688,10.728208,10728.208 +18870,2025-03-09T09:09:02.053835-07:00,1013.09521484375,10.730729,10730.729 +18871,2025-03-09T09:09:12.790769-07:00,1013.125244140625,10.736934,10736.934 +18872,2025-03-09T09:09:23.513801-07:00,1013.1004638671875,10.723032,10723.032 +18873,2025-03-09T09:09:34.241102-07:00,1013.1400756835938,10.727301,10727.301 +18874,2025-03-09T09:09:44.977993-07:00,1013.1271362304688,10.736891,10736.891 +18875,2025-03-09T09:09:55.703800-07:00,1013.107177734375,10.725807,10725.807 +18876,2025-03-09T09:10:06.432983-07:00,1013.1057739257812,10.729183,10729.183 +18877,2025-03-09T09:10:17.168988-07:00,1013.1420288085938,10.736005,10736.005 +18878,2025-03-09T09:10:27.897840-07:00,1013.1305541992188,10.728852,10728.852 +18879,2025-03-09T09:10:38.618033-07:00,1013.127197265625,10.720193,10720.193 +18880,2025-03-09T09:10:49.346841-07:00,1013.1355590820312,10.728808,10728.808 +18881,2025-03-09T09:11:00.077804-07:00,1013.1390380859375,10.730963,10730.963 +18882,2025-03-09T09:11:10.810981-07:00,1013.1012573242188,10.733177,10733.177 +18883,2025-03-09T09:11:21.538924-07:00,1013.111083984375,10.727943,10727.943 +18884,2025-03-09T09:11:32.272004-07:00,1013.1506958007812,10.73308,10733.08 +18885,2025-03-09T09:11:43.006941-07:00,1013.1476440429688,10.734937,10734.937 +18886,2025-03-09T09:11:53.728870-07:00,1013.1509399414062,10.721929,10721.929 +18887,2025-03-09T09:12:04.461802-07:00,1013.1542358398438,10.732932,10732.932 +18888,2025-03-09T09:12:15.190312-07:00,1013.1427612304688,10.72851,10728.51 +18889,2025-03-09T09:12:25.921866-07:00,1013.146240234375,10.731554,10731.554 +18890,2025-03-09T09:12:36.647906-07:00,1013.131591796875,10.72604,10726.04 +18891,2025-03-09T09:12:47.385014-07:00,1013.1414184570312,10.737108,10737.108 +18892,2025-03-09T09:12:58.108800-07:00,1013.1465454101562,10.723786,10723.786 +18893,2025-03-09T09:13:08.845874-07:00,1013.12841796875,10.737074,10737.074 +18894,2025-03-09T09:13:19.571433-07:00,1013.1482543945312,10.725559,10725.559 +18895,2025-03-09T09:13:30.295800-07:00,1013.1514892578125,10.724367,10724.367 +18896,2025-03-09T09:13:41.030004-07:00,1013.135009765625,10.734204,10734.204 +18897,2025-03-09T09:13:51.760967-07:00,1013.1613159179688,10.730963,10730.963 +18898,2025-03-09T09:14:02.492804-07:00,1013.1532592773438,10.731837,10731.837 +18899,2025-03-09T09:14:13.219980-07:00,1013.1451416015625,10.727176,10727.176 +18900,2025-03-09T09:14:23.952989-07:00,1013.1681518554688,10.733009,10733.009 +18901,2025-03-09T09:14:34.685173-07:00,1013.1534423828125,10.732184,10732.184 +18902,2025-03-09T09:14:45.414934-07:00,1013.1536865234375,10.729761,10729.761 +18903,2025-03-09T09:14:56.144940-07:00,1013.1683349609375,10.730006,10730.006 +18904,2025-03-09T09:15:06.880827-07:00,1013.1303100585938,10.735887,10735.887 +18905,2025-03-09T09:15:17.613804-07:00,1013.1483764648438,10.732977,10732.977 +18906,2025-03-09T09:15:28.344073-07:00,1013.1532592773438,10.730269,10730.269 +18907,2025-03-09T09:15:39.069801-07:00,1013.1383056640625,10.725728,10725.728 +18908,2025-03-09T09:15:40.391314-07:00,1013.1712646484375,1.321513,1321.513 +18909,2025-03-09T09:15:49.806008-07:00,1013.126708984375,9.414694,9414.694 +18910,2025-03-09T09:16:00.527959-07:00,1013.1361083984375,10.721951,10721.951 +18911,2025-03-09T09:16:11.265815-07:00,1013.1443481445312,10.737856,10737.856 +18912,2025-03-09T09:16:21.996801-07:00,1013.14404296875,10.730986,10730.986 +18913,2025-03-09T09:16:32.725013-07:00,1013.1141967773438,10.728212,10728.212 +18914,2025-03-09T09:16:43.454000-07:00,1013.1091918945312,10.728987,10728.987 +18915,2025-03-09T09:16:54.186868-07:00,1013.1104736328125,10.732868,10732.868 +18916,2025-03-09T09:17:04.912907-07:00,1013.10400390625,10.726039,10726.039 +18917,2025-03-09T09:17:15.644824-07:00,1013.1023559570312,10.731917,10731.917 +18918,2025-03-09T09:17:26.379803-07:00,1013.126708984375,10.734979,10734.979 +18919,2025-03-09T09:17:37.104268-07:00,1013.106689453125,10.724465,10724.465 +18920,2025-03-09T09:17:47.827801-07:00,1013.0950927734375,10.723533,10723.533 +18921,2025-03-09T09:17:58.556801-07:00,1013.104736328125,10.729,10729.0 +18922,2025-03-09T09:18:09.297796-07:00,1013.1126708984375,10.740995,10740.995 +18923,2025-03-09T09:18:20.025830-07:00,1013.09765625,10.728034,10728.034 +18924,2025-03-09T09:18:30.757160-07:00,1013.1256103515625,10.73133,10731.33 +18925,2025-03-09T09:18:41.487179-07:00,1013.1203002929688,10.730019,10730.019 +18926,2025-03-09T09:18:52.215958-07:00,1013.1251831054688,10.728779,10728.779 +18927,2025-03-09T09:19:02.946935-07:00,1013.0870361328125,10.730977,10730.977 +18928,2025-03-09T09:19:13.677886-07:00,1013.0787353515625,10.730951,10730.951 +18929,2025-03-09T09:19:24.407099-07:00,1013.0850219726562,10.729213,10729.213 +18930,2025-03-09T09:19:35.135891-07:00,1013.0549926757812,10.728792,10728.792 +18931,2025-03-09T09:19:45.861973-07:00,1013.0550537109375,10.726082,10726.082 +18932,2025-03-09T09:19:56.597796-07:00,1013.0679931640625,10.735823,10735.823 +18933,2025-03-09T09:20:07.320800-07:00,1013.0596923828125,10.723004,10723.004 +18934,2025-03-09T09:20:18.058182-07:00,1013.0725708007812,10.737382,10737.382 +18935,2025-03-09T09:20:28.780798-07:00,1013.0692749023438,10.722616,10722.616 +18936,2025-03-09T09:20:39.515805-07:00,1013.069091796875,10.735007,10735.007 +18937,2025-03-09T09:20:50.241300-07:00,1013.0789184570312,10.725495,10725.495 +18938,2025-03-09T09:21:00.972801-07:00,1013.0903930664062,10.731501,10731.501 +18939,2025-03-09T09:21:11.697804-07:00,1013.0723266601562,10.725003,10725.003 +18940,2025-03-09T09:21:22.424007-07:00,1013.0753784179688,10.726203,10726.203 +18941,2025-03-09T09:21:33.155817-07:00,1013.1018676757812,10.73181,10731.81 +18942,2025-03-09T09:21:43.878107-07:00,1013.0836181640625,10.72229,10722.29 +18943,2025-03-09T09:21:54.608990-07:00,1013.1180419921875,10.730883,10730.883 +18944,2025-03-09T09:22:05.333901-07:00,1013.0934448242188,10.724911,10724.911 +18945,2025-03-09T09:22:16.067175-07:00,1013.094970703125,10.733274,10733.274 +18946,2025-03-09T09:22:26.800801-07:00,1013.0847778320312,10.733626,10733.626 +18947,2025-03-09T09:22:37.532835-07:00,1013.0932006835938,10.732034,10732.034 +18948,2025-03-09T09:22:48.259271-07:00,1013.10791015625,10.726436,10726.436 +18949,2025-03-09T09:22:58.987993-07:00,1013.1046142578125,10.728722,10728.722 +18950,2025-03-09T09:23:09.725044-07:00,1013.140625,10.737051,10737.051 +18951,2025-03-09T09:23:20.445830-07:00,1013.1177978515625,10.720786,10720.786 +18952,2025-03-09T09:23:31.177803-07:00,1013.107666015625,10.731973,10731.973 +18953,2025-03-09T09:23:41.914949-07:00,1013.107666015625,10.737146,10737.146 +18954,2025-03-09T09:23:52.638006-07:00,1013.1226806640625,10.723057,10723.057 +18955,2025-03-09T09:24:03.375210-07:00,1013.1322021484375,10.737204,10737.204 +18956,2025-03-09T09:24:14.099831-07:00,1013.1174926757812,10.724621,10724.621 +18957,2025-03-09T09:24:24.831039-07:00,1013.1057739257812,10.731208,10731.208 +18958,2025-03-09T09:24:35.562799-07:00,1013.1370239257812,10.73176,10731.76 +18959,2025-03-09T09:24:46.293230-07:00,1013.1256103515625,10.730431,10730.431 +18960,2025-03-09T09:24:57.021062-07:00,1013.1024780273438,10.727832,10727.832 +18961,2025-03-09T09:25:07.761964-07:00,1013.1322631835938,10.740902,10740.902 +18962,2025-03-09T09:25:18.485148-07:00,1013.153564453125,10.723184,10723.184 +18963,2025-03-09T09:25:29.218009-07:00,1013.1256103515625,10.732861,10732.861 +18964,2025-03-09T09:25:39.943804-07:00,1013.1454467773438,10.725795,10725.795 +18965,2025-03-09T09:25:50.667224-07:00,1013.1370239257812,10.72342,10723.42 +18966,2025-03-09T09:26:01.392802-07:00,1013.1668090820312,10.725578,10725.578 +18967,2025-03-09T09:26:12.128939-07:00,1013.153564453125,10.736137,10736.137 +18968,2025-03-09T09:26:22.858300-07:00,1013.1668090820312,10.729361,10729.361 +18969,2025-03-09T09:26:33.590903-07:00,1013.1337280273438,10.732603,10732.603 +18970,2025-03-09T09:26:44.312257-07:00,1013.140380859375,10.721354,10721.354 +18971,2025-03-09T09:26:55.052833-07:00,1013.1947021484375,10.740576,10740.576 +18972,2025-03-09T09:27:05.777807-07:00,1013.1998291015625,10.724974,10724.974 +18973,2025-03-09T09:27:16.501007-07:00,1013.1553344726562,10.7232,10723.2 +18974,2025-03-09T09:27:27.227828-07:00,1013.1851806640625,10.726821,10726.821 +18975,2025-03-09T09:27:37.965803-07:00,1013.1802978515625,10.737975,10737.975 +18976,2025-03-09T09:27:48.689060-07:00,1013.1950073242188,10.723257,10723.257 +18977,2025-03-09T09:27:59.420980-07:00,1013.178466796875,10.73192,10731.92 +18978,2025-03-09T09:28:10.149803-07:00,1013.1754760742188,10.728823,10728.823 +18979,2025-03-09T09:28:20.876969-07:00,1013.173583984375,10.727166,10727.166 +18980,2025-03-09T09:28:31.608917-07:00,1013.1787719726562,10.731948,10731.948 +18981,2025-03-09T09:28:42.339133-07:00,1013.1885986328125,10.730216,10730.216 +18982,2025-03-09T09:28:53.063976-07:00,1013.1790771484375,10.724843,10724.843 +18983,2025-03-09T09:29:03.782805-07:00,1013.1676635742188,10.718829,10718.829 +18984,2025-03-09T09:29:14.519054-07:00,1013.1759643554688,10.736249,10736.249 +18985,2025-03-09T09:29:25.249533-07:00,1013.1975708007812,10.730479,10730.479 +18986,2025-03-09T09:29:35.972873-07:00,1013.1498413085938,10.72334,10723.34 +18987,2025-03-09T09:29:46.708018-07:00,1013.1812744140625,10.735145,10735.145 +18988,2025-03-09T09:29:57.435803-07:00,1013.1517944335938,10.727785,10727.785 +18989,2025-03-09T09:30:08.166058-07:00,1013.1751708984375,10.730255,10730.255 +18990,2025-03-09T09:30:18.900870-07:00,1013.185302734375,10.734812,10734.812 +18991,2025-03-09T09:30:29.622804-07:00,1013.19873046875,10.721934,10721.934 +18992,2025-03-09T09:30:40.350181-07:00,1013.1990356445312,10.727377,10727.377 +18993,2025-03-09T09:30:51.086527-07:00,1013.197509765625,10.736346,10736.346 +18994,2025-03-09T09:31:01.818114-07:00,1013.174560546875,10.731587,10731.587 +18995,2025-03-09T09:31:12.541802-07:00,1013.2012329101562,10.723688,10723.688 +18996,2025-03-09T09:31:23.272895-07:00,1013.2161865234375,10.731093,10731.093 +18997,2025-03-09T09:31:34.004070-07:00,1013.2164306640625,10.731175,10731.175 +18998,2025-03-09T09:31:44.729994-07:00,1013.1884155273438,10.725924,10725.924 +18999,2025-03-09T09:31:55.454999-07:00,1013.2334594726562,10.725005,10725.005 +19000,2025-03-09T09:32:06.182800-07:00,1013.2483520507812,10.727801,10727.801 +19001,2025-03-09T09:32:16.905983-07:00,1013.22705078125,10.723183,10723.183 +19002,2025-03-09T09:32:27.635799-07:00,1013.223876953125,10.729816,10729.816 +19003,2025-03-09T09:32:38.369810-07:00,1013.2140502929688,10.734011,10734.011 +19004,2025-03-09T09:32:49.101282-07:00,1013.2175903320312,10.731472,10731.472 +19005,2025-03-09T09:32:59.825801-07:00,1013.2142333984375,10.724519,10724.519 +19006,2025-03-09T09:33:10.559803-07:00,1013.217529296875,10.734002,10734.002 +19007,2025-03-09T09:33:21.287007-07:00,1013.2111206054688,10.727204,10727.204 +19008,2025-03-09T09:33:32.015374-07:00,1013.2324829101562,10.728367,10728.367 +19009,2025-03-09T09:33:42.748893-07:00,1013.2276611328125,10.733519,10733.519 +19010,2025-03-09T09:33:53.478002-07:00,1013.204833984375,10.729109,10729.109 +19011,2025-03-09T09:34:04.201803-07:00,1013.2245483398438,10.723801,10723.801 +19012,2025-03-09T09:34:14.925983-07:00,1013.2359619140625,10.72418,10724.18 +19013,2025-03-09T09:34:25.656870-07:00,1013.2227172851562,10.730887,10730.887 +19014,2025-03-09T09:34:36.390019-07:00,1013.2212524414062,10.733149,10733.149 +19015,2025-03-09T09:34:47.113001-07:00,1013.2193603515625,10.722982,10722.982 +19016,2025-03-09T09:34:57.835805-07:00,1013.2344360351562,10.722804,10722.804 +19017,2025-03-09T09:35:08.565822-07:00,1013.216064453125,10.730017,10730.017 +19018,2025-03-09T09:35:19.301069-07:00,1013.2310791015625,10.735247,10735.247 +19019,2025-03-09T09:35:30.028015-07:00,1013.2193603515625,10.726946,10726.946 +19020,2025-03-09T09:35:40.751978-07:00,1013.1849365234375,10.723963,10723.963 +19021,2025-03-09T09:35:51.481804-07:00,1013.2128295898438,10.729826,10729.826 +19022,2025-03-09T09:36:02.215931-07:00,1013.201416015625,10.734127,10734.127 +19023,2025-03-09T09:36:12.942220-07:00,1013.2128295898438,10.726289,10726.289 +19024,2025-03-09T09:36:23.665091-07:00,1013.216064453125,10.722871,10722.871 +19025,2025-03-09T09:36:34.396976-07:00,1013.178466796875,10.731885,10731.885 +19026,2025-03-09T09:36:45.127368-07:00,1013.1964111328125,10.730392,10730.392 +19027,2025-03-09T09:36:55.850844-07:00,1013.1915893554688,10.723476,10723.476 +19028,2025-03-09T09:37:06.578969-07:00,1013.2407836914062,10.728125,10728.125 +19029,2025-03-09T09:37:17.305837-07:00,1013.23095703125,10.726868,10726.868 +19030,2025-03-09T09:37:28.038063-07:00,1013.2111206054688,10.732226,10732.226 +19031,2025-03-09T09:37:38.764347-07:00,1013.2276611328125,10.726284,10726.284 +19032,2025-03-09T09:37:49.494004-07:00,1013.2193603515625,10.729657,10729.657 +19033,2025-03-09T09:38:00.224804-07:00,1013.1995239257812,10.7308,10730.8 +19034,2025-03-09T09:38:10.948348-07:00,1013.2109375,10.723544,10723.544 +19035,2025-03-09T09:38:21.683878-07:00,1013.2125244140625,10.73553,10735.53 +19036,2025-03-09T09:38:32.411485-07:00,1013.2059326171875,10.727607,10727.607 +19037,2025-03-09T09:38:43.135803-07:00,1013.2173461914062,10.724318,10724.318 +19038,2025-03-09T09:38:53.859886-07:00,1013.2189331054688,10.724083,10724.083 +19039,2025-03-09T09:39:04.591979-07:00,1013.228759765625,10.732093,10732.093 +19040,2025-03-09T09:39:15.313894-07:00,1013.2237548828125,10.721915,10721.915 +19041,2025-03-09T09:39:26.048004-07:00,1013.220458984375,10.73411,10734.11 +19042,2025-03-09T09:39:36.776005-07:00,1013.2006225585938,10.728001,10728.001 +19043,2025-03-09T09:39:47.502904-07:00,1013.16259765625,10.726899,10726.899 +19044,2025-03-09T09:39:58.231994-07:00,1013.226806640625,10.72909,10729.09 +19045,2025-03-09T09:40:08.968830-07:00,1013.1972045898438,10.736836,10736.836 +19046,2025-03-09T09:40:19.689162-07:00,1013.1737670898438,10.720332,10720.332 +19047,2025-03-09T09:40:30.421026-07:00,1013.168701171875,10.731864,10731.864 +19048,2025-03-09T09:40:41.146803-07:00,1013.2100830078125,10.725777,10725.777 +19049,2025-03-09T09:40:51.877144-07:00,1013.1998291015625,10.730341,10730.341 +19050,2025-03-09T09:41:02.612982-07:00,1013.2230224609375,10.735838,10735.838 +19051,2025-03-09T09:41:13.334811-07:00,1013.2197875976562,10.721829,10721.829 +19052,2025-03-09T09:41:24.063988-07:00,1013.2212524414062,10.729177,10729.177 +19053,2025-03-09T09:41:34.800046-07:00,1013.2029418945312,10.736058,10736.058 +19054,2025-03-09T09:41:45.531148-07:00,1013.2146606445312,10.731102,10731.102 +19055,2025-03-09T09:41:56.254817-07:00,1013.22607421875,10.723669,10723.669 +19056,2025-03-09T09:42:06.985830-07:00,1013.24560546875,10.731013,10731.013 +19057,2025-03-09T09:42:17.715170-07:00,1013.23095703125,10.72934,10729.34 +19058,2025-03-09T09:42:28.439978-07:00,1013.2603759765625,10.724808,10724.808 +19059,2025-03-09T09:42:39.175810-07:00,1013.2966918945312,10.735832,10735.832 +19060,2025-03-09T09:42:49.908797-07:00,1013.26513671875,10.732987,10732.987 +19061,2025-03-09T09:43:00.628999-07:00,1013.28173828125,10.720202,10720.202 +19062,2025-03-09T09:43:11.358956-07:00,1013.250244140625,10.729957,10729.957 +19063,2025-03-09T09:43:22.086999-07:00,1013.2734375,10.728043,10728.043 +19064,2025-03-09T09:43:32.823986-07:00,1013.2667846679688,10.736987,10736.987 +19065,2025-03-09T09:43:43.552004-07:00,1013.2550659179688,10.728018,10728.018 +19066,2025-03-09T09:43:54.283804-07:00,1013.2532958984375,10.7318,10731.8 +19067,2025-03-09T09:44:05.013968-07:00,1013.2335205078125,10.730164,10730.164 +19068,2025-03-09T09:44:15.734581-07:00,1013.2284545898438,10.720613,10720.613 +19069,2025-03-09T09:44:26.463988-07:00,1013.2597045898438,10.729407,10729.407 +19070,2025-03-09T09:44:37.196271-07:00,1013.2548217773438,10.732283,10732.283 +19071,2025-03-09T09:44:47.927801-07:00,1013.2564086914062,10.73153,10731.53 +19072,2025-03-09T09:44:58.647967-07:00,1013.254638671875,10.720166,10720.166 +19073,2025-03-09T09:45:09.378015-07:00,1013.2282104492188,10.730048,10730.048 +19074,2025-03-09T09:45:20.109802-07:00,1013.2693481445312,10.731787,10731.787 +19075,2025-03-09T09:45:30.835366-07:00,1013.2514038085938,10.725564,10725.564 +19076,2025-03-09T09:45:41.563801-07:00,1013.2609252929688,10.728435,10728.435 +19077,2025-03-09T09:45:52.295827-07:00,1013.255859375,10.732026,10732.026 +19078,2025-03-09T09:46:03.023619-07:00,1013.2804565429688,10.727792,10727.792 +19079,2025-03-09T09:46:13.748799-07:00,1013.2592163085938,10.72518,10725.18 +19080,2025-03-09T09:46:24.485011-07:00,1013.2523193359375,10.736212,10736.212 +19081,2025-03-09T09:46:35.217007-07:00,1013.2523193359375,10.731996,10731.996 +19082,2025-03-09T09:46:45.934801-07:00,1013.2572021484375,10.717794,10717.794 +19083,2025-03-09T09:46:56.666124-07:00,1013.2787475585938,10.731323,10731.323 +19084,2025-03-09T09:47:07.401922-07:00,1013.2326049804688,10.735798,10735.798 +19085,2025-03-09T09:47:18.121020-07:00,1013.248779296875,10.719098,10719.098 +19086,2025-03-09T09:47:28.858171-07:00,1013.2572021484375,10.737151,10737.151 +19087,2025-03-09T09:47:39.582801-07:00,1013.2653198242188,10.72463,10724.63 +19088,2025-03-09T09:47:50.309804-07:00,1013.2718505859375,10.727003,10727.003 +19089,2025-03-09T09:48:01.047989-07:00,1013.2704467773438,10.738185,10738.185 +19090,2025-03-09T09:48:11.778800-07:00,1013.27197265625,10.730811,10730.811 +19091,2025-03-09T09:48:22.504246-07:00,1013.2998657226562,10.725446,10725.446 +19092,2025-03-09T09:48:33.239986-07:00,1013.2899780273438,10.73574,10735.74 +19093,2025-03-09T09:48:43.967804-07:00,1013.2701416015625,10.727818,10727.818 +19094,2025-03-09T09:48:54.697805-07:00,1013.2636108398438,10.730001,10730.001 +19095,2025-03-09T09:49:05.436876-07:00,1013.3013916015625,10.739071,10739.071 +19096,2025-03-09T09:49:16.163880-07:00,1013.3047485351562,10.727004,10727.004 +19097,2025-03-09T09:49:26.902804-07:00,1013.298095703125,10.738924,10738.924 +19098,2025-03-09T09:49:37.636949-07:00,1013.286376953125,10.734145,10734.145 +19099,2025-03-09T09:49:48.371981-07:00,1013.2930297851562,10.735032,10735.032 +19100,2025-03-09T09:49:59.102005-07:00,1013.3158569335938,10.730024,10730.024 +19101,2025-03-09T09:50:09.837872-07:00,1013.3242797851562,10.735867,10735.867 +19102,2025-03-09T09:50:20.563967-07:00,1013.2927856445312,10.726095,10726.095 +19103,2025-03-09T09:50:31.299822-07:00,1013.2810668945312,10.735855,10735.855 +19104,2025-03-09T09:50:42.034477-07:00,1013.2960815429688,10.734655,10734.655 +19105,2025-03-09T09:50:52.769802-07:00,1013.28955078125,10.735325,10735.325 +19106,2025-03-09T09:51:03.498987-07:00,1013.3057250976562,10.729185,10729.185 +19107,2025-03-09T09:51:14.231802-07:00,1013.2826538085938,10.732815,10732.815 +19108,2025-03-09T09:51:24.964836-07:00,1013.30908203125,10.733034,10733.034 +19109,2025-03-09T09:51:35.696082-07:00,1013.32373046875,10.731246,10731.246 +19110,2025-03-09T09:51:46.430070-07:00,1013.2991333007812,10.733988,10733.988 +19111,2025-03-09T09:51:57.155052-07:00,1013.3189086914062,10.724982,10724.982 +19112,2025-03-09T09:52:07.883006-07:00,1013.3087768554688,10.727954,10727.954 +19113,2025-03-09T09:52:18.618008-07:00,1013.2988891601562,10.735002,10735.002 +19114,2025-03-09T09:52:29.343811-07:00,1013.3054809570312,10.725803,10725.803 +19115,2025-03-09T09:52:40.076843-07:00,1013.3186645507812,10.733032,10733.032 +19116,2025-03-09T09:52:50.801837-07:00,1013.2937622070312,10.724994,10724.994 +19117,2025-03-09T09:53:01.534816-07:00,1013.31689453125,10.732979,10732.979 +19118,2025-03-09T09:53:12.265017-07:00,1013.3301391601562,10.730201,10730.201 +19119,2025-03-09T09:53:23.004991-07:00,1013.3331298828125,10.739974,10739.974 +19120,2025-03-09T09:53:33.732937-07:00,1013.310302734375,10.727946,10727.946 +19121,2025-03-09T09:53:44.466869-07:00,1013.3331298828125,10.733932,10733.932 +19122,2025-03-09T09:53:55.201584-07:00,1013.3283081054688,10.734715,10734.715 +19123,2025-03-09T09:54:05.933006-07:00,1013.3048706054688,10.731422,10731.422 +19124,2025-03-09T09:54:16.655318-07:00,1013.3280639648438,10.722312,10722.312 +19125,2025-03-09T09:54:27.394997-07:00,1013.3148193359375,10.739679,10739.679 +19126,2025-03-09T09:54:38.123570-07:00,1013.3211059570312,10.728573,10728.573 +19127,2025-03-09T09:54:48.857914-07:00,1013.3027954101562,10.734344,10734.344 +19128,2025-03-09T09:54:59.595010-07:00,1013.3208618164062,10.737096,10737.096 +19129,2025-03-09T09:55:10.321990-07:00,1013.3043823242188,10.72698,10726.98 +19130,2025-03-09T09:55:21.061049-07:00,1013.3209228515625,10.739059,10739.059 +19131,2025-03-09T09:55:31.786809-07:00,1013.2974853515625,10.72576,10725.76 +19132,2025-03-09T09:55:42.522011-07:00,1013.3304443359375,10.735202,10735.202 +19133,2025-03-09T09:55:53.252812-07:00,1013.315185546875,10.730801,10730.801 +19134,2025-03-09T09:56:03.991814-07:00,1013.35302734375,10.739002,10739.002 +19135,2025-03-09T09:56:14.719812-07:00,1013.3134155273438,10.727998,10727.998 +19136,2025-03-09T09:56:25.457001-07:00,1013.3082885742188,10.737189,10737.189 +19137,2025-03-09T09:56:36.188879-07:00,1013.2753295898438,10.731878,10731.878 +19138,2025-03-09T09:56:46.919851-07:00,1013.283447265625,10.730972,10730.972 +19139,2025-03-09T09:56:57.655035-07:00,1013.2684326171875,10.735184,10735.184 +19140,2025-03-09T09:57:08.378814-07:00,1013.2567138671875,10.723779,10723.779 +19141,2025-03-09T09:57:19.113812-07:00,1013.2681274414062,10.734998,10734.998 +19142,2025-03-09T09:57:29.847892-07:00,1013.2662353515625,10.73408,10734.08 +19143,2025-03-09T09:57:40.587346-07:00,1013.2714233398438,10.739454,10739.454 +19144,2025-03-09T09:57:51.320985-07:00,1013.2548217773438,10.733639,10733.639 +19145,2025-03-09T09:58:02.049814-07:00,1013.281005859375,10.728829,10728.829 +19146,2025-03-09T09:58:12.783991-07:00,1013.2909545898438,10.734177,10734.177 +19147,2025-03-09T09:58:23.520083-07:00,1013.310791015625,10.736092,10736.092 +19148,2025-03-09T09:58:34.249961-07:00,1013.302001953125,10.729878,10729.878 +19149,2025-03-09T09:58:44.975154-07:00,1013.2807006835938,10.725193,10725.193 +19150,2025-03-09T09:58:55.707862-07:00,1013.2971801757812,10.732708,10732.708 +19151,2025-03-09T09:59:06.441814-07:00,1013.2938842773438,10.733952,10733.952 +19152,2025-03-09T09:59:17.167052-07:00,1013.282470703125,10.725238,10725.238 +19153,2025-03-09T09:59:27.904990-07:00,1013.270751953125,10.737938,10737.938 +19154,2025-03-09T09:59:38.631157-07:00,1013.287353515625,10.726167,10726.167 +19155,2025-03-09T09:59:49.369813-07:00,1013.287353515625,10.738656,10738.656 +19156,2025-03-09T10:00:00.096236-07:00,1013.31201171875,10.726423,10726.423 +19157,2025-03-09T10:00:10.832958-07:00,1013.2969360351562,10.736722,10736.722 +19158,2025-03-09T10:00:21.559624-07:00,1013.2921752929688,10.726666,10726.666 +19159,2025-03-09T10:00:32.292450-07:00,1013.3002319335938,10.732826,10732.826 +19160,2025-03-09T10:00:43.017814-07:00,1013.3150024414062,10.725364,10725.364 +19161,2025-03-09T10:00:53.755894-07:00,1013.3234252929688,10.73808,10738.08 +19162,2025-03-09T10:01:04.479002-07:00,1013.3167114257812,10.723108,10723.108 +19163,2025-03-09T10:01:15.217838-07:00,1013.2999267578125,10.738836,10738.836 +19164,2025-03-09T10:01:25.951815-07:00,1013.2932739257812,10.733977,10733.977 +19165,2025-03-09T10:01:36.680083-07:00,1013.2984619140625,10.728268,10728.268 +19166,2025-03-09T10:01:47.406814-07:00,1013.2999267578125,10.726731,10726.731 +19167,2025-03-09T10:01:58.143224-07:00,1013.309814453125,10.73641,10736.41 +19168,2025-03-09T10:02:08.883814-07:00,1013.3297119140625,10.74059,10740.59 +19169,2025-03-09T10:02:19.616070-07:00,1013.3080444335938,10.732256,10732.256 +19170,2025-03-09T10:02:30.338811-07:00,1013.296630859375,10.722741,10722.741 +19171,2025-03-09T10:02:41.069016-07:00,1013.3080444335938,10.730205,10730.205 +19172,2025-03-09T10:02:51.804993-07:00,1013.3297119140625,10.735977,10735.977 +19173,2025-03-09T10:03:02.536811-07:00,1013.3378295898438,10.731818,10731.818 +19174,2025-03-09T10:03:13.272016-07:00,1013.3297119140625,10.735205,10735.205 +19175,2025-03-09T10:03:24.002078-07:00,1013.3311767578125,10.730062,10730.062 +19176,2025-03-09T10:03:34.732003-07:00,1013.3179931640625,10.729925,10729.925 +19177,2025-03-09T10:03:45.462845-07:00,1013.3245239257812,10.730842,10730.842 +19178,2025-03-09T10:03:56.194993-07:00,1013.357666015625,10.732148,10732.148 +19179,2025-03-09T10:04:06.928042-07:00,1013.3261108398438,10.733049,10733.049 +19180,2025-03-09T10:04:17.661824-07:00,1013.3543090820312,10.733782,10733.782 +19181,2025-03-09T10:04:28.393026-07:00,1013.3128051757812,10.731202,10731.202 +19182,2025-03-09T10:04:39.128897-07:00,1013.3194580078125,10.735871,10735.871 +19183,2025-03-09T10:04:49.857921-07:00,1013.3013916015625,10.729024,10729.024 +19184,2025-03-09T10:05:00.598813-07:00,1013.327880859375,10.740892,10740.892 +19185,2025-03-09T10:05:11.327999-07:00,1013.3326416015625,10.729186,10729.186 +19186,2025-03-09T10:05:22.060997-07:00,1013.3261108398438,10.732998,10732.998 +19187,2025-03-09T10:05:32.802009-07:00,1013.3261108398438,10.741012,10741.012 +19188,2025-03-09T10:05:43.538932-07:00,1013.327880859375,10.736923,10736.923 +19189,2025-03-09T10:05:54.270813-07:00,1013.314697265625,10.731881,10731.881 +19190,2025-03-09T10:06:04.995612-07:00,1013.3212280273438,10.724799,10724.799 +19191,2025-03-09T10:06:15.733816-07:00,1013.3128051757812,10.738204,10738.204 +19192,2025-03-09T10:06:26.462885-07:00,1013.3128051757812,10.729069,10729.069 +19193,2025-03-09T10:06:37.191000-07:00,1013.296630859375,10.728115,10728.115 +19194,2025-03-09T10:06:47.922234-07:00,1013.3311767578125,10.731234,10731.234 +19195,2025-03-09T10:06:58.660813-07:00,1013.3231201171875,10.738579,10738.579 +19196,2025-03-09T10:07:09.395213-07:00,1013.3378295898438,10.7344,10734.4 +19197,2025-03-09T10:07:20.120836-07:00,1013.31640625,10.725623,10725.623 +19198,2025-03-09T10:07:30.850854-07:00,1013.3013916015625,10.730018,10730.018 +19199,2025-03-09T10:07:41.584974-07:00,1013.3131103515625,10.73412,10734.12 +19200,2025-03-09T10:07:52.313807-07:00,1013.3278198242188,10.728833,10728.833 +19201,2025-03-09T10:08:03.040825-07:00,1013.314697265625,10.727018,10727.018 +19202,2025-03-09T10:08:13.777079-07:00,1013.3212280273438,10.736254,10736.254 +19203,2025-03-09T10:08:24.508769-07:00,1013.3278198242188,10.73169,10731.69 +19204,2025-03-09T10:08:35.236911-07:00,1013.3278198242188,10.728142,10728.142 +19205,2025-03-09T10:08:45.975033-07:00,1013.3035888671875,10.738122,10738.122 +19206,2025-03-09T10:08:56.706981-07:00,1013.3300170898438,10.731948,10731.948 +19207,2025-03-09T10:09:07.435811-07:00,1013.308349609375,10.72883,10728.83 +19208,2025-03-09T10:09:18.177808-07:00,1013.3150024414062,10.741997,10741.997 +19209,2025-03-09T10:09:28.913887-07:00,1013.3016967773438,10.736079,10736.079 +19210,2025-03-09T10:09:39.645029-07:00,1013.318603515625,10.731142,10731.142 +19211,2025-03-09T10:09:50.380951-07:00,1013.3052978515625,10.735922,10735.922 +19212,2025-03-09T10:10:01.112815-07:00,1013.3052978515625,10.731864,10731.864 +19213,2025-03-09T10:10:11.843044-07:00,1013.302001953125,10.730229,10730.229 +19214,2025-03-09T10:10:22.574814-07:00,1013.2938842773438,10.73177,10731.77 +19215,2025-03-09T10:10:33.310815-07:00,1013.3153076171875,10.736001,10736.001 +19216,2025-03-09T10:10:44.042830-07:00,1013.3153076171875,10.732015,10732.015 +19217,2025-03-09T10:10:54.769527-07:00,1013.2938842773438,10.726697,10726.697 +19218,2025-03-09T10:11:05.499811-07:00,1013.3336181640625,10.730284,10730.284 +19219,2025-03-09T10:11:16.230238-07:00,1013.313720703125,10.730427,10730.427 +19220,2025-03-09T10:11:26.962993-07:00,1013.3119506835938,10.732755,10732.755 +19221,2025-03-09T10:11:37.694014-07:00,1013.318603515625,10.731021,10731.021 +19222,2025-03-09T10:11:48.429324-07:00,1013.3023681640625,10.73531,10735.31 +19223,2025-03-09T10:11:59.152174-07:00,1013.3384399414062,10.72285,10722.85 +19224,2025-03-09T10:12:09.882021-07:00,1013.3222045898438,10.729847,10729.847 +19225,2025-03-09T10:12:20.618914-07:00,1013.3052978515625,10.736893,10736.893 +19226,2025-03-09T10:12:31.354109-07:00,1013.3236694335938,10.735195,10735.195 +19227,2025-03-09T10:12:42.083811-07:00,1013.3156127929688,10.729702,10729.702 +19228,2025-03-09T10:12:52.812840-07:00,1013.3156127929688,10.729029,10729.029 +19229,2025-03-09T10:13:03.541734-07:00,1013.3170166015625,10.728894,10728.894 +19230,2025-03-09T10:13:14.273811-07:00,1013.3203125,10.732077,10732.077 +19231,2025-03-09T10:13:25.006587-07:00,1013.3251342773438,10.732776,10732.776 +19232,2025-03-09T10:13:35.731984-07:00,1013.3203125,10.725397,10725.397 +19233,2025-03-09T10:13:46.465877-07:00,1013.318603515625,10.733893,10733.893 +19234,2025-03-09T10:13:57.192806-07:00,1013.3170166015625,10.726929,10726.929 +19235,2025-03-09T10:14:07.928993-07:00,1013.3648681640625,10.736187,10736.187 +19236,2025-03-09T10:14:18.660837-07:00,1013.3713989257812,10.731844,10731.844 +19237,2025-03-09T10:14:29.390000-07:00,1013.3368530273438,10.729163,10729.163 +19238,2025-03-09T10:14:40.125220-07:00,1013.3350830078125,10.73522,10735.22 +19239,2025-03-09T10:14:50.848879-07:00,1013.3417358398438,10.723659,10723.659 +19240,2025-03-09T10:15:01.582569-07:00,1013.3269653320312,10.73369,10733.69 +19241,2025-03-09T10:15:12.305912-07:00,1013.3336181640625,10.723343,10723.343 +19242,2025-03-09T10:15:23.031886-07:00,1013.3386840820312,10.725974,10725.974 +19243,2025-03-09T10:15:33.755020-07:00,1013.3453369140625,10.723134,10723.134 +19244,2025-03-09T10:15:44.487928-07:00,1013.3419799804688,10.732908,10732.908 +19245,2025-03-09T10:15:55.217813-07:00,1013.3534545898438,10.729885,10729.885 +19246,2025-03-09T10:16:05.941245-07:00,1013.3287353515625,10.723432,10723.432 +19247,2025-03-09T10:16:16.667974-07:00,1013.3485717773438,10.726729,10726.729 +19248,2025-03-09T10:16:27.398846-07:00,1013.3323364257812,10.730872,10730.872 +19249,2025-03-09T10:16:38.119809-07:00,1013.3258056640625,10.720963,10720.963 +19250,2025-03-09T10:16:48.847814-07:00,1013.3173217773438,10.728005,10728.005 +19251,2025-03-09T10:16:59.575201-07:00,1013.292724609375,10.727387,10727.387 +19252,2025-03-09T10:17:10.303028-07:00,1013.3473510742188,10.727827,10727.827 +19253,2025-03-09T10:17:21.024026-07:00,1013.292724609375,10.720998,10720.998 +19254,2025-03-09T10:17:31.752224-07:00,1013.334228515625,10.728198,10728.198 +19255,2025-03-09T10:17:42.483880-07:00,1013.3258056640625,10.731656,10731.656 +19256,2025-03-09T10:17:53.213973-07:00,1013.3095092773438,10.730093,10730.093 +19257,2025-03-09T10:18:03.934844-07:00,1013.3161010742188,10.720871,10720.871 +19258,2025-03-09T10:18:14.658520-07:00,1013.2996215820312,10.723676,10723.676 +19259,2025-03-09T10:18:25.385327-07:00,1013.3077392578125,10.726807,10726.807 +19260,2025-03-09T10:18:36.116991-07:00,1013.2945556640625,10.731664,10731.664 +19261,2025-03-09T10:18:46.842040-07:00,1013.2945556640625,10.725049,10725.049 +19262,2025-03-09T10:18:57.572813-07:00,1013.29296875,10.730773,10730.773 +19263,2025-03-09T10:19:08.310809-07:00,1013.2996215820312,10.737996,10737.996 +19264,2025-03-09T10:19:19.034939-07:00,1013.2896728515625,10.72413,10724.13 +19265,2025-03-09T10:19:29.770978-07:00,1013.2470092773438,10.736039,10736.039 +19266,2025-03-09T10:19:40.501810-07:00,1013.2896728515625,10.730832,10730.832 +19267,2025-03-09T10:19:51.223223-07:00,1013.3179931640625,10.721413,10721.413 +19268,2025-03-09T10:20:01.954811-07:00,1013.2963256835938,10.731588,10731.588 +19269,2025-03-09T10:20:12.684010-07:00,1013.3212280273438,10.729199,10729.199 +19270,2025-03-09T10:20:23.422289-07:00,1013.2867431640625,10.738279,10738.279 +19271,2025-03-09T10:20:34.149885-07:00,1013.2918701171875,10.727596,10727.596 +19272,2025-03-09T10:20:44.882811-07:00,1013.30322265625,10.732926,10732.926 +19273,2025-03-09T10:20:55.616809-07:00,1013.309814453125,10.733998,10733.998 +19274,2025-03-09T10:21:17.082812-07:00,1013.3297119140625,21.466003,21466.003 +19275,2025-03-09T10:21:27.813290-07:00,1013.2984619140625,10.730478,10730.478 +19276,2025-03-09T10:21:38.535811-07:00,1013.2984619140625,10.722521,10722.521 +19277,2025-03-09T10:21:49.263813-07:00,1013.3248291015625,10.728002,10728.002 +19278,2025-03-09T10:21:59.997054-07:00,1013.3035278320312,10.733241,10733.241 +19279,2025-03-09T10:22:10.724850-07:00,1013.2954711914062,10.727796,10727.796 +19280,2025-03-09T10:22:20.343698-07:00,1013.2935791015625,9.618848,9618.848 +19281,2025-03-09T10:22:21.458013-07:00,1013.3068237304688,1.114315,1114.315 +19282,2025-03-09T10:22:32.191041-07:00,1013.3350219726562,10.733028,10733.028 +19283,2025-03-09T10:22:42.911814-07:00,1013.346435546875,10.720773,10720.773 +19284,2025-03-09T10:22:53.640111-07:00,1013.3449096679688,10.728297,10728.297 +19285,2025-03-09T10:23:04.367952-07:00,1013.3515625,10.727841,10727.841 +19286,2025-03-09T10:23:15.107019-07:00,1013.3170166015625,10.739067,10739.067 +19287,2025-03-09T10:23:25.835859-07:00,1013.3350219726562,10.72884,10728.84 +19288,2025-03-09T10:23:36.564978-07:00,1013.3203125,10.729119,10729.119 +19289,2025-03-09T10:23:47.286010-07:00,1013.326904296875,10.721032,10721.032 +19290,2025-03-09T10:23:58.013940-07:00,1013.338623046875,10.72793,10727.93 +19291,2025-03-09T10:24:08.744813-07:00,1013.33349609375,10.730873,10730.873 +19292,2025-03-09T10:24:19.472879-07:00,1013.3173217773438,10.728066,10728.066 +19293,2025-03-09T10:24:30.200974-07:00,1013.325439453125,10.728095,10728.095 +19294,2025-03-09T10:24:40.939011-07:00,1013.33203125,10.738037,10738.037 +19295,2025-03-09T10:24:51.657813-07:00,1013.31884765625,10.718802,10718.802 +19296,2025-03-09T10:25:02.392984-07:00,1013.3239135742188,10.735171,10735.171 +19297,2025-03-09T10:25:13.119838-07:00,1013.30224609375,10.726854,10726.854 +19298,2025-03-09T10:25:23.849990-07:00,1013.3239135742188,10.730152,10730.152 +19299,2025-03-09T10:25:34.581204-07:00,1013.30078125,10.731214,10731.214 +19300,2025-03-09T10:25:45.301956-07:00,1013.30078125,10.720752,10720.752 +19301,2025-03-09T10:25:56.034812-07:00,1013.32568359375,10.732856,10732.856 +19302,2025-03-09T10:26:06.764941-07:00,1013.3404541015625,10.730129,10730.129 +19303,2025-03-09T10:26:17.492816-07:00,1013.3125,10.727875,10727.875 +19304,2025-03-09T10:26:28.214117-07:00,1013.3389282226562,10.721301,10721.301 +19305,2025-03-09T10:26:38.941883-07:00,1013.3106079101562,10.727766,10727.766 +19306,2025-03-09T10:26:49.673992-07:00,1013.3092041015625,10.732109,10732.109 +19307,2025-03-09T10:27:00.398839-07:00,1013.3025512695312,10.724847,10724.847 +19308,2025-03-09T10:27:11.135806-07:00,1013.3157958984375,10.736967,10736.967 +19309,2025-03-09T10:27:21.863809-07:00,1013.3304443359375,10.728003,10728.003 +19310,2025-03-09T10:27:32.592807-07:00,1013.3142700195312,10.728998,10728.998 +19311,2025-03-09T10:27:43.320839-07:00,1013.3256225585938,10.728032,10728.032 +19312,2025-03-09T10:27:54.056012-07:00,1013.3076782226562,10.735173,10735.173 +19313,2025-03-09T10:28:04.781880-07:00,1013.3125,10.725868,10725.868 +19314,2025-03-09T10:28:15.508816-07:00,1013.2977905273438,10.726936,10726.936 +19315,2025-03-09T10:28:26.233009-07:00,1013.3406982421875,10.724193,10724.193 +19316,2025-03-09T10:28:36.964811-07:00,1013.3125,10.731802,10731.802 +19317,2025-03-09T10:28:47.694813-07:00,1013.3094482421875,10.730002,10730.002 +19318,2025-03-09T10:28:58.417186-07:00,1013.3275146484375,10.722373,10722.373 +19319,2025-03-09T10:29:09.141810-07:00,1013.3076782226562,10.724624,10724.624 +19320,2025-03-09T10:29:19.866819-07:00,1013.3060913085938,10.725009,10725.009 +19321,2025-03-09T10:29:30.584813-07:00,1013.2962646484375,10.717994,10717.994 +19322,2025-03-09T10:29:41.307019-07:00,1013.311279296875,10.722206,10722.206 +19323,2025-03-09T10:29:52.035875-07:00,1013.280029296875,10.728856,10728.856 +19324,2025-03-09T10:30:02.751082-07:00,1013.291748046875,10.715207,10715.207 +19325,2025-03-09T10:30:13.481015-07:00,1013.2884521484375,10.729933,10729.933 +19326,2025-03-09T10:30:24.197615-07:00,1013.2770385742188,10.7166,10716.6 +19327,2025-03-09T10:30:33.150431-07:00,1013.2968139648438,8.952816,8952.816 +19328,2025-03-09T10:30:34.926846-07:00,1013.2835693359375,1.776415,1776.415 +19329,2025-03-09T10:30:45.644981-07:00,1013.2787475585938,10.718135,10718.135 +19330,2025-03-09T10:30:56.372304-07:00,1013.3036499023438,10.727323,10727.323 +19331,2025-03-09T10:31:07.093887-07:00,1013.280517578125,10.721583,10721.583 +19332,2025-03-09T10:31:17.813922-07:00,1013.2823486328125,10.720035,10720.035 +19333,2025-03-09T10:31:28.536815-07:00,1013.3156127929688,10.722893,10722.893 +19334,2025-03-09T10:31:39.264811-07:00,1013.2943115234375,10.727996,10727.996 +19335,2025-03-09T10:31:49.995175-07:00,1013.3047485351562,10.730364,10730.364 +19336,2025-03-09T10:32:00.719966-07:00,1013.283447265625,10.724791,10724.791 +19337,2025-03-09T10:32:11.439813-07:00,1013.28515625,10.719847,10719.847 +19338,2025-03-09T10:32:22.164998-07:00,1013.3184204101562,10.725185,10725.185 +19339,2025-03-09T10:32:32.892020-07:00,1013.30029296875,10.727022,10727.022 +19340,2025-03-09T10:32:43.612043-07:00,1013.27783203125,10.720023,10720.023 +19341,2025-03-09T10:32:54.339811-07:00,1013.2960205078125,10.727768,10727.768 +19342,2025-03-09T10:33:05.066007-07:00,1013.32421875,10.726196,10726.196 +19343,2025-03-09T10:33:15.792982-07:00,1013.3163452148438,10.726975,10726.975 +19344,2025-03-09T10:33:26.513842-07:00,1013.3214111328125,10.72086,10720.86 +19345,2025-03-09T10:33:37.236150-07:00,1013.3510131835938,10.722308,10722.308 +19346,2025-03-09T10:33:47.963103-07:00,1013.3016967773438,10.726953,10726.953 +19347,2025-03-09T10:33:58.673852-07:00,1013.3104858398438,10.710749,10710.749 +19348,2025-03-09T10:34:09.395547-07:00,1013.3154907226562,10.721695,10721.695 +19349,2025-03-09T10:34:20.122906-07:00,1013.3384399414062,10.727359,10727.359 +19350,2025-03-09T10:34:30.846910-07:00,1013.3255615234375,10.724004,10724.004 +19351,2025-03-09T10:34:41.564810-07:00,1013.2979125976562,10.7179,10717.9 +19352,2025-03-09T10:34:52.291809-07:00,1013.3045043945312,10.726999,10726.999 +19353,2025-03-09T10:35:03.013080-07:00,1013.3259887695312,10.721271,10721.271 +19354,2025-03-09T10:35:13.738882-07:00,1013.2962646484375,10.725802,10725.802 +19355,2025-03-09T10:35:24.463993-07:00,1013.2832641601562,10.725111,10725.111 +19356,2025-03-09T10:35:35.181864-07:00,1013.3163452148438,10.717871,10717.871 +19357,2025-03-09T10:35:45.908016-07:00,1013.3163452148438,10.726152,10726.152 +19358,2025-03-09T10:35:56.628004-07:00,1013.2982788085938,10.719988,10719.988 +19359,2025-03-09T10:36:07.348664-07:00,1013.3165893554688,10.72066,10720.66 +19360,2025-03-09T10:36:18.073011-07:00,1013.30810546875,10.724347,10724.347 +19361,2025-03-09T10:36:28.797993-07:00,1013.2523193359375,10.724982,10724.982 +19362,2025-03-09T10:36:39.532413-07:00,1013.2787475585938,10.73442,10734.42 +19363,2025-03-09T10:36:50.249316-07:00,1013.2985229492188,10.716903,10716.903 +19364,2025-03-09T10:37:00.980508-07:00,1013.275390625,10.731192,10731.192 +19365,2025-03-09T10:37:11.700819-07:00,1013.2687377929688,10.720311,10720.311 +19366,2025-03-09T10:37:22.417106-07:00,1013.2720336914062,10.716287,10716.287 +19367,2025-03-09T10:37:33.141899-07:00,1013.295166015625,10.724793,10724.793 +19368,2025-03-09T10:37:43.865810-07:00,1013.2522583007812,10.723911,10723.911 +19369,2025-03-09T10:37:54.585814-07:00,1013.255615234375,10.720004,10720.004 +19370,2025-03-09T10:38:05.314408-07:00,1013.240966796875,10.728594,10728.594 +19371,2025-03-09T10:38:16.036812-07:00,1013.2820434570312,10.722404,10722.404 +19372,2025-03-09T10:38:26.755280-07:00,1013.2540893554688,10.718468,10718.468 +19373,2025-03-09T10:38:37.483016-07:00,1013.2489624023438,10.727736,10727.736 +19374,2025-03-09T10:38:48.209018-07:00,1013.2373657226562,10.726002,10726.002 +19375,2025-03-09T10:38:58.929958-07:00,1013.2686157226562,10.72094,10720.94 +19376,2025-03-09T10:39:09.653976-07:00,1013.2553100585938,10.724018,10724.018 +19377,2025-03-09T10:39:20.378806-07:00,1013.2572021484375,10.72483,10724.83 +19378,2025-03-09T10:39:31.097952-07:00,1013.2653198242188,10.719146,10719.146 +19379,2025-03-09T10:39:41.823813-07:00,1013.255126953125,10.725861,10725.861 +19380,2025-03-09T10:39:52.545018-07:00,1013.26171875,10.721205,10721.205 +19381,2025-03-09T10:40:03.261811-07:00,1013.2832641601562,10.716793,10716.793 +19382,2025-03-09T10:40:13.992825-07:00,1013.2518920898438,10.731014,10731.014 +19383,2025-03-09T10:40:24.715033-07:00,1013.2815551757812,10.722208,10722.208 +19384,2025-03-09T10:40:35.441812-07:00,1013.2764892578125,10.726779,10726.779 +19385,2025-03-09T10:40:46.162919-07:00,1013.2581787109375,10.721107,10721.107 +19386,2025-03-09T10:40:56.888009-07:00,1013.25341796875,10.72509,10725.09 +19387,2025-03-09T10:41:07.609627-07:00,1013.25341796875,10.721618,10721.618 +19388,2025-03-09T10:41:18.333816-07:00,1013.2630615234375,10.724189,10724.189 +19389,2025-03-09T10:41:29.062886-07:00,1013.2745361328125,10.72907,10729.07 +19390,2025-03-09T10:41:39.789812-07:00,1013.2763061523438,10.726926,10726.926 +19391,2025-03-09T10:41:50.508957-07:00,1013.271240234375,10.719145,10719.145 +19392,2025-03-09T10:42:01.244981-07:00,1013.259521484375,10.736024,10736.024 +19393,2025-03-09T10:42:11.968876-07:00,1013.25927734375,10.723895,10723.895 +19394,2025-03-09T10:42:22.697305-07:00,1013.252685546875,10.728429,10728.429 +19395,2025-03-09T10:42:33.422021-07:00,1013.2743530273438,10.724716,10724.716 +19396,2025-03-09T10:42:44.148814-07:00,1013.2872924804688,10.726793,10726.793 +19397,2025-03-09T10:42:54.873960-07:00,1013.2608642578125,10.725146,10725.146 +19398,2025-03-09T10:43:05.596135-07:00,1013.2425537109375,10.722175,10722.175 +19399,2025-03-09T10:43:16.327989-07:00,1013.259033203125,10.731854,10731.854 +19400,2025-03-09T10:43:27.046813-07:00,1013.2606201171875,10.718824,10718.824 +19401,2025-03-09T10:43:37.774202-07:00,1013.2818603515625,10.727389,10727.389 +19402,2025-03-09T10:43:48.507840-07:00,1013.290283203125,10.733638,10733.638 +19403,2025-03-09T10:43:59.226990-07:00,1013.2801513671875,10.71915,10719.15 +19404,2025-03-09T10:44:09.958862-07:00,1013.2603759765625,10.731872,10731.872 +19405,2025-03-09T10:44:20.683855-07:00,1013.2820434570312,10.724993,10724.993 +19406,2025-03-09T10:44:31.415814-07:00,1013.2915649414062,10.731959,10731.959 +19407,2025-03-09T10:44:42.143941-07:00,1013.260498046875,10.728127,10728.127 +19408,2025-03-09T10:44:52.872810-07:00,1013.2686157226562,10.728869,10728.869 +19409,2025-03-09T10:45:03.594384-07:00,1013.2653198242188,10.721574,10721.574 +19410,2025-03-09T10:45:14.323812-07:00,1013.2667846679688,10.729428,10729.428 +19411,2025-03-09T10:45:25.050821-07:00,1013.2767333984375,10.727009,10727.009 +19412,2025-03-09T10:45:35.783017-07:00,1013.2701416015625,10.732196,10732.196 +19413,2025-03-09T10:45:46.505872-07:00,1013.2650146484375,10.722855,10722.855 +19414,2025-03-09T10:45:57.235049-07:00,1013.2764282226562,10.729177,10729.177 +19415,2025-03-09T10:46:07.961816-07:00,1013.2794799804688,10.726767,10726.767 +19416,2025-03-09T10:46:18.694837-07:00,1013.2662353515625,10.733021,10733.021 +19417,2025-03-09T10:46:29.420087-07:00,1013.2695922851562,10.72525,10725.25 +19418,2025-03-09T10:46:40.148029-07:00,1013.27294921875,10.727942,10727.942 +19419,2025-03-09T10:46:50.876005-07:00,1013.24658203125,10.727976,10727.976 +19420,2025-03-09T10:47:01.603812-07:00,1013.254638671875,10.727807,10727.807 +19421,2025-03-09T10:47:12.326024-07:00,1013.26611328125,10.722212,10722.212 +19422,2025-03-09T10:47:23.050862-07:00,1013.2117309570312,10.724838,10724.838 +19423,2025-03-09T10:47:33.782892-07:00,1013.2411499023438,10.73203,10732.03 +19424,2025-03-09T10:47:44.516999-07:00,1013.2576293945312,10.734107,10734.107 +19425,2025-03-09T10:47:55.242953-07:00,1013.2327880859375,10.725954,10725.954 +19426,2025-03-09T10:48:05.967883-07:00,1013.2574462890625,10.72493,10724.93 +19427,2025-03-09T10:48:16.701811-07:00,1013.240966796875,10.733928,10733.928 +19428,2025-03-09T10:48:27.430870-07:00,1013.2013549804688,10.729059,10729.059 +19429,2025-03-09T10:48:38.158815-07:00,1013.255615234375,10.727945,10727.945 +19430,2025-03-09T10:48:48.886014-07:00,1013.273681640625,10.727199,10727.199 +19431,2025-03-09T10:48:59.617921-07:00,1013.2670288085938,10.731907,10731.907 +19432,2025-03-09T10:49:10.343111-07:00,1013.235595703125,10.72519,10725.19 +19433,2025-03-09T10:49:21.072019-07:00,1013.1878051757812,10.728908,10728.908 +19434,2025-03-09T10:49:31.792845-07:00,1013.2176513671875,10.720826,10720.826 +19435,2025-03-09T10:49:42.526679-07:00,1013.2125244140625,10.733834,10733.834 +19436,2025-03-09T10:49:53.253876-07:00,1013.2157592773438,10.727197,10727.197 +19437,2025-03-09T10:50:03.977813-07:00,1013.2044677734375,10.723937,10723.937 +19438,2025-03-09T10:50:14.710986-07:00,1013.1942138671875,10.733173,10733.173 +19439,2025-03-09T10:50:25.440811-07:00,1013.2107543945312,10.729825,10729.825 +19440,2025-03-09T10:50:36.168013-07:00,1013.189208984375,10.727202,10727.202 +19441,2025-03-09T10:50:46.890841-07:00,1013.22705078125,10.722828,10722.828 +19442,2025-03-09T10:50:57.624390-07:00,1013.1903686523438,10.733549,10733.549 +19443,2025-03-09T10:51:08.347012-07:00,1013.2366943359375,10.722622,10722.622 +19444,2025-03-09T10:51:19.078001-07:00,1013.1986083984375,10.730989,10730.989 +19445,2025-03-09T10:51:29.811811-07:00,1013.190185546875,10.73381,10733.81 +19446,2025-03-09T10:51:40.540205-07:00,1013.2015380859375,10.728394,10728.394 +19447,2025-03-09T10:51:51.270443-07:00,1013.1964721679688,10.730238,10730.238 +19448,2025-03-09T10:52:01.998887-07:00,1013.19140625,10.728444,10728.444 +19449,2025-03-09T10:52:12.718850-07:00,1013.1943969726562,10.719963,10719.963 +19450,2025-03-09T10:52:23.455397-07:00,1013.1793823242188,10.736547,10736.547 +19451,2025-03-09T10:52:34.192645-07:00,1013.2125244140625,10.737248,10737.248 +19452,2025-03-09T10:52:44.918389-07:00,1013.179443359375,10.725744,10725.744 +19453,2025-03-09T10:52:55.649392-07:00,1013.198974609375,10.731003,10731.003 +19454,2025-03-09T10:53:06.378556-07:00,1013.1839599609375,10.729164,10729.164 +19455,2025-03-09T10:53:17.102457-07:00,1013.2101440429688,10.723901,10723.901 +19456,2025-03-09T10:53:27.831583-07:00,1013.2149047851562,10.729126,10729.126 +19457,2025-03-09T10:53:38.558465-07:00,1013.1851806640625,10.726882,10726.882 +19458,2025-03-09T10:53:49.286391-07:00,1013.216064453125,10.727926,10727.926 +19459,2025-03-09T10:54:00.021545-07:00,1013.216064453125,10.735154,10735.154 +19460,2025-03-09T10:54:10.751730-07:00,1013.2095336914062,10.730185,10730.185 +19461,2025-03-09T10:54:21.471457-07:00,1013.1860961914062,10.719727,10719.727 +19462,2025-03-09T10:54:32.208140-07:00,1013.18798828125,10.736683,10736.683 +19463,2025-03-09T10:54:42.936682-07:00,1013.197509765625,10.728542,10728.542 +19464,2025-03-09T10:54:53.657394-07:00,1013.1927490234375,10.720712,10720.712 +19465,2025-03-09T10:55:04.391715-07:00,1013.228759765625,10.734321,10734.321 +19466,2025-03-09T10:55:15.111790-07:00,1013.21044921875,10.720075,10720.075 +19467,2025-03-09T10:55:25.845340-07:00,1013.1939086914062,10.73355,10733.55 +19468,2025-03-09T10:55:36.573532-07:00,1013.217041015625,10.728192,10728.192 +19469,2025-03-09T10:55:47.304390-07:00,1013.2002563476562,10.730858,10730.858 +19470,2025-03-09T10:55:58.025587-07:00,1013.2134399414062,10.721197,10721.197 +19471,2025-03-09T10:56:08.766624-07:00,1013.224853515625,10.741037,10741.037 +19472,2025-03-09T10:56:19.492424-07:00,1013.2200927734375,10.7258,10725.8 +19473,2025-03-09T10:56:30.216579-07:00,1013.2150268554688,10.724155,10724.155 +19474,2025-03-09T10:56:40.946813-07:00,1013.2461547851562,10.730234,10730.234 +19475,2025-03-09T10:56:51.671384-07:00,1013.2410888671875,10.724571,10724.571 +19476,2025-03-09T10:57:02.396687-07:00,1013.2245483398438,10.725303,10725.303 +19477,2025-03-09T10:57:13.129509-07:00,1013.2029418945312,10.732822,10732.822 +19478,2025-03-09T10:57:23.857571-07:00,1013.2113037109375,10.728062,10728.062 +19479,2025-03-09T10:57:34.584412-07:00,1013.22607421875,10.726841,10726.841 +19480,2025-03-09T10:57:45.320275-07:00,1013.2146606445312,10.735863,10735.863 +19481,2025-03-09T10:57:56.046561-07:00,1013.201416015625,10.726286,10726.286 +19482,2025-03-09T10:58:06.779425-07:00,1013.201416015625,10.732864,10732.864 +19483,2025-03-09T10:58:17.503823-07:00,1013.2279052734375,10.724398,10724.398 +19484,2025-03-09T10:58:28.232792-07:00,1013.1782836914062,10.728969,10728.969 +19485,2025-03-09T10:58:38.955391-07:00,1013.19482421875,10.722599,10722.599 +19486,2025-03-09T10:58:49.681685-07:00,1013.2033081054688,10.726294,10726.294 +19487,2025-03-09T10:59:00.412539-07:00,1013.2080688476562,10.730854,10730.854 +19488,2025-03-09T10:59:11.138930-07:00,1013.2179565429688,10.726391,10726.391 +19489,2025-03-09T10:59:21.871789-07:00,1013.1966552734375,10.732859,10732.859 +19490,2025-03-09T10:59:32.601389-07:00,1013.2047729492188,10.7296,10729.6 +19491,2025-03-09T10:59:43.328153-07:00,1013.2179565429688,10.726764,10726.764 +19492,2025-03-09T10:59:54.048392-07:00,1013.2164916992188,10.720239,10720.239 +19493,2025-03-09T11:00:04.785421-07:00,1013.1900024414062,10.737029,10737.029 +19494,2025-03-09T11:00:15.505700-07:00,1013.2128295898438,10.720279,10720.279 +19495,2025-03-09T11:00:26.237807-07:00,1013.2179565429688,10.732107,10732.107 +19496,2025-03-09T11:00:36.964465-07:00,1013.2062377929688,10.726658,10726.658 +19497,2025-03-09T11:00:47.690582-07:00,1013.219482421875,10.726117,10726.117 +19498,2025-03-09T11:00:58.414593-07:00,1013.2279052734375,10.724011,10724.011 +19499,2025-03-09T11:01:09.137693-07:00,1013.2212524414062,10.7231,10723.1 +19500,2025-03-09T11:01:19.862457-07:00,1013.2146606445312,10.724764,10724.764 +19501,2025-03-09T11:01:30.597392-07:00,1013.2212524414062,10.734935,10734.935 +19502,2025-03-09T11:01:41.315603-07:00,1013.2146606445312,10.718211,10718.211 +19503,2025-03-09T11:01:52.048462-07:00,1013.2146606445312,10.732859,10732.859 +19504,2025-03-09T11:02:02.771916-07:00,1013.2228393554688,10.723454,10723.454 +19505,2025-03-09T11:02:13.499676-07:00,1013.2425537109375,10.72776,10727.76 +19506,2025-03-09T11:02:24.228392-07:00,1013.2384643554688,10.728716,10728.716 +19507,2025-03-09T11:02:34.960418-07:00,1013.2146606445312,10.732026,10732.026 +19508,2025-03-09T11:02:45.681636-07:00,1013.2179565429688,10.721218,10721.218 +19509,2025-03-09T11:02:56.407839-07:00,1013.2242431640625,10.726203,10726.203 +19510,2025-03-09T11:03:07.137392-07:00,1013.26904296875,10.729553,10729.553 +19511,2025-03-09T11:03:17.866600-07:00,1013.2279052734375,10.729208,10729.208 +19512,2025-03-09T11:03:28.590389-07:00,1013.2080688476562,10.723789,10723.789 +19513,2025-03-09T11:03:39.317570-07:00,1013.2062377929688,10.727181,10727.181 +19514,2025-03-09T11:03:50.046779-07:00,1013.2279052734375,10.729209,10729.209 +19515,2025-03-09T11:04:00.779415-07:00,1013.19970703125,10.732636,10732.636 +19516,2025-03-09T11:04:11.501391-07:00,1013.22607421875,10.721976,10721.976 +19517,2025-03-09T11:04:22.226733-07:00,1013.22607421875,10.725342,10725.342 +19518,2025-03-09T11:04:32.957387-07:00,1013.2179565429688,10.730654,10730.654 +19519,2025-03-09T11:04:43.679716-07:00,1013.2212524414062,10.722329,10722.329 +19520,2025-03-09T11:04:54.406741-07:00,1013.21142578125,10.727025,10727.025 +19521,2025-03-09T11:05:05.140392-07:00,1013.1966552734375,10.733651,10733.651 +19522,2025-03-09T11:05:15.874592-07:00,1013.1966552734375,10.7342,10734.2 +19523,2025-03-09T11:05:26.601389-07:00,1013.2164916992188,10.726797,10726.797 +19524,2025-03-09T11:05:37.329617-07:00,1013.2033081054688,10.728228,10728.228 +19525,2025-03-09T11:05:48.052394-07:00,1013.2098388671875,10.722777,10722.777 +19526,2025-03-09T11:05:58.781500-07:00,1013.1882934570312,10.729106,10729.106 +19527,2025-03-09T11:06:09.511475-07:00,1013.201416015625,10.729975,10729.975 +19528,2025-03-09T11:06:20.237392-07:00,1013.2146606445312,10.725917,10725.917 +19529,2025-03-09T11:06:30.971544-07:00,1013.2080688476562,10.734152,10734.152 +19530,2025-03-09T11:06:41.695361-07:00,1013.1915893554688,10.723817,10723.817 +19531,2025-03-09T11:06:52.420387-07:00,1013.18310546875,10.725026,10725.026 +19532,2025-03-09T11:07:03.151017-07:00,1013.1981201171875,10.73063,10730.63 +19533,2025-03-09T11:07:13.878423-07:00,1013.19482421875,10.727406,10727.406 +19534,2025-03-09T11:07:24.603589-07:00,1013.1735229492188,10.725166,10725.166 +19535,2025-03-09T11:07:35.340137-07:00,1013.188232421875,10.736548,10736.548 +19536,2025-03-09T11:07:46.063394-07:00,1013.19482421875,10.723257,10723.257 +19537,2025-03-09T11:07:56.789682-07:00,1013.1932983398438,10.726288,10726.288 +19538,2025-03-09T11:08:07.518416-07:00,1013.1735229492188,10.728734,10728.734 +19539,2025-03-09T11:08:18.243393-07:00,1013.1785888671875,10.724977,10724.977 +19540,2025-03-09T11:08:28.978576-07:00,1013.1852416992188,10.735183,10735.183 +19541,2025-03-09T11:08:39.693739-07:00,1013.1900024414062,10.715163,10715.163 +19542,2025-03-09T11:08:50.427461-07:00,1013.1554565429688,10.733722,10733.722 +19543,2025-03-09T11:09:01.149690-07:00,1013.1554565429688,10.722229,10722.229 +19544,2025-03-09T11:09:11.869602-07:00,1013.14404296875,10.719912,10719.912 +19545,2025-03-09T11:09:22.593386-07:00,1013.11767578125,10.723784,10723.784 +19546,2025-03-09T11:09:33.328590-07:00,1013.1143798828125,10.735204,10735.204 +19547,2025-03-09T11:09:44.046573-07:00,1013.1506958007812,10.717983,10717.983 +19548,2025-03-09T11:09:54.775388-07:00,1013.12939453125,10.728815,10728.815 +19549,2025-03-09T11:10:05.502804-07:00,1013.122802734375,10.727416,10727.416 +19550,2025-03-09T11:10:16.227389-07:00,1013.15576171875,10.724585,10724.585 +19551,2025-03-09T11:10:26.953390-07:00,1013.1359252929688,10.726001,10726.001 +19552,2025-03-09T11:10:37.679337-07:00,1013.1194458007812,10.725947,10725.947 +19553,2025-03-09T11:10:48.402459-07:00,1013.11279296875,10.723122,10723.122 +19554,2025-03-09T11:10:59.129561-07:00,1013.12451171875,10.727102,10727.102 +19555,2025-03-09T11:11:09.860394-07:00,1013.1311645507812,10.730833,10730.833 +19556,2025-03-09T11:11:20.582392-07:00,1013.12939453125,10.721998,10721.998 +19557,2025-03-09T11:11:31.302391-07:00,1013.142578125,10.719999,10719.999 +19558,2025-03-09T11:11:42.032679-07:00,1013.1395263671875,10.730288,10730.288 +19559,2025-03-09T11:11:52.758585-07:00,1013.1609497070312,10.725906,10725.906 +19560,2025-03-09T11:12:03.485931-07:00,1013.1197509765625,10.727346,10727.346 +19561,2025-03-09T11:12:14.211624-07:00,1013.15283203125,10.725693,10725.693 +19562,2025-03-09T11:12:24.933508-07:00,1013.1311645507812,10.721884,10721.884 +19563,2025-03-09T11:12:35.659594-07:00,1013.1179809570312,10.726086,10726.086 +19564,2025-03-09T11:12:46.375485-07:00,1013.1443481445312,10.715891,10715.891 +19565,2025-03-09T11:12:57.103384-07:00,1013.1311645507812,10.727899,10727.899 +19566,2025-03-09T11:13:07.832698-07:00,1013.114990234375,10.729314,10729.314 +19567,2025-03-09T11:13:18.556594-07:00,1013.1311645507812,10.723896,10723.896 +19568,2025-03-09T11:13:29.273390-07:00,1013.1495361328125,10.716796,10716.796 +19569,2025-03-09T11:13:39.999402-07:00,1013.1560668945312,10.726012,10726.012 +19570,2025-03-09T11:13:50.727568-07:00,1013.1163940429688,10.728166,10728.166 +19571,2025-03-09T11:14:01.449422-07:00,1013.100341796875,10.721854,10721.854 +19572,2025-03-09T11:14:12.169576-07:00,1013.12158203125,10.720154,10720.154 +19573,2025-03-09T11:14:22.887392-07:00,1013.1134643554688,10.717816,10717.816 +19574,2025-03-09T11:14:33.615940-07:00,1013.1068725585938,10.728548,10728.548 +19575,2025-03-09T11:14:44.341390-07:00,1013.0935668945312,10.72545,10725.45 +19576,2025-03-09T11:14:55.059593-07:00,1013.1116333007812,10.718203,10718.203 +19577,2025-03-09T11:15:05.790595-07:00,1013.0639038085938,10.731002,10731.002 +19578,2025-03-09T11:15:16.515893-07:00,1013.083740234375,10.725298,10725.298 +19579,2025-03-09T11:15:27.238410-07:00,1013.085205078125,10.722517,10722.517 +19580,2025-03-09T11:15:37.955637-07:00,1013.1101684570312,10.717227,10717.227 +19581,2025-03-09T11:15:48.682388-07:00,1013.0888061523438,10.726751,10726.751 +19582,2025-03-09T11:15:59.406390-07:00,1013.108642578125,10.724002,10724.002 +19583,2025-03-09T11:16:10.133574-07:00,1013.0855712890625,10.727184,10727.184 +19584,2025-03-09T11:16:20.856328-07:00,1013.1038818359375,10.722754,10722.754 +19585,2025-03-09T11:16:31.582555-07:00,1013.1052856445312,10.726227,10726.227 +19586,2025-03-09T11:16:42.308391-07:00,1013.1104736328125,10.725836,10725.836 +19587,2025-03-09T11:16:53.026781-07:00,1013.0840454101562,10.71839,10718.39 +19588,2025-03-09T11:17:03.744390-07:00,1013.0888061523438,10.717609,10717.609 +19589,2025-03-09T11:17:14.474214-07:00,1013.1038818359375,10.729824,10729.824 +19590,2025-03-09T11:17:25.191391-07:00,1013.0840454101562,10.717177,10717.177 +19591,2025-03-09T11:17:35.916762-07:00,1013.10205078125,10.725371,10725.371 +19592,2025-03-09T11:17:46.648537-07:00,1013.1085815429688,10.731775,10731.775 +19593,2025-03-09T11:17:57.370480-07:00,1013.1303100585938,10.721943,10721.943 +19594,2025-03-09T11:18:08.099459-07:00,1013.1236572265625,10.728979,10728.979 +19595,2025-03-09T11:18:18.819390-07:00,1013.1218872070312,10.719931,10719.931 +19596,2025-03-09T11:18:29.541956-07:00,1013.1005249023438,10.722566,10722.566 +19597,2025-03-09T11:18:40.261479-07:00,1013.1056518554688,10.719523,10719.523 +19598,2025-03-09T11:18:50.984721-07:00,1013.118896484375,10.723242,10723.242 +19599,2025-03-09T11:19:01.703626-07:00,1013.12548828125,10.718905,10718.905 +19600,2025-03-09T11:19:12.428873-07:00,1013.126953125,10.725247,10725.247 +19601,2025-03-09T11:19:23.150540-07:00,1013.1104736328125,10.721667,10721.667 +19602,2025-03-09T11:19:33.869676-07:00,1013.1235961914062,10.719136,10719.136 +19603,2025-03-09T11:19:44.584390-07:00,1013.118896484375,10.714714,10714.714 +19604,2025-03-09T11:19:55.309542-07:00,1013.1235961914062,10.725152,10725.152 +19605,2025-03-09T11:20:06.025573-07:00,1013.1369018554688,10.716031,10716.031 +19606,2025-03-09T11:20:16.748982-07:00,1013.118896484375,10.723409,10723.409 +19607,2025-03-09T11:20:27.469390-07:00,1013.1353149414062,10.720408,10720.408 +19608,2025-03-09T11:20:38.195386-07:00,1013.1272583007812,10.725996,10725.996 +19609,2025-03-09T11:20:48.912569-07:00,1013.1074829101562,10.717183,10717.183 +19610,2025-03-09T11:20:59.637679-07:00,1013.099365234375,10.72511,10725.11 +19611,2025-03-09T11:21:10.355417-07:00,1013.0927124023438,10.717738,10717.738 +19612,2025-03-09T11:21:21.075391-07:00,1013.10888671875,10.719974,10719.974 +19613,2025-03-09T11:21:31.809177-07:00,1013.0927124023438,10.733786,10733.786 +19614,2025-03-09T11:21:42.528586-07:00,1013.1389770507812,10.719409,10719.409 +19615,2025-03-09T11:21:53.248414-07:00,1013.1239013671875,10.719828,10719.828 +19616,2025-03-09T11:22:03.969391-07:00,1013.1173706054688,10.720977,10720.977 +19617,2025-03-09T11:22:14.696593-07:00,1013.1158447265625,10.727202,10727.202 +19618,2025-03-09T11:22:25.412387-07:00,1013.1209106445312,10.715794,10715.794 +19619,2025-03-09T11:22:36.142390-07:00,1013.1158447265625,10.730003,10730.003 +19620,2025-03-09T11:22:46.863505-07:00,1013.1173706054688,10.721115,10721.115 +19621,2025-03-09T11:22:57.590563-07:00,1013.0879516601562,10.727058,10727.058 +19622,2025-03-09T11:23:08.313565-07:00,1013.1239013671875,10.723002,10723.002 +19623,2025-03-09T11:23:19.039521-07:00,1013.0795288085938,10.725956,10725.956 +19624,2025-03-09T11:23:29.764410-07:00,1013.081298828125,10.724889,10724.889 +19625,2025-03-09T11:23:40.483388-07:00,1013.0927124023438,10.718978,10718.978 +19626,2025-03-09T11:23:51.203612-07:00,1013.10107421875,10.720224,10720.224 +19627,2025-03-09T11:24:01.925386-07:00,1013.0927124023438,10.721774,10721.774 +19628,2025-03-09T11:24:12.653562-07:00,1013.11767578125,10.728176,10728.176 +19629,2025-03-09T11:24:23.375420-07:00,1013.1043701171875,10.721858,10721.858 +19630,2025-03-09T11:24:34.089768-07:00,1013.0978393554688,10.714348,10714.348 +19631,2025-03-09T11:24:44.819464-07:00,1013.1029663085938,10.729696,10729.696 +19632,2025-03-09T11:24:55.544606-07:00,1013.0896606445312,10.725142,10725.142 +19633,2025-03-09T11:25:06.263391-07:00,1013.1029663085938,10.718785,10718.785 +19634,2025-03-09T11:25:16.995390-07:00,1013.0963134765625,10.731999,10731.999 +19635,2025-03-09T11:25:27.712387-07:00,1013.087890625,10.716997,10716.997 +19636,2025-03-09T11:25:38.444616-07:00,1013.1029663085938,10.732229,10732.229 +19637,2025-03-09T11:25:49.174016-07:00,1013.0945434570312,10.7294,10729.4 +19638,2025-03-09T11:25:59.887392-07:00,1013.08642578125,10.713376,10713.376 +19639,2025-03-09T11:26:10.612558-07:00,1013.11279296875,10.725166,10725.166 +19640,2025-03-09T11:26:21.342420-07:00,1013.0929565429688,10.729862,10729.862 +19641,2025-03-09T11:26:32.065391-07:00,1013.0962524414062,10.722971,10722.971 +19642,2025-03-09T11:26:42.792413-07:00,1013.0750122070312,10.727022,10727.022 +19643,2025-03-09T11:26:53.516391-07:00,1013.060302734375,10.723978,10723.978 +19644,2025-03-09T11:27:04.240096-07:00,1013.0834350585938,10.723705,10723.705 +19645,2025-03-09T11:27:14.966391-07:00,1013.07373046875,10.726295,10726.295 +19646,2025-03-09T11:27:25.695461-07:00,1013.091796875,10.72907,10729.07 +19647,2025-03-09T11:27:36.417450-07:00,1013.0953979492188,10.721989,10721.989 +19648,2025-03-09T11:27:47.149889-07:00,1013.130126953125,10.732439,10732.439 +19649,2025-03-09T11:27:57.877593-07:00,1013.1118774414062,10.727704,10727.704 +19650,2025-03-09T11:28:08.599391-07:00,1013.1203002929688,10.721798,10721.798 +19651,2025-03-09T11:28:19.323796-07:00,1013.0941162109375,10.724405,10724.405 +19652,2025-03-09T11:28:30.048391-07:00,1013.1172485351562,10.724595,10724.595 +19653,2025-03-09T11:28:40.775403-07:00,1013.1454467773438,10.727012,10727.012 +19654,2025-03-09T11:28:51.506559-07:00,1013.071533203125,10.731156,10731.156 +19655,2025-03-09T11:29:02.235466-07:00,1013.0916137695312,10.728907,10728.907 +19656,2025-03-09T11:29:12.960601-07:00,1013.088623046875,10.725135,10725.135 +19657,2025-03-09T11:29:23.684663-07:00,1013.096923828125,10.724062,10724.062 +19658,2025-03-09T11:29:34.411916-07:00,1013.09716796875,10.727253,10727.253 +19659,2025-03-09T11:29:45.136534-07:00,1013.0875244140625,10.724618,10724.618 +19660,2025-03-09T11:29:55.868384-07:00,1013.077880859375,10.73185,10731.85 +19661,2025-03-09T11:30:06.596566-07:00,1013.10791015625,10.728182,10728.182 +19662,2025-03-09T11:30:17.317390-07:00,1013.1162719726562,10.720824,10720.824 +19663,2025-03-09T11:30:28.046574-07:00,1013.1017456054688,10.729184,10729.184 +19664,2025-03-09T11:30:38.768456-07:00,1013.11669921875,10.721882,10721.882 +19665,2025-03-09T11:30:49.493467-07:00,1013.1104125976562,10.725011,10725.011 +19666,2025-03-09T11:31:00.218769-07:00,1013.115478515625,10.725302,10725.302 +19667,2025-03-09T11:31:10.948453-07:00,1013.1124267578125,10.729684,10729.684 +19668,2025-03-09T11:31:21.677221-07:00,1013.118896484375,10.728768,10728.768 +19669,2025-03-09T11:31:32.403755-07:00,1013.078125,10.726534,10726.534 +19670,2025-03-09T11:31:43.126391-07:00,1013.06005859375,10.722636,10722.636 +19671,2025-03-09T11:31:53.859438-07:00,1013.091552734375,10.733047,10733.047 +19672,2025-03-09T11:32:04.574802-07:00,1013.0833740234375,10.715364,10715.364 +19673,2025-03-09T11:32:15.306573-07:00,1013.06201171875,10.731771,10731.771 +19674,2025-03-09T11:32:26.038421-07:00,1013.0784912109375,10.731848,10731.848 +19675,2025-03-09T11:32:36.767524-07:00,1013.0784912109375,10.729103,10729.103 +19676,2025-03-09T11:32:47.495580-07:00,1013.0736694335938,10.728056,10728.056 +19677,2025-03-09T11:32:58.217393-07:00,1013.063720703125,10.721813,10721.813 +19678,2025-03-09T11:33:08.945572-07:00,1013.0556030273438,10.728179,10728.179 +19679,2025-03-09T11:33:19.671455-07:00,1013.0739135742188,10.725883,10725.883 +19680,2025-03-09T11:33:30.396387-07:00,1013.0790405273438,10.724932,10724.932 +19681,2025-03-09T11:33:41.120384-07:00,1013.044189453125,10.723997,10723.997 +19682,2025-03-09T11:33:51.853447-07:00,1013.0279541015625,10.733063,10733.063 +19683,2025-03-09T11:34:02.577783-07:00,1013.0477905273438,10.724336,10724.336 +19684,2025-03-09T11:34:13.297390-07:00,1013.0477905273438,10.719607,10719.607 +19685,2025-03-09T11:34:24.025543-07:00,1013.0477905273438,10.728153,10728.153 +19686,2025-03-09T11:34:34.751590-07:00,1013.0279541015625,10.726047,10726.047 +19687,2025-03-09T11:34:45.467572-07:00,1013.0477905273438,10.715982,10715.982 +19688,2025-03-09T11:34:56.194388-07:00,1013.03125,10.726816,10726.816 +19689,2025-03-09T11:35:06.914460-07:00,1013.0048217773438,10.720072,10720.072 +19690,2025-03-09T11:35:17.641464-07:00,1013.03125,10.727004,10727.004 +19691,2025-03-09T11:35:28.364688-07:00,1012.9967041015625,10.723224,10723.224 +19692,2025-03-09T11:35:39.084391-07:00,1013.012939453125,10.719703,10719.703 +19693,2025-03-09T11:35:49.814385-07:00,1012.986572265625,10.729994,10729.994 +19694,2025-03-09T11:36:00.535438-07:00,1012.9949951171875,10.721053,10721.053 +19695,2025-03-09T11:36:11.263394-07:00,1013.0015869140625,10.727956,10727.956 +19696,2025-03-09T11:36:21.982611-07:00,1012.9884643554688,10.719217,10719.217 +19697,2025-03-09T11:36:32.705530-07:00,1013.01123046875,10.722919,10722.919 +19698,2025-03-09T11:36:43.432707-07:00,1012.9932861328125,10.727177,10727.177 +19699,2025-03-09T11:36:54.149394-07:00,1013.0197143554688,10.716687,10716.687 +19700,2025-03-09T11:37:04.874558-07:00,1012.9947509765625,10.725164,10725.164 +19701,2025-03-09T11:37:15.601389-07:00,1013.0028076171875,10.726831,10726.831 +19702,2025-03-09T11:37:26.329508-07:00,1013.0094604492188,10.728119,10728.119 +19703,2025-03-09T11:37:37.055486-07:00,1013.0128173828125,10.725978,10725.978 +19704,2025-03-09T11:37:47.782397-07:00,1013.0407104492188,10.726911,10726.911 +19705,2025-03-09T11:37:58.499391-07:00,1013.0044555664062,10.716994,10716.994 +19706,2025-03-09T11:38:09.224421-07:00,1012.9762573242188,10.72503,10725.03 +19707,2025-03-09T11:38:19.945614-07:00,1013.0044555664062,10.721193,10721.193 +19708,2025-03-09T11:38:30.677506-07:00,1013.0075073242188,10.731892,10731.892 +19709,2025-03-09T11:38:52.119398-07:00,1013.002685546875,21.441892,21441.892 +19710,2025-03-09T11:39:02.840637-07:00,1012.9990844726562,10.721239,10721.239 +19711,2025-03-09T11:39:13.562425-07:00,1013.01416015625,10.721788,10721.788 +19712,2025-03-09T11:39:24.283573-07:00,1013.00390625,10.721148,10721.148 +19713,2025-03-09T11:39:35.006387-07:00,1013.0189208984375,10.722814,10722.814 +19714,2025-03-09T11:39:45.735392-07:00,1013.0204467773438,10.729005,10729.005 +19715,2025-03-09T11:39:56.455388-07:00,1013.0234375,10.719996,10719.996 +19716,2025-03-09T11:40:07.184564-07:00,1013.0318603515625,10.729176,10729.176 +19717,2025-03-09T11:40:17.915936-07:00,1013.00048828125,10.731372,10731.372 +19718,2025-03-09T11:40:28.637388-07:00,1013.0103149414062,10.721452,10721.452 +19719,2025-03-09T11:40:39.365570-07:00,1013.0184326171875,10.728182,10728.182 +19720,2025-03-09T11:40:50.091594-07:00,1013.0364990234375,10.726024,10726.024 +19721,2025-03-09T11:41:00.812593-07:00,1012.9968872070312,10.720999,10720.999 +19722,2025-03-09T11:41:11.542389-07:00,1013.03466796875,10.729796,10729.796 +19723,2025-03-09T11:41:22.271717-07:00,1013.02294921875,10.729328,10729.328 +19724,2025-03-09T11:41:32.994724-07:00,1012.9849243164062,10.723007,10723.007 +19725,2025-03-09T11:41:43.710447-07:00,1013.03955078125,10.715723,10715.723 +19726,2025-03-09T11:41:54.437381-07:00,1013.0161743164062,10.726934,10726.934 +19727,2025-03-09T11:42:05.159385-07:00,1012.9982299804688,10.722004,10722.004 +19728,2025-03-09T11:42:15.896737-07:00,1013.0128784179688,10.737352,10737.352 +19729,2025-03-09T11:42:26.621727-07:00,1012.9931030273438,10.72499,10724.99 +19730,2025-03-09T11:42:37.338575-07:00,1012.9846801757812,10.716848,10716.848 +19731,2025-03-09T11:42:48.069300-07:00,1012.9862670898438,10.730725,10730.725 +19732,2025-03-09T11:42:58.789392-07:00,1012.9910888671875,10.720092,10720.092 +19733,2025-03-09T11:43:09.522585-07:00,1012.9664306640625,10.733193,10733.193 +19734,2025-03-09T11:43:20.244393-07:00,1012.992919921875,10.721808,10721.808 +19735,2025-03-09T11:43:30.976857-07:00,1012.9745483398438,10.732464,10732.464 +19736,2025-03-09T11:43:41.705885-07:00,1012.9695434570312,10.729028,10729.028 +19737,2025-03-09T11:43:52.427454-07:00,1012.951171875,10.721569,10721.569 +19738,2025-03-09T11:44:03.165562-07:00,1012.9332275390625,10.738108,10738.108 +19739,2025-03-09T11:44:13.892413-07:00,1012.9494018554688,10.726851,10726.851 +19740,2025-03-09T11:44:24.615507-07:00,1012.9461059570312,10.723094,10723.094 +19741,2025-03-09T11:44:35.350027-07:00,1012.9593505859375,10.73452,10734.52 +19742,2025-03-09T11:44:46.071456-07:00,1012.9411010742188,10.721429,10721.429 +19743,2025-03-09T11:44:56.797389-07:00,1012.9458618164062,10.725933,10725.933 +19744,2025-03-09T11:45:07.530487-07:00,1012.9525146484375,10.733098,10733.098 +19745,2025-03-09T11:45:18.258515-07:00,1012.9476318359375,10.728028,10728.028 +19746,2025-03-09T11:45:28.990574-07:00,1012.9095458984375,10.732059,10732.059 +19747,2025-03-09T11:45:39.719457-07:00,1012.932373046875,10.728883,10728.883 +19748,2025-03-09T11:45:50.452601-07:00,1012.9078369140625,10.733144,10733.144 +19749,2025-03-09T11:46:01.184392-07:00,1012.9174194335938,10.731791,10731.791 +19750,2025-03-09T11:46:11.918590-07:00,1012.924072265625,10.734198,10734.198 +19751,2025-03-09T11:46:22.645389-07:00,1012.937255859375,10.726799,10726.799 +19752,2025-03-09T11:46:33.370574-07:00,1012.9336547851562,10.725185,10725.185 +19753,2025-03-09T11:46:44.107160-07:00,1012.912353515625,10.736586,10736.586 +19754,2025-03-09T11:46:54.838389-07:00,1012.91064453125,10.731229,10731.229 +19755,2025-03-09T11:47:05.567464-07:00,1012.9204711914062,10.729075,10729.075 +19756,2025-03-09T11:47:16.299581-07:00,1012.95361328125,10.732117,10732.117 +19757,2025-03-09T11:47:27.026459-07:00,1012.94189453125,10.726878,10726.878 +19758,2025-03-09T11:47:37.754578-07:00,1012.9268798828125,10.728119,10728.119 +19759,2025-03-09T11:47:48.493569-07:00,1012.91845703125,10.738991,10738.991 +19760,2025-03-09T11:47:59.216467-07:00,1012.9232788085938,10.722898,10722.898 +19761,2025-03-09T11:48:09.947387-07:00,1012.8998413085938,10.73092,10730.92 +19762,2025-03-09T11:48:20.681095-07:00,1012.919677734375,10.733708,10733.708 +19763,2025-03-09T11:48:31.409631-07:00,1012.87646484375,10.728536,10728.536 +19764,2025-03-09T11:48:42.140614-07:00,1012.8864135742188,10.730983,10730.983 +19765,2025-03-09T11:48:52.865389-07:00,1012.8831176757812,10.724775,10724.775 +19766,2025-03-09T11:49:03.595680-07:00,1012.88134765625,10.730291,10730.291 +19767,2025-03-09T11:49:14.323558-07:00,1012.8942260742188,10.727878,10727.878 +19768,2025-03-09T11:49:25.052392-07:00,1012.9202880859375,10.728834,10728.834 +19769,2025-03-09T11:49:35.781969-07:00,1012.9302978515625,10.729577,10729.577 +19770,2025-03-09T11:49:46.507061-07:00,1012.915283203125,10.725092,10725.092 +19771,2025-03-09T11:49:57.236391-07:00,1012.8853149414062,10.72933,10729.33 +19772,2025-03-09T11:50:07.965638-07:00,1012.9149780273438,10.729247,10729.247 +19773,2025-03-09T11:50:18.695571-07:00,1012.91650390625,10.729933,10729.933 +19774,2025-03-09T11:50:29.422394-07:00,1012.9359130859375,10.726823,10726.823 +19775,2025-03-09T11:50:40.148759-07:00,1012.8915405273438,10.726365,10726.365 +19776,2025-03-09T11:50:50.885463-07:00,1012.904541015625,10.736704,10736.704 +19777,2025-03-09T11:51:01.605490-07:00,1012.91259765625,10.720027,10720.027 +19778,2025-03-09T11:51:12.335545-07:00,1012.9254760742188,10.730055,10730.055 +19779,2025-03-09T11:51:23.059965-07:00,1012.9042358398438,10.72442,10724.42 +19780,2025-03-09T11:51:33.782568-07:00,1012.9221801757812,10.722603,10722.603 +19781,2025-03-09T11:51:44.517490-07:00,1012.94677734375,10.734922,10734.922 +19782,2025-03-09T11:51:55.237608-07:00,1012.8990478515625,10.720118,10720.118 +19783,2025-03-09T11:52:05.968289-07:00,1012.921875,10.730681,10730.681 +19784,2025-03-09T11:52:16.682576-07:00,1012.8972778320312,10.714287,10714.287 +19785,2025-03-09T11:52:27.443461-07:00,1012.872314453125,10.760885,10760.885 +19786,2025-03-09T11:52:38.174937-07:00,1012.8954467773438,10.731476,10731.476 +19787,2025-03-09T11:52:48.897942-07:00,1012.87353515625,10.723005,10723.005 +19788,2025-03-09T11:52:59.617941-07:00,1012.8753051757812,10.719999,10719.999 +19789,2025-03-09T11:53:10.353934-07:00,1012.8819580078125,10.735993,10735.993 +19790,2025-03-09T11:53:21.081118-07:00,1012.8782958984375,10.727184,10727.184 +19791,2025-03-09T11:53:31.806943-07:00,1012.8438110351562,10.725825,10725.825 +19792,2025-03-09T11:53:42.530422-07:00,1012.8387451171875,10.723479,10723.479 +19793,2025-03-09T11:53:53.259179-07:00,1012.825439453125,10.728757,10728.757 +19794,2025-03-09T11:54:03.979276-07:00,1012.8206787109375,10.720097,10720.097 +19795,2025-03-09T11:54:14.715331-07:00,1012.873291015625,10.736055,10736.055 +19796,2025-03-09T11:54:25.434120-07:00,1012.8548583984375,10.718789,10718.789 +19797,2025-03-09T11:54:36.166956-07:00,1012.8336181640625,10.732836,10732.836 +19798,2025-03-09T11:54:46.897301-07:00,1012.8350830078125,10.730345,10730.345 +19799,2025-03-09T11:54:57.625945-07:00,1012.856689453125,10.728644,10728.644 +19800,2025-03-09T11:55:08.352123-07:00,1012.856689453125,10.726178,10726.178 +19801,2025-03-09T11:55:19.082147-07:00,1012.8236694335938,10.730024,10730.024 +19802,2025-03-09T11:55:29.805945-07:00,1012.8746948242188,10.723798,10723.798 +19803,2025-03-09T11:55:40.532981-07:00,1012.8267211914062,10.727036,10727.036 +19804,2025-03-09T11:55:51.267060-07:00,1012.8431396484375,10.734079,10734.079 +19805,2025-03-09T11:56:01.990108-07:00,1012.8512573242188,10.723048,10723.048 +19806,2025-03-09T11:56:12.715939-07:00,1012.8563842773438,10.725831,10725.831 +19807,2025-03-09T11:56:23.438953-07:00,1012.8563842773438,10.723014,10723.014 +19808,2025-03-09T11:56:34.167267-07:00,1012.8380737304688,10.728314,10728.314 +19809,2025-03-09T11:56:44.896964-07:00,1012.865966796875,10.729697,10729.697 +19810,2025-03-09T11:56:55.613939-07:00,1012.8365478515625,10.716975,10716.975 +19811,2025-03-09T11:57:06.342942-07:00,1012.8545532226562,10.729003,10729.003 +19812,2025-03-09T11:57:17.075943-07:00,1012.8479614257812,10.733001,10733.001 +19813,2025-03-09T11:57:27.798937-07:00,1012.8479614257812,10.722994,10722.994 +19814,2025-03-09T11:57:38.533255-07:00,1012.81494140625,10.734318,10734.318 +19815,2025-03-09T11:57:49.251475-07:00,1012.8082885742188,10.71822,10718.22 +19816,2025-03-09T11:57:59.979942-07:00,1012.828125,10.728467,10728.467 +19817,2025-03-09T11:58:10.711158-07:00,1012.81494140625,10.731216,10731.216 +19818,2025-03-09T11:58:21.442782-07:00,1012.809814453125,10.731624,10731.624 +19819,2025-03-09T11:58:32.172065-07:00,1012.7965698242188,10.729283,10729.283 +19820,2025-03-09T11:58:42.905221-07:00,1012.7984619140625,10.733156,10733.156 +19821,2025-03-09T11:58:53.630969-07:00,1012.7984619140625,10.725748,10725.748 +19822,2025-03-09T11:59:04.352941-07:00,1012.7753295898438,10.721972,10721.972 +19823,2025-03-09T11:59:15.086106-07:00,1012.7818603515625,10.733165,10733.165 +19824,2025-03-09T11:59:25.817942-07:00,1012.7687377929688,10.731836,10731.836 +19825,2025-03-09T11:59:36.542071-07:00,1012.7767944335938,10.724129,10724.129 +19826,2025-03-09T11:59:47.274116-07:00,1012.7554931640625,10.732045,10732.045 +19827,2025-03-09T11:59:58.006941-07:00,1012.7422485351562,10.732825,10732.825 +19828,2025-03-09T12:00:08.728966-07:00,1012.7489013671875,10.722025,10722.025 +19829,2025-03-09T12:00:19.465113-07:00,1012.7767944335938,10.736147,10736.147 +19830,2025-03-09T12:00:30.184943-07:00,1012.7554931640625,10.71983,10719.83 +19831,2025-03-09T12:00:40.919380-07:00,1012.7554931640625,10.734437,10734.437 +19832,2025-03-09T12:00:51.649033-07:00,1012.765380859375,10.729653,10729.653 +19833,2025-03-09T12:01:02.370941-07:00,1012.765380859375,10.721908,10721.908 +19834,2025-03-09T12:01:13.107945-07:00,1012.7587280273438,10.737004,10737.004 +19835,2025-03-09T12:01:23.838961-07:00,1012.7206420898438,10.731016,10731.016 +19836,2025-03-09T12:01:34.564942-07:00,1012.7290649414062,10.725981,10725.981 +19837,2025-03-09T12:01:45.288142-07:00,1012.7305297851562,10.7232,10723.2 +19838,2025-03-09T12:01:56.021041-07:00,1012.7224731445312,10.732899,10732.899 +19839,2025-03-09T12:02:06.747198-07:00,1012.7437744140625,10.726157,10726.157 +19840,2025-03-09T12:02:17.480131-07:00,1012.723876953125,10.732933,10732.933 +19841,2025-03-09T12:02:28.207942-07:00,1012.7157592773438,10.727811,10727.811 +19842,2025-03-09T12:02:38.930585-07:00,1012.7305297851562,10.722643,10722.643 +19843,2025-03-09T12:02:49.650001-07:00,1012.7422485351562,10.719416,10719.416 +19844,2025-03-09T12:03:00.383942-07:00,1012.7140502929688,10.733941,10733.941 +19845,2025-03-09T12:03:11.105143-07:00,1012.7437744140625,10.721201,10721.201 +19846,2025-03-09T12:03:21.832001-07:00,1012.7206420898438,10.726858,10726.858 +19847,2025-03-09T12:03:32.554079-07:00,1012.6994018554688,10.722078,10722.078 +19848,2025-03-09T12:03:43.277873-07:00,1012.7059326171875,10.723794,10723.794 +19849,2025-03-09T12:03:54.000363-07:00,1012.7191162109375,10.72249,10722.49 +19850,2025-03-09T12:04:04.719969-07:00,1012.6912231445312,10.719606,10719.606 +19851,2025-03-09T12:04:15.449105-07:00,1012.7161865234375,10.729136,10729.136 +19852,2025-03-09T12:04:26.177144-07:00,1012.6813354492188,10.728039,10728.039 +19853,2025-03-09T12:04:36.900340-07:00,1012.7228393554688,10.723196,10723.196 +19854,2025-03-09T12:04:47.628969-07:00,1012.7308349609375,10.728629,10728.629 +19855,2025-03-09T12:04:58.347128-07:00,1012.7242431640625,10.718159,10718.159 +19856,2025-03-09T12:05:09.079448-07:00,1012.6930541992188,10.73232,10732.32 +19857,2025-03-09T12:05:19.803007-07:00,1012.6945190429688,10.723559,10723.559 +19858,2025-03-09T12:05:30.531476-07:00,1012.6798706054688,10.728469,10728.469 +19859,2025-03-09T12:05:41.248997-07:00,1012.68310546875,10.717521,10717.521 +19860,2025-03-09T12:05:51.983135-07:00,1012.6849975585938,10.734138,10734.138 +19861,2025-03-09T12:06:02.702942-07:00,1012.7276000976562,10.719807,10719.807 +19862,2025-03-09T12:06:13.426942-07:00,1012.6716918945312,10.724,10724.0 +19863,2025-03-09T12:06:24.150064-07:00,1012.6716918945312,10.723122,10723.122 +19864,2025-03-09T12:06:34.883001-07:00,1012.6963500976562,10.732937,10732.937 +19865,2025-03-09T12:06:45.612225-07:00,1012.669921875,10.729224,10729.224 +19866,2025-03-09T12:06:56.332939-07:00,1012.6882934570312,10.720714,10720.714 +19867,2025-03-09T12:07:07.062937-07:00,1012.66845703125,10.729998,10729.998 +19868,2025-03-09T12:07:17.783935-07:00,1012.65673828125,10.720998,10720.998 +19869,2025-03-09T12:07:28.522939-07:00,1012.661865234375,10.739004,10739.004 +19870,2025-03-09T12:07:39.244722-07:00,1012.6453247070312,10.721783,10721.783 +19871,2025-03-09T12:07:49.965940-07:00,1012.65185546875,10.721218,10721.218 +19872,2025-03-09T12:08:00.690958-07:00,1012.6356811523438,10.725018,10725.018 +19873,2025-03-09T12:08:11.425214-07:00,1012.64892578125,10.734256,10734.256 +19874,2025-03-09T12:08:22.151128-07:00,1012.6504516601562,10.725914,10725.914 +19875,2025-03-09T12:08:32.871841-07:00,1012.6224975585938,10.720713,10720.713 +19876,2025-03-09T12:08:43.592287-07:00,1012.6140747070312,10.720446,10720.446 +19877,2025-03-09T12:08:54.317365-07:00,1012.6192016601562,10.725078,10725.078 +19878,2025-03-09T12:09:05.044940-07:00,1012.6404418945312,10.727575,10727.575 +19879,2025-03-09T12:09:15.771118-07:00,1012.6470947265625,10.726178,10726.178 +19880,2025-03-09T12:09:26.489154-07:00,1012.6093139648438,10.718036,10718.036 +19881,2025-03-09T12:09:37.218942-07:00,1012.6243896484375,10.729788,10729.788 +19882,2025-03-09T12:09:47.944033-07:00,1012.6257934570312,10.725091,10725.091 +19883,2025-03-09T12:09:58.661199-07:00,1012.611083984375,10.717166,10717.166 +19884,2025-03-09T12:10:09.383936-07:00,1012.6077880859375,10.722737,10722.737 +19885,2025-03-09T12:10:20.119147-07:00,1012.6063232421875,10.735211,10735.211 +19886,2025-03-09T12:10:30.837227-07:00,1012.6195068359375,10.71808,10718.08 +19887,2025-03-09T12:10:41.568939-07:00,1012.6210327148438,10.731712,10731.712 +19888,2025-03-09T12:10:52.292377-07:00,1012.5996704101562,10.723438,10723.438 +19889,2025-03-09T12:11:03.023941-07:00,1012.6195068359375,10.731564,10731.564 +19890,2025-03-09T12:11:13.741741-07:00,1012.5864868164062,10.7178,10717.8 +19891,2025-03-09T12:11:24.472352-07:00,1012.6129760742188,10.730611,10730.611 +19892,2025-03-09T12:11:35.190133-07:00,1012.591552734375,10.717781,10717.781 +19893,2025-03-09T12:11:45.919322-07:00,1012.5864868164062,10.729189,10729.189 +19894,2025-03-09T12:11:56.646939-07:00,1012.5733032226562,10.727617,10727.617 +19895,2025-03-09T12:12:07.369094-07:00,1012.5831909179688,10.722155,10722.155 +19896,2025-03-09T12:12:18.095144-07:00,1012.5850219726562,10.72605,10726.05 +19897,2025-03-09T12:12:28.815170-07:00,1012.5784301757812,10.720026,10720.026 +19898,2025-03-09T12:12:39.544939-07:00,1012.58984375,10.729769,10729.769 +19899,2025-03-09T12:12:50.269942-07:00,1012.5567016601562,10.725003,10725.003 +19900,2025-03-09T12:13:00.986148-07:00,1012.596435546875,10.716206,10716.206 +19901,2025-03-09T12:13:11.708185-07:00,1012.5486450195312,10.722037,10722.037 +19902,2025-03-09T12:13:22.431939-07:00,1012.5603637695312,10.723754,10723.754 +19903,2025-03-09T12:13:33.161146-07:00,1012.5306396484375,10.729207,10729.207 +19904,2025-03-09T12:13:43.889115-07:00,1012.5537719726562,10.727969,10727.969 +19905,2025-03-09T12:13:54.609938-07:00,1012.5452880859375,10.720823,10720.823 +19906,2025-03-09T12:14:05.327134-07:00,1012.55859375,10.717196,10717.196 +19907,2025-03-09T12:14:16.060012-07:00,1012.5423583984375,10.732878,10732.878 +19908,2025-03-09T12:14:26.784942-07:00,1012.57177734375,10.72493,10724.93 +19909,2025-03-09T12:14:37.497968-07:00,1012.563720703125,10.713026,10713.026 +19910,2025-03-09T12:14:48.231139-07:00,1012.5556030273438,10.733171,10733.171 +19911,2025-03-09T12:14:58.954130-07:00,1012.575439453125,10.722991,10722.991 +19912,2025-03-09T12:15:09.682145-07:00,1012.5457153320312,10.728015,10728.015 +19913,2025-03-09T12:15:20.402173-07:00,1012.5556030273438,10.720028,10720.028 +19914,2025-03-09T12:15:31.125943-07:00,1012.5045166015625,10.72377,10723.77 +19915,2025-03-09T12:15:41.857918-07:00,1012.5045166015625,10.731975,10731.975 +19916,2025-03-09T12:15:52.574120-07:00,1012.5027465820312,10.716202,10716.202 +19917,2025-03-09T12:16:03.301983-07:00,1012.4979858398438,10.727863,10727.863 +19918,2025-03-09T12:16:14.025941-07:00,1012.49609375,10.723958,10723.958 +19919,2025-03-09T12:16:24.747357-07:00,1012.5111694335938,10.721416,10721.416 +19920,2025-03-09T12:16:35.469019-07:00,1012.49609375,10.721662,10721.662 +19921,2025-03-09T12:16:46.195988-07:00,1012.489501953125,10.726969,10726.969 +19922,2025-03-09T12:16:56.924095-07:00,1012.5243530273438,10.728107,10728.107 +19923,2025-03-09T12:17:07.646942-07:00,1012.4946899414062,10.722847,10722.847 +19924,2025-03-09T12:17:18.372084-07:00,1012.486572265625,10.725142,10725.142 +19925,2025-03-09T12:17:29.092941-07:00,1012.486572265625,10.720857,10720.857 +19926,2025-03-09T12:17:39.817129-07:00,1012.5078125,10.724188,10724.188 +19927,2025-03-09T12:17:50.536941-07:00,1012.488037109375,10.719812,10719.812 +19928,2025-03-09T12:18:01.264342-07:00,1012.485107421875,10.727401,10727.401 +19929,2025-03-09T12:18:11.986049-07:00,1012.5064086914062,10.721707,10721.707 +19930,2025-03-09T12:18:22.716938-07:00,1012.4784545898438,10.730889,10730.889 +19931,2025-03-09T12:18:33.437234-07:00,1012.49169921875,10.720296,10720.296 +19932,2025-03-09T12:18:44.163161-07:00,1012.4718627929688,10.725927,10725.927 +19933,2025-03-09T12:18:54.892594-07:00,1012.4718627929688,10.729433,10729.433 +19934,2025-03-09T12:19:05.617938-07:00,1012.49169921875,10.725344,10725.344 +19935,2025-03-09T12:19:16.343129-07:00,1012.4667358398438,10.725191,10725.191 +19936,2025-03-09T12:19:27.060942-07:00,1012.4634399414062,10.717813,10717.813 +19937,2025-03-09T12:19:37.786103-07:00,1012.469970703125,10.725161,10725.161 +19938,2025-03-09T12:19:48.513938-07:00,1012.4766235351562,10.727835,10727.835 +19939,2025-03-09T12:19:59.239942-07:00,1012.443603515625,10.726004,10726.004 +19940,2025-03-09T12:20:09.957015-07:00,1012.469970703125,10.717073,10717.073 +19941,2025-03-09T12:20:20.687976-07:00,1012.46533203125,10.730961,10730.961 +19942,2025-03-09T12:20:31.409942-07:00,1012.4766235351562,10.721966,10721.966 +19943,2025-03-09T12:20:42.136939-07:00,1012.4898681640625,10.726997,10726.997 +19944,2025-03-09T12:20:52.872938-07:00,1012.4766235351562,10.735999,10735.999 +19945,2025-03-09T12:21:03.593186-07:00,1012.4685668945312,10.720248,10720.248 +19946,2025-03-09T12:21:14.322028-07:00,1012.4539184570312,10.728842,10728.842 +19947,2025-03-09T12:21:25.047317-07:00,1012.4421997070312,10.725289,10725.289 +19948,2025-03-09T12:21:35.771935-07:00,1012.43408203125,10.724618,10724.618 +19949,2025-03-09T12:21:46.489057-07:00,1012.4454956054688,10.717122,10717.122 +19950,2025-03-09T12:21:57.214965-07:00,1012.4288940429688,10.725908,10725.908 +19951,2025-03-09T12:22:07.936611-07:00,1012.435546875,10.721646,10721.646 +19952,2025-03-09T12:22:18.656593-07:00,1012.43408203125,10.719982,10719.982 +19953,2025-03-09T12:22:29.388154-07:00,1012.4255981445312,10.731561,10731.561 +19954,2025-03-09T12:22:40.111937-07:00,1012.4520263671875,10.723783,10723.783 +19955,2025-03-09T12:22:50.835156-07:00,1012.4190673828125,10.723219,10723.219 +19956,2025-03-09T12:23:01.558942-07:00,1012.4439086914062,10.723786,10723.786 +19957,2025-03-09T12:23:12.279119-07:00,1012.4572143554688,10.720177,10720.177 +19958,2025-03-09T12:23:23.001009-07:00,1012.4142456054688,10.72189,10721.89 +19959,2025-03-09T12:23:33.726352-07:00,1012.4046630859375,10.725343,10725.343 +19960,2025-03-09T12:23:44.453939-07:00,1012.4425048828125,10.727587,10727.587 +19961,2025-03-09T12:23:55.180650-07:00,1012.419677734375,10.726711,10726.711 +19962,2025-03-09T12:24:05.902808-07:00,1012.388427734375,10.722158,10722.158 +19963,2025-03-09T12:24:16.624952-07:00,1012.4148559570312,10.722144,10722.144 +19964,2025-03-09T12:24:27.354763-07:00,1012.4115600585938,10.729811,10729.811 +19965,2025-03-09T12:24:38.077012-07:00,1012.4283447265625,10.722249,10722.249 +19966,2025-03-09T12:24:48.795110-07:00,1012.4283447265625,10.718098,10718.098 +19967,2025-03-09T12:24:59.525075-07:00,1012.4136962890625,10.729965,10729.965 +19968,2025-03-09T12:25:10.241920-07:00,1012.4140014648438,10.716845,10716.845 +19969,2025-03-09T12:25:20.972937-07:00,1012.4209594726562,10.731017,10731.017 +19970,2025-03-09T12:25:31.693937-07:00,1012.450927734375,10.721,10721.0 +19971,2025-03-09T12:25:42.417970-07:00,1012.46923828125,10.724033,10724.033 +19972,2025-03-09T12:25:53.139161-07:00,1012.44482421875,10.721191,10721.191 +19973,2025-03-09T12:26:03.863942-07:00,1012.4697875976562,10.724781,10724.781 +19974,2025-03-09T12:26:14.581965-07:00,1012.4451293945312,10.718023,10718.023 +19975,2025-03-09T12:26:25.306970-07:00,1012.4768676757812,10.725005,10725.005 +19976,2025-03-09T12:26:36.030089-07:00,1012.4129638671875,10.723119,10723.119 +19977,2025-03-09T12:26:46.764786-07:00,1012.4525756835938,10.734697,10734.697 +19978,2025-03-09T12:26:57.485964-07:00,1012.4249877929688,10.721178,10721.178 +19979,2025-03-09T12:27:08.212935-07:00,1012.45166015625,10.726971,10726.971 +19980,2025-03-09T12:27:18.932939-07:00,1012.4434204101562,10.720004,10720.004 +19981,2025-03-09T12:27:29.654157-07:00,1012.4240112304688,10.721218,10721.218 +19982,2025-03-09T12:27:40.371140-07:00,1012.4238891601562,10.716983,10716.983 +19983,2025-03-09T12:27:51.100940-07:00,1012.439208984375,10.7298,10729.8 +19984,2025-03-09T12:28:01.834240-07:00,1012.424560546875,10.7333,10733.3 +19985,2025-03-09T12:28:12.548110-07:00,1012.4163208007812,10.71387,10713.87 +19986,2025-03-09T12:28:23.278085-07:00,1012.400146484375,10.729975,10729.975 +19987,2025-03-09T12:28:34.003151-07:00,1012.4216918945312,10.725066,10725.066 +19988,2025-03-09T12:28:44.728114-07:00,1012.3986206054688,10.724963,10724.963 +19989,2025-03-09T12:28:55.453007-07:00,1012.433349609375,10.724893,10724.893 +19990,2025-03-09T12:29:06.173880-07:00,1012.4237670898438,10.720873,10720.873 +19991,2025-03-09T12:29:16.906940-07:00,1012.43359375,10.73306,10733.06 +19992,2025-03-09T12:29:27.634152-07:00,1012.4254760742188,10.727212,10727.212 +19993,2025-03-09T12:29:38.358134-07:00,1012.4287719726562,10.723982,10723.982 +19994,2025-03-09T12:29:49.088942-07:00,1012.4009399414062,10.730808,10730.808 +19995,2025-03-09T12:29:59.811950-07:00,1012.3843994140625,10.723008,10723.008 +19996,2025-03-09T12:30:10.542939-07:00,1012.3894653320312,10.730989,10730.989 +19997,2025-03-09T12:30:21.273148-07:00,1012.4173583984375,10.730209,10730.209 +19998,2025-03-09T12:30:32.000110-07:00,1012.4011840820312,10.726962,10726.962 +19999,2025-03-09T12:30:42.732307-07:00,1012.3978271484375,10.732197,10732.197 +20000,2025-03-09T12:30:53.455939-07:00,1012.3780517578125,10.723632,10723.632 +20001,2025-03-09T12:31:04.183606-07:00,1012.3861083984375,10.727667,10727.667 +20002,2025-03-09T12:31:14.905115-07:00,1012.3795166015625,10.721509,10721.509 +20003,2025-03-09T12:31:25.634108-07:00,1012.4059448242188,10.728993,10728.993 +20004,2025-03-09T12:31:36.359157-07:00,1012.4143676757812,10.725049,10725.049 +20005,2025-03-09T12:31:47.088170-07:00,1012.3912353515625,10.729013,10729.013 +20006,2025-03-09T12:31:57.811939-07:00,1012.4224853515625,10.723769,10723.769 +20007,2025-03-09T12:32:08.540937-07:00,1012.4078369140625,10.728998,10728.998 +20008,2025-03-09T12:32:19.268155-07:00,1012.4158325195312,10.727218,10727.218 +20009,2025-03-09T12:32:29.990937-07:00,1012.3961181640625,10.722782,10722.782 +20010,2025-03-09T12:32:40.723130-07:00,1012.4107666015625,10.732193,10732.193 +20011,2025-03-09T12:32:51.447049-07:00,1012.3993530273438,10.723919,10723.919 +20012,2025-03-09T12:33:02.171171-07:00,1012.3843994140625,10.724122,10724.122 +20013,2025-03-09T12:33:12.905084-07:00,1012.4338989257812,10.733913,10733.913 +20014,2025-03-09T12:33:23.629937-07:00,1012.419189453125,10.724853,10724.853 +20015,2025-03-09T12:33:34.360032-07:00,1012.4089965820312,10.730095,10730.095 +20016,2025-03-09T12:33:45.088158-07:00,1012.438720703125,10.728126,10728.126 +20017,2025-03-09T12:33:55.806151-07:00,1012.4351806640625,10.717993,10717.993 +20018,2025-03-09T12:34:06.534133-07:00,1012.427001953125,10.727982,10727.982 +20019,2025-03-09T12:34:17.262147-07:00,1012.4039306640625,10.728014,10728.014 +20020,2025-03-09T12:34:27.992409-07:00,1012.3841552734375,10.730262,10730.262 +20021,2025-03-09T12:34:38.720754-07:00,1012.406982421875,10.728345,10728.345 +20022,2025-03-09T12:34:49.438140-07:00,1012.406982421875,10.717386,10717.386 +20023,2025-03-09T12:35:00.170302-07:00,1012.4087524414062,10.732162,10732.162 +20024,2025-03-09T12:35:10.890943-07:00,1012.451416015625,10.720641,10720.641 +20025,2025-03-09T12:35:21.621209-07:00,1012.420166015625,10.730266,10730.266 +20026,2025-03-09T12:35:32.345939-07:00,1012.4282836914062,10.72473,10724.73 +20027,2025-03-09T12:35:43.073393-07:00,1012.382080078125,10.727454,10727.454 +20028,2025-03-09T12:35:53.807044-07:00,1012.3721923828125,10.733651,10733.651 +20029,2025-03-09T12:36:04.534943-07:00,1012.400146484375,10.727899,10727.899 +20030,2025-03-09T12:36:15.257143-07:00,1012.3917236328125,10.7222,10722.2 +20031,2025-03-09T12:36:25.985940-07:00,1012.3719482421875,10.728797,10728.797 +20032,2025-03-09T12:36:36.713143-07:00,1012.381591796875,10.727203,10727.203 +20033,2025-03-09T12:36:47.447947-07:00,1012.3570556640625,10.734804,10734.804 +20034,2025-03-09T12:36:58.171978-07:00,1012.3599853515625,10.724031,10724.031 +20035,2025-03-09T12:37:08.903941-07:00,1012.3336181640625,10.731963,10731.963 +20036,2025-03-09T12:37:19.625696-07:00,1012.3648681640625,10.721755,10721.755 +20037,2025-03-09T12:37:30.354144-07:00,1012.3563842773438,10.728448,10728.448 +20038,2025-03-09T12:37:41.075118-07:00,1012.363037109375,10.720974,10720.974 +20039,2025-03-09T12:37:51.802006-07:00,1012.336669921875,10.726888,10726.888 +20040,2025-03-09T12:38:02.536053-07:00,1012.3531494140625,10.734047,10734.047 +20041,2025-03-09T12:38:13.261292-07:00,1012.3612670898438,10.725239,10725.239 +20042,2025-03-09T12:38:23.987940-07:00,1012.3513793945312,10.726648,10726.648 +20043,2025-03-09T12:38:34.710107-07:00,1012.3396606445312,10.722167,10722.167 +20044,2025-03-09T12:38:45.446957-07:00,1012.329833984375,10.73685,10736.85 +20045,2025-03-09T12:38:56.171001-07:00,1012.345947265625,10.724044,10724.044 +20046,2025-03-09T12:39:06.895757-07:00,1012.345947265625,10.724756,10724.756 +20047,2025-03-09T12:39:17.624943-07:00,1012.3624877929688,10.729186,10729.186 +20048,2025-03-09T12:39:28.349108-07:00,1012.3507690429688,10.724165,10724.165 +20049,2025-03-09T12:39:39.076937-07:00,1012.3724365234375,10.727829,10727.829 +20050,2025-03-09T12:39:49.800143-07:00,1012.383544921875,10.723206,10723.206 +20051,2025-03-09T12:40:00.532514-07:00,1012.3688354492188,10.732371,10732.371 +20052,2025-03-09T12:40:11.252942-07:00,1012.3670043945312,10.720428,10720.428 +20053,2025-03-09T12:40:21.975005-07:00,1012.3505249023438,10.722063,10722.063 +20054,2025-03-09T12:40:32.702942-07:00,1012.345458984375,10.727937,10727.937 +20055,2025-03-09T12:40:43.427247-07:00,1012.3272094726562,10.724305,10724.305 +20056,2025-03-09T12:40:54.161967-07:00,1012.3568725585938,10.73472,10734.72 +20057,2025-03-09T12:41:04.886943-07:00,1012.3091430664062,10.724976,10724.976 +20058,2025-03-09T12:41:15.619105-07:00,1012.3418579101562,10.732162,10732.162 +20059,2025-03-09T12:41:26.340939-07:00,1012.3301391601562,10.721834,10721.834 +20060,2025-03-09T12:41:37.067374-07:00,1012.340087890625,10.726435,10726.435 +20061,2025-03-09T12:41:47.801924-07:00,1012.3233032226562,10.73455,10734.55 +20062,2025-03-09T12:41:58.538373-07:00,1012.36767578125,10.736449,10736.449 +20063,2025-03-09T12:42:09.262019-07:00,1012.3496704101562,10.723646,10723.646 +20064,2025-03-09T12:42:19.989434-07:00,1012.3856811523438,10.727415,10727.415 +20065,2025-03-09T12:42:30.710935-07:00,1012.3593139648438,10.721501,10721.501 +20066,2025-03-09T12:42:41.442129-07:00,1012.3362426757812,10.731194,10731.194 +20067,2025-03-09T12:42:52.169144-07:00,1012.3410034179688,10.727015,10727.015 +20068,2025-03-09T12:43:02.894941-07:00,1012.3278198242188,10.725797,10725.797 +20069,2025-03-09T12:43:13.619943-07:00,1012.3377075195312,10.725002,10725.002 +20070,2025-03-09T12:43:24.351157-07:00,1012.3410034179688,10.731214,10731.214 +20071,2025-03-09T12:43:35.075181-07:00,1012.2879028320312,10.724024,10724.024 +20072,2025-03-09T12:43:45.797942-07:00,1012.3440551757812,10.722761,10722.761 +20073,2025-03-09T12:43:56.527008-07:00,1012.2813110351562,10.729066,10729.066 +20074,2025-03-09T12:44:07.258330-07:00,1012.2725830078125,10.731322,10731.322 +20075,2025-03-09T12:44:17.977184-07:00,1012.2839965820312,10.718854,10718.854 +20076,2025-03-09T12:44:28.708404-07:00,1012.2792358398438,10.73122,10731.22 +20077,2025-03-09T12:44:39.440942-07:00,1012.2656860351562,10.732538,10732.538 +20078,2025-03-09T12:44:50.162216-07:00,1012.2539672851562,10.721274,10721.274 +20079,2025-03-09T12:45:00.884986-07:00,1012.252197265625,10.72277,10722.77 +20080,2025-03-09T12:45:11.611427-07:00,1012.271728515625,10.726441,10726.441 +20081,2025-03-09T12:45:22.347111-07:00,1012.2896728515625,10.735684,10735.684 +20082,2025-03-09T12:45:33.064942-07:00,1012.2831420898438,10.717831,10717.831 +20083,2025-03-09T12:45:43.796260-07:00,1012.3043823242188,10.731318,10731.318 +20084,2025-03-09T12:45:54.515028-07:00,1012.2794799804688,10.718768,10718.768 +20085,2025-03-09T12:46:05.239478-07:00,1012.307373046875,10.72445,10724.45 +20086,2025-03-09T12:46:15.962154-07:00,1012.2971801757812,10.722676,10722.676 +20087,2025-03-09T12:46:26.683953-07:00,1012.2857666015625,10.721799,10721.799 +20088,2025-03-09T12:46:37.408942-07:00,1012.3052368164062,10.724989,10724.989 +20089,2025-03-09T12:46:48.130115-07:00,1012.2689208984375,10.721173,10721.173 +20090,2025-03-09T12:46:58.852166-07:00,1012.2175903320312,10.722051,10722.051 +20091,2025-03-09T12:47:09.574110-07:00,1012.2340698242188,10.721944,10721.944 +20092,2025-03-09T12:47:20.307750-07:00,1012.23046875,10.73364,10733.64 +20093,2025-03-09T12:47:31.030001-07:00,1012.2432861328125,10.722251,10722.251 +20094,2025-03-09T12:47:41.755225-07:00,1012.2466430664062,10.725224,10725.224 +20095,2025-03-09T12:47:52.474155-07:00,1012.2631225585938,10.71893,10718.93 +20096,2025-03-09T12:48:03.193123-07:00,1012.2810668945312,10.718968,10718.968 +20097,2025-03-09T12:48:13.919946-07:00,1012.2709350585938,10.726823,10726.823 +20098,2025-03-09T12:48:24.641113-07:00,1012.2562255859375,10.721167,10721.167 +20099,2025-03-09T12:48:35.369007-07:00,1012.2625122070312,10.727894,10727.894 +20100,2025-03-09T12:48:46.094942-07:00,1012.23095703125,10.725935,10725.935 +20101,2025-03-09T12:48:56.823071-07:00,1012.193115234375,10.728129,10728.129 +20102,2025-03-09T12:49:07.549972-07:00,1012.1961059570312,10.726901,10726.901 +20103,2025-03-09T12:49:18.266041-07:00,1012.1961059570312,10.716069,10716.069 +20104,2025-03-09T12:49:28.988946-07:00,1012.2176513671875,10.722905,10722.905 +20105,2025-03-09T12:49:39.714145-07:00,1012.2125854492188,10.725199,10725.199 +20106,2025-03-09T12:49:50.442970-07:00,1012.1876831054688,10.728825,10728.825 +20107,2025-03-09T12:50:01.164122-07:00,1012.197509765625,10.721152,10721.152 +20108,2025-03-09T12:50:11.895940-07:00,1012.1990356445312,10.731818,10731.818 +20109,2025-03-09T12:50:22.622946-07:00,1012.1677856445312,10.727006,10727.006 +20110,2025-03-09T12:50:33.341151-07:00,1012.1693115234375,10.718205,10718.205 +20111,2025-03-09T12:50:44.065165-07:00,1012.1722412109375,10.724014,10724.014 +20112,2025-03-09T12:50:54.782940-07:00,1012.13623046875,10.717775,10717.775 +20113,2025-03-09T12:51:05.512196-07:00,1012.1392211914062,10.729256,10729.256 +20114,2025-03-09T12:51:16.234972-07:00,1012.1392211914062,10.722776,10722.776 +20115,2025-03-09T12:51:26.958942-07:00,1012.1278076171875,10.72397,10723.97 +20116,2025-03-09T12:51:37.687122-07:00,1012.1443481445312,10.72818,10728.18 +20117,2025-03-09T12:51:48.416680-07:00,1012.1593627929688,10.729558,10729.558 +20118,2025-03-09T12:51:59.143224-07:00,1012.1461181640625,10.726544,10726.544 +20119,2025-03-09T12:52:09.861940-07:00,1012.1395263671875,10.718716,10718.716 +20120,2025-03-09T12:52:20.593946-07:00,1012.1377563476562,10.732006,10732.006 +20121,2025-03-09T12:52:31.370205-07:00,1012.1359252929688,10.776259,10776.259 +20122,2025-03-09T12:52:42.091172-07:00,1012.1525268554688,10.720967,10720.967 +20123,2025-03-09T12:52:52.815390-07:00,1012.131103515625,10.724218,10724.218 +20124,2025-03-09T12:53:03.540389-07:00,1012.09814453125,10.724999,10724.999 +20125,2025-03-09T12:53:14.267439-07:00,1012.134765625,10.72705,10727.05 +20126,2025-03-09T12:53:24.997208-07:00,1012.114990234375,10.729769,10729.769 +20127,2025-03-09T12:53:35.722242-07:00,1012.1197509765625,10.725034,10725.034 +20128,2025-03-09T12:53:46.450347-07:00,1012.057373046875,10.728105,10728.105 +20129,2025-03-09T12:53:57.171180-07:00,1012.0984497070312,10.720833,10720.833 +20130,2025-03-09T12:54:07.896380-07:00,1012.09033203125,10.7252,10725.2 +20131,2025-03-09T12:54:18.623174-07:00,1012.0984497070312,10.726794,10726.794 +20132,2025-03-09T12:54:29.355530-07:00,1012.085205078125,10.732356,10732.356 +20133,2025-03-09T12:54:40.079202-07:00,1012.0606079101562,10.723672,10723.672 +20134,2025-03-09T12:54:50.808249-07:00,1012.0672607421875,10.729047,10729.047 +20135,2025-03-09T12:55:01.526538-07:00,1012.0687255859375,10.718289,10718.289 +20136,2025-03-09T12:55:12.257174-07:00,1012.0540771484375,10.730636,10730.636 +20137,2025-03-09T12:55:22.983177-07:00,1012.0753173828125,10.726003,10726.003 +20138,2025-03-09T12:55:33.715332-07:00,1012.0739135742188,10.732155,10732.155 +20139,2025-03-09T12:55:44.442338-07:00,1012.083740234375,10.727006,10727.006 +20140,2025-03-09T12:55:55.171948-07:00,1012.0257568359375,10.72961,10729.61 +20141,2025-03-09T12:56:05.893207-07:00,1012.0309448242188,10.721259,10721.259 +20142,2025-03-09T12:56:16.612275-07:00,1012.060302734375,10.719068,10719.068 +20143,2025-03-09T12:56:27.340173-07:00,1012.033935546875,10.727898,10727.898 +20144,2025-03-09T12:56:38.063500-07:00,1012.02392578125,10.723327,10723.327 +20145,2025-03-09T12:56:48.795000-07:00,1012.0254516601562,10.7315,10731.5 +20146,2025-03-09T12:56:59.521318-07:00,1012.0401611328125,10.726318,10726.318 +20147,2025-03-09T12:57:10.245343-07:00,1012.0108032226562,10.724025,10724.025 +20148,2025-03-09T12:57:20.967176-07:00,1012.0137329101562,10.721833,10721.833 +20149,2025-03-09T12:57:31.691376-07:00,1012.005615234375,10.7242,10724.2 +20150,2025-03-09T12:57:42.407178-07:00,1011.990966796875,10.715802,10715.802 +20151,2025-03-09T12:57:53.133362-07:00,1012.005615234375,10.726184,10726.184 +20152,2025-03-09T12:58:03.858242-07:00,1011.9857788085938,10.72488,10724.88 +20153,2025-03-09T12:58:14.586473-07:00,1012.0154418945312,10.728231,10728.231 +20154,2025-03-09T12:58:25.307177-07:00,1012.0236206054688,10.720704,10720.704 +20155,2025-03-09T12:58:36.037251-07:00,1011.9824829101562,10.730074,10730.074 +20156,2025-03-09T12:58:46.755229-07:00,1011.962646484375,10.717978,10717.978 +20157,2025-03-09T12:58:57.481331-07:00,1011.96923828125,10.726102,10726.102 +20158,2025-03-09T12:59:08.214847-07:00,1012.0037231445312,10.733516,10733.516 +20159,2025-03-09T12:59:18.938181-07:00,1012.0103759765625,10.723334,10723.334 +20160,2025-03-09T12:59:29.662175-07:00,1012.018798828125,10.723994,10723.994 +20161,2025-03-09T12:59:40.389209-07:00,1012.005615234375,10.727034,10727.034 +20162,2025-03-09T12:59:51.107447-07:00,1011.9971923828125,10.718238,10718.238 +20163,2025-03-09T13:00:01.833178-07:00,1011.9840087890625,10.725731,10725.731 +20164,2025-03-09T13:00:12.564207-07:00,1012.0103759765625,10.731029,10731.029 +20165,2025-03-09T13:00:23.292345-07:00,1011.9906005859375,10.728138,10728.138 +20166,2025-03-09T13:00:34.021579-07:00,1012.005615234375,10.729234,10729.234 +20167,2025-03-09T13:00:44.742402-07:00,1012.005615234375,10.720823,10720.823 +20168,2025-03-09T13:00:55.467178-07:00,1011.9527587890625,10.724776,10724.776 +20169,2025-03-09T13:01:06.195392-07:00,1011.99560546875,10.728214,10728.214 +20170,2025-03-09T13:01:16.925348-07:00,1011.98388671875,10.729956,10729.956 +20171,2025-03-09T13:01:27.656242-07:00,1011.98388671875,10.730894,10730.894 +20172,2025-03-09T13:01:38.376446-07:00,1011.950927734375,10.720204,10720.204 +20173,2025-03-09T13:01:49.104174-07:00,1011.9773559570312,10.727728,10727.728 +20174,2025-03-09T13:01:59.841387-07:00,1011.9494018554688,10.737213,10737.213 +20175,2025-03-09T13:02:10.566229-07:00,1012.0037231445312,10.724842,10724.842 +20176,2025-03-09T13:02:21.291363-07:00,1011.98388671875,10.725134,10725.134 +20177,2025-03-09T13:02:32.021200-07:00,1011.987548828125,10.729837,10729.837 +20178,2025-03-09T13:02:42.752355-07:00,1011.9773559570312,10.731155,10731.155 +20179,2025-03-09T13:02:53.483437-07:00,1011.9494018554688,10.731082,10731.082 +20180,2025-03-09T13:03:04.205175-07:00,1011.9707641601562,10.721738,10721.738 +20181,2025-03-09T13:03:14.930300-07:00,1011.962646484375,10.725125,10725.125 +20182,2025-03-09T13:03:25.658368-07:00,1011.936279296875,10.728068,10728.068 +20183,2025-03-09T13:03:36.382676-07:00,1011.9824829101562,10.724308,10724.308 +20184,2025-03-09T13:03:47.110170-07:00,1011.9923706054688,10.727494,10727.494 +20185,2025-03-09T13:03:57.837389-07:00,1011.9659423828125,10.727219,10727.219 +20186,2025-03-09T13:04:08.566595-07:00,1011.9527587890625,10.729206,10729.206 +20187,2025-03-09T13:04:19.291362-07:00,1011.9689331054688,10.724767,10724.767 +20188,2025-03-09T13:04:30.018575-07:00,1011.970703125,10.727213,10727.213 +20189,2025-03-09T13:04:40.737921-07:00,1011.9868774414062,10.719346,10719.346 +20190,2025-03-09T13:04:51.465354-07:00,1011.958984375,10.727433,10727.433 +20191,2025-03-09T13:05:02.193373-07:00,1011.9754638671875,10.728019,10728.019 +20192,2025-03-09T13:05:12.922355-07:00,1011.9652099609375,10.728982,10728.982 +20193,2025-03-09T13:05:23.650566-07:00,1012.0064086914062,10.728211,10728.211 +20194,2025-03-09T13:05:34.376546-07:00,1011.98828125,10.72598,10725.98 +20195,2025-03-09T13:05:45.099425-07:00,1011.9846801757812,10.722879,10722.879 +20196,2025-03-09T13:05:55.828177-07:00,1011.9681396484375,10.728752,10728.752 +20197,2025-03-09T13:06:06.554587-07:00,1011.971435546875,10.72641,10726.41 +20198,2025-03-09T13:06:17.282286-07:00,1011.9912719726562,10.727699,10727.699 +20199,2025-03-09T13:06:28.003699-07:00,1011.974365234375,10.721413,10721.413 +20200,2025-03-09T13:06:38.735259-07:00,1011.9347534179688,10.73156,10731.56 +20201,2025-03-09T13:06:49.459348-07:00,1011.9645385742188,10.724089,10724.089 +20202,2025-03-09T13:07:00.195178-07:00,1011.98388671875,10.73583,10735.83 +20203,2025-03-09T13:07:10.921301-07:00,1011.9640502929688,10.726123,10726.123 +20204,2025-03-09T13:07:21.640172-07:00,1011.9607543945312,10.718871,10718.871 +20205,2025-03-09T13:07:32.369376-07:00,1011.9901733398438,10.729204,10729.204 +20206,2025-03-09T13:07:43.094176-07:00,1011.955322265625,10.7248,10724.8 +20207,2025-03-09T13:07:53.819658-07:00,1011.9835815429688,10.725482,10725.482 +20208,2025-03-09T13:08:04.543243-07:00,1011.9420166015625,10.723585,10723.585 +20209,2025-03-09T13:08:15.276278-07:00,1011.9520263671875,10.733035,10733.035 +20210,2025-03-09T13:08:26.001564-07:00,1011.9784545898438,10.725286,10725.286 +20211,2025-03-09T13:08:36.722772-07:00,1011.9468994140625,10.721208,10721.208 +20212,2025-03-09T13:08:47.449349-07:00,1011.927001953125,10.726577,10726.577 +20213,2025-03-09T13:08:58.177070-07:00,1011.9402465820312,10.727721,10727.721 +20214,2025-03-09T13:09:08.906177-07:00,1011.9288330078125,10.729107,10729.107 +20215,2025-03-09T13:09:19.640344-07:00,1011.9071655273438,10.734167,10734.167 +20216,2025-03-09T13:09:30.363586-07:00,1011.9137573242188,10.723242,10723.242 +20217,2025-03-09T13:09:41.087088-07:00,1011.9501342773438,10.723502,10723.502 +20218,2025-03-09T13:09:51.824037-07:00,1011.9002075195312,10.736949,10736.949 +20219,2025-03-09T13:10:02.555359-07:00,1011.9398193359375,10.731322,10731.322 +20220,2025-03-09T13:10:13.280194-07:00,1011.916748046875,10.724835,10724.835 +20221,2025-03-09T13:10:24.006386-07:00,1011.905029296875,10.726192,10726.192 +20222,2025-03-09T13:10:34.734202-07:00,1011.9332275390625,10.727816,10727.816 +20223,2025-03-09T13:10:45.465590-07:00,1011.9229736328125,10.731388,10731.388 +20224,2025-03-09T13:10:56.193369-07:00,1011.88330078125,10.727779,10727.779 +20225,2025-03-09T13:11:06.923688-07:00,1011.8851318359375,10.730319,10730.319 +20226,2025-03-09T13:11:17.654350-07:00,1011.8800048828125,10.730662,10730.662 +20227,2025-03-09T13:11:28.381174-07:00,1011.8814086914062,10.726824,10726.824 +20228,2025-03-09T13:11:39.111415-07:00,1011.8682861328125,10.730241,10730.241 +20229,2025-03-09T13:11:49.844249-07:00,1011.87158203125,10.732834,10732.834 +20230,2025-03-09T13:12:00.572231-07:00,1011.8568115234375,10.727982,10727.982 +20231,2025-03-09T13:12:11.302177-07:00,1011.8531494140625,10.729946,10729.946 +20232,2025-03-09T13:12:22.037367-07:00,1011.8696899414062,10.73519,10735.19 +20233,2025-03-09T13:12:32.765203-07:00,1011.8348388671875,10.727836,10727.836 +20234,2025-03-09T13:12:43.492438-07:00,1011.852783203125,10.727235,10727.235 +20235,2025-03-09T13:12:54.227011-07:00,1011.84619140625,10.734573,10734.573 +20236,2025-03-09T13:13:04.959172-07:00,1011.82958984375,10.732161,10732.161 +20237,2025-03-09T13:13:15.685314-07:00,1011.8479614257812,10.726142,10726.142 +20238,2025-03-09T13:13:26.422343-07:00,1011.837646484375,10.737029,10737.029 +20239,2025-03-09T13:13:37.144386-07:00,1011.81640625,10.722043,10722.043 +20240,2025-03-09T13:13:47.879406-07:00,1011.8262329101562,10.73502,10735.02 +20241,2025-03-09T13:13:58.610352-07:00,1011.81640625,10.730946,10730.946 +20242,2025-03-09T13:14:09.331376-07:00,1011.7932739257812,10.721024,10721.024 +20243,2025-03-09T13:14:20.066209-07:00,1011.7848510742188,10.734833,10734.833 +20244,2025-03-09T13:14:30.796200-07:00,1011.8013305664062,10.729991,10729.991 +20245,2025-03-09T13:14:41.529179-07:00,1011.7932739257812,10.732979,10732.979 +20246,2025-03-09T13:14:52.265280-07:00,1011.8079833984375,10.736101,10736.101 +20247,2025-03-09T13:15:02.994365-07:00,1011.7881469726562,10.729085,10729.085 +20248,2025-03-09T13:15:13.723312-07:00,1011.782958984375,10.728947,10728.947 +20249,2025-03-09T13:15:24.445190-07:00,1011.8160400390625,10.721878,10721.878 +20250,2025-03-09T13:15:35.173175-07:00,1011.7979736328125,10.727985,10727.985 +20251,2025-03-09T13:15:45.906180-07:00,1011.8046264648438,10.733005,10733.005 +20252,2025-03-09T13:15:56.630350-07:00,1011.7847900390625,10.72417,10724.17 +20253,2025-03-09T13:16:07.361204-07:00,1011.7862548828125,10.730854,10730.854 +20254,2025-03-09T13:16:18.092177-07:00,1011.7664184570312,10.730973,10730.973 +20255,2025-03-09T13:16:28.817177-07:00,1011.7678833007812,10.725,10725.0 +20256,2025-03-09T13:16:39.547251-07:00,1011.782958984375,10.730074,10730.074 +20257,2025-03-09T13:16:50.270632-07:00,1011.7697143554688,10.723381,10723.381 +20258,2025-03-09T13:17:00.993376-07:00,1011.7762451171875,10.722744,10722.744 +20259,2025-03-09T13:17:11.721178-07:00,1011.7697143554688,10.727802,10727.802 +20260,2025-03-09T13:17:22.451952-07:00,1011.7528076171875,10.730774,10730.774 +20261,2025-03-09T13:17:33.176176-07:00,1011.7726440429688,10.724224,10724.224 +20262,2025-03-09T13:17:43.903350-07:00,1011.7711791992188,10.727174,10727.174 +20263,2025-03-09T13:17:54.632378-07:00,1011.7891235351562,10.729028,10729.028 +20264,2025-03-09T13:18:05.356210-07:00,1011.8023681640625,10.723832,10723.832 +20265,2025-03-09T13:18:16.090362-07:00,1011.8170166015625,10.734152,10734.152 +20266,2025-03-09T13:18:26.814453-07:00,1011.77734375,10.724091,10724.091 +20267,2025-03-09T13:18:37.542377-07:00,1011.757568359375,10.727924,10727.924 +20268,2025-03-09T13:18:48.272177-07:00,1011.7457885742188,10.7298,10729.8 +20269,2025-03-09T13:18:58.998169-07:00,1011.7424926757812,10.725992,10725.992 +20270,2025-03-09T13:19:09.725367-07:00,1011.7505493164062,10.727198,10727.198 +20271,2025-03-09T13:19:20.452428-07:00,1011.743896484375,10.727061,10727.061 +20272,2025-03-09T13:19:31.177376-07:00,1011.7457885742188,10.724948,10724.948 +20273,2025-03-09T13:19:41.902177-07:00,1011.7273559570312,10.724801,10724.801 +20274,2025-03-09T13:19:52.628170-07:00,1011.6943969726562,10.725993,10725.993 +20275,2025-03-09T13:20:03.360432-07:00,1011.689208984375,10.732262,10732.262 +20276,2025-03-09T13:20:14.079179-07:00,1011.6976318359375,10.718747,10718.747 +20277,2025-03-09T13:20:24.810021-07:00,1011.6939086914062,10.730842,10730.842 +20278,2025-03-09T13:20:35.540177-07:00,1011.6726684570312,10.730156,10730.156 +20279,2025-03-09T13:20:46.260426-07:00,1011.67919921875,10.720249,10720.249 +20280,2025-03-09T13:20:56.986280-07:00,1011.719970703125,10.725854,10725.854 +20281,2025-03-09T13:21:07.715177-07:00,1011.7005615234375,10.728897,10728.897 +20282,2025-03-09T13:21:18.448383-07:00,1011.6873168945312,10.733206,10733.206 +20283,2025-03-09T13:21:29.176174-07:00,1011.6810913085938,10.727791,10727.791 +20284,2025-03-09T13:21:39.899390-07:00,1011.7156372070312,10.723216,10723.216 +20285,2025-03-09T13:21:50.628538-07:00,1011.6532592773438,10.729148,10729.148 +20286,2025-03-09T13:22:01.355210-07:00,1011.6749877929688,10.726672,10726.672 +20287,2025-03-09T13:22:12.085509-07:00,1011.6790771484375,10.730299,10730.299 +20288,2025-03-09T13:22:22.810236-07:00,1011.7139282226562,10.724727,10724.727 +20289,2025-03-09T13:22:33.536371-07:00,1011.6828002929688,10.726135,10726.135 +20290,2025-03-09T13:22:44.259204-07:00,1011.6949462890625,10.722833,10722.833 +20291,2025-03-09T13:22:54.985178-07:00,1011.6953125,10.725974,10725.974 +20292,2025-03-09T13:23:05.716802-07:00,1011.684326171875,10.731624,10731.624 +20293,2025-03-09T13:23:16.438236-07:00,1011.6994018554688,10.721434,10721.434 +20294,2025-03-09T13:23:27.163319-07:00,1011.6766357421875,10.725083,10725.083 +20295,2025-03-09T13:23:37.890320-07:00,1011.6884155273438,10.727001,10727.001 +20296,2025-03-09T13:23:48.628176-07:00,1011.6873168945312,10.737856,10737.856 +20297,2025-03-09T13:23:59.348608-07:00,1011.6428833007812,10.720432,10720.432 +20298,2025-03-09T13:24:10.074801-07:00,1011.6612548828125,10.726193,10726.193 +20299,2025-03-09T13:24:20.803176-07:00,1011.6565551757812,10.728375,10728.375 +20300,2025-03-09T13:24:31.525274-07:00,1011.6553955078125,10.722098,10722.098 +20301,2025-03-09T13:24:42.258173-07:00,1011.6668090820312,10.732899,10732.899 +20302,2025-03-09T13:24:52.979566-07:00,1011.6884155273438,10.721393,10721.393 +20303,2025-03-09T13:25:03.700174-07:00,1011.66357421875,10.720608,10720.608 +20304,2025-03-09T13:25:14.436177-07:00,1011.6525268554688,10.736003,10736.003 +20305,2025-03-09T13:25:25.160251-07:00,1011.6903076171875,10.724074,10724.074 +20306,2025-03-09T13:25:35.886277-07:00,1011.6624145507812,10.726026,10726.026 +20307,2025-03-09T13:25:46.614551-07:00,1011.7318115234375,10.728274,10728.274 +20308,2025-03-09T13:25:57.332179-07:00,1011.6660766601562,10.717628,10717.628 +20309,2025-03-09T13:26:08.057365-07:00,1011.6051635742188,10.725186,10725.186 +20310,2025-03-09T13:26:18.784169-07:00,1011.6726684570312,10.726804,10726.804 +20311,2025-03-09T13:26:29.515370-07:00,1011.6364135742188,10.731201,10731.201 +20312,2025-03-09T13:26:40.241473-07:00,1011.6415405273438,10.726103,10726.103 +20313,2025-03-09T13:26:50.974246-07:00,1011.6613159179688,10.732773,10732.773 +20314,2025-03-09T13:27:01.698322-07:00,1011.6580200195312,10.724076,10724.076 +20315,2025-03-09T13:27:12.430201-07:00,1011.618408203125,10.731879,10731.879 +20316,2025-03-09T13:27:23.153332-07:00,1011.6088256835938,10.723131,10723.131 +20317,2025-03-09T13:27:33.882144-07:00,1011.6021728515625,10.728812,10728.812 +20318,2025-03-09T13:27:44.610709-07:00,1011.628662109375,10.728565,10728.565 +20319,2025-03-09T13:27:55.347408-07:00,1011.6580200195312,10.736699,10736.699 +20320,2025-03-09T13:28:06.070404-07:00,1011.615478515625,10.722996,10722.996 +20321,2025-03-09T13:28:16.796720-07:00,1011.6004028320312,10.726316,10726.316 +20322,2025-03-09T13:28:27.530775-07:00,1011.6282958984375,10.734055,10734.055 +20323,2025-03-09T13:28:38.257173-07:00,1011.6282958984375,10.726398,10726.398 +20324,2025-03-09T13:28:48.977691-07:00,1011.6282958984375,10.720518,10720.518 +20325,2025-03-09T13:28:59.710347-07:00,1011.65625,10.732656,10732.656 +20326,2025-03-09T13:29:10.440207-07:00,1011.6693725585938,10.72986,10729.86 +20327,2025-03-09T13:29:21.166356-07:00,1011.6726684570312,10.726149,10726.149 +20328,2025-03-09T13:29:31.891174-07:00,1011.6429443359375,10.724818,10724.818 +20329,2025-03-09T13:29:42.625176-07:00,1011.6793212890625,10.734002,10734.002 +20330,2025-03-09T13:29:53.348658-07:00,1011.6807861328125,10.723482,10723.482 +20331,2025-03-09T13:30:04.072375-07:00,1011.690673828125,10.723717,10723.717 +20332,2025-03-09T13:30:14.801373-07:00,1011.7120361328125,10.728998,10728.998 +20333,2025-03-09T13:30:25.526380-07:00,1011.6741943359375,10.725007,10725.007 +20334,2025-03-09T13:30:36.257174-07:00,1011.6755981445312,10.730794,10730.794 +20335,2025-03-09T13:30:46.989177-07:00,1011.67236328125,10.732003,10732.003 +20336,2025-03-09T13:30:57.720202-07:00,1011.668701171875,10.731025,10731.025 +20337,2025-03-09T13:31:08.447236-07:00,1011.6719360351562,10.727034,10727.034 +20338,2025-03-09T13:31:19.172875-07:00,1011.6521606445312,10.725639,10725.639 +20339,2025-03-09T13:31:27.383800-07:00,1011.625732421875,8.210925,8210.925 +20340,2025-03-09T13:31:29.905175-07:00,1011.6554565429688,2.521375,2521.375 +20341,2025-03-09T13:31:40.628178-07:00,1011.6587524414062,10.723003,10723.003 +20342,2025-03-09T13:31:51.358961-07:00,1011.6884155273438,10.730783,10730.783 +20343,2025-03-09T13:32:02.088207-07:00,1011.6568603515625,10.729246,10729.246 +20344,2025-03-09T13:32:12.823365-07:00,1011.68994140625,10.735158,10735.158 +20345,2025-03-09T13:32:23.549999-07:00,1011.67333984375,10.726634,10726.634 +20346,2025-03-09T13:32:34.285678-07:00,1011.669677734375,10.735679,10735.679 +20347,2025-03-09T13:32:45.008174-07:00,1011.6663818359375,10.722496,10722.496 +20348,2025-03-09T13:32:55.736220-07:00,1011.6612548828125,10.728046,10728.046 +20349,2025-03-09T13:33:06.474171-07:00,1011.6726684570312,10.737951,10737.951 +20350,2025-03-09T13:33:17.201516-07:00,1011.66748046875,10.727345,10727.345 +20351,2025-03-09T13:33:27.933042-07:00,1011.6575927734375,10.731526,10731.526 +20352,2025-03-09T13:33:38.660175-07:00,1011.6525268554688,10.727133,10727.133 +20353,2025-03-09T13:33:49.383344-07:00,1011.65576171875,10.723169,10723.169 +20354,2025-03-09T13:34:00.119196-07:00,1011.6590576171875,10.735852,10735.852 +20355,2025-03-09T13:34:10.839372-07:00,1011.6473388671875,10.720176,10720.176 +20356,2025-03-09T13:34:21.579268-07:00,1011.6520385742188,10.739896,10739.896 +20357,2025-03-09T13:34:32.297174-07:00,1011.6417846679688,10.717906,10717.906 +20358,2025-03-09T13:34:43.035208-07:00,1011.650146484375,10.738034,10738.034 +20359,2025-03-09T13:34:53.765341-07:00,1011.63330078125,10.730133,10730.133 +20360,2025-03-09T13:35:04.497254-07:00,1011.6152954101562,10.731913,10731.913 +20361,2025-03-09T13:35:15.218715-07:00,1011.6447143554688,10.721461,10721.461 +20362,2025-03-09T13:35:25.948195-07:00,1011.654541015625,10.72948,10729.48 +20363,2025-03-09T13:35:36.682177-07:00,1011.629638671875,10.733982,10733.982 +20364,2025-03-09T13:35:47.406191-07:00,1011.626220703125,10.724014,10724.014 +20365,2025-03-09T13:35:58.140853-07:00,1011.6442260742188,10.734662,10734.662 +20366,2025-03-09T13:36:08.867172-07:00,1011.63916015625,10.726319,10726.319 +20367,2025-03-09T13:36:19.598411-07:00,1011.6292114257812,10.731239,10731.239 +20368,2025-03-09T13:36:30.323179-07:00,1011.6322021484375,10.724768,10724.768 +20369,2025-03-09T13:36:41.058362-07:00,1011.6288452148438,10.735183,10735.183 +20370,2025-03-09T13:36:51.787261-07:00,1011.6369018554688,10.728899,10728.899 +20371,2025-03-09T13:37:02.519194-07:00,1011.62841796875,10.731933,10731.933 +20372,2025-03-09T13:37:13.250178-07:00,1011.6317138671875,10.730984,10730.984 +20373,2025-03-09T13:37:23.976351-07:00,1011.6464233398438,10.726173,10726.173 +20374,2025-03-09T13:37:34.702176-07:00,1011.6709594726562,10.725825,10725.825 +20375,2025-03-09T13:37:45.424062-07:00,1011.6526489257812,10.721886,10721.886 +20376,2025-03-09T13:37:56.153782-07:00,1011.6361083984375,10.72972,10729.72 +20377,2025-03-09T13:38:06.885174-07:00,1011.6507568359375,10.731392,10731.392 +20378,2025-03-09T13:38:17.611967-07:00,1011.6260986328125,10.726793,10726.793 +20379,2025-03-09T13:38:28.337235-07:00,1011.6473999023438,10.725268,10725.268 +20380,2025-03-09T13:38:39.066383-07:00,1011.6456298828125,10.729148,10729.148 +20381,2025-03-09T13:38:49.788197-07:00,1011.6551513671875,10.721814,10721.814 +20382,2025-03-09T13:39:00.514245-07:00,1011.6503295898438,10.726048,10726.048 +20383,2025-03-09T13:39:11.247086-07:00,1011.6550903320312,10.732841,10732.841 +20384,2025-03-09T13:39:21.973174-07:00,1011.643310546875,10.726088,10726.088 +20385,2025-03-09T13:39:32.691339-07:00,1011.6465454101562,10.718165,10718.165 +20386,2025-03-09T13:39:43.423818-07:00,1011.6282958984375,10.732479,10732.479 +20387,2025-03-09T13:39:54.148280-07:00,1011.6609497070312,10.724462,10724.462 +20388,2025-03-09T13:40:04.879552-07:00,1011.6425170898438,10.731272,10731.272 +20389,2025-03-09T13:40:15.614174-07:00,1011.640625,10.734622,10734.622 +20390,2025-03-09T13:40:26.341176-07:00,1011.6390380859375,10.727002,10727.002 +20391,2025-03-09T13:40:37.064385-07:00,1011.6621704101562,10.723209,10723.209 +20392,2025-03-09T13:40:47.799174-07:00,1011.6603393554688,10.734789,10734.789 +20393,2025-03-09T13:40:58.530379-07:00,1011.65185546875,10.731205,10731.205 +20394,2025-03-09T13:41:09.260326-07:00,1011.6680297851562,10.729947,10729.947 +20395,2025-03-09T13:41:19.986397-07:00,1011.6529541015625,10.726071,10726.071 +20396,2025-03-09T13:41:30.721203-07:00,1011.6726684570312,10.734806,10734.806 +20397,2025-03-09T13:41:41.448755-07:00,1011.6095581054688,10.727552,10727.552 +20398,2025-03-09T13:41:52.172171-07:00,1011.680419921875,10.723416,10723.416 +20399,2025-03-09T13:42:02.906603-07:00,1011.6322021484375,10.734432,10734.432 +20400,2025-03-09T13:42:13.632537-07:00,1011.6582641601562,10.725934,10725.934 +20401,2025-03-09T13:42:24.362179-07:00,1011.6615600585938,10.729642,10729.642 +20402,2025-03-09T13:42:35.088351-07:00,1011.6265869140625,10.726172,10726.172 +20403,2025-03-09T13:42:45.821204-07:00,1011.6298217773438,10.732853,10732.853 +20404,2025-03-09T13:42:56.558386-07:00,1011.6195068359375,10.737182,10737.182 +20405,2025-03-09T13:43:07.288395-07:00,1011.6029663085938,10.730009,10730.009 +20406,2025-03-09T13:43:18.014174-07:00,1011.6044311523438,10.725779,10725.779 +20407,2025-03-09T13:43:28.741475-07:00,1011.597412109375,10.727301,10727.301 +20408,2025-03-09T13:43:39.475190-07:00,1011.5940551757812,10.733715,10733.715 +20409,2025-03-09T13:43:50.207404-07:00,1011.6171875,10.732214,10732.214 +20410,2025-03-09T13:44:00.942375-07:00,1011.5870361328125,10.734971,10734.971 +20411,2025-03-09T13:44:11.671583-07:00,1011.6017456054688,10.729208,10729.208 +20412,2025-03-09T13:44:22.405358-07:00,1011.6082763671875,10.733775,10733.775 +20413,2025-03-09T13:44:33.136495-07:00,1011.5751342773438,10.731137,10731.137 +20414,2025-03-09T13:44:43.856355-07:00,1011.5435791015625,10.71986,10719.86 +20415,2025-03-09T13:44:54.596059-07:00,1011.5828247070312,10.739704,10739.704 +20416,2025-03-09T13:45:05.323371-07:00,1011.5647583007812,10.727312,10727.312 +20417,2025-03-09T13:45:16.050377-07:00,1011.5477905273438,10.727006,10727.006 +20418,2025-03-09T13:45:26.780176-07:00,1011.5790405273438,10.729799,10729.799 +20419,2025-03-09T13:45:37.518201-07:00,1011.569091796875,10.738025,10738.025 +20420,2025-03-09T13:45:48.245173-07:00,1011.5803833007812,10.726972,10726.972 +20421,2025-03-09T13:45:58.975476-07:00,1011.5671997070312,10.730303,10730.303 +20422,2025-03-09T13:46:09.714205-07:00,1011.56201171875,10.738729,10738.729 +20423,2025-03-09T13:46:20.449248-07:00,1011.556884765625,10.735043,10735.043 +20424,2025-03-09T13:46:31.170058-07:00,1011.55029296875,10.72081,10720.81 +20425,2025-03-09T13:46:41.913215-07:00,1011.6063842773438,10.743157,10743.157 +20426,2025-03-09T13:46:52.641177-07:00,1011.540283203125,10.727962,10727.962 +20427,2025-03-09T13:47:03.375252-07:00,1011.5714111328125,10.734075,10734.075 +20428,2025-03-09T13:47:14.106426-07:00,1011.5662231445312,10.731174,10731.174 +20429,2025-03-09T13:47:24.839213-07:00,1011.5828247070312,10.732787,10732.787 +20430,2025-03-09T13:47:35.574358-07:00,1011.5349731445312,10.735145,10735.145 +20431,2025-03-09T13:47:46.303354-07:00,1011.5298461914062,10.728996,10728.996 +20432,2025-03-09T13:47:57.040174-07:00,1011.5217895507812,10.73682,10736.82 +20433,2025-03-09T13:48:07.768176-07:00,1011.5511474609375,10.728002,10728.002 +20434,2025-03-09T13:48:18.505179-07:00,1011.5231323242188,10.737003,10737.003 +20435,2025-03-09T13:48:29.234197-07:00,1011.5081176757812,10.729018,10729.018 +20436,2025-03-09T13:48:39.966387-07:00,1011.5015869140625,10.73219,10732.19 +20437,2025-03-09T13:48:50.701193-07:00,1011.5047607421875,10.734806,10734.806 +20438,2025-03-09T13:49:01.441453-07:00,1011.4932861328125,10.74026,10740.26 +20439,2025-03-09T13:49:12.170173-07:00,1011.5264282226562,10.72872,10728.72 +20440,2025-03-09T13:49:22.897370-07:00,1011.5145874023438,10.727197,10727.197 +20441,2025-03-09T13:49:33.624565-07:00,1011.5094604492188,10.727195,10727.195 +20442,2025-03-09T13:49:44.360176-07:00,1011.4896240234375,10.735611,10735.611 +20443,2025-03-09T13:49:55.096391-07:00,1011.5127563476562,10.736215,10736.215 +20444,2025-03-09T13:50:05.827471-07:00,1011.5127563476562,10.73108,10731.08 +20445,2025-03-09T13:50:16.553188-07:00,1011.49951171875,10.725717,10725.717 +20446,2025-03-09T13:50:27.285170-07:00,1011.4664306640625,10.731982,10731.982 +20447,2025-03-09T13:50:38.022519-07:00,1011.4762573242188,10.737349,10737.349 +20448,2025-03-09T13:50:48.754351-07:00,1011.5173950195312,10.731832,10731.832 +20449,2025-03-09T13:50:59.478173-07:00,1011.4630737304688,10.723822,10723.822 +20450,2025-03-09T13:51:10.211385-07:00,1011.4696655273438,10.733212,10733.212 +20451,2025-03-09T13:51:20.951836-07:00,1011.4498291015625,10.740451,10740.451 +20452,2025-03-09T13:51:31.676172-07:00,1011.4645385742188,10.724336,10724.336 +20453,2025-03-09T13:51:42.412201-07:00,1011.484375,10.736029,10736.029 +20454,2025-03-09T13:51:53.136343-07:00,1011.4762573242188,10.724142,10724.142 +20455,2025-03-09T13:52:03.875199-07:00,1011.4777221679688,10.738856,10738.856 +20456,2025-03-09T13:52:14.601611-07:00,1011.4990844726562,10.726412,10726.412 +20457,2025-03-09T13:52:25.359020-07:00,1011.4725952148438,10.757409,10757.409 +20458,2025-03-09T13:52:36.092833-07:00,1011.4806518554688,10.733813,10733.813 +20459,2025-03-09T13:52:46.826812-07:00,1011.522216796875,10.733979,10733.979 +20460,2025-03-09T13:52:57.561787-07:00,1011.5103759765625,10.734975,10734.975 +20461,2025-03-09T13:53:08.290971-07:00,1011.462646484375,10.729184,10729.184 +20462,2025-03-09T13:53:19.033442-07:00,1011.4508056640625,10.742471,10742.471 +20463,2025-03-09T13:53:29.756790-07:00,1011.4757690429688,10.723348,10723.348 +20464,2025-03-09T13:53:40.496880-07:00,1011.48388671875,10.74009,10740.09 +20465,2025-03-09T13:53:51.224992-07:00,1011.47216796875,10.728112,10728.112 +20466,2025-03-09T13:54:01.952073-07:00,1011.4589233398438,10.727081,10727.081 +20467,2025-03-09T13:54:12.685789-07:00,1011.430908203125,10.733716,10733.716 +20468,2025-03-09T13:54:23.422773-07:00,1011.417724609375,10.736984,10736.984 +20469,2025-03-09T13:54:34.149380-07:00,1011.42578125,10.726607,10726.607 +20470,2025-03-09T13:54:44.882882-07:00,1011.4276733398438,10.733502,10733.502 +20471,2025-03-09T13:54:55.607549-07:00,1011.4224853515625,10.724667,10724.667 +20472,2025-03-09T13:55:06.339789-07:00,1011.4305419921875,10.73224,10732.24 +20473,2025-03-09T13:55:17.074003-07:00,1011.4389038085938,10.734214,10734.214 +20474,2025-03-09T13:55:27.806969-07:00,1011.4437255859375,10.732966,10732.966 +20475,2025-03-09T13:55:38.539323-07:00,1011.4389038085938,10.732354,10732.354 +20476,2025-03-09T13:55:49.263899-07:00,1011.445556640625,10.724576,10724.576 +20477,2025-03-09T13:56:00.000392-07:00,1011.4205322265625,10.736493,10736.493 +20478,2025-03-09T13:56:10.728797-07:00,1011.4389038085938,10.728405,10728.405 +20479,2025-03-09T13:56:21.452790-07:00,1011.4801635742188,10.723993,10723.993 +20480,2025-03-09T13:56:32.184958-07:00,1011.4403686523438,10.732168,10732.168 +20481,2025-03-09T13:56:42.919832-07:00,1011.4484252929688,10.734874,10734.874 +20482,2025-03-09T13:56:53.645274-07:00,1011.447021484375,10.725442,10725.442 +20483,2025-03-09T13:57:04.384458-07:00,1011.447021484375,10.739184,10739.184 +20484,2025-03-09T13:57:15.103789-07:00,1011.4337768554688,10.719331,10719.331 +20485,2025-03-09T13:57:25.842973-07:00,1011.4617309570312,10.739184,10739.184 +20486,2025-03-09T13:57:36.569957-07:00,1011.4337768554688,10.726984,10726.984 +20487,2025-03-09T13:57:47.294862-07:00,1011.4285888671875,10.724905,10724.905 +20488,2025-03-09T13:57:58.030857-07:00,1011.4352416992188,10.735995,10735.995 +20489,2025-03-09T13:58:08.757157-07:00,1011.445556640625,10.7263,10726.3 +20490,2025-03-09T13:58:19.484787-07:00,1011.4154052734375,10.72763,10727.63 +20491,2025-03-09T13:58:30.204968-07:00,1011.4124755859375,10.720181,10720.181 +20492,2025-03-09T13:58:40.939119-07:00,1011.4058837890625,10.734151,10734.151 +20493,2025-03-09T13:58:51.663882-07:00,1011.4190673828125,10.724763,10724.763 +20494,2025-03-09T13:59:02.393973-07:00,1011.4337768554688,10.730091,10730.091 +20495,2025-03-09T13:59:13.119813-07:00,1011.4389038085938,10.72584,10725.84 +20496,2025-03-09T13:59:23.849862-07:00,1011.4006958007812,10.730049,10730.049 +20497,2025-03-09T13:59:34.582963-07:00,1011.4107055664062,10.733101,10733.101 +20498,2025-03-09T13:59:45.310936-07:00,1011.3908081054688,10.727973,10727.973 +20499,2025-03-09T13:59:56.041197-07:00,1011.4026489257812,10.730261,10730.261 +20500,2025-03-09T14:00:06.769981-07:00,1011.4026489257812,10.728784,10728.784 +20501,2025-03-09T14:00:17.499862-07:00,1011.3828125,10.729881,10729.881 +20502,2025-03-09T14:00:28.223163-07:00,1011.4653930664062,10.723301,10723.301 +20503,2025-03-09T14:00:38.952105-07:00,1011.415771484375,10.728942,10728.942 +20504,2025-03-09T14:00:49.689123-07:00,1011.4224853515625,10.737018,10737.018 +20505,2025-03-09T14:01:00.419031-07:00,1011.4290771484375,10.729908,10729.908 +20506,2025-03-09T14:01:11.139789-07:00,1011.4059448242188,10.720758,10720.758 +20507,2025-03-09T14:01:21.876908-07:00,1011.4078369140625,10.737119,10737.119 +20508,2025-03-09T14:01:32.603893-07:00,1011.3648681640625,10.726985,10726.985 +20509,2025-03-09T14:01:43.338785-07:00,1011.3978881835938,10.734892,10734.892 +20510,2025-03-09T14:01:54.069847-07:00,1011.3964233398438,10.731062,10731.062 +20511,2025-03-09T14:02:04.798117-07:00,1011.3765869140625,10.72827,10728.27 +20512,2025-03-09T14:02:15.531861-07:00,1011.3713989257812,10.733744,10733.744 +20513,2025-03-09T14:02:26.268790-07:00,1011.3912353515625,10.736929,10736.929 +20514,2025-03-09T14:02:37.004918-07:00,1011.3847045898438,10.736128,10736.128 +20515,2025-03-09T14:02:58.465782-07:00,1011.4110717773438,21.460864,21460.864 +20516,2025-03-09T14:03:09.191416-07:00,1011.3912353515625,10.725634,10725.634 +20517,2025-03-09T14:03:19.929988-07:00,1011.3898315429688,10.738572,10738.572 +20518,2025-03-09T14:03:30.663785-07:00,1011.3964233398438,10.733797,10733.797 +20519,2025-03-09T14:03:41.393789-07:00,1011.403076171875,10.730004,10730.004 +20520,2025-03-09T14:03:52.127783-07:00,1011.3912353515625,10.733994,10733.994 +20521,2025-03-09T14:04:02.853071-07:00,1011.3765869140625,10.725288,10725.288 +20522,2025-03-09T14:04:13.589005-07:00,1011.3713989257812,10.735934,10735.934 +20523,2025-03-09T14:04:24.324801-07:00,1011.3682250976562,10.735796,10735.796 +20524,2025-03-09T14:04:35.051357-07:00,1011.3748168945312,10.726556,10726.556 +20525,2025-03-09T14:04:45.432365-07:00,1011.361572265625,10.381008,10381.008 +20526,2025-03-09T14:04:45.780856-07:00,1011.3270263671875,0.348491,348.491 +20527,2025-03-09T14:04:56.508815-07:00,1011.3601684570312,10.727959,10727.959 +20528,2025-03-09T14:05:07.245972-07:00,1011.373291015625,10.737157,10737.157 +20529,2025-03-09T14:05:17.977784-07:00,1011.3585815429688,10.731812,10731.812 +20530,2025-03-09T14:05:28.714023-07:00,1011.357177734375,10.736239,10736.239 +20531,2025-03-09T14:05:39.445025-07:00,1011.3355712890625,10.731002,10731.002 +20532,2025-03-09T14:05:50.168790-07:00,1011.3704833984375,10.723765,10723.765 +20533,2025-03-09T14:06:00.907148-07:00,1011.3917236328125,10.738358,10738.358 +20534,2025-03-09T14:06:11.630051-07:00,1011.3487548828125,10.722903,10722.903 +20535,2025-03-09T14:06:22.372836-07:00,1011.3554077148438,10.742785,10742.785 +20536,2025-03-09T14:06:33.091859-07:00,1011.3554077148438,10.719023,10719.023 +20537,2025-03-09T14:06:43.830989-07:00,1011.3538818359375,10.73913,10739.13 +20538,2025-03-09T14:06:54.560919-07:00,1011.3473510742188,10.72993,10729.93 +20539,2025-03-09T14:07:05.295789-07:00,1011.3538818359375,10.73487,10734.87 +20540,2025-03-09T14:07:16.023997-07:00,1011.3392333984375,10.728208,10728.208 +20541,2025-03-09T14:07:26.764942-07:00,1011.3538818359375,10.740945,10740.945 +20542,2025-03-09T14:07:37.492083-07:00,1011.314208984375,10.727141,10727.141 +20543,2025-03-09T14:07:48.218880-07:00,1011.373779296875,10.726797,10726.797 +20544,2025-03-09T14:07:58.953995-07:00,1011.3340454101562,10.735115,10735.115 +20545,2025-03-09T14:08:09.683786-07:00,1011.32421875,10.729791,10729.791 +20546,2025-03-09T14:08:20.407575-07:00,1011.3573608398438,10.723789,10723.789 +20547,2025-03-09T14:08:31.144882-07:00,1011.330810546875,10.737307,10737.307 +20548,2025-03-09T14:08:41.877796-07:00,1011.330810546875,10.732914,10732.914 +20549,2025-03-09T14:08:52.603908-07:00,1011.32421875,10.726112,10726.112 +20550,2025-03-09T14:09:03.328923-07:00,1011.3507080078125,10.725015,10725.015 +20551,2025-03-09T14:09:14.061857-07:00,1011.403564453125,10.732934,10732.934 +20552,2025-03-09T14:09:24.793005-07:00,1011.3375244140625,10.731148,10731.148 +20553,2025-03-09T14:09:35.523975-07:00,1011.32421875,10.73097,10730.97 +20554,2025-03-09T14:09:46.258998-07:00,1011.3043823242188,10.735023,10735.023 +20555,2025-03-09T14:09:56.978978-07:00,1011.3440551757812,10.71998,10719.98 +20556,2025-03-09T14:10:07.708786-07:00,1011.2647094726562,10.729808,10729.808 +20557,2025-03-09T14:10:18.447783-07:00,1011.2977905273438,10.738997,10738.997 +20558,2025-03-09T14:10:29.169791-07:00,1011.3193969726562,10.722008,10722.008 +20559,2025-03-09T14:10:39.905991-07:00,1011.3076782226562,10.7362,10736.2 +20560,2025-03-09T14:10:50.636782-07:00,1011.3208618164062,10.730791,10730.791 +20561,2025-03-09T14:11:01.352969-07:00,1011.3275146484375,10.716187,10716.187 +20562,2025-03-09T14:11:12.088133-07:00,1011.2958374023438,10.735164,10735.164 +20563,2025-03-09T14:11:22.811787-07:00,1011.315673828125,10.723654,10723.654 +20564,2025-03-09T14:11:33.541091-07:00,1011.2958374023438,10.729304,10729.304 +20565,2025-03-09T14:11:44.268995-07:00,1011.30908203125,10.727904,10727.904 +20566,2025-03-09T14:11:55.004793-07:00,1011.3322143554688,10.735798,10735.798 +20567,2025-03-09T14:12:05.732969-07:00,1011.29248046875,10.728176,10728.176 +20568,2025-03-09T14:12:16.465784-07:00,1011.2579956054688,10.732815,10732.815 +20569,2025-03-09T14:12:27.192798-07:00,1011.2711791992188,10.727014,10727.014 +20570,2025-03-09T14:12:37.921119-07:00,1011.2792358398438,10.728321,10728.321 +20571,2025-03-09T14:12:48.652786-07:00,1011.2792358398438,10.731667,10731.667 +20572,2025-03-09T14:12:59.376965-07:00,1011.2461547851562,10.724179,10724.179 +20573,2025-03-09T14:13:10.110801-07:00,1011.287353515625,10.733836,10733.836 +20574,2025-03-09T14:13:20.843937-07:00,1011.2755737304688,10.733136,10733.136 +20575,2025-03-09T14:13:31.579021-07:00,1011.227783203125,10.735084,10735.084 +20576,2025-03-09T14:13:42.308966-07:00,1011.1881103515625,10.729945,10729.945 +20577,2025-03-09T14:13:53.043875-07:00,1011.211181640625,10.734909,10734.909 +20578,2025-03-09T14:14:03.768997-07:00,1011.2490844726562,10.725122,10725.122 +20579,2025-03-09T14:14:14.506981-07:00,1011.2079467773438,10.737984,10737.984 +20580,2025-03-09T14:14:25.231217-07:00,1011.1748657226562,10.724236,10724.236 +20581,2025-03-09T14:14:35.965787-07:00,1011.229248046875,10.73457,10734.57 +20582,2025-03-09T14:14:46.691025-07:00,1011.2145385742188,10.725238,10725.238 +20583,2025-03-09T14:14:57.423997-07:00,1011.2064819335938,10.732972,10732.972 +20584,2025-03-09T14:15:08.163787-07:00,1011.1799926757812,10.73979,10739.79 +20585,2025-03-09T14:15:18.893027-07:00,1011.213134765625,10.72924,10729.24 +20586,2025-03-09T14:15:29.625611-07:00,1011.2145385742188,10.732584,10732.584 +20587,2025-03-09T14:15:40.368047-07:00,1011.2079467773438,10.742436,10742.436 +20588,2025-03-09T14:15:51.091814-07:00,1011.17626953125,10.723767,10723.767 +20589,2025-03-09T14:16:01.823955-07:00,1011.2376708984375,10.732141,10732.141 +20590,2025-03-09T14:16:12.557923-07:00,1011.2178344726562,10.733968,10733.968 +20591,2025-03-09T14:16:23.283008-07:00,1011.1564331054688,10.725085,10725.085 +20592,2025-03-09T14:16:34.012963-07:00,1011.1251831054688,10.729955,10729.955 +20593,2025-03-09T14:16:44.748786-07:00,1011.1781005859375,10.735823,10735.823 +20594,2025-03-09T14:16:55.470278-07:00,1011.169677734375,10.721492,10721.492 +20595,2025-03-09T14:17:06.205152-07:00,1011.1531372070312,10.734874,10734.874 +20596,2025-03-09T14:17:16.930786-07:00,1011.1233520507812,10.725634,10725.634 +20597,2025-03-09T14:17:27.666861-07:00,1011.1218872070312,10.736075,10736.075 +20598,2025-03-09T14:17:38.396975-07:00,1011.1204833984375,10.730114,10730.114 +20599,2025-03-09T14:17:49.119823-07:00,1011.1473388671875,10.722848,10722.848 +20600,2025-03-09T14:17:59.850997-07:00,1011.1559448242188,10.731174,10731.174 +20601,2025-03-09T14:18:10.590004-07:00,1011.1292114257812,10.739007,10739.007 +20602,2025-03-09T14:18:21.313854-07:00,1011.1598510742188,10.72385,10723.85 +20603,2025-03-09T14:18:32.049843-07:00,1011.1453247070312,10.735989,10735.989 +20604,2025-03-09T14:18:42.777964-07:00,1011.1343994140625,10.728121,10728.121 +20605,2025-03-09T14:18:53.508000-07:00,1011.1381225585938,10.730036,10730.036 +20606,2025-03-09T14:19:04.232790-07:00,1011.1420288085938,10.72479,10724.79 +20607,2025-03-09T14:19:14.967970-07:00,1011.114501953125,10.73518,10735.18 +20608,2025-03-09T14:19:25.690099-07:00,1011.0753173828125,10.722129,10722.129 +20609,2025-03-09T14:19:36.418990-07:00,1011.10888671875,10.728891,10728.891 +20610,2025-03-09T14:19:47.156739-07:00,1011.087646484375,10.737749,10737.749 +20611,2025-03-09T14:19:57.881820-07:00,1011.0535888671875,10.725081,10725.081 +20612,2025-03-09T14:20:08.615594-07:00,1011.1281127929688,10.733774,10733.774 +20613,2025-03-09T14:20:19.350012-07:00,1011.1121215820312,10.734418,10734.418 +20614,2025-03-09T14:20:30.079823-07:00,1011.1470336914062,10.729811,10729.811 +20615,2025-03-09T14:20:40.818991-07:00,1011.140869140625,10.739168,10739.168 +20616,2025-03-09T14:20:51.548967-07:00,1011.098388671875,10.729976,10729.976 +20617,2025-03-09T14:21:02.282822-07:00,1011.1002197265625,10.733855,10733.855 +20618,2025-03-09T14:21:13.011998-07:00,1011.0921630859375,10.729176,10729.176 +20619,2025-03-09T14:21:23.740880-07:00,1011.0588989257812,10.728882,10728.882 +20620,2025-03-09T14:21:34.476600-07:00,1011.0526733398438,10.73572,10735.72 +20621,2025-03-09T14:21:45.201781-07:00,1011.0695190429688,10.725181,10725.181 +20622,2025-03-09T14:21:55.931985-07:00,1011.0398559570312,10.730204,10730.204 +20623,2025-03-09T14:22:06.663992-07:00,1011.043212890625,10.732007,10732.007 +20624,2025-03-09T14:22:17.393788-07:00,1011.053466796875,10.729796,10729.796 +20625,2025-03-09T14:22:28.128789-07:00,1011.053466796875,10.735001,10735.001 +20626,2025-03-09T14:22:38.853066-07:00,1011.0502319335938,10.724277,10724.277 +20627,2025-03-09T14:22:49.581820-07:00,1011.013916015625,10.728754,10728.754 +20628,2025-03-09T14:23:00.312576-07:00,1011.025634765625,10.730756,10730.756 +20629,2025-03-09T14:23:11.043995-07:00,1011.0322875976562,10.731419,10731.419 +20630,2025-03-09T14:23:21.777854-07:00,1011.017578125,10.733859,10733.859 +20631,2025-03-09T14:23:32.508925-07:00,1011.0028686523438,10.731071,10731.071 +20632,2025-03-09T14:23:43.243453-07:00,1011.01611328125,10.734528,10734.528 +20633,2025-03-09T14:23:53.973166-07:00,1011.0491943359375,10.729713,10729.713 +20634,2025-03-09T14:24:04.701269-07:00,1011.022705078125,10.728103,10728.103 +20635,2025-03-09T14:24:15.432258-07:00,1011.0275268554688,10.730989,10730.989 +20636,2025-03-09T14:24:26.162856-07:00,1010.9962768554688,10.730598,10730.598 +20637,2025-03-09T14:24:36.884203-07:00,1011.01611328125,10.721347,10721.347 +20638,2025-03-09T14:24:47.618901-07:00,1011.009521484375,10.734698,10734.698 +20639,2025-03-09T14:24:58.344793-07:00,1010.9830322265625,10.725892,10725.892 +20640,2025-03-09T14:25:09.074029-07:00,1010.9514770507812,10.729236,10729.236 +20641,2025-03-09T14:25:19.809787-07:00,1010.9845581054688,10.735758,10735.758 +20642,2025-03-09T14:25:30.540985-07:00,1010.9779663085938,10.731198,10731.198 +20643,2025-03-09T14:25:41.274813-07:00,1010.9661865234375,10.733828,10733.828 +20644,2025-03-09T14:25:52.006221-07:00,1010.982666015625,10.731408,10731.408 +20645,2025-03-09T14:26:02.737786-07:00,1010.9939575195312,10.731565,10731.565 +20646,2025-03-09T14:26:13.467997-07:00,1010.985595703125,10.730211,10730.211 +20647,2025-03-09T14:26:24.207592-07:00,1010.9657592773438,10.739595,10739.595 +20648,2025-03-09T14:26:34.936431-07:00,1010.9954833984375,10.728839,10728.839 +20649,2025-03-09T14:26:45.673043-07:00,1010.9690551757812,10.736612,10736.612 +20650,2025-03-09T14:26:56.407970-07:00,1010.9921264648438,10.734927,10734.927 +20651,2025-03-09T14:27:07.129785-07:00,1010.9869384765625,10.721815,10721.815 +20652,2025-03-09T14:27:17.869838-07:00,1010.9656372070312,10.740053,10740.053 +20653,2025-03-09T14:27:28.592994-07:00,1010.985107421875,10.723156,10723.156 +20654,2025-03-09T14:27:39.321787-07:00,1010.9468994140625,10.728793,10728.793 +20655,2025-03-09T14:27:50.051786-07:00,1010.9336547851562,10.729999,10729.999 +20656,2025-03-09T14:28:00.786179-07:00,1010.9237670898438,10.734393,10734.393 +20657,2025-03-09T14:28:11.515038-07:00,1010.9302978515625,10.728859,10728.859 +20658,2025-03-09T14:28:22.250787-07:00,1010.9349975585938,10.735749,10735.749 +20659,2025-03-09T14:28:32.981160-07:00,1010.9170532226562,10.730373,10730.373 +20660,2025-03-09T14:28:43.708786-07:00,1010.9334106445312,10.727626,10727.626 +20661,2025-03-09T14:28:54.435787-07:00,1010.9282836914062,10.727001,10727.001 +20662,2025-03-09T14:29:05.171814-07:00,1010.938232421875,10.736027,10736.027 +20663,2025-03-09T14:29:15.898811-07:00,1010.951416015625,10.726997,10726.997 +20664,2025-03-09T14:29:26.628791-07:00,1010.9576416015625,10.72998,10729.98 +20665,2025-03-09T14:29:37.363977-07:00,1010.9032592773438,10.735186,10735.186 +20666,2025-03-09T14:29:48.082937-07:00,1010.9804077148438,10.71896,10718.96 +20667,2025-03-09T14:29:58.817789-07:00,1010.995361328125,10.734852,10734.852 +20668,2025-03-09T14:30:09.546945-07:00,1010.970458984375,10.729156,10729.156 +20669,2025-03-09T14:30:20.274048-07:00,1010.9454956054688,10.727103,10727.103 +20670,2025-03-09T14:30:31.005890-07:00,1010.9472045898438,10.731842,10731.842 +20671,2025-03-09T14:30:41.735972-07:00,1010.9104614257812,10.730082,10730.082 +20672,2025-03-09T14:30:52.462796-07:00,1010.9004516601562,10.726824,10726.824 +20673,2025-03-09T14:31:03.192190-07:00,1010.9151611328125,10.729394,10729.394 +20674,2025-03-09T14:31:13.918856-07:00,1010.925048828125,10.726666,10726.666 +20675,2025-03-09T14:31:24.648788-07:00,1010.970947265625,10.729932,10729.932 +20676,2025-03-09T14:31:35.377169-07:00,1010.94970703125,10.728381,10728.381 +20677,2025-03-09T14:31:46.116968-07:00,1010.96240234375,10.739799,10739.799 +20678,2025-03-09T14:31:56.840985-07:00,1010.9788818359375,10.724017,10724.017 +20679,2025-03-09T14:32:07.573819-07:00,1010.9307861328125,10.732834,10732.834 +20680,2025-03-09T14:32:18.299810-07:00,1010.9539184570312,10.725991,10725.991 +20681,2025-03-09T14:32:29.029999-07:00,1010.9520263671875,10.730189,10730.189 +20682,2025-03-09T14:32:39.763058-07:00,1010.9420166015625,10.733059,10733.059 +20683,2025-03-09T14:32:50.490790-07:00,1010.9170532226562,10.727732,10727.732 +20684,2025-03-09T14:33:01.217782-07:00,1010.9383544921875,10.726992,10726.992 +20685,2025-03-09T14:33:11.950050-07:00,1010.9265747070312,10.732268,10732.268 +20686,2025-03-09T14:33:22.680810-07:00,1010.9218139648438,10.73076,10730.76 +20687,2025-03-09T14:33:33.403793-07:00,1010.9728393554688,10.722983,10722.983 +20688,2025-03-09T14:33:44.142177-07:00,1010.9558715820312,10.738384,10738.384 +20689,2025-03-09T14:33:54.870997-07:00,1010.9840698242188,10.72882,10728.82 +20690,2025-03-09T14:34:05.598971-07:00,1010.9738159179688,10.727974,10727.974 +20691,2025-03-09T14:34:16.332805-07:00,1010.96533203125,10.733834,10733.834 +20692,2025-03-09T14:34:27.062925-07:00,1010.9520263671875,10.73012,10730.12 +20693,2025-03-09T14:34:37.787999-07:00,1010.9619750976562,10.725074,10725.074 +20694,2025-03-09T14:34:48.523017-07:00,1010.942138671875,10.735018,10735.018 +20695,2025-03-09T14:34:59.248789-07:00,1010.95166015625,10.725772,10725.772 +20696,2025-03-09T14:35:09.981787-07:00,1010.9483032226562,10.732998,10732.998 +20697,2025-03-09T14:35:20.712945-07:00,1010.93359375,10.731158,10731.158 +20698,2025-03-09T14:35:31.433997-07:00,1010.9232788085938,10.721052,10721.052 +20699,2025-03-09T14:35:42.171786-07:00,1010.9265747070312,10.737789,10737.789 +20700,2025-03-09T14:35:52.895382-07:00,1010.9444580078125,10.723596,10723.596 +20701,2025-03-09T14:36:03.617783-07:00,1010.9940795898438,10.722401,10722.401 +20702,2025-03-09T14:36:14.349803-07:00,1011.0115356445312,10.73202,10732.02 +20703,2025-03-09T14:36:25.079152-07:00,1011.0001831054688,10.729349,10729.349 +20704,2025-03-09T14:36:35.803791-07:00,1010.9171142578125,10.724639,10724.639 +20705,2025-03-09T14:36:46.531611-07:00,1010.9269409179688,10.72782,10727.82 +20706,2025-03-09T14:36:57.259020-07:00,1010.93017578125,10.727409,10727.409 +20707,2025-03-09T14:37:07.982942-07:00,1010.9282836914062,10.723922,10723.922 +20708,2025-03-09T14:37:18.719141-07:00,1010.9263916015625,10.736199,10736.199 +20709,2025-03-09T14:37:29.438809-07:00,1010.89111328125,10.719668,10719.668 +20710,2025-03-09T14:37:40.173583-07:00,1010.9078369140625,10.734774,10734.774 +20711,2025-03-09T14:37:50.906074-07:00,1010.919189453125,10.732491,10732.491 +20712,2025-03-09T14:38:01.636790-07:00,1010.8809204101562,10.730716,10730.716 +20713,2025-03-09T14:38:12.367159-07:00,1010.8954467773438,10.730369,10730.369 +20714,2025-03-09T14:38:23.101182-07:00,1010.9068603515625,10.734023,10734.023 +20715,2025-03-09T14:38:33.832790-07:00,1010.8917236328125,10.731608,10731.608 +20716,2025-03-09T14:38:44.559995-07:00,1010.8931274414062,10.727205,10727.205 +20717,2025-03-09T14:38:55.287787-07:00,1010.8765869140625,10.727792,10727.792 +20718,2025-03-09T14:39:06.023788-07:00,1010.87939453125,10.736001,10736.001 +20719,2025-03-09T14:39:16.749802-07:00,1010.9304809570312,10.726014,10726.014 +20720,2025-03-09T14:39:27.481982-07:00,1010.9321899414062,10.73218,10732.18 +20721,2025-03-09T14:39:38.209786-07:00,1010.971435546875,10.727804,10727.804 +20722,2025-03-09T14:39:48.947988-07:00,1010.9398193359375,10.738202,10738.202 +20723,2025-03-09T14:39:59.679963-07:00,1010.9165649414062,10.731975,10731.975 +20724,2025-03-09T14:40:10.407786-07:00,1010.9212646484375,10.727823,10727.823 +20725,2025-03-09T14:40:21.129901-07:00,1010.9374389648438,10.722115,10722.115 +20726,2025-03-09T14:40:31.867096-07:00,1010.9369506835938,10.737195,10737.195 +20727,2025-03-09T14:40:42.587789-07:00,1010.9039306640625,10.720693,10720.693 +20728,2025-03-09T14:40:53.325206-07:00,1010.9269409179688,10.737417,10737.417 +20729,2025-03-09T14:41:04.055817-07:00,1010.9198608398438,10.730611,10730.611 +20730,2025-03-09T14:41:14.782941-07:00,1010.91845703125,10.727124,10727.124 +20731,2025-03-09T14:41:25.511955-07:00,1010.908447265625,10.729014,10729.014 +20732,2025-03-09T14:41:36.246544-07:00,1010.9395141601562,10.734589,10734.589 +20733,2025-03-09T14:41:46.979999-07:00,1010.9329833984375,10.733455,10733.455 +20734,2025-03-09T14:41:57.708974-07:00,1010.95751953125,10.728975,10728.975 +20735,2025-03-09T14:42:08.438545-07:00,1010.950927734375,10.729571,10729.571 +20736,2025-03-09T14:42:19.170991-07:00,1010.9338989257812,10.732446,10732.446 +20737,2025-03-09T14:42:29.894965-07:00,1010.9207153320312,10.723974,10723.974 +20738,2025-03-09T14:42:40.621789-07:00,1010.9221801757812,10.726824,10726.824 +20739,2025-03-09T14:42:51.354029-07:00,1010.90234375,10.73224,10732.24 +20740,2025-03-09T14:43:02.078425-07:00,1010.8842163085938,10.724396,10724.396 +20741,2025-03-09T14:43:12.815789-07:00,1010.8657836914062,10.737364,10737.364 +20742,2025-03-09T14:43:23.547820-07:00,1010.9087524414062,10.732031,10732.031 +20743,2025-03-09T14:43:34.270971-07:00,1010.888916015625,10.723151,10723.151 +20744,2025-03-09T14:43:45.005910-07:00,1010.8719482421875,10.734939,10734.939 +20745,2025-03-09T14:43:55.725969-07:00,1010.8970336914062,10.720059,10720.059 +20746,2025-03-09T14:44:06.457786-07:00,1010.9102172851562,10.731817,10731.817 +20747,2025-03-09T14:44:17.192994-07:00,1010.9068603515625,10.735208,10735.208 +20748,2025-03-09T14:44:27.920926-07:00,1010.8604736328125,10.727932,10727.932 +20749,2025-03-09T14:44:38.650084-07:00,1010.8817749023438,10.729158,10729.158 +20750,2025-03-09T14:44:49.373993-07:00,1010.8898315429688,10.723909,10723.909 +20751,2025-03-09T14:45:00.100980-07:00,1010.8898315429688,10.726987,10726.987 +20752,2025-03-09T14:45:10.834792-07:00,1010.9281005859375,10.733812,10733.812 +20753,2025-03-09T14:45:21.561997-07:00,1010.8766479492188,10.727205,10727.205 +20754,2025-03-09T14:45:32.284951-07:00,1010.8685913085938,10.722954,10722.954 +20755,2025-03-09T14:45:43.021790-07:00,1010.9428100585938,10.736839,10736.839 +20756,2025-03-09T14:45:53.746225-07:00,1010.9512329101562,10.724435,10724.435 +20757,2025-03-09T14:46:04.479611-07:00,1010.8916625976562,10.733386,10733.386 +20758,2025-03-09T14:46:15.205789-07:00,1010.9115600585938,10.726178,10726.178 +20759,2025-03-09T14:46:25.936858-07:00,1010.8798217773438,10.731069,10731.069 +20760,2025-03-09T14:46:36.659786-07:00,1010.9115600585938,10.722928,10722.928 +20761,2025-03-09T14:46:47.391063-07:00,1010.90966796875,10.731277,10731.277 +20762,2025-03-09T14:46:58.126110-07:00,1010.9163818359375,10.735047,10735.047 +20763,2025-03-09T14:47:08.853789-07:00,1010.8982543945312,10.727679,10727.679 +20764,2025-03-09T14:47:19.575787-07:00,1010.9115600585938,10.721998,10721.998 +20765,2025-03-09T14:47:30.305578-07:00,1010.8619384765625,10.729791,10729.791 +20766,2025-03-09T14:47:41.039005-07:00,1010.9181518554688,10.733427,10733.427 +20767,2025-03-09T14:47:51.762963-07:00,1010.8916625976562,10.723958,10723.958 +20768,2025-03-09T14:48:02.493416-07:00,1010.886474609375,10.730453,10730.453 +20769,2025-03-09T14:48:13.221990-07:00,1010.8931274414062,10.728574,10728.574 +20770,2025-03-09T14:48:23.954840-07:00,1010.885009765625,10.73285,10732.85 +20771,2025-03-09T14:48:34.689178-07:00,1010.8666381835938,10.734338,10734.338 +20772,2025-03-09T14:48:45.417787-07:00,1010.8548583984375,10.728609,10728.609 +20773,2025-03-09T14:48:56.142012-07:00,1010.8651733398438,10.724225,10724.225 +20774,2025-03-09T14:49:06.883003-07:00,1010.9158325195312,10.740991,10740.991 +20775,2025-03-09T14:49:17.610786-07:00,1010.8779907226562,10.727783,10727.783 +20776,2025-03-09T14:49:28.344035-07:00,1010.8779907226562,10.733249,10733.249 +20777,2025-03-09T14:49:39.074977-07:00,1010.8613891601562,10.730942,10730.942 +20778,2025-03-09T14:49:49.803294-07:00,1010.87939453125,10.728317,10728.317 +20779,2025-03-09T14:50:00.537809-07:00,1010.8562622070312,10.734515,10734.515 +20780,2025-03-09T14:50:11.264952-07:00,1010.843017578125,10.727143,10727.143 +20781,2025-03-09T14:50:21.991789-07:00,1010.8513793945312,10.726837,10726.837 +20782,2025-03-09T14:50:32.725789-07:00,1010.8646850585938,10.734,10734.0 +20783,2025-03-09T14:50:43.454101-07:00,1010.826416015625,10.728312,10728.312 +20784,2025-03-09T14:50:54.181786-07:00,1010.8381958007812,10.727685,10727.685 +20785,2025-03-09T14:51:04.917792-07:00,1010.83642578125,10.736006,10736.006 +20786,2025-03-09T14:51:15.647190-07:00,1010.8462524414062,10.729398,10729.398 +20787,2025-03-09T14:51:26.378182-07:00,1010.818359375,10.730992,10730.992 +20788,2025-03-09T14:51:37.110790-07:00,1010.8477172851562,10.732608,10732.608 +20789,2025-03-09T14:51:47.835776-07:00,1010.8330688476562,10.724986,10724.986 +20790,2025-03-09T14:51:58.569788-07:00,1010.8543701171875,10.734012,10734.012 +20791,2025-03-09T14:52:09.304788-07:00,1010.8065795898438,10.735,10735.0 +20792,2025-03-09T14:52:20.032065-07:00,1010.8345336914062,10.727277,10727.277 +20793,2025-03-09T14:52:30.780590-07:00,1010.818359375,10.748525,10748.525 +20794,2025-03-09T14:52:41.506384-07:00,1010.827880859375,10.725794,10725.794 +20795,2025-03-09T14:52:52.236557-07:00,1010.8330688476562,10.730173,10730.173 +20796,2025-03-09T14:53:02.971430-07:00,1010.778564453125,10.734873,10734.873 +20797,2025-03-09T14:53:13.691566-07:00,1010.765380859375,10.720136,10720.136 +20798,2025-03-09T14:53:24.428084-07:00,1010.827880859375,10.736518,10736.518 +20799,2025-03-09T14:53:35.151412-07:00,1010.8065795898438,10.723328,10723.328 +20800,2025-03-09T14:53:45.882540-07:00,1010.76171875,10.731128,10731.128 +20801,2025-03-09T14:53:56.612059-07:00,1010.8065795898438,10.729519,10729.519 +20802,2025-03-09T14:54:07.344414-07:00,1010.8345336914062,10.732355,10732.355 +20803,2025-03-09T14:54:18.071040-07:00,1010.8212280273438,10.726626,10726.626 +20804,2025-03-09T14:54:28.799381-07:00,1010.766845703125,10.728341,10728.341 +20805,2025-03-09T14:54:39.524386-07:00,1010.7999877929688,10.725005,10725.005 +20806,2025-03-09T14:54:50.253837-07:00,1010.8396606445312,10.729451,10729.451 +20807,2025-03-09T14:55:00.980445-07:00,1010.8779907226562,10.726608,10726.608 +20808,2025-03-09T14:55:11.711654-07:00,1010.81982421875,10.731209,10731.209 +20809,2025-03-09T14:55:22.446590-07:00,1010.770263671875,10.734936,10734.936 +20810,2025-03-09T14:55:33.176384-07:00,1010.8033447265625,10.729794,10729.794 +20811,2025-03-09T14:55:43.900391-07:00,1010.8018798828125,10.724007,10724.007 +20812,2025-03-09T14:55:54.635573-07:00,1010.815185546875,10.735182,10735.182 +20813,2025-03-09T14:56:05.360455-07:00,1010.8085327148438,10.724882,10724.882 +20814,2025-03-09T14:56:16.089583-07:00,1010.78857421875,10.729128,10729.128 +20815,2025-03-09T14:56:26.818385-07:00,1010.7276611328125,10.728802,10728.802 +20816,2025-03-09T14:56:37.548619-07:00,1010.7474975585938,10.730234,10730.234 +20817,2025-03-09T14:56:48.285387-07:00,1010.7687377929688,10.736768,10736.768 +20818,2025-03-09T14:56:59.014333-07:00,1010.7393798828125,10.728946,10728.946 +20819,2025-03-09T14:57:09.745410-07:00,1010.7210083007812,10.731077,10731.077 +20820,2025-03-09T14:57:20.469592-07:00,1010.7460327148438,10.724182,10724.182 +20821,2025-03-09T14:57:31.200587-07:00,1010.7460327148438,10.730995,10730.995 +20822,2025-03-09T14:57:41.937381-07:00,1010.7195434570312,10.736794,10736.794 +20823,2025-03-09T14:57:52.671603-07:00,1010.767333984375,10.734222,10734.222 +20824,2025-03-09T14:58:03.396414-07:00,1010.767333984375,10.724811,10724.811 +20825,2025-03-09T14:58:14.127386-07:00,1010.7806396484375,10.730972,10730.972 +20826,2025-03-09T14:58:24.858586-07:00,1010.7393798828125,10.7312,10731.2 +20827,2025-03-09T14:58:35.587910-07:00,1010.7129516601562,10.729324,10729.324 +20828,2025-03-09T14:58:46.323384-07:00,1010.71435546875,10.735474,10735.474 +20829,2025-03-09T14:58:57.051389-07:00,1010.7357177734375,10.728005,10728.005 +20830,2025-03-09T14:59:07.777477-07:00,1010.7276611328125,10.726088,10726.088 +20831,2025-03-09T14:59:18.511383-07:00,1010.7393798828125,10.733906,10733.906 +20832,2025-03-09T14:59:29.238162-07:00,1010.7078247070312,10.726779,10726.779 +20833,2025-03-09T14:59:39.958593-07:00,1010.71435546875,10.720431,10720.431 +20834,2025-03-09T14:59:50.692458-07:00,1010.7195434570312,10.733865,10733.865 +20835,2025-03-09T15:00:01.414883-07:00,1010.706298828125,10.722425,10722.425 +20836,2025-03-09T15:00:12.144443-07:00,1010.6780395507812,10.72956,10729.56 +20837,2025-03-09T15:00:33.600575-07:00,1010.6898193359375,21.456132,21456.132 +20838,2025-03-09T15:00:44.339933-07:00,1010.6832885742188,10.739358,10739.358 +20839,2025-03-09T15:00:55.060426-07:00,1010.7129516601562,10.720493,10720.493 +20840,2025-03-09T15:01:05.785591-07:00,1010.697998046875,10.725165,10725.165 +20841,2025-03-09T15:01:16.513571-07:00,1010.6732177734375,10.72798,10727.98 +20842,2025-03-09T15:01:27.246777-07:00,1010.7129516601562,10.733206,10733.206 +20843,2025-03-09T15:01:37.976384-07:00,1010.6912231445312,10.729607,10729.607 +20844,2025-03-09T15:01:48.695465-07:00,1010.6832885742188,10.719081,10719.081 +20845,2025-03-09T15:01:59.424687-07:00,1010.663330078125,10.729222,10729.222 +20846,2025-03-09T15:02:10.149419-07:00,1010.7045288085938,10.724732,10724.732 +20847,2025-03-09T15:02:20.886190-07:00,1010.6553344726562,10.736771,10736.771 +20848,2025-03-09T15:02:31.604384-07:00,1010.6780395507812,10.718194,10718.194 +20849,2025-03-09T15:02:42.337559-07:00,1010.7229614257812,10.733175,10733.175 +20850,2025-03-09T15:02:53.060534-07:00,1010.6832885742188,10.722975,10722.975 +20851,2025-03-09T15:03:03.787933-07:00,1010.711181640625,10.727399,10727.399 +20852,2025-03-09T15:03:14.511257-07:00,1010.724365234375,10.723324,10723.324 +20853,2025-03-09T15:03:25.236415-07:00,1010.6964721679688,10.725158,10725.158 +20854,2025-03-09T15:03:35.966435-07:00,1010.6832885742188,10.73002,10730.02 +20855,2025-03-09T15:03:46.687383-07:00,1010.6950073242188,10.720948,10720.948 +20856,2025-03-09T15:03:57.420747-07:00,1010.6832885742188,10.733364,10733.364 +20857,2025-03-09T15:04:08.150589-07:00,1010.6751708984375,10.729842,10729.842 +20858,2025-03-09T15:04:18.867096-07:00,1010.650146484375,10.716507,10716.507 +20859,2025-03-09T15:04:29.599158-07:00,1010.7229614257812,10.732062,10732.062 +20860,2025-03-09T15:04:40.326390-07:00,1010.6898193359375,10.727232,10727.232 +20861,2025-03-09T15:04:51.056463-07:00,1010.703125,10.730073,10730.073 +20862,2025-03-09T15:05:01.774578-07:00,1010.663330078125,10.718115,10718.115 +20863,2025-03-09T15:05:12.500383-07:00,1010.6434936523438,10.725805,10725.805 +20864,2025-03-09T15:05:23.231024-07:00,1010.6699829101562,10.730641,10730.641 +20865,2025-03-09T15:05:33.950593-07:00,1010.6765747070312,10.719569,10719.569 +20866,2025-03-09T15:05:44.681587-07:00,1010.6336669921875,10.730994,10730.994 +20867,2025-03-09T15:05:55.404424-07:00,1010.650146484375,10.722837,10722.837 +20868,2025-03-09T15:06:06.136482-07:00,1010.6434936523438,10.732058,10732.058 +20869,2025-03-09T15:06:16.857629-07:00,1010.6221923828125,10.721147,10721.147 +20870,2025-03-09T15:06:27.589594-07:00,1010.65673828125,10.731965,10731.965 +20871,2025-03-09T15:06:38.317563-07:00,1010.6303100585938,10.727969,10727.969 +20872,2025-03-09T15:06:49.042574-07:00,1010.6420288085938,10.725011,10725.011 +20873,2025-03-09T15:06:59.775383-07:00,1010.650146484375,10.732809,10732.809 +20874,2025-03-09T15:07:10.497567-07:00,1010.6468505859375,10.722184,10722.184 +20875,2025-03-09T15:07:21.229708-07:00,1010.65673828125,10.732141,10732.141 +20876,2025-03-09T15:07:31.953566-07:00,1010.6023559570312,10.723858,10723.858 +20877,2025-03-09T15:07:42.677383-07:00,1010.6170043945312,10.723817,10723.817 +20878,2025-03-09T15:07:53.408584-07:00,1010.6648559570312,10.731201,10731.201 +20879,2025-03-09T15:08:04.135688-07:00,1010.6170043945312,10.727104,10727.104 +20880,2025-03-09T15:08:14.862140-07:00,1010.6403198242188,10.726452,10726.452 +20881,2025-03-09T15:08:25.593408-07:00,1010.6336669921875,10.731268,10731.268 +20882,2025-03-09T15:08:36.325584-07:00,1010.6023559570312,10.732176,10732.176 +20883,2025-03-09T15:08:47.059740-07:00,1010.6090087890625,10.734156,10734.156 +20884,2025-03-09T15:08:57.779384-07:00,1010.59716796875,10.719644,10719.644 +20885,2025-03-09T15:09:08.510470-07:00,1010.6090087890625,10.731086,10731.086 +20886,2025-03-09T15:09:19.235592-07:00,1010.590576171875,10.725122,10725.122 +20887,2025-03-09T15:09:29.967611-07:00,1010.6221923828125,10.732019,10732.019 +20888,2025-03-09T15:09:40.686384-07:00,1010.5957641601562,10.718773,10718.773 +20889,2025-03-09T15:09:51.420820-07:00,1010.6104736328125,10.734436,10734.436 +20890,2025-03-09T15:10:02.144618-07:00,1010.603759765625,10.723798,10723.798 +20891,2025-03-09T15:10:12.876386-07:00,1010.5773315429688,10.731768,10731.768 +20892,2025-03-09T15:10:23.603808-07:00,1010.5787353515625,10.727422,10727.422 +20893,2025-03-09T15:10:34.334383-07:00,1010.544189453125,10.730575,10730.575 +20894,2025-03-09T15:10:45.062495-07:00,1010.5257568359375,10.728112,10728.112 +20895,2025-03-09T15:10:55.790765-07:00,1010.514404296875,10.72827,10728.27 +20896,2025-03-09T15:11:06.520415-07:00,1010.4993896484375,10.72965,10729.65 +20897,2025-03-09T15:11:17.247387-07:00,1010.542236328125,10.726972,10726.972 +20898,2025-03-09T15:11:27.984558-07:00,1010.5172729492188,10.737171,10737.171 +20899,2025-03-09T15:11:38.714378-07:00,1010.5304565429688,10.72982,10729.82 +20900,2025-03-09T15:11:49.433386-07:00,1010.529052734375,10.719008,10719.008 +20901,2025-03-09T15:12:00.169578-07:00,1010.5106201171875,10.736192,10736.192 +20902,2025-03-09T15:12:10.889442-07:00,1010.5172729492188,10.719864,10719.864 +20903,2025-03-09T15:12:21.620588-07:00,1010.4921875,10.731146,10731.146 +20904,2025-03-09T15:12:32.356358-07:00,1010.5153198242188,10.73577,10735.77 +20905,2025-03-09T15:12:43.081385-07:00,1010.5072021484375,10.725027,10725.027 +20906,2025-03-09T15:12:53.808537-07:00,1010.5106201171875,10.727152,10727.152 +20907,2025-03-09T15:13:04.542410-07:00,1010.5054931640625,10.733873,10733.873 +20908,2025-03-09T15:13:15.272390-07:00,1010.47412109375,10.72998,10729.98 +20909,2025-03-09T15:13:26.010656-07:00,1010.527099609375,10.738266,10738.266 +20910,2025-03-09T15:13:36.740566-07:00,1010.5172729492188,10.72991,10729.91 +20911,2025-03-09T15:13:47.457385-07:00,1010.4547729492188,10.716819,10716.819 +20912,2025-03-09T15:13:58.189786-07:00,1010.4846801757812,10.732401,10732.401 +20913,2025-03-09T15:14:08.918408-07:00,1010.5211181640625,10.728622,10728.622 +20914,2025-03-09T15:14:19.638591-07:00,1010.490478515625,10.720183,10720.183 +20915,2025-03-09T15:14:30.371138-07:00,1010.4710693359375,10.732547,10732.547 +20916,2025-03-09T15:14:41.099659-07:00,1010.4816284179688,10.728521,10728.521 +20917,2025-03-09T15:14:51.826549-07:00,1010.46044921875,10.72689,10726.89 +20918,2025-03-09T15:15:02.549685-07:00,1010.4845581054688,10.723136,10723.136 +20919,2025-03-09T15:15:13.284389-07:00,1010.5064697265625,10.734704,10734.704 +20920,2025-03-09T15:15:24.011602-07:00,1010.4974365234375,10.727213,10727.213 +20921,2025-03-09T15:15:34.737590-07:00,1010.5027465820312,10.725988,10725.988 +20922,2025-03-09T15:15:45.461545-07:00,1010.494873046875,10.723955,10723.955 +20923,2025-03-09T15:15:56.181576-07:00,1010.4989624023438,10.720031,10720.031 +20924,2025-03-09T15:16:06.910792-07:00,1010.4976806640625,10.729216,10729.216 +20925,2025-03-09T15:16:17.629452-07:00,1010.48974609375,10.71866,10718.66 +20926,2025-03-09T15:16:28.354859-07:00,1010.4751586914062,10.725407,10725.407 +20927,2025-03-09T15:16:39.083405-07:00,1010.530029296875,10.728546,10728.546 +20928,2025-03-09T15:16:49.802803-07:00,1010.5089111328125,10.719398,10719.398 +20929,2025-03-09T15:17:00.529178-07:00,1010.4946899414062,10.726375,10726.375 +20930,2025-03-09T15:17:11.248155-07:00,1010.4951782226562,10.718977,10718.977 +20931,2025-03-09T15:17:21.970606-07:00,1010.4720458984375,10.722451,10722.451 +20932,2025-03-09T15:17:32.698546-07:00,1010.4540405273438,10.72794,10727.94 +20933,2025-03-09T15:17:43.429302-07:00,1010.4640502929688,10.730756,10730.756 +20934,2025-03-09T15:17:54.154422-07:00,1010.447998046875,10.72512,10725.12 +20935,2025-03-09T15:18:04.875385-07:00,1010.4432983398438,10.720963,10720.963 +20936,2025-03-09T15:18:15.606468-07:00,1010.4334106445312,10.731083,10731.083 +20937,2025-03-09T15:18:26.332382-07:00,1010.4286499023438,10.725914,10725.914 +20938,2025-03-09T15:18:37.054478-07:00,1010.4720458984375,10.722096,10722.096 +20939,2025-03-09T15:18:47.786380-07:00,1010.4371948242188,10.731902,10731.902 +20940,2025-03-09T15:18:58.512414-07:00,1010.4636840820312,10.726034,10726.034 +20941,2025-03-09T15:19:09.240631-07:00,1010.4423217773438,10.728217,10728.217 +20942,2025-03-09T15:19:19.969439-07:00,1010.44091796875,10.728808,10728.808 +20943,2025-03-09T15:19:30.688868-07:00,1010.4442138671875,10.719429,10719.429 +20944,2025-03-09T15:19:41.411403-07:00,1010.4229736328125,10.722535,10722.535 +20945,2025-03-09T15:19:52.144382-07:00,1010.48388671875,10.732979,10732.979 +20946,2025-03-09T15:20:02.866386-07:00,1010.4229736328125,10.722004,10722.004 +20947,2025-03-09T15:20:13.589583-07:00,1010.4229736328125,10.723197,10723.197 +20948,2025-03-09T15:20:24.319546-07:00,1010.4428100585938,10.729963,10729.963 +20949,2025-03-09T15:20:35.040386-07:00,1010.4640502929688,10.72084,10720.84 +20950,2025-03-09T15:20:45.774982-07:00,1010.4561157226562,10.734596,10734.596 +20951,2025-03-09T15:20:56.502519-07:00,1010.4442138671875,10.727537,10727.537 +20952,2025-03-09T15:21:07.221589-07:00,1010.4376831054688,10.71907,10719.07 +20953,2025-03-09T15:21:17.959566-07:00,1010.44091796875,10.737977,10737.977 +20954,2025-03-09T15:21:28.681868-07:00,1010.4937744140625,10.722302,10722.302 +20955,2025-03-09T15:21:39.412934-07:00,1010.4541625976562,10.731066,10731.066 +20956,2025-03-09T15:21:50.135382-07:00,1010.4786987304688,10.722448,10722.448 +20957,2025-03-09T15:22:00.860565-07:00,1010.4173583984375,10.725183,10725.183 +20958,2025-03-09T15:22:11.593917-07:00,1010.4271850585938,10.733352,10733.352 +20959,2025-03-09T15:22:22.316383-07:00,1010.4124755859375,10.722466,10722.466 +20960,2025-03-09T15:22:33.044569-07:00,1010.41064453125,10.728186,10728.186 +20961,2025-03-09T15:22:43.773596-07:00,1010.431884765625,10.729027,10729.027 +20962,2025-03-09T15:22:54.501404-07:00,1010.4385986328125,10.727808,10727.808 +20963,2025-03-09T15:23:05.234555-07:00,1010.4266967773438,10.733151,10733.151 +20964,2025-03-09T15:23:15.957598-07:00,1010.4219360351562,10.723043,10723.043 +20965,2025-03-09T15:23:26.685385-07:00,1010.4398193359375,10.727787,10727.787 +20966,2025-03-09T15:23:37.422581-07:00,1010.4281005859375,10.737196,10737.196 +20967,2025-03-09T15:23:48.153422-07:00,1010.4243774414062,10.730841,10730.841 +20968,2025-03-09T15:23:58.880560-07:00,1010.386474609375,10.727138,10727.138 +20969,2025-03-09T15:24:09.615765-07:00,1010.4026489257812,10.735205,10735.205 +20970,2025-03-09T15:24:20.353383-07:00,1010.3713989257812,10.737618,10737.618 +20971,2025-03-09T15:24:31.085709-07:00,1010.3875122070312,10.732326,10732.326 +20972,2025-03-09T15:24:41.807606-07:00,1010.4091186523438,10.721897,10721.897 +20973,2025-03-09T15:24:52.543407-07:00,1010.3908081054688,10.735801,10735.801 +20974,2025-03-09T15:25:03.268604-07:00,1010.4054565429688,10.725197,10725.197 +20975,2025-03-09T15:25:13.999573-07:00,1010.34912109375,10.730969,10730.969 +20976,2025-03-09T15:25:24.729386-07:00,1010.3226318359375,10.729813,10729.813 +20977,2025-03-09T15:25:35.463384-07:00,1010.34716796875,10.733998,10733.998 +20978,2025-03-09T15:25:46.191578-07:00,1010.3651733398438,10.728194,10728.194 +20979,2025-03-09T15:25:56.921590-07:00,1010.3732299804688,10.730012,10730.012 +20980,2025-03-09T15:26:07.647564-07:00,1010.4028930664062,10.725974,10725.974 +20981,2025-03-09T15:26:18.376438-07:00,1010.397705078125,10.728874,10728.874 +20982,2025-03-09T15:26:29.101692-07:00,1010.40576171875,10.725254,10725.254 +20983,2025-03-09T15:26:39.835386-07:00,1010.382568359375,10.733694,10733.694 +20984,2025-03-09T15:26:50.560530-07:00,1010.369384765625,10.725144,10725.144 +20985,2025-03-09T15:27:01.286590-07:00,1010.3560791015625,10.72606,10726.06 +20986,2025-03-09T15:27:12.023579-07:00,1010.3939208984375,10.736989,10736.989 +20987,2025-03-09T15:27:22.748385-07:00,1010.3839111328125,10.724806,10724.806 +20988,2025-03-09T15:27:33.477383-07:00,1010.4198608398438,10.728998,10728.998 +20989,2025-03-09T15:27:44.203580-07:00,1010.3900146484375,10.726197,10726.197 +20990,2025-03-09T15:27:54.931386-07:00,1010.3851318359375,10.727806,10727.806 +20991,2025-03-09T15:28:05.664688-07:00,1010.3818969726562,10.733302,10733.302 +20992,2025-03-09T15:28:16.393889-07:00,1010.3289184570312,10.729201,10729.201 +20993,2025-03-09T15:28:27.121597-07:00,1010.3582763671875,10.727708,10727.708 +20994,2025-03-09T15:28:37.847456-07:00,1010.3548583984375,10.725859,10725.859 +20995,2025-03-09T15:28:48.575386-07:00,1010.3496704101562,10.72793,10727.93 +20996,2025-03-09T15:28:59.307578-07:00,1010.3662719726562,10.732192,10732.192 +20997,2025-03-09T15:29:10.030566-07:00,1010.3411865234375,10.722988,10722.988 +20998,2025-03-09T15:29:20.762387-07:00,1010.3378295898438,10.731821,10731.821 +20999,2025-03-09T15:29:31.492412-07:00,1010.3458862304688,10.730025,10730.025 +21000,2025-03-09T15:29:42.221565-07:00,1010.373779296875,10.729153,10729.153 +21001,2025-03-09T15:29:52.945389-07:00,1010.3770141601562,10.723824,10723.824 +21002,2025-03-09T15:30:03.679775-07:00,1010.3505249023438,10.734386,10734.386 +21003,2025-03-09T15:30:14.409175-07:00,1010.3485717773438,10.7294,10729.4 +21004,2025-03-09T15:30:25.145876-07:00,1010.3731079101562,10.736701,10736.701 +21005,2025-03-09T15:30:35.869488-07:00,1010.3731079101562,10.723612,10723.612 +21006,2025-03-09T15:30:46.605786-07:00,1010.340087890625,10.736298,10736.298 +21007,2025-03-09T15:30:57.329914-07:00,1010.3513793945312,10.724128,10724.128 +21008,2025-03-09T15:31:08.057587-07:00,1010.3278198242188,10.727673,10727.673 +21009,2025-03-09T15:31:18.789700-07:00,1010.3295288085938,10.732113,10732.113 +21010,2025-03-09T15:31:29.515539-07:00,1010.3607788085938,10.725839,10725.839 +21011,2025-03-09T15:31:40.249387-07:00,1010.3092041015625,10.733848,10733.848 +21012,2025-03-09T15:31:50.983125-07:00,1010.3173217773438,10.733738,10733.738 +21013,2025-03-09T15:32:01.710392-07:00,1010.2926635742188,10.727267,10727.267 +21014,2025-03-09T15:32:12.452588-07:00,1010.2954711914062,10.742196,10742.196 +21015,2025-03-09T15:32:23.187731-07:00,1010.32373046875,10.735143,10735.143 +21016,2025-03-09T15:32:33.908654-07:00,1010.3082885742188,10.720923,10720.923 +21017,2025-03-09T15:32:44.643483-07:00,1010.3148193359375,10.734829,10734.829 +21018,2025-03-09T15:32:55.372580-07:00,1010.326171875,10.729097,10729.097 +21019,2025-03-09T15:33:06.109505-07:00,1010.3507080078125,10.736925,10736.925 +21020,2025-03-09T15:33:16.839387-07:00,1010.2778930664062,10.729882,10729.882 +21021,2025-03-09T15:33:27.570838-07:00,1010.2777099609375,10.731451,10731.451 +21022,2025-03-09T15:33:38.305355-07:00,1010.2824096679688,10.734517,10734.517 +21023,2025-03-09T15:33:49.032386-07:00,1010.244140625,10.727031,10727.031 +21024,2025-03-09T15:33:59.769543-07:00,1010.266845703125,10.737157,10737.157 +21025,2025-03-09T15:34:10.499277-07:00,1010.2451782226562,10.729734,10729.734 +21026,2025-03-09T15:34:21.222594-07:00,1010.28466796875,10.723317,10723.317 +21027,2025-03-09T15:34:31.952585-07:00,1010.2463989257812,10.729991,10729.991 +21028,2025-03-09T15:34:42.687154-07:00,1010.2921752929688,10.734569,10734.569 +21029,2025-03-09T15:34:53.421383-07:00,1010.2572021484375,10.734229,10734.229 +21030,2025-03-09T15:35:04.149456-07:00,1010.2352905273438,10.728073,10728.073 +21031,2025-03-09T15:35:14.871386-07:00,1010.2566528320312,10.72193,10721.93 +21032,2025-03-09T15:35:25.607380-07:00,1010.287841796875,10.735994,10735.994 +21033,2025-03-09T15:35:36.336575-07:00,1010.299072265625,10.729195,10729.195 +21034,2025-03-09T15:35:47.064591-07:00,1010.24267578125,10.728016,10728.016 +21035,2025-03-09T15:35:57.795383-07:00,1010.2507934570312,10.730792,10730.792 +21036,2025-03-09T15:36:08.523552-07:00,1010.272216796875,10.728169,10728.169 +21037,2025-03-09T15:36:19.257539-07:00,1010.2537231445312,10.733987,10733.987 +21038,2025-03-09T15:36:29.986409-07:00,1010.2570190429688,10.72887,10728.87 +21039,2025-03-09T15:36:40.713558-07:00,1010.26171875,10.727149,10727.149 +21040,2025-03-09T15:36:51.444585-07:00,1010.2579956054688,10.731027,10731.027 +21041,2025-03-09T15:37:02.170386-07:00,1010.27587890625,10.725801,10725.801 +21042,2025-03-09T15:37:12.905684-07:00,1010.2574462890625,10.735298,10735.298 +21043,2025-03-09T15:37:23.629597-07:00,1010.2459106445312,10.723913,10723.913 +21044,2025-03-09T15:37:34.368383-07:00,1010.2572021484375,10.738786,10738.786 +21045,2025-03-09T15:37:45.091229-07:00,1010.2684936523438,10.722846,10722.846 +21046,2025-03-09T15:37:55.827523-07:00,1010.2481079101562,10.736294,10736.294 +21047,2025-03-09T15:38:06.553386-07:00,1010.23486328125,10.725863,10725.863 +21048,2025-03-09T15:38:17.280701-07:00,1010.2179565429688,10.727315,10727.315 +21049,2025-03-09T15:38:28.013383-07:00,1010.2575073242188,10.732682,10732.682 +21050,2025-03-09T15:38:38.742564-07:00,1010.2575073242188,10.729181,10729.181 +21051,2025-03-09T15:38:49.468386-07:00,1010.2603149414062,10.725822,10725.822 +21052,2025-03-09T15:39:00.196384-07:00,1010.2603149414062,10.727998,10727.998 +21053,2025-03-09T15:39:10.929386-07:00,1010.2753295898438,10.733002,10733.002 +21054,2025-03-09T15:39:21.660659-07:00,1010.2767944335938,10.731273,10731.273 +21055,2025-03-09T15:39:32.387384-07:00,1010.2715454101562,10.726725,10726.725 +21056,2025-03-09T15:39:43.110567-07:00,1010.2615356445312,10.723183,10723.183 +21057,2025-03-09T15:39:53.840387-07:00,1010.2814331054688,10.72982,10729.82 +21058,2025-03-09T15:40:04.569394-07:00,1010.294677734375,10.729007,10729.007 +21059,2025-03-09T15:40:15.298208-07:00,1010.294677734375,10.728814,10728.814 +21060,2025-03-09T15:40:26.018515-07:00,1010.2550048828125,10.720307,10720.307 +21061,2025-03-09T15:40:36.742772-07:00,1010.2711181640625,10.724257,10724.257 +21062,2025-03-09T15:40:47.475413-07:00,1010.2379760742188,10.732641,10732.641 +21063,2025-03-09T15:40:58.200388-07:00,1010.297607421875,10.724975,10724.975 +21064,2025-03-09T15:41:08.928611-07:00,1010.2742919921875,10.728223,10728.223 +21065,2025-03-09T15:41:19.653385-07:00,1010.2246704101562,10.724774,10724.774 +21066,2025-03-09T15:41:30.382565-07:00,1010.2279663085938,10.72918,10729.18 +21067,2025-03-09T15:41:41.111587-07:00,1010.26904296875,10.729022,10729.022 +21068,2025-03-09T15:41:51.838382-07:00,1010.2775268554688,10.726795,10726.795 +21069,2025-03-09T15:42:02.574498-07:00,1010.25439453125,10.736116,10736.116 +21070,2025-03-09T15:42:13.300441-07:00,1010.2723388671875,10.725943,10725.943 +21071,2025-03-09T15:42:24.027568-07:00,1010.244384765625,10.727127,10727.127 +21072,2025-03-09T15:42:34.755386-07:00,1010.2525024414062,10.727818,10727.818 +21073,2025-03-09T15:42:45.478627-07:00,1010.255859375,10.723241,10723.241 +21074,2025-03-09T15:42:56.209555-07:00,1010.29736328125,10.730928,10730.928 +21075,2025-03-09T15:43:06.937387-07:00,1010.2656860351562,10.727832,10727.832 +21076,2025-03-09T15:43:17.662586-07:00,1010.2510375976562,10.725199,10725.199 +21077,2025-03-09T15:43:28.388383-07:00,1010.2391967773438,10.725797,10725.797 +21078,2025-03-09T15:43:39.116386-07:00,1010.2855224609375,10.728003,10728.003 +21079,2025-03-09T15:43:49.843559-07:00,1010.259033203125,10.727173,10727.173 +21080,2025-03-09T15:44:00.573452-07:00,1010.25390625,10.729893,10729.893 +21081,2025-03-09T15:44:11.297556-07:00,1010.2127075195312,10.724104,10724.104 +21082,2025-03-09T15:44:22.023384-07:00,1010.2689208984375,10.725828,10725.828 +21083,2025-03-09T15:44:32.751460-07:00,1010.2326049804688,10.728076,10728.076 +21084,2025-03-09T15:44:43.484744-07:00,1010.2340698242188,10.733284,10733.284 +21085,2025-03-09T15:44:54.210384-07:00,1010.2870483398438,10.72564,10725.64 +21086,2025-03-09T15:45:04.934567-07:00,1010.2901611328125,10.724183,10724.183 +21087,2025-03-09T15:45:15.658655-07:00,1010.2803955078125,10.724088,10724.088 +21088,2025-03-09T15:45:26.390385-07:00,1010.2887573242188,10.73173,10731.73 +21089,2025-03-09T15:45:37.117553-07:00,1010.2689208984375,10.727168,10727.168 +21090,2025-03-09T15:45:47.835597-07:00,1010.2472534179688,10.718044,10718.044 +21091,2025-03-09T15:45:58.565246-07:00,1010.23779296875,10.729649,10729.649 +21092,2025-03-09T15:46:09.287394-07:00,1010.216064453125,10.722148,10722.148 +21093,2025-03-09T15:46:20.019598-07:00,1010.303955078125,10.732204,10732.204 +21094,2025-03-09T15:46:30.738408-07:00,1010.244384765625,10.71881,10718.81 +21095,2025-03-09T15:46:41.465434-07:00,1010.2576293945312,10.727026,10727.026 +21096,2025-03-09T15:46:52.191735-07:00,1010.2310791015625,10.726301,10726.301 +21097,2025-03-09T15:47:02.920434-07:00,1010.2757568359375,10.728699,10728.699 +21098,2025-03-09T15:47:13.643387-07:00,1010.2611083984375,10.722953,10722.953 +21099,2025-03-09T15:47:24.367623-07:00,1010.2662353515625,10.724236,10724.236 +21100,2025-03-09T15:47:35.098386-07:00,1010.2313842773438,10.730763,10730.763 +21101,2025-03-09T15:47:45.826572-07:00,1010.2860717773438,10.728186,10728.186 +21102,2025-03-09T15:47:56.547593-07:00,1010.2644653320312,10.721021,10721.021 +21103,2025-03-09T15:48:07.278384-07:00,1010.2644653320312,10.730791,10730.791 +21104,2025-03-09T15:48:18.007543-07:00,1010.2299194335938,10.729159,10729.159 +21105,2025-03-09T15:48:28.735587-07:00,1010.236572265625,10.728044,10728.044 +21106,2025-03-09T15:48:39.462630-07:00,1010.2072143554688,10.727043,10727.043 +21107,2025-03-09T15:48:50.187700-07:00,1010.2137451171875,10.72507,10725.07 +21108,2025-03-09T15:49:00.910797-07:00,1010.2402954101562,10.723097,10723.097 +21109,2025-03-09T15:49:11.644415-07:00,1010.2451782226562,10.733618,10733.618 +21110,2025-03-09T15:49:22.368415-07:00,1010.2171630859375,10.724,10724.0 +21111,2025-03-09T15:49:33.093826-07:00,1010.2535400390625,10.725411,10725.411 +21112,2025-03-09T15:49:43.829491-07:00,1010.189208984375,10.735665,10735.665 +21113,2025-03-09T15:49:54.552388-07:00,1010.22705078125,10.722897,10722.897 +21114,2025-03-09T15:50:05.292557-07:00,1010.2583618164062,10.740169,10740.169 +21115,2025-03-09T15:50:16.016384-07:00,1010.2402954101562,10.723827,10723.827 +21116,2025-03-09T15:50:26.742550-07:00,1010.2203979492188,10.726166,10726.166 +21117,2025-03-09T15:50:37.480874-07:00,1010.2005615234375,10.738324,10738.324 +21118,2025-03-09T15:50:48.210387-07:00,1010.248291015625,10.729513,10729.513 +21119,2025-03-09T15:50:58.937452-07:00,1010.174072265625,10.727065,10727.065 +21120,2025-03-09T15:51:09.658415-07:00,1010.1953125,10.720963,10720.963 +21121,2025-03-09T15:51:20.384572-07:00,1010.2120361328125,10.726157,10726.157 +21122,2025-03-09T15:51:31.119506-07:00,1010.1873168945312,10.734934,10734.934 +21123,2025-03-09T15:51:41.835385-07:00,1010.2020263671875,10.715879,10715.879 +21124,2025-03-09T15:51:52.565434-07:00,1010.1754760742188,10.730049,10730.049 +21125,2025-03-09T15:52:03.287602-07:00,1010.1921997070312,10.722168,10722.168 +21126,2025-03-09T15:52:14.012629-07:00,1010.19873046875,10.725027,10725.027 +21127,2025-03-09T15:52:24.746565-07:00,1010.1921997070312,10.733936,10733.936 +21128,2025-03-09T15:52:35.443717-07:00,1010.1806030273438,10.697152,10697.152 +21129,2025-03-09T15:52:46.172658-07:00,1010.2171630859375,10.728941,10728.941 +21130,2025-03-09T15:52:56.901523-07:00,1010.2451782226562,10.728865,10728.865 +21131,2025-03-09T15:53:07.620842-07:00,1010.2753295898438,10.719319,10719.319 +21132,2025-03-09T15:53:18.348501-07:00,1010.22900390625,10.727659,10727.659 +21133,2025-03-09T15:53:29.079472-07:00,1010.251708984375,10.730971,10730.971 +21134,2025-03-09T15:53:39.804440-07:00,1010.2421875,10.724968,10724.968 +21135,2025-03-09T15:53:50.535504-07:00,1010.2554931640625,10.731064,10731.064 +21136,2025-03-09T15:54:01.256643-07:00,1010.2223510742188,10.721139,10721.139 +21137,2025-03-09T15:54:11.988468-07:00,1010.24365234375,10.731825,10731.825 +21138,2025-03-09T15:54:22.704472-07:00,1010.23046875,10.716004,10716.004 +21139,2025-03-09T15:54:33.441066-07:00,1010.2421875,10.736594,10736.594 +21140,2025-03-09T15:54:44.162535-07:00,1010.2899780273438,10.721469,10721.469 +21141,2025-03-09T15:54:54.891634-07:00,1010.2503051757812,10.729099,10729.099 +21142,2025-03-09T15:55:05.629315-07:00,1010.2554931640625,10.737681,10737.681 +21143,2025-03-09T15:55:16.357466-07:00,1010.2338256835938,10.728151,10728.151 +21144,2025-03-09T15:55:27.086684-07:00,1010.2139892578125,10.729218,10729.218 +21145,2025-03-09T15:55:37.809469-07:00,1010.1860961914062,10.722785,10722.785 +21146,2025-03-09T15:55:48.537717-07:00,1010.1992797851562,10.728248,10728.248 +21147,2025-03-09T15:55:59.262590-07:00,1010.2059326171875,10.724873,10724.873 +21148,2025-03-09T15:56:09.998472-07:00,1010.1875,10.735882,10735.882 +21149,2025-03-09T15:56:20.725851-07:00,1010.1646728515625,10.727379,10727.379 +21150,2025-03-09T15:56:31.450488-07:00,1010.1727905273438,10.724637,10724.637 +21151,2025-03-09T15:56:42.180540-07:00,1010.1846313476562,10.730052,10730.052 +21152,2025-03-09T15:56:52.907645-07:00,1010.1595458984375,10.727105,10727.105 +21153,2025-03-09T15:57:03.641655-07:00,1010.1529541015625,10.73401,10734.01 +21154,2025-03-09T15:57:14.373479-07:00,1010.1529541015625,10.731824,10731.824 +21155,2025-03-09T15:57:25.096575-07:00,1010.1448364257812,10.723096,10723.096 +21156,2025-03-09T15:57:35.834857-07:00,1010.1846313476562,10.738282,10738.282 +21157,2025-03-09T15:57:46.558489-07:00,1010.17138671875,10.723632,10723.632 +21158,2025-03-09T15:57:57.295486-07:00,1010.1860961914062,10.736997,10736.997 +21159,2025-03-09T15:58:08.019474-07:00,1010.1846313476562,10.723988,10723.988 +21160,2025-03-09T15:58:18.753471-07:00,1010.1727905273438,10.733997,10733.997 +21161,2025-03-09T15:58:29.485520-07:00,1010.1331176757812,10.732049,10732.049 +21162,2025-03-09T15:58:40.211469-07:00,1010.1676635742188,10.725949,10725.949 +21163,2025-03-09T15:58:50.940799-07:00,1010.125,10.72933,10729.33 +21164,2025-03-09T15:59:01.677483-07:00,1010.1463012695312,10.736684,10736.684 +21165,2025-03-09T15:59:12.406466-07:00,1010.1397094726562,10.728983,10728.983 +21166,2025-03-09T15:59:23.133631-07:00,1010.1383056640625,10.727165,10727.165 +21167,2025-03-09T15:59:33.865723-07:00,1010.119873046875,10.732092,10732.092 +21168,2025-03-09T15:59:44.590683-07:00,1010.0867309570312,10.72496,10724.96 +21169,2025-03-09T15:59:55.316646-07:00,1010.06689453125,10.725963,10725.963 +21170,2025-03-09T16:00:06.047098-07:00,1010.0985107421875,10.730452,10730.452 +21171,2025-03-09T16:00:16.782469-07:00,1010.0918579101562,10.735371,10735.371 +21172,2025-03-09T16:00:27.508474-07:00,1010.1116943359375,10.726005,10726.005 +21173,2025-03-09T16:00:38.236793-07:00,1010.0587768554688,10.728319,10728.319 +21174,2025-03-09T16:00:48.959536-07:00,1010.0635986328125,10.722743,10722.743 +21175,2025-03-09T16:00:59.693800-07:00,1010.072021484375,10.734264,10734.264 +21176,2025-03-09T16:01:10.425498-07:00,1010.1099853515625,10.731698,10731.698 +21177,2025-03-09T16:01:21.147509-07:00,1010.125,10.722011,10722.011 +21178,2025-03-09T16:01:31.881874-07:00,1010.1085815429688,10.734365,10734.365 +21179,2025-03-09T16:01:42.613469-07:00,1010.0887451171875,10.731595,10731.595 +21180,2025-03-09T16:01:53.337641-07:00,1010.0967407226562,10.724172,10724.172 +21181,2025-03-09T16:02:04.076532-07:00,1010.1071166992188,10.738891,10738.891 +21182,2025-03-09T16:02:14.808471-07:00,1010.0972900390625,10.731939,10731.939 +21183,2025-03-09T16:02:25.533465-07:00,1010.1270141601562,10.724994,10724.994 +21184,2025-03-09T16:02:36.263662-07:00,1010.122314453125,10.730197,10730.197 +21185,2025-03-09T16:02:47.000496-07:00,1010.0811767578125,10.736834,10736.834 +21186,2025-03-09T16:02:57.724497-07:00,1010.0825805664062,10.724001,10724.001 +21187,2025-03-09T16:03:08.464683-07:00,1010.0779418945312,10.740186,10740.186 +21188,2025-03-09T16:03:19.191470-07:00,1010.0513916015625,10.726787,10726.787 +21189,2025-03-09T16:03:29.920706-07:00,1010.056640625,10.729236,10729.236 +21190,2025-03-09T16:03:40.655473-07:00,1010.0301513671875,10.734767,10734.767 +21191,2025-03-09T16:03:51.385752-07:00,1010.05810546875,10.730279,10730.279 +21192,2025-03-09T16:04:02.111470-07:00,1010.0382080078125,10.725718,10725.718 +21193,2025-03-09T16:04:12.846652-07:00,1010.0713500976562,10.735182,10735.182 +21194,2025-03-09T16:04:23.579663-07:00,1010.0103149414062,10.733011,10733.011 +21195,2025-03-09T16:04:34.310466-07:00,1010.0513916015625,10.730803,10730.803 +21196,2025-03-09T16:04:45.041835-07:00,1010.0367431640625,10.731369,10731.369 +21197,2025-03-09T16:04:55.766494-07:00,1010.0315551757812,10.724659,10724.659 +21198,2025-03-09T16:05:06.501678-07:00,1009.9970092773438,10.735184,10735.184 +21199,2025-03-09T16:05:17.231699-07:00,1010.0513916015625,10.730021,10730.021 +21200,2025-03-09T16:05:27.962106-07:00,1010.016845703125,10.730407,10730.407 +21201,2025-03-09T16:05:38.684468-07:00,1010.0416259765625,10.722362,10722.362 +21202,2025-03-09T16:05:49.419506-07:00,1010.0764770507812,10.735038,10735.038 +21203,2025-03-09T16:06:00.148738-07:00,1010.0632934570312,10.729232,10729.232 +21204,2025-03-09T16:06:10.870657-07:00,1010.05810546875,10.721919,10721.919 +21205,2025-03-09T16:06:21.606562-07:00,1010.05810546875,10.735905,10735.905 +21206,2025-03-09T16:06:32.333468-07:00,1010.0416259765625,10.726906,10726.906 +21207,2025-03-09T16:06:43.060474-07:00,1010.0234985351562,10.727006,10727.006 +21208,2025-03-09T16:06:53.782488-07:00,1010.0284423828125,10.722014,10722.014 +21209,2025-03-09T16:07:04.517498-07:00,1010.0269775390625,10.73501,10735.01 +21210,2025-03-09T16:07:15.239642-07:00,1010.0018920898438,10.722144,10722.144 +21211,2025-03-09T16:07:25.971760-07:00,1010.00048828125,10.732118,10732.118 +21212,2025-03-09T16:07:36.702468-07:00,1010.064697265625,10.730708,10730.708 +21213,2025-03-09T16:07:47.430640-07:00,1010.0301513671875,10.728172,10728.172 +21214,2025-03-09T16:07:58.164496-07:00,1010.0122680664062,10.733856,10733.856 +21215,2025-03-09T16:08:08.893472-07:00,1010.0416259765625,10.728976,10728.976 +21216,2025-03-09T16:08:19.619874-07:00,1010.056640625,10.726402,10726.402 +21217,2025-03-09T16:08:30.345470-07:00,1010.0367431640625,10.725596,10725.596 +21218,2025-03-09T16:08:41.076475-07:00,1010.0482788085938,10.731005,10731.005 +21219,2025-03-09T16:08:51.802718-07:00,1010.0482788085938,10.726243,10726.243 +21220,2025-03-09T16:09:02.528556-07:00,1010.0652465820312,10.725838,10725.838 +21221,2025-03-09T16:09:13.264689-07:00,1010.0303344726562,10.736133,10736.133 +21222,2025-03-09T16:09:23.983677-07:00,1010.00244140625,10.718988,10718.988 +21223,2025-03-09T16:09:34.709488-07:00,1010.0076293945312,10.725811,10725.811 +21224,2025-03-09T16:09:45.441664-07:00,1009.9992065429688,10.732176,10732.176 +21225,2025-03-09T16:09:56.165929-07:00,1010.0242309570312,10.724265,10724.265 +21226,2025-03-09T16:10:06.893584-07:00,1010.0474853515625,10.727655,10727.655 +21227,2025-03-09T16:10:17.623634-07:00,1010.030029296875,10.73005,10730.05 +21228,2025-03-09T16:10:28.351421-07:00,1010.04345703125,10.727787,10727.787 +21229,2025-03-09T16:10:39.077655-07:00,1010.0223388671875,10.726234,10726.234 +21230,2025-03-09T16:10:49.809500-07:00,1010.0276489257812,10.731845,10731.845 +21231,2025-03-09T16:11:00.531648-07:00,1010.0382080078125,10.722148,10722.148 +21232,2025-03-09T16:11:11.267544-07:00,1010.0552978515625,10.735896,10735.896 +21233,2025-03-09T16:11:21.985466-07:00,1010.0181274414062,10.717922,10717.922 +21234,2025-03-09T16:11:32.724549-07:00,1010.00390625,10.739083,10739.083 +21235,2025-03-09T16:11:43.446474-07:00,1009.99462890625,10.721925,10721.925 +21236,2025-03-09T16:11:54.173881-07:00,1009.9653930664062,10.727407,10727.407 +21237,2025-03-09T16:12:04.902333-07:00,1010.005615234375,10.728452,10728.452 +21238,2025-03-09T16:12:15.628472-07:00,1010.01611328125,10.726139,10726.139 +21239,2025-03-09T16:12:26.359689-07:00,1010.0148315429688,10.731217,10731.217 +21240,2025-03-09T16:12:37.089490-07:00,1010.0006103515625,10.729801,10729.801 +21241,2025-03-09T16:12:47.814497-07:00,1010.029052734375,10.725007,10725.007 +21242,2025-03-09T16:12:58.545656-07:00,1010.0361938476562,10.731159,10731.159 +21243,2025-03-09T16:13:09.267470-07:00,1010.0164794921875,10.721814,10721.814 +21244,2025-03-09T16:13:19.999482-07:00,1009.991943359375,10.732012,10732.012 +21245,2025-03-09T16:13:30.721639-07:00,1009.96923828125,10.722157,10722.157 +21246,2025-03-09T16:13:41.451550-07:00,1009.9976806640625,10.729911,10729.911 +21247,2025-03-09T16:13:52.173342-07:00,1009.9613037109375,10.721792,10721.792 +21248,2025-03-09T16:14:02.899737-07:00,1009.994873046875,10.726395,10726.395 +21249,2025-03-09T16:14:13.630471-07:00,1009.9979858398438,10.730734,10730.734 +21250,2025-03-09T16:14:24.357496-07:00,1010.00830078125,10.727025,10727.025 +21251,2025-03-09T16:14:35.094469-07:00,1009.9935913085938,10.736973,10736.973 +21252,2025-03-09T16:14:45.825651-07:00,1009.970458984375,10.731182,10731.182 +21253,2025-03-09T16:14:56.550670-07:00,1009.9823608398438,10.725019,10725.019 +21254,2025-03-09T16:15:07.283464-07:00,1010.0187377929688,10.732794,10732.794 +21255,2025-03-09T16:15:18.015472-07:00,1010.017333984375,10.732008,10732.008 +21256,2025-03-09T16:15:28.735777-07:00,1010.0253295898438,10.720305,10720.305 +21257,2025-03-09T16:15:39.463502-07:00,1010.0206298828125,10.727725,10727.725 +21258,2025-03-09T16:15:50.200886-07:00,1009.9976806640625,10.737384,10737.384 +21259,2025-03-09T16:16:00.920678-07:00,1010.0175170898438,10.719792,10719.792 +21260,2025-03-09T16:16:11.647473-07:00,1010.0192260742188,10.726795,10726.795 +21261,2025-03-09T16:16:22.382662-07:00,1009.99609375,10.735189,10735.189 +21262,2025-03-09T16:16:33.106155-07:00,1010.0557250976562,10.723493,10723.493 +21263,2025-03-09T16:16:43.842693-07:00,1010.02783203125,10.736538,10736.538 +21264,2025-03-09T16:16:54.567472-07:00,1010.0557250976562,10.724779,10724.779 +21265,2025-03-09T16:17:05.296463-07:00,1010.0689086914062,10.728991,10728.991 +21266,2025-03-09T16:17:16.030471-07:00,1010.02783203125,10.734008,10734.008 +21267,2025-03-09T16:17:26.757832-07:00,1010.0159301757812,10.727361,10727.361 +21268,2025-03-09T16:17:37.486540-07:00,1010.0159301757812,10.728708,10728.708 +21269,2025-03-09T16:17:48.212601-07:00,1010.0438842773438,10.726061,10726.061 +21270,2025-03-09T16:17:58.942676-07:00,1010.02587890625,10.730075,10730.075 +21271,2025-03-09T16:18:09.680471-07:00,1010.0126342773438,10.737795,10737.795 +21272,2025-03-09T16:18:20.410711-07:00,1010.0404663085938,10.73024,10730.24 +21273,2025-03-09T16:18:31.147647-07:00,1010.0206298828125,10.736936,10736.936 +21274,2025-03-09T16:18:41.876474-07:00,1010.0287475585938,10.728827,10728.827 +21275,2025-03-09T16:18:52.610815-07:00,1010.0287475585938,10.734341,10734.341 +21276,2025-03-09T16:19:03.347971-07:00,1010.0106201171875,10.737156,10737.156 +21277,2025-03-09T16:19:14.068675-07:00,1009.99560546875,10.720704,10720.704 +21278,2025-03-09T16:19:24.804503-07:00,1010.01220703125,10.735828,10735.828 +21279,2025-03-09T16:19:35.536882-07:00,1010.030029296875,10.732379,10732.379 +21280,2025-03-09T16:19:46.269588-07:00,1010.0332641601562,10.732706,10732.706 +21281,2025-03-09T16:19:57.007543-07:00,1010.013427734375,10.737955,10737.955 +21282,2025-03-09T16:20:07.737645-07:00,1010.03466796875,10.730102,10730.102 +21283,2025-03-09T16:20:18.474654-07:00,1010.0574951171875,10.737009,10737.009 +21284,2025-03-09T16:20:29.206536-07:00,1010.031005859375,10.731882,10731.882 +21285,2025-03-09T16:20:39.939535-07:00,1010.0610961914062,10.732999,10732.999 +21286,2025-03-09T16:20:50.669537-07:00,1010.0279541015625,10.730002,10730.002 +21287,2025-03-09T16:21:01.406861-07:00,1010.051025390625,10.737324,10737.324 +21288,2025-03-09T16:21:12.138468-07:00,1010.052490234375,10.731607,10731.607 +21289,2025-03-09T16:21:22.861861-07:00,1010.04736328125,10.723393,10723.393 +21290,2025-03-09T16:21:33.596204-07:00,1010.0208740234375,10.734343,10734.343 +21291,2025-03-09T16:21:44.333533-07:00,1010.050537109375,10.737329,10737.329 +21292,2025-03-09T16:21:55.063603-07:00,1010.0189208984375,10.73007,10730.07 +21293,2025-03-09T16:22:05.794671-07:00,1010.036865234375,10.731068,10731.068 +21294,2025-03-09T16:22:16.522468-07:00,1010.0401000976562,10.727797,10727.797 +21295,2025-03-09T16:22:27.259177-07:00,1010.0614013671875,10.736709,10736.709 +21296,2025-03-09T16:22:37.997674-07:00,1010.0017700195312,10.738497,10738.497 +21297,2025-03-09T16:22:48.728762-07:00,1010.046142578125,10.731088,10731.088 +21298,2025-03-09T16:22:59.458471-07:00,1010.0806884765625,10.729709,10729.709 +21299,2025-03-09T16:23:10.191260-07:00,1010.02294921875,10.732789,10732.789 +21300,2025-03-09T16:23:20.927646-07:00,1009.9945068359375,10.736386,10736.386 +21301,2025-03-09T16:23:31.661558-07:00,1009.9879760742188,10.733912,10733.912 +21302,2025-03-09T16:23:42.385473-07:00,1010.0158081054688,10.723915,10723.915 +21303,2025-03-09T16:23:53.123079-07:00,1009.9992065429688,10.737606,10737.606 +21304,2025-03-09T16:24:03.855472-07:00,1010.0072631835938,10.732393,10732.393 +21305,2025-03-09T16:24:14.595497-07:00,1009.9902954101562,10.740025,10740.025 +21306,2025-03-09T16:24:25.322475-07:00,1010.0053100585938,10.726978,10726.978 +21307,2025-03-09T16:24:36.063466-07:00,1009.9868774414062,10.740991,10740.991 +21308,2025-03-09T16:24:46.794520-07:00,1009.9884643554688,10.731054,10731.054 +21309,2025-03-09T16:24:57.522474-07:00,1009.9768676757812,10.727954,10727.954 +21310,2025-03-09T16:25:08.259648-07:00,1009.9783325195312,10.737174,10737.174 +21311,2025-03-09T16:25:18.999142-07:00,1009.9683837890625,10.739494,10739.494 +21312,2025-03-09T16:25:29.727472-07:00,1010.0127563476562,10.72833,10728.33 +21313,2025-03-09T16:25:40.457614-07:00,1009.9698486328125,10.730142,10730.142 +21314,2025-03-09T16:25:51.184723-07:00,1009.9891357421875,10.727109,10727.109 +21315,2025-03-09T16:26:01.919469-07:00,1009.9840087890625,10.734746,10734.746 +21316,2025-03-09T16:26:12.653470-07:00,1009.9707641601562,10.734001,10734.001 +21317,2025-03-09T16:26:23.382779-07:00,1009.96875,10.729309,10729.309 +21318,2025-03-09T16:26:34.114470-07:00,1010.016845703125,10.731691,10731.691 +21319,2025-03-09T16:26:44.842672-07:00,1010.0103149414062,10.728202,10728.202 +21320,2025-03-09T16:26:55.578479-07:00,1010.0,10.735807,10735.807 +21321,2025-03-09T16:27:06.313661-07:00,1010.006591796875,10.735182,10735.182 +21322,2025-03-09T16:27:17.041466-07:00,1009.9818725585938,10.727805,10727.805 +21323,2025-03-09T16:27:27.776744-07:00,1009.9847412109375,10.735278,10735.278 +21324,2025-03-09T16:27:38.511671-07:00,1010.012939453125,10.734927,10734.927 +21325,2025-03-09T16:27:49.248681-07:00,1010.0064086914062,10.73701,10737.01 +21326,2025-03-09T16:27:59.979470-07:00,1009.997802734375,10.730789,10730.789 +21327,2025-03-09T16:28:10.705471-07:00,1009.9992065429688,10.726001,10726.001 +21328,2025-03-09T16:28:21.437497-07:00,1009.9940795898438,10.732026,10732.026 +21329,2025-03-09T16:28:32.170641-07:00,1009.9690551757812,10.733144,10733.144 +21330,2025-03-09T16:28:42.904895-07:00,1009.9590454101562,10.734254,10734.254 +21331,2025-03-09T16:28:53.632973-07:00,1009.98876953125,10.728078,10728.078 +21332,2025-03-09T16:29:04.373470-07:00,1009.9490356445312,10.740497,10740.497 +21333,2025-03-09T16:29:15.101838-07:00,1009.950439453125,10.728368,10728.368 +21334,2025-03-09T16:29:25.839472-07:00,1009.9254760742188,10.737634,10737.634 +21335,2025-03-09T16:29:36.565495-07:00,1009.9404907226562,10.726023,10726.023 +21336,2025-03-09T16:29:47.298533-07:00,1009.9234619140625,10.733038,10733.038 +21337,2025-03-09T16:29:58.027651-07:00,1009.95654296875,10.729118,10729.118 +21338,2025-03-09T16:30:08.762734-07:00,1009.9332885742188,10.735083,10735.083 +21339,2025-03-09T16:30:19.499610-07:00,1009.93994140625,10.736876,10736.876 +21340,2025-03-09T16:30:30.222472-07:00,1009.9229736328125,10.722862,10722.862 +21341,2025-03-09T16:30:40.958671-07:00,1009.9375,10.736199,10736.199 +21342,2025-03-09T16:30:51.695578-07:00,1009.9307861328125,10.736907,10736.907 +21343,2025-03-09T16:31:02.423470-07:00,1009.9288940429688,10.727892,10727.892 +21344,2025-03-09T16:31:13.161662-07:00,1009.9718017578125,10.738192,10738.192 +21345,2025-03-09T16:31:23.893144-07:00,1009.9467163085938,10.731482,10731.482 +21346,2025-03-09T16:31:34.635470-07:00,1009.9727172851562,10.742326,10742.326 +21347,2025-03-09T16:31:45.367544-07:00,1009.9031372070312,10.732074,10732.074 +21348,2025-03-09T16:31:56.099468-07:00,1009.944580078125,10.731924,10731.924 +21349,2025-03-09T16:32:06.832040-07:00,1009.9345092773438,10.732572,10732.572 +21350,2025-03-09T16:32:17.569474-07:00,1009.9525146484375,10.737434,10737.434 +21351,2025-03-09T16:32:28.301551-07:00,1009.9274291992188,10.732077,10732.077 +21352,2025-03-09T16:32:39.039480-07:00,1009.9306030273438,10.737929,10737.929 +21353,2025-03-09T16:32:49.769694-07:00,1009.9151611328125,10.730214,10730.214 +21354,2025-03-09T16:33:00.509498-07:00,1009.9050903320312,10.739804,10739.804 +21355,2025-03-09T16:33:11.244548-07:00,1009.89990234375,10.73505,10735.05 +21356,2025-03-09T16:33:21.967800-07:00,1009.88330078125,10.723252,10723.252 +21357,2025-03-09T16:33:32.710662-07:00,1009.8812255859375,10.742862,10742.862 +21358,2025-03-09T16:33:43.445470-07:00,1009.884521484375,10.734808,10734.808 +21359,2025-03-09T16:33:54.171684-07:00,1009.900634765625,10.726214,10726.214 +21360,2025-03-09T16:34:04.915930-07:00,1009.890625,10.744246,10744.246 +21361,2025-03-09T16:34:15.649896-07:00,1009.865478515625,10.733966,10733.966 +21362,2025-03-09T16:34:26.382472-07:00,1009.8767700195312,10.732576,10732.576 +21363,2025-03-09T16:34:37.114470-07:00,1009.8848266601562,10.731998,10731.998 +21364,2025-03-09T16:34:47.844582-07:00,1009.8800048828125,10.730112,10730.112 +21365,2025-03-09T16:34:58.580520-07:00,1009.8880615234375,10.735938,10735.938 +21366,2025-03-09T16:35:09.320539-07:00,1009.915771484375,10.740019,10740.019 +21367,2025-03-09T16:35:20.057471-07:00,1009.9007568359375,10.736932,10736.932 +21368,2025-03-09T16:35:30.789988-07:00,1009.920166015625,10.732517,10732.517 +21369,2025-03-09T16:35:41.523936-07:00,1009.9054565429688,10.733948,10733.948 +21370,2025-03-09T16:35:52.262467-07:00,1009.8953857421875,10.738531,10738.531 +21371,2025-03-09T16:36:03.005469-07:00,1009.8570556640625,10.743002,10743.002 +21372,2025-03-09T16:36:13.732467-07:00,1009.8536987304688,10.726998,10726.998 +21373,2025-03-09T16:36:24.467879-07:00,1009.875,10.735412,10735.412 +21374,2025-03-09T16:36:35.199470-07:00,1009.896240234375,10.731591,10731.591 +21375,2025-03-09T16:36:45.935677-07:00,1009.8565673828125,10.736207,10736.207 +21376,2025-03-09T16:36:56.671034-07:00,1009.8052978515625,10.735357,10735.357 +21377,2025-03-09T16:37:07.404785-07:00,1009.8479614257812,10.733751,10733.751 +21378,2025-03-09T16:37:18.134470-07:00,1009.892822265625,10.729685,10729.685 +21379,2025-03-09T16:37:28.871505-07:00,1009.9026489257812,10.737035,10737.035 +21380,2025-03-09T16:37:39.603565-07:00,1009.8677978515625,10.73206,10732.06 +21381,2025-03-09T16:37:50.338500-07:00,1009.7949829101562,10.734935,10734.935 +21382,2025-03-09T16:38:01.076713-07:00,1009.894287109375,10.738213,10738.213 +21383,2025-03-09T16:38:11.809469-07:00,1009.8828125,10.732756,10732.756 +21384,2025-03-09T16:38:22.542767-07:00,1009.8842163085938,10.733298,10733.298 +21385,2025-03-09T16:38:33.274501-07:00,1009.905517578125,10.731734,10731.734 +21386,2025-03-09T16:38:44.004476-07:00,1009.8657836914062,10.729975,10729.975 +21387,2025-03-09T16:38:54.740471-07:00,1009.8638305664062,10.735995,10735.995 +21388,2025-03-09T16:39:05.471753-07:00,1009.85205078125,10.731282,10731.282 +21389,2025-03-09T16:39:16.203695-07:00,1009.8255615234375,10.731942,10731.942 +21390,2025-03-09T16:39:26.945626-07:00,1009.8175048828125,10.741931,10741.931 +21391,2025-03-09T16:39:37.670692-07:00,1009.8387451171875,10.725066,10725.066 +21392,2025-03-09T16:39:48.410635-07:00,1009.80419921875,10.739943,10739.943 +21393,2025-03-09T16:39:59.141545-07:00,1009.8604125976562,10.73091,10730.91 +21394,2025-03-09T16:40:09.879466-07:00,1009.8240356445312,10.737921,10737.921 +21395,2025-03-09T16:40:20.614608-07:00,1009.8292236328125,10.735142,10735.142 +21396,2025-03-09T16:40:31.349921-07:00,1009.842529296875,10.735313,10735.313 +21397,2025-03-09T16:40:42.085470-07:00,1009.8609619140625,10.735549,10735.549 +21398,2025-03-09T16:40:52.827224-07:00,1009.85107421875,10.741754,10741.754 +21399,2025-03-09T16:41:03.565670-07:00,1009.8828125,10.738446,10738.446 +21400,2025-03-09T16:41:14.295649-07:00,1009.82666015625,10.729979,10729.979 +21401,2025-03-09T16:41:25.027673-07:00,1009.8697509765625,10.732024,10732.024 +21402,2025-03-09T16:41:35.764502-07:00,1009.8470458984375,10.736829,10736.829 +21403,2025-03-09T16:41:46.494492-07:00,1009.876953125,10.72999,10729.99 +21404,2025-03-09T16:41:57.229973-07:00,1009.8953857421875,10.735481,10735.481 +21405,2025-03-09T16:42:07.969678-07:00,1009.8870239257812,10.739705,10739.705 +21406,2025-03-09T16:42:18.698538-07:00,1009.8080444335938,10.72886,10728.86 +21407,2025-03-09T16:42:29.435875-07:00,1009.858154296875,10.737337,10737.337 +21408,2025-03-09T16:42:40.168734-07:00,1009.8563842773438,10.732859,10732.859 +21409,2025-03-09T16:42:50.909472-07:00,1009.813720703125,10.740738,10740.738 +21410,2025-03-09T16:43:01.648470-07:00,1009.8336181640625,10.738998,10738.998 +21411,2025-03-09T16:43:12.376472-07:00,1009.8304443359375,10.728002,10728.002 +21412,2025-03-09T16:43:23.112685-07:00,1009.8421630859375,10.736213,10736.213 +21413,2025-03-09T16:43:33.849494-07:00,1009.81396484375,10.736809,10736.809 +21414,2025-03-09T16:43:44.589469-07:00,1009.853759765625,10.739975,10739.975 +21415,2025-03-09T16:43:55.322632-07:00,1009.85888671875,10.733163,10733.163 +21416,2025-03-09T16:44:06.050642-07:00,1009.8560180664062,10.72801,10728.01 +21417,2025-03-09T16:44:16.789242-07:00,1009.8839111328125,10.7386,10738.6 +21418,2025-03-09T16:44:27.525482-07:00,1009.8278198242188,10.73624,10736.24 +21419,2025-03-09T16:44:38.265504-07:00,1009.8792724609375,10.740022,10740.022 +21420,2025-03-09T16:44:48.997473-07:00,1009.8297729492188,10.731969,10731.969 +21421,2025-03-09T16:44:59.729496-07:00,1009.8283081054688,10.732023,10732.023 +21422,2025-03-09T16:45:10.463530-07:00,1009.826904296875,10.734034,10734.034 +21423,2025-03-09T16:45:21.202963-07:00,1009.7575073242188,10.739433,10739.433 +21424,2025-03-09T16:45:31.939655-07:00,1009.7692260742188,10.736692,10736.692 +21425,2025-03-09T16:45:42.672983-07:00,1009.8170166015625,10.733328,10733.328 +21426,2025-03-09T16:45:53.408470-07:00,1009.8552856445312,10.735487,10735.487 +21427,2025-03-09T16:46:04.145676-07:00,1009.8184204101562,10.737206,10737.206 +21428,2025-03-09T16:46:14.878475-07:00,1009.8368530273438,10.732799,10732.799 +21429,2025-03-09T16:46:25.604511-07:00,1009.8317260742188,10.726036,10726.036 +21430,2025-03-09T16:46:36.341469-07:00,1009.8070068359375,10.736958,10736.958 +21431,2025-03-09T16:46:47.078529-07:00,1009.8084106445312,10.73706,10737.06 +21432,2025-03-09T16:46:57.809885-07:00,1009.796630859375,10.731356,10731.356 +21433,2025-03-09T16:47:08.541473-07:00,1009.8049926757812,10.731588,10731.588 +21434,2025-03-09T16:47:19.277679-07:00,1009.7998657226562,10.736206,10736.206 +21435,2025-03-09T16:47:30.008473-07:00,1009.7748413085938,10.730794,10730.794 +21436,2025-03-09T16:47:40.746659-07:00,1009.8030395507812,10.738186,10738.186 +21437,2025-03-09T16:47:51.478469-07:00,1009.805908203125,10.73181,10731.81 +21438,2025-03-09T16:48:02.202648-07:00,1009.81396484375,10.724179,10724.179 +21439,2025-03-09T16:48:12.936885-07:00,1009.8171997070312,10.734237,10734.237 +21440,2025-03-09T16:48:23.673505-07:00,1009.8038940429688,10.73662,10736.62 +21441,2025-03-09T16:48:34.406547-07:00,1009.74755859375,10.733042,10733.042 +21442,2025-03-09T16:48:45.148472-07:00,1009.8233032226562,10.741925,10741.925 +21443,2025-03-09T16:48:55.876663-07:00,1009.7720336914062,10.728191,10728.191 +21444,2025-03-09T16:49:06.611469-07:00,1009.7388916015625,10.734806,10734.806 +21445,2025-03-09T16:49:17.342473-07:00,1009.7185668945312,10.731004,10731.004 +21446,2025-03-09T16:49:28.082750-07:00,1009.75830078125,10.740277,10740.277 +21447,2025-03-09T16:49:38.823656-07:00,1009.794189453125,10.740906,10740.906 +21448,2025-03-09T16:49:49.561646-07:00,1009.7298583984375,10.73799,10737.99 +21449,2025-03-09T16:50:00.293580-07:00,1009.7344360351562,10.731934,10731.934 +21450,2025-03-09T16:50:11.022687-07:00,1009.8167724609375,10.729107,10729.107 +21451,2025-03-09T16:50:21.757681-07:00,1009.7987670898438,10.734994,10734.994 +21452,2025-03-09T16:50:32.491795-07:00,1009.7854614257812,10.734114,10734.114 +21453,2025-03-09T16:50:43.237479-07:00,1009.7882690429688,10.745684,10745.684 +21454,2025-03-09T16:50:53.970753-07:00,1009.77685546875,10.733274,10733.274 +21455,2025-03-09T16:51:04.703659-07:00,1009.7716674804688,10.732906,10732.906 +21456,2025-03-09T16:51:15.437506-07:00,1009.794677734375,10.733847,10733.847 +21457,2025-03-09T16:51:26.173531-07:00,1009.7630615234375,10.736025,10736.025 +21458,2025-03-09T16:51:36.902535-07:00,1009.7611083984375,10.729004,10729.004 +21459,2025-03-09T16:51:47.635657-07:00,1009.7544555664062,10.733122,10733.122 +21460,2025-03-09T16:51:58.369536-07:00,1009.7837524414062,10.733879,10733.879 +21461,2025-03-09T16:52:09.100475-07:00,1009.7440795898438,10.730939,10730.939 +21462,2025-03-09T16:52:19.829701-07:00,1009.7406005859375,10.729226,10729.226 +21463,2025-03-09T16:52:30.504707-07:00,1009.7340698242188,10.675006,10675.006 +21464,2025-03-09T16:52:41.230278-07:00,1009.761962890625,10.725571,10725.571 +21465,2025-03-09T16:52:51.965431-07:00,1009.7173461914062,10.735153,10735.153 +21466,2025-03-09T16:53:02.702560-07:00,1009.7254028320312,10.737129,10737.129 +21467,2025-03-09T16:53:13.435311-07:00,1009.7467041015625,10.732751,10732.751 +21468,2025-03-09T16:53:24.172280-07:00,1009.7400512695312,10.736969,10736.969 +21469,2025-03-09T16:53:34.902195-07:00,1009.7764282226562,10.729915,10729.915 +21470,2025-03-09T16:53:45.638660-07:00,1009.7579956054688,10.736465,10736.465 +21471,2025-03-09T16:53:56.370281-07:00,1009.7446899414062,10.731621,10731.621 +21472,2025-03-09T16:54:07.107520-07:00,1009.767822265625,10.737239,10737.239 +21473,2025-03-09T16:54:17.841284-07:00,1009.7346801757812,10.733764,10733.764 +21474,2025-03-09T16:54:28.574490-07:00,1009.71484375,10.733206,10733.206 +21475,2025-03-09T16:54:39.303279-07:00,1009.7442016601562,10.728789,10728.789 +21476,2025-03-09T16:54:50.043280-07:00,1009.7393188476562,10.740001,10740.001 +21477,2025-03-09T16:55:00.775677-07:00,1009.7620239257812,10.732397,10732.397 +21478,2025-03-09T16:55:11.511493-07:00,1009.77392578125,10.735816,10735.816 +21479,2025-03-09T16:55:22.247431-07:00,1009.7274780273438,10.735938,10735.938 +21480,2025-03-09T16:55:32.980511-07:00,1009.7421875,10.73308,10733.08 +21481,2025-03-09T16:55:43.713650-07:00,1009.7355346679688,10.733139,10733.139 +21482,2025-03-09T16:55:54.441277-07:00,1009.7156372070312,10.727627,10727.627 +21483,2025-03-09T16:56:05.172540-07:00,1009.7254638671875,10.731263,10731.263 +21484,2025-03-09T16:56:15.912870-07:00,1009.7203369140625,10.74033,10740.33 +21485,2025-03-09T16:56:26.645457-07:00,1009.756591796875,10.732587,10732.587 +21486,2025-03-09T16:56:37.377304-07:00,1009.7335815429688,10.731847,10731.847 +21487,2025-03-09T16:56:48.102541-07:00,1009.7664184570312,10.725237,10725.237 +21488,2025-03-09T16:56:58.836689-07:00,1009.7433471679688,10.734148,10734.148 +21489,2025-03-09T16:57:09.566285-07:00,1009.753173828125,10.729596,10729.596 +21490,2025-03-09T16:57:20.299306-07:00,1009.7346801757812,10.733021,10733.021 +21491,2025-03-09T16:57:31.034418-07:00,1009.7479858398438,10.735112,10735.112 +21492,2025-03-09T16:57:41.767280-07:00,1009.767822265625,10.732862,10732.862 +21493,2025-03-09T16:57:52.496254-07:00,1009.7361450195312,10.728974,10728.974 +21494,2025-03-09T16:58:03.239346-07:00,1009.7295532226562,10.743092,10743.092 +21495,2025-03-09T16:58:13.967694-07:00,1009.6765747070312,10.728348,10728.348 +21496,2025-03-09T16:58:24.703281-07:00,1009.7000122070312,10.735587,10735.587 +21497,2025-03-09T16:58:35.439500-07:00,1009.6978149414062,10.736219,10736.219 +21498,2025-03-09T16:58:44.774838-07:00,1009.7212524414062,9.335338,9335.338 +21499,2025-03-09T16:58:46.170496-07:00,1009.6932983398438,1.395658,1395.658 +21500,2025-03-09T16:58:56.898435-07:00,1009.6961669921875,10.727939,10727.939 +21501,2025-03-09T16:59:07.637282-07:00,1009.6763305664062,10.738847,10738.847 +21502,2025-03-09T16:59:18.374309-07:00,1009.7212524414062,10.737027,10737.027 +21503,2025-03-09T16:59:29.102997-07:00,1009.697998046875,10.728688,10728.688 +21504,2025-03-09T16:59:39.832437-07:00,1009.66162109375,10.72944,10729.44 +21505,2025-03-09T16:59:50.572313-07:00,1009.67138671875,10.739876,10739.876 +21506,2025-03-09T17:00:01.299633-07:00,1009.7045288085938,10.72732,10727.32 +21507,2025-03-09T17:00:12.034357-07:00,1009.6498413085938,10.734724,10734.724 +21508,2025-03-09T17:00:22.762432-07:00,1009.6781005859375,10.728075,10728.075 +21509,2025-03-09T17:00:33.502284-07:00,1009.6913452148438,10.739852,10739.852 +21510,2025-03-09T17:00:44.236651-07:00,1009.6729125976562,10.734367,10734.367 +21511,2025-03-09T17:00:54.966483-07:00,1009.6942138671875,10.729832,10729.832 +21512,2025-03-09T17:01:05.709281-07:00,1009.66943359375,10.742798,10742.798 +21513,2025-03-09T17:01:16.434469-07:00,1009.6544799804688,10.725188,10725.188 +21514,2025-03-09T17:01:27.172016-07:00,1009.65625,10.737547,10737.547 +21515,2025-03-09T17:01:37.909058-07:00,1009.6296997070312,10.737042,10737.042 +21516,2025-03-09T17:01:48.637494-07:00,1009.6709594726562,10.728436,10728.436 +21517,2025-03-09T17:01:59.372308-07:00,1009.6443481445312,10.734814,10734.814 +21518,2025-03-09T17:02:10.105882-07:00,1009.6495361328125,10.733574,10733.574 +21519,2025-03-09T17:02:20.842572-07:00,1009.6495361328125,10.73669,10736.69 +21520,2025-03-09T17:02:31.569311-07:00,1009.6709594726562,10.726739,10726.739 +21521,2025-03-09T17:02:42.309469-07:00,1009.6590576171875,10.740158,10740.158 +21522,2025-03-09T17:02:53.036297-07:00,1009.6510009765625,10.726828,10726.828 +21523,2025-03-09T17:03:03.771314-07:00,1009.6788940429688,10.735017,10735.017 +21524,2025-03-09T17:03:14.503283-07:00,1009.6429443359375,10.731969,10731.969 +21525,2025-03-09T17:03:25.238467-07:00,1009.6642456054688,10.735184,10735.184 +21526,2025-03-09T17:03:35.975315-07:00,1009.7072143554688,10.736848,10736.848 +21527,2025-03-09T17:03:46.699686-07:00,1009.67236328125,10.724371,10724.371 +21528,2025-03-09T17:03:57.439282-07:00,1009.6378173828125,10.739596,10739.596 +21529,2025-03-09T17:04:08.169854-07:00,1009.6657104492188,10.730572,10730.572 +21530,2025-03-09T17:04:18.906436-07:00,1009.6343994140625,10.736582,10736.582 +21531,2025-03-09T17:04:29.632285-07:00,1009.6590576171875,10.725849,10725.849 +21532,2025-03-09T17:04:40.366532-07:00,1009.6841430664062,10.734247,10734.247 +21533,2025-03-09T17:04:51.104471-07:00,1009.6815795898438,10.737939,10737.939 +21534,2025-03-09T17:05:01.834283-07:00,1009.6898193359375,10.729812,10729.812 +21535,2025-03-09T17:05:12.568494-07:00,1009.6295166015625,10.734211,10734.211 +21536,2025-03-09T17:05:23.295479-07:00,1009.6534423828125,10.726985,10726.985 +21537,2025-03-09T17:05:34.023511-07:00,1009.6842041015625,10.728032,10728.032 +21538,2025-03-09T17:05:44.760314-07:00,1009.678466796875,10.736803,10736.803 +21539,2025-03-09T17:05:55.498459-07:00,1009.6676635742188,10.738145,10738.145 +21540,2025-03-09T17:06:06.225284-07:00,1009.6456909179688,10.726825,10726.825 +21541,2025-03-09T17:06:16.959448-07:00,1009.649658203125,10.734164,10734.164 +21542,2025-03-09T17:06:27.691463-07:00,1009.6688842773438,10.732015,10732.015 +21543,2025-03-09T17:06:38.418490-07:00,1009.6765747070312,10.727027,10727.027 +21544,2025-03-09T17:06:49.150777-07:00,1009.639404296875,10.732287,10732.287 +21545,2025-03-09T17:06:59.882425-07:00,1009.6665649414062,10.731648,10731.648 +21546,2025-03-09T17:07:10.609640-07:00,1009.6851806640625,10.727215,10727.215 +21547,2025-03-09T17:07:21.347281-07:00,1009.657470703125,10.737641,10737.641 +21548,2025-03-09T17:07:32.080911-07:00,1009.663330078125,10.73363,10733.63 +21549,2025-03-09T17:07:42.813816-07:00,1009.70361328125,10.732905,10732.905 +21550,2025-03-09T17:07:53.550508-07:00,1009.6612548828125,10.736692,10736.692 +21551,2025-03-09T17:08:04.283284-07:00,1009.6712646484375,10.732776,10732.776 +21552,2025-03-09T17:08:15.011450-07:00,1009.6325073242188,10.728166,10728.166 +21553,2025-03-09T17:08:25.738281-07:00,1009.6755981445312,10.726831,10726.831 +21554,2025-03-09T17:08:36.478279-07:00,1009.697509765625,10.739998,10739.998 +21555,2025-03-09T17:08:47.206193-07:00,1009.6648559570312,10.727914,10727.914 +21556,2025-03-09T17:08:57.934281-07:00,1009.64404296875,10.728088,10728.088 +21557,2025-03-09T17:09:08.674284-07:00,1009.6904907226562,10.740003,10740.003 +21558,2025-03-09T17:09:19.407283-07:00,1009.6509399414062,10.732999,10732.999 +21559,2025-03-09T17:09:30.134333-07:00,1009.7142333984375,10.72705,10727.05 +21560,2025-03-09T17:09:40.869810-07:00,1009.6763916015625,10.735477,10735.477 +21561,2025-03-09T17:09:51.591912-07:00,1009.6599731445312,10.722102,10722.102 +21562,2025-03-09T17:10:02.323358-07:00,1009.6783447265625,10.731446,10731.446 +21563,2025-03-09T17:10:13.061314-07:00,1009.6716918945312,10.737956,10737.956 +21564,2025-03-09T17:10:23.783464-07:00,1009.6636962890625,10.72215,10722.15 +21565,2025-03-09T17:10:34.512521-07:00,1009.68359375,10.729057,10729.057 +21566,2025-03-09T17:10:45.244454-07:00,1009.6751708984375,10.731933,10731.933 +21567,2025-03-09T17:10:55.975288-07:00,1009.6685791015625,10.730834,10730.834 +21568,2025-03-09T17:11:06.711481-07:00,1009.6788940429688,10.736193,10736.193 +21569,2025-03-09T17:11:17.443284-07:00,1009.7101440429688,10.731803,10731.803 +21570,2025-03-09T17:11:28.177281-07:00,1009.6788940429688,10.733997,10733.997 +21571,2025-03-09T17:11:38.909457-07:00,1009.6307983398438,10.732176,10732.176 +21572,2025-03-09T17:11:49.647012-07:00,1009.6722412109375,10.737555,10737.555 +21573,2025-03-09T17:12:00.374300-07:00,1009.6950073242188,10.727288,10727.288 +21574,2025-03-09T17:12:11.109596-07:00,1009.6553344726562,10.735296,10735.296 +21575,2025-03-09T17:12:21.839040-07:00,1009.6539306640625,10.729444,10729.444 +21576,2025-03-09T17:12:32.569283-07:00,1009.6604614257812,10.730243,10730.243 +21577,2025-03-09T17:12:43.309281-07:00,1009.6768798828125,10.739998,10739.998 +21578,2025-03-09T17:12:54.042403-07:00,1009.6188354492188,10.733122,10733.122 +21579,2025-03-09T17:13:04.764283-07:00,1009.6268920898438,10.72188,10721.88 +21580,2025-03-09T17:13:15.502282-07:00,1009.6665649414062,10.737999,10737.999 +21581,2025-03-09T17:13:26.235510-07:00,1009.633544921875,10.733228,10733.228 +21582,2025-03-09T17:13:36.969506-07:00,1009.6353149414062,10.733996,10733.996 +21583,2025-03-09T17:13:47.693283-07:00,1009.6698608398438,10.723777,10723.777 +21584,2025-03-09T17:13:58.423440-07:00,1009.6168823242188,10.730157,10730.157 +21585,2025-03-09T17:14:09.160412-07:00,1009.6329956054688,10.736972,10736.972 +21586,2025-03-09T17:14:19.895283-07:00,1009.64794921875,10.734871,10734.871 +21587,2025-03-09T17:14:30.622507-07:00,1009.62158203125,10.727224,10727.224 +21588,2025-03-09T17:14:41.358464-07:00,1009.629638671875,10.735957,10735.957 +21589,2025-03-09T17:14:52.085491-07:00,1009.6063232421875,10.727027,10727.027 +21590,2025-03-09T17:15:02.822387-07:00,1009.627685546875,10.736896,10736.896 +21591,2025-03-09T17:15:13.553496-07:00,1009.6077880859375,10.731109,10731.109 +21592,2025-03-09T17:15:24.288308-07:00,1009.6091918945312,10.734812,10734.812 +21593,2025-03-09T17:15:35.014879-07:00,1009.61767578125,10.726571,10726.571 +21594,2025-03-09T17:15:45.750486-07:00,1009.6337280273438,10.735607,10735.607 +21595,2025-03-09T17:15:56.480303-07:00,1009.6104736328125,10.729817,10729.817 +21596,2025-03-09T17:16:07.217483-07:00,1009.6303100585938,10.73718,10737.18 +21597,2025-03-09T17:16:17.944312-07:00,1009.6199951171875,10.726829,10726.829 +21598,2025-03-09T17:16:28.672486-07:00,1009.6548461914062,10.728174,10728.174 +21599,2025-03-09T17:16:39.410285-07:00,1009.6431274414062,10.737799,10737.799 +21600,2025-03-09T17:16:50.134461-07:00,1009.6048583984375,10.724176,10724.176 +21601,2025-03-09T17:17:00.875206-07:00,1009.5801391601562,10.740745,10740.745 +21602,2025-03-09T17:17:11.601286-07:00,1009.602783203125,10.72608,10726.08 +21603,2025-03-09T17:17:22.332480-07:00,1009.578125,10.731194,10731.194 +21604,2025-03-09T17:17:33.063510-07:00,1009.5994262695312,10.73103,10731.03 +21605,2025-03-09T17:17:43.799436-07:00,1009.5928344726562,10.735926,10735.926 +21606,2025-03-09T17:17:54.535280-07:00,1009.6915893554688,10.735844,10735.844 +21607,2025-03-09T17:18:05.266473-07:00,1009.6187744140625,10.731193,10731.193 +21608,2025-03-09T17:18:15.998457-07:00,1009.6220092773438,10.731984,10731.984 +21609,2025-03-09T17:18:26.731280-07:00,1009.596923828125,10.732823,10732.823 +21610,2025-03-09T17:18:37.470283-07:00,1009.5639038085938,10.739003,10739.003 +21611,2025-03-09T17:18:48.197439-07:00,1009.57861328125,10.727156,10727.156 +21612,2025-03-09T17:18:58.924284-07:00,1009.580322265625,10.726845,10726.845 +21613,2025-03-09T17:19:09.664518-07:00,1009.5501708984375,10.740234,10740.234 +21614,2025-03-09T17:19:20.388390-07:00,1009.579833984375,10.723872,10723.872 +21615,2025-03-09T17:19:31.122282-07:00,1009.5850219726562,10.733892,10733.892 +21616,2025-03-09T17:19:41.855404-07:00,1009.5697631835938,10.733122,10733.122 +21617,2025-03-09T17:19:52.593283-07:00,1009.5646362304688,10.737879,10737.879 +21618,2025-03-09T17:20:03.330299-07:00,1009.5611572265625,10.737016,10737.016 +21619,2025-03-09T17:20:14.058622-07:00,1009.590576171875,10.728323,10728.323 +21620,2025-03-09T17:20:24.795486-07:00,1009.5853881835938,10.736864,10736.864 +21621,2025-03-09T17:20:35.527582-07:00,1009.5111083984375,10.732096,10732.096 +21622,2025-03-09T17:20:46.258132-07:00,1009.5125732421875,10.73055,10730.55 +21623,2025-03-09T17:20:56.987281-07:00,1009.5321655273438,10.729149,10729.149 +21624,2025-03-09T17:21:07.729283-07:00,1009.525634765625,10.742002,10742.002 +21625,2025-03-09T17:21:18.457645-07:00,1009.5549926757812,10.728362,10728.362 +21626,2025-03-09T17:21:29.190594-07:00,1009.54345703125,10.732949,10732.949 +21627,2025-03-09T17:21:39.928490-07:00,1009.5515747070312,10.737896,10737.896 +21628,2025-03-09T17:21:50.658473-07:00,1009.552978515625,10.729983,10729.983 +21629,2025-03-09T17:22:01.392452-07:00,1009.5282592773438,10.733979,10733.979 +21630,2025-03-09T17:22:12.127276-07:00,1009.5527954101562,10.734824,10734.824 +21631,2025-03-09T17:22:22.858283-07:00,1009.5262451171875,10.731007,10731.007 +21632,2025-03-09T17:22:33.595278-07:00,1009.5225830078125,10.736995,10736.995 +21633,2025-03-09T17:22:44.334520-07:00,1009.549072265625,10.739242,10739.242 +21634,2025-03-09T17:22:55.063497-07:00,1009.5323486328125,10.728977,10728.977 +21635,2025-03-09T17:23:05.796337-07:00,1009.5257568359375,10.73284,10732.84 +21636,2025-03-09T17:23:16.537147-07:00,1009.5191650390625,10.74081,10740.81 +21637,2025-03-09T17:23:27.270482-07:00,1009.495849609375,10.733335,10733.335 +21638,2025-03-09T17:23:37.994283-07:00,1009.479248046875,10.723801,10723.801 +21639,2025-03-09T17:23:48.736308-07:00,1009.482421875,10.742025,10742.025 +21640,2025-03-09T17:23:59.467392-07:00,1009.5022583007812,10.731084,10731.084 +21641,2025-03-09T17:24:10.195583-07:00,1009.4494018554688,10.728191,10728.191 +21642,2025-03-09T17:24:20.935867-07:00,1009.4639892578125,10.740284,10740.284 +21643,2025-03-09T17:24:31.659496-07:00,1009.4606323242188,10.723629,10723.629 +21644,2025-03-09T17:24:42.397482-07:00,1009.4539184570312,10.737986,10737.986 +21645,2025-03-09T17:24:53.132315-07:00,1009.475341796875,10.734833,10734.833 +21646,2025-03-09T17:25:03.868388-07:00,1009.4913940429688,10.736073,10736.073 +21647,2025-03-09T17:25:14.599359-07:00,1009.458251953125,10.730971,10730.971 +21648,2025-03-09T17:25:25.336751-07:00,1009.4614868164062,10.737392,10737.392 +21649,2025-03-09T17:25:36.071282-07:00,1009.4318237304688,10.734531,10734.531 +21650,2025-03-09T17:25:46.811491-07:00,1009.4779663085938,10.740209,10740.209 +21651,2025-03-09T17:25:57.549278-07:00,1009.4911499023438,10.737787,10737.787 +21652,2025-03-09T17:26:08.281465-07:00,1009.4595336914062,10.732187,10732.187 +21653,2025-03-09T17:26:19.015279-07:00,1009.4476318359375,10.733814,10733.814 +21654,2025-03-09T17:26:29.744730-07:00,1009.4675903320312,10.729451,10729.451 +21655,2025-03-09T17:26:40.481682-07:00,1009.4906005859375,10.736952,10736.952 +21656,2025-03-09T17:26:51.217454-07:00,1009.4243774414062,10.735772,10735.772 +21657,2025-03-09T17:27:01.953530-07:00,1009.4754028320312,10.736076,10736.076 +21658,2025-03-09T17:27:12.689455-07:00,1009.4423217773438,10.735925,10735.925 +21659,2025-03-09T17:27:23.422284-07:00,1009.4258422851562,10.732829,10732.829 +21660,2025-03-09T17:27:34.151906-07:00,1009.4520874023438,10.729622,10729.622 +21661,2025-03-09T17:27:44.888637-07:00,1009.4498291015625,10.736731,10736.731 +21662,2025-03-09T17:27:55.617544-07:00,1009.4317016601562,10.728907,10728.907 +21663,2025-03-09T17:28:06.351453-07:00,1009.4397583007812,10.733909,10733.909 +21664,2025-03-09T17:28:17.074283-07:00,1009.4296875,10.72283,10722.83 +21665,2025-03-09T17:28:27.815283-07:00,1009.4424438476562,10.741,10741.0 +21666,2025-03-09T17:28:38.544694-07:00,1009.4138793945312,10.729411,10729.411 +21667,2025-03-09T17:28:49.271485-07:00,1009.4234619140625,10.726791,10726.791 +21668,2025-03-09T17:29:00.001284-07:00,1009.4280395507812,10.729799,10729.799 +21669,2025-03-09T17:29:10.737306-07:00,1009.4525146484375,10.736022,10736.022 +21670,2025-03-09T17:29:21.464279-07:00,1009.4277954101562,10.726973,10726.973 +21671,2025-03-09T17:29:32.192285-07:00,1009.3975830078125,10.728006,10728.006 +21672,2025-03-09T17:29:42.932002-07:00,1009.3956298828125,10.739717,10739.717 +21673,2025-03-09T17:29:53.660280-07:00,1009.4385375976562,10.728278,10728.278 +21674,2025-03-09T17:30:04.390720-07:00,1009.4166259765625,10.73044,10730.44 +21675,2025-03-09T17:30:15.119343-07:00,1009.3915405273438,10.728623,10728.623 +21676,2025-03-09T17:30:25.853312-07:00,1009.3909912109375,10.733969,10733.969 +21677,2025-03-09T17:30:36.585279-07:00,1009.406005859375,10.731967,10731.967 +21678,2025-03-09T17:30:47.318473-07:00,1009.3757934570312,10.733194,10733.194 +21679,2025-03-09T17:30:58.045780-07:00,1009.3775024414062,10.727307,10727.307 +21680,2025-03-09T17:31:08.781398-07:00,1009.3804931640625,10.735618,10735.618 +21681,2025-03-09T17:31:19.508278-07:00,1009.399658203125,10.72688,10726.88 +21682,2025-03-09T17:31:30.244461-07:00,1009.4014892578125,10.736183,10736.183 +21683,2025-03-09T17:31:40.968355-07:00,1009.4043579101562,10.723894,10723.894 +21684,2025-03-09T17:31:51.704717-07:00,1009.3976440429688,10.736362,10736.362 +21685,2025-03-09T17:32:02.442469-07:00,1009.404052734375,10.737752,10737.752 +21686,2025-03-09T17:32:13.171285-07:00,1009.3937377929688,10.728816,10728.816 +21687,2025-03-09T17:32:23.908281-07:00,1009.4035034179688,10.736996,10736.996 +21688,2025-03-09T17:32:34.639279-07:00,1009.3903198242188,10.730998,10730.998 +21689,2025-03-09T17:32:45.370496-07:00,1009.3931274414062,10.731217,10731.217 +21690,2025-03-09T17:32:56.105283-07:00,1009.3931274414062,10.734787,10734.787 +21691,2025-03-09T17:33:06.836522-07:00,1009.4046630859375,10.731239,10731.239 +21692,2025-03-09T17:33:17.561864-07:00,1009.41796875,10.725342,10725.342 +21693,2025-03-09T17:33:28.301354-07:00,1009.4329833984375,10.73949,10739.49 +21694,2025-03-09T17:33:39.034276-07:00,1009.4012451171875,10.732922,10732.922 +21695,2025-03-09T17:33:49.765287-07:00,1009.387939453125,10.731011,10731.011 +21696,2025-03-09T17:34:00.497566-07:00,1009.384521484375,10.732279,10732.279 +21697,2025-03-09T17:34:11.226458-07:00,1009.4006958007812,10.728892,10728.892 +21698,2025-03-09T17:34:21.967484-07:00,1009.4288940429688,10.741026,10741.026 +21699,2025-03-09T17:34:32.695388-07:00,1009.4171142578125,10.727904,10727.904 +21700,2025-03-09T17:34:43.437910-07:00,1009.4090576171875,10.742522,10742.522 +21701,2025-03-09T17:34:54.168345-07:00,1009.3742065429688,10.730435,10730.435 +21702,2025-03-09T17:35:04.899279-07:00,1009.4090576171875,10.730934,10730.934 +21703,2025-03-09T17:35:15.641284-07:00,1009.397216796875,10.742005,10742.005 +21704,2025-03-09T17:35:26.378214-07:00,1009.38720703125,10.73693,10736.93 +21705,2025-03-09T17:35:37.113453-07:00,1009.4053344726562,10.735239,10735.239 +21706,2025-03-09T17:35:47.848677-07:00,1009.360595703125,10.735224,10735.224 +21707,2025-03-09T17:35:58.582498-07:00,1009.3787231445312,10.733821,10733.821 +21708,2025-03-09T17:36:09.316826-07:00,1009.3886108398438,10.734328,10734.328 +21709,2025-03-09T17:36:20.050281-07:00,1009.409912109375,10.733455,10733.455 +21710,2025-03-09T17:36:30.785425-07:00,1009.3436889648438,10.735144,10735.144 +21711,2025-03-09T17:36:41.524292-07:00,1009.3687744140625,10.738867,10738.867 +21712,2025-03-09T17:36:52.260461-07:00,1009.3820190429688,10.736169,10736.169 +21713,2025-03-09T17:37:02.997160-07:00,1009.3900146484375,10.736699,10736.699 +21714,2025-03-09T17:37:13.734286-07:00,1009.3886108398438,10.737126,10737.126 +21715,2025-03-09T17:37:24.468536-07:00,1009.37158203125,10.73425,10734.25 +21716,2025-03-09T17:37:35.199456-07:00,1009.3601684570312,10.73092,10730.92 +21717,2025-03-09T17:37:45.930283-07:00,1009.3733520507812,10.730827,10730.827 +21718,2025-03-09T17:37:56.670280-07:00,1009.3701782226562,10.739997,10739.997 +21719,2025-03-09T17:38:07.403283-07:00,1009.3914794921875,10.733003,10733.003 +21720,2025-03-09T17:38:18.137463-07:00,1009.348876953125,10.73418,10734.18 +21721,2025-03-09T17:38:28.870325-07:00,1009.3753051757812,10.732862,10732.862 +21722,2025-03-09T17:38:39.601574-07:00,1009.40185546875,10.731249,10731.249 +21723,2025-03-09T17:38:50.334419-07:00,1009.3540649414062,10.732845,10732.845 +21724,2025-03-09T17:39:01.072627-07:00,1009.3687744140625,10.738208,10738.208 +21725,2025-03-09T17:39:11.802281-07:00,1009.360595703125,10.729654,10729.654 +21726,2025-03-09T17:39:22.541352-07:00,1009.35546875,10.739071,10739.071 +21727,2025-03-09T17:39:33.273440-07:00,1009.3701782226562,10.732088,10732.088 +21728,2025-03-09T17:39:44.003281-07:00,1009.3820190429688,10.729841,10729.841 +21729,2025-03-09T17:39:54.744574-07:00,1009.3739013671875,10.741293,10741.293 +21730,2025-03-09T17:40:05.473466-07:00,1009.38720703125,10.728892,10728.892 +21731,2025-03-09T17:40:16.206466-07:00,1009.3456420898438,10.733,10733.0 +21732,2025-03-09T17:40:26.946281-07:00,1009.3523559570312,10.739815,10739.815 +21733,2025-03-09T17:40:37.676284-07:00,1009.3920288085938,10.730003,10730.003 +21734,2025-03-09T17:40:48.407464-07:00,1009.3560791015625,10.73118,10731.18 +21735,2025-03-09T17:40:59.150514-07:00,1009.3693237304688,10.74305,10743.05 +21736,2025-03-09T17:41:09.876542-07:00,1009.3759155273438,10.726028,10726.028 +21737,2025-03-09T17:41:20.610496-07:00,1009.3773193359375,10.733954,10733.954 +21738,2025-03-09T17:41:31.348146-07:00,1009.3609619140625,10.73765,10737.65 +21739,2025-03-09T17:41:42.081614-07:00,1009.3892211914062,10.733468,10733.468 +21740,2025-03-09T17:41:52.820483-07:00,1009.3807983398438,10.738869,10738.869 +21741,2025-03-09T17:42:03.549495-07:00,1009.3529052734375,10.729012,10729.012 +21742,2025-03-09T17:42:14.282316-07:00,1009.3529052734375,10.732821,10732.821 +21743,2025-03-09T17:42:25.011312-07:00,1009.3381958007812,10.728996,10728.996 +21744,2025-03-09T17:42:35.752283-07:00,1009.3513793945312,10.740971,10740.971 +21745,2025-03-09T17:42:46.490285-07:00,1009.33154296875,10.738002,10738.002 +21746,2025-03-09T17:42:57.221682-07:00,1009.313720703125,10.731397,10731.397 +21747,2025-03-09T17:43:07.957292-07:00,1009.3431396484375,10.73561,10735.61 +21748,2025-03-09T17:43:18.682419-07:00,1009.3681030273438,10.725127,10725.127 +21749,2025-03-09T17:43:29.415365-07:00,1009.3496704101562,10.732946,10732.946 +21750,2025-03-09T17:43:40.152505-07:00,1009.3534545898438,10.73714,10737.14 +21751,2025-03-09T17:43:50.885598-07:00,1009.3251342773438,10.733093,10733.093 +21752,2025-03-09T17:44:01.620319-07:00,1009.3450927734375,10.734721,10734.721 +21753,2025-03-09T17:44:12.358458-07:00,1009.3701782226562,10.738139,10738.139 +21754,2025-03-09T17:44:23.087335-07:00,1009.3701782226562,10.728877,10728.877 +21755,2025-03-09T17:44:33.821018-07:00,1009.35546875,10.733683,10733.683 +21756,2025-03-09T17:44:44.558482-07:00,1009.3666381835938,10.737464,10737.464 +21757,2025-03-09T17:44:55.284525-07:00,1009.3453369140625,10.726043,10726.043 +21758,2025-03-09T17:45:06.016283-07:00,1009.37841796875,10.731758,10731.758 +21759,2025-03-09T17:45:16.757284-07:00,1009.37841796875,10.741001,10741.001 +21760,2025-03-09T17:45:27.488510-07:00,1009.3504638671875,10.731226,10731.226 +21761,2025-03-09T17:45:38.219743-07:00,1009.3406982421875,10.731233,10731.233 +21762,2025-03-09T17:45:48.948280-07:00,1009.31591796875,10.728537,10728.537 +21763,2025-03-09T17:45:59.680490-07:00,1009.3524780273438,10.73221,10732.21 +21764,2025-03-09T17:46:10.407334-07:00,1009.3361206054688,10.726844,10726.844 +21765,2025-03-09T17:46:21.140281-07:00,1009.3361206054688,10.732947,10732.947 +21766,2025-03-09T17:46:31.870899-07:00,1009.3280639648438,10.730618,10730.618 +21767,2025-03-09T17:46:42.599942-07:00,1009.3148193359375,10.729043,10729.043 +21768,2025-03-09T17:46:53.335284-07:00,1009.3133544921875,10.735342,10735.342 +21769,2025-03-09T17:47:04.066279-07:00,1009.29345703125,10.730995,10730.995 +21770,2025-03-09T17:47:14.800491-07:00,1009.29833984375,10.734212,10734.212 +21771,2025-03-09T17:47:25.533308-07:00,1009.29833984375,10.732817,10732.817 +21772,2025-03-09T17:47:36.265288-07:00,1009.296875,10.73198,10731.98 +21773,2025-03-09T17:47:46.998809-07:00,1009.2804565429688,10.733521,10733.521 +21774,2025-03-09T17:47:57.731841-07:00,1009.3021240234375,10.733032,10733.032 +21775,2025-03-09T17:48:08.454354-07:00,1009.2937622070312,10.722513,10722.513 +21776,2025-03-09T17:48:19.191294-07:00,1009.2709350585938,10.73694,10736.94 +21777,2025-03-09T17:48:29.919305-07:00,1009.2559204101562,10.728011,10728.011 +21778,2025-03-09T17:48:40.655831-07:00,1009.2626342773438,10.736526,10736.526 +21779,2025-03-09T17:48:51.380511-07:00,1009.2545166015625,10.72468,10724.68 +21780,2025-03-09T17:49:02.110283-07:00,1009.27587890625,10.729772,10729.772 +21781,2025-03-09T17:49:12.850281-07:00,1009.267822265625,10.739998,10739.998 +21782,2025-03-09T17:49:23.583345-07:00,1009.2664184570312,10.733064,10733.064 +21783,2025-03-09T17:49:34.302568-07:00,1009.264892578125,10.719223,10719.223 +21784,2025-03-09T17:49:45.036894-07:00,1009.2715454101562,10.734326,10734.326 +21785,2025-03-09T17:49:55.771281-07:00,1009.251708984375,10.734387,10734.387 +21786,2025-03-09T17:50:06.503467-07:00,1009.2432861328125,10.732186,10732.186 +21787,2025-03-09T17:50:17.235283-07:00,1009.26171875,10.731816,10731.816 +21788,2025-03-09T17:50:27.965497-07:00,1009.2470092773438,10.730214,10730.214 +21789,2025-03-09T17:50:38.692525-07:00,1009.255126953125,10.727028,10727.028 +21790,2025-03-09T17:50:49.422283-07:00,1009.240478515625,10.729758,10729.758 +21791,2025-03-09T17:51:00.154277-07:00,1009.2703857421875,10.731994,10731.994 +21792,2025-03-09T17:51:10.892501-07:00,1009.2537231445312,10.738224,10738.224 +21793,2025-03-09T17:51:21.625826-07:00,1009.2490844726562,10.733325,10733.325 +21794,2025-03-09T17:51:32.346280-07:00,1009.2623291015625,10.720454,10720.454 +21795,2025-03-09T17:51:43.087493-07:00,1009.2225952148438,10.741213,10741.213 +21796,2025-03-09T17:51:53.813304-07:00,1009.2556762695312,10.725811,10725.811 +21797,2025-03-09T17:52:04.549886-07:00,1009.2312622070312,10.736582,10736.582 +21798,2025-03-09T17:52:15.277463-07:00,1009.2723388671875,10.727577,10727.577 +21799,2025-03-09T17:52:26.110927-07:00,1009.2444458007812,10.833464,10833.464 +21800,2025-03-09T17:52:36.841947-07:00,1009.2245483398438,10.73102,10731.02 +21801,2025-03-09T17:52:47.566740-07:00,1009.236083984375,10.724793,10724.793 +21802,2025-03-09T17:52:58.302913-07:00,1009.2294311523438,10.736173,10736.173 +21803,2025-03-09T17:53:09.035739-07:00,1009.2265625,10.732826,10732.826 +21804,2025-03-09T17:53:19.767182-07:00,1009.2000732421875,10.731443,10731.443 +21805,2025-03-09T17:53:30.490791-07:00,1009.2279663085938,10.723609,10723.609 +21806,2025-03-09T17:53:41.225880-07:00,1009.2279663085938,10.735089,10735.089 +21807,2025-03-09T17:53:51.962096-07:00,1009.2332153320312,10.736216,10736.216 +21808,2025-03-09T17:54:02.692773-07:00,1009.2265625,10.730677,10730.677 +21809,2025-03-09T17:54:13.420764-07:00,1009.1986694335938,10.727991,10727.991 +21810,2025-03-09T17:54:24.157741-07:00,1009.205322265625,10.736977,10736.977 +21811,2025-03-09T17:54:34.885973-07:00,1009.2234497070312,10.728232,10728.232 +21812,2025-03-09T17:54:45.615943-07:00,1009.2498168945312,10.72997,10729.97 +21813,2025-03-09T17:54:56.340737-07:00,1009.2484130859375,10.724794,10724.794 +21814,2025-03-09T17:55:07.066925-07:00,1009.2351684570312,10.726188,10726.188 +21815,2025-03-09T17:55:17.793942-07:00,1009.2337646484375,10.727017,10727.017 +21816,2025-03-09T17:55:28.520965-07:00,1009.2139282226562,10.727023,10727.023 +21817,2025-03-09T17:55:39.255096-07:00,1009.2306518554688,10.734131,10734.131 +21818,2025-03-09T17:55:49.981832-07:00,1009.2385864257812,10.726736,10726.736 +21819,2025-03-09T17:56:00.706897-07:00,1009.1893920898438,10.725065,10725.065 +21820,2025-03-09T17:56:11.444167-07:00,1009.2357788085938,10.73727,10737.27 +21821,2025-03-09T17:56:22.167845-07:00,1009.2291259765625,10.723678,10723.678 +21822,2025-03-09T17:56:32.899567-07:00,1009.25390625,10.731722,10731.722 +21823,2025-03-09T17:56:43.621944-07:00,1009.25390625,10.722377,10722.377 +21824,2025-03-09T17:56:54.352743-07:00,1009.25390625,10.730799,10730.799 +21825,2025-03-09T17:57:05.081938-07:00,1009.189697265625,10.729195,10729.195 +21826,2025-03-09T17:57:15.814806-07:00,1009.244384765625,10.732868,10732.868 +21827,2025-03-09T17:57:26.540927-07:00,1009.25390625,10.726121,10726.121 +21828,2025-03-09T17:57:37.268045-07:00,1009.2642211914062,10.727118,10727.118 +21829,2025-03-09T17:57:47.996738-07:00,1009.2412719726562,10.728693,10728.693 +21830,2025-03-09T17:57:58.721909-07:00,1009.247802734375,10.725171,10725.171 +21831,2025-03-09T17:58:09.451943-07:00,1009.2198486328125,10.730034,10730.034 +21832,2025-03-09T17:58:20.181770-07:00,1009.2529907226562,10.729827,10729.827 +21833,2025-03-09T17:58:30.908591-07:00,1009.2213134765625,10.726821,10726.821 +21834,2025-03-09T17:58:41.645144-07:00,1009.18359375,10.736553,10736.553 +21835,2025-03-09T17:58:52.364740-07:00,1009.2181396484375,10.719596,10719.596 +21836,2025-03-09T17:59:03.093931-07:00,1009.24462890625,10.729191,10729.191 +21837,2025-03-09T17:59:13.829738-07:00,1009.2379760742188,10.735807,10735.807 +21838,2025-03-09T17:59:24.552216-07:00,1009.2086181640625,10.722478,10722.478 +21839,2025-03-09T17:59:35.281973-07:00,1009.1939086914062,10.729757,10729.757 +21840,2025-03-09T17:59:46.008315-07:00,1009.1939086914062,10.726342,10726.342 +21841,2025-03-09T17:59:56.737929-07:00,1009.1873168945312,10.729614,10729.614 +21842,2025-03-09T18:00:07.467295-07:00,1009.2054443359375,10.729366,10729.366 +21843,2025-03-09T18:00:18.195299-07:00,1009.1826782226562,10.728004,10728.004 +21844,2025-03-09T18:00:28.923571-07:00,1009.2072143554688,10.728272,10728.272 +21845,2025-03-09T18:00:39.650738-07:00,1009.1959228515625,10.727167,10727.167 +21846,2025-03-09T18:00:50.382843-07:00,1009.1973266601562,10.732105,10732.105 +21847,2025-03-09T18:01:01.105944-07:00,1009.2040405273438,10.723101,10723.101 +21848,2025-03-09T18:01:11.834779-07:00,1009.180908203125,10.728835,10728.835 +21849,2025-03-09T18:01:22.560906-07:00,1009.2186889648438,10.726127,10726.127 +21850,2025-03-09T18:01:33.283935-07:00,1009.2290649414062,10.723029,10723.029 +21851,2025-03-09T18:01:44.021741-07:00,1009.1748657226562,10.737806,10737.806 +21852,2025-03-09T18:01:54.743777-07:00,1009.1981201171875,10.722036,10722.036 +21853,2025-03-09T18:02:05.480807-07:00,1009.1906127929688,10.73703,10737.03 +21854,2025-03-09T18:02:16.207931-07:00,1009.1931762695312,10.727124,10727.124 +21855,2025-03-09T18:02:26.940476-07:00,1009.1807861328125,10.732545,10732.545 +21856,2025-03-09T18:02:37.661833-07:00,1009.1648559570312,10.721357,10721.357 +21857,2025-03-09T18:02:48.382762-07:00,1009.1868896484375,10.720929,10720.929 +21858,2025-03-09T18:02:59.113739-07:00,1009.1776733398438,10.730977,10730.977 +21859,2025-03-09T18:03:09.844928-07:00,1009.1292114257812,10.731189,10731.189 +21860,2025-03-09T18:03:20.563149-07:00,1009.177978515625,10.718221,10718.221 +21861,2025-03-09T18:03:31.291738-07:00,1009.1969604492188,10.728589,10728.589 +21862,2025-03-09T18:03:42.026906-07:00,1009.1991577148438,10.735168,10735.168 +21863,2025-03-09T18:03:52.754107-07:00,1009.1699829101562,10.727201,10727.201 +21864,2025-03-09T18:04:03.488949-07:00,1009.1857299804688,10.734842,10734.842 +21865,2025-03-09T18:04:14.218116-07:00,1009.202880859375,10.729167,10729.167 +21866,2025-03-09T18:04:24.943738-07:00,1009.1939086914062,10.725622,10725.622 +21867,2025-03-09T18:04:35.683735-07:00,1009.2125244140625,10.739997,10739.997 +21868,2025-03-09T18:04:46.411915-07:00,1009.2262573242188,10.72818,10728.18 +21869,2025-03-09T18:04:57.136743-07:00,1009.2051391601562,10.724828,10724.828 +21870,2025-03-09T18:05:07.869058-07:00,1009.2056274414062,10.732315,10732.315 +21871,2025-03-09T18:05:18.604211-07:00,1009.2274169921875,10.735153,10735.153 +21872,2025-03-09T18:05:29.335941-07:00,1009.2408447265625,10.73173,10731.73 +21873,2025-03-09T18:05:40.065971-07:00,1009.2281494140625,10.73003,10730.03 +21874,2025-03-09T18:05:50.798741-07:00,1009.2380981445312,10.73277,10732.77 +21875,2025-03-09T18:06:01.524743-07:00,1009.2254028320312,10.726002,10726.002 +21876,2025-03-09T18:06:12.258741-07:00,1009.19580078125,10.733998,10733.998 +21877,2025-03-09T18:06:22.995919-07:00,1009.2388305664062,10.737178,10737.178 +21878,2025-03-09T18:06:33.721807-07:00,1009.2424926757812,10.725888,10725.888 +21879,2025-03-09T18:06:44.456889-07:00,1009.2557983398438,10.735082,10735.082 +21880,2025-03-09T18:06:55.197815-07:00,1009.2459106445312,10.740926,10740.926 +21881,2025-03-09T18:07:05.930343-07:00,1009.2412719726562,10.732528,10732.528 +21882,2025-03-09T18:07:16.664721-07:00,1009.2346801757812,10.734378,10734.378 +21883,2025-03-09T18:07:27.389840-07:00,1009.2697143554688,10.725119,10725.119 +21884,2025-03-09T18:07:38.122924-07:00,1009.2515869140625,10.733084,10733.084 +21885,2025-03-09T18:07:48.866433-07:00,1009.2550048828125,10.743509,10743.509 +21886,2025-03-09T18:07:59.601473-07:00,1009.24169921875,10.73504,10735.04 +21887,2025-03-09T18:08:10.329740-07:00,1009.2748413085938,10.728267,10728.267 +21888,2025-03-09T18:08:21.068762-07:00,1009.2402954101562,10.739022,10739.022 +21889,2025-03-09T18:08:31.801906-07:00,1009.2318725585938,10.733144,10733.144 +21890,2025-03-09T18:08:42.541587-07:00,1009.22705078125,10.739681,10739.681 +21891,2025-03-09T18:08:53.269769-07:00,1009.24169921875,10.728182,10728.182 +21892,2025-03-09T18:09:04.007740-07:00,1009.2828979492188,10.737971,10737.971 +21893,2025-03-09T18:09:14.739907-07:00,1009.2498168945312,10.732167,10732.167 +21894,2025-03-09T18:09:36.204740-07:00,1009.22998046875,21.464833,21464.833 +21895,2025-03-09T18:09:46.938741-07:00,1009.2515869140625,10.734001,10734.001 +21896,2025-03-09T18:09:57.673429-07:00,1009.2662353515625,10.734688,10734.688 +21897,2025-03-09T18:10:08.406948-07:00,1009.2597045898438,10.733519,10733.519 +21898,2025-03-09T18:10:19.144741-07:00,1009.2611083984375,10.737793,10737.793 +21899,2025-03-09T18:10:29.875155-07:00,1009.2562255859375,10.730414,10730.414 +21900,2025-03-09T18:10:40.612567-07:00,1009.2525024414062,10.737412,10737.412 +21901,2025-03-09T18:10:51.347174-07:00,1009.28076171875,10.734607,10734.607 +21902,2025-03-09T18:11:02.080738-07:00,1009.2623291015625,10.733564,10733.564 +21903,2025-03-09T18:11:12.814965-07:00,1009.3115844726562,10.734227,10734.227 +21904,2025-03-09T18:11:23.545960-07:00,1009.2520141601562,10.730995,10730.995 +21905,2025-03-09T18:11:34.279740-07:00,1009.2633056640625,10.73378,10733.78 +21906,2025-03-09T18:11:45.011138-07:00,1009.2898559570312,10.731398,10731.398 +21907,2025-03-09T18:11:55.753946-07:00,1009.2782592773438,10.742808,10742.808 +21908,2025-03-09T18:12:06.477897-07:00,1009.2467041015625,10.723951,10723.951 +21909,2025-03-09T18:12:17.209737-07:00,1009.2679443359375,10.73184,10731.84 +21910,2025-03-09T18:12:27.949736-07:00,1009.2547607421875,10.739999,10739.999 +21911,2025-03-09T18:12:38.673971-07:00,1009.2943115234375,10.724235,10724.235 +21912,2025-03-09T18:12:49.414813-07:00,1009.2692260742188,10.740842,10740.842 +21913,2025-03-09T18:13:00.143134-07:00,1009.2725219726562,10.728321,10728.321 +21914,2025-03-09T18:13:10.877923-07:00,1009.2871704101562,10.734789,10734.789 +21915,2025-03-09T18:13:21.610741-07:00,1009.2820434570312,10.732818,10732.818 +21916,2025-03-09T18:13:32.340735-07:00,1009.2587280273438,10.729994,10729.994 +21917,2025-03-09T18:13:43.075875-07:00,1009.2340698242188,10.73514,10735.14 +21918,2025-03-09T18:13:53.809081-07:00,1009.2686157226562,10.733206,10733.206 +21919,2025-03-09T18:14:04.546737-07:00,1009.261962890625,10.737656,10737.656 +21920,2025-03-09T18:14:15.276831-07:00,1009.2864990234375,10.730094,10730.094 +21921,2025-03-09T18:14:26.003923-07:00,1009.2485961914062,10.727092,10727.092 +21922,2025-03-09T18:14:36.743734-07:00,1009.2778930664062,10.739811,10739.811 +21923,2025-03-09T18:14:47.469954-07:00,1009.2664184570312,10.72622,10726.22 +21924,2025-03-09T18:14:58.208740-07:00,1009.2759399414062,10.738786,10738.786 +21925,2025-03-09T18:15:08.935205-07:00,1009.2642211914062,10.726465,10726.465 +21926,2025-03-09T18:15:19.672741-07:00,1009.2327880859375,10.737536,10737.536 +21927,2025-03-09T18:15:30.395953-07:00,1009.2423706054688,10.723212,10723.212 +21928,2025-03-09T18:15:41.132190-07:00,1009.2374877929688,10.736237,10736.237 +21929,2025-03-09T18:15:51.867735-07:00,1009.2404174804688,10.735545,10735.545 +21930,2025-03-09T18:16:02.597945-07:00,1009.237060546875,10.73021,10730.21 +21931,2025-03-09T18:16:13.327914-07:00,1009.2832641601562,10.729969,10729.969 +21932,2025-03-09T18:16:24.066758-07:00,1009.261474609375,10.738844,10738.844 +21933,2025-03-09T18:16:34.798738-07:00,1009.26953125,10.73198,10731.98 +21934,2025-03-09T18:16:45.527459-07:00,1009.2713012695312,10.728721,10728.721 +21935,2025-03-09T18:16:56.257970-07:00,1009.2410888671875,10.730511,10730.511 +21936,2025-03-09T18:17:06.994961-07:00,1009.2410888671875,10.736991,10736.991 +21937,2025-03-09T18:17:17.722743-07:00,1009.2377319335938,10.727782,10727.782 +21938,2025-03-09T18:17:28.449783-07:00,1009.2391967773438,10.72704,10727.04 +21939,2025-03-09T18:17:39.189814-07:00,1009.2340087890625,10.740031,10740.031 +21940,2025-03-09T18:17:49.914143-07:00,1009.2224731445312,10.724329,10724.329 +21941,2025-03-09T18:18:00.656935-07:00,1009.1989135742188,10.742792,10742.792 +21942,2025-03-09T18:18:11.385939-07:00,1009.2271728515625,10.729004,10729.004 +21943,2025-03-09T18:18:22.114738-07:00,1009.2234497070312,10.728799,10728.799 +21944,2025-03-09T18:18:32.848788-07:00,1009.27099609375,10.73405,10734.05 +21945,2025-03-09T18:18:43.585931-07:00,1009.282470703125,10.737143,10737.143 +21946,2025-03-09T18:18:54.320070-07:00,1009.2776489257812,10.734139,10734.139 +21947,2025-03-09T18:19:05.046181-07:00,1009.2474365234375,10.726111,10726.111 +21948,2025-03-09T18:19:15.784543-07:00,1009.2704467773438,10.738362,10738.362 +21949,2025-03-09T18:19:26.509740-07:00,1009.263916015625,10.725197,10725.197 +21950,2025-03-09T18:19:37.252836-07:00,1009.2984619140625,10.743096,10743.096 +21951,2025-03-09T18:19:47.980799-07:00,1009.2587280273438,10.727963,10727.963 +21952,2025-03-09T18:19:58.717049-07:00,1009.2915649414062,10.73625,10736.25 +21953,2025-03-09T18:20:09.450770-07:00,1009.3209228515625,10.733721,10733.721 +21954,2025-03-09T18:20:20.180949-07:00,1009.2532958984375,10.730179,10730.179 +21955,2025-03-09T18:20:30.912911-07:00,1009.2349243164062,10.731962,10731.962 +21956,2025-03-09T18:20:41.645764-07:00,1009.2991333007812,10.732853,10732.853 +21957,2025-03-09T18:20:52.385739-07:00,1009.2593994140625,10.739975,10739.975 +21958,2025-03-09T18:21:03.113743-07:00,1009.2575073242188,10.728004,10728.004 +21959,2025-03-09T18:21:13.842023-07:00,1009.2654418945312,10.72828,10728.28 +21960,2025-03-09T18:21:24.575738-07:00,1009.220947265625,10.733715,10733.715 +21961,2025-03-09T18:21:35.308954-07:00,1009.2407836914062,10.733216,10733.216 +21962,2025-03-09T18:21:46.037923-07:00,1009.237060546875,10.728969,10728.969 +21963,2025-03-09T18:21:56.778741-07:00,1009.2137451171875,10.740818,10740.818 +21964,2025-03-09T18:22:07.507399-07:00,1009.2005615234375,10.728658,10728.658 +21965,2025-03-09T18:22:18.241864-07:00,1009.230224609375,10.734465,10734.465 +21966,2025-03-09T18:22:28.978981-07:00,1009.259521484375,10.737117,10737.117 +21967,2025-03-09T18:22:39.708742-07:00,1009.2198486328125,10.729761,10729.761 +21968,2025-03-09T18:22:50.440939-07:00,1009.2164306640625,10.732197,10732.197 +21969,2025-03-09T18:23:01.172929-07:00,1009.2310791015625,10.73199,10731.99 +21970,2025-03-09T18:23:11.915913-07:00,1009.24755859375,10.742984,10742.984 +21971,2025-03-09T18:23:22.639840-07:00,1009.2277221679688,10.723927,10723.927 +21972,2025-03-09T18:23:33.376744-07:00,1009.2040405273438,10.736904,10736.904 +21973,2025-03-09T18:23:44.105839-07:00,1009.2271728515625,10.729095,10729.095 +21974,2025-03-09T18:23:54.843844-07:00,1009.2285766601562,10.738005,10738.005 +21975,2025-03-09T18:24:05.581958-07:00,1009.2220458984375,10.738114,10738.114 +21976,2025-03-09T18:24:16.314924-07:00,1009.2332763671875,10.732966,10732.966 +21977,2025-03-09T18:24:27.045863-07:00,1009.2363891601562,10.730939,10730.939 +21978,2025-03-09T18:24:37.785738-07:00,1009.2327270507812,10.739875,10739.875 +21979,2025-03-09T18:24:48.525860-07:00,1009.2244262695312,10.740122,10740.122 +21980,2025-03-09T18:24:59.258741-07:00,1009.21435546875,10.732881,10732.881 +21981,2025-03-09T18:25:09.989335-07:00,1009.19921875,10.730594,10730.594 +21982,2025-03-09T18:25:20.721738-07:00,1009.217041015625,10.732403,10732.403 +21983,2025-03-09T18:25:31.448735-07:00,1009.1819458007812,10.726997,10726.997 +21984,2025-03-09T18:25:42.190945-07:00,1009.2033081054688,10.74221,10742.21 +21985,2025-03-09T18:25:52.916801-07:00,1009.229248046875,10.725856,10725.856 +21986,2025-03-09T18:26:03.654734-07:00,1009.2390747070312,10.737933,10737.933 +21987,2025-03-09T18:26:14.393892-07:00,1009.2503051757812,10.739158,10739.158 +21988,2025-03-09T18:26:25.117923-07:00,1009.2203369140625,10.724031,10724.031 +21989,2025-03-09T18:26:35.852740-07:00,1009.187255859375,10.734817,10734.817 +21990,2025-03-09T18:26:46.589734-07:00,1009.2263793945312,10.736994,10736.994 +21991,2025-03-09T18:26:57.326877-07:00,1009.2324829101562,10.737143,10737.143 +21992,2025-03-09T18:27:08.065959-07:00,1009.2509155273438,10.739082,10739.082 +21993,2025-03-09T18:27:18.796739-07:00,1009.2371215820312,10.73078,10730.78 +21994,2025-03-09T18:27:29.525943-07:00,1009.2186889648438,10.729204,10729.204 +21995,2025-03-09T18:27:40.266740-07:00,1009.2645263671875,10.740797,10740.797 +21996,2025-03-09T18:27:51.003978-07:00,1009.2578125,10.737238,10737.238 +21997,2025-03-09T18:28:01.742940-07:00,1009.2625122070312,10.738962,10738.962 +21998,2025-03-09T18:28:12.469740-07:00,1009.24267578125,10.7268,10726.8 +21999,2025-03-09T18:28:23.204791-07:00,1009.26708984375,10.735051,10735.051 +22000,2025-03-09T18:28:33.947933-07:00,1009.2821044921875,10.743142,10743.142 +22001,2025-03-09T18:28:44.674734-07:00,1009.255615234375,10.726801,10726.801 +22002,2025-03-09T18:28:55.410144-07:00,1009.2320556640625,10.73541,10735.41 +22003,2025-03-09T18:29:06.144737-07:00,1009.21875,10.734593,10734.593 +22004,2025-03-09T18:29:16.869658-07:00,1009.26171875,10.724921,10724.921 +22005,2025-03-09T18:29:27.608137-07:00,1009.2516479492188,10.738479,10738.479 +22006,2025-03-09T18:29:38.336770-07:00,1009.2034912109375,10.728633,10728.633 +22007,2025-03-09T18:29:49.070861-07:00,1009.2132568359375,10.734091,10734.091 +22008,2025-03-09T18:29:59.808996-07:00,1009.2346801757812,10.738135,10738.135 +22009,2025-03-09T18:30:10.537912-07:00,1009.236083984375,10.728916,10728.916 +22010,2025-03-09T18:30:21.268954-07:00,1009.2525024414062,10.731042,10731.042 +22011,2025-03-09T18:30:32.000090-07:00,1009.2179565429688,10.731136,10731.136 +22012,2025-03-09T18:30:42.727814-07:00,1009.232666015625,10.727724,10727.724 +22013,2025-03-09T18:30:53.462002-07:00,1009.275634765625,10.734188,10734.188 +22014,2025-03-09T18:31:04.191549-07:00,1009.243896484375,10.729547,10729.547 +22015,2025-03-09T18:31:14.922736-07:00,1009.251953125,10.731187,10731.187 +22016,2025-03-09T18:31:25.659737-07:00,1009.243896484375,10.737001,10737.001 +22017,2025-03-09T18:31:36.391895-07:00,1009.251953125,10.732158,10732.158 +22018,2025-03-09T18:31:47.126789-07:00,1009.240478515625,10.734894,10734.894 +22019,2025-03-09T18:31:57.859740-07:00,1009.2683715820312,10.732951,10732.951 +22020,2025-03-09T18:32:08.588192-07:00,1009.2499389648438,10.728452,10728.452 +22021,2025-03-09T18:32:19.318876-07:00,1009.256591796875,10.730684,10730.684 +22022,2025-03-09T18:32:30.056322-07:00,1009.256591796875,10.737446,10737.446 +22023,2025-03-09T18:32:40.791738-07:00,1009.2499389648438,10.735416,10735.416 +22024,2025-03-09T18:32:51.516925-07:00,1009.26318359375,10.725187,10725.187 +22025,2025-03-09T18:33:02.253842-07:00,1009.2781982421875,10.736917,10736.917 +22026,2025-03-09T18:33:12.986972-07:00,1009.2750244140625,10.73313,10733.13 +22027,2025-03-09T18:33:23.720144-07:00,1009.32080078125,10.733172,10733.172 +22028,2025-03-09T18:33:34.451882-07:00,1009.2862548828125,10.731738,10731.738 +22029,2025-03-09T18:33:45.185805-07:00,1009.27294921875,10.733923,10733.923 +22030,2025-03-09T18:33:55.915741-07:00,1009.2876586914062,10.729936,10729.936 +22031,2025-03-09T18:34:06.644390-07:00,1009.299560546875,10.728649,10728.649 +22032,2025-03-09T18:34:17.368736-07:00,1009.2715454101562,10.724346,10724.346 +22033,2025-03-09T18:34:28.101928-07:00,1009.3046875,10.733192,10733.192 +22034,2025-03-09T18:34:38.828767-07:00,1009.312744140625,10.726839,10726.839 +22035,2025-03-09T18:34:49.556738-07:00,1009.3060913085938,10.727971,10727.971 +22036,2025-03-09T18:35:00.288860-07:00,1009.2796020507812,10.732122,10732.122 +22037,2025-03-09T18:35:11.021983-07:00,1009.312744140625,10.733123,10733.123 +22038,2025-03-09T18:35:21.754943-07:00,1009.312744140625,10.73296,10732.96 +22039,2025-03-09T18:35:32.483960-07:00,1009.325927734375,10.729017,10729.017 +22040,2025-03-09T18:35:43.222049-07:00,1009.2927856445312,10.738089,10738.089 +22041,2025-03-09T18:35:53.951740-07:00,1009.299560546875,10.729691,10729.691 +22042,2025-03-09T18:36:04.677738-07:00,1009.2943115234375,10.725998,10725.998 +22043,2025-03-09T18:36:15.406209-07:00,1009.2927856445312,10.728471,10728.471 +22044,2025-03-09T18:36:26.136741-07:00,1009.2698364257812,10.730532,10730.532 +22045,2025-03-09T18:36:36.871916-07:00,1009.2683715820312,10.735175,10735.175 +22046,2025-03-09T18:36:47.603904-07:00,1009.2698364257812,10.731988,10731.988 +22047,2025-03-09T18:36:58.330803-07:00,1009.2882690429688,10.726899,10726.899 +22048,2025-03-09T18:37:09.063738-07:00,1009.2882690429688,10.732935,10732.935 +22049,2025-03-09T18:37:19.797128-07:00,1009.301513671875,10.73339,10733.39 +22050,2025-03-09T18:37:30.526770-07:00,1009.2948608398438,10.729642,10729.642 +22051,2025-03-09T18:37:41.261741-07:00,1009.2717895507812,10.734971,10734.971 +22052,2025-03-09T18:37:51.992477-07:00,1009.300048828125,10.730736,10730.736 +22053,2025-03-09T18:38:02.726737-07:00,1009.2784423828125,10.73426,10734.26 +22054,2025-03-09T18:38:13.458735-07:00,1009.304931640625,10.731998,10731.998 +22055,2025-03-09T18:38:24.183811-07:00,1009.275634765625,10.725076,10725.076 +22056,2025-03-09T18:38:34.914831-07:00,1009.2902221679688,10.73102,10731.02 +22057,2025-03-09T18:38:45.646738-07:00,1009.2821655273438,10.731907,10731.907 +22058,2025-03-09T18:38:56.366921-07:00,1009.2821655273438,10.720183,10720.183 +22059,2025-03-09T18:39:07.098943-07:00,1009.3153076171875,10.732022,10732.022 +22060,2025-03-09T18:39:17.830867-07:00,1009.2954711914062,10.731924,10731.924 +22061,2025-03-09T18:39:28.565814-07:00,1009.2988891601562,10.734947,10734.947 +22062,2025-03-09T18:39:39.289734-07:00,1009.306884765625,10.72392,10723.92 +22063,2025-03-09T18:39:50.019911-07:00,1009.277587890625,10.730177,10730.177 +22064,2025-03-09T18:40:00.750129-07:00,1009.3040771484375,10.730218,10730.218 +22065,2025-03-09T18:40:11.474734-07:00,1009.3239135742188,10.724605,10724.605 +22066,2025-03-09T18:40:22.211773-07:00,1009.295654296875,10.737039,10737.039 +22067,2025-03-09T18:40:32.939851-07:00,1009.311279296875,10.728078,10728.078 +22068,2025-03-09T18:40:43.669737-07:00,1009.3155517578125,10.729886,10729.886 +22069,2025-03-09T18:40:54.387920-07:00,1009.3245239257812,10.718183,10718.183 +22070,2025-03-09T18:41:05.116000-07:00,1009.311279296875,10.72808,10728.08 +22071,2025-03-09T18:41:15.852737-07:00,1009.3161010742188,10.736737,10736.737 +22072,2025-03-09T18:41:26.579908-07:00,1009.3377075195312,10.727171,10727.171 +22073,2025-03-09T18:41:37.308326-07:00,1009.3492431640625,10.728418,10728.418 +22074,2025-03-09T18:41:48.029939-07:00,1009.3411865234375,10.721613,10721.613 +22075,2025-03-09T18:41:58.761736-07:00,1009.3314208984375,10.731797,10731.797 +22076,2025-03-09T18:42:09.483809-07:00,1009.3396606445312,10.722073,10722.073 +22077,2025-03-09T18:42:20.219855-07:00,1009.3446044921875,10.736046,10736.046 +22078,2025-03-09T18:42:30.948882-07:00,1009.377685546875,10.729027,10729.027 +22079,2025-03-09T18:42:41.673074-07:00,1009.3351440429688,10.724192,10724.192 +22080,2025-03-09T18:42:52.399872-07:00,1009.3152465820312,10.726798,10726.798 +22081,2025-03-09T18:43:03.124742-07:00,1009.3284301757812,10.72487,10724.87 +22082,2025-03-09T18:43:13.859961-07:00,1009.3318481445312,10.735219,10735.219 +22083,2025-03-09T18:43:24.580745-07:00,1009.3333740234375,10.720784,10720.784 +22084,2025-03-09T18:43:35.310774-07:00,1009.3171997070312,10.730029,10730.029 +22085,2025-03-09T18:43:46.037185-07:00,1009.3451538085938,10.726411,10726.411 +22086,2025-03-09T18:43:56.768738-07:00,1009.3220825195312,10.731553,10731.553 +22087,2025-03-09T18:44:07.504750-07:00,1009.3370971679688,10.736012,10736.012 +22088,2025-03-09T18:44:18.232910-07:00,1009.3419799804688,10.72816,10728.16 +22089,2025-03-09T18:44:28.954737-07:00,1009.3206176757812,10.721827,10721.827 +22090,2025-03-09T18:44:39.682924-07:00,1009.3258666992188,10.728187,10728.187 +22091,2025-03-09T18:44:50.412769-07:00,1009.35888671875,10.729845,10729.845 +22092,2025-03-09T18:45:01.144741-07:00,1009.33251953125,10.731972,10731.972 +22093,2025-03-09T18:45:11.870813-07:00,1009.3292236328125,10.726072,10726.072 +22094,2025-03-09T18:45:22.605937-07:00,1009.33447265625,10.735124,10735.124 +22095,2025-03-09T18:45:33.328935-07:00,1009.34765625,10.722998,10722.998 +22096,2025-03-09T18:45:44.056920-07:00,1009.3131103515625,10.727985,10727.985 +22097,2025-03-09T18:45:54.781813-07:00,1009.3131103515625,10.724893,10724.893 +22098,2025-03-09T18:46:05.501925-07:00,1009.3595581054688,10.720112,10720.112 +22099,2025-03-09T18:46:16.229903-07:00,1009.3165893554688,10.727978,10727.978 +22100,2025-03-09T18:46:26.965740-07:00,1009.3445434570312,10.735837,10735.837 +22101,2025-03-09T18:46:37.686226-07:00,1009.3001708984375,10.720486,10720.486 +22102,2025-03-09T18:46:48.421740-07:00,1009.2886962890625,10.735514,10735.514 +22103,2025-03-09T18:46:59.141793-07:00,1009.2966918945312,10.720053,10720.053 +22104,2025-03-09T18:47:09.874765-07:00,1009.2935180664062,10.732972,10732.972 +22105,2025-03-09T18:47:20.602996-07:00,1009.2920532226562,10.728231,10728.231 +22106,2025-03-09T18:47:31.333940-07:00,1009.3052978515625,10.730944,10730.944 +22107,2025-03-09T18:47:42.065811-07:00,1009.318603515625,10.731871,10731.871 +22108,2025-03-09T18:47:52.787742-07:00,1009.3171997070312,10.721931,10721.931 +22109,2025-03-09T18:48:03.515936-07:00,1009.32861328125,10.728194,10728.194 +22110,2025-03-09T18:48:14.246770-07:00,1009.3139038085938,10.730834,10730.834 +22111,2025-03-09T18:48:24.977626-07:00,1009.3153686523438,10.730856,10730.856 +22112,2025-03-09T18:48:35.699263-07:00,1009.3007202148438,10.721637,10721.637 +22113,2025-03-09T18:48:46.427922-07:00,1009.307373046875,10.728659,10728.659 +22114,2025-03-09T18:48:57.165986-07:00,1009.3041381835938,10.738064,10738.064 +22115,2025-03-09T18:49:07.890027-07:00,1009.305908203125,10.724041,10724.041 +22116,2025-03-09T18:49:18.612918-07:00,1009.3041381835938,10.722891,10722.891 +22117,2025-03-09T18:49:29.347110-07:00,1009.2960815429688,10.734192,10734.192 +22118,2025-03-09T18:49:40.081738-07:00,1009.294677734375,10.734628,10734.628 +22119,2025-03-09T18:49:50.800765-07:00,1009.2998657226562,10.719027,10719.027 +22120,2025-03-09T18:50:01.538911-07:00,1009.3277587890625,10.738146,10738.146 +22121,2025-03-09T18:50:12.266805-07:00,1009.3211059570312,10.727894,10727.894 +22122,2025-03-09T18:50:22.999023-07:00,1009.311279296875,10.732218,10732.218 +22123,2025-03-09T18:50:33.722916-07:00,1009.3179931640625,10.723893,10723.893 +22124,2025-03-09T18:50:44.452738-07:00,1009.3179931640625,10.729822,10729.822 +22125,2025-03-09T18:50:55.187114-07:00,1009.3217163085938,10.734376,10734.376 +22126,2025-03-09T18:51:05.923823-07:00,1009.3231201171875,10.736709,10736.709 +22127,2025-03-09T18:51:16.645741-07:00,1009.3018188476562,10.721918,10721.918 +22128,2025-03-09T18:51:27.379740-07:00,1009.3084106445312,10.733999,10733.999 +22129,2025-03-09T18:51:38.109900-07:00,1009.3378295898438,10.73016,10730.16 +22130,2025-03-09T18:51:48.835026-07:00,1009.3250732421875,10.725126,10725.126 +22131,2025-03-09T18:51:59.570740-07:00,1009.3283081054688,10.735714,10735.714 +22132,2025-03-09T18:52:10.300950-07:00,1009.330322265625,10.73021,10730.21 +22133,2025-03-09T18:52:21.023737-07:00,1009.2999877929688,10.722787,10722.787 +22134,2025-03-09T18:52:31.792923-07:00,1009.3170166015625,10.769186,10769.186 +22135,2025-03-09T18:52:42.521681-07:00,1009.330322265625,10.728758,10728.758 +22136,2025-03-09T18:52:53.248797-07:00,1009.3052368164062,10.727116,10727.116 +22137,2025-03-09T18:53:03.980738-07:00,1009.30859375,10.731941,10731.941 +22138,2025-03-09T18:53:14.715560-07:00,1009.3417358398438,10.734822,10734.822 +22139,2025-03-09T18:53:25.441736-07:00,1009.3351440429688,10.726176,10726.176 +22140,2025-03-09T18:53:36.180075-07:00,1009.3270263671875,10.738339,10738.339 +22141,2025-03-09T18:53:46.912904-07:00,1009.34033203125,10.732829,10732.829 +22142,2025-03-09T18:53:57.635760-07:00,1009.332275390625,10.722856,10722.856 +22143,2025-03-09T18:54:08.362732-07:00,1009.3270263671875,10.726972,10726.972 +22144,2025-03-09T18:54:19.097992-07:00,1009.3389282226562,10.73526,10735.26 +22145,2025-03-09T18:54:29.825767-07:00,1009.3389282226562,10.727775,10727.775 +22146,2025-03-09T18:54:40.562914-07:00,1009.3720092773438,10.737147,10737.147 +22147,2025-03-09T18:54:51.294927-07:00,1009.3720092773438,10.732013,10732.013 +22148,2025-03-09T18:55:02.024859-07:00,1009.3635864257812,10.729932,10729.932 +22149,2025-03-09T18:55:12.748735-07:00,1009.3356323242188,10.723876,10723.876 +22150,2025-03-09T18:55:23.484904-07:00,1009.334228515625,10.736169,10736.169 +22151,2025-03-09T18:55:34.212736-07:00,1009.3408813476562,10.727832,10727.832 +22152,2025-03-09T18:55:44.946736-07:00,1009.3224487304688,10.734,10734.0 +22153,2025-03-09T18:55:55.678910-07:00,1009.2993774414062,10.732174,10732.174 +22154,2025-03-09T18:56:06.407730-07:00,1009.3356323242188,10.72882,10728.82 +22155,2025-03-09T18:56:17.138736-07:00,1009.3390502929688,10.731006,10731.006 +22156,2025-03-09T18:56:27.863917-07:00,1009.3739624023438,10.725181,10725.181 +22157,2025-03-09T18:56:38.594731-07:00,1009.3474731445312,10.730814,10730.814 +22158,2025-03-09T18:56:49.326957-07:00,1009.3673706054688,10.732226,10732.226 +22159,2025-03-09T18:57:00.057922-07:00,1009.3428344726562,10.730965,10730.965 +22160,2025-03-09T18:57:10.785768-07:00,1009.3457641601562,10.727846,10727.846 +22161,2025-03-09T18:57:21.514950-07:00,1009.3626708984375,10.729182,10729.182 +22162,2025-03-09T18:57:32.249955-07:00,1009.328125,10.735005,10735.005 +22163,2025-03-09T18:57:42.983027-07:00,1009.3480224609375,10.733072,10733.072 +22164,2025-03-09T18:57:53.711802-07:00,1009.3414306640625,10.728775,10728.775 +22165,2025-03-09T18:58:04.438021-07:00,1009.3462524414062,10.726219,10726.219 +22166,2025-03-09T18:58:15.167886-07:00,1009.3396606445312,10.729865,10729.865 +22167,2025-03-09T18:58:25.904737-07:00,1009.367919921875,10.736851,10736.851 +22168,2025-03-09T18:58:36.632145-07:00,1009.37451171875,10.727408,10727.408 +22169,2025-03-09T18:58:47.361983-07:00,1009.3660888671875,10.729838,10729.838 +22170,2025-03-09T18:58:58.090096-07:00,1009.3482666015625,10.728113,10728.113 +22171,2025-03-09T18:59:08.820592-07:00,1009.3566284179688,10.730496,10730.496 +22172,2025-03-09T18:59:19.552734-07:00,1009.3482666015625,10.732142,10732.142 +22173,2025-03-09T18:59:30.279738-07:00,1009.36328125,10.727004,10727.004 +22174,2025-03-09T18:59:41.010598-07:00,1009.3269653320312,10.73086,10730.86 +22175,2025-03-09T18:59:51.737736-07:00,1009.3387451171875,10.727138,10727.138 +22176,2025-03-09T19:00:02.467125-07:00,1009.330322265625,10.729389,10729.389 +22177,2025-03-09T19:00:13.200707-07:00,1009.3535766601562,10.733582,10733.582 +22178,2025-03-09T19:00:23.931736-07:00,1009.3585205078125,10.731029,10731.029 +22179,2025-03-09T19:00:34.666734-07:00,1009.3556518554688,10.734998,10734.998 +22180,2025-03-09T19:00:45.394927-07:00,1009.3392333984375,10.728193,10728.193 +22181,2025-03-09T19:00:56.123974-07:00,1009.3377075195312,10.729047,10729.047 +22182,2025-03-09T19:01:06.856764-07:00,1009.3529663085938,10.73279,10732.79 +22183,2025-03-09T19:01:17.580803-07:00,1009.3223266601562,10.724039,10724.039 +22184,2025-03-09T19:01:28.306941-07:00,1009.3428344726562,10.726138,10726.138 +22185,2025-03-09T19:01:39.045817-07:00,1009.3679809570312,10.738876,10738.876 +22186,2025-03-09T19:01:49.775888-07:00,1009.3601684570312,10.730071,10730.071 +22187,2025-03-09T19:02:00.505733-07:00,1009.3758544921875,10.729845,10729.845 +22188,2025-03-09T19:02:11.231951-07:00,1009.3599853515625,10.726218,10726.218 +22189,2025-03-09T19:02:21.960939-07:00,1009.3670043945312,10.728988,10728.988 +22190,2025-03-09T19:02:32.688734-07:00,1009.3548583984375,10.727795,10727.795 +22191,2025-03-09T19:02:43.425737-07:00,1009.3720092773438,10.737003,10737.003 +22192,2025-03-09T19:02:54.156824-07:00,1009.365966796875,10.731087,10731.087 +22193,2025-03-09T19:03:04.880745-07:00,1009.3529052734375,10.723921,10723.921 +22194,2025-03-09T19:03:15.618239-07:00,1009.3421020507812,10.737494,10737.494 +22195,2025-03-09T19:03:26.346871-07:00,1009.3558349609375,10.728632,10728.632 +22196,2025-03-09T19:03:37.073076-07:00,1009.3577880859375,10.726205,10726.205 +22197,2025-03-09T19:03:47.804966-07:00,1009.354736328125,10.73189,10731.89 +22198,2025-03-09T19:03:58.538883-07:00,1009.3552856445312,10.733917,10733.917 +22199,2025-03-09T19:04:09.271209-07:00,1009.3373413085938,10.732326,10732.326 +22200,2025-03-09T19:04:19.996294-07:00,1009.3407592773438,10.725085,10725.085 +22201,2025-03-09T19:04:30.728733-07:00,1009.3757934570312,10.732439,10732.439 +22202,2025-03-09T19:04:41.456162-07:00,1009.3662719726562,10.727429,10727.429 +22203,2025-03-09T19:04:52.191739-07:00,1009.3468627929688,10.735577,10735.577 +22204,2025-03-09T19:05:02.913088-07:00,1009.35546875,10.721349,10721.349 +22205,2025-03-09T19:05:13.648734-07:00,1009.3323974609375,10.735646,10735.646 +22206,2025-03-09T19:05:24.371911-07:00,1009.3424072265625,10.723177,10723.177 +22207,2025-03-09T19:05:35.108784-07:00,1009.3197021484375,10.736873,10736.873 +22208,2025-03-09T19:05:45.832734-07:00,1009.3311157226562,10.72395,10723.95 +22209,2025-03-09T19:05:56.562916-07:00,1009.3283081054688,10.730182,10730.182 +22210,2025-03-09T19:06:07.299980-07:00,1009.3132934570312,10.737064,10737.064 +22211,2025-03-09T19:06:18.020942-07:00,1009.3132934570312,10.720962,10720.962 +22212,2025-03-09T19:06:28.758464-07:00,1009.3250122070312,10.737522,10737.522 +22213,2025-03-09T19:06:39.486733-07:00,1009.3367919921875,10.728269,10728.269 +22214,2025-03-09T19:06:50.216768-07:00,1009.3485717773438,10.730035,10730.035 +22215,2025-03-09T19:07:00.949066-07:00,1009.3320922851562,10.732298,10732.298 +22216,2025-03-09T19:07:11.672129-07:00,1009.3485717773438,10.723063,10723.063 +22217,2025-03-09T19:07:22.408857-07:00,1009.3056030273438,10.736728,10736.728 +22218,2025-03-09T19:07:33.132668-07:00,1009.3401489257812,10.723811,10723.811 +22219,2025-03-09T19:07:43.861733-07:00,1009.325439453125,10.729065,10729.065 +22220,2025-03-09T19:07:54.598812-07:00,1009.312255859375,10.737079,10737.079 +22221,2025-03-09T19:08:05.324511-07:00,1009.3468017578125,10.725699,10725.699 +22222,2025-03-09T19:08:16.060736-07:00,1009.3401489257812,10.736225,10736.225 +22223,2025-03-09T19:08:26.793068-07:00,1009.3336181640625,10.732332,10732.332 +22224,2025-03-09T19:08:37.519920-07:00,1009.3189086914062,10.726852,10726.852 +22225,2025-03-09T19:08:48.256736-07:00,1009.3336181640625,10.736816,10736.816 +22226,2025-03-09T19:08:58.984731-07:00,1009.3154907226562,10.727995,10727.995 +22227,2025-03-09T19:09:09.718738-07:00,1009.3353271484375,10.734007,10734.007 +22228,2025-03-09T19:09:20.448977-07:00,1009.3448486328125,10.730239,10730.239 +22229,2025-03-09T19:09:31.176738-07:00,1009.3220825195312,10.727761,10727.761 +22230,2025-03-09T19:09:41.901963-07:00,1009.3382568359375,10.725225,10725.225 +22231,2025-03-09T19:09:52.634730-07:00,1009.3184204101562,10.732767,10732.767 +22232,2025-03-09T19:10:03.363906-07:00,1009.3150024414062,10.729176,10729.176 +22233,2025-03-09T19:10:14.096155-07:00,1009.2899780273438,10.732249,10732.249 +22234,2025-03-09T19:10:24.827733-07:00,1009.3150024414062,10.731578,10731.578 +22235,2025-03-09T19:10:35.565736-07:00,1009.3245239257812,10.738003,10738.003 +22236,2025-03-09T19:10:46.294962-07:00,1009.3740844726562,10.729226,10729.226 +22237,2025-03-09T19:10:57.024804-07:00,1009.3145141601562,10.729842,10729.842 +22238,2025-03-09T19:11:07.756734-07:00,1009.31591796875,10.73193,10731.93 +22239,2025-03-09T19:11:18.496739-07:00,1009.3258056640625,10.740005,10740.005 +22240,2025-03-09T19:11:29.228901-07:00,1009.3272705078125,10.732162,10732.162 +22241,2025-03-09T19:11:39.958733-07:00,1009.3092041015625,10.729832,10729.832 +22242,2025-03-09T19:11:50.686804-07:00,1009.31201171875,10.728071,10728.071 +22243,2025-03-09T19:12:01.423325-07:00,1009.3300170898438,10.736521,10736.521 +22244,2025-03-09T19:12:12.151733-07:00,1009.3035278320312,10.728408,10728.408 +22245,2025-03-09T19:12:22.893745-07:00,1009.3248291015625,10.742012,10742.012 +22246,2025-03-09T19:12:33.617736-07:00,1009.3361206054688,10.723991,10723.991 +22247,2025-03-09T19:12:44.353953-07:00,1009.3312377929688,10.736217,10736.217 +22248,2025-03-09T19:12:55.092770-07:00,1009.3209228515625,10.738817,10738.817 +22249,2025-03-09T19:13:05.816948-07:00,1009.29443359375,10.724178,10724.178 +22250,2025-03-09T19:13:16.558907-07:00,1009.330810546875,10.741959,10741.959 +22251,2025-03-09T19:13:27.281939-07:00,1009.3322143554688,10.723032,10723.032 +22252,2025-03-09T19:13:38.021787-07:00,1009.3618774414062,10.739848,10739.848 +22253,2025-03-09T19:13:48.749736-07:00,1009.340087890625,10.727949,10727.949 +22254,2025-03-09T19:13:59.473886-07:00,1009.3283081054688,10.72415,10724.15 +22255,2025-03-09T19:14:10.206906-07:00,1009.33154296875,10.73302,10733.02 +22256,2025-03-09T19:14:20.935296-07:00,1009.3545532226562,10.72839,10728.39 +22257,2025-03-09T19:14:31.674905-07:00,1009.334716796875,10.739609,10739.609 +22258,2025-03-09T19:14:42.400760-07:00,1009.331298828125,10.725855,10725.855 +22259,2025-03-09T19:14:53.143733-07:00,1009.33935546875,10.742973,10742.973 +22260,2025-03-09T19:15:03.867904-07:00,1009.316162109375,10.724171,10724.171 +22261,2025-03-09T19:15:14.606897-07:00,1009.372314453125,10.738993,10738.993 +22262,2025-03-09T19:15:25.340736-07:00,1009.325927734375,10.733839,10733.839 +22263,2025-03-09T19:15:36.073819-07:00,1009.3369750976562,10.733083,10733.083 +22264,2025-03-09T19:15:46.804924-07:00,1009.325439453125,10.731105,10731.105 +22265,2025-03-09T19:15:57.531937-07:00,1009.315185546875,10.727013,10727.013 +22266,2025-03-09T19:16:08.266808-07:00,1009.323486328125,10.734871,10734.871 +22267,2025-03-09T19:16:19.007735-07:00,1009.3330688476562,10.740927,10740.927 +22268,2025-03-09T19:16:29.743929-07:00,1009.3414306640625,10.736194,10736.194 +22269,2025-03-09T19:16:40.475038-07:00,1009.3495483398438,10.731109,10731.109 +22270,2025-03-09T19:16:51.207737-07:00,1009.3541259765625,10.732699,10732.699 +22271,2025-03-09T19:17:01.942252-07:00,1009.3507690429688,10.734515,10734.515 +22272,2025-03-09T19:17:12.681054-07:00,1009.3521728515625,10.738802,10738.802 +22273,2025-03-09T19:17:23.415012-07:00,1009.3668823242188,10.733958,10733.958 +22274,2025-03-09T19:17:34.149890-07:00,1009.32861328125,10.734878,10734.878 +22275,2025-03-09T19:17:44.881814-07:00,1009.3251342773438,10.731924,10731.924 +22276,2025-03-09T19:17:55.610733-07:00,1009.3663330078125,10.728919,10728.919 +22277,2025-03-09T19:18:06.339732-07:00,1009.32666015625,10.728999,10728.999 +22278,2025-03-09T19:18:17.078945-07:00,1009.3445434570312,10.739213,10739.213 +22279,2025-03-09T19:18:27.804734-07:00,1009.3331298828125,10.725789,10725.789 +22280,2025-03-09T19:18:38.544996-07:00,1009.326416015625,10.740262,10740.262 +22281,2025-03-09T19:18:49.275735-07:00,1009.3457641601562,10.730739,10730.739 +22282,2025-03-09T19:19:00.005918-07:00,1009.3392333984375,10.730183,10730.183 +22283,2025-03-09T19:19:10.734734-07:00,1009.3618774414062,10.728816,10728.816 +22284,2025-03-09T19:19:21.468902-07:00,1009.3504638671875,10.734168,10734.168 +22285,2025-03-09T19:19:32.204111-07:00,1009.3453369140625,10.735209,10735.209 +22286,2025-03-09T19:19:42.944043-07:00,1009.3467407226562,10.739932,10739.932 +22287,2025-03-09T19:19:53.669942-07:00,1009.3418579101562,10.725899,10725.899 +22288,2025-03-09T19:20:04.406760-07:00,1009.3499145507812,10.736818,10736.818 +22289,2025-03-09T19:20:15.142969-07:00,1009.381103515625,10.736209,10736.209 +22290,2025-03-09T19:20:25.875765-07:00,1009.3214721679688,10.732796,10732.796 +22291,2025-03-09T19:20:36.601851-07:00,1009.3379516601562,10.726086,10726.086 +22292,2025-03-09T19:20:47.331504-07:00,1009.3407592773438,10.729653,10729.653 +22293,2025-03-09T19:20:58.064730-07:00,1009.345458984375,10.733226,10733.226 +22294,2025-03-09T19:21:08.804129-07:00,1009.3434448242188,10.739399,10739.399 +22295,2025-03-09T19:21:19.537736-07:00,1009.3648681640625,10.733607,10733.607 +22296,2025-03-09T19:21:30.269127-07:00,1009.3613891601562,10.731391,10731.391 +22297,2025-03-09T19:21:41.003757-07:00,1009.3740844726562,10.73463,10734.63 +22298,2025-03-09T19:21:51.738078-07:00,1009.3507690429688,10.734321,10734.321 +22299,2025-03-09T19:22:02.476737-07:00,1009.3421630859375,10.738659,10738.659 +22300,2025-03-09T19:22:13.208114-07:00,1009.350341796875,10.731377,10731.377 +22301,2025-03-09T19:22:23.948893-07:00,1009.3218994140625,10.740779,10740.779 +22302,2025-03-09T19:22:34.679937-07:00,1009.329833984375,10.731044,10731.044 +22303,2025-03-09T19:22:45.420736-07:00,1009.3429565429688,10.740799,10740.799 +22304,2025-03-09T19:22:56.147900-07:00,1009.3524169921875,10.727164,10727.164 +22305,2025-03-09T19:23:06.881837-07:00,1009.31591796875,10.733937,10733.937 +22306,2025-03-09T19:23:17.617736-07:00,1009.333740234375,10.735899,10735.899 +22307,2025-03-09T19:23:28.356731-07:00,1009.3139038085938,10.738995,10738.995 +22308,2025-03-09T19:23:39.093929-07:00,1009.3269653320312,10.737198,10737.198 +22309,2025-03-09T19:23:49.825971-07:00,1009.3566284179688,10.732042,10732.042 +22310,2025-03-09T19:24:00.556736-07:00,1009.31689453125,10.730765,10730.765 +22311,2025-03-09T19:24:11.295763-07:00,1009.328125,10.739027,10739.027 +22312,2025-03-09T19:24:22.028754-07:00,1009.3523559570312,10.732991,10732.991 +22313,2025-03-09T19:24:32.766574-07:00,1009.3258666992188,10.73782,10737.82 +22314,2025-03-09T19:24:43.495958-07:00,1009.32763671875,10.729384,10729.384 +22315,2025-03-09T19:24:54.226737-07:00,1009.29248046875,10.730779,10730.779 +22316,2025-03-09T19:25:04.968275-07:00,1009.2991333007812,10.741538,10741.538 +22317,2025-03-09T19:25:15.702462-07:00,1009.3138427734375,10.734187,10734.187 +22318,2025-03-09T19:25:26.435733-07:00,1009.3037719726562,10.733271,10733.271 +22319,2025-03-09T19:25:37.168733-07:00,1009.3150024414062,10.733,10733.0 +22320,2025-03-09T19:25:47.901129-07:00,1009.3231201171875,10.732396,10732.396 +22321,2025-03-09T19:25:58.638755-07:00,1009.309814453125,10.737626,10737.626 +22322,2025-03-09T19:26:09.371737-07:00,1009.3179931640625,10.732982,10732.982 +22323,2025-03-09T19:26:20.105004-07:00,1009.2998657226562,10.733267,10733.267 +22324,2025-03-09T19:26:30.839891-07:00,1009.294677734375,10.734887,10734.887 +22325,2025-03-09T19:26:41.580540-07:00,1009.2960815429688,10.740649,10740.649 +22326,2025-03-09T19:26:52.316482-07:00,1009.307861328125,10.735942,10735.942 +22327,2025-03-09T19:27:03.051769-07:00,1009.3125,10.735287,10735.287 +22328,2025-03-09T19:27:13.781949-07:00,1009.310791015625,10.73018,10730.18 +22329,2025-03-09T19:27:24.514791-07:00,1009.3007202148438,10.732842,10732.842 +22330,2025-03-09T19:27:35.252733-07:00,1009.2926635742188,10.737942,10737.942 +22331,2025-03-09T19:27:45.989951-07:00,1009.3007202148438,10.737218,10737.218 +22332,2025-03-09T19:27:56.717914-07:00,1009.3104858398438,10.727963,10727.963 +22333,2025-03-09T19:28:07.456737-07:00,1009.2954711914062,10.738823,10738.823 +22334,2025-03-09T19:28:18.193730-07:00,1009.32861328125,10.736993,10736.993 +22335,2025-03-09T19:28:28.928832-07:00,1009.3087768554688,10.735102,10735.102 +22336,2025-03-09T19:28:39.665810-07:00,1009.3303833007812,10.736978,10736.978 +22337,2025-03-09T19:28:50.391820-07:00,1009.2954711914062,10.72601,10726.01 +22338,2025-03-09T19:29:01.129012-07:00,1009.2987670898438,10.737192,10737.192 +22339,2025-03-09T19:29:11.868968-07:00,1009.3119506835938,10.739956,10739.956 +22340,2025-03-09T19:29:22.601414-07:00,1009.2840576171875,10.732446,10732.446 +22341,2025-03-09T19:29:33.326741-07:00,1009.2589721679688,10.725327,10725.327 +22342,2025-03-09T19:29:44.061740-07:00,1009.2987670898438,10.734999,10734.999 +22343,2025-03-09T19:29:54.803959-07:00,1009.3001708984375,10.742219,10742.219 +22344,2025-03-09T19:30:05.540750-07:00,1009.2972412109375,10.736791,10736.791 +22345,2025-03-09T19:30:16.268772-07:00,1009.2642211914062,10.728022,10728.022 +22346,2025-03-09T19:30:27.003732-07:00,1009.3052978515625,10.73496,10734.96 +22347,2025-03-09T19:30:37.742741-07:00,1009.3021850585938,10.739009,10739.009 +22348,2025-03-09T19:30:48.477640-07:00,1009.3104858398438,10.734899,10734.899 +22349,2025-03-09T19:30:59.211734-07:00,1009.3038940429688,10.734094,10734.094 +22350,2025-03-09T19:31:09.951103-07:00,1009.2954711914062,10.739369,10739.369 +22351,2025-03-09T19:31:20.679739-07:00,1009.3303833007812,10.728636,10728.636 +22352,2025-03-09T19:31:31.412925-07:00,1009.2888793945312,10.733186,10733.186 +22353,2025-03-09T19:31:42.146730-07:00,1009.2940673828125,10.733805,10733.805 +22354,2025-03-09T19:31:52.882949-07:00,1009.3272094726562,10.736219,10736.219 +22355,2025-03-09T19:32:03.621748-07:00,1009.2940673828125,10.738799,10738.799 +22356,2025-03-09T19:32:14.367959-07:00,1009.2793579101562,10.746211,10746.211 +22357,2025-03-09T19:32:25.102237-07:00,1009.2974853515625,10.734278,10734.278 +22358,2025-03-09T19:32:35.827733-07:00,1009.2991943359375,10.725496,10725.496 +22359,2025-03-09T19:32:46.562940-07:00,1009.2926635742188,10.735207,10735.207 +22360,2025-03-09T19:32:57.303737-07:00,1009.3026733398438,10.740797,10740.797 +22361,2025-03-09T19:33:08.035922-07:00,1009.30126953125,10.732185,10732.185 +22362,2025-03-09T19:33:18.764908-07:00,1009.280029296875,10.728986,10728.986 +22363,2025-03-09T19:33:29.501736-07:00,1009.294677734375,10.736828,10736.828 +22364,2025-03-09T19:33:40.234767-07:00,1009.2980346679688,10.733031,10733.031 +22365,2025-03-09T19:33:50.965783-07:00,1009.2833862304688,10.731016,10731.016 +22366,2025-03-09T19:34:01.690735-07:00,1009.3197021484375,10.724952,10724.952 +22367,2025-03-09T19:34:12.429729-07:00,1009.28857421875,10.738994,10738.994 +22368,2025-03-09T19:34:23.159774-07:00,1009.3150024414062,10.730045,10730.045 +22369,2025-03-09T19:34:33.896944-07:00,1009.295166015625,10.73717,10737.17 +22370,2025-03-09T19:34:44.628731-07:00,1009.2999877929688,10.731787,10731.787 +22371,2025-03-09T19:34:55.360928-07:00,1009.29541015625,10.732197,10732.197 +22372,2025-03-09T19:35:06.097845-07:00,1009.3037719726562,10.736917,10736.917 +22373,2025-03-09T19:35:16.832737-07:00,1009.30859375,10.734892,10734.892 +22374,2025-03-09T19:35:27.563540-07:00,1009.2709350585938,10.730803,10730.803 +22375,2025-03-09T19:35:38.301293-07:00,1009.29736328125,10.737753,10737.753 +22376,2025-03-09T19:35:49.037934-07:00,1009.2709350585938,10.736641,10736.641 +22377,2025-03-09T19:35:59.771367-07:00,1009.2775268554688,10.733433,10733.433 +22378,2025-03-09T19:36:10.508944-07:00,1009.228271484375,10.737577,10737.577 +22379,2025-03-09T19:36:21.238880-07:00,1009.2662353515625,10.729936,10729.936 +22380,2025-03-09T19:36:31.978570-07:00,1009.26806640625,10.73969,10739.69 +22381,2025-03-09T19:36:42.716736-07:00,1009.2530517578125,10.738166,10738.166 +22382,2025-03-09T19:36:53.446939-07:00,1009.2581787109375,10.730203,10730.203 +22383,2025-03-09T19:37:04.185804-07:00,1009.2662353515625,10.738865,10738.865 +22384,2025-03-09T19:37:14.912757-07:00,1009.2449951171875,10.726953,10726.953 +22385,2025-03-09T19:37:25.655744-07:00,1009.27001953125,10.742987,10742.987 +22386,2025-03-09T19:37:36.384733-07:00,1009.2567138671875,10.728989,10728.989 +22387,2025-03-09T19:37:47.117916-07:00,1009.2368774414062,10.733183,10733.183 +22388,2025-03-09T19:37:57.848733-07:00,1009.248779296875,10.730817,10730.817 +22389,2025-03-09T19:38:08.581941-07:00,1009.2469482421875,10.733208,10733.208 +22390,2025-03-09T19:38:19.315837-07:00,1009.2454833984375,10.733896,10733.896 +22391,2025-03-09T19:38:30.052270-07:00,1009.2242431640625,10.736433,10736.433 +22392,2025-03-09T19:38:40.786733-07:00,1009.2175903320312,10.734463,10734.463 +22393,2025-03-09T19:38:51.516734-07:00,1009.2224731445312,10.730001,10730.001 +22394,2025-03-09T19:39:02.244928-07:00,1009.2078247070312,10.728194,10728.194 +22395,2025-03-09T19:39:12.981731-07:00,1009.2129516601562,10.736803,10736.803 +22396,2025-03-09T19:39:23.713943-07:00,1009.2112426757812,10.732212,10732.212 +22397,2025-03-09T19:39:34.435926-07:00,1009.196533203125,10.721983,10721.983 +22398,2025-03-09T19:39:45.168805-07:00,1009.196533203125,10.732879,10732.879 +22399,2025-03-09T19:39:55.899735-07:00,1009.2045288085938,10.73093,10730.93 +22400,2025-03-09T19:40:06.628919-07:00,1009.214599609375,10.729184,10729.184 +22401,2025-03-09T19:40:17.367942-07:00,1009.22607421875,10.739023,10739.023 +22402,2025-03-09T19:40:28.103733-07:00,1009.201416015625,10.735791,10735.791 +22403,2025-03-09T19:40:38.829738-07:00,1009.227783203125,10.726005,10726.005 +22404,2025-03-09T19:40:49.564944-07:00,1009.201416015625,10.735206,10735.206 +22405,2025-03-09T19:41:00.291742-07:00,1009.190185546875,10.726798,10726.798 +22406,2025-03-09T19:41:11.021295-07:00,1009.1849365234375,10.729553,10729.553 +22407,2025-03-09T19:41:21.755147-07:00,1009.2246704101562,10.733852,10733.852 +22408,2025-03-09T19:41:32.483736-07:00,1009.21142578125,10.728589,10728.589 +22409,2025-03-09T19:41:43.220734-07:00,1009.1754760742188,10.736998,10736.998 +22410,2025-03-09T19:41:53.950911-07:00,1009.1953125,10.730177,10730.177 +22411,2025-03-09T19:42:04.680487-07:00,1009.1868896484375,10.729576,10729.576 +22412,2025-03-09T19:42:15.405104-07:00,1009.201904296875,10.724617,10724.617 +22413,2025-03-09T19:42:26.141125-07:00,1009.1604614257812,10.736021,10736.021 +22414,2025-03-09T19:42:36.870733-07:00,1009.1868896484375,10.729608,10729.608 +22415,2025-03-09T19:42:47.602736-07:00,1009.193603515625,10.732003,10732.003 +22416,2025-03-09T19:42:58.332927-07:00,1009.1624145507812,10.730191,10730.191 +22417,2025-03-09T19:43:09.069760-07:00,1009.192138671875,10.736833,10736.833 +22418,2025-03-09T19:43:19.797975-07:00,1009.1774291992188,10.728215,10728.215 +22419,2025-03-09T19:43:30.530911-07:00,1009.1906127929688,10.732936,10732.936 +22420,2025-03-09T19:43:41.264541-07:00,1009.2022094726562,10.73363,10733.63 +22421,2025-03-09T19:43:51.989996-07:00,1009.1954956054688,10.725455,10725.455 +22422,2025-03-09T19:44:02.725739-07:00,1009.1676635742188,10.735743,10735.743 +22423,2025-03-09T19:44:13.461966-07:00,1009.1822509765625,10.736227,10736.227 +22424,2025-03-09T19:44:24.187803-07:00,1009.1954956054688,10.725837,10725.837 +22425,2025-03-09T19:44:34.920299-07:00,1009.1808471679688,10.732496,10732.496 +22426,2025-03-09T19:44:45.653945-07:00,1009.2125244140625,10.733646,10733.646 +22427,2025-03-09T19:44:56.381736-07:00,1009.192626953125,10.727791,10727.791 +22428,2025-03-09T19:45:07.117729-07:00,1009.1793823242188,10.735993,10735.993 +22429,2025-03-09T19:45:17.841636-07:00,1009.1793823242188,10.723907,10723.907 +22430,2025-03-09T19:45:28.575736-07:00,1009.2073364257812,10.7341,10734.1 +22431,2025-03-09T19:45:39.301188-07:00,1009.2059326171875,10.725452,10725.452 +22432,2025-03-09T19:45:50.032281-07:00,1009.2040405273438,10.731093,10731.093 +22433,2025-03-09T19:46:00.753763-07:00,1009.2107543945312,10.721482,10721.482 +22434,2025-03-09T19:46:11.483125-07:00,1009.239013671875,10.729362,10729.362 +22435,2025-03-09T19:46:22.218760-07:00,1009.2092895507812,10.735635,10735.635 +22436,2025-03-09T19:46:32.941740-07:00,1009.2092895507812,10.72298,10722.98 +22437,2025-03-09T19:46:43.674912-07:00,1009.2061157226562,10.733172,10733.172 +22438,2025-03-09T19:46:54.395733-07:00,1009.2107543945312,10.720821,10720.821 +22439,2025-03-09T19:47:05.125738-07:00,1009.2127075195312,10.730005,10730.005 +22440,2025-03-09T19:47:15.859918-07:00,1009.2193603515625,10.73418,10734.18 +22441,2025-03-09T19:47:26.588759-07:00,1009.1995239257812,10.728841,10728.841 +22442,2025-03-09T19:47:37.319193-07:00,1009.196533203125,10.730434,10730.434 +22443,2025-03-09T19:47:48.050285-07:00,1009.19482421875,10.731092,10731.092 +22444,2025-03-09T19:47:58.777733-07:00,1009.2098388671875,10.727448,10727.448 +22445,2025-03-09T19:48:09.503098-07:00,1009.2296752929688,10.725365,10725.365 +22446,2025-03-09T19:48:20.232734-07:00,1009.196533203125,10.729636,10729.636 +22447,2025-03-09T19:48:30.960737-07:00,1009.1867065429688,10.728003,10728.003 +22448,2025-03-09T19:48:41.694973-07:00,1009.2279663085938,10.734236,10734.236 +22449,2025-03-09T19:48:52.426733-07:00,1009.2198486328125,10.73176,10731.76 +22450,2025-03-09T19:49:03.149871-07:00,1009.231689453125,10.723138,10723.138 +22451,2025-03-09T19:49:13.881125-07:00,1009.2265014648438,10.731254,10731.254 +22452,2025-03-09T19:49:24.616282-07:00,1009.2066650390625,10.735157,10735.157 +22453,2025-03-09T19:49:35.338945-07:00,1009.2103881835938,10.722663,10722.663 +22454,2025-03-09T19:49:46.067593-07:00,1009.2103881835938,10.728648,10728.648 +22455,2025-03-09T19:49:56.800768-07:00,1009.1807250976562,10.733175,10733.175 +22456,2025-03-09T19:50:07.525910-07:00,1009.1953125,10.725142,10725.142 +22457,2025-03-09T19:50:18.259521-07:00,1009.1907958984375,10.733611,10733.611 +22458,2025-03-09T19:50:28.987849-07:00,1009.1973266601562,10.728328,10728.328 +22459,2025-03-09T19:50:39.716931-07:00,1009.2157592773438,10.729082,10729.082 +22460,2025-03-09T19:50:50.448558-07:00,1009.2341918945312,10.731627,10731.627 +22461,2025-03-09T19:51:01.183480-07:00,1009.2059326171875,10.734922,10734.922 +22462,2025-03-09T19:51:11.909738-07:00,1009.2059326171875,10.726258,10726.258 +22463,2025-03-09T19:51:22.644932-07:00,1009.2045288085938,10.735194,10735.194 +22464,2025-03-09T19:51:44.098196-07:00,1009.2295532226562,21.453264,21453.264 +22465,2025-03-09T19:51:54.830409-07:00,1009.2720947265625,10.732213,10732.213 +22466,2025-03-09T19:52:05.561901-07:00,1009.2560424804688,10.731492,10731.492 +22467,2025-03-09T19:52:16.295737-07:00,1009.282470703125,10.733836,10733.836 +22468,2025-03-09T19:52:27.025992-07:00,1009.2329711914062,10.730255,10730.255 +22469,2025-03-09T19:52:37.751247-07:00,1009.2528076171875,10.725255,10725.255 +22470,2025-03-09T19:52:48.487443-07:00,1009.2976684570312,10.736196,10736.196 +22471,2025-03-09T19:52:59.218825-07:00,1009.2593994140625,10.731382,10731.382 +22472,2025-03-09T19:53:09.948351-07:00,1009.224853515625,10.729526,10729.526 +22473,2025-03-09T19:53:20.672365-07:00,1009.2726440429688,10.724014,10724.014 +22474,2025-03-09T19:53:31.409921-07:00,1009.2579956054688,10.737556,10737.556 +22475,2025-03-09T19:53:42.141484-07:00,1009.2499389648438,10.731563,10731.563 +22476,2025-03-09T19:53:52.865419-07:00,1009.2415771484375,10.723935,10723.935 +22477,2025-03-09T19:54:03.594320-07:00,1009.2547607421875,10.728901,10728.901 +22478,2025-03-09T19:54:14.323459-07:00,1009.260009765625,10.729139,10729.139 +22479,2025-03-09T19:54:25.052580-07:00,1009.2798461914062,10.729121,10729.121 +22480,2025-03-09T19:54:35.790338-07:00,1009.26513671875,10.737758,10737.758 +22481,2025-03-09T19:54:46.517252-07:00,1009.2798461914062,10.726914,10726.914 +22482,2025-03-09T19:54:57.242455-07:00,1009.2930297851562,10.725203,10725.203 +22483,2025-03-09T19:55:07.973461-07:00,1009.271728515625,10.731006,10731.006 +22484,2025-03-09T19:55:18.706743-07:00,1009.275146484375,10.733282,10733.282 +22485,2025-03-09T19:55:29.434437-07:00,1009.271728515625,10.727694,10727.694 +22486,2025-03-09T19:55:40.159251-07:00,1009.2884521484375,10.724814,10724.814 +22487,2025-03-09T19:55:50.890474-07:00,1009.2803344726562,10.731223,10731.223 +22488,2025-03-09T19:56:01.615251-07:00,1009.3035888671875,10.724777,10724.777 +22489,2025-03-09T19:56:12.352248-07:00,1009.2937622070312,10.736997,10736.997 +22490,2025-03-09T19:56:23.073297-07:00,1009.2842407226562,10.721049,10721.049 +22491,2025-03-09T19:56:33.811690-07:00,1009.3089599609375,10.738393,10738.393 +22492,2025-03-09T19:56:44.540444-07:00,1009.2764282226562,10.728754,10728.754 +22493,2025-03-09T19:56:55.268508-07:00,1009.314697265625,10.728064,10728.064 +22494,2025-03-09T19:57:05.993454-07:00,1009.27685546875,10.724946,10724.946 +22495,2025-03-09T19:57:16.718250-07:00,1009.2987670898438,10.724796,10724.796 +22496,2025-03-09T19:57:27.457466-07:00,1009.32861328125,10.739216,10739.216 +22497,2025-03-09T19:57:38.188277-07:00,1009.3262329101562,10.730811,10730.811 +22498,2025-03-09T19:57:48.913252-07:00,1009.3546752929688,10.724975,10724.975 +22499,2025-03-09T19:57:59.639951-07:00,1009.3453369140625,10.726699,10726.699 +22500,2025-03-09T19:58:10.372410-07:00,1009.32421875,10.732459,10732.459 +22501,2025-03-09T19:58:21.098252-07:00,1009.376220703125,10.725842,10725.842 +22502,2025-03-09T19:58:31.827269-07:00,1009.3584594726562,10.729017,10729.017 +22503,2025-03-09T19:58:42.563371-07:00,1009.3670043945312,10.736102,10736.102 +22504,2025-03-09T19:58:53.286445-07:00,1009.3709106445312,10.723074,10723.074 +22505,2025-03-09T19:59:04.010452-07:00,1009.3417358398438,10.724007,10724.007 +22506,2025-03-09T19:59:14.746407-07:00,1009.3357543945312,10.735955,10735.955 +22507,2025-03-09T19:59:25.476252-07:00,1009.34814453125,10.729845,10729.845 +22508,2025-03-09T19:59:36.206269-07:00,1009.3779907226562,10.730017,10730.017 +22509,2025-03-09T19:59:46.929304-07:00,1009.3487548828125,10.723035,10723.035 +22510,2025-03-09T19:59:57.662649-07:00,1009.3426513671875,10.733345,10733.345 +22511,2025-03-09T20:00:08.390249-07:00,1009.3496704101562,10.7276,10727.6 +22512,2025-03-09T20:00:19.122251-07:00,1009.3648681640625,10.732002,10732.002 +22513,2025-03-09T20:00:29.850644-07:00,1009.3786010742188,10.728393,10728.393 +22514,2025-03-09T20:00:40.585437-07:00,1009.3753051757812,10.734793,10734.793 +22515,2025-03-09T20:00:51.310279-07:00,1009.3757934570312,10.724842,10724.842 +22516,2025-03-09T20:01:02.048445-07:00,1009.3777465820312,10.738166,10738.166 +22517,2025-03-09T20:01:12.777248-07:00,1009.4207763671875,10.728803,10728.803 +22518,2025-03-09T20:01:23.502457-07:00,1009.383056640625,10.725209,10725.209 +22519,2025-03-09T20:01:34.244246-07:00,1009.380126953125,10.741789,10741.789 +22520,2025-03-09T20:01:44.972472-07:00,1009.398193359375,10.728226,10728.226 +22521,2025-03-09T20:01:55.706433-07:00,1009.413330078125,10.733961,10733.961 +22522,2025-03-09T20:02:06.434458-07:00,1009.413330078125,10.728025,10728.025 +22523,2025-03-09T20:02:17.173552-07:00,1009.4317016601562,10.739094,10739.094 +22524,2025-03-09T20:02:27.901249-07:00,1009.3825073242188,10.727697,10727.697 +22525,2025-03-09T20:02:38.633489-07:00,1009.3741455078125,10.73224,10732.24 +22526,2025-03-09T20:02:49.366517-07:00,1009.3873291015625,10.733028,10733.028 +22527,2025-03-09T20:03:00.099436-07:00,1009.4071655273438,10.732919,10732.919 +22528,2025-03-09T20:03:10.830441-07:00,1009.412353515625,10.731005,10731.005 +22529,2025-03-09T20:03:21.557590-07:00,1009.39111328125,10.727149,10727.149 +22530,2025-03-09T20:03:32.298661-07:00,1009.3844604492188,10.741071,10741.071 +22531,2025-03-09T20:03:43.025706-07:00,1009.3939819335938,10.727045,10727.045 +22532,2025-03-09T20:03:53.752263-07:00,1009.412353515625,10.726557,10726.557 +22533,2025-03-09T20:04:04.483271-07:00,1009.4204711914062,10.731008,10731.008 +22534,2025-03-09T20:04:15.222329-07:00,1009.4190063476562,10.739058,10739.058 +22535,2025-03-09T20:04:25.950667-07:00,1009.40576171875,10.728338,10728.338 +22536,2025-03-09T20:04:36.674248-07:00,1009.4204711914062,10.723581,10723.581 +22537,2025-03-09T20:04:47.413251-07:00,1009.4435424804688,10.739003,10739.003 +22538,2025-03-09T20:04:58.140243-07:00,1009.4236450195312,10.726992,10726.992 +22539,2025-03-09T20:05:08.871120-07:00,1009.40234375,10.730877,10730.877 +22540,2025-03-09T20:05:19.606473-07:00,1009.4383544921875,10.735353,10735.353 +22541,2025-03-09T20:05:30.336357-07:00,1009.4251708984375,10.729884,10729.884 +22542,2025-03-09T20:05:41.063617-07:00,1009.4529418945312,10.72726,10727.26 +22543,2025-03-09T20:05:51.791483-07:00,1009.47607421875,10.727866,10727.866 +22544,2025-03-09T20:06:02.524277-07:00,1009.47607421875,10.732794,10732.794 +22545,2025-03-09T20:06:13.254589-07:00,1009.4364013671875,10.730312,10730.312 +22546,2025-03-09T20:06:23.996270-07:00,1009.4595336914062,10.741681,10741.681 +22547,2025-03-09T20:06:34.723462-07:00,1009.454345703125,10.727192,10727.192 +22548,2025-03-09T20:06:45.453430-07:00,1009.4623413085938,10.729968,10729.968 +22549,2025-03-09T20:06:56.186318-07:00,1009.48876953125,10.732888,10732.888 +22550,2025-03-09T20:07:06.923279-07:00,1009.4915771484375,10.736961,10736.961 +22551,2025-03-09T20:07:17.659250-07:00,1009.4754638671875,10.735971,10735.971 +22552,2025-03-09T20:07:28.390421-07:00,1009.4849853515625,10.731171,10731.171 +22553,2025-03-09T20:07:39.115254-07:00,1009.4849853515625,10.724833,10724.833 +22554,2025-03-09T20:07:49.845424-07:00,1009.4763793945312,10.73017,10730.17 +22555,2025-03-09T20:08:00.572391-07:00,1009.506103515625,10.726967,10726.967 +22556,2025-03-09T20:08:11.307984-07:00,1009.4779663085938,10.735593,10735.593 +22557,2025-03-09T20:08:22.034247-07:00,1009.4561157226562,10.726263,10726.263 +22558,2025-03-09T20:08:32.763280-07:00,1009.477783203125,10.729033,10729.033 +22559,2025-03-09T20:08:43.488254-07:00,1009.4857788085938,10.724974,10724.974 +22560,2025-03-09T20:08:54.219032-07:00,1009.462646484375,10.730778,10730.778 +22561,2025-03-09T20:09:04.948252-07:00,1009.5184326171875,10.72922,10729.22 +22562,2025-03-09T20:09:15.682247-07:00,1009.491943359375,10.733995,10733.995 +22563,2025-03-09T20:09:26.409436-07:00,1009.4871215820312,10.727189,10727.189 +22564,2025-03-09T20:09:37.142998-07:00,1009.4866333007812,10.733562,10733.562 +22565,2025-03-09T20:09:47.873546-07:00,1009.4932861328125,10.730548,10730.548 +22566,2025-03-09T20:09:58.604667-07:00,1009.4601440429688,10.731121,10731.121 +22567,2025-03-09T20:10:09.342431-07:00,1009.4846801757812,10.737764,10737.764 +22568,2025-03-09T20:10:20.069248-07:00,1009.4876708984375,10.726817,10726.817 +22569,2025-03-09T20:10:30.795357-07:00,1009.4761962890625,10.726109,10726.109 +22570,2025-03-09T20:10:41.530619-07:00,1009.4545288085938,10.735262,10735.262 +22571,2025-03-09T20:10:52.265245-07:00,1009.459228515625,10.734626,10734.626 +22572,2025-03-09T20:11:02.997298-07:00,1009.4888916015625,10.732053,10732.053 +22573,2025-03-09T20:11:13.723405-07:00,1009.4771728515625,10.726107,10726.107 +22574,2025-03-09T20:11:24.457997-07:00,1009.4619750976562,10.734592,10734.592 +22575,2025-03-09T20:11:35.181251-07:00,1009.4718017578125,10.723254,10723.254 +22576,2025-03-09T20:11:45.908409-07:00,1009.4718017578125,10.727158,10727.158 +22577,2025-03-09T20:11:56.647420-07:00,1009.496337890625,10.739011,10739.011 +22578,2025-03-09T20:12:07.380387-07:00,1009.4896850585938,10.732967,10732.967 +22579,2025-03-09T20:12:18.099248-07:00,1009.4728393554688,10.718861,10718.861 +22580,2025-03-09T20:12:28.832452-07:00,1009.50390625,10.733204,10733.204 +22581,2025-03-09T20:12:39.565366-07:00,1009.5482788085938,10.732914,10732.914 +22582,2025-03-09T20:12:50.286319-07:00,1009.501953125,10.720953,10720.953 +22583,2025-03-09T20:13:01.026422-07:00,1009.5117797851562,10.740103,10740.103 +22584,2025-03-09T20:13:11.752780-07:00,1009.5231323242188,10.726358,10726.358 +22585,2025-03-09T20:13:22.488576-07:00,1009.5279541015625,10.735796,10735.796 +22586,2025-03-09T20:13:33.220252-07:00,1009.4966430664062,10.731676,10731.676 +22587,2025-03-09T20:13:43.944461-07:00,1009.5159301757812,10.724209,10724.209 +22588,2025-03-09T20:13:54.680477-07:00,1009.490966796875,10.736016,10736.016 +22589,2025-03-09T20:14:05.402412-07:00,1009.5257568359375,10.721935,10721.935 +22590,2025-03-09T20:14:16.139439-07:00,1009.5040893554688,10.737027,10737.027 +22591,2025-03-09T20:14:26.868386-07:00,1009.485595703125,10.728947,10728.947 +22592,2025-03-09T20:14:37.600349-07:00,1009.531982421875,10.731963,10731.963 +22593,2025-03-09T20:14:48.328351-07:00,1009.5184936523438,10.728002,10728.002 +22594,2025-03-09T20:14:59.066453-07:00,1009.5001831054688,10.738102,10738.102 +22595,2025-03-09T20:15:09.792251-07:00,1009.5018920898438,10.725798,10725.798 +22596,2025-03-09T20:15:20.520482-07:00,1009.524658203125,10.728231,10728.231 +22597,2025-03-09T20:15:31.250249-07:00,1009.506591796875,10.729767,10729.767 +22598,2025-03-09T20:15:32.542594-07:00,1009.506591796875,1.292345,1292.345 +22599,2025-03-09T20:15:41.987251-07:00,1009.54248046875,9.444657,9444.657 +22600,2025-03-09T20:15:52.719244-07:00,1009.5028076171875,10.731993,10731.993 +22601,2025-03-09T20:16:03.443506-07:00,1009.4994506835938,10.724262,10724.262 +22602,2025-03-09T20:16:14.173458-07:00,1009.51416015625,10.729952,10729.952 +22603,2025-03-09T20:16:24.904846-07:00,1009.517333984375,10.731388,10731.388 +22604,2025-03-09T20:16:35.643893-07:00,1009.5187377929688,10.739047,10739.047 +22605,2025-03-09T20:16:46.373250-07:00,1009.4871826171875,10.729357,10729.357 +22606,2025-03-09T20:16:57.095330-07:00,1009.4904174804688,10.72208,10722.08 +22607,2025-03-09T20:17:07.829429-07:00,1009.4804077148438,10.734099,10734.099 +22608,2025-03-09T20:17:18.557252-07:00,1009.4898681640625,10.727823,10727.823 +22609,2025-03-09T20:17:29.295777-07:00,1009.509521484375,10.738525,10738.525 +22610,2025-03-09T20:17:40.031458-07:00,1009.4925537109375,10.735681,10735.681 +22611,2025-03-09T20:17:50.760706-07:00,1009.4693603515625,10.729248,10729.248 +22612,2025-03-09T20:18:01.490434-07:00,1009.4788208007812,10.729728,10729.728 +22613,2025-03-09T20:18:12.227319-07:00,1009.51318359375,10.736885,10736.885 +22614,2025-03-09T20:18:22.964443-07:00,1009.4979858398438,10.737124,10737.124 +22615,2025-03-09T20:18:33.692245-07:00,1009.502685546875,10.727802,10727.802 +22616,2025-03-09T20:18:44.427402-07:00,1009.4790649414062,10.735157,10735.157 +22617,2025-03-09T20:18:55.161029-07:00,1009.4954833984375,10.733627,10733.627 +22618,2025-03-09T20:19:05.889249-07:00,1009.4722900390625,10.72822,10728.22 +22619,2025-03-09T20:19:16.621375-07:00,1009.4884643554688,10.732126,10732.126 +22620,2025-03-09T20:19:27.352246-07:00,1009.4996948242188,10.730871,10730.871 +22621,2025-03-09T20:19:38.080377-07:00,1009.4896240234375,10.728131,10728.131 +22622,2025-03-09T20:19:48.817285-07:00,1009.466064453125,10.736908,10736.908 +22623,2025-03-09T20:19:59.543456-07:00,1009.4876708984375,10.726171,10726.171 +22624,2025-03-09T20:20:10.281649-07:00,1009.4937744140625,10.738193,10738.193 +22625,2025-03-09T20:20:21.015623-07:00,1009.475341796875,10.733974,10733.974 +22626,2025-03-09T20:20:31.746326-07:00,1009.4785766601562,10.730703,10730.703 +22627,2025-03-09T20:20:42.483393-07:00,1009.4832153320312,10.737067,10737.067 +22628,2025-03-09T20:20:53.216358-07:00,1009.4779663085938,10.732965,10732.965 +22629,2025-03-09T20:21:03.941254-07:00,1009.529052734375,10.724896,10724.896 +22630,2025-03-09T20:21:14.675515-07:00,1009.4924926757812,10.734261,10734.261 +22631,2025-03-09T20:21:25.417432-07:00,1009.4608764648438,10.741917,10741.917 +22632,2025-03-09T20:21:36.146251-07:00,1009.478759765625,10.728819,10728.819 +22633,2025-03-09T20:21:46.873453-07:00,1009.5,10.727202,10727.202 +22634,2025-03-09T20:21:57.612264-07:00,1009.4801635742188,10.738811,10738.811 +22635,2025-03-09T20:22:08.342277-07:00,1009.489990234375,10.730013,10730.013 +22636,2025-03-09T20:22:19.073266-07:00,1009.5211181640625,10.730989,10730.989 +22637,2025-03-09T20:22:29.816285-07:00,1009.4468994140625,10.743019,10743.019 +22638,2025-03-09T20:22:40.546432-07:00,1009.490966796875,10.730147,10730.147 +22639,2025-03-09T20:22:51.281324-07:00,1009.4894409179688,10.734892,10734.892 +22640,2025-03-09T20:23:02.014455-07:00,1009.4298706054688,10.733131,10733.131 +22641,2025-03-09T20:23:12.748254-07:00,1009.5059204101562,10.733799,10733.799 +22642,2025-03-09T20:23:23.473272-07:00,1009.495849609375,10.725018,10725.018 +22643,2025-03-09T20:23:34.207319-07:00,1009.4990844726562,10.734047,10734.047 +22644,2025-03-09T20:23:44.945446-07:00,1009.4924926757812,10.738127,10738.127 +22645,2025-03-09T20:23:55.670965-07:00,1009.432861328125,10.725519,10725.519 +22646,2025-03-09T20:24:06.414250-07:00,1009.4857788085938,10.743285,10743.285 +22647,2025-03-09T20:24:17.140253-07:00,1009.434326171875,10.726003,10726.003 +22648,2025-03-09T20:24:27.873263-07:00,1009.42626953125,10.73301,10733.01 +22649,2025-03-09T20:24:38.605273-07:00,1009.4573364257812,10.73201,10732.01 +22650,2025-03-09T20:24:49.345246-07:00,1009.4573364257812,10.739973,10739.973 +22651,2025-03-09T20:25:00.082252-07:00,1009.432373046875,10.737006,10737.006 +22652,2025-03-09T20:25:10.809278-07:00,1009.4508056640625,10.727026,10727.026 +22653,2025-03-09T20:25:21.545251-07:00,1009.4176635742188,10.735973,10735.973 +22654,2025-03-09T20:25:32.270251-07:00,1009.432373046875,10.725,10725.0 +22655,2025-03-09T20:25:43.011250-07:00,1009.4441528320312,10.740999,10740.999 +22656,2025-03-09T20:25:53.742444-07:00,1009.440673828125,10.731194,10731.194 +22657,2025-03-09T20:25:54.510938-07:00,1009.4456176757812,0.768494,768.494 +22658,2025-03-09T20:26:04.468545-07:00,1009.4241943359375,9.957607,9957.607 +22659,2025-03-09T20:26:15.203341-07:00,1009.4058837890625,10.734796,10734.796 +22660,2025-03-09T20:26:25.936430-07:00,1009.4257202148438,10.733089,10733.089 +22661,2025-03-09T20:26:36.677628-07:00,1009.4389038085938,10.741198,10741.198 +22662,2025-03-09T20:26:47.408251-07:00,1009.4043579101562,10.730623,10730.623 +22663,2025-03-09T20:26:58.137177-07:00,1009.4473266601562,10.728926,10728.926 +22664,2025-03-09T20:27:08.870180-07:00,1009.4058837890625,10.733003,10733.003 +22665,2025-03-09T20:27:19.606454-07:00,1009.4043579101562,10.736274,10736.274 +22666,2025-03-09T20:27:30.339247-07:00,1009.4043579101562,10.732793,10732.793 +22667,2025-03-09T20:27:41.069926-07:00,1009.37646484375,10.730679,10730.679 +22668,2025-03-09T20:27:51.796473-07:00,1009.4043579101562,10.726547,10726.547 +22669,2025-03-09T20:28:02.530245-07:00,1009.3911743164062,10.733772,10733.772 +22670,2025-03-09T20:28:13.263299-07:00,1009.3964233398438,10.733054,10733.054 +22671,2025-03-09T20:28:24.005416-07:00,1009.3978271484375,10.742117,10742.117 +22672,2025-03-09T20:28:34.734251-07:00,1009.37646484375,10.728835,10728.835 +22673,2025-03-09T20:28:45.465460-07:00,1009.4043579101562,10.731209,10731.209 +22674,2025-03-09T20:28:56.198424-07:00,1009.3814086914062,10.732964,10732.964 +22675,2025-03-09T20:29:06.923320-07:00,1009.387939453125,10.724896,10724.896 +22676,2025-03-09T20:29:17.662386-07:00,1009.4064331054688,10.739066,10739.066 +22677,2025-03-09T20:29:28.396326-07:00,1009.3917236328125,10.73394,10733.94 +22678,2025-03-09T20:29:39.127478-07:00,1009.405029296875,10.731152,10731.152 +22679,2025-03-09T20:29:49.852249-07:00,1009.38330078125,10.724771,10724.771 +22680,2025-03-09T20:30:00.581444-07:00,1009.3965454101562,10.729195,10729.195 +22681,2025-03-09T20:30:11.322365-07:00,1009.3933715820312,10.740921,10740.921 +22682,2025-03-09T20:30:22.048249-07:00,1009.3668823242188,10.725884,10725.884 +22683,2025-03-09T20:30:32.782401-07:00,1009.3783569335938,10.734152,10734.152 +22684,2025-03-09T20:30:43.517421-07:00,1009.3915405273438,10.73502,10735.02 +22685,2025-03-09T20:30:54.243252-07:00,1009.3953247070312,10.725831,10725.831 +22686,2025-03-09T20:31:04.984483-07:00,1009.3953247070312,10.741231,10741.231 +22687,2025-03-09T20:31:15.719439-07:00,1009.3740844726562,10.734956,10734.956 +22688,2025-03-09T20:31:26.452804-07:00,1009.4004516601562,10.733365,10733.365 +22689,2025-03-09T20:31:37.186274-07:00,1009.427001953125,10.73347,10733.47 +22690,2025-03-09T20:31:47.917251-07:00,1009.3973388671875,10.730977,10730.977 +22691,2025-03-09T20:31:58.653557-07:00,1009.3775024414062,10.736306,10736.306 +22692,2025-03-09T20:32:09.394428-07:00,1009.4007568359375,10.740871,10740.871 +22693,2025-03-09T20:32:20.124251-07:00,1009.4007568359375,10.729823,10729.823 +22694,2025-03-09T20:32:30.853476-07:00,1009.4271850585938,10.729225,10729.225 +22695,2025-03-09T20:32:41.592462-07:00,1009.3992919921875,10.738986,10738.986 +22696,2025-03-09T20:32:52.328107-07:00,1009.4243774414062,10.735645,10735.645 +22697,2025-03-09T20:33:03.059477-07:00,1009.3912353515625,10.73137,10731.37 +22698,2025-03-09T20:33:13.789253-07:00,1009.4176635742188,10.729776,10729.776 +22699,2025-03-09T20:33:24.525417-07:00,1009.4026489257812,10.736164,10736.164 +22700,2025-03-09T20:33:35.259251-07:00,1009.42626953125,10.733834,10733.834 +22701,2025-03-09T20:33:45.990246-07:00,1009.3800048828125,10.730995,10730.995 +22702,2025-03-09T20:33:56.727432-07:00,1009.4210815429688,10.737186,10737.186 +22703,2025-03-09T20:34:07.460812-07:00,1009.4363403320312,10.73338,10733.38 +22704,2025-03-09T20:34:18.194248-07:00,1009.3934326171875,10.733436,10733.436 +22705,2025-03-09T20:34:28.926326-07:00,1009.3966674804688,10.732078,10732.078 +22706,2025-03-09T20:34:39.663262-07:00,1009.4017944335938,10.736936,10736.936 +22707,2025-03-09T20:34:50.395278-07:00,1009.4198608398438,10.732016,10732.016 +22708,2025-03-09T20:35:01.126460-07:00,1009.4051513671875,10.731182,10731.182 +22709,2025-03-09T20:35:11.860899-07:00,1009.4051513671875,10.734439,10734.439 +22710,2025-03-09T20:35:22.589575-07:00,1009.3839111328125,10.728676,10728.676 +22711,2025-03-09T20:35:33.327314-07:00,1009.3825073242188,10.737739,10737.739 +22712,2025-03-09T20:35:44.060248-07:00,1009.3956909179688,10.732934,10732.934 +22713,2025-03-09T20:35:54.794556-07:00,1009.408935546875,10.734308,10734.308 +22714,2025-03-09T20:36:05.532428-07:00,1009.3956909179688,10.737872,10737.872 +22715,2025-03-09T20:36:16.267713-07:00,1009.3939208984375,10.735285,10735.285 +22716,2025-03-09T20:36:27.001998-07:00,1009.3976440429688,10.734285,10734.285 +22717,2025-03-09T20:36:37.743252-07:00,1009.4520263671875,10.741254,10741.254 +22718,2025-03-09T20:36:48.479449-07:00,1009.4109497070312,10.736197,10736.197 +22719,2025-03-09T20:36:59.209248-07:00,1009.415771484375,10.729799,10729.799 +22720,2025-03-09T20:37:09.945250-07:00,1009.42236328125,10.736002,10736.002 +22721,2025-03-09T20:37:20.682353-07:00,1009.4474487304688,10.737103,10737.103 +22722,2025-03-09T20:37:31.416626-07:00,1009.4327392578125,10.734273,10734.273 +22723,2025-03-09T20:37:42.156510-07:00,1009.4110717773438,10.739884,10739.884 +22724,2025-03-09T20:37:52.888529-07:00,1009.4129028320312,10.732019,10732.019 +22725,2025-03-09T20:38:03.614471-07:00,1009.4327392578125,10.725942,10725.942 +22726,2025-03-09T20:38:14.356939-07:00,1009.459228515625,10.742468,10742.468 +22727,2025-03-09T20:38:25.083598-07:00,1009.4361572265625,10.726659,10726.659 +22728,2025-03-09T20:38:35.828425-07:00,1009.4215087890625,10.744827,10744.827 +22729,2025-03-09T20:38:46.554252-07:00,1009.40966796875,10.725827,10725.827 +22730,2025-03-09T20:38:57.289417-07:00,1009.4329833984375,10.735165,10735.165 +22731,2025-03-09T20:39:08.023304-07:00,1009.419677734375,10.733887,10733.887 +22732,2025-03-09T20:39:18.766247-07:00,1009.4329833984375,10.742943,10742.943 +22733,2025-03-09T20:39:29.498251-07:00,1009.4182739257812,10.732004,10732.004 +22734,2025-03-09T20:39:40.233235-07:00,1009.4182739257812,10.734984,10734.984 +22735,2025-03-09T20:39:50.963248-07:00,1009.4447021484375,10.730013,10730.013 +22736,2025-03-09T20:40:01.706309-07:00,1009.4168701171875,10.743061,10743.061 +22737,2025-03-09T20:40:12.440318-07:00,1009.449951171875,10.734009,10734.009 +22738,2025-03-09T20:40:23.175291-07:00,1009.4121704101562,10.734973,10734.973 +22739,2025-03-09T20:40:33.905499-07:00,1009.400390625,10.730208,10730.208 +22740,2025-03-09T20:40:44.641249-07:00,1009.4202270507812,10.73575,10735.75 +22741,2025-03-09T20:40:55.366144-07:00,1009.4173583984375,10.724895,10724.895 +22742,2025-03-09T20:41:06.105478-07:00,1009.395751953125,10.739334,10739.334 +22743,2025-03-09T20:41:16.841249-07:00,1009.4207763671875,10.735771,10735.771 +22744,2025-03-09T20:41:27.571560-07:00,1009.4288330078125,10.730311,10730.311 +22745,2025-03-09T20:41:38.308251-07:00,1009.407470703125,10.736691,10736.691 +22746,2025-03-09T20:41:49.047426-07:00,1009.4060668945312,10.739175,10739.175 +22747,2025-03-09T20:41:59.776248-07:00,1009.44580078125,10.728822,10728.822 +22748,2025-03-09T20:42:10.518396-07:00,1009.46044921875,10.742148,10742.148 +22749,2025-03-09T20:42:21.254725-07:00,1009.4307861328125,10.736329,10736.329 +22750,2025-03-09T20:42:31.991793-07:00,1009.4193115234375,10.737068,10737.068 +22751,2025-03-09T20:42:42.722453-07:00,1009.444091796875,10.73066,10730.66 +22752,2025-03-09T20:42:53.460251-07:00,1009.44921875,10.737798,10737.798 +22753,2025-03-09T20:43:04.205455-07:00,1009.455810546875,10.745204,10745.204 +22754,2025-03-09T20:43:14.939252-07:00,1009.4212646484375,10.733797,10733.797 +22755,2025-03-09T20:43:25.680423-07:00,1009.4359130859375,10.741171,10741.171 +22756,2025-03-09T20:43:36.416424-07:00,1009.40625,10.736001,10736.001 +22757,2025-03-09T20:43:47.149252-07:00,1009.4260864257812,10.732828,10732.828 +22758,2025-03-09T20:43:57.888250-07:00,1009.4411010742188,10.738998,10738.998 +22759,2025-03-09T20:44:08.618450-07:00,1009.4327392578125,10.7302,10730.2 +22760,2025-03-09T20:44:19.354428-07:00,1009.4099731445312,10.735978,10735.978 +22761,2025-03-09T20:44:30.097249-07:00,1009.4180297851562,10.742821,10742.821 +22762,2025-03-09T20:44:40.826531-07:00,1009.4215087890625,10.729282,10729.282 +22763,2025-03-09T20:44:51.565346-07:00,1009.4413452148438,10.738815,10738.815 +22764,2025-03-09T20:45:02.309324-07:00,1009.39501953125,10.743978,10743.978 +22765,2025-03-09T20:45:13.044352-07:00,1009.456298828125,10.735028,10735.028 +22766,2025-03-09T20:45:23.775459-07:00,1009.4346923828125,10.731107,10731.107 +22767,2025-03-09T20:45:34.510250-07:00,1009.447998046875,10.734791,10734.791 +22768,2025-03-09T20:45:45.245663-07:00,1009.4237670898438,10.735413,10735.413 +22769,2025-03-09T20:45:55.984423-07:00,1009.4185791015625,10.73876,10738.76 +22770,2025-03-09T20:46:06.723324-07:00,1009.43701171875,10.738901,10738.901 +22771,2025-03-09T20:46:17.456254-07:00,1009.4220581054688,10.73293,10732.93 +22772,2025-03-09T20:46:28.195252-07:00,1009.4087524414062,10.738998,10738.998 +22773,2025-03-09T20:46:38.933252-07:00,1009.4058837890625,10.738,10738.0 +22774,2025-03-09T20:46:49.671425-07:00,1009.4271850585938,10.738173,10738.173 +22775,2025-03-09T20:47:00.406388-07:00,1009.4073486328125,10.734963,10734.963 +22776,2025-03-09T20:47:11.136247-07:00,1009.4389038085938,10.729859,10729.859 +22777,2025-03-09T20:47:21.867760-07:00,1009.4173583984375,10.731513,10731.513 +22778,2025-03-09T20:47:32.608427-07:00,1009.4305419921875,10.740667,10740.667 +22779,2025-03-09T20:47:43.340493-07:00,1009.4290771484375,10.732066,10732.066 +22780,2025-03-09T20:47:54.079252-07:00,1009.4092407226562,10.738759,10738.759 +22781,2025-03-09T20:48:04.816454-07:00,1009.4224853515625,10.737202,10737.202 +22782,2025-03-09T20:48:15.551416-07:00,1009.4210815429688,10.734962,10734.962 +22783,2025-03-09T20:48:26.288280-07:00,1009.4144287109375,10.736864,10736.864 +22784,2025-03-09T20:48:37.029250-07:00,1009.4556274414062,10.74097,10740.97 +22785,2025-03-09T20:48:47.770648-07:00,1009.4224853515625,10.741398,10741.398 +22786,2025-03-09T20:48:58.495964-07:00,1009.4324951171875,10.725316,10725.316 +22787,2025-03-09T20:49:09.238979-07:00,1009.4673461914062,10.743015,10743.015 +22788,2025-03-09T20:49:19.967243-07:00,1009.4423217773438,10.728264,10728.264 +22789,2025-03-09T20:49:30.699251-07:00,1009.4688110351562,10.732008,10732.008 +22790,2025-03-09T20:49:41.434254-07:00,1009.4193115234375,10.735003,10735.003 +22791,2025-03-09T20:49:52.166425-07:00,1009.434326171875,10.732171,10732.171 +22792,2025-03-09T20:50:02.903246-07:00,1009.450927734375,10.736821,10736.821 +22793,2025-03-09T20:50:13.632433-07:00,1009.4391479492188,10.729187,10729.187 +22794,2025-03-09T20:50:24.368646-07:00,1009.454345703125,10.736213,10736.213 +22795,2025-03-09T20:50:35.106571-07:00,1009.4627075195312,10.737925,10737.925 +22796,2025-03-09T20:50:45.838591-07:00,1009.4131469726562,10.73202,10732.02 +22797,2025-03-09T20:50:56.570317-07:00,1009.4330444335938,10.731726,10731.726 +22798,2025-03-09T20:51:07.293270-07:00,1009.454345703125,10.722953,10722.953 +22799,2025-03-09T20:51:18.031250-07:00,1009.452880859375,10.73798,10737.98 +22800,2025-03-09T20:51:28.764251-07:00,1009.4595336914062,10.733001,10733.001 +22801,2025-03-09T20:51:39.497432-07:00,1009.4595336914062,10.733181,10733.181 +22802,2025-03-09T20:51:50.232249-07:00,1009.4712524414062,10.734817,10734.817 +22803,2025-03-09T20:52:00.971249-07:00,1009.483154296875,10.739,10739.0 +22804,2025-03-09T20:52:11.698252-07:00,1009.4746704101562,10.727003,10727.003 +22805,2025-03-09T20:52:22.437662-07:00,1009.4865112304688,10.73941,10739.41 +22806,2025-03-09T20:52:33.234837-07:00,1009.4832763671875,10.797175,10797.175 +22807,2025-03-09T20:52:43.967676-07:00,1009.4619750976562,10.732839,10732.839 +22808,2025-03-09T20:52:54.702878-07:00,1009.4804077148438,10.735202,10735.202 +22809,2025-03-09T20:53:05.426707-07:00,1009.5036010742188,10.723829,10723.829 +22810,2025-03-09T20:53:16.168746-07:00,1009.4871826171875,10.742039,10742.039 +22811,2025-03-09T20:53:26.896387-07:00,1009.4974975585938,10.727641,10727.641 +22812,2025-03-09T20:53:37.635840-07:00,1009.5126342773438,10.739453,10739.453 +22813,2025-03-09T20:53:48.363672-07:00,1009.4896240234375,10.727832,10727.832 +22814,2025-03-09T20:53:59.095715-07:00,1009.4820556640625,10.732043,10732.043 +22815,2025-03-09T20:54:09.833863-07:00,1009.4902954101562,10.738148,10738.148 +22816,2025-03-09T20:54:20.559676-07:00,1009.49560546875,10.725813,10725.813 +22817,2025-03-09T20:54:31.288756-07:00,1009.4598388671875,10.72908,10729.08 +22818,2025-03-09T20:54:42.019872-07:00,1009.48681640625,10.731116,10731.116 +22819,2025-03-09T20:54:52.754535-07:00,1009.482666015625,10.734663,10734.663 +22820,2025-03-09T20:55:03.491201-07:00,1009.4765014648438,10.736666,10736.666 +22821,2025-03-09T20:55:14.225104-07:00,1009.4802856445312,10.733903,10733.903 +22822,2025-03-09T20:55:24.951032-07:00,1009.4841918945312,10.725928,10725.928 +22823,2025-03-09T20:55:35.686672-07:00,1009.4795532226562,10.73564,10735.64 +22824,2025-03-09T20:55:46.411720-07:00,1009.491455078125,10.725048,10725.048 +22825,2025-03-09T20:55:57.148775-07:00,1009.4640502929688,10.737055,10737.055 +22826,2025-03-09T20:56:07.878117-07:00,1009.4645385742188,10.729342,10729.342 +22827,2025-03-09T20:56:18.608687-07:00,1009.4581298828125,10.73057,10730.57 +22828,2025-03-09T20:56:29.340854-07:00,1009.466552734375,10.732167,10732.167 +22829,2025-03-09T20:56:40.078795-07:00,1009.47216796875,10.737941,10737.941 +22830,2025-03-09T20:56:50.807686-07:00,1009.4742431640625,10.728891,10728.891 +22831,2025-03-09T20:57:01.536968-07:00,1009.46142578125,10.729282,10729.282 +22832,2025-03-09T20:57:12.274930-07:00,1009.4420166015625,10.737962,10737.962 +22833,2025-03-09T20:57:23.001892-07:00,1009.4403076171875,10.726962,10726.962 +22834,2025-03-09T20:57:33.741678-07:00,1009.4554443359375,10.739786,10739.786 +22835,2025-03-09T20:57:44.466837-07:00,1009.427490234375,10.725159,10725.159 +22836,2025-03-09T20:57:55.204670-07:00,1009.4276733398438,10.737833,10737.833 +22837,2025-03-09T20:58:05.931753-07:00,1009.4229736328125,10.727083,10727.083 +22838,2025-03-09T20:58:16.664868-07:00,1009.4013061523438,10.733115,10733.115 +22839,2025-03-09T20:58:27.397756-07:00,1009.4248657226562,10.732888,10732.888 +22840,2025-03-09T20:58:38.133672-07:00,1009.405029296875,10.735916,10735.916 +22841,2025-03-09T20:58:48.863875-07:00,1009.4319458007812,10.730203,10730.203 +22842,2025-03-09T20:58:59.591795-07:00,1009.4400024414062,10.72792,10727.92 +22843,2025-03-09T20:59:10.313697-07:00,1009.4547119140625,10.721902,10721.902 +22844,2025-03-09T20:59:21.039846-07:00,1009.4287719726562,10.726149,10726.149 +22845,2025-03-09T20:59:31.777880-07:00,1009.45654296875,10.738034,10738.034 +22846,2025-03-09T20:59:42.505747-07:00,1009.45654296875,10.727867,10727.867 +22847,2025-03-09T20:59:53.235842-07:00,1009.4154663085938,10.730095,10730.095 +22848,2025-03-09T21:00:03.964674-07:00,1009.4830322265625,10.728832,10728.832 +22849,2025-03-09T21:00:14.696672-07:00,1009.4763793945312,10.731998,10731.998 +22850,2025-03-09T21:00:25.425855-07:00,1009.4486083984375,10.729183,10729.183 +22851,2025-03-09T21:00:36.155671-07:00,1009.4537353515625,10.729816,10729.816 +22852,2025-03-09T21:00:46.888671-07:00,1009.4603271484375,10.733,10733.0 +22853,2025-03-09T21:00:57.622890-07:00,1009.4500122070312,10.734219,10734.219 +22854,2025-03-09T21:01:08.345675-07:00,1009.4434204101562,10.722785,10722.785 +22855,2025-03-09T21:01:19.082674-07:00,1009.4486083984375,10.736999,10736.999 +22856,2025-03-09T21:01:29.811874-07:00,1009.4698486328125,10.7292,10729.2 +22857,2025-03-09T21:01:40.550496-07:00,1009.4434204101562,10.738622,10738.622 +22858,2025-03-09T21:01:51.278735-07:00,1009.4319458007812,10.728239,10728.239 +22859,2025-03-09T21:02:02.009875-07:00,1009.4466552734375,10.73114,10731.14 +22860,2025-03-09T21:02:12.735745-07:00,1009.4432983398438,10.72587,10725.87 +22861,2025-03-09T21:02:23.471878-07:00,1009.489501953125,10.736133,10736.133 +22862,2025-03-09T21:02:34.202681-07:00,1009.47265625,10.730803,10730.803 +22863,2025-03-09T21:02:44.928705-07:00,1009.467529296875,10.726024,10726.024 +22864,2025-03-09T21:02:55.651999-07:00,1009.4593505859375,10.723294,10723.294 +22865,2025-03-09T21:03:06.382852-07:00,1009.470703125,10.730853,10730.853 +22866,2025-03-09T21:03:17.114125-07:00,1009.465576171875,10.731273,10731.273 +22867,2025-03-09T21:03:27.850673-07:00,1009.460693359375,10.736548,10736.548 +22868,2025-03-09T21:03:38.576844-07:00,1009.4690551757812,10.726171,10726.171 +22869,2025-03-09T21:03:49.311723-07:00,1009.4788818359375,10.734879,10734.879 +22870,2025-03-09T21:04:00.038743-07:00,1009.4639282226562,10.72702,10727.02 +22871,2025-03-09T21:04:10.767064-07:00,1009.487060546875,10.728321,10728.321 +22872,2025-03-09T21:04:21.500957-07:00,1009.4685668945312,10.733893,10733.893 +22873,2025-03-09T21:04:32.232876-07:00,1009.470458984375,10.731919,10731.919 +22874,2025-03-09T21:04:42.956880-07:00,1009.4454956054688,10.724004,10724.004 +22875,2025-03-09T21:04:53.686743-07:00,1009.4586181640625,10.729863,10729.863 +22876,2025-03-09T21:05:04.425676-07:00,1009.455322265625,10.738933,10738.933 +22877,2025-03-09T21:05:15.155026-07:00,1009.4581298828125,10.72935,10729.35 +22878,2025-03-09T21:05:25.880677-07:00,1009.497802734375,10.725651,10725.651 +22879,2025-03-09T21:05:36.622673-07:00,1009.4481811523438,10.741996,10741.996 +22880,2025-03-09T21:05:47.346676-07:00,1009.4774780273438,10.724003,10724.003 +22881,2025-03-09T21:05:58.075781-07:00,1009.4562377929688,10.729105,10729.105 +22882,2025-03-09T21:06:08.814671-07:00,1009.4690551757812,10.73889,10738.89 +22883,2025-03-09T21:06:19.549745-07:00,1009.450927734375,10.735074,10735.074 +22884,2025-03-09T21:06:30.281454-07:00,1009.450927734375,10.731709,10731.709 +22885,2025-03-09T21:06:41.013673-07:00,1009.4707641601562,10.732219,10732.219 +22886,2025-03-09T21:06:51.744675-07:00,1009.4967041015625,10.731002,10731.002 +22887,2025-03-09T21:07:02.480891-07:00,1009.4717407226562,10.736216,10736.216 +22888,2025-03-09T21:07:13.215847-07:00,1009.4600219726562,10.734956,10734.956 +22889,2025-03-09T21:07:23.947230-07:00,1009.483154296875,10.731383,10731.383 +22890,2025-03-09T21:07:34.684734-07:00,1009.483154296875,10.737504,10737.504 +22891,2025-03-09T21:07:45.410977-07:00,1009.4646606445312,10.726243,10726.243 +22892,2025-03-09T21:07:56.143673-07:00,1009.4334106445312,10.732696,10732.696 +22893,2025-03-09T21:08:06.880675-07:00,1009.4612426757812,10.737002,10737.002 +22894,2025-03-09T21:08:17.611841-07:00,1009.4579467773438,10.731166,10731.166 +22895,2025-03-09T21:08:28.347888-07:00,1009.477783203125,10.736047,10736.047 +22896,2025-03-09T21:08:39.075976-07:00,1009.5022583007812,10.728088,10728.088 +22897,2025-03-09T21:08:49.803957-07:00,1009.46923828125,10.727981,10727.981 +22898,2025-03-09T21:09:00.545064-07:00,1009.5003051757812,10.741107,10741.107 +22899,2025-03-09T21:09:11.264672-07:00,1009.4589233398438,10.719608,10719.608 +22900,2025-03-09T21:09:21.996710-07:00,1009.4885864257812,10.732038,10732.038 +22901,2025-03-09T21:09:32.724974-07:00,1009.4981079101562,10.728264,10728.264 +22902,2025-03-09T21:09:43.456673-07:00,1009.5093994140625,10.731699,10731.699 +22903,2025-03-09T21:09:54.194710-07:00,1009.4714965820312,10.738037,10738.037 +22904,2025-03-09T21:10:04.922876-07:00,1009.4781494140625,10.728166,10728.166 +22905,2025-03-09T21:10:15.652673-07:00,1009.4464721679688,10.729797,10729.797 +22906,2025-03-09T21:10:26.389082-07:00,1009.4876708984375,10.736409,10736.409 +22907,2025-03-09T21:10:37.117802-07:00,1009.4841918945312,10.72872,10728.72 +22908,2025-03-09T21:10:47.847801-07:00,1009.500732421875,10.729999,10729.999 +22909,2025-03-09T21:10:58.584673-07:00,1009.4808349609375,10.736872,10736.872 +22910,2025-03-09T21:11:09.311855-07:00,1009.4837646484375,10.727182,10727.182 +22911,2025-03-09T21:11:20.046919-07:00,1009.4984130859375,10.735064,10735.064 +22912,2025-03-09T21:11:30.773674-07:00,1009.487060546875,10.726755,10726.755 +22913,2025-03-09T21:11:41.501867-07:00,1009.4751586914062,10.728193,10728.193 +22914,2025-03-09T21:11:52.230698-07:00,1009.5031127929688,10.728831,10728.831 +22915,2025-03-09T21:12:02.969678-07:00,1009.511474609375,10.73898,10738.98 +22916,2025-03-09T21:12:13.700078-07:00,1009.50634765625,10.7304,10730.4 +22917,2025-03-09T21:12:24.428745-07:00,1009.50439453125,10.728667,10728.667 +22918,2025-03-09T21:12:35.163854-07:00,1009.4911499023438,10.735109,10735.109 +22919,2025-03-09T21:12:45.891707-07:00,1009.505859375,10.727853,10727.853 +22920,2025-03-09T21:12:56.628842-07:00,1009.4793701171875,10.737135,10737.135 +22921,2025-03-09T21:13:07.349706-07:00,1009.5123291015625,10.720864,10720.864 +22922,2025-03-09T21:13:18.087789-07:00,1009.5086059570312,10.738083,10738.083 +22923,2025-03-09T21:13:28.820796-07:00,1009.501953125,10.733007,10733.007 +22924,2025-03-09T21:13:39.544670-07:00,1009.491943359375,10.723874,10723.874 +22925,2025-03-09T21:13:50.283682-07:00,1009.4985961914062,10.739012,10739.012 +22926,2025-03-09T21:14:01.020668-07:00,1009.494873046875,10.736986,10736.986 +22927,2025-03-09T21:14:11.750401-07:00,1009.48828125,10.729733,10729.733 +22928,2025-03-09T21:14:22.485914-07:00,1009.4981079101562,10.735513,10735.513 +22929,2025-03-09T21:14:33.210855-07:00,1009.49951171875,10.724941,10724.941 +22930,2025-03-09T21:14:43.946848-07:00,1009.5027465820312,10.735993,10735.993 +22931,2025-03-09T21:14:54.685820-07:00,1009.5059204101562,10.738972,10738.972 +22932,2025-03-09T21:15:05.418784-07:00,1009.5220947265625,10.732964,10732.964 +22933,2025-03-09T21:15:16.157674-07:00,1009.5267333984375,10.73889,10738.89 +22934,2025-03-09T21:15:26.885885-07:00,1009.5282592773438,10.728211,10728.211 +22935,2025-03-09T21:15:37.624914-07:00,1009.533203125,10.739029,10739.029 +22936,2025-03-09T21:15:48.353674-07:00,1009.5445556640625,10.72876,10728.76 +22937,2025-03-09T21:15:59.082486-07:00,1009.5330200195312,10.728812,10728.812 +22938,2025-03-09T21:16:09.813675-07:00,1009.5443725585938,10.731189,10731.189 +22939,2025-03-09T21:16:20.552676-07:00,1009.5552978515625,10.739001,10739.001 +22940,2025-03-09T21:16:31.278880-07:00,1009.52880859375,10.726204,10726.204 +22941,2025-03-09T21:16:42.010909-07:00,1009.533447265625,10.732029,10732.029 +22942,2025-03-09T21:16:52.752044-07:00,1009.5300903320312,10.741135,10741.135 +22943,2025-03-09T21:17:03.477743-07:00,1009.5314331054688,10.725699,10725.699 +22944,2025-03-09T21:17:14.203864-07:00,1009.5540771484375,10.726121,10726.121 +22945,2025-03-09T21:17:24.937880-07:00,1009.51953125,10.734016,10734.016 +22946,2025-03-09T21:17:35.668887-07:00,1009.4910888671875,10.731007,10731.007 +22947,2025-03-09T21:17:46.407889-07:00,1009.513916015625,10.739002,10739.002 +22948,2025-03-09T21:17:57.139911-07:00,1009.5203247070312,10.732022,10732.022 +22949,2025-03-09T21:18:07.872675-07:00,1009.51513671875,10.732764,10732.764 +22950,2025-03-09T21:18:18.598156-07:00,1009.505126953125,10.725481,10725.481 +22951,2025-03-09T21:18:29.335848-07:00,1009.5244750976562,10.737692,10737.692 +22952,2025-03-09T21:18:40.064675-07:00,1009.5291137695312,10.728827,10728.827 +22953,2025-03-09T21:18:50.797678-07:00,1009.517333984375,10.733003,10733.003 +22954,2025-03-09T21:19:01.529864-07:00,1009.4940795898438,10.732186,10732.186 +22955,2025-03-09T21:19:12.260887-07:00,1009.500732421875,10.731023,10731.023 +22956,2025-03-09T21:19:22.994757-07:00,1009.5101318359375,10.73387,10733.87 +22957,2025-03-09T21:19:33.730055-07:00,1009.513427734375,10.735298,10735.298 +22958,2025-03-09T21:19:44.459673-07:00,1009.481689453125,10.729618,10729.618 +22959,2025-03-09T21:19:55.186773-07:00,1009.4486694335938,10.7271,10727.1 +22960,2025-03-09T21:20:05.926749-07:00,1009.4717407226562,10.739976,10739.976 +22961,2025-03-09T21:20:16.649771-07:00,1009.4703369140625,10.723022,10723.022 +22962,2025-03-09T21:20:27.387672-07:00,1009.4533081054688,10.737901,10737.901 +22963,2025-03-09T21:20:38.115850-07:00,1009.4763793945312,10.728178,10728.178 +22964,2025-03-09T21:20:48.849856-07:00,1009.4844360351562,10.734006,10734.006 +22965,2025-03-09T21:20:59.576078-07:00,1009.464599609375,10.726222,10726.222 +22966,2025-03-09T21:21:10.307847-07:00,1009.41015625,10.731769,10731.769 +22967,2025-03-09T21:21:21.049888-07:00,1009.4447021484375,10.742041,10742.041 +22968,2025-03-09T21:21:31.773804-07:00,1009.4528198242188,10.723916,10723.916 +22969,2025-03-09T21:21:42.503074-07:00,1009.4461669921875,10.72927,10729.27 +22970,2025-03-09T21:21:53.232857-07:00,1009.4494018554688,10.729783,10729.783 +22971,2025-03-09T21:22:03.960672-07:00,1009.4442138671875,10.727815,10727.815 +22972,2025-03-09T21:22:14.698972-07:00,1009.4413452148438,10.7383,10738.3 +22973,2025-03-09T21:22:25.427195-07:00,1009.4148559570312,10.728223,10728.223 +22974,2025-03-09T21:22:36.159675-07:00,1009.4361572265625,10.73248,10732.48 +22975,2025-03-09T21:22:46.886055-07:00,1009.4215087890625,10.72638,10726.38 +22976,2025-03-09T21:22:57.613863-07:00,1009.4375610351562,10.727808,10727.808 +22977,2025-03-09T21:23:08.344735-07:00,1009.4361572265625,10.730872,10730.872 +22978,2025-03-09T21:23:19.085924-07:00,1009.4361572265625,10.741189,10741.189 +22979,2025-03-09T21:23:29.810836-07:00,1009.4229736328125,10.724912,10724.912 +22980,2025-03-09T21:23:40.543935-07:00,1009.403076171875,10.733099,10733.099 +22981,2025-03-09T21:23:51.283674-07:00,1009.4229736328125,10.739739,10739.739 +22982,2025-03-09T21:24:02.011753-07:00,1009.4243774414062,10.728079,10728.079 +22983,2025-03-09T21:24:12.744856-07:00,1009.4243774414062,10.733103,10733.103 +22984,2025-03-09T21:24:23.484880-07:00,1009.404541015625,10.740024,10740.024 +22985,2025-03-09T21:24:34.209670-07:00,1009.39501953125,10.72479,10724.79 +22986,2025-03-09T21:24:44.946676-07:00,1009.404541015625,10.737006,10737.006 +22987,2025-03-09T21:24:55.673759-07:00,1009.3898315429688,10.727083,10727.083 +22988,2025-03-09T21:25:06.405673-07:00,1009.4148559570312,10.731914,10731.914 +22989,2025-03-09T21:25:17.145697-07:00,1009.40966796875,10.740024,10740.024 +22990,2025-03-09T21:25:27.872460-07:00,1009.3817138671875,10.726763,10726.763 +22991,2025-03-09T21:25:38.599751-07:00,1009.39501953125,10.727291,10727.291 +22992,2025-03-09T21:25:49.330668-07:00,1009.388427734375,10.730917,10730.917 +22993,2025-03-09T21:26:00.064094-07:00,1009.3898315429688,10.733426,10733.426 +22994,2025-03-09T21:26:10.801680-07:00,1009.3964233398438,10.737586,10737.586 +22995,2025-03-09T21:26:21.538081-07:00,1009.3851318359375,10.736401,10736.401 +22996,2025-03-09T21:26:32.262696-07:00,1009.3817138671875,10.724615,10724.615 +22997,2025-03-09T21:26:42.990674-07:00,1009.3851318359375,10.727978,10727.978 +22998,2025-03-09T21:26:53.727676-07:00,1009.3572387695312,10.737002,10737.002 +22999,2025-03-09T21:27:04.454852-07:00,1009.3771362304688,10.727176,10727.176 +23000,2025-03-09T21:27:15.185795-07:00,1009.3492431640625,10.730943,10730.943 +23001,2025-03-09T21:27:25.912673-07:00,1009.38232421875,10.726878,10726.878 +23002,2025-03-09T21:27:36.647902-07:00,1009.360595703125,10.735229,10735.229 +23003,2025-03-09T21:27:47.374698-07:00,1009.388916015625,10.726796,10726.796 +23004,2025-03-09T21:27:58.113669-07:00,1009.360595703125,10.738971,10738.971 +23005,2025-03-09T21:28:08.839696-07:00,1009.360595703125,10.726027,10726.027 +23006,2025-03-09T21:28:19.571724-07:00,1009.360595703125,10.732028,10732.028 +23007,2025-03-09T21:28:30.299892-07:00,1009.3511962890625,10.728168,10728.168 +23008,2025-03-09T21:28:41.037893-07:00,1009.3724975585938,10.738001,10738.001 +23009,2025-03-09T21:28:51.767699-07:00,1009.3577880859375,10.729806,10729.806 +23010,2025-03-09T21:29:02.497672-07:00,1009.3710327148438,10.729973,10729.973 +23011,2025-03-09T21:29:13.238886-07:00,1009.3626708984375,10.741214,10741.214 +23012,2025-03-09T21:29:23.964874-07:00,1009.3465576171875,10.725988,10725.988 +23013,2025-03-09T21:29:34.705948-07:00,1009.3531494140625,10.741074,10741.074 +23014,2025-03-09T21:29:45.429678-07:00,1009.334716796875,10.72373,10723.73 +23015,2025-03-09T21:29:56.166033-07:00,1009.3446655273438,10.736355,10736.355 +23016,2025-03-09T21:30:06.903853-07:00,1009.31689453125,10.73782,10737.82 +23017,2025-03-09T21:30:17.626825-07:00,1009.3712768554688,10.722972,10722.972 +23018,2025-03-09T21:30:28.358670-07:00,1009.3418579101562,10.731845,10731.845 +23019,2025-03-09T21:30:39.098416-07:00,1009.3499145507812,10.739746,10739.746 +23020,2025-03-09T21:30:49.822855-07:00,1009.3682861328125,10.724439,10724.439 +23021,2025-03-09T21:31:00.563701-07:00,1009.3682861328125,10.740846,10740.846 +23022,2025-03-09T21:31:11.298042-07:00,1009.3731079101562,10.734341,10734.341 +23023,2025-03-09T21:31:22.023672-07:00,1009.3599853515625,10.72563,10725.63 +23024,2025-03-09T21:31:32.761495-07:00,1009.385009765625,10.737823,10737.823 +23025,2025-03-09T21:31:43.495856-07:00,1009.3636474609375,10.734361,10734.361 +23026,2025-03-09T21:31:54.230678-07:00,1009.3636474609375,10.734822,10734.822 +23027,2025-03-09T21:32:04.967866-07:00,1009.3486938476562,10.737188,10737.188 +23028,2025-03-09T21:32:15.699669-07:00,1009.3618774414062,10.731803,10731.803 +23029,2025-03-09T21:32:26.432678-07:00,1009.3538208007812,10.733009,10733.009 +23030,2025-03-09T21:32:37.161869-07:00,1009.34716796875,10.729191,10729.191 +23031,2025-03-09T21:32:47.905349-07:00,1009.3192749023438,10.74348,10743.48 +23032,2025-03-09T21:32:58.628804-07:00,1009.3457641601562,10.723455,10723.455 +23033,2025-03-09T21:33:09.360064-07:00,1009.3245239257812,10.73126,10731.26 +23034,2025-03-09T21:33:20.104025-07:00,1009.3377075195312,10.743961,10743.961 +23035,2025-03-09T21:33:30.838013-07:00,1009.327880859375,10.733988,10733.988 +23036,2025-03-09T21:33:41.560889-07:00,1009.3065795898438,10.722876,10722.876 +23037,2025-03-09T21:33:52.298346-07:00,1009.2999877929688,10.737457,10737.457 +23038,2025-03-09T21:34:03.035325-07:00,1009.327880859375,10.736979,10736.979 +23039,2025-03-09T21:34:13.768678-07:00,1009.2982177734375,10.733353,10733.353 +23040,2025-03-09T21:34:24.498675-07:00,1009.2999877929688,10.729997,10729.997 +23041,2025-03-09T21:34:35.228845-07:00,1009.27685546875,10.73017,10730.17 +23042,2025-03-09T21:34:45.966889-07:00,1009.27685546875,10.738044,10738.044 +23043,2025-03-09T21:34:56.686854-07:00,1009.2901611328125,10.719965,10719.965 +23044,2025-03-09T21:35:07.420011-07:00,1009.2952880859375,10.733157,10733.157 +23045,2025-03-09T21:35:18.159709-07:00,1009.2952880859375,10.739698,10739.698 +23046,2025-03-09T21:35:28.881676-07:00,1009.2952880859375,10.721967,10721.967 +23047,2025-03-09T21:35:39.618977-07:00,1009.2689208984375,10.737301,10737.301 +23048,2025-03-09T21:35:50.344669-07:00,1009.3068237304688,10.725692,10725.692 +23049,2025-03-09T21:36:01.076673-07:00,1009.333251953125,10.732004,10732.004 +23050,2025-03-09T21:36:11.806045-07:00,1009.3318481445312,10.729372,10729.372 +23051,2025-03-09T21:36:22.540673-07:00,1009.3350219726562,10.734628,10734.628 +23052,2025-03-09T21:36:33.265676-07:00,1009.32373046875,10.725003,10725.003 +23053,2025-03-09T21:36:43.994856-07:00,1009.318603515625,10.72918,10729.18 +23054,2025-03-09T21:36:54.729675-07:00,1009.2954711914062,10.734819,10734.819 +23055,2025-03-09T21:37:05.459908-07:00,1009.32373046875,10.730233,10730.233 +23056,2025-03-09T21:37:16.185859-07:00,1009.32861328125,10.725951,10725.951 +23057,2025-03-09T21:37:26.917675-07:00,1009.32861328125,10.731816,10731.816 +23058,2025-03-09T21:37:37.648671-07:00,1009.3418579101562,10.730996,10730.996 +23059,2025-03-09T21:37:48.378847-07:00,1009.3043823242188,10.730176,10730.176 +23060,2025-03-09T21:37:59.109882-07:00,1009.3551025390625,10.731035,10731.035 +23061,2025-03-09T21:38:09.840671-07:00,1009.3551025390625,10.730789,10730.789 +23062,2025-03-09T21:38:20.570862-07:00,1009.32568359375,10.730191,10730.191 +23063,2025-03-09T21:38:31.300747-07:00,1009.3323364257812,10.729885,10729.885 +23064,2025-03-09T21:38:42.034675-07:00,1009.3470458984375,10.733928,10733.928 +23065,2025-03-09T21:38:52.766206-07:00,1009.31103515625,10.731531,10731.531 +23066,2025-03-09T21:39:03.493672-07:00,1009.3375244140625,10.727466,10727.466 +23067,2025-03-09T21:39:14.227852-07:00,1009.3375244140625,10.73418,10734.18 +23068,2025-03-09T21:39:24.954081-07:00,1009.3078002929688,10.726229,10726.229 +23069,2025-03-09T21:39:35.680671-07:00,1009.3423461914062,10.72659,10726.59 +23070,2025-03-09T21:39:46.417675-07:00,1009.2997436523438,10.737004,10737.004 +23071,2025-03-09T21:39:57.142086-07:00,1009.3078002929688,10.724411,10724.411 +23072,2025-03-09T21:40:07.876672-07:00,1009.306396484375,10.734586,10734.586 +23073,2025-03-09T21:40:18.610678-07:00,1009.319580078125,10.734006,10734.006 +23074,2025-03-09T21:40:29.340291-07:00,1009.311279296875,10.729613,10729.613 +23075,2025-03-09T21:40:40.065672-07:00,1009.3097534179688,10.725381,10725.381 +23076,2025-03-09T21:40:50.798967-07:00,1009.3097534179688,10.733295,10733.295 +23077,2025-03-09T21:41:01.528809-07:00,1009.295166015625,10.729842,10729.842 +23078,2025-03-09T21:41:12.260766-07:00,1009.3016967773438,10.731957,10731.957 +23079,2025-03-09T21:41:22.995674-07:00,1009.3065795898438,10.734908,10734.908 +23080,2025-03-09T21:41:33.725884-07:00,1009.2734375,10.73021,10730.21 +23081,2025-03-09T21:41:44.447702-07:00,1009.2853393554688,10.721818,10721.818 +23082,2025-03-09T21:41:55.177942-07:00,1009.25732421875,10.73024,10730.24 +23083,2025-03-09T21:42:05.909848-07:00,1009.2639770507812,10.731906,10731.906 +23084,2025-03-09T21:42:16.646049-07:00,1009.268798828125,10.736201,10736.201 +23085,2025-03-09T21:42:27.379738-07:00,1009.2952880859375,10.733689,10733.689 +23086,2025-03-09T21:42:38.109857-07:00,1009.2952880859375,10.730119,10730.119 +23087,2025-03-09T21:42:48.832675-07:00,1009.25927734375,10.722818,10722.818 +23088,2025-03-09T21:42:59.569672-07:00,1009.2575073242188,10.736997,10736.997 +23089,2025-03-09T21:43:10.304670-07:00,1009.2659301757812,10.734998,10734.998 +23090,2025-03-09T21:43:21.036963-07:00,1009.2659301757812,10.732293,10732.293 +23091,2025-03-09T21:43:31.763672-07:00,1009.2659301757812,10.726709,10726.709 +23092,2025-03-09T21:43:42.499862-07:00,1009.27734375,10.73619,10736.19 +23093,2025-03-09T21:43:53.221670-07:00,1009.2923583984375,10.721808,10721.808 +23094,2025-03-09T21:44:03.956675-07:00,1009.256103515625,10.735005,10735.005 +23095,2025-03-09T21:44:14.687671-07:00,1009.2892456054688,10.730996,10730.996 +23096,2025-03-09T21:44:25.413700-07:00,1009.2759399414062,10.726029,10726.029 +23097,2025-03-09T21:44:36.142703-07:00,1009.253173828125,10.729003,10729.003 +23098,2025-03-09T21:44:46.876122-07:00,1009.2957763671875,10.733419,10733.419 +23099,2025-03-09T21:44:57.605669-07:00,1009.26123046875,10.729547,10729.547 +23100,2025-03-09T21:45:08.335760-07:00,1009.239990234375,10.730091,10730.091 +23101,2025-03-09T21:45:19.068673-07:00,1009.2664184570312,10.732913,10732.913 +23102,2025-03-09T21:45:29.803858-07:00,1009.253173828125,10.735185,10735.185 +23103,2025-03-09T21:45:40.535781-07:00,1009.244873046875,10.731923,10731.923 +23104,2025-03-09T21:45:51.267672-07:00,1009.2810668945312,10.731891,10731.891 +23105,2025-03-09T21:46:01.999848-07:00,1009.2514038085938,10.732176,10732.176 +23106,2025-03-09T21:46:12.720884-07:00,1009.2301635742188,10.721036,10721.036 +23107,2025-03-09T21:46:23.454221-07:00,1009.258056640625,10.733337,10733.337 +23108,2025-03-09T21:46:34.188868-07:00,1009.2382202148438,10.734647,10734.647 +23109,2025-03-09T21:46:44.920673-07:00,1009.2366943359375,10.731805,10731.805 +23110,2025-03-09T21:46:55.642235-07:00,1009.2315673828125,10.721562,10721.562 +23111,2025-03-09T21:47:06.373421-07:00,1009.2301635742188,10.731186,10731.186 +23112,2025-03-09T21:47:17.110668-07:00,1009.255126953125,10.737247,10737.247 +23113,2025-03-09T21:47:27.832868-07:00,1009.2698364257812,10.7222,10722.2 +23114,2025-03-09T21:47:38.559007-07:00,1009.2352905273438,10.726139,10726.139 +23115,2025-03-09T21:47:49.296672-07:00,1009.25341796875,10.737665,10737.665 +23116,2025-03-09T21:48:00.029906-07:00,1009.2254638671875,10.733234,10733.234 +23117,2025-03-09T21:48:10.760869-07:00,1009.2203369140625,10.730963,10730.963 +23118,2025-03-09T21:48:21.492827-07:00,1009.2268676757812,10.731958,10731.958 +23119,2025-03-09T21:48:32.219889-07:00,1009.2335815429688,10.727062,10727.062 +23120,2025-03-09T21:48:42.950979-07:00,1009.2321166992188,10.73109,10731.09 +23121,2025-03-09T21:48:53.688676-07:00,1009.2372436523438,10.737697,10737.697 +23122,2025-03-09T21:49:04.417668-07:00,1009.2637329101562,10.728992,10728.992 +23123,2025-03-09T21:49:15.155944-07:00,1009.2174072265625,10.738276,10738.276 +23124,2025-03-09T21:49:25.890865-07:00,1009.2288818359375,10.734921,10734.921 +23125,2025-03-09T21:49:36.618678-07:00,1009.2207641601562,10.727813,10727.813 +23126,2025-03-09T21:49:47.354890-07:00,1009.2322387695312,10.736212,10736.212 +23127,2025-03-09T21:49:58.082902-07:00,1009.2371826171875,10.728012,10728.012 +23128,2025-03-09T21:50:08.814672-07:00,1009.2423706054688,10.73177,10731.77 +23129,2025-03-09T21:50:19.546674-07:00,1009.2327880859375,10.732002,10732.002 +23130,2025-03-09T21:50:30.285002-07:00,1009.2640380859375,10.738328,10738.328 +23131,2025-03-09T21:50:41.011874-07:00,1009.239501953125,10.726872,10726.872 +23132,2025-03-09T21:50:51.742672-07:00,1009.2249145507812,10.730798,10730.798 +23133,2025-03-09T21:51:02.478892-07:00,1009.2631225585938,10.73622,10736.22 +23134,2025-03-09T21:51:13.210539-07:00,1009.2385864257812,10.731647,10731.647 +23135,2025-03-09T21:51:23.939751-07:00,1009.2420043945312,10.729212,10729.212 +23136,2025-03-09T21:51:34.668853-07:00,1009.2586669921875,10.729102,10729.102 +23137,2025-03-09T21:51:45.413208-07:00,1009.2232055664062,10.744355,10744.355 +23138,2025-03-09T21:51:56.142970-07:00,1009.223388671875,10.729762,10729.762 +23139,2025-03-09T21:52:06.877672-07:00,1009.2318725585938,10.734702,10734.702 +23140,2025-03-09T21:52:17.605676-07:00,1009.2295532226562,10.728004,10728.004 +23141,2025-03-09T21:52:28.337908-07:00,1009.2446899414062,10.732232,10732.232 +23142,2025-03-09T21:52:39.081693-07:00,1009.239990234375,10.743785,10743.785 +23143,2025-03-09T21:52:49.819678-07:00,1009.246826171875,10.737985,10737.985 +23144,2025-03-09T21:53:00.519490-07:00,1009.255615234375,10.699812,10699.812 +23145,2025-03-09T21:53:11.260545-07:00,1009.247802734375,10.741055,10741.055 +23146,2025-03-09T21:53:21.996799-07:00,1009.2298583984375,10.736254,10736.254 +23147,2025-03-09T21:53:32.729696-07:00,1009.248291015625,10.732897,10732.897 +23148,2025-03-09T21:53:43.473491-07:00,1009.2318115234375,10.743795,10743.795 +23149,2025-03-09T21:53:54.214601-07:00,1009.263427734375,10.74111,10741.11 +23150,2025-03-09T21:54:04.948489-07:00,1009.25830078125,10.733888,10733.888 +23151,2025-03-09T21:54:15.695521-07:00,1009.263427734375,10.747032,10747.032 +23152,2025-03-09T21:54:26.432672-07:00,1009.2615356445312,10.737151,10737.151 +23153,2025-03-09T21:54:37.173270-07:00,1009.280029296875,10.740598,10740.598 +23154,2025-03-09T21:54:47.918724-07:00,1009.276611328125,10.745454,10745.454 +23155,2025-03-09T21:54:58.656036-07:00,1009.2714233398438,10.737312,10737.312 +23156,2025-03-09T21:55:09.394763-07:00,1009.2501831054688,10.738727,10738.727 +23157,2025-03-09T21:55:20.142537-07:00,1009.2398681640625,10.747774,10747.774 +23158,2025-03-09T21:55:30.885501-07:00,1009.27294921875,10.742964,10742.964 +23159,2025-03-09T21:55:41.624492-07:00,1009.27294921875,10.738991,10738.991 +23160,2025-03-09T21:55:52.363671-07:00,1009.2842407226562,10.739179,10739.179 +23161,2025-03-09T21:56:03.103298-07:00,1009.267578125,10.739627,10739.627 +23162,2025-03-09T21:56:13.841488-07:00,1009.2642211914062,10.73819,10738.19 +23163,2025-03-09T21:56:24.575490-07:00,1009.25244140625,10.734002,10734.002 +23164,2025-03-09T21:56:35.321493-07:00,1009.2835693359375,10.746003,10746.003 +23165,2025-03-09T21:56:46.055764-07:00,1009.2864990234375,10.734271,10734.271 +23166,2025-03-09T21:56:56.793749-07:00,1009.243408203125,10.737985,10737.985 +23167,2025-03-09T21:57:07.530692-07:00,1009.2481079101562,10.736943,10736.943 +23168,2025-03-09T21:57:18.274716-07:00,1009.2527465820312,10.744024,10744.024 +23169,2025-03-09T21:57:29.021720-07:00,1009.2277221679688,10.747004,10747.004 +23170,2025-03-09T21:57:39.759148-07:00,1009.23388671875,10.737428,10737.428 +23171,2025-03-09T21:57:50.496668-07:00,1009.237060546875,10.73752,10737.52 +23172,2025-03-09T21:58:01.236713-07:00,1009.2351684570312,10.740045,10740.045 +23173,2025-03-09T21:58:11.976754-07:00,1009.2251586914062,10.740041,10740.041 +23174,2025-03-09T21:58:22.715701-07:00,1009.2430419921875,10.738947,10738.947 +23175,2025-03-09T21:58:33.448571-07:00,1009.2491455078125,10.73287,10732.87 +23176,2025-03-09T21:58:44.194803-07:00,1009.2684936523438,10.746232,10746.232 +23177,2025-03-09T21:58:54.934494-07:00,1009.2665405273438,10.739691,10739.691 +23178,2025-03-09T21:59:05.671492-07:00,1009.2514038085938,10.736998,10736.998 +23179,2025-03-09T21:59:16.410681-07:00,1009.2263793945312,10.739189,10739.189 +23180,2025-03-09T21:59:27.152809-07:00,1009.224365234375,10.742128,10742.128 +23181,2025-03-09T21:59:37.895761-07:00,1009.28515625,10.742952,10742.952 +23182,2025-03-09T21:59:48.632582-07:00,1009.2784423828125,10.736821,10736.821 +23183,2025-03-09T21:59:59.371684-07:00,1009.2732543945312,10.739102,10739.102 +23184,2025-03-09T22:00:10.108683-07:00,1009.2948608398438,10.736999,10736.999 +23185,2025-03-09T22:00:20.858995-07:00,1009.2778930664062,10.750312,10750.312 +23186,2025-03-09T22:00:31.592668-07:00,1009.2678833007812,10.733673,10733.673 +23187,2025-03-09T22:00:42.337549-07:00,1009.2871704101562,10.744881,10744.881 +23188,2025-03-09T22:00:53.072492-07:00,1009.2886962890625,10.734943,10734.943 +23189,2025-03-09T22:01:03.815552-07:00,1009.2654418945312,10.74306,10743.06 +23190,2025-03-09T22:01:14.558492-07:00,1009.2847900390625,10.74294,10742.94 +23191,2025-03-09T22:01:25.295555-07:00,1009.2879638671875,10.737063,10737.063 +23192,2025-03-09T22:01:36.038492-07:00,1009.2893676757812,10.742937,10742.937 +23193,2025-03-09T22:01:46.775685-07:00,1009.2609252929688,10.737193,10737.193 +23194,2025-03-09T22:01:57.521879-07:00,1009.2906494140625,10.746194,10746.194 +23195,2025-03-09T22:02:08.257489-07:00,1009.25390625,10.73561,10735.61 +23196,2025-03-09T22:02:18.997427-07:00,1009.2703247070312,10.739938,10739.938 +23197,2025-03-09T22:02:29.743497-07:00,1009.2815551757812,10.74607,10746.07 +23198,2025-03-09T22:02:40.480767-07:00,1009.2927856445312,10.73727,10737.27 +23199,2025-03-09T22:02:51.219522-07:00,1009.2692260742188,10.738755,10738.755 +23200,2025-03-09T22:03:01.968522-07:00,1009.267333984375,10.749,10749.0 +23201,2025-03-09T22:03:12.702809-07:00,1009.275634765625,10.734287,10734.287 +23202,2025-03-09T22:03:23.457562-07:00,1009.2388916015625,10.754753,10754.753 +23203,2025-03-09T22:03:34.192717-07:00,1009.2633666992188,10.735155,10735.155 +23204,2025-03-09T22:03:44.936491-07:00,1009.2481079101562,10.743774,10743.774 +23205,2025-03-09T22:03:55.684519-07:00,1009.2726440429688,10.748028,10748.028 +23206,2025-03-09T22:04:06.429700-07:00,1009.2295532226562,10.745181,10745.181 +23207,2025-03-09T22:04:17.169488-07:00,1009.2620849609375,10.739788,10739.788 +23208,2025-03-09T22:04:27.910722-07:00,1009.232177734375,10.741234,10741.234 +23209,2025-03-09T22:04:38.661494-07:00,1009.248291015625,10.750772,10750.772 +23210,2025-03-09T22:04:49.404554-07:00,1009.2265014648438,10.74306,10743.06 +23211,2025-03-09T22:05:00.148529-07:00,1009.236328125,10.743975,10743.975 +23212,2025-03-09T22:05:10.885590-07:00,1009.2259521484375,10.737061,10737.061 +23213,2025-03-09T22:05:21.633705-07:00,1009.2257690429688,10.748115,10748.115 +23214,2025-03-09T22:05:32.369855-07:00,1009.2450561523438,10.73615,10736.15 +23215,2025-03-09T22:05:43.112728-07:00,1009.2284545898438,10.742873,10742.873 +23216,2025-03-09T22:05:53.858170-07:00,1009.2496948242188,10.745442,10745.442 +23217,2025-03-09T22:06:04.604515-07:00,1009.2525634765625,10.746345,10746.345 +23218,2025-03-09T22:06:15.360508-07:00,1009.2575073242188,10.755993,10755.993 +23219,2025-03-09T22:06:26.105620-07:00,1009.2489013671875,10.745112,10745.112 +23220,2025-03-09T22:06:36.848592-07:00,1009.2271118164062,10.742972,10742.972 +23221,2025-03-09T22:06:47.586489-07:00,1009.231689453125,10.737897,10737.897 +23222,2025-03-09T22:06:58.334645-07:00,1009.2415771484375,10.748156,10748.156 +23223,2025-03-09T22:07:09.074723-07:00,1009.239501953125,10.740078,10740.078 +23224,2025-03-09T22:07:19.824558-07:00,1009.224365234375,10.749835,10749.835 +23225,2025-03-09T22:07:30.560100-07:00,1009.2237548828125,10.735542,10735.542 +23226,2025-03-09T22:07:41.310998-07:00,1009.1973266601562,10.750898,10750.898 +23227,2025-03-09T22:07:52.052744-07:00,1009.2312622070312,10.741746,10741.746 +23228,2025-03-09T22:08:02.792542-07:00,1009.201416015625,10.739798,10739.798 +23229,2025-03-09T22:08:13.534778-07:00,1009.2178344726562,10.742236,10742.236 +23230,2025-03-09T22:08:24.288365-07:00,1009.2120361328125,10.753587,10753.587 +23231,2025-03-09T22:08:35.026991-07:00,1009.1921997070312,10.738626,10738.626 +23232,2025-03-09T22:08:45.774796-07:00,1009.2115478515625,10.747805,10747.805 +23233,2025-03-09T22:08:56.523332-07:00,1009.2279663085938,10.748536,10748.536 +23234,2025-03-09T22:09:07.263572-07:00,1009.2245483398438,10.74024,10740.24 +23235,2025-03-09T22:09:18.003490-07:00,1009.200927734375,10.739918,10739.918 +23236,2025-03-09T22:09:28.750697-07:00,1009.2054443359375,10.747207,10747.207 +23237,2025-03-09T22:09:39.499492-07:00,1009.2167358398438,10.748795,10748.795 +23238,2025-03-09T22:09:50.236491-07:00,1009.2015380859375,10.736999,10736.999 +23239,2025-03-09T22:10:00.981486-07:00,1009.2095336914062,10.744995,10744.995 +23240,2025-03-09T22:10:11.721494-07:00,1009.2113037109375,10.740008,10740.008 +23241,2025-03-09T22:10:22.465553-07:00,1009.1876831054688,10.744059,10744.059 +23242,2025-03-09T22:10:33.206680-07:00,1009.2338256835938,10.741127,10741.127 +23243,2025-03-09T22:10:43.950877-07:00,1009.2240600585938,10.744197,10744.197 +23244,2025-03-09T22:10:54.698824-07:00,1009.1875,10.747947,10747.947 +23245,2025-03-09T22:11:05.434718-07:00,1009.194091796875,10.735894,10735.894 +23246,2025-03-09T22:11:16.182682-07:00,1009.2251586914062,10.747964,10747.964 +23247,2025-03-09T22:11:26.921591-07:00,1009.221435546875,10.738909,10738.909 +23248,2025-03-09T22:11:37.665731-07:00,1009.2295532226562,10.74414,10744.14 +23249,2025-03-09T22:11:48.404766-07:00,1009.2445068359375,10.739035,10739.035 +23250,2025-03-09T22:11:59.145693-07:00,1009.22607421875,10.740927,10740.927 +23251,2025-03-09T22:12:09.893493-07:00,1009.2306518554688,10.7478,10747.8 +23252,2025-03-09T22:12:20.632688-07:00,1009.212158203125,10.739195,10739.195 +23253,2025-03-09T22:12:31.375990-07:00,1009.2301635742188,10.743302,10743.302 +23254,2025-03-09T22:12:42.113681-07:00,1009.2318725585938,10.737691,10737.691 +23255,2025-03-09T22:12:52.856490-07:00,1009.2564086914062,10.742809,10742.809 +23256,2025-03-09T22:13:03.594488-07:00,1009.232666015625,10.737998,10737.998 +23257,2025-03-09T22:13:14.334642-07:00,1009.2362670898438,10.740154,10740.154 +23258,2025-03-09T22:13:25.076489-07:00,1009.2442016601562,10.741847,10741.847 +23259,2025-03-09T22:13:46.561748-07:00,1009.2569580078125,21.485259,21485.259 +23260,2025-03-09T22:13:57.308877-07:00,1009.237060546875,10.747129,10747.129 +23261,2025-03-09T22:14:08.050370-07:00,1009.2633056640625,10.741493,10741.493 +23262,2025-03-09T22:14:18.799005-07:00,1009.2860717773438,10.748635,10748.635 +23263,2025-03-09T22:14:29.542726-07:00,1009.2396850585938,10.743721,10743.721 +23264,2025-03-09T22:14:40.284809-07:00,1009.256103515625,10.742083,10742.083 +23265,2025-03-09T22:14:51.033332-07:00,1009.2523193359375,10.748523,10748.523 +23266,2025-03-09T22:15:01.767527-07:00,1009.2474975585938,10.734195,10734.195 +23267,2025-03-09T22:15:12.519488-07:00,1009.240234375,10.751961,10751.961 +23268,2025-03-09T22:15:23.259559-07:00,1009.232177734375,10.740071,10740.071 +23269,2025-03-09T22:15:34.005684-07:00,1009.2549438476562,10.746125,10746.125 +23270,2025-03-09T22:15:44.747693-07:00,1009.2396850585938,10.742009,10742.009 +23271,2025-03-09T22:15:55.488697-07:00,1009.23486328125,10.741004,10741.004 +23272,2025-03-09T22:16:06.229878-07:00,1009.2296142578125,10.741181,10741.181 +23273,2025-03-09T22:16:16.970683-07:00,1009.21923828125,10.740805,10740.805 +23274,2025-03-09T22:16:27.713993-07:00,1009.22900390625,10.74331,10743.31 +23275,2025-03-09T22:16:38.463165-07:00,1009.2223510742188,10.749172,10749.172 +23276,2025-03-09T22:16:49.203520-07:00,1009.2255249023438,10.740355,10740.355 +23277,2025-03-09T22:16:59.942705-07:00,1009.25341796875,10.739185,10739.185 +23278,2025-03-09T22:17:10.684491-07:00,1009.2203369140625,10.741786,10741.786 +23279,2025-03-09T22:17:21.423504-07:00,1009.243408203125,10.739013,10739.013 +23280,2025-03-09T22:17:32.156730-07:00,1009.2349853515625,10.733226,10733.226 +23281,2025-03-09T22:17:42.908656-07:00,1009.22705078125,10.751926,10751.926 +23282,2025-03-09T22:17:53.640234-07:00,1009.1990356445312,10.731578,10731.578 +23283,2025-03-09T22:18:04.386557-07:00,1009.24169921875,10.746323,10746.323 +23284,2025-03-09T22:18:15.116490-07:00,1009.2831420898438,10.729933,10729.933 +23285,2025-03-09T22:18:25.866571-07:00,1009.243408203125,10.750081,10750.081 +23286,2025-03-09T22:18:36.596371-07:00,1009.2189331054688,10.7298,10729.8 +23287,2025-03-09T22:18:47.336660-07:00,1009.2549438476562,10.740289,10740.289 +23288,2025-03-09T22:18:58.073686-07:00,1009.25341796875,10.737026,10737.026 +23289,2025-03-09T22:19:08.822488-07:00,1009.2653198242188,10.748802,10748.802 +23290,2025-03-09T22:19:19.554889-07:00,1009.2489013671875,10.732401,10732.401 +23291,2025-03-09T22:19:30.289590-07:00,1009.237060546875,10.734701,10734.701 +23292,2025-03-09T22:19:41.033493-07:00,1009.2606811523438,10.743903,10743.903 +23293,2025-03-09T22:19:51.771900-07:00,1009.2296142578125,10.738407,10738.407 +23294,2025-03-09T22:20:02.512521-07:00,1009.248046875,10.740621,10740.621 +23295,2025-03-09T22:20:13.251777-07:00,1009.2396850585938,10.739256,10739.256 +23296,2025-03-09T22:20:23.993487-07:00,1009.2349853515625,10.74171,10741.71 +23297,2025-03-09T22:20:34.729702-07:00,1009.1959228515625,10.736215,10736.215 +23298,2025-03-09T22:20:45.460691-07:00,1009.2276000976562,10.730989,10730.989 +23299,2025-03-09T22:20:56.198490-07:00,1009.2739868164062,10.737799,10737.799 +23300,2025-03-09T22:21:06.935482-07:00,1009.2745361328125,10.736992,10736.992 +23301,2025-03-09T22:21:17.682695-07:00,1009.2779541015625,10.747213,10747.213 +23302,2025-03-09T22:21:28.413560-07:00,1009.283203125,10.730865,10730.865 +23303,2025-03-09T22:21:39.151742-07:00,1009.280029296875,10.738182,10738.182 +23304,2025-03-09T22:21:49.883941-07:00,1009.2901000976562,10.732199,10732.199 +23305,2025-03-09T22:22:00.617492-07:00,1009.2806396484375,10.733551,10733.551 +23306,2025-03-09T22:22:11.355521-07:00,1009.272216796875,10.738029,10738.029 +23307,2025-03-09T22:22:22.093821-07:00,1009.3038940429688,10.7383,10738.3 +23308,2025-03-09T22:22:32.834699-07:00,1009.2937622070312,10.740878,10740.878 +23309,2025-03-09T22:22:43.575137-07:00,1009.2988891601562,10.740438,10740.438 +23310,2025-03-09T22:22:54.310488-07:00,1009.3009643554688,10.735351,10735.351 +23311,2025-03-09T22:23:05.049519-07:00,1009.302978515625,10.739031,10739.031 +23312,2025-03-09T22:23:15.785648-07:00,1009.298095703125,10.736129,10736.129 +23313,2025-03-09T22:23:26.529490-07:00,1009.2572021484375,10.743842,10743.842 +23314,2025-03-09T22:23:37.258514-07:00,1009.2623291015625,10.729024,10729.024 +23315,2025-03-09T22:23:48.002519-07:00,1009.275634765625,10.744005,10744.005 +23316,2025-03-09T22:23:58.733704-07:00,1009.2776489257812,10.731185,10731.185 +23317,2025-03-09T22:24:09.472676-07:00,1009.267822265625,10.738972,10738.972 +23318,2025-03-09T22:24:20.212486-07:00,1009.2876586914062,10.73981,10739.81 +23319,2025-03-09T22:24:30.944510-07:00,1009.2664184570312,10.732024,10732.024 +23320,2025-03-09T22:24:41.682688-07:00,1009.27294921875,10.738178,10738.178 +23321,2025-03-09T22:24:52.427498-07:00,1009.255126953125,10.74481,10744.81 +23322,2025-03-09T22:25:03.159965-07:00,1009.2586059570312,10.732467,10732.467 +23323,2025-03-09T22:25:13.900489-07:00,1009.2572021484375,10.740524,10740.524 +23324,2025-03-09T22:25:24.638897-07:00,1009.2637329101562,10.738408,10738.408 +23325,2025-03-09T22:25:35.370487-07:00,1009.2637329101562,10.73159,10731.59 +23326,2025-03-09T22:25:46.116814-07:00,1009.2804565429688,10.746327,10746.327 +23327,2025-03-09T22:25:56.850522-07:00,1009.2738037109375,10.733708,10733.708 +23328,2025-03-09T22:26:07.580671-07:00,1009.2510986328125,10.730149,10730.149 +23329,2025-03-09T22:26:18.318624-07:00,1009.2576293945312,10.737953,10737.953 +23330,2025-03-09T22:26:29.065493-07:00,1009.2510986328125,10.746869,10746.869 +23331,2025-03-09T22:26:39.799487-07:00,1009.2493896484375,10.733994,10733.994 +23332,2025-03-09T22:26:50.539494-07:00,1009.2346801757812,10.740007,10740.007 +23333,2025-03-09T22:27:01.270194-07:00,1009.2531127929688,10.7307,10730.7 +23334,2025-03-09T22:27:12.012706-07:00,1009.231689453125,10.742512,10742.512 +23335,2025-03-09T22:27:22.741545-07:00,1009.2677612304688,10.728839,10728.839 +23336,2025-03-09T22:27:33.477598-07:00,1009.2351684570312,10.736053,10736.053 +23337,2025-03-09T22:27:44.214663-07:00,1009.2516479492188,10.737065,10737.065 +23338,2025-03-09T22:27:54.958684-07:00,1009.2484130859375,10.744021,10744.021 +23339,2025-03-09T22:28:05.695001-07:00,1009.2550659179688,10.736317,10736.317 +23340,2025-03-09T22:28:16.431490-07:00,1009.2371826171875,10.736489,10736.489 +23341,2025-03-09T22:28:27.161527-07:00,1009.20751953125,10.730037,10730.037 +23342,2025-03-09T22:28:37.899489-07:00,1009.2224731445312,10.737962,10737.962 +23343,2025-03-09T22:28:48.643586-07:00,1009.2273559570312,10.744097,10744.097 +23344,2025-03-09T22:28:59.381137-07:00,1009.212646484375,10.737551,10737.551 +23345,2025-03-09T22:29:10.108691-07:00,1009.212646484375,10.727554,10727.554 +23346,2025-03-09T22:29:20.846518-07:00,1009.2259521484375,10.737827,10737.827 +23347,2025-03-09T22:29:31.596560-07:00,1009.2081298828125,10.750042,10750.042 +23348,2025-03-09T22:29:42.329337-07:00,1009.201416015625,10.732777,10732.777 +23349,2025-03-09T22:29:53.069590-07:00,1009.2146606445312,10.740253,10740.253 +23350,2025-03-09T22:30:03.808213-07:00,1009.2279663085938,10.738623,10738.623 +23351,2025-03-09T22:30:14.539728-07:00,1009.191650390625,10.731515,10731.515 +23352,2025-03-09T22:30:25.274643-07:00,1009.2100830078125,10.734915,10734.915 +23353,2025-03-09T22:30:36.010671-07:00,1009.1983032226562,10.736028,10736.028 +23354,2025-03-09T22:30:46.746487-07:00,1009.2379760742188,10.735816,10735.816 +23355,2025-03-09T22:30:57.490490-07:00,1009.2034301757812,10.744003,10744.003 +23356,2025-03-09T22:31:08.224486-07:00,1009.2232666015625,10.733996,10733.996 +23357,2025-03-09T22:31:18.958665-07:00,1009.188720703125,10.734179,10734.179 +23358,2025-03-09T22:31:29.704720-07:00,1009.1788940429688,10.746055,10746.055 +23359,2025-03-09T22:31:40.437585-07:00,1009.1921997070312,10.732865,10732.865 +23360,2025-03-09T22:31:51.179488-07:00,1009.1959228515625,10.741903,10741.903 +23361,2025-03-09T22:32:01.911653-07:00,1009.1893920898438,10.732165,10732.165 +23362,2025-03-09T22:32:12.643830-07:00,1009.1743774414062,10.732177,10732.177 +23363,2025-03-09T22:32:23.380809-07:00,1009.16943359375,10.736979,10736.979 +23364,2025-03-09T22:32:34.113869-07:00,1009.153076171875,10.73306,10733.06 +23365,2025-03-09T22:32:44.850548-07:00,1009.180908203125,10.736679,10736.679 +23366,2025-03-09T22:32:55.585981-07:00,1009.1498413085938,10.735433,10735.433 +23367,2025-03-09T22:33:06.331738-07:00,1009.155029296875,10.745757,10745.757 +23368,2025-03-09T22:33:17.059536-07:00,1009.1631469726562,10.727798,10727.798 +23369,2025-03-09T22:33:27.801648-07:00,1009.1417846679688,10.742112,10742.112 +23370,2025-03-09T22:33:38.535524-07:00,1009.1484375,10.733876,10733.876 +23371,2025-03-09T22:33:49.269722-07:00,1009.1484375,10.734198,10734.198 +23372,2025-03-09T22:34:00.010668-07:00,1009.1668701171875,10.740946,10740.946 +23373,2025-03-09T22:34:10.739573-07:00,1009.15185546875,10.728905,10728.905 +23374,2025-03-09T22:34:21.474677-07:00,1009.1702880859375,10.735104,10735.104 +23375,2025-03-09T22:34:32.217455-07:00,1009.1702880859375,10.742778,10742.778 +23376,2025-03-09T22:34:42.951738-07:00,1009.14892578125,10.734283,10734.283 +23377,2025-03-09T22:34:53.689535-07:00,1009.1621704101562,10.737797,10737.797 +23378,2025-03-09T22:35:04.422139-07:00,1009.1673583984375,10.732604,10732.604 +23379,2025-03-09T22:35:15.162675-07:00,1009.187255859375,10.740536,10740.536 +23380,2025-03-09T22:35:25.894716-07:00,1009.134521484375,10.732041,10732.041 +23381,2025-03-09T22:35:36.634703-07:00,1009.1443481445312,10.739987,10739.987 +23382,2025-03-09T22:35:47.366488-07:00,1009.1278686523438,10.731785,10731.785 +23383,2025-03-09T22:35:58.102487-07:00,1009.1463012695312,10.735999,10735.999 +23384,2025-03-09T22:36:08.841756-07:00,1009.1316528320312,10.739269,10739.269 +23385,2025-03-09T22:36:19.572670-07:00,1009.119873046875,10.730914,10730.914 +23386,2025-03-09T22:36:30.304517-07:00,1009.1383056640625,10.731847,10731.847 +23387,2025-03-09T22:36:41.038787-07:00,1009.1298217773438,10.73427,10734.27 +23388,2025-03-09T22:36:51.784485-07:00,1009.12841796875,10.745698,10745.698 +23389,2025-03-09T22:37:02.523151-07:00,1009.120361328125,10.738666,10738.666 +23390,2025-03-09T22:37:13.261683-07:00,1009.16015625,10.738532,10738.532 +23391,2025-03-09T22:37:23.986490-07:00,1009.1270141601562,10.724807,10724.807 +23392,2025-03-09T22:37:34.730515-07:00,1009.1629638671875,10.744025,10744.025 +23393,2025-03-09T22:37:45.459687-07:00,1009.1238403320312,10.729172,10729.172 +23394,2025-03-09T22:37:56.197246-07:00,1009.1007690429688,10.737559,10737.559 +23395,2025-03-09T22:38:06.936545-07:00,1009.110595703125,10.739299,10739.299 +23396,2025-03-09T22:38:17.669778-07:00,1009.1370239257812,10.733233,10733.233 +23397,2025-03-09T22:38:28.399489-07:00,1009.122314453125,10.729711,10729.711 +23398,2025-03-09T22:38:39.132321-07:00,1009.1157836914062,10.732832,10732.832 +23399,2025-03-09T22:38:49.862698-07:00,1009.1324462890625,10.730377,10730.377 +23400,2025-03-09T22:39:00.600558-07:00,1009.1390380859375,10.73786,10737.86 +23401,2025-03-09T22:39:11.334479-07:00,1009.1177368164062,10.733921,10733.921 +23402,2025-03-09T22:39:22.061541-07:00,1009.1295166015625,10.727062,10727.062 +23403,2025-03-09T22:39:32.797491-07:00,1009.1229858398438,10.73595,10735.95 +23404,2025-03-09T22:39:43.534593-07:00,1009.10498046875,10.737102,10737.102 +23405,2025-03-09T22:39:54.265681-07:00,1009.1264038085938,10.731088,10731.088 +23406,2025-03-09T22:40:04.993490-07:00,1009.144775390625,10.727809,10727.809 +23407,2025-03-09T22:40:15.724694-07:00,1009.1018676757812,10.731204,10731.204 +23408,2025-03-09T22:40:26.466310-07:00,1009.1429443359375,10.741616,10741.616 +23409,2025-03-09T22:40:37.196692-07:00,1009.09716796875,10.730382,10730.382 +23410,2025-03-09T22:40:47.926519-07:00,1009.095458984375,10.729827,10729.827 +23411,2025-03-09T22:40:58.661538-07:00,1009.1087646484375,10.735019,10735.019 +23412,2025-03-09T22:41:09.399668-07:00,1009.1219482421875,10.73813,10738.13 +23413,2025-03-09T22:41:20.123513-07:00,1009.1305541992188,10.723845,10723.845 +23414,2025-03-09T22:41:30.860857-07:00,1009.1207275390625,10.737344,10737.344 +23415,2025-03-09T22:41:41.598676-07:00,1009.1193237304688,10.737819,10737.819 +23416,2025-03-09T22:41:52.323517-07:00,1009.0947875976562,10.724841,10724.841 +23417,2025-03-09T22:42:03.060531-07:00,1009.1509399414062,10.737014,10737.014 +23418,2025-03-09T22:42:13.799627-07:00,1009.1013793945312,10.739096,10739.096 +23419,2025-03-09T22:42:24.529879-07:00,1009.091552734375,10.730252,10730.252 +23420,2025-03-09T22:42:35.256484-07:00,1009.1085815429688,10.726605,10726.605 +23421,2025-03-09T22:42:45.993551-07:00,1009.0953369140625,10.737067,10737.067 +23422,2025-03-09T22:42:56.728995-07:00,1009.1052856445312,10.735444,10735.444 +23423,2025-03-09T22:43:07.453684-07:00,1009.0973510742188,10.724689,10724.689 +23424,2025-03-09T22:43:18.186676-07:00,1009.1138916015625,10.732992,10732.992 +23425,2025-03-09T22:43:28.926491-07:00,1009.0926513671875,10.739815,10739.815 +23426,2025-03-09T22:43:39.655239-07:00,1009.11767578125,10.728748,10728.748 +23427,2025-03-09T22:43:50.385489-07:00,1009.0848388671875,10.73025,10730.25 +23428,2025-03-09T22:44:01.118974-07:00,1009.0848388671875,10.733485,10733.485 +23429,2025-03-09T22:44:11.843559-07:00,1009.0753173828125,10.724585,10724.585 +23430,2025-03-09T22:44:22.582691-07:00,1009.0720825195312,10.739132,10739.132 +23431,2025-03-09T22:44:33.316517-07:00,1009.0853271484375,10.733826,10733.826 +23432,2025-03-09T22:44:44.047640-07:00,1009.0675048828125,10.731123,10731.123 +23433,2025-03-09T22:44:54.776693-07:00,1009.0873413085938,10.729053,10729.053 +23434,2025-03-09T22:45:05.505649-07:00,1009.0859375,10.728956,10728.956 +23435,2025-03-09T22:45:16.231034-07:00,1009.0792236328125,10.725385,10725.385 +23436,2025-03-09T22:45:26.970485-07:00,1009.0892944335938,10.739451,10739.451 +23437,2025-03-09T22:45:37.701673-07:00,1009.0892944335938,10.731188,10731.188 +23438,2025-03-09T22:45:48.428655-07:00,1009.079833984375,10.726982,10726.982 +23439,2025-03-09T22:45:59.168378-07:00,1009.1260986328125,10.739723,10739.723 +23440,2025-03-09T22:46:09.903488-07:00,1009.1096801757812,10.73511,10735.11 +23441,2025-03-09T22:46:20.627751-07:00,1009.1130981445312,10.724263,10724.263 +23442,2025-03-09T22:46:31.360434-07:00,1009.1130981445312,10.732683,10732.683 +23443,2025-03-09T22:46:42.092669-07:00,1009.09033203125,10.732235,10732.235 +23444,2025-03-09T22:46:52.831688-07:00,1009.14013671875,10.739019,10739.019 +23445,2025-03-09T22:47:03.564491-07:00,1009.1221923828125,10.732803,10732.803 +23446,2025-03-09T22:47:14.291535-07:00,1009.1109619140625,10.727044,10727.044 +23447,2025-03-09T22:47:25.022694-07:00,1009.1115112304688,10.731159,10731.159 +23448,2025-03-09T22:47:35.755681-07:00,1009.1181030273438,10.732987,10732.987 +23449,2025-03-09T22:47:46.490895-07:00,1009.1185913085938,10.735214,10735.214 +23450,2025-03-09T22:47:57.224486-07:00,1009.1300659179688,10.733591,10733.591 +23451,2025-03-09T22:48:07.954486-07:00,1009.1668701171875,10.73,10730.0 +23452,2025-03-09T22:48:18.686761-07:00,1009.131103515625,10.732275,10732.275 +23453,2025-03-09T22:48:29.428299-07:00,1009.1383056640625,10.741538,10741.538 +23454,2025-03-09T22:48:40.154496-07:00,1009.1090698242188,10.726197,10726.197 +23455,2025-03-09T22:48:50.890976-07:00,1009.1492919921875,10.73648,10736.48 +23456,2025-03-09T22:49:01.623671-07:00,1009.149658203125,10.732695,10732.695 +23457,2025-03-09T22:49:12.354489-07:00,1009.153564453125,10.730818,10730.818 +23458,2025-03-09T22:49:23.088557-07:00,1009.1707153320312,10.734068,10734.068 +23459,2025-03-09T22:49:33.829642-07:00,1009.12548828125,10.741085,10741.085 +23460,2025-03-09T22:49:44.563740-07:00,1009.1690063476562,10.734098,10734.098 +23461,2025-03-09T22:49:55.290486-07:00,1009.1610717773438,10.726746,10726.746 +23462,2025-03-09T22:50:06.029780-07:00,1009.1568603515625,10.739294,10739.294 +23463,2025-03-09T22:50:16.762674-07:00,1009.1574096679688,10.732894,10732.894 +23464,2025-03-09T22:50:27.493486-07:00,1009.1546630859375,10.730812,10730.812 +23465,2025-03-09T22:50:38.234486-07:00,1009.12060546875,10.741,10741.0 +23466,2025-03-09T22:50:48.966716-07:00,1009.1524047851562,10.73223,10732.23 +23467,2025-03-09T22:50:59.701801-07:00,1009.1660766601562,10.735085,10735.085 +23468,2025-03-09T22:51:10.441023-07:00,1009.1746826171875,10.739222,10739.222 +23469,2025-03-09T22:51:21.173285-07:00,1009.14697265625,10.732262,10732.262 +23470,2025-03-09T22:51:31.901690-07:00,1009.1771240234375,10.728405,10728.405 +23471,2025-03-09T22:51:42.641796-07:00,1009.1213989257812,10.740106,10740.106 +23472,2025-03-09T22:51:53.371483-07:00,1009.1233520507812,10.729687,10729.687 +23473,2025-03-09T22:52:04.099493-07:00,1009.1517333984375,10.72801,10728.01 +23474,2025-03-09T22:52:14.835488-07:00,1009.1680297851562,10.735995,10735.995 +23475,2025-03-09T22:52:25.577619-07:00,1009.163330078125,10.742131,10742.131 +23476,2025-03-09T22:52:36.301520-07:00,1009.1589965820312,10.723901,10723.901 +23477,2025-03-09T22:52:47.043562-07:00,1009.1690063476562,10.742042,10742.042 +23478,2025-03-09T22:52:57.799358-07:00,1009.16748046875,10.755796,10755.796 +23479,2025-03-09T22:53:08.530610-07:00,1009.18408203125,10.731252,10731.252 +23480,2025-03-09T22:53:19.267130-07:00,1009.164306640625,10.73652,10736.52 +23481,2025-03-09T22:53:29.993138-07:00,1009.166259765625,10.726008,10726.008 +23482,2025-03-09T22:53:40.729290-07:00,1009.1529541015625,10.736152,10736.152 +23483,2025-03-09T22:53:51.468895-07:00,1009.17138671875,10.739605,10739.605 +23484,2025-03-09T22:54:02.206195-07:00,1009.204345703125,10.7373,10737.3 +23485,2025-03-09T22:54:12.934238-07:00,1009.1761474609375,10.728043,10728.043 +23486,2025-03-09T22:54:23.670254-07:00,1009.1746826171875,10.736016,10736.016 +23487,2025-03-09T22:54:34.397129-07:00,1009.1761474609375,10.726875,10726.875 +23488,2025-03-09T22:54:45.134294-07:00,1009.1681518554688,10.737165,10737.165 +23489,2025-03-09T22:54:55.863365-07:00,1009.1629638671875,10.729071,10729.071 +23490,2025-03-09T22:55:06.608297-07:00,1009.1549072265625,10.744932,10744.932 +23491,2025-03-09T22:55:17.334409-07:00,1009.1629638671875,10.726112,10726.112 +23492,2025-03-09T22:55:28.061336-07:00,1009.1845092773438,10.726927,10726.927 +23493,2025-03-09T22:55:38.794310-07:00,1009.1497802734375,10.732974,10732.974 +23494,2025-03-09T22:55:49.528858-07:00,1009.1695556640625,10.734548,10734.548 +23495,2025-03-09T22:56:00.256195-07:00,1009.1365356445312,10.727337,10727.337 +23496,2025-03-09T22:56:10.991506-07:00,1009.1515502929688,10.735311,10735.311 +23497,2025-03-09T22:56:21.714205-07:00,1009.11669921875,10.722699,10722.699 +23498,2025-03-09T22:56:32.448349-07:00,1009.1464233398438,10.734144,10734.144 +23499,2025-03-09T22:56:43.182062-07:00,1009.1464233398438,10.733713,10733.713 +23500,2025-03-09T22:56:53.905129-07:00,1009.1331176757812,10.723067,10723.067 +23501,2025-03-09T22:57:04.640133-07:00,1009.1345825195312,10.735004,10735.004 +23502,2025-03-09T22:57:15.380133-07:00,1009.1525268554688,10.74,10740.0 +23503,2025-03-09T22:57:26.104132-07:00,1009.104736328125,10.723999,10723.999 +23504,2025-03-09T22:57:36.842341-07:00,1009.1344604492188,10.738209,10738.209 +23505,2025-03-09T22:57:47.565956-07:00,1009.1212768554688,10.723615,10723.615 +23506,2025-03-09T22:57:58.304301-07:00,1009.1109619140625,10.738345,10738.345 +23507,2025-03-09T22:58:09.040159-07:00,1009.1043090820312,10.735858,10735.858 +23508,2025-03-09T22:58:19.763133-07:00,1009.1369018554688,10.722974,10722.974 +23509,2025-03-09T22:58:30.506369-07:00,1009.14013671875,10.743236,10743.236 +23510,2025-03-09T22:58:41.236244-07:00,1009.12353515625,10.729875,10729.875 +23511,2025-03-09T22:58:51.967132-07:00,1009.13671875,10.730888,10730.888 +23512,2025-03-09T22:59:02.703396-07:00,1009.1201782226562,10.736264,10736.264 +23513,2025-03-09T22:59:13.437436-07:00,1009.1417236328125,10.73404,10734.04 +23514,2025-03-09T22:59:24.170498-07:00,1009.1351318359375,10.733062,10733.062 +23515,2025-03-09T22:59:34.901129-07:00,1009.111572265625,10.730631,10730.631 +23516,2025-03-09T22:59:45.633306-07:00,1009.1199951171875,10.732177,10732.177 +23517,2025-03-09T22:59:56.367320-07:00,1009.1361083984375,10.734014,10734.014 +23518,2025-03-09T23:00:07.103133-07:00,1009.1378784179688,10.735813,10735.813 +23519,2025-03-09T23:00:17.830549-07:00,1009.1473999023438,10.727416,10727.416 +23520,2025-03-09T23:00:28.570317-07:00,1009.1109619140625,10.739768,10739.768 +23521,2025-03-09T23:00:39.302326-07:00,1009.1026000976562,10.732009,10732.009 +23522,2025-03-09T23:00:50.045133-07:00,1009.14697265625,10.742807,10742.807 +23523,2025-03-09T23:01:00.782127-07:00,1009.135498046875,10.736994,10736.994 +23524,2025-03-09T23:01:11.516157-07:00,1009.1171264648438,10.73403,10734.03 +23525,2025-03-09T23:01:22.244365-07:00,1009.1482543945312,10.728208,10728.208 +23526,2025-03-09T23:01:32.986135-07:00,1009.135009765625,10.74177,10741.77 +23527,2025-03-09T23:01:43.721449-07:00,1009.11376953125,10.735314,10735.314 +23528,2025-03-09T23:01:54.450781-07:00,1009.135009765625,10.729332,10729.332 +23529,2025-03-09T23:02:05.191554-07:00,1009.146240234375,10.740773,10740.773 +23530,2025-03-09T23:02:15.927129-07:00,1009.12939453125,10.735575,10735.575 +23531,2025-03-09T23:02:26.655237-07:00,1009.1160888671875,10.728108,10728.108 +23532,2025-03-09T23:02:37.391302-07:00,1009.1392211914062,10.736065,10736.065 +23533,2025-03-09T23:02:48.130315-07:00,1009.1472778320312,10.739013,10739.013 +23534,2025-03-09T23:02:58.858338-07:00,1009.1556396484375,10.728023,10728.023 +23535,2025-03-09T23:03:09.594135-07:00,1009.1453247070312,10.735797,10735.797 +23536,2025-03-09T23:03:20.332390-07:00,1009.1470947265625,10.738255,10738.255 +23537,2025-03-09T23:03:30.651637-07:00,1009.1353149414062,10.319247,10319.247 +23538,2025-03-09T23:03:31.064131-07:00,1009.1419677734375,0.412494,412.494 +23539,2025-03-09T23:03:41.802136-07:00,1009.1434326171875,10.738005,10738.005 +23540,2025-03-09T23:03:52.541130-07:00,1009.1253051757812,10.738994,10738.994 +23541,2025-03-09T23:04:03.276135-07:00,1009.1187744140625,10.735005,10735.005 +23542,2025-03-09T23:04:14.008390-07:00,1009.1300048828125,10.732255,10732.255 +23543,2025-03-09T23:04:24.746134-07:00,1009.1035766601562,10.737744,10737.744 +23544,2025-03-09T23:04:35.489126-07:00,1009.0984497070312,10.742992,10742.992 +23545,2025-03-09T23:04:46.219135-07:00,1009.114501953125,10.730009,10730.009 +23546,2025-03-09T23:04:56.958313-07:00,1009.1096801757812,10.739178,10739.178 +23547,2025-03-09T23:05:18.427328-07:00,1009.1157836914062,21.469015,21469.015 +23548,2025-03-09T23:05:29.164881-07:00,1009.1026000976562,10.737553,10737.553 +23549,2025-03-09T23:05:39.904601-07:00,1009.1040649414062,10.73972,10739.72 +23550,2025-03-09T23:05:50.637234-07:00,1009.1006469726562,10.732633,10732.633 +23551,2025-03-09T23:06:01.363172-07:00,1009.0940551757812,10.725938,10725.938 +23552,2025-03-09T23:06:12.103197-07:00,1009.1265869140625,10.740025,10740.025 +23553,2025-03-09T23:06:22.833587-07:00,1009.1185302734375,10.73039,10730.39 +23554,2025-03-09T23:06:33.572097-07:00,1009.092041015625,10.73851,10738.51 +23555,2025-03-09T23:06:44.305159-07:00,1009.094970703125,10.733062,10733.062 +23556,2025-03-09T23:06:55.038137-07:00,1009.1180419921875,10.732978,10732.978 +23557,2025-03-09T23:07:05.770997-07:00,1009.1212768554688,10.73286,10732.86 +23558,2025-03-09T23:07:16.507177-07:00,1009.0996704101562,10.73618,10736.18 +23559,2025-03-09T23:07:27.237125-07:00,1009.1043090820312,10.729948,10729.948 +23560,2025-03-09T23:07:37.977129-07:00,1009.1126708984375,10.740004,10740.004 +23561,2025-03-09T23:07:48.706571-07:00,1009.1090087890625,10.729442,10729.442 +23562,2025-03-09T23:07:59.449523-07:00,1009.1107788085938,10.742952,10742.952 +23563,2025-03-09T23:08:10.183520-07:00,1009.0984497070312,10.733997,10733.997 +23564,2025-03-09T23:08:20.919133-07:00,1009.1295166015625,10.735613,10735.613 +23565,2025-03-09T23:08:31.657449-07:00,1009.14599609375,10.738316,10738.316 +23566,2025-03-09T23:08:42.389330-07:00,1009.11767578125,10.731881,10731.881 +23567,2025-03-09T23:08:53.123341-07:00,1009.1072387695312,10.734011,10734.011 +23568,2025-03-09T23:09:03.855132-07:00,1009.1024169921875,10.731791,10731.791 +23569,2025-03-09T23:09:14.590553-07:00,1009.08203125,10.735421,10735.421 +23570,2025-03-09T23:09:25.319335-07:00,1009.1163940429688,10.728782,10728.782 +23571,2025-03-09T23:09:36.060131-07:00,1009.1181030273438,10.740796,10740.796 +23572,2025-03-09T23:09:46.793342-07:00,1009.1129760742188,10.733211,10733.211 +23573,2025-03-09T23:09:57.523302-07:00,1009.1257934570312,10.72996,10729.96 +23574,2025-03-09T23:10:08.262156-07:00,1009.0775146484375,10.738854,10738.854 +23575,2025-03-09T23:10:18.996375-07:00,1009.1004638671875,10.734219,10734.219 +23576,2025-03-09T23:10:29.727340-07:00,1009.0887451171875,10.730965,10730.965 +23577,2025-03-09T23:10:40.469305-07:00,1009.0999755859375,10.741965,10741.965 +23578,2025-03-09T23:10:51.206455-07:00,1009.1032104492188,10.73715,10737.15 +23579,2025-03-09T23:11:01.934125-07:00,1009.1127319335938,10.72767,10727.67 +23580,2025-03-09T23:11:12.668133-07:00,1009.1093139648438,10.734008,10734.008 +23581,2025-03-09T23:11:23.411133-07:00,1009.0974731445312,10.743,10743.0 +23582,2025-03-09T23:11:34.140160-07:00,1009.1007690429688,10.729027,10729.027 +23583,2025-03-09T23:11:44.887216-07:00,1009.1007690429688,10.747056,10747.056 +23584,2025-03-09T23:11:45.898943-07:00,1009.083740234375,1.011727,1011.727 +23585,2025-03-09T23:11:55.621133-07:00,1009.1082763671875,9.72219,9722.19 +23586,2025-03-09T23:12:06.357132-07:00,1009.081787109375,10.735999,10735.999 +23587,2025-03-09T23:12:17.084542-07:00,1009.0703125,10.72741,10727.41 +23588,2025-03-09T23:12:27.827270-07:00,1009.0931396484375,10.742728,10742.728 +23589,2025-03-09T23:12:38.561128-07:00,1009.06982421875,10.733858,10733.858 +23590,2025-03-09T23:12:49.294434-07:00,1009.0811157226562,10.733306,10733.306 +23591,2025-03-09T23:13:00.031301-07:00,1009.075927734375,10.736867,10736.867 +23592,2025-03-09T23:13:10.764462-07:00,1009.0692749023438,10.733161,10733.161 +23593,2025-03-09T23:13:21.504169-07:00,1009.0739135742188,10.739707,10739.707 +23594,2025-03-09T23:13:32.232651-07:00,1009.08203125,10.728482,10728.482 +23595,2025-03-09T23:13:42.973337-07:00,1009.0488891601562,10.740686,10740.686 +23596,2025-03-09T23:13:53.699328-07:00,1009.0505981445312,10.725991,10725.991 +23597,2025-03-09T23:14:04.429190-07:00,1009.0388793945312,10.729862,10729.862 +23598,2025-03-09T23:14:15.168135-07:00,1009.03369140625,10.738945,10738.945 +23599,2025-03-09T23:14:25.900108-07:00,1009.0552978515625,10.731973,10731.973 +23600,2025-03-09T23:14:36.639130-07:00,1009.0501708984375,10.739022,10739.022 +23601,2025-03-09T23:14:47.372705-07:00,1009.0700073242188,10.733575,10733.575 +23602,2025-03-09T23:14:58.106365-07:00,1009.0665893554688,10.73366,10733.66 +23603,2025-03-09T23:15:08.842309-07:00,1009.0665893554688,10.735944,10735.944 +23604,2025-03-09T23:15:19.581130-07:00,1009.0401000976562,10.738821,10738.821 +23605,2025-03-09T23:15:30.306129-07:00,1009.0628051757812,10.724999,10724.999 +23606,2025-03-09T23:15:41.042346-07:00,1009.020263671875,10.736217,10736.217 +23607,2025-03-09T23:15:51.777325-07:00,1009.048095703125,10.734979,10734.979 +23608,2025-03-09T23:16:02.517134-07:00,1009.0593872070312,10.739809,10739.809 +23609,2025-03-09T23:16:13.247284-07:00,1009.032958984375,10.73015,10730.15 +23610,2025-03-09T23:16:23.980313-07:00,1008.989990234375,10.733029,10733.029 +23611,2025-03-09T23:16:34.717029-07:00,1009.018310546875,10.736716,10736.716 +23612,2025-03-09T23:16:45.447162-07:00,1009.032958984375,10.730133,10730.133 +23613,2025-03-09T23:16:56.184290-07:00,1009.03955078125,10.737128,10737.128 +23614,2025-03-09T23:17:06.920128-07:00,1009.046142578125,10.735838,10735.838 +23615,2025-03-09T23:17:17.658308-07:00,1009.0064697265625,10.73818,10738.18 +23616,2025-03-09T23:17:28.400159-07:00,1009.0292358398438,10.741851,10741.851 +23617,2025-03-09T23:17:39.137701-07:00,1008.9932861328125,10.737542,10737.542 +23618,2025-03-09T23:17:49.873931-07:00,1008.9932861328125,10.73623,10736.23 +23619,2025-03-09T23:18:00.604255-07:00,1009.0343627929688,10.730324,10730.324 +23620,2025-03-09T23:18:11.343415-07:00,1009.0263061523438,10.73916,10739.16 +23621,2025-03-09T23:18:22.073129-07:00,1008.9984130859375,10.729714,10729.714 +23622,2025-03-09T23:18:32.812344-07:00,1008.986572265625,10.739215,10739.215 +23623,2025-03-09T23:18:43.548203-07:00,1008.9932861328125,10.735859,10735.859 +23624,2025-03-09T23:18:54.279340-07:00,1009.0050048828125,10.731137,10731.137 +23625,2025-03-09T23:19:05.012129-07:00,1009.0116577148438,10.732789,10732.789 +23626,2025-03-09T23:19:15.737370-07:00,1008.9851684570312,10.725241,10725.241 +23627,2025-03-09T23:19:26.472803-07:00,1008.9984130859375,10.735433,10735.433 +23628,2025-03-09T23:19:37.213130-07:00,1008.989990234375,10.740327,10740.327 +23629,2025-03-09T23:19:47.947229-07:00,1009.0116577148438,10.734099,10734.099 +23630,2025-03-09T23:19:58.675125-07:00,1008.9966430664062,10.727896,10727.896 +23631,2025-03-09T23:20:09.412052-07:00,1009.021728515625,10.736927,10736.927 +23632,2025-03-09T23:20:20.140133-07:00,1009.0098266601562,10.728081,10728.081 +23633,2025-03-09T23:20:30.866912-07:00,1009.0003662109375,10.726779,10726.779 +23634,2025-03-09T23:20:41.603999-07:00,1009.0084228515625,10.737087,10737.087 +23635,2025-03-09T23:20:52.338328-07:00,1009.0003662109375,10.734329,10734.329 +23636,2025-03-09T23:21:03.063136-07:00,1008.9824829101562,10.724808,10724.808 +23637,2025-03-09T23:21:13.801299-07:00,1008.9985961914062,10.738163,10738.163 +23638,2025-03-09T23:21:24.532127-07:00,1009.0052490234375,10.730828,10730.828 +23639,2025-03-09T23:21:35.253313-07:00,1008.97412109375,10.721186,10721.186 +23640,2025-03-09T23:21:45.985901-07:00,1008.9807739257812,10.732588,10732.588 +23641,2025-03-09T23:21:56.721193-07:00,1008.9924926757812,10.735292,10735.292 +23642,2025-03-09T23:22:07.448225-07:00,1008.964599609375,10.727032,10727.032 +23643,2025-03-09T23:22:18.178383-07:00,1008.96142578125,10.730158,10730.158 +23644,2025-03-09T23:22:28.909131-07:00,1008.9959106445312,10.730748,10730.748 +23645,2025-03-09T23:22:39.648302-07:00,1008.96484375,10.739171,10739.171 +23646,2025-03-09T23:22:50.379357-07:00,1008.9912719726562,10.731055,10731.055 +23647,2025-03-09T23:23:01.110130-07:00,1008.9781494140625,10.730773,10730.773 +23648,2025-03-09T23:23:11.842342-07:00,1008.9802856445312,10.732212,10732.212 +23649,2025-03-09T23:23:22.579601-07:00,1008.9818115234375,10.737259,10737.259 +23650,2025-03-09T23:23:33.304154-07:00,1008.9522094726562,10.724553,10724.553 +23651,2025-03-09T23:23:44.043130-07:00,1008.9802856445312,10.738976,10738.976 +23652,2025-03-09T23:23:54.774129-07:00,1008.9625244140625,10.730999,10730.999 +23653,2025-03-09T23:24:05.502511-07:00,1008.94921875,10.728382,10728.382 +23654,2025-03-09T23:24:16.235311-07:00,1008.9625244140625,10.7328,10732.8 +23655,2025-03-09T23:24:26.960132-07:00,1008.9408569335938,10.724821,10724.821 +23656,2025-03-09T23:24:37.693357-07:00,1008.959228515625,10.733225,10733.225 +23657,2025-03-09T23:24:46.356441-07:00,1008.9512329101562,8.663084,8663.084 +23658,2025-03-09T23:24:48.429131-07:00,1008.9540405273438,2.07269,2072.69 +23659,2025-03-09T23:24:59.159202-07:00,1008.9276733398438,10.730071,10730.071 +23660,2025-03-09T23:25:09.891203-07:00,1008.9393920898438,10.732001,10732.001 +23661,2025-03-09T23:25:20.624328-07:00,1008.9296264648438,10.733125,10733.125 +23662,2025-03-09T23:25:31.361129-07:00,1008.944580078125,10.736801,10736.801 +23663,2025-03-09T23:25:42.084250-07:00,1008.931396484375,10.723121,10723.121 +23664,2025-03-09T23:25:52.826345-07:00,1008.9296264648438,10.742095,10742.095 +23665,2025-03-09T23:26:03.555132-07:00,1008.9296264648438,10.728787,10728.787 +23666,2025-03-09T23:26:14.284544-07:00,1008.9215698242188,10.729412,10729.412 +23667,2025-03-09T23:26:25.026313-07:00,1008.9296264648438,10.741769,10741.769 +23668,2025-03-09T23:26:35.752133-07:00,1008.9002075195312,10.72582,10725.82 +23669,2025-03-09T23:26:46.492129-07:00,1008.9215698242188,10.739996,10739.996 +23670,2025-03-09T23:26:57.218134-07:00,1008.920166015625,10.726005,10726.005 +23671,2025-03-09T23:27:07.954339-07:00,1008.9281005859375,10.736205,10736.205 +23672,2025-03-09T23:27:18.681653-07:00,1008.9315795898438,10.727314,10727.314 +23673,2025-03-09T23:27:29.419717-07:00,1008.920166015625,10.738064,10738.064 +23674,2025-03-09T23:27:40.148404-07:00,1008.9249877929688,10.728687,10728.687 +23675,2025-03-09T23:27:50.873160-07:00,1008.9068603515625,10.724756,10724.756 +23676,2025-03-09T23:28:01.611127-07:00,1008.9117431640625,10.737967,10737.967 +23677,2025-03-09T23:28:12.343287-07:00,1008.9103393554688,10.73216,10732.16 +23678,2025-03-09T23:28:23.078378-07:00,1008.9249877929688,10.735091,10735.091 +23679,2025-03-09T23:28:33.802135-07:00,1008.8984375,10.723757,10723.757 +23680,2025-03-09T23:28:44.538322-07:00,1008.8970336914062,10.736187,10736.187 +23681,2025-03-09T23:28:55.269927-07:00,1008.9021606445312,10.731605,10731.605 +23682,2025-03-09T23:29:06.001130-07:00,1008.869140625,10.731203,10731.203 +23683,2025-03-09T23:29:16.731349-07:00,1008.8837280273438,10.730219,10730.219 +23684,2025-03-09T23:29:27.464324-07:00,1008.8624877929688,10.732975,10732.975 +23685,2025-03-09T23:29:38.202175-07:00,1008.874267578125,10.737851,10737.851 +23686,2025-03-09T23:29:48.936126-07:00,1008.8809204101562,10.733951,10733.951 +23687,2025-03-09T23:29:59.671345-07:00,1008.8546752929688,10.735219,10735.219 +23688,2025-03-09T23:30:10.403232-07:00,1008.865966796875,10.731887,10731.887 +23689,2025-03-09T23:30:21.134130-07:00,1008.8828735351562,10.730898,10730.898 +23690,2025-03-09T23:30:31.865131-07:00,1008.8895263671875,10.731001,10731.001 +23691,2025-03-09T23:30:42.597317-07:00,1008.876220703125,10.732186,10732.186 +23692,2025-03-09T23:30:53.330133-07:00,1008.8414306640625,10.732816,10732.816 +23693,2025-03-09T23:31:04.070160-07:00,1008.867919921875,10.740027,10740.027 +23694,2025-03-09T23:31:14.808351-07:00,1008.8796997070312,10.738191,10738.191 +23695,2025-03-09T23:31:25.533001-07:00,1008.8877563476562,10.72465,10724.65 +23696,2025-03-09T23:31:36.267163-07:00,1008.8782958984375,10.734162,10734.162 +23697,2025-03-09T23:31:47.002209-07:00,1008.869873046875,10.735046,10735.046 +23698,2025-03-09T23:31:57.735147-07:00,1008.8434448242188,10.732938,10732.938 +23699,2025-03-09T23:32:08.478323-07:00,1008.8948364257812,10.743176,10743.176 +23700,2025-03-09T23:32:19.202316-07:00,1008.9014892578125,10.723993,10723.993 +23701,2025-03-09T23:32:29.937364-07:00,1008.8934326171875,10.735048,10735.048 +23702,2025-03-09T23:32:40.669342-07:00,1008.8948364257812,10.731978,10731.978 +23703,2025-03-09T23:32:51.404896-07:00,1008.9247436523438,10.735554,10735.554 +23704,2025-03-09T23:33:02.136125-07:00,1008.9034423828125,10.731229,10731.229 +23705,2025-03-09T23:33:12.870189-07:00,1008.9247436523438,10.734064,10734.064 +23706,2025-03-09T23:33:23.605321-07:00,1008.8870239257812,10.735132,10735.132 +23707,2025-03-09T23:33:34.341132-07:00,1008.8953857421875,10.735811,10735.811 +23708,2025-03-09T23:33:45.068378-07:00,1008.921875,10.727246,10727.246 +23709,2025-03-09T23:33:55.804351-07:00,1008.8524780273438,10.735973,10735.973 +23710,2025-03-09T23:34:06.540315-07:00,1008.8988037109375,10.735964,10735.964 +23711,2025-03-09T23:34:17.275129-07:00,1008.8973388671875,10.734814,10734.814 +23712,2025-03-09T23:34:28.007132-07:00,1008.8789672851562,10.732003,10732.003 +23713,2025-03-09T23:34:38.737306-07:00,1008.8908081054688,10.730174,10730.174 +23714,2025-03-09T23:34:49.473442-07:00,1008.8973388671875,10.736136,10736.136 +23715,2025-03-09T23:35:00.207178-07:00,1008.8826293945312,10.733736,10733.736 +23716,2025-03-09T23:35:10.937310-07:00,1008.9092407226562,10.730132,10730.132 +23717,2025-03-09T23:35:21.668945-07:00,1008.9007568359375,10.731635,10731.635 +23718,2025-03-09T23:35:32.402194-07:00,1008.9140625,10.733249,10733.249 +23719,2025-03-09T23:35:43.144132-07:00,1008.9073486328125,10.741938,10741.938 +23720,2025-03-09T23:35:53.876132-07:00,1008.8861083984375,10.732,10732.0 +23721,2025-03-09T23:36:04.604222-07:00,1008.91259765625,10.72809,10728.09 +23722,2025-03-09T23:36:15.330357-07:00,1008.8927612304688,10.726135,10726.135 +23723,2025-03-09T23:36:26.066366-07:00,1008.8875122070312,10.736009,10736.009 +23724,2025-03-09T23:36:36.805308-07:00,1008.9059448242188,10.738942,10738.942 +23725,2025-03-09T23:36:47.537130-07:00,1008.91259765625,10.731822,10731.822 +23726,2025-03-09T23:36:58.265157-07:00,1008.9093627929688,10.728027,10728.027 +23727,2025-03-09T23:37:09.006127-07:00,1008.8912353515625,10.74097,10740.97 +23728,2025-03-09T23:37:19.741088-07:00,1008.9110717773438,10.734961,10734.961 +23729,2025-03-09T23:37:30.481457-07:00,1008.930908203125,10.740369,10740.369 +23730,2025-03-09T23:37:41.215334-07:00,1008.9012451171875,10.733877,10733.877 +23731,2025-03-09T23:37:49.307666-07:00,1008.922607421875,8.092332,8092.332 +23732,2025-03-09T23:37:51.944830-07:00,1008.9442138671875,2.637164,2637.164 +23733,2025-03-09T23:38:02.682438-07:00,1008.893310546875,10.737608,10737.608 +23734,2025-03-09T23:38:13.410201-07:00,1008.9263305664062,10.727763,10727.763 +23735,2025-03-09T23:38:24.145131-07:00,1008.924560546875,10.73493,10734.93 +23736,2025-03-09T23:38:34.882365-07:00,1008.9528198242188,10.737234,10737.234 +23737,2025-03-09T23:38:45.621325-07:00,1008.9395141601562,10.73896,10738.96 +23738,2025-03-09T23:38:56.350353-07:00,1008.924560546875,10.729028,10729.028 +23739,2025-03-09T23:39:07.080334-07:00,1008.91796875,10.729981,10729.981 +23740,2025-03-09T23:39:17.813317-07:00,1008.9296875,10.732983,10732.983 +23741,2025-03-09T23:39:28.553284-07:00,1008.9113159179688,10.739967,10739.967 +23742,2025-03-09T23:39:39.281236-07:00,1008.9213256835938,10.727952,10727.952 +23743,2025-03-09T23:39:50.018125-07:00,1008.941162109375,10.736889,10736.889 +23744,2025-03-09T23:40:00.751374-07:00,1008.941162109375,10.733249,10733.249 +23745,2025-03-09T23:40:11.481339-07:00,1008.9195556640625,10.729965,10729.965 +23746,2025-03-09T23:40:22.213139-07:00,1008.9393920898438,10.7318,10731.8 +23747,2025-03-09T23:40:32.945313-07:00,1008.9181518554688,10.732174,10732.174 +23748,2025-03-09T23:40:43.684259-07:00,1008.9152221679688,10.738946,10738.946 +23749,2025-03-09T23:40:54.417132-07:00,1008.9512329101562,10.732873,10732.873 +23750,2025-03-09T23:41:05.152156-07:00,1008.8987426757812,10.735024,10735.024 +23751,2025-03-09T23:41:15.886322-07:00,1008.9152221679688,10.734166,10734.166 +23752,2025-03-09T23:41:26.621197-07:00,1008.9266967773438,10.734875,10734.875 +23753,2025-03-09T23:41:37.341746-07:00,1008.8987426757812,10.720549,10720.549 +23754,2025-03-09T23:41:48.072304-07:00,1008.923828125,10.730558,10730.558 +23755,2025-03-09T23:41:58.807190-07:00,1008.92529296875,10.734886,10734.886 +23756,2025-03-09T23:42:09.537278-07:00,1008.9304809570312,10.730088,10730.088 +23757,2025-03-09T23:42:20.266525-07:00,1008.9088134765625,10.729247,10729.247 +23758,2025-03-09T23:42:31.003219-07:00,1008.9124755859375,10.736694,10736.694 +23759,2025-03-09T23:42:41.728371-07:00,1008.9007568359375,10.725152,10725.152 +23760,2025-03-09T23:42:52.457359-07:00,1008.9191284179688,10.728988,10728.988 +23761,2025-03-09T23:43:03.190132-07:00,1008.9107666015625,10.732773,10732.773 +23762,2025-03-09T23:43:13.923340-07:00,1008.9159545898438,10.733208,10733.208 +23763,2025-03-09T23:43:24.649343-07:00,1008.91455078125,10.726003,10726.003 +23764,2025-03-09T23:43:35.382133-07:00,1008.9325561523438,10.73279,10732.79 +23765,2025-03-09T23:43:46.113131-07:00,1008.9345092773438,10.730998,10730.998 +23766,2025-03-09T23:43:56.837317-07:00,1008.9249877929688,10.724186,10724.186 +23767,2025-03-09T23:44:07.573436-07:00,1008.9468994140625,10.736119,10736.119 +23768,2025-03-09T23:44:18.297132-07:00,1008.930419921875,10.723696,10723.696 +23769,2025-03-09T23:44:29.028322-07:00,1008.927490234375,10.73119,10731.19 +23770,2025-03-09T23:44:39.756345-07:00,1008.9029541015625,10.728023,10728.023 +23771,2025-03-09T23:44:50.486314-07:00,1008.9328002929688,10.729969,10729.969 +23772,2025-03-09T23:45:01.221316-07:00,1008.9266967773438,10.735002,10735.002 +23773,2025-03-09T23:45:11.952161-07:00,1008.9453125,10.730845,10730.845 +23774,2025-03-09T23:45:22.678129-07:00,1008.9293823242188,10.725968,10725.968 +23775,2025-03-09T23:45:33.418284-07:00,1008.928466796875,10.740155,10740.155 +23776,2025-03-09T23:45:44.149192-07:00,1008.90576171875,10.730908,10730.908 +23777,2025-03-09T23:45:54.875130-07:00,1008.9229736328125,10.725938,10725.938 +23778,2025-03-09T23:46:05.604304-07:00,1008.920166015625,10.729174,10729.174 +23779,2025-03-09T23:46:16.337246-07:00,1008.9126586914062,10.732942,10732.942 +23780,2025-03-09T23:46:27.063347-07:00,1008.9329833984375,10.726101,10726.101 +23781,2025-03-09T23:46:37.793330-07:00,1008.9019775390625,10.729983,10729.983 +23782,2025-03-09T23:46:48.520130-07:00,1008.9072875976562,10.7268,10726.8 +23783,2025-03-09T23:46:59.259224-07:00,1008.9059448242188,10.739094,10739.094 +23784,2025-03-09T23:47:09.980836-07:00,1008.8834228515625,10.721612,10721.612 +23785,2025-03-09T23:47:20.717433-07:00,1008.8919677734375,10.736597,10736.597 +23786,2025-03-09T23:47:31.441147-07:00,1008.9056396484375,10.723714,10723.714 +23787,2025-03-09T23:47:42.173908-07:00,1008.8928833007812,10.732761,10732.761 +23788,2025-03-09T23:47:52.900131-07:00,1008.907958984375,10.726223,10726.223 +23789,2025-03-09T23:48:03.638335-07:00,1008.9099731445312,10.738204,10738.204 +23790,2025-03-09T23:48:14.369305-07:00,1008.9104614257812,10.73097,10730.97 +23791,2025-03-09T23:48:25.095130-07:00,1008.90576171875,10.725825,10725.825 +23792,2025-03-09T23:48:35.827134-07:00,1008.92236328125,10.732004,10732.004 +23793,2025-03-09T23:48:46.563271-07:00,1008.9142456054688,10.736137,10736.137 +23794,2025-03-09T23:48:57.287135-07:00,1008.9241943359375,10.723864,10723.864 +23795,2025-03-09T23:49:08.013586-07:00,1008.9393920898438,10.726451,10726.451 +23796,2025-03-09T23:49:18.746953-07:00,1008.9166259765625,10.733367,10733.367 +23797,2025-03-09T23:49:29.472135-07:00,1008.9232788085938,10.725182,10725.182 +23798,2025-03-09T23:49:40.209172-07:00,1008.9199829101562,10.737037,10737.037 +23799,2025-03-09T23:49:50.934158-07:00,1008.9317016601562,10.724986,10724.986 +23800,2025-03-09T23:50:01.667236-07:00,1008.9072875976562,10.733078,10733.078 +23801,2025-03-09T23:50:12.394343-07:00,1008.9351806640625,10.727107,10727.107 +23802,2025-03-09T23:50:23.123133-07:00,1008.927001953125,10.72879,10728.79 +23803,2025-03-09T23:50:33.857130-07:00,1008.912353515625,10.733997,10733.997 +23804,2025-03-09T23:50:44.584386-07:00,1008.9171752929688,10.727256,10727.256 +23805,2025-03-09T23:50:55.315592-07:00,1008.8812255859375,10.731206,10731.206 +23806,2025-03-09T23:51:06.051132-07:00,1008.9025268554688,10.73554,10735.54 +23807,2025-03-09T23:51:16.781535-07:00,1008.8861083984375,10.730403,10730.403 +23808,2025-03-09T23:51:27.511572-07:00,1008.89453125,10.730037,10730.037 +23809,2025-03-09T23:51:38.243300-07:00,1008.9171752929688,10.731728,10731.728 +23810,2025-03-09T23:51:48.968182-07:00,1008.914306640625,10.724882,10724.882 +23811,2025-03-09T23:51:59.699153-07:00,1008.89453125,10.730971,10730.971 +23812,2025-03-09T23:52:10.427344-07:00,1008.9076538085938,10.728191,10728.191 +23813,2025-03-09T23:52:21.151315-07:00,1008.8992919921875,10.723971,10723.971 +23814,2025-03-09T23:52:31.890339-07:00,1008.89453125,10.739024,10739.024 +23815,2025-03-09T23:52:42.609133-07:00,1008.92236328125,10.718794,10718.794 +23816,2025-03-09T23:52:53.346222-07:00,1008.901123046875,10.737089,10737.089 +23817,2025-03-09T23:53:04.103333-07:00,1008.9025268554688,10.757111,10757.111 +23818,2025-03-09T23:53:14.834282-07:00,1008.9171752929688,10.730949,10730.949 +23819,2025-03-09T23:53:25.562023-07:00,1008.8709106445312,10.727741,10727.741 +23820,2025-03-09T23:53:36.295101-07:00,1008.921875,10.733078,10733.078 +23821,2025-03-09T23:53:47.024196-07:00,1008.9138793945312,10.729095,10729.095 +23822,2025-03-09T23:53:57.750173-07:00,1008.887451171875,10.725977,10725.977 +23823,2025-03-09T23:54:08.480105-07:00,1008.87744140625,10.729932,10729.932 +23824,2025-03-09T23:54:19.215507-07:00,1008.8972778320312,10.735402,10735.402 +23825,2025-03-09T23:54:29.946669-07:00,1008.89208984375,10.731162,10731.162 +23826,2025-03-09T23:54:40.674104-07:00,1008.868896484375,10.727435,10727.435 +23827,2025-03-09T23:54:51.403173-07:00,1008.8836059570312,10.729069,10729.069 +23828,2025-03-09T23:55:02.134125-07:00,1008.8916625976562,10.730952,10730.952 +23829,2025-03-09T23:55:12.860325-07:00,1008.9227905273438,10.7262,10726.2 +23830,2025-03-09T23:55:23.593284-07:00,1008.8912353515625,10.732959,10732.959 +23831,2025-03-09T23:55:34.321104-07:00,1008.8929443359375,10.72782,10727.82 +23832,2025-03-09T23:55:45.050851-07:00,1008.8679809570312,10.729747,10729.747 +23833,2025-03-09T23:55:55.789104-07:00,1008.8812255859375,10.738253,10738.253 +23834,2025-03-09T23:56:06.523293-07:00,1008.8844604492188,10.734189,10734.189 +23835,2025-03-09T23:56:17.253146-07:00,1008.89111328125,10.729853,10729.853 +23836,2025-03-09T23:56:27.984257-07:00,1008.8693237304688,10.731111,10731.111 +23837,2025-03-09T23:56:38.708100-07:00,1008.8594360351562,10.723843,10723.843 +23838,2025-03-09T23:56:49.445302-07:00,1008.8641357421875,10.737202,10737.202 +23839,2025-03-09T23:57:00.177100-07:00,1008.8457641601562,10.731798,10731.798 +23840,2025-03-09T23:57:10.908323-07:00,1008.8538208007812,10.731223,10731.223 +23841,2025-03-09T23:57:21.637097-07:00,1008.8306274414062,10.728774,10728.774 +23842,2025-03-09T23:57:32.367310-07:00,1008.8651733398438,10.730213,10730.213 +23843,2025-03-09T23:57:43.098497-07:00,1008.8404541015625,10.731187,10731.187 +23844,2025-03-09T23:57:53.826170-07:00,1008.8583374023438,10.727673,10727.673 +23845,2025-03-09T23:58:04.559132-07:00,1008.85986328125,10.732962,10732.962 +23846,2025-03-09T23:58:15.288279-07:00,1008.849853515625,10.729147,10729.147 +23847,2025-03-09T23:58:26.011663-07:00,1008.8283081054688,10.723384,10723.384 +23848,2025-03-09T23:58:36.741530-07:00,1008.8248291015625,10.729867,10729.867 +23849,2025-03-09T23:58:47.472101-07:00,1008.8262329101562,10.730571,10730.571 +23850,2025-03-09T23:58:58.203103-07:00,1008.834716796875,10.731002,10731.002 +23851,2025-03-09T23:59:08.935103-07:00,1008.8111572265625,10.732,10732.0 +23852,2025-03-09T23:59:19.666421-07:00,1008.8045043945312,10.731318,10731.318 +23853,2025-03-09T23:59:30.401282-07:00,1008.8060302734375,10.734861,10734.861 +23854,2025-03-09T23:59:41.127285-07:00,1008.8290405273438,10.726003,10726.003 +23855,2025-03-09T23:59:51.864516-07:00,1008.8239135742188,10.737231,10737.231 +23856,2025-03-10T00:00:02.596247-07:00,1008.8682861328125,10.731731,10731.731 +23857,2025-03-10T00:00:13.325103-07:00,1008.8204956054688,10.728856,10728.856 +23858,2025-03-10T00:00:24.050697-07:00,1008.79736328125,10.725594,10725.594 +23859,2025-03-10T00:00:34.788103-07:00,1008.8384399414062,10.737406,10737.406 +23860,2025-03-10T00:00:45.516104-07:00,1008.833251953125,10.728001,10728.001 +23861,2025-03-10T00:00:56.245463-07:00,1008.8134155273438,10.729359,10729.359 +23862,2025-03-10T00:01:06.978210-07:00,1008.8099975585938,10.732747,10732.747 +23863,2025-03-10T00:01:17.714101-07:00,1008.8195190429688,10.735891,10735.891 +23864,2025-03-10T00:01:28.448108-07:00,1008.8328247070312,10.734007,10734.007 +23865,2025-03-10T00:01:39.178554-07:00,1008.8228149414062,10.730446,10730.446 +23866,2025-03-10T00:01:49.905097-07:00,1008.816162109375,10.726543,10726.543 +23867,2025-03-10T00:02:00.648578-07:00,1008.82421875,10.743481,10743.481 +23868,2025-03-10T00:02:11.377268-07:00,1008.8375244140625,10.72869,10728.69 +23869,2025-03-10T00:02:22.108356-07:00,1008.8343505859375,10.731088,10731.088 +23870,2025-03-10T00:02:32.844096-07:00,1008.845703125,10.73574,10735.74 +23871,2025-03-10T00:02:43.571279-07:00,1008.84716796875,10.727183,10727.183 +23872,2025-03-10T00:02:54.303393-07:00,1008.84716796875,10.732114,10732.114 +23873,2025-03-10T00:03:05.039103-07:00,1008.837158203125,10.73571,10735.71 +23874,2025-03-10T00:03:15.773513-07:00,1008.83203125,10.73441,10734.41 +23875,2025-03-10T00:03:26.500948-07:00,1008.8635864257812,10.727435,10727.435 +23876,2025-03-10T00:03:37.240205-07:00,1008.84033203125,10.739257,10739.257 +23877,2025-03-10T00:03:47.969100-07:00,1008.8630981445312,10.728895,10728.895 +23878,2025-03-10T00:03:58.709181-07:00,1008.838134765625,10.740081,10740.081 +23879,2025-03-10T00:04:09.442804-07:00,1008.8611450195312,10.733623,10733.623 +23880,2025-03-10T00:04:20.178103-07:00,1008.8295288085938,10.735299,10735.299 +23881,2025-03-10T00:04:30.910291-07:00,1008.8492431640625,10.732188,10732.188 +23882,2025-03-10T00:04:41.644321-07:00,1008.8506469726562,10.73403,10734.03 +23883,2025-03-10T00:04:52.373303-07:00,1008.8619384765625,10.728982,10728.982 +23884,2025-03-10T00:05:03.110154-07:00,1008.8714599609375,10.736851,10736.851 +23885,2025-03-10T00:05:13.848123-07:00,1008.8646850585938,10.737969,10737.969 +23886,2025-03-10T00:05:24.586252-07:00,1008.826416015625,10.738129,10738.129 +23887,2025-03-10T00:05:35.313476-07:00,1008.8297119140625,10.727224,10727.224 +23888,2025-03-10T00:05:46.048125-07:00,1008.8409423828125,10.734649,10734.649 +23889,2025-03-10T00:05:56.785558-07:00,1008.8504638671875,10.737433,10737.433 +23890,2025-03-10T00:06:07.518293-07:00,1008.8616943359375,10.732735,10732.735 +23891,2025-03-10T00:06:18.245135-07:00,1008.8367309570312,10.726842,10726.842 +23892,2025-03-10T00:06:28.978257-07:00,1008.8465576171875,10.733122,10733.122 +23893,2025-03-10T00:06:39.710271-07:00,1008.818115234375,10.732014,10732.014 +23894,2025-03-10T00:06:50.438568-07:00,1008.8375244140625,10.728297,10728.297 +23895,2025-03-10T00:07:01.168195-07:00,1008.8209228515625,10.729627,10729.627 +23896,2025-03-10T00:07:11.903222-07:00,1008.8370361328125,10.735027,10735.027 +23897,2025-03-10T00:07:22.635258-07:00,1008.8189086914062,10.732036,10732.036 +23898,2025-03-10T00:07:33.364103-07:00,1008.8549194335938,10.728845,10728.845 +23899,2025-03-10T00:07:44.104104-07:00,1008.8170166015625,10.740001,10740.001 +23900,2025-03-10T00:07:54.836276-07:00,1008.78857421875,10.732172,10732.172 +23901,2025-03-10T00:08:05.570099-07:00,1008.7782592773438,10.733823,10733.823 +23902,2025-03-10T00:08:16.298190-07:00,1008.8309326171875,10.728091,10728.091 +23903,2025-03-10T00:08:27.035680-07:00,1008.8206176757812,10.73749,10737.49 +23904,2025-03-10T00:08:37.771371-07:00,1008.795654296875,10.735691,10735.691 +23905,2025-03-10T00:08:48.501137-07:00,1008.7841186523438,10.729766,10729.766 +23906,2025-03-10T00:08:59.242285-07:00,1008.806884765625,10.741148,10741.148 +23907,2025-03-10T00:09:09.968306-07:00,1008.7738037109375,10.726021,10726.021 +23908,2025-03-10T00:09:20.702256-07:00,1008.7835693359375,10.73395,10733.95 +23909,2025-03-10T00:09:31.444129-07:00,1008.79345703125,10.741873,10741.873 +23910,2025-03-10T00:09:42.179110-07:00,1008.794921875,10.734981,10734.981 +23911,2025-03-10T00:09:52.907440-07:00,1008.7848510742188,10.72833,10728.33 +23912,2025-03-10T00:10:03.646251-07:00,1008.7915649414062,10.738811,10738.811 +23913,2025-03-10T00:10:14.383303-07:00,1008.8046875,10.737052,10737.052 +23914,2025-03-10T00:10:25.112152-07:00,1008.7863159179688,10.728849,10728.849 +23915,2025-03-10T00:10:33.099941-07:00,1008.7745361328125,7.987789,7987.789 +23916,2025-03-10T00:10:35.851320-07:00,1008.7664794921875,2.751379,2751.379 +23917,2025-03-10T00:10:46.585132-07:00,1008.78955078125,10.733812,10733.812 +23918,2025-03-10T00:10:57.310166-07:00,1008.7578735351562,10.725034,10725.034 +23919,2025-03-10T00:11:08.055129-07:00,1008.7938842773438,10.744963,10744.963 +23920,2025-03-10T00:11:18.785502-07:00,1008.7806396484375,10.730373,10730.373 +23921,2025-03-10T00:11:29.520162-07:00,1008.7645263671875,10.73466,10734.66 +23922,2025-03-10T00:11:40.250356-07:00,1008.74755859375,10.730194,10730.194 +23923,2025-03-10T00:11:50.987103-07:00,1008.736083984375,10.736747,10736.747 +23924,2025-03-10T00:12:01.722285-07:00,1008.7525024414062,10.735182,10735.182 +23925,2025-03-10T00:12:12.459123-07:00,1008.7525024414062,10.736838,10736.838 +23926,2025-03-10T00:12:23.183127-07:00,1008.719482421875,10.724004,10724.004 +23927,2025-03-10T00:12:33.925282-07:00,1008.7179565429688,10.742155,10742.155 +23928,2025-03-10T00:12:44.651095-07:00,1008.7459106445312,10.725813,10725.813 +23929,2025-03-10T00:12:55.389200-07:00,1008.7047729492188,10.738105,10738.105 +23930,2025-03-10T00:13:06.121104-07:00,1008.6881103515625,10.731904,10731.904 +23931,2025-03-10T00:13:16.859156-07:00,1008.7410888671875,10.738052,10738.052 +23932,2025-03-10T00:13:27.589985-07:00,1008.6749267578125,10.730829,10730.829 +23933,2025-03-10T00:13:38.331109-07:00,1008.701416015625,10.741124,10741.124 +23934,2025-03-10T00:13:49.059280-07:00,1008.7079467773438,10.728171,10728.171 +23935,2025-03-10T00:13:59.800285-07:00,1008.7028198242188,10.741005,10741.005 +23936,2025-03-10T00:14:10.531873-07:00,1008.6947631835938,10.731588,10731.588 +23937,2025-03-10T00:14:21.268259-07:00,1008.716064453125,10.736386,10736.386 +23938,2025-03-10T00:14:31.995103-07:00,1008.6815795898438,10.726844,10726.844 +23939,2025-03-10T00:14:42.732563-07:00,1008.6829833984375,10.73746,10737.46 +23940,2025-03-10T00:14:53.472156-07:00,1008.6976318359375,10.739593,10739.593 +23941,2025-03-10T00:15:04.203305-07:00,1008.6895141601562,10.731149,10731.149 +23942,2025-03-10T00:15:14.932332-07:00,1008.70947265625,10.729027,10729.027 +23943,2025-03-10T00:15:25.667273-07:00,1008.6815795898438,10.734941,10734.941 +23944,2025-03-10T00:15:36.402101-07:00,1008.6895141601562,10.734828,10734.828 +23945,2025-03-10T00:15:47.135232-07:00,1008.7028198242188,10.733131,10733.131 +23946,2025-03-10T00:15:57.866280-07:00,1008.6881103515625,10.731048,10731.048 +23947,2025-03-10T00:16:08.601190-07:00,1008.6881103515625,10.73491,10734.91 +23948,2025-03-10T00:16:19.335134-07:00,1008.7128295898438,10.733944,10733.944 +23949,2025-03-10T00:16:30.066292-07:00,1008.6864013671875,10.731158,10731.158 +23950,2025-03-10T00:16:40.800493-07:00,1008.6881103515625,10.734201,10734.201 +23951,2025-03-10T00:16:51.528161-07:00,1008.6864013671875,10.727668,10727.668 +23952,2025-03-10T00:17:02.258149-07:00,1008.6797485351562,10.729988,10729.988 +23953,2025-03-10T00:17:12.999104-07:00,1008.6849365234375,10.740955,10740.955 +23954,2025-03-10T00:17:23.727464-07:00,1008.68310546875,10.72836,10728.36 +23955,2025-03-10T00:17:34.458767-07:00,1008.669921875,10.731303,10731.303 +23956,2025-03-10T00:17:45.188221-07:00,1008.6765747070312,10.729454,10729.454 +23957,2025-03-10T00:17:55.927179-07:00,1008.6748657226562,10.738958,10738.958 +23958,2025-03-10T00:18:06.661100-07:00,1008.67333984375,10.733921,10733.921 +23959,2025-03-10T00:18:17.390395-07:00,1008.67333984375,10.729295,10729.295 +23960,2025-03-10T00:18:28.129130-07:00,1008.666748046875,10.738735,10738.735 +23961,2025-03-10T00:18:38.866286-07:00,1008.6837768554688,10.737156,10737.156 +23962,2025-03-10T00:18:49.590102-07:00,1008.70361328125,10.723816,10723.816 +23963,2025-03-10T00:19:00.323298-07:00,1008.665771484375,10.733196,10733.196 +23964,2025-03-10T00:19:11.060277-07:00,1008.667236328125,10.736979,10736.979 +23965,2025-03-10T00:19:21.793105-07:00,1008.6738891601562,10.732828,10732.828 +23966,2025-03-10T00:19:32.525130-07:00,1008.6375732421875,10.732025,10732.025 +23967,2025-03-10T00:19:43.262275-07:00,1008.652587890625,10.737145,10737.145 +23968,2025-03-10T00:19:53.989460-07:00,1008.6375732421875,10.727185,10727.185 +23969,2025-03-10T00:20:04.725282-07:00,1008.6559448242188,10.735822,10735.822 +23970,2025-03-10T00:20:15.461400-07:00,1008.67578125,10.736118,10736.118 +23971,2025-03-10T00:20:26.187079-07:00,1008.6593627929688,10.725679,10725.679 +23972,2025-03-10T00:20:36.921187-07:00,1008.6858520507812,10.734108,10734.108 +23973,2025-03-10T00:20:47.659254-07:00,1008.6743774414062,10.738067,10738.067 +23974,2025-03-10T00:20:58.383268-07:00,1008.643310546875,10.724014,10724.014 +23975,2025-03-10T00:21:09.120354-07:00,1008.643310546875,10.737086,10737.086 +23976,2025-03-10T00:21:19.843103-07:00,1008.674560546875,10.722749,10722.749 +23977,2025-03-10T00:21:30.581305-07:00,1008.6812744140625,10.738202,10738.202 +23978,2025-03-10T00:21:41.310096-07:00,1008.6995849609375,10.728791,10728.791 +23979,2025-03-10T00:21:52.046103-07:00,1008.6651000976562,10.736007,10736.007 +23980,2025-03-10T00:22:02.777170-07:00,1008.7062377929688,10.731067,10731.067 +23981,2025-03-10T00:22:13.504129-07:00,1008.7095947265625,10.726959,10726.959 +23982,2025-03-10T00:22:24.230376-07:00,1008.66845703125,10.726247,10726.247 +23983,2025-03-10T00:22:34.970449-07:00,1008.635498046875,10.740073,10740.073 +23984,2025-03-10T00:22:45.692806-07:00,1008.6868896484375,10.722357,10722.357 +23985,2025-03-10T00:22:56.424332-07:00,1008.6670532226562,10.731526,10731.526 +23986,2025-03-10T00:23:07.158830-07:00,1008.650634765625,10.734498,10734.498 +23987,2025-03-10T00:23:17.898336-07:00,1008.6788330078125,10.739506,10739.506 +23988,2025-03-10T00:23:28.622398-07:00,1008.6802978515625,10.724062,10724.062 +23989,2025-03-10T00:23:39.354264-07:00,1008.64111328125,10.731866,10731.866 +23990,2025-03-10T00:23:50.094369-07:00,1008.650634765625,10.740105,10740.105 +23991,2025-03-10T00:24:00.820131-07:00,1008.663818359375,10.725762,10725.762 +23992,2025-03-10T00:24:11.545101-07:00,1008.6543579101562,10.72497,10724.97 +23993,2025-03-10T00:24:22.284263-07:00,1008.6278076171875,10.739162,10739.162 +23994,2025-03-10T00:24:33.016141-07:00,1008.6592407226562,10.731878,10731.878 +23995,2025-03-10T00:24:43.741222-07:00,1008.6312255859375,10.725081,10725.081 +23996,2025-03-10T00:24:54.478554-07:00,1008.6298217773438,10.737332,10737.332 +23997,2025-03-10T00:25:05.206219-07:00,1008.6280517578125,10.727665,10727.665 +23998,2025-03-10T00:25:15.934616-07:00,1008.606689453125,10.728397,10728.397 +23999,2025-03-10T00:25:26.663694-07:00,1008.649658203125,10.729078,10729.078 +24000,2025-03-10T00:25:37.394101-07:00,1008.6134643554688,10.730407,10730.407 +24001,2025-03-10T00:25:48.133313-07:00,1008.63330078125,10.739212,10739.212 +24002,2025-03-10T00:25:58.865287-07:00,1008.6317749023438,10.731974,10731.974 +24003,2025-03-10T00:26:09.592232-07:00,1008.6234130859375,10.726945,10726.945 +24004,2025-03-10T00:26:20.321133-07:00,1008.6035766601562,10.728901,10728.901 +24005,2025-03-10T00:26:31.057103-07:00,1008.6300048828125,10.73597,10735.97 +24006,2025-03-10T00:26:41.783130-07:00,1008.6006469726562,10.726027,10726.027 +24007,2025-03-10T00:26:52.511358-07:00,1008.6337280273438,10.728228,10728.228 +24008,2025-03-10T00:27:03.250437-07:00,1008.60546875,10.739079,10739.079 +24009,2025-03-10T00:27:13.971100-07:00,1008.6121826171875,10.720663,10720.663 +24010,2025-03-10T00:27:24.705110-07:00,1008.5974731445312,10.73401,10734.01 +24011,2025-03-10T00:27:35.432131-07:00,1008.6091918945312,10.727021,10727.021 +24012,2025-03-10T00:27:46.167436-07:00,1008.6011962890625,10.735305,10735.305 +24013,2025-03-10T00:27:56.902097-07:00,1008.6112670898438,10.734661,10734.661 +24014,2025-03-10T00:28:07.628328-07:00,1008.599365234375,10.726231,10726.231 +24015,2025-03-10T00:28:18.372301-07:00,1008.5965576171875,10.743973,10743.973 +24016,2025-03-10T00:28:29.105192-07:00,1008.5914306640625,10.732891,10732.891 +24017,2025-03-10T00:28:39.831300-07:00,1008.5965576171875,10.726108,10726.108 +24018,2025-03-10T00:28:50.563121-07:00,1008.6013793945312,10.731821,10731.821 +24019,2025-03-10T00:29:01.293241-07:00,1008.5918579101562,10.73012,10730.12 +24020,2025-03-10T00:29:12.036101-07:00,1008.63623046875,10.74286,10742.86 +24021,2025-03-10T00:29:22.760322-07:00,1008.5967407226562,10.724221,10724.221 +24022,2025-03-10T00:29:33.497277-07:00,1008.5901489257812,10.736955,10736.955 +24023,2025-03-10T00:29:44.234100-07:00,1008.5967407226562,10.736823,10736.823 +24024,2025-03-10T00:29:54.964098-07:00,1008.5953369140625,10.729998,10729.998 +24025,2025-03-10T00:30:05.703101-07:00,1008.5806274414062,10.739003,10739.003 +24026,2025-03-10T00:30:16.434483-07:00,1008.6018676757812,10.731382,10731.382 +24027,2025-03-10T00:30:27.165857-07:00,1008.578857421875,10.731374,10731.374 +24028,2025-03-10T00:30:37.896819-07:00,1008.6038208007812,10.730962,10730.962 +24029,2025-03-10T00:30:48.636278-07:00,1008.58251953125,10.739459,10739.459 +24030,2025-03-10T00:30:59.365241-07:00,1008.5986938476562,10.728963,10728.963 +24031,2025-03-10T00:31:10.103134-07:00,1008.587646484375,10.737893,10737.893 +24032,2025-03-10T00:31:20.828103-07:00,1008.5845336914062,10.724969,10724.969 +24033,2025-03-10T00:31:31.558237-07:00,1008.5982666015625,10.730134,10730.134 +24034,2025-03-10T00:31:42.295104-07:00,1008.60498046875,10.736867,10736.867 +24035,2025-03-10T00:31:53.027097-07:00,1008.600830078125,10.731993,10731.993 +24036,2025-03-10T00:32:03.753288-07:00,1008.6312255859375,10.726191,10726.191 +24037,2025-03-10T00:32:14.487371-07:00,1008.5792846679688,10.734083,10734.083 +24038,2025-03-10T00:32:25.220101-07:00,1008.6143188476562,10.73273,10732.73 +24039,2025-03-10T00:32:35.956535-07:00,1008.588134765625,10.736434,10736.434 +24040,2025-03-10T00:32:46.683211-07:00,1008.5574951171875,10.726676,10726.676 +24041,2025-03-10T00:32:57.413133-07:00,1008.5585327148438,10.729922,10729.922 +24042,2025-03-10T00:33:08.151288-07:00,1008.5638427734375,10.738155,10738.155 +24043,2025-03-10T00:33:18.873101-07:00,1008.5398559570312,10.721813,10721.813 +24044,2025-03-10T00:33:29.610134-07:00,1008.5634155273438,10.737033,10737.033 +24045,2025-03-10T00:33:40.331341-07:00,1008.5673217773438,10.721207,10721.207 +24046,2025-03-10T00:33:51.061103-07:00,1008.5617065429688,10.729762,10729.762 +24047,2025-03-10T00:34:01.791095-07:00,1008.533935546875,10.729992,10729.992 +24048,2025-03-10T00:34:12.524363-07:00,1008.5216674804688,10.733268,10733.268 +24049,2025-03-10T00:34:23.260682-07:00,1008.5254516601562,10.736319,10736.319 +24050,2025-03-10T00:34:33.983105-07:00,1008.5242309570312,10.722423,10722.423 +24051,2025-03-10T00:34:44.720410-07:00,1008.53125,10.737305,10737.305 +24052,2025-03-10T00:34:55.449224-07:00,1008.5250854492188,10.728814,10728.814 +24053,2025-03-10T00:35:06.184333-07:00,1008.5172119140625,10.735109,10735.109 +24054,2025-03-10T00:35:16.907587-07:00,1008.556884765625,10.723254,10723.254 +24055,2025-03-10T00:35:27.641102-07:00,1008.5426635742188,10.733515,10733.515 +24056,2025-03-10T00:35:38.375101-07:00,1008.5379638671875,10.733999,10733.999 +24057,2025-03-10T00:35:49.102129-07:00,1008.5087280273438,10.727028,10727.028 +24058,2025-03-10T00:35:59.834129-07:00,1008.5304565429688,10.732,10732.0 +24059,2025-03-10T00:36:10.558114-07:00,1008.5028076171875,10.723985,10723.985 +24060,2025-03-10T00:36:21.294604-07:00,1008.5245361328125,10.73649,10736.49 +24061,2025-03-10T00:36:32.026298-07:00,1008.4589233398438,10.731694,10731.694 +24062,2025-03-10T00:36:42.762633-07:00,1008.528564453125,10.736335,10736.335 +24063,2025-03-10T00:36:53.492169-07:00,1008.537109375,10.729536,10729.536 +24064,2025-03-10T00:37:04.224491-07:00,1008.5059204101562,10.732322,10732.322 +24065,2025-03-10T00:37:14.954124-07:00,1008.51123046875,10.729633,10729.633 +24066,2025-03-10T00:37:25.687517-07:00,1008.5145874023438,10.733393,10733.393 +24067,2025-03-10T00:37:36.425125-07:00,1008.5018920898438,10.737608,10737.608 +24068,2025-03-10T00:37:47.156316-07:00,1008.5201416015625,10.731191,10731.191 +24069,2025-03-10T00:37:57.886100-07:00,1008.49560546875,10.729784,10729.784 +24070,2025-03-10T00:38:08.615102-07:00,1008.4857788085938,10.729002,10729.002 +24071,2025-03-10T00:38:19.350949-07:00,1008.5306396484375,10.735847,10735.847 +24072,2025-03-10T00:38:30.080651-07:00,1008.506103515625,10.729702,10729.702 +24073,2025-03-10T00:38:40.812282-07:00,1008.4946899414062,10.731631,10731.631 +24074,2025-03-10T00:38:51.554548-07:00,1008.5116577148438,10.742266,10742.266 +24075,2025-03-10T00:39:02.285261-07:00,1008.4951782226562,10.730713,10730.713 +24076,2025-03-10T00:39:13.012236-07:00,1008.478759765625,10.726975,10726.975 +24077,2025-03-10T00:39:23.750103-07:00,1008.4806518554688,10.737867,10737.867 +24078,2025-03-10T00:39:34.477129-07:00,1008.4923706054688,10.727026,10727.026 +24079,2025-03-10T00:39:45.208103-07:00,1008.490966796875,10.730974,10730.974 +24080,2025-03-10T00:39:55.936307-07:00,1008.4876708984375,10.728204,10728.204 +24081,2025-03-10T00:40:06.672347-07:00,1008.5045166015625,10.73604,10736.04 +24082,2025-03-10T00:40:17.402123-07:00,1008.488037109375,10.729776,10729.776 +24083,2025-03-10T00:40:28.135304-07:00,1008.4913940429688,10.733181,10733.181 +24084,2025-03-10T00:40:38.865291-07:00,1008.4635009765625,10.729987,10729.987 +24085,2025-03-10T00:40:49.596130-07:00,1008.4390869140625,10.730839,10730.839 +24086,2025-03-10T00:41:00.325281-07:00,1008.4837646484375,10.729151,10729.151 +24087,2025-03-10T00:41:11.062278-07:00,1008.4951782226562,10.736997,10736.997 +24088,2025-03-10T00:41:21.796128-07:00,1008.4423217773438,10.73385,10733.85 +24089,2025-03-10T00:41:32.522101-07:00,1008.46875,10.725973,10725.973 +24090,2025-03-10T00:41:43.263211-07:00,1008.4536743164062,10.74111,10741.11 +24091,2025-03-10T00:41:53.991442-07:00,1008.4503173828125,10.728231,10728.231 +24092,2025-03-10T00:42:04.719097-07:00,1008.4517211914062,10.727655,10727.655 +24093,2025-03-10T00:42:15.444281-07:00,1008.4710693359375,10.725184,10725.184 +24094,2025-03-10T00:42:26.175103-07:00,1008.4757690429688,10.730822,10730.822 +24095,2025-03-10T00:42:36.910171-07:00,1008.4503784179688,10.735068,10735.068 +24096,2025-03-10T00:42:47.636374-07:00,1008.4437255859375,10.726203,10726.203 +24097,2025-03-10T00:42:58.368097-07:00,1008.4367065429688,10.731723,10731.723 +24098,2025-03-10T00:43:09.100103-07:00,1008.4347534179688,10.732006,10732.006 +24099,2025-03-10T00:43:19.826284-07:00,1008.4556274414062,10.726181,10726.181 +24100,2025-03-10T00:43:30.558103-07:00,1008.4221801757812,10.731819,10731.819 +24101,2025-03-10T00:43:41.290129-07:00,1008.4334106445312,10.732026,10732.026 +24102,2025-03-10T00:43:52.025098-07:00,1008.4578247070312,10.734969,10734.969 +24103,2025-03-10T00:44:02.756127-07:00,1008.4343872070312,10.731029,10731.029 +24104,2025-03-10T00:44:13.486111-07:00,1008.4537353515625,10.729984,10729.984 +24105,2025-03-10T00:44:24.215515-07:00,1008.4423217773438,10.729404,10729.404 +24106,2025-03-10T00:44:34.949418-07:00,1008.4254150390625,10.733903,10733.903 +24107,2025-03-10T00:44:45.680391-07:00,1008.4271850585938,10.730973,10730.973 +24108,2025-03-10T00:44:56.406236-07:00,1008.4173583984375,10.725845,10725.845 +24109,2025-03-10T00:45:07.139334-07:00,1008.392333984375,10.733098,10733.098 +24110,2025-03-10T00:45:17.865101-07:00,1008.3909301757812,10.725767,10725.767 +24111,2025-03-10T00:45:28.600290-07:00,1008.4107666015625,10.735189,10735.189 +24112,2025-03-10T00:45:39.323307-07:00,1008.4320068359375,10.723017,10723.017 +24113,2025-03-10T00:45:50.056103-07:00,1008.3894653320312,10.732796,10732.796 +24114,2025-03-10T00:46:00.793061-07:00,1008.4092407226562,10.736958,10736.958 +24115,2025-03-10T00:46:11.522173-07:00,1008.381103515625,10.729112,10729.112 +24116,2025-03-10T00:46:22.242214-07:00,1008.3744506835938,10.720041,10720.041 +24117,2025-03-10T00:46:32.975299-07:00,1008.381103515625,10.733085,10733.085 +24118,2025-03-10T00:46:43.707102-07:00,1008.4140625,10.731803,10731.803 +24119,2025-03-10T00:46:54.429816-07:00,1008.4041137695312,10.722714,10722.714 +24120,2025-03-10T00:47:05.165266-07:00,1008.377685546875,10.73545,10735.45 +24121,2025-03-10T00:47:15.891129-07:00,1008.3828125,10.725863,10725.863 +24122,2025-03-10T00:47:26.620135-07:00,1008.376220703125,10.729006,10729.006 +24123,2025-03-10T00:47:37.348896-07:00,1008.377685546875,10.728761,10728.761 +24124,2025-03-10T00:47:48.087259-07:00,1008.359375,10.738363,10738.363 +24125,2025-03-10T00:47:58.810113-07:00,1008.359375,10.722854,10722.854 +24126,2025-03-10T00:48:09.540918-07:00,1008.3677368164062,10.730805,10730.805 +24127,2025-03-10T00:48:20.272209-07:00,1008.361083984375,10.731291,10731.291 +24128,2025-03-10T00:48:30.999283-07:00,1008.34130859375,10.727074,10727.074 +24129,2025-03-10T00:48:41.730100-07:00,1008.357421875,10.730817,10730.817 +24130,2025-03-10T00:48:52.457283-07:00,1008.3507690429688,10.727183,10727.183 +24131,2025-03-10T00:49:03.191302-07:00,1008.3474731445312,10.734019,10734.019 +24132,2025-03-10T00:49:13.917205-07:00,1008.3638916015625,10.725903,10725.903 +24133,2025-03-10T00:49:24.651174-07:00,1008.3638916015625,10.733969,10733.969 +24134,2025-03-10T00:49:35.379314-07:00,1008.3682861328125,10.72814,10728.14 +24135,2025-03-10T00:49:46.109565-07:00,1008.3484497070312,10.730251,10730.251 +24136,2025-03-10T00:49:56.850097-07:00,1008.3517456054688,10.740532,10740.532 +24137,2025-03-10T00:50:07.584261-07:00,1008.3597412109375,10.734164,10734.164 +24138,2025-03-10T00:50:18.310505-07:00,1008.3662719726562,10.726244,10726.244 +24139,2025-03-10T00:50:29.040654-07:00,1008.361083984375,10.730149,10730.149 +24140,2025-03-10T00:50:39.772263-07:00,1008.3427124023438,10.731609,10731.609 +24141,2025-03-10T00:50:50.509321-07:00,1008.326171875,10.737058,10737.058 +24142,2025-03-10T00:51:01.239101-07:00,1008.32763671875,10.72978,10729.78 +24143,2025-03-10T00:51:11.970102-07:00,1008.3521118164062,10.731001,10731.001 +24144,2025-03-10T00:51:22.707099-07:00,1008.3421630859375,10.736997,10736.997 +24145,2025-03-10T00:51:33.434124-07:00,1008.3303833007812,10.727025,10727.025 +24146,2025-03-10T00:51:44.167105-07:00,1008.34716796875,10.732981,10732.981 +24147,2025-03-10T00:51:54.901401-07:00,1008.3368530273438,10.734296,10734.296 +24148,2025-03-10T00:52:05.629188-07:00,1008.3136596679688,10.727787,10727.787 +24149,2025-03-10T00:52:16.360303-07:00,1008.33154296875,10.731115,10731.115 +24150,2025-03-10T00:52:27.080304-07:00,1008.2933349609375,10.720001,10720.001 +24151,2025-03-10T00:52:37.816199-07:00,1008.283447265625,10.735895,10735.895 +24152,2025-03-10T00:52:48.542103-07:00,1008.3277587890625,10.725904,10725.904 +24153,2025-03-10T00:52:59.287727-07:00,1008.3357543945312,10.745624,10745.624 +24154,2025-03-10T00:53:10.022085-07:00,1008.2843627929688,10.734358,10734.358 +24155,2025-03-10T00:53:20.748477-07:00,1008.3088989257812,10.726392,10726.392 +24156,2025-03-10T00:53:31.485715-07:00,1008.3040771484375,10.737238,10737.238 +24157,2025-03-10T00:53:42.219639-07:00,1008.3021240234375,10.733924,10733.924 +24158,2025-03-10T00:53:52.951547-07:00,1008.3064575195312,10.731908,10731.908 +24159,2025-03-10T00:54:03.677631-07:00,1008.3244018554688,10.726084,10726.084 +24160,2025-03-10T00:54:14.411640-07:00,1008.334228515625,10.734009,10734.009 +24161,2025-03-10T00:54:25.148461-07:00,1008.3125,10.736821,10736.821 +24162,2025-03-10T00:54:35.880467-07:00,1008.30908203125,10.732006,10732.006 +24163,2025-03-10T00:54:46.604643-07:00,1008.2958374023438,10.724176,10724.176 +24164,2025-03-10T00:54:57.338527-07:00,1008.313720703125,10.733884,10733.884 +24165,2025-03-10T00:55:08.066676-07:00,1008.296875,10.728149,10728.149 +24166,2025-03-10T00:55:18.794650-07:00,1008.314697265625,10.727974,10727.974 +24167,2025-03-10T00:55:29.528623-07:00,1008.3047485351562,10.733973,10733.973 +24168,2025-03-10T00:55:40.258464-07:00,1008.3010864257812,10.729841,10729.841 +24169,2025-03-10T00:55:50.991515-07:00,1008.2976684570312,10.733051,10733.051 +24170,2025-03-10T00:56:01.721491-07:00,1008.294189453125,10.729976,10729.976 +24171,2025-03-10T00:56:12.448537-07:00,1008.2971801757812,10.727046,10727.046 +24172,2025-03-10T00:56:23.178842-07:00,1008.2937622070312,10.730305,10730.305 +24173,2025-03-10T00:56:33.908464-07:00,1008.2966918945312,10.729622,10729.622 +24174,2025-03-10T00:56:44.637467-07:00,1008.2867431640625,10.729003,10729.003 +24175,2025-03-10T00:56:55.363888-07:00,1008.263427734375,10.726421,10726.421 +24176,2025-03-10T00:57:06.093537-07:00,1008.2814331054688,10.729649,10729.649 +24177,2025-03-10T00:57:16.829874-07:00,1008.2711181640625,10.736337,10736.337 +24178,2025-03-10T00:57:27.558637-07:00,1008.2888793945312,10.728763,10728.763 +24179,2025-03-10T00:57:38.286540-07:00,1008.2837524414062,10.727903,10727.903 +24180,2025-03-10T00:57:49.023529-07:00,1008.250732421875,10.736989,10736.989 +24181,2025-03-10T00:57:59.750641-07:00,1008.248779296875,10.727112,10727.112 +24182,2025-03-10T00:58:10.488514-07:00,1008.230712890625,10.737873,10737.873 +24183,2025-03-10T00:58:21.215468-07:00,1008.2485961914062,10.726954,10726.954 +24184,2025-03-10T00:58:31.946906-07:00,1008.2567138671875,10.731438,10731.438 +24185,2025-03-10T00:58:42.683387-07:00,1008.2581176757812,10.736481,10736.481 +24186,2025-03-10T00:58:53.409665-07:00,1008.22314453125,10.726278,10726.278 +24187,2025-03-10T00:59:04.143542-07:00,1008.2410278320312,10.733877,10733.877 +24188,2025-03-10T00:59:14.881677-07:00,1008.2357788085938,10.738135,10738.135 +24189,2025-03-10T00:59:25.609464-07:00,1008.2341918945312,10.727787,10727.787 +24190,2025-03-10T00:59:36.343207-07:00,1008.2293701171875,10.733743,10733.743 +24191,2025-03-10T00:59:47.069640-07:00,1008.2256469726562,10.726433,10726.433 +24192,2025-03-10T00:59:57.813087-07:00,1008.2274169921875,10.743447,10743.447 +24193,2025-03-10T01:00:08.537500-07:00,1008.202392578125,10.724413,10724.413 +24194,2025-03-10T01:00:19.278490-07:00,1008.2349853515625,10.74099,10740.99 +24195,2025-03-10T01:00:30.013683-07:00,1008.1939086914062,10.735193,10735.193 +24196,2025-03-10T01:00:40.737750-07:00,1008.1967163085938,10.724067,10724.067 +24197,2025-03-10T01:00:51.472473-07:00,1008.2183837890625,10.734723,10734.723 +24198,2025-03-10T01:01:02.212663-07:00,1008.1749877929688,10.74019,10740.19 +24199,2025-03-10T01:01:12.941464-07:00,1008.19140625,10.728801,10728.801 +24200,2025-03-10T01:01:23.671470-07:00,1008.2061157226562,10.730006,10730.006 +24201,2025-03-10T01:01:34.406927-07:00,1008.181396484375,10.735457,10735.457 +24202,2025-03-10T01:01:45.137667-07:00,1008.1860961914062,10.73074,10730.74 +24203,2025-03-10T01:01:55.867471-07:00,1008.192626953125,10.729804,10729.804 +24204,2025-03-10T01:02:06.597928-07:00,1008.1676635742188,10.730457,10730.457 +24205,2025-03-10T01:02:17.332641-07:00,1008.1737670898438,10.734713,10734.713 +24206,2025-03-10T01:02:28.057759-07:00,1008.1884155273438,10.725118,10725.118 +24207,2025-03-10T01:02:38.797467-07:00,1008.14208984375,10.739708,10739.708 +24208,2025-03-10T01:02:49.518780-07:00,1008.1637573242188,10.721313,10721.313 +24209,2025-03-10T01:03:00.258464-07:00,1008.14013671875,10.739684,10739.684 +24210,2025-03-10T01:03:10.988680-07:00,1008.1665649414062,10.730216,10730.216 +24211,2025-03-10T01:03:21.719513-07:00,1008.1565551757812,10.730833,10730.833 +24212,2025-03-10T01:03:32.450468-07:00,1008.1546630859375,10.730955,10730.955 +24213,2025-03-10T01:03:43.179490-07:00,1008.1677856445312,10.729022,10729.022 +24214,2025-03-10T01:03:53.915468-07:00,1008.1644287109375,10.735978,10735.978 +24215,2025-03-10T01:04:04.650650-07:00,1008.1394653320312,10.735182,10735.182 +24216,2025-03-10T01:04:15.378529-07:00,1008.1409301757812,10.727879,10727.879 +24217,2025-03-10T01:04:26.113620-07:00,1008.1607666015625,10.735091,10735.091 +24218,2025-03-10T01:04:36.850956-07:00,1008.1375122070312,10.737336,10737.336 +24219,2025-03-10T01:04:47.580462-07:00,1008.1455688476562,10.729506,10729.506 +24220,2025-03-10T01:04:58.319725-07:00,1008.13232421875,10.739263,10739.263 +24221,2025-03-10T01:05:09.047507-07:00,1008.1436157226562,10.727782,10727.782 +24222,2025-03-10T01:05:19.776588-07:00,1008.138427734375,10.729081,10729.081 +24223,2025-03-10T01:05:30.509670-07:00,1008.14013671875,10.733082,10733.082 +24224,2025-03-10T01:05:41.252586-07:00,1008.126953125,10.742916,10742.916 +24225,2025-03-10T01:05:51.985874-07:00,1008.1298217773438,10.733288,10733.288 +24226,2025-03-10T01:06:02.722658-07:00,1008.1448364257812,10.736784,10736.784 +24227,2025-03-10T01:06:13.456747-07:00,1008.133056640625,10.734089,10734.089 +24228,2025-03-10T01:06:24.187467-07:00,1008.1160888671875,10.73072,10730.72 +24229,2025-03-10T01:06:34.922680-07:00,1008.1359252929688,10.735213,10735.213 +24230,2025-03-10T01:06:45.654556-07:00,1008.1046142578125,10.731876,10731.876 +24231,2025-03-10T01:06:56.384483-07:00,1008.087646484375,10.729927,10729.927 +24232,2025-03-10T01:07:07.115646-07:00,1008.1074829101562,10.731163,10731.163 +24233,2025-03-10T01:07:17.848729-07:00,1008.1040649414062,10.733083,10733.083 +24234,2025-03-10T01:07:28.582462-07:00,1008.07763671875,10.733733,10733.733 +24235,2025-03-10T01:07:39.316540-07:00,1008.1138916015625,10.734078,10734.078 +24236,2025-03-10T01:07:50.040617-07:00,1008.095458984375,10.724077,10724.077 +24237,2025-03-10T01:08:00.776626-07:00,1008.1101684570312,10.736009,10736.009 +24238,2025-03-10T01:08:11.515664-07:00,1008.0789184570312,10.739038,10739.038 +24239,2025-03-10T01:08:22.248638-07:00,1008.0789184570312,10.732974,10732.974 +24240,2025-03-10T01:08:32.975622-07:00,1008.1165771484375,10.726984,10726.984 +24241,2025-03-10T01:08:43.712465-07:00,1008.0751342773438,10.736843,10736.843 +24242,2025-03-10T01:08:54.438540-07:00,1008.0783081054688,10.726075,10726.075 +24243,2025-03-10T01:09:05.179627-07:00,1008.0943603515625,10.741087,10741.087 +24244,2025-03-10T01:09:15.910561-07:00,1008.076416015625,10.730934,10730.934 +24245,2025-03-10T01:09:26.643252-07:00,1008.076416015625,10.732691,10732.691 +24246,2025-03-10T01:09:37.373648-07:00,1008.076416015625,10.730396,10730.396 +24247,2025-03-10T01:09:48.110787-07:00,1008.0792236328125,10.737139,10737.139 +24248,2025-03-10T01:09:58.848465-07:00,1008.0726318359375,10.737678,10737.678 +24249,2025-03-10T01:10:09.582468-07:00,1008.0823974609375,10.734003,10734.003 +24250,2025-03-10T01:10:20.310054-07:00,1008.0744018554688,10.727586,10727.586 +24251,2025-03-10T01:10:31.045792-07:00,1008.055908203125,10.735738,10735.738 +24252,2025-03-10T01:10:41.780464-07:00,1008.0657958984375,10.734672,10734.672 +24253,2025-03-10T01:10:52.508674-07:00,1008.0657958984375,10.72821,10728.21 +24254,2025-03-10T01:11:03.241645-07:00,1008.0723266601562,10.732971,10732.971 +24255,2025-03-10T01:11:13.977466-07:00,1008.0671997070312,10.735821,10735.821 +24256,2025-03-10T01:11:24.709469-07:00,1008.0704956054688,10.732003,10732.003 +24257,2025-03-10T01:11:35.446460-07:00,1008.0870361328125,10.736991,10736.991 +24258,2025-03-10T01:11:46.171624-07:00,1008.0554809570312,10.725164,10725.164 +24259,2025-03-10T01:11:56.907467-07:00,1008.05859375,10.735843,10735.843 +24260,2025-03-10T01:12:07.638212-07:00,1008.05859375,10.730745,10730.745 +24261,2025-03-10T01:12:18.380650-07:00,1008.05859375,10.742438,10742.438 +24262,2025-03-10T01:12:29.114484-07:00,1008.0750732421875,10.733834,10733.834 +24263,2025-03-10T01:12:39.839467-07:00,1008.0684204101562,10.724983,10724.983 +24264,2025-03-10T01:12:50.579677-07:00,1008.06005859375,10.74021,10740.21 +24265,2025-03-10T01:13:01.311672-07:00,1008.0733032226562,10.731995,10731.995 +24266,2025-03-10T01:13:12.047499-07:00,1008.056640625,10.735827,10735.827 +24267,2025-03-10T01:13:22.785462-07:00,1008.0831298828125,10.737963,10737.963 +24268,2025-03-10T01:13:33.512669-07:00,1008.0728149414062,10.727207,10727.207 +24269,2025-03-10T01:13:44.251646-07:00,1008.05810546875,10.738977,10738.977 +24270,2025-03-10T01:13:54.990650-07:00,1008.079345703125,10.739004,10739.004 +24271,2025-03-10T01:14:05.720807-07:00,1008.0661010742188,10.730157,10730.157 +24272,2025-03-10T01:14:16.453503-07:00,1008.0480346679688,10.732696,10732.696 +24273,2025-03-10T01:14:27.186728-07:00,1008.0396728515625,10.733225,10733.225 +24274,2025-03-10T01:14:37.926763-07:00,1008.030029296875,10.740035,10740.035 +24275,2025-03-10T01:14:48.654567-07:00,1008.0498657226562,10.727804,10727.804 +24276,2025-03-10T01:14:59.384811-07:00,1008.0578002929688,10.730244,10730.244 +24277,2025-03-10T01:15:10.124365-07:00,1008.0728149414062,10.739554,10739.554 +24278,2025-03-10T01:15:20.851530-07:00,1008.055908203125,10.727165,10727.165 +24279,2025-03-10T01:15:31.592464-07:00,1008.0279541015625,10.740934,10740.934 +24280,2025-03-10T01:15:42.324657-07:00,1008.065673828125,10.732193,10732.193 +24281,2025-03-10T01:15:53.050790-07:00,1008.0491943359375,10.726133,10726.133 +24282,2025-03-10T01:16:03.781534-07:00,1008.0576782226562,10.730744,10730.744 +24283,2025-03-10T01:16:14.518221-07:00,1008.037841796875,10.736687,10736.687 +24284,2025-03-10T01:16:25.256007-07:00,1008.0326538085938,10.737786,10737.786 +24285,2025-03-10T01:16:35.985468-07:00,1008.0292358398438,10.729461,10729.461 +24286,2025-03-10T01:16:46.715462-07:00,1008.0274047851562,10.729994,10729.994 +24287,2025-03-10T01:16:57.455728-07:00,1008.020751953125,10.740266,10740.266 +24288,2025-03-10T01:17:08.188293-07:00,1008.0027465820312,10.732565,10732.565 +24289,2025-03-10T01:17:18.926471-07:00,1008.0027465820312,10.738178,10738.178 +24290,2025-03-10T01:17:29.658796-07:00,1008.0203247070312,10.732325,10732.325 +24291,2025-03-10T01:17:40.387291-07:00,1008.018798828125,10.728495,10728.495 +24292,2025-03-10T01:17:51.125608-07:00,1008.013671875,10.738317,10738.317 +24293,2025-03-10T01:18:01.856495-07:00,1008.0087280273438,10.730887,10730.887 +24294,2025-03-10T01:18:12.584577-07:00,1008.00048828125,10.728082,10728.082 +24295,2025-03-10T01:18:23.320488-07:00,1008.0220336914062,10.735911,10735.911 +24296,2025-03-10T01:18:34.053502-07:00,1008.01025390625,10.733014,10733.014 +24297,2025-03-10T01:18:44.784873-07:00,1007.9837646484375,10.731371,10731.371 +24298,2025-03-10T01:18:55.511466-07:00,1007.9970092773438,10.726593,10726.593 +24299,2025-03-10T01:19:06.238468-07:00,1008.01171875,10.727002,10727.002 +24300,2025-03-10T01:19:16.971693-07:00,1008.0067749023438,10.733225,10733.225 +24301,2025-03-10T01:19:27.702495-07:00,1008.0016479492188,10.730802,10730.802 +24302,2025-03-10T01:19:38.436668-07:00,1008.03466796875,10.734173,10734.173 +24303,2025-03-10T01:19:49.164671-07:00,1008.0001831054688,10.728003,10728.003 +24304,2025-03-10T01:19:59.901635-07:00,1008.0379638671875,10.736964,10736.964 +24305,2025-03-10T01:20:10.633467-07:00,1008.029541015625,10.731832,10731.832 +24306,2025-03-10T01:20:21.367542-07:00,1008.03125,10.734075,10734.075 +24307,2025-03-10T01:20:32.099629-07:00,1008.0379638671875,10.732087,10732.087 +24308,2025-03-10T01:20:42.828600-07:00,1008.01953125,10.728971,10728.971 +24309,2025-03-10T01:20:53.555688-07:00,1008.01953125,10.727088,10727.088 +24310,2025-03-10T01:21:04.286641-07:00,1008.03271484375,10.730953,10730.953 +24311,2025-03-10T01:21:15.015634-07:00,1008.026123046875,10.728993,10728.993 +24312,2025-03-10T01:21:25.751607-07:00,1008.0062255859375,10.735973,10735.973 +24313,2025-03-10T01:21:36.479631-07:00,1008.01953125,10.728024,10728.024 +24314,2025-03-10T01:21:47.213594-07:00,1008.0226440429688,10.733963,10733.963 +24315,2025-03-10T01:21:57.939544-07:00,1008.01611328125,10.72595,10725.95 +24316,2025-03-10T01:22:08.670841-07:00,1008.0571899414062,10.731297,10731.297 +24317,2025-03-10T01:22:19.411800-07:00,1008.0275268554688,10.740959,10740.959 +24318,2025-03-10T01:22:30.142835-07:00,1008.037353515625,10.731035,10731.035 +24319,2025-03-10T01:22:40.866479-07:00,1008.024169921875,10.723644,10723.644 +24320,2025-03-10T01:22:51.594464-07:00,1008.024169921875,10.727985,10727.985 +24321,2025-03-10T01:23:23.790467-07:00,1007.9976806640625,32.196003,32196.003 +24322,2025-03-10T01:23:34.526466-07:00,1008.0537719726562,10.735999,10735.999 +24323,2025-03-10T01:23:45.250278-07:00,1008.0471801757812,10.723812,10723.812 +24324,2025-03-10T01:23:55.990645-07:00,1008.04052734375,10.740367,10740.367 +24325,2025-03-10T01:24:06.712467-07:00,1008.0618896484375,10.721822,10721.822 +24326,2025-03-10T01:24:17.454461-07:00,1008.0387573242188,10.741994,10741.994 +24327,2025-03-10T01:24:28.185265-07:00,1008.0684204101562,10.730804,10730.804 +24328,2025-03-10T01:24:38.920752-07:00,1008.0420532226562,10.735487,10735.487 +24329,2025-03-10T01:24:49.646501-07:00,1008.048583984375,10.725749,10725.749 +24330,2025-03-10T01:25:00.385679-07:00,1008.06982421875,10.739178,10739.178 +24331,2025-03-10T01:25:11.109730-07:00,1008.0499877929688,10.724051,10724.051 +24332,2025-03-10T01:25:21.845491-07:00,1008.051513671875,10.735761,10735.761 +24333,2025-03-10T01:25:32.575630-07:00,1008.0664672851562,10.730139,10730.139 +24334,2025-03-10T01:25:43.308665-07:00,1008.0797119140625,10.733035,10733.035 +24335,2025-03-10T01:25:54.034457-07:00,1008.0797119140625,10.725792,10725.792 +24336,2025-03-10T01:26:04.763462-07:00,1008.051513671875,10.729005,10729.005 +24337,2025-03-10T01:26:15.494792-07:00,1008.064697265625,10.73133,10731.33 +24338,2025-03-10T01:26:26.228468-07:00,1008.0546875,10.733676,10733.676 +24339,2025-03-10T01:26:36.965667-07:00,1008.0745239257812,10.737199,10737.199 +24340,2025-03-10T01:26:47.689870-07:00,1008.06787109375,10.724203,10724.203 +24341,2025-03-10T01:26:58.423530-07:00,1008.0413818359375,10.73366,10733.66 +24342,2025-03-10T01:27:09.158466-07:00,1008.0546875,10.734936,10734.936 +24343,2025-03-10T01:27:19.881928-07:00,1008.0427856445312,10.723462,10723.462 +24344,2025-03-10T01:27:30.617756-07:00,1008.0362548828125,10.735828,10735.828 +24345,2025-03-10T01:27:41.346463-07:00,1008.0399780273438,10.728707,10728.707 +24346,2025-03-10T01:27:52.085889-07:00,1008.0909423828125,10.739426,10739.426 +24347,2025-03-10T01:28:02.815466-07:00,1008.0843505859375,10.729577,10729.577 +24348,2025-03-10T01:28:13.550557-07:00,1008.0645141601562,10.735091,10735.091 +24349,2025-03-10T01:28:24.272557-07:00,1008.0526733398438,10.722,10722.0 +24350,2025-03-10T01:28:35.006490-07:00,1008.0711059570312,10.733933,10733.933 +24351,2025-03-10T01:28:45.734025-07:00,1008.0446166992188,10.727535,10727.535 +24352,2025-03-10T01:28:56.466710-07:00,1008.059326171875,10.732685,10732.685 +24353,2025-03-10T01:29:07.191530-07:00,1008.060791015625,10.72482,10724.82 +24354,2025-03-10T01:29:17.926476-07:00,1008.059326171875,10.734946,10734.946 +24355,2025-03-10T01:29:28.661607-07:00,1008.0409545898438,10.735131,10735.131 +24356,2025-03-10T01:29:39.387490-07:00,1008.0342407226562,10.725883,10725.883 +24357,2025-03-10T01:29:50.120708-07:00,1008.0474853515625,10.733218,10733.218 +24358,2025-03-10T01:30:00.856647-07:00,1008.0161743164062,10.735939,10735.939 +24359,2025-03-10T01:30:11.581465-07:00,1008.0440673828125,10.724818,10724.818 +24360,2025-03-10T01:30:22.320670-07:00,1008.0228271484375,10.739205,10739.205 +24361,2025-03-10T01:30:33.048467-07:00,1008.0109252929688,10.727797,10727.797 +24362,2025-03-10T01:30:43.780633-07:00,1008.0242309570312,10.732166,10732.166 +24363,2025-03-10T01:30:54.520706-07:00,1008.0374755859375,10.740073,10740.073 +24364,2025-03-10T01:31:05.246528-07:00,1008.0388793945312,10.725822,10725.822 +24365,2025-03-10T01:31:15.972651-07:00,1008.020751953125,10.726123,10726.123 +24366,2025-03-10T01:31:26.704469-07:00,1008.009521484375,10.731818,10731.818 +24367,2025-03-10T01:31:37.439465-07:00,1007.9845581054688,10.734996,10734.996 +24368,2025-03-10T01:31:48.171470-07:00,1008.0487670898438,10.732005,10732.005 +24369,2025-03-10T01:31:58.909659-07:00,1008.022216796875,10.738189,10738.189 +24370,2025-03-10T01:32:09.640467-07:00,1007.983154296875,10.730808,10730.808 +24371,2025-03-10T01:32:20.378466-07:00,1008.0472412109375,10.737999,10737.999 +24372,2025-03-10T01:32:31.103646-07:00,1008.0057983398438,10.72518,10725.18 +24373,2025-03-10T01:32:41.846158-07:00,1007.9859619140625,10.742512,10742.512 +24374,2025-03-10T01:32:52.575534-07:00,1008.012451171875,10.729376,10729.376 +24375,2025-03-10T01:33:03.309740-07:00,1008.0274047851562,10.734206,10734.206 +24376,2025-03-10T01:33:14.038651-07:00,1007.9845581054688,10.728911,10728.911 +24377,2025-03-10T01:33:24.782966-07:00,1007.9759521484375,10.744315,10744.315 +24378,2025-03-10T01:33:35.515464-07:00,1007.9845581054688,10.732498,10732.498 +24379,2025-03-10T01:33:46.245887-07:00,1007.9971923828125,10.730423,10730.423 +24380,2025-03-10T01:33:56.982644-07:00,1007.9906005859375,10.736757,10736.757 +24381,2025-03-10T01:34:07.708468-07:00,1007.9871826171875,10.725824,10725.824 +24382,2025-03-10T01:34:18.440536-07:00,1007.973876953125,10.732068,10732.068 +24383,2025-03-10T01:34:29.178540-07:00,1007.9701538085938,10.738004,10738.004 +24384,2025-03-10T01:34:39.903710-07:00,1007.978515625,10.72517,10725.17 +24385,2025-03-10T01:34:50.637637-07:00,1007.9813842773438,10.733927,10733.927 +24386,2025-03-10T01:35:01.375932-07:00,1007.9681396484375,10.738295,10738.295 +24387,2025-03-10T01:35:12.100465-07:00,1007.9779663085938,10.724533,10724.533 +24388,2025-03-10T01:35:22.832467-07:00,1007.9514770507812,10.732002,10732.002 +24389,2025-03-10T01:35:33.564461-07:00,1007.9826049804688,10.731994,10731.994 +24390,2025-03-10T01:35:44.303675-07:00,1007.9826049804688,10.739214,10739.214 +24391,2025-03-10T01:35:55.033461-07:00,1007.95751953125,10.729786,10729.786 +24392,2025-03-10T01:36:05.764645-07:00,1007.9806518554688,10.731184,10731.184 +24393,2025-03-10T01:36:16.490231-07:00,1007.92626953125,10.725586,10725.586 +24394,2025-03-10T01:36:27.221492-07:00,1007.95703125,10.731261,10731.261 +24395,2025-03-10T01:36:37.951000-07:00,1007.9503173828125,10.729508,10729.508 +24396,2025-03-10T01:36:48.682658-07:00,1007.9371337890625,10.731658,10731.658 +24397,2025-03-10T01:36:59.414478-07:00,1007.9290771484375,10.73182,10731.82 +24398,2025-03-10T01:37:10.154584-07:00,1007.9468994140625,10.740106,10740.106 +24399,2025-03-10T01:37:20.883671-07:00,1007.9304809570312,10.729087,10729.087 +24400,2025-03-10T01:37:31.610235-07:00,1007.9336547851562,10.726564,10726.564 +24401,2025-03-10T01:37:42.350467-07:00,1007.912353515625,10.740232,10740.232 +24402,2025-03-10T01:37:53.076964-07:00,1007.915283203125,10.726497,10726.497 +24403,2025-03-10T01:38:03.817680-07:00,1007.9351806640625,10.740716,10740.716 +24404,2025-03-10T01:38:14.546462-07:00,1007.9204711914062,10.728782,10728.782 +24405,2025-03-10T01:38:25.282512-07:00,1007.9336547851562,10.73605,10736.05 +24406,2025-03-10T01:38:36.025497-07:00,1007.9071655273438,10.742985,10742.985 +24407,2025-03-10T01:38:46.753647-07:00,1007.8953857421875,10.72815,10728.15 +24408,2025-03-10T01:38:57.496533-07:00,1007.9085693359375,10.742886,10742.886 +24409,2025-03-10T01:39:08.228467-07:00,1007.915283203125,10.731934,10731.934 +24410,2025-03-10T01:39:18.966600-07:00,1007.900634765625,10.738133,10738.133 +24411,2025-03-10T01:39:29.691646-07:00,1007.8887329101562,10.725046,10725.046 +24412,2025-03-10T01:39:40.435304-07:00,1007.8853149414062,10.743658,10743.658 +24413,2025-03-10T01:39:51.167469-07:00,1007.9037475585938,10.732165,10732.165 +24414,2025-03-10T01:40:01.895641-07:00,1007.8873291015625,10.728172,10728.172 +24415,2025-03-10T01:40:12.633765-07:00,1007.9037475585938,10.738124,10738.124 +24416,2025-03-10T01:40:23.366466-07:00,1007.8807983398438,10.732701,10732.701 +24417,2025-03-10T01:40:34.094621-07:00,1007.9037475585938,10.728155,10728.155 +24418,2025-03-10T01:40:44.830461-07:00,1007.8660888671875,10.73584,10735.84 +24419,2025-03-10T01:40:55.567318-07:00,1007.8859252929688,10.736857,10736.857 +24420,2025-03-10T01:41:06.293668-07:00,1007.8842163085938,10.72635,10726.35 +24421,2025-03-10T01:41:17.033468-07:00,1007.889404296875,10.7398,10739.8 +24422,2025-03-10T01:41:27.767930-07:00,1007.9304809570312,10.734462,10734.462 +24423,2025-03-10T01:41:38.495629-07:00,1007.8973999023438,10.727699,10727.699 +24424,2025-03-10T01:41:49.235542-07:00,1007.876708984375,10.739913,10739.913 +24425,2025-03-10T01:41:59.965466-07:00,1007.9064331054688,10.729924,10729.924 +24426,2025-03-10T01:42:10.702645-07:00,1007.876708984375,10.737179,10737.179 +24427,2025-03-10T01:42:21.432533-07:00,1007.889892578125,10.729888,10729.888 +24428,2025-03-10T01:42:32.170470-07:00,1007.8965454101562,10.737937,10737.937 +24429,2025-03-10T01:42:42.894832-07:00,1007.9065551757812,10.724362,10724.362 +24430,2025-03-10T01:42:53.627529-07:00,1007.8933715820312,10.732697,10732.697 +24431,2025-03-10T01:43:04.361467-07:00,1007.880126953125,10.733938,10733.938 +24432,2025-03-10T01:43:15.102656-07:00,1007.8933715820312,10.741189,10741.189 +24433,2025-03-10T01:43:25.823491-07:00,1007.8573608398438,10.720835,10720.835 +24434,2025-03-10T01:43:36.563493-07:00,1007.8588256835938,10.740002,10740.002 +24435,2025-03-10T01:43:47.287676-07:00,1007.8904418945312,10.724183,10724.183 +24436,2025-03-10T01:43:58.022861-07:00,1007.8740844726562,10.735185,10735.185 +24437,2025-03-10T01:44:08.750977-07:00,1007.8660278320312,10.728116,10728.116 +24438,2025-03-10T01:44:19.484652-07:00,1007.8510131835938,10.733675,10733.675 +24439,2025-03-10T01:44:30.212748-07:00,1007.8709106445312,10.728096,10728.096 +24440,2025-03-10T01:44:40.942550-07:00,1007.884033203125,10.729802,10729.802 +24441,2025-03-10T01:44:51.679683-07:00,1007.854736328125,10.737133,10737.133 +24442,2025-03-10T01:45:02.405644-07:00,1007.8812255859375,10.725961,10725.961 +24443,2025-03-10T01:45:13.144467-07:00,1007.8699951171875,10.738823,10738.823 +24444,2025-03-10T01:45:23.875466-07:00,1007.8781127929688,10.730999,10730.999 +24445,2025-03-10T01:45:34.605493-07:00,1007.8601684570312,10.730027,10730.027 +24446,2025-03-10T01:45:45.333543-07:00,1007.8440551757812,10.72805,10728.05 +24447,2025-03-10T01:45:56.069548-07:00,1007.8521728515625,10.736005,10736.005 +24448,2025-03-10T01:46:06.795197-07:00,1007.8904418945312,10.725649,10725.649 +24449,2025-03-10T01:46:17.531657-07:00,1007.81298828125,10.73646,10736.46 +24450,2025-03-10T01:46:28.263468-07:00,1007.859375,10.731811,10731.811 +24451,2025-03-10T01:46:38.985483-07:00,1007.8576049804688,10.722015,10722.015 +24452,2025-03-10T01:46:49.726727-07:00,1007.8264770507812,10.741244,10741.244 +24453,2025-03-10T01:47:00.450666-07:00,1007.8150024414062,10.723939,10723.939 +24454,2025-03-10T01:47:11.180648-07:00,1007.8662719726562,10.729982,10729.982 +24455,2025-03-10T01:47:21.917650-07:00,1007.8368530273438,10.737002,10737.002 +24456,2025-03-10T01:47:32.648464-07:00,1007.8396606445312,10.730814,10730.814 +24457,2025-03-10T01:47:43.376471-07:00,1007.86474609375,10.728007,10728.007 +24458,2025-03-10T01:47:54.110668-07:00,1007.8618774414062,10.734197,10734.197 +24459,2025-03-10T01:48:04.836467-07:00,1007.86328125,10.725799,10725.799 +24460,2025-03-10T01:48:15.570678-07:00,1007.845458984375,10.734211,10734.211 +24461,2025-03-10T01:48:26.297652-07:00,1007.8601684570312,10.726974,10726.974 +24462,2025-03-10T01:48:37.036467-07:00,1007.85205078125,10.738815,10738.815 +24463,2025-03-10T01:48:47.769465-07:00,1007.8224487304688,10.732998,10732.998 +24464,2025-03-10T01:48:58.492660-07:00,1007.8687744140625,10.723195,10723.195 +24465,2025-03-10T01:49:09.231488-07:00,1007.834228515625,10.738828,10738.828 +24466,2025-03-10T01:49:19.958680-07:00,1007.8063354492188,10.727192,10727.192 +24467,2025-03-10T01:49:30.685860-07:00,1007.8311157226562,10.72718,10727.18 +24468,2025-03-10T01:49:41.419466-07:00,1007.8414306640625,10.733606,10733.606 +24469,2025-03-10T01:49:52.147464-07:00,1007.8428344726562,10.727998,10727.998 +24470,2025-03-10T01:50:02.881469-07:00,1007.83154296875,10.734005,10734.005 +24471,2025-03-10T01:50:13.609463-07:00,1007.8513793945312,10.727994,10727.994 +24472,2025-03-10T01:50:24.346464-07:00,1007.810302734375,10.737001,10737.001 +24473,2025-03-10T01:50:35.082465-07:00,1007.8548583984375,10.736001,10736.001 +24474,2025-03-10T01:50:45.811672-07:00,1007.8615112304688,10.729207,10729.207 +24475,2025-03-10T01:50:56.550617-07:00,1007.8189086914062,10.738945,10738.945 +24476,2025-03-10T01:51:07.277461-07:00,1007.8223266601562,10.726844,10726.844 +24477,2025-03-10T01:51:18.005668-07:00,1007.8194580078125,10.728207,10728.207 +24478,2025-03-10T01:51:28.741821-07:00,1007.8275146484375,10.736153,10736.153 +24479,2025-03-10T01:51:39.470469-07:00,1007.8110961914062,10.728648,10728.648 +24480,2025-03-10T01:51:50.202935-07:00,1007.817626953125,10.732466,10732.466 +24481,2025-03-10T01:52:00.931478-07:00,1007.8110961914062,10.728543,10728.543 +24482,2025-03-10T01:52:11.665466-07:00,1007.8162231445312,10.733988,10733.988 +24483,2025-03-10T01:52:22.398533-07:00,1007.8030395507812,10.733067,10733.067 +24484,2025-03-10T01:52:33.136268-07:00,1007.778564453125,10.737735,10737.735 +24485,2025-03-10T01:52:43.860466-07:00,1007.8131103515625,10.724198,10724.198 +24486,2025-03-10T01:52:54.595746-07:00,1007.796630859375,10.73528,10735.28 +24487,2025-03-10T01:53:05.367664-07:00,1007.7750244140625,10.771918,10771.918 +24488,2025-03-10T01:53:16.096452-07:00,1007.800048828125,10.728788,10728.788 +24489,2025-03-10T01:53:26.823422-07:00,1007.7689819335938,10.72697,10726.97 +24490,2025-03-10T01:53:37.561420-07:00,1007.775634765625,10.737998,10737.998 +24491,2025-03-10T01:53:48.296297-07:00,1007.772705078125,10.734877,10734.877 +24492,2025-03-10T01:53:59.018427-07:00,1007.772705078125,10.72213,10722.13 +24493,2025-03-10T01:54:09.757932-07:00,1007.772705078125,10.739505,10739.505 +24494,2025-03-10T01:54:20.493538-07:00,1007.7828369140625,10.735606,10735.606 +24495,2025-03-10T01:54:31.220425-07:00,1007.7828369140625,10.726887,10726.887 +24496,2025-03-10T01:54:41.953422-07:00,1007.7548217773438,10.732997,10732.997 +24497,2025-03-10T01:54:52.695757-07:00,1007.7945556640625,10.742335,10742.335 +24498,2025-03-10T01:55:03.429635-07:00,1007.7449951171875,10.733878,10733.878 +24499,2025-03-10T01:55:14.164523-07:00,1007.763427734375,10.734888,10734.888 +24500,2025-03-10T01:55:24.893424-07:00,1007.7484130859375,10.728901,10728.901 +24501,2025-03-10T01:55:35.634750-07:00,1007.7418823242188,10.741326,10741.326 +24502,2025-03-10T01:55:46.363342-07:00,1007.7700805664062,10.728592,10728.592 +24503,2025-03-10T01:55:57.095520-07:00,1007.7603149414062,10.732178,10732.178 +24504,2025-03-10T01:56:07.827860-07:00,1007.752197265625,10.73234,10732.34 +24505,2025-03-10T01:56:18.558619-07:00,1007.7720336914062,10.730759,10730.759 +24506,2025-03-10T01:56:29.291629-07:00,1007.7371826171875,10.73301,10733.01 +24507,2025-03-10T01:56:40.033453-07:00,1007.7689208984375,10.741824,10741.824 +24508,2025-03-10T01:56:50.757885-07:00,1007.7673950195312,10.724432,10724.432 +24509,2025-03-10T01:57:01.491420-07:00,1007.7689208984375,10.733535,10733.535 +24510,2025-03-10T01:57:12.225453-07:00,1007.7329711914062,10.734033,10734.033 +24511,2025-03-10T01:57:22.962419-07:00,1007.7628173828125,10.736966,10736.966 +24512,2025-03-10T01:57:33.686710-07:00,1007.72314453125,10.724291,10724.291 +24513,2025-03-10T01:57:44.422650-07:00,1007.7415771484375,10.73594,10735.94 +24514,2025-03-10T01:57:55.153427-07:00,1007.7529907226562,10.730777,10730.777 +24515,2025-03-10T01:58:05.883605-07:00,1007.7449340820312,10.730178,10730.178 +24516,2025-03-10T01:58:16.610420-07:00,1007.71044921875,10.726815,10726.815 +24517,2025-03-10T01:58:27.341420-07:00,1007.7368774414062,10.731,10731.0 +24518,2025-03-10T01:58:38.071815-07:00,1007.7501831054688,10.730395,10730.395 +24519,2025-03-10T01:58:48.805671-07:00,1007.720458984375,10.733856,10733.856 +24520,2025-03-10T01:58:59.536631-07:00,1007.7351684570312,10.73096,10730.96 +24521,2025-03-10T01:59:10.280578-07:00,1007.7190551757812,10.743947,10743.947 +24522,2025-03-10T01:59:21.009824-07:00,1007.723876953125,10.729246,10729.246 +24523,2025-03-10T01:59:31.745486-07:00,1007.7040405273438,10.735662,10735.662 +24524,2025-03-10T01:59:42.469495-07:00,1007.735595703125,10.724009,10724.009 +24525,2025-03-10T01:59:53.205611-07:00,1007.7290649414062,10.736116,10736.116 +24526,2025-03-10T02:00:03.929640-07:00,1007.7290649414062,10.724029,10724.029 +24527,2025-03-10T02:00:14.664721-07:00,1007.7474975585938,10.735081,10735.081 +24528,2025-03-10T02:00:25.393624-07:00,1007.712646484375,10.728903,10728.903 +24529,2025-03-10T02:00:36.123456-07:00,1007.6898193359375,10.729832,10729.832 +24530,2025-03-10T02:00:46.856427-07:00,1007.695068359375,10.732971,10732.971 +24531,2025-03-10T02:00:57.581746-07:00,1007.695068359375,10.725319,10725.319 +24532,2025-03-10T02:01:08.316745-07:00,1007.6832885742188,10.734999,10734.999 +24533,2025-03-10T02:01:19.049628-07:00,1007.685302734375,10.732883,10732.883 +24534,2025-03-10T02:01:29.777594-07:00,1007.6904907226562,10.727966,10727.966 +24535,2025-03-10T02:01:40.514424-07:00,1007.68408203125,10.73683,10736.83 +24536,2025-03-10T02:01:51.246426-07:00,1007.691162109375,10.732002,10732.002 +24537,2025-03-10T02:02:01.974149-07:00,1007.6951293945312,10.727723,10727.723 +24538,2025-03-10T02:02:12.709127-07:00,1007.6942138671875,10.734978,10734.978 +24539,2025-03-10T02:02:23.444622-07:00,1007.6702880859375,10.735495,10735.495 +24540,2025-03-10T02:02:34.174653-07:00,1007.6790771484375,10.730031,10730.031 +24541,2025-03-10T02:02:44.900422-07:00,1007.703125,10.725769,10725.769 +24542,2025-03-10T02:02:55.633418-07:00,1007.6392211914062,10.732996,10732.996 +24543,2025-03-10T02:03:06.373493-07:00,1007.6592407226562,10.740075,10740.075 +24544,2025-03-10T02:03:17.098851-07:00,1007.6286010742188,10.725358,10725.358 +24545,2025-03-10T02:03:27.836578-07:00,1007.6325073242188,10.737727,10737.727 +24546,2025-03-10T02:03:38.568638-07:00,1007.6364135742188,10.73206,10732.06 +24547,2025-03-10T02:03:49.305691-07:00,1007.6567993164062,10.737053,10737.053 +24548,2025-03-10T02:04:00.035828-07:00,1007.6242065429688,10.730137,10730.137 +24549,2025-03-10T02:04:10.768599-07:00,1007.669189453125,10.732771,10732.771 +24550,2025-03-10T02:04:21.500424-07:00,1007.6565551757812,10.731825,10731.825 +24551,2025-03-10T02:04:32.228616-07:00,1007.6702880859375,10.728192,10728.192 +24552,2025-03-10T02:04:42.965447-07:00,1007.663818359375,10.736831,10736.831 +24553,2025-03-10T02:04:53.692627-07:00,1007.6378784179688,10.72718,10727.18 +24554,2025-03-10T02:05:04.428617-07:00,1007.6795043945312,10.73599,10735.99 +24555,2025-03-10T02:05:15.162734-07:00,1007.65673828125,10.734117,10734.117 +24556,2025-03-10T02:05:25.892422-07:00,1007.7129516601562,10.729688,10729.688 +24557,2025-03-10T02:05:36.619454-07:00,1007.6738891601562,10.727032,10727.032 +24558,2025-03-10T02:05:47.348653-07:00,1007.654541015625,10.729199,10729.199 +24559,2025-03-10T02:05:58.078547-07:00,1007.6461791992188,10.729894,10729.894 +24560,2025-03-10T02:06:08.814640-07:00,1007.66455078125,10.736093,10736.093 +24561,2025-03-10T02:06:19.539422-07:00,1007.657958984375,10.724782,10724.782 +24562,2025-03-10T02:06:30.273425-07:00,1007.6532592773438,10.734003,10734.003 +24563,2025-03-10T02:06:41.005424-07:00,1007.6598510742188,10.731999,10731.999 +24564,2025-03-10T02:06:51.731519-07:00,1007.6618041992188,10.726095,10726.095 +24565,2025-03-10T02:07:02.471641-07:00,1007.6632690429688,10.740122,10740.122 +24566,2025-03-10T02:07:13.199672-07:00,1007.6551513671875,10.728031,10728.031 +24567,2025-03-10T02:07:23.933602-07:00,1007.6353149414062,10.73393,10733.93 +24568,2025-03-10T02:07:34.662422-07:00,1007.6353149414062,10.72882,10728.82 +24569,2025-03-10T02:07:45.390431-07:00,1007.647216796875,10.728009,10728.009 +24570,2025-03-10T02:07:56.115702-07:00,1007.6322021484375,10.725271,10725.271 +24571,2025-03-10T02:08:06.853666-07:00,1007.6339111328125,10.737964,10737.964 +24572,2025-03-10T02:08:17.577605-07:00,1007.6273193359375,10.723939,10723.939 +24573,2025-03-10T02:08:28.313153-07:00,1007.592529296875,10.735548,10735.548 +24574,2025-03-10T02:08:39.046424-07:00,1007.6273193359375,10.733271,10733.271 +24575,2025-03-10T02:08:49.773726-07:00,1007.6104125976562,10.727302,10727.302 +24576,2025-03-10T02:09:00.511628-07:00,1007.6023559570312,10.737902,10737.902 +24577,2025-03-10T02:09:11.243739-07:00,1007.59716796875,10.732111,10732.111 +24578,2025-03-10T02:09:21.972616-07:00,1007.590576171875,10.728877,10728.877 +24579,2025-03-10T02:09:32.700614-07:00,1007.614990234375,10.727998,10727.998 +24580,2025-03-10T02:09:43.434423-07:00,1007.559326171875,10.733809,10733.809 +24581,2025-03-10T02:09:54.163468-07:00,1007.5772094726562,10.729045,10729.045 +24582,2025-03-10T02:10:04.892612-07:00,1007.5884399414062,10.729144,10729.144 +24583,2025-03-10T02:10:15.623548-07:00,1007.545654296875,10.730936,10730.936 +24584,2025-03-10T02:10:26.349611-07:00,1007.56689453125,10.726063,10726.063 +24585,2025-03-10T02:10:37.089603-07:00,1007.570068359375,10.739992,10739.992 +24586,2025-03-10T02:10:47.814424-07:00,1007.5914306640625,10.724821,10724.821 +24587,2025-03-10T02:10:58.548572-07:00,1007.5435791015625,10.734148,10734.148 +24588,2025-03-10T02:11:09.275593-07:00,1007.5267333984375,10.727021,10727.021 +24589,2025-03-10T02:11:19.999222-07:00,1007.5167236328125,10.723629,10723.629 +24590,2025-03-10T02:11:30.737423-07:00,1007.5279541015625,10.738201,10738.201 +24591,2025-03-10T02:11:41.461094-07:00,1007.5081176757812,10.723671,10723.671 +24592,2025-03-10T02:11:52.194423-07:00,1007.4898681640625,10.733329,10733.329 +24593,2025-03-10T02:12:02.926626-07:00,1007.5128173828125,10.732203,10732.203 +24594,2025-03-10T02:12:13.653600-07:00,1007.4996337890625,10.726974,10726.974 +24595,2025-03-10T02:12:24.390466-07:00,1007.4863891601562,10.736866,10736.866 +24596,2025-03-10T02:12:35.121623-07:00,1007.4829711914062,10.731157,10731.157 +24597,2025-03-10T02:12:45.851003-07:00,1007.4697875976562,10.72938,10729.38 +24598,2025-03-10T02:12:56.574630-07:00,1007.5170288085938,10.723627,10723.627 +24599,2025-03-10T02:13:07.312421-07:00,1007.4759521484375,10.737791,10737.791 +24600,2025-03-10T02:13:18.038815-07:00,1007.4905395507812,10.726394,10726.394 +24601,2025-03-10T02:13:28.768423-07:00,1007.4754028320312,10.729608,10729.608 +24602,2025-03-10T02:13:39.507794-07:00,1007.4805297851562,10.739371,10739.371 +24603,2025-03-10T02:13:50.232601-07:00,1007.4768676757812,10.724807,10724.807 +24604,2025-03-10T02:14:00.972907-07:00,1007.4785766601562,10.740306,10740.306 +24605,2025-03-10T02:14:11.697443-07:00,1007.4815063476562,10.724536,10724.536 +24606,2025-03-10T02:14:22.428421-07:00,1007.4832763671875,10.730978,10730.978 +24607,2025-03-10T02:14:33.158009-07:00,1007.4781494140625,10.729588,10729.588 +24608,2025-03-10T02:14:43.887426-07:00,1007.4795532226562,10.729417,10729.417 +24609,2025-03-10T02:14:54.617741-07:00,1007.4614868164062,10.730315,10730.315 +24610,2025-03-10T02:15:05.352442-07:00,1007.4695434570312,10.734701,10734.701 +24611,2025-03-10T02:15:16.088156-07:00,1007.459228515625,10.735714,10735.714 +24612,2025-03-10T02:15:26.819425-07:00,1007.46240234375,10.731269,10731.269 +24613,2025-03-10T02:15:37.550593-07:00,1007.47705078125,10.731168,10731.168 +24614,2025-03-10T02:15:48.281419-07:00,1007.4802856445312,10.730826,10730.826 +24615,2025-03-10T02:15:59.023426-07:00,1007.468505859375,10.742007,10742.007 +24616,2025-03-10T02:16:09.759573-07:00,1007.468505859375,10.736147,10736.147 +24617,2025-03-10T02:16:20.497645-07:00,1007.455322265625,10.738072,10738.072 +24618,2025-03-10T02:16:31.226539-07:00,1007.47314453125,10.728894,10728.894 +24619,2025-03-10T02:16:41.962425-07:00,1007.4880981445312,10.735886,10735.886 +24620,2025-03-10T02:16:52.692673-07:00,1007.4829711914062,10.730248,10730.248 +24621,2025-03-10T02:17:03.416501-07:00,1007.4795532226562,10.723828,10723.828 +24622,2025-03-10T02:17:14.153425-07:00,1007.4795532226562,10.736924,10736.924 +24623,2025-03-10T02:17:24.880604-07:00,1007.4361572265625,10.727179,10727.179 +24624,2025-03-10T02:17:35.606624-07:00,1007.490478515625,10.72602,10726.02 +24625,2025-03-10T02:17:46.345426-07:00,1007.4442138671875,10.738802,10738.802 +24626,2025-03-10T02:17:57.073584-07:00,1007.4393920898438,10.728158,10728.158 +24627,2025-03-10T02:18:07.804673-07:00,1007.46875,10.731089,10731.089 +24628,2025-03-10T02:18:18.528938-07:00,1007.4422607421875,10.724265,10724.265 +24629,2025-03-10T02:18:29.267917-07:00,1007.4667358398438,10.738979,10738.979 +24630,2025-03-10T02:18:39.991450-07:00,1007.4403076171875,10.723533,10723.533 +24631,2025-03-10T02:18:50.725425-07:00,1007.4271240234375,10.733975,10733.975 +24632,2025-03-10T02:19:01.456598-07:00,1007.46484375,10.731173,10731.173 +24633,2025-03-10T02:19:12.189673-07:00,1007.4481201171875,10.733075,10733.075 +24634,2025-03-10T02:19:22.920628-07:00,1007.4547729492188,10.730955,10730.955 +24635,2025-03-10T02:19:33.650633-07:00,1007.4576416015625,10.730005,10730.005 +24636,2025-03-10T02:19:44.387553-07:00,1007.480712890625,10.73692,10736.92 +24637,2025-03-10T02:19:55.114517-07:00,1007.4396362304688,10.726964,10726.964 +24638,2025-03-10T02:20:05.850515-07:00,1007.4425048828125,10.735998,10735.998 +24639,2025-03-10T02:20:16.584423-07:00,1007.4442138671875,10.733908,10733.908 +24640,2025-03-10T02:20:27.319078-07:00,1007.44921875,10.734655,10734.655 +24641,2025-03-10T02:20:38.045627-07:00,1007.4209594726562,10.726549,10726.549 +24642,2025-03-10T02:20:48.778611-07:00,1007.4454956054688,10.732984,10732.984 +24643,2025-03-10T02:20:59.508474-07:00,1007.444091796875,10.729863,10729.863 +24644,2025-03-10T02:21:10.229425-07:00,1007.43408203125,10.720951,10720.951 +24645,2025-03-10T02:21:20.967422-07:00,1007.4288330078125,10.737997,10737.997 +24646,2025-03-10T02:21:31.694664-07:00,1007.4121704101562,10.727242,10727.242 +24647,2025-03-10T02:21:42.429510-07:00,1007.4104614257812,10.734846,10734.846 +24648,2025-03-10T02:21:53.166839-07:00,1007.4334106445312,10.737329,10737.329 +24649,2025-03-10T02:22:03.897614-07:00,1007.4481201171875,10.730775,10730.775 +24650,2025-03-10T02:22:14.628636-07:00,1007.4495849609375,10.731022,10731.022 +24651,2025-03-10T02:22:25.356619-07:00,1007.4032592773438,10.727983,10727.983 +24652,2025-03-10T02:22:36.085038-07:00,1007.4117431640625,10.728419,10728.419 +24653,2025-03-10T02:22:46.815495-07:00,1007.4263305664062,10.730457,10730.457 +24654,2025-03-10T02:22:57.546622-07:00,1007.41455078125,10.731127,10731.127 +24655,2025-03-10T02:23:08.288615-07:00,1007.40966796875,10.741993,10741.993 +24656,2025-03-10T02:23:19.011498-07:00,1007.39794921875,10.722883,10722.883 +24657,2025-03-10T02:23:29.748722-07:00,1007.3993530273438,10.737224,10737.224 +24658,2025-03-10T02:23:40.481431-07:00,1007.3878784179688,10.732709,10732.709 +24659,2025-03-10T02:23:51.213257-07:00,1007.4092407226562,10.731826,10731.826 +24660,2025-03-10T02:24:01.945427-07:00,1007.389404296875,10.73217,10732.17 +24661,2025-03-10T02:24:12.669675-07:00,1007.3959350585938,10.724248,10724.248 +24662,2025-03-10T02:24:23.406824-07:00,1007.4403076171875,10.737149,10737.149 +24663,2025-03-10T02:24:34.144486-07:00,1007.421875,10.737662,10737.662 +24664,2025-03-10T02:24:44.871426-07:00,1007.4085693359375,10.72694,10726.94 +24665,2025-03-10T02:24:55.597272-07:00,1007.416748046875,10.725846,10725.846 +24666,2025-03-10T02:25:06.329190-07:00,1007.4034423828125,10.731918,10731.918 +24667,2025-03-10T02:25:17.063496-07:00,1007.4081420898438,10.734306,10734.306 +24668,2025-03-10T02:25:27.795599-07:00,1007.427978515625,10.732103,10732.103 +24669,2025-03-10T02:25:38.527423-07:00,1007.4429931640625,10.731824,10731.824 +24670,2025-03-10T02:25:49.264563-07:00,1007.4032592773438,10.73714,10737.14 +24671,2025-03-10T02:25:59.992426-07:00,1007.3981323242188,10.727863,10727.863 +24672,2025-03-10T02:26:10.725731-07:00,1007.3663940429688,10.733305,10733.305 +24673,2025-03-10T02:26:21.456423-07:00,1007.38623046875,10.730692,10730.692 +24674,2025-03-10T02:26:32.188056-07:00,1007.4012451171875,10.731633,10731.633 +24675,2025-03-10T02:26:42.930637-07:00,1007.4107666015625,10.742581,10742.581 +24676,2025-03-10T02:26:53.652421-07:00,1007.4041137695312,10.721784,10721.784 +24677,2025-03-10T02:27:04.390773-07:00,1007.359619140625,10.738352,10738.352 +24678,2025-03-10T02:27:15.123427-07:00,1007.36572265625,10.732654,10732.654 +24679,2025-03-10T02:27:25.848426-07:00,1007.3259887695312,10.724999,10724.999 +24680,2025-03-10T02:27:36.588422-07:00,1007.3024291992188,10.739996,10739.996 +24681,2025-03-10T02:27:47.319651-07:00,1007.3189086914062,10.731229,10731.229 +24682,2025-03-10T02:27:58.046424-07:00,1007.299072265625,10.726773,10726.773 +24683,2025-03-10T02:28:08.783454-07:00,1007.2823486328125,10.73703,10737.03 +24684,2025-03-10T02:28:19.509418-07:00,1007.2918701171875,10.725964,10725.964 +24685,2025-03-10T02:28:30.241266-07:00,1007.2965087890625,10.731848,10731.848 +24686,2025-03-10T02:28:40.974484-07:00,1007.2817993164062,10.733218,10733.218 +24687,2025-03-10T02:28:51.706511-07:00,1007.2798461914062,10.732027,10732.027 +24688,2025-03-10T02:29:02.434066-07:00,1007.3010864257812,10.727555,10727.555 +24689,2025-03-10T02:29:13.163489-07:00,1007.2694702148438,10.729423,10729.423 +24690,2025-03-10T02:29:23.898642-07:00,1007.2740478515625,10.735153,10735.153 +24691,2025-03-10T02:29:34.627597-07:00,1007.2692260742188,10.728955,10728.955 +24692,2025-03-10T02:29:45.366390-07:00,1007.2720947265625,10.738793,10738.793 +24693,2025-03-10T02:29:56.090422-07:00,1007.2522583007812,10.724032,10724.032 +24694,2025-03-10T02:30:06.819598-07:00,1007.2421875,10.729176,10729.176 +24695,2025-03-10T02:30:17.551423-07:00,1007.2667236328125,10.731825,10731.825 +24696,2025-03-10T02:30:28.285491-07:00,1007.2764892578125,10.734068,10734.068 +24697,2025-03-10T02:30:39.018421-07:00,1007.243408203125,10.73293,10732.93 +24698,2025-03-10T02:30:49.745426-07:00,1007.259521484375,10.727005,10727.005 +24699,2025-03-10T02:31:00.474632-07:00,1007.2462768554688,10.729206,10729.206 +24700,2025-03-10T02:31:11.208163-07:00,1007.25439453125,10.733531,10733.531 +24701,2025-03-10T02:31:21.936321-07:00,1007.2523193359375,10.728158,10728.158 +24702,2025-03-10T02:31:32.664425-07:00,1007.2390747070312,10.728104,10728.104 +24703,2025-03-10T02:31:43.403727-07:00,1007.2523193359375,10.739302,10739.302 +24704,2025-03-10T02:31:54.133178-07:00,1007.2540893554688,10.729451,10729.451 +24705,2025-03-10T02:32:04.858492-07:00,1007.235595703125,10.725314,10725.314 +24706,2025-03-10T02:32:15.586607-07:00,1007.2636108398438,10.728115,10728.115 +24707,2025-03-10T02:32:26.317609-07:00,1007.2503051757812,10.731002,10731.002 +24708,2025-03-10T02:32:37.049423-07:00,1007.21728515625,10.731814,10731.814 +24709,2025-03-10T02:32:47.787425-07:00,1007.2402954101562,10.738002,10738.002 +24710,2025-03-10T02:32:58.507635-07:00,1007.2106323242188,10.72021,10720.21 +24711,2025-03-10T02:33:09.243509-07:00,1007.21728515625,10.735874,10735.874 +24712,2025-03-10T02:33:19.971457-07:00,1007.21728515625,10.727948,10727.948 +24713,2025-03-10T02:33:30.691611-07:00,1007.233642578125,10.720154,10720.154 +24714,2025-03-10T02:33:41.424420-07:00,1007.2086791992188,10.732809,10732.809 +24715,2025-03-10T02:33:52.150446-07:00,1007.21240234375,10.726026,10726.026 +24716,2025-03-10T02:34:02.878445-07:00,1007.2190551757812,10.727999,10727.999 +24717,2025-03-10T02:34:13.604815-07:00,1007.2138061523438,10.72637,10726.37 +24718,2025-03-10T02:34:24.327495-07:00,1007.2190551757812,10.72268,10722.68 +24719,2025-03-10T02:34:35.060426-07:00,1007.1775512695312,10.732931,10732.931 +24720,2025-03-10T02:34:45.784449-07:00,1007.2040405273438,10.724023,10724.023 +24721,2025-03-10T02:34:56.513427-07:00,1007.1859130859375,10.728978,10728.978 +24722,2025-03-10T02:35:07.236622-07:00,1007.1925659179688,10.723195,10723.195 +24723,2025-03-10T02:35:17.961983-07:00,1007.1760864257812,10.725361,10725.361 +24724,2025-03-10T02:35:28.695426-07:00,1007.19921875,10.733443,10733.443 +24725,2025-03-10T02:35:39.422701-07:00,1007.2106323242188,10.727275,10727.275 +24726,2025-03-10T02:35:50.147483-07:00,1007.1907958984375,10.724782,10724.782 +24727,2025-03-10T02:36:00.879634-07:00,1007.1727294921875,10.732151,10732.151 +24728,2025-03-10T02:36:11.600627-07:00,1007.2040405273438,10.720993,10720.993 +24729,2025-03-10T02:36:22.326452-07:00,1007.21240234375,10.725825,10725.825 +24730,2025-03-10T02:36:33.059132-07:00,1007.2106323242188,10.73268,10732.68 +24731,2025-03-10T02:36:43.788908-07:00,1007.205810546875,10.729776,10729.776 +24732,2025-03-10T02:36:54.520749-07:00,1007.2040405273438,10.731841,10731.841 +24733,2025-03-10T02:37:05.246621-07:00,1007.2040405273438,10.725872,10725.872 +24734,2025-03-10T02:37:15.969520-07:00,1007.20263671875,10.722899,10722.899 +24735,2025-03-10T02:37:26.700603-07:00,1007.1945190429688,10.731083,10731.083 +24736,2025-03-10T02:37:37.426423-07:00,1007.1893920898438,10.72582,10725.82 +24737,2025-03-10T02:37:48.162543-07:00,1007.1781005859375,10.73612,10736.12 +24738,2025-03-10T02:37:58.881425-07:00,1007.1766967773438,10.718882,10718.882 +24739,2025-03-10T02:38:09.605423-07:00,1007.1928100585938,10.723998,10723.998 +24740,2025-03-10T02:38:20.333619-07:00,1007.1729736328125,10.728196,10728.196 +24741,2025-03-10T02:38:31.059468-07:00,1007.18994140625,10.725849,10725.849 +24742,2025-03-10T02:38:41.796428-07:00,1007.19482421875,10.73696,10736.96 +24743,2025-03-10T02:38:52.520286-07:00,1007.188232421875,10.723858,10723.858 +24744,2025-03-10T02:39:03.245630-07:00,1007.19482421875,10.725344,10725.344 +24745,2025-03-10T02:39:13.971591-07:00,1007.18017578125,10.725961,10725.961 +24746,2025-03-10T02:39:24.700717-07:00,1007.1919555664062,10.729126,10729.126 +24747,2025-03-10T02:39:35.436423-07:00,1007.1754760742188,10.735706,10735.706 +24748,2025-03-10T02:39:46.162658-07:00,1007.16748046875,10.726235,10726.235 +24749,2025-03-10T02:39:56.884424-07:00,1007.160888671875,10.721766,10721.766 +24750,2025-03-10T02:40:07.614459-07:00,1007.177490234375,10.730035,10730.035 +24751,2025-03-10T02:40:18.337425-07:00,1007.177490234375,10.722966,10722.966 +24752,2025-03-10T02:40:29.067518-07:00,1007.1826782226562,10.730093,10730.093 +24753,2025-03-10T02:40:39.795613-07:00,1007.1959228515625,10.728095,10728.095 +24754,2025-03-10T02:40:50.529522-07:00,1007.161376953125,10.733909,10733.909 +24755,2025-03-10T02:41:01.259819-07:00,1007.1746826171875,10.730297,10730.297 +24756,2025-03-10T02:41:11.986627-07:00,1007.1648559570312,10.726808,10726.808 +24757,2025-03-10T02:41:22.706426-07:00,1007.166259765625,10.719799,10719.799 +24758,2025-03-10T02:41:33.435884-07:00,1007.1484375,10.729458,10729.458 +24759,2025-03-10T02:41:44.168423-07:00,1007.1699829101562,10.732539,10732.539 +24760,2025-03-10T02:41:54.896424-07:00,1007.140380859375,10.728001,10728.001 +24761,2025-03-10T02:42:05.617844-07:00,1007.140380859375,10.72142,10721.42 +24762,2025-03-10T02:42:16.346422-07:00,1007.1337280273438,10.728578,10728.578 +24763,2025-03-10T02:42:27.078652-07:00,1007.13720703125,10.73223,10732.23 +24764,2025-03-10T02:42:37.811611-07:00,1007.1173706054688,10.732959,10732.959 +24765,2025-03-10T02:42:48.529425-07:00,1007.1358032226562,10.717814,10717.814 +24766,2025-03-10T02:42:59.258639-07:00,1007.1475219726562,10.729214,10729.214 +24767,2025-03-10T02:43:09.987595-07:00,1007.127685546875,10.728956,10728.956 +24768,2025-03-10T02:43:20.719498-07:00,1007.1489868164062,10.731903,10731.903 +24769,2025-03-10T02:43:31.447819-07:00,1007.1377563476562,10.728321,10728.321 +24770,2025-03-10T02:43:42.181422-07:00,1007.1377563476562,10.733603,10733.603 +24771,2025-03-10T02:43:52.906122-07:00,1007.1377563476562,10.7247,10724.7 +24772,2025-03-10T02:44:03.633195-07:00,1007.1429443359375,10.727073,10727.073 +24773,2025-03-10T02:44:14.352488-07:00,1007.1282958984375,10.719293,10719.293 +24774,2025-03-10T02:44:25.078593-07:00,1007.1414794921875,10.726105,10726.105 +24775,2025-03-10T02:44:35.810635-07:00,1007.105224609375,10.732042,10732.042 +24776,2025-03-10T02:44:46.533425-07:00,1007.103759765625,10.72279,10722.79 +24777,2025-03-10T02:44:57.265450-07:00,1007.1317138671875,10.732025,10732.025 +24778,2025-03-10T02:45:07.994421-07:00,1007.1250610351562,10.728971,10728.971 +24779,2025-03-10T02:45:18.716602-07:00,1007.093994140625,10.722181,10722.181 +24780,2025-03-10T02:45:29.454178-07:00,1007.1204833984375,10.737576,10737.576 +24781,2025-03-10T02:45:40.170771-07:00,1007.1123657226562,10.716593,10716.593 +24782,2025-03-10T02:45:50.904277-07:00,1007.1270141601562,10.733506,10733.506 +24783,2025-03-10T02:46:01.635035-07:00,1007.1040649414062,10.730758,10730.758 +24784,2025-03-10T02:46:12.369481-07:00,1007.1256103515625,10.734446,10734.446 +24785,2025-03-10T02:46:23.093181-07:00,1007.095947265625,10.7237,10723.7 +24786,2025-03-10T02:46:33.827421-07:00,1007.1026000976562,10.73424,10734.24 +24787,2025-03-10T02:46:44.554073-07:00,1007.079833984375,10.726652,10726.652 +24788,2025-03-10T02:46:55.281446-07:00,1007.0931396484375,10.727373,10727.373 +24789,2025-03-10T02:47:06.009427-07:00,1007.1177978515625,10.727981,10727.981 +24790,2025-03-10T02:47:16.744639-07:00,1007.0979614257812,10.735212,10735.212 +24791,2025-03-10T02:47:27.463424-07:00,1007.1031494140625,10.718785,10718.785 +24792,2025-03-10T02:47:38.195586-07:00,1007.1097412109375,10.732162,10732.162 +24793,2025-03-10T02:47:48.918444-07:00,1007.0867309570312,10.722858,10722.858 +24794,2025-03-10T02:47:59.639427-07:00,1007.0950927734375,10.720983,10720.983 +24795,2025-03-10T02:48:10.364513-07:00,1007.0985107421875,10.725086,10725.086 +24796,2025-03-10T02:48:21.097422-07:00,1007.0970458984375,10.732909,10732.909 +24797,2025-03-10T02:48:31.815604-07:00,1007.1051635742188,10.718182,10718.182 +24798,2025-03-10T02:48:42.541415-07:00,1007.075439453125,10.725811,10725.811 +24799,2025-03-10T02:48:53.266002-07:00,1007.1217041015625,10.724587,10724.587 +24800,2025-03-10T02:49:03.996426-07:00,1007.0726318359375,10.730424,10730.424 +24801,2025-03-10T02:49:14.717642-07:00,1007.1056518554688,10.721216,10721.216 +24802,2025-03-10T02:49:25.441573-07:00,1007.12548828125,10.723931,10723.931 +24803,2025-03-10T02:49:36.167489-07:00,1007.1038818359375,10.725916,10725.916 +24804,2025-03-10T02:49:46.895431-07:00,1007.12890625,10.727942,10727.942 +24805,2025-03-10T02:49:57.616423-07:00,1007.11572265625,10.720992,10720.992 +24806,2025-03-10T02:50:08.339587-07:00,1007.122314453125,10.723164,10723.164 +24807,2025-03-10T02:50:19.064627-07:00,1007.10107421875,10.72504,10725.04 +24808,2025-03-10T02:50:29.789602-07:00,1007.0728149414062,10.724975,10724.975 +24809,2025-03-10T02:50:40.514601-07:00,1007.138916015625,10.724999,10724.999 +24810,2025-03-10T02:50:51.239637-07:00,1007.0817260742188,10.725036,10725.036 +24811,2025-03-10T02:51:01.962678-07:00,1007.1124877929688,10.723041,10723.041 +24812,2025-03-10T02:51:12.683478-07:00,1007.08984375,10.7208,10720.8 +24813,2025-03-10T02:51:23.406632-07:00,1007.1148681640625,10.723154,10723.154 +24814,2025-03-10T02:51:34.131423-07:00,1007.113037109375,10.724791,10724.791 +24815,2025-03-10T02:51:44.859611-07:00,1007.0653076171875,10.728188,10728.188 +24816,2025-03-10T02:51:55.586624-07:00,1007.1213989257812,10.727013,10727.013 +24817,2025-03-10T02:52:06.315614-07:00,1007.1182861328125,10.72899,10728.99 +24818,2025-03-10T02:52:17.040455-07:00,1007.0770874023438,10.724841,10724.841 +24819,2025-03-10T02:52:27.769418-07:00,1007.0572509765625,10.728963,10728.963 +24820,2025-03-10T02:52:38.488321-07:00,1007.09375,10.718903,10718.903 +24821,2025-03-10T02:52:49.216425-07:00,1007.1084594726562,10.728104,10728.104 +24822,2025-03-10T02:52:59.879264-07:00,1007.085693359375,10.662839,10662.839 +24823,2025-03-10T02:53:10.604806-07:00,1007.0658569335938,10.725542,10725.542 +24824,2025-03-10T02:53:21.322988-07:00,1007.0773315429688,10.718182,10718.182 +24825,2025-03-10T02:53:32.049011-07:00,1007.0957641601562,10.726023,10726.023 +24826,2025-03-10T02:53:42.771993-07:00,1007.0859375,10.722982,10722.982 +24827,2025-03-10T02:53:53.495809-07:00,1007.0626831054688,10.723816,10723.816 +24828,2025-03-10T02:54:04.221022-07:00,1007.0859375,10.725213,10725.213 +24829,2025-03-10T02:54:14.944893-07:00,1007.0712280273438,10.723871,10723.871 +24830,2025-03-10T02:54:25.661989-07:00,1007.1227416992188,10.717096,10717.096 +24831,2025-03-10T02:54:36.383025-07:00,1007.061767578125,10.721036,10721.036 +24832,2025-03-10T02:54:47.104848-07:00,1007.0750122070312,10.721823,10721.823 +24833,2025-03-10T02:54:57.821846-07:00,1007.053466796875,10.716998,10716.998 +24834,2025-03-10T02:55:08.550069-07:00,1007.0882568359375,10.728223,10728.223 +24835,2025-03-10T02:55:19.269428-07:00,1007.1095581054688,10.719359,10719.359 +24836,2025-03-10T02:55:29.992951-07:00,1007.0733032226562,10.723523,10723.523 +24837,2025-03-10T02:55:40.718829-07:00,1007.0996704101562,10.725878,10725.878 +24838,2025-03-10T02:55:51.446161-07:00,1007.1195068359375,10.727332,10727.332 +24839,2025-03-10T02:56:02.157802-07:00,1007.0916137695312,10.711641,10711.641 +24840,2025-03-10T02:56:12.878838-07:00,1007.0850219726562,10.721036,10721.036 +24841,2025-03-10T02:56:23.605893-07:00,1007.0901489257812,10.727055,10727.055 +24842,2025-03-10T02:56:34.331090-07:00,1007.1017456054688,10.725197,10725.197 +24843,2025-03-10T02:56:45.048915-07:00,1007.1166381835938,10.717825,10717.825 +24844,2025-03-10T02:56:55.775840-07:00,1007.1068725585938,10.726925,10726.925 +24845,2025-03-10T02:57:06.491808-07:00,1007.1017456054688,10.715968,10715.968 +24846,2025-03-10T02:57:17.218900-07:00,1007.12158203125,10.727092,10727.092 +24847,2025-03-10T02:57:27.931805-07:00,1007.0970458984375,10.712905,10712.905 +24848,2025-03-10T02:57:38.658869-07:00,1007.0823364257812,10.727064,10727.064 +24849,2025-03-10T02:57:49.372835-07:00,1007.0722045898438,10.713966,10713.966 +24850,2025-03-10T02:58:00.104087-07:00,1007.0758056640625,10.731252,10731.252 +24851,2025-03-10T02:58:10.816849-07:00,1007.1021728515625,10.712762,10712.762 +24852,2025-03-10T02:58:21.537821-07:00,1007.073974609375,10.720972,10720.972 +24853,2025-03-10T02:58:32.261013-07:00,1007.0722045898438,10.723192,10723.192 +24854,2025-03-10T02:58:42.982000-07:00,1007.0656127929688,10.720987,10720.987 +24855,2025-03-10T02:58:53.706872-07:00,1007.077392578125,10.724872,10724.872 +24856,2025-03-10T02:59:04.419975-07:00,1007.0986938476562,10.713103,10713.103 +24857,2025-03-10T02:59:15.146019-07:00,1007.07421875,10.726044,10726.044 +24858,2025-03-10T02:59:25.866359-07:00,1007.0825805664062,10.72034,10720.34 +24859,2025-03-10T02:59:36.589809-07:00,1007.075927734375,10.72345,10723.45 +24860,2025-03-10T02:59:47.316219-07:00,1007.0713500976562,10.72641,10726.41 +24861,2025-03-10T02:59:58.029973-07:00,1007.0879516601562,10.713754,10713.754 +24862,2025-03-10T03:00:08.758146-07:00,1007.052001953125,10.728173,10728.173 +24863,2025-03-10T03:00:19.477966-07:00,1007.06201171875,10.71982,10719.82 +24864,2025-03-10T03:00:30.198115-07:00,1007.0804443359375,10.720149,10720.149 +24865,2025-03-10T03:00:40.916874-07:00,1007.0574340820312,10.718759,10718.759 +24866,2025-03-10T03:00:51.643999-07:00,1007.0758056640625,10.727125,10727.125 +24867,2025-03-10T03:01:02.362882-07:00,1007.0660400390625,10.718883,10718.883 +24868,2025-03-10T03:01:13.084938-07:00,1007.0829467773438,10.722056,10722.056 +24869,2025-03-10T03:01:23.805807-07:00,1007.0665893554688,10.720869,10720.869 +24870,2025-03-10T03:01:34.522987-07:00,1007.0618896484375,10.71718,10717.18 +24871,2025-03-10T03:01:45.251005-07:00,1007.040771484375,10.728018,10728.018 +24872,2025-03-10T03:01:55.966059-07:00,1007.0398559570312,10.715054,10715.054 +24873,2025-03-10T03:02:06.693804-07:00,1007.0352172851562,10.727745,10727.745 +24874,2025-03-10T03:02:17.410989-07:00,1007.0259399414062,10.717185,10717.185 +24875,2025-03-10T03:02:28.131978-07:00,1007.0873413085938,10.720989,10720.989 +24876,2025-03-10T03:02:38.863880-07:00,1007.079833984375,10.731902,10731.902 +24877,2025-03-10T03:02:49.585991-07:00,1007.05078125,10.722111,10722.111 +24878,2025-03-10T03:03:00.307219-07:00,1007.0362548828125,10.721228,10721.228 +24879,2025-03-10T03:03:11.022803-07:00,1007.0254516601562,10.715584,10715.584 +24880,2025-03-10T03:03:21.751833-07:00,1007.0260009765625,10.72903,10729.03 +24881,2025-03-10T03:03:32.469836-07:00,1007.0543823242188,10.718003,10718.003 +24882,2025-03-10T03:03:43.196990-07:00,1007.0350952148438,10.727154,10727.154 +24883,2025-03-10T03:03:53.917882-07:00,1007.0353393554688,10.720892,10720.892 +24884,2025-03-10T03:04:04.649809-07:00,1007.00244140625,10.731927,10731.927 +24885,2025-03-10T03:04:15.371180-07:00,1007.0109252929688,10.721371,10721.371 +24886,2025-03-10T03:04:26.094812-07:00,1007.0048217773438,10.723632,10723.632 +24887,2025-03-10T03:04:36.811805-07:00,1007.0001831054688,10.716993,10716.993 +24888,2025-03-10T03:04:47.537010-07:00,1006.9888916015625,10.725205,10725.205 +24889,2025-03-10T03:04:58.263414-07:00,1006.9710693359375,10.726404,10726.404 +24890,2025-03-10T03:05:08.982809-07:00,1006.9629516601562,10.719395,10719.395 +24891,2025-03-10T03:05:19.709982-07:00,1006.9649047851562,10.727173,10727.173 +24892,2025-03-10T03:05:30.428156-07:00,1006.9536743164062,10.718174,10718.174 +24893,2025-03-10T03:05:41.152972-07:00,1006.9522094726562,10.724816,10724.816 +24894,2025-03-10T03:05:51.879803-07:00,1006.94384765625,10.726831,10726.831 +24895,2025-03-10T03:06:02.601050-07:00,1006.9654541015625,10.721247,10721.247 +24896,2025-03-10T03:06:13.322855-07:00,1006.94091796875,10.721805,10721.805 +24897,2025-03-10T03:06:24.045887-07:00,1006.94287109375,10.723032,10723.032 +24898,2025-03-10T03:06:34.780130-07:00,1006.9296875,10.734243,10734.243 +24899,2025-03-10T03:06:45.501810-07:00,1006.9296875,10.72168,10721.68 +24900,2025-03-10T03:06:56.229992-07:00,1006.9692993164062,10.728182,10728.182 +24901,2025-03-10T03:07:06.958091-07:00,1006.954345703125,10.728099,10728.099 +24902,2025-03-10T03:07:17.673991-07:00,1006.9345092773438,10.7159,10715.9 +24903,2025-03-10T03:07:28.405810-07:00,1006.954345703125,10.731819,10731.819 +24904,2025-03-10T03:07:39.135011-07:00,1006.9066162109375,10.729201,10729.201 +24905,2025-03-10T03:07:49.853806-07:00,1006.927978515625,10.718795,10718.795 +24906,2025-03-10T03:08:00.589807-07:00,1006.952880859375,10.736001,10736.001 +24907,2025-03-10T03:08:11.316040-07:00,1006.9345092773438,10.726233,10726.233 +24908,2025-03-10T03:08:22.041040-07:00,1006.9212646484375,10.725,10725.0 +24909,2025-03-10T03:08:32.765815-07:00,1006.8900146484375,10.724775,10724.775 +24910,2025-03-10T03:08:43.489881-07:00,1006.8900146484375,10.724066,10724.066 +24911,2025-03-10T03:08:54.215807-07:00,1006.91650390625,10.725926,10725.926 +24912,2025-03-10T03:09:04.944000-07:00,1006.9325561523438,10.728193,10728.193 +24913,2025-03-10T03:09:15.669885-07:00,1006.9259643554688,10.725885,10725.885 +24914,2025-03-10T03:09:26.398161-07:00,1006.8981323242188,10.728276,10728.276 +24915,2025-03-10T03:09:37.126801-07:00,1006.9193725585938,10.72864,10728.64 +24916,2025-03-10T03:09:47.855019-07:00,1006.8881225585938,10.728218,10728.218 +24917,2025-03-10T03:09:58.585816-07:00,1006.9042358398438,10.730797,10730.797 +24918,2025-03-10T03:10:09.313808-07:00,1006.8976440429688,10.727992,10727.992 +24919,2025-03-10T03:10:20.041023-07:00,1006.9140625,10.727215,10727.215 +24920,2025-03-10T03:10:30.764603-07:00,1006.8890380859375,10.72358,10723.58 +24921,2025-03-10T03:10:41.498872-07:00,1006.8810424804688,10.734269,10734.269 +24922,2025-03-10T03:10:52.230803-07:00,1006.877685546875,10.731931,10731.931 +24923,2025-03-10T03:11:02.953861-07:00,1006.8790893554688,10.723058,10723.058 +24924,2025-03-10T03:11:13.673004-07:00,1006.8951416015625,10.719143,10719.143 +24925,2025-03-10T03:11:24.400420-07:00,1006.8819580078125,10.727416,10727.416 +24926,2025-03-10T03:11:35.129802-07:00,1006.8984375,10.729382,10729.382 +24927,2025-03-10T03:11:45.857843-07:00,1006.8998413085938,10.728041,10728.041 +24928,2025-03-10T03:11:56.578901-07:00,1006.8734130859375,10.721058,10721.058 +24929,2025-03-10T03:12:07.308831-07:00,1006.8898315429688,10.72993,10729.93 +24930,2025-03-10T03:12:18.037006-07:00,1006.844970703125,10.728175,10728.175 +24931,2025-03-10T03:12:28.757841-07:00,1006.873291015625,10.720835,10720.835 +24932,2025-03-10T03:12:39.483993-07:00,1006.8746948242188,10.726152,10726.152 +24933,2025-03-10T03:12:50.205954-07:00,1006.8562622070312,10.721961,10721.961 +24934,2025-03-10T03:13:00.940014-07:00,1006.87939453125,10.73406,10734.06 +24935,2025-03-10T03:13:11.657047-07:00,1006.8939819335938,10.717033,10717.033 +24936,2025-03-10T03:13:22.387808-07:00,1006.869384765625,10.730761,10730.761 +24937,2025-03-10T03:13:33.110833-07:00,1006.8576049804688,10.723025,10723.025 +24938,2025-03-10T03:13:43.843804-07:00,1006.8736572265625,10.732971,10732.971 +24939,2025-03-10T03:13:54.563987-07:00,1006.8490600585938,10.720183,10720.183 +24940,2025-03-10T03:14:05.290808-07:00,1006.8804931640625,10.726821,10726.821 +24941,2025-03-10T03:14:16.018023-07:00,1006.8473510742188,10.727215,10727.215 +24942,2025-03-10T03:14:26.754015-07:00,1006.8370361328125,10.735992,10735.992 +24943,2025-03-10T03:14:37.477604-07:00,1006.850341796875,10.723589,10723.589 +24944,2025-03-10T03:14:48.204268-07:00,1006.84033203125,10.726664,10726.664 +24945,2025-03-10T03:14:58.936349-07:00,1006.8534545898438,10.732081,10732.081 +24946,2025-03-10T03:15:09.658805-07:00,1006.8086547851562,10.722456,10722.456 +24947,2025-03-10T03:15:20.384699-07:00,1006.8397827148438,10.725894,10725.894 +24948,2025-03-10T03:15:31.107969-07:00,1006.846435546875,10.72327,10723.27 +24949,2025-03-10T03:15:41.839026-07:00,1006.8150634765625,10.731057,10731.057 +24950,2025-03-10T03:15:52.570944-07:00,1006.8392333984375,10.731918,10731.918 +24951,2025-03-10T03:16:03.296803-07:00,1006.8245239257812,10.725859,10725.859 +24952,2025-03-10T03:16:14.030095-07:00,1006.8259887695312,10.733292,10733.292 +24953,2025-03-10T03:16:24.759829-07:00,1006.8108520507812,10.729734,10729.734 +24954,2025-03-10T03:16:35.483808-07:00,1006.8126831054688,10.723979,10723.979 +24955,2025-03-10T03:16:46.211196-07:00,1006.8206176757812,10.727388,10727.388 +24956,2025-03-10T03:16:56.929984-07:00,1006.8023681640625,10.718788,10718.788 +24957,2025-03-10T03:17:07.654992-07:00,1006.7988891601562,10.725008,10725.008 +24958,2025-03-10T03:17:18.388108-07:00,1006.7988891601562,10.733116,10733.116 +24959,2025-03-10T03:17:29.108050-07:00,1006.8300170898438,10.719942,10719.942 +24960,2025-03-10T03:17:39.836017-07:00,1006.7837524414062,10.727967,10727.967 +24961,2025-03-10T03:17:50.568108-07:00,1006.806396484375,10.732091,10732.091 +24962,2025-03-10T03:18:01.291931-07:00,1006.8162231445312,10.723823,10723.823 +24963,2025-03-10T03:18:12.013808-07:00,1006.8110961914062,10.721877,10721.877 +24964,2025-03-10T03:18:22.746242-07:00,1006.817626953125,10.732434,10732.434 +24965,2025-03-10T03:18:33.471805-07:00,1006.79443359375,10.725563,10725.563 +24966,2025-03-10T03:18:44.190808-07:00,1006.79443359375,10.719003,10719.003 +24967,2025-03-10T03:18:54.918894-07:00,1006.8387451171875,10.728086,10728.086 +24968,2025-03-10T03:19:05.646831-07:00,1006.8220825195312,10.727937,10727.937 +24969,2025-03-10T03:19:16.368983-07:00,1006.8220825195312,10.722152,10722.152 +24970,2025-03-10T03:19:27.086808-07:00,1006.8184204101562,10.717825,10717.825 +24971,2025-03-10T03:19:37.815995-07:00,1006.80517578125,10.729187,10729.187 +24972,2025-03-10T03:19:48.542833-07:00,1006.787109375,10.726838,10726.838 +24973,2025-03-10T03:19:59.267003-07:00,1006.80322265625,10.72417,10724.17 +24974,2025-03-10T03:20:09.987012-07:00,1006.80322265625,10.720009,10720.009 +24975,2025-03-10T03:20:20.717803-07:00,1006.7980346679688,10.730791,10730.791 +24976,2025-03-10T03:20:31.436863-07:00,1006.8211059570312,10.71906,10719.06 +24977,2025-03-10T03:20:42.162107-07:00,1006.7865600585938,10.725244,10725.244 +24978,2025-03-10T03:20:52.884803-07:00,1006.8242797851562,10.722696,10722.696 +24979,2025-03-10T03:21:03.610808-07:00,1006.8272094726562,10.726005,10726.005 +24980,2025-03-10T03:21:14.340223-07:00,1006.819091796875,10.729415,10729.415 +24981,2025-03-10T03:21:25.058818-07:00,1006.810546875,10.718595,10718.595 +24982,2025-03-10T03:21:35.787110-07:00,1006.831787109375,10.728292,10728.292 +24983,2025-03-10T03:21:46.499812-07:00,1006.7921752929688,10.712702,10712.702 +24984,2025-03-10T03:21:57.234909-07:00,1006.787353515625,10.735097,10735.097 +24985,2025-03-10T03:22:07.947808-07:00,1006.8099975585938,10.712899,10712.899 +24986,2025-03-10T03:22:18.682035-07:00,1006.83447265625,10.734227,10734.227 +24987,2025-03-10T03:22:29.403803-07:00,1006.824462890625,10.721768,10721.768 +24988,2025-03-10T03:22:40.122939-07:00,1006.8009643554688,10.719136,10719.136 +24989,2025-03-10T03:22:50.856618-07:00,1006.8107299804688,10.733679,10733.679 +24990,2025-03-10T03:23:01.574054-07:00,1006.8219604492188,10.717436,10717.436 +24991,2025-03-10T03:23:11.797144-07:00,1006.7823486328125,10.22309,10223.09 +24992,2025-03-10T03:23:12.304134-07:00,1006.8153076171875,0.50699,506.99 +24993,2025-03-10T03:23:23.033830-07:00,1006.7935180664062,10.729696,10729.696 +24994,2025-03-10T03:23:33.760028-07:00,1006.7915649414062,10.726198,10726.198 +24995,2025-03-10T03:23:44.490483-07:00,1006.758544921875,10.730455,10730.455 +24996,2025-03-10T03:23:55.209905-07:00,1006.7499389648438,10.719422,10719.422 +24997,2025-03-10T03:24:05.930973-07:00,1006.7876586914062,10.721068,10721.068 +24998,2025-03-10T03:24:16.662806-07:00,1006.7692260742188,10.731833,10731.833 +24999,2025-03-10T03:24:27.389821-07:00,1006.7540893554688,10.727015,10727.015 +25000,2025-03-10T03:24:38.121036-07:00,1006.7276000976562,10.731215,10731.215 +25001,2025-03-10T03:24:48.848033-07:00,1006.7718505859375,10.726997,10726.997 +25002,2025-03-10T03:24:59.573004-07:00,1006.7548217773438,10.724971,10724.971 +25003,2025-03-10T03:25:10.306010-07:00,1006.7532958984375,10.733006,10733.006 +25004,2025-03-10T03:25:21.023809-07:00,1006.7615356445312,10.717799,10717.799 +25005,2025-03-10T03:25:31.747801-07:00,1006.7711181640625,10.723992,10723.992 +25006,2025-03-10T03:25:42.477810-07:00,1006.7595825195312,10.730009,10730.009 +25007,2025-03-10T03:25:53.205262-07:00,1006.76904296875,10.727452,10727.452 +25008,2025-03-10T03:26:03.929839-07:00,1006.7723388671875,10.724577,10724.577 +25009,2025-03-10T03:26:14.656019-07:00,1006.7510375976562,10.72618,10726.18 +25010,2025-03-10T03:26:25.377803-07:00,1006.7637329101562,10.721784,10721.784 +25011,2025-03-10T03:26:36.109242-07:00,1006.743896484375,10.731439,10731.439 +25012,2025-03-10T03:26:46.830886-07:00,1006.76513671875,10.721644,10721.644 +25013,2025-03-10T03:26:57.560802-07:00,1006.7665405273438,10.729916,10729.916 +25014,2025-03-10T03:27:08.279838-07:00,1006.768310546875,10.719036,10719.036 +25015,2025-03-10T03:27:19.011808-07:00,1006.7352905273438,10.73197,10731.97 +25016,2025-03-10T03:27:29.736617-07:00,1006.7514038085938,10.724809,10724.809 +25017,2025-03-10T03:27:40.461801-07:00,1006.7499389648438,10.725184,10725.184 +25018,2025-03-10T03:27:51.188519-07:00,1006.7432861328125,10.726718,10726.718 +25019,2025-03-10T03:28:01.912039-07:00,1006.7315673828125,10.72352,10723.52 +25020,2025-03-10T03:28:12.632049-07:00,1006.7531127929688,10.72001,10720.01 +25021,2025-03-10T03:28:23.363181-07:00,1006.7493896484375,10.731132,10731.132 +25022,2025-03-10T03:28:34.079841-07:00,1006.777587890625,10.71666,10716.66 +25023,2025-03-10T03:28:44.803735-07:00,1006.7559204101562,10.723894,10723.894 +25024,2025-03-10T03:28:55.526926-07:00,1006.7559204101562,10.723191,10723.191 +25025,2025-03-10T03:29:06.261208-07:00,1006.777587890625,10.734282,10734.282 +25026,2025-03-10T03:29:16.987807-07:00,1006.7658081054688,10.726599,10726.599 +25027,2025-03-10T03:29:27.709810-07:00,1006.7842407226562,10.722003,10722.003 +25028,2025-03-10T03:29:38.432504-07:00,1006.7757568359375,10.722694,10722.694 +25029,2025-03-10T03:29:49.162963-07:00,1006.7824096679688,10.730459,10730.459 +25030,2025-03-10T03:29:59.884634-07:00,1006.7559204101562,10.721671,10721.671 +25031,2025-03-10T03:30:10.613810-07:00,1006.7974243164062,10.729176,10729.176 +25032,2025-03-10T03:30:21.332053-07:00,1006.790771484375,10.718243,10718.243 +25033,2025-03-10T03:30:32.061954-07:00,1006.7743530273438,10.729901,10729.901 +25034,2025-03-10T03:30:42.792819-07:00,1006.7479858398438,10.730865,10730.865 +25035,2025-03-10T03:30:53.512016-07:00,1006.7479858398438,10.719197,10719.197 +25036,2025-03-10T03:31:04.236878-07:00,1006.7625732421875,10.724862,10724.862 +25037,2025-03-10T03:31:14.972882-07:00,1006.766357421875,10.736004,10736.004 +25038,2025-03-10T03:31:25.699920-07:00,1006.7545166015625,10.727038,10727.038 +25039,2025-03-10T03:31:36.418015-07:00,1006.7464599609375,10.718095,10718.095 +25040,2025-03-10T03:31:47.149807-07:00,1006.7545166015625,10.731792,10731.792 +25041,2025-03-10T03:31:57.872026-07:00,1006.7597045898438,10.722219,10722.219 +25042,2025-03-10T03:32:08.597381-07:00,1006.7332763671875,10.725355,10725.355 +25043,2025-03-10T03:32:19.315815-07:00,1006.7398681640625,10.718434,10718.434 +25044,2025-03-10T03:32:30.036806-07:00,1006.710205078125,10.720991,10720.991 +25045,2025-03-10T03:32:40.761150-07:00,1006.7380981445312,10.724344,10724.344 +25046,2025-03-10T03:32:51.488982-07:00,1006.7249145507812,10.727832,10727.832 +25047,2025-03-10T03:33:02.221153-07:00,1006.7249145507812,10.732171,10732.171 +25048,2025-03-10T03:33:12.938275-07:00,1006.7301025390625,10.717122,10717.122 +25049,2025-03-10T03:33:23.676022-07:00,1006.7117309570312,10.737747,10737.747 +25050,2025-03-10T03:33:34.397335-07:00,1006.710205078125,10.721313,10721.313 +25051,2025-03-10T03:33:45.126224-07:00,1006.7366943359375,10.728889,10728.889 +25052,2025-03-10T03:33:55.852805-07:00,1006.67578125,10.726581,10726.581 +25053,2025-03-10T03:34:06.576023-07:00,1006.6956176757812,10.723218,10723.218 +25054,2025-03-10T03:34:17.304146-07:00,1006.700439453125,10.728123,10728.123 +25055,2025-03-10T03:34:28.037806-07:00,1006.6871948242188,10.73366,10733.66 +25056,2025-03-10T03:34:38.757976-07:00,1006.7056274414062,10.72017,10720.17 +25057,2025-03-10T03:34:49.482809-07:00,1006.69384765625,10.724833,10724.833 +25058,2025-03-10T03:35:00.210008-07:00,1006.6923217773438,10.727199,10727.199 +25059,2025-03-10T03:35:10.924805-07:00,1006.69384765625,10.714797,10714.797 +25060,2025-03-10T03:35:21.650958-07:00,1006.677734375,10.726153,10726.153 +25061,2025-03-10T03:35:32.384214-07:00,1006.6975708007812,10.733256,10733.256 +25062,2025-03-10T03:35:43.109935-07:00,1006.6759643554688,10.725721,10725.721 +25063,2025-03-10T03:35:53.835982-07:00,1006.6923217773438,10.726047,10726.047 +25064,2025-03-10T03:36:04.555808-07:00,1006.66796875,10.719826,10719.826 +25065,2025-03-10T03:36:15.279990-07:00,1006.68115234375,10.724182,10724.182 +25066,2025-03-10T03:36:26.001962-07:00,1006.6995239257812,10.721972,10721.972 +25067,2025-03-10T03:36:36.731023-07:00,1006.6897583007812,10.729061,10729.061 +25068,2025-03-10T03:36:47.456805-07:00,1006.6981201171875,10.725782,10725.782 +25069,2025-03-10T03:36:58.180809-07:00,1006.6817016601562,10.724004,10724.004 +25070,2025-03-10T03:37:08.912060-07:00,1006.7029418945312,10.731251,10731.251 +25071,2025-03-10T03:37:19.638012-07:00,1006.66845703125,10.725952,10725.952 +25072,2025-03-10T03:37:30.360995-07:00,1006.671875,10.722983,10722.983 +25073,2025-03-10T03:37:41.087803-07:00,1006.6771240234375,10.726808,10726.808 +25074,2025-03-10T03:37:51.809885-07:00,1006.6771240234375,10.722082,10722.082 +25075,2025-03-10T03:38:02.539085-07:00,1006.66064453125,10.7292,10729.2 +25076,2025-03-10T03:38:13.268810-07:00,1006.6871337890625,10.729725,10729.725 +25077,2025-03-10T03:38:23.985806-07:00,1006.6923217773438,10.716996,10716.996 +25078,2025-03-10T03:38:34.714181-07:00,1006.6707153320312,10.728375,10728.375 +25079,2025-03-10T03:38:45.437970-07:00,1006.6688842773438,10.723789,10723.789 +25080,2025-03-10T03:38:56.165577-07:00,1006.65576171875,10.727607,10727.607 +25081,2025-03-10T03:39:06.882987-07:00,1006.6953735351562,10.71741,10717.41 +25082,2025-03-10T03:39:17.607906-07:00,1006.6643676757812,10.724919,10724.919 +25083,2025-03-10T03:39:28.334862-07:00,1006.651123046875,10.726956,10726.956 +25084,2025-03-10T03:39:39.063829-07:00,1006.6709594726562,10.728967,10728.967 +25085,2025-03-10T03:39:49.783221-07:00,1006.6482543945312,10.719392,10719.392 +25086,2025-03-10T03:40:00.504808-07:00,1006.649658203125,10.721587,10721.587 +25087,2025-03-10T03:40:11.233807-07:00,1006.6680297851562,10.728999,10728.999 +25088,2025-03-10T03:40:21.956990-07:00,1006.6482543945312,10.723183,10723.183 +25089,2025-03-10T03:40:32.678872-07:00,1006.6582641601562,10.721882,10721.882 +25090,2025-03-10T03:40:43.402990-07:00,1006.6878662109375,10.724118,10724.118 +25091,2025-03-10T03:40:54.122808-07:00,1006.6355590820312,10.719818,10719.818 +25092,2025-03-10T03:41:04.842843-07:00,1006.650146484375,10.720035,10720.035 +25093,2025-03-10T03:41:15.569805-07:00,1006.6685791015625,10.726962,10726.962 +25094,2025-03-10T03:41:26.289994-07:00,1006.6800537109375,10.720189,10720.189 +25095,2025-03-10T03:41:37.015805-07:00,1006.6456298828125,10.725811,10725.811 +25096,2025-03-10T03:41:47.747009-07:00,1006.6292114257812,10.731204,10731.204 +25097,2025-03-10T03:41:58.471172-07:00,1006.6292114257812,10.724163,10724.163 +25098,2025-03-10T03:42:09.196809-07:00,1006.6507568359375,10.725637,10725.637 +25099,2025-03-10T03:42:19.921367-07:00,1006.6475830078125,10.724558,10724.558 +25100,2025-03-10T03:42:30.651010-07:00,1006.6328735351562,10.729643,10729.643 +25101,2025-03-10T03:42:41.376820-07:00,1006.6196899414062,10.72581,10725.81 +25102,2025-03-10T03:42:52.106965-07:00,1006.6328735351562,10.730145,10730.145 +25103,2025-03-10T03:43:02.824008-07:00,1006.6560668945312,10.717043,10717.043 +25104,2025-03-10T03:43:13.553990-07:00,1006.6296997070312,10.729982,10729.982 +25105,2025-03-10T03:43:24.281809-07:00,1006.603271484375,10.727819,10727.819 +25106,2025-03-10T03:43:34.999629-07:00,1006.6348266601562,10.71782,10717.82 +25107,2025-03-10T03:43:45.731019-07:00,1006.616455078125,10.73139,10731.39 +25108,2025-03-10T03:43:56.458136-07:00,1006.6481323242188,10.727117,10727.117 +25109,2025-03-10T03:44:07.179806-07:00,1006.605224609375,10.72167,10721.67 +25110,2025-03-10T03:44:17.903842-07:00,1006.6217041015625,10.724036,10724.036 +25111,2025-03-10T03:44:28.629826-07:00,1006.6268920898438,10.725984,10725.984 +25112,2025-03-10T03:44:39.351010-07:00,1006.6004028320312,10.721184,10721.184 +25113,2025-03-10T03:44:50.070805-07:00,1006.618408203125,10.719795,10719.795 +25114,2025-03-10T03:45:00.791805-07:00,1006.618408203125,10.721,10721.0 +25115,2025-03-10T03:45:11.516140-07:00,1006.5906372070312,10.724335,10724.335 +25116,2025-03-10T03:45:22.240811-07:00,1006.6170043945312,10.724671,10724.671 +25117,2025-03-10T03:45:32.965802-07:00,1006.6038208007812,10.724991,10724.991 +25118,2025-03-10T03:45:43.687807-07:00,1006.57421875,10.722005,10722.005 +25119,2025-03-10T03:45:54.408898-07:00,1006.6156005859375,10.721091,10721.091 +25120,2025-03-10T03:46:05.134972-07:00,1006.593994140625,10.726074,10726.074 +25121,2025-03-10T03:46:15.857987-07:00,1006.580810546875,10.723015,10723.015 +25122,2025-03-10T03:46:26.573687-07:00,1006.5859375,10.7157,10715.7 +25123,2025-03-10T03:46:37.301001-07:00,1006.5873413085938,10.727314,10727.314 +25124,2025-03-10T03:46:48.020809-07:00,1006.5873413085938,10.719808,10719.808 +25125,2025-03-10T03:46:58.741774-07:00,1006.577880859375,10.720965,10720.965 +25126,2025-03-10T03:47:09.460018-07:00,1006.5761108398438,10.718244,10718.244 +25127,2025-03-10T03:47:20.185978-07:00,1006.5614624023438,10.72596,10725.96 +25128,2025-03-10T03:47:30.913808-07:00,1006.5864868164062,10.72783,10727.83 +25129,2025-03-10T03:47:41.635194-07:00,1006.6011962890625,10.721386,10721.386 +25130,2025-03-10T03:47:52.359803-07:00,1006.5864868164062,10.724609,10724.609 +25131,2025-03-10T03:48:03.080011-07:00,1006.56494140625,10.720208,10720.208 +25132,2025-03-10T03:48:13.801834-07:00,1006.56494140625,10.721823,10721.823 +25133,2025-03-10T03:48:24.530610-07:00,1006.584716796875,10.728776,10728.776 +25134,2025-03-10T03:48:35.248805-07:00,1006.5884399414062,10.718195,10718.195 +25135,2025-03-10T03:48:45.977882-07:00,1006.5767211914062,10.729077,10729.077 +25136,2025-03-10T03:48:56.694834-07:00,1006.5801391601562,10.716952,10716.952 +25137,2025-03-10T03:49:07.420860-07:00,1006.568603515625,10.726026,10726.026 +25138,2025-03-10T03:49:18.139805-07:00,1006.5801391601562,10.718945,10718.945 +25139,2025-03-10T03:49:28.862018-07:00,1006.5740356445312,10.722213,10722.213 +25140,2025-03-10T03:49:39.585836-07:00,1006.5772094726562,10.723818,10723.818 +25141,2025-03-10T03:49:50.307987-07:00,1006.5823364257812,10.722151,10722.151 +25142,2025-03-10T03:50:01.034847-07:00,1006.5909423828125,10.72686,10726.86 +25143,2025-03-10T03:50:11.761804-07:00,1006.5857543945312,10.726957,10726.957 +25144,2025-03-10T03:50:22.476974-07:00,1006.6056518554688,10.71517,10715.17 +25145,2025-03-10T03:50:33.211805-07:00,1006.5843505859375,10.734831,10734.831 +25146,2025-03-10T03:50:43.929992-07:00,1006.5759887695312,10.718187,10718.187 +25147,2025-03-10T03:50:54.658808-07:00,1006.56591796875,10.728816,10728.816 +25148,2025-03-10T03:51:05.379822-07:00,1006.548095703125,10.721014,10721.014 +25149,2025-03-10T03:51:16.103480-07:00,1006.5943603515625,10.723658,10723.658 +25150,2025-03-10T03:51:26.828393-07:00,1006.5714111328125,10.724913,10724.913 +25151,2025-03-10T03:51:37.558826-07:00,1006.5665893554688,10.730433,10730.433 +25152,2025-03-10T03:51:48.279805-07:00,1006.6095581054688,10.720979,10720.979 +25153,2025-03-10T03:51:59.007999-07:00,1006.619384765625,10.728194,10728.194 +25154,2025-03-10T03:52:09.732385-07:00,1006.5618896484375,10.724386,10724.386 +25155,2025-03-10T03:52:20.458979-07:00,1006.6043701171875,10.726594,10726.594 +25156,2025-03-10T03:52:31.176806-07:00,1006.61474609375,10.717827,10717.827 +25157,2025-03-10T03:52:41.908808-07:00,1006.5800170898438,10.732002,10732.002 +25158,2025-03-10T03:52:52.623809-07:00,1006.622802734375,10.715001,10715.001 +25159,2025-03-10T03:53:03.437521-07:00,1006.6162719726562,10.813712,10813.712 +25160,2025-03-10T03:53:14.158684-07:00,1006.5784912109375,10.721163,10721.163 +25161,2025-03-10T03:53:24.880390-07:00,1006.6314086914062,10.721706,10721.706 +25162,2025-03-10T03:53:35.607595-07:00,1006.5917358398438,10.727205,10727.205 +25163,2025-03-10T03:53:46.331365-07:00,1006.595458984375,10.72377,10723.77 +25164,2025-03-10T03:53:57.050425-07:00,1006.595458984375,10.71906,10719.06 +25165,2025-03-10T03:54:07.771370-07:00,1006.5822143554688,10.720945,10720.945 +25166,2025-03-10T03:54:18.486364-07:00,1006.5804443359375,10.714994,10714.994 +25167,2025-03-10T03:54:29.207798-07:00,1006.5756225585938,10.721434,10721.434 +25168,2025-03-10T03:54:39.936361-07:00,1006.5393676757812,10.728563,10728.563 +25169,2025-03-10T03:54:50.655366-07:00,1006.5856323242188,10.719005,10719.005 +25170,2025-03-10T03:55:01.371442-07:00,1006.5804443359375,10.716076,10716.076 +25171,2025-03-10T03:55:12.097541-07:00,1006.5709228515625,10.726099,10726.099 +25172,2025-03-10T03:55:22.820362-07:00,1006.57763671875,10.722821,10722.821 +25173,2025-03-10T03:55:33.541501-07:00,1006.5445556640625,10.721139,10721.139 +25174,2025-03-10T03:55:44.258363-07:00,1006.5531005859375,10.716862,10716.862 +25175,2025-03-10T03:55:54.986542-07:00,1006.5596923828125,10.728179,10728.179 +25176,2025-03-10T03:56:05.704533-07:00,1006.5617065429688,10.717991,10717.991 +25177,2025-03-10T03:56:16.430371-07:00,1006.58154296875,10.725838,10725.838 +25178,2025-03-10T03:56:27.151501-07:00,1006.509033203125,10.72113,10721.13 +25179,2025-03-10T03:56:37.876639-07:00,1006.49951171875,10.725138,10725.138 +25180,2025-03-10T03:56:48.598426-07:00,1006.509521484375,10.721787,10721.787 +25181,2025-03-10T03:56:59.324364-07:00,1006.5147705078125,10.725938,10725.938 +25182,2025-03-10T03:57:10.041364-07:00,1006.5299072265625,10.717,10717.0 +25183,2025-03-10T03:57:20.768411-07:00,1006.5350952148438,10.727047,10727.047 +25184,2025-03-10T03:57:31.494225-07:00,1006.5399169921875,10.725814,10725.814 +25185,2025-03-10T03:57:42.217363-07:00,1006.5140380859375,10.723138,10723.138 +25186,2025-03-10T03:57:52.933684-07:00,1006.517822265625,10.716321,10716.321 +25187,2025-03-10T03:58:03.661363-07:00,1006.4998168945312,10.727679,10727.679 +25188,2025-03-10T03:58:14.377522-07:00,1006.5119018554688,10.716159,10716.159 +25189,2025-03-10T03:58:25.102567-07:00,1006.4970092773438,10.725045,10725.045 +25190,2025-03-10T03:58:35.832529-07:00,1006.5108032226562,10.729962,10729.962 +25191,2025-03-10T03:58:46.554362-07:00,1006.47509765625,10.721833,10721.833 +25192,2025-03-10T03:58:57.273575-07:00,1006.5006103515625,10.719213,10719.213 +25193,2025-03-10T03:59:08.001359-07:00,1006.4945068359375,10.727784,10727.784 +25194,2025-03-10T03:59:18.726367-07:00,1006.488037109375,10.725008,10725.008 +25195,2025-03-10T03:59:29.446433-07:00,1006.4937744140625,10.720066,10720.066 +25196,2025-03-10T03:59:40.177607-07:00,1006.48583984375,10.731174,10731.174 +25197,2025-03-10T03:59:50.895422-07:00,1006.4863891601562,10.717815,10717.815 +25198,2025-03-10T04:00:01.617429-07:00,1006.5133056640625,10.722007,10722.007 +25199,2025-03-10T04:00:12.341028-07:00,1006.485595703125,10.723599,10723.599 +25200,2025-03-10T04:00:23.072388-07:00,1006.46484375,10.73136,10731.36 +25201,2025-03-10T04:00:33.794785-07:00,1006.4946899414062,10.722397,10722.397 +25202,2025-03-10T04:00:44.509462-07:00,1006.475341796875,10.714677,10714.677 +25203,2025-03-10T04:00:55.239530-07:00,1006.478759765625,10.730068,10730.068 +25204,2025-03-10T04:01:05.962389-07:00,1006.4806518554688,10.722859,10722.859 +25205,2025-03-10T04:01:16.688572-07:00,1006.4710693359375,10.726183,10726.183 +25206,2025-03-10T04:01:27.412363-07:00,1006.5023193359375,10.723791,10723.791 +25207,2025-03-10T04:01:38.130303-07:00,1006.4779663085938,10.71794,10717.94 +25208,2025-03-10T04:01:48.857372-07:00,1006.5147094726562,10.727069,10727.069 +25209,2025-03-10T04:01:59.576567-07:00,1006.4718017578125,10.719195,10719.195 +25210,2025-03-10T04:02:10.305359-07:00,1006.4651489257812,10.728792,10728.792 +25211,2025-03-10T04:02:21.027560-07:00,1006.4671630859375,10.722201,10722.201 +25212,2025-03-10T04:02:31.751387-07:00,1006.4737548828125,10.723827,10723.827 +25213,2025-03-10T04:02:42.475457-07:00,1006.4708862304688,10.72407,10724.07 +25214,2025-03-10T04:02:53.200097-07:00,1006.4822387695312,10.72464,10724.64 +25215,2025-03-10T04:03:03.919358-07:00,1006.4774780273438,10.719261,10719.261 +25216,2025-03-10T04:03:14.641665-07:00,1006.4874267578125,10.722307,10722.307 +25217,2025-03-10T04:03:25.368387-07:00,1006.4397583007812,10.726722,10726.722 +25218,2025-03-10T04:03:36.091744-07:00,1006.4595336914062,10.723357,10723.357 +25219,2025-03-10T04:03:46.814361-07:00,1006.4181518554688,10.722617,10722.617 +25220,2025-03-10T04:03:57.543360-07:00,1006.4397583007812,10.728999,10728.999 +25221,2025-03-10T04:04:08.270360-07:00,1006.429931640625,10.727,10727.0 +25222,2025-03-10T04:04:18.986767-07:00,1006.4512329101562,10.716407,10716.407 +25223,2025-03-10T04:04:29.708361-07:00,1006.3719482421875,10.721594,10721.594 +25224,2025-03-10T04:04:40.440364-07:00,1006.3851318359375,10.732003,10732.003 +25225,2025-03-10T04:04:51.159510-07:00,1006.4015502929688,10.719146,10719.146 +25226,2025-03-10T04:05:01.890565-07:00,1006.400146484375,10.731055,10731.055 +25227,2025-03-10T04:05:12.606496-07:00,1006.3936157226562,10.715931,10715.931 +25228,2025-03-10T04:05:23.338365-07:00,1006.403076171875,10.731869,10731.869 +25229,2025-03-10T04:05:34.065390-07:00,1006.408203125,10.727025,10727.025 +25230,2025-03-10T04:05:44.784361-07:00,1006.388427734375,10.718971,10718.971 +25231,2025-03-10T04:05:55.514547-07:00,1006.412841796875,10.730186,10730.186 +25232,2025-03-10T04:06:06.239533-07:00,1006.427490234375,10.724986,10724.986 +25233,2025-03-10T04:06:16.967360-07:00,1006.3798217773438,10.727827,10727.827 +25234,2025-03-10T04:06:27.692554-07:00,1006.3746948242188,10.725194,10725.194 +25235,2025-03-10T04:06:38.419575-07:00,1006.3760986328125,10.727021,10727.021 +25236,2025-03-10T04:06:49.143570-07:00,1006.37939453125,10.723995,10723.995 +25237,2025-03-10T04:06:59.864381-07:00,1006.358154296875,10.720811,10720.811 +25238,2025-03-10T04:07:10.590365-07:00,1006.3646850585938,10.725984,10725.984 +25239,2025-03-10T04:07:21.317607-07:00,1006.36279296875,10.727242,10727.242 +25240,2025-03-10T04:07:32.045546-07:00,1006.3590698242188,10.727939,10727.939 +25241,2025-03-10T04:07:42.764875-07:00,1006.3820190429688,10.719329,10719.329 +25242,2025-03-10T04:07:53.494565-07:00,1006.3490600585938,10.72969,10729.69 +25243,2025-03-10T04:08:04.213542-07:00,1006.3490600585938,10.718977,10718.977 +25244,2025-03-10T04:08:14.942364-07:00,1006.352294921875,10.728822,10728.822 +25245,2025-03-10T04:08:25.666576-07:00,1006.3404541015625,10.724212,10724.212 +25246,2025-03-10T04:08:36.388567-07:00,1006.3584594726562,10.721991,10721.991 +25247,2025-03-10T04:08:47.119430-07:00,1006.3451538085938,10.730863,10730.863 +25248,2025-03-10T04:08:57.844204-07:00,1006.34814453125,10.724774,10724.774 +25249,2025-03-10T04:09:08.569730-07:00,1006.34326171875,10.725526,10725.526 +25250,2025-03-10T04:09:19.294540-07:00,1006.3563842773438,10.72481,10724.81 +25251,2025-03-10T04:09:30.024562-07:00,1006.328125,10.730022,10730.022 +25252,2025-03-10T04:09:40.745724-07:00,1006.3263549804688,10.721162,10721.162 +25253,2025-03-10T04:09:51.484527-07:00,1006.3016967773438,10.738803,10738.803 +25254,2025-03-10T04:10:02.204425-07:00,1006.334228515625,10.719898,10719.898 +25255,2025-03-10T04:10:12.939542-07:00,1006.3275756835938,10.735117,10735.117 +25256,2025-03-10T04:10:23.661369-07:00,1006.3290405273438,10.721827,10721.827 +25257,2025-03-10T04:10:34.395438-07:00,1006.3224487304688,10.734069,10734.069 +25258,2025-03-10T04:10:45.127503-07:00,1006.3204956054688,10.732065,10732.065 +25259,2025-03-10T04:10:55.856529-07:00,1006.359619140625,10.729026,10729.026 +25260,2025-03-10T04:11:06.581365-07:00,1006.317138671875,10.724836,10724.836 +25261,2025-03-10T04:11:17.307577-07:00,1006.3251342773438,10.726212,10726.212 +25262,2025-03-10T04:11:28.032361-07:00,1006.3312377929688,10.724784,10724.784 +25263,2025-03-10T04:11:38.754487-07:00,1006.326416015625,10.722126,10722.126 +25264,2025-03-10T04:11:49.487363-07:00,1006.3623657226562,10.732876,10732.876 +25265,2025-03-10T04:12:00.205546-07:00,1006.314697265625,10.718183,10718.183 +25266,2025-03-10T04:12:10.926421-07:00,1006.3574829101562,10.720875,10720.875 +25267,2025-03-10T04:12:21.661564-07:00,1006.340576171875,10.735143,10735.143 +25268,2025-03-10T04:12:32.383012-07:00,1006.34716796875,10.721448,10721.448 +25269,2025-03-10T04:12:43.114362-07:00,1006.351806640625,10.73135,10731.35 +25270,2025-03-10T04:12:53.834547-07:00,1006.3616333007812,10.720185,10720.185 +25271,2025-03-10T04:13:04.566362-07:00,1006.3484497070312,10.731815,10731.815 +25272,2025-03-10T04:13:05.435558-07:00,1006.337158203125,0.869196,869.196 +25273,2025-03-10T04:13:15.287359-07:00,1006.3087768554688,9.851801,9851.801 +25274,2025-03-10T04:13:26.022549-07:00,1006.32861328125,10.73519,10735.19 +25275,2025-03-10T04:13:36.749388-07:00,1006.33984375,10.726839,10726.839 +25276,2025-03-10T04:13:47.470538-07:00,1006.3577270507812,10.72115,10721.15 +25277,2025-03-10T04:13:58.192434-07:00,1006.3445434570312,10.721896,10721.896 +25278,2025-03-10T04:14:08.919582-07:00,1006.3312377929688,10.727148,10727.148 +25279,2025-03-10T04:14:19.652538-07:00,1006.3473510742188,10.732956,10732.956 +25280,2025-03-10T04:14:30.377433-07:00,1006.3359375,10.724895,10724.895 +25281,2025-03-10T04:14:41.107373-07:00,1006.3373413085938,10.72994,10729.94 +25282,2025-03-10T04:14:51.829366-07:00,1006.34033203125,10.721993,10721.993 +25283,2025-03-10T04:15:02.561541-07:00,1006.34033203125,10.732175,10732.175 +25284,2025-03-10T04:15:13.285603-07:00,1006.3434448242188,10.724062,10724.062 +25285,2025-03-10T04:15:24.012462-07:00,1006.3449096679688,10.726859,10726.859 +25286,2025-03-10T04:15:34.739525-07:00,1006.340087890625,10.727063,10727.063 +25287,2025-03-10T04:15:45.470560-07:00,1006.3348999023438,10.731035,10731.035 +25288,2025-03-10T04:15:56.199357-07:00,1006.34619140625,10.728797,10728.797 +25289,2025-03-10T04:16:06.932556-07:00,1006.3395385742188,10.733199,10733.199 +25290,2025-03-10T04:16:17.657931-07:00,1006.349365234375,10.725375,10725.375 +25291,2025-03-10T04:16:28.396362-07:00,1006.3507690429688,10.738431,10738.431 +25292,2025-03-10T04:16:39.118559-07:00,1006.347412109375,10.722197,10722.197 +25293,2025-03-10T04:16:49.851362-07:00,1006.35546875,10.732803,10732.803 +25294,2025-03-10T04:17:00.579105-07:00,1006.35546875,10.727743,10727.743 +25295,2025-03-10T04:17:11.305184-07:00,1006.3224487304688,10.726079,10726.079 +25296,2025-03-10T04:17:22.045633-07:00,1006.3385009765625,10.740449,10740.449 +25297,2025-03-10T04:17:32.776565-07:00,1006.3204956054688,10.730932,10730.932 +25298,2025-03-10T04:17:43.504549-07:00,1006.34521484375,10.727984,10727.984 +25299,2025-03-10T04:17:54.236372-07:00,1006.3283081054688,10.731823,10731.823 +25300,2025-03-10T04:18:04.965359-07:00,1006.2886962890625,10.728987,10728.987 +25301,2025-03-10T04:18:15.691544-07:00,1006.2818603515625,10.726185,10726.185 +25302,2025-03-10T04:18:26.415943-07:00,1006.3045043945312,10.724399,10724.399 +25303,2025-03-10T04:18:37.152559-07:00,1006.3078002929688,10.736616,10736.616 +25304,2025-03-10T04:18:47.881583-07:00,1006.2709350585938,10.729024,10729.024 +25305,2025-03-10T04:18:58.606566-07:00,1006.2529907226562,10.724983,10724.983 +25306,2025-03-10T04:19:09.333539-07:00,1006.270751953125,10.726973,10726.973 +25307,2025-03-10T04:19:20.061364-07:00,1006.2523193359375,10.727825,10727.825 +25308,2025-03-10T04:19:30.786848-07:00,1006.2489624023438,10.725484,10725.484 +25309,2025-03-10T04:19:41.515680-07:00,1006.3093872070312,10.728832,10728.832 +25310,2025-03-10T04:19:52.238821-07:00,1006.2960815429688,10.723141,10723.141 +25311,2025-03-10T04:20:02.975577-07:00,1006.290771484375,10.736756,10736.756 +25312,2025-03-10T04:20:13.702389-07:00,1006.2935791015625,10.726812,10726.812 +25313,2025-03-10T04:20:24.431424-07:00,1006.2902221679688,10.729035,10729.035 +25314,2025-03-10T04:20:35.154758-07:00,1006.2882690429688,10.723334,10723.334 +25315,2025-03-10T04:20:45.885558-07:00,1006.2980346679688,10.7308,10730.8 +25316,2025-03-10T04:20:56.619364-07:00,1006.342041015625,10.733806,10733.806 +25317,2025-03-10T04:21:07.354363-07:00,1006.3187255859375,10.734999,10734.999 +25318,2025-03-10T04:21:18.082496-07:00,1006.32861328125,10.728133,10728.133 +25319,2025-03-10T04:21:28.814605-07:00,1006.3300170898438,10.732109,10732.109 +25320,2025-03-10T04:21:39.537573-07:00,1006.3412475585938,10.722968,10722.968 +25321,2025-03-10T04:21:50.267481-07:00,1006.3361206054688,10.729908,10729.908 +25322,2025-03-10T04:22:01.004585-07:00,1006.3361206054688,10.737104,10737.104 +25323,2025-03-10T04:22:11.736561-07:00,1006.3209228515625,10.731976,10731.976 +25324,2025-03-10T04:22:22.472156-07:00,1006.3554077148438,10.735595,10735.595 +25325,2025-03-10T04:22:33.204362-07:00,1006.3010864257812,10.732206,10732.206 +25326,2025-03-10T04:22:43.928335-07:00,1006.3373413085938,10.723973,10723.973 +25327,2025-03-10T04:22:54.662002-07:00,1006.3468017578125,10.733667,10733.667 +25328,2025-03-10T04:23:05.390364-07:00,1006.3301391601562,10.728362,10728.362 +25329,2025-03-10T04:23:16.114528-07:00,1006.3236083984375,10.724164,10724.164 +25330,2025-03-10T04:23:26.848387-07:00,1006.3400268554688,10.733859,10733.859 +25331,2025-03-10T04:23:37.580363-07:00,1006.3267211914062,10.731976,10731.976 +25332,2025-03-10T04:23:48.313767-07:00,1006.31640625,10.733404,10733.404 +25333,2025-03-10T04:23:59.038391-07:00,1006.32470703125,10.724624,10724.624 +25334,2025-03-10T04:24:09.765781-07:00,1006.31298828125,10.72739,10727.39 +25335,2025-03-10T04:24:20.497955-07:00,1006.3474731445312,10.732174,10732.174 +25336,2025-03-10T04:24:31.221363-07:00,1006.3228149414062,10.723408,10723.408 +25337,2025-03-10T04:24:41.955361-07:00,1006.3161010742188,10.733998,10733.998 +25338,2025-03-10T04:24:52.676805-07:00,1006.3109130859375,10.721444,10721.444 +25339,2025-03-10T04:25:03.412516-07:00,1006.3043823242188,10.735711,10735.711 +25340,2025-03-10T04:25:14.137546-07:00,1006.32421875,10.72503,10725.03 +25341,2025-03-10T04:25:24.866847-07:00,1006.3204956054688,10.729301,10729.301 +25342,2025-03-10T04:25:35.597364-07:00,1006.3336791992188,10.730517,10730.517 +25343,2025-03-10T04:25:46.328964-07:00,1006.3204956054688,10.7316,10731.6 +25344,2025-03-10T04:25:57.054362-07:00,1006.3434448242188,10.725398,10725.398 +25345,2025-03-10T04:26:07.790361-07:00,1006.3204956054688,10.735999,10735.999 +25346,2025-03-10T04:26:18.513547-07:00,1006.3322143554688,10.723186,10723.186 +25347,2025-03-10T04:26:29.241361-07:00,1006.328857421875,10.727814,10727.814 +25348,2025-03-10T04:26:39.967645-07:00,1006.3336791992188,10.726284,10726.284 +25349,2025-03-10T04:26:50.703856-07:00,1006.3388061523438,10.736211,10736.211 +25350,2025-03-10T04:27:01.434405-07:00,1006.32421875,10.730549,10730.549 +25351,2025-03-10T04:27:12.167735-07:00,1006.3336791992188,10.73333,10733.33 +25352,2025-03-10T04:27:22.895543-07:00,1006.3388061523438,10.727808,10727.808 +25353,2025-03-10T04:27:33.621371-07:00,1006.32421875,10.725828,10725.828 +25354,2025-03-10T04:27:44.356366-07:00,1006.33740234375,10.734995,10734.995 +25355,2025-03-10T04:27:55.078681-07:00,1006.3506469726562,10.722315,10722.315 +25356,2025-03-10T04:28:05.807360-07:00,1006.3359375,10.728679,10728.679 +25357,2025-03-10T04:28:16.545425-07:00,1006.3425903320312,10.738065,10738.065 +25358,2025-03-10T04:28:27.271887-07:00,1006.3557739257812,10.726462,10726.462 +25359,2025-03-10T04:28:38.007744-07:00,1006.3557739257812,10.735857,10735.857 +25360,2025-03-10T04:28:48.740564-07:00,1006.3359375,10.73282,10732.82 +25361,2025-03-10T04:28:59.461454-07:00,1006.3474731445312,10.72089,10720.89 +25362,2025-03-10T04:29:10.195566-07:00,1006.3425903320312,10.734112,10734.112 +25363,2025-03-10T04:29:20.930433-07:00,1006.3724975585938,10.734867,10734.867 +25364,2025-03-10T04:29:31.653608-07:00,1006.3724975585938,10.723175,10723.175 +25365,2025-03-10T04:29:42.391363-07:00,1006.3672485351562,10.737755,10737.755 +25366,2025-03-10T04:29:53.122584-07:00,1006.3692016601562,10.731221,10731.221 +25367,2025-03-10T04:30:03.851762-07:00,1006.3842163085938,10.729178,10729.178 +25368,2025-03-10T04:30:14.578360-07:00,1006.3743896484375,10.726598,10726.598 +25369,2025-03-10T04:30:25.309365-07:00,1006.3758544921875,10.731005,10731.005 +25370,2025-03-10T04:30:36.030362-07:00,1006.3876342773438,10.720997,10720.997 +25371,2025-03-10T04:30:46.759362-07:00,1006.3890380859375,10.729,10729.0 +25372,2025-03-10T04:30:57.491495-07:00,1006.379638671875,10.732133,10732.133 +25373,2025-03-10T04:31:08.216369-07:00,1006.3712768554688,10.724874,10724.874 +25374,2025-03-10T04:31:18.940362-07:00,1006.379638671875,10.723993,10723.993 +25375,2025-03-10T04:31:29.669384-07:00,1006.3778076171875,10.729022,10729.022 +25376,2025-03-10T04:31:40.401364-07:00,1006.379638671875,10.73198,10731.98 +25377,2025-03-10T04:31:51.129542-07:00,1006.3778076171875,10.728178,10728.178 +25378,2025-03-10T04:32:01.849361-07:00,1006.409423828125,10.719819,10719.819 +25379,2025-03-10T04:32:12.568506-07:00,1006.375,10.719145,10719.145 +25380,2025-03-10T04:32:23.298582-07:00,1006.4359130859375,10.730076,10730.076 +25381,2025-03-10T04:32:34.027363-07:00,1006.39306640625,10.728781,10728.781 +25382,2025-03-10T04:32:44.755551-07:00,1006.399658203125,10.728188,10728.188 +25383,2025-03-10T04:32:55.481411-07:00,1006.357177734375,10.72586,10725.86 +25384,2025-03-10T04:33:06.200756-07:00,1006.385009765625,10.719345,10719.345 +25385,2025-03-10T04:33:16.930414-07:00,1006.3817749023438,10.729658,10729.658 +25386,2025-03-10T04:33:27.655546-07:00,1006.3967895507812,10.725132,10725.132 +25387,2025-03-10T04:33:38.380563-07:00,1006.362060546875,10.725017,10725.017 +25388,2025-03-10T04:33:49.116614-07:00,1006.3817749023438,10.736051,10736.051 +25389,2025-03-10T04:33:59.838531-07:00,1006.400146484375,10.721917,10721.917 +25390,2025-03-10T04:34:10.568564-07:00,1006.3855590820312,10.730033,10730.033 +25391,2025-03-10T04:34:21.303362-07:00,1006.4053955078125,10.734798,10734.798 +25392,2025-03-10T04:34:32.028537-07:00,1006.3922119140625,10.725175,10725.175 +25393,2025-03-10T04:34:42.753764-07:00,1006.3889770507812,10.725227,10725.227 +25394,2025-03-10T04:34:53.482360-07:00,1006.3775024414062,10.728596,10728.596 +25395,2025-03-10T04:35:04.206386-07:00,1006.3973388671875,10.724026,10724.026 +25396,2025-03-10T04:35:14.932490-07:00,1006.38232421875,10.726104,10726.104 +25397,2025-03-10T04:35:25.665052-07:00,1006.3596801757812,10.732562,10732.562 +25398,2025-03-10T04:35:36.385362-07:00,1006.3926391601562,10.72031,10720.31 +25399,2025-03-10T04:35:47.122753-07:00,1006.35791015625,10.737391,10737.391 +25400,2025-03-10T04:35:57.840388-07:00,1006.37109375,10.717635,10717.635 +25401,2025-03-10T04:36:08.577365-07:00,1006.3351440429688,10.736977,10736.977 +25402,2025-03-10T04:36:19.298536-07:00,1006.3616333007812,10.721171,10721.171 +25403,2025-03-10T04:36:30.020575-07:00,1006.337158203125,10.722039,10722.039 +25404,2025-03-10T04:36:40.749364-07:00,1006.35986328125,10.728789,10728.789 +25405,2025-03-10T04:36:51.472364-07:00,1006.3834228515625,10.723,10723.0 +25406,2025-03-10T04:37:02.207574-07:00,1006.3618774414062,10.73521,10735.21 +25407,2025-03-10T04:37:12.929734-07:00,1006.3702392578125,10.72216,10722.16 +25408,2025-03-10T04:37:23.659431-07:00,1006.32080078125,10.729697,10729.697 +25409,2025-03-10T04:37:34.385562-07:00,1006.3523559570312,10.726131,10726.131 +25410,2025-03-10T04:37:45.109467-07:00,1006.3656005859375,10.723905,10723.905 +25411,2025-03-10T04:37:55.833217-07:00,1006.3656005859375,10.72375,10723.75 +25412,2025-03-10T04:38:06.565628-07:00,1006.3529052734375,10.732411,10732.411 +25413,2025-03-10T04:38:17.291358-07:00,1006.3477172851562,10.72573,10725.73 +25414,2025-03-10T04:38:28.017363-07:00,1006.3529052734375,10.726005,10726.005 +25415,2025-03-10T04:38:38.737375-07:00,1006.318115234375,10.720012,10720.012 +25416,2025-03-10T04:38:49.463949-07:00,1006.3396606445312,10.726574,10726.574 +25417,2025-03-10T04:39:00.197587-07:00,1006.3595581054688,10.733638,10733.638 +25418,2025-03-10T04:39:10.921594-07:00,1006.3114624023438,10.724007,10724.007 +25419,2025-03-10T04:39:21.650684-07:00,1006.331298828125,10.72909,10729.09 +25420,2025-03-10T04:39:32.380501-07:00,1006.35107421875,10.729817,10729.817 +25421,2025-03-10T04:39:43.105391-07:00,1006.3496704101562,10.72489,10724.89 +25422,2025-03-10T04:39:53.832170-07:00,1006.3417358398438,10.726779,10726.779 +25423,2025-03-10T04:40:04.562509-07:00,1006.33984375,10.730339,10730.339 +25424,2025-03-10T04:40:15.281536-07:00,1006.33984375,10.719027,10719.027 +25425,2025-03-10T04:40:26.016494-07:00,1006.32373046875,10.734958,10734.958 +25426,2025-03-10T04:40:36.743946-07:00,1006.3106079101562,10.727452,10727.452 +25427,2025-03-10T04:40:47.466708-07:00,1006.3206176757812,10.722762,10722.762 +25428,2025-03-10T04:40:58.188430-07:00,1006.322021484375,10.721722,10721.722 +25429,2025-03-10T04:41:08.912582-07:00,1006.32373046875,10.724152,10724.152 +25430,2025-03-10T04:41:19.638358-07:00,1006.308837890625,10.725776,10725.776 +25431,2025-03-10T04:41:30.360516-07:00,1006.3021850585938,10.722158,10722.158 +25432,2025-03-10T04:41:41.082365-07:00,1006.3021850585938,10.721849,10721.849 +25433,2025-03-10T04:41:51.803669-07:00,1006.295654296875,10.721304,10721.304 +25434,2025-03-10T04:42:02.537696-07:00,1006.2809448242188,10.734027,10734.027 +25435,2025-03-10T04:42:13.256542-07:00,1006.27783203125,10.718846,10718.846 +25436,2025-03-10T04:42:23.973363-07:00,1006.2823486328125,10.716821,10716.821 +25437,2025-03-10T04:42:34.705687-07:00,1006.2809448242188,10.732324,10732.324 +25438,2025-03-10T04:42:45.424489-07:00,1006.2743530273438,10.718802,10718.802 +25439,2025-03-10T04:42:56.150516-07:00,1006.2677612304688,10.726027,10726.027 +25440,2025-03-10T04:43:06.877535-07:00,1006.295654296875,10.727019,10727.019 +25441,2025-03-10T04:43:17.596369-07:00,1006.2993774414062,10.718834,10718.834 +25442,2025-03-10T04:43:28.327549-07:00,1006.2711791992188,10.73118,10731.18 +25443,2025-03-10T04:43:39.044428-07:00,1006.2809448242188,10.716879,10716.879 +25444,2025-03-10T04:43:49.779538-07:00,1006.2366943359375,10.73511,10735.11 +25445,2025-03-10T04:44:00.506385-07:00,1006.2579956054688,10.726847,10726.847 +25446,2025-03-10T04:44:11.232360-07:00,1006.2662353515625,10.725975,10725.975 +25447,2025-03-10T04:44:21.951383-07:00,1006.2513427734375,10.719023,10719.023 +25448,2025-03-10T04:44:32.679366-07:00,1006.2564697265625,10.727983,10727.983 +25449,2025-03-10T04:44:43.399486-07:00,1006.2579956054688,10.72012,10720.12 +25450,2025-03-10T04:44:54.120431-07:00,1006.2385864257812,10.720945,10720.945 +25451,2025-03-10T04:45:04.847560-07:00,1006.2385864257812,10.727129,10727.129 +25452,2025-03-10T04:45:15.571365-07:00,1006.2423706054688,10.723805,10723.805 +25453,2025-03-10T04:45:26.299793-07:00,1006.2340698242188,10.728428,10728.428 +25454,2025-03-10T04:45:37.024362-07:00,1006.2423706054688,10.724569,10724.569 +25455,2025-03-10T04:45:47.745364-07:00,1006.2391967773438,10.721002,10721.002 +25456,2025-03-10T04:45:58.470598-07:00,1006.2523193359375,10.725234,10725.234 +25457,2025-03-10T04:46:09.203569-07:00,1006.2425537109375,10.732971,10732.971 +25458,2025-03-10T04:46:19.924471-07:00,1006.2425537109375,10.720902,10720.902 +25459,2025-03-10T04:46:30.641361-07:00,1006.2213134765625,10.71689,10716.89 +25460,2025-03-10T04:46:41.370536-07:00,1006.2265014648438,10.729175,10729.175 +25461,2025-03-10T04:46:52.092575-07:00,1006.2181396484375,10.722039,10722.039 +25462,2025-03-10T04:47:02.819546-07:00,1006.2313232421875,10.726971,10726.971 +25463,2025-03-10T04:47:13.542361-07:00,1006.2218627929688,10.722815,10722.815 +25464,2025-03-10T04:47:24.273364-07:00,1006.2232666015625,10.731003,10731.003 +25465,2025-03-10T04:47:34.996723-07:00,1006.2218627929688,10.723359,10723.359 +25466,2025-03-10T04:47:45.717362-07:00,1006.2335815429688,10.720639,10720.639 +25467,2025-03-10T04:47:56.435533-07:00,1006.2318725585938,10.718171,10718.171 +25468,2025-03-10T04:48:07.158360-07:00,1006.2054443359375,10.722827,10722.827 +25469,2025-03-10T04:48:17.890542-07:00,1006.23046875,10.732182,10732.182 +25470,2025-03-10T04:48:28.612432-07:00,1006.2223510742188,10.72189,10721.89 +25471,2025-03-10T04:48:39.329023-07:00,1006.235595703125,10.716591,10716.591 +25472,2025-03-10T04:48:50.050363-07:00,1006.2125854492188,10.72134,10721.34 +25473,2025-03-10T04:49:00.783464-07:00,1006.2206420898438,10.733101,10733.101 +25474,2025-03-10T04:49:11.506361-07:00,1006.2223510742188,10.722897,10722.897 +25475,2025-03-10T04:49:22.221695-07:00,1006.1994018554688,10.715334,10715.334 +25476,2025-03-10T04:49:32.948360-07:00,1006.1928100585938,10.726665,10726.665 +25477,2025-03-10T04:49:43.676357-07:00,1006.180908203125,10.727997,10727.997 +25478,2025-03-10T04:49:54.401506-07:00,1006.1994018554688,10.725149,10725.149 +25479,2025-03-10T04:50:05.127612-07:00,1006.1994018554688,10.726106,10726.106 +25480,2025-03-10T04:50:15.853542-07:00,1006.1781005859375,10.72593,10725.93 +25481,2025-03-10T04:50:26.575361-07:00,1006.1913452148438,10.721819,10721.819 +25482,2025-03-10T04:50:37.303529-07:00,1006.1895141601562,10.728168,10728.168 +25483,2025-03-10T04:50:48.035685-07:00,1006.1781005859375,10.732156,10732.156 +25484,2025-03-10T04:50:58.756574-07:00,1006.2111206054688,10.720889,10720.889 +25485,2025-03-10T04:51:09.485855-07:00,1006.2111206054688,10.729281,10729.281 +25486,2025-03-10T04:51:20.218649-07:00,1006.1617431640625,10.732794,10732.794 +25487,2025-03-10T04:51:30.944418-07:00,1006.1928100585938,10.725769,10725.769 +25488,2025-03-10T04:51:41.664361-07:00,1006.1961669921875,10.719943,10719.943 +25489,2025-03-10T04:51:52.394414-07:00,1006.2028198242188,10.730053,10730.053 +25490,2025-03-10T04:52:03.120628-07:00,1006.22119140625,10.726214,10726.214 +25491,2025-03-10T04:52:13.844364-07:00,1006.1964111328125,10.723736,10723.736 +25492,2025-03-10T04:52:24.573540-07:00,1006.2162475585938,10.729176,10729.176 +25493,2025-03-10T04:52:35.290828-07:00,1006.2081298828125,10.717288,10717.288 +25494,2025-03-10T04:52:46.020146-07:00,1006.2279663085938,10.729318,10729.318 +25495,2025-03-10T04:52:56.747364-07:00,1006.2379760742188,10.727218,10727.218 +25496,2025-03-10T04:53:07.539372-07:00,1006.2068481445312,10.792008,10792.008 +25497,2025-03-10T04:53:18.260219-07:00,1006.2171630859375,10.720847,10720.847 +25498,2025-03-10T04:53:28.990165-07:00,1006.255126953125,10.729946,10729.946 +25499,2025-03-10T04:53:39.708029-07:00,1006.232421875,10.717864,10717.864 +25500,2025-03-10T04:53:50.440272-07:00,1006.234375,10.732243,10732.243 +25501,2025-03-10T04:54:01.168242-07:00,1006.259033203125,10.72797,10727.97 +25502,2025-03-10T04:54:11.891303-07:00,1006.2561645507812,10.723061,10723.061 +25503,2025-03-10T04:54:22.616449-07:00,1006.2647094726562,10.725146,10725.146 +25504,2025-03-10T04:54:33.338477-07:00,1006.247314453125,10.722028,10722.028 +25505,2025-03-10T04:54:44.064563-07:00,1006.2625122070312,10.726086,10726.086 +25506,2025-03-10T04:54:54.797243-07:00,1006.2481079101562,10.73268,10732.68 +25507,2025-03-10T04:55:05.525284-07:00,1006.2485961914062,10.728041,10728.041 +25508,2025-03-10T04:55:16.249373-07:00,1006.209716796875,10.724089,10724.089 +25509,2025-03-10T04:55:26.981335-07:00,1006.20361328125,10.731962,10731.962 +25510,2025-03-10T04:55:37.706163-07:00,1006.20263671875,10.724828,10724.828 +25511,2025-03-10T04:55:48.423338-07:00,1006.22265625,10.717175,10717.175 +25512,2025-03-10T04:55:59.154162-07:00,1006.2164916992188,10.730824,10730.824 +25513,2025-03-10T04:56:09.877367-07:00,1006.1939697265625,10.723205,10723.205 +25514,2025-03-10T04:56:20.606705-07:00,1006.1864013671875,10.729338,10729.338 +25515,2025-03-10T04:56:31.329166-07:00,1006.2242431640625,10.722461,10722.461 +25516,2025-03-10T04:56:42.059350-07:00,1006.1889038085938,10.730184,10730.184 +25517,2025-03-10T04:56:52.788968-07:00,1006.2088012695312,10.729618,10729.618 +25518,2025-03-10T04:57:03.509430-07:00,1006.2023315429688,10.720462,10720.462 +25519,2025-03-10T04:57:14.232163-07:00,1006.2109375,10.722733,10722.733 +25520,2025-03-10T04:57:24.962655-07:00,1006.1798706054688,10.730492,10730.492 +25521,2025-03-10T04:57:35.684617-07:00,1006.1950073242188,10.721962,10721.962 +25522,2025-03-10T04:57:46.409163-07:00,1006.1705322265625,10.724546,10724.546 +25523,2025-03-10T04:57:57.134568-07:00,1006.1874389648438,10.725405,10725.405 +25524,2025-03-10T04:58:07.856239-07:00,1006.1695556640625,10.721671,10721.671 +25525,2025-03-10T04:58:18.590377-07:00,1006.1695556640625,10.734138,10734.138 +25526,2025-03-10T04:58:29.306374-07:00,1006.1781005859375,10.715997,10715.997 +25527,2025-03-10T04:58:40.032377-07:00,1006.1502075195312,10.726003,10726.003 +25528,2025-03-10T04:58:50.755316-07:00,1006.1748657226562,10.722939,10722.939 +25529,2025-03-10T04:59:01.481165-07:00,1006.1404418945312,10.725849,10725.849 +25530,2025-03-10T04:59:12.212588-07:00,1006.1570434570312,10.731423,10731.423 +25531,2025-03-10T04:59:22.933238-07:00,1006.1720581054688,10.72065,10720.65 +25532,2025-03-10T04:59:33.661337-07:00,1006.1834106445312,10.728099,10728.099 +25533,2025-03-10T04:59:44.384164-07:00,1006.1475219726562,10.722827,10722.827 +25534,2025-03-10T04:59:55.103556-07:00,1006.14892578125,10.719392,10719.392 +25535,2025-03-10T05:00:05.829160-07:00,1006.1325073242188,10.725604,10725.604 +25536,2025-03-10T05:00:16.549350-07:00,1006.14892578125,10.72019,10720.19 +25537,2025-03-10T05:00:27.276165-07:00,1006.129150390625,10.726815,10726.815 +25538,2025-03-10T05:00:37.999380-07:00,1006.1607055664062,10.723215,10723.215 +25539,2025-03-10T05:00:48.734999-07:00,1006.155517578125,10.735619,10735.619 +25540,2025-03-10T05:00:59.459169-07:00,1006.1409301757812,10.72417,10724.17 +25541,2025-03-10T05:01:10.183334-07:00,1006.1621704101562,10.724165,10724.165 +25542,2025-03-10T05:01:20.906275-07:00,1006.1259155273438,10.722941,10722.941 +25543,2025-03-10T05:01:31.625361-07:00,1006.1475219726562,10.719086,10719.086 +25544,2025-03-10T05:01:42.355188-07:00,1006.12109375,10.729827,10729.827 +25545,2025-03-10T05:01:53.081344-07:00,1006.1409301757812,10.726156,10726.156 +25546,2025-03-10T05:02:03.810234-07:00,1006.150390625,10.72889,10728.89 +25547,2025-03-10T05:02:14.526788-07:00,1006.1720581054688,10.716554,10716.554 +25548,2025-03-10T05:02:25.258364-07:00,1006.1917724609375,10.731576,10731.576 +25549,2025-03-10T05:02:35.982377-07:00,1006.1587524414062,10.724013,10724.013 +25550,2025-03-10T05:02:46.702336-07:00,1006.1654052734375,10.719959,10719.959 +25551,2025-03-10T05:02:57.432199-07:00,1006.1748657226562,10.729863,10729.863 +25552,2025-03-10T05:03:08.160380-07:00,1006.1766357421875,10.728181,10728.181 +25553,2025-03-10T05:03:18.877362-07:00,1006.1568603515625,10.716982,10716.982 +25554,2025-03-10T05:03:29.613412-07:00,1006.1715087890625,10.73605,10736.05 +25555,2025-03-10T05:03:40.333968-07:00,1006.1648559570312,10.720556,10720.556 +25556,2025-03-10T05:03:51.060162-07:00,1006.2011108398438,10.726194,10726.194 +25557,2025-03-10T05:04:01.783311-07:00,1006.1761474609375,10.723149,10723.149 +25558,2025-03-10T05:04:12.506212-07:00,1006.1695556640625,10.722901,10722.901 +25559,2025-03-10T05:04:23.230399-07:00,1006.1842041015625,10.724187,10724.187 +25560,2025-03-10T05:04:33.966163-07:00,1006.1874389648438,10.735764,10735.764 +25561,2025-03-10T05:04:44.690165-07:00,1006.1954956054688,10.724002,10724.002 +25562,2025-03-10T05:04:55.417589-07:00,1006.2118530273438,10.727424,10727.424 +25563,2025-03-10T05:05:06.136352-07:00,1006.2279663085938,10.718763,10718.763 +25564,2025-03-10T05:05:16.870353-07:00,1006.1884155273438,10.734001,10734.001 +25565,2025-03-10T05:05:27.595165-07:00,1006.21142578125,10.724812,10724.812 +25566,2025-03-10T05:05:38.318164-07:00,1006.2062377929688,10.722999,10722.999 +25567,2025-03-10T05:05:49.041162-07:00,1006.1882934570312,10.722998,10722.998 +25568,2025-03-10T05:05:59.775277-07:00,1006.1698608398438,10.734115,10734.115 +25569,2025-03-10T05:06:10.494142-07:00,1006.19775390625,10.718865,10718.865 +25570,2025-03-10T05:06:21.216162-07:00,1006.2192993164062,10.72202,10722.02 +25571,2025-03-10T05:06:31.948337-07:00,1006.20751953125,10.732175,10732.175 +25572,2025-03-10T05:06:42.672161-07:00,1006.2107543945312,10.723824,10723.824 +25573,2025-03-10T05:06:53.400193-07:00,1006.1942138671875,10.728032,10728.032 +25574,2025-03-10T05:07:04.120162-07:00,1006.1907958984375,10.719969,10719.969 +25575,2025-03-10T05:07:14.851164-07:00,1006.2135009765625,10.731002,10731.002 +25576,2025-03-10T05:07:25.566386-07:00,1006.21533203125,10.715222,10715.222 +25577,2025-03-10T05:07:36.293757-07:00,1006.2067260742188,10.727371,10727.371 +25578,2025-03-10T05:07:47.013998-07:00,1006.2001342773438,10.720241,10720.241 +25579,2025-03-10T05:07:57.742165-07:00,1006.1587524414062,10.728167,10728.167 +25580,2025-03-10T05:08:08.470394-07:00,1006.1978149414062,10.728229,10728.229 +25581,2025-03-10T05:08:19.191162-07:00,1006.1832275390625,10.720768,10720.768 +25582,2025-03-10T05:08:29.920401-07:00,1006.1878051757812,10.729239,10729.239 +25583,2025-03-10T05:08:40.642165-07:00,1006.1812744140625,10.721764,10721.764 +25584,2025-03-10T05:08:51.367378-07:00,1006.1945190429688,10.725213,10725.213 +25585,2025-03-10T05:09:02.090186-07:00,1006.2123413085938,10.722808,10722.808 +25586,2025-03-10T05:09:12.813232-07:00,1006.1991577148438,10.723046,10723.046 +25587,2025-03-10T05:09:23.542351-07:00,1006.1972045898438,10.729119,10729.119 +25588,2025-03-10T05:09:34.266185-07:00,1006.2003784179688,10.723834,10723.834 +25589,2025-03-10T05:09:44.988998-07:00,1006.23486328125,10.722813,10722.813 +25590,2025-03-10T05:09:55.716349-07:00,1006.2315063476562,10.727351,10727.351 +25591,2025-03-10T05:10:06.447368-07:00,1006.2084350585938,10.731019,10731.019 +25592,2025-03-10T05:10:17.168936-07:00,1006.1785888671875,10.721568,10721.568 +25593,2025-03-10T05:10:27.897165-07:00,1006.1947631835938,10.728229,10728.229 +25594,2025-03-10T05:10:38.622303-07:00,1006.2028198242188,10.725138,10725.138 +25595,2025-03-10T05:10:49.355162-07:00,1006.237548828125,10.732859,10732.859 +25596,2025-03-10T05:11:00.077392-07:00,1006.212646484375,10.72223,10722.23 +25597,2025-03-10T05:11:10.802163-07:00,1006.2157592773438,10.724771,10724.771 +25598,2025-03-10T05:11:21.534373-07:00,1006.20263671875,10.73221,10732.21 +25599,2025-03-10T05:11:32.262316-07:00,1006.1989135742188,10.727943,10727.943 +25600,2025-03-10T05:11:42.992430-07:00,1006.2006225585938,10.730114,10730.114 +25601,2025-03-10T05:11:53.716166-07:00,1006.223388671875,10.723736,10723.736 +25602,2025-03-10T05:12:04.446361-07:00,1006.208740234375,10.730195,10730.195 +25603,2025-03-10T05:12:15.165237-07:00,1006.231689453125,10.718876,10718.876 +25604,2025-03-10T05:12:25.897179-07:00,1006.2332153320312,10.731942,10731.942 +25605,2025-03-10T05:12:36.625496-07:00,1006.205322265625,10.728317,10728.317 +25606,2025-03-10T05:12:47.345345-07:00,1006.2081909179688,10.719849,10719.849 +25607,2025-03-10T05:12:58.077565-07:00,1006.2279663085938,10.73222,10732.22 +25608,2025-03-10T05:13:08.804165-07:00,1006.232666015625,10.7266,10726.6 +25609,2025-03-10T05:13:19.536158-07:00,1006.2274780273438,10.731993,10731.993 +25610,2025-03-10T05:13:30.259190-07:00,1006.2373657226562,10.723032,10723.032 +25611,2025-03-10T05:13:40.991211-07:00,1006.2617797851562,10.732021,10732.021 +25612,2025-03-10T05:13:51.713153-07:00,1006.2517700195312,10.721942,10721.942 +25613,2025-03-10T05:14:02.442164-07:00,1006.2664184570312,10.729011,10729.011 +25614,2025-03-10T05:14:13.172188-07:00,1006.2446899414062,10.730024,10730.024 +25615,2025-03-10T05:14:23.907350-07:00,1006.2542114257812,10.735162,10735.162 +25616,2025-03-10T05:14:34.635162-07:00,1006.2706298828125,10.727812,10727.812 +25617,2025-03-10T05:14:45.364345-07:00,1006.2539672851562,10.729183,10729.183 +25618,2025-03-10T05:14:56.094897-07:00,1006.2652587890625,10.730552,10730.552 +25619,2025-03-10T05:15:06.817363-07:00,1006.2218627929688,10.722466,10722.466 +25620,2025-03-10T05:15:17.547425-07:00,1006.2793579101562,10.730062,10730.062 +25621,2025-03-10T05:15:28.276161-07:00,1006.247802734375,10.728736,10728.736 +25622,2025-03-10T05:15:39.000356-07:00,1006.259033203125,10.724195,10724.195 +25623,2025-03-10T05:15:49.726162-07:00,1006.2673950195312,10.725806,10725.806 +25624,2025-03-10T05:16:00.455367-07:00,1006.243896484375,10.729205,10729.205 +25625,2025-03-10T05:16:11.188166-07:00,1006.2418823242188,10.732799,10732.799 +25626,2025-03-10T05:16:21.920017-07:00,1006.2531127929688,10.731851,10731.851 +25627,2025-03-10T05:16:32.647399-07:00,1006.2101440429688,10.727382,10727.382 +25628,2025-03-10T05:16:43.375380-07:00,1006.2050170898438,10.727981,10727.981 +25629,2025-03-10T05:16:54.100227-07:00,1006.2262573242188,10.724847,10724.847 +25630,2025-03-10T05:17:04.823377-07:00,1006.2179565429688,10.72315,10723.15 +25631,2025-03-10T05:17:15.548292-07:00,1006.226318359375,10.724915,10724.915 +25632,2025-03-10T05:17:26.283327-07:00,1006.2013549804688,10.735035,10735.035 +25633,2025-03-10T05:17:37.005538-07:00,1006.1715087890625,10.722211,10722.211 +25634,2025-03-10T05:17:47.732161-07:00,1006.180908203125,10.726623,10726.623 +25635,2025-03-10T05:17:58.470227-07:00,1006.1827392578125,10.738066,10738.066 +25636,2025-03-10T05:18:09.194571-07:00,1006.1563110351562,10.724344,10724.344 +25637,2025-03-10T05:18:19.924163-07:00,1006.1873168945312,10.729592,10729.592 +25638,2025-03-10T05:18:30.642964-07:00,1006.1543579101562,10.718801,10718.801 +25639,2025-03-10T05:18:41.378755-07:00,1006.1954956054688,10.735791,10735.791 +25640,2025-03-10T05:18:52.104174-07:00,1006.1755981445312,10.725419,10725.419 +25641,2025-03-10T05:19:02.831358-07:00,1006.15380859375,10.727184,10727.184 +25642,2025-03-10T05:19:13.558165-07:00,1006.1817016601562,10.726807,10726.807 +25643,2025-03-10T05:19:24.286357-07:00,1006.18310546875,10.728192,10728.192 +25644,2025-03-10T05:19:35.013249-07:00,1006.184814453125,10.726892,10726.892 +25645,2025-03-10T05:19:45.741834-07:00,1006.184814453125,10.728585,10728.585 +25646,2025-03-10T05:19:56.467353-07:00,1006.1929931640625,10.725519,10725.519 +25647,2025-03-10T05:20:07.189159-07:00,1006.1895141601562,10.721806,10721.806 +25648,2025-03-10T05:20:17.925321-07:00,1006.156494140625,10.736162,10736.162 +25649,2025-03-10T05:20:28.654348-07:00,1006.1743774414062,10.729027,10729.027 +25650,2025-03-10T05:20:39.386315-07:00,1006.198974609375,10.731967,10731.967 +25651,2025-03-10T05:20:50.111192-07:00,1006.1941528320312,10.724877,10724.877 +25652,2025-03-10T05:21:00.839367-07:00,1006.1875,10.728175,10728.175 +25653,2025-03-10T05:21:11.576165-07:00,1006.2380981445312,10.736798,10736.798 +25654,2025-03-10T05:21:22.298563-07:00,1006.17578125,10.722398,10722.398 +25655,2025-03-10T05:21:33.028164-07:00,1006.2214965820312,10.729601,10729.601 +25656,2025-03-10T05:21:43.761686-07:00,1006.180419921875,10.733522,10733.522 +25657,2025-03-10T05:21:54.496160-07:00,1006.2017211914062,10.734474,10734.474 +25658,2025-03-10T05:22:05.225544-07:00,1006.21630859375,10.729384,10729.384 +25659,2025-03-10T05:22:15.945229-07:00,1006.2229614257812,10.719685,10719.685 +25660,2025-03-10T05:22:26.674559-07:00,1006.21484375,10.72933,10729.33 +25661,2025-03-10T05:22:37.413163-07:00,1006.2312622070312,10.738604,10738.604 +25662,2025-03-10T05:22:48.140165-07:00,1006.1983032226562,10.727002,10727.002 +25663,2025-03-10T05:22:58.868342-07:00,1006.209716796875,10.728177,10728.177 +25664,2025-03-10T05:23:09.602383-07:00,1006.2229614257812,10.734041,10734.041 +25665,2025-03-10T05:23:20.335364-07:00,1006.1898193359375,10.732981,10732.981 +25666,2025-03-10T05:23:31.058364-07:00,1006.209716796875,10.723,10723.0 +25667,2025-03-10T05:23:41.798707-07:00,1006.1884155273438,10.740343,10740.343 +25668,2025-03-10T05:23:52.524166-07:00,1006.2214965820312,10.725459,10725.459 +25669,2025-03-10T05:24:03.251380-07:00,1006.1984252929688,10.727214,10727.214 +25670,2025-03-10T05:24:13.990370-07:00,1006.1852416992188,10.73899,10738.99 +25671,2025-03-10T05:24:24.719165-07:00,1006.219970703125,10.728795,10728.795 +25672,2025-03-10T05:24:35.452424-07:00,1006.1984252929688,10.733259,10733.259 +25673,2025-03-10T05:24:46.178163-07:00,1006.1904907226562,10.725739,10725.739 +25674,2025-03-10T05:24:56.915367-07:00,1006.1904907226562,10.737204,10737.204 +25675,2025-03-10T05:25:07.644161-07:00,1006.205078125,10.728794,10728.794 +25676,2025-03-10T05:25:18.366210-07:00,1006.1640014648438,10.722049,10722.049 +25677,2025-03-10T05:25:29.102387-07:00,1006.1559448242188,10.736177,10736.177 +25678,2025-03-10T05:25:39.823559-07:00,1006.167724609375,10.721172,10721.172 +25679,2025-03-10T05:25:50.552163-07:00,1006.1478881835938,10.728604,10728.604 +25680,2025-03-10T05:26:01.289186-07:00,1006.154541015625,10.737023,10737.023 +25681,2025-03-10T05:26:12.016370-07:00,1006.1624755859375,10.727184,10727.184 +25682,2025-03-10T05:26:22.748291-07:00,1006.170654296875,10.731921,10731.921 +25683,2025-03-10T05:26:33.477416-07:00,1006.182373046875,10.729125,10729.125 +25684,2025-03-10T05:26:44.198640-07:00,1006.1593627929688,10.721224,10721.224 +25685,2025-03-10T05:26:54.940316-07:00,1006.16455078125,10.741676,10741.676 +25686,2025-03-10T05:27:05.667166-07:00,1006.177734375,10.72685,10726.85 +25687,2025-03-10T05:27:16.396356-07:00,1006.1631469726562,10.72919,10729.19 +25688,2025-03-10T05:27:27.128227-07:00,1006.16796875,10.731871,10731.871 +25689,2025-03-10T05:27:37.862379-07:00,1006.1863403320312,10.734152,10734.152 +25690,2025-03-10T05:27:48.594397-07:00,1006.1914672851562,10.732018,10732.018 +25691,2025-03-10T05:27:59.316813-07:00,1006.1782836914062,10.722416,10722.416 +25692,2025-03-10T05:28:10.046376-07:00,1006.169921875,10.729563,10729.563 +25693,2025-03-10T05:28:20.780345-07:00,1006.173583984375,10.733969,10733.969 +25694,2025-03-10T05:28:31.509164-07:00,1006.1882934570312,10.728819,10728.819 +25695,2025-03-10T05:28:42.240411-07:00,1006.171875,10.731247,10731.247 +25696,2025-03-10T05:28:52.969363-07:00,1006.177001953125,10.728952,10728.952 +25697,2025-03-10T05:29:03.698195-07:00,1006.178466796875,10.728832,10728.832 +25698,2025-03-10T05:29:14.427161-07:00,1006.2034301757812,10.728966,10728.966 +25699,2025-03-10T05:29:25.150311-07:00,1006.1968994140625,10.72315,10723.15 +25700,2025-03-10T05:29:35.881246-07:00,1006.1903076171875,10.730935,10730.935 +25701,2025-03-10T05:29:46.615341-07:00,1006.1903076171875,10.734095,10734.095 +25702,2025-03-10T05:29:57.348850-07:00,1006.1836547851562,10.733509,10733.509 +25703,2025-03-10T05:30:08.077451-07:00,1006.1755981445312,10.728601,10728.601 +25704,2025-03-10T05:30:18.812158-07:00,1006.1755981445312,10.734707,10734.707 +25705,2025-03-10T05:30:29.544357-07:00,1006.2100830078125,10.732199,10732.199 +25706,2025-03-10T05:30:40.270254-07:00,1006.2006225585938,10.725897,10725.897 +25707,2025-03-10T05:30:50.995388-07:00,1006.1939697265625,10.725134,10725.134 +25708,2025-03-10T05:31:01.734544-07:00,1006.2054443359375,10.739156,10739.156 +25709,2025-03-10T05:31:12.466163-07:00,1006.1775512695312,10.731619,10731.619 +25710,2025-03-10T05:31:23.192203-07:00,1006.1743774414062,10.72604,10726.04 +25711,2025-03-10T05:31:33.925555-07:00,1006.1795043945312,10.733352,10733.352 +25712,2025-03-10T05:31:44.655163-07:00,1006.1781005859375,10.729608,10729.608 +25713,2025-03-10T05:31:55.391197-07:00,1006.1815795898438,10.736034,10736.034 +25714,2025-03-10T05:32:06.111651-07:00,1006.1867065429688,10.720454,10720.454 +25715,2025-03-10T05:32:16.846162-07:00,1006.1867065429688,10.734511,10734.511 +25716,2025-03-10T05:32:27.584522-07:00,1006.226318359375,10.73836,10738.36 +25717,2025-03-10T05:32:38.309344-07:00,1006.2095947265625,10.724822,10724.822 +25718,2025-03-10T05:32:49.046263-07:00,1006.1964111328125,10.736919,10736.919 +25719,2025-03-10T05:32:59.777167-07:00,1006.2081298828125,10.730904,10730.904 +25720,2025-03-10T05:33:10.502266-07:00,1006.2015380859375,10.725099,10725.099 +25721,2025-03-10T05:33:21.244271-07:00,1006.171875,10.742005,10742.005 +25722,2025-03-10T05:33:31.973163-07:00,1006.193115234375,10.728892,10728.892 +25723,2025-03-10T05:33:42.705170-07:00,1006.2313842773438,10.732007,10732.007 +25724,2025-03-10T05:33:53.428494-07:00,1006.1755981445312,10.723324,10723.324 +25725,2025-03-10T05:34:04.156293-07:00,1006.1871337890625,10.727799,10727.799 +25726,2025-03-10T05:34:14.888418-07:00,1006.21533203125,10.732125,10732.125 +25727,2025-03-10T05:34:25.618767-07:00,1006.2003173828125,10.730349,10730.349 +25728,2025-03-10T05:34:36.345239-07:00,1006.1804809570312,10.726472,10726.472 +25729,2025-03-10T05:34:47.070046-07:00,1006.1856079101562,10.724807,10724.807 +25730,2025-03-10T05:34:57.803165-07:00,1006.165771484375,10.733119,10733.119 +25731,2025-03-10T05:35:08.531351-07:00,1006.1989135742188,10.728186,10728.186 +25732,2025-03-10T05:35:19.255211-07:00,1006.1592407226562,10.72386,10723.86 +25733,2025-03-10T05:35:29.986188-07:00,1006.1776733398438,10.730977,10730.977 +25734,2025-03-10T05:35:40.712540-07:00,1006.2022705078125,10.726352,10726.352 +25735,2025-03-10T05:35:51.448398-07:00,1006.2171630859375,10.735858,10735.858 +25736,2025-03-10T05:36:02.171236-07:00,1006.1626586914062,10.722838,10722.838 +25737,2025-03-10T05:36:12.900559-07:00,1006.2206420898438,10.729323,10729.323 +25738,2025-03-10T05:36:23.629160-07:00,1006.1677856445312,10.728601,10728.601 +25739,2025-03-10T05:36:34.354167-07:00,1006.1824951171875,10.725007,10725.007 +25740,2025-03-10T05:36:45.075165-07:00,1006.1876831054688,10.720998,10720.998 +25741,2025-03-10T05:36:55.808172-07:00,1006.1646118164062,10.733007,10733.007 +25742,2025-03-10T05:37:06.536412-07:00,1006.1961669921875,10.72824,10728.24 +25743,2025-03-10T05:37:17.262269-07:00,1006.1551513671875,10.725857,10725.857 +25744,2025-03-10T05:37:27.982641-07:00,1006.1749267578125,10.720372,10720.372 +25745,2025-03-10T05:37:38.720247-07:00,1006.1881103515625,10.737606,10737.606 +25746,2025-03-10T05:37:49.441258-07:00,1006.23779296875,10.721011,10721.011 +25747,2025-03-10T05:38:00.173501-07:00,1006.1967163085938,10.732243,10732.243 +25748,2025-03-10T05:38:10.896163-07:00,1006.1915893554688,10.722662,10722.662 +25749,2025-03-10T05:38:21.631923-07:00,1006.2179565429688,10.73576,10735.76 +25750,2025-03-10T05:38:32.363380-07:00,1006.1929931640625,10.731457,10731.457 +25751,2025-03-10T05:38:43.079278-07:00,1006.216552734375,10.715898,10715.898 +25752,2025-03-10T05:38:53.810652-07:00,1006.216552734375,10.731374,10731.374 +25753,2025-03-10T05:39:04.540551-07:00,1006.216552734375,10.729899,10729.899 +25754,2025-03-10T05:39:15.265252-07:00,1006.2015380859375,10.724701,10724.701 +25755,2025-03-10T05:39:25.995357-07:00,1006.24951171875,10.730105,10730.105 +25756,2025-03-10T05:39:36.724163-07:00,1006.2184448242188,10.728806,10728.806 +25757,2025-03-10T05:39:47.448143-07:00,1006.247802734375,10.72398,10723.98 +25758,2025-03-10T05:39:58.178187-07:00,1006.2411499023438,10.730044,10730.044 +25759,2025-03-10T05:40:08.906445-07:00,1006.2345581054688,10.728258,10728.258 +25760,2025-03-10T05:40:19.632363-07:00,1006.259521484375,10.725918,10725.918 +25761,2025-03-10T05:40:30.362157-07:00,1006.2279663085938,10.729794,10729.794 +25762,2025-03-10T05:40:41.085360-07:00,1006.231689453125,10.723203,10723.203 +25763,2025-03-10T05:40:51.812160-07:00,1006.22509765625,10.7268,10726.8 +25764,2025-03-10T05:41:02.539364-07:00,1006.205322265625,10.727204,10727.204 +25765,2025-03-10T05:41:13.266361-07:00,1006.2265625,10.726997,10726.997 +25766,2025-03-10T05:41:23.998316-07:00,1006.2118530273438,10.731955,10731.955 +25767,2025-03-10T05:41:34.717425-07:00,1006.21044921875,10.719109,10719.109 +25768,2025-03-10T05:41:45.450173-07:00,1006.2265625,10.732748,10732.748 +25769,2025-03-10T05:41:56.179268-07:00,1006.230224609375,10.729095,10729.095 +25770,2025-03-10T05:42:06.908160-07:00,1006.2529907226562,10.728892,10728.892 +25771,2025-03-10T05:42:17.634240-07:00,1006.23828125,10.72608,10726.08 +25772,2025-03-10T05:42:28.357579-07:00,1006.2072143554688,10.723339,10723.339 +25773,2025-03-10T05:42:39.088393-07:00,1006.2218627929688,10.730814,10730.814 +25774,2025-03-10T05:42:49.825348-07:00,1006.2218627929688,10.736955,10736.955 +25775,2025-03-10T05:43:00.550163-07:00,1006.2138061523438,10.724815,10724.815 +25776,2025-03-10T05:43:11.279864-07:00,1006.2468872070312,10.729701,10729.701 +25777,2025-03-10T05:43:22.008165-07:00,1006.22705078125,10.728301,10728.301 +25778,2025-03-10T05:43:32.741419-07:00,1006.22705078125,10.733254,10733.254 +25779,2025-03-10T05:43:43.463159-07:00,1006.2335815429688,10.72174,10721.74 +25780,2025-03-10T05:43:54.188166-07:00,1006.2171630859375,10.725007,10725.007 +25781,2025-03-10T05:44:04.922340-07:00,1006.23046875,10.734174,10734.174 +25782,2025-03-10T05:44:15.640165-07:00,1006.2171630859375,10.717825,10717.825 +25783,2025-03-10T05:44:26.370383-07:00,1006.1842041015625,10.730218,10730.218 +25784,2025-03-10T05:44:37.098158-07:00,1006.1945190429688,10.727775,10727.775 +25785,2025-03-10T05:44:47.826165-07:00,1006.22900390625,10.728007,10728.007 +25786,2025-03-10T05:44:58.546673-07:00,1006.22900390625,10.720508,10720.508 +25787,2025-03-10T05:45:09.273437-07:00,1006.2025756835938,10.726764,10726.764 +25788,2025-03-10T05:45:20.002853-07:00,1006.207763671875,10.729416,10729.416 +25789,2025-03-10T05:45:30.725165-07:00,1006.1959228515625,10.722312,10722.312 +25790,2025-03-10T05:45:41.450473-07:00,1006.1945190429688,10.725308,10725.308 +25791,2025-03-10T05:45:52.184887-07:00,1006.1928100585938,10.734414,10734.414 +25792,2025-03-10T05:46:02.903167-07:00,1006.21435546875,10.71828,10718.28 +25793,2025-03-10T05:46:13.624369-07:00,1006.23095703125,10.721202,10721.202 +25794,2025-03-10T05:46:24.351162-07:00,1006.1913452148438,10.726793,10726.793 +25795,2025-03-10T05:46:35.079364-07:00,1006.2045288085938,10.728202,10728.202 +25796,2025-03-10T05:46:45.815185-07:00,1006.1701049804688,10.735821,10735.821 +25797,2025-03-10T05:46:56.538161-07:00,1006.1815795898438,10.722976,10722.976 +25798,2025-03-10T05:47:07.269385-07:00,1006.2013549804688,10.731224,10731.224 +25799,2025-03-10T05:47:17.992162-07:00,1006.1720581054688,10.722777,10722.777 +25800,2025-03-10T05:47:28.720165-07:00,1006.170654296875,10.728003,10728.003 +25801,2025-03-10T05:47:39.447295-07:00,1006.1720581054688,10.72713,10727.13 +25802,2025-03-10T05:47:50.182163-07:00,1006.1654663085938,10.734868,10734.868 +25803,2025-03-10T05:48:00.904350-07:00,1006.1673583984375,10.722187,10722.187 +25804,2025-03-10T05:48:11.630166-07:00,1006.1607666015625,10.725816,10725.816 +25805,2025-03-10T05:48:22.359162-07:00,1006.1377563476562,10.728996,10728.996 +25806,2025-03-10T05:48:33.093425-07:00,1006.1607666015625,10.734263,10734.263 +25807,2025-03-10T05:48:43.813219-07:00,1006.1481323242188,10.719794,10719.794 +25808,2025-03-10T05:48:54.541676-07:00,1006.125,10.728457,10728.457 +25809,2025-03-10T05:49:05.264193-07:00,1006.1170043945312,10.722517,10722.517 +25810,2025-03-10T05:49:15.994322-07:00,1006.1585693359375,10.730129,10730.129 +25811,2025-03-10T05:49:26.720903-07:00,1006.13037109375,10.726581,10726.581 +25812,2025-03-10T05:49:37.454160-07:00,1006.1275024414062,10.733257,10733.257 +25813,2025-03-10T05:49:48.173338-07:00,1006.11767578125,10.719178,10719.178 +25814,2025-03-10T05:49:58.908157-07:00,1006.1526489257812,10.734819,10734.819 +25815,2025-03-10T05:50:09.633165-07:00,1006.1497802734375,10.725008,10725.008 +25816,2025-03-10T05:50:20.354190-07:00,1006.1035766601562,10.721025,10721.025 +25817,2025-03-10T05:50:31.087227-07:00,1006.13671875,10.733037,10733.037 +25818,2025-03-10T05:50:41.807339-07:00,1006.1749267578125,10.720112,10720.112 +25819,2025-03-10T05:50:52.536355-07:00,1006.1409301757812,10.729016,10729.016 +25820,2025-03-10T05:51:03.270212-07:00,1006.1595458984375,10.733857,10733.857 +25821,2025-03-10T05:51:13.993632-07:00,1006.161376953125,10.72342,10723.42 +25822,2025-03-10T05:51:24.722373-07:00,1006.165283203125,10.728741,10728.741 +25823,2025-03-10T05:51:35.441344-07:00,1006.169189453125,10.718971,10718.971 +25824,2025-03-10T05:51:46.169359-07:00,1006.1613159179688,10.728015,10728.015 +25825,2025-03-10T05:51:56.892203-07:00,1006.161865234375,10.722844,10722.844 +25826,2025-03-10T05:52:07.624185-07:00,1006.1392822265625,10.731982,10731.982 +25827,2025-03-10T05:52:18.346351-07:00,1006.1549072265625,10.722166,10722.166 +25828,2025-03-10T05:52:29.072788-07:00,1006.1699829101562,10.726437,10726.437 +25829,2025-03-10T05:52:39.797372-07:00,1006.170166015625,10.724584,10724.584 +25830,2025-03-10T05:52:50.525365-07:00,1006.1493530273438,10.727993,10727.993 +25831,2025-03-10T05:53:01.230947-07:00,1006.1415405273438,10.705582,10705.582 +25832,2025-03-10T05:53:11.961110-07:00,1006.1303100585938,10.730163,10730.163 +25833,2025-03-10T05:53:22.681889-07:00,1006.1453857421875,10.720779,10720.779 +25834,2025-03-10T05:53:33.414895-07:00,1006.134033203125,10.733006,10733.006 +25835,2025-03-10T05:53:44.138101-07:00,1006.1495361328125,10.723206,10723.206 +25836,2025-03-10T05:53:54.857893-07:00,1006.1712646484375,10.719792,10719.792 +25837,2025-03-10T05:54:05.592081-07:00,1006.1944580078125,10.734188,10734.188 +25838,2025-03-10T05:54:16.310895-07:00,1006.163330078125,10.718814,10718.814 +25839,2025-03-10T05:54:27.037919-07:00,1006.1751708984375,10.727024,10727.024 +25840,2025-03-10T05:54:37.766701-07:00,1006.177001953125,10.728782,10728.782 +25841,2025-03-10T05:54:48.489896-07:00,1006.1591186523438,10.723195,10723.195 +25842,2025-03-10T05:54:59.221077-07:00,1006.1576538085938,10.731181,10731.181 +25843,2025-03-10T05:55:09.943911-07:00,1006.154541015625,10.722834,10722.834 +25844,2025-03-10T05:55:20.673975-07:00,1006.1529541015625,10.730064,10730.064 +25845,2025-03-10T05:55:31.392894-07:00,1006.1529541015625,10.718919,10718.919 +25846,2025-03-10T05:55:42.119893-07:00,1006.1447143554688,10.726999,10726.999 +25847,2025-03-10T05:55:52.846081-07:00,1006.1564331054688,10.726188,10726.188 +25848,2025-03-10T05:56:03.574033-07:00,1006.1696166992188,10.727952,10727.952 +25849,2025-03-10T05:56:14.296066-07:00,1006.1465454101562,10.722033,10722.033 +25850,2025-03-10T05:56:25.029074-07:00,1006.1781005859375,10.733008,10733.008 +25851,2025-03-10T05:56:35.748322-07:00,1006.18798828125,10.719248,10719.248 +25852,2025-03-10T05:56:46.474892-07:00,1006.1615600585938,10.72657,10726.57 +25853,2025-03-10T05:56:57.201895-07:00,1006.1861572265625,10.727003,10727.003 +25854,2025-03-10T05:57:07.922853-07:00,1006.1729736328125,10.720958,10720.958 +25855,2025-03-10T05:57:18.643362-07:00,1006.1597900390625,10.720509,10720.509 +25856,2025-03-10T05:57:29.378088-07:00,1006.1663818359375,10.734726,10734.726 +25857,2025-03-10T05:57:40.098894-07:00,1006.1663818359375,10.720806,10720.806 +25858,2025-03-10T05:57:50.827972-07:00,1006.1795043945312,10.729078,10729.078 +25859,2025-03-10T05:58:01.554922-07:00,1006.1531372070312,10.72695,10726.95 +25860,2025-03-10T05:58:12.270066-07:00,1006.1615600585938,10.715144,10715.144 +25861,2025-03-10T05:58:23.001944-07:00,1006.1746826171875,10.731878,10731.878 +25862,2025-03-10T05:58:33.724897-07:00,1006.1761474609375,10.722953,10722.953 +25863,2025-03-10T05:58:44.445169-07:00,1006.1776733398438,10.720272,10720.272 +25864,2025-03-10T05:58:55.176898-07:00,1006.1710815429688,10.731729,10731.729 +25865,2025-03-10T05:59:05.896067-07:00,1006.194091796875,10.719169,10719.169 +25866,2025-03-10T05:59:16.630919-07:00,1006.182373046875,10.734852,10734.852 +25867,2025-03-10T05:59:27.355109-07:00,1006.190673828125,10.72419,10724.19 +25868,2025-03-10T05:59:38.076914-07:00,1006.17236328125,10.721805,10721.805 +25869,2025-03-10T05:59:48.801961-07:00,1006.1709594726562,10.725047,10725.047 +25870,2025-03-10T05:59:59.535336-07:00,1006.1690063476562,10.733375,10733.375 +25871,2025-03-10T06:00:10.255324-07:00,1006.1983032226562,10.719988,10719.988 +25872,2025-03-10T06:00:20.980895-07:00,1006.204833984375,10.725571,10725.571 +25873,2025-03-10T06:00:31.709372-07:00,1006.17333984375,10.728477,10728.477 +25874,2025-03-10T06:00:42.432930-07:00,1006.15673828125,10.723558,10723.558 +25875,2025-03-10T06:00:53.154959-07:00,1006.177978515625,10.722029,10722.029 +25876,2025-03-10T06:01:03.892102-07:00,1006.1798706054688,10.737143,10737.143 +25877,2025-03-10T06:01:14.617895-07:00,1006.149658203125,10.725793,10725.793 +25878,2025-03-10T06:01:25.339893-07:00,1006.1383056640625,10.721998,10721.998 +25879,2025-03-10T06:01:36.066190-07:00,1006.1463012695312,10.726297,10726.297 +25880,2025-03-10T06:01:46.786893-07:00,1006.1411743164062,10.720703,10720.703 +25881,2025-03-10T06:01:57.513410-07:00,1006.1392211914062,10.726517,10726.517 +25882,2025-03-10T06:02:08.240297-07:00,1006.1539306640625,10.726887,10726.887 +25883,2025-03-10T06:02:18.964058-07:00,1006.1359252929688,10.723761,10723.761 +25884,2025-03-10T06:02:29.694066-07:00,1006.1226806640625,10.730008,10730.008 +25885,2025-03-10T06:02:40.414093-07:00,1006.1439208984375,10.720027,10720.027 +25886,2025-03-10T06:02:51.138072-07:00,1006.1189575195312,10.723979,10723.979 +25887,2025-03-10T06:03:01.870004-07:00,1006.1486206054688,10.731932,10731.932 +25888,2025-03-10T06:03:12.593889-07:00,1006.1613159179688,10.723885,10723.885 +25889,2025-03-10T06:03:23.317086-07:00,1006.1268920898438,10.723197,10723.197 +25890,2025-03-10T06:03:34.050895-07:00,1006.1415405273438,10.733809,10733.809 +25891,2025-03-10T06:03:44.767292-07:00,1006.12353515625,10.716397,10716.397 +25892,2025-03-10T06:03:55.500075-07:00,1006.130126953125,10.732783,10732.783 +25893,2025-03-10T06:04:06.221149-07:00,1006.146240234375,10.721074,10721.074 +25894,2025-03-10T06:04:16.943096-07:00,1006.1395874023438,10.721947,10721.947 +25895,2025-03-10T06:04:27.665959-07:00,1006.12158203125,10.722863,10722.863 +25896,2025-03-10T06:04:38.390915-07:00,1006.1376342773438,10.724956,10724.956 +25897,2025-03-10T06:04:49.121418-07:00,1006.1475219726562,10.730503,10730.503 +25898,2025-03-10T06:04:59.845070-07:00,1006.12109375,10.723652,10723.652 +25899,2025-03-10T06:05:10.572072-07:00,1006.1437377929688,10.727002,10727.002 +25900,2025-03-10T06:05:21.293122-07:00,1006.1668701171875,10.72105,10721.05 +25901,2025-03-10T06:05:32.019929-07:00,1006.1715087890625,10.726807,10726.807 +25902,2025-03-10T06:05:42.744117-07:00,1006.1517333984375,10.724188,10724.188 +25903,2025-03-10T06:05:53.459457-07:00,1006.1663208007812,10.71534,10715.34 +25904,2025-03-10T06:06:04.185887-07:00,1006.1629638671875,10.72643,10726.43 +25905,2025-03-10T06:06:14.912923-07:00,1006.1776733398438,10.727036,10727.036 +25906,2025-03-10T06:06:25.639897-07:00,1006.2006225585938,10.726974,10726.974 +25907,2025-03-10T06:06:36.357097-07:00,1006.1889038085938,10.7172,10717.2 +25908,2025-03-10T06:06:47.084959-07:00,1006.2118530273438,10.727862,10727.862 +25909,2025-03-10T06:06:57.803864-07:00,1006.1950073242188,10.718905,10718.905 +25910,2025-03-10T06:07:08.534908-07:00,1006.1915893554688,10.731044,10731.044 +25911,2025-03-10T06:07:19.253084-07:00,1006.1702880859375,10.718176,10718.176 +25912,2025-03-10T06:07:29.980896-07:00,1006.1849975585938,10.727812,10727.812 +25913,2025-03-10T06:07:40.703125-07:00,1006.1864624023438,10.722229,10722.229 +25914,2025-03-10T06:07:51.436085-07:00,1006.216064453125,10.73296,10732.96 +25915,2025-03-10T06:08:02.157954-07:00,1006.2109375,10.721869,10721.869 +25916,2025-03-10T06:08:12.890895-07:00,1006.20751953125,10.732941,10732.941 +25917,2025-03-10T06:08:23.616914-07:00,1006.200927734375,10.726019,10726.019 +25918,2025-03-10T06:08:34.342085-07:00,1006.2371826171875,10.725171,10725.171 +25919,2025-03-10T06:08:45.071341-07:00,1006.2107543945312,10.729256,10729.256 +25920,2025-03-10T06:08:55.789917-07:00,1006.2191162109375,10.718576,10718.576 +25921,2025-03-10T06:09:06.517840-07:00,1006.237060546875,10.727923,10727.923 +25922,2025-03-10T06:09:17.247444-07:00,1006.2106323242188,10.729604,10729.604 +25923,2025-03-10T06:09:27.973108-07:00,1006.235107421875,10.725664,10725.664 +25924,2025-03-10T06:09:38.698892-07:00,1006.2299194335938,10.725784,10725.784 +25925,2025-03-10T06:09:49.428101-07:00,1006.2396850585938,10.729209,10729.209 +25926,2025-03-10T06:10:00.152485-07:00,1006.221435546875,10.724384,10724.384 +25927,2025-03-10T06:10:10.882892-07:00,1006.2308349609375,10.730407,10730.407 +25928,2025-03-10T06:10:11.084059-07:00,1006.247314453125,0.201167,201.167 +25929,2025-03-10T06:10:21.606912-07:00,1006.220947265625,10.522853,10522.853 +25930,2025-03-10T06:10:32.325986-07:00,1006.2123413085938,10.719074,10719.074 +25931,2025-03-10T06:10:43.052334-07:00,1006.217041015625,10.726348,10726.348 +25932,2025-03-10T06:10:53.772893-07:00,1006.2084350585938,10.720559,10720.559 +25933,2025-03-10T06:11:04.499896-07:00,1006.2329711914062,10.727003,10727.003 +25934,2025-03-10T06:11:15.224633-07:00,1006.22119140625,10.724737,10724.737 +25935,2025-03-10T06:11:25.951100-07:00,1006.2140502929688,10.726467,10726.467 +25936,2025-03-10T06:11:36.682009-07:00,1006.2157592773438,10.730909,10730.909 +25937,2025-03-10T06:11:47.406899-07:00,1006.22705078125,10.72489,10724.89 +25938,2025-03-10T06:11:58.140108-07:00,1006.218505859375,10.733209,10733.209 +25939,2025-03-10T06:12:08.865877-07:00,1006.234619140625,10.725769,10725.769 +25940,2025-03-10T06:12:19.592895-07:00,1006.224609375,10.727018,10727.018 +25941,2025-03-10T06:12:30.319622-07:00,1006.219482421875,10.726727,10726.727 +25942,2025-03-10T06:12:41.056815-07:00,1006.2273559570312,10.737193,10737.193 +25943,2025-03-10T06:12:51.783895-07:00,1006.2368774414062,10.72708,10727.08 +25944,2025-03-10T06:13:02.518217-07:00,1006.2254028320312,10.734322,10734.322 +25945,2025-03-10T06:13:13.241029-07:00,1006.228271484375,10.722812,10722.812 +25946,2025-03-10T06:13:23.975896-07:00,1006.228271484375,10.734867,10734.867 +25947,2025-03-10T06:13:34.706672-07:00,1006.226318359375,10.730776,10730.776 +25948,2025-03-10T06:13:45.434893-07:00,1006.2295532226562,10.728221,10728.221 +25949,2025-03-10T06:13:56.160894-07:00,1006.247314453125,10.726001,10726.001 +25950,2025-03-10T06:14:06.885076-07:00,1006.2488403320312,10.724182,10724.182 +25951,2025-03-10T06:14:17.613920-07:00,1006.263427734375,10.728844,10728.844 +25952,2025-03-10T06:14:28.343069-07:00,1006.2732543945312,10.729149,10729.149 +25953,2025-03-10T06:14:39.072763-07:00,1006.2335815429688,10.729694,10729.694 +25954,2025-03-10T06:14:49.797893-07:00,1006.2256469726562,10.72513,10725.13 +25955,2025-03-10T06:15:00.526087-07:00,1006.2567138671875,10.728194,10728.194 +25956,2025-03-10T06:15:11.260063-07:00,1006.2515869140625,10.733976,10733.976 +25957,2025-03-10T06:15:21.986896-07:00,1006.23828125,10.726833,10726.833 +25958,2025-03-10T06:15:32.714081-07:00,1006.22509765625,10.727185,10727.185 +25959,2025-03-10T06:15:43.434903-07:00,1006.25439453125,10.720822,10720.822 +25960,2025-03-10T06:15:54.157069-07:00,1006.22314453125,10.722166,10722.166 +25961,2025-03-10T06:16:04.890901-07:00,1006.2457885742188,10.733832,10733.832 +25962,2025-03-10T06:16:15.616987-07:00,1006.25244140625,10.726086,10726.086 +25963,2025-03-10T06:16:26.340995-07:00,1006.2391967773438,10.724008,10724.008 +25964,2025-03-10T06:16:37.067098-07:00,1006.2754516601562,10.726103,10726.103 +25965,2025-03-10T06:16:47.803926-07:00,1006.2193603515625,10.736828,10736.828 +25966,2025-03-10T06:16:58.530115-07:00,1006.2193603515625,10.726189,10726.189 +25967,2025-03-10T06:17:09.258033-07:00,1006.2357788085938,10.727918,10727.918 +25968,2025-03-10T06:17:19.981069-07:00,1006.2128295898438,10.723036,10723.036 +25969,2025-03-10T06:17:30.713963-07:00,1006.2160034179688,10.732894,10732.894 +25970,2025-03-10T06:17:41.441558-07:00,1006.229248046875,10.727595,10727.595 +25971,2025-03-10T06:17:52.177100-07:00,1006.2079467773438,10.735542,10735.542 +25972,2025-03-10T06:18:02.902932-07:00,1006.2042236328125,10.725832,10725.832 +25973,2025-03-10T06:18:13.632429-07:00,1006.2028198242188,10.729497,10729.497 +25974,2025-03-10T06:18:24.363147-07:00,1006.2372436523438,10.730718,10730.718 +25975,2025-03-10T06:18:35.086895-07:00,1006.2059326171875,10.723748,10723.748 +25976,2025-03-10T06:18:45.821893-07:00,1006.1928100585938,10.734998,10734.998 +25977,2025-03-10T06:18:56.548919-07:00,1006.227294921875,10.727026,10727.026 +25978,2025-03-10T06:19:07.275895-07:00,1006.2089233398438,10.726976,10726.976 +25979,2025-03-10T06:19:17.998798-07:00,1006.1890869140625,10.722903,10722.903 +25980,2025-03-10T06:19:28.730892-07:00,1006.1928100585938,10.732094,10732.094 +25981,2025-03-10T06:19:39.453967-07:00,1006.1942138671875,10.723075,10723.075 +25982,2025-03-10T06:19:50.182028-07:00,1006.1824951171875,10.728061,10728.061 +25983,2025-03-10T06:20:00.910956-07:00,1006.2120361328125,10.728928,10728.928 +25984,2025-03-10T06:20:11.634076-07:00,1006.1824951171875,10.72312,10723.12 +25985,2025-03-10T06:20:22.359897-07:00,1006.13623046875,10.725821,10725.821 +25986,2025-03-10T06:20:33.091113-07:00,1006.1842041015625,10.731216,10731.216 +25987,2025-03-10T06:20:43.815919-07:00,1006.2154541015625,10.724806,10724.806 +25988,2025-03-10T06:20:54.546898-07:00,1006.2073974609375,10.730979,10730.979 +25989,2025-03-10T06:21:05.278000-07:00,1006.1611938476562,10.731102,10731.102 +25990,2025-03-10T06:21:16.002921-07:00,1006.1677856445312,10.724921,10724.921 +25991,2025-03-10T06:21:26.728895-07:00,1006.1663818359375,10.725974,10725.974 +25992,2025-03-10T06:21:37.449890-07:00,1006.1697387695312,10.720995,10720.995 +25993,2025-03-10T06:21:48.178099-07:00,1006.1646118164062,10.728209,10728.209 +25994,2025-03-10T06:21:58.906071-07:00,1006.143310546875,10.727972,10727.972 +25995,2025-03-10T06:22:09.639895-07:00,1006.1843872070312,10.733824,10733.824 +25996,2025-03-10T06:22:20.361107-07:00,1006.1749267578125,10.721212,10721.212 +25997,2025-03-10T06:22:31.095118-07:00,1006.1777954101562,10.734011,10734.011 +25998,2025-03-10T06:22:41.820894-07:00,1006.2093505859375,10.725776,10725.776 +25999,2025-03-10T06:22:52.548354-07:00,1006.1881103515625,10.72746,10727.46 +26000,2025-03-10T06:23:03.277896-07:00,1006.1829833984375,10.729542,10729.542 +26001,2025-03-10T06:23:14.003895-07:00,1006.1947021484375,10.725999,10725.999 +26002,2025-03-10T06:23:24.733306-07:00,1006.1682739257812,10.729411,10729.411 +26003,2025-03-10T06:23:35.461892-07:00,1006.1768798828125,10.728586,10728.586 +26004,2025-03-10T06:23:46.183078-07:00,1006.1702880859375,10.721186,10721.186 +26005,2025-03-10T06:23:56.914894-07:00,1006.1702880859375,10.731816,10731.816 +26006,2025-03-10T06:24:07.641890-07:00,1006.1736450195312,10.726996,10726.996 +26007,2025-03-10T06:24:18.368064-07:00,1006.1950073242188,10.726174,10726.174 +26008,2025-03-10T06:24:29.090240-07:00,1006.2067260742188,10.722176,10722.176 +26009,2025-03-10T06:24:39.820080-07:00,1006.1950073242188,10.72984,10729.84 +26010,2025-03-10T06:24:50.547058-07:00,1006.2147827148438,10.726978,10726.978 +26011,2025-03-10T06:25:01.280895-07:00,1006.18408203125,10.733837,10733.837 +26012,2025-03-10T06:25:12.011945-07:00,1006.2067260742188,10.73105,10731.05 +26013,2025-03-10T06:25:22.736890-07:00,1006.1707763671875,10.724945,10724.945 +26014,2025-03-10T06:25:33.464106-07:00,1006.203857421875,10.727216,10727.216 +26015,2025-03-10T06:25:44.189958-07:00,1006.2006225585938,10.725852,10725.852 +26016,2025-03-10T06:25:54.906890-07:00,1006.1793823242188,10.716932,10716.932 +26017,2025-03-10T06:26:05.639067-07:00,1006.1793823242188,10.732177,10732.177 +26018,2025-03-10T06:26:16.362893-07:00,1006.2106323242188,10.723826,10723.826 +26019,2025-03-10T06:26:27.097270-07:00,1006.1776733398438,10.734377,10734.377 +26020,2025-03-10T06:26:37.815893-07:00,1006.1945190429688,10.718623,10718.623 +26021,2025-03-10T06:26:48.542892-07:00,1006.1945190429688,10.726999,10726.999 +26022,2025-03-10T06:26:59.269209-07:00,1006.1846923828125,10.726317,10726.317 +26023,2025-03-10T06:27:09.989349-07:00,1006.1832885742188,10.72014,10720.14 +26024,2025-03-10T06:27:20.723066-07:00,1006.2013549804688,10.733717,10733.717 +26025,2025-03-10T06:27:31.443893-07:00,1006.203125,10.720827,10720.827 +26026,2025-03-10T06:27:42.172334-07:00,1006.21826171875,10.728441,10728.441 +26027,2025-03-10T06:27:52.887297-07:00,1006.2196655273438,10.714963,10714.963 +26028,2025-03-10T06:28:03.621198-07:00,1006.2380981445312,10.733901,10733.901 +26029,2025-03-10T06:28:14.337892-07:00,1006.24609375,10.716694,10716.694 +26030,2025-03-10T06:28:25.069329-07:00,1006.197021484375,10.731437,10731.437 +26031,2025-03-10T06:28:35.789714-07:00,1006.1952514648438,10.720385,10720.385 +26032,2025-03-10T06:28:46.522047-07:00,1006.2432861328125,10.732333,10732.333 +26033,2025-03-10T06:28:57.237069-07:00,1006.2084350585938,10.715022,10715.022 +26034,2025-03-10T06:29:07.962174-07:00,1006.2003784179688,10.725105,10725.105 +26035,2025-03-10T06:29:18.688358-07:00,1006.228271484375,10.726184,10726.184 +26036,2025-03-10T06:29:29.407898-07:00,1006.213623046875,10.71954,10719.54 +26037,2025-03-10T06:29:40.136068-07:00,1006.2366333007812,10.72817,10728.17 +26038,2025-03-10T06:29:50.867699-07:00,1006.213623046875,10.731631,10731.631 +26039,2025-03-10T06:30:01.585921-07:00,1006.2334594726562,10.718222,10718.222 +26040,2025-03-10T06:30:12.317094-07:00,1006.2451782226562,10.731173,10731.173 +26041,2025-03-10T06:30:23.043893-07:00,1006.241455078125,10.726799,10726.799 +26042,2025-03-10T06:30:33.767112-07:00,1006.21875,10.723219,10723.219 +26043,2025-03-10T06:30:44.501023-07:00,1006.2103881835938,10.733911,10733.911 +26044,2025-03-10T06:30:55.221894-07:00,1006.230224609375,10.720871,10720.871 +26045,2025-03-10T06:31:05.951091-07:00,1006.215576171875,10.729197,10729.197 +26046,2025-03-10T06:31:16.679953-07:00,1006.2354125976562,10.728862,10728.862 +26047,2025-03-10T06:31:27.413013-07:00,1006.2354125976562,10.73306,10733.06 +26048,2025-03-10T06:31:38.145072-07:00,1006.2420043945312,10.732059,10732.059 +26049,2025-03-10T06:31:48.868894-07:00,1006.23388671875,10.723822,10723.822 +26050,2025-03-10T06:31:59.596887-07:00,1006.2485961914062,10.727993,10727.993 +26051,2025-03-10T06:32:10.324920-07:00,1006.243896484375,10.728033,10728.033 +26052,2025-03-10T06:32:21.057214-07:00,1006.2736206054688,10.732294,10732.294 +26053,2025-03-10T06:32:31.786096-07:00,1006.2293090820312,10.728882,10728.882 +26054,2025-03-10T06:32:42.513987-07:00,1006.2142944335938,10.727891,10727.891 +26055,2025-03-10T06:32:53.241100-07:00,1006.2274780273438,10.727113,10727.113 +26056,2025-03-10T06:33:03.963196-07:00,1006.2525024414062,10.722096,10722.096 +26057,2025-03-10T06:33:14.694062-07:00,1006.2359619140625,10.730866,10730.866 +26058,2025-03-10T06:33:25.418697-07:00,1006.25390625,10.724635,10724.635 +26059,2025-03-10T06:33:36.154598-07:00,1006.2076416015625,10.735901,10735.901 +26060,2025-03-10T06:33:46.875519-07:00,1006.2274780273438,10.720921,10720.921 +26061,2025-03-10T06:33:57.612337-07:00,1006.247314453125,10.736818,10736.818 +26062,2025-03-10T06:34:08.337891-07:00,1006.2228393554688,10.725554,10725.554 +26063,2025-03-10T06:34:19.070900-07:00,1006.23779296875,10.733009,10733.009 +26064,2025-03-10T06:34:29.801950-07:00,1006.2444458007812,10.73105,10731.05 +26065,2025-03-10T06:34:40.524893-07:00,1006.2459106445312,10.722943,10722.943 +26066,2025-03-10T06:34:51.244039-07:00,1006.24267578125,10.719146,10719.146 +26067,2025-03-10T06:35:01.975236-07:00,1006.2279663085938,10.731197,10731.197 +26068,2025-03-10T06:35:12.701966-07:00,1006.2081909179688,10.72673,10726.73 +26069,2025-03-10T06:35:23.427259-07:00,1006.21484375,10.725293,10725.293 +26070,2025-03-10T06:35:34.150961-07:00,1006.2251586914062,10.723702,10723.702 +26071,2025-03-10T06:35:44.876306-07:00,1006.218505859375,10.725345,10725.345 +26072,2025-03-10T06:35:55.601892-07:00,1006.208740234375,10.725586,10725.586 +26073,2025-03-10T06:36:06.332726-07:00,1006.208740234375,10.730834,10730.834 +26074,2025-03-10T06:36:17.057092-07:00,1006.2564086914062,10.724366,10724.366 +26075,2025-03-10T06:36:27.783293-07:00,1006.22998046875,10.726201,10726.201 +26076,2025-03-10T06:36:38.511080-07:00,1006.208740234375,10.727787,10727.787 +26077,2025-03-10T06:36:49.228947-07:00,1006.207275390625,10.717867,10717.867 +26078,2025-03-10T06:36:59.961095-07:00,1006.2483520507812,10.732148,10732.148 +26079,2025-03-10T06:37:10.682899-07:00,1006.2318725585938,10.721804,10721.804 +26080,2025-03-10T06:37:21.405895-07:00,1006.21728515625,10.722996,10722.996 +26081,2025-03-10T06:37:32.137861-07:00,1006.2157592773438,10.731966,10731.966 +26082,2025-03-10T06:37:42.866895-07:00,1006.2318725585938,10.729034,10729.034 +26083,2025-03-10T06:37:53.585076-07:00,1006.2290649414062,10.718181,10718.181 +26084,2025-03-10T06:38:04.318895-07:00,1006.2318725585938,10.733819,10733.819 +26085,2025-03-10T06:38:15.042893-07:00,1006.20751953125,10.723998,10723.998 +26086,2025-03-10T06:38:25.762892-07:00,1006.235595703125,10.719999,10719.999 +26087,2025-03-10T06:38:36.490068-07:00,1006.2421875,10.727176,10727.176 +26088,2025-03-10T06:38:47.215182-07:00,1006.2257690429688,10.725114,10725.114 +26089,2025-03-10T06:38:57.936890-07:00,1006.240478515625,10.721708,10721.708 +26090,2025-03-10T06:39:08.665085-07:00,1006.253662109375,10.728195,10728.195 +26091,2025-03-10T06:39:19.394922-07:00,1006.23095703125,10.729837,10729.837 +26092,2025-03-10T06:39:30.123074-07:00,1006.2390747070312,10.728152,10728.152 +26093,2025-03-10T06:39:40.851554-07:00,1006.22265625,10.72848,10728.48 +26094,2025-03-10T06:39:51.573926-07:00,1006.242431640625,10.722372,10722.372 +26095,2025-03-10T06:40:02.299429-07:00,1006.2507934570312,10.725503,10725.503 +26096,2025-03-10T06:40:13.026895-07:00,1006.22119140625,10.727466,10727.466 +26097,2025-03-10T06:40:23.752086-07:00,1006.2357788085938,10.725191,10725.191 +26098,2025-03-10T06:40:34.484097-07:00,1006.234375,10.732011,10732.011 +26099,2025-03-10T06:40:45.201887-07:00,1006.2329711914062,10.71779,10717.79 +26100,2025-03-10T06:40:55.927918-07:00,1006.2542114257812,10.726031,10726.031 +26101,2025-03-10T06:41:06.654095-07:00,1006.2196655273438,10.726177,10726.177 +26102,2025-03-10T06:41:17.383071-07:00,1006.2527465820312,10.728976,10728.976 +26103,2025-03-10T06:41:28.108895-07:00,1006.2380981445312,10.725824,10725.824 +26104,2025-03-10T06:41:38.836896-07:00,1006.2296752929688,10.728001,10728.001 +26105,2025-03-10T06:41:49.553299-07:00,1006.2759399414062,10.716403,10716.403 +26106,2025-03-10T06:42:00.281116-07:00,1006.2546997070312,10.727817,10727.817 +26107,2025-03-10T06:42:11.012060-07:00,1006.2296752929688,10.730944,10730.944 +26108,2025-03-10T06:42:21.730105-07:00,1006.23486328125,10.718045,10718.045 +26109,2025-03-10T06:42:32.457090-07:00,1006.2268676757812,10.726985,10726.985 +26110,2025-03-10T06:42:43.177893-07:00,1006.2003784179688,10.720803,10720.803 +26111,2025-03-10T06:42:53.908558-07:00,1006.22021484375,10.730665,10730.665 +26112,2025-03-10T06:43:04.622098-07:00,1006.2481079101562,10.71354,10713.54 +26113,2025-03-10T06:43:15.349058-07:00,1006.2581176757812,10.72696,10726.96 +26114,2025-03-10T06:43:26.070928-07:00,1006.2678833007812,10.72187,10721.87 +26115,2025-03-10T06:43:36.794611-07:00,1006.2184448242188,10.723683,10723.683 +26116,2025-03-10T06:43:47.526893-07:00,1006.23681640625,10.732282,10732.282 +26117,2025-03-10T06:43:58.246896-07:00,1006.2352905273438,10.720003,10720.003 +26118,2025-03-10T06:44:08.969947-07:00,1006.243408203125,10.723051,10723.051 +26119,2025-03-10T06:44:19.701891-07:00,1006.241943359375,10.731944,10731.944 +26120,2025-03-10T06:44:30.426058-07:00,1006.22705078125,10.724167,10724.167 +26121,2025-03-10T06:44:41.142895-07:00,1006.22705078125,10.716837,10716.837 +26122,2025-03-10T06:44:51.868327-07:00,1006.260009765625,10.725432,10725.432 +26123,2025-03-10T06:45:02.596892-07:00,1006.2453002929688,10.728565,10728.565 +26124,2025-03-10T06:45:13.324068-07:00,1006.230712890625,10.727176,10727.176 +26125,2025-03-10T06:45:24.038896-07:00,1006.24072265625,10.714828,10714.828 +26126,2025-03-10T06:45:34.766014-07:00,1006.275146484375,10.727118,10727.118 +26127,2025-03-10T06:45:45.486892-07:00,1006.2492065429688,10.720878,10720.878 +26128,2025-03-10T06:45:56.212113-07:00,1006.260986328125,10.725221,10725.221 +26129,2025-03-10T06:46:06.928895-07:00,1006.259521484375,10.716782,10716.782 +26130,2025-03-10T06:46:17.658709-07:00,1006.2399291992188,10.729814,10729.814 +26131,2025-03-10T06:46:28.378022-07:00,1006.261474609375,10.719313,10719.313 +26132,2025-03-10T06:46:39.099146-07:00,1006.2568969726562,10.721124,10721.124 +26133,2025-03-10T06:46:49.830094-07:00,1006.2734375,10.730948,10730.948 +26134,2025-03-10T06:47:00.552898-07:00,1006.278564453125,10.722804,10722.804 +26135,2025-03-10T06:47:11.278082-07:00,1006.2787475585938,10.725184,10725.184 +26136,2025-03-10T06:47:21.996110-07:00,1006.2675170898438,10.718028,10718.028 +26137,2025-03-10T06:47:32.728262-07:00,1006.260986328125,10.732152,10732.152 +26138,2025-03-10T06:47:43.446963-07:00,1006.261474609375,10.718701,10718.701 +26139,2025-03-10T06:47:54.177095-07:00,1006.2605590820312,10.730132,10730.132 +26140,2025-03-10T06:48:04.904475-07:00,1006.27392578125,10.72738,10727.38 +26141,2025-03-10T06:48:15.625895-07:00,1006.266357421875,10.72142,10721.42 +26142,2025-03-10T06:48:26.355295-07:00,1006.2650146484375,10.7294,10729.4 +26143,2025-03-10T06:48:37.070640-07:00,1006.3150634765625,10.715345,10715.345 +26144,2025-03-10T06:48:47.797095-07:00,1006.2891235351562,10.726455,10726.455 +26145,2025-03-10T06:48:58.511890-07:00,1006.3013916015625,10.714795,10714.795 +26146,2025-03-10T06:49:09.239484-07:00,1006.309814453125,10.727594,10727.594 +26147,2025-03-10T06:49:19.961918-07:00,1006.2525024414062,10.722434,10722.434 +26148,2025-03-10T06:49:30.682765-07:00,1006.2728271484375,10.720847,10720.847 +26149,2025-03-10T06:49:41.406892-07:00,1006.3109130859375,10.724127,10724.127 +26150,2025-03-10T06:49:52.129450-07:00,1006.3015747070312,10.722558,10722.558 +26151,2025-03-10T06:50:02.844893-07:00,1006.31005859375,10.715443,10715.443 +26152,2025-03-10T06:50:13.564919-07:00,1006.2592163085938,10.720026,10720.026 +26153,2025-03-10T06:50:24.291896-07:00,1006.2826538085938,10.726977,10726.977 +26154,2025-03-10T06:50:35.014988-07:00,1006.2977905273438,10.723092,10723.092 +26155,2025-03-10T06:50:45.735664-07:00,1006.3045043945312,10.720676,10720.676 +26156,2025-03-10T06:50:56.455043-07:00,1006.3162231445312,10.719379,10719.379 +26157,2025-03-10T06:51:07.176892-07:00,1006.2837524414062,10.721849,10721.849 +26158,2025-03-10T06:51:17.891894-07:00,1006.296875,10.715002,10715.002 +26159,2025-03-10T06:51:28.614887-07:00,1006.28857421875,10.722993,10722.993 +26160,2025-03-10T06:51:39.338917-07:00,1006.2720947265625,10.72403,10724.03 +26161,2025-03-10T06:51:50.064046-07:00,1006.2904663085938,10.725129,10725.129 +26162,2025-03-10T06:52:00.783889-07:00,1006.2988891601562,10.719843,10719.843 +26163,2025-03-10T06:52:11.506892-07:00,1006.2923583984375,10.723003,10723.003 +26164,2025-03-10T06:52:22.229109-07:00,1006.282470703125,10.722217,10722.217 +26165,2025-03-10T06:52:32.954707-07:00,1006.282470703125,10.725598,10725.598 +26166,2025-03-10T06:52:43.668893-07:00,1006.3088989257812,10.714186,10714.186 +26167,2025-03-10T06:52:54.398894-07:00,1006.3074951171875,10.730001,10730.001 +26168,2025-03-10T06:53:05.143357-07:00,1006.3074951171875,10.744463,10744.463 +26169,2025-03-10T06:53:15.869604-07:00,1006.3367309570312,10.726247,10726.247 +26170,2025-03-10T06:53:26.588314-07:00,1006.29248046875,10.71871,10718.71 +26171,2025-03-10T06:53:37.312313-07:00,1006.3023681640625,10.723999,10723.999 +26172,2025-03-10T06:53:48.032600-07:00,1006.3074951171875,10.720287,10720.287 +26173,2025-03-10T06:53:58.764518-07:00,1006.279296875,10.731918,10731.918 +26174,2025-03-10T06:54:09.493492-07:00,1006.3353271484375,10.728974,10728.974 +26175,2025-03-10T06:54:20.214318-07:00,1006.3301391601562,10.720826,10720.826 +26176,2025-03-10T06:54:30.938654-07:00,1006.3023681640625,10.724336,10724.336 +26177,2025-03-10T06:54:41.663341-07:00,1006.3169555664062,10.724687,10724.687 +26178,2025-03-10T06:54:52.392380-07:00,1006.3169555664062,10.729039,10729.039 +26179,2025-03-10T06:55:03.118511-07:00,1006.3367309570312,10.726131,10726.131 +26180,2025-03-10T06:55:13.844459-07:00,1006.2988891601562,10.725948,10725.948 +26181,2025-03-10T06:55:24.570322-07:00,1006.3070068359375,10.725863,10725.863 +26182,2025-03-10T06:55:35.299372-07:00,1006.3348388671875,10.72905,10729.05 +26183,2025-03-10T06:55:46.029489-07:00,1006.3135986328125,10.730117,10730.117 +26184,2025-03-10T06:55:56.751502-07:00,1006.3084106445312,10.722013,10722.013 +26185,2025-03-10T06:56:07.483523-07:00,1006.3035888671875,10.732021,10732.021 +26186,2025-03-10T06:56:18.211316-07:00,1006.2904663085938,10.727793,10727.793 +26187,2025-03-10T06:56:28.930386-07:00,1006.3082885742188,10.71907,10719.07 +26188,2025-03-10T06:56:39.657514-07:00,1006.31494140625,10.727128,10727.128 +26189,2025-03-10T06:56:50.389524-07:00,1006.318115234375,10.73201,10732.01 +26190,2025-03-10T06:57:01.117383-07:00,1006.296875,10.727859,10727.859 +26191,2025-03-10T06:57:11.843221-07:00,1006.278564453125,10.725838,10725.838 +26192,2025-03-10T06:57:22.571530-07:00,1006.28662109375,10.728309,10728.309 +26193,2025-03-10T06:57:33.298352-07:00,1006.3228149414062,10.726822,10726.822 +26194,2025-03-10T06:57:44.023685-07:00,1006.2700805664062,10.725333,10725.333 +26195,2025-03-10T06:57:54.740395-07:00,1006.2799072265625,10.71671,10716.71 +26196,2025-03-10T06:58:05.461159-07:00,1006.2879638671875,10.720764,10720.764 +26197,2025-03-10T06:58:16.190380-07:00,1006.2814331054688,10.729221,10729.221 +26198,2025-03-10T06:58:26.913431-07:00,1006.2809448242188,10.723051,10723.051 +26199,2025-03-10T06:58:37.639311-07:00,1006.2826538085938,10.72588,10725.88 +26200,2025-03-10T06:58:48.356505-07:00,1006.2841186523438,10.717194,10717.194 +26201,2025-03-10T06:58:59.077519-07:00,1006.2723388671875,10.721014,10721.014 +26202,2025-03-10T06:59:09.803553-07:00,1006.303466796875,10.726034,10726.034 +26203,2025-03-10T06:59:20.519318-07:00,1006.26904296875,10.715765,10715.765 +26204,2025-03-10T06:59:31.250319-07:00,1006.304931640625,10.731001,10731.001 +26205,2025-03-10T06:59:41.966567-07:00,1006.3411865234375,10.716248,10716.248 +26206,2025-03-10T06:59:52.691548-07:00,1006.2832641601562,10.724981,10724.981 +26207,2025-03-10T07:00:03.419730-07:00,1006.276611328125,10.728182,10728.182 +26208,2025-03-10T07:00:14.136625-07:00,1006.2732543945312,10.716895,10716.895 +26209,2025-03-10T07:00:24.865472-07:00,1006.2681274414062,10.728847,10728.847 +26210,2025-03-10T07:00:35.588319-07:00,1006.2549438476562,10.722847,10722.847 +26211,2025-03-10T07:00:46.307318-07:00,1006.2567138671875,10.718999,10718.999 +26212,2025-03-10T07:00:57.030389-07:00,1006.287841796875,10.723071,10723.071 +26213,2025-03-10T07:01:07.752339-07:00,1006.2642822265625,10.72195,10721.95 +26214,2025-03-10T07:01:18.480480-07:00,1006.2693481445312,10.728141,10728.141 +26215,2025-03-10T07:01:29.202928-07:00,1006.2445068359375,10.722448,10722.448 +26216,2025-03-10T07:01:39.922470-07:00,1006.2410888671875,10.719542,10719.542 +26217,2025-03-10T07:01:50.646187-07:00,1006.2391967773438,10.723717,10723.717 +26218,2025-03-10T07:02:01.373526-07:00,1006.2802124023438,10.727339,10727.339 +26219,2025-03-10T07:02:12.098838-07:00,1006.284912109375,10.725312,10725.312 +26220,2025-03-10T07:02:22.820317-07:00,1006.2240600585938,10.721479,10721.479 +26221,2025-03-10T07:02:33.546765-07:00,1006.22705078125,10.726448,10726.448 +26222,2025-03-10T07:02:44.266353-07:00,1006.232177734375,10.719588,10719.588 +26223,2025-03-10T07:02:54.989532-07:00,1006.2529907226562,10.723179,10723.179 +26224,2025-03-10T07:03:05.713318-07:00,1006.2132568359375,10.723786,10723.786 +26225,2025-03-10T07:03:16.432382-07:00,1006.23486328125,10.719064,10719.064 +26226,2025-03-10T07:03:27.155375-07:00,1006.215087890625,10.722993,10722.993 +26227,2025-03-10T07:03:37.878498-07:00,1006.2329711914062,10.723123,10723.123 +26228,2025-03-10T07:03:48.600514-07:00,1006.2410278320312,10.722016,10722.016 +26229,2025-03-10T07:03:59.328410-07:00,1006.23583984375,10.727896,10727.896 +26230,2025-03-10T07:04:10.048514-07:00,1006.2244262695312,10.720104,10720.104 +26231,2025-03-10T07:04:20.771626-07:00,1006.2457275390625,10.723112,10723.112 +26232,2025-03-10T07:04:31.499717-07:00,1006.2405395507812,10.728091,10728.091 +26233,2025-03-10T07:04:42.223320-07:00,1006.2554931640625,10.723603,10723.603 +26234,2025-03-10T07:04:52.942988-07:00,1006.2385864257812,10.719668,10719.668 +26235,2025-03-10T07:05:03.671315-07:00,1006.2337646484375,10.728327,10728.327 +26236,2025-03-10T07:05:14.395084-07:00,1006.2337646484375,10.723769,10723.769 +26237,2025-03-10T07:05:25.112319-07:00,1006.2631225585938,10.717235,10717.235 +26238,2025-03-10T07:05:35.834709-07:00,1006.2446899414062,10.72239,10722.39 +26239,2025-03-10T07:05:46.560584-07:00,1006.2347412109375,10.725875,10725.875 +26240,2025-03-10T07:05:57.278500-07:00,1006.2560424804688,10.717916,10717.916 +26241,2025-03-10T07:06:07.996385-07:00,1006.2327880859375,10.717885,10717.885 +26242,2025-03-10T07:06:18.725504-07:00,1006.2474975585938,10.729119,10729.119 +26243,2025-03-10T07:06:29.450383-07:00,1006.2257690429688,10.724879,10724.879 +26244,2025-03-10T07:06:40.179514-07:00,1006.2171630859375,10.729131,10729.131 +26245,2025-03-10T07:06:50.901313-07:00,1006.220458984375,10.721799,10721.799 +26246,2025-03-10T07:07:12.345558-07:00,1006.2723388671875,21.444245,21444.245 +26247,2025-03-10T07:07:23.065403-07:00,1006.2195434570312,10.719845,10719.845 +26248,2025-03-10T07:07:33.794878-07:00,1006.2505493164062,10.729475,10729.475 +26249,2025-03-10T07:07:44.510392-07:00,1006.22216796875,10.715514,10715.514 +26250,2025-03-10T07:07:55.226319-07:00,1006.2404174804688,10.715927,10715.927 +26251,2025-03-10T07:08:05.948514-07:00,1006.250244140625,10.722195,10722.195 +26252,2025-03-10T07:08:16.669526-07:00,1006.2597045898438,10.721012,10721.012 +26253,2025-03-10T07:08:27.391336-07:00,1006.262939453125,10.72181,10721.81 +26254,2025-03-10T07:08:38.113414-07:00,1006.2625122070312,10.722078,10722.078 +26255,2025-03-10T07:08:48.830706-07:00,1006.2293701171875,10.717292,10717.292 +26256,2025-03-10T07:08:59.551550-07:00,1006.261962890625,10.720844,10720.844 +26257,2025-03-10T07:09:10.282479-07:00,1006.230712890625,10.730929,10730.929 +26258,2025-03-10T07:09:20.996519-07:00,1006.2882080078125,10.71404,10714.04 +26259,2025-03-10T07:09:31.718537-07:00,1006.2647094726562,10.722018,10722.018 +26260,2025-03-10T07:09:42.441313-07:00,1006.2778930664062,10.722776,10722.776 +26261,2025-03-10T07:09:53.159519-07:00,1006.26123046875,10.718206,10718.206 +26262,2025-03-10T07:10:03.885537-07:00,1006.2693481445312,10.726018,10726.018 +26263,2025-03-10T07:10:14.608495-07:00,1006.2527465820312,10.722958,10722.958 +26264,2025-03-10T07:10:25.326328-07:00,1006.24755859375,10.717833,10717.833 +26265,2025-03-10T07:10:36.047491-07:00,1006.229248046875,10.721163,10721.163 +26266,2025-03-10T07:10:46.779316-07:00,1006.23095703125,10.731825,10731.825 +26267,2025-03-10T07:10:57.500503-07:00,1006.2470092773438,10.721187,10721.187 +26268,2025-03-10T07:11:08.220319-07:00,1006.2568969726562,10.719816,10719.816 +26269,2025-03-10T07:11:18.941530-07:00,1006.251708984375,10.721211,10721.211 +26270,2025-03-10T07:11:29.664316-07:00,1006.2535400390625,10.722786,10722.786 +26271,2025-03-10T07:11:40.388500-07:00,1006.233642578125,10.724184,10724.184 +26272,2025-03-10T07:11:51.121125-07:00,1006.2564086914062,10.732625,10732.625 +26273,2025-03-10T07:12:01.838317-07:00,1006.2383422851562,10.717192,10717.192 +26274,2025-03-10T07:12:12.556540-07:00,1006.2544555664062,10.718223,10718.223 +26275,2025-03-10T07:12:23.281317-07:00,1006.2756958007812,10.724777,10724.777 +26276,2025-03-10T07:12:34.003673-07:00,1006.2854614257812,10.722356,10722.356 +26277,2025-03-10T07:12:44.728317-07:00,1006.23779296875,10.724644,10724.644 +26278,2025-03-10T07:12:55.451665-07:00,1006.2556762695312,10.723348,10723.348 +26279,2025-03-10T07:13:06.182392-07:00,1006.2393188476562,10.730727,10730.727 +26280,2025-03-10T07:13:16.900719-07:00,1006.2490844726562,10.718327,10718.327 +26281,2025-03-10T07:13:27.625312-07:00,1006.2637329101562,10.724593,10724.593 +26282,2025-03-10T07:13:38.344957-07:00,1006.2076416015625,10.719645,10719.645 +26283,2025-03-10T07:13:49.066318-07:00,1006.2637329101562,10.721361,10721.361 +26284,2025-03-10T07:13:59.793541-07:00,1006.2359619140625,10.727223,10727.223 +26285,2025-03-10T07:14:10.514316-07:00,1006.2420043945312,10.720775,10720.775 +26286,2025-03-10T07:14:21.235478-07:00,1006.2637329101562,10.721162,10721.162 +26287,2025-03-10T07:14:31.966338-07:00,1006.2586059570312,10.73086,10730.86 +26288,2025-03-10T07:14:42.690381-07:00,1006.2373657226562,10.724043,10724.043 +26289,2025-03-10T07:14:53.413342-07:00,1006.2537231445312,10.722961,10722.961 +26290,2025-03-10T07:15:04.141572-07:00,1006.2572021484375,10.72823,10728.23 +26291,2025-03-10T07:15:14.860028-07:00,1006.26513671875,10.718456,10718.456 +26292,2025-03-10T07:15:25.584321-07:00,1006.3065795898438,10.724293,10724.293 +26293,2025-03-10T07:15:36.300317-07:00,1006.2803344726562,10.715996,10715.996 +26294,2025-03-10T07:15:47.032318-07:00,1006.2869262695312,10.732001,10732.001 +26295,2025-03-10T07:15:57.755409-07:00,1006.2987670898438,10.723091,10723.091 +26296,2025-03-10T07:16:08.478320-07:00,1006.2987670898438,10.722911,10722.911 +26297,2025-03-10T07:16:19.200201-07:00,1006.3118896484375,10.721881,10721.881 +26298,2025-03-10T07:16:29.920475-07:00,1006.3218994140625,10.720274,10720.274 +26299,2025-03-10T07:16:40.646347-07:00,1006.330322265625,10.725872,10725.872 +26300,2025-03-10T07:16:51.375842-07:00,1006.330322265625,10.729495,10729.495 +26301,2025-03-10T07:17:02.103380-07:00,1006.3087768554688,10.727538,10727.538 +26302,2025-03-10T07:17:12.819316-07:00,1006.3218994140625,10.715936,10715.936 +26303,2025-03-10T07:17:23.537321-07:00,1006.343505859375,10.718005,10718.005 +26304,2025-03-10T07:17:34.266549-07:00,1006.358154296875,10.729228,10729.228 +26305,2025-03-10T07:17:44.985710-07:00,1006.348388671875,10.719161,10719.161 +26306,2025-03-10T07:17:55.702313-07:00,1006.3417358398438,10.716603,10716.603 +26307,2025-03-10T07:18:06.431318-07:00,1006.3284912109375,10.729005,10729.005 +26308,2025-03-10T07:18:17.156209-07:00,1006.348388671875,10.724891,10724.891 +26309,2025-03-10T07:18:27.870510-07:00,1006.3284912109375,10.714301,10714.301 +26310,2025-03-10T07:18:38.588316-07:00,1006.3501586914062,10.717806,10717.806 +26311,2025-03-10T07:18:49.312353-07:00,1006.34033203125,10.724037,10724.037 +26312,2025-03-10T07:19:00.034429-07:00,1006.3284912109375,10.722076,10722.076 +26313,2025-03-10T07:19:10.752838-07:00,1006.3501586914062,10.718409,10718.409 +26314,2025-03-10T07:19:21.475316-07:00,1006.356689453125,10.722478,10722.478 +26315,2025-03-10T07:19:32.199315-07:00,1006.3501586914062,10.723999,10723.999 +26316,2025-03-10T07:19:42.912319-07:00,1006.344970703125,10.713004,10713.004 +26317,2025-03-10T07:19:53.639536-07:00,1006.33837890625,10.727217,10727.217 +26318,2025-03-10T07:20:04.357316-07:00,1006.3218994140625,10.71778,10717.78 +26319,2025-03-10T07:20:15.081475-07:00,1006.3124389648438,10.724159,10724.159 +26320,2025-03-10T07:20:25.806569-07:00,1006.333740234375,10.725094,10725.094 +26321,2025-03-10T07:20:36.528543-07:00,1006.3057861328125,10.721974,10721.974 +26322,2025-03-10T07:20:47.248462-07:00,1006.3389282226562,10.719919,10719.919 +26323,2025-03-10T07:20:57.973319-07:00,1006.333740234375,10.724857,10724.857 +26324,2025-03-10T07:21:08.692523-07:00,1006.2991943359375,10.719204,10719.204 +26325,2025-03-10T07:21:19.423393-07:00,1006.3157958984375,10.73087,10730.87 +26326,2025-03-10T07:21:30.138342-07:00,1006.3275756835938,10.714949,10714.949 +26327,2025-03-10T07:21:40.858319-07:00,1006.3063354492188,10.719977,10719.977 +26328,2025-03-10T07:21:51.587635-07:00,1006.332763671875,10.729316,10729.316 +26329,2025-03-10T07:22:02.312351-07:00,1006.332763671875,10.724716,10724.716 +26330,2025-03-10T07:22:13.029324-07:00,1006.360595703125,10.716973,10716.973 +26331,2025-03-10T07:22:23.747319-07:00,1006.3178100585938,10.717995,10717.995 +26332,2025-03-10T07:22:34.478424-07:00,1006.3375854492188,10.731105,10731.105 +26333,2025-03-10T07:22:45.192519-07:00,1006.3214721679688,10.714095,10714.095 +26334,2025-03-10T07:22:55.916316-07:00,1006.3361206054688,10.723797,10723.797 +26335,2025-03-10T07:23:06.642317-07:00,1006.3412475585938,10.726001,10726.001 +26336,2025-03-10T07:23:17.361564-07:00,1006.3131103515625,10.719247,10719.247 +26337,2025-03-10T07:23:28.081492-07:00,1006.2999267578125,10.719928,10719.928 +26338,2025-03-10T07:23:38.803553-07:00,1006.3117065429688,10.722061,10722.061 +26339,2025-03-10T07:23:49.534454-07:00,1006.336669921875,10.730901,10730.901 +26340,2025-03-10T07:24:00.254477-07:00,1006.336669921875,10.720023,10720.023 +26341,2025-03-10T07:24:10.971404-07:00,1006.3018798828125,10.716927,10716.927 +26342,2025-03-10T07:24:21.695316-07:00,1006.2952270507812,10.723912,10723.912 +26343,2025-03-10T07:24:32.416319-07:00,1006.3102416992188,10.721003,10721.003 +26344,2025-03-10T07:24:43.148725-07:00,1006.2937622070312,10.732406,10732.406 +26345,2025-03-10T07:24:53.861506-07:00,1006.2952270507812,10.712781,10712.781 +26346,2025-03-10T07:25:04.593429-07:00,1006.3070068359375,10.731923,10731.923 +26347,2025-03-10T07:25:15.308346-07:00,1006.2937622070312,10.714917,10714.917 +26348,2025-03-10T07:25:26.033518-07:00,1006.3084106445312,10.725172,10725.172 +26349,2025-03-10T07:25:36.756384-07:00,1006.28857421875,10.722866,10722.866 +26350,2025-03-10T07:25:47.479500-07:00,1006.2923583984375,10.723116,10723.116 +26351,2025-03-10T07:25:58.197393-07:00,1006.2988891601562,10.717893,10717.893 +26352,2025-03-10T07:26:08.928579-07:00,1006.2593994140625,10.731186,10731.186 +26353,2025-03-10T07:26:19.647317-07:00,1006.3055419921875,10.718738,10718.738 +26354,2025-03-10T07:26:30.365540-07:00,1006.2988891601562,10.718223,10718.223 +26355,2025-03-10T07:26:41.095320-07:00,1006.2711181640625,10.72978,10729.78 +26356,2025-03-10T07:26:51.816531-07:00,1006.2988891601562,10.721211,10721.211 +26357,2025-03-10T07:27:02.539318-07:00,1006.2988891601562,10.722787,10722.787 +26358,2025-03-10T07:27:13.252479-07:00,1006.2806396484375,10.713161,10713.161 +26359,2025-03-10T07:27:23.981318-07:00,1006.2659301757812,10.728839,10728.839 +26360,2025-03-10T07:27:34.693497-07:00,1006.2659301757812,10.712179,10712.179 +26361,2025-03-10T07:27:45.419316-07:00,1006.2791137695312,10.725819,10725.819 +26362,2025-03-10T07:27:56.140496-07:00,1006.2791137695312,10.72118,10721.18 +26363,2025-03-10T07:28:06.868318-07:00,1006.2659301757812,10.727822,10727.822 +26364,2025-03-10T07:28:17.594516-07:00,1006.2645263671875,10.726198,10726.198 +26365,2025-03-10T07:28:28.311562-07:00,1006.2542114257812,10.717046,10717.046 +26366,2025-03-10T07:28:39.030523-07:00,1006.2593994140625,10.718961,10718.961 +26367,2025-03-10T07:28:49.755316-07:00,1006.2315063476562,10.724793,10724.793 +26368,2025-03-10T07:29:00.483077-07:00,1006.2645263671875,10.727761,10727.761 +26369,2025-03-10T07:29:11.204526-07:00,1006.256103515625,10.721449,10721.449 +26370,2025-03-10T07:29:21.932499-07:00,1006.24951171875,10.727973,10727.973 +26371,2025-03-10T07:29:32.651316-07:00,1006.2759399414062,10.718817,10718.817 +26372,2025-03-10T07:29:43.373318-07:00,1006.2876586914062,10.722002,10722.002 +26373,2025-03-10T07:29:54.102010-07:00,1006.2678833007812,10.728692,10728.692 +26374,2025-03-10T07:30:04.814760-07:00,1006.2664184570312,10.71275,10712.75 +26375,2025-03-10T07:30:15.543101-07:00,1006.2581176757812,10.728341,10728.341 +26376,2025-03-10T07:30:26.267525-07:00,1006.23828125,10.724424,10724.424 +26377,2025-03-10T07:30:36.985345-07:00,1006.2466430664062,10.71782,10717.82 +26378,2025-03-10T07:30:47.710317-07:00,1006.241943359375,10.724972,10724.972 +26379,2025-03-10T07:30:58.439499-07:00,1006.255126953125,10.729182,10729.182 +26380,2025-03-10T07:31:09.156319-07:00,1006.241943359375,10.71682,10716.82 +26381,2025-03-10T07:31:19.875645-07:00,1006.25341796875,10.719326,10719.326 +26382,2025-03-10T07:31:30.595317-07:00,1006.26513671875,10.719672,10719.672 +26383,2025-03-10T07:31:41.323522-07:00,1006.251953125,10.728205,10728.205 +26384,2025-03-10T07:31:52.049620-07:00,1006.248779296875,10.726098,10726.098 +26385,2025-03-10T07:32:02.764516-07:00,1006.257080078125,10.714896,10714.896 +26386,2025-03-10T07:32:13.497316-07:00,1006.248779296875,10.7328,10732.8 +26387,2025-03-10T07:32:24.210486-07:00,1006.25390625,10.71317,10713.17 +26388,2025-03-10T07:32:34.932823-07:00,1006.261962890625,10.722337,10722.337 +26389,2025-03-10T07:32:45.655492-07:00,1006.245849609375,10.722669,10722.669 +26390,2025-03-10T07:32:56.375397-07:00,1006.2722778320312,10.719905,10719.905 +26391,2025-03-10T07:33:07.102508-07:00,1006.2525024414062,10.727111,10727.111 +26392,2025-03-10T07:33:17.813908-07:00,1006.2722778320312,10.7114,10711.4 +26393,2025-03-10T07:33:28.542489-07:00,1006.2704467773438,10.728581,10728.581 +26394,2025-03-10T07:33:39.257360-07:00,1006.2837524414062,10.714871,10714.871 +26395,2025-03-10T07:33:49.973317-07:00,1006.25439453125,10.715957,10715.957 +26396,2025-03-10T07:34:00.695320-07:00,1006.2854614257812,10.722003,10722.003 +26397,2025-03-10T07:34:11.408404-07:00,1006.2625122070312,10.713084,10713.084 +26398,2025-03-10T07:34:22.133319-07:00,1006.2625122070312,10.724915,10724.915 +26399,2025-03-10T07:34:32.849315-07:00,1006.275634765625,10.715996,10715.996 +26400,2025-03-10T07:34:43.579315-07:00,1006.255859375,10.73,10730.0 +26401,2025-03-10T07:34:54.292354-07:00,1006.2625122070312,10.713039,10713.039 +26402,2025-03-10T07:35:05.010494-07:00,1006.263916015625,10.71814,10718.14 +26403,2025-03-10T07:35:15.731454-07:00,1006.2920532226562,10.72096,10720.96 +26404,2025-03-10T07:35:26.454507-07:00,1006.26904296875,10.723053,10723.053 +26405,2025-03-10T07:35:37.180588-07:00,1006.25439453125,10.726081,10726.081 +26406,2025-03-10T07:35:47.899656-07:00,1006.2625122070312,10.719068,10719.068 +26407,2025-03-10T07:35:58.624315-07:00,1006.25732421875,10.724659,10724.659 +26408,2025-03-10T07:36:09.346559-07:00,1006.25732421875,10.722244,10722.244 +26409,2025-03-10T07:36:20.068319-07:00,1006.255859375,10.72176,10721.76 +26410,2025-03-10T07:36:30.785698-07:00,1006.2742309570312,10.717379,10717.379 +26411,2025-03-10T07:36:41.506801-07:00,1006.255859375,10.721103,10721.103 +26412,2025-03-10T07:36:52.232467-07:00,1006.2625122070312,10.725666,10725.666 +26413,2025-03-10T07:37:02.946315-07:00,1006.25439453125,10.713848,10713.848 +26414,2025-03-10T07:37:13.672722-07:00,1006.2625122070312,10.726407,10726.407 +26415,2025-03-10T07:37:24.394346-07:00,1006.247802734375,10.721624,10721.624 +26416,2025-03-10T07:37:35.116524-07:00,1006.233154296875,10.722178,10722.178 +26417,2025-03-10T07:37:45.842318-07:00,1006.2742309570312,10.725794,10725.794 +26418,2025-03-10T07:37:56.563515-07:00,1006.260986328125,10.721197,10721.197 +26419,2025-03-10T07:38:07.283319-07:00,1006.28076171875,10.719804,10719.804 +26420,2025-03-10T07:38:18.006560-07:00,1006.259521484375,10.723241,10723.241 +26421,2025-03-10T07:38:28.729599-07:00,1006.264404296875,10.723039,10723.039 +26422,2025-03-10T07:38:39.459659-07:00,1006.246337890625,10.73006,10730.06 +26423,2025-03-10T07:38:50.185313-07:00,1006.28076171875,10.725654,10725.654 +26424,2025-03-10T07:39:00.907641-07:00,1006.2411499023438,10.722328,10722.328 +26425,2025-03-10T07:39:11.629414-07:00,1006.25439453125,10.721773,10721.773 +26426,2025-03-10T07:39:22.348531-07:00,1006.2396850585938,10.719117,10719.117 +26427,2025-03-10T07:39:33.082728-07:00,1006.246337890625,10.734197,10734.197 +26428,2025-03-10T07:39:43.794531-07:00,1006.246337890625,10.711803,10711.803 +26429,2025-03-10T07:39:54.523149-07:00,1006.246337890625,10.728618,10728.618 +26430,2025-03-10T07:40:05.247390-07:00,1006.247802734375,10.724241,10724.241 +26431,2025-03-10T07:40:15.961319-07:00,1006.247802734375,10.713929,10713.929 +26432,2025-03-10T07:40:26.685318-07:00,1006.2396850585938,10.723999,10723.999 +26433,2025-03-10T07:40:37.415501-07:00,1006.233154296875,10.730183,10730.183 +26434,2025-03-10T07:40:48.134385-07:00,1006.2676391601562,10.718884,10718.884 +26435,2025-03-10T07:40:58.859699-07:00,1006.2181396484375,10.725314,10725.314 +26436,2025-03-10T07:41:09.590316-07:00,1006.2181396484375,10.730617,10730.617 +26437,2025-03-10T07:41:20.314541-07:00,1006.2396850585938,10.724225,10724.225 +26438,2025-03-10T07:41:31.035529-07:00,1006.2181396484375,10.720988,10720.988 +26439,2025-03-10T07:41:41.764317-07:00,1006.2313842773438,10.728788,10728.788 +26440,2025-03-10T07:41:52.483317-07:00,1006.2411499023438,10.719,10719.0 +26441,2025-03-10T07:42:03.207343-07:00,1006.2181396484375,10.724026,10724.026 +26442,2025-03-10T07:42:13.937486-07:00,1006.2101440429688,10.730143,10730.143 +26443,2025-03-10T07:42:24.663321-07:00,1006.2135009765625,10.725835,10725.835 +26444,2025-03-10T07:42:35.384507-07:00,1006.2267456054688,10.721186,10721.186 +26445,2025-03-10T07:42:46.109558-07:00,1006.23046875,10.725051,10725.051 +26446,2025-03-10T07:42:56.825494-07:00,1006.2154541015625,10.715936,10715.936 +26447,2025-03-10T07:43:07.553381-07:00,1006.1795043945312,10.727887,10727.887 +26448,2025-03-10T07:43:18.276104-07:00,1006.1943969726562,10.722723,10722.723 +26449,2025-03-10T07:43:29.000267-07:00,1006.2061157226562,10.724163,10724.163 +26450,2025-03-10T07:43:39.724318-07:00,1006.22265625,10.724051,10724.051 +26451,2025-03-10T07:43:50.449340-07:00,1006.2212524414062,10.725022,10725.022 +26452,2025-03-10T07:44:01.172719-07:00,1006.1771850585938,10.723379,10723.379 +26453,2025-03-10T07:44:11.899963-07:00,1006.1974487304688,10.727244,10727.244 +26454,2025-03-10T07:44:22.626504-07:00,1006.207763671875,10.726541,10726.541 +26455,2025-03-10T07:44:33.358618-07:00,1006.2262573242188,10.732114,10732.114 +26456,2025-03-10T07:44:44.084340-07:00,1006.1919555664062,10.725722,10725.722 +26457,2025-03-10T07:44:54.804516-07:00,1006.1975708007812,10.720176,10720.176 +26458,2025-03-10T07:45:05.534923-07:00,1006.2259521484375,10.730407,10730.407 +26459,2025-03-10T07:45:16.256368-07:00,1006.2461547851562,10.721445,10721.445 +26460,2025-03-10T07:45:26.987473-07:00,1006.2184448242188,10.731105,10731.105 +26461,2025-03-10T07:45:37.708525-07:00,1006.1976318359375,10.721052,10721.052 +26462,2025-03-10T07:45:48.435315-07:00,1006.1995849609375,10.72679,10726.79 +26463,2025-03-10T07:45:59.158476-07:00,1006.2086181640625,10.723161,10723.161 +26464,2025-03-10T07:46:09.887316-07:00,1006.21533203125,10.72884,10728.84 +26465,2025-03-10T07:46:20.606080-07:00,1006.245361328125,10.718764,10718.764 +26466,2025-03-10T07:46:31.334438-07:00,1006.23095703125,10.728358,10728.358 +26467,2025-03-10T07:46:42.058904-07:00,1006.2196044921875,10.724466,10724.466 +26468,2025-03-10T07:46:52.785456-07:00,1006.2068481445312,10.726552,10726.552 +26469,2025-03-10T07:47:03.506482-07:00,1006.2398681640625,10.721026,10721.026 +26470,2025-03-10T07:47:14.234316-07:00,1006.197509765625,10.727834,10727.834 +26471,2025-03-10T07:47:24.955583-07:00,1006.2323608398438,10.721267,10721.267 +26472,2025-03-10T07:47:35.678315-07:00,1006.2111206054688,10.722732,10722.732 +26473,2025-03-10T07:47:46.400558-07:00,1006.2112426757812,10.722243,10722.243 +26474,2025-03-10T07:47:57.127562-07:00,1006.2293090820312,10.727004,10727.004 +26475,2025-03-10T07:48:07.852505-07:00,1006.2293090820312,10.724943,10724.943 +26476,2025-03-10T07:48:18.574523-07:00,1006.2179565429688,10.722018,10722.018 +26477,2025-03-10T07:48:29.290320-07:00,1006.21142578125,10.715797,10715.797 +26478,2025-03-10T07:48:40.013317-07:00,1006.2084350585938,10.722997,10722.997 +26479,2025-03-10T07:48:50.736989-07:00,1006.2001342773438,10.723672,10723.672 +26480,2025-03-10T07:49:01.468500-07:00,1006.2199096679688,10.731511,10731.511 +26481,2025-03-10T07:49:12.184317-07:00,1006.2249755859375,10.715817,10715.817 +26482,2025-03-10T07:49:22.910511-07:00,1006.2037353515625,10.726194,10726.194 +26483,2025-03-10T07:49:33.630526-07:00,1006.1888427734375,10.720015,10720.015 +26484,2025-03-10T07:49:44.356509-07:00,1006.2086181640625,10.725983,10725.983 +26485,2025-03-10T07:49:55.086405-07:00,1006.2301635742188,10.729896,10729.896 +26486,2025-03-10T07:50:05.813521-07:00,1006.2103881835938,10.727116,10727.116 +26487,2025-03-10T07:50:16.536463-07:00,1006.1888427734375,10.722942,10722.942 +26488,2025-03-10T07:50:27.257543-07:00,1006.2072143554688,10.72108,10721.08 +26489,2025-03-10T07:50:37.985408-07:00,1006.1839599609375,10.727865,10727.865 +26490,2025-03-10T07:50:48.705316-07:00,1006.1755981445312,10.719908,10719.908 +26491,2025-03-10T07:50:59.427344-07:00,1006.1576538085938,10.722028,10722.028 +26492,2025-03-10T07:51:10.154754-07:00,1006.1690673828125,10.72741,10727.41 +26493,2025-03-10T07:51:20.875161-07:00,1006.1737670898438,10.720407,10720.407 +26494,2025-03-10T07:51:31.603393-07:00,1006.1707763671875,10.728232,10728.232 +26495,2025-03-10T07:51:42.323492-07:00,1006.1341552734375,10.720099,10720.099 +26496,2025-03-10T07:51:53.050318-07:00,1006.1326293945312,10.726826,10726.826 +26497,2025-03-10T07:52:03.773936-07:00,1006.18359375,10.723618,10723.618 +26498,2025-03-10T07:52:14.492414-07:00,1006.1490478515625,10.718478,10718.478 +26499,2025-03-10T07:52:25.221311-07:00,1006.1373291015625,10.728897,10728.897 +26500,2025-03-10T07:52:35.944319-07:00,1006.1307983398438,10.723008,10723.008 +26501,2025-03-10T07:52:46.665503-07:00,1006.1207885742188,10.721184,10721.184 +26502,2025-03-10T07:52:57.388349-07:00,1006.107666015625,10.722846,10722.846 +26503,2025-03-10T07:53:08.119767-07:00,1006.1222534179688,10.731418,10731.418 +26504,2025-03-10T07:53:18.845500-07:00,1006.1105346679688,10.725733,10725.733 +26505,2025-03-10T07:53:29.573495-07:00,1006.0990600585938,10.727995,10727.995 +26506,2025-03-10T07:53:40.291935-07:00,1006.11376953125,10.71844,10718.44 +26507,2025-03-10T07:53:51.015838-07:00,1006.12548828125,10.723903,10723.903 +26508,2025-03-10T07:54:01.742964-07:00,1006.1170043945312,10.727126,10727.126 +26509,2025-03-10T07:54:12.464773-07:00,1006.1253662109375,10.721809,10721.809 +26510,2025-03-10T07:54:23.188965-07:00,1006.1253662109375,10.724192,10724.192 +26511,2025-03-10T07:54:33.916769-07:00,1006.1202392578125,10.727804,10727.804 +26512,2025-03-10T07:54:44.641772-07:00,1006.0938110351562,10.725003,10725.003 +26513,2025-03-10T07:54:55.374973-07:00,1006.1168823242188,10.733201,10733.201 +26514,2025-03-10T07:55:06.095866-07:00,1006.1130981445312,10.720893,10720.893 +26515,2025-03-10T07:55:16.822079-07:00,1006.1347045898438,10.726213,10726.213 +26516,2025-03-10T07:55:27.546771-07:00,1006.1347045898438,10.724692,10724.692 +26517,2025-03-10T07:55:38.271837-07:00,1006.1526489257812,10.725066,10725.066 +26518,2025-03-10T07:55:49.004793-07:00,1006.1196899414062,10.732956,10732.956 +26519,2025-03-10T07:55:59.727847-07:00,1006.16064453125,10.723054,10723.054 +26520,2025-03-10T07:56:10.449091-07:00,1006.1734619140625,10.721244,10721.244 +26521,2025-03-10T07:56:21.176874-07:00,1006.1521606445312,10.727783,10727.783 +26522,2025-03-10T07:56:31.903979-07:00,1006.1881103515625,10.727105,10727.105 +26523,2025-03-10T07:56:42.626160-07:00,1006.1550903320312,10.722181,10722.181 +26524,2025-03-10T07:56:53.352074-07:00,1006.1846923828125,10.725914,10725.914 +26525,2025-03-10T07:57:04.075809-07:00,1006.1928100585938,10.723735,10723.735 +26526,2025-03-10T07:57:14.796010-07:00,1006.1629638671875,10.720201,10720.201 +26527,2025-03-10T07:57:25.524960-07:00,1006.1776733398438,10.72895,10728.95 +26528,2025-03-10T07:57:36.244272-07:00,1006.1644287109375,10.719312,10719.312 +26529,2025-03-10T07:57:46.966772-07:00,1006.1596069335938,10.7225,10722.5 +26530,2025-03-10T07:57:57.686001-07:00,1006.190673828125,10.719229,10719.229 +26531,2025-03-10T07:58:08.412805-07:00,1006.1709594726562,10.726804,10726.804 +26532,2025-03-10T07:58:19.142768-07:00,1006.2151489257812,10.729963,10729.963 +26533,2025-03-10T07:58:29.863183-07:00,1006.180419921875,10.720415,10720.415 +26534,2025-03-10T07:58:40.587089-07:00,1006.178466796875,10.723906,10723.906 +26535,2025-03-10T07:58:51.310937-07:00,1006.193115234375,10.723848,10723.848 +26536,2025-03-10T07:59:02.038773-07:00,1006.206298828125,10.727836,10727.836 +26537,2025-03-10T07:59:12.755228-07:00,1006.1949462890625,10.716455,10716.455 +26538,2025-03-10T07:59:23.481779-07:00,1006.1964111328125,10.726551,10726.551 +26539,2025-03-10T07:59:34.209766-07:00,1006.2090454101562,10.727987,10727.987 +26540,2025-03-10T07:59:44.934244-07:00,1006.243896484375,10.724478,10724.478 +26541,2025-03-10T07:59:55.652991-07:00,1006.2306518554688,10.718747,10718.747 +26542,2025-03-10T08:00:06.379767-07:00,1006.1859130859375,10.726776,10726.776 +26543,2025-03-10T08:00:17.095842-07:00,1006.203857421875,10.716075,10716.075 +26544,2025-03-10T08:00:27.817771-07:00,1006.23681640625,10.721929,10721.929 +26545,2025-03-10T08:00:38.547841-07:00,1006.246337890625,10.73007,10730.07 +26546,2025-03-10T08:00:49.269509-07:00,1006.256103515625,10.721668,10721.668 +26547,2025-03-10T08:00:59.989794-07:00,1006.236328125,10.720285,10720.285 +26548,2025-03-10T08:01:10.718164-07:00,1006.231201171875,10.72837,10728.37 +26549,2025-03-10T08:01:21.438769-07:00,1006.2754516601562,10.720605,10720.605 +26550,2025-03-10T08:01:32.163031-07:00,1006.2574462890625,10.724262,10724.262 +26551,2025-03-10T08:01:42.891798-07:00,1006.255615234375,10.728767,10728.767 +26552,2025-03-10T08:01:53.613991-07:00,1006.2523193359375,10.722193,10722.193 +26553,2025-03-10T08:02:04.345792-07:00,1006.23388671875,10.731801,10731.801 +26554,2025-03-10T08:02:15.063954-07:00,1006.2584228515625,10.718162,10718.162 +26555,2025-03-10T08:02:25.783962-07:00,1006.30126953125,10.720008,10720.008 +26556,2025-03-10T08:02:36.517768-07:00,1006.2711181640625,10.733806,10733.806 +26557,2025-03-10T08:02:47.236634-07:00,1006.2809448242188,10.718866,10718.866 +26558,2025-03-10T08:02:57.957805-07:00,1006.2692260742188,10.721171,10721.171 +26559,2025-03-10T08:03:08.683473-07:00,1006.2988891601562,10.725668,10725.668 +26560,2025-03-10T08:03:19.406233-07:00,1006.296875,10.72276,10722.76 +26561,2025-03-10T08:03:30.130959-07:00,1006.29833984375,10.724726,10724.726 +26562,2025-03-10T08:03:40.856976-07:00,1006.3082275390625,10.726017,10726.017 +26563,2025-03-10T08:03:51.587060-07:00,1006.2930297851562,10.730084,10730.084 +26564,2025-03-10T08:04:02.305876-07:00,1006.2996826171875,10.718816,10718.816 +26565,2025-03-10T08:04:13.040771-07:00,1006.3336181640625,10.734895,10734.895 +26566,2025-03-10T08:04:23.762956-07:00,1006.3449096679688,10.722185,10722.185 +26567,2025-03-10T08:04:34.481956-07:00,1006.3217163085938,10.719,10719.0 +26568,2025-03-10T08:04:45.210963-07:00,1006.3165893554688,10.729007,10729.007 +26569,2025-03-10T08:04:55.939285-07:00,1006.3329467773438,10.728322,10728.322 +26570,2025-03-10T08:05:06.662135-07:00,1006.3512573242188,10.72285,10722.85 +26571,2025-03-10T08:05:17.382800-07:00,1006.3197021484375,10.720665,10720.665 +26572,2025-03-10T08:05:28.100962-07:00,1006.3538818359375,10.718162,10718.162 +26573,2025-03-10T08:05:38.833244-07:00,1006.3340454101562,10.732282,10732.282 +26574,2025-03-10T08:05:49.559771-07:00,1006.3189697265625,10.726527,10726.527 +26575,2025-03-10T08:06:00.283975-07:00,1006.3548583984375,10.724204,10724.204 +26576,2025-03-10T08:06:11.012767-07:00,1006.3515014648438,10.728792,10728.792 +26577,2025-03-10T08:06:21.739768-07:00,1006.3382568359375,10.727001,10727.001 +26578,2025-03-10T08:06:32.461767-07:00,1006.36279296875,10.721999,10721.999 +26579,2025-03-10T08:06:43.186982-07:00,1006.3524780273438,10.725215,10725.215 +26580,2025-03-10T08:06:53.910792-07:00,1006.354248046875,10.72381,10723.81 +26581,2025-03-10T08:07:04.643772-07:00,1006.3571166992188,10.73298,10732.98 +26582,2025-03-10T08:07:15.366151-07:00,1006.366943359375,10.722379,10722.379 +26583,2025-03-10T08:07:26.092768-07:00,1006.35888671875,10.726617,10726.617 +26584,2025-03-10T08:07:36.815771-07:00,1006.36181640625,10.723003,10723.003 +26585,2025-03-10T08:07:47.543793-07:00,1006.3602905273438,10.728022,10728.022 +26586,2025-03-10T08:07:58.266996-07:00,1006.3833618164062,10.723203,10723.203 +26587,2025-03-10T08:08:08.980812-07:00,1006.34375,10.713816,10713.816 +26588,2025-03-10T08:08:19.709772-07:00,1006.3796997070312,10.72896,10728.96 +26589,2025-03-10T08:08:30.434793-07:00,1006.373046875,10.725021,10725.021 +26590,2025-03-10T08:08:41.153197-07:00,1006.34814453125,10.718404,10718.404 +26591,2025-03-10T08:08:51.882053-07:00,1006.34326171875,10.728856,10728.856 +26592,2025-03-10T08:09:02.611778-07:00,1006.3512573242188,10.729725,10729.725 +26593,2025-03-10T08:09:13.334976-07:00,1006.3512573242188,10.723198,10723.198 +26594,2025-03-10T08:09:24.057766-07:00,1006.359375,10.72279,10722.79 +26595,2025-03-10T08:09:34.772986-07:00,1006.3545532226562,10.71522,10715.22 +26596,2025-03-10T08:09:45.502971-07:00,1006.3875122070312,10.729985,10729.985 +26597,2025-03-10T08:09:56.226772-07:00,1006.36767578125,10.723801,10723.801 +26598,2025-03-10T08:10:06.943982-07:00,1006.35595703125,10.71721,10717.21 +26599,2025-03-10T08:10:17.668575-07:00,1006.35595703125,10.724593,10724.593 +26600,2025-03-10T08:10:28.392917-07:00,1006.377197265625,10.724342,10724.342 +26601,2025-03-10T08:10:39.115771-07:00,1006.3507690429688,10.722854,10722.854 +26602,2025-03-10T08:10:49.828973-07:00,1006.3507690429688,10.713202,10713.202 +26603,2025-03-10T08:11:00.550954-07:00,1006.3671875,10.721981,10721.981 +26604,2025-03-10T08:11:11.277833-07:00,1006.372314453125,10.726879,10726.879 +26605,2025-03-10T08:11:21.994126-07:00,1006.3591918945312,10.716293,10716.293 +26606,2025-03-10T08:11:32.715935-07:00,1006.3407592773438,10.721809,10721.809 +26607,2025-03-10T08:11:43.443306-07:00,1006.334228515625,10.727371,10727.371 +26608,2025-03-10T08:11:54.159768-07:00,1006.3540649414062,10.716462,10716.462 +26609,2025-03-10T08:12:04.886770-07:00,1006.332763671875,10.727002,10727.002 +26610,2025-03-10T08:12:15.603769-07:00,1006.362060546875,10.716999,10716.999 +26611,2025-03-10T08:12:26.319674-07:00,1006.3540649414062,10.715905,10715.905 +26612,2025-03-10T08:12:37.046768-07:00,1006.35546875,10.727094,10727.094 +26613,2025-03-10T08:12:47.762963-07:00,1006.3375854492188,10.716195,10716.195 +26614,2025-03-10T08:12:58.491844-07:00,1006.3540649414062,10.728881,10728.881 +26615,2025-03-10T08:13:09.207265-07:00,1006.3573608398438,10.715421,10715.421 +26616,2025-03-10T08:13:19.935768-07:00,1006.3375854492188,10.728503,10728.503 +26617,2025-03-10T08:13:30.656959-07:00,1006.34423828125,10.721191,10721.191 +26618,2025-03-10T08:13:41.378041-07:00,1006.3573608398438,10.721082,10721.082 +26619,2025-03-10T08:13:52.095430-07:00,1006.34423828125,10.717389,10717.389 +26620,2025-03-10T08:14:02.815765-07:00,1006.3692016601562,10.720335,10720.335 +26621,2025-03-10T08:14:13.537655-07:00,1006.3757934570312,10.72189,10721.89 +26622,2025-03-10T08:14:24.262011-07:00,1006.359375,10.724356,10724.356 +26623,2025-03-10T08:14:34.980658-07:00,1006.4205322265625,10.718647,10718.647 +26624,2025-03-10T08:14:45.703926-07:00,1006.4007568359375,10.723268,10723.268 +26625,2025-03-10T08:14:56.420949-07:00,1006.349853515625,10.717023,10717.023 +26626,2025-03-10T08:15:07.135951-07:00,1006.3696899414062,10.715002,10715.002 +26627,2025-03-10T08:15:17.852767-07:00,1006.376220703125,10.716816,10716.816 +26628,2025-03-10T08:15:28.570965-07:00,1006.4093017578125,10.718198,10718.198 +26629,2025-03-10T08:15:39.292116-07:00,1006.4173583984375,10.721151,10721.151 +26630,2025-03-10T08:15:50.012885-07:00,1006.4056396484375,10.720769,10720.769 +26631,2025-03-10T08:16:00.731770-07:00,1006.4041137695312,10.718885,10718.885 +26632,2025-03-10T08:16:11.457976-07:00,1006.367919921875,10.726206,10726.206 +26633,2025-03-10T08:16:22.175132-07:00,1006.407470703125,10.717156,10717.156 +26634,2025-03-10T08:16:32.894035-07:00,1006.378173828125,10.718903,10718.903 +26635,2025-03-10T08:16:43.606770-07:00,1006.3796997070312,10.712735,10712.735 +26636,2025-03-10T08:16:54.326771-07:00,1006.38623046875,10.720001,10720.001 +26637,2025-03-10T08:17:05.041065-07:00,1006.4112548828125,10.714294,10714.294 +26638,2025-03-10T08:17:15.759847-07:00,1006.4112548828125,10.718782,10718.782 +26639,2025-03-10T08:17:26.475222-07:00,1006.4177856445312,10.715375,10715.375 +26640,2025-03-10T08:17:37.198838-07:00,1006.4146118164062,10.723616,10723.616 +26641,2025-03-10T08:17:47.913767-07:00,1006.38671875,10.714929,10714.929 +26642,2025-03-10T08:17:58.628876-07:00,1006.3900146484375,10.715109,10715.109 +26643,2025-03-10T08:18:09.347771-07:00,1006.3948364257812,10.718895,10718.895 +26644,2025-03-10T08:18:20.061196-07:00,1006.391845703125,10.713425,10713.425 +26645,2025-03-10T08:18:30.778981-07:00,1006.3787231445312,10.717785,10717.785 +26646,2025-03-10T08:18:41.503000-07:00,1006.36376953125,10.724019,10724.019 +26647,2025-03-10T08:18:52.217967-07:00,1006.3703002929688,10.714967,10714.967 +26648,2025-03-10T08:19:02.935875-07:00,1006.39013671875,10.717908,10717.908 +26649,2025-03-10T08:19:13.653570-07:00,1006.39013671875,10.717695,10717.695 +26650,2025-03-10T08:19:24.369981-07:00,1006.388671875,10.716411,10716.411 +26651,2025-03-10T08:19:35.093970-07:00,1006.388671875,10.723989,10723.989 +26652,2025-03-10T08:19:45.811997-07:00,1006.38720703125,10.718027,10718.027 +26653,2025-03-10T08:19:56.529952-07:00,1006.4004516601562,10.717955,10717.955 +26654,2025-03-10T08:20:07.248316-07:00,1006.37744140625,10.718364,10718.364 +26655,2025-03-10T08:20:17.959006-07:00,1006.3759155273438,10.71069,10710.69 +26656,2025-03-10T08:20:28.678938-07:00,1006.3610229492188,10.719932,10719.932 +26657,2025-03-10T08:20:39.395829-07:00,1006.37939453125,10.716891,10716.891 +26658,2025-03-10T08:20:50.115096-07:00,1006.3859252929688,10.719267,10719.267 +26659,2025-03-10T08:21:00.840005-07:00,1006.3646850585938,10.724909,10724.909 +26660,2025-03-10T08:21:11.554996-07:00,1006.372802734375,10.714991,10714.991 +26661,2025-03-10T08:21:22.271982-07:00,1006.3661499023438,10.716986,10716.986 +26662,2025-03-10T08:21:32.989770-07:00,1006.3615112304688,10.717788,10717.788 +26663,2025-03-10T08:21:43.706345-07:00,1006.384521484375,10.716575,10716.575 +26664,2025-03-10T08:21:54.431834-07:00,1006.3779907226562,10.725489,10725.489 +26665,2025-03-10T08:22:05.142554-07:00,1006.3681030273438,10.71072,10710.72 +26666,2025-03-10T08:22:15.872771-07:00,1006.3746948242188,10.730217,10730.217 +26667,2025-03-10T08:22:26.587142-07:00,1006.3599853515625,10.714371,10714.371 +26668,2025-03-10T08:22:37.307765-07:00,1006.3534545898438,10.720623,10720.623 +26669,2025-03-10T08:22:48.034241-07:00,1006.3864135742188,10.726476,10726.476 +26670,2025-03-10T08:22:58.754875-07:00,1006.373291015625,10.720634,10720.634 +26671,2025-03-10T08:23:09.479146-07:00,1006.3585815429688,10.724271,10724.271 +26672,2025-03-10T08:23:20.201952-07:00,1006.35205078125,10.722806,10722.806 +26673,2025-03-10T08:23:30.927786-07:00,1006.3585815429688,10.725834,10725.834 +26674,2025-03-10T08:23:41.637772-07:00,1006.3387451171875,10.709986,10709.986 +26675,2025-03-10T08:23:52.368976-07:00,1006.3502197265625,10.731204,10731.204 +26676,2025-03-10T08:24:03.088810-07:00,1006.3487548828125,10.719834,10719.834 +26677,2025-03-10T08:24:13.806997-07:00,1006.3440551757812,10.718187,10718.187 +26678,2025-03-10T08:24:24.526863-07:00,1006.3605346679688,10.719866,10719.866 +26679,2025-03-10T08:24:35.252964-07:00,1006.3375244140625,10.726101,10726.101 +26680,2025-03-10T08:24:45.978768-07:00,1006.3145141601562,10.725804,10725.804 +26681,2025-03-10T08:24:56.703958-07:00,1006.3638916015625,10.72519,10725.19 +26682,2025-03-10T08:25:07.423969-07:00,1006.3573608398438,10.720011,10720.011 +26683,2025-03-10T08:25:18.151801-07:00,1006.3342895507812,10.727832,10727.832 +26684,2025-03-10T08:25:28.870794-07:00,1006.3211059570312,10.718993,10718.993 +26685,2025-03-10T08:25:39.597234-07:00,1006.32763671875,10.72644,10726.44 +26686,2025-03-10T08:25:50.312976-07:00,1006.3558349609375,10.715742,10715.742 +26687,2025-03-10T08:26:01.037772-07:00,1006.3294677734375,10.724796,10724.796 +26688,2025-03-10T08:26:11.759771-07:00,1006.3130493164062,10.721999,10721.999 +26689,2025-03-10T08:26:22.489164-07:00,1006.3526611328125,10.729393,10729.393 +26690,2025-03-10T08:26:33.207384-07:00,1006.3328247070312,10.71822,10718.22 +26691,2025-03-10T08:26:43.928772-07:00,1006.3526611328125,10.721388,10721.388 +26692,2025-03-10T08:26:54.646801-07:00,1006.3428344726562,10.718029,10718.029 +26693,2025-03-10T08:27:05.376405-07:00,1006.32958984375,10.729604,10729.604 +26694,2025-03-10T08:27:16.088590-07:00,1006.3329467773438,10.712185,10712.185 +26695,2025-03-10T08:27:26.808771-07:00,1006.313232421875,10.720181,10720.181 +26696,2025-03-10T08:27:37.536985-07:00,1006.3329467773438,10.728214,10728.214 +26697,2025-03-10T08:27:48.258190-07:00,1006.3462524414062,10.721205,10721.205 +26698,2025-03-10T08:27:58.966980-07:00,1006.3117065429688,10.70879,10708.79 +26699,2025-03-10T08:28:09.695772-07:00,1006.3250122070312,10.728792,10728.792 +26700,2025-03-10T08:28:20.405772-07:00,1006.3117065429688,10.71,10710.0 +26701,2025-03-10T08:28:31.131954-07:00,1006.30517578125,10.726182,10726.182 +26702,2025-03-10T08:28:41.856980-07:00,1006.3231201171875,10.725026,10725.026 +26703,2025-03-10T08:28:52.571256-07:00,1006.3099975585938,10.714276,10714.276 +26704,2025-03-10T08:29:03.298771-07:00,1006.3283081054688,10.727515,10727.515 +26705,2025-03-10T08:29:14.016950-07:00,1006.3085327148438,10.718179,10718.179 +26706,2025-03-10T08:29:24.742002-07:00,1006.3136596679688,10.725052,10725.052 +26707,2025-03-10T08:29:35.457457-07:00,1006.315185546875,10.715455,10715.455 +26708,2025-03-10T08:29:46.188770-07:00,1006.3004760742188,10.731313,10731.313 +26709,2025-03-10T08:29:56.904954-07:00,1006.3118896484375,10.716184,10716.184 +26710,2025-03-10T08:30:07.627767-07:00,1006.3038940429688,10.722813,10722.813 +26711,2025-03-10T08:30:18.357843-07:00,1006.3052978515625,10.730076,10730.076 +26712,2025-03-10T08:30:29.074771-07:00,1006.2940673828125,10.716928,10716.928 +26713,2025-03-10T08:30:39.799323-07:00,1006.3170166015625,10.724552,10724.552 +26714,2025-03-10T08:30:50.521765-07:00,1006.3024291992188,10.722442,10722.442 +26715,2025-03-10T08:31:01.233411-07:00,1006.3071899414062,10.711646,10711.646 +26716,2025-03-10T08:31:11.958811-07:00,1006.3071899414062,10.7254,10725.4 +26717,2025-03-10T08:31:22.681937-07:00,1006.2940673828125,10.723126,10723.126 +26718,2025-03-10T08:31:33.398983-07:00,1006.3043823242188,10.717046,10717.046 +26719,2025-03-10T08:31:44.130860-07:00,1006.3057861328125,10.731877,10731.877 +26720,2025-03-10T08:31:54.848794-07:00,1006.2893676757812,10.717934,10717.934 +26721,2025-03-10T08:32:05.569956-07:00,1006.2681274414062,10.721162,10721.162 +26722,2025-03-10T08:32:16.290766-07:00,1006.28125,10.72081,10720.81 +26723,2025-03-10T08:32:27.021265-07:00,1006.3157958984375,10.730499,10730.499 +26724,2025-03-10T08:32:37.743796-07:00,1006.28125,10.722531,10722.531 +26725,2025-03-10T08:32:48.470180-07:00,1006.291259765625,10.726384,10726.384 +26726,2025-03-10T08:32:59.192765-07:00,1006.3209228515625,10.722585,10722.585 +26727,2025-03-10T08:33:09.906772-07:00,1006.260009765625,10.714007,10714.007 +26728,2025-03-10T08:33:20.626771-07:00,1006.2781372070312,10.719999,10719.999 +26729,2025-03-10T08:33:31.356510-07:00,1006.2798461914062,10.729739,10729.739 +26730,2025-03-10T08:33:42.073878-07:00,1006.251708984375,10.717368,10717.368 +26731,2025-03-10T08:33:52.798767-07:00,1006.276611328125,10.724889,10724.889 +26732,2025-03-10T08:34:03.525796-07:00,1006.25537109375,10.727029,10727.029 +26733,2025-03-10T08:34:14.246079-07:00,1006.275146484375,10.720283,10720.283 +26734,2025-03-10T08:34:24.966769-07:00,1006.2672119140625,10.72069,10720.69 +26735,2025-03-10T08:34:35.686771-07:00,1006.3015747070312,10.720002,10720.002 +26736,2025-03-10T08:34:46.410905-07:00,1006.275146484375,10.724134,10724.134 +26737,2025-03-10T08:34:57.135129-07:00,1006.2605590820312,10.724224,10724.224 +26738,2025-03-10T08:35:07.859498-07:00,1006.2605590820312,10.724369,10724.369 +26739,2025-03-10T08:35:18.576771-07:00,1006.25732421875,10.717273,10717.273 +26740,2025-03-10T08:35:29.307965-07:00,1006.25732421875,10.731194,10731.194 +26741,2025-03-10T08:35:40.029787-07:00,1006.252197265625,10.721822,10721.822 +26742,2025-03-10T08:35:50.744904-07:00,1006.26904296875,10.715117,10715.117 +26743,2025-03-10T08:36:01.468770-07:00,1006.29833984375,10.723866,10723.866 +26744,2025-03-10T08:36:12.192356-07:00,1006.2492065429688,10.723586,10723.586 +26745,2025-03-10T08:36:22.914765-07:00,1006.26904296875,10.722409,10722.409 +26746,2025-03-10T08:36:33.635683-07:00,1006.26904296875,10.720918,10720.918 +26747,2025-03-10T08:36:44.353770-07:00,1006.2540893554688,10.718087,10718.087 +26748,2025-03-10T08:36:55.078319-07:00,1006.2606811523438,10.724549,10724.549 +26749,2025-03-10T08:37:05.790947-07:00,1006.287109375,10.712628,10712.628 +26750,2025-03-10T08:37:16.518765-07:00,1006.287109375,10.727818,10727.818 +26751,2025-03-10T08:37:27.237300-07:00,1006.2445068359375,10.718535,10718.535 +26752,2025-03-10T08:37:37.960858-07:00,1006.2445068359375,10.723558,10723.558 +26753,2025-03-10T08:37:48.674766-07:00,1006.2560424804688,10.713908,10713.908 +26754,2025-03-10T08:37:59.395770-07:00,1006.252685546875,10.721004,10721.004 +26755,2025-03-10T08:38:10.121844-07:00,1006.2709350585938,10.726074,10726.074 +26756,2025-03-10T08:38:20.846826-07:00,1006.2560424804688,10.724982,10724.982 +26757,2025-03-10T08:38:31.565956-07:00,1006.2824096679688,10.71913,10719.13 +26758,2025-03-10T08:38:42.292967-07:00,1006.2890625,10.727011,10727.011 +26759,2025-03-10T08:38:53.006983-07:00,1006.267822265625,10.714016,10714.016 +26760,2025-03-10T08:39:03.736864-07:00,1006.2809448242188,10.729881,10729.881 +26761,2025-03-10T08:39:14.452957-07:00,1006.2579956054688,10.716093,10716.093 +26762,2025-03-10T08:39:25.171771-07:00,1006.2564697265625,10.718814,10718.814 +26763,2025-03-10T08:39:35.892067-07:00,1006.2601318359375,10.720296,10720.296 +26764,2025-03-10T08:39:46.614764-07:00,1006.2636108398438,10.722697,10722.697 +26765,2025-03-10T08:39:57.328967-07:00,1006.2833862304688,10.714203,10714.203 +26766,2025-03-10T08:40:08.053769-07:00,1006.2654418945312,10.724802,10724.802 +26767,2025-03-10T08:40:18.767591-07:00,1006.2904663085938,10.713822,10713.822 +26768,2025-03-10T08:40:29.493049-07:00,1006.3084106445312,10.725458,10725.458 +26769,2025-03-10T08:40:40.205769-07:00,1006.3301391601562,10.71272,10712.72 +26770,2025-03-10T08:40:50.923801-07:00,1006.3108520507812,10.718032,10718.032 +26771,2025-03-10T08:41:01.641322-07:00,1006.3079833984375,10.717521,10717.521 +26772,2025-03-10T08:41:12.368970-07:00,1006.298583984375,10.727648,10727.648 +26773,2025-03-10T08:41:23.081771-07:00,1006.2987670898438,10.712801,10712.801 +26774,2025-03-10T08:41:33.802159-07:00,1006.2779541015625,10.720388,10720.388 +26775,2025-03-10T08:41:44.525792-07:00,1006.276611328125,10.723633,10723.633 +26776,2025-03-10T08:41:55.247423-07:00,1006.288818359375,10.721631,10721.631 +26777,2025-03-10T08:42:05.960771-07:00,1006.3289184570312,10.713348,10713.348 +26778,2025-03-10T08:42:16.685177-07:00,1006.3143920898438,10.724406,10724.406 +26779,2025-03-10T08:42:27.403765-07:00,1006.3049926757812,10.718588,10718.588 +26780,2025-03-10T08:42:38.129963-07:00,1006.3050537109375,10.726198,10726.198 +26781,2025-03-10T08:42:48.847805-07:00,1006.310302734375,10.717842,10717.842 +26782,2025-03-10T08:42:59.563863-07:00,1006.3093872070312,10.716058,10716.058 +26783,2025-03-10T08:43:10.287054-07:00,1006.324462890625,10.723191,10723.191 +26784,2025-03-10T08:43:21.016957-07:00,1006.2985229492188,10.729903,10729.903 +26785,2025-03-10T08:43:31.731767-07:00,1006.3135986328125,10.71481,10714.81 +26786,2025-03-10T08:43:42.461144-07:00,1006.3023681640625,10.729377,10729.377 +26787,2025-03-10T08:43:53.176834-07:00,1006.3056030273438,10.71569,10715.69 +26788,2025-03-10T08:44:03.903960-07:00,1006.3192749023438,10.727126,10727.126 +26789,2025-03-10T08:44:14.622936-07:00,1006.3211669921875,10.718976,10718.976 +26790,2025-03-10T08:44:25.334770-07:00,1006.3311157226562,10.711834,10711.834 +26791,2025-03-10T08:44:36.058179-07:00,1006.31982421875,10.723409,10723.409 +26792,2025-03-10T08:44:46.781841-07:00,1006.310302734375,10.723662,10723.662 +26793,2025-03-10T08:44:57.503768-07:00,1006.3085327148438,10.721927,10721.927 +26794,2025-03-10T08:45:08.219831-07:00,1006.3203125,10.716063,10716.063 +26795,2025-03-10T08:45:18.942356-07:00,1006.3173217773438,10.722525,10722.525 +26796,2025-03-10T08:45:29.664792-07:00,1006.3222045898438,10.722436,10722.436 +26797,2025-03-10T08:45:40.376968-07:00,1006.3192138671875,10.712176,10712.176 +26798,2025-03-10T08:45:51.094816-07:00,1006.3175048828125,10.717848,10717.848 +26799,2025-03-10T08:46:01.816181-07:00,1006.3079833984375,10.721365,10721.365 +26800,2025-03-10T08:46:12.537839-07:00,1006.2896118164062,10.721658,10721.658 +26801,2025-03-10T08:46:23.255972-07:00,1006.32763671875,10.718133,10718.133 +26802,2025-03-10T08:46:33.980774-07:00,1006.258544921875,10.724802,10724.802 +26803,2025-03-10T08:46:44.702769-07:00,1006.296630859375,10.721995,10721.995 +26804,2025-03-10T08:46:55.416804-07:00,1006.29150390625,10.714035,10714.035 +26805,2025-03-10T08:47:06.135834-07:00,1006.2948608398438,10.71903,10719.03 +26806,2025-03-10T08:47:16.854951-07:00,1006.309814453125,10.719117,10719.117 +26807,2025-03-10T08:47:27.580770-07:00,1006.324462890625,10.725819,10725.819 +26808,2025-03-10T08:47:38.299978-07:00,1006.2816162109375,10.719208,10719.208 +26809,2025-03-10T08:47:49.015863-07:00,1006.309814453125,10.715885,10715.885 +26810,2025-03-10T08:47:59.742991-07:00,1006.311279296875,10.727128,10727.128 +26811,2025-03-10T08:48:10.463770-07:00,1006.3060913085938,10.720779,10720.779 +26812,2025-03-10T08:48:21.177926-07:00,1006.3390502929688,10.714156,10714.156 +26813,2025-03-10T08:48:31.901822-07:00,1006.3178100585938,10.723896,10723.896 +26814,2025-03-10T08:48:42.620993-07:00,1006.3474731445312,10.719171,10719.171 +26815,2025-03-10T08:48:53.340771-07:00,1006.3060913085938,10.719778,10719.778 +26816,2025-03-10T08:49:04.057043-07:00,1006.3211059570312,10.716272,10716.272 +26817,2025-03-10T08:49:14.777245-07:00,1006.337158203125,10.720202,10720.202 +26818,2025-03-10T08:49:25.506953-07:00,1006.3258056640625,10.729708,10729.708 +26819,2025-03-10T08:49:36.220799-07:00,1006.3126831054688,10.713846,10713.846 +26820,2025-03-10T08:49:46.946725-07:00,1006.3173217773438,10.725926,10725.926 +26821,2025-03-10T08:49:57.659511-07:00,1006.3239135742188,10.712786,10712.786 +26822,2025-03-10T08:50:08.379769-07:00,1006.3121948242188,10.720258,10720.258 +26823,2025-03-10T08:50:19.100207-07:00,1006.3070068359375,10.720438,10720.438 +26824,2025-03-10T08:50:29.810804-07:00,1006.2887573242188,10.710597,10710.597 +26825,2025-03-10T08:50:40.538531-07:00,1006.3037719726562,10.727727,10727.727 +26826,2025-03-10T08:50:51.252974-07:00,1006.2999877929688,10.714443,10714.443 +26827,2025-03-10T08:51:01.974939-07:00,1006.285400390625,10.721965,10721.965 +26828,2025-03-10T08:51:12.695769-07:00,1006.3032836914062,10.72083,10720.83 +26829,2025-03-10T08:51:23.415527-07:00,1006.2999267578125,10.719758,10719.758 +26830,2025-03-10T08:51:34.126849-07:00,1006.2867431640625,10.711322,10711.322 +26831,2025-03-10T08:51:44.853830-07:00,1006.2801513671875,10.726981,10726.981 +26832,2025-03-10T08:51:55.574147-07:00,1006.2896728515625,10.720317,10720.317 +26833,2025-03-10T08:52:06.294771-07:00,1006.311279296875,10.720624,10720.624 +26834,2025-03-10T08:52:17.008964-07:00,1006.2731323242188,10.714193,10714.193 +26835,2025-03-10T08:52:27.730978-07:00,1006.2843627929688,10.722014,10722.014 +26836,2025-03-10T08:52:38.445303-07:00,1006.2726440429688,10.714325,10714.325 +26837,2025-03-10T08:52:49.170770-07:00,1006.29248046875,10.725467,10725.467 +26838,2025-03-10T08:52:59.946595-07:00,1006.270751953125,10.775825,10775.825 +26839,2025-03-10T08:53:10.666756-07:00,1006.27880859375,10.720161,10720.161 +26840,2025-03-10T08:53:21.384806-07:00,1006.3004150390625,10.71805,10718.05 +26841,2025-03-10T08:53:32.103781-07:00,1006.2754516601562,10.718975,10718.975 +26842,2025-03-10T08:53:42.821726-07:00,1006.2933349609375,10.717945,10717.945 +26843,2025-03-10T08:53:53.541951-07:00,1006.2867431640625,10.720225,10720.225 +26844,2025-03-10T08:54:04.261949-07:00,1006.2948608398438,10.719998,10719.998 +26845,2025-03-10T08:54:14.987730-07:00,1006.283447265625,10.725781,10725.781 +26846,2025-03-10T08:54:25.705726-07:00,1006.3060913085938,10.717996,10717.996 +26847,2025-03-10T08:54:36.420914-07:00,1006.2811889648438,10.715188,10715.188 +26848,2025-03-10T08:54:47.143825-07:00,1006.2614135742188,10.722911,10722.911 +26849,2025-03-10T08:54:57.860882-07:00,1006.291015625,10.717057,10717.057 +26850,2025-03-10T08:55:08.587729-07:00,1006.294189453125,10.726847,10726.847 +26851,2025-03-10T08:55:19.303468-07:00,1006.2957153320312,10.715739,10715.739 +26852,2025-03-10T08:55:30.024729-07:00,1006.2906494140625,10.721261,10721.261 +26853,2025-03-10T08:55:40.754888-07:00,1006.3055419921875,10.730159,10730.159 +26854,2025-03-10T08:55:51.467758-07:00,1006.3035888671875,10.71287,10712.87 +26855,2025-03-10T08:56:02.188919-07:00,1006.3035888671875,10.721161,10721.161 +26856,2025-03-10T08:56:12.915761-07:00,1006.320068359375,10.726842,10726.842 +26857,2025-03-10T08:56:23.628973-07:00,1006.306884765625,10.713212,10713.212 +26858,2025-03-10T08:56:34.350004-07:00,1006.3016967773438,10.721031,10721.031 +26859,2025-03-10T08:56:45.071086-07:00,1006.31298828125,10.721082,10721.082 +26860,2025-03-10T08:56:55.789798-07:00,1006.31298828125,10.718712,10718.712 +26861,2025-03-10T08:57:06.512731-07:00,1006.3162231445312,10.722933,10722.933 +26862,2025-03-10T08:57:17.236953-07:00,1006.3261108398438,10.724222,10724.222 +26863,2025-03-10T08:57:27.950725-07:00,1006.28466796875,10.713772,10713.772 +26864,2025-03-10T08:57:38.674728-07:00,1006.3092041015625,10.724003,10724.003 +26865,2025-03-10T08:57:49.390729-07:00,1006.3388061523438,10.716001,10716.001 +26866,2025-03-10T08:58:00.108915-07:00,1006.333740234375,10.718186,10718.186 +26867,2025-03-10T08:58:10.837236-07:00,1006.322265625,10.728321,10728.321 +26868,2025-03-10T08:58:21.552921-07:00,1006.3384399414062,10.715685,10715.685 +26869,2025-03-10T08:58:32.279727-07:00,1006.2775268554688,10.726806,10726.806 +26870,2025-03-10T08:58:42.996927-07:00,1006.32666015625,10.7172,10717.2 +26871,2025-03-10T08:58:53.715728-07:00,1006.329833984375,10.718801,10718.801 +26872,2025-03-10T08:59:04.432811-07:00,1006.3199462890625,10.717083,10717.083 +26873,2025-03-10T08:59:15.155791-07:00,1006.286865234375,10.72298,10722.98 +26874,2025-03-10T08:59:25.869738-07:00,1006.2982177734375,10.713947,10713.947 +26875,2025-03-10T08:59:36.585883-07:00,1006.3010864257812,10.716145,10716.145 +26876,2025-03-10T08:59:47.303730-07:00,1006.3057861328125,10.717847,10717.847 +26877,2025-03-10T08:59:58.035020-07:00,1006.30908203125,10.73129,10731.29 +26878,2025-03-10T09:00:08.756755-07:00,1006.30712890625,10.721735,10721.735 +26879,2025-03-10T09:00:19.474977-07:00,1006.30859375,10.718222,10718.222 +26880,2025-03-10T09:00:30.190726-07:00,1006.30810546875,10.715749,10715.749 +26881,2025-03-10T09:00:40.919933-07:00,1006.3245239257812,10.729207,10729.207 +26882,2025-03-10T09:00:51.639730-07:00,1006.3128051757812,10.719797,10719.797 +26883,2025-03-10T09:01:02.361057-07:00,1006.3226318359375,10.721327,10721.327 +26884,2025-03-10T09:01:13.077728-07:00,1006.3470458984375,10.716671,10716.671 +26885,2025-03-10T09:01:23.799837-07:00,1006.3236083984375,10.722109,10722.109 +26886,2025-03-10T09:01:34.523729-07:00,1006.3217163085938,10.723892,10723.892 +26887,2025-03-10T09:01:45.250802-07:00,1006.2886962890625,10.727073,10727.073 +26888,2025-03-10T09:01:55.968800-07:00,1006.31640625,10.717998,10717.998 +26889,2025-03-10T09:02:06.686839-07:00,1006.3031005859375,10.718039,10718.039 +26890,2025-03-10T09:02:07.711268-07:00,1006.306396484375,1.024429,1024.429 +26891,2025-03-10T09:02:17.408971-07:00,1006.314453125,9.697703,9697.703 +26892,2025-03-10T09:02:28.129899-07:00,1006.3041381835938,10.720928,10720.928 +26893,2025-03-10T09:02:38.850803-07:00,1006.308837890625,10.720904,10720.904 +26894,2025-03-10T09:02:49.576894-07:00,1006.3171997070312,10.726091,10726.091 +26895,2025-03-10T09:03:00.303725-07:00,1006.3153076171875,10.726831,10726.831 +26896,2025-03-10T09:03:11.017901-07:00,1006.3167114257812,10.714176,10714.176 +26897,2025-03-10T09:03:21.744808-07:00,1006.29833984375,10.726907,10726.907 +26898,2025-03-10T09:03:32.464133-07:00,1006.2869262695312,10.719325,10719.325 +26899,2025-03-10T09:03:43.184727-07:00,1006.3096923828125,10.720594,10720.594 +26900,2025-03-10T09:03:53.913830-07:00,1006.2979125976562,10.729103,10729.103 +26901,2025-03-10T09:04:04.630729-07:00,1006.2996826171875,10.716899,10716.899 +26902,2025-03-10T09:04:15.358949-07:00,1006.2945556640625,10.72822,10728.22 +26903,2025-03-10T09:04:26.073727-07:00,1006.2859497070312,10.714778,10714.778 +26904,2025-03-10T09:04:36.795269-07:00,1006.3189697265625,10.721542,10721.542 +26905,2025-03-10T09:04:47.519730-07:00,1006.3368530273438,10.724461,10724.461 +26906,2025-03-10T09:04:58.238105-07:00,1006.3170166015625,10.718375,10718.375 +26907,2025-03-10T09:05:08.962788-07:00,1006.34814453125,10.724683,10724.683 +26908,2025-03-10T09:05:19.679927-07:00,1006.341552734375,10.717139,10717.139 +26909,2025-03-10T09:05:30.402729-07:00,1006.3250122070312,10.722802,10722.802 +26910,2025-03-10T09:05:41.126129-07:00,1006.3329467773438,10.7234,10723.4 +26911,2025-03-10T09:05:51.847752-07:00,1006.338134765625,10.721623,10721.623 +26912,2025-03-10T09:06:02.564914-07:00,1006.339599609375,10.717162,10717.162 +26913,2025-03-10T09:06:13.281830-07:00,1006.354248046875,10.716916,10716.916 +26914,2025-03-10T09:06:24.006763-07:00,1006.33447265625,10.724933,10724.933 +26915,2025-03-10T09:06:34.723915-07:00,1006.32958984375,10.717152,10717.152 +26916,2025-03-10T09:06:45.453941-07:00,1006.3560180664062,10.730026,10730.026 +26917,2025-03-10T09:06:56.168738-07:00,1006.3362426757812,10.714797,10714.797 +26918,2025-03-10T09:07:06.886937-07:00,1006.3314208984375,10.718199,10718.199 +26919,2025-03-10T09:07:17.606723-07:00,1006.3673706054688,10.719786,10719.786 +26920,2025-03-10T09:07:28.333809-07:00,1006.3394775390625,10.727086,10727.086 +26921,2025-03-10T09:07:39.046267-07:00,1006.3474731445312,10.712458,10712.458 +26922,2025-03-10T09:07:49.765074-07:00,1006.3558349609375,10.718807,10718.807 +26923,2025-03-10T09:08:00.489728-07:00,1006.3558349609375,10.724654,10724.654 +26924,2025-03-10T09:08:11.206729-07:00,1006.307861328125,10.717001,10717.001 +26925,2025-03-10T09:08:21.936957-07:00,1006.3294677734375,10.730228,10730.228 +26926,2025-03-10T09:08:32.651934-07:00,1006.3242797851562,10.714977,10714.977 +26927,2025-03-10T09:08:43.375727-07:00,1006.3389282226562,10.723793,10723.793 +26928,2025-03-10T09:08:54.086728-07:00,1006.3652954101562,10.711001,10711.001 +26929,2025-03-10T09:09:04.814912-07:00,1006.3473510742188,10.728184,10728.184 +26930,2025-03-10T09:09:15.532941-07:00,1006.3309326171875,10.718029,10718.029 +26931,2025-03-10T09:09:26.249198-07:00,1006.3455200195312,10.716257,10716.257 +26932,2025-03-10T09:09:36.974794-07:00,1006.3309326171875,10.725596,10725.596 +26933,2025-03-10T09:09:47.698904-07:00,1006.3406982421875,10.72411,10724.11 +26934,2025-03-10T09:09:58.419972-07:00,1006.3340454101562,10.721068,10721.068 +26935,2025-03-10T09:10:09.132983-07:00,1006.3587646484375,10.713011,10713.011 +26936,2025-03-10T09:10:19.861733-07:00,1006.3455200195312,10.72875,10728.75 +26937,2025-03-10T09:10:30.578780-07:00,1006.3191528320312,10.717047,10717.047 +26938,2025-03-10T09:10:41.297732-07:00,1006.3162231445312,10.718952,10718.952 +26939,2025-03-10T09:10:52.019318-07:00,1006.3455200195312,10.721586,10721.586 +26940,2025-03-10T09:11:02.744756-07:00,1006.3323364257812,10.725438,10725.438 +26941,2025-03-10T09:11:13.468097-07:00,1006.294677734375,10.723341,10723.341 +26942,2025-03-10T09:11:24.190730-07:00,1006.3587646484375,10.722633,10722.633 +26943,2025-03-10T09:11:34.906989-07:00,1006.3309326171875,10.716259,10716.259 +26944,2025-03-10T09:11:45.631730-07:00,1006.3455200195312,10.724741,10724.741 +26945,2025-03-10T09:11:56.352801-07:00,1006.3030395507812,10.721071,10721.071 +26946,2025-03-10T09:12:07.070730-07:00,1006.29638671875,10.717929,10717.929 +26947,2025-03-10T09:12:17.798157-07:00,1006.3440551757812,10.727427,10727.427 +26948,2025-03-10T09:12:28.519725-07:00,1006.3162231445312,10.721568,10721.568 +26949,2025-03-10T09:12:39.240888-07:00,1006.3294677734375,10.721163,10721.163 +26950,2025-03-10T09:12:49.956730-07:00,1006.3460693359375,10.715842,10715.842 +26951,2025-03-10T09:13:00.672730-07:00,1006.3049926757812,10.716,10716.0 +26952,2025-03-10T09:13:11.398910-07:00,1006.318115234375,10.72618,10726.18 +26953,2025-03-10T09:13:22.116728-07:00,1006.3460693359375,10.717818,10717.818 +26954,2025-03-10T09:13:32.831934-07:00,1006.314697265625,10.715206,10715.206 +26955,2025-03-10T09:13:43.554729-07:00,1006.309814453125,10.722795,10722.795 +26956,2025-03-10T09:13:54.278087-07:00,1006.29345703125,10.723358,10723.358 +26957,2025-03-10T09:14:04.995730-07:00,1006.3013916015625,10.717643,10717.643 +26958,2025-03-10T09:14:15.722908-07:00,1006.2901611328125,10.727178,10727.178 +26959,2025-03-10T09:14:26.438825-07:00,1006.3165893554688,10.715917,10715.917 +26960,2025-03-10T09:14:37.161263-07:00,1006.3217163085938,10.722438,10722.438 +26961,2025-03-10T09:14:47.886724-07:00,1006.3429565429688,10.725461,10725.461 +26962,2025-03-10T09:14:58.599850-07:00,1006.3004760742188,10.713126,10713.126 +26963,2025-03-10T09:15:09.330861-07:00,1006.3283081054688,10.731011,10731.011 +26964,2025-03-10T09:15:20.048891-07:00,1006.2972412109375,10.71803,10718.03 +26965,2025-03-10T09:15:30.764924-07:00,1006.3467407226562,10.716033,10716.033 +26966,2025-03-10T09:15:41.485755-07:00,1006.3251342773438,10.720831,10720.831 +26967,2025-03-10T09:15:52.209776-07:00,1006.3185424804688,10.724021,10724.021 +26968,2025-03-10T09:16:02.922766-07:00,1006.3038940429688,10.71299,10712.99 +26969,2025-03-10T09:16:13.645945-07:00,1006.3317260742188,10.723179,10723.179 +26970,2025-03-10T09:16:24.367725-07:00,1006.3204956054688,10.72178,10721.78 +26971,2025-03-10T09:16:35.084275-07:00,1006.3449096679688,10.71655,10716.55 +26972,2025-03-10T09:16:45.806801-07:00,1006.3468627929688,10.722526,10722.526 +26973,2025-03-10T09:16:56.530752-07:00,1006.3222045898438,10.723951,10723.951 +26974,2025-03-10T09:17:07.261301-07:00,1006.36328125,10.730549,10730.549 +26975,2025-03-10T09:17:17.986765-07:00,1006.3666381835938,10.725464,10725.464 +26976,2025-03-10T09:17:28.703727-07:00,1006.3485717773438,10.716962,10716.962 +26977,2025-03-10T09:17:39.429754-07:00,1006.355224609375,10.726027,10726.027 +26978,2025-03-10T09:17:50.148220-07:00,1006.3468627929688,10.718466,10718.466 +26979,2025-03-10T09:18:00.873729-07:00,1006.35205078125,10.725509,10725.509 +26980,2025-03-10T09:18:11.598892-07:00,1006.371826171875,10.725163,10725.163 +26981,2025-03-10T09:18:22.312731-07:00,1006.3387451171875,10.713839,10713.839 +26982,2025-03-10T09:18:33.041117-07:00,1006.3505249023438,10.728386,10728.386 +26983,2025-03-10T09:18:43.757725-07:00,1006.3439331054688,10.716608,10716.608 +26984,2025-03-10T09:18:54.485915-07:00,1006.3538818359375,10.72819,10728.19 +26985,2025-03-10T09:19:05.206765-07:00,1006.373779296875,10.72085,10720.85 +26986,2025-03-10T09:19:15.930541-07:00,1006.3920288085938,10.723776,10723.776 +26987,2025-03-10T09:19:26.642900-07:00,1006.3704833984375,10.712359,10712.359 +26988,2025-03-10T09:19:37.366994-07:00,1006.3822631835938,10.724094,10724.094 +26989,2025-03-10T09:19:48.087730-07:00,1006.3577880859375,10.720736,10720.736 +26990,2025-03-10T09:19:58.819126-07:00,1006.4020385742188,10.731396,10731.396 +26991,2025-03-10T09:20:09.537786-07:00,1006.3709106445312,10.71866,10718.66 +26992,2025-03-10T09:20:20.259908-07:00,1006.3760986328125,10.722122,10722.122 +26993,2025-03-10T09:20:30.977730-07:00,1006.37939453125,10.717822,10717.822 +26994,2025-03-10T09:20:41.700790-07:00,1006.3859252929688,10.72306,10723.06 +26995,2025-03-10T09:20:52.425763-07:00,1006.412353515625,10.724973,10724.973 +26996,2025-03-10T09:21:03.153951-07:00,1006.4171752929688,10.728188,10728.188 +26997,2025-03-10T09:21:13.870729-07:00,1006.37939453125,10.716778,10716.778 +26998,2025-03-10T09:21:24.593077-07:00,1006.3365478515625,10.722348,10722.348 +26999,2025-03-10T09:21:35.318804-07:00,1006.3908081054688,10.725727,10725.727 +27000,2025-03-10T09:21:46.041939-07:00,1006.413818359375,10.723135,10723.135 +27001,2025-03-10T09:21:56.751730-07:00,1006.3859252929688,10.709791,10709.791 +27002,2025-03-10T09:22:07.478144-07:00,1006.3610229492188,10.726414,10726.414 +27003,2025-03-10T09:22:18.203727-07:00,1006.3543701171875,10.725583,10725.583 +27004,2025-03-10T09:22:28.920986-07:00,1006.3577880859375,10.717259,10717.259 +27005,2025-03-10T09:22:39.647796-07:00,1006.3529663085938,10.72681,10726.81 +27006,2025-03-10T09:22:50.370830-07:00,1006.3397827148438,10.723034,10723.034 +27007,2025-03-10T09:23:01.092541-07:00,1006.3775634765625,10.721711,10721.711 +27008,2025-03-10T09:23:11.805899-07:00,1006.3992309570312,10.713358,10713.358 +27009,2025-03-10T09:23:22.535023-07:00,1006.3908081054688,10.729124,10729.124 +27010,2025-03-10T09:23:33.255918-07:00,1006.3709106445312,10.720895,10720.895 +27011,2025-03-10T09:23:43.979727-07:00,1006.3431396484375,10.723809,10723.809 +27012,2025-03-10T09:23:54.694148-07:00,1006.3629760742188,10.714421,10714.421 +27013,2025-03-10T09:24:05.416010-07:00,1006.3563232421875,10.721862,10721.862 +27014,2025-03-10T09:24:16.128940-07:00,1006.3827514648438,10.71293,10712.93 +27015,2025-03-10T09:24:26.849944-07:00,1006.3615112304688,10.721004,10721.004 +27016,2025-03-10T09:24:37.568929-07:00,1006.3663330078125,10.718985,10718.985 +27017,2025-03-10T09:24:48.290732-07:00,1006.3501586914062,10.721803,10721.803 +27018,2025-03-10T09:24:59.010729-07:00,1006.3699951171875,10.719997,10719.997 +27019,2025-03-10T09:25:09.737001-07:00,1006.3699951171875,10.726272,10726.272 +27020,2025-03-10T09:25:20.459911-07:00,1006.3780517578125,10.72291,10722.91 +27021,2025-03-10T09:25:31.184793-07:00,1006.4096069335938,10.724882,10724.882 +27022,2025-03-10T09:25:41.901801-07:00,1006.3765869140625,10.717008,10717.008 +27023,2025-03-10T09:25:52.619933-07:00,1006.3947143554688,10.718132,10718.132 +27024,2025-03-10T09:26:03.341727-07:00,1006.4129638671875,10.721794,10721.794 +27025,2025-03-10T09:26:14.064808-07:00,1006.4229736328125,10.723081,10723.081 +27026,2025-03-10T09:26:24.786730-07:00,1006.4115600585938,10.721922,10721.922 +27027,2025-03-10T09:26:35.506957-07:00,1006.4163818359375,10.720227,10720.227 +27028,2025-03-10T09:26:46.233727-07:00,1006.4229736328125,10.72677,10726.77 +27029,2025-03-10T09:26:56.952729-07:00,1006.43798828125,10.719002,10719.002 +27030,2025-03-10T09:27:07.669787-07:00,1006.4346923828125,10.717058,10717.058 +27031,2025-03-10T09:27:18.396906-07:00,1006.4281005859375,10.727119,10727.119 +27032,2025-03-10T09:27:29.112797-07:00,1006.4545288085938,10.715891,10715.891 +27033,2025-03-10T09:27:39.840729-07:00,1006.4413452148438,10.727932,10727.932 +27034,2025-03-10T09:27:50.559725-07:00,1006.4318237304688,10.718996,10718.996 +27035,2025-03-10T09:28:01.280197-07:00,1006.4450073242188,10.720472,10720.472 +27036,2025-03-10T09:28:11.999728-07:00,1006.4450073242188,10.719531,10719.531 +27037,2025-03-10T09:28:22.723502-07:00,1006.4318237304688,10.723774,10723.774 +27038,2025-03-10T09:28:33.446799-07:00,1006.4484252929688,10.723297,10723.297 +27039,2025-03-10T09:28:44.171950-07:00,1006.4417724609375,10.725151,10725.151 +27040,2025-03-10T09:28:54.887735-07:00,1006.4299926757812,10.715785,10715.785 +27041,2025-03-10T09:29:05.610823-07:00,1006.4515380859375,10.723088,10723.088 +27042,2025-03-10T09:29:16.331780-07:00,1006.4564208984375,10.720957,10720.957 +27043,2025-03-10T09:29:27.044775-07:00,1006.4564208984375,10.712995,10712.995 +27044,2025-03-10T09:29:37.770728-07:00,1006.4564208984375,10.725953,10725.953 +27045,2025-03-10T09:29:48.481667-07:00,1006.4299926757812,10.710939,10710.939 +27046,2025-03-10T09:29:59.202868-07:00,1006.4468994140625,10.721201,10721.201 +27047,2025-03-10T09:30:09.920755-07:00,1006.4450073242188,10.717887,10717.887 +27048,2025-03-10T09:30:20.639731-07:00,1006.46484375,10.718976,10718.976 +27049,2025-03-10T09:30:31.362801-07:00,1006.4564208984375,10.72307,10723.07 +27050,2025-03-10T09:30:42.080463-07:00,1006.4581909179688,10.717662,10717.662 +27051,2025-03-10T09:30:52.804098-07:00,1006.4498291015625,10.723635,10723.635 +27052,2025-03-10T09:31:03.514048-07:00,1006.46484375,10.70995,10709.95 +27053,2025-03-10T09:31:14.237729-07:00,1006.4581909179688,10.723681,10723.681 +27054,2025-03-10T09:31:24.958513-07:00,1006.4417724609375,10.720784,10720.784 +27055,2025-03-10T09:31:35.676780-07:00,1006.49609375,10.718267,10718.267 +27056,2025-03-10T09:31:46.399087-07:00,1006.4550170898438,10.722307,10722.307 +27057,2025-03-10T09:31:57.113152-07:00,1006.4879760742188,10.714065,10714.065 +27058,2025-03-10T09:32:07.834728-07:00,1006.4601440429688,10.721576,10721.576 +27059,2025-03-10T09:32:18.554730-07:00,1006.4813842773438,10.720002,10720.002 +27060,2025-03-10T09:32:29.276730-07:00,1006.4534912109375,10.722,10722.0 +27061,2025-03-10T09:32:39.999909-07:00,1006.4682006835938,10.723179,10723.179 +27062,2025-03-10T09:32:50.717928-07:00,1006.4534912109375,10.718019,10718.019 +27063,2025-03-10T09:33:01.433900-07:00,1006.4601440429688,10.715972,10715.972 +27064,2025-03-10T09:33:12.154805-07:00,1006.4615478515625,10.720905,10720.905 +27065,2025-03-10T09:33:22.872043-07:00,1006.4601440429688,10.717238,10717.238 +27066,2025-03-10T09:33:33.597909-07:00,1006.4517211914062,10.725866,10725.866 +27067,2025-03-10T09:33:44.315378-07:00,1006.4451293945312,10.717469,10717.469 +27068,2025-03-10T09:33:55.035802-07:00,1006.42529296875,10.720424,10720.424 +27069,2025-03-10T09:34:05.764894-07:00,1006.4468994140625,10.729092,10729.092 +27070,2025-03-10T09:34:16.485740-07:00,1006.4173583984375,10.720846,10720.846 +27071,2025-03-10T09:34:27.208299-07:00,1006.4271850585938,10.722559,10722.559 +27072,2025-03-10T09:34:37.931895-07:00,1006.4371337890625,10.723596,10723.596 +27073,2025-03-10T09:34:48.647476-07:00,1006.4026489257812,10.715581,10715.581 +27074,2025-03-10T09:34:59.369804-07:00,1006.4224853515625,10.722328,10722.328 +27075,2025-03-10T09:35:10.098910-07:00,1006.42529296875,10.729106,10729.106 +27076,2025-03-10T09:35:20.816935-07:00,1006.4290771484375,10.718025,10718.025 +27077,2025-03-10T09:35:31.537901-07:00,1006.4371337890625,10.720966,10720.966 +27078,2025-03-10T09:35:42.257729-07:00,1006.4620361328125,10.719828,10719.828 +27079,2025-03-10T09:35:52.978421-07:00,1006.4356079101562,10.720692,10720.692 +27080,2025-03-10T09:36:03.700788-07:00,1006.4489135742188,10.722367,10722.367 +27081,2025-03-10T09:36:14.420337-07:00,1006.4338989257812,10.719549,10719.549 +27082,2025-03-10T09:36:25.141915-07:00,1006.448974609375,10.721578,10721.578 +27083,2025-03-10T09:36:35.859195-07:00,1006.4375610351562,10.71728,10717.28 +27084,2025-03-10T09:36:46.582733-07:00,1006.42626953125,10.723538,10723.538 +27085,2025-03-10T09:36:57.300762-07:00,1006.4376831054688,10.718029,10718.029 +27086,2025-03-10T09:37:08.020795-07:00,1006.420166015625,10.720033,10720.033 +27087,2025-03-10T09:37:18.746050-07:00,1006.4183349609375,10.725255,10725.255 +27088,2025-03-10T09:37:29.467816-07:00,1006.4400634765625,10.721766,10721.766 +27089,2025-03-10T09:37:40.191727-07:00,1006.4207763671875,10.723911,10723.911 +27090,2025-03-10T09:37:50.907734-07:00,1006.4212646484375,10.716007,10716.007 +27091,2025-03-10T09:38:01.630929-07:00,1006.4282836914062,10.723195,10723.195 +27092,2025-03-10T09:38:12.352039-07:00,1006.4481811523438,10.72111,10721.11 +27093,2025-03-10T09:38:23.076787-07:00,1006.4339599609375,10.724748,10724.748 +27094,2025-03-10T09:38:33.793733-07:00,1006.4326782226562,10.716946,10716.946 +27095,2025-03-10T09:38:44.519154-07:00,1006.4120483398438,10.725421,10725.421 +27096,2025-03-10T09:38:55.240919-07:00,1006.4138793945312,10.721765,10721.765 +27097,2025-03-10T09:39:05.960727-07:00,1006.4356079101562,10.719808,10719.808 +27098,2025-03-10T09:39:16.687729-07:00,1006.447509765625,10.727002,10727.002 +27099,2025-03-10T09:39:27.403965-07:00,1006.4050903320312,10.716236,10716.236 +27100,2025-03-10T09:39:38.121948-07:00,1006.46630859375,10.717983,10717.983 +27101,2025-03-10T09:39:48.846727-07:00,1006.4191284179688,10.724779,10724.779 +27102,2025-03-10T09:39:59.565732-07:00,1006.4474487304688,10.719005,10719.005 +27103,2025-03-10T09:40:10.292949-07:00,1006.4210815429688,10.727217,10727.217 +27104,2025-03-10T09:40:21.006203-07:00,1006.4384155273438,10.713254,10713.254 +27105,2025-03-10T09:40:31.731727-07:00,1006.4021606445312,10.725524,10725.524 +27106,2025-03-10T09:40:42.458730-07:00,1006.4304809570312,10.727003,10727.003 +27107,2025-03-10T09:40:53.173030-07:00,1006.406005859375,10.7143,10714.3 +27108,2025-03-10T09:41:03.894236-07:00,1006.429443359375,10.721206,10721.206 +27109,2025-03-10T09:41:14.616805-07:00,1006.4115600585938,10.722569,10722.569 +27110,2025-03-10T09:41:25.338744-07:00,1006.3984375,10.721939,10721.939 +27111,2025-03-10T09:41:36.066737-07:00,1006.3692016601562,10.727993,10727.993 +27112,2025-03-10T09:41:46.783059-07:00,1006.406982421875,10.716322,10716.322 +27113,2025-03-10T09:41:57.504871-07:00,1006.4171752929688,10.721812,10721.812 +27114,2025-03-10T09:42:08.229933-07:00,1006.4285888671875,10.725062,10725.062 +27115,2025-03-10T09:42:18.945728-07:00,1006.4257202148438,10.715795,10715.795 +27116,2025-03-10T09:42:29.675953-07:00,1006.4337768554688,10.730225,10730.225 +27117,2025-03-10T09:42:40.387736-07:00,1006.4374389648438,10.711783,10711.783 +27118,2025-03-10T09:42:51.113962-07:00,1006.4488525390625,10.726226,10726.226 +27119,2025-03-10T09:43:01.830953-07:00,1006.4488525390625,10.716991,10716.991 +27120,2025-03-10T09:43:12.552933-07:00,1006.4671630859375,10.72198,10721.98 +27121,2025-03-10T09:43:23.274852-07:00,1006.4671630859375,10.721919,10721.919 +27122,2025-03-10T09:43:33.999125-07:00,1006.4421997070312,10.724273,10724.273 +27123,2025-03-10T09:43:44.722790-07:00,1006.4078369140625,10.723665,10723.665 +27124,2025-03-10T09:43:55.443955-07:00,1006.4488525390625,10.721165,10721.165 +27125,2025-03-10T09:44:06.169253-07:00,1006.4356079101562,10.725298,10725.298 +27126,2025-03-10T09:44:16.892830-07:00,1006.4290771484375,10.723577,10723.577 +27127,2025-03-10T09:44:27.618752-07:00,1006.4374389648438,10.725922,10725.922 +27128,2025-03-10T09:44:38.346726-07:00,1006.4506225585938,10.727974,10727.974 +27129,2025-03-10T09:44:49.061932-07:00,1006.4799194335938,10.715206,10715.206 +27130,2025-03-10T09:44:59.792761-07:00,1006.430419921875,10.730829,10730.829 +27131,2025-03-10T09:45:10.512645-07:00,1006.4271850585938,10.719884,10719.884 +27132,2025-03-10T09:45:21.240102-07:00,1006.4501342773438,10.727457,10727.457 +27133,2025-03-10T09:45:31.967875-07:00,1006.443603515625,10.727773,10727.773 +27134,2025-03-10T09:45:42.684787-07:00,1006.43701171875,10.716912,10716.912 +27135,2025-03-10T09:45:53.415022-07:00,1006.453125,10.730235,10730.235 +27136,2025-03-10T09:46:04.141753-07:00,1006.4812622070312,10.726731,10726.731 +27137,2025-03-10T09:46:14.862818-07:00,1006.4629516601562,10.721065,10721.065 +27138,2025-03-10T09:46:25.587863-07:00,1006.4614868164062,10.725045,10725.045 +27139,2025-03-10T09:46:36.311724-07:00,1006.4564208984375,10.723861,10723.861 +27140,2025-03-10T09:46:47.038306-07:00,1006.4529418945312,10.726582,10726.582 +27141,2025-03-10T09:46:57.770730-07:00,1006.49072265625,10.732424,10732.424 +27142,2025-03-10T09:47:08.494924-07:00,1006.4525756835938,10.724194,10724.194 +27143,2025-03-10T09:47:19.224482-07:00,1006.4902954101562,10.729558,10729.558 +27144,2025-03-10T09:47:29.946730-07:00,1006.486572265625,10.722248,10722.248 +27145,2025-03-10T09:47:40.676012-07:00,1006.4734497070312,10.729282,10729.282 +27146,2025-03-10T09:47:51.399773-07:00,1006.5045166015625,10.723761,10723.761 +27147,2025-03-10T09:48:02.133877-07:00,1006.5242309570312,10.734104,10734.104 +27148,2025-03-10T09:48:12.857247-07:00,1006.497802734375,10.72337,10723.37 +27149,2025-03-10T09:48:23.580729-07:00,1006.494140625,10.723482,10723.482 +27150,2025-03-10T09:48:34.305920-07:00,1006.497314453125,10.725191,10725.191 +27151,2025-03-10T09:48:45.029732-07:00,1006.5020141601562,10.723812,10723.812 +27152,2025-03-10T09:48:55.759941-07:00,1006.5036010742188,10.730209,10730.209 +27153,2025-03-10T09:49:06.481752-07:00,1006.5001831054688,10.721811,10721.811 +27154,2025-03-10T09:49:17.209732-07:00,1006.50830078125,10.72798,10727.98 +27155,2025-03-10T09:49:27.930978-07:00,1006.5064086914062,10.721246,10721.246 +27156,2025-03-10T09:49:38.654881-07:00,1006.4963989257812,10.723903,10723.903 +27157,2025-03-10T09:49:49.386939-07:00,1006.4781494140625,10.732058,10732.058 +27158,2025-03-10T09:50:00.113931-07:00,1006.46630859375,10.726992,10726.992 +27159,2025-03-10T09:50:10.832992-07:00,1006.4923706054688,10.719061,10719.061 +27160,2025-03-10T09:50:21.559731-07:00,1006.4874877929688,10.726739,10726.739 +27161,2025-03-10T09:50:32.286158-07:00,1006.4921875,10.726427,10726.427 +27162,2025-03-10T09:50:43.012727-07:00,1006.500244140625,10.726569,10726.569 +27163,2025-03-10T09:50:53.742730-07:00,1006.471923828125,10.730003,10730.003 +27164,2025-03-10T09:51:04.470564-07:00,1006.5179443359375,10.727834,10727.834 +27165,2025-03-10T09:51:15.196728-07:00,1006.5028686523438,10.726164,10726.164 +27166,2025-03-10T09:51:25.915931-07:00,1006.4684448242188,10.719203,10719.203 +27167,2025-03-10T09:51:36.636730-07:00,1006.4844360351562,10.720799,10720.799 +27168,2025-03-10T09:51:47.365728-07:00,1006.5056762695312,10.728998,10728.998 +27169,2025-03-10T09:51:58.096920-07:00,1006.4759521484375,10.731192,10731.192 +27170,2025-03-10T09:52:08.813730-07:00,1006.5231323242188,10.71681,10716.81 +27171,2025-03-10T09:52:19.549951-07:00,1006.4982299804688,10.736221,10736.221 +27172,2025-03-10T09:52:30.272728-07:00,1006.491455078125,10.722777,10722.777 +27173,2025-03-10T09:52:40.997891-07:00,1006.494384765625,10.725163,10725.163 +27174,2025-03-10T09:52:51.728964-07:00,1006.4976806640625,10.731073,10731.073 +27175,2025-03-10T09:53:02.363197-07:00,1006.5023193359375,10.634233,10634.233 +27176,2025-03-10T09:53:13.083085-07:00,1006.5023193359375,10.719888,10719.888 +27177,2025-03-10T09:53:23.813283-07:00,1006.4953002929688,10.730198,10730.198 +27178,2025-03-10T09:53:34.534171-07:00,1006.51171875,10.720888,10720.888 +27179,2025-03-10T09:53:45.264187-07:00,1006.51123046875,10.730016,10730.016 +27180,2025-03-10T09:53:55.984849-07:00,1006.5211181640625,10.720662,10720.662 +27181,2025-03-10T09:54:06.721554-07:00,1006.4927368164062,10.736705,10736.705 +27182,2025-03-10T09:54:17.441997-07:00,1006.4942016601562,10.720443,10720.443 +27183,2025-03-10T09:54:28.167129-07:00,1006.5003051757812,10.725132,10725.132 +27184,2025-03-10T09:54:38.883200-07:00,1006.4820556640625,10.716071,10716.071 +27185,2025-03-10T09:54:49.614179-07:00,1006.5131225585938,10.730979,10730.979 +27186,2025-03-10T09:55:00.333998-07:00,1006.4913940429688,10.719819,10719.819 +27187,2025-03-10T09:55:11.059375-07:00,1006.502685546875,10.725377,10725.377 +27188,2025-03-10T09:55:21.785158-07:00,1006.471435546875,10.725783,10725.783 +27189,2025-03-10T09:55:32.512177-07:00,1006.4794311523438,10.727019,10727.019 +27190,2025-03-10T09:55:43.245445-07:00,1006.484130859375,10.733268,10733.268 +27191,2025-03-10T09:55:53.962994-07:00,1006.4954833984375,10.717549,10717.549 +27192,2025-03-10T09:56:04.688656-07:00,1006.5049438476562,10.725662,10725.662 +27193,2025-03-10T09:56:15.417298-07:00,1006.4963989257812,10.728642,10728.642 +27194,2025-03-10T09:56:26.136197-07:00,1006.4614868164062,10.718899,10718.899 +27195,2025-03-10T09:56:36.862994-07:00,1006.4793701171875,10.726797,10726.797 +27196,2025-03-10T09:56:47.587024-07:00,1006.4412231445312,10.72403,10724.03 +27197,2025-03-10T09:56:58.305956-07:00,1006.4623413085938,10.718932,10718.932 +27198,2025-03-10T09:57:09.041023-07:00,1006.4405517578125,10.735067,10735.067 +27199,2025-03-10T09:57:19.762994-07:00,1006.4320068359375,10.721971,10721.971 +27200,2025-03-10T09:57:30.490311-07:00,1006.4634399414062,10.727317,10727.317 +27201,2025-03-10T09:57:41.214167-07:00,1006.420166015625,10.723856,10723.856 +27202,2025-03-10T09:57:51.934094-07:00,1006.429931640625,10.719927,10719.927 +27203,2025-03-10T09:58:02.661179-07:00,1006.43798828125,10.727085,10727.085 +27204,2025-03-10T09:58:13.386024-07:00,1006.4265747070312,10.724845,10724.845 +27205,2025-03-10T09:58:24.114157-07:00,1006.42138671875,10.728133,10728.133 +27206,2025-03-10T09:58:34.831997-07:00,1006.4412231445312,10.71784,10717.84 +27207,2025-03-10T09:58:45.564109-07:00,1006.431396484375,10.732112,10732.112 +27208,2025-03-10T09:58:56.288298-07:00,1006.429443359375,10.724189,10724.189 +27209,2025-03-10T09:59:07.009998-07:00,1006.413330078125,10.7217,10721.7 +27210,2025-03-10T09:59:17.741101-07:00,1006.408203125,10.731103,10731.103 +27211,2025-03-10T09:59:28.462995-07:00,1006.411376953125,10.721894,10721.894 +27212,2025-03-10T09:59:39.190182-07:00,1006.399658203125,10.727187,10727.187 +27213,2025-03-10T09:59:49.910190-07:00,1006.40625,10.720008,10720.008 +27214,2025-03-10T10:00:00.640008-07:00,1006.415771484375,10.729818,10729.818 +27215,2025-03-10T10:00:11.361143-07:00,1006.43359375,10.721135,10721.135 +27216,2025-03-10T10:00:22.083111-07:00,1006.4104614257812,10.721968,10721.968 +27217,2025-03-10T10:00:32.809116-07:00,1006.4070434570312,10.726005,10726.005 +27218,2025-03-10T10:00:43.536997-07:00,1006.4165649414062,10.727881,10727.881 +27219,2025-03-10T10:00:54.257175-07:00,1006.380126953125,10.720178,10720.178 +27220,2025-03-10T10:01:04.980018-07:00,1006.3965454101562,10.722843,10722.843 +27221,2025-03-10T10:01:15.710043-07:00,1006.4159545898438,10.730025,10730.025 +27222,2025-03-10T10:01:26.434997-07:00,1006.4187622070312,10.724954,10724.954 +27223,2025-03-10T10:01:37.157207-07:00,1006.403564453125,10.72221,10722.21 +27224,2025-03-10T10:01:47.890222-07:00,1006.3757934570312,10.733015,10733.015 +27225,2025-03-10T10:01:58.607021-07:00,1006.3856201171875,10.716799,10716.799 +27226,2025-03-10T10:02:09.336670-07:00,1006.3931274414062,10.729649,10729.649 +27227,2025-03-10T10:02:20.058994-07:00,1006.387939453125,10.722324,10722.324 +27228,2025-03-10T10:02:30.788066-07:00,1006.4190673828125,10.729072,10729.072 +27229,2025-03-10T10:02:41.508071-07:00,1006.4188842773438,10.720005,10720.005 +27230,2025-03-10T10:02:52.238219-07:00,1006.4137573242188,10.730148,10730.148 +27231,2025-03-10T10:03:02.962994-07:00,1006.4065551757812,10.724775,10724.775 +27232,2025-03-10T10:03:13.690997-07:00,1006.3848266601562,10.728003,10728.003 +27233,2025-03-10T10:03:24.409290-07:00,1006.3928833007812,10.718293,10718.293 +27234,2025-03-10T10:03:35.134996-07:00,1006.3682861328125,10.725706,10725.706 +27235,2025-03-10T10:03:45.863697-07:00,1006.3889770507812,10.728701,10728.701 +27236,2025-03-10T10:03:56.585196-07:00,1006.3743896484375,10.721499,10721.499 +27237,2025-03-10T10:04:07.311069-07:00,1006.3841552734375,10.725873,10725.873 +27238,2025-03-10T10:04:18.034997-07:00,1006.4085693359375,10.723928,10723.928 +27239,2025-03-10T10:04:28.760399-07:00,1006.3804931640625,10.725402,10725.402 +27240,2025-03-10T10:04:39.488610-07:00,1006.3704833984375,10.728211,10728.211 +27241,2025-03-10T10:04:50.211996-07:00,1006.3917236328125,10.723386,10723.386 +27242,2025-03-10T10:05:00.930090-07:00,1006.3948364257812,10.718094,10718.094 +27243,2025-03-10T10:05:11.654284-07:00,1006.368408203125,10.724194,10724.194 +27244,2025-03-10T10:05:22.381169-07:00,1006.3831176757812,10.726885,10726.885 +27245,2025-03-10T10:05:33.109992-07:00,1006.3646850585938,10.728823,10728.823 +27246,2025-03-10T10:05:35.780569-07:00,1006.3646850585938,2.670577,2670.577 +27247,2025-03-10T10:05:43.833226-07:00,1006.3731079101562,8.052657,8052.657 +27248,2025-03-10T10:05:54.558996-07:00,1006.340087890625,10.72577,10725.77 +27249,2025-03-10T10:06:05.283231-07:00,1006.3348999023438,10.724235,10724.235 +27250,2025-03-10T10:06:16.001057-07:00,1006.326904296875,10.717826,10717.826 +27251,2025-03-10T10:06:26.726995-07:00,1006.3495483398438,10.725938,10725.938 +27252,2025-03-10T10:06:37.450192-07:00,1006.3792114257812,10.723197,10723.197 +27253,2025-03-10T10:06:48.175202-07:00,1006.364501953125,10.72501,10725.01 +27254,2025-03-10T10:06:58.911210-07:00,1006.354248046875,10.736008,10736.008 +27255,2025-03-10T10:07:09.622989-07:00,1006.3640747070312,10.711779,10711.779 +27256,2025-03-10T10:07:20.355045-07:00,1006.3824462890625,10.732056,10732.056 +27257,2025-03-10T10:07:31.078289-07:00,1006.378662109375,10.723244,10723.244 +27258,2025-03-10T10:07:41.795801-07:00,1006.37060546875,10.717512,10717.512 +27259,2025-03-10T10:07:52.518059-07:00,1006.352294921875,10.722258,10722.258 +27260,2025-03-10T10:08:03.242072-07:00,1006.35595703125,10.724013,10724.013 +27261,2025-03-10T10:08:13.972473-07:00,1006.34423828125,10.730401,10730.401 +27262,2025-03-10T10:08:24.699995-07:00,1006.3456420898438,10.727522,10727.522 +27263,2025-03-10T10:08:35.421489-07:00,1006.35888671875,10.721494,10721.494 +27264,2025-03-10T10:08:46.141072-07:00,1006.3671875,10.719583,10719.583 +27265,2025-03-10T10:08:56.870191-07:00,1006.352294921875,10.729119,10729.119 +27266,2025-03-10T10:09:07.587995-07:00,1006.3407592773438,10.717804,10717.804 +27267,2025-03-10T10:09:18.321009-07:00,1006.34228515625,10.733014,10733.014 +27268,2025-03-10T10:09:29.042198-07:00,1006.3192138671875,10.721189,10721.189 +27269,2025-03-10T10:09:39.769022-07:00,1006.3390502929688,10.726824,10726.824 +27270,2025-03-10T10:09:50.488059-07:00,1006.2965698242188,10.719037,10719.037 +27271,2025-03-10T10:10:01.211533-07:00,1006.3309326171875,10.723474,10723.474 +27272,2025-03-10T10:10:11.937202-07:00,1006.3178100585938,10.725669,10725.669 +27273,2025-03-10T10:10:22.662022-07:00,1006.3111572265625,10.72482,10724.82 +27274,2025-03-10T10:10:33.383016-07:00,1006.3209228515625,10.720994,10720.994 +27275,2025-03-10T10:10:44.107089-07:00,1006.2781372070312,10.724073,10724.073 +27276,2025-03-10T10:10:54.825427-07:00,1006.2993774414062,10.718338,10718.338 +27277,2025-03-10T10:11:05.548995-07:00,1006.2927856445312,10.723568,10723.568 +27278,2025-03-10T10:11:16.276187-07:00,1006.24658203125,10.727192,10727.192 +27279,2025-03-10T10:11:27.010198-07:00,1006.2615356445312,10.734011,10734.011 +27280,2025-03-10T10:11:37.731177-07:00,1006.2664184570312,10.720979,10720.979 +27281,2025-03-10T10:11:48.449097-07:00,1006.239990234375,10.71792,10717.92 +27282,2025-03-10T10:11:59.176996-07:00,1006.264892578125,10.727899,10727.899 +27283,2025-03-10T10:12:09.903286-07:00,1006.262939453125,10.72629,10726.29 +27284,2025-03-10T10:12:20.630282-07:00,1006.2664184570312,10.726996,10726.996 +27285,2025-03-10T10:12:31.358201-07:00,1006.238525390625,10.727919,10727.919 +27286,2025-03-10T10:12:42.088005-07:00,1006.279541015625,10.729804,10729.804 +27287,2025-03-10T10:12:52.814143-07:00,1006.3011474609375,10.726138,10726.138 +27288,2025-03-10T10:13:03.536993-07:00,1006.2781372070312,10.72285,10722.85 +27289,2025-03-10T10:13:14.254305-07:00,1006.2568969726562,10.717312,10717.312 +27290,2025-03-10T10:13:24.982993-07:00,1006.2700805664062,10.728688,10728.688 +27291,2025-03-10T10:13:35.713997-07:00,1006.2815551757812,10.731004,10731.004 +27292,2025-03-10T10:13:46.440384-07:00,1006.2503051757812,10.726387,10726.387 +27293,2025-03-10T10:13:57.163085-07:00,1006.26171875,10.722701,10722.701 +27294,2025-03-10T10:14:07.888000-07:00,1006.268310546875,10.724915,10724.915 +27295,2025-03-10T10:14:18.613996-07:00,1006.2801513671875,10.725996,10725.996 +27296,2025-03-10T10:14:29.344995-07:00,1006.2801513671875,10.730999,10730.999 +27297,2025-03-10T10:14:40.065105-07:00,1006.2999267578125,10.72011,10720.11 +27298,2025-03-10T10:14:50.785998-07:00,1006.2952880859375,10.720893,10720.893 +27299,2025-03-10T10:15:01.513371-07:00,1006.2820434570312,10.727373,10727.373 +27300,2025-03-10T10:15:12.228995-07:00,1006.2754516601562,10.715624,10715.624 +27301,2025-03-10T10:15:22.949030-07:00,1006.2722778320312,10.720035,10720.035 +27302,2025-03-10T10:15:33.675001-07:00,1006.3004760742188,10.725971,10725.971 +27303,2025-03-10T10:15:44.398459-07:00,1006.2938232421875,10.723458,10723.458 +27304,2025-03-10T10:15:55.114996-07:00,1006.2854614257812,10.716537,10716.537 +27305,2025-03-10T10:16:05.838058-07:00,1006.25439453125,10.723062,10723.062 +27306,2025-03-10T10:16:16.566998-07:00,1006.2576293945312,10.72894,10728.94 +27307,2025-03-10T10:16:27.287395-07:00,1006.2628173828125,10.720397,10720.397 +27308,2025-03-10T10:16:38.015154-07:00,1006.24951171875,10.727759,10727.759 +27309,2025-03-10T10:16:48.737420-07:00,1006.2661743164062,10.722266,10722.266 +27310,2025-03-10T10:16:59.456174-07:00,1006.2742309570312,10.718754,10718.754 +27311,2025-03-10T10:17:10.183255-07:00,1006.260986328125,10.727081,10727.081 +27312,2025-03-10T10:17:20.899005-07:00,1006.2529907226562,10.71575,10715.75 +27313,2025-03-10T10:17:31.627025-07:00,1006.2728271484375,10.72802,10728.02 +27314,2025-03-10T10:17:42.351248-07:00,1006.259521484375,10.724223,10724.223 +27315,2025-03-10T10:17:53.076196-07:00,1006.2515869140625,10.724948,10724.948 +27316,2025-03-10T10:18:03.793062-07:00,1006.2549438476562,10.716866,10716.866 +27317,2025-03-10T10:18:14.520000-07:00,1006.2713012695312,10.726938,10726.938 +27318,2025-03-10T10:18:25.240444-07:00,1006.2549438476562,10.720444,10720.444 +27319,2025-03-10T10:18:35.969995-07:00,1006.2615356445312,10.729551,10729.551 +27320,2025-03-10T10:18:46.695240-07:00,1006.2549438476562,10.725245,10725.245 +27321,2025-03-10T10:18:57.427995-07:00,1006.2549438476562,10.732755,10732.755 +27322,2025-03-10T10:19:08.145295-07:00,1006.25341796875,10.7173,10717.3 +27323,2025-03-10T10:19:18.877997-07:00,1006.2681274414062,10.732702,10732.702 +27324,2025-03-10T10:19:29.593054-07:00,1006.218994140625,10.715057,10715.057 +27325,2025-03-10T10:19:40.325992-07:00,1006.2468872070312,10.732938,10732.938 +27326,2025-03-10T10:19:51.046079-07:00,1006.2586059570312,10.720087,10720.087 +27327,2025-03-10T10:20:01.767757-07:00,1006.2157592773438,10.721678,10721.678 +27328,2025-03-10T10:20:12.491992-07:00,1006.23046875,10.724235,10724.235 +27329,2025-03-10T10:20:23.217572-07:00,1006.2488403320312,10.72558,10725.58 +27330,2025-03-10T10:20:33.941995-07:00,1006.1959228515625,10.724423,10724.423 +27331,2025-03-10T10:20:44.669374-07:00,1006.2686157226562,10.727379,10727.379 +27332,2025-03-10T10:20:55.389994-07:00,1006.2257690429688,10.72062,10720.62 +27333,2025-03-10T10:21:05.037156-07:00,1006.24560546875,9.647162,9647.162 +27334,2025-03-10T10:21:06.112205-07:00,1006.224365234375,1.075049,1075.049 +27335,2025-03-10T10:21:16.828997-07:00,1006.252197265625,10.716792,10716.792 +27336,2025-03-10T10:21:27.553431-07:00,1006.25732421875,10.724434,10724.434 +27337,2025-03-10T10:21:38.279994-07:00,1006.2277221679688,10.726563,10726.563 +27338,2025-03-10T10:21:48.998177-07:00,1006.2427368164062,10.718183,10718.183 +27339,2025-03-10T10:21:59.722997-07:00,1006.2625122070312,10.72482,10724.82 +27340,2025-03-10T10:22:10.450098-07:00,1006.2608032226562,10.727101,10727.101 +27341,2025-03-10T10:22:21.162188-07:00,1006.240966796875,10.71209,10712.09 +27342,2025-03-10T10:22:31.891158-07:00,1006.2329711914062,10.72897,10728.97 +27343,2025-03-10T10:22:42.612049-07:00,1006.267333984375,10.720891,10720.891 +27344,2025-03-10T10:22:53.332367-07:00,1006.2608032226562,10.720318,10720.318 +27345,2025-03-10T10:23:04.059026-07:00,1006.2659301757812,10.726659,10726.659 +27346,2025-03-10T10:23:14.780984-07:00,1006.24609375,10.721958,10721.958 +27347,2025-03-10T10:23:25.495996-07:00,1006.224853515625,10.715012,10715.012 +27348,2025-03-10T10:23:36.226994-07:00,1006.2608032226562,10.730998,10730.998 +27349,2025-03-10T10:23:46.948024-07:00,1006.2608032226562,10.72103,10721.03 +27350,2025-03-10T10:23:57.672178-07:00,1006.24609375,10.724154,10724.154 +27351,2025-03-10T10:24:08.394200-07:00,1006.2578735351562,10.722022,10722.022 +27352,2025-03-10T10:24:19.113046-07:00,1006.2446899414062,10.718846,10718.846 +27353,2025-03-10T10:24:29.839579-07:00,1006.267333984375,10.726533,10726.533 +27354,2025-03-10T10:24:40.559179-07:00,1006.2315063476562,10.7196,10719.6 +27355,2025-03-10T10:24:51.282364-07:00,1006.226318359375,10.723185,10723.185 +27356,2025-03-10T10:25:02.011994-07:00,1006.2527465820312,10.72963,10729.63 +27357,2025-03-10T10:25:12.729017-07:00,1006.2564086914062,10.717023,10717.023 +27358,2025-03-10T10:25:23.456203-07:00,1006.2608032226562,10.727186,10727.186 +27359,2025-03-10T10:25:34.175549-07:00,1006.2446899414062,10.719346,10719.346 +27360,2025-03-10T10:25:44.899022-07:00,1006.2711181640625,10.723473,10723.473 +27361,2025-03-10T10:25:55.620534-07:00,1006.2578735351562,10.721512,10721.512 +27362,2025-03-10T10:26:06.349287-07:00,1006.2432861328125,10.728753,10728.753 +27363,2025-03-10T10:26:17.070178-07:00,1006.2234497070312,10.720891,10720.891 +27364,2025-03-10T10:26:27.788996-07:00,1006.23486328125,10.718818,10718.818 +27365,2025-03-10T10:26:38.521096-07:00,1006.2084350585938,10.7321,10732.1 +27366,2025-03-10T10:26:49.248929-07:00,1006.20556640625,10.727833,10727.833 +27367,2025-03-10T10:26:59.968227-07:00,1006.2254028320312,10.719298,10719.298 +27368,2025-03-10T10:27:10.694994-07:00,1006.2254028320312,10.726767,10726.767 +27369,2025-03-10T10:27:21.419208-07:00,1006.2320556640625,10.724214,10724.214 +27370,2025-03-10T10:27:32.144204-07:00,1006.2103881835938,10.724996,10724.996 +27371,2025-03-10T10:27:42.867996-07:00,1006.215576171875,10.723792,10723.792 +27372,2025-03-10T10:27:53.591370-07:00,1006.2103881835938,10.723374,10723.374 +27373,2025-03-10T10:28:04.307210-07:00,1006.2235717773438,10.71584,10715.84 +27374,2025-03-10T10:28:15.032189-07:00,1006.2471923828125,10.724979,10724.979 +27375,2025-03-10T10:28:25.751997-07:00,1006.23388671875,10.719808,10719.808 +27376,2025-03-10T10:28:36.479174-07:00,1006.20751953125,10.727177,10727.177 +27377,2025-03-10T10:28:47.203196-07:00,1006.200927734375,10.724022,10724.022 +27378,2025-03-10T10:28:57.934145-07:00,1006.1727294921875,10.730949,10730.949 +27379,2025-03-10T10:29:08.650072-07:00,1006.1581420898438,10.715927,10715.927 +27380,2025-03-10T10:29:19.380293-07:00,1006.1727294921875,10.730221,10730.221 +27381,2025-03-10T10:29:30.101994-07:00,1006.1793823242188,10.721701,10721.701 +27382,2025-03-10T10:29:40.826999-07:00,1006.1824951171875,10.725005,10725.005 +27383,2025-03-10T10:29:51.554397-07:00,1006.20751953125,10.727398,10727.398 +27384,2025-03-10T10:30:02.276079-07:00,1006.20751953125,10.721682,10721.682 +27385,2025-03-10T10:30:13.003594-07:00,1006.1793823242188,10.727515,10727.515 +27386,2025-03-10T10:30:23.727000-07:00,1006.1911010742188,10.723406,10723.406 +27387,2025-03-10T10:30:34.455995-07:00,1006.1942749023438,10.728995,10728.995 +27388,2025-03-10T10:30:45.179023-07:00,1006.1991577148438,10.723028,10723.028 +27389,2025-03-10T10:30:55.898298-07:00,1006.1646728515625,10.719275,10719.275 +27390,2025-03-10T10:31:06.618997-07:00,1006.1581420898438,10.720699,10720.699 +27391,2025-03-10T10:31:17.337259-07:00,1006.135009765625,10.718262,10718.262 +27392,2025-03-10T10:31:28.064994-07:00,1006.1482543945312,10.727735,10727.735 +27393,2025-03-10T10:31:38.780242-07:00,1006.1632690429688,10.715248,10715.248 +27394,2025-03-10T10:31:49.500997-07:00,1006.14013671875,10.720755,10720.755 +27395,2025-03-10T10:32:00.232182-07:00,1006.1534423828125,10.731185,10731.185 +27396,2025-03-10T10:32:10.945141-07:00,1006.1468505859375,10.712959,10712.959 +27397,2025-03-10T10:32:21.675257-07:00,1006.13037109375,10.730116,10730.116 +27398,2025-03-10T10:32:32.394151-07:00,1006.1255493164062,10.718894,10718.894 +27399,2025-03-10T10:32:43.116430-07:00,1006.122314453125,10.722279,10722.279 +27400,2025-03-10T10:32:53.842097-07:00,1006.0996704101562,10.725667,10725.667 +27401,2025-03-10T10:33:04.564997-07:00,1006.122802734375,10.7229,10722.9 +27402,2025-03-10T10:33:15.288072-07:00,1006.11767578125,10.723075,10723.075 +27403,2025-03-10T10:33:25.999283-07:00,1006.09326171875,10.711211,10711.211 +27404,2025-03-10T10:33:36.720994-07:00,1006.1101684570312,10.721711,10721.711 +27405,2025-03-10T10:33:47.442029-07:00,1006.101806640625,10.721035,10721.035 +27406,2025-03-10T10:33:58.167996-07:00,1006.1187744140625,10.725967,10725.967 +27407,2025-03-10T10:34:08.889199-07:00,1006.10888671875,10.721203,10721.203 +27408,2025-03-10T10:34:19.611040-07:00,1006.076416015625,10.721841,10721.841 +27409,2025-03-10T10:34:30.326196-07:00,1006.090087890625,10.715156,10715.156 +27410,2025-03-10T10:34:41.044996-07:00,1006.093994140625,10.7188,10718.8 +27411,2025-03-10T10:34:51.774008-07:00,1006.07470703125,10.729012,10729.012 +27412,2025-03-10T10:35:13.214628-07:00,1006.0901489257812,21.44062,21440.62 +27413,2025-03-10T10:35:23.932026-07:00,1006.07421875,10.717398,10717.398 +27414,2025-03-10T10:35:34.655178-07:00,1006.055419921875,10.723152,10723.152 +27415,2025-03-10T10:35:45.373203-07:00,1006.04931640625,10.718025,10718.025 +27416,2025-03-10T10:35:56.096176-07:00,1006.0546264648438,10.722973,10722.973 +27417,2025-03-10T10:36:06.817104-07:00,1006.0401611328125,10.720928,10720.928 +27418,2025-03-10T10:36:17.538165-07:00,1006.0722045898438,10.721061,10721.061 +27419,2025-03-10T10:36:28.256999-07:00,1006.0543212890625,10.718834,10718.834 +27420,2025-03-10T10:36:38.982166-07:00,1006.079345703125,10.725167,10725.167 +27421,2025-03-10T10:36:49.699995-07:00,1006.0733032226562,10.717829,10717.829 +27422,2025-03-10T10:37:00.417032-07:00,1006.052490234375,10.717037,10717.037 +27423,2025-03-10T10:37:11.145205-07:00,1006.0657958984375,10.728173,10728.173 +27424,2025-03-10T10:37:21.859192-07:00,1006.0582885742188,10.713987,10713.987 +27425,2025-03-10T10:37:32.583998-07:00,1006.0535888671875,10.724806,10724.806 +27426,2025-03-10T10:37:43.306017-07:00,1006.0833740234375,10.722019,10722.019 +27427,2025-03-10T10:37:54.035331-07:00,1006.0640869140625,10.729314,10729.314 +27428,2025-03-10T10:38:04.755534-07:00,1006.1087646484375,10.720203,10720.203 +27429,2025-03-10T10:38:15.479996-07:00,1006.0711059570312,10.724462,10724.462 +27430,2025-03-10T10:38:26.193018-07:00,1006.074462890625,10.713022,10713.022 +27431,2025-03-10T10:38:36.921466-07:00,1006.1045532226562,10.728448,10728.448 +27432,2025-03-10T10:38:47.649259-07:00,1006.09619140625,10.727793,10727.793 +27433,2025-03-10T10:38:58.369031-07:00,1006.0702514648438,10.719772,10719.772 +27434,2025-03-10T10:39:09.089184-07:00,1006.0819702148438,10.720153,10720.153 +27435,2025-03-10T10:39:19.807212-07:00,1006.0853271484375,10.718028,10718.028 +27436,2025-03-10T10:39:30.537166-07:00,1006.0655517578125,10.729954,10729.954 +27437,2025-03-10T10:39:41.252998-07:00,1006.0839233398438,10.715832,10715.832 +27438,2025-03-10T10:39:51.978204-07:00,1006.0640869140625,10.725206,10725.206 +27439,2025-03-10T10:40:02.691199-07:00,1006.0608520507812,10.712995,10712.995 +27440,2025-03-10T10:40:13.422171-07:00,1006.0557250976562,10.730972,10730.972 +27441,2025-03-10T10:40:24.143997-07:00,1006.05419921875,10.721826,10721.826 +27442,2025-03-10T10:40:34.859532-07:00,1006.0476684570312,10.715535,10715.535 +27443,2025-03-10T10:40:45.577533-07:00,1006.0443725585938,10.718001,10718.001 +27444,2025-03-10T10:40:56.297992-07:00,1006.0462646484375,10.720459,10720.459 +27445,2025-03-10T10:41:07.027117-07:00,1006.0264282226562,10.729125,10729.125 +27446,2025-03-10T10:41:17.744017-07:00,1006.0147094726562,10.7169,10716.9 +27447,2025-03-10T10:41:28.469210-07:00,1006.02783203125,10.725193,10725.193 +27448,2025-03-10T10:41:39.188150-07:00,1006.029296875,10.71894,10718.94 +27449,2025-03-10T10:41:49.905998-07:00,1006.0046997070312,10.717848,10717.848 +27450,2025-03-10T10:42:00.628023-07:00,1005.9896850585938,10.722025,10722.025 +27451,2025-03-10T10:42:11.342581-07:00,1005.978271484375,10.714558,10714.558 +27452,2025-03-10T10:42:22.066207-07:00,1006.0142211914062,10.723626,10723.626 +27453,2025-03-10T10:42:32.784155-07:00,1006.0108032226562,10.717948,10717.948 +27454,2025-03-10T10:42:43.504156-07:00,1005.9859619140625,10.720001,10720.001 +27455,2025-03-10T10:42:54.229474-07:00,1005.977783203125,10.725318,10725.318 +27456,2025-03-10T10:43:04.939997-07:00,1006.0075073242188,10.710523,10710.523 +27457,2025-03-10T10:43:15.666395-07:00,1006.0089111328125,10.726398,10726.398 +27458,2025-03-10T10:43:26.390993-07:00,1006.0399780273438,10.724598,10724.598 +27459,2025-03-10T10:43:37.105440-07:00,1006.0070190429688,10.714447,10714.447 +27460,2025-03-10T10:43:47.830996-07:00,1005.9871826171875,10.725556,10725.556 +27461,2025-03-10T10:43:58.552391-07:00,1005.9835205078125,10.721395,10721.395 +27462,2025-03-10T10:44:09.275117-07:00,1005.994873046875,10.722726,10722.726 +27463,2025-03-10T10:44:19.987994-07:00,1005.9815673828125,10.712877,10712.877 +27464,2025-03-10T10:44:30.717025-07:00,1005.989990234375,10.729031,10729.031 +27465,2025-03-10T10:44:41.438188-07:00,1005.9684448242188,10.721163,10721.163 +27466,2025-03-10T10:44:52.153294-07:00,1005.9467163085938,10.715106,10715.106 +27467,2025-03-10T10:45:02.878433-07:00,1005.9452514648438,10.725139,10725.139 +27468,2025-03-10T10:45:13.595996-07:00,1005.9645385742188,10.717563,10717.563 +27469,2025-03-10T10:45:24.324775-07:00,1005.9795532226562,10.728779,10728.779 +27470,2025-03-10T10:45:35.049204-07:00,1005.9545288085938,10.724429,10724.429 +27471,2025-03-10T10:45:45.773173-07:00,1005.9578247070312,10.723969,10723.969 +27472,2025-03-10T10:45:56.501996-07:00,1005.9757690429688,10.728823,10728.823 +27473,2025-03-10T10:46:07.227196-07:00,1005.95263671875,10.7252,10725.2 +27474,2025-03-10T10:46:17.950992-07:00,1005.947509765625,10.723796,10723.796 +27475,2025-03-10T10:46:28.672173-07:00,1005.9573364257812,10.721181,10721.181 +27476,2025-03-10T10:46:39.390994-07:00,1005.9818115234375,10.718821,10718.821 +27477,2025-03-10T10:46:50.112189-07:00,1006.0030517578125,10.721195,10721.195 +27478,2025-03-10T10:47:00.842018-07:00,1005.9634399414062,10.729829,10729.829 +27479,2025-03-10T10:47:11.554214-07:00,1006.0025634765625,10.712196,10712.196 +27480,2025-03-10T10:47:22.281142-07:00,1005.9761962890625,10.726928,10726.928 +27481,2025-03-10T10:47:32.995150-07:00,1005.9874877929688,10.714008,10714.008 +27482,2025-03-10T10:47:43.726229-07:00,1005.9611206054688,10.731079,10731.079 +27483,2025-03-10T10:47:54.438743-07:00,1005.9921875,10.712514,10712.514 +27484,2025-03-10T10:48:05.165063-07:00,1005.9642944335938,10.72632,10726.32 +27485,2025-03-10T10:48:15.884997-07:00,1005.955810546875,10.719934,10719.934 +27486,2025-03-10T10:48:26.613561-07:00,1005.9784545898438,10.728564,10728.564 +27487,2025-03-10T10:48:37.331173-07:00,1005.9735717773438,10.717612,10717.612 +27488,2025-03-10T10:48:48.050061-07:00,1005.9420166015625,10.718888,10718.888 +27489,2025-03-10T10:48:58.774079-07:00,1005.9584350585938,10.724018,10724.018 +27490,2025-03-10T10:49:09.499999-07:00,1005.9467163085938,10.72592,10725.92 +27491,2025-03-10T10:49:20.219180-07:00,1005.9500122070312,10.719181,10719.181 +27492,2025-03-10T10:49:30.942997-07:00,1005.938232421875,10.723817,10723.817 +27493,2025-03-10T10:49:41.664353-07:00,1005.9330444335938,10.721356,10721.356 +27494,2025-03-10T10:49:52.391019-07:00,1005.9146728515625,10.726666,10726.666 +27495,2025-03-10T10:50:03.111213-07:00,1005.9443969726562,10.720194,10720.194 +27496,2025-03-10T10:50:13.837781-07:00,1005.947509765625,10.726568,10726.568 +27497,2025-03-10T10:50:24.550295-07:00,1005.91796875,10.712514,10712.514 +27498,2025-03-10T10:50:35.274995-07:00,1005.9042358398438,10.7247,10724.7 +27499,2025-03-10T10:50:45.991167-07:00,1005.9107666015625,10.716172,10716.172 +27500,2025-03-10T10:50:56.719006-07:00,1005.9126586914062,10.727839,10727.839 +27501,2025-03-10T10:51:07.437205-07:00,1005.91064453125,10.718199,10718.199 +27502,2025-03-10T10:51:18.167227-07:00,1005.890869140625,10.730022,10730.022 +27503,2025-03-10T10:51:28.883341-07:00,1005.8577880859375,10.716114,10716.114 +27504,2025-03-10T10:51:39.604019-07:00,1005.8820190429688,10.720678,10720.678 +27505,2025-03-10T10:51:50.332991-07:00,1005.8720092773438,10.728972,10728.972 +27506,2025-03-10T10:52:01.052017-07:00,1005.8441162109375,10.719026,10719.026 +27507,2025-03-10T10:52:11.770202-07:00,1005.8700561523438,10.718185,10718.185 +27508,2025-03-10T10:52:22.498165-07:00,1005.873291015625,10.727963,10727.963 +27509,2025-03-10T10:52:33.216299-07:00,1005.84033203125,10.718134,10718.134 +27510,2025-03-10T10:52:43.947179-07:00,1005.8431396484375,10.73088,10730.88 +27511,2025-03-10T10:52:54.672997-07:00,1005.8497924804688,10.725818,10725.818 +27512,2025-03-10T10:53:05.503166-07:00,1005.846435546875,10.830169,10830.169 +27513,2025-03-10T10:53:16.231633-07:00,1005.844482421875,10.728467,10728.467 +27514,2025-03-10T10:53:26.956646-07:00,1005.8674926757812,10.725013,10725.013 +27515,2025-03-10T10:53:37.689786-07:00,1005.8428344726562,10.73314,10733.14 +27516,2025-03-10T10:53:48.412576-07:00,1005.8390502929688,10.72279,10722.79 +27517,2025-03-10T10:53:59.133540-07:00,1005.8718872070312,10.720964,10720.964 +27518,2025-03-10T10:54:09.859546-07:00,1005.85498046875,10.726006,10726.006 +27519,2025-03-10T10:54:20.581933-07:00,1005.861083984375,10.722387,10722.387 +27520,2025-03-10T10:54:31.300562-07:00,1005.8695068359375,10.718629,10718.629 +27521,2025-03-10T10:54:42.023621-07:00,1005.85107421875,10.723059,10723.059 +27522,2025-03-10T10:54:52.753747-07:00,1005.82275390625,10.730126,10730.126 +27523,2025-03-10T10:55:03.467571-07:00,1005.8570556640625,10.713824,10713.824 +27524,2025-03-10T10:55:14.192866-07:00,1005.8334350585938,10.725295,10725.295 +27525,2025-03-10T10:55:24.916744-07:00,1005.8499145507812,10.723878,10723.878 +27526,2025-03-10T10:55:35.639543-07:00,1005.849365234375,10.722799,10722.799 +27527,2025-03-10T10:55:46.363709-07:00,1005.8244018554688,10.724166,10724.166 +27528,2025-03-10T10:55:57.086543-07:00,1005.847412109375,10.722834,10722.834 +27529,2025-03-10T10:56:07.810742-07:00,1005.8256225585938,10.724199,10724.199 +27530,2025-03-10T10:56:18.530542-07:00,1005.822265625,10.7198,10719.8 +27531,2025-03-10T10:56:29.259542-07:00,1005.8165893554688,10.729,10729.0 +27532,2025-03-10T10:56:39.975542-07:00,1005.8048706054688,10.716,10716.0 +27533,2025-03-10T10:56:50.696048-07:00,1005.8359375,10.720506,10720.506 +27534,2025-03-10T10:57:01.426744-07:00,1005.8178100585938,10.730696,10730.696 +27535,2025-03-10T10:57:12.142543-07:00,1005.835693359375,10.715799,10715.799 +27536,2025-03-10T10:57:22.865704-07:00,1005.8055419921875,10.723161,10723.161 +27537,2025-03-10T10:57:33.585721-07:00,1005.8153076171875,10.720017,10720.017 +27538,2025-03-10T10:57:44.314747-07:00,1005.8167724609375,10.729026,10729.026 +27539,2025-03-10T10:57:55.039540-07:00,1005.8067016601562,10.724793,10724.793 +27540,2025-03-10T10:58:05.766714-07:00,1005.8312377929688,10.727174,10727.174 +27541,2025-03-10T10:58:16.485578-07:00,1005.7982177734375,10.718864,10718.864 +27542,2025-03-10T10:58:27.212658-07:00,1005.8076782226562,10.72708,10727.08 +27543,2025-03-10T10:58:37.937536-07:00,1005.7976684570312,10.724878,10724.878 +27544,2025-03-10T10:58:48.668758-07:00,1005.779296875,10.731222,10731.222 +27545,2025-03-10T10:58:59.395571-07:00,1005.7744750976562,10.726813,10726.813 +27546,2025-03-10T10:59:10.118544-07:00,1005.7890625,10.722973,10722.973 +27547,2025-03-10T10:59:20.835649-07:00,1005.7920532226562,10.717105,10717.105 +27548,2025-03-10T10:59:31.564959-07:00,1005.77392578125,10.72931,10729.31 +27549,2025-03-10T10:59:42.284700-07:00,1005.7701416015625,10.719741,10719.741 +27550,2025-03-10T10:59:53.010664-07:00,1005.7489013671875,10.725964,10725.964 +27551,2025-03-10T11:00:03.741742-07:00,1005.78515625,10.731078,10731.078 +27552,2025-03-10T11:00:14.460541-07:00,1005.7748413085938,10.718799,10718.799 +27553,2025-03-10T11:00:25.187543-07:00,1005.7648315429688,10.727002,10727.002 +27554,2025-03-10T11:00:35.905846-07:00,1005.7435913085938,10.718303,10718.303 +27555,2025-03-10T11:00:46.624723-07:00,1005.7728271484375,10.718877,10718.877 +27556,2025-03-10T11:00:57.353595-07:00,1005.7679443359375,10.728872,10728.872 +27557,2025-03-10T11:01:08.077744-07:00,1005.7548217773438,10.724149,10724.149 +27558,2025-03-10T11:01:18.801745-07:00,1005.7384643554688,10.724001,10724.001 +27559,2025-03-10T11:01:29.522880-07:00,1005.7745971679688,10.721135,10721.135 +27560,2025-03-10T11:01:40.238741-07:00,1005.7510986328125,10.715861,10715.861 +27561,2025-03-10T11:01:50.960544-07:00,1005.7019653320312,10.721803,10721.803 +27562,2025-03-10T11:02:01.691782-07:00,1005.6953125,10.731238,10731.238 +27563,2025-03-10T11:02:12.413541-07:00,1005.7444458007812,10.721759,10721.759 +27564,2025-03-10T11:02:23.128543-07:00,1005.73779296875,10.715002,10715.002 +27565,2025-03-10T11:02:33.857752-07:00,1005.73779296875,10.729209,10729.209 +27566,2025-03-10T11:02:44.581800-07:00,1005.7329711914062,10.724048,10724.048 +27567,2025-03-10T11:02:55.304569-07:00,1005.71142578125,10.722769,10722.769 +27568,2025-03-10T11:03:06.020701-07:00,1005.703369140625,10.716132,10716.132 +27569,2025-03-10T11:03:16.751540-07:00,1005.714599609375,10.730839,10730.839 +27570,2025-03-10T11:03:27.471885-07:00,1005.7079467773438,10.720345,10720.345 +27571,2025-03-10T11:03:38.189574-07:00,1005.701416015625,10.717689,10717.689 +27572,2025-03-10T11:03:48.920932-07:00,1005.70947265625,10.731358,10731.358 +27573,2025-03-10T11:03:59.635541-07:00,1005.72265625,10.714609,10714.609 +27574,2025-03-10T11:04:10.358885-07:00,1005.7028198242188,10.723344,10723.344 +27575,2025-03-10T11:04:21.089541-07:00,1005.7042236328125,10.730656,10730.656 +27576,2025-03-10T11:04:31.803271-07:00,1005.730712890625,10.71373,10713.73 +27577,2025-03-10T11:04:42.529075-07:00,1005.6844482421875,10.725804,10725.804 +27578,2025-03-10T11:04:53.256569-07:00,1005.6962280273438,10.727494,10727.494 +27579,2025-03-10T11:05:03.984771-07:00,1005.7109375,10.728202,10728.202 +27580,2025-03-10T11:05:14.705717-07:00,1005.6815795898438,10.720946,10720.946 +27581,2025-03-10T11:05:25.430740-07:00,1005.717529296875,10.725023,10725.023 +27582,2025-03-10T11:05:36.151754-07:00,1005.6976318359375,10.721014,10721.014 +27583,2025-03-10T11:05:46.876640-07:00,1005.686279296875,10.724886,10724.886 +27584,2025-03-10T11:05:57.597604-07:00,1005.6712646484375,10.720964,10720.964 +27585,2025-03-10T11:06:08.324416-07:00,1005.6749877929688,10.726812,10726.812 +27586,2025-03-10T11:06:19.041755-07:00,1005.6994018554688,10.717339,10717.339 +27587,2025-03-10T11:06:29.770752-07:00,1005.6712646484375,10.728997,10728.997 +27588,2025-03-10T11:06:40.494732-07:00,1005.63818359375,10.72398,10723.98 +27589,2025-03-10T11:06:51.216712-07:00,1005.6829833984375,10.72198,10721.98 +27590,2025-03-10T11:07:01.937540-07:00,1005.6712646484375,10.720828,10720.828 +27591,2025-03-10T11:07:12.665582-07:00,1005.6632080078125,10.728042,10728.042 +27592,2025-03-10T11:07:23.387535-07:00,1005.6433715820312,10.721953,10721.953 +27593,2025-03-10T11:07:34.109762-07:00,1005.6598510742188,10.722227,10722.227 +27594,2025-03-10T11:07:44.828748-07:00,1005.6448364257812,10.718986,10718.986 +27595,2025-03-10T11:07:55.550731-07:00,1005.6729736328125,10.721983,10721.983 +27596,2025-03-10T11:08:06.272720-07:00,1005.6829833984375,10.721989,10721.989 +27597,2025-03-10T11:08:17.003803-07:00,1005.6829833984375,10.731083,10731.083 +27598,2025-03-10T11:08:27.718738-07:00,1005.6698608398438,10.714935,10714.935 +27599,2025-03-10T11:08:38.449543-07:00,1005.6763916015625,10.730805,10730.805 +27600,2025-03-10T11:08:49.169680-07:00,1005.6749877929688,10.720137,10720.137 +27601,2025-03-10T11:08:59.897271-07:00,1005.7028198242188,10.727591,10727.591 +27602,2025-03-10T11:09:10.613537-07:00,1005.6815795898438,10.716266,10716.266 +27603,2025-03-10T11:09:21.333548-07:00,1005.69482421875,10.720011,10720.011 +27604,2025-03-10T11:09:32.056617-07:00,1005.70654296875,10.723069,10723.069 +27605,2025-03-10T11:09:42.786561-07:00,1005.6702880859375,10.729944,10729.944 +27606,2025-03-10T11:09:53.507628-07:00,1005.6769409179688,10.721067,10721.067 +27607,2025-03-10T11:10:04.227636-07:00,1005.71142578125,10.720008,10720.008 +27608,2025-03-10T11:10:14.952718-07:00,1005.6769409179688,10.725082,10725.082 +27609,2025-03-10T11:10:25.674541-07:00,1005.6967163085938,10.721823,10721.823 +27610,2025-03-10T11:10:36.396635-07:00,1005.68359375,10.722094,10722.094 +27611,2025-03-10T11:10:47.114610-07:00,1005.6688842773438,10.717975,10717.975 +27612,2025-03-10T11:10:57.832567-07:00,1005.690185546875,10.717957,10717.957 +27613,2025-03-10T11:11:08.562599-07:00,1005.6849975585938,10.730032,10730.032 +27614,2025-03-10T11:11:19.287957-07:00,1005.6718139648438,10.725358,10725.358 +27615,2025-03-10T11:11:30.009540-07:00,1005.6473388671875,10.721583,10721.583 +27616,2025-03-10T11:11:40.734137-07:00,1005.634033203125,10.724597,10724.597 +27617,2025-03-10T11:11:51.453547-07:00,1005.6637573242188,10.71941,10719.41 +27618,2025-03-10T11:12:02.176722-07:00,1005.6292114257812,10.723175,10723.175 +27619,2025-03-10T11:12:12.901612-07:00,1005.6539306640625,10.72489,10724.89 +27620,2025-03-10T11:12:23.627543-07:00,1005.6408081054688,10.725931,10725.931 +27621,2025-03-10T11:12:34.345543-07:00,1005.6525268554688,10.718,10718.0 +27622,2025-03-10T11:12:45.069724-07:00,1005.634033203125,10.724181,10724.181 +27623,2025-03-10T11:12:55.791361-07:00,1005.6275024414062,10.721637,10721.637 +27624,2025-03-10T11:13:06.511612-07:00,1005.6590576171875,10.720251,10720.251 +27625,2025-03-10T11:13:17.232585-07:00,1005.6576538085938,10.720973,10720.973 +27626,2025-03-10T11:13:27.962923-07:00,1005.6295166015625,10.730338,10730.338 +27627,2025-03-10T11:13:38.687566-07:00,1005.6280517578125,10.724643,10724.643 +27628,2025-03-10T11:13:49.406686-07:00,1005.6280517578125,10.71912,10719.12 +27629,2025-03-10T11:14:00.135286-07:00,1005.6182861328125,10.7286,10728.6 +27630,2025-03-10T11:14:10.857755-07:00,1005.6234130859375,10.722469,10722.469 +27631,2025-03-10T11:14:21.581140-07:00,1005.6004028320312,10.723385,10723.385 +27632,2025-03-10T11:14:32.292535-07:00,1005.6334228515625,10.711395,10711.395 +27633,2025-03-10T11:14:43.017129-07:00,1005.6466674804688,10.724594,10724.594 +27634,2025-03-10T11:14:53.743977-07:00,1005.6041259765625,10.726848,10726.848 +27635,2025-03-10T11:15:04.468938-07:00,1005.6187744140625,10.724961,10724.961 +27636,2025-03-10T11:15:15.181571-07:00,1005.6305541992188,10.712633,10712.633 +27637,2025-03-10T11:15:25.910337-07:00,1005.6253662109375,10.728766,10728.766 +27638,2025-03-10T11:15:36.631547-07:00,1005.6239013671875,10.72121,10721.21 +27639,2025-03-10T11:15:47.348543-07:00,1005.6141357421875,10.716996,10716.996 +27640,2025-03-10T11:15:58.076597-07:00,1005.6074829101562,10.728054,10728.054 +27641,2025-03-10T11:16:08.797916-07:00,1005.6009521484375,10.721319,10721.319 +27642,2025-03-10T11:16:19.526760-07:00,1005.6074829101562,10.728844,10728.844 +27643,2025-03-10T11:16:30.250475-07:00,1005.617919921875,10.723715,10723.715 +27644,2025-03-10T11:16:40.973547-07:00,1005.617919921875,10.723072,10723.072 +27645,2025-03-10T11:16:51.688735-07:00,1005.59814453125,10.715188,10715.188 +27646,2025-03-10T11:17:02.412544-07:00,1005.6029663085938,10.723809,10723.809 +27647,2025-03-10T11:17:13.135705-07:00,1005.5963134765625,10.723161,10723.161 +27648,2025-03-10T11:17:23.864540-07:00,1005.5868530273438,10.728835,10728.835 +27649,2025-03-10T11:17:34.578760-07:00,1005.5963134765625,10.71422,10714.22 +27650,2025-03-10T11:17:45.301541-07:00,1005.5802612304688,10.722781,10722.781 +27651,2025-03-10T11:17:56.030730-07:00,1005.5850830078125,10.729189,10729.189 +27652,2025-03-10T11:18:06.760671-07:00,1005.5756225585938,10.729941,10729.941 +27653,2025-03-10T11:18:17.476577-07:00,1005.5822143554688,10.715906,10715.906 +27654,2025-03-10T11:18:28.207165-07:00,1005.60205078125,10.730588,10730.588 +27655,2025-03-10T11:18:38.925613-07:00,1005.5856323242188,10.718448,10718.448 +27656,2025-03-10T11:18:49.650849-07:00,1005.595947265625,10.725236,10725.236 +27657,2025-03-10T11:19:00.373575-07:00,1005.5761108398438,10.722726,10722.726 +27658,2025-03-10T11:19:11.097731-07:00,1005.6007690429688,10.724156,10724.156 +27659,2025-03-10T11:19:21.818598-07:00,1005.5927124023438,10.720867,10720.867 +27660,2025-03-10T11:19:32.538399-07:00,1005.5912475585938,10.719801,10719.801 +27661,2025-03-10T11:19:43.254535-07:00,1005.597900390625,10.716136,10716.136 +27662,2025-03-10T11:19:53.976591-07:00,1005.5714721679688,10.722056,10722.056 +27663,2025-03-10T11:20:04.701663-07:00,1005.584716796875,10.725072,10725.072 +27664,2025-03-10T11:20:15.423406-07:00,1005.578125,10.721743,10721.743 +27665,2025-03-10T11:20:26.144634-07:00,1005.5748291015625,10.721228,10721.228 +27666,2025-03-10T11:20:36.861721-07:00,1005.5697021484375,10.717087,10717.087 +27667,2025-03-10T11:20:47.591765-07:00,1005.584716796875,10.730044,10730.044 +27668,2025-03-10T11:20:58.307543-07:00,1005.5829467773438,10.715778,10715.778 +27669,2025-03-10T11:21:09.032863-07:00,1005.5895385742188,10.72532,10725.32 +27670,2025-03-10T11:21:19.759750-07:00,1005.6045532226562,10.726887,10726.887 +27671,2025-03-10T11:21:30.480545-07:00,1005.6177368164062,10.720795,10720.795 +27672,2025-03-10T11:21:41.206724-07:00,1005.611083984375,10.726179,10726.179 +27673,2025-03-10T11:21:51.923750-07:00,1005.611083984375,10.717026,10717.026 +27674,2025-03-10T11:22:02.639782-07:00,1005.611083984375,10.716032,10716.032 +27675,2025-03-10T11:22:13.367615-07:00,1005.611083984375,10.727833,10727.833 +27676,2025-03-10T11:22:24.093717-07:00,1005.6073608398438,10.726102,10726.102 +27677,2025-03-10T11:22:34.806543-07:00,1005.5927124023438,10.712826,10712.826 +27678,2025-03-10T11:22:45.532300-07:00,1005.578125,10.725757,10725.757 +27679,2025-03-10T11:22:56.254810-07:00,1005.5795288085938,10.72251,10722.51 +27680,2025-03-10T11:23:06.984896-07:00,1005.5663452148438,10.730086,10730.086 +27681,2025-03-10T11:23:17.703540-07:00,1005.5809326171875,10.718644,10718.644 +27682,2025-03-10T11:23:28.429775-07:00,1005.5875854492188,10.726235,10726.235 +27683,2025-03-10T11:23:39.143538-07:00,1005.6024780273438,10.713763,10713.763 +27684,2025-03-10T11:23:49.870712-07:00,1005.5795288085938,10.727174,10727.174 +27685,2025-03-10T11:24:00.583545-07:00,1005.5861206054688,10.712833,10712.833 +27686,2025-03-10T11:24:11.313942-07:00,1005.6007690429688,10.730397,10730.397 +27687,2025-03-10T11:24:22.035538-07:00,1005.5809326171875,10.721596,10721.596 +27688,2025-03-10T11:24:32.750720-07:00,1005.5596923828125,10.715182,10715.182 +27689,2025-03-10T11:24:43.470574-07:00,1005.5648193359375,10.719854,10719.854 +27690,2025-03-10T11:24:54.192623-07:00,1005.5451049804688,10.722049,10722.049 +27691,2025-03-10T11:25:04.911541-07:00,1005.5912475585938,10.718918,10718.918 +27692,2025-03-10T11:25:15.636896-07:00,1005.572998046875,10.725355,10725.355 +27693,2025-03-10T11:25:26.359897-07:00,1005.572998046875,10.723001,10723.001 +27694,2025-03-10T11:25:37.084759-07:00,1005.5384521484375,10.724862,10724.862 +27695,2025-03-10T11:25:47.809544-07:00,1005.5451049804688,10.724785,10724.785 +27696,2025-03-10T11:25:58.530745-07:00,1005.5516967773438,10.721201,10721.201 +27697,2025-03-10T11:26:09.252540-07:00,1005.5432739257812,10.721795,10721.795 +27698,2025-03-10T11:26:19.971735-07:00,1005.516845703125,10.719195,10719.195 +27699,2025-03-10T11:26:30.693547-07:00,1005.5301513671875,10.721812,10721.812 +27700,2025-03-10T11:26:41.411387-07:00,1005.5565795898438,10.71784,10717.84 +27701,2025-03-10T11:26:52.133541-07:00,1005.516845703125,10.722154,10722.154 +27702,2025-03-10T11:27:02.847568-07:00,1005.5234375,10.714027,10714.027 +27703,2025-03-10T11:27:13.577546-07:00,1005.5220336914062,10.729978,10729.978 +27704,2025-03-10T11:27:24.299910-07:00,1005.492431640625,10.722364,10722.364 +27705,2025-03-10T11:27:35.021540-07:00,1005.5007934570312,10.72163,10721.63 +27706,2025-03-10T11:27:45.737687-07:00,1005.5154418945312,10.716147,10716.147 +27707,2025-03-10T11:27:56.461569-07:00,1005.5007934570312,10.723882,10723.882 +27708,2025-03-10T11:28:07.176539-07:00,1005.4857788085938,10.71497,10714.97 +27709,2025-03-10T11:28:17.899844-07:00,1005.492431640625,10.723305,10723.305 +27710,2025-03-10T11:28:28.622567-07:00,1005.484375,10.722723,10722.723 +27711,2025-03-10T11:28:39.336734-07:00,1005.449951171875,10.714167,10714.167 +27712,2025-03-10T11:28:50.066571-07:00,1005.4678344726562,10.729837,10729.837 +27713,2025-03-10T11:29:00.788755-07:00,1005.46142578125,10.722184,10722.184 +27714,2025-03-10T11:29:11.510575-07:00,1005.449951171875,10.72182,10721.82 +27715,2025-03-10T11:29:22.235701-07:00,1005.4415893554688,10.725126,10725.126 +27716,2025-03-10T11:29:32.956571-07:00,1005.4202880859375,10.72087,10720.87 +27717,2025-03-10T11:29:43.671543-07:00,1005.4004516601562,10.714972,10714.972 +27718,2025-03-10T11:29:54.397904-07:00,1005.4335327148438,10.726361,10726.361 +27719,2025-03-10T11:30:05.118729-07:00,1005.3906860351562,10.720825,10720.825 +27720,2025-03-10T11:30:15.832693-07:00,1005.3925170898438,10.713964,10713.964 +27721,2025-03-10T11:30:26.556578-07:00,1005.3694458007812,10.723885,10723.885 +27722,2025-03-10T11:30:37.279540-07:00,1005.3746337890625,10.722962,10722.962 +27723,2025-03-10T11:30:47.999986-07:00,1005.3731079101562,10.720446,10720.446 +27724,2025-03-10T11:30:58.717539-07:00,1005.3817138671875,10.717553,10717.553 +27725,2025-03-10T11:31:09.446544-07:00,1005.3734130859375,10.729005,10729.005 +27726,2025-03-10T11:31:20.157578-07:00,1005.3771362304688,10.711034,10711.034 +27727,2025-03-10T11:31:30.886993-07:00,1005.3724975585938,10.729415,10729.415 +27728,2025-03-10T11:31:41.609538-07:00,1005.3790893554688,10.722545,10722.545 +27729,2025-03-10T11:31:52.324717-07:00,1005.3825073242188,10.715179,10715.179 +27730,2025-03-10T11:32:03.046543-07:00,1005.396240234375,10.721826,10721.826 +27731,2025-03-10T11:32:13.773799-07:00,1005.37890625,10.727256,10727.256 +27732,2025-03-10T11:32:24.487744-07:00,1005.400634765625,10.713945,10713.945 +27733,2025-03-10T11:32:35.207739-07:00,1005.3993530273438,10.719995,10719.995 +27734,2025-03-10T11:32:45.933542-07:00,1005.3504638671875,10.725803,10725.803 +27735,2025-03-10T11:32:56.653744-07:00,1005.3543701171875,10.720202,10720.202 +27736,2025-03-10T11:33:07.373543-07:00,1005.3663940429688,10.719799,10719.799 +27737,2025-03-10T11:33:18.095737-07:00,1005.3869018554688,10.722194,10722.194 +27738,2025-03-10T11:33:28.813804-07:00,1005.3873291015625,10.718067,10718.067 +27739,2025-03-10T11:33:39.531540-07:00,1005.3964233398438,10.717736,10717.736 +27740,2025-03-10T11:33:50.256989-07:00,1005.416748046875,10.725449,10725.449 +27741,2025-03-10T11:34:00.976779-07:00,1005.3890380859375,10.71979,10719.79 +27742,2025-03-10T11:34:11.691959-07:00,1005.40283203125,10.71518,10715.18 +27743,2025-03-10T11:34:22.406633-07:00,1005.4032592773438,10.714674,10714.674 +27744,2025-03-10T11:34:33.133607-07:00,1005.3756103515625,10.726974,10726.974 +27745,2025-03-10T11:34:43.853573-07:00,1005.4025268554688,10.719966,10719.966 +27746,2025-03-10T11:34:54.573497-07:00,1005.3945922851562,10.719924,10719.924 +27747,2025-03-10T11:35:05.286749-07:00,1005.3507080078125,10.713252,10713.252 +27748,2025-03-10T11:35:16.007172-07:00,1005.3591918945312,10.720423,10720.423 +27749,2025-03-10T11:35:26.721095-07:00,1005.3479614257812,10.713923,10713.923 +27750,2025-03-10T11:35:37.442549-07:00,1005.351318359375,10.721454,10721.454 +27751,2025-03-10T11:35:48.160543-07:00,1005.35986328125,10.717994,10717.994 +27752,2025-03-10T11:35:56.255854-07:00,1005.3222045898438,8.095311,8095.311 +27753,2025-03-10T11:35:58.881535-07:00,1005.3499755859375,2.625681,2625.681 +27754,2025-03-10T11:36:09.597743-07:00,1005.3523559570312,10.716208,10716.208 +27755,2025-03-10T11:36:20.315543-07:00,1005.330810546875,10.7178,10717.8 +27756,2025-03-10T11:36:31.039727-07:00,1005.3261108398438,10.724184,10724.184 +27757,2025-03-10T11:36:41.755007-07:00,1005.3656005859375,10.71528,10715.28 +27758,2025-03-10T11:36:52.472537-07:00,1005.37744140625,10.71753,10717.53 +27759,2025-03-10T11:37:03.200543-07:00,1005.3412475585938,10.728006,10728.006 +27760,2025-03-10T11:37:13.915570-07:00,1005.3397827148438,10.715027,10715.027 +27761,2025-03-10T11:37:35.354601-07:00,1005.3382568359375,21.439031,21439.031 +27762,2025-03-10T11:37:46.080543-07:00,1005.3087768554688,10.725942,10725.942 +27763,2025-03-10T11:37:56.801568-07:00,1005.3138427734375,10.721025,10721.025 +27764,2025-03-10T11:38:07.516725-07:00,1005.3087768554688,10.715157,10715.157 +27765,2025-03-10T11:38:18.234747-07:00,1005.2857055664062,10.718022,10718.022 +27766,2025-03-10T11:38:28.960541-07:00,1005.3072509765625,10.725794,10725.794 +27767,2025-03-10T11:38:39.684669-07:00,1005.279052734375,10.724128,10724.128 +27768,2025-03-10T11:38:50.406724-07:00,1005.251220703125,10.722055,10722.055 +27769,2025-03-10T11:39:01.116542-07:00,1005.2362670898438,10.709818,10709.818 +27770,2025-03-10T11:39:11.843764-07:00,1005.2725219726562,10.727222,10727.222 +27771,2025-03-10T11:39:22.566616-07:00,1005.2559204101562,10.722852,10722.852 +27772,2025-03-10T11:39:33.284736-07:00,1005.2544555664062,10.71812,10718.12 +27773,2025-03-10T11:39:44.001577-07:00,1005.2742309570312,10.716841,10716.841 +27774,2025-03-10T11:39:54.725945-07:00,1005.2676391601562,10.724368,10724.368 +27775,2025-03-10T11:40:05.442567-07:00,1005.2625122070312,10.716622,10716.622 +27776,2025-03-10T11:40:16.170857-07:00,1005.2493896484375,10.72829,10728.29 +27777,2025-03-10T11:40:26.886543-07:00,1005.2737426757812,10.715686,10715.686 +27778,2025-03-10T11:40:37.615716-07:00,1005.2591552734375,10.729173,10729.173 +27779,2025-03-10T11:40:48.333537-07:00,1005.2525024414062,10.717821,10717.821 +27780,2025-03-10T11:40:59.053679-07:00,1005.3015747070312,10.720142,10720.142 +27781,2025-03-10T11:41:09.772741-07:00,1005.2672119140625,10.719062,10719.062 +27782,2025-03-10T11:41:20.493838-07:00,1005.2849731445312,10.721097,10721.097 +27783,2025-03-10T11:41:31.217541-07:00,1005.2402954101562,10.723703,10723.703 +27784,2025-03-10T11:41:41.939475-07:00,1005.2779541015625,10.721934,10721.934 +27785,2025-03-10T11:41:52.664692-07:00,1005.2679443359375,10.725217,10725.217 +27786,2025-03-10T11:42:03.387083-07:00,1005.2628173828125,10.722391,10722.391 +27787,2025-03-10T11:42:14.105604-07:00,1005.2445068359375,10.718521,10718.521 +27788,2025-03-10T11:42:24.829721-07:00,1005.2263793945312,10.724117,10724.117 +27789,2025-03-10T11:42:35.550543-07:00,1005.2557983398438,10.720822,10720.822 +27790,2025-03-10T11:42:46.272938-07:00,1005.2081298828125,10.722395,10722.395 +27791,2025-03-10T11:42:57.004973-07:00,1005.2457885742188,10.732035,10732.035 +27792,2025-03-10T11:43:07.718715-07:00,1005.2340698242188,10.713742,10713.742 +27793,2025-03-10T11:43:18.447540-07:00,1005.2650756835938,10.728825,10728.825 +27794,2025-03-10T11:43:29.162932-07:00,1005.2338256835938,10.715392,10715.392 +27795,2025-03-10T11:43:39.892701-07:00,1005.25830078125,10.729769,10729.769 +27796,2025-03-10T11:43:50.612668-07:00,1005.2450561523438,10.719967,10719.967 +27797,2025-03-10T11:44:01.336697-07:00,1005.2084350585938,10.724029,10724.029 +27798,2025-03-10T11:44:12.059650-07:00,1005.2362670898438,10.722953,10722.953 +27799,2025-03-10T11:44:22.781536-07:00,1005.2262573242188,10.721886,10721.886 +27800,2025-03-10T11:44:33.500807-07:00,1005.2243041992188,10.719271,10719.271 +27801,2025-03-10T11:44:44.228749-07:00,1005.2323608398438,10.727942,10727.942 +27802,2025-03-10T11:44:54.950536-07:00,1005.2157592773438,10.721787,10721.787 +27803,2025-03-10T11:45:05.676731-07:00,1005.2106323242188,10.726195,10726.195 +27804,2025-03-10T11:45:16.391799-07:00,1005.2284545898438,10.715068,10715.068 +27805,2025-03-10T11:45:27.117981-07:00,1005.2118530273438,10.726182,10726.182 +27806,2025-03-10T11:45:37.835569-07:00,1005.2001342773438,10.717588,10717.588 +27807,2025-03-10T11:45:48.557543-07:00,1005.1539306640625,10.721974,10721.974 +27808,2025-03-10T11:45:59.286544-07:00,1005.2098999023438,10.729001,10729.001 +27809,2025-03-10T11:46:10.008830-07:00,1005.1995849609375,10.722286,10722.286 +27810,2025-03-10T11:46:20.736572-07:00,1005.1763916015625,10.727742,10727.742 +27811,2025-03-10T11:46:31.457719-07:00,1005.1646728515625,10.721147,10721.147 +27812,2025-03-10T11:46:42.174727-07:00,1005.1663818359375,10.717008,10717.008 +27813,2025-03-10T11:46:52.902725-07:00,1005.1578979492188,10.727998,10727.998 +27814,2025-03-10T11:47:03.623586-07:00,1005.1527099609375,10.720861,10720.861 +27815,2025-03-10T11:47:14.344712-07:00,1005.1542358398438,10.721126,10721.126 +27816,2025-03-10T11:47:25.075748-07:00,1005.1687622070312,10.731036,10731.036 +27817,2025-03-10T11:47:35.796060-07:00,1005.1243896484375,10.720312,10720.312 +27818,2025-03-10T11:47:46.518541-07:00,1005.1720581054688,10.722481,10722.481 +27819,2025-03-10T11:47:57.237744-07:00,1005.1503295898438,10.719203,10719.203 +27820,2025-03-10T11:48:07.970664-07:00,1005.1403198242188,10.73292,10732.92 +27821,2025-03-10T11:48:18.690107-07:00,1005.149658203125,10.719443,10719.443 +27822,2025-03-10T11:48:29.417540-07:00,1005.12939453125,10.727433,10727.433 +27823,2025-03-10T11:48:40.142744-07:00,1005.1392211914062,10.725204,10725.204 +27824,2025-03-10T11:48:50.860567-07:00,1005.1372680664062,10.717823,10717.823 +27825,2025-03-10T11:49:01.586539-07:00,1005.1235961914062,10.725972,10725.972 +27826,2025-03-10T11:49:12.310714-07:00,1005.10693359375,10.724175,10724.175 +27827,2025-03-10T11:49:23.034565-07:00,1005.1328125,10.723851,10723.851 +27828,2025-03-10T11:49:33.766539-07:00,1005.1062622070312,10.731974,10731.974 +27829,2025-03-10T11:49:44.483544-07:00,1005.1079711914062,10.717005,10717.005 +27830,2025-03-10T11:49:55.214436-07:00,1005.1221313476562,10.730892,10730.892 +27831,2025-03-10T11:50:05.933567-07:00,1005.110595703125,10.719131,10719.131 +27832,2025-03-10T11:50:16.667611-07:00,1005.088623046875,10.734044,10734.044 +27833,2025-03-10T11:50:27.395922-07:00,1005.0932006835938,10.728311,10728.311 +27834,2025-03-10T11:50:38.115544-07:00,1005.096435546875,10.719622,10719.622 +27835,2025-03-10T11:50:48.845778-07:00,1005.107666015625,10.730234,10730.234 +27836,2025-03-10T11:50:59.567605-07:00,1005.0858764648438,10.721827,10721.827 +27837,2025-03-10T11:51:10.300541-07:00,1005.0956420898438,10.732936,10732.936 +27838,2025-03-10T11:51:21.024809-07:00,1005.0801391601562,10.724268,10724.268 +27839,2025-03-10T11:51:31.741772-07:00,1005.0753173828125,10.716963,10716.963 +27840,2025-03-10T11:51:42.473710-07:00,1005.0535278320312,10.731938,10731.938 +27841,2025-03-10T11:51:53.199542-07:00,1005.06298828125,10.725832,10725.832 +27842,2025-03-10T11:52:03.916660-07:00,1005.080810546875,10.717118,10717.118 +27843,2025-03-10T11:52:14.646737-07:00,1005.0628051757812,10.730077,10730.077 +27844,2025-03-10T11:52:25.370807-07:00,1005.05908203125,10.72407,10724.07 +27845,2025-03-10T11:52:36.097543-07:00,1005.0556030273438,10.726736,10726.736 +27846,2025-03-10T11:52:46.828577-07:00,1005.0848999023438,10.731034,10731.034 +27847,2025-03-10T11:52:57.556558-07:00,1005.06689453125,10.727981,10727.981 +27848,2025-03-10T11:53:08.262330-07:00,1005.0648193359375,10.705772,10705.772 +27849,2025-03-10T11:53:18.992328-07:00,1005.0861206054688,10.729998,10729.998 +27850,2025-03-10T11:53:29.713330-07:00,1005.1024780273438,10.721002,10721.002 +27851,2025-03-10T11:53:40.446536-07:00,1005.0723266601562,10.733206,10733.206 +27852,2025-03-10T11:53:51.165502-07:00,1005.0703735351562,10.718966,10718.966 +27853,2025-03-10T11:54:01.899356-07:00,1005.037353515625,10.733854,10733.854 +27854,2025-03-10T11:54:12.626641-07:00,1005.0750122070312,10.727285,10727.285 +27855,2025-03-10T11:54:23.346325-07:00,1005.05517578125,10.719684,10719.684 +27856,2025-03-10T11:54:34.078333-07:00,1005.045166015625,10.732008,10732.008 +27857,2025-03-10T11:54:44.801796-07:00,1005.06640625,10.723463,10723.463 +27858,2025-03-10T11:54:55.520669-07:00,1005.0413818359375,10.718873,10718.873 +27859,2025-03-10T11:55:06.250588-07:00,1005.0413818359375,10.729919,10729.919 +27860,2025-03-10T11:55:16.968329-07:00,1005.0578002929688,10.717741,10717.741 +27861,2025-03-10T11:55:27.689709-07:00,1005.043212890625,10.72138,10721.38 +27862,2025-03-10T11:55:38.414330-07:00,1005.041259765625,10.724621,10724.621 +27863,2025-03-10T11:55:49.146570-07:00,1005.0756225585938,10.73224,10732.24 +27864,2025-03-10T11:55:59.869325-07:00,1005.0426635742188,10.722755,10722.755 +27865,2025-03-10T11:56:10.588403-07:00,1005.0491943359375,10.719078,10719.078 +27866,2025-03-10T11:56:21.321497-07:00,1005.0521240234375,10.733094,10733.094 +27867,2025-03-10T11:56:32.046556-07:00,1005.0374755859375,10.725059,10725.059 +27868,2025-03-10T11:56:42.771885-07:00,1005.0176391601562,10.725329,10725.329 +27869,2025-03-10T11:56:53.490326-07:00,1005.0256958007812,10.718441,10718.441 +27870,2025-03-10T11:57:04.221409-07:00,1005.0242309570312,10.731083,10731.083 +27871,2025-03-10T11:57:14.937408-07:00,1005.0340576171875,10.715999,10715.999 +27872,2025-03-10T11:57:25.666778-07:00,1005.0454711914062,10.72937,10729.37 +27873,2025-03-10T11:57:36.390337-07:00,1005.0125122070312,10.723559,10723.559 +27874,2025-03-10T11:57:47.111330-07:00,1005.0242309570312,10.720993,10720.993 +27875,2025-03-10T11:57:57.835568-07:00,1005.005859375,10.724238,10724.238 +27876,2025-03-10T11:58:08.572327-07:00,1005.0208740234375,10.736759,10736.759 +27877,2025-03-10T11:58:19.293796-07:00,1005.0010375976562,10.721469,10721.469 +27878,2025-03-10T11:58:30.021533-07:00,1005.0142211914062,10.727737,10727.737 +27879,2025-03-10T11:58:40.738391-07:00,1004.994384765625,10.716858,10716.858 +27880,2025-03-10T11:58:51.463328-07:00,1005.0025024414062,10.724937,10724.937 +27881,2025-03-10T11:59:02.186549-07:00,1005.0025024414062,10.723221,10723.221 +27882,2025-03-10T11:59:12.918989-07:00,1004.9760131835938,10.73244,10732.44 +27883,2025-03-10T11:59:23.634328-07:00,1005.0025024414062,10.715339,10715.339 +27884,2025-03-10T11:59:34.360630-07:00,1005.0025024414062,10.726302,10726.302 +27885,2025-03-10T11:59:45.091575-07:00,1004.9906005859375,10.730945,10730.945 +27886,2025-03-10T11:59:55.815459-07:00,1004.9972534179688,10.723884,10723.884 +27887,2025-03-10T12:00:06.540327-07:00,1004.9906005859375,10.724868,10724.868 +27888,2025-03-10T12:00:17.257513-07:00,1004.982666015625,10.717186,10717.186 +27889,2025-03-10T12:00:27.979670-07:00,1004.995849609375,10.722157,10722.157 +27890,2025-03-10T12:00:38.712238-07:00,1004.9774780273438,10.732568,10732.568 +27891,2025-03-10T12:00:49.427327-07:00,1004.9760131835938,10.715089,10715.089 +27892,2025-03-10T12:01:00.155331-07:00,1004.9562377929688,10.728004,10728.004 +27893,2025-03-10T12:01:10.879687-07:00,1004.9429931640625,10.724356,10724.356 +27894,2025-03-10T12:01:21.601365-07:00,1004.9760131835938,10.721678,10721.678 +27895,2025-03-10T12:01:32.324328-07:00,1004.9562377929688,10.722963,10722.963 +27896,2025-03-10T12:01:43.046330-07:00,1004.9562377929688,10.722002,10722.002 +27897,2025-03-10T12:01:53.769825-07:00,1004.974609375,10.723495,10723.495 +27898,2025-03-10T12:02:04.494147-07:00,1004.9481201171875,10.724322,10724.322 +27899,2025-03-10T12:02:15.217503-07:00,1004.9547729492188,10.723356,10723.356 +27900,2025-03-10T12:02:25.937330-07:00,1004.9481201171875,10.719827,10719.827 +27901,2025-03-10T12:02:36.666734-07:00,1004.96142578125,10.729404,10729.404 +27902,2025-03-10T12:02:47.381328-07:00,1004.995849609375,10.714594,10714.594 +27903,2025-03-10T12:02:58.105516-07:00,1004.9547729492188,10.724188,10724.188 +27904,2025-03-10T12:03:08.825406-07:00,1004.9332275390625,10.71989,10719.89 +27905,2025-03-10T12:03:19.553517-07:00,1004.959716796875,10.728111,10728.111 +27906,2025-03-10T12:03:30.275329-07:00,1004.9317016601562,10.721812,10721.812 +27907,2025-03-10T12:03:40.994538-07:00,1004.9728393554688,10.719209,10719.209 +27908,2025-03-10T12:03:51.721535-07:00,1004.959716796875,10.726997,10726.997 +27909,2025-03-10T12:04:02.444344-07:00,1004.9581909179688,10.722809,10722.809 +27910,2025-03-10T12:04:13.164860-07:00,1004.9581909179688,10.720516,10720.516 +27911,2025-03-10T12:04:23.883550-07:00,1004.9450073242188,10.71869,10718.69 +27912,2025-03-10T12:04:34.611634-07:00,1004.9515380859375,10.728084,10728.084 +27913,2025-03-10T12:04:45.331665-07:00,1004.971435546875,10.720031,10720.031 +27914,2025-03-10T12:04:56.040944-07:00,1004.9728393554688,10.709279,10709.279 +27915,2025-03-10T12:05:06.762931-07:00,1004.984619140625,10.721987,10721.987 +27916,2025-03-10T12:05:17.490600-07:00,1004.969970703125,10.727669,10727.669 +27917,2025-03-10T12:05:28.207961-07:00,1004.9581909179688,10.717361,10717.361 +27918,2025-03-10T12:05:38.929330-07:00,1004.9515380859375,10.721369,10721.369 +27919,2025-03-10T12:05:49.648325-07:00,1004.9384155273438,10.718995,10718.995 +27920,2025-03-10T12:06:00.365330-07:00,1004.959716796875,10.717005,10717.005 +27921,2025-03-10T12:06:11.076545-07:00,1004.9302978515625,10.711215,10711.215 +27922,2025-03-10T12:06:21.800107-07:00,1004.9501342773438,10.723562,10723.562 +27923,2025-03-10T12:06:32.518329-07:00,1004.9501342773438,10.718222,10718.222 +27924,2025-03-10T12:06:43.235273-07:00,1004.943603515625,10.716944,10716.944 +27925,2025-03-10T12:06:53.949741-07:00,1004.9685668945312,10.714468,10714.468 +27926,2025-03-10T12:07:04.677167-07:00,1004.9751586914062,10.727426,10727.426 +27927,2025-03-10T12:07:15.395330-07:00,1004.9912719726562,10.718163,10718.163 +27928,2025-03-10T12:07:26.110329-07:00,1004.966796875,10.714999,10714.999 +27929,2025-03-10T12:07:36.832746-07:00,1004.955322265625,10.722417,10722.417 +27930,2025-03-10T12:07:47.547323-07:00,1004.96533203125,10.714577,10714.577 +27931,2025-03-10T12:07:58.264506-07:00,1004.95068359375,10.717183,10717.183 +27932,2025-03-10T12:08:08.987404-07:00,1004.96533203125,10.722898,10722.898 +27933,2025-03-10T12:08:19.704081-07:00,1004.9375,10.716677,10716.677 +27934,2025-03-10T12:08:30.428324-07:00,1004.9556274414062,10.724243,10724.243 +27935,2025-03-10T12:08:41.144245-07:00,1004.9820556640625,10.715921,10715.921 +27936,2025-03-10T12:08:51.857502-07:00,1004.95263671875,10.713257,10713.257 +27937,2025-03-10T12:09:02.577506-07:00,1004.947509765625,10.720004,10720.004 +27938,2025-03-10T12:09:13.296515-07:00,1004.9923706054688,10.719009,10719.009 +27939,2025-03-10T12:09:24.015328-07:00,1004.9791259765625,10.718813,10718.813 +27940,2025-03-10T12:09:34.735497-07:00,1004.95751953125,10.720169,10720.169 +27941,2025-03-10T12:09:45.459493-07:00,1004.95751953125,10.723996,10723.996 +27942,2025-03-10T12:09:56.170574-07:00,1004.9724731445312,10.711081,10711.081 +27943,2025-03-10T12:10:06.895325-07:00,1004.9561157226562,10.724751,10724.751 +27944,2025-03-10T12:10:17.608327-07:00,1004.950927734375,10.713002,10713.002 +27945,2025-03-10T12:10:28.335385-07:00,1004.9627075195312,10.727058,10727.058 +27946,2025-03-10T12:10:39.050656-07:00,1004.9971923828125,10.715271,10715.271 +27947,2025-03-10T12:10:49.764513-07:00,1004.9693603515625,10.713857,10713.857 +27948,2025-03-10T12:11:00.483356-07:00,1004.937744140625,10.718843,10718.843 +27949,2025-03-10T12:11:11.201587-07:00,1004.9414672851562,10.718231,10718.231 +27950,2025-03-10T12:11:21.915500-07:00,1004.934814453125,10.713913,10713.913 +27951,2025-03-10T12:11:32.639328-07:00,1004.9282836914062,10.723828,10723.828 +27952,2025-03-10T12:11:43.350504-07:00,1004.9296875,10.711176,10711.176 +27953,2025-03-10T12:11:54.076358-07:00,1004.9296875,10.725854,10725.854 +27954,2025-03-10T12:12:04.797675-07:00,1004.90185546875,10.721317,10721.317 +27955,2025-03-10T12:12:15.507835-07:00,1004.919921875,10.71016,10710.16 +27956,2025-03-10T12:12:26.235492-07:00,1004.90673828125,10.727657,10727.657 +27957,2025-03-10T12:12:36.946418-07:00,1004.8934326171875,10.710926,10710.926 +27958,2025-03-10T12:12:47.670330-07:00,1004.9132690429688,10.723912,10723.912 +27959,2025-03-10T12:12:58.381373-07:00,1004.898681640625,10.711043,10711.043 +27960,2025-03-10T12:13:09.106322-07:00,1004.884033203125,10.724949,10724.949 +27961,2025-03-10T12:13:19.820498-07:00,1004.897216796875,10.714176,10714.176 +27962,2025-03-10T12:13:30.543330-07:00,1004.923583984375,10.722832,10722.832 +27963,2025-03-10T12:13:41.260508-07:00,1004.8920288085938,10.717178,10717.178 +27964,2025-03-10T12:13:51.985327-07:00,1004.90234375,10.724819,10724.819 +27965,2025-03-10T12:14:02.706438-07:00,1004.890625,10.721111,10721.111 +27966,2025-03-10T12:14:13.421393-07:00,1004.8759155273438,10.714955,10714.955 +27967,2025-03-10T12:14:24.147725-07:00,1004.846435546875,10.726332,10726.332 +27968,2025-03-10T12:14:34.871356-07:00,1004.8742065429688,10.723631,10723.631 +27969,2025-03-10T12:14:45.588515-07:00,1004.8742065429688,10.717159,10717.159 +27970,2025-03-10T12:14:56.309330-07:00,1004.86767578125,10.720815,10720.815 +27971,2025-03-10T12:15:07.028563-07:00,1004.8892211914062,10.719233,10719.233 +27972,2025-03-10T12:15:17.745555-07:00,1004.8529663085938,10.716992,10716.992 +27973,2025-03-10T12:15:28.467473-07:00,1004.8515625,10.721918,10721.918 +27974,2025-03-10T12:15:39.194095-07:00,1004.8742065429688,10.726622,10726.622 +27975,2025-03-10T12:15:49.912445-07:00,1004.8397827148438,10.71835,10718.35 +27976,2025-03-10T12:16:00.635363-07:00,1004.869384765625,10.722918,10722.918 +27977,2025-03-10T12:16:11.350325-07:00,1004.858154296875,10.714962,10714.962 +27978,2025-03-10T12:16:22.075505-07:00,1004.849853515625,10.72518,10725.18 +27979,2025-03-10T12:16:32.802354-07:00,1004.8449096679688,10.726849,10726.849 +27980,2025-03-10T12:16:43.526329-07:00,1004.849853515625,10.723975,10723.975 +27981,2025-03-10T12:16:54.244567-07:00,1004.8167114257812,10.718238,10718.238 +27982,2025-03-10T12:17:15.686463-07:00,1004.8233642578125,21.441896,21441.896 +27983,2025-03-10T12:17:26.409471-07:00,1004.8233642578125,10.723008,10723.008 +27984,2025-03-10T12:17:37.129328-07:00,1004.7988891601562,10.719857,10719.857 +27985,2025-03-10T12:17:47.849330-07:00,1004.8365478515625,10.720002,10720.002 +27986,2025-03-10T12:17:58.566572-07:00,1004.849853515625,10.717242,10717.242 +27987,2025-03-10T12:18:09.283521-07:00,1004.8417358398438,10.716949,10716.949 +27988,2025-03-10T12:18:20.007325-07:00,1004.838623046875,10.723804,10723.804 +27989,2025-03-10T12:18:30.725592-07:00,1004.7857666015625,10.718267,10718.267 +27990,2025-03-10T12:18:41.447450-07:00,1004.8270874023438,10.721858,10721.858 +27991,2025-03-10T12:18:52.171522-07:00,1004.8139038085938,10.724072,10724.072 +27992,2025-03-10T12:19:02.891327-07:00,1004.8187255859375,10.719805,10719.805 +27993,2025-03-10T12:19:13.611515-07:00,1004.7843017578125,10.720188,10720.188 +27994,2025-03-10T12:19:24.330581-07:00,1004.7843017578125,10.719066,10719.066 +27995,2025-03-10T12:19:35.058512-07:00,1004.7810668945312,10.727931,10727.931 +27996,2025-03-10T12:19:45.774333-07:00,1004.7876586914062,10.715821,10715.821 +27997,2025-03-10T12:19:56.494204-07:00,1004.7678833007812,10.719871,10719.871 +27998,2025-03-10T12:20:07.214501-07:00,1004.7929077148438,10.720297,10720.297 +27999,2025-03-10T12:20:17.934325-07:00,1004.7452392578125,10.719824,10719.824 +28000,2025-03-10T12:20:28.656326-07:00,1004.7796630859375,10.722001,10722.001 +28001,2025-03-10T12:20:39.369916-07:00,1004.7664794921875,10.71359,10713.59 +28002,2025-03-10T12:20:50.096763-07:00,1004.7320556640625,10.726847,10726.847 +28003,2025-03-10T12:21:00.811531-07:00,1004.717041015625,10.714768,10714.768 +28004,2025-03-10T12:21:11.526497-07:00,1004.717041015625,10.714966,10714.966 +28005,2025-03-10T12:21:22.247381-07:00,1004.7532958984375,10.720884,10720.884 +28006,2025-03-10T12:21:32.974037-07:00,1004.71875,10.726656,10726.656 +28007,2025-03-10T12:21:43.686406-07:00,1004.7056274414062,10.712369,10712.369 +28008,2025-03-10T12:21:54.414519-07:00,1004.698974609375,10.728113,10728.113 +28009,2025-03-10T12:22:05.128333-07:00,1004.67919921875,10.713814,10713.814 +28010,2025-03-10T12:22:15.853471-07:00,1004.7056274414062,10.725138,10725.138 +28011,2025-03-10T12:22:26.574326-07:00,1004.6693725585938,10.720855,10720.855 +28012,2025-03-10T12:22:37.289725-07:00,1004.7056274414062,10.715399,10715.399 +28013,2025-03-10T12:22:48.009502-07:00,1004.6906127929688,10.719777,10719.777 +28014,2025-03-10T12:22:58.729072-07:00,1004.689208984375,10.71957,10719.57 +28015,2025-03-10T12:23:09.449549-07:00,1004.6642456054688,10.720477,10720.477 +28016,2025-03-10T12:23:20.172401-07:00,1004.6561889648438,10.722852,10722.852 +28017,2025-03-10T12:23:30.892724-07:00,1004.689208984375,10.720323,10720.323 +28018,2025-03-10T12:23:41.613328-07:00,1004.66796875,10.720604,10720.604 +28019,2025-03-10T12:23:52.327529-07:00,1004.664794921875,10.714201,10714.201 +28020,2025-03-10T12:24:03.053336-07:00,1004.673095703125,10.725807,10725.807 +28021,2025-03-10T12:24:13.776403-07:00,1004.67138671875,10.723067,10723.067 +28022,2025-03-10T12:24:24.490464-07:00,1004.664794921875,10.714061,10714.061 +28023,2025-03-10T12:24:35.210993-07:00,1004.6581420898438,10.720529,10720.529 +28024,2025-03-10T12:24:45.934331-07:00,1004.6765747070312,10.723338,10723.338 +28025,2025-03-10T12:24:56.651329-07:00,1004.653564453125,10.716998,10716.998 +28026,2025-03-10T12:25:07.370546-07:00,1004.63232421875,10.719217,10719.217 +28027,2025-03-10T12:25:18.101507-07:00,1004.64404296875,10.730961,10730.961 +28028,2025-03-10T12:25:28.823328-07:00,1004.6837768554688,10.721821,10721.821 +28029,2025-03-10T12:25:39.538328-07:00,1004.6461181640625,10.715,10715.0 +28030,2025-03-10T12:25:50.266534-07:00,1004.63623046875,10.728206,10728.206 +28031,2025-03-10T12:26:00.982349-07:00,1004.6348266601562,10.715815,10715.815 +28032,2025-03-10T12:26:11.708320-07:00,1004.6434326171875,10.725971,10725.971 +28033,2025-03-10T12:26:22.429518-07:00,1004.6632690429688,10.721198,10721.198 +28034,2025-03-10T12:26:23.413676-07:00,1004.6402587890625,0.984158,984.158 +28035,2025-03-10T12:26:33.152508-07:00,1004.6718139648438,9.738832,9738.832 +28036,2025-03-10T12:26:43.868571-07:00,1004.6459350585938,10.716063,10716.063 +28037,2025-03-10T12:26:54.590326-07:00,1004.6513061523438,10.721755,10721.755 +28038,2025-03-10T12:27:05.325083-07:00,1004.6320190429688,10.734757,10734.757 +28039,2025-03-10T12:27:16.042326-07:00,1004.62939453125,10.717243,10717.243 +28040,2025-03-10T12:27:26.765734-07:00,1004.628173828125,10.723408,10723.408 +28041,2025-03-10T12:27:37.488330-07:00,1004.6519775390625,10.722596,10722.596 +28042,2025-03-10T12:27:48.203505-07:00,1004.6492309570312,10.715175,10715.175 +28043,2025-03-10T12:27:58.926451-07:00,1004.6400146484375,10.722946,10722.946 +28044,2025-03-10T12:28:09.640459-07:00,1004.6505737304688,10.714008,10714.008 +28045,2025-03-10T12:28:20.364330-07:00,1004.6312255859375,10.723871,10723.871 +28046,2025-03-10T12:28:31.086614-07:00,1004.6564331054688,10.722284,10722.284 +28047,2025-03-10T12:28:41.815328-07:00,1004.66357421875,10.728714,10728.714 +28048,2025-03-10T12:28:52.539431-07:00,1004.6640625,10.724103,10724.103 +28049,2025-03-10T12:29:03.254587-07:00,1004.661376953125,10.715156,10715.156 +28050,2025-03-10T12:29:13.979439-07:00,1004.6303100585938,10.724852,10724.852 +28051,2025-03-10T12:29:24.704327-07:00,1004.625732421875,10.724888,10724.888 +28052,2025-03-10T12:29:35.426503-07:00,1004.5917358398438,10.722176,10722.176 +28053,2025-03-10T12:29:46.147355-07:00,1004.626708984375,10.720852,10720.852 +28054,2025-03-10T12:29:56.880849-07:00,1004.58251953125,10.733494,10733.494 +28055,2025-03-10T12:30:07.599327-07:00,1004.5910034179688,10.718478,10718.478 +28056,2025-03-10T12:30:18.324330-07:00,1004.57470703125,10.725003,10725.003 +28057,2025-03-10T12:30:29.056747-07:00,1004.5648193359375,10.732417,10732.417 +28058,2025-03-10T12:30:39.774570-07:00,1004.57373046875,10.717823,10717.823 +28059,2025-03-10T12:30:50.500504-07:00,1004.5934448242188,10.725934,10725.934 +28060,2025-03-10T12:31:01.223333-07:00,1004.5704956054688,10.722829,10722.829 +28061,2025-03-10T12:31:11.951580-07:00,1004.5491943359375,10.728247,10728.247 +28062,2025-03-10T12:31:22.670327-07:00,1004.5446166992188,10.718747,10718.747 +28063,2025-03-10T12:31:33.389511-07:00,1004.5494384765625,10.719184,10719.184 +28064,2025-03-10T12:31:44.112423-07:00,1004.5296630859375,10.722912,10722.912 +28065,2025-03-10T12:31:54.845582-07:00,1004.5348510742188,10.733159,10733.159 +28066,2025-03-10T12:32:05.566329-07:00,1004.5399780273438,10.720747,10720.747 +28067,2025-03-10T12:32:16.297492-07:00,1004.5479736328125,10.731163,10731.163 +28068,2025-03-10T12:32:27.017733-07:00,1004.5348510742188,10.720241,10720.241 +28069,2025-03-10T12:32:37.744401-07:00,1004.5494384765625,10.726668,10726.668 +28070,2025-03-10T12:32:48.471492-07:00,1004.5427856445312,10.727091,10727.091 +28071,2025-03-10T12:32:59.195330-07:00,1004.5296630859375,10.723838,10723.838 +28072,2025-03-10T12:33:09.922506-07:00,1004.5197143554688,10.727176,10727.176 +28073,2025-03-10T12:33:20.648512-07:00,1004.5276489257812,10.726006,10726.006 +28074,2025-03-10T12:33:31.376399-07:00,1004.5262451171875,10.727887,10727.887 +28075,2025-03-10T12:33:42.100111-07:00,1004.5078735351562,10.723712,10723.712 +28076,2025-03-10T12:33:52.820325-07:00,1004.5257568359375,10.720214,10720.214 +28077,2025-03-10T12:34:03.554200-07:00,1004.5421752929688,10.733875,10733.875 +28078,2025-03-10T12:34:14.280674-07:00,1004.5355224609375,10.726474,10726.474 +28079,2025-03-10T12:34:24.999406-07:00,1004.5252075195312,10.718732,10718.732 +28080,2025-03-10T12:34:35.731355-07:00,1004.5218505859375,10.731949,10731.949 +28081,2025-03-10T12:34:46.448530-07:00,1004.5349731445312,10.717175,10717.175 +28082,2025-03-10T12:34:57.179639-07:00,1004.5232543945312,10.731109,10731.109 +28083,2025-03-10T12:35:07.902328-07:00,1004.5410766601562,10.722689,10722.689 +28084,2025-03-10T12:35:18.636337-07:00,1004.5052490234375,10.734009,10734.009 +28085,2025-03-10T12:35:29.361327-07:00,1004.5325927734375,10.72499,10724.99 +28086,2025-03-10T12:35:40.092331-07:00,1004.5409545898438,10.731004,10731.004 +28087,2025-03-10T12:35:50.816512-07:00,1004.5357666015625,10.724181,10724.181 +28088,2025-03-10T12:36:01.545654-07:00,1004.5257568359375,10.729142,10729.142 +28089,2025-03-10T12:36:12.264483-07:00,1004.5432739257812,10.718829,10718.829 +28090,2025-03-10T12:36:22.999390-07:00,1004.5479736328125,10.734907,10734.907 +28091,2025-03-10T12:36:33.724323-07:00,1004.53466796875,10.724933,10724.933 +28092,2025-03-10T12:36:44.450561-07:00,1004.5279541015625,10.726238,10726.238 +28093,2025-03-10T12:36:55.179767-07:00,1004.5704956054688,10.729206,10729.206 +28094,2025-03-10T12:37:05.911402-07:00,1004.5259399414062,10.731635,10731.635 +28095,2025-03-10T12:37:27.363540-07:00,1004.5349731445312,21.452138,21452.138 +28096,2025-03-10T12:37:38.085326-07:00,1004.5513305664062,10.721786,10721.786 +28097,2025-03-10T12:37:48.814327-07:00,1004.5413208007812,10.729001,10729.001 +28098,2025-03-10T12:37:59.537509-07:00,1004.5376586914062,10.723182,10723.182 +28099,2025-03-10T12:38:10.257541-07:00,1004.540771484375,10.720032,10720.032 +28100,2025-03-10T12:38:20.985527-07:00,1004.525634765625,10.727986,10727.986 +28101,2025-03-10T12:38:31.705331-07:00,1004.50390625,10.719804,10719.804 +28102,2025-03-10T12:38:42.426409-07:00,1004.5053100585938,10.721078,10721.078 +28103,2025-03-10T12:38:53.157436-07:00,1004.5033569335938,10.731027,10731.027 +28104,2025-03-10T12:39:03.877498-07:00,1004.5424194335938,10.720062,10720.062 +28105,2025-03-10T12:39:14.604410-07:00,1004.5159912109375,10.726912,10726.912 +28106,2025-03-10T12:39:25.324543-07:00,1004.462646484375,10.720133,10720.133 +28107,2025-03-10T12:39:36.048611-07:00,1004.4937744140625,10.724068,10724.068 +28108,2025-03-10T12:39:46.780398-07:00,1004.5167236328125,10.731787,10731.787 +28109,2025-03-10T12:39:57.509001-07:00,1004.5067138671875,10.728603,10728.603 +28110,2025-03-10T12:40:08.235060-07:00,1004.5245361328125,10.726059,10726.059 +28111,2025-03-10T12:40:18.956400-07:00,1004.5225219726562,10.72134,10721.34 +28112,2025-03-10T12:40:29.680878-07:00,1004.484375,10.724478,10724.478 +28113,2025-03-10T12:40:40.409332-07:00,1004.5158081054688,10.728454,10728.454 +28114,2025-03-10T12:40:51.129996-07:00,1004.5072021484375,10.720664,10720.664 +28115,2025-03-10T12:41:01.864331-07:00,1004.4968872070312,10.734335,10734.335 +28116,2025-03-10T12:41:12.580755-07:00,1004.52783203125,10.716424,10716.424 +28117,2025-03-10T12:41:23.313454-07:00,1004.5046997070312,10.732699,10732.699 +28118,2025-03-10T12:41:34.041499-07:00,1004.5092163085938,10.728045,10728.045 +28119,2025-03-10T12:41:44.766702-07:00,1004.5106811523438,10.725203,10725.203 +28120,2025-03-10T12:41:55.488422-07:00,1004.4954833984375,10.72172,10721.72 +28121,2025-03-10T12:42:06.221331-07:00,1004.4868774414062,10.732909,10732.909 +28122,2025-03-10T12:42:16.942330-07:00,1004.4671020507812,10.720999,10720.999 +28123,2025-03-10T12:42:27.669549-07:00,1004.4717407226562,10.727219,10727.219 +28124,2025-03-10T12:42:38.399460-07:00,1004.463134765625,10.729911,10729.911 +28125,2025-03-10T12:42:49.126405-07:00,1004.474365234375,10.726945,10726.945 +28126,2025-03-10T12:42:59.852492-07:00,1004.4413452148438,10.726087,10726.087 +28127,2025-03-10T12:43:10.584513-07:00,1004.4723510742188,10.732021,10732.021 +28128,2025-03-10T12:43:21.312327-07:00,1004.4488525390625,10.727814,10727.814 +28129,2025-03-10T12:43:32.040518-07:00,1004.4534301757812,10.728191,10728.191 +28130,2025-03-10T12:43:42.759537-07:00,1004.435302734375,10.719019,10719.019 +28131,2025-03-10T12:43:53.492409-07:00,1004.447998046875,10.732872,10732.872 +28132,2025-03-10T12:44:04.219471-07:00,1004.4330444335938,10.727062,10727.062 +28133,2025-03-10T12:44:14.939521-07:00,1004.4244384765625,10.72005,10720.05 +28134,2025-03-10T12:44:25.669616-07:00,1004.4241943359375,10.730095,10730.095 +28135,2025-03-10T12:44:36.391528-07:00,1004.4403076171875,10.721912,10721.912 +28136,2025-03-10T12:44:47.121484-07:00,1004.4317016601562,10.729956,10729.956 +28137,2025-03-10T12:44:57.845330-07:00,1004.4202270507812,10.723846,10723.846 +28138,2025-03-10T12:45:08.574734-07:00,1004.41650390625,10.729404,10729.404 +28139,2025-03-10T12:45:19.303739-07:00,1004.4130249023438,10.729005,10729.005 +28140,2025-03-10T12:45:30.024357-07:00,1004.3961181640625,10.720618,10720.618 +28141,2025-03-10T12:45:40.751531-07:00,1004.3875122070312,10.727174,10727.174 +28142,2025-03-10T12:45:51.479328-07:00,1004.39208984375,10.727797,10727.797 +28143,2025-03-10T12:46:02.212330-07:00,1004.3953247070312,10.733002,10733.002 +28144,2025-03-10T12:46:12.937275-07:00,1004.3998413085938,10.724945,10724.945 +28145,2025-03-10T12:46:23.658325-07:00,1004.3780517578125,10.72105,10721.05 +28146,2025-03-10T12:46:34.384500-07:00,1004.3760986328125,10.726175,10726.175 +28147,2025-03-10T12:46:45.112330-07:00,1004.4032592773438,10.72783,10727.83 +28148,2025-03-10T12:46:55.841507-07:00,1004.3748168945312,10.729177,10729.177 +28149,2025-03-10T12:47:06.569327-07:00,1004.3861083984375,10.72782,10727.82 +28150,2025-03-10T12:47:17.298330-07:00,1004.3565673828125,10.729003,10729.003 +28151,2025-03-10T12:47:28.023738-07:00,1004.3726806640625,10.725408,10725.408 +28152,2025-03-10T12:47:38.753382-07:00,1004.38037109375,10.729644,10729.644 +28153,2025-03-10T12:47:49.477519-07:00,1004.3554077148438,10.724137,10724.137 +28154,2025-03-10T12:48:00.207554-07:00,1004.3453369140625,10.730035,10730.035 +28155,2025-03-10T12:48:10.928351-07:00,1004.3711547851562,10.720797,10720.797 +28156,2025-03-10T12:48:21.656534-07:00,1004.3447875976562,10.728183,10728.183 +28157,2025-03-10T12:48:32.387543-07:00,1004.3295288085938,10.731009,10731.009 +28158,2025-03-10T12:48:43.113505-07:00,1004.3421630859375,10.725962,10725.962 +28159,2025-03-10T12:48:53.847502-07:00,1004.3439331054688,10.733997,10733.997 +28160,2025-03-10T12:49:04.576526-07:00,1004.330078125,10.729024,10729.024 +28161,2025-03-10T12:49:15.302328-07:00,1004.36767578125,10.725802,10725.802 +28162,2025-03-10T12:49:26.036007-07:00,1004.3638916015625,10.733679,10733.679 +28163,2025-03-10T12:49:36.755495-07:00,1004.3538818359375,10.719488,10719.488 +28164,2025-03-10T12:49:47.485503-07:00,1004.33544921875,10.730008,10730.008 +28165,2025-03-10T12:49:58.216355-07:00,1004.3174438476562,10.730852,10730.852 +28166,2025-03-10T12:50:08.950596-07:00,1004.322021484375,10.734241,10734.241 +28167,2025-03-10T12:50:19.671222-07:00,1004.3035888671875,10.720626,10720.626 +28168,2025-03-10T12:50:30.406327-07:00,1004.30810546875,10.735105,10735.105 +28169,2025-03-10T12:50:51.864653-07:00,1004.29296875,21.458326,21458.326 +28170,2025-03-10T12:51:02.595331-07:00,1004.310791015625,10.730678,10730.678 +28171,2025-03-10T12:51:13.324537-07:00,1004.3009643554688,10.729206,10729.206 +28172,2025-03-10T12:51:24.059495-07:00,1004.2659301757812,10.734958,10734.958 +28173,2025-03-10T12:51:34.787347-07:00,1004.24609375,10.727852,10727.852 +28174,2025-03-10T12:51:45.516384-07:00,1004.2557983398438,10.729037,10729.037 +28175,2025-03-10T12:51:56.251544-07:00,1004.2586669921875,10.73516,10735.16 +28176,2025-03-10T12:52:06.982326-07:00,1004.2520141601562,10.730782,10730.782 +28177,2025-03-10T12:52:17.717363-07:00,1004.2619018554688,10.735037,10735.037 +28178,2025-03-10T12:52:28.444697-07:00,1004.2647094726562,10.727334,10727.334 +28179,2025-03-10T12:52:39.174330-07:00,1004.2479858398438,10.729633,10729.633 +28180,2025-03-10T12:52:49.900330-07:00,1004.2215576171875,10.726,10726.0 +28181,2025-03-10T12:53:00.682225-07:00,1004.2379760742188,10.781895,10781.895 +28182,2025-03-10T12:53:11.420169-07:00,1004.2276000976562,10.737944,10737.944 +28183,2025-03-10T12:53:22.141345-07:00,1004.2359619140625,10.721176,10721.176 +28184,2025-03-10T12:53:32.879214-07:00,1004.2028198242188,10.737869,10737.869 +28185,2025-03-10T12:53:43.608618-07:00,1004.217529296875,10.729404,10729.404 +28186,2025-03-10T12:53:54.346045-07:00,1004.2008056640625,10.737427,10737.427 +28187,2025-03-10T12:54:05.078337-07:00,1004.2235107421875,10.732292,10732.292 +28188,2025-03-10T12:54:15.809244-07:00,1004.2249145507812,10.730907,10730.907 +28189,2025-03-10T12:54:26.539048-07:00,1004.1950073242188,10.729804,10729.804 +28190,2025-03-10T12:54:37.270044-07:00,1004.1964111328125,10.730996,10730.996 +28191,2025-03-10T12:54:47.995899-07:00,1004.21142578125,10.725855,10725.855 +28192,2025-03-10T12:54:58.727255-07:00,1004.2128295898438,10.731356,10731.356 +28193,2025-03-10T12:55:09.448246-07:00,1004.1929931640625,10.720991,10720.991 +28194,2025-03-10T12:55:20.187281-07:00,1004.1961059570312,10.739035,10739.035 +28195,2025-03-10T12:55:30.918046-07:00,1004.1878051757812,10.730765,10730.765 +28196,2025-03-10T12:55:41.643079-07:00,1004.161376953125,10.725033,10725.033 +28197,2025-03-10T12:55:52.380422-07:00,1004.1843872070312,10.737343,10737.343 +28198,2025-03-10T12:56:03.105048-07:00,1004.1724853515625,10.724626,10724.626 +28199,2025-03-10T12:56:13.835227-07:00,1004.1593017578125,10.730179,10730.179 +28200,2025-03-10T12:56:24.564279-07:00,1004.1690673828125,10.729052,10729.052 +28201,2025-03-10T12:56:35.290046-07:00,1004.1837768554688,10.725767,10725.767 +28202,2025-03-10T12:56:46.026119-07:00,1004.1558837890625,10.736073,10736.073 +28203,2025-03-10T12:56:56.760542-07:00,1004.2029418945312,10.734423,10734.423 +28204,2025-03-10T12:57:07.490169-07:00,1004.1256103515625,10.729627,10729.627 +28205,2025-03-10T12:57:18.222463-07:00,1004.1698608398438,10.732294,10732.294 +28206,2025-03-10T12:57:28.960253-07:00,1004.161865234375,10.73779,10737.79 +28207,2025-03-10T12:57:39.689044-07:00,1004.1102905273438,10.728791,10728.791 +28208,2025-03-10T12:57:50.423042-07:00,1004.1386108398438,10.733998,10733.998 +28209,2025-03-10T12:58:01.161084-07:00,1004.1615600585938,10.738042,10738.042 +28210,2025-03-10T12:58:11.893107-07:00,1004.1482543945312,10.732023,10732.023 +28211,2025-03-10T12:58:22.622044-07:00,1004.1235961914062,10.728937,10728.937 +28212,2025-03-10T12:58:33.359284-07:00,1004.09716796875,10.73724,10737.24 +28213,2025-03-10T12:58:44.092698-07:00,1004.133056640625,10.733414,10733.414 +28214,2025-03-10T12:58:54.820048-07:00,1004.11181640625,10.72735,10727.35 +28215,2025-03-10T12:59:05.553106-07:00,1004.1281127929688,10.733058,10733.058 +28216,2025-03-10T12:59:16.287050-07:00,1004.0588989257812,10.733944,10733.944 +28217,2025-03-10T12:59:27.016291-07:00,1004.0818481445312,10.729241,10729.241 +28218,2025-03-10T12:59:37.748049-07:00,1004.06689453125,10.731758,10731.758 +28219,2025-03-10T12:59:48.482247-07:00,1004.06201171875,10.734198,10734.198 +28220,2025-03-10T12:59:59.220227-07:00,1004.070068359375,10.73798,10737.98 +28221,2025-03-10T13:00:09.944045-07:00,1004.0421752929688,10.723818,10723.818 +28222,2025-03-10T13:00:20.681472-07:00,1004.056884765625,10.737427,10737.427 +28223,2025-03-10T13:00:31.410224-07:00,1004.0318603515625,10.728752,10728.752 +28224,2025-03-10T13:00:42.139109-07:00,1004.0106201171875,10.728885,10728.885 +28225,2025-03-10T13:00:52.871041-07:00,1004.0186157226562,10.731932,10731.932 +28226,2025-03-10T13:01:03.601220-07:00,1004.00048828125,10.730179,10730.179 +28227,2025-03-10T13:01:14.323050-07:00,1004.0318603515625,10.72183,10721.83 +28228,2025-03-10T13:01:25.055263-07:00,1004.01513671875,10.732213,10732.213 +28229,2025-03-10T13:01:35.792304-07:00,1003.9953002929688,10.737041,10737.041 +28230,2025-03-10T13:01:46.522256-07:00,1004.0099487304688,10.729952,10729.952 +28231,2025-03-10T13:01:57.253180-07:00,1004.0046997070312,10.730924,10730.924 +28232,2025-03-10T13:02:07.984236-07:00,1004.0046997070312,10.731056,10731.056 +28233,2025-03-10T13:02:18.715046-07:00,1003.9717407226562,10.73081,10730.81 +28234,2025-03-10T13:02:29.440048-07:00,1003.9717407226562,10.725002,10725.002 +28235,2025-03-10T13:02:40.174435-07:00,1003.965087890625,10.734387,10734.387 +28236,2025-03-10T13:02:50.908045-07:00,1003.9849243164062,10.73361,10733.61 +28237,2025-03-10T13:03:01.638109-07:00,1003.9584350585938,10.730064,10730.064 +28238,2025-03-10T13:03:12.363530-07:00,1003.974853515625,10.725421,10725.421 +28239,2025-03-10T13:03:23.094046-07:00,1003.9734497070312,10.730516,10730.516 +28240,2025-03-10T13:03:33.820048-07:00,1003.9584350585938,10.726002,10726.002 +28241,2025-03-10T13:03:44.548264-07:00,1003.9452514648438,10.728216,10728.216 +28242,2025-03-10T13:03:55.277050-07:00,1003.9636840820312,10.728786,10728.786 +28243,2025-03-10T13:04:06.013459-07:00,1003.9636840820312,10.736409,10736.409 +28244,2025-03-10T13:04:16.738049-07:00,1003.92919921875,10.72459,10724.59 +28245,2025-03-10T13:04:27.477246-07:00,1003.9277954101562,10.739197,10739.197 +28246,2025-03-10T13:04:38.202201-07:00,1003.912841796875,10.724955,10724.955 +28247,2025-03-10T13:04:48.935679-07:00,1003.907958984375,10.733478,10733.478 +28248,2025-03-10T13:04:59.673118-07:00,1003.9193725585938,10.737439,10737.439 +28249,2025-03-10T13:05:10.397239-07:00,1003.922607421875,10.724121,10724.121 +28250,2025-03-10T13:05:21.137645-07:00,1003.922607421875,10.740406,10740.406 +28251,2025-03-10T13:05:31.863045-07:00,1003.9371948242188,10.7254,10725.4 +28252,2025-03-10T13:05:42.593048-07:00,1003.921142578125,10.730003,10730.003 +28253,2025-03-10T13:05:53.323458-07:00,1003.9277954101562,10.73041,10730.41 +28254,2025-03-10T13:06:04.061072-07:00,1003.9173583984375,10.737614,10737.614 +28255,2025-03-10T13:06:14.791864-07:00,1003.8748168945312,10.730792,10730.792 +28256,2025-03-10T13:06:25.515244-07:00,1003.9027099609375,10.72338,10723.38 +28257,2025-03-10T13:06:36.240066-07:00,1003.8783569335938,10.724822,10724.822 +28258,2025-03-10T13:06:46.977041-07:00,1003.8717041015625,10.736975,10736.975 +28259,2025-03-10T13:06:57.704231-07:00,1003.89013671875,10.72719,10727.19 +28260,2025-03-10T13:07:08.435252-07:00,1003.8836059570312,10.731021,10731.021 +28261,2025-03-10T13:07:19.162321-07:00,1003.9033813476562,10.727069,10727.069 +28262,2025-03-10T13:07:29.896246-07:00,1003.888427734375,10.733925,10733.925 +28263,2025-03-10T13:07:40.619256-07:00,1003.9033813476562,10.72301,10723.01 +28264,2025-03-10T13:07:51.349046-07:00,1003.8751831054688,10.72979,10729.79 +28265,2025-03-10T13:08:02.086446-07:00,1003.9298706054688,10.7374,10737.4 +28266,2025-03-10T13:08:12.815216-07:00,1003.89013671875,10.72877,10728.77 +28267,2025-03-10T13:08:23.539255-07:00,1003.896728515625,10.724039,10724.039 +28268,2025-03-10T13:08:34.264245-07:00,1003.8864135742188,10.72499,10724.99 +28269,2025-03-10T13:08:44.999048-07:00,1003.8797607421875,10.734803,10734.803 +28270,2025-03-10T13:08:55.727212-07:00,1003.8571166992188,10.728164,10728.164 +28271,2025-03-10T13:09:06.459140-07:00,1003.8585205078125,10.731928,10731.928 +28272,2025-03-10T13:09:17.184123-07:00,1003.8651733398438,10.724983,10724.983 +28273,2025-03-10T13:09:27.918824-07:00,1003.8665771484375,10.734701,10734.701 +28274,2025-03-10T13:09:38.640146-07:00,1003.8453369140625,10.721322,10721.322 +28275,2025-03-10T13:09:49.369117-07:00,1003.8386840820312,10.728971,10728.971 +28276,2025-03-10T13:10:00.101329-07:00,1003.8334350585938,10.732212,10732.212 +28277,2025-03-10T13:10:10.842122-07:00,1003.8351440429688,10.740793,10740.793 +28278,2025-03-10T13:10:21.568434-07:00,1003.8577880859375,10.726312,10726.312 +28279,2025-03-10T13:10:32.300258-07:00,1003.826904296875,10.731824,10731.824 +28280,2025-03-10T13:10:43.034196-07:00,1003.7923583984375,10.733938,10733.938 +28281,2025-03-10T13:10:53.764212-07:00,1003.8351440429688,10.730016,10730.016 +28282,2025-03-10T13:11:04.490138-07:00,1003.8087768554688,10.725926,10725.926 +28283,2025-03-10T13:11:15.223254-07:00,1003.8070068359375,10.733116,10733.116 +28284,2025-03-10T13:11:25.957048-07:00,1003.7955322265625,10.733794,10733.794 +28285,2025-03-10T13:11:36.689458-07:00,1003.7955322265625,10.73241,10732.41 +28286,2025-03-10T13:11:47.416107-07:00,1003.8004760742188,10.726649,10726.649 +28287,2025-03-10T13:11:58.155048-07:00,1003.8035888671875,10.738941,10738.941 +28288,2025-03-10T13:12:08.887119-07:00,1003.790283203125,10.732071,10732.071 +28289,2025-03-10T13:12:19.614347-07:00,1003.8101806640625,10.727228,10727.228 +28290,2025-03-10T13:12:30.345450-07:00,1003.76904296875,10.731103,10731.103 +28291,2025-03-10T13:12:41.076231-07:00,1003.76904296875,10.730781,10730.781 +28292,2025-03-10T13:12:51.802092-07:00,1003.763916015625,10.725861,10725.861 +28293,2025-03-10T13:13:02.535967-07:00,1003.7756958007812,10.733875,10733.875 +28294,2025-03-10T13:13:13.258203-07:00,1003.7823486328125,10.722236,10722.236 +28295,2025-03-10T13:13:23.996886-07:00,1003.7837524414062,10.738683,10738.683 +28296,2025-03-10T13:13:34.720046-07:00,1003.7625122070312,10.72316,10723.16 +28297,2025-03-10T13:13:45.451784-07:00,1003.7307739257812,10.731738,10731.738 +28298,2025-03-10T13:13:56.181254-07:00,1003.74267578125,10.72947,10729.47 +28299,2025-03-10T13:14:06.903121-07:00,1003.7360229492188,10.721867,10721.867 +28300,2025-03-10T13:14:17.634266-07:00,1003.7506103515625,10.731145,10731.145 +28301,2025-03-10T13:14:28.364259-07:00,1003.6964111328125,10.729993,10729.993 +28302,2025-03-10T13:14:39.091228-07:00,1003.6964111328125,10.726969,10726.969 +28303,2025-03-10T13:14:49.830250-07:00,1003.7095336914062,10.739022,10739.022 +28304,2025-03-10T13:15:00.559086-07:00,1003.7360229492188,10.728836,10728.836 +28305,2025-03-10T13:15:11.287113-07:00,1003.7078247070312,10.728027,10728.027 +28306,2025-03-10T13:15:22.019422-07:00,1003.6765747070312,10.732309,10732.309 +28307,2025-03-10T13:15:32.754045-07:00,1003.681396484375,10.734623,10734.623 +28308,2025-03-10T13:15:43.480105-07:00,1003.6964111328125,10.72606,10726.06 +28309,2025-03-10T13:15:54.206355-07:00,1003.6448364257812,10.72625,10726.25 +28310,2025-03-10T13:16:04.944048-07:00,1003.704345703125,10.737693,10737.693 +28311,2025-03-10T13:16:15.665045-07:00,1003.6646728515625,10.720997,10720.997 +28312,2025-03-10T13:16:26.390225-07:00,1003.6483764648438,10.72518,10725.18 +28313,2025-03-10T13:16:37.127073-07:00,1003.6483764648438,10.736848,10736.848 +28314,2025-03-10T13:16:47.852614-07:00,1003.6285400390625,10.725541,10725.541 +28315,2025-03-10T13:16:58.578045-07:00,1003.6170043945312,10.725431,10725.431 +28316,2025-03-10T13:17:09.299043-07:00,1003.6434326171875,10.720998,10720.998 +28317,2025-03-10T13:17:20.035467-07:00,1003.6434326171875,10.736424,10736.424 +28318,2025-03-10T13:17:30.765119-07:00,1003.5888061523438,10.729652,10729.652 +28319,2025-03-10T13:17:41.492236-07:00,1003.60205078125,10.727117,10727.117 +28320,2025-03-10T13:17:52.224696-07:00,1003.5822143554688,10.73246,10732.46 +28321,2025-03-10T13:18:02.953044-07:00,1003.5839233398438,10.728348,10728.348 +28322,2025-03-10T13:18:13.681236-07:00,1003.5773315429688,10.728192,10728.192 +28323,2025-03-10T13:18:24.415673-07:00,1003.5557861328125,10.734437,10734.437 +28324,2025-03-10T13:18:35.142201-07:00,1003.5773315429688,10.726528,10726.528 +28325,2025-03-10T13:18:45.871718-07:00,1003.5906372070312,10.729517,10729.517 +28326,2025-03-10T13:18:56.595045-07:00,1003.5756225585938,10.723327,10723.327 +28327,2025-03-10T13:19:07.330077-07:00,1003.5509643554688,10.735032,10735.032 +28328,2025-03-10T13:19:18.067047-07:00,1003.5722045898438,10.73697,10736.97 +28329,2025-03-10T13:19:28.788209-07:00,1003.5787353515625,10.721162,10721.162 +28330,2025-03-10T13:19:39.527044-07:00,1003.5655517578125,10.738835,10738.835 +28331,2025-03-10T13:19:50.249830-07:00,1003.5376586914062,10.722786,10722.786 +28332,2025-03-10T13:20:00.985045-07:00,1003.532470703125,10.735215,10735.215 +28333,2025-03-10T13:20:11.706259-07:00,1003.5669555664062,10.721214,10721.214 +28334,2025-03-10T13:20:22.447044-07:00,1003.5390625,10.740785,10740.785 +28335,2025-03-10T13:20:33.166198-07:00,1003.5722045898438,10.719154,10719.154 +28336,2025-03-10T13:20:43.899242-07:00,1003.5767211914062,10.733044,10733.044 +28337,2025-03-10T13:20:54.625265-07:00,1003.5537719726562,10.726023,10726.023 +28338,2025-03-10T13:21:05.357120-07:00,1003.5390625,10.731855,10731.855 +28339,2025-03-10T13:21:16.089048-07:00,1003.5272827148438,10.731928,10731.928 +28340,2025-03-10T13:21:26.819254-07:00,1003.533935546875,10.730206,10730.206 +28341,2025-03-10T13:21:37.545335-07:00,1003.5404663085938,10.726081,10726.081 +28342,2025-03-10T13:21:48.270548-07:00,1003.532470703125,10.725213,10725.213 +28343,2025-03-10T13:21:59.007749-07:00,1003.5457153320312,10.737201,10737.201 +28344,2025-03-10T13:22:09.732045-07:00,1003.5353393554688,10.724296,10724.296 +28345,2025-03-10T13:22:20.468049-07:00,1003.533935546875,10.736004,10736.004 +28346,2025-03-10T13:22:31.196204-07:00,1003.5272827148438,10.728155,10728.155 +28347,2025-03-10T13:22:41.923076-07:00,1003.5353393554688,10.726872,10726.872 +28348,2025-03-10T13:22:52.657225-07:00,1003.4942016601562,10.734149,10734.149 +28349,2025-03-10T13:23:03.378041-07:00,1003.5353393554688,10.720816,10720.816 +28350,2025-03-10T13:23:14.105048-07:00,1003.5126342773438,10.727007,10727.007 +28351,2025-03-10T13:23:24.844280-07:00,1003.5310668945312,10.739232,10739.232 +28352,2025-03-10T13:23:35.564045-07:00,1003.509521484375,10.719765,10719.765 +28353,2025-03-10T13:23:46.296227-07:00,1003.5147094726562,10.732182,10732.182 +28354,2025-03-10T13:23:57.025428-07:00,1003.5067138671875,10.729201,10729.201 +28355,2025-03-10T13:24:07.750121-07:00,1003.51220703125,10.724693,10724.693 +28356,2025-03-10T13:24:18.485049-07:00,1003.5390014648438,10.734928,10734.928 +28357,2025-03-10T13:24:29.219252-07:00,1003.5232543945312,10.734203,10734.203 +28358,2025-03-10T13:24:39.950048-07:00,1003.5569458007812,10.730796,10730.796 +28359,2025-03-10T13:24:50.674492-07:00,1003.5115356445312,10.724444,10724.444 +28360,2025-03-10T13:25:01.400048-07:00,1003.5320434570312,10.725556,10725.556 +28361,2025-03-10T13:25:12.139110-07:00,1003.5538940429688,10.739062,10739.062 +28362,2025-03-10T13:25:22.858224-07:00,1003.5301513671875,10.719114,10719.114 +28363,2025-03-10T13:25:33.597055-07:00,1003.529052734375,10.738831,10738.831 +28364,2025-03-10T13:25:44.328045-07:00,1003.5084228515625,10.73099,10730.99 +28365,2025-03-10T13:25:55.053393-07:00,1003.5125732421875,10.725348,10725.348 +28366,2025-03-10T13:26:05.782048-07:00,1003.5014038085938,10.728655,10728.655 +28367,2025-03-10T13:26:16.516071-07:00,1003.5003051757812,10.734023,10734.023 +28368,2025-03-10T13:26:27.249048-07:00,1003.5154418945312,10.732977,10732.977 +28369,2025-03-10T13:26:37.973281-07:00,1003.481689453125,10.724233,10724.233 +28370,2025-03-10T13:26:48.706058-07:00,1003.4837646484375,10.732777,10732.777 +28371,2025-03-10T13:26:59.437270-07:00,1003.4777221679688,10.731212,10731.212 +28372,2025-03-10T13:27:10.162160-07:00,1003.451904296875,10.72489,10724.89 +28373,2025-03-10T13:27:20.895048-07:00,1003.4737548828125,10.732888,10732.888 +28374,2025-03-10T13:27:31.623426-07:00,1003.4706420898438,10.728378,10728.378 +28375,2025-03-10T13:27:42.355420-07:00,1003.50048828125,10.731994,10731.994 +28376,2025-03-10T13:27:53.093048-07:00,1003.477783203125,10.737628,10737.628 +28377,2025-03-10T13:28:03.818256-07:00,1003.4959106445312,10.725208,10725.208 +28378,2025-03-10T13:28:14.551041-07:00,1003.4993896484375,10.732785,10732.785 +28379,2025-03-10T13:28:25.292424-07:00,1003.4763793945312,10.741383,10741.383 +28380,2025-03-10T13:28:36.023047-07:00,1003.4551391601562,10.730623,10730.623 +28381,2025-03-10T13:28:46.753424-07:00,1003.4404907226562,10.730377,10730.377 +28382,2025-03-10T13:28:57.489072-07:00,1003.4373168945312,10.735648,10735.648 +28383,2025-03-10T13:29:08.230046-07:00,1003.4637451171875,10.740974,10740.974 +28384,2025-03-10T13:29:18.955243-07:00,1003.4227294921875,10.725197,10725.197 +28385,2025-03-10T13:29:29.699457-07:00,1003.4474487304688,10.744214,10744.214 +28386,2025-03-10T13:29:40.433689-07:00,1003.399658203125,10.734232,10734.232 +28387,2025-03-10T13:29:51.165244-07:00,1003.4195556640625,10.731555,10731.555 +28388,2025-03-10T13:30:01.893052-07:00,1003.4261474609375,10.727808,10727.808 +28389,2025-03-10T13:30:12.627225-07:00,1003.468994140625,10.734173,10734.173 +28390,2025-03-10T13:30:23.360041-07:00,1003.4049072265625,10.732816,10732.816 +28391,2025-03-10T13:30:34.084232-07:00,1003.4425048828125,10.724191,10724.191 +28392,2025-03-10T13:30:44.826259-07:00,1003.4209594726562,10.742027,10742.027 +28393,2025-03-10T13:30:55.556139-07:00,1003.4373168945312,10.72988,10729.88 +28394,2025-03-10T13:31:06.281617-07:00,1003.4241333007812,10.725478,10725.478 +28395,2025-03-10T13:31:17.020111-07:00,1003.438720703125,10.738494,10738.494 +28396,2025-03-10T13:31:27.746048-07:00,1003.44189453125,10.725937,10725.937 +28397,2025-03-10T13:31:38.477050-07:00,1003.435302734375,10.731002,10731.002 +28398,2025-03-10T13:31:49.210348-07:00,1003.4037475585938,10.733298,10733.298 +28399,2025-03-10T13:31:59.946667-07:00,1003.4332885742188,10.736319,10736.319 +28400,2025-03-10T13:32:10.675048-07:00,1003.4003295898438,10.728381,10728.381 +28401,2025-03-10T13:32:21.412051-07:00,1003.4148559570312,10.737003,10737.003 +28402,2025-03-10T13:32:32.145242-07:00,1003.3836059570312,10.733191,10733.191 +28403,2025-03-10T13:32:42.868260-07:00,1003.3853149414062,10.723018,10723.018 +28404,2025-03-10T13:32:53.603132-07:00,1003.366943359375,10.734872,10734.872 +28405,2025-03-10T13:33:04.340491-07:00,1003.3700561523438,10.737359,10737.359 +28406,2025-03-10T13:33:15.075490-07:00,1003.3861083984375,10.734999,10734.999 +28407,2025-03-10T13:33:25.809322-07:00,1003.3464965820312,10.733832,10733.832 +28408,2025-03-10T13:33:36.544050-07:00,1003.3613891601562,10.734728,10734.728 +28409,2025-03-10T13:33:47.273237-07:00,1003.357666015625,10.729187,10729.187 +28410,2025-03-10T13:33:58.005072-07:00,1003.34765625,10.731835,10731.835 +28411,2025-03-10T13:34:08.736061-07:00,1003.3145141601562,10.730989,10730.989 +28412,2025-03-10T13:34:19.475242-07:00,1003.3535766601562,10.739181,10739.181 +28413,2025-03-10T13:34:30.202072-07:00,1003.2993774414062,10.72683,10726.83 +28414,2025-03-10T13:34:40.942042-07:00,1003.30078125,10.73997,10739.97 +28415,2025-03-10T13:34:51.676119-07:00,1003.2921142578125,10.734077,10734.077 +28416,2025-03-10T13:35:02.411260-07:00,1003.3150634765625,10.735141,10735.141 +28417,2025-03-10T13:35:13.144826-07:00,1003.2636108398438,10.733566,10733.566 +28418,2025-03-10T13:35:23.873411-07:00,1003.2518920898438,10.728585,10728.585 +28419,2025-03-10T13:35:34.598896-07:00,1003.2601318359375,10.725485,10725.485 +28420,2025-03-10T13:35:45.334853-07:00,1003.2842407226562,10.735957,10735.957 +28421,2025-03-10T13:35:56.074157-07:00,1003.27734375,10.739304,10739.304 +28422,2025-03-10T13:36:06.805246-07:00,1003.2603149414062,10.731089,10731.089 +28423,2025-03-10T13:36:17.530234-07:00,1003.2965698242188,10.724988,10724.988 +28424,2025-03-10T13:36:28.267046-07:00,1003.2648315429688,10.736812,10736.812 +28425,2025-03-10T13:36:38.997264-07:00,1003.25830078125,10.730218,10730.218 +28426,2025-03-10T13:36:49.731235-07:00,1003.2694702148438,10.733971,10733.971 +28427,2025-03-10T13:37:00.470225-07:00,1003.2792358398438,10.73899,10738.99 +28428,2025-03-10T13:37:11.196069-07:00,1003.2542114257812,10.725844,10725.844 +28429,2025-03-10T13:37:21.929049-07:00,1003.28515625,10.73298,10732.98 +28430,2025-03-10T13:37:32.659534-07:00,1003.2587280273438,10.730485,10730.485 +28431,2025-03-10T13:37:43.390057-07:00,1003.2553100585938,10.730523,10730.523 +28432,2025-03-10T13:37:54.125045-07:00,1003.23828125,10.734988,10734.988 +28433,2025-03-10T13:38:04.860240-07:00,1003.256103515625,10.735195,10735.195 +28434,2025-03-10T13:38:15.596592-07:00,1003.2393798828125,10.736352,10736.352 +28435,2025-03-10T13:38:26.318251-07:00,1003.21435546875,10.721659,10721.659 +28436,2025-03-10T13:38:37.056184-07:00,1003.2091674804688,10.737933,10737.933 +28437,2025-03-10T13:38:47.786478-07:00,1003.2056884765625,10.730294,10730.294 +28438,2025-03-10T13:38:58.521045-07:00,1003.2070922851562,10.734567,10734.567 +28439,2025-03-10T13:39:09.247252-07:00,1003.219970703125,10.726207,10726.207 +28440,2025-03-10T13:39:19.971246-07:00,1003.2134399414062,10.723994,10723.994 +28441,2025-03-10T13:39:30.704170-07:00,1003.1897583007812,10.732924,10732.924 +28442,2025-03-10T13:39:41.436048-07:00,1003.1897583007812,10.731878,10731.878 +28443,2025-03-10T13:39:52.168133-07:00,1003.1810913085938,10.732085,10732.085 +28444,2025-03-10T13:40:02.903049-07:00,1003.17626953125,10.734916,10734.916 +28445,2025-03-10T13:40:13.636162-07:00,1003.197509765625,10.733113,10733.113 +28446,2025-03-10T13:40:24.374450-07:00,1003.1671752929688,10.738288,10738.288 +28447,2025-03-10T13:40:35.105244-07:00,1003.20654296875,10.730794,10730.794 +28448,2025-03-10T13:40:45.843046-07:00,1003.18017578125,10.737802,10737.802 +28449,2025-03-10T13:40:56.569053-07:00,1003.1631469726562,10.726007,10726.007 +28450,2025-03-10T13:41:07.306418-07:00,1003.1795043945312,10.737365,10737.365 +28451,2025-03-10T13:41:18.038225-07:00,1003.1741943359375,10.731807,10731.807 +28452,2025-03-10T13:41:28.771067-07:00,1003.1610717773438,10.732842,10732.842 +28453,2025-03-10T13:41:39.509228-07:00,1003.1819458007812,10.738161,10738.161 +28454,2025-03-10T13:41:50.236256-07:00,1003.1781005859375,10.727028,10727.028 +28455,2025-03-10T13:42:00.971046-07:00,1003.1384887695312,10.73479,10734.79 +28456,2025-03-10T13:42:11.698287-07:00,1003.1486206054688,10.727241,10727.241 +28457,2025-03-10T13:42:22.433228-07:00,1003.1663208007812,10.734941,10734.941 +28458,2025-03-10T13:42:33.161048-07:00,1003.1610717773438,10.72782,10727.82 +28459,2025-03-10T13:42:43.897073-07:00,1003.149658203125,10.736025,10736.025 +28460,2025-03-10T13:42:54.627206-07:00,1003.1590576171875,10.730133,10730.133 +28461,2025-03-10T13:43:05.365306-07:00,1003.1754760742188,10.7381,10738.1 +28462,2025-03-10T13:43:16.091069-07:00,1003.1305541992188,10.725763,10725.763 +28463,2025-03-10T13:43:26.830247-07:00,1003.1482543945312,10.739178,10739.178 +28464,2025-03-10T13:43:37.558214-07:00,1003.1099853515625,10.727967,10727.967 +28465,2025-03-10T13:43:48.288072-07:00,1003.1295166015625,10.729858,10729.858 +28466,2025-03-10T13:43:59.027046-07:00,1003.1619262695312,10.738974,10738.974 +28467,2025-03-10T13:44:09.757242-07:00,1003.1448974609375,10.730196,10730.196 +28468,2025-03-10T13:44:20.487282-07:00,1003.14453125,10.73004,10730.04 +28469,2025-03-10T13:44:31.228795-07:00,1003.1408081054688,10.741513,10741.513 +28470,2025-03-10T13:44:41.957051-07:00,1003.1453247070312,10.728256,10728.256 +28471,2025-03-10T13:44:52.685099-07:00,1003.1300048828125,10.728048,10728.048 +28472,2025-03-10T13:45:03.421049-07:00,1003.1279907226562,10.73595,10735.95 +28473,2025-03-10T13:45:14.147493-07:00,1003.1376342773438,10.726444,10726.444 +28474,2025-03-10T13:45:24.885279-07:00,1003.13037109375,10.737786,10737.786 +28475,2025-03-10T13:45:35.615050-07:00,1003.1578979492188,10.729771,10729.771 +28476,2025-03-10T13:45:46.342051-07:00,1003.0966186523438,10.727001,10727.001 +28477,2025-03-10T13:45:57.076239-07:00,1003.082763671875,10.734188,10734.188 +28478,2025-03-10T13:46:07.814083-07:00,1003.1035766601562,10.737844,10737.844 +28479,2025-03-10T13:46:18.541044-07:00,1003.0949096679688,10.726961,10726.961 +28480,2025-03-10T13:46:29.269217-07:00,1003.1038818359375,10.728173,10728.173 +28481,2025-03-10T13:46:40.001273-07:00,1003.0953369140625,10.732056,10732.056 +28482,2025-03-10T13:46:50.737048-07:00,1003.0997924804688,10.735775,10735.775 +28483,2025-03-10T13:47:01.475046-07:00,1003.095947265625,10.737998,10737.998 +28484,2025-03-10T13:47:12.201072-07:00,1003.115478515625,10.726026,10726.026 +28485,2025-03-10T13:47:22.939067-07:00,1003.1168823242188,10.737995,10737.995 +28486,2025-03-10T13:47:33.671045-07:00,1003.0882568359375,10.731978,10731.978 +28487,2025-03-10T13:47:44.400234-07:00,1003.0604858398438,10.729189,10729.189 +28488,2025-03-10T13:47:55.136042-07:00,1003.0499877929688,10.735808,10735.808 +28489,2025-03-10T13:48:05.867048-07:00,1003.06640625,10.731006,10731.006 +28490,2025-03-10T13:48:16.602347-07:00,1003.0398559570312,10.735299,10735.299 +28491,2025-03-10T13:48:27.325095-07:00,1003.052734375,10.722748,10722.748 +28492,2025-03-10T13:48:38.064082-07:00,1003.07568359375,10.738987,10738.987 +28493,2025-03-10T13:48:48.796367-07:00,1003.0343017578125,10.732285,10732.285 +28494,2025-03-10T13:48:59.524055-07:00,1003.0064086914062,10.727688,10727.688 +28495,2025-03-10T13:49:10.254244-07:00,1003.03076171875,10.730189,10730.189 +28496,2025-03-10T13:49:20.984070-07:00,1003.0189208984375,10.729826,10729.826 +28497,2025-03-10T13:49:31.714225-07:00,1002.9942016601562,10.730155,10730.155 +28498,2025-03-10T13:49:42.440265-07:00,1003.0353393554688,10.72604,10726.04 +28499,2025-03-10T13:49:53.174265-07:00,1002.989013671875,10.734,10734.0 +28500,2025-03-10T13:50:03.903226-07:00,1002.99560546875,10.728961,10728.961 +28501,2025-03-10T13:50:14.633048-07:00,1003.0036010742188,10.729822,10729.822 +28502,2025-03-10T13:50:25.357217-07:00,1003.0067138671875,10.724169,10724.169 +28503,2025-03-10T13:50:36.094071-07:00,1003.0029907226562,10.736854,10736.854 +28504,2025-03-10T13:50:46.826050-07:00,1002.981689453125,10.731979,10731.979 +28505,2025-03-10T13:50:57.551234-07:00,1002.9927978515625,10.725184,10725.184 +28506,2025-03-10T13:51:08.286238-07:00,1002.987548828125,10.735004,10735.004 +28507,2025-03-10T13:51:19.017045-07:00,1002.9862670898438,10.730807,10730.807 +28508,2025-03-10T13:51:29.755048-07:00,1002.9677124023438,10.738003,10738.003 +28509,2025-03-10T13:51:40.481615-07:00,1002.9959106445312,10.726567,10726.567 +28510,2025-03-10T13:51:51.209107-07:00,1002.9429931640625,10.727492,10727.492 +28511,2025-03-10T13:52:01.939229-07:00,1002.9509887695312,10.730122,10730.122 +28512,2025-03-10T13:52:12.669172-07:00,1002.939208984375,10.729943,10729.943 +28513,2025-03-10T13:52:23.404048-07:00,1002.94091796875,10.734876,10734.876 +28514,2025-03-10T13:52:34.132414-07:00,1002.9540405273438,10.728366,10728.366 +28515,2025-03-10T13:52:44.866960-07:00,1002.9673461914062,10.734546,10734.546 +28516,2025-03-10T13:52:55.596048-07:00,1002.9276733398438,10.729088,10729.088 +28517,2025-03-10T13:53:06.288179-07:00,1002.9210815429688,10.692131,10692.131 +28518,2025-03-10T13:53:17.021589-07:00,1002.9171752929688,10.73341,10733.41 +28519,2025-03-10T13:53:27.755974-07:00,1002.9171752929688,10.734385,10734.385 +28520,2025-03-10T13:53:38.487037-07:00,1002.9057006835938,10.731063,10731.063 +28521,2025-03-10T13:53:49.219131-07:00,1002.93359375,10.732094,10732.094 +28522,2025-03-10T13:53:59.944979-07:00,1002.88720703125,10.725848,10725.848 +28523,2025-03-10T13:54:10.680969-07:00,1002.8858642578125,10.73599,10735.99 +28524,2025-03-10T13:54:21.409152-07:00,1002.88720703125,10.728183,10728.183 +28525,2025-03-10T13:54:32.141004-07:00,1002.8740844726562,10.731852,10731.852 +28526,2025-03-10T13:54:42.873976-07:00,1002.88720703125,10.732972,10732.972 +28527,2025-03-10T13:54:53.604324-07:00,1002.8673706054688,10.730348,10730.348 +28528,2025-03-10T13:55:04.326040-07:00,1002.8726806640625,10.721716,10721.716 +28529,2025-03-10T13:55:15.052178-07:00,1002.8541259765625,10.726138,10726.138 +28530,2025-03-10T13:55:25.784229-07:00,1002.8621826171875,10.732051,10732.051 +28531,2025-03-10T13:55:36.513974-07:00,1002.8767700195312,10.729745,10729.745 +28532,2025-03-10T13:55:47.246975-07:00,1002.8342895507812,10.733001,10733.001 +28533,2025-03-10T13:55:57.971970-07:00,1002.8423461914062,10.724995,10724.995 +28534,2025-03-10T13:56:08.696984-07:00,1002.8621826171875,10.725014,10725.014 +28535,2025-03-10T13:56:19.433893-07:00,1002.8342895507812,10.736909,10736.909 +28536,2025-03-10T13:56:30.158064-07:00,1002.8423461914062,10.724171,10724.171 +28537,2025-03-10T13:56:40.890047-07:00,1002.84375,10.731983,10731.983 +28538,2025-03-10T13:56:51.620495-07:00,1002.8078002929688,10.730448,10730.448 +28539,2025-03-10T13:57:02.351022-07:00,1002.85693359375,10.730527,10730.527 +28540,2025-03-10T13:57:13.071155-07:00,1002.8370971679688,10.720133,10720.133 +28541,2025-03-10T13:57:23.806748-07:00,1002.8026733398438,10.735593,10735.593 +28542,2025-03-10T13:57:34.538072-07:00,1002.8322143554688,10.731324,10731.324 +28543,2025-03-10T13:57:45.267254-07:00,1002.799072265625,10.729182,10729.182 +28544,2025-03-10T13:57:56.000158-07:00,1002.8189086914062,10.732904,10732.904 +28545,2025-03-10T13:58:06.725063-07:00,1002.7792358398438,10.724905,10724.905 +28546,2025-03-10T13:58:17.457164-07:00,1002.7726440429688,10.732101,10732.101 +28547,2025-03-10T13:58:28.178969-07:00,1002.79248046875,10.721805,10721.805 +28548,2025-03-10T13:58:38.913979-07:00,1002.7938842773438,10.73501,10735.01 +28549,2025-03-10T13:58:49.643987-07:00,1002.7608032226562,10.730008,10730.008 +28550,2025-03-10T13:59:00.374121-07:00,1002.7792358398438,10.730134,10730.134 +28551,2025-03-10T13:59:11.103038-07:00,1002.7673950195312,10.728917,10728.917 +28552,2025-03-10T13:59:21.831175-07:00,1002.7430419921875,10.728137,10728.137 +28553,2025-03-10T13:59:32.562973-07:00,1002.7528076171875,10.731798,10731.798 +28554,2025-03-10T13:59:43.294185-07:00,1002.7444458007812,10.731212,10731.212 +28555,2025-03-10T13:59:54.023158-07:00,1002.7510986328125,10.728973,10728.973 +28556,2025-03-10T14:00:04.754978-07:00,1002.7576293945312,10.73182,10731.82 +28557,2025-03-10T14:00:15.493041-07:00,1002.7363891601562,10.738063,10738.063 +28558,2025-03-10T14:00:26.222179-07:00,1002.7510986328125,10.729138,10729.138 +28559,2025-03-10T14:00:36.950092-07:00,1002.7510986328125,10.727913,10727.913 +28560,2025-03-10T14:00:47.684113-07:00,1002.7232055664062,10.734021,10734.021 +28561,2025-03-10T14:00:58.408990-07:00,1002.7496948242188,10.724877,10724.877 +28562,2025-03-10T14:01:09.144984-07:00,1002.7232055664062,10.735994,10735.994 +28563,2025-03-10T14:01:19.871972-07:00,1002.7312622070312,10.726988,10726.988 +28564,2025-03-10T14:01:30.607145-07:00,1002.7576293945312,10.735173,10735.173 +28565,2025-03-10T14:01:41.337798-07:00,1002.7363891601562,10.730653,10730.653 +28566,2025-03-10T14:01:52.060116-07:00,1002.7576293945312,10.722318,10722.318 +28567,2025-03-10T14:02:02.796119-07:00,1002.716552734375,10.736003,10736.003 +28568,2025-03-10T14:02:13.528933-07:00,1002.716552734375,10.732814,10732.814 +28569,2025-03-10T14:02:24.250977-07:00,1002.7086181640625,10.722044,10722.044 +28570,2025-03-10T14:02:34.984387-07:00,1002.6967163085938,10.73341,10733.41 +28571,2025-03-10T14:02:45.714972-07:00,1002.703369140625,10.730585,10730.585 +28572,2025-03-10T14:02:56.450975-07:00,1002.71142578125,10.736003,10736.003 +28573,2025-03-10T14:03:07.180968-07:00,1002.6967163085938,10.729993,10729.993 +28574,2025-03-10T14:03:17.907062-07:00,1002.6998291015625,10.726094,10726.094 +28575,2025-03-10T14:03:28.632976-07:00,1002.684814453125,10.725914,10725.914 +28576,2025-03-10T14:03:39.359161-07:00,1002.666748046875,10.726185,10726.185 +28577,2025-03-10T14:03:50.094993-07:00,1002.6799926757812,10.735832,10735.832 +28578,2025-03-10T14:04:00.814978-07:00,1002.6747436523438,10.719985,10719.985 +28579,2025-03-10T14:04:11.551180-07:00,1002.66015625,10.736202,10736.202 +28580,2025-03-10T14:04:22.282077-07:00,1002.681396484375,10.730897,10730.897 +28581,2025-03-10T14:04:33.013326-07:00,1002.681396484375,10.731249,10731.249 +28582,2025-03-10T14:04:43.738159-07:00,1002.6828002929688,10.724833,10724.833 +28583,2025-03-10T14:04:54.462975-07:00,1002.6695556640625,10.724816,10724.816 +28584,2025-03-10T14:05:05.193868-07:00,1002.6828002929688,10.730893,10730.893 +28585,2025-03-10T14:05:15.925090-07:00,1002.6681518554688,10.731222,10731.222 +28586,2025-03-10T14:05:26.650161-07:00,1002.649658203125,10.725071,10725.071 +28587,2025-03-10T14:05:37.382138-07:00,1002.6417236328125,10.731977,10731.977 +28588,2025-03-10T14:05:48.118586-07:00,1002.62841796875,10.736448,10736.448 +28589,2025-03-10T14:05:58.841738-07:00,1002.6006469726562,10.723152,10723.152 +28590,2025-03-10T14:06:09.569152-07:00,1002.6218872070312,10.727414,10727.414 +28591,2025-03-10T14:06:20.300972-07:00,1002.6350708007812,10.73182,10731.82 +28592,2025-03-10T14:06:31.031088-07:00,1002.6182861328125,10.730116,10730.116 +28593,2025-03-10T14:06:41.765223-07:00,1002.575439453125,10.734135,10734.135 +28594,2025-03-10T14:06:52.494970-07:00,1002.5901489257812,10.729747,10729.747 +28595,2025-03-10T14:07:03.221204-07:00,1002.5873413085938,10.726234,10726.234 +28596,2025-03-10T14:07:13.949154-07:00,1002.5636596679688,10.72795,10727.95 +28597,2025-03-10T14:07:24.677975-07:00,1002.5689086914062,10.728821,10728.821 +28598,2025-03-10T14:07:35.403375-07:00,1002.55419921875,10.7254,10725.4 +28599,2025-03-10T14:07:46.124972-07:00,1002.5225830078125,10.721597,10721.597 +28600,2025-03-10T14:07:56.859974-07:00,1002.541015625,10.735002,10735.002 +28601,2025-03-10T14:08:07.589364-07:00,1002.5306396484375,10.72939,10729.39 +28602,2025-03-10T14:08:18.314004-07:00,1002.4946899414062,10.72464,10724.64 +28603,2025-03-10T14:08:29.037201-07:00,1002.5239868164062,10.723197,10723.197 +28604,2025-03-10T14:08:39.760975-07:00,1002.4629516601562,10.723774,10723.774 +28605,2025-03-10T14:08:50.486970-07:00,1002.4827880859375,10.725995,10725.995 +28606,2025-03-10T14:09:01.213024-07:00,1002.461669921875,10.726054,10726.054 +28607,2025-03-10T14:09:11.936974-07:00,1002.4762573242188,10.72395,10723.95 +28608,2025-03-10T14:09:22.664153-07:00,1002.4841918945312,10.727179,10727.179 +28609,2025-03-10T14:09:33.385974-07:00,1002.4710083007812,10.721821,10721.821 +28610,2025-03-10T14:09:44.110163-07:00,1002.4246826171875,10.724189,10724.189 +28611,2025-03-10T14:09:54.826981-07:00,1002.4484252929688,10.716818,10716.818 +28612,2025-03-10T14:10:05.555825-07:00,1002.4285888671875,10.728844,10728.844 +28613,2025-03-10T14:10:16.285063-07:00,1002.4232788085938,10.729238,10729.238 +28614,2025-03-10T14:10:27.005982-07:00,1002.4232788085938,10.720919,10720.919 +28615,2025-03-10T14:10:37.737888-07:00,1002.4198608398438,10.731906,10731.906 +28616,2025-03-10T14:10:48.456145-07:00,1002.4198608398438,10.718257,10718.257 +28617,2025-03-10T14:10:59.185117-07:00,1002.439697265625,10.728972,10728.972 +28618,2025-03-10T14:11:09.919176-07:00,1002.4462280273438,10.734059,10734.059 +28619,2025-03-10T14:11:20.643975-07:00,1002.4065551757812,10.724799,10724.799 +28620,2025-03-10T14:11:31.378281-07:00,1002.41455078125,10.734306,10734.306 +28621,2025-03-10T14:11:42.104190-07:00,1002.3982543945312,10.725909,10725.909 +28622,2025-03-10T14:11:52.829181-07:00,1002.4132080078125,10.724991,10724.991 +28623,2025-03-10T14:12:03.568146-07:00,1002.3982543945312,10.738965,10738.965 +28624,2025-03-10T14:12:14.290206-07:00,1002.4277954101562,10.72206,10722.06 +28625,2025-03-10T14:12:25.021972-07:00,1002.4198608398438,10.731766,10731.766 +28626,2025-03-10T14:12:35.755028-07:00,1002.4330444335938,10.733056,10733.056 +28627,2025-03-10T14:12:46.481649-07:00,1002.4462280273438,10.726621,10726.621 +28628,2025-03-10T14:12:57.207179-07:00,1002.4246826171875,10.72553,10725.53 +28629,2025-03-10T14:13:07.935182-07:00,1002.4048461914062,10.728003,10728.003 +28630,2025-03-10T14:13:18.661975-07:00,1002.3902587890625,10.726793,10726.793 +28631,2025-03-10T14:13:29.399150-07:00,1002.3982543945312,10.737175,10737.175 +28632,2025-03-10T14:13:40.127039-07:00,1002.3982543945312,10.727889,10727.889 +28633,2025-03-10T14:13:50.863003-07:00,1002.3504638671875,10.735964,10735.964 +28634,2025-03-10T14:14:01.594168-07:00,1002.3682861328125,10.731165,10731.165 +28635,2025-03-10T14:14:12.322137-07:00,1002.3770141601562,10.727969,10727.969 +28636,2025-03-10T14:14:23.056363-07:00,1002.3585205078125,10.734226,10734.226 +28637,2025-03-10T14:14:33.783023-07:00,1002.3373413085938,10.72666,10726.66 +28638,2025-03-10T14:14:44.516995-07:00,1002.3518676757812,10.733972,10733.972 +28639,2025-03-10T14:14:55.248974-07:00,1002.3403930664062,10.731979,10731.979 +28640,2025-03-10T14:15:05.969151-07:00,1002.3504638671875,10.720177,10720.177 +28641,2025-03-10T14:15:16.701497-07:00,1002.3240356445312,10.732346,10732.346 +28642,2025-03-10T14:15:27.426973-07:00,1002.3668823242188,10.725476,10725.476 +28643,2025-03-10T14:15:38.162154-07:00,1002.3306274414062,10.735181,10735.181 +28644,2025-03-10T14:15:48.890180-07:00,1002.3240356445312,10.728026,10728.026 +28645,2025-03-10T14:15:59.611153-07:00,1002.333740234375,10.720973,10720.973 +28646,2025-03-10T14:16:10.349182-07:00,1002.3470458984375,10.738029,10738.029 +28647,2025-03-10T14:16:21.073175-07:00,1002.3272094726562,10.723993,10723.993 +28648,2025-03-10T14:16:31.806005-07:00,1002.3365478515625,10.73283,10732.83 +28649,2025-03-10T14:16:42.543395-07:00,1002.3167114257812,10.73739,10737.39 +28650,2025-03-10T14:16:53.274975-07:00,1002.3087768554688,10.73158,10731.58 +28651,2025-03-10T14:17:04.006001-07:00,1002.303466796875,10.731026,10731.026 +28652,2025-03-10T14:17:14.736084-07:00,1002.298583984375,10.730083,10730.083 +28653,2025-03-10T14:17:25.464973-07:00,1002.303466796875,10.728889,10728.889 +28654,2025-03-10T14:17:36.192173-07:00,1002.2572021484375,10.7272,10727.2 +28655,2025-03-10T14:17:46.928160-07:00,1002.303466796875,10.735987,10735.987 +28656,2025-03-10T14:17:57.656975-07:00,1002.3096923828125,10.728815,10728.815 +28657,2025-03-10T14:18:08.381378-07:00,1002.2748413085938,10.724403,10724.403 +28658,2025-03-10T14:18:19.117163-07:00,1002.2125244140625,10.735785,10735.785 +28659,2025-03-10T14:18:29.843182-07:00,1002.2581176757812,10.726019,10726.019 +28660,2025-03-10T14:18:40.571049-07:00,1002.2846069335938,10.727867,10727.867 +28661,2025-03-10T14:18:51.304838-07:00,1002.2581176757812,10.733789,10733.789 +28662,2025-03-10T14:19:02.037009-07:00,1002.27001953125,10.732171,10732.171 +28663,2025-03-10T14:19:12.768982-07:00,1002.2779541015625,10.731973,10731.973 +28664,2025-03-10T14:19:23.497413-07:00,1002.2581176757812,10.728431,10728.431 +28665,2025-03-10T14:19:34.233969-07:00,1002.25146484375,10.736556,10736.556 +28666,2025-03-10T14:19:44.963189-07:00,1002.2647094726562,10.72922,10729.22 +28667,2025-03-10T14:19:55.691187-07:00,1002.3023681640625,10.727998,10727.998 +28668,2025-03-10T14:20:06.422148-07:00,1002.274169921875,10.730961,10730.961 +28669,2025-03-10T14:20:17.150062-07:00,1002.2890625,10.727914,10727.914 +28670,2025-03-10T14:20:27.876421-07:00,1002.2559204101562,10.726359,10726.359 +28671,2025-03-10T14:20:38.612280-07:00,1002.265380859375,10.735859,10735.859 +28672,2025-03-10T14:20:49.346210-07:00,1002.2323608398438,10.73393,10733.93 +28673,2025-03-10T14:21:00.078132-07:00,1002.2684326171875,10.731922,10731.922 +28674,2025-03-10T14:21:10.806972-07:00,1002.260498046875,10.72884,10728.84 +28675,2025-03-10T14:21:21.532090-07:00,1002.25732421875,10.725118,10725.118 +28676,2025-03-10T14:21:32.270784-07:00,1002.2567138671875,10.738694,10738.694 +28677,2025-03-10T14:21:43.000001-07:00,1002.2932739257812,10.729217,10729.217 +28678,2025-03-10T14:21:53.722178-07:00,1002.2725219726562,10.722177,10722.177 +28679,2025-03-10T14:22:04.458125-07:00,1002.2784423828125,10.735947,10735.947 +28680,2025-03-10T14:22:15.188196-07:00,1002.2725830078125,10.730071,10730.071 +28681,2025-03-10T14:22:25.917969-07:00,1002.2485961914062,10.729773,10729.773 +28682,2025-03-10T14:22:36.649148-07:00,1002.2706298828125,10.731179,10731.179 +28683,2025-03-10T14:22:47.370129-07:00,1002.2686157226562,10.720981,10720.981 +28684,2025-03-10T14:22:58.099021-07:00,1002.287353515625,10.728892,10728.892 +28685,2025-03-10T14:23:08.831000-07:00,1002.2627563476562,10.731979,10731.979 +28686,2025-03-10T14:23:19.562968-07:00,1002.2868041992188,10.731968,10731.968 +28687,2025-03-10T14:23:30.291455-07:00,1002.2676391601562,10.728487,10728.487 +28688,2025-03-10T14:23:41.027732-07:00,1002.255126953125,10.736277,10736.277 +28689,2025-03-10T14:23:51.748972-07:00,1002.2608032226562,10.72124,10721.24 +28690,2025-03-10T14:24:02.490364-07:00,1002.2496948242188,10.741392,10741.392 +28691,2025-03-10T14:24:13.221153-07:00,1002.251708984375,10.730789,10730.789 +28692,2025-03-10T14:24:23.952975-07:00,1002.26220703125,10.731822,10731.822 +28693,2025-03-10T14:24:34.683144-07:00,1002.222900390625,10.730169,10730.169 +28694,2025-03-10T14:24:45.418804-07:00,1002.2281494140625,10.73566,10735.66 +28695,2025-03-10T14:24:56.148969-07:00,1002.225341796875,10.730165,10730.165 +28696,2025-03-10T14:25:06.881986-07:00,1002.2368774414062,10.733017,10733.017 +28697,2025-03-10T14:25:17.606407-07:00,1002.2274169921875,10.724421,10724.421 +28698,2025-03-10T14:25:28.337207-07:00,1002.2257080078125,10.7308,10730.8 +28699,2025-03-10T14:25:39.079043-07:00,1002.222900390625,10.741836,10741.836 +28700,2025-03-10T14:25:49.807240-07:00,1002.2145385742188,10.728197,10728.197 +28701,2025-03-10T14:26:00.535113-07:00,1002.2013549804688,10.727873,10727.873 +28702,2025-03-10T14:26:11.276131-07:00,1002.2079467773438,10.741018,10741.018 +28703,2025-03-10T14:26:21.997974-07:00,1002.2162475585938,10.721843,10721.843 +28704,2025-03-10T14:26:32.730625-07:00,1002.209716796875,10.732651,10732.651 +28705,2025-03-10T14:26:43.462971-07:00,1002.2111206054688,10.732346,10732.346 +28706,2025-03-10T14:26:54.190174-07:00,1002.1846313476562,10.727203,10727.203 +28707,2025-03-10T14:27:04.930363-07:00,1002.1793823242188,10.740189,10740.189 +28708,2025-03-10T14:27:15.653974-07:00,1002.1693115234375,10.723611,10723.611 +28709,2025-03-10T14:27:26.384999-07:00,1002.1626586914062,10.731025,10731.025 +28710,2025-03-10T14:27:37.114161-07:00,1002.1310424804688,10.729162,10729.162 +28711,2025-03-10T14:27:47.843973-07:00,1002.1671752929688,10.729812,10729.812 +28712,2025-03-10T14:27:58.576246-07:00,1002.1671752929688,10.732273,10732.273 +28713,2025-03-10T14:28:09.312810-07:00,1002.1619262695312,10.736564,10736.564 +28714,2025-03-10T14:28:20.037110-07:00,1002.163330078125,10.7243,10724.3 +28715,2025-03-10T14:28:30.768193-07:00,1002.17626953125,10.731083,10731.083 +28716,2025-03-10T14:28:41.510083-07:00,1002.149658203125,10.74189,10741.89 +28717,2025-03-10T14:28:52.236000-07:00,1002.165771484375,10.725917,10725.917 +28718,2025-03-10T14:29:02.973972-07:00,1002.1688842773438,10.737972,10737.972 +28719,2025-03-10T14:29:13.704164-07:00,1002.1570434570312,10.730192,10730.192 +28720,2025-03-10T14:29:24.432659-07:00,1002.1468505859375,10.728495,10728.495 +28721,2025-03-10T14:29:35.165119-07:00,1002.15283203125,10.73246,10732.46 +28722,2025-03-10T14:29:45.900269-07:00,1002.1542358398438,10.73515,10735.15 +28723,2025-03-10T14:29:56.633143-07:00,1002.165283203125,10.732874,10732.874 +28724,2025-03-10T14:30:07.366100-07:00,1002.1749877929688,10.732957,10732.957 +28725,2025-03-10T14:30:18.093348-07:00,1002.1565551757812,10.727248,10727.248 +28726,2025-03-10T14:30:28.826484-07:00,1002.1517333984375,10.733136,10733.136 +28727,2025-03-10T14:30:39.565414-07:00,1002.1296997070312,10.73893,10738.93 +28728,2025-03-10T14:30:50.300977-07:00,1002.1475219726562,10.735563,10735.563 +28729,2025-03-10T14:31:01.027082-07:00,1002.1582641601562,10.726105,10726.105 +28730,2025-03-10T14:31:11.761456-07:00,1002.1780395507812,10.734374,10734.374 +28731,2025-03-10T14:31:22.493969-07:00,1002.166259765625,10.732513,10732.513 +28732,2025-03-10T14:31:33.233354-07:00,1002.1609497070312,10.739385,10739.385 +28733,2025-03-10T14:31:43.961146-07:00,1002.1640625,10.727792,10727.792 +28734,2025-03-10T14:31:54.702157-07:00,1002.1406860351562,10.741011,10741.011 +28735,2025-03-10T14:32:05.434968-07:00,1002.1765747070312,10.732811,10732.811 +28736,2025-03-10T14:32:16.165378-07:00,1002.1612548828125,10.73041,10730.41 +28737,2025-03-10T14:32:26.901191-07:00,1002.1671142578125,10.735813,10735.813 +28738,2025-03-10T14:32:37.638148-07:00,1002.12744140625,10.736957,10736.957 +28739,2025-03-10T14:32:48.370180-07:00,1002.120361328125,10.732032,10732.032 +28740,2025-03-10T14:32:59.107033-07:00,1002.090087890625,10.736853,10736.853 +28741,2025-03-10T14:33:09.840176-07:00,1002.0719604492188,10.733143,10733.143 +28742,2025-03-10T14:33:20.576168-07:00,1002.095947265625,10.735992,10735.992 +28743,2025-03-10T14:33:31.309972-07:00,1002.0725708007812,10.733804,10733.804 +28744,2025-03-10T14:33:42.037194-07:00,1002.0474853515625,10.727222,10727.222 +28745,2025-03-10T14:33:42.843675-07:00,1002.07568359375,0.806481,806.481 +28746,2025-03-10T14:33:52.780003-07:00,1002.060302734375,9.936328,9936.328 +28747,2025-03-10T14:34:03.516369-07:00,1002.047119140625,10.736366,10736.366 +28748,2025-03-10T14:34:14.250975-07:00,1002.0888061523438,10.734606,10734.606 +28749,2025-03-10T14:34:24.983051-07:00,1002.080078125,10.732076,10732.076 +28750,2025-03-10T14:34:35.714194-07:00,1002.081787109375,10.731143,10731.143 +28751,2025-03-10T14:34:46.452156-07:00,1002.05322265625,10.737962,10737.962 +28752,2025-03-10T14:34:57.185706-07:00,1002.0493774414062,10.73355,10733.55 +28753,2025-03-10T14:35:07.923972-07:00,1002.0621948242188,10.738266,10738.266 +28754,2025-03-10T14:35:18.661978-07:00,1002.0582885742188,10.738006,10738.006 +28755,2025-03-10T14:35:29.389420-07:00,1002.0384521484375,10.727442,10727.442 +28756,2025-03-10T14:35:40.133242-07:00,1002.0509643554688,10.743822,10743.822 +28757,2025-03-10T14:35:50.862037-07:00,1002.040771484375,10.728795,10728.795 +28758,2025-03-10T14:36:01.604049-07:00,1002.0518798828125,10.742012,10742.012 +28759,2025-03-10T14:36:12.340156-07:00,1002.0201416015625,10.736107,10736.107 +28760,2025-03-10T14:36:23.080155-07:00,1002.0365600585938,10.739999,10739.999 +28761,2025-03-10T14:36:33.818002-07:00,1002.0078735351562,10.737847,10737.847 +28762,2025-03-10T14:36:44.555455-07:00,1002.025634765625,10.737453,10737.453 +28763,2025-03-10T14:36:55.290667-07:00,1001.9872436523438,10.735212,10735.212 +28764,2025-03-10T14:37:06.021190-07:00,1002.0115356445312,10.730523,10730.523 +28765,2025-03-10T14:37:16.749976-07:00,1001.9962768554688,10.728786,10728.786 +28766,2025-03-10T14:37:27.484969-07:00,1001.9728393554688,10.734993,10734.993 +28767,2025-03-10T14:37:38.227066-07:00,1001.982177734375,10.742097,10742.097 +28768,2025-03-10T14:37:48.965225-07:00,1001.9703369140625,10.738159,10738.159 +28769,2025-03-10T14:37:59.691976-07:00,1001.9884643554688,10.726751,10726.751 +28770,2025-03-10T14:38:10.434974-07:00,1002.0046997070312,10.742998,10742.998 +28771,2025-03-10T14:38:21.176161-07:00,1001.9879760742188,10.741187,10741.187 +28772,2025-03-10T14:38:31.906034-07:00,1001.9774780273438,10.729873,10729.873 +28773,2025-03-10T14:38:42.648144-07:00,1001.9708862304688,10.74211,10742.11 +28774,2025-03-10T14:38:53.385184-07:00,1001.9832763671875,10.73704,10737.04 +28775,2025-03-10T14:39:04.122045-07:00,1001.9598999023438,10.736861,10736.861 +28776,2025-03-10T14:39:14.857971-07:00,1001.9564208984375,10.735926,10735.926 +28777,2025-03-10T14:39:25.588773-07:00,1001.95703125,10.730802,10730.802 +28778,2025-03-10T14:39:36.329299-07:00,1001.97021484375,10.740526,10740.526 +28779,2025-03-10T14:39:47.066003-07:00,1001.949951171875,10.736704,10736.704 +28780,2025-03-10T14:39:57.798019-07:00,1001.9513549804688,10.732016,10732.016 +28781,2025-03-10T14:40:08.536974-07:00,1001.9623413085938,10.738955,10738.955 +28782,2025-03-10T14:40:19.272185-07:00,1001.9386596679688,10.735211,10735.211 +28783,2025-03-10T14:40:29.998217-07:00,1001.9615478515625,10.726032,10726.032 +28784,2025-03-10T14:40:40.740038-07:00,1001.9581298828125,10.741821,10741.821 +28785,2025-03-10T14:40:51.473481-07:00,1001.95947265625,10.733443,10733.443 +28786,2025-03-10T14:41:02.214614-07:00,1001.9573364257812,10.741133,10741.133 +28787,2025-03-10T14:41:12.943972-07:00,1001.93359375,10.729358,10729.358 +28788,2025-03-10T14:41:23.683972-07:00,1001.9285888671875,10.74,10740.0 +28789,2025-03-10T14:41:34.419978-07:00,1001.9000244140625,10.736006,10736.006 +28790,2025-03-10T14:41:45.149159-07:00,1001.8992309570312,10.729181,10729.181 +28791,2025-03-10T14:41:55.889000-07:00,1001.9154663085938,10.739841,10739.841 +28792,2025-03-10T14:42:06.622974-07:00,1001.9199829101562,10.733974,10733.974 +28793,2025-03-10T14:42:17.363009-07:00,1001.8683471679688,10.740035,10740.035 +28794,2025-03-10T14:42:28.103996-07:00,1001.9219360351562,10.740987,10740.987 +28795,2025-03-10T14:42:38.839300-07:00,1001.8984985351562,10.735304,10735.304 +28796,2025-03-10T14:42:49.572977-07:00,1001.9043579101562,10.733677,10733.677 +28797,2025-03-10T14:43:00.311976-07:00,1001.8875732421875,10.738999,10738.999 +28798,2025-03-10T14:43:11.041387-07:00,1001.8704833984375,10.729411,10729.411 +28799,2025-03-10T14:43:21.781036-07:00,1001.8765869140625,10.739649,10739.649 +28800,2025-03-10T14:43:32.527068-07:00,1001.8515014648438,10.746032,10746.032 +28801,2025-03-10T14:43:43.255125-07:00,1001.89208984375,10.728057,10728.057 +28802,2025-03-10T14:43:53.998185-07:00,1001.89404296875,10.74306,10743.06 +28803,2025-03-10T14:44:04.731977-07:00,1001.8629760742188,10.733792,10733.792 +28804,2025-03-10T14:44:15.473366-07:00,1001.8900146484375,10.741389,10741.389 +28805,2025-03-10T14:44:26.210154-07:00,1001.87451171875,10.736788,10736.788 +28806,2025-03-10T14:44:36.946616-07:00,1001.863037109375,10.736462,10736.462 +28807,2025-03-10T14:44:47.686132-07:00,1001.8807983398438,10.739516,10739.516 +28808,2025-03-10T14:44:58.425972-07:00,1001.8848266601562,10.73984,10739.84 +28809,2025-03-10T14:45:09.168975-07:00,1001.8534545898438,10.743003,10743.003 +28810,2025-03-10T14:45:19.907130-07:00,1001.8724975585938,10.738155,10738.155 +28811,2025-03-10T14:45:30.646067-07:00,1001.8755493164062,10.738937,10738.937 +28812,2025-03-10T14:45:41.381999-07:00,1001.8724975585938,10.735932,10735.932 +28813,2025-03-10T14:45:52.121972-07:00,1001.8703002929688,10.739973,10739.973 +28814,2025-03-10T14:46:02.865974-07:00,1001.8504638671875,10.744002,10744.002 +28815,2025-03-10T14:46:13.599973-07:00,1001.8584594726562,10.733999,10733.999 +28816,2025-03-10T14:46:24.337977-07:00,1001.8695068359375,10.738004,10738.004 +28817,2025-03-10T14:46:35.070050-07:00,1001.86669921875,10.732073,10732.073 +28818,2025-03-10T14:46:45.806013-07:00,1001.86669921875,10.735963,10735.963 +28819,2025-03-10T14:46:56.544975-07:00,1001.8292236328125,10.738962,10738.962 +28820,2025-03-10T14:47:07.286973-07:00,1001.8340454101562,10.741998,10741.998 +28821,2025-03-10T14:47:18.012789-07:00,1001.832763671875,10.725816,10725.816 +28822,2025-03-10T14:47:28.757195-07:00,1001.8275146484375,10.744406,10744.406 +28823,2025-03-10T14:47:39.490977-07:00,1001.82470703125,10.733782,10733.782 +28824,2025-03-10T14:47:50.225977-07:00,1001.8526611328125,10.735,10735.0 +28825,2025-03-10T14:48:00.962801-07:00,1001.860595703125,10.736824,10736.824 +28826,2025-03-10T14:48:11.695973-07:00,1001.8407592773438,10.733172,10733.172 +28827,2025-03-10T14:48:22.441970-07:00,1001.8703002929688,10.745997,10745.997 +28828,2025-03-10T14:48:33.172974-07:00,1001.8292236328125,10.731004,10731.004 +28829,2025-03-10T14:48:43.909050-07:00,1001.838623046875,10.736076,10736.076 +28830,2025-03-10T14:48:54.647073-07:00,1001.889404296875,10.738023,10738.023 +28831,2025-03-10T14:49:05.391145-07:00,1001.8601684570312,10.744072,10744.072 +28832,2025-03-10T14:49:16.129002-07:00,1001.889404296875,10.737857,10737.857 +28833,2025-03-10T14:49:26.862978-07:00,1001.889404296875,10.733976,10733.976 +28834,2025-03-10T14:49:37.599125-07:00,1001.884033203125,10.736147,10736.147 +28835,2025-03-10T14:49:48.337233-07:00,1001.8593139648438,10.738108,10738.108 +28836,2025-03-10T14:49:59.075161-07:00,1001.8460693359375,10.737928,10737.928 +28837,2025-03-10T14:50:09.818440-07:00,1001.8526611328125,10.743279,10743.279 +28838,2025-03-10T14:50:20.555032-07:00,1001.8407592773438,10.736592,10736.592 +28839,2025-03-10T14:50:31.298589-07:00,1001.865966796875,10.743557,10743.557 +28840,2025-03-10T14:50:42.033976-07:00,1001.857666015625,10.735387,10735.387 +28841,2025-03-10T14:50:52.768342-07:00,1001.8593139648438,10.734366,10734.366 +28842,2025-03-10T14:51:03.499325-07:00,1001.8195190429688,10.730983,10730.983 +28843,2025-03-10T14:51:14.241987-07:00,1001.8341674804688,10.742662,10742.662 +28844,2025-03-10T14:51:24.977239-07:00,1001.8571166992188,10.735252,10735.252 +28845,2025-03-10T14:51:35.721398-07:00,1001.8465576171875,10.744159,10744.159 +28846,2025-03-10T14:51:46.457161-07:00,1001.8284301757812,10.735763,10735.763 +28847,2025-03-10T14:51:57.195365-07:00,1001.8046875,10.738204,10738.204 +28848,2025-03-10T14:52:07.935974-07:00,1001.80908203125,10.740609,10740.609 +28849,2025-03-10T14:52:18.677178-07:00,1001.769287109375,10.741204,10741.204 +28850,2025-03-10T14:52:29.421980-07:00,1001.7974853515625,10.744802,10744.802 +28851,2025-03-10T14:52:40.156970-07:00,1001.7935791015625,10.73499,10734.99 +28852,2025-03-10T14:52:50.893118-07:00,1001.7966918945312,10.736148,10736.148 +28853,2025-03-10T14:53:01.714095-07:00,1001.7980346679688,10.820977,10820.977 +28854,2025-03-10T14:53:12.454008-07:00,1001.8060913085938,10.739913,10739.913 +28855,2025-03-10T14:53:23.188976-07:00,1001.7745971679688,10.734968,10734.968 +28856,2025-03-10T14:53:33.928008-07:00,1001.7839965820312,10.739032,10739.032 +28857,2025-03-10T14:53:44.665166-07:00,1001.7494506835938,10.737158,10737.158 +28858,2025-03-10T14:54:06.139975-07:00,1001.7684936523438,21.474809,21474.809 +28859,2025-03-10T14:54:16.879151-07:00,1001.7848510742188,10.739176,10739.176 +28860,2025-03-10T14:54:27.613976-07:00,1001.7611083984375,10.734825,10734.825 +28861,2025-03-10T14:54:38.352181-07:00,1001.7427978515625,10.738205,10738.205 +28862,2025-03-10T14:54:49.092148-07:00,1001.7508544921875,10.739967,10739.967 +28863,2025-03-10T14:54:59.828507-07:00,1001.7817993164062,10.736359,10736.359 +28864,2025-03-10T14:55:10.566972-07:00,1001.7190551757812,10.738465,10738.465 +28865,2025-03-10T14:55:21.298208-07:00,1001.775146484375,10.731236,10731.236 +28866,2025-03-10T14:55:32.044211-07:00,1001.747314453125,10.746003,10746.003 +28867,2025-03-10T14:55:42.779923-07:00,1001.7605590820312,10.735712,10735.712 +28868,2025-03-10T14:55:53.513977-07:00,1001.7265625,10.734054,10734.054 +28869,2025-03-10T14:56:04.246177-07:00,1001.7199096679688,10.7322,10732.2 +28870,2025-03-10T14:56:14.989981-07:00,1001.7406005859375,10.743804,10743.804 +28871,2025-03-10T14:56:25.731055-07:00,1001.7575073242188,10.741074,10741.074 +28872,2025-03-10T14:56:36.470045-07:00,1001.74365234375,10.73899,10738.99 +28873,2025-03-10T14:56:47.204031-07:00,1001.732666015625,10.733986,10733.986 +28874,2025-03-10T14:56:57.939979-07:00,1001.7626342773438,10.735948,10735.948 +28875,2025-03-10T14:57:08.669252-07:00,1001.7568969726562,10.729273,10729.273 +28876,2025-03-10T14:57:19.405399-07:00,1001.736083984375,10.736147,10736.147 +28877,2025-03-10T14:57:30.144057-07:00,1001.7369384765625,10.738658,10738.658 +28878,2025-03-10T14:57:40.884019-07:00,1001.7606811523438,10.739962,10739.962 +28879,2025-03-10T14:57:51.624228-07:00,1001.76123046875,10.740209,10740.209 +28880,2025-03-10T14:58:02.351981-07:00,1001.7435302734375,10.727753,10727.753 +28881,2025-03-10T14:58:13.092099-07:00,1001.7548217773438,10.740118,10740.118 +28882,2025-03-10T14:58:23.830332-07:00,1001.748779296875,10.738233,10738.233 +28883,2025-03-10T14:58:34.559979-07:00,1001.7539672851562,10.729647,10729.647 +28884,2025-03-10T14:58:45.301997-07:00,1001.75830078125,10.742018,10742.018 +28885,2025-03-10T14:58:56.036158-07:00,1001.766845703125,10.734161,10734.161 +28886,2025-03-10T14:59:06.766743-07:00,1001.7874755859375,10.730585,10730.585 +28887,2025-03-10T14:59:17.505978-07:00,1001.7764282226562,10.739235,10739.235 +28888,2025-03-10T14:59:28.242977-07:00,1001.7887573242188,10.736999,10736.999 +28889,2025-03-10T14:59:38.973981-07:00,1001.7776489257812,10.731004,10731.004 +28890,2025-03-10T14:59:49.715195-07:00,1001.76171875,10.741214,10741.214 +28891,2025-03-10T15:00:00.453027-07:00,1001.7550659179688,10.737832,10737.832 +28892,2025-03-10T15:00:11.187281-07:00,1001.745361328125,10.734254,10734.254 +28893,2025-03-10T15:00:21.928174-07:00,1001.7691650390625,10.740893,10740.893 +28894,2025-03-10T15:00:32.665998-07:00,1001.7572631835938,10.737824,10737.824 +28895,2025-03-10T15:00:43.398099-07:00,1001.7594604492188,10.732101,10732.101 +28896,2025-03-10T15:00:54.140079-07:00,1001.76611328125,10.74198,10741.98 +28897,2025-03-10T15:01:04.887800-07:00,1001.7726440429688,10.747721,10747.721 +28898,2025-03-10T15:01:15.620084-07:00,1001.779296875,10.732284,10732.284 +28899,2025-03-10T15:01:26.363284-07:00,1001.744873046875,10.7432,10743.2 +28900,2025-03-10T15:01:37.107981-07:00,1001.7514038085938,10.744697,10744.697 +28901,2025-03-10T15:01:47.843983-07:00,1001.7625122070312,10.736002,10736.002 +28902,2025-03-10T15:01:58.583158-07:00,1001.7904052734375,10.739175,10739.175 +28903,2025-03-10T15:02:09.325160-07:00,1001.7704467773438,10.742002,10742.002 +28904,2025-03-10T15:02:20.068033-07:00,1001.7785034179688,10.742873,10742.873 +28905,2025-03-10T15:02:30.810040-07:00,1001.7537231445312,10.742007,10742.007 +28906,2025-03-10T15:02:41.545023-07:00,1001.736572265625,10.734983,10734.983 +28907,2025-03-10T15:02:52.291980-07:00,1001.7689208984375,10.746957,10746.957 +28908,2025-03-10T15:03:03.034187-07:00,1001.742431640625,10.742207,10742.207 +28909,2025-03-10T15:03:13.775500-07:00,1001.7521362304688,10.741313,10741.313 +28910,2025-03-10T15:03:24.523158-07:00,1001.7468872070312,10.747658,10747.658 +28911,2025-03-10T15:03:35.255171-07:00,1001.7366943359375,10.732013,10732.013 +28912,2025-03-10T15:03:46.002169-07:00,1001.7079467773438,10.746998,10746.998 +28913,2025-03-10T15:03:56.745187-07:00,1001.7323608398438,10.743018,10743.018 +28914,2025-03-10T15:04:07.485978-07:00,1001.720458984375,10.740791,10740.791 +28915,2025-03-10T15:04:18.218371-07:00,1001.6642456054688,10.732393,10732.393 +28916,2025-03-10T15:04:28.966055-07:00,1001.728271484375,10.747684,10747.684 +28917,2025-03-10T15:04:39.706137-07:00,1001.6978759765625,10.740082,10740.082 +28918,2025-03-10T15:04:50.453978-07:00,1001.72607421875,10.747841,10747.841 +28919,2025-03-10T15:05:01.192160-07:00,1001.7371826171875,10.738182,10738.182 +28920,2025-03-10T15:05:11.927013-07:00,1001.7120361328125,10.734853,10734.853 +28921,2025-03-10T15:05:22.664977-07:00,1001.6841430664062,10.737964,10737.964 +28922,2025-03-10T15:05:33.407015-07:00,1001.7164916992188,10.742038,10742.038 +28923,2025-03-10T15:05:44.147023-07:00,1001.720947265625,10.740008,10740.008 +28924,2025-03-10T15:05:54.890118-07:00,1001.76123046875,10.743095,10743.095 +28925,2025-03-10T15:06:05.628996-07:00,1001.7407836914062,10.738878,10738.878 +28926,2025-03-10T15:06:16.367164-07:00,1001.6919555664062,10.738168,10738.168 +28927,2025-03-10T15:06:27.107008-07:00,1001.7290649414062,10.739844,10739.844 +28928,2025-03-10T15:06:37.854317-07:00,1001.7334594726562,10.747309,10747.309 +28929,2025-03-10T15:06:48.599982-07:00,1001.7207641601562,10.745665,10745.665 +28930,2025-03-10T15:06:59.331982-07:00,1001.7132568359375,10.732,10732.0 +28931,2025-03-10T15:07:10.080982-07:00,1001.7105712890625,10.749,10749.0 +28932,2025-03-10T15:07:20.819207-07:00,1001.7177124023438,10.738225,10738.225 +28933,2025-03-10T15:07:31.557056-07:00,1001.7265625,10.737849,10737.849 +28934,2025-03-10T15:07:42.295288-07:00,1001.7380981445312,10.738232,10738.232 +28935,2025-03-10T15:07:53.041693-07:00,1001.7045288085938,10.746405,10746.405 +28936,2025-03-10T15:08:03.784176-07:00,1001.7081298828125,10.742483,10742.483 +28937,2025-03-10T15:08:14.528529-07:00,1001.7045288085938,10.744353,10744.353 +28938,2025-03-10T15:08:25.268194-07:00,1001.72607421875,10.739665,10739.665 +28939,2025-03-10T15:08:36.011980-07:00,1001.7185668945312,10.743786,10743.786 +28940,2025-03-10T15:08:46.750033-07:00,1001.705810546875,10.738053,10738.053 +28941,2025-03-10T15:08:57.500327-07:00,1001.705322265625,10.750294,10750.294 +28942,2025-03-10T15:09:08.232183-07:00,1001.7137451171875,10.731856,10731.856 +28943,2025-03-10T15:09:18.979367-07:00,1001.7424926757812,10.747184,10747.184 +28944,2025-03-10T15:09:29.726196-07:00,1001.724853515625,10.746829,10746.829 +28945,2025-03-10T15:09:40.472165-07:00,1001.72705078125,10.745969,10745.969 +28946,2025-03-10T15:09:51.217180-07:00,1001.7181396484375,10.745015,10745.015 +28947,2025-03-10T15:10:01.958980-07:00,1001.7335815429688,10.7418,10741.8 +28948,2025-03-10T15:10:12.697265-07:00,1001.7423706054688,10.738285,10738.285 +28949,2025-03-10T15:10:23.439141-07:00,1001.741455078125,10.741876,10741.876 +28950,2025-03-10T15:10:34.188331-07:00,1001.768798828125,10.74919,10749.19 +28951,2025-03-10T15:10:44.934977-07:00,1001.7281494140625,10.746646,10746.646 +28952,2025-03-10T15:10:55.671163-07:00,1001.7285766601562,10.736186,10736.186 +28953,2025-03-10T15:11:06.412985-07:00,1001.729736328125,10.741822,10741.822 +28954,2025-03-10T15:11:17.158981-07:00,1001.7421875,10.745996,10745.996 +28955,2025-03-10T15:11:27.899124-07:00,1001.7399291992188,10.740143,10740.143 +28956,2025-03-10T15:11:38.650063-07:00,1001.7142333984375,10.750939,10750.939 +28957,2025-03-10T15:11:49.385381-07:00,1001.7332153320312,10.735318,10735.318 +28958,2025-03-10T15:12:00.128009-07:00,1001.7190551757812,10.742628,10742.628 +28959,2025-03-10T15:12:10.879220-07:00,1001.7247924804688,10.751211,10751.211 +28960,2025-03-10T15:12:21.625358-07:00,1001.7189331054688,10.746138,10746.138 +28961,2025-03-10T15:12:32.370109-07:00,1001.7167358398438,10.744751,10744.751 +28962,2025-03-10T15:12:43.111983-07:00,1001.7489013671875,10.741874,10741.874 +28963,2025-03-10T15:12:53.858982-07:00,1001.7215576171875,10.746999,10746.999 +28964,2025-03-10T15:13:04.613307-07:00,1001.7341918945312,10.754325,10754.325 +28965,2025-03-10T15:13:15.349980-07:00,1001.7267456054688,10.736673,10736.673 +28966,2025-03-10T15:13:26.100007-07:00,1001.7058715820312,10.750027,10750.027 +28967,2025-03-10T15:13:36.851046-07:00,1001.682373046875,10.751039,10751.039 +28968,2025-03-10T15:13:47.591097-07:00,1001.70361328125,10.740051,10740.051 +28969,2025-03-10T15:13:58.337197-07:00,1001.7079467773438,10.7461,10746.1 +28970,2025-03-10T15:14:09.087741-07:00,1001.6837768554688,10.750544,10750.544 +28971,2025-03-10T15:14:19.841050-07:00,1001.6757202148438,10.753309,10753.309 +28972,2025-03-10T15:14:30.586196-07:00,1001.7006225585938,10.745146,10745.146 +28973,2025-03-10T15:14:41.327984-07:00,1001.69482421875,10.741788,10741.788 +28974,2025-03-10T15:14:52.081982-07:00,1001.669189453125,10.753998,10753.998 +28975,2025-03-10T15:15:02.831186-07:00,1001.6878051757812,10.749204,10749.204 +28976,2025-03-10T15:15:13.569978-07:00,1001.716552734375,10.738792,10738.792 +28977,2025-03-10T15:15:24.318394-07:00,1001.7254638671875,10.748416,10748.416 +28978,2025-03-10T15:15:35.063367-07:00,1001.6878662109375,10.744973,10744.973 +28979,2025-03-10T15:15:45.810157-07:00,1001.7047729492188,10.74679,10746.79 +28980,2025-03-10T15:15:56.554253-07:00,1001.6990356445312,10.744096,10744.096 +28981,2025-03-10T15:16:07.302279-07:00,1001.6893920898438,10.748026,10748.026 +28982,2025-03-10T15:16:18.054038-07:00,1001.677001953125,10.751759,10751.759 +28983,2025-03-10T15:16:28.804188-07:00,1001.672607421875,10.75015,10750.15 +28984,2025-03-10T15:16:39.555290-07:00,1001.65625,10.751102,10751.102 +28985,2025-03-10T15:16:50.305976-07:00,1001.6336669921875,10.750686,10750.686 +28986,2025-03-10T15:17:01.055267-07:00,1001.6425170898438,10.749291,10749.291 +28987,2025-03-10T15:17:11.800983-07:00,1001.6412353515625,10.745716,10745.716 +28988,2025-03-10T15:17:22.549976-07:00,1001.6063842773438,10.748993,10748.993 +28989,2025-03-10T15:17:33.292498-07:00,1001.6182861328125,10.742522,10742.522 +28990,2025-03-10T15:17:44.045975-07:00,1001.6461791992188,10.753477,10753.477 +28991,2025-03-10T15:17:54.800126-07:00,1001.6182861328125,10.754151,10754.151 +28992,2025-03-10T15:18:05.550008-07:00,1001.6102905273438,10.749882,10749.882 +28993,2025-03-10T15:18:16.297004-07:00,1001.6395263671875,10.746996,10746.996 +28994,2025-03-10T15:18:27.041199-07:00,1001.60498046875,10.744195,10744.195 +28995,2025-03-10T15:18:37.781559-07:00,1001.6116333007812,10.74036,10740.36 +28996,2025-03-10T15:18:48.532038-07:00,1001.626220703125,10.750479,10750.479 +28997,2025-03-10T15:18:59.273989-07:00,1001.6448364257812,10.741951,10741.951 +28998,2025-03-10T15:19:10.019977-07:00,1001.626220703125,10.745988,10745.988 +28999,2025-03-10T15:19:20.761994-07:00,1001.6146850585938,10.742017,10742.017 +29000,2025-03-10T15:19:31.508542-07:00,1001.6107788085938,10.746548,10746.548 +29001,2025-03-10T15:19:42.255205-07:00,1001.62841796875,10.746663,10746.663 +29002,2025-03-10T15:19:53.009147-07:00,1001.6004638671875,10.753942,10753.942 +29003,2025-03-10T15:20:03.747979-07:00,1001.5982666015625,10.738832,10738.832 +29004,2025-03-10T15:20:14.495669-07:00,1001.607666015625,10.74769,10747.69 +29005,2025-03-10T15:20:25.241988-07:00,1001.6026611328125,10.746319,10746.319 +29006,2025-03-10T15:20:35.992309-07:00,1001.5870971679688,10.750321,10750.321 +29007,2025-03-10T15:20:46.738979-07:00,1001.5848388671875,10.74667,10746.67 +29008,2025-03-10T15:20:57.488076-07:00,1001.5582885742188,10.749097,10749.097 +29009,2025-03-10T15:21:08.237413-07:00,1001.5693969726562,10.749337,10749.337 +29010,2025-03-10T15:21:18.990110-07:00,1001.5601806640625,10.752697,10752.697 +29011,2025-03-10T15:21:29.741984-07:00,1001.5831298828125,10.751874,10751.874 +29012,2025-03-10T15:21:40.496190-07:00,1001.599365234375,10.754206,10754.206 +29013,2025-03-10T15:21:51.239189-07:00,1001.5918579101562,10.742999,10742.999 +29014,2025-03-10T15:22:01.995138-07:00,1001.5697021484375,10.755949,10755.949 +29015,2025-03-10T15:22:12.734983-07:00,1001.552490234375,10.739845,10739.845 +29016,2025-03-10T15:22:23.484008-07:00,1001.5435791015625,10.749025,10749.025 +29017,2025-03-10T15:22:34.239218-07:00,1001.5709228515625,10.75521,10755.21 +29018,2025-03-10T15:22:44.986223-07:00,1001.5606079101562,10.747005,10747.005 +29019,2025-03-10T15:22:55.731980-07:00,1001.5584106445312,10.745757,10745.757 +29020,2025-03-10T15:23:06.479317-07:00,1001.5359497070312,10.747337,10747.337 +29021,2025-03-10T15:23:17.219982-07:00,1001.5817260742188,10.740665,10740.665 +29022,2025-03-10T15:23:27.968990-07:00,1001.5662231445312,10.749008,10749.008 +29023,2025-03-10T15:23:38.717978-07:00,1001.5772094726562,10.748988,10748.988 +29024,2025-03-10T15:23:49.465994-07:00,1001.5895385742188,10.748016,10748.016 +29025,2025-03-10T15:24:00.210202-07:00,1001.5510864257812,10.744208,10744.208 +29026,2025-03-10T15:24:10.953046-07:00,1001.583740234375,10.742844,10742.844 +29027,2025-03-10T15:24:21.705010-07:00,1001.5748291015625,10.751964,10751.964 +29028,2025-03-10T15:24:32.457042-07:00,1001.6007690429688,10.752032,10752.032 +29029,2025-03-10T15:24:43.204976-07:00,1001.6011962890625,10.747934,10747.934 +29030,2025-03-10T15:24:53.963009-07:00,1001.5826416015625,10.758033,10758.033 +29031,2025-03-10T15:25:04.708051-07:00,1001.5634155273438,10.745042,10745.042 +29032,2025-03-10T15:25:15.462177-07:00,1001.5639038085938,10.754126,10754.126 +29033,2025-03-10T15:25:26.206577-07:00,1001.592529296875,10.7444,10744.4 +29034,2025-03-10T15:25:36.954348-07:00,1001.5689086914062,10.747771,10747.771 +29035,2025-03-10T15:25:47.707161-07:00,1001.599853515625,10.752813,10752.813 +29036,2025-03-10T15:25:58.456174-07:00,1001.580322265625,10.749013,10749.013 +29037,2025-03-10T15:26:09.207171-07:00,1001.6143188476562,10.750997,10750.997 +29038,2025-03-10T15:26:19.953171-07:00,1001.63330078125,10.746,10746.0 +29039,2025-03-10T15:26:30.699393-07:00,1001.6376342773438,10.746222,10746.222 +29040,2025-03-10T15:26:41.452115-07:00,1001.6353149414062,10.752722,10752.722 +29041,2025-03-10T15:26:52.204984-07:00,1001.618408203125,10.752869,10752.869 +29042,2025-03-10T15:27:02.954200-07:00,1001.637451171875,10.749216,10749.216 +29043,2025-03-10T15:27:13.697007-07:00,1001.6484375,10.742807,10742.807 +29044,2025-03-10T15:27:24.452122-07:00,1001.67041015625,10.755115,10755.115 +29045,2025-03-10T15:27:35.195055-07:00,1001.658447265625,10.742933,10742.933 +29046,2025-03-10T15:27:45.943984-07:00,1001.6724853515625,10.748929,10748.929 +29047,2025-03-10T15:27:56.697982-07:00,1001.6648559570312,10.753998,10753.998 +29048,2025-03-10T15:28:07.443978-07:00,1001.668212890625,10.745996,10745.996 +29049,2025-03-10T15:28:18.199983-07:00,1001.6685791015625,10.756005,10756.005 +29050,2025-03-10T15:28:28.953032-07:00,1001.61181640625,10.753049,10753.049 +29051,2025-03-10T15:28:39.701488-07:00,1001.6476440429688,10.748456,10748.456 +29052,2025-03-10T15:28:50.446981-07:00,1001.62548828125,10.745493,10745.493 +29053,2025-03-10T15:29:01.202981-07:00,1001.651123046875,10.756,10756.0 +29054,2025-03-10T15:29:11.948191-07:00,1001.6261596679688,10.74521,10745.21 +29055,2025-03-10T15:29:22.695976-07:00,1001.6451416015625,10.747785,10747.785 +29056,2025-03-10T15:29:33.444198-07:00,1001.6066284179688,10.748222,10748.222 +29057,2025-03-10T15:29:44.202465-07:00,1001.6442260742188,10.758267,10758.267 +29058,2025-03-10T15:29:54.947980-07:00,1001.65380859375,10.745515,10745.515 +29059,2025-03-10T15:30:05.697785-07:00,1001.66845703125,10.749805,10749.805 +29060,2025-03-10T15:30:16.439981-07:00,1001.6383056640625,10.742196,10742.196 +29061,2025-03-10T15:30:27.196319-07:00,1001.627685546875,10.756338,10756.338 +29062,2025-03-10T15:30:37.937978-07:00,1001.609375,10.741659,10741.659 +29063,2025-03-10T15:30:48.687100-07:00,1001.630615234375,10.749122,10749.122 +29064,2025-03-10T15:30:59.432022-07:00,1001.612060546875,10.744922,10744.922 +29065,2025-03-10T15:31:10.183703-07:00,1001.614990234375,10.751681,10751.681 +29066,2025-03-10T15:31:20.931535-07:00,1001.6163940429688,10.747832,10747.832 +29067,2025-03-10T15:31:31.680009-07:00,1001.6724853515625,10.748474,10748.474 +29068,2025-03-10T15:31:42.421145-07:00,1001.63134765625,10.741136,10741.136 +29069,2025-03-10T15:31:53.176088-07:00,1001.6273193359375,10.754943,10754.943 +29070,2025-03-10T15:32:03.912983-07:00,1001.6170043945312,10.736895,10736.895 +29071,2025-03-10T15:32:14.660029-07:00,1001.6397094726562,10.747046,10747.046 +29072,2025-03-10T15:32:25.405880-07:00,1001.6264038085938,10.745851,10745.851 +29073,2025-03-10T15:32:36.148135-07:00,1001.622802734375,10.742255,10742.255 +29074,2025-03-10T15:32:46.896975-07:00,1001.6257934570312,10.74884,10748.84 +29075,2025-03-10T15:32:57.643983-07:00,1001.6257934570312,10.747008,10747.008 +29076,2025-03-10T15:33:08.383981-07:00,1001.6271362304688,10.739998,10739.998 +29077,2025-03-10T15:33:19.139978-07:00,1001.5951538085938,10.755997,10755.997 +29078,2025-03-10T15:33:29.877983-07:00,1001.6084594726562,10.738005,10738.005 +29079,2025-03-10T15:33:40.635047-07:00,1001.6234130859375,10.757064,10757.064 +29080,2025-03-10T15:33:51.379182-07:00,1001.57958984375,10.744135,10744.135 +29081,2025-03-10T15:34:02.124979-07:00,1001.5862426757812,10.745797,10745.797 +29082,2025-03-10T15:34:12.867226-07:00,1001.575927734375,10.742247,10742.247 +29083,2025-03-10T15:34:23.613980-07:00,1001.5626831054688,10.746754,10746.754 +29084,2025-03-10T15:34:34.367030-07:00,1001.5723266601562,10.75305,10753.05 +29085,2025-03-10T15:34:45.112373-07:00,1001.5640869140625,10.745343,10745.343 +29086,2025-03-10T15:34:55.858103-07:00,1001.55908203125,10.74573,10745.73 +29087,2025-03-10T15:35:06.603052-07:00,1001.5882568359375,10.744949,10744.949 +29088,2025-03-10T15:35:17.348983-07:00,1001.5713500976562,10.745931,10745.931 +29089,2025-03-10T15:35:28.100972-07:00,1001.5845947265625,10.751989,10751.989 +29090,2025-03-10T15:35:38.845285-07:00,1001.573974609375,10.744313,10744.313 +29091,2025-03-10T15:35:49.592046-07:00,1001.5660400390625,10.746761,10746.761 +29092,2025-03-10T15:36:00.328376-07:00,1001.5424194335938,10.73633,10736.33 +29093,2025-03-10T15:36:11.079983-07:00,1001.5667114257812,10.751607,10751.607 +29094,2025-03-10T15:36:21.829185-07:00,1001.5733032226562,10.749202,10749.202 +29095,2025-03-10T15:36:32.574068-07:00,1001.5680541992188,10.744883,10744.883 +29096,2025-03-10T15:36:43.314178-07:00,1001.5560913085938,10.74011,10740.11 +29097,2025-03-10T15:36:54.062415-07:00,1001.5856323242188,10.748237,10748.237 +29098,2025-03-10T15:37:04.810174-07:00,1001.5493774414062,10.747759,10747.759 +29099,2025-03-10T15:37:15.553769-07:00,1001.537841796875,10.743595,10743.595 +29100,2025-03-10T15:37:26.291981-07:00,1001.5484619140625,10.738212,10738.212 +29101,2025-03-10T15:37:37.040977-07:00,1001.5617065429688,10.748996,10748.996 +29102,2025-03-10T15:37:47.782987-07:00,1001.53515625,10.74201,10742.01 +29103,2025-03-10T15:37:58.531979-07:00,1001.5368041992188,10.748992,10748.992 +29104,2025-03-10T15:38:09.286127-07:00,1001.5460815429688,10.754148,10754.148 +29105,2025-03-10T15:38:20.034006-07:00,1001.5593872070312,10.747879,10747.879 +29106,2025-03-10T15:38:30.774981-07:00,1001.5543823242188,10.740975,10740.975 +29107,2025-03-10T15:38:41.520988-07:00,1001.51953125,10.746007,10746.007 +29108,2025-03-10T15:38:52.272047-07:00,1001.5410766601562,10.751059,10751.059 +29109,2025-03-10T15:39:03.020691-07:00,1001.5624389648438,10.748644,10748.644 +29110,2025-03-10T15:39:13.767977-07:00,1001.5504760742188,10.747286,10747.286 +29111,2025-03-10T15:39:24.510981-07:00,1001.54248046875,10.743004,10743.004 +29112,2025-03-10T15:39:35.259012-07:00,1001.497314453125,10.748031,10748.031 +29113,2025-03-10T15:39:46.004345-07:00,1001.50390625,10.745333,10745.333 +29114,2025-03-10T15:39:56.750291-07:00,1001.5404663085938,10.745946,10745.946 +29115,2025-03-10T15:40:07.496976-07:00,1001.4923706054688,10.746685,10746.685 +29116,2025-03-10T15:40:18.248106-07:00,1001.5072021484375,10.75113,10751.13 +29117,2025-03-10T15:40:28.995619-07:00,1001.5234985351562,10.747513,10747.513 +29118,2025-03-10T15:40:39.741982-07:00,1001.4873657226562,10.746363,10746.363 +29119,2025-03-10T15:40:50.491199-07:00,1001.4968872070312,10.749217,10749.217 +29120,2025-03-10T15:41:01.239982-07:00,1001.4902954101562,10.748783,10748.783 +29121,2025-03-10T15:41:11.987189-07:00,1001.4968872070312,10.747207,10747.207 +29122,2025-03-10T15:41:22.732989-07:00,1001.4517211914062,10.7458,10745.8 +29123,2025-03-10T15:41:33.480983-07:00,1001.4371337890625,10.747994,10747.994 +29124,2025-03-10T15:41:44.228124-07:00,1001.4451293945312,10.747141,10747.141 +29125,2025-03-10T15:41:54.976979-07:00,1001.4481201171875,10.748855,10748.855 +29126,2025-03-10T15:42:05.726148-07:00,1001.4679565429688,10.749169,10749.169 +29127,2025-03-10T15:42:16.475275-07:00,1001.44140625,10.749127,10749.127 +29128,2025-03-10T15:42:27.222103-07:00,1001.4428100585938,10.746828,10746.828 +29129,2025-03-10T15:42:37.969980-07:00,1001.4307861328125,10.747877,10747.877 +29130,2025-03-10T15:42:48.712040-07:00,1001.4454956054688,10.74206,10742.06 +29131,2025-03-10T15:42:59.460245-07:00,1001.4454956054688,10.748205,10748.205 +29132,2025-03-10T15:43:10.209390-07:00,1001.3856201171875,10.749145,10749.145 +29133,2025-03-10T15:43:20.955984-07:00,1001.4085693359375,10.746594,10746.594 +29134,2025-03-10T15:43:31.700323-07:00,1001.4151611328125,10.744339,10744.339 +29135,2025-03-10T15:43:42.451168-07:00,1001.4328002929688,10.750845,10750.845 +29136,2025-03-10T15:43:53.193221-07:00,1001.4115600585938,10.742053,10742.053 +29137,2025-03-10T15:44:03.947008-07:00,1001.4181518554688,10.753787,10753.787 +29138,2025-03-10T15:44:14.690981-07:00,1001.3716430664062,10.743973,10743.973 +29139,2025-03-10T15:44:25.443235-07:00,1001.3982543945312,10.752254,10752.254 +29140,2025-03-10T15:44:36.187396-07:00,1001.3995361328125,10.744161,10744.161 +29141,2025-03-10T15:44:46.939977-07:00,1001.3876342773438,10.752581,10752.581 +29142,2025-03-10T15:44:57.690189-07:00,1001.4039306640625,10.750212,10750.212 +29143,2025-03-10T15:45:08.436028-07:00,1001.3876342773438,10.745839,10745.839 +29144,2025-03-10T15:45:19.182977-07:00,1001.3773193359375,10.746949,10746.949 +29145,2025-03-10T15:45:29.931981-07:00,1001.391845703125,10.749004,10749.004 +29146,2025-03-10T15:45:40.682978-07:00,1001.3839111328125,10.750997,10750.997 +29147,2025-03-10T15:45:51.434406-07:00,1001.3573608398438,10.751428,10751.428 +29148,2025-03-10T15:46:02.187033-07:00,1001.33740234375,10.752627,10752.627 +29149,2025-03-10T15:46:12.940192-07:00,1001.349365234375,10.753159,10753.159 +29150,2025-03-10T15:46:23.681219-07:00,1001.33447265625,10.741027,10741.027 +29151,2025-03-10T15:46:34.431836-07:00,1001.3397827148438,10.750617,10750.617 +29152,2025-03-10T15:46:45.187160-07:00,1001.3596801757812,10.755324,10755.324 +29153,2025-03-10T15:46:55.933380-07:00,1001.3596801757812,10.74622,10746.22 +29154,2025-03-10T15:47:06.687980-07:00,1001.3101806640625,10.7546,10754.6 +29155,2025-03-10T15:47:17.439061-07:00,1001.28759765625,10.751081,10751.081 +29156,2025-03-10T15:47:28.180992-07:00,1001.2926025390625,10.741931,10741.931 +29157,2025-03-10T15:47:38.929011-07:00,1001.3125,10.748019,10748.019 +29158,2025-03-10T15:47:49.684971-07:00,1001.2965698242188,10.75596,10755.96 +29159,2025-03-10T15:48:00.429030-07:00,1001.3111572265625,10.744059,10744.059 +29160,2025-03-10T15:48:11.181980-07:00,1001.2965698242188,10.75295,10752.95 +29161,2025-03-10T15:48:21.924064-07:00,1001.3351440429688,10.742084,10742.084 +29162,2025-03-10T15:48:32.674979-07:00,1001.28857421875,10.750915,10750.915 +29163,2025-03-10T15:48:43.429208-07:00,1001.2842407226562,10.754229,10754.229 +29164,2025-03-10T15:48:54.182982-07:00,1001.2909545898438,10.753774,10753.774 +29165,2025-03-10T15:49:04.932986-07:00,1001.2597045898438,10.750004,10750.004 +29166,2025-03-10T15:49:15.687186-07:00,1001.28125,10.7542,10754.2 +29167,2025-03-10T15:49:26.439008-07:00,1001.2796020507812,10.751822,10751.822 +29168,2025-03-10T15:49:37.188973-07:00,1001.2537231445312,10.749965,10749.965 +29169,2025-03-10T15:49:47.943414-07:00,1001.2620239257812,10.754441,10754.441 +29170,2025-03-10T15:49:58.683980-07:00,1001.2493896484375,10.740566,10740.566 +29171,2025-03-10T15:50:09.433073-07:00,1001.2281494140625,10.749093,10749.093 +29172,2025-03-10T15:50:20.192166-07:00,1001.2667236328125,10.759093,10759.093 +29173,2025-03-10T15:50:30.937177-07:00,1001.2238159179688,10.745011,10745.011 +29174,2025-03-10T15:50:41.679841-07:00,1001.2195434570312,10.742664,10742.664 +29175,2025-03-10T15:50:52.438507-07:00,1001.2327880859375,10.758666,10758.666 +29176,2025-03-10T15:51:03.187190-07:00,1001.1952514648438,10.748683,10748.683 +29177,2025-03-10T15:51:13.928170-07:00,1001.2228393554688,10.74098,10740.98 +29178,2025-03-10T15:51:24.682155-07:00,1001.19189453125,10.753985,10753.985 +29179,2025-03-10T15:51:35.429267-07:00,1001.21044921875,10.747112,10747.112 +29180,2025-03-10T15:51:46.174931-07:00,1001.2128295898438,10.745664,10745.664 +29181,2025-03-10T15:51:56.930234-07:00,1001.2151489257812,10.755303,10755.303 +29182,2025-03-10T15:52:07.673387-07:00,1001.1842041015625,10.743153,10743.153 +29183,2025-03-10T15:52:18.420230-07:00,1001.1732788085938,10.746843,10746.843 +29184,2025-03-10T15:52:29.169154-07:00,1001.1543579101562,10.748924,10748.924 +29185,2025-03-10T15:52:39.921177-07:00,1001.1380615234375,10.752023,10752.023 +29186,2025-03-10T15:52:50.663048-07:00,1001.1470336914062,10.741871,10741.871 +29187,2025-03-10T15:53:01.410754-07:00,1001.1759643554688,10.747706,10747.706 +29188,2025-03-10T15:53:12.159721-07:00,1001.159912109375,10.748967,10748.967 +29189,2025-03-10T15:53:22.915737-07:00,1001.175537109375,10.756016,10756.016 +29190,2025-03-10T15:53:33.661672-07:00,1001.1609497070312,10.745935,10745.935 +29191,2025-03-10T15:53:44.406964-07:00,1001.158935546875,10.745292,10745.292 +29192,2025-03-10T15:53:55.160558-07:00,1001.1492309570312,10.753594,10753.594 +29193,2025-03-10T15:54:05.909574-07:00,1001.17578125,10.749016,10749.016 +29194,2025-03-10T15:54:16.653774-07:00,1001.1436157226562,10.7442,10744.2 +29195,2025-03-10T15:54:27.412673-07:00,1001.1459350585938,10.758899,10758.899 +29196,2025-03-10T15:54:38.158769-07:00,1001.1428833007812,10.746096,10746.096 +29197,2025-03-10T15:54:48.906571-07:00,1001.1336059570312,10.747802,10747.802 +29198,2025-03-10T15:54:59.655918-07:00,1001.109375,10.749347,10749.347 +29199,2025-03-10T15:55:10.405582-07:00,1001.1102905273438,10.749664,10749.664 +29200,2025-03-10T15:55:21.150525-07:00,1001.12158203125,10.744943,10744.943 +29201,2025-03-10T15:55:31.909793-07:00,1001.1305541992188,10.759268,10759.268 +29202,2025-03-10T15:55:42.652522-07:00,1001.1129760742188,10.742729,10742.729 +29203,2025-03-10T15:55:53.399523-07:00,1001.1035766601562,10.747001,10747.001 +29204,2025-03-10T15:56:04.156019-07:00,1001.0926513671875,10.756496,10756.496 +29205,2025-03-10T15:56:14.903937-07:00,1001.10595703125,10.747918,10747.918 +29206,2025-03-10T15:56:25.646760-07:00,1001.1361083984375,10.742823,10742.823 +29207,2025-03-10T15:56:36.400421-07:00,1001.1091918945312,10.753661,10753.661 +29208,2025-03-10T15:56:47.153828-07:00,1001.0716552734375,10.753407,10753.407 +29209,2025-03-10T15:56:57.896970-07:00,1001.0965576171875,10.743142,10743.142 +29210,2025-03-10T15:57:08.649710-07:00,1001.1163940429688,10.75274,10752.74 +29211,2025-03-10T15:57:19.390825-07:00,1001.1121215820312,10.741115,10741.115 +29212,2025-03-10T15:57:30.149653-07:00,1001.0812377929688,10.758828,10758.828 +29213,2025-03-10T15:57:40.895770-07:00,1001.0851440429688,10.746117,10746.117 +29214,2025-03-10T15:57:51.640693-07:00,1001.075439453125,10.744923,10744.923 +29215,2025-03-10T15:58:02.390721-07:00,1001.1007690429688,10.750028,10750.028 +29216,2025-03-10T15:58:13.135932-07:00,1001.0764770507812,10.745211,10745.211 +29217,2025-03-10T15:58:23.879706-07:00,1001.0535888671875,10.743774,10743.774 +29218,2025-03-10T15:58:34.629699-07:00,1001.0720825195312,10.749993,10749.993 +29219,2025-03-10T15:58:45.375727-07:00,1001.0610961914062,10.746028,10746.028 +29220,2025-03-10T15:58:56.122119-07:00,1001.06640625,10.746392,10746.392 +29221,2025-03-10T15:59:06.869052-07:00,1001.06201171875,10.746933,10746.933 +29222,2025-03-10T15:59:17.613072-07:00,1001.060791015625,10.74402,10744.02 +29223,2025-03-10T15:59:28.362030-07:00,1001.0842895507812,10.748958,10748.958 +29224,2025-03-10T15:59:39.118140-07:00,1001.0497436523438,10.75611,10756.11 +29225,2025-03-10T15:59:49.857581-07:00,1001.053466796875,10.739441,10739.441 +29226,2025-03-10T16:00:00.601608-07:00,1001.0865478515625,10.744027,10744.027 +29227,2025-03-10T16:00:11.347662-07:00,1001.0902099609375,10.746054,10746.054 +29228,2025-03-10T16:00:22.093734-07:00,1001.06591796875,10.746072,10746.072 +29229,2025-03-10T16:00:32.842937-07:00,1001.0712280273438,10.749203,10749.203 +29230,2025-03-10T16:00:43.599142-07:00,1001.1031494140625,10.756205,10756.205 +29231,2025-03-10T16:00:54.339830-07:00,1001.0867919921875,10.740688,10740.688 +29232,2025-03-10T16:01:05.088553-07:00,1001.1023559570312,10.748723,10748.723 +29233,2025-03-10T16:01:15.835840-07:00,1001.0943603515625,10.747287,10747.287 +29234,2025-03-10T16:01:26.588923-07:00,1001.1143188476562,10.753083,10753.083 +29235,2025-03-10T16:01:37.336938-07:00,1001.0701293945312,10.748015,10748.015 +29236,2025-03-10T16:01:48.079764-07:00,1001.1218872070312,10.742826,10742.826 +29237,2025-03-10T16:01:58.827552-07:00,1001.098876953125,10.747788,10747.788 +29238,2025-03-10T16:02:09.570522-07:00,1001.1056518554688,10.74297,10742.97 +29239,2025-03-10T16:02:20.320830-07:00,1001.1121826171875,10.750308,10750.308 +29240,2025-03-10T16:02:31.064527-07:00,1001.1095581054688,10.743697,10743.697 +29241,2025-03-10T16:02:41.816042-07:00,1001.1012573242188,10.751515,10751.515 +29242,2025-03-10T16:02:52.566555-07:00,1001.119873046875,10.750513,10750.513 +29243,2025-03-10T16:03:03.312813-07:00,1001.119873046875,10.746258,10746.258 +29244,2025-03-10T16:03:14.052522-07:00,1001.1234130859375,10.739709,10739.709 +29245,2025-03-10T16:03:24.805562-07:00,1001.1168212890625,10.75304,10753.04 +29246,2025-03-10T16:03:35.552741-07:00,1001.1074829101562,10.747179,10747.179 +29247,2025-03-10T16:03:46.292525-07:00,1001.1140747070312,10.739784,10739.784 +29248,2025-03-10T16:03:57.040734-07:00,1001.0845336914062,10.748209,10748.209 +29249,2025-03-10T16:04:07.788597-07:00,1001.1057739257812,10.747863,10747.863 +29250,2025-03-10T16:04:18.529732-07:00,1001.13232421875,10.741135,10741.135 +29251,2025-03-10T16:04:29.270699-07:00,1001.0984497070312,10.740967,10740.967 +29252,2025-03-10T16:04:40.023683-07:00,1001.127685546875,10.752984,10752.984 +29253,2025-03-10T16:04:50.768528-07:00,1001.11669921875,10.744845,10744.845 +29254,2025-03-10T16:05:01.514610-07:00,1001.108642578125,10.746082,10746.082 +29255,2025-03-10T16:05:12.250723-07:00,1001.0741577148438,10.736113,10736.113 +29256,2025-03-10T16:05:23.002785-07:00,1001.1152954101562,10.752062,10752.062 +29257,2025-03-10T16:05:33.750906-07:00,1001.0631103515625,10.748121,10748.121 +29258,2025-03-10T16:05:44.490253-07:00,1001.0963134765625,10.739347,10739.347 +29259,2025-03-10T16:05:55.243735-07:00,1001.11767578125,10.753482,10753.482 +29260,2025-03-10T16:06:05.989741-07:00,1001.09326171875,10.746006,10746.006 +29261,2025-03-10T16:06:16.737718-07:00,1001.1082763671875,10.747977,10747.977 +29262,2025-03-10T16:06:27.485822-07:00,1001.12158203125,10.748104,10748.104 +29263,2025-03-10T16:06:38.230905-07:00,1001.119873046875,10.745083,10745.083 +29264,2025-03-10T16:06:48.977577-07:00,1001.1464233398438,10.746672,10746.672 +29265,2025-03-10T16:06:59.716707-07:00,1001.0906372070312,10.73913,10739.13 +29266,2025-03-10T16:07:10.468771-07:00,1001.0956420898438,10.752064,10752.064 +29267,2025-03-10T16:07:21.212731-07:00,1001.12744140625,10.74396,10743.96 +29268,2025-03-10T16:07:31.953523-07:00,1001.1177978515625,10.740792,10740.792 +29269,2025-03-10T16:07:42.704716-07:00,1001.111083984375,10.751193,10751.193 +29270,2025-03-10T16:07:53.448525-07:00,1001.1150512695312,10.743809,10743.809 +29271,2025-03-10T16:08:04.187730-07:00,1001.1270141601562,10.739205,10739.205 +29272,2025-03-10T16:08:14.937521-07:00,1001.1107788085938,10.749791,10749.791 +29273,2025-03-10T16:08:25.689525-07:00,1001.1173706054688,10.752004,10752.004 +29274,2025-03-10T16:08:36.430572-07:00,1001.1359252929688,10.741047,10741.047 +29275,2025-03-10T16:08:47.174525-07:00,1001.1143798828125,10.743953,10743.953 +29276,2025-03-10T16:08:57.926730-07:00,1001.1328735351562,10.752205,10752.205 +29277,2025-03-10T16:09:08.664735-07:00,1001.1182861328125,10.738005,10738.005 +29278,2025-03-10T16:09:19.410633-07:00,1001.1461791992188,10.745898,10745.898 +29279,2025-03-10T16:09:30.152539-07:00,1001.1298217773438,10.741906,10741.906 +29280,2025-03-10T16:09:40.903558-07:00,1001.1286010742188,10.751019,10751.019 +29281,2025-03-10T16:09:51.642532-07:00,1001.1417846679688,10.738974,10738.974 +29282,2025-03-10T16:10:02.388527-07:00,1001.1138916015625,10.745995,10745.995 +29283,2025-03-10T16:10:13.125691-07:00,1001.1322021484375,10.737164,10737.164 +29284,2025-03-10T16:10:23.871714-07:00,1001.1029663085938,10.746023,10746.023 +29285,2025-03-10T16:10:34.620694-07:00,1001.1294555664062,10.74898,10748.98 +29286,2025-03-10T16:10:45.364702-07:00,1001.1029663085938,10.744008,10744.008 +29287,2025-03-10T16:10:56.105563-07:00,1001.0962524414062,10.740861,10740.861 +29288,2025-03-10T16:11:06.846526-07:00,1001.1012573242188,10.740963,10740.963 +29289,2025-03-10T16:11:17.589523-07:00,1001.1161499023438,10.742997,10742.997 +29290,2025-03-10T16:11:28.336921-07:00,1001.0985717773438,10.747398,10747.398 +29291,2025-03-10T16:11:39.073613-07:00,1001.0853271484375,10.736692,10736.692 +29292,2025-03-10T16:11:49.815704-07:00,1001.0985717773438,10.742091,10742.091 +29293,2025-03-10T16:12:00.557051-07:00,1001.118408203125,10.741347,10741.347 +29294,2025-03-10T16:12:11.299727-07:00,1001.0756225585938,10.742676,10742.676 +29295,2025-03-10T16:12:22.049347-07:00,1001.0662231445312,10.74962,10749.62 +29296,2025-03-10T16:12:32.789009-07:00,1001.09423828125,10.739662,10739.662 +29297,2025-03-10T16:12:43.528727-07:00,1001.052978515625,10.739718,10739.718 +29298,2025-03-10T16:12:54.266583-07:00,1001.077880859375,10.737856,10737.856 +29299,2025-03-10T16:13:05.016525-07:00,1001.077880859375,10.749942,10749.942 +29300,2025-03-10T16:13:15.753527-07:00,1001.0978393554688,10.737002,10737.002 +29301,2025-03-10T16:13:26.500552-07:00,1001.0950927734375,10.747025,10747.025 +29302,2025-03-10T16:13:37.249523-07:00,1001.0831298828125,10.748971,10748.971 +29303,2025-03-10T16:13:47.992529-07:00,1001.0884399414062,10.743006,10743.006 +29304,2025-03-10T16:13:58.733519-07:00,1001.0632934570312,10.74099,10740.99 +29305,2025-03-10T16:14:09.476543-07:00,1001.0867919921875,10.743024,10743.024 +29306,2025-03-10T16:14:20.218696-07:00,1001.05224609375,10.742153,10742.153 +29307,2025-03-10T16:14:30.964949-07:00,1001.0840454101562,10.746253,10746.253 +29308,2025-03-10T16:14:41.703214-07:00,1001.112060546875,10.738265,10738.265 +29309,2025-03-10T16:14:52.450551-07:00,1001.074462890625,10.747337,10747.337 +29310,2025-03-10T16:15:03.191594-07:00,1001.0823974609375,10.741043,10741.043 +29311,2025-03-10T16:15:13.940626-07:00,1001.095703125,10.749032,10749.032 +29312,2025-03-10T16:15:24.678610-07:00,1001.1023559570312,10.737984,10737.984 +29313,2025-03-10T16:15:35.428629-07:00,1001.0625,10.750019,10750.019 +29314,2025-03-10T16:15:46.170712-07:00,1001.0797119140625,10.742083,10742.083 +29315,2025-03-10T16:15:56.916567-07:00,1001.08642578125,10.745855,10745.855 +29316,2025-03-10T16:16:07.659531-07:00,1001.0916137695312,10.742964,10742.964 +29317,2025-03-10T16:16:18.404010-07:00,1001.1049194335938,10.744479,10744.479 +29318,2025-03-10T16:16:29.146709-07:00,1001.0767211914062,10.742699,10742.699 +29319,2025-03-10T16:16:39.881580-07:00,1001.103271484375,10.734871,10734.871 +29320,2025-03-10T16:16:50.630698-07:00,1001.0753173828125,10.749118,10749.118 +29321,2025-03-10T16:17:01.368683-07:00,1001.073974609375,10.737985,10737.985 +29322,2025-03-10T16:17:12.114726-07:00,1001.0872802734375,10.746043,10746.043 +29323,2025-03-10T16:17:22.858520-07:00,1001.0939331054688,10.743794,10743.794 +29324,2025-03-10T16:17:33.606524-07:00,1001.08203125,10.748004,10748.004 +29325,2025-03-10T16:17:44.347521-07:00,1001.107177734375,10.740997,10740.997 +29326,2025-03-10T16:17:55.094558-07:00,1001.1041259765625,10.747037,10747.037 +29327,2025-03-10T16:18:05.833820-07:00,1001.10546875,10.739262,10739.262 +29328,2025-03-10T16:18:16.577706-07:00,1001.109375,10.743886,10743.886 +29329,2025-03-10T16:18:27.320524-07:00,1001.0909423828125,10.742818,10742.818 +29330,2025-03-10T16:18:38.062694-07:00,1001.0762329101562,10.74217,10742.17 +29331,2025-03-10T16:18:48.802759-07:00,1001.0878295898438,10.740065,10740.065 +29332,2025-03-10T16:18:59.548985-07:00,1001.0822143554688,10.746226,10746.226 +29333,2025-03-10T16:19:21.041556-07:00,1001.0809326171875,21.492571,21492.571 +29334,2025-03-10T16:19:31.789906-07:00,1001.092041015625,10.74835,10748.35 +29335,2025-03-10T16:19:42.524524-07:00,1001.099609375,10.734618,10734.618 +29336,2025-03-10T16:19:53.272728-07:00,1001.09716796875,10.748204,10748.204 +29337,2025-03-10T16:20:04.018785-07:00,1001.12548828125,10.746057,10746.057 +29338,2025-03-10T16:20:04.931839-07:00,1001.0923461914062,0.913054,913.054 +29339,2025-03-10T16:20:14.752527-07:00,1001.1084594726562,9.820688,9820.688 +29340,2025-03-10T16:20:25.495726-07:00,1001.1195068359375,10.743199,10743.199 +29341,2025-03-10T16:20:36.244703-07:00,1001.1425170898438,10.748977,10748.977 +29342,2025-03-10T16:20:46.987003-07:00,1001.1470336914062,10.7423,10742.3 +29343,2025-03-10T16:20:57.730306-07:00,1001.1531372070312,10.743303,10743.303 +29344,2025-03-10T16:21:08.481743-07:00,1001.15625,10.751437,10751.437 +29345,2025-03-10T16:21:19.228929-07:00,1001.1356201171875,10.747186,10747.186 +29346,2025-03-10T16:21:29.968701-07:00,1001.149658203125,10.739772,10739.772 +29347,2025-03-10T16:21:40.707729-07:00,1001.13427734375,10.739028,10739.028 +29348,2025-03-10T16:21:51.456525-07:00,1001.1404418945312,10.748796,10748.796 +29349,2025-03-10T16:22:02.191651-07:00,1001.1572875976562,10.735126,10735.126 +29350,2025-03-10T16:22:12.939795-07:00,1001.11669921875,10.748144,10748.144 +29351,2025-03-10T16:22:23.678521-07:00,1001.1339111328125,10.738726,10738.726 +29352,2025-03-10T16:22:34.428569-07:00,1001.1476440429688,10.750048,10750.048 +29353,2025-03-10T16:22:45.162527-07:00,1001.1314086914062,10.733958,10733.958 +29354,2025-03-10T16:22:55.906529-07:00,1001.1366577148438,10.744002,10744.002 +29355,2025-03-10T16:23:06.647695-07:00,1001.152099609375,10.741166,10741.166 +29356,2025-03-10T16:23:17.394915-07:00,1001.1211547851562,10.74722,10747.22 +29357,2025-03-10T16:23:28.134553-07:00,1001.111572265625,10.739638,10739.638 +29358,2025-03-10T16:23:38.881404-07:00,1001.14990234375,10.746851,10746.851 +29359,2025-03-10T16:23:49.618524-07:00,1001.1004638671875,10.73712,10737.12 +29360,2025-03-10T16:24:00.360700-07:00,1001.1415405273438,10.742176,10742.176 +29361,2025-03-10T16:24:11.099798-07:00,1001.1309204101562,10.739098,10739.098 +29362,2025-03-10T16:24:21.848753-07:00,1001.11767578125,10.748955,10748.955 +29363,2025-03-10T16:24:32.587757-07:00,1001.1309204101562,10.739004,10739.004 +29364,2025-03-10T16:24:43.336974-07:00,1001.0977172851562,10.749217,10749.217 +29365,2025-03-10T16:24:54.070709-07:00,1001.115966796875,10.733735,10733.735 +29366,2025-03-10T16:25:04.821895-07:00,1001.1110229492188,10.751186,10751.186 +29367,2025-03-10T16:25:15.557524-07:00,1001.11767578125,10.735629,10735.629 +29368,2025-03-10T16:25:26.311359-07:00,1001.1123657226562,10.753835,10753.835 +29369,2025-03-10T16:25:37.049588-07:00,1001.1614990234375,10.738229,10738.229 +29370,2025-03-10T16:25:47.798588-07:00,1001.1217041015625,10.749,10749.0 +29371,2025-03-10T16:25:58.546100-07:00,1001.1482543945312,10.747512,10747.512 +29372,2025-03-10T16:26:09.286527-07:00,1001.143310546875,10.740427,10740.427 +29373,2025-03-10T16:26:20.032526-07:00,1001.1755981445312,10.745999,10745.999 +29374,2025-03-10T16:26:30.772521-07:00,1001.1609497070312,10.739995,10739.995 +29375,2025-03-10T16:26:41.518528-07:00,1001.1785888671875,10.746007,10746.007 +29376,2025-03-10T16:26:52.267519-07:00,1001.1681518554688,10.748991,10748.991 +29377,2025-03-10T16:27:03.004527-07:00,1001.148193359375,10.737008,10737.008 +29378,2025-03-10T16:27:13.750715-07:00,1001.1741943359375,10.746188,10746.188 +29379,2025-03-10T16:27:24.494526-07:00,1001.154296875,10.743811,10743.811 +29380,2025-03-10T16:27:35.238689-07:00,1001.169189453125,10.744163,10744.163 +29381,2025-03-10T16:27:45.981134-07:00,1001.15869140625,10.742445,10742.445 +29382,2025-03-10T16:27:56.725779-07:00,1001.1454467773438,10.744645,10744.645 +29383,2025-03-10T16:28:07.469768-07:00,1001.1431884765625,10.743989,10743.989 +29384,2025-03-10T16:28:18.215549-07:00,1001.1741333007812,10.745781,10745.781 +29385,2025-03-10T16:28:28.963768-07:00,1001.1426391601562,10.748219,10748.219 +29386,2025-03-10T16:28:39.708818-07:00,1001.1559448242188,10.74505,10745.05 +29387,2025-03-10T16:28:50.447737-07:00,1001.132080078125,10.738919,10738.919 +29388,2025-03-10T16:29:01.198594-07:00,1001.1497802734375,10.750857,10750.857 +29389,2025-03-10T16:29:11.940525-07:00,1001.146240234375,10.741931,10741.931 +29390,2025-03-10T16:29:22.683528-07:00,1001.1439208984375,10.743003,10743.003 +29391,2025-03-10T16:29:33.430597-07:00,1001.1107788085938,10.747069,10747.069 +29392,2025-03-10T16:29:54.919707-07:00,1001.1099243164062,21.48911,21489.11 +29393,2025-03-10T16:30:05.670559-07:00,1001.126220703125,10.750852,10750.852 +29394,2025-03-10T16:30:16.411708-07:00,1001.1143798828125,10.741149,10741.149 +29395,2025-03-10T16:30:27.162528-07:00,1001.1568603515625,10.75082,10750.82 +29396,2025-03-10T16:30:37.910522-07:00,1001.1320190429688,10.747994,10747.994 +29397,2025-03-10T16:30:48.648704-07:00,1001.1377563476562,10.738182,10738.182 +29398,2025-03-10T16:30:59.388695-07:00,1001.1046142578125,10.739991,10739.991 +29399,2025-03-10T16:31:10.137719-07:00,1001.1434936523438,10.749024,10749.024 +29400,2025-03-10T16:31:20.880712-07:00,1001.1386108398438,10.742993,10742.993 +29401,2025-03-10T16:31:31.627364-07:00,1001.1575927734375,10.746652,10746.652 +29402,2025-03-10T16:31:42.374085-07:00,1001.123046875,10.746721,10746.721 +29403,2025-03-10T16:31:53.109682-07:00,1001.1390380859375,10.735597,10735.597 +29404,2025-03-10T16:32:03.852673-07:00,1001.1367797851562,10.742991,10742.991 +29405,2025-03-10T16:32:14.596527-07:00,1001.0704956054688,10.743854,10743.854 +29406,2025-03-10T16:32:25.340528-07:00,1001.1212768554688,10.744001,10744.001 +29407,2025-03-10T16:32:36.080820-07:00,1001.111083984375,10.740292,10740.292 +29408,2025-03-10T16:32:46.829523-07:00,1001.1043701171875,10.748703,10748.703 +29409,2025-03-10T16:32:57.568570-07:00,1001.107177734375,10.739047,10739.047 +29410,2025-03-10T16:33:08.311624-07:00,1001.0955200195312,10.743054,10743.054 +29411,2025-03-10T16:33:19.052982-07:00,1001.139404296875,10.741358,10741.358 +29412,2025-03-10T16:33:29.805694-07:00,1001.0960083007812,10.752712,10752.712 +29413,2025-03-10T16:33:40.544619-07:00,1001.1056518554688,10.738925,10738.925 +29414,2025-03-10T16:33:51.287537-07:00,1001.1056518554688,10.742918,10742.918 +29415,2025-03-10T16:34:02.027525-07:00,1001.087158203125,10.739988,10739.988 +29416,2025-03-10T16:34:12.776736-07:00,1001.0884399414062,10.749211,10749.211 +29417,2025-03-10T16:34:23.515710-07:00,1001.11279296875,10.738974,10738.974 +29418,2025-03-10T16:34:34.255734-07:00,1001.1277465820312,10.740024,10740.024 +29419,2025-03-10T16:34:45.002523-07:00,1001.1157836914062,10.746789,10746.789 +29420,2025-03-10T16:34:55.747705-07:00,1001.095947265625,10.745182,10745.182 +29421,2025-03-10T16:35:06.491747-07:00,1001.12548828125,10.744042,10744.042 +29422,2025-03-10T16:35:17.228708-07:00,1001.1149291992188,10.736961,10736.961 +29423,2025-03-10T16:35:27.974707-07:00,1001.1096801757812,10.745999,10745.999 +29424,2025-03-10T16:35:38.726702-07:00,1001.111328125,10.751995,10751.995 +29425,2025-03-10T16:35:49.469825-07:00,1001.0928344726562,10.743123,10743.123 +29426,2025-03-10T16:36:00.212732-07:00,1001.1060180664062,10.742907,10742.907 +29427,2025-03-10T16:36:10.964409-07:00,1001.125,10.751677,10751.677 +29428,2025-03-10T16:36:21.705528-07:00,1001.118408203125,10.741119,10741.119 +29429,2025-03-10T16:36:32.450524-07:00,1001.0918579101562,10.744996,10744.996 +29430,2025-03-10T16:36:43.195816-07:00,1001.111572265625,10.745292,10745.292 +29431,2025-03-10T16:36:53.950530-07:00,1001.0899047851562,10.754714,10754.714 +29432,2025-03-10T16:37:04.688519-07:00,1001.111572265625,10.737989,10737.989 +29433,2025-03-10T16:37:15.443513-07:00,1001.0943603515625,10.754994,10754.994 +29434,2025-03-10T16:37:26.182561-07:00,1001.0943603515625,10.739048,10739.048 +29435,2025-03-10T16:37:36.928784-07:00,1001.07080078125,10.746223,10746.223 +29436,2025-03-10T16:37:47.678557-07:00,1001.0574951171875,10.749773,10749.773 +29437,2025-03-10T16:37:58.417599-07:00,1001.0999755859375,10.739042,10739.042 +29438,2025-03-10T16:38:09.168672-07:00,1001.0751342773438,10.751073,10751.073 +29439,2025-03-10T16:38:19.908524-07:00,1001.0884399414062,10.739852,10739.852 +29440,2025-03-10T16:38:30.655600-07:00,1001.0928344726562,10.747076,10747.076 +29441,2025-03-10T16:38:41.395598-07:00,1001.0579833984375,10.739998,10739.998 +29442,2025-03-10T16:38:52.141527-07:00,1001.0742797851562,10.745929,10745.929 +29443,2025-03-10T16:39:02.887605-07:00,1001.0596923828125,10.746078,10746.078 +29444,2025-03-10T16:39:13.640744-07:00,1001.0742797851562,10.753139,10753.139 +29445,2025-03-10T16:39:24.382529-07:00,1001.0557861328125,10.741785,10741.785 +29446,2025-03-10T16:39:35.134103-07:00,1001.0557861328125,10.751574,10751.574 +29447,2025-03-10T16:39:45.879528-07:00,1001.0786743164062,10.745425,10745.425 +29448,2025-03-10T16:39:56.624526-07:00,1001.0853271484375,10.744998,10744.998 +29449,2025-03-10T16:40:07.363761-07:00,1001.0653686523438,10.739235,10739.235 +29450,2025-03-10T16:40:18.099905-07:00,1001.0653686523438,10.736144,10736.144 +29451,2025-03-10T16:40:28.848618-07:00,1001.0684204101562,10.748713,10748.713 +29452,2025-03-10T16:40:39.593525-07:00,1001.076416015625,10.744907,10744.907 +29453,2025-03-10T16:40:50.336527-07:00,1001.0910034179688,10.743002,10743.002 +29454,2025-03-10T16:41:01.078522-07:00,1001.1043090820312,10.741995,10741.995 +29455,2025-03-10T16:41:11.819527-07:00,1001.0940551757812,10.741005,10741.005 +29456,2025-03-10T16:41:22.564760-07:00,1001.072509765625,10.745233,10745.233 +29457,2025-03-10T16:41:33.305713-07:00,1001.0822143554688,10.740953,10740.953 +29458,2025-03-10T16:41:44.055848-07:00,1001.075439453125,10.750135,10750.135 +29459,2025-03-10T16:41:54.799407-07:00,1001.075439453125,10.743559,10743.559 +29460,2025-03-10T16:42:05.532963-07:00,1001.1116943359375,10.733556,10733.556 +29461,2025-03-10T16:42:16.283917-07:00,1001.10107421875,10.750954,10750.954 +29462,2025-03-10T16:42:27.020527-07:00,1001.113037109375,10.73661,10736.61 +29463,2025-03-10T16:42:37.767527-07:00,1001.0945434570312,10.747,10747.0 +29464,2025-03-10T16:42:48.513525-07:00,1001.0828857421875,10.745998,10745.998 +29465,2025-03-10T16:42:59.258728-07:00,1001.1226806640625,10.745203,10745.203 +29466,2025-03-10T16:43:10.001525-07:00,1001.0921630859375,10.742797,10742.797 +29467,2025-03-10T16:43:20.753558-07:00,1001.1204833984375,10.752033,10752.033 +29468,2025-03-10T16:43:31.496531-07:00,1001.107177734375,10.742973,10742.973 +29469,2025-03-10T16:43:42.237633-07:00,1001.107177734375,10.741102,10741.102 +29470,2025-03-10T16:43:52.984526-07:00,1001.0872802734375,10.746893,10746.893 +29471,2025-03-10T16:44:03.732524-07:00,1001.103271484375,10.747998,10747.998 +29472,2025-03-10T16:44:14.477724-07:00,1001.103271484375,10.7452,10745.2 +29473,2025-03-10T16:44:25.223599-07:00,1001.0850219726562,10.745875,10745.875 +29474,2025-03-10T16:44:35.970740-07:00,1001.0916137695312,10.747141,10747.141 +29475,2025-03-10T16:44:46.717714-07:00,1001.0717163085938,10.746974,10746.974 +29476,2025-03-10T16:44:57.459529-07:00,1001.0943603515625,10.741815,10741.815 +29477,2025-03-10T16:45:08.199693-07:00,1001.0943603515625,10.740164,10740.164 +29478,2025-03-10T16:45:18.949633-07:00,1001.10400390625,10.74994,10749.94 +29479,2025-03-10T16:45:29.691717-07:00,1001.08544921875,10.742084,10742.084 +29480,2025-03-10T16:45:40.431593-07:00,1001.11328125,10.739876,10739.876 +29481,2025-03-10T16:45:51.186742-07:00,1001.0884399414062,10.755149,10755.149 +29482,2025-03-10T16:46:01.930589-07:00,1001.08984375,10.743847,10743.847 +29483,2025-03-10T16:46:12.681061-07:00,1001.1060791015625,10.750472,10750.472 +29484,2025-03-10T16:46:23.431468-07:00,1001.1207275390625,10.750407,10750.407 +29485,2025-03-10T16:46:34.173705-07:00,1001.1074829101562,10.742237,10742.237 +29486,2025-03-10T16:46:44.924711-07:00,1001.0623168945312,10.751006,10751.006 +29487,2025-03-10T16:46:55.670717-07:00,1001.0689697265625,10.746006,10746.006 +29488,2025-03-10T16:47:06.410552-07:00,1001.07861328125,10.739835,10739.835 +29489,2025-03-10T16:47:17.156624-07:00,1001.0706176757812,10.746072,10746.072 +29490,2025-03-10T16:47:27.902527-07:00,1001.0521240234375,10.745903,10745.903 +29491,2025-03-10T16:47:38.658249-07:00,1001.09326171875,10.755722,10755.722 +29492,2025-03-10T16:47:49.395732-07:00,1001.09716796875,10.737483,10737.483 +29493,2025-03-10T16:48:00.139550-07:00,1001.072021484375,10.743818,10743.818 +29494,2025-03-10T16:48:10.887525-07:00,1001.07861328125,10.747975,10747.975 +29495,2025-03-10T16:48:21.642579-07:00,1001.0853271484375,10.755054,10755.054 +29496,2025-03-10T16:48:32.380522-07:00,1001.086669921875,10.737943,10737.943 +29497,2025-03-10T16:48:43.129527-07:00,1001.0653076171875,10.749005,10749.005 +29498,2025-03-10T16:48:53.880526-07:00,1001.086669921875,10.750999,10750.999 +29499,2025-03-10T16:49:04.625808-07:00,1001.0918579101562,10.745282,10745.282 +29500,2025-03-10T16:49:15.376613-07:00,1001.1038208007812,10.750805,10750.805 +29501,2025-03-10T16:49:26.116521-07:00,1001.0756225585938,10.739908,10739.908 +29502,2025-03-10T16:49:36.858531-07:00,1001.1021728515625,10.74201,10742.01 +29503,2025-03-10T16:49:47.606528-07:00,1001.082275390625,10.747997,10747.997 +29504,2025-03-10T16:49:58.349623-07:00,1001.0955200195312,10.743095,10743.095 +29505,2025-03-10T16:50:09.091714-07:00,1001.0809326171875,10.742091,10742.091 +29506,2025-03-10T16:50:19.840729-07:00,1001.0875244140625,10.749015,10749.015 +29507,2025-03-10T16:50:30.589555-07:00,1001.077880859375,10.748826,10748.826 +29508,2025-03-10T16:50:41.329992-07:00,1001.0911865234375,10.740437,10740.437 +29509,2025-03-10T16:50:52.077703-07:00,1001.1017456054688,10.747711,10747.711 +29510,2025-03-10T16:51:02.816930-07:00,1001.0801391601562,10.739227,10739.227 +29511,2025-03-10T16:51:13.559781-07:00,1001.0950927734375,10.742851,10742.851 +29512,2025-03-10T16:51:24.301730-07:00,1001.0890502929688,10.741949,10741.949 +29513,2025-03-10T16:51:35.040555-07:00,1001.1172485351562,10.738825,10738.825 +29514,2025-03-10T16:51:45.782736-07:00,1001.1062622070312,10.742181,10742.181 +29515,2025-03-10T16:51:56.516530-07:00,1001.0634155273438,10.733794,10733.794 +29516,2025-03-10T16:52:07.265521-07:00,1001.1085205078125,10.748991,10748.991 +29517,2025-03-10T16:52:17.998714-07:00,1001.1204833984375,10.733193,10733.193 +29518,2025-03-10T16:52:28.735929-07:00,1001.0974731445312,10.737215,10737.215 +29519,2025-03-10T16:52:39.480600-07:00,1001.0812377929688,10.744671,10744.671 +29520,2025-03-10T16:52:50.218736-07:00,1001.1143798828125,10.738136,10738.136 +29521,2025-03-10T16:53:00.957045-07:00,1001.1034545898438,10.738309,10738.309 +29522,2025-03-10T16:53:11.701181-07:00,1001.080810546875,10.744136,10744.136 +29523,2025-03-10T16:53:22.437146-07:00,1001.0658569335938,10.735965,10735.965 +29524,2025-03-10T16:53:33.179395-07:00,1001.076416015625,10.742249,10742.249 +29525,2025-03-10T16:53:43.920764-07:00,1001.1095581054688,10.741369,10741.369 +29526,2025-03-10T16:53:54.664973-07:00,1001.0601806640625,10.744209,10744.209 +29527,2025-03-10T16:54:05.402262-07:00,1001.0786743164062,10.737289,10737.289 +29528,2025-03-10T16:54:16.152152-07:00,1001.0441284179688,10.74989,10749.89 +29529,2025-03-10T16:54:26.894121-07:00,1001.0623168945312,10.741969,10741.969 +29530,2025-03-10T16:54:37.631161-07:00,1001.1021728515625,10.73704,10737.04 +29531,2025-03-10T16:54:48.379142-07:00,1001.0579833984375,10.747981,10747.981 +29532,2025-03-10T16:54:59.120980-07:00,1001.0646362304688,10.741838,10741.838 +29533,2025-03-10T16:55:09.856164-07:00,1001.0911865234375,10.735184,10735.184 +29534,2025-03-10T16:55:20.610064-07:00,1001.0765380859375,10.7539,10753.9 +29535,2025-03-10T16:55:31.350479-07:00,1001.0699462890625,10.740415,10740.415 +29536,2025-03-10T16:55:42.095375-07:00,1001.0751342773438,10.744896,10744.896 +29537,2025-03-10T16:55:52.840204-07:00,1001.0509643554688,10.744829,10744.829 +29538,2025-03-10T16:56:03.575979-07:00,1001.0390014648438,10.735775,10735.775 +29539,2025-03-10T16:56:14.321136-07:00,1001.0164184570312,10.745157,10745.157 +29540,2025-03-10T16:56:25.071977-07:00,1001.0390014648438,10.750841,10750.841 +29541,2025-03-10T16:56:35.806976-07:00,1001.049560546875,10.734999,10734.999 +29542,2025-03-10T16:56:46.553041-07:00,1001.049560546875,10.746065,10746.065 +29543,2025-03-10T16:56:57.300978-07:00,1001.0545043945312,10.747937,10747.937 +29544,2025-03-10T16:57:08.047190-07:00,1001.0253295898438,10.746212,10746.212 +29545,2025-03-10T16:57:18.788162-07:00,1001.0435180664062,10.740972,10740.972 +29546,2025-03-10T16:57:29.535171-07:00,1001.0318603515625,10.747009,10747.009 +29547,2025-03-10T16:57:40.274108-07:00,1001.028564453125,10.738937,10738.937 +29548,2025-03-10T16:57:51.011247-07:00,1001.036865234375,10.737139,10737.139 +29549,2025-03-10T16:58:01.758975-07:00,1001.0255737304688,10.747728,10747.728 +29550,2025-03-10T16:58:12.494189-07:00,1001.047119140625,10.735214,10735.214 +29551,2025-03-10T16:58:23.234978-07:00,1001.005615234375,10.740789,10740.789 +29552,2025-03-10T16:58:33.968983-07:00,1001.0122680664062,10.734005,10734.005 +29553,2025-03-10T16:58:44.707160-07:00,1001.0042724609375,10.738177,10738.177 +29554,2025-03-10T16:58:55.447396-07:00,1001.0242309570312,10.740236,10740.236 +29555,2025-03-10T16:59:06.193209-07:00,1001.0374755859375,10.745813,10745.813 +29556,2025-03-10T16:59:16.924294-07:00,1000.99462890625,10.731085,10731.085 +29557,2025-03-10T16:59:27.675033-07:00,1001.0162353515625,10.750739,10750.739 +29558,2025-03-10T16:59:38.413374-07:00,1001.0145263671875,10.738341,10738.341 +29559,2025-03-10T16:59:49.147173-07:00,1001.006591796875,10.733799,10733.799 +29560,2025-03-10T16:59:59.895202-07:00,1000.9985961914062,10.748029,10748.029 +29561,2025-03-10T17:00:10.631124-07:00,1001.0078735351562,10.735922,10735.922 +29562,2025-03-10T17:00:21.375186-07:00,1000.9999389648438,10.744062,10744.062 +29563,2025-03-10T17:00:32.113978-07:00,1000.95703125,10.738792,10738.792 +29564,2025-03-10T17:00:42.852982-07:00,1001.005126953125,10.739004,10739.004 +29565,2025-03-10T17:00:53.599046-07:00,1000.97705078125,10.746064,10746.064 +29566,2025-03-10T17:01:04.335415-07:00,1001.0087280273438,10.736369,10736.369 +29567,2025-03-10T17:01:15.069158-07:00,1000.9822387695312,10.733743,10733.743 +29568,2025-03-10T17:01:25.807006-07:00,1001.0184326171875,10.737848,10737.848 +29569,2025-03-10T17:01:36.539969-07:00,1001.0220336914062,10.732963,10732.963 +29570,2025-03-10T17:01:47.277119-07:00,1001.002197265625,10.73715,10737.15 +29571,2025-03-10T17:01:58.020210-07:00,1001.0074462890625,10.743091,10743.091 +29572,2025-03-10T17:02:08.759169-07:00,1001.00439453125,10.738959,10738.959 +29573,2025-03-10T17:02:19.494192-07:00,1001.0140380859375,10.735023,10735.023 +29574,2025-03-10T17:02:30.233974-07:00,1001.0362548828125,10.739782,10739.782 +29575,2025-03-10T17:02:40.975303-07:00,1001.00830078125,10.741329,10741.329 +29576,2025-03-10T17:02:51.716008-07:00,1000.9950561523438,10.740705,10740.705 +29577,2025-03-10T17:03:02.452052-07:00,1001.001708984375,10.736044,10736.044 +29578,2025-03-10T17:03:13.191190-07:00,1001.0133056640625,10.739138,10739.138 +29579,2025-03-10T17:03:23.928003-07:00,1000.9920043945312,10.736813,10736.813 +29580,2025-03-10T17:03:34.667973-07:00,1001.0186157226562,10.73997,10739.97 +29581,2025-03-10T17:03:45.400171-07:00,1001.0053100585938,10.732198,10732.198 +29582,2025-03-10T17:03:56.147970-07:00,1001.0053100585938,10.747799,10747.799 +29583,2025-03-10T17:04:06.885500-07:00,1001.0022583007812,10.73753,10737.53 +29584,2025-03-10T17:04:17.611260-07:00,1001.0420532226562,10.72576,10725.76 +29585,2025-03-10T17:04:28.351493-07:00,1001.0062255859375,10.740233,10740.233 +29586,2025-03-10T17:04:39.083972-07:00,1001.0194702148438,10.732479,10732.479 +29587,2025-03-10T17:04:49.820171-07:00,1001.0062255859375,10.736199,10736.199 +29588,2025-03-10T17:05:00.556127-07:00,1001.0045166015625,10.735956,10735.956 +29589,2025-03-10T17:05:11.300329-07:00,1000.99658203125,10.744202,10744.202 +29590,2025-03-10T17:05:22.032978-07:00,1001.0098266601562,10.732649,10732.649 +29591,2025-03-10T17:05:32.771143-07:00,1001.0296630859375,10.738165,10738.165 +29592,2025-03-10T17:05:43.517202-07:00,1001.021728515625,10.746059,10746.059 +29593,2025-03-10T17:05:54.253154-07:00,1001.0084228515625,10.735952,10735.952 +29594,2025-03-10T17:06:04.989975-07:00,1001.0332641601562,10.736821,10736.821 +29595,2025-03-10T17:06:15.726052-07:00,1001.0283813476562,10.736077,10736.077 +29596,2025-03-10T17:06:26.469975-07:00,1001.0106811523438,10.743923,10743.923 +29597,2025-03-10T17:06:37.214007-07:00,1001.021728515625,10.744032,10744.032 +29598,2025-03-10T17:06:47.947975-07:00,1001.02001953125,10.733968,10733.968 +29599,2025-03-10T17:06:58.693983-07:00,1001.021728515625,10.746008,10746.008 +29600,2025-03-10T17:07:09.430198-07:00,1001.0001831054688,10.736215,10736.215 +29601,2025-03-10T17:07:20.173973-07:00,1001.0001831054688,10.743775,10743.775 +29602,2025-03-10T17:07:30.904782-07:00,1000.998779296875,10.730809,10730.809 +29603,2025-03-10T17:07:41.649981-07:00,1000.9841918945312,10.745199,10745.199 +29604,2025-03-10T17:07:52.388043-07:00,1001.0186767578125,10.738062,10738.062 +29605,2025-03-10T17:08:03.130175-07:00,1001.0054931640625,10.742132,10742.132 +29606,2025-03-10T17:08:13.870151-07:00,1000.9774780273438,10.739976,10739.976 +29607,2025-03-10T17:08:24.603974-07:00,1000.998779296875,10.733823,10733.823 +29608,2025-03-10T17:08:35.337187-07:00,1001.002685546875,10.733213,10733.213 +29609,2025-03-10T17:08:46.078977-07:00,1000.9745483398438,10.74179,10741.79 +29610,2025-03-10T17:08:56.816573-07:00,1000.9894409179688,10.737596,10737.596 +29611,2025-03-10T17:09:07.558125-07:00,1000.95458984375,10.741552,10741.552 +29612,2025-03-10T17:09:18.291999-07:00,1000.9894409179688,10.733874,10733.874 +29613,2025-03-10T17:09:29.025974-07:00,1001.017333984375,10.733975,10733.975 +29614,2025-03-10T17:09:39.773972-07:00,1000.994384765625,10.747998,10747.998 +29615,2025-03-10T17:09:50.510005-07:00,1000.9974365234375,10.736033,10736.033 +29616,2025-03-10T17:10:01.248175-07:00,1000.9612426757812,10.73817,10738.17 +29617,2025-03-10T17:10:11.984542-07:00,1000.9810791015625,10.736367,10736.367 +29618,2025-03-10T17:10:22.716985-07:00,1000.979736328125,10.732443,10732.443 +29619,2025-03-10T17:10:33.457174-07:00,1000.998291015625,10.740189,10740.189 +29620,2025-03-10T17:10:44.189013-07:00,1000.9718017578125,10.731839,10731.839 +29621,2025-03-10T17:10:54.933050-07:00,1000.9863891601562,10.744037,10744.037 +29622,2025-03-10T17:11:05.663100-07:00,1000.9784545898438,10.73005,10730.05 +29623,2025-03-10T17:11:16.404070-07:00,1000.9996948242188,10.74097,10740.97 +29624,2025-03-10T17:11:27.148465-07:00,1000.9718017578125,10.744395,10744.395 +29625,2025-03-10T17:11:37.879294-07:00,1000.9849853515625,10.730829,10730.829 +29626,2025-03-10T17:11:48.619284-07:00,1000.9568481445312,10.73999,10739.99 +29627,2025-03-10T17:11:59.362167-07:00,1001.0115356445312,10.742883,10742.883 +29628,2025-03-10T17:12:10.094977-07:00,1000.9754028320312,10.73281,10732.81 +29629,2025-03-10T17:12:20.838086-07:00,1000.9784545898438,10.743109,10743.109 +29630,2025-03-10T17:12:31.575045-07:00,1000.9849853515625,10.736959,10736.959 +29631,2025-03-10T17:12:42.318157-07:00,1000.9966430664062,10.743112,10743.112 +29632,2025-03-10T17:12:53.049144-07:00,1000.9767456054688,10.730987,10730.987 +29633,2025-03-10T17:13:03.791733-07:00,1000.9885864257812,10.742589,10742.589 +29634,2025-03-10T17:13:14.525976-07:00,1000.9590454101562,10.734243,10734.243 +29635,2025-03-10T17:13:25.265184-07:00,1000.9754028320312,10.739208,10739.208 +29636,2025-03-10T17:13:36.004126-07:00,1000.9673461914062,10.738942,10738.942 +29637,2025-03-10T17:13:46.743190-07:00,1000.9723510742188,10.739064,10739.064 +29638,2025-03-10T17:13:57.484164-07:00,1000.9723510742188,10.740974,10740.974 +29639,2025-03-10T17:14:08.225667-07:00,1000.9657592773438,10.741503,10741.503 +29640,2025-03-10T17:14:18.959971-07:00,1000.9806518554688,10.734304,10734.304 +29641,2025-03-10T17:14:29.691140-07:00,1000.985595703125,10.731169,10731.169 +29642,2025-03-10T17:14:40.437017-07:00,1000.9657592773438,10.745877,10745.877 +29643,2025-03-10T17:14:51.170141-07:00,1001.0204467773438,10.733124,10733.124 +29644,2025-03-10T17:15:01.909204-07:00,1000.9922485351562,10.739063,10739.063 +29645,2025-03-10T17:15:12.650049-07:00,1000.990966796875,10.740845,10740.845 +29646,2025-03-10T17:15:23.387177-07:00,1000.9961547851562,10.737128,10737.128 +29647,2025-03-10T17:15:33.483171-07:00,1000.989501953125,10.095994,10095.994 +29648,2025-03-10T17:15:34.117258-07:00,1000.9961547851562,0.634087,634.087 +29649,2025-03-10T17:15:44.862182-07:00,1000.990966796875,10.744924,10744.924 +29650,2025-03-10T17:15:55.603185-07:00,1001.0093994140625,10.741003,10741.003 +29651,2025-03-10T17:16:06.340001-07:00,1001.0240478515625,10.736816,10736.816 +29652,2025-03-10T17:16:17.079085-07:00,1000.98291015625,10.739084,10739.084 +29653,2025-03-10T17:16:27.807988-07:00,1000.9961547851562,10.728903,10728.903 +29654,2025-03-10T17:16:38.546363-07:00,1001.03955078125,10.738375,10738.375 +29655,2025-03-10T17:16:49.290100-07:00,1001.0271606445312,10.743737,10743.737 +29656,2025-03-10T17:17:00.025187-07:00,1001.0545043945312,10.735087,10735.087 +29657,2025-03-10T17:17:10.756970-07:00,1001.0392456054688,10.731783,10731.783 +29658,2025-03-10T17:17:21.488226-07:00,1001.029052734375,10.731256,10731.256 +29659,2025-03-10T17:17:32.225997-07:00,1001.0362548828125,10.737771,10737.771 +29660,2025-03-10T17:17:42.965975-07:00,1001.0423583984375,10.739978,10739.978 +29661,2025-03-10T17:17:53.704048-07:00,1001.0437622070312,10.738073,10738.073 +29662,2025-03-10T17:18:04.442015-07:00,1001.0282592773438,10.737967,10737.967 +29663,2025-03-10T17:18:15.178972-07:00,1001.0526733398438,10.736957,10736.957 +29664,2025-03-10T17:18:25.911535-07:00,1001.015625,10.732563,10732.563 +29665,2025-03-10T17:18:36.654006-07:00,1001.0018920898438,10.742471,10742.471 +29666,2025-03-10T17:18:47.388202-07:00,1001.04248046875,10.734196,10734.196 +29667,2025-03-10T17:18:58.124978-07:00,1001.0306396484375,10.736776,10736.776 +29668,2025-03-10T17:19:08.862388-07:00,1001.0315551757812,10.73741,10737.41 +29669,2025-03-10T17:19:19.604175-07:00,1001.0173950195312,10.741787,10741.787 +29670,2025-03-10T17:19:30.334038-07:00,1001.0236206054688,10.729863,10729.863 +29671,2025-03-10T17:19:41.071978-07:00,1001.05224609375,10.73794,10737.94 +29672,2025-03-10T17:19:51.810977-07:00,1001.0368041992188,10.738999,10738.999 +29673,2025-03-10T17:20:02.538377-07:00,1000.9912719726562,10.7274,10727.4 +29674,2025-03-10T17:20:13.277849-07:00,1001.0346069335938,10.739472,10739.472 +29675,2025-03-10T17:20:24.005974-07:00,1001.0301513671875,10.728125,10728.125 +29676,2025-03-10T17:20:34.748998-07:00,1001.0059204101562,10.743024,10743.024 +29677,2025-03-10T17:20:45.481255-07:00,1001.0186157226562,10.732257,10732.257 +29678,2025-03-10T17:20:56.223156-07:00,1001.0287475585938,10.741901,10741.901 +29679,2025-03-10T17:21:06.955977-07:00,1001.0142211914062,10.732821,10732.821 +29680,2025-03-10T17:21:17.683196-07:00,1001.0111083984375,10.727219,10727.219 +29681,2025-03-10T17:21:28.418162-07:00,1001.044189453125,10.734966,10734.966 +29682,2025-03-10T17:21:39.151080-07:00,1001.0067138671875,10.732918,10732.918 +29683,2025-03-10T17:21:49.881400-07:00,1001.033203125,10.73032,10730.32 +29684,2025-03-10T17:22:00.620491-07:00,1001.0039672851562,10.739091,10739.091 +29685,2025-03-10T17:22:11.358537-07:00,1001.0172119140625,10.738046,10738.046 +29686,2025-03-10T17:22:22.093999-07:00,1001.0582885742188,10.735462,10735.462 +29687,2025-03-10T17:22:32.831083-07:00,1001.05029296875,10.737084,10737.084 +29688,2025-03-10T17:22:43.570973-07:00,1001.05029296875,10.73989,10739.89 +29689,2025-03-10T17:22:54.307977-07:00,1001.011962890625,10.737004,10737.004 +29690,2025-03-10T17:23:05.043475-07:00,1001.0516967773438,10.735498,10735.498 +29691,2025-03-10T17:23:15.780062-07:00,1001.0679931640625,10.736587,10736.587 +29692,2025-03-10T17:23:26.512046-07:00,1001.0429077148438,10.731984,10731.984 +29693,2025-03-10T17:23:37.247159-07:00,1001.0560913085938,10.735113,10735.113 +29694,2025-03-10T17:23:47.984392-07:00,1001.060546875,10.737233,10737.233 +29695,2025-03-10T17:23:55.627110-07:00,1001.068603515625,7.642718,7642.718 +29696,2025-03-10T17:23:58.725461-07:00,1001.0632934570312,3.098351,3098.351 +29697,2025-03-10T17:24:09.461177-07:00,1001.0862426757812,10.735716,10735.716 +29698,2025-03-10T17:24:20.193009-07:00,1001.0531005859375,10.731832,10731.832 +29699,2025-03-10T17:24:30.929978-07:00,1001.0560913085938,10.736969,10736.969 +29700,2025-03-10T17:24:41.667161-07:00,1001.1017456054688,10.737183,10737.183 +29701,2025-03-10T17:24:52.402049-07:00,1001.096435546875,10.734888,10734.888 +29702,2025-03-10T17:25:03.141975-07:00,1001.0914916992188,10.739926,10739.926 +29703,2025-03-10T17:25:13.878979-07:00,1001.1074829101562,10.737004,10737.004 +29704,2025-03-10T17:25:24.613645-07:00,1001.0956420898438,10.734666,10734.666 +29705,2025-03-10T17:25:35.361466-07:00,1001.0999755859375,10.747821,10747.821 +29706,2025-03-10T17:25:46.097174-07:00,1001.0934448242188,10.735708,10735.708 +29707,2025-03-10T17:25:56.834038-07:00,1001.0831909179688,10.736864,10736.864 +29708,2025-03-10T17:26:07.573983-07:00,1001.124267578125,10.739945,10739.945 +29709,2025-03-10T17:26:18.312979-07:00,1001.1074829101562,10.738996,10738.996 +29710,2025-03-10T17:26:29.056147-07:00,1001.119873046875,10.743168,10743.168 +29711,2025-03-10T17:26:39.788161-07:00,1001.1017456054688,10.732014,10732.014 +29712,2025-03-10T17:26:50.528070-07:00,1001.1163330078125,10.739909,10739.909 +29713,2025-03-10T17:27:01.273145-07:00,1001.1353149414062,10.745075,10745.075 +29714,2025-03-10T17:27:12.010977-07:00,1001.1185302734375,10.737832,10737.832 +29715,2025-03-10T17:27:22.742420-07:00,1001.1317749023438,10.731443,10731.443 +29716,2025-03-10T17:27:33.485027-07:00,1001.0946655273438,10.742607,10742.607 +29717,2025-03-10T17:27:44.226152-07:00,1001.1190795898438,10.741125,10741.125 +29718,2025-03-10T17:27:54.962163-07:00,1001.1287231445312,10.736011,10736.011 +29719,2025-03-10T17:28:05.704975-07:00,1001.1074829101562,10.742812,10742.812 +29720,2025-03-10T17:28:16.443013-07:00,1001.111572265625,10.738038,10738.038 +29721,2025-03-10T17:28:27.177209-07:00,1001.1292114257812,10.734196,10734.196 +29722,2025-03-10T17:28:37.922130-07:00,1001.109375,10.744921,10744.921 +29723,2025-03-10T17:28:48.663365-07:00,1001.143310546875,10.741235,10741.235 +29724,2025-03-10T17:28:59.391974-07:00,1001.1331176757812,10.728609,10728.609 +29725,2025-03-10T17:29:10.137196-07:00,1001.1292114257812,10.745222,10745.222 +29726,2025-03-10T17:29:20.875005-07:00,1001.1309204101562,10.737809,10737.809 +29727,2025-03-10T17:29:31.616188-07:00,1001.1482543945312,10.741183,10741.183 +29728,2025-03-10T17:29:42.351867-07:00,1001.1300048828125,10.735679,10735.679 +29729,2025-03-10T17:29:53.096369-07:00,1001.139404296875,10.744502,10744.502 +29730,2025-03-10T17:30:03.835715-07:00,1001.1543579101562,10.739346,10739.346 +29731,2025-03-10T17:30:14.568186-07:00,1001.115966796875,10.732471,10732.471 +29732,2025-03-10T17:30:25.306052-07:00,1001.1256103515625,10.737866,10737.866 +29733,2025-03-10T17:30:36.052187-07:00,1001.143310546875,10.746135,10746.135 +29734,2025-03-10T17:30:46.784086-07:00,1001.0968627929688,10.731899,10731.899 +29735,2025-03-10T17:30:57.525069-07:00,1001.1397094726562,10.740983,10740.983 +29736,2025-03-10T17:31:08.267075-07:00,1001.16259765625,10.742006,10742.006 +29737,2025-03-10T17:31:18.996981-07:00,1001.1361083984375,10.729906,10729.906 +29738,2025-03-10T17:31:29.736241-07:00,1001.1404418945312,10.73926,10739.26 +29739,2025-03-10T17:31:40.475264-07:00,1001.1470947265625,10.739023,10739.023 +29740,2025-03-10T17:31:51.219552-07:00,1001.1581420898438,10.744288,10744.288 +29741,2025-03-10T17:32:01.955028-07:00,1001.146240234375,10.735476,10735.476 +29742,2025-03-10T17:32:12.699013-07:00,1001.1572875976562,10.743985,10743.985 +29743,2025-03-10T17:32:23.440122-07:00,1001.12548828125,10.741109,10741.109 +29744,2025-03-10T17:32:34.181154-07:00,1001.18017578125,10.741032,10741.032 +29745,2025-03-10T17:32:44.909979-07:00,1001.1484375,10.728825,10728.825 +29746,2025-03-10T17:32:55.650147-07:00,1001.1643676757812,10.740168,10740.168 +29747,2025-03-10T17:33:06.393569-07:00,1001.159423828125,10.743422,10743.422 +29748,2025-03-10T17:33:17.130976-07:00,1001.174072265625,10.737407,10737.407 +29749,2025-03-10T17:33:27.876365-07:00,1001.1704711914062,10.745389,10745.389 +29750,2025-03-10T17:33:38.617976-07:00,1001.1571655273438,10.741611,10741.611 +29751,2025-03-10T17:33:49.359188-07:00,1001.178466796875,10.741212,10741.212 +29752,2025-03-10T17:34:00.090212-07:00,1001.1483764648438,10.731024,10731.024 +29753,2025-03-10T17:34:10.840179-07:00,1001.1895141601562,10.749967,10749.967 +29754,2025-03-10T17:34:21.573731-07:00,1001.21240234375,10.733552,10733.552 +29755,2025-03-10T17:34:32.313974-07:00,1001.1793212890625,10.740243,10740.243 +29756,2025-03-10T17:34:43.054995-07:00,1001.2072143554688,10.741021,10741.021 +29757,2025-03-10T17:34:53.797170-07:00,1001.2151489257812,10.742175,10742.175 +29758,2025-03-10T17:35:04.548184-07:00,1001.229736328125,10.751014,10751.014 +29759,2025-03-10T17:35:15.283139-07:00,1001.224853515625,10.734955,10734.955 +29760,2025-03-10T17:35:26.031978-07:00,1001.2142944335938,10.748839,10748.839 +29761,2025-03-10T17:35:36.768146-07:00,1001.20263671875,10.736168,10736.168 +29762,2025-03-10T17:35:47.515011-07:00,1001.2335815429688,10.746865,10746.865 +29763,2025-03-10T17:35:58.259150-07:00,1001.1921997070312,10.744139,10744.139 +29764,2025-03-10T17:36:09.000914-07:00,1001.1871948242188,10.741764,10741.764 +29765,2025-03-10T17:36:19.735990-07:00,1001.203125,10.735076,10735.076 +29766,2025-03-10T17:36:30.477974-07:00,1001.204833984375,10.741984,10741.984 +29767,2025-03-10T17:36:41.216188-07:00,1001.1995239257812,10.738214,10738.214 +29768,2025-03-10T17:36:51.961056-07:00,1001.1995239257812,10.744868,10744.868 +29769,2025-03-10T17:37:02.706111-07:00,1001.1730346679688,10.745055,10745.055 +29770,2025-03-10T17:37:13.442783-07:00,1001.1893920898438,10.736672,10736.672 +29771,2025-03-10T17:37:24.182155-07:00,1001.1707763671875,10.739372,10739.372 +29772,2025-03-10T17:37:34.931153-07:00,1001.19873046875,10.748998,10748.998 +29773,2025-03-10T17:37:45.664001-07:00,1001.16552734375,10.732848,10732.848 +29774,2025-03-10T17:37:56.404977-07:00,1001.224365234375,10.740976,10740.976 +29775,2025-03-10T17:38:07.146044-07:00,1001.203125,10.741067,10741.067 +29776,2025-03-10T17:38:17.894974-07:00,1001.1978149414062,10.74893,10748.93 +29777,2025-03-10T17:38:28.634979-07:00,1001.180908203125,10.740005,10740.005 +29778,2025-03-10T17:38:39.371380-07:00,1001.1478271484375,10.736401,10736.401 +29779,2025-03-10T17:38:50.114173-07:00,1001.1906127929688,10.742793,10742.793 +29780,2025-03-10T17:39:00.862199-07:00,1001.1707763671875,10.748026,10748.026 +29781,2025-03-10T17:39:11.612385-07:00,1001.1800537109375,10.750186,10750.186 +29782,2025-03-10T17:39:22.345971-07:00,1001.1565551757812,10.733586,10733.586 +29783,2025-03-10T17:39:33.096221-07:00,1001.161865234375,10.75025,10750.25 +29784,2025-03-10T17:39:43.841055-07:00,1001.172607421875,10.744834,10744.834 +29785,2025-03-10T17:39:54.582624-07:00,1001.1181030273438,10.741569,10741.569 +29786,2025-03-10T17:40:05.326979-07:00,1001.1314086914062,10.744355,10744.355 +29787,2025-03-10T17:40:16.068048-07:00,1001.114501953125,10.741069,10741.069 +29788,2025-03-10T17:40:26.812756-07:00,1001.147705078125,10.744708,10744.708 +29789,2025-03-10T17:40:37.557201-07:00,1001.1702880859375,10.744445,10744.445 +29790,2025-03-10T17:40:48.305976-07:00,1001.14013671875,10.748775,10748.775 +29791,2025-03-10T17:40:59.049218-07:00,1001.1548461914062,10.743242,10743.242 +29792,2025-03-10T17:41:09.791162-07:00,1001.1578369140625,10.741944,10741.944 +29793,2025-03-10T17:41:20.531156-07:00,1001.1476440429688,10.739994,10739.994 +29794,2025-03-10T17:41:31.270978-07:00,1001.1621704101562,10.739822,10739.822 +29795,2025-03-10T17:41:42.018977-07:00,1001.2034301757812,10.747999,10747.999 +29796,2025-03-10T17:41:52.758212-07:00,1001.1585693359375,10.739235,10739.235 +29797,2025-03-10T17:42:03.500481-07:00,1001.1798706054688,10.742269,10742.269 +29798,2025-03-10T17:42:14.247177-07:00,1001.1759643554688,10.746696,10746.696 +29799,2025-03-10T17:42:24.985223-07:00,1001.1560668945312,10.738046,10738.046 +29800,2025-03-10T17:42:35.733295-07:00,1001.1710205078125,10.748072,10748.072 +29801,2025-03-10T17:42:46.484047-07:00,1001.1525268554688,10.750752,10750.752 +29802,2025-03-10T17:42:57.218400-07:00,1001.14453125,10.734353,10734.353 +29803,2025-03-10T17:43:07.969974-07:00,1001.1737670898438,10.751574,10751.574 +29804,2025-03-10T17:43:18.717975-07:00,1001.145751953125,10.748001,10748.001 +29805,2025-03-10T17:43:29.458030-07:00,1001.1422119140625,10.740055,10740.055 +29806,2025-03-10T17:43:40.198192-07:00,1001.1766967773438,10.740162,10740.162 +29807,2025-03-10T17:43:50.947196-07:00,1001.170166015625,10.749004,10749.004 +29808,2025-03-10T17:44:01.688336-07:00,1001.1766967773438,10.74114,10741.14 +29809,2025-03-10T17:44:12.432673-07:00,1001.1598510742188,10.744337,10744.337 +29810,2025-03-10T17:44:23.181008-07:00,1001.1648559570312,10.748335,10748.335 +29811,2025-03-10T17:44:33.927559-07:00,1001.1777954101562,10.746551,10746.551 +29812,2025-03-10T17:44:44.676128-07:00,1001.1712646484375,10.748569,10748.569 +29813,2025-03-10T17:44:55.432193-07:00,1001.1755981445312,10.756065,10756.065 +29814,2025-03-10T17:45:06.180461-07:00,1001.1504516601562,10.748268,10748.268 +29815,2025-03-10T17:45:16.927174-07:00,1001.1597900390625,10.746713,10746.713 +29816,2025-03-10T17:45:27.666223-07:00,1001.1724243164062,10.739049,10739.049 +29817,2025-03-10T17:45:38.420203-07:00,1001.1737670898438,10.75398,10753.98 +29818,2025-03-10T17:45:49.167280-07:00,1001.16357421875,10.747077,10747.077 +29819,2025-03-10T17:45:59.903989-07:00,1001.1546630859375,10.736709,10736.709 +29820,2025-03-10T17:46:10.655579-07:00,1001.170654296875,10.75159,10751.59 +29821,2025-03-10T17:46:21.400032-07:00,1001.1454467773438,10.744453,10744.453 +29822,2025-03-10T17:46:32.152057-07:00,1001.1581420898438,10.752025,10752.025 +29823,2025-03-10T17:46:42.902260-07:00,1001.146240234375,10.750203,10750.203 +29824,2025-03-10T17:46:53.644055-07:00,1001.178466796875,10.741795,10741.795 +29825,2025-03-10T17:47:04.387978-07:00,1001.1668701171875,10.743923,10743.923 +29826,2025-03-10T17:47:15.134981-07:00,1001.1779174804688,10.747003,10747.003 +29827,2025-03-10T17:47:25.891004-07:00,1001.1620483398438,10.756023,10756.023 +29828,2025-03-10T17:47:36.640014-07:00,1001.1902465820312,10.74901,10749.01 +29829,2025-03-10T17:47:47.384001-07:00,1001.1651000976562,10.743987,10743.987 +29830,2025-03-10T17:47:58.135001-07:00,1001.2122802734375,10.751,10751.0 +29831,2025-03-10T17:48:08.889398-07:00,1001.18701171875,10.754397,10754.397 +29832,2025-03-10T17:48:19.637087-07:00,1001.161865234375,10.747689,10747.689 +29833,2025-03-10T17:48:30.387153-07:00,1001.169189453125,10.750066,10750.066 +29834,2025-03-10T17:48:41.145235-07:00,1001.2001342773438,10.758082,10758.082 +29835,2025-03-10T17:48:51.894120-07:00,1001.1846923828125,10.748885,10748.885 +29836,2025-03-10T17:49:02.654978-07:00,1001.2288208007812,10.760858,10760.858 +29837,2025-03-10T17:49:13.410745-07:00,1001.2146606445312,10.755767,10755.767 +29838,2025-03-10T17:49:24.172428-07:00,1001.1990356445312,10.761683,10761.683 +29839,2025-03-10T17:49:34.929397-07:00,1001.2246704101562,10.756969,10756.969 +29840,2025-03-10T17:49:45.678181-07:00,1001.23046875,10.748784,10748.784 +29841,2025-03-10T17:49:56.439065-07:00,1001.2537231445312,10.760884,10760.884 +29842,2025-03-10T17:50:07.189180-07:00,1001.2216186523438,10.750115,10750.115 +29843,2025-03-10T17:50:17.947009-07:00,1001.2273559570312,10.757829,10757.829 +29844,2025-03-10T17:50:28.698347-07:00,1001.2861938476562,10.751338,10751.338 +29845,2025-03-10T17:50:39.449547-07:00,1001.2670288085938,10.7512,10751.2 +29846,2025-03-10T17:50:50.192980-07:00,1001.2926635742188,10.743433,10743.433 +29847,2025-03-10T17:51:00.941198-07:00,1001.262451171875,10.748218,10748.218 +29848,2025-03-10T17:51:11.691977-07:00,1001.2770385742188,10.750779,10750.779 +29849,2025-03-10T17:51:22.444102-07:00,1001.261474609375,10.752125,10752.125 +29850,2025-03-10T17:51:33.186978-07:00,1001.2725219726562,10.742876,10742.876 +29851,2025-03-10T17:51:43.939326-07:00,1001.287109375,10.752348,10752.348 +29852,2025-03-10T17:51:54.680980-07:00,1001.2701416015625,10.741654,10741.654 +29853,2025-03-10T17:52:05.432073-07:00,1001.2701416015625,10.751093,10751.093 +29854,2025-03-10T17:52:16.172974-07:00,1001.27685546875,10.740901,10740.901 +29855,2025-03-10T17:52:26.919978-07:00,1001.3179931640625,10.747004,10747.004 +29856,2025-03-10T17:52:37.669447-07:00,1001.302001953125,10.749469,10749.469 +29857,2025-03-10T17:52:48.411198-07:00,1001.2821044921875,10.741751,10741.751 +29858,2025-03-10T17:52:59.153182-07:00,1001.27685546875,10.741984,10741.984 +29859,2025-03-10T17:53:09.930537-07:00,1001.2738037109375,10.777355,10777.355 +29860,2025-03-10T17:53:20.678535-07:00,1001.2725219726562,10.747998,10747.998 +29861,2025-03-10T17:53:31.425750-07:00,1001.2681274414062,10.747215,10747.215 +29862,2025-03-10T17:53:42.165695-07:00,904.498779296875,10.739945,10739.945 +29863,2025-03-10T17:53:52.904964-07:00,1001.271728515625,10.739269,10739.269 +29864,2025-03-10T17:54:03.648707-07:00,1001.2611083984375,10.743743,10743.743 +29865,2025-03-10T17:54:14.398868-07:00,1001.2726440429688,10.750161,10750.161 +29866,2025-03-10T17:54:25.133671-07:00,1001.26171875,10.734803,10734.803 +29867,2025-03-10T17:54:35.884818-07:00,1001.2493896484375,10.751147,10751.147 +29868,2025-03-10T17:54:46.626774-07:00,1001.2855224609375,10.741956,10741.956 +29869,2025-03-10T17:54:57.364565-07:00,1001.246337890625,10.737791,10737.791 +29870,2025-03-10T17:55:08.120392-07:00,1001.2745361328125,10.755827,10755.827 +29871,2025-03-10T17:55:18.870565-07:00,1001.2529907226562,10.750173,10750.173 +29872,2025-03-10T17:55:29.610757-07:00,1001.2516479492188,10.740192,10740.192 +29873,2025-03-10T17:55:40.360848-07:00,1001.25830078125,10.750091,10750.091 +29874,2025-03-10T17:55:51.118111-07:00,1001.2516479492188,10.757263,10757.263 +29875,2025-03-10T17:56:01.866437-07:00,1001.2662353515625,10.748326,10748.326 +29876,2025-03-10T17:56:12.621306-07:00,1001.264892578125,10.754869,10754.869 +29877,2025-03-10T17:56:23.367731-07:00,1001.2529907226562,10.746425,10746.425 +29878,2025-03-10T17:56:34.120726-07:00,1001.2529907226562,10.752995,10752.995 +29879,2025-03-10T17:56:44.871727-07:00,1001.2413940429688,10.751001,10751.001 +29880,2025-03-10T17:56:55.613755-07:00,1001.25732421875,10.742028,10742.028 +29881,2025-03-10T17:57:06.358721-07:00,1001.21923828125,10.744966,10744.966 +29882,2025-03-10T17:57:17.113563-07:00,1001.2390747070312,10.754842,10754.842 +29883,2025-03-10T17:57:27.861734-07:00,1001.2390747070312,10.748171,10748.171 +29884,2025-03-10T17:57:38.613014-07:00,1001.2294311523438,10.75128,10751.28 +29885,2025-03-10T17:57:49.353561-07:00,1001.24267578125,10.740547,10740.547 +29886,2025-03-10T17:58:00.105592-07:00,1001.2294311523438,10.752031,10752.031 +29887,2025-03-10T17:58:10.858558-07:00,1001.2263793945312,10.752966,10752.966 +29888,2025-03-10T17:58:21.610539-07:00,1001.236083984375,10.751981,10751.981 +29889,2025-03-10T17:58:32.357718-07:00,1001.2281494140625,10.747179,10747.179 +29890,2025-03-10T17:58:43.114598-07:00,1001.2413940429688,10.75688,10756.88 +29891,2025-03-10T17:58:53.869751-07:00,1001.25732421875,10.755153,10755.153 +29892,2025-03-10T17:59:04.615533-07:00,1001.2772827148438,10.745782,10745.782 +29893,2025-03-10T17:59:15.371712-07:00,1001.265625,10.756179,10756.179 +29894,2025-03-10T17:59:26.120377-07:00,1001.2374267578125,10.748665,10748.665 +29895,2025-03-10T17:59:36.866792-07:00,1001.2670288085938,10.746415,10746.415 +29896,2025-03-10T17:59:47.623725-07:00,1001.26171875,10.756933,10756.933 +29897,2025-03-10T17:59:58.371944-07:00,1001.2882690429688,10.748219,10748.219 +29898,2025-03-10T18:00:09.125532-07:00,1001.30322265625,10.753588,10753.588 +29899,2025-03-10T18:00:19.878536-07:00,1001.2647094726562,10.753004,10753.004 +29900,2025-03-10T18:00:30.633666-07:00,1001.3125,10.75513,10755.13 +29901,2025-03-10T18:00:41.389832-07:00,1001.3102416992188,10.756166,10756.166 +29902,2025-03-10T18:00:52.136606-07:00,1001.30224609375,10.746774,10746.774 +29903,2025-03-10T18:01:02.896592-07:00,1001.2823486328125,10.759986,10759.986 +29904,2025-03-10T18:01:13.642733-07:00,1001.2849731445312,10.746141,10746.141 +29905,2025-03-10T18:01:24.402728-07:00,1001.3132934570312,10.759995,10759.995 +29906,2025-03-10T18:01:35.158739-07:00,1001.2734375,10.756011,10756.011 +29907,2025-03-10T18:01:45.908725-07:00,1001.2843627929688,10.749986,10749.986 +29908,2025-03-10T18:01:56.651822-07:00,1001.2711181640625,10.743097,10743.097 +29909,2025-03-10T18:02:07.403749-07:00,1001.3269653320312,10.751927,10751.927 +29910,2025-03-10T18:02:18.156798-07:00,1001.2937622070312,10.753049,10753.049 +29911,2025-03-10T18:02:28.902424-07:00,1001.2821044921875,10.745626,10745.626 +29912,2025-03-10T18:02:39.651774-07:00,1001.3086547851562,10.74935,10749.35 +29913,2025-03-10T18:02:50.406633-07:00,1001.2798461914062,10.754859,10754.859 +29914,2025-03-10T18:03:01.149810-07:00,1001.302490234375,10.743177,10743.177 +29915,2025-03-10T18:03:11.907738-07:00,1001.3173217773438,10.757928,10757.928 +29916,2025-03-10T18:03:22.657665-07:00,1001.2892456054688,10.749927,10749.927 +29917,2025-03-10T18:03:33.404529-07:00,1001.282470703125,10.746864,10746.864 +29918,2025-03-10T18:03:44.160827-07:00,1001.3040771484375,10.756298,10756.298 +29919,2025-03-10T18:03:54.902067-07:00,1001.2855224609375,10.74124,10741.24 +29920,2025-03-10T18:04:05.657703-07:00,1001.2855224609375,10.755636,10755.636 +29921,2025-03-10T18:04:16.409976-07:00,1001.3187255859375,10.752273,10752.273 +29922,2025-03-10T18:04:27.154587-07:00,1001.34130859375,10.744611,10744.611 +29923,2025-03-10T18:04:37.901637-07:00,1001.2921752929688,10.74705,10747.05 +29924,2025-03-10T18:04:48.652582-07:00,1001.310791015625,10.750945,10750.945 +29925,2025-03-10T18:04:59.401592-07:00,1001.3173217773438,10.74901,10749.01 +29926,2025-03-10T18:05:10.154729-07:00,1001.3143920898438,10.753137,10753.137 +29927,2025-03-10T18:05:20.899708-07:00,1001.3329467773438,10.744979,10744.979 +29928,2025-03-10T18:05:31.650957-07:00,1001.339599609375,10.751249,10751.249 +29929,2025-03-10T18:05:42.396718-07:00,1001.3551635742188,10.745761,10745.761 +29930,2025-03-10T18:05:53.143719-07:00,1001.3292236328125,10.747001,10747.001 +29931,2025-03-10T18:06:03.888370-07:00,1001.327880859375,10.744651,10744.651 +29932,2025-03-10T18:06:14.639712-07:00,1001.3513793945312,10.751342,10751.342 +29933,2025-03-10T18:06:25.384043-07:00,1001.3340454101562,10.744331,10744.331 +29934,2025-03-10T18:06:36.125558-07:00,1001.3068237304688,10.741515,10741.515 +29935,2025-03-10T18:06:46.873830-07:00,1001.3223266601562,10.748272,10748.272 +29936,2025-03-10T18:06:57.618063-07:00,1001.3143920898438,10.744233,10744.233 +29937,2025-03-10T18:07:08.366533-07:00,1001.2901611328125,10.74847,10748.47 +29938,2025-03-10T18:07:19.113525-07:00,1001.31591796875,10.746992,10746.992 +29939,2025-03-10T18:07:29.857971-07:00,1001.342529296875,10.744446,10744.446 +29940,2025-03-10T18:07:40.604535-07:00,1001.3367309570312,10.746564,10746.564 +29941,2025-03-10T18:07:51.346558-07:00,1001.3187255859375,10.742023,10742.023 +29942,2025-03-10T18:08:02.091535-07:00,1001.3277587890625,10.744977,10744.977 +29943,2025-03-10T18:08:12.835534-07:00,1001.3565673828125,10.743999,10743.999 +29944,2025-03-10T18:08:23.578885-07:00,1001.3389282226562,10.743351,10743.351 +29945,2025-03-10T18:08:34.310711-07:00,1001.3212280273438,10.731826,10731.826 +29946,2025-03-10T18:08:45.059713-07:00,1001.356689453125,10.749002,10749.002 +29947,2025-03-10T18:08:55.804004-07:00,1001.3128051757812,10.744291,10744.291 +29948,2025-03-10T18:09:06.548372-07:00,1001.3562622070312,10.744368,10744.368 +29949,2025-03-10T18:09:17.287739-07:00,1001.3253173828125,10.739367,10739.367 +29950,2025-03-10T18:09:28.036658-07:00,1001.3209228515625,10.748919,10748.919 +29951,2025-03-10T18:09:38.775670-07:00,1001.329833984375,10.739012,10739.012 +29952,2025-03-10T18:09:49.521529-07:00,1001.326904296875,10.745859,10745.859 +29953,2025-03-10T18:10:00.263532-07:00,1001.2813110351562,10.742003,10742.003 +29954,2025-03-10T18:10:11.006877-07:00,1001.3330688476562,10.743345,10743.345 +29955,2025-03-10T18:10:21.748571-07:00,1001.3206787109375,10.741694,10741.694 +29956,2025-03-10T18:10:32.496534-07:00,1001.3256225585938,10.747963,10747.963 +29957,2025-03-10T18:10:43.237760-07:00,1001.2986450195312,10.741226,10741.226 +29958,2025-03-10T18:10:53.976713-07:00,1001.32080078125,10.738953,10738.953 +29959,2025-03-10T18:11:04.719977-07:00,1001.3062744140625,10.743264,10743.264 +29960,2025-03-10T18:11:15.468761-07:00,1001.281982421875,10.748784,10748.784 +29961,2025-03-10T18:11:26.208857-07:00,1001.338623046875,10.740096,10740.096 +29962,2025-03-10T18:11:36.955746-07:00,1001.2731323242188,10.746889,10746.889 +29963,2025-03-10T18:11:47.695592-07:00,1001.3063354492188,10.739846,10739.846 +29964,2025-03-10T18:11:58.445122-07:00,1001.287353515625,10.74953,10749.53 +29965,2025-03-10T18:12:09.179534-07:00,1001.3095092773438,10.734412,10734.412 +29966,2025-03-10T18:12:19.923687-07:00,1001.2918701171875,10.744153,10744.153 +29967,2025-03-10T18:12:30.671536-07:00,1001.302001953125,10.747849,10747.849 +29968,2025-03-10T18:12:41.417696-07:00,1001.3322143554688,10.74616,10746.16 +29969,2025-03-10T18:12:52.152716-07:00,1001.2910766601562,10.73502,10735.02 +29970,2025-03-10T18:13:02.901387-07:00,1001.3162231445312,10.748671,10748.671 +29971,2025-03-10T18:13:13.640030-07:00,1001.3220825195312,10.738643,10738.643 +29972,2025-03-10T18:13:24.381592-07:00,1001.3027954101562,10.741562,10741.562 +29973,2025-03-10T18:13:35.124743-07:00,1001.320556640625,10.743151,10743.151 +29974,2025-03-10T18:13:45.865531-07:00,1001.30908203125,10.740788,10740.788 +29975,2025-03-10T18:13:56.604731-07:00,1001.3400268554688,10.7392,10739.2 +29976,2025-03-10T18:14:07.342641-07:00,1001.326904296875,10.73791,10737.91 +29977,2025-03-10T18:14:18.080883-07:00,1001.296875,10.738242,10738.242 +29978,2025-03-10T18:14:28.827738-07:00,1001.2888793945312,10.746855,10746.855 +29979,2025-03-10T18:14:39.564623-07:00,1001.298583984375,10.736885,10736.885 +29980,2025-03-10T18:14:50.302703-07:00,1001.272216796875,10.73808,10738.08 +29981,2025-03-10T18:15:01.053697-07:00,1001.2801513671875,10.750994,10750.994 +29982,2025-03-10T18:15:11.795942-07:00,1001.3195190429688,10.742245,10742.245 +29983,2025-03-10T18:15:22.535567-07:00,1001.311279296875,10.739625,10739.625 +29984,2025-03-10T18:15:33.278946-07:00,1001.3156127929688,10.743379,10743.379 +29985,2025-03-10T18:15:44.016874-07:00,1001.3001708984375,10.737928,10737.928 +29986,2025-03-10T18:15:54.755926-07:00,1001.2617797851562,10.739052,10739.052 +29987,2025-03-10T18:16:05.505739-07:00,1001.2515869140625,10.749813,10749.813 +29988,2025-03-10T18:16:16.244602-07:00,1001.2576293945312,10.738863,10738.863 +29989,2025-03-10T18:16:26.988597-07:00,1001.2781372070312,10.743995,10743.995 +29990,2025-03-10T18:16:37.732632-07:00,1001.2457885742188,10.744035,10744.035 +29991,2025-03-10T18:16:48.474057-07:00,1001.2665405273438,10.741425,10741.425 +29992,2025-03-10T18:16:59.217527-07:00,1001.25634765625,10.74347,10743.47 +29993,2025-03-10T18:17:09.950534-07:00,1001.258544921875,10.733007,10733.007 +29994,2025-03-10T18:17:20.699534-07:00,1001.2554931640625,10.749,10749.0 +29995,2025-03-10T18:17:31.433071-07:00,1001.2430419921875,10.733537,10733.537 +29996,2025-03-10T18:17:42.179711-07:00,1001.26513671875,10.74664,10746.64 +29997,2025-03-10T18:17:52.919553-07:00,1001.2659301757812,10.739842,10739.842 +29998,2025-03-10T18:18:03.653528-07:00,1001.271240234375,10.733975,10733.975 +29999,2025-03-10T18:18:14.400527-07:00,1001.2893676757812,10.746999,10746.999 +30000,2025-03-10T18:18:25.135699-07:00,1001.2385864257812,10.735172,10735.172 +30001,2025-03-10T18:18:35.876745-07:00,1001.25048828125,10.741046,10741.046 +30002,2025-03-10T18:18:46.617764-07:00,1001.2769775390625,10.741019,10741.019 +30003,2025-03-10T18:18:57.361713-07:00,1001.2623291015625,10.743949,10743.949 +30004,2025-03-10T18:19:08.103659-07:00,1001.2725219726562,10.741946,10741.946 +30005,2025-03-10T18:19:18.853127-07:00,1001.2791137695312,10.749468,10749.468 +30006,2025-03-10T18:19:29.587738-07:00,1001.2857666015625,10.734611,10734.611 +30007,2025-03-10T18:19:40.337533-07:00,1001.2601318359375,10.749795,10749.795 +30008,2025-03-10T18:19:51.081565-07:00,1001.274658203125,10.744032,10744.032 +30009,2025-03-10T18:20:01.825568-07:00,1001.27783203125,10.744003,10744.003 +30010,2025-03-10T18:20:12.563612-07:00,1001.2946166992188,10.738044,10738.044 +30011,2025-03-10T18:20:23.310747-07:00,1001.2843627929688,10.747135,10747.135 +30012,2025-03-10T18:20:34.053535-07:00,1001.3078002929688,10.742788,10742.788 +30013,2025-03-10T18:20:44.799605-07:00,1001.2976684570312,10.74607,10746.07 +30014,2025-03-10T18:20:55.535724-07:00,1001.3078002929688,10.736119,10736.119 +30015,2025-03-10T18:21:06.283778-07:00,1001.3109130859375,10.748054,10748.054 +30016,2025-03-10T18:21:17.023804-07:00,1001.3387451171875,10.740026,10740.026 +30017,2025-03-10T18:21:27.766535-07:00,1001.3189086914062,10.742731,10742.731 +30018,2025-03-10T18:21:38.508579-07:00,1001.326904296875,10.742044,10742.044 +30019,2025-03-10T18:21:49.259562-07:00,1001.33349609375,10.750983,10750.983 +30020,2025-03-10T18:22:00.005579-07:00,1001.3551025390625,10.746017,10746.017 +30021,2025-03-10T18:22:10.746528-07:00,1001.3365478515625,10.740949,10740.949 +30022,2025-03-10T18:22:21.493546-07:00,1001.3114013671875,10.747018,10747.018 +30023,2025-03-10T18:22:32.231531-07:00,1001.34765625,10.737985,10737.985 +30024,2025-03-10T18:22:42.979839-07:00,1001.326416015625,10.748308,10748.308 +30025,2025-03-10T18:22:53.712303-07:00,1001.3719482421875,10.732464,10732.464 +30026,2025-03-10T18:23:04.456951-07:00,1001.3638916015625,10.744648,10744.648 +30027,2025-03-10T18:23:15.202701-07:00,1001.32421875,10.74575,10745.75 +30028,2025-03-10T18:23:25.949713-07:00,1001.360107421875,10.747012,10747.012 +30029,2025-03-10T18:23:36.684534-07:00,1001.3680419921875,10.734821,10734.821 +30030,2025-03-10T18:23:47.431595-07:00,1001.3724975585938,10.747061,10747.061 +30031,2025-03-10T18:23:58.176675-07:00,1001.37109375,10.74508,10745.08 +30032,2025-03-10T18:24:08.922633-07:00,1001.4006958007812,10.745958,10745.958 +30033,2025-03-10T18:24:19.662927-07:00,1001.3755493164062,10.740294,10740.294 +30034,2025-03-10T18:24:30.398534-07:00,1001.38525390625,10.735607,10735.607 +30035,2025-03-10T18:24:41.141533-07:00,1001.396240234375,10.742999,10742.999 +30036,2025-03-10T18:24:51.881699-07:00,1001.4012451171875,10.740166,10740.166 +30037,2025-03-10T18:25:02.631655-07:00,1001.392333984375,10.749956,10749.956 +30038,2025-03-10T18:25:13.368849-07:00,1001.4122924804688,10.737194,10737.194 +30039,2025-03-10T18:25:24.112764-07:00,1001.4484252929688,10.743915,10743.915 +30040,2025-03-10T18:25:34.851530-07:00,1001.4431762695312,10.738766,10738.766 +30041,2025-03-10T18:25:45.595536-07:00,1001.411376953125,10.744006,10744.006 +30042,2025-03-10T18:25:56.347604-07:00,1001.3866577148438,10.752068,10752.068 +30043,2025-03-10T18:26:07.091533-07:00,1001.4490356445312,10.743929,10743.929 +30044,2025-03-10T18:26:17.834533-07:00,1001.4423217773438,10.743,10743.0 +30045,2025-03-10T18:26:28.573623-07:00,1001.4307861328125,10.73909,10739.09 +30046,2025-03-10T18:26:39.317734-07:00,1001.4617309570312,10.744111,10744.111 +30047,2025-03-10T18:26:50.061716-07:00,1001.4484252929688,10.743982,10743.982 +30048,2025-03-10T18:27:00.816701-07:00,1001.4512329101562,10.754985,10754.985 +30049,2025-03-10T18:27:11.555642-07:00,1001.4742431640625,10.738941,10738.941 +30050,2025-03-10T18:27:22.304745-07:00,1001.4918823242188,10.749103,10749.103 +30051,2025-03-10T18:27:33.046732-07:00,1001.51171875,10.741987,10741.987 +30052,2025-03-10T18:27:43.791733-07:00,1001.4732666015625,10.745001,10745.001 +30053,2025-03-10T18:27:54.536408-07:00,1001.4600830078125,10.744675,10744.675 +30054,2025-03-10T18:28:05.282125-07:00,1001.4896850585938,10.745717,10745.717 +30055,2025-03-10T18:28:16.030098-07:00,1001.5206298828125,10.747973,10747.973 +30056,2025-03-10T18:28:26.778465-07:00,1001.4940795898438,10.748367,10748.367 +30057,2025-03-10T18:28:37.526274-07:00,1001.4918823242188,10.747809,10747.809 +30058,2025-03-10T18:28:48.273478-07:00,1001.4768676757812,10.747204,10747.204 +30059,2025-03-10T18:28:59.014602-07:00,1001.4932861328125,10.741124,10741.124 +30060,2025-03-10T18:29:09.751726-07:00,1001.501220703125,10.737124,10737.124 +30061,2025-03-10T18:29:20.495528-07:00,1001.482666015625,10.743802,10743.802 +30062,2025-03-10T18:29:31.238535-07:00,1001.5025634765625,10.743007,10743.007 +30063,2025-03-10T18:29:41.977536-07:00,1001.4724731445312,10.739001,10739.001 +30064,2025-03-10T18:29:52.719556-07:00,1001.5264282226562,10.74202,10742.02 +30065,2025-03-10T18:30:03.466556-07:00,1001.4901733398438,10.747,10747.0 +30066,2025-03-10T18:30:14.211731-07:00,1001.5211181640625,10.745175,10745.175 +30067,2025-03-10T18:30:24.956699-07:00,1001.4959106445312,10.744968,10744.968 +30068,2025-03-10T18:30:35.694723-07:00,1001.5042724609375,10.738024,10738.024 +30069,2025-03-10T18:30:46.443812-07:00,1001.5122680664062,10.749089,10749.089 +30070,2025-03-10T18:30:57.180603-07:00,1001.48046875,10.736791,10736.791 +30071,2025-03-10T18:31:07.923530-07:00,1001.5020141601562,10.742927,10742.927 +30072,2025-03-10T18:31:18.672536-07:00,1001.5020141601562,10.749006,10749.006 +30073,2025-03-10T18:31:29.415561-07:00,1001.4835815429688,10.743025,10743.025 +30074,2025-03-10T18:31:40.160834-07:00,1001.4849243164062,10.745273,10745.273 +30075,2025-03-10T18:31:50.902968-07:00,1001.4398193359375,10.742134,10742.134 +30076,2025-03-10T18:32:01.648615-07:00,1001.4893798828125,10.745647,10745.647 +30077,2025-03-10T18:32:12.386741-07:00,1001.4774169921875,10.738126,10738.126 +30078,2025-03-10T18:32:23.139946-07:00,1001.4951782226562,10.753205,10753.205 +30079,2025-03-10T18:32:33.886730-07:00,1001.4671630859375,10.746784,10746.784 +30080,2025-03-10T18:32:44.629301-07:00,1001.496826171875,10.742571,10742.571 +30081,2025-03-10T18:32:55.370707-07:00,1001.4915771484375,10.741406,10741.406 +30082,2025-03-10T18:33:06.117710-07:00,1001.492919921875,10.747003,10747.003 +30083,2025-03-10T18:33:16.862934-07:00,1001.5128173828125,10.745224,10745.224 +30084,2025-03-10T18:33:27.604633-07:00,1001.5158081054688,10.741699,10741.699 +30085,2025-03-10T18:33:38.346885-07:00,1001.5321655273438,10.742252,10742.252 +30086,2025-03-10T18:33:49.087017-07:00,1001.4910278320312,10.740132,10740.132 +30087,2025-03-10T18:33:59.828530-07:00,1001.5206298828125,10.741513,10741.513 +30088,2025-03-10T18:34:10.571533-07:00,1001.513916015625,10.743003,10743.003 +30089,2025-03-10T18:34:21.313632-07:00,1001.510009765625,10.742099,10742.099 +30090,2025-03-10T18:34:32.058301-07:00,1001.5299072265625,10.744669,10744.669 +30091,2025-03-10T18:34:42.805663-07:00,1001.5263061523438,10.747362,10747.362 +30092,2025-03-10T18:34:53.545007-07:00,1001.5197143554688,10.739344,10739.344 +30093,2025-03-10T18:35:04.298684-07:00,1001.5211181640625,10.753677,10753.677 +30094,2025-03-10T18:35:15.036718-07:00,1001.5011596679688,10.738034,10738.034 +30095,2025-03-10T18:35:25.778560-07:00,1001.5321044921875,10.741842,10741.842 +30096,2025-03-10T18:35:36.528472-07:00,1001.53076171875,10.749912,10749.912 +30097,2025-03-10T18:35:47.271646-07:00,1001.5205688476562,10.743174,10743.174 +30098,2025-03-10T18:35:58.016584-07:00,1001.5218505859375,10.744938,10744.938 +30099,2025-03-10T18:36:08.766585-07:00,1001.5337524414062,10.750001,10750.001 +30100,2025-03-10T18:36:19.507362-07:00,1001.5431518554688,10.740777,10740.777 +30101,2025-03-10T18:36:30.249536-07:00,1001.5365600585938,10.742174,10742.174 +30102,2025-03-10T18:36:40.997573-07:00,1001.5498657226562,10.748037,10748.037 +30103,2025-03-10T18:36:51.736537-07:00,1001.5462646484375,10.738964,10738.964 +30104,2025-03-10T18:37:02.484531-07:00,1001.560791015625,10.747994,10747.994 +30105,2025-03-10T18:37:13.221748-07:00,1001.5409545898438,10.737217,10737.217 +30106,2025-03-10T18:37:23.965741-07:00,1001.5665893554688,10.743993,10743.993 +30107,2025-03-10T18:37:34.714755-07:00,1001.5549926757812,10.749014,10749.014 +30108,2025-03-10T18:37:45.455743-07:00,1001.5431518554688,10.740988,10740.988 +30109,2025-03-10T18:37:56.198758-07:00,1001.5594482421875,10.743015,10743.015 +30110,2025-03-10T18:38:06.949233-07:00,1001.537353515625,10.750475,10750.475 +30111,2025-03-10T18:38:17.686593-07:00,1001.5307006835938,10.73736,10737.36 +30112,2025-03-10T18:38:28.435731-07:00,1001.5413818359375,10.749138,10749.138 +30113,2025-03-10T18:38:39.177530-07:00,1001.5496826171875,10.741799,10741.799 +30114,2025-03-10T18:38:49.918732-07:00,1001.5673217773438,10.741202,10741.202 +30115,2025-03-10T18:39:00.658531-07:00,1001.532470703125,10.739799,10739.799 +30116,2025-03-10T18:39:11.407732-07:00,1001.565185546875,10.749201,10749.201 +30117,2025-03-10T18:39:22.147772-07:00,1001.559814453125,10.74004,10740.04 +30118,2025-03-10T18:39:32.890660-07:00,1001.5762329101562,10.742888,10742.888 +30119,2025-03-10T18:39:43.637533-07:00,1001.6018676757812,10.746873,10746.873 +30120,2025-03-10T18:39:54.388605-07:00,1001.5673217773438,10.751072,10751.072 +30121,2025-03-10T18:40:05.128818-07:00,1001.5607299804688,10.740213,10740.213 +30122,2025-03-10T18:40:15.872721-07:00,1001.5780639648438,10.743903,10743.903 +30123,2025-03-10T18:40:26.618725-07:00,1001.583251953125,10.746004,10746.004 +30124,2025-03-10T18:40:37.361697-07:00,1001.5900268554688,10.742972,10742.972 +30125,2025-03-10T18:40:48.113097-07:00,1001.5664672851562,10.7514,10751.4 +30126,2025-03-10T18:40:58.856436-07:00,1001.55322265625,10.743339,10743.339 +30127,2025-03-10T18:41:09.600580-07:00,1001.561279296875,10.744144,10744.144 +30128,2025-03-10T18:41:20.337533-07:00,1001.5692138671875,10.736953,10736.953 +30129,2025-03-10T18:41:31.081527-07:00,1001.564208984375,10.743994,10743.994 +30130,2025-03-10T18:41:41.833711-07:00,1001.532470703125,10.752184,10752.184 +30131,2025-03-10T18:41:52.579533-07:00,1001.5390625,10.745822,10745.822 +30132,2025-03-10T18:42:03.317531-07:00,1001.5404663085938,10.737998,10737.998 +30133,2025-03-10T18:42:14.072533-07:00,1001.5537719726562,10.755002,10755.002 +30134,2025-03-10T18:42:24.807528-07:00,1001.5390625,10.734995,10734.995 +30135,2025-03-10T18:42:35.548715-07:00,1001.5470581054688,10.741187,10741.187 +30136,2025-03-10T18:42:46.293986-07:00,1001.5487670898438,10.745271,10745.271 +30137,2025-03-10T18:42:57.040736-07:00,1001.5192260742188,10.74675,10746.75 +30138,2025-03-10T18:43:07.783732-07:00,1001.5669555664062,10.742996,10742.996 +30139,2025-03-10T18:43:18.522232-07:00,1001.5567016601562,10.7385,10738.5 +30140,2025-03-10T18:43:29.272024-07:00,1001.5567016601562,10.749792,10749.792 +30141,2025-03-10T18:43:40.005533-07:00,1001.5289306640625,10.733509,10733.509 +30142,2025-03-10T18:43:50.751530-07:00,1001.5205688476562,10.745997,10745.997 +30143,2025-03-10T18:44:01.497299-07:00,1001.5404663085938,10.745769,10745.769 +30144,2025-03-10T18:44:12.242671-07:00,1001.5470581054688,10.745372,10745.372 +30145,2025-03-10T18:44:22.977832-07:00,1001.5310668945312,10.735161,10735.161 +30146,2025-03-10T18:44:33.721530-07:00,1001.5523681640625,10.743698,10743.698 +30147,2025-03-10T18:44:44.460968-07:00,1001.517822265625,10.739438,10739.438 +30148,2025-03-10T18:44:55.205698-07:00,1001.517822265625,10.74473,10744.73 +30149,2025-03-10T18:45:05.954722-07:00,1001.5228271484375,10.749024,10749.024 +30150,2025-03-10T18:45:16.693577-07:00,1001.541259765625,10.738855,10738.855 +30151,2025-03-10T18:45:27.439623-07:00,1001.53466796875,10.746046,10746.046 +30152,2025-03-10T18:45:48.934562-07:00,1001.5448608398438,21.494939,21494.939 +30153,2025-03-10T18:45:59.677608-07:00,1001.5382690429688,10.743046,10743.046 +30154,2025-03-10T18:46:10.427561-07:00,1001.5648193359375,10.749953,10749.953 +30155,2025-03-10T18:46:21.172531-07:00,1001.5554809570312,10.74497,10744.97 +30156,2025-03-10T18:46:31.917744-07:00,1001.588623046875,10.745213,10745.213 +30157,2025-03-10T18:46:42.659532-07:00,1001.5540771484375,10.741788,10741.788 +30158,2025-03-10T18:46:53.403551-07:00,1001.587158203125,10.744019,10744.019 +30159,2025-03-10T18:47:04.139726-07:00,1001.5443725585938,10.736175,10736.175 +30160,2025-03-10T18:47:14.881137-07:00,1001.5762329101562,10.741411,10741.411 +30161,2025-03-10T18:47:25.627551-07:00,1001.56787109375,10.746414,10746.414 +30162,2025-03-10T18:47:36.371718-07:00,1001.579833984375,10.744167,10744.167 +30163,2025-03-10T18:47:47.113414-07:00,1001.593017578125,10.741696,10741.696 +30164,2025-03-10T18:47:57.845531-07:00,1001.5900268554688,10.732117,10732.117 +30165,2025-03-10T18:48:08.590082-07:00,1001.5740356445312,10.744551,10744.551 +30166,2025-03-10T18:48:19.333532-07:00,1001.5673217773438,10.74345,10743.45 +30167,2025-03-10T18:48:30.077834-07:00,1001.60546875,10.744302,10744.302 +30168,2025-03-10T18:48:40.820532-07:00,1001.5496826171875,10.742698,10742.698 +30169,2025-03-10T18:48:51.556592-07:00,1001.5812377929688,10.73606,10736.06 +30170,2025-03-10T18:49:02.297723-07:00,1001.5960693359375,10.741131,10741.131 +30171,2025-03-10T18:49:13.048702-07:00,1001.5718994140625,10.750979,10750.979 +30172,2025-03-10T18:49:23.787058-07:00,1001.5931396484375,10.738356,10738.356 +30173,2025-03-10T18:49:34.533561-07:00,1001.5917358398438,10.746503,10746.503 +30174,2025-03-10T18:49:45.278665-07:00,1001.5784301757812,10.745104,10745.104 +30175,2025-03-10T18:49:56.018660-07:00,1001.5886840820312,10.739995,10739.995 +30176,2025-03-10T18:50:06.756699-07:00,1001.5953369140625,10.738039,10738.039 +30177,2025-03-10T18:50:17.493738-07:00,1001.5939331054688,10.737039,10737.039 +30178,2025-03-10T18:50:28.238732-07:00,1001.5873413085938,10.744994,10744.994 +30179,2025-03-10T18:50:38.978735-07:00,1001.5873413085938,10.740003,10740.003 +30180,2025-03-10T18:50:49.719246-07:00,1001.5829467773438,10.740511,10740.511 +30181,2025-03-10T18:51:00.459590-07:00,1001.56298828125,10.740344,10740.344 +30182,2025-03-10T18:51:11.199534-07:00,1001.602783203125,10.739944,10739.944 +30183,2025-03-10T18:51:21.941532-07:00,1001.58154296875,10.741998,10741.998 +30184,2025-03-10T18:51:32.671610-07:00,1001.5762329101562,10.730078,10730.078 +30185,2025-03-10T18:51:43.419535-07:00,1001.5864868164062,10.747925,10747.925 +30186,2025-03-10T18:51:54.157719-07:00,1001.5984497070312,10.738184,10738.184 +30187,2025-03-10T18:52:04.893621-07:00,1001.5931396484375,10.735902,10735.902 +30188,2025-03-10T18:52:15.629533-07:00,1001.5784912109375,10.735912,10735.912 +30189,2025-03-10T18:52:26.377809-07:00,1001.60205078125,10.748276,10748.276 +30190,2025-03-10T18:52:37.118712-07:00,1001.5873413085938,10.740903,10740.903 +30191,2025-03-10T18:52:47.861636-07:00,1001.5873413085938,10.742924,10742.924 +30192,2025-03-10T18:52:58.606715-07:00,1001.5873413085938,10.745079,10745.079 +30193,2025-03-10T18:53:09.374708-07:00,1001.607177734375,10.767993,10767.993 +30194,2025-03-10T18:53:20.115571-07:00,1001.5953369140625,10.740863,10740.863 +30195,2025-03-10T18:53:30.853581-07:00,1001.6138916015625,10.73801,10738.01 +30196,2025-03-10T18:53:41.601411-07:00,1001.5926513671875,10.74783,10747.83 +30197,2025-03-10T18:53:52.342382-07:00,1001.5912475585938,10.740971,10740.971 +30198,2025-03-10T18:54:03.087460-07:00,1001.5845947265625,10.745078,10745.078 +30199,2025-03-10T18:54:13.827383-07:00,1001.556396484375,10.739923,10739.923 +30200,2025-03-10T18:54:24.573460-07:00,1001.5895385742188,10.746077,10746.077 +30201,2025-03-10T18:54:35.309388-07:00,1001.5750122070312,10.735928,10735.928 +30202,2025-03-10T18:54:46.051501-07:00,1001.602783203125,10.742113,10742.113 +30203,2025-03-10T18:54:56.787874-07:00,1001.58154296875,10.736373,10736.373 +30204,2025-03-10T18:55:07.535082-07:00,1001.5881958007812,10.747208,10747.208 +30205,2025-03-10T18:55:18.270387-07:00,1001.6015014648438,10.735305,10735.305 +30206,2025-03-10T18:55:29.006389-07:00,1001.5934448242188,10.736002,10736.002 +30207,2025-03-10T18:55:39.750408-07:00,1001.5881958007812,10.744019,10744.019 +30208,2025-03-10T18:55:50.495525-07:00,1001.5801391601562,10.745117,10745.117 +30209,2025-03-10T18:56:01.240646-07:00,1001.5653076171875,10.745121,10745.121 +30210,2025-03-10T18:56:11.975558-07:00,1001.5639038085938,10.734912,10734.912 +30211,2025-03-10T18:56:22.712381-07:00,1001.5718994140625,10.736823,10736.823 +30212,2025-03-10T18:56:33.459390-07:00,1001.5851440429688,10.747009,10747.009 +30213,2025-03-10T18:56:44.199422-07:00,1001.5718994140625,10.740032,10740.032 +30214,2025-03-10T18:56:54.935564-07:00,1001.5639038085938,10.736142,10736.142 +30215,2025-03-10T18:57:05.686383-07:00,1001.5758056640625,10.750819,10750.819 +30216,2025-03-10T18:57:16.425598-07:00,1001.6036987304688,10.739215,10739.215 +30217,2025-03-10T18:57:27.171384-07:00,1001.5758056640625,10.745786,10745.786 +30218,2025-03-10T18:57:37.913381-07:00,1001.5904541015625,10.741997,10741.997 +30219,2025-03-10T18:57:48.652557-07:00,1001.591796875,10.739176,10739.176 +30220,2025-03-10T18:57:59.396597-07:00,1001.5823974609375,10.74404,10744.04 +30221,2025-03-10T18:58:10.136495-07:00,1001.5625,10.739898,10739.898 +30222,2025-03-10T18:58:20.878385-07:00,1001.583740234375,10.74189,10741.89 +30223,2025-03-10T18:58:31.621446-07:00,1001.5736083984375,10.743061,10743.061 +30224,2025-03-10T18:58:42.367595-07:00,1001.5758056640625,10.746149,10746.149 +30225,2025-03-10T18:58:53.107601-07:00,1001.5904541015625,10.740006,10740.006 +30226,2025-03-10T18:59:03.840783-07:00,1001.5758056640625,10.733182,10733.182 +30227,2025-03-10T18:59:14.583756-07:00,1001.5772094726562,10.742973,10742.973 +30228,2025-03-10T18:59:25.328582-07:00,1001.583740234375,10.744826,10744.826 +30229,2025-03-10T18:59:36.068384-07:00,1001.6036987304688,10.739802,10739.802 +30230,2025-03-10T18:59:46.805424-07:00,1001.55419921875,10.73704,10737.04 +30231,2025-03-10T18:59:57.548551-07:00,1001.547607421875,10.743127,10743.127 +30232,2025-03-10T19:00:08.288414-07:00,1001.5675048828125,10.739863,10739.863 +30233,2025-03-10T19:00:19.034391-07:00,1001.5661010742188,10.745977,10745.977 +30234,2025-03-10T19:00:29.775681-07:00,1001.580810546875,10.74129,10741.29 +30235,2025-03-10T19:00:40.514831-07:00,1001.5647583007812,10.73915,10739.15 +30236,2025-03-10T19:00:51.255701-07:00,1001.5962524414062,10.74087,10740.87 +30237,2025-03-10T19:01:02.004571-07:00,1001.5829467773438,10.74887,10748.87 +30238,2025-03-10T19:01:12.739389-07:00,1001.60595703125,10.734818,10734.818 +30239,2025-03-10T19:01:23.483982-07:00,1001.584716796875,10.744593,10744.593 +30240,2025-03-10T19:01:34.221444-07:00,1001.597900390625,10.737462,10737.462 +30241,2025-03-10T19:01:44.966389-07:00,1001.5647583007812,10.744945,10744.945 +30242,2025-03-10T19:01:55.700564-07:00,1001.5714111328125,10.734175,10734.175 +30243,2025-03-10T19:02:06.447125-07:00,1001.5895385742188,10.746561,10746.561 +30244,2025-03-10T19:02:17.180389-07:00,1001.602783203125,10.733264,10733.264 +30245,2025-03-10T19:02:27.918594-07:00,1001.6111450195312,10.738205,10738.205 +30246,2025-03-10T19:02:38.662387-07:00,1001.6177978515625,10.743793,10743.793 +30247,2025-03-10T19:02:49.401826-07:00,1001.6376342773438,10.739439,10739.439 +30248,2025-03-10T19:03:00.138384-07:00,1001.5647583007812,10.736558,10736.558 +30249,2025-03-10T19:03:10.887415-07:00,1001.5779418945312,10.749031,10749.031 +30250,2025-03-10T19:03:21.623565-07:00,1001.60595703125,10.73615,10736.15 +30251,2025-03-10T19:03:32.363480-07:00,1001.5895385742188,10.739915,10739.915 +30252,2025-03-10T19:03:43.112632-07:00,1001.5829467773438,10.749152,10749.152 +30253,2025-03-10T19:03:53.853614-07:00,1001.6177978515625,10.740982,10740.982 +30254,2025-03-10T19:04:04.593389-07:00,1001.584716796875,10.739775,10739.775 +30255,2025-03-10T19:04:15.340526-07:00,1001.619140625,10.747137,10747.137 +30256,2025-03-10T19:04:26.073608-07:00,1001.5926513671875,10.733082,10733.082 +30257,2025-03-10T19:04:36.821389-07:00,1001.6138916015625,10.747781,10747.781 +30258,2025-03-10T19:04:47.558161-07:00,1001.60595703125,10.736772,10736.772 +30259,2025-03-10T19:04:58.306798-07:00,1001.6072387695312,10.748637,10748.637 +30260,2025-03-10T19:05:09.046587-07:00,1001.6124877929688,10.739789,10739.789 +30261,2025-03-10T19:05:19.782940-07:00,1001.6257934570312,10.736353,10736.353 +30262,2025-03-10T19:05:30.526387-07:00,1001.6124877929688,10.743447,10743.447 +30263,2025-03-10T19:05:41.265424-07:00,1001.6124877929688,10.739037,10739.037 +30264,2025-03-10T19:05:52.010389-07:00,1001.5926513671875,10.744965,10744.965 +30265,2025-03-10T19:06:02.755461-07:00,1001.6124877929688,10.745072,10745.072 +30266,2025-03-10T19:06:13.494390-07:00,1001.619140625,10.738929,10738.929 +30267,2025-03-10T19:06:24.232588-07:00,1001.5992431640625,10.738198,10738.198 +30268,2025-03-10T19:06:34.972806-07:00,1001.6111450195312,10.740218,10740.218 +30269,2025-03-10T19:06:44.022609-07:00,1001.6243896484375,9.049803,9049.803 +30270,2025-03-10T19:06:45.712659-07:00,1001.6243896484375,1.69005,1690.05 +30271,2025-03-10T19:06:56.450386-07:00,1001.602783203125,10.737727,10737.727 +30272,2025-03-10T19:07:07.192605-07:00,1001.6337280273438,10.742219,10742.219 +30273,2025-03-10T19:07:17.927569-07:00,1001.6509399414062,10.734964,10734.964 +30274,2025-03-10T19:07:28.666620-07:00,1001.6160888671875,10.739051,10739.051 +30275,2025-03-10T19:07:39.406573-07:00,1001.602783203125,10.739953,10739.953 +30276,2025-03-10T19:07:50.151516-07:00,1001.6376342773438,10.744943,10744.943 +30277,2025-03-10T19:08:00.888582-07:00,1001.5882568359375,10.737066,10737.066 +30278,2025-03-10T19:08:11.626495-07:00,1001.602783203125,10.737913,10737.913 +30279,2025-03-10T19:08:22.373389-07:00,1001.6160888671875,10.746894,10746.894 +30280,2025-03-10T19:08:33.116723-07:00,1001.5882568359375,10.743334,10743.334 +30281,2025-03-10T19:08:43.851537-07:00,1001.6015014648438,10.734814,10734.814 +30282,2025-03-10T19:08:54.593787-07:00,1001.6160888671875,10.74225,10742.25 +30283,2025-03-10T19:09:05.337571-07:00,1001.6160888671875,10.743784,10743.784 +30284,2025-03-10T19:09:16.077442-07:00,1001.6111450195312,10.739871,10739.871 +30285,2025-03-10T19:09:26.814386-07:00,1001.6045532226562,10.736944,10736.944 +30286,2025-03-10T19:09:37.555601-07:00,1001.6124877929688,10.741215,10741.215 +30287,2025-03-10T19:09:48.301760-07:00,1001.5912475585938,10.746159,10746.159 +30288,2025-03-10T19:09:59.040581-07:00,1001.6227416992188,10.738821,10738.821 +30289,2025-03-10T19:10:09.785562-07:00,1001.6133422851562,10.744981,10744.981 +30290,2025-03-10T19:10:20.522563-07:00,1001.62548828125,10.737001,10737.001 +30291,2025-03-10T19:10:31.268938-07:00,1001.5901489257812,10.746375,10746.375 +30292,2025-03-10T19:10:41.999391-07:00,1001.5718994140625,10.730453,10730.453 +30293,2025-03-10T19:10:52.739960-07:00,1001.5763549804688,10.740569,10740.569 +30294,2025-03-10T19:11:03.481658-07:00,1001.5697021484375,10.741698,10741.698 +30295,2025-03-10T19:11:14.220456-07:00,1001.5692138671875,10.738798,10738.798 +30296,2025-03-10T19:11:24.966396-07:00,1001.5736083984375,10.74594,10745.94 +30297,2025-03-10T19:11:35.708803-07:00,1001.564697265625,10.742407,10742.407 +30298,2025-03-10T19:11:46.443412-07:00,1001.6052856445312,10.734609,10734.609 +30299,2025-03-10T19:11:57.181596-07:00,1001.6017456054688,10.738184,10738.184 +30300,2025-03-10T19:12:07.925468-07:00,1001.6074829101562,10.743872,10743.872 +30301,2025-03-10T19:12:18.664382-07:00,1001.6007690429688,10.738914,10738.914 +30302,2025-03-10T19:12:29.398560-07:00,1001.580322265625,10.734178,10734.178 +30303,2025-03-10T19:12:40.135075-07:00,1001.5926513671875,10.736515,10736.515 +30304,2025-03-10T19:12:50.883847-07:00,1001.6063842773438,10.748772,10748.772 +30305,2025-03-10T19:13:01.615591-07:00,1001.5945434570312,10.731744,10731.744 +30306,2025-03-10T19:13:12.353389-07:00,1001.5767822265625,10.737798,10737.798 +30307,2025-03-10T19:13:23.096602-07:00,1001.609375,10.743213,10743.213 +30308,2025-03-10T19:13:33.825565-07:00,1001.58642578125,10.728963,10728.963 +30309,2025-03-10T19:13:44.565768-07:00,1001.5858764648438,10.740203,10740.203 +30310,2025-03-10T19:13:55.313449-07:00,1001.5814208984375,10.747681,10747.681 +30311,2025-03-10T19:14:06.043600-07:00,1001.6034545898438,10.730151,10730.151 +30312,2025-03-10T19:14:16.785387-07:00,1001.5791625976562,10.741787,10741.787 +30313,2025-03-10T19:14:27.530942-07:00,1001.62548828125,10.745555,10745.555 +30314,2025-03-10T19:14:38.264148-07:00,1001.6077880859375,10.733206,10733.206 +30315,2025-03-10T19:14:49.011878-07:00,1001.5516967773438,10.74773,10747.73 +30316,2025-03-10T19:14:59.746390-07:00,1001.6099853515625,10.734512,10734.512 +30317,2025-03-10T19:15:10.492391-07:00,1001.615234375,10.746001,10746.001 +30318,2025-03-10T19:15:21.226597-07:00,1001.613525390625,10.734206,10734.206 +30319,2025-03-10T19:15:31.975631-07:00,1001.6173706054688,10.749034,10749.034 +30320,2025-03-10T19:15:42.712461-07:00,1001.5957641601562,10.73683,10736.83 +30321,2025-03-10T19:15:53.454385-07:00,1001.622314453125,10.741924,10741.924 +30322,2025-03-10T19:16:04.193581-07:00,1001.6129760742188,10.739196,10739.196 +30323,2025-03-10T19:16:14.935573-07:00,1001.6063232421875,10.741992,10741.992 +30324,2025-03-10T19:16:25.668583-07:00,1001.5996704101562,10.73301,10733.01 +30325,2025-03-10T19:16:36.416595-07:00,1001.6143798828125,10.748012,10748.012 +30326,2025-03-10T19:16:47.158458-07:00,1001.5996704101562,10.741863,10741.863 +30327,2025-03-10T19:16:57.894385-07:00,1001.5996704101562,10.735927,10735.927 +30328,2025-03-10T19:17:08.633566-07:00,1001.61572265625,10.739181,10739.181 +30329,2025-03-10T19:17:19.378020-07:00,1001.594482421875,10.744454,10744.454 +30330,2025-03-10T19:17:30.120537-07:00,1001.622314453125,10.742517,10742.517 +30331,2025-03-10T19:17:40.858384-07:00,1001.6024780273438,10.737847,10737.847 +30332,2025-03-10T19:17:51.596389-07:00,1001.6173706054688,10.738005,10738.005 +30333,2025-03-10T19:18:02.338387-07:00,1001.6107788085938,10.741998,10741.998 +30334,2025-03-10T19:18:13.079762-07:00,1001.6320190429688,10.741375,10741.375 +30335,2025-03-10T19:18:23.813484-07:00,1001.6386108398438,10.733722,10733.722 +30336,2025-03-10T19:18:34.556807-07:00,1001.5974731445312,10.743323,10743.323 +30337,2025-03-10T19:18:45.297832-07:00,1001.626708984375,10.741025,10741.025 +30338,2025-03-10T19:18:56.040405-07:00,1001.615234375,10.742573,10742.573 +30339,2025-03-10T19:19:06.770388-07:00,1001.6218872070312,10.729983,10729.983 +30340,2025-03-10T19:19:17.510387-07:00,1001.615234375,10.739999,10739.999 +30341,2025-03-10T19:19:28.256629-07:00,1001.6099853515625,10.746242,10746.242 +30342,2025-03-10T19:19:38.992030-07:00,1001.62109375,10.735401,10735.401 +30343,2025-03-10T19:19:49.732576-07:00,1001.6091918945312,10.740546,10740.546 +30344,2025-03-10T19:20:00.469126-07:00,1001.6224365234375,10.73655,10736.55 +30345,2025-03-10T19:20:11.216257-07:00,1001.678466796875,10.747131,10747.131 +30346,2025-03-10T19:20:21.949388-07:00,1001.6122436523438,10.733131,10733.131 +30347,2025-03-10T19:20:32.687600-07:00,1001.59375,10.738212,10738.212 +30348,2025-03-10T19:20:43.434391-07:00,1001.61669921875,10.746791,10746.791 +30349,2025-03-10T19:20:54.174563-07:00,1001.5901489257812,10.740172,10740.172 +30350,2025-03-10T19:21:04.917577-07:00,1001.61669921875,10.743014,10743.014 +30351,2025-03-10T19:21:15.657437-07:00,1001.614501953125,10.73986,10739.86 +30352,2025-03-10T19:21:26.396681-07:00,1001.5828247070312,10.739244,10739.244 +30353,2025-03-10T19:21:37.136390-07:00,1001.5814208984375,10.739709,10739.709 +30354,2025-03-10T19:21:47.875603-07:00,1001.5946655273438,10.739213,10739.213 +30355,2025-03-10T19:21:58.620386-07:00,1001.5939331054688,10.744783,10744.783 +30356,2025-03-10T19:22:09.366563-07:00,1001.588623046875,10.746177,10746.177 +30357,2025-03-10T19:22:20.105625-07:00,1001.58203125,10.739062,10739.062 +30358,2025-03-10T19:22:30.839381-07:00,1001.588623046875,10.733756,10733.756 +30359,2025-03-10T19:22:41.586759-07:00,1001.5452880859375,10.747378,10747.378 +30360,2025-03-10T19:22:52.329382-07:00,1001.5731201171875,10.742623,10742.623 +30361,2025-03-10T19:23:03.068443-07:00,1001.5518798828125,10.739061,10739.061 +30362,2025-03-10T19:23:13.806459-07:00,1001.5828857421875,10.738016,10738.016 +30363,2025-03-10T19:23:24.549390-07:00,1001.5643920898438,10.742931,10742.931 +30364,2025-03-10T19:23:35.288401-07:00,1001.5675048828125,10.739011,10739.011 +30365,2025-03-10T19:23:46.031485-07:00,1001.575439453125,10.743084,10743.084 +30366,2025-03-10T19:23:56.776778-07:00,1001.5834350585938,10.745293,10745.293 +30367,2025-03-10T19:24:07.513411-07:00,1001.5851440429688,10.736633,10736.633 +30368,2025-03-10T19:24:18.260497-07:00,1001.5997924804688,10.747086,10747.086 +30369,2025-03-10T19:24:28.998384-07:00,1001.5865478515625,10.737887,10737.887 +30370,2025-03-10T19:24:39.739389-07:00,1001.6107788085938,10.741005,10741.005 +30371,2025-03-10T19:24:50.480580-07:00,1001.6094360351562,10.741191,10741.191 +30372,2025-03-10T19:25:01.224555-07:00,1001.6204833984375,10.743975,10743.975 +30373,2025-03-10T19:25:11.969862-07:00,1001.6218872070312,10.745307,10745.307 +30374,2025-03-10T19:25:22.707581-07:00,1001.6629638671875,10.737719,10737.719 +30375,2025-03-10T19:25:33.456594-07:00,1001.631591796875,10.749013,10749.013 +30376,2025-03-10T19:25:44.191542-07:00,1001.642333984375,10.734948,10734.948 +30377,2025-03-10T19:25:54.930385-07:00,1001.6290893554688,10.738843,10738.843 +30378,2025-03-10T19:26:05.679389-07:00,1001.6356811523438,10.749004,10749.004 +30379,2025-03-10T19:26:16.416465-07:00,1001.69873046875,10.737076,10737.076 +30380,2025-03-10T19:26:27.156414-07:00,1001.677490234375,10.739949,10739.949 +30381,2025-03-10T19:26:37.901414-07:00,1001.65234375,10.745,10745.0 +30382,2025-03-10T19:26:48.640762-07:00,1001.67529296875,10.739348,10739.348 +30383,2025-03-10T19:26:59.384568-07:00,1001.6846923828125,10.743806,10743.806 +30384,2025-03-10T19:27:10.131557-07:00,1001.7062377929688,10.746989,10746.989 +30385,2025-03-10T19:27:20.875232-07:00,1001.6744384765625,10.743675,10743.675 +30386,2025-03-10T19:27:31.614389-07:00,1001.6956787109375,10.739157,10739.157 +30387,2025-03-10T19:27:42.349421-07:00,1001.7053833007812,10.735032,10735.032 +30388,2025-03-10T19:27:53.100458-07:00,1001.6709594726562,10.751037,10751.037 +30389,2025-03-10T19:28:03.835590-07:00,1001.685546875,10.735132,10735.132 +30390,2025-03-10T19:28:14.572601-07:00,1001.715087890625,10.737011,10737.011 +30391,2025-03-10T19:28:25.316602-07:00,1001.6766967773438,10.744001,10744.001 +30392,2025-03-10T19:28:36.056656-07:00,1001.6727905273438,10.740054,10740.054 +30393,2025-03-10T19:28:46.792386-07:00,1001.69580078125,10.73573,10735.73 +30394,2025-03-10T19:28:57.534389-07:00,1001.7037353515625,10.742003,10742.003 +30395,2025-03-10T19:29:08.278386-07:00,1001.7001342773438,10.743997,10743.997 +30396,2025-03-10T19:29:19.018389-07:00,1001.7033081054688,10.740003,10740.003 +30397,2025-03-10T19:29:29.761391-07:00,1001.693603515625,10.743002,10743.002 +30398,2025-03-10T19:29:40.508062-07:00,1001.69140625,10.746671,10746.671 +30399,2025-03-10T19:29:51.249450-07:00,1001.6795043945312,10.741388,10741.388 +30400,2025-03-10T19:30:01.988577-07:00,1001.7090454101562,10.739127,10739.127 +30401,2025-03-10T19:30:12.736571-07:00,1001.689208984375,10.747994,10747.994 +30402,2025-03-10T19:30:23.476414-07:00,1001.71044921875,10.739843,10739.843 +30403,2025-03-10T19:30:34.214595-07:00,1001.7118530273438,10.738181,10738.181 +30404,2025-03-10T19:30:44.964996-07:00,1001.6787719726562,10.750401,10750.401 +30405,2025-03-10T19:30:55.699382-07:00,1001.6751708984375,10.734386,10734.386 +30406,2025-03-10T19:31:06.442600-07:00,1001.7029418945312,10.743218,10743.218 +30407,2025-03-10T19:31:17.191446-07:00,1001.676513671875,10.748846,10748.846 +30408,2025-03-10T19:31:27.928272-07:00,1001.67822265625,10.736826,10736.826 +30409,2025-03-10T19:31:38.670578-07:00,1001.699462890625,10.742306,10742.306 +30410,2025-03-10T19:31:49.407390-07:00,1001.689208984375,10.736812,10736.812 +30411,2025-03-10T19:32:00.147447-07:00,1001.7025146484375,10.740057,10740.057 +30412,2025-03-10T19:32:10.887558-07:00,1001.7091674804688,10.740111,10740.111 +30413,2025-03-10T19:32:21.631391-07:00,1001.7449951171875,10.743833,10743.833 +30414,2025-03-10T19:32:32.368529-07:00,1001.7251586914062,10.737138,10737.138 +30415,2025-03-10T19:32:43.106753-07:00,1001.7149047851562,10.738224,10738.224 +30416,2025-03-10T19:32:53.846593-07:00,1001.713623046875,10.73984,10739.84 +30417,2025-03-10T19:33:04.589409-07:00,1001.7361450195312,10.742816,10742.816 +30418,2025-03-10T19:33:15.334718-07:00,1001.7361450195312,10.745309,10745.309 +30419,2025-03-10T19:33:26.074572-07:00,1001.7193603515625,10.739854,10739.854 +30420,2025-03-10T19:33:36.814420-07:00,1001.7273559570312,10.739848,10739.848 +30421,2025-03-10T19:33:47.556635-07:00,1001.7221069335938,10.742215,10742.215 +30422,2025-03-10T19:33:58.301598-07:00,1001.7251586914062,10.744963,10744.963 +30423,2025-03-10T19:34:09.041971-07:00,1001.7481079101562,10.740373,10740.373 +30424,2025-03-10T19:34:19.782584-07:00,1001.7260131835938,10.740613,10740.613 +30425,2025-03-10T19:34:30.520916-07:00,1001.7273559570312,10.738332,10738.332 +30426,2025-03-10T19:34:41.261386-07:00,1001.7406005859375,10.74047,10740.47 +30427,2025-03-10T19:34:52.008390-07:00,1001.75830078125,10.747004,10747.004 +30428,2025-03-10T19:35:02.752386-07:00,1001.7693481445312,10.743996,10743.996 +30429,2025-03-10T19:35:13.488160-07:00,1001.7787475585938,10.735774,10735.774 +30430,2025-03-10T19:35:24.228394-07:00,1001.7870483398438,10.740234,10740.234 +30431,2025-03-10T19:35:34.972390-07:00,1001.7619018554688,10.743996,10743.996 +30432,2025-03-10T19:35:45.716611-07:00,1001.7715454101562,10.744221,10744.221 +30433,2025-03-10T19:35:56.456583-07:00,1001.7677612304688,10.739972,10739.972 +30434,2025-03-10T19:36:07.188967-07:00,1001.7760009765625,10.732384,10732.384 +30435,2025-03-10T19:36:17.930388-07:00,1001.80029296875,10.741421,10741.421 +30436,2025-03-10T19:36:28.676598-07:00,1001.7951049804688,10.74621,10746.21 +30437,2025-03-10T19:36:39.414506-07:00,1001.821533203125,10.737908,10737.908 +30438,2025-03-10T19:36:50.154057-07:00,1001.7845458984375,10.739551,10739.551 +30439,2025-03-10T19:37:00.895109-07:00,1001.804443359375,10.741052,10741.052 +30440,2025-03-10T19:37:11.632398-07:00,1001.77294921875,10.737289,10737.289 +30441,2025-03-10T19:37:22.372863-07:00,1001.8287353515625,10.740465,10740.465 +30442,2025-03-10T19:37:33.112389-07:00,1001.8304443359375,10.739526,10739.526 +30443,2025-03-10T19:37:43.847387-07:00,1001.8038940429688,10.734998,10734.998 +30444,2025-03-10T19:37:54.595390-07:00,1001.7906494140625,10.748003,10748.003 +30445,2025-03-10T19:38:05.333417-07:00,1001.8150024414062,10.738027,10738.027 +30446,2025-03-10T19:38:16.074659-07:00,1001.8199462890625,10.741242,10741.242 +30447,2025-03-10T19:38:26.815966-07:00,1001.8067016601562,10.741307,10741.307 +30448,2025-03-10T19:38:37.555808-07:00,1001.808349609375,10.739842,10739.842 +30449,2025-03-10T19:38:48.303386-07:00,1001.8067016601562,10.747578,10747.578 +30450,2025-03-10T19:38:59.040619-07:00,1001.8016967773438,10.737233,10737.233 +30451,2025-03-10T19:39:09.778389-07:00,1001.8163452148438,10.73777,10737.77 +30452,2025-03-10T19:39:20.523596-07:00,1001.808349609375,10.745207,10745.207 +30453,2025-03-10T19:39:31.261602-07:00,1001.817626953125,10.738006,10738.006 +30454,2025-03-10T19:39:42.008358-07:00,1001.845947265625,10.746756,10746.756 +30455,2025-03-10T19:39:52.746924-07:00,1001.822998046875,10.738566,10738.566 +30456,2025-03-10T19:40:03.489647-07:00,1001.8096923828125,10.742723,10742.723 +30457,2025-03-10T19:40:14.224387-07:00,1001.79638671875,10.73474,10734.74 +30458,2025-03-10T19:40:24.963590-07:00,1001.817626953125,10.739203,10739.203 +30459,2025-03-10T19:40:35.707384-07:00,1001.8163452148438,10.743794,10743.794 +30460,2025-03-10T19:40:46.458461-07:00,1001.817626953125,10.751077,10751.077 +30461,2025-03-10T19:40:57.192391-07:00,1001.7867431640625,10.73393,10733.93 +30462,2025-03-10T19:41:07.939385-07:00,1001.808349609375,10.746994,10746.994 +30463,2025-03-10T19:41:18.684787-07:00,1001.818603515625,10.745402,10745.402 +30464,2025-03-10T19:41:29.418193-07:00,1001.8150024414062,10.733406,10733.406 +30465,2025-03-10T19:41:40.166410-07:00,1001.7999877929688,10.748217,10748.217 +30466,2025-03-10T19:41:50.915236-07:00,1001.808349609375,10.748826,10748.826 +30467,2025-03-10T19:42:01.653388-07:00,1001.8265380859375,10.738152,10738.152 +30468,2025-03-10T19:42:12.389767-07:00,1001.8132934570312,10.736379,10736.379 +30469,2025-03-10T19:42:23.142385-07:00,1001.8238525390625,10.752618,10752.618 +30470,2025-03-10T19:42:33.877411-07:00,1001.8154907226562,10.735026,10735.026 +30471,2025-03-10T19:42:44.619585-07:00,1001.842041015625,10.742174,10742.174 +30472,2025-03-10T19:42:55.366577-07:00,1001.7796020507812,10.746992,10746.992 +30473,2025-03-10T19:43:06.101418-07:00,1001.7929077148438,10.734841,10734.841 +30474,2025-03-10T19:43:16.844387-07:00,1001.8016967773438,10.742969,10742.969 +30475,2025-03-10T19:43:27.588461-07:00,1001.8082885742188,10.744074,10744.074 +30476,2025-03-10T19:43:38.331390-07:00,1001.8202514648438,10.742929,10742.929 +30477,2025-03-10T19:43:49.073495-07:00,1001.7920532226562,10.742105,10742.105 +30478,2025-03-10T19:43:59.817695-07:00,1001.826904296875,10.7442,10744.2 +30479,2025-03-10T19:44:10.562389-07:00,1001.810546875,10.744694,10744.694 +30480,2025-03-10T19:44:21.312458-07:00,1001.8171997070312,10.750069,10750.069 +30481,2025-03-10T19:44:32.054455-07:00,1001.8140869140625,10.741997,10741.997 +30482,2025-03-10T19:44:42.793577-07:00,1001.8140869140625,10.739122,10739.122 +30483,2025-03-10T19:44:53.536405-07:00,1001.833984375,10.742828,10742.828 +30484,2025-03-10T19:45:04.276558-07:00,1001.7884521484375,10.740153,10740.153 +30485,2025-03-10T19:45:15.021832-07:00,1001.79638671875,10.745274,10745.274 +30486,2025-03-10T19:45:25.756388-07:00,1001.8150024414062,10.734556,10734.556 +30487,2025-03-10T19:45:36.502451-07:00,1001.8201293945312,10.746063,10746.063 +30488,2025-03-10T19:45:47.238386-07:00,1001.8201293945312,10.735935,10735.935 +30489,2025-03-10T19:45:57.986432-07:00,1001.8303833007812,10.748046,10748.046 +30490,2025-03-10T19:46:08.728390-07:00,1001.8171997070312,10.741958,10741.958 +30491,2025-03-10T19:46:19.464860-07:00,1001.8224487304688,10.73647,10736.47 +30492,2025-03-10T19:46:30.210564-07:00,1001.8423461914062,10.745704,10745.704 +30493,2025-03-10T19:46:40.949051-07:00,1001.84716796875,10.738487,10738.487 +30494,2025-03-10T19:46:51.699166-07:00,1001.8245849609375,10.750115,10750.115 +30495,2025-03-10T19:47:02.435133-07:00,1001.8206787109375,10.735967,10735.967 +30496,2025-03-10T19:47:13.181384-07:00,1001.8326416015625,10.746251,10746.251 +30497,2025-03-10T19:47:23.920417-07:00,1001.8524780273438,10.739033,10739.033 +30498,2025-03-10T19:47:34.664455-07:00,1001.85107421875,10.744038,10744.038 +30499,2025-03-10T19:47:45.398926-07:00,1001.8496704101562,10.734471,10734.471 +30500,2025-03-10T19:47:56.150389-07:00,1001.8414306640625,10.751463,10751.463 +30501,2025-03-10T19:48:06.891658-07:00,1001.8577270507812,10.741269,10741.269 +30502,2025-03-10T19:48:17.625990-07:00,1001.85107421875,10.734332,10734.332 +30503,2025-03-10T19:48:28.367688-07:00,1001.8828735351562,10.741698,10741.698 +30504,2025-03-10T19:48:39.117506-07:00,1001.8709106445312,10.749818,10749.818 +30505,2025-03-10T19:48:49.853558-07:00,1001.8643798828125,10.736052,10736.052 +30506,2025-03-10T19:49:00.594449-07:00,1001.872314453125,10.740891,10740.891 +30507,2025-03-10T19:49:11.339389-07:00,1001.8856201171875,10.74494,10744.94 +30508,2025-03-10T19:49:22.077869-07:00,1001.8577270507812,10.73848,10738.48 +30509,2025-03-10T19:49:32.818438-07:00,1001.8789672851562,10.740569,10740.569 +30510,2025-03-10T19:49:43.567231-07:00,1001.8789672851562,10.748793,10748.793 +30511,2025-03-10T19:49:54.299575-07:00,1001.8671264648438,10.732344,10732.344 +30512,2025-03-10T19:50:05.045387-07:00,1001.8803100585938,10.745812,10745.812 +30513,2025-03-10T19:50:15.784385-07:00,1001.8870239257812,10.738998,10738.998 +30514,2025-03-10T19:50:26.522385-07:00,1001.9002075195312,10.738,10738.0 +30515,2025-03-10T19:50:37.262385-07:00,1001.9165649414062,10.74,10740.0 +30516,2025-03-10T19:50:48.008393-07:00,1001.8953247070312,10.746008,10746.008 +30517,2025-03-10T19:50:58.745556-07:00,1001.896728515625,10.737163,10737.163 +30518,2025-03-10T19:51:09.479441-07:00,1001.924560546875,10.733885,10733.885 +30519,2025-03-10T19:51:20.227623-07:00,1001.9085693359375,10.748182,10748.182 +30520,2025-03-10T19:51:30.971565-07:00,1001.9002075195312,10.743942,10743.942 +30521,2025-03-10T19:51:41.712418-07:00,1001.9019775390625,10.740853,10740.853 +30522,2025-03-10T19:51:52.449451-07:00,1001.94970703125,10.737033,10737.033 +30523,2025-03-10T19:52:03.183844-07:00,1001.9135131835938,10.734393,10734.393 +30524,2025-03-10T19:52:13.926571-07:00,1001.909912109375,10.742727,10742.727 +30525,2025-03-10T19:52:24.668814-07:00,1001.89892578125,10.742243,10742.243 +30526,2025-03-10T19:52:35.402397-07:00,1001.912109375,10.733583,10733.583 +30527,2025-03-10T19:52:46.142455-07:00,1001.9334106445312,10.740058,10740.058 +30528,2025-03-10T19:52:56.882386-07:00,1001.9320068359375,10.739931,10739.931 +30529,2025-03-10T19:53:07.610858-07:00,1001.9107666015625,10.728472,10728.472 +30530,2025-03-10T19:53:18.350035-07:00,1001.9385986328125,10.739177,10739.177 +30531,2025-03-10T19:53:29.089702-07:00,1001.937255859375,10.739667,10739.667 +30532,2025-03-10T19:53:39.828863-07:00,1001.9359130859375,10.739161,10739.161 +30533,2025-03-10T19:53:50.565897-07:00,1001.9306030273438,10.737034,10737.034 +30534,2025-03-10T19:54:01.304999-07:00,1001.950439453125,10.739102,10739.102 +30535,2025-03-10T19:54:12.055101-07:00,1001.92919921875,10.750102,10750.102 +30536,2025-03-10T19:54:22.789073-07:00,1001.9342041015625,10.733972,10733.972 +30537,2025-03-10T19:54:33.533060-07:00,1001.9226684570312,10.743987,10743.987 +30538,2025-03-10T19:54:44.264864-07:00,1001.9275512695312,10.731804,10731.804 +30539,2025-03-10T19:54:55.003860-07:00,1001.9328002929688,10.738996,10738.996 +30540,2025-03-10T19:55:05.751180-07:00,1001.9248657226562,10.74732,10747.32 +30541,2025-03-10T19:55:16.481865-07:00,1001.9513549804688,10.730685,10730.685 +30542,2025-03-10T19:55:27.229863-07:00,1001.9447021484375,10.747998,10747.998 +30543,2025-03-10T19:55:37.969884-07:00,1001.94970703125,10.740021,10740.021 +30544,2025-03-10T19:55:48.709059-07:00,1001.9364013671875,10.739175,10739.175 +30545,2025-03-10T19:55:59.449091-07:00,1001.927001953125,10.740032,10740.032 +30546,2025-03-10T19:56:10.183151-07:00,1001.9584350585938,10.73406,10734.06 +30547,2025-03-10T19:56:20.920862-07:00,1001.950439453125,10.737711,10737.711 +30548,2025-03-10T19:56:31.658272-07:00,1001.951904296875,10.73741,10737.41 +30549,2025-03-10T19:56:42.404056-07:00,1001.9490356445312,10.745784,10745.784 +30550,2025-03-10T19:56:53.139113-07:00,1001.955810546875,10.735057,10735.057 +30551,2025-03-10T19:57:03.883862-07:00,1001.9659423828125,10.744749,10744.749 +30552,2025-03-10T19:57:14.624063-07:00,1001.9447021484375,10.740201,10740.201 +30553,2025-03-10T19:57:25.358588-07:00,1001.9299926757812,10.734525,10734.525 +30554,2025-03-10T19:57:36.092893-07:00,1001.95654296875,10.734305,10734.305 +30555,2025-03-10T19:57:46.836026-07:00,1001.9667358398438,10.743133,10743.133 +30556,2025-03-10T19:57:57.580241-07:00,1001.9601440429688,10.744215,10744.215 +30557,2025-03-10T19:58:08.315995-07:00,1001.9437255859375,10.735754,10735.754 +30558,2025-03-10T19:58:19.051866-07:00,1001.9255981445312,10.735871,10735.871 +30559,2025-03-10T19:58:29.788892-07:00,1001.9343872070312,10.737026,10737.026 +30560,2025-03-10T19:58:40.528104-07:00,1001.982177734375,10.739212,10739.212 +30561,2025-03-10T19:58:51.277023-07:00,1001.95263671875,10.748919,10748.919 +30562,2025-03-10T19:59:02.011234-07:00,1001.9609375,10.734211,10734.211 +30563,2025-03-10T19:59:12.757418-07:00,1001.959228515625,10.746184,10746.184 +30564,2025-03-10T19:59:23.492896-07:00,1001.9512329101562,10.735478,10735.478 +30565,2025-03-10T19:59:34.234927-07:00,1001.916748046875,10.742031,10742.031 +30566,2025-03-10T19:59:44.975932-07:00,1001.93798828125,10.741005,10741.005 +30567,2025-03-10T19:59:55.714861-07:00,1001.9763793945312,10.738929,10738.929 +30568,2025-03-10T20:00:06.449093-07:00,1001.9534301757812,10.734232,10734.232 +30569,2025-03-10T20:00:17.184912-07:00,1001.9732666015625,10.735819,10735.819 +30570,2025-03-10T20:00:27.925860-07:00,1001.9667358398438,10.740948,10740.948 +30571,2025-03-10T20:00:38.669173-07:00,1001.938720703125,10.743313,10743.313 +30572,2025-03-10T20:00:49.401678-07:00,1001.9437255859375,10.732505,10732.505 +30573,2025-03-10T20:01:00.141367-07:00,1001.9210815429688,10.739689,10739.689 +30574,2025-03-10T20:01:10.881394-07:00,1001.9556274414062,10.740027,10740.027 +30575,2025-03-10T20:01:21.614971-07:00,1001.9754638671875,10.733577,10733.577 +30576,2025-03-10T20:01:32.362015-07:00,1001.96435546875,10.747044,10747.044 +30577,2025-03-10T20:01:43.097939-07:00,1001.93798828125,10.735924,10735.924 +30578,2025-03-10T20:01:53.836865-07:00,1001.943115234375,10.738926,10738.926 +30579,2025-03-10T20:02:04.577238-07:00,1001.9417724609375,10.740373,10740.373 +30580,2025-03-10T20:02:15.322938-07:00,1001.96826171875,10.7457,10745.7 +30581,2025-03-10T20:02:26.058062-07:00,1001.9373168945312,10.735124,10735.124 +30582,2025-03-10T20:02:36.797866-07:00,1001.9970092773438,10.739804,10739.804 +30583,2025-03-10T20:02:47.544105-07:00,1001.9820556640625,10.746239,10746.239 +30584,2025-03-10T20:02:58.277891-07:00,1001.97265625,10.733786,10733.786 +30585,2025-03-10T20:03:09.022018-07:00,1001.96435546875,10.744127,10744.127 +30586,2025-03-10T20:03:19.752038-07:00,1001.96435546875,10.73002,10730.02 +30587,2025-03-10T20:03:30.500038-07:00,1001.9615478515625,10.748,10748.0 +30588,2025-03-10T20:03:41.235615-07:00,1001.9880981445312,10.735577,10735.577 +30589,2025-03-10T20:03:51.967860-07:00,1001.9849853515625,10.732245,10732.245 +30590,2025-03-10T20:04:02.714152-07:00,1001.97705078125,10.746292,10746.292 +30591,2025-03-10T20:04:13.446930-07:00,1001.9888916015625,10.732778,10732.778 +30592,2025-03-10T20:04:24.182085-07:00,1001.9756469726562,10.735155,10735.155 +30593,2025-03-10T20:04:34.919352-07:00,1001.9673461914062,10.737267,10737.267 +30594,2025-03-10T20:04:45.658934-07:00,1001.979248046875,10.739582,10739.582 +30595,2025-03-10T20:04:56.400952-07:00,1001.962890625,10.742018,10742.018 +30596,2025-03-10T20:05:07.136265-07:00,1001.97607421875,10.735313,10735.313 +30597,2025-03-10T20:05:17.871034-07:00,1001.9734497070312,10.734769,10734.769 +30598,2025-03-10T20:05:28.615191-07:00,1001.954833984375,10.744157,10744.157 +30599,2025-03-10T20:05:39.350867-07:00,1001.9734497070312,10.735676,10735.676 +30600,2025-03-10T20:05:50.085070-07:00,1001.9703369140625,10.734203,10734.203 +30601,2025-03-10T20:06:00.823862-07:00,1001.9879760742188,10.738792,10738.792 +30602,2025-03-10T20:06:11.572933-07:00,1001.982177734375,10.749071,10749.071 +30603,2025-03-10T20:06:22.311019-07:00,1002.0198974609375,10.738086,10738.086 +30604,2025-03-10T20:06:33.049660-07:00,1001.9650268554688,10.738641,10738.641 +30605,2025-03-10T20:06:43.792061-07:00,1001.9561157226562,10.742401,10742.401 +30606,2025-03-10T20:06:54.522719-07:00,1001.9749755859375,10.730658,10730.658 +30607,2025-03-10T20:07:05.262870-07:00,1001.9779663085938,10.740151,10740.151 +30608,2025-03-10T20:07:16.004026-07:00,1001.942626953125,10.741156,10741.156 +30609,2025-03-10T20:07:26.746183-07:00,1001.9257202148438,10.742157,10742.157 +30610,2025-03-10T20:07:37.476273-07:00,1002.01611328125,10.73009,10730.09 +30611,2025-03-10T20:07:48.215021-07:00,1002.0145874023438,10.738748,10738.748 +30612,2025-03-10T20:07:58.953063-07:00,1002.005615234375,10.738042,10738.042 +30613,2025-03-10T20:08:09.697863-07:00,1002.023193359375,10.7448,10744.8 +30614,2025-03-10T20:08:20.429239-07:00,1001.9798583984375,10.731376,10731.376 +30615,2025-03-10T20:08:31.164147-07:00,1001.97607421875,10.734908,10734.908 +30616,2025-03-10T20:08:41.908169-07:00,1001.9884643554688,10.744022,10744.022 +30617,2025-03-10T20:08:52.641860-07:00,1002.000732421875,10.733691,10733.691 +30618,2025-03-10T20:09:03.381900-07:00,1001.994873046875,10.74004,10740.04 +30619,2025-03-10T20:09:14.117668-07:00,1001.9991455078125,10.735768,10735.768 +30620,2025-03-10T20:09:24.857295-07:00,1002.0062255859375,10.739627,10739.627 +30621,2025-03-10T20:09:35.585860-07:00,1002.0201416015625,10.728565,10728.565 +30622,2025-03-10T20:09:46.325868-07:00,1001.9891967773438,10.740008,10740.008 +30623,2025-03-10T20:09:57.060084-07:00,1001.99658203125,10.734216,10734.216 +30624,2025-03-10T20:10:07.800048-07:00,1002.0106201171875,10.739964,10739.964 +30625,2025-03-10T20:10:18.526929-07:00,1002.029052734375,10.726881,10726.881 +30626,2025-03-10T20:10:29.270887-07:00,1002.0325927734375,10.743958,10743.958 +30627,2025-03-10T20:10:40.010066-07:00,1002.000244140625,10.739179,10739.179 +30628,2025-03-10T20:10:50.739048-07:00,1002.0103759765625,10.728982,10728.982 +30629,2025-03-10T20:11:01.483374-07:00,1002.0236206054688,10.744326,10744.326 +30630,2025-03-10T20:11:12.220860-07:00,1002.0191650390625,10.737486,10737.486 +30631,2025-03-10T20:11:22.953863-07:00,1002.0243530273438,10.733003,10733.003 +30632,2025-03-10T20:11:33.691863-07:00,1001.994873046875,10.738,10738.0 +30633,2025-03-10T20:11:44.436865-07:00,1002.0359497070312,10.745002,10745.002 +30634,2025-03-10T20:11:55.173079-07:00,1002.0264892578125,10.736214,10736.214 +30635,2025-03-10T20:12:05.912881-07:00,1002.0119018554688,10.739802,10739.802 +30636,2025-03-10T20:12:16.646859-07:00,1002.0234375,10.733978,10733.978 +30637,2025-03-10T20:12:27.389862-07:00,1002.04638671875,10.743003,10743.003 +30638,2025-03-10T20:12:38.127951-07:00,1002.052978515625,10.738089,10738.089 +30639,2025-03-10T20:12:48.857041-07:00,1002.0418701171875,10.72909,10729.09 +30640,2025-03-10T20:12:59.597860-07:00,1002.028564453125,10.740819,10740.819 +30641,2025-03-10T20:13:10.338020-07:00,1002.0432739257812,10.74016,10740.16 +30642,2025-03-10T20:13:21.078862-07:00,1002.052978515625,10.740842,10740.842 +30643,2025-03-10T20:13:31.812864-07:00,1002.0609130859375,10.734002,10734.002 +30644,2025-03-10T20:13:42.555863-07:00,1002.0756225585938,10.742999,10742.999 +30645,2025-03-10T20:13:53.294049-07:00,1002.0728149414062,10.738186,10738.186 +30646,2025-03-10T20:14:04.026072-07:00,1002.0640869140625,10.732023,10732.023 +30647,2025-03-10T20:14:14.772863-07:00,1002.0706787109375,10.746791,10746.791 +30648,2025-03-10T20:14:25.505078-07:00,1002.0535888671875,10.732215,10732.215 +30649,2025-03-10T20:14:36.251858-07:00,1002.0751342773438,10.74678,10746.78 +30650,2025-03-10T20:14:46.980247-07:00,1002.0751342773438,10.728389,10728.389 +30651,2025-03-10T20:14:57.726144-07:00,1002.119384765625,10.745897,10745.897 +30652,2025-03-10T20:15:08.461095-07:00,1002.0862426757812,10.734951,10734.951 +30653,2025-03-10T20:15:19.197861-07:00,1002.05322265625,10.736766,10736.766 +30654,2025-03-10T20:15:29.940862-07:00,1002.0823974609375,10.743001,10743.001 +30655,2025-03-10T20:15:40.680886-07:00,1002.0656127929688,10.740024,10740.024 +30656,2025-03-10T20:15:51.417031-07:00,1002.0921630859375,10.736145,10736.145 +30657,2025-03-10T20:16:02.147858-07:00,1002.0392456054688,10.730827,10730.827 +30658,2025-03-10T20:16:12.888868-07:00,1002.0406494140625,10.74101,10741.01 +30659,2025-03-10T20:16:23.626294-07:00,1002.0384521484375,10.737426,10737.426 +30660,2025-03-10T20:16:34.366091-07:00,1002.0451049804688,10.739797,10739.797 +30661,2025-03-10T20:16:45.104427-07:00,1002.04296875,10.738336,10738.336 +30662,2025-03-10T20:16:55.848048-07:00,1002.0231323242188,10.743621,10743.621 +30663,2025-03-10T20:17:06.585198-07:00,1002.0231323242188,10.73715,10737.15 +30664,2025-03-10T20:17:17.315998-07:00,1002.01123046875,10.7308,10730.8 +30665,2025-03-10T20:17:28.053870-07:00,1002.012939453125,10.737872,10737.872 +30666,2025-03-10T20:17:38.798866-07:00,1002.009033203125,10.744996,10744.996 +30667,2025-03-10T20:17:49.537051-07:00,1001.990966796875,10.738185,10738.185 +30668,2025-03-10T20:18:00.273883-07:00,1001.9954833984375,10.736832,10736.832 +30669,2025-03-10T20:18:11.017863-07:00,1002.0020141601562,10.74398,10743.98 +30670,2025-03-10T20:18:21.749550-07:00,1002.0128173828125,10.731687,10731.687 +30671,2025-03-10T20:18:32.486038-07:00,1001.9946899414062,10.736488,10736.488 +30672,2025-03-10T20:18:43.223305-07:00,1001.99609375,10.737267,10737.267 +30673,2025-03-10T20:18:53.967385-07:00,1002.030517578125,10.74408,10744.08 +30674,2025-03-10T20:19:04.701157-07:00,1002.008544921875,10.733772,10733.772 +30675,2025-03-10T20:19:15.437866-07:00,1001.9970092773438,10.736709,10736.709 +30676,2025-03-10T20:19:26.174867-07:00,1002.0248413085938,10.737001,10737.001 +30677,2025-03-10T20:19:36.912983-07:00,1002.03955078125,10.738116,10738.116 +30678,2025-03-10T20:19:47.644859-07:00,1002.00146484375,10.731876,10731.876 +30679,2025-03-10T20:19:58.385862-07:00,1002.0324096679688,10.741003,10741.003 +30680,2025-03-10T20:20:09.129863-07:00,1002.0271606445312,10.744001,10744.001 +30681,2025-03-10T20:20:19.867862-07:00,1002.0153198242188,10.737999,10737.999 +30682,2025-03-10T20:20:30.600541-07:00,1002.0232543945312,10.732679,10732.679 +30683,2025-03-10T20:20:41.339189-07:00,1002.0465698242188,10.738648,10738.648 +30684,2025-03-10T20:20:52.084014-07:00,1002.0281372070312,10.744825,10744.825 +30685,2025-03-10T20:21:02.816129-07:00,1002.0165405273438,10.732115,10732.115 +30686,2025-03-10T20:21:13.561390-07:00,1002.052490234375,10.745261,10745.261 +30687,2025-03-10T20:21:24.293863-07:00,1002.0357055664062,10.732473,10732.473 +30688,2025-03-10T20:21:35.035027-07:00,1002.0423583984375,10.741164,10741.164 +30689,2025-03-10T20:21:45.770961-07:00,1002.043701171875,10.735934,10735.934 +30690,2025-03-10T20:21:56.515055-07:00,1002.053466796875,10.744094,10744.094 +30691,2025-03-10T20:22:07.249894-07:00,1002.0614013671875,10.734839,10734.839 +30692,2025-03-10T20:22:17.982266-07:00,1002.0645141601562,10.732372,10732.372 +30693,2025-03-10T20:22:28.716042-07:00,1002.0592041015625,10.733776,10733.776 +30694,2025-03-10T20:22:39.450893-07:00,1002.0623168945312,10.734851,10734.851 +30695,2025-03-10T20:22:50.190861-07:00,1002.065185546875,10.739968,10739.968 +30696,2025-03-10T20:23:00.932013-07:00,1002.0703125,10.741152,10741.152 +30697,2025-03-10T20:23:11.669166-07:00,1002.08935546875,10.737153,10737.153 +30698,2025-03-10T20:23:22.404049-07:00,1002.0978393554688,10.734883,10734.883 +30699,2025-03-10T20:23:33.144359-07:00,1002.0859375,10.74031,10740.31 +30700,2025-03-10T20:23:43.881863-07:00,1002.1004638671875,10.737504,10737.504 +30701,2025-03-10T20:23:54.617866-07:00,1002.0823364257812,10.736003,10736.003 +30702,2025-03-10T20:24:05.359862-07:00,1002.0851440429688,10.741996,10741.996 +30703,2025-03-10T20:24:16.094658-07:00,1002.1129760742188,10.734796,10734.796 +30704,2025-03-10T20:24:26.833987-07:00,1002.08154296875,10.739329,10739.329 +30705,2025-03-10T20:24:37.570909-07:00,1002.089599609375,10.736922,10736.922 +30706,2025-03-10T20:24:48.315063-07:00,1002.089599609375,10.744154,10744.154 +30707,2025-03-10T20:24:59.047120-07:00,1002.1324462890625,10.732057,10732.057 +30708,2025-03-10T20:25:09.791939-07:00,1002.1218872070312,10.744819,10744.819 +30709,2025-03-10T20:25:20.530934-07:00,1002.1051635742188,10.738995,10738.995 +30710,2025-03-10T20:25:31.274058-07:00,1002.1065673828125,10.743124,10743.124 +30711,2025-03-10T20:25:42.012624-07:00,1002.1015625,10.738566,10738.566 +30712,2025-03-10T20:25:52.756885-07:00,1002.1043701171875,10.744261,10744.261 +30713,2025-03-10T20:26:03.492861-07:00,1002.138916015625,10.735976,10735.976 +30714,2025-03-10T20:26:14.237866-07:00,1002.1207275390625,10.745005,10745.005 +30715,2025-03-10T20:26:24.970057-07:00,1002.1287231445312,10.732191,10732.191 +30716,2025-03-10T20:26:35.712375-07:00,1002.143310546875,10.742318,10742.318 +30717,2025-03-10T20:26:46.457060-07:00,1002.14501953125,10.744685,10744.685 +30718,2025-03-10T20:26:57.193861-07:00,1002.1478271484375,10.736801,10736.801 +30719,2025-03-10T20:27:07.931071-07:00,1002.1376342773438,10.73721,10737.21 +30720,2025-03-10T20:27:18.674857-07:00,1002.1654663085938,10.743786,10743.786 +30721,2025-03-10T20:27:29.412064-07:00,1002.1619262695312,10.737207,10737.207 +30722,2025-03-10T20:27:40.150862-07:00,1002.1553344726562,10.738798,10738.798 +30723,2025-03-10T20:27:50.892002-07:00,1002.171630859375,10.74114,10741.14 +30724,2025-03-10T20:28:01.641043-07:00,1002.186279296875,10.749041,10749.041 +30725,2025-03-10T20:28:12.379738-07:00,1002.1796875,10.738695,10738.695 +30726,2025-03-10T20:28:23.121058-07:00,1002.1611938476562,10.74132,10741.32 +30727,2025-03-10T20:28:33.861863-07:00,1002.1824340820312,10.740805,10740.805 +30728,2025-03-10T20:28:44.600117-07:00,1002.1611938476562,10.738254,10738.254 +30729,2025-03-10T20:28:55.343899-07:00,1002.1708374023438,10.743782,10743.782 +30730,2025-03-10T20:29:06.081059-07:00,1002.1590576171875,10.73716,10737.16 +30731,2025-03-10T20:29:16.832270-07:00,1002.196533203125,10.751211,10751.211 +30732,2025-03-10T20:29:27.572316-07:00,1002.1634521484375,10.740046,10740.046 +30733,2025-03-10T20:29:38.308531-07:00,1002.18115234375,10.736215,10736.215 +30734,2025-03-10T20:29:49.048925-07:00,1002.1922607421875,10.740394,10740.394 +30735,2025-03-10T20:29:59.792864-07:00,1002.2003173828125,10.743939,10743.939 +30736,2025-03-10T20:30:10.533869-07:00,1002.1583862304688,10.741005,10741.005 +30737,2025-03-10T20:30:21.275865-07:00,1002.1185913085938,10.741996,10741.996 +30738,2025-03-10T20:30:32.019860-07:00,1002.1001586914062,10.743995,10743.995 +30739,2025-03-10T20:30:42.759860-07:00,1002.139404296875,10.74,10740.0 +30740,2025-03-10T20:30:53.499041-07:00,1002.143798828125,10.739181,10739.181 +30741,2025-03-10T20:31:04.250443-07:00,1002.1482543945312,10.751402,10751.402 +30742,2025-03-10T20:31:14.985731-07:00,1002.1629638671875,10.735288,10735.288 +30743,2025-03-10T20:31:25.727150-07:00,1002.1359252929688,10.741419,10741.419 +30744,2025-03-10T20:31:36.474934-07:00,1002.1306762695312,10.747784,10747.784 +30745,2025-03-10T20:31:47.215927-07:00,1002.140380859375,10.740993,10740.993 +30746,2025-03-10T20:31:57.949865-07:00,1002.1448364257812,10.733938,10733.938 +30747,2025-03-10T20:32:08.695869-07:00,1002.1235961914062,10.746004,10746.004 +30748,2025-03-10T20:32:19.432121-07:00,1002.1426391601562,10.736252,10736.252 +30749,2025-03-10T20:32:30.177992-07:00,1002.1559448242188,10.745871,10745.871 +30750,2025-03-10T20:32:40.916436-07:00,1002.15234375,10.738444,10738.444 +30751,2025-03-10T20:32:51.651862-07:00,1002.1537475585938,10.735426,10735.426 +30752,2025-03-10T20:33:02.394937-07:00,1002.1780395507812,10.743075,10743.075 +30753,2025-03-10T20:33:13.133053-07:00,1002.1365356445312,10.738116,10738.116 +30754,2025-03-10T20:33:23.878078-07:00,1002.1317138671875,10.745025,10745.025 +30755,2025-03-10T20:33:34.613880-07:00,1002.156005859375,10.735802,10735.802 +30756,2025-03-10T20:33:45.357259-07:00,1002.19189453125,10.743379,10743.379 +30757,2025-03-10T20:33:56.097724-07:00,1002.1904907226562,10.740465,10740.465 +30758,2025-03-10T20:34:06.838906-07:00,1002.19189453125,10.741182,10741.182 +30759,2025-03-10T20:34:17.584855-07:00,1002.1737670898438,10.745949,10745.949 +30760,2025-03-10T20:34:28.318740-07:00,1002.2015380859375,10.733885,10733.885 +30761,2025-03-10T20:34:39.065865-07:00,1002.2178955078125,10.747125,10747.125 +30762,2025-03-10T20:34:49.804043-07:00,1002.2220458984375,10.738178,10738.178 +30763,2025-03-10T20:35:00.544066-07:00,1002.1889038085938,10.740023,10740.023 +30764,2025-03-10T20:35:11.291903-07:00,1002.21044921875,10.747837,10747.837 +30765,2025-03-10T20:35:22.029119-07:00,1002.2000122070312,10.737216,10737.216 +30766,2025-03-10T20:35:32.774975-07:00,1002.233154296875,10.745856,10745.856 +30767,2025-03-10T20:35:43.520057-07:00,1002.2162475585938,10.745082,10745.082 +30768,2025-03-10T20:35:54.256863-07:00,1002.2391967773438,10.736806,10736.806 +30769,2025-03-10T20:36:05.007925-07:00,1002.2061157226562,10.751062,10751.062 +30770,2025-03-10T20:36:15.748866-07:00,1002.2207641601562,10.740941,10740.941 +30771,2025-03-10T20:36:26.486863-07:00,1002.2154541015625,10.737997,10737.997 +30772,2025-03-10T20:36:37.235586-07:00,1002.228759765625,10.748723,10748.723 +30773,2025-03-10T20:36:47.980860-07:00,1002.2398681640625,10.745274,10745.274 +30774,2025-03-10T20:36:58.718863-07:00,1002.2251586914062,10.738003,10738.003 +30775,2025-03-10T20:37:09.463877-07:00,1002.2216186523438,10.745014,10745.014 +30776,2025-03-10T20:37:20.205033-07:00,1002.228271484375,10.741156,10741.156 +30777,2025-03-10T20:37:30.955048-07:00,1002.2177124023438,10.750015,10750.015 +30778,2025-03-10T20:37:41.692051-07:00,1002.2296142578125,10.737003,10737.003 +30779,2025-03-10T20:37:52.435886-07:00,1002.224365234375,10.743835,10743.835 +30780,2025-03-10T20:38:03.176863-07:00,1002.2274169921875,10.740977,10740.977 +30781,2025-03-10T20:38:13.920259-07:00,1002.247314453125,10.743396,10743.396 +30782,2025-03-10T20:38:24.665090-07:00,1002.2235717773438,10.744831,10744.831 +30783,2025-03-10T20:38:35.411864-07:00,1002.2235717773438,10.746774,10746.774 +30784,2025-03-10T20:38:46.152152-07:00,1002.238525390625,10.740288,10740.288 +30785,2025-03-10T20:38:56.898032-07:00,1002.2185668945312,10.74588,10745.88 +30786,2025-03-10T20:39:07.640051-07:00,1002.2103271484375,10.742019,10742.019 +30787,2025-03-10T20:39:18.379252-07:00,1002.2120361328125,10.739201,10739.201 +30788,2025-03-10T20:39:29.116929-07:00,1002.2185668945312,10.737677,10737.677 +30789,2025-03-10T20:39:39.868690-07:00,1002.225341796875,10.751761,10751.761 +30790,2025-03-10T20:39:50.601922-07:00,1002.2053833007812,10.733232,10733.232 +30791,2025-03-10T20:40:01.340863-07:00,1002.225341796875,10.738941,10738.941 +30792,2025-03-10T20:40:12.086861-07:00,1002.2500610351562,10.745998,10745.998 +30793,2025-03-10T20:40:22.832372-07:00,1002.2301635742188,10.745511,10745.511 +30794,2025-03-10T20:40:33.568024-07:00,1002.2420043945312,10.735652,10735.652 +30795,2025-03-10T20:40:44.305039-07:00,1002.2354736328125,10.737015,10737.015 +30796,2025-03-10T20:40:55.045884-07:00,1002.247314453125,10.740845,10740.845 +30797,2025-03-10T20:41:05.782864-07:00,1002.239013671875,10.73698,10736.98 +30798,2025-03-10T20:41:16.527886-07:00,1002.2509155273438,10.745022,10745.022 +30799,2025-03-10T20:41:27.263864-07:00,1002.2509155273438,10.735978,10735.978 +30800,2025-03-10T20:41:37.996034-07:00,1002.256103515625,10.73217,10732.17 +30801,2025-03-10T20:41:48.736904-07:00,1002.23486328125,10.74087,10740.87 +30802,2025-03-10T20:41:59.475912-07:00,1002.2398681640625,10.739008,10739.008 +30803,2025-03-10T20:42:10.214071-07:00,1002.25830078125,10.738159,10738.159 +30804,2025-03-10T20:42:20.945865-07:00,1002.2569580078125,10.731794,10731.794 +30805,2025-03-10T20:42:31.691855-07:00,1002.2406005859375,10.74599,10745.99 +30806,2025-03-10T20:42:42.426084-07:00,1002.260498046875,10.734229,10734.229 +30807,2025-03-10T20:42:53.169635-07:00,1002.2591552734375,10.743551,10743.551 +30808,2025-03-10T20:43:03.901862-07:00,1002.2463989257812,10.732227,10732.227 +30809,2025-03-10T20:43:14.639860-07:00,1002.2463989257812,10.737998,10737.998 +30810,2025-03-10T20:43:25.385862-07:00,1002.26123046875,10.746002,10746.002 +30811,2025-03-10T20:43:36.120291-07:00,1002.287841796875,10.734429,10734.429 +30812,2025-03-10T20:43:46.859056-07:00,1002.2701416015625,10.738765,10738.765 +30813,2025-03-10T20:43:57.590871-07:00,1002.2701416015625,10.731815,10731.815 +30814,2025-03-10T20:44:08.328672-07:00,1002.2767333984375,10.737801,10737.801 +30815,2025-03-10T20:44:19.068593-07:00,1002.2750244140625,10.739921,10739.921 +30816,2025-03-10T20:44:29.806875-07:00,1002.2803344726562,10.738282,10738.282 +30817,2025-03-10T20:44:40.538016-07:00,1002.259033203125,10.731141,10731.141 +30818,2025-03-10T20:44:51.274866-07:00,1002.260498046875,10.73685,10736.85 +30819,2025-03-10T20:45:02.018560-07:00,1002.2723388671875,10.743694,10743.694 +30820,2025-03-10T20:45:12.750703-07:00,1002.2709350585938,10.732143,10732.143 +30821,2025-03-10T20:45:23.486060-07:00,1002.2413330078125,10.735357,10735.357 +30822,2025-03-10T20:45:34.231259-07:00,1002.2625732421875,10.745199,10745.199 +30823,2025-03-10T20:45:44.963862-07:00,1002.2346801757812,10.732603,10732.603 +30824,2025-03-10T20:45:55.700078-07:00,1002.2413330078125,10.736216,10736.216 +30825,2025-03-10T20:46:06.436864-07:00,1002.2267456054688,10.736786,10736.786 +30826,2025-03-10T20:46:17.178346-07:00,1002.2332763671875,10.741482,10741.482 +30827,2025-03-10T20:46:27.918112-07:00,1002.2493896484375,10.739766,10739.766 +30828,2025-03-10T20:46:38.650938-07:00,1002.236083984375,10.732826,10732.826 +30829,2025-03-10T20:46:49.399983-07:00,1002.2346801757812,10.749045,10749.045 +30830,2025-03-10T20:47:00.132525-07:00,1002.236083984375,10.732542,10732.542 +30831,2025-03-10T20:47:10.880203-07:00,1002.2245483398438,10.747678,10747.678 +30832,2025-03-10T20:47:21.613901-07:00,1002.2259521484375,10.733698,10733.698 +30833,2025-03-10T20:47:32.355054-07:00,1002.2206420898438,10.741153,10741.153 +30834,2025-03-10T20:47:43.096189-07:00,1002.2052612304688,10.741135,10741.135 +30835,2025-03-10T20:47:53.835865-07:00,1002.1906127929688,10.739676,10739.676 +30836,2025-03-10T20:48:04.570867-07:00,1002.2000122070312,10.735002,10735.002 +30837,2025-03-10T20:48:15.309892-07:00,1002.2243041992188,10.739025,10739.025 +30838,2025-03-10T20:48:26.051863-07:00,1002.204345703125,10.741971,10741.971 +30839,2025-03-10T20:48:36.794043-07:00,1002.2008666992188,10.74218,10742.18 +30840,2025-03-10T20:48:47.530135-07:00,1002.1995239257812,10.736092,10736.092 +30841,2025-03-10T20:48:58.267531-07:00,1002.2039184570312,10.737396,10737.396 +30842,2025-03-10T20:49:08.999884-07:00,1002.1986694335938,10.732353,10732.353 +30843,2025-03-10T20:49:19.736316-07:00,1002.2118530273438,10.736432,10736.432 +30844,2025-03-10T20:49:30.474068-07:00,1002.1787719726562,10.737752,10737.752 +30845,2025-03-10T20:49:41.221631-07:00,1002.2067260742188,10.747563,10747.563 +30846,2025-03-10T20:49:51.953861-07:00,1002.186767578125,10.73223,10732.23 +30847,2025-03-10T20:50:02.694865-07:00,1002.158935546875,10.741004,10741.004 +30848,2025-03-10T20:50:13.430868-07:00,1002.1721801757812,10.736003,10736.003 +30849,2025-03-10T20:50:24.164028-07:00,1002.181884765625,10.73316,10733.16 +30850,2025-03-10T20:50:34.910987-07:00,1002.158935546875,10.746959,10746.959 +30851,2025-03-10T20:50:45.648887-07:00,1002.157470703125,10.7379,10737.9 +30852,2025-03-10T20:50:56.384864-07:00,1002.1509399414062,10.735977,10735.977 +30853,2025-03-10T20:51:07.119860-07:00,1002.1668701171875,10.734996,10734.996 +30854,2025-03-10T20:51:17.860042-07:00,1002.144287109375,10.740182,10740.182 +30855,2025-03-10T20:51:28.599993-07:00,1002.1642456054688,10.739951,10739.951 +30856,2025-03-10T20:51:39.333864-07:00,1002.158935546875,10.733871,10733.871 +30857,2025-03-10T20:51:50.073053-07:00,1002.1359252929688,10.739189,10739.189 +30858,2025-03-10T20:52:00.810892-07:00,1002.1227416992188,10.737839,10737.839 +30859,2025-03-10T20:52:11.547862-07:00,1002.121337890625,10.73697,10736.97 +30860,2025-03-10T20:52:22.292862-07:00,1002.1146850585938,10.745,10745.0 +30861,2025-03-10T20:52:33.020309-07:00,1002.1359252929688,10.727447,10727.447 +30862,2025-03-10T20:52:43.766861-07:00,1002.1199951171875,10.746552,10746.552 +30863,2025-03-10T20:52:54.506952-07:00,1002.1116333007812,10.740091,10740.091 +30864,2025-03-10T20:53:05.242863-07:00,1002.1199951171875,10.735911,10735.911 +30865,2025-03-10T20:53:15.983557-07:00,1002.0903930664062,10.740694,10740.694 +30866,2025-03-10T20:53:26.718055-07:00,1002.0970458984375,10.734498,10734.498 +30867,2025-03-10T20:53:37.493750-07:00,1002.0970458984375,10.775695,10775.695 +30868,2025-03-10T20:53:48.230734-07:00,1002.1420288085938,10.736984,10736.984 +30869,2025-03-10T20:53:58.967844-07:00,1002.1168823242188,10.73711,10737.11 +30870,2025-03-10T20:54:09.713736-07:00,1002.115478515625,10.745892,10745.892 +30871,2025-03-10T20:54:20.446735-07:00,1002.102294921875,10.732999,10732.999 +30872,2025-03-10T20:54:31.188957-07:00,1002.0527954101562,10.742222,10742.222 +30873,2025-03-10T20:54:41.930462-07:00,1002.10888671875,10.741505,10741.505 +30874,2025-03-10T20:54:52.660932-07:00,1002.0970458984375,10.73047,10730.47 +30875,2025-03-10T20:55:03.405738-07:00,1002.083740234375,10.744806,10744.806 +30876,2025-03-10T20:55:14.148760-07:00,1002.0868530273438,10.743022,10743.022 +30877,2025-03-10T20:55:24.891438-07:00,1002.0829467773438,10.742678,10742.678 +30878,2025-03-10T20:55:35.632945-07:00,1002.0682983398438,10.741507,10741.507 +30879,2025-03-10T20:55:46.366951-07:00,1002.0714111328125,10.734006,10734.006 +30880,2025-03-10T20:55:57.107929-07:00,1002.0448608398438,10.740978,10740.978 +30881,2025-03-10T20:56:07.856937-07:00,1002.0211181640625,10.749008,10749.008 +30882,2025-03-10T20:56:18.590098-07:00,1002.0343627929688,10.733161,10733.161 +30883,2025-03-10T20:56:29.328938-07:00,1002.0189208984375,10.73884,10738.84 +30884,2025-03-10T20:56:40.065738-07:00,1002.0189208984375,10.7368,10736.8 +30885,2025-03-10T20:56:50.800207-07:00,1002.06005859375,10.734469,10734.469 +30886,2025-03-10T20:57:01.540767-07:00,1002.0189208984375,10.74056,10740.56 +30887,2025-03-10T20:57:12.273738-07:00,1002.0203247070312,10.732971,10732.971 +30888,2025-03-10T20:57:23.015471-07:00,1002.011474609375,10.741733,10741.733 +30889,2025-03-10T20:57:33.754923-07:00,1002.00341796875,10.739452,10739.452 +30890,2025-03-10T20:57:44.489927-07:00,1002.00341796875,10.735004,10735.004 +30891,2025-03-10T20:57:55.223731-07:00,1002.00341796875,10.733804,10733.804 +30892,2025-03-10T20:58:05.963732-07:00,1002.044677734375,10.740001,10740.001 +30893,2025-03-10T20:58:16.705738-07:00,1002.0021362304688,10.742006,10742.006 +30894,2025-03-10T20:58:27.437003-07:00,1002.0070190429688,10.731265,10731.265 +30895,2025-03-10T20:58:38.180912-07:00,1002.0070190429688,10.743909,10743.909 +30896,2025-03-10T20:58:48.914985-07:00,1002.0353393554688,10.734073,10734.073 +30897,2025-03-10T20:58:59.648737-07:00,1002.0353393554688,10.733752,10733.752 +30898,2025-03-10T20:59:10.387516-07:00,1002.025634765625,10.738779,10738.779 +30899,2025-03-10T20:59:21.134770-07:00,1002.0269775390625,10.747254,10747.254 +30900,2025-03-10T20:59:31.864929-07:00,1002.0335693359375,10.730159,10730.159 +30901,2025-03-10T20:59:42.603736-07:00,1002.0220336914062,10.738807,10738.807 +30902,2025-03-10T20:59:53.341738-07:00,1002.0353393554688,10.738002,10738.002 +30903,2025-03-10T21:00:04.084733-07:00,1002.0353393554688,10.742995,10742.995 +30904,2025-03-10T21:00:14.818790-07:00,1002.06005859375,10.734057,10734.057 +30905,2025-03-10T21:00:25.560738-07:00,1002.0667114257812,10.741948,10741.948 +30906,2025-03-10T21:00:36.291915-07:00,1002.0667114257812,10.731177,10731.177 +30907,2025-03-10T21:00:47.026998-07:00,1002.0882568359375,10.735083,10735.083 +30908,2025-03-10T21:00:57.769799-07:00,1002.06005859375,10.742801,10742.801 +30909,2025-03-10T21:01:08.509072-07:00,1002.0984497070312,10.739273,10739.273 +30910,2025-03-10T21:01:19.244738-07:00,1002.057373046875,10.735666,10735.666 +30911,2025-03-10T21:01:29.977387-07:00,1002.0971069335938,10.732649,10732.649 +30912,2025-03-10T21:01:40.724830-07:00,1002.0741577148438,10.747443,10747.443 +30913,2025-03-10T21:01:51.456738-07:00,1002.0904541015625,10.731908,10731.908 +30914,2025-03-10T21:02:02.197732-07:00,1002.0625610351562,10.740994,10740.994 +30915,2025-03-10T21:02:12.947739-07:00,1002.0741577148438,10.750007,10750.007 +30916,2025-03-10T21:02:23.686203-07:00,1002.0741577148438,10.738464,10738.464 +30917,2025-03-10T21:02:34.423939-07:00,1002.0728149414062,10.737736,10737.736 +30918,2025-03-10T21:02:45.164918-07:00,1002.0912475585938,10.740979,10740.979 +30919,2025-03-10T21:02:55.909030-07:00,1002.0704956054688,10.744112,10744.112 +30920,2025-03-10T21:03:06.640809-07:00,1002.0484619140625,10.731779,10731.779 +30921,2025-03-10T21:03:17.381752-07:00,1002.0823364257812,10.740943,10740.943 +30922,2025-03-10T21:03:28.131734-07:00,1002.0918579101562,10.749982,10749.982 +30923,2025-03-10T21:03:38.867161-07:00,1002.0587768554688,10.735427,10735.427 +30924,2025-03-10T21:03:49.609176-07:00,1002.0843505859375,10.742015,10742.015 +30925,2025-03-10T21:04:00.349128-07:00,1002.0869750976562,10.739952,10739.952 +30926,2025-03-10T21:04:11.088739-07:00,1002.0686645507812,10.739611,10739.611 +30927,2025-03-10T21:04:21.832103-07:00,1002.0567016601562,10.743364,10743.364 +30928,2025-03-10T21:04:32.568735-07:00,1002.0693969726562,10.736632,10736.632 +30929,2025-03-10T21:04:43.298885-07:00,1002.0987548828125,10.73015,10730.15 +30930,2025-03-10T21:04:54.031912-07:00,1002.1013793945312,10.733027,10733.027 +30931,2025-03-10T21:05:04.778073-07:00,1002.0859375,10.746161,10746.161 +30932,2025-03-10T21:05:15.511798-07:00,1002.0888061523438,10.733725,10733.725 +30933,2025-03-10T21:05:26.242737-07:00,1002.079833984375,10.730939,10730.939 +30934,2025-03-10T21:05:36.992106-07:00,1002.077880859375,10.749369,10749.369 +30935,2025-03-10T21:05:47.718941-07:00,1002.035888671875,10.726835,10726.835 +30936,2025-03-10T21:05:58.461960-07:00,1002.048095703125,10.743019,10743.019 +30937,2025-03-10T21:06:09.193802-07:00,1002.0753784179688,10.731842,10731.842 +30938,2025-03-10T21:06:19.923767-07:00,1002.074462890625,10.729965,10729.965 +30939,2025-03-10T21:06:30.657923-07:00,1002.1013793945312,10.734156,10734.156 +30940,2025-03-10T21:06:41.383808-07:00,1002.0543823242188,10.725885,10725.885 +30941,2025-03-10T21:06:52.122151-07:00,1002.06005859375,10.738343,10738.343 +30942,2025-03-10T21:07:02.848927-07:00,1002.0635986328125,10.726776,10726.776 +30943,2025-03-10T21:07:13.579734-07:00,1002.071044921875,10.730807,10730.807 +30944,2025-03-10T21:07:24.317988-07:00,1002.065185546875,10.738254,10738.254 +30945,2025-03-10T21:07:35.047887-07:00,1002.0739135742188,10.729899,10729.899 +30946,2025-03-10T21:07:45.779763-07:00,1002.0693969726562,10.731876,10731.876 +30947,2025-03-10T21:07:56.509001-07:00,1002.04638671875,10.729238,10729.238 +30948,2025-03-10T21:08:07.240790-07:00,1002.06494140625,10.731789,10731.789 +30949,2025-03-10T21:08:17.976152-07:00,1002.0621948242188,10.735362,10735.362 +30950,2025-03-10T21:08:28.702762-07:00,1002.0604858398438,10.72661,10726.61 +30951,2025-03-10T21:08:39.435739-07:00,1002.0228881835938,10.732977,10732.977 +30952,2025-03-10T21:08:50.167103-07:00,1002.0392456054688,10.731364,10731.364 +30953,2025-03-10T21:09:00.906965-07:00,1002.021484375,10.739862,10739.862 +30954,2025-03-10T21:09:11.637738-07:00,1002.021484375,10.730773,10730.773 +30955,2025-03-10T21:09:22.372738-07:00,1002.0656127929688,10.735,10735.0 +30956,2025-03-10T21:09:33.101735-07:00,1002.0228881835938,10.728997,10728.997 +30957,2025-03-10T21:09:43.838738-07:00,1002.0457763671875,10.737003,10737.003 +30958,2025-03-10T21:09:54.578733-07:00,1002.0325927734375,10.739995,10739.995 +30959,2025-03-10T21:10:05.311848-07:00,1002.0339965820312,10.733115,10733.115 +30960,2025-03-10T21:10:16.050939-07:00,1002.0406494140625,10.739091,10739.091 +30961,2025-03-10T21:10:26.777809-07:00,1002.0075073242188,10.72687,10726.87 +30962,2025-03-10T21:10:37.521026-07:00,1002.0092163085938,10.743217,10743.217 +30963,2025-03-10T21:10:48.258732-07:00,1002.0053100585938,10.737706,10737.706 +30964,2025-03-10T21:10:58.994107-07:00,1001.9854736328125,10.735375,10735.375 +30965,2025-03-10T21:11:09.721734-07:00,1001.9820556640625,10.727627,10727.627 +30966,2025-03-10T21:11:20.457736-07:00,1001.9833374023438,10.736002,10736.002 +30967,2025-03-10T21:11:31.204734-07:00,1001.9715576171875,10.746998,10746.998 +30968,2025-03-10T21:11:41.939738-07:00,1001.974609375,10.735004,10735.004 +30969,2025-03-10T21:11:52.671939-07:00,1001.9776611328125,10.732201,10732.201 +30970,2025-03-10T21:12:03.413786-07:00,1001.9689331054688,10.741847,10741.847 +30971,2025-03-10T21:12:14.159733-07:00,1001.978271484375,10.745947,10745.947 +30972,2025-03-10T21:12:24.893759-07:00,1001.9974365234375,10.734026,10734.026 +30973,2025-03-10T21:12:35.634902-07:00,1001.966064453125,10.741143,10741.143 +30974,2025-03-10T21:12:46.373915-07:00,1001.9542236328125,10.739013,10739.013 +30975,2025-03-10T21:12:57.117230-07:00,1001.98828125,10.743315,10743.315 +30976,2025-03-10T21:13:07.856919-07:00,1001.9763793945312,10.739689,10739.689 +30977,2025-03-10T21:13:18.594730-07:00,1001.982177734375,10.737811,10737.811 +30978,2025-03-10T21:13:29.325739-07:00,1001.9539184570312,10.731009,10731.009 +30979,2025-03-10T21:13:40.071736-07:00,1001.9618530273438,10.745997,10745.997 +30980,2025-03-10T21:13:50.811768-07:00,1001.9437255859375,10.740032,10740.032 +30981,2025-03-10T21:14:01.553805-07:00,1001.9708862304688,10.742037,10742.037 +30982,2025-03-10T21:14:12.288440-07:00,1001.95263671875,10.734635,10734.635 +30983,2025-03-10T21:14:23.035618-07:00,1001.9916381835938,10.747178,10747.178 +30984,2025-03-10T21:14:33.772350-07:00,1001.9547119140625,10.736732,10736.732 +30985,2025-03-10T21:14:44.505811-07:00,1001.959228515625,10.733461,10733.461 +30986,2025-03-10T21:14:55.249801-07:00,1001.986572265625,10.74399,10743.99 +30987,2025-03-10T21:15:05.985567-07:00,1002.0042724609375,10.735766,10735.766 +30988,2025-03-10T21:15:16.725932-07:00,1001.973876953125,10.740365,10740.365 +30989,2025-03-10T21:15:27.467868-07:00,1001.9651489257812,10.741936,10741.936 +30990,2025-03-10T21:15:38.208760-07:00,1001.96826171875,10.740892,10740.892 +30991,2025-03-10T21:15:48.951736-07:00,1001.9779663085938,10.742976,10742.976 +30992,2025-03-10T21:15:59.690738-07:00,1001.9691162109375,10.739002,10739.002 +30993,2025-03-10T21:16:10.424813-07:00,1001.9454956054688,10.734075,10734.075 +30994,2025-03-10T21:16:21.163844-07:00,1001.935302734375,10.739031,10739.031 +30995,2025-03-10T21:16:31.904634-07:00,1001.9146118164062,10.74079,10740.79 +30996,2025-03-10T21:16:42.648759-07:00,1001.92919921875,10.744125,10744.125 +30997,2025-03-10T21:16:53.380737-07:00,1001.8992309570312,10.731978,10731.978 +30998,2025-03-10T21:17:04.121780-07:00,1001.9221801757812,10.741043,10741.043 +30999,2025-03-10T21:17:14.855916-07:00,1001.9182739257812,10.734136,10734.136 +31000,2025-03-10T21:17:25.603956-07:00,1001.9412231445312,10.74804,10748.04 +31001,2025-03-10T21:17:36.332737-07:00,1001.900146484375,10.728781,10728.781 +31002,2025-03-10T21:17:47.081737-07:00,1001.896240234375,10.749,10749.0 +31003,2025-03-10T21:17:57.813736-07:00,1001.9138793945312,10.731999,10731.999 +31004,2025-03-10T21:18:08.550733-07:00,1001.9073486328125,10.736997,10736.997 +31005,2025-03-10T21:18:19.294737-07:00,1001.9087524414062,10.744004,10744.004 +31006,2025-03-10T21:18:30.026924-07:00,1001.9170532226562,10.732187,10732.187 +31007,2025-03-10T21:18:40.773482-07:00,1001.9037475585938,10.746558,10746.558 +31008,2025-03-10T21:18:51.510053-07:00,1001.9051513671875,10.736571,10736.571 +31009,2025-03-10T21:19:02.253732-07:00,1001.9131469726562,10.743679,10743.679 +31010,2025-03-10T21:19:12.987730-07:00,1001.9065551757812,10.733998,10733.998 +31011,2025-03-10T21:19:23.725319-07:00,1001.89990234375,10.737589,10737.589 +31012,2025-03-10T21:19:34.462924-07:00,1001.916259765625,10.737605,10737.605 +31013,2025-03-10T21:19:45.200069-07:00,1001.9227905273438,10.737145,10737.145 +31014,2025-03-10T21:19:55.939908-07:00,1001.9281005859375,10.739839,10739.839 +31015,2025-03-10T21:20:06.678013-07:00,1001.9413452148438,10.738105,10738.105 +31016,2025-03-10T21:20:17.413438-07:00,1001.9197387695312,10.735425,10735.425 +31017,2025-03-10T21:20:28.152145-07:00,1001.9082641601562,10.738707,10738.707 +31018,2025-03-10T21:20:38.894596-07:00,1001.9295043945312,10.742451,10742.451 +31019,2025-03-10T21:20:49.638763-07:00,1001.916259765625,10.744167,10744.167 +31020,2025-03-10T21:21:00.369777-07:00,1001.9360961914062,10.731014,10731.014 +31021,2025-03-10T21:21:11.104167-07:00,1001.9346923828125,10.73439,10734.39 +31022,2025-03-10T21:21:21.846513-07:00,1001.9413452148438,10.742346,10742.346 +31023,2025-03-10T21:21:32.584149-07:00,1001.9508056640625,10.737636,10737.636 +31024,2025-03-10T21:21:43.316741-07:00,1001.95458984375,10.732592,10732.592 +31025,2025-03-10T21:21:54.063795-07:00,1001.975830078125,10.747054,10747.054 +31026,2025-03-10T21:22:04.794768-07:00,1001.9678344726562,10.730973,10730.973 +31027,2025-03-10T21:22:15.535947-07:00,1001.9625854492188,10.741179,10741.179 +31028,2025-03-10T21:22:26.268918-07:00,1001.9678344726562,10.732971,10732.971 +31029,2025-03-10T21:22:37.011976-07:00,1001.95458984375,10.743058,10743.058 +31030,2025-03-10T21:22:47.744727-07:00,1001.9678344726562,10.732751,10732.751 +31031,2025-03-10T21:22:58.484744-07:00,1001.952880859375,10.740017,10740.017 +31032,2025-03-10T21:23:06.672815-07:00,1001.9515380859375,8.188071,8188.071 +31033,2025-03-10T21:23:09.212920-07:00,1001.9793701171875,2.540105,2540.105 +31034,2025-03-10T21:23:19.947845-07:00,1001.9876708984375,10.734925,10734.925 +31035,2025-03-10T21:23:30.685013-07:00,1001.9876708984375,10.737168,10737.168 +31036,2025-03-10T21:23:41.430736-07:00,1001.9860229492188,10.745723,10745.723 +31037,2025-03-10T21:23:52.160948-07:00,1001.966064453125,10.730212,10730.212 +31038,2025-03-10T21:24:02.902603-07:00,1001.971435546875,10.741655,10741.655 +31039,2025-03-10T21:24:13.632734-07:00,1002.007568359375,10.730131,10730.131 +31040,2025-03-10T21:24:24.371944-07:00,1002.0059204101562,10.73921,10739.21 +31041,2025-03-10T21:24:35.106738-07:00,1001.9810791015625,10.734794,10734.794 +31042,2025-03-10T21:24:45.847919-07:00,1002.0009155273438,10.741181,10741.181 +31043,2025-03-10T21:24:56.581248-07:00,1001.994384765625,10.733329,10733.329 +31044,2025-03-10T21:25:07.319731-07:00,1001.994384765625,10.738483,10738.483 +31045,2025-03-10T21:25:18.051816-07:00,1001.9810791015625,10.732085,10732.085 +31046,2025-03-10T21:25:28.795917-07:00,1001.9838256835938,10.744101,10744.101 +31047,2025-03-10T21:25:39.530762-07:00,1001.9706420898438,10.734845,10734.845 +31048,2025-03-10T21:25:50.262982-07:00,1002.0001831054688,10.73222,10732.22 +31049,2025-03-10T21:26:01.002736-07:00,1001.98828125,10.739754,10739.754 +31050,2025-03-10T21:26:11.736941-07:00,1001.9979858398438,10.734205,10734.205 +31051,2025-03-10T21:26:22.476588-07:00,1001.9896850585938,10.739647,10739.647 +31052,2025-03-10T21:26:33.217080-07:00,1001.9795532226562,10.740492,10740.492 +31053,2025-03-10T21:26:43.955918-07:00,1001.9852905273438,10.738838,10738.838 +31054,2025-03-10T21:26:54.685826-07:00,1001.9759521484375,10.729908,10729.908 +31055,2025-03-10T21:27:05.430734-07:00,1001.987060546875,10.744908,10744.908 +31056,2025-03-10T21:27:16.169804-07:00,1001.9963989257812,10.73907,10739.07 +31057,2025-03-10T21:27:26.908737-07:00,1001.9963989257812,10.738933,10738.933 +31058,2025-03-10T21:27:37.654807-07:00,1002.0193481445312,10.74607,10746.07 +31059,2025-03-10T21:27:48.390937-07:00,1001.99951171875,10.73613,10736.13 +31060,2025-03-10T21:27:59.128874-07:00,1002.0384521484375,10.737937,10737.937 +31061,2025-03-10T21:28:09.875828-07:00,1002.0119018554688,10.746954,10746.954 +31062,2025-03-10T21:28:20.612735-07:00,1002.025146484375,10.736907,10736.907 +31063,2025-03-10T21:28:31.348252-07:00,1002.0119018554688,10.735517,10735.517 +31064,2025-03-10T21:28:42.084964-07:00,1002.0020141601562,10.736712,10736.712 +31065,2025-03-10T21:28:52.815638-07:00,1002.00341796875,10.730674,10730.674 +31066,2025-03-10T21:29:03.556919-07:00,1002.0114135742188,10.741281,10741.281 +31067,2025-03-10T21:29:14.292090-07:00,1001.9932861328125,10.735171,10735.171 +31068,2025-03-10T21:29:25.023748-07:00,1001.9946899414062,10.731658,10731.658 +31069,2025-03-10T21:29:35.767898-07:00,1001.9946899414062,10.74415,10744.15 +31070,2025-03-10T21:29:46.501761-07:00,1002.0242309570312,10.733863,10733.863 +31071,2025-03-10T21:29:57.236735-07:00,1001.9977416992188,10.734974,10734.974 +31072,2025-03-10T21:30:07.971290-07:00,1001.9910888671875,10.734555,10734.555 +31073,2025-03-10T21:30:18.706909-07:00,1002.0123291015625,10.735619,10735.619 +31074,2025-03-10T21:30:29.437771-07:00,1002.025634765625,10.730862,10730.862 +31075,2025-03-10T21:30:40.165729-07:00,1002.0269775390625,10.727958,10727.958 +31076,2025-03-10T21:30:50.907730-07:00,1002.0109252929688,10.742001,10742.001 +31077,2025-03-10T21:31:01.642138-07:00,1002.00048828125,10.734408,10734.408 +31078,2025-03-10T21:31:12.372490-07:00,1002.0189819335938,10.730352,10730.352 +31079,2025-03-10T21:31:23.101895-07:00,1001.9910888671875,10.729405,10729.405 +31080,2025-03-10T21:31:33.840912-07:00,1001.9844360351562,10.739017,10739.017 +31081,2025-03-10T21:31:44.563730-07:00,1001.977783203125,10.722818,10722.818 +31082,2025-03-10T21:31:55.298734-07:00,1001.9977416992188,10.735004,10735.004 +31083,2025-03-10T21:32:06.031806-07:00,1002.002685546875,10.733072,10733.072 +31084,2025-03-10T21:32:16.770908-07:00,1001.9893798828125,10.739102,10739.102 +31085,2025-03-10T21:32:27.493160-07:00,1002.017578125,10.722252,10722.252 +31086,2025-03-10T21:32:38.229922-07:00,1002.0145263671875,10.736762,10736.762 +31087,2025-03-10T21:32:48.961904-07:00,1002.0159301757812,10.731982,10731.982 +31088,2025-03-10T21:32:59.697730-07:00,1002.0092163085938,10.735826,10735.826 +31089,2025-03-10T21:33:10.428735-07:00,1002.02783203125,10.731005,10731.005 +31090,2025-03-10T21:33:21.155987-07:00,1002.001220703125,10.727252,10727.252 +31091,2025-03-10T21:33:31.892861-07:00,1002.0048217773438,10.736874,10736.874 +31092,2025-03-10T21:33:42.622789-07:00,1002.0114135742188,10.729928,10729.928 +31093,2025-03-10T21:33:53.356150-07:00,1002.032958984375,10.733361,10733.361 +31094,2025-03-10T21:34:04.091609-07:00,1002.0379638671875,10.735459,10735.459 +31095,2025-03-10T21:34:14.820736-07:00,1002.0445556640625,10.729127,10729.127 +31096,2025-03-10T21:34:25.560806-07:00,1002.043212890625,10.74007,10740.07 +31097,2025-03-10T21:34:36.294937-07:00,1002.0484619140625,10.734131,10734.131 +31098,2025-03-10T21:34:47.029083-07:00,1002.0530395507812,10.734146,10734.146 +31099,2025-03-10T21:34:57.764733-07:00,1002.0449829101562,10.73565,10735.65 +31100,2025-03-10T21:35:08.499137-07:00,1002.0317993164062,10.734404,10734.404 +31101,2025-03-10T21:35:19.233935-07:00,1002.05029296875,10.734798,10734.798 +31102,2025-03-10T21:35:29.979843-07:00,1002.0423583984375,10.745908,10745.908 +31103,2025-03-10T21:35:40.707736-07:00,1002.0604858398438,10.727893,10727.893 +31104,2025-03-10T21:35:51.447808-07:00,1002.052490234375,10.740072,10740.072 +31105,2025-03-10T21:36:02.180730-07:00,1002.0493774414062,10.732922,10732.922 +31106,2025-03-10T21:36:12.911923-07:00,1002.046630859375,10.731193,10731.193 +31107,2025-03-10T21:36:23.644100-07:00,1002.06787109375,10.732177,10732.177 +31108,2025-03-10T21:36:34.384728-07:00,1002.0501708984375,10.740628,10740.628 +31109,2025-03-10T21:36:45.115128-07:00,1002.0634155273438,10.7304,10730.4 +31110,2025-03-10T21:36:55.854554-07:00,1002.0634155273438,10.739426,10739.426 +31111,2025-03-10T21:37:06.586735-07:00,1002.060302734375,10.732181,10732.181 +31112,2025-03-10T21:37:17.313733-07:00,1002.0589599609375,10.726998,10726.998 +31113,2025-03-10T21:37:28.048768-07:00,1002.0360717773438,10.735035,10735.035 +31114,2025-03-10T21:37:38.783193-07:00,1002.0576782226562,10.734425,10734.425 +31115,2025-03-10T21:37:49.518735-07:00,1002.0789184570312,10.735542,10735.542 +31116,2025-03-10T21:38:00.252792-07:00,1002.0708618164062,10.734057,10734.057 +31117,2025-03-10T21:38:10.996761-07:00,1002.0890502929688,10.743969,10743.969 +31118,2025-03-10T21:38:21.725930-07:00,1002.087646484375,10.729169,10729.169 +31119,2025-03-10T21:38:32.464839-07:00,1002.0597534179688,10.738909,10738.909 +31120,2025-03-10T21:38:43.194825-07:00,1002.0783081054688,10.729986,10729.986 +31121,2025-03-10T21:38:53.929948-07:00,1002.0700073242188,10.735123,10735.123 +31122,2025-03-10T21:39:04.665944-07:00,1002.1017456054688,10.735996,10735.996 +31123,2025-03-10T21:39:15.400735-07:00,1002.0751342773438,10.734791,10734.791 +31124,2025-03-10T21:39:26.137732-07:00,1002.0654907226562,10.736997,10736.997 +31125,2025-03-10T21:39:36.875821-07:00,1002.0870361328125,10.738089,10738.089 +31126,2025-03-10T21:39:47.608916-07:00,1002.105224609375,10.733095,10733.095 +31127,2025-03-10T21:39:58.341732-07:00,1002.0853271484375,10.732816,10732.816 +31128,2025-03-10T21:40:09.071972-07:00,1002.1251831054688,10.73024,10730.24 +31129,2025-03-10T21:40:19.818735-07:00,1002.0958862304688,10.746763,10746.763 +31130,2025-03-10T21:40:30.550993-07:00,1002.0742797851562,10.732258,10732.258 +31131,2025-03-10T21:40:41.289914-07:00,1002.0958862304688,10.738921,10738.921 +31132,2025-03-10T21:40:52.017735-07:00,1002.1126708984375,10.727821,10727.821 +31133,2025-03-10T21:41:02.760764-07:00,1002.1339111328125,10.743029,10743.029 +31134,2025-03-10T21:41:13.490030-07:00,1002.1073608398438,10.729266,10729.266 +31135,2025-03-10T21:41:24.230919-07:00,1002.1701049804688,10.740889,10740.889 +31136,2025-03-10T21:41:34.958738-07:00,1002.0941162109375,10.727819,10727.819 +31137,2025-03-10T21:41:45.704878-07:00,1002.1024780273438,10.74614,10746.14 +31138,2025-03-10T21:41:56.433877-07:00,1002.099365234375,10.728999,10728.999 +31139,2025-03-10T21:42:07.172127-07:00,1002.0826416015625,10.73825,10738.25 +31140,2025-03-10T21:42:17.902810-07:00,1002.0892333984375,10.730683,10730.683 +31141,2025-03-10T21:42:28.648734-07:00,1002.067626953125,10.745924,10745.924 +31142,2025-03-10T21:42:39.383736-07:00,1002.1073608398438,10.735002,10735.002 +31143,2025-03-10T21:42:50.117919-07:00,1002.1140747070312,10.734183,10734.183 +31144,2025-03-10T21:43:00.854324-07:00,1002.1126708984375,10.736405,10736.405 +31145,2025-03-10T21:43:11.590484-07:00,1002.12060546875,10.73616,10736.16 +31146,2025-03-10T21:43:22.324934-07:00,1002.1126708984375,10.73445,10734.45 +31147,2025-03-10T21:43:33.068736-07:00,1002.1046752929688,10.743802,10743.802 +31148,2025-03-10T21:43:43.803040-07:00,1002.12451171875,10.734304,10734.304 +31149,2025-03-10T21:43:54.543905-07:00,1002.1112670898438,10.740865,10740.865 +31150,2025-03-10T21:44:05.275947-07:00,1002.1112670898438,10.732042,10732.042 +31151,2025-03-10T21:44:16.015898-07:00,1002.1161499023438,10.739951,10739.951 +31152,2025-03-10T21:44:26.756008-07:00,1002.0750732421875,10.74011,10740.11 +31153,2025-03-10T21:44:37.487383-07:00,1002.1068115234375,10.731375,10731.375 +31154,2025-03-10T21:44:48.222730-07:00,1002.1426391601562,10.735347,10735.347 +31155,2025-03-10T21:44:58.957787-07:00,1002.1199951171875,10.735057,10735.057 +31156,2025-03-10T21:45:09.694888-07:00,1002.0921630859375,10.737101,10737.101 +31157,2025-03-10T21:45:20.434034-07:00,1002.1386108398438,10.739146,10739.146 +31158,2025-03-10T21:45:31.170978-07:00,1002.1102905273438,10.736944,10736.944 +31159,2025-03-10T21:45:41.899735-07:00,1002.1102905273438,10.728757,10728.757 +31160,2025-03-10T21:45:52.635797-07:00,1002.1302490234375,10.736062,10736.062 +31161,2025-03-10T21:46:03.371912-07:00,1002.1023559570312,10.736115,10736.115 +31162,2025-03-10T21:46:14.109917-07:00,1002.0877075195312,10.738005,10738.005 +31163,2025-03-10T21:46:24.843732-07:00,1002.0992431640625,10.733815,10733.815 +31164,2025-03-10T21:46:35.588935-07:00,1002.134033203125,10.745203,10745.203 +31165,2025-03-10T21:46:46.318764-07:00,1002.1243896484375,10.729829,10729.829 +31166,2025-03-10T21:46:57.054766-07:00,1002.0912475585938,10.736002,10736.002 +31167,2025-03-10T21:47:07.793908-07:00,1002.1376342773438,10.739142,10739.142 +31168,2025-03-10T21:47:18.526732-07:00,1002.1080322265625,10.732824,10732.824 +31169,2025-03-10T21:47:29.269804-07:00,1002.1146850585938,10.743072,10743.072 +31170,2025-03-10T21:47:40.005816-07:00,1002.134521484375,10.736012,10736.012 +31171,2025-03-10T21:47:50.742017-07:00,1002.1052856445312,10.736201,10736.201 +31172,2025-03-10T21:48:01.479910-07:00,1002.1185302734375,10.737893,10737.893 +31173,2025-03-10T21:48:12.206821-07:00,1002.1251831054688,10.726911,10726.911 +31174,2025-03-10T21:48:22.949761-07:00,1002.1234130859375,10.74294,10742.94 +31175,2025-03-10T21:48:33.686935-07:00,1002.1074829101562,10.737174,10737.174 +31176,2025-03-10T21:48:44.420922-07:00,1002.1220092773438,10.733987,10733.987 +31177,2025-03-10T21:48:55.154758-07:00,1002.1123657226562,10.733836,10733.836 +31178,2025-03-10T21:49:05.889833-07:00,1002.0859375,10.735075,10735.075 +31179,2025-03-10T21:49:16.624968-07:00,1002.06982421875,10.735135,10735.135 +31180,2025-03-10T21:49:27.362125-07:00,1002.077880859375,10.737157,10737.157 +31181,2025-03-10T21:49:38.098727-07:00,1002.0831298828125,10.736602,10736.602 +31182,2025-03-10T21:49:48.835054-07:00,1002.1109619140625,10.736327,10736.327 +31183,2025-03-10T21:49:59.575435-07:00,1002.1029663085938,10.740381,10740.381 +31184,2025-03-10T21:50:10.305748-07:00,1002.094970703125,10.730313,10730.313 +31185,2025-03-10T21:50:21.036921-07:00,1002.1214599609375,10.731173,10731.173 +31186,2025-03-10T21:50:31.779734-07:00,1002.0985107421875,10.742813,10742.813 +31187,2025-03-10T21:50:42.515735-07:00,1002.1329956054688,10.736001,10736.001 +31188,2025-03-10T21:50:53.245958-07:00,1002.1235961914062,10.730223,10730.223 +31189,2025-03-10T21:51:03.982103-07:00,1002.1116943359375,10.736145,10736.145 +31190,2025-03-10T21:51:14.717911-07:00,1002.10205078125,10.735808,10735.808 +31191,2025-03-10T21:51:25.450971-07:00,1002.1286010742188,10.73306,10733.06 +31192,2025-03-10T21:51:36.186734-07:00,1002.1286010742188,10.735763,10735.763 +31193,2025-03-10T21:51:46.919294-07:00,1002.1107788085938,10.73256,10732.56 +31194,2025-03-10T21:51:57.655729-07:00,1002.0993041992188,10.736435,10736.435 +31195,2025-03-10T21:52:08.394945-07:00,1002.1192016601562,10.739216,10739.216 +31196,2025-03-10T21:52:19.123169-07:00,1002.0993041992188,10.728224,10728.224 +31197,2025-03-10T21:52:29.858675-07:00,1002.1107788085938,10.735506,10735.506 +31198,2025-03-10T21:52:40.589737-07:00,1002.1174926757812,10.731062,10731.062 +31199,2025-03-10T21:52:51.316952-07:00,1002.1160888671875,10.727215,10727.215 +31200,2025-03-10T21:53:02.055106-07:00,1002.1373291015625,10.738154,10738.154 +31201,2025-03-10T21:53:12.791853-07:00,1002.1146850585938,10.736747,10736.747 +31202,2025-03-10T21:53:23.522736-07:00,1002.1279907226562,10.730883,10730.883 +31203,2025-03-10T21:53:34.287282-07:00,1002.0997924804688,10.764546,10764.546 +31204,2025-03-10T21:53:45.024089-07:00,1002.11962890625,10.736807,10736.807 +31205,2025-03-10T21:53:55.757290-07:00,1002.1314697265625,10.733201,10733.201 +31206,2025-03-10T21:54:06.498161-07:00,1002.1248168945312,10.740871,10740.871 +31207,2025-03-10T21:54:17.229239-07:00,1002.13671875,10.731078,10731.078 +31208,2025-03-10T21:54:27.961108-07:00,1002.1500244140625,10.731869,10731.869 +31209,2025-03-10T21:54:38.699089-07:00,1002.1632080078125,10.737981,10737.981 +31210,2025-03-10T21:54:49.426432-07:00,1002.1565551757812,10.727343,10727.343 +31211,2025-03-10T21:55:00.168933-07:00,1002.1500244140625,10.742501,10742.501 +31212,2025-03-10T21:55:10.891090-07:00,1002.1817016601562,10.722157,10722.157 +31213,2025-03-10T21:55:21.630241-07:00,1002.1720581054688,10.739151,10739.151 +31214,2025-03-10T21:55:32.368091-07:00,1002.1720581054688,10.73785,10737.85 +31215,2025-03-10T21:55:43.101259-07:00,1002.1799926757812,10.733168,10733.168 +31216,2025-03-10T21:55:53.832167-07:00,1002.1490478515625,10.730908,10730.908 +31217,2025-03-10T21:56:04.565519-07:00,1002.1476440429688,10.733352,10733.352 +31218,2025-03-10T21:56:15.292273-07:00,1002.1329956054688,10.726754,10726.754 +31219,2025-03-10T21:56:26.028082-07:00,1002.1622924804688,10.735809,10735.809 +31220,2025-03-10T21:56:36.760087-07:00,1002.1859130859375,10.732005,10732.005 +31221,2025-03-10T21:56:47.490619-07:00,1002.1595458984375,10.730532,10730.532 +31222,2025-03-10T21:56:58.215090-07:00,1002.1660766601562,10.724471,10724.471 +31223,2025-03-10T21:57:08.955088-07:00,1002.1710815429688,10.739998,10739.998 +31224,2025-03-10T21:57:19.680911-07:00,1002.1727294921875,10.725823,10725.823 +31225,2025-03-10T21:57:30.411280-07:00,1002.184326171875,10.730369,10730.369 +31226,2025-03-10T21:57:41.141087-07:00,1002.17626953125,10.729807,10729.807 +31227,2025-03-10T21:57:51.870322-07:00,1002.1776733398438,10.729235,10729.235 +31228,2025-03-10T21:58:02.612488-07:00,1002.16162109375,10.742166,10742.166 +31229,2025-03-10T21:58:13.340085-07:00,1002.1682739257812,10.727597,10727.597 +31230,2025-03-10T21:58:24.072335-07:00,1002.1665649414062,10.73225,10732.25 +31231,2025-03-10T21:58:34.801356-07:00,1002.1930541992188,10.729021,10729.021 +31232,2025-03-10T21:58:45.534087-07:00,1002.1930541992188,10.732731,10732.731 +31233,2025-03-10T21:58:56.262086-07:00,1002.178466796875,10.727999,10727.999 +31234,2025-03-10T21:59:06.999277-07:00,1002.1585693359375,10.737191,10737.191 +31235,2025-03-10T21:59:17.726088-07:00,1002.1849975585938,10.726811,10726.811 +31236,2025-03-10T21:59:28.456326-07:00,1002.1836547851562,10.730238,10730.238 +31237,2025-03-10T21:59:39.188258-07:00,1002.162109375,10.731932,10731.932 +31238,2025-03-10T21:59:49.922123-07:00,1002.177001953125,10.733865,10733.865 +31239,2025-03-10T22:00:00.644258-07:00,1002.154052734375,10.722135,10722.135 +31240,2025-03-10T22:00:11.379302-07:00,1002.1806030273438,10.735044,10735.044 +31241,2025-03-10T22:00:22.115089-07:00,1002.1659545898438,10.735787,10735.787 +31242,2025-03-10T22:00:32.845301-07:00,1002.1911010742188,10.730212,10730.212 +31243,2025-03-10T22:00:43.584287-07:00,1002.1681518554688,10.738986,10738.986 +31244,2025-03-10T22:00:54.309090-07:00,1002.1782836914062,10.724803,10724.803 +31245,2025-03-10T22:01:05.044718-07:00,1002.1437377929688,10.735628,10735.628 +31246,2025-03-10T22:01:15.780089-07:00,1002.1922607421875,10.735371,10735.371 +31247,2025-03-10T22:01:26.518089-07:00,1002.1821899414062,10.738,10738.0 +31248,2025-03-10T22:01:37.260257-07:00,1002.1838989257812,10.742168,10742.168 +31249,2025-03-10T22:01:47.993218-07:00,1002.188232421875,10.732961,10732.961 +31250,2025-03-10T22:01:58.719125-07:00,1002.1956176757812,10.725907,10725.907 +31251,2025-03-10T22:02:09.461506-07:00,1002.1893920898438,10.742381,10742.381 +31252,2025-03-10T22:02:20.187087-07:00,1002.188720703125,10.725581,10725.581 +31253,2025-03-10T22:02:30.919124-07:00,1002.1930541992188,10.732037,10732.037 +31254,2025-03-10T22:02:41.654191-07:00,1002.190673828125,10.735067,10735.067 +31255,2025-03-10T22:02:52.389258-07:00,1002.2047119140625,10.735067,10735.067 +31256,2025-03-10T22:03:03.121089-07:00,1002.1942749023438,10.731831,10731.831 +31257,2025-03-10T22:03:13.849083-07:00,1002.185302734375,10.727994,10727.994 +31258,2025-03-10T22:03:24.589285-07:00,1002.1710815429688,10.740202,10740.202 +31259,2025-03-10T22:03:35.325523-07:00,1002.2234497070312,10.736238,10736.238 +31260,2025-03-10T22:03:46.051089-07:00,1002.1959228515625,10.725566,10725.566 +31261,2025-03-10T22:03:56.790286-07:00,1002.2179565429688,10.739197,10739.197 +31262,2025-03-10T22:04:07.524169-07:00,1002.21728515625,10.733883,10733.883 +31263,2025-03-10T22:04:18.256112-07:00,1002.2111206054688,10.731943,10731.943 +31264,2025-03-10T22:04:28.986105-07:00,1002.1986083984375,10.729993,10729.993 +31265,2025-03-10T22:04:39.726186-07:00,1002.1807861328125,10.740081,10740.081 +31266,2025-03-10T22:04:50.465302-07:00,1002.2212524414062,10.739116,10739.116 +31267,2025-03-10T22:05:01.190083-07:00,1002.2017822265625,10.724781,10724.781 +31268,2025-03-10T22:05:11.932085-07:00,1002.1826782226562,10.742002,10742.002 +31269,2025-03-10T22:05:22.661191-07:00,1002.1781005859375,10.729106,10729.106 +31270,2025-03-10T22:05:33.393270-07:00,1002.216064453125,10.732079,10732.079 +31271,2025-03-10T22:05:44.131087-07:00,1002.2412719726562,10.737817,10737.817 +31272,2025-03-10T22:05:54.861112-07:00,1002.20361328125,10.730025,10730.025 +31273,2025-03-10T22:06:05.601284-07:00,1002.2088012695312,10.740172,10740.172 +31274,2025-03-10T22:06:16.327088-07:00,1002.232177734375,10.725804,10725.804 +31275,2025-03-10T22:06:27.062116-07:00,1002.1963500976562,10.735028,10735.028 +31276,2025-03-10T22:06:37.798159-07:00,1002.2343139648438,10.736043,10736.043 +31277,2025-03-10T22:06:48.530265-07:00,1002.2117309570312,10.732106,10732.106 +31278,2025-03-10T22:06:59.267250-07:00,1002.1754760742188,10.736985,10736.985 +31279,2025-03-10T22:07:10.000165-07:00,1002.22314453125,10.732915,10732.915 +31280,2025-03-10T22:07:20.735087-07:00,1002.1939086914062,10.734922,10734.922 +31281,2025-03-10T22:07:31.467294-07:00,1002.2086181640625,10.732207,10732.207 +31282,2025-03-10T22:07:42.199305-07:00,1002.1939086914062,10.732011,10732.011 +31283,2025-03-10T22:07:52.938237-07:00,1002.1953125,10.738932,10738.932 +31284,2025-03-10T22:08:03.668142-07:00,1002.2086181640625,10.729905,10729.905 +31285,2025-03-10T22:08:14.398862-07:00,1002.17236328125,10.73072,10730.72 +31286,2025-03-10T22:08:25.132091-07:00,1002.2033081054688,10.733229,10733.229 +31287,2025-03-10T22:08:35.861555-07:00,1002.1873168945312,10.729464,10729.464 +31288,2025-03-10T22:08:46.603272-07:00,1002.1807250976562,10.741717,10741.717 +31289,2025-03-10T22:08:57.335279-07:00,1002.1967163085938,10.732007,10732.007 +31290,2025-03-10T22:09:08.065115-07:00,1002.1702880859375,10.729836,10729.836 +31291,2025-03-10T22:09:18.797087-07:00,1002.1851806640625,10.731972,10731.972 +31292,2025-03-10T22:09:29.535270-07:00,1002.2228393554688,10.738183,10738.183 +31293,2025-03-10T22:09:40.267082-07:00,1002.18310546875,10.731812,10731.812 +31294,2025-03-10T22:09:51.000536-07:00,1002.2123413085938,10.733454,10733.454 +31295,2025-03-10T22:10:01.734269-07:00,1002.1434326171875,10.733733,10733.733 +31296,2025-03-10T22:10:12.464121-07:00,1002.200439453125,10.729852,10729.852 +31297,2025-03-10T22:10:23.199158-07:00,1002.17578125,10.735037,10735.037 +31298,2025-03-10T22:10:33.933092-07:00,1002.18896484375,10.733934,10733.934 +31299,2025-03-10T22:10:44.672212-07:00,1002.1837768554688,10.73912,10739.12 +31300,2025-03-10T22:10:55.401091-07:00,1002.1719360351562,10.728879,10728.879 +31301,2025-03-10T22:11:06.144084-07:00,1002.1749877929688,10.742993,10742.993 +31302,2025-03-10T22:11:16.870092-07:00,1002.1698608398438,10.726008,10726.008 +31303,2025-03-10T22:11:27.611542-07:00,1002.189697265625,10.74145,10741.45 +31304,2025-03-10T22:11:38.344102-07:00,1002.1698608398438,10.73256,10732.56 +31305,2025-03-10T22:11:49.071085-07:00,1002.1847534179688,10.726983,10726.983 +31306,2025-03-10T22:11:59.807092-07:00,1002.1942138671875,10.736007,10736.007 +31307,2025-03-10T22:12:10.536930-07:00,1002.1743774414062,10.729838,10729.838 +31308,2025-03-10T22:12:21.276088-07:00,1002.1610717773438,10.739158,10739.158 +31309,2025-03-10T22:12:32.004091-07:00,1002.1656494140625,10.728003,10728.003 +31310,2025-03-10T22:12:42.737478-07:00,1002.17529296875,10.733387,10733.387 +31311,2025-03-10T22:12:53.473088-07:00,1002.1665649414062,10.73561,10735.61 +31312,2025-03-10T22:13:04.194174-07:00,1002.1617431640625,10.721086,10721.086 +31313,2025-03-10T22:13:14.926639-07:00,1002.1780395507812,10.732465,10732.465 +31314,2025-03-10T22:13:25.660998-07:00,1002.1741943359375,10.734359,10734.359 +31315,2025-03-10T22:13:36.399088-07:00,1002.1693115234375,10.73809,10738.09 +31316,2025-03-10T22:13:47.123541-07:00,1002.158935546875,10.724453,10724.453 +31317,2025-03-10T22:13:57.855113-07:00,1002.135498046875,10.731572,10731.572 +31318,2025-03-10T22:14:08.595086-07:00,1002.150146484375,10.739973,10739.973 +31319,2025-03-10T22:14:19.325091-07:00,1002.1699829101562,10.730005,10730.005 +31320,2025-03-10T22:14:30.054511-07:00,1002.1400146484375,10.72942,10729.42 +31321,2025-03-10T22:14:40.782087-07:00,1002.1162719726562,10.727576,10727.576 +31322,2025-03-10T22:14:51.518089-07:00,1002.1378173828125,10.736002,10736.002 +31323,2025-03-10T22:15:02.246289-07:00,1002.1539306640625,10.7282,10728.2 +31324,2025-03-10T22:15:12.981244-07:00,1002.1472778320312,10.734955,10734.955 +31325,2025-03-10T22:15:23.712300-07:00,1002.1239013671875,10.731056,10731.056 +31326,2025-03-10T22:15:34.445181-07:00,1002.1172485351562,10.732881,10732.881 +31327,2025-03-10T22:15:45.185290-07:00,1002.11376953125,10.740109,10740.109 +31328,2025-03-10T22:15:55.917216-07:00,1002.107177734375,10.731926,10731.926 +31329,2025-03-10T22:16:06.651118-07:00,1002.12841796875,10.733902,10733.902 +31330,2025-03-10T22:16:17.383516-07:00,1002.076904296875,10.732398,10732.398 +31331,2025-03-10T22:16:28.118619-07:00,1002.0719604492188,10.735103,10735.103 +31332,2025-03-10T22:16:38.852597-07:00,1002.0931396484375,10.733978,10733.978 +31333,2025-03-10T22:16:49.586158-07:00,1002.1011962890625,10.733561,10733.561 +31334,2025-03-10T22:17:00.327084-07:00,1002.1307983398438,10.740926,10740.926 +31335,2025-03-10T22:17:11.065277-07:00,1002.0761108398438,10.738193,10738.193 +31336,2025-03-10T22:17:21.795131-07:00,1002.0712280273438,10.729854,10729.854 +31337,2025-03-10T22:17:32.528251-07:00,1002.07568359375,10.73312,10733.12 +31338,2025-03-10T22:17:43.255272-07:00,1002.0770263671875,10.727021,10727.021 +31339,2025-03-10T22:17:53.998498-07:00,1002.0505981445312,10.743226,10743.226 +31340,2025-03-10T22:18:04.729243-07:00,1002.0718994140625,10.730745,10730.745 +31341,2025-03-10T22:18:15.461161-07:00,1002.0750122070312,10.731918,10731.918 +31342,2025-03-10T22:18:26.194272-07:00,1002.084716796875,10.733111,10733.111 +31343,2025-03-10T22:18:36.922122-07:00,1002.0926513671875,10.72785,10727.85 +31344,2025-03-10T22:18:47.655300-07:00,1002.0689697265625,10.733178,10733.178 +31345,2025-03-10T22:18:58.394272-07:00,1002.0543823242188,10.738972,10738.972 +31346,2025-03-10T22:19:09.126823-07:00,1002.0557861328125,10.732551,10732.551 +31347,2025-03-10T22:19:19.860086-07:00,1002.0491333007812,10.733263,10733.263 +31348,2025-03-10T22:19:30.598294-07:00,1002.0470581054688,10.738208,10738.208 +31349,2025-03-10T22:19:41.325307-07:00,1002.0204467773438,10.727013,10727.013 +31350,2025-03-10T22:19:52.063278-07:00,1002.0765380859375,10.737971,10737.971 +31351,2025-03-10T22:20:02.789299-07:00,1002.0567016601562,10.726021,10726.021 +31352,2025-03-10T22:20:13.522340-07:00,1002.087646484375,10.733041,10733.041 +31353,2025-03-10T22:20:24.252085-07:00,1002.05810546875,10.729745,10729.745 +31354,2025-03-10T22:20:34.994247-07:00,1002.0890502929688,10.742162,10742.162 +31355,2025-03-10T22:20:45.725091-07:00,1002.0811157226562,10.730844,10730.844 +31356,2025-03-10T22:20:56.454272-07:00,1002.0789184570312,10.729181,10729.181 +31357,2025-03-10T22:21:07.191272-07:00,1002.1001586914062,10.737,10737.0 +31358,2025-03-10T22:21:17.921377-07:00,1002.088623046875,10.730105,10730.105 +31359,2025-03-10T22:21:28.652307-07:00,1002.0488891601562,10.73093,10730.93 +31360,2025-03-10T22:21:39.385091-07:00,1002.0635986328125,10.732784,10732.784 +31361,2025-03-10T22:21:50.119082-07:00,1002.0614013671875,10.733991,10733.991 +31362,2025-03-10T22:22:00.842275-07:00,1002.0759887695312,10.723193,10723.193 +31363,2025-03-10T22:22:11.576350-07:00,1002.064208984375,10.734075,10734.075 +31364,2025-03-10T22:22:22.315102-07:00,1002.0474243164062,10.738752,10738.752 +31365,2025-03-10T22:22:33.042680-07:00,1002.0518798828125,10.727578,10727.578 +31366,2025-03-10T22:22:43.773284-07:00,1002.06298828125,10.730604,10730.604 +31367,2025-03-10T22:22:54.505091-07:00,1002.0643920898438,10.731807,10731.807 +31368,2025-03-10T22:23:05.237114-07:00,1002.0806884765625,10.732023,10732.023 +31369,2025-03-10T22:23:15.966286-07:00,1002.0865478515625,10.729172,10729.172 +31370,2025-03-10T22:23:26.698453-07:00,1002.0865478515625,10.732167,10732.167 +31371,2025-03-10T22:23:37.436145-07:00,1002.076416015625,10.737692,10737.692 +31372,2025-03-10T22:23:48.169528-07:00,1002.052734375,10.733383,10733.383 +31373,2025-03-10T22:23:58.901448-07:00,1002.0955200195312,10.73192,10731.92 +31374,2025-03-10T22:24:09.636328-07:00,1002.069091796875,10.73488,10734.88 +31375,2025-03-10T22:24:20.380174-07:00,1002.0934448242188,10.743846,10743.846 +31376,2025-03-10T22:24:31.111090-07:00,1002.06689453125,10.730916,10730.916 +31377,2025-03-10T22:24:41.853095-07:00,1002.0498657226562,10.742005,10742.005 +31378,2025-03-10T22:24:52.581491-07:00,1002.0978393554688,10.728396,10728.396 +31379,2025-03-10T22:25:03.319097-07:00,1002.0929565429688,10.737606,10737.606 +31380,2025-03-10T22:25:14.057170-07:00,1002.08935546875,10.738073,10738.073 +31381,2025-03-10T22:25:24.792268-07:00,1002.11865234375,10.735098,10735.098 +31382,2025-03-10T22:25:35.531296-07:00,1002.0872802734375,10.739028,10739.028 +31383,2025-03-10T22:25:46.272523-07:00,1002.1283569335938,10.741227,10741.227 +31384,2025-03-10T22:25:57.004163-07:00,1002.1248168945312,10.73164,10731.64 +31385,2025-03-10T22:26:07.747090-07:00,1002.1231079101562,10.742927,10742.927 +31386,2025-03-10T22:26:18.477178-07:00,1002.1209106445312,10.730088,10730.088 +31387,2025-03-10T22:26:29.209909-07:00,1002.1422119140625,10.732731,10732.731 +31388,2025-03-10T22:26:39.947158-07:00,1002.14892578125,10.737249,10737.249 +31389,2025-03-10T22:26:50.681144-07:00,1002.1306762695312,10.733986,10733.986 +31390,2025-03-10T22:27:01.425255-07:00,1002.1453247070312,10.744111,10744.111 +31391,2025-03-10T22:27:12.159267-07:00,1002.1599731445312,10.734012,10734.012 +31392,2025-03-10T22:27:22.894087-07:00,1002.1453247070312,10.73482,10734.82 +31393,2025-03-10T22:27:33.624085-07:00,1002.1519775390625,10.729998,10729.998 +31394,2025-03-10T22:27:44.362581-07:00,1002.17626953125,10.738496,10738.496 +31395,2025-03-10T22:27:55.098665-07:00,1002.1299438476562,10.736084,10736.084 +31396,2025-03-10T22:28:05.830119-07:00,1002.1578369140625,10.731454,10731.454 +31397,2025-03-10T22:28:16.561293-07:00,1002.1727294921875,10.731174,10731.174 +31398,2025-03-10T22:28:27.294274-07:00,1002.1595458984375,10.732981,10732.981 +31399,2025-03-10T22:28:38.034499-07:00,1002.1660766601562,10.740225,10740.225 +31400,2025-03-10T22:28:48.765085-07:00,1002.1542358398438,10.730586,10730.586 +31401,2025-03-10T22:28:59.503305-07:00,1002.1660766601562,10.73822,10738.22 +31402,2025-03-10T22:29:10.237090-07:00,1002.170654296875,10.733785,10733.785 +31403,2025-03-10T22:29:20.974862-07:00,1002.19189453125,10.737772,10737.772 +31404,2025-03-10T22:29:31.710089-07:00,1002.1490478515625,10.735227,10735.227 +31405,2025-03-10T22:29:42.442372-07:00,1002.1640014648438,10.732283,10732.283 +31406,2025-03-10T22:29:53.176438-07:00,1002.1771850585938,10.734066,10734.066 +31407,2025-03-10T22:30:03.910180-07:00,1002.1622924804688,10.733742,10733.742 +31408,2025-03-10T22:30:14.653089-07:00,1002.170654296875,10.742909,10742.909 +31409,2025-03-10T22:30:25.385462-07:00,1002.1984252929688,10.732373,10732.373 +31410,2025-03-10T22:30:36.111161-07:00,1002.170654296875,10.725699,10725.699 +31411,2025-03-10T22:30:46.857250-07:00,1002.1688842773438,10.746089,10746.089 +31412,2025-03-10T22:30:57.584087-07:00,1002.1904907226562,10.726837,10726.837 +31413,2025-03-10T22:31:08.318298-07:00,1002.1660766601562,10.734211,10734.211 +31414,2025-03-10T22:31:19.046248-07:00,1002.16748046875,10.72795,10727.95 +31415,2025-03-10T22:31:29.783379-07:00,1002.1873168945312,10.737131,10737.131 +31416,2025-03-10T22:31:40.515083-07:00,1002.1776733398438,10.731704,10731.704 +31417,2025-03-10T22:31:51.247154-07:00,1002.2006225585938,10.732071,10732.071 +31418,2025-03-10T22:32:01.983273-07:00,1002.19091796875,10.736119,10736.119 +31419,2025-03-10T22:32:12.722349-07:00,1002.182861328125,10.739076,10739.076 +31420,2025-03-10T22:32:23.458087-07:00,1002.182861328125,10.735738,10735.738 +31421,2025-03-10T22:32:34.191499-07:00,1002.1665649414062,10.733412,10733.412 +31422,2025-03-10T22:32:44.918422-07:00,1002.1961059570312,10.726923,10726.923 +31423,2025-03-10T22:32:55.658089-07:00,1002.214599609375,10.739667,10739.667 +31424,2025-03-10T22:33:06.391087-07:00,1002.1798706054688,10.732998,10732.998 +31425,2025-03-10T22:33:17.128118-07:00,1002.2195434570312,10.737031,10737.031 +31426,2025-03-10T22:33:27.861258-07:00,1002.214599609375,10.73314,10733.14 +31427,2025-03-10T22:33:38.596226-07:00,1002.2129516601562,10.734968,10734.968 +31428,2025-03-10T22:33:49.330312-07:00,1002.2129516601562,10.734086,10734.086 +31429,2025-03-10T22:34:00.063300-07:00,1002.2129516601562,10.732988,10732.988 +31430,2025-03-10T22:34:10.790295-07:00,1002.2379760742188,10.726995,10726.995 +31431,2025-03-10T22:34:21.528249-07:00,1002.228271484375,10.737954,10737.954 +31432,2025-03-10T22:34:32.262301-07:00,1002.2261962890625,10.734052,10734.052 +31433,2025-03-10T22:34:42.995521-07:00,1002.2366333007812,10.73322,10733.22 +31434,2025-03-10T22:34:53.733916-07:00,1002.2181396484375,10.738395,10738.395 +31435,2025-03-10T22:35:04.470091-07:00,1002.201904296875,10.736175,10736.175 +31436,2025-03-10T22:35:15.196263-07:00,1002.2115478515625,10.726172,10726.172 +31437,2025-03-10T22:35:25.925411-07:00,1002.2167358398438,10.729148,10729.148 +31438,2025-03-10T22:35:36.657090-07:00,1002.2379760742188,10.731679,10731.679 +31439,2025-03-10T22:35:47.389311-07:00,1002.2393798828125,10.732221,10732.221 +31440,2025-03-10T22:35:58.121300-07:00,1002.22998046875,10.731989,10731.989 +31441,2025-03-10T22:36:08.860416-07:00,1002.2234497070312,10.739116,10739.116 +31442,2025-03-10T22:36:19.585080-07:00,1002.2446899414062,10.724664,10724.664 +31443,2025-03-10T22:36:30.329096-07:00,1002.2247924804688,10.744016,10744.016 +31444,2025-03-10T22:36:41.061400-07:00,1002.2393798828125,10.732304,10732.304 +31445,2025-03-10T22:36:51.795084-07:00,1002.2659301757812,10.733684,10733.684 +31446,2025-03-10T22:37:02.530084-07:00,1002.2379760742188,10.735,10735.0 +31447,2025-03-10T22:37:13.263084-07:00,1002.2313842773438,10.733,10733.0 +31448,2025-03-10T22:37:23.994784-07:00,1002.2181396484375,10.7317,10731.7 +31449,2025-03-10T22:37:34.725088-07:00,1002.2212524414062,10.730304,10730.304 +31450,2025-03-10T22:37:45.461203-07:00,1002.2345581054688,10.736115,10736.115 +31451,2025-03-10T22:37:56.200282-07:00,1002.2609252929688,10.739079,10739.079 +31452,2025-03-10T22:38:06.930087-07:00,1002.2195434570312,10.729805,10729.805 +31453,2025-03-10T22:38:17.662087-07:00,1002.243896484375,10.732,10732.0 +31454,2025-03-10T22:38:28.395087-07:00,1002.214599609375,10.733,10733.0 +31455,2025-03-10T22:38:39.129462-07:00,1002.2306518554688,10.734375,10734.375 +31456,2025-03-10T22:38:49.866311-07:00,1002.22265625,10.736849,10736.849 +31457,2025-03-10T22:39:00.598377-07:00,1002.2372436523438,10.732066,10732.066 +31458,2025-03-10T22:39:11.327297-07:00,1002.23583984375,10.72892,10728.92 +31459,2025-03-10T22:39:22.057195-07:00,1002.2637329101562,10.729898,10729.898 +31460,2025-03-10T22:39:32.797240-07:00,1002.243896484375,10.740045,10740.045 +31461,2025-03-10T22:39:43.525091-07:00,1002.25048828125,10.727851,10727.851 +31462,2025-03-10T22:39:54.262267-07:00,1002.2372436523438,10.737176,10737.176 +31463,2025-03-10T22:40:04.992087-07:00,1002.252197265625,10.72982,10729.82 +31464,2025-03-10T22:40:15.736685-07:00,1002.257080078125,10.744598,10744.598 +31465,2025-03-10T22:40:26.459279-07:00,1002.2402954101562,10.722594,10722.594 +31466,2025-03-10T22:40:37.193648-07:00,1002.2469482421875,10.734369,10734.369 +31467,2025-03-10T22:40:47.929082-07:00,1002.2588500976562,10.735434,10735.434 +31468,2025-03-10T22:40:58.656085-07:00,1002.2323608398438,10.727003,10727.003 +31469,2025-03-10T22:41:09.390495-07:00,1002.2388916015625,10.73441,10734.41 +31470,2025-03-10T22:41:20.125089-07:00,1002.22265625,10.734594,10734.594 +31471,2025-03-10T22:41:30.861295-07:00,1002.252197265625,10.736206,10736.206 +31472,2025-03-10T22:41:41.586708-07:00,1002.2402954101562,10.725413,10725.413 +31473,2025-03-10T22:41:52.314245-07:00,1002.2173461914062,10.727537,10727.537 +31474,2025-03-10T22:42:03.056160-07:00,1002.2323608398438,10.741915,10741.915 +31475,2025-03-10T22:42:24.517478-07:00,1002.22265625,21.461318,21461.318 +31476,2025-03-10T22:42:35.249086-07:00,1002.2093505859375,10.731608,10731.608 +31477,2025-03-10T22:42:45.981093-07:00,1002.1815795898438,10.732007,10732.007 +31478,2025-03-10T22:42:56.708306-07:00,1002.201416015625,10.727213,10727.213 +31479,2025-03-10T22:43:07.443123-07:00,1002.1947631835938,10.734817,10734.817 +31480,2025-03-10T22:43:18.176294-07:00,1002.214599609375,10.733171,10733.171 +31481,2025-03-10T22:43:28.914493-07:00,1002.23583984375,10.738199,10738.199 +31482,2025-03-10T22:43:39.639111-07:00,1002.227783203125,10.724618,10724.618 +31483,2025-03-10T22:43:50.372090-07:00,1002.214599609375,10.732979,10732.979 +31484,2025-03-10T22:44:01.111185-07:00,1002.1930541992188,10.739095,10739.095 +31485,2025-03-10T22:44:11.841375-07:00,1002.2079467773438,10.73019,10730.19 +31486,2025-03-10T22:44:22.571156-07:00,1002.2115478515625,10.729781,10729.781 +31487,2025-03-10T22:44:33.310117-07:00,1002.1798706054688,10.738961,10738.961 +31488,2025-03-10T22:44:44.035255-07:00,1002.1651611328125,10.725138,10725.138 +31489,2025-03-10T22:44:54.775193-07:00,1002.1505737304688,10.739938,10739.938 +31490,2025-03-10T22:45:05.505236-07:00,1002.1532592773438,10.730043,10730.043 +31491,2025-03-10T22:45:16.230320-07:00,1002.1718139648438,10.725084,10725.084 +31492,2025-03-10T22:45:26.969270-07:00,1002.1836547851562,10.73895,10738.95 +31493,2025-03-10T22:45:37.693139-07:00,1002.1968994140625,10.723869,10723.869 +31494,2025-03-10T22:45:48.423325-07:00,1002.19970703125,10.730186,10730.186 +31495,2025-03-10T22:45:59.163184-07:00,1002.177001953125,10.739859,10739.859 +31496,2025-03-10T22:46:09.889090-07:00,1002.1968994140625,10.725906,10725.906 +31497,2025-03-10T22:46:20.623280-07:00,1002.1983032226562,10.73419,10734.19 +31498,2025-03-10T22:46:31.353282-07:00,1002.1885986328125,10.730002,10730.002 +31499,2025-03-10T22:46:42.084295-07:00,1002.1968994140625,10.731013,10731.013 +31500,2025-03-10T22:46:52.818087-07:00,1002.17529296875,10.733792,10733.792 +31501,2025-03-10T22:47:03.548289-07:00,1002.1917114257812,10.730202,10730.202 +31502,2025-03-10T22:47:14.283115-07:00,1002.17529296875,10.734826,10734.826 +31503,2025-03-10T22:47:25.007276-07:00,1002.1806030273438,10.724161,10724.161 +31504,2025-03-10T22:47:35.740524-07:00,1002.1836547851562,10.733248,10733.248 +31505,2025-03-10T22:47:46.477086-07:00,1002.1951293945312,10.736562,10736.562 +31506,2025-03-10T22:47:57.206168-07:00,1002.1990356445312,10.729082,10729.082 +31507,2025-03-10T22:48:07.940123-07:00,1002.20703125,10.733955,10733.955 +31508,2025-03-10T22:48:18.664295-07:00,1002.20703125,10.724172,10724.172 +31509,2025-03-10T22:48:29.402121-07:00,1002.2268676757812,10.737826,10737.826 +31510,2025-03-10T22:48:40.130464-07:00,1002.215087890625,10.728343,10728.343 +31511,2025-03-10T22:48:50.858092-07:00,1002.20703125,10.727628,10727.628 +31512,2025-03-10T22:49:01.587088-07:00,1002.2268676757812,10.728996,10728.996 +31513,2025-03-10T22:49:12.323094-07:00,1002.2203369140625,10.736006,10736.006 +31514,2025-03-10T22:49:23.047389-07:00,1002.1924438476562,10.724295,10724.295 +31515,2025-03-10T22:49:33.779099-07:00,1002.232177734375,10.73171,10731.71 +31516,2025-03-10T22:49:44.513324-07:00,1002.2255249023438,10.734225,10734.225 +31517,2025-03-10T22:49:55.245855-07:00,1002.23876953125,10.732531,10732.531 +31518,2025-03-10T22:50:05.974248-07:00,1002.2335815429688,10.728393,10728.393 +31519,2025-03-10T22:50:16.701895-07:00,1002.232177734375,10.727647,10727.647 +31520,2025-03-10T22:50:27.431112-07:00,1002.232177734375,10.729217,10729.217 +31521,2025-03-10T22:50:38.167232-07:00,1002.23876953125,10.73612,10736.12 +31522,2025-03-10T22:50:48.893336-07:00,1002.2798461914062,10.726104,10726.104 +31523,2025-03-10T22:50:59.625213-07:00,1002.2732543945312,10.731877,10731.877 +31524,2025-03-10T22:51:10.358293-07:00,1002.25341796875,10.73308,10733.08 +31525,2025-03-10T22:51:21.088167-07:00,1002.23876953125,10.729874,10729.874 +31526,2025-03-10T22:51:31.814115-07:00,1002.23876953125,10.725948,10725.948 +31527,2025-03-10T22:51:42.544438-07:00,1002.2785034179688,10.730323,10730.323 +31528,2025-03-10T22:51:53.275137-07:00,1002.2653198242188,10.730699,10730.699 +31529,2025-03-10T22:52:04.008825-07:00,1002.263916015625,10.733688,10733.688 +31530,2025-03-10T22:52:14.740088-07:00,1002.2785034179688,10.731263,10731.263 +31531,2025-03-10T22:52:25.473085-07:00,1002.29833984375,10.732997,10732.997 +31532,2025-03-10T22:52:36.201861-07:00,1002.2704467773438,10.728776,10728.776 +31533,2025-03-10T22:52:46.934089-07:00,1002.2837524414062,10.732228,10732.228 +31534,2025-03-10T22:52:57.656774-07:00,1002.2754516601562,10.722685,10722.685 +31535,2025-03-10T22:53:08.398276-07:00,1002.3085327148438,10.741502,10741.502 +31536,2025-03-10T22:53:19.125086-07:00,1002.3085327148438,10.72681,10726.81 +31537,2025-03-10T22:53:29.858091-07:00,1002.3004760742188,10.733005,10733.005 +31538,2025-03-10T22:53:40.616082-07:00,1002.2952880859375,10.757991,10757.991 +31539,2025-03-10T22:53:51.350038-07:00,1002.2872924804688,10.733956,10733.956 +31540,2025-03-10T22:54:02.086899-07:00,1002.2872924804688,10.736861,10736.861 +31541,2025-03-10T22:54:12.820256-07:00,1002.315185546875,10.733357,10733.357 +31542,2025-03-10T22:54:23.546829-07:00,1002.3270263671875,10.726573,10726.573 +31543,2025-03-10T22:54:34.283029-07:00,1002.3270263671875,10.7362,10736.2 +31544,2025-03-10T22:54:45.005508-07:00,1002.3256225585938,10.722479,10722.479 +31545,2025-03-10T22:54:55.730829-07:00,1002.2974243164062,10.725321,10725.321 +31546,2025-03-10T22:55:06.459015-07:00,1002.3402099609375,10.728186,10728.186 +31547,2025-03-10T22:55:17.189644-07:00,1002.3189697265625,10.730629,10730.629 +31548,2025-03-10T22:55:27.927893-07:00,1002.2828369140625,10.738249,10738.249 +31549,2025-03-10T22:55:38.656133-07:00,1002.2991333007812,10.72824,10728.24 +31550,2025-03-10T22:55:49.390066-07:00,1002.3040771484375,10.733933,10733.933 +31551,2025-03-10T22:56:00.116941-07:00,1002.3106079101562,10.726875,10726.875 +31552,2025-03-10T22:56:10.844028-07:00,1002.322509765625,10.727087,10727.087 +31553,2025-03-10T22:56:21.579100-07:00,1002.299560546875,10.735072,10735.072 +31554,2025-03-10T22:56:32.304833-07:00,1002.3326416015625,10.725733,10725.733 +31555,2025-03-10T22:56:43.031974-07:00,1002.3048706054688,10.727141,10727.141 +31556,2025-03-10T22:56:53.764013-07:00,1002.3212280273438,10.732039,10732.039 +31557,2025-03-10T22:57:04.500826-07:00,1002.3132934570312,10.736813,10736.813 +31558,2025-03-10T22:57:15.235884-07:00,1002.3170166015625,10.735058,10735.058 +31559,2025-03-10T22:57:25.965495-07:00,1002.3206176757812,10.729611,10729.611 +31560,2025-03-10T22:57:36.703009-07:00,1002.33251953125,10.737514,10737.514 +31561,2025-03-10T22:57:47.432833-07:00,1002.3214111328125,10.729824,10729.824 +31562,2025-03-10T22:57:58.162895-07:00,1002.338134765625,10.730062,10730.062 +31563,2025-03-10T22:58:08.896000-07:00,1002.3040771484375,10.733105,10733.105 +31564,2025-03-10T22:58:19.626040-07:00,1002.3312377929688,10.73004,10730.04 +31565,2025-03-10T22:58:30.353030-07:00,1002.315673828125,10.72699,10726.99 +31566,2025-03-10T22:58:41.083811-07:00,1002.341552734375,10.730781,10730.781 +31567,2025-03-10T22:58:51.818016-07:00,1002.3523559570312,10.734205,10734.205 +31568,2025-03-10T22:59:02.549832-07:00,1002.3580322265625,10.731816,10731.816 +31569,2025-03-10T22:59:13.283241-07:00,1002.3825073242188,10.733409,10733.409 +31570,2025-03-10T22:59:24.009861-07:00,1002.3359375,10.72662,10726.62 +31571,2025-03-10T22:59:34.740920-07:00,1002.37109375,10.731059,10731.059 +31572,2025-03-10T22:59:45.476894-07:00,1002.3917236328125,10.735974,10735.974 +31573,2025-03-10T22:59:56.214221-07:00,1002.4025268554688,10.737327,10737.327 +31574,2025-03-10T23:00:06.935832-07:00,1002.3831176757812,10.721611,10721.611 +31575,2025-03-10T23:00:17.669834-07:00,1002.422119140625,10.734002,10734.002 +31576,2025-03-10T23:00:28.403144-07:00,1002.36328125,10.73331,10733.31 +31577,2025-03-10T23:00:39.125043-07:00,1002.40478515625,10.721899,10721.899 +31578,2025-03-10T23:00:49.855007-07:00,1002.3839111328125,10.729964,10729.964 +31579,2025-03-10T23:01:00.585907-07:00,1002.404541015625,10.7309,10730.9 +31580,2025-03-10T23:01:11.316834-07:00,1002.380126953125,10.730927,10730.927 +31581,2025-03-10T23:01:22.048035-07:00,1002.3954467773438,10.731201,10731.201 +31582,2025-03-10T23:01:32.777219-07:00,1002.3909301757812,10.729184,10729.184 +31583,2025-03-10T23:01:43.513860-07:00,1002.399658203125,10.736641,10736.641 +31584,2025-03-10T23:01:54.246234-07:00,1002.4202270507812,10.732374,10732.374 +31585,2025-03-10T23:02:04.976226-07:00,1002.3972778320312,10.729992,10729.992 +31586,2025-03-10T23:02:15.700824-07:00,1002.4157104492188,10.724598,10724.598 +31587,2025-03-10T23:02:26.435830-07:00,1002.3993530273438,10.735006,10735.006 +31588,2025-03-10T23:02:37.166861-07:00,1002.3965454101562,10.731031,10731.031 +31589,2025-03-10T23:02:47.902122-07:00,1002.4031982421875,10.735261,10735.261 +31590,2025-03-10T23:02:58.639833-07:00,1002.4081420898438,10.737711,10737.711 +31591,2025-03-10T23:03:09.366000-07:00,1002.4053344726562,10.726167,10726.167 +31592,2025-03-10T23:03:20.091829-07:00,1002.4039306640625,10.725829,10725.829 +31593,2025-03-10T23:03:30.823832-07:00,1002.384033203125,10.732003,10732.003 +31594,2025-03-10T23:03:41.556239-07:00,1002.4104614257812,10.732407,10732.407 +31595,2025-03-10T23:03:52.284892-07:00,1002.390625,10.728653,10728.653 +31596,2025-03-10T23:04:03.013038-07:00,1002.3955688476562,10.728146,10728.146 +31597,2025-03-10T23:04:13.738103-07:00,1002.4352416992188,10.725065,10725.065 +31598,2025-03-10T23:04:24.473960-07:00,1002.4021606445312,10.735857,10735.857 +31599,2025-03-10T23:04:35.201866-07:00,1002.38232421875,10.727906,10727.906 +31600,2025-03-10T23:04:45.939018-07:00,1002.4087524414062,10.737152,10737.152 +31601,2025-03-10T23:04:56.661831-07:00,1002.388916015625,10.722813,10722.813 +31602,2025-03-10T23:05:07.402859-07:00,1002.375732421875,10.741028,10741.028 +31603,2025-03-10T23:05:18.128020-07:00,1002.390625,10.725161,10725.161 +31604,2025-03-10T23:05:28.864029-07:00,1002.4039306640625,10.736009,10736.009 +31605,2025-03-10T23:05:39.582855-07:00,1002.3972778320312,10.718826,10718.826 +31606,2025-03-10T23:05:50.319062-07:00,1002.3920288085938,10.736207,10736.207 +31607,2025-03-10T23:06:01.049259-07:00,1002.398681640625,10.730197,10730.197 +31608,2025-03-10T23:06:11.791889-07:00,1002.419921875,10.74263,10742.63 +31609,2025-03-10T23:06:22.523012-07:00,1002.4098510742188,10.731123,10731.123 +31610,2025-03-10T23:06:33.249830-07:00,1002.4243774414062,10.726818,10726.818 +31611,2025-03-10T23:06:43.992827-07:00,1002.368408203125,10.742997,10742.997 +31612,2025-03-10T23:06:54.717860-07:00,1002.39794921875,10.725033,10725.033 +31613,2025-03-10T23:07:05.458007-07:00,1002.4157104492188,10.740147,10740.147 +31614,2025-03-10T23:07:16.180830-07:00,1002.443603515625,10.722823,10722.823 +31615,2025-03-10T23:07:26.911012-07:00,1002.4104614257812,10.730182,10730.182 +31616,2025-03-10T23:07:37.646344-07:00,1002.41357421875,10.735332,10735.332 +31617,2025-03-10T23:07:48.387933-07:00,1002.4070434570312,10.741589,10741.589 +31618,2025-03-10T23:07:59.112895-07:00,1002.3951416015625,10.724962,10724.962 +31619,2025-03-10T23:08:09.842862-07:00,1002.4365844726562,10.729967,10729.967 +31620,2025-03-10T23:08:20.576659-07:00,1002.4490356445312,10.733797,10733.797 +31621,2025-03-10T23:08:31.313635-07:00,1002.4570922851562,10.736976,10736.976 +31622,2025-03-10T23:08:42.054046-07:00,1002.4386596679688,10.740411,10740.411 +31623,2025-03-10T23:08:52.789064-07:00,1002.447021484375,10.735018,10735.018 +31624,2025-03-10T23:09:03.516647-07:00,1002.421875,10.727583,10727.583 +31625,2025-03-10T23:09:14.250824-07:00,1002.4713134765625,10.734177,10734.177 +31626,2025-03-10T23:09:24.984828-07:00,1002.4595336914062,10.734004,10734.004 +31627,2025-03-10T23:09:35.715973-07:00,1002.475830078125,10.731145,10731.145 +31628,2025-03-10T23:09:46.448831-07:00,1002.46923828125,10.732858,10732.858 +31629,2025-03-10T23:09:57.183829-07:00,1002.4508056640625,10.734998,10734.998 +31630,2025-03-10T23:10:07.922946-07:00,1002.4190673828125,10.739117,10739.117 +31631,2025-03-10T23:10:18.659387-07:00,1002.432373046875,10.736441,10736.441 +31632,2025-03-10T23:10:29.388835-07:00,1002.4354858398438,10.729448,10729.448 +31633,2025-03-10T23:10:40.127824-07:00,1002.4531860351562,10.738989,10738.989 +31634,2025-03-10T23:10:50.855834-07:00,1002.420166015625,10.72801,10728.01 +31635,2025-03-10T23:11:01.591241-07:00,1002.4494018554688,10.735407,10735.407 +31636,2025-03-10T23:11:12.318890-07:00,1002.4511108398438,10.727649,10727.649 +31637,2025-03-10T23:11:23.054914-07:00,1002.4625244140625,10.736024,10736.024 +31638,2025-03-10T23:11:33.780224-07:00,1002.427734375,10.72531,10725.31 +31639,2025-03-10T23:11:44.520989-07:00,1002.4375,10.740765,10740.765 +31640,2025-03-10T23:11:55.244831-07:00,1002.4472045898438,10.723842,10723.842 +31641,2025-03-10T23:12:05.981864-07:00,1002.4154663085938,10.737033,10737.033 +31642,2025-03-10T23:12:16.723013-07:00,1002.422119140625,10.741149,10741.149 +31643,2025-03-10T23:12:27.450827-07:00,1002.4252319335938,10.727814,10727.814 +31644,2025-03-10T23:12:38.187037-07:00,1002.4185791015625,10.73621,10736.21 +31645,2025-03-10T23:12:48.909794-07:00,1002.400146484375,10.722757,10722.757 +31646,2025-03-10T23:12:59.651826-07:00,1002.36328125,10.742032,10742.032 +31647,2025-03-10T23:13:10.379018-07:00,1002.37158203125,10.727192,10727.192 +31648,2025-03-10T23:13:21.116926-07:00,1002.3993530273438,10.737908,10737.908 +31649,2025-03-10T23:13:31.842853-07:00,1002.3677368164062,10.725927,10725.927 +31650,2025-03-10T23:13:42.583921-07:00,1002.3760986328125,10.741068,10741.068 +31651,2025-03-10T23:13:53.314928-07:00,1002.3721923828125,10.731007,10731.007 +31652,2025-03-10T23:14:04.044020-07:00,1002.3408813476562,10.729092,10729.092 +31653,2025-03-10T23:14:14.773361-07:00,1002.3687744140625,10.729341,10729.341 +31654,2025-03-10T23:14:25.516829-07:00,1002.3798217773438,10.743468,10743.468 +31655,2025-03-10T23:14:36.247827-07:00,1002.3533325195312,10.730998,10730.998 +31656,2025-03-10T23:14:46.985966-07:00,1002.3613891601562,10.738139,10738.139 +31657,2025-03-10T23:14:57.710831-07:00,1002.341552734375,10.724865,10724.865 +31658,2025-03-10T23:15:08.450047-07:00,1002.3512573242188,10.739216,10739.216 +31659,2025-03-10T23:15:19.184859-07:00,1002.3460083007812,10.734812,10734.812 +31660,2025-03-10T23:15:29.918221-07:00,1002.334228515625,10.733362,10733.362 +31661,2025-03-10T23:15:40.650830-07:00,1002.3439331054688,10.732609,10732.609 +31662,2025-03-10T23:15:51.392201-07:00,1002.31884765625,10.741371,10741.371 +31663,2025-03-10T23:16:02.116984-07:00,1002.3139038085938,10.724783,10724.783 +31664,2025-03-10T23:16:23.595965-07:00,1002.303466796875,21.478981,21478.981 +31665,2025-03-10T23:16:34.332127-07:00,1002.3212280273438,10.736162,10736.162 +31666,2025-03-10T23:16:45.065047-07:00,1002.2748413085938,10.73292,10732.92 +31667,2025-03-10T23:16:55.809219-07:00,1002.3110961914062,10.744172,10744.172 +31668,2025-03-10T23:17:06.536830-07:00,1002.3110961914062,10.727611,10727.611 +31669,2025-03-10T23:17:17.274832-07:00,1002.291259765625,10.738002,10738.002 +31670,2025-03-10T23:17:28.013831-07:00,1002.2609252929688,10.738999,10738.999 +31671,2025-03-10T23:17:38.742025-07:00,1002.227783203125,10.728194,10728.194 +31672,2025-03-10T23:17:49.477889-07:00,1002.2295532226562,10.735864,10735.864 +31673,2025-03-10T23:18:00.203830-07:00,1002.25390625,10.725941,10725.941 +31674,2025-03-10T23:18:10.939073-07:00,1002.200927734375,10.735243,10735.243 +31675,2025-03-10T23:18:21.677004-07:00,1002.2301635742188,10.737931,10737.931 +31676,2025-03-10T23:18:32.403035-07:00,1002.2478637695312,10.726031,10726.031 +31677,2025-03-10T23:18:43.133583-07:00,1002.2112426757812,10.730548,10730.548 +31678,2025-03-10T23:18:53.864679-07:00,1002.235595703125,10.731096,10731.096 +31679,2025-03-10T23:19:04.599830-07:00,1002.2251586914062,10.735151,10735.151 +31680,2025-03-10T23:19:15.333833-07:00,1002.2098388671875,10.734003,10734.003 +31681,2025-03-10T23:19:26.063025-07:00,1002.212890625,10.729192,10729.192 +31682,2025-03-10T23:19:36.806010-07:00,1002.1895141601562,10.742985,10742.985 +31683,2025-03-10T23:19:47.533983-07:00,1002.1922607421875,10.727973,10727.973 +31684,2025-03-10T23:19:58.266827-07:00,1002.1821899414062,10.732844,10732.844 +31685,2025-03-10T23:20:08.999242-07:00,1002.2064819335938,10.732415,10732.415 +31686,2025-03-10T23:20:19.725893-07:00,1002.196044921875,10.726651,10726.651 +31687,2025-03-10T23:20:30.467044-07:00,1002.1646118164062,10.741151,10741.151 +31688,2025-03-10T23:20:41.193019-07:00,1002.1607666015625,10.725975,10725.975 +31689,2025-03-10T23:20:51.930940-07:00,1002.1690673828125,10.737921,10737.921 +31690,2025-03-10T23:21:02.657826-07:00,1002.13525390625,10.726886,10726.886 +31691,2025-03-10T23:21:13.395827-07:00,1002.156494140625,10.738001,10738.001 +31692,2025-03-10T23:21:24.127999-07:00,1002.1383056640625,10.732172,10732.172 +31693,2025-03-10T23:21:34.857017-07:00,1002.162353515625,10.729018,10729.018 +31694,2025-03-10T23:21:45.592038-07:00,1002.1375732421875,10.735021,10735.021 +31695,2025-03-10T23:21:56.330039-07:00,1002.1556396484375,10.738001,10738.001 +31696,2025-03-10T23:22:07.064034-07:00,1002.1437377929688,10.733995,10733.995 +31697,2025-03-10T23:22:17.796829-07:00,1002.1318969726562,10.732795,10732.795 +31698,2025-03-10T23:22:28.532832-07:00,1002.1336059570312,10.736003,10736.003 +31699,2025-03-10T23:22:39.263071-07:00,1002.1231079101562,10.730239,10730.239 +31700,2025-03-10T23:22:49.997858-07:00,1002.1381225585938,10.734787,10734.787 +31701,2025-03-10T23:23:00.725985-07:00,1002.109130859375,10.728127,10728.127 +31702,2025-03-10T23:23:11.467838-07:00,1002.1422119140625,10.741853,10741.853 +31703,2025-03-10T23:23:22.197016-07:00,1002.104248046875,10.729178,10729.178 +31704,2025-03-10T23:23:32.925829-07:00,1002.1121826171875,10.728813,10728.813 +31705,2025-03-10T23:23:43.668054-07:00,1002.1202392578125,10.742225,10742.225 +31706,2025-03-10T23:23:54.402894-07:00,1002.110107421875,10.73484,10734.84 +31707,2025-03-10T23:24:05.138206-07:00,1002.1528930664062,10.735312,10735.312 +31708,2025-03-10T23:24:15.868887-07:00,1002.1397094726562,10.730681,10730.681 +31709,2025-03-10T23:24:26.603834-07:00,1002.0999145507812,10.734947,10734.947 +31710,2025-03-10T23:24:37.328026-07:00,1002.1375122070312,10.724192,10724.192 +31711,2025-03-10T23:24:48.061363-07:00,1002.115966796875,10.733337,10733.337 +31712,2025-03-10T23:24:58.803904-07:00,1002.1486206054688,10.742541,10742.541 +31713,2025-03-10T23:25:09.537833-07:00,1002.1402587890625,10.733929,10733.929 +31714,2025-03-10T23:25:20.269222-07:00,1002.1220092773438,10.731389,10731.389 +31715,2025-03-10T23:25:31.005275-07:00,1002.1419677734375,10.736053,10736.053 +31716,2025-03-10T23:25:41.728880-07:00,1002.0939331054688,10.723605,10723.605 +31717,2025-03-10T23:25:52.473566-07:00,1002.1486206054688,10.744686,10744.686 +31718,2025-03-10T23:26:03.201849-07:00,1002.09912109375,10.728283,10728.283 +31719,2025-03-10T23:26:13.943831-07:00,1002.120361328125,10.741982,10741.982 +31720,2025-03-10T23:26:24.671855-07:00,1002.11376953125,10.728024,10728.024 +31721,2025-03-10T23:26:35.403852-07:00,1002.115478515625,10.731997,10731.997 +31722,2025-03-10T23:26:46.138075-07:00,1002.0872802734375,10.734223,10734.223 +31723,2025-03-10T23:26:56.877827-07:00,1002.1270141601562,10.739752,10739.752 +31724,2025-03-10T23:27:07.609829-07:00,1002.115478515625,10.732002,10732.002 +31725,2025-03-10T23:27:18.337221-07:00,1002.1189575195312,10.727392,10727.392 +31726,2025-03-10T23:27:29.070067-07:00,1002.0845336914062,10.732846,10732.846 +31727,2025-03-10T23:27:39.812123-07:00,1002.0978393554688,10.742056,10742.056 +31728,2025-03-10T23:27:50.537832-07:00,1002.08935546875,10.725709,10725.709 +31729,2025-03-10T23:28:01.269054-07:00,1002.0867309570312,10.731222,10731.222 +31730,2025-03-10T23:28:11.999829-07:00,1002.0452270507812,10.730775,10730.775 +31731,2025-03-10T23:28:22.734060-07:00,1002.0320434570312,10.734231,10734.231 +31732,2025-03-10T23:28:33.462701-07:00,1002.0703125,10.728641,10728.641 +31733,2025-03-10T23:28:44.198048-07:00,1002.0606079101562,10.735347,10735.347 +31734,2025-03-10T23:28:54.931979-07:00,1002.04736328125,10.733931,10733.931 +31735,2025-03-10T23:29:05.665857-07:00,1002.0393676757812,10.733878,10733.878 +31736,2025-03-10T23:29:16.399892-07:00,1002.0460205078125,10.734035,10734.035 +31737,2025-03-10T23:29:27.130827-07:00,1002.04296875,10.730935,10730.935 +31738,2025-03-10T23:29:37.860037-07:00,1002.0362548828125,10.72921,10729.21 +31739,2025-03-10T23:29:48.597022-07:00,1002.0123291015625,10.736985,10736.985 +31740,2025-03-10T23:29:59.326829-07:00,1002.0466918945312,10.729807,10729.807 +31741,2025-03-10T23:30:10.063072-07:00,1002.0238037109375,10.736243,10736.243 +31742,2025-03-10T23:30:20.794845-07:00,1002.0172119140625,10.731773,10731.773 +31743,2025-03-10T23:30:31.528028-07:00,1002.029052734375,10.733183,10733.183 +31744,2025-03-10T23:30:42.265861-07:00,1002.0127563476562,10.737833,10737.833 +31745,2025-03-10T23:30:52.998997-07:00,1002.010009765625,10.733136,10733.136 +31746,2025-03-10T23:31:03.727016-07:00,1001.9901733398438,10.728019,10728.019 +31747,2025-03-10T23:31:14.456903-07:00,1002.0298461914062,10.729887,10729.887 +31748,2025-03-10T23:31:25.194028-07:00,1002.0134887695312,10.737125,10737.125 +31749,2025-03-10T23:31:35.921015-07:00,1002.0016479492188,10.726987,10726.987 +31750,2025-03-10T23:31:46.655048-07:00,1001.9935913085938,10.734033,10734.033 +31751,2025-03-10T23:31:57.381124-07:00,1002.0184326171875,10.726076,10726.076 +31752,2025-03-10T23:32:08.116437-07:00,1002.0267333984375,10.735313,10735.313 +31753,2025-03-10T23:32:18.853387-07:00,1002.0100708007812,10.73695,10736.95 +31754,2025-03-10T23:32:29.574880-07:00,1002.0087280273438,10.721493,10721.493 +31755,2025-03-10T23:32:40.312126-07:00,1001.9940795898438,10.737246,10737.246 +31756,2025-03-10T23:32:51.050052-07:00,1002.0087280273438,10.737926,10737.926 +31757,2025-03-10T23:33:01.774622-07:00,1002.0205688476562,10.72457,10724.57 +31758,2025-03-10T23:33:12.510830-07:00,1001.9993896484375,10.736208,10736.208 +31759,2025-03-10T23:33:23.237035-07:00,1002.0059204101562,10.726205,10726.205 +31760,2025-03-10T23:33:33.970033-07:00,1002.0205688476562,10.732998,10732.998 +31761,2025-03-10T23:33:44.700836-07:00,1001.9808349609375,10.730803,10730.803 +31762,2025-03-10T23:33:55.433161-07:00,1001.9728393554688,10.732325,10732.325 +31763,2025-03-10T23:34:06.166905-07:00,1001.99267578125,10.733744,10733.744 +31764,2025-03-10T23:34:16.889011-07:00,1002.0042114257812,10.722106,10722.106 +31765,2025-03-10T23:34:27.622023-07:00,1002.0042114257812,10.733012,10733.012 +31766,2025-03-10T23:34:38.358850-07:00,1002.0108642578125,10.736827,10736.827 +31767,2025-03-10T23:34:49.086046-07:00,1002.0042114257812,10.727196,10727.196 +31768,2025-03-10T23:34:59.821832-07:00,1002.0175170898438,10.735786,10735.786 +31769,2025-03-10T23:35:10.549979-07:00,1002.0094604492188,10.728147,10728.147 +31770,2025-03-10T23:35:21.286831-07:00,1002.0226440429688,10.736852,10736.852 +31771,2025-03-10T23:35:32.019037-07:00,1002.0328369140625,10.732206,10732.206 +31772,2025-03-10T23:35:42.745039-07:00,1002.0081176757812,10.726002,10726.002 +31773,2025-03-10T23:35:53.479321-07:00,1002.012939453125,10.734282,10734.282 +31774,2025-03-10T23:36:04.218832-07:00,1002.0064086914062,10.739511,10739.511 +31775,2025-03-10T23:36:14.948977-07:00,1001.9970092773438,10.730145,10730.145 +31776,2025-03-10T23:36:25.676828-07:00,1002.008544921875,10.727851,10727.851 +31777,2025-03-10T23:36:36.407118-07:00,1002.0018920898438,10.73029,10730.29 +31778,2025-03-10T23:36:47.143029-07:00,1002.0367431640625,10.735911,10735.911 +31779,2025-03-10T23:36:57.886012-07:00,1002.00048828125,10.742983,10742.983 +31780,2025-03-10T23:37:08.620829-07:00,1002.0072021484375,10.734817,10734.817 +31781,2025-03-10T23:37:19.353064-07:00,1002.008544921875,10.732235,10732.235 +31782,2025-03-10T23:37:30.084831-07:00,1001.993896484375,10.731767,10731.767 +31783,2025-03-10T23:37:40.829135-07:00,1001.99609375,10.744304,10744.304 +31784,2025-03-10T23:37:51.555009-07:00,1002.0189819335938,10.725874,10725.874 +31785,2025-03-10T23:38:02.298042-07:00,1001.9991455078125,10.743033,10743.033 +31786,2025-03-10T23:38:13.031833-07:00,1002.0106201171875,10.733791,10733.791 +31787,2025-03-10T23:38:23.768272-07:00,1002.02392578125,10.736439,10736.439 +31788,2025-03-10T23:38:34.491829-07:00,1001.9946899414062,10.723557,10723.557 +31789,2025-03-10T23:38:45.220834-07:00,1002.0225219726562,10.729005,10729.005 +31790,2025-03-10T23:38:55.950271-07:00,1001.9929809570312,10.729437,10729.437 +31791,2025-03-10T23:39:06.684828-07:00,1001.9929809570312,10.734557,10734.557 +31792,2025-03-10T23:39:17.419040-07:00,1001.99951171875,10.734212,10734.212 +31793,2025-03-10T23:39:28.150065-07:00,1001.965087890625,10.731025,10731.025 +31794,2025-03-10T23:39:38.887943-07:00,1001.9849853515625,10.737878,10737.878 +31795,2025-03-10T23:39:49.616829-07:00,1001.996826171875,10.728886,10728.886 +31796,2025-03-10T23:40:00.345894-07:00,1001.9901733398438,10.729065,10729.065 +31797,2025-03-10T23:40:11.075029-07:00,1001.9835815429688,10.729135,10729.135 +31798,2025-03-10T23:40:21.808830-07:00,1002.0166625976562,10.733801,10733.801 +31799,2025-03-10T23:40:32.538239-07:00,1001.9954833984375,10.729409,10729.409 +31800,2025-03-10T23:40:43.269937-07:00,1001.9989013671875,10.731698,10731.698 +31801,2025-03-10T23:40:54.004832-07:00,1001.9871215820312,10.734895,10734.895 +31802,2025-03-10T23:41:04.735883-07:00,1001.990966796875,10.731051,10731.051 +31803,2025-03-10T23:41:15.464008-07:00,1001.9710693359375,10.728125,10728.125 +31804,2025-03-10T23:41:26.202852-07:00,1002.0055541992188,10.738844,10738.844 +31805,2025-03-10T23:41:36.928828-07:00,1001.984375,10.725976,10725.976 +31806,2025-03-10T23:41:47.663609-07:00,1001.9481201171875,10.734781,10734.781 +31807,2025-03-10T23:41:58.388829-07:00,1001.982666015625,10.72522,10725.22 +31808,2025-03-10T23:42:09.126831-07:00,1001.9891967773438,10.738002,10738.002 +31809,2025-03-10T23:42:19.858827-07:00,1001.96142578125,10.731996,10731.996 +31810,2025-03-10T23:42:30.587855-07:00,1001.9798583984375,10.729028,10729.028 +31811,2025-03-10T23:42:41.324825-07:00,1001.9732055664062,10.73697,10736.97 +31812,2025-03-10T23:42:52.051147-07:00,1001.9781494140625,10.726322,10726.322 +31813,2025-03-10T23:43:02.783877-07:00,1001.9635009765625,10.73273,10732.73 +31814,2025-03-10T23:43:13.512828-07:00,1001.9715576171875,10.728951,10728.951 +31815,2025-03-10T23:43:24.245859-07:00,1001.9715576171875,10.733031,10733.031 +31816,2025-03-10T23:43:34.978995-07:00,1001.9554443359375,10.733136,10733.136 +31817,2025-03-10T23:43:45.711908-07:00,1001.9422607421875,10.732913,10732.913 +31818,2025-03-10T23:43:56.451009-07:00,1001.9590454101562,10.739101,10739.101 +31819,2025-03-10T23:44:07.181056-07:00,1001.9736938476562,10.730047,10730.047 +31820,2025-03-10T23:44:17.917219-07:00,1001.967041015625,10.736163,10736.163 +31821,2025-03-10T23:44:28.651828-07:00,1001.96044921875,10.734609,10734.609 +31822,2025-03-10T23:44:39.381832-07:00,1001.9509887695312,10.730004,10730.004 +31823,2025-03-10T23:44:40.187172-07:00,1001.9576416015625,0.80534,805.34 +31824,2025-03-10T23:44:50.112000-07:00,1001.9840698242188,9.924828,9924.828 +31825,2025-03-10T23:45:00.845000-07:00,1001.9840698242188,10.733,10733.0 +31826,2025-03-10T23:45:11.578884-07:00,1001.9562377929688,10.733884,10733.884 +31827,2025-03-10T23:45:22.314020-07:00,1001.9774780273438,10.735136,10735.136 +31828,2025-03-10T23:45:33.050016-07:00,1001.9545288085938,10.735996,10735.996 +31829,2025-03-10T23:45:43.783831-07:00,1001.974365234375,10.733815,10733.815 +31830,2025-03-10T23:45:54.514127-07:00,1001.953125,10.730296,10730.296 +31831,2025-03-10T23:46:05.245933-07:00,1001.953125,10.731806,10731.806 +31832,2025-03-10T23:46:15.982877-07:00,1001.9385986328125,10.736944,10736.944 +31833,2025-03-10T23:46:26.723860-07:00,1001.9664306640625,10.740983,10740.983 +31834,2025-03-10T23:46:37.447831-07:00,1001.93994140625,10.723971,10723.971 +31835,2025-03-10T23:46:48.179010-07:00,1001.9597778320312,10.731179,10731.179 +31836,2025-03-10T23:46:58.917829-07:00,1001.93994140625,10.738819,10738.819 +31837,2025-03-10T23:47:09.641054-07:00,1001.9434204101562,10.723225,10723.225 +31838,2025-03-10T23:47:20.368998-07:00,1001.9385986328125,10.727944,10727.944 +31839,2025-03-10T23:47:31.101832-07:00,1001.9567260742188,10.732834,10732.834 +31840,2025-03-10T23:47:41.838861-07:00,1001.923583984375,10.737029,10737.029 +31841,2025-03-10T23:47:52.559013-07:00,1001.9170532226562,10.720152,10720.152 +31842,2025-03-10T23:48:03.296346-07:00,1001.9567260742188,10.737333,10737.333 +31843,2025-03-10T23:48:14.025833-07:00,1001.9302368164062,10.729487,10729.487 +31844,2025-03-10T23:48:24.753049-07:00,1001.9288330078125,10.727216,10727.216 +31845,2025-03-10T23:48:35.488023-07:00,1001.9288330078125,10.734974,10734.974 +31846,2025-03-10T23:48:46.213829-07:00,1001.8992309570312,10.725806,10725.806 +31847,2025-03-10T23:48:56.947838-07:00,1001.932373046875,10.734009,10734.009 +31848,2025-03-10T23:49:07.668823-07:00,1001.92578125,10.720985,10720.985 +31849,2025-03-10T23:49:18.404935-07:00,1001.932373046875,10.736112,10736.112 +31850,2025-03-10T23:49:29.136009-07:00,1001.932373046875,10.731074,10731.074 +31851,2025-03-10T23:49:39.873854-07:00,1001.9375610351562,10.737845,10737.845 +31852,2025-03-10T23:49:50.608042-07:00,1001.9295043945312,10.734188,10734.188 +31853,2025-03-10T23:50:01.341721-07:00,1001.9146728515625,10.733679,10733.679 +31854,2025-03-10T23:50:12.069028-07:00,1001.9345092773438,10.727307,10727.307 +31855,2025-03-10T23:50:22.798569-07:00,1001.9212646484375,10.729541,10729.541 +31856,2025-03-10T23:50:33.527840-07:00,1001.9345092773438,10.729271,10729.271 +31857,2025-03-10T23:50:44.260951-07:00,1001.9132690429688,10.733111,10733.111 +31858,2025-03-10T23:50:54.984973-07:00,1001.925048828125,10.724022,10724.022 +31859,2025-03-10T23:51:05.725916-07:00,1001.93310546875,10.740943,10740.943 +31860,2025-03-10T23:51:16.461063-07:00,1001.9234619140625,10.735147,10735.147 +31861,2025-03-10T23:51:27.181903-07:00,1001.9675903320312,10.72084,10720.84 +31862,2025-03-10T23:51:37.918825-07:00,1001.9450073242188,10.736922,10736.922 +31863,2025-03-10T23:51:48.648993-07:00,1001.9382934570312,10.730168,10730.168 +31864,2025-03-10T23:51:59.386061-07:00,1001.9515380859375,10.737068,10737.068 +31865,2025-03-10T23:52:10.118827-07:00,1001.9498291015625,10.732766,10732.766 +31866,2025-03-10T23:52:20.845989-07:00,1001.9498291015625,10.727162,10727.162 +31867,2025-03-10T23:52:31.577882-07:00,1001.976318359375,10.731893,10731.893 +31868,2025-03-10T23:52:42.311563-07:00,1001.9439697265625,10.733681,10733.681 +31869,2025-03-10T23:52:53.037064-07:00,1001.9506225585938,10.725501,10725.501 +31870,2025-03-10T23:53:03.765853-07:00,1001.9638061523438,10.728789,10728.789 +31871,2025-03-10T23:53:14.500904-07:00,1001.9625244140625,10.735051,10735.051 +31872,2025-03-10T23:53:25.229384-07:00,1001.9611206054688,10.72848,10728.48 +31873,2025-03-10T23:53:35.982475-07:00,1001.95654296875,10.753091,10753.091 +31874,2025-03-10T23:53:46.710717-07:00,1001.9601440429688,10.728242,10728.242 +31875,2025-03-10T23:53:57.448283-07:00,1001.9503784179688,10.737566,10737.566 +31876,2025-03-10T23:54:08.180524-07:00,1001.9754638671875,10.732241,10732.241 +31877,2025-03-10T23:54:18.904281-07:00,1001.993896484375,10.723757,10723.757 +31878,2025-03-10T23:54:29.637341-07:00,1001.9924926757812,10.73306,10733.06 +31879,2025-03-10T23:54:40.376635-07:00,1001.9769287109375,10.739294,10739.294 +31880,2025-03-10T23:54:51.108932-07:00,1001.9773559570312,10.732297,10732.297 +31881,2025-03-10T23:55:01.838506-07:00,1001.99267578125,10.729574,10729.574 +31882,2025-03-10T23:55:12.563294-07:00,1001.9920043945312,10.724788,10724.788 +31883,2025-03-10T23:55:23.293430-07:00,1001.9962768554688,10.730136,10730.136 +31884,2025-03-10T23:55:34.029488-07:00,1002.0099487304688,10.736058,10736.058 +31885,2025-03-10T23:55:44.761530-07:00,1002.0142211914062,10.732042,10732.042 +31886,2025-03-10T23:55:55.492462-07:00,1002.0198364257812,10.730932,10730.932 +31887,2025-03-10T23:56:06.219279-07:00,1002.0309448242188,10.726817,10726.817 +31888,2025-03-10T23:56:16.949278-07:00,1001.9888916015625,10.729999,10729.999 +31889,2025-03-10T23:56:27.686671-07:00,1001.9931030273438,10.737393,10737.393 +31890,2025-03-10T23:56:38.414345-07:00,1002.02685546875,10.727674,10727.674 +31891,2025-03-10T23:56:49.148284-07:00,1002.0289916992188,10.733939,10733.939 +31892,2025-03-10T23:56:59.871703-07:00,1002.0133666992188,10.723419,10723.419 +31893,2025-03-10T23:57:10.605362-07:00,1002.033935546875,10.733659,10733.659 +31894,2025-03-10T23:57:21.333508-07:00,1002.0409545898438,10.728146,10728.146 +31895,2025-03-10T23:57:32.064693-07:00,1002.01513671875,10.731185,10731.185 +31896,2025-03-10T23:57:42.798284-07:00,1001.9893798828125,10.733591,10733.591 +31897,2025-03-10T23:57:53.537308-07:00,1002.0165405273438,10.739024,10739.024 +31898,2025-03-10T23:58:04.262457-07:00,1002.0103149414062,10.725149,10725.149 +31899,2025-03-10T23:58:14.991485-07:00,1001.994384765625,10.729028,10729.028 +31900,2025-03-10T23:58:25.726293-07:00,1001.9963989257812,10.734808,10734.808 +31901,2025-03-10T23:58:36.451464-07:00,1002.0145263671875,10.725171,10725.171 +31902,2025-03-10T23:58:47.182591-07:00,1002.0250244140625,10.731127,10731.127 +31903,2025-03-10T23:58:57.913353-07:00,1002.0218505859375,10.730762,10730.762 +31904,2025-03-10T23:59:08.638822-07:00,1002.0521240234375,10.725469,10725.469 +31905,2025-03-10T23:59:19.371351-07:00,1002.030517578125,10.732529,10732.529 +31906,2025-03-10T23:59:30.098286-07:00,1002.02392578125,10.726935,10726.935 +31907,2025-03-10T23:59:40.831272-07:00,1002.0061645507812,10.732986,10732.986 +31908,2025-03-10T23:59:51.559280-07:00,1001.9898681640625,10.728008,10728.008 +31909,2025-03-11T00:00:02.291523-07:00,1002.0048217773438,10.732243,10732.243 +31910,2025-03-11T00:00:13.018421-07:00,1001.99951171875,10.726898,10726.898 +31911,2025-03-11T00:00:23.749280-07:00,1002.0179443359375,10.730859,10730.859 +31912,2025-03-11T00:00:34.477285-07:00,1002.0048217773438,10.728005,10728.005 +31913,2025-03-11T00:00:45.209306-07:00,1002.0079956054688,10.732021,10732.021 +31914,2025-03-11T00:00:55.936311-07:00,1001.9735107421875,10.727005,10727.005 +31915,2025-03-11T00:01:06.673507-07:00,1001.9946899414062,10.737196,10737.196 +31916,2025-03-11T00:01:17.400482-07:00,1002.0048217773438,10.726975,10726.975 +31917,2025-03-11T00:01:28.130307-07:00,1001.9849853515625,10.729825,10729.825 +31918,2025-03-11T00:01:38.856452-07:00,1001.9963989257812,10.726145,10726.145 +31919,2025-03-11T00:01:49.595972-07:00,1001.9898681640625,10.73952,10739.52 +31920,2025-03-11T00:02:00.325983-07:00,1001.9796752929688,10.730011,10730.011 +31921,2025-03-11T00:02:11.054500-07:00,1002.0061645507812,10.728517,10728.517 +31922,2025-03-11T00:02:21.779552-07:00,1001.974853515625,10.725052,10725.052 +31923,2025-03-11T00:02:32.516282-07:00,1002.00927734375,10.73673,10736.73 +31924,2025-03-11T00:02:43.241324-07:00,1001.9598999023438,10.725042,10725.042 +31925,2025-03-11T00:02:53.969280-07:00,1001.9827880859375,10.727956,10727.956 +31926,2025-03-11T00:03:04.709296-07:00,1001.9762573242188,10.740016,10740.016 +31927,2025-03-11T00:03:15.437822-07:00,1001.9529418945312,10.728526,10728.526 +31928,2025-03-11T00:03:26.169713-07:00,1001.944580078125,10.731891,10731.891 +31929,2025-03-11T00:03:34.937559-07:00,1001.9609375,8.767846,8767.846 +31930,2025-03-11T00:03:36.901283-07:00,1001.9490356445312,1.963724,1963.724 +31931,2025-03-11T00:03:47.622685-07:00,1001.9852905273438,10.721402,10721.402 +31932,2025-03-11T00:03:58.352280-07:00,1001.9508056640625,10.729595,10729.595 +31933,2025-03-11T00:04:09.088283-07:00,1001.932373046875,10.736003,10736.003 +31934,2025-03-11T00:04:19.827425-07:00,1001.9271850585938,10.739142,10739.142 +31935,2025-03-11T00:04:30.556457-07:00,1001.9087524414062,10.729032,10729.032 +31936,2025-03-11T00:04:41.294441-07:00,1001.911865234375,10.737984,10737.984 +31937,2025-03-11T00:04:52.029314-07:00,1001.934814453125,10.734873,10734.873 +31938,2025-03-11T00:05:02.759335-07:00,1001.9215698242188,10.730021,10730.021 +31939,2025-03-11T00:05:13.493468-07:00,1001.9083862304688,10.734133,10734.133 +31940,2025-03-11T00:05:24.227518-07:00,1001.9326782226562,10.73405,10734.05 +31941,2025-03-11T00:05:34.957278-07:00,1001.9584350585938,10.72976,10729.76 +31942,2025-03-11T00:05:45.697474-07:00,1001.9107666015625,10.740196,10740.196 +31943,2025-03-11T00:05:56.431450-07:00,1001.94140625,10.733976,10733.976 +31944,2025-03-11T00:06:07.167401-07:00,1001.9312744140625,10.735951,10735.951 +31945,2025-03-11T00:06:17.896281-07:00,1001.9100952148438,10.72888,10728.88 +31946,2025-03-11T00:06:28.625496-07:00,1001.9260864257812,10.729215,10729.215 +31947,2025-03-11T00:06:39.356529-07:00,1001.922607421875,10.731033,10731.033 +31948,2025-03-11T00:06:50.081537-07:00,1001.9041137695312,10.725008,10725.008 +31949,2025-03-11T00:07:00.812461-07:00,1001.9257202148438,10.730924,10730.924 +31950,2025-03-11T00:07:11.546491-07:00,1001.900634765625,10.73403,10734.03 +31951,2025-03-11T00:07:22.284286-07:00,1001.891845703125,10.737795,10737.795 +31952,2025-03-11T00:07:33.015310-07:00,1001.8773193359375,10.731024,10731.024 +31953,2025-03-11T00:07:43.750838-07:00,1001.850830078125,10.735528,10735.528 +31954,2025-03-11T00:07:54.474406-07:00,1001.888427734375,10.723568,10723.568 +31955,2025-03-11T00:08:05.210857-07:00,1001.8765869140625,10.736451,10736.451 +31956,2025-03-11T00:08:15.942810-07:00,1001.8396606445312,10.731953,10731.953 +31957,2025-03-11T00:08:26.680481-07:00,1001.8904418945312,10.737671,10737.671 +31958,2025-03-11T00:08:37.412489-07:00,1001.8789672851562,10.732008,10732.008 +31959,2025-03-11T00:08:48.140462-07:00,1001.89501953125,10.727973,10727.973 +31960,2025-03-11T00:08:58.871355-07:00,1001.888427734375,10.730893,10730.893 +31961,2025-03-11T00:09:09.599386-07:00,1001.8532104492188,10.728031,10728.031 +31962,2025-03-11T00:09:20.335931-07:00,1001.8532104492188,10.736545,10736.545 +31963,2025-03-11T00:09:31.063281-07:00,1001.8681030273438,10.72735,10727.35 +31964,2025-03-11T00:09:41.797441-07:00,1001.8629760742188,10.73416,10734.16 +31965,2025-03-11T00:09:52.528287-07:00,1001.8607788085938,10.730846,10730.846 +31966,2025-03-11T00:10:03.260346-07:00,1001.8409423828125,10.732059,10732.059 +31967,2025-03-11T00:10:13.988703-07:00,1001.8570556640625,10.728357,10728.357 +31968,2025-03-11T00:10:24.723462-07:00,1001.8635864257812,10.734759,10734.759 +31969,2025-03-11T00:10:35.459390-07:00,1001.8865356445312,10.735928,10735.928 +31970,2025-03-11T00:10:46.185416-07:00,1001.8681030273438,10.726026,10726.026 +31971,2025-03-11T00:10:56.926013-07:00,1001.8632202148438,10.740597,10740.597 +31972,2025-03-11T00:11:07.650662-07:00,1001.9073486328125,10.724649,10724.649 +31973,2025-03-11T00:11:18.385283-07:00,1001.86767578125,10.734621,10734.621 +31974,2025-03-11T00:11:29.113319-07:00,1001.8704833984375,10.728036,10728.036 +31975,2025-03-11T00:11:39.850476-07:00,1001.8788452148438,10.737157,10737.157 +31976,2025-03-11T00:11:50.577290-07:00,1001.896240234375,10.726814,10726.814 +31977,2025-03-11T00:12:01.306734-07:00,1001.8714599609375,10.729444,10729.444 +31978,2025-03-11T00:12:12.038458-07:00,1001.8742065429688,10.731724,10731.724 +31979,2025-03-11T00:12:22.770865-07:00,1001.8809204101562,10.732407,10732.407 +31980,2025-03-11T00:12:33.511339-07:00,1001.869384765625,10.740474,10740.474 +31981,2025-03-11T00:12:44.240555-07:00,1001.8574829101562,10.729216,10729.216 +31982,2025-03-11T00:12:54.975465-07:00,1001.8671875,10.73491,10734.91 +31983,2025-03-11T00:13:05.704461-07:00,1001.8634643554688,10.728996,10728.996 +31984,2025-03-11T00:13:16.435494-07:00,1001.8518676757812,10.731033,10731.033 +31985,2025-03-11T00:13:27.179286-07:00,1001.8386840820312,10.743792,10743.792 +31986,2025-03-11T00:13:37.917170-07:00,1001.8612670898438,10.737884,10737.884 +31987,2025-03-11T00:13:48.646282-07:00,1001.867919921875,10.729112,10729.112 +31988,2025-03-11T00:13:59.384486-07:00,1001.8591918945312,10.738204,10738.204 +31989,2025-03-11T00:14:10.126462-07:00,1001.8473510742188,10.741976,10741.976 +31990,2025-03-11T00:14:20.858188-07:00,1001.8720092773438,10.731726,10731.726 +31991,2025-03-11T00:14:31.590339-07:00,1001.84716796875,10.732151,10732.151 +31992,2025-03-11T00:14:42.326347-07:00,1001.86328125,10.736008,10736.008 +31993,2025-03-11T00:14:53.063281-07:00,1001.8545532226562,10.736934,10736.934 +31994,2025-03-11T00:15:03.798282-07:00,1001.8735961914062,10.735001,10735.001 +31995,2025-03-11T00:15:14.536452-07:00,1001.8502197265625,10.73817,10738.17 +31996,2025-03-11T00:15:25.269285-07:00,1001.844970703125,10.732833,10732.833 +31997,2025-03-11T00:15:36.004550-07:00,1001.8577880859375,10.735265,10735.265 +31998,2025-03-11T00:15:46.742571-07:00,1001.8261108398438,10.738021,10738.021 +31999,2025-03-11T00:15:57.483719-07:00,1001.842529296875,10.741148,10741.148 +32000,2025-03-11T00:16:08.217883-07:00,1001.83203125,10.734164,10734.164 +32001,2025-03-11T00:16:18.952284-07:00,1001.8842163085938,10.734401,10734.401 +32002,2025-03-11T00:16:29.690281-07:00,1001.837890625,10.737997,10737.997 +32003,2025-03-11T00:16:40.432360-07:00,1001.82421875,10.742079,10742.079 +32004,2025-03-11T00:16:51.163487-07:00,1001.8489990234375,10.731127,10731.127 +32005,2025-03-11T00:17:01.900622-07:00,1001.869873046875,10.737135,10737.135 +32006,2025-03-11T00:17:12.634283-07:00,1001.8875122070312,10.733661,10733.661 +32007,2025-03-11T00:17:23.365483-07:00,1001.846435546875,10.7312,10731.2 +32008,2025-03-11T00:17:34.103694-07:00,1001.8624267578125,10.738211,10738.211 +32009,2025-03-11T00:17:44.845215-07:00,1001.8478393554688,10.741521,10741.521 +32010,2025-03-11T00:17:55.574351-07:00,1001.8735961914062,10.729136,10729.136 +32011,2025-03-11T00:18:06.314281-07:00,1001.8766479492188,10.73993,10739.93 +32012,2025-03-11T00:18:17.042468-07:00,1001.8661499023438,10.728187,10728.187 +32013,2025-03-11T00:18:27.776305-07:00,1001.87451171875,10.733837,10733.837 +32014,2025-03-11T00:18:38.514307-07:00,1001.881103515625,10.738002,10738.002 +32015,2025-03-11T00:18:49.247369-07:00,1001.8922119140625,10.733062,10733.062 +32016,2025-03-11T00:18:59.977463-07:00,1001.8839111328125,10.730094,10730.094 +32017,2025-03-11T00:19:21.451284-07:00,1001.8870239257812,21.473821,21473.821 +32018,2025-03-11T00:19:32.178287-07:00,1001.8751831054688,10.727003,10727.003 +32019,2025-03-11T00:19:42.919471-07:00,1001.91796875,10.741184,10741.184 +32020,2025-03-11T00:19:53.656371-07:00,1001.878173828125,10.7369,10736.9 +32021,2025-03-11T00:20:04.389280-07:00,1001.8994750976562,10.732909,10732.909 +32022,2025-03-11T00:20:15.121513-07:00,1001.88623046875,10.732233,10732.233 +32023,2025-03-11T00:20:25.863073-07:00,1001.889404296875,10.74156,10741.56 +32024,2025-03-11T00:20:36.600381-07:00,1001.870849609375,10.737308,10737.308 +32025,2025-03-11T00:20:47.330490-07:00,1001.9268798828125,10.730109,10730.109 +32026,2025-03-11T00:20:58.064284-07:00,1001.8819580078125,10.733794,10733.794 +32027,2025-03-11T00:21:08.803549-07:00,1001.88720703125,10.739265,10739.265 +32028,2025-03-11T00:21:19.533310-07:00,1001.8965454101562,10.729761,10729.761 +32029,2025-03-11T00:21:30.266535-07:00,1001.9031982421875,10.733225,10733.225 +32030,2025-03-11T00:21:41.000502-07:00,1001.90625,10.733967,10733.967 +32031,2025-03-11T00:21:51.740993-07:00,1001.92919921875,10.740491,10740.491 +32032,2025-03-11T00:22:02.477103-07:00,1001.9159545898438,10.73611,10736.11 +32033,2025-03-11T00:22:13.208284-07:00,1001.9226684570312,10.731181,10731.181 +32034,2025-03-11T00:22:23.938499-07:00,1001.9093627929688,10.730215,10730.215 +32035,2025-03-11T00:22:34.679353-07:00,1001.9385986328125,10.740854,10740.854 +32036,2025-03-11T00:22:45.414686-07:00,1001.8895263671875,10.735333,10735.333 +32037,2025-03-11T00:22:56.146283-07:00,1001.8909301757812,10.731597,10731.597 +32038,2025-03-11T00:23:06.887621-07:00,1001.9159545898438,10.741338,10741.338 +32039,2025-03-11T00:23:17.623470-07:00,1001.9027099609375,10.735849,10735.849 +32040,2025-03-11T00:23:28.351282-07:00,1001.9027099609375,10.727812,10727.812 +32041,2025-03-11T00:23:39.089446-07:00,1001.8828735351562,10.738164,10738.164 +32042,2025-03-11T00:23:49.822347-07:00,1001.9093627929688,10.732901,10732.901 +32043,2025-03-11T00:24:00.564283-07:00,1001.8878173828125,10.741936,10741.936 +32044,2025-03-11T00:24:11.290357-07:00,1001.92919921875,10.726074,10726.074 +32045,2025-03-11T00:24:22.028277-07:00,1001.9226684570312,10.73792,10737.92 +32046,2025-03-11T00:24:32.762116-07:00,1001.9195556640625,10.733839,10733.839 +32047,2025-03-11T00:24:43.490486-07:00,1001.9048461914062,10.72837,10728.37 +32048,2025-03-11T00:24:54.225279-07:00,1001.9181518554688,10.734793,10734.793 +32049,2025-03-11T00:25:04.969351-07:00,1001.8819580078125,10.744072,10744.072 +32050,2025-03-11T00:25:15.704281-07:00,1001.8739013671875,10.73493,10734.93 +32051,2025-03-11T00:25:26.429457-07:00,1001.8656005859375,10.725176,10725.176 +32052,2025-03-11T00:25:37.171074-07:00,1001.8906860351562,10.741617,10741.617 +32053,2025-03-11T00:25:47.908276-07:00,1001.9025268554688,10.737202,10737.202 +32054,2025-03-11T00:25:58.644492-07:00,1001.889404296875,10.736216,10736.216 +32055,2025-03-11T00:26:09.380470-07:00,1001.879638671875,10.735978,10735.978 +32056,2025-03-11T00:26:20.112780-07:00,1001.907470703125,10.73231,10732.31 +32057,2025-03-11T00:26:30.848281-07:00,1001.907470703125,10.735501,10735.501 +32058,2025-03-11T00:26:41.577364-07:00,1001.8702392578125,10.729083,10729.083 +32059,2025-03-11T00:26:52.314362-07:00,1001.8552856445312,10.736998,10736.998 +32060,2025-03-11T00:27:03.048309-07:00,1001.8834228515625,10.733947,10733.947 +32061,2025-03-11T00:27:13.783584-07:00,1001.8671264648438,10.735275,10735.275 +32062,2025-03-11T00:27:24.523503-07:00,1001.8640747070312,10.739919,10739.919 +32063,2025-03-11T00:27:35.255699-07:00,1001.87060546875,10.732196,10732.196 +32064,2025-03-11T00:27:45.984372-07:00,1001.8772583007812,10.728673,10728.673 +32065,2025-03-11T00:27:56.722343-07:00,1001.8626708984375,10.737971,10737.971 +32066,2025-03-11T00:28:07.462281-07:00,1001.8626708984375,10.739938,10739.938 +32067,2025-03-11T00:28:18.196363-07:00,1001.8661499023438,10.734082,10734.082 +32068,2025-03-11T00:28:28.933462-07:00,1001.81982421875,10.737099,10737.099 +32069,2025-03-11T00:28:39.660281-07:00,1001.8847045898438,10.726819,10726.819 +32070,2025-03-11T00:28:50.400277-07:00,1001.8616943359375,10.739996,10739.996 +32071,2025-03-11T00:29:01.136450-07:00,1001.8551025390625,10.736173,10736.173 +32072,2025-03-11T00:29:11.864478-07:00,1001.8602905273438,10.728028,10728.028 +32073,2025-03-11T00:29:22.606281-07:00,1001.83251953125,10.741803,10741.803 +32074,2025-03-11T00:29:33.342722-07:00,1001.8404541015625,10.736441,10736.441 +32075,2025-03-11T00:29:44.070345-07:00,1001.8456420898438,10.727623,10727.623 +32076,2025-03-11T00:29:54.797283-07:00,1001.8161010742188,10.726938,10726.938 +32077,2025-03-11T00:30:05.539306-07:00,1001.8192138671875,10.742023,10742.023 +32078,2025-03-11T00:30:16.263457-07:00,1001.82275390625,10.724151,10724.151 +32079,2025-03-11T00:30:26.995618-07:00,1001.8161010742188,10.732161,10732.161 +32080,2025-03-11T00:30:37.728281-07:00,1001.8359375,10.732663,10732.663 +32081,2025-03-11T00:30:48.459284-07:00,1001.8359375,10.731003,10731.003 +32082,2025-03-11T00:30:59.185464-07:00,1001.8133544921875,10.72618,10726.18 +32083,2025-03-11T00:31:09.914286-07:00,1001.8001708984375,10.728822,10728.822 +32084,2025-03-11T00:31:20.648493-07:00,1001.8279418945312,10.734207,10734.207 +32085,2025-03-11T00:31:31.379829-07:00,1001.8133544921875,10.731336,10731.336 +32086,2025-03-11T00:31:42.101283-07:00,1001.8182983398438,10.721454,10721.454 +32087,2025-03-11T00:31:52.835651-07:00,1001.8182983398438,10.734368,10734.368 +32088,2025-03-11T00:32:03.560281-07:00,1001.8116455078125,10.72463,10724.63 +32089,2025-03-11T00:32:14.291393-07:00,1001.7904052734375,10.731112,10731.112 +32090,2025-03-11T00:32:25.021682-07:00,1001.8067016601562,10.730289,10730.289 +32091,2025-03-11T00:32:35.751426-07:00,1001.7904052734375,10.729744,10729.744 +32092,2025-03-11T00:32:46.485308-07:00,1001.7890625,10.733882,10733.882 +32093,2025-03-11T00:32:57.205659-07:00,1001.8021850585938,10.720351,10720.351 +32094,2025-03-11T00:33:07.934428-07:00,1001.8182983398438,10.728769,10728.769 +32095,2025-03-11T00:33:18.673368-07:00,1001.8088989257812,10.73894,10738.94 +32096,2025-03-11T00:33:29.402492-07:00,1001.8234252929688,10.729124,10729.124 +32097,2025-03-11T00:33:40.130280-07:00,1001.787353515625,10.727788,10727.788 +32098,2025-03-11T00:33:50.859480-07:00,1001.81689453125,10.7292,10729.2 +32099,2025-03-11T00:34:01.591505-07:00,1001.7807006835938,10.732025,10732.025 +32100,2025-03-11T00:34:12.314346-07:00,1001.7608032226562,10.722841,10722.841 +32101,2025-03-11T00:34:23.051673-07:00,1001.7904052734375,10.737327,10737.327 +32102,2025-03-11T00:34:33.783491-07:00,1001.7757568359375,10.731818,10731.818 +32103,2025-03-11T00:34:44.512283-07:00,1001.7675170898438,10.728792,10728.792 +32104,2025-03-11T00:34:55.247354-07:00,1001.7726440429688,10.735071,10735.071 +32105,2025-03-11T00:35:05.975481-07:00,1001.7740478515625,10.728127,10728.127 +32106,2025-03-11T00:35:16.702496-07:00,1001.7726440429688,10.727015,10727.015 +32107,2025-03-11T00:35:27.436371-07:00,1001.7462768554688,10.733875,10733.875 +32108,2025-03-11T00:35:38.174776-07:00,1001.779296875,10.738405,10738.405 +32109,2025-03-11T00:35:48.898276-07:00,1001.7726440429688,10.7235,10723.5 +32110,2025-03-11T00:35:59.625357-07:00,1001.7778930664062,10.727081,10727.081 +32111,2025-03-11T00:36:10.358689-07:00,1001.7315673828125,10.733332,10733.332 +32112,2025-03-11T00:36:21.093278-07:00,1001.7564086914062,10.734589,10734.589 +32113,2025-03-11T00:36:31.832563-07:00,1001.7601318359375,10.739285,10739.285 +32114,2025-03-11T00:36:42.564559-07:00,1001.7483520507812,10.731996,10731.996 +32115,2025-03-11T00:36:53.287282-07:00,1001.74169921875,10.722723,10722.723 +32116,2025-03-11T00:37:04.024317-07:00,1001.7469482421875,10.737035,10737.035 +32117,2025-03-11T00:37:14.759284-07:00,1001.7107543945312,10.734967,10734.967 +32118,2025-03-11T00:37:25.489657-07:00,1001.7028198242188,10.730373,10730.373 +32119,2025-03-11T00:37:36.218281-07:00,1001.7173461914062,10.728624,10728.624 +32120,2025-03-11T00:37:46.947466-07:00,1001.7160034179688,10.729185,10729.185 +32121,2025-03-11T00:37:57.677116-07:00,1001.7173461914062,10.72965,10729.65 +32122,2025-03-11T00:38:08.417284-07:00,1001.7518920898438,10.740168,10740.168 +32123,2025-03-11T00:38:19.138281-07:00,1001.743896484375,10.720997,10720.997 +32124,2025-03-11T00:38:29.873488-07:00,1001.7079467773438,10.735207,10735.207 +32125,2025-03-11T00:38:40.609305-07:00,1001.7327880859375,10.735817,10735.817 +32126,2025-03-11T00:38:51.330508-07:00,1001.7344360351562,10.721203,10721.203 +32127,2025-03-11T00:39:02.068157-07:00,1001.7327880859375,10.737649,10737.649 +32128,2025-03-11T00:39:12.799354-07:00,1001.72607421875,10.731197,10731.197 +32129,2025-03-11T00:39:23.526388-07:00,1001.7393798828125,10.727034,10727.034 +32130,2025-03-11T00:39:34.265439-07:00,1001.7460327148438,10.739051,10739.051 +32131,2025-03-11T00:39:44.995260-07:00,1001.752685546875,10.729821,10729.821 +32132,2025-03-11T00:39:55.730798-07:00,1001.752685546875,10.735538,10735.538 +32133,2025-03-11T00:40:06.463286-07:00,1001.752685546875,10.732488,10732.488 +32134,2025-03-11T00:40:17.195465-07:00,1001.736572265625,10.732179,10732.179 +32135,2025-03-11T00:40:27.923283-07:00,1001.7564086914062,10.727818,10727.818 +32136,2025-03-11T00:40:38.656283-07:00,1001.751220703125,10.733,10733.0 +32137,2025-03-11T00:40:49.386443-07:00,1001.7547607421875,10.73016,10730.16 +32138,2025-03-11T00:41:00.121422-07:00,1001.7415771484375,10.734979,10734.979 +32139,2025-03-11T00:41:10.857282-07:00,1001.7203369140625,10.73586,10735.86 +32140,2025-03-11T00:41:21.587865-07:00,1001.7547607421875,10.730583,10730.583 +32141,2025-03-11T00:41:32.316475-07:00,1001.7467041015625,10.72861,10728.61 +32142,2025-03-11T00:41:43.050281-07:00,1001.737060546875,10.733806,10733.806 +32143,2025-03-11T00:41:53.788660-07:00,1001.73046875,10.738379,10738.379 +32144,2025-03-11T00:42:04.514473-07:00,1001.722412109375,10.725813,10725.813 +32145,2025-03-11T00:42:15.245283-07:00,1001.7586059570312,10.73081,10730.81 +32146,2025-03-11T00:42:25.984456-07:00,1001.7435913085938,10.739173,10739.173 +32147,2025-03-11T00:42:36.713489-07:00,1001.7489013671875,10.729033,10729.033 +32148,2025-03-11T00:42:47.450896-07:00,1001.735595703125,10.737407,10737.407 +32149,2025-03-11T00:42:58.175281-07:00,1001.7391357421875,10.724385,10724.385 +32150,2025-03-11T00:43:08.910284-07:00,1001.759033203125,10.735003,10735.003 +32151,2025-03-11T00:43:19.635645-07:00,1001.7259521484375,10.725361,10725.361 +32152,2025-03-11T00:43:30.366310-07:00,1001.7523193359375,10.730665,10730.665 +32153,2025-03-11T00:43:41.098479-07:00,1001.7510375976562,10.732169,10732.169 +32154,2025-03-11T00:43:51.829281-07:00,1001.7642211914062,10.730802,10730.802 +32155,2025-03-11T00:44:02.566311-07:00,1001.7412719726562,10.73703,10737.03 +32156,2025-03-11T00:44:13.298806-07:00,1001.7576293945312,10.732495,10732.495 +32157,2025-03-11T00:44:24.020309-07:00,1001.7429809570312,10.721503,10721.503 +32158,2025-03-11T00:44:34.747351-07:00,1001.7642211914062,10.727042,10727.042 +32159,2025-03-11T00:44:45.480484-07:00,1001.7545166015625,10.733133,10733.133 +32160,2025-03-11T00:44:56.213713-07:00,1001.7332763671875,10.733229,10733.229 +32161,2025-03-11T00:45:06.941485-07:00,1001.7562255859375,10.727772,10727.772 +32162,2025-03-11T00:45:17.664472-07:00,1001.7611083984375,10.722987,10722.987 +32163,2025-03-11T00:45:28.398280-07:00,1001.7398681640625,10.733808,10733.808 +32164,2025-03-11T00:45:39.117467-07:00,1001.7318725585938,10.719187,10719.187 +32165,2025-03-11T00:45:49.854470-07:00,1001.723876953125,10.737003,10737.003 +32166,2025-03-11T00:46:00.582283-07:00,1001.74658203125,10.727813,10727.813 +32167,2025-03-11T00:46:11.311276-07:00,1001.7354736328125,10.728993,10728.993 +32168,2025-03-11T00:46:22.035308-07:00,1001.7503051757812,10.724032,10724.032 +32169,2025-03-11T00:46:32.765317-07:00,1001.7420043945312,10.730009,10730.009 +32170,2025-03-11T00:46:43.492390-07:00,1001.7371215820312,10.727073,10727.073 +32171,2025-03-11T00:46:54.226281-07:00,1001.72216796875,10.733891,10733.891 +32172,2025-03-11T00:47:04.958513-07:00,1001.7553100585938,10.732232,10732.232 +32173,2025-03-11T00:47:15.684472-07:00,1001.745849609375,10.725959,10725.959 +32174,2025-03-11T00:47:26.411282-07:00,1001.760498046875,10.72681,10726.81 +32175,2025-03-11T00:47:37.143498-07:00,1001.7656860351562,10.732216,10732.216 +32176,2025-03-11T00:47:47.868151-07:00,1001.7771606445312,10.724653,10724.653 +32177,2025-03-11T00:47:58.596287-07:00,1001.7427978515625,10.728136,10728.136 +32178,2025-03-11T00:48:09.331391-07:00,1001.7295532226562,10.735104,10735.104 +32179,2025-03-11T00:48:20.056397-07:00,1001.75732421875,10.725006,10725.006 +32180,2025-03-11T00:48:30.777662-07:00,1001.7295532226562,10.721265,10721.265 +32181,2025-03-11T00:48:41.509470-07:00,1001.7361450195312,10.731808,10731.808 +32182,2025-03-11T00:48:52.235281-07:00,1001.782470703125,10.725811,10725.811 +32183,2025-03-11T00:49:02.958335-07:00,1001.7361450195312,10.723054,10723.054 +32184,2025-03-11T00:49:13.688617-07:00,1001.7462768554688,10.730282,10730.282 +32185,2025-03-11T00:49:24.426283-07:00,1001.7528686523438,10.737666,10737.666 +32186,2025-03-11T00:49:35.151033-07:00,1001.7396850585938,10.72475,10724.75 +32187,2025-03-11T00:49:45.873591-07:00,1001.7432250976562,10.722558,10722.558 +32188,2025-03-11T00:49:56.608283-07:00,1001.7546997070312,10.734692,10734.692 +32189,2025-03-11T00:50:07.336873-07:00,1001.7453002929688,10.72859,10728.59 +32190,2025-03-11T00:50:18.057056-07:00,1001.72900390625,10.720183,10720.183 +32191,2025-03-11T00:50:28.785709-07:00,1001.720947265625,10.728653,10728.653 +32192,2025-03-11T00:50:39.513283-07:00,1001.7377319335938,10.727574,10727.574 +32193,2025-03-11T00:50:50.241484-07:00,1001.7547607421875,10.728201,10728.201 +32194,2025-03-11T00:51:00.977426-07:00,1001.7238159179688,10.735942,10735.942 +32195,2025-03-11T00:51:11.709579-07:00,1001.7221069335938,10.732153,10732.153 +32196,2025-03-11T00:51:22.436279-07:00,1001.795654296875,10.7267,10726.7 +32197,2025-03-11T00:51:33.163995-07:00,1001.7601318359375,10.727716,10727.716 +32198,2025-03-11T00:51:43.890283-07:00,1001.7740478515625,10.726288,10726.288 +32199,2025-03-11T00:51:54.611283-07:00,1001.75048828125,10.721,10721.0 +32200,2025-03-11T00:52:05.346683-07:00,1001.7627563476562,10.7354,10735.4 +32201,2025-03-11T00:52:16.073486-07:00,1001.750244140625,10.726803,10726.803 +32202,2025-03-11T00:52:26.798978-07:00,1001.7693481445312,10.725492,10725.492 +32203,2025-03-11T00:52:37.527418-07:00,1001.7684326171875,10.72844,10728.44 +32204,2025-03-11T00:52:48.256516-07:00,1001.7725830078125,10.729098,10729.098 +32205,2025-03-11T00:52:58.990449-07:00,1001.7997436523438,10.733933,10733.933 +32206,2025-03-11T00:53:09.715283-07:00,1001.7789306640625,10.724834,10724.834 +32207,2025-03-11T00:53:20.440712-07:00,1001.7980346679688,10.725429,10725.429 +32208,2025-03-11T00:53:31.178462-07:00,1001.7935791015625,10.73775,10737.75 +32209,2025-03-11T00:53:41.897479-07:00,1001.8206787109375,10.719017,10719.017 +32210,2025-03-11T00:53:52.626331-07:00,1001.7681274414062,10.728852,10728.852 +32211,2025-03-11T00:54:03.362512-07:00,1001.7605590820312,10.736181,10736.181 +32212,2025-03-11T00:54:14.089540-07:00,1001.7692260742188,10.727028,10727.028 +32213,2025-03-11T00:54:24.828391-07:00,1001.8043823242188,10.738851,10738.851 +32214,2025-03-11T00:54:35.547608-07:00,1001.7703247070312,10.719217,10719.217 +32215,2025-03-11T00:54:46.287334-07:00,1001.802001953125,10.739726,10739.726 +32216,2025-03-11T00:54:57.018337-07:00,1001.78564453125,10.731003,10731.003 +32217,2025-03-11T00:55:07.749752-07:00,1001.7960815429688,10.731415,10731.415 +32218,2025-03-11T00:55:18.471399-07:00,1001.80126953125,10.721647,10721.647 +32219,2025-03-11T00:55:29.211337-07:00,1001.7835083007812,10.739938,10739.938 +32220,2025-03-11T00:55:39.936537-07:00,1001.8033447265625,10.7252,10725.2 +32221,2025-03-11T00:55:50.668333-07:00,1001.779052734375,10.731796,10731.796 +32222,2025-03-11T00:56:01.399537-07:00,1001.8037719726562,10.731204,10731.204 +32223,2025-03-11T00:56:12.136362-07:00,1001.7759399414062,10.736825,10736.825 +32224,2025-03-11T00:56:22.868500-07:00,1001.7890625,10.732138,10732.138 +32225,2025-03-11T00:56:33.597333-07:00,1001.746337890625,10.728833,10728.833 +32226,2025-03-11T00:56:44.325522-07:00,1001.731689453125,10.728189,10728.189 +32227,2025-03-11T00:56:55.061394-07:00,1001.7647705078125,10.735872,10735.872 +32228,2025-03-11T00:57:05.790621-07:00,1001.7501831054688,10.729227,10729.227 +32229,2025-03-11T00:57:16.519397-07:00,1001.7515869140625,10.728776,10728.776 +32230,2025-03-11T00:57:27.252556-07:00,1001.7501831054688,10.733159,10733.159 +32231,2025-03-11T00:57:37.992512-07:00,1001.7501831054688,10.739956,10739.956 +32232,2025-03-11T00:57:48.715690-07:00,1001.7285766601562,10.723178,10723.178 +32233,2025-03-11T00:57:59.449503-07:00,1001.7285766601562,10.733813,10733.813 +32234,2025-03-11T00:58:10.189071-07:00,1001.697265625,10.739568,10739.568 +32235,2025-03-11T00:58:20.913334-07:00,1001.7198486328125,10.724263,10724.263 +32236,2025-03-11T00:58:31.646810-07:00,1001.7198486328125,10.733476,10733.476 +32237,2025-03-11T00:58:42.374566-07:00,1001.73486328125,10.727756,10727.756 +32238,2025-03-11T00:58:53.102560-07:00,1001.7067260742188,10.727994,10727.994 +32239,2025-03-11T00:59:03.841894-07:00,1001.7229614257812,10.739334,10739.334 +32240,2025-03-11T00:59:14.570663-07:00,1001.724365234375,10.728769,10728.769 +32241,2025-03-11T00:59:25.295334-07:00,1001.7178344726562,10.724671,10724.671 +32242,2025-03-11T00:59:36.030399-07:00,1001.7062377929688,10.735065,10735.065 +32243,2025-03-11T00:59:46.759357-07:00,1001.7090454101562,10.728958,10728.958 +32244,2025-03-11T00:59:57.489332-07:00,1001.7306518554688,10.729975,10729.975 +32245,2025-03-11T01:00:08.222378-07:00,1001.72021484375,10.733046,10733.046 +32246,2025-03-11T01:00:18.949495-07:00,1001.708740234375,10.727117,10727.117 +32247,2025-03-11T01:00:29.690336-07:00,1001.7268676757812,10.740841,10740.841 +32248,2025-03-11T01:00:40.414778-07:00,1001.7167358398438,10.724442,10724.442 +32249,2025-03-11T01:00:51.148592-07:00,1001.7080688476562,10.733814,10733.814 +32250,2025-03-11T01:01:01.883336-07:00,1001.7028198242188,10.734744,10734.744 +32251,2025-03-11T01:01:12.614337-07:00,1001.6962280273438,10.731001,10731.001 +32252,2025-03-11T01:01:23.336912-07:00,1001.7139282226562,10.722575,10722.575 +32253,2025-03-11T01:01:34.070613-07:00,1001.721923828125,10.733701,10733.701 +32254,2025-03-11T01:01:44.810341-07:00,1001.6972045898438,10.739728,10739.728 +32255,2025-03-11T01:01:55.547678-07:00,1001.6951293945312,10.737337,10737.337 +32256,2025-03-11T01:02:06.271477-07:00,1001.681884765625,10.723799,10723.799 +32257,2025-03-11T01:02:17.014487-07:00,1001.6781005859375,10.74301,10743.01 +32258,2025-03-11T01:02:27.744426-07:00,1001.6812744140625,10.729939,10729.939 +32259,2025-03-11T01:02:38.479585-07:00,1001.6724853515625,10.735159,10735.159 +32260,2025-03-11T01:02:49.216892-07:00,1001.6875,10.737307,10737.307 +32261,2025-03-11T01:02:59.942337-07:00,1001.6954956054688,10.725445,10725.445 +32262,2025-03-11T01:03:10.679535-07:00,1001.7131958007812,10.737198,10737.198 +32263,2025-03-11T01:03:21.404360-07:00,1001.6867065429688,10.724825,10724.825 +32264,2025-03-11T01:03:32.138335-07:00,1001.6699829101562,10.733975,10733.975 +32265,2025-03-11T01:03:42.870058-07:00,1001.674560546875,10.731723,10731.723 +32266,2025-03-11T01:03:53.602506-07:00,1001.6612548828125,10.732448,10732.448 +32267,2025-03-11T01:04:04.337536-07:00,1001.6773681640625,10.73503,10735.03 +32268,2025-03-11T01:04:15.067333-07:00,1001.6459350585938,10.729797,10729.797 +32269,2025-03-11T01:04:25.794507-07:00,1001.6553955078125,10.727174,10727.174 +32270,2025-03-11T01:04:36.530518-07:00,1001.6849365234375,10.736011,10736.011 +32271,2025-03-11T01:04:47.252675-07:00,1001.6504516601562,10.722157,10722.157 +32272,2025-03-11T01:04:57.983117-07:00,1001.655029296875,10.730442,10730.442 +32273,2025-03-11T01:05:08.711395-07:00,1001.6925659179688,10.728278,10728.278 +32274,2025-03-11T01:05:19.443336-07:00,1001.6939086914062,10.731941,10731.941 +32275,2025-03-11T01:05:30.174135-07:00,1001.6754760742188,10.730799,10730.799 +32276,2025-03-11T01:05:40.905334-07:00,1001.6953125,10.731199,10731.199 +32277,2025-03-11T01:05:51.629388-07:00,1001.7315673828125,10.724054,10724.054 +32278,2025-03-11T01:06:02.362890-07:00,1001.6998291015625,10.733502,10733.502 +32279,2025-03-11T01:06:13.100333-07:00,1001.6947021484375,10.737443,10737.443 +32280,2025-03-11T01:06:23.827515-07:00,1001.6845092773438,10.727182,10727.182 +32281,2025-03-11T01:06:34.551671-07:00,1001.6712646484375,10.724156,10724.156 +32282,2025-03-11T01:06:45.289333-07:00,1001.6942138671875,10.737662,10737.662 +32283,2025-03-11T01:06:56.013521-07:00,1001.6677856445312,10.724188,10724.188 +32284,2025-03-11T01:07:06.743333-07:00,1001.670654296875,10.729812,10729.812 +32285,2025-03-11T01:07:17.473336-07:00,1001.705322265625,10.730003,10730.003 +32286,2025-03-11T01:07:28.209551-07:00,1001.7081298828125,10.736215,10736.215 +32287,2025-03-11T01:07:38.936528-07:00,1001.721435546875,10.726977,10726.977 +32288,2025-03-11T01:07:49.669336-07:00,1001.7164916992188,10.732808,10732.808 +32289,2025-03-11T01:08:00.403396-07:00,1001.7324829101562,10.73406,10734.06 +32290,2025-03-11T01:08:11.133516-07:00,1001.725830078125,10.73012,10730.12 +32291,2025-03-11T01:08:21.866618-07:00,1001.7091674804688,10.733102,10733.102 +32292,2025-03-11T01:08:32.595333-07:00,1001.7237548828125,10.728715,10728.715 +32293,2025-03-11T01:08:43.324546-07:00,1001.7185668945312,10.729213,10729.213 +32294,2025-03-11T01:08:54.061739-07:00,1001.7203369140625,10.737193,10737.193 +32295,2025-03-11T01:09:04.786377-07:00,1001.7268676757812,10.724638,10724.638 +32296,2025-03-11T01:09:15.516548-07:00,1001.7313842773438,10.730171,10730.171 +32297,2025-03-11T01:09:26.245329-07:00,1001.7048950195312,10.728781,10728.781 +32298,2025-03-11T01:09:36.983406-07:00,1001.7327880859375,10.738077,10738.077 +32299,2025-03-11T01:09:47.708747-07:00,1001.7115478515625,10.725341,10725.341 +32300,2025-03-11T01:09:58.445524-07:00,1001.7341918945312,10.736777,10736.777 +32301,2025-03-11T01:10:09.178342-07:00,1001.7107543945312,10.732818,10732.818 +32302,2025-03-11T01:10:19.908561-07:00,1001.758544921875,10.730219,10730.219 +32303,2025-03-11T01:10:30.639600-07:00,1001.713623046875,10.731039,10731.039 +32304,2025-03-11T01:10:41.371530-07:00,1001.6902465820312,10.73193,10731.93 +32305,2025-03-11T01:10:52.106339-07:00,1001.678466796875,10.734809,10734.809 +32306,2025-03-11T01:11:02.841500-07:00,1001.682861328125,10.735161,10735.161 +32307,2025-03-11T01:11:13.573534-07:00,1001.7006225585938,10.732034,10732.034 +32308,2025-03-11T01:11:24.300403-07:00,1001.6838989257812,10.726869,10726.869 +32309,2025-03-11T01:11:35.036570-07:00,1001.708251953125,10.736167,10736.167 +32310,2025-03-11T01:11:45.761533-07:00,1001.7061157226562,10.724963,10724.963 +32311,2025-03-11T01:11:56.490334-07:00,1001.7207641601562,10.728801,10728.801 +32312,2025-03-11T01:12:07.227103-07:00,1001.6907958984375,10.736769,10736.769 +32313,2025-03-11T01:12:17.957355-07:00,1001.6868896484375,10.730252,10730.252 +32314,2025-03-11T01:12:28.699124-07:00,1001.7245483398438,10.741769,10741.769 +32315,2025-03-11T01:12:39.433798-07:00,1001.707763671875,10.734674,10734.674 +32316,2025-03-11T01:12:50.162514-07:00,1001.6843872070312,10.728716,10728.716 +32317,2025-03-11T01:13:00.892403-07:00,1001.7084350585938,10.729889,10729.889 +32318,2025-03-11T01:13:11.631333-07:00,1001.7034301757812,10.73893,10738.93 +32319,2025-03-11T01:13:22.361511-07:00,1001.7017211914062,10.730178,10730.178 +32320,2025-03-11T01:13:33.094167-07:00,1001.7044677734375,10.732656,10732.656 +32321,2025-03-11T01:13:43.832342-07:00,1001.6978149414062,10.738175,10738.175 +32322,2025-03-11T01:13:54.558485-07:00,1001.6863403320312,10.726143,10726.143 +32323,2025-03-11T01:14:05.291541-07:00,1001.7089233398438,10.733056,10733.056 +32324,2025-03-11T01:14:16.030413-07:00,1001.693603515625,10.738872,10738.872 +32325,2025-03-11T01:14:26.758545-07:00,1001.6950073242188,10.728132,10728.132 +32326,2025-03-11T01:14:37.487418-07:00,1001.716552734375,10.728873,10728.873 +32327,2025-03-11T01:14:48.228497-07:00,1001.6834106445312,10.741079,10741.079 +32328,2025-03-11T01:14:58.958331-07:00,1001.699462890625,10.729834,10729.834 +32329,2025-03-11T01:15:09.690503-07:00,1001.722412109375,10.732172,10732.172 +32330,2025-03-11T01:15:20.429747-07:00,1001.6893920898438,10.739244,10739.244 +32331,2025-03-11T01:15:31.164818-07:00,1001.7189331054688,10.735071,10735.071 +32332,2025-03-11T01:15:41.889336-07:00,1001.7401733398438,10.724518,10724.518 +32333,2025-03-11T01:15:52.631329-07:00,1001.7136840820312,10.741993,10741.993 +32334,2025-03-11T01:16:03.361506-07:00,1001.7189331054688,10.730177,10730.177 +32335,2025-03-11T01:16:14.102214-07:00,1001.7217407226562,10.740708,10740.708 +32336,2025-03-11T01:16:24.829333-07:00,1001.7415771484375,10.727119,10727.119 +32337,2025-03-11T01:16:35.570332-07:00,1001.73486328125,10.740999,10740.999 +32338,2025-03-11T01:16:46.295537-07:00,1001.7432250976562,10.725205,10725.205 +32339,2025-03-11T01:16:57.036369-07:00,1001.72998046875,10.740832,10740.832 +32340,2025-03-11T01:17:07.765400-07:00,1001.7578125,10.729031,10729.031 +32341,2025-03-11T01:17:18.501361-07:00,1001.7167358398438,10.735961,10735.961 +32342,2025-03-11T01:17:29.231789-07:00,1001.751220703125,10.730428,10730.428 +32343,2025-03-11T01:17:39.970329-07:00,1001.7498168945312,10.73854,10738.54 +32344,2025-03-11T01:17:50.701528-07:00,1001.728271484375,10.731199,10731.199 +32345,2025-03-11T01:18:01.446332-07:00,1001.7217407226562,10.744804,10744.804 +32346,2025-03-11T01:18:12.181911-07:00,1001.72998046875,10.735579,10735.579 +32347,2025-03-11T01:18:22.915695-07:00,1001.7415771484375,10.733784,10733.784 +32348,2025-03-11T01:18:33.649333-07:00,1001.7564086914062,10.733638,10733.638 +32349,2025-03-11T01:18:44.382488-07:00,1001.723388671875,10.733155,10733.155 +32350,2025-03-11T01:18:55.113513-07:00,1001.7564086914062,10.731025,10731.025 +32351,2025-03-11T01:19:05.850332-07:00,1001.7335205078125,10.736819,10736.819 +32352,2025-03-11T01:19:16.580656-07:00,1001.7547607421875,10.730324,10730.324 +32353,2025-03-11T01:19:27.317901-07:00,1001.7481079101562,10.737245,10737.245 +32354,2025-03-11T01:19:38.053731-07:00,1001.7614135742188,10.73583,10735.83 +32355,2025-03-11T01:19:48.779334-07:00,1001.7467041015625,10.725603,10725.603 +32356,2025-03-11T01:19:59.519335-07:00,1001.7533569335938,10.740001,10740.001 +32357,2025-03-11T01:20:10.251621-07:00,1001.7453002929688,10.732286,10732.286 +32358,2025-03-11T01:20:20.981925-07:00,1001.7568969726562,10.730304,10730.304 +32359,2025-03-11T01:20:31.718399-07:00,1001.763427734375,10.736474,10736.474 +32360,2025-03-11T01:20:42.451519-07:00,1001.7554931640625,10.73312,10733.12 +32361,2025-03-11T01:20:53.181510-07:00,1001.7554931640625,10.729991,10729.991 +32362,2025-03-11T01:21:03.913336-07:00,1001.7767333984375,10.731826,10731.826 +32363,2025-03-11T01:21:14.652330-07:00,1001.7474975585938,10.738994,10738.994 +32364,2025-03-11T01:21:25.391466-07:00,1001.7642211914062,10.739136,10739.136 +32365,2025-03-11T01:21:36.116486-07:00,1001.7854614257812,10.72502,10725.02 +32366,2025-03-11T01:21:46.847333-07:00,1001.776123046875,10.730847,10730.847 +32367,2025-03-11T01:21:57.574555-07:00,1001.8038940429688,10.727222,10727.222 +32368,2025-03-11T01:22:08.313524-07:00,1001.7876586914062,10.738969,10738.969 +32369,2025-03-11T01:22:19.043432-07:00,1001.8092041015625,10.729908,10729.908 +32370,2025-03-11T01:22:29.770331-07:00,1001.7913818359375,10.726899,10726.899 +32371,2025-03-11T01:22:40.506516-07:00,1001.7781982421875,10.736185,10736.185 +32372,2025-03-11T01:22:51.236528-07:00,1001.775146484375,10.730012,10730.012 +32373,2025-03-11T01:23:01.966656-07:00,1001.7619018554688,10.730128,10730.128 +32374,2025-03-11T01:23:12.692959-07:00,1001.7899780273438,10.726303,10726.303 +32375,2025-03-11T01:23:23.422523-07:00,1001.78173828125,10.729564,10729.564 +32376,2025-03-11T01:23:34.157976-07:00,1001.7737426757812,10.735453,10735.453 +32377,2025-03-11T01:23:44.883108-07:00,1001.7949829101562,10.725132,10725.132 +32378,2025-03-11T01:23:55.613385-07:00,1001.7723388671875,10.730277,10730.277 +32379,2025-03-11T01:24:06.345801-07:00,1001.7771606445312,10.732416,10732.416 +32380,2025-03-11T01:24:17.079519-07:00,1001.7904663085938,10.733718,10733.718 +32381,2025-03-11T01:24:27.808336-07:00,1001.77587890625,10.728817,10728.817 +32382,2025-03-11T01:24:38.541888-07:00,1001.77587890625,10.733552,10733.552 +32383,2025-03-11T01:24:49.271518-07:00,1001.7890625,10.72963,10729.63 +32384,2025-03-11T01:25:00.007569-07:00,1001.8009643554688,10.736051,10736.051 +32385,2025-03-11T01:25:10.736640-07:00,1001.7647094726562,10.729071,10729.071 +32386,2025-03-11T01:25:21.465505-07:00,1001.7859497070312,10.728865,10728.865 +32387,2025-03-11T01:25:32.191713-07:00,1001.7714233398438,10.726208,10726.208 +32388,2025-03-11T01:25:42.918332-07:00,1001.7762451171875,10.726619,10726.619 +32389,2025-03-11T01:25:53.657487-07:00,1001.81591796875,10.739155,10739.155 +32390,2025-03-11T01:26:04.388373-07:00,1001.7943725585938,10.730886,10730.886 +32391,2025-03-11T01:26:15.110631-07:00,1001.7784423828125,10.722258,10722.258 +32392,2025-03-11T01:26:25.841558-07:00,1001.7665405273438,10.730927,10730.927 +32393,2025-03-11T01:26:36.560629-07:00,1001.7902221679688,10.719071,10719.071 +32394,2025-03-11T01:26:47.291569-07:00,1001.7902221679688,10.73094,10730.94 +32395,2025-03-11T01:26:58.020336-07:00,1001.7703857421875,10.728767,10728.767 +32396,2025-03-11T01:27:08.740135-07:00,1001.7686767578125,10.719799,10719.799 +32397,2025-03-11T01:27:19.472617-07:00,1001.77392578125,10.732482,10732.482 +32398,2025-03-11T01:27:30.201337-07:00,1001.7818603515625,10.72872,10728.72 +32399,2025-03-11T01:27:40.923738-07:00,1001.74609375,10.722401,10722.401 +32400,2025-03-11T01:27:51.650335-07:00,1001.7835693359375,10.726597,10726.597 +32401,2025-03-11T01:28:02.390365-07:00,1001.787109375,10.74003,10740.03 +32402,2025-03-11T01:28:13.113724-07:00,1001.8070068359375,10.723359,10723.359 +32403,2025-03-11T01:28:23.845361-07:00,1001.7937622070312,10.731637,10731.637 +32404,2025-03-11T01:28:34.574339-07:00,1001.7923583984375,10.728978,10728.978 +32405,2025-03-11T01:28:45.296434-07:00,1001.787109375,10.722095,10722.095 +32406,2025-03-11T01:28:56.027425-07:00,1001.8135986328125,10.730991,10730.991 +32407,2025-03-11T01:29:06.756570-07:00,1001.8201293945312,10.729145,10729.145 +32408,2025-03-11T01:29:17.481544-07:00,1001.7906494140625,10.724974,10724.974 +32409,2025-03-11T01:29:28.216336-07:00,1001.821533203125,10.734792,10734.792 +32410,2025-03-11T01:29:38.941505-07:00,1001.8056030273438,10.725169,10725.169 +32411,2025-03-11T01:29:49.671711-07:00,1001.8038940429688,10.730206,10730.206 +32412,2025-03-11T01:30:00.390847-07:00,1001.8038940429688,10.719136,10719.136 +32413,2025-03-11T01:30:11.116333-07:00,1001.7990112304688,10.725486,10725.486 +32414,2025-03-11T01:30:21.846624-07:00,1001.82373046875,10.730291,10730.291 +32415,2025-03-11T01:30:32.576528-07:00,1001.8104858398438,10.729904,10729.904 +32416,2025-03-11T01:30:43.306336-07:00,1001.8386840820312,10.729808,10729.808 +32417,2025-03-11T01:30:54.042530-07:00,1001.8568115234375,10.736194,10736.194 +32418,2025-03-11T01:31:04.774519-07:00,1001.8369750976562,10.731989,10731.989 +32419,2025-03-11T01:31:15.500409-07:00,1001.8289184570312,10.72589,10725.89 +32420,2025-03-11T01:31:26.234849-07:00,1001.8289184570312,10.73444,10734.44 +32421,2025-03-11T01:31:36.961508-07:00,1001.8369750976562,10.726659,10726.659 +32422,2025-03-11T01:31:47.689365-07:00,1001.8473510742188,10.727857,10727.857 +32423,2025-03-11T01:31:58.430510-07:00,1001.8275146484375,10.741145,10741.145 +32424,2025-03-11T01:32:09.160518-07:00,1001.8223266601562,10.730008,10730.008 +32425,2025-03-11T01:32:19.894143-07:00,1001.8540649414062,10.733625,10733.625 +32426,2025-03-11T01:32:30.615404-07:00,1001.8275146484375,10.721261,10721.261 +32427,2025-03-11T01:32:41.349339-07:00,1001.8473510742188,10.733935,10733.935 +32428,2025-03-11T01:32:52.070542-07:00,1001.8487548828125,10.721203,10721.203 +32429,2025-03-11T01:33:02.799021-07:00,1001.8407592773438,10.728479,10728.479 +32430,2025-03-11T01:33:13.521398-07:00,1001.85888671875,10.722377,10722.377 +32431,2025-03-11T01:33:24.257546-07:00,1001.8509521484375,10.736148,10736.148 +32432,2025-03-11T01:33:34.978555-07:00,1001.8311157226562,10.721009,10721.009 +32433,2025-03-11T01:33:45.709335-07:00,1001.845703125,10.73078,10730.78 +32434,2025-03-11T01:33:56.433516-07:00,1001.846435546875,10.724181,10724.181 +32435,2025-03-11T01:34:07.167510-07:00,1001.869384765625,10.733994,10733.994 +32436,2025-03-11T01:34:17.893334-07:00,1001.8345336914062,10.725824,10725.824 +32437,2025-03-11T01:34:28.628531-07:00,1001.8411865234375,10.735197,10735.197 +32438,2025-03-11T01:34:39.352654-07:00,1001.818603515625,10.724123,10724.123 +32439,2025-03-11T01:34:50.081541-07:00,1001.8565673828125,10.728887,10728.887 +32440,2025-03-11T01:35:00.812504-07:00,1001.8384399414062,10.730963,10730.963 +32441,2025-03-11T01:35:11.542373-07:00,1001.830078125,10.729869,10729.869 +32442,2025-03-11T01:35:22.281497-07:00,1001.8714599609375,10.739124,10739.124 +32443,2025-03-11T01:35:33.005716-07:00,1001.875,10.724219,10724.219 +32444,2025-03-11T01:35:43.746490-07:00,1001.8485107421875,10.740774,10740.774 +32445,2025-03-11T01:35:54.475363-07:00,1001.8353271484375,10.728873,10728.873 +32446,2025-03-11T01:36:05.206330-07:00,1001.8404541015625,10.730967,10730.967 +32447,2025-03-11T01:36:15.933519-07:00,1001.8551635742188,10.727189,10727.189 +32448,2025-03-11T01:36:26.661337-07:00,1001.8764038085938,10.727818,10727.818 +32449,2025-03-11T01:36:37.397331-07:00,1001.8735961914062,10.735994,10735.994 +32450,2025-03-11T01:36:48.126522-07:00,1001.8721923828125,10.729191,10729.191 +32451,2025-03-11T01:36:58.854488-07:00,1001.8656005859375,10.727966,10727.966 +32452,2025-03-11T01:37:09.577764-07:00,1001.8572387695312,10.723276,10723.276 +32453,2025-03-11T01:37:20.313515-07:00,1001.8624877929688,10.735751,10735.751 +32454,2025-03-11T01:37:31.036522-07:00,1001.8572387695312,10.723007,10723.007 +32455,2025-03-11T01:37:41.775359-07:00,1001.8624877929688,10.738837,10738.837 +32456,2025-03-11T01:37:52.507500-07:00,1001.875732421875,10.732141,10732.141 +32457,2025-03-11T01:38:03.229535-07:00,1001.8460693359375,10.722035,10722.035 +32458,2025-03-11T01:38:13.968407-07:00,1001.8646240234375,10.738872,10738.872 +32459,2025-03-11T01:38:24.690458-07:00,1001.8726806640625,10.722051,10722.051 +32460,2025-03-11T01:38:35.419855-07:00,1001.8579711914062,10.729397,10729.397 +32461,2025-03-11T01:38:46.151409-07:00,1001.8844604492188,10.731554,10731.554 +32462,2025-03-11T01:38:56.878684-07:00,1001.8976440429688,10.727275,10727.275 +32463,2025-03-11T01:39:07.613891-07:00,1001.8897094726562,10.735207,10735.207 +32464,2025-03-11T01:39:18.343516-07:00,1001.9028930664062,10.729625,10729.625 +32465,2025-03-11T01:39:29.062543-07:00,1001.887939453125,10.719027,10719.027 +32466,2025-03-11T01:39:39.795107-07:00,1001.8746948242188,10.732564,10732.564 +32467,2025-03-11T01:39:50.523504-07:00,1001.887939453125,10.728397,10728.397 +32468,2025-03-11T01:40:01.253368-07:00,1001.8681030273438,10.729864,10729.864 +32469,2025-03-11T01:40:11.985451-07:00,1001.8865356445312,10.732083,10732.083 +32470,2025-03-11T01:40:22.711126-07:00,1001.88134765625,10.725675,10725.675 +32471,2025-03-11T01:40:33.438533-07:00,1001.9011840820312,10.727407,10727.407 +32472,2025-03-11T01:40:44.170366-07:00,1001.8998413085938,10.731833,10731.833 +32473,2025-03-11T01:40:54.896533-07:00,1001.9011840820312,10.726167,10726.167 +32474,2025-03-11T01:41:05.629333-07:00,1001.8931274414062,10.7328,10732.8 +32475,2025-03-11T01:41:16.358522-07:00,1001.9143676757812,10.729189,10729.189 +32476,2025-03-11T01:41:27.089536-07:00,1001.9143676757812,10.731014,10731.014 +32477,2025-03-11T01:41:37.816331-07:00,1001.9129638671875,10.726795,10726.795 +32478,2025-03-11T01:41:48.542510-07:00,1001.909912109375,10.726179,10726.179 +32479,2025-03-11T01:41:59.270439-07:00,1001.9160766601562,10.727929,10727.929 +32480,2025-03-11T01:42:09.992522-07:00,1001.919677734375,10.722083,10722.083 +32481,2025-03-11T01:42:20.723335-07:00,1001.8800048828125,10.730813,10730.813 +32482,2025-03-11T01:42:31.449412-07:00,1001.9182739257812,10.726077,10726.077 +32483,2025-03-11T01:42:42.171640-07:00,1001.9328002929688,10.722228,10722.228 +32484,2025-03-11T01:42:52.906334-07:00,1001.905029296875,10.734694,10734.694 +32485,2025-03-11T01:43:03.634522-07:00,1001.919677734375,10.728188,10728.188 +32486,2025-03-11T01:43:14.363878-07:00,1001.9165649414062,10.729356,10729.356 +32487,2025-03-11T01:43:25.097333-07:00,1001.9314575195312,10.733455,10733.455 +32488,2025-03-11T01:43:35.827535-07:00,1001.9071044921875,10.730202,10730.202 +32489,2025-03-11T01:43:46.552995-07:00,1001.9151611328125,10.72546,10725.46 +32490,2025-03-11T01:43:57.287501-07:00,1001.9415893554688,10.734506,10734.506 +32491,2025-03-11T01:44:08.013769-07:00,1001.8908081054688,10.726268,10726.268 +32492,2025-03-11T01:44:18.741334-07:00,1001.8987426757812,10.727565,10727.565 +32493,2025-03-11T01:44:29.473337-07:00,1001.9252319335938,10.732003,10732.003 +32494,2025-03-11T01:44:40.208336-07:00,1001.93701171875,10.734999,10734.999 +32495,2025-03-11T01:44:50.940522-07:00,1001.93701171875,10.732186,10732.186 +32496,2025-03-11T01:45:01.666440-07:00,1001.9357299804688,10.725918,10725.918 +32497,2025-03-11T01:45:12.400592-07:00,1001.9290771484375,10.734152,10734.152 +32498,2025-03-11T01:45:23.130515-07:00,1001.9158325195312,10.729923,10729.923 +32499,2025-03-11T01:45:33.859571-07:00,1001.9078369140625,10.729056,10729.056 +32500,2025-03-11T01:45:44.589537-07:00,1001.9325561523438,10.729966,10729.966 +32501,2025-03-11T01:45:55.321009-07:00,1001.9259643554688,10.731472,10731.472 +32502,2025-03-11T01:46:06.048539-07:00,1001.9378051757812,10.72753,10727.53 +32503,2025-03-11T01:46:16.781699-07:00,1001.9562377929688,10.73316,10733.16 +32504,2025-03-11T01:46:27.515512-07:00,1001.9729614257812,10.733813,10733.813 +32505,2025-03-11T01:46:38.240699-07:00,1001.9795532226562,10.725187,10725.187 +32506,2025-03-11T01:46:48.967925-07:00,1001.9949340820312,10.727226,10727.226 +32507,2025-03-11T01:46:59.702109-07:00,1001.9851684570312,10.734184,10734.184 +32508,2025-03-11T01:47:10.429339-07:00,1001.982421875,10.72723,10727.23 +32509,2025-03-11T01:47:21.163736-07:00,1001.9924926757812,10.734397,10734.397 +32510,2025-03-11T01:47:31.885336-07:00,1002.009521484375,10.7216,10721.6 +32511,2025-03-11T01:47:42.618470-07:00,1002.0086059570312,10.733134,10733.134 +32512,2025-03-11T01:47:53.351431-07:00,1002.0092163085938,10.732961,10732.961 +32513,2025-03-11T01:48:04.078391-07:00,1002.0245361328125,10.72696,10726.96 +32514,2025-03-11T01:48:14.809463-07:00,1002.0075073242188,10.731072,10731.072 +32515,2025-03-11T01:48:25.538971-07:00,1001.99853515625,10.729508,10729.508 +32516,2025-03-11T01:48:36.273682-07:00,1001.961669921875,10.734711,10734.711 +32517,2025-03-11T01:48:47.002333-07:00,1001.9766235351562,10.728651,10728.651 +32518,2025-03-11T01:48:57.724525-07:00,1001.9888305664062,10.722192,10722.192 +32519,2025-03-11T01:49:08.452638-07:00,1001.9849853515625,10.728113,10728.113 +32520,2025-03-11T01:49:19.181526-07:00,1001.95751953125,10.728888,10728.888 +32521,2025-03-11T01:49:29.912516-07:00,1001.956787109375,10.73099,10730.99 +32522,2025-03-11T01:49:40.643541-07:00,1001.9721069335938,10.731025,10731.025 +32523,2025-03-11T01:49:51.360531-07:00,1001.9728393554688,10.71699,10716.99 +32524,2025-03-11T01:50:02.096358-07:00,1001.9570922851562,10.735827,10735.827 +32525,2025-03-11T01:50:12.820337-07:00,1001.959228515625,10.723979,10723.979 +32526,2025-03-11T01:50:23.546869-07:00,1001.9400024414062,10.726532,10726.532 +32527,2025-03-11T01:50:34.279333-07:00,1001.9403686523438,10.732464,10732.464 +32528,2025-03-11T01:50:45.008337-07:00,1001.9428100585938,10.729004,10729.004 +32529,2025-03-11T01:50:55.729539-07:00,1001.91845703125,10.721202,10721.202 +32530,2025-03-11T01:51:06.459362-07:00,1001.9615478515625,10.729823,10729.823 +32531,2025-03-11T01:51:17.191901-07:00,1001.9584350585938,10.732539,10732.539 +32532,2025-03-11T01:51:27.922328-07:00,1001.9306030273438,10.730427,10730.427 +32533,2025-03-11T01:51:38.661744-07:00,1001.9215698242188,10.739416,10739.416 +32534,2025-03-11T01:51:49.390081-07:00,1001.933349609375,10.728337,10728.337 +32535,2025-03-11T01:52:00.125515-07:00,1001.9054565429688,10.735434,10735.434 +32536,2025-03-11T01:52:10.852397-07:00,1001.9142456054688,10.726882,10726.882 +32537,2025-03-11T01:52:21.587574-07:00,1001.9420166015625,10.735177,10735.177 +32538,2025-03-11T01:52:32.311559-07:00,1001.9207763671875,10.723985,10723.985 +32539,2025-03-11T01:52:43.045337-07:00,1001.9124755859375,10.733778,10733.778 +32540,2025-03-11T01:52:53.771556-07:00,1001.930908203125,10.726219,10726.219 +32541,2025-03-11T01:53:04.508496-07:00,1001.8814697265625,10.73694,10736.94 +32542,2025-03-11T01:53:15.231337-07:00,1001.9044799804688,10.722841,10722.841 +32543,2025-03-11T01:53:25.966422-07:00,1001.90966796875,10.735085,10735.085 +32544,2025-03-11T01:53:36.736949-07:00,1001.9065551757812,10.770527,10770.527 +32545,2025-03-11T01:53:47.467754-07:00,1001.8765869140625,10.730805,10730.805 +32546,2025-03-11T01:53:58.195781-07:00,1001.8602905273438,10.728027,10728.027 +32547,2025-03-11T01:54:08.930943-07:00,1001.8947143554688,10.735162,10735.162 +32548,2025-03-11T01:54:19.651831-07:00,1001.8748168945312,10.720888,10720.888 +32549,2025-03-11T01:54:30.384956-07:00,1001.8551025390625,10.733125,10733.125 +32550,2025-03-11T01:54:41.110813-07:00,1001.8435668945312,10.725857,10725.857 +32551,2025-03-11T01:54:51.840940-07:00,1001.8616943359375,10.730127,10730.127 +32552,2025-03-11T01:55:02.572770-07:00,1001.8898315429688,10.73183,10731.83 +32553,2025-03-11T01:55:13.305920-07:00,1001.8568115234375,10.73315,10733.15 +32554,2025-03-11T01:55:24.031752-07:00,1001.846435546875,10.725832,10725.832 +32555,2025-03-11T01:55:34.762875-07:00,1001.8529663085938,10.731123,10731.123 +32556,2025-03-11T01:55:45.487785-07:00,1001.8560791015625,10.72491,10724.91 +32557,2025-03-11T01:55:56.219754-07:00,1001.8150634765625,10.731969,10731.969 +32558,2025-03-11T01:56:06.948942-07:00,1001.811279296875,10.729188,10729.188 +32559,2025-03-11T01:56:17.686866-07:00,1001.8311157226562,10.737924,10737.924 +32560,2025-03-11T01:56:28.414754-07:00,1001.8394775390625,10.727888,10727.888 +32561,2025-03-11T01:56:39.143937-07:00,1001.7998657226562,10.729183,10729.183 +32562,2025-03-11T01:56:49.871753-07:00,1001.8123168945312,10.727816,10727.816 +32563,2025-03-11T01:57:00.596843-07:00,1001.799072265625,10.72509,10725.09 +32564,2025-03-11T01:57:11.328018-07:00,1001.8182983398438,10.731175,10731.175 +32565,2025-03-11T01:57:22.063755-07:00,1001.8314819335938,10.735737,10735.737 +32566,2025-03-11T01:57:32.795187-07:00,1001.7918701171875,10.731432,10731.432 +32567,2025-03-11T01:57:43.525940-07:00,1001.7932739257812,10.730753,10730.753 +32568,2025-03-11T01:57:54.251753-07:00,1001.79638671875,10.725813,10725.813 +32569,2025-03-11T01:58:04.987988-07:00,1001.7796630859375,10.736235,10736.235 +32570,2025-03-11T01:58:15.715931-07:00,1001.7929077148438,10.727943,10727.943 +32571,2025-03-11T01:58:26.457471-07:00,1001.7810668945312,10.74154,10741.54 +32572,2025-03-11T01:58:37.180047-07:00,1001.790771484375,10.722576,10722.576 +32573,2025-03-11T01:58:47.907932-07:00,1001.7949829101562,10.727885,10727.885 +32574,2025-03-11T01:58:58.648991-07:00,1001.8179931640625,10.741059,10741.059 +32575,2025-03-11T01:59:09.379297-07:00,1001.812744140625,10.730306,10730.306 +32576,2025-03-11T01:59:20.099944-07:00,1001.7681884765625,10.720647,10720.647 +32577,2025-03-11T01:59:30.833474-07:00,1001.7926025390625,10.73353,10733.53 +32578,2025-03-11T01:59:41.560925-07:00,1001.77099609375,10.727451,10727.451 +32579,2025-03-11T01:59:52.298971-07:00,1001.774169921875,10.738046,10738.046 +32580,2025-03-11T02:00:03.033920-07:00,1001.7490844726562,10.734949,10734.949 +32581,2025-03-11T02:00:13.759957-07:00,1001.7654418945312,10.726037,10726.037 +32582,2025-03-11T02:00:24.491751-07:00,1001.768310546875,10.731794,10731.794 +32583,2025-03-11T02:00:35.225962-07:00,1001.7470092773438,10.734211,10734.211 +32584,2025-03-11T02:00:45.964777-07:00,1001.7647705078125,10.738815,10738.815 +32585,2025-03-11T02:00:56.687760-07:00,1001.7890625,10.722983,10722.983 +32586,2025-03-11T02:01:07.420932-07:00,1001.7810668945312,10.733172,10733.172 +32587,2025-03-11T02:01:18.157752-07:00,1001.7575073242188,10.73682,10736.82 +32588,2025-03-11T02:01:28.883858-07:00,1001.7393798828125,10.726106,10726.106 +32589,2025-03-11T02:01:39.616060-07:00,1001.720947265625,10.732202,10732.202 +32590,2025-03-11T02:01:50.346011-07:00,1001.7288818359375,10.729951,10729.951 +32591,2025-03-11T02:02:01.079780-07:00,1001.7320556640625,10.733769,10733.769 +32592,2025-03-11T02:02:11.801164-07:00,1001.7268676757812,10.721384,10721.384 +32593,2025-03-11T02:02:22.537903-07:00,1001.7285766601562,10.736739,10736.739 +32594,2025-03-11T02:02:33.263751-07:00,1001.7167358398438,10.725848,10725.848 +32595,2025-03-11T02:02:43.993854-07:00,1001.7327270507812,10.730103,10730.103 +32596,2025-03-11T02:02:54.723921-07:00,1001.7174072265625,10.730067,10730.067 +32597,2025-03-11T02:03:05.451927-07:00,1001.739013671875,10.728006,10728.006 +32598,2025-03-11T02:03:16.184089-07:00,1001.7588500976562,10.732162,10732.162 +32599,2025-03-11T02:03:26.913747-07:00,1001.7615356445312,10.729658,10729.658 +32600,2025-03-11T02:03:37.647174-07:00,1001.7484130859375,10.733427,10733.427 +32601,2025-03-11T02:03:48.375191-07:00,1001.7413940429688,10.728017,10728.017 +32602,2025-03-11T02:03:59.109749-07:00,1001.7462768554688,10.734558,10734.558 +32603,2025-03-11T02:04:09.837755-07:00,1001.7427978515625,10.728006,10728.006 +32604,2025-03-11T02:04:20.569925-07:00,1001.7588500976562,10.73217,10732.17 +32605,2025-03-11T02:04:31.305755-07:00,1001.7421264648438,10.73583,10735.83 +32606,2025-03-11T02:04:42.031750-07:00,1001.7452392578125,10.725995,10725.995 +32607,2025-03-11T02:04:52.767760-07:00,1001.7302856445312,10.73601,10736.01 +32608,2025-03-11T02:05:03.500656-07:00,1001.74169921875,10.732896,10732.896 +32609,2025-03-11T02:05:14.232749-07:00,1001.7500610351562,10.732093,10732.093 +32610,2025-03-11T02:05:24.969784-07:00,1001.7316284179688,10.737035,10737.035 +32611,2025-03-11T02:05:35.693231-07:00,1001.7413940429688,10.723447,10723.447 +32612,2025-03-11T02:05:46.429751-07:00,1001.7413940429688,10.73652,10736.52 +32613,2025-03-11T02:05:57.158754-07:00,1001.7427368164062,10.729003,10729.003 +32614,2025-03-11T02:06:07.887965-07:00,1001.7625732421875,10.729211,10729.211 +32615,2025-03-11T02:06:18.626824-07:00,1001.7374877929688,10.738859,10738.859 +32616,2025-03-11T02:06:29.355807-07:00,1001.75390625,10.728983,10728.983 +32617,2025-03-11T02:06:40.087935-07:00,1001.725341796875,10.732128,10732.128 +32618,2025-03-11T02:06:50.812753-07:00,1001.7267456054688,10.724818,10724.818 +32619,2025-03-11T02:07:01.548784-07:00,1001.6967163085938,10.736031,10736.031 +32620,2025-03-11T02:07:12.276800-07:00,1001.7210693359375,10.728016,10728.016 +32621,2025-03-11T02:07:23.009776-07:00,1001.7600708007812,10.732976,10732.976 +32622,2025-03-11T02:07:33.738356-07:00,1001.7363891601562,10.72858,10728.58 +32623,2025-03-11T02:07:44.464926-07:00,1001.7196655273438,10.72657,10726.57 +32624,2025-03-11T02:07:55.201841-07:00,1001.7078247070312,10.736915,10736.915 +32625,2025-03-11T02:08:05.927955-07:00,1001.718994140625,10.726114,10726.114 +32626,2025-03-11T02:08:16.663758-07:00,1001.7234497070312,10.735803,10735.803 +32627,2025-03-11T02:08:27.395537-07:00,1001.69873046875,10.731779,10731.779 +32628,2025-03-11T02:08:38.119751-07:00,1001.6868896484375,10.724214,10724.214 +32629,2025-03-11T02:08:48.859025-07:00,1001.656982421875,10.739274,10739.274 +32630,2025-03-11T02:08:59.585791-07:00,1001.6743774414062,10.726766,10726.766 +32631,2025-03-11T02:09:10.320754-07:00,1001.66943359375,10.734963,10734.963 +32632,2025-03-11T02:09:21.053755-07:00,1001.6722412109375,10.733001,10733.001 +32633,2025-03-11T02:09:31.792755-07:00,1001.62109375,10.739,10739.0 +32634,2025-03-11T02:09:42.520775-07:00,1001.6304931640625,10.72802,10728.02 +32635,2025-03-11T02:09:53.249058-07:00,1001.6336059570312,10.728283,10728.283 +32636,2025-03-11T02:10:03.982959-07:00,1001.6084594726562,10.733901,10733.901 +32637,2025-03-11T02:10:14.721930-07:00,1001.6300048828125,10.738971,10738.971 +32638,2025-03-11T02:10:25.452749-07:00,1001.6380615234375,10.730819,10730.819 +32639,2025-03-11T02:10:36.179172-07:00,1001.6077880859375,10.726423,10726.423 +32640,2025-03-11T02:10:46.911928-07:00,1001.576416015625,10.732756,10732.756 +32641,2025-03-11T02:10:57.647759-07:00,1001.5857543945312,10.735831,10735.831 +32642,2025-03-11T02:11:08.378753-07:00,1001.5941162109375,10.730994,10730.994 +32643,2025-03-11T02:11:19.112175-07:00,1001.5889282226562,10.733422,10733.422 +32644,2025-03-11T02:11:29.846488-07:00,1001.5638427734375,10.734313,10734.313 +32645,2025-03-11T02:11:40.576913-07:00,1001.5588989257812,10.730425,10730.425 +32646,2025-03-11T02:11:51.307750-07:00,1001.5617065429688,10.730837,10730.837 +32647,2025-03-11T02:12:02.040042-07:00,1001.584716796875,10.732292,10732.292 +32648,2025-03-11T02:12:12.773005-07:00,1001.5926513671875,10.732963,10732.963 +32649,2025-03-11T02:12:23.500958-07:00,1001.6090698242188,10.727953,10727.953 +32650,2025-03-11T02:12:34.234921-07:00,1001.6023559570312,10.733963,10733.963 +32651,2025-03-11T02:12:44.967150-07:00,1001.603759765625,10.732229,10732.229 +32652,2025-03-11T02:12:55.696751-07:00,1001.618408203125,10.729601,10729.601 +32653,2025-03-11T02:13:06.429853-07:00,1001.600341796875,10.733102,10733.102 +32654,2025-03-11T02:13:17.159995-07:00,1001.6201782226562,10.730142,10730.142 +32655,2025-03-11T02:13:27.898751-07:00,1001.64794921875,10.738756,10738.756 +32656,2025-03-11T02:13:38.632164-07:00,1001.6427612304688,10.733413,10733.413 +32657,2025-03-11T02:13:49.361092-07:00,1001.6201782226562,10.728928,10728.928 +32658,2025-03-11T02:14:00.098257-07:00,1001.6465454101562,10.737165,10737.165 +32659,2025-03-11T02:14:10.835749-07:00,1001.6148681640625,10.737492,10737.492 +32660,2025-03-11T02:14:21.559953-07:00,1001.6361083984375,10.724204,10724.204 +32661,2025-03-11T02:14:32.300745-07:00,1001.66259765625,10.740792,10740.792 +32662,2025-03-11T02:14:43.033902-07:00,1001.6612548828125,10.733157,10733.157 +32663,2025-03-11T02:14:53.761962-07:00,1001.641357421875,10.72806,10728.06 +32664,2025-03-11T02:15:04.503016-07:00,1001.6531982421875,10.741054,10741.054 +32665,2025-03-11T02:15:15.227751-07:00,1001.67578125,10.724735,10724.735 +32666,2025-03-11T02:15:25.961788-07:00,1001.6646728515625,10.734037,10734.037 +32667,2025-03-11T02:15:36.694754-07:00,1001.686279296875,10.732966,10732.966 +32668,2025-03-11T02:15:47.430380-07:00,1001.669921875,10.735626,10735.626 +32669,2025-03-11T02:15:58.161780-07:00,1001.68310546875,10.7314,10731.4 +32670,2025-03-11T02:16:08.893923-07:00,1001.6605224609375,10.732143,10732.143 +32671,2025-03-11T02:16:19.628959-07:00,1001.6671752929688,10.735036,10735.036 +32672,2025-03-11T02:16:30.354830-07:00,1001.7228393554688,10.725871,10725.871 +32673,2025-03-11T02:16:41.090754-07:00,1001.680419921875,10.735924,10735.924 +32674,2025-03-11T02:16:51.823158-07:00,1001.7002563476562,10.732404,10732.404 +32675,2025-03-11T02:17:02.553940-07:00,1001.7103271484375,10.730782,10730.782 +32676,2025-03-11T02:17:13.288816-07:00,1001.7267456054688,10.734876,10734.876 +32677,2025-03-11T02:17:24.010124-07:00,1001.7037353515625,10.721308,10721.308 +32678,2025-03-11T02:17:34.752222-07:00,1001.6793823242188,10.742098,10742.098 +32679,2025-03-11T02:17:45.480754-07:00,1001.68603515625,10.728532,10728.532 +32680,2025-03-11T02:17:56.209747-07:00,1001.692626953125,10.728993,10728.993 +32681,2025-03-11T02:18:06.947948-07:00,1001.67138671875,10.738201,10738.201 +32682,2025-03-11T02:18:17.678157-07:00,1001.682861328125,10.730209,10730.209 +32683,2025-03-11T02:18:28.408751-07:00,1001.6815795898438,10.730594,10730.594 +32684,2025-03-11T02:18:39.141920-07:00,1001.6815795898438,10.733169,10733.169 +32685,2025-03-11T02:18:49.882050-07:00,1001.701416015625,10.74013,10740.13 +32686,2025-03-11T02:19:00.607785-07:00,1001.7181396484375,10.725735,10725.735 +32687,2025-03-11T02:19:11.343752-07:00,1001.691650390625,10.735967,10735.967 +32688,2025-03-11T02:19:22.073160-07:00,1001.7246704101562,10.729408,10729.408 +32689,2025-03-11T02:19:32.803955-07:00,1001.6902465820312,10.730795,10730.795 +32690,2025-03-11T02:19:43.534978-07:00,1001.762939453125,10.731023,10731.023 +32691,2025-03-11T02:19:54.271942-07:00,1001.7299194335938,10.736964,10736.964 +32692,2025-03-11T02:20:04.999747-07:00,1001.713623046875,10.727805,10727.805 +32693,2025-03-11T02:20:15.731914-07:00,1001.7285766601562,10.732167,10732.167 +32694,2025-03-11T02:20:26.462140-07:00,1001.7003173828125,10.730226,10730.226 +32695,2025-03-11T02:20:37.197775-07:00,1001.7334594726562,10.735635,10735.635 +32696,2025-03-11T02:20:47.928765-07:00,1001.7532958984375,10.73099,10730.99 +32697,2025-03-11T02:20:58.654961-07:00,1001.6804809570312,10.726196,10726.196 +32698,2025-03-11T02:21:09.395008-07:00,1001.7320556640625,10.740047,10740.047 +32699,2025-03-11T02:21:20.126750-07:00,1001.7107543945312,10.731742,10731.742 +32700,2025-03-11T02:21:30.854986-07:00,1001.729248046875,10.728236,10728.236 +32701,2025-03-11T02:21:41.590169-07:00,1001.7174072265625,10.735183,10735.183 +32702,2025-03-11T02:21:52.317752-07:00,1001.7240600585938,10.727583,10727.583 +32703,2025-03-11T02:22:03.054753-07:00,1001.7174072265625,10.737001,10737.001 +32704,2025-03-11T02:22:13.778938-07:00,1001.71435546875,10.724185,10724.185 +32705,2025-03-11T02:22:24.517753-07:00,1001.71435546875,10.738815,10738.815 +32706,2025-03-11T02:22:35.243986-07:00,1001.6864624023438,10.726233,10726.233 +32707,2025-03-11T02:22:45.970345-07:00,1001.7274780273438,10.726359,10726.359 +32708,2025-03-11T02:22:56.704537-07:00,1001.7539672851562,10.734192,10734.192 +32709,2025-03-11T02:23:07.434817-07:00,1001.7341918945312,10.73028,10730.28 +32710,2025-03-11T02:23:18.166853-07:00,1001.7341918945312,10.732036,10732.036 +32711,2025-03-11T02:23:28.894969-07:00,1001.7261962890625,10.728116,10728.116 +32712,2025-03-11T02:23:39.626788-07:00,1001.7313842773438,10.731819,10731.819 +32713,2025-03-11T02:23:50.356960-07:00,1001.7181396484375,10.730172,10730.172 +32714,2025-03-11T02:24:01.079756-07:00,1001.7379760742188,10.722796,10722.796 +32715,2025-03-11T02:24:11.812926-07:00,1001.7296752929688,10.73317,10733.17 +32716,2025-03-11T02:24:22.541596-07:00,1001.7164306640625,10.72867,10728.67 +32717,2025-03-11T02:24:33.271751-07:00,1001.741455078125,10.730155,10730.155 +32718,2025-03-11T02:24:44.005751-07:00,1001.73486328125,10.734,10734.0 +32719,2025-03-11T02:24:54.733890-07:00,1001.7644653320312,10.728139,10728.139 +32720,2025-03-11T02:25:05.463755-07:00,1001.74951171875,10.729865,10729.865 +32721,2025-03-11T02:25:16.195157-07:00,1001.7546997070312,10.731402,10731.402 +32722,2025-03-11T02:25:26.926933-07:00,1001.7481079101562,10.731776,10731.776 +32723,2025-03-11T02:25:37.657754-07:00,1001.7216186523438,10.730821,10730.821 +32724,2025-03-11T02:25:48.392853-07:00,1001.73486328125,10.735099,10735.099 +32725,2025-03-11T02:25:59.117949-07:00,1001.713623046875,10.725096,10725.096 +32726,2025-03-11T02:26:09.845990-07:00,1001.7334594726562,10.728041,10728.041 +32727,2025-03-11T02:26:20.576973-07:00,1001.7334594726562,10.730983,10730.983 +32728,2025-03-11T02:26:31.307249-07:00,1001.7105712890625,10.730276,10730.276 +32729,2025-03-11T02:26:42.038775-07:00,1001.7304077148438,10.731526,10731.526 +32730,2025-03-11T02:26:52.758854-07:00,1001.7105712890625,10.720079,10720.079 +32731,2025-03-11T02:27:03.487755-07:00,1001.7091674804688,10.728901,10728.901 +32732,2025-03-11T02:27:14.220932-07:00,1001.7008056640625,10.733177,10733.177 +32733,2025-03-11T02:27:24.946935-07:00,1001.7140502929688,10.726003,10726.003 +32734,2025-03-11T02:27:35.683961-07:00,1001.6980590820312,10.737026,10737.026 +32735,2025-03-11T02:27:46.415755-07:00,1001.725830078125,10.731794,10731.794 +32736,2025-03-11T02:27:57.138951-07:00,1001.7310791015625,10.723196,10723.196 +32737,2025-03-11T02:28:07.868755-07:00,1001.6900024414062,10.729804,10729.804 +32738,2025-03-11T02:28:18.605974-07:00,1001.6868896484375,10.737219,10737.219 +32739,2025-03-11T02:28:29.332940-07:00,1001.6882934570312,10.726966,10726.966 +32740,2025-03-11T02:28:40.058751-07:00,1001.7098388671875,10.725811,10725.811 +32741,2025-03-11T02:28:50.788754-07:00,1001.6935424804688,10.730003,10730.003 +32742,2025-03-11T02:29:01.524932-07:00,1001.6802978515625,10.736178,10736.178 +32743,2025-03-11T02:29:12.249753-07:00,1001.6935424804688,10.724821,10724.821 +32744,2025-03-11T02:29:22.985767-07:00,1001.6854858398438,10.736014,10736.014 +32745,2025-03-11T02:29:33.706286-07:00,1001.670654296875,10.720519,10720.519 +32746,2025-03-11T02:29:44.438060-07:00,1001.6904907226562,10.731774,10731.774 +32747,2025-03-11T02:29:55.170755-07:00,1001.67578125,10.732695,10732.695 +32748,2025-03-11T02:30:05.901937-07:00,1001.70361328125,10.731182,10731.182 +32749,2025-03-11T02:30:16.636777-07:00,1001.7120361328125,10.73484,10734.84 +32750,2025-03-11T02:30:27.365930-07:00,1001.697021484375,10.729153,10729.153 +32751,2025-03-11T02:30:38.100578-07:00,1001.6810302734375,10.734648,10734.648 +32752,2025-03-11T02:30:48.833781-07:00,1001.7089233398438,10.733203,10733.203 +32753,2025-03-11T02:30:59.563952-07:00,1001.6824340820312,10.730171,10730.171 +32754,2025-03-11T02:31:10.299754-07:00,1001.6942138671875,10.735802,10735.802 +32755,2025-03-11T02:31:21.030515-07:00,1001.7140502929688,10.730761,10730.761 +32756,2025-03-11T02:31:31.759754-07:00,1001.6925048828125,10.729239,10729.239 +32757,2025-03-11T02:31:42.496753-07:00,1001.6925048828125,10.736999,10736.999 +32758,2025-03-11T02:31:53.221629-07:00,1001.70751953125,10.724876,10724.876 +32759,2025-03-11T02:32:03.961747-07:00,1001.6793212890625,10.740118,10740.118 +32760,2025-03-11T02:32:14.687114-07:00,1001.69775390625,10.725367,10725.367 +32761,2025-03-11T02:32:25.428783-07:00,1001.68310546875,10.741669,10741.669 +32762,2025-03-11T02:32:36.152892-07:00,1001.6845092773438,10.724109,10724.109 +32763,2025-03-11T02:32:46.888918-07:00,1001.6712646484375,10.736026,10736.026 +32764,2025-03-11T02:32:57.626022-07:00,1001.6911010742188,10.737104,10737.104 +32765,2025-03-11T02:33:08.352933-07:00,1001.689697265625,10.726911,10726.911 +32766,2025-03-11T02:33:19.083751-07:00,1001.6964111328125,10.730818,10730.818 +32767,2025-03-11T02:33:29.823945-07:00,1001.7029418945312,10.740194,10740.194 +32768,2025-03-11T02:33:40.553892-07:00,1001.7029418945312,10.729947,10729.947 +32769,2025-03-11T02:33:51.284997-07:00,1001.7012329101562,10.731105,10731.105 +32770,2025-03-11T02:34:02.008750-07:00,1001.7276611328125,10.723753,10723.753 +32771,2025-03-11T02:34:12.745972-07:00,1001.7276611328125,10.737222,10737.222 +32772,2025-03-11T02:34:23.474958-07:00,1001.7276611328125,10.728986,10728.986 +32773,2025-03-11T02:34:34.206754-07:00,1001.71826171875,10.731796,10731.796 +32774,2025-03-11T02:34:44.937750-07:00,1001.7276611328125,10.730996,10730.996 +32775,2025-03-11T02:34:55.666773-07:00,1001.6984252929688,10.729023,10729.023 +32776,2025-03-11T02:35:06.400758-07:00,1001.7380981445312,10.733985,10733.985 +32777,2025-03-11T02:35:17.124769-07:00,1001.7447509765625,10.724011,10724.011 +32778,2025-03-11T02:35:27.858926-07:00,1001.7430419921875,10.734157,10734.157 +32779,2025-03-11T02:35:38.589246-07:00,1001.7315673828125,10.73032,10730.32 +32780,2025-03-11T02:35:49.317950-07:00,1001.7363891601562,10.728704,10728.704 +32781,2025-03-11T02:36:00.053043-07:00,1001.7363891601562,10.735093,10735.093 +32782,2025-03-11T02:36:10.784992-07:00,1001.7284545898438,10.731949,10731.949 +32783,2025-03-11T02:36:21.513939-07:00,1001.732177734375,10.728947,10728.947 +32784,2025-03-11T02:36:32.254154-07:00,1001.740234375,10.740215,10740.215 +32785,2025-03-11T02:36:42.986751-07:00,1001.7454833984375,10.732597,10732.597 +32786,2025-03-11T02:36:53.719763-07:00,1001.732177734375,10.733012,10733.012 +32787,2025-03-11T02:37:04.444142-07:00,1001.7371826171875,10.724379,10724.379 +32788,2025-03-11T02:37:15.178964-07:00,1001.7503051757812,10.734822,10734.822 +32789,2025-03-11T02:37:25.904755-07:00,1001.783447265625,10.725791,10725.791 +32790,2025-03-11T02:37:36.643933-07:00,1001.76220703125,10.739178,10739.178 +32791,2025-03-11T02:37:47.371751-07:00,1001.7740478515625,10.727818,10727.818 +32792,2025-03-11T02:37:58.101953-07:00,1001.7391967773438,10.730202,10730.202 +32793,2025-03-11T02:38:08.834749-07:00,1001.7510986328125,10.732796,10732.796 +32794,2025-03-11T02:38:19.570866-07:00,1001.745849609375,10.736117,10736.117 +32795,2025-03-11T02:38:30.308895-07:00,1001.776123046875,10.738029,10738.029 +32796,2025-03-11T02:38:41.037756-07:00,1001.7496948242188,10.728861,10728.861 +32797,2025-03-11T02:38:51.769580-07:00,1001.7479858398438,10.731824,10731.824 +32798,2025-03-11T02:39:02.503751-07:00,1001.7545166015625,10.734171,10734.171 +32799,2025-03-11T02:39:13.234960-07:00,1001.7214965820312,10.731209,10731.209 +32800,2025-03-11T02:39:23.975902-07:00,1001.739990234375,10.740942,10740.942 +32801,2025-03-11T02:39:34.698688-07:00,1001.7068481445312,10.722786,10722.786 +32802,2025-03-11T02:39:45.427753-07:00,1001.7054443359375,10.729065,10729.065 +32803,2025-03-11T02:39:56.165752-07:00,1001.71875,10.737999,10737.999 +32804,2025-03-11T02:40:06.891621-07:00,1001.6905517578125,10.725869,10725.869 +32805,2025-03-11T02:40:17.630752-07:00,1001.7235717773438,10.739131,10739.131 +32806,2025-03-11T02:40:28.364935-07:00,1001.674560546875,10.734183,10734.183 +32807,2025-03-11T02:40:39.091797-07:00,1001.6943969726562,10.726862,10726.862 +32808,2025-03-11T02:40:49.823797-07:00,1001.659912109375,10.732,10732.0 +32809,2025-03-11T02:41:00.550959-07:00,1001.6532592773438,10.727162,10727.162 +32810,2025-03-11T02:41:11.279936-07:00,1001.6317138671875,10.728977,10728.977 +32811,2025-03-11T02:41:22.012761-07:00,1001.6481323242188,10.732825,10732.825 +32812,2025-03-11T02:41:32.743747-07:00,1001.6348266601562,10.730986,10730.986 +32813,2025-03-11T02:41:43.473766-07:00,1001.5986938476562,10.730019,10730.019 +32814,2025-03-11T02:41:54.211065-07:00,1001.6004028320312,10.737299,10737.299 +32815,2025-03-11T02:42:04.933756-07:00,1001.5826416015625,10.722691,10722.691 +32816,2025-03-11T02:42:15.673957-07:00,1001.564208984375,10.740201,10740.201 +32817,2025-03-11T02:42:26.402954-07:00,1001.5496215820312,10.728997,10728.997 +32818,2025-03-11T02:42:37.129754-07:00,1001.5677490234375,10.7268,10726.8 +32819,2025-03-11T02:42:47.869017-07:00,1001.513427734375,10.739263,10739.263 +32820,2025-03-11T02:42:58.599920-07:00,1001.5253295898438,10.730903,10730.903 +32821,2025-03-11T02:43:09.323955-07:00,1001.5155639648438,10.724035,10724.035 +32822,2025-03-11T02:43:20.061819-07:00,1001.540283203125,10.737864,10737.864 +32823,2025-03-11T02:43:30.797322-07:00,1001.5093994140625,10.735503,10735.503 +32824,2025-03-11T02:43:41.521748-07:00,1001.5193481445312,10.724426,10724.426 +32825,2025-03-11T02:43:52.245823-07:00,1001.4554443359375,10.724075,10724.075 +32826,2025-03-11T02:44:02.985511-07:00,1001.450927734375,10.739688,10739.688 +32827,2025-03-11T02:44:13.716979-07:00,1001.4464111328125,10.731468,10731.468 +32828,2025-03-11T02:44:24.441943-07:00,1001.4404907226562,10.724964,10724.964 +32829,2025-03-11T02:44:35.168383-07:00,1001.4464111328125,10.72644,10726.44 +32830,2025-03-11T02:44:45.905767-07:00,1001.438720703125,10.737384,10737.384 +32831,2025-03-11T02:44:56.636956-07:00,1001.4395141601562,10.731189,10731.189 +32832,2025-03-11T02:45:07.363115-07:00,1001.43701171875,10.726159,10726.159 +32833,2025-03-11T02:45:18.097232-07:00,1001.4227905273438,10.734117,10734.117 +32834,2025-03-11T02:45:28.820952-07:00,1001.40576171875,10.72372,10723.72 +32835,2025-03-11T02:45:39.554924-07:00,1001.42626953125,10.733972,10733.972 +32836,2025-03-11T02:45:50.282956-07:00,1001.4054565429688,10.728032,10728.032 +32837,2025-03-11T02:46:01.016782-07:00,1001.4032592773438,10.733826,10733.826 +32838,2025-03-11T02:46:11.746927-07:00,1001.3970336914062,10.730145,10730.145 +32839,2025-03-11T02:46:22.479188-07:00,1001.399169921875,10.732261,10732.261 +32840,2025-03-11T02:46:33.214788-07:00,1001.3931884765625,10.7356,10735.6 +32841,2025-03-11T02:46:43.942888-07:00,1001.380615234375,10.7281,10728.1 +32842,2025-03-11T02:46:54.674751-07:00,1001.4039916992188,10.731863,10731.863 +32843,2025-03-11T02:47:05.410857-07:00,1001.3782958984375,10.736106,10736.106 +32844,2025-03-11T02:47:16.136757-07:00,1001.3931884765625,10.7259,10725.9 +32845,2025-03-11T02:47:26.876954-07:00,1001.3834228515625,10.740197,10740.197 +32846,2025-03-11T02:47:37.608780-07:00,1001.3792114257812,10.731826,10731.826 +32847,2025-03-11T02:47:48.338160-07:00,1001.3827514648438,10.72938,10729.38 +32848,2025-03-11T02:47:59.073461-07:00,1001.3584594726562,10.735301,10735.301 +32849,2025-03-11T02:48:09.796754-07:00,1001.3604736328125,10.723293,10723.293 +32850,2025-03-11T02:48:20.533750-07:00,1001.37890625,10.736996,10736.996 +32851,2025-03-11T02:48:31.262927-07:00,1001.3837280273438,10.729177,10729.177 +32852,2025-03-11T02:48:41.988957-07:00,1001.38232421875,10.72603,10726.03 +32853,2025-03-11T02:48:52.726749-07:00,1001.3579711914062,10.737792,10737.792 +32854,2025-03-11T02:49:03.450126-07:00,1001.3778076171875,10.723377,10723.377 +32855,2025-03-11T02:49:14.190884-07:00,1001.3565673828125,10.740758,10740.758 +32856,2025-03-11T02:49:24.917754-07:00,1001.3829956054688,10.72687,10726.87 +32857,2025-03-11T02:49:35.649758-07:00,1001.381591796875,10.732004,10732.004 +32858,2025-03-11T02:49:46.385634-07:00,1001.396240234375,10.735876,10735.876 +32859,2025-03-11T02:49:57.106965-07:00,1001.4042358398438,10.721331,10721.331 +32860,2025-03-11T02:50:07.839295-07:00,1001.38818359375,10.73233,10732.33 +32861,2025-03-11T02:50:18.577930-07:00,1001.4146728515625,10.738635,10738.635 +32862,2025-03-11T02:50:29.305928-07:00,1001.4195556640625,10.727998,10727.998 +32863,2025-03-11T02:50:40.035968-07:00,1001.4129638671875,10.73004,10730.04 +32864,2025-03-11T02:50:50.761145-07:00,1001.4212646484375,10.725177,10725.177 +32865,2025-03-11T02:51:01.490756-07:00,1001.4439086914062,10.729611,10729.611 +32866,2025-03-11T02:51:12.227933-07:00,1001.4226684570312,10.737177,10737.177 +32867,2025-03-11T02:51:22.951747-07:00,1001.437255859375,10.723814,10723.814 +32868,2025-03-11T02:51:33.679972-07:00,1001.4453125,10.728225,10728.225 +32869,2025-03-11T02:51:44.412831-07:00,1001.4550170898438,10.732859,10732.859 +32870,2025-03-11T02:51:55.144989-07:00,1001.4417724609375,10.732158,10732.158 +32871,2025-03-11T02:52:05.871862-07:00,1001.4564208984375,10.726873,10726.873 +32872,2025-03-11T02:52:16.600959-07:00,1001.4661865234375,10.729097,10729.097 +32873,2025-03-11T02:52:27.340357-07:00,1001.4873657226562,10.739398,10739.398 +32874,2025-03-11T02:52:38.064749-07:00,1001.4807739257812,10.724392,10724.392 +32875,2025-03-11T02:52:48.793173-07:00,1001.4890747070312,10.728424,10728.424 +32876,2025-03-11T02:52:59.522753-07:00,1001.51171875,10.72958,10729.58 +32877,2025-03-11T02:53:10.250850-07:00,1001.4852905273438,10.728097,10728.097 +32878,2025-03-11T02:53:20.986981-07:00,1001.5097045898438,10.736131,10736.131 +32879,2025-03-11T02:53:31.720755-07:00,1001.5128173828125,10.733774,10733.774 +32880,2025-03-11T02:53:42.471041-07:00,1001.5061645507812,10.750286,10750.286 +32881,2025-03-11T02:53:53.205536-07:00,1001.52392578125,10.734495,10734.495 +32882,2025-03-11T02:54:03.933648-07:00,1001.5106811523438,10.728112,10728.112 +32883,2025-03-11T02:54:14.666699-07:00,1001.517333984375,10.733051,10733.051 +32884,2025-03-11T02:54:25.401673-07:00,1001.5072021484375,10.734974,10734.974 +32885,2025-03-11T02:54:36.127959-07:00,1001.5103149414062,10.726286,10726.286 +32886,2025-03-11T02:54:46.865741-07:00,1001.4971923828125,10.737782,10737.782 +32887,2025-03-11T02:54:57.597539-07:00,1001.53466796875,10.731798,10731.798 +32888,2025-03-11T02:55:08.333750-07:00,1001.5162353515625,10.736211,10736.211 +32889,2025-03-11T02:55:19.071687-07:00,1001.5326538085938,10.737937,10737.937 +32890,2025-03-11T02:55:29.801541-07:00,1001.5274047851562,10.729854,10729.854 +32891,2025-03-11T02:55:40.539543-07:00,1001.5225219726562,10.738002,10738.002 +32892,2025-03-11T02:55:51.266234-07:00,1001.517333984375,10.726691,10726.691 +32893,2025-03-11T02:56:02.002619-07:00,1001.5201416015625,10.736385,10736.385 +32894,2025-03-11T02:56:12.729539-07:00,1001.541748046875,10.72692,10726.92 +32895,2025-03-11T02:56:23.462832-07:00,1001.5167236328125,10.733293,10733.293 +32896,2025-03-11T02:56:34.199717-07:00,1001.53125,10.736885,10736.885 +32897,2025-03-11T02:56:44.934409-07:00,1001.506591796875,10.734692,10734.692 +32898,2025-03-11T02:56:55.663540-07:00,1001.5093994140625,10.729131,10729.131 +32899,2025-03-11T02:57:06.387538-07:00,1001.5191650390625,10.723998,10723.998 +32900,2025-03-11T02:57:17.126728-07:00,1001.515625,10.73919,10739.19 +32901,2025-03-11T02:57:27.855539-07:00,1001.509033203125,10.728811,10728.811 +32902,2025-03-11T02:57:38.587918-07:00,1001.5066528320312,10.732379,10732.379 +32903,2025-03-11T02:57:49.314806-07:00,1001.5493774414062,10.726888,10726.888 +32904,2025-03-11T02:58:00.056832-07:00,1001.51953125,10.742026,10742.026 +32905,2025-03-11T02:58:10.782738-07:00,1001.5076293945312,10.725906,10725.906 +32906,2025-03-11T02:58:21.511562-07:00,1001.5240478515625,10.728824,10728.824 +32907,2025-03-11T02:58:32.243738-07:00,1001.51220703125,10.732176,10732.176 +32908,2025-03-11T02:58:42.977555-07:00,1001.5003662109375,10.733817,10733.817 +32909,2025-03-11T02:58:53.710759-07:00,1001.5101318359375,10.733204,10733.204 +32910,2025-03-11T02:59:04.435538-07:00,1001.511474609375,10.724779,10724.779 +32911,2025-03-11T02:59:15.168723-07:00,1001.5133056640625,10.733185,10733.185 +32912,2025-03-11T02:59:25.902911-07:00,1001.521240234375,10.734188,10734.188 +32913,2025-03-11T02:59:36.632535-07:00,1001.5240478515625,10.729624,10729.624 +32914,2025-03-11T02:59:58.092302-07:00,1001.52197265625,21.459767,21459.767 +32915,2025-03-11T03:00:08.821539-07:00,1001.5052490234375,10.729237,10729.237 +32916,2025-03-11T03:00:19.559825-07:00,1001.5119018554688,10.738286,10738.286 +32917,2025-03-11T03:00:30.289711-07:00,1001.5348510742188,10.729886,10729.886 +32918,2025-03-11T03:00:41.012572-07:00,1001.5493774414062,10.722861,10722.861 +32919,2025-03-11T03:00:51.744055-07:00,1001.51953125,10.731483,10731.483 +32920,2025-03-11T03:01:02.477746-07:00,1001.5538940429688,10.733691,10733.691 +32921,2025-03-11T03:01:13.204810-07:00,1001.5435180664062,10.727064,10727.064 +32922,2025-03-11T03:01:23.933725-07:00,1001.5187377929688,10.728915,10728.915 +32923,2025-03-11T03:01:34.666501-07:00,1001.533447265625,10.732776,10732.776 +32924,2025-03-11T03:01:45.402599-07:00,1001.5150146484375,10.736098,10736.098 +32925,2025-03-11T03:01:56.125534-07:00,1001.5445556640625,10.722935,10722.935 +32926,2025-03-11T03:02:06.862915-07:00,1001.524658203125,10.737381,10737.381 +32927,2025-03-11T03:02:17.592752-07:00,1001.534423828125,10.729837,10729.837 +32928,2025-03-11T03:02:28.316762-07:00,1001.5570068359375,10.72401,10724.01 +32929,2025-03-11T03:02:39.048950-07:00,1001.5388793945312,10.732188,10732.188 +32930,2025-03-11T03:02:49.788536-07:00,1001.54833984375,10.739586,10739.586 +32931,2025-03-11T03:03:00.517780-07:00,1001.5302124023438,10.729244,10729.244 +32932,2025-03-11T03:03:11.245709-07:00,1001.55419921875,10.727929,10727.929 +32933,2025-03-11T03:03:21.975609-07:00,1001.5145874023438,10.7299,10729.9 +32934,2025-03-11T03:03:32.706571-07:00,1001.51904296875,10.730962,10730.962 +32935,2025-03-11T03:03:43.429210-07:00,1001.545166015625,10.722639,10722.639 +32936,2025-03-11T03:03:54.164824-07:00,1001.5399780273438,10.735614,10735.614 +32937,2025-03-11T03:04:04.899578-07:00,1001.514892578125,10.734754,10734.754 +32938,2025-03-11T03:04:15.633789-07:00,1001.55908203125,10.734211,10734.211 +32939,2025-03-11T03:04:26.357532-07:00,1001.5437622070312,10.723743,10723.743 +32940,2025-03-11T03:04:37.089540-07:00,1001.5420532226562,10.732008,10732.008 +32941,2025-03-11T03:04:47.822631-07:00,1001.572998046875,10.733091,10733.091 +32942,2025-03-11T03:04:58.562906-07:00,1001.5398559570312,10.740275,10740.275 +32943,2025-03-11T03:05:09.287745-07:00,1001.5562744140625,10.724839,10724.839 +32944,2025-03-11T03:05:20.025538-07:00,1001.5524291992188,10.737793,10737.793 +32945,2025-03-11T03:05:30.758974-07:00,1001.5488891601562,10.733436,10733.436 +32946,2025-03-11T03:05:41.493599-07:00,1001.56494140625,10.734625,10734.625 +32947,2025-03-11T03:05:52.229691-07:00,1001.5415649414062,10.736092,10736.092 +32948,2025-03-11T03:06:02.962719-07:00,1001.55126953125,10.733028,10733.028 +32949,2025-03-11T03:06:13.693723-07:00,1001.5328369140625,10.731004,10731.004 +32950,2025-03-11T03:06:24.428740-07:00,1001.5342407226562,10.735017,10735.017 +32951,2025-03-11T03:06:35.162538-07:00,1001.51611328125,10.733798,10733.798 +32952,2025-03-11T03:06:45.893554-07:00,1001.5387573242188,10.731016,10731.016 +32953,2025-03-11T03:06:56.622538-07:00,1001.5432739257812,10.728984,10728.984 +32954,2025-03-11T03:07:07.354539-07:00,1001.5181884765625,10.732001,10732.001 +32955,2025-03-11T03:07:18.085954-07:00,1001.54638671875,10.731415,10731.415 +32956,2025-03-11T03:07:28.822151-07:00,1001.5345458984375,10.736197,10736.197 +32957,2025-03-11T03:07:39.556744-07:00,1001.517822265625,10.734593,10734.593 +32958,2025-03-11T03:07:50.290535-07:00,1001.5257568359375,10.733791,10733.791 +32959,2025-03-11T03:08:01.018715-07:00,1001.495849609375,10.72818,10728.18 +32960,2025-03-11T03:08:11.745748-07:00,1001.50390625,10.727033,10727.033 +32961,2025-03-11T03:08:22.479535-07:00,1001.510498046875,10.733787,10733.787 +32962,2025-03-11T03:08:33.215972-07:00,1001.5184326171875,10.736437,10736.437 +32963,2025-03-11T03:08:43.948316-07:00,1001.501708984375,10.732344,10732.344 +32964,2025-03-11T03:08:54.687303-07:00,1001.5281982421875,10.738987,10738.987 +32965,2025-03-11T03:09:05.417532-07:00,1001.5164184570312,10.730229,10730.229 +32966,2025-03-11T03:09:16.150669-07:00,1001.5181274414062,10.733137,10733.137 +32967,2025-03-11T03:09:26.885555-07:00,1001.5031127929688,10.734886,10734.886 +32968,2025-03-11T03:09:37.617608-07:00,1001.5181274414062,10.732053,10732.053 +32969,2025-03-11T03:09:48.356743-07:00,1001.5181274414062,10.739135,10739.135 +32970,2025-03-11T03:09:59.081202-07:00,1001.4767456054688,10.724459,10724.459 +32971,2025-03-11T03:10:09.819840-07:00,1001.4916381835938,10.738638,10738.638 +32972,2025-03-11T03:10:20.552536-07:00,1001.4718017578125,10.732696,10732.696 +32973,2025-03-11T03:10:31.285534-07:00,1001.4996948242188,10.732998,10732.998 +32974,2025-03-11T03:10:42.013534-07:00,1001.4916381835938,10.728,10728.0 +32975,2025-03-11T03:10:52.745536-07:00,1001.5326538085938,10.732002,10732.002 +32976,2025-03-11T03:11:03.477309-07:00,1001.5194702148438,10.731773,10731.773 +32977,2025-03-11T03:11:14.206601-07:00,1001.4916381835938,10.729292,10729.292 +32978,2025-03-11T03:11:24.935538-07:00,1001.4784545898438,10.728937,10728.937 +32979,2025-03-11T03:11:35.661711-07:00,1001.5114135742188,10.726173,10726.173 +32980,2025-03-11T03:11:46.397584-07:00,1001.501708984375,10.735873,10735.873 +32981,2025-03-11T03:11:57.134531-07:00,1001.501708984375,10.736947,10736.947 +32982,2025-03-11T03:12:07.858755-07:00,1001.5003051757812,10.724224,10724.224 +32983,2025-03-11T03:12:18.598944-07:00,1001.4920043945312,10.740189,10740.189 +32984,2025-03-11T03:12:29.329535-07:00,1001.5201416015625,10.730591,10730.591 +32985,2025-03-11T03:12:40.057713-07:00,1001.4920043945312,10.728178,10728.178 +32986,2025-03-11T03:12:50.781484-07:00,1001.5399780273438,10.723771,10723.771 +32987,2025-03-11T03:13:01.513538-07:00,1001.5119018554688,10.732054,10732.054 +32988,2025-03-11T03:13:12.242727-07:00,1001.5223388671875,10.729189,10729.189 +32989,2025-03-11T03:13:22.970609-07:00,1001.5355224609375,10.727882,10727.882 +32990,2025-03-11T03:13:33.708537-07:00,1001.5223388671875,10.737928,10737.928 +32991,2025-03-11T03:13:44.432830-07:00,1001.494140625,10.724293,10724.293 +32992,2025-03-11T03:13:55.170735-07:00,1001.4795532226562,10.737905,10737.905 +32993,2025-03-11T03:14:05.901823-07:00,1001.4913940429688,10.731088,10731.088 +32994,2025-03-11T03:14:16.629716-07:00,1001.51611328125,10.727893,10727.893 +32995,2025-03-11T03:14:27.361128-07:00,1001.5028076171875,10.731412,10731.412 +32996,2025-03-11T03:14:38.085827-07:00,1001.4749755859375,10.724699,10724.699 +32997,2025-03-11T03:14:48.818541-07:00,1001.435302734375,10.732714,10732.714 +32998,2025-03-11T03:14:59.544065-07:00,1001.4520263671875,10.725524,10725.524 +32999,2025-03-11T03:15:10.278535-07:00,1001.4559326171875,10.73447,10734.47 +33000,2025-03-11T03:15:21.001724-07:00,1001.444091796875,10.723189,10723.189 +33001,2025-03-11T03:15:31.738866-07:00,1001.4308471679688,10.737142,10737.142 +33002,2025-03-11T03:15:42.465678-07:00,1001.429443359375,10.726812,10726.812 +33003,2025-03-11T03:15:53.194727-07:00,1001.39501953125,10.729049,10729.049 +33004,2025-03-11T03:16:03.926663-07:00,1001.3734130859375,10.731936,10731.936 +33005,2025-03-11T03:16:14.648759-07:00,1001.4249877929688,10.722096,10722.096 +33006,2025-03-11T03:16:25.386574-07:00,1001.4051513671875,10.737815,10737.815 +33007,2025-03-11T03:16:36.110534-07:00,1001.4263305664062,10.72396,10723.96 +33008,2025-03-11T03:16:46.837543-07:00,1001.4249877929688,10.727009,10727.009 +33009,2025-03-11T03:16:57.564083-07:00,1001.3839111328125,10.72654,10726.54 +33010,2025-03-11T03:17:08.302538-07:00,1001.3822021484375,10.738455,10738.455 +33011,2025-03-11T03:17:19.028728-07:00,1001.3939819335938,10.72619,10726.19 +33012,2025-03-11T03:17:29.757874-07:00,1001.3807983398438,10.729146,10729.146 +33013,2025-03-11T03:17:40.494535-07:00,1001.349853515625,10.736661,10736.661 +33014,2025-03-11T03:17:51.220540-07:00,1001.349853515625,10.726005,10726.005 +33015,2025-03-11T03:18:01.955721-07:00,1001.37109375,10.735181,10735.181 +33016,2025-03-11T03:18:12.685595-07:00,1001.3418579101562,10.729874,10729.874 +33017,2025-03-11T03:18:23.406995-07:00,1001.3577880859375,10.7214,10721.4 +33018,2025-03-11T03:18:34.136536-07:00,1001.3682861328125,10.729541,10729.541 +33019,2025-03-11T03:18:44.874012-07:00,1001.3682861328125,10.737476,10737.476 +33020,2025-03-11T03:18:55.598542-07:00,1001.3070068359375,10.72453,10724.53 +33021,2025-03-11T03:19:06.326538-07:00,1001.312255859375,10.727996,10727.996 +33022,2025-03-11T03:19:17.057746-07:00,1001.312255859375,10.731208,10731.208 +33023,2025-03-11T03:19:27.789743-07:00,1001.312255859375,10.731997,10731.997 +33024,2025-03-11T03:19:38.515540-07:00,1001.3240356445312,10.725797,10725.797 +33025,2025-03-11T03:19:49.249536-07:00,1001.30419921875,10.733996,10733.996 +33026,2025-03-11T03:19:59.978721-07:00,1001.3108520507812,10.729185,10729.185 +33027,2025-03-11T03:20:10.706535-07:00,1001.2962646484375,10.727814,10727.814 +33028,2025-03-11T03:20:21.441540-07:00,1001.3306884765625,10.735005,10735.005 +33029,2025-03-11T03:20:32.170996-07:00,1001.3226318359375,10.729456,10729.456 +33030,2025-03-11T03:20:42.902735-07:00,1001.3226318359375,10.731739,10731.739 +33031,2025-03-11T03:20:53.633536-07:00,1001.2681274414062,10.730801,10730.801 +33032,2025-03-11T03:21:04.363540-07:00,1001.2931518554688,10.730004,10730.004 +33033,2025-03-11T03:21:15.088532-07:00,1001.2879638671875,10.724992,10724.992 +33034,2025-03-11T03:21:25.817600-07:00,1001.2433471679688,10.729068,10729.068 +33035,2025-03-11T03:21:36.548719-07:00,1001.2468872070312,10.731119,10731.119 +33036,2025-03-11T03:21:47.276563-07:00,1001.2732543945312,10.727844,10727.844 +33037,2025-03-11T03:21:58.007696-07:00,1001.2454833984375,10.731133,10731.133 +33038,2025-03-11T03:22:08.734561-07:00,1001.2305297851562,10.726865,10726.865 +33039,2025-03-11T03:22:19.458696-07:00,1001.2322387695312,10.724135,10724.135 +33040,2025-03-11T03:22:30.190712-07:00,1001.2468872070312,10.732016,10732.016 +33041,2025-03-11T03:22:40.911717-07:00,1001.197509765625,10.721005,10721.005 +33042,2025-03-11T03:22:51.642680-07:00,1001.2277221679688,10.730963,10730.963 +33043,2025-03-11T03:23:02.372752-07:00,1001.1929931640625,10.730072,10730.072 +33044,2025-03-11T03:23:13.097541-07:00,1001.234375,10.724789,10724.789 +33045,2025-03-11T03:23:23.836626-07:00,1001.2277221679688,10.739085,10739.085 +33046,2025-03-11T03:23:34.561708-07:00,1001.1881103515625,10.725082,10725.082 +33047,2025-03-11T03:23:45.291537-07:00,1001.1814575195312,10.729829,10729.829 +33048,2025-03-11T03:23:56.009936-07:00,1001.1929931640625,10.718399,10718.399 +33049,2025-03-11T03:24:06.741698-07:00,1001.1995239257812,10.731762,10731.762 +33050,2025-03-11T03:24:17.471628-07:00,1001.1797485351562,10.72993,10729.93 +33051,2025-03-11T03:24:28.191738-07:00,1001.204833984375,10.72011,10720.11 +33052,2025-03-11T03:24:38.919599-07:00,1001.1766357421875,10.727861,10727.861 +33053,2025-03-11T03:24:49.653538-07:00,1001.1668701171875,10.733939,10733.939 +33054,2025-03-11T03:25:00.379799-07:00,1001.173583984375,10.726261,10726.261 +33055,2025-03-11T03:25:11.108595-07:00,1001.1749267578125,10.728796,10728.796 +33056,2025-03-11T03:25:21.832725-07:00,1001.2000122070312,10.72413,10724.13 +33057,2025-03-11T03:25:32.560683-07:00,1001.163818359375,10.727958,10727.958 +33058,2025-03-11T03:25:43.290536-07:00,1001.177001953125,10.729853,10729.853 +33059,2025-03-11T03:25:54.015140-07:00,1001.163818359375,10.724604,10724.604 +33060,2025-03-11T03:26:04.741603-07:00,1001.185302734375,10.726463,10726.463 +33061,2025-03-11T03:26:15.466380-07:00,1001.177001953125,10.724777,10724.777 +33062,2025-03-11T03:26:26.198535-07:00,1001.1610717773438,10.732155,10732.155 +33063,2025-03-11T03:26:36.933539-07:00,1001.208740234375,10.735004,10735.004 +33064,2025-03-11T03:26:47.660733-07:00,1001.1954956054688,10.727194,10727.194 +33065,2025-03-11T03:26:58.385539-07:00,1001.1889038085938,10.724806,10724.806 +33066,2025-03-11T03:27:09.113771-07:00,1001.1954956054688,10.728232,10728.232 +33067,2025-03-11T03:27:19.844533-07:00,1001.1447143554688,10.730762,10730.762 +33068,2025-03-11T03:27:30.573639-07:00,1001.1808471679688,10.729106,10729.106 +33069,2025-03-11T03:27:41.299764-07:00,1001.1860961914062,10.726125,10726.125 +33070,2025-03-11T03:27:52.035566-07:00,1001.1875,10.735802,10735.802 +33071,2025-03-11T03:28:02.757539-07:00,1001.1975708007812,10.721973,10721.973 +33072,2025-03-11T03:28:13.498718-07:00,1001.1795043945312,10.741179,10741.179 +33073,2025-03-11T03:28:24.221535-07:00,1001.2073364257812,10.722817,10722.817 +33074,2025-03-11T03:28:34.953871-07:00,1001.1631469726562,10.732336,10732.336 +33075,2025-03-11T03:28:45.686539-07:00,1001.1829833984375,10.732668,10732.668 +33076,2025-03-11T03:28:56.418562-07:00,1001.1777954101562,10.732023,10732.023 +33077,2025-03-11T03:29:07.140689-07:00,1001.1749877929688,10.722127,10722.127 +33078,2025-03-11T03:29:17.870747-07:00,1001.1843872070312,10.730058,10730.058 +33079,2025-03-11T03:29:28.600609-07:00,1001.2160034179688,10.729862,10729.862 +33080,2025-03-11T03:29:39.333751-07:00,1001.1895141601562,10.733142,10733.142 +33081,2025-03-11T03:29:50.065740-07:00,1001.1895141601562,10.731989,10731.989 +33082,2025-03-11T03:30:00.801728-07:00,1001.1975708007812,10.735988,10735.988 +33083,2025-03-11T03:30:11.519036-07:00,1001.1895141601562,10.717308,10717.308 +33084,2025-03-11T03:30:22.248879-07:00,1001.1732788085938,10.729843,10729.843 +33085,2025-03-11T03:30:32.989736-07:00,1001.227783203125,10.740857,10740.857 +33086,2025-03-11T03:30:43.717987-07:00,1001.1864624023438,10.728251,10728.251 +33087,2025-03-11T03:30:54.442719-07:00,1001.1666259765625,10.724732,10724.732 +33088,2025-03-11T03:31:05.173737-07:00,1001.206298828125,10.731018,10731.018 +33089,2025-03-11T03:31:15.912752-07:00,1001.18505859375,10.739015,10739.015 +33090,2025-03-11T03:31:26.642897-07:00,1001.1652221679688,10.730145,10730.145 +33091,2025-03-11T03:31:48.090538-07:00,1001.1572875976562,21.447641,21447.641 +33092,2025-03-11T03:31:58.820942-07:00,1001.1638793945312,10.730404,10730.404 +33093,2025-03-11T03:32:20.278726-07:00,1001.1917114257812,21.457784,21457.784 +33094,2025-03-11T03:32:31.007539-07:00,1001.1836547851562,10.728813,10728.813 +33095,2025-03-11T03:32:41.741535-07:00,1001.1572875976562,10.733996,10733.996 +33096,2025-03-11T03:32:52.469535-07:00,1001.1572875976562,10.728,10728.0 +33097,2025-03-11T03:33:03.198784-07:00,1001.1885986328125,10.729249,10729.249 +33098,2025-03-11T03:33:35.378736-07:00,1001.1871948242188,32.179952,32179.952 +33099,2025-03-11T03:33:46.108607-07:00,1001.1461181640625,10.729871,10729.871 +33100,2025-03-11T03:33:56.838634-07:00,1001.1461181640625,10.730027,10730.027 +33101,2025-03-11T03:34:50.487538-07:00,1001.1760864257812,53.648904,53648.904 +33102,2025-03-11T03:35:01.221044-07:00,1001.161376953125,10.733506,10733.506 +33103,2025-03-11T03:35:11.948626-07:00,1001.1402587890625,10.727582,10727.582 +33104,2025-03-11T03:35:22.680759-07:00,1001.1402587890625,10.732133,10732.133 +33105,2025-03-11T03:35:33.402737-07:00,1001.1798706054688,10.721978,10721.978 +33106,2025-03-11T03:35:44.138643-07:00,1001.1517333984375,10.735906,10735.906 +33107,2025-03-11T03:35:54.865710-07:00,1001.1304931640625,10.727067,10727.067 +33108,2025-03-11T03:36:05.598560-07:00,1001.1384887695312,10.73285,10732.85 +33109,2025-03-11T03:36:16.322539-07:00,1001.112060546875,10.723979,10723.979 +33110,2025-03-11T03:36:27.056726-07:00,1001.1224975585938,10.734187,10734.187 +33111,2025-03-11T03:36:37.779532-07:00,1001.0877075195312,10.722806,10722.806 +33112,2025-03-11T03:36:48.509538-07:00,1001.1290893554688,10.730006,10730.006 +33113,2025-03-11T03:36:59.228554-07:00,1001.1009521484375,10.719016,10719.016 +33114,2025-03-11T03:37:09.964532-07:00,1001.1239013671875,10.735978,10735.978 +33115,2025-03-11T03:37:20.685806-07:00,1001.1207885742188,10.721274,10721.274 +33116,2025-03-11T03:37:31.409711-07:00,1001.12744140625,10.723905,10723.905 +33117,2025-03-11T03:37:42.135862-07:00,1001.106201171875,10.726151,10726.151 +33118,2025-03-11T03:37:52.862530-07:00,1001.11279296875,10.726668,10726.668 +33119,2025-03-11T03:38:03.594539-07:00,1001.083251953125,10.732009,10732.009 +33120,2025-03-11T03:38:14.329298-07:00,1001.096435546875,10.734759,10734.759 +33121,2025-03-11T03:38:25.050565-07:00,1001.0568237304688,10.721267,10721.267 +33122,2025-03-11T03:38:35.778534-07:00,1001.0804443359375,10.727969,10727.969 +33123,2025-03-11T03:38:46.498537-07:00,1001.0606079101562,10.720003,10720.003 +33124,2025-03-11T03:38:57.228532-07:00,1001.100341796875,10.729995,10729.995 +33125,2025-03-11T03:39:07.955210-07:00,1001.0640869140625,10.726678,10726.678 +33126,2025-03-11T03:39:18.675604-07:00,1001.080810546875,10.720394,10720.394 +33127,2025-03-11T03:39:29.406125-07:00,1001.0794677734375,10.730521,10730.521 +33128,2025-03-11T03:39:40.127535-07:00,1001.0634155273438,10.72141,10721.41 +33129,2025-03-11T03:39:50.856733-07:00,1001.08154296875,10.729198,10729.198 +33130,2025-03-11T03:40:01.576538-07:00,1001.0836181640625,10.719805,10719.805 +33131,2025-03-11T03:40:12.304538-07:00,1001.0923461914062,10.728,10728.0 +33132,2025-03-11T03:40:23.020749-07:00,1001.0909423828125,10.716211,10716.211 +33133,2025-03-11T03:40:33.744408-07:00,1001.08642578125,10.723659,10723.659 +33134,2025-03-11T03:40:44.471738-07:00,1001.072509765625,10.72733,10727.33 +33135,2025-03-11T03:40:55.202610-07:00,1001.1243896484375,10.730872,10730.872 +33136,2025-03-11T03:41:05.925732-07:00,1001.1250610351562,10.723122,10723.122 +33137,2025-03-11T03:41:16.647831-07:00,1001.1587524414062,10.722099,10722.099 +33138,2025-03-11T03:41:27.375717-07:00,1001.1300048828125,10.727886,10727.886 +33139,2025-03-11T03:41:38.101599-07:00,1001.1553344726562,10.725882,10725.882 +33140,2025-03-11T03:41:48.827749-07:00,1001.14794921875,10.72615,10726.15 +33141,2025-03-11T03:41:59.551767-07:00,1001.1668090820312,10.724018,10724.018 +33142,2025-03-11T03:42:10.279668-07:00,1001.1605224609375,10.727901,10727.901 +33143,2025-03-11T03:42:21.005715-07:00,1001.1793823242188,10.726047,10726.047 +33144,2025-03-11T03:42:31.727531-07:00,1001.1654052734375,10.721816,10721.816 +33145,2025-03-11T03:42:42.455534-07:00,1001.1643676757812,10.728003,10728.003 +33146,2025-03-11T03:42:53.182894-07:00,1001.1744384765625,10.72736,10727.36 +33147,2025-03-11T03:43:03.908105-07:00,1001.1868896484375,10.725211,10725.211 +33148,2025-03-11T03:43:14.630583-07:00,1001.180908203125,10.722478,10722.478 +33149,2025-03-11T03:43:25.357605-07:00,1001.1976318359375,10.727022,10727.022 +33150,2025-03-11T03:43:36.082703-07:00,1001.206298828125,10.725098,10725.098 +33151,2025-03-11T03:43:46.808065-07:00,1001.2017822265625,10.725362,10725.362 +33152,2025-03-11T03:43:57.534726-07:00,1001.1923217773438,10.726661,10726.661 +33153,2025-03-11T03:44:08.267191-07:00,1001.2156372070312,10.732465,10732.465 +33154,2025-03-11T03:44:18.986535-07:00,1001.203125,10.719344,10719.344 +33155,2025-03-11T03:44:29.714712-07:00,1001.2295532226562,10.728177,10728.177 +33156,2025-03-11T03:44:40.442746-07:00,1001.258056640625,10.728034,10728.034 +33157,2025-03-11T03:44:51.167767-07:00,1001.25634765625,10.725021,10725.021 +33158,2025-03-11T03:45:01.892535-07:00,1001.2601318359375,10.724768,10724.768 +33159,2025-03-11T03:45:12.620686-07:00,1001.2535400390625,10.728151,10728.151 +33160,2025-03-11T03:45:23.346447-07:00,1001.283447265625,10.725761,10725.761 +33161,2025-03-11T03:45:34.065285-07:00,1001.2767944335938,10.718838,10718.838 +33162,2025-03-11T03:45:44.793907-07:00,1001.2423706054688,10.728622,10728.622 +33163,2025-03-11T03:45:55.522740-07:00,1001.2489013671875,10.728833,10728.833 +33164,2025-03-11T03:46:06.250537-07:00,1001.2820434570312,10.727797,10727.797 +33165,2025-03-11T03:46:16.974343-07:00,1001.2854614257812,10.723806,10723.806 +33166,2025-03-11T03:46:27.696842-07:00,1001.2986450195312,10.722499,10722.499 +33167,2025-03-11T03:46:38.425420-07:00,1001.3201293945312,10.728578,10728.578 +33168,2025-03-11T03:46:49.145558-07:00,1001.3184204101562,10.720138,10720.138 +33169,2025-03-11T03:46:59.875706-07:00,1001.2840576171875,10.730148,10730.148 +33170,2025-03-11T03:47:10.608651-07:00,1001.2840576171875,10.732945,10732.945 +33171,2025-03-11T03:47:21.335603-07:00,1001.2806396484375,10.726952,10726.952 +33172,2025-03-11T03:47:32.061620-07:00,1001.2871704101562,10.726017,10726.017 +33173,2025-03-11T03:47:42.780601-07:00,1001.267333984375,10.718981,10718.981 +33174,2025-03-11T03:47:53.512694-07:00,1001.309814453125,10.732093,10732.093 +33175,2025-03-11T03:48:04.241029-07:00,1001.30322265625,10.728335,10728.335 +33176,2025-03-11T03:48:14.964781-07:00,1001.309814453125,10.723752,10723.752 +33177,2025-03-11T03:48:25.692577-07:00,1001.304931640625,10.727796,10727.796 +33178,2025-03-11T03:48:36.422738-07:00,1001.2996826171875,10.730161,10730.161 +33179,2025-03-11T03:48:47.144719-07:00,1001.3261108398438,10.721981,10721.981 +33180,2025-03-11T03:48:57.869535-07:00,1001.3108520507812,10.724816,10724.816 +33181,2025-03-11T03:49:08.597723-07:00,1001.312255859375,10.728188,10728.188 +33182,2025-03-11T03:49:19.324596-07:00,1001.312255859375,10.726873,10726.873 +33183,2025-03-11T03:49:30.043534-07:00,1001.312255859375,10.718938,10718.938 +33184,2025-03-11T03:49:40.777785-07:00,1001.3154907226562,10.734251,10734.251 +33185,2025-03-11T03:49:51.502669-07:00,1001.3265380859375,10.724884,10724.884 +33186,2025-03-11T03:50:02.228768-07:00,1001.2984619140625,10.726099,10726.099 +33187,2025-03-11T03:50:12.951538-07:00,1001.3015747070312,10.72277,10722.77 +33188,2025-03-11T03:50:23.676750-07:00,1001.3046875,10.725212,10725.212 +33189,2025-03-11T03:50:34.408376-07:00,1001.2716674804688,10.731626,10731.626 +33190,2025-03-11T03:50:45.140563-07:00,1001.3026733398438,10.732187,10732.187 +33191,2025-03-11T03:50:55.864714-07:00,1001.3054809570312,10.724151,10724.151 +33192,2025-03-11T03:51:06.596536-07:00,1001.306884765625,10.731822,10731.822 +33193,2025-03-11T03:51:17.322537-07:00,1001.2935791015625,10.726001,10726.001 +33194,2025-03-11T03:51:28.039781-07:00,1001.3179931640625,10.717244,10717.244 +33195,2025-03-11T03:51:38.772535-07:00,1001.2998657226562,10.732754,10732.754 +33196,2025-03-11T03:51:49.496094-07:00,1001.307861328125,10.723559,10723.559 +33197,2025-03-11T03:52:00.222564-07:00,1001.291259765625,10.72647,10726.47 +33198,2025-03-11T03:52:10.954602-07:00,1001.3222045898438,10.732038,10732.038 +33199,2025-03-11T03:52:21.676629-07:00,1001.3236083984375,10.722027,10722.027 +33200,2025-03-11T03:52:32.405532-07:00,1001.30517578125,10.728903,10728.903 +33201,2025-03-11T03:52:43.126842-07:00,1001.2933349609375,10.72131,10721.31 +33202,2025-03-11T03:52:53.852613-07:00,1001.2832641601562,10.725771,10725.771 +33203,2025-03-11T03:53:04.583750-07:00,1001.2979125976562,10.731137,10731.137 +33204,2025-03-11T03:53:15.308566-07:00,1001.3128051757812,10.724816,10724.816 +33205,2025-03-11T03:53:26.030564-07:00,1001.2909545898438,10.721998,10721.998 +33206,2025-03-11T03:53:36.725336-07:00,1001.3041381835938,10.694772,10694.772 +33207,2025-03-11T03:53:47.450152-07:00,1001.288818359375,10.724816,10724.816 +33208,2025-03-11T03:53:58.175165-07:00,1001.3065795898438,10.725013,10725.013 +33209,2025-03-11T03:54:08.908210-07:00,1001.2999877929688,10.733045,10733.045 +33210,2025-03-11T03:54:19.624506-07:00,1001.2947387695312,10.716296,10716.296 +33211,2025-03-11T03:54:30.352160-07:00,1001.3272094726562,10.727654,10727.654 +33212,2025-03-11T03:54:41.082368-07:00,1001.3222045898438,10.730208,10730.208 +33213,2025-03-11T03:54:51.812698-07:00,1001.305908203125,10.73033,10730.33 +33214,2025-03-11T03:55:02.530146-07:00,1001.3253173828125,10.717448,10717.448 +33215,2025-03-11T03:55:13.254325-07:00,1001.3451538085938,10.724179,10724.179 +33216,2025-03-11T03:55:23.982151-07:00,1001.3400268554688,10.727826,10727.826 +33217,2025-03-11T03:55:34.714220-07:00,1001.337890625,10.732069,10732.069 +33218,2025-03-11T03:55:45.442487-07:00,1001.337890625,10.728267,10728.267 +33219,2025-03-11T03:55:56.167148-07:00,1001.354248046875,10.724661,10724.661 +33220,2025-03-11T03:56:06.894353-07:00,1001.3212280273438,10.727205,10727.205 +33221,2025-03-11T03:56:17.625058-07:00,1001.3389282226562,10.730705,10730.705 +33222,2025-03-11T03:56:28.354150-07:00,1001.348388671875,10.729092,10729.092 +33223,2025-03-11T03:56:39.080154-07:00,1001.3351440429688,10.726004,10726.004 +33224,2025-03-11T03:56:49.819344-07:00,1001.330322265625,10.73919,10739.19 +33225,2025-03-11T03:57:00.543216-07:00,1001.31982421875,10.723872,10723.872 +33226,2025-03-11T03:57:11.278331-07:00,1001.3295288085938,10.735115,10735.115 +33227,2025-03-11T03:57:22.009332-07:00,1001.34423828125,10.731001,10731.001 +33228,2025-03-11T03:57:32.737297-07:00,1001.3375854492188,10.727965,10727.965 +33229,2025-03-11T03:57:43.465154-07:00,1001.3326416015625,10.727857,10727.857 +33230,2025-03-11T03:57:54.198749-07:00,1001.3076782226562,10.733595,10733.595 +33231,2025-03-11T03:58:04.927688-07:00,1001.3306274414062,10.728939,10728.939 +33232,2025-03-11T03:58:15.660562-07:00,1001.33203125,10.732874,10732.874 +33233,2025-03-11T03:58:26.385185-07:00,1001.3240356445312,10.724623,10724.623 +33234,2025-03-11T03:58:37.107149-07:00,1001.3233032226562,10.721964,10721.964 +33235,2025-03-11T03:58:47.840319-07:00,1001.318115234375,10.73317,10733.17 +33236,2025-03-11T03:58:58.565367-07:00,1001.3212280273438,10.725048,10725.048 +33237,2025-03-11T03:59:09.295425-07:00,1001.3439331054688,10.730058,10730.058 +33238,2025-03-11T03:59:20.028329-07:00,1001.3191528320312,10.732904,10732.904 +33239,2025-03-11T03:59:30.747691-07:00,1001.3250122070312,10.719362,10719.362 +33240,2025-03-11T03:59:41.476365-07:00,1001.3184204101562,10.728674,10728.674 +33241,2025-03-11T03:59:52.209269-07:00,1001.3097534179688,10.732904,10732.904 +33242,2025-03-11T04:00:02.930634-07:00,1001.330322265625,10.721365,10721.365 +33243,2025-03-11T04:00:13.670380-07:00,1001.3465576171875,10.739746,10739.746 +33244,2025-03-11T04:00:24.396154-07:00,1001.3334350585938,10.725774,10725.774 +33245,2025-03-11T04:00:35.122514-07:00,1001.2885131835938,10.72636,10726.36 +33246,2025-03-11T04:00:45.859326-07:00,1001.3079833984375,10.736812,10736.812 +33247,2025-03-11T04:00:56.583816-07:00,1001.3253784179688,10.72449,10724.49 +33248,2025-03-11T04:01:07.314073-07:00,1001.3218994140625,10.730257,10730.257 +33249,2025-03-11T04:01:18.055370-07:00,1001.303466796875,10.741297,10741.297 +33250,2025-03-11T04:01:28.780381-07:00,1001.3250122070312,10.725011,10725.011 +33251,2025-03-11T04:01:39.515154-07:00,1001.3145141601562,10.734773,10734.773 +33252,2025-03-11T04:01:50.240339-07:00,1001.2977905273438,10.725185,10725.185 +33253,2025-03-11T04:02:00.968155-07:00,1001.3075561523438,10.727816,10727.816 +33254,2025-03-11T04:02:11.704156-07:00,1001.3187255859375,10.736001,10736.001 +33255,2025-03-11T04:02:22.433539-07:00,1001.3082885742188,10.729383,10729.383 +33256,2025-03-11T04:02:33.163150-07:00,1001.271728515625,10.729611,10729.611 +33257,2025-03-11T04:02:43.892303-07:00,1001.2877197265625,10.729153,10729.153 +33258,2025-03-11T04:02:54.617086-07:00,1001.2894287109375,10.724783,10724.783 +33259,2025-03-11T04:03:05.350151-07:00,1001.28564453125,10.733065,10733.065 +33260,2025-03-11T04:03:16.079350-07:00,1001.287353515625,10.729199,10729.199 +33261,2025-03-11T04:03:26.806027-07:00,1001.2703247070312,10.726677,10726.677 +33262,2025-03-11T04:03:37.537221-07:00,1001.252197265625,10.731194,10731.194 +33263,2025-03-11T04:03:48.268222-07:00,1001.2536010742188,10.731001,10731.001 +33264,2025-03-11T04:03:59.001339-07:00,1001.259521484375,10.733117,10733.117 +33265,2025-03-11T04:04:09.727153-07:00,1001.2167358398438,10.725814,10725.814 +33266,2025-03-11T04:04:20.455333-07:00,1001.25146484375,10.72818,10728.18 +33267,2025-03-11T04:04:31.188660-07:00,1001.2249755859375,10.733327,10733.327 +33268,2025-03-11T04:04:41.913152-07:00,1001.2263793945312,10.724492,10724.492 +33269,2025-03-11T04:04:52.645175-07:00,1001.236083984375,10.732023,10732.023 +33270,2025-03-11T04:05:03.374245-07:00,1001.218017578125,10.72907,10729.07 +33271,2025-03-11T04:05:14.108149-07:00,1001.209716796875,10.733904,10733.904 +33272,2025-03-11T04:05:24.844024-07:00,1001.1881103515625,10.735875,10735.875 +33273,2025-03-11T04:05:35.563150-07:00,1001.1815795898438,10.719126,10719.126 +33274,2025-03-11T04:05:46.295153-07:00,1001.1668701171875,10.732003,10732.003 +33275,2025-03-11T04:05:57.025542-07:00,1001.1682739257812,10.730389,10730.389 +33276,2025-03-11T04:06:07.758485-07:00,1001.1898193359375,10.732943,10732.943 +33277,2025-03-11T04:06:18.482154-07:00,1001.173583984375,10.723669,10723.669 +33278,2025-03-11T04:06:29.219352-07:00,1001.1551513671875,10.737198,10737.198 +33279,2025-03-11T04:06:39.948150-07:00,1001.1682739257812,10.728798,10728.798 +33280,2025-03-11T04:06:50.681360-07:00,1001.1325073242188,10.73321,10733.21 +33281,2025-03-11T04:07:01.405373-07:00,1001.1307983398438,10.724013,10724.013 +33282,2025-03-11T04:07:12.138181-07:00,1001.1192016601562,10.732808,10732.808 +33283,2025-03-11T04:07:22.859543-07:00,1001.0712280273438,10.721362,10721.362 +33284,2025-03-11T04:07:33.586225-07:00,1001.1192016601562,10.726682,10726.682 +33285,2025-03-11T04:07:44.314673-07:00,1001.0684204101562,10.728448,10728.448 +33286,2025-03-11T04:07:55.044471-07:00,1001.0928344726562,10.729798,10729.798 +33287,2025-03-11T04:08:05.774398-07:00,1001.0513916015625,10.729927,10729.927 +33288,2025-03-11T04:08:16.505322-07:00,1001.0354614257812,10.730924,10730.924 +33289,2025-03-11T04:08:27.233324-07:00,1001.0604858398438,10.728002,10728.002 +33290,2025-03-11T04:08:37.958146-07:00,1001.0538940429688,10.724822,10724.822 +33291,2025-03-11T04:08:48.687923-07:00,1001.0256958007812,10.729777,10729.777 +33292,2025-03-11T04:08:59.418346-07:00,1001.0455322265625,10.730423,10730.423 +33293,2025-03-11T04:09:10.145153-07:00,1001.0455322265625,10.726807,10726.807 +33294,2025-03-11T04:09:20.873357-07:00,1001.0242919921875,10.728204,10728.204 +33295,2025-03-11T04:09:31.594346-07:00,1001.0031127929688,10.720989,10720.989 +33296,2025-03-11T04:09:42.326150-07:00,1001.021240234375,10.731804,10731.804 +33297,2025-03-11T04:09:53.057442-07:00,1000.9985961914062,10.731292,10731.292 +33298,2025-03-11T04:10:03.785150-07:00,1001.0,10.727708,10727.708 +33299,2025-03-11T04:10:14.515247-07:00,1001.0198364257812,10.730097,10730.097 +33300,2025-03-11T04:10:25.240178-07:00,1000.9902954101562,10.724931,10724.931 +33301,2025-03-11T04:10:35.965286-07:00,1000.970458984375,10.725108,10725.108 +33302,2025-03-11T04:10:46.697233-07:00,1000.9902954101562,10.731947,10731.947 +33303,2025-03-11T04:10:57.422153-07:00,1001.005126953125,10.72492,10724.92 +33304,2025-03-11T04:11:08.156211-07:00,1000.9808349609375,10.734058,10734.058 +33305,2025-03-11T04:11:18.888871-07:00,1000.9724731445312,10.73266,10732.66 +33306,2025-03-11T04:11:29.611415-07:00,1001.013916015625,10.722544,10722.544 +33307,2025-03-11T04:11:40.343152-07:00,1000.9874877929688,10.731737,10731.737 +33308,2025-03-11T04:11:51.074342-07:00,1000.9791259765625,10.73119,10731.19 +33309,2025-03-11T04:12:01.802150-07:00,1000.9857788085938,10.727808,10727.808 +33310,2025-03-11T04:12:12.526436-07:00,1001.0042114257812,10.724286,10724.286 +33311,2025-03-11T04:12:23.265357-07:00,1000.9829711914062,10.738921,10738.921 +33312,2025-03-11T04:12:33.989332-07:00,1000.9749755859375,10.723975,10723.975 +33313,2025-03-11T04:12:44.716158-07:00,1000.9962768554688,10.726826,10726.826 +33314,2025-03-11T04:12:55.449317-07:00,1001.0014038085938,10.733159,10733.159 +33315,2025-03-11T04:13:06.177155-07:00,1001.0028076171875,10.727838,10727.838 +33316,2025-03-11T04:13:16.904051-07:00,1000.994873046875,10.726896,10726.896 +33317,2025-03-11T04:13:27.624148-07:00,1001.0079956054688,10.720097,10720.097 +33318,2025-03-11T04:13:38.356232-07:00,1001.0226440429688,10.732084,10732.084 +33319,2025-03-11T04:13:49.088541-07:00,1001.03271484375,10.732309,10732.309 +33320,2025-03-11T04:13:59.815154-07:00,1001.0525512695312,10.726613,10726.613 +33321,2025-03-11T04:14:10.540479-07:00,1001.0247802734375,10.725325,10725.325 +33322,2025-03-11T04:14:21.266176-07:00,1001.0247802734375,10.725697,10725.697 +33323,2025-03-11T04:14:31.992154-07:00,1001.0445556640625,10.725978,10725.978 +33324,2025-03-11T04:14:42.719670-07:00,1001.0511474609375,10.727516,10727.516 +33325,2025-03-11T04:14:53.445150-07:00,1001.04150390625,10.72548,10725.48 +33326,2025-03-11T04:15:04.178331-07:00,1001.0532836914062,10.733181,10733.181 +33327,2025-03-11T04:15:14.906153-07:00,1001.0797119140625,10.727822,10727.822 +33328,2025-03-11T04:15:25.636181-07:00,1001.0731201171875,10.730028,10730.028 +33329,2025-03-11T04:15:36.365351-07:00,1001.0850219726562,10.72917,10729.17 +33330,2025-03-11T04:15:47.088363-07:00,1001.104736328125,10.723012,10723.012 +33331,2025-03-11T04:15:57.819744-07:00,1001.0487670898438,10.731381,10731.381 +33332,2025-03-11T04:16:08.559093-07:00,1001.0487670898438,10.739349,10739.349 +33333,2025-03-11T04:16:19.289210-07:00,1001.068603515625,10.730117,10730.117 +33334,2025-03-11T04:16:30.017303-07:00,1001.032470703125,10.728093,10728.093 +33335,2025-03-11T04:16:40.744590-07:00,1001.04736328125,10.727287,10727.287 +33336,2025-03-11T04:16:51.472622-07:00,1001.0804443359375,10.728032,10728.032 +33337,2025-03-11T04:17:02.194337-07:00,1001.0654907226562,10.721715,10721.715 +33338,2025-03-11T04:17:12.924348-07:00,1001.0654907226562,10.730011,10730.011 +33339,2025-03-11T04:17:23.657180-07:00,1001.0787353515625,10.732832,10732.832 +33340,2025-03-11T04:17:34.384475-07:00,1001.0654907226562,10.727295,10727.295 +33341,2025-03-11T04:17:45.106368-07:00,1001.0574951171875,10.721893,10721.893 +33342,2025-03-11T04:17:55.835337-07:00,1001.0693969726562,10.728969,10728.969 +33343,2025-03-11T04:18:06.562150-07:00,1001.0787353515625,10.726813,10726.813 +33344,2025-03-11T04:18:17.284569-07:00,1001.090576171875,10.722419,10722.419 +33345,2025-03-11T04:18:28.017237-07:00,1001.1090087890625,10.732668,10732.668 +33346,2025-03-11T04:18:38.736153-07:00,1001.0957641601562,10.718916,10718.916 +33347,2025-03-11T04:18:49.468563-07:00,1001.1204833984375,10.73241,10732.41 +33348,2025-03-11T04:19:00.194150-07:00,1001.0780639648438,10.725587,10725.587 +33349,2025-03-11T04:19:10.919153-07:00,1001.0926513671875,10.725003,10725.003 +33350,2025-03-11T04:19:21.641206-07:00,1001.0992431640625,10.722053,10722.053 +33351,2025-03-11T04:19:32.373150-07:00,1001.0992431640625,10.731944,10731.944 +33352,2025-03-11T04:19:43.098350-07:00,1001.0861206054688,10.7252,10725.2 +33353,2025-03-11T04:19:53.832147-07:00,1001.08984375,10.733797,10733.797 +33354,2025-03-11T04:20:04.556175-07:00,1001.0912475585938,10.724028,10724.028 +33355,2025-03-11T04:20:15.283322-07:00,1001.084716796875,10.727147,10727.147 +33356,2025-03-11T04:20:26.013219-07:00,1001.0912475585938,10.729897,10729.897 +33357,2025-03-11T04:20:36.739468-07:00,1001.074951171875,10.726249,10726.249 +33358,2025-03-11T04:20:47.471336-07:00,1001.0682983398438,10.731868,10731.868 +33359,2025-03-11T04:20:58.202189-07:00,1001.08984375,10.730853,10730.853 +33360,2025-03-11T04:21:08.927153-07:00,1001.0964965820312,10.724964,10724.964 +33361,2025-03-11T04:21:19.664575-07:00,1001.1031494140625,10.737422,10737.422 +33362,2025-03-11T04:21:30.393204-07:00,1001.0770263671875,10.728629,10728.629 +33363,2025-03-11T04:21:41.117322-07:00,1001.0947875976562,10.724118,10724.118 +33364,2025-03-11T04:21:51.840507-07:00,1001.1079711914062,10.723185,10723.185 +33365,2025-03-11T04:22:02.574152-07:00,1001.0947875976562,10.733645,10733.645 +33366,2025-03-11T04:22:13.293179-07:00,1001.083251953125,10.719027,10719.027 +33367,2025-03-11T04:22:24.025356-07:00,1001.08154296875,10.732177,10732.177 +33368,2025-03-11T04:22:34.748897-07:00,1001.06689453125,10.723541,10723.541 +33369,2025-03-11T04:22:45.476180-07:00,1001.08154296875,10.727283,10727.283 +33370,2025-03-11T04:22:56.194440-07:00,1001.0947875976562,10.71826,10718.26 +33371,2025-03-11T04:23:06.922150-07:00,1001.060302734375,10.72771,10727.71 +33372,2025-03-11T04:23:17.651339-07:00,1001.0722045898438,10.729189,10729.189 +33373,2025-03-11T04:23:28.381491-07:00,1001.0457153320312,10.730152,10730.152 +33374,2025-03-11T04:23:39.114150-07:00,1001.06689453125,10.732659,10732.659 +33375,2025-03-11T04:23:49.842465-07:00,1001.0853271484375,10.728315,10728.315 +33376,2025-03-11T04:24:00.564656-07:00,1001.0999755859375,10.722191,10722.191 +33377,2025-03-11T04:24:11.295153-07:00,1001.0722045898438,10.730497,10730.497 +33378,2025-03-11T04:24:22.016546-07:00,1001.0919799804688,10.721393,10721.393 +33379,2025-03-11T04:24:32.748183-07:00,1001.0867309570312,10.731637,10731.637 +33380,2025-03-11T04:24:43.478256-07:00,1001.0853271484375,10.730073,10730.073 +33381,2025-03-11T04:24:54.204341-07:00,1001.0853271484375,10.726085,10726.085 +33382,2025-03-11T04:25:04.934837-07:00,1001.0836181640625,10.730496,10730.496 +33383,2025-03-11T04:25:15.659350-07:00,1001.0902099609375,10.724513,10724.513 +33384,2025-03-11T04:25:26.388334-07:00,1001.069091796875,10.728984,10728.984 +33385,2025-03-11T04:25:37.126717-07:00,1001.0704956054688,10.738383,10738.383 +33386,2025-03-11T04:25:47.853151-07:00,1001.072509765625,10.726434,10726.434 +33387,2025-03-11T04:25:58.583563-07:00,1001.059326171875,10.730412,10730.412 +33388,2025-03-11T04:26:09.311356-07:00,1001.0808715820312,10.727793,10727.793 +33389,2025-03-11T04:26:20.034332-07:00,1001.0791625976562,10.722976,10722.976 +33390,2025-03-11T04:26:30.767153-07:00,1001.0791625976562,10.732821,10732.821 +33391,2025-03-11T04:26:41.487358-07:00,1001.0777587890625,10.720205,10720.205 +33392,2025-03-11T04:26:52.216456-07:00,1001.0498657226562,10.729098,10729.098 +33393,2025-03-11T04:27:02.948222-07:00,1001.0731811523438,10.731766,10731.766 +33394,2025-03-11T04:27:13.676562-07:00,1001.0631103515625,10.72834,10728.34 +33395,2025-03-11T04:27:24.403262-07:00,1001.0548706054688,10.7267,10726.7 +33396,2025-03-11T04:27:35.129153-07:00,1001.0731811523438,10.725891,10725.891 +33397,2025-03-11T04:27:45.854903-07:00,1001.0679931640625,10.72575,10725.75 +33398,2025-03-11T04:27:56.586149-07:00,1001.053466796875,10.731246,10731.246 +33399,2025-03-11T04:28:07.310013-07:00,1001.0704956054688,10.723864,10723.864 +33400,2025-03-11T04:28:18.041474-07:00,1001.0731811523438,10.731461,10731.461 +33401,2025-03-11T04:28:28.770152-07:00,1001.052001953125,10.728678,10728.678 +33402,2025-03-11T04:28:39.490076-07:00,1001.04541015625,10.719924,10719.924 +33403,2025-03-11T04:28:50.214361-07:00,1001.0440063476562,10.724285,10724.285 +33404,2025-03-11T04:28:57.672357-07:00,1001.0704956054688,7.457996,7457.996 +33405,2025-03-11T04:29:00.949342-07:00,1001.0488891601562,3.276985,3276.985 +33406,2025-03-11T04:29:11.673154-07:00,1001.0211181640625,10.723812,10723.812 +33407,2025-03-11T04:29:22.396427-07:00,1001.0488891601562,10.723273,10723.273 +33408,2025-03-11T04:29:33.125334-07:00,1001.0474853515625,10.728907,10728.907 +33409,2025-03-11T04:29:43.853348-07:00,1001.0540771484375,10.728014,10728.014 +33410,2025-03-11T04:29:54.580812-07:00,1001.0262451171875,10.727464,10727.464 +33411,2025-03-11T04:30:05.308263-07:00,1001.03955078125,10.727451,10727.451 +33412,2025-03-11T04:30:16.034181-07:00,1001.0526733398438,10.725918,10725.918 +33413,2025-03-11T04:30:26.763340-07:00,1001.037841796875,10.729159,10729.159 +33414,2025-03-11T04:30:37.484154-07:00,1001.0328979492188,10.720814,10720.814 +33415,2025-03-11T04:30:48.212887-07:00,1001.036376953125,10.728733,10728.733 +33416,2025-03-11T04:30:58.935179-07:00,1001.0245361328125,10.722292,10722.292 +33417,2025-03-11T04:31:09.669152-07:00,1001.0099487304688,10.733973,10733.973 +33418,2025-03-11T04:31:20.390439-07:00,1001.0231323242188,10.721287,10721.287 +33419,2025-03-11T04:31:31.124215-07:00,1001.0099487304688,10.733776,10733.776 +33420,2025-03-11T04:31:41.850329-07:00,1001.0231323242188,10.726114,10726.114 +33421,2025-03-11T04:31:52.570148-07:00,1001.0032958984375,10.719819,10719.819 +33422,2025-03-11T04:32:03.298382-07:00,1001.0099487304688,10.728234,10728.234 +33423,2025-03-11T04:32:14.021493-07:00,1001.0018920898438,10.723111,10723.111 +33424,2025-03-11T04:32:24.756150-07:00,1000.9525146484375,10.734657,10734.657 +33425,2025-03-11T04:32:35.477329-07:00,1001.0068969726562,10.721179,10721.179 +33426,2025-03-11T04:32:46.207356-07:00,1001.0165405273438,10.730027,10730.027 +33427,2025-03-11T04:32:56.931182-07:00,1001.0032958984375,10.723826,10723.826 +33428,2025-03-11T04:33:07.656274-07:00,1001.026611328125,10.725092,10725.092 +33429,2025-03-11T04:33:18.383442-07:00,1001.0001831054688,10.727168,10727.168 +33430,2025-03-11T04:33:29.107960-07:00,1000.9935913085938,10.724518,10724.518 +33431,2025-03-11T04:33:39.834184-07:00,1001.0040893554688,10.726224,10726.224 +33432,2025-03-11T04:33:50.560564-07:00,1000.9988403320312,10.72638,10726.38 +33433,2025-03-11T04:34:01.287150-07:00,1000.9974365234375,10.726586,10726.586 +33434,2025-03-11T04:34:12.017156-07:00,1001.0023193359375,10.730006,10730.006 +33435,2025-03-11T04:34:22.737542-07:00,1000.9957275390625,10.720386,10720.386 +33436,2025-03-11T04:34:33.456153-07:00,1001.0172119140625,10.718611,10718.611 +33437,2025-03-11T04:34:44.178238-07:00,1001.0023193359375,10.722085,10722.085 +33438,2025-03-11T04:34:54.906359-07:00,1001.0259399414062,10.728121,10728.121 +33439,2025-03-11T04:35:05.626171-07:00,1001.00439453125,10.719812,10719.812 +33440,2025-03-11T04:35:16.355153-07:00,1000.9804077148438,10.728982,10728.982 +33441,2025-03-11T04:35:27.077540-07:00,1000.9852905273438,10.722387,10722.387 +33442,2025-03-11T04:35:37.806150-07:00,1000.9824829101562,10.72861,10728.61 +33443,2025-03-11T04:35:48.535472-07:00,1000.9939575195312,10.729322,10729.322 +33444,2025-03-11T04:35:59.256346-07:00,1000.9630737304688,10.720874,10720.874 +33445,2025-03-11T04:36:09.983150-07:00,1001.0211181640625,10.726804,10726.804 +33446,2025-03-11T04:36:20.705179-07:00,1000.9915771484375,10.722029,10722.029 +33447,2025-03-11T04:36:31.433186-07:00,1001.0086059570312,10.728007,10728.007 +33448,2025-03-11T04:36:42.156330-07:00,1000.9827880859375,10.723144,10723.144 +33449,2025-03-11T04:36:52.876271-07:00,1001.0029907226562,10.719941,10719.941 +33450,2025-03-11T04:37:03.606651-07:00,1001.0165405273438,10.73038,10730.38 +33451,2025-03-11T04:37:14.322396-07:00,1000.994384765625,10.715745,10715.745 +33452,2025-03-11T04:37:25.056328-07:00,1001.00830078125,10.733932,10733.932 +33453,2025-03-11T04:37:35.773429-07:00,1000.9925537109375,10.717101,10717.101 +33454,2025-03-11T04:37:46.504209-07:00,1001.0064697265625,10.73078,10730.78 +33455,2025-03-11T04:37:57.219158-07:00,1000.985595703125,10.714949,10714.949 +33456,2025-03-11T04:38:07.952156-07:00,1000.98974609375,10.732998,10732.998 +33457,2025-03-11T04:38:18.675336-07:00,1000.9970092773438,10.72318,10723.18 +33458,2025-03-11T04:38:29.401153-07:00,1001.0109252929688,10.725817,10725.817 +33459,2025-03-11T04:38:40.121406-07:00,1001.0018920898438,10.720253,10720.253 +33460,2025-03-11T04:38:50.849150-07:00,1000.9827270507812,10.727744,10727.744 +33461,2025-03-11T04:39:01.576328-07:00,1000.9868774414062,10.727178,10727.178 +33462,2025-03-11T04:39:12.296152-07:00,1000.9757080078125,10.719824,10719.824 +33463,2025-03-11T04:39:23.020274-07:00,1000.992431640625,10.724122,10724.122 +33464,2025-03-11T04:39:33.752237-07:00,1000.994873046875,10.731963,10731.963 +33465,2025-03-11T04:39:44.472364-07:00,1001.03125,10.720127,10720.127 +33466,2025-03-11T04:39:55.192308-07:00,1001.022216796875,10.719944,10719.944 +33467,2025-03-11T04:40:05.922181-07:00,1000.9992065429688,10.729873,10729.873 +33468,2025-03-11T04:40:16.650302-07:00,1001.0308837890625,10.728121,10728.121 +33469,2025-03-11T04:40:27.369149-07:00,1001.0131225585938,10.718847,10718.847 +33470,2025-03-11T04:40:38.094244-07:00,1001.0381469726562,10.725095,10725.095 +33471,2025-03-11T04:40:48.823934-07:00,1001.0415649414062,10.72969,10729.69 +33472,2025-03-11T04:40:59.549152-07:00,1001.0335693359375,10.725218,10725.218 +33473,2025-03-11T04:41:10.278311-07:00,1001.03564453125,10.729159,10729.159 +33474,2025-03-11T04:41:21.006272-07:00,1001.0474243164062,10.727961,10727.961 +33475,2025-03-11T04:41:31.734525-07:00,1001.0606079101562,10.728253,10728.253 +33476,2025-03-11T04:41:42.463283-07:00,1001.0443115234375,10.728758,10728.758 +33477,2025-03-11T04:41:53.191153-07:00,1001.0654907226562,10.72787,10727.87 +33478,2025-03-11T04:42:03.918345-07:00,1001.0164794921875,10.727192,10727.192 +33479,2025-03-11T04:42:14.652175-07:00,1001.0692749023438,10.73383,10733.83 +33480,2025-03-11T04:42:25.384150-07:00,1001.0592041015625,10.731975,10731.975 +33481,2025-03-11T04:42:36.112358-07:00,1001.0773315429688,10.728208,10728.208 +33482,2025-03-11T04:42:46.845151-07:00,1001.08251953125,10.732793,10732.793 +33483,2025-03-11T04:42:57.580152-07:00,1001.0773315429688,10.735001,10735.001 +33484,2025-03-11T04:43:08.306225-07:00,1001.075927734375,10.726073,10726.073 +33485,2025-03-11T04:43:19.033209-07:00,1001.075927734375,10.726984,10726.984 +33486,2025-03-11T04:43:29.759447-07:00,1001.0890502929688,10.726238,10726.238 +33487,2025-03-11T04:43:40.488445-07:00,1001.0839233398438,10.728998,10728.998 +33488,2025-03-11T04:43:51.221383-07:00,1001.1051635742188,10.732938,10732.938 +33489,2025-03-11T04:44:01.952150-07:00,1001.1249389648438,10.730767,10730.767 +33490,2025-03-11T04:44:12.678348-07:00,1001.1116943359375,10.726198,10726.198 +33491,2025-03-11T04:44:23.401328-07:00,1001.1281127929688,10.72298,10722.98 +33492,2025-03-11T04:44:34.137423-07:00,1001.1281127929688,10.736095,10736.095 +33493,2025-03-11T04:44:44.866573-07:00,1001.1162719726562,10.72915,10729.15 +33494,2025-03-11T04:44:55.589152-07:00,1001.1031494140625,10.722579,10722.579 +33495,2025-03-11T04:45:06.321261-07:00,1001.11279296875,10.732109,10732.109 +33496,2025-03-11T04:45:17.049188-07:00,1001.129150390625,10.727927,10727.927 +33497,2025-03-11T04:45:27.784909-07:00,1001.1187744140625,10.735721,10735.721 +33498,2025-03-11T04:45:38.513360-07:00,1001.1173706054688,10.728451,10728.451 +33499,2025-03-11T04:45:49.244705-07:00,1001.126708984375,10.731345,10731.345 +33500,2025-03-11T04:45:59.968153-07:00,1001.100341796875,10.723448,10723.448 +33501,2025-03-11T04:46:10.702522-07:00,1001.1299438476562,10.734369,10734.369 +33502,2025-03-11T04:46:21.424506-07:00,1001.1181030273438,10.721984,10721.984 +33503,2025-03-11T04:46:32.158153-07:00,1001.11328125,10.733647,10733.647 +33504,2025-03-11T04:46:42.890334-07:00,1001.1013793945312,10.732181,10732.181 +33505,2025-03-11T04:46:53.620463-07:00,1001.1278076171875,10.730129,10730.129 +33506,2025-03-11T04:47:04.353150-07:00,1001.0882568359375,10.732687,10732.687 +33507,2025-03-11T04:47:15.080318-07:00,1001.1389770507812,10.727168,10727.168 +33508,2025-03-11T04:47:25.805153-07:00,1001.11572265625,10.724835,10724.835 +33509,2025-03-11T04:47:36.541154-07:00,1001.09423828125,10.736001,10736.001 +33510,2025-03-11T04:47:47.271323-07:00,1001.0906982421875,10.730169,10730.169 +33511,2025-03-11T04:47:57.995268-07:00,1001.0938110351562,10.723945,10723.945 +33512,2025-03-11T04:48:08.722165-07:00,1001.10986328125,10.726897,10726.897 +33513,2025-03-11T04:48:19.454247-07:00,1001.0848388671875,10.732082,10732.082 +33514,2025-03-11T04:48:30.186153-07:00,1001.0865478515625,10.731906,10731.906 +33515,2025-03-11T04:48:40.908358-07:00,1001.0601806640625,10.722205,10722.205 +33516,2025-03-11T04:48:51.645274-07:00,1001.0712280273438,10.736916,10736.916 +33517,2025-03-11T04:49:02.383151-07:00,1001.080810546875,10.737877,10737.877 +33518,2025-03-11T04:49:13.105223-07:00,1001.0692138671875,10.722072,10722.072 +33519,2025-03-11T04:49:23.837398-07:00,1001.0918579101562,10.732175,10732.175 +33520,2025-03-11T04:49:34.566305-07:00,1001.0538940429688,10.728907,10728.907 +33521,2025-03-11T04:49:45.298557-07:00,1001.0487670898438,10.732252,10732.252 +33522,2025-03-11T04:49:56.031746-07:00,1001.0303344726562,10.733189,10733.189 +33523,2025-03-11T04:50:06.752221-07:00,1001.038330078125,10.720475,10720.475 +33524,2025-03-11T04:50:17.490154-07:00,1001.048095703125,10.737933,10737.933 +33525,2025-03-11T04:50:28.213152-07:00,1001.0362548828125,10.722998,10722.998 +33526,2025-03-11T04:50:38.948152-07:00,1001.0606079101562,10.735,10735.0 +33527,2025-03-11T04:50:49.669344-07:00,1001.05859375,10.721192,10721.192 +33528,2025-03-11T04:51:00.406259-07:00,1001.0571899414062,10.736915,10736.915 +33529,2025-03-11T04:51:11.136156-07:00,1001.0206298828125,10.729897,10729.897 +33530,2025-03-11T04:51:21.865334-07:00,1001.0564575195312,10.729178,10729.178 +33531,2025-03-11T04:51:32.593152-07:00,1001.0286865234375,10.727818,10727.818 +33532,2025-03-11T04:51:43.330339-07:00,1001.06103515625,10.737187,10737.187 +33533,2025-03-11T04:51:54.058161-07:00,1001.0360107421875,10.727822,10727.822 +33534,2025-03-11T04:52:04.786150-07:00,1001.0179443359375,10.727989,10727.989 +33535,2025-03-11T04:52:15.513149-07:00,1001.0554809570312,10.726999,10726.999 +33536,2025-03-11T04:52:26.244350-07:00,1001.02392578125,10.731201,10731.201 +33537,2025-03-11T04:52:36.974153-07:00,1001.0203247070312,10.729803,10729.803 +33538,2025-03-11T04:52:47.706184-07:00,1001.0415649414062,10.732031,10732.031 +33539,2025-03-11T04:52:58.439350-07:00,1001.04296875,10.733166,10733.166 +33540,2025-03-11T04:53:09.166437-07:00,1001.0064697265625,10.727087,10727.087 +33541,2025-03-11T04:53:19.902286-07:00,1001.029052734375,10.735849,10735.849 +33542,2025-03-11T04:53:30.628813-07:00,1001.0423583984375,10.726527,10726.527 +33543,2025-03-11T04:53:41.453061-07:00,1001.046875,10.824248,10824.248 +33544,2025-03-11T04:53:52.183755-07:00,1001.0419311523438,10.730694,10730.694 +33545,2025-03-11T04:54:02.911144-07:00,1001.0499877929688,10.727389,10727.389 +33546,2025-03-11T04:54:13.641823-07:00,1001.0596923828125,10.730679,10730.679 +33547,2025-03-11T04:54:24.374750-07:00,1001.0499877929688,10.732927,10732.927 +33548,2025-03-11T04:54:35.107825-07:00,1001.0545043945312,10.733075,10733.075 +33549,2025-03-11T04:54:45.843549-07:00,1001.0576782226562,10.735724,10735.724 +33550,2025-03-11T04:54:56.572743-07:00,1001.0802612304688,10.729194,10729.194 +33551,2025-03-11T04:55:07.304931-07:00,1001.0833740234375,10.732188,10732.188 +33552,2025-03-11T04:55:18.032597-07:00,1001.05029296875,10.727666,10727.666 +33553,2025-03-11T04:55:28.763748-07:00,1001.0826416015625,10.731151,10731.151 +33554,2025-03-11T04:55:39.493969-07:00,1001.0711669921875,10.730221,10730.221 +33555,2025-03-11T04:55:50.226926-07:00,1001.0728759765625,10.732957,10732.957 +33556,2025-03-11T04:56:00.954912-07:00,1001.0491943359375,10.727986,10727.986 +33557,2025-03-11T04:56:11.682183-07:00,1001.0523681640625,10.727271,10727.271 +33558,2025-03-11T04:56:22.416833-07:00,1001.0621337890625,10.73465,10734.65 +33559,2025-03-11T04:56:33.146750-07:00,1001.045166015625,10.729917,10729.917 +33560,2025-03-11T04:56:43.869898-07:00,1001.0284423828125,10.723148,10723.148 +33561,2025-03-11T04:56:54.601768-07:00,1001.051025390625,10.73187,10731.87 +33562,2025-03-11T04:57:05.330956-07:00,1001.0374145507812,10.729188,10729.188 +33563,2025-03-11T04:57:16.060444-07:00,1001.0374145507812,10.729488,10729.488 +33564,2025-03-11T04:57:26.797414-07:00,1001.0335693359375,10.73697,10736.97 +33565,2025-03-11T04:57:37.530959-07:00,1001.0315551757812,10.733545,10733.545 +33566,2025-03-11T04:57:48.259751-07:00,1001.0067749023438,10.728792,10728.792 +33567,2025-03-11T04:57:58.991740-07:00,1000.9949951171875,10.731989,10731.989 +33568,2025-03-11T04:58:09.719753-07:00,1001.043701171875,10.728013,10728.013 +33569,2025-03-11T04:58:20.456196-07:00,1001.0106201171875,10.736443,10736.443 +33570,2025-03-11T04:58:31.180468-07:00,1001.0018920898438,10.724272,10724.272 +33571,2025-03-11T04:58:41.915811-07:00,1001.0165405273438,10.735343,10735.343 +33572,2025-03-11T04:58:52.645746-07:00,1000.98486328125,10.729935,10729.935 +33573,2025-03-11T04:59:03.371034-07:00,1001.002685546875,10.725288,10725.288 +33574,2025-03-11T04:59:14.101747-07:00,1000.9779052734375,10.730713,10730.713 +33575,2025-03-11T04:59:24.827197-07:00,1000.9924926757812,10.72545,10725.45 +33576,2025-03-11T04:59:35.566259-07:00,1000.9873657226562,10.739062,10739.062 +33577,2025-03-11T04:59:46.294751-07:00,1001.0036010742188,10.728492,10728.492 +33578,2025-03-11T04:59:57.015932-07:00,1000.945556640625,10.721181,10721.181 +33579,2025-03-11T05:00:07.749079-07:00,1001.0015869140625,10.733147,10733.147 +33580,2025-03-11T05:00:18.477773-07:00,1000.9618530273438,10.728694,10728.694 +33581,2025-03-11T05:00:29.206127-07:00,1000.9580688476562,10.728354,10728.354 +33582,2025-03-11T05:00:39.942747-07:00,1000.951416015625,10.73662,10736.62 +33583,2025-03-11T05:00:50.671762-07:00,1000.931640625,10.729015,10729.015 +33584,2025-03-11T05:01:01.410896-07:00,1000.9678344726562,10.739134,10739.134 +33585,2025-03-11T05:01:12.136558-07:00,1000.9400024414062,10.725662,10725.662 +33586,2025-03-11T05:01:22.869747-07:00,1000.9135131835938,10.733189,10733.189 +33587,2025-03-11T05:01:33.601997-07:00,1000.90966796875,10.73225,10732.25 +33588,2025-03-11T05:01:44.335147-07:00,1000.911376953125,10.73315,10733.15 +33589,2025-03-11T05:01:55.055487-07:00,1000.898193359375,10.72034,10720.34 +33590,2025-03-11T05:02:05.786753-07:00,1000.911376953125,10.731266,10731.266 +33591,2025-03-11T05:02:16.520795-07:00,1000.912841796875,10.734042,10734.042 +33592,2025-03-11T05:02:27.252743-07:00,1000.88330078125,10.731948,10731.948 +33593,2025-03-11T05:02:37.991300-07:00,1000.8783569335938,10.738557,10738.557 +33594,2025-03-11T05:02:48.716931-07:00,1000.8783569335938,10.725631,10725.631 +33595,2025-03-11T05:02:59.456867-07:00,1000.8864135742188,10.739936,10739.936 +33596,2025-03-11T05:03:10.181772-07:00,1000.9009399414062,10.724905,10724.905 +33597,2025-03-11T05:03:20.920750-07:00,1000.8651733398438,10.738978,10738.978 +33598,2025-03-11T05:03:31.653139-07:00,1000.8599243164062,10.732389,10732.389 +33599,2025-03-11T05:03:42.381841-07:00,1000.8585205078125,10.728702,10728.702 +33600,2025-03-11T05:03:53.120963-07:00,1000.853271484375,10.739122,10739.122 +33601,2025-03-11T05:04:03.851307-07:00,1000.8370361328125,10.730344,10730.344 +33602,2025-03-11T05:04:14.576845-07:00,1000.8356323242188,10.725538,10725.538 +33603,2025-03-11T05:04:25.309901-07:00,1000.8303833007812,10.733056,10733.056 +33604,2025-03-11T05:04:36.044761-07:00,1000.8078002929688,10.73486,10734.86 +33605,2025-03-11T05:04:46.775003-07:00,1000.82373046875,10.730242,10730.242 +33606,2025-03-11T05:04:57.500794-07:00,1000.8126831054688,10.725791,10725.791 +33607,2025-03-11T05:05:08.228913-07:00,1000.8258666992188,10.728119,10728.119 +33608,2025-03-11T05:05:18.960062-07:00,1000.8192138671875,10.731149,10731.149 +33609,2025-03-11T05:05:29.690750-07:00,1000.7927856445312,10.730688,10730.688 +33610,2025-03-11T05:05:40.412770-07:00,1000.7899780273438,10.72202,10722.02 +33611,2025-03-11T05:05:51.145749-07:00,1000.8032836914062,10.732979,10732.979 +33612,2025-03-11T05:06:01.881781-07:00,1000.8015747070312,10.736032,10736.032 +33613,2025-03-11T05:06:12.605083-07:00,1000.7737426757812,10.723302,10723.302 +33614,2025-03-11T05:06:23.340742-07:00,1000.7723388671875,10.735659,10735.659 +33615,2025-03-11T05:06:34.065971-07:00,1000.7855224609375,10.725229,10725.229 +33616,2025-03-11T05:06:44.800940-07:00,1000.8052978515625,10.734969,10734.969 +33617,2025-03-11T05:06:55.533751-07:00,1000.7824096679688,10.732811,10732.811 +33618,2025-03-11T05:07:06.266880-07:00,1000.754638671875,10.733129,10733.129 +33619,2025-03-11T05:07:17.003968-07:00,1000.8126831054688,10.737088,10737.088 +33620,2025-03-11T05:07:27.733745-07:00,1000.7994384765625,10.729777,10729.777 +33621,2025-03-11T05:07:38.470782-07:00,1000.7500610351562,10.737037,10737.037 +33622,2025-03-11T05:07:49.199201-07:00,1000.7831420898438,10.728419,10728.419 +33623,2025-03-11T05:07:59.927969-07:00,1000.8095092773438,10.728768,10728.768 +33624,2025-03-11T05:08:10.659797-07:00,1000.788330078125,10.731828,10731.828 +33625,2025-03-11T05:08:21.385960-07:00,1000.788330078125,10.726163,10726.163 +33626,2025-03-11T05:08:32.120823-07:00,1000.7932739257812,10.734863,10734.863 +33627,2025-03-11T05:08:42.852098-07:00,1000.8279418945312,10.731275,10731.275 +33628,2025-03-11T05:08:53.578830-07:00,1000.81689453125,10.726732,10726.732 +33629,2025-03-11T05:09:04.306108-07:00,1000.8248291015625,10.727278,10727.278 +33630,2025-03-11T05:09:15.042743-07:00,1000.810302734375,10.736635,10736.635 +33631,2025-03-11T05:09:25.769950-07:00,1000.7887573242188,10.727207,10727.207 +33632,2025-03-11T05:09:36.496076-07:00,1000.841552734375,10.726126,10726.126 +33633,2025-03-11T05:09:47.227197-07:00,1000.8548583984375,10.731121,10731.121 +33634,2025-03-11T05:09:57.964566-07:00,1000.8680419921875,10.737369,10737.369 +33635,2025-03-11T05:10:08.687795-07:00,1000.85205078125,10.723229,10723.229 +33636,2025-03-11T05:10:19.413821-07:00,1000.8568725585938,10.726026,10726.026 +33637,2025-03-11T05:10:30.146144-07:00,1000.8833618164062,10.732323,10732.323 +33638,2025-03-11T05:10:40.877754-07:00,1000.85546875,10.73161,10731.61 +33639,2025-03-11T05:10:51.603750-07:00,1000.8701782226562,10.725996,10725.996 +33640,2025-03-11T05:11:02.324773-07:00,1000.8409423828125,10.721023,10721.023 +33641,2025-03-11T05:11:13.049806-07:00,1000.85546875,10.725033,10725.033 +33642,2025-03-11T05:11:23.784031-07:00,1000.8739013671875,10.734225,10734.225 +33643,2025-03-11T05:11:34.508912-07:00,1000.8687744140625,10.724881,10724.881 +33644,2025-03-11T05:11:45.243762-07:00,1000.8590698242188,10.73485,10734.85 +33645,2025-03-11T05:11:55.975826-07:00,1000.8590698242188,10.732064,10732.064 +33646,2025-03-11T05:12:06.695908-07:00,1000.8739013671875,10.720082,10720.082 +33647,2025-03-11T05:12:17.429956-07:00,1000.8641967773438,10.734048,10734.048 +33648,2025-03-11T05:12:28.159945-07:00,1000.8641967773438,10.729989,10729.989 +33649,2025-03-11T05:12:38.885750-07:00,1000.8378295898438,10.725805,10725.805 +33650,2025-03-11T05:12:49.610221-07:00,1000.884033203125,10.724471,10724.471 +33651,2025-03-11T05:13:00.346632-07:00,1000.8746948242188,10.736411,10736.411 +33652,2025-03-11T05:13:11.064985-07:00,1000.8826293945312,10.718353,10718.353 +33653,2025-03-11T05:13:21.794930-07:00,1000.8465576171875,10.729945,10729.945 +33654,2025-03-11T05:13:32.521750-07:00,1000.8548583984375,10.72682,10726.82 +33655,2025-03-11T05:13:43.247110-07:00,1000.8304443359375,10.72536,10725.36 +33656,2025-03-11T05:13:53.978897-07:00,1000.8482666015625,10.731787,10731.787 +33657,2025-03-11T05:14:04.699800-07:00,1000.8318481445312,10.720903,10720.903 +33658,2025-03-11T05:14:15.435869-07:00,1000.87158203125,10.736069,10736.069 +33659,2025-03-11T05:14:26.164775-07:00,1000.8370971679688,10.728906,10728.906 +33660,2025-03-11T05:14:36.885961-07:00,1000.84375,10.721186,10721.186 +33661,2025-03-11T05:14:47.619003-07:00,1000.8649291992188,10.733042,10733.042 +33662,2025-03-11T05:14:58.339757-07:00,1000.8649291992188,10.720754,10720.754 +33663,2025-03-11T05:15:09.066937-07:00,1000.8531494140625,10.72718,10727.18 +33664,2025-03-11T05:15:19.796747-07:00,1000.8781127929688,10.72981,10729.81 +33665,2025-03-11T05:15:30.531962-07:00,1000.8304443359375,10.735215,10735.215 +33666,2025-03-11T05:15:41.251596-07:00,1000.8287353515625,10.719634,10719.634 +33667,2025-03-11T05:15:51.971749-07:00,1000.8568725585938,10.720153,10720.153 +33668,2025-03-11T05:16:02.700172-07:00,1000.8551635742188,10.728423,10728.423 +33669,2025-03-11T05:16:13.430747-07:00,1000.8670043945312,10.730575,10730.575 +33670,2025-03-11T05:16:24.152778-07:00,1000.8325805664062,10.722031,10722.031 +33671,2025-03-11T05:16:34.884792-07:00,1000.850341796875,10.732014,10732.014 +33672,2025-03-11T05:16:45.603398-07:00,1000.8538208007812,10.718606,10718.606 +33673,2025-03-11T05:16:56.331783-07:00,1000.8325805664062,10.728385,10728.385 +33674,2025-03-11T05:17:07.054774-07:00,1000.84716796875,10.722991,10722.991 +33675,2025-03-11T05:17:17.788751-07:00,1000.833984375,10.733977,10733.977 +33676,2025-03-11T05:17:28.516399-07:00,1000.8392333984375,10.727648,10727.648 +33677,2025-03-11T05:17:39.232925-07:00,1000.82421875,10.716526,10716.526 +33678,2025-03-11T05:17:49.965921-07:00,1000.82421875,10.732996,10732.996 +33679,2025-03-11T05:18:00.679748-07:00,1000.817626953125,10.713827,10713.827 +33680,2025-03-11T05:18:08.929086-07:00,1000.8096923828125,8.249338,8249.338 +33681,2025-03-11T05:18:11.406091-07:00,1000.8082885742188,2.477005,2477.005 +33682,2025-03-11T05:18:22.130005-07:00,1000.8016357421875,10.723914,10723.914 +33683,2025-03-11T05:18:32.858041-07:00,1000.8096923828125,10.728036,10728.036 +33684,2025-03-11T05:18:43.575749-07:00,1000.7801513671875,10.717708,10717.708 +33685,2025-03-11T05:18:54.304845-07:00,1000.7752075195312,10.729096,10729.096 +33686,2025-03-11T05:19:05.026912-07:00,1000.7932739257812,10.722067,10722.067 +33687,2025-03-11T05:19:15.752154-07:00,1000.7985229492188,10.725242,10725.242 +33688,2025-03-11T05:19:26.468958-07:00,1000.7801513671875,10.716804,10716.804 +33689,2025-03-11T05:19:37.198745-07:00,1000.7853393554688,10.729787,10729.787 +33690,2025-03-11T05:19:47.924775-07:00,1000.7932739257812,10.72603,10726.03 +33691,2025-03-11T05:19:58.650857-07:00,1000.80517578125,10.726082,10726.082 +33692,2025-03-11T05:20:09.371820-07:00,1000.79052734375,10.720963,10720.963 +33693,2025-03-11T05:20:20.104954-07:00,1000.783935546875,10.733134,10733.134 +33694,2025-03-11T05:20:30.819927-07:00,1000.783935546875,10.714973,10714.973 +33695,2025-03-11T05:20:41.548782-07:00,1000.7759399414062,10.728855,10728.855 +33696,2025-03-11T05:20:52.273153-07:00,1000.7853393554688,10.724371,10724.371 +33697,2025-03-11T05:21:02.995919-07:00,1000.7891235351562,10.722766,10722.766 +33698,2025-03-11T05:21:09.652074-07:00,1000.75439453125,6.656155,6656.155 +33699,2025-03-11T05:21:13.724828-07:00,1000.7449951171875,4.072754,4072.754 +33700,2025-03-11T05:21:24.457941-07:00,1000.7717895507812,10.733113,10733.113 +33701,2025-03-11T05:21:35.176750-07:00,1000.7606201171875,10.718809,10718.809 +33702,2025-03-11T05:21:45.901927-07:00,1000.7384643554688,10.725177,10725.177 +33703,2025-03-11T05:21:56.636018-07:00,1000.7175903320312,10.734091,10734.091 +33704,2025-03-11T05:22:07.350938-07:00,1000.74951171875,10.71492,10714.92 +33705,2025-03-11T05:22:18.084773-07:00,1000.7179565429688,10.733835,10733.835 +33706,2025-03-11T05:22:28.813995-07:00,1000.7418823242188,10.729222,10729.222 +33707,2025-03-11T05:22:39.538942-07:00,1000.724853515625,10.724947,10724.947 +33708,2025-03-11T05:22:50.268750-07:00,1000.7488403320312,10.729808,10729.808 +33709,2025-03-11T05:23:00.987828-07:00,1000.7265625,10.719078,10719.078 +33710,2025-03-11T05:23:11.713748-07:00,1000.730712890625,10.72592,10725.92 +33711,2025-03-11T05:23:22.442836-07:00,1000.7445068359375,10.729088,10729.088 +33712,2025-03-11T05:23:33.168540-07:00,1000.7421264648438,10.725704,10725.704 +33713,2025-03-11T05:23:43.894750-07:00,1000.73486328125,10.72621,10726.21 +33714,2025-03-11T05:23:54.627748-07:00,1000.7306518554688,10.732998,10732.998 +33715,2025-03-11T05:24:05.354086-07:00,1000.7349853515625,10.726338,10726.338 +33716,2025-03-11T05:24:16.072934-07:00,1000.7340087890625,10.718848,10718.848 +33717,2025-03-11T05:24:26.798946-07:00,1000.734375,10.726012,10726.012 +33718,2025-03-11T05:24:37.533951-07:00,1000.7597045898438,10.735005,10735.005 +33719,2025-03-11T05:24:48.255931-07:00,1000.6978149414062,10.72198,10721.98 +33720,2025-03-11T05:24:58.985747-07:00,1000.716796875,10.729816,10729.816 +33721,2025-03-11T05:25:09.702485-07:00,1000.7386474609375,10.716738,10716.738 +33722,2025-03-11T05:25:20.433955-07:00,1000.7459106445312,10.73147,10731.47 +33723,2025-03-11T05:25:31.161749-07:00,1000.7316284179688,10.727794,10727.794 +33724,2025-03-11T05:25:41.878054-07:00,1000.7044677734375,10.716305,10716.305 +33725,2025-03-11T05:25:52.610747-07:00,1000.7423706054688,10.732693,10732.693 +33726,2025-03-11T05:26:03.334092-07:00,1000.757568359375,10.723345,10723.345 +33727,2025-03-11T05:26:14.057750-07:00,1000.6907958984375,10.723658,10723.658 +33728,2025-03-11T05:26:24.782963-07:00,1000.725830078125,10.725213,10725.213 +33729,2025-03-11T05:26:35.509768-07:00,1000.7279663085938,10.726805,10726.805 +33730,2025-03-11T05:26:46.233884-07:00,1000.7115478515625,10.724116,10724.116 +33731,2025-03-11T05:26:56.967692-07:00,1000.6976318359375,10.733808,10733.808 +33732,2025-03-11T05:27:07.692990-07:00,1000.7142333984375,10.725298,10725.298 +33733,2025-03-11T05:27:18.410912-07:00,1000.695068359375,10.717922,10717.922 +33734,2025-03-11T05:27:29.144138-07:00,1000.6936645507812,10.733226,10733.226 +33735,2025-03-11T05:27:39.873965-07:00,1000.6873168945312,10.729827,10729.827 +33736,2025-03-11T05:27:50.599039-07:00,1000.705810546875,10.725074,10725.074 +33737,2025-03-11T05:28:01.316823-07:00,1000.6865844726562,10.717784,10717.784 +33738,2025-03-11T05:28:12.052749-07:00,1000.6981201171875,10.735926,10735.926 +33739,2025-03-11T05:28:22.777750-07:00,1000.674072265625,10.725001,10725.001 +33740,2025-03-11T05:28:33.506013-07:00,1000.6709594726562,10.728263,10728.263 +33741,2025-03-11T05:28:44.233959-07:00,1000.6582641601562,10.727946,10727.946 +33742,2025-03-11T05:28:54.961746-07:00,1000.6795043945312,10.727787,10727.787 +33743,2025-03-11T05:29:05.682114-07:00,1000.6815795898438,10.720368,10720.368 +33744,2025-03-11T05:29:16.410819-07:00,1000.6849975585938,10.728705,10728.705 +33745,2025-03-11T05:29:27.134013-07:00,1000.68359375,10.723194,10723.194 +33746,2025-03-11T05:29:37.864319-07:00,1000.6658325195312,10.730306,10730.306 +33747,2025-03-11T05:29:48.587854-07:00,1000.6759643554688,10.723535,10723.535 +33748,2025-03-11T05:29:59.314918-07:00,1000.6693115234375,10.727064,10727.064 +33749,2025-03-11T05:30:10.041831-07:00,1000.6581420898438,10.726913,10726.913 +33750,2025-03-11T05:30:20.773746-07:00,1000.67626953125,10.731915,10731.915 +33751,2025-03-11T05:30:31.506961-07:00,1000.6470336914062,10.733215,10733.215 +33752,2025-03-11T05:30:42.230982-07:00,1000.6649780273438,10.724021,10724.021 +33753,2025-03-11T05:30:52.958749-07:00,1000.6885986328125,10.727767,10727.767 +33754,2025-03-11T05:31:03.685769-07:00,1000.6754150390625,10.72702,10727.02 +33755,2025-03-11T05:31:14.416913-07:00,1000.6590576171875,10.731144,10731.144 +33756,2025-03-11T05:31:25.135444-07:00,1000.6820068359375,10.718531,10718.531 +33757,2025-03-11T05:31:35.867905-07:00,1000.671630859375,10.732461,10732.461 +33758,2025-03-11T05:31:46.596748-07:00,1000.655029296875,10.728843,10728.843 +33759,2025-03-11T05:31:57.321931-07:00,1000.6793823242188,10.725183,10725.183 +33760,2025-03-11T05:32:08.059165-07:00,1000.6904907226562,10.737234,10737.234 +33761,2025-03-11T05:32:18.786574-07:00,1000.68701171875,10.727409,10727.409 +33762,2025-03-11T05:32:29.513886-07:00,1000.6849975585938,10.727312,10727.312 +33763,2025-03-11T05:32:40.240035-07:00,1000.6913452148438,10.726149,10726.149 +33764,2025-03-11T05:32:50.971922-07:00,1000.6695556640625,10.731887,10731.887 +33765,2025-03-11T05:33:01.693068-07:00,1000.7230224609375,10.721146,10721.146 +33766,2025-03-11T05:33:12.426805-07:00,1000.6931762695312,10.733737,10733.737 +33767,2025-03-11T05:33:23.154932-07:00,1000.7242431640625,10.728127,10728.127 +33768,2025-03-11T05:33:33.886026-07:00,1000.7023315429688,10.731094,10731.094 +33769,2025-03-11T05:33:44.615750-07:00,1000.7003173828125,10.729724,10729.724 +33770,2025-03-11T05:33:55.343679-07:00,1000.7295532226562,10.727929,10727.929 +33771,2025-03-11T05:34:06.068028-07:00,1000.6849975585938,10.724349,10724.349 +33772,2025-03-11T05:34:16.797293-07:00,1000.7090454101562,10.729265,10729.265 +33773,2025-03-11T05:34:27.527781-07:00,1000.72021484375,10.730488,10730.488 +33774,2025-03-11T05:34:38.256089-07:00,1000.7056274414062,10.728308,10728.308 +33775,2025-03-11T05:34:48.986915-07:00,1000.70703125,10.730826,10730.826 +33776,2025-03-11T05:34:59.718996-07:00,1000.7101440429688,10.732081,10732.081 +33777,2025-03-11T05:35:10.445749-07:00,1000.723388671875,10.726753,10726.753 +33778,2025-03-11T05:35:21.173917-07:00,1000.72998046875,10.728168,10728.168 +33779,2025-03-11T05:35:31.904960-07:00,1000.72998046875,10.731043,10731.043 +33780,2025-03-11T05:35:42.631779-07:00,1000.7199096679688,10.726819,10726.819 +33781,2025-03-11T05:35:53.359602-07:00,1000.70361328125,10.727823,10727.823 +33782,2025-03-11T05:36:04.091748-07:00,1000.7146606445312,10.732146,10732.146 +33783,2025-03-11T05:36:14.810930-07:00,1000.7345581054688,10.719182,10719.182 +33784,2025-03-11T05:36:25.541750-07:00,1000.7491455078125,10.73082,10730.82 +33785,2025-03-11T05:36:36.274745-07:00,1000.7410888671875,10.732995,10732.995 +33786,2025-03-11T05:36:46.997943-07:00,1000.7293701171875,10.723198,10723.198 +33787,2025-03-11T05:36:57.731774-07:00,1000.7293701171875,10.733831,10733.831 +33788,2025-03-11T05:37:08.457208-07:00,1000.74560546875,10.725434,10725.434 +33789,2025-03-11T05:37:19.187093-07:00,1000.7550659179688,10.729885,10729.885 +33790,2025-03-11T05:37:29.919752-07:00,1000.7352905273438,10.732659,10732.659 +33791,2025-03-11T05:37:40.647747-07:00,1000.7384643554688,10.727995,10727.995 +33792,2025-03-11T05:37:51.371899-07:00,1000.73046875,10.724152,10724.152 +33793,2025-03-11T05:38:02.099824-07:00,1000.7332763671875,10.727925,10727.925 +33794,2025-03-11T05:38:12.835965-07:00,1000.7363891601562,10.736141,10736.141 +33795,2025-03-11T05:38:23.563747-07:00,1000.6981811523438,10.727782,10727.782 +33796,2025-03-11T05:38:34.292956-07:00,1000.754150390625,10.729209,10729.209 +33797,2025-03-11T05:38:45.024981-07:00,1000.7520141601562,10.732025,10732.025 +33798,2025-03-11T05:38:55.753805-07:00,1000.7520141601562,10.728824,10728.824 +33799,2025-03-11T05:39:06.489745-07:00,1000.7468872070312,10.73594,10735.94 +33800,2025-03-11T05:39:17.219295-07:00,1000.744873046875,10.72955,10729.55 +33801,2025-03-11T05:39:27.940750-07:00,1000.7330322265625,10.721455,10721.455 +33802,2025-03-11T05:39:38.677744-07:00,1000.7559204101562,10.736994,10736.994 +33803,2025-03-11T05:39:49.409816-07:00,1000.73095703125,10.732072,10732.072 +33804,2025-03-11T05:40:00.142731-07:00,1000.7525024414062,10.732915,10732.915 +33805,2025-03-11T05:40:10.865166-07:00,1000.7407836914062,10.722435,10722.435 +33806,2025-03-11T05:40:21.602937-07:00,1000.7122802734375,10.737771,10737.771 +33807,2025-03-11T05:40:32.334851-07:00,1000.7050170898438,10.731914,10731.914 +33808,2025-03-11T05:40:43.058890-07:00,1000.7064208984375,10.724039,10724.039 +33809,2025-03-11T05:40:53.789042-07:00,1000.7029418945312,10.730152,10730.152 +33810,2025-03-11T05:41:04.520797-07:00,1000.7154541015625,10.731755,10731.755 +33811,2025-03-11T05:41:15.256839-07:00,1000.719970703125,10.736042,10736.042 +33812,2025-03-11T05:41:25.990775-07:00,1000.68701171875,10.733936,10733.936 +33813,2025-03-11T05:41:36.720957-07:00,1000.726318359375,10.730182,10730.182 +33814,2025-03-11T05:41:47.452946-07:00,1000.7210693359375,10.731989,10731.989 +33815,2025-03-11T05:41:58.177479-07:00,1000.7128295898438,10.724533,10724.533 +33816,2025-03-11T05:42:08.916930-07:00,1000.697509765625,10.739451,10739.451 +33817,2025-03-11T05:42:19.652945-07:00,1000.6954956054688,10.736015,10736.015 +33818,2025-03-11T05:42:30.387751-07:00,1000.693359375,10.734806,10734.806 +33819,2025-03-11T05:42:41.119053-07:00,1000.7093505859375,10.731302,10731.302 +33820,2025-03-11T05:42:51.847372-07:00,1000.6961669921875,10.728319,10728.319 +33821,2025-03-11T05:43:02.575957-07:00,1000.71044921875,10.728585,10728.585 +33822,2025-03-11T05:43:13.310901-07:00,1000.7052612304688,10.734944,10734.944 +33823,2025-03-11T05:43:24.042921-07:00,1000.7097778320312,10.73202,10732.02 +33824,2025-03-11T05:43:34.769819-07:00,1000.7062377929688,10.726898,10726.898 +33825,2025-03-11T05:43:45.508802-07:00,1000.7042236328125,10.738983,10738.983 +33826,2025-03-11T05:43:56.238943-07:00,1000.748046875,10.730141,10730.141 +33827,2025-03-11T05:44:06.966747-07:00,1000.6983642578125,10.727804,10727.804 +33828,2025-03-11T05:44:17.696790-07:00,1000.6997680664062,10.730043,10730.043 +33829,2025-03-11T05:44:28.428103-07:00,1000.6779174804688,10.731313,10731.313 +33830,2025-03-11T05:44:39.153749-07:00,1000.6876831054688,10.725646,10725.646 +33831,2025-03-11T05:44:49.887902-07:00,1000.7067260742188,10.734153,10734.153 +33832,2025-03-11T05:45:00.616060-07:00,1000.7015380859375,10.728158,10728.158 +33833,2025-03-11T05:45:11.348747-07:00,1000.6834106445312,10.732687,10732.687 +33834,2025-03-11T05:45:22.073751-07:00,1000.6893920898438,10.725004,10725.004 +33835,2025-03-11T05:45:32.804104-07:00,1000.6973266601562,10.730353,10730.353 +33836,2025-03-11T05:45:43.536747-07:00,1000.7168579101562,10.732643,10732.643 +33837,2025-03-11T05:45:54.266951-07:00,1000.7050170898438,10.730204,10730.204 +33838,2025-03-11T05:46:04.993494-07:00,1000.721435546875,10.726543,10726.543 +33839,2025-03-11T05:46:15.723904-07:00,1000.6859130859375,10.73041,10730.41 +33840,2025-03-11T05:46:26.458963-07:00,1000.7301025390625,10.735059,10735.059 +33841,2025-03-11T05:46:37.186633-07:00,1000.6838989257812,10.72767,10727.67 +33842,2025-03-11T05:46:47.906991-07:00,1000.6817016601562,10.720358,10720.358 +33843,2025-03-11T05:46:58.645148-07:00,1000.7047119140625,10.738157,10738.157 +33844,2025-03-11T05:47:09.371811-07:00,1000.68798828125,10.726663,10726.663 +33845,2025-03-11T05:47:20.096942-07:00,1000.6695556640625,10.725131,10725.131 +33846,2025-03-11T05:47:30.824160-07:00,1000.6754760742188,10.727218,10727.218 +33847,2025-03-11T05:47:41.557747-07:00,1000.6785888671875,10.733587,10733.587 +33848,2025-03-11T05:47:52.287751-07:00,1000.6668090820312,10.730004,10730.004 +33849,2025-03-11T05:48:03.015941-07:00,1000.669921875,10.72819,10728.19 +33850,2025-03-11T05:48:13.742747-07:00,1000.6793823242188,10.726806,10726.806 +33851,2025-03-11T05:48:24.477750-07:00,1000.6890869140625,10.735003,10735.003 +33852,2025-03-11T05:48:35.198101-07:00,1000.685546875,10.720351,10720.351 +33853,2025-03-11T05:48:45.928747-07:00,1000.6897583007812,10.730646,10730.646 +33854,2025-03-11T05:48:56.657993-07:00,1000.6981201171875,10.729246,10729.246 +33855,2025-03-11T05:49:07.385752-07:00,1000.686279296875,10.727759,10727.759 +33856,2025-03-11T05:49:18.113749-07:00,1000.6681518554688,10.727997,10727.997 +33857,2025-03-11T05:49:28.834778-07:00,1000.6962280273438,10.721029,10721.029 +33858,2025-03-11T05:49:39.568956-07:00,1000.6810302734375,10.734178,10734.178 +33859,2025-03-11T05:49:50.293997-07:00,1000.6837768554688,10.725041,10725.041 +33860,2025-03-11T05:50:01.026747-07:00,1000.6854858398438,10.73275,10732.75 +33861,2025-03-11T05:50:11.755079-07:00,1000.7067260742188,10.728332,10728.332 +33862,2025-03-11T05:50:22.487747-07:00,1000.7178344726562,10.732668,10732.668 +33863,2025-03-11T05:50:33.209774-07:00,1000.71923828125,10.722027,10722.027 +33864,2025-03-11T05:50:43.949744-07:00,1000.7223510742188,10.73997,10739.97 +33865,2025-03-11T05:50:54.669915-07:00,1000.72900390625,10.720171,10720.171 +33866,2025-03-11T05:51:05.403936-07:00,1000.68408203125,10.734021,10734.021 +33867,2025-03-11T05:51:16.130748-07:00,1000.7084350585938,10.726812,10726.812 +33868,2025-03-11T05:51:26.869750-07:00,1000.6900024414062,10.739002,10739.002 +33869,2025-03-11T05:51:37.598792-07:00,1000.7276000976562,10.729042,10729.042 +33870,2025-03-11T05:51:48.332744-07:00,1000.720947265625,10.733952,10733.952 +33871,2025-03-11T05:51:59.054936-07:00,1000.712158203125,10.722192,10722.192 +33872,2025-03-11T05:52:09.782050-07:00,1000.70703125,10.727114,10727.114 +33873,2025-03-11T05:52:20.519750-07:00,1000.7101440429688,10.7377,10737.7 +33874,2025-03-11T05:52:31.253046-07:00,1000.7115478515625,10.733296,10733.296 +33875,2025-03-11T05:52:41.977744-07:00,1000.7146606445312,10.724698,10724.698 +33876,2025-03-11T05:52:52.708875-07:00,1000.7323608398438,10.731131,10731.131 +33877,2025-03-11T05:53:03.438128-07:00,1000.739013671875,10.729253,10729.253 +33878,2025-03-11T05:53:14.176360-07:00,1000.7125244140625,10.738232,10738.232 +33879,2025-03-11T05:53:24.904848-07:00,1000.7354736328125,10.728488,10728.488 +33880,2025-03-11T05:53:35.651515-07:00,1000.7236938476562,10.746667,10746.667 +33881,2025-03-11T05:53:46.385339-07:00,1000.753173828125,10.733824,10733.824 +33882,2025-03-11T05:53:57.124345-07:00,1000.7347412109375,10.739006,10739.006 +33883,2025-03-11T05:54:07.851514-07:00,1000.7626342773438,10.727169,10727.169 +33884,2025-03-11T05:54:18.583250-07:00,1000.7684936523438,10.731736,10731.736 +33885,2025-03-11T05:54:29.306314-07:00,1000.7406005859375,10.723064,10723.064 +33886,2025-03-11T05:54:40.042321-07:00,1000.7371826171875,10.736007,10736.007 +33887,2025-03-11T05:54:50.768339-07:00,1000.74658203125,10.726018,10726.018 +33888,2025-03-11T05:55:01.497314-07:00,1000.774658203125,10.728975,10728.975 +33889,2025-03-11T05:55:12.236509-07:00,1000.76953125,10.739195,10739.195 +33890,2025-03-11T05:55:22.958587-07:00,1000.7576293945312,10.722078,10722.078 +33891,2025-03-11T05:55:33.695316-07:00,1000.740966796875,10.736729,10736.729 +33892,2025-03-11T05:55:44.420385-07:00,1000.734375,10.725069,10725.069 +33893,2025-03-11T05:55:55.147524-07:00,1000.7291259765625,10.727139,10727.139 +33894,2025-03-11T05:56:05.882316-07:00,1000.7454833984375,10.734792,10734.792 +33895,2025-03-11T05:56:16.612654-07:00,1000.7388305664062,10.730338,10730.338 +33896,2025-03-11T05:56:27.343316-07:00,1000.72705078125,10.730662,10730.662 +33897,2025-03-11T05:56:38.066318-07:00,1000.7151489257812,10.723002,10723.002 +33898,2025-03-11T05:56:48.804530-07:00,1000.7249145507812,10.738212,10738.212 +33899,2025-03-11T05:56:59.526385-07:00,1000.713134765625,10.721855,10721.855 +33900,2025-03-11T05:57:10.260506-07:00,1000.7196655273438,10.734121,10734.121 +33901,2025-03-11T05:57:20.994515-07:00,1000.7279663085938,10.734009,10734.009 +33902,2025-03-11T05:57:31.724368-07:00,1000.7228393554688,10.729853,10729.853 +33903,2025-03-11T05:57:42.456317-07:00,1000.712646484375,10.731949,10731.949 +33904,2025-03-11T05:57:53.193498-07:00,1000.712646484375,10.737181,10737.181 +33905,2025-03-11T05:58:03.925497-07:00,1000.7140502929688,10.731999,10731.999 +33906,2025-03-11T05:58:14.665336-07:00,1000.70751953125,10.739839,10739.839 +33907,2025-03-11T05:58:25.392319-07:00,1000.6973266601562,10.726983,10726.983 +33908,2025-03-11T05:58:36.124352-07:00,1000.68408203125,10.732033,10732.033 +33909,2025-03-11T05:58:46.858455-07:00,1000.7171630859375,10.734103,10734.103 +33910,2025-03-11T05:58:57.595512-07:00,1000.7265625,10.737057,10737.057 +33911,2025-03-11T05:59:08.328315-07:00,1000.6935424804688,10.732803,10732.803 +33912,2025-03-11T05:59:19.058494-07:00,1000.7015380859375,10.730179,10730.179 +33913,2025-03-11T05:59:29.801104-07:00,1000.6882934570312,10.74261,10742.61 +33914,2025-03-11T05:59:40.535355-07:00,1000.7015380859375,10.734251,10734.251 +33915,2025-03-11T05:59:51.263435-07:00,1000.7098388671875,10.72808,10728.08 +33916,2025-03-11T06:00:02.001435-07:00,1000.6900024414062,10.738,10738.0 +33917,2025-03-11T06:00:12.739560-07:00,1000.6945190429688,10.738125,10738.125 +33918,2025-03-11T06:00:23.467834-07:00,1000.6928100585938,10.728274,10728.274 +33919,2025-03-11T06:00:34.204509-07:00,1000.662841796875,10.736675,10736.675 +33920,2025-03-11T06:00:44.932491-07:00,1000.6878662109375,10.727982,10727.982 +33921,2025-03-11T06:00:55.675508-07:00,1000.6760864257812,10.743017,10743.017 +33922,2025-03-11T06:01:06.401376-07:00,1000.677490234375,10.725868,10725.868 +33923,2025-03-11T06:01:17.134764-07:00,1000.6805419921875,10.733388,10733.388 +33924,2025-03-11T06:01:27.868804-07:00,1000.6738891601562,10.73404,10734.04 +33925,2025-03-11T06:01:38.606387-07:00,1000.6673583984375,10.737583,10737.583 +33926,2025-03-11T06:01:49.341516-07:00,1000.6903076171875,10.735129,10735.129 +33927,2025-03-11T06:02:00.069884-07:00,1000.6704711914062,10.728368,10728.368 +33928,2025-03-11T06:02:10.809164-07:00,1000.6422729492188,10.73928,10739.28 +33929,2025-03-11T06:02:21.543315-07:00,1000.6585693359375,10.734151,10734.151 +33930,2025-03-11T06:02:32.278319-07:00,1000.6599731445312,10.735004,10735.004 +33931,2025-03-11T06:02:43.010573-07:00,1000.6322021484375,10.732254,10732.254 +33932,2025-03-11T06:02:53.740378-07:00,1000.6282958984375,10.729805,10729.805 +33933,2025-03-11T06:03:04.477505-07:00,1000.6300048828125,10.737127,10737.127 +33934,2025-03-11T06:03:15.216316-07:00,1000.6578369140625,10.738811,10738.811 +33935,2025-03-11T06:03:25.942705-07:00,1000.6741943359375,10.726389,10726.389 +33936,2025-03-11T06:03:36.673318-07:00,1000.64111328125,10.730613,10730.613 +33937,2025-03-11T06:03:47.412570-07:00,1000.6676025390625,10.739252,10739.252 +33938,2025-03-11T06:03:58.148584-07:00,1000.6693115234375,10.736014,10736.014 +33939,2025-03-11T06:04:08.878885-07:00,1000.6442260742188,10.730301,10730.301 +33940,2025-03-11T06:04:19.609346-07:00,1000.6376342773438,10.730461,10730.461 +33941,2025-03-11T06:04:30.345318-07:00,1000.639404296875,10.735972,10735.972 +33942,2025-03-11T06:04:41.088311-07:00,1000.665771484375,10.742993,10742.993 +33943,2025-03-11T06:04:51.822520-07:00,1000.6487426757812,10.734209,10734.209 +33944,2025-03-11T06:05:02.546525-07:00,1000.6605224609375,10.724005,10724.005 +33945,2025-03-11T06:05:13.287497-07:00,1000.62890625,10.740972,10740.972 +33946,2025-03-11T06:05:24.017867-07:00,1000.658447265625,10.73037,10730.37 +33947,2025-03-11T06:05:34.755567-07:00,1000.63720703125,10.7377,10737.7 +33948,2025-03-11T06:05:45.484318-07:00,1000.6598510742188,10.728751,10728.751 +33949,2025-03-11T06:05:56.221310-07:00,1000.6451416015625,10.736992,10736.992 +33950,2025-03-11T06:06:06.954481-07:00,1000.6417236328125,10.733171,10733.171 +33951,2025-03-11T06:06:17.680521-07:00,1000.6400146484375,10.72604,10726.04 +33952,2025-03-11T06:06:28.412376-07:00,1000.6364135742188,10.731855,10731.855 +33953,2025-03-11T06:06:39.139089-07:00,1000.664306640625,10.726713,10726.713 +33954,2025-03-11T06:06:49.869611-07:00,1000.623291015625,10.730522,10730.522 +33955,2025-03-11T06:07:00.598352-07:00,1000.6246337890625,10.728741,10728.741 +33956,2025-03-11T06:07:11.343680-07:00,1000.6246337890625,10.745328,10745.328 +33957,2025-03-11T06:07:22.070463-07:00,1000.6260375976562,10.726783,10726.783 +33958,2025-03-11T06:07:32.805551-07:00,1000.6290893554688,10.735088,10735.088 +33959,2025-03-11T06:07:43.532896-07:00,1000.606201171875,10.727345,10727.345 +33960,2025-03-11T06:07:54.268531-07:00,1000.5995483398438,10.735635,10735.635 +33961,2025-03-11T06:08:04.990435-07:00,1000.60791015625,10.721904,10721.904 +33962,2025-03-11T06:08:15.723385-07:00,1000.6026611328125,10.73295,10732.95 +33963,2025-03-11T06:08:26.459936-07:00,1000.615966796875,10.736551,10736.551 +33964,2025-03-11T06:08:37.193530-07:00,1000.6091918945312,10.733594,10733.594 +33965,2025-03-11T06:08:47.926395-07:00,1000.6239013671875,10.732865,10732.865 +33966,2025-03-11T06:08:58.654618-07:00,1000.584228515625,10.728223,10728.223 +33967,2025-03-11T06:09:09.386311-07:00,1000.607177734375,10.731693,10731.693 +33968,2025-03-11T06:09:20.120314-07:00,1000.59912109375,10.734003,10734.003 +33969,2025-03-11T06:09:30.855835-07:00,1000.556396484375,10.735521,10735.521 +33970,2025-03-11T06:09:41.578315-07:00,1000.5709228515625,10.72248,10722.48 +33971,2025-03-11T06:09:52.312315-07:00,1000.5675048828125,10.734,10734.0 +33972,2025-03-11T06:10:03.042103-07:00,1000.5806884765625,10.729788,10729.788 +33973,2025-03-11T06:10:13.777315-07:00,1000.5887451171875,10.735212,10735.212 +33974,2025-03-11T06:10:24.500343-07:00,1000.5887451171875,10.723028,10723.028 +33975,2025-03-11T06:10:35.238315-07:00,1000.5556030273438,10.737972,10737.972 +33976,2025-03-11T06:10:45.968414-07:00,1000.5772094726562,10.730099,10730.099 +33977,2025-03-11T06:10:56.704388-07:00,1000.5639038085938,10.735974,10735.974 +33978,2025-03-11T06:11:07.437318-07:00,1000.5621948242188,10.73293,10732.93 +33979,2025-03-11T06:11:18.164690-07:00,1000.5309448242188,10.727372,10727.372 +33980,2025-03-11T06:11:28.901342-07:00,1000.5309448242188,10.736652,10736.652 +33981,2025-03-11T06:11:39.636522-07:00,1000.5322875976562,10.73518,10735.18 +33982,2025-03-11T06:11:50.364485-07:00,1000.5388793945312,10.727963,10727.963 +33983,2025-03-11T06:12:01.095513-07:00,1000.53369140625,10.731028,10731.028 +33984,2025-03-11T06:12:11.833377-07:00,1000.5204467773438,10.737864,10737.864 +33985,2025-03-11T06:12:22.564532-07:00,1000.5234985351562,10.731155,10731.155 +33986,2025-03-11T06:12:33.305488-07:00,1000.5367431640625,10.740956,10740.956 +33987,2025-03-11T06:12:44.033473-07:00,1000.5315551757812,10.727985,10727.985 +33988,2025-03-11T06:12:54.767531-07:00,1000.52490234375,10.734058,10734.058 +33989,2025-03-11T06:13:05.509318-07:00,1000.5279541015625,10.741787,10741.787 +33990,2025-03-11T06:13:16.245314-07:00,1000.5262451171875,10.735996,10735.996 +33991,2025-03-11T06:13:26.972318-07:00,1000.532958984375,10.727004,10727.004 +33992,2025-03-11T06:13:37.701318-07:00,1000.5360107421875,10.729,10729.0 +33993,2025-03-11T06:13:48.441497-07:00,1000.5015869140625,10.740179,10740.179 +33994,2025-03-11T06:13:59.173074-07:00,1000.5081176757812,10.731577,10731.577 +33995,2025-03-11T06:14:09.908316-07:00,1000.5228271484375,10.735242,10735.242 +33996,2025-03-11T06:14:20.640320-07:00,1000.5175170898438,10.732004,10732.004 +33997,2025-03-11T06:14:31.368484-07:00,1000.509521484375,10.728164,10728.164 +33998,2025-03-11T06:14:42.104457-07:00,1000.4566650390625,10.735973,10735.973 +33999,2025-03-11T06:14:52.835749-07:00,1000.509521484375,10.731292,10731.292 +34000,2025-03-11T06:15:03.566518-07:00,1000.4618530273438,10.730769,10730.769 +34001,2025-03-11T06:15:14.291374-07:00,1000.4765014648438,10.724856,10724.856 +34002,2025-03-11T06:15:25.032322-07:00,1000.4646606445312,10.740948,10740.948 +34003,2025-03-11T06:15:35.759317-07:00,1000.4646606445312,10.726995,10726.995 +34004,2025-03-11T06:15:46.492861-07:00,1000.4315795898438,10.733544,10733.544 +34005,2025-03-11T06:15:57.220324-07:00,1000.4170532226562,10.727463,10727.463 +34006,2025-03-11T06:16:07.952887-07:00,1000.4862670898438,10.732563,10732.563 +34007,2025-03-11T06:16:18.693132-07:00,1000.4597778320312,10.740245,10740.245 +34008,2025-03-11T06:16:29.425379-07:00,1000.4597778320312,10.732247,10732.247 +34009,2025-03-11T06:16:40.159311-07:00,1000.4249877929688,10.733932,10733.932 +34010,2025-03-11T06:16:50.885506-07:00,1000.3984985351562,10.726195,10726.195 +34011,2025-03-11T06:17:01.620657-07:00,1000.42138671875,10.735151,10735.151 +34012,2025-03-11T06:17:12.350318-07:00,1000.378662109375,10.729661,10729.661 +34013,2025-03-11T06:17:23.086520-07:00,1000.39501953125,10.736202,10736.202 +34014,2025-03-11T06:17:33.815564-07:00,1000.373779296875,10.729044,10729.044 +34015,2025-03-11T06:17:44.549318-07:00,1000.38037109375,10.733754,10733.754 +34016,2025-03-11T06:17:55.280546-07:00,1000.3538818359375,10.731228,10731.228 +34017,2025-03-11T06:18:06.020319-07:00,1000.3605346679688,10.739773,10739.773 +34018,2025-03-11T06:18:16.753879-07:00,1000.388427734375,10.73356,10733.56 +34019,2025-03-11T06:18:27.488340-07:00,1000.3538818359375,10.734461,10734.461 +34020,2025-03-11T06:18:38.212512-07:00,1000.3421020507812,10.724172,10724.172 +34021,2025-03-11T06:18:48.949499-07:00,1000.3368530273438,10.736987,10736.987 +34022,2025-03-11T06:18:59.679800-07:00,1000.351806640625,10.730301,10730.301 +34023,2025-03-11T06:19:10.406466-07:00,1000.351806640625,10.726666,10726.666 +34024,2025-03-11T06:19:21.140505-07:00,1000.35986328125,10.734039,10734.039 +34025,2025-03-11T06:19:31.872384-07:00,1000.3434448242188,10.731879,10731.879 +34026,2025-03-11T06:19:42.602433-07:00,1000.3319702148438,10.730049,10730.049 +34027,2025-03-11T06:19:53.331487-07:00,1000.3465576171875,10.729054,10729.054 +34028,2025-03-11T06:20:04.064685-07:00,1000.338623046875,10.733198,10733.198 +34029,2025-03-11T06:20:14.794352-07:00,1000.3400268554688,10.729667,10729.667 +34030,2025-03-11T06:20:25.518957-07:00,1000.3187255859375,10.724605,10724.605 +34031,2025-03-11T06:20:36.252836-07:00,1000.3187255859375,10.733879,10733.879 +34032,2025-03-11T06:20:46.981514-07:00,1000.3253173828125,10.728678,10728.678 +34033,2025-03-11T06:20:57.717547-07:00,1000.338623046875,10.736033,10736.033 +34034,2025-03-11T06:21:08.442381-07:00,1000.343017578125,10.724834,10724.834 +34035,2025-03-11T06:21:19.184455-07:00,1000.33642578125,10.742074,10742.074 +34036,2025-03-11T06:21:29.912627-07:00,1000.35107421875,10.728172,10728.172 +34037,2025-03-11T06:21:40.641317-07:00,1000.380615234375,10.72869,10728.69 +34038,2025-03-11T06:21:51.381586-07:00,1000.3342895507812,10.740269,10740.269 +34039,2025-03-11T06:22:02.110516-07:00,1000.3541259765625,10.72893,10728.93 +34040,2025-03-11T06:22:12.840900-07:00,1000.3318481445312,10.730384,10730.384 +34041,2025-03-11T06:22:23.573520-07:00,1000.3599853515625,10.73262,10732.62 +34042,2025-03-11T06:22:34.304079-07:00,1000.3495483398438,10.730559,10730.559 +34043,2025-03-11T06:22:45.034854-07:00,1000.3495483398438,10.730775,10730.775 +34044,2025-03-11T06:22:55.764382-07:00,1000.3591918945312,10.729528,10729.528 +34045,2025-03-11T06:23:06.504316-07:00,1000.368896484375,10.739934,10739.934 +34046,2025-03-11T06:23:17.234360-07:00,1000.36376953125,10.730044,10730.044 +34047,2025-03-11T06:23:27.969107-07:00,1000.3717041015625,10.734747,10734.747 +34048,2025-03-11T06:23:38.693319-07:00,1000.34521484375,10.724212,10724.212 +34049,2025-03-11T06:23:49.430319-07:00,1000.374755859375,10.737,10737.0 +34050,2025-03-11T06:24:00.157471-07:00,1000.3549194335938,10.727152,10727.152 +34051,2025-03-11T06:24:10.895355-07:00,1000.3284301757812,10.737884,10737.884 +34052,2025-03-11T06:24:21.624320-07:00,1000.3378295898438,10.728965,10728.965 +34053,2025-03-11T06:24:32.350433-07:00,1000.34619140625,10.726113,10726.113 +34054,2025-03-11T06:24:43.078413-07:00,1000.3629760742188,10.72798,10727.98 +34055,2025-03-11T06:24:53.815389-07:00,1000.3753662109375,10.736976,10736.976 +34056,2025-03-11T06:25:04.536604-07:00,1000.348876953125,10.721215,10721.215 +34057,2025-03-11T06:25:15.267444-07:00,1000.3474731445312,10.73084,10730.84 +34058,2025-03-11T06:25:26.008406-07:00,1000.3555297851562,10.740962,10740.962 +34059,2025-03-11T06:25:36.732312-07:00,1000.3607788085938,10.723906,10723.906 +34060,2025-03-11T06:25:47.468508-07:00,1000.3673706054688,10.736196,10736.196 +34061,2025-03-11T06:25:58.201534-07:00,1000.3820190429688,10.733026,10733.026 +34062,2025-03-11T06:26:08.930511-07:00,1000.3607788085938,10.728977,10728.977 +34063,2025-03-11T06:26:19.656320-07:00,1000.3886108398438,10.725809,10725.809 +34064,2025-03-11T06:26:30.392362-07:00,1000.3621826171875,10.736042,10736.042 +34065,2025-03-11T06:26:41.121516-07:00,1000.3753662109375,10.729154,10729.154 +34066,2025-03-11T06:26:51.853517-07:00,1000.38720703125,10.732001,10732.001 +34067,2025-03-11T06:27:02.582313-07:00,1000.38720703125,10.728796,10728.796 +34068,2025-03-11T06:27:13.311510-07:00,1000.3990478515625,10.729197,10729.197 +34069,2025-03-11T06:27:24.044580-07:00,1000.4004516601562,10.73307,10733.07 +34070,2025-03-11T06:27:34.765331-07:00,1000.3792114257812,10.720751,10720.751 +34071,2025-03-11T06:27:45.499990-07:00,1000.3709106445312,10.734659,10734.659 +34072,2025-03-11T06:27:56.229498-07:00,1000.3761596679688,10.729508,10729.508 +34073,2025-03-11T06:28:06.957476-07:00,1000.389404296875,10.727978,10727.978 +34074,2025-03-11T06:28:17.685461-07:00,1000.4026489257812,10.727985,10727.985 +34075,2025-03-11T06:28:28.415317-07:00,1000.4078369140625,10.729856,10729.856 +34076,2025-03-11T06:28:39.150505-07:00,1000.4131469726562,10.735188,10735.188 +34077,2025-03-11T06:28:49.871553-07:00,1000.39013671875,10.721048,10721.048 +34078,2025-03-11T06:29:00.607655-07:00,1000.40478515625,10.736102,10736.102 +34079,2025-03-11T06:29:11.333523-07:00,1000.4152221679688,10.725868,10725.868 +34080,2025-03-11T06:29:22.061511-07:00,1000.4232177734375,10.727988,10727.988 +34081,2025-03-11T06:29:32.794351-07:00,1000.4364013671875,10.73284,10732.84 +34082,2025-03-11T06:29:43.514316-07:00,1000.4483032226562,10.719965,10719.965 +34083,2025-03-11T06:29:54.247320-07:00,1000.42529296875,10.733004,10733.004 +34084,2025-03-11T06:30:04.977314-07:00,1000.42529296875,10.729994,10729.994 +34085,2025-03-11T06:30:15.711706-07:00,1000.4451293945312,10.734392,10734.392 +34086,2025-03-11T06:30:26.440583-07:00,1000.4320068359375,10.728877,10728.877 +34087,2025-03-11T06:30:37.158515-07:00,1000.4703369140625,10.717932,10717.932 +34088,2025-03-11T06:30:47.894516-07:00,1000.4768676757812,10.736001,10736.001 +34089,2025-03-11T06:30:58.619312-07:00,1000.510009765625,10.724796,10724.796 +34090,2025-03-11T06:31:09.352485-07:00,1000.4935913085938,10.733173,10733.173 +34091,2025-03-11T06:31:20.084311-07:00,1000.5399169921875,10.731826,10731.826 +34092,2025-03-11T06:31:30.807517-07:00,1000.5236206054688,10.723206,10723.206 +34093,2025-03-11T06:31:41.536326-07:00,1000.545166015625,10.728809,10728.809 +34094,2025-03-11T06:31:52.272316-07:00,1000.5354614257812,10.73599,10735.99 +34095,2025-03-11T06:32:03.001385-07:00,1000.539306640625,10.729069,10729.069 +34096,2025-03-11T06:32:13.731724-07:00,1000.6001586914062,10.730339,10730.339 +34097,2025-03-11T06:32:24.459399-07:00,1000.5921630859375,10.727675,10727.675 +34098,2025-03-11T06:32:35.193321-07:00,1000.60888671875,10.733922,10733.922 +34099,2025-03-11T06:32:45.923485-07:00,1000.6124877929688,10.730164,10730.164 +34100,2025-03-11T06:32:56.647315-07:00,1000.61767578125,10.72383,10723.83 +34101,2025-03-11T06:33:07.378515-07:00,1000.6031494140625,10.7312,10731.2 +34102,2025-03-11T06:33:18.113505-07:00,1000.6295166015625,10.73499,10734.99 +34103,2025-03-11T06:33:28.842397-07:00,1000.6331176757812,10.728892,10728.892 +34104,2025-03-11T06:33:39.567750-07:00,1000.6397094726562,10.725353,10725.353 +34105,2025-03-11T06:33:50.293349-07:00,1000.6286010742188,10.725599,10725.599 +34106,2025-03-11T06:34:01.025315-07:00,1000.6668701171875,10.731966,10731.966 +34107,2025-03-11T06:34:11.748709-07:00,1000.6519775390625,10.723394,10723.394 +34108,2025-03-11T06:34:22.480318-07:00,1000.6603393554688,10.731609,10731.609 +34109,2025-03-11T06:34:33.209348-07:00,1000.6741943359375,10.72903,10729.03 +34110,2025-03-11T06:34:43.937499-07:00,1000.6954956054688,10.728151,10728.151 +34111,2025-03-11T06:34:54.661878-07:00,1000.6843872070312,10.724379,10724.379 +34112,2025-03-11T06:35:05.396387-07:00,1000.6746826171875,10.734509,10734.509 +34113,2025-03-11T06:35:16.119313-07:00,1000.716064453125,10.722926,10722.926 +34114,2025-03-11T06:35:26.847376-07:00,1000.7115478515625,10.728063,10728.063 +34115,2025-03-11T06:35:37.577716-07:00,1000.6952514648438,10.73034,10730.34 +34116,2025-03-11T06:35:48.302090-07:00,1000.7084350585938,10.724374,10724.374 +34117,2025-03-11T06:35:59.034386-07:00,1000.70703125,10.732296,10732.296 +34118,2025-03-11T06:36:09.764744-07:00,1000.6973266601562,10.730358,10730.358 +34119,2025-03-11T06:36:20.495426-07:00,1000.7078247070312,10.730682,10730.682 +34120,2025-03-11T06:36:31.218495-07:00,1000.712646484375,10.723069,10723.069 +34121,2025-03-11T06:36:41.955188-07:00,1000.7245483398438,10.736693,10736.693 +34122,2025-03-11T06:36:52.676318-07:00,1000.716552734375,10.72113,10721.13 +34123,2025-03-11T06:37:03.413528-07:00,1000.721435546875,10.73721,10737.21 +34124,2025-03-11T06:37:14.135321-07:00,1000.7120361328125,10.721793,10721.793 +34125,2025-03-11T06:37:24.863400-07:00,1000.7420043945312,10.728079,10728.079 +34126,2025-03-11T06:37:35.592689-07:00,1000.712158203125,10.729289,10729.289 +34127,2025-03-11T06:37:46.319314-07:00,1000.7306518554688,10.726625,10726.625 +34128,2025-03-11T06:37:57.055352-07:00,1000.6983032226562,10.736038,10736.038 +34129,2025-03-11T06:38:07.772671-07:00,1000.72607421875,10.717319,10717.319 +34130,2025-03-11T06:38:18.504312-07:00,1000.7017211914062,10.731641,10731.641 +34131,2025-03-11T06:38:29.236072-07:00,1000.7150268554688,10.73176,10731.76 +34132,2025-03-11T06:38:39.961317-07:00,1000.7100830078125,10.725245,10725.245 +34133,2025-03-11T06:38:50.683069-07:00,1000.748046875,10.721752,10721.752 +34134,2025-03-11T06:39:01.406318-07:00,1000.7320556640625,10.723249,10723.249 +34135,2025-03-11T06:39:12.134389-07:00,1000.7355346679688,10.728071,10728.071 +34136,2025-03-11T06:39:22.863498-07:00,1000.7501831054688,10.729109,10729.109 +34137,2025-03-11T06:39:33.581393-07:00,1000.7274780273438,10.717895,10717.895 +34138,2025-03-11T06:39:44.307695-07:00,1000.71923828125,10.726302,10726.302 +34139,2025-03-11T06:39:55.034738-07:00,1000.7244262695312,10.727043,10727.043 +34140,2025-03-11T06:40:05.760707-07:00,1000.7345581054688,10.725969,10725.969 +34141,2025-03-11T06:40:16.485312-07:00,1000.7279663085938,10.724605,10724.605 +34142,2025-03-11T06:40:27.210318-07:00,1000.7279663085938,10.725006,10725.006 +34143,2025-03-11T06:40:37.934750-07:00,1000.7435913085938,10.724432,10724.432 +34144,2025-03-11T06:40:48.670315-07:00,1000.7154541015625,10.735565,10735.565 +34145,2025-03-11T06:40:59.400265-07:00,1000.699462890625,10.72995,10729.95 +34146,2025-03-11T06:41:10.128050-07:00,1000.7259521484375,10.727785,10727.785 +34147,2025-03-11T06:41:20.855427-07:00,1000.7259521484375,10.727377,10727.377 +34148,2025-03-11T06:41:31.578507-07:00,1000.6751708984375,10.72308,10723.08 +34149,2025-03-11T06:41:42.302505-07:00,1000.7161865234375,10.723998,10723.998 +34150,2025-03-11T06:41:53.034977-07:00,1000.7064208984375,10.732472,10732.472 +34151,2025-03-11T06:42:03.760515-07:00,1000.6998291015625,10.725538,10725.538 +34152,2025-03-11T06:42:14.493525-07:00,1000.7036743164062,10.73301,10733.01 +34153,2025-03-11T06:42:25.219324-07:00,1000.6984252929688,10.725799,10725.799 +34154,2025-03-11T06:42:35.944385-07:00,1000.7151489257812,10.725061,10725.061 +34155,2025-03-11T06:42:46.679526-07:00,1000.72705078125,10.735141,10735.141 +34156,2025-03-11T06:42:57.400490-07:00,1000.6908569335938,10.720964,10720.964 +34157,2025-03-11T06:43:08.131313-07:00,1000.710693359375,10.730823,10730.823 +34158,2025-03-11T06:43:18.857531-07:00,1000.6828002929688,10.726218,10726.218 +34159,2025-03-11T06:43:29.581390-07:00,1000.6961059570312,10.723859,10723.859 +34160,2025-03-11T06:43:40.316361-07:00,1000.70263671875,10.734971,10734.971 +34161,2025-03-11T06:43:51.042240-07:00,1000.6783447265625,10.725879,10725.879 +34162,2025-03-11T06:44:01.772315-07:00,1000.6470336914062,10.730075,10730.075 +34163,2025-03-11T06:44:12.504318-07:00,1000.6932983398438,10.732003,10732.003 +34164,2025-03-11T06:44:23.230501-07:00,1000.6932983398438,10.726183,10726.183 +34165,2025-03-11T06:44:33.960387-07:00,1000.69677734375,10.729886,10729.886 +34166,2025-03-11T06:44:44.688504-07:00,1000.6849975585938,10.728117,10728.117 +34167,2025-03-11T06:44:55.418512-07:00,1000.6953735351562,10.730008,10730.008 +34168,2025-03-11T06:45:06.152480-07:00,1000.6526489257812,10.733968,10733.968 +34169,2025-03-11T06:45:16.872318-07:00,1000.6804809570312,10.719838,10719.838 +34170,2025-03-11T06:45:27.602341-07:00,1000.7086181640625,10.730023,10730.023 +34171,2025-03-11T06:45:38.332316-07:00,1000.7201538085938,10.729975,10729.975 +34172,2025-03-11T06:45:49.057766-07:00,1000.6989135742188,10.72545,10725.45 +34173,2025-03-11T06:45:59.784472-07:00,1000.684326171875,10.726706,10726.706 +34174,2025-03-11T06:46:10.513320-07:00,1000.7107543945312,10.728848,10728.848 +34175,2025-03-11T06:46:21.244737-07:00,1000.7040405273438,10.731417,10731.417 +34176,2025-03-11T06:46:31.966319-07:00,1000.7107543945312,10.721582,10721.582 +34177,2025-03-11T06:46:42.696370-07:00,1000.69580078125,10.730051,10730.051 +34178,2025-03-11T06:46:53.422523-07:00,1000.7045288085938,10.726153,10726.153 +34179,2025-03-11T06:47:04.148314-07:00,1000.719482421875,10.725791,10725.791 +34180,2025-03-11T06:47:14.882497-07:00,1000.7274780273438,10.734183,10734.183 +34181,2025-03-11T06:47:25.608311-07:00,1000.7177124023438,10.725814,10725.814 +34182,2025-03-11T06:47:36.335533-07:00,1000.7111206054688,10.727222,10727.222 +34183,2025-03-11T06:47:47.074711-07:00,1000.6951293945312,10.739178,10739.178 +34184,2025-03-11T06:47:57.797453-07:00,1000.708251953125,10.722742,10722.742 +34185,2025-03-11T06:48:08.531472-07:00,1000.708251953125,10.734019,10734.019 +34186,2025-03-11T06:48:19.259906-07:00,1000.7118530273438,10.728434,10728.434 +34187,2025-03-11T06:48:29.989541-07:00,1000.6986083984375,10.729635,10729.635 +34188,2025-03-11T06:48:40.709495-07:00,1000.739990234375,10.719954,10719.954 +34189,2025-03-11T06:48:51.440412-07:00,1000.74658203125,10.730917,10730.917 +34190,2025-03-11T06:49:02.169318-07:00,1000.7236938476562,10.728906,10728.906 +34191,2025-03-11T06:49:12.895525-07:00,1000.7598266601562,10.726207,10726.207 +34192,2025-03-11T06:49:23.626315-07:00,1000.7633056640625,10.73079,10730.79 +34193,2025-03-11T06:49:34.365320-07:00,1000.7581176757812,10.739005,10739.005 +34194,2025-03-11T06:49:45.089691-07:00,1000.744873046875,10.724371,10724.371 +34195,2025-03-11T06:49:55.816315-07:00,1000.743408203125,10.726624,10726.624 +34196,2025-03-11T06:50:06.548114-07:00,1000.7647094726562,10.731799,10731.799 +34197,2025-03-11T06:50:17.274619-07:00,1000.743408203125,10.726505,10726.505 +34198,2025-03-11T06:50:28.009323-07:00,1000.7500610351562,10.734704,10734.704 +34199,2025-03-11T06:50:38.742565-07:00,1000.7633056640625,10.733242,10733.242 +34200,2025-03-11T06:50:49.468773-07:00,1000.743408203125,10.726208,10726.208 +34201,2025-03-11T06:51:00.187389-07:00,1000.74560546875,10.718616,10718.616 +34202,2025-03-11T06:51:10.926316-07:00,1000.7587280273438,10.738927,10738.927 +34203,2025-03-11T06:51:21.655341-07:00,1000.7345581054688,10.729025,10729.025 +34204,2025-03-11T06:51:32.380498-07:00,1000.76611328125,10.725157,10725.157 +34205,2025-03-11T06:51:43.107503-07:00,1000.713623046875,10.727005,10727.005 +34206,2025-03-11T06:51:53.836573-07:00,1000.72265625,10.72907,10729.07 +34207,2025-03-11T06:52:04.558370-07:00,1000.7393798828125,10.721797,10721.797 +34208,2025-03-11T06:52:15.291344-07:00,1000.756103515625,10.732974,10732.974 +34209,2025-03-11T06:52:26.017320-07:00,1000.7515869140625,10.725976,10725.976 +34210,2025-03-11T06:52:36.743655-07:00,1000.7603149414062,10.726335,10726.335 +34211,2025-03-11T06:52:47.475315-07:00,1000.7265625,10.73166,10731.66 +34212,2025-03-11T06:52:58.202320-07:00,1000.7648315429688,10.727005,10727.005 +34213,2025-03-11T06:53:08.933514-07:00,1000.7572021484375,10.731194,10731.194 +34214,2025-03-11T06:53:19.662317-07:00,1000.74267578125,10.728803,10728.803 +34215,2025-03-11T06:53:30.389492-07:00,1000.7366943359375,10.727175,10727.175 +34216,2025-03-11T06:53:41.140526-07:00,1000.69775390625,10.751034,10751.034 +34217,2025-03-11T06:53:51.872658-07:00,1000.7098999023438,10.732132,10732.132 +34218,2025-03-11T06:54:02.594717-07:00,1000.7171630859375,10.722059,10722.059 +34219,2025-03-11T06:54:13.322561-07:00,1000.7047119140625,10.727844,10727.844 +34220,2025-03-11T06:54:24.053984-07:00,1000.7134399414062,10.731423,10731.423 +34221,2025-03-11T06:54:34.783393-07:00,1000.7301025390625,10.729409,10729.409 +34222,2025-03-11T06:54:45.507527-07:00,1000.7373657226562,10.724134,10724.134 +34223,2025-03-11T06:54:56.231697-07:00,1000.7394409179688,10.72417,10724.17 +34224,2025-03-11T06:55:06.956769-07:00,1000.7168579101562,10.725072,10725.072 +34225,2025-03-11T06:55:17.682704-07:00,1000.7106323242188,10.725935,10725.935 +34226,2025-03-11T06:55:28.408530-07:00,1000.6980590820312,10.725826,10725.826 +34227,2025-03-11T06:55:39.142719-07:00,1000.7098388671875,10.734189,10734.189 +34228,2025-03-11T06:55:49.866699-07:00,1000.6949462890625,10.72398,10723.98 +34229,2025-03-11T06:56:00.602934-07:00,1000.6841430664062,10.736235,10736.235 +34230,2025-03-11T06:56:11.321750-07:00,1000.7022094726562,10.718816,10718.816 +34231,2025-03-11T06:56:22.049535-07:00,1000.7140502929688,10.727785,10727.785 +34232,2025-03-11T06:56:32.776530-07:00,1000.676513671875,10.726995,10726.995 +34233,2025-03-11T06:56:43.503700-07:00,1000.7095336914062,10.72717,10727.17 +34234,2025-03-11T06:56:54.225686-07:00,1000.6799926757812,10.721986,10721.986 +34235,2025-03-11T06:57:04.954765-07:00,1000.66845703125,10.729079,10729.079 +34236,2025-03-11T06:57:15.677288-07:00,1000.6851806640625,10.722523,10722.523 +34237,2025-03-11T06:57:26.412529-07:00,1000.7115478515625,10.735241,10735.241 +34238,2025-03-11T06:57:37.135910-07:00,1000.7050170898438,10.723381,10723.381 +34239,2025-03-11T06:57:47.863527-07:00,1000.7247924804688,10.727617,10727.617 +34240,2025-03-11T06:57:58.591758-07:00,1000.723388671875,10.728231,10728.231 +34241,2025-03-11T06:58:09.308727-07:00,1000.7511596679688,10.716969,10716.969 +34242,2025-03-11T06:58:20.037529-07:00,1000.7379760742188,10.728802,10728.802 +34243,2025-03-11T06:58:30.766344-07:00,1000.7459106445312,10.728815,10728.815 +34244,2025-03-11T06:58:41.488831-07:00,1000.7313842773438,10.722487,10722.487 +34245,2025-03-11T06:58:52.211404-07:00,1000.7313842773438,10.722573,10722.573 +34246,2025-03-11T06:59:02.939601-07:00,1000.7476806640625,10.728197,10728.197 +34247,2025-03-11T06:59:13.660622-07:00,1000.7327880859375,10.721021,10721.021 +34248,2025-03-11T06:59:24.382527-07:00,1000.7279052734375,10.721905,10721.905 +34249,2025-03-11T06:59:35.111633-07:00,1000.7279052734375,10.729106,10729.106 +34250,2025-03-11T06:59:45.841728-07:00,1000.716064453125,10.730095,10730.095 +34251,2025-03-11T06:59:56.567527-07:00,1000.7359619140625,10.725799,10725.799 +34252,2025-03-11T07:00:07.298689-07:00,1000.74560546875,10.731162,10731.162 +34253,2025-03-11T07:00:18.019731-07:00,1000.7271728515625,10.721042,10721.042 +34254,2025-03-11T07:00:28.751997-07:00,1000.7550048828125,10.732266,10732.266 +34255,2025-03-11T07:00:39.473537-07:00,1000.7647705078125,10.72154,10721.54 +34256,2025-03-11T07:00:50.205528-07:00,1000.7369384765625,10.731991,10731.991 +34257,2025-03-11T07:01:00.932707-07:00,1000.759521484375,10.727179,10727.179 +34258,2025-03-11T07:01:09.139139-07:00,1000.75439453125,8.206432,8206.432 +34259,2025-03-11T07:01:11.655731-07:00,1000.7626342773438,2.516592,2516.592 +34260,2025-03-11T07:01:22.380697-07:00,1000.7345581054688,10.724966,10724.966 +34261,2025-03-11T07:01:33.097528-07:00,1000.7738037109375,10.716831,10716.831 +34262,2025-03-11T07:01:43.832758-07:00,1000.7390747070312,10.73523,10735.23 +34263,2025-03-11T07:01:54.556765-07:00,1000.763427734375,10.724007,10724.007 +34264,2025-03-11T07:02:05.279625-07:00,1000.763427734375,10.72286,10722.86 +34265,2025-03-11T07:02:16.008845-07:00,1000.7731323242188,10.72922,10729.22 +34266,2025-03-11T07:02:26.741816-07:00,1000.78955078125,10.732971,10732.971 +34267,2025-03-11T07:02:37.462531-07:00,1000.7711181640625,10.720715,10720.715 +34268,2025-03-11T07:02:48.194593-07:00,1000.78076171875,10.732062,10732.062 +34269,2025-03-11T07:02:58.922528-07:00,1000.816650390625,10.727935,10727.935 +34270,2025-03-11T07:03:09.647626-07:00,1000.7784423828125,10.725098,10725.098 +34271,2025-03-11T07:03:20.383527-07:00,1000.7801513671875,10.735901,10735.901 +34272,2025-03-11T07:03:31.105680-07:00,1000.768310546875,10.722153,10722.153 +34273,2025-03-11T07:03:41.829816-07:00,1000.78955078125,10.724136,10724.136 +34274,2025-03-11T07:03:52.560071-07:00,1000.7742309570312,10.730255,10730.255 +34275,2025-03-11T07:04:03.286710-07:00,1000.7839965820312,10.726639,10726.639 +34276,2025-03-11T07:04:14.016946-07:00,1000.7693481445312,10.730236,10730.236 +34277,2025-03-11T07:04:24.749584-07:00,1000.7853393554688,10.732638,10732.638 +34278,2025-03-11T07:04:35.472680-07:00,1000.7870483398438,10.723096,10723.096 +34279,2025-03-11T07:04:46.204558-07:00,1000.7568969726562,10.731878,10731.878 +34280,2025-03-11T07:04:56.925902-07:00,1000.791259765625,10.721344,10721.344 +34281,2025-03-11T07:05:07.651527-07:00,1000.773193359375,10.725625,10725.625 +34282,2025-03-11T07:05:18.385527-07:00,1000.7745971679688,10.734,10734.0 +34283,2025-03-11T07:05:29.110531-07:00,1000.7578735351562,10.725004,10725.004 +34284,2025-03-11T07:05:39.845785-07:00,1000.7711181640625,10.735254,10735.254 +34285,2025-03-11T07:05:50.565553-07:00,1000.7408447265625,10.719768,10719.768 +34286,2025-03-11T07:06:01.293715-07:00,1000.76904296875,10.728162,10728.162 +34287,2025-03-11T07:06:12.029524-07:00,1000.7572021484375,10.735809,10735.809 +34288,2025-03-11T07:06:22.756525-07:00,1000.745361328125,10.727001,10727.001 +34289,2025-03-11T07:06:33.484920-07:00,1000.7499389648438,10.728395,10728.395 +34290,2025-03-11T07:06:44.206526-07:00,1000.7648315429688,10.721606,10721.606 +34291,2025-03-11T07:06:54.936743-07:00,1000.760986328125,10.730217,10730.217 +34292,2025-03-11T07:07:05.661729-07:00,1000.7557983398438,10.724986,10724.986 +34293,2025-03-11T07:07:16.389530-07:00,1000.77734375,10.727801,10727.801 +34294,2025-03-11T07:07:27.118716-07:00,1000.7853393554688,10.729186,10729.186 +34295,2025-03-11T07:07:37.840765-07:00,1000.7606201171875,10.722049,10722.049 +34296,2025-03-11T07:07:48.567714-07:00,1000.775634765625,10.726949,10726.949 +34297,2025-03-11T07:07:59.300587-07:00,1000.76513671875,10.732873,10732.873 +34298,2025-03-11T07:08:10.032634-07:00,1000.7586059570312,10.732047,10732.047 +34299,2025-03-11T07:08:20.756811-07:00,1000.7801513671875,10.724177,10724.177 +34300,2025-03-11T07:08:31.483530-07:00,1000.781494140625,10.726719,10726.719 +34301,2025-03-11T07:08:42.216718-07:00,1000.802734375,10.733188,10733.188 +34302,2025-03-11T07:08:52.941055-07:00,1000.8057861328125,10.724337,10724.337 +34303,2025-03-11T07:09:03.670635-07:00,1000.791259765625,10.72958,10729.58 +34304,2025-03-11T07:09:14.396607-07:00,1000.7940673828125,10.725972,10725.972 +34305,2025-03-11T07:09:25.127557-07:00,1000.8023681640625,10.73095,10730.95 +34306,2025-03-11T07:09:35.844739-07:00,1000.80517578125,10.717182,10717.182 +34307,2025-03-11T07:09:46.576737-07:00,1000.80517578125,10.731998,10731.998 +34308,2025-03-11T07:09:57.305730-07:00,1000.847900390625,10.728993,10728.993 +34309,2025-03-11T07:10:08.038559-07:00,1000.8295288085938,10.732829,10732.829 +34310,2025-03-11T07:10:18.761551-07:00,1000.8082885742188,10.722992,10722.992 +34311,2025-03-11T07:10:29.498597-07:00,1000.8162231445312,10.737046,10737.046 +34312,2025-03-11T07:10:40.223707-07:00,1000.8406372070312,10.72511,10725.11 +34313,2025-03-11T07:10:50.948733-07:00,1000.82080078125,10.725026,10725.026 +34314,2025-03-11T07:11:01.685564-07:00,1000.814208984375,10.736831,10736.831 +34315,2025-03-11T07:11:12.411796-07:00,1000.8353881835938,10.726232,10726.232 +34316,2025-03-11T07:11:23.137708-07:00,1000.8239135742188,10.725912,10725.912 +34317,2025-03-11T07:11:33.869602-07:00,1000.8106079101562,10.731894,10731.894 +34318,2025-03-11T07:11:44.599907-07:00,1000.8531494140625,10.730305,10730.305 +34319,2025-03-11T07:11:55.328588-07:00,1000.86279296875,10.728681,10728.681 +34320,2025-03-11T07:12:06.054616-07:00,1000.8284301757812,10.726028,10726.028 +34321,2025-03-11T07:12:16.777744-07:00,1000.8607788085938,10.723128,10723.128 +34322,2025-03-11T07:12:27.505600-07:00,1000.8457641601562,10.727856,10727.856 +34323,2025-03-11T07:12:38.242468-07:00,1000.835693359375,10.736868,10736.868 +34324,2025-03-11T07:12:48.967528-07:00,1000.8753051757812,10.72506,10725.06 +34325,2025-03-11T07:12:59.690533-07:00,1000.863525390625,10.723005,10723.005 +34326,2025-03-11T07:13:10.415810-07:00,1000.87841796875,10.725277,10725.277 +34327,2025-03-11T07:13:21.142528-07:00,1000.8798217773438,10.726718,10726.718 +34328,2025-03-11T07:13:31.876216-07:00,1000.8812255859375,10.733688,10733.688 +34329,2025-03-11T07:13:42.595530-07:00,1000.8764038085938,10.719314,10719.314 +34330,2025-03-11T07:13:53.327712-07:00,1000.8909301757812,10.732182,10732.182 +34331,2025-03-11T07:14:04.060692-07:00,1000.864501953125,10.73298,10732.98 +34332,2025-03-11T07:14:14.782343-07:00,1000.892333984375,10.721651,10721.651 +34333,2025-03-11T07:14:25.517742-07:00,1000.888916015625,10.735399,10735.399 +34334,2025-03-11T07:14:36.249722-07:00,1000.8457641601562,10.73198,10731.98 +34335,2025-03-11T07:14:46.972736-07:00,1000.853759765625,10.723014,10723.014 +34336,2025-03-11T07:14:57.707598-07:00,1000.8895263671875,10.734862,10734.862 +34337,2025-03-11T07:15:08.427622-07:00,1000.8861083984375,10.720024,10720.024 +34338,2025-03-11T07:15:19.157692-07:00,1000.890625,10.73007,10730.07 +34339,2025-03-11T07:15:29.887731-07:00,1000.8853149414062,10.730039,10730.039 +34340,2025-03-11T07:15:40.616532-07:00,1000.888427734375,10.728801,10728.801 +34341,2025-03-11T07:15:51.347529-07:00,1000.8936767578125,10.730997,10730.997 +34342,2025-03-11T07:16:02.077749-07:00,1000.9061889648438,10.73022,10730.22 +34343,2025-03-11T07:16:12.815759-07:00,1000.9142456054688,10.73801,10738.01 +34344,2025-03-11T07:16:23.537756-07:00,1000.8943481445312,10.721997,10721.997 +34345,2025-03-11T07:16:34.273595-07:00,1000.9134521484375,10.735839,10735.839 +34346,2025-03-11T07:16:45.001733-07:00,1000.9120483398438,10.728138,10728.138 +34347,2025-03-11T07:16:55.731529-07:00,1000.9003295898438,10.729796,10729.796 +34348,2025-03-11T07:17:06.458698-07:00,1000.9165649414062,10.727169,10727.169 +34349,2025-03-11T07:17:17.191527-07:00,1000.9378051757812,10.732829,10732.829 +34350,2025-03-11T07:17:27.923628-07:00,1000.91796875,10.732101,10732.101 +34351,2025-03-11T07:17:38.658189-07:00,1000.9290771484375,10.734561,10734.561 +34352,2025-03-11T07:17:49.385599-07:00,1000.9276733398438,10.72741,10727.41 +34353,2025-03-11T07:18:00.112529-07:00,1000.9158325195312,10.72693,10726.93 +34354,2025-03-11T07:18:10.851593-07:00,1000.912353515625,10.739064,10739.064 +34355,2025-03-11T07:18:21.583771-07:00,1000.9190063476562,10.732178,10732.178 +34356,2025-03-11T07:18:32.306112-07:00,1000.9287719726562,10.722341,10722.341 +34357,2025-03-11T07:18:43.034705-07:00,1000.948486328125,10.728593,10728.593 +34358,2025-03-11T07:18:53.762686-07:00,1000.9579467773438,10.727981,10727.981 +34359,2025-03-11T07:19:04.498680-07:00,1000.9447021484375,10.735994,10735.994 +34360,2025-03-11T07:19:15.225740-07:00,1000.9593505859375,10.72706,10727.06 +34361,2025-03-11T07:19:25.957743-07:00,1000.9461059570312,10.732003,10732.003 +34362,2025-03-11T07:19:36.683936-07:00,1000.932861328125,10.726193,10726.193 +34363,2025-03-11T07:19:47.412056-07:00,1000.9425659179688,10.72812,10728.12 +34364,2025-03-11T07:19:58.138529-07:00,1000.914794921875,10.726473,10726.473 +34365,2025-03-11T07:20:08.864684-07:00,1000.9572143554688,10.726155,10726.155 +34366,2025-03-11T07:20:19.601656-07:00,1000.9439697265625,10.736972,10736.972 +34367,2025-03-11T07:20:30.323849-07:00,1000.9425659179688,10.722193,10722.193 +34368,2025-03-11T07:20:41.060987-07:00,1000.914794921875,10.737138,10737.138 +34369,2025-03-11T07:20:51.780534-07:00,1000.94921875,10.719547,10719.547 +34370,2025-03-11T07:21:02.515624-07:00,1000.9359130859375,10.73509,10735.09 +34371,2025-03-11T07:21:13.249542-07:00,1000.9373168945312,10.733918,10733.918 +34372,2025-03-11T07:21:23.979767-07:00,1000.9373168945312,10.730225,10730.225 +34373,2025-03-11T07:21:34.707540-07:00,1000.9241333007812,10.727773,10727.773 +34374,2025-03-11T07:21:45.441723-07:00,1000.9690551757812,10.734183,10734.183 +34375,2025-03-11T07:21:56.169526-07:00,1000.9506225585938,10.727803,10727.803 +34376,2025-03-11T07:22:06.899530-07:00,1000.927978515625,10.730004,10730.004 +34377,2025-03-11T07:22:17.627906-07:00,1000.955810546875,10.728376,10728.376 +34378,2025-03-11T07:22:28.356527-07:00,1000.9359130859375,10.728621,10728.621 +34379,2025-03-11T07:22:39.088531-07:00,1000.9182739257812,10.732004,10732.004 +34380,2025-03-11T07:22:49.817738-07:00,1000.9593505859375,10.729207,10729.207 +34381,2025-03-11T07:23:00.547530-07:00,1000.9036865234375,10.729792,10729.792 +34382,2025-03-11T07:23:11.269748-07:00,1000.9300537109375,10.722218,10722.218 +34383,2025-03-11T07:23:22.008147-07:00,1000.922119140625,10.738399,10738.399 +34384,2025-03-11T07:23:32.733530-07:00,1000.92041015625,10.725383,10725.383 +34385,2025-03-11T07:23:43.469529-07:00,1000.92041015625,10.735999,10735.999 +34386,2025-03-11T07:23:54.196402-07:00,1000.9307861328125,10.726873,10726.873 +34387,2025-03-11T07:24:04.925597-07:00,1000.9374389648438,10.729195,10729.195 +34388,2025-03-11T07:24:15.652606-07:00,1000.94091796875,10.727009,10727.009 +34389,2025-03-11T07:24:26.383372-07:00,1000.9276733398438,10.730766,10730.766 +34390,2025-03-11T07:24:37.121527-07:00,1000.8849487304688,10.738155,10738.155 +34391,2025-03-11T07:24:47.842710-07:00,1000.89013671875,10.721183,10721.183 +34392,2025-03-11T07:24:58.572524-07:00,1000.8953247070312,10.729814,10729.814 +34393,2025-03-11T07:25:09.304537-07:00,1000.8804931640625,10.732013,10732.013 +34394,2025-03-11T07:25:20.033741-07:00,1000.9120483398438,10.729204,10729.204 +34395,2025-03-11T07:25:30.766765-07:00,1000.904052734375,10.733024,10733.024 +34396,2025-03-11T07:25:41.490526-07:00,1000.8878173828125,10.723761,10723.761 +34397,2025-03-11T07:25:52.213653-07:00,1000.9142456054688,10.723127,10723.127 +34398,2025-03-11T07:26:02.950096-07:00,1000.8797607421875,10.736443,10736.443 +34399,2025-03-11T07:26:13.670525-07:00,1000.9031372070312,10.720429,10720.429 +34400,2025-03-11T07:26:24.401727-07:00,1000.9017333984375,10.731202,10731.202 +34401,2025-03-11T07:26:33.841087-07:00,1000.888427734375,9.43936,9439.36 +34402,2025-03-11T07:26:35.133527-07:00,1000.8936767578125,1.29244,1292.44 +34403,2025-03-11T07:26:45.854018-07:00,1000.890625,10.720491,10720.491 +34404,2025-03-11T07:26:56.591569-07:00,1000.8773193359375,10.737551,10737.551 +34405,2025-03-11T07:27:07.313553-07:00,1000.895751953125,10.721984,10721.984 +34406,2025-03-11T07:27:18.050528-07:00,1000.8516235351562,10.736975,10736.975 +34407,2025-03-11T07:27:28.769527-07:00,1000.9059448242188,10.718999,10718.999 +34408,2025-03-11T07:27:39.497714-07:00,1000.8696899414062,10.728187,10728.187 +34409,2025-03-11T07:27:50.228335-07:00,1000.9014282226562,10.730621,10730.621 +34410,2025-03-11T07:28:00.952525-07:00,1000.8920288085938,10.72419,10724.19 +34411,2025-03-11T07:28:11.678709-07:00,1000.8624877929688,10.726184,10726.184 +34412,2025-03-11T07:28:22.405554-07:00,1000.8968505859375,10.726845,10726.845 +34413,2025-03-11T07:28:33.137267-07:00,1000.8527221679688,10.731713,10731.713 +34414,2025-03-11T07:28:43.861587-07:00,1000.87109375,10.72432,10724.32 +34415,2025-03-11T07:28:54.585631-07:00,1000.8843994140625,10.724044,10724.044 +34416,2025-03-11T07:29:05.312697-07:00,1000.924072265625,10.727066,10727.066 +34417,2025-03-11T07:29:16.038530-07:00,1000.8878173828125,10.725833,10725.833 +34418,2025-03-11T07:29:26.771759-07:00,1000.865234375,10.733229,10733.229 +34419,2025-03-11T07:29:37.492527-07:00,1000.8850708007812,10.720768,10720.768 +34420,2025-03-11T07:29:48.217530-07:00,1000.850341796875,10.725003,10725.003 +34421,2025-03-11T07:29:58.950690-07:00,1000.8607788085938,10.73316,10733.16 +34422,2025-03-11T07:30:09.678321-07:00,1000.8819580078125,10.727631,10727.631 +34423,2025-03-11T07:30:20.406014-07:00,1000.857666015625,10.727693,10727.693 +34424,2025-03-11T07:30:31.129710-07:00,1000.870849609375,10.723696,10723.696 +34425,2025-03-11T07:30:41.849990-07:00,1000.8680419921875,10.72028,10720.28 +34426,2025-03-11T07:30:52.575553-07:00,1000.8746948242188,10.725563,10725.563 +34427,2025-03-11T07:31:03.296829-07:00,1000.8663330078125,10.721276,10721.276 +34428,2025-03-11T07:31:14.024711-07:00,1000.876708984375,10.727882,10727.882 +34429,2025-03-11T07:31:24.742781-07:00,1000.8883056640625,10.71807,10718.07 +34430,2025-03-11T07:31:35.470921-07:00,1000.8802490234375,10.72814,10728.14 +34431,2025-03-11T07:31:46.202761-07:00,1000.9132690429688,10.73184,10731.84 +34432,2025-03-11T07:31:56.924724-07:00,1000.8903198242188,10.721963,10721.963 +34433,2025-03-11T07:32:07.651157-07:00,1000.8837280273438,10.726433,10726.433 +34434,2025-03-11T07:32:18.375527-07:00,1000.9154052734375,10.72437,10724.37 +34435,2025-03-11T07:32:29.104727-07:00,1000.9234619140625,10.7292,10729.2 +34436,2025-03-11T07:32:39.832738-07:00,1000.9365844726562,10.728011,10728.011 +34437,2025-03-11T07:32:50.554615-07:00,1000.920654296875,10.721877,10721.877 +34438,2025-03-11T07:33:01.274527-07:00,1000.9827880859375,10.719912,10719.912 +34439,2025-03-11T07:33:12.004772-07:00,1000.9550170898438,10.730245,10730.245 +34440,2025-03-11T07:33:22.733575-07:00,1000.9386596679688,10.728803,10728.803 +34441,2025-03-11T07:33:33.454531-07:00,1000.951904296875,10.720956,10720.956 +34442,2025-03-11T07:33:44.180632-07:00,1000.9717407226562,10.726101,10726.101 +34443,2025-03-11T07:33:54.897552-07:00,1000.951904296875,10.71692,10716.92 +34444,2025-03-11T07:34:05.627697-07:00,1000.9570922851562,10.730145,10730.145 +34445,2025-03-11T07:34:16.350533-07:00,1000.978271484375,10.722836,10722.836 +34446,2025-03-11T07:34:27.077337-07:00,1000.982177734375,10.726804,10726.804 +34447,2025-03-11T07:34:37.791686-07:00,1000.9807739257812,10.714349,10714.349 +34448,2025-03-11T07:34:48.515703-07:00,1000.993896484375,10.724017,10724.017 +34449,2025-03-11T07:34:59.231531-07:00,1000.985595703125,10.715828,10715.828 +34450,2025-03-11T07:35:09.952215-07:00,1000.9696044921875,10.720684,10720.684 +34451,2025-03-11T07:35:20.683527-07:00,1000.9974975585938,10.731312,10731.312 +34452,2025-03-11T07:35:31.404697-07:00,1000.9894409179688,10.72117,10721.17 +34453,2025-03-11T07:35:42.127897-07:00,1001.01416015625,10.7232,10723.2 +34454,2025-03-11T07:35:52.842178-07:00,1001.020751953125,10.714281,10714.281 +34455,2025-03-11T07:36:03.574527-07:00,1001.006103515625,10.732349,10732.349 +34456,2025-03-11T07:36:14.291721-07:00,1001.006103515625,10.717194,10717.194 +34457,2025-03-11T07:36:25.016731-07:00,1000.9915771484375,10.72501,10725.01 +34458,2025-03-11T07:36:35.736725-07:00,1001.0360717773438,10.719994,10719.994 +34459,2025-03-11T07:36:46.449527-07:00,1001.0426635742188,10.712802,10712.802 +34460,2025-03-11T07:36:57.178735-07:00,1001.041259765625,10.729208,10729.208 +34461,2025-03-11T07:37:07.892621-07:00,1001.0294799804688,10.713886,10713.886 +34462,2025-03-11T07:37:18.614983-07:00,1001.026611328125,10.722362,10722.362 +34463,2025-03-11T07:37:29.345574-07:00,1001.018310546875,10.730591,10730.591 +34464,2025-03-11T07:37:40.061710-07:00,1001.0315551757812,10.716136,10716.136 +34465,2025-03-11T07:37:50.794764-07:00,1001.0349731445312,10.733054,10733.054 +34466,2025-03-11T07:38:01.518822-07:00,1001.0513916015625,10.724058,10724.058 +34467,2025-03-11T07:38:12.233528-07:00,1001.0399169921875,10.714706,10714.706 +34468,2025-03-11T07:38:22.966526-07:00,1001.0596923828125,10.732998,10732.998 +34469,2025-03-11T07:38:33.691068-07:00,1001.0582885742188,10.724542,10724.542 +34470,2025-03-11T07:38:44.410713-07:00,1001.078125,10.719645,10719.645 +34471,2025-03-11T07:38:55.143706-07:00,1001.037109375,10.732993,10732.993 +34472,2025-03-11T07:39:05.867595-07:00,1001.056884765625,10.723889,10723.889 +34473,2025-03-11T07:39:16.583726-07:00,1001.0339965820312,10.716131,10716.131 +34474,2025-03-11T07:39:27.311527-07:00,1001.0325927734375,10.727801,10727.801 +34475,2025-03-11T07:39:38.030710-07:00,1001.0736083984375,10.719183,10719.183 +34476,2025-03-11T07:39:48.749927-07:00,1001.0722045898438,10.719217,10719.217 +34477,2025-03-11T07:39:59.472708-07:00,1001.0625,10.722781,10722.781 +34478,2025-03-11T07:40:10.199592-07:00,1001.07568359375,10.726884,10726.884 +34479,2025-03-11T07:40:20.925009-07:00,1001.069091796875,10.725417,10725.417 +34480,2025-03-11T07:40:31.646528-07:00,1001.0398559570312,10.721519,10721.519 +34481,2025-03-11T07:40:42.367530-07:00,1001.0972900390625,10.721002,10721.002 +34482,2025-03-11T07:40:53.092655-07:00,1001.0610961914062,10.725125,10725.125 +34483,2025-03-11T07:41:03.814932-07:00,1001.0332641601562,10.722277,10722.277 +34484,2025-03-11T07:41:14.534527-07:00,1001.0513916015625,10.719595,10719.595 +34485,2025-03-11T07:41:25.257633-07:00,1001.0479125976562,10.723106,10723.106 +34486,2025-03-11T07:41:35.976765-07:00,1001.0465087890625,10.719132,10719.132 +34487,2025-03-11T07:41:46.705934-07:00,1001.0315551757812,10.729169,10729.169 +34488,2025-03-11T07:41:57.423700-07:00,1001.0250244140625,10.717766,10717.766 +34489,2025-03-11T07:42:08.138722-07:00,1001.0499877929688,10.715022,10715.022 +34490,2025-03-11T07:42:18.863526-07:00,1001.048583984375,10.724804,10724.804 +34491,2025-03-11T07:42:29.585305-07:00,1001.0579833984375,10.721779,10721.779 +34492,2025-03-11T07:42:40.304523-07:00,1001.0353393554688,10.719218,10719.218 +34493,2025-03-11T07:42:51.025693-07:00,1001.0433349609375,10.72117,10721.17 +34494,2025-03-11T07:43:01.751649-07:00,1000.9925537109375,10.725956,10725.956 +34495,2025-03-11T07:43:12.468708-07:00,1001.0138549804688,10.717059,10717.059 +34496,2025-03-11T07:43:23.184761-07:00,1001.0204467773438,10.716053,10716.053 +34497,2025-03-11T07:43:33.911713-07:00,1001.0353393554688,10.726952,10726.952 +34498,2025-03-11T07:43:44.636083-07:00,1001.0287475585938,10.72437,10724.37 +34499,2025-03-11T07:43:55.356710-07:00,1001.012451171875,10.720627,10720.627 +34500,2025-03-11T07:44:06.071740-07:00,1001.038818359375,10.71503,10715.03 +34501,2025-03-11T07:44:16.794731-07:00,1001.038818359375,10.722991,10722.991 +34502,2025-03-11T07:44:27.516550-07:00,1001.0321655273438,10.721819,10721.819 +34503,2025-03-11T07:44:38.240767-07:00,1001.038818359375,10.724217,10724.217 +34504,2025-03-11T07:44:48.955225-07:00,1001.0225219726562,10.714458,10714.458 +34505,2025-03-11T07:44:59.679826-07:00,1001.0176391601562,10.724601,10724.601 +34506,2025-03-11T07:45:10.400533-07:00,1000.997802734375,10.720707,10720.707 +34507,2025-03-11T07:45:21.125053-07:00,1001.0599975585938,10.72452,10724.52 +34508,2025-03-11T07:45:31.843558-07:00,1001.00439453125,10.718505,10718.505 +34509,2025-03-11T07:45:42.567342-07:00,1001.0242309570312,10.723784,10723.784 +34510,2025-03-11T07:45:53.288526-07:00,1001.0409545898438,10.721184,10721.184 +34511,2025-03-11T07:46:04.005599-07:00,1001.0276489257812,10.717073,10717.073 +34512,2025-03-11T07:46:14.732524-07:00,1001.0474853515625,10.726925,10726.925 +34513,2025-03-11T07:46:25.453532-07:00,1001.03955078125,10.721008,10721.008 +34514,2025-03-11T07:46:36.177643-07:00,1001.03955078125,10.724111,10724.111 +34515,2025-03-11T07:46:46.899933-07:00,1001.031494140625,10.72229,10722.29 +34516,2025-03-11T07:46:57.619594-07:00,1001.0231323242188,10.719661,10719.661 +34517,2025-03-11T07:47:08.335548-07:00,1001.0231323242188,10.715954,10715.954 +34518,2025-03-11T07:47:19.056718-07:00,1001.02978515625,10.72117,10721.17 +34519,2025-03-11T07:47:29.781762-07:00,1001.0496215820312,10.725044,10725.044 +34520,2025-03-11T07:47:40.506529-07:00,1001.0349731445312,10.724767,10724.767 +34521,2025-03-11T07:47:51.221676-07:00,1001.0137329101562,10.715147,10715.147 +34522,2025-03-11T07:48:01.950694-07:00,1001.0186157226562,10.729018,10729.018 +34523,2025-03-11T07:48:12.673060-07:00,1001.0092163085938,10.722366,10722.366 +34524,2025-03-11T07:48:23.390605-07:00,1001.020751953125,10.717545,10717.545 +34525,2025-03-11T07:48:34.104529-07:00,1001.0245361328125,10.713924,10713.924 +34526,2025-03-11T07:48:44.834530-07:00,1001.0067749023438,10.730001,10730.001 +34527,2025-03-11T07:48:55.556528-07:00,1000.9838256835938,10.721998,10721.998 +34528,2025-03-11T07:49:06.271588-07:00,1001.0206298828125,10.71506,10715.06 +34529,2025-03-11T07:49:16.997893-07:00,1000.986572265625,10.726305,10726.305 +34530,2025-03-11T07:49:27.726525-07:00,1001.0262451171875,10.728632,10728.632 +34531,2025-03-11T07:49:38.446553-07:00,1001.013671875,10.720028,10720.028 +34532,2025-03-11T07:49:49.173558-07:00,1001.0192260742188,10.727005,10727.005 +34533,2025-03-11T07:49:59.899678-07:00,1001.0098266601562,10.72612,10726.12 +34534,2025-03-11T07:50:10.616088-07:00,1001.02197265625,10.71641,10716.41 +34535,2025-03-11T07:50:21.341842-07:00,1001.0093994140625,10.725754,10725.754 +34536,2025-03-11T07:50:32.060603-07:00,1000.9968872070312,10.718761,10718.761 +34537,2025-03-11T07:50:42.782710-07:00,1001.022216796875,10.722107,10722.107 +34538,2025-03-11T07:50:53.500524-07:00,1001.0044555664062,10.717814,10717.814 +34539,2025-03-11T07:51:04.228709-07:00,1001.0349731445312,10.728185,10728.185 +34540,2025-03-11T07:51:14.945530-07:00,1001.0554809570312,10.716821,10716.821 +34541,2025-03-11T07:51:25.670716-07:00,1001.0609130859375,10.725186,10725.186 +34542,2025-03-11T07:51:36.386598-07:00,1001.02685546875,10.715882,10715.882 +34543,2025-03-11T07:51:47.114716-07:00,1001.0421752929688,10.728118,10728.118 +34544,2025-03-11T07:51:57.832727-07:00,1001.02294921875,10.718011,10718.011 +34545,2025-03-11T07:52:08.558423-07:00,1001.0218505859375,10.725696,10725.696 +34546,2025-03-11T07:52:19.281588-07:00,1001.0371704101562,10.723165,10723.165 +34547,2025-03-11T07:52:30.008540-07:00,1001.0343017578125,10.726952,10726.952 +34548,2025-03-11T07:52:40.739528-07:00,1001.0016479492188,10.730988,10730.988 +34549,2025-03-11T07:52:51.458604-07:00,1001.03466796875,10.719076,10719.076 +34550,2025-03-11T07:53:02.185577-07:00,1001.016845703125,10.726973,10726.973 +34551,2025-03-11T07:53:12.911524-07:00,1001.02587890625,10.725947,10725.947 +34552,2025-03-11T07:53:23.630310-07:00,1001.0175170898438,10.718786,10718.786 +34553,2025-03-11T07:53:34.371119-07:00,1001.0064086914062,10.740809,10740.809 +34554,2025-03-11T07:53:45.089500-07:00,1001.0459594726562,10.718381,10718.381 +34555,2025-03-11T07:53:55.814784-07:00,1001.012939453125,10.725284,10725.284 +34556,2025-03-11T07:54:06.546313-07:00,1000.9989624023438,10.731529,10731.529 +34557,2025-03-11T07:54:17.270312-07:00,1001.0136108398438,10.723999,10723.999 +34558,2025-03-11T07:54:27.989120-07:00,1001.0267944335938,10.718808,10718.808 +34559,2025-03-11T07:54:38.716266-07:00,1001.0187377929688,10.727146,10727.146 +34560,2025-03-11T07:54:49.443886-07:00,1001.010498046875,10.72762,10727.62 +34561,2025-03-11T07:55:00.164968-07:00,1001.025390625,10.721082,10721.082 +34562,2025-03-11T07:55:10.896147-07:00,1001.045166015625,10.731179,10731.179 +34563,2025-03-11T07:55:21.618135-07:00,1001.0354614257812,10.721988,10721.988 +34564,2025-03-11T07:55:32.340115-07:00,1001.0236206054688,10.72198,10721.98 +34565,2025-03-11T07:55:43.053302-07:00,1001.015625,10.713187,10713.187 +34566,2025-03-11T07:55:53.776401-07:00,1001.0320434570312,10.723099,10723.099 +34567,2025-03-11T07:56:04.503508-07:00,1001.0187377929688,10.727107,10727.107 +34568,2025-03-11T07:56:15.231120-07:00,1001.010498046875,10.727612,10727.612 +34569,2025-03-11T07:56:25.954349-07:00,1001.036865234375,10.723229,10723.229 +34570,2025-03-11T07:56:36.672148-07:00,1001.045166015625,10.717799,10717.799 +34571,2025-03-11T07:56:47.394185-07:00,1001.071533203125,10.722037,10722.037 +34572,2025-03-11T07:56:58.126147-07:00,1001.06640625,10.731962,10731.962 +34573,2025-03-11T07:57:08.850122-07:00,1001.05322265625,10.723975,10723.975 +34574,2025-03-11T07:57:19.579315-07:00,1001.0187377929688,10.729193,10729.193 +34575,2025-03-11T07:57:30.303119-07:00,1001.0744018554688,10.723804,10723.804 +34576,2025-03-11T07:57:41.032432-07:00,1001.045166015625,10.729313,10729.313 +34577,2025-03-11T07:57:51.756743-07:00,1001.0563354492188,10.724311,10724.311 +34578,2025-03-11T07:58:02.481211-07:00,1001.0592041015625,10.724468,10724.468 +34579,2025-03-11T07:58:13.213299-07:00,1001.0577392578125,10.732088,10732.088 +34580,2025-03-11T07:58:23.931327-07:00,1001.0775146484375,10.718028,10718.028 +34581,2025-03-11T07:58:34.655294-07:00,1001.0675048828125,10.723967,10723.967 +34582,2025-03-11T07:58:45.387121-07:00,1001.0873413085938,10.731827,10731.827 +34583,2025-03-11T07:58:56.114318-07:00,1001.0901489257812,10.727197,10727.197 +34584,2025-03-11T07:59:06.844063-07:00,1001.0867309570312,10.729745,10729.745 +34585,2025-03-11T07:59:17.564202-07:00,1001.099853515625,10.720139,10720.139 +34586,2025-03-11T07:59:28.292509-07:00,1001.0895385742188,10.728307,10728.307 +34587,2025-03-11T07:59:39.011353-07:00,1001.0762329101562,10.718844,10718.844 +34588,2025-03-11T07:59:49.735286-07:00,1001.0697021484375,10.723933,10723.933 +34589,2025-03-11T08:00:00.464128-07:00,1001.0859985351562,10.728842,10728.842 +34590,2025-03-11T08:00:11.196266-07:00,1001.0892333984375,10.732138,10732.138 +34591,2025-03-11T08:00:21.918140-07:00,1001.103759765625,10.721874,10721.874 +34592,2025-03-11T08:00:32.639144-07:00,1001.092041015625,10.721004,10721.004 +34593,2025-03-11T08:00:43.367451-07:00,1001.0722045898438,10.728307,10728.307 +34594,2025-03-11T08:00:54.092118-07:00,1001.0819702148438,10.724667,10724.667 +34595,2025-03-11T08:01:04.816284-07:00,1001.0900268554688,10.724166,10724.166 +34596,2025-03-11T08:01:15.545322-07:00,1001.1048583984375,10.729038,10729.038 +34597,2025-03-11T08:01:26.270123-07:00,1001.0982666015625,10.724801,10724.801 +34598,2025-03-11T08:01:37.007297-07:00,1001.07470703125,10.737174,10737.174 +34599,2025-03-11T08:01:47.730874-07:00,1001.10107421875,10.723577,10723.577 +34600,2025-03-11T08:01:58.458359-07:00,1001.0990600585938,10.727485,10727.485 +34601,2025-03-11T08:02:09.184466-07:00,1001.104248046875,10.726107,10726.107 +34602,2025-03-11T08:02:19.914135-07:00,1001.1021728515625,10.729669,10729.669 +34603,2025-03-11T08:02:30.636913-07:00,1001.083740234375,10.722778,10722.778 +34604,2025-03-11T08:02:41.368148-07:00,1001.091796875,10.731235,10731.235 +34605,2025-03-11T08:02:52.090350-07:00,1001.1112670898438,10.722202,10722.202 +34606,2025-03-11T08:03:02.817283-07:00,1001.0700073242188,10.726933,10726.933 +34607,2025-03-11T08:03:13.545197-07:00,1001.0914916992188,10.727914,10727.914 +34608,2025-03-11T08:03:24.274498-07:00,1001.1140747070312,10.729301,10729.301 +34609,2025-03-11T08:03:35.004118-07:00,1001.0942993164062,10.72962,10729.62 +34610,2025-03-11T08:03:45.723272-07:00,1001.09228515625,10.719154,10719.154 +34611,2025-03-11T08:03:56.449121-07:00,1001.1023559570312,10.725849,10725.849 +34612,2025-03-11T08:04:07.175313-07:00,1001.10888671875,10.726192,10726.192 +34613,2025-03-11T08:04:17.899118-07:00,1001.1116943359375,10.723805,10723.805 +34614,2025-03-11T08:04:28.627282-07:00,1001.1249389648438,10.728164,10728.164 +34615,2025-03-11T08:04:39.348763-07:00,1001.1148681640625,10.721481,10721.481 +34616,2025-03-11T08:04:50.082122-07:00,1001.1492919921875,10.733359,10733.359 +34617,2025-03-11T08:05:00.801314-07:00,1001.1510009765625,10.719192,10719.192 +34618,2025-03-11T08:05:11.529122-07:00,1001.1820068359375,10.727808,10727.808 +34619,2025-03-11T08:05:22.260151-07:00,1001.1503295898438,10.731029,10731.029 +34620,2025-03-11T08:05:32.987297-07:00,1001.13720703125,10.727146,10727.146 +34621,2025-03-11T08:05:43.703199-07:00,1001.17822265625,10.715902,10715.902 +34622,2025-03-11T08:05:54.427830-07:00,1001.1517944335938,10.724631,10724.631 +34623,2025-03-11T08:06:05.155166-07:00,1001.1615600585938,10.727336,10727.336 +34624,2025-03-11T08:06:15.879294-07:00,1001.1681518554688,10.724128,10724.128 +34625,2025-03-11T08:06:26.611632-07:00,1001.1695556640625,10.732338,10732.338 +34626,2025-03-11T08:06:37.337121-07:00,1001.15771484375,10.725489,10725.489 +34627,2025-03-11T08:06:48.058680-07:00,1001.187255859375,10.721559,10721.559 +34628,2025-03-11T08:06:58.782871-07:00,1001.1953125,10.724191,10724.191 +34629,2025-03-11T08:07:09.516271-07:00,1001.1754760742188,10.7334,10733.4 +34630,2025-03-11T08:07:20.238118-07:00,1001.1771850585938,10.721847,10721.847 +34631,2025-03-11T08:07:30.968455-07:00,1001.1799926757812,10.730337,10730.337 +34632,2025-03-11T08:07:41.696821-07:00,1001.1799926757812,10.728366,10728.366 +34633,2025-03-11T08:07:52.415190-07:00,1001.1699829101562,10.718369,10718.369 +34634,2025-03-11T08:08:03.145287-07:00,1001.1765747070312,10.730097,10730.097 +34635,2025-03-11T08:08:13.878119-07:00,1001.1612548828125,10.732832,10732.832 +34636,2025-03-11T08:08:24.605336-07:00,1001.1810913085938,10.727217,10727.217 +34637,2025-03-11T08:08:35.323120-07:00,1001.1956787109375,10.717784,10717.784 +34638,2025-03-11T08:08:46.058212-07:00,1001.174560546875,10.735092,10735.092 +34639,2025-03-11T08:08:56.779301-07:00,1001.18701171875,10.721089,10721.089 +34640,2025-03-11T08:09:07.500175-07:00,1001.1488037109375,10.720874,10720.874 +34641,2025-03-11T08:09:18.226294-07:00,1001.1554565429688,10.726119,10726.119 +34642,2025-03-11T08:09:28.956142-07:00,1001.1617431640625,10.729848,10729.848 +34643,2025-03-11T08:09:39.687120-07:00,1001.1631469726562,10.730978,10730.978 +34644,2025-03-11T08:09:50.405485-07:00,1001.179443359375,10.718365,10718.365 +34645,2025-03-11T08:10:01.140122-07:00,1001.2020263671875,10.734637,10734.637 +34646,2025-03-11T08:10:11.862419-07:00,1001.173583984375,10.722297,10722.297 +34647,2025-03-11T08:10:22.592113-07:00,1001.239013671875,10.729694,10729.694 +34648,2025-03-11T08:10:33.312117-07:00,1001.1795043945312,10.720004,10720.004 +34649,2025-03-11T08:10:44.039245-07:00,1001.212158203125,10.727128,10727.128 +34650,2025-03-11T08:10:54.768120-07:00,1001.17919921875,10.728875,10728.875 +34651,2025-03-11T08:11:05.487857-07:00,1001.2034912109375,10.719737,10719.737 +34652,2025-03-11T08:11:16.211117-07:00,1001.1968994140625,10.72326,10723.26 +34653,2025-03-11T08:11:26.941461-07:00,1001.1945190429688,10.730344,10730.344 +34654,2025-03-11T08:11:37.673118-07:00,1001.2056274414062,10.731657,10731.657 +34655,2025-03-11T08:11:48.399854-07:00,1001.2073364257812,10.726736,10726.736 +34656,2025-03-11T08:11:59.120374-07:00,1001.2234497070312,10.72052,10720.52 +34657,2025-03-11T08:12:09.849146-07:00,1001.2265625,10.728772,10728.772 +34658,2025-03-11T08:12:20.571311-07:00,1001.219970703125,10.722165,10722.165 +34659,2025-03-11T08:12:31.301616-07:00,1001.1882934570312,10.730305,10730.305 +34660,2025-03-11T08:12:42.019308-07:00,1001.21923828125,10.717692,10717.692 +34661,2025-03-11T08:12:52.755195-07:00,1001.2008666992188,10.735887,10735.887 +34662,2025-03-11T08:13:03.474118-07:00,1001.2223510742188,10.718923,10718.923 +34663,2025-03-11T08:13:14.199146-07:00,1001.2251586914062,10.725028,10725.028 +34664,2025-03-11T08:13:24.930348-07:00,1001.2415771484375,10.731202,10731.202 +34665,2025-03-11T08:13:35.658323-07:00,1001.2313842773438,10.727975,10727.975 +34666,2025-03-11T08:13:46.380327-07:00,1001.224853515625,10.722004,10722.004 +34667,2025-03-11T08:13:57.110208-07:00,1001.2606811523438,10.729881,10729.881 +34668,2025-03-11T08:14:07.837510-07:00,1001.2327880859375,10.727302,10727.302 +34669,2025-03-11T08:14:18.567118-07:00,1001.2718505859375,10.729608,10729.608 +34670,2025-03-11T08:14:29.291896-07:00,1001.2492065429688,10.724778,10724.778 +34671,2025-03-11T08:14:40.014195-07:00,1001.2586059570312,10.722299,10722.299 +34672,2025-03-11T08:14:50.741551-07:00,1001.2586059570312,10.727356,10727.356 +34673,2025-03-11T08:15:01.470678-07:00,1001.2669677734375,10.729127,10729.127 +34674,2025-03-11T08:15:12.202124-07:00,1001.2736206054688,10.731446,10731.446 +34675,2025-03-11T08:15:22.929622-07:00,1001.2750244140625,10.727498,10727.498 +34676,2025-03-11T08:15:33.653118-07:00,1001.2669677734375,10.723496,10723.496 +34677,2025-03-11T08:15:44.376122-07:00,1001.2736206054688,10.723004,10723.004 +34678,2025-03-11T08:15:55.109171-07:00,1001.2867431640625,10.733049,10733.049 +34679,2025-03-11T08:16:05.835118-07:00,1001.2815551757812,10.725947,10725.947 +34680,2025-03-11T08:16:16.557299-07:00,1001.3065795898438,10.722181,10722.181 +34681,2025-03-11T08:16:27.281520-07:00,1001.2999877929688,10.724221,10724.221 +34682,2025-03-11T08:16:38.011121-07:00,1001.313232421875,10.729601,10729.601 +34683,2025-03-11T08:16:48.732119-07:00,1001.2933349609375,10.720998,10720.998 +34684,2025-03-11T08:16:59.464126-07:00,1001.3079833984375,10.732007,10732.007 +34685,2025-03-11T08:17:10.182320-07:00,1001.313232421875,10.718194,10718.194 +34686,2025-03-11T08:17:20.909244-07:00,1001.2933349609375,10.726924,10726.924 +34687,2025-03-11T08:17:31.637326-07:00,1001.27392578125,10.728082,10728.082 +34688,2025-03-11T08:17:42.356317-07:00,1001.302001953125,10.718991,10718.991 +34689,2025-03-11T08:17:53.081582-07:00,1001.3121948242188,10.725265,10725.265 +34690,2025-03-11T08:18:03.805192-07:00,1001.3069458007812,10.72361,10723.61 +34691,2025-03-11T08:18:14.532897-07:00,1001.3069458007812,10.727705,10727.705 +34692,2025-03-11T08:18:25.263471-07:00,1001.3121948242188,10.730574,10730.574 +34693,2025-03-11T08:18:35.984117-07:00,1001.33544921875,10.720646,10720.646 +34694,2025-03-11T08:18:46.706137-07:00,1001.3485717773438,10.72202,10722.02 +34695,2025-03-11T08:18:57.436205-07:00,1001.342041015625,10.730068,10730.068 +34696,2025-03-11T08:19:08.168222-07:00,1001.3504028320312,10.732017,10732.017 +34697,2025-03-11T08:19:18.884185-07:00,1001.3340454101562,10.715963,10715.963 +34698,2025-03-11T08:19:29.615117-07:00,1001.3392333984375,10.730932,10730.932 +34699,2025-03-11T08:19:40.345057-07:00,1001.3524780273438,10.72994,10729.94 +34700,2025-03-11T08:19:51.067182-07:00,1001.3440551757812,10.722125,10722.125 +34701,2025-03-11T08:20:01.790299-07:00,1001.328125,10.723117,10723.117 +34702,2025-03-11T08:20:12.514138-07:00,1001.3545532226562,10.723839,10723.839 +34703,2025-03-11T08:20:23.245300-07:00,1001.338134765625,10.731162,10731.162 +34704,2025-03-11T08:20:33.975211-07:00,1001.3646240234375,10.729911,10729.911 +34705,2025-03-11T08:20:44.703514-07:00,1001.3447875976562,10.728303,10728.303 +34706,2025-03-11T08:20:55.429317-07:00,1001.3551635742188,10.725803,10725.803 +34707,2025-03-11T08:21:06.154243-07:00,1001.36669921875,10.724926,10724.926 +34708,2025-03-11T08:21:16.891545-07:00,1001.3850708007812,10.737302,10737.302 +34709,2025-03-11T08:21:27.608118-07:00,1001.36669921875,10.716573,10716.573 +34710,2025-03-11T08:21:38.333189-07:00,1001.3506469726562,10.725071,10725.071 +34711,2025-03-11T08:21:49.061283-07:00,1001.3638916015625,10.728094,10728.094 +34712,2025-03-11T08:21:59.787115-07:00,1001.3621826171875,10.725832,10725.832 +34713,2025-03-11T08:22:10.514479-07:00,1001.3311767578125,10.727364,10727.364 +34714,2025-03-11T08:22:21.237225-07:00,1001.3311767578125,10.722746,10722.746 +34715,2025-03-11T08:22:31.966606-07:00,1001.3443603515625,10.729381,10729.381 +34716,2025-03-11T08:22:42.684118-07:00,1001.33642578125,10.717512,10717.512 +34717,2025-03-11T08:22:53.417329-07:00,1001.3297729492188,10.733211,10733.211 +34718,2025-03-11T08:23:04.145179-07:00,1001.328369140625,10.72785,10727.85 +34719,2025-03-11T08:23:14.869253-07:00,1001.333251953125,10.724074,10724.074 +34720,2025-03-11T08:23:25.587595-07:00,1001.3548583984375,10.718342,10718.342 +34721,2025-03-11T08:23:36.311121-07:00,1001.35302734375,10.723526,10723.526 +34722,2025-03-11T08:23:47.034550-07:00,1001.344970703125,10.723429,10723.429 +34723,2025-03-11T08:23:57.759176-07:00,1001.3238525390625,10.724626,10724.626 +34724,2025-03-11T08:24:08.490194-07:00,1001.3238525390625,10.731018,10731.018 +34725,2025-03-11T08:24:19.212722-07:00,1001.3435668945312,10.722528,10722.528 +34726,2025-03-11T08:24:29.939119-07:00,1001.3092041015625,10.726397,10726.397 +34727,2025-03-11T08:24:40.670297-07:00,1001.3009643554688,10.731178,10731.178 +34728,2025-03-11T08:24:51.389319-07:00,1001.3009643554688,10.719022,10719.022 +34729,2025-03-11T08:25:02.118306-07:00,1001.3356323242188,10.728987,10728.987 +34730,2025-03-11T08:25:12.849387-07:00,1001.2650146484375,10.731081,10731.081 +34731,2025-03-11T08:25:23.573119-07:00,1001.2633056640625,10.723732,10723.732 +34732,2025-03-11T08:25:34.301821-07:00,1001.2848510742188,10.728702,10728.702 +34733,2025-03-11T08:25:45.024125-07:00,1001.325927734375,10.722304,10722.304 +34734,2025-03-11T08:25:55.753373-07:00,1001.2782592773438,10.729248,10729.248 +34735,2025-03-11T08:26:06.481183-07:00,1001.31787109375,10.72781,10727.81 +34736,2025-03-11T08:26:17.204118-07:00,1001.2896728515625,10.722935,10722.935 +34737,2025-03-11T08:26:27.940972-07:00,1001.2796630859375,10.736854,10736.854 +34738,2025-03-11T08:26:38.657117-07:00,1001.2831420898438,10.716145,10716.145 +34739,2025-03-11T08:26:49.387119-07:00,1001.2737426757812,10.730002,10730.002 +34740,2025-03-11T08:27:00.118935-07:00,1001.3015747070312,10.731816,10731.816 +34741,2025-03-11T08:27:10.838116-07:00,1001.2918090820312,10.719181,10719.181 +34742,2025-03-11T08:27:21.574298-07:00,1001.286865234375,10.736182,10736.182 +34743,2025-03-11T08:27:32.295318-07:00,1001.2984619140625,10.72102,10721.02 +34744,2025-03-11T08:27:43.020202-07:00,1001.2984619140625,10.724884,10724.884 +34745,2025-03-11T08:27:53.751213-07:00,1001.28515625,10.731011,10731.011 +34746,2025-03-11T08:28:04.465874-07:00,1001.278564453125,10.714661,10714.661 +34747,2025-03-11T08:28:15.193291-07:00,1001.2639770507812,10.727417,10727.417 +34748,2025-03-11T08:28:25.922343-07:00,1001.2904052734375,10.729052,10729.052 +34749,2025-03-11T08:28:36.643533-07:00,1001.2757568359375,10.72119,10721.19 +34750,2025-03-11T08:28:47.378317-07:00,1001.295654296875,10.734784,10734.784 +34751,2025-03-11T08:28:58.105336-07:00,1001.2792358398438,10.727019,10727.019 +34752,2025-03-11T08:29:08.826350-07:00,1001.3004760742188,10.721014,10721.014 +34753,2025-03-11T08:29:19.546807-07:00,1001.3136596679688,10.720457,10720.457 +34754,2025-03-11T08:29:30.272390-07:00,1001.3136596679688,10.725583,10725.583 +34755,2025-03-11T08:29:40.999362-07:00,1001.3320922851562,10.726972,10726.972 +34756,2025-03-11T08:29:51.727322-07:00,1001.2910766601562,10.72796,10727.96 +34757,2025-03-11T08:30:02.452117-07:00,1001.3175048828125,10.724795,10724.795 +34758,2025-03-11T08:30:13.174139-07:00,1001.3289184570312,10.722022,10722.022 +34759,2025-03-11T08:30:23.905583-07:00,1001.3387451171875,10.731444,10731.444 +34760,2025-03-11T08:30:34.630215-07:00,1001.3421630859375,10.724632,10724.632 +34761,2025-03-11T08:30:45.355112-07:00,1001.362060546875,10.724897,10724.897 +34762,2025-03-11T08:30:56.074120-07:00,1001.3518676757812,10.719008,10719.008 +34763,2025-03-11T08:31:06.806927-07:00,1001.3651733398438,10.732807,10732.807 +34764,2025-03-11T08:31:17.534115-07:00,1001.3685913085938,10.727188,10727.188 +34765,2025-03-11T08:31:28.260297-07:00,1001.3473510742188,10.726182,10726.182 +34766,2025-03-11T08:31:38.984115-07:00,1001.3703002929688,10.723818,10723.818 +34767,2025-03-11T08:31:49.719146-07:00,1001.3657836914062,10.735031,10735.031 +34768,2025-03-11T08:32:00.442307-07:00,1001.3657836914062,10.723161,10723.161 +34769,2025-03-11T08:32:11.173114-07:00,1001.3709106445312,10.730807,10730.807 +34770,2025-03-11T08:32:21.900297-07:00,1001.3987426757812,10.727183,10727.183 +34771,2025-03-11T08:32:32.632301-07:00,1001.4053955078125,10.732004,10732.004 +34772,2025-03-11T08:32:43.357115-07:00,1001.41064453125,10.724814,10724.814 +34773,2025-03-11T08:32:54.084120-07:00,1001.45166015625,10.727005,10727.005 +34774,2025-03-11T08:33:04.811159-07:00,1001.41064453125,10.727039,10727.039 +34775,2025-03-11T08:33:15.528532-07:00,1001.4484252929688,10.717373,10717.373 +34776,2025-03-11T08:33:26.256118-07:00,1001.3994750976562,10.727586,10727.586 +34777,2025-03-11T08:33:36.987120-07:00,1001.42724609375,10.731002,10731.002 +34778,2025-03-11T08:33:47.710488-07:00,1001.4126586914062,10.723368,10723.368 +34779,2025-03-11T08:33:58.438358-07:00,1001.419189453125,10.72787,10727.87 +34780,2025-03-11T08:34:09.165419-07:00,1001.4522705078125,10.727061,10727.061 +34781,2025-03-11T08:34:19.895972-07:00,1001.4390869140625,10.730553,10730.553 +34782,2025-03-11T08:34:30.615147-07:00,1001.4373168945312,10.719175,10719.175 +34783,2025-03-11T08:34:41.346284-07:00,1001.4095458984375,10.731137,10731.137 +34784,2025-03-11T08:34:52.059325-07:00,1001.4359130859375,10.713041,10713.041 +34785,2025-03-11T08:35:02.786299-07:00,1001.4425048828125,10.726974,10726.974 +34786,2025-03-11T08:35:13.520150-07:00,1001.427978515625,10.733851,10733.851 +34787,2025-03-11T08:35:24.247119-07:00,1001.467529296875,10.726969,10726.969 +34788,2025-03-11T08:35:34.966141-07:00,1001.4769287109375,10.719022,10719.022 +34789,2025-03-11T08:35:45.691318-07:00,1001.455810546875,10.725177,10725.177 +34790,2025-03-11T08:35:56.415987-07:00,1001.4293823242188,10.724669,10724.669 +34791,2025-03-11T08:36:07.140270-07:00,1001.42626953125,10.724283,10724.283 +34792,2025-03-11T08:36:17.873255-07:00,1001.4345092773438,10.732985,10732.985 +34793,2025-03-11T08:36:28.602960-07:00,1001.4328002929688,10.729705,10729.705 +34794,2025-03-11T08:36:39.325407-07:00,1001.4689331054688,10.722447,10722.447 +34795,2025-03-11T08:36:48.966197-07:00,1001.446044921875,9.64079,9640.79 +34796,2025-03-11T08:36:50.049140-07:00,1001.45263671875,1.082943,1082.943 +34797,2025-03-11T08:37:00.768339-07:00,1001.431396484375,10.719199,10719.199 +34798,2025-03-11T08:37:11.492146-07:00,1001.416748046875,10.723807,10723.807 +34799,2025-03-11T08:37:22.213237-07:00,1001.43798828125,10.721091,10721.091 +34800,2025-03-11T08:37:32.944511-07:00,1001.4578247070312,10.731274,10731.274 +34801,2025-03-11T08:37:43.668581-07:00,1001.43798828125,10.72407,10724.07 +34802,2025-03-11T08:37:54.392203-07:00,1001.4431762695312,10.723622,10723.622 +34803,2025-03-11T08:38:05.113151-07:00,1001.4564208984375,10.720948,10720.948 +34804,2025-03-11T08:38:15.836243-07:00,1001.4547119140625,10.723092,10723.092 +34805,2025-03-11T08:38:26.570119-07:00,1001.4498291015625,10.733876,10733.876 +34806,2025-03-11T08:38:37.295117-07:00,1001.4268798828125,10.724998,10724.998 +34807,2025-03-11T08:38:48.014373-07:00,1001.4365844726562,10.719256,10719.256 +34808,2025-03-11T08:38:58.749146-07:00,1001.4547119140625,10.734773,10734.773 +34809,2025-03-11T08:39:09.472988-07:00,1001.44140625,10.723842,10723.842 +34810,2025-03-11T08:39:20.197316-07:00,1001.4202270507812,10.724328,10724.328 +34811,2025-03-11T08:39:30.925114-07:00,1001.4254760742188,10.727798,10727.798 +34812,2025-03-11T08:39:41.647209-07:00,1001.4254760742188,10.722095,10722.095 +34813,2025-03-11T08:39:52.378155-07:00,1001.4202270507812,10.730946,10730.946 +34814,2025-03-11T08:40:03.096951-07:00,1001.4268798828125,10.718796,10718.796 +34815,2025-03-11T08:40:13.823128-07:00,1001.4334106445312,10.726177,10726.177 +34816,2025-03-11T08:40:24.554718-07:00,1001.4254760742188,10.73159,10731.59 +34817,2025-03-11T08:40:35.282361-07:00,1001.4371948242188,10.727643,10727.643 +34818,2025-03-11T08:40:46.007149-07:00,1001.4042358398438,10.724788,10724.788 +34819,2025-03-11T08:40:56.731705-07:00,1001.4025268554688,10.724556,10724.556 +34820,2025-03-11T08:41:07.457121-07:00,1001.3959350585938,10.725416,10725.416 +34821,2025-03-11T08:41:18.184294-07:00,1001.3798217773438,10.727173,10727.173 +34822,2025-03-11T08:41:28.906202-07:00,1001.414306640625,10.721908,10721.908 +34823,2025-03-11T08:41:39.623290-07:00,1001.39306640625,10.717088,10717.088 +34824,2025-03-11T08:41:50.346193-07:00,1001.4195556640625,10.722903,10722.903 +34825,2025-03-11T08:42:01.073223-07:00,1001.39306640625,10.72703,10727.03 +34826,2025-03-11T08:42:11.786120-07:00,1001.391357421875,10.712897,10712.897 +34827,2025-03-11T08:42:22.511335-07:00,1001.39306640625,10.725215,10725.215 +34828,2025-03-11T08:42:33.237731-07:00,1001.3864135742188,10.726396,10726.396 +34829,2025-03-11T08:42:43.949420-07:00,1001.40625,10.711689,10711.689 +34830,2025-03-11T08:42:54.675113-07:00,1001.3781127929688,10.725693,10725.693 +34831,2025-03-11T08:43:05.394935-07:00,1001.3649291992188,10.719822,10719.822 +34832,2025-03-11T08:43:16.115120-07:00,1001.37158203125,10.720185,10720.185 +34833,2025-03-11T08:43:26.839541-07:00,1001.3847045898438,10.724421,10724.421 +34834,2025-03-11T08:43:37.561283-07:00,1001.3582763671875,10.721742,10721.742 +34835,2025-03-11T08:43:48.285298-07:00,1001.363525390625,10.724015,10724.015 +34836,2025-03-11T08:43:59.002147-07:00,1001.3423461914062,10.716849,10716.849 +34837,2025-03-11T08:44:09.727332-07:00,1001.3735961914062,10.725185,10725.185 +34838,2025-03-11T08:44:20.453305-07:00,1001.3707885742188,10.725973,10725.973 +34839,2025-03-11T08:44:31.171299-07:00,1001.3557739257812,10.717994,10717.994 +34840,2025-03-11T08:44:41.893122-07:00,1001.3662719726562,10.721823,10721.823 +34841,2025-03-11T08:44:52.608142-07:00,1001.3696899414062,10.71502,10715.02 +34842,2025-03-11T08:45:03.334120-07:00,1001.3602294921875,10.725978,10725.978 +34843,2025-03-11T08:45:14.059298-07:00,1001.37548828125,10.725178,10725.178 +34844,2025-03-11T08:45:24.777120-07:00,1001.372314453125,10.717822,10717.822 +34845,2025-03-11T08:45:35.502338-07:00,1001.3677978515625,10.725218,10725.218 +34846,2025-03-11T08:45:46.222329-07:00,1001.3629760742188,10.719991,10719.991 +34847,2025-03-11T08:45:56.937238-07:00,1001.3555297851562,10.714909,10714.909 +34848,2025-03-11T08:46:07.663342-07:00,1001.375732421875,10.726104,10726.104 +34849,2025-03-11T08:46:18.383184-07:00,1001.3373413085938,10.719842,10719.842 +34850,2025-03-11T08:46:29.111330-07:00,1001.35400390625,10.728146,10728.146 +34851,2025-03-11T08:46:39.834307-07:00,1001.3646850585938,10.722977,10722.977 +34852,2025-03-11T08:46:50.557121-07:00,1001.3426513671875,10.722814,10722.814 +34853,2025-03-11T08:47:01.274415-07:00,1001.37109375,10.717294,10717.294 +34854,2025-03-11T08:47:12.002361-07:00,1001.3912353515625,10.727946,10727.946 +34855,2025-03-11T08:47:22.724286-07:00,1001.3984375,10.721925,10721.925 +34856,2025-03-11T08:47:33.439255-07:00,1001.3990478515625,10.714969,10714.969 +34857,2025-03-11T08:47:44.160414-07:00,1001.386474609375,10.721159,10721.159 +34858,2025-03-11T08:47:54.886366-07:00,1001.3773193359375,10.725952,10725.952 +34859,2025-03-11T08:48:05.611304-07:00,1001.349853515625,10.724938,10724.938 +34860,2025-03-11T08:48:16.330626-07:00,1001.3734130859375,10.719322,10719.322 +34861,2025-03-11T08:48:27.052301-07:00,1001.3803100585938,10.721675,10721.675 +34862,2025-03-11T08:48:37.777116-07:00,1001.375732421875,10.724815,10724.815 +34863,2025-03-11T08:48:48.497338-07:00,1001.3861083984375,10.720222,10720.222 +34864,2025-03-11T08:48:59.224657-07:00,1001.4026489257812,10.727319,10727.319 +34865,2025-03-11T08:49:09.948113-07:00,1001.396728515625,10.723456,10723.456 +34866,2025-03-11T08:49:20.670120-07:00,1001.372314453125,10.722007,10722.007 +34867,2025-03-11T08:49:31.400239-07:00,1001.3875732421875,10.730119,10730.119 +34868,2025-03-11T08:49:42.126318-07:00,1001.3927612304688,10.726079,10726.079 +34869,2025-03-11T08:49:52.840121-07:00,1001.3961791992188,10.713803,10713.803 +34870,2025-03-11T08:50:03.569696-07:00,1001.4489135742188,10.729575,10729.575 +34871,2025-03-11T08:50:14.287330-07:00,1001.3995971679688,10.717634,10717.634 +34872,2025-03-11T08:50:25.006284-07:00,1001.43115234375,10.718954,10718.954 +34873,2025-03-11T08:50:35.737120-07:00,1001.4378051757812,10.730836,10730.836 +34874,2025-03-11T08:50:46.452139-07:00,1001.44921875,10.715019,10715.019 +34875,2025-03-11T08:50:57.182115-07:00,1001.454345703125,10.729976,10729.976 +34876,2025-03-11T08:51:07.899986-07:00,1001.427978515625,10.717871,10717.871 +34877,2025-03-11T08:51:18.623705-07:00,1001.432861328125,10.723719,10723.719 +34878,2025-03-11T08:51:29.345667-07:00,1001.4346313476562,10.721962,10721.962 +34879,2025-03-11T08:51:40.070121-07:00,1001.459228515625,10.724454,10724.454 +34880,2025-03-11T08:51:50.786644-07:00,1001.432861328125,10.716523,10716.523 +34881,2025-03-11T08:52:01.509331-07:00,1001.419677734375,10.722687,10722.687 +34882,2025-03-11T08:52:12.241277-07:00,1001.4478149414062,10.731946,10731.946 +34883,2025-03-11T08:52:22.962118-07:00,1001.4478149414062,10.720841,10720.841 +34884,2025-03-11T08:52:33.680537-07:00,1001.454345703125,10.718419,10718.419 +34885,2025-03-11T08:52:44.399192-07:00,1001.4227905273438,10.718655,10718.655 +34886,2025-03-11T08:52:55.129372-07:00,1001.41796875,10.73018,10730.18 +34887,2025-03-11T08:53:05.853122-07:00,1001.429443359375,10.72375,10723.75 +34888,2025-03-11T08:53:16.576342-07:00,1001.439208984375,10.72322,10723.22 +34889,2025-03-11T08:53:27.292145-07:00,1001.412841796875,10.715803,10715.803 +34890,2025-03-11T08:53:38.025167-07:00,1001.4541625976562,10.733022,10733.022 +34891,2025-03-11T08:53:48.751404-07:00,1001.4503784179688,10.726237,10726.237 +34892,2025-03-11T08:53:59.469495-07:00,1001.435791015625,10.718091,10718.091 +34893,2025-03-11T08:54:10.191400-07:00,1001.4107666015625,10.721905,10721.905 +34894,2025-03-11T08:54:20.920334-07:00,1001.3861083984375,10.728934,10728.934 +34895,2025-03-11T08:54:31.642247-07:00,1001.4271850585938,10.721913,10721.913 +34896,2025-03-11T08:54:42.365172-07:00,1001.466064453125,10.722925,10722.925 +34897,2025-03-11T08:54:53.095370-07:00,1001.4053344726562,10.730198,10730.198 +34898,2025-03-11T08:55:03.812788-07:00,1001.423095703125,10.717418,10717.418 +34899,2025-03-11T08:55:14.544194-07:00,1001.450927734375,10.731406,10731.406 +34900,2025-03-11T08:55:25.262171-07:00,1001.3981323242188,10.717977,10717.977 +34901,2025-03-11T08:55:35.987732-07:00,1001.4276733398438,10.725561,10725.561 +34902,2025-03-11T08:55:46.710170-07:00,1001.419677734375,10.722438,10722.438 +34903,2025-03-11T08:55:57.436167-07:00,1001.4041137695312,10.725997,10725.997 +34904,2025-03-11T08:56:08.154235-07:00,1001.4190673828125,10.718068,10718.068 +34905,2025-03-11T08:56:18.883442-07:00,1001.43505859375,10.729207,10729.207 +34906,2025-03-11T08:56:29.609735-07:00,1001.423583984375,10.726293,10726.293 +34907,2025-03-11T08:56:40.325234-07:00,1001.4249877929688,10.715499,10715.499 +34908,2025-03-11T08:56:51.045171-07:00,1001.4053344726562,10.719937,10719.937 +34909,2025-03-11T08:57:01.776237-07:00,1001.4296264648438,10.731066,10731.066 +34910,2025-03-11T08:57:12.496932-07:00,1001.4459228515625,10.720695,10720.695 +34911,2025-03-11T08:57:23.222277-07:00,1001.4276733398438,10.725345,10725.345 +34912,2025-03-11T08:57:33.950365-07:00,1001.4143676757812,10.728088,10728.088 +34913,2025-03-11T08:57:44.675169-07:00,1001.4241333007812,10.724804,10724.804 +34914,2025-03-11T08:57:55.398361-07:00,1001.427001953125,10.723192,10723.192 +34915,2025-03-11T08:58:06.120165-07:00,1001.4151611328125,10.721804,10721.804 +34916,2025-03-11T08:58:16.839318-07:00,1001.4329833984375,10.719153,10719.153 +34917,2025-03-11T08:58:27.562239-07:00,1001.4528198242188,10.722921,10722.921 +34918,2025-03-11T08:58:38.297164-07:00,1001.4413452148438,10.734925,10734.925 +34919,2025-03-11T08:58:49.014170-07:00,1001.4656372070312,10.717006,10717.006 +34920,2025-03-11T08:58:59.743359-07:00,1001.478271484375,10.729189,10729.189 +34921,2025-03-11T08:59:10.469772-07:00,1001.450439453125,10.726413,10726.413 +34922,2025-03-11T08:59:21.194165-07:00,1001.4796752929688,10.724393,10724.393 +34923,2025-03-11T08:59:31.919335-07:00,1001.4467163085938,10.72517,10725.17 +34924,2025-03-11T08:59:42.648458-07:00,1001.4974975585938,10.729123,10729.123 +34925,2025-03-11T08:59:53.369246-07:00,1001.4710693359375,10.720788,10720.788 +34926,2025-03-11T09:00:04.107362-07:00,1001.4658813476562,10.738116,10738.116 +34927,2025-03-11T09:00:14.827379-07:00,1001.4724731445312,10.720017,10720.017 +34928,2025-03-11T09:00:25.551763-07:00,1001.470458984375,10.724384,10724.384 +34929,2025-03-11T09:00:36.281200-07:00,1001.5145874023438,10.729437,10729.437 +34930,2025-03-11T09:00:47.013169-07:00,1001.516357421875,10.731969,10731.969 +34931,2025-03-11T09:00:57.740356-07:00,1001.4767456054688,10.727187,10727.187 +34932,2025-03-11T09:01:08.472389-07:00,1001.4993896484375,10.732033,10732.033 +34933,2025-03-11T09:01:19.191344-07:00,1001.4746704101562,10.718955,10718.955 +34934,2025-03-11T09:01:29.929349-07:00,1001.4907836914062,10.738005,10738.005 +34935,2025-03-11T09:01:40.651494-07:00,1001.513671875,10.722145,10722.145 +34936,2025-03-11T09:01:51.381338-07:00,1001.5084228515625,10.729844,10729.844 +34937,2025-03-11T09:02:02.110220-07:00,1001.4835205078125,10.728882,10728.882 +34938,2025-03-11T09:02:12.835382-07:00,1001.4901733398438,10.725162,10725.162 +34939,2025-03-11T09:02:23.560299-07:00,1001.4866333007812,10.724917,10724.917 +34940,2025-03-11T09:02:34.293172-07:00,1001.4866333007812,10.732873,10732.873 +34941,2025-03-11T09:02:45.012560-07:00,1001.5095825195312,10.719388,10719.388 +34942,2025-03-11T09:02:55.742169-07:00,1001.5057983398438,10.729609,10729.609 +34943,2025-03-11T09:03:06.463357-07:00,1001.5023193359375,10.721188,10721.188 +34944,2025-03-11T09:03:17.189370-07:00,1001.4906005859375,10.726013,10726.013 +34945,2025-03-11T09:03:27.915599-07:00,1001.4971923828125,10.726229,10726.229 +34946,2025-03-11T09:03:38.647103-07:00,1001.4937744140625,10.731504,10731.504 +34947,2025-03-11T09:03:49.365375-07:00,1001.49658203125,10.718272,10718.272 +34948,2025-03-11T09:04:00.090280-07:00,1001.5209350585938,10.724905,10724.905 +34949,2025-03-11T09:04:10.817247-07:00,1001.485107421875,10.726967,10726.967 +34950,2025-03-11T09:04:21.549714-07:00,1001.4746704101562,10.732467,10732.467 +34951,2025-03-11T09:04:32.274518-07:00,1001.4990844726562,10.724804,10724.804 +34952,2025-03-11T09:04:43.004177-07:00,1001.479248046875,10.729659,10729.659 +34953,2025-03-11T09:04:53.726069-07:00,1001.4942016601562,10.721892,10721.892 +34954,2025-03-11T09:05:04.455169-07:00,1001.4855346679688,10.7291,10729.1 +34955,2025-03-11T09:05:15.181171-07:00,1001.4671630859375,10.726002,10726.002 +34956,2025-03-11T09:05:25.915356-07:00,1001.4852294921875,10.734185,10734.185 +34957,2025-03-11T09:05:36.642321-07:00,1001.474853515625,10.726965,10726.965 +34958,2025-03-11T09:05:47.375399-07:00,1001.4793701171875,10.733078,10733.078 +34959,2025-03-11T09:05:58.102357-07:00,1001.5170288085938,10.726958,10726.958 +34960,2025-03-11T09:06:08.832171-07:00,1001.4923706054688,10.729814,10729.814 +34961,2025-03-11T09:06:19.559165-07:00,1001.48046875,10.726994,10726.994 +34962,2025-03-11T09:06:30.288402-07:00,1001.4784545898438,10.729237,10729.237 +34963,2025-03-11T09:06:41.016173-07:00,1001.4879150390625,10.727771,10727.771 +34964,2025-03-11T09:06:51.748403-07:00,1001.4910278320312,10.73223,10732.23 +34965,2025-03-11T09:07:02.466281-07:00,1001.4678344726562,10.717878,10717.878 +34966,2025-03-11T09:07:13.191189-07:00,1001.4723510742188,10.724908,10724.908 +34967,2025-03-11T09:07:23.921358-07:00,1001.4375610351562,10.730169,10730.169 +34968,2025-03-11T09:07:34.644267-07:00,1001.4768676757812,10.722909,10722.909 +34969,2025-03-11T09:07:45.382588-07:00,1001.4400024414062,10.738321,10738.321 +34970,2025-03-11T09:07:56.103287-07:00,1001.4629516601562,10.720699,10720.699 +34971,2025-03-11T09:08:06.833173-07:00,1001.4629516601562,10.729886,10729.886 +34972,2025-03-11T09:08:17.558397-07:00,1001.4623413085938,10.725224,10725.224 +34973,2025-03-11T09:08:28.289238-07:00,1001.4609375,10.730841,10730.841 +34974,2025-03-11T09:08:39.018351-07:00,1001.4721069335938,10.729113,10729.113 +34975,2025-03-11T09:08:49.746372-07:00,1001.4815673828125,10.728021,10728.021 +34976,2025-03-11T09:09:00.474200-07:00,1001.4568481445312,10.727828,10727.828 +34977,2025-03-11T09:09:11.203366-07:00,1001.4676513671875,10.729166,10729.166 +34978,2025-03-11T09:09:21.929239-07:00,1001.4412231445312,10.725873,10725.873 +34979,2025-03-11T09:09:32.652348-07:00,1001.450927734375,10.723109,10723.109 +34980,2025-03-11T09:09:43.385820-07:00,1001.447509765625,10.733472,10733.472 +34981,2025-03-11T09:09:54.104164-07:00,1001.4635009765625,10.718344,10718.344 +34982,2025-03-11T09:10:04.837336-07:00,1001.4798583984375,10.733172,10733.172 +34983,2025-03-11T09:10:15.556172-07:00,1001.4454956054688,10.718836,10718.836 +34984,2025-03-11T09:10:26.280359-07:00,1001.4865112304688,10.724187,10724.187 +34985,2025-03-11T09:10:37.014169-07:00,1001.4631958007812,10.73381,10733.81 +34986,2025-03-11T09:10:47.741375-07:00,1001.4681396484375,10.727206,10727.206 +34987,2025-03-11T09:10:58.463971-07:00,1001.4829711914062,10.722596,10722.596 +34988,2025-03-11T09:11:09.186169-07:00,1001.4812622070312,10.722198,10722.198 +34989,2025-03-11T09:11:19.919095-07:00,1001.4910278320312,10.732926,10732.926 +34990,2025-03-11T09:11:30.646217-07:00,1001.4962768554688,10.727122,10727.122 +34991,2025-03-11T09:11:41.366198-07:00,1001.4976806640625,10.719981,10719.981 +34992,2025-03-11T09:11:52.096075-07:00,1001.505615234375,10.729877,10729.877 +34993,2025-03-11T09:12:02.830172-07:00,1001.4712524414062,10.734097,10734.097 +34994,2025-03-11T09:12:13.557540-07:00,1001.477783203125,10.727368,10727.368 +34995,2025-03-11T09:12:24.280585-07:00,1001.4593505859375,10.723045,10723.045 +34996,2025-03-11T09:12:34.999254-07:00,1001.477783203125,10.718669,10718.669 +34997,2025-03-11T09:12:45.733198-07:00,1001.50732421875,10.733944,10733.944 +34998,2025-03-11T09:12:56.457175-07:00,1001.477783203125,10.723977,10723.977 +34999,2025-03-11T09:13:07.177189-07:00,1001.492431640625,10.720014,10720.014 +35000,2025-03-11T09:13:17.902375-07:00,1001.4976806640625,10.725186,10725.186 +35001,2025-03-11T09:13:28.627549-07:00,1001.4763793945312,10.725174,10725.174 +35002,2025-03-11T09:13:39.352169-07:00,1001.4962768554688,10.72462,10724.62 +35003,2025-03-11T09:13:50.087262-07:00,1001.5093994140625,10.735093,10735.093 +35004,2025-03-11T09:14:00.815354-07:00,1001.5093994140625,10.728092,10728.092 +35005,2025-03-11T09:14:11.539242-07:00,1001.5209350585938,10.723888,10723.888 +35006,2025-03-11T09:14:22.264386-07:00,1001.5209350585938,10.725144,10725.144 +35007,2025-03-11T09:14:32.993166-07:00,1001.49169921875,10.72878,10728.78 +35008,2025-03-11T09:14:43.728365-07:00,1001.5128784179688,10.735199,10735.199 +35009,2025-03-11T09:14:54.449417-07:00,1001.5181274414062,10.721052,10721.052 +35010,2025-03-11T09:15:05.180170-07:00,1001.5164184570312,10.730753,10730.753 +35011,2025-03-11T09:15:15.905175-07:00,1001.5379638671875,10.725005,10725.005 +35012,2025-03-11T09:15:26.625388-07:00,1001.5215454101562,10.720213,10720.213 +35013,2025-03-11T09:15:37.359205-07:00,1001.5313110351562,10.733817,10733.817 +35014,2025-03-11T09:15:48.083339-07:00,1001.5201416015625,10.724134,10724.134 +35015,2025-03-11T09:15:58.806379-07:00,1001.5333862304688,10.72304,10723.04 +35016,2025-03-11T09:16:09.528207-07:00,1001.5119018554688,10.721828,10721.828 +35017,2025-03-11T09:16:20.256206-07:00,1001.5038452148438,10.727999,10727.999 +35018,2025-03-11T09:16:30.978574-07:00,1001.5316162109375,10.722368,10722.368 +35019,2025-03-11T09:16:41.702237-07:00,1001.5170288085938,10.723663,10723.663 +35020,2025-03-11T09:16:52.427190-07:00,1001.4940795898438,10.724953,10724.953 +35021,2025-03-11T09:17:03.146223-07:00,1001.522216796875,10.719033,10719.033 +35022,2025-03-11T09:17:13.868582-07:00,1001.505859375,10.722359,10722.359 +35023,2025-03-11T09:17:24.590169-07:00,1001.4992065429688,10.721587,10721.587 +35024,2025-03-11T09:17:35.315275-07:00,1001.513916015625,10.725106,10725.106 +35025,2025-03-11T09:17:46.041171-07:00,1001.486083984375,10.725896,10725.896 +35026,2025-03-11T09:17:56.769173-07:00,1001.5176391601562,10.728002,10728.002 +35027,2025-03-11T09:18:07.489172-07:00,1001.4912719726562,10.719999,10719.999 +35028,2025-03-11T09:18:18.217165-07:00,1001.4912719726562,10.727993,10727.993 +35029,2025-03-11T09:18:28.942272-07:00,1001.5426635742188,10.725107,10725.107 +35030,2025-03-11T09:18:39.668172-07:00,1001.5228271484375,10.7259,10725.9 +35031,2025-03-11T09:18:50.391704-07:00,1001.5013427734375,10.723532,10723.532 +35032,2025-03-11T09:19:01.107232-07:00,1001.5079956054688,10.715528,10715.528 +35033,2025-03-11T09:19:11.832341-07:00,1001.49853515625,10.725109,10725.109 +35034,2025-03-11T09:19:22.558403-07:00,1001.5343627929688,10.726062,10726.062 +35035,2025-03-11T09:19:33.283346-07:00,1001.506591796875,10.724943,10724.943 +35036,2025-03-11T09:19:44.009737-07:00,1001.50341796875,10.726391,10726.391 +35037,2025-03-11T09:19:54.723203-07:00,1001.4918823242188,10.713466,10713.466 +35038,2025-03-11T09:20:05.449238-07:00,1001.496826171875,10.726035,10726.035 +35039,2025-03-11T09:20:16.171358-07:00,1001.48876953125,10.72212,10722.12 +35040,2025-03-11T09:20:26.894202-07:00,1001.4755249023438,10.722844,10722.844 +35041,2025-03-11T09:20:37.625170-07:00,1001.495361328125,10.730968,10730.968 +35042,2025-03-11T09:20:48.352362-07:00,1001.51513671875,10.727192,10727.192 +35043,2025-03-11T09:20:59.073236-07:00,1001.5020141601562,10.720874,10720.874 +35044,2025-03-11T09:21:09.803523-07:00,1001.50341796875,10.730287,10730.287 +35045,2025-03-11T09:21:20.521169-07:00,1001.493896484375,10.717646,10717.646 +35046,2025-03-11T09:21:31.251201-07:00,1001.48876953125,10.730032,10730.032 +35047,2025-03-11T09:21:41.976273-07:00,1001.4835815429688,10.725072,10725.072 +35048,2025-03-11T09:21:52.705930-07:00,1001.48876953125,10.729657,10729.657 +35049,2025-03-11T09:22:03.432348-07:00,1001.485595703125,10.726418,10726.418 +35050,2025-03-11T09:22:14.151205-07:00,1001.5054931640625,10.718857,10718.857 +35051,2025-03-11T09:22:24.881173-07:00,1001.5086059570312,10.729968,10729.968 +35052,2025-03-11T09:22:35.608172-07:00,1001.4901733398438,10.726999,10726.999 +35053,2025-03-11T09:22:46.341172-07:00,1001.472412109375,10.733,10733.0 +35054,2025-03-11T09:22:57.062353-07:00,1001.4873657226562,10.721181,10721.181 +35055,2025-03-11T09:23:07.793375-07:00,1001.493896484375,10.731022,10731.022 +35056,2025-03-11T09:23:18.520173-07:00,1001.496826171875,10.726798,10726.798 +35057,2025-03-11T09:23:29.244365-07:00,1001.493896484375,10.724192,10724.192 +35058,2025-03-11T09:23:39.974964-07:00,1001.48876953125,10.730599,10730.599 +35059,2025-03-11T09:23:50.701341-07:00,1001.4807739257812,10.726377,10726.377 +35060,2025-03-11T09:24:01.438182-07:00,1001.495361328125,10.736841,10736.841 +35061,2025-03-11T09:24:12.162516-07:00,1001.4609375,10.724334,10724.334 +35062,2025-03-11T09:24:22.897223-07:00,1001.47412109375,10.734707,10734.707 +35063,2025-03-11T09:24:33.623379-07:00,1001.4609375,10.726156,10726.156 +35064,2025-03-11T09:24:44.353168-07:00,1001.4609375,10.729789,10729.789 +35065,2025-03-11T09:24:55.088603-07:00,1001.467529296875,10.735435,10735.435 +35066,2025-03-11T09:25:05.808373-07:00,1001.4572143554688,10.71977,10719.77 +35067,2025-03-11T09:25:16.548202-07:00,1001.4609375,10.739829,10739.829 +35068,2025-03-11T09:25:27.273583-07:00,1001.4790649414062,10.725381,10725.381 +35069,2025-03-11T09:25:38.001169-07:00,1001.455810546875,10.727586,10727.586 +35070,2025-03-11T09:25:48.735184-07:00,1001.454345703125,10.734015,10734.015 +35071,2025-03-11T09:25:59.460010-07:00,1001.4689331054688,10.724826,10724.826 +35072,2025-03-11T09:26:10.183173-07:00,1001.4689331054688,10.723163,10723.163 +35073,2025-03-11T09:26:20.909343-07:00,1001.4578247070312,10.72617,10726.17 +35074,2025-03-11T09:26:31.633342-07:00,1001.4578247070312,10.723999,10723.999 +35075,2025-03-11T09:26:42.363167-07:00,1001.4564208984375,10.729825,10729.825 +35076,2025-03-11T09:26:53.088172-07:00,1001.4678955078125,10.725005,10725.005 +35077,2025-03-11T09:27:03.819354-07:00,1001.4696044921875,10.731182,10731.182 +35078,2025-03-11T09:27:14.540379-07:00,1001.4578247070312,10.721025,10721.025 +35079,2025-03-11T09:27:25.269186-07:00,1001.4466552734375,10.728807,10728.807 +35080,2025-03-11T09:27:35.997346-07:00,1001.45703125,10.72816,10728.16 +35081,2025-03-11T09:27:46.728260-07:00,1001.4473266601562,10.730914,10730.914 +35082,2025-03-11T09:27:57.450841-07:00,1001.4295043945312,10.722581,10722.581 +35083,2025-03-11T09:28:08.178363-07:00,1001.4329833984375,10.727522,10727.522 +35084,2025-03-11T09:28:18.905402-07:00,1001.4413452148438,10.727039,10727.039 +35085,2025-03-11T09:28:29.634370-07:00,1001.4462280273438,10.728968,10728.968 +35086,2025-03-11T09:28:40.356168-07:00,1001.4500122070312,10.721798,10721.798 +35087,2025-03-11T09:28:51.087171-07:00,1001.4336547851562,10.731003,10731.003 +35088,2025-03-11T09:29:01.803524-07:00,1001.40576171875,10.716353,10716.353 +35089,2025-03-11T09:29:12.528241-07:00,1001.4600830078125,10.724717,10724.717 +35090,2025-03-11T09:29:23.260344-07:00,1001.404052734375,10.732103,10732.103 +35091,2025-03-11T09:29:33.984234-07:00,1001.4107055664062,10.72389,10723.89 +35092,2025-03-11T09:29:44.701360-07:00,1001.4124145507812,10.717126,10717.126 +35093,2025-03-11T09:29:55.426168-07:00,1001.3992309570312,10.724808,10724.808 +35094,2025-03-11T09:30:06.152451-07:00,1001.428466796875,10.726283,10726.283 +35095,2025-03-11T09:30:16.881169-07:00,1001.4152221679688,10.728718,10728.718 +35096,2025-03-11T09:30:27.595200-07:00,1001.4132080078125,10.714031,10714.031 +35097,2025-03-11T09:30:38.324280-07:00,1001.4000244140625,10.72908,10729.08 +35098,2025-03-11T09:30:49.043363-07:00,1001.4198608398438,10.719083,10719.083 +35099,2025-03-11T09:30:59.773831-07:00,1001.4082641601562,10.730468,10730.468 +35100,2025-03-11T09:31:10.497172-07:00,1001.4295043945312,10.723341,10723.341 +35101,2025-03-11T09:31:21.217445-07:00,1001.4149169921875,10.720273,10720.273 +35102,2025-03-11T09:31:31.943173-07:00,1001.3884887695312,10.725728,10725.728 +35103,2025-03-11T09:31:42.672862-07:00,1001.4082641601562,10.729689,10729.689 +35104,2025-03-11T09:31:53.399266-07:00,1001.40966796875,10.726404,10726.404 +35105,2025-03-11T09:32:04.124173-07:00,1001.417724609375,10.724907,10724.907 +35106,2025-03-11T09:32:14.849195-07:00,1001.40966796875,10.725022,10725.022 +35107,2025-03-11T09:32:25.570469-07:00,1001.376708984375,10.721274,10721.274 +35108,2025-03-11T09:32:36.299369-07:00,1001.3965454101562,10.7289,10728.9 +35109,2025-03-11T09:32:47.026167-07:00,1001.3847045898438,10.726798,10726.798 +35110,2025-03-11T09:32:57.745620-07:00,1001.38330078125,10.719453,10719.453 +35111,2025-03-11T09:33:08.477355-07:00,1001.373291015625,10.731735,10731.735 +35112,2025-03-11T09:33:19.200350-07:00,1001.399658203125,10.722995,10722.995 +35113,2025-03-11T09:33:29.926377-07:00,1001.3582763671875,10.726027,10726.027 +35114,2025-03-11T09:33:40.657170-07:00,1001.3812255859375,10.730793,10730.793 +35115,2025-03-11T09:33:51.384729-07:00,1001.3760986328125,10.727559,10727.559 +35116,2025-03-11T09:34:02.111248-07:00,1001.3416137695312,10.726519,10726.519 +35117,2025-03-11T09:34:12.839402-07:00,1001.3562622070312,10.728154,10728.154 +35118,2025-03-11T09:34:23.557172-07:00,1001.318359375,10.71777,10717.77 +35119,2025-03-11T09:34:34.288488-07:00,1001.3409423828125,10.731316,10731.316 +35120,2025-03-11T09:34:45.012409-07:00,1001.3490600585938,10.723921,10723.921 +35121,2025-03-11T09:34:55.733201-07:00,1001.3292236328125,10.720792,10720.792 +35122,2025-03-11T09:35:06.466604-07:00,1001.3045043945312,10.733403,10733.403 +35123,2025-03-11T09:35:17.191319-07:00,1001.3110961914062,10.724715,10724.715 +35124,2025-03-11T09:35:27.910167-07:00,1001.307373046875,10.718848,10718.848 +35125,2025-03-11T09:35:38.640193-07:00,1001.2940673828125,10.730026,10730.026 +35126,2025-03-11T09:35:49.360434-07:00,1001.2972412109375,10.720241,10720.241 +35127,2025-03-11T09:36:00.089290-07:00,1001.2840576171875,10.728856,10728.856 +35128,2025-03-11T09:36:10.813172-07:00,1001.2899780273438,10.723882,10723.882 +35129,2025-03-11T09:36:21.536588-07:00,1001.295166015625,10.723416,10723.416 +35130,2025-03-11T09:36:32.260167-07:00,1001.32958984375,10.723579,10723.579 +35131,2025-03-11T09:36:42.983345-07:00,1001.2945556640625,10.723178,10723.178 +35132,2025-03-11T09:36:53.708172-07:00,1001.2865600585938,10.724827,10724.827 +35133,2025-03-11T09:37:04.439170-07:00,1001.262939453125,10.730998,10730.998 +35134,2025-03-11T09:37:15.162318-07:00,1001.2316284179688,10.723148,10723.148 +35135,2025-03-11T09:37:25.890175-07:00,1001.2528076171875,10.727857,10727.857 +35136,2025-03-11T09:37:36.613002-07:00,1001.2872924804688,10.722827,10722.827 +35137,2025-03-11T09:37:47.333171-07:00,1001.2507934570312,10.720169,10720.169 +35138,2025-03-11T09:37:58.062280-07:00,1001.237548828125,10.729109,10729.109 +35139,2025-03-11T09:38:08.785376-07:00,1001.2323608398438,10.723096,10723.096 +35140,2025-03-11T09:38:19.504351-07:00,1001.24072265625,10.718975,10718.975 +35141,2025-03-11T09:38:30.236168-07:00,1001.2584228515625,10.731817,10731.817 +35142,2025-03-11T09:38:40.952321-07:00,1001.24072265625,10.716153,10716.153 +35143,2025-03-11T09:38:51.679373-07:00,1001.2584228515625,10.727052,10727.052 +35144,2025-03-11T09:39:02.409310-07:00,1001.2452392578125,10.729937,10729.937 +35145,2025-03-11T09:39:13.124196-07:00,1001.2546997070312,10.714886,10714.886 +35146,2025-03-11T09:39:23.850532-07:00,1001.23486328125,10.726336,10726.336 +35147,2025-03-11T09:39:34.575194-07:00,1001.228271484375,10.724662,10724.662 +35148,2025-03-11T09:39:45.299172-07:00,1001.2313842773438,10.723978,10723.978 +35149,2025-03-11T09:39:56.030226-07:00,1001.2101440429688,10.731054,10731.054 +35150,2025-03-11T09:40:06.755169-07:00,1001.2181396484375,10.724943,10724.943 +35151,2025-03-11T09:40:17.480172-07:00,1001.2167358398438,10.725003,10725.003 +35152,2025-03-11T09:40:28.206411-07:00,1001.2034912109375,10.726239,10726.239 +35153,2025-03-11T09:40:38.935170-07:00,1001.2216186523438,10.728759,10728.759 +35154,2025-03-11T09:40:49.655399-07:00,1001.236572265625,10.720229,10720.229 +35155,2025-03-11T09:41:00.382382-07:00,1001.20703125,10.726983,10726.983 +35156,2025-03-11T09:41:11.104344-07:00,1001.2546997070312,10.721962,10721.962 +35157,2025-03-11T09:41:21.831169-07:00,1001.2039184570312,10.726825,10726.825 +35158,2025-03-11T09:41:32.559348-07:00,1001.2237548828125,10.728179,10728.179 +35159,2025-03-11T09:41:43.279169-07:00,1001.1860961914062,10.719821,10719.821 +35160,2025-03-11T09:41:53.996355-07:00,1001.2212524414062,10.717186,10717.186 +35161,2025-03-11T09:42:04.727171-07:00,1001.2249755859375,10.730816,10730.816 +35162,2025-03-11T09:42:15.448561-07:00,1001.2058715820312,10.72139,10721.39 +35163,2025-03-11T09:42:26.169169-07:00,1001.2489013671875,10.720608,10720.608 +35164,2025-03-11T09:42:36.886172-07:00,1001.2298583984375,10.717003,10717.003 +35165,2025-03-11T09:42:47.608171-07:00,1001.2192993164062,10.721999,10721.999 +35166,2025-03-11T09:42:58.336883-07:00,1001.24609375,10.728712,10728.712 +35167,2025-03-11T09:43:09.064985-07:00,1001.2453002929688,10.728102,10728.102 +35168,2025-03-11T09:43:19.784171-07:00,1001.2229614257812,10.719186,10719.186 +35169,2025-03-11T09:43:30.509980-07:00,1001.2271118164062,10.725809,10725.809 +35170,2025-03-11T09:43:41.229170-07:00,1001.2193603515625,10.71919,10719.19 +35171,2025-03-11T09:43:51.961995-07:00,1001.2412719726562,10.732825,10732.825 +35172,2025-03-11T09:44:02.677172-07:00,1001.245361328125,10.715177,10715.177 +35173,2025-03-11T09:44:13.400372-07:00,1001.2443237304688,10.7232,10723.2 +35174,2025-03-11T09:44:24.128174-07:00,1001.231689453125,10.727802,10727.802 +35175,2025-03-11T09:44:34.854398-07:00,1001.2536010742188,10.726224,10726.224 +35176,2025-03-11T09:44:45.571452-07:00,1001.22607421875,10.717054,10717.054 +35177,2025-03-11T09:44:56.298172-07:00,1001.2412719726562,10.72672,10726.72 +35178,2025-03-11T09:45:07.014196-07:00,1001.241943359375,10.716024,10716.024 +35179,2025-03-11T09:45:17.736345-07:00,1001.220703125,10.722149,10722.149 +35180,2025-03-11T09:45:28.468170-07:00,1001.221435546875,10.731825,10731.825 +35181,2025-03-11T09:45:39.194172-07:00,1001.2379760742188,10.726002,10726.002 +35182,2025-03-11T09:45:49.908219-07:00,1001.2413940429688,10.714047,10714.047 +35183,2025-03-11T09:46:00.636369-07:00,1001.2237548828125,10.72815,10728.15 +35184,2025-03-11T09:46:11.366470-07:00,1001.21044921875,10.730101,10730.101 +35185,2025-03-11T09:46:22.086171-07:00,1001.2472534179688,10.719701,10719.701 +35186,2025-03-11T09:46:32.806426-07:00,1001.25390625,10.720255,10720.255 +35187,2025-03-11T09:46:43.525375-07:00,1001.245849609375,10.718949,10718.949 +35188,2025-03-11T09:46:54.254349-07:00,1001.2374877929688,10.728974,10728.974 +35189,2025-03-11T09:47:04.982321-07:00,1001.2625122070312,10.727972,10727.972 +35190,2025-03-11T09:47:15.706390-07:00,1001.2527465820312,10.724069,10724.069 +35191,2025-03-11T09:47:26.431168-07:00,1001.2559204101562,10.724778,10724.778 +35192,2025-03-11T09:47:37.158318-07:00,1001.2461547851562,10.72715,10727.15 +35193,2025-03-11T09:47:47.876235-07:00,1001.2117309570312,10.717917,10717.917 +35194,2025-03-11T09:47:58.607225-07:00,1001.239501953125,10.73099,10730.99 +35195,2025-03-11T09:48:09.333361-07:00,1001.2625122070312,10.726136,10726.136 +35196,2025-03-11T09:48:20.054231-07:00,1001.2545166015625,10.72087,10720.87 +35197,2025-03-11T09:48:30.783377-07:00,1001.2478637695312,10.729146,10729.146 +35198,2025-03-11T09:48:41.513354-07:00,1001.2545166015625,10.729977,10729.977 +35199,2025-03-11T09:48:52.228239-07:00,1001.25732421875,10.714885,10714.885 +35200,2025-03-11T09:49:02.957532-07:00,1001.25732421875,10.729293,10729.293 +35201,2025-03-11T09:49:13.676587-07:00,1001.265625,10.719055,10719.055 +35202,2025-03-11T09:49:24.406814-07:00,1001.265625,10.730227,10730.227 +35203,2025-03-11T09:49:35.128172-07:00,1001.2391967773438,10.721358,10721.358 +35204,2025-03-11T09:49:45.848678-07:00,1001.2553100585938,10.720506,10720.506 +35205,2025-03-11T09:49:56.575167-07:00,1001.2340698242188,10.726489,10726.489 +35206,2025-03-11T09:50:07.298354-07:00,1001.243408203125,10.723187,10723.187 +35207,2025-03-11T09:50:18.019914-07:00,1001.2598266601562,10.72156,10721.56 +35208,2025-03-11T09:50:28.743373-07:00,1001.2498168945312,10.723459,10723.459 +35209,2025-03-11T09:50:39.472167-07:00,1001.2546997070312,10.728794,10728.794 +35210,2025-03-11T09:50:50.190489-07:00,1001.2498168945312,10.718322,10718.322 +35211,2025-03-11T09:51:00.912200-07:00,1001.24462890625,10.721711,10721.711 +35212,2025-03-11T09:51:11.630572-07:00,1001.2279663085938,10.718372,10718.372 +35213,2025-03-11T09:51:22.359169-07:00,1001.2557983398438,10.728597,10728.597 +35214,2025-03-11T09:51:33.073348-07:00,1001.240478515625,10.714179,10714.179 +35215,2025-03-11T09:51:43.802190-07:00,1001.2603149414062,10.728842,10728.842 +35216,2025-03-11T09:51:54.523541-07:00,1001.263427734375,10.721351,10721.351 +35217,2025-03-11T09:52:05.242169-07:00,1001.2568969726562,10.718628,10718.628 +35218,2025-03-11T09:52:15.969355-07:00,1001.251708984375,10.727186,10727.186 +35219,2025-03-11T09:52:26.691171-07:00,1001.2430419921875,10.721816,10721.816 +35220,2025-03-11T09:52:37.404597-07:00,1001.2642211914062,10.713426,10713.426 +35221,2025-03-11T09:52:48.136171-07:00,1001.21142578125,10.731574,10731.574 +35222,2025-03-11T09:52:58.852996-07:00,1001.2476806640625,10.716825,10716.825 +35223,2025-03-11T09:53:09.574362-07:00,1001.2653198242188,10.721366,10721.366 +35224,2025-03-11T09:53:20.293402-07:00,1001.2536010742188,10.71904,10719.04 +35225,2025-03-11T09:53:31.018170-07:00,1001.2483520507812,10.724768,10724.768 +35226,2025-03-11T09:53:41.767741-07:00,1001.246337890625,10.749571,10749.571 +35227,2025-03-11T09:53:52.490013-07:00,1001.2609252929688,10.722272,10722.272 +35228,2025-03-11T09:54:03.218433-07:00,1001.242919921875,10.72842,10728.42 +35229,2025-03-11T09:54:13.932827-07:00,1001.27001953125,10.714394,10714.394 +35230,2025-03-11T09:54:24.663654-07:00,1001.263427734375,10.730827,10730.827 +35231,2025-03-11T09:54:35.386561-07:00,1001.25341796875,10.722907,10722.907 +35232,2025-03-11T09:54:46.110758-07:00,1001.2777099609375,10.724197,10724.197 +35233,2025-03-11T09:54:56.834424-07:00,1001.2315673828125,10.723666,10723.666 +35234,2025-03-11T09:55:07.558347-07:00,1001.2346801757812,10.723923,10723.923 +35235,2025-03-11T09:55:18.287218-07:00,1001.25244140625,10.728871,10728.871 +35236,2025-03-11T09:55:29.005767-07:00,1001.25244140625,10.718549,10718.549 +35237,2025-03-11T09:55:39.734565-07:00,1001.2423706054688,10.728798,10728.798 +35238,2025-03-11T09:55:50.461739-07:00,1001.2454833984375,10.727174,10727.174 +35239,2025-03-11T09:56:01.182955-07:00,1001.271240234375,10.721216,10721.216 +35240,2025-03-11T09:56:11.907561-07:00,1001.2581176757812,10.724606,10724.606 +35241,2025-03-11T09:56:22.624588-07:00,1001.281005859375,10.717027,10717.027 +35242,2025-03-11T09:56:33.353879-07:00,1001.2706298828125,10.729291,10729.291 +35243,2025-03-11T09:56:44.076563-07:00,1001.24560546875,10.722684,10722.684 +35244,2025-03-11T09:56:54.795562-07:00,1001.2288818359375,10.718999,10718.999 +35245,2025-03-11T09:57:05.519592-07:00,1001.2453002929688,10.72403,10724.03 +35246,2025-03-11T09:57:16.248814-07:00,1001.2268676757812,10.729222,10729.222 +35247,2025-03-11T09:57:26.969563-07:00,1001.2578125,10.720749,10720.749 +35248,2025-03-11T09:57:37.698312-07:00,1001.224853515625,10.728749,10728.749 +35249,2025-03-11T09:57:48.416811-07:00,1001.2345581054688,10.718499,10718.499 +35250,2025-03-11T09:57:59.137740-07:00,1001.2109375,10.720929,10720.929 +35251,2025-03-11T09:58:09.865563-07:00,1001.2192993164062,10.727823,10727.823 +35252,2025-03-11T09:58:20.592976-07:00,1001.2186889648438,10.727413,10727.413 +35253,2025-03-11T09:58:31.309561-07:00,1001.225341796875,10.716585,10716.585 +35254,2025-03-11T09:58:42.031567-07:00,1001.2318725585938,10.722006,10722.006 +35255,2025-03-11T09:58:52.759883-07:00,1001.204833984375,10.728316,10728.316 +35256,2025-03-11T09:59:03.485566-07:00,1001.1783447265625,10.725683,10725.683 +35257,2025-03-11T09:59:14.200710-07:00,1001.1947021484375,10.715144,10715.144 +35258,2025-03-11T09:59:24.930700-07:00,1001.19091796875,10.72999,10729.99 +35259,2025-03-11T09:59:35.650810-07:00,1001.1727905273438,10.72011,10720.11 +35260,2025-03-11T09:59:46.371563-07:00,1001.1638793945312,10.720753,10720.753 +35261,2025-03-11T09:59:57.094757-07:00,1001.1853637695312,10.723194,10723.194 +35262,2025-03-11T10:00:07.817899-07:00,1001.186767578125,10.723142,10723.142 +35263,2025-03-11T10:00:18.537590-07:00,1001.197998046875,10.719691,10719.691 +35264,2025-03-11T10:00:29.267682-07:00,1001.170166015625,10.730092,10730.092 +35265,2025-03-11T10:00:39.989740-07:00,1001.18408203125,10.722058,10722.058 +35266,2025-03-11T10:00:50.719589-07:00,1001.17919921875,10.729849,10729.849 +35267,2025-03-11T10:01:01.444564-07:00,1001.1740112304688,10.724975,10724.975 +35268,2025-03-11T10:01:12.176449-07:00,1001.1785278320312,10.731885,10731.885 +35269,2025-03-11T10:01:22.894751-07:00,1001.152099609375,10.718302,10718.302 +35270,2025-03-11T10:01:33.619213-07:00,1001.1615600585938,10.724462,10724.462 +35271,2025-03-11T10:01:44.342882-07:00,1001.1566162109375,10.723669,10723.669 +35272,2025-03-11T10:01:55.070763-07:00,1001.1777954101562,10.727881,10727.881 +35273,2025-03-11T10:02:05.794234-07:00,1001.1611938476562,10.723471,10723.471 +35274,2025-03-11T10:02:16.521780-07:00,1001.16259765625,10.727546,10727.546 +35275,2025-03-11T10:02:27.240846-07:00,1001.1671142578125,10.719066,10719.066 +35276,2025-03-11T10:02:37.969564-07:00,1001.158447265625,10.728718,10728.718 +35277,2025-03-11T10:02:48.690009-07:00,1001.1744384765625,10.720445,10720.445 +35278,2025-03-11T10:02:59.420776-07:00,1001.1820068359375,10.730767,10730.767 +35279,2025-03-11T10:03:10.153803-07:00,1001.1900634765625,10.733027,10733.027 +35280,2025-03-11T10:03:20.873564-07:00,1001.1865844726562,10.719761,10719.761 +35281,2025-03-11T10:03:31.605642-07:00,1001.1646728515625,10.732078,10732.078 +35282,2025-03-11T10:03:42.325693-07:00,1001.1574096679688,10.720051,10720.051 +35283,2025-03-11T10:03:53.050575-07:00,1001.1884155273438,10.724882,10724.882 +35284,2025-03-11T10:04:03.771763-07:00,1001.1487426757812,10.721188,10721.188 +35285,2025-03-11T10:04:14.506620-07:00,1001.1799926757812,10.734857,10734.857 +35286,2025-03-11T10:04:25.232982-07:00,1001.1765747070312,10.726362,10726.362 +35287,2025-03-11T10:04:35.959330-07:00,1001.1876831054688,10.726348,10726.348 +35288,2025-03-11T10:04:46.684784-07:00,1001.1956176757812,10.725454,10725.454 +35289,2025-03-11T10:04:57.412568-07:00,1001.1883544921875,10.727784,10727.784 +35290,2025-03-11T10:05:08.137559-07:00,1001.1699829101562,10.724991,10724.991 +35291,2025-03-11T10:05:18.862745-07:00,1001.2106323242188,10.725186,10725.186 +35292,2025-03-11T10:05:29.584560-07:00,1001.1939086914062,10.721815,10721.815 +35293,2025-03-11T10:05:40.306140-07:00,1001.2100219726562,10.72158,10721.58 +35294,2025-03-11T10:05:51.038562-07:00,1001.205078125,10.732422,10732.422 +35295,2025-03-11T10:06:01.765719-07:00,1001.218994140625,10.727157,10727.157 +35296,2025-03-11T10:06:12.488162-07:00,1001.2432861328125,10.722443,10722.443 +35297,2025-03-11T10:06:23.221562-07:00,1001.2513427734375,10.7334,10733.4 +35298,2025-03-11T10:06:33.949827-07:00,1001.2332763671875,10.728265,10728.265 +35299,2025-03-11T10:06:44.676561-07:00,1001.2509155273438,10.726734,10726.734 +35300,2025-03-11T10:06:55.401571-07:00,1001.2391357421875,10.72501,10725.01 +35301,2025-03-11T10:07:06.125308-07:00,1001.2489013671875,10.723737,10723.737 +35302,2025-03-11T10:07:16.847557-07:00,1001.2662353515625,10.722249,10722.249 +35303,2025-03-11T10:07:27.579765-07:00,1001.2398681640625,10.732208,10732.208 +35304,2025-03-11T10:07:38.302591-07:00,1001.22314453125,10.722826,10722.826 +35305,2025-03-11T10:07:49.030563-07:00,1001.2628173828125,10.727972,10727.972 +35306,2025-03-11T10:07:59.765749-07:00,1001.2659301757812,10.735186,10735.186 +35307,2025-03-11T10:08:10.484773-07:00,1001.2554931640625,10.719024,10719.024 +35308,2025-03-11T10:08:21.220779-07:00,1001.2798461914062,10.736006,10736.006 +35309,2025-03-11T10:08:31.944563-07:00,1001.268310546875,10.723784,10723.784 +35310,2025-03-11T10:08:42.665582-07:00,1001.2578735351562,10.721019,10721.019 +35311,2025-03-11T10:08:53.402774-07:00,1001.2394409179688,10.737192,10737.192 +35312,2025-03-11T10:09:04.121647-07:00,1001.2821655273438,10.718873,10718.873 +35313,2025-03-11T10:09:14.858741-07:00,1001.275634765625,10.737094,10737.094 +35314,2025-03-11T10:09:25.583561-07:00,1001.2506103515625,10.72482,10724.82 +35315,2025-03-11T10:09:36.312765-07:00,1001.2801513671875,10.729204,10729.204 +35316,2025-03-11T10:09:47.044640-07:00,1001.2965087890625,10.731875,10731.875 +35317,2025-03-11T10:09:57.766724-07:00,1001.276611328125,10.722084,10722.084 +35318,2025-03-11T10:10:08.501588-07:00,1001.28466796875,10.734864,10734.864 +35319,2025-03-11T10:10:19.233759-07:00,1001.314208984375,10.732171,10732.171 +35320,2025-03-11T10:10:29.965821-07:00,1001.32080078125,10.732062,10732.062 +35321,2025-03-11T10:10:40.701593-07:00,1001.3009643554688,10.735772,10735.772 +35322,2025-03-11T10:10:51.435807-07:00,1001.3037719726562,10.734214,10734.214 +35323,2025-03-11T10:11:02.164740-07:00,1001.3121337890625,10.728933,10728.933 +35324,2025-03-11T10:11:12.893750-07:00,1001.3135375976562,10.72901,10729.01 +35325,2025-03-11T10:11:23.619766-07:00,1001.321533203125,10.726016,10726.016 +35326,2025-03-11T10:11:34.348561-07:00,1001.321533203125,10.728795,10728.795 +35327,2025-03-11T10:11:45.074449-07:00,1001.3148193359375,10.725888,10725.888 +35328,2025-03-11T10:11:55.810640-07:00,1001.3082885742188,10.736191,10736.191 +35329,2025-03-11T10:12:06.539656-07:00,1001.3427124023438,10.729016,10729.016 +35330,2025-03-11T10:12:17.273058-07:00,1001.3114013671875,10.733402,10733.402 +35331,2025-03-11T10:12:27.999789-07:00,1001.3326416015625,10.726731,10726.731 +35332,2025-03-11T10:12:38.734164-07:00,1001.3259887695312,10.734375,10734.375 +35333,2025-03-11T10:12:49.459561-07:00,1001.3326416015625,10.725397,10725.397 +35334,2025-03-11T10:13:00.190053-07:00,1001.3340454101562,10.730492,10730.492 +35335,2025-03-11T10:13:10.919750-07:00,1001.3193969726562,10.729697,10729.697 +35336,2025-03-11T10:13:21.646623-07:00,1001.327392578125,10.726873,10726.873 +35337,2025-03-11T10:13:32.383968-07:00,1001.3820190429688,10.737345,10737.345 +35338,2025-03-11T10:13:43.107560-07:00,1001.3820190429688,10.723592,10723.592 +35339,2025-03-11T10:13:53.837564-07:00,1001.3556518554688,10.730004,10730.004 +35340,2025-03-11T10:14:04.561378-07:00,1001.3423461914062,10.723814,10723.814 +35341,2025-03-11T10:14:15.290566-07:00,1001.348876953125,10.729188,10729.188 +35342,2025-03-11T10:14:26.016757-07:00,1001.3621826171875,10.726191,10726.191 +35343,2025-03-11T10:14:36.744758-07:00,1001.3604736328125,10.728001,10728.001 +35344,2025-03-11T10:14:47.480561-07:00,1001.3538818359375,10.735803,10735.803 +35345,2025-03-11T10:14:58.203726-07:00,1001.3803100585938,10.723165,10723.165 +35346,2025-03-11T10:15:08.928840-07:00,1001.3736572265625,10.725114,10725.114 +35347,2025-03-11T10:15:19.660672-07:00,1001.3753662109375,10.731832,10731.832 +35348,2025-03-11T10:15:30.391768-07:00,1001.3820190429688,10.731096,10731.096 +35349,2025-03-11T10:15:41.113766-07:00,1001.3736572265625,10.721998,10721.998 +35350,2025-03-11T10:15:51.839775-07:00,1001.3604736328125,10.726009,10726.009 +35351,2025-03-11T10:16:02.572588-07:00,1001.3556518554688,10.732813,10732.813 +35352,2025-03-11T10:16:13.303776-07:00,1001.3604736328125,10.731188,10731.188 +35353,2025-03-11T10:16:24.031922-07:00,1001.364990234375,10.728146,10728.146 +35354,2025-03-11T10:16:34.765564-07:00,1001.3767700195312,10.733642,10733.642 +35355,2025-03-11T10:16:45.493716-07:00,1001.37158203125,10.728152,10728.152 +35356,2025-03-11T10:16:56.225562-07:00,1001.364990234375,10.731846,10731.846 +35357,2025-03-11T10:17:06.958638-07:00,1001.3931274414062,10.733076,10733.076 +35358,2025-03-11T10:17:17.679562-07:00,1001.364990234375,10.720924,10720.924 +35359,2025-03-11T10:17:28.408738-07:00,1001.3799438476562,10.729176,10729.176 +35360,2025-03-11T10:17:39.140766-07:00,1001.3865356445312,10.732028,10732.028 +35361,2025-03-11T10:17:49.865564-07:00,1001.3931274414062,10.724798,10724.798 +35362,2025-03-11T10:18:00.597771-07:00,1001.4209594726562,10.732207,10732.207 +35363,2025-03-11T10:18:11.319838-07:00,1001.3931274414062,10.722067,10722.067 +35364,2025-03-11T10:18:22.051744-07:00,1001.415771484375,10.731906,10731.906 +35365,2025-03-11T10:18:32.779561-07:00,1001.40771484375,10.727817,10727.817 +35366,2025-03-11T10:18:43.510559-07:00,1001.4209594726562,10.730998,10730.998 +35367,2025-03-11T10:18:54.242559-07:00,1001.40771484375,10.732,10732.0 +35368,2025-03-11T10:19:04.972656-07:00,1001.415771484375,10.730097,10730.097 +35369,2025-03-11T10:19:15.692843-07:00,1001.40771484375,10.720187,10720.187 +35370,2025-03-11T10:19:26.428744-07:00,1001.4209594726562,10.735901,10735.901 +35371,2025-03-11T10:19:37.157765-07:00,1001.4143676757812,10.729021,10729.021 +35372,2025-03-11T10:19:47.888586-07:00,1001.4112548828125,10.730821,10730.821 +35373,2025-03-11T10:19:58.615759-07:00,1001.4442749023438,10.727173,10727.173 +35374,2025-03-11T10:20:09.338842-07:00,1001.4658813476562,10.723083,10723.083 +35375,2025-03-11T10:20:20.068577-07:00,1001.4442749023438,10.729735,10729.735 +35376,2025-03-11T10:20:30.801561-07:00,1001.4442749023438,10.732984,10732.984 +35377,2025-03-11T10:20:41.522777-07:00,1001.4442749023438,10.721216,10721.216 +35378,2025-03-11T10:20:52.253663-07:00,1001.4561157226562,10.730886,10730.886 +35379,2025-03-11T10:21:02.982772-07:00,1001.4282836914062,10.729109,10729.109 +35380,2025-03-11T10:21:13.704970-07:00,1001.434814453125,10.722198,10722.198 +35381,2025-03-11T10:21:24.433562-07:00,1001.423095703125,10.728592,10728.592 +35382,2025-03-11T10:21:35.156751-07:00,1001.4163818359375,10.723189,10723.189 +35383,2025-03-11T10:21:45.883320-07:00,1001.4464111328125,10.726569,10726.569 +35384,2025-03-11T10:21:56.601623-07:00,1001.4464111328125,10.718303,10718.303 +35385,2025-03-11T10:22:07.331737-07:00,1001.4529418945312,10.730114,10730.114 +35386,2025-03-11T10:22:18.056770-07:00,1001.3987426757812,10.725033,10725.033 +35387,2025-03-11T10:22:28.785637-07:00,1001.4088134765625,10.728867,10728.867 +35388,2025-03-11T10:22:39.510688-07:00,1001.443603515625,10.725051,10725.051 +35389,2025-03-11T10:22:50.231962-07:00,1001.4502563476562,10.721274,10721.274 +35390,2025-03-11T10:23:00.962331-07:00,1001.435302734375,10.730369,10730.369 +35391,2025-03-11T10:23:11.688640-07:00,1001.4258422851562,10.726309,10726.309 +35392,2025-03-11T10:23:22.407715-07:00,1001.4338989257812,10.719075,10719.075 +35393,2025-03-11T10:23:33.139561-07:00,1001.4456787109375,10.731846,10731.846 +35394,2025-03-11T10:23:43.863774-07:00,1001.4589233398438,10.724213,10724.213 +35395,2025-03-11T10:23:54.587591-07:00,1001.4707641601562,10.723817,10723.817 +35396,2025-03-11T10:24:05.319623-07:00,1001.4376831054688,10.732032,10732.032 +35397,2025-03-11T10:24:16.041195-07:00,1001.5037231445312,10.721572,10721.572 +35398,2025-03-11T10:24:26.777790-07:00,1001.450927734375,10.736595,10736.595 +35399,2025-03-11T10:24:37.501790-07:00,1001.4690551757812,10.724,10724.0 +35400,2025-03-11T10:24:48.233747-07:00,1001.4412231445312,10.731957,10731.957 +35401,2025-03-11T10:24:58.957842-07:00,1001.4345092773438,10.724095,10724.095 +35402,2025-03-11T10:25:09.679753-07:00,1001.4690551757812,10.721911,10721.911 +35403,2025-03-11T10:25:20.415635-07:00,1001.4773559570312,10.735882,10735.882 +35404,2025-03-11T10:25:31.136841-07:00,1001.4676513671875,10.721206,10721.206 +35405,2025-03-11T10:25:41.859561-07:00,1001.454345703125,10.72272,10722.72 +35406,2025-03-11T10:25:52.590564-07:00,1001.4690551757812,10.731003,10731.003 +35407,2025-03-11T10:26:03.319739-07:00,1001.4529418945312,10.729175,10729.175 +35408,2025-03-11T10:26:14.043565-07:00,1001.42138671875,10.723826,10723.826 +35409,2025-03-11T10:26:24.764097-07:00,1001.4425659179688,10.720532,10720.532 +35410,2025-03-11T10:26:35.497561-07:00,1001.4359130859375,10.733464,10733.464 +35411,2025-03-11T10:26:46.226692-07:00,1001.4359130859375,10.729131,10729.131 +35412,2025-03-11T10:26:56.948748-07:00,1001.4412231445312,10.722056,10722.056 +35413,2025-03-11T10:27:07.676594-07:00,1001.4412231445312,10.727846,10727.846 +35414,2025-03-11T10:27:18.400739-07:00,1001.427978515625,10.724145,10724.145 +35415,2025-03-11T10:27:29.134635-07:00,1001.4425659179688,10.733896,10733.896 +35416,2025-03-11T10:27:39.854558-07:00,1001.4227905273438,10.719923,10719.923 +35417,2025-03-11T10:27:50.583753-07:00,1001.450927734375,10.729195,10729.195 +35418,2025-03-11T10:28:01.311563-07:00,1001.4412231445312,10.72781,10727.81 +35419,2025-03-11T10:28:12.036914-07:00,1001.427978515625,10.725351,10725.351 +35420,2025-03-11T10:28:22.763561-07:00,1001.44921875,10.726647,10726.647 +35421,2025-03-11T10:28:33.486567-07:00,1001.455810546875,10.723006,10723.006 +35422,2025-03-11T10:28:44.218745-07:00,1001.4442749023438,10.732178,10732.178 +35423,2025-03-11T10:28:54.940597-07:00,1001.4822387695312,10.721852,10721.852 +35424,2025-03-11T10:29:05.668865-07:00,1001.4412231445312,10.728268,10728.268 +35425,2025-03-11T10:29:16.390626-07:00,1001.4398193359375,10.721761,10721.761 +35426,2025-03-11T10:29:27.128565-07:00,1001.4332275390625,10.737939,10737.939 +35427,2025-03-11T10:29:37.851967-07:00,1001.4478149414062,10.723402,10723.402 +35428,2025-03-11T10:29:48.579642-07:00,1001.4265747070312,10.727675,10727.675 +35429,2025-03-11T10:29:59.315858-07:00,1001.4662475585938,10.736216,10736.216 +35430,2025-03-11T10:30:10.035565-07:00,1001.4512329101562,10.719707,10719.707 +35431,2025-03-11T10:30:20.762628-07:00,1001.4710693359375,10.727063,10727.063 +35432,2025-03-11T10:30:31.495930-07:00,1001.484375,10.733302,10733.302 +35433,2025-03-11T10:30:42.224626-07:00,1001.449951171875,10.728696,10728.696 +35434,2025-03-11T10:30:52.945769-07:00,1001.49755859375,10.721143,10721.143 +35435,2025-03-11T10:31:03.671590-07:00,1001.463134765625,10.725821,10725.821 +35436,2025-03-11T10:31:14.403633-07:00,1001.4617309570312,10.732043,10732.043 +35437,2025-03-11T10:31:25.123749-07:00,1001.466552734375,10.720116,10720.116 +35438,2025-03-11T10:31:35.848565-07:00,1001.490966796875,10.724816,10724.816 +35439,2025-03-11T10:31:46.579761-07:00,1001.4367065429688,10.731196,10731.196 +35440,2025-03-11T10:31:57.304707-07:00,1001.463134765625,10.724946,10724.946 +35441,2025-03-11T10:32:08.032564-07:00,1001.46826171875,10.727857,10727.857 +35442,2025-03-11T10:32:18.761839-07:00,1001.4732666015625,10.729275,10729.275 +35443,2025-03-11T10:32:29.483562-07:00,1001.4534301757812,10.721723,10721.723 +35444,2025-03-11T10:32:40.218745-07:00,1001.4534301757812,10.735183,10735.183 +35445,2025-03-11T10:32:50.939812-07:00,1001.4829711914062,10.721067,10721.067 +35446,2025-03-11T10:33:01.666666-07:00,1001.4551391601562,10.726854,10726.854 +35447,2025-03-11T10:33:12.398731-07:00,1001.4088134765625,10.732065,10732.065 +35448,2025-03-11T10:33:23.127781-07:00,1001.449951171875,10.72905,10729.05 +35449,2025-03-11T10:33:33.856723-07:00,1001.4551391601562,10.728942,10728.942 +35450,2025-03-11T10:33:44.582242-07:00,1001.4880981445312,10.725519,10725.519 +35451,2025-03-11T10:33:55.299564-07:00,1001.4202880859375,10.717322,10717.322 +35452,2025-03-11T10:34:06.023081-07:00,1001.466552734375,10.723517,10723.517 +35453,2025-03-11T10:34:16.756011-07:00,1001.4798583984375,10.73293,10732.93 +35454,2025-03-11T10:34:27.484029-07:00,1001.4930419921875,10.728018,10728.018 +35455,2025-03-11T10:34:38.215380-07:00,1001.4849853515625,10.731351,10731.351 +35456,2025-03-11T10:34:48.941709-07:00,1001.5062255859375,10.726329,10726.329 +35457,2025-03-11T10:34:59.668753-07:00,1001.5048217773438,10.727044,10727.044 +35458,2025-03-11T10:35:10.385783-07:00,1001.4930419921875,10.71703,10717.03 +35459,2025-03-11T10:35:21.114761-07:00,1001.4902954101562,10.728978,10728.978 +35460,2025-03-11T10:35:31.846561-07:00,1001.4916381835938,10.7318,10731.8 +35461,2025-03-11T10:35:42.564937-07:00,1001.46875,10.718376,10718.376 +35462,2025-03-11T10:35:53.292640-07:00,1001.4916381835938,10.727703,10727.703 +35463,2025-03-11T10:36:04.018564-07:00,1001.4835815429688,10.725924,10725.924 +35464,2025-03-11T10:36:14.749968-07:00,1001.4718627929688,10.731404,10731.404 +35465,2025-03-11T10:36:25.474620-07:00,1001.50341796875,10.724652,10724.652 +35466,2025-03-11T10:36:36.197602-07:00,1001.470458984375,10.722982,10722.982 +35467,2025-03-11T10:36:46.930026-07:00,1001.4902954101562,10.732424,10732.424 +35468,2025-03-11T10:36:57.655357-07:00,1001.524658203125,10.725331,10725.331 +35469,2025-03-11T10:37:08.380751-07:00,1001.4951782226562,10.725394,10725.394 +35470,2025-03-11T10:37:19.102686-07:00,1001.501708984375,10.721935,10721.935 +35471,2025-03-11T10:37:29.819743-07:00,1001.4951782226562,10.717057,10717.057 +35472,2025-03-11T10:37:40.550560-07:00,1001.4818725585938,10.730817,10730.817 +35473,2025-03-11T10:37:51.272565-07:00,1001.473876953125,10.722005,10722.005 +35474,2025-03-11T10:38:02.001561-07:00,1001.5069580078125,10.728996,10728.996 +35475,2025-03-11T10:38:12.718559-07:00,1001.4937744140625,10.716998,10716.998 +35476,2025-03-11T10:38:23.447626-07:00,1001.5187377929688,10.729067,10729.067 +35477,2025-03-11T10:38:34.169565-07:00,1001.525390625,10.721939,10721.939 +35478,2025-03-11T10:38:44.900728-07:00,1001.48779296875,10.731163,10731.163 +35479,2025-03-11T10:38:55.621764-07:00,1001.526123046875,10.721036,10721.036 +35480,2025-03-11T10:39:06.344763-07:00,1001.5326538085938,10.722999,10722.999 +35481,2025-03-11T10:39:17.067564-07:00,1001.5198364257812,10.722801,10722.801 +35482,2025-03-11T10:39:27.794267-07:00,1001.5303344726562,10.726703,10726.703 +35483,2025-03-11T10:39:38.515770-07:00,1001.5125122070312,10.721503,10721.503 +35484,2025-03-11T10:39:49.245566-07:00,1001.521240234375,10.729796,10729.796 +35485,2025-03-11T10:39:59.966690-07:00,1001.5021362304688,10.721124,10721.124 +35486,2025-03-11T10:40:10.693012-07:00,1001.48779296875,10.726322,10726.322 +35487,2025-03-11T10:40:21.410562-07:00,1001.4985961914062,10.71755,10717.55 +35488,2025-03-11T10:40:32.138565-07:00,1001.4829711914062,10.728003,10728.003 +35489,2025-03-11T10:40:42.864741-07:00,1001.4888305664062,10.726176,10726.176 +35490,2025-03-11T10:40:53.591558-07:00,1001.4929809570312,10.726817,10726.817 +35491,2025-03-11T10:41:04.323735-07:00,1001.5103149414062,10.732177,10732.177 +35492,2025-03-11T10:41:15.049569-07:00,1001.507568359375,10.725834,10725.834 +35493,2025-03-11T10:41:25.774759-07:00,1001.490478515625,10.72519,10725.19 +35494,2025-03-11T10:41:36.500745-07:00,1001.4779663085938,10.725986,10725.986 +35495,2025-03-11T10:41:47.228565-07:00,1001.5349731445312,10.72782,10727.82 +35496,2025-03-11T10:41:57.950444-07:00,1001.4862670898438,10.721879,10721.879 +35497,2025-03-11T10:42:08.676561-07:00,1001.4902954101562,10.726117,10726.117 +35498,2025-03-11T10:42:19.399564-07:00,1001.5042114257812,10.723003,10723.003 +35499,2025-03-11T10:42:30.125018-07:00,1001.4996948242188,10.725454,10725.454 +35500,2025-03-11T10:42:40.852805-07:00,1001.4840087890625,10.727787,10727.787 +35501,2025-03-11T10:42:51.585805-07:00,1001.4832763671875,10.733,10733.0 +35502,2025-03-11T10:43:02.315564-07:00,1001.4769287109375,10.729759,10729.759 +35503,2025-03-11T10:43:13.038775-07:00,1001.47412109375,10.723211,10723.211 +35504,2025-03-11T10:43:23.768746-07:00,1001.4629516601562,10.729971,10729.971 +35505,2025-03-11T10:43:34.497063-07:00,1001.48486328125,10.728317,10728.317 +35506,2025-03-11T10:43:45.232752-07:00,1001.5053100585938,10.735689,10735.689 +35507,2025-03-11T10:43:55.954707-07:00,1001.49560546875,10.721955,10721.955 +35508,2025-03-11T10:44:06.686564-07:00,1001.479248046875,10.731857,10731.857 +35509,2025-03-11T10:44:17.417074-07:00,1001.4910278320312,10.73051,10730.51 +35510,2025-03-11T10:44:28.143594-07:00,1001.5028076171875,10.72652,10726.52 +35511,2025-03-11T10:44:38.869339-07:00,1001.4931030273438,10.725745,10725.745 +35512,2025-03-11T10:44:49.599740-07:00,1001.5062255859375,10.730401,10730.401 +35513,2025-03-11T10:45:00.323562-07:00,1001.4899291992188,10.723822,10723.822 +35514,2025-03-11T10:45:11.055438-07:00,1001.509765625,10.731876,10731.876 +35515,2025-03-11T10:45:21.784526-07:00,1001.5347900390625,10.729088,10729.088 +35516,2025-03-11T10:45:32.508563-07:00,1001.4989013671875,10.724037,10724.037 +35517,2025-03-11T10:45:43.233749-07:00,1001.5003051757812,10.725186,10725.186 +35518,2025-03-11T10:45:53.962714-07:00,1001.5187377929688,10.728965,10728.965 +35519,2025-03-11T10:46:04.693668-07:00,1001.4759521484375,10.730954,10730.954 +35520,2025-03-11T10:46:15.415588-07:00,1001.5054931640625,10.72192,10721.92 +35521,2025-03-11T10:46:26.143635-07:00,1001.5068969726562,10.728047,10728.047 +35522,2025-03-11T10:46:36.871150-07:00,1001.5120849609375,10.727515,10727.515 +35523,2025-03-11T10:46:47.599563-07:00,1001.4923706054688,10.728413,10728.413 +35524,2025-03-11T10:46:58.331556-07:00,1001.48046875,10.731993,10731.993 +35525,2025-03-11T10:47:09.065716-07:00,1001.52294921875,10.73416,10734.16 +35526,2025-03-11T10:47:19.790613-07:00,1001.49658203125,10.724897,10724.897 +35527,2025-03-11T10:47:30.515990-07:00,1001.485107421875,10.725377,10725.377 +35528,2025-03-11T10:47:41.249760-07:00,1001.485107421875,10.73377,10733.77 +35529,2025-03-11T10:47:51.974565-07:00,1001.4732666015625,10.724805,10724.805 +35530,2025-03-11T10:48:02.709701-07:00,1001.4631958007812,10.735136,10735.136 +35531,2025-03-11T10:48:13.440789-07:00,1001.4712524414062,10.731088,10731.088 +35532,2025-03-11T10:48:24.164636-07:00,1001.44482421875,10.723847,10723.847 +35533,2025-03-11T10:48:34.896968-07:00,1001.4823608398438,10.732332,10732.332 +35534,2025-03-11T10:48:45.628029-07:00,1001.4757690429688,10.731061,10731.061 +35535,2025-03-11T10:48:56.351564-07:00,1001.4854736328125,10.723535,10723.535 +35536,2025-03-11T10:49:07.089569-07:00,1001.498779296875,10.738005,10738.005 +35537,2025-03-11T10:49:17.814592-07:00,1001.5032958984375,10.725023,10725.023 +35538,2025-03-11T10:49:28.547588-07:00,1001.463623046875,10.732996,10732.996 +35539,2025-03-11T10:49:39.274739-07:00,1001.45703125,10.727151,10727.151 +35540,2025-03-11T10:49:50.009237-07:00,1001.4400024414062,10.734498,10734.498 +35541,2025-03-11T10:50:00.734564-07:00,1001.4629516601562,10.725327,10725.327 +35542,2025-03-11T10:50:11.472565-07:00,1001.46435546875,10.738001,10738.001 +35543,2025-03-11T10:50:22.199136-07:00,1001.4657592773438,10.726571,10726.571 +35544,2025-03-11T10:50:32.925565-07:00,1001.4807739257812,10.726429,10726.429 +35545,2025-03-11T10:50:43.661753-07:00,1001.4703369140625,10.736188,10736.188 +35546,2025-03-11T10:50:54.392782-07:00,1001.4721069335938,10.731029,10731.029 +35547,2025-03-11T10:51:05.126560-07:00,1001.5030517578125,10.733778,10733.778 +35548,2025-03-11T10:51:15.851562-07:00,1001.4749145507812,10.725002,10725.002 +35549,2025-03-11T10:51:26.584792-07:00,1001.4912719726562,10.73323,10733.23 +35550,2025-03-11T10:51:37.313561-07:00,1001.458251953125,10.728769,10728.769 +35551,2025-03-11T10:51:48.045997-07:00,1001.4759521484375,10.732436,10732.436 +35552,2025-03-11T10:51:58.775121-07:00,1001.5119018554688,10.729124,10729.124 +35553,2025-03-11T10:52:09.501564-07:00,1001.5003051757812,10.726443,10726.443 +35554,2025-03-11T10:52:20.242104-07:00,1001.5181274414062,10.74054,10740.54 +35555,2025-03-11T10:52:30.968760-07:00,1001.5181274414062,10.726656,10726.656 +35556,2025-03-11T10:52:41.695734-07:00,1001.4879150390625,10.726974,10726.974 +35557,2025-03-11T10:52:52.427821-07:00,1001.4945068359375,10.732087,10732.087 +35558,2025-03-11T10:53:03.161730-07:00,1001.5189208984375,10.733909,10733.909 +35559,2025-03-11T10:53:13.882563-07:00,1001.5167846679688,10.720833,10720.833 +35560,2025-03-11T10:53:24.615562-07:00,1001.49560546875,10.732999,10732.999 +35561,2025-03-11T10:53:35.364002-07:00,1001.5115356445312,10.74844,10748.44 +35562,2025-03-11T10:53:46.087275-07:00,1001.5345458984375,10.723273,10723.273 +35563,2025-03-11T10:53:56.826430-07:00,1001.4765014648438,10.739155,10739.155 +35564,2025-03-11T10:54:07.548740-07:00,1001.5046997070312,10.72231,10722.31 +35565,2025-03-11T10:54:18.276216-07:00,1001.4942016601562,10.727476,10727.476 +35566,2025-03-11T10:54:29.013217-07:00,1001.497314453125,10.737001,10737.001 +35567,2025-03-11T10:54:39.740305-07:00,1001.485595703125,10.727088,10727.088 +35568,2025-03-11T10:54:50.468454-07:00,1001.5018920898438,10.728149,10728.149 +35569,2025-03-11T10:55:01.192399-07:00,1001.4901733398438,10.723945,10723.945 +35570,2025-03-11T10:55:11.929214-07:00,1001.4849243164062,10.736815,10736.815 +35571,2025-03-11T10:55:22.660429-07:00,1001.4946899414062,10.731215,10731.215 +35572,2025-03-11T10:55:33.386384-07:00,1001.50439453125,10.725955,10725.955 +35573,2025-03-11T10:55:44.114217-07:00,1001.4939575195312,10.727833,10727.833 +35574,2025-03-11T10:55:54.845645-07:00,1001.4773559570312,10.731428,10731.428 +35575,2025-03-11T10:56:05.579400-07:00,1001.478759765625,10.733755,10733.755 +35576,2025-03-11T10:56:16.311216-07:00,1001.487060546875,10.731816,10731.816 +35577,2025-03-11T10:56:27.041488-07:00,1001.4539794921875,10.730272,10730.272 +35578,2025-03-11T10:56:37.766397-07:00,1001.469970703125,10.724909,10724.909 +35579,2025-03-11T10:56:48.499381-07:00,1001.4957885742188,10.732984,10732.984 +35580,2025-03-11T10:56:59.228489-07:00,1001.4807739257812,10.729108,10729.108 +35581,2025-03-11T10:57:09.966438-07:00,1001.4773559570312,10.737949,10737.949 +35582,2025-03-11T10:57:20.694216-07:00,1001.473876953125,10.727778,10727.778 +35583,2025-03-11T10:57:31.423213-07:00,1001.4745483398438,10.728997,10728.997 +35584,2025-03-11T10:57:42.146472-07:00,1001.4745483398438,10.723259,10723.259 +35585,2025-03-11T10:57:52.877217-07:00,1001.50341796875,10.730745,10730.745 +35586,2025-03-11T10:58:03.607404-07:00,1001.4784545898438,10.730187,10730.187 +35587,2025-03-11T10:58:14.336055-07:00,1001.4781494140625,10.728651,10728.651 +35588,2025-03-11T10:58:25.073417-07:00,1001.4891967773438,10.737362,10737.362 +35589,2025-03-11T10:58:35.805266-07:00,1001.488525390625,10.731849,10731.849 +35590,2025-03-11T10:58:46.530388-07:00,1001.5289306640625,10.725122,10725.122 +35591,2025-03-11T10:58:57.263996-07:00,1001.51220703125,10.733608,10733.608 +35592,2025-03-11T10:59:07.995498-07:00,1001.4968872070312,10.731502,10731.502 +35593,2025-03-11T10:59:18.724398-07:00,1001.5,10.7289,10728.9 +35594,2025-03-11T10:59:29.462251-07:00,1001.500732421875,10.737853,10737.853 +35595,2025-03-11T10:59:40.189296-07:00,1001.5052490234375,10.727045,10727.045 +35596,2025-03-11T10:59:50.920586-07:00,1001.517822265625,10.73129,10731.29 +35597,2025-03-11T11:00:01.660395-07:00,1001.5076293945312,10.739809,10739.809 +35598,2025-03-11T11:00:12.389217-07:00,1001.495849609375,10.728822,10728.822 +35599,2025-03-11T11:00:23.126258-07:00,1001.5150146484375,10.737041,10737.041 +35600,2025-03-11T11:00:33.854398-07:00,1001.4902954101562,10.72814,10728.14 +35601,2025-03-11T11:00:44.591210-07:00,1001.4863891601562,10.736812,10736.812 +35602,2025-03-11T11:00:55.328390-07:00,1001.5438232421875,10.73718,10737.18 +35603,2025-03-11T11:01:06.059288-07:00,1001.499267578125,10.730898,10730.898 +35604,2025-03-11T11:01:16.790398-07:00,1001.4595947265625,10.73111,10731.11 +35605,2025-03-11T11:01:27.514217-07:00,1001.505126953125,10.723819,10723.819 +35606,2025-03-11T11:01:38.249925-07:00,1001.4880981445312,10.735708,10735.708 +35607,2025-03-11T11:01:48.974214-07:00,1001.5097045898438,10.724289,10724.289 +35608,2025-03-11T11:01:59.705498-07:00,1001.4912719726562,10.731284,10731.284 +35609,2025-03-11T11:02:10.437255-07:00,1001.494384765625,10.731757,10731.757 +35610,2025-03-11T11:02:21.170316-07:00,1001.4759521484375,10.733061,10733.061 +35611,2025-03-11T11:02:31.905284-07:00,1001.5201416015625,10.734968,10734.968 +35612,2025-03-11T11:02:42.626422-07:00,1001.4950561523438,10.721138,10721.138 +35613,2025-03-11T11:02:53.362505-07:00,1001.4637451171875,10.736083,10736.083 +35614,2025-03-11T11:03:04.087370-07:00,1001.4915771484375,10.724865,10724.865 +35615,2025-03-11T11:03:14.823222-07:00,1001.5357666015625,10.735852,10735.852 +35616,2025-03-11T11:03:25.552483-07:00,1001.48779296875,10.729261,10729.261 +35617,2025-03-11T11:03:36.278733-07:00,1001.517333984375,10.72625,10726.25 +35618,2025-03-11T11:03:47.009228-07:00,1001.5236206054688,10.730495,10730.495 +35619,2025-03-11T11:03:57.745727-07:00,1001.4742431640625,10.736499,10736.499 +35620,2025-03-11T11:04:08.468255-07:00,1001.485595703125,10.722528,10722.528 +35621,2025-03-11T11:04:19.204432-07:00,1001.487060546875,10.736177,10736.177 +35622,2025-03-11T11:04:29.931263-07:00,1001.4967041015625,10.726831,10726.831 +35623,2025-03-11T11:04:40.666288-07:00,1001.4967041015625,10.735025,10735.025 +35624,2025-03-11T11:04:51.391639-07:00,1001.4636840820312,10.725351,10725.351 +35625,2025-03-11T11:05:02.121213-07:00,1001.4884643554688,10.729574,10729.574 +35626,2025-03-11T11:05:12.853215-07:00,1001.4981079101562,10.732002,10732.002 +35627,2025-03-11T11:05:23.586209-07:00,1001.5127563476562,10.732994,10732.994 +35628,2025-03-11T11:05:34.316391-07:00,1001.4862670898438,10.730182,10730.182 +35629,2025-03-11T11:05:45.049516-07:00,1001.492919921875,10.733125,10733.125 +35630,2025-03-11T11:05:55.775416-07:00,1001.4717407226562,10.7259,10725.9 +35631,2025-03-11T11:06:06.507215-07:00,1001.5078125,10.731799,10731.799 +35632,2025-03-11T11:06:17.236452-07:00,1001.5106201171875,10.729237,10729.237 +35633,2025-03-11T11:06:27.966248-07:00,1001.4960327148438,10.729796,10729.796 +35634,2025-03-11T11:06:38.695237-07:00,1001.497314453125,10.728989,10728.989 +35635,2025-03-11T11:06:49.426746-07:00,1001.4761962890625,10.731509,10731.509 +35636,2025-03-11T11:07:00.155445-07:00,1001.4921875,10.728699,10728.699 +35637,2025-03-11T11:07:10.881279-07:00,1001.5018920898438,10.725834,10725.834 +35638,2025-03-11T11:07:21.612428-07:00,1001.4886474609375,10.731149,10731.149 +35639,2025-03-11T11:07:32.336688-07:00,1001.4688110351562,10.72426,10724.26 +35640,2025-03-11T11:07:43.072216-07:00,1001.4768676757812,10.735528,10735.528 +35641,2025-03-11T11:07:53.797658-07:00,1001.4556274414062,10.725442,10725.442 +35642,2025-03-11T11:08:04.532435-07:00,1001.4490356445312,10.734777,10734.777 +35643,2025-03-11T11:08:15.258216-07:00,1001.4437255859375,10.725781,10725.781 +35644,2025-03-11T11:08:25.998312-07:00,1001.471923828125,10.740096,10740.096 +35645,2025-03-11T11:08:36.725418-07:00,1001.47998046875,10.727106,10727.106 +35646,2025-03-11T11:08:47.454215-07:00,1001.4454956054688,10.728797,10728.797 +35647,2025-03-11T11:08:58.190219-07:00,1001.4322509765625,10.736004,10736.004 +35648,2025-03-11T11:09:08.922537-07:00,1001.4255981445312,10.732318,10732.318 +35649,2025-03-11T11:09:19.648633-07:00,1001.3926391601562,10.726096,10726.096 +35650,2025-03-11T11:09:30.383279-07:00,1001.40576171875,10.734646,10734.646 +35651,2025-03-11T11:09:41.114215-07:00,1001.4071655273438,10.730936,10730.936 +35652,2025-03-11T11:09:51.849588-07:00,1001.413818359375,10.735373,10735.373 +35653,2025-03-11T11:10:02.572217-07:00,1001.40576171875,10.722629,10722.629 +35654,2025-03-11T11:10:13.304077-07:00,1001.400634765625,10.73186,10731.86 +35655,2025-03-11T11:10:24.034369-07:00,1001.37939453125,10.730292,10730.292 +35656,2025-03-11T11:10:34.760344-07:00,1001.4071655273438,10.725975,10725.975 +35657,2025-03-11T11:10:45.487415-07:00,1001.3953857421875,10.727071,10727.071 +35658,2025-03-11T11:10:56.225560-07:00,1001.3873291015625,10.738145,10738.145 +35659,2025-03-11T11:11:06.952411-07:00,1001.3904418945312,10.726851,10726.851 +35660,2025-03-11T11:11:17.687549-07:00,1001.368896484375,10.735138,10735.138 +35661,2025-03-11T11:11:28.409213-07:00,1001.3477172851562,10.721664,10721.664 +35662,2025-03-11T11:11:39.145287-07:00,1001.3507690429688,10.736074,10736.074 +35663,2025-03-11T11:11:49.884216-07:00,1001.3640747070312,10.738929,10738.929 +35664,2025-03-11T11:12:00.615748-07:00,1001.3588256835938,10.731532,10731.532 +35665,2025-03-11T11:12:11.343418-07:00,1001.3389892578125,10.72767,10727.67 +35666,2025-03-11T11:12:22.071400-07:00,1001.3258056640625,10.727982,10727.982 +35667,2025-03-11T11:12:32.810391-07:00,1001.3323364257812,10.738991,10738.991 +35668,2025-03-11T11:12:43.542214-07:00,1001.3309326171875,10.731823,10731.823 +35669,2025-03-11T11:12:54.273216-07:00,1001.3244018554688,10.731002,10731.002 +35670,2025-03-11T11:13:05.000614-07:00,1001.314697265625,10.727398,10727.398 +35671,2025-03-11T11:13:15.734240-07:00,1001.3178100585938,10.733626,10733.626 +35672,2025-03-11T11:13:26.470244-07:00,1001.3309326171875,10.736004,10736.004 +35673,2025-03-11T11:13:37.211211-07:00,1001.3178100585938,10.740967,10740.967 +35674,2025-03-11T11:13:47.936213-07:00,1001.305908203125,10.725002,10725.002 +35675,2025-03-11T11:13:58.670414-07:00,1001.3309326171875,10.734201,10734.201 +35676,2025-03-11T11:14:09.410215-07:00,1001.3289184570312,10.739801,10739.801 +35677,2025-03-11T11:14:20.143282-07:00,1001.3139038085938,10.733067,10733.067 +35678,2025-03-11T11:14:21.242199-07:00,1001.320556640625,1.098917,1098.917 +35679,2025-03-11T11:14:30.871246-07:00,1001.3289184570312,9.629047,9629.047 +35680,2025-03-11T11:14:41.609215-07:00,1001.322265625,10.737969,10737.969 +35681,2025-03-11T11:14:52.342215-07:00,1001.3236083984375,10.733,10733.0 +35682,2025-03-11T11:15:03.077106-07:00,1001.3184204101562,10.734891,10734.891 +35683,2025-03-11T11:15:13.809500-07:00,1001.326416015625,10.732394,10732.394 +35684,2025-03-11T11:15:24.534282-07:00,1001.326416015625,10.724782,10724.782 +35685,2025-03-11T11:15:35.272220-07:00,1001.2853393554688,10.737938,10737.938 +35686,2025-03-11T11:15:46.000566-07:00,1001.31494140625,10.728346,10728.346 +35687,2025-03-11T11:15:56.736383-07:00,1001.2933349609375,10.735817,10735.817 +35688,2025-03-11T11:16:07.465400-07:00,1001.3163452148438,10.729017,10729.017 +35689,2025-03-11T11:16:18.199382-07:00,1001.3295288085938,10.733982,10733.982 +35690,2025-03-11T11:16:28.927216-07:00,1001.3347778320312,10.727834,10727.834 +35691,2025-03-11T11:16:39.665234-07:00,1001.336181640625,10.738018,10738.018 +35692,2025-03-11T11:16:50.399233-07:00,1001.3295288085938,10.733999,10733.999 +35693,2025-03-11T11:17:01.121251-07:00,1001.31494140625,10.722018,10722.018 +35694,2025-03-11T11:17:11.855215-07:00,1001.3065795898438,10.733964,10733.964 +35695,2025-03-11T11:17:22.592391-07:00,1001.3392333984375,10.737176,10737.176 +35696,2025-03-11T11:17:33.327432-07:00,1001.3259887695312,10.735041,10735.041 +35697,2025-03-11T11:17:44.055852-07:00,1001.3096923828125,10.72842,10728.42 +35698,2025-03-11T11:17:54.782407-07:00,1001.3110961914062,10.726555,10726.555 +35699,2025-03-11T11:18:05.516528-07:00,1001.317626953125,10.734121,10734.121 +35700,2025-03-11T11:18:16.247215-07:00,1001.3031005859375,10.730687,10730.687 +35701,2025-03-11T11:18:26.974437-07:00,1001.3082885742188,10.727222,10727.222 +35702,2025-03-11T11:18:37.714422-07:00,1001.3082885742188,10.739985,10739.985 +35703,2025-03-11T11:18:48.440215-07:00,1001.326416015625,10.725793,10725.793 +35704,2025-03-11T11:18:59.174209-07:00,1001.31494140625,10.733994,10733.994 +35705,2025-03-11T11:19:09.904435-07:00,1001.321533203125,10.730226,10730.226 +35706,2025-03-11T11:19:20.642481-07:00,1001.31982421875,10.738046,10738.046 +35707,2025-03-11T11:19:31.366856-07:00,1001.3250122070312,10.724375,10724.375 +35708,2025-03-11T11:19:42.100995-07:00,1001.3396606445312,10.734139,10734.139 +35709,2025-03-11T11:19:52.833208-07:00,1001.3250122070312,10.732213,10732.213 +35710,2025-03-11T11:20:03.570216-07:00,1001.3184204101562,10.737008,10737.008 +35711,2025-03-11T11:20:14.302424-07:00,1001.3289184570312,10.732208,10732.208 +35712,2025-03-11T11:20:25.026304-07:00,1001.3515014648438,10.72388,10723.88 +35713,2025-03-11T11:20:35.762216-07:00,1001.3595581054688,10.735912,10735.912 +35714,2025-03-11T11:20:46.501213-07:00,1001.356689453125,10.738997,10738.997 +35715,2025-03-11T11:20:57.236401-07:00,1001.3521728515625,10.735188,10735.188 +35716,2025-03-11T11:21:07.970229-07:00,1001.34423828125,10.733828,10733.828 +35717,2025-03-11T11:21:18.693216-07:00,1001.3640747070312,10.722987,10722.987 +35718,2025-03-11T11:21:29.429515-07:00,1001.3244018554688,10.736299,10736.299 +35719,2025-03-11T11:21:40.168421-07:00,1001.3623657226562,10.738906,10738.906 +35720,2025-03-11T11:21:50.901429-07:00,1001.3359375,10.733008,10733.008 +35721,2025-03-11T11:22:01.634390-07:00,1001.3623657226562,10.732961,10732.961 +35722,2025-03-11T11:22:12.359389-07:00,1001.3477172851562,10.724999,10724.999 +35723,2025-03-11T11:22:23.102076-07:00,1001.3623657226562,10.742687,10742.687 +35724,2025-03-11T11:22:33.822290-07:00,1001.3264770507812,10.720214,10720.214 +35725,2025-03-11T11:22:44.552575-07:00,1001.3674926757812,10.730285,10730.285 +35726,2025-03-11T11:22:55.289236-07:00,1001.3379516601562,10.736661,10736.661 +35727,2025-03-11T11:23:06.021415-07:00,1001.3926391601562,10.732179,10732.179 +35728,2025-03-11T11:23:16.749437-07:00,1001.3661499023438,10.728022,10728.022 +35729,2025-03-11T11:23:27.483808-07:00,1001.3661499023438,10.734371,10734.371 +35730,2025-03-11T11:23:38.209450-07:00,1001.3661499023438,10.725642,10725.642 +35731,2025-03-11T11:23:48.943211-07:00,1001.37939453125,10.733761,10733.761 +35732,2025-03-11T11:23:59.677617-07:00,1001.385986328125,10.734406,10734.406 +35733,2025-03-11T11:24:10.403247-07:00,1001.385986328125,10.72563,10725.63 +35734,2025-03-11T11:24:21.139305-07:00,1001.372802734375,10.736058,10736.058 +35735,2025-03-11T11:24:31.870397-07:00,1001.385986328125,10.731092,10731.092 +35736,2025-03-11T11:24:42.599293-07:00,1001.40576171875,10.728896,10728.896 +35737,2025-03-11T11:24:53.334518-07:00,1001.4468994140625,10.735225,10735.225 +35738,2025-03-11T11:25:04.062509-07:00,1001.3992309570312,10.727991,10727.991 +35739,2025-03-11T11:25:14.799550-07:00,1001.4152221679688,10.737041,10737.041 +35740,2025-03-11T11:25:25.525506-07:00,1001.428466796875,10.725956,10725.956 +35741,2025-03-11T11:25:36.264405-07:00,1001.4204711914062,10.738899,10738.899 +35742,2025-03-11T11:25:46.993635-07:00,1001.3807983398438,10.72923,10729.23 +35743,2025-03-11T11:25:57.718403-07:00,1001.3674926757812,10.724768,10724.768 +35744,2025-03-11T11:26:08.451383-07:00,1001.3755493164062,10.73298,10732.98 +35745,2025-03-11T11:26:19.188747-07:00,1001.3822021484375,10.737364,10737.364 +35746,2025-03-11T11:26:29.921213-07:00,1001.4152221679688,10.732466,10732.466 +35747,2025-03-11T11:26:40.648395-07:00,1001.4152221679688,10.727182,10727.182 +35748,2025-03-11T11:26:51.384399-07:00,1001.37939453125,10.736004,10736.004 +35749,2025-03-11T11:27:02.118370-07:00,1001.4336547851562,10.733971,10733.971 +35750,2025-03-11T11:27:12.841430-07:00,1001.4107666015625,10.72306,10723.06 +35751,2025-03-11T11:27:23.576385-07:00,1001.3873291015625,10.734955,10734.955 +35752,2025-03-11T11:27:34.312651-07:00,1001.413818359375,10.736266,10736.266 +35753,2025-03-11T11:27:45.040212-07:00,1001.3895263671875,10.727561,10727.561 +35754,2025-03-11T11:27:55.772079-07:00,1001.404052734375,10.731867,10731.867 +35755,2025-03-11T11:28:06.497454-07:00,1001.4071655273438,10.725375,10725.375 +35756,2025-03-11T11:28:17.223399-07:00,1001.4190673828125,10.725945,10725.945 +35757,2025-03-11T11:28:27.964231-07:00,1001.404052734375,10.740832,10740.832 +35758,2025-03-11T11:28:38.686420-07:00,1001.3926391601562,10.722189,10722.189 +35759,2025-03-11T11:28:49.422213-07:00,1001.3644409179688,10.735793,10735.793 +35760,2025-03-11T11:29:00.144674-07:00,1001.38427734375,10.722461,10722.461 +35761,2025-03-11T11:29:10.878214-07:00,1001.385986328125,10.73354,10733.54 +35762,2025-03-11T11:29:21.613322-07:00,1001.3992309570312,10.735108,10735.108 +35763,2025-03-11T11:29:32.334374-07:00,1001.385986328125,10.721052,10721.052 +35764,2025-03-11T11:29:43.065214-07:00,1001.3926391601562,10.73084,10730.84 +35765,2025-03-11T11:29:53.796644-07:00,1001.3975219726562,10.73143,10731.43 +35766,2025-03-11T11:30:04.515413-07:00,1001.4159545898438,10.718769,10718.769 +35767,2025-03-11T11:30:15.249430-07:00,1001.42919921875,10.734017,10734.017 +35768,2025-03-11T11:30:25.975423-07:00,1001.4159545898438,10.725993,10725.993 +35769,2025-03-11T11:30:36.706214-07:00,1001.3814697265625,10.730791,10730.791 +35770,2025-03-11T11:30:47.435238-07:00,1001.422607421875,10.729024,10729.024 +35771,2025-03-11T11:30:58.153213-07:00,1001.3961181640625,10.717975,10717.975 +35772,2025-03-11T11:31:08.887411-07:00,1001.4306030273438,10.734198,10734.198 +35773,2025-03-11T11:31:19.612383-07:00,1001.435791015625,10.724972,10724.972 +35774,2025-03-11T11:31:30.338217-07:00,1001.4437255859375,10.725834,10725.834 +35775,2025-03-11T11:31:41.067626-07:00,1001.4306030273438,10.729409,10729.409 +35776,2025-03-11T11:31:51.802633-07:00,1001.4322509765625,10.735007,10735.007 +35777,2025-03-11T11:32:02.521216-07:00,1001.4389038085938,10.718583,10718.583 +35778,2025-03-11T11:32:13.249380-07:00,1001.47998046875,10.728164,10728.164 +35779,2025-03-11T11:32:23.976252-07:00,1001.4124755859375,10.726872,10726.872 +35780,2025-03-11T11:32:34.701479-07:00,1001.4124755859375,10.725227,10725.227 +35781,2025-03-11T11:32:45.437604-07:00,1001.4124755859375,10.736125,10736.125 +35782,2025-03-11T11:32:56.153282-07:00,1001.427001953125,10.715678,10715.678 +35783,2025-03-11T11:33:06.886245-07:00,1001.436767578125,10.732963,10732.963 +35784,2025-03-11T11:33:17.613216-07:00,1001.427001953125,10.726971,10726.971 +35785,2025-03-11T11:33:28.345214-07:00,1001.421875,10.731998,10731.998 +35786,2025-03-11T11:33:39.070390-07:00,1001.40576171875,10.725176,10725.176 +35787,2025-03-11T11:33:49.802270-07:00,1001.427001953125,10.73188,10731.88 +35788,2025-03-11T11:34:00.530210-07:00,1001.4534912109375,10.72794,10727.94 +35789,2025-03-11T11:34:11.255238-07:00,1001.4389038085938,10.725028,10725.028 +35790,2025-03-11T11:34:21.982264-07:00,1001.4306030273438,10.727026,10727.026 +35791,2025-03-11T11:34:32.715398-07:00,1001.407958984375,10.733134,10733.134 +35792,2025-03-11T11:34:43.434213-07:00,1001.4445190429688,10.718815,10718.815 +35793,2025-03-11T11:34:54.171417-07:00,1001.4334106445312,10.737204,10737.204 +35794,2025-03-11T11:35:04.899394-07:00,1001.4508056640625,10.727977,10727.977 +35795,2025-03-11T11:35:15.623417-07:00,1001.4254760742188,10.724023,10724.023 +35796,2025-03-11T11:35:26.360419-07:00,1001.4195556640625,10.737002,10737.002 +35797,2025-03-11T11:35:37.089417-07:00,1001.4481201171875,10.728998,10728.998 +35798,2025-03-11T11:35:47.816212-07:00,1001.4456787109375,10.726795,10726.795 +35799,2025-03-11T11:35:58.546430-07:00,1001.4447021484375,10.730218,10730.218 +35800,2025-03-11T11:36:09.269968-07:00,1001.470458984375,10.723538,10723.538 +35801,2025-03-11T11:36:19.994235-07:00,1001.454833984375,10.724267,10724.267 +35802,2025-03-11T11:36:30.719467-07:00,1001.44580078125,10.725232,10725.232 +35803,2025-03-11T11:36:41.444419-07:00,1001.4611206054688,10.724952,10724.952 +35804,2025-03-11T11:36:52.175216-07:00,1001.4683837890625,10.730797,10730.797 +35805,2025-03-11T11:37:02.893213-07:00,1001.460693359375,10.717997,10717.997 +35806,2025-03-11T11:37:13.621619-07:00,1001.46142578125,10.728406,10728.406 +35807,2025-03-11T11:37:23.970528-07:00,1001.4472045898438,10.348909,10348.909 +35808,2025-03-11T11:37:24.350714-07:00,1001.44580078125,0.380186,380.186 +35809,2025-03-11T11:37:35.073215-07:00,1001.4185791015625,10.722501,10722.501 +35810,2025-03-11T11:37:45.793399-07:00,1001.4338989257812,10.720184,10720.184 +35811,2025-03-11T11:37:56.518227-07:00,1001.4227905273438,10.724828,10724.828 +35812,2025-03-11T11:38:07.247400-07:00,1001.4182739257812,10.729173,10729.173 +35813,2025-03-11T11:38:17.974226-07:00,1001.4216918945312,10.726826,10726.826 +35814,2025-03-11T11:38:28.700208-07:00,1001.430419921875,10.725982,10725.982 +35815,2025-03-11T11:38:39.437405-07:00,1001.4060668945312,10.737197,10737.197 +35816,2025-03-11T11:38:50.155435-07:00,1001.3948974609375,10.71803,10718.03 +35817,2025-03-11T11:39:00.887450-07:00,1001.42138671875,10.732015,10732.015 +35818,2025-03-11T11:39:11.619354-07:00,1001.4380493164062,10.731904,10731.904 +35819,2025-03-11T11:39:22.343427-07:00,1001.4429931640625,10.724073,10724.073 +35820,2025-03-11T11:39:33.074483-07:00,1001.4467163085938,10.731056,10731.056 +35821,2025-03-11T11:39:43.799332-07:00,1001.443603515625,10.724849,10724.849 +35822,2025-03-11T11:39:54.528700-07:00,1001.456787109375,10.729368,10729.368 +35823,2025-03-11T11:40:05.256229-07:00,1001.4324951171875,10.727529,10727.529 +35824,2025-03-11T11:40:15.983270-07:00,1001.4324951171875,10.727041,10727.041 +35825,2025-03-11T11:40:26.710605-07:00,1001.4442138671875,10.727335,10727.335 +35826,2025-03-11T11:40:37.435376-07:00,1001.4230346679688,10.724771,10724.771 +35827,2025-03-11T11:40:48.166238-07:00,1001.4411010742188,10.730862,10730.862 +35828,2025-03-11T11:40:58.900385-07:00,1001.427978515625,10.734147,10734.147 +35829,2025-03-11T11:41:09.620216-07:00,1001.4251708984375,10.719831,10719.831 +35830,2025-03-11T11:41:20.348299-07:00,1001.4529418945312,10.728083,10728.083 +35831,2025-03-11T11:41:31.081258-07:00,1001.4317016601562,10.732959,10732.959 +35832,2025-03-11T11:41:41.804278-07:00,1001.411865234375,10.72302,10723.02 +35833,2025-03-11T11:41:52.533539-07:00,1001.439697265625,10.729261,10729.261 +35834,2025-03-11T11:42:03.263214-07:00,1001.4185180664062,10.729675,10729.675 +35835,2025-03-11T11:42:13.987251-07:00,1001.4132690429688,10.724037,10724.037 +35836,2025-03-11T11:42:24.715241-07:00,1001.454345703125,10.72799,10727.99 +35837,2025-03-11T11:42:35.447218-07:00,1001.436279296875,10.731977,10731.977 +35838,2025-03-11T11:42:46.173016-07:00,1001.478759765625,10.725798,10725.798 +35839,2025-03-11T11:42:56.901211-07:00,1001.4589233398438,10.728195,10728.195 +35840,2025-03-11T11:43:07.627214-07:00,1001.4310913085938,10.726003,10726.003 +35841,2025-03-11T11:43:18.360384-07:00,1001.4473266601562,10.73317,10733.17 +35842,2025-03-11T11:43:29.093452-07:00,1001.4620361328125,10.733068,10733.068 +35843,2025-03-11T11:43:39.822446-07:00,1001.43701171875,10.728994,10728.994 +35844,2025-03-11T11:43:50.541286-07:00,1001.4268798828125,10.71884,10718.84 +35845,2025-03-11T11:44:01.267217-07:00,1001.4547119140625,10.725931,10725.931 +35846,2025-03-11T11:44:12.003211-07:00,1001.4415893554688,10.735994,10735.994 +35847,2025-03-11T11:44:22.732287-07:00,1001.4429931640625,10.729076,10729.076 +35848,2025-03-11T11:44:33.455287-07:00,1001.4790649414062,10.723,10723.0 +35849,2025-03-11T11:44:44.181402-07:00,1001.42626953125,10.726115,10726.115 +35850,2025-03-11T11:44:54.907216-07:00,1001.462646484375,10.725814,10725.814 +35851,2025-03-11T11:45:05.640214-07:00,1001.4177856445312,10.732998,10732.998 +35852,2025-03-11T11:45:16.366250-07:00,1001.4554443359375,10.726036,10726.036 +35853,2025-03-11T11:45:27.098420-07:00,1001.475341796875,10.73217,10732.17 +35854,2025-03-11T11:45:37.820412-07:00,1001.469970703125,10.721992,10721.992 +35855,2025-03-11T11:45:48.545283-07:00,1001.453369140625,10.724871,10724.871 +35856,2025-03-11T11:45:59.275461-07:00,1001.4696655273438,10.730178,10730.178 +35857,2025-03-11T11:46:10.001779-07:00,1001.4578857421875,10.726318,10726.318 +35858,2025-03-11T11:46:20.727212-07:00,1001.4461059570312,10.725433,10725.433 +35859,2025-03-11T11:46:31.458406-07:00,1001.4425659179688,10.731194,10731.194 +35860,2025-03-11T11:46:42.182213-07:00,1001.438720703125,10.723807,10723.807 +35861,2025-03-11T11:46:52.907218-07:00,1001.4506225585938,10.725005,10725.005 +35862,2025-03-11T11:47:03.636241-07:00,1001.463134765625,10.729023,10729.023 +35863,2025-03-11T11:47:14.364293-07:00,1001.4846801757812,10.728052,10728.052 +35864,2025-03-11T11:47:25.093618-07:00,1001.4464111328125,10.729325,10729.325 +35865,2025-03-11T11:47:35.813210-07:00,1001.4443969726562,10.719592,10719.592 +35866,2025-03-11T11:47:46.544242-07:00,1001.4324951171875,10.731032,10731.032 +35867,2025-03-11T11:47:57.281404-07:00,1001.4489135742188,10.737162,10737.162 +35868,2025-03-11T11:48:08.011281-07:00,1001.4930419921875,10.729877,10729.877 +35869,2025-03-11T11:48:18.739439-07:00,1001.474609375,10.728158,10728.158 +35870,2025-03-11T11:48:29.473418-07:00,1001.4693603515625,10.733979,10733.979 +35871,2025-03-11T11:48:40.203218-07:00,1001.4710693359375,10.7298,10729.8 +35872,2025-03-11T11:48:50.926888-07:00,1001.4756469726562,10.72367,10723.67 +35873,2025-03-11T11:49:01.654660-07:00,1001.4756469726562,10.727772,10727.772 +35874,2025-03-11T11:49:12.385383-07:00,1001.5,10.730723,10730.723 +35875,2025-03-11T11:49:23.114424-07:00,1001.4454956054688,10.729041,10729.041 +35876,2025-03-11T11:49:33.841281-07:00,1001.47119140625,10.726857,10726.857 +35877,2025-03-11T11:49:44.566450-07:00,1001.486083984375,10.725169,10725.169 +35878,2025-03-11T11:49:55.289270-07:00,1001.4662475585938,10.72282,10722.82 +35879,2025-03-11T11:50:06.022217-07:00,1001.4558715820312,10.732947,10732.947 +35880,2025-03-11T11:50:16.743387-07:00,1001.4951782226562,10.72117,10721.17 +35881,2025-03-11T11:50:27.478213-07:00,1001.49658203125,10.734826,10734.826 +35882,2025-03-11T11:50:38.200211-07:00,1001.4798583984375,10.721998,10721.998 +35883,2025-03-11T11:50:48.935695-07:00,1001.46142578125,10.735484,10735.484 +35884,2025-03-11T11:50:59.659285-07:00,1001.4575805664062,10.72359,10723.59 +35885,2025-03-11T11:51:10.389407-07:00,1001.4805297851562,10.730122,10730.122 +35886,2025-03-11T11:51:21.122390-07:00,1001.4489135742188,10.732983,10732.983 +35887,2025-03-11T11:51:31.852213-07:00,1001.4600219726562,10.729823,10729.823 +35888,2025-03-11T11:51:42.580170-07:00,1001.4600219726562,10.727957,10727.957 +35889,2025-03-11T11:51:53.306241-07:00,1001.4579467773438,10.726071,10726.071 +35890,2025-03-11T11:52:04.041216-07:00,1001.4888916015625,10.734975,10734.975 +35891,2025-03-11T11:52:14.768641-07:00,1001.46240234375,10.727425,10727.425 +35892,2025-03-11T11:52:25.505672-07:00,1001.450927734375,10.737031,10737.031 +35893,2025-03-11T11:52:36.231880-07:00,1001.4404907226562,10.726208,10726.208 +35894,2025-03-11T11:52:46.964250-07:00,1001.435302734375,10.73237,10732.37 +35895,2025-03-11T11:52:57.703397-07:00,1001.4662475585938,10.739147,10739.147 +35896,2025-03-11T11:53:08.437983-07:00,1001.413330078125,10.734586,10734.586 +35897,2025-03-11T11:53:19.167768-07:00,1001.4495239257812,10.729785,10729.785 +35898,2025-03-11T11:53:29.899859-07:00,1001.4393920898438,10.732091,10732.091 +35899,2025-03-11T11:53:40.659795-07:00,1001.4356079101562,10.759936,10759.936 +35900,2025-03-11T11:53:51.391777-07:00,1001.4356079101562,10.731982,10731.982 +35901,2025-03-11T11:54:02.118503-07:00,1001.438720703125,10.726726,10726.726 +35902,2025-03-11T11:54:12.844525-07:00,1001.41357421875,10.726022,10726.022 +35903,2025-03-11T11:54:23.579733-07:00,1001.4282836914062,10.735208,10735.208 +35904,2025-03-11T11:54:34.305715-07:00,1001.431396484375,10.725982,10725.982 +35905,2025-03-11T11:54:45.039521-07:00,1001.4657592773438,10.733806,10733.806 +35906,2025-03-11T11:54:55.777503-07:00,1001.4685668945312,10.737982,10737.982 +35907,2025-03-11T11:55:06.510032-07:00,1001.4385986328125,10.732529,10732.529 +35908,2025-03-11T11:55:17.241693-07:00,1001.46435546875,10.731661,10731.661 +35909,2025-03-11T11:55:27.971499-07:00,1001.421142578125,10.729806,10729.806 +35910,2025-03-11T11:55:38.703703-07:00,1001.46533203125,10.732204,10732.204 +35911,2025-03-11T11:55:49.440152-07:00,1001.423583984375,10.736449,10736.449 +35912,2025-03-11T11:56:00.160509-07:00,1001.4492797851562,10.720357,10720.357 +35913,2025-03-11T11:56:10.893712-07:00,1001.4684448242188,10.733203,10733.203 +35914,2025-03-11T11:56:21.630538-07:00,1001.4398193359375,10.736826,10736.826 +35915,2025-03-11T11:56:32.367879-07:00,1001.4707641601562,10.737341,10737.341 +35916,2025-03-11T11:56:43.099566-07:00,1001.4488525390625,10.731687,10731.687 +35917,2025-03-11T11:56:53.832573-07:00,1001.4759521484375,10.733007,10733.007 +35918,2025-03-11T11:57:04.566763-07:00,1001.4539794921875,10.73419,10734.19 +35919,2025-03-11T11:57:15.296664-07:00,1001.4570922851562,10.729901,10729.901 +35920,2025-03-11T11:57:26.033142-07:00,1001.4762573242188,10.736478,10736.478 +35921,2025-03-11T11:57:36.766562-07:00,1001.4793701171875,10.73342,10733.42 +35922,2025-03-11T11:57:47.506713-07:00,1001.5050048828125,10.740151,10740.151 +35923,2025-03-11T11:57:58.244691-07:00,1001.509521484375,10.737978,10737.978 +35924,2025-03-11T11:58:08.979532-07:00,1001.4844360351562,10.734841,10734.841 +35925,2025-03-11T11:58:19.712504-07:00,1001.4906005859375,10.732972,10732.972 +35926,2025-03-11T11:58:30.444704-07:00,1001.5265502929688,10.7322,10732.2 +35927,2025-03-11T11:58:41.170854-07:00,1001.5045166015625,10.72615,10726.15 +35928,2025-03-11T11:58:51.906502-07:00,1001.536865234375,10.735648,10735.648 +35929,2025-03-11T11:59:02.640502-07:00,1001.50244140625,10.734,10734.0 +35930,2025-03-11T11:59:13.374712-07:00,1001.514892578125,10.73421,10734.21 +35931,2025-03-11T11:59:24.108503-07:00,1001.5364990234375,10.733791,10733.791 +35932,2025-03-11T11:59:34.839879-07:00,1001.5392456054688,10.731376,10731.376 +35933,2025-03-11T11:59:45.573743-07:00,1001.5357666015625,10.733864,10733.864 +35934,2025-03-11T11:59:56.307501-07:00,1001.55029296875,10.733758,10733.758 +35935,2025-03-11T12:00:07.034497-07:00,1001.5402221679688,10.726996,10726.996 +35936,2025-03-11T12:00:17.769510-07:00,1001.5496215820312,10.735013,10735.013 +35937,2025-03-11T12:00:28.500107-07:00,1001.5477905273438,10.730597,10730.597 +35938,2025-03-11T12:00:39.233500-07:00,1001.5530395507812,10.733393,10733.393 +35939,2025-03-11T12:00:49.963756-07:00,1001.5362548828125,10.730256,10730.256 +35940,2025-03-11T12:01:00.693796-07:00,1001.5588989257812,10.73004,10730.04 +35941,2025-03-11T12:01:11.422499-07:00,1001.5884399414062,10.728703,10728.703 +35942,2025-03-11T12:01:22.152716-07:00,1001.5606079101562,10.730217,10730.217 +35943,2025-03-11T12:01:32.889776-07:00,1001.57666015625,10.73706,10737.06 +35944,2025-03-11T12:01:43.616527-07:00,1001.5752563476562,10.726751,10726.751 +35945,2025-03-11T12:01:44.614521-07:00,1001.57666015625,0.997994,997.994 +35946,2025-03-11T12:01:54.354559-07:00,1001.5634155273438,9.740038,9740.038 +35947,2025-03-11T12:02:05.087157-07:00,1001.5634155273438,10.732598,10732.598 +35948,2025-03-11T12:02:15.817500-07:00,1001.5532836914062,10.730343,10730.343 +35949,2025-03-11T12:02:26.551502-07:00,1001.559814453125,10.734002,10734.002 +35950,2025-03-11T12:02:37.275724-07:00,1001.5664672851562,10.724222,10724.222 +35951,2025-03-11T12:02:48.009712-07:00,1001.5584106445312,10.733988,10733.988 +35952,2025-03-11T12:02:58.740505-07:00,1001.5811157226562,10.730793,10730.793 +35953,2025-03-11T12:03:09.471702-07:00,1001.5995483398438,10.731197,10731.197 +35954,2025-03-11T12:03:20.200500-07:00,1001.5943603515625,10.728798,10728.798 +35955,2025-03-11T12:03:30.929864-07:00,1001.5907592773438,10.729364,10729.364 +35956,2025-03-11T12:03:41.665527-07:00,1001.6023559570312,10.735663,10735.663 +35957,2025-03-11T12:03:52.401892-07:00,1001.6253051757812,10.736365,10736.365 +35958,2025-03-11T12:04:03.126676-07:00,1001.597412109375,10.724784,10724.784 +35959,2025-03-11T12:04:13.853935-07:00,1001.6304931640625,10.727259,10727.259 +35960,2025-03-11T12:04:24.588692-07:00,1001.6304931640625,10.734757,10734.757 +35961,2025-03-11T12:04:35.319500-07:00,1001.612060546875,10.730808,10730.808 +35962,2025-03-11T12:04:46.055710-07:00,1001.610595703125,10.73621,10736.21 +35963,2025-03-11T12:04:56.784684-07:00,1001.610595703125,10.728974,10728.974 +35964,2025-03-11T12:05:07.514533-07:00,1001.6318969726562,10.729849,10729.849 +35965,2025-03-11T12:05:18.246503-07:00,1001.6531372070312,10.73197,10731.97 +35966,2025-03-11T12:05:28.977680-07:00,1001.6253051757812,10.731177,10731.177 +35967,2025-03-11T12:05:39.712499-07:00,1001.6482543945312,10.734819,10734.819 +35968,2025-03-11T12:05:50.438502-07:00,1001.612060546875,10.726003,10726.003 +35969,2025-03-11T12:06:01.177791-07:00,1001.6318969726562,10.739289,10739.289 +35970,2025-03-11T12:06:11.906523-07:00,1001.63330078125,10.728732,10728.732 +35971,2025-03-11T12:06:22.640502-07:00,1001.6200561523438,10.733979,10733.979 +35972,2025-03-11T12:06:33.368712-07:00,1001.639892578125,10.72821,10728.21 +35973,2025-03-11T12:06:44.103320-07:00,1001.6548461914062,10.734608,10734.608 +35974,2025-03-11T12:06:54.837707-07:00,1001.6151733398438,10.734387,10734.387 +35975,2025-03-11T12:07:05.573503-07:00,1001.6297607421875,10.735796,10735.796 +35976,2025-03-11T12:07:16.296895-07:00,1001.6165771484375,10.723392,10723.392 +35977,2025-03-11T12:07:27.031495-07:00,1001.6378173828125,10.7346,10734.6 +35978,2025-03-11T12:07:37.767790-07:00,1001.6429443359375,10.736295,10736.295 +35979,2025-03-11T12:07:48.498680-07:00,1001.6085815429688,10.73089,10730.89 +35980,2025-03-11T12:07:59.225499-07:00,1001.5953369140625,10.726819,10726.819 +35981,2025-03-11T12:08:09.958534-07:00,1001.6200561523438,10.733035,10733.035 +35982,2025-03-11T12:08:20.697499-07:00,1001.5935668945312,10.738965,10738.965 +35983,2025-03-11T12:08:31.423200-07:00,1001.6482543945312,10.725701,10725.701 +35984,2025-03-11T12:08:42.161531-07:00,1001.6531372070312,10.738331,10738.331 +35985,2025-03-11T12:08:52.896575-07:00,1001.6465454101562,10.735044,10735.044 +35986,2025-03-11T12:09:03.624611-07:00,1001.6583862304688,10.728036,10728.036 +35987,2025-03-11T12:09:14.356865-07:00,1001.67822265625,10.732254,10732.254 +35988,2025-03-11T12:09:25.080569-07:00,1001.6715698242188,10.723704,10723.704 +35989,2025-03-11T12:09:35.812685-07:00,1001.6583862304688,10.732116,10732.116 +35990,2025-03-11T12:09:46.545496-07:00,1001.63720703125,10.732811,10732.811 +35991,2025-03-11T12:09:57.267702-07:00,1001.686279296875,10.722206,10722.206 +35992,2025-03-11T12:10:08.004932-07:00,1001.635498046875,10.73723,10737.23 +35993,2025-03-11T12:10:18.731616-07:00,1001.6517333984375,10.726684,10726.684 +35994,2025-03-11T12:10:29.461532-07:00,1001.6503295898438,10.729916,10729.916 +35995,2025-03-11T12:10:40.198675-07:00,1001.6834106445312,10.737143,10737.143 +35996,2025-03-11T12:10:50.926703-07:00,1001.684814453125,10.728028,10728.028 +35997,2025-03-11T12:11:01.652662-07:00,1001.6834106445312,10.725959,10725.959 +35998,2025-03-11T12:11:12.387606-07:00,1001.6796264648438,10.734944,10734.944 +35999,2025-03-11T12:11:23.114502-07:00,1001.6900634765625,10.726896,10726.896 +36000,2025-03-11T12:11:33.851504-07:00,1001.6928100585938,10.737002,10737.002 +36001,2025-03-11T12:11:44.577713-07:00,1001.7341918945312,10.726209,10726.209 +36002,2025-03-11T12:11:55.318260-07:00,1001.7033081054688,10.740547,10740.547 +36003,2025-03-11T12:12:06.048762-07:00,1001.7047119140625,10.730502,10730.502 +36004,2025-03-11T12:12:16.779905-07:00,1001.6981201171875,10.731143,10731.143 +36005,2025-03-11T12:12:27.516695-07:00,1001.716552734375,10.73679,10736.79 +36006,2025-03-11T12:12:38.244503-07:00,1001.67822265625,10.727808,10727.808 +36007,2025-03-11T12:12:48.980575-07:00,1001.7112426757812,10.736072,10736.072 +36008,2025-03-11T12:12:59.707667-07:00,1001.7033081054688,10.727092,10727.092 +36009,2025-03-11T12:13:10.435714-07:00,1001.67822265625,10.728047,10728.047 +36010,2025-03-11T12:13:21.169560-07:00,1001.6981201171875,10.733846,10733.846 +36011,2025-03-11T12:13:31.898667-07:00,1001.6751708984375,10.729107,10729.107 +36012,2025-03-11T12:13:42.634499-07:00,1001.7033081054688,10.735832,10735.832 +36013,2025-03-11T12:13:53.367644-07:00,1001.6817016601562,10.733145,10733.145 +36014,2025-03-11T12:14:04.095512-07:00,1001.6715698242188,10.727868,10727.868 +36015,2025-03-11T12:14:14.826584-07:00,1001.684814453125,10.731072,10731.072 +36016,2025-03-11T12:14:25.557734-07:00,1001.6570434570312,10.73115,10731.15 +36017,2025-03-11T12:14:36.286116-07:00,1001.6715698242188,10.728382,10728.382 +36018,2025-03-11T12:14:47.023980-07:00,1001.6583862304688,10.737864,10737.864 +36019,2025-03-11T12:14:57.753608-07:00,1001.6715698242188,10.729628,10729.628 +36020,2025-03-11T12:15:08.479499-07:00,1001.6583862304688,10.725891,10725.891 +36021,2025-03-11T12:15:19.215270-07:00,1001.665771484375,10.735771,10735.771 +36022,2025-03-11T12:15:29.945504-07:00,1001.6869506835938,10.730234,10730.234 +36023,2025-03-11T12:15:40.667584-07:00,1001.7120361328125,10.72208,10722.08 +36024,2025-03-11T12:15:51.404794-07:00,1001.6842041015625,10.73721,10737.21 +36025,2025-03-11T12:16:02.128502-07:00,1001.6626586914062,10.723708,10723.708 +36026,2025-03-11T12:16:12.864495-07:00,1001.6824951171875,10.735993,10735.993 +36027,2025-03-11T12:16:23.598682-07:00,1001.669189453125,10.734187,10734.187 +36028,2025-03-11T12:16:34.328497-07:00,1001.6890869140625,10.729815,10729.815 +36029,2025-03-11T12:16:45.064577-07:00,1001.674560546875,10.73608,10736.08 +36030,2025-03-11T12:16:55.796004-07:00,1001.6598510742188,10.731427,10731.427 +36031,2025-03-11T12:17:06.517531-07:00,1001.6598510742188,10.721527,10721.527 +36032,2025-03-11T12:17:17.252530-07:00,1001.6546630859375,10.734999,10734.999 +36033,2025-03-11T12:17:27.980391-07:00,1001.6758422851562,10.727861,10727.861 +36034,2025-03-11T12:17:38.706502-07:00,1001.6546630859375,10.726111,10726.111 +36035,2025-03-11T12:17:49.435680-07:00,1001.65771484375,10.729178,10729.178 +36036,2025-03-11T12:18:00.167600-07:00,1001.6612548828125,10.73192,10731.92 +36037,2025-03-11T12:18:10.889502-07:00,1001.669189453125,10.721902,10721.902 +36038,2025-03-11T12:18:21.618681-07:00,1001.6709594726562,10.729179,10729.179 +36039,2025-03-11T12:18:32.356752-07:00,1001.6709594726562,10.738071,10738.071 +36040,2025-03-11T12:18:43.081882-07:00,1001.669189453125,10.72513,10725.13 +36041,2025-03-11T12:18:53.810664-07:00,1001.6842041015625,10.728782,10728.782 +36042,2025-03-11T12:19:04.541201-07:00,1001.64794921875,10.730537,10730.537 +36043,2025-03-11T12:19:15.277495-07:00,1001.64794921875,10.736294,10736.294 +36044,2025-03-11T12:19:25.998403-07:00,1001.65771484375,10.720908,10720.908 +36045,2025-03-11T12:19:36.735499-07:00,1001.669189453125,10.737096,10737.096 +36046,2025-03-11T12:19:47.457697-07:00,1001.6824951171875,10.722198,10722.198 +36047,2025-03-11T12:19:58.189044-07:00,1001.7142333984375,10.731347,10731.347 +36048,2025-03-11T12:20:08.922562-07:00,1001.7106323242188,10.733518,10733.518 +36049,2025-03-11T12:20:19.649667-07:00,1001.7142333984375,10.727105,10727.105 +36050,2025-03-11T12:20:30.387708-07:00,1001.7089233398438,10.738041,10738.041 +36051,2025-03-11T12:20:41.109503-07:00,1001.7089233398438,10.721795,10721.795 +36052,2025-03-11T12:20:51.836582-07:00,1001.6796875,10.727079,10727.079 +36053,2025-03-11T12:21:02.567499-07:00,1001.7207641601562,10.730917,10730.917 +36054,2025-03-11T12:21:13.305703-07:00,1001.7061767578125,10.738204,10738.204 +36055,2025-03-11T12:21:24.039719-07:00,1001.6846313476562,10.734016,10734.016 +36056,2025-03-11T12:21:34.760534-07:00,1001.6929931640625,10.720815,10720.815 +36057,2025-03-11T12:21:45.497546-07:00,1001.7061767578125,10.737012,10737.012 +36058,2025-03-11T12:21:56.229503-07:00,1001.6846313476562,10.731957,10731.957 +36059,2025-03-11T12:22:06.964727-07:00,1001.7044677734375,10.735224,10735.224 +36060,2025-03-11T12:22:17.685999-07:00,1001.695068359375,10.721272,10721.272 +36061,2025-03-11T12:22:28.426498-07:00,1001.7000122070312,10.740499,10740.499 +36062,2025-03-11T12:22:39.152342-07:00,1001.7017211914062,10.725844,10725.844 +36063,2025-03-11T12:22:49.889747-07:00,1001.68359375,10.737405,10737.405 +36064,2025-03-11T12:23:00.624501-07:00,1001.672119140625,10.734754,10734.754 +36065,2025-03-11T12:23:11.349731-07:00,1001.7000122070312,10.72523,10725.23 +36066,2025-03-11T12:23:22.089684-07:00,1001.7101440429688,10.739953,10739.953 +36067,2025-03-11T12:23:32.820735-07:00,1001.7330322265625,10.731051,10731.051 +36068,2025-03-11T12:23:43.554500-07:00,1001.6986083984375,10.733765,10733.765 +36069,2025-03-11T12:23:54.293502-07:00,1001.731689453125,10.739002,10739.002 +36070,2025-03-11T12:24:05.027694-07:00,1001.73828125,10.734192,10734.192 +36071,2025-03-11T12:24:15.757499-07:00,1001.7347412109375,10.729805,10729.805 +36072,2025-03-11T12:24:26.501499-07:00,1001.708251953125,10.744,10744.0 +36073,2025-03-11T12:24:37.226689-07:00,1001.7117919921875,10.72519,10725.19 +36074,2025-03-11T12:24:47.962850-07:00,1001.731689453125,10.736161,10736.161 +36075,2025-03-11T12:24:58.700502-07:00,1001.7413940429688,10.737652,10737.652 +36076,2025-03-11T12:25:09.433569-07:00,1001.767822265625,10.733067,10733.067 +36077,2025-03-11T12:25:20.165567-07:00,1001.73828125,10.731998,10731.998 +36078,2025-03-11T12:25:30.904673-07:00,1001.7330322265625,10.739106,10739.106 +36079,2025-03-11T12:25:41.635524-07:00,1001.7413940429688,10.730851,10730.851 +36080,2025-03-11T12:25:52.369899-07:00,1001.7198486328125,10.734375,10734.375 +36081,2025-03-11T12:26:03.103744-07:00,1001.7462768554688,10.733845,10733.845 +36082,2025-03-11T12:26:13.845706-07:00,1001.7281494140625,10.741962,10741.962 +36083,2025-03-11T12:26:24.571499-07:00,1001.7427978515625,10.725793,10725.793 +36084,2025-03-11T12:26:35.314707-07:00,1001.7347412109375,10.743208,10743.208 +36085,2025-03-11T12:26:46.045501-07:00,1001.7347412109375,10.730794,10730.794 +36086,2025-03-11T12:26:56.772568-07:00,1001.7149047851562,10.727067,10727.067 +36087,2025-03-11T12:27:07.509500-07:00,1001.7229614257812,10.736932,10736.932 +36088,2025-03-11T12:27:18.240784-07:00,1001.7507934570312,10.731284,10731.284 +36089,2025-03-11T12:27:28.981713-07:00,1001.75732421875,10.740929,10740.929 +36090,2025-03-11T12:27:39.713499-07:00,1001.7361450195312,10.731786,10731.786 +36091,2025-03-11T12:27:50.447499-07:00,1001.7640380859375,10.734,10734.0 +36092,2025-03-11T12:28:01.172682-07:00,1001.7361450195312,10.725183,10725.183 +36093,2025-03-11T12:28:11.905819-07:00,1001.7737426757812,10.733137,10733.137 +36094,2025-03-11T12:28:22.635585-07:00,1001.759033203125,10.729766,10729.766 +36095,2025-03-11T12:28:33.371672-07:00,1001.7391967773438,10.736087,10736.087 +36096,2025-03-11T12:28:44.100688-07:00,1001.76708984375,10.729016,10729.016 +36097,2025-03-11T12:28:54.832531-07:00,1001.7684326171875,10.731843,10731.843 +36098,2025-03-11T12:29:05.566575-07:00,1001.775146484375,10.734044,10734.044 +36099,2025-03-11T12:29:16.307505-07:00,1001.76708984375,10.74093,10740.93 +36100,2025-03-11T12:29:27.032550-07:00,1001.7966918945312,10.725045,10725.045 +36101,2025-03-11T12:29:37.767673-07:00,1001.7619018554688,10.735123,10735.123 +36102,2025-03-11T12:29:48.505504-07:00,1001.7420043945312,10.737831,10737.831 +36103,2025-03-11T12:29:59.233710-07:00,1001.73046875,10.728206,10728.206 +36104,2025-03-11T12:30:09.963709-07:00,1001.723876953125,10.729999,10729.999 +36105,2025-03-11T12:30:20.699577-07:00,1001.7451782226562,10.735868,10735.868 +36106,2025-03-11T12:30:31.428033-07:00,1001.7437744140625,10.728456,10728.456 +36107,2025-03-11T12:30:42.155501-07:00,1001.7437744140625,10.727468,10727.468 +36108,2025-03-11T12:30:52.893499-07:00,1001.7398681640625,10.737998,10737.998 +36109,2025-03-11T12:31:03.617687-07:00,1001.7186889648438,10.724188,10724.188 +36110,2025-03-11T12:31:14.355499-07:00,1001.6907958984375,10.737812,10737.812 +36111,2025-03-11T12:31:25.083620-07:00,1001.6890869140625,10.728121,10728.121 +36112,2025-03-11T12:31:35.806680-07:00,1001.6810913085938,10.72306,10723.06 +36113,2025-03-11T12:31:46.541716-07:00,1001.7193603515625,10.735036,10735.036 +36114,2025-03-11T12:31:57.277543-07:00,1001.7507934570312,10.735827,10735.827 +36115,2025-03-11T12:32:08.000681-07:00,1001.7462768554688,10.723138,10723.138 +36116,2025-03-11T12:32:18.731730-07:00,1001.7400512695312,10.731049,10731.049 +36117,2025-03-11T12:32:29.462502-07:00,1001.7157592773438,10.730772,10730.772 +36118,2025-03-11T12:32:40.192972-07:00,1001.719970703125,10.73047,10730.47 +36119,2025-03-11T12:32:50.920571-07:00,1001.7273559570312,10.727599,10727.599 +36120,2025-03-11T12:33:01.657703-07:00,1001.6890869140625,10.737132,10737.132 +36121,2025-03-11T12:33:12.385683-07:00,1001.70654296875,10.72798,10727.98 +36122,2025-03-11T12:33:23.119697-07:00,1001.6804809570312,10.734014,10734.014 +36123,2025-03-11T12:33:33.851499-07:00,1001.6607666015625,10.731802,10731.802 +36124,2025-03-11T12:33:44.582572-07:00,1001.7140502929688,10.731073,10731.073 +36125,2025-03-11T12:33:55.310651-07:00,1001.71337890625,10.728079,10728.079 +36126,2025-03-11T12:34:06.048580-07:00,1001.6779174804688,10.737929,10737.929 +36127,2025-03-11T12:34:16.774950-07:00,1001.6873168945312,10.72637,10726.37 +36128,2025-03-11T12:34:27.499877-07:00,1001.6947021484375,10.724927,10724.927 +36129,2025-03-11T12:34:38.227529-07:00,1001.7068481445312,10.727652,10727.652 +36130,2025-03-11T12:34:48.966104-07:00,1001.7142333984375,10.738575,10738.575 +36131,2025-03-11T12:34:59.688650-07:00,1001.6867065429688,10.722546,10722.546 +36132,2025-03-11T12:35:10.422989-07:00,1001.6755981445312,10.734339,10734.339 +36133,2025-03-11T12:35:21.156680-07:00,1001.7059326171875,10.733691,10733.691 +36134,2025-03-11T12:35:31.890083-07:00,1001.6669311523438,10.733403,10733.403 +36135,2025-03-11T12:35:42.616581-07:00,1001.6707763671875,10.726498,10726.498 +36136,2025-03-11T12:35:53.347516-07:00,1001.66455078125,10.730935,10730.935 +36137,2025-03-11T12:36:04.073809-07:00,1001.6631469726562,10.726293,10726.293 +36138,2025-03-11T12:36:14.807498-07:00,1001.701416015625,10.733689,10733.689 +36139,2025-03-11T12:36:25.534702-07:00,1001.6805419921875,10.727204,10727.204 +36140,2025-03-11T12:36:36.271663-07:00,1001.6937255859375,10.736961,10736.961 +36141,2025-03-11T12:36:46.996503-07:00,1001.6958618164062,10.72484,10724.84 +36142,2025-03-11T12:36:57.731637-07:00,1001.734130859375,10.735134,10735.134 +36143,2025-03-11T12:37:08.464561-07:00,1001.724365234375,10.732924,10732.924 +36144,2025-03-11T12:37:19.188709-07:00,1001.7195434570312,10.724148,10724.148 +36145,2025-03-11T12:37:29.919980-07:00,1001.7413940429688,10.731271,10731.271 +36146,2025-03-11T12:37:40.655334-07:00,1001.7413940429688,10.735354,10735.354 +36147,2025-03-11T12:37:51.380499-07:00,1001.7215576171875,10.725165,10725.165 +36148,2025-03-11T12:38:02.118528-07:00,1001.7265014648438,10.738029,10738.029 +36149,2025-03-11T12:38:12.841749-07:00,1001.73486328125,10.723221,10723.221 +36150,2025-03-11T12:38:23.578560-07:00,1001.7215576171875,10.736811,10736.811 +36151,2025-03-11T12:38:34.306709-07:00,1001.7164306640625,10.728149,10728.149 +36152,2025-03-11T12:38:45.042690-07:00,1001.7229614257812,10.735981,10735.981 +36153,2025-03-11T12:38:55.766125-07:00,1001.7098388671875,10.723435,10723.435 +36154,2025-03-11T12:39:06.499718-07:00,1001.7098388671875,10.733593,10733.593 +36155,2025-03-11T12:39:17.235670-07:00,1001.6819458007812,10.735952,10735.952 +36156,2025-03-11T12:39:27.971106-07:00,1001.7084350585938,10.735436,10735.436 +36157,2025-03-11T12:39:38.699790-07:00,1001.7376708984375,10.728684,10728.684 +36158,2025-03-11T12:39:49.441061-07:00,1001.7215576171875,10.741271,10741.271 +36159,2025-03-11T12:40:00.174829-07:00,1001.703125,10.733768,10733.768 +36160,2025-03-11T12:40:10.903501-07:00,1001.7045288085938,10.728672,10728.672 +36161,2025-03-11T12:40:21.635496-07:00,1001.7062377929688,10.731995,10731.995 +36162,2025-03-11T12:40:32.361978-07:00,1001.7142944335938,10.726482,10726.482 +36163,2025-03-11T12:40:43.095799-07:00,1001.747314453125,10.733821,10733.821 +36164,2025-03-11T12:40:53.824851-07:00,1001.7835083007812,10.729052,10729.052 +36165,2025-03-11T12:41:04.556691-07:00,1001.7306518554688,10.73184,10731.84 +36166,2025-03-11T12:41:15.288682-07:00,1001.7268676757812,10.731991,10731.991 +36167,2025-03-11T12:41:26.028540-07:00,1001.7550048828125,10.739858,10739.858 +36168,2025-03-11T12:41:36.757500-07:00,1001.7564086914062,10.72896,10728.96 +36169,2025-03-11T12:41:47.492334-07:00,1001.72998046875,10.734834,10734.834 +36170,2025-03-11T12:41:58.223708-07:00,1001.7195434570312,10.731374,10731.374 +36171,2025-03-11T12:42:08.956497-07:00,1001.7345581054688,10.732789,10732.789 +36172,2025-03-11T12:42:19.684681-07:00,1001.7490844726562,10.728184,10728.184 +36173,2025-03-11T12:42:30.420833-07:00,1001.739013671875,10.736152,10736.152 +36174,2025-03-11T12:42:41.154669-07:00,1001.7125244140625,10.733836,10733.836 +36175,2025-03-11T12:42:51.890500-07:00,1001.7073364257812,10.735831,10735.831 +36176,2025-03-11T12:43:02.621895-07:00,1001.7396850585938,10.731395,10731.395 +36177,2025-03-11T12:43:13.351714-07:00,1001.7215576171875,10.729819,10729.819 +36178,2025-03-11T12:43:24.076690-07:00,1001.7560424804688,10.724976,10724.976 +36179,2025-03-11T12:43:34.813399-07:00,1001.7720336914062,10.736709,10736.709 +36180,2025-03-11T12:43:45.553499-07:00,1001.7786865234375,10.7401,10740.1 +36181,2025-03-11T12:43:56.286502-07:00,1001.79638671875,10.733003,10733.003 +36182,2025-03-11T12:44:07.013770-07:00,1001.7946166992188,10.727268,10727.268 +36183,2025-03-11T12:44:17.752272-07:00,1001.7615356445312,10.738502,10738.502 +36184,2025-03-11T12:44:28.493655-07:00,1001.7698364257812,10.741383,10741.383 +36185,2025-03-11T12:44:39.224729-07:00,1001.779296875,10.731074,10731.074 +36186,2025-03-11T12:44:49.963779-07:00,1001.7743530273438,10.73905,10739.05 +36187,2025-03-11T12:45:00.695680-07:00,1001.7479858398438,10.731901,10731.901 +36188,2025-03-11T12:45:11.432502-07:00,1001.7391967773438,10.736822,10736.822 +36189,2025-03-11T12:45:22.160496-07:00,1001.7472534179688,10.727994,10727.994 +36190,2025-03-11T12:45:32.904614-07:00,1001.717041015625,10.744118,10744.118 +36191,2025-03-11T12:45:43.637688-07:00,1001.7332763671875,10.733074,10733.074 +36192,2025-03-11T12:45:54.372530-07:00,1001.7281494140625,10.734842,10734.842 +36193,2025-03-11T12:46:05.106895-07:00,1001.724609375,10.734365,10734.365 +36194,2025-03-11T12:46:15.846506-07:00,1001.689453125,10.739611,10739.611 +36195,2025-03-11T12:46:26.579989-07:00,1001.73046875,10.733483,10733.483 +36196,2025-03-11T12:46:37.313805-07:00,1001.7284545898438,10.733816,10733.816 +36197,2025-03-11T12:46:48.048504-07:00,1001.716552734375,10.734699,10734.699 +36198,2025-03-11T12:46:58.785500-07:00,1001.7593994140625,10.736996,10736.996 +36199,2025-03-11T12:47:09.511688-07:00,1001.7161865234375,10.726188,10726.188 +36200,2025-03-11T12:47:20.248522-07:00,1001.689697265625,10.736834,10736.834 +36201,2025-03-11T12:47:30.983084-07:00,1001.705810546875,10.734562,10734.562 +36202,2025-03-11T12:47:41.713685-07:00,1001.7273559570312,10.730601,10730.601 +36203,2025-03-11T12:47:52.447411-07:00,1001.7234497070312,10.733726,10733.726 +36204,2025-03-11T12:48:03.182502-07:00,1001.7332153320312,10.735091,10735.091 +36205,2025-03-11T12:48:13.919579-07:00,1001.734619140625,10.737077,10737.077 +36206,2025-03-11T12:48:24.644693-07:00,1001.675048828125,10.725114,10725.114 +36207,2025-03-11T12:48:35.383764-07:00,1001.6610717773438,10.739071,10739.071 +36208,2025-03-11T12:48:46.116501-07:00,1001.6708374023438,10.732737,10732.737 +36209,2025-03-11T12:48:56.850503-07:00,1001.700439453125,10.734002,10734.002 +36210,2025-03-11T12:49:07.577912-07:00,1001.6475219726562,10.727409,10727.409 +36211,2025-03-11T12:49:18.317688-07:00,1001.6453857421875,10.739776,10739.776 +36212,2025-03-11T12:49:29.046496-07:00,1001.635009765625,10.728808,10728.808 +36213,2025-03-11T12:49:39.784509-07:00,1001.6498413085938,10.738013,10738.013 +36214,2025-03-11T12:49:50.515565-07:00,1001.677734375,10.731056,10731.056 +36215,2025-03-11T12:50:01.249502-07:00,1001.6475219726562,10.733937,10733.937 +36216,2025-03-11T12:50:11.972709-07:00,1001.67041015625,10.723207,10723.207 +36217,2025-03-11T12:50:22.705500-07:00,1001.5990600585938,10.732791,10732.791 +36218,2025-03-11T12:50:33.443499-07:00,1001.627197265625,10.737999,10737.999 +36219,2025-03-11T12:50:44.173701-07:00,1001.6498413085938,10.730202,10730.202 +36220,2025-03-11T12:50:54.902698-07:00,1001.6609497070312,10.728997,10728.997 +36221,2025-03-11T12:51:05.646572-07:00,1001.6507568359375,10.743874,10743.874 +36222,2025-03-11T12:51:16.372498-07:00,1001.6751708984375,10.725926,10725.926 +36223,2025-03-11T12:51:27.112507-07:00,1001.6612548828125,10.740009,10740.009 +36224,2025-03-11T12:51:37.850221-07:00,1001.6656494140625,10.737714,10737.714 +36225,2025-03-11T12:51:48.575500-07:00,1001.6754150390625,10.725279,10725.279 +36226,2025-03-11T12:51:59.309655-07:00,1001.6781005859375,10.734155,10734.155 +36227,2025-03-11T12:52:10.046495-07:00,1001.6843872070312,10.73684,10736.84 +36228,2025-03-11T12:52:20.787582-07:00,1001.6951293945312,10.741087,10741.087 +36229,2025-03-11T12:52:31.519528-07:00,1001.6571655273438,10.731946,10731.946 +36230,2025-03-11T12:52:42.255657-07:00,1001.7111206054688,10.736129,10736.129 +36231,2025-03-11T12:52:52.987606-07:00,1001.6598510742188,10.731949,10731.949 +36232,2025-03-11T12:53:03.731681-07:00,1001.6921997070312,10.744075,10744.075 +36233,2025-03-11T12:53:14.465817-07:00,1001.6737670898438,10.734136,10734.136 +36234,2025-03-11T12:53:25.197528-07:00,1001.6900634765625,10.731711,10731.711 +36235,2025-03-11T12:53:35.947089-07:00,1001.6378173828125,10.749561,10749.561 +36236,2025-03-11T12:53:46.676499-07:00,1001.6738891601562,10.72941,10729.41 +36237,2025-03-11T12:53:57.408186-07:00,1001.677001953125,10.731687,10731.687 +36238,2025-03-11T12:54:08.150298-07:00,1001.677001953125,10.742112,10742.112 +36239,2025-03-11T12:54:18.883091-07:00,1001.6617431640625,10.732793,10732.793 +36240,2025-03-11T12:54:29.619264-07:00,1001.6328125,10.736173,10736.173 +36241,2025-03-11T12:54:40.344608-07:00,1001.6425170898438,10.725344,10725.344 +36242,2025-03-11T12:54:51.090192-07:00,1001.6785888671875,10.745584,10745.584 +36243,2025-03-11T12:55:01.820086-07:00,1001.6566162109375,10.729894,10729.894 +36244,2025-03-11T12:55:12.551488-07:00,1001.631591796875,10.731402,10731.402 +36245,2025-03-11T12:55:23.290293-07:00,1001.6213989257812,10.738805,10738.805 +36246,2025-03-11T12:55:34.026084-07:00,1001.6339111328125,10.735791,10735.791 +36247,2025-03-11T12:55:44.765084-07:00,1001.6088256835938,10.739,10739.0 +36248,2025-03-11T12:55:55.490921-07:00,1001.6265869140625,10.725837,10725.837 +36249,2025-03-11T12:56:06.228194-07:00,1001.5934448242188,10.737273,10737.273 +36250,2025-03-11T12:56:16.963285-07:00,1001.5965576171875,10.735091,10735.091 +36251,2025-03-11T12:56:27.688264-07:00,1001.6141967773438,10.724979,10724.979 +36252,2025-03-11T12:56:38.422383-07:00,1001.6221923828125,10.734119,10734.119 +36253,2025-03-11T12:56:49.165086-07:00,1001.6104125976562,10.742703,10742.703 +36254,2025-03-11T12:56:59.900313-07:00,1001.64794921875,10.735227,10735.227 +36255,2025-03-11T12:57:10.630675-07:00,1001.6200561523438,10.730362,10730.362 +36256,2025-03-11T12:57:21.364151-07:00,1001.5685424804688,10.733476,10733.476 +36257,2025-03-11T12:57:32.103318-07:00,1001.5831298828125,10.739167,10739.167 +36258,2025-03-11T12:57:42.837087-07:00,1001.6361083984375,10.733769,10733.769 +36259,2025-03-11T12:57:53.563258-07:00,1001.669189453125,10.726171,10726.171 +36260,2025-03-11T12:58:04.303181-07:00,1001.6179809570312,10.739923,10739.923 +36261,2025-03-11T12:58:15.032269-07:00,1001.6207275390625,10.729088,10729.088 +36262,2025-03-11T12:58:25.775086-07:00,1001.6273193359375,10.742817,10742.817 +36263,2025-03-11T12:58:36.500349-07:00,1001.6207275390625,10.725263,10725.263 +36264,2025-03-11T12:58:47.236168-07:00,1001.6140747070312,10.735819,10735.819 +36265,2025-03-11T12:58:57.974085-07:00,1001.6157836914062,10.737917,10737.917 +36266,2025-03-11T12:59:08.702117-07:00,1001.6304931640625,10.728032,10728.032 +36267,2025-03-11T12:59:19.441487-07:00,1001.6251831054688,10.73937,10739.37 +36268,2025-03-11T12:59:30.174762-07:00,1001.6224365234375,10.733275,10733.275 +36269,2025-03-11T12:59:40.915378-07:00,1001.5775146484375,10.740616,10740.616 +36270,2025-03-11T12:59:51.652086-07:00,1001.6290893554688,10.736708,10736.708 +36271,2025-03-11T13:00:02.387721-07:00,1001.6026000976562,10.735635,10735.635 +36272,2025-03-11T13:00:13.121194-07:00,1001.633544921875,10.733473,10733.473 +36273,2025-03-11T13:00:23.858088-07:00,1001.5987548828125,10.736894,10736.894 +36274,2025-03-11T13:00:34.586308-07:00,1001.6070556640625,10.72822,10728.22 +36275,2025-03-11T13:00:45.322278-07:00,1001.6251831054688,10.73597,10735.97 +36276,2025-03-11T13:00:56.069485-07:00,1001.638427734375,10.747207,10747.207 +36277,2025-03-11T13:01:06.801155-07:00,1001.6203002929688,10.73167,10731.67 +36278,2025-03-11T13:01:17.533089-07:00,1001.633544921875,10.731934,10731.934 +36279,2025-03-11T13:01:28.272312-07:00,1001.6203002929688,10.739223,10739.223 +36280,2025-03-11T13:01:39.008262-07:00,1001.614990234375,10.73595,10735.95 +36281,2025-03-11T13:01:49.742086-07:00,1001.60986328125,10.733824,10733.824 +36282,2025-03-11T13:02:00.483083-07:00,1001.5899047851562,10.740997,10740.997 +36283,2025-03-11T13:02:11.217086-07:00,1001.5523681640625,10.734003,10734.003 +36284,2025-03-11T13:02:21.953087-07:00,1001.5443725585938,10.736001,10736.001 +36285,2025-03-11T13:02:32.695333-07:00,1001.58056640625,10.742246,10742.246 +36286,2025-03-11T13:02:43.426084-07:00,1001.5589599609375,10.730751,10730.751 +36287,2025-03-11T13:02:54.155199-07:00,1001.537841796875,10.729115,10729.115 +36288,2025-03-11T13:03:04.895305-07:00,1001.5708618164062,10.740106,10740.106 +36289,2025-03-11T13:03:15.632265-07:00,1001.5987548828125,10.73696,10736.96 +36290,2025-03-11T13:03:26.364086-07:00,1001.6317749023438,10.731821,10731.821 +36291,2025-03-11T13:03:37.106088-07:00,1001.6268920898438,10.742002,10742.002 +36292,2025-03-11T13:03:47.839314-07:00,1001.614990234375,10.733226,10733.226 +36293,2025-03-11T13:03:58.573263-07:00,1001.6004638671875,10.733949,10733.949 +36294,2025-03-11T13:04:09.313991-07:00,1001.6070556640625,10.740728,10740.728 +36295,2025-03-11T13:04:20.048175-07:00,1001.587158203125,10.734184,10734.184 +36296,2025-03-11T13:04:30.779603-07:00,1001.5951538085938,10.731428,10731.428 +36297,2025-03-11T13:04:41.520285-07:00,1001.5739135742188,10.740682,10740.682 +36298,2025-03-11T13:04:52.259259-07:00,1001.5921020507812,10.738974,10738.974 +36299,2025-03-11T13:05:02.993116-07:00,1001.564208984375,10.733857,10733.857 +36300,2025-03-11T13:05:13.734088-07:00,1001.5739135742188,10.740972,10740.972 +36301,2025-03-11T13:05:24.469161-07:00,1001.5789184570312,10.735073,10735.073 +36302,2025-03-11T13:05:35.211088-07:00,1001.5576782226562,10.741927,10741.927 +36303,2025-03-11T13:05:45.938504-07:00,1001.5775146484375,10.727416,10727.416 +36304,2025-03-11T13:05:56.681115-07:00,1001.5694580078125,10.742611,10742.611 +36305,2025-03-11T13:06:07.418087-07:00,1001.5906982421875,10.736972,10736.972 +36306,2025-03-11T13:06:18.154170-07:00,1001.5694580078125,10.736083,10736.083 +36307,2025-03-11T13:06:28.889558-07:00,1001.5576782226562,10.735388,10735.388 +36308,2025-03-11T13:06:39.632273-07:00,1001.53466796875,10.742715,10742.715 +36309,2025-03-11T13:06:50.368295-07:00,1001.5628051757812,10.736022,10736.022 +36310,2025-03-11T13:07:01.101088-07:00,1001.5479125976562,10.732793,10732.793 +36311,2025-03-11T13:07:11.833089-07:00,1001.545166015625,10.732001,10732.001 +36312,2025-03-11T13:07:22.568323-07:00,1001.5562744140625,10.735234,10735.234 +36313,2025-03-11T13:07:33.304126-07:00,1001.5597534179688,10.735803,10735.803 +36314,2025-03-11T13:07:44.035295-07:00,1001.5545043945312,10.731169,10731.169 +36315,2025-03-11T13:07:54.769085-07:00,1001.5465698242188,10.73379,10733.79 +36316,2025-03-11T13:08:05.498281-07:00,1001.5318603515625,10.729196,10729.196 +36317,2025-03-11T13:08:16.233086-07:00,1001.5399169921875,10.734805,10734.805 +36318,2025-03-11T13:08:26.959110-07:00,1001.4971313476562,10.726024,10726.024 +36319,2025-03-11T13:08:37.699258-07:00,1001.5253295898438,10.740148,10740.148 +36320,2025-03-11T13:08:48.427086-07:00,1001.572998046875,10.727828,10727.828 +36321,2025-03-11T13:08:59.167088-07:00,1001.5354614257812,10.740002,10740.002 +36322,2025-03-11T13:09:09.898403-07:00,1001.5253295898438,10.731315,10731.315 +36323,2025-03-11T13:09:20.628264-07:00,1001.5552978515625,10.729861,10729.861 +36324,2025-03-11T13:09:31.360083-07:00,1001.54345703125,10.731819,10731.819 +36325,2025-03-11T13:09:42.097090-07:00,1001.5103149414062,10.737007,10737.007 +36326,2025-03-11T13:09:52.830463-07:00,1001.5236206054688,10.733373,10733.373 +36327,2025-03-11T13:10:03.568107-07:00,1001.52880859375,10.737644,10737.644 +36328,2025-03-11T13:10:14.293091-07:00,1001.4929809570312,10.724984,10724.984 +36329,2025-03-11T13:10:25.022269-07:00,1001.49951171875,10.729178,10729.178 +36330,2025-03-11T13:10:35.757109-07:00,1001.5111083984375,10.73484,10734.84 +36331,2025-03-11T13:10:46.499083-07:00,1001.5111083984375,10.741974,10741.974 +36332,2025-03-11T13:10:57.223084-07:00,1001.526123046875,10.724001,10724.001 +36333,2025-03-11T13:11:07.964876-07:00,1001.501708984375,10.741792,10741.792 +36334,2025-03-11T13:11:18.694085-07:00,1001.5031127929688,10.729209,10729.209 +36335,2025-03-11T13:11:29.422088-07:00,1001.5066528320312,10.728003,10728.003 +36336,2025-03-11T13:11:40.149251-07:00,1001.5150146484375,10.727163,10727.163 +36337,2025-03-11T13:11:50.876096-07:00,1001.4884643554688,10.726845,10726.845 +36338,2025-03-11T13:12:01.610085-07:00,1001.501708984375,10.733989,10733.989 +36339,2025-03-11T13:12:12.336362-07:00,1001.4854125976562,10.726277,10726.277 +36340,2025-03-11T13:12:23.071163-07:00,1001.4625244140625,10.734801,10734.801 +36341,2025-03-11T13:12:33.805134-07:00,1001.51708984375,10.733971,10733.971 +36342,2025-03-11T13:12:44.533270-07:00,1001.4625244140625,10.728136,10728.136 +36343,2025-03-11T13:12:55.275891-07:00,1001.50390625,10.742621,10742.621 +36344,2025-03-11T13:13:06.001087-07:00,1001.5220336914062,10.725196,10725.196 +36345,2025-03-11T13:13:16.736087-07:00,1001.4743041992188,10.735,10735.0 +36346,2025-03-11T13:13:27.475261-07:00,1001.46630859375,10.739174,10739.174 +36347,2025-03-11T13:13:38.203088-07:00,1001.4861450195312,10.727827,10727.827 +36348,2025-03-11T13:13:48.936086-07:00,1001.45654296875,10.732998,10732.998 +36349,2025-03-11T13:13:59.666191-07:00,1001.443359375,10.730105,10730.105 +36350,2025-03-11T13:14:10.408388-07:00,1001.4763793945312,10.742197,10742.197 +36351,2025-03-11T13:14:21.131232-07:00,1001.4468994140625,10.722844,10722.844 +36352,2025-03-11T13:14:31.866087-07:00,1001.435302734375,10.734855,10734.855 +36353,2025-03-11T13:14:42.596114-07:00,1001.435302734375,10.730027,10730.027 +36354,2025-03-11T13:14:53.332299-07:00,1001.4022827148438,10.736185,10736.185 +36355,2025-03-11T13:15:04.068089-07:00,1001.435302734375,10.73579,10735.79 +36356,2025-03-11T13:15:14.796433-07:00,1001.413818359375,10.728344,10728.344 +36357,2025-03-11T13:15:25.532155-07:00,1001.4287719726562,10.735722,10735.722 +36358,2025-03-11T13:15:36.267088-07:00,1001.3956298828125,10.734933,10734.933 +36359,2025-03-11T13:15:46.999086-07:00,1001.4315795898438,10.731998,10731.998 +36360,2025-03-11T13:15:57.735264-07:00,1001.4036865234375,10.736178,10736.178 +36361,2025-03-11T13:16:08.463482-07:00,1001.4103393554688,10.728218,10728.218 +36362,2025-03-11T13:16:19.191401-07:00,1001.4248657226562,10.727919,10727.919 +36363,2025-03-11T13:16:29.933251-07:00,1001.40673828125,10.74185,10741.85 +36364,2025-03-11T13:16:40.664085-07:00,1001.4447631835938,10.730834,10730.834 +36365,2025-03-11T13:16:51.399162-07:00,1001.4235229492188,10.735077,10735.077 +36366,2025-03-11T13:17:02.134086-07:00,1001.3984375,10.734924,10734.924 +36367,2025-03-11T13:17:12.863266-07:00,1001.405029296875,10.72918,10729.18 +36368,2025-03-11T13:17:23.603314-07:00,1001.3719482421875,10.740048,10740.048 +36369,2025-03-11T13:17:34.334085-07:00,1001.3984375,10.730771,10730.771 +36370,2025-03-11T13:17:45.068357-07:00,1001.4182739257812,10.734272,10734.272 +36371,2025-03-11T13:17:55.794085-07:00,1001.3904418945312,10.725728,10725.728 +36372,2025-03-11T13:18:06.532159-07:00,1001.3806762695312,10.738074,10738.074 +36373,2025-03-11T13:18:17.269079-07:00,1001.3692016601562,10.73692,10736.92 +36374,2025-03-11T13:18:27.998277-07:00,1001.3719482421875,10.729198,10729.198 +36375,2025-03-11T13:18:38.737172-07:00,1001.3956298828125,10.738895,10738.895 +36376,2025-03-11T13:18:49.473184-07:00,1001.377197265625,10.736012,10736.012 +36377,2025-03-11T13:19:00.203155-07:00,1001.3851318359375,10.729971,10729.971 +36378,2025-03-11T13:19:10.937871-07:00,1001.3890380859375,10.734716,10734.716 +36379,2025-03-11T13:19:21.669116-07:00,1001.37060546875,10.731245,10731.245 +36380,2025-03-11T13:19:32.408085-07:00,1001.37060546875,10.738969,10738.969 +36381,2025-03-11T13:19:43.138088-07:00,1001.3757934570312,10.730003,10730.003 +36382,2025-03-11T13:19:53.868332-07:00,1001.3329467773438,10.730244,10730.244 +36383,2025-03-11T13:20:04.603247-07:00,1001.3727416992188,10.734915,10734.915 +36384,2025-03-11T13:20:15.339090-07:00,1001.4022827148438,10.735843,10735.843 +36385,2025-03-11T13:20:26.072346-07:00,1001.400634765625,10.733256,10733.256 +36386,2025-03-11T13:20:36.798327-07:00,1001.3757934570312,10.725981,10725.981 +36387,2025-03-11T13:20:47.533087-07:00,1001.3824462890625,10.73476,10734.76 +36388,2025-03-11T13:20:58.268113-07:00,1001.35595703125,10.735026,10735.026 +36389,2025-03-11T13:21:09.010608-07:00,1001.3375244140625,10.742495,10742.495 +36390,2025-03-11T13:21:19.739308-07:00,1001.3507080078125,10.7287,10728.7 +36391,2025-03-11T13:21:30.472169-07:00,1001.3389282226562,10.732861,10732.861 +36392,2025-03-11T13:21:41.206465-07:00,1001.3123168945312,10.734296,10734.296 +36393,2025-03-11T13:21:51.942398-07:00,1001.345458984375,10.735933,10735.933 +36394,2025-03-11T13:22:02.680088-07:00,1001.3573608398438,10.73769,10737.69 +36395,2025-03-11T13:22:13.415085-07:00,1001.3521118164062,10.734997,10734.997 +36396,2025-03-11T13:22:24.152088-07:00,1001.34716796875,10.737003,10737.003 +36397,2025-03-11T13:22:34.892088-07:00,1001.3339233398438,10.74,10740.0 +36398,2025-03-11T13:22:45.631268-07:00,1001.2845458984375,10.73918,10739.18 +36399,2025-03-11T13:22:56.365136-07:00,1001.2876586914062,10.733868,10733.868 +36400,2025-03-11T13:23:07.101087-07:00,1001.3008422851562,10.735951,10735.951 +36401,2025-03-11T13:23:17.837270-07:00,1001.2904052734375,10.736183,10736.183 +36402,2025-03-11T13:23:28.571284-07:00,1001.2757568359375,10.734014,10734.014 +36403,2025-03-11T13:23:39.305337-07:00,1001.3140869140625,10.734053,10734.053 +36404,2025-03-11T13:23:50.035086-07:00,1001.3220825195312,10.729749,10729.749 +36405,2025-03-11T13:24:00.767616-07:00,1001.3273315429688,10.73253,10732.53 +36406,2025-03-11T13:24:11.499945-07:00,1001.3088989257812,10.732329,10732.329 +36407,2025-03-11T13:24:22.233091-07:00,1001.3021850585938,10.733146,10733.146 +36408,2025-03-11T13:24:32.968115-07:00,1001.267822265625,10.735024,10735.024 +36409,2025-03-11T13:24:43.698364-07:00,1001.281005859375,10.730249,10730.249 +36410,2025-03-11T13:24:54.430280-07:00,1001.267822265625,10.731916,10731.916 +36411,2025-03-11T13:25:05.164821-07:00,1001.2462768554688,10.734541,10734.541 +36412,2025-03-11T13:25:15.892261-07:00,1001.2064819335938,10.72744,10727.44 +36413,2025-03-11T13:25:26.626118-07:00,1001.3154907226562,10.733857,10733.857 +36414,2025-03-11T13:25:37.363119-07:00,1001.2743530273438,10.737001,10737.001 +36415,2025-03-11T13:25:48.096170-07:00,1001.26611328125,10.733051,10733.051 +36416,2025-03-11T13:25:58.830264-07:00,1001.2970581054688,10.734094,10734.094 +36417,2025-03-11T13:26:09.554250-07:00,1001.2625122070312,10.723986,10723.986 +36418,2025-03-11T13:26:20.292086-07:00,1001.2396240234375,10.737836,10737.836 +36419,2025-03-11T13:26:31.016283-07:00,1001.21484375,10.724197,10724.197 +36420,2025-03-11T13:26:41.755234-07:00,1001.2263793945312,10.738951,10738.951 +36421,2025-03-11T13:26:52.487289-07:00,1001.2514038085938,10.732055,10732.055 +36422,2025-03-11T13:27:01.913862-07:00,1001.2086791992188,9.426573,9426.573 +36423,2025-03-11T13:27:03.221524-07:00,1001.2218627929688,1.307662,1307.662 +36424,2025-03-11T13:27:13.947086-07:00,1001.194091796875,10.725562,10725.562 +36425,2025-03-11T13:27:24.681087-07:00,1001.21533203125,10.734001,10734.001 +36426,2025-03-11T13:27:35.412163-07:00,1001.1727905273438,10.731076,10731.076 +36427,2025-03-11T13:27:46.145098-07:00,1001.1934204101562,10.732935,10732.935 +36428,2025-03-11T13:27:56.885528-07:00,1001.2050170898438,10.74043,10740.43 +36429,2025-03-11T13:28:07.611187-07:00,1001.1845092773438,10.725659,10725.659 +36430,2025-03-11T13:28:18.343463-07:00,1001.19189453125,10.732276,10732.276 +36431,2025-03-11T13:28:29.081211-07:00,1001.2006225585938,10.737748,10737.748 +36432,2025-03-11T13:28:39.806174-07:00,1001.2062377929688,10.724963,10724.963 +36433,2025-03-11T13:28:50.543087-07:00,1001.1973266601562,10.736913,10736.913 +36434,2025-03-11T13:29:01.275503-07:00,1001.20166015625,10.732416,10732.416 +36435,2025-03-11T13:29:11.997087-07:00,1001.2354736328125,10.721584,10721.584 +36436,2025-03-11T13:29:22.739284-07:00,1001.2195434570312,10.742197,10742.197 +36437,2025-03-11T13:29:33.462407-07:00,1001.1615600585938,10.723123,10723.123 +36438,2025-03-11T13:29:44.203085-07:00,1001.1592407226562,10.740678,10740.678 +36439,2025-03-11T13:29:54.925151-07:00,1001.146728515625,10.722066,10722.066 +36440,2025-03-11T13:30:05.665273-07:00,1001.1721801757812,10.740122,10740.122 +36441,2025-03-11T13:30:16.391088-07:00,1001.146484375,10.725815,10725.815 +36442,2025-03-11T13:30:27.124083-07:00,1001.1604614257812,10.732995,10732.995 +36443,2025-03-11T13:30:37.856293-07:00,1001.1514892578125,10.73221,10732.21 +36444,2025-03-11T13:30:48.597511-07:00,1001.1668701171875,10.741218,10741.218 +36445,2025-03-11T13:30:59.323617-07:00,1001.1212768554688,10.726106,10726.106 +36446,2025-03-11T13:31:10.056447-07:00,1001.1366577148438,10.73283,10732.83 +36447,2025-03-11T13:31:20.782112-07:00,1001.1304931640625,10.725665,10725.665 +36448,2025-03-11T13:31:31.514086-07:00,1001.1077880859375,10.731974,10731.974 +36449,2025-03-11T13:31:42.244508-07:00,1001.0671997070312,10.730422,10730.422 +36450,2025-03-11T13:31:52.975160-07:00,1001.0723266601562,10.730652,10730.652 +36451,2025-03-11T13:32:03.716290-07:00,1001.061279296875,10.74113,10741.13 +36452,2025-03-11T13:32:14.446088-07:00,1001.0568237304688,10.729798,10729.798 +36453,2025-03-11T13:32:25.174265-07:00,1001.045654296875,10.728177,10728.177 +36454,2025-03-11T13:32:35.912106-07:00,1001.017822265625,10.737841,10737.841 +36455,2025-03-11T13:32:46.640253-07:00,1001.0640869140625,10.728147,10728.147 +36456,2025-03-11T13:32:57.375309-07:00,1001.0839233398438,10.735056,10735.056 +36457,2025-03-11T13:33:08.102083-07:00,1001.0808715820312,10.726774,10726.774 +36458,2025-03-11T13:33:18.840622-07:00,1001.0317993164062,10.738539,10738.539 +36459,2025-03-11T13:33:29.569083-07:00,1001.0317993164062,10.728461,10728.461 +36460,2025-03-11T13:33:40.312191-07:00,1001.0384521484375,10.743108,10743.108 +36461,2025-03-11T13:33:51.041087-07:00,1001.0300903320312,10.728896,10728.896 +36462,2025-03-11T13:34:01.779088-07:00,1001.0404663085938,10.738001,10738.001 +36463,2025-03-11T13:34:12.503523-07:00,1001.0140380859375,10.724435,10724.435 +36464,2025-03-11T13:34:23.241862-07:00,1001.0353393554688,10.738339,10738.339 +36465,2025-03-11T13:34:33.969912-07:00,1001.033935546875,10.72805,10728.05 +36466,2025-03-11T13:34:44.701174-07:00,1001.0286865234375,10.731262,10731.262 +36467,2025-03-11T13:34:55.431628-07:00,1001.0154418945312,10.730454,10730.454 +36468,2025-03-11T13:35:06.170202-07:00,1000.9942016601562,10.738574,10738.574 +36469,2025-03-11T13:35:16.899089-07:00,1001.0631103515625,10.728887,10728.887 +36470,2025-03-11T13:35:27.636267-07:00,1001.0220336914062,10.737178,10737.178 +36471,2025-03-11T13:35:38.371343-07:00,1001.002197265625,10.735076,10735.076 +36472,2025-03-11T13:35:49.107083-07:00,1001.0234375,10.73574,10735.74 +36473,2025-03-11T13:35:59.844225-07:00,1000.9970092773438,10.737142,10737.142 +36474,2025-03-11T13:36:10.577310-07:00,1000.9935302734375,10.733085,10733.085 +36475,2025-03-11T13:36:21.310536-07:00,1000.9896850585938,10.733226,10733.226 +36476,2025-03-11T13:36:32.051401-07:00,1001.004638671875,10.740865,10740.865 +36477,2025-03-11T13:36:42.782089-07:00,1001.004638671875,10.730688,10730.688 +36478,2025-03-11T13:36:53.516265-07:00,1001.0060424804688,10.734176,10734.176 +36479,2025-03-11T13:37:04.255255-07:00,1001.00732421875,10.73899,10738.99 +36480,2025-03-11T13:37:14.991087-07:00,1001.01708984375,10.735832,10735.832 +36481,2025-03-11T13:37:25.722085-07:00,1001.0053100585938,10.730998,10730.998 +36482,2025-03-11T13:37:36.452083-07:00,1000.975341796875,10.729998,10729.998 +36483,2025-03-11T13:37:47.194248-07:00,1000.9929809570312,10.742165,10742.165 +36484,2025-03-11T13:37:57.929277-07:00,1000.9745483398438,10.735029,10735.029 +36485,2025-03-11T13:38:08.663083-07:00,1000.9693603515625,10.733806,10733.806 +36486,2025-03-11T13:38:19.390288-07:00,1000.9644775390625,10.727205,10727.205 +36487,2025-03-11T13:38:30.126358-07:00,1000.987060546875,10.73607,10736.07 +36488,2025-03-11T13:38:40.868085-07:00,1000.978271484375,10.741727,10741.727 +36489,2025-03-11T13:38:51.605286-07:00,1000.9570922851562,10.737201,10737.201 +36490,2025-03-11T13:39:02.336095-07:00,1000.9762573242188,10.730809,10730.809 +36491,2025-03-11T13:39:13.074167-07:00,1000.9845581054688,10.738072,10738.072 +36492,2025-03-11T13:39:23.806412-07:00,1000.9740600585938,10.732245,10732.245 +36493,2025-03-11T13:39:34.537206-07:00,1000.9476318359375,10.730794,10730.794 +36494,2025-03-11T13:39:45.274263-07:00,1000.944091796875,10.737057,10737.057 +36495,2025-03-11T13:39:56.017266-07:00,1000.935302734375,10.743003,10743.003 +36496,2025-03-11T13:40:06.747313-07:00,1000.9500122070312,10.730047,10730.047 +36497,2025-03-11T13:40:17.485088-07:00,1000.951416015625,10.737775,10737.775 +36498,2025-03-11T13:40:28.224081-07:00,1000.9676513671875,10.738993,10738.993 +36499,2025-03-11T13:40:38.961083-07:00,1000.9707641601562,10.737002,10737.002 +36500,2025-03-11T13:40:49.686403-07:00,1000.95751953125,10.72532,10725.32 +36501,2025-03-11T13:41:00.421086-07:00,1000.9421997070312,10.734683,10734.683 +36502,2025-03-11T13:41:11.157091-07:00,1000.943603515625,10.736005,10736.005 +36503,2025-03-11T13:41:21.899278-07:00,1000.92822265625,10.742187,10742.187 +36504,2025-03-11T13:41:32.626086-07:00,1000.949462890625,10.726808,10726.808 +36505,2025-03-11T13:41:43.365086-07:00,1000.9591674804688,10.739,10739.0 +36506,2025-03-11T13:41:54.100089-07:00,1000.9354858398438,10.735003,10735.003 +36507,2025-03-11T13:42:04.836125-07:00,1000.9371948242188,10.736036,10736.036 +36508,2025-03-11T13:42:15.567323-07:00,1000.9400024414062,10.731198,10731.198 +36509,2025-03-11T13:42:26.305084-07:00,1000.9298706054688,10.737761,10737.761 +36510,2025-03-11T13:42:37.046088-07:00,1000.9423217773438,10.741004,10741.004 +36511,2025-03-11T13:42:47.778547-07:00,1000.9586181640625,10.732459,10732.459 +36512,2025-03-11T13:42:58.514268-07:00,1000.9520263671875,10.735721,10735.721 +36513,2025-03-11T13:43:09.249282-07:00,1000.9481201171875,10.735014,10735.014 +36514,2025-03-11T13:43:19.984089-07:00,1000.976318359375,10.734807,10734.807 +36515,2025-03-11T13:43:30.723293-07:00,1000.9658813476562,10.739204,10739.204 +36516,2025-03-11T13:43:41.456248-07:00,1000.9609375,10.732955,10732.955 +36517,2025-03-11T13:43:52.190107-07:00,1000.9358520507812,10.733859,10733.859 +36518,2025-03-11T13:44:02.920458-07:00,1000.9456176757812,10.730351,10730.351 +36519,2025-03-11T13:44:13.662191-07:00,1000.95361328125,10.741733,10741.733 +36520,2025-03-11T13:44:24.392267-07:00,1000.9434204101562,10.730076,10730.076 +36521,2025-03-11T13:44:35.131778-07:00,1000.9315795898438,10.739511,10739.511 +36522,2025-03-11T13:44:45.864085-07:00,1000.9078979492188,10.732307,10732.307 +36523,2025-03-11T13:44:56.603088-07:00,1000.94580078125,10.739003,10739.003 +36524,2025-03-11T13:45:07.342081-07:00,1000.9126586914062,10.738993,10738.993 +36525,2025-03-11T13:45:18.073674-07:00,1000.9620361328125,10.731593,10731.593 +36526,2025-03-11T13:45:28.808256-07:00,1000.943603515625,10.734582,10734.582 +36527,2025-03-11T13:45:39.548088-07:00,1000.8906860351562,10.739832,10739.832 +36528,2025-03-11T13:45:50.281259-07:00,1000.8990478515625,10.733171,10733.171 +36529,2025-03-11T13:46:01.015283-07:00,1000.9100952148438,10.734024,10734.024 +36530,2025-03-11T13:46:11.760906-07:00,1000.916748046875,10.745623,10745.623 +36531,2025-03-11T13:46:22.486089-07:00,1000.8864135742188,10.725183,10725.183 +36532,2025-03-11T13:46:33.223120-07:00,1000.8811645507812,10.737031,10737.031 +36533,2025-03-11T13:46:43.966090-07:00,1000.9093627929688,10.74297,10742.97 +36534,2025-03-11T13:46:54.698213-07:00,1000.8643798828125,10.732123,10732.123 +36535,2025-03-11T13:47:05.428112-07:00,1000.8643798828125,10.729899,10729.899 +36536,2025-03-11T13:47:16.159491-07:00,1000.8702392578125,10.731379,10731.379 +36537,2025-03-11T13:47:26.893279-07:00,1000.89453125,10.733788,10733.788 +36538,2025-03-11T13:47:37.631312-07:00,1000.8990478515625,10.738033,10738.033 +36539,2025-03-11T13:47:48.365089-07:00,1000.8742065429688,10.733777,10733.777 +36540,2025-03-11T13:47:59.102491-07:00,1000.8770141601562,10.737402,10737.402 +36541,2025-03-11T13:48:09.841199-07:00,1000.8814697265625,10.738708,10738.708 +36542,2025-03-11T13:48:20.586251-07:00,1000.8859252929688,10.745052,10745.052 +36543,2025-03-11T13:48:31.317149-07:00,1000.8786010742188,10.730898,10730.898 +36544,2025-03-11T13:48:42.056389-07:00,1000.87109375,10.73924,10739.24 +36545,2025-03-11T13:48:52.783478-07:00,1000.8477172851562,10.727089,10727.089 +36546,2025-03-11T13:49:03.518467-07:00,1000.8258056640625,10.734989,10734.989 +36547,2025-03-11T13:49:14.249086-07:00,1000.8712768554688,10.730619,10730.619 +36548,2025-03-11T13:49:24.993304-07:00,1000.87744140625,10.744218,10744.218 +36549,2025-03-11T13:49:35.722261-07:00,1000.8377075195312,10.728957,10728.957 +36550,2025-03-11T13:49:46.460935-07:00,1000.82373046875,10.738674,10738.674 +36551,2025-03-11T13:49:57.190085-07:00,1000.81982421875,10.72915,10729.15 +36552,2025-03-11T13:50:07.924122-07:00,1000.812744140625,10.734037,10734.037 +36553,2025-03-11T13:50:18.665183-07:00,1000.8406372070312,10.741061,10741.061 +36554,2025-03-11T13:50:29.397267-07:00,1000.831787109375,10.732084,10732.084 +36555,2025-03-11T13:50:40.128184-07:00,1000.8279418945312,10.730917,10730.917 +36556,2025-03-11T13:50:50.873088-07:00,1000.8111572265625,10.744904,10744.904 +36557,2025-03-11T13:51:01.607082-07:00,1000.8170166015625,10.733994,10733.994 +36558,2025-03-11T13:51:12.336311-07:00,1000.8465576171875,10.729229,10729.229 +36559,2025-03-11T13:51:23.083265-07:00,1000.8200073242188,10.746954,10746.954 +36560,2025-03-11T13:51:33.815145-07:00,1000.8148193359375,10.73188,10731.88 +36561,2025-03-11T13:51:44.546089-07:00,1000.811279296875,10.730944,10730.944 +36562,2025-03-11T13:51:55.282301-07:00,1000.8010864257812,10.736212,10736.212 +36563,2025-03-11T13:52:06.019498-07:00,1000.77294921875,10.737197,10737.197 +36564,2025-03-11T13:52:16.757089-07:00,1000.7892456054688,10.737591,10737.591 +36565,2025-03-11T13:52:27.485086-07:00,1000.7720947265625,10.727997,10727.997 +36566,2025-03-11T13:52:38.225117-07:00,1000.7754516601562,10.740031,10740.031 +36567,2025-03-11T13:52:48.952107-07:00,1000.7589111328125,10.72699,10726.99 +36568,2025-03-11T13:52:59.689092-07:00,1000.7636108398438,10.736985,10736.985 +36569,2025-03-11T13:53:10.430086-07:00,1000.7490844726562,10.740994,10740.994 +36570,2025-03-11T13:53:21.164380-07:00,1000.7423706054688,10.734294,10734.294 +36571,2025-03-11T13:53:31.898269-07:00,1000.7454833984375,10.733889,10733.889 +36572,2025-03-11T13:53:42.649740-07:00,1000.7521362304688,10.751471,10751.471 +36573,2025-03-11T13:53:53.380881-07:00,1000.7521362304688,10.731141,10731.141 +36574,2025-03-11T13:54:04.114842-07:00,1000.7349853515625,10.733961,10733.961 +36575,2025-03-11T13:54:14.853692-07:00,1000.7256469726562,10.73885,10738.85 +36576,2025-03-11T13:54:25.583795-07:00,1000.756591796875,10.730103,10730.103 +36577,2025-03-11T13:54:36.315194-07:00,1000.7600708007812,10.731399,10731.399 +36578,2025-03-11T13:54:47.047505-07:00,1000.7366943359375,10.732311,10732.311 +36579,2025-03-11T13:54:57.783934-07:00,1000.752685546875,10.736429,10736.429 +36580,2025-03-11T13:55:08.518663-07:00,1000.7393798828125,10.734729,10734.729 +36581,2025-03-11T13:55:19.250034-07:00,1000.767578125,10.731371,10731.371 +36582,2025-03-11T13:55:29.982151-07:00,1000.7371826171875,10.732117,10732.117 +36583,2025-03-11T13:55:40.714667-07:00,1000.725341796875,10.732516,10732.516 +36584,2025-03-11T13:55:51.445440-07:00,1000.71875,10.730773,10730.773 +36585,2025-03-11T13:56:02.183794-07:00,1000.7151489257812,10.738354,10738.354 +36586,2025-03-11T13:56:12.911664-07:00,1000.7363891601562,10.72787,10727.87 +36587,2025-03-11T13:56:23.642696-07:00,1000.71826171875,10.731032,10731.032 +36588,2025-03-11T13:56:34.384140-07:00,1000.7262573242188,10.741444,10741.444 +36589,2025-03-11T13:56:45.112783-07:00,1000.7210083007812,10.728643,10728.643 +36590,2025-03-11T13:56:55.850672-07:00,1000.716064453125,10.737889,10737.889 +36591,2025-03-11T13:57:06.577855-07:00,1000.7254638671875,10.727183,10727.183 +36592,2025-03-11T13:57:17.310446-07:00,1000.7028198242188,10.732591,10732.591 +36593,2025-03-11T13:57:28.044662-07:00,1000.6989135742188,10.734216,10734.216 +36594,2025-03-11T13:57:38.779032-07:00,1000.7166137695312,10.73437,10734.37 +36595,2025-03-11T13:57:49.509860-07:00,1000.7315673828125,10.730828,10730.828 +36596,2025-03-11T13:58:00.249182-07:00,1000.7232666015625,10.739322,10739.322 +36597,2025-03-11T13:58:10.983774-07:00,1000.6984252929688,10.734592,10734.592 +36598,2025-03-11T13:58:21.713885-07:00,1000.7117309570312,10.730111,10730.111 +36599,2025-03-11T13:58:32.447839-07:00,1000.7117309570312,10.733954,10733.954 +36600,2025-03-11T13:58:43.175731-07:00,1000.7196655273438,10.727892,10727.892 +36601,2025-03-11T13:58:53.905665-07:00,1000.69189453125,10.729934,10729.934 +36602,2025-03-11T13:59:04.643747-07:00,1000.6865844726562,10.738082,10738.082 +36603,2025-03-11T13:59:15.383020-07:00,1000.6720581054688,10.739273,10739.273 +36604,2025-03-11T13:59:26.115876-07:00,1000.6702880859375,10.732856,10732.856 +36605,2025-03-11T13:59:36.849674-07:00,1000.6358032226562,10.733798,10733.798 +36606,2025-03-11T13:59:47.576850-07:00,1000.6741943359375,10.727176,10727.176 +36607,2025-03-11T13:59:58.311670-07:00,1000.63720703125,10.73482,10734.82 +36608,2025-03-11T14:00:09.055022-07:00,1000.6344604492188,10.743352,10743.352 +36609,2025-03-11T14:00:19.783665-07:00,1000.6490478515625,10.728643,10728.643 +36610,2025-03-11T14:00:30.523965-07:00,1000.6344604492188,10.7403,10740.3 +36611,2025-03-11T14:00:41.253719-07:00,1000.6741943359375,10.729754,10729.754 +36612,2025-03-11T14:00:51.993728-07:00,1000.654296875,10.740009,10740.009 +36613,2025-03-11T14:01:02.727693-07:00,1000.6609497070312,10.733965,10733.965 +36614,2025-03-11T14:01:13.462632-07:00,1000.6195068359375,10.734939,10734.939 +36615,2025-03-11T14:01:24.194488-07:00,1000.6101684570312,10.731856,10731.856 +36616,2025-03-11T14:01:34.925749-07:00,1000.6217041015625,10.731261,10731.261 +36617,2025-03-11T14:01:45.654877-07:00,1000.6282958984375,10.729128,10729.128 +36618,2025-03-11T14:01:56.394835-07:00,1000.6300048828125,10.739958,10739.958 +36619,2025-03-11T14:02:07.127813-07:00,1000.6150512695312,10.732978,10732.978 +36620,2025-03-11T14:02:17.859724-07:00,1000.6070556640625,10.731911,10731.911 +36621,2025-03-11T14:02:28.585830-07:00,1000.5642700195312,10.726106,10726.106 +36622,2025-03-11T14:02:39.319730-07:00,1000.592529296875,10.7339,10733.9 +36623,2025-03-11T14:02:50.061875-07:00,1000.5841674804688,10.742145,10742.145 +36624,2025-03-11T14:03:00.792666-07:00,1000.6040649414062,10.730791,10730.791 +36625,2025-03-11T14:03:11.518887-07:00,1000.6290893554688,10.726221,10726.221 +36626,2025-03-11T14:03:22.256666-07:00,1000.6026611328125,10.737779,10737.779 +36627,2025-03-11T14:03:32.985668-07:00,1000.6040649414062,10.729002,10729.002 +36628,2025-03-11T14:03:43.726027-07:00,1000.58935546875,10.740359,10740.359 +36629,2025-03-11T14:03:54.457348-07:00,1000.6304931640625,10.731321,10731.321 +36630,2025-03-11T14:04:05.187666-07:00,1000.6062622070312,10.730318,10730.318 +36631,2025-03-11T14:04:15.925806-07:00,1000.6358032226562,10.73814,10738.14 +36632,2025-03-11T14:04:26.660666-07:00,1000.642333984375,10.73486,10734.86 +36633,2025-03-11T14:04:37.387672-07:00,1000.6343994140625,10.727006,10727.006 +36634,2025-03-11T14:04:48.118877-07:00,1000.614501953125,10.731205,10731.205 +36635,2025-03-11T14:04:58.857362-07:00,1000.6062622070312,10.738485,10738.485 +36636,2025-03-11T14:05:09.593868-07:00,1000.5863037109375,10.736506,10736.506 +36637,2025-03-11T14:05:20.326699-07:00,1000.5863037109375,10.732831,10732.831 +36638,2025-03-11T14:05:31.056728-07:00,1000.614501953125,10.730029,10730.029 +36639,2025-03-11T14:05:41.790687-07:00,1000.5797119140625,10.733959,10733.959 +36640,2025-03-11T14:05:52.532859-07:00,1000.5717163085938,10.742172,10742.172 +36641,2025-03-11T14:06:03.259919-07:00,1000.6026611328125,10.72706,10727.06 +36642,2025-03-11T14:06:13.997667-07:00,1000.56298828125,10.737748,10737.748 +36643,2025-03-11T14:06:24.735856-07:00,1000.568115234375,10.738189,10738.189 +36644,2025-03-11T14:06:35.470844-07:00,1000.5576782226562,10.734988,10734.988 +36645,2025-03-11T14:06:46.196680-07:00,1000.5841674804688,10.725836,10725.836 +36646,2025-03-11T14:06:56.928984-07:00,1000.5593872070312,10.732304,10732.304 +36647,2025-03-11T14:07:07.663849-07:00,1000.6040649414062,10.734865,10734.865 +36648,2025-03-11T14:07:18.396813-07:00,1000.5841674804688,10.732964,10732.964 +36649,2025-03-11T14:07:29.129665-07:00,1000.5725708007812,10.732852,10732.852 +36650,2025-03-11T14:07:39.858958-07:00,1000.5540771484375,10.729293,10729.293 +36651,2025-03-11T14:07:50.596500-07:00,1000.56591796875,10.737542,10737.542 +36652,2025-03-11T14:08:01.334669-07:00,1000.5576782226562,10.738169,10738.169 +36653,2025-03-11T14:08:12.071772-07:00,1000.552734375,10.737103,10737.103 +36654,2025-03-11T14:08:22.804669-07:00,1000.5443725585938,10.732897,10732.897 +36655,2025-03-11T14:08:33.541058-07:00,1000.5576782226562,10.736389,10736.389 +36656,2025-03-11T14:08:44.270666-07:00,1000.560791015625,10.729608,10729.608 +36657,2025-03-11T14:08:55.012864-07:00,1000.5328369140625,10.742198,10742.198 +36658,2025-03-11T14:09:05.748670-07:00,1000.5113525390625,10.735806,10735.806 +36659,2025-03-11T14:09:16.472381-07:00,1000.5064086914062,10.723711,10723.711 +36660,2025-03-11T14:09:27.214833-07:00,1000.512939453125,10.742452,10742.452 +36661,2025-03-11T14:09:37.947758-07:00,1000.560791015625,10.732925,10732.925 +36662,2025-03-11T14:09:48.681956-07:00,1000.499755859375,10.734198,10734.198 +36663,2025-03-11T14:09:59.405245-07:00,1000.514404296875,10.723289,10723.289 +36664,2025-03-11T14:10:10.147663-07:00,1000.4812622070312,10.742418,10742.418 +36665,2025-03-11T14:10:20.876851-07:00,1000.5078125,10.729188,10729.188 +36666,2025-03-11T14:10:31.609076-07:00,1000.5078125,10.732225,10732.225 +36667,2025-03-11T14:10:42.351873-07:00,1000.499755859375,10.742797,10742.797 +36668,2025-03-11T14:10:53.081871-07:00,1000.499755859375,10.729998,10729.998 +36669,2025-03-11T14:11:03.822668-07:00,1000.4715576171875,10.740797,10740.797 +36670,2025-03-11T14:11:14.556884-07:00,1000.4371337890625,10.734216,10734.216 +36671,2025-03-11T14:11:25.296836-07:00,1000.4423217773438,10.739952,10739.952 +36672,2025-03-11T14:11:36.025957-07:00,1000.4392700195312,10.729121,10729.121 +36673,2025-03-11T14:11:46.760667-07:00,1000.462158203125,10.73471,10734.71 +36674,2025-03-11T14:11:57.502903-07:00,1000.462158203125,10.742236,10742.236 +36675,2025-03-11T14:12:08.232850-07:00,1000.4290771484375,10.729947,10729.947 +36676,2025-03-11T14:12:18.965740-07:00,1000.462158203125,10.73289,10732.89 +36677,2025-03-11T14:12:29.705676-07:00,1000.435791015625,10.739936,10739.936 +36678,2025-03-11T14:12:40.437665-07:00,1000.4473266601562,10.731989,10731.989 +36679,2025-03-11T14:12:51.177822-07:00,1000.47021484375,10.740157,10740.157 +36680,2025-03-11T14:13:01.909890-07:00,1000.4313354492188,10.732068,10732.068 +36681,2025-03-11T14:13:12.638874-07:00,1000.4274291992188,10.728984,10728.984 +36682,2025-03-11T14:13:23.376843-07:00,1000.43408203125,10.737969,10737.969 +36683,2025-03-11T14:13:34.105366-07:00,1000.4142456054688,10.728523,10728.523 +36684,2025-03-11T14:13:44.841666-07:00,1000.4075927734375,10.7363,10736.3 +36685,2025-03-11T14:13:55.576872-07:00,1000.41943359375,10.735206,10735.206 +36686,2025-03-11T14:14:06.303984-07:00,1000.412841796875,10.727112,10727.112 +36687,2025-03-11T14:14:17.044731-07:00,1000.385009765625,10.740747,10740.747 +36688,2025-03-11T14:14:27.771670-07:00,1000.3836059570312,10.726939,10726.939 +36689,2025-03-11T14:14:38.505820-07:00,1000.3504638671875,10.73415,10734.15 +36690,2025-03-11T14:14:49.238726-07:00,1000.3796997070312,10.732906,10732.906 +36691,2025-03-11T14:14:59.972695-07:00,1000.385009765625,10.733969,10733.969 +36692,2025-03-11T14:15:10.709694-07:00,1000.398193359375,10.736999,10736.999 +36693,2025-03-11T14:15:21.439997-07:00,1000.385009765625,10.730303,10730.303 +36694,2025-03-11T14:15:32.176430-07:00,1000.3915405273438,10.736433,10736.433 +36695,2025-03-11T14:15:42.901251-07:00,1000.3783569335938,10.724821,10724.821 +36696,2025-03-11T14:15:53.639840-07:00,1000.366455078125,10.738589,10738.589 +36697,2025-03-11T14:16:04.371850-07:00,1000.3651733398438,10.73201,10732.01 +36698,2025-03-11T14:16:15.101903-07:00,1000.3703002929688,10.730053,10730.053 +36699,2025-03-11T14:16:25.834665-07:00,1000.3796997070312,10.732762,10732.762 +36700,2025-03-11T14:16:36.569675-07:00,1000.3504638671875,10.73501,10735.01 +36701,2025-03-11T14:16:47.304058-07:00,1000.3783569335938,10.734383,10734.383 +36702,2025-03-11T14:16:58.047805-07:00,1000.362060546875,10.743747,10743.747 +36703,2025-03-11T14:17:08.775667-07:00,1000.3306274414062,10.727862,10727.862 +36704,2025-03-11T14:17:19.513860-07:00,1000.3504638671875,10.738193,10738.193 +36705,2025-03-11T14:17:30.243127-07:00,1000.36865234375,10.729267,10729.267 +36706,2025-03-11T14:17:40.985665-07:00,1000.3394775390625,10.742538,10742.538 +36707,2025-03-11T14:17:51.714860-07:00,1000.3223266601562,10.729195,10729.195 +36708,2025-03-11T14:18:02.457669-07:00,1000.3421630859375,10.742809,10742.809 +36709,2025-03-11T14:18:13.194033-07:00,1000.3884887695312,10.736364,10736.364 +36710,2025-03-11T14:18:23.926690-07:00,1000.36865234375,10.732657,10732.657 +36711,2025-03-11T14:18:34.659668-07:00,1000.3328247070312,10.732978,10732.978 +36712,2025-03-11T14:18:45.399788-07:00,1000.3262329101562,10.74012,10740.12 +36713,2025-03-11T14:18:56.141061-07:00,1000.3407592773438,10.741273,10741.273 +36714,2025-03-11T14:19:06.871933-07:00,1000.3289184570312,10.730872,10730.872 +36715,2025-03-11T14:19:17.605737-07:00,1000.347412109375,10.733804,10733.804 +36716,2025-03-11T14:19:28.342667-07:00,1000.3245239257812,10.73693,10736.93 +36717,2025-03-11T14:19:39.076671-07:00,1000.3143920898438,10.734004,10734.004 +36718,2025-03-11T14:19:49.819820-07:00,1000.347412109375,10.743149,10743.149 +36719,2025-03-11T14:20:00.546791-07:00,1000.3223266601562,10.726971,10726.971 +36720,2025-03-11T14:20:11.286871-07:00,1000.3223266601562,10.74008,10740.08 +36721,2025-03-11T14:20:22.021800-07:00,1000.3372802734375,10.734929,10734.929 +36722,2025-03-11T14:20:32.751846-07:00,1000.2957763671875,10.730046,10730.046 +36723,2025-03-11T14:20:43.487666-07:00,1000.3223266601562,10.73582,10735.82 +36724,2025-03-11T14:20:54.225667-07:00,1000.3372802734375,10.738001,10738.001 +36725,2025-03-11T14:21:04.960729-07:00,1000.3076782226562,10.735062,10735.062 +36726,2025-03-11T14:21:15.693865-07:00,1000.34521484375,10.733136,10733.136 +36727,2025-03-11T14:21:26.427999-07:00,1000.30908203125,10.734134,10734.134 +36728,2025-03-11T14:21:37.164854-07:00,1000.2974853515625,10.736855,10736.855 +36729,2025-03-11T14:21:47.891872-07:00,1000.2957763671875,10.727018,10727.018 +36730,2025-03-11T14:21:58.633848-07:00,1000.3143920898438,10.741976,10741.976 +36731,2025-03-11T14:22:09.365669-07:00,1000.2996826171875,10.731821,10731.821 +36732,2025-03-11T14:22:20.104790-07:00,1000.2931518554688,10.739121,10739.121 +36733,2025-03-11T14:22:30.839664-07:00,1000.2864990234375,10.734874,10734.874 +36734,2025-03-11T14:22:41.579669-07:00,1000.2715454101562,10.740005,10740.005 +36735,2025-03-11T14:22:52.311851-07:00,1000.2847900390625,10.732182,10732.182 +36736,2025-03-11T14:23:03.040868-07:00,1000.2913818359375,10.729017,10729.017 +36737,2025-03-11T14:23:13.773838-07:00,1000.283447265625,10.73297,10732.97 +36738,2025-03-11T14:23:24.516402-07:00,1000.3032836914062,10.742564,10742.564 +36739,2025-03-11T14:23:35.241669-07:00,1000.2687377929688,10.725267,10725.267 +36740,2025-03-11T14:23:45.979669-07:00,1000.2820434570312,10.738,10738.0 +36741,2025-03-11T14:23:56.711668-07:00,1000.2689819335938,10.731999,10731.999 +36742,2025-03-11T14:24:07.445854-07:00,1000.2676391601562,10.734186,10734.186 +36743,2025-03-11T14:24:18.176661-07:00,1000.2860717773438,10.730807,10730.807 +36744,2025-03-11T14:24:28.918966-07:00,1000.2896728515625,10.742305,10742.305 +36745,2025-03-11T14:24:39.647088-07:00,1000.2560424804688,10.728122,10728.122 +36746,2025-03-11T14:24:50.384852-07:00,1000.2815551757812,10.737764,10737.764 +36747,2025-03-11T14:25:01.119875-07:00,1000.2462768554688,10.735023,10735.023 +36748,2025-03-11T14:25:11.853715-07:00,1000.2638549804688,10.73384,10733.84 +36749,2025-03-11T14:25:22.582830-07:00,1000.2684936523438,10.729115,10729.115 +36750,2025-03-11T14:25:33.326856-07:00,1000.2424926757812,10.744026,10744.026 +36751,2025-03-11T14:25:44.052661-07:00,1000.2535400390625,10.725805,10725.805 +36752,2025-03-11T14:25:54.791874-07:00,1000.231689453125,10.739213,10739.213 +36753,2025-03-11T14:26:05.526146-07:00,1000.2029418945312,10.734272,10734.272 +36754,2025-03-11T14:26:16.251668-07:00,1000.1860961914062,10.725522,10725.522 +36755,2025-03-11T14:26:26.991761-07:00,1000.2146606445312,10.740093,10740.093 +36756,2025-03-11T14:26:37.715740-07:00,1000.21240234375,10.723979,10723.979 +36757,2025-03-11T14:26:48.454854-07:00,1000.2212524414062,10.739114,10739.114 +36758,2025-03-11T14:26:59.182665-07:00,1000.2203369140625,10.727811,10727.811 +36759,2025-03-11T14:27:09.918719-07:00,1000.234375,10.736054,10736.054 +36760,2025-03-11T14:27:20.646850-07:00,1000.2149047851562,10.728131,10728.131 +36761,2025-03-11T14:27:31.384670-07:00,1000.2039184570312,10.73782,10737.82 +36762,2025-03-11T14:27:42.111884-07:00,1000.21923828125,10.727214,10727.214 +36763,2025-03-11T14:27:52.847721-07:00,1000.206787109375,10.735837,10735.837 +36764,2025-03-11T14:28:03.582924-07:00,1000.23681640625,10.735203,10735.203 +36765,2025-03-11T14:28:14.313662-07:00,1000.2402954101562,10.730738,10730.738 +36766,2025-03-11T14:28:25.049669-07:00,1000.2160034179688,10.736007,10736.007 +36767,2025-03-11T14:28:35.778056-07:00,1000.1934204101562,10.728387,10728.387 +36768,2025-03-11T14:28:46.507666-07:00,1000.2154541015625,10.72961,10729.61 +36769,2025-03-11T14:28:57.247667-07:00,1000.1925048828125,10.740001,10740.001 +36770,2025-03-11T14:29:07.978306-07:00,1000.1748657226562,10.730639,10730.639 +36771,2025-03-11T14:29:18.709694-07:00,1000.1964111328125,10.731388,10731.388 +36772,2025-03-11T14:29:29.441883-07:00,1000.1964111328125,10.732189,10732.189 +36773,2025-03-11T14:29:40.178759-07:00,1000.2051391601562,10.736876,10736.876 +36774,2025-03-11T14:29:50.916355-07:00,1000.20654296875,10.737596,10737.596 +36775,2025-03-11T14:30:01.642666-07:00,1000.190185546875,10.726311,10726.311 +36776,2025-03-11T14:30:12.374668-07:00,1000.1874389648438,10.732002,10732.002 +36777,2025-03-11T14:30:23.101071-07:00,1000.19677734375,10.726403,10726.403 +36778,2025-03-11T14:30:33.838320-07:00,1000.1690063476562,10.737249,10737.249 +36779,2025-03-11T14:30:44.567729-07:00,1000.1702880859375,10.729409,10729.409 +36780,2025-03-11T14:30:55.301568-07:00,1000.162353515625,10.733839,10733.839 +36781,2025-03-11T14:31:06.035026-07:00,1000.15576171875,10.733458,10733.458 +36782,2025-03-11T14:31:16.767866-07:00,1000.1769409179688,10.73284,10732.84 +36783,2025-03-11T14:31:27.496666-07:00,1000.1425170898438,10.7288,10728.8 +36784,2025-03-11T14:31:38.231851-07:00,1000.185302734375,10.735185,10735.185 +36785,2025-03-11T14:31:48.961666-07:00,1000.1720581054688,10.729815,10729.815 +36786,2025-03-11T14:31:59.691670-07:00,1000.13232421875,10.730004,10730.004 +36787,2025-03-11T14:32:10.425848-07:00,1000.1483764648438,10.734178,10734.178 +36788,2025-03-11T14:32:21.166404-07:00,1000.1632690429688,10.740556,10740.556 +36789,2025-03-11T14:32:31.896669-07:00,1000.1712646484375,10.730265,10730.265 +36790,2025-03-11T14:32:42.622881-07:00,1000.146240234375,10.726212,10726.212 +36791,2025-03-11T14:32:53.361842-07:00,1000.1638793945312,10.738961,10738.961 +36792,2025-03-11T14:33:04.091668-07:00,1000.137451171875,10.729826,10729.826 +36793,2025-03-11T14:33:14.831725-07:00,1000.1788330078125,10.740057,10740.057 +36794,2025-03-11T14:33:25.562845-07:00,1000.1815795898438,10.73112,10731.12 +36795,2025-03-11T14:33:36.288872-07:00,1000.1683349609375,10.726027,10726.027 +36796,2025-03-11T14:33:47.024666-07:00,1000.1251831054688,10.735794,10735.794 +36797,2025-03-11T14:33:57.765969-07:00,1000.134521484375,10.741303,10741.303 +36798,2025-03-11T14:34:08.494865-07:00,1000.142822265625,10.728896,10728.896 +36799,2025-03-11T14:34:19.228692-07:00,1000.1124877929688,10.733827,10733.827 +36800,2025-03-11T14:34:29.966668-07:00,1000.1420288085938,10.737976,10737.976 +36801,2025-03-11T14:34:40.706663-07:00,1000.130126953125,10.739995,10739.995 +36802,2025-03-11T14:34:51.438077-07:00,1000.10546875,10.731414,10731.414 +36803,2025-03-11T14:35:02.175902-07:00,1000.116455078125,10.737825,10737.825 +36804,2025-03-11T14:35:12.915099-07:00,1000.1015625,10.739197,10739.197 +36805,2025-03-11T14:35:23.644158-07:00,1000.1192016601562,10.729059,10729.059 +36806,2025-03-11T14:35:34.377696-07:00,1000.12060546875,10.733538,10733.538 +36807,2025-03-11T14:35:45.122751-07:00,1000.1090698242188,10.745055,10745.055 +36808,2025-03-11T14:35:55.849842-07:00,1000.1218872070312,10.727091,10727.091 +36809,2025-03-11T14:36:06.586870-07:00,1000.12841796875,10.737028,10737.028 +36810,2025-03-11T14:36:17.330669-07:00,1000.1182861328125,10.743799,10743.799 +36811,2025-03-11T14:36:28.068128-07:00,1000.0800170898438,10.737459,10737.459 +36812,2025-03-11T14:36:38.797956-07:00,1000.1109619140625,10.729828,10729.828 +36813,2025-03-11T14:36:49.535780-07:00,1000.1087646484375,10.737824,10737.824 +36814,2025-03-11T14:37:00.273692-07:00,1000.1021118164062,10.737912,10737.912 +36815,2025-03-11T14:37:11.013669-07:00,1000.0850219726562,10.739977,10739.977 +36816,2025-03-11T14:37:21.749881-07:00,1000.0734252929688,10.736212,10736.212 +36817,2025-03-11T14:37:32.477829-07:00,1000.0779418945312,10.727948,10727.948 +36818,2025-03-11T14:37:43.219668-07:00,1000.0806274414062,10.741839,10741.839 +36819,2025-03-11T14:37:53.952689-07:00,1000.0970458984375,10.733021,10733.021 +36820,2025-03-11T14:38:04.685487-07:00,1000.0917358398438,10.732798,10732.798 +36821,2025-03-11T14:38:15.424233-07:00,1000.0829467773438,10.738746,10738.746 +36822,2025-03-11T14:38:26.159666-07:00,1000.07763671875,10.735433,10735.433 +36823,2025-03-11T14:38:36.895669-07:00,1000.0741577148438,10.736003,10736.003 +36824,2025-03-11T14:38:47.638667-07:00,1000.06396484375,10.742998,10742.998 +36825,2025-03-11T14:38:58.371871-07:00,1000.0521240234375,10.733204,10733.204 +36826,2025-03-11T14:39:09.114849-07:00,1000.0353393554688,10.742978,10742.978 +36827,2025-03-11T14:39:19.842855-07:00,1000.0513305664062,10.728006,10728.006 +36828,2025-03-11T14:39:30.586870-07:00,1000.0265502929688,10.744015,10744.015 +36829,2025-03-11T14:39:41.323669-07:00,1000.0108032226562,10.736799,10736.799 +36830,2025-03-11T14:39:52.060955-07:00,1000.0257568359375,10.737286,10737.286 +36831,2025-03-11T14:40:02.793666-07:00,1000.0086059570312,10.732711,10732.711 +36832,2025-03-11T14:40:13.531732-07:00,1000.0169677734375,10.738066,10738.066 +36833,2025-03-11T14:40:24.272905-07:00,1000.0131225585938,10.741173,10741.173 +36834,2025-03-11T14:40:35.004672-07:00,1000.0477905273438,10.731767,10731.767 +36835,2025-03-11T14:40:45.743264-07:00,1000.0257568359375,10.738592,10738.592 +36836,2025-03-11T14:40:56.481973-07:00,1000.00732421875,10.738709,10738.709 +36837,2025-03-11T14:41:07.217711-07:00,999.9905395507812,10.735738,10735.738 +36838,2025-03-11T14:41:17.962666-07:00,999.97998046875,10.744955,10744.955 +36839,2025-03-11T14:41:28.698838-07:00,999.988037109375,10.736172,10736.172 +36840,2025-03-11T14:41:39.427845-07:00,999.9990844726562,10.729007,10729.007 +36841,2025-03-11T14:41:50.169443-07:00,999.9968872070312,10.741598,10741.598 +36842,2025-03-11T14:42:00.903871-07:00,999.970458984375,10.734428,10734.428 +36843,2025-03-11T14:42:11.641672-07:00,999.997802734375,10.737801,10737.801 +36844,2025-03-11T14:42:22.370886-07:00,999.9674072265625,10.729214,10729.214 +36845,2025-03-11T14:42:33.113850-07:00,999.9674072265625,10.742964,10742.964 +36846,2025-03-11T14:42:43.844670-07:00,999.9801635742188,10.73082,10730.82 +36847,2025-03-11T14:42:54.586827-07:00,999.9417724609375,10.742157,10742.157 +36848,2025-03-11T14:43:05.324672-07:00,999.9630737304688,10.737845,10737.845 +36849,2025-03-11T14:43:16.061670-07:00,999.9595336914062,10.736998,10736.998 +36850,2025-03-11T14:43:26.797280-07:00,999.927734375,10.73561,10735.61 +36851,2025-03-11T14:43:37.528672-07:00,999.9735717773438,10.731392,10731.392 +36852,2025-03-11T14:43:48.272674-07:00,999.9484252929688,10.744002,10744.002 +36853,2025-03-11T14:43:59.005673-07:00,999.947998046875,10.732999,10732.999 +36854,2025-03-11T14:44:09.738861-07:00,999.920654296875,10.733188,10733.188 +36855,2025-03-11T14:44:20.479693-07:00,999.897216796875,10.740832,10740.832 +36856,2025-03-11T14:44:31.220663-07:00,999.888427734375,10.74097,10740.97 +36857,2025-03-11T14:44:41.947746-07:00,999.8994750976562,10.727083,10727.083 +36858,2025-03-11T14:44:52.694074-07:00,999.8972778320312,10.746328,10746.328 +36859,2025-03-11T14:45:03.422381-07:00,999.9241943359375,10.728307,10728.307 +36860,2025-03-11T14:45:14.165695-07:00,999.9154663085938,10.743314,10743.314 +36861,2025-03-11T14:45:24.896824-07:00,999.926513671875,10.731129,10731.129 +36862,2025-03-11T14:45:35.635670-07:00,999.90576171875,10.738846,10738.846 +36863,2025-03-11T14:45:46.371753-07:00,999.9286499023438,10.736083,10736.083 +36864,2025-03-11T14:45:57.096667-07:00,999.9706420898438,10.724914,10724.914 +36865,2025-03-11T14:45:58.041020-07:00,999.9559936523438,0.944353,944.353 +36866,2025-03-11T14:46:07.837879-07:00,999.9255981445312,9.796859,9796.859 +36867,2025-03-11T14:46:18.571864-07:00,999.9299926757812,10.733985,10733.985 +36868,2025-03-11T14:46:29.311892-07:00,999.9556884765625,10.740028,10740.028 +36869,2025-03-11T14:46:40.044666-07:00,999.973388671875,10.732774,10732.774 +36870,2025-03-11T14:46:50.785738-07:00,999.9512329101562,10.741072,10741.072 +36871,2025-03-11T14:47:01.521664-07:00,999.9344482421875,10.735926,10735.926 +36872,2025-03-11T14:47:12.253662-07:00,999.8990478515625,10.731998,10731.998 +36873,2025-03-11T14:47:22.994057-07:00,999.908447265625,10.740395,10740.395 +36874,2025-03-11T14:47:33.730690-07:00,999.9622802734375,10.736633,10736.633 +36875,2025-03-11T14:47:44.465702-07:00,999.9503784179688,10.735012,10735.012 +36876,2025-03-11T14:47:55.199788-07:00,999.94677734375,10.734086,10734.086 +36877,2025-03-11T14:48:05.936691-07:00,999.9230346679688,10.736903,10736.903 +36878,2025-03-11T14:48:16.673221-07:00,999.948974609375,10.73653,10736.53 +36879,2025-03-11T14:48:27.400667-07:00,999.9715576171875,10.727446,10727.446 +36880,2025-03-11T14:48:38.135131-07:00,999.936279296875,10.734464,10734.464 +36881,2025-03-11T14:48:48.870884-07:00,999.9326782226562,10.735753,10735.753 +36882,2025-03-11T14:48:59.612459-07:00,999.9092407226562,10.741575,10741.575 +36883,2025-03-11T14:49:10.342879-07:00,999.923828125,10.73042,10730.42 +36884,2025-03-11T14:49:21.078695-07:00,999.90673828125,10.735816,10735.816 +36885,2025-03-11T14:49:31.811846-07:00,999.9246826171875,10.733151,10733.151 +36886,2025-03-11T14:49:42.551192-07:00,999.8931884765625,10.739346,10739.346 +36887,2025-03-11T14:49:53.280667-07:00,999.8931884765625,10.729475,10729.475 +36888,2025-03-11T14:50:04.021666-07:00,999.9092407226562,10.740999,10740.999 +36889,2025-03-11T14:50:14.746902-07:00,999.8856811523438,10.725236,10725.236 +36890,2025-03-11T14:50:25.488347-07:00,999.91748046875,10.741445,10741.445 +36891,2025-03-11T14:50:36.220696-07:00,999.892333984375,10.732349,10732.349 +36892,2025-03-11T14:50:46.951951-07:00,999.9519653320312,10.731255,10731.255 +36893,2025-03-11T14:50:57.693133-07:00,999.9056396484375,10.741182,10741.182 +36894,2025-03-11T14:51:08.426166-07:00,999.906982421875,10.733033,10733.033 +36895,2025-03-11T14:51:19.159897-07:00,999.906982421875,10.733731,10733.731 +36896,2025-03-11T14:51:29.886737-07:00,999.8671875,10.72684,10726.84 +36897,2025-03-11T14:51:40.615732-07:00,999.8914184570312,10.728995,10728.995 +36898,2025-03-11T14:51:51.347749-07:00,999.89013671875,10.732017,10732.017 +36899,2025-03-11T14:52:02.079019-07:00,999.9113159179688,10.73127,10731.27 +36900,2025-03-11T14:52:12.818838-07:00,999.91796875,10.739819,10739.819 +36901,2025-03-11T14:52:23.545669-07:00,999.932861328125,10.726831,10726.831 +36902,2025-03-11T14:52:34.283769-07:00,999.9046630859375,10.7381,10738.1 +36903,2025-03-11T14:52:45.020671-07:00,999.9408569335938,10.736902,10736.902 +36904,2025-03-11T14:52:55.755103-07:00,999.92626953125,10.734432,10734.432 +36905,2025-03-11T14:53:06.483669-07:00,999.9090576171875,10.728566,10728.566 +36906,2025-03-11T14:53:17.220679-07:00,999.9143676757812,10.73701,10737.01 +36907,2025-03-11T14:53:27.953875-07:00,999.89453125,10.733196,10733.196 +36908,2025-03-11T14:53:38.757646-07:00,999.8812255859375,10.803771,10803.771 +36909,2025-03-11T14:53:49.483515-07:00,999.8798217773438,10.725869,10725.869 +36910,2025-03-11T14:54:00.217540-07:00,999.8826293945312,10.734025,10734.025 +36911,2025-03-11T14:54:10.951700-07:00,999.8812255859375,10.73416,10734.16 +36912,2025-03-11T14:54:21.682514-07:00,999.9064331054688,10.730814,10730.814 +36913,2025-03-11T14:54:32.423560-07:00,999.8679809570312,10.741046,10741.046 +36914,2025-03-11T14:54:43.152508-07:00,999.89453125,10.728948,10728.948 +36915,2025-03-11T14:54:53.884206-07:00,999.864990234375,10.731698,10731.698 +36916,2025-03-11T14:55:04.621510-07:00,999.8878784179688,10.737304,10737.304 +36917,2025-03-11T14:55:15.353689-07:00,999.8666381835938,10.732179,10732.179 +36918,2025-03-11T14:55:26.087514-07:00,999.8746337890625,10.733825,10733.825 +36919,2025-03-11T14:55:36.829650-07:00,999.8878784179688,10.742136,10742.136 +36920,2025-03-11T14:55:47.554495-07:00,999.8798217773438,10.724845,10724.845 +36921,2025-03-11T14:55:58.290671-07:00,999.8768920898438,10.736176,10736.176 +36922,2025-03-11T14:56:09.029922-07:00,999.87158203125,10.739251,10739.251 +36923,2025-03-11T14:56:19.763365-07:00,999.90771484375,10.733443,10733.443 +36924,2025-03-11T14:56:30.492513-07:00,999.91796875,10.729148,10729.148 +36925,2025-03-11T14:56:41.225732-07:00,999.91796875,10.733219,10733.219 +36926,2025-03-11T14:56:51.964584-07:00,999.9085693359375,10.738852,10738.852 +36927,2025-03-11T14:57:02.701334-07:00,999.8953247070312,10.73675,10736.75 +36928,2025-03-11T14:57:13.437511-07:00,999.8953247070312,10.736177,10736.177 +36929,2025-03-11T14:57:24.174606-07:00,999.9085693359375,10.737095,10737.095 +36930,2025-03-11T14:57:34.902881-07:00,999.9020385742188,10.728275,10728.275 +36931,2025-03-11T14:57:45.638311-07:00,999.8936767578125,10.73543,10735.43 +36932,2025-03-11T14:57:56.362514-07:00,999.9085693359375,10.724203,10724.203 +36933,2025-03-11T14:58:07.100033-07:00,999.91357421875,10.737519,10737.519 +36934,2025-03-11T14:58:17.835675-07:00,999.9351806640625,10.735642,10735.642 +36935,2025-03-11T14:58:28.560574-07:00,999.91357421875,10.724899,10724.899 +36936,2025-03-11T14:58:39.297249-07:00,999.8936767578125,10.736675,10736.675 +36937,2025-03-11T14:58:50.028701-07:00,999.89892578125,10.731452,10731.452 +36938,2025-03-11T14:59:00.756514-07:00,999.91357421875,10.727813,10727.813 +36939,2025-03-11T14:59:11.494510-07:00,999.9334106445312,10.737996,10737.996 +36940,2025-03-11T14:59:22.220699-07:00,999.9334106445312,10.726189,10726.189 +36941,2025-03-11T14:59:32.961647-07:00,999.9320068359375,10.740948,10740.948 +36942,2025-03-11T14:59:43.686511-07:00,999.9334106445312,10.724864,10724.864 +36943,2025-03-11T14:59:54.415903-07:00,999.9121704101562,10.729392,10729.392 +36944,2025-03-11T15:00:05.146717-07:00,999.9254760742188,10.730814,10730.814 +36945,2025-03-11T15:00:15.877510-07:00,999.910888671875,10.730793,10730.793 +36946,2025-03-11T15:00:26.619513-07:00,999.9224243164062,10.742003,10742.003 +36947,2025-03-11T15:00:37.348924-07:00,999.9307250976562,10.729411,10729.411 +36948,2025-03-11T15:00:48.084745-07:00,999.9290771484375,10.735821,10735.821 +36949,2025-03-11T15:00:58.823726-07:00,999.9210815429688,10.738981,10738.981 +36950,2025-03-11T15:01:09.548056-07:00,999.873291015625,10.72433,10724.33 +36951,2025-03-11T15:01:20.287682-07:00,999.8998413085938,10.739626,10739.626 +36952,2025-03-11T15:01:31.010813-07:00,999.883544921875,10.723131,10723.131 +36953,2025-03-11T15:01:41.748656-07:00,999.868896484375,10.737843,10737.843 +36954,2025-03-11T15:01:52.483669-07:00,999.89013671875,10.735013,10735.013 +36955,2025-03-11T15:02:03.210721-07:00,999.8668823242188,10.727052,10727.052 +36956,2025-03-11T15:02:09.939442-07:00,999.868896484375,6.728721,6728.721 +36957,2025-03-11T15:02:13.941734-07:00,999.880126953125,4.002292,4002.292 +36958,2025-03-11T15:02:24.669700-07:00,999.9000244140625,10.727966,10727.966 +36959,2025-03-11T15:02:35.408511-07:00,999.885498046875,10.738811,10738.811 +36960,2025-03-11T15:02:46.145573-07:00,999.8707885742188,10.737062,10737.062 +36961,2025-03-11T15:02:56.875814-07:00,999.8576049804688,10.730241,10730.241 +36962,2025-03-11T15:03:07.613792-07:00,999.884033203125,10.737978,10737.978 +36963,2025-03-11T15:03:18.345605-07:00,999.8509521484375,10.731813,10731.813 +36964,2025-03-11T15:03:29.079508-07:00,999.9053344726562,10.733903,10733.903 +36965,2025-03-11T15:03:39.814809-07:00,999.9039306640625,10.735301,10735.301 +36966,2025-03-11T15:03:50.544185-07:00,999.86279296875,10.729376,10729.376 +36967,2025-03-11T15:04:01.279506-07:00,999.8775024414062,10.735321,10735.321 +36968,2025-03-11T15:04:12.012521-07:00,999.8867797851562,10.733015,10733.015 +36969,2025-03-11T15:04:22.740915-07:00,999.8523559570312,10.728394,10728.394 +36970,2025-03-11T15:04:33.473664-07:00,999.8556518554688,10.732749,10732.749 +36971,2025-03-11T15:04:44.205514-07:00,999.8490600585938,10.73185,10731.85 +36972,2025-03-11T15:04:54.943687-07:00,999.868896484375,10.738173,10738.173 +36973,2025-03-11T15:05:05.678672-07:00,999.8636474609375,10.734985,10734.985 +36974,2025-03-11T15:05:16.410716-07:00,999.8716430664062,10.732044,10732.044 +36975,2025-03-11T15:05:27.143510-07:00,999.8755493164062,10.732794,10732.794 +36976,2025-03-11T15:05:37.866407-07:00,999.8424072265625,10.722897,10722.897 +36977,2025-03-11T15:05:48.599830-07:00,999.8490600585938,10.733423,10733.423 +36978,2025-03-11T15:05:59.331671-07:00,999.8570556640625,10.731841,10731.841 +36979,2025-03-11T15:06:10.066660-07:00,999.8782958984375,10.734989,10734.989 +36980,2025-03-11T15:06:20.802587-07:00,999.8636474609375,10.735927,10735.927 +36981,2025-03-11T15:06:31.533506-07:00,999.8636474609375,10.730919,10730.919 +36982,2025-03-11T15:06:42.271728-07:00,999.860107421875,10.738222,10738.222 +36983,2025-03-11T15:06:52.996990-07:00,999.8998413085938,10.725262,10725.262 +36984,2025-03-11T15:07:03.737538-07:00,999.873291015625,10.740548,10740.548 +36985,2025-03-11T15:07:14.466512-07:00,999.8336181640625,10.728974,10728.974 +36986,2025-03-11T15:07:25.199879-07:00,999.873291015625,10.733367,10733.367 +36987,2025-03-11T15:07:35.925826-07:00,999.8517456054688,10.725947,10725.947 +36988,2025-03-11T15:07:46.657507-07:00,999.8636474609375,10.731681,10731.681 +36989,2025-03-11T15:07:57.384701-07:00,999.8848266601562,10.727194,10727.194 +36990,2025-03-11T15:08:08.115508-07:00,999.8768920898438,10.730807,10730.807 +36991,2025-03-11T15:08:18.844530-07:00,999.8556518554688,10.729022,10729.022 +36992,2025-03-11T15:08:29.572697-07:00,999.868896484375,10.728167,10728.167 +36993,2025-03-11T15:08:40.302513-07:00,999.8404541015625,10.729816,10729.816 +36994,2025-03-11T15:08:51.033510-07:00,999.8602905273438,10.730997,10730.997 +36995,2025-03-11T15:09:01.769689-07:00,999.8934326171875,10.736179,10736.179 +36996,2025-03-11T15:09:12.502837-07:00,999.8470458984375,10.733148,10733.148 +36997,2025-03-11T15:09:23.231511-07:00,999.880126953125,10.728674,10728.674 +36998,2025-03-11T15:09:33.963186-07:00,999.8443603515625,10.731675,10731.675 +36999,2025-03-11T15:09:44.684630-07:00,999.8655395507812,10.721444,10721.444 +37000,2025-03-11T15:09:55.413729-07:00,999.86279296875,10.729099,10729.099 +37001,2025-03-11T15:10:06.144727-07:00,999.8920288085938,10.730998,10730.998 +37002,2025-03-11T15:10:16.875520-07:00,999.86279296875,10.730793,10730.793 +37003,2025-03-11T15:10:27.611509-07:00,999.8694458007812,10.735989,10735.989 +37004,2025-03-11T15:10:38.336250-07:00,999.8531494140625,10.724741,10724.741 +37005,2025-03-11T15:10:49.069570-07:00,999.8429565429688,10.73332,10733.32 +37006,2025-03-11T15:10:59.798820-07:00,999.8743896484375,10.72925,10729.25 +37007,2025-03-11T15:11:10.531676-07:00,999.8584594726562,10.732856,10732.856 +37008,2025-03-11T15:11:21.260515-07:00,999.8650512695312,10.728839,10728.839 +37009,2025-03-11T15:11:31.990797-07:00,999.8634643554688,10.730282,10730.282 +37010,2025-03-11T15:11:42.722699-07:00,999.8289184570312,10.731902,10731.902 +37011,2025-03-11T15:11:53.458712-07:00,999.8258666992188,10.736013,10736.013 +37012,2025-03-11T15:12:04.184569-07:00,999.8753051757812,10.725857,10725.857 +37013,2025-03-11T15:12:14.917669-07:00,999.8739013671875,10.7331,10733.1 +37014,2025-03-11T15:12:25.649761-07:00,999.8590087890625,10.732092,10732.092 +37015,2025-03-11T15:12:36.388544-07:00,999.8443603515625,10.738783,10738.783 +37016,2025-03-11T15:12:47.117545-07:00,999.83642578125,10.729001,10729.001 +37017,2025-03-11T15:12:57.849252-07:00,999.8429565429688,10.731707,10731.707 +37018,2025-03-11T15:13:08.584697-07:00,999.8443603515625,10.735445,10735.445 +37019,2025-03-11T15:13:19.316892-07:00,999.881103515625,10.732195,10732.195 +37020,2025-03-11T15:13:30.044687-07:00,999.834716796875,10.727795,10727.795 +37021,2025-03-11T15:13:40.779685-07:00,999.8677978515625,10.734998,10734.998 +37022,2025-03-11T15:13:51.506808-07:00,999.8677978515625,10.727123,10727.123 +37023,2025-03-11T15:14:02.242967-07:00,999.8479614257812,10.736159,10736.159 +37024,2025-03-11T15:14:12.976221-07:00,999.83203125,10.733254,10733.254 +37025,2025-03-11T15:14:23.711510-07:00,999.8518676757812,10.735289,10735.289 +37026,2025-03-11T15:14:34.440588-07:00,999.8783569335938,10.729078,10729.078 +37027,2025-03-11T15:14:45.168856-07:00,999.8501586914062,10.728268,10728.268 +37028,2025-03-11T15:14:55.905510-07:00,999.8333740234375,10.736654,10736.654 +37029,2025-03-11T15:15:06.635614-07:00,999.815673828125,10.730104,10730.104 +37030,2025-03-11T15:15:17.362675-07:00,999.8054809570312,10.727061,10727.061 +37031,2025-03-11T15:15:28.098510-07:00,999.7957763671875,10.735835,10735.835 +37032,2025-03-11T15:15:38.831512-07:00,999.8170166015625,10.733002,10733.002 +37033,2025-03-11T15:15:49.557906-07:00,999.815673828125,10.726394,10726.394 +37034,2025-03-11T15:16:00.291032-07:00,999.830322265625,10.733126,10733.126 +37035,2025-03-11T15:16:11.026514-07:00,999.77734375,10.735482,10735.482 +37036,2025-03-11T15:16:21.760691-07:00,999.830322265625,10.734177,10734.177 +37037,2025-03-11T15:16:32.489244-07:00,999.830322265625,10.728553,10728.553 +37038,2025-03-11T15:16:43.228708-07:00,999.7825927734375,10.739464,10739.464 +37039,2025-03-11T15:16:53.960510-07:00,999.8134155273438,10.731802,10731.802 +37040,2025-03-11T15:17:04.686707-07:00,999.7935791015625,10.726197,10726.197 +37041,2025-03-11T15:17:15.428797-07:00,999.7870483398438,10.74209,10742.09 +37042,2025-03-11T15:17:26.151512-07:00,999.83203125,10.722715,10722.715 +37043,2025-03-11T15:17:36.888020-07:00,999.834228515625,10.736508,10736.508 +37044,2025-03-11T15:17:47.624685-07:00,999.8201293945312,10.736665,10736.665 +37045,2025-03-11T15:17:58.351578-07:00,999.8607788085938,10.726893,10726.893 +37046,2025-03-11T15:18:09.082540-07:00,999.8386840820312,10.730962,10730.962 +37047,2025-03-11T15:18:19.816758-07:00,999.80859375,10.734218,10734.218 +37048,2025-03-11T15:18:30.542511-07:00,999.8329467773438,10.725753,10725.753 +37049,2025-03-11T15:18:41.277931-07:00,999.8240356445312,10.73542,10735.42 +37050,2025-03-11T15:18:52.007817-07:00,999.8470458984375,10.729886,10729.886 +37051,2025-03-11T15:19:02.743720-07:00,999.8191528320312,10.735903,10735.903 +37052,2025-03-11T15:19:13.471548-07:00,999.8367919921875,10.727828,10727.828 +37053,2025-03-11T15:19:24.199704-07:00,999.8200073242188,10.728156,10728.156 +37054,2025-03-11T15:19:34.935824-07:00,999.8470458984375,10.73612,10736.12 +37055,2025-03-11T15:19:45.667037-07:00,999.810302734375,10.731213,10731.213 +37056,2025-03-11T15:19:56.404920-07:00,999.8226318359375,10.737883,10737.883 +37057,2025-03-11T15:20:07.131603-07:00,999.82177734375,10.726683,10726.683 +37058,2025-03-11T15:20:17.871752-07:00,999.7999877929688,10.740149,10740.149 +37059,2025-03-11T15:20:28.610509-07:00,999.7991333007812,10.738757,10738.757 +37060,2025-03-11T15:20:39.339512-07:00,999.8278198242188,10.729003,10729.003 +37061,2025-03-11T15:20:50.078736-07:00,999.80078125,10.739224,10739.224 +37062,2025-03-11T15:21:00.804512-07:00,999.8109130859375,10.725776,10725.776 +37063,2025-03-11T15:21:11.544508-07:00,999.7999267578125,10.739996,10739.996 +37064,2025-03-11T15:21:22.273663-07:00,999.7888793945312,10.729155,10729.155 +37065,2025-03-11T15:21:33.005784-07:00,999.7910766601562,10.732121,10732.121 +37066,2025-03-11T15:21:43.739513-07:00,999.78173828125,10.733729,10733.729 +37067,2025-03-11T15:21:54.470887-07:00,999.8015747070312,10.731374,10731.374 +37068,2025-03-11T15:22:05.209659-07:00,999.7852172851562,10.738772,10738.772 +37069,2025-03-11T15:22:15.944750-07:00,999.7720336914062,10.735091,10735.091 +37070,2025-03-11T15:22:26.671701-07:00,999.7772827148438,10.726951,10726.951 +37071,2025-03-11T15:22:37.410694-07:00,999.7821655273438,10.738993,10738.993 +37072,2025-03-11T15:22:48.140305-07:00,999.767578125,10.729611,10729.611 +37073,2025-03-11T15:22:58.866545-07:00,999.802001953125,10.72624,10726.24 +37074,2025-03-11T15:23:09.600725-07:00,999.8005981445312,10.73418,10734.18 +37075,2025-03-11T15:23:20.334397-07:00,999.7821655273438,10.733672,10733.672 +37076,2025-03-11T15:23:31.073764-07:00,999.802001953125,10.739367,10739.367 +37077,2025-03-11T15:23:41.803511-07:00,999.8086547851562,10.729747,10729.747 +37078,2025-03-11T15:23:52.543995-07:00,999.7742309570312,10.740484,10740.484 +37079,2025-03-11T15:24:03.272992-07:00,999.7507934570312,10.728997,10728.997 +37080,2025-03-11T15:24:14.007574-07:00,999.7640380859375,10.734582,10734.582 +37081,2025-03-11T15:24:24.741508-07:00,999.7619018554688,10.733934,10733.934 +37082,2025-03-11T15:24:35.477512-07:00,999.7830200195312,10.736004,10736.004 +37083,2025-03-11T15:24:46.200716-07:00,999.771240234375,10.723204,10723.204 +37084,2025-03-11T15:24:56.935784-07:00,999.803466796875,10.735068,10735.068 +37085,2025-03-11T15:25:07.668293-07:00,999.8021240234375,10.732509,10732.509 +37086,2025-03-11T15:25:18.402756-07:00,999.7787475585938,10.734463,10734.463 +37087,2025-03-11T15:25:29.135513-07:00,999.7867431640625,10.732757,10732.757 +37088,2025-03-11T15:25:39.871538-07:00,999.771240234375,10.736025,10736.025 +37089,2025-03-11T15:25:50.598682-07:00,999.7874755859375,10.727144,10727.144 +37090,2025-03-11T15:25:50.645408-07:00,999.7809448242188,0.046726,46.726 +37091,2025-03-11T15:26:01.334781-07:00,999.7770385742188,10.689373,10689.373 +37092,2025-03-11T15:26:12.072510-07:00,999.7734985351562,10.737729,10737.729 +37093,2025-03-11T15:26:22.805851-07:00,999.8043823242188,10.733341,10733.341 +37094,2025-03-11T15:26:33.537690-07:00,999.7938842773438,10.731839,10731.839 +37095,2025-03-11T15:26:44.265539-07:00,999.790283203125,10.727849,10727.849 +37096,2025-03-11T15:26:55.007574-07:00,999.7652587890625,10.742035,10742.035 +37097,2025-03-11T15:27:05.740515-07:00,999.7351684570312,10.732941,10732.941 +37098,2025-03-11T15:27:16.464542-07:00,999.744873046875,10.724027,10724.027 +37099,2025-03-11T15:27:27.199513-07:00,999.7506103515625,10.734971,10734.971 +37100,2025-03-11T15:27:37.938619-07:00,999.7401733398438,10.739106,10739.106 +37101,2025-03-11T15:27:48.662068-07:00,999.7644653320312,10.723449,10723.449 +37102,2025-03-11T15:27:59.398714-07:00,999.759521484375,10.736646,10736.646 +37103,2025-03-11T15:28:10.133509-07:00,999.7653198242188,10.734795,10734.795 +37104,2025-03-11T15:28:20.869586-07:00,999.7335815429688,10.736077,10736.077 +37105,2025-03-11T15:28:31.596631-07:00,999.752685546875,10.727045,10727.045 +37106,2025-03-11T15:28:42.330575-07:00,999.727783203125,10.733944,10733.944 +37107,2025-03-11T15:28:53.073506-07:00,999.759033203125,10.742931,10742.931 +37108,2025-03-11T15:29:03.803664-07:00,999.7684326171875,10.730158,10730.158 +37109,2025-03-11T15:29:14.534715-07:00,999.7449951171875,10.731051,10731.051 +37110,2025-03-11T15:29:25.271513-07:00,999.7427368164062,10.736798,10736.798 +37111,2025-03-11T15:29:36.008727-07:00,999.7521362304688,10.737214,10737.214 +37112,2025-03-11T15:29:46.744515-07:00,999.7220458984375,10.735788,10735.788 +37113,2025-03-11T15:29:57.482907-07:00,999.7251586914062,10.738392,10738.392 +37114,2025-03-11T15:30:08.214511-07:00,999.77197265625,10.731604,10731.604 +37115,2025-03-11T15:30:18.944717-07:00,999.756591796875,10.730206,10730.206 +37116,2025-03-11T15:30:29.675695-07:00,999.7184448242188,10.730978,10730.978 +37117,2025-03-11T15:30:40.412634-07:00,999.75732421875,10.736939,10736.939 +37118,2025-03-11T15:30:51.145506-07:00,999.7123413085938,10.732872,10732.872 +37119,2025-03-11T15:31:01.883508-07:00,999.677001953125,10.738002,10738.002 +37120,2025-03-11T15:31:12.618596-07:00,999.7013549804688,10.735088,10735.088 +37121,2025-03-11T15:31:23.353561-07:00,999.69775390625,10.734965,10734.965 +37122,2025-03-11T15:31:34.084511-07:00,999.701904296875,10.73095,10730.95 +37123,2025-03-11T15:31:44.819706-07:00,999.7062377929688,10.735195,10735.195 +37124,2025-03-11T15:31:55.562086-07:00,999.6695556640625,10.74238,10742.38 +37125,2025-03-11T15:32:06.300683-07:00,999.677490234375,10.738597,10738.597 +37126,2025-03-11T15:32:17.032716-07:00,999.6554565429688,10.732033,10732.033 +37127,2025-03-11T15:32:27.771581-07:00,999.6488037109375,10.738865,10738.865 +37128,2025-03-11T15:32:38.512804-07:00,999.6695556640625,10.741223,10741.223 +37129,2025-03-11T15:32:49.251693-07:00,999.6709594726562,10.738889,10738.889 +37130,2025-03-11T15:32:59.985619-07:00,999.6192016601562,10.733926,10733.926 +37131,2025-03-11T15:33:10.724609-07:00,999.65185546875,10.73899,10738.99 +37132,2025-03-11T15:33:21.451607-07:00,999.6253051757812,10.726998,10726.998 +37133,2025-03-11T15:33:32.193429-07:00,999.6443481445312,10.741822,10741.822 +37134,2025-03-11T15:33:42.927718-07:00,999.6473388671875,10.734289,10734.289 +37135,2025-03-11T15:33:53.669784-07:00,999.6222534179688,10.742066,10742.066 +37136,2025-03-11T15:34:04.405583-07:00,999.6302490234375,10.735799,10735.799 +37137,2025-03-11T15:34:15.146511-07:00,999.6478881835938,10.740928,10740.928 +37138,2025-03-11T15:34:25.885238-07:00,999.6492309570312,10.738727,10738.727 +37139,2025-03-11T15:34:36.625582-07:00,999.6045532226562,10.740344,10740.344 +37140,2025-03-11T15:34:47.361900-07:00,999.6288452148438,10.736318,10736.318 +37141,2025-03-11T15:34:58.099535-07:00,999.6434326171875,10.737635,10737.635 +37142,2025-03-11T15:35:08.833756-07:00,999.657470703125,10.734221,10734.221 +37143,2025-03-11T15:35:19.580577-07:00,999.6243896484375,10.746821,10746.821 +37144,2025-03-11T15:35:30.313818-07:00,999.668212890625,10.733241,10733.241 +37145,2025-03-11T15:35:41.055731-07:00,999.66015625,10.741913,10741.913 +37146,2025-03-11T15:35:50.499335-07:00,999.6517333984375,9.443604,9443.604 +37147,2025-03-11T15:35:51.793908-07:00,999.6251831054688,1.294573,1294.573 +37148,2025-03-11T15:36:02.535505-07:00,999.61328125,10.741597,10741.597 +37149,2025-03-11T15:36:13.263513-07:00,999.678955078125,10.728008,10728.008 +37150,2025-03-11T15:36:24.000771-07:00,999.6574096679688,10.737258,10737.258 +37151,2025-03-11T15:36:34.744576-07:00,999.640625,10.743805,10743.805 +37152,2025-03-11T15:36:45.479035-07:00,999.658203125,10.734459,10734.459 +37153,2025-03-11T15:36:56.226663-07:00,999.64501953125,10.747628,10747.628 +37154,2025-03-11T15:37:06.962513-07:00,999.6317138671875,10.73585,10735.85 +37155,2025-03-11T15:37:17.695513-07:00,999.6414184570312,10.733,10733.0 +37156,2025-03-11T15:37:28.433749-07:00,999.665283203125,10.738236,10738.236 +37157,2025-03-11T15:37:39.176866-07:00,999.6322021484375,10.743117,10743.117 +37158,2025-03-11T15:37:49.906510-07:00,999.62060546875,10.729644,10729.644 +37159,2025-03-11T15:38:00.648547-07:00,999.6300048828125,10.742037,10742.037 +37160,2025-03-11T15:38:11.389511-07:00,999.6395874023438,10.740964,10740.964 +37161,2025-03-11T15:38:22.122513-07:00,999.6409301757812,10.733002,10733.002 +37162,2025-03-11T15:38:32.856900-07:00,999.6492309570312,10.734387,10734.387 +37163,2025-03-11T15:38:43.595538-07:00,999.6704711914062,10.738638,10738.638 +37164,2025-03-11T15:38:54.335805-07:00,999.678466796875,10.740267,10740.267 +37165,2025-03-11T15:39:05.066508-07:00,999.6603393554688,10.730703,10730.703 +37166,2025-03-11T15:39:15.802040-07:00,999.6668701171875,10.735532,10735.532 +37167,2025-03-11T15:39:26.541710-07:00,999.6776733398438,10.73967,10739.67 +37168,2025-03-11T15:39:37.277510-07:00,999.6593627929688,10.7358,10735.8 +37169,2025-03-11T15:39:48.015577-07:00,999.626220703125,10.738067,10738.067 +37170,2025-03-11T15:39:58.754666-07:00,999.6422119140625,10.739089,10739.089 +37171,2025-03-11T15:40:09.494514-07:00,999.65185546875,10.739848,10739.848 +37172,2025-03-11T15:40:20.234683-07:00,999.6681518554688,10.740169,10740.169 +37173,2025-03-11T15:40:30.973414-07:00,999.6417236328125,10.738731,10738.731 +37174,2025-03-11T15:40:41.715540-07:00,999.6231079101562,10.742126,10742.126 +37175,2025-03-11T15:40:52.447718-07:00,999.639404296875,10.732178,10732.178 +37176,2025-03-11T15:41:03.186603-07:00,999.635498046875,10.738885,10738.885 +37177,2025-03-11T15:41:13.923711-07:00,999.643798828125,10.737108,10737.108 +37178,2025-03-11T15:41:24.666764-07:00,999.6531372070312,10.743053,10743.053 +37179,2025-03-11T15:41:35.400672-07:00,999.6054077148438,10.733908,10733.908 +37180,2025-03-11T15:41:46.142541-07:00,999.6693725585938,10.741869,10741.869 +37181,2025-03-11T15:41:56.883508-07:00,999.6429443359375,10.740967,10740.967 +37182,2025-03-11T15:42:07.626512-07:00,999.6456298828125,10.743004,10743.004 +37183,2025-03-11T15:42:18.371511-07:00,999.6473388671875,10.744999,10744.999 +37184,2025-03-11T15:42:29.109515-07:00,999.6168823242188,10.738004,10738.004 +37185,2025-03-11T15:42:39.848637-07:00,999.6185913085938,10.739122,10739.122 +37186,2025-03-11T15:42:50.589395-07:00,999.6185913085938,10.740758,10740.758 +37187,2025-03-11T15:43:01.337412-07:00,999.6331176757812,10.748017,10748.017 +37188,2025-03-11T15:43:12.072582-07:00,999.6309204101562,10.73517,10735.17 +37189,2025-03-11T15:43:22.811508-07:00,999.6096801757812,10.738926,10738.926 +37190,2025-03-11T15:43:33.551594-07:00,999.6189575195312,10.740086,10740.086 +37191,2025-03-11T15:43:44.293726-07:00,999.6534423828125,10.742132,10742.132 +37192,2025-03-11T15:43:55.030690-07:00,999.6631469726562,10.736964,10736.964 +37193,2025-03-11T15:44:05.769160-07:00,999.6300048828125,10.73847,10738.47 +37194,2025-03-11T15:44:16.514513-07:00,999.6234130859375,10.745353,10745.353 +37195,2025-03-11T15:44:27.255581-07:00,999.6181030273438,10.741068,10741.068 +37196,2025-03-11T15:44:37.997250-07:00,999.6343994140625,10.741669,10741.669 +37197,2025-03-11T15:44:48.735605-07:00,999.6115112304688,10.738355,10738.355 +37198,2025-03-11T15:44:59.475663-07:00,999.591552734375,10.740058,10740.058 +37199,2025-03-11T15:45:10.222515-07:00,999.5946044921875,10.746852,10746.852 +37200,2025-03-11T15:45:20.958683-07:00,999.62548828125,10.736168,10736.168 +37201,2025-03-11T15:45:31.698748-07:00,999.642333984375,10.740065,10740.065 +37202,2025-03-11T15:45:42.437580-07:00,999.604248046875,10.738832,10738.832 +37203,2025-03-11T15:45:53.176508-07:00,999.6158447265625,10.738928,10738.928 +37204,2025-03-11T15:46:03.911761-07:00,999.604248046875,10.735253,10735.253 +37205,2025-03-11T15:46:14.654012-07:00,999.6307983398438,10.742251,10742.251 +37206,2025-03-11T15:46:25.394688-07:00,999.6109619140625,10.740676,10740.676 +37207,2025-03-11T15:46:36.135621-07:00,999.614501953125,10.740933,10740.933 +37208,2025-03-11T15:46:46.872510-07:00,999.614501953125,10.736889,10736.889 +37209,2025-03-11T15:46:57.604717-07:00,999.60791015625,10.732207,10732.207 +37210,2025-03-11T15:47:08.342518-07:00,999.5946044921875,10.737801,10737.801 +37211,2025-03-11T15:47:19.079783-07:00,999.5836181640625,10.737265,10737.265 +37212,2025-03-11T15:47:29.819055-07:00,999.5650634765625,10.739272,10739.272 +37213,2025-03-11T15:47:40.558513-07:00,999.5623168945312,10.739458,10739.458 +37214,2025-03-11T15:47:51.308511-07:00,999.5850219726562,10.749998,10749.998 +37215,2025-03-11T15:48:02.047510-07:00,999.5584106445312,10.738999,10738.999 +37216,2025-03-11T15:48:12.789615-07:00,999.5667114257812,10.742105,10742.105 +37217,2025-03-11T15:48:23.528727-07:00,999.5703125,10.739112,10739.112 +37218,2025-03-11T15:48:34.267935-07:00,999.5491333007812,10.739208,10739.208 +37219,2025-03-11T15:48:45.007784-07:00,999.5623168945312,10.739849,10739.849 +37220,2025-03-11T15:48:55.754698-07:00,999.563720703125,10.746914,10746.914 +37221,2025-03-11T15:49:06.498758-07:00,999.5756225585938,10.74406,10744.06 +37222,2025-03-11T15:49:17.234543-07:00,999.569091796875,10.735785,10735.785 +37223,2025-03-11T15:49:27.982515-07:00,999.569091796875,10.747972,10747.972 +37224,2025-03-11T15:49:38.722501-07:00,999.5623168945312,10.739986,10739.986 +37225,2025-03-11T15:49:49.456514-07:00,999.5342407226562,10.734013,10734.013 +37226,2025-03-11T15:50:00.197548-07:00,999.527587890625,10.741034,10741.034 +37227,2025-03-11T15:50:10.944561-07:00,999.5540771484375,10.747013,10747.013 +37228,2025-03-11T15:50:21.688792-07:00,999.5593872070312,10.744231,10744.231 +37229,2025-03-11T15:50:32.425776-07:00,999.540771484375,10.736984,10736.984 +37230,2025-03-11T15:50:43.167508-07:00,999.5540771484375,10.741732,10741.732 +37231,2025-03-11T15:50:53.906512-07:00,999.5342407226562,10.739004,10739.004 +37232,2025-03-11T15:51:04.642936-07:00,999.5460815429688,10.736424,10736.424 +37233,2025-03-11T15:51:15.389517-07:00,999.5699462890625,10.746581,10746.581 +37234,2025-03-11T15:51:26.125053-07:00,999.5726318359375,10.735536,10735.536 +37235,2025-03-11T15:51:36.868701-07:00,999.5845336914062,10.743648,10743.648 +37236,2025-03-11T15:51:47.607530-07:00,999.531494140625,10.738829,10738.829 +37237,2025-03-11T15:51:58.346512-07:00,999.5748291015625,10.738982,10738.982 +37238,2025-03-11T15:52:09.091508-07:00,999.54833984375,10.744996,10744.996 +37239,2025-03-11T15:52:19.829548-07:00,999.596435546875,10.73804,10738.04 +37240,2025-03-11T15:52:30.567511-07:00,999.58984375,10.737963,10737.963 +37241,2025-03-11T15:52:41.305668-07:00,999.5699462890625,10.738157,10738.157 +37242,2025-03-11T15:52:52.043744-07:00,999.5765380859375,10.738076,10738.076 +37243,2025-03-11T15:53:02.775508-07:00,999.5513916015625,10.731764,10731.764 +37244,2025-03-11T15:53:13.513737-07:00,999.5748291015625,10.738229,10738.229 +37245,2025-03-11T15:53:24.252739-07:00,999.591064453125,10.739002,10739.002 +37246,2025-03-11T15:53:34.905597-07:00,999.5699462890625,10.652858,10652.858 +37247,2025-03-11T15:53:45.642528-07:00,999.5632934570312,10.736931,10736.931 +37248,2025-03-11T15:53:56.375424-07:00,999.5699462890625,10.732896,10732.896 +37249,2025-03-11T15:54:07.116217-07:00,999.5831298828125,10.740793,10740.793 +37250,2025-03-11T15:54:17.854472-07:00,999.5748291015625,10.738255,10738.255 +37251,2025-03-11T15:54:28.594813-07:00,999.5699462890625,10.740341,10740.341 +37252,2025-03-11T15:54:39.332589-07:00,999.5765380859375,10.737776,10737.776 +37253,2025-03-11T15:54:50.072420-07:00,999.5499877929688,10.739831,10739.831 +37254,2025-03-11T15:55:00.814624-07:00,999.5699462890625,10.742204,10742.204 +37255,2025-03-11T15:55:11.551513-07:00,999.5499877929688,10.736889,10736.889 +37256,2025-03-11T15:55:22.294419-07:00,999.556640625,10.742906,10742.906 +37257,2025-03-11T15:55:33.035507-07:00,999.5712280273438,10.741088,10741.088 +37258,2025-03-11T15:55:43.777610-07:00,999.577880859375,10.742103,10742.103 +37259,2025-03-11T15:55:54.520613-07:00,999.5726318359375,10.743003,10743.003 +37260,2025-03-11T15:56:05.258423-07:00,999.5726318359375,10.73781,10737.81 +37261,2025-03-11T15:56:15.996621-07:00,999.5726318359375,10.738198,10738.198 +37262,2025-03-11T15:56:26.744418-07:00,999.5623168945312,10.747797,10747.797 +37263,2025-03-11T15:56:37.480419-07:00,999.5557861328125,10.736001,10736.001 +37264,2025-03-11T15:56:48.226484-07:00,999.5402221679688,10.746065,10746.065 +37265,2025-03-11T15:56:58.969635-07:00,999.55126953125,10.743151,10743.151 +37266,2025-03-11T15:57:09.712601-07:00,999.55126953125,10.742966,10742.966 +37267,2025-03-11T15:57:20.453873-07:00,999.576904296875,10.741272,10741.272 +37268,2025-03-11T15:57:31.190447-07:00,999.5848388671875,10.736574,10736.574 +37269,2025-03-11T15:57:41.935669-07:00,999.5848388671875,10.745222,10745.222 +37270,2025-03-11T15:57:52.675416-07:00,999.575927734375,10.739747,10739.747 +37271,2025-03-11T15:58:03.409425-07:00,999.5538330078125,10.734009,10734.009 +37272,2025-03-11T15:58:14.154605-07:00,999.6231079101562,10.74518,10745.18 +37273,2025-03-11T15:58:24.895857-07:00,999.5833740234375,10.741252,10741.252 +37274,2025-03-11T15:58:35.633631-07:00,999.5692138671875,10.737774,10737.774 +37275,2025-03-11T15:58:46.370471-07:00,999.5619506835938,10.73684,10736.84 +37276,2025-03-11T15:58:57.115554-07:00,999.5567016601562,10.745083,10745.083 +37277,2025-03-11T15:59:07.852629-07:00,999.5742797851562,10.737075,10737.075 +37278,2025-03-11T15:59:18.604424-07:00,999.5853271484375,10.751795,10751.795 +37279,2025-03-11T15:59:29.344505-07:00,999.5418701171875,10.740081,10740.081 +37280,2025-03-11T15:59:40.081489-07:00,999.5631103515625,10.736984,10736.984 +37281,2025-03-11T15:59:50.824416-07:00,999.5396728515625,10.742927,10742.927 +37282,2025-03-11T16:00:01.571447-07:00,999.55859375,10.747031,10747.031 +37283,2025-03-11T16:00:12.319427-07:00,999.5533447265625,10.74798,10747.98 +37284,2025-03-11T16:00:23.053179-07:00,999.5298461914062,10.733752,10733.752 +37285,2025-03-11T16:00:33.796136-07:00,999.5342407226562,10.742957,10742.957 +37286,2025-03-11T16:00:44.547663-07:00,999.5421752929688,10.751527,10751.527 +37287,2025-03-11T16:00:55.282543-07:00,999.5730590820312,10.73488,10734.88 +37288,2025-03-11T16:01:06.036601-07:00,999.55615234375,10.754058,10754.058 +37289,2025-03-11T16:01:16.774420-07:00,999.5509643554688,10.737819,10737.819 +37290,2025-03-11T16:01:27.516468-07:00,999.5618896484375,10.742048,10742.048 +37291,2025-03-11T16:01:38.260504-07:00,999.5861206054688,10.744036,10744.036 +37292,2025-03-11T16:01:49.006200-07:00,999.5692138671875,10.745696,10745.696 +37293,2025-03-11T16:01:59.756138-07:00,999.593505859375,10.749938,10749.938 +37294,2025-03-11T16:02:10.497636-07:00,999.602783203125,10.741498,10741.498 +37295,2025-03-11T16:02:21.239996-07:00,999.5763549804688,10.74236,10742.36 +37296,2025-03-11T16:02:31.987627-07:00,999.5859375,10.747631,10747.631 +37297,2025-03-11T16:02:42.722090-07:00,999.6138305664062,10.734463,10734.463 +37298,2025-03-11T16:02:53.465420-07:00,999.59033203125,10.74333,10743.33 +37299,2025-03-11T16:03:04.210423-07:00,999.6261596679688,10.745003,10745.003 +37300,2025-03-11T16:03:14.955618-07:00,999.6224975585938,10.745195,10745.195 +37301,2025-03-11T16:03:25.703423-07:00,999.618896484375,10.747805,10747.805 +37302,2025-03-11T16:03:36.449420-07:00,999.618896484375,10.745997,10745.997 +37303,2025-03-11T16:03:47.190489-07:00,999.600341796875,10.741069,10741.069 +37304,2025-03-11T16:03:57.937422-07:00,999.651123046875,10.746933,10746.933 +37305,2025-03-11T16:04:08.682425-07:00,999.6525268554688,10.745003,10745.003 +37306,2025-03-11T16:04:19.429454-07:00,999.64453125,10.747029,10747.029 +37307,2025-03-11T16:04:30.175718-07:00,999.650146484375,10.746264,10746.264 +37308,2025-03-11T16:04:40.913705-07:00,999.6289672851562,10.737987,10737.987 +37309,2025-03-11T16:04:51.663426-07:00,999.626708984375,10.749721,10749.721 +37310,2025-03-11T16:05:02.399597-07:00,999.6015625,10.736171,10736.171 +37311,2025-03-11T16:05:13.150503-07:00,999.58154296875,10.750906,10750.906 +37312,2025-03-11T16:05:23.890606-07:00,999.6095581054688,10.740103,10740.103 +37313,2025-03-11T16:05:34.633481-07:00,999.6045532226562,10.742875,10742.875 +37314,2025-03-11T16:05:45.373472-07:00,999.6204833984375,10.739991,10739.991 +37315,2025-03-11T16:05:56.125506-07:00,999.6500244140625,10.752034,10752.034 +37316,2025-03-11T16:06:06.864423-07:00,999.6314086914062,10.738917,10738.917 +37317,2025-03-11T16:06:17.609742-07:00,999.6557006835938,10.745319,10745.319 +37318,2025-03-11T16:06:28.354666-07:00,999.6423950195312,10.744924,10744.924 +37319,2025-03-11T16:06:39.090910-07:00,999.6490478515625,10.736244,10736.244 +37320,2025-03-11T16:06:49.837645-07:00,999.6599731445312,10.746735,10746.735 +37321,2025-03-11T16:07:00.580738-07:00,999.6431274414062,10.743093,10743.093 +37322,2025-03-11T16:07:11.328605-07:00,999.6312255859375,10.747867,10747.867 +37323,2025-03-11T16:07:22.070854-07:00,999.632568359375,10.742249,10742.249 +37324,2025-03-11T16:07:32.813595-07:00,999.6209106445312,10.742741,10742.741 +37325,2025-03-11T16:07:43.566612-07:00,999.6107177734375,10.753017,10753.017 +37326,2025-03-11T16:07:54.309826-07:00,999.6270141601562,10.743214,10743.214 +37327,2025-03-11T16:08:05.045424-07:00,999.6180419921875,10.735598,10735.598 +37328,2025-03-11T16:08:15.789426-07:00,999.6060791015625,10.744002,10744.002 +37329,2025-03-11T16:08:26.541426-07:00,999.5995483398438,10.752,10752.0 +37330,2025-03-11T16:08:37.282424-07:00,999.626708984375,10.740998,10740.998 +37331,2025-03-11T16:08:48.028780-07:00,999.6414184570312,10.746356,10746.356 +37332,2025-03-11T16:08:58.775427-07:00,999.6244506835938,10.746647,10746.647 +37333,2025-03-11T16:09:09.510422-07:00,999.576416015625,10.734995,10734.995 +37334,2025-03-11T16:09:20.258426-07:00,999.6257934570312,10.748004,10748.004 +37335,2025-03-11T16:09:31.004424-07:00,999.607177734375,10.745998,10745.998 +37336,2025-03-11T16:09:41.741424-07:00,999.5970458984375,10.737,10737.0 +37337,2025-03-11T16:09:52.489496-07:00,999.6129760742188,10.748072,10748.072 +37338,2025-03-11T16:10:03.235425-07:00,999.6093139648438,10.745929,10745.929 +37339,2025-03-11T16:10:13.972613-07:00,999.618896484375,10.737188,10737.188 +37340,2025-03-11T16:10:24.717267-07:00,999.5592041015625,10.744654,10744.654 +37341,2025-03-11T16:10:35.467813-07:00,999.614990234375,10.750546,10750.546 +37342,2025-03-11T16:10:46.205455-07:00,999.5790405273438,10.737642,10737.642 +37343,2025-03-11T16:10:56.946664-07:00,999.5967407226562,10.741209,10741.209 +37344,2025-03-11T16:11:07.691417-07:00,999.6033325195312,10.744753,10744.753 +37345,2025-03-11T16:11:18.433836-07:00,999.6246337890625,10.742419,10742.419 +37346,2025-03-11T16:11:29.178482-07:00,999.6378784179688,10.744646,10744.646 +37347,2025-03-11T16:11:39.918503-07:00,999.611328125,10.740021,10740.021 +37348,2025-03-11T16:11:50.668427-07:00,999.6246337890625,10.749924,10749.924 +37349,2025-03-11T16:12:01.408481-07:00,999.6475219726562,10.740054,10740.054 +37350,2025-03-11T16:12:12.158914-07:00,999.578125,10.750433,10750.433 +37351,2025-03-11T16:12:22.897659-07:00,999.5811767578125,10.738745,10738.745 +37352,2025-03-11T16:12:33.641694-07:00,999.5878295898438,10.744035,10744.035 +37353,2025-03-11T16:12:44.393614-07:00,999.5878295898438,10.75192,10751.92 +37354,2025-03-11T16:12:55.134609-07:00,999.5878295898438,10.740995,10740.995 +37355,2025-03-11T16:13:05.867427-07:00,999.5745239257812,10.732818,10732.818 +37356,2025-03-11T16:13:16.610448-07:00,999.5943603515625,10.743021,10743.021 +37357,2025-03-11T16:13:27.360636-07:00,999.5596313476562,10.750188,10750.188 +37358,2025-03-11T16:13:38.099421-07:00,999.607666015625,10.738785,10738.785 +37359,2025-03-11T16:13:48.845671-07:00,999.6209106445312,10.74625,10746.25 +37360,2025-03-11T16:13:59.585422-07:00,999.6458740234375,10.739751,10739.751 +37361,2025-03-11T16:14:10.325438-07:00,999.6259155273438,10.740016,10740.016 +37362,2025-03-11T16:14:21.074426-07:00,999.6193237304688,10.748988,10748.988 +37363,2025-03-11T16:14:31.821448-07:00,999.6873168945312,10.747022,10747.022 +37364,2025-03-11T16:14:42.561809-07:00,999.6342163085938,10.740361,10740.361 +37365,2025-03-11T16:14:53.310620-07:00,999.622314453125,10.748811,10748.811 +37366,2025-03-11T16:15:04.054621-07:00,999.5795288085938,10.744001,10744.001 +37367,2025-03-11T16:15:14.793450-07:00,999.5538940429688,10.738829,10738.829 +37368,2025-03-11T16:15:25.545446-07:00,999.5664672851562,10.751996,10751.996 +37369,2025-03-11T16:15:36.281618-07:00,999.560791015625,10.736172,10736.172 +37370,2025-03-11T16:15:47.026635-07:00,999.5829467773438,10.745017,10745.017 +37371,2025-03-11T16:15:57.772640-07:00,999.5663452148438,10.746005,10746.005 +37372,2025-03-11T16:16:08.512424-07:00,999.5858764648438,10.739784,10739.784 +37373,2025-03-11T16:16:19.255834-07:00,999.571533203125,10.74341,10743.41 +37374,2025-03-11T16:16:30.002650-07:00,999.6091918945312,10.746816,10746.816 +37375,2025-03-11T16:16:40.741845-07:00,999.62939453125,10.739195,10739.195 +37376,2025-03-11T16:16:51.488809-07:00,999.5772705078125,10.746964,10746.964 +37377,2025-03-11T16:17:02.225557-07:00,999.5884399414062,10.736748,10736.748 +37378,2025-03-11T16:17:12.970422-07:00,999.5664672851562,10.744865,10744.865 +37379,2025-03-11T16:17:23.701678-07:00,999.55810546875,10.731256,10731.256 +37380,2025-03-11T16:17:34.451491-07:00,999.5587768554688,10.749813,10749.813 +37381,2025-03-11T16:17:45.189420-07:00,999.5287475585938,10.737929,10737.929 +37382,2025-03-11T16:17:55.938424-07:00,999.5362548828125,10.749004,10749.004 +37383,2025-03-11T16:18:06.674561-07:00,999.5421752929688,10.736137,10736.137 +37384,2025-03-11T16:18:17.415616-07:00,999.556396484375,10.741055,10741.055 +37385,2025-03-11T16:18:28.167426-07:00,999.518798828125,10.75181,10751.81 +37386,2025-03-11T16:18:38.908610-07:00,999.5101318359375,10.741184,10741.184 +37387,2025-03-11T16:18:49.647619-07:00,999.479248046875,10.739009,10739.009 +37388,2025-03-11T16:19:00.386426-07:00,999.497802734375,10.738807,10738.807 +37389,2025-03-11T16:19:11.122443-07:00,999.4837646484375,10.736017,10736.017 +37390,2025-03-11T16:19:21.864448-07:00,999.499267578125,10.742005,10742.005 +37391,2025-03-11T16:19:32.607424-07:00,999.4763793945312,10.742976,10742.976 +37392,2025-03-11T16:19:43.348170-07:00,999.4905395507812,10.740746,10740.746 +37393,2025-03-11T16:19:54.085086-07:00,999.5140380859375,10.736916,10736.916 +37394,2025-03-11T16:20:04.818425-07:00,999.5325927734375,10.733339,10733.339 +37395,2025-03-11T16:20:15.562026-07:00,999.5392456054688,10.743601,10743.601 +37396,2025-03-11T16:20:26.307423-07:00,999.5097045898438,10.745397,10745.397 +37397,2025-03-11T16:20:37.047420-07:00,999.501708984375,10.739997,10739.997 +37398,2025-03-11T16:20:47.782438-07:00,999.4854736328125,10.735018,10735.018 +37399,2025-03-11T16:20:58.524616-07:00,999.47216796875,10.742178,10742.178 +37400,2025-03-11T16:21:09.266200-07:00,999.4589233398438,10.741584,10741.584 +37401,2025-03-11T16:21:20.005420-07:00,999.482666015625,10.73922,10739.22 +37402,2025-03-11T16:21:30.743425-07:00,999.47607421875,10.738005,10738.005 +37403,2025-03-11T16:21:41.492462-07:00,999.4678344726562,10.749037,10749.037 +37404,2025-03-11T16:21:52.236099-07:00,999.47607421875,10.743637,10743.637 +37405,2025-03-11T16:22:02.979422-07:00,999.5225219726562,10.743323,10743.323 +37406,2025-03-11T16:22:13.713476-07:00,999.55029296875,10.734054,10734.054 +37407,2025-03-11T16:22:24.452604-07:00,999.5401611328125,10.739128,10739.128 +37408,2025-03-11T16:22:35.194912-07:00,999.520263671875,10.742308,10742.308 +37409,2025-03-11T16:22:45.942205-07:00,999.5304565429688,10.747293,10747.293 +37410,2025-03-11T16:22:56.691926-07:00,999.525146484375,10.749721,10749.721 +37411,2025-03-11T16:23:07.430422-07:00,999.4818115234375,10.738496,10738.496 +37412,2025-03-11T16:23:18.171726-07:00,999.497802734375,10.741304,10741.304 +37413,2025-03-11T16:23:28.908426-07:00,999.5242309570312,10.7367,10736.7 +37414,2025-03-11T16:23:39.651698-07:00,999.4198608398438,10.743272,10743.272 +37415,2025-03-11T16:23:50.396986-07:00,999.4425048828125,10.745288,10745.288 +37416,2025-03-11T16:24:01.145425-07:00,999.4212646484375,10.748439,10748.439 +37417,2025-03-11T16:24:11.886473-07:00,999.4454956054688,10.741048,10741.048 +37418,2025-03-11T16:24:22.630534-07:00,999.448486328125,10.744061,10744.061 +37419,2025-03-11T16:24:33.366786-07:00,999.4299926757812,10.736252,10736.252 +37420,2025-03-11T16:24:44.113454-07:00,999.4329833984375,10.746668,10746.668 +37421,2025-03-11T16:24:54.855751-07:00,999.4095458984375,10.742297,10742.297 +37422,2025-03-11T16:25:05.600422-07:00,999.43603515625,10.744671,10744.671 +37423,2025-03-11T16:25:16.341131-07:00,999.474853515625,10.740709,10740.709 +37424,2025-03-11T16:25:27.089954-07:00,999.4500122070312,10.748823,10748.823 +37425,2025-03-11T16:25:37.827638-07:00,999.4115600585938,10.737684,10737.684 +37426,2025-03-11T16:25:48.576432-07:00,999.4159545898438,10.748794,10748.794 +37427,2025-03-11T16:25:59.315878-07:00,999.4371948242188,10.739446,10739.446 +37428,2025-03-11T16:26:10.060599-07:00,999.4932861328125,10.744721,10744.721 +37429,2025-03-11T16:26:20.808426-07:00,999.4813232421875,10.747827,10747.827 +37430,2025-03-11T16:26:31.555603-07:00,999.4498291015625,10.747177,10747.177 +37431,2025-03-11T16:26:42.295635-07:00,999.4246826171875,10.740032,10740.032 +37432,2025-03-11T16:26:53.036587-07:00,999.443603515625,10.740952,10740.952 +37433,2025-03-11T16:27:03.788626-07:00,999.45166015625,10.752039,10752.039 +37434,2025-03-11T16:27:14.526626-07:00,999.4678955078125,10.738,10738.0 +37435,2025-03-11T16:27:25.275422-07:00,999.470947265625,10.748796,10748.796 +37436,2025-03-11T16:27:36.017169-07:00,999.4324951171875,10.741747,10741.747 +37437,2025-03-11T16:27:46.755426-07:00,999.44873046875,10.738257,10738.257 +37438,2025-03-11T16:27:57.497724-07:00,999.4646606445312,10.742298,10742.298 +37439,2025-03-11T16:28:08.232424-07:00,999.4478149414062,10.7347,10734.7 +37440,2025-03-11T16:28:18.968612-07:00,999.5075073242188,10.736188,10736.188 +37441,2025-03-11T16:28:29.712921-07:00,999.4985961914062,10.744309,10744.309 +37442,2025-03-11T16:28:40.448086-07:00,999.4614868164062,10.735165,10735.165 +37443,2025-03-11T16:28:51.187528-07:00,999.5271606445312,10.739442,10739.442 +37444,2025-03-11T16:29:01.922426-07:00,999.4689331054688,10.734898,10734.898 +37445,2025-03-11T16:29:12.665425-07:00,999.49169921875,10.742999,10742.999 +37446,2025-03-11T16:29:23.401082-07:00,999.4865112304688,10.735657,10735.657 +37447,2025-03-11T16:29:34.141511-07:00,999.4732666015625,10.740429,10740.429 +37448,2025-03-11T16:29:44.879498-07:00,999.5040893554688,10.737987,10737.987 +37449,2025-03-11T16:29:55.622424-07:00,999.4590454101562,10.742926,10742.926 +37450,2025-03-11T16:30:06.356591-07:00,999.5098266601562,10.734167,10734.167 +37451,2025-03-11T16:30:17.102426-07:00,999.471435546875,10.745835,10745.835 +37452,2025-03-11T16:30:27.839522-07:00,999.49951171875,10.737096,10737.096 +37453,2025-03-11T16:30:38.575726-07:00,999.4866943359375,10.736204,10736.204 +37454,2025-03-11T16:30:49.316979-07:00,999.4852905273438,10.741253,10741.253 +37455,2025-03-11T16:31:00.052722-07:00,999.5029907226562,10.735743,10735.743 +37456,2025-03-11T16:31:10.794632-07:00,999.45654296875,10.74191,10741.91 +37457,2025-03-11T16:31:21.534712-07:00,999.4940795898438,10.74008,10740.08 +37458,2025-03-11T16:31:32.275593-07:00,999.5020141601562,10.740881,10740.881 +37459,2025-03-11T16:31:43.017475-07:00,999.4834594726562,10.741882,10741.882 +37460,2025-03-11T16:31:53.758425-07:00,999.4652099609375,10.74095,10740.95 +37461,2025-03-11T16:32:04.497636-07:00,999.5027465820312,10.739211,10739.211 +37462,2025-03-11T16:32:15.230500-07:00,999.4841918945312,10.732864,10732.864 +37463,2025-03-11T16:32:25.967507-07:00,999.4841918945312,10.737007,10737.007 +37464,2025-03-11T16:32:36.708604-07:00,999.5031127929688,10.741097,10741.097 +37465,2025-03-11T16:32:47.452126-07:00,999.4779663085938,10.743522,10743.522 +37466,2025-03-11T16:32:58.187427-07:00,999.4713134765625,10.735301,10735.301 +37467,2025-03-11T16:33:08.924153-07:00,999.4912719726562,10.736726,10736.726 +37468,2025-03-11T16:33:19.670576-07:00,999.50390625,10.746423,10746.423 +37469,2025-03-11T16:33:30.402463-07:00,999.487548828125,10.731887,10731.887 +37470,2025-03-11T16:33:41.149475-07:00,999.4906005859375,10.747012,10747.012 +37471,2025-03-11T16:33:51.881451-07:00,999.5131225585938,10.731976,10731.976 +37472,2025-03-11T16:34:02.626422-07:00,999.48828125,10.744971,10744.971 +37473,2025-03-11T16:34:13.369698-07:00,999.4852905273438,10.743276,10743.276 +37474,2025-03-11T16:34:24.110424-07:00,999.4949951171875,10.740726,10740.726 +37475,2025-03-11T16:34:34.841423-07:00,999.517822265625,10.730999,10730.999 +37476,2025-03-11T16:34:45.585733-07:00,999.5328369140625,10.74431,10744.31 +37477,2025-03-11T16:34:56.331426-07:00,999.4996337890625,10.745693,10745.693 +37478,2025-03-11T16:35:07.070680-07:00,999.5275268554688,10.739254,10739.254 +37479,2025-03-11T16:35:17.811449-07:00,999.5672607421875,10.740769,10740.769 +37480,2025-03-11T16:35:28.547633-07:00,999.5783081054688,10.736184,10736.184 +37481,2025-03-11T16:35:39.287426-07:00,999.5119018554688,10.739793,10739.793 +37482,2025-03-11T16:35:50.033964-07:00,999.5742797851562,10.746538,10746.538 +37483,2025-03-11T16:36:00.775453-07:00,999.5410766601562,10.741489,10741.489 +37484,2025-03-11T16:36:11.516651-07:00,999.5574340820312,10.741198,10741.198 +37485,2025-03-11T16:36:22.262469-07:00,999.5640869140625,10.745818,10745.818 +37486,2025-03-11T16:36:33.008776-07:00,999.5773315429688,10.746307,10746.307 +37487,2025-03-11T16:36:43.747611-07:00,999.5640869140625,10.738835,10738.835 +37488,2025-03-11T16:36:54.493313-07:00,999.5388793945312,10.745702,10745.702 +37489,2025-03-11T16:37:05.236426-07:00,999.52197265625,10.743113,10743.113 +37490,2025-03-11T16:37:15.973662-07:00,999.52197265625,10.737236,10737.236 +37491,2025-03-11T16:37:26.712424-07:00,999.5631103515625,10.738762,10738.762 +37492,2025-03-11T16:37:37.454637-07:00,999.5448608398438,10.742213,10742.213 +37493,2025-03-11T16:37:48.201425-07:00,999.5448608398438,10.746788,10746.788 +37494,2025-03-11T16:37:58.941876-07:00,999.5674438476562,10.740451,10740.451 +37495,2025-03-11T16:38:09.683623-07:00,999.5557861328125,10.741747,10741.747 +37496,2025-03-11T16:38:20.419945-07:00,999.569091796875,10.736322,10736.322 +37497,2025-03-11T16:38:31.167769-07:00,999.563720703125,10.747824,10747.824 +37498,2025-03-11T16:38:41.901641-07:00,999.5664672851562,10.733872,10733.872 +37499,2025-03-11T16:38:52.651422-07:00,999.5695190429688,10.749781,10749.781 +37500,2025-03-11T16:39:03.393701-07:00,999.5990600585938,10.742279,10742.279 +37501,2025-03-11T16:39:14.134430-07:00,999.6093139648438,10.740729,10740.729 +37502,2025-03-11T16:39:24.878615-07:00,999.5990600585938,10.744185,10744.185 +37503,2025-03-11T16:39:35.619426-07:00,999.618896484375,10.740811,10740.811 +37504,2025-03-11T16:39:46.357598-07:00,999.5775146484375,10.738172,10738.172 +37505,2025-03-11T16:39:57.106614-07:00,999.6268920898438,10.749016,10749.016 +37506,2025-03-11T16:40:07.839489-07:00,999.5857543945312,10.732875,10732.875 +37507,2025-03-11T16:40:18.589426-07:00,999.64013671875,10.749937,10749.937 +37508,2025-03-11T16:40:29.329425-07:00,999.6255493164062,10.739999,10739.999 +37509,2025-03-11T16:40:40.067458-07:00,999.6454467773438,10.738033,10738.033 +37510,2025-03-11T16:40:50.812427-07:00,999.6467895507812,10.744969,10744.969 +37511,2025-03-11T16:41:01.559632-07:00,999.6467895507812,10.747205,10747.205 +37512,2025-03-11T16:41:12.294422-07:00,999.6388549804688,10.73479,10734.79 +37513,2025-03-11T16:41:23.037810-07:00,999.7034912109375,10.743388,10743.388 +37514,2025-03-11T16:41:33.773453-07:00,999.6690063476562,10.735643,10735.643 +37515,2025-03-11T16:41:44.503428-07:00,999.6755981445312,10.729975,10729.975 +37516,2025-03-11T16:41:55.248582-07:00,999.6902465820312,10.745154,10745.154 +37517,2025-03-11T16:42:05.984688-07:00,999.7034912109375,10.736106,10736.106 +37518,2025-03-11T16:42:16.714165-07:00,999.68359375,10.729477,10729.477 +37519,2025-03-11T16:42:27.450616-07:00,999.6676635742188,10.736451,10736.451 +37520,2025-03-11T16:42:38.189640-07:00,999.6726684570312,10.739024,10739.024 +37521,2025-03-11T16:42:48.925601-07:00,999.6425170898438,10.735961,10735.961 +37522,2025-03-11T16:42:59.666670-07:00,999.6500244140625,10.741069,10741.069 +37523,2025-03-11T16:43:10.410598-07:00,999.6062622070312,10.743928,10743.928 +37524,2025-03-11T16:43:21.148551-07:00,999.62353515625,10.737953,10737.953 +37525,2025-03-11T16:43:31.875474-07:00,999.6248168945312,10.726923,10726.923 +37526,2025-03-11T16:43:42.614485-07:00,999.6514282226562,10.739011,10739.011 +37527,2025-03-11T16:43:53.357651-07:00,999.6221923828125,10.743166,10743.166 +37528,2025-03-11T16:44:04.097298-07:00,999.6124877929688,10.739647,10739.647 +37529,2025-03-11T16:44:14.831424-07:00,999.6324462890625,10.734126,10734.126 +37530,2025-03-11T16:44:25.571516-07:00,999.6257934570312,10.740092,10740.092 +37531,2025-03-11T16:44:36.312422-07:00,999.6177978515625,10.740906,10740.906 +37532,2025-03-11T16:44:47.054647-07:00,999.65234375,10.742225,10742.225 +37533,2025-03-11T16:44:57.792579-07:00,999.6161499023438,10.737932,10737.932 +37534,2025-03-11T16:45:08.532310-07:00,999.64794921875,10.739731,10739.731 +37535,2025-03-11T16:45:19.270228-07:00,999.6532592773438,10.737918,10737.918 +37536,2025-03-11T16:45:30.005492-07:00,999.659912109375,10.735264,10735.264 +37537,2025-03-11T16:45:40.754662-07:00,999.6317138671875,10.74917,10749.17 +37538,2025-03-11T16:45:51.490427-07:00,999.6648559570312,10.735765,10735.765 +37539,2025-03-11T16:46:02.224426-07:00,999.6582641601562,10.733999,10733.999 +37540,2025-03-11T16:46:12.969651-07:00,999.6104736328125,10.745225,10745.225 +37541,2025-03-11T16:46:23.709618-07:00,999.6834106445312,10.739967,10739.967 +37542,2025-03-11T16:46:34.444423-07:00,999.6582641601562,10.734805,10734.805 +37543,2025-03-11T16:46:45.180421-07:00,999.684814453125,10.735998,10735.998 +37544,2025-03-11T16:46:55.918427-07:00,999.66357421875,10.738006,10738.006 +37545,2025-03-11T16:47:06.657846-07:00,999.6436157226562,10.739419,10739.419 +37546,2025-03-11T16:47:17.392625-07:00,999.6556396484375,10.734779,10734.779 +37547,2025-03-11T16:47:28.132742-07:00,999.6781005859375,10.740117,10740.117 +37548,2025-03-11T16:47:38.862424-07:00,999.68701171875,10.729682,10729.682 +37549,2025-03-11T16:47:49.598584-07:00,999.6621704101562,10.73616,10736.16 +37550,2025-03-11T16:48:00.341598-07:00,999.6658325195312,10.743014,10743.014 +37551,2025-03-11T16:48:11.074424-07:00,999.6671752929688,10.732826,10732.826 +37552,2025-03-11T16:48:21.820416-07:00,999.652587890625,10.745992,10745.992 +37553,2025-03-11T16:48:32.554454-07:00,999.6445922851562,10.734038,10734.038 +37554,2025-03-11T16:48:43.296424-07:00,999.6459350585938,10.74197,10741.97 +37555,2025-03-11T16:48:54.024592-07:00,999.6180419921875,10.728168,10728.168 +37556,2025-03-11T16:49:04.765615-07:00,999.6923217773438,10.741023,10741.023 +37557,2025-03-11T16:49:15.500424-07:00,999.6990356445312,10.734809,10734.809 +37558,2025-03-11T16:49:26.237424-07:00,999.6578369140625,10.737,10737.0 +37559,2025-03-11T16:49:36.974624-07:00,999.6512451171875,10.7372,10737.2 +37560,2025-03-11T16:49:47.713491-07:00,999.6498413085938,10.738867,10738.867 +37561,2025-03-11T16:49:58.450615-07:00,999.6150512695312,10.737124,10737.124 +37562,2025-03-11T16:50:09.195564-07:00,999.6203002929688,10.744949,10744.949 +37563,2025-03-11T16:50:19.933555-07:00,999.6402587890625,10.737991,10737.991 +37564,2025-03-11T16:50:30.674423-07:00,999.689697265625,10.740868,10740.868 +37565,2025-03-11T16:50:41.406419-07:00,999.643310546875,10.731996,10731.996 +37566,2025-03-11T16:50:52.147563-07:00,999.68701171875,10.741144,10741.144 +37567,2025-03-11T16:51:02.891595-07:00,999.6260986328125,10.744032,10744.032 +37568,2025-03-11T16:51:13.624423-07:00,999.6658325195312,10.732828,10732.828 +37569,2025-03-11T16:51:24.358649-07:00,999.619384765625,10.734226,10734.226 +37570,2025-03-11T16:51:35.102419-07:00,999.6605224609375,10.74377,10743.77 +37571,2025-03-11T16:51:45.839643-07:00,999.64501953125,10.737224,10737.224 +37572,2025-03-11T16:51:56.582257-07:00,999.6290893554688,10.742614,10742.614 +37573,2025-03-11T16:52:07.316425-07:00,999.6436157226562,10.734168,10734.168 +37574,2025-03-11T16:52:18.059424-07:00,999.63037109375,10.742999,10742.999 +37575,2025-03-11T16:52:28.795426-07:00,999.673828125,10.736002,10736.002 +37576,2025-03-11T16:52:39.526634-07:00,999.6157836914062,10.731208,10731.208 +37577,2025-03-11T16:52:50.267598-07:00,999.634033203125,10.740964,10740.964 +37578,2025-03-11T16:53:01.006623-07:00,999.6048583984375,10.739025,10739.025 +37579,2025-03-11T16:53:11.741485-07:00,999.6113891601562,10.734862,10734.862 +37580,2025-03-11T16:53:22.468433-07:00,999.6592407226562,10.726948,10726.948 +37581,2025-03-11T16:53:33.206074-07:00,999.6592407226562,10.737641,10737.641 +37582,2025-03-11T16:53:43.983623-07:00,999.6445922851562,10.777549,10777.549 +37583,2025-03-11T16:53:54.713029-07:00,999.6843872070312,10.729406,10729.406 +37584,2025-03-11T16:54:05.458030-07:00,999.6631469726562,10.745001,10745.001 +37585,2025-03-11T16:54:16.192136-07:00,999.6747436523438,10.734106,10734.106 +37586,2025-03-11T16:54:26.928255-07:00,999.6535034179688,10.736119,10736.119 +37587,2025-03-11T16:54:37.664534-07:00,999.6830444335938,10.736279,10736.279 +37588,2025-03-11T16:54:48.402054-07:00,999.6565551757812,10.73752,10737.52 +37589,2025-03-11T16:54:59.139185-07:00,999.6535034179688,10.737131,10737.131 +37590,2025-03-11T16:55:09.873585-07:00,999.6698608398438,10.7344,10734.4 +37591,2025-03-11T16:55:20.603024-07:00,999.6698608398438,10.729439,10729.439 +37592,2025-03-11T16:55:31.335033-07:00,999.6747436523438,10.732009,10732.009 +37593,2025-03-11T16:55:42.070089-07:00,999.6548461914062,10.735056,10735.056 +37594,2025-03-11T16:55:52.812044-07:00,999.689697265625,10.741955,10741.955 +37595,2025-03-11T16:56:03.541111-07:00,999.68798828125,10.729067,10729.067 +37596,2025-03-11T16:56:14.278059-07:00,999.6867065429688,10.736948,10736.948 +37597,2025-03-11T16:56:25.014063-07:00,999.6963500976562,10.736004,10736.004 +37598,2025-03-11T16:56:35.747820-07:00,999.689697265625,10.733757,10733.757 +37599,2025-03-11T16:56:46.487116-07:00,999.7095947265625,10.739296,10739.296 +37600,2025-03-11T16:56:57.226029-07:00,999.6910400390625,10.738913,10738.913 +37601,2025-03-11T16:57:07.954382-07:00,999.68798828125,10.728353,10728.353 +37602,2025-03-11T16:57:18.693066-07:00,999.6947021484375,10.738684,10738.684 +37603,2025-03-11T16:57:29.432216-07:00,999.7162475585938,10.73915,10739.15 +37604,2025-03-11T16:57:40.170057-07:00,999.7145385742188,10.737841,10737.841 +37605,2025-03-11T16:57:50.909152-07:00,999.7242431640625,10.739095,10739.095 +37606,2025-03-11T16:58:01.643324-07:00,999.7109375,10.734172,10734.172 +37607,2025-03-11T16:58:12.377091-07:00,999.7095947265625,10.733767,10733.767 +37608,2025-03-11T16:58:23.121396-07:00,999.6976318359375,10.744305,10744.305 +37609,2025-03-11T16:58:33.864207-07:00,999.7388305664062,10.742811,10742.811 +37610,2025-03-11T16:58:44.596237-07:00,999.7454833984375,10.73203,10732.03 +37611,2025-03-11T16:58:55.333028-07:00,999.7056274414062,10.736791,10736.791 +37612,2025-03-11T16:59:06.077280-07:00,999.7683715820312,10.744252,10744.252 +37613,2025-03-11T16:59:16.811027-07:00,999.746826171875,10.733747,10733.747 +37614,2025-03-11T16:59:27.551218-07:00,999.7166137695312,10.740191,10740.191 +37615,2025-03-11T16:59:38.284153-07:00,999.7166137695312,10.732935,10732.935 +37616,2025-03-11T16:59:49.024202-07:00,999.7003173828125,10.740049,10740.049 +37617,2025-03-11T16:59:59.760309-07:00,999.6967163085938,10.736107,10736.107 +37618,2025-03-11T17:00:10.498030-07:00,999.7926635742188,10.737721,10737.721 +37619,2025-03-11T17:00:21.237206-07:00,999.7129516601562,10.739176,10739.176 +37620,2025-03-11T17:00:31.973234-07:00,999.73291015625,10.736028,10736.028 +37621,2025-03-11T17:00:42.710392-07:00,999.7408447265625,10.737158,10737.158 +37622,2025-03-11T17:00:53.448531-07:00,999.71435546875,10.738139,10738.139 +37623,2025-03-11T17:01:04.178593-07:00,999.71435546875,10.730062,10730.062 +37624,2025-03-11T17:01:14.917596-07:00,999.7474975585938,10.739003,10739.003 +37625,2025-03-11T17:01:25.649030-07:00,999.7064208984375,10.731434,10731.434 +37626,2025-03-11T17:01:36.388022-07:00,999.71435546875,10.738992,10738.992 +37627,2025-03-11T17:01:47.119204-07:00,999.693115234375,10.731182,10731.182 +37628,2025-03-11T17:01:57.859133-07:00,999.684814453125,10.739929,10739.929 +37629,2025-03-11T17:02:08.589022-07:00,999.693115234375,10.729889,10729.889 +37630,2025-03-11T17:02:19.321026-07:00,999.69970703125,10.732004,10732.004 +37631,2025-03-11T17:02:30.060179-07:00,999.6715698242188,10.739153,10739.153 +37632,2025-03-11T17:02:40.801442-07:00,999.6781005859375,10.741263,10741.263 +37633,2025-03-11T17:02:51.535026-07:00,999.6758422851562,10.733584,10733.584 +37634,2025-03-11T17:03:02.278232-07:00,999.6798706054688,10.743206,10743.206 +37635,2025-03-11T17:03:13.016031-07:00,999.659912109375,10.737799,10737.799 +37636,2025-03-11T17:03:23.751215-07:00,999.68115234375,10.735184,10735.184 +37637,2025-03-11T17:03:34.484515-07:00,999.626708984375,10.7333,10733.3 +37638,2025-03-11T17:03:45.218095-07:00,999.6334228515625,10.73358,10733.58 +37639,2025-03-11T17:03:55.955025-07:00,999.6532592773438,10.73693,10736.93 +37640,2025-03-11T17:04:06.689029-07:00,999.6213989257812,10.734004,10734.004 +37641,2025-03-11T17:04:17.435103-07:00,999.6546630859375,10.746074,10746.074 +37642,2025-03-11T17:04:28.170777-07:00,999.6612548828125,10.735674,10735.674 +37643,2025-03-11T17:04:38.908029-07:00,999.6626586914062,10.737252,10737.252 +37644,2025-03-11T17:04:49.646081-07:00,999.6426391601562,10.738052,10738.052 +37645,2025-03-11T17:05:00.387028-07:00,999.6589965820312,10.740947,10740.947 +37646,2025-03-11T17:05:11.120856-07:00,999.6324462890625,10.733828,10733.828 +37647,2025-03-11T17:05:21.856580-07:00,999.6257934570312,10.735724,10735.724 +37648,2025-03-11T17:05:32.593028-07:00,999.6646728515625,10.736448,10736.448 +37649,2025-03-11T17:05:43.328022-07:00,999.657958984375,10.734994,10734.994 +37650,2025-03-11T17:05:54.071256-07:00,999.6925048828125,10.743234,10743.234 +37651,2025-03-11T17:06:04.806135-07:00,999.6543579101562,10.734879,10734.879 +37652,2025-03-11T17:06:15.552197-07:00,999.67431640625,10.746062,10746.062 +37653,2025-03-11T17:06:26.291841-07:00,999.6212768554688,10.739644,10739.644 +37654,2025-03-11T17:06:37.024031-07:00,999.6305541992188,10.73219,10732.19 +37655,2025-03-11T17:06:47.767056-07:00,999.6998291015625,10.743025,10743.025 +37656,2025-03-11T17:06:58.506438-07:00,999.6865844726562,10.739382,10739.382 +37657,2025-03-11T17:07:09.243231-07:00,999.661376953125,10.736793,10736.793 +37658,2025-03-11T17:07:19.985456-07:00,999.716064453125,10.742225,10742.225 +37659,2025-03-11T17:07:30.718030-07:00,999.7373657226562,10.732574,10732.574 +37660,2025-03-11T17:07:41.460267-07:00,999.6923217773438,10.742237,10742.237 +37661,2025-03-11T17:07:52.199063-07:00,999.7006225585938,10.738796,10738.796 +37662,2025-03-11T17:08:02.941239-07:00,999.701904296875,10.742176,10742.176 +37663,2025-03-11T17:08:13.670231-07:00,999.6900024414062,10.728992,10728.992 +37664,2025-03-11T17:08:24.409224-07:00,999.7098999023438,10.738993,10738.993 +37665,2025-03-11T17:08:35.154061-07:00,999.7142333984375,10.744837,10744.837 +37666,2025-03-11T17:08:45.884744-07:00,999.7274780273438,10.730683,10730.683 +37667,2025-03-11T17:08:56.628214-07:00,999.7106323242188,10.74347,10743.47 +37668,2025-03-11T17:09:07.359228-07:00,999.723876953125,10.731014,10731.014 +37669,2025-03-11T17:09:18.097103-07:00,999.708251953125,10.737875,10737.875 +37670,2025-03-11T17:09:28.841097-07:00,999.6950073242188,10.743994,10743.994 +37671,2025-03-11T17:09:39.582205-07:00,999.7176513671875,10.741108,10741.108 +37672,2025-03-11T17:09:50.316027-07:00,999.7176513671875,10.733822,10733.822 +37673,2025-03-11T17:10:01.060055-07:00,999.7259521484375,10.744028,10744.028 +37674,2025-03-11T17:10:11.798044-07:00,999.7059936523438,10.737989,10737.989 +37675,2025-03-11T17:10:22.537194-07:00,999.717041015625,10.73915,10739.15 +37676,2025-03-11T17:10:33.273619-07:00,999.6954956054688,10.736425,10736.425 +37677,2025-03-11T17:10:44.007214-07:00,999.7020263671875,10.733595,10733.595 +37678,2025-03-11T17:10:54.750272-07:00,999.717041015625,10.743058,10743.058 +37679,2025-03-11T17:11:05.480207-07:00,999.6807861328125,10.729935,10729.935 +37680,2025-03-11T17:11:16.221904-07:00,999.6954956054688,10.741697,10741.697 +37681,2025-03-11T17:11:26.955307-07:00,999.704345703125,10.733403,10733.403 +37682,2025-03-11T17:11:37.698062-07:00,999.6867065429688,10.742755,10742.755 +37683,2025-03-11T17:11:48.428243-07:00,999.7076416015625,10.730181,10730.181 +37684,2025-03-11T17:11:59.168213-07:00,999.7086181640625,10.73997,10739.97 +37685,2025-03-11T17:12:09.904243-07:00,999.6799926757812,10.73603,10736.03 +37686,2025-03-11T17:12:20.642098-07:00,999.7008056640625,10.737855,10737.855 +37687,2025-03-11T17:12:31.372032-07:00,999.6510009765625,10.729934,10729.934 +37688,2025-03-11T17:12:42.116039-07:00,999.6900634765625,10.744007,10744.007 +37689,2025-03-11T17:12:52.850239-07:00,999.6763916015625,10.7342,10734.2 +37690,2025-03-11T17:13:03.594405-07:00,999.7404174804688,10.744166,10744.166 +37691,2025-03-11T17:13:14.333030-07:00,999.6812744140625,10.738625,10738.625 +37692,2025-03-11T17:13:25.072087-07:00,999.6741943359375,10.739057,10739.057 +37693,2025-03-11T17:13:35.808030-07:00,999.69873046875,10.735943,10735.943 +37694,2025-03-11T17:13:46.539440-07:00,999.67578125,10.73141,10731.41 +37695,2025-03-11T17:13:57.283206-07:00,999.670166015625,10.743766,10743.766 +37696,2025-03-11T17:14:08.020880-07:00,999.6829833984375,10.737674,10737.674 +37697,2025-03-11T17:14:18.758037-07:00,999.69189453125,10.737157,10737.157 +37698,2025-03-11T17:14:29.493294-07:00,999.67919921875,10.735257,10735.257 +37699,2025-03-11T17:14:40.230100-07:00,999.7030639648438,10.736806,10736.806 +37700,2025-03-11T17:14:50.964105-07:00,999.6707763671875,10.734005,10734.005 +37701,2025-03-11T17:15:01.713769-07:00,999.6677856445312,10.749664,10749.664 +37702,2025-03-11T17:15:12.453099-07:00,999.6303100585938,10.73933,10739.33 +37703,2025-03-11T17:15:23.189024-07:00,999.7068481445312,10.735925,10735.925 +37704,2025-03-11T17:15:33.921322-07:00,999.6709594726562,10.732298,10732.298 +37705,2025-03-11T17:15:44.657209-07:00,999.6693725585938,10.735887,10735.887 +37706,2025-03-11T17:15:55.401521-07:00,999.6798706054688,10.744312,10744.312 +37707,2025-03-11T17:16:06.130203-07:00,999.6732788085938,10.728682,10728.682 +37708,2025-03-11T17:16:16.867028-07:00,999.688720703125,10.736825,10736.825 +37709,2025-03-11T17:16:27.608030-07:00,999.675537109375,10.741002,10741.002 +37710,2025-03-11T17:16:38.336024-07:00,999.73388671875,10.727994,10727.994 +37711,2025-03-11T17:16:49.075029-07:00,999.66748046875,10.739005,10739.005 +37712,2025-03-11T17:16:59.813031-07:00,999.6807861328125,10.738002,10738.002 +37713,2025-03-11T17:17:10.554030-07:00,999.685791015625,10.740999,10740.999 +37714,2025-03-11T17:17:21.285193-07:00,999.66748046875,10.731163,10731.163 +37715,2025-03-11T17:17:32.018028-07:00,999.6659545898438,10.732835,10732.835 +37716,2025-03-11T17:17:42.763027-07:00,999.7109375,10.744999,10744.999 +37717,2025-03-11T17:17:53.498375-07:00,999.7736206054688,10.735348,10735.348 +37718,2025-03-11T17:18:04.233211-07:00,999.6924438476562,10.734836,10734.836 +37719,2025-03-11T17:18:14.970424-07:00,999.6954956054688,10.737213,10737.213 +37720,2025-03-11T17:18:25.699179-07:00,999.694091796875,10.728755,10728.755 +37721,2025-03-11T17:18:36.435026-07:00,999.7086791992188,10.735847,10735.847 +37722,2025-03-11T17:18:47.173032-07:00,999.71142578125,10.738006,10738.006 +37723,2025-03-11T17:18:57.913220-07:00,999.6798706054688,10.740188,10740.188 +37724,2025-03-11T17:19:08.648139-07:00,999.7078247070312,10.734919,10734.919 +37725,2025-03-11T17:19:19.381030-07:00,999.6958618164062,10.732891,10732.891 +37726,2025-03-11T17:19:30.118073-07:00,999.7068481445312,10.737043,10737.043 +37727,2025-03-11T17:19:40.856209-07:00,999.701904296875,10.738136,10738.136 +37728,2025-03-11T17:19:51.587230-07:00,999.6995849609375,10.731021,10731.021 +37729,2025-03-11T17:20:02.320024-07:00,999.7142333984375,10.732794,10732.794 +37730,2025-03-11T17:20:13.055208-07:00,999.6920166015625,10.735184,10735.184 +37731,2025-03-11T17:20:23.788223-07:00,999.6814575195312,10.733015,10733.015 +37732,2025-03-11T17:20:34.528795-07:00,999.68310546875,10.740572,10740.572 +37733,2025-03-11T17:20:45.260055-07:00,999.6646118164062,10.73126,10731.26 +37734,2025-03-11T17:20:55.998043-07:00,999.7220458984375,10.737988,10737.988 +37735,2025-03-11T17:21:06.734229-07:00,999.6769409179688,10.736186,10736.186 +37736,2025-03-11T17:21:17.462214-07:00,999.7078247070312,10.727985,10727.985 +37737,2025-03-11T17:21:28.196032-07:00,999.6856079101562,10.733818,10733.818 +37738,2025-03-11T17:21:38.939569-07:00,999.6989135742188,10.743537,10743.537 +37739,2025-03-11T17:21:49.667943-07:00,999.716552734375,10.728374,10728.374 +37740,2025-03-11T17:22:00.408241-07:00,999.6846923828125,10.740298,10740.298 +37741,2025-03-11T17:22:11.147245-07:00,999.7076416015625,10.739004,10739.004 +37742,2025-03-11T17:22:21.878801-07:00,999.7039794921875,10.731556,10731.556 +37743,2025-03-11T17:22:32.615261-07:00,999.7252197265625,10.73646,10736.46 +37744,2025-03-11T17:22:43.358342-07:00,999.6735229492188,10.743081,10743.081 +37745,2025-03-11T17:22:54.090028-07:00,999.7176513671875,10.731686,10731.686 +37746,2025-03-11T17:23:04.828225-07:00,999.7061157226562,10.738197,10738.197 +37747,2025-03-11T17:23:15.566030-07:00,999.7249755859375,10.737805,10737.805 +37748,2025-03-11T17:23:26.301247-07:00,999.713134765625,10.735217,10735.217 +37749,2025-03-11T17:23:37.039149-07:00,999.74267578125,10.737902,10737.902 +37750,2025-03-11T17:23:47.777681-07:00,999.7453002929688,10.738532,10738.532 +37751,2025-03-11T17:23:58.505046-07:00,999.743408203125,10.727365,10727.365 +37752,2025-03-11T17:24:09.250242-07:00,999.731689453125,10.745196,10745.196 +37753,2025-03-11T17:24:19.979338-07:00,999.7265014648438,10.729096,10729.096 +37754,2025-03-11T17:24:30.719824-07:00,999.7029418945312,10.740486,10740.486 +37755,2025-03-11T17:24:41.451528-07:00,999.7388305664062,10.731704,10731.704 +37756,2025-03-11T17:24:52.193031-07:00,999.7166137695312,10.741503,10741.503 +37757,2025-03-11T17:25:02.923040-07:00,999.7498168945312,10.730009,10730.009 +37758,2025-03-11T17:25:13.659925-07:00,999.7687377929688,10.736885,10736.885 +37759,2025-03-11T17:25:24.404263-07:00,999.7076416015625,10.744338,10744.338 +37760,2025-03-11T17:25:35.137056-07:00,999.7173461914062,10.732793,10732.793 +37761,2025-03-11T17:25:45.868435-07:00,999.7186889648438,10.731379,10731.379 +37762,2025-03-11T17:25:56.601194-07:00,999.753173828125,10.732759,10732.759 +37763,2025-03-11T17:26:07.337259-07:00,999.7186889648438,10.736065,10736.065 +37764,2025-03-11T17:26:18.077755-07:00,999.6921997070312,10.740496,10740.496 +37765,2025-03-11T17:26:28.808244-07:00,999.7482299804688,10.730489,10730.489 +37766,2025-03-11T17:26:39.540346-07:00,999.7266235351562,10.732102,10732.102 +37767,2025-03-11T17:26:50.275029-07:00,999.7266235351562,10.734683,10734.683 +37768,2025-03-11T17:27:01.011030-07:00,999.7399291992188,10.736001,10736.001 +37769,2025-03-11T17:27:11.752101-07:00,999.7239990234375,10.741071,10741.071 +37770,2025-03-11T17:27:22.486163-07:00,999.710693359375,10.734062,10734.062 +37771,2025-03-11T17:27:33.222287-07:00,999.7288818359375,10.736124,10736.124 +37772,2025-03-11T17:27:43.958022-07:00,999.6944580078125,10.735735,10735.735 +37773,2025-03-11T17:27:54.693030-07:00,999.684814453125,10.735008,10735.008 +37774,2025-03-11T17:28:05.430057-07:00,999.724609375,10.737027,10737.027 +37775,2025-03-11T17:28:16.163728-07:00,999.68701171875,10.733671,10733.671 +37776,2025-03-11T17:28:26.907516-07:00,999.7122802734375,10.743788,10743.788 +37777,2025-03-11T17:28:37.635056-07:00,999.6681518554688,10.72754,10727.54 +37778,2025-03-11T17:28:48.374381-07:00,999.6734619140625,10.739325,10739.325 +37779,2025-03-11T17:28:59.100579-07:00,999.66015625,10.726198,10726.198 +37780,2025-03-11T17:29:09.837028-07:00,999.6654663085938,10.736449,10736.449 +37781,2025-03-11T17:29:20.568089-07:00,999.7218627929688,10.731061,10731.061 +37782,2025-03-11T17:29:31.297210-07:00,999.6953125,10.729121,10729.121 +37783,2025-03-11T17:29:42.031425-07:00,999.6922607421875,10.734215,10734.215 +37784,2025-03-11T17:29:52.761021-07:00,999.7373657226562,10.729596,10729.596 +37785,2025-03-11T17:30:03.499217-07:00,999.7572631835938,10.738196,10738.196 +37786,2025-03-11T17:30:14.233550-07:00,999.7012329101562,10.734333,10734.333 +37787,2025-03-11T17:30:24.968174-07:00,999.756591796875,10.734624,10734.624 +37788,2025-03-11T17:30:35.693022-07:00,999.7432861328125,10.724848,10724.848 +37789,2025-03-11T17:30:46.426223-07:00,999.7581787109375,10.733201,10733.201 +37790,2025-03-11T17:30:57.163387-07:00,999.7073974609375,10.737164,10737.164 +37791,2025-03-11T17:31:07.890081-07:00,999.745849609375,10.726694,10726.694 +37792,2025-03-11T17:31:18.627231-07:00,999.7193603515625,10.73715,10737.15 +37793,2025-03-11T17:31:29.353027-07:00,999.7508544921875,10.725796,10725.796 +37794,2025-03-11T17:31:40.089030-07:00,999.7296142578125,10.736003,10736.003 +37795,2025-03-11T17:31:50.818546-07:00,999.738525390625,10.729516,10729.516 +37796,2025-03-11T17:32:01.550056-07:00,999.700927734375,10.73151,10731.51 +37797,2025-03-11T17:32:12.277047-07:00,999.7305297851562,10.726991,10726.991 +37798,2025-03-11T17:32:23.020054-07:00,999.72216796875,10.743007,10743.007 +37799,2025-03-11T17:32:33.755343-07:00,999.7274780273438,10.735289,10735.289 +37800,2025-03-11T17:32:44.483200-07:00,999.7593994140625,10.727857,10727.857 +37801,2025-03-11T17:32:55.215082-07:00,999.7098999023438,10.731882,10731.882 +37802,2025-03-11T17:33:05.947264-07:00,999.7284545898438,10.732182,10732.182 +37803,2025-03-11T17:33:16.683034-07:00,999.7615356445312,10.73577,10735.77 +37804,2025-03-11T17:33:27.417065-07:00,999.760009765625,10.734031,10734.031 +37805,2025-03-11T17:33:38.152103-07:00,999.73876953125,10.735038,10735.038 +37806,2025-03-11T17:33:48.882144-07:00,999.73876953125,10.730041,10730.041 +37807,2025-03-11T17:33:59.616058-07:00,999.7095336914062,10.733914,10733.914 +37808,2025-03-11T17:34:10.353023-07:00,999.7572631835938,10.736965,10736.965 +37809,2025-03-11T17:34:21.088301-07:00,999.7240600585938,10.735278,10735.278 +37810,2025-03-11T17:34:31.828099-07:00,999.7704467773438,10.739798,10739.798 +37811,2025-03-11T17:34:42.566406-07:00,999.7240600585938,10.738307,10738.307 +37812,2025-03-11T17:34:53.292025-07:00,999.7227172851562,10.725619,10725.619 +37813,2025-03-11T17:35:04.029248-07:00,999.7360229492188,10.737223,10737.223 +37814,2025-03-11T17:35:14.769451-07:00,999.7462768554688,10.740203,10740.203 +37815,2025-03-11T17:35:25.505217-07:00,999.78076171875,10.735766,10735.766 +37816,2025-03-11T17:35:36.240020-07:00,999.7559204101562,10.734803,10734.803 +37817,2025-03-11T17:35:46.970074-07:00,999.7940673828125,10.730054,10730.054 +37818,2025-03-11T17:35:57.707027-07:00,999.7692260742188,10.736953,10736.953 +37819,2025-03-11T17:36:08.441205-07:00,999.7476806640625,10.734178,10734.178 +37820,2025-03-11T17:36:19.169482-07:00,999.7874145507812,10.728277,10728.277 +37821,2025-03-11T17:36:29.905025-07:00,999.7957153320312,10.735543,10735.543 +37822,2025-03-11T17:36:40.642489-07:00,999.7661743164062,10.737464,10737.464 +37823,2025-03-11T17:36:51.368023-07:00,999.7542114257812,10.725534,10725.534 +37824,2025-03-11T17:37:02.108727-07:00,999.7661743164062,10.740704,10740.704 +37825,2025-03-11T17:37:12.849025-07:00,999.78076171875,10.740298,10740.298 +37826,2025-03-11T17:37:23.588419-07:00,999.7874145507812,10.739394,10739.394 +37827,2025-03-11T17:37:34.326125-07:00,999.7559204101562,10.737706,10737.706 +37828,2025-03-11T17:37:45.057156-07:00,999.774169921875,10.731031,10731.031 +37829,2025-03-11T17:37:55.789023-07:00,999.7781372070312,10.731867,10731.867 +37830,2025-03-11T17:38:06.529191-07:00,999.7793579101562,10.740168,10740.168 +37831,2025-03-11T17:38:17.263203-07:00,999.7714233398438,10.734012,10734.012 +37832,2025-03-11T17:38:28.001027-07:00,999.8178100585938,10.737824,10737.824 +37833,2025-03-11T17:38:38.728027-07:00,999.8162231445312,10.727,10727.0 +37834,2025-03-11T17:38:49.467074-07:00,999.7979736328125,10.739047,10739.047 +37835,2025-03-11T17:39:00.199429-07:00,999.7896728515625,10.732355,10732.355 +37836,2025-03-11T17:39:10.931024-07:00,999.8178100585938,10.731595,10731.595 +37837,2025-03-11T17:39:21.672245-07:00,999.7830200195312,10.741221,10741.221 +37838,2025-03-11T17:39:32.401227-07:00,999.7670288085938,10.728982,10728.982 +37839,2025-03-11T17:39:43.134330-07:00,999.7882690429688,10.733103,10733.103 +37840,2025-03-11T17:39:53.870028-07:00,999.8347778320312,10.735698,10735.698 +37841,2025-03-11T17:40:04.603037-07:00,999.8467407226562,10.733009,10733.009 +37842,2025-03-11T17:40:15.335214-07:00,999.8303833007812,10.732177,10732.177 +37843,2025-03-11T17:40:26.073757-07:00,999.8201293945312,10.738543,10738.543 +37844,2025-03-11T17:40:36.798309-07:00,999.8104858398438,10.724552,10724.552 +37845,2025-03-11T17:40:47.535218-07:00,999.8074951171875,10.736909,10736.909 +37846,2025-03-11T17:40:58.268425-07:00,999.8370361328125,10.733207,10733.207 +37847,2025-03-11T17:41:09.006095-07:00,999.8140869140625,10.73767,10737.67 +37848,2025-03-11T17:41:19.739024-07:00,999.8472900390625,10.732929,10732.929 +37849,2025-03-11T17:41:30.475036-07:00,999.831298828125,10.736012,10736.012 +37850,2025-03-11T17:41:41.203679-07:00,999.8524780273438,10.728643,10728.643 +37851,2025-03-11T17:41:51.943032-07:00,999.8445434570312,10.739353,10739.353 +37852,2025-03-11T17:42:02.671103-07:00,999.84326171875,10.728071,10728.071 +37853,2025-03-11T17:42:13.404140-07:00,999.8681030273438,10.733037,10733.037 +37854,2025-03-11T17:42:24.141861-07:00,999.8534545898438,10.737721,10737.721 +37855,2025-03-11T17:42:34.881233-07:00,999.8203125,10.739372,10739.372 +37856,2025-03-11T17:42:45.608162-07:00,999.8189697265625,10.726929,10726.929 +37857,2025-03-11T17:42:56.351235-07:00,999.83056640625,10.743073,10743.073 +37858,2025-03-11T17:43:07.076048-07:00,999.865966796875,10.724813,10724.813 +37859,2025-03-11T17:43:17.812053-07:00,999.8557739257812,10.736005,10736.005 +37860,2025-03-11T17:43:28.556144-07:00,999.8367309570312,10.744091,10744.091 +37861,2025-03-11T17:43:39.283155-07:00,999.8218994140625,10.727011,10727.011 +37862,2025-03-11T17:43:50.015019-07:00,999.838134765625,10.731864,10731.864 +37863,2025-03-11T17:44:00.750023-07:00,999.8390502929688,10.735004,10735.004 +37864,2025-03-11T17:44:11.479244-07:00,999.8535766601562,10.729221,10729.221 +37865,2025-03-11T17:44:22.217218-07:00,999.8506469726562,10.737974,10737.974 +37866,2025-03-11T17:44:32.947101-07:00,999.8068237304688,10.729883,10729.883 +37867,2025-03-11T17:44:43.680091-07:00,999.8663940429688,10.73299,10732.99 +37868,2025-03-11T17:44:54.419211-07:00,999.8382568359375,10.73912,10739.12 +37869,2025-03-11T17:45:05.146382-07:00,999.830322265625,10.727171,10727.171 +37870,2025-03-11T17:45:15.884269-07:00,999.858154296875,10.737887,10737.887 +37871,2025-03-11T17:45:26.618238-07:00,999.8289184570312,10.733969,10733.969 +37872,2025-03-11T17:45:37.347192-07:00,999.84716796875,10.728954,10728.954 +37873,2025-03-11T17:45:48.089847-07:00,999.8736572265625,10.742655,10742.655 +37874,2025-03-11T17:45:58.820091-07:00,999.8643798828125,10.730244,10730.244 +37875,2025-03-11T17:46:09.548229-07:00,999.877685546875,10.728138,10728.138 +37876,2025-03-11T17:46:20.286417-07:00,999.853759765625,10.738188,10738.188 +37877,2025-03-11T17:46:31.019024-07:00,999.836181640625,10.732607,10732.607 +37878,2025-03-11T17:46:41.741023-07:00,999.8082885742188,10.721999,10721.999 +37879,2025-03-11T17:46:52.479225-07:00,999.8348388671875,10.738202,10738.202 +37880,2025-03-11T17:47:03.214334-07:00,999.8414306640625,10.735109,10735.109 +37881,2025-03-11T17:47:13.946661-07:00,999.826904296875,10.732327,10732.327 +37882,2025-03-11T17:47:24.673813-07:00,999.8334350585938,10.727152,10727.152 +37883,2025-03-11T17:47:35.404362-07:00,999.8238525390625,10.730549,10730.549 +37884,2025-03-11T17:47:46.142024-07:00,999.844970703125,10.737662,10737.662 +37885,2025-03-11T17:47:56.866081-07:00,999.8953857421875,10.724057,10724.057 +37886,2025-03-11T17:48:07.604312-07:00,999.8489990234375,10.738231,10738.231 +37887,2025-03-11T17:48:18.329097-07:00,999.8621826171875,10.724785,10724.785 +37888,2025-03-11T17:48:29.065323-07:00,999.8261108398438,10.736226,10736.226 +37889,2025-03-11T17:48:39.794230-07:00,999.796875,10.728907,10728.907 +37890,2025-03-11T17:48:50.524034-07:00,999.864501953125,10.729804,10729.804 +37891,2025-03-11T17:49:01.260029-07:00,999.8300170898438,10.735995,10735.995 +37892,2025-03-11T17:49:11.994146-07:00,999.8203125,10.734117,10734.117 +37893,2025-03-11T17:49:22.723199-07:00,999.799072265625,10.729053,10729.053 +37894,2025-03-11T17:49:33.451082-07:00,999.799072265625,10.727883,10727.883 +37895,2025-03-11T17:49:44.187283-07:00,999.8548583984375,10.736201,10736.201 +37896,2025-03-11T17:49:54.923689-07:00,999.8306274414062,10.736406,10736.406 +37897,2025-03-11T17:50:05.655343-07:00,999.8439331054688,10.731654,10731.654 +37898,2025-03-11T17:50:16.384029-07:00,999.878662109375,10.728686,10728.686 +37899,2025-03-11T17:50:27.120241-07:00,999.8623657226562,10.736212,10736.212 +37900,2025-03-11T17:50:37.847321-07:00,999.8358764648438,10.72708,10727.08 +37901,2025-03-11T17:50:48.578218-07:00,999.8358764648438,10.730897,10730.897 +37902,2025-03-11T17:50:59.307281-07:00,999.8478393554688,10.729063,10729.063 +37903,2025-03-11T17:51:10.037234-07:00,999.888916015625,10.729953,10729.953 +37904,2025-03-11T17:51:20.775131-07:00,999.84912109375,10.737897,10737.897 +37905,2025-03-11T17:51:31.508428-07:00,999.888916015625,10.733297,10733.297 +37906,2025-03-11T17:51:42.232112-07:00,999.90576171875,10.723684,10723.684 +37907,2025-03-11T17:51:52.969079-07:00,999.8809204101562,10.736967,10736.967 +37908,2025-03-11T17:52:03.699215-07:00,999.865966796875,10.730136,10730.136 +37909,2025-03-11T17:52:14.431553-07:00,999.8579711914062,10.732338,10732.338 +37910,2025-03-11T17:52:25.167236-07:00,999.8875122070312,10.735683,10735.683 +37911,2025-03-11T17:52:35.896123-07:00,999.899169921875,10.728887,10728.887 +37912,2025-03-11T17:52:46.621025-07:00,999.8726806640625,10.724902,10724.902 +37913,2025-03-11T17:52:57.350026-07:00,999.8911743164062,10.729001,10729.001 +37914,2025-03-11T17:53:08.080806-07:00,999.9255981445312,10.73078,10730.78 +37915,2025-03-11T17:53:18.820263-07:00,999.930908203125,10.739457,10739.457 +37916,2025-03-11T17:53:29.544238-07:00,999.9428100585938,10.723975,10723.975 +37917,2025-03-11T17:53:40.390585-07:00,999.949462890625,10.846347,10846.347 +37918,2025-03-11T17:53:51.122794-07:00,999.9176635742188,10.732209,10732.209 +37919,2025-03-11T17:54:01.863602-07:00,999.9478149414062,10.740808,10740.808 +37920,2025-03-11T17:54:12.591763-07:00,999.9508056640625,10.728161,10728.161 +37921,2025-03-11T17:54:23.322571-07:00,999.9375610351562,10.730808,10730.808 +37922,2025-03-11T17:54:34.054649-07:00,999.9389038085938,10.732078,10732.078 +37923,2025-03-11T17:54:44.794477-07:00,999.936279296875,10.739828,10739.828 +37924,2025-03-11T17:54:55.519573-07:00,999.9163208007812,10.725096,10725.096 +37925,2025-03-11T17:55:06.247605-07:00,999.9163208007812,10.728032,10728.032 +37926,2025-03-11T17:55:16.988799-07:00,999.92431640625,10.741194,10741.194 +37927,2025-03-11T17:55:27.718582-07:00,999.9345092773438,10.729783,10729.783 +37928,2025-03-11T17:55:38.450052-07:00,999.8917236328125,10.73147,10731.47 +37929,2025-03-11T17:55:49.183777-07:00,999.9345092773438,10.733725,10733.725 +37930,2025-03-11T17:55:59.911582-07:00,999.98095703125,10.727805,10727.805 +37931,2025-03-11T17:56:10.649582-07:00,999.9862670898438,10.738,10738.0 +37932,2025-03-11T17:56:21.383170-07:00,999.954345703125,10.733588,10733.588 +37933,2025-03-11T17:56:32.104655-07:00,999.9759521484375,10.721485,10721.485 +37934,2025-03-11T17:56:42.842054-07:00,999.9345092773438,10.737399,10737.399 +37935,2025-03-11T17:56:53.578927-07:00,999.9279174804688,10.736873,10736.873 +37936,2025-03-11T17:57:04.307784-07:00,999.9795532226562,10.728857,10728.857 +37937,2025-03-11T17:57:15.039580-07:00,999.9464111328125,10.731796,10731.796 +37938,2025-03-11T17:57:25.771746-07:00,999.941162109375,10.732166,10732.166 +37939,2025-03-11T17:57:36.502642-07:00,999.9000244140625,10.730896,10730.896 +37940,2025-03-11T17:57:47.232740-07:00,999.8867797851562,10.730098,10730.098 +37941,2025-03-11T17:57:57.971263-07:00,999.8983764648438,10.738523,10738.523 +37942,2025-03-11T17:58:08.697608-07:00,999.9103393554688,10.726345,10726.345 +37943,2025-03-11T17:58:19.423577-07:00,999.9567260742188,10.725969,10725.969 +37944,2025-03-11T17:58:30.155966-07:00,999.9434204101562,10.732389,10732.389 +37945,2025-03-11T17:58:40.897784-07:00,999.936767578125,10.741818,10741.818 +37946,2025-03-11T17:58:51.631584-07:00,999.961669921875,10.7338,10733.8 +37947,2025-03-11T17:59:02.363833-07:00,999.9920043945312,10.732249,10732.249 +37948,2025-03-11T17:59:13.090810-07:00,1000.0477905273438,10.726977,10726.977 +37949,2025-03-11T17:59:23.832814-07:00,1000.0198974609375,10.742004,10742.004 +37950,2025-03-11T17:59:34.561579-07:00,1000.0516967773438,10.728765,10728.765 +37951,2025-03-11T17:59:45.294611-07:00,1000.0427856445312,10.733032,10733.032 +37952,2025-03-11T17:59:56.033767-07:00,1000.0531005859375,10.739156,10739.156 +37953,2025-03-11T18:00:06.759579-07:00,1000.119384765625,10.725812,10725.812 +37954,2025-03-11T18:00:17.489776-07:00,1000.058349609375,10.730197,10730.197 +37955,2025-03-11T18:00:28.232893-07:00,1000.058349609375,10.743117,10743.117 +37956,2025-03-11T18:00:38.957579-07:00,1000.0783081054688,10.724686,10724.686 +37957,2025-03-11T18:00:49.694829-07:00,1000.08984375,10.73725,10737.25 +37958,2025-03-11T18:01:00.428583-07:00,1000.0407104492188,10.733754,10733.754 +37959,2025-03-11T18:01:11.161742-07:00,1000.1070556640625,10.733159,10733.159 +37960,2025-03-11T18:01:21.897718-07:00,1000.0575561523438,10.735976,10735.976 +37961,2025-03-11T18:01:32.635582-07:00,1000.0509643554688,10.737864,10737.864 +37962,2025-03-11T18:01:43.375752-07:00,1000.0628051757812,10.74017,10740.17 +37963,2025-03-11T18:01:54.106778-07:00,1000.0611572265625,10.731026,10731.026 +37964,2025-03-11T18:02:04.842350-07:00,1000.0695190429688,10.735572,10735.572 +37965,2025-03-11T18:02:15.568579-07:00,1000.0929565429688,10.726229,10726.229 +37966,2025-03-11T18:02:26.309582-07:00,1000.11279296875,10.741003,10741.003 +37967,2025-03-11T18:02:37.045732-07:00,1000.11669921875,10.73615,10736.15 +37968,2025-03-11T18:02:47.770579-07:00,1000.103515625,10.724847,10724.847 +37969,2025-03-11T18:02:58.507924-07:00,1000.1283569335938,10.737345,10737.345 +37970,2025-03-11T18:03:09.237344-07:00,1000.1203002929688,10.72942,10729.42 +37971,2025-03-11T18:03:19.968584-07:00,1000.1654052734375,10.73124,10731.24 +37972,2025-03-11T18:03:30.708653-07:00,1000.1358642578125,10.740069,10740.069 +37973,2025-03-11T18:03:41.443584-07:00,1000.1490478515625,10.734931,10734.931 +37974,2025-03-11T18:03:52.185615-07:00,1000.1381225585938,10.742031,10742.031 +37975,2025-03-11T18:04:02.919860-07:00,1000.1433715820312,10.734245,10734.245 +37976,2025-03-11T18:04:13.654038-07:00,1000.1712646484375,10.734178,10734.178 +37977,2025-03-11T18:04:24.377579-07:00,1000.1500244140625,10.723541,10723.541 +37978,2025-03-11T18:04:35.114789-07:00,1000.1190795898438,10.73721,10737.21 +37979,2025-03-11T18:04:45.844781-07:00,1000.1058349609375,10.729992,10729.992 +37980,2025-03-11T18:04:56.577573-07:00,1000.1124877929688,10.732792,10732.792 +37981,2025-03-11T18:05:07.313676-07:00,1000.1160888671875,10.736103,10736.103 +37982,2025-03-11T18:05:18.046768-07:00,1000.1345825195312,10.733092,10733.092 +37983,2025-03-11T18:05:28.779608-07:00,1000.106689453125,10.73284,10732.84 +37984,2025-03-11T18:05:39.507580-07:00,1000.1531372070312,10.727972,10727.972 +37985,2025-03-11T18:05:50.236773-07:00,1000.1182861328125,10.729193,10729.193 +37986,2025-03-11T18:06:00.974583-07:00,1000.103759765625,10.73781,10737.81 +37987,2025-03-11T18:06:11.703783-07:00,1000.1006469726562,10.7292,10729.2 +37988,2025-03-11T18:06:22.439003-07:00,1000.186767578125,10.73522,10735.22 +37989,2025-03-11T18:06:33.175839-07:00,1000.1509399414062,10.736836,10736.836 +37990,2025-03-11T18:06:43.900788-07:00,1000.1376342773438,10.724949,10724.949 +37991,2025-03-11T18:06:54.639771-07:00,1000.1347045898438,10.738983,10738.983 +37992,2025-03-11T18:07:05.367767-07:00,1000.1624755859375,10.727996,10727.996 +37993,2025-03-11T18:07:16.103693-07:00,1000.1796875,10.735926,10735.926 +37994,2025-03-11T18:07:26.844583-07:00,1000.1738891601562,10.74089,10740.89 +37995,2025-03-11T18:07:37.573796-07:00,1000.1788940429688,10.729213,10729.213 +37996,2025-03-11T18:07:48.305773-07:00,1000.1754150390625,10.731977,10731.977 +37997,2025-03-11T18:07:59.046605-07:00,1000.1480712890625,10.740832,10740.832 +37998,2025-03-11T18:08:09.781616-07:00,1000.1312255859375,10.735011,10735.011 +37999,2025-03-11T18:08:20.510276-07:00,1000.1754760742188,10.72866,10728.66 +38000,2025-03-11T18:08:31.243991-07:00,1000.1339111328125,10.733715,10733.715 +38001,2025-03-11T18:08:41.975608-07:00,1000.1278076171875,10.731617,10731.617 +38002,2025-03-11T18:08:52.711733-07:00,1000.112060546875,10.736125,10736.125 +38003,2025-03-11T18:09:03.442948-07:00,1000.1084594726562,10.731215,10731.215 +38004,2025-03-11T18:09:14.181243-07:00,1000.1040649414062,10.738295,10738.295 +38005,2025-03-11T18:09:24.911650-07:00,1000.120361328125,10.730407,10730.407 +38006,2025-03-11T18:09:35.642759-07:00,1000.119873046875,10.731109,10731.109 +38007,2025-03-11T18:09:46.374778-07:00,1000.0939331054688,10.732019,10732.019 +38008,2025-03-11T18:09:57.105581-07:00,1000.088134765625,10.730803,10730.803 +38009,2025-03-11T18:10:07.839618-07:00,1000.096923828125,10.734037,10734.037 +38010,2025-03-11T18:10:18.566782-07:00,1000.140625,10.727164,10727.164 +38011,2025-03-11T18:10:29.305076-07:00,1000.1163330078125,10.738294,10738.294 +38012,2025-03-11T18:10:40.040252-07:00,1000.1052856445312,10.735176,10735.176 +38013,2025-03-11T18:10:50.767406-07:00,1000.0758056640625,10.727154,10727.154 +38014,2025-03-11T18:11:01.496784-07:00,1000.064697265625,10.729378,10729.378 +38015,2025-03-11T18:11:12.229758-07:00,1000.0884399414062,10.732974,10732.974 +38016,2025-03-11T18:11:22.955731-07:00,1000.0722045898438,10.725973,10725.973 +38017,2025-03-11T18:11:33.688607-07:00,1000.1370239257812,10.732876,10732.876 +38018,2025-03-11T18:11:44.422582-07:00,1000.100830078125,10.733975,10733.975 +38019,2025-03-11T18:11:55.153990-07:00,1000.1458740234375,10.731408,10731.408 +38020,2025-03-11T18:12:05.890764-07:00,1000.1458740234375,10.736774,10736.774 +38021,2025-03-11T18:12:16.618170-07:00,1000.142822265625,10.727406,10727.406 +38022,2025-03-11T18:12:27.353583-07:00,1000.1546630859375,10.735413,10735.413 +38023,2025-03-11T18:12:38.080746-07:00,1000.1480712890625,10.727163,10727.163 +38024,2025-03-11T18:12:48.810583-07:00,1000.2009887695312,10.729837,10729.837 +38025,2025-03-11T18:12:59.546575-07:00,1000.2009887695312,10.735992,10735.992 +38026,2025-03-11T18:13:10.274802-07:00,1000.2076416015625,10.728227,10728.227 +38027,2025-03-11T18:13:21.015594-07:00,1000.2376708984375,10.740792,10740.792 +38028,2025-03-11T18:13:31.739577-07:00,1000.247314453125,10.723983,10723.983 +38029,2025-03-11T18:13:42.473614-07:00,1000.2407836914062,10.734037,10734.037 +38030,2025-03-11T18:13:53.201671-07:00,1000.2633666992188,10.728057,10728.057 +38031,2025-03-11T18:14:03.940577-07:00,1000.2368774414062,10.738906,10738.906 +38032,2025-03-11T18:14:14.666788-07:00,1000.27001953125,10.726211,10726.211 +38033,2025-03-11T18:14:25.400771-07:00,1000.2862548828125,10.733983,10733.983 +38034,2025-03-11T18:14:36.135269-07:00,1000.281005859375,10.734498,10734.498 +38035,2025-03-11T18:14:46.860804-07:00,1000.2929077148438,10.725535,10725.535 +38036,2025-03-11T18:14:57.600599-07:00,1000.27294921875,10.739795,10739.795 +38037,2025-03-11T18:15:08.329690-07:00,1000.2959594726562,10.729091,10729.091 +38038,2025-03-11T18:15:19.057660-07:00,1000.2920532226562,10.72797,10727.97 +38039,2025-03-11T18:15:29.791804-07:00,1000.30029296875,10.734144,10734.144 +38040,2025-03-11T18:15:40.523583-07:00,1000.2965087890625,10.731779,10731.779 +38041,2025-03-11T18:15:51.257652-07:00,1000.3096923828125,10.734069,10734.069 +38042,2025-03-11T18:16:01.987583-07:00,1000.3031005859375,10.729931,10729.931 +38043,2025-03-11T18:16:12.720132-07:00,1000.29296875,10.732549,10732.549 +38044,2025-03-11T18:16:23.446575-07:00,1000.3171997070312,10.726443,10726.443 +38045,2025-03-11T18:16:34.186580-07:00,1000.2708740234375,10.740005,10740.005 +38046,2025-03-11T18:16:44.916751-07:00,1000.2589721679688,10.730171,10730.171 +38047,2025-03-11T18:16:55.647579-07:00,1000.240478515625,10.730828,10730.828 +38048,2025-03-11T18:17:06.383778-07:00,1000.263427734375,10.736199,10736.199 +38049,2025-03-11T18:17:17.117581-07:00,1000.23828125,10.733803,10733.803 +38050,2025-03-11T18:17:27.853771-07:00,1000.239990234375,10.73619,10736.19 +38051,2025-03-11T18:17:38.590894-07:00,1000.239990234375,10.737123,10737.123 +38052,2025-03-11T18:17:49.324597-07:00,1000.22802734375,10.733703,10733.703 +38053,2025-03-11T18:18:00.056003-07:00,1000.2178344726562,10.731406,10731.406 +38054,2025-03-11T18:18:10.793758-07:00,1000.1860961914062,10.737755,10737.755 +38055,2025-03-11T18:18:21.528576-07:00,1000.2338256835938,10.734818,10734.818 +38056,2025-03-11T18:18:32.256611-07:00,1000.2484130859375,10.728035,10728.035 +38057,2025-03-11T18:18:42.983777-07:00,1000.3045043945312,10.727166,10727.166 +38058,2025-03-11T18:18:53.723610-07:00,1000.2329711914062,10.739833,10739.833 +38059,2025-03-11T18:18:54.605719-07:00,1000.2316284179688,0.882109,882.109 +38060,2025-03-11T18:19:04.447786-07:00,1000.2462768554688,9.842067,9842.067 +38061,2025-03-11T18:19:15.183797-07:00,1000.2611694335938,10.736011,10736.011 +38062,2025-03-11T18:19:25.914578-07:00,1000.2890625,10.730781,10730.781 +38063,2025-03-11T18:19:36.641578-07:00,1000.2625122070312,10.727,10727.0 +38064,2025-03-11T18:19:47.376092-07:00,1000.2837524414062,10.734514,10734.514 +38065,2025-03-11T18:19:58.108797-07:00,1000.3067016601562,10.732705,10732.705 +38066,2025-03-11T18:20:08.845614-07:00,1000.286865234375,10.736817,10736.817 +38067,2025-03-11T18:20:19.572263-07:00,1000.3110961914062,10.726649,10726.649 +38068,2025-03-11T18:20:30.313808-07:00,1000.276611328125,10.741545,10741.545 +38069,2025-03-11T18:20:41.044582-07:00,1000.2940063476562,10.730774,10730.774 +38070,2025-03-11T18:20:51.768573-07:00,1000.30224609375,10.723991,10723.991 +38071,2025-03-11T18:21:02.507650-07:00,1000.2890625,10.739077,10739.077 +38072,2025-03-11T18:21:13.243968-07:00,1000.2757568359375,10.736318,10736.318 +38073,2025-03-11T18:21:23.978582-07:00,1000.2440795898438,10.734614,10734.614 +38074,2025-03-11T18:21:34.713793-07:00,1000.2338256835938,10.735211,10735.211 +38075,2025-03-11T18:21:45.454612-07:00,1000.2271728515625,10.740819,10740.819 +38076,2025-03-11T18:21:56.189834-07:00,1000.2418823242188,10.735222,10735.222 +38077,2025-03-11T18:22:06.923580-07:00,1000.2418823242188,10.733746,10733.746 +38078,2025-03-11T18:22:17.650575-07:00,1000.2859497070312,10.726995,10726.995 +38079,2025-03-11T18:22:28.384003-07:00,1000.2675170898438,10.733428,10733.428 +38080,2025-03-11T18:22:39.124754-07:00,1000.3035888671875,10.740751,10740.751 +38081,2025-03-11T18:22:49.855613-07:00,1000.2904052734375,10.730859,10730.859 +38082,2025-03-11T18:23:00.591638-07:00,1000.3199462890625,10.736025,10736.025 +38083,2025-03-11T18:23:11.314755-07:00,1000.3067016601562,10.723117,10723.117 +38084,2025-03-11T18:23:22.051814-07:00,1000.3292846679688,10.737059,10737.059 +38085,2025-03-11T18:23:32.784579-07:00,1000.3041381835938,10.732765,10732.765 +38086,2025-03-11T18:23:43.518585-07:00,1000.3259887695312,10.734006,10734.006 +38087,2025-03-11T18:23:54.255782-07:00,1000.32080078125,10.737197,10737.197 +38088,2025-03-11T18:24:04.982582-07:00,1000.3685302734375,10.7268,10726.8 +38089,2025-03-11T18:24:15.721756-07:00,1000.3649291992188,10.739174,10739.174 +38090,2025-03-11T18:24:26.451432-07:00,1000.342041015625,10.729676,10729.676 +38091,2025-03-11T18:24:37.189672-07:00,1000.3729858398438,10.73824,10738.24 +38092,2025-03-11T18:24:47.916579-07:00,1000.3679809570312,10.726907,10726.907 +38093,2025-03-11T18:24:58.654689-07:00,1000.3662719726562,10.73811,10738.11 +38094,2025-03-11T18:25:09.386754-07:00,1000.361328125,10.732065,10732.065 +38095,2025-03-11T18:25:20.121841-07:00,1000.3560791015625,10.735087,10735.087 +38096,2025-03-11T18:25:30.857796-07:00,1000.3789672851562,10.735955,10735.955 +38097,2025-03-11T18:25:41.597635-07:00,1000.3524780273438,10.739839,10739.839 +38098,2025-03-11T18:25:52.333983-07:00,1000.3751831054688,10.736348,10736.348 +38099,2025-03-11T18:26:03.066230-07:00,1000.4082641601562,10.732247,10732.247 +38100,2025-03-11T18:26:13.808869-07:00,1000.396728515625,10.742639,10742.639 +38101,2025-03-11T18:26:24.544584-07:00,1000.4112548828125,10.735715,10735.715 +38102,2025-03-11T18:26:35.271575-07:00,1000.4112548828125,10.726991,10726.991 +38103,2025-03-11T18:26:46.015697-07:00,1000.4140014648438,10.744122,10744.122 +38104,2025-03-11T18:26:56.747626-07:00,1000.4421997070312,10.731929,10731.929 +38105,2025-03-11T18:27:07.479786-07:00,1000.4156494140625,10.73216,10732.16 +38106,2025-03-11T18:27:18.219585-07:00,1000.42236328125,10.739799,10739.799 +38107,2025-03-11T18:27:28.959989-07:00,1000.4400024414062,10.740404,10740.404 +38108,2025-03-11T18:27:39.691921-07:00,1000.4678344726562,10.731932,10731.932 +38109,2025-03-11T18:27:50.433161-07:00,1000.4744262695312,10.74124,10741.24 +38110,2025-03-11T18:28:01.165579-07:00,1000.4757690429688,10.732418,10732.418 +38111,2025-03-11T18:28:11.905581-07:00,1000.47216796875,10.740002,10740.002 +38112,2025-03-11T18:28:22.641672-07:00,1000.4603271484375,10.736091,10736.091 +38113,2025-03-11T18:28:33.379266-07:00,1000.4553833007812,10.737594,10737.594 +38114,2025-03-11T18:28:44.109789-07:00,1000.4766235351562,10.730523,10730.523 +38115,2025-03-11T18:28:54.847062-07:00,1000.4846801757812,10.737273,10737.273 +38116,2025-03-11T18:29:05.585992-07:00,1000.4727172851562,10.73893,10738.93 +38117,2025-03-11T18:29:16.317692-07:00,1000.4876708984375,10.7317,10731.7 +38118,2025-03-11T18:29:27.053576-07:00,1000.442626953125,10.735884,10735.884 +38119,2025-03-11T18:29:37.793589-07:00,1000.457275390625,10.740013,10740.013 +38120,2025-03-11T18:29:48.532805-07:00,1000.4815673828125,10.739216,10739.216 +38121,2025-03-11T18:29:59.265381-07:00,1000.4324951171875,10.732576,10732.576 +38122,2025-03-11T18:30:09.999711-07:00,1000.4832763671875,10.73433,10734.33 +38123,2025-03-11T18:30:20.738708-07:00,1000.4581298828125,10.738997,10738.997 +38124,2025-03-11T18:30:31.475681-07:00,1000.4810180664062,10.736973,10736.973 +38125,2025-03-11T18:30:42.218765-07:00,1000.489013671875,10.743084,10743.084 +38126,2025-03-11T18:30:52.956761-07:00,1000.4625244140625,10.737996,10737.996 +38127,2025-03-11T18:31:03.686579-07:00,1000.4866943359375,10.729818,10729.818 +38128,2025-03-11T18:31:14.424580-07:00,1000.4762573242188,10.738001,10738.001 +38129,2025-03-11T18:31:25.162575-07:00,1000.4646606445312,10.737995,10737.995 +38130,2025-03-11T18:31:35.903583-07:00,1000.4888916015625,10.741008,10741.008 +38131,2025-03-11T18:31:46.637041-07:00,1000.4813842773438,10.733458,10733.458 +38132,2025-03-11T18:31:57.382749-07:00,1000.4629516601562,10.745708,10745.708 +38133,2025-03-11T18:32:08.117728-07:00,1000.4593505859375,10.734979,10734.979 +38134,2025-03-11T18:32:18.854579-07:00,1000.4371948242188,10.736851,10736.851 +38135,2025-03-11T18:32:29.594639-07:00,1000.4349975585938,10.74006,10740.06 +38136,2025-03-11T18:32:40.328771-07:00,1000.4376831054688,10.734132,10734.132 +38137,2025-03-11T18:32:51.070960-07:00,1000.4703369140625,10.742189,10742.189 +38138,2025-03-11T18:33:01.806580-07:00,1000.42529296875,10.73562,10735.62 +38139,2025-03-11T18:33:12.545893-07:00,1000.4415893554688,10.739313,10739.313 +38140,2025-03-11T18:33:23.294584-07:00,1000.4442138671875,10.748691,10748.691 +38141,2025-03-11T18:33:34.029589-07:00,1000.4190673828125,10.735005,10735.005 +38142,2025-03-11T18:33:44.773581-07:00,1000.42578125,10.743992,10743.992 +38143,2025-03-11T18:33:55.507734-07:00,1000.43017578125,10.734153,10734.153 +38144,2025-03-11T18:34:06.246752-07:00,1000.4662475585938,10.739018,10739.018 +38145,2025-03-11T18:34:16.987246-07:00,1000.4411010742188,10.740494,10740.494 +38146,2025-03-11T18:34:27.723587-07:00,1000.436279296875,10.736341,10736.341 +38147,2025-03-11T18:34:38.468779-07:00,1000.4255981445312,10.745192,10745.192 +38148,2025-03-11T18:34:49.213582-07:00,1000.4486083984375,10.744803,10744.803 +38149,2025-03-11T18:34:59.946761-07:00,1000.4302978515625,10.733179,10733.179 +38150,2025-03-11T18:35:10.693770-07:00,1000.4745483398438,10.747009,10747.009 +38151,2025-03-11T18:35:21.436424-07:00,1000.4576416015625,10.742654,10742.654 +38152,2025-03-11T18:35:32.179967-07:00,1000.44580078125,10.743543,10743.543 +38153,2025-03-11T18:35:42.919575-07:00,1000.4634399414062,10.739608,10739.608 +38154,2025-03-11T18:35:53.663578-07:00,1000.44482421875,10.744003,10744.003 +38155,2025-03-11T18:36:04.402734-07:00,1000.461181640625,10.739156,10739.156 +38156,2025-03-11T18:36:15.145695-07:00,1000.4575805664062,10.742961,10742.961 +38157,2025-03-11T18:36:25.896582-07:00,1000.4417114257812,10.750887,10750.887 +38158,2025-03-11T18:36:36.635608-07:00,1000.4580688476562,10.739026,10739.026 +38159,2025-03-11T18:36:47.375727-07:00,1000.4328002929688,10.740119,10740.119 +38160,2025-03-11T18:36:58.109978-07:00,1000.4345092773438,10.734251,10734.251 +38161,2025-03-11T18:37:08.853787-07:00,1000.450439453125,10.743809,10743.809 +38162,2025-03-11T18:37:19.596992-07:00,1000.4468994140625,10.743205,10743.205 +38163,2025-03-11T18:37:30.336766-07:00,1000.4432983398438,10.739774,10739.774 +38164,2025-03-11T18:37:41.077578-07:00,1000.4512329101562,10.740812,10740.812 +38165,2025-03-11T18:37:51.817607-07:00,1000.43408203125,10.740029,10740.029 +38166,2025-03-11T18:38:02.555770-07:00,1000.4291381835938,10.738163,10738.163 +38167,2025-03-11T18:38:13.297071-07:00,1000.4304809570312,10.741301,10741.301 +38168,2025-03-11T18:38:24.041761-07:00,1000.4171752929688,10.74469,10744.69 +38169,2025-03-11T18:38:34.778715-07:00,1000.4495239257812,10.736954,10736.954 +38170,2025-03-11T18:38:45.529904-07:00,1000.4268798828125,10.751189,10751.189 +38171,2025-03-11T18:38:56.266583-07:00,1000.4561157226562,10.736679,10736.679 +38172,2025-03-11T18:39:07.001624-07:00,1000.4296264648438,10.735041,10735.041 +38173,2025-03-11T18:39:17.737719-07:00,1000.4229736328125,10.736095,10736.095 +38174,2025-03-11T18:39:28.472750-07:00,1000.4163208007812,10.735031,10735.031 +38175,2025-03-11T18:39:39.211605-07:00,1000.4163208007812,10.738855,10738.855 +38176,2025-03-11T18:39:49.951874-07:00,1000.4282836914062,10.740269,10740.269 +38177,2025-03-11T18:40:00.700635-07:00,1000.4282836914062,10.748761,10748.761 +38178,2025-03-11T18:40:11.430973-07:00,1000.3804931640625,10.730338,10730.338 +38179,2025-03-11T18:40:22.173776-07:00,1000.4185791015625,10.742803,10742.803 +38180,2025-03-11T18:40:32.905758-07:00,1000.41064453125,10.731982,10731.982 +38181,2025-03-11T18:40:43.647711-07:00,1000.4092407226562,10.741953,10741.953 +38182,2025-03-11T18:40:54.387580-07:00,1000.43408203125,10.739869,10739.869 +38183,2025-03-11T18:41:05.127606-07:00,1000.4473266601562,10.740026,10740.026 +38184,2025-03-11T18:41:15.860581-07:00,1000.4579467773438,10.732975,10732.975 +38185,2025-03-11T18:41:26.598927-07:00,1000.45361328125,10.738346,10738.346 +38186,2025-03-11T18:41:37.326606-07:00,1000.45361328125,10.727679,10727.679 +38187,2025-03-11T18:41:48.068022-07:00,1000.4190673828125,10.741416,10741.416 +38188,2025-03-11T18:41:58.807136-07:00,1000.4093627929688,10.739114,10739.114 +38189,2025-03-11T18:42:09.532991-07:00,1000.4212646484375,10.725855,10725.855 +38190,2025-03-11T18:42:20.271691-07:00,1000.3917236328125,10.7387,10738.7 +38191,2025-03-11T18:42:31.005580-07:00,1000.403564453125,10.733889,10733.889 +38192,2025-03-11T18:42:41.743785-07:00,1000.4168701171875,10.738205,10738.205 +38193,2025-03-11T18:42:52.479657-07:00,1000.3873291015625,10.735872,10735.872 +38194,2025-03-11T18:43:03.206581-07:00,1000.4324340820312,10.726924,10726.924 +38195,2025-03-11T18:43:13.939810-07:00,1000.40283203125,10.733229,10733.229 +38196,2025-03-11T18:43:24.675822-07:00,1000.42138671875,10.736012,10736.012 +38197,2025-03-11T18:43:35.406798-07:00,1000.4266967773438,10.730976,10730.976 +38198,2025-03-11T18:43:46.138849-07:00,1000.4170532226562,10.732051,10732.051 +38199,2025-03-11T18:43:56.872581-07:00,1000.4338989257812,10.733732,10733.732 +38200,2025-03-11T18:44:07.602775-07:00,1000.419189453125,10.730194,10730.194 +38201,2025-03-11T18:44:18.333576-07:00,1000.462646484375,10.730801,10730.801 +38202,2025-03-11T18:44:29.064644-07:00,1000.46923828125,10.731068,10731.068 +38203,2025-03-11T18:44:39.796778-07:00,1000.4334106445312,10.732134,10732.134 +38204,2025-03-11T18:44:50.537389-07:00,1000.443603515625,10.740611,10740.611 +38205,2025-03-11T18:45:01.270582-07:00,1000.435302734375,10.733193,10733.193 +38206,2025-03-11T18:45:12.003838-07:00,1000.4406127929688,10.733256,10733.256 +38207,2025-03-11T18:45:22.739593-07:00,1000.4671020507812,10.735755,10735.755 +38208,2025-03-11T18:45:33.479990-07:00,1000.4442138671875,10.740397,10740.397 +38209,2025-03-11T18:45:44.211578-07:00,1000.4522094726562,10.731588,10731.588 +38210,2025-03-11T18:45:54.953644-07:00,1000.4786987304688,10.742066,10742.066 +38211,2025-03-11T18:46:05.679765-07:00,1000.4561157226562,10.726121,10726.121 +38212,2025-03-11T18:46:16.414148-07:00,1000.48388671875,10.734383,10734.383 +38213,2025-03-11T18:46:27.155786-07:00,1000.4609985351562,10.741638,10741.638 +38214,2025-03-11T18:46:37.884573-07:00,1000.4478149414062,10.728787,10728.787 +38215,2025-03-11T18:46:48.622768-07:00,1000.4874877929688,10.738195,10738.195 +38216,2025-03-11T18:46:59.355792-07:00,1000.445068359375,10.733024,10733.024 +38217,2025-03-11T18:47:10.088583-07:00,1000.445068359375,10.732791,10732.791 +38218,2025-03-11T18:47:20.820051-07:00,1000.4473266601562,10.731468,10731.468 +38219,2025-03-11T18:47:31.556817-07:00,1000.4618530273438,10.736766,10736.766 +38220,2025-03-11T18:47:42.289815-07:00,1000.4539184570312,10.732998,10732.998 +38221,2025-03-11T18:47:53.027645-07:00,1000.4473266601562,10.73783,10737.83 +38222,2025-03-11T18:48:03.759580-07:00,1000.4671630859375,10.731935,10731.935 +38223,2025-03-11T18:48:14.484411-07:00,1000.50390625,10.724831,10724.831 +38224,2025-03-11T18:48:25.227675-07:00,1000.5172119140625,10.743264,10743.264 +38225,2025-03-11T18:48:35.949584-07:00,1000.5384521484375,10.721909,10721.909 +38226,2025-03-11T18:48:46.687762-07:00,1000.5128173828125,10.738178,10738.178 +38227,2025-03-11T18:48:57.419601-07:00,1000.5144653320312,10.731839,10731.839 +38228,2025-03-11T18:49:08.151576-07:00,1000.526123046875,10.731975,10731.975 +38229,2025-03-11T18:49:18.880579-07:00,1000.5167236328125,10.729003,10729.003 +38230,2025-03-11T18:49:29.615006-07:00,1000.5498657226562,10.734427,10734.427 +38231,2025-03-11T18:49:40.349842-07:00,1000.548095703125,10.734836,10734.836 +38232,2025-03-11T18:49:51.089577-07:00,1000.5599975585938,10.739735,10739.735 +38233,2025-03-11T18:50:01.821862-07:00,1000.5504150390625,10.732285,10732.285 +38234,2025-03-11T18:50:12.553348-07:00,1000.5635986328125,10.731486,10731.486 +38235,2025-03-11T18:50:23.284575-07:00,1000.549072265625,10.731227,10731.227 +38236,2025-03-11T18:50:34.009653-07:00,1000.5314331054688,10.725078,10725.078 +38237,2025-03-11T18:50:44.743145-07:00,1000.5675048828125,10.733492,10733.492 +38238,2025-03-11T18:50:55.473644-07:00,1000.5498657226562,10.730499,10730.499 +38239,2025-03-11T18:51:06.213603-07:00,1000.5697631835938,10.739959,10739.959 +38240,2025-03-11T18:51:16.942816-07:00,1000.5282592773438,10.729213,10729.213 +38241,2025-03-11T18:51:27.672580-07:00,1000.5697631835938,10.729764,10729.764 +38242,2025-03-11T18:51:38.416576-07:00,1000.553466796875,10.743996,10743.996 +38243,2025-03-11T18:51:49.146579-07:00,1000.5454711914062,10.730003,10730.003 +38244,2025-03-11T18:51:59.886593-07:00,1000.5667114257812,10.740014,10740.014 +38245,2025-03-11T18:52:10.613373-07:00,1000.557373046875,10.72678,10726.78 +38246,2025-03-11T18:52:21.348579-07:00,1000.5706176757812,10.735206,10735.206 +38247,2025-03-11T18:52:32.087740-07:00,1000.5706176757812,10.739161,10739.161 +38248,2025-03-11T18:52:42.815340-07:00,1000.5609130859375,10.7276,10727.6 +38249,2025-03-11T18:52:53.550579-07:00,1000.5808715820312,10.735239,10735.239 +38250,2025-03-11T18:53:04.285578-07:00,1000.5645141601562,10.734999,10734.999 +38251,2025-03-11T18:53:15.020650-07:00,1000.576416015625,10.735072,10735.072 +38252,2025-03-11T18:53:25.752638-07:00,1000.5751342773438,10.731988,10731.988 +38253,2025-03-11T18:53:36.415825-07:00,1000.5684204101562,10.663187,10663.187 +38254,2025-03-11T18:53:47.158613-07:00,1000.5800170898438,10.742788,10742.788 +38255,2025-03-11T18:53:57.892817-07:00,1000.5999145507812,10.734204,10734.204 +38256,2025-03-11T18:54:08.624792-07:00,1000.5800170898438,10.731975,10731.975 +38257,2025-03-11T18:54:19.355612-07:00,1000.5786743164062,10.73082,10730.82 +38258,2025-03-11T18:54:30.087607-07:00,1000.59716796875,10.731995,10731.995 +38259,2025-03-11T18:54:40.823615-07:00,1000.6038208007812,10.736008,10736.008 +38260,2025-03-11T18:54:51.557801-07:00,1000.6007690429688,10.734186,10734.186 +38261,2025-03-11T18:55:02.296637-07:00,1000.5809326171875,10.738836,10738.836 +38262,2025-03-11T18:55:13.035737-07:00,1000.59423828125,10.7391,10739.1 +38263,2025-03-11T18:55:23.770612-07:00,1000.6486206054688,10.734875,10734.875 +38264,2025-03-11T18:55:34.501975-07:00,1000.6140747070312,10.731363,10731.363 +38265,2025-03-11T18:55:45.243237-07:00,1000.6154174804688,10.741262,10741.262 +38266,2025-03-11T18:55:55.968612-07:00,1000.6220092773438,10.725375,10725.375 +38267,2025-03-11T18:56:06.713783-07:00,1000.628662109375,10.745171,10745.171 +38268,2025-03-11T18:56:17.443790-07:00,1000.599365234375,10.730007,10730.007 +38269,2025-03-11T18:56:28.175639-07:00,1000.599365234375,10.731849,10731.849 +38270,2025-03-11T18:56:38.908739-07:00,1000.6154174804688,10.7331,10733.1 +38271,2025-03-11T18:56:49.647855-07:00,1000.6154174804688,10.739116,10739.116 +38272,2025-03-11T18:57:00.385796-07:00,1000.6259155273438,10.737941,10737.941 +38273,2025-03-11T18:57:11.121498-07:00,1000.6060791015625,10.735702,10735.702 +38274,2025-03-11T18:57:21.855763-07:00,1000.6140747070312,10.734265,10734.265 +38275,2025-03-11T18:57:32.591614-07:00,1000.6007690429688,10.735851,10735.851 +38276,2025-03-11T18:57:43.326716-07:00,1000.6193237304688,10.735102,10735.102 +38277,2025-03-11T18:57:54.061809-07:00,1000.6140747070312,10.735093,10735.093 +38278,2025-03-11T18:58:04.788822-07:00,1000.5928344726562,10.727013,10727.013 +38279,2025-03-11T18:58:15.530676-07:00,1000.611328125,10.741854,10741.854 +38280,2025-03-11T18:58:26.258961-07:00,1000.586181640625,10.728285,10728.285 +38281,2025-03-11T18:58:36.995609-07:00,1000.62451171875,10.736648,10736.648 +38282,2025-03-11T18:58:47.728640-07:00,1000.6228637695312,10.733031,10733.031 +38283,2025-03-11T18:58:58.464609-07:00,1000.596435546875,10.735969,10735.969 +38284,2025-03-11T18:59:09.196859-07:00,1000.611328125,10.73225,10732.25 +38285,2025-03-11T18:59:19.929753-07:00,1000.5803833007812,10.732894,10732.894 +38286,2025-03-11T18:59:30.673612-07:00,1000.6016235351562,10.743859,10743.859 +38287,2025-03-11T18:59:41.399159-07:00,1000.6082763671875,10.725547,10725.547 +38288,2025-03-11T18:59:52.141790-07:00,1000.6016235351562,10.742631,10742.631 +38289,2025-03-11T19:00:02.866311-07:00,1000.6118774414062,10.724521,10724.521 +38290,2025-03-11T19:00:13.599609-07:00,1000.6267700195312,10.733298,10733.298 +38291,2025-03-11T19:00:24.336612-07:00,1000.618408203125,10.737003,10737.003 +38292,2025-03-11T19:00:35.068383-07:00,1000.63037109375,10.731771,10731.771 +38293,2025-03-11T19:00:45.811636-07:00,1000.595947265625,10.743253,10743.253 +38294,2025-03-11T19:00:56.546815-07:00,1000.6157836914062,10.735179,10735.179 +38295,2025-03-11T19:01:07.282653-07:00,1000.6370239257812,10.735838,10735.838 +38296,2025-03-11T19:01:18.008789-07:00,1000.64892578125,10.726136,10726.136 +38297,2025-03-11T19:01:28.753325-07:00,1000.6339111328125,10.744536,10744.536 +38298,2025-03-11T19:01:39.489697-07:00,1000.6378173828125,10.736372,10736.372 +38299,2025-03-11T19:01:50.221640-07:00,1000.6179809570312,10.731943,10731.943 +38300,2025-03-11T19:02:00.954788-07:00,1000.67236328125,10.733148,10733.148 +38301,2025-03-11T19:02:11.685612-07:00,1000.6856079101562,10.730824,10730.824 +38302,2025-03-11T19:02:22.428611-07:00,1000.678955078125,10.742999,10742.999 +38303,2025-03-11T19:02:33.155789-07:00,1000.6458740234375,10.727178,10727.178 +38304,2025-03-11T19:02:43.897798-07:00,1000.65380859375,10.742009,10742.009 +38305,2025-03-11T19:02:54.626605-07:00,1000.6590576171875,10.728807,10728.807 +38306,2025-03-11T19:03:05.366808-07:00,1000.64453125,10.740203,10740.203 +38307,2025-03-11T19:03:16.095616-07:00,1000.678955078125,10.728808,10728.808 +38308,2025-03-11T19:03:26.836824-07:00,1000.6908569335938,10.741208,10741.208 +38309,2025-03-11T19:03:37.560610-07:00,1000.665771484375,10.723786,10723.786 +38310,2025-03-11T19:03:48.301613-07:00,1000.6590576171875,10.741003,10741.003 +38311,2025-03-11T19:03:59.035823-07:00,1000.6921997070312,10.73421,10734.21 +38312,2025-03-11T19:04:09.761466-07:00,1000.6671142578125,10.725643,10725.643 +38313,2025-03-11T19:04:20.493613-07:00,1000.6560668945312,10.732147,10732.147 +38314,2025-03-11T19:04:31.226757-07:00,1000.6693115234375,10.733144,10733.144 +38315,2025-03-11T19:04:41.957788-07:00,1000.6798706054688,10.731031,10731.031 +38316,2025-03-11T19:04:52.689838-07:00,1000.6953125,10.73205,10732.05 +38317,2025-03-11T19:05:03.431613-07:00,1000.671875,10.741775,10741.775 +38318,2025-03-11T19:05:14.157858-07:00,1000.6895141601562,10.726245,10726.245 +38319,2025-03-11T19:05:24.883605-07:00,1000.70361328125,10.725747,10725.747 +38320,2025-03-11T19:05:35.615847-07:00,1000.6815795898438,10.732242,10732.242 +38321,2025-03-11T19:05:46.346011-07:00,1000.697509765625,10.730164,10730.164 +38322,2025-03-11T19:05:57.074612-07:00,1000.6790771484375,10.728601,10728.601 +38323,2025-03-11T19:06:07.815696-07:00,1000.670166015625,10.741084,10741.084 +38324,2025-03-11T19:06:18.540912-07:00,1000.6895141601562,10.725216,10725.216 +38325,2025-03-11T19:06:29.270376-07:00,1000.6525268554688,10.729464,10729.464 +38326,2025-03-11T19:06:40.009837-07:00,1000.662109375,10.739461,10739.461 +38327,2025-03-11T19:06:50.737614-07:00,1000.6615600585938,10.727777,10727.777 +38328,2025-03-11T19:07:01.474793-07:00,1000.69384765625,10.737179,10737.179 +38329,2025-03-11T19:07:12.202610-07:00,1000.6799926757812,10.727817,10727.817 +38330,2025-03-11T19:07:22.930901-07:00,1000.7003784179688,10.728291,10728.291 +38331,2025-03-11T19:07:33.671039-07:00,1000.7210693359375,10.740138,10740.138 +38332,2025-03-11T19:07:44.400802-07:00,1000.6923217773438,10.729763,10729.763 +38333,2025-03-11T19:07:55.118612-07:00,1000.6851806640625,10.71781,10717.81 +38334,2025-03-11T19:08:05.855023-07:00,1000.6856079101562,10.736411,10736.411 +38335,2025-03-11T19:08:16.580154-07:00,1000.6864013671875,10.725131,10725.131 +38336,2025-03-11T19:08:27.315645-07:00,1000.6969604492188,10.735491,10735.491 +38337,2025-03-11T19:08:38.044815-07:00,1000.7217407226562,10.72917,10729.17 +38338,2025-03-11T19:08:48.771611-07:00,1000.7371826171875,10.726796,10726.796 +38339,2025-03-11T19:08:59.502618-07:00,1000.7310180664062,10.731007,10731.007 +38340,2025-03-11T19:09:10.242806-07:00,1000.7296752929688,10.740188,10740.188 +38341,2025-03-11T19:09:20.965778-07:00,1000.6934204101562,10.722972,10722.972 +38342,2025-03-11T19:09:31.698611-07:00,1000.7251586914062,10.732833,10732.833 +38343,2025-03-11T19:09:42.437518-07:00,1000.7352905273438,10.738907,10738.907 +38344,2025-03-11T19:09:53.172093-07:00,1000.7406005859375,10.734575,10734.575 +38345,2025-03-11T19:10:03.899611-07:00,1000.745849609375,10.727518,10727.518 +38346,2025-03-11T19:10:14.628622-07:00,1000.7374877929688,10.729011,10729.011 +38347,2025-03-11T19:10:25.359857-07:00,1000.7295532226562,10.731235,10731.235 +38348,2025-03-11T19:10:36.097609-07:00,1000.6934204101562,10.737752,10737.752 +38349,2025-03-11T19:10:46.823795-07:00,1000.7265014648438,10.726186,10726.186 +38350,2025-03-11T19:10:57.555451-07:00,1000.7154541015625,10.731656,10731.656 +38351,2025-03-11T19:11:08.294609-07:00,1000.7184448242188,10.739158,10739.158 +38352,2025-03-11T19:11:19.026607-07:00,1000.7285766601562,10.731998,10731.998 +38353,2025-03-11T19:11:29.755678-07:00,1000.7767333984375,10.729071,10729.071 +38354,2025-03-11T19:11:40.483613-07:00,1000.7154541015625,10.727935,10727.935 +38355,2025-03-11T19:11:51.217611-07:00,1000.7302856445312,10.733998,10733.998 +38356,2025-03-11T19:12:01.948840-07:00,1000.7568969726562,10.731229,10731.229 +38357,2025-03-11T19:12:12.693200-07:00,1000.7471923828125,10.74436,10744.36 +38358,2025-03-11T19:12:23.414835-07:00,1000.7515869140625,10.721635,10721.635 +38359,2025-03-11T19:12:34.156606-07:00,1000.7449951171875,10.741771,10741.771 +38360,2025-03-11T19:12:44.890613-07:00,1000.7383422851562,10.734007,10734.007 +38361,2025-03-11T19:12:55.627024-07:00,1000.7237548828125,10.736411,10736.411 +38362,2025-03-11T19:13:06.356609-07:00,1000.778076171875,10.729585,10729.585 +38363,2025-03-11T19:13:17.095824-07:00,1000.7648315429688,10.739215,10739.215 +38364,2025-03-11T19:13:27.825825-07:00,1000.7767333984375,10.730001,10730.001 +38365,2025-03-11T19:13:38.562172-07:00,1000.7728271484375,10.736347,10736.347 +38366,2025-03-11T19:13:49.293649-07:00,1000.7877197265625,10.731477,10731.477 +38367,2025-03-11T19:14:00.027788-07:00,1000.7926635742188,10.734139,10734.139 +38368,2025-03-11T19:14:10.760010-07:00,1000.7692260742188,10.732222,10732.222 +38369,2025-03-11T19:14:21.501634-07:00,1000.782470703125,10.741624,10741.624 +38370,2025-03-11T19:14:32.236136-07:00,1000.798828125,10.734502,10734.502 +38371,2025-03-11T19:14:42.970614-07:00,1000.7921752929688,10.734478,10734.478 +38372,2025-03-11T19:14:53.708039-07:00,1000.8001708984375,10.737425,10737.425 +38373,2025-03-11T19:15:04.440898-07:00,1000.7935791015625,10.732859,10732.859 +38374,2025-03-11T19:15:15.172613-07:00,1000.7684326171875,10.731715,10731.715 +38375,2025-03-11T19:15:25.908745-07:00,1000.7882690429688,10.736132,10736.132 +38376,2025-03-11T19:15:36.642626-07:00,1000.78173828125,10.733881,10733.881 +38377,2025-03-11T19:15:47.383119-07:00,1000.7913818359375,10.740493,10740.493 +38378,2025-03-11T19:15:58.120633-07:00,1000.7781372070312,10.737514,10737.514 +38379,2025-03-11T19:16:08.850617-07:00,1000.7993774414062,10.729984,10729.984 +38380,2025-03-11T19:16:19.594640-07:00,1000.7826538085938,10.744023,10744.023 +38381,2025-03-11T19:16:30.327959-07:00,1000.7906494140625,10.733319,10733.319 +38382,2025-03-11T19:16:41.061608-07:00,1000.8052368164062,10.733649,10733.649 +38383,2025-03-11T19:16:51.802711-07:00,1000.7720947265625,10.741103,10741.103 +38384,2025-03-11T19:17:02.539651-07:00,1000.8135375976562,10.73694,10736.94 +38385,2025-03-11T19:17:13.269735-07:00,1000.7887573242188,10.730084,10730.084 +38386,2025-03-11T19:17:24.005752-07:00,1000.8049926757812,10.736017,10736.017 +38387,2025-03-11T19:17:34.741609-07:00,1000.778564453125,10.735857,10735.857 +38388,2025-03-11T19:17:45.475615-07:00,1000.7813110351562,10.734006,10734.006 +38389,2025-03-11T19:17:56.212026-07:00,1000.7865600585938,10.736411,10736.411 +38390,2025-03-11T19:18:06.947793-07:00,1000.7896728515625,10.735767,10735.767 +38391,2025-03-11T19:18:17.691271-07:00,1000.80419921875,10.743478,10743.478 +38392,2025-03-11T19:18:28.424615-07:00,1000.7976684570312,10.733344,10733.344 +38393,2025-03-11T19:18:39.161609-07:00,1000.8007202148438,10.736994,10736.994 +38394,2025-03-11T19:18:49.898648-07:00,1000.8153076171875,10.737039,10737.039 +38395,2025-03-11T19:19:00.639772-07:00,1000.8233032226562,10.741124,10741.124 +38396,2025-03-11T19:19:11.374863-07:00,1000.8197631835938,10.735091,10735.091 +38397,2025-03-11T19:19:22.108828-07:00,1000.8211059570312,10.733965,10733.965 +38398,2025-03-11T19:19:32.850611-07:00,1000.8145141601562,10.741783,10741.783 +38399,2025-03-11T19:19:43.580849-07:00,1000.8211059570312,10.730238,10730.238 +38400,2025-03-11T19:19:54.320798-07:00,1000.81591796875,10.739949,10739.949 +38401,2025-03-11T19:20:05.057676-07:00,1000.8057250976562,10.736878,10736.878 +38402,2025-03-11T19:20:15.786756-07:00,1000.8336181640625,10.72908,10729.08 +38403,2025-03-11T19:20:26.526612-07:00,1000.8446044921875,10.739856,10739.856 +38404,2025-03-11T19:20:37.259021-07:00,1000.8529663085938,10.732409,10732.409 +38405,2025-03-11T19:20:47.992638-07:00,1000.87060546875,10.733617,10733.617 +38406,2025-03-11T19:20:58.726674-07:00,1000.8654174804688,10.734036,10734.036 +38407,2025-03-11T19:21:09.470829-07:00,1000.819091796875,10.744155,10744.155 +38408,2025-03-11T19:21:20.205887-07:00,1000.8446655273438,10.735058,10735.058 +38409,2025-03-11T19:21:30.940035-07:00,1000.864501953125,10.734148,10734.148 +38410,2025-03-11T19:21:41.677613-07:00,1000.8195190429688,10.737578,10737.578 +38411,2025-03-11T19:21:52.414607-07:00,1000.8195190429688,10.736994,10736.994 +38412,2025-03-11T19:22:03.145634-07:00,1000.8689575195312,10.731027,10731.027 +38413,2025-03-11T19:22:13.882715-07:00,1000.842529296875,10.737081,10737.081 +38414,2025-03-11T19:22:24.614611-07:00,1000.8703002929688,10.731896,10731.896 +38415,2025-03-11T19:22:35.348000-07:00,1000.865478515625,10.733389,10733.389 +38416,2025-03-11T19:22:46.088804-07:00,1000.8880615234375,10.740804,10740.804 +38417,2025-03-11T19:22:56.817611-07:00,1000.8434448242188,10.728807,10728.807 +38418,2025-03-11T19:23:07.561609-07:00,1000.89111328125,10.743998,10743.998 +38419,2025-03-11T19:23:18.298616-07:00,1000.8660278320312,10.737007,10737.007 +38420,2025-03-11T19:23:29.030012-07:00,1000.8939208984375,10.731396,10731.396 +38421,2025-03-11T19:23:39.773617-07:00,1000.8792114257812,10.743605,10743.605 +38422,2025-03-11T19:23:50.509010-07:00,1000.8690795898438,10.735393,10735.393 +38423,2025-03-11T19:24:01.239610-07:00,1000.8968505859375,10.7306,10730.6 +38424,2025-03-11T19:24:11.973616-07:00,1000.926513671875,10.734006,10734.006 +38425,2025-03-11T19:24:22.715794-07:00,1000.8602294921875,10.742178,10742.178 +38426,2025-03-11T19:24:33.447925-07:00,1000.8881225585938,10.732131,10732.131 +38427,2025-03-11T19:24:44.188713-07:00,1000.8712768554688,10.740788,10740.788 +38428,2025-03-11T19:24:54.925668-07:00,1000.8911743164062,10.736955,10736.955 +38429,2025-03-11T19:25:05.657831-07:00,1000.9124145507812,10.732163,10732.163 +38430,2025-03-11T19:25:16.399616-07:00,1000.8873291015625,10.741785,10741.785 +38431,2025-03-11T19:25:27.126919-07:00,1000.8740844726562,10.727303,10727.303 +38432,2025-03-11T19:25:37.865610-07:00,1000.8660888671875,10.738691,10738.691 +38433,2025-03-11T19:25:48.595875-07:00,1000.8837280273438,10.730265,10730.265 +38434,2025-03-11T19:25:59.335626-07:00,1000.8851318359375,10.739751,10739.751 +38435,2025-03-11T19:26:10.068826-07:00,1000.865234375,10.7332,10733.2 +38436,2025-03-11T19:26:20.805611-07:00,1000.8735961914062,10.736785,10736.785 +38437,2025-03-11T19:26:31.531614-07:00,1000.9000244140625,10.726003,10726.003 +38438,2025-03-11T19:26:42.276613-07:00,1000.8881225585938,10.744999,10744.999 +38439,2025-03-11T19:26:53.011788-07:00,1000.8696899414062,10.735175,10735.175 +38440,2025-03-11T19:27:03.744816-07:00,1000.8563842773438,10.733028,10733.028 +38441,2025-03-11T19:27:14.488702-07:00,1000.8859252929688,10.743886,10743.886 +38442,2025-03-11T19:27:25.224819-07:00,1000.8887329101562,10.736117,10736.117 +38443,2025-03-11T19:27:35.951791-07:00,1000.903564453125,10.726972,10726.972 +38444,2025-03-11T19:27:46.697179-07:00,1000.8851318359375,10.745388,10745.388 +38445,2025-03-11T19:27:57.429612-07:00,1000.8785400390625,10.732433,10732.433 +38446,2025-03-11T19:28:08.168613-07:00,1000.9307250976562,10.739001,10739.001 +38447,2025-03-11T19:28:18.903605-07:00,1000.9160766601562,10.734992,10734.992 +38448,2025-03-11T19:28:29.644794-07:00,1000.8926391601562,10.741189,10741.189 +38449,2025-03-11T19:28:40.385808-07:00,1000.89404296875,10.741014,10741.014 +38450,2025-03-11T19:28:51.124634-07:00,1000.8768920898438,10.738826,10738.826 +38451,2025-03-11T19:29:01.861737-07:00,1000.9033813476562,10.737103,10737.103 +38452,2025-03-11T19:29:12.595789-07:00,1000.8998413085938,10.734052,10734.052 +38453,2025-03-11T19:29:23.333214-07:00,1000.9078369140625,10.737425,10737.425 +38454,2025-03-11T19:29:34.069229-07:00,1000.90283203125,10.736015,10736.015 +38455,2025-03-11T19:29:44.802816-07:00,1000.910888671875,10.733587,10733.587 +38456,2025-03-11T19:29:55.542655-07:00,1000.9056396484375,10.739839,10739.839 +38457,2025-03-11T19:30:06.273662-07:00,1000.915283203125,10.731007,10731.007 +38458,2025-03-11T19:30:17.015779-07:00,1000.90869140625,10.742117,10742.117 +38459,2025-03-11T19:30:27.747613-07:00,1000.94091796875,10.731834,10731.834 +38460,2025-03-11T19:30:38.490610-07:00,1000.9144287109375,10.742997,10742.997 +38461,2025-03-11T19:30:49.223906-07:00,1000.9210815429688,10.733296,10733.296 +38462,2025-03-11T19:30:59.968697-07:00,1000.9268798828125,10.744791,10744.791 +38463,2025-03-11T19:31:10.702815-07:00,1000.9202270507812,10.734118,10734.118 +38464,2025-03-11T19:31:21.440819-07:00,1000.9382934570312,10.738004,10738.004 +38465,2025-03-11T19:31:32.179642-07:00,1000.923583984375,10.738823,10738.823 +38466,2025-03-11T19:31:42.917823-07:00,1000.9332885742188,10.738181,10738.181 +38467,2025-03-11T19:31:53.658677-07:00,1000.92138671875,10.740854,10740.854 +38468,2025-03-11T19:32:04.391780-07:00,1000.9492797851562,10.733103,10733.103 +38469,2025-03-11T19:32:15.135790-07:00,1000.9559326171875,10.74401,10744.01 +38470,2025-03-11T19:32:25.868694-07:00,1000.9523315429688,10.732904,10732.904 +38471,2025-03-11T19:32:36.605624-07:00,1000.9271850585938,10.73693,10736.93 +38472,2025-03-11T19:32:47.348612-07:00,1000.9177856445312,10.742988,10742.988 +38473,2025-03-11T19:32:58.089801-07:00,1000.919189453125,10.741189,10741.189 +38474,2025-03-11T19:33:08.828140-07:00,1000.9390869140625,10.738339,10738.339 +38475,2025-03-11T19:33:19.561824-07:00,1000.9059448242188,10.733684,10733.684 +38476,2025-03-11T19:33:30.304772-07:00,1000.9046020507812,10.742948,10742.948 +38477,2025-03-11T19:33:41.041945-07:00,1000.9324951171875,10.737173,10737.173 +38478,2025-03-11T19:33:51.770747-07:00,1000.91259765625,10.728802,10728.802 +38479,2025-03-11T19:34:02.507791-07:00,1000.9324951171875,10.737044,10737.044 +38480,2025-03-11T19:34:13.256800-07:00,1000.9456787109375,10.749009,10749.009 +38481,2025-03-11T19:34:23.985613-07:00,1000.9404907226562,10.728813,10728.813 +38482,2025-03-11T19:34:34.719608-07:00,1000.937744140625,10.733995,10733.995 +38483,2025-03-11T19:34:45.464641-07:00,1000.9324951171875,10.745033,10745.033 +38484,2025-03-11T19:34:56.193794-07:00,1000.93603515625,10.729153,10729.153 +38485,2025-03-11T19:35:06.934612-07:00,1000.9227905273438,10.740818,10740.818 +38486,2025-03-11T19:35:16.676805-07:00,1000.9161987304688,9.742193,9742.193 +38487,2025-03-11T19:35:17.672665-07:00,1000.9227905273438,0.99586,995.86 +38488,2025-03-11T19:35:28.404680-07:00,1000.9161987304688,10.732015,10732.015 +38489,2025-03-11T19:35:39.139003-07:00,1000.942626953125,10.734323,10734.323 +38490,2025-03-11T19:35:49.867802-07:00,1000.9412231445312,10.728799,10728.799 +38491,2025-03-11T19:36:00.600611-07:00,1000.9589233398438,10.732809,10732.809 +38492,2025-03-11T19:36:11.336064-07:00,1000.9412231445312,10.735453,10735.453 +38493,2025-03-11T19:36:22.074797-07:00,1000.947998046875,10.738733,10738.733 +38494,2025-03-11T19:36:32.801754-07:00,1000.971435546875,10.726957,10726.957 +38495,2025-03-11T19:36:43.533611-07:00,1000.9581298828125,10.731857,10731.857 +38496,2025-03-11T19:36:54.271641-07:00,1000.9567260742188,10.73803,10738.03 +38497,2025-03-11T19:37:05.005276-07:00,1000.923583984375,10.733635,10733.635 +38498,2025-03-11T19:37:15.737761-07:00,1000.9334106445312,10.732485,10732.485 +38499,2025-03-11T19:37:26.469553-07:00,1000.942138671875,10.731792,10731.792 +38500,2025-03-11T19:37:37.205799-07:00,1000.9567260742188,10.736246,10736.246 +38501,2025-03-11T19:37:47.939611-07:00,1000.953369140625,10.733812,10733.812 +38502,2025-03-11T19:37:58.668717-07:00,1000.9254760742188,10.729106,10729.106 +38503,2025-03-11T19:38:09.408774-07:00,1000.9600219726562,10.740057,10740.057 +38504,2025-03-11T19:38:20.148627-07:00,1000.9586181640625,10.739853,10739.853 +38505,2025-03-11T19:38:30.880636-07:00,1000.9639282226562,10.732009,10732.009 +38506,2025-03-11T19:38:41.604893-07:00,1000.9506225585938,10.724257,10724.257 +38507,2025-03-11T19:38:52.350773-07:00,1000.9373168945312,10.74588,10745.88 +38508,2025-03-11T19:39:03.087137-07:00,1000.942626953125,10.736364,10736.364 +38509,2025-03-11T19:39:13.811614-07:00,1000.9559326171875,10.724477,10724.477 +38510,2025-03-11T19:39:24.547659-07:00,1000.966064453125,10.736045,10736.045 +38511,2025-03-11T19:39:35.290675-07:00,1000.9757690429688,10.743016,10743.016 +38512,2025-03-11T19:39:46.030614-07:00,1000.966064453125,10.739939,10739.939 +38513,2025-03-11T19:39:56.755612-07:00,1000.967529296875,10.724998,10724.998 +38514,2025-03-11T19:40:07.499613-07:00,1000.9873657226562,10.744001,10744.001 +38515,2025-03-11T19:40:18.234614-07:00,1000.967529296875,10.735001,10735.001 +38516,2025-03-11T19:40:28.966260-07:00,1000.9912719726562,10.731646,10731.646 +38517,2025-03-11T19:40:39.701981-07:00,1000.9815673828125,10.735721,10735.721 +38518,2025-03-11T19:40:50.435616-07:00,1000.9837646484375,10.733635,10733.635 +38519,2025-03-11T19:41:01.171608-07:00,1001.025634765625,10.735992,10735.992 +38520,2025-03-11T19:41:11.908614-07:00,1001.0014038085938,10.737006,10737.006 +38521,2025-03-11T19:41:22.646784-07:00,1000.9902954101562,10.73817,10738.17 +38522,2025-03-11T19:41:33.374609-07:00,1001.00439453125,10.727825,10727.825 +38523,2025-03-11T19:41:44.119821-07:00,1000.9946899414062,10.745212,10745.212 +38524,2025-03-11T19:41:54.852713-07:00,1000.9874877929688,10.732892,10732.892 +38525,2025-03-11T19:42:05.586776-07:00,1001.0081787109375,10.734063,10734.063 +38526,2025-03-11T19:42:16.318611-07:00,1001.0183715820312,10.731835,10731.835 +38527,2025-03-11T19:42:27.052739-07:00,1000.9993896484375,10.734128,10734.128 +38528,2025-03-11T19:42:37.800648-07:00,1001.0015869140625,10.747909,10747.909 +38529,2025-03-11T19:42:48.535763-07:00,1001.02880859375,10.735115,10735.115 +38530,2025-03-11T19:42:59.264699-07:00,1001.0226440429688,10.728936,10728.936 +38531,2025-03-11T19:43:09.999680-07:00,1001.044677734375,10.734981,10734.981 +38532,2025-03-11T19:43:20.730906-07:00,1001.040283203125,10.731226,10731.226 +38533,2025-03-11T19:43:31.469812-07:00,1001.0,10.738906,10738.906 +38534,2025-03-11T19:43:42.201645-07:00,1001.015380859375,10.731833,10731.833 +38535,2025-03-11T19:43:52.939610-07:00,1001.0211181640625,10.737965,10737.965 +38536,2025-03-11T19:44:03.673608-07:00,1001.0250244140625,10.733998,10733.998 +38537,2025-03-11T19:44:14.402711-07:00,1001.0404663085938,10.729103,10729.103 +38538,2025-03-11T19:44:25.139637-07:00,1001.0505981445312,10.736926,10736.926 +38539,2025-03-11T19:44:35.872832-07:00,1001.0610961914062,10.733195,10733.195 +38540,2025-03-11T19:44:46.612614-07:00,1001.0615844726562,10.739782,10739.782 +38541,2025-03-11T19:44:57.341018-07:00,1001.0717163085938,10.728404,10728.404 +38542,2025-03-11T19:45:08.077848-07:00,1001.0592041015625,10.73683,10736.83 +38543,2025-03-11T19:45:18.812820-07:00,1001.049560546875,10.734972,10734.972 +38544,2025-03-11T19:45:29.544785-07:00,1001.0812377929688,10.731965,10731.965 +38545,2025-03-11T19:45:40.279783-07:00,1001.0618896484375,10.734998,10734.998 +38546,2025-03-11T19:45:51.007936-07:00,1001.0657958984375,10.728153,10728.153 +38547,2025-03-11T19:46:01.745657-07:00,1001.0596313476562,10.737721,10737.721 +38548,2025-03-11T19:46:12.486632-07:00,1001.0516357421875,10.740975,10740.975 +38549,2025-03-11T19:46:23.226808-07:00,1001.0603637695312,10.740176,10740.176 +38550,2025-03-11T19:46:33.965786-07:00,1001.0545043945312,10.738978,10738.978 +38551,2025-03-11T19:46:44.695679-07:00,1001.0714111328125,10.729893,10729.893 +38552,2025-03-11T19:46:55.439609-07:00,1001.068603515625,10.74393,10743.93 +38553,2025-03-11T19:47:06.166686-07:00,1001.092041015625,10.727077,10727.077 +38554,2025-03-11T19:47:16.907001-07:00,1001.0560913085938,10.740315,10740.315 +38555,2025-03-11T19:47:27.643637-07:00,1001.0941162109375,10.736636,10736.636 +38556,2025-03-11T19:47:38.385448-07:00,1001.0220947265625,10.741811,10741.811 +38557,2025-03-11T19:47:49.120617-07:00,1001.0618896484375,10.735169,10735.169 +38558,2025-03-11T19:47:59.850889-07:00,1001.0360717773438,10.730272,10730.272 +38559,2025-03-11T19:48:10.590934-07:00,1001.0493774414062,10.740045,10740.045 +38560,2025-03-11T19:48:21.326613-07:00,1001.0515747070312,10.735679,10735.679 +38561,2025-03-11T19:48:32.058607-07:00,1001.0498657226562,10.731994,10731.994 +38562,2025-03-11T19:48:42.790697-07:00,1001.0571899414062,10.73209,10732.09 +38563,2025-03-11T19:48:53.516608-07:00,1001.0491943359375,10.725911,10725.911 +38564,2025-03-11T19:49:04.251641-07:00,1001.0792236328125,10.735033,10735.033 +38565,2025-03-11T19:49:14.981821-07:00,1001.0726318359375,10.73018,10730.18 +38566,2025-03-11T19:49:25.724711-07:00,1001.0565795898438,10.74289,10742.89 +38567,2025-03-11T19:49:36.447804-07:00,1001.0535278320312,10.723093,10723.093 +38568,2025-03-11T19:49:47.184612-07:00,1001.0543212890625,10.736808,10736.808 +38569,2025-03-11T19:49:57.912788-07:00,1001.075439453125,10.728176,10728.176 +38570,2025-03-11T19:50:08.649767-07:00,1001.093994140625,10.736979,10736.979 +38571,2025-03-11T19:50:19.389720-07:00,1001.1190795898438,10.739953,10739.953 +38572,2025-03-11T19:50:30.118791-07:00,1001.079345703125,10.729071,10729.071 +38573,2025-03-11T19:50:40.854800-07:00,1001.1138305664062,10.736009,10736.009 +38574,2025-03-11T19:50:51.587684-07:00,1001.1218872070312,10.732884,10732.884 +38575,2025-03-11T19:51:02.317616-07:00,1001.1099853515625,10.729932,10729.932 +38576,2025-03-11T19:51:13.059607-07:00,1001.1077880859375,10.741991,10741.991 +38577,2025-03-11T19:51:23.795074-07:00,1001.1109619140625,10.735467,10735.467 +38578,2025-03-11T19:51:34.527707-07:00,1001.1300048828125,10.732633,10732.633 +38579,2025-03-11T19:51:45.253611-07:00,1001.1079711914062,10.725904,10725.904 +38580,2025-03-11T19:51:55.989822-07:00,1001.0992431640625,10.736211,10736.211 +38581,2025-03-11T19:52:06.728793-07:00,1001.1367797851562,10.738971,10738.971 +38582,2025-03-11T19:52:17.462613-07:00,1001.1558837890625,10.73382,10733.82 +38583,2025-03-11T19:52:28.195611-07:00,1001.1470947265625,10.732998,10732.998 +38584,2025-03-11T19:52:38.932811-07:00,1001.1448974609375,10.7372,10737.2 +38585,2025-03-11T19:52:49.671021-07:00,1001.1573486328125,10.73821,10738.21 +38586,2025-03-11T19:53:00.408859-07:00,1001.1671142578125,10.737838,10737.838 +38587,2025-03-11T19:53:11.141850-07:00,1001.1517333984375,10.732991,10732.991 +38588,2025-03-11T19:53:21.871792-07:00,1001.162841796875,10.729942,10729.942 +38589,2025-03-11T19:53:32.614302-07:00,1001.131103515625,10.74251,10742.51 +38590,2025-03-11T19:53:43.416815-07:00,1001.1386108398438,10.802513,10802.513 +38591,2025-03-11T19:53:54.158071-07:00,1001.177490234375,10.741256,10741.256 +38592,2025-03-11T19:54:04.894259-07:00,1001.1656494140625,10.736188,10736.188 +38593,2025-03-11T19:54:15.622219-07:00,1001.1930541992188,10.72796,10727.96 +38594,2025-03-11T19:54:26.360069-07:00,1001.2090454101562,10.73785,10737.85 +38595,2025-03-11T19:54:37.096109-07:00,1001.1793823242188,10.73604,10736.04 +38596,2025-03-11T19:54:47.824665-07:00,1001.2036743164062,10.728556,10728.556 +38597,2025-03-11T19:54:58.559121-07:00,1001.1868896484375,10.734456,10734.456 +38598,2025-03-11T19:55:09.293111-07:00,1001.1829833984375,10.73399,10733.99 +38599,2025-03-11T19:55:20.029041-07:00,1001.20068359375,10.73593,10735.93 +38600,2025-03-11T19:55:30.771113-07:00,1001.2117309570312,10.742072,10742.072 +38601,2025-03-11T19:55:41.508108-07:00,1001.2015380859375,10.736995,10736.995 +38602,2025-03-11T19:55:52.249148-07:00,1001.18310546875,10.74104,10741.04 +38603,2025-03-11T19:56:02.986194-07:00,1001.2061157226562,10.737046,10737.046 +38604,2025-03-11T19:56:13.717285-07:00,1001.2154541015625,10.731091,10731.091 +38605,2025-03-11T19:56:24.452228-07:00,1001.23486328125,10.734943,10734.943 +38606,2025-03-11T19:56:35.185355-07:00,1001.2190551757812,10.733127,10733.127 +38607,2025-03-11T19:56:45.922037-07:00,1001.2273559570312,10.736682,10736.682 +38608,2025-03-11T19:56:56.654040-07:00,1001.20361328125,10.732003,10732.003 +38609,2025-03-11T19:57:07.388107-07:00,1001.2081298828125,10.734067,10734.067 +38610,2025-03-11T19:57:18.114071-07:00,1001.2098388671875,10.725964,10725.964 +38611,2025-03-11T19:57:28.848230-07:00,1001.2230224609375,10.734159,10734.159 +38612,2025-03-11T19:57:39.581248-07:00,1001.2553100585938,10.733018,10733.018 +38613,2025-03-11T19:57:50.314201-07:00,1001.2315673828125,10.732953,10732.953 +38614,2025-03-11T19:58:01.050218-07:00,1001.259765625,10.736017,10736.017 +38615,2025-03-11T19:58:11.784042-07:00,1001.2029418945312,10.733824,10733.824 +38616,2025-03-11T19:58:22.513505-07:00,1001.2029418945312,10.729463,10729.463 +38617,2025-03-11T19:58:33.248097-07:00,1001.225830078125,10.734592,10734.592 +38618,2025-03-11T19:58:43.989255-07:00,1001.21923828125,10.741158,10741.158 +38619,2025-03-11T19:58:54.718039-07:00,1001.2767333984375,10.728784,10728.784 +38620,2025-03-11T19:59:05.448315-07:00,1001.2501831054688,10.730276,10730.276 +38621,2025-03-11T19:59:16.180326-07:00,1001.2598266601562,10.732011,10732.011 +38622,2025-03-11T19:59:26.909130-07:00,1001.24658203125,10.728804,10728.804 +38623,2025-03-11T19:59:37.648118-07:00,1001.2789306640625,10.738988,10738.988 +38624,2025-03-11T19:59:48.381103-07:00,1001.2709350585938,10.732985,10732.985 +38625,2025-03-11T19:59:59.115038-07:00,1001.265625,10.733935,10733.935 +38626,2025-03-11T20:00:09.842418-07:00,1001.265625,10.72738,10727.38 +38627,2025-03-11T20:00:20.576216-07:00,1001.2935791015625,10.733798,10733.798 +38628,2025-03-11T20:00:31.311073-07:00,1001.2775268554688,10.734857,10734.857 +38629,2025-03-11T20:00:42.043036-07:00,1001.3062744140625,10.731963,10731.963 +38630,2025-03-11T20:00:52.778041-07:00,1001.300048828125,10.735005,10735.005 +38631,2025-03-11T20:01:03.509297-07:00,1001.259765625,10.731256,10731.256 +38632,2025-03-11T20:01:14.240038-07:00,1001.3201293945312,10.730741,10730.741 +38633,2025-03-11T20:01:24.981398-07:00,1001.29638671875,10.74136,10741.36 +38634,2025-03-11T20:01:35.708254-07:00,1001.3184204101562,10.726856,10726.856 +38635,2025-03-11T20:01:46.444041-07:00,1001.3323974609375,10.735787,10735.787 +38636,2025-03-11T20:01:57.186038-07:00,1001.32080078125,10.741997,10741.997 +38637,2025-03-11T20:02:07.921108-07:00,1001.3146362304688,10.73507,10735.07 +38638,2025-03-11T20:02:18.646433-07:00,1001.322021484375,10.725325,10725.325 +38639,2025-03-11T20:02:29.387104-07:00,1001.326416015625,10.740671,10740.671 +38640,2025-03-11T20:02:40.114244-07:00,1001.34814453125,10.72714,10727.14 +38641,2025-03-11T20:02:50.846279-07:00,1001.3143920898438,10.732035,10732.035 +38642,2025-03-11T20:03:01.577039-07:00,1001.3284301757812,10.73076,10730.76 +38643,2025-03-11T20:03:12.316038-07:00,1001.3023681640625,10.738999,10738.999 +38644,2025-03-11T20:03:23.046036-07:00,1001.3111572265625,10.729998,10729.998 +38645,2025-03-11T20:03:33.785055-07:00,1001.32373046875,10.739019,10739.019 +38646,2025-03-11T20:03:44.515060-07:00,1001.325927734375,10.730005,10730.005 +38647,2025-03-11T20:03:55.252326-07:00,1001.362548828125,10.737266,10737.266 +38648,2025-03-11T20:04:05.978232-07:00,1001.3912353515625,10.725906,10725.906 +38649,2025-03-11T20:04:16.716223-07:00,1001.35400390625,10.737991,10737.991 +38650,2025-03-11T20:04:27.445033-07:00,1001.395751953125,10.72881,10728.81 +38651,2025-03-11T20:04:38.182036-07:00,1001.3927612304688,10.737003,10737.003 +38652,2025-03-11T20:04:48.915106-07:00,1001.4007568359375,10.73307,10733.07 +38653,2025-03-11T20:04:59.649232-07:00,1001.3816528320312,10.734126,10734.126 +38654,2025-03-11T20:05:10.382283-07:00,1001.4160766601562,10.733051,10733.051 +38655,2025-03-11T20:05:21.121042-07:00,1001.413330078125,10.738759,10738.759 +38656,2025-03-11T20:05:31.850222-07:00,1001.4248657226562,10.72918,10729.18 +38657,2025-03-11T20:05:42.581040-07:00,1001.4168701171875,10.730818,10730.818 +38658,2025-03-11T20:05:53.317041-07:00,1001.408935546875,10.736001,10736.001 +38659,2025-03-11T20:06:04.057039-07:00,1001.43017578125,10.739998,10739.998 +38660,2025-03-11T20:06:14.787213-07:00,1001.4336547851562,10.730174,10730.174 +38661,2025-03-11T20:06:25.521034-07:00,1001.413818359375,10.733821,10733.821 +38662,2025-03-11T20:06:36.247190-07:00,1001.4420166015625,10.726156,10726.156 +38663,2025-03-11T20:06:46.984510-07:00,1001.4190673828125,10.73732,10737.32 +38664,2025-03-11T20:06:57.723221-07:00,1001.4552612304688,10.738711,10738.711 +38665,2025-03-11T20:07:08.451188-07:00,1001.4486083984375,10.727967,10727.967 +38666,2025-03-11T20:07:19.187041-07:00,1001.4684448242188,10.735853,10735.853 +38667,2025-03-11T20:07:29.919227-07:00,1001.481689453125,10.732186,10732.186 +38668,2025-03-11T20:07:40.657067-07:00,1001.4896850585938,10.73784,10737.84 +38669,2025-03-11T20:07:51.391112-07:00,1001.4763793945312,10.734045,10734.045 +38670,2025-03-11T20:08:02.120590-07:00,1001.4618530273438,10.729478,10729.478 +38671,2025-03-11T20:08:12.855228-07:00,1001.4844360351562,10.734638,10734.638 +38672,2025-03-11T20:08:23.586182-07:00,1001.4910888671875,10.730954,10730.954 +38673,2025-03-11T20:08:45.052270-07:00,1001.5074462890625,21.466088,21466.088 +38674,2025-03-11T20:08:55.793252-07:00,1001.5007934570312,10.740982,10740.982 +38675,2025-03-11T20:09:06.520039-07:00,1001.502197265625,10.726787,10726.787 +38676,2025-03-11T20:09:17.252225-07:00,1001.5119018554688,10.732186,10732.186 +38677,2025-03-11T20:09:27.986224-07:00,1001.493408203125,10.733999,10733.999 +38678,2025-03-11T20:09:38.719047-07:00,1001.5083618164062,10.732823,10732.823 +38679,2025-03-11T20:09:49.459258-07:00,1001.48681640625,10.740211,10740.211 +38680,2025-03-11T20:10:00.192379-07:00,1001.5083618164062,10.733121,10733.121 +38681,2025-03-11T20:10:10.923439-07:00,1001.5128173828125,10.73106,10731.06 +38682,2025-03-11T20:10:21.651035-07:00,1001.486328125,10.727596,10727.596 +38683,2025-03-11T20:10:32.387133-07:00,1001.507568359375,10.736098,10736.098 +38684,2025-03-11T20:10:43.126229-07:00,1001.494384765625,10.739096,10739.096 +38685,2025-03-11T20:10:53.859909-07:00,1001.4890747070312,10.73368,10733.68 +38686,2025-03-11T20:11:04.586261-07:00,1001.48388671875,10.726352,10726.352 +38687,2025-03-11T20:11:15.320044-07:00,1001.5067749023438,10.733783,10733.783 +38688,2025-03-11T20:11:26.046063-07:00,1001.4834594726562,10.726019,10726.019 +38689,2025-03-11T20:11:36.778038-07:00,1001.4966430664062,10.731975,10731.975 +38690,2025-03-11T20:11:47.509206-07:00,1001.5126342773438,10.731168,10731.168 +38691,2025-03-11T20:11:58.244451-07:00,1001.5010986328125,10.735245,10735.245 +38692,2025-03-11T20:12:08.972039-07:00,1001.46630859375,10.727588,10727.588 +38693,2025-03-11T20:12:19.700040-07:00,1001.4642333984375,10.728001,10728.001 +38694,2025-03-11T20:12:30.438226-07:00,1001.4561767578125,10.738186,10738.186 +38695,2025-03-11T20:12:41.163039-07:00,1001.4790649414062,10.724813,10724.813 +38696,2025-03-11T20:12:51.895529-07:00,1001.488525390625,10.73249,10732.49 +38697,2025-03-11T20:13:02.631378-07:00,1001.4915771484375,10.735849,10735.849 +38698,2025-03-11T20:13:13.359045-07:00,1001.4796752929688,10.727667,10727.667 +38699,2025-03-11T20:13:24.091248-07:00,1001.451904296875,10.732203,10732.203 +38700,2025-03-11T20:13:34.827056-07:00,1001.447998046875,10.735808,10735.808 +38701,2025-03-11T20:13:45.549043-07:00,1001.4761962890625,10.721987,10721.987 +38702,2025-03-11T20:13:56.286068-07:00,1001.493896484375,10.737025,10737.025 +38703,2025-03-11T20:14:07.019223-07:00,1001.4953002929688,10.733155,10733.155 +38704,2025-03-11T20:14:17.750040-07:00,1001.4674072265625,10.730817,10730.817 +38705,2025-03-11T20:14:28.477048-07:00,1001.462158203125,10.727008,10727.008 +38706,2025-03-11T20:14:39.213035-07:00,1001.4652099609375,10.735987,10735.987 +38707,2025-03-11T20:14:49.943066-07:00,1001.4701538085938,10.730031,10730.031 +38708,2025-03-11T20:15:00.669045-07:00,1001.4666137695312,10.725979,10725.979 +38709,2025-03-11T20:15:11.405491-07:00,1001.4547729492188,10.736446,10736.446 +38710,2025-03-11T20:15:22.137481-07:00,1001.4512329101562,10.73199,10731.99 +38711,2025-03-11T20:15:32.872118-07:00,1001.463134765625,10.734637,10734.637 +38712,2025-03-11T20:15:43.603036-07:00,1001.473876953125,10.730918,10730.918 +38713,2025-03-11T20:15:54.337228-07:00,1001.4606323242188,10.734192,10734.192 +38714,2025-03-11T20:16:05.068041-07:00,1001.490478515625,10.730813,10730.813 +38715,2025-03-11T20:16:15.808039-07:00,1001.48388671875,10.739998,10739.998 +38716,2025-03-11T20:16:26.542040-07:00,1001.4785766601562,10.734001,10734.001 +38717,2025-03-11T20:16:37.268416-07:00,1001.46044921875,10.726376,10726.376 +38718,2025-03-11T20:16:48.006091-07:00,1001.481689453125,10.737675,10737.675 +38719,2025-03-11T20:16:58.740036-07:00,1001.5046997070312,10.733945,10733.945 +38720,2025-03-11T20:17:09.465196-07:00,1001.498046875,10.72516,10725.16 +38721,2025-03-11T20:17:20.203069-07:00,1001.4942016601562,10.737873,10737.873 +38722,2025-03-11T20:17:30.937249-07:00,1001.4891967773438,10.73418,10734.18 +38723,2025-03-11T20:17:41.665238-07:00,1001.50390625,10.727989,10727.989 +38724,2025-03-11T20:17:52.403214-07:00,1001.4972534179688,10.737976,10737.976 +38725,2025-03-11T20:18:03.132042-07:00,1001.5396728515625,10.728828,10728.828 +38726,2025-03-11T20:18:13.872042-07:00,1001.5348510742188,10.74,10740.0 +38727,2025-03-11T20:18:24.605040-07:00,1001.4950561523438,10.732998,10732.998 +38728,2025-03-11T20:18:35.337933-07:00,1001.4964599609375,10.732893,10732.893 +38729,2025-03-11T20:18:46.064819-07:00,1001.5260009765625,10.726886,10726.886 +38730,2025-03-11T20:18:56.804443-07:00,1001.5260009765625,10.739624,10739.624 +38731,2025-03-11T20:19:07.539493-07:00,1001.535400390625,10.73505,10735.05 +38732,2025-03-11T20:19:18.273141-07:00,1001.5075073242188,10.733648,10733.648 +38733,2025-03-11T20:19:29.005099-07:00,1001.5287475585938,10.731958,10731.958 +38734,2025-03-11T20:19:39.746037-07:00,1001.5465087890625,10.740938,10740.938 +38735,2025-03-11T20:19:50.480272-07:00,1001.5252075195312,10.734235,10734.235 +38736,2025-03-11T20:20:01.209297-07:00,1001.55615234375,10.729025,10729.025 +38737,2025-03-11T20:20:11.944037-07:00,1001.5376586914062,10.73474,10734.74 +38738,2025-03-11T20:20:22.677245-07:00,1001.5592041015625,10.733208,10733.208 +38739,2025-03-11T20:20:33.408235-07:00,1001.5804443359375,10.73099,10730.99 +38740,2025-03-11T20:20:44.146196-07:00,1001.5753173828125,10.737961,10737.961 +38741,2025-03-11T20:20:54.884180-07:00,1001.5783081054688,10.737984,10737.984 +38742,2025-03-11T20:21:05.615048-07:00,1001.587646484375,10.730868,10730.868 +38743,2025-03-11T20:21:16.356245-07:00,1001.5584106445312,10.741197,10741.197 +38744,2025-03-11T20:21:27.093040-07:00,1001.5943603515625,10.736795,10736.795 +38745,2025-03-11T20:21:37.818133-07:00,1001.5695190429688,10.725093,10725.093 +38746,2025-03-11T20:21:48.558109-07:00,1001.5775146484375,10.739976,10739.976 +38747,2025-03-11T20:21:59.291219-07:00,1001.5510864257812,10.73311,10733.11 +38748,2025-03-11T20:22:10.021115-07:00,1001.5656127929688,10.729896,10729.896 +38749,2025-03-11T20:22:20.762188-07:00,1001.5806274414062,10.741073,10741.073 +38750,2025-03-11T20:22:31.496046-07:00,1001.5718994140625,10.733858,10733.858 +38751,2025-03-11T20:22:42.231124-07:00,1001.5917358398438,10.735078,10735.078 +38752,2025-03-11T20:22:52.969297-07:00,1001.579833984375,10.738173,10738.173 +38753,2025-03-11T20:23:03.705041-07:00,1001.5731811523438,10.735744,10735.744 +38754,2025-03-11T20:23:14.439043-07:00,1001.5825805664062,10.734002,10734.002 +38755,2025-03-11T20:23:25.175289-07:00,1001.575927734375,10.736246,10736.246 +38756,2025-03-11T20:23:35.906242-07:00,1001.5790405273438,10.730953,10730.953 +38757,2025-03-11T20:23:46.644086-07:00,1001.5936889648438,10.737844,10737.844 +38758,2025-03-11T20:23:57.383399-07:00,1001.60205078125,10.739313,10739.313 +38759,2025-03-11T20:24:08.110193-07:00,1001.575439453125,10.726794,10726.794 +38760,2025-03-11T20:24:18.852527-07:00,1001.5914916992188,10.742334,10742.334 +38761,2025-03-11T20:24:29.583040-07:00,1001.6011962890625,10.730513,10730.513 +38762,2025-03-11T20:24:40.327252-07:00,1001.62109375,10.744212,10744.212 +38763,2025-03-11T20:24:51.058235-07:00,1001.5879516601562,10.730983,10730.983 +38764,2025-03-11T20:25:01.793212-07:00,1001.6174926757812,10.734977,10734.977 +38765,2025-03-11T20:25:12.532191-07:00,1001.57470703125,10.738979,10738.979 +38766,2025-03-11T20:25:23.260038-07:00,1001.61083984375,10.727847,10727.847 +38767,2025-03-11T20:25:33.994041-07:00,1001.5778198242188,10.734003,10734.003 +38768,2025-03-11T20:25:44.734145-07:00,1001.5791625976562,10.740104,10740.104 +38769,2025-03-11T20:25:55.467196-07:00,1001.59375,10.733051,10733.051 +38770,2025-03-11T20:26:06.200038-07:00,1001.60205078125,10.732842,10732.842 +38771,2025-03-11T20:26:16.930269-07:00,1001.6004028320312,10.730231,10730.231 +38772,2025-03-11T20:26:27.666463-07:00,1001.60205078125,10.736194,10736.194 +38773,2025-03-11T20:26:38.399251-07:00,1001.6300048828125,10.732788,10732.788 +38774,2025-03-11T20:26:49.137114-07:00,1001.6260986328125,10.737863,10737.863 +38775,2025-03-11T20:26:59.865468-07:00,1001.62109375,10.728354,10728.354 +38776,2025-03-11T20:27:10.602065-07:00,1001.61279296875,10.736597,10736.597 +38777,2025-03-11T20:27:21.340041-07:00,1001.6194458007812,10.737976,10737.976 +38778,2025-03-11T20:27:32.076039-07:00,1001.6239013671875,10.735998,10735.998 +38779,2025-03-11T20:27:42.815209-07:00,1001.6224975585938,10.73917,10739.17 +38780,2025-03-11T20:27:53.551209-07:00,1001.6454467773438,10.736,10736.0 +38781,2025-03-11T20:28:04.285043-07:00,1001.6520385742188,10.733834,10733.834 +38782,2025-03-11T20:28:15.024037-07:00,1001.6336059570312,10.738994,10738.994 +38783,2025-03-11T20:28:25.755121-07:00,1001.626953125,10.731084,10731.084 +38784,2025-03-11T20:28:36.494404-07:00,1001.6217041015625,10.739283,10739.283 +38785,2025-03-11T20:28:47.224068-07:00,1001.6512451171875,10.729664,10729.664 +38786,2025-03-11T20:28:57.954040-07:00,1001.6380615234375,10.729972,10729.972 +38787,2025-03-11T20:29:08.692306-07:00,1001.6261596679688,10.738266,10738.266 +38788,2025-03-11T20:29:19.423109-07:00,1001.647705078125,10.730803,10730.803 +38789,2025-03-11T20:29:30.166066-07:00,1001.6543579101562,10.742957,10742.957 +38790,2025-03-11T20:29:40.895076-07:00,1001.6292114257812,10.72901,10729.01 +38791,2025-03-11T20:29:51.626083-07:00,1001.6439208984375,10.731007,10731.007 +38792,2025-03-11T20:30:02.359989-07:00,1001.6320190429688,10.733906,10733.906 +38793,2025-03-11T20:30:13.101132-07:00,1001.6253051757812,10.741143,10741.143 +38794,2025-03-11T20:30:23.828105-07:00,1001.6320190429688,10.726973,10726.973 +38795,2025-03-11T20:30:34.566399-07:00,1001.6298217773438,10.738294,10738.294 +38796,2025-03-11T20:30:45.295244-07:00,1001.6298217773438,10.728845,10728.845 +38797,2025-03-11T20:30:56.034324-07:00,1001.6165771484375,10.73908,10739.08 +38798,2025-03-11T20:31:06.768250-07:00,1001.6231079101562,10.733926,10733.926 +38799,2025-03-11T20:31:17.500193-07:00,1001.6248168945312,10.731943,10731.943 +38800,2025-03-11T20:31:28.233062-07:00,1001.640869140625,10.732869,10732.869 +38801,2025-03-11T20:31:38.974040-07:00,1001.6373291015625,10.740978,10740.978 +38802,2025-03-11T20:31:49.701244-07:00,1001.6107788085938,10.727204,10727.204 +38803,2025-03-11T20:32:00.442230-07:00,1001.6138916015625,10.740986,10740.986 +38804,2025-03-11T20:32:11.173204-07:00,1001.6581420898438,10.730974,10730.974 +38805,2025-03-11T20:32:21.900257-07:00,1001.6298217773438,10.727053,10727.053 +38806,2025-03-11T20:32:32.638040-07:00,1001.6263427734375,10.737783,10737.783 +38807,2025-03-11T20:32:43.371217-07:00,1001.6290893554688,10.733177,10733.177 +38808,2025-03-11T20:32:54.109185-07:00,1001.58935546875,10.737968,10737.968 +38809,2025-03-11T20:33:04.847044-07:00,1001.6224975585938,10.737859,10737.859 +38810,2025-03-11T20:33:15.576221-07:00,1001.5926513671875,10.729177,10729.177 +38811,2025-03-11T20:33:26.311208-07:00,1001.6235961914062,10.734987,10734.987 +38812,2025-03-11T20:33:37.045184-07:00,1001.589111328125,10.733976,10733.976 +38813,2025-03-11T20:33:47.780040-07:00,1001.6116943359375,10.734856,10734.856 +38814,2025-03-11T20:33:58.511250-07:00,1001.6051635742188,10.73121,10731.21 +38815,2025-03-11T20:34:09.253233-07:00,1001.6068725585938,10.741983,10741.983 +38816,2025-03-11T20:34:19.977041-07:00,1001.6281127929688,10.723808,10723.808 +38817,2025-03-11T20:34:30.717121-07:00,1001.6148681640625,10.74008,10740.08 +38818,2025-03-11T20:34:41.449351-07:00,1001.626708984375,10.73223,10732.23 +38819,2025-03-11T20:34:52.174038-07:00,1001.6347045898438,10.724687,10724.687 +38820,2025-03-11T20:35:02.911044-07:00,1001.6294555664062,10.737006,10737.006 +38821,2025-03-11T20:35:13.648329-07:00,1001.6347045898438,10.737285,10737.285 +38822,2025-03-11T20:35:24.379214-07:00,1001.6400146484375,10.730885,10730.885 +38823,2025-03-11T20:35:35.112040-07:00,1001.641357421875,10.732826,10732.826 +38824,2025-03-11T20:35:45.844123-07:00,1001.6281127929688,10.732083,10732.083 +38825,2025-03-11T20:35:56.568771-07:00,1001.6200561523438,10.724648,10724.648 +38826,2025-03-11T20:36:07.304040-07:00,1001.641357421875,10.735269,10735.269 +38827,2025-03-11T20:36:18.035039-07:00,1001.6465454101562,10.730999,10730.999 +38828,2025-03-11T20:36:28.769194-07:00,1001.6347045898438,10.734155,10734.155 +38829,2025-03-11T20:36:39.504483-07:00,1001.6515502929688,10.735289,10735.289 +38830,2025-03-11T20:36:50.229035-07:00,1001.6448364257812,10.724552,10724.552 +38831,2025-03-11T20:37:00.962864-07:00,1001.664794921875,10.733829,10733.829 +38832,2025-03-11T20:37:11.691311-07:00,1001.67138671875,10.728447,10728.447 +38833,2025-03-11T20:37:22.432039-07:00,1001.6832885742188,10.740728,10740.728 +38834,2025-03-11T20:37:33.159045-07:00,1001.6634521484375,10.727006,10727.006 +38835,2025-03-11T20:37:43.892213-07:00,1001.6846923828125,10.733168,10733.168 +38836,2025-03-11T20:37:54.628040-07:00,1001.6487426757812,10.735827,10735.827 +38837,2025-03-11T20:38:05.360256-07:00,1001.6553955078125,10.732216,10732.216 +38838,2025-03-11T20:38:16.086216-07:00,1001.6620483398438,10.72596,10725.96 +38839,2025-03-11T20:38:26.825037-07:00,1001.6669311523438,10.738821,10738.821 +38840,2025-03-11T20:38:37.559039-07:00,1001.6575927734375,10.734002,10734.002 +38841,2025-03-11T20:38:48.282207-07:00,1001.705322265625,10.723168,10723.168 +38842,2025-03-11T20:38:59.023455-07:00,1001.6854858398438,10.741248,10741.248 +38843,2025-03-11T20:39:09.747073-07:00,1001.7006225585938,10.723618,10723.618 +38844,2025-03-11T20:39:20.484125-07:00,1001.720458984375,10.737052,10737.052 +38845,2025-03-11T20:39:31.218219-07:00,1001.7402954101562,10.734094,10734.094 +38846,2025-03-11T20:39:41.955037-07:00,1001.724365234375,10.736818,10736.818 +38847,2025-03-11T20:39:52.680236-07:00,1001.6845092773438,10.725199,10725.199 +38848,2025-03-11T20:40:03.420120-07:00,1001.7212524414062,10.739884,10739.884 +38849,2025-03-11T20:40:14.156478-07:00,1001.7066650390625,10.736358,10736.358 +38850,2025-03-11T20:40:24.883039-07:00,1001.6969604492188,10.726561,10726.561 +38851,2025-03-11T20:40:35.611311-07:00,1001.695556640625,10.728272,10728.272 +38852,2025-03-11T20:40:46.352817-07:00,1001.7234497070312,10.741506,10741.506 +38853,2025-03-11T20:40:57.082099-07:00,1001.700439453125,10.729282,10729.282 +38854,2025-03-11T20:41:07.817244-07:00,1001.72705078125,10.735145,10735.145 +38855,2025-03-11T20:41:18.547549-07:00,1001.7137451171875,10.730305,10730.305 +38856,2025-03-11T20:41:29.276065-07:00,1001.6911010742188,10.728516,10728.516 +38857,2025-03-11T20:41:40.010252-07:00,1001.742431640625,10.734187,10734.187 +38858,2025-03-11T20:41:50.732130-07:00,1001.7374877929688,10.721878,10721.878 +38859,2025-03-11T20:42:01.470694-07:00,1001.7145385742188,10.738564,10738.564 +38860,2025-03-11T20:42:12.199224-07:00,1001.7330322265625,10.72853,10728.53 +38861,2025-03-11T20:42:22.934050-07:00,1001.7181396484375,10.734826,10734.826 +38862,2025-03-11T20:42:33.666474-07:00,1001.6902465820312,10.732424,10732.424 +38863,2025-03-11T20:42:44.397175-07:00,1001.7246704101562,10.730701,10730.701 +38864,2025-03-11T20:42:55.130041-07:00,1001.7206420898438,10.732866,10732.866 +38865,2025-03-11T20:43:05.864867-07:00,1001.7271728515625,10.734826,10734.826 +38866,2025-03-11T20:43:16.599041-07:00,1001.740478515625,10.734174,10734.174 +38867,2025-03-11T20:43:27.324147-07:00,1001.689697265625,10.725106,10725.106 +38868,2025-03-11T20:43:38.060035-07:00,1001.7122802734375,10.735888,10735.888 +38869,2025-03-11T20:43:48.786040-07:00,1001.7293701171875,10.726005,10726.005 +38870,2025-03-11T20:43:59.517101-07:00,1001.7373657226562,10.731061,10731.061 +38871,2025-03-11T20:44:10.253271-07:00,1001.7492065429688,10.73617,10736.17 +38872,2025-03-11T20:44:20.986498-07:00,1001.734375,10.733227,10733.227 +38873,2025-03-11T20:44:31.716247-07:00,1001.7196655273438,10.729749,10729.749 +38874,2025-03-11T20:44:42.446041-07:00,1001.734375,10.729794,10729.794 +38875,2025-03-11T20:44:53.187072-07:00,1001.7673950195312,10.741031,10741.031 +38876,2025-03-11T20:45:03.912039-07:00,1001.7528076171875,10.724967,10724.967 +38877,2025-03-11T20:45:14.648251-07:00,1001.7462768554688,10.736212,10736.212 +38878,2025-03-11T20:45:25.386228-07:00,1001.7615356445312,10.737977,10737.977 +38879,2025-03-11T20:45:36.120219-07:00,1001.7564086914062,10.733991,10733.991 +38880,2025-03-11T20:45:46.848556-07:00,1001.7496948242188,10.728337,10728.337 +38881,2025-03-11T20:45:57.572041-07:00,1001.762939453125,10.723485,10723.485 +38882,2025-03-11T20:46:08.311419-07:00,1001.7550048828125,10.739378,10739.378 +38883,2025-03-11T20:46:19.042039-07:00,1001.781494140625,10.73062,10730.62 +38884,2025-03-11T20:46:29.768319-07:00,1001.8043823242188,10.72628,10726.28 +38885,2025-03-11T20:46:40.499118-07:00,1001.7977905273438,10.730799,10730.799 +38886,2025-03-11T20:46:51.230076-07:00,1001.7695922851562,10.730958,10730.958 +38887,2025-03-11T20:47:01.958043-07:00,1001.8110961914062,10.727967,10727.967 +38888,2025-03-11T20:47:12.694233-07:00,1001.81591796875,10.73619,10736.19 +38889,2025-03-11T20:47:23.419038-07:00,1001.8110961914062,10.724805,10724.805 +38890,2025-03-11T20:47:34.147468-07:00,1001.8079833984375,10.72843,10728.43 +38891,2025-03-11T20:47:44.880929-07:00,1001.8146362304688,10.733461,10733.461 +38892,2025-03-11T20:47:55.617040-07:00,1001.813232421875,10.736111,10736.111 +38893,2025-03-11T20:48:06.340253-07:00,1001.802734375,10.723213,10723.213 +38894,2025-03-11T20:48:17.076208-07:00,1001.7960815429688,10.735955,10735.955 +38895,2025-03-11T20:48:27.802108-07:00,1001.8013916015625,10.7259,10725.9 +38896,2025-03-11T20:48:38.533310-07:00,1001.7991943359375,10.731202,10731.202 +38897,2025-03-11T20:48:49.261489-07:00,1001.7911987304688,10.728179,10728.179 +38898,2025-03-11T20:48:59.995240-07:00,1001.81591796875,10.733751,10733.751 +38899,2025-03-11T20:49:10.725031-07:00,1001.802734375,10.729791,10729.791 +38900,2025-03-11T20:49:21.460226-07:00,1001.8093872070312,10.735195,10735.195 +38901,2025-03-11T20:49:32.194317-07:00,1001.8256225585938,10.734091,10734.091 +38902,2025-03-11T20:49:42.917235-07:00,1001.8309326171875,10.722918,10722.918 +38903,2025-03-11T20:49:53.650223-07:00,1001.8110961914062,10.732988,10732.988 +38904,2025-03-11T20:50:04.376039-07:00,1001.8093872070312,10.725816,10725.816 +38905,2025-03-11T20:50:15.116040-07:00,1001.8110961914062,10.740001,10740.001 +38906,2025-03-11T20:50:25.841446-07:00,1001.7960815429688,10.725406,10725.406 +38907,2025-03-11T20:50:36.573105-07:00,1001.8093872070312,10.731659,10731.659 +38908,2025-03-11T20:50:47.306042-07:00,1001.8226318359375,10.732937,10732.937 +38909,2025-03-11T20:50:58.035226-07:00,1001.8013916015625,10.729184,10729.184 +38910,2025-03-11T20:51:08.766038-07:00,1001.8079833984375,10.730812,10730.812 +38911,2025-03-11T20:51:19.494607-07:00,1001.8278198242188,10.728569,10728.569 +38912,2025-03-11T20:51:30.234043-07:00,1001.81982421875,10.739436,10739.436 +38913,2025-03-11T20:51:40.959041-07:00,1001.8396606445312,10.724998,10724.998 +38914,2025-03-11T20:51:51.690249-07:00,1001.841064453125,10.731208,10731.208 +38915,2025-03-11T20:52:02.418220-07:00,1001.8463134765625,10.727971,10727.971 +38916,2025-03-11T20:52:13.149040-07:00,1001.8463134765625,10.73082,10730.82 +38917,2025-03-11T20:52:23.887566-07:00,1001.8595581054688,10.738526,10738.526 +38918,2025-03-11T20:52:34.611189-07:00,1001.8595581054688,10.723623,10723.623 +38919,2025-03-11T20:52:45.348478-07:00,1001.8396606445312,10.737289,10737.289 +38920,2025-03-11T20:52:56.077036-07:00,1001.8379516601562,10.728558,10728.558 +38921,2025-03-11T20:53:06.806233-07:00,1001.864501953125,10.729197,10729.197 +38922,2025-03-11T20:53:17.534134-07:00,1001.8565673828125,10.727901,10727.901 +38923,2025-03-11T20:53:28.258256-07:00,1001.849853515625,10.724122,10724.122 +38924,2025-03-11T20:53:49.732635-07:00,1001.84326171875,21.474379,21474.379 +38925,2025-03-11T20:54:00.458098-07:00,1001.8630981445312,10.725463,10725.463 +38926,2025-03-11T20:54:11.188631-07:00,1001.87109375,10.730533,10730.533 +38927,2025-03-11T20:54:21.921965-07:00,1001.87109375,10.733334,10733.334 +38928,2025-03-11T20:54:32.639824-07:00,1001.8778076171875,10.717859,10717.859 +38929,2025-03-11T20:54:43.373630-07:00,1001.8778076171875,10.733806,10733.806 +38930,2025-03-11T20:54:54.104637-07:00,1001.864501953125,10.731007,10731.007 +38931,2025-03-11T20:55:04.823633-07:00,1001.8778076171875,10.718996,10718.996 +38932,2025-03-11T20:55:15.555629-07:00,1001.8909912109375,10.731996,10731.996 +38933,2025-03-11T20:55:26.285632-07:00,1001.872802734375,10.730003,10730.003 +38934,2025-03-11T20:55:37.001634-07:00,1001.8662719726562,10.716002,10716.002 +38935,2025-03-11T20:55:47.737841-07:00,1001.8565673828125,10.736207,10736.207 +38936,2025-03-11T20:55:58.463124-07:00,1001.84326171875,10.725283,10725.283 +38937,2025-03-11T20:56:09.183639-07:00,1001.864501953125,10.720515,10720.515 +38938,2025-03-11T20:56:19.916799-07:00,1001.87109375,10.73316,10733.16 +38939,2025-03-11T20:56:30.643662-07:00,1001.8353271484375,10.726863,10726.863 +38940,2025-03-11T20:56:41.367041-07:00,1001.8379516601562,10.723379,10723.379 +38941,2025-03-11T20:56:52.099257-07:00,1001.8565673828125,10.732216,10732.216 +38942,2025-03-11T20:57:02.831636-07:00,1001.84326171875,10.732379,10732.379 +38943,2025-03-11T20:57:13.559630-07:00,1001.8697509765625,10.727994,10727.994 +38944,2025-03-11T20:57:24.288783-07:00,1001.8418579101562,10.729153,10729.153 +38945,2025-03-11T20:57:35.016896-07:00,1001.8604125976562,10.728113,10728.113 +38946,2025-03-11T20:57:45.751832-07:00,1001.8670043945312,10.734936,10734.936 +38947,2025-03-11T20:57:56.481855-07:00,1001.8573608398438,10.730023,10730.023 +38948,2025-03-11T20:58:07.211630-07:00,1001.845458984375,10.729775,10729.775 +38949,2025-03-11T20:58:17.940892-07:00,1001.8735961914062,10.729262,10729.262 +38950,2025-03-11T20:58:28.665753-07:00,1001.8851318359375,10.724861,10724.861 +38951,2025-03-11T20:58:39.400748-07:00,1001.8652954101562,10.734995,10734.995 +38952,2025-03-11T20:58:50.127532-07:00,1001.8387451171875,10.726784,10726.784 +38953,2025-03-11T20:59:00.848633-07:00,1001.8638916015625,10.721101,10721.101 +38954,2025-03-11T20:59:11.586631-07:00,1001.8624877929688,10.737998,10737.998 +38955,2025-03-11T20:59:22.312820-07:00,1001.8837280273438,10.726189,10726.189 +38956,2025-03-11T20:59:33.040832-07:00,1001.85595703125,10.728012,10728.012 +38957,2025-03-11T20:59:43.764837-07:00,1001.86083984375,10.724005,10724.005 +38958,2025-03-11T20:59:54.492739-07:00,1001.87939453125,10.727902,10727.902 +38959,2025-03-11T21:00:05.224637-07:00,1001.8757934570312,10.731898,10731.898 +38960,2025-03-11T21:00:15.948916-07:00,1001.8674926757812,10.724279,10724.279 +38961,2025-03-11T21:00:26.672632-07:00,1001.8890380859375,10.723716,10723.716 +38962,2025-03-11T21:00:37.408633-07:00,1001.8779907226562,10.736001,10736.001 +38963,2025-03-11T21:00:48.130655-07:00,1001.8696899414062,10.722022,10722.022 +38964,2025-03-11T21:00:58.864632-07:00,1001.8651733398438,10.733977,10733.977 +38965,2025-03-11T21:01:09.591707-07:00,1001.8778076171875,10.727075,10727.075 +38966,2025-03-11T21:01:20.319654-07:00,1001.9099731445312,10.727947,10727.947 +38967,2025-03-11T21:01:31.047636-07:00,1001.8679809570312,10.727982,10727.982 +38968,2025-03-11T21:01:41.780631-07:00,1001.9137573242188,10.732995,10732.995 +38969,2025-03-11T21:01:52.499630-07:00,1001.89013671875,10.718999,10718.999 +38970,2025-03-11T21:02:03.227665-07:00,1001.8878784179688,10.728035,10728.035 +38971,2025-03-11T21:02:13.962813-07:00,1001.8936157226562,10.735148,10735.148 +38972,2025-03-11T21:02:24.686673-07:00,1001.9075927734375,10.72386,10723.86 +38973,2025-03-11T21:02:35.418192-07:00,1001.9049072265625,10.731519,10731.519 +38974,2025-03-11T21:02:46.142693-07:00,1001.8858032226562,10.724501,10724.501 +38975,2025-03-11T21:02:56.866632-07:00,1001.882080078125,10.723939,10723.939 +38976,2025-03-11T21:03:07.599042-07:00,1001.8798217773438,10.73241,10732.41 +38977,2025-03-11T21:03:18.326667-07:00,1001.8590087890625,10.727625,10727.625 +38978,2025-03-11T21:03:29.057863-07:00,1001.8583374023438,10.731196,10731.196 +38979,2025-03-11T21:03:39.782843-07:00,1001.8618774414062,10.72498,10724.98 +38980,2025-03-11T21:03:50.519632-07:00,1001.8560180664062,10.736789,10736.789 +38981,2025-03-11T21:04:01.247632-07:00,1001.86474609375,10.728,10728.0 +38982,2025-03-11T21:04:11.976751-07:00,1001.907958984375,10.729119,10729.119 +38983,2025-03-11T21:04:22.705633-07:00,1001.8809204101562,10.728882,10728.882 +38984,2025-03-11T21:04:33.434007-07:00,1001.869873046875,10.728374,10728.374 +38985,2025-03-11T21:04:44.162631-07:00,1001.8587646484375,10.728624,10728.624 +38986,2025-03-11T21:04:54.892635-07:00,1001.8409423828125,10.730004,10730.004 +38987,2025-03-11T21:05:05.623035-07:00,1001.8740844726562,10.7304,10730.4 +38988,2025-03-11T21:05:16.359021-07:00,1001.8775634765625,10.735986,10735.986 +38989,2025-03-11T21:05:27.085637-07:00,1001.833740234375,10.726616,10726.616 +38990,2025-03-11T21:05:37.820854-07:00,1001.8782958984375,10.735217,10735.217 +38991,2025-03-11T21:05:48.542631-07:00,1001.8651733398438,10.721777,10721.777 +38992,2025-03-11T21:05:59.277632-07:00,1001.8954467773438,10.735001,10735.001 +38993,2025-03-11T21:06:10.011632-07:00,1001.855712890625,10.734,10734.0 +38994,2025-03-11T21:06:20.737912-07:00,1001.8526611328125,10.72628,10726.28 +38995,2025-03-11T21:06:31.460629-07:00,1001.8577880859375,10.722717,10722.717 +38996,2025-03-11T21:06:42.196215-07:00,1001.8724975585938,10.735586,10735.586 +38997,2025-03-11T21:06:52.921660-07:00,1001.8759155273438,10.725445,10725.445 +38998,2025-03-11T21:07:03.649838-07:00,1001.8627319335938,10.728178,10728.178 +38999,2025-03-11T21:07:14.378915-07:00,1001.8613891601562,10.729077,10729.077 +39000,2025-03-11T21:07:25.098731-07:00,1001.8613891601562,10.719816,10719.816 +39001,2025-03-11T21:07:35.827798-07:00,1001.8428955078125,10.729067,10729.067 +39002,2025-03-11T21:07:46.558628-07:00,1001.841552734375,10.73083,10730.83 +39003,2025-03-11T21:07:57.281631-07:00,1001.8348388671875,10.723003,10723.003 +39004,2025-03-11T21:08:08.015130-07:00,1001.841552734375,10.733499,10733.499 +39005,2025-03-11T21:08:18.737626-07:00,1001.8428955078125,10.722496,10722.496 +39006,2025-03-11T21:08:29.458063-07:00,1001.84814453125,10.720437,10720.437 +39007,2025-03-11T21:08:40.189634-07:00,1001.8362426757812,10.731571,10731.571 +39008,2025-03-11T21:08:50.918656-07:00,1001.8150024414062,10.729022,10729.022 +39009,2025-03-11T21:09:01.643656-07:00,1001.8314208984375,10.725,10725.0 +39010,2025-03-11T21:09:12.379854-07:00,1001.795166015625,10.736198,10736.198 +39011,2025-03-11T21:09:23.105852-07:00,1001.7784423828125,10.725998,10725.998 +39012,2025-03-11T21:09:33.825630-07:00,1001.7982788085938,10.719778,10719.778 +39013,2025-03-11T21:09:44.553846-07:00,1001.8407592773438,10.728216,10728.216 +39014,2025-03-11T21:09:55.280656-07:00,1001.8076782226562,10.72681,10726.81 +39015,2025-03-11T21:10:06.014891-07:00,1001.7679443359375,10.734235,10734.235 +39016,2025-03-11T21:10:16.740852-07:00,1001.7974853515625,10.725961,10725.961 +39017,2025-03-11T21:10:27.465629-07:00,1001.8160400390625,10.724777,10724.777 +39018,2025-03-11T21:10:38.186273-07:00,1001.8121948242188,10.720644,10720.644 +39019,2025-03-11T21:10:48.911940-07:00,1001.8072509765625,10.725667,10725.667 +39020,2025-03-11T21:10:59.645696-07:00,1001.816650390625,10.733756,10733.756 +39021,2025-03-11T21:11:10.372427-07:00,1001.7901611328125,10.726731,10726.731 +39022,2025-03-11T21:11:21.096839-07:00,1001.7849731445312,10.724412,10724.412 +39023,2025-03-11T21:11:31.833633-07:00,1001.8048706054688,10.736794,10736.794 +39024,2025-03-11T21:11:42.559797-07:00,1001.7835693359375,10.726164,10726.164 +39025,2025-03-11T21:11:53.285628-07:00,1001.8131103515625,10.725831,10725.831 +39026,2025-03-11T21:12:04.015067-07:00,1001.7849731445312,10.729439,10729.439 +39027,2025-03-11T21:12:14.749820-07:00,1001.794677734375,10.734753,10734.753 +39028,2025-03-11T21:12:25.469631-07:00,1001.758056640625,10.719811,10719.811 +39029,2025-03-11T21:12:36.201069-07:00,1001.7991333007812,10.731438,10731.438 +39030,2025-03-11T21:12:46.931792-07:00,1001.7594604492188,10.730723,10730.723 +39031,2025-03-11T21:12:57.664631-07:00,1001.7675170898438,10.732839,10732.839 +39032,2025-03-11T21:13:08.391965-07:00,1001.78515625,10.727334,10727.334 +39033,2025-03-11T21:13:19.119828-07:00,1001.7882690429688,10.727863,10727.863 +39034,2025-03-11T21:13:29.848630-07:00,1001.8109130859375,10.728802,10728.802 +39035,2025-03-11T21:13:40.582649-07:00,1001.7941284179688,10.734019,10734.019 +39036,2025-03-11T21:13:51.309661-07:00,1001.8087768554688,10.727012,10727.012 +39037,2025-03-11T21:14:02.048113-07:00,1001.798583984375,10.738452,10738.452 +39038,2025-03-11T21:14:12.782042-07:00,1001.7933349609375,10.733929,10733.929 +39039,2025-03-11T21:14:23.519700-07:00,1001.7765502929688,10.737658,10737.658 +39040,2025-03-11T21:14:34.252831-07:00,1001.77587890625,10.733131,10733.131 +39041,2025-03-11T21:14:44.983158-07:00,1001.7723388671875,10.730327,10730.327 +39042,2025-03-11T21:14:55.712704-07:00,1001.7980346679688,10.729546,10729.546 +39043,2025-03-11T21:15:06.450430-07:00,1001.7892456054688,10.737726,10737.726 +39044,2025-03-11T21:15:17.181829-07:00,1001.7885131835938,10.731399,10731.399 +39045,2025-03-11T21:15:27.915922-07:00,1001.771728515625,10.734093,10734.093 +39046,2025-03-11T21:15:38.656820-07:00,1001.7842407226562,10.740898,10740.898 +39047,2025-03-11T21:15:49.388921-07:00,1001.7675170898438,10.732101,10732.101 +39048,2025-03-11T21:16:00.126630-07:00,1001.782958984375,10.737709,10737.709 +39049,2025-03-11T21:16:10.860982-07:00,1001.7808837890625,10.734352,10734.352 +39050,2025-03-11T21:16:21.583817-07:00,1001.7557983398438,10.722835,10722.835 +39051,2025-03-11T21:16:32.322719-07:00,1001.7553100585938,10.738902,10738.902 +39052,2025-03-11T21:16:43.053623-07:00,1001.7584228515625,10.730904,10730.904 +39053,2025-03-11T21:16:53.777070-07:00,1001.7576293945312,10.723447,10723.447 +39054,2025-03-11T21:17:04.507818-07:00,1001.73779296875,10.730748,10730.748 +39055,2025-03-11T21:17:15.241725-07:00,1001.7700805664062,10.733907,10733.907 +39056,2025-03-11T21:17:25.967823-07:00,1001.71044921875,10.726098,10726.098 +39057,2025-03-11T21:17:36.703893-07:00,1001.7515869140625,10.73607,10736.07 +39058,2025-03-11T21:17:47.428632-07:00,1001.7334594726562,10.724739,10724.739 +39059,2025-03-11T21:17:58.163336-07:00,1001.748046875,10.734704,10734.704 +39060,2025-03-11T21:18:08.896628-07:00,1001.7510986328125,10.733292,10733.292 +39061,2025-03-11T21:18:19.626863-07:00,1001.72607421875,10.730235,10730.235 +39062,2025-03-11T21:18:30.356936-07:00,1001.732666015625,10.730073,10730.073 +39063,2025-03-11T21:18:41.086721-07:00,1001.7437744140625,10.729785,10729.785 +39064,2025-03-11T21:18:51.817891-07:00,1001.7865600585938,10.73117,10731.17 +39065,2025-03-11T21:19:02.545361-07:00,1001.7203369140625,10.72747,10727.47 +39066,2025-03-11T21:19:13.273633-07:00,1001.7446899414062,10.728272,10728.272 +39067,2025-03-11T21:19:24.009836-07:00,1001.7429809570312,10.736203,10736.203 +39068,2025-03-11T21:19:34.732813-07:00,1001.752685546875,10.722977,10722.977 +39069,2025-03-11T21:19:45.469660-07:00,1001.7474365234375,10.736847,10736.847 +39070,2025-03-11T21:19:56.207809-07:00,1001.7327880859375,10.738149,10738.149 +39071,2025-03-11T21:20:06.939662-07:00,1001.7076416015625,10.731853,10731.853 +39072,2025-03-11T21:20:17.676854-07:00,1001.7011108398438,10.737192,10737.192 +39073,2025-03-11T21:20:28.399658-07:00,1001.7223510742188,10.722804,10722.804 +39074,2025-03-11T21:20:39.132846-07:00,1001.7173461914062,10.733188,10733.188 +39075,2025-03-11T21:20:49.862771-07:00,1001.7453002929688,10.729925,10729.925 +39076,2025-03-11T21:21:00.598680-07:00,1001.7453002929688,10.735909,10735.909 +39077,2025-03-11T21:21:11.327648-07:00,1001.7306518554688,10.728968,10728.968 +39078,2025-03-11T21:21:22.058897-07:00,1001.7267456054688,10.731249,10731.249 +39079,2025-03-11T21:21:32.788838-07:00,1001.6989135742188,10.729941,10729.941 +39080,2025-03-11T21:21:43.520225-07:00,1001.7100219726562,10.731387,10731.387 +39081,2025-03-11T21:21:54.255831-07:00,1001.7086181640625,10.735606,10735.606 +39082,2025-03-11T21:22:04.990820-07:00,1001.7298583984375,10.734989,10734.989 +39083,2025-03-11T21:22:15.729411-07:00,1001.7232666015625,10.738591,10738.591 +39084,2025-03-11T21:22:26.462630-07:00,1001.7365112304688,10.733219,10733.219 +39085,2025-03-11T21:22:37.189211-07:00,1001.7232666015625,10.726581,10726.581 +39086,2025-03-11T21:22:47.911828-07:00,1001.71142578125,10.722617,10722.617 +39087,2025-03-11T21:22:58.646630-07:00,1001.71142578125,10.734802,10734.802 +39088,2025-03-11T21:23:09.382634-07:00,1001.7542114257812,10.736004,10736.004 +39089,2025-03-11T21:23:20.106627-07:00,1001.7444458007812,10.723993,10723.993 +39090,2025-03-11T21:23:30.843680-07:00,1001.7489013671875,10.737053,10737.053 +39091,2025-03-11T21:23:41.578813-07:00,1001.7542114257812,10.735133,10735.133 +39092,2025-03-11T21:23:52.318263-07:00,1001.740966796875,10.73945,10739.45 +39093,2025-03-11T21:24:03.050625-07:00,1001.7718505859375,10.732362,10732.362 +39094,2025-03-11T21:24:13.777801-07:00,1001.7666625976562,10.727176,10727.176 +39095,2025-03-11T21:24:24.514848-07:00,1001.7520141601562,10.737047,10737.047 +39096,2025-03-11T21:24:35.243657-07:00,1001.75341796875,10.728809,10728.809 +39097,2025-03-11T21:24:45.978632-07:00,1001.7614135742188,10.734975,10734.975 +39098,2025-03-11T21:24:56.722638-07:00,1001.7401733398438,10.744006,10744.006 +39099,2025-03-11T21:25:07.455064-07:00,1001.7415771484375,10.732426,10732.426 +39100,2025-03-11T21:25:18.197425-07:00,1001.75341796875,10.742361,10742.361 +39101,2025-03-11T21:25:28.929629-07:00,1001.751220703125,10.732204,10732.204 +39102,2025-03-11T21:25:39.668630-07:00,1001.751220703125,10.739001,10739.001 +39103,2025-03-11T21:25:50.405631-07:00,1001.7725219726562,10.737001,10737.001 +39104,2025-03-11T21:26:01.137651-07:00,1001.7711181640625,10.73202,10732.02 +39105,2025-03-11T21:26:11.875008-07:00,1001.7988891601562,10.737357,10737.357 +39106,2025-03-11T21:26:22.612627-07:00,1001.8005981445312,10.737619,10737.619 +39107,2025-03-11T21:26:33.354632-07:00,1001.7592163085938,10.742005,10742.005 +39108,2025-03-11T21:26:44.081007-07:00,1001.7542724609375,10.726375,10726.375 +39109,2025-03-11T21:26:54.820810-07:00,1001.7675170898438,10.739803,10739.803 +39110,2025-03-11T21:27:05.554826-07:00,1001.7755737304688,10.734016,10734.016 +39111,2025-03-11T21:27:16.292663-07:00,1001.7901611328125,10.737837,10737.837 +39112,2025-03-11T21:27:27.015876-07:00,1001.7865600585938,10.723213,10723.213 +39113,2025-03-11T21:27:37.752833-07:00,1001.80517578125,10.736957,10736.957 +39114,2025-03-11T21:27:48.486658-07:00,1001.8078002929688,10.733825,10733.825 +39115,2025-03-11T21:27:59.219628-07:00,1001.8064575195312,10.73297,10732.97 +39116,2025-03-11T21:28:09.953887-07:00,1001.8109130859375,10.734259,10734.259 +39117,2025-03-11T21:28:20.685961-07:00,1001.7896728515625,10.732074,10732.074 +39118,2025-03-11T21:28:31.419630-07:00,1001.8057250976562,10.733669,10733.669 +39119,2025-03-11T21:28:42.155790-07:00,1001.807373046875,10.73616,10736.16 +39120,2025-03-11T21:28:52.889923-07:00,1001.82861328125,10.734133,10734.133 +39121,2025-03-11T21:29:03.629989-07:00,1001.8048706054688,10.740066,10740.066 +39122,2025-03-11T21:29:14.363631-07:00,1001.7999877929688,10.733642,10733.642 +39123,2025-03-11T21:29:25.103019-07:00,1001.8226318359375,10.739388,10739.388 +39124,2025-03-11T21:29:35.839831-07:00,1001.8226318359375,10.736812,10736.812 +39125,2025-03-11T21:29:46.575808-07:00,1001.8057861328125,10.735977,10735.977 +39126,2025-03-11T21:29:57.310631-07:00,1001.8270263671875,10.734823,10734.823 +39127,2025-03-11T21:30:08.054628-07:00,1001.800537109375,10.743997,10743.997 +39128,2025-03-11T21:30:18.785658-07:00,1001.7837524414062,10.73103,10731.03 +39129,2025-03-11T21:30:29.524701-07:00,1001.83984375,10.739043,10739.043 +39130,2025-03-11T21:30:40.267706-07:00,1001.8492431640625,10.743005,10743.005 +39131,2025-03-11T21:30:50.996776-07:00,1001.8390502929688,10.72907,10729.07 +39132,2025-03-11T21:31:01.740230-07:00,1001.80419921875,10.743454,10743.454 +39133,2025-03-11T21:31:12.475649-07:00,1001.8125,10.735419,10735.419 +39134,2025-03-11T21:31:23.214629-07:00,1001.8005981445312,10.73898,10738.98 +39135,2025-03-11T21:31:33.942937-07:00,1001.8037719726562,10.728308,10728.308 +39136,2025-03-11T21:31:44.682659-07:00,1001.7706298828125,10.739722,10739.722 +39137,2025-03-11T21:31:55.425636-07:00,1001.7932739257812,10.742977,10742.977 +39138,2025-03-11T21:32:06.169630-07:00,1001.7918701171875,10.743994,10743.994 +39139,2025-03-11T21:32:16.908633-07:00,1001.830810546875,10.739003,10739.003 +39140,2025-03-11T21:32:27.645629-07:00,1001.7962646484375,10.736996,10736.996 +39141,2025-03-11T21:32:38.382830-07:00,1001.8206176757812,10.737201,10737.201 +39142,2025-03-11T21:32:49.120656-07:00,1001.82861328125,10.737826,10737.826 +39143,2025-03-11T21:32:59.856702-07:00,1001.8236694335938,10.736046,10736.046 +39144,2025-03-11T21:33:10.597904-07:00,1001.8449096679688,10.741202,10741.202 +39145,2025-03-11T21:33:21.339859-07:00,1001.7932739257812,10.741955,10741.955 +39146,2025-03-11T21:33:32.073773-07:00,1001.84765625,10.733914,10733.914 +39147,2025-03-11T21:33:42.814819-07:00,1001.841064453125,10.741046,10741.046 +39148,2025-03-11T21:33:53.558148-07:00,1001.8046875,10.743329,10743.329 +39149,2025-03-11T21:34:04.296632-07:00,1001.829833984375,10.738484,10738.484 +39150,2025-03-11T21:34:15.030073-07:00,1001.829833984375,10.733441,10733.441 +39151,2025-03-11T21:34:25.761006-07:00,1001.8179931640625,10.730933,10730.933 +39152,2025-03-11T21:34:36.502021-07:00,1001.8457641601562,10.741015,10741.015 +39153,2025-03-11T21:34:47.244123-07:00,1001.8590698242188,10.742102,10742.102 +39154,2025-03-11T21:34:57.980876-07:00,1001.825927734375,10.736753,10736.753 +39155,2025-03-11T21:35:08.712654-07:00,1001.825927734375,10.731778,10731.778 +39156,2025-03-11T21:35:19.447039-07:00,1001.8409423828125,10.734385,10734.385 +39157,2025-03-11T21:35:30.194164-07:00,1001.7927856445312,10.747125,10747.125 +39158,2025-03-11T21:35:40.924633-07:00,1001.8060913085938,10.730469,10730.469 +39159,2025-03-11T21:35:51.665631-07:00,1001.7879028320312,10.740998,10740.998 +39160,2025-03-11T21:36:02.406842-07:00,1001.7597045898438,10.741211,10741.211 +39161,2025-03-11T21:36:13.146635-07:00,1001.7879028320312,10.739793,10739.793 +39162,2025-03-11T21:36:23.877825-07:00,1001.774658203125,10.73119,10731.19 +39163,2025-03-11T21:36:34.620820-07:00,1001.756103515625,10.742995,10742.995 +39164,2025-03-11T21:36:45.358085-07:00,1001.7840576171875,10.737265,10737.265 +39165,2025-03-11T21:36:56.097632-07:00,1001.7547607421875,10.739547,10739.547 +39166,2025-03-11T21:37:06.838839-07:00,1001.7525634765625,10.741207,10741.207 +39167,2025-03-11T21:37:17.580645-07:00,1001.7178344726562,10.741806,10741.806 +39168,2025-03-11T21:37:28.318684-07:00,1001.7525634765625,10.738039,10738.039 +39169,2025-03-11T21:37:39.065431-07:00,1001.7509155273438,10.746747,10746.747 +39170,2025-03-11T21:37:49.805144-07:00,1001.8150024414062,10.739713,10739.713 +39171,2025-03-11T21:38:00.537634-07:00,1001.7884521484375,10.73249,10732.49 +39172,2025-03-11T21:38:11.286632-07:00,1001.787109375,10.748998,10748.998 +39173,2025-03-11T21:38:22.019683-07:00,1001.7951049804688,10.733051,10733.051 +39174,2025-03-11T21:38:32.755646-07:00,1001.8099975585938,10.735963,10735.963 +39175,2025-03-11T21:38:43.495809-07:00,1001.8445434570312,10.740163,10740.163 +39176,2025-03-11T21:38:54.236830-07:00,1001.8298950195312,10.741021,10741.021 +39177,2025-03-11T21:39:04.982771-07:00,1001.8180541992188,10.745941,10745.941 +39178,2025-03-11T21:39:15.718686-07:00,1001.8326416015625,10.735915,10735.915 +39179,2025-03-11T21:39:26.459135-07:00,1001.8326416015625,10.740449,10740.449 +39180,2025-03-11T21:39:37.203632-07:00,1001.8517456054688,10.744497,10744.497 +39181,2025-03-11T21:39:47.950662-07:00,1001.8548583984375,10.74703,10747.03 +39182,2025-03-11T21:39:58.689193-07:00,1001.864501953125,10.738531,10738.531 +39183,2025-03-11T21:40:09.436668-07:00,1001.8790893554688,10.747475,10747.475 +39184,2025-03-11T21:40:20.181847-07:00,1001.9232788085938,10.745179,10745.179 +39185,2025-03-11T21:40:30.920880-07:00,1001.864990234375,10.739033,10739.033 +39186,2025-03-11T21:40:41.665044-07:00,1001.8733520507812,10.744164,10744.164 +39187,2025-03-11T21:40:52.400633-07:00,1001.857666015625,10.735589,10735.589 +39188,2025-03-11T21:41:03.139832-07:00,1001.8443603515625,10.739199,10739.199 +39189,2025-03-11T21:41:13.886700-07:00,1001.8209228515625,10.746868,10746.868 +39190,2025-03-11T21:41:24.624628-07:00,1001.837158203125,10.737928,10737.928 +39191,2025-03-11T21:41:35.363666-07:00,1001.8284301757812,10.739038,10739.038 +39192,2025-03-11T21:41:46.112634-07:00,1001.843017578125,10.748968,10748.968 +39193,2025-03-11T21:41:56.843816-07:00,1001.8394775390625,10.731182,10731.182 +39194,2025-03-11T21:42:07.595819-07:00,1001.8673706054688,10.752003,10752.003 +39195,2025-03-11T21:42:18.335998-07:00,1001.8306274414062,10.740179,10740.179 +39196,2025-03-11T21:42:29.066751-07:00,1001.8173217773438,10.730753,10730.753 +39197,2025-03-11T21:42:39.807636-07:00,1001.8121948242188,10.740885,10740.885 +39198,2025-03-11T21:42:50.556692-07:00,1001.8267211914062,10.749056,10749.056 +39199,2025-03-11T21:43:01.285867-07:00,1001.8347778320312,10.729175,10729.175 +39200,2025-03-11T21:43:12.034285-07:00,1001.821533203125,10.748418,10748.418 +39201,2025-03-11T21:43:22.766726-07:00,1001.8165893554688,10.732441,10732.441 +39202,2025-03-11T21:43:33.501837-07:00,1001.8046875,10.735111,10735.111 +39203,2025-03-11T21:43:44.241634-07:00,1001.8032836914062,10.739797,10739.797 +39204,2025-03-11T21:43:54.974377-07:00,1001.8082885742188,10.732743,10732.743 +39205,2025-03-11T21:44:05.719877-07:00,1001.8148193359375,10.7455,10745.5 +39206,2025-03-11T21:44:16.450280-07:00,1001.8082885742188,10.730403,10730.403 +39207,2025-03-11T21:44:27.190631-07:00,1001.8082885742188,10.740351,10740.351 +39208,2025-03-11T21:44:37.931832-07:00,1001.806884765625,10.741201,10741.201 +39209,2025-03-11T21:44:48.665834-07:00,1001.7892456054688,10.734002,10734.002 +39210,2025-03-11T21:44:59.408071-07:00,1001.810791015625,10.742237,10742.237 +39211,2025-03-11T21:45:10.144134-07:00,1001.7892456054688,10.736063,10736.063 +39212,2025-03-11T21:45:20.880692-07:00,1001.79443359375,10.736558,10736.558 +39213,2025-03-11T21:45:31.612636-07:00,1001.8046875,10.731944,10731.944 +39214,2025-03-11T21:45:42.347142-07:00,1001.83642578125,10.734506,10734.506 +39215,2025-03-11T21:45:53.084830-07:00,1001.82177734375,10.737688,10737.688 +39216,2025-03-11T21:46:03.825657-07:00,1001.81201171875,10.740827,10740.827 +39217,2025-03-11T21:46:14.563732-07:00,1001.7943725585938,10.738075,10738.075 +39218,2025-03-11T21:46:25.297640-07:00,1001.8195190429688,10.733908,10733.908 +39219,2025-03-11T21:46:36.036815-07:00,1001.8178100585938,10.739175,10739.175 +39220,2025-03-11T21:46:46.769699-07:00,1001.8443603515625,10.732884,10732.884 +39221,2025-03-11T21:46:57.510698-07:00,1001.8760986328125,10.740999,10740.999 +39222,2025-03-11T21:47:08.248633-07:00,1001.8782958984375,10.737935,10737.935 +39223,2025-03-11T21:47:18.986626-07:00,1001.8106079101562,10.737993,10737.993 +39224,2025-03-11T21:47:29.719671-07:00,1001.8292236328125,10.733045,10733.045 +39225,2025-03-11T21:47:40.463834-07:00,1001.8407592773438,10.744163,10744.163 +39226,2025-03-11T21:47:51.197708-07:00,1001.8512573242188,10.733874,10733.874 +39227,2025-03-11T21:48:01.938701-07:00,1001.8548583984375,10.740993,10740.993 +39228,2025-03-11T21:48:12.668627-07:00,1001.8534545898438,10.729926,10729.926 +39229,2025-03-11T21:48:23.409023-07:00,1001.850341796875,10.740396,10740.396 +39230,2025-03-11T21:48:34.142943-07:00,1001.8848266601562,10.73392,10733.92 +39231,2025-03-11T21:48:44.882832-07:00,1001.8643798828125,10.739889,10739.889 +39232,2025-03-11T21:48:55.622637-07:00,1001.837890625,10.739805,10739.805 +39233,2025-03-11T21:49:06.359874-07:00,1001.8895263671875,10.737237,10737.237 +39234,2025-03-11T21:49:17.098632-07:00,1001.8798217773438,10.738758,10738.758 +39235,2025-03-11T21:49:27.834038-07:00,1001.939453125,10.735406,10735.406 +39236,2025-03-11T21:49:38.565630-07:00,1001.8687744140625,10.731592,10731.592 +39237,2025-03-11T21:49:49.308845-07:00,1001.8524780273438,10.743215,10743.215 +39238,2025-03-11T21:50:00.041641-07:00,1001.8922119140625,10.732796,10732.796 +39239,2025-03-11T21:50:10.779647-07:00,1001.9173583984375,10.738006,10738.006 +39240,2025-03-11T21:50:21.512776-07:00,1001.876220703125,10.733129,10733.129 +39241,2025-03-11T21:50:32.245631-07:00,1001.876220703125,10.732855,10732.855 +39242,2025-03-11T21:50:42.982628-07:00,1001.8648681640625,10.736997,10736.997 +39243,2025-03-11T21:50:53.725631-07:00,1001.919189453125,10.743003,10743.003 +39244,2025-03-11T21:51:04.452556-07:00,1001.889892578125,10.726925,10726.925 +39245,2025-03-11T21:51:15.190633-07:00,1001.9230346679688,10.738077,10738.077 +39246,2025-03-11T21:51:25.929631-07:00,1001.9545288085938,10.738998,10738.998 +39247,2025-03-11T21:51:36.657935-07:00,1001.9199829101562,10.728304,10728.304 +39248,2025-03-11T21:51:47.396817-07:00,1001.9464721679688,10.738882,10738.882 +39249,2025-03-11T21:51:58.139267-07:00,1001.9185791015625,10.74245,10742.45 +39250,2025-03-11T21:52:08.873630-07:00,1001.968505859375,10.734363,10734.363 +39251,2025-03-11T21:52:19.610632-07:00,1001.9522094726562,10.737002,10737.002 +39252,2025-03-11T21:52:30.343642-07:00,1001.9176635742188,10.73301,10733.01 +39253,2025-03-11T21:52:41.079893-07:00,1001.90576171875,10.736251,10736.251 +39254,2025-03-11T21:52:51.823656-07:00,1001.9176635742188,10.743763,10743.763 +39255,2025-03-11T21:53:02.558704-07:00,1001.9243774414062,10.735048,10735.048 +39256,2025-03-11T21:53:13.287895-07:00,1001.936279296875,10.729191,10729.191 +39257,2025-03-11T21:53:24.033817-07:00,1001.9561157226562,10.745922,10745.922 +39258,2025-03-11T21:53:34.762626-07:00,1001.9693603515625,10.728809,10728.809 +39259,2025-03-11T21:53:45.568964-07:00,1001.9014282226562,10.806338,10806.338 +39260,2025-03-11T21:53:56.312224-07:00,1001.9000244140625,10.74326,10743.26 +39261,2025-03-11T21:54:07.048205-07:00,1001.9251708984375,10.735981,10735.981 +39262,2025-03-11T21:54:17.785206-07:00,1001.9464111328125,10.737001,10737.001 +39263,2025-03-11T21:54:28.524714-07:00,1001.9265747070312,10.739508,10739.508 +39264,2025-03-11T21:54:39.252204-07:00,1001.9432983398438,10.72749,10727.49 +39265,2025-03-11T21:54:49.991447-07:00,1001.9486083984375,10.739243,10739.243 +39266,2025-03-11T21:55:00.725376-07:00,1001.98828125,10.733929,10733.929 +39267,2025-03-11T21:55:11.460383-07:00,1001.9472045898438,10.735007,10735.007 +39268,2025-03-11T21:55:22.204936-07:00,1001.967041015625,10.744553,10744.553 +39269,2025-03-11T21:55:32.938560-07:00,1001.94580078125,10.733624,10733.624 +39270,2025-03-11T21:55:43.677205-07:00,1001.9921875,10.738645,10738.645 +39271,2025-03-11T21:55:54.407234-07:00,1001.9706420898438,10.730029,10730.029 +39272,2025-03-11T21:56:05.143297-07:00,1001.9508056640625,10.736063,10736.063 +39273,2025-03-11T21:56:15.885520-07:00,1001.9612426757812,10.742223,10742.223 +39274,2025-03-11T21:56:26.626270-07:00,1001.9810791015625,10.74075,10740.75 +39275,2025-03-11T21:56:37.360204-07:00,1001.9329833984375,10.733934,10733.934 +39276,2025-03-11T21:56:48.094404-07:00,1001.966064453125,10.7342,10734.2 +39277,2025-03-11T21:56:58.840665-07:00,1001.9581298828125,10.746261,10746.261 +39278,2025-03-11T21:57:09.570770-07:00,1001.9404907226562,10.730105,10730.105 +39279,2025-03-11T21:57:20.308298-07:00,1001.9779663085938,10.737528,10737.528 +39280,2025-03-11T21:57:31.049204-07:00,1001.9368896484375,10.740906,10740.906 +39281,2025-03-11T21:57:41.789576-07:00,1001.9766235351562,10.740372,10740.372 +39282,2025-03-11T21:57:52.526375-07:00,1001.9435424804688,10.736799,10736.799 +39283,2025-03-11T21:58:03.264344-07:00,1001.9854736328125,10.737969,10737.969 +39284,2025-03-11T21:58:13.993202-07:00,1001.96630859375,10.728858,10728.858 +39285,2025-03-11T21:58:24.731431-07:00,1001.9786987304688,10.738229,10738.229 +39286,2025-03-11T21:58:35.468972-07:00,1002.0491943359375,10.737541,10737.541 +39287,2025-03-11T21:58:46.197484-07:00,1001.9176025390625,10.728512,10728.512 +39288,2025-03-11T21:58:56.933404-07:00,1001.9849853515625,10.73592,10735.92 +39289,2025-03-11T21:59:07.663676-07:00,1002.0175170898438,10.730272,10730.272 +39290,2025-03-11T21:59:18.394727-07:00,1001.9974975585938,10.731051,10731.051 +39291,2025-03-11T21:59:29.137223-07:00,1002.0282592773438,10.742496,10742.496 +39292,2025-03-11T21:59:39.867529-07:00,1001.98486328125,10.730306,10730.306 +39293,2025-03-11T21:59:50.606365-07:00,1002.0068969726562,10.738836,10738.836 +39294,2025-03-11T22:00:01.350739-07:00,1002.037353515625,10.744374,10744.374 +39295,2025-03-11T22:00:12.082507-07:00,1002.012939453125,10.731768,10731.768 +39296,2025-03-11T22:00:22.826259-07:00,1002.126220703125,10.743752,10743.752 +39297,2025-03-11T22:00:33.566206-07:00,1002.0806884765625,10.739947,10739.947 +39298,2025-03-11T22:00:44.314206-07:00,1001.9306030273438,10.748,10748.0 +39299,2025-03-11T22:00:55.047268-07:00,1002.0187377929688,10.733062,10733.062 +39300,2025-03-11T22:01:05.796198-07:00,1001.9857177734375,10.74893,10748.93 +39301,2025-03-11T22:01:16.528416-07:00,1001.974609375,10.732218,10732.218 +39302,2025-03-11T22:01:27.271387-07:00,1001.9812622070312,10.742971,10742.971 +39303,2025-03-11T22:01:38.015417-07:00,1001.9996948242188,10.74403,10744.03 +39304,2025-03-11T22:01:48.747397-07:00,1001.9996948242188,10.73198,10731.98 +39305,2025-03-11T22:01:59.491204-07:00,1002.06591796875,10.743807,10743.807 +39306,2025-03-11T22:02:10.226210-07:00,1001.99658203125,10.735006,10735.006 +39307,2025-03-11T22:02:20.971324-07:00,1001.98779296875,10.745114,10745.114 +39308,2025-03-11T22:02:31.710461-07:00,1001.9979858398438,10.739137,10739.137 +39309,2025-03-11T22:02:42.445723-07:00,1002.01123046875,10.735262,10735.262 +39310,2025-03-11T22:02:53.192083-07:00,1001.9944458007812,10.74636,10746.36 +39311,2025-03-11T22:03:03.933352-07:00,1002.0076293945312,10.741269,10741.269 +39312,2025-03-11T22:03:14.667204-07:00,1002.0156860351562,10.733852,10733.852 +39313,2025-03-11T22:03:25.407206-07:00,1001.982666015625,10.740002,10740.002 +39314,2025-03-11T22:03:36.146206-07:00,1001.9974975585938,10.739,10739.0 +39315,2025-03-11T22:03:46.881397-07:00,1001.9974975585938,10.735191,10735.191 +39316,2025-03-11T22:03:57.627526-07:00,1002.0254516601562,10.746129,10746.129 +39317,2025-03-11T22:04:08.369445-07:00,1002.0232543945312,10.741919,10741.919 +39318,2025-03-11T22:04:19.109203-07:00,1002.041748046875,10.739758,10739.758 +39319,2025-03-11T22:04:29.844605-07:00,1002.010009765625,10.735402,10735.402 +39320,2025-03-11T22:04:40.588319-07:00,1002.0459594726562,10.743714,10743.714 +39321,2025-03-11T22:04:51.324251-07:00,1002.0343627929688,10.735932,10735.932 +39322,2025-03-11T22:05:02.071272-07:00,1002.0570068359375,10.747021,10747.021 +39323,2025-03-11T22:05:12.805203-07:00,1002.025634765625,10.733931,10733.931 +39324,2025-03-11T22:05:23.541202-07:00,1002.025634765625,10.735999,10735.999 +39325,2025-03-11T22:05:34.290259-07:00,1002.06982421875,10.749057,10749.057 +39326,2025-03-11T22:05:45.020019-07:00,1002.091064453125,10.72976,10729.76 +39327,2025-03-11T22:05:55.760209-07:00,1002.063232421875,10.74019,10740.19 +39328,2025-03-11T22:06:06.499411-07:00,1002.0857543945312,10.739202,10739.202 +39329,2025-03-11T22:06:17.243065-07:00,1002.0809326171875,10.743654,10743.654 +39330,2025-03-11T22:06:27.983273-07:00,1002.0477905273438,10.740208,10740.208 +39331,2025-03-11T22:06:38.724430-07:00,1002.0787353515625,10.741157,10741.157 +39332,2025-03-11T22:06:49.458206-07:00,1002.09033203125,10.733776,10733.776 +39333,2025-03-11T22:07:00.206576-07:00,1002.105224609375,10.74837,10748.37 +39334,2025-03-11T22:07:10.944417-07:00,1002.0787353515625,10.737841,10737.841 +39335,2025-03-11T22:07:21.674274-07:00,1002.1317138671875,10.729857,10729.857 +39336,2025-03-11T22:07:32.412203-07:00,1002.1079711914062,10.737929,10737.929 +39337,2025-03-11T22:07:43.152206-07:00,1002.0801391601562,10.740003,10740.003 +39338,2025-03-11T22:07:53.889238-07:00,1002.14111328125,10.737032,10737.032 +39339,2025-03-11T22:08:04.618383-07:00,1002.134521484375,10.729145,10729.145 +39340,2025-03-11T22:08:15.353203-07:00,1002.088134765625,10.73482,10734.82 +39341,2025-03-11T22:08:26.089277-07:00,1002.1160278320312,10.736074,10736.074 +39342,2025-03-11T22:08:36.831288-07:00,1002.1226806640625,10.742011,10742.011 +39343,2025-03-11T22:08:47.563399-07:00,1002.1459350585938,10.732111,10732.111 +39344,2025-03-11T22:08:58.308386-07:00,1002.1226806640625,10.744987,10744.987 +39345,2025-03-11T22:09:09.046203-07:00,1002.1226806640625,10.737817,10737.817 +39346,2025-03-11T22:09:19.777204-07:00,1002.1045532226562,10.731001,10731.001 +39347,2025-03-11T22:09:30.519244-07:00,1002.165771484375,10.74204,10742.04 +39348,2025-03-11T22:09:41.251373-07:00,1002.1972045898438,10.732129,10732.129 +39349,2025-03-11T22:09:51.996727-07:00,1002.1591186523438,10.745354,10745.354 +39350,2025-03-11T22:10:02.732228-07:00,1002.1473388671875,10.735501,10735.501 +39351,2025-03-11T22:10:13.466323-07:00,1002.165771484375,10.734095,10734.095 +39352,2025-03-11T22:10:24.205321-07:00,1002.17236328125,10.738998,10738.998 +39353,2025-03-11T22:10:34.941207-07:00,1002.0845947265625,10.735886,10735.886 +39354,2025-03-11T22:10:45.676725-07:00,1002.1009521484375,10.735518,10735.518 +39355,2025-03-11T22:10:56.415206-07:00,1002.1605224609375,10.738481,10738.481 +39356,2025-03-11T22:11:07.159198-07:00,1002.1671752929688,10.743992,10743.992 +39357,2025-03-11T22:11:17.888239-07:00,1002.1605224609375,10.729041,10729.041 +39358,2025-03-11T22:11:28.631704-07:00,1002.1671752929688,10.743465,10743.465 +39359,2025-03-11T22:11:39.368420-07:00,1002.165771484375,10.736716,10736.716 +39360,2025-03-11T22:11:50.098206-07:00,1002.16357421875,10.729786,10729.786 +39361,2025-03-11T22:12:00.835273-07:00,1002.1981201171875,10.737067,10737.067 +39362,2025-03-11T22:12:11.580504-07:00,1002.1799926757812,10.745231,10745.231 +39363,2025-03-11T22:12:22.315433-07:00,1002.1931762695312,10.734929,10734.929 +39364,2025-03-11T22:12:33.059939-07:00,1002.2262573242188,10.744506,10744.506 +39365,2025-03-11T22:12:43.797827-07:00,1002.2224731445312,10.737888,10737.888 +39366,2025-03-11T22:12:54.531272-07:00,1002.2042846679688,10.733445,10733.445 +39367,2025-03-11T22:13:05.269262-07:00,1002.1911010742188,10.73799,10737.99 +39368,2025-03-11T22:13:15.997372-07:00,1002.2349243164062,10.72811,10728.11 +39369,2025-03-11T22:13:26.741373-07:00,1002.2777099609375,10.744001,10744.001 +39370,2025-03-11T22:13:37.474210-07:00,1002.20703125,10.732837,10732.837 +39371,2025-03-11T22:13:48.205409-07:00,1002.2034912109375,10.731199,10731.199 +39372,2025-03-11T22:13:58.948394-07:00,1002.2115478515625,10.742985,10742.985 +39373,2025-03-11T22:14:09.680619-07:00,1002.2195434570312,10.732225,10732.225 +39374,2025-03-11T22:14:20.415359-07:00,1002.2079467773438,10.73474,10734.74 +39375,2025-03-11T22:14:31.142206-07:00,1002.2345581054688,10.726847,10726.847 +39376,2025-03-11T22:14:41.887208-07:00,1002.2557983398438,10.745002,10745.002 +39377,2025-03-11T22:14:52.618371-07:00,1002.257080078125,10.731163,10731.163 +39378,2025-03-11T22:15:03.359411-07:00,1002.2306518554688,10.74104,10741.04 +39379,2025-03-11T22:15:14.091199-07:00,1002.2588500976562,10.731788,10731.788 +39380,2025-03-11T22:15:24.829676-07:00,1002.2337646484375,10.738477,10738.477 +39381,2025-03-11T22:15:35.565488-07:00,1002.23681640625,10.735812,10735.812 +39382,2025-03-11T22:15:46.302616-07:00,1002.2567138671875,10.737128,10737.128 +39383,2025-03-11T22:15:57.038199-07:00,1002.2514038085938,10.735583,10735.583 +39384,2025-03-11T22:16:07.775535-07:00,1002.239501953125,10.737336,10737.336 +39385,2025-03-11T22:16:18.507209-07:00,1002.2235717773438,10.731674,10731.674 +39386,2025-03-11T22:16:29.243395-07:00,1002.2462768554688,10.736186,10736.186 +39387,2025-03-11T22:16:39.970431-07:00,1002.2771606445312,10.727036,10727.036 +39388,2025-03-11T22:16:50.713365-07:00,1002.2625122070312,10.742934,10742.934 +39389,2025-03-11T22:17:01.438398-07:00,1002.25732421875,10.725033,10725.033 +39390,2025-03-11T22:17:12.181415-07:00,1002.2625122070312,10.743017,10743.017 +39391,2025-03-11T22:17:22.908206-07:00,1002.25732421875,10.726791,10726.791 +39392,2025-03-11T22:17:33.643240-07:00,1002.2374267578125,10.735034,10735.034 +39393,2025-03-11T22:17:44.385676-07:00,1002.263916015625,10.742436,10742.436 +39394,2025-03-11T22:17:55.126376-07:00,1002.2718505859375,10.7407,10740.7 +39395,2025-03-11T22:18:05.862301-07:00,1002.2520141601562,10.735925,10735.925 +39396,2025-03-11T22:18:16.593274-07:00,1002.23876953125,10.730973,10730.973 +39397,2025-03-11T22:18:27.333112-07:00,1002.2206420898438,10.739838,10739.838 +39398,2025-03-11T22:18:38.064387-07:00,1002.24853515625,10.731275,10731.275 +39399,2025-03-11T22:18:48.798269-07:00,1002.2285766601562,10.733882,10733.882 +39400,2025-03-11T22:18:59.538202-07:00,1002.2537231445312,10.739933,10739.933 +39401,2025-03-11T22:19:10.275853-07:00,1002.2220458984375,10.737651,10737.651 +39402,2025-03-11T22:19:21.009430-07:00,1002.2383422851562,10.733577,10733.577 +39403,2025-03-11T22:19:31.744093-07:00,1002.2449951171875,10.734663,10734.663 +39404,2025-03-11T22:19:42.484233-07:00,1002.2979736328125,10.74014,10740.14 +39405,2025-03-11T22:19:53.210203-07:00,1002.2631225585938,10.72597,10725.97 +39406,2025-03-11T22:20:03.945620-07:00,1002.2631225585938,10.735417,10735.417 +39407,2025-03-11T22:20:14.678424-07:00,1002.269775390625,10.732804,10732.804 +39408,2025-03-11T22:20:25.419204-07:00,1002.2860717773438,10.74078,10740.78 +39409,2025-03-11T22:20:36.152421-07:00,1002.2926635742188,10.733217,10733.217 +39410,2025-03-11T22:20:46.877410-07:00,1002.305908203125,10.724989,10724.989 +39411,2025-03-11T22:20:57.620218-07:00,1002.2940673828125,10.742808,10742.808 +39412,2025-03-11T22:21:08.350421-07:00,1002.30908203125,10.730203,10730.203 +39413,2025-03-11T22:21:19.083437-07:00,1002.2971801757812,10.733016,10733.016 +39414,2025-03-11T22:21:29.826611-07:00,1002.2892456054688,10.743174,10743.174 +39415,2025-03-11T22:21:40.562405-07:00,1002.3037719726562,10.735794,10735.794 +39416,2025-03-11T22:21:51.294276-07:00,1002.3382568359375,10.731871,10731.871 +39417,2025-03-11T22:22:02.033202-07:00,1002.3334350585938,10.738926,10738.926 +39418,2025-03-11T22:22:12.766231-07:00,1002.3479614257812,10.733029,10733.029 +39419,2025-03-11T22:22:23.504579-07:00,1002.3479614257812,10.738348,10738.348 +39420,2025-03-11T22:22:34.241230-07:00,1002.3295288085938,10.736651,10736.651 +39421,2025-03-11T22:22:44.978206-07:00,1002.3043823242188,10.736976,10736.976 +39422,2025-03-11T22:22:55.708422-07:00,1002.325927734375,10.730216,10730.216 +39423,2025-03-11T22:23:06.442368-07:00,1002.342041015625,10.733946,10733.946 +39424,2025-03-11T22:23:17.180206-07:00,1002.3353881835938,10.737838,10737.838 +39425,2025-03-11T22:23:27.918212-07:00,1002.3287353515625,10.738006,10738.006 +39426,2025-03-11T22:23:38.648205-07:00,1002.3238525390625,10.729993,10729.993 +39427,2025-03-11T22:23:49.389268-07:00,1002.378173828125,10.741063,10741.063 +39428,2025-03-11T22:24:00.119250-07:00,1002.3663330078125,10.729982,10729.982 +39429,2025-03-11T22:24:10.857213-07:00,1002.33984375,10.737963,10737.963 +39430,2025-03-11T22:24:21.595207-07:00,1002.3531494140625,10.737994,10737.994 +39431,2025-03-11T22:24:32.328644-07:00,1002.3283081054688,10.733437,10733.437 +39432,2025-03-11T22:24:43.065020-07:00,1002.341552734375,10.736376,10736.376 +39433,2025-03-11T22:24:53.806410-07:00,1002.3548583984375,10.74139,10741.39 +39434,2025-03-11T22:25:04.534272-07:00,1002.3362426757812,10.727862,10727.862 +39435,2025-03-11T22:25:15.267409-07:00,1002.356201171875,10.733137,10733.137 +39436,2025-03-11T22:25:26.012355-07:00,1002.3959350585938,10.744946,10744.946 +39437,2025-03-11T22:25:36.743227-07:00,1002.3858032226562,10.730872,10730.872 +39438,2025-03-11T22:25:47.483207-07:00,1002.3328247070312,10.73998,10739.98 +39439,2025-03-11T22:25:58.212839-07:00,1002.3526611328125,10.729632,10729.632 +39440,2025-03-11T22:26:08.949529-07:00,1002.3460083007812,10.73669,10736.69 +39441,2025-03-11T22:26:19.683203-07:00,1002.3460083007812,10.733674,10733.674 +39442,2025-03-11T22:26:30.418206-07:00,1002.3209228515625,10.735003,10735.003 +39443,2025-03-11T22:26:41.150206-07:00,1002.3487548828125,10.732,10732.0 +39444,2025-03-11T22:26:51.889272-07:00,1002.322265625,10.739066,10739.066 +39445,2025-03-11T22:27:02.624236-07:00,1002.3289184570312,10.734964,10734.964 +39446,2025-03-11T22:27:13.365235-07:00,1002.3804931640625,10.740999,10740.999 +39447,2025-03-11T22:27:24.103286-07:00,1002.360595703125,10.738051,10738.051 +39448,2025-03-11T22:27:34.835466-07:00,1002.3306274414062,10.73218,10732.18 +39449,2025-03-11T22:27:45.564400-07:00,1002.3289184570312,10.728934,10728.934 +39450,2025-03-11T22:27:56.297469-07:00,1002.360595703125,10.733069,10733.069 +39451,2025-03-11T22:28:07.034363-07:00,1002.3487548828125,10.736894,10736.894 +39452,2025-03-11T22:28:17.773260-07:00,1002.3024291992188,10.738897,10738.897 +39453,2025-03-11T22:28:28.496199-07:00,1002.3487548828125,10.722939,10722.939 +39454,2025-03-11T22:28:39.236413-07:00,1002.3421630859375,10.740214,10740.214 +39455,2025-03-11T22:28:49.962444-07:00,1002.3421630859375,10.726031,10726.031 +39456,2025-03-11T22:29:00.695456-07:00,1002.3407592773438,10.733012,10733.012 +39457,2025-03-11T22:29:11.425411-07:00,1002.322265625,10.729955,10729.955 +39458,2025-03-11T22:29:22.157241-07:00,1002.3289184570312,10.73183,10731.83 +39459,2025-03-11T22:29:32.896583-07:00,1002.3487548828125,10.739342,10739.342 +39460,2025-03-11T22:29:43.629630-07:00,1002.3275146484375,10.733047,10733.047 +39461,2025-03-11T22:29:54.371403-07:00,1002.2943725585938,10.741773,10741.773 +39462,2025-03-11T22:30:05.111271-07:00,1002.360595703125,10.739868,10739.868 +39463,2025-03-11T22:30:15.840411-07:00,1002.30908203125,10.72914,10729.14 +39464,2025-03-11T22:30:26.580318-07:00,1002.3473510742188,10.739907,10739.907 +39465,2025-03-11T22:30:37.310205-07:00,1002.3128662109375,10.729887,10729.887 +39466,2025-03-11T22:30:48.046200-07:00,1002.324462890625,10.735995,10735.995 +39467,2025-03-11T22:30:58.782272-07:00,1002.2913208007812,10.736072,10736.072 +39468,2025-03-11T22:31:09.523324-07:00,1002.28857421875,10.741052,10741.052 +39469,2025-03-11T22:31:20.258253-07:00,1002.2670288085938,10.734929,10734.929 +39470,2025-03-11T22:31:30.998202-07:00,1002.295166015625,10.739949,10739.949 +39471,2025-03-11T22:31:41.741205-07:00,1002.3230590820312,10.743003,10743.003 +39472,2025-03-11T22:31:52.472386-07:00,1002.33984375,10.731181,10731.181 +39473,2025-03-11T22:32:03.210263-07:00,1002.2987670898438,10.737877,10737.877 +39474,2025-03-11T22:32:13.958400-07:00,1002.3384399414062,10.748137,10748.137 +39475,2025-03-11T22:32:24.693206-07:00,1002.3251342773438,10.734806,10734.806 +39476,2025-03-11T22:32:35.429205-07:00,1002.34375,10.735999,10735.999 +39477,2025-03-11T22:32:46.163206-07:00,1002.3222045898438,10.734001,10734.001 +39478,2025-03-11T22:32:56.904201-07:00,1002.3088989257812,10.740995,10740.995 +39479,2025-03-11T22:33:07.635992-07:00,1002.3287353515625,10.731791,10731.791 +39480,2025-03-11T22:33:18.372824-07:00,1002.3141479492188,10.736832,10736.832 +39481,2025-03-11T22:33:29.107578-07:00,1002.3242797851562,10.734754,10734.754 +39482,2025-03-11T22:33:39.839711-07:00,1002.3228759765625,10.732133,10732.133 +39483,2025-03-11T22:33:50.575398-07:00,1002.299560546875,10.735687,10735.687 +39484,2025-03-11T22:34:01.311414-07:00,1002.3428344726562,10.736016,10736.016 +39485,2025-03-11T22:34:12.045213-07:00,1002.349365234375,10.733799,10733.799 +39486,2025-03-11T22:34:22.775359-07:00,1002.3162231445312,10.730146,10730.146 +39487,2025-03-11T22:34:33.504398-07:00,1002.328125,10.729039,10729.039 +39488,2025-03-11T22:34:44.235207-07:00,1002.3250122070312,10.730809,10730.809 +39489,2025-03-11T22:34:54.969609-07:00,1002.3347778320312,10.734402,10734.402 +39490,2025-03-11T22:35:05.708372-07:00,1002.311767578125,10.738763,10738.763 +39491,2025-03-11T22:35:16.442421-07:00,1002.3317260742188,10.734049,10734.049 +39492,2025-03-11T22:35:27.171202-07:00,1002.3184204101562,10.728781,10728.781 +39493,2025-03-11T22:35:37.915423-07:00,1002.3236694335938,10.744221,10744.221 +39494,2025-03-11T22:35:48.646409-07:00,1002.3501586914062,10.730986,10730.986 +39495,2025-03-11T22:35:59.377208-07:00,1002.3568115234375,10.730799,10730.799 +39496,2025-03-11T22:36:10.121205-07:00,1002.3355712890625,10.743997,10743.997 +39497,2025-03-11T22:36:20.855668-07:00,1002.353759765625,10.734463,10734.463 +39498,2025-03-11T22:36:31.588382-07:00,1002.380126953125,10.732714,10732.714 +39499,2025-03-11T22:36:42.314357-07:00,1002.3735961914062,10.725975,10725.975 +39500,2025-03-11T22:36:53.052205-07:00,1002.3192138671875,10.737848,10737.848 +39501,2025-03-11T22:37:03.784805-07:00,1002.3442993164062,10.7326,10732.6 +39502,2025-03-11T22:37:14.518433-07:00,1002.337646484375,10.733628,10733.628 +39503,2025-03-11T22:37:25.261301-07:00,1002.3442993164062,10.742868,10742.868 +39504,2025-03-11T22:37:35.990413-07:00,1002.3624877929688,10.729112,10729.112 +39505,2025-03-11T22:37:46.728405-07:00,1002.398681640625,10.737992,10737.992 +39506,2025-03-11T22:37:57.460846-07:00,1002.4088134765625,10.732441,10732.441 +39507,2025-03-11T22:38:08.200203-07:00,1002.38232421875,10.739357,10739.357 +39508,2025-03-11T22:38:18.940553-07:00,1002.384033203125,10.74035,10740.35 +39509,2025-03-11T22:38:29.671202-07:00,1002.4273681640625,10.730649,10730.649 +39510,2025-03-11T22:38:40.404386-07:00,1002.3942260742188,10.733184,10733.184 +39511,2025-03-11T22:38:51.144466-07:00,1002.4074096679688,10.74008,10740.08 +39512,2025-03-11T22:39:01.878306-07:00,1002.4154663085938,10.73384,10733.84 +39513,2025-03-11T22:39:12.612292-07:00,1002.4568481445312,10.733986,10733.986 +39514,2025-03-11T22:39:23.346402-07:00,1002.38232421875,10.73411,10734.11 +39515,2025-03-11T22:39:34.084064-07:00,1002.3972778320312,10.737662,10737.662 +39516,2025-03-11T22:39:44.816203-07:00,1002.4154663085938,10.732139,10732.139 +39517,2025-03-11T22:39:55.550496-07:00,1002.4286499023438,10.734293,10734.293 +39518,2025-03-11T22:40:06.285371-07:00,1002.435302734375,10.734875,10734.875 +39519,2025-03-11T22:40:17.026196-07:00,1002.43701171875,10.740825,10740.825 +39520,2025-03-11T22:40:27.760203-07:00,1002.4503173828125,10.734007,10734.007 +39521,2025-03-11T22:40:38.493286-07:00,1002.4749755859375,10.733083,10733.083 +39522,2025-03-11T22:40:49.222379-07:00,1002.4617919921875,10.729093,10729.093 +39523,2025-03-11T22:40:59.961946-07:00,1002.4551391601562,10.739567,10739.567 +39524,2025-03-11T22:41:10.692410-07:00,1002.4259643554688,10.730464,10730.464 +39525,2025-03-11T22:41:21.434213-07:00,1002.435302734375,10.741803,10741.803 +39526,2025-03-11T22:41:32.167938-07:00,1002.4684448242188,10.733725,10733.725 +39527,2025-03-11T22:41:42.914221-07:00,1002.439208984375,10.746283,10746.283 +39528,2025-03-11T22:41:53.650502-07:00,1002.452392578125,10.736281,10736.281 +39529,2025-03-11T22:42:04.380273-07:00,1002.4324951171875,10.729771,10729.771 +39530,2025-03-11T22:42:15.120199-07:00,1002.4338989257812,10.739926,10739.926 +39531,2025-03-11T22:42:25.845417-07:00,1002.444091796875,10.725218,10725.218 +39532,2025-03-11T22:42:36.590596-07:00,1002.4705200195312,10.745179,10745.179 +39533,2025-03-11T22:42:47.317203-07:00,1002.4573364257812,10.726607,10726.607 +39534,2025-03-11T22:42:58.053204-07:00,1002.444091796875,10.736001,10736.001 +39535,2025-03-11T22:43:08.789362-07:00,1002.474365234375,10.736158,10736.158 +39536,2025-03-11T22:43:19.524397-07:00,1002.5155639648438,10.735035,10735.035 +39537,2025-03-11T22:43:30.253559-07:00,1002.4757690429688,10.729162,10729.162 +39538,2025-03-11T22:43:40.989428-07:00,1002.4837646484375,10.735869,10735.869 +39539,2025-03-11T22:43:51.721196-07:00,1002.4730224609375,10.731768,10731.768 +39540,2025-03-11T22:44:02.452203-07:00,1002.43994140625,10.731007,10731.007 +39541,2025-03-11T22:44:13.189211-07:00,1002.453125,10.737008,10737.008 +39542,2025-03-11T22:44:23.918764-07:00,1002.4545288085938,10.729553,10729.553 +39543,2025-03-11T22:44:34.657821-07:00,1002.49951171875,10.739057,10739.057 +39544,2025-03-11T22:44:45.394207-07:00,1002.4618530273438,10.736386,10736.386 +39545,2025-03-11T22:44:56.127199-07:00,1002.4765625,10.732992,10732.992 +39546,2025-03-11T22:45:06.872392-07:00,1002.514892578125,10.745193,10745.193 +39547,2025-03-11T22:45:17.599393-07:00,1002.5111083984375,10.727001,10727.001 +39548,2025-03-11T22:45:28.338234-07:00,1002.4765625,10.738841,10738.841 +39549,2025-03-11T22:45:39.069958-07:00,1002.4779663085938,10.731724,10731.724 +39550,2025-03-11T22:45:49.807419-07:00,1002.497802734375,10.737461,10737.461 +39551,2025-03-11T22:46:00.541445-07:00,1002.5441284179688,10.734026,10734.026 +39552,2025-03-11T22:46:11.276931-07:00,1002.4932861328125,10.735486,10735.486 +39553,2025-03-11T22:46:22.008204-07:00,1002.4801025390625,10.731273,10731.273 +39554,2025-03-11T22:46:32.743393-07:00,1002.4898681640625,10.735189,10735.189 +39555,2025-03-11T22:46:43.481381-07:00,1002.4720458984375,10.737988,10737.988 +39556,2025-03-11T22:46:54.211205-07:00,1002.506591796875,10.729824,10729.824 +39557,2025-03-11T22:47:04.953199-07:00,1002.4801025390625,10.741994,10741.994 +39558,2025-03-11T22:47:15.685206-07:00,1002.470703125,10.732007,10732.007 +39559,2025-03-11T22:47:26.419596-07:00,1002.4491577148438,10.73439,10734.39 +39560,2025-03-11T22:47:37.151203-07:00,1002.468994140625,10.731607,10731.607 +39561,2025-03-11T22:47:47.887221-07:00,1002.4640502929688,10.736018,10736.018 +39562,2025-03-11T22:47:58.610574-07:00,1002.454345703125,10.723353,10723.353 +39563,2025-03-11T22:48:09.353680-07:00,1002.4248657226562,10.743106,10743.106 +39564,2025-03-11T22:48:20.078352-07:00,1002.4609375,10.724672,10724.672 +39565,2025-03-11T22:48:30.820209-07:00,1002.4662475585938,10.741857,10741.857 +39566,2025-03-11T22:48:41.546615-07:00,1002.4662475585938,10.726406,10726.406 +39567,2025-03-11T22:48:52.287513-07:00,1002.4464111328125,10.740898,10740.898 +39568,2025-03-11T22:49:03.012296-07:00,1002.439697265625,10.724783,10724.783 +39569,2025-03-11T22:49:13.750564-07:00,1002.43310546875,10.738268,10738.268 +39570,2025-03-11T22:49:24.477200-07:00,1002.4447021484375,10.726636,10726.636 +39571,2025-03-11T22:49:35.209645-07:00,1002.4710693359375,10.732445,10732.445 +39572,2025-03-11T22:49:45.945423-07:00,1002.4248657226562,10.735778,10735.778 +39573,2025-03-11T22:49:56.680374-07:00,1002.426513671875,10.734951,10734.951 +39574,2025-03-11T22:50:07.407995-07:00,1002.439697265625,10.727621,10727.621 +39575,2025-03-11T22:50:18.145204-07:00,1002.4662475585938,10.737209,10737.209 +39576,2025-03-11T22:50:28.880251-07:00,1002.4512329101562,10.735047,10735.047 +39577,2025-03-11T22:50:39.617404-07:00,1002.4447021484375,10.737153,10737.153 +39578,2025-03-11T22:50:50.345203-07:00,1002.486083984375,10.727799,10727.799 +39579,2025-03-11T22:51:01.085592-07:00,1002.4993896484375,10.740389,10740.389 +39580,2025-03-11T22:51:11.819216-07:00,1002.4512329101562,10.733624,10733.624 +39581,2025-03-11T22:51:22.552772-07:00,1002.4447021484375,10.733556,10733.556 +39582,2025-03-11T22:51:33.284515-07:00,1002.4794311523438,10.731743,10731.743 +39583,2025-03-11T22:51:44.023426-07:00,1002.4993896484375,10.738911,10738.911 +39584,2025-03-11T22:51:54.755437-07:00,1002.4464111328125,10.732011,10732.011 +39585,2025-03-11T22:52:05.485471-07:00,1002.4464111328125,10.730034,10730.034 +39586,2025-03-11T22:52:16.218498-07:00,1002.4609375,10.733027,10733.027 +39587,2025-03-11T22:52:26.959206-07:00,1002.468994140625,10.740708,10740.708 +39588,2025-03-11T22:52:37.686606-07:00,1002.4464111328125,10.7274,10727.4 +39589,2025-03-11T22:52:48.427557-07:00,1002.4808349609375,10.740951,10740.951 +39590,2025-03-11T22:52:59.151206-07:00,1002.470703125,10.723649,10723.649 +39591,2025-03-11T22:53:09.894393-07:00,1002.4491577148438,10.743187,10743.187 +39592,2025-03-11T22:53:20.628392-07:00,1002.4640502929688,10.733999,10733.999 +39593,2025-03-11T22:53:31.360278-07:00,1002.4049072265625,10.731886,10731.886 +39594,2025-03-11T22:53:42.071871-07:00,1002.4491577148438,10.711593,10711.593 +39595,2025-03-11T22:53:52.808797-07:00,1002.4212646484375,10.736926,10736.926 +39596,2025-03-11T22:54:03.541820-07:00,1002.42919921875,10.733023,10733.023 +39597,2025-03-11T22:54:14.280129-07:00,1002.4375610351562,10.738309,10738.309 +39598,2025-03-11T22:54:25.013925-07:00,1002.4093627929688,10.733796,10733.796 +39599,2025-03-11T22:54:35.748893-07:00,1002.4375610351562,10.734968,10734.968 +39600,2025-03-11T22:54:46.483049-07:00,1002.4508056640625,10.734156,10734.156 +39601,2025-03-11T22:54:57.232011-07:00,1002.4588012695312,10.748962,10748.962 +39602,2025-03-11T22:55:07.968869-07:00,1002.42578125,10.736858,10736.858 +39603,2025-03-11T22:55:18.698669-07:00,1002.4685668945312,10.7298,10729.8 +39604,2025-03-11T22:55:29.437674-07:00,1002.4486694335938,10.739005,10739.005 +39605,2025-03-11T22:55:40.173885-07:00,1002.430908203125,10.736211,10736.211 +39606,2025-03-11T22:55:50.908865-07:00,1002.4425048828125,10.73498,10734.98 +39607,2025-03-11T22:56:01.639879-07:00,1002.4279174804688,10.731014,10731.014 +39608,2025-03-11T22:56:12.374672-07:00,1002.4345092773438,10.734793,10734.793 +39609,2025-03-11T22:56:23.113870-07:00,1002.43310546875,10.739198,10739.198 +39610,2025-03-11T22:56:33.851853-07:00,1002.4366455078125,10.737983,10737.983 +39611,2025-03-11T22:56:44.584698-07:00,1002.4551391601562,10.732845,10732.845 +39612,2025-03-11T22:56:55.322948-07:00,1002.438720703125,10.73825,10738.25 +39613,2025-03-11T22:57:06.060724-07:00,1002.434326171875,10.737776,10737.776 +39614,2025-03-11T22:57:16.799885-07:00,1002.4740600585938,10.739161,10739.161 +39615,2025-03-11T22:57:27.533867-07:00,1002.44970703125,10.733982,10733.982 +39616,2025-03-11T22:57:38.278878-07:00,1002.4667358398438,10.745011,10745.011 +39617,2025-03-11T22:57:49.004696-07:00,1002.4801635742188,10.725818,10725.818 +39618,2025-03-11T22:57:59.749045-07:00,1002.4529418945312,10.744349,10744.349 +39619,2025-03-11T22:58:10.478850-07:00,1002.4551391601562,10.729805,10729.805 +39620,2025-03-11T22:58:21.211670-07:00,1002.4740600585938,10.73282,10732.82 +39621,2025-03-11T22:58:31.951402-07:00,1002.4454956054688,10.739732,10739.732 +39622,2025-03-11T22:58:42.681922-07:00,1002.451171875,10.73052,10730.52 +39623,2025-03-11T22:58:53.409243-07:00,1002.4386596679688,10.727321,10727.321 +39624,2025-03-11T22:59:04.144670-07:00,1002.4724731445312,10.735427,10735.427 +39625,2025-03-11T22:59:14.878705-07:00,1002.4781494140625,10.734035,10734.035 +39626,2025-03-11T22:59:25.607841-07:00,1002.467041015625,10.729136,10729.136 +39627,2025-03-11T22:59:36.346361-07:00,1002.47265625,10.73852,10738.52 +39628,2025-03-11T22:59:47.081911-07:00,1002.4522094726562,10.73555,10735.55 +39629,2025-03-11T22:59:57.810672-07:00,1002.439697265625,10.728761,10728.761 +39630,2025-03-11T23:00:08.546841-07:00,1002.420166015625,10.736169,10736.169 +39631,2025-03-11T23:00:19.278700-07:00,1002.4400634765625,10.731859,10731.859 +39632,2025-03-11T23:00:30.020170-07:00,1002.3965454101562,10.74147,10741.47 +39633,2025-03-11T23:00:40.752730-07:00,1002.4495239257812,10.73256,10732.56 +39634,2025-03-11T23:00:51.485870-07:00,1002.4171752929688,10.73314,10733.14 +39635,2025-03-11T23:01:02.216870-07:00,1002.4324951171875,10.731,10731.0 +39636,2025-03-11T23:01:12.948665-07:00,1002.4161987304688,10.731795,10731.795 +39637,2025-03-11T23:01:23.682770-07:00,1002.4346313476562,10.734105,10734.105 +39638,2025-03-11T23:01:34.423772-07:00,1002.445068359375,10.741002,10741.002 +39639,2025-03-11T23:01:45.148672-07:00,1002.3956298828125,10.7249,10724.9 +39640,2025-03-11T23:01:55.888689-07:00,1002.3810424804688,10.740017,10740.017 +39641,2025-03-11T23:02:06.613846-07:00,1002.416259765625,10.725157,10725.157 +39642,2025-03-11T23:02:17.351877-07:00,1002.4029541015625,10.738031,10738.031 +39643,2025-03-11T23:02:28.085674-07:00,1002.429443359375,10.733797,10733.797 +39644,2025-03-11T23:02:38.815667-07:00,1002.4131469726562,10.729993,10729.993 +39645,2025-03-11T23:02:49.548501-07:00,1002.3849487304688,10.732834,10732.834 +39646,2025-03-11T23:03:00.273708-07:00,1002.3898315429688,10.725207,10725.207 +39647,2025-03-11T23:03:11.008121-07:00,1002.3685913085938,10.734413,10734.413 +39648,2025-03-11T23:03:21.742856-07:00,1002.40966796875,10.734735,10734.735 +39649,2025-03-11T23:03:32.480979-07:00,1002.388427734375,10.738123,10738.123 +39650,2025-03-11T23:03:43.214669-07:00,1002.4082641601562,10.73369,10733.69 +39651,2025-03-11T23:03:53.952672-07:00,1002.3936157226562,10.738003,10738.003 +39652,2025-03-11T23:04:04.689695-07:00,1002.3936157226562,10.737023,10737.023 +39653,2025-03-11T23:04:15.418819-07:00,1002.3804931640625,10.729124,10729.124 +39654,2025-03-11T23:04:26.152699-07:00,1002.3804931640625,10.73388,10733.88 +39655,2025-03-11T23:04:36.886872-07:00,1002.3724365234375,10.734173,10734.173 +39656,2025-03-11T23:04:47.623059-07:00,1002.3707275390625,10.736187,10736.187 +39657,2025-03-11T23:04:58.350670-07:00,1002.3839111328125,10.727611,10727.611 +39658,2025-03-11T23:05:09.086104-07:00,1002.3856201171875,10.735434,10735.434 +39659,2025-03-11T23:05:19.827111-07:00,1002.3790893554688,10.741007,10741.007 +39660,2025-03-11T23:05:30.560021-07:00,1002.3707275390625,10.73291,10732.91 +39661,2025-03-11T23:05:41.286878-07:00,1002.3790893554688,10.726857,10726.857 +39662,2025-03-11T23:05:52.016892-07:00,1002.4003295898438,10.730014,10730.014 +39663,2025-03-11T23:06:02.754874-07:00,1002.3591918945312,10.737982,10737.982 +39664,2025-03-11T23:06:13.490670-07:00,1002.3817749023438,10.735796,10735.796 +39665,2025-03-11T23:06:24.223670-07:00,1002.3817749023438,10.733,10733.0 +39666,2025-03-11T23:06:34.954741-07:00,1002.3804931640625,10.731071,10731.071 +39667,2025-03-11T23:06:45.687494-07:00,1002.388427734375,10.732753,10732.753 +39668,2025-03-11T23:06:56.421672-07:00,1002.3817749023438,10.734178,10734.178 +39669,2025-03-11T23:07:07.152074-07:00,1002.3898315429688,10.730402,10730.402 +39670,2025-03-11T23:07:17.887739-07:00,1002.3849487304688,10.735665,10735.665 +39671,2025-03-11T23:07:28.623414-07:00,1002.3717041015625,10.735675,10735.675 +39672,2025-03-11T23:07:39.361462-07:00,1002.427734375,10.738048,10738.048 +39673,2025-03-11T23:07:50.096737-07:00,1002.3734130859375,10.735275,10735.275 +39674,2025-03-11T23:08:00.832887-07:00,1002.4096069335938,10.73615,10736.15 +39675,2025-03-11T23:08:11.569867-07:00,1002.3814086914062,10.73698,10736.98 +39676,2025-03-11T23:08:22.294673-07:00,1002.3897094726562,10.724806,10724.806 +39677,2025-03-11T23:08:33.034233-07:00,1002.3726806640625,10.73956,10739.56 +39678,2025-03-11T23:08:43.767065-07:00,1002.4140625,10.732832,10732.832 +39679,2025-03-11T23:08:54.503632-07:00,1002.4140625,10.736567,10736.567 +39680,2025-03-11T23:09:05.231669-07:00,1002.3942260742188,10.728037,10728.037 +39681,2025-03-11T23:09:15.963751-07:00,1002.403564453125,10.732082,10732.082 +39682,2025-03-11T23:09:26.699088-07:00,1002.4120483398438,10.735337,10735.337 +39683,2025-03-11T23:09:37.443970-07:00,1002.4015502929688,10.744882,10744.882 +39684,2025-03-11T23:09:48.177669-07:00,1002.4015502929688,10.733699,10733.699 +39685,2025-03-11T23:09:58.910673-07:00,1002.3817138671875,10.733004,10733.004 +39686,2025-03-11T23:10:09.645851-07:00,1002.3663330078125,10.735178,10735.178 +39687,2025-03-11T23:10:20.381314-07:00,1002.4126586914062,10.735463,10735.463 +39688,2025-03-11T23:10:31.107670-07:00,1002.3942260742188,10.726356,10726.356 +39689,2025-03-11T23:10:41.846672-07:00,1002.4007568359375,10.739002,10739.002 +39690,2025-03-11T23:10:52.582723-07:00,1002.361083984375,10.736051,10736.051 +39691,2025-03-11T23:11:03.319870-07:00,1002.3694458007812,10.737147,10737.147 +39692,2025-03-11T23:11:14.049885-07:00,1002.3562622070312,10.730015,10730.015 +39693,2025-03-11T23:11:24.785669-07:00,1002.3457641601562,10.735784,10735.784 +39694,2025-03-11T23:11:35.512853-07:00,1002.3474731445312,10.727184,10727.184 +39695,2025-03-11T23:11:46.246683-07:00,1002.32373046875,10.73383,10733.83 +39696,2025-03-11T23:11:56.991737-07:00,1002.35205078125,10.745054,10745.054 +39697,2025-03-11T23:12:07.719890-07:00,1002.3453369140625,10.728153,10728.153 +39698,2025-03-11T23:12:18.466709-07:00,1002.3300170898438,10.746819,10746.819 +39699,2025-03-11T23:12:29.200916-07:00,1002.3150634765625,10.734207,10734.207 +39700,2025-03-11T23:12:39.934669-07:00,1002.318115234375,10.733753,10733.753 +39701,2025-03-11T23:12:50.671885-07:00,1002.291748046875,10.737216,10737.216 +39702,2025-03-11T23:13:01.405860-07:00,1002.3077392578125,10.733975,10733.975 +39703,2025-03-11T23:13:12.151071-07:00,1002.2945556640625,10.745211,10745.211 +39704,2025-03-11T23:13:22.888850-07:00,1002.310791015625,10.737779,10737.779 +39705,2025-03-11T23:13:33.630276-07:00,1002.3056030273438,10.741426,10741.426 +39706,2025-03-11T23:13:44.367671-07:00,1002.2821655273438,10.737395,10737.395 +39707,2025-03-11T23:13:55.097673-07:00,1002.2954711914062,10.730002,10730.002 +39708,2025-03-11T23:14:05.837664-07:00,1002.2835693359375,10.739991,10739.991 +39709,2025-03-11T23:14:16.564894-07:00,1002.2867431640625,10.72723,10727.23 +39710,2025-03-11T23:14:27.302112-07:00,1002.29638671875,10.737218,10737.218 +39711,2025-03-11T23:14:38.037797-07:00,1002.2898559570312,10.735685,10735.685 +39712,2025-03-11T23:14:48.783906-07:00,1002.259521484375,10.746109,10746.109 +39713,2025-03-11T23:14:59.515838-07:00,1002.2675170898438,10.731932,10731.932 +39714,2025-03-11T23:15:10.245739-07:00,1002.2692260742188,10.729901,10729.901 +39715,2025-03-11T23:15:20.993737-07:00,1002.252197265625,10.747998,10747.998 +39716,2025-03-11T23:15:31.726837-07:00,1002.2949829101562,10.7331,10733.1 +39717,2025-03-11T23:15:42.457875-07:00,1002.2633056640625,10.731038,10731.038 +39718,2025-03-11T23:15:53.194719-07:00,1002.2848510742188,10.736844,10736.844 +39719,2025-03-11T23:16:03.934891-07:00,1002.2796020507812,10.740172,10740.172 +39720,2025-03-11T23:16:14.673672-07:00,1002.2363891601562,10.738781,10738.781 +39721,2025-03-11T23:16:25.409885-07:00,1002.2562255859375,10.736213,10736.213 +39722,2025-03-11T23:16:36.139842-07:00,1002.2937622070312,10.729957,10729.957 +39723,2025-03-11T23:16:46.878672-07:00,1002.272216796875,10.73883,10738.83 +39724,2025-03-11T23:16:57.612669-07:00,1002.281982421875,10.733997,10733.997 +39725,2025-03-11T23:17:08.349675-07:00,1002.263427734375,10.737006,10737.006 +39726,2025-03-11T23:17:19.085743-07:00,1002.2290649414062,10.736068,10736.068 +39727,2025-03-11T23:17:29.817696-07:00,1002.2516479492188,10.731953,10731.953 +39728,2025-03-11T23:17:40.556506-07:00,1002.2614135742188,10.73881,10738.81 +39729,2025-03-11T23:17:51.293673-07:00,1002.28125,10.737167,10737.167 +39730,2025-03-11T23:18:02.034007-07:00,1002.251220703125,10.740334,10740.334 +39731,2025-03-11T23:18:12.759460-07:00,1002.2592163085938,10.725453,10725.453 +39732,2025-03-11T23:18:23.495672-07:00,1002.2689208984375,10.736212,10736.212 +39733,2025-03-11T23:18:34.231667-07:00,1002.2556762695312,10.735995,10735.995 +39734,2025-03-11T23:18:44.969671-07:00,1002.2570190429688,10.738004,10738.004 +39735,2025-03-11T23:18:55.704839-07:00,1002.2667846679688,10.735168,10735.168 +39736,2025-03-11T23:19:06.437901-07:00,1002.280029296875,10.733062,10733.062 +39737,2025-03-11T23:19:17.177684-07:00,1002.25634765625,10.739783,10739.783 +39738,2025-03-11T23:19:27.906849-07:00,1002.235107421875,10.729165,10729.165 +39739,2025-03-11T23:19:38.645839-07:00,1002.2431030273438,10.73899,10738.99 +39740,2025-03-11T23:19:49.377670-07:00,1002.2312622070312,10.731831,10731.831 +39741,2025-03-11T23:20:00.115672-07:00,1002.2277221679688,10.738002,10738.002 +39742,2025-03-11T23:20:10.847821-07:00,1002.25732421875,10.732149,10732.149 +39743,2025-03-11T23:20:21.585837-07:00,1002.2440795898438,10.738016,10738.016 +39744,2025-03-11T23:20:32.319565-07:00,1002.2799072265625,10.733728,10733.728 +39745,2025-03-11T23:20:43.050932-07:00,1002.2468872070312,10.731367,10731.367 +39746,2025-03-11T23:20:53.784849-07:00,1002.2631225585938,10.733917,10733.917 +39747,2025-03-11T23:21:04.513701-07:00,1002.2645263671875,10.728852,10728.852 +39748,2025-03-11T23:21:15.253883-07:00,1002.2463989257812,10.740182,10740.182 +39749,2025-03-11T23:21:25.991420-07:00,1002.25439453125,10.737537,10737.537 +39750,2025-03-11T23:21:36.732814-07:00,1002.2265625,10.741394,10741.394 +39751,2025-03-11T23:21:47.468805-07:00,1002.2411499023438,10.735991,10735.991 +39752,2025-03-11T23:21:58.203783-07:00,1002.2081298828125,10.734978,10734.978 +39753,2025-03-11T23:22:08.931021-07:00,1002.2442016601562,10.727238,10727.238 +39754,2025-03-11T23:22:19.673674-07:00,1002.2293090820312,10.742653,10742.653 +39755,2025-03-11T23:22:30.410076-07:00,1002.211181640625,10.736402,10736.402 +39756,2025-03-11T23:22:41.145884-07:00,1002.2337646484375,10.735808,10735.808 +39757,2025-03-11T23:22:51.879873-07:00,1002.2257690429688,10.733989,10733.989 +39758,2025-03-11T23:23:02.618856-07:00,1002.2205200195312,10.738983,10738.983 +39759,2025-03-11T23:23:13.359880-07:00,1002.2235717773438,10.741024,10741.024 +39760,2025-03-11T23:23:24.088870-07:00,1002.21533203125,10.72899,10728.99 +39761,2025-03-11T23:23:34.821963-07:00,1002.2385864257812,10.733093,10733.093 +39762,2025-03-11T23:23:45.558670-07:00,1002.2054443359375,10.736707,10736.707 +39763,2025-03-11T23:23:56.298669-07:00,1002.2002563476562,10.739999,10739.999 +39764,2025-03-11T23:24:07.034848-07:00,1002.2068481445312,10.736179,10736.179 +39765,2025-03-11T23:24:17.771857-07:00,1002.2218627929688,10.737009,10737.009 +39766,2025-03-11T23:24:28.504935-07:00,1002.2201538085938,10.733078,10733.078 +39767,2025-03-11T23:24:39.234670-07:00,1002.2284545898438,10.729735,10729.735 +39768,2025-03-11T23:24:49.970684-07:00,1002.2151489257812,10.736014,10736.014 +39769,2025-03-11T23:25:00.707597-07:00,1002.2298583984375,10.736913,10736.913 +39770,2025-03-11T23:25:11.446700-07:00,1002.21142578125,10.739103,10739.103 +39771,2025-03-11T23:25:22.180671-07:00,1002.224609375,10.733971,10733.971 +39772,2025-03-11T23:25:32.913862-07:00,1002.2047119140625,10.733191,10733.191 +39773,2025-03-11T23:25:43.647075-07:00,1002.2363891601562,10.733213,10733.213 +39774,2025-03-11T23:25:54.385670-07:00,1002.21142578125,10.738595,10738.595 +39775,2025-03-11T23:26:05.120879-07:00,1002.2276611328125,10.735209,10735.209 +39776,2025-03-11T23:26:15.856669-07:00,1002.239501953125,10.73579,10735.79 +39777,2025-03-11T23:26:26.590779-07:00,1002.239501953125,10.73411,10734.11 +39778,2025-03-11T23:26:37.329755-07:00,1002.2064208984375,10.738976,10738.976 +39779,2025-03-11T23:26:48.061675-07:00,1002.2078247070312,10.73192,10731.92 +39780,2025-03-11T23:26:58.797696-07:00,1002.2276611328125,10.736021,10736.021 +39781,2025-03-11T23:27:09.538051-07:00,1002.2012329101562,10.740355,10740.355 +39782,2025-03-11T23:27:20.264713-07:00,1002.1945190429688,10.726662,10726.662 +39783,2025-03-11T23:27:31.008702-07:00,1002.1914672851562,10.743989,10743.989 +39784,2025-03-11T23:27:41.741699-07:00,1002.2064208984375,10.732997,10732.997 +39785,2025-03-11T23:27:52.469858-07:00,1002.2064208984375,10.728159,10728.159 +39786,2025-03-11T23:28:03.202880-07:00,1002.2012329101562,10.733022,10733.022 +39787,2025-03-11T23:28:13.944925-07:00,1002.240966796875,10.742045,10742.045 +39788,2025-03-11T23:28:24.683670-07:00,1002.2179565429688,10.738745,10738.745 +39789,2025-03-11T23:28:35.420859-07:00,1002.2210693359375,10.737189,10737.189 +39790,2025-03-11T23:28:46.156863-07:00,1002.2130737304688,10.736004,10736.004 +39791,2025-03-11T23:28:56.887670-07:00,1002.1799926757812,10.730807,10730.807 +39792,2025-03-11T23:29:07.623882-07:00,1002.1998291015625,10.736212,10736.212 +39793,2025-03-11T23:29:18.365672-07:00,1002.2064208984375,10.74179,10741.79 +39794,2025-03-11T23:29:29.098031-07:00,1002.1945190429688,10.732359,10732.359 +39795,2025-03-11T23:29:39.836208-07:00,1002.1959228515625,10.738177,10738.177 +39796,2025-03-11T23:29:50.575881-07:00,1002.1959228515625,10.739673,10739.673 +39797,2025-03-11T23:30:01.317872-07:00,1002.2078247070312,10.741991,10741.991 +39798,2025-03-11T23:30:12.049795-07:00,1002.2210693359375,10.731923,10731.923 +39799,2025-03-11T23:30:22.785921-07:00,1002.2276611328125,10.736126,10736.126 +39800,2025-03-11T23:30:33.521389-07:00,1002.2210693359375,10.735468,10735.468 +39801,2025-03-11T23:30:44.258710-07:00,1002.18798828125,10.737321,10737.321 +39802,2025-03-11T23:30:54.990672-07:00,1002.2210693359375,10.731962,10731.962 +39803,2025-03-11T23:31:05.723063-07:00,1002.1998291015625,10.732391,10732.391 +39804,2025-03-11T23:31:16.462908-07:00,1002.2130737304688,10.739845,10739.845 +39805,2025-03-11T23:31:27.198009-07:00,1002.2157592773438,10.735101,10735.101 +39806,2025-03-11T23:31:37.928878-07:00,1002.209228515625,10.730869,10730.869 +39807,2025-03-11T23:31:48.668851-07:00,1002.2262573242188,10.739973,10739.973 +39808,2025-03-11T23:31:59.397667-07:00,1002.2262573242188,10.728816,10728.816 +39809,2025-03-11T23:32:10.132850-07:00,1002.2179565429688,10.735183,10735.183 +39810,2025-03-11T23:32:20.867888-07:00,1002.2474975585938,10.735038,10735.038 +39811,2025-03-11T23:32:31.598856-07:00,1002.2232055664062,10.730968,10730.968 +39812,2025-03-11T23:32:42.337967-07:00,1002.2528076171875,10.739111,10739.111 +39813,2025-03-11T23:32:53.065668-07:00,1002.2510986328125,10.727701,10727.701 +39814,2025-03-11T23:33:03.805978-07:00,1002.23779296875,10.74031,10740.31 +39815,2025-03-11T23:33:14.542869-07:00,1002.2576293945312,10.736891,10736.891 +39816,2025-03-11T23:33:25.267676-07:00,1002.2510986328125,10.724807,10724.807 +39817,2025-03-11T23:33:36.010184-07:00,1002.2363891601562,10.742508,10742.508 +39818,2025-03-11T23:33:46.736674-07:00,1002.2562255859375,10.72649,10726.49 +39819,2025-03-11T23:33:57.477063-07:00,1002.2562255859375,10.740389,10740.389 +39820,2025-03-11T23:34:08.211792-07:00,1002.248291015625,10.734729,10734.729 +39821,2025-03-11T23:34:18.950105-07:00,1002.26953125,10.738313,10738.313 +39822,2025-03-11T23:34:29.678897-07:00,1002.2430419921875,10.728792,10728.792 +39823,2025-03-11T23:34:40.410832-07:00,1002.26953125,10.731935,10731.935 +39824,2025-03-11T23:34:51.142833-07:00,1002.26953125,10.732001,10732.001 +39825,2025-03-11T23:35:01.877673-07:00,1002.2430419921875,10.73484,10734.84 +39826,2025-03-11T23:35:12.615665-07:00,1002.2761840820312,10.737992,10737.992 +39827,2025-03-11T23:35:23.341878-07:00,1002.262939453125,10.726213,10726.213 +39828,2025-03-11T23:35:34.081962-07:00,1002.2549438476562,10.740084,10740.084 +39829,2025-03-11T23:35:44.812084-07:00,1002.2828369140625,10.730122,10730.122 +39830,2025-03-11T23:35:55.540854-07:00,1002.2747802734375,10.72877,10728.77 +39831,2025-03-11T23:36:06.272876-07:00,1002.2650756835938,10.732022,10732.022 +39832,2025-03-11T23:36:17.011820-07:00,1002.2782592773438,10.738944,10738.944 +39833,2025-03-11T23:36:27.746888-07:00,1002.2761840820312,10.735068,10735.068 +39834,2025-03-11T23:36:38.481844-07:00,1002.2664184570312,10.734956,10734.956 +39835,2025-03-11T23:36:49.211675-07:00,1002.2879638671875,10.729831,10729.831 +39836,2025-03-11T23:36:59.948671-07:00,1002.294677734375,10.736996,10736.996 +39837,2025-03-11T23:37:10.679925-07:00,1002.2814331054688,10.731254,10731.254 +39838,2025-03-11T23:37:21.410868-07:00,1002.2814331054688,10.730943,10730.943 +39839,2025-03-11T23:37:32.147669-07:00,1002.29296875,10.736801,10736.801 +39840,2025-03-11T23:37:42.879678-07:00,1002.2960205078125,10.732009,10732.009 +39841,2025-03-11T23:37:53.612844-07:00,1002.2863159179688,10.733166,10733.166 +39842,2025-03-11T23:38:04.343670-07:00,1002.322509765625,10.730826,10730.826 +39843,2025-03-11T23:38:15.080881-07:00,1002.2501831054688,10.737211,10737.211 +39844,2025-03-11T23:38:25.806856-07:00,1002.2796630859375,10.725975,10725.975 +39845,2025-03-11T23:38:36.543712-07:00,1002.29296875,10.736856,10736.856 +39846,2025-03-11T23:38:47.278672-07:00,1002.299560546875,10.73496,10734.96 +39847,2025-03-11T23:38:58.011708-07:00,1002.2915649414062,10.733036,10733.036 +39848,2025-03-11T23:39:08.743051-07:00,1002.307861328125,10.731343,10731.343 +39849,2025-03-11T23:39:19.465670-07:00,1002.307861328125,10.722619,10722.619 +39850,2025-03-11T23:39:30.200849-07:00,1002.294677734375,10.735179,10735.179 +39851,2025-03-11T23:39:40.937849-07:00,1002.2650756835938,10.737,10737.0 +39852,2025-03-11T23:39:51.671876-07:00,1002.3261108398438,10.734027,10734.027 +39853,2025-03-11T23:40:02.399673-07:00,1002.298095703125,10.727797,10727.797 +39854,2025-03-11T23:40:13.133673-07:00,1002.2302856445312,10.734,10734.0 +39855,2025-03-11T23:40:23.865827-07:00,1002.27001953125,10.732154,10732.154 +39856,2025-03-11T23:40:34.597878-07:00,1002.2915649414062,10.732051,10732.051 +39857,2025-03-11T23:40:45.328604-07:00,1002.2782592773438,10.730726,10730.726 +39858,2025-03-11T23:40:56.062849-07:00,1002.2501831054688,10.734245,10734.245 +39859,2025-03-11T23:41:06.794668-07:00,1002.2650756835938,10.731819,10731.819 +39860,2025-03-11T23:41:17.523701-07:00,1002.2765502929688,10.729033,10729.033 +39861,2025-03-11T23:41:28.263944-07:00,1002.2633666992188,10.740243,10740.243 +39862,2025-03-11T23:41:38.996693-07:00,1002.298095703125,10.732749,10732.749 +39863,2025-03-11T23:41:49.724854-07:00,1002.2947387695312,10.728161,10728.161 +39864,2025-03-11T23:42:00.458948-07:00,1002.3163452148438,10.734094,10734.094 +39865,2025-03-11T23:42:11.192112-07:00,1002.3013916015625,10.733164,10733.164 +39866,2025-03-11T23:42:21.916910-07:00,1002.2999877929688,10.724798,10724.798 +39867,2025-03-11T23:42:32.656792-07:00,1002.2933349609375,10.739882,10739.882 +39868,2025-03-11T23:42:43.379829-07:00,1002.2999877929688,10.723037,10723.037 +39869,2025-03-11T23:42:54.119484-07:00,1002.2801513671875,10.739655,10739.655 +39870,2025-03-11T23:43:04.852922-07:00,1002.3212280273438,10.733438,10733.438 +39871,2025-03-11T23:43:15.578072-07:00,1002.3331298828125,10.72515,10725.15 +39872,2025-03-11T23:43:26.313888-07:00,1002.3184204101562,10.735816,10735.816 +39873,2025-03-11T23:43:37.040746-07:00,1002.3079833984375,10.726858,10726.858 +39874,2025-03-11T23:43:47.773844-07:00,1002.2933349609375,10.733098,10733.098 +39875,2025-03-11T23:43:58.510018-07:00,1002.3065795898438,10.736174,10736.174 +39876,2025-03-11T23:44:09.246945-07:00,1002.3212280273438,10.736927,10736.927 +39877,2025-03-11T23:44:19.973857-07:00,1002.322998046875,10.726912,10726.912 +39878,2025-03-11T23:44:30.708872-07:00,1002.3146362304688,10.735015,10735.015 +39879,2025-03-11T23:44:41.449337-07:00,1002.3312377929688,10.740465,10740.465 +39880,2025-03-11T23:44:52.188672-07:00,1002.3428344726562,10.739335,10739.335 +39881,2025-03-11T23:45:02.923669-07:00,1002.3295288085938,10.734997,10734.997 +39882,2025-03-11T23:45:13.654672-07:00,1002.3295288085938,10.731003,10731.003 +39883,2025-03-11T23:45:24.399046-07:00,1002.341064453125,10.744374,10744.374 +39884,2025-03-11T23:45:35.129837-07:00,1002.3609619140625,10.730791,10730.791 +39885,2025-03-11T23:45:45.866672-07:00,1002.341064453125,10.736835,10736.835 +39886,2025-03-11T23:45:56.606699-07:00,1002.3595581054688,10.740027,10740.027 +39887,2025-03-11T23:46:07.340691-07:00,1002.3477172851562,10.733992,10733.992 +39888,2025-03-11T23:46:18.077422-07:00,1002.3693237304688,10.736731,10736.731 +39889,2025-03-11T23:46:28.808703-07:00,1002.3560791015625,10.731281,10731.281 +39890,2025-03-11T23:46:39.541881-07:00,1002.3626708984375,10.733178,10733.178 +39891,2025-03-11T23:46:50.279695-07:00,1002.3709106445312,10.737814,10737.814 +39892,2025-03-11T23:47:01.016633-07:00,1002.3543701171875,10.736938,10736.938 +39893,2025-03-11T23:47:11.753789-07:00,1002.3543701171875,10.737156,10737.156 +39894,2025-03-11T23:47:22.486675-07:00,1002.3709106445312,10.732886,10732.886 +39895,2025-03-11T23:47:33.224073-07:00,1002.3477172851562,10.737398,10737.398 +39896,2025-03-11T23:47:43.960846-07:00,1002.3543701171875,10.736773,10736.773 +39897,2025-03-11T23:47:54.694676-07:00,1002.3675537109375,10.73383,10733.83 +39898,2025-03-11T23:48:05.426668-07:00,1002.3742065429688,10.731992,10731.992 +39899,2025-03-11T23:48:16.164183-07:00,1002.3543701171875,10.737515,10737.515 +39900,2025-03-11T23:48:26.896089-07:00,1002.3345336914062,10.731906,10731.906 +39901,2025-03-11T23:48:37.633670-07:00,1002.3529663085938,10.737581,10737.581 +39902,2025-03-11T23:48:48.374871-07:00,1002.3477172851562,10.741201,10741.201 +39903,2025-03-11T23:48:59.107971-07:00,1002.3463134765625,10.7331,10733.1 +39904,2025-03-11T23:49:09.837845-07:00,1002.3477172851562,10.729874,10729.874 +39905,2025-03-11T23:49:20.582033-07:00,1002.3463134765625,10.744188,10744.188 +39906,2025-03-11T23:49:31.317741-07:00,1002.3675537109375,10.735708,10735.708 +39907,2025-03-11T23:49:42.048669-07:00,1002.3648681640625,10.730928,10730.928 +39908,2025-03-11T23:49:52.776870-07:00,1002.3595581054688,10.728201,10728.201 +39909,2025-03-11T23:50:03.513028-07:00,1002.3861083984375,10.736158,10736.158 +39910,2025-03-11T23:50:14.249675-07:00,1002.344970703125,10.736647,10736.647 +39911,2025-03-11T23:50:24.990881-07:00,1002.3317260742188,10.741206,10741.206 +39912,2025-03-11T23:50:35.715856-07:00,1002.3515625,10.724975,10724.975 +39913,2025-03-11T23:50:46.449672-07:00,1002.3780517578125,10.733816,10733.816 +39914,2025-03-11T23:50:57.189666-07:00,1002.372802734375,10.739994,10739.994 +39915,2025-03-11T23:51:07.912695-07:00,1002.3317260742188,10.723029,10723.029 +39916,2025-03-11T23:51:18.650866-07:00,1002.344970703125,10.738171,10738.171 +39917,2025-03-11T23:51:29.380671-07:00,1002.3713989257812,10.729805,10729.805 +39918,2025-03-11T23:51:40.116782-07:00,1002.344970703125,10.736111,10736.111 +39919,2025-03-11T23:51:50.837130-07:00,1002.3713989257812,10.720348,10720.348 +39920,2025-03-11T23:52:01.573734-07:00,1002.3634643554688,10.736604,10736.604 +39921,2025-03-11T23:52:12.297819-07:00,1002.380126953125,10.724085,10724.085 +39922,2025-03-11T23:52:23.033373-07:00,1002.3948364257812,10.735554,10735.554 +39923,2025-03-11T23:52:33.760696-07:00,1002.3470458984375,10.727323,10727.323 +39924,2025-03-11T23:52:44.494557-07:00,1002.3837280273438,10.733861,10733.861 +39925,2025-03-11T23:52:55.224536-07:00,1002.3837280273438,10.729979,10729.979 +39926,2025-03-11T23:53:05.952741-07:00,1002.3690795898438,10.728205,10728.205 +39927,2025-03-11T23:53:16.686882-07:00,1002.3764038085938,10.734141,10734.141 +39928,2025-03-11T23:53:27.411780-07:00,1002.3504028320312,10.724898,10724.898 +39929,2025-03-11T23:53:38.170800-07:00,1002.382080078125,10.75902,10759.02 +39930,2025-03-11T23:53:48.896203-07:00,1002.377685546875,10.725403,10725.403 +39931,2025-03-11T23:53:59.629495-07:00,1002.3585205078125,10.733292,10733.292 +39932,2025-03-11T23:54:10.364915-07:00,1002.3770141601562,10.73542,10735.42 +39933,2025-03-11T23:54:21.098797-07:00,1002.369384765625,10.733882,10733.882 +39934,2025-03-11T23:54:31.828875-07:00,1002.3951416015625,10.730078,10730.078 +39935,2025-03-11T23:54:42.562823-07:00,1002.369140625,10.733948,10733.948 +39936,2025-03-11T23:54:53.289849-07:00,1002.4029541015625,10.727026,10727.026 +39937,2025-03-11T23:55:04.023010-07:00,1002.3859252929688,10.733161,10733.161 +39938,2025-03-11T23:55:14.758176-07:00,1002.3982543945312,10.735166,10735.166 +39939,2025-03-11T23:55:25.492868-07:00,1002.3724975585938,10.734692,10734.692 +39940,2025-03-11T23:55:36.217745-07:00,1002.3798217773438,10.724877,10724.877 +39941,2025-03-11T23:55:57.680014-07:00,1002.3545532226562,21.462269,21462.269 +39942,2025-03-11T23:56:08.410000-07:00,1002.369873046875,10.729986,10729.986 +39943,2025-03-11T23:56:19.145380-07:00,1002.3638916015625,10.73538,10735.38 +39944,2025-03-11T23:56:29.879322-07:00,1002.3765869140625,10.733942,10733.942 +39945,2025-03-11T23:56:40.609797-07:00,1002.361572265625,10.730475,10730.475 +39946,2025-03-11T23:56:51.343866-07:00,1002.3685913085938,10.734069,10734.069 +39947,2025-03-11T23:57:02.074862-07:00,1002.3839111328125,10.730996,10730.996 +39948,2025-03-11T23:57:12.816827-07:00,1002.3515625,10.741965,10741.965 +39949,2025-03-11T23:57:23.544160-07:00,1002.335205078125,10.727333,10727.333 +39950,2025-03-11T23:57:34.276972-07:00,1002.3094482421875,10.732812,10732.812 +39951,2025-03-11T23:57:45.003799-07:00,1002.3262329101562,10.726827,10726.827 +39952,2025-03-11T23:57:55.739876-07:00,1002.3790893554688,10.736077,10736.077 +39953,2025-03-11T23:58:06.477900-07:00,1002.3446655273438,10.738024,10738.024 +39954,2025-03-11T23:58:17.203133-07:00,1002.36376953125,10.725233,10725.233 +39955,2025-03-11T23:58:27.934797-07:00,1002.37841796875,10.731664,10731.664 +39956,2025-03-11T23:58:38.673925-07:00,1002.3143920898438,10.739128,10739.128 +39957,2025-03-11T23:58:49.411644-07:00,1002.309814453125,10.737719,10737.719 +39958,2025-03-11T23:59:00.139797-07:00,1002.3363037109375,10.728153,10728.153 +39959,2025-03-11T23:59:10.869799-07:00,1002.333251953125,10.730002,10730.002 +39960,2025-03-11T23:59:21.604802-07:00,1002.3251342773438,10.735003,10735.003 +39961,2025-03-11T23:59:32.345987-07:00,1002.3318481445312,10.741185,10741.185 +39962,2025-03-11T23:59:43.074839-07:00,1002.3582763671875,10.728852,10728.852 +39963,2025-03-11T23:59:53.806801-07:00,1002.3517456054688,10.731962,10731.962 diff --git a/usage_example.py b/usage_example.py new file mode 100644 index 0000000..fcce41c --- /dev/null +++ b/usage_example.py @@ -0,0 +1,146 @@ +import numpy as np +import time +from filter_short_groups import filter_short_groups_c + +def filter_short_groups_numpy(presence_list, filter_size, device_id, dates_str): + """ + Original NumPy implementation, kept for comparison purposes. + """ + # Start timer (optional, for benchmarking) + st = time.time() + + if not presence_list or filter_size <= 1: + print(f"NumPy Optimized: Early exit/no processing time: {time.time() - st:.6f}s") + return presence_list[:] if isinstance(presence_list, list) else list(presence_list) + + result = np.array(presence_list, dtype=float) + n = len(result) + + previous_states = set() + + while True: + # Cycle detection + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + print("NumPy Optimized: Cycle detected, breaking.") + break + previous_states.add(current_state_tuple) + + # 1. Calculate the sign of each element (-1, 0, 1) + signs = np.sign(result) + + # 2. Find indices where the sign changes + change_indices = np.where(np.diff(signs) != 0)[0] + 1 + + # 3. Define the boundaries of all consecutive runs + boundaries = np.concatenate(([0], change_indices, [n])) + + # If there's only one segment, no further processing is needed. + if len(boundaries) <= 2: + break + + # 4. Vectorized extraction of run properties + run_starts = boundaries[:-1] + run_ends = boundaries[1:] + run_lengths = run_ends - run_starts + run_signs = signs[run_starts] + + # 5. Identify short runs and collect their properties + short_runs_to_process = [] + for i in range(len(run_starts)): + if run_lengths[i] > 0 and run_lengths[i] < filter_size: + short_runs_to_process.append({ + 'start': run_starts[i], + 'end': run_ends[i], + 'sign': run_signs[i], + 'length': run_lengths[i] + }) + + # 6. Check if any modifiable short runs were found + if not short_runs_to_process: + break + + # 7. Sort the short runs: shortest first, then by start index for determinism + short_runs_to_process.sort(key=lambda r: (r['length'], r['start'])) + + # 8. Process ONLY the *first* (shortest) identified run in this pass + run_to_process = short_runs_to_process[0] + start = run_to_process['start'] + end = run_to_process['end'] + run_sign = run_to_process['sign'] + + # Determine the replacement value + replacement_value = 1.0 if run_sign == 0 else 0.0 + + # 9. Apply the replacement + result[start:end] = replacement_value + + # End timer and print + print(f"filter_short_groups_numpy time: {time.time() - st:.6f}s") + + return result.tolist() + +def benchmark_comparison(input_data, filter_size, iterations=10): + """ + Compare performance between NumPy and C implementations + """ + device_id = "test_device" + dates_str = "2025-05-21" + + # Warm-up runs + _ = filter_short_groups_numpy(input_data, filter_size, device_id, dates_str) + _ = filter_short_groups_c(input_data, filter_size, device_id, dates_str) + + # NumPy benchmark + numpy_times = [] + for _ in range(iterations): + start = time.time() + numpy_result = filter_short_groups_numpy(input_data, filter_size, device_id, dates_str) + numpy_times.append(time.time() - start) + + # C implementation benchmark + c_times = [] + for _ in range(iterations): + start = time.time() + c_result = filter_short_groups_c(input_data, filter_size, device_id, dates_str) + c_times.append(time.time() - start) + + # Check results match + results_match = numpy_result == c_result + + # Print results + print(f"\nResults from NumPy and C implementation match: {results_match}") + print(f"\nNumPy Implementation:") + print(f" Average time: {np.mean(numpy_times):.6f}s") + print(f" Min time: {np.min(numpy_times):.6f}s") + print(f" Max time: {np.max(numpy_times):.6f}s") + + print(f"\nC Implementation:") + print(f" Average time: {np.mean(c_times):.6f}s") + print(f" Min time: {np.min(c_times):.6f}s") + print(f" Max time: {np.max(c_times):.6f}s") + + speedup = np.mean(numpy_times) / np.mean(c_times) + print(f"\nSpeedup factor: {speedup:.2f}x") + + return numpy_result, c_result + +if __name__ == "__main__": + # Example data + # Random presence list with mix of 0s and 1s + np.random.seed(42) + data_small = list(np.random.choice([0.0, 1.0], size=100)) + data_medium = list(np.random.choice([0.0, 1.0], size=1000)) + data_large = list(np.random.choice([0.0, 1.0], size=10000)) + + # Example with small data + print("\n===== Small dataset (100 elements) =====") + numpy_result_small, c_result_small = benchmark_comparison(data_small, filter_size=3) + + # Example with medium data + print("\n===== Medium dataset (1000 elements) =====") + numpy_result_medium, c_result_medium = benchmark_comparison(data_medium, filter_size=5) + + # Example with large data + print("\n===== Large dataset (10000 elements) =====") + numpy_result_large, c_result_large = benchmark_comparison(data_large, filter_size=10) diff --git a/verify_installation.py b/verify_installation.py new file mode 100644 index 0000000..e07f56b --- /dev/null +++ b/verify_installation.py @@ -0,0 +1,138 @@ +""" +Verify that the installed filter_short_groups module works correctly. +""" +import time +import numpy as np +import random + +# Try to import the module +try: + from filter_short_groups import filter_short_groups_c + print("Successfully imported filter_short_groups_c") +except ImportError as e: + print(f"Error importing module: {e}") + exit(1) + +# Define the NumPy reference implementation for comparison +def filter_short_groups_numpy(presence_list, filter_size, device_id, dates_str): + """ + NumPy implementation, kept for comparison purposes. + """ + st = time.time() + + if not presence_list or filter_size <= 1: + print(f"NumPy: Early exit/no processing time: {time.time() - st:.6f}s") + return presence_list[:] if isinstance(presence_list, list) else list(presence_list) + + result = np.array(presence_list, dtype=float) + n = len(result) + previous_states = set() + + while True: + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + print("NumPy: Cycle detected, breaking.") + break + previous_states.add(current_state_tuple) + + signs = np.sign(result) + change_indices = np.where(np.diff(signs) != 0)[0] + 1 + boundaries = np.concatenate(([0], change_indices, [n])) + + if len(boundaries) <= 2: + break + + run_starts = boundaries[:-1] + run_ends = boundaries[1:] + run_lengths = run_ends - run_starts + run_signs = signs[run_starts] + + short_runs_to_process = [] + for i in range(len(run_starts)): + if run_lengths[i] > 0 and run_lengths[i] < filter_size: + short_runs_to_process.append({ + 'start': run_starts[i], + 'end': run_ends[i], + 'sign': run_signs[i], + 'length': run_lengths[i] + }) + + if not short_runs_to_process: + break + + short_runs_to_process.sort(key=lambda r: (r['length'], r['start'])) + run_to_process = short_runs_to_process[0] + start = run_to_process['start'] + end = run_to_process['end'] + run_sign = run_to_process['sign'] + replacement_value = 1.0 if run_sign == 0 else 0.0 + result[start:end] = replacement_value + + print(f"filter_short_groups_numpy time: {time.time() - st:.6f}s") + return result.tolist() + +def run_test_case(test_data, filter_size, name="Test"): + """Run both implementations and compare results and performance.""" + print(f"\n===== {name} =====") + + device_id = "test_device" + dates_str = "2025-05-21" + + # Run NumPy implementation + start_time = time.time() + numpy_result = filter_short_groups_numpy(test_data, filter_size, device_id, dates_str) + numpy_time = time.time() - start_time + + # Run C implementation + start_time = time.time() + c_result = filter_short_groups_c(test_data, filter_size, device_id, dates_str) + c_time = time.time() - start_time + + # Compare results + results_match = numpy_result == c_result + + # Print results + print(f"Results match: {results_match}") + if not results_match: + print(f"NumPy result: {numpy_result[:20]}...") + print(f"C result: {c_result[:20]}...") + + print(f"NumPy time: {numpy_time:.6f}s") + print(f"C time: {c_time:.6f}s") + print(f"Speedup: {numpy_time / c_time:.2f}x") + + return results_match + +def main(): + """Run all test cases.""" + # Simple predefined test case + test_case_1 = [0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0] + filter_size_1 = 3 + + # Small random test case + np.random.seed(42) + test_case_2 = list(np.random.choice([0.0, 1.0], size=100)) + filter_size_2 = 4 + + # Medium random test case + test_case_3 = list(np.random.choice([0.0, 1.0], size=1000)) + filter_size_3 = 5 + + # Large random test case + test_case_4 = list(np.random.choice([0.0, 1.0], size=10000)) + filter_size_4 = 10 + + # Run test cases + all_passed = True + all_passed &= run_test_case(test_case_1, filter_size_1, "Simple Test Case") + all_passed &= run_test_case(test_case_2, filter_size_2, "Small Random Test (n=100)") + all_passed &= run_test_case(test_case_3, filter_size_3, "Medium Random Test (n=1000)") + all_passed &= run_test_case(test_case_4, filter_size_4, "Large Random Test (n=10000)") + + if all_passed: + print("\n✅ All tests passed! The C implementation works correctly.") + else: + print("\n❌ Some tests failed! Check the output above for details.") + +if __name__ == "__main__": + main() diff --git a/vocabulary.json b/vocabulary.json new file mode 100644 index 0000000..967faee --- /dev/null +++ b/vocabulary.json @@ -0,0 +1,90 @@ +{ + "utterances":{ + "status_intent":["how is dad doing", "how is dad", "how's my dad doing", "how is that doing","how's dad doing","how is my dad doing", "dad doing"], + "status_intent_f":["how is mom doing", "how is mom", "how's my mom doing", "how's mom doing","how is my mom doing", "mom doing", "how's my mom doing"], + "location_intent":["where is he now"], + "location_intent_f":["where is she now"], + "logging_intent":["log in", "login", "loggin", "logging"], + "temperature_intent":["what is the temperature there","what's the temperature there","what's the temperature","where is the temperature","what is temperature there", "temperature there"], + "sleeping_intent":["how is his sleep", "how was his sleep", "how was his night"], + "sleeping_intent_f":["how is her sleep", "how was her sleep", "how was her night"], + "restroom_intent":["how about bathroom use", "how about restroom use"], + "shower_intent":["how often is dad taking shower", "how often is that taking shower", "how often is he taking shower"], + "shower_intent_f":["how often is mom taking shower", "how often is she taking shower"], + "environment_intent":["how is environment there"], + "mold_intent":["can you smell any mold", "mold"], + "visitors_intent":["were there any visitors recently", "visitors", "visitor"], + "oxygen_intent":["what is his oxygen level", "what is his oxygen"], + "oxygen_intent_f":["what is her oxygen level", "what is her oxygen"], + "hr_intent":["what was last heart rate", "what is the heartrate", "heart rate", "heartrate"], + "bp_intent":["what is his blood pressure", "what is his pressure", "his blood pressure"], + "bp_intent_f":["what is her blood pressure", "what is her pressure", "her blood pressure"], + "ekg_intent":["what is his ekg", "what is his heartbeam ekg", "what is his heartbeat ekg", "what is his heart being ekg", "his ekg"], + "ekg_intent_f":["what is her ekg", "what is her heartbeam ekg", "what is her heartbeat ekg", "what is her heart being ekg", "her ekg", "ekg"], + "kitchen_intent":["when was kitchen used", "was stowe left on", "kitchen", "stowe"], + "show_activity_report_intent":["show activity report", "show activity", "so activity"], + "activity_level_intent":["what is his activity level this week", "his activity level"], + "activity_level_intent_f":["what is her activity level this week", "her activity level"], + "activity_level_compare_intent":["what is his activity level this week compared to last year"], + "activity_level_compare_intent_f":["what is her activity level this week compared to last year"], + "show_sleep_report_intent":["show sleep report", "show sleep", "so sleep"], + "show_air_report_intent":["show air report", "show airport", "so air", "show air"], + "connect_intent":["connect to closest device", "connect device", "connect"], + "disconnect_intent":["disconnect device", "disconnect"], + "week_intent":["show me his week activity", "show me his weekly activity", "show me his weak activity", "show his week"], + "week_intent_f":["show me her week activity", "show me her weekly activity", "show me her weak activity", "show her week"] + }, + "keywords":{ + "help_intent":["help"], + "status_intent":["doing", "status"], + "location_intent":["where","location"], + "temperature_intent":["temperature"], + "sleeping_intent":["sleep", "night"], + "restroom_intent":["bathroom", "restroom"], + "shower_intent":["shower"], + "environment_intent":["environment"], + "mold_intent":["mold"], + "visitors_intent":["visit", "visitor", "visitors"], + "kitchen_intent":["stove", "kitchen"], + "oxygen_intent":["oxygen"], + "hr_intent":["heart rate"], + "bp_intent":["pressure"], + "ekg_intent":["ekg"], + "week_intent":["week"] + }, + "intents":{ + "help_intent":["#HELP#"], + "status_intent":["#STATUS#"], + "status_intent_f":["#STATUS_F#"], + "sleeping_intent":["#SLEEP#"], + "sleeping_intent_f":["#SLEEP_F#"], + "restroom_intent":["#BATHROOM#"], + "logging_intent":["#LOGIN#"], + "shower_intent":["#SHOWER#"], + "shower_intent_f":["#SHOWER_F#"], + "environment_intent":["#ENVIRONMENT#"], + "temperature_intent":["#TEMPERATURE#"], + "location_intent":["#LOCATION#"], + "mold_intent":["#MOLD#"], + "visitors_intent":["#VISITORS#"], + "kitchen_intent":["#KITCHEN#"], + "oxygen_intent":["#OXYGEN#"], + "oxygen_intent_f":["#OXYGEN_F#"], + "hr_intent":["#HEART_RATE#"], + "bp_intent":["#BLOOD_PRESSURE#"], + "bp_intent_f":["#BLOOD_PRESSURE_F#"], + "ekg_intent":["#EKG#"], + "ekg_intent_f":["#EKG_F#"], + "activity_level_intent":["#ACTIVITY#"], + "activity_level_intent_f":["#ACTIVITY_F#"], + "activity_level_compare_intent":["#ACTIVITY_COMPARE#"], + "activity_level_compare_intent_f":["#ACTIVITY_COMPARE_F#"], + "show_activity_report_intent":["#SHOW_ACTIVITY#"], + "show_sleep_report_intent":["#SHOW_SLEEP#"], + "show_air_report_intent":["#SHOW_AIR#"], + "connect_intent":["#BT_CONNECT#"], + "disconnect_intent":["#BT_DISCONNECT#"], + "week_intent":["#WEEK#"], + "week_intent_f":["#WEEK_F#"] + } +} diff --git a/well-api.py b/well-api.py new file mode 100644 index 0000000..132e85c --- /dev/null +++ b/well-api.py @@ -0,0 +1,17162 @@ +#!/usr/bin/env python3 + +import os +import sys +import ast +from ast import literal_eval +import falcon +from falcon import HTTP_200, HTTP_400, HTTP_401, HTTP_500 +import json +import logging +from dotenv import load_dotenv +import calendar +import io +import datetime +from datetime import timedelta, timezone +import jwt +import psycopg2 +import html +import re +import fnmatch +import traceback +import time +import pytz +from PIL import Image, ImageDraw, ImageFont +import paho.mqtt.client as mqtt +import ssl +import hashlib +import itertools +from collections import defaultdict, deque +import warnings +from io import BytesIO +import zipfile +from minio import Minio +from minio.error import S3Error +import numpy as np +import cv2 +from sklearn.mixture import GaussianMixture +import openai +from openai import OpenAI +from typing import List, Tuple +import redis +import base64 +import requests + +# Try to import the module +try: + from filter_short_groups import filter_short_groups_c + print("Successfully imported filter_short_groups_c") +except ImportError as e: + print(f"Error importing module: {e}") + exit(1) + +device_lookup_cache = {} +threshold_cache = {} + +st = 0 +if True: + + #from scipy import interpolate + from scipy.optimize import curve_fit + from scipy import stats + import pandas as pd + #from scipy.signal import savgol_filter + +EnablePlot = False #True + +if EnablePlot: + import matplotlib + matplotlib.use('Agg') # Set the backend before importing pyplot + import matplotlib.pyplot as plt + from matplotlib.colors import LinearSegmentedColormap + import matplotlib.dates as mdates + +# Configure logging +logging.basicConfig( + level=logging.DEBUG,# .ERROR, + format='%(asctime)s [%(levelname)s] %(message)s' +) +logger = logging.getLogger(__name__) + +location_names = {-1:"All",0:"?",5:"Office",6:"Hallway",7:"Garage",8:"Outside",9:"Conference Room",10:"Room",34:"Kitchen", + 56:"Bedroom",78:"Living Room",102:"Bathroom",103:"Dining Room",104:"Bathroom Main",105:"Bathroom Guest", + 106:"Bedroom Master", 107:"Bedroom Guest", 108:"Conference Room", 109:"Basement", 110:"Attic", 200:"Other"} + +#Loc2Color = {"?":(0,0,0),"Office":(255,255,0),"Hallway":(128,128,128),"Garage":(128,0,0),"Outside":(0,0,0),"Conference Room":(0,0,128), + #"Room":(64,64,64),"Kitchen":(255,0,0),"Bedroom":(16,255,16),"Living Room":(160,32,240),"Bathroom":(0,0,255), + #"Dining Room":(255,128,0),"Bathroom Main":(16,16,255), "Bedroom Master":(0,255,0),"Bathroom Guest":(32,32,255), + #"Bedroom Guest":(32,255,32), "Basement":(64,64,64), "Attic":(255,165,0), "Other":(192,192,192)} + +Loc2Color = {"Bedroom":((16,255,16),0),"Bedroom Master":((0,255,0),0),"Bedroom Guest":((32,255,32),0),"Bathroom":((0,0,255),1), + "Bathroom Main":((16,16,255),1),"Bathroom Guest":((32,32,255),1),"Kitchen":((255,0,0),2),"Dining Room":((255,128,0),3),"Dining":((255,128,0),3), + "Office":((255,255,0),4),"Conference Room":((0,0,128),5),"Conference":((0,0,128),5),"Room":((64,64,64),6),"Living Room":((160,32,240),7),"Living":((160,32,240),7),"Hallway":((128,128,128),8), + "Garage":((128,0,0),9),"Basement":((64,64,64), 10),"Attic":((255,165,0), 11),"Other":((192,192,192),12),"?":((0,0,0),13),"Outside":((0,0,0),14)} + + +s_table = ["temperature", "humidity", "pressure", "light", "radar", "voc0", "voc1", "voc2", "voc3", "voc4", "voc5", "voc6", "voc7", "voc8", "voc9"] # derived +smells_table = ["s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s9"] # derived + +Consolidataed_locations = {"?":"Room","Office":"Office","Hallway":"Hallway","Garage":"Garage","Outside":"Outside","Conference Room":"Office", + "Room":"Room","Kitchen":"Kitchen","Bedroom":"Bedroom","Living Room":"Living Room","Bathroom Guest":"Bathroom", + "Dining Room":"Dining Room","Bathroom":"Bathroom", "Bathroom Main":"Bathroom","Bedroom Master":"Bedroom", + "Bedroom Guest":"Bedroom", "Basement":"Basement", "Attic":"Attic", "Other":"Room"} + +AveragePercentPerLocation = {"Bedroom":[29, 37.5], "Bathroom":[2, 4], "Office":[10, 40],"Hallway":[0.1, 0.2],"Garage":[2, 3],"Outside":[5, 10], + "Room":[5, 10],"Kitchen":[5, 12.5], "Living Room":[5, 10], + "Dining Room":[5, 10], "Basement":[0, 0.2], "Attic":[0, 0.2]} + +location_indexes = {} + +for i in location_names: + location_indexes[location_names[i]] = i + + + +# HTTP Status codes +HTTP_200 = falcon.HTTP_200 +HTTP_201 = falcon.HTTP_201 +HTTP_400 = falcon.HTTP_400 +HTTP_401 = falcon.HTTP_401 +HTTP_404 = falcon.HTTP_404 +HTTP_500 = falcon.HTTP_500 + +load_dotenv() + +DB_NAME = os.getenv('DB_NAME') +DB_USER = os.getenv('DB_USER') +DB_PASSWORD = os.getenv('DB_PASSWORD') +DB_HOST = os.getenv('DB_HOST') +DB_PORT = os.getenv('DB_PORT') +MINIO_ACCESS_KEY = os.getenv('MINIO_ACCESS_KEY') +MINIO_SECRET_KEY = os.getenv('MINIO_SECRET_KEY') +MINIO_HOST = os.getenv('MINIO_HOST') +MINIO_PORT = os.getenv('MINIO_PORT') +DAILY_MAPS_BUCKET_NAME = os.getenv('DAILY_MAPS_BUCKET_NAME') +JWT_SECRET = os.getenv('JWT_SECRET') +MASTER_ADMIN = os.getenv('MASTER_ADMIN') +MASTER_PS = os.getenv('MASTER_PS') + +OPENAI_API_KEY = os.getenv('OPENAI_API_KEY') +model_engine = os.getenv('OPENAI_API_MODEL_ENGINE') + +# Redis Configuration +REDIS_HOST = os.getenv('REDIS_HOST', 'localhost') +REDIS_PORT = int(os.getenv('REDIS_PORT')) +REDIS_DB = int(os.getenv('REDIS_DB', 0)) +REDIS_PASSWORD = os.getenv('REDIS_PASSWORD', None) + +ENABLE_AUDIO_PLAYBACK = True +OPT_IN_KEYWORD = "WELLNUOJOIN" +DEFAULT_TTS_VOICE = "female" +DEFAULT_TTS_LANGUAGE = "en-US" +CLIENT_STATE_PREFIX = "app_state" +TELNYX_API_KEY = os.getenv('TELNYX_API_KEY') +TELNYX_API_BASE_URL = os.getenv("TELNYX_API_BASE_URL") + +logger.debug(f"REDIS_PORT: {REDIS_PORT}") +logger.debug(f"TELNYX_API_KEY: {TELNYX_API_KEY}") +logger.debug(f"TELNYX_API_BASE_URL: {TELNYX_API_BASE_URL}") + +redis_host = os.getenv('REDIS_HOST', '192.168.68.70') +redis_host = '192.168.68.70' + +use_pdb = True +debug = False +debug_string = "" +logger.debug(f"Environment variables: {os.environ}") +filesDir = "/home/app/well_web_storage" #os.path.dirname(os.path.realpath(__file__)) +min_io_address = MINIO_HOST + ":" + MINIO_PORT + +miniIO_blob_client = Minio(min_io_address, access_key=MINIO_ACCESS_KEY, secret_key=MINIO_SECRET_KEY, secure=False) + +user_id_2_user = {} +smell_min = 1 +no_smell = 102400000 +smell_max = no_smell - 1 +sensor_legal_values = {"radar": (0,1000, 1), "co2": (smell_min, smell_max, 31), "humidity": (1,99, 31), "light": (0, 4095, 1), + "pressure": (0, 10000, 5), "temperature": (1, 60, 31), "voc": (smell_min, smell_max, 31), "voc0": (smell_min, smell_max, 31), + "voc1": (smell_min, smell_max, 31), "voc2": (smell_min, smell_max, 31), "voc3": (smell_min, smell_max, 31), "voc4": (smell_min, smell_max, 31), + "voc5": (smell_min, smell_max, 31), "voc6": (smell_min, smell_max, 31), "voc7": (smell_min, smell_max, 31), "voc8": (smell_min, smell_max, 31), "voc9": (smell_min, smell_max, 31), + "s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + +smell_legal_values = {"s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + + +def GetRedisInt(key_name): + try: + result = int(redis_conn.get(key_name).decode('utf-8')) + except: + result = None + return result + +def GetRedisFloat(key_name): + try: + result = float(redis_conn.get(key_name).decode('utf-8')) + except: + result = None + + return result + +def GetRedisString(key_name): + try: + result = redis_conn.get(key_name).decode('utf-8') + except: + result = None + return result + +def GetRedisMap(key_name): + try: + result_bytes = redis_conn.hgetall(key_name) + result = {k.decode('utf-8'): v.decode('utf-8') for k, v in result_bytes.items()} + except: + result = {} + return result + + + +def read_file(file_name, source = "LOCAL", type_ = "TEXT", bucket_name="daily-maps"): + + blob_data = "" + if source == "MINIO": + blob_data = ReadObjectMinIO(bucket_name, file_name) + elif source == "LOCAL": + login_file = os.path.join(filesDir, file_name) + login_file = login_file.replace("\\","/") + logger.debug(f"Full file path: {login_file}") + logger.debug(f"File exists: {os.path.exists(login_file)}") + #print(login_file) + if type_ == "TEXT": + with open(login_file, encoding="utf8") as f: + blob_data = f.read() + else: + with open(login_file, 'rb') as f: + blob_data = f.read() + + elif source == "AZURE": + try: + blob_data = ""#container_client.download_blob(file_name).readall() + except Exception as err: + logger.error("Not reading Azure blob "+str(err)) + blob_data = "" + return blob_data + else: + pass + return blob_data + + +def match_with_wildcard(string, pattern): + return fnmatch.fnmatchcase(string, pattern) + +def extract_differing_part(string, pattern): + regex_pattern = re.escape(pattern).replace(r'\*', r'(.+)') + match = re.match(regex_pattern, string) + if match: + return match.group(1) + else: + return None + +def get_db_connection(): + return psycopg2.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASSWORD, host=DB_HOST, port=DB_PORT) + + +def generate_token(username): + expiration = datetime.datetime.now(timezone.utc) + timedelta(hours=24) + token = jwt.encode({"username": username, "exp": expiration}, JWT_SECRET, algorithm="HS256") + return token + + +def verify_token(token): + try: + payload = jwt.decode(token, JWT_SECRET, algorithms=["HS256"]) + return payload + except jwt.ExpiredSignatureError: + return None + except jwt.InvalidTokenError: + return None + +def SmartSplit(data_string): + """ + Splits a comma-separated string into a list, properly handling nested structures + and converting values to appropriate Python types using only the ast library. + """ + if not data_string: + return [] + + # Remove trailing comma if present + data_string = data_string.rstrip(',') + + items = [] + current_item = "" + bracket_count = 0 + in_quotes = False + quote_char = None + + i = 0 + while i < len(data_string): + char = data_string[i] + + # Handle quotes + if char in ('"', "'") and (i == 0 or data_string[i-1] != '\\'): + if not in_quotes: + in_quotes = True + quote_char = char + elif char == quote_char: + in_quotes = False + quote_char = None + + # Track brackets only when not in quotes + if not in_quotes: + if char in '[{(': + bracket_count += 1 + elif char in ']}': + bracket_count -= 1 + + # Split on comma only when not inside brackets/quotes + if char == ',' and bracket_count == 0 and not in_quotes: + items.append(current_item.strip()) + current_item = "" + else: + current_item += char + + i += 1 + + # Add the last item + if current_item.strip(): + items.append(current_item.strip()) + + # Convert each item using ast.literal_eval when possible + result = [] + for item in items: + if item == '': + result.append(None) + else: + try: + # Try to evaluate as Python literal + converted = ast.literal_eval(item) + result.append(converted) + except (ValueError, SyntaxError): + # If it fails, keep as string + result.append(item) + + return result + + +def SaveObjectInBlob(file_name, obj): + """ + Saves a Python object to MinIO blob storage using JSON serialization + + Args: + file_name (str): Name of the file to save in blob storage + obj: Python object to serialize and save + """ + try: + # Convert object to JSON string + json_str = json.dumps(obj) + # Convert string to bytes + json_bytes = json_str.encode('utf-8') + + # Save to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(json_bytes), + len(json_bytes) + ) + return True + except Exception as e: + logger.error(f"Error saving object to blob: {traceback.format_exc()}") + return False + +def SaveGenericObjectInBlob(bucket_name, file_name, obj): + """ + Saves a Python object to MinIO blob storage using JSON serialization + + Args: + file_name (str): Name of the file to save in blob storage + obj: Python object to serialize and save + """ + try: + # Convert object to JSON string + json_str = json.dumps(obj) + # Convert string to bytes + json_bytes = json_str.encode('utf-8') + + # Save to MinIO + miniIO_blob_client.put_object( + bucket_name, + file_name, + io.BytesIO(json_bytes), + len(json_bytes) + ) + return True + except Exception as e: + logger.error(f"Error saving object to blob: {traceback.format_exc()}") + return False + +def ReadObjectMinIO(bucket_name, file_name): + try: + # Retrieve the object data + response = miniIO_blob_client.get_object(bucket_name, file_name) + + # Read the data from response + data_bytes = response.read() + + # Convert bytes to string and then load into a dictionary + data_string = data_bytes.decode('utf-8') + + # Don't forget to close the response + response.close() + response.release_conn() + + return data_string + + except S3Error as e: + logger.error(f"An error occurred while reading {file_name}: {e}") + return None + except: + logger.error(f"An error occurred while decoding {file_name}") + return None + +#def ReadObjectMinIO(bucket_name, file_name): + #try: + ## Retrieve the object data + #response = miniIO_blob_client.get_object(bucket_name, file_name) + + ## Read the data from response + #data_bytes = response.read() + + ## Convert bytes to string and then load into a dictionary + #data_string = data_bytes.decode('utf-8') + + ## Don't forget to close the response + #response.close() + #response.release_conn() + + #return data_string + + #except S3Error as e: + #logger.error(f"An error occurred: {e}") + #return None + + +def package_response_C(payload, status_code=HTTP_200): + """Package response in a standard format""" + if status_code == HTTP_200: + return {"status": "success", "data": payload} + else: + return {"status": "error", "message": payload, "code": status_code} + +def package_response(content, status=falcon.HTTP_200): + """ + Format the HTTP response. + + :param content: The content to be returned in the response. + :param status: HTTP status code (default is 200 OK). + :return: A dictionary containing the formatted response. + """ + if isinstance(content, str): + # If content is a string, try to parse it as JSON + try: + response = json.loads(content) + except json.JSONDecodeError: + # If it's not valid JSON, use it as message + response = {"message": content} + elif isinstance(content, dict): + # If content is a dictionary, serialize it with datetime handling + try: + # First serialize to JSON string with datetime handling + json_str = json.dumps(content, default=datetime_handler) + # Then parse back to dict + response = json.loads(json_str) + except TypeError as e: + response = {"message": f"Serialization error: {str(e)}"} + else: + # For any other type, convert to string and use as message + response = {"message": str(content)} + + # Add status code to the response + response["status"] = status + + # Handle specific status codes + if status == falcon.HTTP_400: + response["error"] = "Bad Request" + elif status == falcon.HTTP_401: + response["error"] = "Unauthorized" + elif status == falcon.HTTP_500: + response["error"] = "Internal Server Error" + + return response + +def GetPriviledges(conn, user_name, password): + sql = "SELECT key, access_to_deployments, user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None and result != []: + if result[0][0] == password: + return result[0][1], result[0][2] + else: + return "0", "0" + else: + return "0", "0" + +def GetPriviledgesOnly(user): + with get_db_connection() as conn: + if isinstance(user, (int)) or user.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def GetUserId(user_name): + with get_db_connection() as conn: + sql = "SELECT user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def GetNameFromUserId(user_id): + with get_db_connection() as conn: + sql = f"SELECT user_name, first_name, last_name FROM public.person_details WHERE user_id = {user_id}" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0] + else: + return None + + + +def ListDeployments(priviledges, user_id): + + global user_id_2_user + + conn = get_db_connection() + + if priviledges == "-1": + sql = "SELECT * FROM public.deployments ORDER BY deployment_id ASC;" + else: + sql = f"SELECT * FROM public.deployments WHERE deployment_id IN ({priviledges}) OR user_edit = {user_id} ORDER BY deployment_id ASC;" + + try: + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + complete_result = [] + else: + deployment_ids = [] + deployment_records_dict = {} + for record in result: + deployment_id = record[0] + deployment_ids.append(deployment_id) + deployment_records_dict[deployment_id] = record + + sql = f"SELECT * FROM public.deployment_details WHERE deployment_id IN ({','.join(map(str, deployment_ids))}) ORDER BY deployment_id ASC;" + cur.execute(sql) + details_result = cur.fetchall() + + beneficiary_ids = [] + + for record_details in details_result: + if record_details[1] != None and record_details[1] not in beneficiary_ids: + beneficiary_ids.append(record_details[1]) + + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({','.join(map(str, beneficiary_ids))});" + + + cur.execute(sql) + user_id_2_user = {} + users = cur.fetchall()#cur.fetchone() + for usr_record in users: + user_id_2_user[usr_record[0]] = usr_record + + complete_result = [] + if details_result != None: + for record_details in details_result: + deployment_record = deployment_records_dict[record_details[0]] + complete_record = {'deployment_id': record_details[0], 'beneficiary_id': record_details[1], 'caretaker_id': record_details[2], + 'owner_id': record_details[3], 'installer_id': record_details[4], + 'address_street': record_details[6], 'address_city': record_details[7], 'address_zip': record_details[8], + 'address_state': record_details[9], 'address_country': record_details[10], + 'devices': record_details[5], 'wifis': record_details[11], 'persons': deployment_record[4], 'gender': deployment_record[5], + 'race': deployment_record[6], 'born': deployment_record[7], 'pets': deployment_record[8], 'time_zone': deployment_record[3] + } + complete_result.append(complete_record) + except: + logger.debug(f"Error: {traceback.format_exc()}") + return complete_result + +def ListCaretakers(privileges, user_name): + + conn = get_db_connection() + if privileges == "-1": + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%2%' ORDER BY last_name;" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + else: + #we need to check if + sql = f"SELECT * FROM public.person_details WHERE user_name = '{user_name}';" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + pass + return result + +def ListBeneficiaries(privilidges, user_info): + + conn = get_db_connection() + with conn.cursor() as cur: + + if (privilidges == "-1"): + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + else: + #we need to find beneficiaries from list of deployments + sql = f"SELECT beneficiary_id FROM public.deployment_details WHERE deployment_id IN ({privilidges}) ORDER BY deployment_id ASC;" + cur.execute(sql) + result1 = cur.fetchall()#cur.fetchone() + if result1 == None: + result = [] + return result + beneficiaries = ",".join(str(x[0]) for x in result1) + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({beneficiaries}) OR user_edit = {user_info} AND role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + logger.debug(f"sql= {sql}") + + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def UserDetails(user_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'person_details';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.person_details WHERE user_id = "+user_id + + caretaker_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + caretaker_record[field[0]] = result[cnt] + cnt += 1 + + return caretaker_record + +def DeviceDetails(mac): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'devices';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.devices WHERE device_mac = '" + mac + "'" + + device_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + device_record[field[0]] = result[cnt] + cnt += 1 + + return device_record + +def GetDeviceDetailsSingle(device_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'devices';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.devices WHERE device_id = '" + device_id + "'" + + device_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + device_record[field[0]] = result[cnt] + cnt += 1 + + return device_record + + +def DeploymentDetails(deployment_id): + + deployment_record = {} + + conn = get_db_connection() + + with conn.cursor() as cur: + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployments';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployments WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployment_details';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployment_details WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + + return deployment_record + +def ValidUser(user_name, password): + + + if use_pdb: + with get_db_connection() as db_conn: + priviledges, user_id= GetPriviledges(db_conn, user_name, password) + return priviledges, user_id + + else: + pass + #container = GetReference("/MAC") + #try: + ## We can do an efficient point read lookup on partition key and id + ##response = container.read_item(item="64B708896BD8_temperature_2024-01-01_00", partition_key="64B708896BD8") #OK + ##items = query_items(container, '64B708896BD8') #Too slow + ##AddToLog("1!") + #privileges = GetCaretakers(container, email, password) + #return privileges + + #except Exception as err: + #AddToLog("Error !1 "+str(err)) + + +def GetMaxRole(user_name): + + with get_db_connection() as db_conn: + + sql = "SELECT role_ids FROM public.person_details WHERE user_name = '" + user_name + "'" + + with db_conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None and result != []: + return str(result[0]) + return "" + + +def SelectOption(html_code, select_id, selected_item): + """ + Modifies HTML code to set the selected attribute for a specific option in a select element. + + Args: + html_code (str): Original HTML code + select_id (str): ID of the select element to modify + selected_item (str or int): Value of the option to be selected + + Returns: + str: Modified HTML code with the selected attribute added + """ + # Convert selected_item to string for comparison + selected_item = str(selected_item) + + # Find the select element with the given ID + select_pattern = rf']*id=[\'"]?{select_id}[\'"]?[^>]*>(.*?)' + select_match = re.search(select_pattern, html_code, re.IGNORECASE | re.DOTALL) + + if not select_match: + return html_code # Return unchanged if select element not found + + select_content = select_match.group(0) + select_content_orig = select_content + # Remove any existing selected attributes + select_content = re.sub(r'\s+selected(?=[>\s])', '', select_content, flags=re.IGNORECASE) + + # Add selected attribute to the matching option + def replace_option(match): + value = re.search(r'value=[\'"]?([^\'">\s]+)', match.group(0)) + if value and value.group(1) == selected_item: + # Add selected attribute before the closing > + return match.group(0).rstrip('>') + ' selected>' + return match.group(0) + + modified_select = re.sub( + r']*>', + replace_option, + select_content + ) + + # Replace the original select element with the modified one + return html_code.replace(select_content_orig, modified_select) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if device_id == None or device_id == 0: + return 1 + + try: + + + sql = f""" + UPDATE public.devices + SET + radar_threshold = '[{TR},{BR},{TLIFE},{BLIFE}]' + WHERE device_id = {device_id}; + """ + + logger.debug(f"sql= {sql}") + # Execute update query + print(sql) + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + logger.debug("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + + +def StoreBeneficiary2DB(parameters, editing_user_id, user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + error_string = "" + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + email = '{CleanObject(parameters.get('email'))}', + user_name = '{CleanObject(parameters.get('new_user_name'))}', + first_name = '{CleanObject(parameters.get('first_name'))}', + last_name = '{CleanObject(parameters.get('last_name'))}', + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + time_edit = {current_epoch_time}, + user_edit = {user_id}, + role_ids = '{CleanObject(parameters.get('role_ids'))}', + phone_number = '{CleanObject(parameters.get('phone_number'))}', + picture = '{CleanObject(parameters.get('picture'))}', + key = '{CleanObject(parameters.get('key'))}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{CleanObject(parameters.get('role_ids'))}', '{CleanObject(parameters.get('email'))}', '{CleanObject(parameters.get('new_user_name'))}', + '{CleanObject(parameters.get('first_name'))}', '{CleanObject(parameters.get('last_name'))}', '{CleanObject(parameters.get('address_street'))}', + '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}', {current_epoch_time}, {user_id}, '{CleanObject(parameters.get('phone_number'))}', + '{CleanObject(parameters.get('picture'))}', '{CleanObject(parameters.get('key'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1, error_string + except Exception as err: + error_string = traceback.format_exc() + AddToLog(error_string) + return 0, error_string + + +def DeleteRecordFromDB(form_data): + + caretaker = form_data['user_name'] + privileges = GetPriviledgesOnly(caretaker) + + if privileges != "-1": + AddToLog("Forbidden!") + return 0 + + conn = get_db_connection() + cur = conn.cursor() + function = form_data.get('function') + if function == "deployment_delete": + user_id = form_data['user_id'] + editing_deployment_id = form_data['editing_deployment_id'] + priviledges = form_data['priviledges'] + if editing_deployment_id == None or editing_deployment_id == "" or editing_deployment_id == "0": + AddToLog("deployment_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + cur.execute(sql) + result = cur.fetchone() + if priviledges != "-1": + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + + elif function == "device_delete": + user_id = form_data['user_id'] + editing_device_id = form_data['editing_device_id'] + priviledges = form_data['priviledges'] + if editing_device_id == None or editing_device_id == "" or editing_device_id == "0": + AddToLog("editing_device_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE device_id = {editing_device_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + #else: + ##lets check if user_edit = user_id + #sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + #cur.execute(sql) + #result = cur.fetchone() + #if priviledges != "-1": + #if result[0] != int(user_id): + #cur.close() + #conn.close() + #return 0 + + #sql = f""" + #DELETE FROM public.deployments WHERE device_id = {editing_device_id} + #""" + #logger.debug(f"sql= {sql}") + ## Execute update query + #cur.execute(sql) + + #conn.commit() + + ## Close the cursor and connection + #cur.close() + #conn.close() + + #AddToLog("Deleted!") + #return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + else: + + #user_id = form_data['user_id'] + editing_user_id = form_data['delete_user_id'] + if editing_user_id == None or editing_user_id == "" or editing_user_id == "0": + AddToLog("user_id is not defined") + cur.close() + conn.close() + return 0 + try: + if privileges == "-1": #user_id == "-1": + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.person_details WHERE user_id = '{editing_user_id}'" + cur.execute(sql) + result = cur.fetchone() + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + +def StoreCaretaker2DB(parameters, editing_user_id, user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + role_ids = '{parameters.get('role_ids')}', + access_to_deployments = '{parameters.get('access_to_deployments')}', + email = '{parameters.get('email')}', + user_name = '{parameters.get('new_user_name')}', + first_name = '{parameters.get('first_name')}', + last_name = '{parameters.get('last_name')}', + address_street = '{parameters.get('address_street')}', + address_city = '{parameters.get('address_city')}', + address_zip = '{parameters.get('address_zip')}', + address_state = '{parameters.get('address_state')}', + address_country = '{parameters.get('address_country')}', + time_edit = {current_epoch_time}, + user_edit = {user_id}, + phone_number = '{parameters.get('phone_number')}', + picture = '{parameters.get('picture')}', + key = '{parameters.get('key')}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{parameters.get('role_ids')}', '{parameters.get('access_to_deployments')}', '{parameters.get('email')}', '{parameters.get('new_user_name')}', '{parameters.get('first_name')}', + '{parameters.get('last_name')}', '{parameters.get('address_street')}', '{parameters.get('address_city')}', '{parameters.get('address_zip')}', '{parameters.get('address_state')}', + '{parameters.get('address_country')}', {current_epoch_time}, {user_id}, '{parameters.get('phone_number')}', '{parameters.get('picture')}', '{parameters.get('key')}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def StoreFlow2DB(user_name, time_s, flow_json): + + conn = get_db_connection() + cur = conn.cursor() + + query = f""" + INSERT INTO public.node_reds (user_name, last_activity, flow) + VALUES ('{user_name}', {time_s}, '{flow_json}') + ON CONFLICT (user_name) + DO UPDATE SET + last_activity = EXCLUDED.last_activity, + flow = EXCLUDED.flow + """ + logger.debug(f"sql= {query}") + + try: + #cur.execute(query, (user_name, time_s, flow_json)) + cur.execute(query) + conn.commit() + logger.debug(f"OK!") + return True + except Exception as e: + conn.rollback() + print(f"Error storing flow: {e}") + logger.debug(f"Error storing flow: {e}") + return False + finally: + cur.close() + conn.close() + logger.debug(f"Closing!") + +def StoreAlarms2DB(deployment_id, device_id, deployment_alarms_json, device_alarms_json): + + conn = get_db_connection() + cur = conn.cursor() + + # Extract the overlapping list + + try: + sql = f""" + UPDATE public.deployments SET alarm_details = '{CleanObject(deployment_alarms_json)}' WHERE deployment_id = {deployment_id}; + """ + + logger.debug(f"sql= {sql}") + cur.execute(sql) + conn.commit() + + sql1 = f""" + UPDATE public.devices SET alert_details = '{CleanObject(device_alarms_json)}' WHERE device_id = {device_id}; + """ + + logger.debug(f"sql= {sql1}") + cur.execute(sql1) + conn.commit() + + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + return 0 + +def CleanObject(object_in, typee = "s"): + + if typee == "n": + res = 0 + if object_in == None or object_in == "": + return 0 + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + else: + res = "" + if object_in == None: + return "" + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + return object_in + +def StoreDeployment2DB(parameters, editing_deployment_id): + conn = get_db_connection() + cur = conn.cursor() + + if editing_deployment_id == None or editing_deployment_id == "": + editing_deployment_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployments + SET + persons = {CleanObject(parameters.get('persons'), "n")}, + gender = {CleanObject(parameters.get('gender'), "n")}, + race = {CleanObject(parameters.get('race'), "n")}, + born = {CleanObject(parameters.get('born'), "n")}, + pets = {CleanObject(parameters.get('pets'), "n")}, + time_zone_s = '{CleanObject(parameters.get('time_zone_s'))}', + user_edit = {CleanObject(parameters.get('user_id'), "n")}, + time_edit = {current_epoch_time} + WHERE deployment_id = {CleanObject(editing_deployment_id, "n")}; + """ + + else: + sql = f""" + INSERT INTO public.deployments + (persons, gender, race, born, pets, time_zone_s, user_edit, time_edit) + VALUES + ({CleanObject(parameters.get('persons'), "n")}, {CleanObject(parameters.get('gender'), "n")}, {CleanObject(parameters.get('race'), "n")}, + {CleanObject(parameters.get('born'), "n")}, {CleanObject(parameters.get('pets'), "n")}, '{CleanObject(parameters.get('time_zone_s'))}', + {CleanObject(parameters.get('user_id'), "n")}, {current_epoch_time}) + RETURNING deployment_id; + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + if editing_deployment_id == "0": + new_deployment_id = cur.fetchone()[0] + # Commit the changes to the database + conn.commit() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployment_details + SET + beneficiary_id = {CleanObject(parameters.get('beneficiary_id'), "n")}, + caretaker_id = {CleanObject(parameters.get('caretaker_id'), "n")}, + owner_id = {CleanObject(parameters.get('owner_id'), "n")}, + installer_id = {CleanObject(parameters.get('installer_id'), "n")}, + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + + wifis = '{CleanObject(parameters.get('wifis'))}', + devices = '{CleanObject(parameters.get('devices'))}', + lat = {CleanObject(parameters.get('lat'), "n")}, + lng = {CleanObject(parameters.get('lng'), "n")}, + gps_age = {CleanObject(parameters.get('gps_age'), "n")} + + WHERE deployment_id = {editing_deployment_id}; + """ + + else: + sql = f""" + INSERT INTO public.deployment_details + (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, address_street, address_city, address_zip, address_state, address_country) + VALUES + ({new_deployment_id}, {CleanObject(parameters.get('beneficiary_id'), "n")}, {CleanObject(parameters.get('caretaker_id'), "n")}, {CleanObject(parameters.get('owner_id'), "n")}, {CleanObject(parameters.get('installer_id'), "n")}, + '{CleanObject(parameters.get('address_street'))}', '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + + + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def StoreDevice2DB(parameters, editing_device_id): + + # Create a device object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_device_id == None or editing_device_id == "": + editing_device_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_device_id != "0": + sql = f""" + UPDATE public.devices + SET + device_mac = '{CleanObject(parameters.get('device_mac'))}', + well_id = '{CleanObject(parameters.get('well_id'))}', + description = '{CleanObject(parameters.get('description'))}', + location = '{CleanObject(parameters.get('location'))}', + close_to = '{CleanObject(parameters.get('close_to'))}', + radar_threshold = '{CleanObject(parameters.get('radar_threshold'))}', + temperature_calib = '{CleanObject(parameters.get('temperature_calib'))}', + humidity_calib = '{CleanObject(parameters.get('humidity_calib'))}' + WHERE device_id = {editing_device_id}; + """ + + else: + sql = f""" + INSERT INTO public.devices + (device_mac, well_id, description, location, close_to, radar_threshold, temperature_calib, humidity_calib) + VALUES + ('{CleanObject(parameters.get('device_mac'))}', '{CleanObject(parameters.get('well_id'))}', '{CleanObject(parameters.get('description'))}', + '{CleanObject(parameters.get('location'))}', '{CleanObject(parameters.get('close_to'))}', '{CleanObject(parameters.get('radar_threshold'))}', + '{CleanObject(parameters.get('temperature_calib'))}', '{CleanObject(parameters.get('humidity_calib'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + + +def ShowAge(seconds): + minutes = int(seconds // 60) + hours = int(minutes // 60) + days = int(hours // 24) + + if seconds >= 0: + hours = int(hours - (days * 24)) + minutes = int(minutes - (days * 24 * 60) - (hours * 60)) + seconds = int(seconds - (days * 24 * 60 * 60) - (hours * 60 * 60) - (minutes * 60)) + + if days > 0: + report = f"{int(days)} d {int(hours)} h {int(minutes)} m {int(seconds)} s" + elif hours > 0: + report = f"{int(hours)} h {int(minutes)} m {int(seconds)} s" + elif minutes > 0: + report = f"{int(minutes)} m {int(seconds)} s" + else: + report = f"{int(seconds)} s" + + return report + else: + return "0 s" + +def UpdateDevicesTable(html_string, devices, users): + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + table_rows_string = "" + for device in devices: + #result = next(item for item in users if item[0] == device[6]) + + deployment_name = "?" + for item in users: + if item[0] == device[6]: + result = item + deployment_name = result[1] + if result[2] != None: + deployment_name = deployment_name + " " + result[2] + break + + + + + mac = device[2] + if mac == "64B7088903B4": + print("stop") + mac_row_string = f' {mac}\n' + age = time.time() - device[3] + + if (age < 300): + row_sting = f' \n {device[0]}\n' + else: + row_sting = f' \n {device[0]}\n' + + row_ending = f' \n \n' + for col_cnt in range(1, len(device)): + column_value = device[col_cnt] + #print(column_value) + if col_cnt == 2: + col_string_template = mac_row_string + elif col_cnt == 3: + if column_value > 0: + col_string_template = f' {ShowAge(age)}\n' + else: + col_string_template = f' No data\n' + elif col_cnt == 4: + col_string_template = f' {column_value}\n' + elif col_cnt == 5: + if column_value == None: + col_string_template = f' \n' + else: + col_string_template = f' {column_value}\n' + elif col_cnt == 6: + col_string_template = f' {column_value}\n'; + else: + if column_value == None: + column_value = "" + col_string_template = f' {column_value}\n' + row_sting = row_sting + col_string_template + row_sting = row_sting + row_ending + table_rows_string = table_rows_string + row_sting + #print(table_rows_string) + + html_string = html_string.replace("###ROWS###",table_rows_string) + return html_string + +def UpdateDeploymentsSelector(html_string, deployments, include_all=True, selected="1"): + # + if include_all: + selector_string = f' \n' + else: + selector_string = '' + + for deployment in deployments: + first_name = "" + last_name = "" + if deployment[1] != None: + first_name = deployment[1] + if deployment[2] != None: + last_name = deployment[2] + if deployment[0] == int(selected): + choice_string = f' \n' + else: + choice_string = f' \n' + selector_string = selector_string + choice_string + #print(selector_string) + + html_string = html_string.replace("###INSTALLS###",selector_string) + return html_string + +def GetDeviceDetails(cur, deployment_ids, location_id): + + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + macs = [mac for _, mac in deployment_ids] + #macs = list(deployment_ids.keys()) + macs_string_nq = ",".join(macs) + macs_string = "'" + "','".join(macs) + "'" + + if location_id == -1: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) + ORDER BY om.position; + """ + else: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) AND location = {location_id} + ORDER BY om.position; + """ + + cur.execute(sql) + print(sql) + devices_ids_records = cur.fetchall() + all_details = [] + + + devices_ids_list = [x[0] for x in devices_ids_records] + device_ids_string = ",".join(map(str, devices_ids_list)) + #sql = f"SELECT device_id, MAX(time) as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) GROUP BY device_id" #to slow + sql = f"SELECT DISTINCT ON (device_id) device_id, time as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) AND time > now() - INTERVAL '1 day' ORDER BY device_id, time DESC" + cur.execute(sql) + print(sql) + devices_times = cur.fetchall()#cur.fetchone() + found_device_details = {} + for device_record in devices_times: + device_id, last_message_time = device_record + found_device_details[device_id] = last_message_time + cnt = 0 + for device_table_record in devices_ids_records: + if len(devices_times) > 0: + device_id = device_table_record[0] + if device_id in found_device_details: + last_message_time = found_device_details[device_id] + last_message_epoch = int(last_message_time.timestamp()) + else: + try: + last_message_time = int(device_table_record[14]) + except: + last_message_time = 0 + last_message_epoch = last_message_time + else: + last_message_time = 0 + last_message_epoch = 0 + + #print(last_message_epoch) + #print(type(last_message_epoch)) + device_id = device_table_record[0] + mac = device_table_record[1] + well_id = device_table_record[2] + description = device_table_record[3] + if description == None: + description = "" + if device_table_record[5] != None: + if device_table_record[5] != "": + description = description + " Close to " + device_table_record[5] + location_id = device_table_record[4] + if location_id == None: + location_id = 0 + try: + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + except: + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + cnt += 1 + all_details.append(row_data) + + return all_details + +def GetDeviceDetailsComplete(cur, deployment_ids, location_id): + + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + macs = [mac for _, mac in deployment_ids] + #macs = list(deployment_ids.keys()) + macs_string_nq = ",".join(macs) + macs_string = "'" + "','".join(macs) + "'" + + if location_id == -1: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) + ORDER BY om.position; + """ + else: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) AND location = {location_id} + ORDER BY om.position; + """ + + cur.execute(sql) + print(sql) + devices_ids_records = cur.fetchall() + all_details = [] + + + devices_ids_list = [x[0] for x in devices_ids_records] + device_ids_string = ",".join(map(str, devices_ids_list)) + #sql = f"SELECT device_id, MAX(time) as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) GROUP BY device_id" #to slow + sql = f"SELECT DISTINCT ON (device_id) device_id, time as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) AND time > now() - INTERVAL '1 day' ORDER BY device_id, time DESC" + cur.execute(sql) + print(sql) + devices_times = cur.fetchall()#cur.fetchone() + found_device_details = {} + for device_record in devices_times: + device_id, last_message_time = device_record + found_device_details[device_id] = last_message_time + cnt = 0 + for device_table_record in devices_ids_records: + if len(devices_times) > 0: + + if device_id in found_device_details: + last_message_time = found_device_details[device_id] + last_message_epoch = int(last_message_time.timestamp()) + else: + try: + last_message_time = int(device_table_record[14]) + except: + last_message_time = 0 + last_message_epoch = last_message_time + else: + last_message_time = 0 + last_message_epoch = 0 + + #print(last_message_epoch) + #print(type(last_message_epoch)) + device_id = device_table_record[0] + mac = device_table_record[1] + well_id = device_table_record[2] + description = device_table_record[3] + alarm_details = device_table_record[36] + if description == None: + description = "" + if device_table_record[5] != None: + if device_table_record[5] != "": + description = description + " Close to " + device_table_record[5] + location_id = device_table_record[4] + if location_id == None: + location_id = 0 + #try: + # row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0], alarm_details] + #except: + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0], alarm_details] + cnt += 1 + all_details.append(row_data) + + return all_details + +def GetVisibleDevices(deployments): + + devices_details = [] + stt = time.time() + with get_db_connection() as conn: + with conn.cursor() as cur: + #list all devices that user has access to + if deployments == "-1": + sql = "SELECT device_mac FROM public.devices ORDER BY device_id ASC"# SELECT deployment_id, devices FROM public.deployment_details" + macs_group = [] + deployment_ids = [] + print(sql) + cur.execute(sql) + macs_records = cur.fetchall()#cur.fetchone() + for record in macs_records: + deployment_ids.append((0, record[0])) + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + print(sql) + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if "[" not in dev_group: + if "," not in dev_group: + dev_group = '["' + dev_group + '"]' + else: + dev_group = dev_group.replace(" ", "") + dev_group = dev_group.replace(",", '","') + dev_group = '["' + dev_group + '"]' + + macs_group = literal_eval(dev_group) + + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + else: + print(f"Deployment {deployment_id} has dev_group empty") + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + #devices_details.append(devices_detail) + + return devices_details + +def GetVisibleDevicesPerLocation(deployments, location): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1" or deployments == "0": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if dev_group[0] == "[": + macs_group = literal_eval(dev_group) + else: + macs_group = dev_group.split(',') + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetails(cur, deployment_ids, location_indexes[location]) + #devices_details.append(devices_detail) + + return devices_details + +def GetVisibleDevicesPerLocationComplete(deployments, location): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1" or deployments == "0": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if dev_group[0] == "[": + macs_group = literal_eval(dev_group) + else: + macs_group = dev_group.split(',') + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetailsComplete(cur, deployment_ids, location_indexes[location]) + #devices_details.append(devices_detail) + + return devices_details + +def GetUsersFromDeployments(deployments): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + if deployments == "-1": + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + ORDER BY dd.deployment_id; + """ + else: + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id IN ({deployments}) + ORDER BY dd.deployment_id; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchall()#cur.fetchone() + except Exception as err: + logger.error("GetUsersFromDeployments "+str(err) +" "+sql) + + return deployments_dets + +def GetPreviousDate(current_date): + date_obj = datetime.datetime.strptime(current_date, "%Y-%m-%d") + # Subtract one day + previous_date = date_obj - timedelta(days=1) + # Convert back to string format + previous_date_str = previous_date.strftime("%Y-%m-%d") + return(previous_date_str) + +def CovertToIsoTime(date_s, n_minute): + + hours = n_minute // 60 # Integer division + minutes = n_minute % 60 + + base_date = datetime.datetime.strptime(date_s, "%Y-%m-%d") + final_datetime = base_date + timedelta(hours=hours, minutes=minutes) + iso_timestamp = final_datetime.isoformat() + return iso_timestamp + + +def sleep_length(presence_list, short_absence_threshold=15): + """ + Calculate the total sleep duration and wake time based on presence data. + + This function correctly interprets the presence_list to determine sleep duration by: + 1. Properly aggregating the total sleep time from all significant in-bed periods + 2. Considering short absences as part of the same sleep session + 3. Determining the wake time when the main sleep session ended + + Args: + presence_list (list): List of tuples indicating bed presence/absence + short_absence_threshold (int, optional): Maximum duration in decas to consider + an absence "short" and still count as sleep. + Default is 15 (2.5 minutes) + + Returns: + tuple: (sleep_duration_minutes, wake_time_minutes) + sleep_duration_minutes: Total sleep duration in minutes + wake_time_minutes: Minute in the day when person was determined to be + done sleeping (minutes since midnight) + """ + # Extract in-bed periods and out-of-bed periods + in_bed_periods = [] + out_bed_periods = [] + + # First process the raw data into periods + for i in range(len(presence_list)): + deca_index, deca_count = presence_list[i] + + # Skip separator tuples where deca_count is 0 + if deca_count == 0: + continue + + if deca_count > 0: # In bed + # Special case for the midnight (first) tuple + if i == 0 and deca_index == 0: + # This is time in bed before midnight + start_deca = -deca_count # Negative because it's before midnight + end_deca = 0 # Midnight + else: + start_deca = deca_index + end_deca = deca_index + deca_count + + in_bed_periods.append({ + 'start': start_deca, + 'end': end_deca, + 'duration': deca_count + }) + else: # Out of bed + out_bed_periods.append({ + 'start': deca_index, + 'end': deca_index + abs(deca_count), + 'duration': abs(deca_count) + }) + + # Sort periods to ensure chronological order + in_bed_periods.sort(key=lambda p: p['start']) + out_bed_periods.sort(key=lambda p: p['start']) + + # Now determine which periods are part of the main night's sleep + # For this, we need to identify consecutive in-bed periods separated by short absences + + # Start by finding the key sleep segments - significant periods in bed during night time + night_time_end_deca = 4320 # 12 hours after midnight + sleep_segments = [] + + # Merge in-bed periods that are separated by short absences + merged_periods = [] + current_period = None + + for period in in_bed_periods: + # If we're at the start or after a long break, begin a new period + if current_period is None: + current_period = period.copy() + else: + # Check if this period starts shortly after the previous one ends + gap = period['start'] - current_period['end'] + + # If the gap is negative, the periods overlap (data error), treat as continuous + if gap < 0: + gap = 0 + + # If the gap is short enough, merge the periods + if gap <= short_absence_threshold: + # Extend the current period + current_period['end'] = period['end'] + current_period['duration'] += period['duration'] - gap + else: + # Gap too long, add the completed period and start a new one + merged_periods.append(current_period) + current_period = period.copy() + + # Add the last period if there is one + if current_period is not None: + merged_periods.append(current_period) + + # Find the main sleep period - prioritize periods that span midnight or early morning + # and have significant duration + significant_sleep_threshold = 180 # 30 minutes (180 decas) + night_periods = [p for p in merged_periods if + (p['start'] <= 0 or p['start'] <= night_time_end_deca) and + p['duration'] >= significant_sleep_threshold] + + if night_periods: + # Find the period with the largest duration + main_sleep_period = max(night_periods, key=lambda p: p['duration']) + + # Calculate total sleep duration + sleep_duration_minutes = round(main_sleep_period['duration'] / 6) # Convert to minutes + + # Wake time is when this period ended + wake_time_minutes = max(0, round(main_sleep_period['end'] / 6)) # Ensure it's not negative + + return (sleep_duration_minutes, wake_time_minutes) + + # No significant sleep periods found + return (0, 0) + + +# Example usage: +# sleep_minutes = sleep_length(presence_list) # Use default threshold +# sleep_minutes = sleep_length(presence_list, short_absence_threshold=30) # Allow longer absences (5 minutes) + + + +# Example usage: +# presence_list = [ +# [0, 554], [3303, 3857], [3303, 0], [3387, -84], [3387, 0], [3388, 1], [3388, 0], +# [3668, -280], [3668, 0], [3669, 1], [3669, 0], [3699, -30], [3699, 0], [3700, 1], +# [3700, 0], [3863, -163], [3863, 0], [3864, 1], [3864, 0], [4418, -554], [4418, 0], +# [4419, 1], [4419, 0], [4547, -128], [4547, 0], [4548, 1], [4548, 0], [4603, -55], +# [4603, 0], [4604, 1], [4604, 0], [4965, -361], [4965, 0], [4966, 1], [4966, 0], +# [4984, -18], [4984, 0], [4985, 1], [4985, 0], [8639, -3654] +# ] +# print(f"Sleep duration: {sleep_length(presence_list)} minutes") + + +# Example usage: +# sleep_minutes = sleep_length(presence_list) # Use default threshold +# sleep_minutes = sleep_length(presence_list, short_absence_threshold=30) # Allow longer absences (5 minutes) + + + +# Example usage: +# presence_list = [ +# [0, 554], [3303, 3857], [3303, 0], [3387, -84], [3387, 0], [3388, 1], [3388, 0], +# [3668, -280], [3668, 0], [3669, 1], [3669, 0], [3699, -30], [3699, 0], [3700, 1], +# [3700, 0], [3863, -163], [3863, 0], [3864, 1], [3864, 0], [4418, -554], [4418, 0], +# [4419, 1], [4419, 0], [4547, -128], [4547, 0], [4548, 1], [4548, 0], [4603, -55], +# [4603, 0], [4604, 1], [4604, 0], [4965, -361], [4965, 0], [4966, 1], [4966, 0], +# [4984, -18], [4984, 0], [4985, 1], [4985, 0], [8639, -3654] +# ] +# print(f"Sleep duration: {sleep_length(presence_list)} minutes") + + +# Example usage: +# sleep_minutes = sleep_length(presence_list) # Use default threshold +# sleep_minutes = sleep_length(presence_list, short_absence_threshold=30) # Allow longer absences (5 minutes) + + + +# Example usage: +# presence_list = [ +# [0, 554], [3303, 3857], [3303, 0], [3387, -84], [3387, 0], [3388, 1], [3388, 0], +# [3668, -280], [3668, 0], [3669, 1], [3669, 0], [3699, -30], [3699, 0], [3700, 1], +# [3700, 0], [3863, -163], [3863, 0], [3864, 1], [3864, 0], [4418, -554], [4418, 0], +# [4419, 1], [4419, 0], [4547, -128], [4547, 0], [4548, 1], [4548, 0], [4603, -55], +# [4603, 0], [4604, 1], [4604, 0], [4965, -361], [4965, 0], [4966, 1], [4966, 0], +# [4984, -18], [4984, 0], [4985, 1], [4985, 0], [8639, -3654] +# ] +# print(f"Sleep duration: {sleep_length(presence_list)} minutes") + +def filter_short_groups_c_wc_old(presence_list, filter_size, device_id_str, from_date, to_date, time_zone_s, refresh = False): + + #days = presence_list + #for from_date, to_date + + tz = pytz.timezone(time_zone_s) + # Get current time in that timezone + current_time = datetime.datetime.now(tz) + # Return just the date part as string + now_date_str = current_time.strftime("%Y-%m-%d") + + start_date = datetime.datetime.strptime(from_date, "%Y-%m-%d") + end_date = datetime.datetime.strptime(to_date, "%Y-%m-%d") + + last_offset = 0 + #if to_date == now_date_str: + # last_offset = 1 + + # Loop through each date (including end_date) + current_date = start_date + dates_list = [] + days_difference = 1 + (end_date - start_date).days + whole_result = [0] * 6 * 1440 * (days_difference) + + is_long = False + if len(presence_list)/(6 * 1440) > (days_difference): #long version + is_long = True + + while current_date <= end_date: + current_date_str = current_date.strftime("%Y-%m-%d") + print(current_date_str) + dates_list.append(current_date_str) + current_date += timedelta(days=1) + + for day in range(1, days_difference-last_offset+1): + print(day) + end_index = (1 + day) * 6 * 1440 + if end_index > len(presence_list): + end_index = len(presence_list) + + if is_long: + start_index = end_index - 2 * 6 * 1440 + else: + start_index = end_index - 6 * 1440 + + current_date_str = dates_list[day-1] + filename_day_presence = f"/{device_id_str}/{device_id_str}_{current_date_str}_{filter_size}_presence.bin" + filtered_day_str = None + if refresh == False: + filtered_day_str = ReadObjectMinIO("filtered-presence", filename_day_presence) + + if filtered_day_str == None: + filtered_day = filter_short_groups_c(presence_list[start_index:end_index], filter_size, device_id_str, from_date) + SaveGenericObjectInBlob("filtered-presence", filename_day_presence, filtered_day) + else: + filtered_day = json.loads(filtered_day_str) + whole_result[start_index:end_index] = filtered_day + + if current_date_str != to_date: + end_index = len(presence_list) + start_index = end_index - 2 * 6 * 1440 + filtered_day = filter_short_groups_c(presence_list[start_index:end_index], filter_size, device_id_str, from_date) + whole_result[start_index:end_index] = filtered_day + + return whole_result + +def filter_short_groups_c_wc(presence_list, filter_size, device_id_str, from_date, to_date, time_zone_s, refresh=False): + """ + Filter out short groups across multiple days. + Preserves original logic of using previous day's data for midnight boundary handling. + """ + # Setup timezone and current time + tz = pytz.timezone(time_zone_s) + current_time = datetime.datetime.now(tz) + now_date_str = current_time.strftime("%Y-%m-%d") + + start_date = datetime.datetime.strptime(from_date, "%Y-%m-%d") + end_date = datetime.datetime.strptime(to_date, "%Y-%m-%d") + + # Build dates list + current_date = start_date + dates_list = [] + while current_date <= end_date: + current_date_str = current_date.strftime("%Y-%m-%d") + print(current_date_str) + dates_list.append(current_date_str) + current_date += timedelta(days=1) + + days_difference = len(dates_list) + + # Handle current day limitation + samples_per_day = 6 * 1440 + total_samples = samples_per_day * days_difference + + # If today is the last day, limit the data + effective_total_samples = total_samples + if to_date == now_date_str: + current_minute_of_day = current_time.hour * 60 + current_time.minute + current_sample_of_day = min(current_minute_of_day * 6, samples_per_day) + effective_total_samples = (days_difference - 1) * samples_per_day + current_sample_of_day + print(f"Today detected: limiting to {current_sample_of_day} samples for last day") + + # Initialize result - use effective total samples + whole_result = [0] * effective_total_samples + + # Determine if we have "long" data (more than expected days) + is_long = len(presence_list) > (days_difference * samples_per_day) + + # Process each day (0-indexed to avoid confusion) + for day_idx in range(days_difference): + current_date_str = dates_list[day_idx] + print(f"Processing day {day_idx + 1}: {current_date_str}") + + # Calculate result array indices for this day + result_start_idx = day_idx * samples_per_day + result_end_idx = (day_idx + 1) * samples_per_day + + # For the last day, if it's today, limit the end index + if day_idx == days_difference - 1 and to_date == now_date_str: + result_end_idx = result_start_idx + current_sample_of_day + + # Skip if this day's range is beyond our result array + if result_start_idx >= len(whole_result): + break + + # Ensure we don't exceed result array bounds + result_end_idx = min(result_end_idx, len(whole_result)) + + # Calculate input data range + if is_long: + # Use 2 days of context (previous day + current day) + input_end_idx = min(len(presence_list), result_end_idx) + input_start_idx = max(0, input_end_idx - 2 * samples_per_day) + else: + # Use 1 day of data + input_end_idx = min(len(presence_list), result_end_idx) + input_start_idx = max(0, input_end_idx - samples_per_day) + + # Skip if no input data available + if input_start_idx >= input_end_idx: + print(f"No input data available for {current_date_str}") + continue + + # Try to load cached data + filename_day_presence = f"/{device_id_str}/{device_id_str}_{current_date_str}_{filter_size}_presence.bin" + filtered_day_str = None + + if not refresh: + filtered_day_str = ReadObjectMinIO("filtered-presence", filename_day_presence) + + if filtered_day_str is None: + # Filter the input data + input_data = presence_list[input_start_idx:input_end_idx] + filtered_data = filter_short_groups_c(input_data, filter_size, device_id_str, from_date) + + # Extract the portion corresponding to this day + if is_long: + # We have 2 days of data, take the second day + day_data_start = samples_per_day + else: + # We have 1 day of data, take it all + day_data_start = 0 + + # Calculate how much data we need for this day + needed_samples = result_end_idx - result_start_idx + day_data_end = day_data_start + needed_samples + + # Extract the day's portion, ensuring we don't exceed bounds + if day_data_start < len(filtered_data): + filtered_day = filtered_data[day_data_start:min(day_data_end, len(filtered_data))] + else: + filtered_day = [] + + # Cache the result + SaveGenericObjectInBlob("filtered-presence", filename_day_presence, filtered_day) + else: + filtered_day = json.loads(filtered_day_str) + + # Copy to result array + copy_length = min(len(filtered_day), result_end_idx - result_start_idx) + if copy_length > 0: + whole_result[result_start_idx:result_start_idx + copy_length] = filtered_day[:copy_length] + + print(f"Completed {current_date_str}: copied {copy_length} samples") + + return whole_result + +def GetLastDurationMinutes(deployment_id, selected_devices, filter, ddate): + + global threshold_cache, device_lookup_cache + + max_sleep = 0 + max_device_id = 0 + max_woke_up = 0 + presence_list = [] + to_date = ddate + + + date_obj = datetime.datetime.strptime(ddate, "%Y-%m-%d") + # Subtract one day + previous_day = date_obj - timedelta(days=1) + # Convert back to string + prev_date = previous_day.strftime("%Y-%m-%d") + + data_type = "z-graph" + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + + + devices_list, device_ids = GetProximityList(deployment_id, timee) + + #Lets filter bedrooms only + just_selected_devices = [] + for device_details in devices_list: + if device_details[1] in selected_devices: + just_selected_devices.append(device_details) + + devices_list = just_selected_devices + + time_from_str, _ = GetLocalTimeForDate(ddate, time_zone_s) + _, time_to_str = GetLocalTimeForDate(to_date, time_zone_s) + + time_from = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + time_to = datetime.datetime.strptime(time_to_str, '%Y-%m-%d %H:%M:%S%z') + epoch_time = calendar.timegm(time_from.utctimetuple()) + + presence_map = {} + presence_map["time_start"] = epoch_time + presence_map["time_zone"] = time_zone_s + + # Calculate the difference in days + days_difference = (time_to - time_from).days + + if data_type == "all" or data_type == "z-graph" or data_type == "multiple": + + # Convert string to datetime object + date_obj = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + # Subtract one day + previous_day = date_obj - timedelta(days=1) + + # Format back to string in the same format + time_from_z_str = previous_day.strftime("%Y-%m-%d %H:%M:%S%z") + + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + print(well_id, radar_threshold_group) + + device_id_2_location[device_id] = location_name + device_id_2_threshold[device_id] = radar_threshold_group + + ids_list = [] + well_ids = [] + id2well_id = {} + radar_fields_of_interest = [] + device_field_indexes = {} + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3",12] + #threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + #since we are getting 10 sec dat, no more need for min or max... + radar_field = radar_field.split("_")[0] + if radar_field not in radar_fields_of_interest: + device_field_indexes[radar_field] = len(radar_fields_of_interest) + radar_fields_of_interest.append(radar_field) + + ids_list.append(details[1]) + id2well_id[details[1]] = details[0] + well_ids.append(details[0]) + presence_map["well_ids"] = well_ids + + if len(devices_list) > 0: + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + #sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + sql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + #zsql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + zsql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + print(zsql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = None + myz_data = None + + my_data = cur.fetchall() + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + cur.execute(zsql) + myz_data = cur.fetchall() + + if my_data != None: + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + + #presence_map['longpresence'] and temporary_map_day_plus are similar, except one is used for Z-graph, and another for multiple persons detection + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + presence_map['presence'] = {} + presence_map['longpresence'] = {} + + if data_type == "raw" or data_type == "all": + presence_map['raw'] = {} + + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "raw" or data_type == "all": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['raw'][well_id] = zeros_list + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['presence'][well_id] = zeros_list + + + #presence_map[][well_id] = zeros_list + cnt += 1 + row_nr_2_device_id[cnt] = well_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3",12] + + device_id_2_location[well_id] = location_name + device_id_2_threshold[well_id] = radar_threshold_group + if len(my_data) > 1: + + start_time_ = my_data[0][0] + parsed_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(hours=-7)) + ) + + presence_map = optimized_radar_processing(my_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, presence_map, data_type) + + + if myz_data != None: + temporary_map_day_plus = {} + presence_map['z_graph'] = {} + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * (days_difference + 1) #+1 is for previous day + presence_map['z_graph'][well_id] = [] #just place holder + temporary_map_day_plus[well_id] = zeros_list + presence_map['longpresence'][well_id] = zeros_list #just place holder + + print(deployment_id) + print(time_from_z_str) + print(devices_list) + parsed_time = datetime.datetime.strptime(time_from_z_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(hours=-7)) + ) + + #start_time_ = myz_data[0][0] + st = time.time() + device_lookup_cache = {} + threshold_cache = {} + temporary_map_day_plus = optimized_processing(myz_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, temporary_map_day_plus, data_type) + + + if data_type == "all" or data_type == "z-graph" or data_type == "presence" or data_type == "multiple": + for device_id in ids_list: + device_id_str = str(device_id) + if data_type == "presence" or data_type == "all" or data_type == "z-graph": + if filter > 1: + #presence_list = filter_short_groups_numpy(presence_map["presence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + presence_list = filter_short_groups_c_wc(presence_map["presence"][id2well_id[device_id]], filter, device_id_str, ddate, to_date, time_zone_s) + presence_map["presence"][id2well_id[device_id]] = presence_list + #longpresence_list = filter_short_groups_numpy(presence_map["longpresence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + longpresence_list = filter_short_groups_c_wc(presence_map["longpresence"][id2well_id[device_id]], filter, device_id_str, prev_date, to_date, time_zone_s) + presence_map["longpresence"][id2well_id[device_id]] = longpresence_list + + else: #straight decas + presence_list = presence_map["presence"][id2well_id[device_id]] + longpresence_list = presence_map["longpresence"][id2well_id[device_id]] + + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + max_sleep = 0 + max_device_id = 0 + max_woke_up = 0 + for device_id in ids_list: + #print(device_id_2_threshold[id2well_id[device_id]]) + presence_list = CreateZGraph(id2well_id[device_id], presence_map["longpresence"][id2well_id[device_id]]) #temporary_map_day_plus[id2well_id[device_id]]) + sleep_minutes, woke_up = sleep_length(presence_list) + if sleep_minutes > max_sleep: + max_sleep = sleep_minutes + max_device_id = device_id + max_woke_up = woke_up + presence_map = {} + return max_sleep, max_device_id, max_woke_up, presence_list + +def GetTemperature(bedroom_device_id, ddate): + result = 0 + sql = f""" + SELECT * + FROM public.sensor_readings + WHERE device_id = {bedroom_device_id} + ORDER BY "time" DESC + LIMIT 1; + """ + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() + return result + +def GetSensorsDetailsFromDeployment(deployment_id, ddate, filter_minutes, fast=True): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + sql = f""" + SELECT pd.user_id, pd.first_name, pd.last_name, pd.address_street, pd.picture + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id ={deployment_id}; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment "+str(err) +" "+sql) + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + #Which sensor is in: Bathroom, Kitchen, Bedroom ? + bathrooms = [] + kitchens = [] + bedrooms = [] + dev_id_to_location = {0: "Outside/?"} + for device in devices_list: + dev_id_to_location[device[1]] = device[2] + if Consolidataed_locations[device[2]] == "Bathroom": + bathrooms.append(device[1]) + elif Consolidataed_locations[device[2]] == "Kitchen": + kitchens.append(device[1]) + elif Consolidataed_locations[device[2]] == "Bedroom": + bedrooms.append(device[1]) + + #we need to determine where user is seen last, and user sensor data from there... + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file1 ={locations_file}") + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() #local date + file_modified_date_utc = file_modified_utc1.date() + file_date_utc = MapFileToDate(locations_file) #locations_file is UTC + #if file_modified_date_local < file_date_utc: + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + logger.debug(f"force_recreate={str(force_recreate)}") + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + last_present_device = 0 + last_present = 0 + last_bathroom = 0 + last_kitchen = 0 + last_bedroom = 0 + last_bathroom_date = ddate + last_kitchen_date = ddate + last_bedroom_date = ddate + + if locations_list_s is not None: + locations_list = json.loads(locations_list_s) + + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + last_present = locations_list[-1][1] + locations_list[-1][2] + else: + last_present_device = locations_list[-2][0] + last_present = locations_list[-2][1] + locations_list[-2][2] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + + #Lets find last bathroom presence time + + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + + #Lets find last kitchen presence time + + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + + #Lets find last bedroom presence time + + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + if last_bathroom == 0 or last_kitchen == 0 or last_bedroom == 0: + ddate = GetPreviousDate(ddate) + + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file2 ={locations_file}") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + logger.debug(f"file_exists1={str(file_exists1)}") + logger.debug(f"file_modified_utc1={str(file_modified_utc1)}") + #file_exists1, file_modified_utc1 + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() + file_date_utc = MapFileToDate(locations_file) + logger.debug(f"file_modified_utc1={str(file_modified_utc1.date())} file_date_utc={str(file_date_utc)}") + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + logger.debug(f"current_time={current_time} file_modified_local={file_modified_local} time_passed={time_passed}") + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + + logger.debug(f"locations_list_s={locations_list_s}") + + if (locations_list_s is not None): + + locations_list = json.loads(locations_list_s) + + if last_present_device == 0: + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + else: + last_present_device = locations_list[-2][0] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + if last_bathroom == 0: + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + if last_kitchen == 0: + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + if last_bedroom == 0: + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + + last_bathroom_time = "2023-01-01T00:00:00" + if last_bathroom > 0: + last_bathroom_time = CovertToIsoTime(last_bathroom_date, last_bathroom) + + last_kitchen_time = "2023-01-01T00:00:00" + if last_kitchen > 0: + last_kitchen_time = CovertToIsoTime(last_kitchen_date, last_kitchen) + + last_bedroom_time = "2023-01-01T00:00:00" + if last_bedroom > 0: + last_bedroom_time = CovertToIsoTime(last_bedroom_date, last_bedroom) + + last_present_time = "2023-01-01T00:00:00" + if last_present > 0: + last_present_time = CovertToIsoTime(ddate, last_present) + + # debug for 48h bug + if last_bathroom_time == "2023-01-01T00:00:00" or last_kitchen_time == "2023-01-01T00:00:00" or last_bedroom_time == "2023-01-01T00:00:00": + #last_bathroom_time = "48h" if last_bathroom_time == "2023-01-01T00:00:00" else f"{last_bathroom-last_bathroom_time}" + #last_kitchen_time = "48h" if last_kitchen_time == "2023-01-01T00:00:00" else f"{last_kitchen-last_kitchen_time}" + #last_bedroom_time = "48h" if last_bedroom_time == "2023-01-01T00:00:00" else f"{last_bedroom-last_bedroom_time}" + + logger.debug(f"48h-> deployment_id={str(deployment_id)}, ddate={str(ddate)}") + logger.debug(f"48h-> force_recreate={force_recreate}") + logger.debug(f"48h-> last_bathroom_time={last_bathroom_time}|last_kitchen_time={last_kitchen_time}|last_bedroom_time={last_bedroom_time}") + logger.debug(f"48h-> devices_list={str(devices_list)}") + logger.debug(f"48h-> bathrooms={str(bathrooms)}") + logger.debug(f"48h-> kitchens={str(kitchens)}") + logger.debug(f"48h-> bedrooms={str(bedrooms)}") + logger.debug(f"48h-> locations_list_s={str(locations_list_s)}") + + try: + sql = f""" + SELECT * FROM sensor_readings + WHERE device_id = {last_present_device} + ORDER BY time DESC + LIMIT 1; + """ + with conn.cursor() as cur: + cur.execute(sql) + sensor_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment1 "+str(err) +" "+sql) + + # wellness_score_percent + wellness_score_percent = 90 + + sleep_filter_minutes = 5 + + time_from_str, _ = GetLocalTimeForDate(ddate, time_zone_s) + + sleep_bathroom_visit_count = 0 + # bedroom_co2 + bedroom_co2 = 500 + device_detail = None + bedroom_temperature = 0 + sleep_hours = 0 + if fast == False: + + if len(bedrooms) > 0: + sleep_minutes, bedroom_device_id, woke_up, presence_list = GetLastDurationMinutes(deployment_id, bedrooms, sleep_filter_minutes, ddate) + sleep_hours = sleep_minutes/ 60 + # bedroom_temperature + temp_offset = -16.0 + device_detail = GetTemperature(bedroom_device_id, ddate) + + # sleep_bathroom_visit_count + date_obj = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + if sleep_minutes < woke_up: # went to sleep after midnight + date_sleep = ddate + to_sleep = woke_up - sleep_minutes + else:# went to sleep before midnight + to_sleep = 1440 + woke_up - sleep_minutes + + # Convert string to datetime object + previous_day = date_obj - timedelta(days=1) + date_sleep = previous_day.strftime("%Y-%m-%d %H:%M:%S%z") + + + if device_detail != None: + bedroom_temperature = device_detail[2] + temp_offset + + + + + + + # shower_detected_time + shower_detected_time = last_bathroom_time + + # breakfast_detected_time + breakfast_detected_time = 0 + + # living_room_detected_time + living_room_time_spent = 0 + + # outside_hours + outside_hours = 0 + + #lets find last time seen at Bathroom, Kitchen, Bedroom pd.first_name, pd.last_name, pd.address_street, pd.picture + + picture_url = deployments_dets[4] + report = {} + try: + + report = {"user_id":deployments_dets[0], + "name":deployments_dets[1] + " " + deployments_dets[2], + "address":deployments_dets[3], + "time_zone":time_zone_s, + "picture":picture_url, + "bathroom_at": last_bathroom_time, + "kitchen_at": last_kitchen_time, + "bedroom_at": last_bedroom_time, + "temperature": (sensor_dets[2] - 16) if sensor_dets != None else 0, + "smell": "clean", + "bathroom_delayed": [6, 12], + "kitchen_delayed": [6, 12], + "bedroom_delayed": [13, 16], + "last_location": dev_id_to_location[last_present_device], + "last_detected_time": last_present_time, + "wellness_score_percent": wellness_score_percent, + "wellness_descriptor_color": "bg-green-100 text-green-700", + "bedroom_temperature": bedroom_temperature, + "sleep_bathroom_visit_count": sleep_bathroom_visit_count, + "bedroom_co2": bedroom_co2, + "shower_detected_time": shower_detected_time, + "breakfast_detected_time": breakfast_detected_time, + "living_room_time_spent": living_room_time_spent, + "outside_hours": outside_hours, + "wellness_descriptor": "Great!", + "last_seen_alert": "Alert = None", + "last_seen_alert_colors": "bg-green-100 text-green-700", #https://tailwindcss.com/docs/colors + "most_time_spent_in": "Bedroom", + "sleep_hours": sleep_hours + } + except Exception as e: + print(traceback.format_exc()) + return report + +def ToList(input_data): + # If input is already a list + if isinstance(input_data, list): + return [str(x).strip() for x in input_data] + + # If input is string + if isinstance(input_data, str): + # Remove outer brackets if present + cleaned = input_data.strip('()') + cleaned = cleaned.strip('[]') + # Remove extra quotes + cleaned = cleaned.replace('"', '').replace("'", '') + # Split by comma and clean each element + return [x.strip() for x in cleaned.split(',')] + + raise ValueError(f"Unsupported input type: {type(input_data)}") + +def MACsToWellIds(cur, macs_list): + + device_ids = [] + device_list = [] + + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + sqlr = f"SELECT well_id, device_mac, device_id, location, description, radar_threshold, close_to FROM public.devices WHERE device_mac IN ({macs_string})" + + #print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for well_id, mac, device_id, location, description, radar_threshold, close_to in proximitys_list: + macs_map[mac] = (well_id, device_id, location_names[location], description, mac, radar_threshold, close_to) + + + for mac in macs_list: + device_ids.append(macs_map[mac][1]) + device_list.append(macs_map[mac]) + + return device_ids, device_list + +def MACsStrToDevIds(cur, macs): + + device_ids = [] + #we need to repcakage string to contain ' + macs_list = ToList(macs) + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + + sqlr = f"SELECT device_mac, device_id FROM public.devices WHERE device_mac IN ({macs_string})" + print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for mac, device_id in proximitys_list: + device_ids.append((mac, device_id)) + + return device_ids + + + +def ReadCleanStringDB(cur, sql): + cur.execute(sql) + temp_string = cur.fetchone() + if temp_string == None: + return "" + else: + return str(temp_string[0]).strip() + +# obtain device_list, device_ids for deployment_id on time as epoch_from_file_s (usually today) +# it tries first overridden/newly-installed (FROM public.deployment_history) +# then if none found there searches FROM public.deployment_details +def GetProximityList(deployment_id, epoch_from_file_s): + + #both are valid: + #64B70888FA84,64B70888F6F0,64B70888F860,64B70889062C,64B70888FAB0,64B708896BDC,64B708897428 + #['64B70888FA84', '64B70888F6F0', '64B70888F860', '64B70889062C', '64B70888FAB0', '64B708896BDC', '64B708897428'] + + #result_list = [] + #well_ids = [] + with get_db_connection() as conn: + + sqlr = f""" + SELECT * FROM ( + SELECT proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + AND time <= {epoch_from_file_s} + ORDER BY time DESC + LIMIT 1 + ) AS latest_deployment + """ + #print (sqlr) + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + + if devices_string == "": + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + devices_string = ReadCleanStringDB(cur, sqlr) + + + if devices_string == "": + return [], [] + + macs_list = ToList(devices_string) + device_ids, device_list = MACsToWellIds(cur, macs_list) + return device_list, device_ids + +def FilterList(to_filter: str, allowed: str) -> str: + # Convert comma-separated strings to sets + filter_set = set(to_filter.split(',')) + allowed_set = set(allowed.split(',')) + + # Find intersection and sort the result + filtered = sorted(filter_set.intersection(allowed_set), key=int) + + # Join back to comma-separated string + return ','.join(filtered) + + +def GetMatchingDevices(privileges, group, deployment, location): + + global LocationsMap + + results=[] + if privileges != "-1": + if deployment == "" or deployment == "0": + deployment = privileges + + privileges_list = privileges.split(',') + if deployment != "0": + if "," in deployment: + deployment = FilterList(deployment, privileges) + else: + if deployment not in privileges_list: + return results + else: + if deployment == "0": + deployment = "-1" + + devices = GetVisibleDevicesPerLocation(deployment, location) + return devices + +def GetMatchingDevicesComplete(privileges, group, deployment, location): + + global LocationsMap + + results=[] + if privileges != "-1": + if deployment == "" or deployment == "0": + deployment = privileges + + privileges_list = privileges.split(',') + if deployment != "0": + if "," in deployment: + deployment = FilterList(deployment, privileges) + else: + if deployment not in privileges_list: + return results + else: + if deployment == "0": + deployment = "-1" + + devices = GetVisibleDevicesPerLocationComplete(deployment, location) + return devices + +def getOldestDeploymentHistoryFromBeneficiary(deployment_id): + #this will return oldest entry as well as last proximity (devices) + st = time.time() + print(f"*0 ----{time.time() - st}") + results=[] + well_ids_last = [] #this needs to be list of tuples (well_id, Location_st, Description) + oldest_time = None + try: + print(f"*0a ----{time.time() - st}") + with get_db_connection() as conn: + sqlr = f""" + SELECT * FROM ( + SELECT time, proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + ORDER BY time ASC + ) AS latest_deployment + """ + print (sqlr) + print(f"*1 ----{time.time() - st}") + with conn.cursor() as cur: + cur.execute(sqlr) + print(f"*2 ----{time.time() - st}") + results = cur.fetchall() + print(f"*3 ----{time.time() - st}") + #lets find which of historical sets has data in DB + if results == None or results == []: #look in deployment_details + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + print(f"*4 ----{time.time() - st}") + devices_string = ReadCleanStringDB(cur, sqlr) + print(f"*5 ----{time.time() - st}") + macs_list = ToList(devices_string) + print(f"*6 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + sql_query = """ + SELECT device_id, first_seen_at + FROM device_first_seen + WHERE device_id = ANY(%s) + GROUP BY device_id; + """ + print(f"*7 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + if results1 == []: + pass + else: + oldest_time = results1[0][1] + except Exception as e: + AddToLog(traceback.format_exc()) + AddToLog(str(e)) + print(f"*8 ----{time.time() - st}") + else: + history_entry = results[-1] + macs_list = ToList(history_entry[1]) + print(f"*9 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + + + for history_entry in results: + macs_list = ToList(history_entry[1]) + print(f"*10 ----{time.time() - st}") + device_ids, device_alls = MACsToWellIds(cur, macs_list) + print(f"*11 ----{time.time() - st}") + sql_query = """ + SELECT time as oldest_record_time + FROM sensor_readings + WHERE device_id = ANY(%s) + ORDER BY time ASC + LIMIT 1; + """ + print(f"*12 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + oldest_time = results1[0][0] + if oldest_time != None: + break + + + except Exception as e: + print(str(e)) + print(f"*13 ----{time.time() - st}") + + except Exception as e: + print(f"*0b ----{time.time() - st}") + AddToLog(traceback.format_exc()) + + print(f"*14 ----{time.time() - st}") + return oldest_time, device_alls_last + + +def getLastEditedBeneficiary(beneficiary): + + #lets generate token here to elliminate issues with outdated token... + token = generate_token(beneficiary) + url = 'https://well-api.azurewebsites.net/api/well_api' + params = { + "name": "beneficiary_detail", + "beneficiary": beneficiary, + "token": token + } + #{"id": "user_beneficiary_bernhard@wellnuo.com", "MAC": "BENEFICIARY", "email": "bernhard@wellnuo.com", "edit_date": "Fri Aug 16 06:45:01 2024", "c_password": "bern1", "first_name": "Bernhard", "last_name": "Knigge", "address": "776 Dubanski Dr.", "address_city": "San Jose", "address_state": "CA", "address_zip": "95123", "address_country": "United States", "phone_number": "4087055709", "persons": "2", "gender": "M", "race": "W", "born": "1972", "pets": "1", "creds": "", "devs": "[[203, 'Living Room', '', '64B708890B14'], [251, 'Bathroom', '', '64B7088909E8'], [252, 'Bedroom', '', '64B708890734'], [204, 'Bathroom', 'Guest', '64B708890288'], [201, 'Kitchen', 'toaster', '64B708890584'], [202, 'Kitchen', 'stove', '64B7088906D8'], [205, 'Office', '', '64B708897018']]", "tzone": "America/Los_Angeles", "ttl": -1, "_rid": "R60hANIG-K+qTQIAAAAAAg==", "_self": "dbs/R60hAA==/colls/R60hANIG-K8=/docs/R60hANIG-K+qTQIAAAAAAg==/", "_etag": "\"3500a0ae-0000-0800-0000-66bef56d0000\"", "_attachments": "attachments/", "_ts": 1723790701} + response = requests.get(url, params=params) + if response.status_code == 200: + + text = response.text + #print(text) + if text == "Log-Out": + return text + if text[0] == "{": + data = json.loads(response.text) + date_string = data["edit_date"] + parsed_date = datetime.datetime.strptime(date_string, '%c') + # Convert the datetime object to a timestamp (epoch time) + epoch_str = str(time.mktime(parsed_date.timetuple())) + devices = data["devs"] + return(epoch_str, devices) + else: + return text,"" + else: + logger.debug((f"Failed to retrieve the data, status code: {response.status_code}")) + + return "","" + +def GetDeploymentNameFromId(Id): + + con = sqlite3.connect(main_db) + con.text_factory = str + cur = con.cursor() + results=[] + SQL = "SELECT name FROM deployments WHERE id =" + Id + df = cur.execute(SQL) + results = cur.fetchall() + if len(results) > 0: + return results[0][0] + else: + return "" + +def GetTimeZoneOfDeployment(deployment_id): + time_zone_st = 'America/Los_Angeles' + with get_db_connection() as conn: + with conn.cursor() as cur: + sqlr = f"SELECT time_zone_s from public.deployments WHERE deployment_id ={deployment_id}" + time_zone_st = ReadCleanStringDB(cur, sqlr) + return time_zone_st + +def StringToEpoch(date_string, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in specified timezone + + Args: + date_string (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch timestamp in seconds + """ + # Parse the date string + date_format = '%Y-%m-%d' + naive_date = datetime.datetime.strptime(date_string, date_format) + + # Get the timezone + timezone = pytz.timezone(time_zone_s) + + # Localize the date to midnight in the specified timezone + local_date = timezone.localize(naive_date) + + # Convert to epoch timestamp + epoch_time = local_date.timestamp() + + return epoch_time + +def LocalDateToUTCEpoch(local_date_str, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in UTC + + Args: + local_date_str (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch UTC timestamp in seconds + """ + timezone = pytz.timezone(time_zone_s) + # Parse the date string + date_format = '%Y-%m-%d' + local_datetime = datetime.datetime.strptime(local_date_str, date_format) + local_datetime = timezone.localize(local_datetime) + + utc_datetime = local_datetime.astimezone(pytz.UTC) + epoch_time = int(utc_datetime.timestamp()) + + return epoch_time + +def GetDeploymentDatesBoth(deployment_in): + + #when looking at the date, date is defined in TZ where device is! + #Lets take oldest data from first member of deployment + st = time.time() + date_list = [] + print(f"&0 ----{time.time() - st}") + time_zone_st = GetTimeZoneOfDeployment(deployment_in) + print(f"&1 ----{time.time() - st}") + oldest_date_dt_utc, devices_all = getOldestDeploymentHistoryFromBeneficiary(deployment_in) + print(f"&2 ----{time.time() - st}") + if oldest_date_dt_utc != None: + #get date in local time zone from UTC datetime + + #oldest_date_dt + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + oldest_date_dt_local = oldest_date_dt_utc.astimezone(local_timezone) + today_date = datetime.datetime.now(local_timezone) + + # Generate a list of date strings from oldest_date to today in inverted order + date_list = [(today_date - timedelta(days=x)).strftime('%Y-%m-%d') for x in range((today_date - oldest_date_dt_local).days + 1)] + print(f"&3 ----{time.time() - st}") + return date_list, devices_all, time_zone_st + +def check_file_exists(file_name, bucket_name="daily-maps"): + try: + # Try to get the object's stats - this will raise an exception if the object doesn't exist + stat_result = miniIO_blob_client.stat_object(bucket_name, file_name) + last_modified_utc = stat_result.last_modified + return True, last_modified_utc + except S3Error as e: + if e.code == 'NoSuchKey': + return False, 0 + # Re-raise if it's a different error + raise + +def get_text_dimensions(text, font, font_scale, thickness): + (width, height), baseline = cv2.getTextSize(text, font, font_scale, thickness) + return { + 'width': width, + 'height': height, + 'baseline': baseline, + 'total_height': height + baseline + } + +def save_to_minio(image, filename, bucket_name="daily-maps", content_type="image/png"): + """ + Save a PIL Image directly to MinIO + + Args: + image (PIL.Image): Image to save + filename (str): Filename to use in MinIO + bucket_name (str): MinIO bucket name + content_type (str): Content type of the file + + Returns: + bool: True if successful, False otherwise + """ + logger = logging.getLogger(__name__) + try: + # Convert PIL image to bytes + img_byte_arr = io.BytesIO() + image.save(img_byte_arr, format='PNG') + img_byte_arr.seek(0) # Move to start of the BytesIO buffer + + # Upload to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + filename, + img_byte_arr, + length=len(img_byte_arr.getvalue()), + content_type=content_type + ) + return True + + except Exception as e: + logger.error(f"Error saving to MinIO: {traceback.format_exc()}") + return False + + +def SaveImageInBlob(file_name, arr_stretched, labels = []): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def SaveImageInBlobLabelsOut(file_name, arr_stretched, labels, title_labels): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + for label in title_labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def GetLocalTimeForDate(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def GetLocalTimeForDateSimple(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + return utc_start, utc_next + +def GetLocalTimeEpochsForDate(selected_date, time_zone_s): + """ + Get start and end of day epochs for a given date in a specific timezone. + + Args: + selected_date (str): Date in "YYYY-MM-DD" format + time_zone_s (str): Timezone string (e.g., "America/New_York") + + Returns: + tuple: (start_epoch, end_epoch) - Unix timestamps for start and end of day + """ + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Convert to epochs (Unix timestamps) + start_epoch = int(utc_start.timestamp()) + end_epoch = int(utc_next.timestamp()) + + return start_epoch, end_epoch + +def UTC2Local(utc_time, time_zone_s): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + #local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(selected_date) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def get_timezone_aware_datetime(time_str, timezone_str="America/Los_Angeles"): + """ + Convert a naive datetime string to a timezone-aware datetime object. + + Parameters: + time_str: String in format 'YYYY-MM-DD HH:MM:SS' + timezone_str: String representing the timezone (default: "America/Los_Angeles") + + Returns: + datetime: A timezone-aware datetime object + """ + # Parse the naive datetime + naive_dt = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S') + + # Get the timezone + tz = pytz.timezone(timezone_str) + + # Localize the datetime (make it timezone-aware) + # localize() is the correct way to do this, as it handles DST transitions properly + aware_dt = tz.localize(naive_dt) + return aware_dt + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6 + } + # Add sensor columns dynamically + cols_len = len(columns) + for i in range(10): + columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_smell_array_from_timescale(day_data, time_from_str, device_to_index, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Define column mappings (sensor type to position in record) + columns = { + 's0': 2, + 's1': 3, + 's2': 4, + 's3': 5, + 's4': 6, + 's5': 7, + 's6': 8, + 's7': 9, + 's8': 10, + 's9': 11 + } + ## Add sensor columns dynamically + #cols_len = len(columns) + #for i in range(10): + #columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_radar_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 's2': 2, + 's3': 3, + 's4': 4, + 's5': 5, + 's6': 6, + 's7': 7, + 's8': 8 + } + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def ScaleTemperature(temperature_in_f): + # Define our key temperature points and their corresponding color values + temp_points = [30, 50, 70, 90, 110] + color_values = [768, 640, 384, 128, 0] # Color values in the rainbow scale + + # Clamp the temperature to our range + clamped_temp = max(min(temperature_in_f, 110), 30) + + # Find which segment the temperature falls into + for i in range(len(temp_points) - 1): + if temp_points[i] <= clamped_temp <= temp_points[i + 1]: + # Linear interpolation between the two nearest points + t = (clamped_temp - temp_points[i]) / (temp_points[i + 1] - temp_points[i]) + color_value = int(color_values[i] + t * (color_values[i + 1] - color_values[i])) + return color_value + + # Fallback (should never reach here due to clamping) + return 0 + +def GetTemperatureColor(temperature_in_f): + color_value = ScaleTemperature(temperature_in_f) + return BestColor(color_value) + +def BestColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val > 1279): + in_val = 1279 + if (in_val < 256): + r = 255 + g = in_val + elif (in_val < 512): + r = 511 - in_val + g = 255 + elif (in_val < 768): + g = 255 + b = in_val-512 + elif (in_val < 1024): + g = 1023 - in_val + b = 255 + else: + r = in_val - 1024 + b = 255 + + #if (r > 255): + # print(in_val) + # print(int(r),int(g),int(b)) + return(int(r),int(g),int(b)) + +def GrayColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val < 0): + in_val = 0 + if(in_val > 255): + in_val = 255 + + r = in_val + g = r + b = r + return(int(r),int(g),int(b)) + +def fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str): + """ + Fill numpy array with data from TimeScaleDB query results. + + Parameters: + day_data: List of tuples from database query + time_from_str: Starting datetime string in format 'YYYY-MM-DD HH:MM:SS' + devices_list: List of device IDs + arr_source: Pre-initialized numpy array to fill + + Returns: + numpy.ndarray: Filled array + """ + # Parse the start time + #start_time = get_timezone_aware_datetime(time_from_str, timezone_str) + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + # Create mapping of device_ids to their index positions + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define columns and their positions in the result tuple + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Process each record + for record in day_data: + # Get minute and device_id from record + record_time = record[0] # minute column + device_id = record[1] # device_id column + + if record_time and device_id: + # Calculate minute delta + minute_delta = int((record_time - start_time).total_seconds() / 60) + + if 0 <= minute_delta < arr_source.shape[1]: + # Calculate base index for this device + base_idx = device_to_index[device_id] * len(columns) + + # Fill data for each sensor/measurement type + for col_name, col_offset in columns.items(): + value = record[col_offset] + if value is not None: # Skip NULL values + row_idx = base_idx + list(columns.keys()).index(col_name) + arr_source[row_idx, minute_delta] = value + + return arr_source + +def fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def CalcExtremes(arr_source, length, height): + """ + Calculate min and max values for each row within legal bounds. + Optimized version using numpy vectorized operations. + + Parameters: + arr_source: numpy array of shape (height, length+4) containing data and bounds + length: number of data points to process (typically 1440 for minutes in a day) + height: number of rows in the array + + Returns: + numpy array with min/max values stored in columns 1442 and 1443 + """ + # Extract the data portion and bounds + data = arr_source[:, :length] + ignore_below = arr_source[:, 1440:1441] # Keep 2D shape for broadcasting + ignore_above = arr_source[:, 1441:1442] # Keep 2D shape for broadcasting + + # Create masks for valid values + above_min_mask = data >= ignore_below + below_max_mask = data <= ignore_above + valid_mask = above_min_mask & below_max_mask + + # Create a masked array to handle invalid values + masked_data = np.ma.array(data, mask=~valid_mask) + + # Calculate min and max values for each row + row_mins = np.ma.min(masked_data, axis=1).filled(-0.001) + row_maxs = np.ma.max(masked_data, axis=1).filled(-0.001) + + # Store results + arr_source[:, 1442] = row_mins + arr_source[:, 1443] = row_maxs + + return arr_source + +def plot(arr, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def ShowArray(arr, threshold, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + plt.axhline(y=threshold, color='red', linestyle='--', + label=f'Threshold: {threshold:.3f}') + plt.xlabel('Index') + plt.ylabel('Value') + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def AddLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([s_table[i] for i in range(sensors_c)]) + min_vals = np.array([sensor_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([sensor_legal_values[t][1] for t in sensor_types]) + windows = np.array([sensor_legal_values[t][2] for t in sensor_types]) + + # Get values for each row based on sensor type + row_windows = windows[sensor_indices] + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Process rows that need cleaning (window > 2) + clean_mask = row_windows > 2 + if np.any(clean_mask): + # Clean each row with its corresponding window size + for window in np.unique(row_windows[clean_mask]): + # Get indices of rows that need this window size + rows_to_clean = np.where(clean_mask & (row_windows == window))[0] + + # Clean each row individually (since clean_data_vectorized expects 1D input) + for row_idx in rows_to_clean: + arr_source[row_idx, :1440] = clean_data_vectorized( + arr_source[row_idx, :1440], + window, + percentile + ) + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + + return arr_source + +def AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([smells_table[i] for i in range(sensors_c)]) + min_vals = np.array([smell_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([smell_legal_values[t][1] for t in sensor_types]) + # Get values for each row based on sensor type + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Replace values smaller than smell_min and larger than smell_max with no_smell + # Create a mask for the data points (first 1440 columns) + data_mask_below = arr_source[:, :1440] < smell_min + data_mask_above = arr_source[:, :1440] > smell_max + data_mask_invalid = data_mask_below | data_mask_above + + # Replace invalid values with no_smell + arr_source[:, :1440][data_mask_invalid] = no_smell + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + return arr_source + +def AddLimits(arr_source, devices_c, sensors_c, percentile): + for y in range(devices_c*sensors_c): + sensor_index = y % sensors_c + min_ok, max_ok, window = sensor_legal_values[s_table[sensor_index]] + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "before_clean_sensor.png") + if window > 2: + arr_source[y, :1440] = clean_data_vectorized(arr_source[y, :1440], window, percentile) + + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "after_clean_sensor.png") + + arr_source[y][1440] = min_ok + arr_source[y][1441] = max_ok + return arr_source + +def clean_data_vectorized(data, window, percentile): + """ + Vectorized version of clean_data function using pure numpy + First removes zeros, then cleans outliers + + Parameters: + data: numpy array of sensor readings + window: int, size of rolling window + percentile: float, percentile threshold for deviation filtering + """ + # Create a copy to avoid modifying original data + working_data = data.copy() + + # Replace zeros with NaN + zero_mask = working_data == 0 + working_data[zero_mask] = np.nan + + # Create rolling window view of the data + def rolling_window(a, window): + shape = a.shape[:-1] + (a.shape[-1] - window + 1, window) + strides = a.strides + (a.strides[-1],) + return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides) + + # Pad array for edge handling + pad_width = window // 2 + padded = np.pad(working_data, pad_width, mode='edge') + + # Create rolling windows + windows = rolling_window(padded, window) + + # Calculate rolling median (ignoring NaN values) + medians = np.nanmedian(windows, axis=1) + + # Forward/backward fill any NaN in medians + # Forward fill + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), 0) + np.maximum.accumulate(idx, out=idx) + medians[mask] = medians[idx[mask]] + + # Backward fill any remaining NaNs + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), mask.shape[0] - 1) + idx = np.minimum.accumulate(idx[::-1])[::-1] + medians[mask] = medians[idx[mask]] + + # Calculate deviations (ignoring NaN values) + deviations = np.abs(working_data - medians) + + # Calculate threshold (ignoring NaN values) + threshold = np.nanpercentile(deviations, percentile) + + # Create mask and replace outliers with median values + # Points are good if they're not NaN and deviation is within threshold + good_points = (~np.isnan(working_data)) & (deviations <= threshold) + + # Replace all bad points (including zeros and outliers) with median values + result = np.where(good_points, working_data, medians) + + return result + + +def process_chunk(args): + """ + Process a chunk of rows + """ + chunk, sensors_c, sensor_legal_values, s_table, window, percentile = args + result = np.copy(chunk) + + # Process all time series in the chunk at once + result[:, :1440] = np.array([ + clean_data_vectorized(row[:1440], window, percentile) + for row in chunk + ]) + + # Set limits for all rows in chunk using vectorized operations + sensor_indices = np.arange(len(chunk)) % sensors_c + min_values = np.array([sensor_legal_values[s_table[i]][0] for i in sensor_indices]) + max_values = np.array([sensor_legal_values[s_table[i]][1] for i in sensor_indices]) + + result[:, 1440] = min_values + result[:, 1441] = max_values + + return result + + +def FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Optimized version of FillImage function that fills the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + group_by: grouping strategy ("sensortype" or other) + bw: boolean flag for black and white output + + Returns: + arr_stretched: Filled array with RGB values + and vocs_scaled aray from 0 to 1280 + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Pre-calculate VOC rows mask + if group_by != "sensortype": + voc_rows = np.arange(stripes) >= 5 * devices_c + else: + voc_rows = (np.arange(stripes) % sensors_c) >= 5 + + # Pre-calculate destination row mapping for sensortype grouping + if group_by == "sensortype": + row_indices = np.arange(stripes) + sensor_indices = row_indices % sensors_c + device_indices = row_indices // sensors_c + dest_rows = sensor_indices * devices_c + device_indices + dest_rows = dest_rows[:, np.newaxis] * stretch_by + np.arange(stretch_by) + else: + row_indices = np.arange(stripes)[:, np.newaxis] * stretch_by + np.arange(stretch_by) + + # Optimize color calculation functions + def best_color_vectorized(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + def gray_color_vectorized(vals): + """Vectorized version of GrayColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 255).astype(np.int32) + return vals, vals, vals + + color_func = gray_color_vectorized if bw else best_color_vectorized + + # Process all rows at once + valid_mask = scaled_day[:, :minutes] != -0.001 + big_min = scaled_day[:, 1442:1443] # Keep 2D shape for broadcasting + big_max = scaled_day[:, 1443:1444] + + # Calculate k factors where max > min + valid_range_mask = big_max > big_min + k = np.zeros_like(big_min) + k[valid_range_mask] = (1280 if not bw else 255) / (big_max[valid_range_mask] - big_min[valid_range_mask]) + + # Calculate normalized values for all rows at once + normalized_vals = np.zeros_like(scaled_day[:, :minutes]) + valid_range_indices = np.where(valid_range_mask)[0] + + normalized_vals[valid_range_indices] = ( + k[valid_range_indices] * + (scaled_day[valid_range_indices, :minutes] - big_min[valid_range_indices]) + ) + + # Invert VOC rows + normalized_vals[voc_rows] = (1279 if not bw else 255) - normalized_vals[voc_rows] + + # Apply valid mask + normalized_vals[~valid_mask] = 0 + + # Convert to RGB + r, g, b = color_func(normalized_vals) + + # Create RGB array + rgb_values = np.stack([r, g, b], axis=-1) + + # Handle special case where max == min + equal_range_mask = ~valid_range_mask + if np.any(equal_range_mask): + rgb_values[equal_range_mask.ravel()] = 128 + + # Fill the stretched array efficiently + if group_by == "sensortype": + arr_stretched[dest_rows] = rgb_values[:, None] + else: + arr_stretched[row_indices] = rgb_values[:, None] + + return arr_stretched, normalized_vals[voc_rows] + + +def FillSmellImage_optimized(scaled_day, arr_stretched, y_offset): + """ + Fill the stretched array with colored sensor data from scaled_day. + + Parameters: + scaled_day: 2D array of shape (70, 1444) containing sensor readings + arr_stretched: 3D array of shape (2685, 1640, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stretch_by = 20 + x_offset = 200 + + def best_color_vectorizedS(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + # Process each row in scaled_day + for row_idx in range(scaled_day.shape[0]): + # Extract min and max for this row + row_min = scaled_day[row_idx, 1442] + row_max = scaled_day[row_idx, 1443] + + # Get data for this row (first 1440 elements) + row_data = scaled_day[row_idx, :1440] + + # Check if min and max are the same + if row_min == row_max: + # Create gray stripe + stripe = np.ones((stretch_by, 1440, 3), dtype=np.int32) * 128 + else: + # Normalize the data between 0 and 1279 + k = 1280 / (row_max - row_min) + normalized_vals = k * (row_data - row_min) + normalized_vals = np.clip(normalized_vals, 0, 1279) + + # Convert to RGB + r, g, b = best_color_vectorizedS(normalized_vals) + + # Create RGB stripe + stripe = np.zeros((stretch_by, 1440, 3), dtype=np.int32) + + # Fill stripe with the same color pattern for all stretch_by rows + for i in range(stretch_by): + stripe[i, :, 0] = r + stripe[i, :, 1] = g + stripe[i, :, 2] = b + + # Calculate the y position for this stripe + y_pos = y_offset + row_idx * stretch_by + + # Place the stripe into arr_stretched + print(stretch_by, stripe.shape, arr_stretched.shape, y_pos) + arr_stretched[y_pos:y_pos+stretch_by, x_offset:x_offset+1440, :] = stripe + + return arr_stretched + +def FillImage(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % sensors_c) >= 5]) + # Vectorize the BestColor function + if not bw: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = scaled_day[row, 1442] # min value + big_max = scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if not bw: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if not bw: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + sensor_index = row % sensors_c + device_index = int(row/sensors_c) + dest_row = sensor_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def FillRadarImage(scaled_day, devices_c, bands, arr_stretched, group_by, map_type): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + bands: number of bands per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * bands + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % bands) >= 5]) + # Vectorize the BestColor function + if map_type == 3: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = 0 #scaled_day[row, 1442] # min value + big_max = 255 #scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if map_type == 3: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if map_type == 3: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + band_index = row % bands + device_index = int(row/bands) + dest_row = band_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def GetFullLocMapDetails(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + local_timezone = pytz.timezone('America/Los_Angeles') # Replace with your local timezone + dest_path = os.path.dirname(map_file) + + parts = map_file.split("/") + deployment = parts[-2] + parts1 = parts[-1].split("_") + date_string = parts1[1] + + deployments = GetDeploymentB(deployment, -1) #All + last_locations_file = "" + last_per_minute_file = "" + + today = datetime.today() + deployment_details = deployments[0] + deployment_pair = deployment_details[0] + proximity_lst = deployment_details[1] + + date_object = datetime.strptime(date_string, "%Y-%m-%d") + date_object_midnight = local_timezone.localize(date_object.replace(hour=0, minute=0, second=0, microsecond=0)) + selected_epoch = int(date_object_midnight.timestamp()) + + sel_date = datetime.fromtimestamp(selected_epoch) + devices_list_str = GetDevicesList(deployment_details, sel_date)#.split(',') + devices_list = ast.literal_eval(devices_list_str) + return devices_list, selected_epoch, dest_path + +def median_filter(data, window_size): + filtered_data = [] + print(len(data)) + window = deque(maxlen=window_size) + last_value = -1 + offset = 0 + added_old = 0 + for value in data: + if value != '': + added_old = 0 + last_value = value + window.append(value) + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + else: + if last_value != -1: + if added_old < window_size: + added_old = added_old + 1 + window.append(last_value) + else: + window.append(-1) + + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + + else: + offset +=1 + + if len(filtered_data) > 0: + offset += (window_size // 2) + #if starts empty, just leav it such, do not fake backwards from midnight + first_val = -1# filtered_data[0] + last_val = filtered_data[-1] + front_padding = [first_val] * offset + remaining = len(data) - len(filtered_data) - len(front_padding) + back_padding = [last_val] * remaining + out_data = front_padding + filtered_data + back_padding + else: + out_data = data + #add front and back padding + + return out_data + +def FilterGlitches(wave_in, filter_minutes): + + if(filter_minutes > 0): + notfiltered_wave = [i[0] for i in wave_in] + filtered_wave = median_filter(notfiltered_wave, filter_minutes) + for i, value in enumerate(filtered_wave): + wave_in[i][0] = value + + return wave_in + +def setup_timezone_converter(time_zone_st): + """ + Setup timezone converter to be reused + + Parameters: + time_zone_st (str): Timezone string (e.g. 'Europe/Berlin') + + Returns: + pytz.timezone: Timezone object for conversion + """ + return pytz.timezone(time_zone_st) + +def ReadDailyRadar(MAC, current_date): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + start_of_day = ToLocal(calendar.timegm(datetime(current_date.year, current_date.month,current_date.day, 0, 0).timetuple())) + end_of_day = start_of_day + 1440 * 60 + file = os.path.join(scriptDir, "DB/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file = file.replace("\\","/") + file1 = os.path.join(scriptDir, "DB/processed_db/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file1 = file1.replace("\\","/") + if (not path.exists(file) and not path.exists(file1)): + print(file + " and " + file1 + " are not found") + return [] + result = [] + min_OK = "0" + sqlr = "SELECT * FROM radars WHERE time >= "+str(start_of_day) +" and time < "+str(end_of_day) +" ORDER BY time ASC" + #sqlr = "SELECT Date, high, low from "+sensor.lower()+"s1Min"+" WHERE low >= "+min_OK+" and Date >= "+str(start_of_day) +" and Date < "+str(end_of_day) + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + # M0 ............M8 S2 ........S8 + #day_minutes_data = [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]] * (24 * 60 + 2) + day_minutes_data = [[0] * 16 for _ in range(24 * 60)] + #for each gate lets find maximum value per minute + for mgate in range(9): + max_per_min = 0 + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[mgate + 6] > day_minutes_data[minute_m][mgate]: + day_minutes_data[minute_m][mgate] = minute_data[mgate + 6] + + for sgate in range(7): + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[sgate + 17] > day_minutes_data[minute_m][sgate+9]: + day_minutes_data[minute_m][sgate+9] = minute_data[sgate + 17] + + return day_minutes_data + + +def FromLocalMidnight(epoch_time, local_delta): + + # Convert epoch time to UTC datetime object + print(type(epoch_time)) + print(epoch_time) + local_datetime = datetime.datetime.utcfromtimestamp(epoch_time+local_delta).replace(tzinfo=pytz.UTC) + + # Calculate minute count from midnight + minutes_from_midnight = (local_datetime - local_datetime.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60 + return minutes_from_midnight + +def process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest): + """ + NumPy-based version of wave processing + + Parameters: + my_data: List of tuples containing (time_val, device_id, other radar_fields_of_interest) + time_zone_s: Target timezone string + device_id_2_threshold: Dictionary mapping device_ids to their thresholds + + Returns: + List of [device_id, max_val] pairs for each minute + """ + wave_m = None + tz = pytz.timezone(time_zone_s) + if not my_data: + return [["", -1] for _ in range(1440)] + + vectorized_BestColor = np.vectorize(BestColor) + stripes = len(device_id_2_threshold) + stretch_by = 5 + minutes = 1440 + arr_source = np.zeros((int(stripes), minutes), dtype=np.float32) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + index_map = {word: idx for idx, word in enumerate(radar_fields_of_interest)} + devices_map = {word: idx for idx, word in enumerate(device_id_2_threshold)} + times = [] + start_time = 0 + for data_set in my_data: + time_stamp = data_set[0] + if start_time == 0: + + # Convert timestamp to a datetime object in UTC + local_tz = pytz.timezone(time_zone_s) + local_time = time_stamp.astimezone(local_tz) + # Set the time to the start of the day in the local time zone + start_of_day_local = local_time.replace(hour=0, minute=0, second=0, microsecond=0) + # Convert the start of the day back to UTC + start_time = start_of_day_local.astimezone(pytz.utc) + + diff = time_stamp - start_time + minute = int(diff.total_seconds() / 60) + device_id = data_set[1] + field_name = device_id_2_threshold[device_id][0] + field_index = index_map[field_name] + threshold = device_id_2_threshold[device_id][1] + value = data_set[2+field_index] + if value > threshold: + arr_source[devices_map[device_id]][minute] = value + #np.savetxt('output.csv', arr_source, delimiter=',') + if False: + for yy in range(stripes): + rgb_row = vectorized_BestColor(1280*arr_source[yy]/100) + rgb_reshaped = np.array(rgb_row).reshape(3, minutes).T + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_reshaped + + SaveImageInBlob(image_file, arr_stretched, []) + + + max_values = np.max(arr_source, axis=0) + + # Get indices (0-based) + wave_m = np.argmax(arr_source, axis=0) + + # Add 1 to convert to 1-based indexing + wave_m = wave_m + 1 + + # Set to 0 where the column was all zeros + wave_m[max_values == 0] = 0 + + return wave_m + + + +def ReadDailyCollapsedFastRadar(MAC, time_from_str, time_to_str): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins based on s28 (stationary[2] to [8]) + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + result = [] + min_OK = "0" + sqlr = "SELECT radar_max FROM devices WHERE MAC = '"+MAC +"'" + print(sqlr) + DB_to_be_found_in_full = os.path.join(scriptDir, "main.db") + DB_to_be_found_in_full = DB_to_be_found_in_full.replace("\\","/") + result = QuerrySql(DB_to_be_found_in_full, sqlr) + sqlr = "SELECT date, low FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + if len(result)>0: + if result[0][0] == 1: + sqlr = "SELECT date, high FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + return result + +def vectorized_best_color_numpy(values): + """Vectorized version of BestColor using pure NumPy""" + # Ensure values are within range + values = np.clip(values, 0, 1279) + + # Initialize output arrays + r = np.zeros_like(values, dtype=np.uint8) + g = np.zeros_like(values, dtype=np.uint8) + b = np.zeros_like(values, dtype=np.uint8) + + # Create masks for each range + mask_0_255 = values < 256 + mask_256_511 = (values >= 256) & (values < 512) + mask_512_767 = (values >= 512) & (values < 768) + mask_768_1023 = (values >= 768) & (values < 1024) + mask_1024_plus = values >= 1024 + + # Set values for each range using masks + r[mask_0_255] = 255 + g[mask_0_255] = values[mask_0_255] + + r[mask_256_511] = 511 - values[mask_256_511] + g[mask_256_511] = 255 + + g[mask_512_767] = 255 + b[mask_512_767] = values[mask_512_767] - 512 + + g[mask_768_1023] = 1023 - values[mask_768_1023] + b[mask_768_1023] = 255 + + r[mask_1024_plus] = values[mask_1024_plus] - 1024 + b[mask_1024_plus] = 255 + + return np.stack([r, g, b], axis=-1) + +def create_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + + color_values[:, :] = ((values[batch_slice, :] - min_val) / (max_val - min_val)) * 1279.0 + #color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def create_light_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for light data (range 0-4095) + + Parameters: + my_data (list): Data from the database query + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for normalization (default: 0) + max_val (float): Maximum value for normalization (default: 4095) + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 1 for light data) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float - light data is in column 2 + # Reshape to match expected format (n_samples, n_fields) + values = data_array[:, 2].astype(np.float32).reshape(-1, 1) + + # Process in batches to avoid memory issues + batch_size = 1000 + + if bw: + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to grayscale (0-255) + gray_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 255.0) + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # Assign values to the image array + for i in range(end_idx - start_idx): + # Create RGB grayscale (same value for R, G, B) + gray_rgb = np.full(3, gray_values[i, 0], dtype=np.uint8) + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = gray_rgb + else: + # Color mode + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to color range (0-1279) + color_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 1279.0) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # For each value, calculate its RGB color and assign to the image + for i in range(end_idx - start_idx): + # Convert normalized value to RGB using vectorized_best_color_numpy + rgb_value = vectorized_best_color_numpy(np.array([color_values[i, 0]]))[0] + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = rgb_value + + return wave_m + +def create_temperature_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for temperature data with alarm levels + + Parameters: + my_data (list): Data from the database query with columns for minute, device_id, temperature_avg, alarm_level + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names - should be ['temperature', 'temperature_state'] + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for temperature normalization + max_val (float): Maximum value for temperature normalization + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 2 for temperature data: temperature and alarm state) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + temperature = data_array[batch_slice][i, 2] + alarm_level = 0 + + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row - index 0, 2, 4...) + # Normalize temperature to the color range and create color + if not bw: + # For color mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 1279.0, 0, 1279) + temp_rgb = vectorized_best_color_numpy(np.array([normalized_temp]))[0] + else: + # For B&W mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 255.0, 0, 255) + gray_value = int(normalized_temp) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the temperature color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row - index 1, 3, 5...) + # Set color based on alarm level (0=green, 1=yellow, 2=red) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + + +def create_humidity_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=100): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return wave_m + + # Number of fields + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + # Define the color mapping function based on the exact spectrum we want + def get_color(t): + """Get RGB color from humidity 0-100""" + # Define color stops - exact RGB values at each step + # Format: (position, (r, g, b)) + #color_stops = [ + #(0, (0, 0, 255)), # Blue + #(20, (0, 255, 255)), # Cyan + #(40, (0, 255, 0)), # Green (centered at 40) + #(60, (255, 255, 0)), # Yellow + #(80, (255, 0, 0)), # Red + #(100, (255, 0, 255)) # Violet + #] + + color_stops = [ + (0, (0, 0, 255)), # Blue + (16, (0, 255, 255)), # Cyan + (32, (0, 255, 0)), # Green (now centered at 32) + (60, (255, 255, 0)), # Yellow + (80, (255, 0, 0)), # Red + (100, (255, 0, 255)) # Violet + ] + + # Ensure t is within range + t = max(0, min(100, t)) + + # Find the two stops to interpolate between + for i in range(len(color_stops) - 1): + pos1, color1 = color_stops[i] + pos2, color2 = color_stops[i+1] + + if pos1 <= t <= pos2: + # Linear interpolation between the two color stops + ratio = (t - pos1) / (pos2 - pos1) + r = int(color1[0] + ratio * (color2[0] - color1[0])) + g = int(color1[1] + ratio * (color2[1] - color1[1])) + b = int(color1[2] + ratio * (color2[2] - color1[2])) + return r, g, b + + # Should never reach here + return 0, 0, 0 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + humidity = float(data_array[batch_slice][i, 2]) + + # Map humidity from min_val-max_val to 0-100 for our color function + normalized_temp = 100.0 * (humidity - min_val) / (max_val - min_val) if max_val > min_val else 0 + normalized_temp = max(0, min(100, normalized_temp)) # Clamp to 0-100 + + alarm_level = 0 + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row) + if not bw: + # Get RGB color from our direct mapping function + r, g, b = get_color(normalized_temp) + + # OpenCV uses BGR ordering, not RGB + temp_rgb = np.array([b, g, r], dtype=np.uint8) + else: + # For B&W mode + gray_value = int(normalized_temp * 2.55) # 0-100 to 0-255 + gray_value = max(0, min(255, gray_value)) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the humidity color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) #thisis B,G,R !!! + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + +def create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields, device_to_index, base_minute, timezone_st, smell_component_stretch_by, selected_date, y_offset): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return + + minutes = 1440 + devices_c = len(device_to_index) + sensors_c = len(fields) + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + st = time.time() + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, timezone_st) + st = time.time() + arr_source = fast_fill_smell_array_from_timescale(my_data, time_from_str, device_to_index, arr_source_template, timezone_st) + arr_source = AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + scaled_day = CalcExtremes(arr_source, minutes, stripes) + + arr_stretched = FillSmellImage_optimized(scaled_day, arr_stretched, y_offset) + + return + + +def create_optimized_heatmap_simple(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for i in range(0, len(data_array)): + rgb_value = ((values[i] - min_val) / (max_val - min_val)) * 1279.0 + wave_m[i, x_coords[i]] = rgb_value + + return wave_m + + +def create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] / 100.0) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png'): + """ + Visualize how GMM separates the stationary signal into components + """ + # Prepare data + X = stationary_signal.reshape(-1, 1) + + # Fit GMM + gmm = GaussianMixture(n_components=2, random_state=42) + gmm.fit(X) + + # Get parameters + means = gmm.means_.flatten() + stds = np.sqrt(gmm.covariances_.flatten()) + weights = gmm.weights_ + + # Create histogram of actual data + plt.figure(figsize=(12, 6)) + + # Plot histogram of actual data + plt.hist(X, bins=50, density=True, alpha=0.6, color='gray', + label='Actual Signal Distribution') + + # Generate points for GMM curves + x = np.linspace(X.min(), X.max(), 200) + + # Plot individual components + for i in range(len(means)): + plt.plot(x, weights[i] * stats.norm.pdf(x, means[i], stds[i]), + label=f'Component {i+1}: mean={means[i]:.2f}, std={stds[i]:.2f}') + + # Plot combined GMM + gmm_curve = np.zeros_like(x) + for i in range(len(means)): + gmm_curve += weights[i] * stats.norm.pdf(x, means[i], stds[i]) + plt.plot(x, gmm_curve, 'r--', linewidth=2, label='Combined GMM') + + # Add vertical lines for threshold + baseline = min(means) + threshold = baseline + 3 * np.sqrt(gmm.covariances_.flatten()[np.argmin(means)]) + plt.axvline(x=baseline, color='g', linestyle='--', label='Baseline') + plt.axvline(x=threshold, color='r', linestyle='--', label='Threshold') + + plt.title('Gaussian Mixture Model Components of Stationary Signal') + plt.xlabel('Signal Value') + plt.ylabel('Density') + plt.legend() + plt.grid(True) + + # Save and close + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def process_location_data(location_data): + """ + Convert raw location data into aligned time series. + """ + timestamps = np.array([t[0] for t in location_data]) + stationary = np.array([t[1] for t in location_data]) + motion = np.array([t[2] for t in location_data]) + return timestamps, stationary, motion + +def detect_presence_for_location(stationary_signal, motion_signal, + motion_threshold=5, gmm_components=2): + """ + Simplified presence detection for a single location. + Returns presence mask and parameters. + """ + # Fit GMM to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png') + + # Get baseline and threshold + baseline = min(gmm.means_)[0] + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std + + # Detect presence + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # Smooth presence detection (15 seconds window = 1.5 samples at 10sec sampling) + smooth_window = 3 + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, threshold + +def find_current_location(data_sets, start_time, end_time, motion_threshold=10): + """ + Analyze presence across multiple locations for each minute. + + Parameters: + ----------- + data_sets : dict + Dictionary of location_name: data_tuples pairs + start_time : datetime + Start time for analysis + end_time : datetime + End time for analysis + motion_threshold : float + Threshold for significant motion detection + + Returns: + -------- + dict + Minute by minute analysis of presence and movement + """ + # Process each location's data + location_data = {} + for location, data in data_sets.items(): + timestamps, stationary, motion = process_location_data(data) + presence, threshold = detect_presence_for_location(stationary, motion, motion_threshold) + location_data[location] = { + 'timestamps': timestamps, + 'presence': presence, + 'motion': motion, + 'stationary': stationary, + 'threshold': threshold + } + + # Create minute-by-minute analysis + current_time = start_time + results = [] + + while current_time < end_time: + minute_end = current_time + timedelta(minutes=1) + + # Analysis for current minute + minute_status = { + 'timestamp': current_time, + 'locations': [], + 'moving_locations': [], + 'presence_values': {}, + 'motion_values': {}, + 'status': 'nobody_present' + } + + # First pass: collect all presence and motion values + for location, data in location_data.items(): + # Find indices for current minute + mask = (data['timestamps'] >= current_time) & (data['timestamps'] < minute_end) + if not any(mask): + continue + + presence_in_minute = data['presence'][mask] + motion_in_minute = data['motion'][mask] + stationary_in_minute = data['stationary'][mask] + + if any(presence_in_minute): + minute_status['presence_values'][location] = np.max(stationary_in_minute) + minute_status['motion_values'][location] = np.max(motion_in_minute) + + # If no presence detected anywhere + if not minute_status['presence_values']: + minute_status['status'] = 'nobody_present' + results.append(minute_status) + current_time += timedelta(minutes=1) + continue + + + # Find location with strongest presence + primary_location = max(minute_status['presence_values'].items(), + key=lambda x: x[1])[0] + + # Count locations with significant motion + moving_locations = [loc for loc, motion in minute_status['motion_values'].items() + if motion > motion_threshold] + + plot(motion, filename=f"motion.png", title=f"Motion", style='line') + # Update status based on motion and presence + if len(moving_locations) > 1: + # Multiple locations with significant motion indicates multiple people + minute_status['status'] = 'multiple_people_moving' + minute_status['locations'] = moving_locations + minute_status['moving_locations'] = moving_locations + else: + # Single or no motion - assign to location with strongest presence + minute_status['locations'] = [primary_location] + if moving_locations: + minute_status['status'] = f'single_person_moving_in_{primary_location}' + minute_status['moving_locations'] = moving_locations + else: + minute_status['status'] = f'single_person_stationary_in_{primary_location}' + + results.append(minute_status) + current_time += timedelta(minutes=1) + + return results + +def get_size(obj, seen=None): + # Recursively find size of objects and their contents + if seen is None: + seen = set() + + obj_id = id(obj) + if obj_id in seen: + return 0 + + seen.add(obj_id) + size = sys.getsizeof(obj) + + if isinstance(obj, (list, tuple, set, dict)): + if isinstance(obj, (list, tuple, set)): + size += sum(get_size(i, seen) for i in obj) + else: # dict + size += sum(get_size(k, seen) + get_size(v, seen) for k, v in obj.items()) + + return size + +def CreatePresenceMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, + fast, filter_minutes, time_zone_s): + + #global Id2MACDict + data_sets = {} + ids_list = [] + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + time_from, time_to = GetLocalTimeForDateSimple(selected_date, time_zone_s) + + for details in devices_list: + + sql = get_device_radar_only_query(str(details[1]), time_from_str, time_to_str, [details[1]]) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + data_sets[details[2]] = cur.fetchall()#cur.fetchone() + + + + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, time_from, time_to) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") + + print(f"Dictionary size: {get_size(data_sets)} bytes") + devices_list_str = ','.join(str(device[1]) for device in devices_list) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + sql = get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #thresholds_dict = {} + + #stretch_to_min_max = True + #devices_c = len(devices_list) + + #data_sets = { + #'living_room': my_data1, + #'kitchen': my_data2, + #'bedroom1': my_data3, + #'bedroom2': my_data4, + #'hallway': my_data5, + #'bathroom': my_data6, + #'office': my_data7 + #} + + sensors_c = 1#len(sensors_table) + + + image_file = location_image_file + + minutes = 1440 + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] #Why 'm8_max' and 'm08_max' ?because m08 is m0 + m1 .. to 8! + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + #device_counter = 0 + stretch_by = 5 + + #arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + + + # Get start and end times from your data + start_time = min(data_sets['living_room'][0][0], + data_sets['kitchen'][0][0], + # ... add other locations + ) + end_time = max(data_sets['living_room'][-1][0], + data_sets['kitchen'][-1][0], + # ... add other locations + ) + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, start_time, end_time) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") +#---------------------------------------------------------------------------------------------------- + + + + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + base_minute = ConvertToBase(time_from_str, time_zone_s) + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + +def ConvertToBase(time_from_str, time_zone_s): + print(time_from_str) + dt = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + return dt + +def CreateFullLocationMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + if scale_global and chart_type != 3 and chart_type != 4: #"digital" and chart_type != "collapsed" + + max_gate={} + for gate in range(9): + max_gate[str(gate)+"_m"] = 0 + max_gate[str(gate)+"_s"] = 0 + + device_counter = 0 + for details in devices_list: + MAC, threshold, location_name, description = details + if threshold == None: + threshold = '["s3_max",12]' + + + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + for gate in range(9): + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > max_gate[str(gate)+"_m"]): + max_gate[str(gate)+"_m"] = minute_radar_lists[minute_m][gate] + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > max_gate[str(gate)+"_s"]): + max_gate[str(gate)+"_s"] = minute_radar_lists[minute_m][gate + 7] + + + if (chart_type == 2): #"analog" + + + #fields = ['absent_min', 'stationary_max', 'moving_max', 'both_max', + #'m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + #'m6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + #'s4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max'] + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + device_counter = 0 + stretch_by = 5 + + arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + elif (chart_type == 3): #"digital" + device_counter = 0 + for details in devices_list: + dev_id = details[0] + MAC, threshold, location_id, description = GetMacThrFromId(dev_id) + if threshold == None: + threshold = 30 + + sensor = "Radar" + location_name = location_names[location_id] + pickle_file = os.path.join(scriptDir, "scratch/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_radarM.pkl") + pickle_file = pickle_file.replace("\\","/") + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + y = 0 + sensor_index = 0 + + #location_index = 0 + + for gate in range(9): + threshold = 15 + if (gate > 1): + threshold = thresholds_dict[dev_id][gate-2] + + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > threshold): + minute_radar_lists[minute_m][gate] = 100 + else: + minute_radar_lists[minute_m][gate] = 0 + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > threshold): + minute_radar_lists[minute_m][gate + 7] = 100 + else: + minute_radar_lists[minute_m][gate + 7] = 0 + + m_max = 100 + m_min = 0 + s_max = 100 + s_min = 0 + + km = 0 + if(m_max > m_min): + km = 1280/(m_max - m_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_m = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_m[minute_m] = minute_radar_lists[minute_m][gate] + + if gate < 2: + DoDisplay(wave_m, location_name+" "+ description+" " + str(gate)) + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + arr_source[2*gate, :] = wave_m + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_m[col] + if sens_val != 0: + r,g,b=BestColor(km*(sens_val-m_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + #print(y, row, devices_c, sensor_index, location_index, stretch_index) + + #arr_stretched[y, :] = rgb_row + + if gate > 1: + ks = 0 + if(s_max > s_min): + if bw: + ks = 255/(s_max - s_min) + else: + ks = 1280/(s_max - s_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_s = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + arr_source[2*gate + 1, :] = wave_s + + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_s[col] + if sens_val != 0: + if bw: + r = ks*(sens_val-s_min) + g = r + b = r + else: + r,g,b=BestColor(ks*(sens_val-s_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + device_counter += 1 + print("stop") + + elif (chart_type == 4): #"collapsed" + + stretch_by = 50 + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + result_np = None + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + if result_np is not None: + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + + for minute_m in range(1440): + try: + + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + + #print("stop") + #print(r,g,b) + SaveObjectInBlob(image_file+".bin", present_at) + SaveImageInBlob(image_file, arr_stretched) + +def CreateFullLocationMapLabelsOut(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + + if (chart_type == 8): #"all graphs" + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + show_radar = True + show_light = True + show_temperature = True + show_humidity = True + show_smell = True + + labels_width = 200 + title_labels_height = 40 + title_label_width = 100 + + #common + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_line = cv2.LINE_AA + + #different + title_label_font_scale = 1 + title_label_font_color = (0, 0, 0)#(128, 255, 255) + title_label_font_thickness = 2 + + label_font_scale = 0.5 + label_font_color = (0, 0, 0)#(0, 255, 255) + label_font_thickness = 1 + + fields_n = len(fields) + + radar_stripes = len(devices_list) * fields_n + radar_stretch_by = 5 + + light_stripes = len(devices_list) + light_stretch_by = 20 + + smell_sensors_stripes = 10 * len(devices_list) + other_sensors_stripes = len(devices_list) + + temp_stripe_width = 15 + alarm_stripe_width = 5 + temperature_stretch_by = temp_stripe_width + alarm_stripe_width # Total height per device + + humidity_stripe_width = 15 + humidity_stretch_by = humidity_stripe_width + alarm_stripe_width + smell_component_stretch_by = 20 + + text_dimensions = get_text_dimensions("TEST", label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + + all_maps_height = 0 + + # radar, light, temperature, humidity, smell*10 + + if show_radar: + all_maps_height = title_labels_height + radar_stripes*radar_stretch_by + + if show_light: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*light_stretch_by + + if show_temperature: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*temperature_stretch_by + + if show_humidity: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*humidity_stretch_by + + if show_smell: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*smell_component_stretch_by * 10 + + + if all_maps_height == 0: + return + + vertical_offset = 0 + arr_stretched = np.full((all_maps_height, minutes+labels_width, 3), [255, 174, 70], dtype=np.uint8) + + #Lets add divider lines + x = 190 + if show_radar: + stretch_by = radar_stretch_by + cnt = 0 + for details in devices_list: + y = vertical_offset + title_labels_height + (cnt)*fields_n*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + radar_stripes*radar_stretch_by + vertical_offset = vertical_offset + section_height + if show_light: + stretch_by = light_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + + if show_temperature: + stretch_by = temperature_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + if show_humidity: + stretch_by = humidity_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*humidity_stretch_by + vertical_offset = vertical_offset + section_height + if show_smell: + stretch_by = smell_component_stretch_by + + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*10*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + #section_height = title_labels_height + other_sensors_stripes**stretch_by * 10 + #vertical_offset = vertical_offset + section_height + + #all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*stretch_by * 10 + + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + labels = [] + title_labels = [] + vertical_offset = 0 + ######################################## RADAR ################################################################## + if show_radar: + title_label_text = "RADAR" + fields_s = fields + stripes = radar_stripes + stretch_by = radar_stretch_by + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), vertical_offset + 10 + title_text_height), label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data != None: + + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields_s, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(radar_stretch_by): + y = yy * radar_stretch_by + stretch_index + arr_stretched[title_labels_height+y, 200:] = rgb_row + + print(time.time()-st) + vertical_offset = vertical_offset + title_labels_height + stripes*radar_stretch_by + ######################################## LIGHT ################################################################## + if show_light: + title_label_text = "LIGHT" + fields_s = ['light'] + min_val = 0 + max_val = 4095 + stretch_by = light_stretch_by + stripes = len(devices_list) * len(fields_s) # Calculate number of rows needed + # Calculate the correct vertical offset for light section + + # Draw the light section title at the correct position + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for light section + cnt = 0 + light_ids_list = [] # Create a separate list for light section + for details in devices_list: + dev_id = details[0] + light_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the light section + labels.append((descriptor, (10, vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by), + label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get light data using the existing query function + sql = get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, light_ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(light_ids_list)} + + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process light data + st = time.time() + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + # Use the light-specific function + wave_m = create_light_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Light heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap vertically + st = time.time() + section_start = vertical_offset + title_labels_height + + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + target_y = section_start + y + + # Make sure we're within bounds of the array + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = rgb_row + else: + print(f"Warning: Row {target_y} is out of bounds (max: {arr_stretched.shape[0]-1})") + + vertical_offset = vertical_offset + title_labels_height + stripes*stretch_by + print(f"Light stretching time: {time.time()-st:.4f} seconds") + + ######################################## TEMPERATURE ################################################################## + if show_temperature: + title_label_text = "TEMPERATURE" + fields_s = ['temperature', 'temperature_state'] + + # Define different stripe widths for temperature and alarm + + temp_offset = -16.0 + min_val = 20 + max_val = 30 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * temperature_stretch_by + #y_pos = vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get temperature data + sql = get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, temp_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + t = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if CelsiusToFahrenheit(t) <= 50 or CelsiusToFahrenheit(t) >= 90: + alarm_level = 2 # Critical - should be red + elif CelsiusToFahrenheit(t) <= 60 or CelsiusToFahrenheit(t) >= 80: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], t, alarm_level) + + # Create the heatmap data + wave_m = create_temperature_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Temperature heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for temperature and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + temp_row = wave_m[device_idx * 2] # Temperature row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * temperature_stretch_by + + # Draw the temperature stripe (15 pixels) + for stretch_index in range(temp_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = temp_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## HUMIDITY ################################################################## + ''' + Ideal indoor humidity: 30-50% + Too dry: Below 30% - Can cause dry skin, irritated eyes, and respiratory issues + Too humid: Above 60% - Feels warmer than actual temperature, promotes mold growth + ''' + if show_humidity: + title_label_text = "HUMIDITY" + fields_s = ['humidity', 'humidity_state'] + + # Define different stripe widths for humidity and alarm + + humidity_offset = 0 + min_val = 30#40 + max_val = 60#60 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * humidity_stretch_by + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get humidity data + sql = get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, humidity_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + h = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if h <= 20 or h >= 60: + alarm_level = 2 # Critical - should be red + elif h <= 30 or h >= 50: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], h, alarm_level) + + # Create the heatmap data + wave_m = create_humidity_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Humidity heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for humidity and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + humidity_row = wave_m[device_idx * 2] # Humidity row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * humidity_stretch_by + + # Draw the humidity stripe (15 pixels) + for stretch_index in range(humidity_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = humidity_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## SMELL ################################################################## + if show_smell: + title_label_text = "SMELL" + fields_s = ['S0', 'S1', 'S2', 'S3', 'S4', 'S5', 'S6', 'S7', 'S8', 'S9'] + + # Define different stripe widths for humidity and alarm + + smell_offset = 0 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + if show_humidity: + vertical_offset += title_labels_height + other_sensors_stripes * humidity_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height +80+ text_height + cnt * smell_component_stretch_by * 10 + #y_pos = vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get smell data + sql = get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, smell_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Create the heatmap data + create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields_s, device_to_index, base_minute, time_zone_s, smell_component_stretch_by, selected_date, vertical_offset + 18 + title_text_height) + + + + SaveImageInBlobLabelsOut(image_file, arr_stretched, labels, title_labels) + + print("stop") + + + + + +def CreateDailyLocationMap(location_image_file, devices_list, selected_date, filter_minutes, time_zone_s, stretch_by): + + devices_c = len(devices_list) + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + arr_stretched_sorted = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + rgbsorted_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + presence_minutes = {} + + #we want to generate present_at array + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + for minute_m in range(1440): + try: + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if Loc2Color[device_id_2_location[device_id]][1] in presence_minutes: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [presence_minutes[Loc2Color[device_id_2_location[device_id]][1]][0] + 1, Loc2Color[device_id_2_location[device_id]][0]] + else: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [1, Loc2Color[device_id_2_location[device_id]][0]] + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + start_minute = 0 + for color_key in sorted(presence_minutes): + print(color_key, presence_minutes[color_key]) + rgbsorted_row[start_minute:start_minute+presence_minutes[color_key][0]] = presence_minutes[color_key][1][::-1] + start_minute += presence_minutes[color_key][0] + + #we need to save present_at list to blob + SaveObjectInBlob(image_file+".bin", present_at) + #present_at_back_s = ReadObjectMinIO("daily-maps", image_file+".bin") + #present_at_back = json.loads(present_at_back_s) + #print(present_at_back) + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + arr_stretched_sorted[y, :] = rgbsorted_row + #print("stop") + #print(r,g,b) + SaveImageInBlob(image_file, arr_stretched) + SaveImageInBlob(image_file[:-4]+"S.png", arr_stretched_sorted) + + +def GenerateFullLocationMap(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMap(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def GenerateFullLocationMapLabelsOut(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMapLabelsOut(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def CreateMapFast(map_file, devices_list, selected_date, bw, time_zone_s, radar_part, group_by): + global Id2MACDict + + st = time.time() + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return False, [] + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return False, [] + + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + image_file = map_file + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + temp_offset = -16 + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + print(sql) + #print(sql) + #st = time.time() + print(f"@1 ----{time.time() - st}") + with get_db_connection() as conn: + print(f"@1a ----{time.time() - st}") + with conn.cursor() as cur: + print(f"@1b ----{time.time() - st}") + cur.execute(sql) + day_data = cur.fetchall()#cur.fetchone() + #print(result) + if day_data == None: + print(f"@1c ----{time.time() - st}") + return False, [] + print(f"@2 ----{time.time() - st}") + + stretch_by = 10 + minutes = 1440 + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + print(f"@3 ----{time.time() - st}") + st = time.time() + arr_stretched_template = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) # 3 for RGB channels + print(f"@4a ----{time.time() - st}") + #st = time.time() + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4b ----{time.time() - st}") + #st = time.time() + #arr_source = fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4n ----{time.time() - st}") + st = time.time() + arr_source = fast_fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + print(f"@5 ----{time.time() - st}") + arr_source = AddLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + print(f"@6 ----{time.time() - st}") + scaled_day = CalcExtremes(arr_source, minutes, stripes) + print(f"@7 ----{time.time() - st}") + arr_stretched, vocs_scaled = FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched_template, group_by, bw) + print(f"@8 ----{time.time() - st}") + SaveImageInBlob(image_file, arr_stretched) + print(f"@9 ----{time.time() - st}") + return True, vocs_scaled + + except Exception as e: + AddToLog(traceback.format_exc()) + return False, [] + +def get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + radar_part (str): Radar column name, defaults to 'radar' + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+ {temp_offset} as avg_temperature, + sr.avg_humidity, + sr.pressure_amplitude, + sr.max_light, + rr.radar, + sr.min_s0 as sensor_min_s0, + sr.min_s1 as sensor_min_s1, + sr.min_s2 as sensor_min_s2, + sr.min_s3 as sensor_min_s3, + sr.min_s4 as sensor_min_s4, + sr.min_s5 as sensor_min_s5, + sr.min_s6 as sensor_min_s6, + sr.min_s7 as sensor_min_s7, + sr.min_s8 as sensor_min_s8, + sr.min_s9 as sensor_min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS pressure_amplitude, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX({radar_part}) AS radar + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_device_radar_s28_only_query(time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + +def get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + + +def get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + radar_fields_of_interest (list) list of different unique fields required across all devices + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + radar_fields_to_get = "" + q_parts = "" + for field in radar_fields_of_interest: + if field == "s28_min": + q_part = "MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min" + elif field == "s28_max": + q_part = "MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max" + elif field == "m08_max": + q_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max" + elif field == "s2_max": + q_part = "MAX(s2) AS s2_max" + elif field == "s3_max": + q_part = "MAX(s3) AS s3_max" + elif field == "s4_max": + q_part = "MAX(s4) AS s4_max" + elif field == "s5_max": + q_part = "MAX(s5) AS s5_max" + elif field == "s6_max": + q_part = "MAX(s6) AS s6_max" + elif field == "s7_max": + q_part = "MAX(s7) AS s7_max" + elif field == "s8_max": + q_part = "MAX(s8) AS s8_max" + elif field == "m0_max": + q_part = "MAX(m0) AS m0_max" + elif field == "m1_max": + q_part = "MAX(m1) AS m1_max" + elif field == "m2_max": + q_part = "MAX(m2) AS m2_max" + elif field == "m3_max": + q_part = "MAX(m3) AS m3_max" + elif field == "m4_max": + q_part = "MAX(m4) AS m4_max" + elif field == "m5_max": + q_part = "MAX(m5) AS m5_max" + elif field == "m6_max": + q_part = "MAX(m6) AS m6_max" + elif field == "m7_max": + q_part = "MAX(m7) AS m7_max" + elif field == "m8_max": + q_part = "MAX(m8) AS m8_max" + else: + q_part = field + + if q_parts == "": + q_parts = q_part + else: + q_parts = q_parts + ", " + q_part + if radar_fields_to_get == "": + radar_fields_to_get = field + else: + radar_fields_to_get = radar_fields_to_get + ", " + field + sql = f""" + SELECT + minute, + device_id, + {radar_fields_to_get} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {q_parts} + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_radar_only_colapsed_query_wid(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + radar_fields_to_get = "" + q_parts = "" + for field in radar_fields_of_interest: + if field == "s28_min": + q_part = "MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min" + elif field == "s28_max": + q_part = "MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max" + elif field == "m08_max": + q_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max" + elif field == "s2_max": + q_part = "MAX(s2) AS s2_max" + elif field == "s3_max": + q_part = "MAX(s3) AS s3_max" + elif field == "s4_max": + q_part = "MAX(s4) AS s4_max" + elif field == "s5_max": + q_part = "MAX(s5) AS s5_max" + elif field == "s6_max": + q_part = "MAX(s6) AS s6_max" + elif field == "s7_max": + q_part = "MAX(s7) AS s7_max" + elif field == "s8_max": + q_part = "MAX(s8) AS s8_max" + elif field == "m0_max": + q_part = "MAX(m0) AS m0_max" + elif field == "m1_max": + q_part = "MAX(m1) AS m1_max" + elif field == "m2_max": + q_part = "MAX(m2) AS m2_max" + elif field == "m3_max": + q_part = "MAX(m3) AS m3_max" + elif field == "m4_max": + q_part = "MAX(m4) AS m4_max" + elif field == "m5_max": + q_part = "MAX(m5) AS m5_max" + elif field == "m6_max": + q_part = "MAX(m6) AS m6_max" + elif field == "m7_max": + q_part = "MAX(m7) AS m7_max" + elif field == "m8_max": + q_part = "MAX(m8) AS m8_max" + else: + q_part = field + + if q_parts == "": + q_parts = q_part + else: + q_parts = q_parts + ", " + q_part + if radar_fields_to_get == "": + radar_fields_to_get = field + else: + radar_fields_to_get = radar_fields_to_get + ", " + field + sql = f""" + SELECT + minute, + device_id, + {radar_fields_to_get} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {q_parts} + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max, + s28_min + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max, + MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #light detailed + """ + Generate a TimeScaleDB query for light readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + light_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(light) AS light_max + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for temperature readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with temperature and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + temperature_avg, + CASE + WHEN (temperature_avg * 9/5 + 32) <= 50 OR (temperature_avg * 9/5 + 32) >= 90 THEN 2 + WHEN (temperature_avg * 9/5 + 32) <= 60 OR (temperature_avg * 9/5 + 32) >= 80 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature)+{temp_offset} AS temperature_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for humidity readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with humidity and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + col_expr = f"2.3592 * AVG(humidity) + 23.5546" #= 2.3592 * J2 + 33.5546 + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + humidity_avg, + CASE + WHEN humidity_avg <= 20 OR humidity_avg >= 60 THEN 2 + WHEN humidity_avg <= 30 OR humidity_avg >= 50 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {col_expr} AS humidity_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for smell readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with smell components + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + min_s0, + min_s1, + min_s2, + min_s3, + min_s4, + min_s5, + min_s6, + min_s7, + min_s8, + min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + + +def get_deployment_radar_only_detailed_all_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + absent_min, + stationary_max, + moving_max, + both_max, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(absent) AS absent_min, + MAX(stationary) AS stationary_max, + MAX(moving) AS moving_max, + MAX("both") AS both_max, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql +def get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest): + """ + Generate a TimeScaleDB query for radar readings based on device IDs with time snapped to 10-second intervals. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + radar_fields_of_interest (list): List of field names required across all devices + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + # Handle fields processing + select_fields = [] + for field in radar_fields_of_interest: + if field == "s28": + select_fields.append("(s2+s3+s4+s5+s6+s7+s8)/7 AS s28") + else: + select_fields.append(field) + + fields_str = ", ".join(select_fields) + + sql = f""" + SELECT + time_bucket('10 seconds', time) AS ten_seconds, + device_id, + {fields_str} + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + CASE device_id + {case_order} + END, + ten_seconds + """ + return sql + +def export_query_to_minio_chunked(connection_params, query, minio_client, bucket_name, blob_name=None, chunksize=10000): + """ + Export query results to MinIO as CSV in chunks to handle large datasets + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + minio_client: Initialized MinIO client + bucket_name (str): Name of the MinIO bucket + blob_name (str): Name for the blob in MinIO. If None, generates timestamped name + chunksize (int): Number of rows to process at a time + + Returns: + str: Name of the created blob + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate blob name if not provided + if blob_name is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + blob_name = f'query_results_{timestamp}.csv' + + # Create a buffer to store CSV data + csv_buffer = io.StringIO() + + # Stream the query results in chunks + first_chunk = True + for chunk_df in pd.read_sql_query(query, conn, chunksize=chunksize): + # Write header only for the first chunk + chunk_df.to_csv( + csv_buffer, + index=False, + header=first_chunk, + mode='a' + ) + first_chunk = False + + # Get the CSV data as bytes + csv_buffer.seek(0) + csv_bytes = csv_buffer.getvalue().encode('utf-8') + + # Upload to MinIO + minio_client.put_object( + bucket_name, + blob_name, + io.BytesIO(csv_bytes), + len(csv_bytes) + ) + + print(f"Data exported successfully to MinIO: {bucket_name}/{blob_name}") + return blob_name + + except Exception as e: + print(f"Error exporting data: {str(e)}") + print(f"Traceback: {traceback.format_exc()}") + raise + + finally: + if 'conn' in locals(): + conn.close() + if 'csv_buffer' in locals(): + csv_buffer.close() + +def export_query_to_csv_pandas(connection_params, query, output_path=None): + """ + Export query results to CSV using pandas with psycopg2 connection + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + output_path (str): Path for output CSV file. If None, generates timestamped filename + + Returns: + str: Path to the created CSV file + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate output path if not provided + if output_path is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + output_path = f'query_results_{timestamp}.csv' + + # Read query directly into DataFrame using the psycopg2 connection + df = pd.read_sql_query(query, conn) + + # Export to CSV with all headers + df.to_csv(output_path, index=False) + print(f"Data exported successfully to {output_path}") + return output_path + + except Exception as e: + print(f"Error exporting data: {str(e)}") + raise + + finally: + if 'conn' in locals(): + conn.close() + + +def CreateDailyCSV(csv_file, devices_list, selected_date, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset): + global Id2MACDict + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return "" + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return "" + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + if consolidated_by == "by_minute_rc": + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + elif consolidated_by == "by_deca_rd": + sql = get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + elif consolidated_by == "by_minute_rd": + sql = get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + + print(sql) + + connection_params = { + 'host': DB_HOST, + 'database': DB_NAME, + 'user': DB_USER, + 'password': DB_PASSWORD, + 'port': DB_PORT + } + + # Using pandas approach (recommended) + output_file = export_query_to_minio_chunked( + connection_params, + sql, + miniIO_blob_client, + "data-downloads", + csv_file, + chunksize=10000 + ) + return output_file + except Exception as e: + logging.error(str(traceback.format_exc())) + return "" + +def GetBlob(file_name, bucket_name="daily-maps"): + """ + Retrieve image from blob storage + + Args: + file_name (str): Name of the file to retrieve from blob storage + + Returns: + tuple: (image_bytes, content_type) + Returns None, None if image not found or error occurs + """ + logger.debug(f"GetBlob({file_name})") + try: + # Get the object from blob storage + data = miniIO_blob_client.get_object( + bucket_name, + file_name + ) + + # Read the data into bytes + data_bytes = data.read() + #logger.debug(f"len(data_bytes)={len(data_bytes)}") + + if bucket_name == "daily-maps": + return data_bytes, 'image/png' + else: + return data_bytes, 'application/zip' + + except Exception as e: + logger.error(f"Error: {traceback.format_exc()}") + return None, None + + +def MapFileToDate(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = map_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def CSVFileToDate(csv_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = csv_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def GetMACsListSimple(list_of_lists): + + result = [] + if len(list_of_lists) > 0: + result = [sublist[3] for sublist in list_of_lists] + + return(result) + +def datetime_handler(obj): + """Handle datetime serialization for JSON""" + if isinstance(obj, datetime.datetime): + if obj.tzinfo: + return obj.isoformat() + return obj.strftime('%Y-%m-%d %H:%M:%S.%f') + raise TypeError(f"Object of type {type(obj)} is not JSON serializable") + +def ReadCandles(file, sensor, period, time_from, time_to): + result = [] + if sensor == "voc0": + sqlr = "SELECT * from vocs_0"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc1": + sqlr = "SELECT * from vocs_1"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc2": + sqlr = "SELECT * from vocs_2"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc3": + sqlr = "SELECT * from vocs_3"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc4": + sqlr = "SELECT * from vocs_4"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc5": + sqlr = "SELECT * from vocs_5"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc6": + sqlr = "SELECT * from vocs_6"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc7": + sqlr = "SELECT * from vocs_7"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc8": + sqlr = "SELECT * from vocs_8"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc9": + sqlr = "SELECT * from vocs_9"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + else: + sqlr = "SELECT * from "+sensor+"s"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + logger.debug(f"sqlr = {sqlr}") + + with get_db_connection() as conn: + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + result = QuerrySql(file, sqlr) + return result + +def ReadSensor(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + result = [] + if sensor == "radar": + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + elif sensor[0] == "s": + sqlr = f"SELECT time, {sensor} AS smell FROM sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "temperature": + sqlr = f"SELECT time, {sensor} - 16 from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + sqlr = f"SELECT time, {sensor} from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadSensor3(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + import datetime + from datetime import timezone + + # Convert epoch to datetime and format as ISO 8601 strings with timezone + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + # If bucket_size is provided (i.e. not "no"), then use time bucketing. + use_bucket = bucket_size != "no" + if use_bucket: + # Map the shorthand bucket sizes to PostgreSQL interval strings. + mapping = { + "10s": "10 seconds", + "1m": "1 minute", + "5m": "5 minutes", + "10m": "10 minutes", + "15m": "15 minutes", + "30m": "30 minutes", + "1h": "1 hour" + } + bucket_interval = mapping.get(bucket_size, bucket_size) + + avgmax = "AVG" + # Build the SQL query based on sensor type. + if sensor == "radar": + # For radar sensors, a special aggregation is needed. + avgmax = "MAX" + if radar_part == "s28": + radar_expr = "(s2+s3+s4+s5+s6+s7+s8)/7" + else: + radar_expr = radar_part + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({radar_expr}) AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {radar_expr} AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor[0] == "s": + # For sensors whose name starts with "s" (for example, smell sensors) + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({sensor}) AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {sensor} AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "co2": + alias = sensor + sensor = "s4" + sqlr = f""" + WITH s4_values AS ( + SELECT s4 + FROM public.sensor_readings + WHERE device_id = 559 + AND s4 IS NOT NULL + ), + s4_percentile AS ( + SELECT percentile_cont(0.25) WITHIN GROUP (ORDER BY s4 DESC) AS s4_25_percentile + FROM s4_values + ) + SELECT s4_25_percentile + FROM s4_percentile; + """ + co2_max = 22536000#102400000 + co2_min = 2400000#16825674 #387585 + + real_co2_max = 2000 + real_co2_min = 430 + + + #logger.debug(f"sqlr = {sqlr}") + #with get_db_connection() as conn: + #with conn.cursor() as cur: + #cur.execute(sqlr) + #result = cur.fetchall() + #co2_max = result[0][0] + #co2_min = result[0][1] + #=E17+E20*(102400000-A24)/B18 + #col_expr = f"{real_co2_min}+({real_co2_max}-{real_co2_min})*(102400000-{sensor})/({co2_min}-{co2_max})" + col_expr = f"GREATEST({real_co2_min},{real_co2_min}+({real_co2_max}-{real_co2_min})*({co2_max}-percentile_cont(0.5) WITHIN GROUP (ORDER BY {sensor}))/({co2_max}-{co2_min}))" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + ({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "voc": + sensor = "s9" + alias = sensor + col_expr = f"{sensor} - 0" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "humidity": + alias = sensor + col_expr = f"2.3592 * {sensor} + 32.5546" #= 2.3592 * J2 + 33.5546 + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + else: + # For other sensors (including temperature, which requires a subtraction) + alias = sensor + col_expr = sensor + if sensor == "temperature": + col_expr = f"{sensor} - 16" + alias = "temperature" + elif sensor == "light": + avgmax = "MAX" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadRadarDetail(device_id, sensor, time_from_epoch, time_to_epoch, alt_key_state): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + #sensor_index = int(sensor_index) + + + result = [] + + #time_period_sec can be "10" (RAW) or "60" + if alt_key_state == "1": #"RAW = 10 sec" + radar_part = sensor + if sensor == "m08_max": + radar_part = "(m0+m1+m2+m3+m4+m5+m6+m7+m8)/9" + elif sensor == "s28_max" or sensor == "s28_min": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "m08_max": + radar_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/7) AS m08_max" + elif sensor == "s28_max": + radar_part = f"MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + elif sensor == "s28_min": + radar_part = f"MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + else: + radar_part = f"MAX({sensor}) AS {sensor}" + + sqlr = f""" + SELECT + minute, + {sensor} as {sensor} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + {radar_part} + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute + ) rr + + ORDER BY + minute + """ + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def check_and_parse(data_str): + # Remove whitespace to handle cases with spaces + cleaned = data_str.strip() + # Check if second character is '[' + is_list_of_lists = cleaned[1] == '[' + if cleaned[0] == '[': + # Parse the string regardless of type + parsed = json.loads(cleaned) + else: + #parsed = cleaned.split(",") + parsed = SmartSplit(cleaned) + return is_list_of_lists, parsed + +def clean_data_with_rolling_spline(line_part_t, window=5, threshold=2.0): + """ + Filter outliers using rolling median and replace with spline interpolation + Returns data in the same format as input: [(timestamp, value), ...] + """ + # Unzip the input tuples + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) # explicitly convert to float + + # Calculate rolling median and MAD using a safer approach + rolling_median = [] + rolling_mad = [] + + for i in range(len(y)): + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Skip if window is empty or contains invalid values + if len(window_values) == 0 or np.any(np.isnan(window_values)): + rolling_median.append(y[i]) + rolling_mad.append(0) + continue + + med = np.median(window_values) + mad = np.median(np.abs(window_values - med)) + + rolling_median.append(med) + rolling_mad.append(mad) + + rolling_median = np.array(rolling_median) + rolling_mad = np.array(rolling_mad) + + # Identify outliers (protect against division by zero) + outlier_mask = np.abs(y - rolling_median) > threshold * (rolling_mad + 1e-10) + good_data_mask = ~outlier_mask + + if np.sum(good_data_mask) < 4: + return line_part_t # return original data if we can't interpolate + + try: + # Create and apply spline + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 + ) + + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + except Exception as e: + print(f"Spline interpolation failed: {e}") + return line_part_t + + # Return in the same format as input + return list(zip(x, y_cleaned)) + +def DatesSpan(date_from: str, date_to: str) -> list: + """ + Generate a list of dates between date_from and date_to (inclusive). + Handles cases where date_from is later than date_to. + + Args: + date_from (str): Start date in 'YYYY-MM-DD' format + date_to (str): End date in 'YYYY-MM-DD' format + + Returns: + list: List of dates in 'YYYY-MM-DD' format + """ + # Convert string dates to datetime objects + start_date = datetime.datetime.strptime(date_from, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + start_date, end_date = end_date, start_date + + # Generate list of dates + dates_list = [] + current_date = start_date + + while current_date <= end_date: + dates_list.append(current_date.strftime('%Y-%m-%d')) + current_date += timedelta(days=1) + + # Reverse the list if original date_from was later than date_to + #if datetime.datetime.strptime(date_from, '%Y-%m-%d') > datetime.datetime.strptime(date_to, '%Y-%m-%d'): + # dates_list.reverse() + + return dates_list + +def zip_blobs(blob_paths, zip_blob_name, bucket_name, minio_client=None): + """ + Zip multiple blobs from MinIO storage into a single zip file without saving locally. + + Args: + blob_paths (list): List of blob paths to zip + zip_blob_name (str): Name/path for the output zip file in MinIO + bucket_name (str): MinIO bucket name + minio_client (Minio, optional): Existing MinIO client instance + + Returns: + bool: True if successful, False otherwise + """ + try: + # Create zip file in memory + zip_buffer = BytesIO() + + with zipfile.ZipFile(zip_buffer, 'w', zipfile.ZIP_DEFLATED) as zip_file: + # Process each blob + for blob_path in blob_paths: + # Get file name from path for zip entry + file_name = blob_path.split('/')[-1] + + # Get blob data into memory + data = minio_client.get_object(bucket_name, blob_path.lstrip('/')) + + # Add file to zip + zip_file.writestr(file_name, data.read()) + + # Close the object to free memory + data.close() + + # Seek to start of zip file + zip_buffer.seek(0) + + # Upload zip file to MinIO + minio_client.put_object( + bucket_name, + zip_blob_name.lstrip('/'), + zip_buffer, + length=zip_buffer.getbuffer().nbytes + ) + + return True + + except Exception as e: + print(f"Error creating zip file: {str(e)}") + return False + finally: + # Clean up + zip_buffer.close() + +def clean_data_with_spline(x, y, threshold=2.0): + """ + Filter outliers and replace with spline interpolation + + Parameters: + x : array-like, timestamps or x-coordinates + y : array-like, values to be filtered + threshold : float, number of median absolute deviations for outlier detection + + Returns: + array-like : cleaned data with outliers replaced by spline interpolation + """ + # Convert inputs to numpy arrays + x = np.array(x) + y = np.array(y) + + # Calculate median and median absolute deviation + median = np.median(y) + mad = stats.median_abs_deviation(y) + + # Identify outliers + outlier_mask = np.abs(y - median) > threshold * mad + good_data_mask = ~outlier_mask + + # If we have too few good points for interpolation, adjust threshold + min_points_needed = 4 # minimum points needed for cubic spline + if np.sum(good_data_mask) < min_points_needed: + return y # return original data if we can't interpolate + + # Create spline with non-outlier data + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 # cubic spline + ) + + # Replace outliers with interpolated values + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + + return y_cleaned + +def clean_data(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + cleaned_data = [] + + for i in range(len(y)): + # Get window around current point + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Calculate median and MAD for the window + window_median = np.median(window_values) + deviation = abs(y[i] - window_median) + + # Keep point if it's not too far from window median + if deviation <= threshold * window_median: + cleaned_data.append((x[i], y[i])) + #else: + #print(window_values) + return cleaned_data + +def clean_data_fast(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison - vectorized version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + # Calculate rolling median using numpy + half_window = window // 2 + medians = np.array([ + np.median(y[max(0, i-half_window):min(len(y), i+half_window+1)]) + for i in range(len(y)) + ]) + + # Calculate deviations for all points at once + deviations = np.abs(y - medians) + + # Create mask for good points + good_points = deviations <= threshold * medians + + # Return filtered data using boolean indexing + return list(zip(x[good_points], y[good_points])) + +def clean_data_pd(line_part_t, window=5, percentile=99): + """ + Remove obvious outliers based on window comparison - pandas version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + #line_part_t = line_part_t[2000:2100] + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + + # Create pandas Series and calculate rolling median + series = pd.Series(y) + medians = series.rolling(window=window, center=True, min_periods=1).median() + + # Calculate deviations + deviations = np.abs(series - medians) + + largest_deviations = deviations.nlargest(10) + #print(largest_deviations) + + # Create mask for good points + deviation_threshold = np.percentile(deviations, percentile) + good_points = deviations <= deviation_threshold + + # Convert back to numpy arrays for filtering + x = np.array(x) + y = np.array(y) + + # Return filtered data + return list(zip(x[good_points], y[good_points])) + +def CombineStripes(result_filename, stripes_files): + try: + # Open the first image to get the width and initialize the height + first_image = Image.open(stripes_files[0]) + width, height = first_image.size + + # Calculate the total height of the combined image + total_height = height * len(stripes_files) + + # Create a new blank image with the same width and the calculated height + result_image = Image.new('RGB', (width, total_height)) + + # Paste each image onto the result image vertically + y_offset = 0 + for file_name in stripes_files: + image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + y_offset += height + + # Save the result image + result_image.save(result_filename) + + # Return success flag + return True + + except Exception as e: + print("Error:", e) + return False + +def FindFirstLocalMinimum(counts, bins): + """ + Find the first local minimum in a histogram after the main peak and calculate its offset. + + Parameters: + hist: tuple of (counts, bin_edges) from np.histogram() + The histogram data to analyze + + Returns: + tuple: (TR, THR_OFFSET) + TR: float, the bin value (position) of the first local minimum after the main peak + THR_OFFSET: int, number of bins between the global maximum and the local minimum + """ + + # Find the main peak (global maximum) + main_peak_idx = np.argmax(counts) + + # Look for the first local minimum after the main peak + for i in range(main_peak_idx + 1, len(counts) - 1): + # Check if current point is less than or equal to both neighbors + if counts[i] <= counts[i-1] and counts[i] <= counts[i+1]: + # Calculate the bin center value for TR + TR = (bins[i] + bins[i+1]) / 2 + # Calculate offset from main peak in number of bins + THR_OFFSET = (bins[i] + bins[i+1]) / 2 - (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + return (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2, TR, THR_OFFSET + + # If no local minimum is found, return None for both values + return None, None + +def process_raw_data(data_tuples): + """ + Convert list of (timestamp, stationary, motion) tuples to separate arrays + + Parameters: + ----------- + data_tuples : list of tuples + Each tuple contains (datetime, stationary_value, motion_value) + + Returns: + -------- + timestamps : array of datetime + stationary : array of float + motion : array of float + """ + timestamps = np.array([t[0] for t in data_tuples]) + stationary = np.array([t[1] for t in data_tuples]) + motion = np.array([t[2] for t in data_tuples]) + + return timestamps, stationary, motion + +def rolling_std_fast(arr, window_size): + """ + Fast calculation of rolling standard deviation using NumPy's stride tricks. + + Parameters: + ----------- + arr : numpy array + Input array + window_size : int + Size of rolling window + + Returns: + -------- + numpy array + Rolling standard deviation + """ + # Compute rolling sum of squares + r = np.array(arr, dtype=float) + r2 = np.array(arr, dtype=float) ** 2 + + # Calculate cumulative sums + cum = np.cumsum(np.insert(r, 0, 0)) + cum2 = np.cumsum(np.insert(r2, 0, 0)) + + # Get rolling windows + x = (cum[window_size:] - cum[:-window_size]) + x2 = (cum2[window_size:] - cum2[:-window_size]) + + # Calculate standard deviation + n = window_size + return np.sqrt((x2/n) - (x/n) ** 2) + +def detect_presence(timestamps, stationary_signal, motion_signal, window_size=100, + motion_threshold=5, gmm_components=2): + """ + Detect presence using both stationary and motion signals with adaptive thresholding. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal (0-100) + motion_signal : array-like + Time series of motion signal (0-100) + window_size : int + Size of rolling window for statistics (used only for temporal smoothing) + motion_threshold : float + Threshold for significant motion + gmm_components : int + Number of components for Gaussian Mixture Model + + Returns: + -------- + presence_mask : numpy array + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + """ + + # Convert inputs to numpy arrays + stationary_signal = np.array(stationary_signal) + motion_signal = np.array(motion_signal) + + # 1. Fit Gaussian Mixture Model to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + # Get the component with lowest mean as baseline + baseline = min(gmm.means_)[0] + + # 2. Calculate adaptive threshold using GMM components + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std # 3 sigma rule + + # 3. Combine motion and stationary detection + presence_mask = np.zeros(len(stationary_signal), dtype=bool) + + # Vectorized operations instead of loop + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # 4. Apply temporal smoothing to reduce false transitions + smooth_window = min(window_size // 4, 10) # Smaller window for smoothing + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, baseline, threshold + +def visualize_detection(timestamps, stationary_signal, motion_signal, presence_mask, + baseline, threshold, output_file='presence_detection.png'): + """ + Visualize the detection results and save to file. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal + motion_signal : array-like + Time series of motion signal + presence_mask : array-like + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + output_file : str + Path to save the output PNG file + """ + plt.figure(figsize=(15, 10)) + + # Configure time formatting + date_formatter = mdates.DateFormatter('%H:%M:%S') + + # Plot signals + plt.subplot(3, 1, 1) + plt.plot(timestamps, stationary_signal, label='Stationary Signal') + plt.axhline(y=baseline, color='g', linestyle='--', label='Baseline') + plt.axhline(y=threshold, color='r', linestyle='--', label='Threshold') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Stationary Signal with Baseline and Threshold') + plt.grid(True) + + plt.subplot(3, 1, 2) + plt.plot(timestamps, motion_signal, label='Motion Signal') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Motion Signal') + plt.grid(True) + + plt.subplot(3, 1, 3) + plt.plot(timestamps, presence_mask, label='Presence Detection') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.ylim(-0.1, 1.1) + plt.legend() + plt.title('Presence Detection Result') + plt.grid(True) + + plt.tight_layout() + + # Save to file and close figure to free memory + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def FindZeroIntersection(counts, bins, save_plot, device_id): + """ + Find the zero intersection point by fitting a parabola to the descending slope + between 50% and 10% of the maximum peak height. Also returns the peak position. + + Parameters: + counts: array-like + The histogram counts + bins: array-like + The histogram bin edges + save_plot: str or None, optional + If provided, saves the visualization to the specified file path + + Returns: + tuple: (zero_intersections, peak_position) + zero_intersections: list of floats, x-coordinates where parabola intersects y=0 + peak_position: float, x-coordinate of the histogram maximum peak + """ + # Find the main peak + main_peak_idx = np.argmax(counts) + peak_height = counts[main_peak_idx] + peak_position = (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + + # Calculate 75% and 25% of peak height + height_50 = 0.50 * peak_height + height_10 = 0.10 * peak_height + + # Find indices where counts cross these thresholds after the peak + idx_50 = main_peak_idx + idx_10 = main_peak_idx + + for i in range(main_peak_idx, len(counts)): + if counts[i] <= height_50 and idx_50 == main_peak_idx: + idx_50 = i + if counts[i] <= height_10: + idx_10 = i + break + + # If we couldn't find valid points, return None + if idx_50 == main_peak_idx or idx_10 == main_peak_idx: + return None, peak_position + + # Get x and y coordinates for fitting + # Use bin centers for x coordinates + x_points = np.array([(bins[i] + bins[i+1])/2 for i in range(idx_50, idx_10+1)]) + y_points = counts[idx_50:idx_10+1] + + # Define quadratic function for fitting + def quadratic(x, a, b, c): + return a*x**2 + b*x + c + + try: + popt, pcov = curve_fit(quadratic, x_points, y_points) + a, b, c = popt + + # Find zeros using quadratic formula + if a != 0: + discriminant = b**2 - 4*a*c + if discriminant >= 0: + x1 = (-b + np.sqrt(discriminant)) / (2*a) + x2 = (-b - np.sqrt(discriminant)) / (2*a) + zero_intersections = sorted([x1, x2]) + # Filter zeros to only include those after the peak + zero_intersections = [x for x in zero_intersections if x > peak_position] + else: + zero_intersections = [] + else: + # If a ≈ 0, fallback to linear solution + if b != 0: + zero_intersections = [-c/b] + else: + zero_intersections = [] + + if save_plot: + plt.figure(figsize=(10, 6)) + + # Plot histogram + bin_centers = [(bins[i] + bins[i+1])/2 for i in range(len(counts))] + plt.bar(bin_centers, counts, width=bins[1]-bins[0], alpha=0.6, + color='skyblue', label='Histogram') + + # Plot peak height lines + plt.axhline(y=height_50, color='g', linestyle='--', alpha=0.5, + label='50% Peak Height') + plt.axhline(y=height_10, color='r', linestyle='--', alpha=0.5, + label='10% Peak Height') + + # Plot fitted parabola + x_fit = np.linspace(min(x_points), max(x_points), 100) + y_fit = quadratic(x_fit, a, b, c) + plt.plot(x_fit, y_fit, 'r-', label='Fitted Parabola') + + # Plot points used for fitting + plt.plot(x_points, y_points, 'ro', alpha=0.5, label='Fitting Points') + + # Plot zero intersections + for x_zero in zero_intersections: + plt.plot(x_zero, 0, 'ko', label='Zero Intersection') + + # Plot peak position + plt.axvline(x=peak_position, color='purple', linestyle='--', alpha=0.5, + label='Peak Position') + + # Add labels and legend + plt.xlabel('Bin Values') + plt.ylabel('Counts') + plt.title(f'Histogram Analysis with Parabolic Fit {device_id}') + plt.legend() + + # Show zero line + plt.axhline(y=0, color='k', linestyle='-', alpha=0.2) + + # Add text with intersection and peak values + text = f'Peak Position: {peak_position:.2f}\n' + if zero_intersections: + text += f'Zero Intersection(s): {", ".join([f"{x:.2f}" for x in zero_intersections])}' + plt.text(0.02, 0.98, text, transform=plt.gca().transAxes, + verticalalignment='top', + bbox=dict(boxstyle='round', facecolor='white', alpha=0.8)) + + # Save plot to file + plt.savefig(save_plot, dpi=300, bbox_inches='tight') + plt.close() + + return zero_intersections, peak_position + except RuntimeError: + print("Warning: Failed to fit parabola") + return None, peak_position + + +def GeneratePresenceHistory(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + maps_dates.reverse() + days = len(maps_dates) + stretch_by = int(1000 / days) + if stretch_by > 50: + stretch_by = 50 + + #lets use 1000 pixels + #arr_stretched = np.zeros((int(days*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + + # Paste each image onto the result image vertically + y_offset = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + + file_exists, time_modified_utc = check_file_exists(filename_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + file_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if file_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + + image_bytes, content_type = GetBlob(filename_day) + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + + #image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + image.close() + image_stream.close() + + y_offset += stretch_by + + # Save directly to MinIO instead of local file + success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + result_image.close() + return success + +def AddText(room_image_cv2, x, y, room_name, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + #print(f"Attempting to load font from: {font_path}") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error(f"Poppins font not found in {font_path}. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + +def AddTextList(room_image_cv2, strings_list, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + for x, y, room_name in strings_list: + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + + +def AddRoomData(room_image, room_name, data): + + # Example usage: + radius = 10 + color_t = data["color"] # BGR format for red + color = (color_t[2], color_t[1], color_t[0]) + x_offset = 12 + + room_image = AddText(room_image, 13, 20, room_name, 50) + print(data) + for present in data["presence"]: + device_id, minute, duration = present + #duration = 10 + top_left = (x_offset + minute, 140) #bottom_right = (300, 200) + bottom_right = (x_offset + minute + duration, 260) + draw_rounded_rectangle(room_image, top_left, bottom_right, radius, color) + return room_image + +def AddFooterData(image): + '12, 370, 736, 1092, 1452' + step_size = 1440 / 4 + string_width = 60 + offset = 12 + yoffset = 30 + step = 0 + font_size = 40 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 AM", font_size) + step = 1 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 AM", font_size) + step = 2 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 PM", font_size) + step = 3 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 PM", font_size) + return image + +def draw_rounded_rectangle(image, top_left, bottom_right, radius, color): + """ + Draw a filled rectangle with rounded corners, using simple rectangle for small dimensions + :param image: Image to draw on + :param top_left: Top-left corner coordinates (x, y) + :param bottom_right: Bottom-right corner coordinates (x, y) + :param radius: Desired corner radius (will be adjusted if needed) + :param color: Rectangle color in BGR format + """ + x1, y1 = top_left + x2, y2 = bottom_right + + # Calculate width + width = x2 - x1 + + + # Adjust radius if width or height is too small + # Maximum radius should be half of the smaller dimension + max_radius = abs(width) // 2 + radius = min(radius, max_radius) + + # If width is too small, fallback to regular rectangle + if width <= 4 or radius <= 1: + cv2.rectangle(image, top_left, bottom_right, color, -1) + return + + # Adjust radius if needed + radius = min(radius, width // 2) + + # Create points for the main rectangle + pts = np.array([ + [x1 + radius, y1], + [x2 - radius, y1], + [x2, y1 + radius], + [x2, y2 - radius], + [x2 - radius, y2], + [x1 + radius, y2], + [x1, y2 - radius], + [x1, y1 + radius] + ], np.int32) + + # Fill the main shape + cv2.fillPoly(image, [pts], color) + + # Fill the corners + cv2.ellipse(image, (x1 + radius, y1 + radius), (radius, radius), 180, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y1 + radius), (radius, radius), 270, 0, 90, color, -1) + cv2.ellipse(image, (x1 + radius, y2 - radius), (radius, radius), 90, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y2 - radius), (radius, radius), 0, 0, 90, color, -1) + +def filter_device(locations_list, device_id): + result = [] + for entry in locations_list: + if entry[0] == device_id: + result.append(entry) + + return result + +def GenerateLocationsMap(date_st, devices_list, devices_map, locations_list, time_zone_s): + + devices_list_t = [("date",date_st)] + + + for mac in devices_list: + well_id, device_id, room = devices_map[mac] + #room = devices[well_id][0] + if room in Loc2Color: + color = Loc2Color[room][0] + else: + color = Loc2Color[room.split()[0]][0] + presence_data = filter_device(locations_list, device_id) + room_details = (room, {"color": color, "presence": presence_data}) + devices_list_t.append(room_details) + + well_id = 0 + device_id = 0 + room = "Outside/?" + color = (0, 0, 0) + + #lets's not draw future unknown! + presence_data = filter_device(locations_list, device_id) + current_utc = datetime.datetime.now(pytz.UTC) + current_date_local = current_utc.astimezone(pytz.timezone(time_zone_s)) + current_minute_of_day = current_date_local.hour * 60 + current_date_local.minute + + if date_st == current_date_local.strftime('%Y-%m-%d'): + filtered_presence_data = [] + for entry in presence_data: + if entry[1] < current_minute_of_day : + if entry[1] + entry[2] < current_minute_of_day: + filtered_presence_data.append(entry) + else: + entry[2] = (current_minute_of_day - entry[2]) + if entry[2] > 0: + filtered_presence_data.append(entry) + #print(presence_data) + else: + filtered_presence_data = presence_data + + room_details = (room, {"color": color, "presence": filtered_presence_data}) + devices_list_t.append(room_details) + + return devices_list_t + +def CreateDailyLocationChart(filename_chart_image_day, locations): + result = False + header_image_file = "header.png" + room_image_file = "room.png" + footer_image_file = "footer.png" + + #ToDo: change it so it reads files from MinIo + header_image_file = os.path.join(filesDir, header_image_file) + header_image_file = header_image_file.replace("\\","/") + header_image = cv2.imread(header_image_file) + #header_height, header_width = header_image.shape[:2] + + room_image_file = os.path.join(filesDir, room_image_file) + room_image_file = room_image_file.replace("\\","/") + room_image = cv2.imread(room_image_file) + #room_height, room_width = room_image.shape[:2] + + footer_image_file = os.path.join(filesDir, footer_image_file) + footer_image_file = footer_image_file.replace("\\","/") + footer_image = cv2.imread(footer_image_file) + + all_images = [header_image] + for item_c in locations: + item = item_c[0] + if item == "date": + date = item_c[1] + else: + room_image = cv2.imread(room_image_file) + data = item_c[1] + room_image = AddRoomData(room_image, item, data) + all_images.append(room_image) + + footer_image = AddFooterData(footer_image) + all_images.append(footer_image) + final_image = np.vstack(all_images) + #this needs to write straight to MinIo ! + SaveImageInBlob(filename_chart_image_day, final_image) + result = True + #cv2.imwrite(filename_chart_image_day, final_image) + #print(rooms_count) + return result + + +def GetOptimumFontSize(target_width, text="00", min_size=1, max_size=100, tolerance=1): + """ + Find optimal font size to fit text within target width using binary search. + + Args: + target_width (int): Desired width in pixels + text (str): Text to measure (default "00") + min_size (int): Minimum font size to try + max_size (int): Maximum font size to try + tolerance (int): Acceptable difference from target width + + Returns: + int: Optimal font size + """ + while min_size <= max_size: + current_size = (min_size + max_size) // 2 + width, _ = GetStringSize(text, current_size) + + if abs(width - target_width) <= tolerance: + return current_size + elif width > target_width: + max_size = current_size - 1 + else: + min_size = current_size + 1 + + # Return the largest size that fits within target width + width, _ = GetStringSize(text, min_size) + return min_size if width <= target_width else min_size - 1 + +def GetStringSize(some_string, font_size): + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + bbox = font.getbbox(some_string) + return bbox[2] - bbox[0], bbox[3] - bbox[1] + +def GeneratePresenceHistoryChart(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + #maps_dates.reverse() + days = len(maps_dates) + #stretch_by = int(1000 / days) + #if stretch_by > 50: + #stretch_by = 50 + stretch_by = 30 + + #background_image_file = os.path.join(filesDir, "multi_day_template.png") + background_image_file = os.path.join(filesDir, "multi_day_template2.png") + background_image_file = background_image_file.replace("\\","/") + background_image = cv2.imread(background_image_file) + + rgb_image = background_image #cv2.cvtColor(background_image, cv2.COLOR_BGR2RGB) + result_image = Image.fromarray(rgb_image) # Convert to PIL Image + #result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + # Paste each image onto the result image vertically + y_offset = 0 + locations_list = [] + font_size = 50 + string_width, string_height = GetStringSize("00", font_size) + + + success = False + if len(maps_dates) == 1: + + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + force_recreate = recreate_in + #it is faster to resize existing daily location chart (length is always 1440), than having to re-create it each time... + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + filename_chart_data_day = filename_day+".bin" + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_chart_image_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if not force_recreate: + file_exists1, time_modified_utc1 = check_file_exists(filename_chart_data_day) + if file_exists1: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list_a, device_ids = GetProximityList(deployment_id, timee) + CreateDailyLocationMap(filename_day, devices_list_a, ddate, filter_minutes, time_zone_s, stretch_by) + locations_list_s = ReadObjectMinIO("daily-maps", filename_chart_data_day) + locations_list = json.loads(locations_list_s) + + devices_map = {} + devices_list = [] + for device_entry in devices_list_a: + #if T: + if device_entry[3] == None or device_entry[3].strip() == "": + devices_map[device_entry[4]] = [device_entry[0], device_entry[1], device_entry[2]] + else: + devices_map[device_entry[4]] = [device_entry[0], device_entry[1], device_entry[2] + " " + device_entry[3]] + devices_list.append(device_entry[4]) + + locations = GenerateLocationsMap(ddate, devices_list, devices_map, locations_list, time_zone_s) + success = CreateDailyLocationChart(filename, locations) + else: + + day_counter = 0 + day_step_width = int(1780 / days) + x_offset = 563 + y_offset = 1615 + h_labels_bottom = 1720 + day_width = int(0.9 * day_step_width) + day_height = 1440 + font_size = GetOptimumFontSize(day_width, "00", 10, 50, 0) + string_width, string_height = GetStringSize("00", font_size) + #logger.debug(f"font_size={font_size} string_width={string_width}") + + y_offset = y_offset - day_height + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day) + file_existsS, time_modifiedS_utc = check_file_exists(filename_day[:-4]+"S.png") + if file_exists and file_existsS: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + #here we need to rotate and resize to: + + image_bytes, content_type = GetBlob(filename_day) + image_bytes_s, content_type_s = GetBlob(filename_day[:-4]+"S.png") + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, y_offset)) + + image_stream = io.BytesIO(image_bytes_s) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, 1807+y_offset)) + + + image.close() + image_stream.close() + + day_counter += 1 + + pil_im = result_image + #result_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + result_image_cv2 = np.array(pil_im)#cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + strings_list = [] + day_counter = 0 + for ddate in maps_dates: + if string_width <= day_width: + date_str = ddate[8:10] + x_origin = x_offset + int(day_step_width * (day_counter + 0.5)) - int(string_width / 2) + strings_list.append((x_origin, h_labels_bottom, date_str)) + day_counter += 1 + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + + #Y 124 to 1636 + labels_bottom = 1636 - 1.5 * string_height + x_offset = 340 + step = -4 * 60 #4 hours + font_size = 50 + strings_list = [] + count = 0 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + count = 1 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 AM")) + count = 2 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 AM")) + count = 3 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 PM")) + count = 4 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 PM")) + count = 5 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 PM")) + count = 6 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + numpy_image = np.array(result_image_cv2) + + success = SaveImageInBlob(filename, numpy_image) + #SaveImageInBlob(filename, result_image) + # Save directly to MinIO instead of local file + #if success: + # success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + if success: + return filename + else: + return "" + +def GeneratePresenceHistoryFiles(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + day_counter = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, 10) + + day_counter += 1 + + return filename + +def CalcStdevs(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def CalcLife(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def FindCalibrationDate(device_ids, ddate): + PCD = 50 #% (Peak Contained Data %) + PHB = 50 #% (Peak Height from Base %) + MPW = 10 #? (Max Peak Width) + MPSD =10 #? (Minimum Presence signal Standard Deviation) + #Find first day with, for all devices: + #- enough radar data points collected + #-Single histogram peak containing more than PCD% of data and peak width (at PHB% height) is < MPW + #Stdev of Data larger > MPSD + return ddate + +def FindThreshold(data, percent_list): + """ + Find the threshold value above which lies the specified percentage of points. + + Args: + data: numpy array of values + percent: percentage of points that should be above the threshold (0-100) + + Returns: + threshold value + """ + percent_from, percent_to = percent_list + # Sort data in descending order + sorted_data = np.sort(data)[::-1] + + # Calculate the index corresponding to the desired percentage + index_from = int((percent_from / 100) * len(data)) + index_to = int((percent_to / 100) * len(data)) + + # Return the threshold value + return sorted_data[index_from], sorted_data[index_to] + +def ShowThresholdGraph(data, filename, threshold_low, threshold_high, title, AveragePercentSpendsThere, location): + """ + Create and save a threshold analysis graph with maximum curvature point. + """ + dpi=600 + # Get min and max values + min_val = np.min(data) + max_val = np.max(data) + + # Create 1000 threshold levels from max to min + thresholds = np.linspace(max_val, min_val, 1000) + threshold_percentages = np.linspace(0, 100, 1000) + + # Calculate percentage of points above each threshold + points_above = [] + total_points = len(data) + + for thresh in thresholds: + above_count = np.sum(data > thresh) + percentage = (above_count / total_points) * 100 + points_above.append(percentage) + + points_above = np.array(points_above) + + # Calculate derivatives and smooth them + first_derivative = np.gradient(points_above) + second_derivative = np.gradient(first_derivative) + + #first_derivative = savgol_filter(np.gradient(points_above), window_length=51, polyorder=3) + #second_derivative = savgol_filter(np.gradient(first_derivative), window_length=51, polyorder=3) + + + # Find the point of maximum absolute second derivative + # Exclude edges (first and last 5% of points) to avoid edge effects + edge_margin = len(second_derivative) // 20 # 5% of points + valid_range = slice(edge_margin, -edge_margin) + max_curve_idx = edge_margin + np.argmax(np.abs(second_derivative[valid_range])) + + max_curve_x = threshold_percentages[max_curve_idx] + max_curve_y = points_above[max_curve_idx] + max_curve_second_deriv = second_derivative[max_curve_idx] + + # Calculate the actual threshold value for this point + threshold2 = max_val - (max_curve_x/100) * (max_val - min_val) + + # Create subplot figure + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(12, 10), height_ratios=[3, 2]) + + # Plot 1: Original curve with thresholds + ax1.plot(threshold_percentages, points_above, 'b-', linewidth=2, label='Distribution') + ax1.grid(True, linestyle='--', alpha=0.7) + + # Add original threshold line if provided + if threshold_low is not None: + threshold_percent = ((max_val - threshold_low) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_low) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='r', linestyle='--', label=f'Minimum % spent in {location}: {AveragePercentSpendsThere[0]:.3f}') + ax1.axhline(y=percent_above, color='r', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_low:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + if threshold_high is not None: + threshold_percent = ((max_val - threshold_high) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_high) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='b', linestyle='--', label=f'Maximum % spent in {location}: {AveragePercentSpendsThere[1]:.3f}') + ax1.axhline(y=percent_above, color='b', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_high:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + # Add maximum curvature point threshold + ax1.axvline(x=max_curve_x, color='g', linestyle='--', label=f'Threshold 2: {threshold2:.3f}') + ax1.axhline(y=max_curve_y, color='g', linestyle='--') + ax1.plot(max_curve_x, max_curve_y, 'go', markersize=10) + + ax1.annotate(f'Threshold 2: {threshold2:.3f}\nPoints above: {max_curve_y:.1f}%', + xy=(max_curve_x, max_curve_y), + xytext=(10, -20), textcoords='offset points', + bbox=dict(boxstyle='round,pad=0.5', fc='lightgreen', alpha=0.5), + arrowprops=dict(arrowstyle='->')) + + ax1.set_xlabel('Threshold Level (%)\n0% = Maximum, 100% = Minimum') + ax1.set_ylabel('Points Above Threshold (%)') + ax1.set_title(title) + ax1.set_xlim(0, 100) + ax1.set_ylim(0, 100) + ax1.legend() + + # Plot 2: Rate of change + ax2.plot(threshold_percentages, first_derivative, 'g-', label='First derivative', alpha=0.7) + ax2.plot(threshold_percentages, second_derivative, 'r-', label='Second derivative', alpha=0.7) + ax2.grid(True, linestyle='--', alpha=0.7) + + # Mark maximum curvature point on derivative plot + ax2.axvline(x=max_curve_x, color='g', linestyle='--') + # Plot point exactly on the second derivative curve + ax2.plot(max_curve_x, max_curve_second_deriv, 'go', markersize=10, + label=f'Max curvature at {max_curve_x:.1f}%') + + ax2.set_xlabel('Threshold Level (%)') + ax2.set_ylabel('Rate of Change') + ax2.set_title('Rate of Change Analysis') + ax2.legend() + + plt.tight_layout() + plt.savefig(filename, dpi=dpi, bbox_inches='tight') + plt.close() + + return threshold2, max_curve_x, max_curve_y + +def add_boundary_points(line_part_t, time_zone): + """ + Add boundary points (00:00:00 and 23:59:59) to a time series list. + + Args: + line_part_t: List of tuples (timestamp, value) + time_zone: String representing the timezone (e.g., "America/Los_Angeles") + + Returns: + List of tuples with added boundary points + """ + if not line_part_t: + return line_part_t + + tz = pytz.timezone(time_zone) + + # Get the date from the first point + first_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + date = first_dt.date() + + last_dt = datetime.datetime.fromtimestamp(line_part_t[-1][0], tz) + last_date = last_dt.date() + + + # Create datetime objects for start and end of the day + start_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.min.time())) + end_dt = tz.localize(datetime.datetime.combine(last_date, datetime.datetime.max.time())) + + # Convert to timestamps + start_ts = start_dt.timestamp() + end_ts = end_dt.timestamp() + + result = list(line_part_t) + + # Handle start point (00:00:00) + first_point_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + time_diff = first_point_dt - start_dt + + start_value = line_part_t[0][1] + + # Add start point at the beginning + #result.insert(0, (start_ts, start_value)) + + # Handle end point (23:59:59) + last_point_dt = datetime.datetime.fromtimestamp(line_part_t[-1][0], tz) + end_value = line_part_t[-1][1] + # Add end point + result.append((end_ts, end_value)) + + return result + +def calculate_life_and_average(my_data1, stdev_range=5): + # Convert data to numpy array for faster operations + data_array = np.array(my_data1) + + # Calculate half range + stdev_range_h = stdev_range // 2 + + # Pre-calculate indices for the sliding window + indices = np.arange(len(data_array) - 2 * stdev_range_h)[:, None] + np.arange(2 * stdev_range_h + 1) + + # Get sliding windows of data + windows = data_array[indices] + + # Calculate average (using column 3) + average = np.mean(windows[:, :, 3], axis=1) + + # Calculate life (using columns 2, 3, and 4) + deltas = windows[:, :, 3] - windows[:, :, 2] + windows[:, :, 4] + life = np.mean(deltas, axis=1) + + return life.tolist(), average.tolist() + +def TryJulia(prompt): + + if len(prompt) > 0: + + if prompt[0] == "#": + return prompt.upper() + + if prompt not in utterances: + return "" + else: + intent = utterances[prompt] + action = intents[intent] + + return action[0] + else: + return "" + +def AskGPT(in_prompt, language_from, language_to): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + if language_to.lower() not in language_from.lower(): + prompt = in_prompt + " Answer in " + language_to + + + print(prompt) + + #lets see if question is looking for OSM query + pattern = "what is only the node line for query for * on openstreetmap api? do not answer with url to nominatim, but with query!" + + + if match_with_wildcard(prompt, pattern): + differing_part = extract_differing_part(prompt, pattern) + + if differing_part != "": + + print(differing_part) + + if differing_part in searches_dict: + response = searches_dict[differing_part] + print(response) + return response, language_to + else: + #check if one of synonims: + if differing_part in searches_dict["synonims"]: + differing_part = searches_dict["synonims"][differing_part] + if differing_part != "": + if differing_part in searches_dict[differing_part]: + response = searches_dict[differing_part] + print(response) + return response, language_to + + hash_string = hashlib.sha256(str(prompt).encode('utf-8')).hexdigest() + #filename=os.path.join(cache_path, "chgpt_query_" + hash_string+".pkl") + + julia_present = False + if prompt.startswith("julia"): + prompt = prompt[len("julia") + 1:] + julia_present = True + + completion = "" + if julia_present == False: + completion = TryJulia(prompt) + #if completion == "": + # if os.path.exists(filename): + # #completion = pickle.load(open( filename, "rb" )) + # completion = (completion.choices[0].message.content.strip(), language_to)[0] + else: + completion = TryJulia(prompt) + + + if completion == "": + + st = time.time() + #import wandb + + #run = wandb.init(project='GPT-4 in Python') + #prediction_table = wandb.Table(columns=["prompt", "prompt tokens", "completion", "completion tokens", "model", "total tokens"]) + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + + #with open(filename, 'wb') as handle: + #pickle.dump(completion, handle, protocol=pickle.HIGHEST_PROTOCOL) + + response = (completion.choices[0].message.content.strip(), language_to) + else: + response = (completion, language_to) + + else: + response = ("question is too short", language_to) + + + print(response) + return response + +def AskGPTPure(in_prompt): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + print(prompt) + + st = time.time() + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + response = completion.choices[0].message.content.strip() + + + else: + response = "question is too short" + + + print(response) + return response + +def get_last_n_days(n=14, timezone_str='America/Los_Angeles'): + # Get current UTC time + utc_now = datetime.datetime.now(pytz.UTC) + + # Convert to the specified timezone + local_now = utc_now.astimezone(pytz.timezone(timezone_str)) + + # Get the current date in the specified timezone + current_date = local_now.date() + + # Determine the last whole day + if local_now.hour > 0 or local_now.minute > 0 or local_now.second > 0: + # Yesterday in the specified timezone + last_whole_day = current_date - timedelta(days=1) + else: + # If it's exactly midnight, the last whole day is two days ago + last_whole_day = current_date - timedelta(days=2) + + # Generate list of n days, ending with the last whole day + date_list = [] + for i in range(n-1, -1, -1): + day = last_whole_day - timedelta(days=i) + date_list.append(day.strftime('%Y-%m-%d')) + + return date_list + + +def numpy_to_json(arr, devices_list): + """ + Convert numpy array to JSON-serializable format + + Args: + arr (numpy.ndarray): 2D numpy array to serialize + + Returns: + str: JSON string containing array data and metadata + """ + if not isinstance(arr, np.ndarray): + raise TypeError("Input must be a numpy array") + + array_dict = { + 'dtype': str(arr.dtype), + 'shape': arr.shape, + 'devices_list': devices_list, + 'data': arr.tolist() # Convert to nested Python lists + } + + return json.dumps(array_dict) + +def format_time_difference(minutes): + # Calculate days, hours, minutes + days = int(minutes // (24 * 60)) + remaining_minutes = minutes % (24 * 60) + hours = int(remaining_minutes // 60) + mins = int(remaining_minutes % 60) + + parts = [] + + # Add days if any + if days > 0: + parts.append(f"{days} day{'s' if days != 1 else ''}") + + # Add hours if any + if hours > 0: + parts.append(f"{hours} hour{'s' if hours != 1 else ''}") + + # Add minutes if any + if mins > 0 or (days == 0 and hours == 0): + parts.append(f"{mins} minute{'s' if mins != 1 else ''}") + + # Combine the parts into a sentence + if len(parts) == 1: + return parts[0] + elif len(parts) == 2: + return f"{parts[0]} and {parts[1]}" + else: + return f"{parts[0]}, {parts[1]}, and {parts[2]}" + +def RunCommand(commmand, args_dictionary, deployment_id): + + to_return = "" + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + local_tz = pytz.timezone(time_zone_s) + + filter_minutes = 5 + dates = get_last_n_days(28, time_zone_s) + ddate = dates[0] #2025-02-02 req.params.get("date") + to_date = dates[-1] + date_s = datetime.datetime.now(pytz.UTC).astimezone(local_tz).date().strftime("%Y-%m-%d") + + if commmand == "#STATUS#": + force_recreate_orig = False #True + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + filename = GeneratePresenceHistoryFiles(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + day_counter = 0 + minutes_spent_there_list = [] + minutes_locations_list = [] + filename_4w = f"/{deployment_id}/{deployment_id}_{maps_dates[0]}_{maps_dates[-1]}_{filter_minutes}_{stretch_by}_4w_locations.png.bin" + for ddate in maps_dates: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + Id2Location = {} + for device in devices_list: + Id2Location[device[1]] = device[2] + Id2Location[0] = "Outside/?" + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png.bin" + locations_list_s = ReadObjectMinIO("daily-maps", filename_day) + locations_list = ast.literal_eval(locations_list_s) + minutes_locations_list.append((ddate, locations_list)) + #print(locations_list_s) + minutes_spent_there = {} + + + for loc in Id2Location: + minutes_spent_there[Id2Location[loc]] = 0 + minutes_spent_there[Id2Location[0]] = 0 + + for loc in locations_list: + minutes_spent_there[Id2Location[loc[0]]] += loc[2] + + for loc in minutes_spent_there: + minutes_spent_there[loc] = int(1000 * minutes_spent_there[loc] / 1440) / 10 + minutes_spent_there_list.append((ddate, minutes_spent_there)) + data_part = str(minutes_spent_there_list) + minutes_locations_list_str = str(minutes_locations_list) + obj_to_save = {"Location_indexes": str(Id2Location), "Locations": minutes_locations_list_str} + print(obj_to_save) + SaveObjectInBlob(filename_4w, obj_to_save) + print(data_part) + + prompt = "Attached is 4 weeks of data representing % of time where person living alone is spending each day" + prompt = prompt + " Assess his last week compared to previous 3 weeks. Comment only on significant changes." + prompt = prompt + " Ignore days where data is all (or mostly) 0!" + prompt = prompt + " Consider that office and living room are equivalent for this individual. Entertainment is consumed on computer (office) and in living room TV." + prompt = prompt + " But he is also napping in living room. Comment on his sleeping pattern as well" + prompt = prompt + " Can you summarize all in 1 sentence?" + prompt = prompt + " " + data_part + result = AskGPTPure(prompt) + + to_return = result + #to_return = "Your father appears to be fine. He was walking around the house 10 minutes ago and is currently in the living room. And I can smell coffee" + + elif commmand == "#STATUS_F#": + to_return = "Your mother is doing well. She slept 8hr and 23min last night. She used the restroom twice last night. She is now in the kitchen. I can smell coffee." + elif commmand == "#HELP#": + to_return = "There is number of things you can ask me about. For example: 'how is my dad doing?' Or 'How is his environment' or any other question you like" + elif commmand == "#SLEEP#": + to_return = "Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#SLEEP_F#": + to_return = "Your mom slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#ENVIRONMENT#": + to_return = "The temperature in the house is 23 degrees Celsius, CO2 level is 662 ppm, and I can smell coffee brewing. Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#WEEK#": + to_return = "Showing his weekly activity" + elif commmand == "#WEEK_F#": + to_return = "Showing her weekly activity" + elif commmand == "#ACTIVITY#": + to_return = "Your dad has been less active this week than usual. He spent more time sitting in the living room and he got up later than usual by 38min. He also did not go outside as frequently and had less visitors. He only showered once this week." + elif commmand == "#ACTIVITY_F#": + to_return = "Your mom has been less active this week than usual. She spent more time sitting in the living room and she got up later than usual by 38min. She also did not go outside as frequently and had less visitors. She only showered once this week." + elif commmand == "#ACTIVITY_COMPARE#": + to_return = "Overall your dad is less active this year compared to last year. He slept longer in the mornings and had less visitors. Also his shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#ACTIVITY_COMPARE_F#": + to_return = "Overall your mom is less active this year compared to last year. She slept longer in the mornings and had less visitors. Also her shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#LOCATION#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + #current_time = datetime.datetime.now() + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + detected_time = datetime.datetime.fromisoformat(details["last_detected_time"]) + local_time = local_tz.localize(detected_time) + # Convert to UTC + detected_utc_time = local_time.astimezone(pytz.UTC) + + time_diff = current_time - detected_utc_time + minutes = time_diff.total_seconds() / 60 + time_sentence = format_time_difference(minutes) + if minutes == 0: + to_return = f"He is now in the {last_location}." + else: + to_return = f"He was last detected in the {last_location} {time_sentence} ago" + elif commmand == "#SHOWER#": + to_return = "In the last 7 days, your Dad took a shower on Friday, Sunday and Tuesday" + elif commmand == "#SHOWER_F#": + to_return = "The last time your mom took a shower was Yesterda at 9:33AM" + elif commmand == "#BATHROOM#": + to_return = "Last night your Dad used the restroom only once at 6.10am" + elif commmand == "#KITCHEN#": + to_return = "Your Dad only cooked Dinner on Wednesday and he turned off the stove afterwards" + elif commmand == "#MOLD#": + to_return = "I cannot smell any mold. Also, the humidity is very low. In any of the rooms never exceeded 27% RH in the last 7 days." + elif commmand == "#VISITORS#": + to_return = "Yes, on Tuesday, I could detect motion in both office and kitchen at the same time and CO2 levels in the living room exceeded 900ppm." + elif commmand == "#TEMPERATURE#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + temperature = int(details["temperature"]) + if "America" in time_zone_s: + temperature_sentence = f"{int(CelsiusToFahrenheit(temperature))} degrees Farenhight" + else: + temperature_sentence = f"{temperature} degrees Celsius." + to_return = f"The temperature in the {last_location} is {temperature_sentence}." + elif commmand == "#TEMPERATURE_B#": + to_return = "The temperature in the main bathroom is 80 degrees Farenhight." + elif commmand == "#OXYGEN#": + to_return = "His last oxygen level was at 95%." + elif commmand == "#OXYGEN_F#": + to_return = "Her last oxygen level was at 95%." + elif commmand == "#HEART_RATE#": + to_return = "His last heart rate was 74 bpm." + elif commmand == "#BLOOD_PRESSURE#": + to_return = "His latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#BLOOD_PRESSURE_F#": + to_return = "Her latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#EKG#": + to_return = "His latest HeartBeam EKG was done on Monday and it was within his baseline!" + elif commmand == "#EKG_F#": + to_return = "Her latest HeartBeam EKG was done on Monday and it was within her baseline!" + return to_return + +def ScaleToCommon(data, sensor): + + if sensor == "temperature": + new_min = 0 + new_max = 100 + elif sensor == "humidity": + new_min = 100 + new_max = 200 + elif sensor == "light": + new_min = 200 + new_max = 300 + elif sensor == "radar": + new_min = 300 + new_max = 400 + elif sensor == "s0": + new_min = 400 + new_max = 500 + elif sensor == "s1": + new_min = 500 + new_max = 600 + elif sensor == "s2": + new_min = 600 + new_max = 700 + elif sensor == "s3": + new_min = 700 + new_max = 800 + elif sensor == "s4": + new_min = 800 + new_max = 900 + elif sensor == "s5": + new_min = 900 + new_max = 1000 + elif sensor == "s6": + new_min = 1000 + new_max = 1100 + elif sensor == "s7": + new_min = 1100 + new_max = 1200 + elif sensor == "s8": + new_min = 1200 + new_max = 1300 + else: #s9 + new_min = 1300 + new_max = 1400 + + # Split timestamps and values into separate arrays + timestamps = np.array([x[0] for x in data]) + values = np.array([x[1] for x in data]) + + # Get current min and max + if len(values) > 0: + current_min = np.min(values) + current_max = np.max(values) + else: + current_min = 0; + current_max = 0; + + # Scale the values using the min-max formula + if current_max - current_min > 0: + scaled_values = (values - current_min) * (new_max - new_min) / (current_max - current_min) + new_min + else: + mid_val = (new_max + new_min) / 2 + scaled_values = np.full_like(values, mid_val) + + # Zip back together with original timestamps + return list(zip(timestamps, scaled_values)) + +def CreateLocationsStripe(locations_file, time_zone_s): + + parts = locations_file.split("/") + parts1 = parts[2].split("_") + ddate = parts1[1] + deployment_id = parts1[0] + filter_minutes = parts1[2] + bw = False + chart_type = 4 + force_recreate = True + motion = False + scale_global = False + fast = True + GenerateFullLocationMap(locations_file, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + + +def CelsiusToFahrenheit(C): + F = (C * 9/5) + 32 + return F + +def CelsiusToFahrenheitList(compressed_readings: List[Tuple[datetime.datetime, np.float64]]) -> List[Tuple[datetime.datetime, np.float64]]: + + # Create a new list with converted temperatures + converted_readings = [ + [reading[0], CelsiusToFahrenheit(reading[1])] + for reading in compressed_readings + ] + + return converted_readings + +def GetPriviledgesOnly(user_name): + with get_db_connection() as conn: + if isinstance(user_name, (int)) or user_name.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user_name + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def GetPriviledgesAndUserId(user_name): + with get_db_connection() as conn: + sql = "SELECT access_to_deployments, user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0] + else: + return "[0,0]" + +def AddToLog(message): + """Add message to log""" + logger.info(message) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def convert_timestamps_lc(data, time_zone_s): + target_tz = pytz.timezone(time_zone_s) + return [[datetime.datetime.fromtimestamp(epoch, pytz.UTC).astimezone(target_tz), value] + for epoch, value in data] + + +subbedToL = [("/wellget",1),("/wellget_cmp",1),("/well_hub",1)] +def on_connectL(client_, userdata, flags, rc): + print(MQTTSERVERL + " L. Connected with result code "+str(rc)) + + # Subscribing in on_connect() means that if we lose the connection and + # reconnect then subscriptions will be renewed. + client_.subscribe(subbedToL) + print("SubscribedL to: "+str(subbedToL)) + +def on_messageL(client_, userdata, msg): #message from GUI + print(msg.topic+" "+str(msg.payload)) + #msga = msg.payload.decode("ascii") + #print(msg.timestamp) + #in_queue.append((str(time.time()), msg.topic, msg.payload)) + +def MQSendL(topic, content, qos=1): + print(topic, content[0:100]) + #return MQSend(topic, content) + #currentTime = int(time.time()) + try: + if "_cmp" in topic: + enc_msg = zlib.compress(content.encode('utf-8')) + else: + enc_msg = content + clientL.publish(topic, enc_msg, qos=qos, retain=False) + except Exception as err: + print ("Err2B:", err) + try: + clientL.disconnect() + #client.username_pw_set('telegraf', 'well18') + clientL.connect(MQTTSERVERL, MQTT_PortL, 60) + except Exception as e: + print ("Err3b:", e) + +def StoreFloorPlan(deployment_id, layout): + + conn = get_db_connection() + cur = conn.cursor() + print(layout) + data = json.loads(layout) + + # Extract the overlapping list + overlapping_list = str(data["overlapping"]) + + try: + sql = f""" + UPDATE public.deployment_details SET floor_plan = '{CleanObject(layout)}' WHERE deployment_id = {deployment_id}; + """ + + logger.debug(f"sql= {sql}") + cur.execute(sql) + conn.commit() + sql1 = f""" + INSERT INTO public.deployment_details (deployment_id, "overlapps") + VALUES ({deployment_id}, '{CleanObject(overlapping_list)}') + ON CONFLICT (deployment_id) + DO UPDATE SET "overlapps" = '{CleanObject(overlapping_list)}'; + """ + logger.debug(f"sql= {sql1}") + cur.execute(sql1) + conn.commit() + + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + return 0 + +def GetFloorPlan(deployment_id): + + conn = get_db_connection() + + try: + sql = f""" + SELECT floor_plan FROM public.deployment_details WHERE deployment_id = {deployment_id}; + """ + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "" + + logger.debug(f"sql= {sql}") + conn.close() + return 1 + except Exception as err: + return 0 + +# CORS Middleware +class CORSMiddleware: + def process_request(self, req, resp): + resp.set_header('Access-Control-Allow-Origin', '*') + resp.set_header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS') + resp.set_header('Access-Control-Allow-Headers', '*') + + def process_response(self, req, resp, resource, req_succeeded): + if req.method == 'OPTIONS': # Handle preflight requests + resp.status = falcon.HTTP_200 + +# Add this class to your code +class RequestParser: + def __init__(self): + # Detect if we're running in debug/development mode + self.debug_mode = __name__ == "__main__" or os.environ.get('DEBUG', 'false').lower() in ('true', '1', 'yes') + logger.debug(f"RequestParser initialized in {'DEBUG' if self.debug_mode else 'PRODUCTION'} mode") + + def process_request(self, req, resp): + """Pre-process the request to ensure media is parsed early""" + logger.debug(f"RequestParser processing: {req.method} {req.path}") + + # Initialize an empty form_data dict + req.context.form_data = {} + + # Only process POST requests with the right content type + if req.method != 'POST' or not req.content_type or 'form-urlencoded' not in req.content_type: + logger.debug("RequestParser: Skipping (not a form POST)") + return + + try: + # Different handling based on environment + if self.debug_mode: + self._process_debug(req) + else: + self._process_production(req) + + except Exception as e: + logger.error(f"RequestParser error: {str(e)}") + logger.error(traceback.format_exc()) + + def _process_debug(self, req): + """Process request in debug mode - optimized for local development""" + logger.debug("RequestParser: Using DEBUG mode processing") + + # In debug mode, we can use Content-Length and know it's reliable + content_length = req.get_header('content-length') + + if content_length: + # Content-Length is present + content_length = int(content_length) + logger.debug(f"RequestParser: Reading {content_length} bytes using Content-Length") + + raw_body = req.stream.read(content_length) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + else: + logger.debug("RequestParser (debug): No Content-Length header") + + def _process_production(self, req): + """Process request in production mode - optimized for OpenFaaS/faasd deployment""" + logger.debug("RequestParser: Using PRODUCTION mode processing") + + # Simple direct read approach for production (OpenFaaS/faasd) + # We'll limit the read to 1MB for safety + MAX_SIZE = 1024 * 1024 # 1MB + + # Just read directly from the stream without checking + raw_body = req.stream.read(MAX_SIZE) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + +def ensure_date_order(from_date, to_date): + """ + Ensures that from_date is earlier than to_date. + If not, swaps the dates. + + Args: + from_date: Date string in format 'YYYY-MM-DD' + to_date: Date string in format 'YYYY-MM-DD' + + Returns: + Tuple of (from_date, to_date) in correct order + """ + # Compare the date strings + # This works because the 'YYYY-MM-DD' format allows for string comparison + if from_date > to_date: + # Swap the dates + return to_date, from_date + else: + # Dates are already in correct order + return from_date, to_date + +def signum(x): + return (x > 0) - (x < 0) + + +def filter_short_groups_numpy_orig(presence_list, filter_size, device_id, dates_str): + """ + Optimized version using NumPy to remove groups of consecutive zeros + or consecutive non-zeros (based on sign) shorter than filter_size. + Mimics the iterative, shortest-first logic of filter_short_groupss. + + Args: + presence_list: List of numbers (can include floats, ints, 0s). + filter_size: Minimum size of consecutive groups (by sign) to keep. + + Returns: + Filtered list with short groups removed. Output contains 0s and 1s. + (Note: Differs slightly from filter_short_groupss if negative numbers + were present, as this version converts them to 0, not 2). + """ + st = time.time() + + if not presence_list or filter_size <= 1: + # print(f"NumPy: Early exit/no processing time: {time.time() - st:.6f}s") + # Return a copy to avoid modifying the original list + return presence_list[:] if isinstance(presence_list, list) else list(presence_list) + + # Work with a NumPy array for efficiency, ensure float type for consistency + result = np.array(presence_list, dtype=float) + n = len(result) + + # Use a set to store hashable representations (tuples) of previous states for cycle detection + previous_states = set() + + while True: + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + # print("NumPy: Cycle detected, breaking.") + break + previous_states.add(current_state_tuple) + + # 1. Calculate the sign of each element (-1, 0, 1) + signs = np.sign(result) + + # 2. Find indices where the sign changes + # np.diff calculates the difference between adjacent elements. + # A non-zero difference means the sign changed. + # np.where returns the indices *before* the change. Add 1 to get the start of the new run. + change_indices = np.where(np.diff(signs) != 0)[0] + 1 + + # 3. Define the boundaries of all consecutive runs (start and end indices) + # Include the start (0) and end (n) of the array. + boundaries = np.concatenate(([0], change_indices, [n])) + + # 4. Identify short runs + short_runs_to_process = [] + for i in range(len(boundaries) - 1): + start = boundaries[i] + end = boundaries[i+1] # Slicing is exclusive of the end index + length = end - start + + if length > 0: # Ensure the run is not empty + # Determine the characteristic sign of the run (use the first element) + run_sign = signs[start] + + if length < filter_size: + # --- Verification Step (Crucial) --- + # Check if the segment *still* consists of elements with the same sign. + # This handles cases where a previous modification might have altered + # part of what *was* a longer run. + current_segment_signs = np.sign(result[start:end]) + if np.all(current_segment_signs == run_sign): + # If the run is short and its sign consistency is verified, + # add it to the list of candidates for modification. + short_runs_to_process.append({ + 'start': start, + 'end': end, + 'sign': run_sign, + 'length': length + }) + # --- End Verification --- + + # 5. Check if any short runs were found + if not short_runs_to_process: + # No modifiable short runs found in this pass, the list is stable. + break + + # 6. Sort the short runs: shortest first, then by start index for determinism + # This ensures we process the same run as the original iterative function would. + short_runs_to_process.sort(key=lambda r: (r['length'], r['start'])) + + # 7. Process ONLY the *first* (shortest) identified run in this pass + run_to_process = short_runs_to_process[0] + start = run_to_process['start'] + end = run_to_process['end'] + run_sign = run_to_process['sign'] + + # Determine the replacement value based on the sign of the run being removed + # Short runs of 0 become 1 + # Short runs of non-zero (positive or negative) become 0 + replacement_value = 1.0 if run_sign == 0 else 0.0 + + # 8. Apply the replacement to the segment using NumPy slicing + result[start:end] = replacement_value + # Loop continues because a change was made + + print(f"filter_short_groups_numpy time: {time.time() - st:.6f}s") + if (time.time() - st) > 40: + print(presence_list) + # Convert back to a standard Python list for the return value + return result.tolist() + + + +def filter_short_groups_numpy(presence_list, filter_size, device_id, dates_str): + """ + Optimized version using NumPy to remove groups of consecutive zeros + or consecutive non-zeros (based on sign) shorter than filter_size. + Mimics the iterative, shortest-first logic. + + Optimization: + - Vectorized extraction of segment properties. + - Removed redundant sign verification within the segment analysis loop. + """ + # Start timer (optional, for benchmarking) + st = time.time() + + if not presence_list or filter_size <= 1: + # print(f"NumPy Optimized: Early exit/no processing time: {time.time() - st:.6f}s") + return presence_list[:] if isinstance(presence_list, list) else list(presence_list) + + result = np.array(presence_list, dtype=float) + n = len(result) + + previous_states = set() + + while True: + # Cycle detection + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + # print("NumPy Optimized: Cycle detected, breaking.") + break + previous_states.add(current_state_tuple) + + # 1. Calculate the sign of each element (-1, 0, 1) + signs = np.sign(result) + + # 2. Find indices where the sign changes + change_indices = np.where(np.diff(signs) != 0)[0] + 1 + + # 3. Define the boundaries of all consecutive runs + boundaries = np.concatenate(([0], change_indices, [n])) + + # If there's only one segment (e.g., all zeros, all ones, or array is too short to have changes), + # or if the array was empty (n=0 leading to boundaries=[0,0]), no further processing is needed. + if len(boundaries) <= 2: # e.g., boundaries is [0, n] or [0,0] + break + + # 4. Vectorized extraction of run properties + run_starts = boundaries[:-1] + run_ends = boundaries[1:] + run_lengths = run_ends - run_starts + # The sign of the first element of a run (from the 'signs' array computed at the + # start of this 'while' iteration) is representative of the entire run's sign, + # by definition of how 'boundaries' were created. + run_signs = signs[run_starts] + + # 5. Identify short runs and collect their properties + short_runs_to_process = [] + for i in range(len(run_starts)): # Iterate over all identified runs + # Ensure run_length is positive (should be, due to boundary logic, but good check) + if run_lengths[i] > 0 and run_lengths[i] < filter_size: + short_runs_to_process.append({ + 'start': run_starts[i], + 'end': run_ends[i], + 'sign': run_signs[i], + 'length': run_lengths[i] + }) + + # 6. Check if any modifiable short runs were found + if not short_runs_to_process: + # No short runs found in this pass, the list is stable. + break + + # 7. Sort the short runs: shortest first, then by start index for determinism + short_runs_to_process.sort(key=lambda r: (r['length'], r['start'])) + + # 8. Process ONLY the *first* (shortest) identified run in this pass + run_to_process = short_runs_to_process[0] + start = run_to_process['start'] + end = run_to_process['end'] + run_sign = run_to_process['sign'] + + # Determine the replacement value + replacement_value = 1.0 if run_sign == 0 else 0.0 + + # 9. Apply the replacement + result[start:end] = replacement_value + # A change was made, so the 'while True' loop continues (unless a cycle is detected next) + + # End timer and print (optional) + # Your original print statements for timing: + print(f"filter_short_groups_numpy time: {time.time() - st:.6f}s") + # if (time.time() - st) > 40: + # print(presence_list) # This would print the original input on long runs + + return result.tolist() + +def filter_short_groups(presence_list, filter_size): + """ + Corrected version to perform the same task as filter_short_groupss, + including handling of non-zero/non-one values based on signum. + Iteratively removes the shortest group < filter_size by flipping its + signum representation (0->1, pos->0, neg->2). + + Args: + presence_list: List of numbers (0s, 1s, or any other number). + filter_size: Minimum size of groups (based on signum) to keep. + Returns: + Filtered list with short groups removed, potentially containing 0, 1, 2. + """ + st = time.time() + + if not presence_list or filter_size <= 1: + # print(f"filter_short_groups: Early exit/no processing time: {time.time() - st:.6f}s") + return presence_list.copy() + + result = presence_list.copy() + n = len(result) + + # Using a set for faster cycle detection lookups + previous_states = set() + + while True: + current_state_tuple = tuple(result) + if current_state_tuple in previous_states: + # print("Cycle detected in filter_short_groups, breaking.") + break + previous_states.add(current_state_tuple) + + # --- Start of logic mimicking filter_short_groupss --- + changes_made_outer = False + + # 1. Find all segments based on signum + segments = [] + i = 0 + while i < n: + start = i + # Use signum to define the characteristic value of the run + current_signum = signum(result[i]) + + # Find the end of the group based on *consistent signum* + while i < n and signum(result[i]) == current_signum: + i += 1 + + group_length = i - start + # Store the signum value associated with the run + segments.append((start, i - 1, current_signum, group_length)) + + # 2. Sort segments by length (ascending) to process shortest first + segments.sort(key=lambda x: x[3]) + + # 3. Process the segments (find the first short one to modify) + for start, end, run_signum, length in segments: + if length < filter_size: + # Verify the segment hasn't been fundamentally altered (signum-wise) + # This check mirrors filter_short_groupss's intent, using signum consistently. + is_still_original_signum_segment = True + for k_idx in range(start, end + 1): + if signum(result[k_idx]) != run_signum: + is_still_original_signum_segment = False + break + + if is_still_original_signum_segment: + # Calculate replacement value based on signum (0->1, pos->0, neg->2) + replacement_value = 1 - run_signum + + # Apply replacement + segment_modified = False + for j in range(start, end + 1): + # Use direct comparison as replacement values are integers (0, 1, 2) + if result[j] != replacement_value: + result[j] = replacement_value + segment_modified = True + + if segment_modified: + changes_made_outer = True + # Break after making *one* change and restart the whole process + # (finding segments, sorting, finding shortest modifiable) + break # Break from the 'for segment in segments' loop + + # --- End of logic mimicking filter_short_groupss --- + + if not changes_made_outer: + # If we went through all segments and made no changes, we're done. + break + + print(f"filter_short_groups time: {time.time() - st:.6f}s") + return result + + +def filter_short_groupss(presence_list, filter_size): + """ + Iteratively remove groups of consecutive 0s or 1s that are shorter than filter_size. + Continues until no more changes are made. + + Args: + presence_list: List of 0s and 1s + filter_size: Minimum size of groups to keep + + Returns: + Filtered list with short groups removed + """ + st = time.time() + if not presence_list or filter_size <= 1: + return presence_list.copy() + + result = presence_list.copy() + changes_made = True + + while changes_made: + changes_made = False + + # First identify all segments + segments = [] + i = 0 + n = len(result) + + while i < n: + # Find the start of a group + start = i + current_value = signum(result[i]) + + # Find the end of the group + while i < n and signum(result[i]) == current_value: + i += 1 + + # Calculate group length + group_length = i - start + segments.append((start, i-1, current_value, group_length)) + + # Sort segments by length (ascending) to process shortest first + segments.sort(key=lambda x: x[3]) + + # Process the segments + for start, end, value, length in segments: + # If segment is too short, replace with opposite value + if length < filter_size: + # Verify the segment hasn't been modified by previous replacements + if all(result[j] == value for j in range(start, end+1)): + replacement = 1 - value # Toggle between 0 and 1 + for j in range(start, end+1): + result[j] = replacement + changes_made = True + #print(start, end) + break # Break after making a change and restart + + print("s", time.time()-st) + return result + +def filter_short_segments(segments, filter_size): + """ + Iteratively remove segments that are shorter than filter_size, + replacing them with data from the previous segment. + + Args: + segments: List of tuples (start_time, end_time, num_persons, duration) + filter_size: Minimum duration to keep a segment + + Returns: + Filtered list of segments covering the entire time range + """ + if not segments or filter_size <= 0: + return segments.copy() + + result = segments.copy() + changes_made = True + + while changes_made: + changes_made = False + + i = 1 # Start from the second segment + while i < len(result): + _, _, _, duration = result[i] + + if duration < filter_size: + # Get the previous segment's person count + if i > 0: + _, _, prev_persons, _ = result[i-1] + start, end, _, dur = result[i] + + # Replace with previous person count + result[i] = (start, end, prev_persons, dur) + changes_made = True + + # Check if we can merge with previous segment + if i > 0: + prev_start, prev_end, prev_persons, prev_dur = result[i-1] + curr_start, curr_end, curr_persons, curr_dur = result[i] + + if prev_persons == curr_persons and prev_end + 1 == curr_start: + # Merge segments + merged = (prev_start, curr_end, prev_persons, prev_dur + curr_dur) + result[i-1] = merged + result.pop(i) + i -= 1 # Adjust index after removing an element + changes_made = True + + i += 1 + + # Sort segments by start time to ensure proper order + result.sort(key=lambda x: x[0]) + + return result + +def filter_out_short_high_segments(segments, filter_size): + """ + Iteratively remove segments that are shorter than filter_size, + replacing them with data from the previous segment. + + Args: + segments: List of tuples (start_time, end_time, num_persons, duration) + filter_size: Minimum duration to keep a segment + + Returns: + Filtered list of segments covering the entire time range + """ + if not segments: + return segments.copy() + + result = segments.copy() + changes_made = True + + while changes_made: + changes_made = False + + i = 1 # Start from the second segment + while i < len(result): + _, _, _, duration = result[i] + + if duration < filter_size: + # Get the previous segment's person count + if i > 0: + _, _, prev_persons, _ = result[i-1] + start, end, _, dur = result[i] + + # Replace with previous person count + result[i] = (start, end, prev_persons, dur) + changes_made = True + + # Check if we can merge with previous segment + if i > 0: + prev_start, prev_end, prev_persons, prev_dur = result[i-1] + curr_start, curr_end, curr_persons, curr_dur = result[i] + + if prev_persons == curr_persons and prev_end + 1 == curr_start: + # Merge segments + merged = (prev_start, curr_end, prev_persons, prev_dur + curr_dur) + result[i-1] = merged + result.pop(i) + i -= 1 # Adjust index after removing an element + changes_made = True + + i += 1 + + # Sort segments by start time to ensure proper order + result.sort(key=lambda x: x[0]) + + return result + +def filter_out_short_same_groups_iterative(presence_list, filter_size): + """ + Iteratively remove groups of consecutive sames that are shorter than filter_size. + Continues until no more changes are made. + + Args: + presence_list: List of values + filter_size: Minimum size of groups to keep + + Returns: + Filtered list with short groups removed + """ + if not presence_list: + return presence_list.copy() + + result = presence_list.copy() + + + # First identify all segments + segments = [] + i = 0 + n = len(result) + + while i < n: + # Find the start of a group + start = i + current_value = result[i] + + # Find the end of the group + while i < n and result[i] == current_value: + i += 1 + + # Calculate group length + group_length = i - start + segments.append((start, i-1, current_value, group_length)) + + + result = filter_out_short_high_segments(segments, filter_size) + + return result + +def filter_out_short_highs_iterative(presence_list, filter_size): + """ + Iteratively remove groups of consecutive sames that are shorter than filter_size. + Continues until no more changes are made. + + Args: + presence_list: List of values + filter_size: Minimum size of groups to keep + + Returns: + Filtered list with short groups removed + """ + if not presence_list: + return presence_list.copy() + + result = presence_list.copy() + + + # First identify all segments + segments = [] + i = 0 + n = len(result) + + while i < n: + # Find the start of a group + start = i + current_value = result[i] + + # Find the end of the group + while i < n and result[i] == current_value: + i += 1 + + # Calculate group length + group_length = i - start + segments.append((start, i-1, current_value, group_length)) + + + result = filter_out_short_high_segments(segments, filter_size) + + return result + +def filter_short_groups_iterative_analog(presence_list, filter_size): + """ + Iteratively remove groups of consecutive similar values that are shorter than filter_size. + For non-zero values, replaces with 0. For zero values, needs context to determine replacement. + """ + if not presence_list or filter_size <= 1: + return presence_list.copy() + + result = presence_list.copy() + changes_made = True + + while changes_made: + changes_made = False + + # Identify all segments of consecutive similar values + segments = [] + i = 0 + n = len(result) + + while i < n: + start = i + is_zero = (result[i] == 0) + + # Find the end of the group with same characteristic (zero or non-zero) + while i < n and ((result[i] == 0) == is_zero): + i += 1 + + group_length = i - start + segments.append((start, i-1, is_zero, group_length)) + + # Process segments from shortest to longest + segments.sort(key=lambda x: x[3]) + + for start, end, is_zero, length in segments: + if length < filter_size: + # For short non-zero groups, replace with zeros + if not is_zero: + for j in range(start, end+1): + result[j] = 0 + changes_made = True + break + else: + # For short zero groups, replace with average of surrounding non-zero values + # First, find surrounding values + left_value = 0 + right_value = 0 + + # Look for non-zero value on the left + for j in range(start-1, -1, -1): + if result[j] != 0: + left_value = result[j] + break + + # Look for non-zero value on the right + for j in range(end+1, n): + if result[j] != 0: + right_value = result[j] + break + + # Calculate replacement value + if left_value > 0 and right_value > 0: + replacement = (left_value + right_value) / 2 + elif left_value > 0: + replacement = left_value + elif right_value > 0: + replacement = right_value + else: + replacement = 0 # No surrounding non-zero values + + # Apply replacement + for j in range(start, end+1): + result[j] = replacement + + if replacement != 0: # Only mark as changed if we actually changed something + changes_made = True + break + return result + + +def filter_short_high_groups_iterative_analog(presence_list, filter_size): + st = time.time() + """ + More efficient implementation that still handles cascading effects. + """ + if not presence_list or filter_size <= 1: + return presence_list.copy() + + result = presence_list.copy() + changes_made = True + + while changes_made: + changes_made = False + i = 0 + n = len(result) + + # Use a single pass to find all non-zero segments + segments = [] + while i < n: + # Skip zeros + if result[i] == 0: + i += 1 + continue + + # Found non-zero, find the end of this segment + start = i + while i < n and result[i] != 0: + i += 1 + + # Add segment to our list + segments.append((start, i)) + + # Process all short segments in one iteration + for start, end in segments: + length = end - start + if length < filter_size: + # Set all elements in this segment to zero + for j in range(start, end): + result[j] = 0 + changes_made = True + # Don't break - process all short segments in this pass + + # If we've made changes, we need to check again for newly formed short segments + print(f"filter_short_high_groups_iterative_analog time: {time.time() - st:.6f}s") + return result + +def filter_short_high_groups_iterative_analog_orig(presence_list, filter_size): + """ + Iteratively remove groups of consecutive similar values that are shorter than filter_size. + For non-zero values, replaces with 0. For zero values, needs context to determine replacement. + """ + if not presence_list or filter_size <= 1: + return presence_list.copy() + st = time.time() + result = presence_list.copy() + changes_made = True + + while changes_made: + changes_made = False + + # Identify all segments of consecutive similar values + segments = [] + i = 0 + n = len(result) + + while i < n: + start = i + is_zero = (result[i] == 0) + + # Find the end of the group with same characteristic (zero or non-zero) + while i < n and ((result[i] == 0) == is_zero): + i += 1 + + group_length = i - start + segments.append((start, i-1, is_zero, group_length)) + + # Process segments from shortest to longest + segments.sort(key=lambda x: x[3]) + + for start, end, is_zero, length in segments: + if length < filter_size: + # For short non-zero groups, replace with zeros + if not is_zero: + for j in range(start, end+1): + result[j] = 0 + changes_made = True + break + + print(f"filter_short_high_groups_iterative_analog time: {time.time() - st:.6f}s") + #if (time.time() - st) > 40: + # print(presence_list) + return result + + + +def filter_short_groupsWhat(presence_list, filter_size): + """ + Remove groups of consecutive 0s or 1s that are shorter than filter_size. + For short groups of 0s, replace with 1s. + For short groups of 1s, replace with 0s. + + Args: + presence_list: List of 0s and 1s + filter_size: Minimum size of groups to keep + + Returns: + Filtered list with short groups removed + """ + if not presence_list or filter_size <= 1: + return presence_list.copy() + + result = presence_list.copy() + n = len(result) + + # Find groups and process them + i = 0 + while i < n: + # Find the start of a group + start = i + current_value = result[i] + + # Find the end of the group + while i < n and result[i] == current_value: + i += 1 + + # Calculate group length + group_length = i - start + + # If group is too short, replace with opposite value + if group_length < filter_size: + replacement = 1 - current_value # Toggle between 0 and 1 + for j in range(start, i): + result[j] = replacement + + return result + + +def GetOverlapps(deployment_id): + + with get_db_connection() as db_conn: + with db_conn.cursor() as cur: + sql = f"SELECT overlapps FROM public.deployment_details WHERE deployment_id = '{deployment_id}'" + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + return result[0] + + +def GetAmpitude(point_val, segment_lenght): + if point_val == 0: + return -segment_lenght + else: + return segment_lenght + +def CreateZGraph(well_id, presence_list): + """ + return size and position of consecutive groups of 0s and 1s + + Args: + presence_list: List of 0s and 1s + + Returns: + list of times and lengths + """ + if not presence_list: + return presence_list.copy() + + #if well_id == 290: + # print("Stop") + dekas_in_day = 6 * 1440 + result = [] + print(well_id) + #result will look like this: [(0,34),(34,-56),(92,6),...] where (A,B) + #A: is minute of section, B: height of section +=presence -=absence + #lets find point 0 first moving backward in time + segment_lenght = 0 + point_zero_val = signum(presence_list[dekas_in_day]) + for i in range(dekas_in_day-1, 0, -1): + if point_zero_val != signum(presence_list[i]): + segment_lenght = dekas_in_day -1 - i + break + x = 0 + y = GetAmpitude(point_zero_val, segment_lenght) + result.append((x, y)) + #x = x + segment_lenght + last_y = y + last_val = point_zero_val + last_source_minute = dekas_in_day + 1 + for i in range(last_source_minute, len(presence_list)): + if last_val != signum(presence_list[i]): + segment_lenght = i - dekas_in_day - x + x = x + segment_lenght + y = last_y + GetAmpitude(last_val, segment_lenght) + result.append((x, y)) + result.append((x, 0)) + last_y = 0 + last_val = signum(presence_list[i]) + + #last point i is NOT 1 + last above... it is last above so 2879! + segment_lenght = i - dekas_in_day - x + x = i - dekas_in_day #last point + y = GetAmpitude(last_val, segment_lenght) + result.append((x, y)) + + return result + + +# Add this function to your code +def get_form_data(req): + """Helper function to get form data from either context or req.media""" + # First check if we pre-parsed the form data + if hasattr(req.context, 'form_data') and req.context.form_data: + logger.debug("Using pre-parsed form data from context") + return req.context.form_data + + # Otherwise try to get from req.media (for json) + try: + if req.content_type and ( + falcon.MEDIA_JSON in req.content_type or + falcon.MEDIA_URLENCODED in req.content_type + ): + logger.debug("Attempting to get form data from req.media") + return req.media or {} + except Exception as e: + logger.error(f"Error getting req.media: {str(e)}") + + logger.debug("No form data available, returning empty dict") + return {} + +def DetectMultiple(temporary_map_day_plus, overlaps_str_lst): + """ + Written by Robert Zmrzli + Detects time intervals of multiple vs single/no presence and outputs + the signed duration of each interval at its end time. + + Args: + temporary_map_day_plus: Map for each device radar reads that were detected to be above threshold + overlaps_lst: List of pairs of devices that have overlapping area + Returns: + A list of tuples representing the multiple presence timeline segments. + Each segment is represented by two tuples: + 1. (end_minute, signed_duration): signed_duration is the length of the + interval ending at end_minute (+ multiple, - single/none). + 2. (end_minute, 0): A marker for visualization. + """ + for location_id, data_list in temporary_map_day_plus.items(): + minutes_in_data = len(data_list) + break + events = [] + min_time = 0 + max_time = 0 + + + #['267:273', '273:291'] + seen_list = [0] * minutes_in_data + seen_where_list = [[] for _ in range(minutes_in_data)] + + for location_id, data_list in temporary_map_day_plus.items(): + for i in range(minutes_in_data): + if data_list[i] > 0: # Presence interval + seen_where_list[i].append(location_id) + + seen_where_list_uf = seen_where_list.copy() + overlap_pairs = set() + for overlap_str in overlaps_str_lst: + nums = [int(x) for x in overlap_str.split(':')] + # Add both orderings of the pair for easier checking + overlap_pairs.add((nums[0], nums[1])) + overlap_pairs.add((nums[1], nums[0])) + + # Process each sub-list in seen_where_list + for i in range(len(seen_where_list)): + locations = seen_where_list[i] + + # Skip empty lists and lists with only 0 or 1 item + if len(locations) <= 1: + continue + + has_non_overlapping_pair = False + + for j in range(len(locations)): + for k in range(j+1, len(locations)): + loc1, loc2 = locations[j], locations[k] + + # If this pair is not in our overlap_pairs, then they don't overlap + if (loc1, loc2) not in overlap_pairs: + has_non_overlapping_pair = True + break + + if has_non_overlapping_pair: + break + + # If all pairs overlap (no non-overlapping pairs found), clear the list + if not has_non_overlapping_pair: + seen_where_list[i] = [] + + + variations = [] + variation_index = {} + + for i in range(minutes_in_data): + if len(seen_where_list[i]) > 1: # Presence interval + if seen_where_list[i] not in variations: + variations.append(seen_where_list[i]) + variation_index[str(seen_where_list[i])] = len(variations) - 1 + + seen_list[i] = variation_index[str(seen_where_list[i])] + + + return seen_list, seen_where_list_uf + +def minutes_to_time(minutes): + """ + Convert minutes in a day (0-1439) to HH:MM format + + Args: + minutes (int): Minutes since midnight (0-1439) + + Returns: + str: Time in HH:MM format + """ + # Ensure the input is within valid range + #if not 0 <= minutes <= 1439: + # raise ValueError("Minutes must be between 0 and 1439") + + # Calculate hours and remaining minutes + minutes = minutes % 1440 + hours = minutes // 60 + mins = minutes % 60 + + # Format as HH:MM with leading zeros + return f"{hours:02d}:{mins:02d}" + +def decas_to_time(decas): + """ + Convert decas in a day (0-8639) to HH:MM format + + Args: + decas (int): decas since midnight (0-1439) + + Returns: + str: Time in HH:MM format + """ + # Ensure the input is within valid range + #if not 0 <= minutes <= 1439: + # raise ValueError("Minutes must be between 0 and 1439") + + # Calculate hours and remaining minutes + decas = decas % 8640 + hours = decas // (6 * 60) + mins = (decas // 6) % 60 + secs = 10 * (decas % 10) + + # Format as HH:MM with leading zeros + return f"{hours:02d}:{mins:02d}:{secs:02d}" + +def ClearOverlaps(temporary_map_day_plus, overlaps_str_lst): + """ + Detects reads that came from same person read by multiple devices that overlap, and removes weaker reads + Args: + temporary_map_day_plus: Map for each device radar reads that were detected to be above threshold + overlaps_lst: List of pairs of devices that have overlapping area + Returns: + An original temporary_map_day_plus with some reads removed + """ + ## Get the number of minutes + #for location_id, data_list in temporary_map_day_plus.items(): + #decas_in_data = len(data_list) + #break + + if temporary_map_day_plus: + decas_in_data = len(next(iter(temporary_map_day_plus.values()))) + else: + decas_in_data = 0 + + # Create seen_where_list with device-signal pairs + seen_where_list = [[] for _ in range(decas_in_data)] + for location_id, data_list in temporary_map_day_plus.items(): + for i in range(decas_in_data): + if data_list[i] > 0: # Presence interval + #if i == (8721): + # print("stop") + seen_where_list[i].append((location_id, data_list[i])) + + # Parse overlap pairs + overlap_pairs = set() + for overlap_str in overlaps_str_lst: + nums = [int(x) for x in overlap_str.split(':')] + overlap_pairs.add((nums[0], nums[1])) + overlap_pairs.add((nums[1], nums[0])) + + # Process each time slot + for i in range(len(seen_where_list)): + locations = seen_where_list[i] + + if len(locations) <= 1: + continue + + #if i == (5713 + 8640): + # print("stop") + #if i == (8721): + # print("stop") + # Create a new list to store the filtered results + filtered_list = [] + + # Make a copy of locations to process + to_process = locations.copy() + + # Process each device and decide whether to keep it + while to_process: + current = to_process.pop(0) + device_id, signal_strength = current + + should_keep = True + devices_to_remove = [] + + # Compare with all other devices (including those already in filtered_list) + for other in locations: + other_device_id, other_signal_strength = other + + # Skip if comparing with itself + if device_id == other_device_id: + continue + + # Check if these devices overlap + if (device_id, other_device_id) in overlap_pairs: + # They overlap, keep only the stronger signal + if signal_strength < other_signal_strength: + # Other device is stronger, don't keep current + should_keep = False + break + elif signal_strength == other_signal_strength and device_id > other_device_id: + # For equal signals, use device_id as tiebreaker + should_keep = False + break + + # If we should keep this device, add it to filtered list + if should_keep: + filtered_list.append(current) + + # Update the original list with filtered results + + #if i == (8721): + # print("stop") + seen_where_list[i] = filtered_list + + # Create a new temporary_map_day_plus with the filtered data + result = {} + for location_id, data_list in temporary_map_day_plus.items(): + result[location_id] = [0] * decas_in_data + + # Fill in the filtered data + for i in range(decas_in_data): + #if len(seen_where_list[i]) > 1: + #if i == (8721): + # print("stop") + #print(i, decas_to_time(i), seen_where_list[i]) + + for device_id, signal_strength in seen_where_list[i]: + result[device_id][i] = signal_strength + + return result + +# Path handling middleware +class StripPathMiddleware: + def process_request(self, req, resp): + # Strip the '/function/well-api' prefix if present + path = req.path + logger.info(f"Original request path: {path}") + + # Define patterns to match different URL formats + patterns = [ + r'^/function/well-api', # Standard OpenFaaS path + r'^/api/well_api', # API path + ] + + for pattern in patterns: + if re.match(pattern, path): + # Strip the matched prefix + path = re.sub(pattern, '', path) + # Ensure path starts with a slash + if not path.startswith('/'): + path = '/' + path + # Update the request path + req.path = path + logger.info(f"Modified request path: {path}") + break + + +def optimized_processing(myz_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, temporary_map_day_plus, data_type): + last_device_id = None + + # Pre-compute seconds per minute + seconds_per_deka = 10 + + # Check if we need to process all data or just specific types + process_all = data_type in ("all", "z-graph", "multiple") + + for radar_read in myz_data: + local_time = radar_read[0] + device_id = radar_read[1] + + # Calculate deca once + deca = int((local_time - start_time).total_seconds() / seconds_per_deka) + + # Use cached lookups when possible + if device_id != last_device_id: + last_device_id = device_id + + # Check if we've cached this device info + if device_id not in device_lookup_cache: + well_id = id2well_id[device_id] + radar_threshold_group_st = device_id_2_threshold[well_id] + threshold_sig, threshold = radar_threshold_group_st + threshold_sig = threshold_sig.split("_")[0] + + # Cache the values + device_lookup_cache[device_id] = { + 'well_id': well_id, + 'threshold_sig': threshold_sig, + 'threshold': threshold + } + else: + # Use cached values + cached = device_lookup_cache[device_id] + well_id = cached['well_id'] + threshold_sig = cached['threshold_sig'] + threshold = cached['threshold'] + + days_decas = len(temporary_map_day_plus[well_id]) + else: + # Use already loaded values from last iteration + cached = device_lookup_cache[device_id] + well_id = cached['well_id'] + threshold_sig = cached['threshold_sig'] + threshold = cached['threshold'] + days_decas = len(temporary_map_day_plus[well_id]) + + # Get radar value using cached index + radar_val = radar_read[2 + device_field_indexes[threshold_sig]] + + # Process data if needed + if process_all and radar_val > threshold and deca < days_decas: + temporary_map_day_plus[well_id][deca] = radar_val + #if well_id == 269: + # print(local_time) + + return temporary_map_day_plus + +def optimized_radar_processing(my_data, start_time, id2well_id, device_id_2_threshold, + device_field_indexes, presence_map, data_type): + last_device_id = 0 + + # Cache for threshold_sig calculation which is expensive due to dictionary lookups and string splitting + threshold_sig_cache = {} + field_index_cache = {} + + for radar_read in my_data: + local_time = radar_read[0] + device_id = radar_read[1] + + # Calculate deca once + deca = int((local_time - start_time).total_seconds() / 10) + + # Device changed - update values that depend on device + if device_id != last_device_id: + last_device_id = device_id + well_id = id2well_id[device_id] + + # Calculate days_decas exactly like original + if data_type == "raw" or data_type == "all": + days_decas = len(presence_map['raw'][well_id]) + else: + days_decas = len(presence_map['presence'][well_id]) + + # Calculate threshold_sig with caching + if device_id not in threshold_sig_cache: + radar_threshold_group_st = device_id_2_threshold[well_id] + threshold_sig, threshold = radar_threshold_group_st + threshold_sig = threshold_sig.split("_")[0] + threshold_sig_cache[device_id] = (threshold_sig, threshold) + else: + threshold_sig, threshold = threshold_sig_cache[device_id] + + # Calculate field index with caching + if threshold_sig not in field_index_cache: + field_index = 2 + device_field_indexes[threshold_sig] + field_index_cache[threshold_sig] = field_index + else: + field_index = field_index_cache[threshold_sig] + else: + # Use values from previous iteration for same device + well_id = id2well_id[device_id] + + # Calculate days_decas exactly like original + if data_type == "raw" or data_type == "all": + days_decas = len(presence_map['raw'][well_id]) + else: + days_decas = len(presence_map['presence'][well_id]) + + # Use cached values + threshold_sig, threshold = threshold_sig_cache[device_id] + field_index = field_index_cache[threshold_sig] + + # Get radar value using cached field index + radar_val = radar_read[field_index] + + # Process presence data + if data_type == "presence" or data_type == "z-graph" or data_type == "all" or data_type == "multiple": + if radar_val > threshold: + if deca < days_decas: + presence_map['presence'][well_id][deca] = 1 + + # Process raw data if needed + if data_type == "raw" or data_type == "all": + if deca < days_decas: + presence_map['raw'][well_id][deca] = radar_val + + return presence_map + +def CompressList(presence_devices_map): + + for key in presence_devices_map: + presence_map_list = presence_devices_map[key] + presence_map_list_compressed = Compress(presence_map_list) + presence_devices_map[key] = presence_map_list_compressed + + return presence_devices_map + +def Compress(presence_map_list): + + presence_map_list_compressed = [] + l = len(presence_map_list) + if l > 1: + last_data_point = presence_map_list[0] + presence_map_list_compressed.append([0, last_data_point]) + for i in range(1, l): + data_point = presence_map_list[i] + if data_point != last_data_point: + presence_map_list_compressed.append([i - 1, last_data_point]) + presence_map_list_compressed.append([i, data_point]) + last_data_point = data_point + presence_map_list_compressed.append([i, data_point]) + return presence_map_list_compressed + +def Decompress(pers_in_deka): + + last = pers_in_deka[-1] + last_index = 1 + last[1] + result = [0] * last_index + for points in pers_in_deka: + start_deca = points[0] + end_deca = points[1] + value_deca = points[2] + for i in range(start_deca, 1+end_deca): + result[i] = value_deca + return result + +def store_to_file(my_list, filename): + + try: + with open(filename, 'w') as f: + json.dump(my_list, f, indent=4) # indent for pretty printing + print(f"List saved to {filename} using JSON") + except IOError: + print(f"Error: Could not write to file {filename}") + except TypeError as e: + print(f"Error: Could not serialize list to JSON. {e}") # e.g. if list contains unsupported types like sets + +def find_custom_header(headers, name): + """Find a custom header by name in the Telnyx webhook payload""" + if not headers: + return None + for header in headers: + if header.get('name', '').lower() == name.lower(): + return header.get('value') + return None + +def create_client_state(base_event, call_control_id, prefix): + """Create a base64 encoded client state string as required by Telnyx API""" + # Create the plain text client state string + plain_state = f"{prefix}_{base_event}_{call_control_id[:8]}" if call_control_id else f"{prefix}_{base_event}_unknownccid" + + # Encode to base64 as required by Telnyx API + base64_state = base64.b64encode(plain_state.encode('utf-8')).decode('ascii') + + logger.debug(f"Client state created: '{plain_state}' -> base64: '{base64_state}'") + return base64_state + +def send_telnyx_command(command, params, api_key): + """Send command to Telnyx API""" + headers = { + "Authorization": f"Bearer {api_key}", + "Content-Type": "application/json" + } + + call_control_id = params.pop("call_control_id", None) + data = json.dumps(params) + + logger.debug(f"Sending {command} command to Telnyx API: {data}") + + # Fix for v3 call control IDs - use the correct URL format + if call_control_id and call_control_id.startswith("v3:"): + # For v3 calls + url = f"{TELNYX_API_BASE_URL}/calls/{call_control_id}/{command}" + else: + # For backward compatibility with v2 or other formats + url = f"{TELNYX_API_BASE_URL}/{call_control_id}/{command}" + + try: + response = requests.post(url, headers=headers, data=data) + if response.status_code >= 200 and response.status_code < 300: + logger.debug(f"Telnyx command {command} sent successfully.") + return True + else: + logger.error(f"Telnyx rejected {command} command. Status: {response.status_code}") + logger.error(f"Response body: {response.text}\n") + return False + except Exception as e: + logger.exception(f"Error sending Telnyx command {command}: {str(e)}") + return False + +def StoreToDB(data): + event_type = data.get('event_type') + sql = "" + + payload_json = json.dumps(data["payload"]) + call_session_id = data["payload"]['call_session_id'] + if event_type == "call.initiated": + timee = data.get('occurred_at') + sql = f""" + INSERT INTO public.alarms_voice ( + index, + "time", + call_session_id, + initiated + ) + VALUES ( + (SELECT COALESCE(MAX(index), 0) + 1 FROM public.alarms_voice), -- Auto-increment index + '{timee}'::timestamptz, -- occurred_at value + '{call_session_id}', -- call_session_id value + '{payload_json}' + ); """ + + elif event_type == "call.answered": + sql = f""" + UPDATE public.alarms_voice + SET answered = '{payload_json}' + WHERE call_session_id = '{call_session_id}';""" + elif event_type == "call.playback.started": + sql = f""" + UPDATE public.alarms_voice + SET playback_started = '{payload_json}' + WHERE call_session_id = '{call_session_id}';""" + elif event_type == "call.playback.ended": + sql = f""" + UPDATE public.alarms_voice + SET playback_ended = '{payload_json}' + WHERE call_session_id = '{call_session_id}';""" + elif event_type == "call.hangup": + sql = f""" + UPDATE public.alarms_voice + SET hangup = '{payload_json}' + WHERE call_session_id = '{call_session_id}';""" + + if sql != "": + with get_db_connection() as conn: + with conn.cursor() as cur: + print(sql) + cur.execute(sql) + + + +def handle_telnyx_webhook(webhook_data, remote_addr, request_id): + """Process Telnyx webhook events""" + logger.info(f"Processing Telnyx webhook from {remote_addr}, Request-ID: {request_id}") + + try: + data = webhook_data.get('data', {}) + event_type = data.get('event_type') + record_type = data.get('record_type') + payload = data.get('payload', {}) + + logger.info(f"Event: {event_type}, Record Type: {record_type}") + + if not event_type or not record_type: + logger.error("Missing event_type or record_type in webhook data") + return False + + call_control_id = payload.get('call_control_id') + call_session_id = payload.get('call_session_id') + + # Voice Event Handling + if record_type == 'event': + logger.info(f"Processing voice event: {event_type}") + + StoreToDB(data) + + if event_type == 'call.initiated': + logger.info(f"Call initiated: From: {payload.get('from')}, To: {payload.get('to')}") + elif event_type == 'call.answered': + logger.info(f"Call answered: From: {payload.get('from')}, To: {payload.get('to')}") + + # Get custom headers and log them + custom_headers = payload.get('custom_headers', []) + logger.debug(f"Custom headers: {json.dumps(custom_headers)}") + + # Check for audio URL + audio_url = find_custom_header(custom_headers, 'X-Audio-Url') + tts_payload = find_custom_header(custom_headers, 'X-TTS-Payload') + + logger.info(f"Audio URL: {audio_url}, TTS Payload: {tts_payload}") + + # Play audio if URL is provided + if ENABLE_AUDIO_PLAYBACK and audio_url: + logger.info(f"Playing audio: {audio_url}") + client_state = create_client_state("answered", call_control_id, CLIENT_STATE_PREFIX) + + play_params = { + "call_control_id": call_control_id, + "client_state": client_state, + "audio_url": audio_url + } + + result = send_telnyx_command("actions/playback_start", play_params, TELNYX_API_KEY) + logger.info(f"Play command result: {result}") + return True + + elif tts_payload: + logger.info(f"Speaking text: {tts_payload}") + client_state = create_client_state("answered", call_control_id, CLIENT_STATE_PREFIX) + + speak_params = { + "payload": tts_payload, + "voice": DEFAULT_TTS_VOICE, + "language": DEFAULT_TTS_LANGUAGE, + "call_control_id": call_control_id, + "client_state": client_state + } + + result = send_telnyx_command("actions/speak", speak_params, TELNYX_API_KEY) + logger.info(f"Speak command result: {result}") + return True + + else: + logger.warning("No audio URL or TTS payload found in call. Hanging up.") + hangup_params = { + "call_control_id": call_control_id, + "client_state": create_client_state("nohdr_hup", call_control_id, CLIENT_STATE_PREFIX) + } + send_telnyx_command("actions/hangup", hangup_params, TELNYX_API_KEY) + return True + + # Handle other voice events + elif event_type in ['call.speak.ended', 'call.playback.ended']: + status = payload.get('status') + ended_event_type = event_type.split('.')[-2] + logger.info(f"Call {ended_event_type} ended: Status={status}") + + # Hang up after media finished playing + hangup_params = { + "call_control_id": call_control_id, + "client_state": create_client_state(f"{ended_event_type}_hup", call_control_id, CLIENT_STATE_PREFIX) + } + send_telnyx_command("actions/hangup", hangup_params, TELNYX_API_KEY) + return True + + elif event_type == 'call.hangup': + logger.info(f"Call hung up: Cause={payload.get('cause')}") + return True + + else: + logger.info(f"Other voice event: {event_type}") + return True + + # SMS Event Handling + elif record_type == 'message': + logger.info(f"Processing SMS event: {event_type}") + # SMS handling code... + return True + + else: + logger.warning(f"Unknown record type: {record_type}") + return False + + except Exception as e: + logger.exception(f"Error in handle_telnyx_webhook: {e}") + return False + +# Assume these are defined globally or accessible (e.g., from app_args or .env) +# logger = logging.getLogger(...) +# ENABLE_AUDIO_PLAYBACK = True / False +# CLIENT_STATE_PREFIX = "app_state" +# DEFAULT_TTS_VOICE = "female" +# DEFAULT_TTS_LANGUAGE = "en-US" +# TELNYX_API_KEY = "YOUR_API_KEY" +# DTMF_GATHER_TIMEOUT_SECONDS = 15 # Wait 15 seconds for DTMF input + +# Placeholder for your DB function +# def StoreToDB(data): +# app_logger.debug(f"Placeholder: Storing to DB: {json.dumps(data)[:100]}") # Use app_logger + +# (Your existing find_custom_header, create_client_state, send_telnyx_command should be here) +# Make sure send_telnyx_command uses app_logger + +def handle_telnyx_webhook2(webhook_data, remote_addr, request_id): # Renamed logger to app_logger + """Process Telnyx webhook events with IVR logic.""" + logger.info(f"Processing Telnyx webhook from {remote_addr}, Request-ID: {request_id}") + + try: + data = webhook_data.get('data', {}) + event_type = data.get('event_type') + record_type = data.get('record_type') + payload = data.get('payload', {}) + + logger.info(f"Event: {event_type}, Record Type: {record_type}") + + if not event_type or not record_type: + logger.error("Missing event_type or record_type in webhook data") + return False # Indicate failure to process + + call_control_id = payload.get('call_control_id') + call_session_id = payload.get('call_session_id') + # Attempt to decode client_state if present + b64_client_state_rcvd = data.get("payload",{}).get("client_state") + plain_client_state_rcvd = "" + if b64_client_state_rcvd: + try: + plain_client_state_rcvd = base64.b64decode(b64_client_state_rcvd).decode('utf-8') + logger.info(f" Decoded Client State Received: '{plain_client_state_rcvd}'") + except Exception as e: + logger.warning(f" Could not decode client_state: {b64_client_state_rcvd}, Error: {e}") + plain_client_state_rcvd = "undecodable_state" + + + # Store all events to DB if needed + StoreToDB(webhook_data) # Pass the full webhook_data + + # Voice Event Handling + if record_type == 'event': + logger.info(f"Processing voice event: {event_type}, CCID: {call_control_id}") + + # --- Initial Call Setup --- + if event_type == 'call.initiated': + logger.info(f" Call initiated: From: {payload.get('from')}, To: {payload.get('to')}") + # No action needed here, wait for call.answered + + elif event_type == 'call.answered': + logger.info(f" Call answered: From: {payload.get('from')}, To: {payload.get('to')}") + custom_headers = payload.get('custom_headers', []) + logger.debug(f" Custom headers: {json.dumps(custom_headers)}") + + audio_url = find_custom_header(custom_headers, 'X-Audio-Url') + tts_payload = find_custom_header(custom_headers, 'X-TTS-Payload') + logger.info(f" X-Audio-Url: {audio_url}, X-TTS-Payload: {tts_payload}") + + # This state means the main message is about to be played. + # After it ends, we'll play the options prompt. + next_client_state = create_client_state("main_media_played", call_control_id, app_args.client_state_prefix) # Use app_args + + action_taken = False + if app_args.enable_audio_playback and audio_url: # Use app_args + logger.info(f" -> Playing main audio: {audio_url}") + play_params = {"call_control_id": call_control_id, "client_state": next_client_state, "audio_url": audio_url} + send_telnyx_command("actions/playback_start", play_params, app_args.api_key) # Use app_args + action_taken = True + elif tts_payload: + logger.info(f" -> Speaking main TTS: {tts_payload}") + speak_params = {"payload": tts_payload, "voice": app_args.default_tts_voice, "language": app_args.default_tts_language, "call_control_id": call_control_id, "client_state": next_client_state} # Use app_args + send_telnyx_command("actions/speak", speak_params, app_args.api_key) # Use app_args + action_taken = True + + if not action_taken: + logger.warning(" -> No audio URL or TTS payload for main message. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state("no_main_media_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + + # --- Handling End of Main Media Playback --- + elif event_type in ['call.speak.ended', 'call.playback.ended']: + status = payload.get('status') + ended_event_type_root = event_type.split('.')[1] # speak or playback + + logger.info(f" Call {ended_event_type_root} ended: Status={status}, Current Decoded State='{plain_client_state_rcvd}'") + + # Check if the main media just finished playing + if plain_client_state_rcvd.startswith(f"{app_args.client_state_prefix}_main_media_played"): + logger.info(" -> Main media finished. Playing DTMF options prompt.") + options_prompt_tts = "press 0 to repeat the message or press pound to hang up." + # This state means the options prompt is playing, and we're waiting for DTMF. + # gather_using_speak will trigger call.gather.ended + next_client_state = create_client_state("waiting_dtmf", call_control_id, app_args.client_state_prefix) + + gather_params = { + "call_control_id": call_control_id, + "client_state": next_client_state, + "payload": options_prompt_tts, + "voice": app_args.default_tts_voice, + "language": app_args.default_tts_language, + "valid_digits": "0#", # Only accept 0 or # + "max_digits": 1, # Expect only one digit + "timeout_millis": app_args.dtmf_timeout_seconds * 1000, # N seconds timeout + "terminating_digits": "#" # # will also terminate gather immediately + } + send_telnyx_command("actions/gather_using_speak", gather_params, app_args.api_key) + + elif plain_client_state_rcvd.startswith(f"{app_args.client_state_prefix}_replaying_main_media"): + logger.info(" -> Replayed main media finished. Playing DTMF options prompt again.") + # Same logic as above for playing options prompt + options_prompt_tts = "press 0 to repeat the message or press pound to hang up." + next_client_state = create_client_state("waiting_dtmf", call_control_id, app_args.client_state_prefix) + gather_params = { + "call_control_id": call_control_id, "client_state": next_client_state, + "payload": options_prompt_tts, "voice": app_args.default_tts_voice, "language": app_args.default_tts_language, + "valid_digits": "0#", "max_digits": 1, "timeout_millis": app_args.dtmf_timeout_seconds * 1000, "terminating_digits": "#" + } + send_telnyx_command("actions/gather_using_speak", gather_params, app_args.api_key) + + else: + logger.warning(f" -> {ended_event_type_root} ended, but client_state ('{plain_client_state_rcvd}') doesn't match expected flow for options. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state(f"{ended_event_type_root}_unexpected_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + + # --- Handling DTMF Input Result --- + elif event_type == 'call.gather.ended': + digits_received = payload.get('digits') + gather_status = payload.get('status') # e.g., 'completed_by_terminating_digit', 'timeout', 'call_hangup' + logger.info(f" Call Gather Ended: Digits='{digits_received}', Status='{gather_status}', Current Decoded State='{plain_client_state_rcvd}'") + + if plain_client_state_rcvd.startswith(f"{app_args.client_state_prefix}_waiting_dtmf"): + if digits_received == "0": + logger.info(" -> DTMF '0' received. Replaying main message.") + # Replay the original message. We need to fetch it again from custom headers. + # This assumes the call.gather.ended payload still contains the original custom_headers. + # If not, we might need to store the original TTS/Audio URL in the client_state. + # For simplicity, let's assume custom_headers are still available or we re-evaluate. + # A more robust way would be to store the main message type/content in the client_state + # when transitioning from main_media_played. + + # Let's try to get custom_headers from the current payload. + # Telnyx usually includes original call details in subsequent events. + custom_headers = payload.get('custom_headers', []) # This might not be reliable for original headers + + # A BETTER APPROACH: Store original media info in client_state or retrieve from DB + # For this example, we'll try to re-evaluate based on what might be in custom_headers + # of the *call.gather.ended* event, which is NOT guaranteed to be the original ones. + # This part needs careful testing or a strategy to pass original media info. + + # Simplified: Assume we need to re-fetch original custom headers if they are not in this payload. + # For now, let's just log and assume we'd need a mechanism to get original X-TTS-Payload/X-Audio-Url + logger.warning(" -> Replay logic needs access to original X-TTS-Payload/X-Audio-Url. This example will try to use current custom_headers if any, or a default.") + + original_audio_url = find_custom_header(custom_headers, 'X-Audio-Url') # May not be original + original_tts_payload = find_custom_header(custom_headers, 'X-TTS-Payload') # May not be original + + next_client_state = create_client_state("replaying_main_media", call_control_id, app_args.client_state_prefix) + action_taken = False + if app_args.enable_audio_playback and original_audio_url: + logger.info(f" -> Replaying audio: {original_audio_url}") + play_params = {"call_control_id": call_control_id, "client_state": next_client_state, "audio_url": original_audio_url} + send_telnyx_command("actions/playback_start", play_params, app_args.api_key) + action_taken = True + elif original_tts_payload: + logger.info(f" -> Replaying TTS: {original_tts_payload}") + speak_params = {"payload": original_tts_payload, "voice": app_args.default_tts_voice, "language": app_args.default_tts_language, "call_control_id": call_control_id, "client_state": next_client_state} + send_telnyx_command("actions/speak", speak_params, app_args.api_key) + action_taken = True + + if not action_taken: + logger.error(" -> Could not find original media to replay. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state("replay_fail_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + + elif digits_received == "#" or (gather_status == 'completed_by_terminating_digit' and payload.get('terminating_digit') == '#'): + logger.info(" -> DTMF '#' received or terminating digit. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state("dtmf_pound_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + elif gather_status == 'timeout': + logger.info(" -> DTMF gather timed out. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state("dtmf_timeout_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + else: + logger.warning(f" -> Gather ended with unhandled digits '{digits_received}' or status '{gather_status}'. Hanging up.") + hangup_params = {"call_control_id": call_control_id, "client_state": create_client_state("dtmf_unhandled_hup", call_control_id, app_args.client_state_prefix)} + send_telnyx_command("actions/hangup", hangup_params, app_args.api_key) + else: + logger.warning(f" -> Gather ended, but client_state ('{plain_client_state_rcvd}') doesn't match waiting_dtmf. Ignoring.") + + + elif event_type == 'call.hangup': + app_logger.info(f" Call Hangup Event: Cause='{payload.get('cause')}', SIPCause='{payload.get('sip_hangup_cause')}', Source='{payload.get('hangup_source')}'") + # Call is already over, no command to send. + + # Log other voice events not explicitly handled above for visibility + elif event_type not in ['call.initiated', 'call.answered', 'call.speak.ended', 'call.playback.ended', 'call.gather.ended', 'call.hangup', 'call.speak.started', 'call.playback.started']: + logger.info(f" Other Voice Event: Type='{event_type}'. Payload: {json.dumps(payload, indent=2)}") + + + # --- SMS Event Handling (Placeholder from your snippet) --- + elif record_type == 'message': + logger.info(f"Processing SMS event: {event_type}") + # Your existing SMS handling code would go here... + # For now, just acknowledge + logger.info(" -> SMS ACK (204)") + return Response(status=204) # Ensure SMS events are also ACKed + + else: + logger.warning(f"Unknown record type: {record_type}") + # Acknowledge to prevent retries from Telnyx + logger.info(" -> Unknown Record Type ACK (204)") + return Response(status=204) + + # If we reached here for a voice event and didn't send a command through send_telnyx_command, + # it means we are just acknowledging the event. + logger.info(" -> Voice Event Processed (no immediate command sent or command sent async). ACK (204) to Telnyx.") + return Response(status=204) # ALWAYS ACK THE WEBHOOK + + except Exception as e: + logger.exception(f"Error in handle_telnyx_webhook: {e}") + # Still try to ACK Telnyx if possible, but log the error. + # Depending on the error, Telnyx might retry if it doesn't get a 2xx. + return "Internal Server Error", 500 + +#==================================== ADD FUNCTIONS BEFORE ============================================ + +# Main API class +class WellApi: + def on_get_healthz(self, req, resp): + """Health check endpoint""" + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_TEXT + resp.text = "OK" + + def on_get(self, req, resp, path=""): + """Handle GET requests""" + logger.debug(f"GET request to path: {path}") + logger.debug(f"Sent variables: {req.params}") + logger.debug(f"All headers: {dict(req.headers)}") + if path == "" or path == "/": + # Serve the main portal page + blob_data = read_file("well_portal.html") + if blob_data: + resp.content_type = "text/html" + resp.text = blob_data + else: + # Fall back to JSON response if file not found + resp.media = {"message": "Hello from OpenFaaS Serverless Web Server!", "method": "GET"} + return + elif path == "favicon.ico": + favicon_path = "favicon.ico" + if os.path.isfile(favicon_path): + resp.content_type = 'image/x-icon' + resp.data = read_file(favicon_path, type_="BIN") + resp.status = HTTP_200 + else: + resp.status = HTTP_404 + return + elif path == "health": + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"status": "healthy"}) + return + + # Authentication and authorization + token = req.params.get('token') + user_name = req.params.get('user_name') + ps = req.params.get('ps') + + if ps != "" and ps != None: + #was token sent in ps field? This allows for token and ps be populated by token or ps + user_info = verify_token(ps) + if user_info["username"] == user_name: + token = ps + else: + #is this valid password? + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + resp.media = package_response("Log-Out", HTTP_401) + return + else: + token = generate_token(user_name) + + + + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + privileges = GetPriviledgesOnly(user_name) + + if (token and user_name) or (token and user_name): + user_info = verify_token(token) + if user_info is None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + + if get_function_name == "deployment_add": + user_id = req.params.get('user_id') + blob_data = read_file("edit_deployment.html") + caretaker = {'deployment_id': 0, 'beneficiary_id': user_id, 'caretaker_id': user_id, 'owner_id': user_id, 'installer_id': user_id, 'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "devices_list": + st = time.time() + user_name = req.params.get('user_name') + privileges = GetPriviledgesOnly(user_name) + first_s = req.params.get('first') + last_s = req.params.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + blob_data = read_file("my_devices.html") + + devices = GetVisibleDevices(privileges) + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDevicesTable(blob_data, devices, users) + blob_data = UpdateDeploymentsSelector(blob_data, users) + resp.content_type = "text/html" + resp.text = blob_data + #print(blob_data) + return + + elif get_function_name == "deployment_edit": + deployment_id = req.params.get('deployment_id') + blob_data = read_file("edit_deployment.html") + + deployment = DeploymentDetails(deployment_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, deployment, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "caretaker_add": + + blob_data = read_file("edit_caretaker.html") + caretaker = {'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "caretaker_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_caretaker.html") + + caretaker = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "device_add": + + blob_data = read_file("edit_device.html") + device = {'device_id': 0, 'device_mac': '', 'well_id': '', 'description': '', 'location': '', 'close_to': '', 'radar_threshold': '["s3_max",12]', 'temperature_calib': '0.0,1.0,0.0', 'humidity_calib': '0.0,1.0,0.0'} + blob_data = FillFields(blob_data, device, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "device_edit": + mac = req.params.get('mac') + + blob_data = read_file("edit_device.html") + + device_det = DeviceDetails(mac) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, device_det, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + + elif get_function_name == "beneficiary_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_beneficiary.html") + + beneficiary = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "beneficiary_add": + + blob_data = read_file("edit_beneficiary.html") + beneficiary = {'user_id': 0, 'role_ids': '1', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "get_image_file": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + group_by = req.params.get("group_by") + timee = StringToEpoch(ddate, time_zone_s) + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + map_type = int(req.params.get("map_type")) + + bw = req.params.get("bw") == "true" + unique_identifier = req.params.get("unique_identifier") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{group_by}_{radar_part}_{map_type}_{bw}_dayly_image.png" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate: + st = time.time() + vocs_scaled = {} + devices_list = GetProximityList(deployment_id, timee) + stored, vocs_scaled = CreateMapFast(filename, devices_list, ddate, bw, time_zone_s, radar_part, group_by) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + if stored != True: + AddToLog("Map not created") + #logger.warning("Map not created") + resp.media = package_response("Map not created", HTTP_401) + return + else: + AddToLog("Map created") + #lets send over MQTT vocs_scaled + json_data = numpy_to_json(vocs_scaled, devices_list) + MQSendL("/"+unique_identifier, json_data) + #print(time.time() - st) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + sys.stdout.flush() + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_full_location_map": + + raw = req.params.get("raw") == "true" + + if raw: + #function=request_deployment_map_new + #token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6InJvYnN0ZXIiLCJleHAiOjE3MzgxNzYzNTZ9.5wzC2dVQhKlMygHPZfombTINbltNq8vxdilLIugNTtA& + #user_name=robster& + #date=2025-01-27& + #deployment_id=21& + #map_type=2 + chart_type = 8 + else: + chart_type = int(req.params.get("map_type")) + + #image represents day in local time + logger.debug("get_full_location_map") + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + + to_date = ddate + + try: + to_date = req.params.get("to_date") + to_date = to_date.replace("_","-") + except: + pass + + if to_date != ddate: + chart_type = int(req.params.get("map_type")) + + force_recreate = req.params.get("re_create") == "true" + force_recreate_orig = force_recreate + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + + filter_minutes = int(req.params.get("filter")) + + if "flavor" in req.params: #this is to be used only when creating + flavor = int(req.params.get("flavor")) + else: + flavor = 0 + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + if chart_type == 5 or chart_type == 7: + #now_date = req.params.get("now_date") + #now_date = now_date.replace("_","-") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + else: + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + #file_exists1, time_modified_utc1 = check_file_exists(filename+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - time_modified_local + #if time_passed.seconds > 300: #recreate if older than 5 minutes + # force_recreate = True + + else: + force_recreate = True + + if force_recreate: + ddate = ddate.replace("_","-") + #filter_minutes = 5 + #filename = os.path.join(scriptDir+"/daily_maps/"+deployment, proximity_string+"_"+deployment+"_"+ddate+"_dayly_image.png") + + filename = filename.replace('\\','/') + if chart_type == 4: #"collapsed": + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + elif chart_type == 5: #"history": + GeneratePresenceHistory(filename, force_recreate, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 7: #"history full chart": + filename = GeneratePresenceHistoryChart(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 8: #"set for mobile" + GenerateFullLocationMapLabelsOut(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + else: + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_presence_map": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + force_recreate = req.params.get("re_create") == "true" + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + chart_type = int(req.params.get("map_type")) + filter_minutes = int(req.params.get("filter")) + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + ddate = ddate.replace("_","-") + days = 7 + + filename = filename.replace('\\','/') + if chart_type == 6: #"AI Locations": + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreatePresenceMap(filename, devices_list, ddate, 1, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + + return + elif get_function_name == "download": + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + date_from = req.params.get("date_from") + date_to = req.params.get("date_to") + date_from = date_from.replace("_","-") + date_to = date_to.replace("_","-") + consolidated_by = req.params.get("consolidated_by") + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + zip_filename = f"/{deployment_id}/{deployment_id}_{date_from}_{date_to}_{consolidated_by}_data.zip" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(zip_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(zip_filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + dates = DatesSpan(date_from, date_to) + to_zip = [] + for ddate in dates: + force_recreate_csv = force_recreate + csv_dayly_filename = f"/{deployment_id}/{deployment_id}_{ddate}_{consolidated_by}_data.csv" + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + if not force_recreate_csv: + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + file_exists, time_modified_utc = check_file_exists(csv_dayly_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(csv_dayly_filename) + if time_modified_date <= file_date: + force_recreate_csv = True + else: + force_recreate_csv = True + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate_csv: + st = time.time() + vocs_scaled = {} + + devices_list = GetProximityList(deployment_id, timee) + temp_offset = -16 + file_stored = CreateDailyCSV(csv_dayly_filename, devices_list, ddate, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + to_zip.append(file_stored) + else: + to_zip.append(csv_dayly_filename) + + if to_zip: + success = zip_blobs( + blob_paths=to_zip, + zip_blob_name=zip_filename, + bucket_name="data-downloads", + minio_client=miniIO_blob_client + ) + + if success: + print("Files successfully zipped") + else: + print("Error occurred while zipping files") + + #pack CSV files from BLOB into ZIP + #lets read and send image from blob + zip_bytes, content_type = GetBlob(zip_filename, bucket_name="data-downloads") + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if zip_bytes is None: + raise falcon.HTTPNotFound( + title='File not found', + description=f'File {zip_filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = zip_bytes + resp.status = falcon.HTTP_200 + return + resp.media = package_response("Use POST method for this endpoint", HTTP_400) + + # Default response for unmatched paths + #resp.media = package_response(f"Path: /{path}", HTTP_200) + + def on_post(self, req, resp, path=""): + #ToDo make sure that any read/write data functions are authorized for this user_name + global threshold_cache, device_lookup_cache + + """Handle POST requests""" + logger.debug(f"on_post called with path: {path}") + logger.debug(f"Request method: {req.method}") + logger.debug(f"Request path: {req.path}") + logger.debug(f"Request query string: {req.query_string}") + logger.debug(f"Request headers: {req.headers}") + logger.debug(f"Request content type: {req.content_type}") + + + # First, check if this is a Telnyx webhook request + is_telnyx_webhook = ( + req.content_type and 'application/json' in req.content_type and + req.headers.get('USER-AGENT') == 'telnyx-webhooks' + ) + + if is_telnyx_webhook: + logger.info("Processing Telnyx webhook request") + try: + # Read the raw request body + raw_body = req.stream.read().decode('utf-8') + logger.debug(f"Raw webhook request body: {raw_body}") + + if not raw_body: + logger.error("Empty request body received from Telnyx") + resp.status = falcon.HTTP_400 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Empty request body"}) + return + + # Parse JSON + webhook_data = json.loads(raw_body) + logger.debug(f"Parsed webhook data: {json.dumps(webhook_data)}") + + # Get remote address and request ID + remote_addr = req.headers.get('X-REAL-IP') or req.headers.get('X-FORWARDED-FOR') or 'unknown' + request_id = req.headers.get("X-Request-Id") or req.headers.get("Telnyx-Request-Id") or req.headers.get("X-CALL-ID") or "N/A" + + # Process the webhook + handle_telnyx_webhook(webhook_data, remote_addr, request_id) + + # Set response status - always acknowledge webhooks with 204 No Content + resp.status = falcon.HTTP_204 + return + + except json.JSONDecodeError as e: + logger.error(f"Failed to decode JSON from webhook request body: {e}") + resp.status = falcon.HTTP_400 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Invalid JSON payload"}) + return + except Exception as e: + logger.exception(f"Error processing webhook: {e}") + resp.status = falcon.HTTP_500 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Internal Server Error"}) + return + + # If we get here, it's not a Telnyx webhook, so process as normal + try: + # For non-webhook requests, get form data + form_data = get_form_data(req) + logger.debug(f"Form data: {form_data}") + + except Exception as e: + logger.exception(f"Error in on_post: {e}") + resp.status = falcon.HTTP_500 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Internal Server Error"}) + + # Get form data using our helper function - but don't read stream again + #form_data = get_form_data(req) + logger.debug(f"Form data: {form_data}") + + + try: + + # Get basic parameters + function = form_data.get('function') + user_name = form_data.get('user_name') + logger.debug(f"Function: {function}, User: {user_name}") + + if function != "credentials": + token = form_data.get('token') + ps = form_data.get('ps') + + if ps != "" and ps != None: + #was token sent in ps field? This allows for token and ps be populated by token or ps + user_info = verify_token(ps) + if user_info != None: + if user_info["username"] == user_name: + token = ps + else: + #is this valid password? + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + resp.media = package_response("Log-Out", HTTP_401) + return + else: + token = generate_token(user_name) + + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + + #with get_db_connection() as db_conn: + privileges = GetPriviledgesOnly(user_name) + + # Handle credentials function - most common case + if function == "credentials": + + clientId = form_data.get('clientId') + nonce = form_data.get('nonce') + ps = form_data.get('ps') + + if not user_name: + resp.media = package_response("Required field 'user_name' is missing", HTTP_400) + return + + if not clientId: + resp.media = package_response("Required field 'clientId' is missing", HTTP_400) + return + + if not nonce: + resp.media = package_response("Required field 'nonce' is missing", HTTP_400) + return + + if not ps: + resp.media = package_response("Required field 'ps' is missing", HTTP_400) + return + + + + if False: + pass + else: + #lets check for real + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + access_token = 0 + privileges = 0 + else: + access_token = generate_token(user_name) + + if privileges == "-1": + max_role = -1 + else: + max_role = GetMaxRole(user_name) + if "2" in max_role: + max_role = 2 + else: + max_role = 1 + + token_payload = {'access_token': access_token, 'privileges': privileges, 'user_id': user_id, 'max_role': max_role} + resp.media = package_response(token_payload) + resp.status = falcon.HTTP_200 + return + + # Handle token-protected functions + elif function == "messages_age": + + macs = form_data.get('macs') + + with get_db_connection() as conn: + + #print (sqlr) + with conn.cursor() as cur: + + devices = MACsStrToDevIds(cur, macs) + + devices_string = ",".join(f"{device_id}" for mac, device_id in devices) + + + sqlr = f""" + SELECT + device_id, + GREATEST( + radar_last_time, + sensor_last_time + ) AS latest_time + FROM + (SELECT unnest(ARRAY[{devices_string}]) AS device_id) d + LEFT JOIN LATERAL ( + SELECT time AS radar_last_time + FROM radar_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) r ON true + LEFT JOIN LATERAL ( + SELECT time AS sensor_last_time + FROM sensor_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) s ON true;""" + logger.debug(f"sqlr= {sqlr}") + cur.execute(sqlr) + times_list = cur.fetchall() + result = {} + for i in range(len(times_list)): + if times_list[i][1] is not None: + result[devices[i][0]] = times_list[i][1].timestamp() + else: + result[devices[i][0]] = 0 + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + elif function == "voice_ask": + + question = form_data.get('question') + deployment_id = form_data.get('deployment_id') + + if ('language_from' in form_data): + language_from = form_data.get('language_from').strip() + else: + language_from = "English" + + if ('language_to' in form_data): + language_to = form_data.get('language_to').strip() + else: + language_to = "English" + + + result, language = AskGPT(question, language_from, language_to) + + if result[0] == "#": + result = RunCommand(result, {}, deployment_id) + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['name'] = "" + dataa['reflected'] = "" + dataa['language'] = language + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + + elif function == "calibrate_thresholds": + #this will use current date to calibrate radar presence thresholds. + #make sure that data is well defined (has clear absence/presence signature) for all rooms for chosen day + #Format of radar_threshold field = [gates_to_use_Presence_list, p_threshold] + #We need to automate this functionality!!! + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = form_data.get("date") + ddate = ddate.replace("_","-") + selected_date = ddate + + + + stdev_range = int(form_data.get("stdev_range")) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, timee) + + selected_date = FindCalibrationDate(device_ids, ddate) + + devices_c = len(devices_list[0]) + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s, stdev_range) + fields = ["radar_s_min", "radar_s_max", "radar_m_max", "radar_stdev"] + cnt = 0 + ids_list = [] + for details in devices_list: + ids_list.append(details[1]) + devices_list_str = ",".join(map(str, ids_list)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + minutes = 1440 + + with get_db_connection() as conn: + with conn.cursor() as cur: + for device_index in range(devices_c): + well_id = devices_list[device_index][0] + device_id = devices_list[device_index][1] + location = devices_list[device_index][2] + + sql = get_device_radar_s28_only_query(time_from_str, time_to_str, device_id) + print(sql) + + #sql1 = get_deployment_radar_only_colapsed_query(str(device_id), time_from_str, time_to_str, [device_id]) + #print(sql1) + st = time.time() + cur.execute(sql) + my_data = cur.fetchall() + + timestamps, stationary, motion = process_raw_data(my_data) + print(type(stationary)) + # Find threshold above which 20% of points lie + AveragePercentSpendsThere = AveragePercentPerLocation[Consolidataed_locations[location]] + threshold_high, threshold_low = FindThreshold(stationary, AveragePercentSpendsThere) + file_save = f"threshold_graph_{location}.png" + title = f"{well_id}_{location}" + + threshold2, x_percent, y_percent = ShowThresholdGraph(stationary, file_save, threshold_low, threshold_high, title, AveragePercentSpendsThere, location) + + print(f"Maximum curvature point found at:") + print(f"Threshold value: {threshold2:.3f}") + print(f"X: {x_percent:.1f}% of range") + print(f"Y: {y_percent:.1f}% of points above") + + ShowArray(stationary, threshold2, filename=f"stationary_{devices_list[device_index][0]}.png", title=f"stationary_{devices_list[device_index][0]}_{devices_list[device_index][2]}", style='line') + + + ##threshold + ##presence_mask, baseline, threshold = detect_presence(timestamps, stationary, motion) + + ### Save visualization to file + ##visualize_detection(timestamps, stationary, motion, presence_mask, + ## baseline, threshold) + + #cur.execute(sql1) + #my_data1 = cur.fetchall()#cur.fetchone() + #print(time.time() - st) + #if my_data == None or my_data1 == None: + #logger.warning(f"No data found for device_id {device_id}") + #else: + #print(type(my_data)) + ##minute, + ##device_id, + ##s_min as radar_s_min, + ##s_max as radar_s_max, + ##m_max as radar_m_max + + #values = [tup[1] for tup in my_data] #10 sec (RAW) data + + #hist, bins = np.histogram(values, bins=1000, range=(0, 100)) + #TR, BR = FindZeroIntersection(hist, bins, f'raw_{device_id}_histogram.png', device_id) + #if True:#device_id == 560: + #plot(values, filename=f"radar_{device_id}_s28.png", title=f"Radar s28 {device_id}", style='line') + #plot(hist, filename=f"radar_{device_id}_s28_hist.png", title=f"Radar s28 {device_id} histogram", style='line') + + ##life = [tup[3] - tup[2] + tup[4] for tup in my_data1] + #life, average = calculate_life_and_average(my_data1, stdev_range) #5 min data + #lhist, lbins = np.histogram(life, bins=1000) + #TLIFE, BLIFE = FindZeroIntersection(lhist, lbins, f'life_{device_id}_histogram.png', device_id) + + #StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE) + ##for now not needed... + ##ahist, abins = np.histogram(average, bins=1000) + ##dummy1, dummy = FindZeroIntersection(ahist, abins) + #if True:#device_id == 560: + #plot(average, filename=f"average_{device_id}.png", title=f"Average {device_id}", style='line') + #plot(life, filename=f"life_{device_id}.png", title=f"Life {device_id}", style='line') + #plot(lhist, filename=f"life_{device_id}_hist.png", title=f"life {device_id} histogram", style='line') + ##plot(ahist, filename=f"average_{device_id}_hist.png", title=f"average {device_id} histogram", style='line') + + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + my_data = [] + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + fields_n = len(fields) + stripes = devices_c * fields_n #radar_min and radar_max + print(my_data) + base_minute = ConvertToBase(time_from_str, time_zone_s) + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + #remember: base_minute is offset (smaller) by numbr of minutes in stdev_range + st = time.time() + wave_m = np.zeros((stripes, 1440+2*stdev_range, 1), dtype=np.float32) + + for record in my_data: + #(minute,device_id,s28_min,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the min/max values + x = int((minute - base_minute).total_seconds()/60) + + device_idx = device_to_index[device_id] + #value[0] are mins, value[1] are maxes + #when trying to illustrate presence, use s28_max, when absence (night leaving bed) use s28s_min + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + wave_m[y, x] = value + + print(time.time()-st) + + #we need to reliably determine presence and LIFE (motion) in every 5 minutes of data... + #presence is determined by average value being significntly different from last known base + #last known base is determined by average value during extended periods ( >= H hours) of low stdev (<) while it is determined that: + #person is moving elsewhere, and only 1 person is determined to be in monitored area. + + #lets calculate stdevs + for device_index in range(devices_c): + y = device_index * fields_n + row = wave_m[y] + stdevs = np.zeros((1440+2*stdev_range, 1), dtype=np.float32) + stdevs, amplitude = CalcStdevs(row, stdev_range, stdevs) + wave_m[y+3] = stdevs + plot(stdevs, filename=f"radar{device_index}_stdevs.png", title=f"Radar Stedevs {device_index}", style='line') + + minutes = 1440 + + + device_index = 0 + y = 0 + for device in devices_list: + wave = wave_m[y][stdev_range: stdev_range + minutes] + plot(wave, + filename="radar_wave_min.png", + title="Radar Signal Min", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_min.png", + title="Radar Signal Histogram Min (1000 bins)", + style='line') + + wave = wave_m[y+1] + plot(wave, + filename="radar_wave_max.png", + title="Radar Signal", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_max.png", + title="Radar Signal Histogram Max(1000 bins)", + style='line') + + print(wave) + device_to_index += 1 + + #lets see this map + stretch_by = 5 + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + st = time.time() + for yy in range(stripes): + rgb_row = [] + row = wave_m[yy] + for x in range(minutes): + value = 1280 * row[x] / 100 + rgb_row.append(BestColor(value)) + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + filename = f"{deployment_id}/{deployment_id}_{ddate}_min_max_radar.png" + SaveImageInBlob(filename, arr_stretched, []) + + + return + elif function == "get_time_deltas": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + sensor = form_data.get('sensor') + selected_date = form_data.get('date') + date_to = form_data.get('to_date') + radar_part = "" + sensor_data = {} + if date_to == None: + date_to = selected_date + + start_date = datetime.datetime.strptime(selected_date, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + selected_date, date_to = date_to, selected_date + + device_id = form_data.get('device_id') + + data_type = form_data.get('data_type') + epoch_from_utc, _ = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + _, epoch_to_utc = GetLocalTimeEpochsForDate(date_to, time_zone_s) #>= #< + + + all_slices = {} + + cleaned_values = {} + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + st = time.time() + cleaned_values = [ + (line_part[i][0], (line_part[i][0] - line_part[i-1][0]).total_seconds() * 1000) + for i in range(1, len(line_part)) + ] + print(time.time()-st) + + if True: + # Create CSV content as a string + csv_content = "Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds\n" + + for i in range(len(line_part)): + timestamp, value = line_part[i] + + if i == 0: + # First record has no previous record to compare + time_diff_seconds = 0 + time_diff_ms = 0 + else: + # Calculate time difference from previous record + prev_timestamp = line_part[i-1][0] + time_diff = timestamp - prev_timestamp + time_diff_seconds = time_diff.total_seconds() + time_diff_ms = time_diff_seconds * 1000 + + # Format the row + row = f"{i},{timestamp.isoformat()},{value},{round(time_diff_seconds, 6)},{round(time_diff_ms, 3)}\n" + csv_content += row + + # Write to file + with open(f'time_differences_{sensor}_{device_id}.csv', 'w', encoding='utf-8') as f: + f.write(csv_content) + + print(f"CSV file 'time_differences_{sensor}_{device_id}.csv' created successfully!") + + line_part_t = [(x[0].timestamp(), x[1]) for x in cleaned_values] + + sensor_data[sensor] = line_part_t + dataa = {} + all_slices = {} + all_slices[device_id] = sensor_data + dataa['Function'] = "time_deltas" + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['device_id'] = device_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + + elif function == "get_sensor_deltas": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + sensor = form_data.get('sensor') + selected_date = form_data.get('date') + date_to = form_data.get('to_date') + radar_part = "" + sensor_data = {} + if date_to == None: + date_to = selected_date + + start_date = datetime.datetime.strptime(selected_date, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + selected_date, date_to = date_to, selected_date + + device_id = form_data.get('device_id') + + data_type = form_data.get('data_type') + epoch_from_utc, _ = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + _, epoch_to_utc = GetLocalTimeEpochsForDate(date_to, time_zone_s) #>= #< + + + all_slices = {} + + cleaned_values = {} + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + st = time.time() + cleaned_values = [ + (line_part[i][0], (line_part[i][1] - line_part[i-1][1]) / (line_part[i][0] - line_part[i-1][0]).total_seconds()) + for i in range(1, len(line_part)) + if (line_part[i][0] - line_part[i-1][0]).total_seconds() > 0 + and abs((line_part[i][1] - line_part[i-1][1]) / (line_part[i][0] - line_part[i-1][0]).total_seconds()) <= 100 + ] + print(time.time()-st) + + if False: + # Create CSV content as a string + csv_content = "Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds\n" + + for i in range(len(line_part)): + timestamp, value = line_part[i] + + if i == 0: + # First record has no previous record to compare + time_diff_seconds = 0 + time_diff_ms = 0 + else: + # Calculate time difference from previous record + prev_timestamp = line_part[i-1][0] + time_diff = timestamp - prev_timestamp + time_diff_seconds = time_diff.total_seconds() + time_diff_ms = time_diff_seconds * 1000 + + # Format the row + row = f"{i},{timestamp.isoformat()},{value},{round(time_diff_seconds, 6)},{round(time_diff_ms, 3)}\n" + csv_content += row + + # Write to file + with open(f'time_differences_{sensor}_{device_id}.csv', 'w', encoding='utf-8') as f: + f.write(csv_content) + + print(f"CSV file 'time_differences_{sensor}_{device_id}.csv' created successfully!") + + line_part_t = [(x[0].timestamp(), x[1]) for x in cleaned_values] + + sensor_data[sensor] = line_part_t + dataa = {} + all_slices = {} + all_slices[device_id] = sensor_data + dataa['Function'] = "time_deltas" + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['device_id'] = device_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + + elif function == "request_single_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + date_to = form_data.get('to_date') + if date_to == None: + date_to = selected_date + + + start_date = datetime.datetime.strptime(selected_date, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + selected_date, date_to = date_to, selected_date + + devices_list = form_data.get('devices_list') + radar_details = {} + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_list_loc = [form_data.get('sensor_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + data_type = form_data.get('data_type') + epoch_from_utc, _ = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + _, epoch_to_utc = GetLocalTimeEpochsForDate(date_to, time_zone_s) #>= #< + + #we need to + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + + days = (epoch_to_utc - epoch_from_utc) / (60 * 1440) + + + + + + well_id = well_ids_list[0] + all_slices = {} + radar_part = "" + if len(device_details) > 4: + device_id2_mac = {device_details[1]: device_details[4]} + #epoch_to = '1730592010' #smal sample to test + #radar_part = form_data.get('radar_part') we need to find what radar part is configured in device settings + radar_part_all = device_details[5] + if len(radar_part_all) > 1: + radar_part = radar_part_all[0] + #we need only column name and not min or max here + if "_" in radar_part: + radar_parts = radar_part.split("_") + radar_part = radar_parts[0] + radar_details[device_details[1]] = radar_part_all + for device_id in device_ids_list: + + sensor_data = {} + for sensor in sensor_list_loc: + st = time.time() + if days < 3: + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + elif days < 14: + bucket_size = "1m" + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + else: + bucket_size = "10m" + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + + if False: + # Create CSV content as a string + csv_content = "Record_Index,Timestamp,Value,Time_Diff_Seconds,Time_Diff_Milliseconds\n" + + for i in range(len(line_part)): + timestamp, value = line_part[i] + + if i == 0: + # First record has no previous record to compare + time_diff_seconds = 0 + time_diff_ms = 0 + else: + # Calculate time difference from previous record + prev_timestamp = line_part[i-1][0] + time_diff = timestamp - prev_timestamp + time_diff_seconds = time_diff.total_seconds() + time_diff_ms = time_diff_seconds * 1000 + + # Format the row + row = f"{i},{timestamp.isoformat()},{value},{round(time_diff_seconds, 6)},{round(time_diff_ms, 3)}\n" + csv_content += row + + # Write to file + with open('time_differences.csv', 'w', encoding='utf-8') as f: + f.write(csv_content) + + print("CSV file 'time_differences.csv' created successfully!") + + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + + sensor_data[sensor] = cleaned_values + + + if len(device_details) > 4: + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + else: + all_slices[device_id] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['radar_details'] = radar_details + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + elif function == "get_sensor_bucketed_data_by_room_sensor": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) to get timezone + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list + # (tells what sensor data to be retrieved) + # "voc" for all smell use s4 (lower reading is higher smell, max=0 find min for 100%) + # "radar" returns s28 + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # location - room name (has to be unique) + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + location = form_data.get('location') + data_type = form_data.get('data_type') + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) + + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + units = "°C" + if "America" in time_zone_s: + units = "°F" + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", units], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + + current_time_la = datetime.datetime.now(pytz.timezone(time_zone_s)) + formatted_time = current_time_la.strftime('%Y-%m-%dT%H:%M:%S') #"2025-02-06T20:09:00" + + result_dictionary = { + "last_report_at": formatted_time, + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + # example data in each element of devices_list is (266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + for well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to in devices_list: + loc_and_desc = location_name + if description != None and description != "": + loc_and_desc = loc_and_desc + " " + description + + if loc_and_desc == location: + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + if sensor == "temperature": + if units == "°F":#"America" in time_zone_s: + compressed_readings = CelsiusToFahrenheitList(compressed_readings) + + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_sensor_data_by_deployment_id": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list (tells what sensor data to be retrieved) + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + data_type = form_data.get('data_type') + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + #timee = LocalDateToUTCEpoch(selected_date, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", "°C"], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + result_dictionary = { + "last_report_at": "2025-02-06T20:09:00", + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + + #compressed_readings = [(time.strftime("%H:%M", time.gmtime(lst[0][0])), float(sum(t for _, t in lst)/len(lst))) + #for _, lst in ((k, list(g)) + #for k, g in itertools.groupby(cleaned_values, key=lambda x: time.gmtime(x[0]).tm_hour))] + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, + 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + #is_neste, device_details = check_and_parse(devices_list) + #if not is_nested: + #device_ids_list = [device_details[1]] + #well_ids_list = [device_details[0]] + #else: + #device_ids_list = list(map(lambda x: x[1], device_details)) + #well_ids_list =list(map(lambda x: x[0], device_details)) + #well_id = well_ids_list[0] + #all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + #for device_id in device_ids_list: + #device_id2_mac + #sensor_data = {} + #for sensor in sensor_list_loc: + #st = time.time() + #line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + #window = sensor_legal_values[sensor][2] + #line_part_t = [] + #line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + #st = time.time() + #cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #sensor_data[sensor] = cleaned_values + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + #dataa = {} + #dataa['Function'] = "single_slicedata" + #dataa['devices_list'] = devices_list + #dataa['all_slices'] = all_slices + #dataa['time_zone_st'] = time_zone_s + #dataa['well_id'] = well_id + #resp.media = package_response(dataa) + #resp.status = falcon.HTTP_200 + result_dictionary2 = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "last_report_at": "ISO TIMESTAMP", + "chart_data": [ + { + "rooms": [ + { "name": "Bathroom", + "data": [ + {"title": "12AM","value": 20}, + {"title": "01AM","value": 20}, + {"title": "02AM","value": 26}, + {"title": "03AM","value": 16}, + {"title": "04AM","value": 27}, + {"title": "05AM","value": 23}, + {"title": "06AM","value": 26}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 18}, + {"title": "09AM","value": 21}, + {"title": "10AM","value": 28}, + {"title": "11AM","value": 24}, + {"title": "12PM","value": 18}, + {"title": "01PM","value": 27}, + {"title": "02PM","value": 27}, + {"title": "03PM","value": 19}, + {"title": "04PM","value": 0}, + {"title": "05PM","value": 0}, + {"title": "06PM","value": 0}, + {"title": "07PM","value": 0}, + {"title": "08PM","value": 0}, + {"title": "09PM","value": 0}, + {"title": "10PM","value": 0}, + {"title": "11PM","value": 0} + ] + }, + { "name": "Kitchen", + "data": [ + {"title": "00AM","value": 19}, + {"title": "01AM","value": 10}, + {"title": "02AM","value": 8}, + {"title": "03AM","value": 14}, + {"title": "04AM","value": 20}, + {"title": "05AM","value": 8}, + {"title": "06AM","value": 7}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 3}, + {"title": "09AM","value": 19}, + {"title": "10AM","value": 4}, + {"title": "11AM","value": 6}, + {"title": "12PM","value": 4}, + {"title": "01PM","value": 14}, + {"title": "02PM","value": 17}, + {"title": "03PM","value": 20}, + {"title": "04PM","value": 19}, + {"title": "05PM","value": 15}, + {"title": "06PM","value": 5}, + {"title": "07PM","value": 19}, + {"title": "08PM","value": 3}, + {"title": "09PM","value": 30}, + {"title": "10PM","value": 1}, + {"title": "11PM","value": 12 } + ] + }, + { "name": "Living Room", + "data": [ + {"title": "00AM","value": 25}, + {"title": "01AM","value": 24}, + {"title": "02AM","value": 19}, + {"title": "03AM","value": 20}, + {"title": "04AM","value": 22}, + {"title": "05AM","value": 20}, + {"title": "06AM","value": 11}, + {"title": "07AM","value": 5}, + {"title": "08AM","value": 16}, + {"title": "09AM","value": 22}, + {"title": "10AM","value": 23}, + {"title": "11AM","value": 14}, + {"title": "12PM","value": 0}, + {"title": "01PM","value": 7}, + {"title": "02PM","value": 25}, + {"title": "03PM","value": 29}, + {"title": "04PM","value": 23}, + {"title": "05PM","value": 27}, + {"title": "06PM","value": 27}, + {"title": "07PM","value": 20}, + {"title": "08PM","value": 2}, + {"title": "09PM","value": 24}, + {"title": "10PM","value": 21}, + {"title": "11PM","value": 14 } + ] + } + ] + } + ] + } + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + #AddToLog(payload) + #return + elif function == "request_device_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc = form_data.get('epoch_from') + epoch_to_utc = form_data.get('epoch_to') + device_id = form_data.get('device_id') + well_id = form_data.get('well_id') + MAC = form_data.get('MAC') + sensor_list_loc = form_data.get('sensors_list') + sensor_list = sensor_list_loc.split(",") + device_ids_list = [device_id] + well_ids_list = [well_id] + maps_dates, positions_list, timezone_s = GetDeploymentDatesBoth(deployment_id) + + data_type = "RL" + #epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + #device_id2_mac + sensor_data = {} + for sensor in sensor_list: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + cleaned_values = ScaleToCommon(cleaned_values_t, sensor) + sensor_data[sensor] = cleaned_values + all_slices[device_id] = sensor_data + + dataa = {} + dataa['Function'] = "device_slicedata" + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['proximity'] = positions_list + dataa['well_id'] = well_id + dataa['MAC'] = MAC + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "request_single_radar_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + ctrl_key_state = form_data.get('ctrl_key_state') + alt_key_state = form_data.get('alt_key_state') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_index_list = [form_data.get('sensor_index_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + device_id2_mac + sensor_data = {} + for sensor_index in sensor_index_list: + st = time.time() + sensor = ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7", "m8", "m08_max", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s28_max", "s28_min"][int(sensor_index)] + + line_part = ReadRadarDetail(device_id, sensor, epoch_from_utc, epoch_to_utc, alt_key_state) + window = sensor_legal_values["radar"][2] + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + if len(sensor) < 4: + sensor_data[sensor+"_max"] = cleaned_values + else: + sensor_data[sensor] = cleaned_values + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "get_deployment": + blob_data = read_file("deployment.html") + deployment_id = form_data.get('deployment_id') + #lets update "Deployments" select + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDeploymentsSelector(blob_data, users, False, deployment_id) + + resp.content_type = "text/html" + resp.text = blob_data + return + elif function == "get_deployment_j": + deployment_id = form_data.get('deployment_id') + time_zone_st = GetTimeZoneOfDeployment(deployment_id) + date = form_data.get('date') + if date == None: + + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + date = datetime.datetime.now(local_timezone).strftime('%Y-%m-%d') + + #epoch_from_utc = int(datetime.datetime.strptime(date, "%Y-%m-%d").timestamp()) + #devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + + dataa = {} + dataa['Function'] = "deployment_details" + if privileges == "-1": + deployment = DeploymentDetails(deployment_id) + dataa['deployment_details'] = deployment + else: + privileges = privileges.split(",") + if deployment_id in privileges: + deployment = DeploymentDetails(deployment_id) + dataa['deployment_details'] = deployment + + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + return + elif function == "set_floor_layout": + deployment_id = form_data.get('deployment_id') + layout = form_data.get('layout') + + if privileges == "-1" or deployment_id in privileges: + ok = StoreFloorPlan(deployment_id, layout) + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + else: + payload = {'ok': 0, 'error': "not allowed"} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + return + elif function == "get_floor_layout": + deployment_id = form_data.get('deployment_id') + + dataa = {} + dataa['Function'] = "deployment_details" + if privileges == "-1": + layout = GetFloorPlan(deployment_id) + dataa['layout'] = layout + else: + privileges = privileges.split(",") + if deployment_id in privileges: + layout = GetFloorPlan(deployment_id) + dataa['layout'] = layout + + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + return + elif function == "get_beneficiary": + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + beneficiaries_list = [] + for beneficiary_temp in all_beneficiaries: + beneficiaries_list.append(str(beneficiary_temp[0])) + + dataa = {} + dataa['Function'] = "beneficiary_details" + if user_id in beneficiaries_list: + beneficiary = UserDetails(user_id) + #lets remove fields not relevant for beneficiary + try: + del beneficiary['time_edit'] + except: + pass + + try: + del beneficiary['user_edit'] + except: + pass + + try: + del beneficiary['access_to_deployments'] + except: + pass + dataa['beneficiary_details'] = beneficiary + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + elif function == "get_caretaker": + + user_name = form_data.get('user_name') + + + all_caretakers = ListCaretakers(privileges, user_name) + if len(all_caretakers) > 1: + user_id = form_data.get('user_id') + else: + user_id = str(all_caretakers[0][0]) + + caretakers_list = [] + for caretakers_temp in all_caretakers: + caretakers_list.append(str(caretakers_temp[0])) + + dataa = {} + dataa['Function'] = "caretaker_details" + if user_id in caretakers_list: + caretaker = UserDetails(user_id) + #lets remove fields not relevant for beneficiary + try: + del caretaker['time_edit'] + except: + pass + + try: + del caretaker['user_edit'] + except: + pass + + dataa['caretaker_details'] = caretaker + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + + elif function == "get_device": + device_id = form_data.get('device_id') + devices = GetVisibleDevices(privileges) + dataa = {} + dataa['Function'] = "device_details" + dataa['device_details'] = [] + if privileges == "-1": + #device_det = GetDeviceDetails(device_id) + device_det = GetDeviceDetailsSingle(device_id) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + dataa['device_details'] = device_det + else: + devices_list = [] + for device_id_temp in devices: + devices_list.append(str(device_id_temp[0])) + + if device_id in devices_list: + device_det = GetDeviceDetailsSingle(device_id) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + + + dataa['device_details'] = device_det + + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + return + elif function == "request_deployment_map_new": + st = time.time() + print(f"$0 ----{time.time() - st}") + deployment_id = form_data.get('deployment_id') + map_type = form_data.get('map_type') + print(f"$1 ----{time.time() - st}") + maps_dates, positions_list, timezone_s = GetDeploymentDatesBoth(deployment_id) + print(f"$2 ----{time.time() - st}") + datee = form_data.get('date') + if maps_dates != []: + + if datee == "2022-4-2": #that one is default in HTML so disregard + datee = maps_dates[0] + + locations_desc_map = {} + for details in positions_list: + well_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location +" "+ details[3] + + if details[6] != None and details[6] != "": + location = location +" "+ details[6] + + MAC = details[4] + locations_desc_map[well_id] = location + print(f"$3 ----{time.time() - st}") + + dataa = {} + dataa['Function'] = "deployments_maps_report" + dataa['proximity'] = positions_list + maps_dates.sort(reverse = True) + dataa['maps_dates'] = maps_dates + dataa['device_count'] = len(positions_list) + dataa['time_zone'] = timezone_s + dataa['map_type'] = map_type + + #MACs_list = GetMACsListSimple(positions_list) + #MACs_map = {} + + #for details in positions_list: + # id = details[0] + # MAC = details[3] + # MACs_map[id] = MAC + #for i in range(len(MACs_list)): + # MACs_map[devices_list[i]] = MACs_list[i][0] + + id = positions_list[0][0] + #dataa['MACs_map'] = MACs_map + dataa['locations_desc_map'] = locations_desc_map + #proximity_list = proximity.split(",") + print(f"$4 ----{time.time() - st}") + + if id < 200: + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'C>\n' + checkmarks_string = checkmarks_string + 'V>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>
' + else: #>200 = ["Temperature", "Humidity", "Pressure", "Light", "Radar", "VOC"] + + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>\n' + + checkmarks_string = checkmarks_string + 'S0>\n' + checkmarks_string = checkmarks_string + 'S1>\n' + checkmarks_string = checkmarks_string + 'S2>\n' + checkmarks_string = checkmarks_string + 'S3>\n' + checkmarks_string = checkmarks_string + 'S4>\n' + checkmarks_string = checkmarks_string + 'S5>\n' + checkmarks_string = checkmarks_string + 'S6>\n' + checkmarks_string = checkmarks_string + 'S7>\n' + checkmarks_string = checkmarks_string + 'S8>\n' + checkmarks_string = checkmarks_string + 'S9>
' + + checked_or_not = " checked" + + for index in range(len(positions_list)): + details = positions_list[index] + device_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location + " " + details[3] + + if details[6] != None and details[6] != "": + location = location + " " + details[6] + + checkmarks_string = checkmarks_string + str(device_id) + '>\n' + checked_or_not = '' + + print(f"$5 ----{time.time() - st}") + + dataa['checkmarks'] = checkmarks_string + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "request_proximity": + deployment = form_data.get('deployment_id') + timee = form_data.get('time') + #timee = StringToEpoch(datee) + #print(deployment, timee) + well_ids, device_ids = GetProximityList(deployment, timee) + #print(proximity) + dataa = {} + dataa['Function'] = "proximity_report" + if len(well_ids) > 0: + dataa['proximity'] = well_ids + else: + dataa['proximity'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "request_devices": + deployment_id = form_data.get('deployment_id') + group_id = form_data.get('group_id') + location = form_data.get('location') + if location == "0": + location = "All" + is_fresh = form_data.get('is_fresh') + matching_devices = GetMatchingDevices(privileges, group_id, deployment_id, location) + dataa = {} + dataa['Function'] = "devices_report" + if len(matching_devices) > 0: + dataa['devices'] = matching_devices + else: + dataa['devices'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "get_deployment_details": + deployment_id = form_data.get('deployment_id') + group_id = form_data.get('group_id') + location = form_data.get('location') + if location == "0": + location = "All" + is_fresh = form_data.get('is_fresh') + matching_devices = GetMatchingDevicesComplete(privileges, group_id, deployment_id, location) + deployment = DeploymentDetails(deployment_id) + dataa = {} + dataa['Function'] = "devices_report" + if len(matching_devices) > 0: + dataa['devices'] = matching_devices + else: + dataa['devices'] = [] + + if len(deployment) > 0: + dataa['details'] = deployment + else: + dataa['details'] = {} + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "device_form": + editing_device_id = form_data.get('editing_device_id') + + ok = StoreDevice2DB(form_data, editing_device_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "device_delete": + + #check if admin! + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_raw_data": + #container = GetReference("/MAC") + #MAC = req_dict["MAC"][0] + #sensor = req_dict["sensor"][0] + #if "part" in req_dict: + #part = req_dict["part"][0] + #else: + #part = "" + #from_time = req_dict["from_time"][0] + #to_time = req_dict["to_time"][0] + #timezone_str = req_dict["tzone"][0] + #AddToLog("get_raw_data:" + str(MAC) +","+ str(sensor) + "," + str(from_time) + "," + str(to_time) + "," + part+ "," + timezone_str) + ##raw_data = GetRawSensorData(container, MAC, sensor, from_time, to_time, timezone_str) + #raw_data = []#GetRawSensorDataFromBlobStorage(MAC, sensor, part, from_time, to_time, timezone_str) + data_payload = {'raw_data': raw_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_presence_data": + + deployment_id = form_data.get('deployment_id') + device_id_in_s = form_data.get('device_id') + device_id_in = None + refresh = form_data.get('refresh') == "1" + + if privileges != "-1": + privileges_lst = privileges.split(",") + if deployment_id not in privileges_lst: + data_payload = {} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + filter = int(form_data.get('filter')) + ddate = form_data.get('date') + ddate = ddate.replace("_","-") + to_date = form_data.get('to_date') + + if to_date == None: + to_date = ddate + else: + to_date = to_date.replace("_","-") + + ddate, to_date = ensure_date_order(ddate, to_date) + + + date_obj = datetime.datetime.strptime(ddate, "%Y-%m-%d") + # Subtract one day + previous_day = date_obj - timedelta(days=1) + # Convert back to string + prev_date = previous_day.strftime("%Y-%m-%d") + + data_type = form_data.get('data_type') #all, raw, presence, z-graph + if data_type == None or data_type == "": + data_type = "presence" + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + if device_id_in_s != None: #lets remove other devices, since asking for one + device_id_in = int(device_id_in_s) + device_ids = [id for id in device_ids if id == device_id_in] + devices_list = [device for device in devices_list if device[1] == device_id_in] + + time_from_str, _ = GetLocalTimeForDate(ddate, time_zone_s) + _, time_to_str = GetLocalTimeForDate(to_date, time_zone_s) + + time_from = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + time_to = datetime.datetime.strptime(time_to_str, '%Y-%m-%d %H:%M:%S%z') + epoch_time = calendar.timegm(time_from.utctimetuple()) + + presence_map = {} + presence_map["time_start"] = epoch_time + presence_map["time_zone"] = time_zone_s + + # Calculate the difference in days + days_difference = (time_to - time_from).days + + if data_type == "all" or data_type == "z-graph" or data_type == "multiple": + + # Convert string to datetime object + date_obj = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + # Subtract one day + previous_day = date_obj - timedelta(days=1) + + # Format back to string in the same format + time_from_z_str = previous_day.strftime("%Y-%m-%d %H:%M:%S%z") + + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + print(well_id, radar_threshold_group) + device_id_2_location[device_id] = location_name + device_id_2_threshold[device_id] = radar_threshold_group + + + ids_list = [] + well_ids = [] + id2well_id = {} + radar_fields_of_interest = [] + device_field_indexes = {} + for details in devices_list: + + if device_id_in == None or details[1] == device_id_in: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3",12] + #threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + #since we are getting 10 sec dat, no more need for min or max... + radar_field = radar_field.split("_")[0] + if radar_field not in radar_fields_of_interest: + device_field_indexes[radar_field] = len(radar_fields_of_interest) + radar_fields_of_interest.append(radar_field) + + ids_list.append(details[1]) + id2well_id[details[1]] = details[0] + well_ids.append(details[0]) + presence_map["well_ids"] = well_ids + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + #sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + sql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + #zsql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + zsql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + print(zsql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = None + myz_data = None + + my_data = cur.fetchall() + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + cur.execute(zsql) + myz_data = cur.fetchall() + + if my_data != None: + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + + #presence_map['longpresence'] and temporary_map_day_plus are similar, except one is used for Z-graph, and another for multiple persons detection + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + presence_map['presence'] = {} + presence_map['longpresence'] = {} + + if data_type == "raw" or data_type == "all": + presence_map['raw'] = {} + + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "raw" or data_type == "all": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['raw'][well_id] = zeros_list + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['presence'][well_id] = zeros_list + + + #presence_map[][well_id] = zeros_list + cnt += 1 + row_nr_2_device_id[cnt] = well_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3",12] + + device_id_2_location[well_id] = location_name + device_id_2_threshold[well_id] = radar_threshold_group + + start_time_ = my_data[0][0] + parsed_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour - 7, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200)) + ) + + presence_map = optimized_radar_processing(my_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, presence_map, data_type) + + #last_device_id = 0 + #for radar_read in my_data: #(datetime.datetime(2025, 4, 28, 0, 0, tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200))), 559, 6.512857142857143, 6.91, 9.28) + #local_time = radar_read[0] + #deca = int((local_time - start_time).total_seconds() / 10) + #device_id = radar_read[1] + #if device_id != last_device_id: + #last_device_id = device_id + #if data_type == "raw" or data_type == "all": + #days_decas = len(presence_map['raw'][id2well_id[device_id]]) + #else: + #days_decas = len(presence_map['presence'][id2well_id[device_id]]) + #well_id = id2well_id[device_id] + #radar_threshold_group_st = device_id_2_threshold[well_id] + #threshold_sig, threshold = radar_threshold_group_st + #threshold_sig = threshold_sig.split("_")[0] + + #radar_val = radar_read[2+device_field_indexes[threshold_sig]] + #if data_type == "presence" or data_type == "z-graph" or data_type == "all" or data_type == "multiple": + #if radar_val > threshold: + #if deca < days_decas: + #presence_map['presence'][id2well_id[device_id]][deca] = 1 + + #if data_type == "raw" or data_type == "all": + #if deca < days_decas: + #presence_map['raw'][id2well_id[device_id]][deca] = radar_val + + + if myz_data != None: + temporary_map_day_plus = {} + presence_map['z_graph'] = {} + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * (days_difference + 1) #+1 is for previous day + + presence_map['z_graph'][well_id] = [] #just place holder + temporary_map_day_plus[well_id] = zeros_list + presence_map['longpresence'][well_id] = zeros_list #just place holder + + + parsed_time = datetime.datetime.strptime(time_from_z_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour - 7, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200)) + ) + + + #start_time_ = myz_data[0][0] + st = time.time() + device_lookup_cache = {} + threshold_cache = {} + temporary_map_day_plus = optimized_processing(myz_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, temporary_map_day_plus, data_type) + + if data_type == "all" or data_type == "z-graph" or data_type == "presence" or data_type == "multiple": + overlaps_str = GetOverlapps(deployment_id) + overlaps_lst = [] + if overlaps_str != None: + if ":" in overlaps_str: + overlaps_lst = json.loads(overlaps_str) + temporary_map_day_plus = ClearOverlaps(temporary_map_day_plus, overlaps_lst) + + if data_type == "all" or data_type == "z-graph" or data_type == "presence" or data_type == "multiple": + for device_id in ids_list: + device_id_str = str(device_id) + + if data_type == "presence" or data_type == "all": + if filter > 1: + #presence_list = filter_short_groups_numpy(presence_map["presence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + #cnt = 0 + #device_id_str = 524 Kitchen + #for item in presence_map["presence"][id2well_id[device_id]]: + # if item > 0: + # print(cnt, item) + # cnt += 1 + + #3302 = 1 should not be filtered + + inlist = presence_map["presence"][id2well_id[device_id]] + #presence_list = filter_short_groups_c_wc(presence_map["presence"][id2well_id[device_id]], filter, device_id_str, ddate, to_date, time_zone_s, refresh) + presence_list = filter_short_groups_c_wc(inlist, filter, device_id_str, ddate, to_date, time_zone_s, refresh) + + #cnt = 0 #here First non 0 is at 12006 That is wrong! + #for item in presence_list: + # if item > 0: + # print(cnt, item) + # cnt += 1 + #presence_listt = filter_short_groupss(presence_map["presence"][id2well_id[device_id]], filter) + #if presence_list != presence_listt: + # print("stop") + if data_type != "presence": + #longpresence_list = filter_short_groups_numpy(presence_map["longpresence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + longpresence_list = filter_short_groups_c_wc(presence_map["longpresence"][id2well_id[device_id]], filter, device_id_str, prev_date, to_date, time_zone_s) + presence_map["presence"][id2well_id[device_id]] = presence_list + if data_type != "presence": + presence_map["longpresence"][id2well_id[device_id]] = longpresence_list + + else: #straight decas + presence_list = presence_map["presence"][id2well_id[device_id]] + + if data_type != "presence": + longpresence_list = presence_map["longpresence"][id2well_id[device_id]] + + + if data_type == "z-graph": + if filter > 1: + longpresence_list = filter_short_groups_c_wc(presence_map["longpresence"][id2well_id[device_id]], filter, device_id_str, prev_date, to_date, time_zone_s, refresh) + presence_map["longpresence"][id2well_id[device_id]] = longpresence_list + + else: #straight decas + longpresence_list = presence_map["longpresence"][id2well_id[device_id]] + + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + if filter > 1: #straight decas + #presence_list1 = filter_short_high_groups_iterative_analog_orig(temporary_map_day_plus[id2well_id[device_id]], filter) + presence_list1 = filter_short_high_groups_iterative_analog(temporary_map_day_plus[id2well_id[device_id]], filter) + #if (presence_list1 == presence_list2): + # print("OK!") + #else: + # print("WRONG!") + else: + presence_list1 = temporary_map_day_plus[id2well_id[device_id]] + + temporary_map_day_plus[id2well_id[device_id]] = presence_list1 + + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + for device_id in ids_list: + #print(device_id_2_threshold[id2well_id[device_id]]) + presence_list = CreateZGraph(id2well_id[device_id], presence_map["longpresence"][id2well_id[device_id]]) #temporary_map_day_plus[id2well_id[device_id]]) + presence_map["z_graph"][id2well_id[device_id]] = presence_list + + + if data_type == "all" or data_type == "multiple": + #lets create "multiple" series + seen_at_lst, seen_where_list_uf = DetectMultiple(temporary_map_day_plus, overlaps_lst) + #here seen_at is straight decas + #seen_at = [1 if x >= 2 else 0 for x in seen_at] + pers_in_deka = [] + dekas_in_day = 6 * 1440 + for i in range(dekas_in_day, len(seen_where_list_uf)): + n_pers = seen_where_list_uf[i] + pers_in_deka.append(100*len(n_pers)) + + seen_at = filter_out_short_highs_iterative(seen_at_lst, filter) #this converts decas into compressed format! + seen_at_lst = Decompress(seen_at) + pers_in_deka = filter_out_short_same_groups_iterative(pers_in_deka, filter) + persons_decompressed = Decompress(pers_in_deka) + persons = Compress(persons_decompressed) + + multiple_list = CreateZGraph("multiple", seen_at_lst) + presence_map["multiple"] = multiple_list + presence_map["persons"] = persons + + if data_type == "z-graph": + if "raw" in presence_map: + del presence_map["raw"] + if "presence" in presence_map: + del presence_map["presence"] + if "longpresence" in presence_map: + del presence_map["longpresence"] + + if data_type == "multiple": + if "raw" in presence_map: + del presence_map["raw"] + if "presence" in presence_map: + del presence_map["presence"] + if "longpresence" in presence_map: + del presence_map["longpresence"] + if "z_graph" in presence_map: + del presence_map["z_graph"] + + if "presence" in presence_map: + presence_map["presence"] = CompressList(presence_map["presence"]) + + data_payload = presence_map + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_zgraph_data": + + deployment_id = form_data.get('deployment_id') + + if privileges != "-1": + privileges_lst = privileges.split(",") + if deployment_id not in privileges_lst: + data_payload = {} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + device_id = int(form_data.get('device_id')) + + devices = GetVisibleDevices(privileges) + + if not any(item[0] == device_id for item in devices): + data_payload = {} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + filter = int(form_data.get('filter')) + ddate = form_data.get('date') + ddate = ddate.replace("_","-") + to_date = form_data.get('to_date') + + if to_date == None: + to_date = ddate + else: + to_date = to_date.replace("_","-") + + ddate, to_date = ensure_date_order(ddate, to_date) + data_type = "z-graph" + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + time_from_str, _ = GetLocalTimeForDate(ddate, time_zone_s) + _, time_to_str = GetLocalTimeForDate(to_date, time_zone_s) + + time_from = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + time_to = datetime.datetime.strptime(time_to_str, '%Y-%m-%d %H:%M:%S%z') + epoch_time = calendar.timegm(time_from.utctimetuple()) + + presence_map = {} + presence_map["time_start"] = epoch_time + presence_map["time_zone"] = time_zone_s + + # Calculate the difference in days + days_difference = (time_to - time_from).days + + # Convert string to datetime object + date_obj = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + # Subtract one day + previous_day = date_obj - timedelta(days=1) + + # Format back to string in the same format + time_from_z_str = previous_day.strftime("%Y-%m-%d %H:%M:%S%z") + + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + print(well_id, radar_threshold_group) + + device_id_2_location[device_id] = location_name + device_id_2_threshold[device_id] = radar_threshold_group + + ids_list = [] + well_ids = [] + id2well_id = {} + radar_fields_of_interest = [] + device_field_indexes = {} + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3",12] + #threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + #since we are getting 10 sec dat, no more need for min or max... + radar_field = radar_field.split("_")[0] + if radar_field not in radar_fields_of_interest: + device_field_indexes[radar_field] = len(radar_fields_of_interest) + radar_fields_of_interest.append(radar_field) + + ids_list.append(details[1]) + id2well_id[details[1]] = details[0] + well_ids.append(details[0]) + presence_map["well_ids"] = well_ids + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + #sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + sql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + #zsql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + zsql = get_deployment_radar_10sec_snapped_query(devices_list_str, time_from_z_str, time_to_str, ids_list, radar_fields_of_interest) + print(zsql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = None + myz_data = None + + my_data = cur.fetchall() + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + cur.execute(zsql) + myz_data = cur.fetchall() + + if my_data != None: + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + + #presence_map['longpresence'] and temporary_map_day_plus are similar, except one is used for Z-graph, and another for multiple persons detection + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + presence_map['presence'] = {} + presence_map['longpresence'] = {} + + if data_type == "raw" or data_type == "all": + presence_map['raw'] = {} + + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "raw" or data_type == "all": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['raw'][well_id] = zeros_list + + if data_type == "presence" or data_type == "all" or data_type == "z-graph" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * days_difference + presence_map['presence'][well_id] = zeros_list + + + #presence_map[][well_id] = zeros_list + cnt += 1 + row_nr_2_device_id[cnt] = well_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3",12] + + device_id_2_location[well_id] = location_name + device_id_2_threshold[well_id] = radar_threshold_group + + start_time_ = my_data[0][0] + parsed_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour - 7, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200)) + ) + + presence_map = optimized_radar_processing(my_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, presence_map, data_type) + + #last_device_id = 0 + #for radar_read in my_data: #(datetime.datetime(2025, 4, 28, 0, 0, tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200))), 559, 6.512857142857143, 6.91, 9.28) + #local_time = radar_read[0] + #deca = int((local_time - start_time).total_seconds() / 10) + #device_id = radar_read[1] + #if device_id != last_device_id: + #last_device_id = device_id + #if data_type == "raw" or data_type == "all": + #days_decas = len(presence_map['raw'][id2well_id[device_id]]) + #else: + #days_decas = len(presence_map['presence'][id2well_id[device_id]]) + #well_id = id2well_id[device_id] + #radar_threshold_group_st = device_id_2_threshold[well_id] + #threshold_sig, threshold = radar_threshold_group_st + #threshold_sig = threshold_sig.split("_")[0] + + #radar_val = radar_read[2+device_field_indexes[threshold_sig]] + #if data_type == "presence" or data_type == "z-graph" or data_type == "all" or data_type == "multiple": + #if radar_val > threshold: + #if deca < days_decas: + #presence_map['presence'][id2well_id[device_id]][deca] = 1 + + #if data_type == "raw" or data_type == "all": + #if deca < days_decas: + #presence_map['raw'][id2well_id[device_id]][deca] = radar_val + + + if myz_data != None: + temporary_map_day_plus = {} + presence_map['z_graph'] = {} + for details in devices_list: + #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]','') + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + zeros_list = [0] * 6 * 1440 * (days_difference + 1) #+1 is for previous day + + presence_map['z_graph'][well_id] = [] #just place holder + temporary_map_day_plus[well_id] = zeros_list + presence_map['longpresence'][well_id] = zeros_list #just place holder + + + parsed_time = datetime.datetime.strptime(time_from_z_str, '%Y-%m-%d %H:%M:%S%z') + + start_time = datetime.datetime( + parsed_time.year, + parsed_time.month, + parsed_time.day, + parsed_time.hour - 7, # Adjust for UTC-7 + parsed_time.minute, + parsed_time.second, + tzinfo=datetime.timezone(datetime.timedelta(days=-1, seconds=61200)) + ) + + + #start_time_ = myz_data[0][0] + st = time.time() + device_lookup_cache = {} + threshold_cache = {} + temporary_map_day_plus = optimized_processing(myz_data, start_time, id2well_id, device_id_2_threshold, device_field_indexes, temporary_map_day_plus, data_type) + + if data_type == "all" or data_type == "z-graph" or data_type == "presence" or data_type == "multiple": + overlaps_str = GetOverlapps(deployment_id) + overlaps_lst = [] + if overlaps_str != None: + if ":" in overlaps_str: + overlaps_lst = json.loads(overlaps_str) + temporary_map_day_plus = ClearOverlaps(temporary_map_day_plus, overlaps_lst) + + if data_type == "all" or data_type == "z-graph" or data_type == "presence" or data_type == "multiple": + for device_id in ids_list: + device_id_str = str(device_id) + if data_type == "presence" or data_type == "all" or data_type == "z-graph": + if filter > 1: + #presence_list = filter_short_groups_numpy(presence_map["presence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + presence_list = filter_short_groups_c_wc(presence_map["presence"][id2well_id[device_id]], filter, device_id_str, ddate, to_date, time_zone_s) + #presence_listt = filter_short_groupss(presence_map["presence"][id2well_id[device_id]], filter) + #if presence_list != presence_listt: + # print("stop") + if data_type != "presence": + #longpresence_list = filter_short_groups_numpy(presence_map["longpresence"][id2well_id[device_id]], filter, device_id, ddate+"-"+to_date) + longpresence_list = filter_short_groups_c_wc(presence_map["longpresence"][id2well_id[device_id]], filter, device_id_str, prev_date, to_date, time_zone_s) + #longpresence_listt = filter_short_groupss(presence_map["longpresence"][id2well_id[device_id]], filter) + #if longpresence_list != longpresence_listt: + # print("stop") + # store_to_file(presence_map["longpresence"][id2well_id[device_id]], "test_list") + presence_map["presence"][id2well_id[device_id]] = presence_list + if data_type != "presence": + presence_map["longpresence"][id2well_id[device_id]] = longpresence_list + + else: #straight decas + presence_list = presence_map["presence"][id2well_id[device_id]] + + if data_type != "presence": + longpresence_list = presence_map["longpresence"][id2well_id[device_id]] + + + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + if filter > 1: #straight decas + presence_list1 = filter_short_high_groups_iterative_analog(temporary_map_day_plus[id2well_id[device_id]], filter) + else: + presence_list1 = temporary_map_day_plus[id2well_id[device_id]] + + temporary_map_day_plus[id2well_id[device_id]] = presence_list1 + + + if data_type == "z-graph" or data_type == "all" or data_type == "multiple": + for device_id in ids_list: + #print(device_id_2_threshold[id2well_id[device_id]]) + presence_list = CreateZGraph(id2well_id[device_id], presence_map["longpresence"][id2well_id[device_id]]) #temporary_map_day_plus[id2well_id[device_id]]) + presence_map["z_graph"][id2well_id[device_id]] = presence_list + + + if data_type == "all" or data_type == "multiple": + #lets create "multiple" series + seen_at_lst, seen_where_list_uf = DetectMultiple(temporary_map_day_plus, overlaps_lst) + #here seen_at is straight decas + #seen_at = [1 if x >= 2 else 0 for x in seen_at] + pers_in_deka = [] + dekas_in_day = 6 * 1440 + for i in range(dekas_in_day, len(seen_where_list_uf)): + n_pers = seen_where_list_uf[i] + pers_in_deka.append(100*len(n_pers)) + + seen_at = filter_out_short_highs_iterative(seen_at_lst, filter) #this converts decas into compressed format! + seen_at_lst = Decompress(seen_at) + pers_in_deka = filter_out_short_same_groups_iterative(pers_in_deka, filter) + persons_decompressed = Decompress(pers_in_deka) + persons = Compress(persons_decompressed) + + multiple_list = CreateZGraph("multiple", seen_at_lst) + presence_map["multiple"] = multiple_list + presence_map["persons"] = persons + + if data_type == "z-graph": + if "raw" in presence_map: + del presence_map["raw"] + if "presence" in presence_map: + del presence_map["presence"] + if "longpresence" in presence_map: + del presence_map["longpresence"] + + if data_type == "multiple": + if "raw" in presence_map: + del presence_map["raw"] + if "presence" in presence_map: + del presence_map["presence"] + if "longpresence" in presence_map: + del presence_map["longpresence"] + if "z_graph" in presence_map: + del presence_map["z_graph"] + + if "presence" in presence_map: + presence_map["presence"] = CompressList(presence_map["presence"]) + + data_payload = presence_map + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_candle_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + part = req_dict["part"][0] + tzone = req_dict["tzone"][0] + AddToLog(str(req_dict)) + candle_data = GetCandleSensorData(container, MAC, sensor, from_time, to_time, part, tzone) + data_payload = {'candle_data': candle_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployment_form": + editing_deployment_id = form_data.get('editing_deployment_id') + + ok = StoreDeployment2DB(form_data, editing_deployment_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "deployment_delete": + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployments_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + user_id = form_data.get('user_id') + first = 0 + last = 1000000 + + try: + if first_s != None: + first = int(first_s) + except ValueError: + pass + + try: + if last_s != None: + last = int(last_s) + except ValueError: + pass + + #user_id = form_data.get('user_id') + if user_id == "" or user_id == None: + #user_id = GetUserId(user_name) + privileges, user_id = GetPriviledgesAndUserId(user_name) + else: + privileges = GetPriviledgesOnly(user_name) + + all_deployments = ListDeployments(privileges, user_id) + + cnt = 0 + + for deployment in all_deployments: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"deployment_id": deployment['deployment_id'], "email": user_id_2_user[deployment['beneficiary_id']][3], "first_name": user_id_2_user[deployment['beneficiary_id']][5], "last_name": user_id_2_user[deployment['beneficiary_id']][6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "device_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + #user_id = form_data.get('user_id') + + devices = GetVisibleDevices(privileges) + + payload = {'result_list': devices} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "device_list_by_deployment": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + deployment_id = form_data.get('deployment_id') + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + + if privileges == "-1": + devices = GetVisibleDevices(deployment_id) + else: + privileges = privileges.split(",") + if deployment_id in privileges: + devices = GetVisibleDevices(deployment_id) + + payload = {'result_list': devices} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "device_list_4_gui": + result_list = [] + deploymentData = [] + deviceData = [] + macs_list = [] + user_id = GetUserId(user_name) + all_deployments = ListDeployments(privileges, user_id) + #{'deployment_id': 21, 'beneficiary_id': 25, 'caretaker_id': 1, 'owner_id': 1, 'installer_id': 1, 'address_street': '661 Encore Way', 'address_city': 'San Jose', 'address_zip': '95134', 'address_state': 'CA', 'address_country': 'USA', 'devices': '["64B70888FAB0","64B70888F860","64B70888F6F0","64B708896BDC","64B708897428","64B70888FA84","64B70889062C"]', 'wifis': '', 'persons': 1, 'gender': 1, 'race': 1, 'born': 1940, 'pets': 0, 'time_zone': 'America/Los_Angeles'} + MAC2Deployment = {} + + for deployment in all_deployments: + beneficiary_id = deployment['beneficiary_id'] + user = GetNameFromUserId(beneficiary_id) + name = f"{user[1]} {user[2]}" + deploymentData.append({'deployment_id': str(deployment['deployment_id']), 'name': name}) + devices = deployment['devices'] + if devices != None: + + devices_list = ToList(devices) + for device in devices_list: + macs_list.append(device) + MAC2Deployment[device] = deployment['deployment_id'] + #deviceData.append({'well_id': device[0], 'mac': device[1]}) + + deployment_id_list = [] + deviceData = [] + + #row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + + with get_db_connection() as conn: + with conn.cursor() as cur: + device_ids, device_list = MACsToWellIds(cur, macs_list) + + + for device in device_list: + if MAC2Deployment[device[4]] != "": + deviceData.append({'well_id': device[0], 'mac': device[4], 'room_name': device[2], 'deployment_id': MAC2Deployment[device[4]]}) + + #deploymentData = [{'deployment_id': '21', 'name': 'Robert Zmrzli House'}, {'deployment_id': '36', 'name': 'Fred Zmrzli Apartment'}] + #deviceData = [{ 'well_id': '300', 'mac': '64B70888F6F0', 'room_name': 'Living Room', 'deployment_id': '21' }, { 'well_id': '301', 'mac': '64B70888F6F1', 'room_name': 'Bathroom Main', 'deployment_id': '36' }] + + payload = { + 'status': "success", 'deploymentData': deploymentData, 'deviceData': deviceData + } + + logger.debug(f"device_list_4_gui------ {payload} ------------------------------------------") + + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretaker_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + user_id = form_data.get('user_id') + if "@" not in email: + resp.media = package_response("Missing or illegal 'email' parameter", HTTP_400) + return + + print(privileges) + if privileges == "-1": + ok = StoreCaretaker2DB(form_data, editing_user_id, user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif "-1" in privileges: + payload = {'ok': 0, 'error': "Not allowed!"} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + + elif function == "caretaker_delete": + if privileges == "-1": + ok = DeleteRecordFromDB(form_data) + else: + ok = 0 + AddToLog(ok) + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretakers_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + if privileges == "-1": + all_caretakers = ListCaretakers(privileges, user_name) + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + elif "-1" in privileges: + all_caretakers = ListCaretakers(privileges, user_name) + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + user_id = GetUserId(user_name) + if "@" in email: + ok, error_string = StoreBeneficiary2DB(form_data, editing_user_id, user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': error_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_delete": + + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiaries_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + + cnt = 0 + + for beneficiary in all_beneficiaries: + cnt += 1 + if cnt >= first: + beneficiary_min_object = {"user_id": beneficiary[0], "email": beneficiary[3], "first_name": beneficiary[5], "last_name": beneficiary[6]} + result_list.append(beneficiary_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "activities_report_details": + deployment_id = form_data.get('deployment_id') + result_dictionary = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "chart_data": [ + { + "name": "Weekly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + } + ] + }, + { + "name": "Monthly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "01", "events": 67, "hours": 45 }, + { "title": "02", "events": 97, "hours": 67 }, + { "title": "03", "events": 87, "hours": 23 }, + { "title": "04", "events": 42, "hours": 12 }, + { "title": "05", "events": 64, "hours": 48 }, + { "title": "06", "events": 53, "hours": 34 }, + { "title": "07", "events": 75, "hours": 23 }, + { "title": "08", "events": 45, "hours": 56 }, + { "title": "09", "events": 85, "hours": 47 }, + { "title": "10", "events": 34, "hours": 29 }, + { "title": "11", "events": 49, "hours": 30 }, + { "title": "12", "events": 62, "hours": 33 }, + { "title": "13", "events": 75, "hours": 44 }, + { "title": "14", "events": 88, "hours": 57 }, + { "title": "15", "events": 94, "hours": 65 }, + { "title": "16", "events": 45, "hours": 21 }, + { "title": "17", "events": 76, "hours": 54 }, + { "title": "18", "events": 85, "hours": 62 }, + { "title": "19", "events": 43, "hours": 28 }, + { "title": "20", "events": 59, "hours": 34 }, + { "title": "21", "events": 78, "hours": 56 }, + { "title": "22", "events": 64, "hours": 39 }, + { "title": "23", "events": 93, "hours": 72 }, + { "title": "24", "events": 52, "hours": 28 }, + { "title": "25", "events": 71, "hours": 48 }, + { "title": "26", "events": 85, "hours": 63 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "01", "events": 61, "hours": 42 }, + { "title": "02", "events": 72, "hours": 36 }, + { "title": "03", "events": 94, "hours": 49 }, + { "title": "04", "events": 67, "hours": 59 }, + { "title": "05", "events": 54, "hours": 20 }, + { "title": "06", "events": 77, "hours": 64 }, + { "title": "07", "events": 81, "hours": 70 }, + { "title": "08", "events": 53, "hours": 25 }, + { "title": "09", "events": 79, "hours": 42 }, + { "title": "10", "events": 84, "hours": 65 }, + { "title": "11", "events": 62, "hours": 54 }, + { "title": "12", "events": 45, "hours": 23 }, + { "title": "13", "events": 88, "hours": 71 }, + { "title": "14", "events": 74, "hours": 44 }, + { "title": "15", "events": 91, "hours": 59 }, + { "title": "16", "events": 46, "hours": 31 }, + { "title": "17", "events": 73, "hours": 40 }, + { "title": "18", "events": 85, "hours": 63 }, + { "title": "19", "events": 78, "hours": 66 }, + { "title": "20", "events": 66, "hours": 42 }, + { "title": "21", "events": 95, "hours": 78 }, + { "title": "22", "events": 57, "hours": 39 }, + { "title": "23", "events": 72, "hours": 48 }, + { "title": "24", "events": 48, "hours": 21 }, + { "title": "25", "events": 89, "hours": 61 }, + { "title": "26", "events": 77, "hours": 44 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "01", "events": 94, "hours": 59 }, + { "title": "02", "events": 62, "hours": 48 }, + { "title": "03", "events": 76, "hours": 38 }, + { "title": "04", "events": 81, "hours": 62 }, + { "title": "05", "events": 64, "hours": 27 }, + { "title": "06", "events": 53, "hours": 31 }, + { "title": "07", "events": 92, "hours": 65 }, + { "title": "08", "events": 85, "hours": 42 }, + { "title": "09", "events": 74, "hours": 35 }, + { "title": "10", "events": 67, "hours": 55 }, + { "title": "11", "events": 49, "hours": 23 }, + { "title": "12", "events": 88, "hours": 75 }, + { "title": "13", "events": 93, "hours": 66 }, + { "title": "14", "events": 76, "hours": 34 }, + { "title": "15", "events": 59, "hours": 39 }, + { "title": "16", "events": 72, "hours": 51 }, + { "title": "17", "events": 83, "hours": 44 }, + { "title": "18", "events": 74, "hours": 33 }, + { "title": "19", "events": 69, "hours": 28 }, + { "title": "20", "events": 85, "hours": 56 }, + { "title": "21", "events": 53, "hours": 22 }, + { "title": "22", "events": 92, "hours": 70 }, + { "title": "23", "events": 71, "hours": 41 }, + { "title": "24", "events": 67, "hours": 25 }, + { "title": "25", "events": 86, "hours": 74 }, + { "title": "26", "events": 94, "hours": 68 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "01", "events": 57, "hours": 27 }, + { "title": "02", "events": 74, "hours": 33 }, + { "title": "03", "events": 84, "hours": 53 }, + { "title": "04", "events": 95, "hours": 68 }, + { "title": "05", "events": 71, "hours": 48 }, + { "title": "06", "events": 92, "hours": 76 }, + { "title": "07", "events": 85, "hours": 62 }, + { "title": "08", "events": 49, "hours": 25 }, + { "title": "09", "events": 66, "hours": 38 }, + { "title": "10", "events": 63, "hours": 31 }, + { "title": "11", "events": 75, "hours": 47 }, + { "title": "12", "events": 94, "hours": 72 }, + { "title": "13", "events": 79, "hours": 49 }, + { "title": "14", "events": 72, "hours": 45 }, + { "title": "15", "events": 88, "hours": 61 }, + { "title": "16", "events": 83, "hours": 52 }, + { "title": "17", "events": 92, "hours": 76 }, + { "title": "18", "events": 73, "hours": 40 }, + { "title": "19", "events": 65, "hours": 28 }, + { "title": "20", "events": 76, "hours": 63 }, + { "title": "21", "events": 58, "hours": 30 }, + { "title": "22", "events": 84, "hours": 67 }, + { "title": "23", "events": 72, "hours": 41 }, + { "title": "24", "events": 79, "hours": 46 }, + { "title": "25", "events": 63, "hours": 29 }, + { "title": "26", "events": 68, "hours": 39 } + ] + } + ] + }, + { + "name": "6 Months", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "October", "events": 62, "hours": 23 }, + { "title": "November", "events": 76, "hours": 42 }, + { "title": "December", "events": 85, "hours": 54 }, + { "title": "January", "events": 94, "hours": 67 }, + { "title": "February", "events": 63, "hours": 35 }, + { "title": "March", "events": 81, "hours": 46 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "October", "events": 64, "hours": 35 }, + { "title": "November", "events": 88, "hours": 71 }, + { "title": "December", "events": 79, "hours": 54 }, + { "title": "January", "events": 72, "hours": 49 }, + { "title": "February", "events": 53, "hours": 32 }, + { "title": "March", "events": 93, "hours": 67 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "October", "events": 92, "hours": 65 }, + { "title": "November", "events": 85, "hours": 62 }, + { "title": "December", "events": 74, "hours": 49 }, + { "title": "January", "events": 63, "hours": 33 }, + { "title": "February", "events": 78, "hours": 56 }, + { "title": "March", "events": 69, "hours": 41 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "October", "events": 88, "hours": 54 }, + { "title": "November", "events": 72, "hours": 39 }, + { "title": "December", "events": 84, "hours": 63 }, + { "title": "January", "events": 76, "hours": 46 }, + { "title": "February", "events": 93, "hours": 72 }, + { "title": "March", "events": 68, "hours": 29 } + ] + } + ] + } + ] + } + + payload = result_dictionary #{'result_dictionary': result_dictionary} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_list": + # works in UTC only + + logger.error(f"------------------------------- dashboard_list ------------------------------------------") + + caretaker = user_name + #date_s = form_data.get('date') + time_s = form_data.get('time') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + privileges = GetPriviledgesOnly(caretaker) + + deployments_list = GetUsersFromDeployments(privileges) + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + for deployment_id, first_name, last_name in deployments_list: + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + if details != {}: + + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + # convert dates back to UTC + #details['bathroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['kitchen_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['bedroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bedroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['last_detected_time'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['last_detected_time'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + if description == None or description == "": + location_list.append(location_name) + else: + location_list.append(location_name + " " + description) + details["deployment_id"] = deployment_id + details["location_list"] = location_list + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_single": + caretaker = user_name + #date_s = form_data.get('date') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + deployment_id = form_data.get('deployment_id') + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr, False) + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + if description == None or description == "": + location_list.append(location_name) + else: + location_list.append(location_name + " " + description) + details["deployment_id"] = deployment_id + details["location_list"] = location_list + settings = {"wellness_score": False, "last_seen": False, "sleep_report": True, "activity_report": True, "temperature": True, "humidity": True, "air_pressure": True, "light": True, "air_quality": True, "radar": True, "other_activities": False} + details["settings"] = settings + + + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + elif function == "request_node_red": + logger.error(f"------------------------------- {function} ------------------------------------------") + #this will: + # 1.prepare folder and settings.js + # 2.start instance on node-red and return it's return port + #caretaker = user_name + #date_s = form_data.get('date') + time_s = datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + #deployment_id = form_data.get('deployment_id') + #redis_conn.set('node_red_requests', str([radar_threshold_signal, radar_threshold_value])) + # Hashes (dictionaries) + logger.error(f"Storing to node_red_requests {user_name}") + redis_conn.hset('node_red_requests', mapping={ + 'user_name': user_name, + 'token': token, + 'time': time_s, + 'requests': 1 + }) + + payload = {'ok': 1} + logger.error(f"Responding {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_node_red_port": + #this will: + # 1.prepare folder and settings.js + # 2.start instance on node-red and return it's return port + hash_data = GetRedisMap(f'node_red_status_{user_name}') + port = 0 + if hash_data != {}: + port = hash_data['port'] + #date_s = form_data.get('date') + #date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + #deployment_id = form_data.get('deployment_id') + payload = {'port': port} + logger.debug(f"get_node_red_port: {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + elif function == "activity_detected": + #this will: + # 1.store to REDIS time of last activity + time_s = form_data.get('time') + + hash_data = GetRedisMap(f'node_red_status_{user_name}') + port = 0 + if hash_data != {}: + port = hash_data['port'] + + redis_conn.hset(f'node_red_status_{user_name}', mapping={ + 'port': port, + 'last_activity': time_s + }) + + payload = {'ok': 1} + logger.debug(f"activity_detected: {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "store_flow": + #this will: + # 1.store flow into DB + time_s = form_data.get('time') + flow_json = form_data.get('flow') + logger.debug(f"store_flow: {flow_json}") + StoreFlow2DB(user_name, time_s, flow_json) + payload = {'ok': 1} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + elif function == "store_alarms": + #this will: + # 1.store flow into DB + deployment_id = form_data.get('deployment_id') + device_id = form_data.get('device_id') + deployment_alarms_json = form_data.get('deployment_alarms') + device_alarms_json = form_data.get('device_alarms') + + logger.debug(f"store_alarms: {deployment_alarms_json}") + + + if privileges == "-1" or deployment_id in privileges: + ok = StoreAlarms2DB(deployment_id, device_id, deployment_alarms_json, device_alarms_json) + + redis_conn.set('alarm_device_settings_'+device_id, device_alarms_json) + redis_conn.set('alarm_deployment_settings_'+deployment_id, deployment_alarms_json) + + # Create record dictionary + record = { + 'user_name': user_name, + 'deployment_id': deployment_id, + 'device_id': device_id + } + + # Convert dictionary to JSON string for storage in Redis list + record_json = json.dumps(record) + + # Add to queue (list) - lpush adds to the left/front of the list + redis_conn.lpush('new_alarms', record_json) + + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + else: + payload = {'ok': 0, 'error': "not allowed"} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + return + + elif function == "send_walarm": + # Extract data from form + deployment_id = form_data.get('deployment_id') + device_id = form_data.get('device_id') + location = form_data.get('location') + method = form_data.get('method') + feature = form_data.get('feature') + currentAlertTableMode = form_data.get('currentAlertTableMode') + time_s = datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + content = form_data.get('content') + enabledCellContent = form_data.get('enabledCellContent') + currentUnits = form_data.get('currentUnits') + test_only = form_data.get('test_only') + action = form_data.get('action') + + logger.debug(f"send_requests: {user_name}") + + # Create record dictionary + record = { + 'user_name': user_name, + 'deployment_id': deployment_id, + 'location': location, + 'method': method, + 'feature': feature, + 'currentAlertTableMode': currentAlertTableMode, + 'time': time_s, + 'content': content, + 'currentUnits': currentUnits, + 'test_only': test_only, + 'action': action, + 'enabledCellContent': enabledCellContent + } + + # Convert dictionary to JSON string for storage in Redis list + record_json = json.dumps(record) + + # Add to queue (list) - lpush adds to the left/front of the list + redis_conn.lpush('send_requests', record_json) + + payload = {'ok': 1} + logger.error(f"Responding {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + elif function == "node-red_deployed": + #this will: + # 1.store flow into DB + time_s = form_data.get('time') + logger.debug(f"node-red_deployed: {user_name}") + redis_conn.hset('node-red_deployed', mapping={ + 'user_name': user_name, + 'token': token, + 'time': time_s, + 'requests': 1 + }) + + payload = {'ok': 1} + logger.error(f"Responding {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + else: + AddToLog("Error: function not recognized!") + payload = {'ok': 0, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + except Exception as e: + print(traceback.format_exc()) + resp.media = package_response(f"Error: {str(e)} {traceback.format_exc()}", HTTP_500) + + + def on_put(self, req, resp, path=""): + """Handle PUT requests""" + if path == "users": + logger.info("PUT request to users endpoint") + try: + # Parse the request body + request_data = json.loads(req.stream.read().decode('utf-8')) + + # TODO: Implement user update logic + + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"id": request_data.get("id"), "message": "User updated"}) + except json.JSONDecodeError: + resp.status = HTTP_400 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Invalid JSON"}) + else: + resp.media = package_response(f"PUT to /{path} not implemented", HTTP_400) + + def on_delete(self, req, resp, path=""): + """Handle DELETE requests""" + if path == "users": + logger.info("DELETE request to users endpoint") + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"message": "User deleted"}) + else: + resp.media = package_response(f"DELETE to /{path} not implemented", HTTP_400) + +# Initialize data files + + +logger.error(f"------------------------------- STARTED ------------------------------------------") +try: + searches_text = read_file("searches.json") + searches_dict = json.loads(searches_text) if searches_text else {} + + dialogs_data = read_file("dialog.json") + dialog_dict = json.loads(dialogs_data) if dialogs_data else {"utterances": {}, "intents": {}} + + intent_map = dialog_dict.get("utterances", {}) + utterances = {} + for key in intent_map: + logger.debug(key) + list_of_utterances = intent_map[key] + for utterance in list_of_utterances: + utterances[utterance] = key + + intents = dialog_dict.get("intents", {}) +except Exception as e: + logger.error(f"Error initializing data files: {str(e)}") + searches_dict = {} + utterances = {} + intents = {} + +# Create Falcon application with middleware +middlewares = [CORSMiddleware(), RequestParser(), StripPathMiddleware()] +try: + # For newer Falcon versions + app = falcon.App(middleware=middlewares) +except: + # For older Falcon versions + app = falcon.API(middleware=middlewares) + +#logger.error(f"@1") +# Add routes for well-api +well_api_instance = WellApi() + +# New routes for well_api with multiple access paths +app.add_route('/function/well-api', well_api_instance) +app.add_route('/function/well-api/{path}', well_api_instance) +app.add_route('/api/well_api', well_api_instance) +app.add_route('/api/well_api/{path}', well_api_instance) +app.add_route('/healthz', well_api_instance, suffix='healthz') + +# Add routes for the standard API paths +app.add_route('/health', well_api_instance) +app.add_route('/users', well_api_instance) +app.add_route('/items', well_api_instance) + +# Keep the original routes for backward compatibility +app.add_route('/', well_api_instance) +app.add_route('/{path}', well_api_instance) + +MQTTSERVERL = "eluxnetworks.net" +MQTT_PortL = 443 + +MyName = "well-api" + +clientL = mqtt.Client(client_id=MyName+str(time.time()), transport="websockets") +clientL.tls_set(cert_reqs=ssl.CERT_NONE) # For self-signed certs, use proper CA in production +clientL.ws_set_options(path="/mqtt") # Important! Same path as in your JS code +clientL.username_pw_set("well_user","We3l1_best!") + +clientL.on_connect = on_connectL +clientL.on_message = on_messageL + +#clientL.connect(MQTTSERVERL, MQTT_PortL, 60) +#lientL.loop_start() +#logger.error(f"@2") + +# This code runs when executed directly (for development/debugging) +if __name__ == "__main__": + from wsgiref.simple_server import make_server + redis_conn = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, db=REDIS_DB) + # Use port 8000 for local debugging + port = int(os.environ.get('PORT', 8000)) + #port = int(os.environ.get('PORT', 1998)) + + # Create a WSGI server + with make_server('', port, app) as httpd: + print(f'Serving on port {port}...') + + # Serve until process is killed + httpd.serve_forever() +else: + redis_conn = redis.Redis(host=redis_host, port=6379, db=0) diff --git a/well-api2.py b/well-api2.py new file mode 100644 index 0000000..0d7ea87 --- /dev/null +++ b/well-api2.py @@ -0,0 +1,12520 @@ +#!/usr/bin/env python3 +import os +import sys +import ast +from ast import literal_eval +import falcon +from falcon import HTTP_200, HTTP_400, HTTP_401, HTTP_500 +import json +import logging +from dotenv import load_dotenv +import calendar +import io +import datetime +from datetime import timedelta, timezone +import jwt +import psycopg2 +import html +import re +import fnmatch +import traceback +import time +import pytz +from PIL import Image, ImageDraw, ImageFont +import paho.mqtt.client as mqtt +import ssl +import hashlib +import itertools +from collections import defaultdict, deque +import warnings +from io import BytesIO +import zipfile +from minio import Minio +from minio.error import S3Error +import numpy as np +import cv2 +from sklearn.mixture import GaussianMixture +import openai +from openai import OpenAI +from typing import List, Tuple + +st = 0 +if True: + + #from scipy import interpolate + from scipy.optimize import curve_fit + from scipy import stats + import pandas as pd + #from scipy.signal import savgol_filter + +EnablePlot = False #True + +if EnablePlot: + import matplotlib + matplotlib.use('Agg') # Set the backend before importing pyplot + import matplotlib.pyplot as plt + from matplotlib.colors import LinearSegmentedColormap + import matplotlib.dates as mdates + +# Configure logging +logging.basicConfig( + level=logging.DEBUG,# .ERROR, + format='%(asctime)s [%(levelname)s] %(message)s' +) +logger = logging.getLogger(__name__) + +location_names = {-1:"All",0:"?",5:"Office",6:"Hallway",7:"Garage",8:"Outside",9:"Conference Room",10:"Room",34:"Kitchen", + 56:"Bedroom",78:"Living Room",102:"Bathroom",103:"Dining Room",104:"Bathroom Main",105:"Bathroom Guest", + 106:"Bedroom Master", 107:"Bedroom Guest", 108:"Conference Room", 109:"Basement", 110:"Attic", 200:"Other"} + +Loc2Color = {"?":(0,0,0),"Office":(255,255,0),"Hallway":(128,128,128),"Garage":(128,0,0),"Outside":(0,0,0),"Conference Room":(0,0,128), + "Room":(64,64,64),"Kitchen":(255,0,0),"Bedroom":(16,255,16),"Living Room":(160,32,240),"Bathroom":(0,0,255), + "Dining Room":(255,128,0),"Bathroom Main":(16,16,255), "Bedroom Master":(0,255,0),"Bathroom Guest":(32,32,255), + "Bedroom Guest":(32,255,32), "Basement":(64,64,64), "Attic":(255,165,0), "Other":(192,192,192)} + +Loc2Color = {"Bedroom":((16,255,16),0),"Bedroom Master":((0,255,0),0),"Bedroom Guest":((32,255,32),0),"Bathroom":((0,0,255),1), + "Bathroom Main":((16,16,255),1),"Bathroom Guest":((32,32,255),1),"Kitchen":((255,0,0),2),"Dining Room":((255,128,0),3), + "Office":((255,255,0),4),"Conference Room":((0,0,128),5),"Room":((64,64,64),6),"Living Room":((160,32,240),7),"Hallway":((128,128,128),8), + "Garage":((128,0,0),9),"Basement":((64,64,64), 10),"Attic":((255,165,0), 11),"Other":((192,192,192),12),"?":((0,0,0),13),"Outside":((0,0,0),14)} + + +s_table = ["temperature", "humidity", "pressure", "light", "radar", "voc0", "voc1", "voc2", "voc3", "voc4", "voc5", "voc6", "voc7", "voc8", "voc9"] # derived +smells_table = ["s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s9"] # derived + +Consolidataed_locations = {"?":"Room","Office":"Office","Hallway":"Hallway","Garage":"Garage","Outside":"Outside","Conference Room":"Office", + "Room":"Room","Kitchen":"Kitchen","Bedroom":"Bedroom","Living Room":"Living Room","Bathroom Guest":"Bathroom", + "Dining Room":"Dining Room","Bathroom":"Bathroom", "Bathroom Main":"Bathroom","Bedroom Master":"Bedroom", + "Bedroom Guest":"Bedroom", "Basement":"Basement", "Attic":"Attic", "Other":"Room"} + +AveragePercentPerLocation = {"Bedroom":[29, 37.5], "Bathroom":[2, 4], "Office":[10, 40],"Hallway":[0.1, 0.2],"Garage":[2, 3],"Outside":[5, 10], + "Room":[5, 10],"Kitchen":[5, 12.5], "Living Room":[5, 10], + "Dining Room":[5, 10], "Basement":[0, 0.2], "Attic":[0, 0.2]} + +location_indexes = {} + +for i in location_names: + location_indexes[location_names[i]] = i + + + +# HTTP Status codes +HTTP_200 = falcon.HTTP_200 +HTTP_201 = falcon.HTTP_201 +HTTP_400 = falcon.HTTP_400 +HTTP_401 = falcon.HTTP_401 +HTTP_404 = falcon.HTTP_404 +HTTP_500 = falcon.HTTP_500 + +load_dotenv() + +DB_NAME = os.getenv('DB_NAME') +DB_USER = os.getenv('DB_USER') +DB_PASSWORD = os.getenv('DB_PASSWORD') +DB_HOST = os.getenv('DB_HOST') +DB_PORT = os.getenv('DB_PORT') +MINIO_ACCESS_KEY = os.getenv('MINIO_ACCESS_KEY') +MINIO_SECRET_KEY = os.getenv('MINIO_SECRET_KEY') +MINIO_HOST = os.getenv('MINIO_HOST') +MINIO_PORT = os.getenv('MINIO_PORT') +DAILY_MAPS_BUCKET_NAME = os.getenv('DAILY_MAPS_BUCKET_NAME') +JWT_SECRET = os.getenv('JWT_SECRET') +MASTER_ADMIN = os.getenv('MASTER_ADMIN') +MASTER_PS = os.getenv('MASTER_PS') + +OPENAI_API_KEY = os.getenv('OPENAI_API_KEY') +model_engine = os.getenv('OPENAI_API_MODEL_ENGINE') +use_pdb = True +debug = False +debug_string = "" +logger.debug(f"Environment variables: {os.environ}") +filesDir = "/home/app/well_web_storage" #os.path.dirname(os.path.realpath(__file__)) +min_io_address = MINIO_HOST + ":" + MINIO_PORT + +miniIO_blob_client = Minio(min_io_address, access_key=MINIO_ACCESS_KEY, secret_key=MINIO_SECRET_KEY, secure=False) + +user_id_2_user = {} +smell_min = 1 +no_smell = 102400000 +smell_max = no_smell - 1 +sensor_legal_values = {"radar": (0,1000, 1), "co2": (smell_min, smell_max, 31), "humidity": (1,99, 31), "light": (0, 4095, 1), + "pressure": (0, 10000, 5), "temperature": (1, 60, 31), "voc": (smell_min, smell_max, 31), "voc0": (smell_min, smell_max, 31), + "voc1": (smell_min, smell_max, 31), "voc2": (smell_min, smell_max, 31), "voc3": (smell_min, smell_max, 31), "voc4": (smell_min, smell_max, 31), + "voc5": (smell_min, smell_max, 31), "voc6": (smell_min, smell_max, 31), "voc7": (smell_min, smell_max, 31), "voc8": (smell_min, smell_max, 31), "voc9": (smell_min, smell_max, 31), + "s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + +smell_legal_values = {"s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + +def read_file(file_name, source = "LOCAL", type_ = "TEXT", bucket_name="daily-maps"): + + blob_data = "" + if source == "MINIO": + blob_data = ReadObjectMinIO(bucket_name, file_name) + elif source == "LOCAL": + login_file = os.path.join(filesDir, file_name) + login_file = login_file.replace("\\","/") + logger.debug(f"Full file path: {login_file}") + logger.debug(f"File exists: {os.path.exists(login_file)}") + #print(login_file) + if type_ == "TEXT": + with open(login_file, encoding="utf8") as f: + blob_data = f.read() + else: + with open(login_file, 'rb') as f: + blob_data = f.read() + + elif source == "AZURE": + try: + blob_data = ""#container_client.download_blob(file_name).readall() + except Exception as err: + logger.error("Not reading Azure blob "+str(err)) + blob_data = "" + return blob_data + else: + pass + return blob_data + + +def match_with_wildcard(string, pattern): + return fnmatch.fnmatchcase(string, pattern) + +def extract_differing_part(string, pattern): + regex_pattern = re.escape(pattern).replace(r'\*', r'(.+)') + match = re.match(regex_pattern, string) + if match: + return match.group(1) + else: + return None + +def get_db_connection(): + return psycopg2.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASSWORD, host=DB_HOST, port=DB_PORT) + + +def generate_token(username): + expiration = datetime.datetime.now(timezone.utc) + timedelta(hours=24) + token = jwt.encode({"username": username, "exp": expiration}, JWT_SECRET, algorithm="HS256") + return token + + +def verify_token(token): + try: + payload = jwt.decode(token, JWT_SECRET, algorithms=["HS256"]) + return payload + except jwt.ExpiredSignatureError: + return None + except jwt.InvalidTokenError: + return None + +def SaveObjectInBlob(file_name, obj): + """ + Saves a Python object to MinIO blob storage using JSON serialization + + Args: + file_name (str): Name of the file to save in blob storage + obj: Python object to serialize and save + """ + try: + # Convert object to JSON string + json_str = json.dumps(obj) + # Convert string to bytes + json_bytes = json_str.encode('utf-8') + + # Save to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(json_bytes), + len(json_bytes) + ) + return True + except Exception as e: + logger.error(f"Error saving object to blob: {traceback.format_exc()}") + return False + +def ReadObjectMinIO(bucket_name, file_name): + try: + # Retrieve the object data + response = miniIO_blob_client.get_object(bucket_name, file_name) + + # Read the data from response + data_bytes = response.read() + + # Convert bytes to string and then load into a dictionary + data_string = data_bytes.decode('utf-8') + + # Don't forget to close the response + response.close() + response.release_conn() + + return data_string + + except S3Error as e: + logger.error(f"An error occurred while reading {file_name}: {e}") + return None + except: + logger.error(f"An error occurred while decoding {file_name}") + return None + +#def ReadObjectMinIO(bucket_name, file_name): + #try: + ## Retrieve the object data + #response = miniIO_blob_client.get_object(bucket_name, file_name) + + ## Read the data from response + #data_bytes = response.read() + + ## Convert bytes to string and then load into a dictionary + #data_string = data_bytes.decode('utf-8') + + ## Don't forget to close the response + #response.close() + #response.release_conn() + + #return data_string + + #except S3Error as e: + #logger.error(f"An error occurred: {e}") + #return None + + +def package_response_C(payload, status_code=HTTP_200): + """Package response in a standard format""" + if status_code == HTTP_200: + return {"status": "success", "data": payload} + else: + return {"status": "error", "message": payload, "code": status_code} + +def package_response(content, status=falcon.HTTP_200): + """ + Format the HTTP response. + + :param content: The content to be returned in the response. + :param status: HTTP status code (default is 200 OK). + :return: A dictionary containing the formatted response. + """ + if isinstance(content, str): + # If content is a string, try to parse it as JSON + try: + response = json.loads(content) + except json.JSONDecodeError: + # If it's not valid JSON, use it as message + response = {"message": content} + elif isinstance(content, dict): + # If content is a dictionary, serialize it with datetime handling + try: + # First serialize to JSON string with datetime handling + json_str = json.dumps(content, default=datetime_handler) + # Then parse back to dict + response = json.loads(json_str) + except TypeError as e: + response = {"message": f"Serialization error: {str(e)}"} + else: + # For any other type, convert to string and use as message + response = {"message": str(content)} + + # Add status code to the response + response["status"] = status + + # Handle specific status codes + if status == falcon.HTTP_400: + response["error"] = "Bad Request" + elif status == falcon.HTTP_401: + response["error"] = "Unauthorized" + elif status == falcon.HTTP_500: + response["error"] = "Internal Server Error" + + return response + +def GetPriviledges(conn, user_name, password): + sql = "SELECT key, access_to_deployments, user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + if result[0][0] == password: + return result[0][1], result[0][2] + else: + return "0", "0" + else: + return "0", "0" + +def GetPriviledgesOnly(user): + with get_db_connection() as conn: + if isinstance(user, (int)) or user.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def ListDeployments(priviledges, user_id): + + global user_id_2_user + + conn = get_db_connection() + + if priviledges == "-1": + sql = "SELECT * FROM public.deployments ORDER BY deployment_id ASC;" + else: + sql = f"SELECT * FROM public.deployments WHERE deployment_id IN ({priviledges}) OR user_edit = {user_id} ORDER BY deployment_id ASC;" + + try: + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + complete_result = [] + else: + deployment_ids = [] + deployment_records_dict = {} + for record in result: + deployment_id = record[0] + deployment_ids.append(deployment_id) + deployment_records_dict[deployment_id] = record + + sql = f"SELECT * FROM public.deployment_details WHERE deployment_id IN ({','.join(map(str, deployment_ids))}) ORDER BY deployment_id ASC;" + cur.execute(sql) + details_result = cur.fetchall() + + beneficiary_ids = [] + + for record_details in details_result: + if record_details[1] != None and record_details[1] not in beneficiary_ids: + beneficiary_ids.append(record_details[1]) + + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({','.join(map(str, beneficiary_ids))});" + + + cur.execute(sql) + user_id_2_user = {} + users = cur.fetchall()#cur.fetchone() + for usr_record in users: + user_id_2_user[usr_record[0]] = usr_record + + complete_result = [] + if details_result != None: + for record_details in details_result: + deployment_record = deployment_records_dict[record_details[0]] + complete_record = {'deployment_id': record_details[0], 'beneficiary_id': record_details[1], 'caretaker_id': record_details[2], + 'owner_id': record_details[3], 'installer_id': record_details[4], + 'address_street': record_details[6], 'address_city': record_details[7], 'address_zip': record_details[8], + 'address_state': record_details[9], 'address_country': record_details[10], + 'devices': record_details[5], 'wifis': record_details[11], 'persons': deployment_record[4], 'gender': deployment_record[5], + 'race': deployment_record[6], 'born': deployment_record[7], 'pets': deployment_record[8], 'time_zone': deployment_record[3] + } + complete_result.append(complete_record) + except: + logger.debug(f"Error: {traceback.format_exc()}") + return complete_result + +def ListCaretakers(): + + conn = get_db_connection() + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%2%' ORDER BY last_name;" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def ListBeneficiaries(privilidges, user_info): + + conn = get_db_connection() + with conn.cursor() as cur: + + if (privilidges == "-1"): + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + else: + #we need to find beneficiaries from list of deployments + sql = f"SELECT beneficiary_id FROM public.deployment_details WHERE deployment_id IN ({privilidges}) ORDER BY deployment_id ASC;" + cur.execute(sql) + result1 = cur.fetchall()#cur.fetchone() + if result1 == None: + result = [] + return result + beneficiaries = ",".join(str(x[0]) for x in result1) + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({beneficiaries}) OR user_edit = {user_info} AND role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + logger.debug(f"sql= {sql}") + + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def UserDetails(user_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'person_details';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.person_details WHERE user_id = "+user_id + + caretaker_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + caretaker_record[field[0]] = result[cnt] + cnt += 1 + + return caretaker_record +def DeviceDetails(mac): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'devices';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.devices WHERE device_mac = '" + mac + "'" + + device_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + device_record[field[0]] = result[cnt] + cnt += 1 + + return device_record + +def DeploymentDetails(deployment_id): + + deployment_record = {} + + conn = get_db_connection() + + with conn.cursor() as cur: + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployments';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployments WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployment_details';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployment_details WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + + return deployment_record + +def ValidUser(user_name, password): + + + if use_pdb: + with get_db_connection() as db_conn: + priviledges, user_id= GetPriviledges(db_conn, user_name, password) + return priviledges, user_id + + else: + pass + #container = GetReference("/MAC") + #try: + ## We can do an efficient point read lookup on partition key and id + ##response = container.read_item(item="64B708896BD8_temperature_2024-01-01_00", partition_key="64B708896BD8") #OK + ##items = query_items(container, '64B708896BD8') #Too slow + ##AddToLog("1!") + #privileges = GetCaretakers(container, email, password) + #return privileges + + #except Exception as err: + #AddToLog("Error !1 "+str(err)) + + +def SelectOption(html_code, select_id, selected_item): + """ + Modifies HTML code to set the selected attribute for a specific option in a select element. + + Args: + html_code (str): Original HTML code + select_id (str): ID of the select element to modify + selected_item (str or int): Value of the option to be selected + + Returns: + str: Modified HTML code with the selected attribute added + """ + # Convert selected_item to string for comparison + selected_item = str(selected_item) + + # Find the select element with the given ID + select_pattern = rf']*id=[\'"]?{select_id}[\'"]?[^>]*>(.*?)' + select_match = re.search(select_pattern, html_code, re.IGNORECASE | re.DOTALL) + + if not select_match: + return html_code # Return unchanged if select element not found + + select_content = select_match.group(0) + select_content_orig = select_content + # Remove any existing selected attributes + select_content = re.sub(r'\s+selected(?=[>\s])', '', select_content, flags=re.IGNORECASE) + + # Add selected attribute to the matching option + def replace_option(match): + value = re.search(r'value=[\'"]?([^\'">\s]+)', match.group(0)) + if value and value.group(1) == selected_item: + # Add selected attribute before the closing > + return match.group(0).rstrip('>') + ' selected>' + return match.group(0) + + modified_select = re.sub( + r']*>', + replace_option, + select_content + ) + + # Replace the original select element with the modified one + return html_code.replace(select_content_orig, modified_select) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if device_id == None or device_id == 0: + return 1 + + try: + + + sql = f""" + UPDATE public.devices + SET + radar_threshold = '[{TR},{BR},{TLIFE},{BLIFE}]' + WHERE device_id = {device_id}; + """ + + logger.debug(f"sql= {sql}") + # Execute update query + print(sql) + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + logger.debug("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + + +def StoreBeneficiary2DB(parameters, editing_user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + email = '{CleanObject(parameters.get('email'))}', + user_name = '{CleanObject(parameters.get('new_user_name'))}', + first_name = '{CleanObject(parameters.get('first_name'))}', + last_name = '{CleanObject(parameters.get('last_name'))}', + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + time_edit = {current_epoch_time}, + user_edit = {CleanObject(parameters.get('user_id'))}, + role_ids = '{CleanObject(parameters.get('role_ids'))}', + phone_number = '{CleanObject(parameters.get('phone_number'))}', + picture = '{CleanObject(parameters.get('picture'))}', + key = '{CleanObject(parameters.get('key'))}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{CleanObject(parameters.get('role_ids'))}', '{CleanObject(parameters.get('email'))}', '{CleanObject(parameters.get('new_user_name'))}', + '{CleanObject(parameters.get('first_name'))}', '{CleanObject(parameters.get('last_name'))}', '{CleanObject(parameters.get('address_street'))}', + '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}', {current_epoch_time}, {CleanObject(parameters.get('user_id'))}, '{CleanObject(parameters.get('phone_number'))}', + '{CleanObject(parameters.get('picture'))}', '{CleanObject(parameters.get('key'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def DeleteRecordFromDB(form_data): + + caretaker = form_data['user_name'] + privileges = GetPriviledgesOnly(caretaker) + + if privileges != "-1": + AddToLog("Forbidden!") + return 0 + + conn = get_db_connection() + cur = conn.cursor() + function = form_data.get('function') + if function == "deployment_delete": + user_id = form_data['user_id'] + editing_deployment_id = form_data['editing_deployment_id'] + priviledges = form_data['priviledges'] + if editing_deployment_id == None or editing_deployment_id == "" or editing_deployment_id == "0": + AddToLog("deployment_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + cur.execute(sql) + result = cur.fetchone() + if priviledges != "-1": + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + + elif function == "device_delete": + user_id = form_data['user_id'] + editing_device_id = form_data['editing_device_id'] + priviledges = form_data['priviledges'] + if editing_device_id == None or editing_device_id == "" or editing_device_id == "0": + AddToLog("editing_device_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE device_id = {editing_device_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + #else: + ##lets check if user_edit = user_id + #sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + #cur.execute(sql) + #result = cur.fetchone() + #if priviledges != "-1": + #if result[0] != int(user_id): + #cur.close() + #conn.close() + #return 0 + + #sql = f""" + #DELETE FROM public.deployments WHERE device_id = {editing_device_id} + #""" + #logger.debug(f"sql= {sql}") + ## Execute update query + #cur.execute(sql) + + #conn.commit() + + ## Close the cursor and connection + #cur.close() + #conn.close() + + #AddToLog("Deleted!") + #return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + else: + + #user_id = form_data['user_id'] + editing_user_id = form_data['delete_user_id'] + if editing_user_id == None or editing_user_id == "" or editing_user_id == "0": + AddToLog("user_id is not defined") + cur.close() + conn.close() + return 0 + try: + if privileges == "-1": #user_id == "-1": + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.person_details WHERE user_id = '{editing_user_id}'" + cur.execute(sql) + result = cur.fetchone() + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + +def StoreCaretaker2DB(parameters, editing_user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + role_ids = '{parameters.get('role_ids')}', + access_to_deployments = '{parameters.get('access_to_deployments')}', + email = '{parameters.get('email')}', + user_name = '{parameters.get('new_user_name')}', + first_name = '{parameters.get('first_name')}', + last_name = '{parameters.get('last_name')}', + address_street = '{parameters.get('address_street')}', + address_city = '{parameters.get('address_city')}', + address_zip = '{parameters.get('address_zip')}', + address_state = '{parameters.get('address_state')}', + address_country = '{parameters.get('address_country')}', + time_edit = {current_epoch_time}, + user_edit = {parameters.get('user_id')}, + phone_number = '{parameters.get('phone_number')}', + picture = '{parameters.get('picture')}', + key = '{parameters.get('key')}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{parameters.get('role_ids')}', '{parameters.get('access_to_deployments')}', '{parameters.get('email')}', '{parameters.get('new_user_name')}', '{parameters.get('first_name')}', '{parameters.get('last_name')}', '{parameters.get('address_street')}', '{parameters.get('address_city')}', '{parameters.get('address_zip')}', '{parameters.get('address_state')}', '{parameters.get('address_country')}', {current_epoch_time}, {parameters.get('user_id')}, '{parameters.get('phone_number')}', '{parameters.get('picture')}', '{parameters.get('key')}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def CleanObject(object_in, typee = "s"): + + if typee == "n": + res = 0 + if object_in == None or object_in == "": + return 0 + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + else: + res = "" + if object_in == None: + return "" + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + return object_in + +def StoreDeployment2DB(parameters, editing_deployment_id): + conn = get_db_connection() + cur = conn.cursor() + + if editing_deployment_id == None or editing_deployment_id == "": + editing_deployment_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployments + SET + persons = {CleanObject(parameters.get('persons'), "n")}, + gender = {CleanObject(parameters.get('gender'), "n")}, + race = {CleanObject(parameters.get('race'), "n")}, + born = {CleanObject(parameters.get('born'), "n")}, + pets = {CleanObject(parameters.get('pets'), "n")}, + time_zone_s = '{CleanObject(parameters.get('time_zone_s'))}', + user_edit = {CleanObject(parameters.get('user_id'), "n")}, + time_edit = {current_epoch_time} + WHERE deployment_id = {CleanObject(editing_deployment_id, "n")}; + """ + + else: + sql = f""" + INSERT INTO public.deployments + (persons, gender, race, born, pets, time_zone_s, user_edit, time_edit) + VALUES + ({CleanObject(parameters.get('persons'), "n")}, {CleanObject(parameters.get('gender'), "n")}, {CleanObject(parameters.get('race'), "n")}, + {CleanObject(parameters.get('born'), "n")}, {CleanObject(parameters.get('pets'), "n")}, '{CleanObject(parameters.get('time_zone_s'))}', + {CleanObject(parameters.get('user_id'), "n")}, {current_epoch_time}) + RETURNING deployment_id; + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + if editing_deployment_id == "0": + new_deployment_id = cur.fetchone()[0] + # Commit the changes to the database + conn.commit() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployment_details + SET + beneficiary_id = {CleanObject(parameters.get('beneficiary_id'), "n")}, + caretaker_id = {CleanObject(parameters.get('caretaker_id'), "n")}, + owner_id = {CleanObject(parameters.get('owner_id'), "n")}, + installer_id = {CleanObject(parameters.get('installer_id'), "n")}, + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + + wifis = '{CleanObject(parameters.get('wifis'))}', + devices = '{CleanObject(parameters.get('devices'))}', + lat = {CleanObject(parameters.get('lat'), "n")}, + lng = {CleanObject(parameters.get('lng'), "n")}, + gps_age = {CleanObject(parameters.get('gps_age'), "n")} + + WHERE deployment_id = {editing_deployment_id}; + """ + + else: + sql = f""" + INSERT INTO public.deployment_details + (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, address_street, address_city, address_zip, address_state, address_country) + VALUES + ({new_deployment_id}, {CleanObject(parameters.get('beneficiary_id'), "n")}, {CleanObject(parameters.get('caretaker_id'), "n")}, {CleanObject(parameters.get('owner_id'), "n")}, {CleanObject(parameters.get('installer_id'), "n")}, + '{CleanObject(parameters.get('address_street'))}', '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + + + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def StoreDevice2DB(parameters, editing_device_id): + + # Create a device object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_device_id == None or editing_device_id == "": + editing_device_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_device_id != "0": + sql = f""" + UPDATE public.devices + SET + device_mac = '{CleanObject(parameters.get('device_mac'))}', + well_id = '{CleanObject(parameters.get('well_id'))}', + description = '{CleanObject(parameters.get('description'))}', + location = '{CleanObject(parameters.get('location'))}', + close_to = '{CleanObject(parameters.get('close_to'))}', + radar_threshold = '{CleanObject(parameters.get('radar_threshold'))}', + temperature_calib = '{CleanObject(parameters.get('temperature_calib'))}', + humidity_calib = '{CleanObject(parameters.get('humidity_calib'))}' + WHERE device_id = {editing_device_id}; + """ + + else: + sql = f""" + INSERT INTO public.devices + (device_mac, well_id, description, location, close_to, radar_threshold, temperature_calib, humidity_calib) + VALUES + ('{CleanObject(parameters.get('device_mac'))}', '{CleanObject(parameters.get('well_id'))}', '{CleanObject(parameters.get('description'))}', + '{CleanObject(parameters.get('location'))}', '{CleanObject(parameters.get('close_to'))}', '{CleanObject(parameters.get('radar_threshold'))}', + '{CleanObject(parameters.get('temperature_calib'))}', '{CleanObject(parameters.get('humidity_calib'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + + +def ShowAge(seconds): + minutes = int(seconds // 60) + hours = int(minutes // 60) + days = int(hours // 24) + + if seconds >= 0: + hours = int(hours - (days * 24)) + minutes = int(minutes - (days * 24 * 60) - (hours * 60)) + seconds = int(seconds - (days * 24 * 60 * 60) - (hours * 60 * 60) - (minutes * 60)) + + if days > 0: + report = f"{int(days)} d {int(hours)} h {int(minutes)} m {int(seconds)} s" + elif hours > 0: + report = f"{int(hours)} h {int(minutes)} m {int(seconds)} s" + elif minutes > 0: + report = f"{int(minutes)} m {int(seconds)} s" + else: + report = f"{int(seconds)} s" + + return report + else: + return "0 s" + +def UpdateDevicesTable(html_string, devices, users): + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + table_rows_string = "" + for device in devices: + result = next(item for item in users if item[0] == device[6]) + deployment_name = result[1] + if result[2] != None: + deployment_name = deployment_name + " " + result[2] + mac = device[2] + mac_row_string = f' {mac}\n' + age = time.time() - device[3] + + if (age < 300): + row_sting = f' \n {device[0]}\n' + else: + row_sting = f' \n {device[0]}\n' + + row_ending = f' \n \n' + for col_cnt in range(1, len(device)): + column_value = device[col_cnt] + #print(column_value) + if col_cnt == 2: + col_string_template = mac_row_string + elif col_cnt == 3: + if column_value > 0: + col_string_template = f' {ShowAge(age)}\n' + else: + col_string_template = f' No data\n' + elif col_cnt == 4: + col_string_template = f' {column_value}\n' + elif col_cnt == 5: + if column_value == None: + col_string_template = f' \n' + else: + col_string_template = f' {column_value}\n' + elif col_cnt == 6: + col_string_template = f' {column_value}\n'; + else: + if column_value == None: + column_value = "" + col_string_template = f' {column_value}\n' + row_sting = row_sting + col_string_template + row_sting = row_sting + row_ending + table_rows_string = table_rows_string + row_sting + #print(table_rows_string) + + html_string = html_string.replace("###ROWS###",table_rows_string) + return html_string + +def UpdateDeploymentsSelector(html_string, deployments, include_all=True, selected="1"): + # + if include_all: + selector_string = f' \n' + else: + selector_string = '' + + for deployment in deployments: + first_name = "" + last_name = "" + if deployment[1] != None: + first_name = deployment[1] + if deployment[2] != None: + last_name = deployment[2] + if deployment[0] == int(selected): + choice_string = f' \n' + else: + choice_string = f' \n' + selector_string = selector_string + choice_string + #print(selector_string) + + html_string = html_string.replace("###INSTALLS###",selector_string) + return html_string + +def GetDeviceDetails(cur, deployment_ids, location_id): + + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + macs = [mac for _, mac in deployment_ids] + #macs = list(deployment_ids.keys()) + macs_string_nq = ",".join(macs) + macs_string = "'" + "','".join(macs) + "'" + + if location_id == -1: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) + ORDER BY om.position; + """ + else: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) AND location = {location_id} + ORDER BY om.position; + """ + + cur.execute(sql) + print(sql) + devices_ids_records = cur.fetchall() + all_details = [] + + + devices_ids_list = [x[0] for x in devices_ids_records] + device_ids_string = ",".join(map(str, devices_ids_list)) + #sql = f"SELECT device_id, MAX(time) as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) GROUP BY device_id" #to slow + sql = f"SELECT DISTINCT ON (device_id) device_id, time as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) AND time > now() - INTERVAL '1 day' ORDER BY device_id, time DESC" + cur.execute(sql) + print(sql) + devices_times = cur.fetchall()#cur.fetchone() + found_device_details = {} + for device_record in devices_times: + device_id, last_message_time = device_record + found_device_details[device_id] = last_message_time + cnt = 0 + for device_table_record in devices_ids_records: + if len(devices_times) > 0: + + if device_id in found_device_details: + last_message_time = found_device_details[device_id] + last_message_epoch = int(last_message_time.timestamp()) + else: + last_message_time = int(device_table_record[14]) + last_message_epoch = last_message_time + else: + last_message_time = 0 + last_message_epoch = 0 + + #print(last_message_epoch) + #print(type(last_message_epoch)) + device_id = device_table_record[0] + mac = device_table_record[1] + well_id = device_table_record[2] + description = device_table_record[3] + if description == None: + description = "" + if device_table_record[5] != None: + if device_table_record[5] != "": + description = description + " Close to " + device_table_record[5] + location_id = device_table_record[4] + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + cnt += 1 + all_details.append(row_data) + + return all_details + +def GetVisibleDevices(deployments): + + devices_details = [] + stt = time.time() + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + print(sql) + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if "[" not in dev_group: + if "," not in dev_group: + dev_group = '["' + dev_group + '"]' + else: + dev_group = dev_group.replace(" ", "") + dev_group = dev_group.replace(",", '","') + dev_group = '["' + dev_group + '"]' + + macs_group = literal_eval(dev_group) + + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + else: + print(f"Deployment {deployment_id} has dev_group empty") + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + #devices_details.append(devices_detail) + + return devices_details + +def GetVisibleDevicesPerLocation(deployments, location): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1" or deployments == "0": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if dev_group[0] == "[": + macs_group = literal_eval(dev_group) + else: + macs_group = dev_group.split(',') + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetails(cur, deployment_ids, location_indexes[location]) + #devices_details.append(devices_detail) + + return devices_details + +def GetUsersFromDeployments(deployments): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + if deployments == "-1": + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + ORDER BY dd.deployment_id; + """ + else: + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id IN ({deployments}) + ORDER BY dd.deployment_id; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchall()#cur.fetchone() + except Exception as err: + logger.error("GetUsersFromDeployments "+str(err) +" "+sql) + + return deployments_dets + +def GetPreviousDate(current_date): + date_obj = datetime.datetime.strptime(current_date, "%Y-%m-%d") + # Subtract one day + previous_date = date_obj - timedelta(days=1) + # Convert back to string format + previous_date_str = previous_date.strftime("%Y-%m-%d") + return(previous_date_str) + +def CovertToIsoTime(date_s, n_minute): + + hours = n_minute // 60 # Integer division + minutes = n_minute % 60 + + base_date = datetime.datetime.strptime(date_s, "%Y-%m-%d") + final_datetime = base_date + timedelta(hours=hours, minutes=minutes) + iso_timestamp = final_datetime.isoformat() + return iso_timestamp + +def GetSensorsDetailsFromDeployment(deployment_id, ddate, filter_minutes): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + sql = f""" + SELECT pd.user_id, pd.first_name, pd.last_name, pd.address_street, pd.picture + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id ={deployment_id}; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment "+str(err) +" "+sql) + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + #Which sensor is in: Bathroom, Kitchen, Bedroom ? + bathrooms = [] + kitchens = [] + bedrooms = [] + dev_id_to_location = {0: "Outside/?"} + for device in devices_list: + dev_id_to_location[device[1]] = device[2] + if Consolidataed_locations[device[2]] == "Bathroom": + bathrooms.append(device[1]) + elif Consolidataed_locations[device[2]] == "Kitchen": + kitchens.append(device[1]) + elif Consolidataed_locations[device[2]] == "Bedroom": + bedrooms.append(device[1]) + + #we need to determine where user is seen last, and user sensor data from there... + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file1 ={locations_file}") + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() #local date + file_modified_date_utc = file_modified_utc1.date() + file_date_utc = MapFileToDate(locations_file) #locations_file is UTC + #if file_modified_date_local < file_date_utc: + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + logger.debug(f"force_recreate={str(force_recreate)}") + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + last_present_device = 0 + last_present = 0 + last_bathroom = 0 + last_kitchen = 0 + last_bedroom = 0 + last_bathroom_date = ddate + last_kitchen_date = ddate + last_bedroom_date = ddate + + if locations_list_s is not None: + locations_list = json.loads(locations_list_s) + + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + last_present = locations_list[-1][1] + locations_list[-1][2] + else: + last_present_device = locations_list[-2][0] + last_present = locations_list[-2][1] + locations_list[-2][2] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + + #Lets find last bathroom presence time + + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + + #Lets find last kitchen presence time + + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + + #Lets find last bedroom presence time + + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + if last_bathroom == 0 or last_kitchen == 0 or last_bedroom == 0: + ddate = GetPreviousDate(ddate) + + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file2 ={locations_file}") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + logger.debug(f"file_exists1={str(file_exists1)}") + logger.debug(f"file_modified_utc1={str(file_modified_utc1)}") + #file_exists1, file_modified_utc1 + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() + file_date_utc = MapFileToDate(locations_file) + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + + + if (locations_list_s is not None): + + locations_list = json.loads(locations_list_s) + + if last_present_device == 0: + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + else: + last_present_device = locations_list[-2][0] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + if last_bathroom == 0: + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + if last_kitchen == 0: + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + if last_bedroom == 0: + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + + last_bathroom_time = "2023-01-01T00:00:00" + if last_bathroom > 0: + last_bathroom_time = CovertToIsoTime(last_bathroom_date, last_bathroom) + + last_kitchen_time = "2023-01-01T00:00:00" + if last_kitchen > 0: + last_kitchen_time = CovertToIsoTime(last_kitchen_date, last_kitchen) + + last_bedroom_time = "2023-01-01T00:00:00" + if last_bedroom > 0: + last_bedroom_time = CovertToIsoTime(last_bedroom_date, last_bedroom) + + last_present_time = "2023-01-01T00:00:00" + if last_present > 0: + last_present_time = CovertToIsoTime(ddate, last_present) + + # debug for 48h bug + if last_bathroom_time == "2023-01-01T00:00:00" or last_kitchen_time == "2023-01-01T00:00:00" or last_bedroom_time == "2023-01-01T00:00:00": + #last_bathroom_time = "48h" if last_bathroom_time == "2023-01-01T00:00:00" else f"{last_bathroom-last_bathroom_time}" + #last_kitchen_time = "48h" if last_kitchen_time == "2023-01-01T00:00:00" else f"{last_kitchen-last_kitchen_time}" + #last_bedroom_time = "48h" if last_bedroom_time == "2023-01-01T00:00:00" else f"{last_bedroom-last_bedroom_time}" + + logger.debug(f"48h-> deployment_id={str(deployment_id)}, ddate={str(ddate)}") + logger.debug(f"48h-> force_recreate={force_recreate}") + logger.debug(f"48h-> last_bathroom_time={last_bathroom_time}|last_kitchen_time={last_kitchen_time}|last_bedroom_time={last_bedroom_time}") + logger.debug(f"48h-> devices_list={str(devices_list)}") + logger.debug(f"48h-> bathrooms={str(bathrooms)}") + logger.debug(f"48h-> kitchens={str(kitchens)}") + logger.debug(f"48h-> bedrooms={str(bedrooms)}") + logger.debug(f"48h-> locations_list_s={str(locations_list_s)}") + + try: + sql = f""" + SELECT * FROM sensor_readings + WHERE device_id = {last_present_device} + ORDER BY time DESC + LIMIT 1; + """ + with conn.cursor() as cur: + cur.execute(sql) + sensor_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment1 "+str(err) +" "+sql) + + # wellness_score_percent + wellness_score_percent = 90 + + # bedroom_temperature + bedroom_temperature = 0 + + # sleep_bathroom_visit_count + sleep_bathroom_visit_count = 0 + + # bedroom_co2 + bedroom_co2 = 400 + + # shower_detected_time + shower_detected_time = last_bathroom_time + + # breakfast_detected_time + breakfast_detected_time = 0 + + # living_room_detected_time + living_room_time_spent = 0 + + # outside_hours + outside_hours = 0 + + #lets find last time seen at Bathroom, Kitchen, Bedroom pd.first_name, pd.last_name, pd.address_street, pd.picture + + picture_url = deployments_dets[4] + report = {"user_id":deployments_dets[0], + "name":deployments_dets[1] + " " + deployments_dets[2], + "address":deployments_dets[3], + "time_zone":time_zone_s, + "picture":picture_url, + "bathroom_at": last_bathroom_time, + "kitchen_at": last_kitchen_time, + "bedroom_at": last_bedroom_time, + "temperature": (sensor_dets[2] - 16) if sensor_dets != None else 0, + "smell": "clean", + "bathroom_delayed": [6, 12], + "kitchen_delayed": [6, 12], + "bedroom_delayed": [13, 16], + "last_location": dev_id_to_location[last_present_device], + "last_detected_time": last_present_time, + "wellness_score_percent": wellness_score_percent, + "wellness_descriptor_color": "bg-green-100 text-green-700", + "bedroom_temperature": bedroom_temperature, + "sleep_bathroom_visit_count": sleep_bathroom_visit_count, + "bedroom_co2": bedroom_co2, + "shower_detected_time": shower_detected_time, + "breakfast_detected_time": breakfast_detected_time, + "living_room_time_spent": living_room_time_spent, + "outside_hours": outside_hours, + "wellness_descriptor": "Great!", + "last_seen_alert": "Alert = None", + "last_seen_alert_colors": "bg-green-100 text-green-700", #https://tailwindcss.com/docs/colors + "most_time_spent_in": "Bedroom", + "sleep_hours": "7.9" + } + + return report + +def ToList(input_data): + # If input is already a list + if isinstance(input_data, list): + return [str(x).strip() for x in input_data] + + # If input is string + if isinstance(input_data, str): + # Remove outer brackets if present + cleaned = input_data.strip('()') + cleaned = cleaned.strip('[]') + # Remove extra quotes + cleaned = cleaned.replace('"', '').replace("'", '') + # Split by comma and clean each element + return [x.strip() for x in cleaned.split(',')] + + raise ValueError(f"Unsupported input type: {type(input_data)}") + +def MACsToWellIds(cur, macs_list): + + device_ids = [] + device_list = [] + + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + sqlr = f"SELECT well_id, device_mac, device_id, location, description, radar_threshold, close_to FROM public.devices WHERE device_mac IN ({macs_string})" + + #print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for well_id, mac, device_id, location, description, radar_threshold, close_to in proximitys_list: + macs_map[mac] = (well_id, device_id, location_names[location], description, mac, radar_threshold, close_to) + + + for mac in macs_list: + device_ids.append(macs_map[mac][1]) + device_list.append(macs_map[mac]) + + return device_ids, device_list + +def MACsStrToDevIds(cur, macs): + + device_ids = [] + #we need to repcakage string to contain ' + macs_list = ToList(macs) + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + + sqlr = f"SELECT device_mac, device_id FROM public.devices WHERE device_mac IN ({macs_string})" + print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for mac, device_id in proximitys_list: + device_ids.append((mac, device_id)) + + return device_ids + + + +def ReadCleanStringDB(cur, sql): + cur.execute(sql) + temp_string = cur.fetchone() + if temp_string == None: + return "" + else: + return str(temp_string[0]).strip() + +# obtain device_list, device_ids for deployment_id on time as epoch_from_file_s (usually today) +# it tries first overridden/newly-installed (FROM public.deployment_history) +# then if none found there searches FROM public.deployment_details +def GetProximityList(deployment_id, epoch_from_file_s): + + #both are valid: + #64B70888FA84,64B70888F6F0,64B70888F860,64B70889062C,64B70888FAB0,64B708896BDC,64B708897428 + #['64B70888FA84', '64B70888F6F0', '64B70888F860', '64B70889062C', '64B70888FAB0', '64B708896BDC', '64B708897428'] + + #result_list = [] + #well_ids = [] + with get_db_connection() as conn: + + sqlr = f""" + SELECT * FROM ( + SELECT proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + AND time <= {epoch_from_file_s} + ORDER BY time DESC + LIMIT 1 + ) AS latest_deployment + """ + #print (sqlr) + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + + if devices_string == "": + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + devices_string = ReadCleanStringDB(cur, sqlr) + + + if devices_string == "": + return [] + + macs_list = ToList(devices_string) + device_ids, device_list = MACsToWellIds(cur, macs_list) + return device_list, device_ids + +def FilterList(to_filter: str, allowed: str) -> str: + # Convert comma-separated strings to sets + filter_set = set(to_filter.split(',')) + allowed_set = set(allowed.split(',')) + + # Find intersection and sort the result + filtered = sorted(filter_set.intersection(allowed_set), key=int) + + # Join back to comma-separated string + return ','.join(filtered) + +def GetMatchingDevices(privileges, group, deployment, location): + + global LocationsMap + + results=[] + if privileges != "-1": + if deployment == "" or deployment == "0": + deployment = privileges + + privileges_list = privileges.split(',') + if deployment != "0": + if "," in deployment: + deployment = FilterList(deployment, privileges) + else: + if deployment not in privileges_list: + return results + else: + if deployment == "0": + deployment = "-1" + + devices = GetVisibleDevicesPerLocation(deployment, location) + return devices + +def getOldestDeploymentHistoryFromBeneficiary(deployment_id): + #this will return oldest entry as well as last proximity (devices) + st = time.time() + print(f"*0 ----{time.time() - st}") + results=[] + well_ids_last = [] #this needs to be list of tuples (well_id, Location_st, Description) + oldest_time = None + try: + print(f"*0a ----{time.time() - st}") + with get_db_connection() as conn: + sqlr = f""" + SELECT * FROM ( + SELECT time, proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + ORDER BY time ASC + ) AS latest_deployment + """ + print (sqlr) + print(f"*1 ----{time.time() - st}") + with conn.cursor() as cur: + cur.execute(sqlr) + print(f"*2 ----{time.time() - st}") + results = cur.fetchall() + print(f"*3 ----{time.time() - st}") + #lets find which of historical sets has data in DB + if results == None or results == []: #look in deployment_details + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + print(f"*4 ----{time.time() - st}") + devices_string = ReadCleanStringDB(cur, sqlr) + print(f"*5 ----{time.time() - st}") + macs_list = ToList(devices_string) + print(f"*6 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + sql_query = """ + SELECT device_id, first_seen_at + FROM device_first_seen + WHERE device_id = ANY(%s) + GROUP BY device_id; + """ + print(f"*7 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + if results1 == []: + pass + else: + oldest_time = results1[0][1] + except Exception as e: + AddToLog(traceback.format_exc()) + AddToLog(str(e)) + print(f"*8 ----{time.time() - st}") + else: + history_entry = results[-1] + macs_list = ToList(history_entry[1]) + print(f"*9 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + + + for history_entry in results: + macs_list = ToList(history_entry[1]) + print(f"*10 ----{time.time() - st}") + device_ids, device_alls = MACsToWellIds(cur, macs_list) + print(f"*11 ----{time.time() - st}") + sql_query = """ + SELECT time as oldest_record_time + FROM sensor_readings + WHERE device_id = ANY(%s) + ORDER BY time ASC + LIMIT 1; + """ + print(f"*12 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + oldest_time = results1[0][0] + if oldest_time != None: + break + + + except Exception as e: + print(str(e)) + print(f"*13 ----{time.time() - st}") + + except Exception as e: + print(f"*0b ----{time.time() - st}") + AddToLog(traceback.format_exc()) + + print(f"*14 ----{time.time() - st}") + return oldest_time, device_alls_last + + +def getLastEditedBeneficiary(beneficiary): + + #lets generate token here to elliminate issues with outdated token... + token = generate_token(beneficiary) + url = 'https://well-api.azurewebsites.net/api/well_api' + params = { + "name": "beneficiary_detail", + "beneficiary": beneficiary, + "token": token + } + #{"id": "user_beneficiary_bernhard@wellnuo.com", "MAC": "BENEFICIARY", "email": "bernhard@wellnuo.com", "edit_date": "Fri Aug 16 06:45:01 2024", "c_password": "bern1", "first_name": "Bernhard", "last_name": "Knigge", "address": "776 Dubanski Dr.", "address_city": "San Jose", "address_state": "CA", "address_zip": "95123", "address_country": "United States", "phone_number": "4087055709", "persons": "2", "gender": "M", "race": "W", "born": "1972", "pets": "1", "creds": "", "devs": "[[203, 'Living Room', '', '64B708890B14'], [251, 'Bathroom', '', '64B7088909E8'], [252, 'Bedroom', '', '64B708890734'], [204, 'Bathroom', 'Guest', '64B708890288'], [201, 'Kitchen', 'toaster', '64B708890584'], [202, 'Kitchen', 'stove', '64B7088906D8'], [205, 'Office', '', '64B708897018']]", "tzone": "America/Los_Angeles", "ttl": -1, "_rid": "R60hANIG-K+qTQIAAAAAAg==", "_self": "dbs/R60hAA==/colls/R60hANIG-K8=/docs/R60hANIG-K+qTQIAAAAAAg==/", "_etag": "\"3500a0ae-0000-0800-0000-66bef56d0000\"", "_attachments": "attachments/", "_ts": 1723790701} + response = requests.get(url, params=params) + if response.status_code == 200: + + text = response.text + #print(text) + if text == "Log-Out": + return text + if text[0] == "{": + data = json.loads(response.text) + date_string = data["edit_date"] + parsed_date = datetime.datetime.strptime(date_string, '%c') + # Convert the datetime object to a timestamp (epoch time) + epoch_str = str(time.mktime(parsed_date.timetuple())) + devices = data["devs"] + return(epoch_str, devices) + else: + return text,"" + else: + logger.debug((f"Failed to retrieve the data, status code: {response.status_code}")) + + return "","" + +def GetDeploymentNameFromId(Id): + + con = sqlite3.connect(main_db) + con.text_factory = str + cur = con.cursor() + results=[] + SQL = "SELECT name FROM deployments WHERE id =" + Id + df = cur.execute(SQL) + results = cur.fetchall() + if len(results) > 0: + return results[0][0] + else: + return "" + +def GetTimeZoneOfDeployment(deployment_id): + time_zone_st = 'America/Los_Angeles' + with get_db_connection() as conn: + with conn.cursor() as cur: + sqlr = f"SELECT time_zone_s from public.deployments WHERE deployment_id ={deployment_id}" + time_zone_st = ReadCleanStringDB(cur, sqlr) + return time_zone_st + +def StringToEpoch(date_string, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in specified timezone + + Args: + date_string (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch timestamp in seconds + """ + # Parse the date string + date_format = '%Y-%m-%d' + naive_date = datetime.datetime.strptime(date_string, date_format) + + # Get the timezone + timezone = pytz.timezone(time_zone_s) + + # Localize the date to midnight in the specified timezone + local_date = timezone.localize(naive_date) + + # Convert to epoch timestamp + epoch_time = local_date.timestamp() + + return epoch_time + +def LocalDateToUTCEpoch(local_date_str, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in UTC + + Args: + local_date_str (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch UTC timestamp in seconds + """ + timezone = pytz.timezone(time_zone_s) + # Parse the date string + date_format = '%Y-%m-%d' + local_datetime = datetime.datetime.strptime(local_date_str, date_format) + local_datetime = timezone.localize(local_datetime) + + utc_datetime = local_datetime.astimezone(pytz.UTC) + epoch_time = int(utc_datetime.timestamp()) + + return epoch_time + +def GetDeploymentDatesBoth(deployment_in): + + #when looking at the date, date is defined in TZ where device is! + #Lets take oldest data from first member of deployment + st = time.time() + date_list = [] + print(f"&0 ----{time.time() - st}") + time_zone_st = GetTimeZoneOfDeployment(deployment_in) + print(f"&1 ----{time.time() - st}") + oldest_date_dt_utc, devices_all = getOldestDeploymentHistoryFromBeneficiary(deployment_in) + print(f"&2 ----{time.time() - st}") + if oldest_date_dt_utc != None: + #get date in local time zone from UTC datetime + + #oldest_date_dt + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + oldest_date_dt_local = oldest_date_dt_utc.astimezone(local_timezone) + today_date = datetime.datetime.now(local_timezone) + + # Generate a list of date strings from oldest_date to today in inverted order + date_list = [(today_date - timedelta(days=x)).strftime('%Y-%m-%d') for x in range((today_date - oldest_date_dt_local).days + 1)] + print(f"&3 ----{time.time() - st}") + return date_list, devices_all + +def check_file_exists(file_name, bucket_name="daily-maps"): + try: + # Try to get the object's stats - this will raise an exception if the object doesn't exist + stat_result = miniIO_blob_client.stat_object(bucket_name, file_name) + last_modified_utc = stat_result.last_modified + return True, last_modified_utc + except S3Error as e: + if e.code == 'NoSuchKey': + return False, 0 + # Re-raise if it's a different error + raise + +def get_text_dimensions(text, font, font_scale, thickness): + (width, height), baseline = cv2.getTextSize(text, font, font_scale, thickness) + return { + 'width': width, + 'height': height, + 'baseline': baseline, + 'total_height': height + baseline + } + +def save_to_minio(image, filename, bucket_name="daily-maps", content_type="image/png"): + """ + Save a PIL Image directly to MinIO + + Args: + image (PIL.Image): Image to save + filename (str): Filename to use in MinIO + bucket_name (str): MinIO bucket name + content_type (str): Content type of the file + + Returns: + bool: True if successful, False otherwise + """ + logger = logging.getLogger(__name__) + try: + # Convert PIL image to bytes + img_byte_arr = io.BytesIO() + image.save(img_byte_arr, format='PNG') + img_byte_arr.seek(0) # Move to start of the BytesIO buffer + + # Upload to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + filename, + img_byte_arr, + length=len(img_byte_arr.getvalue()), + content_type=content_type + ) + return True + + except Exception as e: + logger.error(f"Error saving to MinIO: {traceback.format_exc()}") + return False + + +def SaveImageInBlob(file_name, arr_stretched, labels = []): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def SaveImageInBlobLabelsOut(file_name, arr_stretched, labels, title_labels): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + for label in title_labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def GetLocalTimeForDate(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def GetLocalTimeForDateSimple(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + return utc_start, utc_next + +def GetLocalTimeEpochsForDate(selected_date, time_zone_s): + """ + Get start and end of day epochs for a given date in a specific timezone. + + Args: + selected_date (str): Date in "YYYY-MM-DD" format + time_zone_s (str): Timezone string (e.g., "America/New_York") + + Returns: + tuple: (start_epoch, end_epoch) - Unix timestamps for start and end of day + """ + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Convert to epochs (Unix timestamps) + start_epoch = int(utc_start.timestamp()) + end_epoch = int(utc_next.timestamp()) + + return start_epoch, end_epoch + +def UTC2Local(utc_time, time_zone_s): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + #local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(selected_date) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def get_timezone_aware_datetime(time_str, timezone_str="America/Los_Angeles"): + """ + Convert a naive datetime string to a timezone-aware datetime object. + + Parameters: + time_str: String in format 'YYYY-MM-DD HH:MM:SS' + timezone_str: String representing the timezone (default: "America/Los_Angeles") + + Returns: + datetime: A timezone-aware datetime object + """ + # Parse the naive datetime + naive_dt = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S') + + # Get the timezone + tz = pytz.timezone(timezone_str) + + # Localize the datetime (make it timezone-aware) + # localize() is the correct way to do this, as it handles DST transitions properly + aware_dt = tz.localize(naive_dt) + return aware_dt + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6 + } + # Add sensor columns dynamically + cols_len = len(columns) + for i in range(10): + columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_smell_array_from_timescale(day_data, time_from_str, device_to_index, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Define column mappings (sensor type to position in record) + columns = { + 's0': 2, + 's1': 3, + 's2': 4, + 's3': 5, + 's4': 6, + 's5': 7, + 's6': 8, + 's7': 9, + 's8': 10, + 's9': 11 + } + ## Add sensor columns dynamically + #cols_len = len(columns) + #for i in range(10): + #columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_radar_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 's2': 2, + 's3': 3, + 's4': 4, + 's5': 5, + 's6': 6, + 's7': 7, + 's8': 8 + } + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def ScaleTemperature(temperature_in_f): + # Define our key temperature points and their corresponding color values + temp_points = [30, 50, 70, 90, 110] + color_values = [768, 640, 384, 128, 0] # Color values in the rainbow scale + + # Clamp the temperature to our range + clamped_temp = max(min(temperature_in_f, 110), 30) + + # Find which segment the temperature falls into + for i in range(len(temp_points) - 1): + if temp_points[i] <= clamped_temp <= temp_points[i + 1]: + # Linear interpolation between the two nearest points + t = (clamped_temp - temp_points[i]) / (temp_points[i + 1] - temp_points[i]) + color_value = int(color_values[i] + t * (color_values[i + 1] - color_values[i])) + return color_value + + # Fallback (should never reach here due to clamping) + return 0 + +def GetTemperatureColor(temperature_in_f): + color_value = ScaleTemperature(temperature_in_f) + return BestColor(color_value) + +def BestColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val > 1279): + in_val = 1279 + if (in_val < 256): + r = 255 + g = in_val + elif (in_val < 512): + r = 511 - in_val + g = 255 + elif (in_val < 768): + g = 255 + b = in_val-512 + elif (in_val < 1024): + g = 1023 - in_val + b = 255 + else: + r = in_val - 1024 + b = 255 + + #if (r > 255): + # print(in_val) + # print(int(r),int(g),int(b)) + return(int(r),int(g),int(b)) + +def GrayColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val < 0): + in_val = 0 + if(in_val > 255): + in_val = 255 + + r = in_val + g = r + b = r + return(int(r),int(g),int(b)) + +def fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str): + """ + Fill numpy array with data from TimeScaleDB query results. + + Parameters: + day_data: List of tuples from database query + time_from_str: Starting datetime string in format 'YYYY-MM-DD HH:MM:SS' + devices_list: List of device IDs + arr_source: Pre-initialized numpy array to fill + + Returns: + numpy.ndarray: Filled array + """ + # Parse the start time + #start_time = get_timezone_aware_datetime(time_from_str, timezone_str) + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + # Create mapping of device_ids to their index positions + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define columns and their positions in the result tuple + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Process each record + for record in day_data: + # Get minute and device_id from record + record_time = record[0] # minute column + device_id = record[1] # device_id column + + if record_time and device_id: + # Calculate minute delta + minute_delta = int((record_time - start_time).total_seconds() / 60) + + if 0 <= minute_delta < arr_source.shape[1]: + # Calculate base index for this device + base_idx = device_to_index[device_id] * len(columns) + + # Fill data for each sensor/measurement type + for col_name, col_offset in columns.items(): + value = record[col_offset] + if value is not None: # Skip NULL values + row_idx = base_idx + list(columns.keys()).index(col_name) + arr_source[row_idx, minute_delta] = value + + return arr_source + +def fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def CalcExtremes(arr_source, length, height): + """ + Calculate min and max values for each row within legal bounds. + Optimized version using numpy vectorized operations. + + Parameters: + arr_source: numpy array of shape (height, length+4) containing data and bounds + length: number of data points to process (typically 1440 for minutes in a day) + height: number of rows in the array + + Returns: + numpy array with min/max values stored in columns 1442 and 1443 + """ + # Extract the data portion and bounds + data = arr_source[:, :length] + ignore_below = arr_source[:, 1440:1441] # Keep 2D shape for broadcasting + ignore_above = arr_source[:, 1441:1442] # Keep 2D shape for broadcasting + + # Create masks for valid values + above_min_mask = data >= ignore_below + below_max_mask = data <= ignore_above + valid_mask = above_min_mask & below_max_mask + + # Create a masked array to handle invalid values + masked_data = np.ma.array(data, mask=~valid_mask) + + # Calculate min and max values for each row + row_mins = np.ma.min(masked_data, axis=1).filled(-0.001) + row_maxs = np.ma.max(masked_data, axis=1).filled(-0.001) + + # Store results + arr_source[:, 1442] = row_mins + arr_source[:, 1443] = row_maxs + + return arr_source + +def plot(arr, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def ShowArray(arr, threshold, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + plt.axhline(y=threshold, color='red', linestyle='--', + label=f'Threshold: {threshold:.3f}') + plt.xlabel('Index') + plt.ylabel('Value') + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def AddLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([s_table[i] for i in range(sensors_c)]) + min_vals = np.array([sensor_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([sensor_legal_values[t][1] for t in sensor_types]) + windows = np.array([sensor_legal_values[t][2] for t in sensor_types]) + + # Get values for each row based on sensor type + row_windows = windows[sensor_indices] + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Process rows that need cleaning (window > 2) + clean_mask = row_windows > 2 + if np.any(clean_mask): + # Clean each row with its corresponding window size + for window in np.unique(row_windows[clean_mask]): + # Get indices of rows that need this window size + rows_to_clean = np.where(clean_mask & (row_windows == window))[0] + + # Clean each row individually (since clean_data_vectorized expects 1D input) + for row_idx in rows_to_clean: + arr_source[row_idx, :1440] = clean_data_vectorized( + arr_source[row_idx, :1440], + window, + percentile + ) + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + + return arr_source + +def AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([smells_table[i] for i in range(sensors_c)]) + min_vals = np.array([smell_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([smell_legal_values[t][1] for t in sensor_types]) + # Get values for each row based on sensor type + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Replace values smaller than smell_min and larger than smell_max with no_smell + # Create a mask for the data points (first 1440 columns) + data_mask_below = arr_source[:, :1440] < smell_min + data_mask_above = arr_source[:, :1440] > smell_max + data_mask_invalid = data_mask_below | data_mask_above + + # Replace invalid values with no_smell + arr_source[:, :1440][data_mask_invalid] = no_smell + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + return arr_source + +def AddLimits(arr_source, devices_c, sensors_c, percentile): + for y in range(devices_c*sensors_c): + sensor_index = y % sensors_c + min_ok, max_ok, window = sensor_legal_values[s_table[sensor_index]] + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "before_clean_sensor.png") + if window > 2: + arr_source[y, :1440] = clean_data_vectorized(arr_source[y, :1440], window, percentile) + + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "after_clean_sensor.png") + + arr_source[y][1440] = min_ok + arr_source[y][1441] = max_ok + return arr_source + +def clean_data_vectorized(data, window, percentile): + """ + Vectorized version of clean_data function using pure numpy + First removes zeros, then cleans outliers + + Parameters: + data: numpy array of sensor readings + window: int, size of rolling window + percentile: float, percentile threshold for deviation filtering + """ + # Create a copy to avoid modifying original data + working_data = data.copy() + + # Replace zeros with NaN + zero_mask = working_data == 0 + working_data[zero_mask] = np.nan + + # Create rolling window view of the data + def rolling_window(a, window): + shape = a.shape[:-1] + (a.shape[-1] - window + 1, window) + strides = a.strides + (a.strides[-1],) + return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides) + + # Pad array for edge handling + pad_width = window // 2 + padded = np.pad(working_data, pad_width, mode='edge') + + # Create rolling windows + windows = rolling_window(padded, window) + + # Calculate rolling median (ignoring NaN values) + medians = np.nanmedian(windows, axis=1) + + # Forward/backward fill any NaN in medians + # Forward fill + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), 0) + np.maximum.accumulate(idx, out=idx) + medians[mask] = medians[idx[mask]] + + # Backward fill any remaining NaNs + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), mask.shape[0] - 1) + idx = np.minimum.accumulate(idx[::-1])[::-1] + medians[mask] = medians[idx[mask]] + + # Calculate deviations (ignoring NaN values) + deviations = np.abs(working_data - medians) + + # Calculate threshold (ignoring NaN values) + threshold = np.nanpercentile(deviations, percentile) + + # Create mask and replace outliers with median values + # Points are good if they're not NaN and deviation is within threshold + good_points = (~np.isnan(working_data)) & (deviations <= threshold) + + # Replace all bad points (including zeros and outliers) with median values + result = np.where(good_points, working_data, medians) + + return result + + +def process_chunk(args): + """ + Process a chunk of rows + """ + chunk, sensors_c, sensor_legal_values, s_table, window, percentile = args + result = np.copy(chunk) + + # Process all time series in the chunk at once + result[:, :1440] = np.array([ + clean_data_vectorized(row[:1440], window, percentile) + for row in chunk + ]) + + # Set limits for all rows in chunk using vectorized operations + sensor_indices = np.arange(len(chunk)) % sensors_c + min_values = np.array([sensor_legal_values[s_table[i]][0] for i in sensor_indices]) + max_values = np.array([sensor_legal_values[s_table[i]][1] for i in sensor_indices]) + + result[:, 1440] = min_values + result[:, 1441] = max_values + + return result + + +def FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Optimized version of FillImage function that fills the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + group_by: grouping strategy ("sensortype" or other) + bw: boolean flag for black and white output + + Returns: + arr_stretched: Filled array with RGB values + and vocs_scaled aray from 0 to 1280 + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Pre-calculate VOC rows mask + if group_by != "sensortype": + voc_rows = np.arange(stripes) >= 5 * devices_c + else: + voc_rows = (np.arange(stripes) % sensors_c) >= 5 + + # Pre-calculate destination row mapping for sensortype grouping + if group_by == "sensortype": + row_indices = np.arange(stripes) + sensor_indices = row_indices % sensors_c + device_indices = row_indices // sensors_c + dest_rows = sensor_indices * devices_c + device_indices + dest_rows = dest_rows[:, np.newaxis] * stretch_by + np.arange(stretch_by) + else: + row_indices = np.arange(stripes)[:, np.newaxis] * stretch_by + np.arange(stretch_by) + + # Optimize color calculation functions + def best_color_vectorized(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + def gray_color_vectorized(vals): + """Vectorized version of GrayColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 255).astype(np.int32) + return vals, vals, vals + + color_func = gray_color_vectorized if bw else best_color_vectorized + + # Process all rows at once + valid_mask = scaled_day[:, :minutes] != -0.001 + big_min = scaled_day[:, 1442:1443] # Keep 2D shape for broadcasting + big_max = scaled_day[:, 1443:1444] + + # Calculate k factors where max > min + valid_range_mask = big_max > big_min + k = np.zeros_like(big_min) + k[valid_range_mask] = (1280 if not bw else 255) / (big_max[valid_range_mask] - big_min[valid_range_mask]) + + # Calculate normalized values for all rows at once + normalized_vals = np.zeros_like(scaled_day[:, :minutes]) + valid_range_indices = np.where(valid_range_mask)[0] + + normalized_vals[valid_range_indices] = ( + k[valid_range_indices] * + (scaled_day[valid_range_indices, :minutes] - big_min[valid_range_indices]) + ) + + # Invert VOC rows + normalized_vals[voc_rows] = (1279 if not bw else 255) - normalized_vals[voc_rows] + + # Apply valid mask + normalized_vals[~valid_mask] = 0 + + # Convert to RGB + r, g, b = color_func(normalized_vals) + + # Create RGB array + rgb_values = np.stack([r, g, b], axis=-1) + + # Handle special case where max == min + equal_range_mask = ~valid_range_mask + if np.any(equal_range_mask): + rgb_values[equal_range_mask.ravel()] = 128 + + # Fill the stretched array efficiently + if group_by == "sensortype": + arr_stretched[dest_rows] = rgb_values[:, None] + else: + arr_stretched[row_indices] = rgb_values[:, None] + + return arr_stretched, normalized_vals[voc_rows] + + +def FillSmellImage_optimized(scaled_day, arr_stretched, y_offset): + """ + Fill the stretched array with colored sensor data from scaled_day. + + Parameters: + scaled_day: 2D array of shape (70, 1444) containing sensor readings + arr_stretched: 3D array of shape (2685, 1640, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stretch_by = 20 + x_offset = 200 + + def best_color_vectorizedS(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + # Process each row in scaled_day + for row_idx in range(scaled_day.shape[0]): + # Extract min and max for this row + row_min = scaled_day[row_idx, 1442] + row_max = scaled_day[row_idx, 1443] + + # Get data for this row (first 1440 elements) + row_data = scaled_day[row_idx, :1440] + + # Check if min and max are the same + if row_min == row_max: + # Create gray stripe + stripe = np.ones((stretch_by, 1440, 3), dtype=np.int32) * 128 + else: + # Normalize the data between 0 and 1279 + k = 1280 / (row_max - row_min) + normalized_vals = k * (row_data - row_min) + normalized_vals = np.clip(normalized_vals, 0, 1279) + + # Convert to RGB + r, g, b = best_color_vectorizedS(normalized_vals) + + # Create RGB stripe + stripe = np.zeros((stretch_by, 1440, 3), dtype=np.int32) + + # Fill stripe with the same color pattern for all stretch_by rows + for i in range(stretch_by): + stripe[i, :, 0] = r + stripe[i, :, 1] = g + stripe[i, :, 2] = b + + # Calculate the y position for this stripe + y_pos = y_offset + row_idx * stretch_by + + # Place the stripe into arr_stretched + print(stretch_by, stripe.shape, arr_stretched.shape, y_pos) + arr_stretched[y_pos:y_pos+stretch_by, x_offset:x_offset+1440, :] = stripe + + return arr_stretched + +def FillImage(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % sensors_c) >= 5]) + # Vectorize the BestColor function + if not bw: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = scaled_day[row, 1442] # min value + big_max = scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if not bw: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if not bw: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + sensor_index = row % sensors_c + device_index = int(row/sensors_c) + dest_row = sensor_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def FillRadarImage(scaled_day, devices_c, bands, arr_stretched, group_by, map_type): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + bands: number of bands per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * bands + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % bands) >= 5]) + # Vectorize the BestColor function + if map_type == 3: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = 0 #scaled_day[row, 1442] # min value + big_max = 255 #scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if map_type == 3: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if map_type == 3: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + band_index = row % bands + device_index = int(row/bands) + dest_row = band_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def GetFullLocMapDetails(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + local_timezone = pytz.timezone('America/Los_Angeles') # Replace with your local timezone + dest_path = os.path.dirname(map_file) + + parts = map_file.split("/") + deployment = parts[-2] + parts1 = parts[-1].split("_") + date_string = parts1[1] + + deployments = GetDeploymentB(deployment, -1) #All + last_locations_file = "" + last_per_minute_file = "" + + today = datetime.today() + deployment_details = deployments[0] + deployment_pair = deployment_details[0] + proximity_lst = deployment_details[1] + + date_object = datetime.strptime(date_string, "%Y-%m-%d") + date_object_midnight = local_timezone.localize(date_object.replace(hour=0, minute=0, second=0, microsecond=0)) + selected_epoch = int(date_object_midnight.timestamp()) + + sel_date = datetime.fromtimestamp(selected_epoch) + devices_list_str = GetDevicesList(deployment_details, sel_date)#.split(',') + devices_list = ast.literal_eval(devices_list_str) + return devices_list, selected_epoch, dest_path + +def median_filter(data, window_size): + filtered_data = [] + print(len(data)) + window = deque(maxlen=window_size) + last_value = -1 + offset = 0 + added_old = 0 + for value in data: + if value != '': + added_old = 0 + last_value = value + window.append(value) + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + else: + if last_value != -1: + if added_old < window_size: + added_old = added_old + 1 + window.append(last_value) + else: + window.append(-1) + + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + + else: + offset +=1 + + if len(filtered_data) > 0: + offset += (window_size // 2) + #if starts empty, just leav it such, do not fake backwards from midnight + first_val = -1# filtered_data[0] + last_val = filtered_data[-1] + front_padding = [first_val] * offset + remaining = len(data) - len(filtered_data) - len(front_padding) + back_padding = [last_val] * remaining + out_data = front_padding + filtered_data + back_padding + else: + out_data = data + #add front and back padding + + return out_data + +def FilterGlitches(wave_in, filter_minutes): + + if(filter_minutes > 0): + notfiltered_wave = [i[0] for i in wave_in] + filtered_wave = median_filter(notfiltered_wave, filter_minutes) + for i, value in enumerate(filtered_wave): + wave_in[i][0] = value + + return wave_in + +def setup_timezone_converter(time_zone_st): + """ + Setup timezone converter to be reused + + Parameters: + time_zone_st (str): Timezone string (e.g. 'Europe/Berlin') + + Returns: + pytz.timezone: Timezone object for conversion + """ + return pytz.timezone(time_zone_st) + +def ReadDailyRadar(MAC, current_date): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + start_of_day = ToLocal(calendar.timegm(datetime(current_date.year, current_date.month,current_date.day, 0, 0).timetuple())) + end_of_day = start_of_day + 1440 * 60 + file = os.path.join(scriptDir, "DB/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file = file.replace("\\","/") + file1 = os.path.join(scriptDir, "DB/processed_db/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file1 = file1.replace("\\","/") + if (not path.exists(file) and not path.exists(file1)): + print(file + " and " + file1 + " are not found") + return [] + result = [] + min_OK = "0" + sqlr = "SELECT * FROM radars WHERE time >= "+str(start_of_day) +" and time < "+str(end_of_day) +" ORDER BY time ASC" + #sqlr = "SELECT Date, high, low from "+sensor.lower()+"s1Min"+" WHERE low >= "+min_OK+" and Date >= "+str(start_of_day) +" and Date < "+str(end_of_day) + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + # M0 ............M8 S2 ........S8 + #day_minutes_data = [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]] * (24 * 60 + 2) + day_minutes_data = [[0] * 16 for _ in range(24 * 60)] + #for each gate lets find maximum value per minute + for mgate in range(9): + max_per_min = 0 + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[mgate + 6] > day_minutes_data[minute_m][mgate]: + day_minutes_data[minute_m][mgate] = minute_data[mgate + 6] + + for sgate in range(7): + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[sgate + 17] > day_minutes_data[minute_m][sgate+9]: + day_minutes_data[minute_m][sgate+9] = minute_data[sgate + 17] + + return day_minutes_data + + +def FromLocalMidnight(epoch_time, local_delta): + + # Convert epoch time to UTC datetime object + print(type(epoch_time)) + print(epoch_time) + local_datetime = datetime.datetime.utcfromtimestamp(epoch_time+local_delta).replace(tzinfo=pytz.UTC) + + # Calculate minute count from midnight + minutes_from_midnight = (local_datetime - local_datetime.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60 + return minutes_from_midnight + +def process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest): + """ + NumPy-based version of wave processing + + Parameters: + my_data: List of tuples containing (time_val, device_id, other radar_fields_of_interest) + time_zone_s: Target timezone string + device_id_2_threshold: Dictionary mapping device_ids to their thresholds + + Returns: + List of [device_id, max_val] pairs for each minute + """ + wave_m = None + tz = pytz.timezone(time_zone_s) + if not my_data: + return [["", -1] for _ in range(1440)] + + vectorized_BestColor = np.vectorize(BestColor) + stripes = len(device_id_2_threshold) + stretch_by = 5 + minutes = 1440 + arr_source = np.zeros((int(stripes), minutes), dtype=np.float32) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + index_map = {word: idx for idx, word in enumerate(radar_fields_of_interest)} + devices_map = {word: idx for idx, word in enumerate(device_id_2_threshold)} + times = [] + start_time = 0 + for data_set in my_data: + time_stamp = data_set[0] + if start_time == 0: + + # Convert timestamp to a datetime object in UTC + local_tz = pytz.timezone(time_zone_s) + local_time = time_stamp.astimezone(local_tz) + # Set the time to the start of the day in the local time zone + start_of_day_local = local_time.replace(hour=0, minute=0, second=0, microsecond=0) + # Convert the start of the day back to UTC + start_time = start_of_day_local.astimezone(pytz.utc) + + diff = time_stamp - start_time + minute = int(diff.total_seconds() / 60) + device_id = data_set[1] + field_name = device_id_2_threshold[device_id][0] + field_index = index_map[field_name] + threshold = device_id_2_threshold[device_id][1] + value = data_set[2+field_index] + if value > threshold: + arr_source[devices_map[device_id]][minute] = value + #np.savetxt('output.csv', arr_source, delimiter=',') + if False: + for yy in range(stripes): + rgb_row = vectorized_BestColor(1280*arr_source[yy]/100) + rgb_reshaped = np.array(rgb_row).reshape(3, minutes).T + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_reshaped + + SaveImageInBlob(image_file, arr_stretched, []) + + + max_values = np.max(arr_source, axis=0) + + # Get indices (0-based) + wave_m = np.argmax(arr_source, axis=0) + + # Add 1 to convert to 1-based indexing + wave_m = wave_m + 1 + + # Set to 0 where the column was all zeros + wave_m[max_values == 0] = 0 + + return wave_m + + + +def ReadDailyCollapsedFastRadar(MAC, time_from_str, time_to_str): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins based on s28 (stationary[2] to [8]) + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + result = [] + min_OK = "0" + sqlr = "SELECT radar_max FROM devices WHERE MAC = '"+MAC +"'" + print(sqlr) + DB_to_be_found_in_full = os.path.join(scriptDir, "main.db") + DB_to_be_found_in_full = DB_to_be_found_in_full.replace("\\","/") + result = QuerrySql(DB_to_be_found_in_full, sqlr) + sqlr = "SELECT date, low FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + if len(result)>0: + if result[0][0] == 1: + sqlr = "SELECT date, high FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + return result + +def vectorized_best_color_numpy(values): + """Vectorized version of BestColor using pure NumPy""" + # Ensure values are within range + values = np.clip(values, 0, 1279) + + # Initialize output arrays + r = np.zeros_like(values, dtype=np.uint8) + g = np.zeros_like(values, dtype=np.uint8) + b = np.zeros_like(values, dtype=np.uint8) + + # Create masks for each range + mask_0_255 = values < 256 + mask_256_511 = (values >= 256) & (values < 512) + mask_512_767 = (values >= 512) & (values < 768) + mask_768_1023 = (values >= 768) & (values < 1024) + mask_1024_plus = values >= 1024 + + # Set values for each range using masks + r[mask_0_255] = 255 + g[mask_0_255] = values[mask_0_255] + + r[mask_256_511] = 511 - values[mask_256_511] + g[mask_256_511] = 255 + + g[mask_512_767] = 255 + b[mask_512_767] = values[mask_512_767] - 512 + + g[mask_768_1023] = 1023 - values[mask_768_1023] + b[mask_768_1023] = 255 + + r[mask_1024_plus] = values[mask_1024_plus] - 1024 + b[mask_1024_plus] = 255 + + return np.stack([r, g, b], axis=-1) + +def create_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + + color_values[:, :] = ((values[batch_slice, :] - min_val) / (max_val - min_val)) * 1279.0 + #color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def create_light_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for light data (range 0-4095) + + Parameters: + my_data (list): Data from the database query + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for normalization (default: 0) + max_val (float): Maximum value for normalization (default: 4095) + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 1 for light data) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float - light data is in column 2 + # Reshape to match expected format (n_samples, n_fields) + values = data_array[:, 2].astype(np.float32).reshape(-1, 1) + + # Process in batches to avoid memory issues + batch_size = 1000 + + if bw: + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to grayscale (0-255) + gray_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 255.0) + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # Assign values to the image array + for i in range(end_idx - start_idx): + # Create RGB grayscale (same value for R, G, B) + gray_rgb = np.full(3, gray_values[i, 0], dtype=np.uint8) + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = gray_rgb + else: + # Color mode + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to color range (0-1279) + color_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 1279.0) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # For each value, calculate its RGB color and assign to the image + for i in range(end_idx - start_idx): + # Convert normalized value to RGB using vectorized_best_color_numpy + rgb_value = vectorized_best_color_numpy(np.array([color_values[i, 0]]))[0] + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = rgb_value + + return wave_m + +def create_temperature_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for temperature data with alarm levels + + Parameters: + my_data (list): Data from the database query with columns for minute, device_id, temperature_avg, alarm_level + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names - should be ['temperature', 'temperature_state'] + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for temperature normalization + max_val (float): Maximum value for temperature normalization + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 2 for temperature data: temperature and alarm state) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + temperature = data_array[batch_slice][i, 2] + alarm_level = 0 + + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row - index 0, 2, 4...) + # Normalize temperature to the color range and create color + if not bw: + # For color mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 1279.0, 0, 1279) + temp_rgb = vectorized_best_color_numpy(np.array([normalized_temp]))[0] + else: + # For B&W mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 255.0, 0, 255) + gray_value = int(normalized_temp) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the temperature color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row - index 1, 3, 5...) + # Set color based on alarm level (0=green, 1=yellow, 2=red) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + + +def create_humidity_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=100): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return wave_m + + # Number of fields + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + # Define the color mapping function based on the exact spectrum we want + def get_color(t): + """Get RGB color from humidity 0-100""" + # Define color stops - exact RGB values at each step + # Format: (position, (r, g, b)) + #color_stops = [ + #(0, (0, 0, 255)), # Blue + #(20, (0, 255, 255)), # Cyan + #(40, (0, 255, 0)), # Green (centered at 40) + #(60, (255, 255, 0)), # Yellow + #(80, (255, 0, 0)), # Red + #(100, (255, 0, 255)) # Violet + #] + + color_stops = [ + (0, (0, 0, 255)), # Blue + (16, (0, 255, 255)), # Cyan + (32, (0, 255, 0)), # Green (now centered at 32) + (60, (255, 255, 0)), # Yellow + (80, (255, 0, 0)), # Red + (100, (255, 0, 255)) # Violet + ] + + # Ensure t is within range + t = max(0, min(100, t)) + + # Find the two stops to interpolate between + for i in range(len(color_stops) - 1): + pos1, color1 = color_stops[i] + pos2, color2 = color_stops[i+1] + + if pos1 <= t <= pos2: + # Linear interpolation between the two color stops + ratio = (t - pos1) / (pos2 - pos1) + r = int(color1[0] + ratio * (color2[0] - color1[0])) + g = int(color1[1] + ratio * (color2[1] - color1[1])) + b = int(color1[2] + ratio * (color2[2] - color1[2])) + return r, g, b + + # Should never reach here + return 0, 0, 0 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + humidity = float(data_array[batch_slice][i, 2]) + + # Map humidity from min_val-max_val to 0-100 for our color function + normalized_temp = 100.0 * (humidity - min_val) / (max_val - min_val) if max_val > min_val else 0 + normalized_temp = max(0, min(100, normalized_temp)) # Clamp to 0-100 + + alarm_level = 0 + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row) + if not bw: + # Get RGB color from our direct mapping function + r, g, b = get_color(normalized_temp) + + # OpenCV uses BGR ordering, not RGB + temp_rgb = np.array([b, g, r], dtype=np.uint8) + else: + # For B&W mode + gray_value = int(normalized_temp * 2.55) # 0-100 to 0-255 + gray_value = max(0, min(255, gray_value)) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the humidity color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) #thisis B,G,R !!! + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + +def create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields, device_to_index, base_minute, timezone_st, smell_component_stretch_by, selected_date, y_offset): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return + + minutes = 1440 + devices_c = len(device_to_index) + sensors_c = len(fields) + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + st = time.time() + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, timezone_st) + st = time.time() + arr_source = fast_fill_smell_array_from_timescale(my_data, time_from_str, device_to_index, arr_source_template, timezone_st) + arr_source = AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + scaled_day = CalcExtremes(arr_source, minutes, stripes) + + arr_stretched = FillSmellImage_optimized(scaled_day, arr_stretched, y_offset) + + return + + +def create_optimized_heatmap_simple(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for i in range(0, len(data_array)): + rgb_value = ((values[i] - min_val) / (max_val - min_val)) * 1279.0 + wave_m[i, x_coords[i]] = rgb_value + + return wave_m + + +def create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] / 100.0) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png'): + """ + Visualize how GMM separates the stationary signal into components + """ + # Prepare data + X = stationary_signal.reshape(-1, 1) + + # Fit GMM + gmm = GaussianMixture(n_components=2, random_state=42) + gmm.fit(X) + + # Get parameters + means = gmm.means_.flatten() + stds = np.sqrt(gmm.covariances_.flatten()) + weights = gmm.weights_ + + # Create histogram of actual data + plt.figure(figsize=(12, 6)) + + # Plot histogram of actual data + plt.hist(X, bins=50, density=True, alpha=0.6, color='gray', + label='Actual Signal Distribution') + + # Generate points for GMM curves + x = np.linspace(X.min(), X.max(), 200) + + # Plot individual components + for i in range(len(means)): + plt.plot(x, weights[i] * stats.norm.pdf(x, means[i], stds[i]), + label=f'Component {i+1}: mean={means[i]:.2f}, std={stds[i]:.2f}') + + # Plot combined GMM + gmm_curve = np.zeros_like(x) + for i in range(len(means)): + gmm_curve += weights[i] * stats.norm.pdf(x, means[i], stds[i]) + plt.plot(x, gmm_curve, 'r--', linewidth=2, label='Combined GMM') + + # Add vertical lines for threshold + baseline = min(means) + threshold = baseline + 3 * np.sqrt(gmm.covariances_.flatten()[np.argmin(means)]) + plt.axvline(x=baseline, color='g', linestyle='--', label='Baseline') + plt.axvline(x=threshold, color='r', linestyle='--', label='Threshold') + + plt.title('Gaussian Mixture Model Components of Stationary Signal') + plt.xlabel('Signal Value') + plt.ylabel('Density') + plt.legend() + plt.grid(True) + + # Save and close + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def process_location_data(location_data): + """ + Convert raw location data into aligned time series. + """ + timestamps = np.array([t[0] for t in location_data]) + stationary = np.array([t[1] for t in location_data]) + motion = np.array([t[2] for t in location_data]) + return timestamps, stationary, motion + +def detect_presence_for_location(stationary_signal, motion_signal, + motion_threshold=5, gmm_components=2): + """ + Simplified presence detection for a single location. + Returns presence mask and parameters. + """ + # Fit GMM to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png') + + # Get baseline and threshold + baseline = min(gmm.means_)[0] + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std + + # Detect presence + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # Smooth presence detection (15 seconds window = 1.5 samples at 10sec sampling) + smooth_window = 3 + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, threshold + +def find_current_location(data_sets, start_time, end_time, motion_threshold=10): + """ + Analyze presence across multiple locations for each minute. + + Parameters: + ----------- + data_sets : dict + Dictionary of location_name: data_tuples pairs + start_time : datetime + Start time for analysis + end_time : datetime + End time for analysis + motion_threshold : float + Threshold for significant motion detection + + Returns: + -------- + dict + Minute by minute analysis of presence and movement + """ + # Process each location's data + location_data = {} + for location, data in data_sets.items(): + timestamps, stationary, motion = process_location_data(data) + presence, threshold = detect_presence_for_location(stationary, motion, motion_threshold) + location_data[location] = { + 'timestamps': timestamps, + 'presence': presence, + 'motion': motion, + 'stationary': stationary, + 'threshold': threshold + } + + # Create minute-by-minute analysis + current_time = start_time + results = [] + + while current_time < end_time: + minute_end = current_time + timedelta(minutes=1) + + # Analysis for current minute + minute_status = { + 'timestamp': current_time, + 'locations': [], + 'moving_locations': [], + 'presence_values': {}, + 'motion_values': {}, + 'status': 'nobody_present' + } + + # First pass: collect all presence and motion values + for location, data in location_data.items(): + # Find indices for current minute + mask = (data['timestamps'] >= current_time) & (data['timestamps'] < minute_end) + if not any(mask): + continue + + presence_in_minute = data['presence'][mask] + motion_in_minute = data['motion'][mask] + stationary_in_minute = data['stationary'][mask] + + if any(presence_in_minute): + minute_status['presence_values'][location] = np.max(stationary_in_minute) + minute_status['motion_values'][location] = np.max(motion_in_minute) + + # If no presence detected anywhere + if not minute_status['presence_values']: + minute_status['status'] = 'nobody_present' + results.append(minute_status) + current_time += timedelta(minutes=1) + continue + + + # Find location with strongest presence + primary_location = max(minute_status['presence_values'].items(), + key=lambda x: x[1])[0] + + # Count locations with significant motion + moving_locations = [loc for loc, motion in minute_status['motion_values'].items() + if motion > motion_threshold] + + plot(motion, filename=f"motion.png", title=f"Motion", style='line') + # Update status based on motion and presence + if len(moving_locations) > 1: + # Multiple locations with significant motion indicates multiple people + minute_status['status'] = 'multiple_people_moving' + minute_status['locations'] = moving_locations + minute_status['moving_locations'] = moving_locations + else: + # Single or no motion - assign to location with strongest presence + minute_status['locations'] = [primary_location] + if moving_locations: + minute_status['status'] = f'single_person_moving_in_{primary_location}' + minute_status['moving_locations'] = moving_locations + else: + minute_status['status'] = f'single_person_stationary_in_{primary_location}' + + results.append(minute_status) + current_time += timedelta(minutes=1) + + return results + +def get_size(obj, seen=None): + # Recursively find size of objects and their contents + if seen is None: + seen = set() + + obj_id = id(obj) + if obj_id in seen: + return 0 + + seen.add(obj_id) + size = sys.getsizeof(obj) + + if isinstance(obj, (list, tuple, set, dict)): + if isinstance(obj, (list, tuple, set)): + size += sum(get_size(i, seen) for i in obj) + else: # dict + size += sum(get_size(k, seen) + get_size(v, seen) for k, v in obj.items()) + + return size + +def CreatePresenceMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, + fast, filter_minutes, time_zone_s): + + #global Id2MACDict + data_sets = {} + ids_list = [] + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + time_from, time_to = GetLocalTimeForDateSimple(selected_date, time_zone_s) + + for details in devices_list: + + sql = get_device_radar_only_query(str(details[1]), time_from_str, time_to_str, [details[1]]) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + data_sets[details[2]] = cur.fetchall()#cur.fetchone() + + + + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, time_from, time_to) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") + + print(f"Dictionary size: {get_size(data_sets)} bytes") + devices_list_str = ','.join(str(device[1]) for device in devices_list) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + sql = get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #thresholds_dict = {} + + #stretch_to_min_max = True + #devices_c = len(devices_list) + + #data_sets = { + #'living_room': my_data1, + #'kitchen': my_data2, + #'bedroom1': my_data3, + #'bedroom2': my_data4, + #'hallway': my_data5, + #'bathroom': my_data6, + #'office': my_data7 + #} + + sensors_c = 1#len(sensors_table) + + + image_file = location_image_file + + minutes = 1440 + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + #device_counter = 0 + stretch_by = 5 + + #arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + + + # Get start and end times from your data + start_time = min(data_sets['living_room'][0][0], + data_sets['kitchen'][0][0], + # ... add other locations + ) + end_time = max(data_sets['living_room'][-1][0], + data_sets['kitchen'][-1][0], + # ... add other locations + ) + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, start_time, end_time) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") +#---------------------------------------------------------------------------------------------------- + + + + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + base_minute = ConvertToBase(time_from_str, time_zone_s) + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + +def ConvertToBase(time_from_str, time_zone_s): + print(time_from_str) + dt = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + return dt + +def CreateFullLocationMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + if scale_global and chart_type != 3 and chart_type != 4: #"digital" and chart_type != "collapsed" + + max_gate={} + for gate in range(9): + max_gate[str(gate)+"_m"] = 0 + max_gate[str(gate)+"_s"] = 0 + + device_counter = 0 + for details in devices_list: + MAC, threshold, location_name, description = details + if threshold == None: + threshold = '["s3_max",12]' + + + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + for gate in range(9): + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > max_gate[str(gate)+"_m"]): + max_gate[str(gate)+"_m"] = minute_radar_lists[minute_m][gate] + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > max_gate[str(gate)+"_s"]): + max_gate[str(gate)+"_s"] = minute_radar_lists[minute_m][gate + 7] + + + if (chart_type == 2): #"analog" + + + #fields = ['absent_min', 'stationary_max', 'moving_max', 'both_max', + #'m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + #'m6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + #'s4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max'] + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + device_counter = 0 + stretch_by = 5 + + arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + elif (chart_type == 3): #"digital" + device_counter = 0 + for details in devices_list: + dev_id = details[0] + MAC, threshold, location_id, description = GetMacThrFromId(dev_id) + if threshold == None: + threshold = 30 + + sensor = "Radar" + location_name = location_names[location_id] + pickle_file = os.path.join(scriptDir, "scratch/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_radarM.pkl") + pickle_file = pickle_file.replace("\\","/") + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + y = 0 + sensor_index = 0 + + #location_index = 0 + + for gate in range(9): + threshold = 15 + if (gate > 1): + threshold = thresholds_dict[dev_id][gate-2] + + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > threshold): + minute_radar_lists[minute_m][gate] = 100 + else: + minute_radar_lists[minute_m][gate] = 0 + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > threshold): + minute_radar_lists[minute_m][gate + 7] = 100 + else: + minute_radar_lists[minute_m][gate + 7] = 0 + + m_max = 100 + m_min = 0 + s_max = 100 + s_min = 0 + + km = 0 + if(m_max > m_min): + km = 1280/(m_max - m_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_m = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_m[minute_m] = minute_radar_lists[minute_m][gate] + + if gate < 2: + DoDisplay(wave_m, location_name+" "+ description+" " + str(gate)) + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + arr_source[2*gate, :] = wave_m + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_m[col] + if sens_val != 0: + r,g,b=BestColor(km*(sens_val-m_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + #print(y, row, devices_c, sensor_index, location_index, stretch_index) + + #arr_stretched[y, :] = rgb_row + + if gate > 1: + ks = 0 + if(s_max > s_min): + if bw: + ks = 255/(s_max - s_min) + else: + ks = 1280/(s_max - s_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_s = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + arr_source[2*gate + 1, :] = wave_s + + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_s[col] + if sens_val != 0: + if bw: + r = ks*(sens_val-s_min) + g = r + b = r + else: + r,g,b=BestColor(ks*(sens_val-s_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + device_counter += 1 + print("stop") + + elif (chart_type == 4): #"collapsed" + + stretch_by = 50 + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",50] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",50]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",50] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + result_np = None + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + if result_np is not None: + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + + for minute_m in range(1440): + try: + + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + + #print("stop") + #print(r,g,b) + SaveObjectInBlob(image_file+".bin", present_at) + SaveImageInBlob(image_file, arr_stretched) + +def CreateFullLocationMapLabelsOut(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + + if (chart_type == 8): #"all graphs" + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + show_radar = True + show_light = True + show_temperature = True + show_humidity = True + show_smell = True + + labels_width = 200 + title_labels_height = 40 + title_label_width = 100 + + #common + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_line = cv2.LINE_AA + + #different + title_label_font_scale = 1 + title_label_font_color = (0, 0, 0)#(128, 255, 255) + title_label_font_thickness = 2 + + label_font_scale = 0.5 + label_font_color = (0, 0, 0)#(0, 255, 255) + label_font_thickness = 1 + + fields_n = len(fields) + + radar_stripes = len(devices_list) * fields_n + radar_stretch_by = 5 + + light_stripes = len(devices_list) + light_stretch_by = 20 + + smell_sensors_stripes = 10 * len(devices_list) + other_sensors_stripes = len(devices_list) + + temp_stripe_width = 15 + alarm_stripe_width = 5 + temperature_stretch_by = temp_stripe_width + alarm_stripe_width # Total height per device + + humidity_stripe_width = 15 + humidity_stretch_by = humidity_stripe_width + alarm_stripe_width + smell_component_stretch_by = 20 + + text_dimensions = get_text_dimensions("TEST", label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + + all_maps_height = 0 + + # radar, light, temperature, humidity, smell*10 + + if show_radar: + all_maps_height = title_labels_height + radar_stripes*radar_stretch_by + + if show_light: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*light_stretch_by + + if show_temperature: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*temperature_stretch_by + + if show_humidity: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*humidity_stretch_by + + if show_smell: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*smell_component_stretch_by * 10 + + + if all_maps_height == 0: + return + + vertical_offset = 0 + arr_stretched = np.full((all_maps_height, minutes+labels_width, 3), [255, 174, 70], dtype=np.uint8) + + #Lets add divider lines + x = 190 + if show_radar: + stretch_by = radar_stretch_by + cnt = 0 + for details in devices_list: + y = vertical_offset + title_labels_height + (cnt)*fields_n*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + radar_stripes*radar_stretch_by + vertical_offset = vertical_offset + section_height + if show_light: + stretch_by = light_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + + if show_temperature: + stretch_by = temperature_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + if show_humidity: + stretch_by = humidity_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*humidity_stretch_by + vertical_offset = vertical_offset + section_height + if show_smell: + stretch_by = smell_component_stretch_by + + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*10*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + #section_height = title_labels_height + other_sensors_stripes**stretch_by * 10 + #vertical_offset = vertical_offset + section_height + + #all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*stretch_by * 10 + + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + labels = [] + title_labels = [] + vertical_offset = 0 + ######################################## RADAR ################################################################## + if show_radar: + title_label_text = "RADAR" + fields_s = fields + stripes = radar_stripes + stretch_by = radar_stretch_by + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), vertical_offset + 10 + title_text_height), label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data != None: + + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields_s, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(radar_stretch_by): + y = yy * radar_stretch_by + stretch_index + arr_stretched[title_labels_height+y, 200:] = rgb_row + + print(time.time()-st) + vertical_offset = vertical_offset + title_labels_height + stripes*radar_stretch_by + ######################################## LIGHT ################################################################## + if show_light: + title_label_text = "LIGHT" + fields_s = ['light'] + min_val = 0 + max_val = 4095 + stretch_by = light_stretch_by + stripes = len(devices_list) * len(fields_s) # Calculate number of rows needed + # Calculate the correct vertical offset for light section + + # Draw the light section title at the correct position + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for light section + cnt = 0 + light_ids_list = [] # Create a separate list for light section + for details in devices_list: + dev_id = details[0] + light_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the light section + labels.append((descriptor, (10, vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by), + label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get light data using the existing query function + sql = get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, light_ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(light_ids_list)} + + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process light data + st = time.time() + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + # Use the light-specific function + wave_m = create_light_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Light heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap vertically + st = time.time() + section_start = vertical_offset + title_labels_height + + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + target_y = section_start + y + + # Make sure we're within bounds of the array + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = rgb_row + else: + print(f"Warning: Row {target_y} is out of bounds (max: {arr_stretched.shape[0]-1})") + + vertical_offset = vertical_offset + title_labels_height + stripes*stretch_by + print(f"Light stretching time: {time.time()-st:.4f} seconds") + + ######################################## TEMPERATURE ################################################################## + if show_temperature: + title_label_text = "TEMPERATURE" + fields_s = ['temperature', 'temperature_state'] + + # Define different stripe widths for temperature and alarm + + temp_offset = -16.0 + min_val = 20 + max_val = 30 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * temperature_stretch_by + #y_pos = vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get temperature data + sql = get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, temp_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + t = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if CelsiusToFahrenheit(t) <= 50 or CelsiusToFahrenheit(t) >= 90: + alarm_level = 2 # Critical - should be red + elif CelsiusToFahrenheit(t) <= 60 or CelsiusToFahrenheit(t) >= 80: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], t, alarm_level) + + # Create the heatmap data + wave_m = create_temperature_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Temperature heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for temperature and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + temp_row = wave_m[device_idx * 2] # Temperature row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * temperature_stretch_by + + # Draw the temperature stripe (15 pixels) + for stretch_index in range(temp_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = temp_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## HUMIDITY ################################################################## + ''' + Ideal indoor humidity: 30-50% + Too dry: Below 30% - Can cause dry skin, irritated eyes, and respiratory issues + Too humid: Above 60% - Feels warmer than actual temperature, promotes mold growth + ''' + if show_humidity: + title_label_text = "HUMIDITY" + fields_s = ['humidity', 'humidity_state'] + + # Define different stripe widths for humidity and alarm + + humidity_offset = 0 + min_val = 30#40 + max_val = 60#60 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * humidity_stretch_by + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get humidity data + sql = get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, humidity_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + h = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if h <= 20 or h >= 60: + alarm_level = 2 # Critical - should be red + elif h <= 30 or h >= 50: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], h, alarm_level) + + # Create the heatmap data + wave_m = create_humidity_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Humidity heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for humidity and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + humidity_row = wave_m[device_idx * 2] # Humidity row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * humidity_stretch_by + + # Draw the humidity stripe (15 pixels) + for stretch_index in range(humidity_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = humidity_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## SMELL ################################################################## + if show_smell: + title_label_text = "SMELL" + fields_s = ['S0', 'S1', 'S2', 'S3', 'S4', 'S5', 'S6', 'S7', 'S8', 'S9'] + + # Define different stripe widths for humidity and alarm + + smell_offset = 0 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + if show_humidity: + vertical_offset += title_labels_height + other_sensors_stripes * humidity_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height +80+ text_height + cnt * smell_component_stretch_by * 10 + #y_pos = vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get smell data + sql = get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, smell_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Create the heatmap data + create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields_s, device_to_index, base_minute, time_zone_s, smell_component_stretch_by, selected_date, vertical_offset + 18 + title_text_height) + + + + SaveImageInBlobLabelsOut(image_file, arr_stretched, labels, title_labels) + + print("stop") + + + + + +def CreateDailyLocationMap(location_image_file, devices_list, selected_date, filter_minutes, time_zone_s, stretch_by): + + devices_c = len(devices_list) + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + arr_stretched_sorted = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",50] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",50]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",50] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + rgbsorted_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + presence_minutes = {} + + #we want to generate present_at array + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + for minute_m in range(1440): + try: + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if Loc2Color[device_id_2_location[device_id]][1] in presence_minutes: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [presence_minutes[Loc2Color[device_id_2_location[device_id]][1]][0] + 1, Loc2Color[device_id_2_location[device_id]][0]] + else: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [1, Loc2Color[device_id_2_location[device_id]][0]] + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + start_minute = 0 + for color_key in sorted(presence_minutes): + print(color_key, presence_minutes[color_key]) + rgbsorted_row[start_minute:start_minute+presence_minutes[color_key][0]] = presence_minutes[color_key][1][::-1] + start_minute += presence_minutes[color_key][0] + + #we need to save present_at list to blob + SaveObjectInBlob(image_file+".bin", present_at) + #present_at_back_s = ReadObjectMinIO("daily-maps", image_file+".bin") + #present_at_back = json.loads(present_at_back_s) + #print(present_at_back) + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + arr_stretched_sorted[y, :] = rgbsorted_row + #print("stop") + #print(r,g,b) + SaveImageInBlob(image_file, arr_stretched) + SaveImageInBlob(image_file[:-4]+"S.png", arr_stretched_sorted) + + +def GenerateFullLocationMap(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMap(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def GenerateFullLocationMapLabelsOut(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMapLabelsOut(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def CreateMapFast(map_file, devices_list, selected_date, bw, time_zone_s, radar_part, group_by): + global Id2MACDict + + st = time.time() + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return False, [] + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return False, [] + + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + image_file = map_file + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + temp_offset = -16 + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + print(sql) + #print(sql) + #st = time.time() + print(f"@1 ----{time.time() - st}") + with get_db_connection() as conn: + print(f"@1a ----{time.time() - st}") + with conn.cursor() as cur: + print(f"@1b ----{time.time() - st}") + cur.execute(sql) + day_data = cur.fetchall()#cur.fetchone() + #print(result) + if day_data == None: + print(f"@1c ----{time.time() - st}") + return False, [] + print(f"@2 ----{time.time() - st}") + + stretch_by = 10 + minutes = 1440 + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + print(f"@3 ----{time.time() - st}") + st = time.time() + arr_stretched_template = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) # 3 for RGB channels + print(f"@4a ----{time.time() - st}") + #st = time.time() + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4b ----{time.time() - st}") + #st = time.time() + #arr_source = fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4n ----{time.time() - st}") + st = time.time() + arr_source = fast_fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + print(f"@5 ----{time.time() - st}") + arr_source = AddLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + print(f"@6 ----{time.time() - st}") + scaled_day = CalcExtremes(arr_source, minutes, stripes) + print(f"@7 ----{time.time() - st}") + arr_stretched, vocs_scaled = FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched_template, group_by, bw) + print(f"@8 ----{time.time() - st}") + SaveImageInBlob(image_file, arr_stretched) + print(f"@9 ----{time.time() - st}") + return True, vocs_scaled + + except Exception as e: + AddToLog(traceback.format_exc()) + return False, [] + +def get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + radar_part (str): Radar column name, defaults to 'radar' + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+ {temp_offset} as avg_temperature, + sr.avg_humidity, + sr.pressure_amplitude, + sr.max_light, + rr.radar, + sr.min_s0 as sensor_min_s0, + sr.min_s1 as sensor_min_s1, + sr.min_s2 as sensor_min_s2, + sr.min_s3 as sensor_min_s3, + sr.min_s4 as sensor_min_s4, + sr.min_s5 as sensor_min_s5, + sr.min_s6 as sensor_min_s6, + sr.min_s7 as sensor_min_s7, + sr.min_s8 as sensor_min_s8, + sr.min_s9 as sensor_min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS pressure_amplitude, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX({radar_part}) AS radar + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_device_radar_s28_only_query(time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + +def get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + + +def get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + radar_fields_to_get = "" + q_parts = "" + for field in radar_fields_of_interest: + if field == "s28_min": + q_part = "MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min" + elif field == "s28_max": + q_part = "MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max" + elif field == "m08_max": + q_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max" + elif field == "s2_max": + q_part = "MAX(s2) AS s2_max" + elif field == "s3_max": + q_part = "MAX(s3) AS s3_max" + elif field == "s4_max": + q_part = "MAX(s4) AS s4_max" + elif field == "s5_max": + q_part = "MAX(s5) AS s5_max" + elif field == "s6_max": + q_part = "MAX(s6) AS s6_max" + elif field == "s7_max": + q_part = "MAX(s7) AS s7_max" + elif field == "s8_max": + q_part = "MAX(s8) AS s8_max" + elif field == "m0_max": + q_part = "MAX(m0) AS m0_max" + elif field == "m1_max": + q_part = "MAX(m1) AS m1_max" + elif field == "m2_max": + q_part = "MAX(m2) AS m2_max" + elif field == "m3_max": + q_part = "MAX(m3) AS m3_max" + elif field == "m4_max": + q_part = "MAX(m4) AS m4_max" + elif field == "m5_max": + q_part = "MAX(m5) AS m5_max" + elif field == "m6_max": + q_part = "MAX(m6) AS m6_max" + elif field == "m7_max": + q_part = "MAX(m7) AS m7_max" + elif field == "m8_max": + q_part = "MAX(m8) AS m8_max" + else: + q_part = field + + if q_parts == "": + q_parts = q_part + else: + q_parts = q_parts + ", " + q_part + if radar_fields_to_get == "": + radar_fields_to_get = field + else: + radar_fields_to_get = radar_fields_to_get + ", " + field + sql = f""" + SELECT + minute, + device_id, + {radar_fields_to_get} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {q_parts} + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max, + s28_min + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max, + MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #light detailed + """ + Generate a TimeScaleDB query for light readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + light_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(light) AS light_max + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for temperature readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with temperature and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + temperature_avg, + CASE + WHEN (temperature_avg * 9/5 + 32) <= 50 OR (temperature_avg * 9/5 + 32) >= 90 THEN 2 + WHEN (temperature_avg * 9/5 + 32) <= 60 OR (temperature_avg * 9/5 + 32) >= 80 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature)+{temp_offset} AS temperature_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for humidity readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with humidity and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + col_expr = f"2.3592 * AVG(humidity) + 23.5546" #= 2.3592 * J2 + 33.5546 + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + humidity_avg, + CASE + WHEN humidity_avg <= 20 OR humidity_avg >= 60 THEN 2 + WHEN humidity_avg <= 30 OR humidity_avg >= 50 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {col_expr} AS humidity_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for smell readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with smell components + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + min_s0, + min_s1, + min_s2, + min_s3, + min_s4, + min_s5, + min_s6, + min_s7, + min_s8, + min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + + +def get_deployment_radar_only_detailed_all_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + absent_min, + stationary_max, + moving_max, + both_max, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(absent) AS absent_min, + MAX(stationary) AS stationary_max, + MAX(moving) AS moving_max, + MAX("both") AS both_max, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql +def get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def export_query_to_minio_chunked(connection_params, query, minio_client, bucket_name, blob_name=None, chunksize=10000): + """ + Export query results to MinIO as CSV in chunks to handle large datasets + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + minio_client: Initialized MinIO client + bucket_name (str): Name of the MinIO bucket + blob_name (str): Name for the blob in MinIO. If None, generates timestamped name + chunksize (int): Number of rows to process at a time + + Returns: + str: Name of the created blob + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate blob name if not provided + if blob_name is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + blob_name = f'query_results_{timestamp}.csv' + + # Create a buffer to store CSV data + csv_buffer = io.StringIO() + + # Stream the query results in chunks + first_chunk = True + for chunk_df in pd.read_sql_query(query, conn, chunksize=chunksize): + # Write header only for the first chunk + chunk_df.to_csv( + csv_buffer, + index=False, + header=first_chunk, + mode='a' + ) + first_chunk = False + + # Get the CSV data as bytes + csv_buffer.seek(0) + csv_bytes = csv_buffer.getvalue().encode('utf-8') + + # Upload to MinIO + minio_client.put_object( + bucket_name, + blob_name, + io.BytesIO(csv_bytes), + len(csv_bytes) + ) + + print(f"Data exported successfully to MinIO: {bucket_name}/{blob_name}") + return blob_name + + except Exception as e: + print(f"Error exporting data: {str(e)}") + print(f"Traceback: {traceback.format_exc()}") + raise + + finally: + if 'conn' in locals(): + conn.close() + if 'csv_buffer' in locals(): + csv_buffer.close() + +def export_query_to_csv_pandas(connection_params, query, output_path=None): + """ + Export query results to CSV using pandas with psycopg2 connection + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + output_path (str): Path for output CSV file. If None, generates timestamped filename + + Returns: + str: Path to the created CSV file + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate output path if not provided + if output_path is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + output_path = f'query_results_{timestamp}.csv' + + # Read query directly into DataFrame using the psycopg2 connection + df = pd.read_sql_query(query, conn) + + # Export to CSV with all headers + df.to_csv(output_path, index=False) + print(f"Data exported successfully to {output_path}") + return output_path + + except Exception as e: + print(f"Error exporting data: {str(e)}") + raise + + finally: + if 'conn' in locals(): + conn.close() + + +def CreateDailyCSV(csv_file, devices_list, selected_date, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset): + global Id2MACDict + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return "" + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return "" + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + if consolidated_by == "by_minute_rc": + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + elif consolidated_by == "by_deca_rd": + sql = get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + elif consolidated_by == "by_minute_rd": + sql = get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + + print(sql) + + connection_params = { + 'host': DB_HOST, + 'database': DB_NAME, + 'user': DB_USER, + 'password': DB_PASSWORD, + 'port': DB_PORT + } + + # Using pandas approach (recommended) + output_file = export_query_to_minio_chunked( + connection_params, + sql, + miniIO_blob_client, + "data-downloads", + csv_file, + chunksize=10000 + ) + return output_file + except Exception as e: + logging.error(str(traceback.format_exc())) + return "" + +def GetBlob(file_name, bucket_name="daily-maps"): + """ + Retrieve image from blob storage + + Args: + file_name (str): Name of the file to retrieve from blob storage + + Returns: + tuple: (image_bytes, content_type) + Returns None, None if image not found or error occurs + """ + logger.debug(f"GetBlob({file_name})") + try: + # Get the object from blob storage + data = miniIO_blob_client.get_object( + bucket_name, + file_name + ) + + # Read the data into bytes + data_bytes = data.read() + #logger.debug(f"len(data_bytes)={len(data_bytes)}") + + if bucket_name == "daily-maps": + return data_bytes, 'image/png' + else: + return data_bytes, 'application/zip' + + except Exception as e: + logger.error(f"Error: {traceback.format_exc()}") + return None, None + + +def MapFileToDate(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = map_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def CSVFileToDate(csv_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = csv_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def GetMACsListSimple(list_of_lists): + + result = [] + if len(list_of_lists) > 0: + result = [sublist[3] for sublist in list_of_lists] + + return(result) + +def datetime_handler(obj): + """Handle datetime serialization for JSON""" + if isinstance(obj, datetime.datetime): + if obj.tzinfo: + return obj.isoformat() + return obj.strftime('%Y-%m-%d %H:%M:%S.%f') + raise TypeError(f"Object of type {type(obj)} is not JSON serializable") + +def ReadCandles(file, sensor, period, time_from, time_to): + result = [] + if sensor == "voc0": + sqlr = "SELECT * from vocs_0"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc1": + sqlr = "SELECT * from vocs_1"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc2": + sqlr = "SELECT * from vocs_2"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc3": + sqlr = "SELECT * from vocs_3"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc4": + sqlr = "SELECT * from vocs_4"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc5": + sqlr = "SELECT * from vocs_5"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc6": + sqlr = "SELECT * from vocs_6"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc7": + sqlr = "SELECT * from vocs_7"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc8": + sqlr = "SELECT * from vocs_8"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc9": + sqlr = "SELECT * from vocs_9"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + else: + sqlr = "SELECT * from "+sensor+"s"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + logger.debug(f"sqlr = {sqlr}") + + with get_db_connection() as conn: + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + result = QuerrySql(file, sqlr) + return result + +def ReadSensor(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + result = [] + if sensor == "radar": + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + elif sensor[0] == "s": + sqlr = f"SELECT time, {sensor} AS smell FROM sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "temperature": + sqlr = f"SELECT time, {sensor} - 16 from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + sqlr = f"SELECT time, {sensor} from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadSensor3(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + import datetime + from datetime import timezone + + # Convert epoch to datetime and format as ISO 8601 strings with timezone + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + # If bucket_size is provided (i.e. not "no"), then use time bucketing. + use_bucket = bucket_size != "no" + if use_bucket: + # Map the shorthand bucket sizes to PostgreSQL interval strings. + mapping = { + "10s": "10 seconds", + "1m": "1 minute", + "5m": "5 minutes", + "10m": "10 minutes", + "15m": "15 minutes", + "30m": "30 minutes", + "1h": "1 hour" + } + bucket_interval = mapping.get(bucket_size, bucket_size) + + avgmax = "AVG" + # Build the SQL query based on sensor type. + if sensor == "radar": + # For radar sensors, a special aggregation is needed. + avgmax = "MAX" + if radar_part == "s28": + radar_expr = "(s2+s3+s4+s5+s6+s7+s8)/7" + else: + radar_expr = radar_part + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({radar_expr}) AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {radar_expr} AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor[0] == "s": + # For sensors whose name starts with "s" (for example, smell sensors) + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({sensor}) AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {sensor} AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "co2": + alias = sensor + sensor = "s4" + sqlr = f""" + WITH s4_values AS ( + SELECT s4 + FROM public.sensor_readings + WHERE device_id = 559 + AND s4 IS NOT NULL + ), + s4_percentile AS ( + SELECT percentile_cont(0.25) WITHIN GROUP (ORDER BY s4 DESC) AS s4_25_percentile + FROM s4_values + ) + SELECT s4_25_percentile + FROM s4_percentile; + """ + co2_max = 22536000#102400000 + co2_min = 2400000#16825674 #387585 + + real_co2_max = 2000 + real_co2_min = 430 + + + #logger.debug(f"sqlr = {sqlr}") + #with get_db_connection() as conn: + #with conn.cursor() as cur: + #cur.execute(sqlr) + #result = cur.fetchall() + #co2_max = result[0][0] + #co2_min = result[0][1] + #=E17+E20*(102400000-A24)/B18 + #col_expr = f"{real_co2_min}+({real_co2_max}-{real_co2_min})*(102400000-{sensor})/({co2_min}-{co2_max})" + col_expr = f"GREATEST({real_co2_min},{real_co2_min}+({real_co2_max}-{real_co2_min})*({co2_max}-percentile_cont(0.5) WITHIN GROUP (ORDER BY {sensor}))/({co2_max}-{co2_min}))" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + ({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "voc": + sensor = "s9" + alias = sensor + col_expr = f"{sensor} - 0" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "humidity": + alias = sensor + col_expr = f"2.3592 * {sensor} + 32.5546" #= 2.3592 * J2 + 33.5546 + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + else: + # For other sensors (including temperature, which requires a subtraction) + alias = sensor + col_expr = sensor + if sensor == "temperature": + col_expr = f"{sensor} - 16" + alias = "temperature" + elif sensor == "light": + avgmax = "MAX" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadRadarDetail(device_id, sensor, time_from_epoch, time_to_epoch, alt_key_state): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + #sensor_index = int(sensor_index) + + + result = [] + + #time_period_sec can be "10" (RAW) or "60" + if alt_key_state == "1": #"RAW = 10 sec" + radar_part = sensor + if sensor == "m08_max": + radar_part = "(m0+m1+m2+m3+m4+m5+m6+m7+m8)/9" + elif sensor == "s28_max" or sensor == "s28_min": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "m08_max": + radar_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/7) AS m08_max" + elif sensor == "s28_max": + radar_part = f"MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + elif sensor == "s28_min": + radar_part = f"MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + else: + radar_part = f"MAX({sensor}) AS {sensor}" + + sqlr = f""" + SELECT + minute, + {sensor} as {sensor} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + {radar_part} + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute + ) rr + + ORDER BY + minute + """ + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def check_and_parse(data_str): + # Remove whitespace to handle cases with spaces + cleaned = data_str.strip() + # Check if second character is '[' + is_list_of_lists = cleaned[1] == '[' + if cleaned[0] == '[': + # Parse the string regardless of type + parsed = json.loads(cleaned) + else: + parsed = cleaned.split(",") + return is_list_of_lists, parsed + +def clean_data_with_rolling_spline(line_part_t, window=5, threshold=2.0): + """ + Filter outliers using rolling median and replace with spline interpolation + Returns data in the same format as input: [(timestamp, value), ...] + """ + # Unzip the input tuples + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) # explicitly convert to float + + # Calculate rolling median and MAD using a safer approach + rolling_median = [] + rolling_mad = [] + + for i in range(len(y)): + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Skip if window is empty or contains invalid values + if len(window_values) == 0 or np.any(np.isnan(window_values)): + rolling_median.append(y[i]) + rolling_mad.append(0) + continue + + med = np.median(window_values) + mad = np.median(np.abs(window_values - med)) + + rolling_median.append(med) + rolling_mad.append(mad) + + rolling_median = np.array(rolling_median) + rolling_mad = np.array(rolling_mad) + + # Identify outliers (protect against division by zero) + outlier_mask = np.abs(y - rolling_median) > threshold * (rolling_mad + 1e-10) + good_data_mask = ~outlier_mask + + if np.sum(good_data_mask) < 4: + return line_part_t # return original data if we can't interpolate + + try: + # Create and apply spline + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 + ) + + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + except Exception as e: + print(f"Spline interpolation failed: {e}") + return line_part_t + + # Return in the same format as input + return list(zip(x, y_cleaned)) + +def DatesSpan(date_from: str, date_to: str) -> list: + """ + Generate a list of dates between date_from and date_to (inclusive). + Handles cases where date_from is later than date_to. + + Args: + date_from (str): Start date in 'YYYY-MM-DD' format + date_to (str): End date in 'YYYY-MM-DD' format + + Returns: + list: List of dates in 'YYYY-MM-DD' format + """ + # Convert string dates to datetime objects + start_date = datetime.datetime.strptime(date_from, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + start_date, end_date = end_date, start_date + + # Generate list of dates + dates_list = [] + current_date = start_date + + while current_date <= end_date: + dates_list.append(current_date.strftime('%Y-%m-%d')) + current_date += timedelta(days=1) + + # Reverse the list if original date_from was later than date_to + #if datetime.datetime.strptime(date_from, '%Y-%m-%d') > datetime.datetime.strptime(date_to, '%Y-%m-%d'): + # dates_list.reverse() + + return dates_list + +def zip_blobs(blob_paths, zip_blob_name, bucket_name, minio_client=None): + """ + Zip multiple blobs from MinIO storage into a single zip file without saving locally. + + Args: + blob_paths (list): List of blob paths to zip + zip_blob_name (str): Name/path for the output zip file in MinIO + bucket_name (str): MinIO bucket name + minio_client (Minio, optional): Existing MinIO client instance + + Returns: + bool: True if successful, False otherwise + """ + try: + # Create zip file in memory + zip_buffer = BytesIO() + + with zipfile.ZipFile(zip_buffer, 'w', zipfile.ZIP_DEFLATED) as zip_file: + # Process each blob + for blob_path in blob_paths: + # Get file name from path for zip entry + file_name = blob_path.split('/')[-1] + + # Get blob data into memory + data = minio_client.get_object(bucket_name, blob_path.lstrip('/')) + + # Add file to zip + zip_file.writestr(file_name, data.read()) + + # Close the object to free memory + data.close() + + # Seek to start of zip file + zip_buffer.seek(0) + + # Upload zip file to MinIO + minio_client.put_object( + bucket_name, + zip_blob_name.lstrip('/'), + zip_buffer, + length=zip_buffer.getbuffer().nbytes + ) + + return True + + except Exception as e: + print(f"Error creating zip file: {str(e)}") + return False + finally: + # Clean up + zip_buffer.close() + +def clean_data_with_spline(x, y, threshold=2.0): + """ + Filter outliers and replace with spline interpolation + + Parameters: + x : array-like, timestamps or x-coordinates + y : array-like, values to be filtered + threshold : float, number of median absolute deviations for outlier detection + + Returns: + array-like : cleaned data with outliers replaced by spline interpolation + """ + # Convert inputs to numpy arrays + x = np.array(x) + y = np.array(y) + + # Calculate median and median absolute deviation + median = np.median(y) + mad = stats.median_abs_deviation(y) + + # Identify outliers + outlier_mask = np.abs(y - median) > threshold * mad + good_data_mask = ~outlier_mask + + # If we have too few good points for interpolation, adjust threshold + min_points_needed = 4 # minimum points needed for cubic spline + if np.sum(good_data_mask) < min_points_needed: + return y # return original data if we can't interpolate + + # Create spline with non-outlier data + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 # cubic spline + ) + + # Replace outliers with interpolated values + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + + return y_cleaned + +def clean_data(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + cleaned_data = [] + + for i in range(len(y)): + # Get window around current point + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Calculate median and MAD for the window + window_median = np.median(window_values) + deviation = abs(y[i] - window_median) + + # Keep point if it's not too far from window median + if deviation <= threshold * window_median: + cleaned_data.append((x[i], y[i])) + #else: + #print(window_values) + return cleaned_data + +def clean_data_fast(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison - vectorized version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + # Calculate rolling median using numpy + half_window = window // 2 + medians = np.array([ + np.median(y[max(0, i-half_window):min(len(y), i+half_window+1)]) + for i in range(len(y)) + ]) + + # Calculate deviations for all points at once + deviations = np.abs(y - medians) + + # Create mask for good points + good_points = deviations <= threshold * medians + + # Return filtered data using boolean indexing + return list(zip(x[good_points], y[good_points])) + +def clean_data_pd(line_part_t, window=5, percentile=99): + """ + Remove obvious outliers based on window comparison - pandas version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + #line_part_t = line_part_t[2000:2100] + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + + # Create pandas Series and calculate rolling median + series = pd.Series(y) + medians = series.rolling(window=window, center=True, min_periods=1).median() + + # Calculate deviations + deviations = np.abs(series - medians) + + largest_deviations = deviations.nlargest(10) + #print(largest_deviations) + + # Create mask for good points + deviation_threshold = np.percentile(deviations, percentile) + good_points = deviations <= deviation_threshold + + # Convert back to numpy arrays for filtering + x = np.array(x) + y = np.array(y) + + # Return filtered data + return list(zip(x[good_points], y[good_points])) + +def CombineStripes(result_filename, stripes_files): + try: + # Open the first image to get the width and initialize the height + first_image = Image.open(stripes_files[0]) + width, height = first_image.size + + # Calculate the total height of the combined image + total_height = height * len(stripes_files) + + # Create a new blank image with the same width and the calculated height + result_image = Image.new('RGB', (width, total_height)) + + # Paste each image onto the result image vertically + y_offset = 0 + for file_name in stripes_files: + image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + y_offset += height + + # Save the result image + result_image.save(result_filename) + + # Return success flag + return True + + except Exception as e: + print("Error:", e) + return False + +def FindFirstLocalMinimum(counts, bins): + """ + Find the first local minimum in a histogram after the main peak and calculate its offset. + + Parameters: + hist: tuple of (counts, bin_edges) from np.histogram() + The histogram data to analyze + + Returns: + tuple: (TR, THR_OFFSET) + TR: float, the bin value (position) of the first local minimum after the main peak + THR_OFFSET: int, number of bins between the global maximum and the local minimum + """ + + # Find the main peak (global maximum) + main_peak_idx = np.argmax(counts) + + # Look for the first local minimum after the main peak + for i in range(main_peak_idx + 1, len(counts) - 1): + # Check if current point is less than or equal to both neighbors + if counts[i] <= counts[i-1] and counts[i] <= counts[i+1]: + # Calculate the bin center value for TR + TR = (bins[i] + bins[i+1]) / 2 + # Calculate offset from main peak in number of bins + THR_OFFSET = (bins[i] + bins[i+1]) / 2 - (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + return (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2, TR, THR_OFFSET + + # If no local minimum is found, return None for both values + return None, None + +def process_raw_data(data_tuples): + """ + Convert list of (timestamp, stationary, motion) tuples to separate arrays + + Parameters: + ----------- + data_tuples : list of tuples + Each tuple contains (datetime, stationary_value, motion_value) + + Returns: + -------- + timestamps : array of datetime + stationary : array of float + motion : array of float + """ + timestamps = np.array([t[0] for t in data_tuples]) + stationary = np.array([t[1] for t in data_tuples]) + motion = np.array([t[2] for t in data_tuples]) + + return timestamps, stationary, motion + +def rolling_std_fast(arr, window_size): + """ + Fast calculation of rolling standard deviation using NumPy's stride tricks. + + Parameters: + ----------- + arr : numpy array + Input array + window_size : int + Size of rolling window + + Returns: + -------- + numpy array + Rolling standard deviation + """ + # Compute rolling sum of squares + r = np.array(arr, dtype=float) + r2 = np.array(arr, dtype=float) ** 2 + + # Calculate cumulative sums + cum = np.cumsum(np.insert(r, 0, 0)) + cum2 = np.cumsum(np.insert(r2, 0, 0)) + + # Get rolling windows + x = (cum[window_size:] - cum[:-window_size]) + x2 = (cum2[window_size:] - cum2[:-window_size]) + + # Calculate standard deviation + n = window_size + return np.sqrt((x2/n) - (x/n) ** 2) + +def detect_presence(timestamps, stationary_signal, motion_signal, window_size=100, + motion_threshold=5, gmm_components=2): + """ + Detect presence using both stationary and motion signals with adaptive thresholding. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal (0-100) + motion_signal : array-like + Time series of motion signal (0-100) + window_size : int + Size of rolling window for statistics (used only for temporal smoothing) + motion_threshold : float + Threshold for significant motion + gmm_components : int + Number of components for Gaussian Mixture Model + + Returns: + -------- + presence_mask : numpy array + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + """ + + # Convert inputs to numpy arrays + stationary_signal = np.array(stationary_signal) + motion_signal = np.array(motion_signal) + + # 1. Fit Gaussian Mixture Model to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + # Get the component with lowest mean as baseline + baseline = min(gmm.means_)[0] + + # 2. Calculate adaptive threshold using GMM components + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std # 3 sigma rule + + # 3. Combine motion and stationary detection + presence_mask = np.zeros(len(stationary_signal), dtype=bool) + + # Vectorized operations instead of loop + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # 4. Apply temporal smoothing to reduce false transitions + smooth_window = min(window_size // 4, 10) # Smaller window for smoothing + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, baseline, threshold + +def visualize_detection(timestamps, stationary_signal, motion_signal, presence_mask, + baseline, threshold, output_file='presence_detection.png'): + """ + Visualize the detection results and save to file. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal + motion_signal : array-like + Time series of motion signal + presence_mask : array-like + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + output_file : str + Path to save the output PNG file + """ + plt.figure(figsize=(15, 10)) + + # Configure time formatting + date_formatter = mdates.DateFormatter('%H:%M:%S') + + # Plot signals + plt.subplot(3, 1, 1) + plt.plot(timestamps, stationary_signal, label='Stationary Signal') + plt.axhline(y=baseline, color='g', linestyle='--', label='Baseline') + plt.axhline(y=threshold, color='r', linestyle='--', label='Threshold') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Stationary Signal with Baseline and Threshold') + plt.grid(True) + + plt.subplot(3, 1, 2) + plt.plot(timestamps, motion_signal, label='Motion Signal') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Motion Signal') + plt.grid(True) + + plt.subplot(3, 1, 3) + plt.plot(timestamps, presence_mask, label='Presence Detection') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.ylim(-0.1, 1.1) + plt.legend() + plt.title('Presence Detection Result') + plt.grid(True) + + plt.tight_layout() + + # Save to file and close figure to free memory + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def FindZeroIntersection(counts, bins, save_plot, device_id): + """ + Find the zero intersection point by fitting a parabola to the descending slope + between 50% and 10% of the maximum peak height. Also returns the peak position. + + Parameters: + counts: array-like + The histogram counts + bins: array-like + The histogram bin edges + save_plot: str or None, optional + If provided, saves the visualization to the specified file path + + Returns: + tuple: (zero_intersections, peak_position) + zero_intersections: list of floats, x-coordinates where parabola intersects y=0 + peak_position: float, x-coordinate of the histogram maximum peak + """ + # Find the main peak + main_peak_idx = np.argmax(counts) + peak_height = counts[main_peak_idx] + peak_position = (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + + # Calculate 75% and 25% of peak height + height_50 = 0.50 * peak_height + height_10 = 0.10 * peak_height + + # Find indices where counts cross these thresholds after the peak + idx_50 = main_peak_idx + idx_10 = main_peak_idx + + for i in range(main_peak_idx, len(counts)): + if counts[i] <= height_50 and idx_50 == main_peak_idx: + idx_50 = i + if counts[i] <= height_10: + idx_10 = i + break + + # If we couldn't find valid points, return None + if idx_50 == main_peak_idx or idx_10 == main_peak_idx: + return None, peak_position + + # Get x and y coordinates for fitting + # Use bin centers for x coordinates + x_points = np.array([(bins[i] + bins[i+1])/2 for i in range(idx_50, idx_10+1)]) + y_points = counts[idx_50:idx_10+1] + + # Define quadratic function for fitting + def quadratic(x, a, b, c): + return a*x**2 + b*x + c + + try: + popt, pcov = curve_fit(quadratic, x_points, y_points) + a, b, c = popt + + # Find zeros using quadratic formula + if a != 0: + discriminant = b**2 - 4*a*c + if discriminant >= 0: + x1 = (-b + np.sqrt(discriminant)) / (2*a) + x2 = (-b - np.sqrt(discriminant)) / (2*a) + zero_intersections = sorted([x1, x2]) + # Filter zeros to only include those after the peak + zero_intersections = [x for x in zero_intersections if x > peak_position] + else: + zero_intersections = [] + else: + # If a ≈ 0, fallback to linear solution + if b != 0: + zero_intersections = [-c/b] + else: + zero_intersections = [] + + if save_plot: + plt.figure(figsize=(10, 6)) + + # Plot histogram + bin_centers = [(bins[i] + bins[i+1])/2 for i in range(len(counts))] + plt.bar(bin_centers, counts, width=bins[1]-bins[0], alpha=0.6, + color='skyblue', label='Histogram') + + # Plot peak height lines + plt.axhline(y=height_50, color='g', linestyle='--', alpha=0.5, + label='50% Peak Height') + plt.axhline(y=height_10, color='r', linestyle='--', alpha=0.5, + label='10% Peak Height') + + # Plot fitted parabola + x_fit = np.linspace(min(x_points), max(x_points), 100) + y_fit = quadratic(x_fit, a, b, c) + plt.plot(x_fit, y_fit, 'r-', label='Fitted Parabola') + + # Plot points used for fitting + plt.plot(x_points, y_points, 'ro', alpha=0.5, label='Fitting Points') + + # Plot zero intersections + for x_zero in zero_intersections: + plt.plot(x_zero, 0, 'ko', label='Zero Intersection') + + # Plot peak position + plt.axvline(x=peak_position, color='purple', linestyle='--', alpha=0.5, + label='Peak Position') + + # Add labels and legend + plt.xlabel('Bin Values') + plt.ylabel('Counts') + plt.title(f'Histogram Analysis with Parabolic Fit {device_id}') + plt.legend() + + # Show zero line + plt.axhline(y=0, color='k', linestyle='-', alpha=0.2) + + # Add text with intersection and peak values + text = f'Peak Position: {peak_position:.2f}\n' + if zero_intersections: + text += f'Zero Intersection(s): {", ".join([f"{x:.2f}" for x in zero_intersections])}' + plt.text(0.02, 0.98, text, transform=plt.gca().transAxes, + verticalalignment='top', + bbox=dict(boxstyle='round', facecolor='white', alpha=0.8)) + + # Save plot to file + plt.savefig(save_plot, dpi=300, bbox_inches='tight') + plt.close() + + return zero_intersections, peak_position + except RuntimeError: + print("Warning: Failed to fit parabola") + return None, peak_position + + +def GeneratePresenceHistory(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + maps_dates.reverse() + days = len(maps_dates) + stretch_by = int(1000 / days) + if stretch_by > 50: + stretch_by = 50 + + #lets use 1000 pixels + #arr_stretched = np.zeros((int(days*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + + # Paste each image onto the result image vertically + y_offset = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + + file_exists, time_modified_utc = check_file_exists(filename_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + file_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if file_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + + image_bytes, content_type = GetBlob(filename_day) + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + + #image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + image.close() + image_stream.close() + + y_offset += stretch_by + + # Save directly to MinIO instead of local file + success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + result_image.close() + return success + +def AddText(room_image_cv2, x, y, room_name, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + #print(f"Attempting to load font from: {font_path}") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error(f"Poppins font not found in {font_path}. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + +def AddTextList(room_image_cv2, strings_list, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + for x, y, room_name in strings_list: + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + + +def AddRoomData(room_image, room_name, data): + + # Example usage: + radius = 10 + color_t = data["color"] # BGR format for red + color = (color_t[2], color_t[1], color_t[0]) + x_offset = 12 + + room_image = AddText(room_image, 13, 20, room_name, 50) + print(data) + for present in data["presence"]: + device_id, minute, duration = present + #duration = 10 + top_left = (x_offset + minute, 140) #bottom_right = (300, 200) + bottom_right = (x_offset + minute + duration, 260) + draw_rounded_rectangle(room_image, top_left, bottom_right, radius, color) + return room_image + +def AddFooterData(image): + '12, 370, 736, 1092, 1452' + step_size = 1440 / 4 + string_width = 60 + offset = 12 + yoffset = 30 + step = 0 + font_size = 40 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 AM", font_size) + step = 1 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 AM", font_size) + step = 2 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 PM", font_size) + step = 3 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 PM", font_size) + return image + +def draw_rounded_rectangle(image, top_left, bottom_right, radius, color): + """ + Draw a filled rectangle with rounded corners, using simple rectangle for small dimensions + :param image: Image to draw on + :param top_left: Top-left corner coordinates (x, y) + :param bottom_right: Bottom-right corner coordinates (x, y) + :param radius: Desired corner radius (will be adjusted if needed) + :param color: Rectangle color in BGR format + """ + x1, y1 = top_left + x2, y2 = bottom_right + + # Calculate width + width = x2 - x1 + + + # Adjust radius if width or height is too small + # Maximum radius should be half of the smaller dimension + max_radius = abs(width) // 2 + radius = min(radius, max_radius) + + # If width is too small, fallback to regular rectangle + if width <= 4 or radius <= 1: + cv2.rectangle(image, top_left, bottom_right, color, -1) + return + + # Adjust radius if needed + radius = min(radius, width // 2) + + # Create points for the main rectangle + pts = np.array([ + [x1 + radius, y1], + [x2 - radius, y1], + [x2, y1 + radius], + [x2, y2 - radius], + [x2 - radius, y2], + [x1 + radius, y2], + [x1, y2 - radius], + [x1, y1 + radius] + ], np.int32) + + # Fill the main shape + cv2.fillPoly(image, [pts], color) + + # Fill the corners + cv2.ellipse(image, (x1 + radius, y1 + radius), (radius, radius), 180, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y1 + radius), (radius, radius), 270, 0, 90, color, -1) + cv2.ellipse(image, (x1 + radius, y2 - radius), (radius, radius), 90, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y2 - radius), (radius, radius), 0, 0, 90, color, -1) + +def filter_device(locations_list, device_id): + result = [] + for entry in locations_list: + if entry[0] == device_id: + result.append(entry) + + return result + +def GenerateLocationsMap(date_st, devices_list, devices_map, locations_list, time_zone_s): + + devices_list_t = [("date",date_st)] + + + for mac in devices_list: + well_id, device_id, room = devices_map[mac] + #room = devices[well_id][0] + color = Loc2Color[room][0] + presence_data = filter_device(locations_list, device_id) + room_details = (room, {"color": color, "presence": presence_data}) + devices_list_t.append(room_details) + + well_id = 0 + device_id = 0 + room = "Outside/?" + color = (0, 0, 0) + + #lets's not draw future unknown! + presence_data = filter_device(locations_list, device_id) + current_utc = datetime.datetime.now(pytz.UTC) + current_date_local = current_utc.astimezone(pytz.timezone(time_zone_s)) + current_minute_of_day = current_date_local.hour * 60 + current_date_local.minute + + if date_st == current_date_local.strftime('%Y-%m-%d'): + filtered_presence_data = [] + for entry in presence_data: + if entry[1] < current_minute_of_day : + if entry[1] + entry[2] < current_minute_of_day: + filtered_presence_data.append(entry) + else: + entry[2] = (current_minute_of_day - entry[2]) + if entry[2] > 0: + filtered_presence_data.append(entry) + #print(presence_data) + else: + filtered_presence_data = presence_data + + room_details = (room, {"color": color, "presence": filtered_presence_data}) + devices_list_t.append(room_details) + + return devices_list_t + +def CreateDailyLocationChart(filename_chart_image_day, locations): + result = False + header_image_file = "header.png" + room_image_file = "room.png" + footer_image_file = "footer.png" + + #ToDo: change it so it reads files from MinIo + header_image_file = os.path.join(filesDir, header_image_file) + header_image_file = header_image_file.replace("\\","/") + header_image = cv2.imread(header_image_file) + #header_height, header_width = header_image.shape[:2] + + room_image_file = os.path.join(filesDir, room_image_file) + room_image_file = room_image_file.replace("\\","/") + room_image = cv2.imread(room_image_file) + #room_height, room_width = room_image.shape[:2] + + footer_image_file = os.path.join(filesDir, footer_image_file) + footer_image_file = footer_image_file.replace("\\","/") + footer_image = cv2.imread(footer_image_file) + + all_images = [header_image] + for item_c in locations: + item = item_c[0] + if item == "date": + date = item_c[1] + else: + room_image = cv2.imread(room_image_file) + data = item_c[1] + room_image = AddRoomData(room_image, item, data) + all_images.append(room_image) + + footer_image = AddFooterData(footer_image) + all_images.append(footer_image) + final_image = np.vstack(all_images) + #this needs to write straight to MinIo ! + SaveImageInBlob(filename_chart_image_day, final_image) + result = True + #cv2.imwrite(filename_chart_image_day, final_image) + #print(rooms_count) + return result + + +def GetOptimumFontSize(target_width, text="00", min_size=1, max_size=100, tolerance=1): + """ + Find optimal font size to fit text within target width using binary search. + + Args: + target_width (int): Desired width in pixels + text (str): Text to measure (default "00") + min_size (int): Minimum font size to try + max_size (int): Maximum font size to try + tolerance (int): Acceptable difference from target width + + Returns: + int: Optimal font size + """ + while min_size <= max_size: + current_size = (min_size + max_size) // 2 + width, _ = GetStringSize(text, current_size) + + if abs(width - target_width) <= tolerance: + return current_size + elif width > target_width: + max_size = current_size - 1 + else: + min_size = current_size + 1 + + # Return the largest size that fits within target width + width, _ = GetStringSize(text, min_size) + return min_size if width <= target_width else min_size - 1 + +def GetStringSize(some_string, font_size): + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + bbox = font.getbbox(some_string) + return bbox[2] - bbox[0], bbox[3] - bbox[1] + +def GeneratePresenceHistoryChart(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + #maps_dates.reverse() + days = len(maps_dates) + #stretch_by = int(1000 / days) + #if stretch_by > 50: + #stretch_by = 50 + stretch_by = 30 + + #background_image_file = os.path.join(filesDir, "multi_day_template.png") + background_image_file = os.path.join(filesDir, "multi_day_template2.png") + background_image_file = background_image_file.replace("\\","/") + background_image = cv2.imread(background_image_file) + + rgb_image = background_image #cv2.cvtColor(background_image, cv2.COLOR_BGR2RGB) + result_image = Image.fromarray(rgb_image) # Convert to PIL Image + #result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + # Paste each image onto the result image vertically + y_offset = 0 + locations_list = [] + font_size = 50 + string_width, string_height = GetStringSize("00", font_size) + + + success = False + if len(maps_dates) == 1: + + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + force_recreate = recreate_in + #it is faster to resize existing daily location chart (length is always 1440), than having to re-create it each time... + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + filename_chart_data_day = filename_day+".bin" + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_chart_image_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if not force_recreate: + file_exists1, time_modified_utc1 = check_file_exists(filename_chart_data_day) + if file_exists1: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list_a, device_ids = GetProximityList(deployment_id, timee) + CreateDailyLocationMap(filename_day, devices_list_a, ddate, filter_minutes, time_zone_s, stretch_by) + locations_list_s = ReadObjectMinIO("daily-maps", filename_chart_data_day) + locations_list = json.loads(locations_list_s) + + devices_map = {} + devices_list = [] + for device_entry in devices_list_a: + devices_map[device_entry[4]] = [device_entry[0], device_entry[1], device_entry[2]] + devices_list.append(device_entry[4]) + + locations = GenerateLocationsMap(ddate, devices_list, devices_map, locations_list, time_zone_s) + success = CreateDailyLocationChart(filename, locations) + else: + + day_counter = 0 + day_step_width = int(1780 / days) + x_offset = 563 + y_offset = 1615 + h_labels_bottom = 1720 + day_width = int(0.9 * day_step_width) + day_height = 1440 + font_size = GetOptimumFontSize(day_width, "00", 10, 50, 0) + string_width, string_height = GetStringSize("00", font_size) + #logger.debug(f"font_size={font_size} string_width={string_width}") + + y_offset = y_offset - day_height + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day) + file_existsS, time_modifiedS_utc = check_file_exists(filename_day[:-4]+"S.png") + if file_exists and file_existsS: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + #here we need to rotate and resize to: + + image_bytes, content_type = GetBlob(filename_day) + image_bytes_s, content_type_s = GetBlob(filename_day[:-4]+"S.png") + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, y_offset)) + + image_stream = io.BytesIO(image_bytes_s) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, 1807+y_offset)) + + + image.close() + image_stream.close() + + day_counter += 1 + + pil_im = result_image + #result_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + result_image_cv2 = np.array(pil_im)#cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + strings_list = [] + day_counter = 0 + for ddate in maps_dates: + if string_width <= day_width: + date_str = ddate[8:10] + x_origin = x_offset + int(day_step_width * (day_counter + 0.5)) - int(string_width / 2) + strings_list.append((x_origin, h_labels_bottom, date_str)) + day_counter += 1 + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + + #Y 124 to 1636 + labels_bottom = 1636 - 1.5 * string_height + x_offset = 340 + step = -4 * 60 #4 hours + font_size = 50 + strings_list = [] + count = 0 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + count = 1 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 AM")) + count = 2 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 AM")) + count = 3 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 PM")) + count = 4 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 PM")) + count = 5 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 PM")) + count = 6 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + numpy_image = np.array(result_image_cv2) + + success = SaveImageInBlob(filename, numpy_image) + #SaveImageInBlob(filename, result_image) + # Save directly to MinIO instead of local file + #if success: + # success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + if success: + return filename + else: + return "" + +def GeneratePresenceHistoryFiles(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + day_counter = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, 10) + + day_counter += 1 + + return filename + +def CalcStdevs(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def CalcLife(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def FindCalibrationDate(device_ids, ddate): + PCD = 50 #% (Peak Contained Data %) + PHB = 50 #% (Peak Height from Base %) + MPW = 10 #? (Max Peak Width) + MPSD =10 #? (Minimum Presence signal Standard Deviation) + #Find first day with, for all devices: + #- enough radar data points collected + #-Single histogram peak containing more than PCD% of data and peak width (at PHB% height) is < MPW + #Stdev of Data larger > MPSD + return ddate + +def FindThreshold(data, percent_list): + """ + Find the threshold value above which lies the specified percentage of points. + + Args: + data: numpy array of values + percent: percentage of points that should be above the threshold (0-100) + + Returns: + threshold value + """ + percent_from, percent_to = percent_list + # Sort data in descending order + sorted_data = np.sort(data)[::-1] + + # Calculate the index corresponding to the desired percentage + index_from = int((percent_from / 100) * len(data)) + index_to = int((percent_to / 100) * len(data)) + + # Return the threshold value + return sorted_data[index_from], sorted_data[index_to] + +def ShowThresholdGraph(data, filename, threshold_low, threshold_high, title, AveragePercentSpendsThere, location): + """ + Create and save a threshold analysis graph with maximum curvature point. + """ + dpi=600 + # Get min and max values + min_val = np.min(data) + max_val = np.max(data) + + # Create 1000 threshold levels from max to min + thresholds = np.linspace(max_val, min_val, 1000) + threshold_percentages = np.linspace(0, 100, 1000) + + # Calculate percentage of points above each threshold + points_above = [] + total_points = len(data) + + for thresh in thresholds: + above_count = np.sum(data > thresh) + percentage = (above_count / total_points) * 100 + points_above.append(percentage) + + points_above = np.array(points_above) + + # Calculate derivatives and smooth them + first_derivative = np.gradient(points_above) + second_derivative = np.gradient(first_derivative) + + #first_derivative = savgol_filter(np.gradient(points_above), window_length=51, polyorder=3) + #second_derivative = savgol_filter(np.gradient(first_derivative), window_length=51, polyorder=3) + + + # Find the point of maximum absolute second derivative + # Exclude edges (first and last 5% of points) to avoid edge effects + edge_margin = len(second_derivative) // 20 # 5% of points + valid_range = slice(edge_margin, -edge_margin) + max_curve_idx = edge_margin + np.argmax(np.abs(second_derivative[valid_range])) + + max_curve_x = threshold_percentages[max_curve_idx] + max_curve_y = points_above[max_curve_idx] + max_curve_second_deriv = second_derivative[max_curve_idx] + + # Calculate the actual threshold value for this point + threshold2 = max_val - (max_curve_x/100) * (max_val - min_val) + + # Create subplot figure + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(12, 10), height_ratios=[3, 2]) + + # Plot 1: Original curve with thresholds + ax1.plot(threshold_percentages, points_above, 'b-', linewidth=2, label='Distribution') + ax1.grid(True, linestyle='--', alpha=0.7) + + # Add original threshold line if provided + if threshold_low is not None: + threshold_percent = ((max_val - threshold_low) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_low) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='r', linestyle='--', label=f'Minimum % spent in {location}: {AveragePercentSpendsThere[0]:.3f}') + ax1.axhline(y=percent_above, color='r', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_low:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + if threshold_high is not None: + threshold_percent = ((max_val - threshold_high) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_high) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='b', linestyle='--', label=f'Maximum % spent in {location}: {AveragePercentSpendsThere[1]:.3f}') + ax1.axhline(y=percent_above, color='b', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_high:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + # Add maximum curvature point threshold + ax1.axvline(x=max_curve_x, color='g', linestyle='--', label=f'Threshold 2: {threshold2:.3f}') + ax1.axhline(y=max_curve_y, color='g', linestyle='--') + ax1.plot(max_curve_x, max_curve_y, 'go', markersize=10) + + ax1.annotate(f'Threshold 2: {threshold2:.3f}\nPoints above: {max_curve_y:.1f}%', + xy=(max_curve_x, max_curve_y), + xytext=(10, -20), textcoords='offset points', + bbox=dict(boxstyle='round,pad=0.5', fc='lightgreen', alpha=0.5), + arrowprops=dict(arrowstyle='->')) + + ax1.set_xlabel('Threshold Level (%)\n0% = Maximum, 100% = Minimum') + ax1.set_ylabel('Points Above Threshold (%)') + ax1.set_title(title) + ax1.set_xlim(0, 100) + ax1.set_ylim(0, 100) + ax1.legend() + + # Plot 2: Rate of change + ax2.plot(threshold_percentages, first_derivative, 'g-', label='First derivative', alpha=0.7) + ax2.plot(threshold_percentages, second_derivative, 'r-', label='Second derivative', alpha=0.7) + ax2.grid(True, linestyle='--', alpha=0.7) + + # Mark maximum curvature point on derivative plot + ax2.axvline(x=max_curve_x, color='g', linestyle='--') + # Plot point exactly on the second derivative curve + ax2.plot(max_curve_x, max_curve_second_deriv, 'go', markersize=10, + label=f'Max curvature at {max_curve_x:.1f}%') + + ax2.set_xlabel('Threshold Level (%)') + ax2.set_ylabel('Rate of Change') + ax2.set_title('Rate of Change Analysis') + ax2.legend() + + plt.tight_layout() + plt.savefig(filename, dpi=dpi, bbox_inches='tight') + plt.close() + + return threshold2, max_curve_x, max_curve_y + +def add_boundary_points(line_part_t, time_zone): + """ + Add boundary points (00:00:00 and 23:59:59) to a time series list. + + Args: + line_part_t: List of tuples (timestamp, value) + time_zone: String representing the timezone (e.g., "America/Los_Angeles") + + Returns: + List of tuples with added boundary points + """ + if not line_part_t: + return line_part_t + + tz = pytz.timezone(time_zone) + + # Get the date from the first point + first_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + date = first_dt.date() + + # Create datetime objects for start and end of the day + start_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.min.time())) + end_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.max.time())) + + # Convert to timestamps + start_ts = start_dt.timestamp() + end_ts = end_dt.timestamp() + + result = list(line_part_t) + + # Handle start point (00:00:00) + first_point_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + time_diff = first_point_dt - start_dt + + start_value = line_part_t[0][1] + + # Add start point at the beginning + #result.insert(0, (start_ts, start_value)) + + # Handle end point (23:59:59) + last_point_dt = datetime.datetime.fromtimestamp(line_part_t[-1][0], tz) + end_value = line_part_t[-1][1] + # Add end point + result.append((end_ts, end_value)) + + return result + +def calculate_life_and_average(my_data1, stdev_range=5): + # Convert data to numpy array for faster operations + data_array = np.array(my_data1) + + # Calculate half range + stdev_range_h = stdev_range // 2 + + # Pre-calculate indices for the sliding window + indices = np.arange(len(data_array) - 2 * stdev_range_h)[:, None] + np.arange(2 * stdev_range_h + 1) + + # Get sliding windows of data + windows = data_array[indices] + + # Calculate average (using column 3) + average = np.mean(windows[:, :, 3], axis=1) + + # Calculate life (using columns 2, 3, and 4) + deltas = windows[:, :, 3] - windows[:, :, 2] + windows[:, :, 4] + life = np.mean(deltas, axis=1) + + return life.tolist(), average.tolist() + +def TryJulia(prompt): + + if len(prompt) > 0: + + if prompt[0] == "#": + return prompt.upper() + + if prompt not in utterances: + return "" + else: + intent = utterances[prompt] + action = intents[intent] + + return action[0] + else: + return "" + +def AskGPT(in_prompt, language_from, language_to): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + if language_to.lower() not in language_from.lower(): + prompt = in_prompt + " Answer in " + language_to + + + print(prompt) + + #lets see if question is looking for OSM query + pattern = "what is only the node line for query for * on openstreetmap api? do not answer with url to nominatim, but with query!" + + + if match_with_wildcard(prompt, pattern): + differing_part = extract_differing_part(prompt, pattern) + + if differing_part != "": + + print(differing_part) + + if differing_part in searches_dict: + response = searches_dict[differing_part] + print(response) + return response, language_to + else: + #check if one of synonims: + if differing_part in searches_dict["synonims"]: + differing_part = searches_dict["synonims"][differing_part] + if differing_part != "": + if differing_part in searches_dict[differing_part]: + response = searches_dict[differing_part] + print(response) + return response, language_to + + hash_string = hashlib.sha256(str(prompt).encode('utf-8')).hexdigest() + #filename=os.path.join(cache_path, "chgpt_query_" + hash_string+".pkl") + + julia_present = False + if prompt.startswith("julia"): + prompt = prompt[len("julia") + 1:] + julia_present = True + + completion = "" + if julia_present == False: + completion = TryJulia(prompt) + #if completion == "": + # if os.path.exists(filename): + # #completion = pickle.load(open( filename, "rb" )) + # completion = (completion.choices[0].message.content.strip(), language_to)[0] + else: + completion = TryJulia(prompt) + + + if completion == "": + + st = time.time() + #import wandb + + #run = wandb.init(project='GPT-4 in Python') + #prediction_table = wandb.Table(columns=["prompt", "prompt tokens", "completion", "completion tokens", "model", "total tokens"]) + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + + #with open(filename, 'wb') as handle: + #pickle.dump(completion, handle, protocol=pickle.HIGHEST_PROTOCOL) + + response = (completion.choices[0].message.content.strip(), language_to) + else: + response = (completion, language_to) + + else: + response = ("question is too short", language_to) + + + print(response) + return response + +def AskGPTPure(in_prompt): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + print(prompt) + + st = time.time() + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + response = completion.choices[0].message.content.strip() + + + else: + response = "question is too short" + + + print(response) + return response + +def get_last_n_days(n=14, timezone_str='America/Los_Angeles'): + # Get current UTC time + utc_now = datetime.datetime.now(pytz.UTC) + + # Convert to the specified timezone + local_now = utc_now.astimezone(pytz.timezone(timezone_str)) + + # Get the current date in the specified timezone + current_date = local_now.date() + + # Determine the last whole day + if local_now.hour > 0 or local_now.minute > 0 or local_now.second > 0: + # Yesterday in the specified timezone + last_whole_day = current_date - timedelta(days=1) + else: + # If it's exactly midnight, the last whole day is two days ago + last_whole_day = current_date - timedelta(days=2) + + # Generate list of n days, ending with the last whole day + date_list = [] + for i in range(n-1, -1, -1): + day = last_whole_day - timedelta(days=i) + date_list.append(day.strftime('%Y-%m-%d')) + + return date_list + + +def numpy_to_json(arr, devices_list): + """ + Convert numpy array to JSON-serializable format + + Args: + arr (numpy.ndarray): 2D numpy array to serialize + + Returns: + str: JSON string containing array data and metadata + """ + if not isinstance(arr, np.ndarray): + raise TypeError("Input must be a numpy array") + + array_dict = { + 'dtype': str(arr.dtype), + 'shape': arr.shape, + 'devices_list': devices_list, + 'data': arr.tolist() # Convert to nested Python lists + } + + return json.dumps(array_dict) + +def format_time_difference(minutes): + # Calculate days, hours, minutes + days = int(minutes // (24 * 60)) + remaining_minutes = minutes % (24 * 60) + hours = int(remaining_minutes // 60) + mins = int(remaining_minutes % 60) + + parts = [] + + # Add days if any + if days > 0: + parts.append(f"{days} day{'s' if days != 1 else ''}") + + # Add hours if any + if hours > 0: + parts.append(f"{hours} hour{'s' if hours != 1 else ''}") + + # Add minutes if any + if mins > 0 or (days == 0 and hours == 0): + parts.append(f"{mins} minute{'s' if mins != 1 else ''}") + + # Combine the parts into a sentence + if len(parts) == 1: + return parts[0] + elif len(parts) == 2: + return f"{parts[0]} and {parts[1]}" + else: + return f"{parts[0]}, {parts[1]}, and {parts[2]}" + +def RunCommand(commmand, args_dictionary, deployment_id): + + to_return = "" + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + local_tz = pytz.timezone(time_zone_s) + + filter_minutes = 5 + dates = get_last_n_days(28, time_zone_s) + ddate = dates[0] #2025-02-02 req.params.get("date") + to_date = dates[-1] + date_s = datetime.datetime.now(pytz.UTC).astimezone(local_tz).date().strftime("%Y-%m-%d") + + if commmand == "#STATUS#": + force_recreate_orig = False #True + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + filename = GeneratePresenceHistoryFiles(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + loclist = [] + day_counter = 0 + minutes_spent_there_list = [] + for ddate in maps_dates: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + Id2Location = {} + for device in devices_list: + Id2Location[device[1]] = device[2] + Id2Location[0] = "Outside/?" + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png.bin" + locations_list_s = ReadObjectMinIO("daily-maps", filename_day) + locations_list = ast.literal_eval(locations_list_s) + #print(locations_list_s) + minutes_spent_there = {} + + + for loc in Id2Location: + minutes_spent_there[Id2Location[loc]] = 0 + minutes_spent_there[Id2Location[0]] = 0 + + for loc in locations_list: + minutes_spent_there[Id2Location[loc[0]]] += loc[2] + + for loc in minutes_spent_there: + minutes_spent_there[loc] = int(1000 * minutes_spent_there[loc] / 1440) / 10 + minutes_spent_there_list.append((ddate, minutes_spent_there)) + + dailyloclist = [] + for loc in locations_list: + dailyloclist.append((Id2Location[loc[0]],loc[2])) # provide only loc[2] which is len_minutes or how long subject was there, ignore loc[1] which is minutes_from + loclist.append((ddate, dailyloclist)) + + data_part = str(minutes_spent_there_list) + print(data_part) + + prompt2 = "Consider:\n" + prompt2 += "- older person living alone in home where each room has multi-sensor IoT device \n" + prompt2 += "- from the data we can produce a list for each day of locations and minutes spent there\n" + prompt2 += "- unknown location is listed as \"Outside/?\"\n" + prompt2 += "- office and living room are equivalent for this individual. Entertainment is consumed on computer (office) and in living room TV.\n" + prompt2 += "- person is also napping in living room\n" + prompt2 += "\n" + prompt2 += "Questions:\n" + prompt2 += "- list all potential health related information can be recognized from this data (examples based on patterns of bathroom usage for urinating vs pooing, showering, sleep, and list all other)\n" + prompt2 += "- for each pattern consider; how long data time span is required, reliability range, how to improve (what additional information could be useful from additional sensors or devices)\n" + prompt2 += "- analyze example data \n" + prompt2 += "\n" + prompt2 += "Data example to analyze:\n" + for day in loclist: + prompt2 += f"Date: {day[0]}\n " + prompt2 += ", ".join(f"{location} {minutes}min" for location, minutes in day[1]) + prompt2 += "\n" + print(prompt2) + + prompt = "Attached is 4 weeks of data representing % of time where person living alone is spending each day" + prompt = prompt + " Assess his last week compared to previous 3 weeks. Comment only on significant changes." + prompt = prompt + " Ignore days where data is all (or mostly) 0!" + prompt = prompt + " Consider that office and living room are equivalent for this individual. Entertainment is consumed on computer (office) and in living room TV." + prompt = prompt + " But he is also napping in living room. Comment on his sleeping pattern as well" + prompt = prompt + " Can you summarize all in 1 sentence?" + prompt = prompt + " " + data_part + result = AskGPTPure(prompt) + + to_return = result + #to_return = "Your father appears to be fine. He was walking around the house 10 minutes ago and is currently in the living room. And I can smell coffee" + + elif commmand == "#STATUS_F#": + to_return = "Your mother is doing well. She slept 8hr and 23min last night. She used the restroom twice last night. She is now in the kitchen. I can smell coffee." + elif commmand == "#HELP#": + to_return = "There is number of things you can ask me about. For example: 'how is my dad doing?' Or 'How is his environment' or any other question you like" + elif commmand == "#SLEEP#": + to_return = "Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#SLEEP_F#": + to_return = "Your mom slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#ENVIRONMENT#": + to_return = "The temperature in the house is 23 degrees Celsius, CO2 level is 662 ppm, and I can smell coffee brewing. Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#WEEK#": + to_return = "Showing his weekly activity" + elif commmand == "#WEEK_F#": + to_return = "Showing her weekly activity" + elif commmand == "#ACTIVITY#": + to_return = "Your dad has been less active this week than usual. He spent more time sitting in the living room and he got up later than usual by 38min. He also did not go outside as frequently and had less visitors. He only showered once this week." + elif commmand == "#ACTIVITY_F#": + to_return = "Your mom has been less active this week than usual. She spent more time sitting in the living room and she got up later than usual by 38min. She also did not go outside as frequently and had less visitors. She only showered once this week." + elif commmand == "#ACTIVITY_COMPARE#": + to_return = "Overall your dad is less active this year compared to last year. He slept longer in the mornings and had less visitors. Also his shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#ACTIVITY_COMPARE_F#": + to_return = "Overall your mom is less active this year compared to last year. She slept longer in the mornings and had less visitors. Also her shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#LOCATION#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + #current_time = datetime.datetime.now() + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + detected_time = datetime.datetime.fromisoformat(details["last_detected_time"]) + local_time = local_tz.localize(detected_time) + # Convert to UTC + detected_utc_time = local_time.astimezone(pytz.UTC) + + time_diff = current_time - detected_utc_time + minutes = time_diff.total_seconds() / 60 + time_sentence = format_time_difference(minutes) + if minutes == 0: + to_return = f"He is now in the {last_location}." + else: + to_return = f"He was last detected in the {last_location} {time_sentence} ago" + elif commmand == "#SHOWER#": + to_return = "In the last 7 days, your Dad took a shower on Friday, Sunday and Tuesday" + elif commmand == "#SHOWER_F#": + to_return = "The last time your mom took a shower was Yesterda at 9:33AM" + elif commmand == "#BATHROOM#": + to_return = "Last night your Dad used the restroom only once at 6.10am" + elif commmand == "#KITCHEN#": + to_return = "Your Dad only cooked Dinner on Wednesday and he turned off the stove afterwards" + elif commmand == "#MOLD#": + to_return = "I cannot smell any mold. Also, the humidity is very low. In any of the rooms never exceeded 27% RH in the last 7 days." + elif commmand == "#VISITORS#": + to_return = "Yes, on Tuesday, I could detect motion in both office and kitchen at the same time and CO2 levels in the living room exceeded 900ppm." + elif commmand == "#TEMPERATURE#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + temperature = int(details["temperature"]) + if "America" in time_zone_s: + temperature_sentence = f"{int(CelsiusToFahrenheit(temperature))} degrees Farenhight" + else: + temperature_sentence = f"{temperature} degrees Celsius." + to_return = f"The temperature in the {last_location} is {temperature_sentence}." + elif commmand == "#TEMPERATURE_B#": + to_return = "The temperature in the main bathroom is 80 degrees Farenhight." + elif commmand == "#OXYGEN#": + to_return = "His last oxygen level was at 95%." + elif commmand == "#OXYGEN_F#": + to_return = "Her last oxygen level was at 95%." + elif commmand == "#HEART_RATE#": + to_return = "His last heart rate was 74 bpm." + elif commmand == "#BLOOD_PRESSURE#": + to_return = "His latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#BLOOD_PRESSURE_F#": + to_return = "Her latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#EKG#": + to_return = "His latest HeartBeam EKG was done on Monday and it was within his baseline!" + elif commmand == "#EKG_F#": + to_return = "Her latest HeartBeam EKG was done on Monday and it was within her baseline!" + return to_return + +def ScaleToCommon(data, sensor): + + if sensor == "temperature": + new_min = 0 + new_max = 100 + elif sensor == "humidity": + new_min = 100 + new_max = 200 + elif sensor == "light": + new_min = 200 + new_max = 300 + elif sensor == "radar": + new_min = 300 + new_max = 400 + elif sensor == "s0": + new_min = 400 + new_max = 500 + elif sensor == "s1": + new_min = 500 + new_max = 600 + elif sensor == "s2": + new_min = 600 + new_max = 700 + elif sensor == "s3": + new_min = 700 + new_max = 800 + elif sensor == "s4": + new_min = 800 + new_max = 900 + elif sensor == "s5": + new_min = 900 + new_max = 1000 + elif sensor == "s6": + new_min = 1000 + new_max = 1100 + elif sensor == "s7": + new_min = 1100 + new_max = 1200 + elif sensor == "s8": + new_min = 1200 + new_max = 1300 + else: #s9 + new_min = 1300 + new_max = 1400 + + # Split timestamps and values into separate arrays + timestamps = np.array([x[0] for x in data]) + values = np.array([x[1] for x in data]) + + # Get current min and max + if len(values) > 0: + current_min = np.min(values) + current_max = np.max(values) + else: + current_min = 0; + current_max = 0; + + # Scale the values using the min-max formula + if current_max - current_min > 0: + scaled_values = (values - current_min) * (new_max - new_min) / (current_max - current_min) + new_min + else: + mid_val = (new_max + new_min) / 2 + scaled_values = np.full_like(values, mid_val) + + # Zip back together with original timestamps + return list(zip(timestamps, scaled_values)) + +def CreateLocationsStripe(locations_file, time_zone_s): + + parts = locations_file.split("/") + parts1 = parts[2].split("_") + ddate = parts1[1] + deployment_id = parts1[0] + filter_minutes = parts1[2] + bw = False + chart_type = 4 + force_recreate = True + motion = False + scale_global = False + fast = True + GenerateFullLocationMap(locations_file, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + + +def CelsiusToFahrenheit(C): + F = (C * 9/5) + 32 + return F + +def CelsiusToFahrenheitList(compressed_readings: List[Tuple[datetime.datetime, np.float64]]) -> List[Tuple[datetime.datetime, np.float64]]: + + # Create a new list with converted temperatures + converted_readings = [ + [reading[0], CelsiusToFahrenheit(reading[1])] + for reading in compressed_readings + ] + + return converted_readings + +def GetPriviledgesOnly(user_name): + with get_db_connection() as conn: + if isinstance(user_name, (int)) or user_name.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user_name + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def AddToLog(message): + """Add message to log""" + logger.info(message) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def convert_timestamps_lc(data, time_zone_s): + target_tz = pytz.timezone(time_zone_s) + return [[datetime.datetime.fromtimestamp(epoch, pytz.UTC).astimezone(target_tz), value] + for epoch, value in data] + + +subbedToL = [("/wellget",1),("/wellget_cmp",1),("/well_hub",1)] +def on_connectL(client_, userdata, flags, rc): + print(MQTTSERVERL + " L. Connected with result code "+str(rc)) + + # Subscribing in on_connect() means that if we lose the connection and + # reconnect then subscriptions will be renewed. + client_.subscribe(subbedToL) + print("SubscribedL to: "+str(subbedToL)) + +def on_messageL(client_, userdata, msg): #message from GUI + print(msg.topic+" "+str(msg.payload)) + #msga = msg.payload.decode("ascii") + #print(msg.timestamp) + #in_queue.append((str(time.time()), msg.topic, msg.payload)) + +def MQSendL(topic, content, qos=1): + print(topic, content[0:100]) + #return MQSend(topic, content) + #currentTime = int(time.time()) + try: + if "_cmp" in topic: + enc_msg = zlib.compress(content.encode('utf-8')) + else: + enc_msg = content + clientL.publish(topic, enc_msg, qos=qos, retain=False) + except Exception as err: + print ("Err2B:", err) + try: + clientL.disconnect() + #client.username_pw_set('telegraf', 'well18') + clientL.connect(MQTTSERVERL, MQTT_PortL, 60) + except Exception as e: + print ("Err3b:", e) + +# CORS Middleware +class CORSMiddleware: + def process_request(self, req, resp): + resp.set_header('Access-Control-Allow-Origin', '*') + resp.set_header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS') + resp.set_header('Access-Control-Allow-Headers', '*') + + def process_response(self, req, resp, resource, req_succeeded): + if req.method == 'OPTIONS': # Handle preflight requests + resp.status = falcon.HTTP_200 + +# Add this class to your code +class RequestParser: + def __init__(self): + # Detect if we're running in debug/development mode + self.debug_mode = __name__ == "__main__" or os.environ.get('DEBUG', 'false').lower() in ('true', '1', 'yes') + logger.debug(f"RequestParser initialized in {'DEBUG' if self.debug_mode else 'PRODUCTION'} mode") + + def process_request(self, req, resp): + """Pre-process the request to ensure media is parsed early""" + logger.debug(f"RequestParser processing: {req.method} {req.path}") + + # Initialize an empty form_data dict + req.context.form_data = {} + + # Only process POST requests with the right content type + if req.method != 'POST' or not req.content_type or 'form-urlencoded' not in req.content_type: + logger.debug("RequestParser: Skipping (not a form POST)") + return + + try: + # Different handling based on environment + if self.debug_mode: + self._process_debug(req) + else: + self._process_production(req) + + except Exception as e: + logger.error(f"RequestParser error: {str(e)}") + logger.error(traceback.format_exc()) + + def _process_debug(self, req): + """Process request in debug mode - optimized for local development""" + logger.debug("RequestParser: Using DEBUG mode processing") + + # In debug mode, we can use Content-Length and know it's reliable + content_length = req.get_header('content-length') + + if content_length: + # Content-Length is present + content_length = int(content_length) + logger.debug(f"RequestParser: Reading {content_length} bytes using Content-Length") + + raw_body = req.stream.read(content_length) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + else: + logger.debug("RequestParser (debug): No Content-Length header") + + def _process_production(self, req): + """Process request in production mode - optimized for OpenFaaS/faasd deployment""" + logger.debug("RequestParser: Using PRODUCTION mode processing") + + # Simple direct read approach for production (OpenFaaS/faasd) + # We'll limit the read to 1MB for safety + MAX_SIZE = 1024 * 1024 # 1MB + + # Just read directly from the stream without checking + raw_body = req.stream.read(MAX_SIZE) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + + + + +# Add this function to your code +def get_form_data(req): + """Helper function to get form data from either context or req.media""" + # First check if we pre-parsed the form data + if hasattr(req.context, 'form_data') and req.context.form_data: + logger.debug("Using pre-parsed form data from context") + return req.context.form_data + + # Otherwise try to get from req.media (for json) + try: + if req.content_type and ( + falcon.MEDIA_JSON in req.content_type or + falcon.MEDIA_URLENCODED in req.content_type + ): + logger.debug("Attempting to get form data from req.media") + return req.media or {} + except Exception as e: + logger.error(f"Error getting req.media: {str(e)}") + + logger.debug("No form data available, returning empty dict") + return {} + +# Path handling middleware +class StripPathMiddleware: + def process_request(self, req, resp): + # Strip the '/function/well-api' prefix if present + path = req.path + logger.info(f"Original request path: {path}") + + # Define patterns to match different URL formats + patterns = [ + r'^/function/well-api', # Standard OpenFaaS path + r'^/api/well_api', # API path + ] + + for pattern in patterns: + if re.match(pattern, path): + # Strip the matched prefix + path = re.sub(pattern, '', path) + # Ensure path starts with a slash + if not path.startswith('/'): + path = '/' + path + # Update the request path + req.path = path + logger.info(f"Modified request path: {path}") + break + +# Main API class +class WellApi: + def on_get_healthz(self, req, resp): + """Health check endpoint""" + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_TEXT + resp.text = "OK" + + def on_get(self, req, resp, path=""): + """Handle GET requests""" + logger.debug(f"GET request to path: {path}") + logger.debug(f"Sent variables: {req.params}") + logger.debug(f"All headers: {dict(req.headers)}") + if path == "" or path == "/": + # Serve the main portal page + blob_data = read_file("well_portal.html") + if blob_data: + resp.content_type = "text/html" + resp.text = blob_data + else: + # Fall back to JSON response if file not found + resp.media = {"message": "Hello from OpenFaaS Serverless Web Server!", "method": "GET"} + return + elif path == "favicon.ico": + favicon_path = "favicon.ico" + if os.path.isfile(favicon_path): + resp.content_type = 'image/x-icon' + resp.data = read_file(favicon_path, type_="BIN") + resp.status = HTTP_200 + else: + resp.status = HTTP_404 + return + elif path == "health": + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"status": "healthy"}) + return + + # Authentication and authorization + token = req.params.get('token') + user_name = req.params.get('user_name') + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + privileges = GetPriviledgesOnly(user_name) + + if token and user_name: + user_info = verify_token(token) + if user_info is None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + + if get_function_name == "deployment_add": + user_id = req.params.get('user_id') + blob_data = read_file("edit_deployment.html") + caretaker = {'deployment_id': 0, 'beneficiary_id': user_id, 'caretaker_id': user_id, 'owner_id': user_id, 'installer_id': user_id, 'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "devices_list": + st = time.time() + user_id = req.params.get('user_id') + privileges = GetPriviledgesOnly(user_id) + first_s = req.params.get('first') + last_s = req.params.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + blob_data = read_file("my_devices.html") + + devices = GetVisibleDevices(privileges) + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDevicesTable(blob_data, devices, users) + blob_data = UpdateDeploymentsSelector(blob_data, users) + resp.content_type = "text/html" + resp.text = blob_data + #print(blob_data) + return + + elif get_function_name == "deployment_edit": + deployment_id = req.params.get('deployment_id') + blob_data = read_file("edit_deployment.html") + + deployment = DeploymentDetails(deployment_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, deployment, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "caretaker_add": + + blob_data = read_file("edit_caretaker.html") + caretaker = {'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "caretaker_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_caretaker.html") + + caretaker = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "device_add": + + blob_data = read_file("edit_device.html") + device = {'device_id': 0, 'device_mac': '', 'well_id': '', 'description': '', 'location': '', 'close_to': '', 'radar_threshold': '["s3_max",50]', 'temperature_calib': '0.0,1.0,0.0', 'humidity_calib': '0.0,1.0,0.0'} + blob_data = FillFields(blob_data, device, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "device_edit": + mac = req.params.get('mac') + + blob_data = read_file("edit_device.html") + + device_det = DeviceDetails(mac) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, device_det, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + + elif get_function_name == "beneficiary_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_beneficiary.html") + + beneficiary = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "beneficiary_add": + + blob_data = read_file("edit_beneficiary.html") + beneficiary = {'user_id': 0, 'role_ids': '1', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "get_image_file": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + group_by = req.params.get("group_by") + timee = StringToEpoch(ddate, time_zone_s) + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + map_type = int(req.params.get("map_type")) + + bw = req.params.get("bw") == "true" + unique_identifier = req.params.get("unique_identifier") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{group_by}_{radar_part}_{map_type}_{bw}_dayly_image.png" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate: + st = time.time() + vocs_scaled = {} + devices_list = GetProximityList(deployment_id, timee) + stored, vocs_scaled = CreateMapFast(filename, devices_list, ddate, bw, time_zone_s, radar_part, group_by) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + if stored != True: + AddToLog("Map not created") + #logger.warning("Map not created") + resp.media = package_response("Map not created", HTTP_401) + return + else: + AddToLog("Map created") + #lets send over MQTT vocs_scaled + json_data = numpy_to_json(vocs_scaled, devices_list) + MQSendL("/"+unique_identifier, json_data) + #print(time.time() - st) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + sys.stdout.flush() + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_full_location_map": + + raw = req.params.get("raw") == "true" + + if raw: + #function=request_deployment_map_new + #token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6InJvYnN0ZXIiLCJleHAiOjE3MzgxNzYzNTZ9.5wzC2dVQhKlMygHPZfombTINbltNq8vxdilLIugNTtA& + #user_name=robster& + #date=2025-01-27& + #deployment_id=21& + #map_type=2 + chart_type = 8 + else: + chart_type = int(req.params.get("map_type")) + + #image represents day in local time + logger.debug("get_full_location_map") + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + + to_date = ddate + + try: + to_date = req.params.get("to_date") + to_date = to_date.replace("_","-") + except: + pass + + if to_date != ddate: + chart_type = int(req.params.get("map_type")) + + force_recreate = req.params.get("re_create") == "true" + force_recreate_orig = force_recreate + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + + filter_minutes = int(req.params.get("filter")) + + if "flavor" in req.params: #this is to be used only when creating + flavor = int(req.params.get("flavor")) + else: + flavor = 0 + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + if chart_type == 5 or chart_type == 7: + #now_date = req.params.get("now_date") + #now_date = now_date.replace("_","-") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + else: + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + #file_exists1, time_modified_utc1 = check_file_exists(filename+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - time_modified_local + #if time_passed.seconds > 300: #recreate if older than 5 minutes + # force_recreate = True + + else: + force_recreate = True + + if force_recreate: + ddate = ddate.replace("_","-") + #filter_minutes = 5 + #filename = os.path.join(scriptDir+"/daily_maps/"+deployment, proximity_string+"_"+deployment+"_"+ddate+"_dayly_image.png") + + filename = filename.replace('\\','/') + if chart_type == 4: #"collapsed": + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + elif chart_type == 5: #"history": + GeneratePresenceHistory(filename, force_recreate, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 7: #"history full chart": + filename = GeneratePresenceHistoryChart(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 8: #"set for mobile" + GenerateFullLocationMapLabelsOut(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + else: + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_presence_map": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + force_recreate = req.params.get("re_create") == "true" + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + chart_type = int(req.params.get("map_type")) + filter_minutes = int(req.params.get("filter")) + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + ddate = ddate.replace("_","-") + days = 7 + + filename = filename.replace('\\','/') + if chart_type == 6: #"AI Locations": + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreatePresenceMap(filename, devices_list, ddate, 1, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + + return + elif get_function_name == "download": + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + date_from = req.params.get("date_from") + date_to = req.params.get("date_to") + date_from = date_from.replace("_","-") + date_to = date_to.replace("_","-") + consolidated_by = req.params.get("consolidated_by") + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + zip_filename = f"/{deployment_id}/{deployment_id}_{date_from}_{date_to}_{consolidated_by}_data.zip" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(zip_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(zip_filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + dates = DatesSpan(date_from, date_to) + to_zip = [] + for ddate in dates: + force_recreate_csv = force_recreate + csv_dayly_filename = f"/{deployment_id}/{deployment_id}_{ddate}_{consolidated_by}_data.csv" + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + if not force_recreate_csv: + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + file_exists, time_modified_utc = check_file_exists(csv_dayly_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(csv_dayly_filename) + if time_modified_date <= file_date: + force_recreate_csv = True + else: + force_recreate_csv = True + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate_csv: + st = time.time() + vocs_scaled = {} + + devices_list = GetProximityList(deployment_id, timee) + temp_offset = -16 + file_stored = CreateDailyCSV(csv_dayly_filename, devices_list, ddate, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + to_zip.append(file_stored) + else: + to_zip.append(csv_dayly_filename) + + if to_zip: + success = zip_blobs( + blob_paths=to_zip, + zip_blob_name=zip_filename, + bucket_name="data-downloads", + minio_client=miniIO_blob_client + ) + + if success: + print("Files successfully zipped") + else: + print("Error occurred while zipping files") + + #pack CSV files from BLOB into ZIP + #lets read and send image from blob + zip_bytes, content_type = GetBlob(zip_filename, bucket_name="data-downloads") + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if zip_bytes is None: + raise falcon.HTTPNotFound( + title='File not found', + description=f'File {zip_filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = zip_bytes + resp.status = falcon.HTTP_200 + return + resp.media = package_response("Use POST method for this endpoint", HTTP_400) + + # Default response for unmatched paths + #resp.media = package_response(f"Path: /{path}", HTTP_200) + + def on_post(self, req, resp, path=""): + """Handle POST requests""" + logger.debug(f"on_post called with path: {path}") + logger.debug(f"Request method: {req.method}") + logger.debug(f"Request path: {req.path}") + logger.debug(f"Request query string: {req.query_string}") + logger.debug(f"Request headers: {req.headers}") + logger.debug(f"Request content type: {req.content_type}") + + # Get form data using our helper function - but don't read stream again + form_data = get_form_data(req) + logger.debug(f"Form data: {form_data}") + + ## Special cases for specific endpoints + #if path == "users": + #logger.info("POST request to users endpoint") + #resp.status = HTTP_201 + #resp.content_type = falcon.MEDIA_JSON + #resp.text = json.dumps({"id": "new-user-id", "message": "User created"}) + #return + #elif path == "items": + #logger.info("POST request to items endpoint") + #resp.status = HTTP_201 + #resp.content_type = falcon.MEDIA_JSON + #resp.text = json.dumps({"id": "new-item-id", "message": "Item created"}) + #return + + try: + # Get basic parameters + function = form_data.get('function') + user_name = form_data.get('user_name') + logger.debug(f"Function: {function}, User: {user_name}") + + + if function != "credentials": + token = form_data.get('token') + + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + + #with get_db_connection() as db_conn: + privileges = GetPriviledgesOnly(user_name) + + # Handle credentials function - most common case + if function == "credentials": + + clientId = form_data.get('clientId') + nonce = form_data.get('nonce') + ps = form_data.get('ps') + + if not user_name: + resp.media = package_response("Required field 'user_name' is missing", HTTP_400) + return + + if not clientId: + resp.media = package_response("Required field 'clientId' is missing", HTTP_400) + return + + if not nonce: + resp.media = package_response("Required field 'nonce' is missing", HTTP_400) + return + + if not ps: + resp.media = package_response("Required field 'ps' is missing", HTTP_400) + return + + + + if user_name == MASTER_ADMIN and ps == MASTER_PS: + access_token = generate_token(user_name) + privileges, user_id = ValidUser(user_name, ps) + privileges = "-1" + else: + #lets check for real + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + access_token = 0 + privileges = 0 + else: + access_token = generate_token(user_name) + + token_payload = {'access_token': access_token, 'privileges': privileges, 'user_id': user_id} + resp.media = package_response(token_payload) + resp.status = falcon.HTTP_200 + return + + # Handle token-protected functions + elif function == "messages_age": + + macs = form_data.get('macs') + + with get_db_connection() as conn: + + #print (sqlr) + with conn.cursor() as cur: + + devices = MACsStrToDevIds(cur, macs) + + devices_string = ",".join(f"{device_id}" for mac, device_id in devices) + + + sqlr = f""" + SELECT + device_id, + GREATEST( + radar_last_time, + sensor_last_time + ) AS latest_time + FROM + (SELECT unnest(ARRAY[{devices_string}]) AS device_id) d + LEFT JOIN LATERAL ( + SELECT time AS radar_last_time + FROM radar_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) r ON true + LEFT JOIN LATERAL ( + SELECT time AS sensor_last_time + FROM sensor_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) s ON true;""" + logger.debug(f"sqlr= {sqlr}") + cur.execute(sqlr) + times_list = cur.fetchall() + result = {} + for i in range(len(times_list)): + if times_list[i][1] is not None: + result[devices[i][0]] = times_list[i][1].timestamp() + else: + result[devices[i][0]] = 0 + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + elif function == "voice_ask": + + question = form_data.get('question') + deployment_id = form_data.get('deployment_id') + + if ('language_from' in form_data): + language_from = form_data.get('language_from').strip() + else: + language_from = "English" + + if ('language_to' in form_data): + language_to = form_data.get('language_to').strip() + else: + language_to = "English" + + + result, language = AskGPT(question, language_from, language_to) + + if result[0] == "#": + result = RunCommand(result, {}, deployment_id) + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['name'] = "" + dataa['reflected'] = "" + dataa['language'] = language + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + + elif function == "calibrate_thresholds": + #this will use current date to calibrate radar presence thresholds. + #make sure that data is well defined (has clear absence/presence signature) for all rooms for chosen day + #Format of radar_threshold field = [gates_to_use_Presence_list, p_threshold] + #We need to automate this functionality!!! + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = form_data.get("date") + ddate = ddate.replace("_","-") + selected_date = ddate + + + + stdev_range = int(form_data.get("stdev_range")) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, timee) + + selected_date = FindCalibrationDate(device_ids, ddate) + + devices_c = len(devices_list[0]) + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s, stdev_range) + fields = ["radar_s_min", "radar_s_max", "radar_m_max", "radar_stdev"] + cnt = 0 + ids_list = [] + for details in devices_list: + ids_list.append(details[1]) + devices_list_str = ",".join(map(str, ids_list)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + minutes = 1440 + + with get_db_connection() as conn: + with conn.cursor() as cur: + for device_index in range(devices_c): + well_id = devices_list[device_index][0] + device_id = devices_list[device_index][1] + location = devices_list[device_index][2] + + sql = get_device_radar_s28_only_query(time_from_str, time_to_str, device_id) + print(sql) + + #sql1 = get_deployment_radar_only_colapsed_query(str(device_id), time_from_str, time_to_str, [device_id]) + #print(sql1) + st = time.time() + cur.execute(sql) + my_data = cur.fetchall() + + timestamps, stationary, motion = process_raw_data(my_data) + print(type(stationary)) + # Find threshold above which 20% of points lie + AveragePercentSpendsThere = AveragePercentPerLocation[Consolidataed_locations[location]] + threshold_high, threshold_low = FindThreshold(stationary, AveragePercentSpendsThere) + file_save = f"threshold_graph_{location}.png" + title = f"{well_id}_{location}" + + threshold2, x_percent, y_percent = ShowThresholdGraph(stationary, file_save, threshold_low, threshold_high, title, AveragePercentSpendsThere, location) + + print(f"Maximum curvature point found at:") + print(f"Threshold value: {threshold2:.3f}") + print(f"X: {x_percent:.1f}% of range") + print(f"Y: {y_percent:.1f}% of points above") + + ShowArray(stationary, threshold2, filename=f"stationary_{devices_list[device_index][0]}.png", title=f"stationary_{devices_list[device_index][0]}_{devices_list[device_index][2]}", style='line') + + + ##threshold + ##presence_mask, baseline, threshold = detect_presence(timestamps, stationary, motion) + + ### Save visualization to file + ##visualize_detection(timestamps, stationary, motion, presence_mask, + ## baseline, threshold) + + #cur.execute(sql1) + #my_data1 = cur.fetchall()#cur.fetchone() + #print(time.time() - st) + #if my_data == None or my_data1 == None: + #logger.warning(f"No data found for device_id {device_id}") + #else: + #print(type(my_data)) + ##minute, + ##device_id, + ##s_min as radar_s_min, + ##s_max as radar_s_max, + ##m_max as radar_m_max + + #values = [tup[1] for tup in my_data] #10 sec (RAW) data + + #hist, bins = np.histogram(values, bins=1000, range=(0, 100)) + #TR, BR = FindZeroIntersection(hist, bins, f'raw_{device_id}_histogram.png', device_id) + #if True:#device_id == 560: + #plot(values, filename=f"radar_{device_id}_s28.png", title=f"Radar s28 {device_id}", style='line') + #plot(hist, filename=f"radar_{device_id}_s28_hist.png", title=f"Radar s28 {device_id} histogram", style='line') + + ##life = [tup[3] - tup[2] + tup[4] for tup in my_data1] + #life, average = calculate_life_and_average(my_data1, stdev_range) #5 min data + #lhist, lbins = np.histogram(life, bins=1000) + #TLIFE, BLIFE = FindZeroIntersection(lhist, lbins, f'life_{device_id}_histogram.png', device_id) + + #StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE) + ##for now not needed... + ##ahist, abins = np.histogram(average, bins=1000) + ##dummy1, dummy = FindZeroIntersection(ahist, abins) + #if True:#device_id == 560: + #plot(average, filename=f"average_{device_id}.png", title=f"Average {device_id}", style='line') + #plot(life, filename=f"life_{device_id}.png", title=f"Life {device_id}", style='line') + #plot(lhist, filename=f"life_{device_id}_hist.png", title=f"life {device_id} histogram", style='line') + ##plot(ahist, filename=f"average_{device_id}_hist.png", title=f"average {device_id} histogram", style='line') + + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + my_data = [] + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + fields_n = len(fields) + stripes = devices_c * fields_n #radar_min and radar_max + print(my_data) + base_minute = ConvertToBase(time_from_str, time_zone_s) + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + #remember: base_minute is offset (smaller) by numbr of minutes in stdev_range + st = time.time() + wave_m = np.zeros((stripes, 1440+2*stdev_range, 1), dtype=np.float32) + + for record in my_data: + #(minute,device_id,s28_min,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the min/max values + x = int((minute - base_minute).total_seconds()/60) + + device_idx = device_to_index[device_id] + #value[0] are mins, value[1] are maxes + #when trying to illustrate presence, use s28_max, when absence (night leaving bed) use s28s_min + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + wave_m[y, x] = value + + print(time.time()-st) + + #we need to reliably determine presence and LIFE (motion) in every 5 minutes of data... + #presence is determined by average value being significntly different from last known base + #last known base is determined by average value during extended periods ( >= H hours) of low stdev (<) while it is determined that: + #person is moving elsewhere, and only 1 person is determined to be in monitored area. + + #lets calculate stdevs + for device_index in range(devices_c): + y = device_index * fields_n + row = wave_m[y] + stdevs = np.zeros((1440+2*stdev_range, 1), dtype=np.float32) + stdevs, amplitude = CalcStdevs(row, stdev_range, stdevs) + wave_m[y+3] = stdevs + plot(stdevs, filename=f"radar{device_index}_stdevs.png", title=f"Radar Stedevs {device_index}", style='line') + + minutes = 1440 + + + device_index = 0 + y = 0 + for device in devices_list: + wave = wave_m[y][stdev_range: stdev_range + minutes] + plot(wave, + filename="radar_wave_min.png", + title="Radar Signal Min", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_min.png", + title="Radar Signal Histogram Min (1000 bins)", + style='line') + + wave = wave_m[y+1] + plot(wave, + filename="radar_wave_max.png", + title="Radar Signal", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_max.png", + title="Radar Signal Histogram Max(1000 bins)", + style='line') + + print(wave) + device_to_index += 1 + + #lets see this map + stretch_by = 5 + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + st = time.time() + for yy in range(stripes): + rgb_row = [] + row = wave_m[yy] + for x in range(minutes): + value = 1280 * row[x] / 100 + rgb_row.append(BestColor(value)) + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + filename = f"{deployment_id}/{deployment_id}_{ddate}_min_max_radar.png" + SaveImageInBlob(filename, arr_stretched, []) + + + return + + elif function == "request_single_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_list_loc = [form_data.get('sensor_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + data_type = form_data.get('data_type') + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + device_id2_mac + sensor_data = {} + for sensor in sensor_list_loc: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + + sensor_data[sensor] = cleaned_values + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "get_sensor_bucketed_data_by_room_sensor": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) to get timezone + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list + # (tells what sensor data to be retrieved) + # "voc" for all smell use s4 (lower reading is higher smell, max=0 find min for 100%) + # "radar" returns s28 + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # location - room name (has to be unique) + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + location = form_data.get('location') + data_type = form_data.get('data_type') + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) + + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + units = "°C" + if "America" in time_zone_s: + units = "°F" + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", units], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + + current_time_la = datetime.datetime.now(pytz.timezone(time_zone_s)) + formatted_time = current_time_la.strftime('%Y-%m-%dT%H:%M:%S') #"2025-02-06T20:09:00" + + result_dictionary = { + "last_report_at": formatted_time, + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + # example data in each element of devices_list is (266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + for well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to in devices_list: + if location_name == location: + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + if sensor == "temperature": + if units == "°F":#"America" in time_zone_s: + compressed_readings = CelsiusToFahrenheitList(compressed_readings) + + + + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_sensor_data_by_deployment_id": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list (tells what sensor data to be retrieved) + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + data_type = form_data.get('data_type') + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + #timee = LocalDateToUTCEpoch(selected_date, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", "°C"], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + result_dictionary = { + "last_report_at": "2025-02-06T20:09:00", + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + + #compressed_readings = [(time.strftime("%H:%M", time.gmtime(lst[0][0])), float(sum(t for _, t in lst)/len(lst))) + #for _, lst in ((k, list(g)) + #for k, g in itertools.groupby(cleaned_values, key=lambda x: time.gmtime(x[0]).tm_hour))] + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, + 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + #is_neste, device_details = check_and_parse(devices_list) + #if not is_nested: + #device_ids_list = [device_details[1]] + #well_ids_list = [device_details[0]] + #else: + #device_ids_list = list(map(lambda x: x[1], device_details)) + #well_ids_list =list(map(lambda x: x[0], device_details)) + #well_id = well_ids_list[0] + #all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + #for device_id in device_ids_list: + #device_id2_mac + #sensor_data = {} + #for sensor in sensor_list_loc: + #st = time.time() + #line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + #window = sensor_legal_values[sensor][2] + #line_part_t = [] + #line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + #st = time.time() + #cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #sensor_data[sensor] = cleaned_values + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + #dataa = {} + #dataa['Function'] = "single_slicedata" + #dataa['devices_list'] = devices_list + #dataa['all_slices'] = all_slices + #dataa['time_zone_st'] = time_zone_s + #dataa['well_id'] = well_id + #resp.media = package_response(dataa) + #resp.status = falcon.HTTP_200 + result_dictionary2 = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "last_report_at": "ISO TIMESTAMP", + "chart_data": [ + { + "rooms": [ + { "name": "Bathroom", + "data": [ + {"title": "12AM","value": 20}, + {"title": "01AM","value": 20}, + {"title": "02AM","value": 26}, + {"title": "03AM","value": 16}, + {"title": "04AM","value": 27}, + {"title": "05AM","value": 23}, + {"title": "06AM","value": 26}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 18}, + {"title": "09AM","value": 21}, + {"title": "10AM","value": 28}, + {"title": "11AM","value": 24}, + {"title": "12PM","value": 18}, + {"title": "01PM","value": 27}, + {"title": "02PM","value": 27}, + {"title": "03PM","value": 19}, + {"title": "04PM","value": 0}, + {"title": "05PM","value": 0}, + {"title": "06PM","value": 0}, + {"title": "07PM","value": 0}, + {"title": "08PM","value": 0}, + {"title": "09PM","value": 0}, + {"title": "10PM","value": 0}, + {"title": "11PM","value": 0} + ] + }, + { "name": "Kitchen", + "data": [ + {"title": "00AM","value": 19}, + {"title": "01AM","value": 10}, + {"title": "02AM","value": 8}, + {"title": "03AM","value": 14}, + {"title": "04AM","value": 20}, + {"title": "05AM","value": 8}, + {"title": "06AM","value": 7}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 3}, + {"title": "09AM","value": 19}, + {"title": "10AM","value": 4}, + {"title": "11AM","value": 6}, + {"title": "12PM","value": 4}, + {"title": "01PM","value": 14}, + {"title": "02PM","value": 17}, + {"title": "03PM","value": 20}, + {"title": "04PM","value": 19}, + {"title": "05PM","value": 15}, + {"title": "06PM","value": 5}, + {"title": "07PM","value": 19}, + {"title": "08PM","value": 3}, + {"title": "09PM","value": 30}, + {"title": "10PM","value": 1}, + {"title": "11PM","value": 12 } + ] + }, + { "name": "Living Room", + "data": [ + {"title": "00AM","value": 25}, + {"title": "01AM","value": 24}, + {"title": "02AM","value": 19}, + {"title": "03AM","value": 20}, + {"title": "04AM","value": 22}, + {"title": "05AM","value": 20}, + {"title": "06AM","value": 11}, + {"title": "07AM","value": 5}, + {"title": "08AM","value": 16}, + {"title": "09AM","value": 22}, + {"title": "10AM","value": 23}, + {"title": "11AM","value": 14}, + {"title": "12PM","value": 0}, + {"title": "01PM","value": 7}, + {"title": "02PM","value": 25}, + {"title": "03PM","value": 29}, + {"title": "04PM","value": 23}, + {"title": "05PM","value": 27}, + {"title": "06PM","value": 27}, + {"title": "07PM","value": 20}, + {"title": "08PM","value": 2}, + {"title": "09PM","value": 24}, + {"title": "10PM","value": 21}, + {"title": "11PM","value": 14 } + ] + } + ] + } + ] + } + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + #AddToLog(payload) + #return + elif function == "request_device_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc = form_data.get('epoch_from') + epoch_to_utc = form_data.get('epoch_to') + device_id = form_data.get('device_id') + well_id = form_data.get('well_id') + MAC = form_data.get('MAC') + sensor_list_loc = form_data.get('sensors_list') + sensor_list = sensor_list_loc.split(",") + device_ids_list = [device_id] + well_ids_list = [well_id] + maps_dates, positions_list = GetDeploymentDatesBoth(deployment_id) + + data_type = "RL" + #epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + #device_id2_mac + sensor_data = {} + for sensor in sensor_list: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + cleaned_values = ScaleToCommon(cleaned_values_t, sensor) + sensor_data[sensor] = cleaned_values + all_slices[device_id] = sensor_data + + dataa = {} + dataa['Function'] = "device_slicedata" + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['proximity'] = positions_list + dataa['well_id'] = well_id + dataa['MAC'] = MAC + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "request_single_radar_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + ctrl_key_state = form_data.get('ctrl_key_state') + alt_key_state = form_data.get('alt_key_state') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_index_list = [form_data.get('sensor_index_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + device_id2_mac + sensor_data = {} + for sensor_index in sensor_index_list: + st = time.time() + sensor = ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7", "m8", "m08_max", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s28_max", "s28_min"][int(sensor_index)] + + line_part = ReadRadarDetail(device_id, sensor, epoch_from_utc, epoch_to_utc, alt_key_state) + window = sensor_legal_values["radar"][2] + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + if len(sensor) < 4: + sensor_data[sensor+"_max"] = cleaned_values + else: + sensor_data[sensor] = cleaned_values + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "get_deployment": + blob_data = read_file("deployment.html") + deployment_id = form_data.get('deployment_id') + #lets update "Deployments" select + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDeploymentsSelector(blob_data, users, False, deployment_id) + + resp.content_type = "text/html" + resp.text = blob_data + return + elif function == "request_deployment_map_new": + st = time.time() + print(f"$0 ----{time.time() - st}") + deployment_id = form_data.get('deployment_id') + map_type = form_data.get('map_type') + print(f"$1 ----{time.time() - st}") + maps_dates, positions_list = GetDeploymentDatesBoth(deployment_id) + print(f"$2 ----{time.time() - st}") + datee = form_data.get('date') + if maps_dates != []: + + if datee == "2022-4-2": #that one is default in HTML so disregard + datee = maps_dates[0] + + locations_desc_map = {} + for details in positions_list: + well_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location +" "+ details[3] + + if details[6] != None and details[6] != "": + location = location +" "+ details[6] + + MAC = details[4] + locations_desc_map[well_id] = location + print(f"$3 ----{time.time() - st}") + + dataa = {} + dataa['Function'] = "deployments_maps_report" + dataa['proximity'] = positions_list + maps_dates.sort(reverse = True) + dataa['maps_dates'] = maps_dates + dataa['device_count'] = len(positions_list) + dataa['map_type'] = map_type + + #MACs_list = GetMACsListSimple(positions_list) + #MACs_map = {} + + #for details in positions_list: + # id = details[0] + # MAC = details[3] + # MACs_map[id] = MAC + #for i in range(len(MACs_list)): + # MACs_map[devices_list[i]] = MACs_list[i][0] + + id = positions_list[0][0] + #dataa['MACs_map'] = MACs_map + dataa['locations_desc_map'] = locations_desc_map + #proximity_list = proximity.split(",") + print(f"$4 ----{time.time() - st}") + + if id < 200: + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'C>\n' + checkmarks_string = checkmarks_string + 'V>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>
' + else: #>200 = ["Temperature", "Humidity", "Pressure", "Light", "Radar", "VOC"] + + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>\n' + + checkmarks_string = checkmarks_string + 'S0>\n' + checkmarks_string = checkmarks_string + 'S1>\n' + checkmarks_string = checkmarks_string + 'S2>\n' + checkmarks_string = checkmarks_string + 'S3>\n' + checkmarks_string = checkmarks_string + 'S4>\n' + checkmarks_string = checkmarks_string + 'S5>\n' + checkmarks_string = checkmarks_string + 'S6>\n' + checkmarks_string = checkmarks_string + 'S7>\n' + checkmarks_string = checkmarks_string + 'S8>\n' + checkmarks_string = checkmarks_string + 'S9>
' + + checked_or_not = " checked" + + for index in range(len(positions_list)): + details = positions_list[index] + device_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location + " " + details[3] + + if details[6] != None and details[6] != "": + location = location + " " + details[6] + + checkmarks_string = checkmarks_string + str(device_id) + '>\n' + checked_or_not = '' + + print(f"$5 ----{time.time() - st}") + + dataa['checkmarks'] = checkmarks_string + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "request_proximity": + deployment = form_data.get('deployment_id') + timee = form_data.get('time') + #timee = StringToEpoch(datee) + #print(deployment, timee) + well_ids, device_ids = GetProximityList(deployment, timee) + #print(proximity) + dataa = {} + dataa['Function'] = "proximity_report" + if len(well_ids) > 0: + dataa['proximity'] = well_ids + else: + dataa['proximity'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "request_devices": + deployment_id = form_data.get('deployment_id') + group_id = form_data.get('group_id') + location = form_data.get('location') + if location == "0": + location = "All" + is_fresh = form_data.get('is_fresh') + matching_devices = GetMatchingDevices(privileges, group_id, deployment_id, location) + dataa = {} + dataa['Function'] = "devices_report" + if len(matching_devices) > 0: + dataa['devices'] = matching_devices + else: + dataa['devices'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "device_form": + editing_device_id = form_data.get('editing_device_id') + + ok = StoreDevice2DB(form_data, editing_device_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "device_delete": + + #check if admin! + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_raw_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + if "part" in req_dict: + part = req_dict["part"][0] + else: + part = "" + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + timezone_str = req_dict["tzone"][0] + AddToLog("get_raw_data:" + str(MAC) +","+ str(sensor) + "," + str(from_time) + "," + str(to_time) + "," + part+ "," + timezone_str) + #raw_data = GetRawSensorData(container, MAC, sensor, from_time, to_time, timezone_str) + raw_data = GetRawSensorDataFromBlobStorage(MAC, sensor, part, from_time, to_time, timezone_str) + data_payload = {'raw_data': raw_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_candle_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + part = req_dict["part"][0] + tzone = req_dict["tzone"][0] + AddToLog(str(req_dict)) + candle_data = GetCandleSensorData(container, MAC, sensor, from_time, to_time, part, tzone) + data_payload = {'candle_data': candle_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployment_form": + editing_deployment_id = form_data.get('editing_deployment_id') + + ok = StoreDeployment2DB(form_data, editing_deployment_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "deployment_delete": + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployments_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_deployments = ListDeployments(privileges, user_id) + + cnt = 0 + + for deployment in all_deployments: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"deployment_id": deployment['deployment_id'], "email": user_id_2_user[deployment['beneficiary_id']][3], "first_name": user_id_2_user[deployment['beneficiary_id']][5], "last_name": user_id_2_user[deployment['beneficiary_id']][6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretaker_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + + if "@" in email: + ok = StoreCaretaker2DB(form_data, editing_user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + resp.media = package_response("Missing or illegal 'email' parameter", HTTP_400) + return + + elif function == "caretaker_delete": + if privileges == "-1": + ok = DeleteRecordFromDB(form_data) + else: + ok = 0 + AddToLog(ok) + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretakers_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + if privileges == "-1": + all_caretakers = ListCaretakers() + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + if "@" in email: + ok = StoreBeneficiary2DB(form_data, editing_user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_delete": + + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiaries_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + + cnt = 0 + + for beneficiary in all_beneficiaries: + cnt += 1 + if cnt >= first: + beneficiary_min_object = {"user_id": beneficiary[0], "email": beneficiary[3], "first_name": beneficiary[5], "last_name": beneficiary[6]} + result_list.append(beneficiary_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "activities_report_details": + deployment_id = form_data.get('deployment_id') + result_dictionary = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "chart_data": [ + { + "name": "Weekly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + } + ] + }, + { + "name": "Monthly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "01", "events": 67, "hours": 45 }, + { "title": "02", "events": 97, "hours": 67 }, + { "title": "03", "events": 87, "hours": 23 }, + { "title": "04", "events": 42, "hours": 12 }, + { "title": "05", "events": 64, "hours": 48 }, + { "title": "06", "events": 53, "hours": 34 }, + { "title": "07", "events": 75, "hours": 23 }, + { "title": "08", "events": 45, "hours": 56 }, + { "title": "09", "events": 85, "hours": 47 }, + { "title": "10", "events": 34, "hours": 29 }, + { "title": "11", "events": 49, "hours": 30 }, + { "title": "12", "events": 62, "hours": 33 }, + { "title": "13", "events": 75, "hours": 44 }, + { "title": "14", "events": 88, "hours": 57 }, + { "title": "15", "events": 94, "hours": 65 }, + { "title": "16", "events": 45, "hours": 21 }, + { "title": "17", "events": 76, "hours": 54 }, + { "title": "18", "events": 85, "hours": 62 }, + { "title": "19", "events": 43, "hours": 28 }, + { "title": "20", "events": 59, "hours": 34 }, + { "title": "21", "events": 78, "hours": 56 }, + { "title": "22", "events": 64, "hours": 39 }, + { "title": "23", "events": 93, "hours": 72 }, + { "title": "24", "events": 52, "hours": 28 }, + { "title": "25", "events": 71, "hours": 48 }, + { "title": "26", "events": 85, "hours": 63 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "01", "events": 61, "hours": 42 }, + { "title": "02", "events": 72, "hours": 36 }, + { "title": "03", "events": 94, "hours": 49 }, + { "title": "04", "events": 67, "hours": 59 }, + { "title": "05", "events": 54, "hours": 20 }, + { "title": "06", "events": 77, "hours": 64 }, + { "title": "07", "events": 81, "hours": 70 }, + { "title": "08", "events": 53, "hours": 25 }, + { "title": "09", "events": 79, "hours": 42 }, + { "title": "10", "events": 84, "hours": 65 }, + { "title": "11", "events": 62, "hours": 54 }, + { "title": "12", "events": 45, "hours": 23 }, + { "title": "13", "events": 88, "hours": 71 }, + { "title": "14", "events": 74, "hours": 44 }, + { "title": "15", "events": 91, "hours": 59 }, + { "title": "16", "events": 46, "hours": 31 }, + { "title": "17", "events": 73, "hours": 40 }, + { "title": "18", "events": 85, "hours": 63 }, + { "title": "19", "events": 78, "hours": 66 }, + { "title": "20", "events": 66, "hours": 42 }, + { "title": "21", "events": 95, "hours": 78 }, + { "title": "22", "events": 57, "hours": 39 }, + { "title": "23", "events": 72, "hours": 48 }, + { "title": "24", "events": 48, "hours": 21 }, + { "title": "25", "events": 89, "hours": 61 }, + { "title": "26", "events": 77, "hours": 44 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "01", "events": 94, "hours": 59 }, + { "title": "02", "events": 62, "hours": 48 }, + { "title": "03", "events": 76, "hours": 38 }, + { "title": "04", "events": 81, "hours": 62 }, + { "title": "05", "events": 64, "hours": 27 }, + { "title": "06", "events": 53, "hours": 31 }, + { "title": "07", "events": 92, "hours": 65 }, + { "title": "08", "events": 85, "hours": 42 }, + { "title": "09", "events": 74, "hours": 35 }, + { "title": "10", "events": 67, "hours": 55 }, + { "title": "11", "events": 49, "hours": 23 }, + { "title": "12", "events": 88, "hours": 75 }, + { "title": "13", "events": 93, "hours": 66 }, + { "title": "14", "events": 76, "hours": 34 }, + { "title": "15", "events": 59, "hours": 39 }, + { "title": "16", "events": 72, "hours": 51 }, + { "title": "17", "events": 83, "hours": 44 }, + { "title": "18", "events": 74, "hours": 33 }, + { "title": "19", "events": 69, "hours": 28 }, + { "title": "20", "events": 85, "hours": 56 }, + { "title": "21", "events": 53, "hours": 22 }, + { "title": "22", "events": 92, "hours": 70 }, + { "title": "23", "events": 71, "hours": 41 }, + { "title": "24", "events": 67, "hours": 25 }, + { "title": "25", "events": 86, "hours": 74 }, + { "title": "26", "events": 94, "hours": 68 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "01", "events": 57, "hours": 27 }, + { "title": "02", "events": 74, "hours": 33 }, + { "title": "03", "events": 84, "hours": 53 }, + { "title": "04", "events": 95, "hours": 68 }, + { "title": "05", "events": 71, "hours": 48 }, + { "title": "06", "events": 92, "hours": 76 }, + { "title": "07", "events": 85, "hours": 62 }, + { "title": "08", "events": 49, "hours": 25 }, + { "title": "09", "events": 66, "hours": 38 }, + { "title": "10", "events": 63, "hours": 31 }, + { "title": "11", "events": 75, "hours": 47 }, + { "title": "12", "events": 94, "hours": 72 }, + { "title": "13", "events": 79, "hours": 49 }, + { "title": "14", "events": 72, "hours": 45 }, + { "title": "15", "events": 88, "hours": 61 }, + { "title": "16", "events": 83, "hours": 52 }, + { "title": "17", "events": 92, "hours": 76 }, + { "title": "18", "events": 73, "hours": 40 }, + { "title": "19", "events": 65, "hours": 28 }, + { "title": "20", "events": 76, "hours": 63 }, + { "title": "21", "events": 58, "hours": 30 }, + { "title": "22", "events": 84, "hours": 67 }, + { "title": "23", "events": 72, "hours": 41 }, + { "title": "24", "events": 79, "hours": 46 }, + { "title": "25", "events": 63, "hours": 29 }, + { "title": "26", "events": 68, "hours": 39 } + ] + } + ] + }, + { + "name": "6 Months", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "October", "events": 62, "hours": 23 }, + { "title": "November", "events": 76, "hours": 42 }, + { "title": "December", "events": 85, "hours": 54 }, + { "title": "January", "events": 94, "hours": 67 }, + { "title": "February", "events": 63, "hours": 35 }, + { "title": "March", "events": 81, "hours": 46 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "October", "events": 64, "hours": 35 }, + { "title": "November", "events": 88, "hours": 71 }, + { "title": "December", "events": 79, "hours": 54 }, + { "title": "January", "events": 72, "hours": 49 }, + { "title": "February", "events": 53, "hours": 32 }, + { "title": "March", "events": 93, "hours": 67 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "October", "events": 92, "hours": 65 }, + { "title": "November", "events": 85, "hours": 62 }, + { "title": "December", "events": 74, "hours": 49 }, + { "title": "January", "events": 63, "hours": 33 }, + { "title": "February", "events": 78, "hours": 56 }, + { "title": "March", "events": 69, "hours": 41 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "October", "events": 88, "hours": 54 }, + { "title": "November", "events": 72, "hours": 39 }, + { "title": "December", "events": 84, "hours": 63 }, + { "title": "January", "events": 76, "hours": 46 }, + { "title": "February", "events": 93, "hours": 72 }, + { "title": "March", "events": 68, "hours": 29 } + ] + } + ] + } + ] + } + + payload = result_dictionary #{'result_dictionary': result_dictionary} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_list": + # works in UTC only + caretaker = user_name + #date_s = form_data.get('date') + time_s = form_data.get('time') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + privileges = GetPriviledgesOnly(caretaker) + + deployments_list = GetUsersFromDeployments(privileges) + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + for deployment_id, first_name, last_name in deployments_list: + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + # convert dates back to UTC + #details['bathroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['kitchen_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['bedroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bedroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['last_detected_time'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['last_detected_time'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + location_list.append(location_name) + + details["deployment_id"] = deployment_id + details["location_list"] = location_list + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_single": + caretaker = user_name + #date_s = form_data.get('date') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + deployment_id = form_data.get('deployment_id') + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + location_list.append(location_name) + + details["deployment_id"] = deployment_id + details["location_list"] = location_list + settings = {"wellness_score": False, "last_seen": False, "sleep_report": False, "activity_report": False, "temperature": True, "humidity": True, "air_pressure": True, "light": True, "air_quality": True, "radar": True, "other_activities": False} + details["settings"] = settings + + + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + else: + AddToLog("Error: function not recognized!") + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + except Exception as e: + print(traceback.format_exc()) + resp.media = package_response(f"Error: {str(e)} {traceback.format_exc()}", HTTP_500) + + + def on_put(self, req, resp, path=""): + """Handle PUT requests""" + if path == "users": + logger.info("PUT request to users endpoint") + try: + # Parse the request body + request_data = json.loads(req.stream.read().decode('utf-8')) + + # TODO: Implement user update logic + + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"id": request_data.get("id"), "message": "User updated"}) + except json.JSONDecodeError: + resp.status = HTTP_400 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Invalid JSON"}) + else: + resp.media = package_response(f"PUT to /{path} not implemented", HTTP_400) + + def on_delete(self, req, resp, path=""): + """Handle DELETE requests""" + if path == "users": + logger.info("DELETE request to users endpoint") + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"message": "User deleted"}) + else: + resp.media = package_response(f"DELETE to /{path} not implemented", HTTP_400) + +# Initialize data files + + +logger.error(f"------------------------------- STARTED ------------------------------------------") +try: + searches_text = read_file("searches.json") + searches_dict = json.loads(searches_text) if searches_text else {} + + dialogs_data = read_file("dialog.json") + dialog_dict = json.loads(dialogs_data) if dialogs_data else {"utterances": {}, "intents": {}} + + intent_map = dialog_dict.get("utterances", {}) + utterances = {} + for key in intent_map: + logger.debug(key) + list_of_utterances = intent_map[key] + for utterance in list_of_utterances: + utterances[utterance] = key + + intents = dialog_dict.get("intents", {}) +except Exception as e: + logger.error(f"Error initializing data files: {str(e)}") + searches_dict = {} + utterances = {} + intents = {} + +# Create Falcon application with middleware +middlewares = [CORSMiddleware(), RequestParser(), StripPathMiddleware()] +try: + # For newer Falcon versions + app = falcon.App(middleware=middlewares) +except: + # For older Falcon versions + app = falcon.API(middleware=middlewares) + +# Add routes for well-api +well_api_instance = WellApi() + +# New routes for well_api with multiple access paths +app.add_route('/function/well-api', well_api_instance) +app.add_route('/function/well-api/{path}', well_api_instance) +app.add_route('/api/well_api', well_api_instance) +app.add_route('/api/well_api/{path}', well_api_instance) +app.add_route('/healthz', well_api_instance, suffix='healthz') + +# Add routes for the standard API paths +app.add_route('/health', well_api_instance) +app.add_route('/users', well_api_instance) +app.add_route('/items', well_api_instance) + +# Keep the original routes for backward compatibility +app.add_route('/', well_api_instance) +app.add_route('/{path}', well_api_instance) + +MQTTSERVERL = "eluxnetworks.net" +MQTT_PortL = 443 + +MyName = "well-api" + +clientL = mqtt.Client(client_id=MyName+str(time.time()), transport="websockets") +clientL.tls_set(cert_reqs=ssl.CERT_NONE) # For self-signed certs, use proper CA in production +clientL.ws_set_options(path="/mqtt") # Important! Same path as in your JS code +clientL.username_pw_set("well_user","We3l1_best!") + +clientL.on_connect = on_connectL +clientL.on_message = on_messageL + +#clientL.connect(MQTTSERVERL, MQTT_PortL, 60) +#lientL.loop_start() + + +# This code runs when executed directly (for development/debugging) +if __name__ == "__main__": + from wsgiref.simple_server import make_server + + # Use port 8000 for local debugging + port = int(os.environ.get('PORT', 8002)) + + # Create a WSGI server + with make_server('', port, app) as httpd: + print(f'Serving on port {port}...') + + # Serve until process is killed + httpd.serve_forever() diff --git a/well-api3.py b/well-api3.py new file mode 100644 index 0000000..2058c6d --- /dev/null +++ b/well-api3.py @@ -0,0 +1,13282 @@ +#!/usr/bin/env python3 +import os +import sys +import ast +from ast import literal_eval +import falcon +from falcon import HTTP_200, HTTP_400, HTTP_401, HTTP_500 +import json +import logging +from dotenv import load_dotenv +import calendar +import io +import datetime +from datetime import timedelta, timezone +import jwt +import psycopg2 +import html +import re +import fnmatch +import traceback +import time +import pytz +from PIL import Image, ImageDraw, ImageFont +import paho.mqtt.client as mqtt +import ssl +import hashlib +import itertools +from collections import defaultdict, deque +import warnings +from io import BytesIO +import zipfile +from minio import Minio +from minio.error import S3Error +import numpy as np +import cv2 +from sklearn.mixture import GaussianMixture +import openai +from openai import OpenAI +from typing import List, Tuple +import redis + +st = 0 +if True: + + #from scipy import interpolate + from scipy.optimize import curve_fit + from scipy import stats + import pandas as pd + #from scipy.signal import savgol_filter + +EnablePlot = False #True + +if EnablePlot: + import matplotlib + matplotlib.use('Agg') # Set the backend before importing pyplot + import matplotlib.pyplot as plt + from matplotlib.colors import LinearSegmentedColormap + import matplotlib.dates as mdates + +# Configure logging +logging.basicConfig( + level=logging.DEBUG,# .ERROR, + format='%(asctime)s [%(levelname)s] %(message)s' +) +logger = logging.getLogger(__name__) + +location_names = {-1:"All",0:"?",5:"Office",6:"Hallway",7:"Garage",8:"Outside",9:"Conference Room",10:"Room",34:"Kitchen", + 56:"Bedroom",78:"Living Room",102:"Bathroom",103:"Dining Room",104:"Bathroom Main",105:"Bathroom Guest", + 106:"Bedroom Master", 107:"Bedroom Guest", 108:"Conference Room", 109:"Basement", 110:"Attic", 200:"Other"} + +Loc2Color = {"?":(0,0,0),"Office":(255,255,0),"Hallway":(128,128,128),"Garage":(128,0,0),"Outside":(0,0,0),"Conference Room":(0,0,128), + "Room":(64,64,64),"Kitchen":(255,0,0),"Bedroom":(16,255,16),"Living Room":(160,32,240),"Bathroom":(0,0,255), + "Dining Room":(255,128,0),"Bathroom Main":(16,16,255), "Bedroom Master":(0,255,0),"Bathroom Guest":(32,32,255), + "Bedroom Guest":(32,255,32), "Basement":(64,64,64), "Attic":(255,165,0), "Other":(192,192,192)} + +Loc2Color = {"Bedroom":((16,255,16),0),"Bedroom Master":((0,255,0),0),"Bedroom Guest":((32,255,32),0),"Bathroom":((0,0,255),1), + "Bathroom Main":((16,16,255),1),"Bathroom Guest":((32,32,255),1),"Kitchen":((255,0,0),2),"Dining Room":((255,128,0),3), + "Office":((255,255,0),4),"Conference Room":((0,0,128),5),"Room":((64,64,64),6),"Living Room":((160,32,240),7),"Hallway":((128,128,128),8), + "Garage":((128,0,0),9),"Basement":((64,64,64), 10),"Attic":((255,165,0), 11),"Other":((192,192,192),12),"?":((0,0,0),13),"Outside":((0,0,0),14)} + + +s_table = ["temperature", "humidity", "pressure", "light", "radar", "voc0", "voc1", "voc2", "voc3", "voc4", "voc5", "voc6", "voc7", "voc8", "voc9"] # derived +smells_table = ["s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s9"] # derived + +Consolidataed_locations = {"?":"Room","Office":"Office","Hallway":"Hallway","Garage":"Garage","Outside":"Outside","Conference Room":"Office", + "Room":"Room","Kitchen":"Kitchen","Bedroom":"Bedroom","Living Room":"Living Room","Bathroom Guest":"Bathroom", + "Dining Room":"Dining Room","Bathroom":"Bathroom", "Bathroom Main":"Bathroom","Bedroom Master":"Bedroom", + "Bedroom Guest":"Bedroom", "Basement":"Basement", "Attic":"Attic", "Other":"Room"} + +AveragePercentPerLocation = {"Bedroom":[29, 37.5], "Bathroom":[2, 4], "Office":[10, 40],"Hallway":[0.1, 0.2],"Garage":[2, 3],"Outside":[5, 10], + "Room":[5, 10],"Kitchen":[5, 12.5], "Living Room":[5, 10], + "Dining Room":[5, 10], "Basement":[0, 0.2], "Attic":[0, 0.2]} + +location_indexes = {} + +for i in location_names: + location_indexes[location_names[i]] = i + + + +# HTTP Status codes +HTTP_200 = falcon.HTTP_200 +HTTP_201 = falcon.HTTP_201 +HTTP_400 = falcon.HTTP_400 +HTTP_401 = falcon.HTTP_401 +HTTP_404 = falcon.HTTP_404 +HTTP_500 = falcon.HTTP_500 + +load_dotenv() + +DB_NAME = os.getenv('DB_NAME') +DB_USER = os.getenv('DB_USER') +DB_PASSWORD = os.getenv('DB_PASSWORD') +DB_HOST = os.getenv('DB_HOST') +DB_PORT = os.getenv('DB_PORT') +MINIO_ACCESS_KEY = os.getenv('MINIO_ACCESS_KEY') +MINIO_SECRET_KEY = os.getenv('MINIO_SECRET_KEY') +MINIO_HOST = os.getenv('MINIO_HOST') +MINIO_PORT = os.getenv('MINIO_PORT') +DAILY_MAPS_BUCKET_NAME = os.getenv('DAILY_MAPS_BUCKET_NAME') +JWT_SECRET = os.getenv('JWT_SECRET') +MASTER_ADMIN = os.getenv('MASTER_ADMIN') +MASTER_PS = os.getenv('MASTER_PS') + +OPENAI_API_KEY = os.getenv('OPENAI_API_KEY') +model_engine = os.getenv('OPENAI_API_MODEL_ENGINE') + +# Redis Configuration +REDIS_HOST = os.getenv('REDIS_HOST', 'localhost') +REDIS_PORT = int(os.getenv('REDIS_PORT', 6379)) +REDIS_DB = int(os.getenv('REDIS_DB', 0)) +REDIS_PASSWORD = os.getenv('REDIS_PASSWORD', None) + +redis_host = os.getenv('REDIS_HOST', '192.168.68.70') +redis_host = '192.168.68.70' + +# SMS/Telnyx Configuration +OPT_IN_KEYWORD = os.environ.get("OPT_IN_KEYWORD", "WELLNUOJOIN") +TELNYX_PUBLIC_KEY = os.environ.get("TELNYX_PUBLIC_KEY") # Needed for signature validation + +use_pdb = True +debug = False +debug_string = "" +logger.debug(f"Environment variables: {os.environ}") +filesDir = "/home/app/well_web_storage" #os.path.dirname(os.path.realpath(__file__)) +min_io_address = MINIO_HOST + ":" + MINIO_PORT + +miniIO_blob_client = Minio(min_io_address, access_key=MINIO_ACCESS_KEY, secret_key=MINIO_SECRET_KEY, secure=False) + +user_id_2_user = {} +smell_min = 1 +no_smell = 102400000 +smell_max = no_smell - 1 +sensor_legal_values = {"radar": (0,1000, 1), "co2": (smell_min, smell_max, 31), "humidity": (1,99, 31), "light": (0, 4095, 1), + "pressure": (0, 10000, 5), "temperature": (1, 60, 31), "voc": (smell_min, smell_max, 31), "voc0": (smell_min, smell_max, 31), + "voc1": (smell_min, smell_max, 31), "voc2": (smell_min, smell_max, 31), "voc3": (smell_min, smell_max, 31), "voc4": (smell_min, smell_max, 31), + "voc5": (smell_min, smell_max, 31), "voc6": (smell_min, smell_max, 31), "voc7": (smell_min, smell_max, 31), "voc8": (smell_min, smell_max, 31), "voc9": (smell_min, smell_max, 31), + "s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + +smell_legal_values = {"s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + + +def GetRedisInt(key_name): + try: + result = int(redis_conn.get(key_name).decode('utf-8')) + except: + result = None + return result + +def GetRedisFloat(key_name): + try: + result = float(redis_conn.get(key_name).decode('utf-8')) + except: + result = None + + return result + +def GetRedisString(key_name): + try: + result = redis_conn.get(key_name).decode('utf-8') + except: + result = None + return result + +def GetRedisMap(key_name): + try: + result_bytes = redis_conn.hgetall(key_name) + result = {k.decode('utf-8'): v.decode('utf-8') for k, v in result_bytes.items()} + except: + result = {} + return result + + + +def read_file(file_name, source = "LOCAL", type_ = "TEXT", bucket_name="daily-maps"): + + blob_data = "" + if source == "MINIO": + blob_data = ReadObjectMinIO(bucket_name, file_name) + elif source == "LOCAL": + login_file = os.path.join(filesDir, file_name) + login_file = login_file.replace("\\","/") + logger.debug(f"Full file path: {login_file}") + logger.debug(f"File exists: {os.path.exists(login_file)}") + #print(login_file) + if type_ == "TEXT": + with open(login_file, encoding="utf8") as f: + blob_data = f.read() + else: + with open(login_file, 'rb') as f: + blob_data = f.read() + + elif source == "AZURE": + try: + blob_data = ""#container_client.download_blob(file_name).readall() + except Exception as err: + logger.error("Not reading Azure blob "+str(err)) + blob_data = "" + return blob_data + else: + pass + return blob_data + + +def match_with_wildcard(string, pattern): + return fnmatch.fnmatchcase(string, pattern) + +def extract_differing_part(string, pattern): + regex_pattern = re.escape(pattern).replace(r'\*', r'(.+)') + match = re.match(regex_pattern, string) + if match: + return match.group(1) + else: + return None + +def get_db_connection(): + return psycopg2.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASSWORD, host=DB_HOST, port=DB_PORT) + + +def generate_token(username): + expiration = datetime.datetime.now(timezone.utc) + timedelta(hours=24) + token = jwt.encode({"username": username, "exp": expiration}, JWT_SECRET, algorithm="HS256") + return token + + +def verify_token(token): + try: + payload = jwt.decode(token, JWT_SECRET, algorithms=["HS256"]) + return payload + except jwt.ExpiredSignatureError: + return None + except jwt.InvalidTokenError: + return None + +def SaveObjectInBlob(file_name, obj): + """ + Saves a Python object to MinIO blob storage using JSON serialization + + Args: + file_name (str): Name of the file to save in blob storage + obj: Python object to serialize and save + """ + try: + # Convert object to JSON string + json_str = json.dumps(obj) + # Convert string to bytes + json_bytes = json_str.encode('utf-8') + + # Save to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(json_bytes), + len(json_bytes) + ) + return True + except Exception as e: + logger.error(f"Error saving object to blob: {traceback.format_exc()}") + return False + +def ReadObjectMinIO(bucket_name, file_name): + try: + # Retrieve the object data + response = miniIO_blob_client.get_object(bucket_name, file_name) + + # Read the data from response + data_bytes = response.read() + + # Convert bytes to string and then load into a dictionary + data_string = data_bytes.decode('utf-8') + + # Don't forget to close the response + response.close() + response.release_conn() + + return data_string + + except S3Error as e: + logger.error(f"An error occurred while reading {file_name}: {e}") + return None + except: + logger.error(f"An error occurred while decoding {file_name}") + return None + +#def ReadObjectMinIO(bucket_name, file_name): + #try: + ## Retrieve the object data + #response = miniIO_blob_client.get_object(bucket_name, file_name) + + ## Read the data from response + #data_bytes = response.read() + + ## Convert bytes to string and then load into a dictionary + #data_string = data_bytes.decode('utf-8') + + ## Don't forget to close the response + #response.close() + #response.release_conn() + + #return data_string + + #except S3Error as e: + #logger.error(f"An error occurred: {e}") + #return None + + +def package_response_C(payload, status_code=HTTP_200): + """Package response in a standard format""" + if status_code == HTTP_200: + return {"status": "success", "data": payload} + else: + return {"status": "error", "message": payload, "code": status_code} + +def package_response(content, status=falcon.HTTP_200): + """ + Format the HTTP response. + + :param content: The content to be returned in the response. + :param status: HTTP status code (default is 200 OK). + :return: A dictionary containing the formatted response. + """ + if isinstance(content, str): + # If content is a string, try to parse it as JSON + try: + response = json.loads(content) + except json.JSONDecodeError: + # If it's not valid JSON, use it as message + response = {"message": content} + elif isinstance(content, dict): + # If content is a dictionary, serialize it with datetime handling + try: + # First serialize to JSON string with datetime handling + json_str = json.dumps(content, default=datetime_handler) + # Then parse back to dict + response = json.loads(json_str) + except TypeError as e: + response = {"message": f"Serialization error: {str(e)}"} + else: + # For any other type, convert to string and use as message + response = {"message": str(content)} + + # Add status code to the response + response["status"] = status + + # Handle specific status codes + if status == falcon.HTTP_400: + response["error"] = "Bad Request" + elif status == falcon.HTTP_401: + response["error"] = "Unauthorized" + elif status == falcon.HTTP_500: + response["error"] = "Internal Server Error" + + return response + +def GetPriviledges(conn, user_name, password): + sql = "SELECT key, access_to_deployments, user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + if result[0][0] == password: + return result[0][1], result[0][2] + else: + return "0", "0" + else: + return "0", "0" + +def GetPriviledgesOnly(user): + with get_db_connection() as conn: + if isinstance(user, (int)) or user.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def GetUserId(user_name): + with get_db_connection() as conn: + sql = "SELECT user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def GetNameFromUserId(user_id): + with get_db_connection() as conn: + sql = f"SELECT user_name, first_name, last_name FROM public.person_details WHERE user_id = {user_id}" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0] + else: + return None + + + +def ListDeployments(priviledges, user_id): + + global user_id_2_user + + conn = get_db_connection() + + if priviledges == "-1": + sql = "SELECT * FROM public.deployments ORDER BY deployment_id ASC;" + else: + sql = f"SELECT * FROM public.deployments WHERE deployment_id IN ({priviledges}) OR user_edit = {user_id} ORDER BY deployment_id ASC;" + + try: + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + complete_result = [] + else: + deployment_ids = [] + deployment_records_dict = {} + for record in result: + deployment_id = record[0] + deployment_ids.append(deployment_id) + deployment_records_dict[deployment_id] = record + + sql = f"SELECT * FROM public.deployment_details WHERE deployment_id IN ({','.join(map(str, deployment_ids))}) ORDER BY deployment_id ASC;" + cur.execute(sql) + details_result = cur.fetchall() + + beneficiary_ids = [] + + for record_details in details_result: + if record_details[1] != None and record_details[1] not in beneficiary_ids: + beneficiary_ids.append(record_details[1]) + + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({','.join(map(str, beneficiary_ids))});" + + + cur.execute(sql) + user_id_2_user = {} + users = cur.fetchall()#cur.fetchone() + for usr_record in users: + user_id_2_user[usr_record[0]] = usr_record + + complete_result = [] + if details_result != None: + for record_details in details_result: + deployment_record = deployment_records_dict[record_details[0]] + complete_record = {'deployment_id': record_details[0], 'beneficiary_id': record_details[1], 'caretaker_id': record_details[2], + 'owner_id': record_details[3], 'installer_id': record_details[4], + 'address_street': record_details[6], 'address_city': record_details[7], 'address_zip': record_details[8], + 'address_state': record_details[9], 'address_country': record_details[10], + 'devices': record_details[5], 'wifis': record_details[11], 'persons': deployment_record[4], 'gender': deployment_record[5], + 'race': deployment_record[6], 'born': deployment_record[7], 'pets': deployment_record[8], 'time_zone': deployment_record[3] + } + complete_result.append(complete_record) + except: + logger.debug(f"Error: {traceback.format_exc()}") + return complete_result + +def ListCaretakers(privileges, user_name): + + conn = get_db_connection() + if privileges == "-1": + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%2%' ORDER BY last_name;" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + else: + #we need to check if + sql = f"SELECT * FROM public.person_details WHERE user_name = '{user_name}';" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + pass + return result + +def ListBeneficiaries(privilidges, user_info): + + conn = get_db_connection() + with conn.cursor() as cur: + + if (privilidges == "-1"): + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + else: + #we need to find beneficiaries from list of deployments + sql = f"SELECT beneficiary_id FROM public.deployment_details WHERE deployment_id IN ({privilidges}) ORDER BY deployment_id ASC;" + cur.execute(sql) + result1 = cur.fetchall()#cur.fetchone() + if result1 == None: + result = [] + return result + beneficiaries = ",".join(str(x[0]) for x in result1) + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({beneficiaries}) OR user_edit = {user_info} AND role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + logger.debug(f"sql= {sql}") + + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def UserDetails(user_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'person_details';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.person_details WHERE user_id = "+user_id + + caretaker_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + caretaker_record[field[0]] = result[cnt] + cnt += 1 + + return caretaker_record + +def DeviceDetails(mac): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'devices';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.devices WHERE device_mac = '" + mac + "'" + + device_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + device_record[field[0]] = result[cnt] + cnt += 1 + + return device_record + +def GetDeviceDetailsSingle(device_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'devices';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.devices WHERE device_id = '" + device_id + "'" + + device_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + device_record[field[0]] = result[cnt] + cnt += 1 + + return device_record + + +def DeploymentDetails(deployment_id): + + deployment_record = {} + + conn = get_db_connection() + + with conn.cursor() as cur: + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployments';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployments WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + sql = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployment_details';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployment_details WHERE deployment_id = '" + deployment_id + "'" + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[3]] = result[cnt] + cnt += 1 + + + return deployment_record + +def ValidUser(user_name, password): + + + if use_pdb: + with get_db_connection() as db_conn: + priviledges, user_id= GetPriviledges(db_conn, user_name, password) + return priviledges, user_id + + else: + pass + #container = GetReference("/MAC") + #try: + ## We can do an efficient point read lookup on partition key and id + ##response = container.read_item(item="64B708896BD8_temperature_2024-01-01_00", partition_key="64B708896BD8") #OK + ##items = query_items(container, '64B708896BD8') #Too slow + ##AddToLog("1!") + #privileges = GetCaretakers(container, email, password) + #return privileges + + #except Exception as err: + #AddToLog("Error !1 "+str(err)) + + +def SelectOption(html_code, select_id, selected_item): + """ + Modifies HTML code to set the selected attribute for a specific option in a select element. + + Args: + html_code (str): Original HTML code + select_id (str): ID of the select element to modify + selected_item (str or int): Value of the option to be selected + + Returns: + str: Modified HTML code with the selected attribute added + """ + # Convert selected_item to string for comparison + selected_item = str(selected_item) + + # Find the select element with the given ID + select_pattern = rf']*id=[\'"]?{select_id}[\'"]?[^>]*>(.*?)' + select_match = re.search(select_pattern, html_code, re.IGNORECASE | re.DOTALL) + + if not select_match: + return html_code # Return unchanged if select element not found + + select_content = select_match.group(0) + select_content_orig = select_content + # Remove any existing selected attributes + select_content = re.sub(r'\s+selected(?=[>\s])', '', select_content, flags=re.IGNORECASE) + + # Add selected attribute to the matching option + def replace_option(match): + value = re.search(r'value=[\'"]?([^\'">\s]+)', match.group(0)) + if value and value.group(1) == selected_item: + # Add selected attribute before the closing > + return match.group(0).rstrip('>') + ' selected>' + return match.group(0) + + modified_select = re.sub( + r']*>', + replace_option, + select_content + ) + + # Replace the original select element with the modified one + return html_code.replace(select_content_orig, modified_select) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if device_id == None or device_id == 0: + return 1 + + try: + + + sql = f""" + UPDATE public.devices + SET + radar_threshold = '[{TR},{BR},{TLIFE},{BLIFE}]' + WHERE device_id = {device_id}; + """ + + logger.debug(f"sql= {sql}") + # Execute update query + print(sql) + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + logger.debug("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + + +def StoreBeneficiary2DB(parameters, editing_user_id, user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + error_string = "" + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + email = '{CleanObject(parameters.get('email'))}', + user_name = '{CleanObject(parameters.get('new_user_name'))}', + first_name = '{CleanObject(parameters.get('first_name'))}', + last_name = '{CleanObject(parameters.get('last_name'))}', + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + time_edit = {current_epoch_time}, + user_edit = {user_id}, + role_ids = '{CleanObject(parameters.get('role_ids'))}', + phone_number = '{CleanObject(parameters.get('phone_number'))}', + picture = '{CleanObject(parameters.get('picture'))}', + key = '{CleanObject(parameters.get('key'))}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{CleanObject(parameters.get('role_ids'))}', '{CleanObject(parameters.get('email'))}', '{CleanObject(parameters.get('new_user_name'))}', + '{CleanObject(parameters.get('first_name'))}', '{CleanObject(parameters.get('last_name'))}', '{CleanObject(parameters.get('address_street'))}', + '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}', {current_epoch_time}, {user_id}, '{CleanObject(parameters.get('phone_number'))}', + '{CleanObject(parameters.get('picture'))}', '{CleanObject(parameters.get('key'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1, error_string + except Exception as err: + error_string = traceback.format_exc() + AddToLog(error_string) + return 0, error_string + + +def DeleteRecordFromDB(form_data): + + caretaker = form_data['user_name'] + privileges = GetPriviledgesOnly(caretaker) + + if privileges != "-1": + AddToLog("Forbidden!") + return 0 + + conn = get_db_connection() + cur = conn.cursor() + function = form_data.get('function') + if function == "deployment_delete": + user_id = form_data['user_id'] + editing_deployment_id = form_data['editing_deployment_id'] + priviledges = form_data['priviledges'] + if editing_deployment_id == None or editing_deployment_id == "" or editing_deployment_id == "0": + AddToLog("deployment_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + cur.execute(sql) + result = cur.fetchone() + if priviledges != "-1": + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + + elif function == "device_delete": + user_id = form_data['user_id'] + editing_device_id = form_data['editing_device_id'] + priviledges = form_data['priviledges'] + if editing_device_id == None or editing_device_id == "" or editing_device_id == "0": + AddToLog("editing_device_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE device_id = {editing_device_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + #else: + ##lets check if user_edit = user_id + #sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + #cur.execute(sql) + #result = cur.fetchone() + #if priviledges != "-1": + #if result[0] != int(user_id): + #cur.close() + #conn.close() + #return 0 + + #sql = f""" + #DELETE FROM public.deployments WHERE device_id = {editing_device_id} + #""" + #logger.debug(f"sql= {sql}") + ## Execute update query + #cur.execute(sql) + + #conn.commit() + + ## Close the cursor and connection + #cur.close() + #conn.close() + + #AddToLog("Deleted!") + #return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + else: + + #user_id = form_data['user_id'] + editing_user_id = form_data['delete_user_id'] + if editing_user_id == None or editing_user_id == "" or editing_user_id == "0": + AddToLog("user_id is not defined") + cur.close() + conn.close() + return 0 + try: + if privileges == "-1": #user_id == "-1": + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.person_details WHERE user_id = '{editing_user_id}'" + cur.execute(sql) + result = cur.fetchone() + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + +def StoreCaretaker2DB(parameters, editing_user_id, user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + role_ids = '{parameters.get('role_ids')}', + access_to_deployments = '{parameters.get('access_to_deployments')}', + email = '{parameters.get('email')}', + user_name = '{parameters.get('new_user_name')}', + first_name = '{parameters.get('first_name')}', + last_name = '{parameters.get('last_name')}', + address_street = '{parameters.get('address_street')}', + address_city = '{parameters.get('address_city')}', + address_zip = '{parameters.get('address_zip')}', + address_state = '{parameters.get('address_state')}', + address_country = '{parameters.get('address_country')}', + time_edit = {current_epoch_time}, + user_edit = {user_id}, + phone_number = '{parameters.get('phone_number')}', + picture = '{parameters.get('picture')}', + key = '{parameters.get('key')}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{parameters.get('role_ids')}', '{parameters.get('access_to_deployments')}', '{parameters.get('email')}', '{parameters.get('new_user_name')}', '{parameters.get('first_name')}', + '{parameters.get('last_name')}', '{parameters.get('address_street')}', '{parameters.get('address_city')}', '{parameters.get('address_zip')}', '{parameters.get('address_state')}', + '{parameters.get('address_country')}', {current_epoch_time}, {user_id}, '{parameters.get('phone_number')}', '{parameters.get('picture')}', '{parameters.get('key')}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def StoreFlow2DB(user_name, time_s, flow_json): + + conn = get_db_connection() + cur = conn.cursor() + + #query = """ + #INSERT INTO public.node_reds (user_name, last_activity, flow) + #VALUES (%s, %s, %s) + #ON CONFLICT (user_name) + #DO UPDATE SET + #last_activity = EXCLUDED.last_activity, + #flow = EXCLUDED.flow + #""" + + query = f""" + INSERT INTO public.node_reds (user_name, last_activity, flow) + VALUES ('{user_name}', {time_s}, '{flow_json}') + ON CONFLICT (user_name) + DO UPDATE SET + last_activity = EXCLUDED.last_activity, + flow = EXCLUDED.flow + """ + logger.debug(f"sql= {query}") + + try: + #cur.execute(query, (user_name, time_s, flow_json)) + cur.execute(query) + conn.commit() + logger.debug(f"OK!") + return True + except Exception as e: + conn.rollback() + print(f"Error storing flow: {e}") + logger.debug(f"Error storing flow: {e}") + return False + finally: + cur.close() + conn.close() + logger.debug(f"Closing!") + +def CleanObject(object_in, typee = "s"): + + if typee == "n": + res = 0 + if object_in == None or object_in == "": + return 0 + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + else: + res = "" + if object_in == None: + return "" + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + return object_in + +def StoreDeployment2DB(parameters, editing_deployment_id): + conn = get_db_connection() + cur = conn.cursor() + + if editing_deployment_id == None or editing_deployment_id == "": + editing_deployment_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployments + SET + persons = {CleanObject(parameters.get('persons'), "n")}, + gender = {CleanObject(parameters.get('gender'), "n")}, + race = {CleanObject(parameters.get('race'), "n")}, + born = {CleanObject(parameters.get('born'), "n")}, + pets = {CleanObject(parameters.get('pets'), "n")}, + time_zone_s = '{CleanObject(parameters.get('time_zone_s'))}', + user_edit = {CleanObject(parameters.get('user_id'), "n")}, + time_edit = {current_epoch_time} + WHERE deployment_id = {CleanObject(editing_deployment_id, "n")}; + """ + + else: + sql = f""" + INSERT INTO public.deployments + (persons, gender, race, born, pets, time_zone_s, user_edit, time_edit) + VALUES + ({CleanObject(parameters.get('persons'), "n")}, {CleanObject(parameters.get('gender'), "n")}, {CleanObject(parameters.get('race'), "n")}, + {CleanObject(parameters.get('born'), "n")}, {CleanObject(parameters.get('pets'), "n")}, '{CleanObject(parameters.get('time_zone_s'))}', + {CleanObject(parameters.get('user_id'), "n")}, {current_epoch_time}) + RETURNING deployment_id; + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + if editing_deployment_id == "0": + new_deployment_id = cur.fetchone()[0] + # Commit the changes to the database + conn.commit() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployment_details + SET + beneficiary_id = {CleanObject(parameters.get('beneficiary_id'), "n")}, + caretaker_id = {CleanObject(parameters.get('caretaker_id'), "n")}, + owner_id = {CleanObject(parameters.get('owner_id'), "n")}, + installer_id = {CleanObject(parameters.get('installer_id'), "n")}, + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + + wifis = '{CleanObject(parameters.get('wifis'))}', + devices = '{CleanObject(parameters.get('devices'))}', + lat = {CleanObject(parameters.get('lat'), "n")}, + lng = {CleanObject(parameters.get('lng'), "n")}, + gps_age = {CleanObject(parameters.get('gps_age'), "n")} + + WHERE deployment_id = {editing_deployment_id}; + """ + + else: + sql = f""" + INSERT INTO public.deployment_details + (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, address_street, address_city, address_zip, address_state, address_country) + VALUES + ({new_deployment_id}, {CleanObject(parameters.get('beneficiary_id'), "n")}, {CleanObject(parameters.get('caretaker_id'), "n")}, {CleanObject(parameters.get('owner_id'), "n")}, {CleanObject(parameters.get('installer_id'), "n")}, + '{CleanObject(parameters.get('address_street'))}', '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + + + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def StoreDevice2DB(parameters, editing_device_id): + + # Create a device object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_device_id == None or editing_device_id == "": + editing_device_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_device_id != "0": + sql = f""" + UPDATE public.devices + SET + device_mac = '{CleanObject(parameters.get('device_mac'))}', + well_id = '{CleanObject(parameters.get('well_id'))}', + description = '{CleanObject(parameters.get('description'))}', + location = '{CleanObject(parameters.get('location'))}', + close_to = '{CleanObject(parameters.get('close_to'))}', + radar_threshold = '{CleanObject(parameters.get('radar_threshold'))}', + temperature_calib = '{CleanObject(parameters.get('temperature_calib'))}', + humidity_calib = '{CleanObject(parameters.get('humidity_calib'))}' + WHERE device_id = {editing_device_id}; + """ + + else: + sql = f""" + INSERT INTO public.devices + (device_mac, well_id, description, location, close_to, radar_threshold, temperature_calib, humidity_calib) + VALUES + ('{CleanObject(parameters.get('device_mac'))}', '{CleanObject(parameters.get('well_id'))}', '{CleanObject(parameters.get('description'))}', + '{CleanObject(parameters.get('location'))}', '{CleanObject(parameters.get('close_to'))}', '{CleanObject(parameters.get('radar_threshold'))}', + '{CleanObject(parameters.get('temperature_calib'))}', '{CleanObject(parameters.get('humidity_calib'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + + +def ShowAge(seconds): + minutes = int(seconds // 60) + hours = int(minutes // 60) + days = int(hours // 24) + + if seconds >= 0: + hours = int(hours - (days * 24)) + minutes = int(minutes - (days * 24 * 60) - (hours * 60)) + seconds = int(seconds - (days * 24 * 60 * 60) - (hours * 60 * 60) - (minutes * 60)) + + if days > 0: + report = f"{int(days)} d {int(hours)} h {int(minutes)} m {int(seconds)} s" + elif hours > 0: + report = f"{int(hours)} h {int(minutes)} m {int(seconds)} s" + elif minutes > 0: + report = f"{int(minutes)} m {int(seconds)} s" + else: + report = f"{int(seconds)} s" + + return report + else: + return "0 s" + +def UpdateDevicesTable(html_string, devices, users): + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + table_rows_string = "" + for device in devices: + #result = next(item for item in users if item[0] == device[6]) + + deployment_name = "?" + for item in users: + if item[0] == device[6]: + result = item + deployment_name = result[1] + if result[2] != None: + deployment_name = deployment_name + " " + result[2] + break + + + + + mac = device[2] + if mac == "64B7088903B4": + print("stop") + mac_row_string = f' {mac}\n' + age = time.time() - device[3] + + if (age < 300): + row_sting = f' \n {device[0]}\n' + else: + row_sting = f' \n {device[0]}\n' + + row_ending = f' \n \n' + for col_cnt in range(1, len(device)): + column_value = device[col_cnt] + #print(column_value) + if col_cnt == 2: + col_string_template = mac_row_string + elif col_cnt == 3: + if column_value > 0: + col_string_template = f' {ShowAge(age)}\n' + else: + col_string_template = f' No data\n' + elif col_cnt == 4: + col_string_template = f' {column_value}\n' + elif col_cnt == 5: + if column_value == None: + col_string_template = f' \n' + else: + col_string_template = f' {column_value}\n' + elif col_cnt == 6: + col_string_template = f' {column_value}\n'; + else: + if column_value == None: + column_value = "" + col_string_template = f' {column_value}\n' + row_sting = row_sting + col_string_template + row_sting = row_sting + row_ending + table_rows_string = table_rows_string + row_sting + #print(table_rows_string) + + html_string = html_string.replace("###ROWS###",table_rows_string) + return html_string + +def UpdateDeploymentsSelector(html_string, deployments, include_all=True, selected="1"): + # + if include_all: + selector_string = f' \n' + else: + selector_string = '' + + for deployment in deployments: + first_name = "" + last_name = "" + if deployment[1] != None: + first_name = deployment[1] + if deployment[2] != None: + last_name = deployment[2] + if deployment[0] == int(selected): + choice_string = f' \n' + else: + choice_string = f' \n' + selector_string = selector_string + choice_string + #print(selector_string) + + html_string = html_string.replace("###INSTALLS###",selector_string) + return html_string + +def GetDeviceDetails(cur, deployment_ids, location_id): + + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + macs = [mac for _, mac in deployment_ids] + #macs = list(deployment_ids.keys()) + macs_string_nq = ",".join(macs) + macs_string = "'" + "','".join(macs) + "'" + + if location_id == -1: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) + ORDER BY om.position; + """ + else: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) AND location = {location_id} + ORDER BY om.position; + """ + + cur.execute(sql) + print(sql) + devices_ids_records = cur.fetchall() + all_details = [] + + + devices_ids_list = [x[0] for x in devices_ids_records] + device_ids_string = ",".join(map(str, devices_ids_list)) + #sql = f"SELECT device_id, MAX(time) as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) GROUP BY device_id" #to slow + sql = f"SELECT DISTINCT ON (device_id) device_id, time as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) AND time > now() - INTERVAL '1 day' ORDER BY device_id, time DESC" + cur.execute(sql) + print(sql) + devices_times = cur.fetchall()#cur.fetchone() + found_device_details = {} + for device_record in devices_times: + device_id, last_message_time = device_record + found_device_details[device_id] = last_message_time + cnt = 0 + for device_table_record in devices_ids_records: + if len(devices_times) > 0: + + if device_id in found_device_details: + last_message_time = found_device_details[device_id] + last_message_epoch = int(last_message_time.timestamp()) + else: + try: + last_message_time = int(device_table_record[14]) + except: + last_message_time = 0 + last_message_epoch = last_message_time + else: + last_message_time = 0 + last_message_epoch = 0 + + #print(last_message_epoch) + #print(type(last_message_epoch)) + device_id = device_table_record[0] + mac = device_table_record[1] + well_id = device_table_record[2] + description = device_table_record[3] + if description == None: + description = "" + if device_table_record[5] != None: + if device_table_record[5] != "": + description = description + " Close to " + device_table_record[5] + location_id = device_table_record[4] + if location_id == None: + location_id = 0 + try: + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + except: + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + cnt += 1 + all_details.append(row_data) + + return all_details + +def GetVisibleDevices(deployments): + + devices_details = [] + stt = time.time() + with get_db_connection() as conn: + with conn.cursor() as cur: + #list all devices that user has access to + if deployments == "-1": + sql = "SELECT device_mac FROM public.devices ORDER BY device_id ASC"# SELECT deployment_id, devices FROM public.deployment_details" + macs_group = [] + deployment_ids = [] + print(sql) + cur.execute(sql) + macs_records = cur.fetchall()#cur.fetchone() + for record in macs_records: + deployment_ids.append((0, record[0])) + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + print(sql) + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if "[" not in dev_group: + if "," not in dev_group: + dev_group = '["' + dev_group + '"]' + else: + dev_group = dev_group.replace(" ", "") + dev_group = dev_group.replace(",", '","') + dev_group = '["' + dev_group + '"]' + + macs_group = literal_eval(dev_group) + + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + else: + print(f"Deployment {deployment_id} has dev_group empty") + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + #devices_details.append(devices_detail) + + return devices_details + +def GetVisibleDevicesPerLocation(deployments, location): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1" or deployments == "0": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if dev_group != None: + if len(dev_group) > 10: + if dev_group[0] == "[": + macs_group = literal_eval(dev_group) + else: + macs_group = dev_group.split(',') + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetails(cur, deployment_ids, location_indexes[location]) + #devices_details.append(devices_detail) + + return devices_details + +def GetUsersFromDeployments(deployments): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + if deployments == "-1": + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + ORDER BY dd.deployment_id; + """ + else: + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id IN ({deployments}) + ORDER BY dd.deployment_id; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchall()#cur.fetchone() + except Exception as err: + logger.error("GetUsersFromDeployments "+str(err) +" "+sql) + + return deployments_dets + +def GetPreviousDate(current_date): + date_obj = datetime.datetime.strptime(current_date, "%Y-%m-%d") + # Subtract one day + previous_date = date_obj - timedelta(days=1) + # Convert back to string format + previous_date_str = previous_date.strftime("%Y-%m-%d") + return(previous_date_str) + +def CovertToIsoTime(date_s, n_minute): + + hours = n_minute // 60 # Integer division + minutes = n_minute % 60 + + base_date = datetime.datetime.strptime(date_s, "%Y-%m-%d") + final_datetime = base_date + timedelta(hours=hours, minutes=minutes) + iso_timestamp = final_datetime.isoformat() + return iso_timestamp + +def GetSensorsDetailsFromDeployment(deployment_id, ddate, filter_minutes): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + sql = f""" + SELECT pd.user_id, pd.first_name, pd.last_name, pd.address_street, pd.picture + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id ={deployment_id}; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment "+str(err) +" "+sql) + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + #Which sensor is in: Bathroom, Kitchen, Bedroom ? + bathrooms = [] + kitchens = [] + bedrooms = [] + dev_id_to_location = {0: "Outside/?"} + for device in devices_list: + dev_id_to_location[device[1]] = device[2] + if Consolidataed_locations[device[2]] == "Bathroom": + bathrooms.append(device[1]) + elif Consolidataed_locations[device[2]] == "Kitchen": + kitchens.append(device[1]) + elif Consolidataed_locations[device[2]] == "Bedroom": + bedrooms.append(device[1]) + + #we need to determine where user is seen last, and user sensor data from there... + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file1 ={locations_file}") + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() #local date + file_modified_date_utc = file_modified_utc1.date() + file_date_utc = MapFileToDate(locations_file) #locations_file is UTC + #if file_modified_date_local < file_date_utc: + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + logger.debug(f"force_recreate={str(force_recreate)}") + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + last_present_device = 0 + last_present = 0 + last_bathroom = 0 + last_kitchen = 0 + last_bedroom = 0 + last_bathroom_date = ddate + last_kitchen_date = ddate + last_bedroom_date = ddate + + if locations_list_s is not None: + locations_list = json.loads(locations_list_s) + + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + last_present = locations_list[-1][1] + locations_list[-1][2] + else: + last_present_device = locations_list[-2][0] + last_present = locations_list[-2][1] + locations_list[-2][2] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + + #Lets find last bathroom presence time + + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + + #Lets find last kitchen presence time + + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + + #Lets find last bedroom presence time + + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + if last_bathroom == 0 or last_kitchen == 0 or last_bedroom == 0: + ddate = GetPreviousDate(ddate) + + locations_file = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + logger.debug(f"locations_file2 ={locations_file}") + + force_recreate = False + file_exists1, file_modified_utc1 = check_file_exists(locations_file+".bin") + logger.debug(f"file_exists1={str(file_exists1)}") + logger.debug(f"file_modified_utc1={str(file_modified_utc1)}") + #file_exists1, file_modified_utc1 + if file_exists1: + file_modified_local = file_modified_utc1.astimezone(pytz.timezone(time_zone_s)) + file_modified_date_local = file_modified_local.date() + file_date_utc = MapFileToDate(locations_file) + logger.debug(f"file_modified_utc1={str(file_modified_utc1.date())} file_date_utc={str(file_date_utc)}") + if file_modified_utc1.date() < file_date_utc: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - file_modified_local + logger.debug(f"current_time={current_time} file_modified_local={file_modified_local} time_passed={time_passed}") + if time_passed.seconds > 30: #recreate if older than 5 minutes + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + CreateLocationsStripe(locations_file, time_zone_s) + locations_list_s = ReadObjectMinIO("daily-maps", locations_file+".bin") + + + + logger.debug(f"locations_list_s={locations_list_s}") + + if (locations_list_s is not None): + + locations_list = json.loads(locations_list_s) + + if last_present_device == 0: + if len(locations_list) > 1: + if locations_list[-1][0] > 0: + last_present_device = locations_list[-1][0] + else: + last_present_device = locations_list[-2][0] + elif len(locations_list) == 1: + last_present_device = locations_list[0][0] + + if last_bathroom == 0: + if len(locations_list) > 0 and len(bathrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bathrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bathroom: + last_bathroom = loc_time[1] + loc_time[2] + last_bathroom_date = ddate + + if last_kitchen == 0: + if len(locations_list) > 0 and len(kitchens) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in kitchens: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_kitchen: + last_kitchen = loc_time[1] + loc_time[2] + last_kitchen_date = ddate + + if last_bedroom == 0: + if len(locations_list) > 0 and len(bedrooms) > 0: + for loc_time in reversed(locations_list): + for device_id_temp in bedrooms: + if device_id_temp == loc_time[0]: + if (loc_time[1] + loc_time[2]) > last_bedroom: + last_bedroom = loc_time[1] + loc_time[2] + last_bedroom_date = ddate + + + + last_bathroom_time = "2023-01-01T00:00:00" + if last_bathroom > 0: + last_bathroom_time = CovertToIsoTime(last_bathroom_date, last_bathroom) + + last_kitchen_time = "2023-01-01T00:00:00" + if last_kitchen > 0: + last_kitchen_time = CovertToIsoTime(last_kitchen_date, last_kitchen) + + last_bedroom_time = "2023-01-01T00:00:00" + if last_bedroom > 0: + last_bedroom_time = CovertToIsoTime(last_bedroom_date, last_bedroom) + + last_present_time = "2023-01-01T00:00:00" + if last_present > 0: + last_present_time = CovertToIsoTime(ddate, last_present) + + # debug for 48h bug + if last_bathroom_time == "2023-01-01T00:00:00" or last_kitchen_time == "2023-01-01T00:00:00" or last_bedroom_time == "2023-01-01T00:00:00": + #last_bathroom_time = "48h" if last_bathroom_time == "2023-01-01T00:00:00" else f"{last_bathroom-last_bathroom_time}" + #last_kitchen_time = "48h" if last_kitchen_time == "2023-01-01T00:00:00" else f"{last_kitchen-last_kitchen_time}" + #last_bedroom_time = "48h" if last_bedroom_time == "2023-01-01T00:00:00" else f"{last_bedroom-last_bedroom_time}" + + logger.debug(f"48h-> deployment_id={str(deployment_id)}, ddate={str(ddate)}") + logger.debug(f"48h-> force_recreate={force_recreate}") + logger.debug(f"48h-> last_bathroom_time={last_bathroom_time}|last_kitchen_time={last_kitchen_time}|last_bedroom_time={last_bedroom_time}") + logger.debug(f"48h-> devices_list={str(devices_list)}") + logger.debug(f"48h-> bathrooms={str(bathrooms)}") + logger.debug(f"48h-> kitchens={str(kitchens)}") + logger.debug(f"48h-> bedrooms={str(bedrooms)}") + logger.debug(f"48h-> locations_list_s={str(locations_list_s)}") + + try: + sql = f""" + SELECT * FROM sensor_readings + WHERE device_id = {last_present_device} + ORDER BY time DESC + LIMIT 1; + """ + with conn.cursor() as cur: + cur.execute(sql) + sensor_dets = cur.fetchone() + except Exception as err: + logger.error("GetSensorsDetailsFromDeployment1 "+str(err) +" "+sql) + + # wellness_score_percent + wellness_score_percent = 90 + + # bedroom_temperature + bedroom_temperature = 0 + + # sleep_bathroom_visit_count + sleep_bathroom_visit_count = 0 + + # bedroom_co2 + bedroom_co2 = 400 + + # shower_detected_time + shower_detected_time = last_bathroom_time + + # breakfast_detected_time + breakfast_detected_time = 0 + + # living_room_detected_time + living_room_time_spent = 0 + + # outside_hours + outside_hours = 0 + + #lets find last time seen at Bathroom, Kitchen, Bedroom pd.first_name, pd.last_name, pd.address_street, pd.picture + + picture_url = deployments_dets[4] + report = {} + try: + + report = {"user_id":deployments_dets[0], + "name":deployments_dets[1] + " " + deployments_dets[2], + "address":deployments_dets[3], + "time_zone":time_zone_s, + "picture":picture_url, + "bathroom_at": last_bathroom_time, + "kitchen_at": last_kitchen_time, + "bedroom_at": last_bedroom_time, + "temperature": (sensor_dets[2] - 16) if sensor_dets != None else 0, + "smell": "clean", + "bathroom_delayed": [6, 12], + "kitchen_delayed": [6, 12], + "bedroom_delayed": [13, 16], + "last_location": dev_id_to_location[last_present_device], + "last_detected_time": last_present_time, + "wellness_score_percent": wellness_score_percent, + "wellness_descriptor_color": "bg-green-100 text-green-700", + "bedroom_temperature": bedroom_temperature, + "sleep_bathroom_visit_count": sleep_bathroom_visit_count, + "bedroom_co2": bedroom_co2, + "shower_detected_time": shower_detected_time, + "breakfast_detected_time": breakfast_detected_time, + "living_room_time_spent": living_room_time_spent, + "outside_hours": outside_hours, + "wellness_descriptor": "Great!", + "last_seen_alert": "Alert = None", + "last_seen_alert_colors": "bg-green-100 text-green-700", #https://tailwindcss.com/docs/colors + "most_time_spent_in": "Bedroom", + "sleep_hours": "7.9" + } + except: + pass + return report + +def ToList(input_data): + # If input is already a list + if isinstance(input_data, list): + return [str(x).strip() for x in input_data] + + # If input is string + if isinstance(input_data, str): + # Remove outer brackets if present + cleaned = input_data.strip('()') + cleaned = cleaned.strip('[]') + # Remove extra quotes + cleaned = cleaned.replace('"', '').replace("'", '') + # Split by comma and clean each element + return [x.strip() for x in cleaned.split(',')] + + raise ValueError(f"Unsupported input type: {type(input_data)}") + +def MACsToWellIds(cur, macs_list): + + device_ids = [] + device_list = [] + + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + sqlr = f"SELECT well_id, device_mac, device_id, location, description, radar_threshold, close_to FROM public.devices WHERE device_mac IN ({macs_string})" + + #print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for well_id, mac, device_id, location, description, radar_threshold, close_to in proximitys_list: + macs_map[mac] = (well_id, device_id, location_names[location], description, mac, radar_threshold, close_to) + + + for mac in macs_list: + device_ids.append(macs_map[mac][1]) + device_list.append(macs_map[mac]) + + return device_ids, device_list + +def MACsStrToDevIds(cur, macs): + + device_ids = [] + #we need to repcakage string to contain ' + macs_list = ToList(macs) + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + if macs_string != "'None'": + + sqlr = f"SELECT device_mac, device_id FROM public.devices WHERE device_mac IN ({macs_string})" + print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for mac, device_id in proximitys_list: + device_ids.append((mac, device_id)) + + return device_ids + + + +def ReadCleanStringDB(cur, sql): + cur.execute(sql) + temp_string = cur.fetchone() + if temp_string == None: + return "" + else: + return str(temp_string[0]).strip() + +# obtain device_list, device_ids for deployment_id on time as epoch_from_file_s (usually today) +# it tries first overridden/newly-installed (FROM public.deployment_history) +# then if none found there searches FROM public.deployment_details +def GetProximityList(deployment_id, epoch_from_file_s): + + #both are valid: + #64B70888FA84,64B70888F6F0,64B70888F860,64B70889062C,64B70888FAB0,64B708896BDC,64B708897428 + #['64B70888FA84', '64B70888F6F0', '64B70888F860', '64B70889062C', '64B70888FAB0', '64B708896BDC', '64B708897428'] + + #result_list = [] + #well_ids = [] + with get_db_connection() as conn: + + sqlr = f""" + SELECT * FROM ( + SELECT proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + AND time <= {epoch_from_file_s} + ORDER BY time DESC + LIMIT 1 + ) AS latest_deployment + """ + #print (sqlr) + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + + if devices_string == "": + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + devices_string = ReadCleanStringDB(cur, sqlr) + + + if devices_string == "": + return [] + + macs_list = ToList(devices_string) + device_ids, device_list = MACsToWellIds(cur, macs_list) + return device_list, device_ids + +def FilterList(to_filter: str, allowed: str) -> str: + # Convert comma-separated strings to sets + filter_set = set(to_filter.split(',')) + allowed_set = set(allowed.split(',')) + + # Find intersection and sort the result + filtered = sorted(filter_set.intersection(allowed_set), key=int) + + # Join back to comma-separated string + return ','.join(filtered) + + +def GetMatchingDevices(privileges, group, deployment, location): + + global LocationsMap + + results=[] + if privileges != "-1": + if deployment == "" or deployment == "0": + deployment = privileges + + privileges_list = privileges.split(',') + if deployment != "0": + if "," in deployment: + deployment = FilterList(deployment, privileges) + else: + if deployment not in privileges_list: + return results + else: + if deployment == "0": + deployment = "-1" + + devices = GetVisibleDevicesPerLocation(deployment, location) + return devices + +def getOldestDeploymentHistoryFromBeneficiary(deployment_id): + #this will return oldest entry as well as last proximity (devices) + st = time.time() + print(f"*0 ----{time.time() - st}") + results=[] + well_ids_last = [] #this needs to be list of tuples (well_id, Location_st, Description) + oldest_time = None + try: + print(f"*0a ----{time.time() - st}") + with get_db_connection() as conn: + sqlr = f""" + SELECT * FROM ( + SELECT time, proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + ORDER BY time ASC + ) AS latest_deployment + """ + print (sqlr) + print(f"*1 ----{time.time() - st}") + with conn.cursor() as cur: + cur.execute(sqlr) + print(f"*2 ----{time.time() - st}") + results = cur.fetchall() + print(f"*3 ----{time.time() - st}") + #lets find which of historical sets has data in DB + if results == None or results == []: #look in deployment_details + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + print(f"*4 ----{time.time() - st}") + devices_string = ReadCleanStringDB(cur, sqlr) + print(f"*5 ----{time.time() - st}") + macs_list = ToList(devices_string) + print(f"*6 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + sql_query = """ + SELECT device_id, first_seen_at + FROM device_first_seen + WHERE device_id = ANY(%s) + GROUP BY device_id; + """ + print(f"*7 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + if results1 == []: + pass + else: + oldest_time = results1[0][1] + except Exception as e: + AddToLog(traceback.format_exc()) + AddToLog(str(e)) + print(f"*8 ----{time.time() - st}") + else: + history_entry = results[-1] + macs_list = ToList(history_entry[1]) + print(f"*9 ----{time.time() - st}") + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + + + for history_entry in results: + macs_list = ToList(history_entry[1]) + print(f"*10 ----{time.time() - st}") + device_ids, device_alls = MACsToWellIds(cur, macs_list) + print(f"*11 ----{time.time() - st}") + sql_query = """ + SELECT time as oldest_record_time + FROM sensor_readings + WHERE device_id = ANY(%s) + ORDER BY time ASC + LIMIT 1; + """ + print(f"*12 ----{time.time() - st}") + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + oldest_time = results1[0][0] + if oldest_time != None: + break + + + except Exception as e: + print(str(e)) + print(f"*13 ----{time.time() - st}") + + except Exception as e: + print(f"*0b ----{time.time() - st}") + AddToLog(traceback.format_exc()) + + print(f"*14 ----{time.time() - st}") + return oldest_time, device_alls_last + + +def getLastEditedBeneficiary(beneficiary): + + #lets generate token here to elliminate issues with outdated token... + token = generate_token(beneficiary) + url = 'https://well-api.azurewebsites.net/api/well_api' + params = { + "name": "beneficiary_detail", + "beneficiary": beneficiary, + "token": token + } + #{"id": "user_beneficiary_bernhard@wellnuo.com", "MAC": "BENEFICIARY", "email": "bernhard@wellnuo.com", "edit_date": "Fri Aug 16 06:45:01 2024", "c_password": "bern1", "first_name": "Bernhard", "last_name": "Knigge", "address": "776 Dubanski Dr.", "address_city": "San Jose", "address_state": "CA", "address_zip": "95123", "address_country": "United States", "phone_number": "4087055709", "persons": "2", "gender": "M", "race": "W", "born": "1972", "pets": "1", "creds": "", "devs": "[[203, 'Living Room', '', '64B708890B14'], [251, 'Bathroom', '', '64B7088909E8'], [252, 'Bedroom', '', '64B708890734'], [204, 'Bathroom', 'Guest', '64B708890288'], [201, 'Kitchen', 'toaster', '64B708890584'], [202, 'Kitchen', 'stove', '64B7088906D8'], [205, 'Office', '', '64B708897018']]", "tzone": "America/Los_Angeles", "ttl": -1, "_rid": "R60hANIG-K+qTQIAAAAAAg==", "_self": "dbs/R60hAA==/colls/R60hANIG-K8=/docs/R60hANIG-K+qTQIAAAAAAg==/", "_etag": "\"3500a0ae-0000-0800-0000-66bef56d0000\"", "_attachments": "attachments/", "_ts": 1723790701} + response = requests.get(url, params=params) + if response.status_code == 200: + + text = response.text + #print(text) + if text == "Log-Out": + return text + if text[0] == "{": + data = json.loads(response.text) + date_string = data["edit_date"] + parsed_date = datetime.datetime.strptime(date_string, '%c') + # Convert the datetime object to a timestamp (epoch time) + epoch_str = str(time.mktime(parsed_date.timetuple())) + devices = data["devs"] + return(epoch_str, devices) + else: + return text,"" + else: + logger.debug((f"Failed to retrieve the data, status code: {response.status_code}")) + + return "","" + +def GetDeploymentNameFromId(Id): + + con = sqlite3.connect(main_db) + con.text_factory = str + cur = con.cursor() + results=[] + SQL = "SELECT name FROM deployments WHERE id =" + Id + df = cur.execute(SQL) + results = cur.fetchall() + if len(results) > 0: + return results[0][0] + else: + return "" + +def GetTimeZoneOfDeployment(deployment_id): + time_zone_st = 'America/Los_Angeles' + with get_db_connection() as conn: + with conn.cursor() as cur: + sqlr = f"SELECT time_zone_s from public.deployments WHERE deployment_id ={deployment_id}" + time_zone_st = ReadCleanStringDB(cur, sqlr) + return time_zone_st + +def StringToEpoch(date_string, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in specified timezone + + Args: + date_string (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch timestamp in seconds + """ + # Parse the date string + date_format = '%Y-%m-%d' + naive_date = datetime.datetime.strptime(date_string, date_format) + + # Get the timezone + timezone = pytz.timezone(time_zone_s) + + # Localize the date to midnight in the specified timezone + local_date = timezone.localize(naive_date) + + # Convert to epoch timestamp + epoch_time = local_date.timestamp() + + return epoch_time + +def LocalDateToUTCEpoch(local_date_str, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in UTC + + Args: + local_date_str (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch UTC timestamp in seconds + """ + timezone = pytz.timezone(time_zone_s) + # Parse the date string + date_format = '%Y-%m-%d' + local_datetime = datetime.datetime.strptime(local_date_str, date_format) + local_datetime = timezone.localize(local_datetime) + + utc_datetime = local_datetime.astimezone(pytz.UTC) + epoch_time = int(utc_datetime.timestamp()) + + return epoch_time + +def GetDeploymentDatesBoth(deployment_in): + + #when looking at the date, date is defined in TZ where device is! + #Lets take oldest data from first member of deployment + st = time.time() + date_list = [] + print(f"&0 ----{time.time() - st}") + time_zone_st = GetTimeZoneOfDeployment(deployment_in) + print(f"&1 ----{time.time() - st}") + oldest_date_dt_utc, devices_all = getOldestDeploymentHistoryFromBeneficiary(deployment_in) + print(f"&2 ----{time.time() - st}") + if oldest_date_dt_utc != None: + #get date in local time zone from UTC datetime + + #oldest_date_dt + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + oldest_date_dt_local = oldest_date_dt_utc.astimezone(local_timezone) + today_date = datetime.datetime.now(local_timezone) + + # Generate a list of date strings from oldest_date to today in inverted order + date_list = [(today_date - timedelta(days=x)).strftime('%Y-%m-%d') for x in range((today_date - oldest_date_dt_local).days + 1)] + print(f"&3 ----{time.time() - st}") + return date_list, devices_all + +def check_file_exists(file_name, bucket_name="daily-maps"): + try: + # Try to get the object's stats - this will raise an exception if the object doesn't exist + stat_result = miniIO_blob_client.stat_object(bucket_name, file_name) + last_modified_utc = stat_result.last_modified + return True, last_modified_utc + except S3Error as e: + if e.code == 'NoSuchKey': + return False, 0 + # Re-raise if it's a different error + raise + +def get_text_dimensions(text, font, font_scale, thickness): + (width, height), baseline = cv2.getTextSize(text, font, font_scale, thickness) + return { + 'width': width, + 'height': height, + 'baseline': baseline, + 'total_height': height + baseline + } + +def save_to_minio(image, filename, bucket_name="daily-maps", content_type="image/png"): + """ + Save a PIL Image directly to MinIO + + Args: + image (PIL.Image): Image to save + filename (str): Filename to use in MinIO + bucket_name (str): MinIO bucket name + content_type (str): Content type of the file + + Returns: + bool: True if successful, False otherwise + """ + logger = logging.getLogger(__name__) + try: + # Convert PIL image to bytes + img_byte_arr = io.BytesIO() + image.save(img_byte_arr, format='PNG') + img_byte_arr.seek(0) # Move to start of the BytesIO buffer + + # Upload to MinIO + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + filename, + img_byte_arr, + length=len(img_byte_arr.getvalue()), + content_type=content_type + ) + return True + + except Exception as e: + logger.error(f"Error saving to MinIO: {traceback.format_exc()}") + return False + + +def SaveImageInBlob(file_name, arr_stretched, labels = []): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def SaveImageInBlobLabelsOut(file_name, arr_stretched, labels, title_labels): + + #labels=[(caption,(x,y),font,scale,color,thickness,line_type)] + try: + + image_with_text = arr_stretched.copy() + + for label in labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + for label in title_labels: + cv2.putText( + image_with_text, # Image + label[0], # Text to write + label[1], # Position (x, y) + label[2], # Font type + label[3], # Font scale + label[4], # Color (BGR) + label[5], # Thickness + label[6] # Line type + ) + + + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', image_with_text) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + #AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + return True + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return False + +def GetLocalTimeForDate(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def GetLocalTimeForDateSimple(selected_date, time_zone_s, minutes_padding = 0): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + if minutes_padding > 0: + local_start = local_start - timedelta(minutes=minutes_padding) + local_next = local_next + timedelta(minutes=minutes_padding) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + return utc_start, utc_next + +def GetLocalTimeEpochsForDate(selected_date, time_zone_s): + """ + Get start and end of day epochs for a given date in a specific timezone. + + Args: + selected_date (str): Date in "YYYY-MM-DD" format + time_zone_s (str): Timezone string (e.g., "America/New_York") + + Returns: + tuple: (start_epoch, end_epoch) - Unix timestamps for start and end of day + """ + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Convert to epochs (Unix timestamps) + start_epoch = int(utc_start.timestamp()) + end_epoch = int(utc_next.timestamp()) + + return start_epoch, end_epoch + +def UTC2Local(utc_time, time_zone_s): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + #local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(selected_date) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def get_timezone_aware_datetime(time_str, timezone_str="America/Los_Angeles"): + """ + Convert a naive datetime string to a timezone-aware datetime object. + + Parameters: + time_str: String in format 'YYYY-MM-DD HH:MM:SS' + timezone_str: String representing the timezone (default: "America/Los_Angeles") + + Returns: + datetime: A timezone-aware datetime object + """ + # Parse the naive datetime + naive_dt = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S') + + # Get the timezone + tz = pytz.timezone(timezone_str) + + # Localize the datetime (make it timezone-aware) + # localize() is the correct way to do this, as it handles DST transitions properly + aware_dt = tz.localize(naive_dt) + return aware_dt + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6 + } + # Add sensor columns dynamically + cols_len = len(columns) + for i in range(10): + columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_smell_array_from_timescale(day_data, time_from_str, device_to_index, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Define column mappings (sensor type to position in record) + columns = { + 's0': 2, + 's1': 3, + 's2': 4, + 's3': 5, + 's4': 6, + 's5': 7, + 's6': 8, + 's7': 9, + 's8': 10, + 's9': 11 + } + ## Add sensor columns dynamically + #cols_len = len(columns) + #for i in range(10): + #columns[f'sensor_min_s{i}'] = i + cols_len #smell * 10 + 5 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_radar_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 's2': 2, + 's3': 3, + 's4': 4, + 's5': 5, + 's6': 6, + 's7': 7, + 's8': 8 + } + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def ScaleTemperature(temperature_in_f): + # Define our key temperature points and their corresponding color values + temp_points = [30, 50, 70, 90, 110] + color_values = [768, 640, 384, 128, 0] # Color values in the rainbow scale + + # Clamp the temperature to our range + clamped_temp = max(min(temperature_in_f, 110), 30) + + # Find which segment the temperature falls into + for i in range(len(temp_points) - 1): + if temp_points[i] <= clamped_temp <= temp_points[i + 1]: + # Linear interpolation between the two nearest points + t = (clamped_temp - temp_points[i]) / (temp_points[i + 1] - temp_points[i]) + color_value = int(color_values[i] + t * (color_values[i + 1] - color_values[i])) + return color_value + + # Fallback (should never reach here due to clamping) + return 0 + +def GetTemperatureColor(temperature_in_f): + color_value = ScaleTemperature(temperature_in_f) + return BestColor(color_value) + +def BestColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val > 1279): + in_val = 1279 + if (in_val < 256): + r = 255 + g = in_val + elif (in_val < 512): + r = 511 - in_val + g = 255 + elif (in_val < 768): + g = 255 + b = in_val-512 + elif (in_val < 1024): + g = 1023 - in_val + b = 255 + else: + r = in_val - 1024 + b = 255 + + #if (r > 255): + # print(in_val) + # print(int(r),int(g),int(b)) + return(int(r),int(g),int(b)) + +def GrayColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val < 0): + in_val = 0 + if(in_val > 255): + in_val = 255 + + r = in_val + g = r + b = r + return(int(r),int(g),int(b)) + +def fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str): + """ + Fill numpy array with data from TimeScaleDB query results. + + Parameters: + day_data: List of tuples from database query + time_from_str: Starting datetime string in format 'YYYY-MM-DD HH:MM:SS' + devices_list: List of device IDs + arr_source: Pre-initialized numpy array to fill + + Returns: + numpy.ndarray: Filled array + """ + # Parse the start time + #start_time = get_timezone_aware_datetime(time_from_str, timezone_str) + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + # Create mapping of device_ids to their index positions + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define columns and their positions in the result tuple + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Process each record + for record in day_data: + # Get minute and device_id from record + record_time = record[0] # minute column + device_id = record[1] # device_id column + + if record_time and device_id: + # Calculate minute delta + minute_delta = int((record_time - start_time).total_seconds() / 60) + + if 0 <= minute_delta < arr_source.shape[1]: + # Calculate base index for this device + base_idx = device_to_index[device_id] * len(columns) + + # Fill data for each sensor/measurement type + for col_name, col_offset in columns.items(): + value = record[col_offset] + if value is not None: # Skip NULL values + row_idx = base_idx + list(columns.keys()).index(col_name) + arr_source[row_idx, minute_delta] = value + + return arr_source + +def fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) - KEEP EXACT SAME ORDER as original + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Pre-compute column keys list for consistent indexing + column_keys = list(columns.keys()) + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + # Use pre-computed column_keys list for consistent indexing + row_idx = base_idx + column_keys.index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def CalcExtremes(arr_source, length, height): + """ + Calculate min and max values for each row within legal bounds. + Optimized version using numpy vectorized operations. + + Parameters: + arr_source: numpy array of shape (height, length+4) containing data and bounds + length: number of data points to process (typically 1440 for minutes in a day) + height: number of rows in the array + + Returns: + numpy array with min/max values stored in columns 1442 and 1443 + """ + # Extract the data portion and bounds + data = arr_source[:, :length] + ignore_below = arr_source[:, 1440:1441] # Keep 2D shape for broadcasting + ignore_above = arr_source[:, 1441:1442] # Keep 2D shape for broadcasting + + # Create masks for valid values + above_min_mask = data >= ignore_below + below_max_mask = data <= ignore_above + valid_mask = above_min_mask & below_max_mask + + # Create a masked array to handle invalid values + masked_data = np.ma.array(data, mask=~valid_mask) + + # Calculate min and max values for each row + row_mins = np.ma.min(masked_data, axis=1).filled(-0.001) + row_maxs = np.ma.max(masked_data, axis=1).filled(-0.001) + + # Store results + arr_source[:, 1442] = row_mins + arr_source[:, 1443] = row_maxs + + return arr_source + +def plot(arr, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def ShowArray(arr, threshold, filename="histogram.png", title="Histogram Plot", figsize=(12, 6), + color='blue', style='histogram', bins=1000): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + x = np.arange(len(arr)) + plt.plot(x, arr, color=color) + plt.axhline(y=threshold, color='red', linestyle='--', + label=f'Threshold: {threshold:.3f}') + plt.xlabel('Index') + plt.ylabel('Value') + elif style == 'scatter': + x = np.arange(len(arr)) + plt.scatter(x, arr, color=color, alpha=0.6) + elif style == 'histogram': + plt.hist(arr.ravel(), bins=bins, range=(0, 100), color=color, alpha=0.8) + plt.yscale('log') # Using log scale for better visualization + plt.xlabel('Signal Value') + plt.ylabel('Frequency') + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + +def AddLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([s_table[i] for i in range(sensors_c)]) + min_vals = np.array([sensor_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([sensor_legal_values[t][1] for t in sensor_types]) + windows = np.array([sensor_legal_values[t][2] for t in sensor_types]) + + # Get values for each row based on sensor type + row_windows = windows[sensor_indices] + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Process rows that need cleaning (window > 2) + clean_mask = row_windows > 2 + if np.any(clean_mask): + # Clean each row with its corresponding window size + for window in np.unique(row_windows[clean_mask]): + # Get indices of rows that need this window size + rows_to_clean = np.where(clean_mask & (row_windows == window))[0] + + # Clean each row individually (since clean_data_vectorized expects 1D input) + for row_idx in rows_to_clean: + arr_source[row_idx, :1440] = clean_data_vectorized( + arr_source[row_idx, :1440], + window, + percentile + ) + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + + return arr_source + +def AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile): + """ + Vectorized version of AddLimits that processes all sensors at once. + Parameters: + arr_source: array of shape (devices_c * sensors_c, 1444) + devices_c: number of devices + sensors_c: number of sensors per device + percentile: parameter for clean_data_vectorized + """ + total_sensors = devices_c * sensors_c + # Create arrays of sensor indices for all rows + sensor_indices = np.arange(total_sensors) % sensors_c + # Convert sensor_legal_values into arrays for vectorized access + sensor_types = np.array([smells_table[i] for i in range(sensors_c)]) + min_vals = np.array([smell_legal_values[t][0] for t in sensor_types]) + max_vals = np.array([smell_legal_values[t][1] for t in sensor_types]) + # Get values for each row based on sensor type + row_mins = min_vals[sensor_indices] + row_maxs = max_vals[sensor_indices] + + # Replace values smaller than smell_min and larger than smell_max with no_smell + # Create a mask for the data points (first 1440 columns) + data_mask_below = arr_source[:, :1440] < smell_min + data_mask_above = arr_source[:, :1440] > smell_max + data_mask_invalid = data_mask_below | data_mask_above + + # Replace invalid values with no_smell + arr_source[:, :1440][data_mask_invalid] = no_smell + + # Set min/max values for all rows at once + arr_source[:, 1440] = row_mins + arr_source[:, 1441] = row_maxs + return arr_source + +def AddLimits(arr_source, devices_c, sensors_c, percentile): + for y in range(devices_c*sensors_c): + sensor_index = y % sensors_c + min_ok, max_ok, window = sensor_legal_values[s_table[sensor_index]] + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "before_clean_sensor.png") + if window > 2: + arr_source[y, :1440] = clean_data_vectorized(arr_source[y, :1440], window, percentile) + + #if EnablePlot: + #if (y == 33): + #print("stop") + #plot(arr_source[y, :1440], "after_clean_sensor.png") + + arr_source[y][1440] = min_ok + arr_source[y][1441] = max_ok + return arr_source + +def clean_data_vectorized(data, window, percentile): + """ + Vectorized version of clean_data function using pure numpy + First removes zeros, then cleans outliers + + Parameters: + data: numpy array of sensor readings + window: int, size of rolling window + percentile: float, percentile threshold for deviation filtering + """ + # Create a copy to avoid modifying original data + working_data = data.copy() + + # Replace zeros with NaN + zero_mask = working_data == 0 + working_data[zero_mask] = np.nan + + # Create rolling window view of the data + def rolling_window(a, window): + shape = a.shape[:-1] + (a.shape[-1] - window + 1, window) + strides = a.strides + (a.strides[-1],) + return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides) + + # Pad array for edge handling + pad_width = window // 2 + padded = np.pad(working_data, pad_width, mode='edge') + + # Create rolling windows + windows = rolling_window(padded, window) + + # Calculate rolling median (ignoring NaN values) + medians = np.nanmedian(windows, axis=1) + + # Forward/backward fill any NaN in medians + # Forward fill + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), 0) + np.maximum.accumulate(idx, out=idx) + medians[mask] = medians[idx[mask]] + + # Backward fill any remaining NaNs + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), mask.shape[0] - 1) + idx = np.minimum.accumulate(idx[::-1])[::-1] + medians[mask] = medians[idx[mask]] + + # Calculate deviations (ignoring NaN values) + deviations = np.abs(working_data - medians) + + # Calculate threshold (ignoring NaN values) + threshold = np.nanpercentile(deviations, percentile) + + # Create mask and replace outliers with median values + # Points are good if they're not NaN and deviation is within threshold + good_points = (~np.isnan(working_data)) & (deviations <= threshold) + + # Replace all bad points (including zeros and outliers) with median values + result = np.where(good_points, working_data, medians) + + return result + + +def process_chunk(args): + """ + Process a chunk of rows + """ + chunk, sensors_c, sensor_legal_values, s_table, window, percentile = args + result = np.copy(chunk) + + # Process all time series in the chunk at once + result[:, :1440] = np.array([ + clean_data_vectorized(row[:1440], window, percentile) + for row in chunk + ]) + + # Set limits for all rows in chunk using vectorized operations + sensor_indices = np.arange(len(chunk)) % sensors_c + min_values = np.array([sensor_legal_values[s_table[i]][0] for i in sensor_indices]) + max_values = np.array([sensor_legal_values[s_table[i]][1] for i in sensor_indices]) + + result[:, 1440] = min_values + result[:, 1441] = max_values + + return result + + +def FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Optimized version of FillImage function that fills the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + group_by: grouping strategy ("sensortype" or other) + bw: boolean flag for black and white output + + Returns: + arr_stretched: Filled array with RGB values + and vocs_scaled aray from 0 to 1280 + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Pre-calculate VOC rows mask + if group_by != "sensortype": + voc_rows = np.arange(stripes) >= 5 * devices_c + else: + voc_rows = (np.arange(stripes) % sensors_c) >= 5 + + # Pre-calculate destination row mapping for sensortype grouping + if group_by == "sensortype": + row_indices = np.arange(stripes) + sensor_indices = row_indices % sensors_c + device_indices = row_indices // sensors_c + dest_rows = sensor_indices * devices_c + device_indices + dest_rows = dest_rows[:, np.newaxis] * stretch_by + np.arange(stretch_by) + else: + row_indices = np.arange(stripes)[:, np.newaxis] * stretch_by + np.arange(stretch_by) + + # Optimize color calculation functions + def best_color_vectorized(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + def gray_color_vectorized(vals): + """Vectorized version of GrayColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 255).astype(np.int32) + return vals, vals, vals + + color_func = gray_color_vectorized if bw else best_color_vectorized + + # Process all rows at once + valid_mask = scaled_day[:, :minutes] != -0.001 + big_min = scaled_day[:, 1442:1443] # Keep 2D shape for broadcasting + big_max = scaled_day[:, 1443:1444] + + # Calculate k factors where max > min + valid_range_mask = big_max > big_min + k = np.zeros_like(big_min) + k[valid_range_mask] = (1280 if not bw else 255) / (big_max[valid_range_mask] - big_min[valid_range_mask]) + + # Calculate normalized values for all rows at once + normalized_vals = np.zeros_like(scaled_day[:, :minutes]) + valid_range_indices = np.where(valid_range_mask)[0] + + normalized_vals[valid_range_indices] = ( + k[valid_range_indices] * + (scaled_day[valid_range_indices, :minutes] - big_min[valid_range_indices]) + ) + + # Invert VOC rows + normalized_vals[voc_rows] = (1279 if not bw else 255) - normalized_vals[voc_rows] + + # Apply valid mask + normalized_vals[~valid_mask] = 0 + + # Convert to RGB + r, g, b = color_func(normalized_vals) + + # Create RGB array + rgb_values = np.stack([r, g, b], axis=-1) + + # Handle special case where max == min + equal_range_mask = ~valid_range_mask + if np.any(equal_range_mask): + rgb_values[equal_range_mask.ravel()] = 128 + + # Fill the stretched array efficiently + if group_by == "sensortype": + arr_stretched[dest_rows] = rgb_values[:, None] + else: + arr_stretched[row_indices] = rgb_values[:, None] + + return arr_stretched, normalized_vals[voc_rows] + + +def FillSmellImage_optimized(scaled_day, arr_stretched, y_offset): + """ + Fill the stretched array with colored sensor data from scaled_day. + + Parameters: + scaled_day: 2D array of shape (70, 1444) containing sensor readings + arr_stretched: 3D array of shape (2685, 1640, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stretch_by = 20 + x_offset = 200 + + def best_color_vectorizedS(vals): + """Vectorized version of BestColor that matches the original implementation exactly""" + vals = np.clip(vals, 0, 1279).astype(np.int32) + r = np.zeros_like(vals, dtype=np.int32) + g = np.zeros_like(vals, dtype=np.int32) + b = np.zeros_like(vals, dtype=np.int32) + + # Region 0-255 + mask1 = vals < 256 + r[mask1] = 255 + g[mask1] = vals[mask1] + + # Region 256-511 + mask2 = (vals >= 256) & (vals < 512) + r[mask2] = 511 - vals[mask2] + g[mask2] = 255 + + # Region 512-767 + mask3 = (vals >= 512) & (vals < 768) + g[mask3] = 255 + b[mask3] = vals[mask3] - 512 + + # Region 768-1023 + mask4 = (vals >= 768) & (vals < 1024) + g[mask4] = 1023 - vals[mask4] + b[mask4] = 255 + + # Region 1024-1279 + mask5 = vals >= 1024 + r[mask5] = vals[mask5] - 1024 + b[mask5] = 255 + + return r, g, b + + # Process each row in scaled_day + for row_idx in range(scaled_day.shape[0]): + # Extract min and max for this row + row_min = scaled_day[row_idx, 1442] + row_max = scaled_day[row_idx, 1443] + + # Get data for this row (first 1440 elements) + row_data = scaled_day[row_idx, :1440] + + # Check if min and max are the same + if row_min == row_max: + # Create gray stripe + stripe = np.ones((stretch_by, 1440, 3), dtype=np.int32) * 128 + else: + # Normalize the data between 0 and 1279 + k = 1280 / (row_max - row_min) + normalized_vals = k * (row_data - row_min) + normalized_vals = np.clip(normalized_vals, 0, 1279) + + # Convert to RGB + r, g, b = best_color_vectorizedS(normalized_vals) + + # Create RGB stripe + stripe = np.zeros((stretch_by, 1440, 3), dtype=np.int32) + + # Fill stripe with the same color pattern for all stretch_by rows + for i in range(stretch_by): + stripe[i, :, 0] = r + stripe[i, :, 1] = g + stripe[i, :, 2] = b + + # Calculate the y position for this stripe + y_pos = y_offset + row_idx * stretch_by + + # Place the stripe into arr_stretched + print(stretch_by, stripe.shape, arr_stretched.shape, y_pos) + arr_stretched[y_pos:y_pos+stretch_by, x_offset:x_offset+1440, :] = stripe + + return arr_stretched + +def FillImage(scaled_day, devices_c, sensors_c, arr_stretched, group_by, bw): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % sensors_c) >= 5]) + # Vectorize the BestColor function + if not bw: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = scaled_day[row, 1442] # min value + big_max = scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if not bw: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if not bw: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + sensor_index = row % sensors_c + device_index = int(row/sensors_c) + dest_row = sensor_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def FillRadarImage(scaled_day, devices_c, bands, arr_stretched, group_by, map_type): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + bands: number of bands per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * bands + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % bands) >= 5]) + # Vectorize the BestColor function + if map_type == 3: + vectorized_best_color = np.vectorize(BestColor) + else: + vectorized_best_color = np.vectorize(GrayColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = 0 #scaled_day[row, 1442] # min value + big_max = 255 #scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + if map_type == 3: + k = 1280/(big_max-big_min) + else: + k = 255/(big_max-big_min) + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + if map_type == 3: + normalized_vals = 1279 - normalized_vals + else: + normalized_vals = 255 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + band_index = row % bands + device_index = int(row/bands) + dest_row = band_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def GetFullLocMapDetails(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + local_timezone = pytz.timezone('America/Los_Angeles') # Replace with your local timezone + dest_path = os.path.dirname(map_file) + + parts = map_file.split("/") + deployment = parts[-2] + parts1 = parts[-1].split("_") + date_string = parts1[1] + + deployments = GetDeploymentB(deployment, -1) #All + last_locations_file = "" + last_per_minute_file = "" + + today = datetime.today() + deployment_details = deployments[0] + deployment_pair = deployment_details[0] + proximity_lst = deployment_details[1] + + date_object = datetime.strptime(date_string, "%Y-%m-%d") + date_object_midnight = local_timezone.localize(date_object.replace(hour=0, minute=0, second=0, microsecond=0)) + selected_epoch = int(date_object_midnight.timestamp()) + + sel_date = datetime.fromtimestamp(selected_epoch) + devices_list_str = GetDevicesList(deployment_details, sel_date)#.split(',') + devices_list = ast.literal_eval(devices_list_str) + return devices_list, selected_epoch, dest_path + +def median_filter(data, window_size): + filtered_data = [] + print(len(data)) + window = deque(maxlen=window_size) + last_value = -1 + offset = 0 + added_old = 0 + for value in data: + if value != '': + added_old = 0 + last_value = value + window.append(value) + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + else: + if last_value != -1: + if added_old < window_size: + added_old = added_old + 1 + window.append(last_value) + else: + window.append(-1) + + if len(window) == window_size: + # Sort the window and get the median value + sorted_window = sorted(window) + median = sorted_window[window_size // 2] + filtered_data.append(median) + + else: + offset +=1 + + if len(filtered_data) > 0: + offset += (window_size // 2) + #if starts empty, just leav it such, do not fake backwards from midnight + first_val = -1# filtered_data[0] + last_val = filtered_data[-1] + front_padding = [first_val] * offset + remaining = len(data) - len(filtered_data) - len(front_padding) + back_padding = [last_val] * remaining + out_data = front_padding + filtered_data + back_padding + else: + out_data = data + #add front and back padding + + return out_data + +def FilterGlitches(wave_in, filter_minutes): + + if(filter_minutes > 0): + notfiltered_wave = [i[0] for i in wave_in] + filtered_wave = median_filter(notfiltered_wave, filter_minutes) + for i, value in enumerate(filtered_wave): + wave_in[i][0] = value + + return wave_in + +def setup_timezone_converter(time_zone_st): + """ + Setup timezone converter to be reused + + Parameters: + time_zone_st (str): Timezone string (e.g. 'Europe/Berlin') + + Returns: + pytz.timezone: Timezone object for conversion + """ + return pytz.timezone(time_zone_st) + +def ReadDailyRadar(MAC, current_date): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + start_of_day = ToLocal(calendar.timegm(datetime(current_date.year, current_date.month,current_date.day, 0, 0).timetuple())) + end_of_day = start_of_day + 1440 * 60 + file = os.path.join(scriptDir, "DB/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file = file.replace("\\","/") + file1 = os.path.join(scriptDir, "DB/processed_db/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+".db") + file1 = file1.replace("\\","/") + if (not path.exists(file) and not path.exists(file1)): + print(file + " and " + file1 + " are not found") + return [] + result = [] + min_OK = "0" + sqlr = "SELECT * FROM radars WHERE time >= "+str(start_of_day) +" and time < "+str(end_of_day) +" ORDER BY time ASC" + #sqlr = "SELECT Date, high, low from "+sensor.lower()+"s1Min"+" WHERE low >= "+min_OK+" and Date >= "+str(start_of_day) +" and Date < "+str(end_of_day) + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + # M0 ............M8 S2 ........S8 + #day_minutes_data = [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]] * (24 * 60 + 2) + day_minutes_data = [[0] * 16 for _ in range(24 * 60)] + #for each gate lets find maximum value per minute + for mgate in range(9): + max_per_min = 0 + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[mgate + 6] > day_minutes_data[minute_m][mgate]: + day_minutes_data[minute_m][mgate] = minute_data[mgate + 6] + + for sgate in range(7): + for minute_data in result: + seconde = minute_data[0] + date_time_minute = datetime.fromtimestamp(seconde) + minute_m = 60*date_time_minute.hour+date_time_minute.minute + if minute_data[sgate + 17] > day_minutes_data[minute_m][sgate+9]: + day_minutes_data[minute_m][sgate+9] = minute_data[sgate + 17] + + return day_minutes_data + + +def FromLocalMidnight(epoch_time, local_delta): + + # Convert epoch time to UTC datetime object + print(type(epoch_time)) + print(epoch_time) + local_datetime = datetime.datetime.utcfromtimestamp(epoch_time+local_delta).replace(tzinfo=pytz.UTC) + + # Calculate minute count from midnight + minutes_from_midnight = (local_datetime - local_datetime.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60 + return minutes_from_midnight + +def process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest): + """ + NumPy-based version of wave processing + + Parameters: + my_data: List of tuples containing (time_val, device_id, other radar_fields_of_interest) + time_zone_s: Target timezone string + device_id_2_threshold: Dictionary mapping device_ids to their thresholds + + Returns: + List of [device_id, max_val] pairs for each minute + """ + wave_m = None + tz = pytz.timezone(time_zone_s) + if not my_data: + return [["", -1] for _ in range(1440)] + + vectorized_BestColor = np.vectorize(BestColor) + stripes = len(device_id_2_threshold) + stretch_by = 5 + minutes = 1440 + arr_source = np.zeros((int(stripes), minutes), dtype=np.float32) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + index_map = {word: idx for idx, word in enumerate(radar_fields_of_interest)} + devices_map = {word: idx for idx, word in enumerate(device_id_2_threshold)} + times = [] + start_time = 0 + for data_set in my_data: + time_stamp = data_set[0] + if start_time == 0: + + # Convert timestamp to a datetime object in UTC + local_tz = pytz.timezone(time_zone_s) + local_time = time_stamp.astimezone(local_tz) + # Set the time to the start of the day in the local time zone + start_of_day_local = local_time.replace(hour=0, minute=0, second=0, microsecond=0) + # Convert the start of the day back to UTC + start_time = start_of_day_local.astimezone(pytz.utc) + + diff = time_stamp - start_time + minute = int(diff.total_seconds() / 60) + device_id = data_set[1] + field_name = device_id_2_threshold[device_id][0] + field_index = index_map[field_name] + threshold = device_id_2_threshold[device_id][1] + value = data_set[2+field_index] + if value > threshold: + arr_source[devices_map[device_id]][minute] = value + #np.savetxt('output.csv', arr_source, delimiter=',') + if False: + for yy in range(stripes): + rgb_row = vectorized_BestColor(1280*arr_source[yy]/100) + rgb_reshaped = np.array(rgb_row).reshape(3, minutes).T + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_reshaped + + SaveImageInBlob(image_file, arr_stretched, []) + + + max_values = np.max(arr_source, axis=0) + + # Get indices (0-based) + wave_m = np.argmax(arr_source, axis=0) + + # Add 1 to convert to 1-based indexing + wave_m = wave_m + 1 + + # Set to 0 where the column was all zeros + wave_m[max_values == 0] = 0 + + return wave_m + + + +def ReadDailyCollapsedFastRadar(MAC, time_from_str, time_to_str): + + #This will return all 1 Minute radar data for each gate in the file + #Will return list (2 items) of lists: Maxes, Mins based on s28 (stationary[2] to [8]) + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + result = [] + min_OK = "0" + sqlr = "SELECT radar_max FROM devices WHERE MAC = '"+MAC +"'" + print(sqlr) + DB_to_be_found_in_full = os.path.join(scriptDir, "main.db") + DB_to_be_found_in_full = DB_to_be_found_in_full.replace("\\","/") + result = QuerrySql(DB_to_be_found_in_full, sqlr) + sqlr = "SELECT date, low FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + if len(result)>0: + if result[0][0] == 1: + sqlr = "SELECT date, high FROM radars1Min WHERE date >= "+str(start_of_day) +" and date < "+str(end_of_day) + " ORDER BY date" + + print(sqlr) + if os.path.exists(file): + result = QuerrySql(file, sqlr) + elif os.path.exists(file1): + result = QuerrySql(file1, sqlr) + + return result + +def vectorized_best_color_numpy(values): + """Vectorized version of BestColor using pure NumPy""" + # Ensure values are within range + values = np.clip(values, 0, 1279) + + # Initialize output arrays + r = np.zeros_like(values, dtype=np.uint8) + g = np.zeros_like(values, dtype=np.uint8) + b = np.zeros_like(values, dtype=np.uint8) + + # Create masks for each range + mask_0_255 = values < 256 + mask_256_511 = (values >= 256) & (values < 512) + mask_512_767 = (values >= 512) & (values < 768) + mask_768_1023 = (values >= 768) & (values < 1024) + mask_1024_plus = values >= 1024 + + # Set values for each range using masks + r[mask_0_255] = 255 + g[mask_0_255] = values[mask_0_255] + + r[mask_256_511] = 511 - values[mask_256_511] + g[mask_256_511] = 255 + + g[mask_512_767] = 255 + b[mask_512_767] = values[mask_512_767] - 512 + + g[mask_768_1023] = 1023 - values[mask_768_1023] + b[mask_768_1023] = 255 + + r[mask_1024_plus] = values[mask_1024_plus] - 1024 + b[mask_1024_plus] = 255 + + return np.stack([r, g, b], axis=-1) + +def create_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + + color_values[:, :] = ((values[batch_slice, :] - min_val) / (max_val - min_val)) * 1279.0 + #color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def create_light_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for light data (range 0-4095) + + Parameters: + my_data (list): Data from the database query + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for normalization (default: 0) + max_val (float): Maximum value for normalization (default: 4095) + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 1 for light data) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float - light data is in column 2 + # Reshape to match expected format (n_samples, n_fields) + values = data_array[:, 2].astype(np.float32).reshape(-1, 1) + + # Process in batches to avoid memory issues + batch_size = 1000 + + if bw: + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to grayscale (0-255) + gray_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 255.0) + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # Assign values to the image array + for i in range(end_idx - start_idx): + # Create RGB grayscale (same value for R, G, B) + gray_rgb = np.full(3, gray_values[i, 0], dtype=np.uint8) + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = gray_rgb + else: + # Color mode + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Normalize light values (0-4095) to color range (0-1279) + color_values = ((values[batch_slice] - min_val) / (max_val - min_val) * 1279.0) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + + # For each value, calculate its RGB color and assign to the image + for i in range(end_idx - start_idx): + # Convert normalized value to RGB using vectorized_best_color_numpy + rgb_value = vectorized_best_color_numpy(np.array([color_values[i, 0]]))[0] + wave_m[y_coords[i, 0], x_coords[batch_slice][i]] = rgb_value + + return wave_m + +def create_temperature_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=4095): + """ + Create an optimized heatmap for temperature data with alarm levels + + Parameters: + my_data (list): Data from the database query with columns for minute, device_id, temperature_avg, alarm_level + bw (bool): Whether to create a black and white (True) or color (False) heatmap + fields (list): List of field names - should be ['temperature', 'temperature_state'] + wave_m (numpy.ndarray): The image array to fill + device_to_index (dict): Mapping from device_id to index + base_minute (datetime): The base minute for time calculations + timezone_st (str): Timezone string + min_val (float): Minimum value for temperature normalization + max_val (float): Maximum value for temperature normalization + + Returns: + numpy.ndarray: The filled image array + """ + if len(my_data) < 1: + return wave_m + + import numpy as np + import pytz + + # Get the local timezone + local_tz = pytz.timezone(timezone_st) + + # Number of fields (should be 2 for temperature data: temperature and alarm state) + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + temperature = data_array[batch_slice][i, 2] + alarm_level = 0 + + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row - index 0, 2, 4...) + # Normalize temperature to the color range and create color + if not bw: + # For color mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 1279.0, 0, 1279) + temp_rgb = vectorized_best_color_numpy(np.array([normalized_temp]))[0] + else: + # For B&W mode + normalized_temp = np.clip((temperature - min_val) / (max_val - min_val) * 255.0, 0, 255) + gray_value = int(normalized_temp) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the temperature color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row - index 1, 3, 5...) + # Set color based on alarm level (0=green, 1=yellow, 2=red) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + + +def create_humidity_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val=0, max_val=100): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return wave_m + + # Number of fields + n_fields = len(fields) + + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + x_coords = np.array([(minute - base_minute).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Process in batches to avoid memory issues + batch_size = 1000 + + # Define the color mapping function based on the exact spectrum we want + def get_color(t): + """Get RGB color from humidity 0-100""" + # Define color stops - exact RGB values at each step + # Format: (position, (r, g, b)) + #color_stops = [ + #(0, (0, 0, 255)), # Blue + #(20, (0, 255, 255)), # Cyan + #(40, (0, 255, 0)), # Green (centered at 40) + #(60, (255, 255, 0)), # Yellow + #(80, (255, 0, 0)), # Red + #(100, (255, 0, 255)) # Violet + #] + + color_stops = [ + (0, (0, 0, 255)), # Blue + (16, (0, 255, 255)), # Cyan + (32, (0, 255, 0)), # Green (now centered at 32) + (60, (255, 255, 0)), # Yellow + (80, (255, 0, 0)), # Red + (100, (255, 0, 255)) # Violet + ] + + # Ensure t is within range + t = max(0, min(100, t)) + + # Find the two stops to interpolate between + for i in range(len(color_stops) - 1): + pos1, color1 = color_stops[i] + pos2, color2 = color_stops[i+1] + + if pos1 <= t <= pos2: + # Linear interpolation between the two color stops + ratio = (t - pos1) / (pos2 - pos1) + r = int(color1[0] + ratio * (color2[0] - color1[0])) + g = int(color1[1] + ratio * (color2[1] - color1[1])) + b = int(color1[2] + ratio * (color2[2] - color1[2])) + return r, g, b + + # Should never reach here + return 0, 0, 0 + + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + for i in range(end_idx - start_idx): + # Get data for this record + humidity = float(data_array[batch_slice][i, 2]) + + # Map humidity from min_val-max_val to 0-100 for our color function + normalized_temp = 100.0 * (humidity - min_val) / (max_val - min_val) if max_val > min_val else 0 + normalized_temp = max(0, min(100, normalized_temp)) # Clamp to 0-100 + + alarm_level = 0 + # If we have an alarm_level column (index 3), use it + if data_array.shape[1] > 3: + alarm_level = data_array[batch_slice][i, 3] + + # Calculate base y-coordinate for this device + base_y = device_indices[batch_slice][i] * n_fields + + # Temperature row (even row) + if not bw: + # Get RGB color from our direct mapping function + r, g, b = get_color(normalized_temp) + + # OpenCV uses BGR ordering, not RGB + temp_rgb = np.array([b, g, r], dtype=np.uint8) + else: + # For B&W mode + gray_value = int(normalized_temp * 2.55) # 0-100 to 0-255 + gray_value = max(0, min(255, gray_value)) + temp_rgb = np.array([gray_value, gray_value, gray_value], dtype=np.uint8) + + # Set the humidity color in the even row + wave_m[base_y, x_coords[batch_slice][i]] = temp_rgb + + # Alarm level row (odd row) + if alarm_level == 0: + # Green for normal + alarm_rgb = np.array([0, 255, 0], dtype=np.uint8) #thisis B,G,R !!! + elif alarm_level == 1: + # Yellow for warning + alarm_rgb = np.array([0, 255, 255], dtype=np.uint8) + else: # alarm_level == 2 + # Red for critical + alarm_rgb = np.array([0, 0, 255], dtype=np.uint8) + + # Set the alarm color in the odd row + wave_m[base_y + 1, x_coords[batch_slice][i]] = alarm_rgb + + return wave_m + +def create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields, device_to_index, base_minute, timezone_st, smell_component_stretch_by, selected_date, y_offset): + """ + Create a heatmap with the exact blue-cyan-green-yellow-red-violet spectrum + matching Image 2, with green at position 40 + """ + if len(my_data) < 1: + return + + minutes = 1440 + devices_c = len(device_to_index) + sensors_c = len(fields) + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + st = time.time() + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, timezone_st) + st = time.time() + arr_source = fast_fill_smell_array_from_timescale(my_data, time_from_str, device_to_index, arr_source_template, timezone_st) + arr_source = AddSmellLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + scaled_day = CalcExtremes(arr_source, minutes, stripes) + + arr_stretched = FillSmellImage_optimized(scaled_day, arr_stretched, y_offset) + + return + + +def create_optimized_heatmap_simple(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st, min_val, max_val): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] - min_val / (max_val - min_val)) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for i in range(0, len(data_array)): + rgb_value = ((values[i] - min_val) / (max_val - min_val)) * 1279.0 + wave_m[i, x_coords[i]] = rgb_value + + return wave_m + + +def create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, timezone_st): + + if len(my_data) < 1: + return [] + + + local_tz = pytz.timezone(timezone_st) + + n_fields = len(fields) + # Convert my_data to numpy array for faster processing + data_array = np.array(my_data) + + # Get unique device IDs and create mapping + + # Convert device IDs to indices using vectorized operation + device_indices = np.vectorize(device_to_index.get)(data_array[:, 1]) + + # Calculate x coordinates (minutes from base) + #minute is in local time zone, and base_minute is UTC + base_minute_local = base_minute #.astimezone(local_tz) + #x_coords = np.array([(minute.replace(tzinfo=datetime.timezone.utc) - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + x_coords = np.array([(minute - base_minute_local).total_seconds()/60 for minute in data_array[:, 0]], dtype=np.int32) + + # Extract values and convert to float + values = data_array[:, 2:].astype(np.float32) + + if bw: + # Process in batches to avoid memory issues + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + + # Calculate gray values + gray_values = (values[batch_slice, :] / 100.0) * 255.0 + + # Clip values to valid range + gray_values = np.clip(gray_values, 0, 255).astype(np.uint8) + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Assign values to the image array + for i in range(end_idx - start_idx): + wave_m[y_coords[i], x_coords[batch_slice][i]] = gray_values[i, :, np.newaxis] + + else: # Color mode + # Process in batches + batch_size = 1000 + for start_idx in range(0, len(data_array), batch_size): + end_idx = min(start_idx + batch_size, len(data_array)) + batch_slice = slice(start_idx, end_idx) + + # Calculate color values + color_values = np.zeros_like(values[batch_slice]) + color_values[:, :] = (values[batch_slice, :] / 100.0) * 1279.0 # other fields + + # Create y coordinates for each record + y_coords = (device_indices[batch_slice] * n_fields).reshape(-1, 1) + np.arange(n_fields) + + # Convert to RGB colors + for i in range(end_idx - start_idx): + rgb_values = vectorized_best_color_numpy(color_values[i]) + wave_m[y_coords[i], x_coords[batch_slice][i]] = rgb_values + + return wave_m + +def visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png'): + """ + Visualize how GMM separates the stationary signal into components + """ + # Prepare data + X = stationary_signal.reshape(-1, 1) + + # Fit GMM + gmm = GaussianMixture(n_components=2, random_state=42) + gmm.fit(X) + + # Get parameters + means = gmm.means_.flatten() + stds = np.sqrt(gmm.covariances_.flatten()) + weights = gmm.weights_ + + # Create histogram of actual data + plt.figure(figsize=(12, 6)) + + # Plot histogram of actual data + plt.hist(X, bins=50, density=True, alpha=0.6, color='gray', + label='Actual Signal Distribution') + + # Generate points for GMM curves + x = np.linspace(X.min(), X.max(), 200) + + # Plot individual components + for i in range(len(means)): + plt.plot(x, weights[i] * stats.norm.pdf(x, means[i], stds[i]), + label=f'Component {i+1}: mean={means[i]:.2f}, std={stds[i]:.2f}') + + # Plot combined GMM + gmm_curve = np.zeros_like(x) + for i in range(len(means)): + gmm_curve += weights[i] * stats.norm.pdf(x, means[i], stds[i]) + plt.plot(x, gmm_curve, 'r--', linewidth=2, label='Combined GMM') + + # Add vertical lines for threshold + baseline = min(means) + threshold = baseline + 3 * np.sqrt(gmm.covariances_.flatten()[np.argmin(means)]) + plt.axvline(x=baseline, color='g', linestyle='--', label='Baseline') + plt.axvline(x=threshold, color='r', linestyle='--', label='Threshold') + + plt.title('Gaussian Mixture Model Components of Stationary Signal') + plt.xlabel('Signal Value') + plt.ylabel('Density') + plt.legend() + plt.grid(True) + + # Save and close + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def process_location_data(location_data): + """ + Convert raw location data into aligned time series. + """ + timestamps = np.array([t[0] for t in location_data]) + stationary = np.array([t[1] for t in location_data]) + motion = np.array([t[2] for t in location_data]) + return timestamps, stationary, motion + +def detect_presence_for_location(stationary_signal, motion_signal, + motion_threshold=5, gmm_components=2): + """ + Simplified presence detection for a single location. + Returns presence mask and parameters. + """ + # Fit GMM to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + visualize_gmm_fit(stationary_signal, output_file='gmm_explanation.png') + + # Get baseline and threshold + baseline = min(gmm.means_)[0] + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std + + # Detect presence + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # Smooth presence detection (15 seconds window = 1.5 samples at 10sec sampling) + smooth_window = 3 + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, threshold + +def find_current_location(data_sets, start_time, end_time, motion_threshold=10): + """ + Analyze presence across multiple locations for each minute. + + Parameters: + ----------- + data_sets : dict + Dictionary of location_name: data_tuples pairs + start_time : datetime + Start time for analysis + end_time : datetime + End time for analysis + motion_threshold : float + Threshold for significant motion detection + + Returns: + -------- + dict + Minute by minute analysis of presence and movement + """ + # Process each location's data + location_data = {} + for location, data in data_sets.items(): + timestamps, stationary, motion = process_location_data(data) + presence, threshold = detect_presence_for_location(stationary, motion, motion_threshold) + location_data[location] = { + 'timestamps': timestamps, + 'presence': presence, + 'motion': motion, + 'stationary': stationary, + 'threshold': threshold + } + + # Create minute-by-minute analysis + current_time = start_time + results = [] + + while current_time < end_time: + minute_end = current_time + timedelta(minutes=1) + + # Analysis for current minute + minute_status = { + 'timestamp': current_time, + 'locations': [], + 'moving_locations': [], + 'presence_values': {}, + 'motion_values': {}, + 'status': 'nobody_present' + } + + # First pass: collect all presence and motion values + for location, data in location_data.items(): + # Find indices for current minute + mask = (data['timestamps'] >= current_time) & (data['timestamps'] < minute_end) + if not any(mask): + continue + + presence_in_minute = data['presence'][mask] + motion_in_minute = data['motion'][mask] + stationary_in_minute = data['stationary'][mask] + + if any(presence_in_minute): + minute_status['presence_values'][location] = np.max(stationary_in_minute) + minute_status['motion_values'][location] = np.max(motion_in_minute) + + # If no presence detected anywhere + if not minute_status['presence_values']: + minute_status['status'] = 'nobody_present' + results.append(minute_status) + current_time += timedelta(minutes=1) + continue + + + # Find location with strongest presence + primary_location = max(minute_status['presence_values'].items(), + key=lambda x: x[1])[0] + + # Count locations with significant motion + moving_locations = [loc for loc, motion in minute_status['motion_values'].items() + if motion > motion_threshold] + + plot(motion, filename=f"motion.png", title=f"Motion", style='line') + # Update status based on motion and presence + if len(moving_locations) > 1: + # Multiple locations with significant motion indicates multiple people + minute_status['status'] = 'multiple_people_moving' + minute_status['locations'] = moving_locations + minute_status['moving_locations'] = moving_locations + else: + # Single or no motion - assign to location with strongest presence + minute_status['locations'] = [primary_location] + if moving_locations: + minute_status['status'] = f'single_person_moving_in_{primary_location}' + minute_status['moving_locations'] = moving_locations + else: + minute_status['status'] = f'single_person_stationary_in_{primary_location}' + + results.append(minute_status) + current_time += timedelta(minutes=1) + + return results + +def get_size(obj, seen=None): + # Recursively find size of objects and their contents + if seen is None: + seen = set() + + obj_id = id(obj) + if obj_id in seen: + return 0 + + seen.add(obj_id) + size = sys.getsizeof(obj) + + if isinstance(obj, (list, tuple, set, dict)): + if isinstance(obj, (list, tuple, set)): + size += sum(get_size(i, seen) for i in obj) + else: # dict + size += sum(get_size(k, seen) + get_size(v, seen) for k, v in obj.items()) + + return size + +def CreatePresenceMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, + fast, filter_minutes, time_zone_s): + + #global Id2MACDict + data_sets = {} + ids_list = [] + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + time_from, time_to = GetLocalTimeForDateSimple(selected_date, time_zone_s) + + for details in devices_list: + + sql = get_device_radar_only_query(str(details[1]), time_from_str, time_to_str, [details[1]]) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + data_sets[details[2]] = cur.fetchall()#cur.fetchone() + + + + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, time_from, time_to) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") + + print(f"Dictionary size: {get_size(data_sets)} bytes") + devices_list_str = ','.join(str(device[1]) for device in devices_list) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + sql = get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #thresholds_dict = {} + + #stretch_to_min_max = True + #devices_c = len(devices_list) + + #data_sets = { + #'living_room': my_data1, + #'kitchen': my_data2, + #'bedroom1': my_data3, + #'bedroom2': my_data4, + #'hallway': my_data5, + #'bathroom': my_data6, + #'office': my_data7 + #} + + sensors_c = 1#len(sensors_table) + + + image_file = location_image_file + + minutes = 1440 + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] #Why 'm8_max' and 'm08_max' ?because m08 is m0 + m1 .. to 8! + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + #device_counter = 0 + stretch_by = 5 + + #arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + + + # Get start and end times from your data + start_time = min(data_sets['living_room'][0][0], + data_sets['kitchen'][0][0], + # ... add other locations + ) + end_time = max(data_sets['living_room'][-1][0], + data_sets['kitchen'][-1][0], + # ... add other locations + ) + + # Get minute-by-minute analysis + location_analysis = find_current_location(data_sets, start_time, end_time) + + # Example of printing results + for minute in location_analysis: + print(f"Time: {minute['timestamp']}") + print(f"Status: {minute['status']}") + print(f"Present in: {', '.join(minute['locations'])}") + if minute['moving_locations']: + print(f"Movement in: {', '.join(minute['moving_locations'])}") + print("---") +#---------------------------------------------------------------------------------------------------- + + + + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + base_minute = ConvertToBase(time_from_str, time_zone_s) + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + +def ConvertToBase(time_from_str, time_zone_s): + print(time_from_str) + dt = datetime.datetime.strptime(time_from_str, "%Y-%m-%d %H:%M:%S%z") + return dt + +def CreateFullLocationMap(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + if scale_global and chart_type != 3 and chart_type != 4: #"digital" and chart_type != "collapsed" + + max_gate={} + for gate in range(9): + max_gate[str(gate)+"_m"] = 0 + max_gate[str(gate)+"_s"] = 0 + + device_counter = 0 + for details in devices_list: + MAC, threshold, location_name, description = details + if threshold == None: + threshold = '["s3_max",12]' + + + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + for gate in range(9): + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > max_gate[str(gate)+"_m"]): + max_gate[str(gate)+"_m"] = minute_radar_lists[minute_m][gate] + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > max_gate[str(gate)+"_s"]): + max_gate[str(gate)+"_s"] = minute_radar_lists[minute_m][gate + 7] + + + if (chart_type == 2): #"analog" + + + #fields = ['absent_min', 'stationary_max', 'moving_max', 'both_max', + #'m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + #'m6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + #'s4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max'] + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + fields_n = len(fields) + + stripes = len(devices_list) * fields_n + + device_counter = 0 + stretch_by = 5 + + arr_source = np.zeros((stripes, minutes), dtype=float) + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + + labels = [] + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_scale = 1 + label_font_color = (255, 255, 255) + label_font_thickness = 2 + label_font_line = cv2.LINE_AA + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, 10 + text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + + #device_ids = sorted(set(record[1] for record in my_data)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + if False: + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + for record in my_data: + + #(minute,device_id,absent_min,stationary_max,moving_max,both_max,m0_max,m1_max,m2_max,m3_max,m4_max, + # m5_max,m6_max,m7_max,m8_max,m08_max,s2_max,s3_max,s4_max,s5_max,s6_max,s7_max,s8_max,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the max/min values + x = int((minute - base_minute).total_seconds()/60) + device_idx = device_to_index[device_id] + + if bw: + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 255.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = [gray_value, gray_value, gray_value] + else: #color + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * 22 + field_idx + + # Convert value to grayscale (0-100 to 0-255) + gray_value = int((value / 100.0) * 1279.0) + + # Set RGB values (all same for grayscale) + wave_m[y, x] = BestColor(gray_value) + + print(time.time()-st) + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + + SaveImageInBlob(image_file, arr_stretched, labels) + #arr_source[2*gate, :] = wave_m + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_m[col] + #if sens_val != 0: + #r,g,b=BestColor(km*(sens_val-m_min)) + #if r > 255 or g > 255 or b > 255: + #print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + ##print(y, row, devices_c, sensor_index, location_index, stretch_index) + ##arr_stretched[y, :] = rgb_row + + #if gate > 1: + #ks = 0 + #if(s_max > s_min): + #if bw: + #ks = 255/(s_max - s_min) + #else: + #ks = 1280/(s_max - s_min) + ##wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + #wave_s = np.array([0.0] * 1440) + + #for minute_m in range(1440): + #wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + ##wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + ##DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + #arr_source[2*gate + 1, :] = wave_s + + #rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + #for col in range(1440): + #sens_val = wave_s[col] + #if sens_val != 0: + #if bw: + #r = ks*(sens_val-s_min) + #g = r + #b = r + #else: + #r,g,b=BestColor(ks*(sens_val-s_min)) + ##print(r,g,b) + #rgb_row[col] = r,g,b + + #for stretch_index in range(stretch_by): + #y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + #y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + #arr_stretched[y, :] = rgb_row + + print("stop") + elif (chart_type == 3): #"digital" + device_counter = 0 + for details in devices_list: + dev_id = details[0] + MAC, threshold, location_id, description = GetMacThrFromId(dev_id) + if threshold == None: + threshold = 30 + + sensor = "Radar" + location_name = location_names[location_id] + pickle_file = os.path.join(scriptDir, "scratch/"+MAC.upper() +"_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_radarM.pkl") + pickle_file = pickle_file.replace("\\","/") + #day_minutes_data = [(0,0)] * (24 * 60 + 2) + #day_minutes_data_l = [[0] * 10 for _ in range(24 * 60 + 2)] + + minute_radar_lists = ReadDailyRadar(MAC, current_date) + + y = 0 + sensor_index = 0 + + #location_index = 0 + + for gate in range(9): + threshold = 15 + if (gate > 1): + threshold = thresholds_dict[dev_id][gate-2] + + for minute_m in range(1440): + if (minute_radar_lists[minute_m][gate] > threshold): + minute_radar_lists[minute_m][gate] = 100 + else: + minute_radar_lists[minute_m][gate] = 0 + + if gate > 1: + if (minute_radar_lists[minute_m][gate + 7] > threshold): + minute_radar_lists[minute_m][gate + 7] = 100 + else: + minute_radar_lists[minute_m][gate + 7] = 0 + + m_max = 100 + m_min = 0 + s_max = 100 + s_min = 0 + + km = 0 + if(m_max > m_min): + km = 1280/(m_max - m_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_m = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_m[minute_m] = minute_radar_lists[minute_m][gate] + + if gate < 2: + DoDisplay(wave_m, location_name+" "+ description+" " + str(gate)) + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + arr_source[2*gate, :] = wave_m + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_m[col] + if sens_val != 0: + r,g,b=BestColor(km*(sens_val-m_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + 2*gate * stretch_by + stretch_index + #print(y, row, devices_c, sensor_index, location_index, stretch_index) + + #arr_stretched[y, :] = rgb_row + + if gate > 1: + ks = 0 + if(s_max > s_min): + if bw: + ks = 255/(s_max - s_min) + else: + ks = 1280/(s_max - s_min) + #wave_m = np.array([km*(item[0]-m_min) for item in minute_radar_lists[:1440][gate]]) + wave_s = np.array([0.0] * 1440) + + for minute_m in range(1440): + wave_s[minute_m] = minute_radar_lists[minute_m][gate+7] + #wave_m = np.array([item[0] for item in minute_radar_lists[:1440][gate]]) + DoDisplay2(wave_m, wave_s, location_name+" "+str(dev_id)+" "+ description+" "+ str(gate)) + arr_source[2*gate + 1, :] = wave_s + + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + + for col in range(1440): + sens_val = wave_s[col] + if sens_val != 0: + if bw: + r = ks*(sens_val-s_min) + g = r + b = r + else: + r,g,b=BestColor(ks*(sens_val-s_min)) + #print(r,g,b) + rgb_row[col] = r,g,b + + for stretch_index in range(stretch_by): + y = device_counter * (18*stretch_by) + (2*(gate) + 1) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + y = device_counter * (18*stretch_by) + (2*(gate)) * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + device_counter += 1 + print("stop") + + elif (chart_type == 4): #"collapsed" + + stretch_by = 50 + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + result_np = None + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + if result_np is not None: + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + + for minute_m in range(1440): + try: + + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + + #print("stop") + #print(r,g,b) + SaveObjectInBlob(image_file+".bin", present_at) + SaveImageInBlob(image_file, arr_stretched) + +def CreateFullLocationMapLabelsOut(location_image_file, devices_list, selected_date, + map_type, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s): + #global Id2MACDict + + thresholds_dict = {} + + stretch_to_min_max = True + devices_c = len(devices_list) + + if devices_c == 0: + return + + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + + if (chart_type == 8): #"all graphs" + + fields = ['m0_max', 'm1_max', 'm2_max', 'm3_max', 'm4_max', 'm5_max', + 'm6_max', 'm7_max', 'm8_max', 'm08_max', 's2_max', 's3_max', + 's4_max', 's5_max', 's6_max', 's7_max', 's8_max', 's28_max', 's28_min'] + + + show_radar = True + show_light = True + show_temperature = True + show_humidity = True + show_smell = True + + labels_width = 200 + title_labels_height = 40 + title_label_width = 100 + + #common + label_font = cv2.FONT_HERSHEY_SIMPLEX + label_font_line = cv2.LINE_AA + + #different + title_label_font_scale = 1 + title_label_font_color = (0, 0, 0)#(128, 255, 255) + title_label_font_thickness = 2 + + label_font_scale = 0.5 + label_font_color = (0, 0, 0)#(0, 255, 255) + label_font_thickness = 1 + + fields_n = len(fields) + + radar_stripes = len(devices_list) * fields_n + radar_stretch_by = 5 + + light_stripes = len(devices_list) + light_stretch_by = 20 + + smell_sensors_stripes = 10 * len(devices_list) + other_sensors_stripes = len(devices_list) + + temp_stripe_width = 15 + alarm_stripe_width = 5 + temperature_stretch_by = temp_stripe_width + alarm_stripe_width # Total height per device + + humidity_stripe_width = 15 + humidity_stretch_by = humidity_stripe_width + alarm_stripe_width + smell_component_stretch_by = 20 + + text_dimensions = get_text_dimensions("TEST", label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + + all_maps_height = 0 + + # radar, light, temperature, humidity, smell*10 + + if show_radar: + all_maps_height = title_labels_height + radar_stripes*radar_stretch_by + + if show_light: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*light_stretch_by + + if show_temperature: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*temperature_stretch_by + + if show_humidity: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*humidity_stretch_by + + if show_smell: + all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*smell_component_stretch_by * 10 + + + if all_maps_height == 0: + return + + vertical_offset = 0 + arr_stretched = np.full((all_maps_height, minutes+labels_width, 3), [255, 174, 70], dtype=np.uint8) + + #Lets add divider lines + x = 190 + if show_radar: + stretch_by = radar_stretch_by + cnt = 0 + for details in devices_list: + y = vertical_offset + title_labels_height + (cnt)*fields_n*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + radar_stripes*radar_stretch_by + vertical_offset = vertical_offset + section_height + if show_light: + stretch_by = light_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + + if show_temperature: + stretch_by = temperature_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*stretch_by + vertical_offset = vertical_offset + section_height + if show_humidity: + stretch_by = humidity_stretch_by + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*1*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + section_height = title_labels_height + other_sensors_stripes*humidity_stretch_by + vertical_offset = vertical_offset + section_height + if show_smell: + stretch_by = smell_component_stretch_by + + cnt = 0 + + for details in devices_list: + y = vertical_offset + title_labels_height+ (cnt)*10*stretch_by + arr_stretched[y, 190:201, :] = 0 + cnt += 1 + #section_height = title_labels_height + other_sensors_stripes**stretch_by * 10 + #vertical_offset = vertical_offset + section_height + + #all_maps_height = all_maps_height + title_labels_height + other_sensors_stripes*stretch_by * 10 + + + + + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + labels = [] + title_labels = [] + vertical_offset = 0 + ######################################## RADAR ################################################################## + if show_radar: + title_label_text = "RADAR" + fields_s = fields + stripes = radar_stripes + stretch_by = radar_stretch_by + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), vertical_offset + 10 + title_text_height), label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + cnt = 0 + for details in devices_list: + dev_id = details[0] + ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + labels.append((descriptor, (10, vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by), label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + sql = get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data != None: + + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + st = time.time() + if True: + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + wave_m = create_radar_optimized_heatmap(my_data, bw, fields_s, wave_m, device_to_index, base_minute, time_zone_s) + print(time.time()-st) + + + st = time.time() + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(radar_stretch_by): + y = yy * radar_stretch_by + stretch_index + arr_stretched[title_labels_height+y, 200:] = rgb_row + + print(time.time()-st) + vertical_offset = vertical_offset + title_labels_height + stripes*radar_stretch_by + ######################################## LIGHT ################################################################## + if show_light: + title_label_text = "LIGHT" + fields_s = ['light'] + min_val = 0 + max_val = 4095 + stretch_by = light_stretch_by + stripes = len(devices_list) * len(fields_s) # Calculate number of rows needed + # Calculate the correct vertical offset for light section + + # Draw the light section title at the correct position + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for light section + cnt = 0 + light_ids_list = [] # Create a separate list for light section + for details in devices_list: + dev_id = details[0] + light_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the light section + labels.append((descriptor, (10, vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by), + label_font, label_font_scale, label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get light data using the existing query function + sql = get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, light_ids_list) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(light_ids_list)} + + # Calculate base minute + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process light data + st = time.time() + + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + + # Use the light-specific function + wave_m = create_light_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Light heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap vertically + st = time.time() + section_start = vertical_offset + title_labels_height + + for yy in range(stripes): + rgb_row = wave_m[yy] + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + target_y = section_start + y + + # Make sure we're within bounds of the array + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = rgb_row + else: + print(f"Warning: Row {target_y} is out of bounds (max: {arr_stretched.shape[0]-1})") + + vertical_offset = vertical_offset + title_labels_height + stripes*stretch_by + print(f"Light stretching time: {time.time()-st:.4f} seconds") + + ######################################## TEMPERATURE ################################################################## + if show_temperature: + title_label_text = "TEMPERATURE" + fields_s = ['temperature', 'temperature_state'] + + # Define different stripe widths for temperature and alarm + + temp_offset = -16.0 + min_val = 20 + max_val = 30 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * temperature_stretch_by + #y_pos = vertical_offset + title_labels_height + text_height + (cnt)*len(fields_s)*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get temperature data + sql = get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, temp_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + t = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if CelsiusToFahrenheit(t) <= 50 or CelsiusToFahrenheit(t) >= 90: + alarm_level = 2 # Critical - should be red + elif CelsiusToFahrenheit(t) <= 60 or CelsiusToFahrenheit(t) >= 80: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], t, alarm_level) + + # Create the heatmap data + wave_m = create_temperature_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Temperature heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for temperature and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + temp_row = wave_m[device_idx * 2] # Temperature row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * temperature_stretch_by + + # Draw the temperature stripe (15 pixels) + for stretch_index in range(temp_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = temp_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## HUMIDITY ################################################################## + ''' + Ideal indoor humidity: 30-50% + Too dry: Below 30% - Can cause dry skin, irritated eyes, and respiratory issues + Too humid: Above 60% - Feels warmer than actual temperature, promotes mold growth + ''' + if show_humidity: + title_label_text = "HUMIDITY" + fields_s = ['humidity', 'humidity_state'] + + # Define different stripe widths for humidity and alarm + + humidity_offset = 0 + min_val = 30#40 + max_val = 60#60 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height + text_height + cnt * humidity_stretch_by + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get humidity data + sql = get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, humidity_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Process temperature data + st = time.time() + wave_m = np.zeros((stripes, 1440, 3), dtype=np.uint8) + if False: + # Simulate data for testing + for i in range(min(len(my_data), 500)): + if i >= 100: # Only modify indices 100-500 + h = (i - 100) / 4.0 # Temperature value + + # Set correct alarm levels based on temperature + if h <= 20 or h >= 60: + alarm_level = 2 # Critical - should be red + elif h <= 30 or h >= 50: + alarm_level = 1 # Warning - should be yellow + else: + alarm_level = 0 # Normal - should be green + + # Replace the tuple with new values + my_data[i] = (my_data[i][0], my_data[i][1], h, alarm_level) + + # Create the heatmap data + wave_m = create_humidity_optimized_heatmap(my_data, bw, fields_s, wave_m, + device_to_index, base_minute, time_zone_s, + min_val, max_val) + print(f"Humidity heatmap creation time: {time.time()-st:.4f} seconds") + + # Stretch the heatmap with different heights for humidity and alarm + st = time.time() + section_start = vertical_offset + title_labels_height + + # Loop through each device + for device_idx in range(len(temp_ids_list)): + # Get the data rows for this device + humidity_row = wave_m[device_idx * 2] # Humidity row (even index) + alarm_row = wave_m[device_idx * 2 + 1] # Alarm row (odd index) + + # Calculate the starting y-position for this device + device_y_start = section_start + device_idx * humidity_stretch_by + + # Draw the humidity stripe (15 pixels) + for stretch_index in range(humidity_stripe_width): + target_y = device_y_start + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = humidity_row + + # Draw the alarm stripe (5 pixels) + for stretch_index in range(alarm_stripe_width): + target_y = device_y_start + temp_stripe_width + stretch_index + if target_y < arr_stretched.shape[0]: + arr_stretched[target_y, labels_width:] = alarm_row + + print(f"Temperature stretching time: {time.time()-st:.4f} seconds") + + ######################################## SMELL ################################################################## + if show_smell: + title_label_text = "SMELL" + fields_s = ['S0', 'S1', 'S2', 'S3', 'S4', 'S5', 'S6', 'S7', 'S8', 'S9'] + + # Define different stripe widths for humidity and alarm + + smell_offset = 0 + + # Calculate the correct vertical offset for temperature section + vertical_offset = 0 + if show_radar: + vertical_offset += title_labels_height + radar_stripes * radar_stretch_by + if show_light: + vertical_offset += title_labels_height + other_sensors_stripes * light_stretch_by + if show_temperature: + vertical_offset += title_labels_height + other_sensors_stripes * temperature_stretch_by + if show_humidity: + vertical_offset += title_labels_height + other_sensors_stripes * humidity_stretch_by + + stripes = len(devices_list) * len(fields_s) # Number of rows needed in data array + + # Draw the temperature section title + title_text_dimensions = get_text_dimensions(title_label_text, label_font, title_label_font_scale, label_font_thickness) + title_text_height = title_text_dimensions["height"] + title_label_width = title_text_dimensions["width"] + title_label = (title_label_text, (int(labels_width + minutes * 0.5 - title_label_width / 2), + vertical_offset + 10 + title_text_height), + label_font, title_label_font_scale, title_label_font_color, title_label_font_thickness, label_font_line) + + title_labels.append(title_label) + + # Draw device labels for temperature section + cnt = 0 + temp_ids_list = [] # Create a separate list for temperature section + for details in devices_list: + dev_id = details[0] + temp_ids_list.append(details[1]) + descriptor = details[2] + if details[3] != None and details[3] != "": + descriptor = descriptor + " " + details[3] + if details[6] != None and details[6] != "": + descriptor = descriptor + " " + details[6] + + text_dimensions = get_text_dimensions(descriptor, label_font, label_font_scale, label_font_thickness) + text_height = text_dimensions["height"] + # Position labels in the temperature section + y_pos = vertical_offset + title_labels_height +80+ text_height + cnt * smell_component_stretch_by * 10 + #y_pos = vertical_offset + title_labels_height+40+text_height + (cnt)*fields_n*stretch_by) + labels.append((descriptor, (10, y_pos), label_font, label_font_scale, + label_font_color, label_font_thickness, label_font_line)) + cnt += 1 + + # Get smell data + sql = get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, temp_ids_list, smell_offset) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall() + + if my_data != None and len(my_data) > 0: + device_to_index = {device: idx for idx, device in enumerate(temp_ids_list)} + base_minute = ConvertToBase(time_from_str, time_zone_s) + + # Create the heatmap data + create_smell_optimized_heatmap(arr_stretched, my_data, bw, fields_s, device_to_index, base_minute, time_zone_s, smell_component_stretch_by, selected_date, vertical_offset + 18 + title_text_height) + + + + SaveImageInBlobLabelsOut(image_file, arr_stretched, labels, title_labels) + + print("stop") + + + + + +def CreateDailyLocationMap(location_image_file, devices_list, selected_date, filter_minutes, time_zone_s, stretch_by): + + devices_c = len(devices_list) + sensors_c = 1#len(sensors_table) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + image_file = location_image_file + + minutes = 1440 + + + #search_pattern = os.path.join(scriptDir, "scratch/*_"+str(current_date.year)+"_"+str(current_date.month).rjust(2, '0')+"_"+str(current_date.day)+"_*.pkl") + + #allFiles = [os.path.join(dest_path, f) for f in glob.glob(search_pattern)] + #rekreate .pckl files if missing + today_date = datetime.datetime.fromtimestamp(time.time()) + + arr_source = np.zeros((1, minutes), dtype=float) + arr_stretched = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + arr_stretched_sorted = np.zeros((int(stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + + device_counter = 0 + wave_m = [["", -1] for _ in range(1440)] + devices_list_str = ','.join(str(device[1]) for device in devices_list) + ids_list = [] + radar_fields_of_interest = [] + for details in devices_list: + threshold_str = details[5] + try: + threshold_lst = json.loads(threshold_str) + except: + threshold_lst = ["s3_max",12] + + radar_field = threshold_lst[0] + if radar_field not in radar_fields_of_interest: + radar_fields_of_interest.append(radar_field) + + threshold = threshold_lst[1] + dev_id = details[0] + ids_list.append(details[1]) + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest) + print(sql) + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + device_id_2_threshold = {} + device_id_2_location = {0: "Outside"} + row_nr_2_device_id = {} + cnt = 0 + row_nr_2_device_id[0] = 0 + for details in devices_list: + + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + + cnt += 1 + row_nr_2_device_id[cnt] = device_id + + if radar_threshold_group_st == None: + radar_threshold_group_st = '["s3_max",12]' #last value is threshold to s28 composite + + if len(radar_threshold_group_st) > 8: + radar_threshold_group = json.loads(radar_threshold_group_st) + else: + radar_threshold_group = ["s3_max",12] + + device_id_2_location[device_id] = location_name + + device_id_2_threshold[device_id] = radar_threshold_group + + target_tz = pytz.timezone(time_zone_s) + st = time.time() + + #each record in my_data has time, device_id and radar_fields_of_interest in it + + try: + result_np = process_wave_data_numpy(image_file, my_data, time_zone_s, device_id_2_threshold, radar_fields_of_interest) + print(time.time() - st) + except Exception as err: + print(str(err)) + + if False: + for record in my_data: + time_val, device_id, min_val, max_val = record + radar_threshold = device_id_2_threshold[device_id] + local_time = time_val.astimezone(target_tz) + minute_m = int((local_time - local_time.replace(hour=0, minute=0, second=0, microsecond=0)).total_seconds() / 60) + + if (wave_m[minute_m][0] == ""): + if max_val > radar_threshold: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + else: + if max_val > radar_threshold: + if max_val > wave_m[minute_m][1]: + wave_m[minute_m][0] = device_id + wave_m[minute_m][1] = max_val + + + + print(time.time()-st) + wave_m = result_np + rgb_row = np.zeros(( 1440, 3), dtype=np.uint8) + rgbsorted_row = np.zeros(( 1440, 3), dtype=np.uint8) + #wave_m = FilterGlitches(wave_m, filter_minutes) + r = 0 + g = 0 + b = 0 + + presence_minutes = {} + + #we want to generate present_at array + if isinstance(wave_m[0], np.int64): + inital_device_id = row_nr_2_device_id[wave_m[0]] + else: + inital_device_id = 0 + present_at = [[inital_device_id, 0, 1]] #device_id, minute, duration + for minute_m in range(1440): + try: + if isinstance(wave_m[minute_m], np.int64): + device_id = row_nr_2_device_id[wave_m[minute_m]] + else: + device_id = 0 + + if device_id != "" and device_id != -1: + r,g,b = Loc2Color[device_id_2_location[device_id]][0] + rgb_row[minute_m] = b,g,r + + if Loc2Color[device_id_2_location[device_id]][1] in presence_minutes: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [presence_minutes[Loc2Color[device_id_2_location[device_id]][1]][0] + 1, Loc2Color[device_id_2_location[device_id]][0]] + else: + presence_minutes[Loc2Color[device_id_2_location[device_id]][1]] = [1, Loc2Color[device_id_2_location[device_id]][0]] + + if minute_m > 0: + if present_at[-1][0] != device_id: + present_at.append([device_id, minute_m, 1]) + else: + present_at[-1][2] += 1 + + except Exception as err: + print(str(err)) + + start_minute = 0 + for color_key in sorted(presence_minutes): + print(color_key, presence_minutes[color_key]) + rgbsorted_row[start_minute:start_minute+presence_minutes[color_key][0]] = presence_minutes[color_key][1][::-1] + start_minute += presence_minutes[color_key][0] + + #we need to save present_at list to blob + SaveObjectInBlob(image_file+".bin", present_at) + #present_at_back_s = ReadObjectMinIO("daily-maps", image_file+".bin") + #present_at_back = json.loads(present_at_back_s) + #print(present_at_back) + for stretch_index in range(stretch_by): + y = stretch_index + arr_stretched[y, :] = rgb_row + arr_stretched_sorted[y, :] = rgbsorted_row + #print("stop") + #print(r,g,b) + SaveImageInBlob(image_file, arr_stretched) + SaveImageInBlob(image_file[:-4]+"S.png", arr_stretched_sorted) + + +def GenerateFullLocationMap(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMap(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def GenerateFullLocationMapLabelsOut(map_file, deployment_id, ddate, recreate_or_not, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes = 5): + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreateFullLocationMapLabelsOut(map_file, devices_list, ddate, 1, recreate_or_not, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + +def CreateMapFast(map_file, devices_list, selected_date, bw, time_zone_s, radar_part, group_by): + global Id2MACDict + + st = time.time() + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return False, [] + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return False, [] + + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + image_file = map_file + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + temp_offset = -16 + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + print(sql) + #print(sql) + #st = time.time() + print(f"@1 ----{time.time() - st}") + with get_db_connection() as conn: + print(f"@1a ----{time.time() - st}") + with conn.cursor() as cur: + print(f"@1b ----{time.time() - st}") + cur.execute(sql) + day_data = cur.fetchall()#cur.fetchone() + #print(result) + if day_data == None: + print(f"@1c ----{time.time() - st}") + return False, [] + print(f"@2 ----{time.time() - st}") + + stretch_by = 10 + minutes = 1440 + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + print(f"@3 ----{time.time() - st}") + st = time.time() + arr_stretched_template = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) # 3 for RGB channels + print(f"@4a ----{time.time() - st}") + #st = time.time() + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4b ----{time.time() - st}") + #st = time.time() + #arr_source = fast_fill_array_from_timescale_bad(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #print(f"@4n ----{time.time() - st}") + st = time.time() + arr_source = fast_fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #arr_source = fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + print(f"@5 ----{time.time() - st}") + arr_source = AddLimits_optimized(arr_source, devices_c, sensors_c, percentile=100) + print(f"@6 ----{time.time() - st}") + scaled_day = CalcExtremes(arr_source, minutes, stripes) + print(f"@7 ----{time.time() - st}") + arr_stretched, vocs_scaled = FillImage_optimized(scaled_day, devices_c, sensors_c, arr_stretched_template, group_by, bw) + print(f"@8 ----{time.time() - st}") + SaveImageInBlob(image_file, arr_stretched) + print(f"@9 ----{time.time() - st}") + return True, vocs_scaled + + except Exception as e: + AddToLog(traceback.format_exc()) + return False, [] + +def get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + radar_part (str): Radar column name, defaults to 'radar' + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+ {temp_offset} as avg_temperature, + sr.avg_humidity, + sr.pressure_amplitude, + sr.max_light, + rr.radar, + sr.min_s0 as sensor_min_s0, + sr.min_s1 as sensor_min_s1, + sr.min_s2 as sensor_min_s2, + sr.min_s3 as sensor_min_s3, + sr.min_s4 as sensor_min_s4, + sr.min_s5 as sensor_min_s5, + sr.min_s6 as sensor_min_s6, + sr.min_s7 as sensor_min_s7, + sr.min_s8 as sensor_min_s8, + sr.min_s9 as sensor_min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS pressure_amplitude, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX({radar_part}) AS radar + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_deployment_radar_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def get_device_radar_s28_only_query(time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + +def get_device_radar_only_query(devices_list_str, time_from_str, time_to_str, device_id): + sql = f""" + SELECT + time, + (s2+s3+s4+s5+s6+s7+s8)/7 AS s28, + (m2+m3+m4+m5+m6+m7+m8)/7 AS m28 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + ORDER BY + time ASC + """ + return sql + + +def get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_fields_of_interest): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + radar_fields_to_get = "" + q_parts = "" + for field in radar_fields_of_interest: + if field == "s28_min": + q_part = "MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min" + elif field == "s28_max": + q_part = "MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max" + elif field == "m08_max": + q_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max" + elif field == "s2_max": + q_part = "MAX(s2) AS s2_max" + elif field == "s3_max": + q_part = "MAX(s3) AS s3_max" + elif field == "s4_max": + q_part = "MAX(s4) AS s4_max" + elif field == "s5_max": + q_part = "MAX(s5) AS s5_max" + elif field == "s6_max": + q_part = "MAX(s6) AS s6_max" + elif field == "s7_max": + q_part = "MAX(s7) AS s7_max" + elif field == "s8_max": + q_part = "MAX(s8) AS s8_max" + elif field == "m0_max": + q_part = "MAX(m0) AS m0_max" + elif field == "m1_max": + q_part = "MAX(m1) AS m1_max" + elif field == "m2_max": + q_part = "MAX(m2) AS m2_max" + elif field == "m3_max": + q_part = "MAX(m3) AS m3_max" + elif field == "m4_max": + q_part = "MAX(m4) AS m4_max" + elif field == "m5_max": + q_part = "MAX(m5) AS m5_max" + elif field == "m6_max": + q_part = "MAX(m6) AS m6_max" + elif field == "m7_max": + q_part = "MAX(m7) AS m7_max" + elif field == "m8_max": + q_part = "MAX(m8) AS m8_max" + else: + q_part = field + + if q_parts == "": + q_parts = q_part + else: + q_parts = q_parts + ", " + q_part + if radar_fields_to_get == "": + radar_fields_to_get = field + else: + radar_fields_to_get = radar_fields_to_get + ", " + field + sql = f""" + SELECT + minute, + device_id, + {radar_fields_to_get} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {q_parts} + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_radar_only_detailed_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max, + s28_min + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max, + MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_min + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_light_only_query(devices_list_str, time_from_str, time_to_str, ids_list): + #light detailed + """ + Generate a TimeScaleDB query for light readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + light_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX(light) AS light_max + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_temperature_only_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for temperature readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with temperature and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + temperature_avg, + CASE + WHEN (temperature_avg * 9/5 + 32) <= 50 OR (temperature_avg * 9/5 + 32) >= 90 THEN 2 + WHEN (temperature_avg * 9/5 + 32) <= 60 OR (temperature_avg * 9/5 + 32) >= 80 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature)+{temp_offset} AS temperature_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_humidity_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for humidity readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with humidity and alarm level + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + col_expr = f"2.3592 * AVG(humidity) + 23.5546" #= 2.3592 * J2 + 33.5546 + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + humidity_avg, + CASE + WHEN humidity_avg <= 20 OR humidity_avg >= 60 THEN 2 + WHEN humidity_avg <= 30 OR humidity_avg >= 50 THEN 1 + ELSE 0 + END AS alarm_level + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + {col_expr} AS humidity_avg + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + +def get_deployment_smell_only_query(devices_list_str, time_from_str, time_to_str, ids_list, humidity_offset): + """ + Generate a TimeScaleDB query for smell readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + temp_offset (float): Temperature offset to apply + + Returns: + str: Generated SQL query with smell components + """ + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + case_order = "\n ".join(case_statements) + + # SQL query with added alarm_level calculation + sql = f""" + SELECT + minute, + device_id, + min_s0, + min_s1, + min_s2, + min_s3, + min_s4, + min_s5, + min_s6, + min_s7, + min_s8, + min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql + + +def get_deployment_radar_only_detailed_all_query(devices_list_str, time_from_str, time_to_str, ids_list): + #radar detailed + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + This is looking for presence, NOT absence... othervise all MAXes need to be converted to MINs + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + minute, + device_id, + absent_min, + stationary_max, + moving_max, + both_max, + m0_max, + m1_max, + m2_max, + m3_max, + m4_max, + m5_max, + m6_max, + m7_max, + m8_max, + m08_max, + s2_max, + s3_max, + s4_max, + s5_max, + s6_max, + s7_max, + s8_max, + s28_max + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MIN(absent) AS absent_min, + MAX(stationary) AS stationary_max, + MAX(moving) AS moving_max, + MAX("both") AS both_max, + MAX(m0) AS m0_max, + MAX(m1) AS m1_max, + MAX(m2) AS m2_max, + MAX(m3) AS m3_max, + MAX(m4) AS m4_max, + MAX(m5) AS m5_max, + MAX(m6) AS m6_max, + MAX(m7) AS m7_max, + MAX(m8) AS m8_max, + MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/9) AS m08_max, + MAX(s2) AS s2_max, + MAX(s3) AS s3_max, + MAX(s4) AS s4_max, + MAX(s5) AS s5_max, + MAX(s6) AS s6_max, + MAX(s7) AS s7_max, + MAX(s8) AS s8_max, + MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS s28_max + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + + ORDER BY + CASE device_id + {case_order} + END, + minute + """ + return sql +def get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset): + """ + Generate a TimeScaleDB query for sensor and radar readings based on device IDs. + + Parameters: + devices_list_str (str): Comma-separated string of device IDs + time_from_str (str): Start time for the query + time_to_str (str): End time for the query + ids_list (list): List of device IDs in priority order for sorting + + Returns: + str: Generated SQL query + """ + + # Generate the CASE statement for ordering based on the provided ids_list + case_statements = [] + for index, device_id in enumerate(ids_list, start=1): + case_statements.append(f"WHEN {device_id} THEN {index}") + + case_order = "\n ".join(case_statements) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature+{temp_offset} as avg_temperature, + sr.avg_humidity, + sr.avg_pressure, + sr.max_light, + sr.min_s0 as smell_s0, + sr.min_s1 as smell_s1, + sr.min_s2 as smell_s2, + sr.min_s3 as smell_s3, + sr.min_s4 as smell_s4, + sr.min_s5 as smell_s5, + sr.min_s6 as smell_s6, + sr.min_s7 as smell_s7, + sr.min_s8 as smell_s8, + sr.min_s9 as smell_s9, + rr.absent as radar_absent, + rr.moving as radar_moving, + rr.stationary as radar_stationary, + rr.both as radar_both, + rr.m0 as radar_m0, + rr.m1 as radar_m1, + rr.m2 as radar_m2, + rr.m3 as radar_m3, + rr.m4 as radar_m4, + rr.m5 as radar_m5, + rr.m6 as radar_m6, + rr.m7 as radar_m7, + rr.m8 as radar_m8, + rr.s2 as radar_s2, + rr.s3 as radar_s3, + rr.s4 as radar_s4, + rr.s5 as radar_s5, + rr.s6 as radar_s6, + rr.s7 as radar_s7, + rr.s8 as radar_s8 + FROM ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS avg_pressure, + MAX(light) AS max_light, + MIN(CASE WHEN s0 > 0 THEN s0 END) AS min_s0, + MIN(CASE WHEN s1 > 0 THEN s1 END) AS min_s1, + MIN(CASE WHEN s2 > 0 THEN s2 END) AS min_s2, + MIN(CASE WHEN s3 > 0 THEN s3 END) AS min_s3, + MIN(CASE WHEN s4 > 0 THEN s4 END) AS min_s4, + MIN(CASE WHEN s5 > 0 THEN s5 END) AS min_s5, + MIN(CASE WHEN s6 > 0 THEN s6 END) AS min_s6, + MIN(CASE WHEN s7 > 0 THEN s7 END) AS min_s7, + MIN(CASE WHEN s8 > 0 THEN s8 END) AS min_s8, + MIN(CASE WHEN s9 > 0 THEN s9 END) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('10 seconds', time) AS minute, + device_id, + MAX(absent) AS absent, + MAX(moving) AS moving, + MAX(stationary) AS stationary, + MAX(\"both\") AS both, + MAX(m0) AS m0, + MAX(m1) AS m1, + MAX(m2) AS m2, + MAX(m3) AS m3, + MAX(m4) AS m4, + MAX(m5) AS m5, + MAX(m6) AS m6, + MAX(m7) AS m7, + MAX(m8) AS m8, + MAX(s2) AS s2, + MAX(s3) AS s3, + MAX(s4) AS s4, + MAX(s5) AS s5, + MAX(s6) AS s6, + MAX(s7) AS s7, + MAX(s8) AS s8 + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + {case_order} + END, + COALESCE(sr.minute, rr.minute); + """ + return sql + +def export_query_to_minio_chunked(connection_params, query, minio_client, bucket_name, blob_name=None, chunksize=10000): + """ + Export query results to MinIO as CSV in chunks to handle large datasets + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + minio_client: Initialized MinIO client + bucket_name (str): Name of the MinIO bucket + blob_name (str): Name for the blob in MinIO. If None, generates timestamped name + chunksize (int): Number of rows to process at a time + + Returns: + str: Name of the created blob + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate blob name if not provided + if blob_name is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + blob_name = f'query_results_{timestamp}.csv' + + # Create a buffer to store CSV data + csv_buffer = io.StringIO() + + # Stream the query results in chunks + first_chunk = True + for chunk_df in pd.read_sql_query(query, conn, chunksize=chunksize): + # Write header only for the first chunk + chunk_df.to_csv( + csv_buffer, + index=False, + header=first_chunk, + mode='a' + ) + first_chunk = False + + # Get the CSV data as bytes + csv_buffer.seek(0) + csv_bytes = csv_buffer.getvalue().encode('utf-8') + + # Upload to MinIO + minio_client.put_object( + bucket_name, + blob_name, + io.BytesIO(csv_bytes), + len(csv_bytes) + ) + + print(f"Data exported successfully to MinIO: {bucket_name}/{blob_name}") + return blob_name + + except Exception as e: + print(f"Error exporting data: {str(e)}") + print(f"Traceback: {traceback.format_exc()}") + raise + + finally: + if 'conn' in locals(): + conn.close() + if 'csv_buffer' in locals(): + csv_buffer.close() + +def export_query_to_csv_pandas(connection_params, query, output_path=None): + """ + Export query results to CSV using pandas with psycopg2 connection + + Parameters: + connection_params (dict): Database connection parameters + query (str): SQL query to execute + output_path (str): Path for output CSV file. If None, generates timestamped filename + + Returns: + str: Path to the created CSV file + """ + try: + # Create direct connection using psycopg2 + conn = psycopg2.connect(**connection_params) + + # Generate output path if not provided + if output_path is None: + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + output_path = f'query_results_{timestamp}.csv' + + # Read query directly into DataFrame using the psycopg2 connection + df = pd.read_sql_query(query, conn) + + # Export to CSV with all headers + df.to_csv(output_path, index=False) + print(f"Data exported successfully to {output_path}") + return output_path + + except Exception as e: + print(f"Error exporting data: {str(e)}") + raise + + finally: + if 'conn' in locals(): + conn.close() + + +def CreateDailyCSV(csv_file, devices_list, selected_date, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset): + global Id2MACDict + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + ids_list = [] + for details in devices_list[0]: + dev_id = details[0] + ids_list.append(details[1]) + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return "" + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return "" + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + if consolidated_by == "by_minute_rc": + sql = get_deployment_query(devices_list_str, time_from_str, time_to_str, ids_list, radar_part, temp_offset) + elif consolidated_by == "by_deca_rd": + sql = get_deployment_deca_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + elif consolidated_by == "by_minute_rd": + sql = get_deployment_rd_query(devices_list_str, time_from_str, time_to_str, ids_list, temp_offset) + + print(sql) + + connection_params = { + 'host': DB_HOST, + 'database': DB_NAME, + 'user': DB_USER, + 'password': DB_PASSWORD, + 'port': DB_PORT + } + + # Using pandas approach (recommended) + output_file = export_query_to_minio_chunked( + connection_params, + sql, + miniIO_blob_client, + "data-downloads", + csv_file, + chunksize=10000 + ) + return output_file + except Exception as e: + logging.error(str(traceback.format_exc())) + return "" + +def GetBlob(file_name, bucket_name="daily-maps"): + """ + Retrieve image from blob storage + + Args: + file_name (str): Name of the file to retrieve from blob storage + + Returns: + tuple: (image_bytes, content_type) + Returns None, None if image not found or error occurs + """ + logger.debug(f"GetBlob({file_name})") + try: + # Get the object from blob storage + data = miniIO_blob_client.get_object( + bucket_name, + file_name + ) + + # Read the data into bytes + data_bytes = data.read() + #logger.debug(f"len(data_bytes)={len(data_bytes)}") + + if bucket_name == "daily-maps": + return data_bytes, 'image/png' + else: + return data_bytes, 'application/zip' + + except Exception as e: + logger.error(f"Error: {traceback.format_exc()}") + return None, None + + +def MapFileToDate(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = map_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def CSVFileToDate(csv_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = csv_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def GetMACsListSimple(list_of_lists): + + result = [] + if len(list_of_lists) > 0: + result = [sublist[3] for sublist in list_of_lists] + + return(result) + +def datetime_handler(obj): + """Handle datetime serialization for JSON""" + if isinstance(obj, datetime.datetime): + if obj.tzinfo: + return obj.isoformat() + return obj.strftime('%Y-%m-%d %H:%M:%S.%f') + raise TypeError(f"Object of type {type(obj)} is not JSON serializable") + +def ReadCandles(file, sensor, period, time_from, time_to): + result = [] + if sensor == "voc0": + sqlr = "SELECT * from vocs_0"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc1": + sqlr = "SELECT * from vocs_1"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc2": + sqlr = "SELECT * from vocs_2"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc3": + sqlr = "SELECT * from vocs_3"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc4": + sqlr = "SELECT * from vocs_4"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc5": + sqlr = "SELECT * from vocs_5"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc6": + sqlr = "SELECT * from vocs_6"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc7": + sqlr = "SELECT * from vocs_7"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc8": + sqlr = "SELECT * from vocs_8"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc9": + sqlr = "SELECT * from vocs_9"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + else: + sqlr = "SELECT * from "+sensor+"s"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + logger.debug(f"sqlr = {sqlr}") + + with get_db_connection() as conn: + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + result = QuerrySql(file, sqlr) + return result + +def ReadSensor(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + result = [] + if sensor == "radar": + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + elif sensor[0] == "s": + sqlr = f"SELECT time, {sensor} AS smell FROM sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "temperature": + sqlr = f"SELECT time, {sensor} - 16 from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + sqlr = f"SELECT time, {sensor} from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadSensor3(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part, bucket_size="no"): + import datetime + from datetime import timezone + + # Convert epoch to datetime and format as ISO 8601 strings with timezone + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + # If bucket_size is provided (i.e. not "no"), then use time bucketing. + use_bucket = bucket_size != "no" + if use_bucket: + # Map the shorthand bucket sizes to PostgreSQL interval strings. + mapping = { + "10s": "10 seconds", + "1m": "1 minute", + "5m": "5 minutes", + "10m": "10 minutes", + "15m": "15 minutes", + "30m": "30 minutes", + "1h": "1 hour" + } + bucket_interval = mapping.get(bucket_size, bucket_size) + + avgmax = "AVG" + # Build the SQL query based on sensor type. + if sensor == "radar": + # For radar sensors, a special aggregation is needed. + avgmax = "MAX" + if radar_part == "s28": + radar_expr = "(s2+s3+s4+s5+s6+s7+s8)/7" + else: + radar_expr = radar_part + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({radar_expr}) AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {radar_expr} AS radar + FROM radar_readings + WHERE device_id = {device_id} + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor[0] == "s": + # For sensors whose name starts with "s" (for example, smell sensors) + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({sensor}) AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {sensor} AS smell + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "co2": + alias = sensor + sensor = "s4" + sqlr = f""" + WITH s4_values AS ( + SELECT s4 + FROM public.sensor_readings + WHERE device_id = 559 + AND s4 IS NOT NULL + ), + s4_percentile AS ( + SELECT percentile_cont(0.25) WITHIN GROUP (ORDER BY s4 DESC) AS s4_25_percentile + FROM s4_values + ) + SELECT s4_25_percentile + FROM s4_percentile; + """ + co2_max = 22536000#102400000 + co2_min = 2400000#16825674 #387585 + + real_co2_max = 2000 + real_co2_min = 430 + + + #logger.debug(f"sqlr = {sqlr}") + #with get_db_connection() as conn: + #with conn.cursor() as cur: + #cur.execute(sqlr) + #result = cur.fetchall() + #co2_max = result[0][0] + #co2_min = result[0][1] + #=E17+E20*(102400000-A24)/B18 + #col_expr = f"{real_co2_min}+({real_co2_max}-{real_co2_min})*(102400000-{sensor})/({co2_min}-{co2_max})" + col_expr = f"GREATEST({real_co2_min},{real_co2_min}+({real_co2_max}-{real_co2_min})*({co2_max}-percentile_cont(0.5) WITHIN GROUP (ORDER BY {sensor}))/({co2_max}-{co2_min}))" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + ({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "voc": + sensor = "s9" + alias = sensor + col_expr = f"{sensor} - 0" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + elif sensor == "humidity": + alias = sensor + col_expr = f"2.3592 * {sensor} + 32.5546" #= 2.3592 * J2 + 33.5546 + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + else: + # For other sensors (including temperature, which requires a subtraction) + alias = sensor + col_expr = sensor + if sensor == "temperature": + col_expr = f"{sensor} - 16" + alias = "temperature" + elif sensor == "light": + avgmax = "MAX" + + if use_bucket: + sqlr = f""" + SELECT time_bucket('{bucket_interval}', time) AS time, + {avgmax}({col_expr}) AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + GROUP BY time_bucket('{bucket_interval}', time) + ORDER BY time ASC; + """ + else: + sqlr = f""" + SELECT time, {col_expr} AS {alias} + FROM sensor_readings + WHERE device_id = {device_id} + AND {sensor} >= '{legal_min}' + AND {sensor} <= '{legal_max}' + AND time >= '{time_from_str}' + AND time <= '{time_to_str}' + ORDER BY time ASC; + """ + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def ReadRadarDetail(device_id, sensor, time_from_epoch, time_to_epoch, alt_key_state): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + #sensor_index = int(sensor_index) + + + result = [] + + #time_period_sec can be "10" (RAW) or "60" + if alt_key_state == "1": #"RAW = 10 sec" + radar_part = sensor + if sensor == "m08_max": + radar_part = "(m0+m1+m2+m3+m4+m5+m6+m7+m8)/9" + elif sensor == "s28_max" or sensor == "s28_min": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "m08_max": + radar_part = "MAX((m0+m1+m2+m3+m4+m5+m6+m7+m8)/7) AS m08_max" + elif sensor == "s28_max": + radar_part = f"MAX((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + elif sensor == "s28_min": + radar_part = f"MIN((s2+s3+s4+s5+s6+s7+s8)/7) AS {sensor}" + else: + radar_part = f"MAX({sensor}) AS {sensor}" + + sqlr = f""" + SELECT + minute, + {sensor} as {sensor} + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + {radar_part} + FROM + radar_readings + WHERE + device_id = {device_id} + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute + ) rr + + ORDER BY + minute + """ + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def check_and_parse(data_str): + # Remove whitespace to handle cases with spaces + cleaned = data_str.strip() + # Check if second character is '[' + is_list_of_lists = cleaned[1] == '[' + if cleaned[0] == '[': + # Parse the string regardless of type + parsed = json.loads(cleaned) + else: + parsed = cleaned.split(",") + return is_list_of_lists, parsed + +def clean_data_with_rolling_spline(line_part_t, window=5, threshold=2.0): + """ + Filter outliers using rolling median and replace with spline interpolation + Returns data in the same format as input: [(timestamp, value), ...] + """ + # Unzip the input tuples + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) # explicitly convert to float + + # Calculate rolling median and MAD using a safer approach + rolling_median = [] + rolling_mad = [] + + for i in range(len(y)): + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Skip if window is empty or contains invalid values + if len(window_values) == 0 or np.any(np.isnan(window_values)): + rolling_median.append(y[i]) + rolling_mad.append(0) + continue + + med = np.median(window_values) + mad = np.median(np.abs(window_values - med)) + + rolling_median.append(med) + rolling_mad.append(mad) + + rolling_median = np.array(rolling_median) + rolling_mad = np.array(rolling_mad) + + # Identify outliers (protect against division by zero) + outlier_mask = np.abs(y - rolling_median) > threshold * (rolling_mad + 1e-10) + good_data_mask = ~outlier_mask + + if np.sum(good_data_mask) < 4: + return line_part_t # return original data if we can't interpolate + + try: + # Create and apply spline + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 + ) + + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + except Exception as e: + print(f"Spline interpolation failed: {e}") + return line_part_t + + # Return in the same format as input + return list(zip(x, y_cleaned)) + +def DatesSpan(date_from: str, date_to: str) -> list: + """ + Generate a list of dates between date_from and date_to (inclusive). + Handles cases where date_from is later than date_to. + + Args: + date_from (str): Start date in 'YYYY-MM-DD' format + date_to (str): End date in 'YYYY-MM-DD' format + + Returns: + list: List of dates in 'YYYY-MM-DD' format + """ + # Convert string dates to datetime objects + start_date = datetime.datetime.strptime(date_from, '%Y-%m-%d') + end_date = datetime.datetime.strptime(date_to, '%Y-%m-%d') + + # Determine direction and swap dates if necessary + if start_date > end_date: + start_date, end_date = end_date, start_date + + # Generate list of dates + dates_list = [] + current_date = start_date + + while current_date <= end_date: + dates_list.append(current_date.strftime('%Y-%m-%d')) + current_date += timedelta(days=1) + + # Reverse the list if original date_from was later than date_to + #if datetime.datetime.strptime(date_from, '%Y-%m-%d') > datetime.datetime.strptime(date_to, '%Y-%m-%d'): + # dates_list.reverse() + + return dates_list + +def zip_blobs(blob_paths, zip_blob_name, bucket_name, minio_client=None): + """ + Zip multiple blobs from MinIO storage into a single zip file without saving locally. + + Args: + blob_paths (list): List of blob paths to zip + zip_blob_name (str): Name/path for the output zip file in MinIO + bucket_name (str): MinIO bucket name + minio_client (Minio, optional): Existing MinIO client instance + + Returns: + bool: True if successful, False otherwise + """ + try: + # Create zip file in memory + zip_buffer = BytesIO() + + with zipfile.ZipFile(zip_buffer, 'w', zipfile.ZIP_DEFLATED) as zip_file: + # Process each blob + for blob_path in blob_paths: + # Get file name from path for zip entry + file_name = blob_path.split('/')[-1] + + # Get blob data into memory + data = minio_client.get_object(bucket_name, blob_path.lstrip('/')) + + # Add file to zip + zip_file.writestr(file_name, data.read()) + + # Close the object to free memory + data.close() + + # Seek to start of zip file + zip_buffer.seek(0) + + # Upload zip file to MinIO + minio_client.put_object( + bucket_name, + zip_blob_name.lstrip('/'), + zip_buffer, + length=zip_buffer.getbuffer().nbytes + ) + + return True + + except Exception as e: + print(f"Error creating zip file: {str(e)}") + return False + finally: + # Clean up + zip_buffer.close() + +def clean_data_with_spline(x, y, threshold=2.0): + """ + Filter outliers and replace with spline interpolation + + Parameters: + x : array-like, timestamps or x-coordinates + y : array-like, values to be filtered + threshold : float, number of median absolute deviations for outlier detection + + Returns: + array-like : cleaned data with outliers replaced by spline interpolation + """ + # Convert inputs to numpy arrays + x = np.array(x) + y = np.array(y) + + # Calculate median and median absolute deviation + median = np.median(y) + mad = stats.median_abs_deviation(y) + + # Identify outliers + outlier_mask = np.abs(y - median) > threshold * mad + good_data_mask = ~outlier_mask + + # If we have too few good points for interpolation, adjust threshold + min_points_needed = 4 # minimum points needed for cubic spline + if np.sum(good_data_mask) < min_points_needed: + return y # return original data if we can't interpolate + + # Create spline with non-outlier data + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 # cubic spline + ) + + # Replace outliers with interpolated values + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + + return y_cleaned + +def clean_data(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + cleaned_data = [] + + for i in range(len(y)): + # Get window around current point + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Calculate median and MAD for the window + window_median = np.median(window_values) + deviation = abs(y[i] - window_median) + + # Keep point if it's not too far from window median + if deviation <= threshold * window_median: + cleaned_data.append((x[i], y[i])) + #else: + #print(window_values) + return cleaned_data + +def clean_data_fast(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison - vectorized version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + # Calculate rolling median using numpy + half_window = window // 2 + medians = np.array([ + np.median(y[max(0, i-half_window):min(len(y), i+half_window+1)]) + for i in range(len(y)) + ]) + + # Calculate deviations for all points at once + deviations = np.abs(y - medians) + + # Create mask for good points + good_points = deviations <= threshold * medians + + # Return filtered data using boolean indexing + return list(zip(x[good_points], y[good_points])) + +def clean_data_pd(line_part_t, window=5, percentile=99): + """ + Remove obvious outliers based on window comparison - pandas version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + #line_part_t = line_part_t[2000:2100] + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + + # Create pandas Series and calculate rolling median + series = pd.Series(y) + medians = series.rolling(window=window, center=True, min_periods=1).median() + + # Calculate deviations + deviations = np.abs(series - medians) + + largest_deviations = deviations.nlargest(10) + #print(largest_deviations) + + # Create mask for good points + deviation_threshold = np.percentile(deviations, percentile) + good_points = deviations <= deviation_threshold + + # Convert back to numpy arrays for filtering + x = np.array(x) + y = np.array(y) + + # Return filtered data + return list(zip(x[good_points], y[good_points])) + +def CombineStripes(result_filename, stripes_files): + try: + # Open the first image to get the width and initialize the height + first_image = Image.open(stripes_files[0]) + width, height = first_image.size + + # Calculate the total height of the combined image + total_height = height * len(stripes_files) + + # Create a new blank image with the same width and the calculated height + result_image = Image.new('RGB', (width, total_height)) + + # Paste each image onto the result image vertically + y_offset = 0 + for file_name in stripes_files: + image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + y_offset += height + + # Save the result image + result_image.save(result_filename) + + # Return success flag + return True + + except Exception as e: + print("Error:", e) + return False + +def FindFirstLocalMinimum(counts, bins): + """ + Find the first local minimum in a histogram after the main peak and calculate its offset. + + Parameters: + hist: tuple of (counts, bin_edges) from np.histogram() + The histogram data to analyze + + Returns: + tuple: (TR, THR_OFFSET) + TR: float, the bin value (position) of the first local minimum after the main peak + THR_OFFSET: int, number of bins between the global maximum and the local minimum + """ + + # Find the main peak (global maximum) + main_peak_idx = np.argmax(counts) + + # Look for the first local minimum after the main peak + for i in range(main_peak_idx + 1, len(counts) - 1): + # Check if current point is less than or equal to both neighbors + if counts[i] <= counts[i-1] and counts[i] <= counts[i+1]: + # Calculate the bin center value for TR + TR = (bins[i] + bins[i+1]) / 2 + # Calculate offset from main peak in number of bins + THR_OFFSET = (bins[i] + bins[i+1]) / 2 - (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + return (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2, TR, THR_OFFSET + + # If no local minimum is found, return None for both values + return None, None + +def process_raw_data(data_tuples): + """ + Convert list of (timestamp, stationary, motion) tuples to separate arrays + + Parameters: + ----------- + data_tuples : list of tuples + Each tuple contains (datetime, stationary_value, motion_value) + + Returns: + -------- + timestamps : array of datetime + stationary : array of float + motion : array of float + """ + timestamps = np.array([t[0] for t in data_tuples]) + stationary = np.array([t[1] for t in data_tuples]) + motion = np.array([t[2] for t in data_tuples]) + + return timestamps, stationary, motion + +def rolling_std_fast(arr, window_size): + """ + Fast calculation of rolling standard deviation using NumPy's stride tricks. + + Parameters: + ----------- + arr : numpy array + Input array + window_size : int + Size of rolling window + + Returns: + -------- + numpy array + Rolling standard deviation + """ + # Compute rolling sum of squares + r = np.array(arr, dtype=float) + r2 = np.array(arr, dtype=float) ** 2 + + # Calculate cumulative sums + cum = np.cumsum(np.insert(r, 0, 0)) + cum2 = np.cumsum(np.insert(r2, 0, 0)) + + # Get rolling windows + x = (cum[window_size:] - cum[:-window_size]) + x2 = (cum2[window_size:] - cum2[:-window_size]) + + # Calculate standard deviation + n = window_size + return np.sqrt((x2/n) - (x/n) ** 2) + +def detect_presence(timestamps, stationary_signal, motion_signal, window_size=100, + motion_threshold=5, gmm_components=2): + """ + Detect presence using both stationary and motion signals with adaptive thresholding. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal (0-100) + motion_signal : array-like + Time series of motion signal (0-100) + window_size : int + Size of rolling window for statistics (used only for temporal smoothing) + motion_threshold : float + Threshold for significant motion + gmm_components : int + Number of components for Gaussian Mixture Model + + Returns: + -------- + presence_mask : numpy array + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + """ + + # Convert inputs to numpy arrays + stationary_signal = np.array(stationary_signal) + motion_signal = np.array(motion_signal) + + # 1. Fit Gaussian Mixture Model to stationary signal + gmm = GaussianMixture(n_components=gmm_components, random_state=42) + X = stationary_signal.reshape(-1, 1) + gmm.fit(X) + + # Get the component with lowest mean as baseline + baseline = min(gmm.means_)[0] + + # 2. Calculate adaptive threshold using GMM components + components_sorted = sorted(zip(gmm.means_.flatten(), gmm.covariances_.flatten())) + baseline_std = np.sqrt(components_sorted[0][1]) + threshold = baseline + 3 * baseline_std # 3 sigma rule + + # 3. Combine motion and stationary detection + presence_mask = np.zeros(len(stationary_signal), dtype=bool) + + # Vectorized operations instead of loop + presence_mask = (motion_signal > motion_threshold) | (stationary_signal > threshold) + + # 4. Apply temporal smoothing to reduce false transitions + smooth_window = min(window_size // 4, 10) # Smaller window for smoothing + presence_mask = np.convolve(presence_mask.astype(int), + np.ones(smooth_window)/smooth_window, + mode='same') > 0.5 + + return presence_mask, baseline, threshold + +def visualize_detection(timestamps, stationary_signal, motion_signal, presence_mask, + baseline, threshold, output_file='presence_detection.png'): + """ + Visualize the detection results and save to file. + + Parameters: + ----------- + timestamps : array-like + Array of datetime objects + stationary_signal : array-like + Time series of stationary signal + motion_signal : array-like + Time series of motion signal + presence_mask : array-like + Boolean array indicating presence + baseline : float + Computed baseline for stationary signal + threshold : float + Computed threshold for stationary signal + output_file : str + Path to save the output PNG file + """ + plt.figure(figsize=(15, 10)) + + # Configure time formatting + date_formatter = mdates.DateFormatter('%H:%M:%S') + + # Plot signals + plt.subplot(3, 1, 1) + plt.plot(timestamps, stationary_signal, label='Stationary Signal') + plt.axhline(y=baseline, color='g', linestyle='--', label='Baseline') + plt.axhline(y=threshold, color='r', linestyle='--', label='Threshold') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Stationary Signal with Baseline and Threshold') + plt.grid(True) + + plt.subplot(3, 1, 2) + plt.plot(timestamps, motion_signal, label='Motion Signal') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.legend() + plt.title('Motion Signal') + plt.grid(True) + + plt.subplot(3, 1, 3) + plt.plot(timestamps, presence_mask, label='Presence Detection') + plt.gca().xaxis.set_major_formatter(date_formatter) + plt.ylim(-0.1, 1.1) + plt.legend() + plt.title('Presence Detection Result') + plt.grid(True) + + plt.tight_layout() + + # Save to file and close figure to free memory + plt.savefig(output_file, dpi=300, bbox_inches='tight') + plt.close() + +def FindZeroIntersection(counts, bins, save_plot, device_id): + """ + Find the zero intersection point by fitting a parabola to the descending slope + between 50% and 10% of the maximum peak height. Also returns the peak position. + + Parameters: + counts: array-like + The histogram counts + bins: array-like + The histogram bin edges + save_plot: str or None, optional + If provided, saves the visualization to the specified file path + + Returns: + tuple: (zero_intersections, peak_position) + zero_intersections: list of floats, x-coordinates where parabola intersects y=0 + peak_position: float, x-coordinate of the histogram maximum peak + """ + # Find the main peak + main_peak_idx = np.argmax(counts) + peak_height = counts[main_peak_idx] + peak_position = (bins[main_peak_idx] + bins[main_peak_idx+1]) / 2 + + # Calculate 75% and 25% of peak height + height_50 = 0.50 * peak_height + height_10 = 0.10 * peak_height + + # Find indices where counts cross these thresholds after the peak + idx_50 = main_peak_idx + idx_10 = main_peak_idx + + for i in range(main_peak_idx, len(counts)): + if counts[i] <= height_50 and idx_50 == main_peak_idx: + idx_50 = i + if counts[i] <= height_10: + idx_10 = i + break + + # If we couldn't find valid points, return None + if idx_50 == main_peak_idx or idx_10 == main_peak_idx: + return None, peak_position + + # Get x and y coordinates for fitting + # Use bin centers for x coordinates + x_points = np.array([(bins[i] + bins[i+1])/2 for i in range(idx_50, idx_10+1)]) + y_points = counts[idx_50:idx_10+1] + + # Define quadratic function for fitting + def quadratic(x, a, b, c): + return a*x**2 + b*x + c + + try: + popt, pcov = curve_fit(quadratic, x_points, y_points) + a, b, c = popt + + # Find zeros using quadratic formula + if a != 0: + discriminant = b**2 - 4*a*c + if discriminant >= 0: + x1 = (-b + np.sqrt(discriminant)) / (2*a) + x2 = (-b - np.sqrt(discriminant)) / (2*a) + zero_intersections = sorted([x1, x2]) + # Filter zeros to only include those after the peak + zero_intersections = [x for x in zero_intersections if x > peak_position] + else: + zero_intersections = [] + else: + # If a ≈ 0, fallback to linear solution + if b != 0: + zero_intersections = [-c/b] + else: + zero_intersections = [] + + if save_plot: + plt.figure(figsize=(10, 6)) + + # Plot histogram + bin_centers = [(bins[i] + bins[i+1])/2 for i in range(len(counts))] + plt.bar(bin_centers, counts, width=bins[1]-bins[0], alpha=0.6, + color='skyblue', label='Histogram') + + # Plot peak height lines + plt.axhline(y=height_50, color='g', linestyle='--', alpha=0.5, + label='50% Peak Height') + plt.axhline(y=height_10, color='r', linestyle='--', alpha=0.5, + label='10% Peak Height') + + # Plot fitted parabola + x_fit = np.linspace(min(x_points), max(x_points), 100) + y_fit = quadratic(x_fit, a, b, c) + plt.plot(x_fit, y_fit, 'r-', label='Fitted Parabola') + + # Plot points used for fitting + plt.plot(x_points, y_points, 'ro', alpha=0.5, label='Fitting Points') + + # Plot zero intersections + for x_zero in zero_intersections: + plt.plot(x_zero, 0, 'ko', label='Zero Intersection') + + # Plot peak position + plt.axvline(x=peak_position, color='purple', linestyle='--', alpha=0.5, + label='Peak Position') + + # Add labels and legend + plt.xlabel('Bin Values') + plt.ylabel('Counts') + plt.title(f'Histogram Analysis with Parabolic Fit {device_id}') + plt.legend() + + # Show zero line + plt.axhline(y=0, color='k', linestyle='-', alpha=0.2) + + # Add text with intersection and peak values + text = f'Peak Position: {peak_position:.2f}\n' + if zero_intersections: + text += f'Zero Intersection(s): {", ".join([f"{x:.2f}" for x in zero_intersections])}' + plt.text(0.02, 0.98, text, transform=plt.gca().transAxes, + verticalalignment='top', + bbox=dict(boxstyle='round', facecolor='white', alpha=0.8)) + + # Save plot to file + plt.savefig(save_plot, dpi=300, bbox_inches='tight') + plt.close() + + return zero_intersections, peak_position + except RuntimeError: + print("Warning: Failed to fit parabola") + return None, peak_position + + +def GeneratePresenceHistory(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + maps_dates.reverse() + days = len(maps_dates) + stretch_by = int(1000 / days) + if stretch_by > 50: + stretch_by = 50 + + #lets use 1000 pixels + #arr_stretched = np.zeros((int(days*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + + # Paste each image onto the result image vertically + y_offset = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + + file_exists, time_modified_utc = check_file_exists(filename_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + file_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if file_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + + image_bytes, content_type = GetBlob(filename_day) + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + + #image = Image.open(file_name) + result_image.paste(image, (0, y_offset)) + image.close() + image_stream.close() + + y_offset += stretch_by + + # Save directly to MinIO instead of local file + success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + result_image.close() + return success + +def AddText(room_image_cv2, x, y, room_name, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + #print(f"Attempting to load font from: {font_path}") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error(f"Poppins font not found in {font_path}. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + +def AddTextList(room_image_cv2, strings_list, font_size): + pil_im = Image.fromarray(room_image_cv2) + draw = ImageDraw.Draw(pil_im) + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + for x, y, room_name in strings_list: + draw.text((x, y), room_name, font=font, fill=(150, 150, 150)) # Black color in RGB + + room_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + return room_image_cv2 + + +def AddRoomData(room_image, room_name, data): + + # Example usage: + radius = 10 + color_t = data["color"] # BGR format for red + color = (color_t[2], color_t[1], color_t[0]) + x_offset = 12 + + room_image = AddText(room_image, 13, 20, room_name, 50) + print(data) + for present in data["presence"]: + device_id, minute, duration = present + #duration = 10 + top_left = (x_offset + minute, 140) #bottom_right = (300, 200) + bottom_right = (x_offset + minute + duration, 260) + draw_rounded_rectangle(room_image, top_left, bottom_right, radius, color) + return room_image + +def AddFooterData(image): + '12, 370, 736, 1092, 1452' + step_size = 1440 / 4 + string_width = 60 + offset = 12 + yoffset = 30 + step = 0 + font_size = 40 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 AM", font_size) + step = 1 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 AM", font_size) + step = 2 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "3 PM", font_size) + step = 3 + image = AddText(image, offset+step * step_size + step_size/2 - string_width/2, yoffset, "9 PM", font_size) + return image + +def draw_rounded_rectangle(image, top_left, bottom_right, radius, color): + """ + Draw a filled rectangle with rounded corners, using simple rectangle for small dimensions + :param image: Image to draw on + :param top_left: Top-left corner coordinates (x, y) + :param bottom_right: Bottom-right corner coordinates (x, y) + :param radius: Desired corner radius (will be adjusted if needed) + :param color: Rectangle color in BGR format + """ + x1, y1 = top_left + x2, y2 = bottom_right + + # Calculate width + width = x2 - x1 + + + # Adjust radius if width or height is too small + # Maximum radius should be half of the smaller dimension + max_radius = abs(width) // 2 + radius = min(radius, max_radius) + + # If width is too small, fallback to regular rectangle + if width <= 4 or radius <= 1: + cv2.rectangle(image, top_left, bottom_right, color, -1) + return + + # Adjust radius if needed + radius = min(radius, width // 2) + + # Create points for the main rectangle + pts = np.array([ + [x1 + radius, y1], + [x2 - radius, y1], + [x2, y1 + radius], + [x2, y2 - radius], + [x2 - radius, y2], + [x1 + radius, y2], + [x1, y2 - radius], + [x1, y1 + radius] + ], np.int32) + + # Fill the main shape + cv2.fillPoly(image, [pts], color) + + # Fill the corners + cv2.ellipse(image, (x1 + radius, y1 + radius), (radius, radius), 180, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y1 + radius), (radius, radius), 270, 0, 90, color, -1) + cv2.ellipse(image, (x1 + radius, y2 - radius), (radius, radius), 90, 0, 90, color, -1) + cv2.ellipse(image, (x2 - radius, y2 - radius), (radius, radius), 0, 0, 90, color, -1) + +def filter_device(locations_list, device_id): + result = [] + for entry in locations_list: + if entry[0] == device_id: + result.append(entry) + + return result + +def GenerateLocationsMap(date_st, devices_list, devices_map, locations_list, time_zone_s): + + devices_list_t = [("date",date_st)] + + + for mac in devices_list: + well_id, device_id, room = devices_map[mac] + #room = devices[well_id][0] + color = Loc2Color[room][0] + presence_data = filter_device(locations_list, device_id) + room_details = (room, {"color": color, "presence": presence_data}) + devices_list_t.append(room_details) + + well_id = 0 + device_id = 0 + room = "Outside/?" + color = (0, 0, 0) + + #lets's not draw future unknown! + presence_data = filter_device(locations_list, device_id) + current_utc = datetime.datetime.now(pytz.UTC) + current_date_local = current_utc.astimezone(pytz.timezone(time_zone_s)) + current_minute_of_day = current_date_local.hour * 60 + current_date_local.minute + + if date_st == current_date_local.strftime('%Y-%m-%d'): + filtered_presence_data = [] + for entry in presence_data: + if entry[1] < current_minute_of_day : + if entry[1] + entry[2] < current_minute_of_day: + filtered_presence_data.append(entry) + else: + entry[2] = (current_minute_of_day - entry[2]) + if entry[2] > 0: + filtered_presence_data.append(entry) + #print(presence_data) + else: + filtered_presence_data = presence_data + + room_details = (room, {"color": color, "presence": filtered_presence_data}) + devices_list_t.append(room_details) + + return devices_list_t + +def CreateDailyLocationChart(filename_chart_image_day, locations): + result = False + header_image_file = "header.png" + room_image_file = "room.png" + footer_image_file = "footer.png" + + #ToDo: change it so it reads files from MinIo + header_image_file = os.path.join(filesDir, header_image_file) + header_image_file = header_image_file.replace("\\","/") + header_image = cv2.imread(header_image_file) + #header_height, header_width = header_image.shape[:2] + + room_image_file = os.path.join(filesDir, room_image_file) + room_image_file = room_image_file.replace("\\","/") + room_image = cv2.imread(room_image_file) + #room_height, room_width = room_image.shape[:2] + + footer_image_file = os.path.join(filesDir, footer_image_file) + footer_image_file = footer_image_file.replace("\\","/") + footer_image = cv2.imread(footer_image_file) + + all_images = [header_image] + for item_c in locations: + item = item_c[0] + if item == "date": + date = item_c[1] + else: + room_image = cv2.imread(room_image_file) + data = item_c[1] + room_image = AddRoomData(room_image, item, data) + all_images.append(room_image) + + footer_image = AddFooterData(footer_image) + all_images.append(footer_image) + final_image = np.vstack(all_images) + #this needs to write straight to MinIo ! + SaveImageInBlob(filename_chart_image_day, final_image) + result = True + #cv2.imwrite(filename_chart_image_day, final_image) + #print(rooms_count) + return result + + +def GetOptimumFontSize(target_width, text="00", min_size=1, max_size=100, tolerance=1): + """ + Find optimal font size to fit text within target width using binary search. + + Args: + target_width (int): Desired width in pixels + text (str): Text to measure (default "00") + min_size (int): Minimum font size to try + max_size (int): Maximum font size to try + tolerance (int): Acceptable difference from target width + + Returns: + int: Optimal font size + """ + while min_size <= max_size: + current_size = (min_size + max_size) // 2 + width, _ = GetStringSize(text, current_size) + + if abs(width - target_width) <= tolerance: + return current_size + elif width > target_width: + max_size = current_size - 1 + else: + min_size = current_size + 1 + + # Return the largest size that fits within target width + width, _ = GetStringSize(text, min_size) + return min_size if width <= target_width else min_size - 1 + +def GetStringSize(some_string, font_size): + font_path = os.path.join(os.path.dirname(__file__), "fonts", "Poppins-Regular.ttf") + try: + font = ImageFont.truetype(font_path, font_size) # 12px size + except: + logger.error("Poppins font not found. Please ensure the font file is in your working directory") + # Fallback to default font if Poppins is not available + font = ImageFont.load_default() + + bbox = font.getbbox(some_string) + return bbox[2] - bbox[0], bbox[3] - bbox[1] + +def GeneratePresenceHistoryChart(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + #maps_dates, proximity = GetDeploymentDatesBoth(deployment_id) + minutes = 1440 + stripes_files = [] + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + #maps_dates.reverse() + days = len(maps_dates) + #stretch_by = int(1000 / days) + #if stretch_by > 50: + #stretch_by = 50 + stretch_by = 30 + + #background_image_file = os.path.join(filesDir, "multi_day_template.png") + background_image_file = os.path.join(filesDir, "multi_day_template2.png") + background_image_file = background_image_file.replace("\\","/") + background_image = cv2.imread(background_image_file) + + rgb_image = background_image #cv2.cvtColor(background_image, cv2.COLOR_BGR2RGB) + result_image = Image.fromarray(rgb_image) # Convert to PIL Image + #result_image = Image.new('RGB', (minutes, int(days*stretch_by))) + + # Paste each image onto the result image vertically + y_offset = 0 + locations_list = [] + font_size = 50 + string_width, string_height = GetStringSize("00", font_size) + + + success = False + if len(maps_dates) == 1: + + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + force_recreate = recreate_in + #it is faster to resize existing daily location chart (length is always 1440), than having to re-create it each time... + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_daily_locations.png" + filename_chart_data_day = filename_day+".bin" + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_chart_image_day) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + if not force_recreate: + file_exists1, time_modified_utc1 = check_file_exists(filename_chart_data_day) + if file_exists1: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = ddate + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list_a, device_ids = GetProximityList(deployment_id, timee) + CreateDailyLocationMap(filename_day, devices_list_a, ddate, filter_minutes, time_zone_s, stretch_by) + locations_list_s = ReadObjectMinIO("daily-maps", filename_chart_data_day) + locations_list = json.loads(locations_list_s) + + devices_map = {} + devices_list = [] + for device_entry in devices_list_a: + devices_map[device_entry[4]] = [device_entry[0], device_entry[1], device_entry[2]] + devices_list.append(device_entry[4]) + + locations = GenerateLocationsMap(ddate, devices_list, devices_map, locations_list, time_zone_s) + success = CreateDailyLocationChart(filename, locations) + else: + + day_counter = 0 + day_step_width = int(1780 / days) + x_offset = 563 + y_offset = 1615 + h_labels_bottom = 1720 + day_width = int(0.9 * day_step_width) + day_height = 1440 + font_size = GetOptimumFontSize(day_width, "00", 10, 50, 0) + string_width, string_height = GetStringSize("00", font_size) + #logger.debug(f"font_size={font_size} string_width={string_width}") + + y_offset = y_offset - day_height + filename_chart_image_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations_chart.png" + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day) + file_existsS, time_modifiedS_utc = check_file_exists(filename_day[:-4]+"S.png") + if file_exists and file_existsS: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, stretch_by) + + #here we need to rotate and resize to: + + image_bytes, content_type = GetBlob(filename_day) + image_bytes_s, content_type_s = GetBlob(filename_day[:-4]+"S.png") + if image_bytes != None: + image_stream = io.BytesIO(image_bytes) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, y_offset)) + + image_stream = io.BytesIO(image_bytes_s) + image = Image.open(image_stream) + numpy_image = np.array(image) + rotated_image = cv2.rotate(numpy_image, cv2.ROTATE_90_COUNTERCLOCKWISE) + scaled_image = cv2.resize(rotated_image, (day_width, day_height), interpolation=cv2.INTER_AREA) + + # Convert from BGR to RGB + rgb_image = cv2.cvtColor(scaled_image, cv2.COLOR_BGR2RGB) + # Convert to PIL Image + pil_image = Image.fromarray(rgb_image) + + #image = Image.open(file_name) + x_origin = x_offset + day_step_width * day_counter + int(0.05 * day_step_width) + result_image.paste(pil_image, (x_origin, 1807+y_offset)) + + + image.close() + image_stream.close() + + day_counter += 1 + + pil_im = result_image + #result_image_cv2 = cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + result_image_cv2 = np.array(pil_im)#cv2.cvtColor(np.array(pil_im), cv2.COLOR_RGB2BGR) + strings_list = [] + day_counter = 0 + for ddate in maps_dates: + if string_width <= day_width: + date_str = ddate[8:10] + x_origin = x_offset + int(day_step_width * (day_counter + 0.5)) - int(string_width / 2) + strings_list.append((x_origin, h_labels_bottom, date_str)) + day_counter += 1 + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + + #Y 124 to 1636 + labels_bottom = 1636 - 1.5 * string_height + x_offset = 340 + step = -4 * 60 #4 hours + font_size = 50 + strings_list = [] + count = 0 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + count = 1 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 AM")) + count = 2 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 AM")) + count = 3 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 PM")) + count = 4 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "4 PM")) + count = 5 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "8 PM")) + count = 6 + y_offset = labels_bottom + count * step + strings_list.append((x_offset, y_offset, "12 AM")) + + result_image_cv2 = AddTextList(result_image_cv2, strings_list, font_size) + + numpy_image = np.array(result_image_cv2) + + success = SaveImageInBlob(filename, numpy_image) + #SaveImageInBlob(filename, result_image) + # Save directly to MinIO instead of local file + #if success: + # success = save_to_minio(result_image, filename, DAILY_MAPS_BUCKET_NAME) + # Clean up + if success: + return filename + else: + return "" + +def GeneratePresenceHistoryFiles(filename, recreate_in, deployment_id, filter_minutes, ddate, to_date, now_date, time_zone_s): + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + day_counter = 0 + + for ddate in maps_dates: + + force_recreate = recreate_in + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename_day+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename_day) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + CreateDailyLocationMap(filename_day, devices_list, ddate, filter_minutes, time_zone_s, 10) + + day_counter += 1 + + return filename + +def CalcStdevs(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def CalcLife(row, stdev_range, stdevs): + half_range = stdev_range // 2 + data_len = len(row) + + # Calculate standard deviations with proper window alignment + for i in range(data_len): + # Calculate window boundaries + start = max(0, i - half_range) + end = min(data_len, i + half_range + 1) + + # Get data within window + window_data = row[start:end] + + # Calculate standard deviation if we have data + if len(window_data) > 0: + stdevs[i] = np.std(window_data) + + # Find amplitude (max - min of standard deviations) + amplitude = np.max(stdevs) - np.min(stdevs) + + # Scale to range 0-1279 + if amplitude > 0: # Avoid division by zero + stdevs = ((stdevs - np.min(stdevs)) / amplitude * 1279).astype(np.float32) + + return stdevs, amplitude + +def FindCalibrationDate(device_ids, ddate): + PCD = 50 #% (Peak Contained Data %) + PHB = 50 #% (Peak Height from Base %) + MPW = 10 #? (Max Peak Width) + MPSD =10 #? (Minimum Presence signal Standard Deviation) + #Find first day with, for all devices: + #- enough radar data points collected + #-Single histogram peak containing more than PCD% of data and peak width (at PHB% height) is < MPW + #Stdev of Data larger > MPSD + return ddate + +def FindThreshold(data, percent_list): + """ + Find the threshold value above which lies the specified percentage of points. + + Args: + data: numpy array of values + percent: percentage of points that should be above the threshold (0-100) + + Returns: + threshold value + """ + percent_from, percent_to = percent_list + # Sort data in descending order + sorted_data = np.sort(data)[::-1] + + # Calculate the index corresponding to the desired percentage + index_from = int((percent_from / 100) * len(data)) + index_to = int((percent_to / 100) * len(data)) + + # Return the threshold value + return sorted_data[index_from], sorted_data[index_to] + +def ShowThresholdGraph(data, filename, threshold_low, threshold_high, title, AveragePercentSpendsThere, location): + """ + Create and save a threshold analysis graph with maximum curvature point. + """ + dpi=600 + # Get min and max values + min_val = np.min(data) + max_val = np.max(data) + + # Create 1000 threshold levels from max to min + thresholds = np.linspace(max_val, min_val, 1000) + threshold_percentages = np.linspace(0, 100, 1000) + + # Calculate percentage of points above each threshold + points_above = [] + total_points = len(data) + + for thresh in thresholds: + above_count = np.sum(data > thresh) + percentage = (above_count / total_points) * 100 + points_above.append(percentage) + + points_above = np.array(points_above) + + # Calculate derivatives and smooth them + first_derivative = np.gradient(points_above) + second_derivative = np.gradient(first_derivative) + + #first_derivative = savgol_filter(np.gradient(points_above), window_length=51, polyorder=3) + #second_derivative = savgol_filter(np.gradient(first_derivative), window_length=51, polyorder=3) + + + # Find the point of maximum absolute second derivative + # Exclude edges (first and last 5% of points) to avoid edge effects + edge_margin = len(second_derivative) // 20 # 5% of points + valid_range = slice(edge_margin, -edge_margin) + max_curve_idx = edge_margin + np.argmax(np.abs(second_derivative[valid_range])) + + max_curve_x = threshold_percentages[max_curve_idx] + max_curve_y = points_above[max_curve_idx] + max_curve_second_deriv = second_derivative[max_curve_idx] + + # Calculate the actual threshold value for this point + threshold2 = max_val - (max_curve_x/100) * (max_val - min_val) + + # Create subplot figure + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(12, 10), height_ratios=[3, 2]) + + # Plot 1: Original curve with thresholds + ax1.plot(threshold_percentages, points_above, 'b-', linewidth=2, label='Distribution') + ax1.grid(True, linestyle='--', alpha=0.7) + + # Add original threshold line if provided + if threshold_low is not None: + threshold_percent = ((max_val - threshold_low) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_low) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='r', linestyle='--', label=f'Minimum % spent in {location}: {AveragePercentSpendsThere[0]:.3f}') + ax1.axhline(y=percent_above, color='r', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_low:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + if threshold_high is not None: + threshold_percent = ((max_val - threshold_high) / (max_val - min_val)) * 100 + percent_above = (np.sum(data > threshold_high) / total_points) * 100 + + ax1.axvline(x=threshold_percent, color='b', linestyle='--', label=f'Maximum % spent in {location}: {AveragePercentSpendsThere[1]:.3f}') + ax1.axhline(y=percent_above, color='b', linestyle='--') + + #ax1.annotate(f'Threshold 1: {threshold_high:.3f}\nPoints above: {percent_above:.1f}%', + #xy=(threshold_percent, percent_above), + #xytext=(10, 10), textcoords='offset points', + #bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5), + #arrowprops=dict(arrowstyle='->')) + + # Add maximum curvature point threshold + ax1.axvline(x=max_curve_x, color='g', linestyle='--', label=f'Threshold 2: {threshold2:.3f}') + ax1.axhline(y=max_curve_y, color='g', linestyle='--') + ax1.plot(max_curve_x, max_curve_y, 'go', markersize=10) + + ax1.annotate(f'Threshold 2: {threshold2:.3f}\nPoints above: {max_curve_y:.1f}%', + xy=(max_curve_x, max_curve_y), + xytext=(10, -20), textcoords='offset points', + bbox=dict(boxstyle='round,pad=0.5', fc='lightgreen', alpha=0.5), + arrowprops=dict(arrowstyle='->')) + + ax1.set_xlabel('Threshold Level (%)\n0% = Maximum, 100% = Minimum') + ax1.set_ylabel('Points Above Threshold (%)') + ax1.set_title(title) + ax1.set_xlim(0, 100) + ax1.set_ylim(0, 100) + ax1.legend() + + # Plot 2: Rate of change + ax2.plot(threshold_percentages, first_derivative, 'g-', label='First derivative', alpha=0.7) + ax2.plot(threshold_percentages, second_derivative, 'r-', label='Second derivative', alpha=0.7) + ax2.grid(True, linestyle='--', alpha=0.7) + + # Mark maximum curvature point on derivative plot + ax2.axvline(x=max_curve_x, color='g', linestyle='--') + # Plot point exactly on the second derivative curve + ax2.plot(max_curve_x, max_curve_second_deriv, 'go', markersize=10, + label=f'Max curvature at {max_curve_x:.1f}%') + + ax2.set_xlabel('Threshold Level (%)') + ax2.set_ylabel('Rate of Change') + ax2.set_title('Rate of Change Analysis') + ax2.legend() + + plt.tight_layout() + plt.savefig(filename, dpi=dpi, bbox_inches='tight') + plt.close() + + return threshold2, max_curve_x, max_curve_y + +def add_boundary_points(line_part_t, time_zone): + """ + Add boundary points (00:00:00 and 23:59:59) to a time series list. + + Args: + line_part_t: List of tuples (timestamp, value) + time_zone: String representing the timezone (e.g., "America/Los_Angeles") + + Returns: + List of tuples with added boundary points + """ + if not line_part_t: + return line_part_t + + tz = pytz.timezone(time_zone) + + # Get the date from the first point + first_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + date = first_dt.date() + + # Create datetime objects for start and end of the day + start_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.min.time())) + end_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.max.time())) + + # Convert to timestamps + start_ts = start_dt.timestamp() + end_ts = end_dt.timestamp() + + result = list(line_part_t) + + # Handle start point (00:00:00) + first_point_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + time_diff = first_point_dt - start_dt + + start_value = line_part_t[0][1] + + # Add start point at the beginning + #result.insert(0, (start_ts, start_value)) + + # Handle end point (23:59:59) + last_point_dt = datetime.datetime.fromtimestamp(line_part_t[-1][0], tz) + end_value = line_part_t[-1][1] + # Add end point + result.append((end_ts, end_value)) + + return result + +def calculate_life_and_average(my_data1, stdev_range=5): + # Convert data to numpy array for faster operations + data_array = np.array(my_data1) + + # Calculate half range + stdev_range_h = stdev_range // 2 + + # Pre-calculate indices for the sliding window + indices = np.arange(len(data_array) - 2 * stdev_range_h)[:, None] + np.arange(2 * stdev_range_h + 1) + + # Get sliding windows of data + windows = data_array[indices] + + # Calculate average (using column 3) + average = np.mean(windows[:, :, 3], axis=1) + + # Calculate life (using columns 2, 3, and 4) + deltas = windows[:, :, 3] - windows[:, :, 2] + windows[:, :, 4] + life = np.mean(deltas, axis=1) + + return life.tolist(), average.tolist() + +def TryJulia(prompt): + + if len(prompt) > 0: + + if prompt[0] == "#": + return prompt.upper() + + if prompt not in utterances: + return "" + else: + intent = utterances[prompt] + action = intents[intent] + + return action[0] + else: + return "" + +def AskGPT(in_prompt, language_from, language_to): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + if language_to.lower() not in language_from.lower(): + prompt = in_prompt + " Answer in " + language_to + + + print(prompt) + + #lets see if question is looking for OSM query + pattern = "what is only the node line for query for * on openstreetmap api? do not answer with url to nominatim, but with query!" + + + if match_with_wildcard(prompt, pattern): + differing_part = extract_differing_part(prompt, pattern) + + if differing_part != "": + + print(differing_part) + + if differing_part in searches_dict: + response = searches_dict[differing_part] + print(response) + return response, language_to + else: + #check if one of synonims: + if differing_part in searches_dict["synonims"]: + differing_part = searches_dict["synonims"][differing_part] + if differing_part != "": + if differing_part in searches_dict[differing_part]: + response = searches_dict[differing_part] + print(response) + return response, language_to + + hash_string = hashlib.sha256(str(prompt).encode('utf-8')).hexdigest() + #filename=os.path.join(cache_path, "chgpt_query_" + hash_string+".pkl") + + julia_present = False + if prompt.startswith("julia"): + prompt = prompt[len("julia") + 1:] + julia_present = True + + completion = "" + if julia_present == False: + completion = TryJulia(prompt) + #if completion == "": + # if os.path.exists(filename): + # #completion = pickle.load(open( filename, "rb" )) + # completion = (completion.choices[0].message.content.strip(), language_to)[0] + else: + completion = TryJulia(prompt) + + + if completion == "": + + st = time.time() + #import wandb + + #run = wandb.init(project='GPT-4 in Python') + #prediction_table = wandb.Table(columns=["prompt", "prompt tokens", "completion", "completion tokens", "model", "total tokens"]) + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + + #with open(filename, 'wb') as handle: + #pickle.dump(completion, handle, protocol=pickle.HIGHEST_PROTOCOL) + + response = (completion.choices[0].message.content.strip(), language_to) + else: + response = (completion, language_to) + + else: + response = ("question is too short", language_to) + + + print(response) + return response + +def AskGPTPure(in_prompt): + + if len(in_prompt) > 4: + + prompt = in_prompt.lower() + + print(prompt) + + st = time.time() + + print(time.time() - st) + + openai.api_key = OPENAI_API_KEY + client = OpenAI( + # This is the default and can be omitted + api_key = OPENAI_API_KEY + ) + + completion = client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt, + } + ], + model="gpt-3.5-turbo", + ) + + response = completion.choices[0].message.content.strip() + + + else: + response = "question is too short" + + + print(response) + return response + +def get_last_n_days(n=14, timezone_str='America/Los_Angeles'): + # Get current UTC time + utc_now = datetime.datetime.now(pytz.UTC) + + # Convert to the specified timezone + local_now = utc_now.astimezone(pytz.timezone(timezone_str)) + + # Get the current date in the specified timezone + current_date = local_now.date() + + # Determine the last whole day + if local_now.hour > 0 or local_now.minute > 0 or local_now.second > 0: + # Yesterday in the specified timezone + last_whole_day = current_date - timedelta(days=1) + else: + # If it's exactly midnight, the last whole day is two days ago + last_whole_day = current_date - timedelta(days=2) + + # Generate list of n days, ending with the last whole day + date_list = [] + for i in range(n-1, -1, -1): + day = last_whole_day - timedelta(days=i) + date_list.append(day.strftime('%Y-%m-%d')) + + return date_list + + +def numpy_to_json(arr, devices_list): + """ + Convert numpy array to JSON-serializable format + + Args: + arr (numpy.ndarray): 2D numpy array to serialize + + Returns: + str: JSON string containing array data and metadata + """ + if not isinstance(arr, np.ndarray): + raise TypeError("Input must be a numpy array") + + array_dict = { + 'dtype': str(arr.dtype), + 'shape': arr.shape, + 'devices_list': devices_list, + 'data': arr.tolist() # Convert to nested Python lists + } + + return json.dumps(array_dict) + +def format_time_difference(minutes): + # Calculate days, hours, minutes + days = int(minutes // (24 * 60)) + remaining_minutes = minutes % (24 * 60) + hours = int(remaining_minutes // 60) + mins = int(remaining_minutes % 60) + + parts = [] + + # Add days if any + if days > 0: + parts.append(f"{days} day{'s' if days != 1 else ''}") + + # Add hours if any + if hours > 0: + parts.append(f"{hours} hour{'s' if hours != 1 else ''}") + + # Add minutes if any + if mins > 0 or (days == 0 and hours == 0): + parts.append(f"{mins} minute{'s' if mins != 1 else ''}") + + # Combine the parts into a sentence + if len(parts) == 1: + return parts[0] + elif len(parts) == 2: + return f"{parts[0]} and {parts[1]}" + else: + return f"{parts[0]}, {parts[1]}, and {parts[2]}" + +def RunCommand(commmand, args_dictionary, deployment_id): + + to_return = "" + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + local_tz = pytz.timezone(time_zone_s) + + filter_minutes = 5 + dates = get_last_n_days(28, time_zone_s) + ddate = dates[0] #2025-02-02 req.params.get("date") + to_date = dates[-1] + date_s = datetime.datetime.now(pytz.UTC).astimezone(local_tz).date().strftime("%Y-%m-%d") + + if commmand == "#STATUS#": + force_recreate_orig = False #True + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + filename = GeneratePresenceHistoryFiles(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + + date1_obj = datetime.datetime.strptime(ddate, '%Y-%m-%d') + date2_obj = datetime.datetime.strptime(to_date, '%Y-%m-%d') + + start_date = min(date1_obj, date2_obj) + end_date = max(date1_obj, date2_obj) + stretch_by = 30 + + # Generate list of all dates + maps_dates = [ + (start_date + timedelta(days=x)).strftime('%Y-%m-%d') + for x in range((end_date - start_date).days + 1) + ] + + day_counter = 0 + minutes_spent_there_list = [] + minutes_locations_list = [] + filename_4w = f"/{deployment_id}/{deployment_id}_{maps_dates[0]}_{maps_dates[-1]}_{filter_minutes}_{stretch_by}_4w_locations.png.bin" + for ddate in maps_dates: + + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + Id2Location = {} + for device in devices_list: + Id2Location[device[1]] = device[2] + Id2Location[0] = "Outside/?" + + filename_day = f"/{deployment_id}/{deployment_id}_{ddate}_{filter_minutes}_{stretch_by}_daily_locations.png.bin" + locations_list_s = ReadObjectMinIO("daily-maps", filename_day) + locations_list = ast.literal_eval(locations_list_s) + minutes_locations_list.append((ddate, locations_list)) + #print(locations_list_s) + minutes_spent_there = {} + + + for loc in Id2Location: + minutes_spent_there[Id2Location[loc]] = 0 + minutes_spent_there[Id2Location[0]] = 0 + + for loc in locations_list: + minutes_spent_there[Id2Location[loc[0]]] += loc[2] + + for loc in minutes_spent_there: + minutes_spent_there[loc] = int(1000 * minutes_spent_there[loc] / 1440) / 10 + minutes_spent_there_list.append((ddate, minutes_spent_there)) + data_part = str(minutes_spent_there_list) + minutes_locations_list_str = str(minutes_locations_list) + obj_to_save = {"Location_indexes": str(Id2Location), "Locations": minutes_locations_list_str} + print(obj_to_save) + SaveObjectInBlob(filename_4w, obj_to_save) + print(data_part) + + prompt = "Attached is 4 weeks of data representing % of time where person living alone is spending each day" + prompt = prompt + " Assess his last week compared to previous 3 weeks. Comment only on significant changes." + prompt = prompt + " Ignore days where data is all (or mostly) 0!" + prompt = prompt + " Consider that office and living room are equivalent for this individual. Entertainment is consumed on computer (office) and in living room TV." + prompt = prompt + " But he is also napping in living room. Comment on his sleeping pattern as well" + prompt = prompt + " Can you summarize all in 1 sentence?" + prompt = prompt + " " + data_part + result = AskGPTPure(prompt) + + to_return = result + #to_return = "Your father appears to be fine. He was walking around the house 10 minutes ago and is currently in the living room. And I can smell coffee" + + elif commmand == "#STATUS_F#": + to_return = "Your mother is doing well. She slept 8hr and 23min last night. She used the restroom twice last night. She is now in the kitchen. I can smell coffee." + elif commmand == "#HELP#": + to_return = "There is number of things you can ask me about. For example: 'how is my dad doing?' Or 'How is his environment' or any other question you like" + elif commmand == "#SLEEP#": + to_return = "Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#SLEEP_F#": + to_return = "Your mom slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#ENVIRONMENT#": + to_return = "The temperature in the house is 23 degrees Celsius, CO2 level is 662 ppm, and I can smell coffee brewing. Your dad slept approximately 8 hours last night, took a shower before bed, and got up 4 times during the night." + elif commmand == "#WEEK#": + to_return = "Showing his weekly activity" + elif commmand == "#WEEK_F#": + to_return = "Showing her weekly activity" + elif commmand == "#ACTIVITY#": + to_return = "Your dad has been less active this week than usual. He spent more time sitting in the living room and he got up later than usual by 38min. He also did not go outside as frequently and had less visitors. He only showered once this week." + elif commmand == "#ACTIVITY_F#": + to_return = "Your mom has been less active this week than usual. She spent more time sitting in the living room and she got up later than usual by 38min. She also did not go outside as frequently and had less visitors. She only showered once this week." + elif commmand == "#ACTIVITY_COMPARE#": + to_return = "Overall your dad is less active this year compared to last year. He slept longer in the mornings and had less visitors. Also his shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#ACTIVITY_COMPARE_F#": + to_return = "Overall your mom is less active this year compared to last year. She slept longer in the mornings and had less visitors. Also her shower activity is reduced from typically 2 times a week to once a week." + elif commmand == "#LOCATION#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + #current_time = datetime.datetime.now() + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + detected_time = datetime.datetime.fromisoformat(details["last_detected_time"]) + local_time = local_tz.localize(detected_time) + # Convert to UTC + detected_utc_time = local_time.astimezone(pytz.UTC) + + time_diff = current_time - detected_utc_time + minutes = time_diff.total_seconds() / 60 + time_sentence = format_time_difference(minutes) + if minutes == 0: + to_return = f"He is now in the {last_location}." + else: + to_return = f"He was last detected in the {last_location} {time_sentence} ago" + elif commmand == "#SHOWER#": + to_return = "In the last 7 days, your Dad took a shower on Friday, Sunday and Tuesday" + elif commmand == "#SHOWER_F#": + to_return = "The last time your mom took a shower was Yesterda at 9:33AM" + elif commmand == "#BATHROOM#": + to_return = "Last night your Dad used the restroom only once at 6.10am" + elif commmand == "#KITCHEN#": + to_return = "Your Dad only cooked Dinner on Wednesday and he turned off the stove afterwards" + elif commmand == "#MOLD#": + to_return = "I cannot smell any mold. Also, the humidity is very low. In any of the rooms never exceeded 27% RH in the last 7 days." + elif commmand == "#VISITORS#": + to_return = "Yes, on Tuesday, I could detect motion in both office and kitchen at the same time and CO2 levels in the living room exceeded 900ppm." + elif commmand == "#TEMPERATURE#": + filterr = 5 + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + current_time = datetime.datetime.now(datetime.timezone.utc) + last_location = details["last_location"] + temperature = int(details["temperature"]) + if "America" in time_zone_s: + temperature_sentence = f"{int(CelsiusToFahrenheit(temperature))} degrees Farenhight" + else: + temperature_sentence = f"{temperature} degrees Celsius." + to_return = f"The temperature in the {last_location} is {temperature_sentence}." + elif commmand == "#TEMPERATURE_B#": + to_return = "The temperature in the main bathroom is 80 degrees Farenhight." + elif commmand == "#OXYGEN#": + to_return = "His last oxygen level was at 95%." + elif commmand == "#OXYGEN_F#": + to_return = "Her last oxygen level was at 95%." + elif commmand == "#HEART_RATE#": + to_return = "His last heart rate was 74 bpm." + elif commmand == "#BLOOD_PRESSURE#": + to_return = "His latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#BLOOD_PRESSURE_F#": + to_return = "Her latest blood pressure was measured 5 hours ago and it was 137 over 83." + elif commmand == "#EKG#": + to_return = "His latest HeartBeam EKG was done on Monday and it was within his baseline!" + elif commmand == "#EKG_F#": + to_return = "Her latest HeartBeam EKG was done on Monday and it was within her baseline!" + return to_return + +def ScaleToCommon(data, sensor): + + if sensor == "temperature": + new_min = 0 + new_max = 100 + elif sensor == "humidity": + new_min = 100 + new_max = 200 + elif sensor == "light": + new_min = 200 + new_max = 300 + elif sensor == "radar": + new_min = 300 + new_max = 400 + elif sensor == "s0": + new_min = 400 + new_max = 500 + elif sensor == "s1": + new_min = 500 + new_max = 600 + elif sensor == "s2": + new_min = 600 + new_max = 700 + elif sensor == "s3": + new_min = 700 + new_max = 800 + elif sensor == "s4": + new_min = 800 + new_max = 900 + elif sensor == "s5": + new_min = 900 + new_max = 1000 + elif sensor == "s6": + new_min = 1000 + new_max = 1100 + elif sensor == "s7": + new_min = 1100 + new_max = 1200 + elif sensor == "s8": + new_min = 1200 + new_max = 1300 + else: #s9 + new_min = 1300 + new_max = 1400 + + # Split timestamps and values into separate arrays + timestamps = np.array([x[0] for x in data]) + values = np.array([x[1] for x in data]) + + # Get current min and max + if len(values) > 0: + current_min = np.min(values) + current_max = np.max(values) + else: + current_min = 0; + current_max = 0; + + # Scale the values using the min-max formula + if current_max - current_min > 0: + scaled_values = (values - current_min) * (new_max - new_min) / (current_max - current_min) + new_min + else: + mid_val = (new_max + new_min) / 2 + scaled_values = np.full_like(values, mid_val) + + # Zip back together with original timestamps + return list(zip(timestamps, scaled_values)) + +def CreateLocationsStripe(locations_file, time_zone_s): + + parts = locations_file.split("/") + parts1 = parts[2].split("_") + ddate = parts1[1] + deployment_id = parts1[0] + filter_minutes = parts1[2] + bw = False + chart_type = 4 + force_recreate = True + motion = False + scale_global = False + fast = True + GenerateFullLocationMap(locations_file, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + + +def CelsiusToFahrenheit(C): + F = (C * 9/5) + 32 + return F + +def CelsiusToFahrenheitList(compressed_readings: List[Tuple[datetime.datetime, np.float64]]) -> List[Tuple[datetime.datetime, np.float64]]: + + # Create a new list with converted temperatures + converted_readings = [ + [reading[0], CelsiusToFahrenheit(reading[1])] + for reading in compressed_readings + ] + + return converted_readings + +def GetPriviledgesOnly(user_name): + with get_db_connection() as conn: + if isinstance(user_name, (int)) or user_name.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user_name + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def AddToLog(message): + """Add message to log""" + logger.info(message) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "device_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_device_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "location": + if record[field] != None: + blob_data = SelectOption(blob_data, 'location', record[field]) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def convert_timestamps_lc(data, time_zone_s): + target_tz = pytz.timezone(time_zone_s) + return [[datetime.datetime.fromtimestamp(epoch, pytz.UTC).astimezone(target_tz), value] + for epoch, value in data] + + +subbedToL = [("/wellget",1),("/wellget_cmp",1),("/well_hub",1)] +def on_connectL(client_, userdata, flags, rc): + print(MQTTSERVERL + " L. Connected with result code "+str(rc)) + + # Subscribing in on_connect() means that if we lose the connection and + # reconnect then subscriptions will be renewed. + client_.subscribe(subbedToL) + print("SubscribedL to: "+str(subbedToL)) + +def on_messageL(client_, userdata, msg): #message from GUI + print(msg.topic+" "+str(msg.payload)) + #msga = msg.payload.decode("ascii") + #print(msg.timestamp) + #in_queue.append((str(time.time()), msg.topic, msg.payload)) + +def MQSendL(topic, content, qos=1): + print(topic, content[0:100]) + #return MQSend(topic, content) + #currentTime = int(time.time()) + try: + if "_cmp" in topic: + enc_msg = zlib.compress(content.encode('utf-8')) + else: + enc_msg = content + clientL.publish(topic, enc_msg, qos=qos, retain=False) + except Exception as err: + print ("Err2B:", err) + try: + clientL.disconnect() + #client.username_pw_set('telegraf', 'well18') + clientL.connect(MQTTSERVERL, MQTT_PortL, 60) + except Exception as e: + print ("Err3b:", e) + +# CORS Middleware +class CORSMiddleware: + def process_request(self, req, resp): + resp.set_header('Access-Control-Allow-Origin', '*') + resp.set_header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS') + resp.set_header('Access-Control-Allow-Headers', '*') + + def process_response(self, req, resp, resource, req_succeeded): + if req.method == 'OPTIONS': # Handle preflight requests + resp.status = falcon.HTTP_200 + +# Add this class to your code +class RequestParser: + def __init__(self): + # Detect if we're running in debug/development mode + self.debug_mode = __name__ == "__main__" or os.environ.get('DEBUG', 'false').lower() in ('true', '1', 'yes') + logger.debug(f"RequestParser initialized in {'DEBUG' if self.debug_mode else 'PRODUCTION'} mode") + + def process_request(self, req, resp): + """Pre-process the request to ensure media is parsed early""" + logger.debug(f"RequestParser processing: {req.method} {req.path}") + + # Initialize an empty form_data dict + req.context.form_data = {} + + # Only process POST requests with the right content type + if req.method != 'POST' or not req.content_type or 'form-urlencoded' not in req.content_type: + logger.debug("RequestParser: Skipping (not a form POST)") + return + + try: + # Different handling based on environment + if self.debug_mode: + self._process_debug(req) + else: + self._process_production(req) + + except Exception as e: + logger.error(f"RequestParser error: {str(e)}") + logger.error(traceback.format_exc()) + + def _process_debug(self, req): + """Process request in debug mode - optimized for local development""" + logger.debug("RequestParser: Using DEBUG mode processing") + + # In debug mode, we can use Content-Length and know it's reliable + content_length = req.get_header('content-length') + + if content_length: + # Content-Length is present + content_length = int(content_length) + logger.debug(f"RequestParser: Reading {content_length} bytes using Content-Length") + + raw_body = req.stream.read(content_length) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + else: + logger.debug("RequestParser (debug): No Content-Length header") + + def _process_production(self, req): + """Process request in production mode - optimized for OpenFaaS/faasd deployment""" + logger.debug("RequestParser: Using PRODUCTION mode processing") + + # Simple direct read approach for production (OpenFaaS/faasd) + # We'll limit the read to 1MB for safety + MAX_SIZE = 1024 * 1024 # 1MB + + # Just read directly from the stream without checking + raw_body = req.stream.read(MAX_SIZE) + if raw_body: + body_text = raw_body.decode('utf-8') + logger.debug(f"RequestParser: Successfully read {len(body_text)} chars") + + # Parse the form data + import urllib.parse + form_data = dict(urllib.parse.parse_qsl(body_text)) + + # Store in context + req.context.form_data = form_data + logger.debug(f"RequestParser: Parsed form data: {form_data}") + + # Reset the stream with the original content + import io + req.stream = io.BytesIO(raw_body) + else: + logger.debug("RequestParser: No body data read") + + + + +# Add this function to your code +def get_form_data(req): + """Helper function to get form data from either context or req.media""" + # First check if we pre-parsed the form data + if hasattr(req.context, 'form_data') and req.context.form_data: + logger.debug("Using pre-parsed form data from context") + return req.context.form_data + + # Otherwise try to get from req.media (for json) + try: + if req.content_type and ( + falcon.MEDIA_JSON in req.content_type or + falcon.MEDIA_URLENCODED in req.content_type + ): + logger.debug("Attempting to get form data from req.media") + return req.media or {} + except Exception as e: + logger.error(f"Error getting req.media: {str(e)}") + + logger.debug("No form data available, returning empty dict") + return {} + +# Path handling middleware +class StripPathMiddleware: + def process_request(self, req, resp): + # Strip the '/function/well-api' prefix if present + path = req.path + logger.info(f"Original request path: {path}") + + # Define patterns to match different URL formats + patterns = [ + r'^/function/well-api', # Standard OpenFaaS path + r'^/api/well_api', # API path + ] + + for pattern in patterns: + if re.match(pattern, path): + # Strip the matched prefix + path = re.sub(pattern, '', path) + # Ensure path starts with a slash + if not path.startswith('/'): + path = '/' + path + # Update the request path + req.path = path + logger.info(f"Modified request path: {path}") + break + +# --- Database Function Placeholders (Replace with your real implementations) --- +# These should ideally live outside the request handler method +def is_opted_in(phone_number): + """Checks if a number is already opted in.""" + logger.info(f"[Webhook2 DB] Checking opt-in status for: {phone_number}") + # Replace with your actual DB logic using the app's DB connection + print(f"DATABASE STUB: Checking if {phone_number} is opted in.") + return False # Example stub + +def add_opted_in_number(phone_number): + """Adds the phone number to your opt-in list/database.""" + logger.info(f"[Webhook2 DB] Adding phone number to opt-in list: {phone_number}") + # Replace with your actual DB logic using the app's DB connection + print(f"DATABASE STUB: Adding {phone_number} to opt-ins.") + return True # Example stub +# --- + +# Main API class +class WellApi: + def on_get_healthz(self, req, resp): + """Health check endpoint""" + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_TEXT + resp.text = "OK" + + def on_get(self, req, resp, path=""): + """Handle GET requests""" + logger.debug(f"GET request to path: {path}") + logger.debug(f"Sent variables: {req.params}") + logger.debug(f"All headers: {dict(req.headers)}") + if path == "" or path == "/": + # Serve the main portal page + blob_data = read_file("well_portal.html") + if blob_data: + resp.content_type = "text/html" + resp.text = blob_data + else: + # Fall back to JSON response if file not found + resp.media = {"message": "Hello from OpenFaaS Serverless Web Server!", "method": "GET"} + return + elif path == "favicon.ico": + favicon_path = "favicon.ico" + if os.path.isfile(favicon_path): + resp.content_type = 'image/x-icon' + resp.data = read_file(favicon_path, type_="BIN") + resp.status = HTTP_200 + else: + resp.status = HTTP_404 + return + elif path == "health": + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"status": "healthy"}) + return + + # Authentication and authorization + token = req.params.get('token') + user_name = req.params.get('user_name') + ps = req.params.get('ps') + + if ps != "" and ps != None: + #was token sent in ps field? This allows for token and ps be populated by token or ps + user_info = verify_token(ps) + if user_info["username"] == user_name: + token = ps + else: + #is this valid password? + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + resp.media = package_response("Log-Out", HTTP_401) + return + else: + token = generate_token(user_name) + + + + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + privileges = GetPriviledgesOnly(user_name) + + if (token and user_name) or (token and user_name): + user_info = verify_token(token) + if user_info is None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + get_function_name = req.params.get('name') + logger.debug(f"[{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}] - {__name__}.GET_API->{get_function_name}") + + if get_function_name == "deployment_add": + user_id = req.params.get('user_id') + blob_data = read_file("edit_deployment.html") + caretaker = {'deployment_id': 0, 'beneficiary_id': user_id, 'caretaker_id': user_id, 'owner_id': user_id, 'installer_id': user_id, 'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "devices_list": + st = time.time() + user_name = req.params.get('user_name') + privileges = GetPriviledgesOnly(user_name) + first_s = req.params.get('first') + last_s = req.params.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + blob_data = read_file("my_devices.html") + + devices = GetVisibleDevices(privileges) + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDevicesTable(blob_data, devices, users) + blob_data = UpdateDeploymentsSelector(blob_data, users) + resp.content_type = "text/html" + resp.text = blob_data + #print(blob_data) + return + + elif get_function_name == "deployment_edit": + deployment_id = req.params.get('deployment_id') + blob_data = read_file("edit_deployment.html") + + deployment = DeploymentDetails(deployment_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, deployment, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "caretaker_add": + + blob_data = read_file("edit_caretaker.html") + caretaker = {'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "caretaker_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_caretaker.html") + + caretaker = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif get_function_name == "device_add": + + blob_data = read_file("edit_device.html") + device = {'device_id': 0, 'device_mac': '', 'well_id': '', 'description': '', 'location': '', 'close_to': '', 'radar_threshold': '["s3_max",12]', 'temperature_calib': '0.0,1.0,0.0', 'humidity_calib': '0.0,1.0,0.0'} + blob_data = FillFields(blob_data, device, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "device_edit": + mac = req.params.get('mac') + + blob_data = read_file("edit_device.html") + + device_det = DeviceDetails(mac) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, device_det, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + + elif get_function_name == "beneficiary_edit": + user_id = req.params.get('user_id') + blob_data = read_file("edit_beneficiary.html") + + beneficiary = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "beneficiary_add": + + blob_data = read_file("edit_beneficiary.html") + beneficiary = {'user_id': 0, 'role_ids': '1', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif get_function_name == "get_image_file": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + group_by = req.params.get("group_by") + timee = StringToEpoch(ddate, time_zone_s) + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + map_type = int(req.params.get("map_type")) + + bw = req.params.get("bw") == "true" + unique_identifier = req.params.get("unique_identifier") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{group_by}_{radar_part}_{map_type}_{bw}_dayly_image.png" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate: + st = time.time() + vocs_scaled = {} + devices_list = GetProximityList(deployment_id, timee) + stored, vocs_scaled = CreateMapFast(filename, devices_list, ddate, bw, time_zone_s, radar_part, group_by) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + if stored != True: + AddToLog("Map not created") + #logger.warning("Map not created") + resp.media = package_response("Map not created", HTTP_401) + return + else: + AddToLog("Map created") + #lets send over MQTT vocs_scaled + json_data = numpy_to_json(vocs_scaled, devices_list) + MQSendL("/"+unique_identifier, json_data) + #print(time.time() - st) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + sys.stdout.flush() + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_full_location_map": + + raw = req.params.get("raw") == "true" + + if raw: + #function=request_deployment_map_new + #token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6InJvYnN0ZXIiLCJleHAiOjE3MzgxNzYzNTZ9.5wzC2dVQhKlMygHPZfombTINbltNq8vxdilLIugNTtA& + #user_name=robster& + #date=2025-01-27& + #deployment_id=21& + #map_type=2 + chart_type = 8 + else: + chart_type = int(req.params.get("map_type")) + + #image represents day in local time + logger.debug("get_full_location_map") + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + + to_date = ddate + + try: + to_date = req.params.get("to_date") + to_date = to_date.replace("_","-") + except: + pass + + if to_date != ddate: + chart_type = int(req.params.get("map_type")) + + force_recreate = req.params.get("re_create") == "true" + force_recreate_orig = force_recreate + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + + filter_minutes = int(req.params.get("filter")) + + if "flavor" in req.params: #this is to be used only when creating + flavor = int(req.params.get("flavor")) + else: + flavor = 0 + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + if chart_type == 5 or chart_type == 7: + #now_date = req.params.get("now_date") + #now_date = now_date.replace("_","-") + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{to_date}_{filter_minutes}_history_image.png" + else: + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + #file_exists1, time_modified_utc1 = check_file_exists(filename+".bin") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: #same date + current_time = datetime.datetime.now(pytz.timezone(time_zone_s)) + time_passed = current_time - time_modified_local + #if time_passed.seconds > 300: #recreate if older than 5 minutes + # force_recreate = True + + else: + force_recreate = True + + if force_recreate: + ddate = ddate.replace("_","-") + #filter_minutes = 5 + #filename = os.path.join(scriptDir+"/daily_maps/"+deployment, proximity_string+"_"+deployment+"_"+ddate+"_dayly_image.png") + + filename = filename.replace('\\','/') + if chart_type == 4: #"collapsed": + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast, time_zone_s, filter_minutes) + elif chart_type == 5: #"history": + GeneratePresenceHistory(filename, force_recreate, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 7: #"history full chart": + filename = GeneratePresenceHistoryChart(filename, force_recreate_orig, deployment_id, filter_minutes, ddate, to_date, ddate, time_zone_s) + elif chart_type == 8: #"set for mobile" + GenerateFullLocationMapLabelsOut(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + else: + GenerateFullLocationMap(filename, deployment_id, ddate, force_recreate, chart_type, bw, motion, scale_global, fast,time_zone_s, filter_minutes) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + elif get_function_name == "get_presence_map": + #image represents day in local time + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + force_recreate = req.params.get("re_create") == "true" + scale_global = req.params.get("scale_global") == "true" + fast = req.params.get("fast") == "true" + bw = req.params.get("bw") == "true" + motion = req.params.get("motion") == "true" + timee = StringToEpoch(ddate, time_zone_s) + chart_type = int(req.params.get("map_type")) + filter_minutes = int(req.params.get("filter")) + + if bw: + bw_s = "BW" + else: + bw_s = "CLR" + + if fast: + fast_s = "FAST" + else: + fast_s = "SLOW" + + if motion: + motion_s = "M" + else: + motion_s = "S" + + if scale_global: + scl_s = "scl" + else: + scl_s = "nscl" + + + filename = f"/{deployment_id}/{deployment_id}_{ddate}_{bw_s}_{motion_s}_{scl_s}_{chart_type}_Flocation_image.png" + + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + + if force_recreate: + ddate = ddate.replace("_","-") + days = 7 + + filename = filename.replace('\\','/') + if chart_type == 6: #"AI Locations": + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + devices_list, device_ids = GetProximityList(deployment_id, timee) + + st = time.time() + if CreatePresenceMap(filename, devices_list, ddate, 1, force_recreate, chart_type, bw, motion, scale_global, fast, filter_minutes, time_zone_s) == 0: #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + print(ddate, "Not found") + else: + print(ddate, time.time() - st) + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + + return + elif get_function_name == "download": + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + date_from = req.params.get("date_from") + date_to = req.params.get("date_to") + date_from = date_from.replace("_","-") + date_to = date_to.replace("_","-") + consolidated_by = req.params.get("consolidated_by") + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + zip_filename = f"/{deployment_id}/{deployment_id}_{date_from}_{date_to}_{consolidated_by}_data.zip" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(zip_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(zip_filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + dates = DatesSpan(date_from, date_to) + to_zip = [] + for ddate in dates: + force_recreate_csv = force_recreate + csv_dayly_filename = f"/{deployment_id}/{deployment_id}_{ddate}_{consolidated_by}_data.csv" + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + if not force_recreate_csv: + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + file_exists, time_modified_utc = check_file_exists(csv_dayly_filename, bucket_name="data-downloads") + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = CSVFileToDate(csv_dayly_filename) + if time_modified_date <= file_date: + force_recreate_csv = True + else: + force_recreate_csv = True + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate_csv: + st = time.time() + vocs_scaled = {} + + devices_list = GetProximityList(deployment_id, timee) + temp_offset = -16 + file_stored = CreateDailyCSV(csv_dayly_filename, devices_list, ddate, vocs_scaled, time_zone_s, radar_part, consolidated_by, temp_offset) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + to_zip.append(file_stored) + else: + to_zip.append(csv_dayly_filename) + + if to_zip: + success = zip_blobs( + blob_paths=to_zip, + zip_blob_name=zip_filename, + bucket_name="data-downloads", + minio_client=miniIO_blob_client + ) + + if success: + print("Files successfully zipped") + else: + print("Error occurred while zipping files") + + #pack CSV files from BLOB into ZIP + #lets read and send image from blob + zip_bytes, content_type = GetBlob(zip_filename, bucket_name="data-downloads") + if debug: + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if zip_bytes is None: + raise falcon.HTTPNotFound( + title='File not found', + description=f'File {zip_filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = zip_bytes + resp.status = falcon.HTTP_200 + return + resp.media = package_response("Use POST method for this endpoint", HTTP_400) + + # Default response for unmatched paths + #resp.media = package_response(f"Path: /{path}", HTTP_200) + + def on_post(self, req, resp, path=""): + """Handle POST requests""" + logger.debug(f"on_post called with path: {path}") + logger.debug(f"Request method: {req.method}") + logger.debug(f"Request path: {req.path}") + logger.debug(f"Request query string: {req.query_string}") + logger.debug(f"Request headers: {req.headers}") + logger.debug(f"Request content type: {req.content_type}") + + # Get form data using our helper function - but don't read stream again + form_data = get_form_data(req) + logger.debug(f"Form data: {form_data}") + + ## Special cases for specific endpoints + if path == "telnyx-sms-webhook": + + #SMS webhook: https://eluxnetworks.net/function/well-api/api/telnyx-sms-webhook + #Voice call webhook: https://eluxnetworks.net/function/well-api/api/telnyx-call-webhook + try: + # Parse the webhook payload + webhook_data = json.loads(req.stream.read().decode('utf-8')) + logger.info(f"Received Telnyx SMS webhook: {webhook_data}") + + # Handle the SMS webhook (example for message.received event) + if webhook_data.get('data', {}).get('event_type') == 'message.received': + # Extract important information + payload = webhook_data.get('data', {}).get('payload', {}) + from_number = payload.get('from', {}).get('phone_number') + to_number = payload.get('to', [{}])[0].get('phone_number') if payload.get('to') else None + message_text = payload.get('text', '') + + logger.info(f"SMS from {from_number} to {to_number}: {message_text}") + + # Here you can implement your business logic to handle the SMS + # For example, storing in database, triggering actions, etc. + + # Always respond with 200 OK to acknowledge receipt + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"status": "received"}) + return + + except Exception as e: + logger.error(f"Error processing Telnyx SMS webhook: {str(e)}") + resp.status = HTTP_500 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": str(e)}) + return + # --- START: New Webhook Handler for telnyx-sms-webhook2 --- + elif path == "telnyx-sms-webhook2": + logger.info("Handling request for telnyx-sms-webhook2") + try: + # 1. Read Raw Payload (needed for signature validation and parsing) + # Ensure the stream hasn't been read previously in the request lifecycle + raw_payload = req.stream.read() + if not raw_payload: + logger.warning("Request stream was empty for telnyx-sms-webhook2.") + resp.status = falcon.HTTP_BAD_REQUEST + resp.media = {"error": "Missing request body"} + return + + # 2. (Optional but Recommended) Signature Validation + if TELNYX_PUBLIC_KEY: + signature = req.headers.get("TELNYX-SIGNATURE-ED25519") # Case-insensitive lookup + timestamp = req.headers.get("TELNYX-TIMESTAMP") + if not signature or not timestamp: + logger.warning("Missing Telnyx signature headers for telnyx-sms-webhook2") + resp.status = falcon.HTTP_BAD_REQUEST # Use 400 Bad Request + resp.media = {"error": "Missing signature headers"} + return + try: + from telnyx.webhook import Webhook # Import here or globally + # Ensure 'telnyx' library is installed: pip install telnyx + Webhook.construct_event(raw_payload, signature, timestamp, TELNYX_PUBLIC_KEY, tolerance=600) + logger.info("Telnyx signature validated successfully for telnyx-sms-webhook2.") + except Exception as e: + logger.error(f"Invalid Telnyx signature for telnyx-sms-webhook2: {e}") + resp.status = falcon.HTTP_UNAUTHORIZED # Use 401 Unauthorized + resp.media = {"error": "Invalid signature"} + return + else: + logger.warning("TELNYX_PUBLIC_KEY not set. Skipping signature validation for telnyx-sms-webhook2.") + + + # 3. Decode and Parse JSON + payload_data = json.loads(raw_payload.decode('utf-8')) + logger.debug(f"Webhook 2 Payload: {json.dumps(payload_data)}") # Debug log payload + + # 4. Process Logic (similar to standalone webhook) + event_type = payload_data.get('data', {}).get('event_type') + record_type = payload_data.get('data', {}).get('record_type') + + if event_type == 'message.received' and record_type == 'message': + message_payload = payload_data.get('data', {}).get('payload', {}) + direction = message_payload.get('direction') + + if direction == 'inbound': + from_number = message_payload.get('from', {}).get('phone_number') + message_body = message_payload.get('text', '').strip().upper() + + logger.info(f"[Webhook2] Inbound message from {from_number}. Checking keyword.") + + # Check for the specific opt-in keyword + if message_body == OPT_IN_KEYWORD: + logger.info(f"[Webhook2] Opt-in keyword '{OPT_IN_KEYWORD}' detected from {from_number}") + if not is_opted_in(from_number): # Check DB + if add_opted_in_number(from_number): # Add to DB + logger.info(f"[Webhook2] Successfully processed opt-in for {from_number}") + else: + logger.error(f"[Webhook2] Failed to add {from_number} to opt-in database.") + # Decide if this is a server error + # resp.status = falcon.HTTP_INTERNAL_SERVER_ERROR + # resp.media = {"error": "Database operation failed"} + # return # Optionally return early on DB error + else: + logger.info(f"[Webhook2] {from_number} is already opted in.") + # Add elif for STOP/HELP handling here if needed + else: + logger.info(f"[Webhook2] Message from {from_number} did not match opt-in keyword.") + + # 5. Acknowledge Receipt to Telnyx (Use 204 No Content) + resp.status = falcon.HTTP_204 + # No body needed for 204 response + return # Important: return after handling + + except json.JSONDecodeError: + logger.error("Failed to decode JSON from request body for telnyx-sms-webhook2") + resp.status = falcon.HTTP_BAD_REQUEST + resp.media = {"error": "Invalid JSON payload"} + return + except Exception as e: + logger.exception("Error processing telnyx-sms-webhook2") # Log full traceback + resp.status = falcon.HTTP_INTERNAL_SERVER_ERROR + resp.media = {"error": "Internal server error"} + return + # --- END: New Webhook Handler for telnyx-sms-webhook2 --- + elif path == "telnyx-call-webhook": + try: + # Parse the webhook payload + webhook_data = json.loads(req.stream.read().decode('utf-8')) + logger.info(f"Received Telnyx Call webhook: {webhook_data}") + + # Handle different voice call events + event_type = webhook_data.get('data', {}).get('event_type') + payload = webhook_data.get('data', {}).get('payload', {}) + + if event_type == 'call.initiated': + # Call is being initiated + call_control_id = payload.get('call_control_id') + from_number = payload.get('from') + to_number = payload.get('to') + logger.info(f"Call initiated from {from_number} to {to_number}, control ID: {call_control_id}") + + # Store the call_control_id if you need to control this call later + + elif event_type == 'call.answered': + # Call was answered + call_control_id = payload.get('call_control_id') + call_session_id = payload.get('call_session_id') + logger.info(f"Call answered, session ID: {call_session_id}") + + # If you want to play your MP3 when the call is answered, this is where you'd + # make another API call to Telnyx with the call_control_id to start playback + + elif event_type == 'playback.started': + # Playback of audio file has started + call_control_id = payload.get('call_control_id') + logger.info(f"Audio playback started for call: {call_control_id}") + + elif event_type == 'playback.ended': + # Playback of audio file has ended + call_control_id = payload.get('call_control_id') + logger.info(f"Audio playback ended for call: {call_control_id}") + + # Always respond with 200 OK to acknowledge receipt + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"status": "received"}) + return + + except Exception as e: + logger.error(f"Error processing Telnyx call webhook: {str(e)}") + resp.status = HTTP_500 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": str(e)}) + return + #if path == "users": + #logger.info("POST request to users endpoint") + #resp.status = HTTP_201 + #resp.content_type = falcon.MEDIA_JSON + #resp.text = json.dumps({"id": "new-user-id", "message": "User created"}) + #return + #elif path == "items": + #logger.info("POST request to items endpoint") + #resp.status = HTTP_201 + #resp.content_type = falcon.MEDIA_JSON + #resp.text = json.dumps({"id": "new-item-id", "message": "Item created"}) + #return + + try: + # Get basic parameters + function = form_data.get('function') + user_name = form_data.get('user_name') + logger.debug(f"Function: {function}, User: {user_name}") + + + if function != "credentials": + token = form_data.get('token') + ps = form_data.get('ps') + + + if ps != "" and ps != None: + #was token sent in ps field? This allows for token and ps be populated by token or ps + user_info = verify_token(ps) + if user_info != None: + if user_info["username"] == user_name: + token = ps + else: + #is this valid password? + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + resp.media = package_response("Log-Out", HTTP_401) + return + else: + token = generate_token(user_name) + + user_info = verify_token(token) + + if user_info == None or user_info["username"] != user_name: + resp.media = package_response("Log-Out", HTTP_401) + return + + + #with get_db_connection() as db_conn: + privileges = GetPriviledgesOnly(user_name) + + # Handle credentials function - most common case + if function == "credentials": + + clientId = form_data.get('clientId') + nonce = form_data.get('nonce') + ps = form_data.get('ps') + + if not user_name: + resp.media = package_response("Required field 'user_name' is missing", HTTP_400) + return + + if not clientId: + resp.media = package_response("Required field 'clientId' is missing", HTTP_400) + return + + if not nonce: + resp.media = package_response("Required field 'nonce' is missing", HTTP_400) + return + + if not ps: + resp.media = package_response("Required field 'ps' is missing", HTTP_400) + return + + + + if False: + pass + else: + #lets check for real + privileges, user_id = ValidUser(user_name, ps) + if privileges == "0": + access_token = 0 + privileges = 0 + else: + access_token = generate_token(user_name) + + token_payload = {'access_token': access_token, 'privileges': privileges, 'user_id': user_id} + resp.media = package_response(token_payload) + resp.status = falcon.HTTP_200 + return + + # Handle token-protected functions + elif function == "messages_age": + + macs = form_data.get('macs') + + with get_db_connection() as conn: + + #print (sqlr) + with conn.cursor() as cur: + + devices = MACsStrToDevIds(cur, macs) + + devices_string = ",".join(f"{device_id}" for mac, device_id in devices) + + + sqlr = f""" + SELECT + device_id, + GREATEST( + radar_last_time, + sensor_last_time + ) AS latest_time + FROM + (SELECT unnest(ARRAY[{devices_string}]) AS device_id) d + LEFT JOIN LATERAL ( + SELECT time AS radar_last_time + FROM radar_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) r ON true + LEFT JOIN LATERAL ( + SELECT time AS sensor_last_time + FROM sensor_readings + WHERE device_id = d.device_id + ORDER BY time DESC + LIMIT 1 + ) s ON true;""" + logger.debug(f"sqlr= {sqlr}") + cur.execute(sqlr) + times_list = cur.fetchall() + result = {} + for i in range(len(times_list)): + if times_list[i][1] is not None: + result[devices[i][0]] = times_list[i][1].timestamp() + else: + result[devices[i][0]] = 0 + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + elif function == "voice_ask": + + question = form_data.get('question') + deployment_id = form_data.get('deployment_id') + + if ('language_from' in form_data): + language_from = form_data.get('language_from').strip() + else: + language_from = "English" + + if ('language_to' in form_data): + language_to = form_data.get('language_to').strip() + else: + language_to = "English" + + + result, language = AskGPT(question, language_from, language_to) + + if result[0] == "#": + result = RunCommand(result, {}, deployment_id) + + dataa = {} + dataa['Command'] = "REPORT" + dataa['body'] = result + dataa['name'] = "" + dataa['reflected'] = "" + dataa['language'] = language + dataa['time'] = time.time() + #json_data = json.dumps(dataa) + payload = {'ok': True, 'response': dataa} + resp.media = package_response(payload) + logger.warning(f"Responded: {str(payload)}") + resp.status = falcon.HTTP_200 + return + + + elif function == "calibrate_thresholds": + #this will use current date to calibrate radar presence thresholds. + #make sure that data is well defined (has clear absence/presence signature) for all rooms for chosen day + #Format of radar_threshold field = [gates_to_use_Presence_list, p_threshold] + #We need to automate this functionality!!! + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = form_data.get("date") + ddate = ddate.replace("_","-") + selected_date = ddate + + + + stdev_range = int(form_data.get("stdev_range")) + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, timee) + + selected_date = FindCalibrationDate(device_ids, ddate) + + devices_c = len(devices_list[0]) + + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s, stdev_range) + fields = ["radar_s_min", "radar_s_max", "radar_m_max", "radar_stdev"] + cnt = 0 + ids_list = [] + for details in devices_list: + ids_list.append(details[1]) + devices_list_str = ",".join(map(str, ids_list)) + device_to_index = {device: idx for idx, device in enumerate(ids_list)} + + minutes = 1440 + + with get_db_connection() as conn: + with conn.cursor() as cur: + for device_index in range(devices_c): + well_id = devices_list[device_index][0] + device_id = devices_list[device_index][1] + location = devices_list[device_index][2] + + sql = get_device_radar_s28_only_query(time_from_str, time_to_str, device_id) + print(sql) + + #sql1 = get_deployment_radar_only_colapsed_query(str(device_id), time_from_str, time_to_str, [device_id]) + #print(sql1) + st = time.time() + cur.execute(sql) + my_data = cur.fetchall() + + timestamps, stationary, motion = process_raw_data(my_data) + print(type(stationary)) + # Find threshold above which 20% of points lie + AveragePercentSpendsThere = AveragePercentPerLocation[Consolidataed_locations[location]] + threshold_high, threshold_low = FindThreshold(stationary, AveragePercentSpendsThere) + file_save = f"threshold_graph_{location}.png" + title = f"{well_id}_{location}" + + threshold2, x_percent, y_percent = ShowThresholdGraph(stationary, file_save, threshold_low, threshold_high, title, AveragePercentSpendsThere, location) + + print(f"Maximum curvature point found at:") + print(f"Threshold value: {threshold2:.3f}") + print(f"X: {x_percent:.1f}% of range") + print(f"Y: {y_percent:.1f}% of points above") + + ShowArray(stationary, threshold2, filename=f"stationary_{devices_list[device_index][0]}.png", title=f"stationary_{devices_list[device_index][0]}_{devices_list[device_index][2]}", style='line') + + + ##threshold + ##presence_mask, baseline, threshold = detect_presence(timestamps, stationary, motion) + + ### Save visualization to file + ##visualize_detection(timestamps, stationary, motion, presence_mask, + ## baseline, threshold) + + #cur.execute(sql1) + #my_data1 = cur.fetchall()#cur.fetchone() + #print(time.time() - st) + #if my_data == None or my_data1 == None: + #logger.warning(f"No data found for device_id {device_id}") + #else: + #print(type(my_data)) + ##minute, + ##device_id, + ##s_min as radar_s_min, + ##s_max as radar_s_max, + ##m_max as radar_m_max + + #values = [tup[1] for tup in my_data] #10 sec (RAW) data + + #hist, bins = np.histogram(values, bins=1000, range=(0, 100)) + #TR, BR = FindZeroIntersection(hist, bins, f'raw_{device_id}_histogram.png', device_id) + #if True:#device_id == 560: + #plot(values, filename=f"radar_{device_id}_s28.png", title=f"Radar s28 {device_id}", style='line') + #plot(hist, filename=f"radar_{device_id}_s28_hist.png", title=f"Radar s28 {device_id} histogram", style='line') + + ##life = [tup[3] - tup[2] + tup[4] for tup in my_data1] + #life, average = calculate_life_and_average(my_data1, stdev_range) #5 min data + #lhist, lbins = np.histogram(life, bins=1000) + #TLIFE, BLIFE = FindZeroIntersection(lhist, lbins, f'life_{device_id}_histogram.png', device_id) + + #StoreThresholds2DB(device_id, TR, BR, TLIFE, BLIFE) + ##for now not needed... + ##ahist, abins = np.histogram(average, bins=1000) + ##dummy1, dummy = FindZeroIntersection(ahist, abins) + #if True:#device_id == 560: + #plot(average, filename=f"average_{device_id}.png", title=f"Average {device_id}", style='line') + #plot(life, filename=f"life_{device_id}.png", title=f"Life {device_id}", style='line') + #plot(lhist, filename=f"life_{device_id}_hist.png", title=f"life {device_id} histogram", style='line') + ##plot(ahist, filename=f"average_{device_id}_hist.png", title=f"average {device_id} histogram", style='line') + + + sql = get_deployment_radar_only_colapsed_query(devices_list_str, time_from_str, time_to_str, ids_list) + print(sql) + my_data = [] + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + my_data = cur.fetchall()#cur.fetchone() + #print(result) + if my_data == None: + return False + + fields_n = len(fields) + stripes = devices_c * fields_n #radar_min and radar_max + print(my_data) + base_minute = ConvertToBase(time_from_str, time_zone_s) + #base_minute = my_data[0][0]# min(record[0] for record in my_data) + #remember: base_minute is offset (smaller) by numbr of minutes in stdev_range + st = time.time() + wave_m = np.zeros((stripes, 1440+2*stdev_range, 1), dtype=np.float32) + + for record in my_data: + #(minute,device_id,s28_min,s28_max) = record + minute, device_id = record[0:2] + values = record[2:] # All the min/max values + x = int((minute - base_minute).total_seconds()/60) + + device_idx = device_to_index[device_id] + #value[0] are mins, value[1] are maxes + #when trying to illustrate presence, use s28_max, when absence (night leaving bed) use s28s_min + for field_idx, value in enumerate(values): + # Calculate y position + y = device_idx * fields_n + field_idx + wave_m[y, x] = value + + print(time.time()-st) + + #we need to reliably determine presence and LIFE (motion) in every 5 minutes of data... + #presence is determined by average value being significntly different from last known base + #last known base is determined by average value during extended periods ( >= H hours) of low stdev (<) while it is determined that: + #person is moving elsewhere, and only 1 person is determined to be in monitored area. + + #lets calculate stdevs + for device_index in range(devices_c): + y = device_index * fields_n + row = wave_m[y] + stdevs = np.zeros((1440+2*stdev_range, 1), dtype=np.float32) + stdevs, amplitude = CalcStdevs(row, stdev_range, stdevs) + wave_m[y+3] = stdevs + plot(stdevs, filename=f"radar{device_index}_stdevs.png", title=f"Radar Stedevs {device_index}", style='line') + + minutes = 1440 + + + device_index = 0 + y = 0 + for device in devices_list: + wave = wave_m[y][stdev_range: stdev_range + minutes] + plot(wave, + filename="radar_wave_min.png", + title="Radar Signal Min", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_min.png", + title="Radar Signal Histogram Min (1000 bins)", + style='line') + + wave = wave_m[y+1] + plot(wave, + filename="radar_wave_max.png", + title="Radar Signal", + style='line') + # Create histogram with 1000 bins + hist, bins = np.histogram(wave, bins=1000, range=(0, 100)) + + #bin_centers = (bins[:-1] + bins[1:]) / 2 + hist_line = hist # These are your y values + + # Plot with proper axis labels + plot(hist_line, + filename="radar_histogram_max.png", + title="Radar Signal Histogram Max(1000 bins)", + style='line') + + print(wave) + device_to_index += 1 + + #lets see this map + stretch_by = 5 + arr_stretched = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) #array to be written as image 3 for RGB channels + st = time.time() + for yy in range(stripes): + rgb_row = [] + row = wave_m[yy] + for x in range(minutes): + value = 1280 * row[x] / 100 + rgb_row.append(BestColor(value)) + for stretch_index in range(stretch_by): + y = yy * stretch_by + stretch_index + arr_stretched[y, :] = rgb_row + + print(time.time()-st) + filename = f"{deployment_id}/{deployment_id}_{ddate}_min_max_radar.png" + SaveImageInBlob(filename, arr_stretched, []) + + + return + + elif function == "request_single_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_list_loc = [form_data.get('sensor_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + data_type = form_data.get('data_type') + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + device_id2_mac + sensor_data = {} + for sensor in sensor_list_loc: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + + sensor_data[sensor] = cleaned_values + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "get_sensor_bucketed_data_by_room_sensor": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) to get timezone + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list + # (tells what sensor data to be retrieved) + # "voc" for all smell use s4 (lower reading is higher smell, max=0 find min for 100%) + # "radar" returns s28 + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # location - room name (has to be unique) + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + location = form_data.get('location') + data_type = form_data.get('data_type') + + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) + + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + units = "°C" + if "America" in time_zone_s: + units = "°F" + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", units], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + + current_time_la = datetime.datetime.now(pytz.timezone(time_zone_s)) + formatted_time = current_time_la.strftime('%Y-%m-%dT%H:%M:%S') #"2025-02-06T20:09:00" + + result_dictionary = { + "last_report_at": formatted_time, + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + # example data in each element of devices_list is (266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + for well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to in devices_list: + if location_name == location: + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + if sensor == "temperature": + if units == "°F":#"America" in time_zone_s: + compressed_readings = CelsiusToFahrenheitList(compressed_readings) + + + + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_sensor_data_by_deployment_id": + # Inputs: + # user_name and token + # deployment_id - from which report gets deployment set (all rooms and devices) + # date - one day in a format YYYY-MM-DD + # sensor - temperature/radar/etc.. see full list (tells what sensor data to be retrieved) + # radar_part - optional and applies only to radar (tells which segment of radar to be retrieved) + # bucket_size - ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + # data_type - ML + # Output: son structure with the following info + # chart_data with rooms : [list] + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + sensor = form_data.get('sensor') # one sensor + radar_part = form_data.get('radar_part') + buckets = ['no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'] + bucket_size = "no" if (result := form_data.get('bucket_size')) in (None, "") else (result.strip() if result.strip() in buckets else "no") + #bucket_size = res2 if (res := form_data.get('bucket_size')) is not None and (res2 := str(res).strip()) and res2 in {'no', '10s', '1m', '5m', '10m', '15m', '30m', '1h'} else 'no' + data_type = form_data.get('data_type') + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + # obtain devices_list for deployment_id + selected_date = selected_date.replace("_","-") + #timee = LocalDateToUTCEpoch(selected_date, time_zone_s)+5 + devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + sensor_data = {} + # see https://www.w3schools.com/cssref/css_colors.php + sensor_props = {"temperature": ["red", "°C"], + "humidity": ["blue", "%"], + "voc": ["orange", "PPM"], + "co2": ["orange", "PPM"], + "pressure": ["magenta", "Bar"], + "radar": ["cyan", "%"], + "light": ["yellow", "Lux"]} + result_dictionary = { + "last_report_at": "2025-02-06T20:09:00", + "color": sensor_props[sensor][0] if sensor in s_table else "grey", + "units": sensor_props[sensor][1] if sensor in s_table else "?" + } + #sensor_mapping = {"co2": "s4", "voc": "s9"} + #sensor = sensor_mapping.get(sensor, sensor) + + chart_data = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + line_part = ReadSensor3(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part, bucket_size) + window = sensor_legal_values[sensor][2] + line_part_t = [] + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + compressed_readings = convert_timestamps_lc(cleaned_values, time_zone_s) + + #compressed_readings = [(time.strftime("%H:%M", time.gmtime(lst[0][0])), float(sum(t for _, t in lst)/len(lst))) + #for _, lst in ((k, list(g)) + #for k, g in itertools.groupby(cleaned_values, key=lambda x: time.gmtime(x[0]).tm_hour))] + sensor_data[sensor] = compressed_readings + chart_data.append({'name': location_name, + 'data': compressed_readings}) + result_dictionary['chart_data'] = chart_data + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + #is_neste, device_details = check_and_parse(devices_list) + #if not is_nested: + #device_ids_list = [device_details[1]] + #well_ids_list = [device_details[0]] + #else: + #device_ids_list = list(map(lambda x: x[1], device_details)) + #well_ids_list =list(map(lambda x: x[0], device_details)) + #well_id = well_ids_list[0] + #all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + #for device_id in device_ids_list: + #device_id2_mac + #sensor_data = {} + #for sensor in sensor_list_loc: + #st = time.time() + #line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + #window = sensor_legal_values[sensor][2] + #line_part_t = [] + #line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + #st = time.time() + #cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #sensor_data[sensor] = cleaned_values + #all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + #dataa = {} + #dataa['Function'] = "single_slicedata" + #dataa['devices_list'] = devices_list + #dataa['all_slices'] = all_slices + #dataa['time_zone_st'] = time_zone_s + #dataa['well_id'] = well_id + #resp.media = package_response(dataa) + #resp.status = falcon.HTTP_200 + result_dictionary2 = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "last_report_at": "ISO TIMESTAMP", + "chart_data": [ + { + "rooms": [ + { "name": "Bathroom", + "data": [ + {"title": "12AM","value": 20}, + {"title": "01AM","value": 20}, + {"title": "02AM","value": 26}, + {"title": "03AM","value": 16}, + {"title": "04AM","value": 27}, + {"title": "05AM","value": 23}, + {"title": "06AM","value": 26}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 18}, + {"title": "09AM","value": 21}, + {"title": "10AM","value": 28}, + {"title": "11AM","value": 24}, + {"title": "12PM","value": 18}, + {"title": "01PM","value": 27}, + {"title": "02PM","value": 27}, + {"title": "03PM","value": 19}, + {"title": "04PM","value": 0}, + {"title": "05PM","value": 0}, + {"title": "06PM","value": 0}, + {"title": "07PM","value": 0}, + {"title": "08PM","value": 0}, + {"title": "09PM","value": 0}, + {"title": "10PM","value": 0}, + {"title": "11PM","value": 0} + ] + }, + { "name": "Kitchen", + "data": [ + {"title": "00AM","value": 19}, + {"title": "01AM","value": 10}, + {"title": "02AM","value": 8}, + {"title": "03AM","value": 14}, + {"title": "04AM","value": 20}, + {"title": "05AM","value": 8}, + {"title": "06AM","value": 7}, + {"title": "07AM","value": 17}, + {"title": "08AM","value": 3}, + {"title": "09AM","value": 19}, + {"title": "10AM","value": 4}, + {"title": "11AM","value": 6}, + {"title": "12PM","value": 4}, + {"title": "01PM","value": 14}, + {"title": "02PM","value": 17}, + {"title": "03PM","value": 20}, + {"title": "04PM","value": 19}, + {"title": "05PM","value": 15}, + {"title": "06PM","value": 5}, + {"title": "07PM","value": 19}, + {"title": "08PM","value": 3}, + {"title": "09PM","value": 30}, + {"title": "10PM","value": 1}, + {"title": "11PM","value": 12 } + ] + }, + { "name": "Living Room", + "data": [ + {"title": "00AM","value": 25}, + {"title": "01AM","value": 24}, + {"title": "02AM","value": 19}, + {"title": "03AM","value": 20}, + {"title": "04AM","value": 22}, + {"title": "05AM","value": 20}, + {"title": "06AM","value": 11}, + {"title": "07AM","value": 5}, + {"title": "08AM","value": 16}, + {"title": "09AM","value": 22}, + {"title": "10AM","value": 23}, + {"title": "11AM","value": 14}, + {"title": "12PM","value": 0}, + {"title": "01PM","value": 7}, + {"title": "02PM","value": 25}, + {"title": "03PM","value": 29}, + {"title": "04PM","value": 23}, + {"title": "05PM","value": 27}, + {"title": "06PM","value": 27}, + {"title": "07PM","value": 20}, + {"title": "08PM","value": 2}, + {"title": "09PM","value": 24}, + {"title": "10PM","value": 21}, + {"title": "11PM","value": 14 } + ] + } + ] + } + ] + } + payload = result_dictionary + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + #AddToLog(payload) + #return + elif function == "request_device_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + epoch_from_utc = form_data.get('epoch_from') + epoch_to_utc = form_data.get('epoch_to') + device_id = form_data.get('device_id') + well_id = form_data.get('well_id') + MAC = form_data.get('MAC') + sensor_list_loc = form_data.get('sensors_list') + sensor_list = sensor_list_loc.split(",") + device_ids_list = [device_id] + well_ids_list = [well_id] + maps_dates, positions_list = GetDeploymentDatesBoth(deployment_id) + + data_type = "RL" + #epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + #device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + #device_id2_mac + sensor_data = {} + for sensor in sensor_list: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + #cleaned_values = cleaned_values_t #add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + cleaned_values = ScaleToCommon(cleaned_values_t, sensor) + sensor_data[sensor] = cleaned_values + all_slices[device_id] = sensor_data + + dataa = {} + dataa['Function'] = "device_slicedata" + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['proximity'] = positions_list + dataa['well_id'] = well_id + dataa['MAC'] = MAC + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "request_single_radar_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + ctrl_key_state = form_data.get('ctrl_key_state') + alt_key_state = form_data.get('alt_key_state') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_index_list = [form_data.get('sensor_index_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + device_id2_mac = {device_details[1]: device_details[4]} + for device_id in device_ids_list: + device_id2_mac + sensor_data = {} + for sensor_index in sensor_index_list: + st = time.time() + sensor = ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7", "m8", "m08_max", "s2", "s3", "s4", "s5", "s6", "s7", "s8", "s28_max", "s28_min"][int(sensor_index)] + + line_part = ReadRadarDetail(device_id, sensor, epoch_from_utc, epoch_to_utc, alt_key_state) + window = sensor_legal_values["radar"][2] + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + if len(sensor) < 4: + sensor_data[sensor+"_max"] = cleaned_values + else: + sensor_data[sensor] = cleaned_values + all_slices[device_id2_mac[device_id]] = sensor_data #use MAC instead of device_id, since device is sending data with MAC only + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['devices_list'] = devices_list + dataa['all_slices'] = all_slices + dataa['time_zone_st'] = time_zone_s + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "get_deployment": + blob_data = read_file("deployment.html") + deployment_id = form_data.get('deployment_id') + #lets update "Deployments" select + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDeploymentsSelector(blob_data, users, False, deployment_id) + + resp.content_type = "text/html" + resp.text = blob_data + return + elif function == "get_deployment_j": + deployment_id = form_data.get('deployment_id') + time_zone_st = GetTimeZoneOfDeployment(deployment_id) + date = form_data.get('date') + if date == None: + + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + date = datetime.datetime.now(local_timezone).strftime('%Y-%m-%d') + + #epoch_from_utc = int(datetime.datetime.strptime(date, "%Y-%m-%d").timestamp()) + #devices_list, device_ids = GetProximityList(deployment_id, epoch_from_utc) + + dataa = {} + dataa['Function'] = "deployment_details" + if privileges == "-1": + deployment = DeploymentDetails(deployment_id) + dataa['deployment_details'] = deployment + else: + privileges = privileges.split(",") + if deployment_id in privileges: + deployment = DeploymentDetails(deployment_id) + dataa['deployment_details'] = deployment + + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + return + elif function == "get_beneficiary": + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + beneficiaries_list = [] + for beneficiary_temp in all_beneficiaries: + beneficiaries_list.append(str(beneficiary_temp[0])) + + dataa = {} + dataa['Function'] = "beneficiary_details" + if user_id in beneficiaries_list: + beneficiary = UserDetails(user_id) + #lets remove fields not relevant for beneficiary + try: + del beneficiary['time_edit'] + except: + pass + + try: + del beneficiary['user_edit'] + except: + pass + + try: + del beneficiary['access_to_deployments'] + except: + pass + dataa['beneficiary_details'] = beneficiary + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + elif function == "get_caretaker": + + user_name = form_data.get('user_name') + + + all_caretakers = ListCaretakers(privileges, user_name) + if len(all_caretakers) > 1: + user_id = form_data.get('user_id') + else: + user_id = str(all_caretakers[0][0]) + + caretakers_list = [] + for caretakers_temp in all_caretakers: + caretakers_list.append(str(caretakers_temp[0])) + + dataa = {} + dataa['Function'] = "caretaker_details" + if user_id in caretakers_list: + caretaker = UserDetails(user_id) + #lets remove fields not relevant for beneficiary + try: + del caretaker['time_edit'] + except: + pass + + try: + del caretaker['user_edit'] + except: + pass + + dataa['caretaker_details'] = caretaker + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + return + + elif function == "get_device": + device_id = form_data.get('device_id') + devices = GetVisibleDevices(privileges) + dataa = {} + dataa['Function'] = "device_details" + dataa['device_details'] = [] + if privileges == "-1": + device_det = GetDeviceDetails(device_id) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + dataa['device_details'] = device_det + else: + devices_list = [] + for device_id_temp in devices: + devices_list.append(str(device_id_temp[0])) + + if device_id in devices_list: + device_det = GetDeviceDetailsSingle(device_id) + if device_det['radar_threshold'] == None or device_det['radar_threshold'] == "": + device_det['radar_threshold'] = '["s3_max",12]' + + + dataa['device_details'] = device_det + + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + return + elif function == "request_deployment_map_new": + st = time.time() + print(f"$0 ----{time.time() - st}") + deployment_id = form_data.get('deployment_id') + map_type = form_data.get('map_type') + print(f"$1 ----{time.time() - st}") + maps_dates, positions_list = GetDeploymentDatesBoth(deployment_id) + print(f"$2 ----{time.time() - st}") + datee = form_data.get('date') + if maps_dates != []: + + if datee == "2022-4-2": #that one is default in HTML so disregard + datee = maps_dates[0] + + locations_desc_map = {} + for details in positions_list: + well_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location +" "+ details[3] + + if details[6] != None and details[6] != "": + location = location +" "+ details[6] + + MAC = details[4] + locations_desc_map[well_id] = location + print(f"$3 ----{time.time() - st}") + + dataa = {} + dataa['Function'] = "deployments_maps_report" + dataa['proximity'] = positions_list + maps_dates.sort(reverse = True) + dataa['maps_dates'] = maps_dates + dataa['device_count'] = len(positions_list) + dataa['map_type'] = map_type + + #MACs_list = GetMACsListSimple(positions_list) + #MACs_map = {} + + #for details in positions_list: + # id = details[0] + # MAC = details[3] + # MACs_map[id] = MAC + #for i in range(len(MACs_list)): + # MACs_map[devices_list[i]] = MACs_list[i][0] + + id = positions_list[0][0] + #dataa['MACs_map'] = MACs_map + dataa['locations_desc_map'] = locations_desc_map + #proximity_list = proximity.split(",") + print(f"$4 ----{time.time() - st}") + + if id < 200: + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'C>\n' + checkmarks_string = checkmarks_string + 'V>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>
' + else: #>200 = ["Temperature", "Humidity", "Pressure", "Light", "Radar", "VOC"] + + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>\n' + + checkmarks_string = checkmarks_string + 'S0>\n' + checkmarks_string = checkmarks_string + 'S1>\n' + checkmarks_string = checkmarks_string + 'S2>\n' + checkmarks_string = checkmarks_string + 'S3>\n' + checkmarks_string = checkmarks_string + 'S4>\n' + checkmarks_string = checkmarks_string + 'S5>\n' + checkmarks_string = checkmarks_string + 'S6>\n' + checkmarks_string = checkmarks_string + 'S7>\n' + checkmarks_string = checkmarks_string + 'S8>\n' + checkmarks_string = checkmarks_string + 'S9>
' + + checked_or_not = " checked" + + for index in range(len(positions_list)): + details = positions_list[index] + device_id = details[0] + location = details[2] + if details[3] != None and details[3] != "": + location = location + " " + details[3] + + if details[6] != None and details[6] != "": + location = location + " " + details[6] + + checkmarks_string = checkmarks_string + str(device_id) + '>\n' + checked_or_not = '' + + print(f"$5 ----{time.time() - st}") + + dataa['checkmarks'] = checkmarks_string + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "request_proximity": + deployment = form_data.get('deployment_id') + timee = form_data.get('time') + #timee = StringToEpoch(datee) + #print(deployment, timee) + well_ids, device_ids = GetProximityList(deployment, timee) + #print(proximity) + dataa = {} + dataa['Function'] = "proximity_report" + if len(well_ids) > 0: + dataa['proximity'] = well_ids + else: + dataa['proximity'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "request_devices": + deployment_id = form_data.get('deployment_id') + group_id = form_data.get('group_id') + location = form_data.get('location') + if location == "0": + location = "All" + is_fresh = form_data.get('is_fresh') + matching_devices = GetMatchingDevices(privileges, group_id, deployment_id, location) + dataa = {} + dataa['Function'] = "devices_report" + if len(matching_devices) > 0: + dataa['devices'] = matching_devices + else: + dataa['devices'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "device_form": + editing_device_id = form_data.get('editing_device_id') + + ok = StoreDevice2DB(form_data, editing_device_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "device_delete": + + #check if admin! + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_raw_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + if "part" in req_dict: + part = req_dict["part"][0] + else: + part = "" + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + timezone_str = req_dict["tzone"][0] + AddToLog("get_raw_data:" + str(MAC) +","+ str(sensor) + "," + str(from_time) + "," + str(to_time) + "," + part+ "," + timezone_str) + #raw_data = GetRawSensorData(container, MAC, sensor, from_time, to_time, timezone_str) + raw_data = GetRawSensorDataFromBlobStorage(MAC, sensor, part, from_time, to_time, timezone_str) + data_payload = {'raw_data': raw_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_candle_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + part = req_dict["part"][0] + tzone = req_dict["tzone"][0] + AddToLog(str(req_dict)) + candle_data = GetCandleSensorData(container, MAC, sensor, from_time, to_time, part, tzone) + data_payload = {'candle_data': candle_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployment_form": + editing_deployment_id = form_data.get('editing_deployment_id') + + ok = StoreDeployment2DB(form_data, editing_deployment_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "deployment_delete": + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployments_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_deployments = ListDeployments(privileges, user_id) + + cnt = 0 + + for deployment in all_deployments: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"deployment_id": deployment['deployment_id'], "email": user_id_2_user[deployment['beneficiary_id']][3], "first_name": user_id_2_user[deployment['beneficiary_id']][5], "last_name": user_id_2_user[deployment['beneficiary_id']][6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "device_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + #user_id = form_data.get('user_id') + + devices = GetVisibleDevices(privileges) + + payload = {'result_list': devices} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "device_list_by_deployment": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + deployment_id = form_data.get('deployment_id') + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + + if privileges == "-1": + devices = GetVisibleDevices(deployment_id) + else: + privileges = privileges.split(",") + if deployment_id in privileges: + devices = GetVisibleDevices(deployment_id) + + payload = {'result_list': devices} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "device_list_4_gui": + result_list = [] + deploymentData = [] + deviceData = [] + macs_list = [] + user_id = GetUserId(user_name) + all_deployments = ListDeployments(privileges, user_id) + #{'deployment_id': 21, 'beneficiary_id': 25, 'caretaker_id': 1, 'owner_id': 1, 'installer_id': 1, 'address_street': '661 Encore Way', 'address_city': 'San Jose', 'address_zip': '95134', 'address_state': 'CA', 'address_country': 'USA', 'devices': '["64B70888FAB0","64B70888F860","64B70888F6F0","64B708896BDC","64B708897428","64B70888FA84","64B70889062C"]', 'wifis': '', 'persons': 1, 'gender': 1, 'race': 1, 'born': 1940, 'pets': 0, 'time_zone': 'America/Los_Angeles'} + MAC2Deployment = {} + + for deployment in all_deployments: + beneficiary_id = deployment['beneficiary_id'] + user = GetNameFromUserId(beneficiary_id) + name = f"{user[1]} {user[2]}" + deploymentData.append({'deployment_id': str(deployment['deployment_id']), 'name': name}) + devices = deployment['devices'] + if devices != None: + + devices_list = ToList(devices) + for device in devices_list: + macs_list.append(device) + MAC2Deployment[device] = deployment['deployment_id'] + #deviceData.append({'well_id': device[0], 'mac': device[1]}) + + deployment_id_list = [] + deviceData = [] + + #row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + + with get_db_connection() as conn: + with conn.cursor() as cur: + device_ids, device_list = MACsToWellIds(cur, macs_list) + + + for device in device_list: + if MAC2Deployment[device[4]] != "": + deviceData.append({'well_id': device[0], 'mac': device[4], 'room_name': device[2], 'deployment_id': MAC2Deployment[device[4]]}) + + #deploymentData = [{'deployment_id': '21', 'name': 'Robert Zmrzli House'}, {'deployment_id': '36', 'name': 'Fred Zmrzli Apartment'}] + #deviceData = [{ 'well_id': '300', 'mac': '64B70888F6F0', 'room_name': 'Living Room', 'deployment_id': '21' }, { 'well_id': '301', 'mac': '64B70888F6F1', 'room_name': 'Bathroom Main', 'deployment_id': '36' }] + + payload = { + 'status': "success", 'deploymentData': deploymentData, 'deviceData': deviceData + } + + logger.debug(f"device_list_4_gui------ {payload} ------------------------------------------") + + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretaker_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + user_id = form_data.get('user_id') + if "@" not in email: + resp.media = package_response("Missing or illegal 'email' parameter", HTTP_400) + return + + print(privileges) + if privileges == "-1": + ok = StoreCaretaker2DB(form_data, editing_user_id, user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif "-1" in privileges: + payload = {'ok': 0, 'error': "Not allowed!"} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + + elif function == "caretaker_delete": + if privileges == "-1": + ok = DeleteRecordFromDB(form_data) + else: + ok = 0 + AddToLog(ok) + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretakers_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + if privileges == "-1": + all_caretakers = ListCaretakers(privileges, user_name) + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + elif "-1" in privileges: + all_caretakers = ListCaretakers(privileges, user_name) + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + user_id = GetUserId(user_name) + if "@" in email: + ok, error_string = StoreBeneficiary2DB(form_data, editing_user_id, user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': error_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_delete": + + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiaries_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + + cnt = 0 + + for beneficiary in all_beneficiaries: + cnt += 1 + if cnt >= first: + beneficiary_min_object = {"user_id": beneficiary[0], "email": beneficiary[3], "first_name": beneficiary[5], "last_name": beneficiary[6]} + result_list.append(beneficiary_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "activities_report_details": + deployment_id = form_data.get('deployment_id') + result_dictionary = { + "alert_text": "No alert", + "alert_color": "bg-green-100 text-green-700", + "chart_data": [ + { + "name": "Weekly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "Monday", "events": 186, "hours": 80 }, + { "title": "Tuesday", "events": 305, "hours": 200 }, + { "title": "Wednesday", "events": 237, "hours": 120 }, + { "title": "Thursday", "events": 73, "hours": 190 }, + { "title": "Friday", "events": 209, "hours": 130 }, + { "title": "Saturday", "events": 214, "hours": 140 }, + { "title": "Sunday", "events": 150, "hours": 100 } + ] + } + ] + }, + { + "name": "Monthly", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "01", "events": 67, "hours": 45 }, + { "title": "02", "events": 97, "hours": 67 }, + { "title": "03", "events": 87, "hours": 23 }, + { "title": "04", "events": 42, "hours": 12 }, + { "title": "05", "events": 64, "hours": 48 }, + { "title": "06", "events": 53, "hours": 34 }, + { "title": "07", "events": 75, "hours": 23 }, + { "title": "08", "events": 45, "hours": 56 }, + { "title": "09", "events": 85, "hours": 47 }, + { "title": "10", "events": 34, "hours": 29 }, + { "title": "11", "events": 49, "hours": 30 }, + { "title": "12", "events": 62, "hours": 33 }, + { "title": "13", "events": 75, "hours": 44 }, + { "title": "14", "events": 88, "hours": 57 }, + { "title": "15", "events": 94, "hours": 65 }, + { "title": "16", "events": 45, "hours": 21 }, + { "title": "17", "events": 76, "hours": 54 }, + { "title": "18", "events": 85, "hours": 62 }, + { "title": "19", "events": 43, "hours": 28 }, + { "title": "20", "events": 59, "hours": 34 }, + { "title": "21", "events": 78, "hours": 56 }, + { "title": "22", "events": 64, "hours": 39 }, + { "title": "23", "events": 93, "hours": 72 }, + { "title": "24", "events": 52, "hours": 28 }, + { "title": "25", "events": 71, "hours": 48 }, + { "title": "26", "events": 85, "hours": 63 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "01", "events": 61, "hours": 42 }, + { "title": "02", "events": 72, "hours": 36 }, + { "title": "03", "events": 94, "hours": 49 }, + { "title": "04", "events": 67, "hours": 59 }, + { "title": "05", "events": 54, "hours": 20 }, + { "title": "06", "events": 77, "hours": 64 }, + { "title": "07", "events": 81, "hours": 70 }, + { "title": "08", "events": 53, "hours": 25 }, + { "title": "09", "events": 79, "hours": 42 }, + { "title": "10", "events": 84, "hours": 65 }, + { "title": "11", "events": 62, "hours": 54 }, + { "title": "12", "events": 45, "hours": 23 }, + { "title": "13", "events": 88, "hours": 71 }, + { "title": "14", "events": 74, "hours": 44 }, + { "title": "15", "events": 91, "hours": 59 }, + { "title": "16", "events": 46, "hours": 31 }, + { "title": "17", "events": 73, "hours": 40 }, + { "title": "18", "events": 85, "hours": 63 }, + { "title": "19", "events": 78, "hours": 66 }, + { "title": "20", "events": 66, "hours": 42 }, + { "title": "21", "events": 95, "hours": 78 }, + { "title": "22", "events": 57, "hours": 39 }, + { "title": "23", "events": 72, "hours": 48 }, + { "title": "24", "events": 48, "hours": 21 }, + { "title": "25", "events": 89, "hours": 61 }, + { "title": "26", "events": 77, "hours": 44 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "01", "events": 94, "hours": 59 }, + { "title": "02", "events": 62, "hours": 48 }, + { "title": "03", "events": 76, "hours": 38 }, + { "title": "04", "events": 81, "hours": 62 }, + { "title": "05", "events": 64, "hours": 27 }, + { "title": "06", "events": 53, "hours": 31 }, + { "title": "07", "events": 92, "hours": 65 }, + { "title": "08", "events": 85, "hours": 42 }, + { "title": "09", "events": 74, "hours": 35 }, + { "title": "10", "events": 67, "hours": 55 }, + { "title": "11", "events": 49, "hours": 23 }, + { "title": "12", "events": 88, "hours": 75 }, + { "title": "13", "events": 93, "hours": 66 }, + { "title": "14", "events": 76, "hours": 34 }, + { "title": "15", "events": 59, "hours": 39 }, + { "title": "16", "events": 72, "hours": 51 }, + { "title": "17", "events": 83, "hours": 44 }, + { "title": "18", "events": 74, "hours": 33 }, + { "title": "19", "events": 69, "hours": 28 }, + { "title": "20", "events": 85, "hours": 56 }, + { "title": "21", "events": 53, "hours": 22 }, + { "title": "22", "events": 92, "hours": 70 }, + { "title": "23", "events": 71, "hours": 41 }, + { "title": "24", "events": 67, "hours": 25 }, + { "title": "25", "events": 86, "hours": 74 }, + { "title": "26", "events": 94, "hours": 68 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "01", "events": 57, "hours": 27 }, + { "title": "02", "events": 74, "hours": 33 }, + { "title": "03", "events": 84, "hours": 53 }, + { "title": "04", "events": 95, "hours": 68 }, + { "title": "05", "events": 71, "hours": 48 }, + { "title": "06", "events": 92, "hours": 76 }, + { "title": "07", "events": 85, "hours": 62 }, + { "title": "08", "events": 49, "hours": 25 }, + { "title": "09", "events": 66, "hours": 38 }, + { "title": "10", "events": 63, "hours": 31 }, + { "title": "11", "events": 75, "hours": 47 }, + { "title": "12", "events": 94, "hours": 72 }, + { "title": "13", "events": 79, "hours": 49 }, + { "title": "14", "events": 72, "hours": 45 }, + { "title": "15", "events": 88, "hours": 61 }, + { "title": "16", "events": 83, "hours": 52 }, + { "title": "17", "events": 92, "hours": 76 }, + { "title": "18", "events": 73, "hours": 40 }, + { "title": "19", "events": 65, "hours": 28 }, + { "title": "20", "events": 76, "hours": 63 }, + { "title": "21", "events": 58, "hours": 30 }, + { "title": "22", "events": 84, "hours": 67 }, + { "title": "23", "events": 72, "hours": 41 }, + { "title": "24", "events": 79, "hours": 46 }, + { "title": "25", "events": 63, "hours": 29 }, + { "title": "26", "events": 68, "hours": 39 } + ] + } + ] + }, + { + "name": "6 Months", + "rooms": [ + { + "name": "Bathroom", + "color": "purple", + "data": [ + { "title": "October", "events": 62, "hours": 23 }, + { "title": "November", "events": 76, "hours": 42 }, + { "title": "December", "events": 85, "hours": 54 }, + { "title": "January", "events": 94, "hours": 67 }, + { "title": "February", "events": 63, "hours": 35 }, + { "title": "March", "events": 81, "hours": 46 } + ] + }, + { + "name": "Bedroom", + "color": "#3b82f6", + "data": [ + { "title": "October", "events": 64, "hours": 35 }, + { "title": "November", "events": 88, "hours": 71 }, + { "title": "December", "events": 79, "hours": 54 }, + { "title": "January", "events": 72, "hours": 49 }, + { "title": "February", "events": 53, "hours": 32 }, + { "title": "March", "events": 93, "hours": 67 } + ] + }, + { + "name": "Kitchen", + "color": "orange", + "data": [ + { "title": "October", "events": 92, "hours": 65 }, + { "title": "November", "events": 85, "hours": 62 }, + { "title": "December", "events": 74, "hours": 49 }, + { "title": "January", "events": 63, "hours": 33 }, + { "title": "February", "events": 78, "hours": 56 }, + { "title": "March", "events": 69, "hours": 41 } + ] + }, + { + "name": "Other", + "color": "hotpink", + "data": [ + { "title": "October", "events": 88, "hours": 54 }, + { "title": "November", "events": 72, "hours": 39 }, + { "title": "December", "events": 84, "hours": 63 }, + { "title": "January", "events": 76, "hours": 46 }, + { "title": "February", "events": 93, "hours": 72 }, + { "title": "March", "events": 68, "hours": 29 } + ] + } + ] + } + ] + } + + payload = result_dictionary #{'result_dictionary': result_dictionary} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_list": + # works in UTC only + caretaker = user_name + #date_s = form_data.get('date') + time_s = form_data.get('time') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + privileges = GetPriviledgesOnly(caretaker) + + deployments_list = GetUsersFromDeployments(privileges) + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + for deployment_id, first_name, last_name in deployments_list: + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + if details != {}: + + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + # convert dates back to UTC + #details['bathroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['kitchen_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bathroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['bedroom_at'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['bedroom_at'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + #details['last_detected_time'] = pytz.timezone(details['time_zone']).localize(datetime.datetime.strptime(details['last_detected_time'], "%Y-%m-%dT%H:%M:%S")).astimezone(pytz.UTC).strftime("%Y-%m-%dT%H:%M:%S") + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + location_list.append(location_name) + + details["deployment_id"] = deployment_id + details["location_list"] = location_list + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + + elif function == "dashboard_single": + caretaker = user_name + #date_s = form_data.get('date') + date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + deployment_id = form_data.get('deployment_id') + filterr = form_data.get('filter') + if filterr == None: + filterr = 5 + + + #all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) #GetPriviledgesOnly + #AddToLog(all_beneficiaries) + + result_list = [] + + details = GetSensorsDetailsFromDeployment(deployment_id, date_s, filterr) + details["units"] = "°C" + if "America" in details["time_zone"]: + details["temperature"] = CelsiusToFahrenheit(details["temperature"]) + details["units"] = "°F" + devices_list, device_ids = GetProximityList(deployment_id, date_s) + location_list = [] + for room_details in devices_list: + well_id, device_id, location_name, description, MAC, radar_threshold_group_st, close_to = room_details #(266, 559, 'Bathroom', None, '64B70888FAB0', '["s3_max",12]') + location_list.append(location_name) + + details["deployment_id"] = deployment_id + details["location_list"] = location_list + settings = {"wellness_score": False, "last_seen": False, "sleep_report": False, "activity_report": False, "temperature": True, "humidity": True, "air_pressure": True, "light": True, "air_quality": True, "radar": True, "other_activities": False} + details["settings"] = settings + + + result_list.append(details) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + elif function == "request_node_red": + logger.error(f"------------------------------- {function} ------------------------------------------") + #this will: + # 1.prepare folder and settings.js + # 2.start instance on node-red and return it's return port + #caretaker = user_name + #date_s = form_data.get('date') + time_s = datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + #deployment_id = form_data.get('deployment_id') + #redis_conn.set('node_red_requests', str([radar_threshold_signal, radar_threshold_value])) + # Hashes (dictionaries) + logger.error(f"Storing to node_red_requests {user_name}") + redis_conn.hset('node_red_requests', mapping={ + 'user_name': user_name, + 'token': token, + 'time': time_s, + 'requests': 1 + }) + + payload = {'ok': 1} + logger.error(f"Responding {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_node_red_port": + #this will: + # 1.prepare folder and settings.js + # 2.start instance on node-red and return it's return port + hash_data = GetRedisMap(f'node_red_status_{user_name}') + port = 0 + if hash_data != {}: + port = hash_data['port'] + #date_s = form_data.get('date') + #date_s = datetime.datetime.utcnow().strftime("%Y-%m-%d") + #deployment_id = form_data.get('deployment_id') + payload = {'port': port} + logger.debug(f"get_node_red_port: {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + elif function == "activity_detected": + #this will: + # 1.store to REDIS time of last activity + time_s = form_data.get('time') + + hash_data = GetRedisMap(f'node_red_status_{user_name}') + port = 0 + if hash_data != {}: + port = hash_data['port'] + + redis_conn.hset(f'node_red_status_{user_name}', mapping={ + 'port': port, + 'last_activity': time_s + }) + + payload = {'ok': 1} + logger.debug(f"activity_detected: {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "store_flow": + #this will: + # 1.store flow into DB + time_s = form_data.get('time') + flow_json = form_data.get('flow') + logger.debug(f"store_flow: {flow_json}") + StoreFlow2DB(user_name, time_s, flow_json) + payload = {'ok': 1} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + elif function == "node-red_deployed": + #this will: + # 1.store flow into DB + time_s = form_data.get('time') + logger.debug(f"node-red_deployed: {user_name}") + redis_conn.hset('node-red_deployed', mapping={ + 'user_name': user_name, + 'token': token, + 'time': time_s, + 'requests': 1 + }) + + payload = {'ok': 1} + logger.error(f"Responding {payload}") + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + elif function == "get_z_graph": + #this will: + # 1.store flow into DB + deployment_id = form_data.get('deployment_id') + list_of_devices = [] + if privileges == "-1" or deployment_id in privileges: + devices = GetVisibleDevices(deployment_id) + + + if deployment_id != "": + #lets get all devices in this deployment + if privileges == "-1" or deployment_id in privileges: + devices = GetVisibleDevices(deployment_id) + if deployment_id in privileges: + devices = GetVisibleDevices(privileges) + else: + pass + #if all present, priorities are device_id, mac, well_id only one is sufficient + device_id = form_data.get('device_id') + well_id = form_data.get('well_id') + mac = form_data.get('mac') + + #lets find device_id from any + #if device_id != "" + + date_from = form_data.get('date_from') + date_to = form_data.get('date_to') + + g_type = form_data.get('g_type') + recreate = form_data.get('recreate') + filter = form_data.get('filter') + + logger.debug(f"filter: {filter}") + + #StoreFlow2DB(user_name, time_s, flow_json) + payload = {'ok': 1} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + + else: + AddToLog("Error: function not recognized!") + payload = {'ok': 0, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + except Exception as e: + print(traceback.format_exc()) + resp.media = package_response(f"Error: {str(e)} {traceback.format_exc()}", HTTP_500) + + + def on_put(self, req, resp, path=""): + """Handle PUT requests""" + if path == "users": + logger.info("PUT request to users endpoint") + try: + # Parse the request body + request_data = json.loads(req.stream.read().decode('utf-8')) + + # TODO: Implement user update logic + + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"id": request_data.get("id"), "message": "User updated"}) + except json.JSONDecodeError: + resp.status = HTTP_400 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"error": "Invalid JSON"}) + else: + resp.media = package_response(f"PUT to /{path} not implemented", HTTP_400) + + def on_delete(self, req, resp, path=""): + """Handle DELETE requests""" + if path == "users": + logger.info("DELETE request to users endpoint") + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_JSON + resp.text = json.dumps({"message": "User deleted"}) + else: + resp.media = package_response(f"DELETE to /{path} not implemented", HTTP_400) + +# Initialize data files + + +logger.error(f"------------------------------- STARTED ------------------------------------------") +try: + searches_text = read_file("searches.json") + searches_dict = json.loads(searches_text) if searches_text else {} + + dialogs_data = read_file("dialog.json") + dialog_dict = json.loads(dialogs_data) if dialogs_data else {"utterances": {}, "intents": {}} + + intent_map = dialog_dict.get("utterances", {}) + utterances = {} + for key in intent_map: + logger.debug(key) + list_of_utterances = intent_map[key] + for utterance in list_of_utterances: + utterances[utterance] = key + + intents = dialog_dict.get("intents", {}) +except Exception as e: + logger.error(f"Error initializing data files: {str(e)}") + searches_dict = {} + utterances = {} + intents = {} + +# Create Falcon application with middleware +middlewares = [CORSMiddleware(), RequestParser(), StripPathMiddleware()] +try: + # For newer Falcon versions + app = falcon.App(middleware=middlewares) +except: + # For older Falcon versions + app = falcon.API(middleware=middlewares) + +#logger.error(f"@1") +# Add routes for well-api +well_api_instance = WellApi() + +# New routes for well_api with multiple access paths +app.add_route('/function/well-api', well_api_instance) +app.add_route('/function/well-api/{path}', well_api_instance) +app.add_route('/api/well_api', well_api_instance) +app.add_route('/api/well_api/{path}', well_api_instance) +app.add_route('/healthz', well_api_instance, suffix='healthz') + +# Add routes for the standard API paths +app.add_route('/health', well_api_instance) +app.add_route('/users', well_api_instance) +app.add_route('/items', well_api_instance) + +# Keep the original routes for backward compatibility +app.add_route('/', well_api_instance) +app.add_route('/{path}', well_api_instance) + +MQTTSERVERL = "eluxnetworks.net" +MQTT_PortL = 443 + +MyName = "well-api" + +clientL = mqtt.Client(client_id=MyName+str(time.time()), transport="websockets") +clientL.tls_set(cert_reqs=ssl.CERT_NONE) # For self-signed certs, use proper CA in production +clientL.ws_set_options(path="/mqtt") # Important! Same path as in your JS code +clientL.username_pw_set("well_user","We3l1_best!") + +clientL.on_connect = on_connectL +clientL.on_message = on_messageL + +#clientL.connect(MQTTSERVERL, MQTT_PortL, 60) +#lientL.loop_start() +#logger.error(f"@2") + +# This code runs when executed directly (for development/debugging) +if __name__ == "__main__": + from wsgiref.simple_server import make_server + redis_conn = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, db=REDIS_DB) + # Use port 8000 for local debugging + port = int(os.environ.get('PORT', 8004)) + + # Create a WSGI server + with make_server('', port, app) as httpd: + print(f'Serving on port {port}...') + + # Serve until process is killed + httpd.serve_forever() +else: + redis_conn = redis.Redis(host=redis_host, port=6379, db=0) diff --git a/well_web_files/deployment.html b/well_web_files/deployment.html new file mode 100644 index 0000000..945be5f --- /dev/null +++ b/well_web_files/deployment.html @@ -0,0 +1,4729 @@ + + + +Deployment View + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ + + +
+
+
+

Deployment History Overview

+
+
+ + +
+
+
+ T> + H> + P> + C> + V> + L> + R> + + ------ 23> + 26> + 29> + 34> + 38> + 38> + 38> + 38> + 38> + 38> +
+ +
+ Date: + + + + + -------- Deployment: + + + + + --- Export To Date: + + + --- Consolidate By: + +
+ Time Range for slice: + + -------- Group by: + + -------- Radar part: + + -------- Map Type: + + + -----Global Max + -----B/W- + -----Motion- + -----Fast- + -----Filter- +
+
+ Equilize to 100% + . Derivative + . Re-Create + + + + + -------- Presence Type: + + +
+
+
+ + Your browser does not support the HTML5 canvas tag. + +
+ + + + + +
+
+ This browser does not seem to support HTML5 Canvas. + +
+
+
+ +
+
+ +
+ +
+ + + + + + + + + + + + + + diff --git a/well_web_files/devices.html b/well_web_files/devices.html new file mode 100644 index 0000000..9a670c2 --- /dev/null +++ b/well_web_files/devices.html @@ -0,0 +1,2292 @@ + + + + + + WellPlugs Administrator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+

+ Options Filter by: +

+ +
+
+
+ + +
+ Group: + + + +
+
+ Deployment: + + + + + + + Location: + +
+
+
+
+ +
+
+
+

Parameters

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Settings +
SensorUp ThresholdDown ThresholdLP FilterPr noiseSns noiseEst error
Radar
Light
Pressure
Temperature
Humidity
CO2
VOC
+
+
+

+

+ Firmware version: + + +
+
+ Hardware version: + + LED Schema: + +

+ Scan BLE every [s]: + + for [s]: + + T offset: + + R threshold: + +

+ Slow to Fast sensing ratio: + + Reporting period [s]: + + +

+ No change report every [s]: + + +

+ +
+

KEY: + +

+
+ + + +
+ +
+ WF SSDS: +
+ BT MACS: + +

+
+ +
+ Device ID: + + Last Reboot @: + + Time Zone: + +

+ +

Description: + + Close to: + +
+

+Owner: + +
+SSID: + + Pass: + + +

+
+ LED pattern: + + Other: + + + +

+ + +
+ + + +
+
+ +
+
+ + +
+ +
+ +
+ +
+ +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Devices +
IdMACLast MessageLast RebootFirmware Ver.LocationDescriptionDeploymentEnable change
1
+ +
+
+
+
+ + +
+ + + + +
+
+ +
+
+ + + diff --git a/well_web_files/dialog.json b/well_web_files/dialog.json new file mode 100644 index 0000000..9a40c65 --- /dev/null +++ b/well_web_files/dialog.json @@ -0,0 +1,56 @@ +{ + "utterances":{ + "help_intent":["what can you do","what can you provide", "help"], + "status_intent":["how is dad doing", "how is dad", "how is mom", "how's my dad doing", "how is that doing","how's dad doing","how is my dad doing", "dad doing", "how's my mom doing", "how's mom doing", "how is my mom doing","how is mom doing", "mom doing"], + "location_intent":["where is he now","where is she now", "where now", "where","where is that now","where is dead now","where is mom now","where is mum now"], + "temperature_intent":["what is the temperature there","what's the temperature there","what's the temperature","where is the temperature","what is temperature there", "temperature there", "temperature"], + "sleeping_intent":["how is his sleep", "how is her sleep", "how was his sleep", "how was her sleep", "how was his night", "how was her night", "sleep", "night"], + "restroom_intent":["how about bathroom use", "how about restroom use", "how often did dad use restroom last night", "bathroom", "restroom"], + "shower_intent":["how often is dad taking shower", "how often is that taking shower", "how often is he taking shower", "how often is mom taking shower", "how often is she taking shower", "taking shower", "shower"], + "environment_intent":["how is his environment", "how is her environment", "environment"], + "mold_intent":["can you smell any mold", "mold"], + "visitors_intent":["did my dad get any visitors recently", "visitors", "visitor"], + "oxygen_intent":["what is his oxygen level", "what is his oxygen", "oxygen"], + "hr_intent":["what is his heart rate", "what is his heartrate", "heart rate", "heartrate"], + "bp_intent":["what is his blood pressure", "what is his pressure", "his blood pressure", "blood pressure", "pressure"], + "ekg_intent":["what is his ekg", "what is his heartbeam ekg", "what is his heartbeat ekg", "what is his heart being ekg", "his ekg", "ekg"], + "kitchen_intent":["when was kitchen used", "was stowe left on", "kitchen", "stowe"], + "week_intent":["show me his week activity", "show me his weekly activity", "show me his weak activity", "show me her week activity", "show me her weekly activity", "show me her weak activity", "show week", "show his week", "show her week"] + }, + "keywords":{ + "help_intent":["help"], + "status_intent":["doing", "status"], + "location_intent":["where","location"], + "temperature_intent":["temperature"], + "sleeping_intent":["sleep", "night"], + "restroom_intent":["bathroom", "restroom"], + "shower_intent":["shower"], + "environment_intent":["environment"], + "mold_intent":["mold"], + "visitors_intent":["visit", "visitor", "visitors"], + "kitchen_intent":["stove", "kitchen"], + "oxygen_intent":["oxygen"], + "hr_intent":["heart rate"], + "bp_intent":["pressure"], + "ekg_intent":["ekg"], + "week_intent":["week"] + }, + "intents":{ + "help_intent":["#HELP#"], + "status_intent":["#STATUS#"], + "sleeping_intent":["#SLEEP#"], + "restroom_intent":["#BATHROOM#"], + "shower_intent":["#SHOWER#"], + "environment_intent":["#ENVIRONMENT#"], + "temperature_intent":["#TEMPERATURE#"], + "location_intent":["#LOCATION#"], + "mold_intent":["#MOLD#"], + "visitors_intent":["#VISITORS#"], + "kitchen_intent":["#KITCHEN#"], + "oxygen_intent":["#OXYGEN#"], + "hr_intent":["#HEART_RATE#"], + "bp_intent":["#BLOOD_PRESSURE#"], + "ekg_intent":["#EKG#"], + "week_intent":["#WEEK#"] + } +} diff --git a/well_web_files/edit_beneficiary.html b/well_web_files/edit_beneficiary.html new file mode 100644 index 0000000..1fcff75 --- /dev/null +++ b/well_web_files/edit_beneficiary.html @@ -0,0 +1,291 @@ + + + + + + + + + Beneficiary + + + + + + +
+

Beneficiary Information Id = 23

+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+

Address

+ + + + + + + + + + + + + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ + + + diff --git a/well_web_files/edit_caretaker.html b/well_web_files/edit_caretaker.html new file mode 100644 index 0000000..7220546 --- /dev/null +++ b/well_web_files/edit_caretaker.html @@ -0,0 +1,292 @@ + + + + + + + + + Caretaker + + + + + + +
+

Caretaker Information Id = 23

+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+

Address

+ + + + + + + + + + + + + + +
+ +
+

+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ + + + diff --git a/well_web_files/edit_deployment.html b/well_web_files/edit_deployment.html new file mode 100644 index 0000000..f2c33fc --- /dev/null +++ b/well_web_files/edit_deployment.html @@ -0,0 +1,340 @@ + + + + + + + + + Deployment + + + + + + +
+

Deployment Information Id = 23

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+

Address

+ + + + + + + + + + + + + + +
+ +
+ + +
+ + +
+ + +
+ + +
+ + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+ +
+ + +
+ +
+ + + +
+
+ + +
+
+ + + + diff --git a/well_web_files/edit_device.html b/well_web_files/edit_device.html new file mode 100644 index 0000000..dd7f70c --- /dev/null +++ b/well_web_files/edit_device.html @@ -0,0 +1,278 @@ + + + + + + + + + Device + + + + + + +
+

Device Information Id = ?

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+
+ + +
+
+ + + + diff --git a/well_web_files/edit_user.html b/well_web_files/edit_user.html new file mode 100644 index 0000000..cb54f13 --- /dev/null +++ b/well_web_files/edit_user.html @@ -0,0 +1,362 @@ + + + + + + + + + User + + + + + + +
+

User Information

+ + +

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ + +
+ + +
+

Address

+
+ + +
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ + +
+ + + +
+ + +
+ + +
+ + +
+
+ + + + diff --git a/well_web_files/favicon.ico b/well_web_files/favicon.ico new file mode 100644 index 0000000..8e1f8fd Binary files /dev/null and b/well_web_files/favicon.ico differ diff --git a/well_web_files/footer.png b/well_web_files/footer.png new file mode 100644 index 0000000..e70dc25 Binary files /dev/null and b/well_web_files/footer.png differ diff --git a/well_web_files/header.png b/well_web_files/header.png new file mode 100644 index 0000000..0e9764d Binary files /dev/null and b/well_web_files/header.png differ diff --git a/well_web_files/multi_day_template.png b/well_web_files/multi_day_template.png new file mode 100644 index 0000000..56648c8 Binary files /dev/null and b/well_web_files/multi_day_template.png differ diff --git a/well_web_files/multi_day_template2.png b/well_web_files/multi_day_template2.png new file mode 100644 index 0000000..68fb857 Binary files /dev/null and b/well_web_files/multi_day_template2.png differ diff --git a/well_web_files/my_devices.html b/well_web_files/my_devices.html new file mode 100644 index 0000000..9fa916a --- /dev/null +++ b/well_web_files/my_devices.html @@ -0,0 +1,1736 @@ + + + + + +WellPlugs Administrator + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+

Options Filter by:

+ +
+
+
+ + + + + + + +
Deployment: + + + Location: + +
+
+
+
+
+
+
+

Parameters

+ + + +
+

Settings

+ +
+
+
+
+
+ LED pattern: + + +
+
+ Scan BLE every [s]: + + for [s]: + +

+ R threshold: + +

+ + Reporting period [s]: + +
+
+ + + +
+
Well ID: + + Time Zone: + +
+
+

Description: + +
+

+
+ SSID(s): + +
+ Pass: + + +
+
+
+

+ +
+ +
+
+ +

Devices

+
+ + + + + + + + + + + + + + + ###ROWS### + +
IdWell IdMACLast MessageLocationDescriptionDeploymentEnable change +
+
+
+
+
+
+
+
+ +
+
+ + + + + diff --git a/well_web_files/my_devices_old.html b/well_web_files/my_devices_old.html new file mode 100644 index 0000000..7ab90c8 --- /dev/null +++ b/well_web_files/my_devices_old.html @@ -0,0 +1,5088 @@ + + + + + +WellPlugs Administrator + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+

Options Filter by:

+ +
+
+
+ + + + + + + +
Deployment: + + + Location: + +
+
+
+
+
+
+
+

Parameters

+ + + +
+

Settings

+ +
+
+
+
+
+ LED pattern: + + +
+
+ Scan BLE every [s]: + + for [s]: + +

+ R threshold: + +

+ + Reporting period [s]: + +
+
+ + + +
+
Well ID: + + Time Zone: + +
+
+

Description: + +
+

+
+ SSID(s): + +
+ Pass: + + +
+
+
+

+ +
+ +
+
+ +

Devices

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
IdWell IdMACLast MessageLocationDescriptionDeploymentEnable change +
296515002919DF28417 s?0
29750308398C717DC732 d 3 h 49 m 3 s?0
2985308398E056AC732 d 3 h 49 m 3 sBathroomSmall Bathroom0
29938308398C7245C1153 d 23 h 52 m 23 s?Eye Tech0
30035308398C722F01149 d 23 h 17 m 23 s?0
30113308398C721E4732 d 11 h 9 m 3 s? Close to bed0
3023308398C72CDC732 d 4 h 52 m 23 s?0
3039308398C721F4732 d 5 h 17 m 23 s?0
30417308398E057241226 d 19 h 55 m 43 s?0
3050DE2F6273361B1225 d 9 h 20 m 43 s?0
30641308398E055C81069 d 12 h 15 m 43 sHallwayET-B40
30739308398C71C841153 d 23 h 52 m 23 s?0
30829308398E055CC1153 d 23 h 52 m 23 s?0
30943308398DF2FFC1006 d 17 h 12 m 23 sBathroomET-B40
31020308398C718E0544 d 12 h 57 m 23 s?Kitchen Close to office0
31124308398C71738732 d 5 h 15 m 43 s?0
31236308398DF31041223 d 0 h 52 m 23 s?0
31345308398C727AC1009 d 2 h 44 m 3 sDining RoomET-B40
31426308398E056A41069 d 12 h 10 m 43 sBedroom0
31523308398DF2EDC1153 d 23 h 52 m 23 s?0
31614308398C724FC732 d 3 h 39 m 3 sKitchenU kuhinji Close to Stove0
31742308398C71B04732 d 6 h 4 m 3 s?0
3183798CDACD07240732 d 14 h 19 m 3 s?0
31930308398E056581153 d 23 h 52 m 23 s?0
3201308398DF31181147 d 23 h 34 m 3 s?Eye Tech0
3212308398DF2FC8732 d 6 h 12 m 23 sRoomET-RB0
32212308398DF2F541070 d 6 h 17 m 23 s?Office Close to on desk0
32315308398C727541153 d 23 h 52 m 23 s?0
32422308398E058041190 d 19 h 55 m 43 s?Eye Tech0
3250CA09FD8223DB1189 d 10 h 54 m 3 s?0
32640308398C71EA81153 d 23 h 52 m 23 s?0
32747308398DF2EF41041 d 11 h 52 m 23 sBedroomET-B40
328498CDACD074A01154 d 1 h 24 m 3 s?0
32931308398DF2F0C1153 d 23 h 52 m 23 s?0
33028308398DF31741153 d 23 h 52 m 23 s?0
3310308398C720401179 d 10 h 12 m 23 s?0
33246308398DF328C544 d 18 h 2 m 23 s?0
33305A815C5216471179 d 10 h 5 m 43 s?0
33427308398C717A01170 d 20 h 0 m 43 s?Broken0
33521308398DF2FF01153 d 23 h 52 m 23 s?0
33619308398C727D01074 d 2 h 55 m 43 s?0
33733308398C721E0732 d 5 h 34 m 3 s?0
33844308398E055C01056 d 4 h 25 m 43 sGarageET-B40
33925308398C7293C1153 d 23 h 52 m 23 s?0
34049308398C71B60732 d 12 h 42 m 23 s?0
34116308398E055E8732 d 7 h 25 m 43 s? Close to Bed0
34222308398C721401154 d 23 h 49 m 3 s?0
34303C26406B95661169 d 5 h 40 m 43 s?0
34432308398E056BC1074 d 5 h 55 m 43 s?0
3450940E5EC56E2F1160 d 18 h 37 m 23 s?0
3460977C2C3D360A1160 d 18 h 37 m 23 s?0
34709BFF446905F71158 d 19 h 55 m 43 s?0
3480308398C718281149 d 20 h 19 m 3 s?0
349002C063642E4A1147 d 11 h 52 m 23 s?0
35008BCD25F11DB91119 d 14 h 44 m 3 s?0
3510AD685A81D9BF1118 d 19 h 17 m 23 s?0
3520861C78F35F751098 d 1 h 7 m 23 s?0
35301AC8CBC1FE2A999 d 14 h 29 m 3 s?0
354048249F9A13B3900 d 6 h 40 m 43 s?0
3550D16D9B26CDB6889 d 15 h 49 m 3 s?0
35603F96C206BBF8729 d 0 h 37 m 23 s?0
35710164B7088902B8312 d 16 h 4 m 3 sBedroomnull0
358102308398C72E58311 d 22 h 59 m 3 sKitchen Close to Fridge0
35910364B708896BD8369 d 3 h 19 m 3 sOffice Close to on desk0
36010464B708890988311 d 22 h 25 m 43 sLiving Roomnull Close to on desk0
361105308398C7259C491 d 9 h 5 m 43 sDining Room Close to on desk0
36210664B708890298311 d 23 h 5 m 43 sBathroomnull0
3631074C75259783E0310 d 0 h 50 m 43 sBathroomMalo 0
36410864B708890F88No data?0
36510964B708896BE0515 d 23 h 44 m 3 sLiving Room0
36611064B70888FB58515 d 23 h 44 m 3 s?0
36711164B708890F78305 d 2 h 12 m 23 sBedroomBedroom0
36811264B7088905D0515 d 23 h 44 m 3 s?0
36911364B7088905E0305 d 5 h 34 m 3 sLiving Room0
37011464B7088907C4514 d 0 h 0 m 43 s?0
37111564B70888FB84403 d 17 h 32 m 23 sKitchenKitchen0
37211664B7088904F0298 d 22 h 5 m 43 sLiving Roomtree0
37311764B7088904F8305 d 2 h 52 m 23 sBathroom Main0
37411864B708890F6C403 d 17 h 32 m 23 s?0
37511964B70888FB80305 d 7 h 2 m 23 sDining Room0
376120D8A01D4C79F0305 d 4 h 45 m 43 sKitchen0
37712164B7088904D0515 d 23 h 45 m 43 s?0
37812264B7088902A4403 d 17 h 32 m 23 s?Master Bathroom Close to Master0
379123308398C72C1C274 d 20 h 57 m 23 s?Living room0
38012464B7088905D8403 d 17 h 32 m 23 s?Office0
38112564B7088905DC527 d 17 h 35 m 43 s?Kitchen0
38212664B708890618403 d 17 h 32 m 23 s?Bedroom0
38312764B7088902AC403 d 17 h 32 m 23 s?Bathroom guest0
38412864B708890F74535 d 3 h 15 m 43 s?0
38512964B7088904E8403 d 17 h 32 m 23 sOfficemoj0
38613064B7088905C8311 d 23 h 40 m 43 sDining Roomnull0
3871314C7525A8454C289 d 13 h 35 m 43 s?0
38813264B7088905FC294 d 2 h 12 m 23 s?0
389133308398C724E4335 d 9 h 37 m 23 s?0
39013464B708890F68273 d 21 h 10 m 43 s?0
39113564B7088904EC314 d 23 h 40 m 43 s?0
39213664B7088904DC403 d 17 h 32 m 23 s?0
39313764B7088907AC403 d 17 h 32 m 23 s?0
39413864B7088904F4403 d 17 h 32 m 23 s?0
39513964B7088902A8403 d 17 h 32 m 23 s?0
39614064B7088907D8491 d 2 h 29 m 3 s?0
39714164B70888FB50321 d 22 h 10 m 43 sOfficenull Close to on desk0
39814264B708890294280 d 12 h 24 m 3 sBathroom Guest0
39914364B7088905E4278 d 22 h 44 m 3 sOfficeBedroom0
40014464B708896BF0277 d 19 h 32 m 23 sBedroom Master0
40114564B7088905E8280 d 12 h 25 m 43 sLiving Room0
40214664B7088904FC280 d 4 h 27 m 23 sKitchen0
40314764B70888FB48305 d 5 h 40 m 43 sBathroom Close to Small Bathroom0
40414864B70889029C403 d 17 h 32 m 23 s?0
40514964B7088907B4294 d 18 h 37 m 23 sKitchen Close to Stove0
40615064B70889028C369 d 3 h 15 m 43 s?0
40715164B708890290305 d 6 h 9 m 3 sBathroom0
40815264B708890F84403 d 17 h 32 m 23 s?Na stolu0
40915364B70888FB68491 d 2 h 29 m 3 s?0
41015464B708890F70305 d 5 h 35 m 43 sBedroom Close to bed0
41115564B7088905F4438 d 16 h 52 m 23 sOfficeY Close to Bed0
412156308398C71D24491 d 2 h 29 m 3 s?0
41315764B708896BD4491 d 2 h 29 m 3 s?0
41415864B70888FB60403 d 17 h 32 m 23 s?0
41515964B708890500273 d 22 h 47 m 23 sBedroomMila0
41616064B70888FB54403 d 17 h 32 m 23 s?0
417161308398C7202C488 d 2 h 59 m 3 s?0
41816264B708890F60504 d 12 h 12 m 23 s?0
419163D8A01D4DA814504 d 12 h 10 m 43 s?0
42016464B7088907C0504 d 12 h 12 m 23 s?0
421165308398DF2F3C504 d 12 h 12 m 23 s?0
42216664B708896C1C504 d 12 h 12 m 23 s?0
423167D8A01D692CA0504 d 12 h 12 m 23 s?0
42416864B708896BCC504 d 12 h 12 m 23 s?0
42516964B708890980504 d 12 h 12 m 23 s?0
42617064B70888FB7C403 d 17 h 32 m 23 s?0
42717164B7088907B8504 d 12 h 12 m 23 s?0
42817264B7088907CC504 d 12 h 12 m 23 s?0
42917364B7088902CC403 d 17 h 32 m 23 s?0
430174D8A01D4DA4B8504 d 12 h 12 m 23 s?0
431175308398C72DD4504 d 12 h 12 m 23 s?0
432176308398C71E60536 d 23 h 4 m 3 s?0
43317764B7088907BC504 d 12 h 12 m 23 s?0
43417864B7088904E0504 d 12 h 10 m 43 s?0
43517964B7088904D8504 d 12 h 12 m 23 s?0
43618064B7088905CC504 d 12 h 12 m 23 s?0
43718164B708890F64504 d 12 h 10 m 43 s?0
438182D8A01D4C7BE4504 d 12 h 12 m 23 s?0
43918324A1604E21D4495 d 23 h 20 m 43 s?0
44018464B7088907DC490 d 23 h 57 m 23 s?0
44118564B7088904E4495 d 23 h 19 m 3 s?0
44218664B708890F5C495 d 23 h 20 m 43 s?0
44318764B7088907C8329 d 8 h 34 m 3 sLiving Room0
44418898CDACF0BCFC273 d 22 h 55 m 43 sBedroomMaster0
44518964B7088907D4403 d 17 h 32 m 23 s?0
44619064B7088905D4403 d 17 h 32 m 23 s?0
44719164B708890F80403 d 17 h 32 m 23 s?0
44819264B7088907D0403 d 17 h 30 m 43 s?0
44919364B7088902B020243 d 22 h 18 m 25 s?0
45019464B70888FB7420243 d 22 h 18 m 28 s?0
45119564B70889097C20243 d 22 h 18 m 30 s?0
45219664B708896C1820243 d 22 h 18 m 28 s?0
453197308398C72EF820243 d 22 h 18 m 30 s?0
45419864B70888FB78273 d 22 h 55 m 43 sBedroomErnie0
45519964B7088902A0273 d 22 h 52 m 23 sKitchen0
456100308398DF3100403 d 17 h 32 m 23 s?0
457016FC0BA69F9F554 d 1 h 15 m 43 s?0
45806B458FCE0E3C547 d 19 h 10 m 43 s?0
4590D0B328108FEC546 d 19 h 40 m 43 s?0
4600A3C8F90A1EE9540 d 20 h 54 m 3 s?0
4610CD0299DEC7CB540 d 19 h 19 m 3 s?0
4620AB287276CCDF540 d 16 h 34 m 3 s?0
4630EBAC5CCE3B32540 d 15 h 37 m 23 s?0
4640722AF199E6CE540 d 15 h 34 m 3 s?0
465016915C4271DE540 d 15 h 10 m 43 s?0
46602A0FFCC4C580540 d 14 h 52 m 23 s?0
467046FAE07996FD540 d 2 h 25 m 43 s?0
46805F37455807FB540 d 2 h 9 m 3 s?0
46903F5ECD608CD3540 d 1 h 37 m 23 s?0
4700329E0C0D0AC7540 d 0 h 52 m 23 s?0
471017CA7205A8BB539 d 21 h 32 m 23 s?0
47202978FC972A13539 d 20 h 30 m 43 s?0
4730AD520B68CC3F539 d 19 h 42 m 23 s?0
47406C19CEBE50B4539 d 16 h 35 m 43 s?0
4750A33DA79FB4ED539 d 16 h 29 m 3 s?0
4760DBF9D5E3D847539 d 16 h 25 m 43 s?0
47701EB4099F8C26539 d 15 h 32 m 23 s?0
4780DF26BB5708A8539 d 15 h 14 m 3 s?0
47903C265D816C75539 d 15 h 4 m 3 s?0
480034927A9415AB539 d 14 h 34 m 3 s?0
48103D05EE0811F9539 d 14 h 9 m 3 s?0
4820F9C881AA65E0539 d 13 h 49 m 3 s?0
4830AB1173AB173C539 d 13 h 15 m 43 s?0
4840CC70C4CD7937539 d 13 h 15 m 43 s?0
48508D9B99C581FD539 d 12 h 25 m 43 s?0
4860BBDA40EA0A86539 d 12 h 7 m 23 s?0
487081BC783E4996539 d 10 h 17 m 23 s?0
4880FFCCAE8F0215539 d 9 h 42 m 23 s?0
48903BD19859E2E0539 d 9 h 35 m 43 s?0
4900CCF8FB26533B539 d 7 h 12 m 23 s?0
49100E1EBDE28BA8539 d 5 h 35 m 43 s?0
4920AF036F22BCB7539 d 4 h 42 m 23 s?0
4930205D6834E4E8535 d 17 h 50 m 43 s?0
4940B69C2BB08639535 d 17 h 47 m 23 s?0
495164B708890524415 d 22 h 10 m 43 s?0
49620164B708890584309 d 3 h 32 m 23 sKitchen Close to toaster0
49720264B7088906D8403 d 17 h 15 m 43 sKitchen Close to stove0
49820364B708890B14308 d 23 h 22 m 23 sLiving Room0
49920464B708890288308 d 23 h 17 m 23 sBathroom Guest0
50020564B708897018308 d 22 h 57 m 23 sOffice0
50120664B708896F78308 d 22 h 52 m 23 sKitchen0
50220764B7088904B021 s?0
50320864B7088976BC403 d 17 h 15 m 43 s?0
50420964B708890874308 d 22 h 35 m 43 s?0
50521064B708890A38308 d 22 h 27 m 23 sKitchen Close to above toaster0
50621164B7088901E8309 d 16 h 25 m 43 sKitchen0
50721264B708896C3C309 d 16 h 37 m 23 sKitchenStove0
50821364B708890800307 d 15 h 40 m 43 sBedroom0
50921464B70889761C408 d 6 h 52 m 23 s?0
51021564B7088909FC403 d 17 h 15 m 43 sBedroom0
51121664B708896E9016 sBathroom Mainmaster0
51221764B70889739C308 d 13 h 30 m 43 sOffice0
51321964B708890448307 d 2 h 35 m 43 sKitchen0
51429464B708890888345 d 18 h 50 m 43 s?0
51523464B7088901D0402 d 7 h 50 m 43 sBedroom0
51608FAB8CBDAA5F17 s?0
51722264B708890488386 d 9 h 15 m 43 sHallwayOpen space0
51822064B708890F0419 s?0
51923164B70889046C408 d 6 h 52 m 23 s?0
52022164B708890954408 d 6 h 42 m 23 s?0
52121864B7088909B8308 d 22 h 10 m 43 sBathroom0
52227464B708890614403 d 17 h 42 m 23 s?0
52327864B70889050C403 d 17 h 42 m 23 s?0
52427364B708896BDC403 d 17 h 42 m 23 sKitchen0
52527264B708890A0022 s?0
52627564B70888F8BC19 sBathroom Main0
52727964B70889047421 sHallwayDog food area0
52827164B708890E54403 d 17 h 42 m 23 s?0
52927664B7088908A0403 d 17 h 42 m 23 sBathroom0
53028064B7088908BC19 sLiving Room0
53124064B7088909B0403 d 17 h 15 m 43 sLiving Room0
53223764B7088905BC18 sLiving Room Close to tree0
53323964B70888FAD424 sOfficeMy0
53423664B708890F2C16 sKitchen0
53523864B70889089824 sBathroomsmall0
53624164B7088908C018 s?0
53724364B7088907F8403 d 17 h 15 m 43 sBedroom0
53824464B70889036C25 sHallway0
53924564B70889038822 sKitchen0
54024664B70889087C16 sBathroom0
54124764B708896FE424 sBedroom0
54224864B70888FAA016 sBathroom0
54324964B70889030C19 sLiving Room0
54425164B7088909E821 sBathroom0
54525364B7088976A4309 d 22 h 4 m 3 s?0
54625264B708890734403 d 17 h 15 m 43 sBedroom0
54725464B7088901E4309 d 21 h 54 m 3 sLiving Room0
54825564B70889074C20 sDining Room0
54925664B70889032C19 sBathroomBehind the toilet0
55025764B70889024824 s?0
55125864B70888F6FC403 d 17 h 42 m 23 sConference RoomDev L0
55225964B708890F5021 sOfficeCTO0
55326064B70889707425 s?0
55426164B708897050403 d 17 h 42 m 23 s?0
55526264B7088909C4403 d 17 h 42 m 23 s?0
55626364B708890470403 d 17 h 42 m 23 sOutsideSmell0
55726464B708890A4C21 s?0
55826564B708890210403 d 17 h 42 m 23 sBedroom Master0
55926664B70888FAB0403 d 17 h 42 m 23 sBathroomSmall0
56026764B70888F6F020 sBathroom Main0
56126864B70889062C24 sDining Room Close to table0
56226964B70889742818 sOffice0
56327064B70889097025 sKitchen0
56423564B708890A6822 sBedroom GuestYulic0
56528764B70888FAD0309 d 4 h 0 m 43 sLiving RoomComputer0
56628564B7088903B423 sBedroomFC0
56728464B70888FAC8403 d 17 h 42 m 23 sLiving RoomArmchairs0
56828364B70888F8C026 sKitchen0
56928264B70889043C403 d 4 h 4 m 3 sBedroom0
57028864B70888FA8820 sKitchen0
57129164B70888FA846 h 15 m 16 sLiving Room0
57229064B70888F86018 sBedroom0
57329364B7088976A016 s?0
57429264B708890414403 d 17 h 42 m 23 s?0
57523264B708890AE0402 d 7 h 50 m 43 sBedroom Guest0
57622464B7088908D0402 d 7 h 50 m 43 sBedroomAG0
57723364B70889095C23 sBedroomJR0
57807D57DEE3BC9F24 s?0
5790AB200896C218394 d 0 h 22 m 23 s?0
5800DE1D5CD557A3366 d 7 h 59 m 3 s?0
58105451F084ECA9353 d 0 h 55 m 43 s?0
58200C09228FE30E332 d 5 h 34 m 3 s?0
583047558F645D1D350 d 3 h 17 m 23 s?0
58404DBBC694C838337 d 0 h 15 m 43 s?0
58506EFE7FBFCE51346 d 13 h 10 m 43 s?0
58609AC12C2FF57B339 d 9 h 14 m 3 s?0
5870F823C19B3A33325 d 7 h 2 m 23 s?0
5880F958F64B9493345 d 2 h 45 m 43 s?0
5890FC9107B47036335 d 7 h 35 m 43 s?0
59003C662CA26D6F319 d 4 h 15 m 43 s?0
59129564B708890784No data?0
5942964267426B7477No data?0
5952974251426B7477No data?0
596298643268435A30No data?0
597299576C64435555No data?0
5983004477426B7477No data?0
5993014341426B7477No data?0
6003024367426B7477No data?0
6013034467426B7477No data?0
60230462335A586247No data?0
6033054441426B7477No data?0
6043064277426B7477No data?0
6053074167426B7477No data?0
6063084351426B7477No data?0
6073096233706B4D6DNo data?0
6083104177426B7477No data?0
609311203137343138No data?0
610312203137343139No data?0
6113137CD1ED34EB86No data?0
61231474D3CD34EB86No data?0
61331535D37D34EB86No data?0
614316BDD1DD34EB86No data?0
615317B70888FAB0EDNo data?0
6163180064B70888FANo data?0
617319B0ED13000011No data?0
618320104943E303E9No data?0
619321ED1300001064No data?0
6203220050C34C0300No data?0
621323024F0304E967No data?0
6223244009005C0210No data?0
62322364B708890860No dataBathroom Main0
62428664B708890958No dataBedroomJC0
62532764B70889744C22 s?0
62622864B708890870No dataHallway0
62732964B70889094024 s?0
62822964B708890EBCNo dataKitchenPatio0
62933164B7088904BC17 s?0
63033264B7088973B8No data?0
+
+
+
+
+
+
+
+ +
+
+ + + + + diff --git a/well_web_files/room.png b/well_web_files/room.png new file mode 100644 index 0000000..8b269cc Binary files /dev/null and b/well_web_files/room.png differ diff --git a/well_web_files/searches.json b/well_web_files/searches.json new file mode 100644 index 0000000..99f1110 --- /dev/null +++ b/well_web_files/searches.json @@ -0,0 +1,25 @@ +{"synonims":{"bus stop":"bus", "bus station":"bus", "bus platform":"bus", "train stop":"train", "train station":"train", "train platform":"train", + "waste basket":"waste", "thrash":"waste", "tickets":"ticket", "wending machine":"wending", "drinking water":"water", "phone":"telephone", + "WC":"toilet", "toilets":"toilet", "ticket validator":"ticket_validator", "bicycle rental":"bicycle_rental", +"rent bike":"bicycle_rental", "rent a bike":"bicycle_rental", "park a bike":"bicycle_parking", "park bike":"bicycle_parking", +"rent a bike":"bicycle_rental"}, + +"bench":"[amenity = bench]", +"bicycle_parking":"[amenity = bicycle_parking]", +"bicycle_rental":"[amenity = bicycle_rental]", +"bus":"[highway=bus_stop]", +"information":"[information = map][tourism = information]", +"hotel":"[tourism=hotel]", +"motel":"[tourism=motel]", +"parking":"[amenity = parking]", +"park":"[leisure = park]", +"playground":"[leisure = playground]", +"telephone":"[amenity = telephone]", +"ticket":"[shop = ticket]", +"ticket_validator":"[amenity = ticket_validator]", +"toilet":"[amenity = toilets]", +"train":"[public_transport=station][train=yes]", +"waste":"[amenity = waste_basket]", +"water":"[amenity = drinking_water]", +"wending":"[amenity = vending_machine]" +} diff --git a/well_web_files/well-api_backup.py b/well_web_files/well-api_backup.py new file mode 100644 index 0000000..2ccfd1d --- /dev/null +++ b/well_web_files/well-api_backup.py @@ -0,0 +1,3502 @@ +import os +import ast +from ast import literal_eval +import falcon +from falcon import HTTP_200, HTTP_400, HTTP_401, HTTP_500 +import json +import logging +from dotenv import load_dotenv +from minio import Minio +from minio.error import S3Error +import io +import datetime +from datetime import timedelta, timezone +import jwt +import psycopg2 +import html +import re +import traceback +import time +import pytz +from scipy import interpolate +from scipy import stats +import pandas as pd +from collections import defaultdict +import numpy as np +import warnings + +import cv2 + +print("OpenCV path:", cv2.__file__) +print("Available OpenCV attributes:", dir(cv2)) + +try: + # Create a small test array + import numpy as np + test_arr = np.zeros((10, 10), dtype=np.uint8) # Small black square + print("\nTesting cv2.imencode with simple array...") + success, encoded = cv2.imencode('.png', test_arr) + print("imencode test success:", success) + print("Encoded data type:", type(encoded)) + print("Encoded data length:", len(encoded) if success else "N/A") +except Exception as e: + print("imencode test failed with error:", str(e)) + print("Error type:", type(e).__name__) + + +EnablePlot = False + +if EnablePlot: + import matplotlib + matplotlib.use('Agg') # Set the backend before importing pyplot + import matplotlib.pyplot as plt + from matplotlib.colors import LinearSegmentedColormap + +warnings.filterwarnings('ignore') +#print(np.__file__) + +logging.basicConfig(level=logging.WARNING) +logger = logging.getLogger(__name__) +logger.propagate = False +logger.setLevel(logging.WARNING) #.WARNING + +handler = logging.StreamHandler() +formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') +handler.setFormatter(formatter) +logger.addHandler(handler) + +location_names = {-1:"All",0:"?",5:"Office",6:"Hallway",7:"Garage",8:"Outside",9:"Conference Room",10:"Room",34:"Kitchen", + 56:"Bedroom",78:"Living Room",102:"Bathroom",103:"Dining Room",104:"Bathroom Main",105:"Bathroom Guest", + 106:"Bedroom Master", 107:"Bedroom Guest", 108:"Conference Room", 109:"Basement", 110:"Attic", 200:"Other"} + +s_table = ["temperature", "humidity", "pressure", "light", "radar", "voc0", "voc1", "voc2", "voc3", "voc4", "voc5", "voc6", "voc7", "voc8", "voc9"] + +location_indexes = {} + +for i in location_names: + location_indexes[location_names[i]] = i + +logger.warning("Well-api started") +load_dotenv() + +DB_NAME = os.getenv('DB_NAME') +DB_USER = os.getenv('DB_USER') +DB_PASSWORD = os.getenv('DB_PASSWORD') +DB_HOST = os.getenv('DB_HOST') +DB_PORT = os.getenv('DB_PORT') + +MINIO_ACCESS_KEY = os.getenv('MINIO_ACCESS_KEY') +MINIO_SECRET_KEY = os.getenv('MINIO_SECRET_KEY') +MINIO_HOST = "192.168.68.64"#os.getenv('MINIO_HOST') +MINIO_PORT = os.getenv('MINIO_PORT') +DAILY_MAPS_BUCKET_NAME = os.getenv('DAILY_MAPS_BUCKET_NAME') +JWT_SECRET = os.getenv('JWT_SECRET') +MASTER_ADMIN = os.getenv('MASTER_ADMIN') +MASTER_PS = os.getenv('MASTER_PS') + +use_pdb = True +debug = True +debug_string = "" +logger.debug(f"Environment variables: {os.environ}") +filesDir = "/home/app/well_web_storage" #os.path.dirname(os.path.realpath(__file__)) +min_io_address = MINIO_HOST + ":" + MINIO_PORT + + +logging.basicConfig(level=logging.DEBUG) + +# Use the credentials we just created +#miniIO_blob_client = Minio( + #"192.168.68.64:9000", + #access_key="well_pipe", # The user we created + #secret_key="WellNuo_2024", # The password we set + #secure=False +#) +miniIO_blob_client = Minio(min_io_address, access_key=MINIO_ACCESS_KEY, secret_key=MINIO_SECRET_KEY, secure=False) + +## Test operations +#try: + ## First just try to list buckets + #print("Attempting to list buckets...") + #buckets = miniIO_blob_client.list_buckets() + #print("Available buckets:") + #for bucket in buckets: + #print(f"- {bucket.name}") + + ## Try operations with the 'daily-maps' bucket + #bucket_name = "daily-maps" + + ## Check if bucket exists + #print(f"\nChecking if bucket '{bucket_name}' exists...") + #if miniIO_blob_client.bucket_exists(bucket_name): + #print(f"Bucket '{bucket_name}' exists") + + ## Try to put a small test object + #print("\nTrying to upload test object...") + #test_data = b"Hello MinIO!" + #miniIO_blob_client.put_object( + #bucket_name, + #"test-file.txt", + #io.BytesIO(test_data), + #len(test_data) + #) + #print("Upload successful!") + +#except S3Error as e: + #print(f"\nS3Error occurred:") + #print(f"Error code: {e.code}") + #print(f"Error message: {e.message}") + #print(f"Request ID: {getattr(e, 'request_id', 'N/A')}") + #print(f"Bucket name: {getattr(e, 'bucket_name', 'N/A')}") + +#except Exception as e: + #print(f"\nUnexpected error: {type(e).__name__}") + #print(f"Error message: {str(e)}") + +user_id_2_user = {} +smell_min = 1 +smell_max = 102400000 - 1 +sensor_legal_values = {"radar": (0,1000, 1), "co2": (1, 15999, 31), "humidity": (1,99, 31), "light": (0, 4095, 1), + "pressure": (0, 10000, 5), "temperature": (1, 60, 31), "voc": (smell_min, smell_max, 31), "voc0": (smell_min, smell_max, 31), + "voc1": (smell_min, smell_max, 31), "voc2": (smell_min, smell_max, 31), "voc3": (smell_min, smell_max, 31), "voc4": (smell_min, smell_max, 31), + "voc5": (smell_min, smell_max, 31), "voc6": (smell_min, smell_max, 31), "voc7": (smell_min, smell_max, 31), "voc8": (smell_min, smell_max, 31), "voc9": (smell_min, smell_max, 31), + "s0": (smell_min, smell_max, 31), "s1": (smell_min, smell_max, 31), "s2": (smell_min, smell_max, 31), "s3": (smell_min, smell_max, 31), "s4": (smell_min, smell_max, 31), + "s5": (smell_min, smell_max, 31), "s6": (smell_min, smell_max, 31), "s7": (smell_min, smell_max, 31), "s8": (smell_min, smell_max, 31), "s9": (smell_min, smell_max, 31)} + +def get_db_connection(): + return psycopg2.connect(dbname=DB_NAME, user=DB_USER, password=DB_PASSWORD, host=DB_HOST, port=DB_PORT) + + +def generate_token(username): + expiration = datetime.datetime.now(timezone.utc) + timedelta(hours=24) + token = jwt.encode({"username": username, "exp": expiration}, JWT_SECRET, algorithm="HS256") + return token + +def read_file(file_name, source = "LOCAL", type_ = "TEXT", bucket_name="daily-maps"): + + blob_data = "" + if source == "MINIO": + blob_data = ReadObjectMinIO(bucket_name, file_name) + elif source == "LOCAL": + login_file = os.path.join(filesDir, file_name) + login_file = login_file.replace("\\","/") + logger.debug(f"Full file path: {login_file}") + logger.debug(f"File exists: {os.path.exists(login_file)}") + #print(login_file) + if type_ == "TEXT": + with open(login_file, encoding="utf8") as f: + blob_data = f.read() + else: + with open(login_file, 'rb') as f: + blob_data = f.read() + + elif source == "AZURE": + try: + blob_data = ""#container_client.download_blob(file_name).readall() + except Exception as err: + logger.error("Not reading Azure blob "+str(err)) + blob_data = "" + return blob_data + else: + pass + return blob_data + +def verify_token(token): + try: + payload = jwt.decode(token, JWT_SECRET, algorithms=["HS256"]) + return payload + except jwt.ExpiredSignatureError: + return None + except jwt.InvalidTokenError: + return None + +def ReadObjectMinIO(bucket_name, file_name): + try: + # Retrieve the object data + response = miniIO_blob_client.get_object(bucket_name, file_name) + + # Read the data from response + data_bytes = response.read() + + # Convert bytes to string and then load into a dictionary + data_string = data_bytes.decode('utf-8') + + # Don't forget to close the response + response.close() + response.release_conn() + + return data_string + + except S3Error as e: + logger.error(f"An error occurred: {e}") + return None + +def package_response(content, status=falcon.HTTP_200): + """ + Format the HTTP response. + + :param content: The content to be returned in the response. + :param status: HTTP status code (default is 200 OK). + :return: A dictionary containing the formatted response. + """ + if isinstance(content, str): + # If content is a string, try to parse it as JSON + try: + response = json.loads(content) + except json.JSONDecodeError: + # If it's not valid JSON, use it as message + response = {"message": content} + elif isinstance(content, dict): + # If content is a dictionary, serialize it with datetime handling + try: + # First serialize to JSON string with datetime handling + json_str = json.dumps(content, default=datetime_handler) + # Then parse back to dict + response = json.loads(json_str) + except TypeError as e: + response = {"message": f"Serialization error: {str(e)}"} + else: + # For any other type, convert to string and use as message + response = {"message": str(content)} + + # Add status code to the response + response["status"] = status + + # Handle specific status codes + if status == falcon.HTTP_400: + response["error"] = "Bad Request" + elif status == falcon.HTTP_401: + response["error"] = "Unauthorized" + elif status == falcon.HTTP_500: + response["error"] = "Internal Server Error" + + return response + +def GetPriviledges(conn, user_name, password): + sql = "SELECT key, access_to_deployments, user_id FROM public.person_details WHERE user_name = '" + user_name + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + if result[0][0] == password: + return result[0][1], result[0][2] + else: + return "0", "0" + else: + return "0", "0" + +def GetPriviledgesOnly(user): + with get_db_connection() as conn: + if isinstance(user, (int)) or user.isdigit(): + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_id = " + user + else: + sql = "SELECT access_to_deployments FROM public.person_details WHERE user_name = '" + user + "'" + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result != None: + return result[0][0] + else: + return "0" + +def ListDeployments(priviledges, user_id): + + global user_id_2_user + + conn = get_db_connection() + + if priviledges == "-1": + sql = "SELECT * FROM public.deployments ORDER BY deployment_id ASC;" + else: + sql = f"SELECT * FROM public.deployments WHERE deployment_id IN ({priviledges}) OR user_edit = {user_id} ORDER BY deployment_id ASC;" + + try: + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + complete_result = [] + else: + deployment_ids = [] + deployment_records_dict = {} + for record in result: + deployment_id = record[0] + deployment_ids.append(deployment_id) + deployment_records_dict[deployment_id] = record + + sql = f"SELECT * FROM public.deployment_details WHERE deployment_id IN ({",".join(map(str, deployment_ids))}) ORDER BY deployment_id ASC;" + cur.execute(sql) + details_result = cur.fetchall() + + beneficiary_ids = [] + + for record_details in details_result: + if record_details[1] != None and record_details[1] not in beneficiary_ids: + beneficiary_ids.append(record_details[1]) + + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({",".join(map(str, beneficiary_ids))});" + + + cur.execute(sql) + user_id_2_user = {} + users = cur.fetchall()#cur.fetchone() + for usr_record in users: + user_id_2_user[usr_record[0]] = usr_record + + complete_result = [] + if details_result != None: + for record_details in details_result: + deployment_record = deployment_records_dict[record_details[0]] + complete_record = {'deployment_id': record_details[0], 'beneficiary_id': record_details[1], 'caretaker_id': record_details[2], + 'owner_id': record_details[3], 'installer_id': record_details[4], + 'address_street': record_details[6], 'address_city': record_details[7], 'address_zip': record_details[8], + 'address_state': record_details[9], 'address_country': record_details[10], + 'devices': record_details[5], 'wifis': record_details[11], 'persons': deployment_record[4], 'gender': deployment_record[5], + 'race': deployment_record[6], 'born': deployment_record[7], 'pets': deployment_record[8], 'time_zone': deployment_record[3] + } + complete_result.append(complete_record) + except: + logger.debug(f"Error: {traceback.format_exc()}") + return complete_result + +def ListCaretakers(): + + conn = get_db_connection() + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%2%' ORDER BY last_name;" #2 is caretaker + + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def ListBeneficiaries(privilidges, user_info): + + conn = get_db_connection() + with conn.cursor() as cur: + + if (privilidges == "-1"): + sql = "SELECT * FROM public.person_details WHERE role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + else: + #we need to find beneficiaries from list of deployments + sql = f"SELECT beneficiary_id FROM public.deployment_details WHERE deployment_id IN ({privilidges}) ORDER BY deployment_id ASC;" + cur.execute(sql) + result1 = cur.fetchall()#cur.fetchone() + if result1 == None: + result = [] + return result + beneficiaries = ",".join(str(x[0]) for x in result1) + sql = f"SELECT * FROM public.person_details WHERE user_id IN ({beneficiaries}) OR user_edit = {user_info} AND role_ids LIKE '%1%' ORDER BY last_name;" #1 is beneficiary + logger.debug(f"sql= {sql}") + + cur.execute(sql) + result = cur.fetchall()#cur.fetchone() + if result == None: + result = [] + + return result + +def UserDetails(user_id): + + conn = get_db_connection() + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'person_details';" + with conn.cursor() as cur: + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.person_details WHERE user_id = "+user_id + + caretaker_record = {} + with conn.cursor() as cur: + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + caretaker_record[field[0]] = result[cnt] + cnt += 1 + + return caretaker_record + +def DeploymentDetails(deployment_id): + + + deployment_record = {} + + conn = get_db_connection() + + with conn.cursor() as cur: + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployment_details';" + cur.execute(sql) + columns_names = cur.fetchall() + + sql = "SELECT * FROM public.deployment_details WHERE deployment_id = "+deployment_id + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names: + deployment_record[field[0]] = result[cnt] + cnt += 1 + + sql = "SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'deployments';" + cur.execute(sql) + columns_names1 = cur.fetchall() + + sql = "SELECT * FROM public.deployments WHERE deployment_id = "+deployment_id + + cur.execute(sql) + result = cur.fetchone() #cur.fetchall() + if result != None: + cnt = 0 + for field in columns_names1: + deployment_record[field[0]] = result[cnt] + cnt += 1 + + + + return deployment_record + +def ValidUser(user_name, password): + + + if use_pdb: + with get_db_connection() as db_conn: + priviledges, user_id= GetPriviledges(db_conn, user_name, password) + return priviledges, user_id + + else: + pass + #container = GetReference("/MAC") + #try: + ## We can do an efficient point read lookup on partition key and id + ##response = container.read_item(item="64B708896BD8_temperature_2024-01-01_00", partition_key="64B708896BD8") #OK + ##items = query_items(container, '64B708896BD8') #Too slow + ##AddToLog("1!") + #privileges = GetCaretakers(container, email, password) + #return privileges + + #except Exception as err: + #AddToLog("Error !1 "+str(err)) + +def AddToLog(str_s): + global debug_string + if debug: + try: + if isinstance(str_s, str): + debug_string = debug_string + str_s + "\n" + logging.info(str_s) + elif isinstance(str_s, (int, float)): + debug_string = debug_string + str(str_s) + "\n" + logging.info(str(str_s)) + #debug_string = debug_string + str(type(str_s)) + "\n" + elif isinstance(str_s, (list, complex, dict)): + debug_string = debug_string + str(str_s) + "\n" + logging.info(str(str_s)) + #debug_string = debug_string + str(type(str_s)) + "\n" + else: + debug_string = debug_string + str(type(str_s)) + "\n"#"Err:Unknown type!\n" + logging.info(str(str_s)) + + except Exception as err: + debug_string = debug_string + str(err) + "\n" + else: + print(str_s) + +def SelectOption(html_code, select_id, selected_item): + """ + Modifies HTML code to set the selected attribute for a specific option in a select element. + + Args: + html_code (str): Original HTML code + select_id (str): ID of the select element to modify + selected_item (str or int): Value of the option to be selected + + Returns: + str: Modified HTML code with the selected attribute added + """ + # Convert selected_item to string for comparison + selected_item = str(selected_item) + + # Find the select element with the given ID + select_pattern = rf']*id=[\'"]?{select_id}[\'"]?[^>]*>(.*?)' + select_match = re.search(select_pattern, html_code, re.IGNORECASE | re.DOTALL) + + if not select_match: + return html_code # Return unchanged if select element not found + + select_content = select_match.group(0) + select_content_orig = select_content + # Remove any existing selected attributes + select_content = re.sub(r'\s+selected(?=[>\s])', '', select_content, flags=re.IGNORECASE) + + # Add selected attribute to the matching option + def replace_option(match): + value = re.search(r'value=[\'"]?([^\'">\s]+)', match.group(0)) + if value and value.group(1) == selected_item: + # Add selected attribute before the closing > + return match.group(0).rstrip('>') + ' selected>' + return match.group(0) + + modified_select = re.sub( + r']*>', + replace_option, + select_content + ) + + # Replace the original select element with the modified one + return html_code.replace(select_content_orig, modified_select) + +def FillFields(blob_data, record, form_type): + """ + Fill in the input fields in the HTML blob_data with values from the caretaker dictionary. + + :param blob_data: str - The initial HTML string containing empty or placeholder input fields. + :param caretaker: dict - The dictionary containing values to populate the fields. + :return: str - The HTML string with the input fields filled with the appropriate values. + """ + # Ensure blob_data is a string + #blob_data = str(blob_data) + + # Populate the fields + for field in record: + logger.debug(f"field= {field}") + if field == "user_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_user_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + elif field == "deployment_id": + if record[field] is not None: + escaped_string = html.escape(str(record[field])) + # Create a regex pattern to match the span with specific id + pattern = rf'(]+id="editing_deployment_id"[^>]*>)([^<]*)()' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(3)}', blob_data) + + elif field == "user_name": + if record[field] != None: + escaped_string = html.escape(record[field]) + pattern = rf'(]+id="new_user_name"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="new_user_name"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + elif field == "gender": + if record[field] != None: + blob_data = SelectOption(blob_data, 'gender', record[field]) + + elif field == "race": + if record[field] != None: + blob_data = SelectOption(blob_data, 'race', record[field]) + + elif field == "time_zone_s": + if record[field] != None: + blob_data = SelectOption(blob_data, 'time_zone_s', record[field]) + + elif field == "time_edit" or field == "user_edit": + pass + else: + if record[field] != None: + escaped_string = html.escape(str(record[field])) + pattern = rf'(]+id="{field}"[^>]+value=")[^"]*(")' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)}{escaped_string}{m.group(2)}', blob_data) + + # Add value attribute if it does not exist + pattern = rf'(]+id="{field}"[^>]*)(>)' + blob_data = re.sub(pattern, lambda m: f'{m.group(1)} value="{escaped_string}"{m.group(2)}', blob_data) + + return blob_data + +def StoreBeneficiary2DB(parameters, editing_user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + email = '{CleanObject(parameters.get('email'))}', + user_name = '{CleanObject(parameters.get('new_user_name'))}', + first_name = '{CleanObject(parameters.get('first_name'))}', + last_name = '{CleanObject(parameters.get('last_name'))}', + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + time_edit = {current_epoch_time}, + user_edit = {CleanObject(parameters.get('user_id'))}, + role_ids = '{CleanObject(parameters.get('role_ids'))}', + phone_number = '{CleanObject(parameters.get('phone_number'))}', + picture = '{CleanObject(parameters.get('picture'))}', + key = '{CleanObject(parameters.get('key'))}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{CleanObject(parameters.get('role_ids'))}', '{CleanObject(parameters.get('email'))}', '{CleanObject(parameters.get('new_user_name'))}', + '{CleanObject(parameters.get('first_name'))}', '{CleanObject(parameters.get('last_name'))}', '{CleanObject(parameters.get('address_street'))}', + '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}', {current_epoch_time}, {CleanObject(parameters.get('user_id'))}, '{CleanObject(parameters.get('phone_number'))}', + '{CleanObject(parameters.get('picture'))}', '{CleanObject(parameters.get('key'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def DeleteRecordFromDB(form_data): + conn = get_db_connection() + cur = conn.cursor() + function = form_data.get('function') + if function == "deployment_delete": + user_id = form_data['user_id'] + editing_deployment_id = form_data['editing_deployment_id'] + priviledges = form_data['priviledges'] + if editing_deployment_id == None or editing_deployment_id == "" or editing_deployment_id == "0": + AddToLog("deployment_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.deployments WHERE deployment_id = '{editing_deployment_id}'" + cur.execute(sql) + result = cur.fetchone() + if priviledges != "-1": + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.deployments WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + sql = f""" + DELETE FROM public.deployment_details WHERE deployment_id = {editing_deployment_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + + else: + + user_id = form_data['user_id'] + editing_user_id = form_data['delete_user_id'] + if editing_user_id == None or editing_user_id == "" or editing_user_id == "0": + AddToLog("user_id is not defined") + cur.close() + conn.close() + return 0 + try: + if user_id == "-1": + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + else: + #lets check if user_edit = user_id + sql = f"SELECT user_edit FROM public.person_details WHERE user_id = '{editing_user_id}'" + cur.execute(sql) + result = cur.fetchone() + if result[0] != int(user_id): + cur.close() + conn.close() + return 0 + + sql = f""" + DELETE FROM public.person_details WHERE user_id = {editing_user_id} + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Deleted!") + return 1 + + except Exception as err: + AddToLog(traceback.format_exc()) + cur.close() + conn.close() + return 0 + + +def StoreCaretaker2DB(parameters, editing_user_id): + + #print('\nCreating create_caretaker\n') + # Create a caretaker object. This object has nested properties and various types including numbers, DateTimes and strings. + # This can be saved as JSON as is without converting into rows/columns. + conn = get_db_connection() + cur = conn.cursor() + + if editing_user_id == None or editing_user_id == "": + editing_user_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_user_id != "0": + sql = f""" + UPDATE public.person_details + SET + role_ids = '{parameters.get('role_ids')}', + access_to_deployments = '{parameters.get('access_to_deployments')}', + email = '{parameters.get('email')}', + user_name = '{parameters.get('new_user_name')}', + first_name = '{parameters.get('first_name')}', + last_name = '{parameters.get('last_name')}', + address_street = '{parameters.get('address_street')}', + address_city = '{parameters.get('address_city')}', + address_zip = '{parameters.get('address_zip')}', + address_state = '{parameters.get('address_state')}', + address_country = '{parameters.get('address_country')}', + time_edit = {current_epoch_time}, + user_edit = {parameters.get('user_id')}, + phone_number = '{parameters.get('phone_number')}', + picture = '{parameters.get('picture')}', + key = '{parameters.get('key')}' + WHERE user_id = {editing_user_id}; -- replace 34 with the actual person_id you want to update + """ + + else: + sql = f""" + INSERT INTO public.person_details + (role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) + VALUES + ('{parameters.get('role_ids')}', '{parameters.get('access_to_deployments')}', '{parameters.get('email')}', '{parameters.get('new_user_name')}', '{parameters.get('first_name')}', '{parameters.get('last_name')}', '{parameters.get('address_street')}', '{parameters.get('address_city')}', '{parameters.get('address_zip')}', '{parameters.get('address_state')}', '{parameters.get('address_country')}', {current_epoch_time}, {parameters.get('user_id')}, '{parameters.get('phone_number')}', '{parameters.get('picture')}', '{parameters.get('key')}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def CleanObject(object_in, typee = "s"): + + if typee == "n": + res = 0 + if object_in == None or object_in == "": + return 0 + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + else: + res = "" + if object_in == None: + return "" + if isinstance(object_in, str): + try: + res = object_in.replace("'", '"') + except: + pass + return res + return object_in + +def StoreDeployment2DB(parameters, editing_deployment_id): + conn = get_db_connection() + cur = conn.cursor() + + if editing_deployment_id == None or editing_deployment_id == "": + editing_deployment_id = "0" + + try: + + current_utc_time = datetime.datetime.now(timezone.utc) + + # Convert to epoch time + current_epoch_time = current_utc_time.timestamp() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployments + SET + persons = {CleanObject(parameters.get('persons'), "n")}, + gender = {CleanObject(parameters.get('gender'), "n")}, + race = {CleanObject(parameters.get('race'), "n")}, + born = {CleanObject(parameters.get('born'), "n")}, + pets = {CleanObject(parameters.get('pets'), "n")}, + time_zone_s = '{CleanObject(parameters.get('time_zone_s'))}', + user_edit = {CleanObject(parameters.get('user_id'), "n")}, + time_edit = {current_epoch_time} + WHERE deployment_id = {CleanObject(editing_deployment_id, "n")}; + """ + + else: + sql = f""" + INSERT INTO public.deployments + (persons, gender, race, born, pets, time_zone_s, user_edit, time_edit) + VALUES + ({CleanObject(parameters.get('persons'), "n")}, {CleanObject(parameters.get('gender'), "n")}, {CleanObject(parameters.get('race'), "n")}, + {CleanObject(parameters.get('born'), "n")}, {CleanObject(parameters.get('pets'), "n")}, '{CleanObject(parameters.get('time_zone_s'))}', + {CleanObject(parameters.get('user_id'), "n")}, {current_epoch_time}) + RETURNING deployment_id; + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + if editing_deployment_id == "0": + new_deployment_id = cur.fetchone()[0] + # Commit the changes to the database + conn.commit() + + if editing_deployment_id != "0": + sql = f""" + UPDATE public.deployment_details + SET + beneficiary_id = {CleanObject(parameters.get('beneficiary_id'), "n")}, + caretaker_id = {CleanObject(parameters.get('caretaker_id'), "n")}, + owner_id = {CleanObject(parameters.get('owner_id'), "n")}, + installer_id = {CleanObject(parameters.get('installer_id'), "n")}, + address_street = '{CleanObject(parameters.get('address_street'))}', + address_city = '{CleanObject(parameters.get('address_city'))}', + address_zip = '{CleanObject(parameters.get('address_zip'))}', + address_state = '{CleanObject(parameters.get('address_state'))}', + address_country = '{CleanObject(parameters.get('address_country'))}', + + wifis = '{CleanObject(parameters.get('wifis'))}', + devices = '{CleanObject(parameters.get('devices'))}', + lat = {CleanObject(parameters.get('lat'), "n")}, + lng = {CleanObject(parameters.get('lng'), "n")}, + gps_age = {CleanObject(parameters.get('gps_age'), "n")} + + WHERE deployment_id = {editing_deployment_id}; + """ + + else: + sql = f""" + INSERT INTO public.deployment_details + (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, address_street, address_city, address_zip, address_state, address_country) + VALUES + ({new_deployment_id}, {CleanObject(parameters.get('beneficiary_id'), "n")}, {CleanObject(parameters.get('caretaker_id'), "n")}, {CleanObject(parameters.get('owner_id'), "n")}, {CleanObject(parameters.get('installer_id'), "n")}, + '{CleanObject(parameters.get('address_street'))}', '{CleanObject(parameters.get('address_city'))}', '{CleanObject(parameters.get('address_zip'))}', '{CleanObject(parameters.get('address_state'))}', + '{CleanObject(parameters.get('address_country'))}'); + """ + logger.debug(f"sql= {sql}") + # Execute update query + cur.execute(sql) + + # Commit the changes to the database + conn.commit() + + + + + # Close the cursor and connection + cur.close() + conn.close() + + AddToLog("Written/updated!") + return 1 + except Exception as err: + AddToLog(traceback.format_exc()) + return 0 + return ok + +def ShowAge(seconds): + minutes = int(seconds // 60) + hours = int(minutes // 60) + days = int(hours // 24) + + if seconds >= 0: + hours = int(hours - (days * 24)) + minutes = int(minutes - (days * 24 * 60) - (hours * 60)) + seconds = int(seconds - (days * 24 * 60 * 60) - (hours * 60 * 60) - (minutes * 60)) + + if days > 0: + report = f"{int(days)} d {int(hours)} h {int(minutes)} m {int(seconds)} s" + elif hours > 0: + report = f"{int(hours)} h {int(minutes)} m {int(seconds)} s" + elif minutes > 0: + report = f"{int(minutes)} m {int(seconds)} s" + else: + report = f"{int(seconds)} s" + + return report + else: + return "0 s" + +def UpdateDevicesTable(html_string, devices, users): + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + table_rows_string = "" + for device in devices: + result = next(item for item in users if item[0] == device[6]) + deployment_name = result[1] + if result[2] != None: + deployment_name = deployment_name + " " + result[2] + mac = device[2] + mac_row_string = f' {mac}\n' + age = time.time() - device[3] + + if (age < 300): + row_sting = f' \n {device[0]}\n' + else: + row_sting = f' \n {device[0]}\n' + + row_ending = f' \n \n' + for col_cnt in range(1, len(device)): + column_value = device[col_cnt] + #print(column_value) + if col_cnt == 2: + col_string_template = mac_row_string + elif col_cnt == 3: + if column_value > 0: + col_string_template = f' {ShowAge(age)}\n' + else: + col_string_template = f' No data\n' + elif col_cnt == 6: + col_string_template = f' {column_value}\n'; + else: + if column_value == None: + column_value = "" + col_string_template = f' {column_value}\n' + row_sting = row_sting + col_string_template + row_sting = row_sting + row_ending + table_rows_string = table_rows_string + row_sting + #print(table_rows_string) + + html_string = html_string.replace("###ROWS###",table_rows_string) + return html_string + +def UpdateDeploymentsSelector(html_string, deployments, include_all=True, selected="1"): + # + if include_all: + selector_string = f' \n' + else: + selector_string = '' + + for deployment in deployments: + first_name = "" + last_name = "" + if deployment[1] != None: + first_name = deployment[1] + if deployment[2] != None: + last_name = deployment[2] + if deployment[0] == int(selected): + choice_string = f' \n' + else: + choice_string = f' \n' + selector_string = selector_string + choice_string + #print(selector_string) + + html_string = html_string.replace("###INSTALLS###",selector_string) + return html_string + +def GetDeviceDetails(cur, deployment_ids, location_id): + + #ID, Well id, MAC, Last_Message, Location, Description, Deployment + macs = [mac for _, mac in deployment_ids] + #macs = list(deployment_ids.keys()) + macs_string_nq = ",".join(macs) + macs_string = "'" + "','".join(macs) + "'" + + if location_id == -1: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) + ORDER BY om.position; + """ + else: + sql = f""" + WITH ordered_macs AS ( + SELECT unnest(string_to_array('{macs_string_nq}', ',')) as mac, + generate_series(1, array_length(string_to_array('{macs_string_nq}', ','), 1)) as position + ) + SELECT d.* + FROM public.devices d + JOIN ordered_macs om ON d.device_mac = om.mac::text + WHERE device_mac IN ({macs_string}) AND location = {location_id} + ORDER BY om.position; + """ + + cur.execute(sql) + devices_ids_records = cur.fetchall() + all_details = [] + + + devices_ids_list = [x[0] for x in devices_ids_records] + device_ids_string = ",".join(map(str, devices_ids_list)) + #sql = f"SELECT device_id, MAX(time) as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) GROUP BY device_id" #to slow + sql = f"SELECT DISTINCT ON (device_id) device_id, time as last_reading_time FROM sensor_readings WHERE device_id IN ({device_ids_string}) ORDER BY device_id, time DESC" + cur.execute(sql) + devices_times = cur.fetchall()#cur.fetchone() + found_device_details = {} + for device_record in devices_times: + device_id, last_message_time = device_record + found_device_details[device_id] = last_message_time + cnt = 0 + for device_table_record in devices_ids_records: + if len(devices_times) > 0: + + if device_id in found_device_details: + last_message_time = found_device_details[device_id] + last_message_epoch = int(last_message_time.timestamp()) + else: + last_message_time = int(device_table_record[14]) + last_message_epoch = last_message_time + else: + last_message_time = 0 + last_message_epoch = 0 + + #print(last_message_epoch) + #print(type(last_message_epoch)) + device_id = device_table_record[0] + mac = device_table_record[1] + well_id = device_table_record[2] + description = device_table_record[3] + location_id = device_table_record[4] + row_data = [device_id, well_id, mac, last_message_epoch, location_names[location_id], description, deployment_ids[cnt][0]] + cnt += 1 + all_details.append(row_data) + + return all_details + +def GetVisibleDevices(deployments): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if len(dev_group) > 10: + + macs_group = literal_eval(dev_group) + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetails(cur, deployment_ids, -1) + #devices_details.append(devices_detail) + + return devices_details + +def GetVisibleDevicesPerLocation(deployments, location): + + devices_details = [] + + with get_db_connection() as conn: + #list all devices that user has access to + if deployments == "-1" or deployments == "0": + sql = "SELECT deployment_id, devices FROM public.deployment_details" + else: + sql = f"SELECT deployment_id, devices FROM public.deployment_details WHERE deployment_id IN ({deployments})" + + with conn.cursor() as cur: + cur.execute(sql) + devices_groups = cur.fetchall()#cur.fetchone() + deployment_ids = [] + for deployment_id, dev_group in devices_groups: + if len(dev_group) > 10: + macs_group = literal_eval(dev_group) + for mac in macs_group: + deployment_ids.append((deployment_id, mac)) + + devices_details = GetDeviceDetails(cur, deployment_ids, location_indexes[location]) + #devices_details.append(devices_detail) + + return devices_details + +def GetUsersFromDeployments(deployments): + #list all devices that user has access to + deployments_dets = [] + with get_db_connection() as conn: + try: + if deployments == "-1": + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + ORDER BY dd.deployment_id; + """ + else: + sql = f""" + SELECT dd.deployment_id, pd.first_name, pd.last_name + FROM deployment_details dd + JOIN person_details pd ON dd.beneficiary_id = pd.user_id + WHERE dd.deployment_id IN ({deployments}) + ORDER BY dd.deployment_id; + """ + with conn.cursor() as cur: + cur.execute(sql) + deployments_dets = cur.fetchall()#cur.fetchone() + except Exception as err: + logger.error("GetUsersFromDeployments "+str(err) +" "+sql) + + return deployments_dets + +def ToList(input_data): + # If input is already a list + if isinstance(input_data, list): + return [str(x).strip() for x in input_data] + + # If input is string + if isinstance(input_data, str): + # Remove outer brackets if present + cleaned = input_data.strip('()') + cleaned = cleaned.strip('[]') + # Remove extra quotes + cleaned = cleaned.replace('"', '').replace("'", '') + # Split by comma and clean each element + return [x.strip() for x in cleaned.split(',')] + + raise ValueError(f"Unsupported input type: {type(input_data)}") + +def MACsToWellIds(cur, macs_list): + + macs_string = ",".join(f"'{mac}'" for mac in macs_list) + sqlr = f"SELECT well_id, device_mac, device_id, location, description FROM public.devices WHERE device_mac IN ({macs_string})" + + print (sqlr) + macs_map = {} + cur.execute(sqlr) + proximitys_list = cur.fetchall() + for well_id, mac, device_id, location, description in proximitys_list: + macs_map[mac] = (well_id, device_id, location_names[location], description, mac) + + device_ids = [] + device_list = [] + for mac in macs_list: + device_ids.append(macs_map[mac][1]) + device_list.append(macs_map[mac]) + + return device_ids, device_list + +def ReadCleanStringDB(cur, sql): + cur.execute(sql) + temp_string = cur.fetchone() + if temp_string == None: + return "" + else: + return str(temp_string[0]).strip() + +def GetProximityList(deployment_id, epoch_from_file_s): + + #both are valid: + #64B70888FA84,64B70888F6F0,64B70888F860,64B70889062C,64B70888FAB0,64B708896BDC,64B708897428 + #['64B70888FA84', '64B70888F6F0', '64B70888F860', '64B70889062C', '64B70888FAB0', '64B708896BDC', '64B708897428'] + + #result_list = [] + #well_ids = [] + with get_db_connection() as conn: + + sqlr = f""" + SELECT * FROM ( + SELECT proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + AND time <= {epoch_from_file_s} + ORDER BY time DESC + LIMIT 1 + ) AS latest_deployment + """ + #print (sqlr) + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + + if devices_string == "": + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + devices_string = ReadCleanStringDB(cur, sqlr) + + + if devices_string == "": + return [] + + macs_list = ToList(devices_string) + device_ids, device_list = MACsToWellIds(cur, macs_list) + return device_list, device_ids + +def FilterList(to_filter: str, allowed: str) -> str: + # Convert comma-separated strings to sets + filter_set = set(to_filter.split(',')) + allowed_set = set(allowed.split(',')) + + # Find intersection and sort the result + filtered = sorted(filter_set.intersection(allowed_set), key=int) + + # Join back to comma-separated string + return ','.join(filtered) + +def GetMatchingDevices(privileges, group, deployment, location): + + global LocationsMap + + results=[] + if privileges != "-1": + if deployment == "" or deployment == "0": + deployment = privileges + + privileges_list = privileges.split(',') + if deployment != "0": + if "," in deployment: + deployment = FilterList(deployment, privileges) + else: + if deployment not in privileges_list: + return results + else: + if deployment == "0": + deployment = "-1" + + devices = GetVisibleDevicesPerLocation(deployment, location) + return devices + +def getOldestDeploymentHistoryFromBeneficiary(deployment_id): + #this will return oldest entry as well as last proximity (devices) + + results=[] + well_ids_last = [] #this needs to be list of tuples (well_id, Location_st, Description) + oldest_time = None + try: + with get_db_connection() as conn: + sqlr = f""" + SELECT * FROM ( + SELECT time, proximity + FROM public.deployment_history + WHERE deployment_id = {deployment_id} + ORDER BY time ASC + ) AS latest_deployment + """ + print (sqlr) + with conn.cursor() as cur: + cur.execute(sqlr) + results = cur.fetchall() + #lets find which of historical sets has data in DB + if results == None or results == []: #look in deployment_details + sqlr = f"SELECT devices from public.deployment_details WHERE deployment_id ={deployment_id}" + #print (sqlr) + devices_string = ReadCleanStringDB(cur, sqlr) + macs_list = ToList(devices_string) + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + sql_query = """ + SELECT MIN(time) as oldest_record_time + FROM sensor_readings + WHERE device_id = ANY(%s); + """ + try: + cur.execute(sql_query, (device_ids_last,)) + results1 = cur.fetchall() + oldest_time = results1[0][0] + except: + pass + + else: + history_entry = results[-1] + macs_list = ToList(history_entry[1]) + device_ids_last, device_alls_last = MACsToWellIds(cur, macs_list) + + + for history_entry in results: + macs_list = ToList(history_entry[1]) + device_ids, device_alls = MACsToWellIds(cur, macs_list) + + sql_query = """ + SELECT MIN(time) as oldest_record_time + FROM sensor_readings + WHERE device_id = ANY(%s); + """ + try: + cur.execute(sql_query, (device_ids,)) + results1 = cur.fetchall() + oldest_time = results1[0][0] + if oldest_time != None: + break + + + except: + pass + + except Exception as e: + AddToLog(traceback.format_exc()) + + return oldest_time, device_alls_last + + +def getLastEditedBeneficiary(beneficiary): + + #lets generate token here to elliminate issues with outdated token... + token = generate_token(beneficiary) + url = 'https://well-api.azurewebsites.net/api/well_api' + params = { + "name": "beneficiary_detail", + "beneficiary": beneficiary, + "token": token + } + #{"id": "user_beneficiary_bernhard@wellnuo.com", "MAC": "BENEFICIARY", "email": "bernhard@wellnuo.com", "edit_date": "Fri Aug 16 06:45:01 2024", "c_password": "bern1", "first_name": "Bernhard", "last_name": "Knigge", "address": "776 Dubanski Dr.", "address_city": "San Jose", "address_state": "CA", "address_zip": "95123", "address_country": "United States", "phone_number": "4087055709", "persons": "2", "gender": "M", "race": "W", "born": "1972", "pets": "1", "creds": "", "devs": "[[203, 'Living Room', '', '64B708890B14'], [251, 'Bathroom', '', '64B7088909E8'], [252, 'Bedroom', '', '64B708890734'], [204, 'Bathroom', 'Guest', '64B708890288'], [201, 'Kitchen', 'toaster', '64B708890584'], [202, 'Kitchen', 'stove', '64B7088906D8'], [205, 'Office', '', '64B708897018']]", "tzone": "America/Los_Angeles", "ttl": -1, "_rid": "R60hANIG-K+qTQIAAAAAAg==", "_self": "dbs/R60hAA==/colls/R60hANIG-K8=/docs/R60hANIG-K+qTQIAAAAAAg==/", "_etag": "\"3500a0ae-0000-0800-0000-66bef56d0000\"", "_attachments": "attachments/", "_ts": 1723790701} + response = requests.get(url, params=params) + if response.status_code == 200: + + text = response.text + #print(text) + if text == "Log-Out": + return text + if text[0] == "{": + data = json.loads(response.text) + date_string = data["edit_date"] + parsed_date = datetime.datetime.strptime(date_string, '%c') + # Convert the datetime object to a timestamp (epoch time) + epoch_str = str(time.mktime(parsed_date.timetuple())) + devices = data["devs"] + return(epoch_str, devices) + else: + return text,"" + else: + logger.debug((f"Failed to retrieve the data, status code: {response.status_code}")) + + return "","" + +def GetDeploymentNameFromId(Id): + + con = sqlite3.connect(main_db) + con.text_factory = str + cur = con.cursor() + results=[] + SQL = "SELECT name FROM deployments WHERE id =" + Id + df = cur.execute(SQL) + results = cur.fetchall() + if len(results) > 0: + return results[0][0] + else: + return "" + +def GetTimeZoneOfDeployment(deployment_id): + time_zone_st = 'America/Los_Angeles' + with get_db_connection() as conn: + with conn.cursor() as cur: + sqlr = f"SELECT time_zone_s from public.deployments WHERE deployment_id ={deployment_id}" + time_zone_st = ReadCleanStringDB(cur, sqlr) + return time_zone_st + +def StringToEpoch(date_string, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in specified timezone + + Args: + date_string (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch timestamp in seconds + """ + # Parse the date string + date_format = '%Y-%m-%d' + naive_date = datetime.datetime.strptime(date_string, date_format) + + # Get the timezone + timezone = pytz.timezone(time_zone_s) + + # Localize the date to midnight in the specified timezone + local_date = timezone.localize(naive_date) + + # Convert to epoch timestamp + epoch_time = local_date.timestamp() + + return epoch_time + +def LocalDateToUTCEpoch(local_date_str, time_zone_s): + """ + Convert a date string to epoch timestamp for start of day (midnight) in UTC + + Args: + local_date_str (str): Date in 'YYYY-MM-DD' format + time_zone_s (str): Timezone string (e.g. 'America/Los_Angeles') + + Returns: + float: Epoch UTC timestamp in seconds + """ + timezone = pytz.timezone(time_zone_s) + # Parse the date string + date_format = '%Y-%m-%d' + local_datetime = datetime.datetime.strptime(local_date_str, date_format) + local_datetime = timezone.localize(local_datetime) + + utc_datetime = local_datetime.astimezone(pytz.UTC) + epoch_time = int(utc_datetime.timestamp()) + + return epoch_time + +def GetDeploymentDatesBoth(deployment_in): + + #when looking at the date, date is defined in TZ where device is! + #Lets take oldest data from first member of deployment + date_list = [] + + time_zone_st = GetTimeZoneOfDeployment(deployment_in) + + oldest_date_dt_utc, devices_all = getOldestDeploymentHistoryFromBeneficiary(deployment_in) + + if oldest_date_dt_utc != None: + #get date in local time zone from UTC datetime + + #oldest_date_dt + # Get today's date + local_timezone = pytz.timezone(time_zone_st) # Replace with your local timezone + oldest_date_dt_local = oldest_date_dt_utc.astimezone(local_timezone) + today_date = datetime.datetime.now(local_timezone) + + # Generate a list of date strings from oldest_date to today in inverted order + date_list = [(today_date - timedelta(days=x)).strftime('%Y-%m-%d') for x in range((today_date - oldest_date_dt_local).days + 1)] + return date_list, devices_all + +def check_file_exists(file_name, bucket_name="daily-maps"): + try: + # Try to get the object's stats - this will raise an exception if the object doesn't exist + stat_result = miniIO_blob_client.stat_object(bucket_name, file_name) + last_modified_utc = stat_result.last_modified + return True, last_modified_utc + except S3Error as e: + if e.code == 'NoSuchKey': + return False, 0 + # Re-raise if it's a different error + raise + +def SaveImageInBlob(file_name, arr_stretched): + AddToLog(f"@@2") + try: + # Encode the image to a memory buffer using imencode + success, encoded_image = cv2.imencode('.png', arr_stretched) + AddToLog(f"success={success}") + if not success: + raise Exception("Could not encode image!") + + + AddToLog(f"DAILY_MAPS_BUCKET_NAME={DAILY_MAPS_BUCKET_NAME}") + + image_bytes = encoded_image.tobytes() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + miniIO_blob_client.put_object( + DAILY_MAPS_BUCKET_NAME, + file_name, + io.BytesIO(image_bytes), + len(image_bytes)) + + except Exception as e: + AddToLog(f"{traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + +def GetLocalTimeForDate(selected_date, time_zone_s): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def GetLocalTimeEpochsForDate(selected_date, time_zone_s): + """ + Get start and end of day epochs for a given date in a specific timezone. + + Args: + selected_date (str): Date in "YYYY-MM-DD" format + time_zone_s (str): Timezone string (e.g., "America/New_York") + + Returns: + tuple: (start_epoch, end_epoch) - Unix timestamps for start and end of day + """ + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(local_date) + + # Get the next day + local_next = local_start + timedelta(days=1) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Convert to epochs (Unix timestamps) + start_epoch = int(utc_start.timestamp()) + end_epoch = int(utc_next.timestamp()) + + return start_epoch, end_epoch + +def UTC2Local(utc_time, time_zone_s): + # Parse the selected date + local_tz = pytz.timezone(time_zone_s) + + # Convert selected_date string to datetime object (start of day in local time) + #local_date = datetime.datetime.strptime(selected_date, "%Y-%m-%d") + local_start = local_tz.localize(selected_date) + + # Convert to UTC + utc_start = local_start.astimezone(pytz.UTC) + utc_next = local_next.astimezone(pytz.UTC) + + # Format as strings + time_from_str = utc_start.strftime("%Y-%m-%d %H:%M:%S") + time_to_str = utc_next.strftime("%Y-%m-%d %H:%M:%S") + + return time_from_str + "+0000", time_to_str + "+0000" + +def get_timezone_aware_datetime(time_str, timezone_str="America/Los_Angeles"): + """ + Convert a naive datetime string to a timezone-aware datetime object. + + Parameters: + time_str: String in format 'YYYY-MM-DD HH:MM:SS' + timezone_str: String representing the timezone (default: "America/Los_Angeles") + + Returns: + datetime: A timezone-aware datetime object + """ + # Parse the naive datetime + naive_dt = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S') + + # Get the timezone + tz = pytz.timezone(timezone_str) + + # Localize the datetime (make it timezone-aware) + # localize() is the correct way to do this, as it handles DST transitions properly + aware_dt = tz.localize(naive_dt) + return aware_dt + +def fast_fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str="Europe/Berlin"): + """ + Optimized version of array filling from TimeScaleDB data. + Uses vectorized operations for significant speed improvement. + """ + # Convert start time to timezone-aware datetime + start_time = datetime.datetime.strptime(time_from_str, '%Y-%m-%d %H:%M:%S%z') + #start_time = start_time.replace(tzinfo=timezone.utc) + + # Create device index mapping + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define column mappings (sensor type to position in record) + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6 + } + # Add sensor columns dynamically + for i in range(10): + columns[f'sensor_min_s{i}'] = i + 7 + + # Pre-process data into a more efficient structure + # Group by device_id to reduce lookup operations + device_data = defaultdict(list) + for record in day_data: + if record[0] and record[1]: # If time and device_id exist + device_data[record[1]].append(record) + + # Process each device's data in bulk + for device_id, records in device_data.items(): + if device_id not in device_to_index: + continue + + base_idx = device_to_index[device_id] * len(columns) + + # Convert records to numpy array for faster processing + records_array = np.array(records, dtype=object) + + # Calculate all minute deltas at once + times = records_array[:, 0] + #print(times[0], start_time, (times[0] - start_time).total_seconds()) + minute_deltas = np.array([(t - start_time).total_seconds() / 60 for t in times], dtype=int) + + # Filter valid minute deltas + valid_mask = (minute_deltas >= 0) & (minute_deltas < arr_source.shape[1]) + if not np.any(valid_mask): + continue + + minute_deltas = minute_deltas[valid_mask] + records_array = records_array[valid_mask] + + # Process each column type in bulk + for col_name, col_offset in columns.items(): + row_idx = base_idx + list(columns.keys()).index(col_name) + values = records_array[:, col_offset] + + # Filter out None values + valid_values = ~np.equal(values, None) + if not np.any(valid_values): + continue + + # Update array in bulk + arr_source[row_idx, minute_deltas[valid_values]] = values[valid_values] + + return arr_source + +def BestColor(in_val): + #this function uses numbers from 0 to 1279 to convert to rainbow from Blue to Red(1024) to Violet 1279 + r,g,b=0,0,0 + in_val = int(in_val) + if(in_val > 1279): + in_val = 1279 + if (in_val < 256): + r = 255 + g = in_val + elif (in_val < 512): + r = 511 - in_val + g = 255 + elif (in_val < 768): + g = 255 + b = in_val-512 + elif (in_val < 1024): + g = 1023 - in_val + b = 255 + else: + r = in_val - 1024 + b = 255 + + #if (r > 255): + # print(in_val) + # print(int(r),int(g),int(b)) + return(int(r),int(g),int(b)) + + +def fill_array_from_timescale(day_data, time_from_str, devices_list, arr_source, timezone_str): + """ + Fill numpy array with data from TimeScaleDB query results. + + Parameters: + day_data: List of tuples from database query + time_from_str: Starting datetime string in format 'YYYY-MM-DD HH:MM:SS' + devices_list: List of device IDs + arr_source: Pre-initialized numpy array to fill + + Returns: + numpy.ndarray: Filled array + """ + # Parse the start time + start_time = get_timezone_aware_datetime(time_from_str, timezone_str) + # Create mapping of device_ids to their index positions + device_to_index = {device_id: idx for idx, device_id in enumerate(devices_list)} + + # Define columns and their positions in the result tuple + columns = { + 'avg_temperature': 2, + 'avg_humidity': 3, + 'pressure_amplitude': 4, + 'max_light': 5, + 'radar': 6, + 'sensor_min_s0': 7, + 'sensor_min_s1': 8, + 'sensor_min_s2': 9, + 'sensor_min_s3': 10, + 'sensor_min_s4': 11, + 'sensor_min_s5': 12, + 'sensor_min_s6': 13, + 'sensor_min_s7': 14, + 'sensor_min_s8': 15, + 'sensor_min_s9': 16 + } + + # Process each record + for record in day_data: + # Get minute and device_id from record + record_time = record[0] # minute column + device_id = record[1] # device_id column + + if record_time and device_id: + # Calculate minute delta + minute_delta = int((record_time - start_time).total_seconds() / 60) + + if 0 <= minute_delta < arr_source.shape[1]: + # Calculate base index for this device + base_idx = device_to_index[device_id] * len(columns) + + # Fill data for each sensor/measurement type + for col_name, col_offset in columns.items(): + value = record[col_offset] + if value is not None: # Skip NULL values + row_idx = base_idx + list(columns.keys()).index(col_name) + arr_source[row_idx, minute_delta] = value + + return arr_source + +def CalcExtremes(arr_source, length, height): + """ + Calculate min and max values for each row within legal bounds. + Optimized version using numpy vectorized operations. + + Parameters: + arr_source: numpy array of shape (height, length+4) containing data and bounds + length: number of data points to process (typically 1440 for minutes in a day) + height: number of rows in the array + + Returns: + numpy array with min/max values stored in columns 1442 and 1443 + """ + # Extract the data portion and bounds + data = arr_source[:, :length] + ignore_below = arr_source[:, 1440:1441] # Keep 2D shape for broadcasting + ignore_above = arr_source[:, 1441:1442] # Keep 2D shape for broadcasting + + # Create masks for valid values + above_min_mask = data >= ignore_below + below_max_mask = data <= ignore_above + valid_mask = above_min_mask & below_max_mask + + # Create a masked array to handle invalid values + masked_data = np.ma.array(data, mask=~valid_mask) + + # Calculate min and max values for each row + row_mins = np.ma.min(masked_data, axis=1).filled(-0.001) + row_maxs = np.ma.max(masked_data, axis=1).filled(-0.001) + + # Store results + arr_source[:, 1442] = row_mins + arr_source[:, 1443] = row_maxs + + return arr_source + +def plot(arr, filename="multiple_rows.png", title="1D Array Plot", figsize=(12, 6), + color='blue', style='line'): + """ + Plot a 1D numpy array as a line or scatter plot + + Parameters: + arr : 1D numpy array + title : str, plot title + figsize : tuple, figure size in inches + color : str, line/point color + style : str, 'line' or 'scatter' + """ + title = filename + plt.figure(figsize=figsize) + x = np.arange(len(arr)) + + if style == 'line': + plt.plot(x, arr, color=color) + else: # scatter + plt.scatter(x, arr, color=color, alpha=0.6) + + plt.title(title) + plt.xlabel('Index') + plt.ylabel('Value') + plt.grid(True, alpha=0.3) + plt.tight_layout() + plt.savefig(filename) + plt.close() + print(f"Plot saved to: {filename}") + #plt.show() + + +def AddLimits(arr_source, devices_c, sensors_c, percentile): + for y in range(devices_c*sensors_c): + sensor_index = y % sensors_c + min_ok, max_ok, window = sensor_legal_values[s_table[sensor_index]] + if EnablePlot: + if (y == 33): + print("stop") + plot(arr_source[y, :1440], "before_clean_sensor.png") + if window > 2: + arr_source[y, :1440] = clean_data_vectorized(arr_source[y, :1440], window, percentile) + + if EnablePlot: + if (y == 33): + print("stop") + plot(arr_source[y, :1440], "after_clean_sensor.png") + + arr_source[y][1440] = min_ok + arr_source[y][1441] = max_ok + return arr_source + +def clean_data_vectorized(data, window, percentile): + """ + Vectorized version of clean_data function using pure numpy + First removes zeros, then cleans outliers + + Parameters: + data: numpy array of sensor readings + window: int, size of rolling window + percentile: float, percentile threshold for deviation filtering + """ + # Create a copy to avoid modifying original data + working_data = data.copy() + + # Replace zeros with NaN + zero_mask = working_data == 0 + working_data[zero_mask] = np.nan + + # Create rolling window view of the data + def rolling_window(a, window): + shape = a.shape[:-1] + (a.shape[-1] - window + 1, window) + strides = a.strides + (a.strides[-1],) + return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides) + + # Pad array for edge handling + pad_width = window // 2 + padded = np.pad(working_data, pad_width, mode='edge') + + # Create rolling windows + windows = rolling_window(padded, window) + + # Calculate rolling median (ignoring NaN values) + medians = np.nanmedian(windows, axis=1) + + # Forward/backward fill any NaN in medians + # Forward fill + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), 0) + np.maximum.accumulate(idx, out=idx) + medians[mask] = medians[idx[mask]] + + # Backward fill any remaining NaNs + mask = np.isnan(medians) + idx = np.where(~mask, np.arange(mask.shape[0]), mask.shape[0] - 1) + idx = np.minimum.accumulate(idx[::-1])[::-1] + medians[mask] = medians[idx[mask]] + + # Calculate deviations (ignoring NaN values) + deviations = np.abs(working_data - medians) + + # Calculate threshold (ignoring NaN values) + threshold = np.nanpercentile(deviations, percentile) + + # Create mask and replace outliers with median values + # Points are good if they're not NaN and deviation is within threshold + good_points = (~np.isnan(working_data)) & (deviations <= threshold) + + # Replace all bad points (including zeros and outliers) with median values + result = np.where(good_points, working_data, medians) + + return result + + +def process_chunk(args): + """ + Process a chunk of rows + """ + chunk, sensors_c, sensor_legal_values, s_table, window, percentile = args + result = np.copy(chunk) + + # Process all time series in the chunk at once + result[:, :1440] = np.array([ + clean_data_vectorized(row[:1440], window, percentile) + for row in chunk + ]) + + # Set limits for all rows in chunk using vectorized operations + sensor_indices = np.arange(len(chunk)) % sensors_c + min_values = np.array([sensor_legal_values[s_table[i]][0] for i in sensor_indices]) + max_values = np.array([sensor_legal_values[s_table[i]][1] for i in sensor_indices]) + + result[:, 1440] = min_values + result[:, 1441] = max_values + + return result + + +def FillImage(scaled_day, devices_c, sensors_c, arr_stretched, group_by): + """ + Fill the stretched array with colored sensor data. + + Parameters: + scaled_day: 2D array of shape (stripes, minutes+4) containing sensor readings + devices_c: number of devices + sensors_c: number of sensors per device + arr_stretched: 3D array of shape (stripes*stretch_by, minutes, 3) to fill with RGB values + + Returns: + arr_stretched: Filled array with RGB values + """ + stripes = devices_c * sensors_c + stretch_by = arr_stretched.shape[0] // stripes + minutes = arr_stretched.shape[1] + + # Create a boolean mask for VOC sensors + if group_by != "sensortype": + voc_rows = np.array([i for i in range(stripes) if int(i/devices_c) >= 5]) + else: + voc_rows = np.array([i for i in range(stripes) if int(i % sensors_c) >= 5]) + # Vectorize the BestColor function + vectorized_best_color = np.vectorize(BestColor) + + # Process each row + for row in range(stripes): + + row_data = scaled_day[row, :minutes] # Get minute data + + #if row == 33: + # print("stop") + # plot(row_data, "row_data.png") + big_min = scaled_day[row, 1442] # min value + big_max = scaled_day[row, 1443] # max value + + # Create mask for valid values + valid_mask = row_data != -0.001 + + # Initialize RGB row with zeros + rgb_row = np.zeros((minutes, 3), dtype=np.uint8) + + if big_max > big_min: + # Scale factor + k = 1280/(big_max-big_min) + + # Calculate normalized values + normalized_vals = k * (row_data - big_min) + + # Invert if it's a VOC row + if row in voc_rows: + normalized_vals = 1279 - normalized_vals + + # Apply valid mask + normalized_vals = np.where(valid_mask, normalized_vals, 0) + #if row == 33: + # plot(normalized_vals, "normalized_vals.png") + + # Convert to RGB colors (vectorized) + r, g, b = vectorized_best_color(normalized_vals) + + # Combine into RGB array + rgb_row[valid_mask] = np.stack([r[valid_mask], + g[valid_mask], + b[valid_mask]], axis=1) + else: + # Set to gray where valid + rgb_row[valid_mask] = 128 + + + if group_by == "sensortype": + + # Fill the stretched rows + sensor_index = row % sensors_c + device_index = int(row/sensors_c) + dest_row = sensor_index * devices_c + device_index #0-0, 1- + start_idx = dest_row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + else: + # Fill the stretched rows + start_idx = row * stretch_by + end_idx = start_idx + stretch_by + arr_stretched[start_idx:end_idx] = rgb_row + + return arr_stretched + +def CreateMapFast(map_file, devices_list, selected_date, map_type, vocs_scaled, time_zone_s, radar_part, group_by): + global Id2MACDict + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + try: + + #stretch_to_min_max = True + + #current_date_p = selected_date.replace("-", "_") + #current_date_s = selected_date + + lower_than200 = 0 + larger_than200 = 0 + for details in devices_list[0]: + dev_id = details[0] + + if dev_id < 200: + lower_than200 += 1 + else: + larger_than200 += 1 + + if lower_than200 > 0 and larger_than200 > 0: + return + + if larger_than200 > 0: + sensors_c = len(s_table) + else: #old sensors not supported + return False + + devices_c = len(devices_list[0]) + devices_list_str = ",".join(map(str, devices_list[1])) + image_file = map_file + time_from_str, time_to_str = GetLocalTimeForDate(selected_date, time_zone_s) + + sql = f""" + SELECT + COALESCE(sr.minute, rr.minute) as minute, + COALESCE(sr.device_id, rr.device_id) as device_id, + sr.avg_temperature, + sr.avg_humidity, + sr.pressure_amplitude, + sr.max_light, + rr.radar, + sr.min_s0 as sensor_min_s0, + sr.min_s1 as sensor_min_s1, + sr.min_s2 as sensor_min_s2, + sr.min_s3 as sensor_min_s3, + sr.min_s4 as sensor_min_s4, + sr.min_s5 as sensor_min_s5, + sr.min_s6 as sensor_min_s6, + sr.min_s7 as sensor_min_s7, + sr.min_s8 as sensor_min_s8, + sr.min_s9 as sensor_min_s9 + FROM ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + AVG(temperature) AS avg_temperature, + AVG(humidity) AS avg_humidity, + AVG(pressure) AS pressure_amplitude, + MAX(light) AS max_light, + MIN(s0) AS min_s0, + MIN(s1) AS min_s1, + MIN(s2) AS min_s2, + MIN(s3) AS min_s3, + MIN(s4) AS min_s4, + MIN(s5) AS min_s5, + MIN(s6) AS min_s6, + MIN(s7) AS min_s7, + MIN(s8) AS min_s8, + MIN(s9) AS min_s9 + FROM + sensor_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) sr + FULL OUTER JOIN ( + SELECT + time_bucket('1 minute', time) AS minute, + device_id, + MAX({radar_part}) AS radar + FROM + radar_readings + WHERE + device_id IN ({devices_list_str}) + AND time >= '{time_from_str}' + AND time < '{time_to_str}' + GROUP BY + minute, + device_id + ) rr + ON sr.minute = rr.minute AND sr.device_id = rr.device_id + ORDER BY + CASE COALESCE(sr.device_id, rr.device_id) + WHEN 571 THEN 1 + WHEN 560 THEN 2 + WHEN 572 THEN 3 + WHEN 561 THEN 4 + WHEN 559 THEN 5 + WHEN 524 THEN 6 + WHEN 562 THEN 7 + END, + COALESCE(sr.minute, rr.minute); + """ + #print(sql) + #st = time.time() + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sql) + day_data = cur.fetchall()#cur.fetchone() + #print(result) + if day_data == None: + return False + #print(time.time() - st) + + #st = time.time() + + #creating image + #print(time.time()-st) + + stretch_by = 10 + minutes = 1440 + stripes = devices_c * sensors_c #2 for upper maxes, lower mins + + arr_source_template = np.full((stripes, minutes+4), -0.001, dtype=float) + + #array to be written as image + arr_stretched_template = np.zeros((int(stripes*stretch_by), minutes, 3), dtype=np.uint8) # 3 for RGB channels + #st = time.time() + arr_source = fast_fill_array_from_timescale(day_data, time_from_str, devices_list[1], arr_source_template, time_zone_s) + #plot(arr_source[33], "arr_source.png") + #print("@1:", time.time()-st) + #st = time.time() + #arr_source = process_data(arr_source, devices_c, sensors_c, window=5, percentile=99, use_threading=True) + arr_source = AddLimits(arr_source, devices_c, sensors_c, percentile=99) + #plot(arr_source[33][:1440], "arr_source2.png") + #print("@2:", time.time()-st) + #st = time.time() + #plot(arr_source[33], "arr_source3.png") + scaled_day = CalcExtremes(arr_source, minutes, stripes) + #plot(arr_source[33][:1440], "scaled_day.png") + #print("@@1", time.time()-st) + AddToLog(f"map_type={map_type}") + AddToLog(f"type(map_type)={type(map_type)}") + if True:#(int(map_type) == 1): + #st = time.time() + AddToLog(f"@@1") + arr_stretched = FillImage(scaled_day, devices_c, sensors_c, arr_stretched_template, group_by) + #print("@@2", time.time()-st) + SaveImageInBlob(image_file, arr_stretched) + + return True + except Exception as e: + AddToLog(traceback.format_exc()) + return False + +def GetBlob(file_name): + """ + Retrieve image from blob storage + + Args: + file_name (str): Name of the file to retrieve from blob storage + + Returns: + tuple: (image_bytes, content_type) + Returns None, None if image not found or error occurs + """ + AddToLog(f"GetBlob({file_name})") + try: + # Get the object from blob storage + data = miniIO_blob_client.get_object( + DAILY_MAPS_BUCKET_NAME, + file_name + ) + + # Read the data into bytes + image_bytes = data.read() + AddToLog(f"len(image_bytes)={len(image_bytes)}") + return image_bytes, 'image/png' + except Exception as e: + AddToLog(f"Error: {traceback.format_exc()}") + logger.error(f"{traceback.format_exc()}") + return None, None + + +def MapFileToDate(map_file): + #'/Volumes/XTRM-Q/wellnuo/daily_maps/1/1_2023-11-07_dayly_image.png' + parts = map_file.split("/") + parts = parts[-1].split("_") + + if "-" in parts[0]: + date_string = parts[0] + elif "-" in parts[1]: + date_string = parts[1] + + date_object = datetime.datetime.strptime(date_string, "%Y-%m-%d") + date_only = date_object.date() + return date_only + +def GetMACsListSimple(list_of_lists): + + result = [] + if len(list_of_lists) > 0: + result = [sublist[3] for sublist in list_of_lists] + + return(result) + +def datetime_handler(obj): + """Handle datetime serialization for JSON""" + if isinstance(obj, datetime.datetime): + if obj.tzinfo: + return obj.isoformat() + return obj.strftime('%Y-%m-%d %H:%M:%S.%f') + raise TypeError(f"Object of type {type(obj)} is not JSON serializable") + +def ReadCandles(file, sensor, period, time_from, time_to): + result = [] + if sensor == "voc0": + sqlr = "SELECT * from vocs_0"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc1": + sqlr = "SELECT * from vocs_1"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc2": + sqlr = "SELECT * from vocs_2"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc3": + sqlr = "SELECT * from vocs_3"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc4": + sqlr = "SELECT * from vocs_4"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc5": + sqlr = "SELECT * from vocs_5"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc6": + sqlr = "SELECT * from vocs_6"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc7": + sqlr = "SELECT * from vocs_7"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc8": + sqlr = "SELECT * from vocs_8"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + elif sensor == "voc9": + sqlr = "SELECT * from vocs_9"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + else: + sqlr = "SELECT * from "+sensor+"s"+period+ " WHERE Date >= "+str(time_from) + " AND Date <= "+str(time_to) + logger.debug(f"sqlr = {sqlr}") + + with get_db_connection() as conn: + with conn.cursor() as cur: + devices_string = ReadCleanStringDB(cur, sqlr) + result = QuerrySql(file, sqlr) + return result + +def ReadSensor(device_id, sensor, time_from_epoch, time_to_epoch, data_type, radar_part): + + time_utc = datetime.datetime.fromtimestamp(float(time_from_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_from_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + time_utc = datetime.datetime.fromtimestamp(float(time_to_epoch), tz=timezone.utc) + # Format in ISO 8601 format with timezone + time_to_str = time_utc.strftime("%Y-%m-%d %H:%M:%S%z") + + legal_min, legal_max, window = sensor_legal_values[sensor] + + result = [] + if sensor == "radar": + if radar_part == "s28": + radar_part = "(s2+s3+s4+s5+s6+s7+s8)/7" + sqlr = f"SELECT time, {radar_part} AS radar FROM radar_readings WHERE device_id = {device_id} AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + elif sensor[0] == "s": + sqlr = f"SELECT time, {sensor} AS smell FROM sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + if sensor == "temperature": + sqlr = f"SELECT time, {sensor} - 16 from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + else: + sqlr = f"SELECT time, {sensor} from sensor_readings WHERE device_id = {device_id} AND {sensor} >= '{legal_min}' AND {sensor} <= '{legal_max}' AND time >= '{time_from_str}' AND time <= '{time_to_str}' ORDER BY time ASC" + + logger.debug(f"sqlr = {sqlr}") + with get_db_connection() as conn: + with conn.cursor() as cur: + cur.execute(sqlr) + result = cur.fetchall() + + return result + +def check_and_parse(data_str): + # Remove whitespace to handle cases with spaces + cleaned = data_str.strip() + # Check if second character is '[' + is_list_of_lists = cleaned[1] == '[' + if cleaned[0] == '[': + # Parse the string regardless of type + parsed = json.loads(cleaned) + else: + parsed = cleaned.split(",") + return is_list_of_lists, parsed + +def clean_data_with_rolling_spline(line_part_t, window=5, threshold=2.0): + """ + Filter outliers using rolling median and replace with spline interpolation + Returns data in the same format as input: [(timestamp, value), ...] + """ + # Unzip the input tuples + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) # explicitly convert to float + + # Calculate rolling median and MAD using a safer approach + rolling_median = [] + rolling_mad = [] + + for i in range(len(y)): + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Skip if window is empty or contains invalid values + if len(window_values) == 0 or np.any(np.isnan(window_values)): + rolling_median.append(y[i]) + rolling_mad.append(0) + continue + + med = np.median(window_values) + mad = np.median(np.abs(window_values - med)) + + rolling_median.append(med) + rolling_mad.append(mad) + + rolling_median = np.array(rolling_median) + rolling_mad = np.array(rolling_mad) + + # Identify outliers (protect against division by zero) + outlier_mask = np.abs(y - rolling_median) > threshold * (rolling_mad + 1e-10) + good_data_mask = ~outlier_mask + + if np.sum(good_data_mask) < 4: + return line_part_t # return original data if we can't interpolate + + try: + # Create and apply spline + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 + ) + + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + except Exception as e: + print(f"Spline interpolation failed: {e}") + return line_part_t + + # Return in the same format as input + return list(zip(x, y_cleaned)) + +def clean_data_with_spline(x, y, threshold=2.0): + """ + Filter outliers and replace with spline interpolation + + Parameters: + x : array-like, timestamps or x-coordinates + y : array-like, values to be filtered + threshold : float, number of median absolute deviations for outlier detection + + Returns: + array-like : cleaned data with outliers replaced by spline interpolation + """ + # Convert inputs to numpy arrays + x = np.array(x) + y = np.array(y) + + # Calculate median and median absolute deviation + median = np.median(y) + mad = stats.median_abs_deviation(y) + + # Identify outliers + outlier_mask = np.abs(y - median) > threshold * mad + good_data_mask = ~outlier_mask + + # If we have too few good points for interpolation, adjust threshold + min_points_needed = 4 # minimum points needed for cubic spline + if np.sum(good_data_mask) < min_points_needed: + return y # return original data if we can't interpolate + + # Create spline with non-outlier data + spline = interpolate.InterpolatedUnivariateSpline( + x[good_data_mask], + y[good_data_mask], + k=3 # cubic spline + ) + + # Replace outliers with interpolated values + y_cleaned = y.copy() + y_cleaned[outlier_mask] = spline(x[outlier_mask]) + + return y_cleaned + +def clean_data(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + cleaned_data = [] + + for i in range(len(y)): + # Get window around current point + start_idx = max(0, i - window//2) + end_idx = min(len(y), i + window//2 + 1) + window_values = y[start_idx:end_idx] + + # Calculate median and MAD for the window + window_median = np.median(window_values) + deviation = abs(y[i] - window_median) + + # Keep point if it's not too far from window median + if deviation <= threshold * window_median: + cleaned_data.append((x[i], y[i])) + #else: + #print(window_values) + return cleaned_data + +def clean_data_fast(line_part_t, window=5, threshold=2.0): + """ + Remove obvious outliers based on window comparison - vectorized version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + x = np.array(x) + y = np.array(y, dtype=float) + + # Calculate rolling median using numpy + half_window = window // 2 + medians = np.array([ + np.median(y[max(0, i-half_window):min(len(y), i+half_window+1)]) + for i in range(len(y)) + ]) + + # Calculate deviations for all points at once + deviations = np.abs(y - medians) + + # Create mask for good points + good_points = deviations <= threshold * medians + + # Return filtered data using boolean indexing + return list(zip(x[good_points], y[good_points])) + +def clean_data_pd(line_part_t, window=5, percentile=99): + """ + Remove obvious outliers based on window comparison - pandas version + Returns cleaned data in the same format: [(timestamp, value), ...] + """ + #line_part_t = line_part_t[2000:2100] + if len(line_part_t) < window: + return line_part_t + + x, y = zip(*line_part_t) + + # Create pandas Series and calculate rolling median + series = pd.Series(y) + medians = series.rolling(window=window, center=True, min_periods=1).median() + + # Calculate deviations + deviations = np.abs(series - medians) + + largest_deviations = deviations.nlargest(10) + #print(largest_deviations) + + # Create mask for good points + deviation_threshold = np.percentile(deviations, percentile) + good_points = deviations <= deviation_threshold + + # Convert back to numpy arrays for filtering + x = np.array(x) + y = np.array(y) + + # Return filtered data + return list(zip(x[good_points], y[good_points])) + +def add_boundary_points(line_part_t, time_zone): + """ + Add boundary points (00:00:00 and 23:59:59) to a time series list. + + Args: + line_part_t: List of tuples (timestamp, value) + time_zone: String representing the timezone (e.g., "America/Los_Angeles") + + Returns: + List of tuples with added boundary points + """ + if not line_part_t: + return line_part_t + + tz = pytz.timezone(time_zone) + + # Get the date from the first point + first_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + date = first_dt.date() + + # Create datetime objects for start and end of the day + start_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.min.time())) + end_dt = tz.localize(datetime.datetime.combine(date, datetime.datetime.max.time())) + + # Convert to timestamps + start_ts = start_dt.timestamp() + end_ts = end_dt.timestamp() + + result = list(line_part_t) + + # Handle start point (00:00:00) + first_point_dt = datetime.datetime.fromtimestamp(line_part_t[0][0], tz) + time_diff = first_point_dt - start_dt + + start_value = line_part_t[0][1] + + # Add start point at the beginning + result.insert(0, (start_ts, start_value)) + + # Handle end point (23:59:59) + last_point_dt = datetime.datetime.fromtimestamp(line_part_t[-1][0], tz) + end_value = line_part_t[-1][1] + # Add end point + result.append((end_ts, end_value)) + + return result + +class well_api: + def on_get_healthz(self, req, resp): + resp.status = HTTP_200 + resp.content_type = falcon.MEDIA_TEXT + resp.text = "OK" + + def on_get(self, req, resp, path=""): + + logger.debug(f"Sent variables: {req.params}") + + if path == "" or path == "/": + + #resp.media = package_response("Log-Out", HTTP_401) + #return + + blob_data = read_file("well_portal.html") + resp.content_type = "text/html" + resp.text = blob_data + return + elif path == "favicon.ico": + favicon_path = "favicon.ico" + if os.path.isfile(favicon_path): + resp.content_type = 'image/x-icon' + resp.data = read_file(favicon_path, type_ = "BIN") + resp.status = falcon.HTTP_200 + else: + resp.status = falcon.HTTP_404 + + name = req.params.get('name') + + if name == "deployment_add": + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + user_id = req.params.get('user_id') + blob_data = read_file("edit_deployment.html") + caretaker = {'deployment_id': 0, 'beneficiary_id': user_id, 'caretaker_id': user_id, 'owner_id': user_id, 'installer_id': user_id, 'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif name == "devices_list": + user_id = req.params.get('user_id') + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + privileges = GetPriviledgesOnly(user_id) + + first_s = req.params.get('first') + last_s = req.params.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + blob_data = read_file("my_devices.html") + + devices = GetVisibleDevices(privileges) + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDevicesTable(blob_data, devices, users) + blob_data = UpdateDeploymentsSelector(blob_data, users) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif name == "deployment_edit": + deployment_id = req.params.get('deployment_id') + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + blob_data = read_file("edit_deployment.html") + + deployment = DeploymentDetails(deployment_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, deployment, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif name == "caretaker_add": + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + blob_data = read_file("edit_caretaker.html") + caretaker = {'user_id': 0, 'role_ids': '2', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif name == "caretaker_edit": + user_id = req.params.get('user_id') + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + blob_data = read_file("edit_caretaker.html") + + caretaker = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, caretaker, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + + elif name == "beneficiary_edit": + user_id = req.params.get('user_id') + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + blob_data = read_file("edit_beneficiary.html") + + beneficiary = UserDetails(user_id) + #blob_data = blob_data.decode("utf-8") + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif name == "beneficiary_add": + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + user_id = req.params.get('user_id') + blob_data = read_file("edit_beneficiary.html") + beneficiary = {'user_id': 0, 'role_ids': '1', 'access_to_deployments': '', 'email': '', 'user_name': '', 'first_name': '', 'last_name': '', 'address_street': '', 'address_city': '', 'address_zip': '', 'address_state': '', 'address_country': '', 'phone_number': '', 'picture': '/', 'key': ''} + blob_data = FillFields(blob_data, beneficiary, 1) + resp.content_type = "text/html" + resp.text = blob_data + return + elif name == "get_image_file": + #image represents day in local time + token = req.params.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + + deployment_id = req.params.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + ddate = req.params.get("date") + ddate = ddate.replace("_","-") + group_by = req.params.get("group_by") + timee = StringToEpoch(ddate, time_zone_s) + force_recreate = req.params.get("re_create") == "true" + radar_part = req.params.get("radar_part") + map_type = req.params.get("map_type") + + filename = f"/{deployment_id}/{ddate}_{group_by}_{radar_part}_{map_type}_dayly_image.png" + + #print(check_file_exists(filename)) + if not force_recreate: + file_exists, time_modified_utc = check_file_exists(filename) + if file_exists: + time_modified_local = time_modified_utc.astimezone(pytz.timezone(time_zone_s)) + time_modified_date = time_modified_local.date() + file_date = MapFileToDate(filename) + if time_modified_date <= file_date: + force_recreate = True + else: + force_recreate = True + + #ddate is in Local Time + timee = LocalDateToUTCEpoch(ddate, time_zone_s)+5 #add so date boundary is avoided + #time that describes new devices in deployment_history is in UTC therefore timee is in UTC + devices_list = GetProximityList(deployment_id, timee) + + st = time.time() + vocs_scaled = {} + #file_date is in Local time, so we are comparing that and current Local (to install) Date + if force_recreate: + st = time.time() + vocs_scaled = {} + stored = CreateMapFast(filename, devices_list, ddate, map_type, vocs_scaled, time_zone_s, radar_part, group_by) #"[bit] 1=same sensors together, 2=same device together, 4=1 der, 8=2 der + if stored != True: + AddToLog("Map not created") + #logger.warning("Map not created") + resp.media = package_response("Map not created", HTTP_401) + return + else: + AddToLog("Map created") + #print(time.time() - st) + + #lets read and send image from blob + image_bytes, content_type = GetBlob(filename) + if debug: + AddToLog("@1") + resp.media = package_response(f'Log: {debug_string}', HTTP_200) + else: + if image_bytes is None: + raise falcon.HTTPNotFound( + title='Image not found', + description=f'Image {filename} could not be found or retrieved' + ) + + # Set response content type and body + resp.content_type = content_type + resp.data = image_bytes + resp.status = falcon.HTTP_200 + return + + resp.media = package_response("Use POST method for this endpoint", HTTP_400) + + def on_post(self, req, resp, path=""): + + logger.debug(f"Request method: {req.method}") + logger.debug(f"Request path: {req.path}") + logger.debug(f"Request query string: {req.query_string}") + logger.debug(f"Request headers: {req.headers}") + logger.debug(f"Request content type: {req.content_type}") + + # Use Falcon's built-in parsing + if req.content_type == falcon.MEDIA_URLENCODED: + form_data = req.media + elif req.content_type == falcon.MEDIA_JSON: + form_data = req.media + else: + form_data = {} + + logger.debug(f"Parsed form data: {form_data}") + + # Extract parameters + + + try: + function = form_data.get('function') + + if function != "credentials": + token = form_data.get('token') + user_info = verify_token(token) + + if user_info == None: + resp.media = package_response("Log-Out", HTTP_401) + return + username = user_info['username'] + with get_db_connection() as db_conn: + privileges = GetPriviledgesOnly(username) + + if function == "credentials": + + username = form_data.get('user_name') + if not username: + resp.media = package_response("Missing 'user_name' parameter", HTTP_400) + return + + ps = form_data.get('ps') + + if username == MASTER_ADMIN and ps == MASTER_PS: + access_token = generate_token(username) + privileges, user_id = ValidUser(username, ps) + privileges = "-1" + else: + #lets check for real + privileges, user_id = ValidUser(username, ps) + if privileges == "0": + access_token = 0 + privileges = 0 + else: + access_token = generate_token(username) + + token_payload = {'access_token': access_token, 'privileges': privileges, 'user_id': user_id} + resp.media = package_response(token_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "request_single_slice": + deployment_id = form_data.get('deployment_id') + time_zone_s = GetTimeZoneOfDeployment(deployment_id) + selected_date = form_data.get('date') + devices_list = form_data.get('devices_list') + #devices_list = '[267,560,"?",null,"64B70888F6F0"]' + #devices_list = '[[267,560,"?",null,"64B70888F6F0"],[268,561,"?",null,"64B70888F6F1"]]' + sensor_list_loc = [form_data.get('sensor_list')] + is_nested, device_details = check_and_parse(devices_list) + if not is_nested: + device_ids_list = [device_details[1]] + well_ids_list = [device_details[0]] + else: + device_ids_list = list(map(lambda x: x[1], device_details)) + well_ids_list =list(map(lambda x: x[0], device_details)) + + data_type = form_data.get('data_type') + epoch_from_utc, epoch_to_utc = GetLocalTimeEpochsForDate(selected_date, time_zone_s) #>= #< + + #epoch_to = '1730592010' #smal sample to test + radar_part = form_data.get('radar_part') + well_id = well_ids_list[0] + all_slices = {} + for device_id in device_ids_list: + + sensor_data = {} + for sensor in sensor_list_loc: + st = time.time() + line_part = ReadSensor(device_id, sensor, epoch_from_utc, epoch_to_utc, data_type, radar_part) + window = sensor_legal_values[sensor][2] + #print("@1", time.time() - st) + #first = 3300 + #last = 3400 + #line_part = line_part[first:last] + line_part_t = [] + #st = time.time() + #line_part_t = [tuple(x[:2]) for x in line_part] + #print(time.time() - st) + #st = time.time() + #line_part_t = list({(dt.timestamp(), value) for dt, value in line_part}) + #print(time.time() - st) + + line_part_t = [(x[0].timestamp(), x[1]) for x in line_part] + st = time.time() + cleaned_values_t = clean_data_pd(line_part_t, window=window, percentile=99) + cleaned_values = add_boundary_points(cleaned_values_t, time_zone_s) + #print("@2", time.time() - st) + + #Lets add point in minute 0 and minute 1439 + + #st = time.time() + #cleaned_values = clean_data_fast(line_part_t, window=5, threshold=2.0) + #print("@3", time.time() - st) + + sensor_data[sensor] = cleaned_values + all_slices[device_id] = sensor_data + + dataa = {} + dataa['Function'] = "single_slicedata" + dataa['MACs_list'] = device_ids_list + dataa['all_slices'] = all_slices + dataa['well_id'] = well_id + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + #return + elif function == "get_deployment": + blob_data = read_file("deployment.html") + deployment_id = form_data.get('deployment_id') + #lets update "Deployments" select + users = GetUsersFromDeployments(privileges) + blob_data = UpdateDeploymentsSelector(blob_data, users, False, deployment_id) + + resp.content_type = "text/html" + resp.text = blob_data + return + elif function == "request_deployment_map_new": + deployment_id = form_data.get('deployment_id') + maps_dates, positions_list = GetDeploymentDatesBoth(deployment_id) + datee = form_data.get('date') + if maps_dates != []: + + if datee == "2022-4-2": #that one is default in HTML so disregard + datee = maps_dates[0] + + locations_desc_map = {} + for details in positions_list: + well_id = details[0] + location = details[2] + if details[3] != None: + location = location +" "+ details[3] + MAC = details[4] + locations_desc_map[well_id] = location + + dataa = {} + dataa['Function'] = "deployments_maps_report" + dataa['proximity'] = positions_list + maps_dates.sort(reverse = True) + dataa['maps_dates'] = maps_dates + dataa['device_count'] = len(positions_list) + + #MACs_list = GetMACsListSimple(positions_list) + #MACs_map = {} + + #for details in positions_list: + # id = details[0] + # MAC = details[3] + # MACs_map[id] = MAC + #for i in range(len(MACs_list)): + # MACs_map[devices_list[i]] = MACs_list[i][0] + + id = positions_list[0][0] + #dataa['MACs_map'] = MACs_map + dataa['locations_desc_map'] = locations_desc_map + #proximity_list = proximity.split(",") + if id < 200: + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'C>\n' + checkmarks_string = checkmarks_string + 'V>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>
' + else: #>200 = ["Temperature", "Humidity", "Pressure", "Light", "Radar", "VOC"] + + checkmarks_string = 'T>\n' + checkmarks_string = checkmarks_string + 'H>\n' + checkmarks_string = checkmarks_string + 'P>\n' + checkmarks_string = checkmarks_string + 'L>\n' + checkmarks_string = checkmarks_string + 'R>\n' + + checkmarks_string = checkmarks_string + 'S0>\n' + checkmarks_string = checkmarks_string + 'S1>\n' + checkmarks_string = checkmarks_string + 'S2>\n' + checkmarks_string = checkmarks_string + 'S3>\n' + checkmarks_string = checkmarks_string + 'S4>\n' + checkmarks_string = checkmarks_string + 'S5>\n' + checkmarks_string = checkmarks_string + 'S6>\n' + checkmarks_string = checkmarks_string + 'S7>\n' + checkmarks_string = checkmarks_string + 'S8>\n' + checkmarks_string = checkmarks_string + 'S9>
' + + checked_or_not = " checked" + + for index in range(len(positions_list)): + details = positions_list[index] + device_id = details[0] + location = details[2] + if details[3] != None: + location = location + " "+details[2] + + checkmarks_string = checkmarks_string + str(device_id) + '>\n' + checked_or_not = '' + + dataa['checkmarks'] = checkmarks_string + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + elif function == "request_proximity": + deployment = form_data.get('deployment_id') + timee = form_data.get('time') + #timee = StringToEpoch(datee) + #print(deployment, timee) + well_ids, device_ids = GetProximityList(deployment, timee) + #print(proximity) + dataa = {} + dataa['Function'] = "proximity_report" + if len(well_ids) > 0: + dataa['proximity'] = well_ids + else: + dataa['proximity'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + elif function == "request_devices": + deployment_id = form_data.get('deployment_id') + group_id = form_data.get('group_id') + location = form_data.get('location') + is_fresh = form_data.get('is_fresh') + matching_devices = GetMatchingDevices(privileges, group_id, deployment_id, location) + dataa = {} + dataa['Function'] = "devices_report" + if len(matching_devices) > 0: + dataa['devices'] = matching_devices + else: + dataa['devices'] = [] + + resp.media = package_response(dataa) + resp.status = falcon.HTTP_200 + + + elif function == "get_raw_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + if "part" in req_dict: + part = req_dict["part"][0] + else: + part = "" + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + timezone_str = req_dict["tzone"][0] + AddToLog("get_raw_data:" + str(MAC) +","+ str(sensor) + "," + str(from_time) + "," + str(to_time) + "," + part+ "," + timezone_str) + #raw_data = GetRawSensorData(container, MAC, sensor, from_time, to_time, timezone_str) + raw_data = GetRawSensorDataFromBlobStorage(MAC, sensor, part, from_time, to_time, timezone_str) + data_payload = {'raw_data': raw_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "get_candle_data": + container = GetReference("/MAC") + MAC = req_dict["MAC"][0] + sensor = req_dict["sensor"][0] + from_time = req_dict["from_time"][0] + to_time = req_dict["to_time"][0] + part = req_dict["part"][0] + tzone = req_dict["tzone"][0] + AddToLog(str(req_dict)) + candle_data = GetCandleSensorData(container, MAC, sensor, from_time, to_time, part, tzone) + data_payload = {'candle_data': candle_data} + resp.media = package_response(data_payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployment_form": + editing_deployment_id = form_data.get('editing_deployment_id') + + ok = StoreDeployment2DB(form_data, editing_deployment_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "deployment_delete": + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "deployments_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_deployments = ListDeployments(privileges, user_id) + + cnt = 0 + + for deployment in all_deployments: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"deployment_id": deployment['deployment_id'], "email": user_id_2_user[deployment['beneficiary_id']][3], "first_name": user_id_2_user[deployment['beneficiary_id']][5], "last_name": user_id_2_user[deployment['beneficiary_id']][6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretaker_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + + if "@" in email: + ok = StoreCaretaker2DB(form_data, editing_user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + resp.media = package_response("Missing or illegal 'email' parameter", HTTP_400) + return + + elif function == "caretaker_delete": + if privileges == "-1": + ok = DeleteRecordFromDB(form_data) + else: + ok = 0 + AddToLog(ok) + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "caretakers_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + if privileges == "-1": + all_caretakers = ListCaretakers() + + cnt = 0 + + for caretaker in all_caretakers: + cnt += 1 + if cnt >= first: + caretaker_min_object = {"user_id": caretaker[0], "email": caretaker[3], "first_name": caretaker[5], "last_name": caretaker[6]} + result_list.append(caretaker_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_form": + editing_user_id = form_data.get('editing_user_id') + email = form_data.get('email') + if "@" in email: + ok = StoreBeneficiary2DB(form_data, editing_user_id) + if ok == 1: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + else: + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiary_delete": + + + ok = DeleteRecordFromDB(form_data) + + payload = {'ok': ok} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + elif function == "beneficiaries_list": + result_list = [] + first_s = form_data.get('first') + last_s = form_data.get('last') + + try: + first = int(first_s) + except ValueError: + first = 0 + + try: + last = int(last_s) + except ValueError: + last = 1000000 + + user_id = form_data.get('user_id') + all_beneficiaries = ListBeneficiaries(privileges, user_id) + + cnt = 0 + + for beneficiary in all_beneficiaries: + cnt += 1 + if cnt >= first: + beneficiary_min_object = {"user_id": beneficiary[0], "email": beneficiary[3], "first_name": beneficiary[5], "last_name": beneficiary[6]} + result_list.append(beneficiary_min_object) + if cnt > last: + break + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + elif function == "dashboard_list": + AddToLog(req_dict) + caretaker = req_dict["user"][0] + all_beneficiaries = ListBeneficiariesOfCaretaker(caretaker) + AddToLog(all_beneficiaries) + result_list = [] + + for beneficiary in all_beneficiaries: + + details = GetDetails(beneficiary) + #"[[104, 'Living Room', '', '64B708890988'], [106, 'Bathroom', '', '64B708890298'], [101, 'Bedroom', '', '64B7088902B8'], [130, 'Dining Room', '', '64B7088905C8'], [107, 'Bathroom', 'Malo ', '4C75259783E0'], [102, 'Kitchen', '', '308398C72E58'], [141, 'Office', '', '64B70888FB50']]" + #lets determine where person is now + devices_string = details["devices"] + devices_list = ast.literal_eval(devices_string) + timezone_str = details["tzone"] + timezone_object = pytz.timezone(timezone_str) + + latest_presence = "" + latest_MAC = "" + temperature_offset = 16 + bathroom_presence = "" + kitchen_presence = "" + + for device in devices_list: + if len(device) > 3: + MAC = device[3] + this_presence, temp_offset = GetLastPresent(MAC) + + if latest_presence == "": + + if this_presence != "": + latest_presence = this_presence + latest_MAC = MAC + + if "bathroom" in device[1].lower(): + bathroom_presence = this_presence + + if "kitchen" in device[1].lower(): + kitchen_presence = this_presence + + + if latest_presence != "": + + AddToLog("@3 ") + AddToLog(this_presence) + AddToLog(latest_presence) + #this_time = datetime.datetime.strptime(this_presence, "%Y-%m-%d %H:%M:%S.%f", tzinfo=timezone_object) + this_time = strptime_tz(this_presence, timezone_str, "%Y-%m-%d %H:%M:%S.%f") + #latest_time = datetime.datetime.strptime(latest_presence, "%Y-%m-%d %H:%M:%S.%f", tzinfo=timezone_object) + latest_time = strptime_tz(latest_presence, timezone_str, "%Y-%m-%d %H:%M:%S.%f") + AddToLog(this_time) + AddToLog(latest_time) + if this_time > latest_time: + AddToLog("@4") + latest_presence = this_presence + latest_MAC = MAC + temperature_offset = temp_offset + AddToLog("latest_presence = ") + AddToLog(MAC+" "+latest_presence) + + #lets get latest readings for latest_MAC + if latest_MAC != "": + device_dict = GetSensorsReads(latest_MAC) + + #get latest read of temperature, VOC, CO2 + details["temperature"] = device_dict["temperature"]["last_data"] + #apply temp offsett + details["temperature"]["value"] = details["temperature"]["value"] - temperature_offset + details["smell"] = {"timestamp": 1722198473.330856,"value": "coffee","intensity": 54} #device_dict["last_data"] + details["sleep"] = 7 + random.uniform(-2, 2) #todo, determine real value + details["last_bathroom"] = bathroom_presence + details["last_kitchen"] = kitchen_presence + + details["HomeIcon"] = "air_green" + details["BathIcon"] = "bath_yellow" + details["BedIcon"] = "bed_red" + details["FoodIcon"] = "food_green" + + user = details + result_list.append(user) + + payload = {'result_list': result_list} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + AddToLog(payload) + return + + else: + AddToLog("Error: function not recognized!") + payload = {'ok': ok, 'error': debug_string} + resp.media = package_response(payload) + resp.status = falcon.HTTP_200 + return + + except Exception as e: + AddToLog(traceback.format_exc()) + resp.media = package_response(f"Error: {str(e)} {traceback.format_exc()}", HTTP_500) + + +class RootResource: + def on_get(self, req, resp): + resp.media = { + "message": "Hello from OpenFaaS Serverless Web Server!", + "method": "GET" + } + + def on_post(self, req, resp): + data = json.load(req.bounded_stream) + resp.media = { + "message": "Received POST request", + "data": data + } + +class CatchAllResource: + def on_get(self, req, resp, path): + resp.media = { + "message": f"Path: /{path}", + "method": "GET" + } + + def on_post(self, req, resp, path): + resp.media = { + "message": f"Path: /{path}", + "method": "POST" + } + +app = falcon.App() + +# New routes for well_api +app.add_route('/function/well-api', well_api()) +app.add_route('/function/well-api/{path}', well_api()) +app.add_route('/api/well_api', well_api()) +app.add_route('/api/well_api/{path}', well_api()) +app.add_route('/healthz', well_api(), suffix='healthz') + +# Keep the original routes for backward compatibility +app.add_route('/', well_api()) +app.add_route('/{path}', well_api()) + +if __name__ == '__main__': + from wsgiref.simple_server import make_server + with make_server('', 8000, app) as httpd: + logger.debug('Serving on port 8000...') + httpd.serve_forever() \ No newline at end of file diff --git a/well_web_files/well_parts1.zip b/well_web_files/well_parts1.zip new file mode 100644 index 0000000..fa6986a Binary files /dev/null and b/well_web_files/well_parts1.zip differ diff --git a/well_web_files/well_portal.html b/well_web_files/well_portal.html new file mode 100644 index 0000000..3b0a824 --- /dev/null +++ b/well_web_files/well_portal.html @@ -0,0 +1,1128 @@ + + + + + + + + + WellNuo Portal + + + + + + + + + + + +
+ +
Wellnuo Portal
+
U
+
+
+ +
+
+
+
+
    +
  • Dashboard
  • + +
  • Deployments +
      +
    • List
    • +
    • Add
    • +
    +
  • + +
  • Devices +
      +
    • List
    • +
    • Add
    • +
    +
  • + +
  • Users + +
      +
    +
      +
    • +
    • Caretakers
    • +
        +
      • List
      • +
      • Add
      • +
      +
    +
      +
    • Beneficiaries
    • +
        +
      • List
      • +
      • Add
      • +
      +
    +
  • +
+
+
+
+
+

Login

+

+

+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
+ Caretakers +
User IdEmailFirst NameLast Name
1
+ +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ +
+
+ +
+ +
+
+
+ + +